From e6ff13caf068920fdef9b0d7479bf2d9d6564fcb Mon Sep 17 00:00:00 2001 From: Elyor Kodirov Date: Tue, 20 Aug 2024 13:52:25 +0500 Subject: [PATCH] feat(add 2.19 doc to opentronsai): upgrading documentation (#15911) Closes closes [AUTH-630](https://opentrons.atlassian.net/browse/AUTH-630) # Overview Currently OpentronsAI uses 2.15. This PR upgrades to 2.19. ## Test Plan and Hands on Testing - Run server: ``` cd opentrons-ai-server make local-run ``` - Run client: ``` cd opentrons-ai-client make dev ``` Play with UI, you might type as follows: image ## Changelog - Pushed indexed Python protocol API 2.19 - Pushed file that shows how to create index file - Updated UI such that one can run the app locally ## Review requests ## Risk assessment Low [AUTH-630]: https://opentrons.atlassian.net/browse/AUTH-630?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ --- opentrons-ai-client/src/main.tsx | 31 +++++++++--- .../src/molecules/InputPrompt/index.tsx | 24 ++++++++-- .../src/resources/constants.ts | 6 +++ .../src/resources/hooks/useGetAccessToken.ts | 29 +++++++++--- .../api/domain/openai_predict.py | 22 ++++++--- opentrons-ai-server/api/domain/prompts.py | 14 ++++-- .../index/v219/default__vector_store.json | 1 + .../api/storage/index/v219/docstore.json | 1 + .../api/storage/index/v219/graph_store.json | 1 + .../index/v219/image__vector_store.json | 1 + .../api/storage/index/v219/index_store.json | 1 + .../index/v219_ref/default__vector_store.json | 1 + .../api/storage/index/v219_ref/docstore.json | 1 + .../storage/index/v219_ref/graph_store.json | 1 + .../index/v219_ref/image__vector_store.json | 1 + .../storage/index/v219_ref/index_store.json | 1 + opentrons-ai-server/api/utils/create_index.py | 47 +++++++++++++++++++ 17 files changed, 157 insertions(+), 26 deletions(-) create mode 100644 opentrons-ai-server/api/storage/index/v219/default__vector_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219/docstore.json create mode 100644 opentrons-ai-server/api/storage/index/v219/graph_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219/image__vector_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219/index_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219_ref/default__vector_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219_ref/docstore.json create mode 100644 opentrons-ai-server/api/storage/index/v219_ref/graph_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219_ref/image__vector_store.json create mode 100644 opentrons-ai-server/api/storage/index/v219_ref/index_store.json create mode 100644 opentrons-ai-server/api/utils/create_index.py diff --git a/opentrons-ai-client/src/main.tsx b/opentrons-ai-client/src/main.tsx index 4f0231b901d..c23ea735b19 100644 --- a/opentrons-ai-client/src/main.tsx +++ b/opentrons-ai-client/src/main.tsx @@ -8,21 +8,40 @@ import { i18n } from './i18n' import { App } from './App' import { AUTH0_DOMAIN, + LOCAL_AUTH0_DOMAIN, PROD_AUTH0_CLIENT_ID, STAGING_AUTH0_CLIENT_ID, + LOCAL_AUTH0_CLIENT_ID, } from './resources/constants' const rootElement = document.getElementById('root') + +const getClientId = (): string => { + switch (process.env.NODE_ENV) { + case 'production': + return PROD_AUTH0_CLIENT_ID + case 'development': + return LOCAL_AUTH0_CLIENT_ID + default: + return STAGING_AUTH0_CLIENT_ID + } +} + +const getDomain = (): string => { + return process.env.NODE_ENV === 'development' + ? LOCAL_AUTH0_DOMAIN + : AUTH0_DOMAIN +} + if (rootElement != null) { + const clientId = getClientId() + const domain = getDomain() + ReactDOM.createRoot(rootElement).render( { + switch (process.env.NODE_ENV) { + case 'production': + return PROD_END_POINT + case 'development': + return LOCAL_END_POINT + default: + return STAGING_END_POINT + } + } + + const url = getEndpoint() + const config = { - url: - process.env.NODE_ENV === 'production' - ? PROD_END_POINT - : STAGING_END_POINT, + url, method: 'POST', headers, data: { diff --git a/opentrons-ai-client/src/resources/constants.ts b/opentrons-ai-client/src/resources/constants.ts index f55a0b1269b..834e58cb1db 100644 --- a/opentrons-ai-client/src/resources/constants.ts +++ b/opentrons-ai-client/src/resources/constants.ts @@ -13,3 +13,9 @@ export const STAGING_AUTH0_AUDIENCE = 'https://staging.opentrons.ai/api' // auth0 for production export const PROD_AUTH0_CLIENT_ID = 'b5oTRmfMY94tjYL8GyUaVYHhMTC28X8o' export const PROD_AUTH0_AUDIENCE = 'https://opentrons.ai/api' + +// auth0 for local +export const LOCAL_AUTH0_CLIENT_ID = 'PcuD1wEutfijyglNeRBi41oxsKJ1HtKw' +export const LOCAL_AUTH0_AUDIENCE = 'sandbox-ai-api' +export const LOCAL_AUTH0_DOMAIN = 'identity.auth-dev.opentrons.com' +export const LOCAL_END_POINT = 'http://localhost:8000/api/chat/completion' diff --git a/opentrons-ai-client/src/resources/hooks/useGetAccessToken.ts b/opentrons-ai-client/src/resources/hooks/useGetAccessToken.ts index a010a7ecc98..cafc14faa39 100644 --- a/opentrons-ai-client/src/resources/hooks/useGetAccessToken.ts +++ b/opentrons-ai-client/src/resources/hooks/useGetAccessToken.ts @@ -1,5 +1,9 @@ import { useAuth0 } from '@auth0/auth0-react' -import { PROD_AUTH0_AUDIENCE, STAGING_AUTH0_AUDIENCE } from '../constants' +import { + LOCAL_AUTH0_AUDIENCE, + PROD_AUTH0_AUDIENCE, + STAGING_AUTH0_AUDIENCE, +} from '../constants' interface UseGetAccessTokenResult { getAccessToken: () => Promise @@ -7,16 +11,29 @@ interface UseGetAccessTokenResult { export const useGetAccessToken = (): UseGetAccessTokenResult => { const { getAccessTokenSilently } = useAuth0() - const auth0Audience = - process.env.NODE_ENV === 'production' - ? PROD_AUTH0_AUDIENCE - : STAGING_AUTH0_AUDIENCE + + const auth0Audience = (): string => { + switch (process.env.NODE_ENV) { + case 'production': + return PROD_AUTH0_AUDIENCE + case 'staging': + return STAGING_AUTH0_AUDIENCE + case 'development': + return LOCAL_AUTH0_AUDIENCE + default: + console.error( + 'Error: NODE_ENV variable is not valid:', + process.env.NODE_ENV + ) + return STAGING_AUTH0_AUDIENCE + } + } const getAccessToken = async (): Promise => { try { const accessToken = await getAccessTokenSilently({ authorizationParams: { - audience: auth0Audience, + audience: auth0Audience(), }, }) return accessToken diff --git a/opentrons-ai-server/api/domain/openai_predict.py b/opentrons-ai-server/api/domain/openai_predict.py index af6f6f5e359..c9733614458 100644 --- a/opentrons-ai-server/api/domain/openai_predict.py +++ b/opentrons-ai-server/api/domain/openai_predict.py @@ -44,7 +44,9 @@ def get_docs_all(self, query: str) -> Tuple[str, str, str]: # define file paths for storage example_command_path = str(ROOT_PATH / "api" / "storage" / "index" / "commands") - documentation_path = str(ROOT_PATH / "api" / "storage" / "index" / "v215") + documentation_path = str(ROOT_PATH / "api" / "storage" / "index" / "v219") + documentation_ref_path = str(ROOT_PATH / "api" / "storage" / "index" / "v219_ref") + labware_api_path = standard_labware_api # retrieve example commands @@ -65,15 +67,23 @@ def get_docs_all(self, query: str) -> Tuple[str, str, str]: # retrieve documentation storage_context = StorageContext.from_defaults(persist_dir=documentation_path) index = load_index_from_storage(storage_context) - retriever = index.as_retriever(similarity_top_k=3) + retriever = index.as_retriever(similarity_top_k=2) nodes = retriever.retrieve(query) docs = "\n".join(node.text.strip() for node in nodes) - docs_v215 = f"\n{'='*15} DOCUMENTATION {'='*15}\n\n" + docs + docs = f"\n{'='*15} DOCUMENTATION {'='*15}\n\n" + docs + + # retrieve reference + storage_context = StorageContext.from_defaults(persist_dir=documentation_ref_path) + index = load_index_from_storage(storage_context) + retriever = index.as_retriever(similarity_top_k=2) + nodes = retriever.retrieve(query) + docs_ref = "\n".join(node.text.strip() for node in nodes) + docs_ref = f"\n{'='*15} DOCUMENTATION REFERENCE {'='*15}\n\n" + docs_ref # standard api names standard_api_names = f"\n{'='*15} STANDARD API NAMES {'='*15}\n\n" + labware_api_path - return example_commands, docs_v215, standard_api_names + return example_commands, docs + docs_ref, standard_api_names def extract_atomic_description(self, protocol_description: str) -> List[str]: class atomic_descr(BaseModel): @@ -126,13 +136,13 @@ def predict(self, prompt: str, chat_completion_message_params: List[ChatCompleti if chat_completion_message_params: messages += chat_completion_message_params - example_commands, docs_v215, standard_api_names = self.get_docs_all(prompt) + example_commands, docs_refs, standard_api_names = self.get_docs_all(prompt) user_message: ChatCompletionMessageParam = { "role": "user", "content": f"QUESTION/DESCRIPTION: \n{prompt}\n\n" f"PYTHON API V2 DOCUMENTATION: \n{example_commands}\n" - f"{pipette_type}\n{example_pcr_1}\n\n{docs_v215}\n\n" + f"{pipette_type}\n{example_pcr_1}\n\n{docs_refs}\n\n" f"{rules_for_transfer}\n\n{standard_api_names}\n\n", } diff --git a/opentrons-ai-server/api/domain/prompts.py b/opentrons-ai-server/api/domain/prompts.py index e7a8a3c448d..582bd1565ea 100644 --- a/opentrons-ai-server/api/domain/prompts.py +++ b/opentrons-ai-server/api/domain/prompts.py @@ -99,7 +99,7 @@ def execute_function_call(function_name: str, arguments: str) -> str: INSTRUCTIONS: -1) All types of protocols are based on apiLevel 2.15, +1) All types of protocols are based on apiLevel 2.19, thus prepend the following code block `metadata` and `requirements`: ```python @@ -110,7 +110,7 @@ def execute_function_call(function_name: str, arguments: str) -> str: 'author': '[user name]', 'description': "[what is the protocol about]" } -requirements = {"robotType": "[Robot type]", "apiLevel": "2.15"} +requirements = {"robotType": "[Robot type]", "apiLevel": "2.19"} ``` 2) See the transfer rules <> below. @@ -126,6 +126,14 @@ def execute_function_call(function_name: str, arguments: str) -> str: 5) If the pipette is multi-channel eg., P20 Multi-Channel Gen2, please use `columns` method. + +6) <<< Load trash for Flex >>> +For Flex protocols, NOT OT-2 protocols using API version 2.16 or later, +load a trash bin in slot A3: +```python +trash = protocol.load_trash_bin("A3") +``` +Note that you load trash before commands. \n\n """ @@ -313,7 +321,7 @@ def execute_function_call(function_name: str, arguments: str) -> str: 'author': 'chatGPT', 'description': 'Transfer reagent', } -requirements = {"robotType": "OT-2", "apiLevel": "2.15"} +requirements = {"robotType": "OT-2", "apiLevel": "2.19"} def run(protocol): # labware diff --git a/opentrons-ai-server/api/storage/index/v219/default__vector_store.json b/opentrons-ai-server/api/storage/index/v219/default__vector_store.json new file mode 100644 index 00000000000..8a8d0b5e258 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219/default__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"37e35979-0d3e-4318-95db-6500b6c1ab6c": [-0.00491217989474535, 0.010701782070100307, 0.0059312330558896065, 0.01062578521668911, -0.018750572577118874, -0.03700370714068413, 0.04474160075187683, 0.034350715577602386, -0.026820089668035507, 0.02116866409778595, -0.005516702774912119, 0.0190960131585598, 0.006639388389885426, 0.007088462356477976, 0.03628518804907799, 0.020574504509568214, -0.0050399936735630035, -0.006418305449187756, 0.033300574868917465, -0.054248154163360596, 0.051512256264686584, -0.026778636500239372, -0.0426136814057827, 0.005603063385933638, -0.011689744889736176, 0.013099147006869316, -0.010107622481882572, 0.016069944947957993, -0.022757695987820625, -0.005378526169806719, 0.015655415132641792, 0.003361147129908204, 0.028685472905635834, 0.00498126819729805, 0.015420515090227127, -0.026820089668035507, 0.006611752789467573, 0.006698113400489092, 0.0012280449736863375, -0.03716951981186867, -0.00247336202301085, 0.02429145574569702, -0.00485690962523222, -0.01229772251099348, -0.02415327914059162, 0.024484902620315552, 0.005565064959228039, 0.033024221658706665, -0.0025234511122107506, -0.004867272917181253, -0.0016417113365605474, -0.04446524754166603, 0.00046289179590530694, -0.016871370375156403, 0.008366596885025501, -0.04164644330739975, 0.030923934653401375, 0.029569804668426514, -0.00015091481327544898, -0.03777749836444855, 0.002918981947004795, -0.020104702562093735, 0.023282766342163086, -0.027745872735977173, 0.017741883173584938, 0.026681913062930107, 0.006888106465339661, 0.004304202739149332, -0.019745444878935814, 0.026792453601956367, 0.02465071529150009, 0.026004847139120102, -0.033190034329891205, 0.02069886215031147, 0.032084617763757706, 0.022398436442017555, -0.0036029561888426542, 0.032692596316337585, 0.025935757905244827, -0.032913681119680405, 0.027538606896996498, -0.029597438871860504, 0.07152023911476135, 0.006490848492830992, 0.11695272475481033, 0.030868664383888245, -0.015544873662292957, -0.055132485926151276, -0.013886753469705582, -0.030619947239756584, 0.020104702562093735, -0.002478543668985367, -0.01727208122611046, -0.015821227803826332, 0.005482158623635769, -0.0035373223945498466, 0.022287894040346146, 0.004988177213817835, 0.0022937324829399586, -0.014176924712955952, -0.006922650616616011, 0.010570514015853405, -0.003083066549152136, -0.0029258907306939363, 0.028436755761504173, -0.024747438728809357, 0.0005660924944095314, -0.008656767196953297, -0.016484474763274193, 0.028492026031017303, 0.027538606896996498, -0.0025649042800068855, -0.024692168459296227, 0.019496725872159004, -0.030288323760032654, -0.012125001288950443, -0.04529430717229843, 0.016415387392044067, -0.0004918225458823144, -0.050849009305238724, 0.04504558816552162, -0.03636809438467026, -0.0019344731699675322, -0.016180485486984253, -0.026087751612067223, 0.02379401959478855, -0.0013938570627942681, 0.029265815392136574, 0.022978777065873146, -0.008953846991062164, -0.016028491780161858, -0.021597011014819145, 0.02395983226597309, 0.023393306881189346, 0.02426382154226303, 0.016650287434458733, 0.020906127989292145, 0.03833020478487015, 0.0017410258296877146, 0.002785986755043268, -0.06676696240901947, -0.014259831048548222, -0.005761966574937105, 0.01025270763784647, 0.0038067668210715055, 0.0019016562728211284, -0.0013403135817497969, 0.008539317175745964, 0.00978290755301714, 0.01173119805753231, -0.07947921007871628, -0.0475880391895771, -0.032692596316337585, -0.00884330552071333, 0.05880798399448395, -0.03996068984270096, 0.013997294940054417, 0.015102708712220192, 0.007143733091652393, 0.029790887609124184, 0.026322653517127037, -0.016249574720859528, 0.004321475047618151, 0.03683789446949959, 0.04667607322335243, 0.033438749611377716, 0.05869744345545769, -0.005920869763940573, -0.033300574868917465, 0.024885615333914757, 0.008649858646094799, -0.033825647085905075, 0.04164644330739975, 0.006563391070812941, -0.029735615476965904, 0.008677493780851364, 0.032388608902692795, 0.034571800380945206, 0.012636255472898483, 0.0023213678505271673, -0.005727422423660755, 0.04722877964377403, 0.011199218221008778, 0.018750572577118874, 0.0034388715866953135, 0.03595356643199921, 0.015254702419042587, 0.030315957963466644, 0.015337608754634857, 0.010383975692093372, -0.005945050623267889, -0.003972578793764114, -0.0094098299741745, -0.008663676679134369, -0.002896528225392103, -0.017534617334604263, 0.0018118413863703609, 0.008580770343542099, -0.0025251784827560186, 0.01012834906578064, 0.006376852747052908, -0.050130490213632584, -0.0011891828617081046, 0.0029604348819702864, -0.03650627285242081, 0.026225930079817772, -0.029625074937939644, -0.031531911343336105, 0.001456900150515139, -0.035925932228565216, 0.029155274853110313, -0.04579174518585205, -0.003406054573133588, -0.000506503798533231, 0.025756128132343292, 0.0023386399261653423, -0.010245799086987972, 0.0253139641135931, -3.194660394001403e-06, -0.027206983417272568, -0.0178524237126112, 0.03716951981186867, -0.008953846991062164, -0.030260687693953514, -0.04029231145977974, -0.021182481199502945, -0.0251757875084877, 0.024084191769361496, -0.016125215217471123, -0.011213035322725773, 0.014259831048548222, -0.031587183475494385, 0.0013593127951025963, -0.04059630259871483, -0.034378353506326675, 0.029265815392136574, 0.03899345174431801, -0.027980772778391838, -0.01893020235002041, 0.006097044795751572, -0.0007746528717689216, 0.017672793939709663, 0.007627351209521294, 0.01151011511683464, 0.005057265516370535, 0.04380200058221817, -0.017175357788801193, 0.034295447170734406, 0.004086574539542198, 0.010798505507409573, -0.018446583300828934, 0.016608834266662598, -0.0041452995501458645, 0.0010345977498218417, -0.032692596316337585, 0.027580060064792633, 0.00499508623033762, 0.0009136931621469557, 0.012532622553408146, -0.031835902482271194, -0.004307657014578581, 0.017147723585367203, -0.0075306277722120285, 0.03683789446949959, 0.03694843873381615, 0.003751496085897088, 0.013023150153458118, 0.0017626159824430943, 0.013410044834017754, 0.009983262978494167, 0.008387322537600994, 0.03816439211368561, -0.021182481199502945, 0.0025372689124196768, 0.004998540505766869, -0.0011304577346891165, 0.009762180969119072, 0.008553135208785534, 0.024111825972795486, -0.002387001644819975, -0.030813394114375114, -0.009582551196217537, -0.0003309762687422335, 0.01890256628394127, 0.004058939404785633, -0.0029500715900212526, -0.019662538543343544, -0.018474219366908073, -0.024415815249085426, -0.007958975620567799, 0.0021901000291109085, 0.01876438967883587, -0.013306411914527416, 0.01986980251967907, -0.006660114973783493, 0.002623629290610552, 0.014494731090962887, 0.009755271486938, -0.017921512946486473, 0.03962906450033188, 0.020104702562093735, -0.030841030180454254, -0.014315101318061352, 0.006452849600464106, 0.026695730164647102, -0.0462062731385231, 0.04554302617907524, 0.027331342920660973, 0.008725855499505997, 0.057205136865377426, 0.029321085661649704, -0.051843881607055664, -0.006207586266100407, -0.02100285142660141, -0.0008359687635675073, 0.0278149601072073, -0.0064943027682602406, -0.009396012872457504, -0.0037376785185188055, -0.035760119557380676, 0.004877635743469, 0.02061595767736435, -0.055574651807546616, 0.022094447165727615, 0.012187181040644646, -0.026308834552764893, 0.026198294013738632, 0.012622437439858913, -0.0074615394696593285, -0.030288323760032654, -0.030288323760032654, -0.03830257058143616, -0.007779345847666264, 0.01137193851172924, -0.04081738367676735, -0.024167096242308617, -0.04418889433145523, -0.04125954955816269, 0.02080940455198288, -0.02249515987932682, -0.015945585444569588, -0.013679488562047482, 0.04156353697180748, 0.004580555949360132, 0.004767094738781452, 0.024968521669507027, 0.026944447308778763, 0.02006325125694275, -0.031117383390665054, 0.0029086186550557613, 0.0006865652394481003, -0.008829488418996334, -0.0018463855376467109, 0.024250002577900887, 0.0013912662398070097, -0.027994589880108833, -0.03667208552360535, 0.029100002720952034, 0.005212714429944754, -0.006836290005594492, -0.018142594024538994, -0.006867379881441593, 0.0032644234597682953, 0.006449395325034857, -0.0012694980250671506, 0.012608619406819344, 0.025631770491600037, 0.0056756059639155865, -0.009168021380901337, -0.012926425784826279, -0.0027255346067249775, 0.008532408624887466, -0.01257407572120428, -0.019828349351882935, -0.031808264553546906, -0.04432707279920578, 0.04338746890425682, -0.011689744889736176, 0.02412564493715763, 0.018695302307605743, 0.02089231088757515, -0.06068718805909157, -0.03752877935767174, 0.016733193770051003, 0.009209473617374897, 0.006822472438216209, 0.034848153591156006, -0.012643164023756981, -0.029072368517518044, -0.02307550236582756, -0.02456780895590782, 0.004573647398501635, -0.02089231088757515, -0.03642336651682854, -0.005578882526606321, -0.03418490290641785, 0.006832835730165243, -0.020574504509568214, -0.002003561472520232, -0.02039487473666668, -0.015544873662292957, -0.005112536251544952, -0.009679274633526802, -0.031587183475494385, 0.027552425861358643, -0.03816439211368561, -0.00031802221201360226, 0.008815670385956764, 0.017576070502400398, 0.016940457746386528, -0.0025821763556450605, 0.0025683585554361343, 0.014080201275646687, 0.013886753469705582, 0.016443021595478058, 0.003521777456626296, -0.0016304844757542014, 0.034350715577602386, -0.0406792089343071, -0.006857016589492559, 0.03866182640194893, -0.015683051198720932, 0.0428900346159935, 0.006335399579256773, 0.006131588947027922, 0.028118949383497238, 0.009105841629207134, 0.004905271343886852, 0.006853562314063311, -0.021845730021595955, 0.005920869763940573, 0.034682340919971466, 0.00891239382326603, 0.028961826115846634, -0.006193768698722124, -0.003371510421857238, -0.011102493852376938, -0.04313875362277031, 0.03509686887264252, -0.01202136930078268, -0.0057516032829880714, 0.015075072646141052, 0.0075997160747647285, 0.0279531367123127, -0.030592311173677444, -0.021265387535095215, -0.026253564283251762, -0.02050541527569294, 0.025535045191645622, -0.014646725729107857, 0.019220372661948204, 0.015116525813937187, -0.023752566426992416, -0.032968949526548386, -0.006318127736449242, 0.004083120264112949, 0.016608834266662598, 0.013803848065435886, 0.03658917918801308, -0.050683196634054184, -0.001058778609149158, -0.002848166273906827, 0.014964532107114792, 0.013237323611974716, 0.011378847993910313, 0.0034561436623334885, 0.004425107501447201, -0.004508013371378183, 0.0016088944394141436, 0.015807408839464188, 0.012111184187233448, -0.005475250072777271, 0.0278149601072073, 0.03703134506940842, 0.020850857719779015, 0.006601389497518539, -0.021928634494543076, 0.01989743858575821, -0.013416953384876251, 0.012118092738091946, -0.013168235309422016, -0.029127638787031174, 0.014715814031660557, -0.01884729601442814, 0.009451283141970634, 0.01174501609057188, -0.02116866409778595, 0.0010423701023682952, 0.04452051967382431, -0.021679917350411415, 0.00023015048645902425, 0.0033991457894444466, 0.009361468255519867, 0.011275215074419975, -0.02282678335905075, -0.016733193770051003, -0.008173149079084396, -0.008062607608735561, 0.006428668741136789, -0.02418091520667076, 0.04203333705663681, -0.013430770486593246, 0.025535045191645622, -0.010425428859889507, -0.031891170889139175, 0.054165247827768326, -0.005692878272384405, 0.032913681119680405, -0.016291027888655663, -0.02150028757750988, -0.02069886215031147, 0.034931059926748276, -0.0428900346159935, -0.008642950095236301, 0.003400872927159071, 0.02418091520667076, 0.008504773490130901, -0.022895872592926025, 0.034074362367391586, -0.012180272489786148, -0.011365029960870743, -0.05153989419341087, -0.02384928986430168, -0.00592777831479907, -0.014895443804562092, -0.016208121553063393, -0.014149289578199387, -0.032858408987522125, 0.025051428005099297, -0.02335185557603836, -0.008297508582472801, 0.018971655517816544, -0.031255558133125305, -0.00123149948194623, 0.006221403833478689, -0.007648077793419361, -0.00018276021000929177, 0.013921298086643219, 0.03667208552360535, -0.0003735087811946869, -0.04908034950494766, 0.033991456031799316, -0.015171797014772892, -0.015655415132641792, -0.00594159634783864, 0.025921940803527832, -0.026668094098567963, 0.016691740602254868, -0.02000797912478447, 0.011758833192288876, -0.025659404695034027, 0.030481770634651184, 0.0011028224835172296, -0.008753491565585136, -0.00863604061305523, -0.019192736595869064, 0.024028919637203217, -0.009817451238632202, -0.01095740869641304, -0.031725358217954636, -0.025714674964547157, 0.04214388132095337, -0.017465529963374138, -0.005993412341922522, 0.02150028757750988, 0.0021020122803747654, -0.028906555846333504, 0.01229772251099348, -0.009223291650414467, 0.033604562282562256, 0.020933764055371284, -0.020767951384186745, 0.02492706850171089, 0.012062822468578815, 0.010577422566711903, 0.06035556271672249, -0.02395983226597309, 0.001247907872311771, -0.055464111268520355, -0.001468127011321485, 0.019510542973876, -0.00013644945283886045, -0.001646029413677752, 0.0015009439084678888, 0.0015752138569951057, 0.006749929394572973, -0.0053957984782755375, -0.014024930074810982, -0.009775998070836067, -0.013085328973829746, 0.005530520807951689, 0.018695302307605743, -0.021735187619924545, -0.0038516742642968893, -0.019192736595869064, 0.013658761978149414, 0.005019267089664936, -0.0013221778208389878, 0.035594306886196136, 0.017189176753163338, 0.020104702562093735, 0.013672580011188984, 0.020159974694252014, -0.021154845133423805, -0.04581937938928604, 0.023199860006570816, 0.02147265151143074, 0.008760400116443634, 0.003062340198084712, -0.00246299896389246, 0.012373719364404678, -0.010349431075155735, 0.03882763907313347, -0.004877635743469, 6.255732296267524e-05, 0.019994162023067474, 0.012553349137306213, 0.02252279408276081, 0.01250498741865158, 0.0001373130508000031, 0.026543734595179558, -0.028326215222477913, 0.02227407693862915, -0.012954061850905418, 0.016816098242998123, 0.0009214655729010701, -0.01117849163711071, -0.01222863420844078, -0.016208121553063393, 0.008877850137650967, -0.009250926785171032, -0.026889177039265633, 0.002387001644819975, -0.003561503253877163, -0.012829702347517014, -0.015696868300437927, 0.011496298015117645, 0.008698220364749432, 0.0017997509567067027, -0.004490741528570652, -0.015102708712220192, -0.008290599100291729, 0.002768714679405093, 0.010591240599751472, -0.012933335267007351, -0.018018236383795738, 0.003879309631884098, -0.0047843665815889835, 0.01144102681428194, 0.005502885207533836, -0.012000642716884613, 0.009969445876777172, 0.0029086186550557613, 0.020795587450265884, -0.015420515090227127, -0.008829488418996334, -0.008967665024101734, -0.008601496927440166, -0.012104274705052376, 0.018640030175447464, 0.02210826426744461, -0.022785330191254616, 0.0005527065950445831, 0.015862679108977318, 0.010100713931024075, 0.008587678894400597, 0.024001285433769226, -0.009209473617374897, 0.031034477055072784, 0.005451069213449955, 0.02061595767736435, -0.033245302736759186, 0.014176924712955952, -0.003830947680398822, -0.02302023023366928, -0.004432016052305698, -0.019248008728027344, 0.0017807516269385815, 0.005630698520690203, -0.03664444759488106, -0.013444588519632816, -0.04026467725634575, -0.032609689980745316, 0.012104274705052376, -0.014094019308686256, -0.007876069284975529, -0.001858475967310369, -0.003469961229711771, -0.012221724726259708, 0.0002728989056777209, -0.04322165623307228, 0.0036409548483788967, -0.02072649821639061, 0.030785758048295975, 0.0029103457927703857, 0.008221510797739029, 0.01069487351924181, -0.0019517452456057072, -0.022398436442017555, -0.026433194056153297, -0.027884049341082573, -0.009513462893664837, 0.028215672820806503, -0.02064359188079834, -0.002882710425183177, 0.0048949080519378185, -0.017838606610894203, -0.026239747181534767, -0.006991738919168711, -0.001341177150607109, 0.005530520807951689, 0.01887493021786213, -0.003924217075109482, 0.011447936296463013, 0.016760827973484993, 0.0009326924337074161, -0.003678953507915139, 0.03987778350710869, 0.002209099242463708, 0.032416243106126785, 0.0026270835660398006, 0.0379156731069088, -0.004908725619316101, -0.0031556093599647284, -0.03910399228334427, -0.01185555662959814, -0.0018774752970784903, 0.0009465101175010204, 0.008504773490130901, 0.010715599171817303, 0.030122511088848114, -0.025424504652619362, 0.006452849600464106, 0.009651639498770237, 0.027690602466464043, -0.027289889752864838, -0.012207907624542713, -0.028063679113984108, 0.0373629666864872, -0.006463212892413139, 0.004404380917549133, -0.028409119695425034, -0.009112750180065632, -0.04018177092075348, -0.014522366225719452, 0.0024474540259689093, 0.035124506801366806, 0.02454017475247383, -0.023835472762584686, -0.032554421573877335, 0.034599434584379196, -0.012636255472898483, 0.026073934510350227, 0.010176710784435272, -0.011807194910943508, 0.015558691695332527, 0.025852851569652557, 0.016069944947957993, 0.011945371516048908, 0.032305702567100525, -0.004736004862934351, 0.02492706850171089, 0.017299717292189598, 0.001582986325956881, 0.013700215145945549, -0.007212821394205093, 0.020491598173975945, 0.02111339382827282, 0.023310402408242226, 0.022066811099648476, 0.055712826550006866, 0.00983817782253027, 0.006646296940743923, 0.026488464325666428, -0.006808654870837927, 0.005723968148231506, 0.02089231088757515, -0.04388490691781044, -0.017285900190472603, -0.014142381027340889, -0.027220800518989563, -0.0030813394114375114, 0.028409119695425034, 0.009188747964799404, -0.006266311276704073, -0.034958694130182266, 0.04253077507019043, 0.0030174327548593283, -0.02401510253548622, 0.022757695987820625, 0.003813675604760647, -0.016622651368379593, -0.019800715148448944, -0.010073077864944935, -0.015655415132641792, -0.025272510945796967, 0.009955627843737602, 0.01174501609057188, -0.0018222046783193946, 0.010073077864944935, 0.021210117265582085, -0.0019275643862783909, 0.028934191912412643, 0.035290319472551346, 0.016664104536175728, -0.020795587450265884, -0.014342736452817917, -0.02340712584555149, -0.0022540066856890917, 0.01782478764653206, 0.01157920341938734, -0.003452689154073596, -0.04446524754166603, 0.0481407456099987, -0.04045812413096428, 0.0017297989688813686, 0.016069944947957993, 0.008953846991062164, 0.01221481617540121, -0.02246752381324768, -0.029680345207452774, 0.001887838589027524, 0.00856695231050253, 0.017382623627781868, 0.0008195603149943054, 0.018308406695723534, 0.017341170459985733, -0.007786254398524761, 0.003165972651913762, -0.0019724718295037746, 0.0035995019134134054, -0.001156365848146379, -0.022287894040346146, 0.016788464039564133, 0.0182669535279274, 0.018557125702500343, 0.02437436208128929, 0.008062607608735561, -0.032029349356889725, 0.02288205362856388, 0.0017280718311667442, -0.04609573259949684, -0.01045997254550457, 0.02033960446715355, 0.000782425282523036, 0.021624647080898285, 0.032775502651929855, 0.004242023453116417, 0.03482051566243172, 0.051125362515449524, 0.005461432505398989, -0.032250430434942245, 0.032001715153455734, -0.007876069284975529, -0.013955841772258282, 0.014964532107114792, 0.04338746890425682, 0.006908832583576441, -0.029403991997241974, 0.0020743771456182003, 0.029790887609124184, 0.010418519377708435, -0.04753277078270912, 0.0024819981772452593, -0.02194245345890522, -0.017161540687084198, 0.010370157659053802, -0.006131588947027922, -0.00022280986013356596, -0.004259295295923948, -0.018695302307605743, -0.0021952816750854254, 0.025908123701810837, 0.02426382154226303, 0.019745444878935814, -0.009589459747076035, -0.015558691695332527, 0.019220372661948204, -0.02360057272017002, -0.006331945303827524, 0.0003424190217629075, 0.005084901116788387, -0.004998540505766869, 0.04101083055138588, -0.027179347351193428, -0.014743449166417122, 0.0199250727891922, 0.0023852745071053505, -0.015544873662292957, 0.033604562282562256, -0.018529489636421204, 0.0014543093275278807, 0.017976783215999603, -0.010922865010797977, -0.023420942947268486, 0.0014871262246742845, 0.014646725729107857, 0.017064817249774933, -0.009174929931759834, -0.032968949526548386, 0.0015562145272269845, -0.026377923786640167, -0.03744587302207947, 0.0033801463432610035, 0.04720114544034004, -0.052341315895318985, 0.02492706850171089, 0.0002826144336722791, 0.01917891949415207, -0.003153882222250104, 0.001944836461916566, -0.008988391607999802, -0.010480699129402637, -0.00015598848403897136, 0.04405071958899498, 0.007827707566320896, 0.012802067212760448, -0.024388179183006287, 0.00582414586097002, -0.025700857862830162, 0.015835044905543327, 0.0009681002120487392, 0.033632196485996246, 0.00038365612272173166, -0.007164459675550461, -0.007060827221721411, -0.0354284942150116, -0.01004544273018837, -0.012947152368724346, 0.03526268154382706, -0.009320015087723732, -0.012615528889000416, -0.015752138569951057, -0.004974359646439552, 0.02232934720814228, -0.0096170948818326, -0.031559549272060394, -0.004881090484559536, -0.027538606896996498, 0.0023403670638799667, -0.015655415132641792, -0.024899432435631752, 0.033936187624931335, -0.031946443021297455, 0.012988605536520481, -0.026778636500239372, 0.02020142786204815, 0.002870619995519519, -0.012276995927095413, -0.029818521812558174, 0.002606357214972377, 0.03473760932683945, 0.00029837520560249686, -0.0036513181403279305, -0.006722294259816408, 0.003015705617144704, 0.00597614049911499, -0.0010086896363645792, -0.013810756616294384, -0.004128027707338333, 0.018667666241526604, 0.003412963356822729, -0.013423861935734749, 0.004597828257828951, -0.0007103143725544214, 0.004590919241309166, -0.030205417424440384, 7.92896535131149e-05, -0.03918689861893654, -0.020823221653699875, -0.0035476856864988804, 0.010383975692093372, 0.026930630207061768, 0.005019267089664936, -0.0024336364585906267, 0.0016313481610268354, -0.035152141004800797, -0.00978290755301714, -0.04581937938928604, -0.01956581510603428, 0.021348293870687485, -0.034157268702983856, 0.0189578365534544, -0.007931339554488659, 0.014632907696068287, -0.013423861935734749, -0.03774986043572426, 0.029846157878637314, -0.017037181183695793, -0.018280770629644394, 0.020463962107896805, -0.0020691954996436834, 0.010024716146290302, -0.014480913057923317, 0.006259402260184288, -0.03973960503935814, -0.011275215074419975, -0.016650287434458733, 0.004608191549777985, -0.03645100072026253, 0.02197008766233921, -0.015987038612365723, -0.02050541527569294, 0.028630202636122704, 0.029707981273531914, 0.0072750006802380085, 0.02282678335905075, -0.014467095956206322, -0.016553563997149467, 0.019828349351882935, -0.04183989018201828, -0.012194089591503143, 0.007986610755324364, -0.01945527270436287, -0.01768661104142666, 0.016857551410794258, 0.0005289575201459229, -0.03990541771054268, 0.02349003218114376, 0.03780513256788254, 0.0015164888463914394, -0.0025372689124196768, -0.030592311173677444, -0.021403564140200615, -0.010895228944718838, 0.026737183332443237, 0.003672044724225998, -0.0026737183798104525, 0.0026892630849033594, 0.010922865010797977, -0.0451008602976799, -0.030205417424440384, 0.005958868190646172, -0.028353849425911903, 0.010363249108195305, -0.002203917596489191, -0.010998861864209175, -0.06112935394048691, -0.015130343846976757, -0.02326894924044609, 0.03545612841844559, -0.007143733091652393, -0.023890743032097816, 0.014867807738482952, -0.0027082625310868025, -0.025659404695034027, 0.0012867701007053256, 0.014881625771522522, -0.013009332120418549, 0.0026443556416779757, 0.006487393751740456, -0.006038319785147905, 0.005730876699090004, -0.0034595979377627373, -0.02075413428246975, -0.0032834226731210947, -0.002083013067021966, -0.015171797014772892, -0.015793591737747192, 0.021044304594397545, -0.007689530961215496, -0.04559829458594322, 0.018336042761802673, -0.015434332191944122, -0.00489145377650857, -0.033217668533325195, -0.025714674964547157, 0.010245799086987972, 0.01026652567088604, -0.018750572577118874, -0.025783764198422432, -0.004542557522654533, 0.007364815566688776, -0.016429204493761063, -0.021845730021595955, 0.02014615572988987, 0.011254488490521908, 0.007516810204833746, 0.007869160734117031, -0.014494731090962887, 0.009941810742020607, 0.009955627843737602, -0.011765741743147373, -0.0026322652120143175, -0.027386613190174103, 0.006166133098304272, 0.019137466326355934, 0.002292005345225334, 0.026060117408633232, -0.027027353644371033, -0.019303278997540474, -0.015807408839464188, 0.02210826426744461, 0.02078176848590374, -0.01019743736833334, 0.008173149079084396, -0.0007293136441148818, 0.006031411234289408, 0.013216597028076649, 0.017313534393906593, -0.010356340557336807, -0.009465101175010204, 0.010446155443787575, 0.033024221658706665, 0.026820089668035507, 0.026060117408633232, -0.0009447828633710742, 0.02440199814736843, -0.0022280984558165073, 0.006763747427612543, 0.018170230090618134, 0.00297079817391932, -0.011185400187969208, 0.002682354301214218, 0.016346298158168793, 0.008981483057141304, 0.012401354499161243, -0.028602568432688713, 0.006449395325034857, -0.003134882776066661, -0.02407037280499935, 0.003031250322237611, -0.013106055557727814, 0.006984829902648926, -0.02246752381324768, 0.0036029561888426542, 0.014964532107114792, 0.0280913133174181, -0.012111184187233448, 0.030647581443190575, 0.013762394897639751, -0.025604134425520897, 0.06660114973783493, -0.011682836338877678, 0.017976783215999603, -0.01859857700765133, -0.0020726497750729322, 0.023724932223558426, -0.01207663957029581, 0.015199432149529457, -0.005198896862566471, 0.0014197651762515306, 0.0032989676110446453, -0.008256055414676666, -0.012802067212760448, -0.017949147149920464, -0.00949273630976677, -0.022647153586149216, -0.02014615572988987, -0.03470997512340546, 0.002456089947372675, -0.013762394897639751, -0.002996706170961261, 0.008663676679134369, 0.010466882027685642, -0.015987038612365723, 0.010515243746340275, -0.01073632575571537, 0.02440199814736843, -0.001950017991475761, -0.02268860675394535, -0.0005596154369413853, -0.02028433233499527, -0.004103846848011017, 0.009817451238632202, 0.008801853284239769, 0.021265387535095215, -0.01984216831624508, 0.002544177696108818, -4.7795088903512806e-05, 0.0006623843219131231, -0.0014318556059151888, 0.01876438967883587, 0.01989743858575821, -0.02313077263534069, 0.0470353327691555, -0.02108575776219368, 0.02075413428246975, -5.629619045066647e-05, -0.016194304451346397, -0.015917951241135597, -0.003882763907313347, 0.0035010511055588722, 0.0005039129755459726, -0.019192736595869064, 0.008242237381637096, 0.01236681081354618, 0.017534617334604263, -0.0014232195680961013, 0.03589829429984093, -8.797966984275263e-06, -0.02395983226597309, -0.027345160022377968, 0.000523775874171406, 0.017451710999011993, 0.005741239991039038, -0.009706909768283367, -0.0063492171466350555, 0.0014076746301725507, 0.02058832161128521, 0.009320015087723732, -0.012864246964454651, 0.0030934298411011696, -0.018280770629644394, -0.011413391679525375, 0.007765527814626694, 0.015600143931806087, 0.02172137051820755, -0.026820089668035507, -0.014204559847712517, -0.027358977124094963, 0.013748576864600182, -0.016981910914182663, 0.020574504509568214, -0.009499644860625267, 0.010162892751395702, 0.0003216925251763314, -0.0025009973905980587, 0.004045121371746063, 0.0007854479481466115, 0.0193723663687706, -0.020519234240055084, 0.004898362327367067, -0.005979594774544239, 0.015005984343588352, -0.020878491923213005, 0.005164352711290121, 0.016733193770051003, 0.035235047340393066, -0.00482236547395587, 0.012684617191553116, 0.0093407416716218, -0.00011183672904735431, 0.04554302617907524, 0.007820799015462399, -0.02194245345890522, -0.014328919351100922, -0.0038344021886587143, -0.027262253686785698, 0.009195656515657902, 0.0013299502898007631, 0.002958707744255662, 0.0017021637177094817, -0.02523105777800083, 0.021652281284332275, -0.006977920886129141, -0.009679274633526802, -0.007558262906968594, -0.00963091291487217, 0.014508549124002457, 0.021624647080898285, 0.001110594836063683, -0.016788464039564133, 0.005665242671966553, -0.02091994509100914, 0.0017064816784113646, -0.024581627920269966, 0.027690602466464043, -0.016291027888655663, 0.013472223654389381, -0.009264744818210602, 0.013534403406083584, 0.025424504652619362, -0.0027928955387324095, -0.03918689861893654, -0.006325036287307739, -0.0011131856590509415, 0.0017557070823386312, 0.013859118334949017, -0.0009879630524665117, -0.0075720809400081635, -0.032305702567100525, -0.0020001071970909834, 0.010964317247271538, -0.008712038397789001, 0.03824729844927788, 0.0023904561530798674, -0.003269605105742812, -0.0192341897636652, -0.023835472762584686, -0.009554916061460972, 0.02163846418261528, 0.02434672601521015, -0.0186814833432436, -0.007081553805619478, 0.0011848647845909, 0.01390748005360365, -0.005689423996955156, -0.012062822468578815, -0.007053918205201626, 0.005112536251544952, -0.00976908951997757, -0.003796403529122472, 0.003682407783344388, -0.0006701567908748984, -0.002443999517709017, -0.01200755126774311, -0.03614701330661774, 0.0019551997538655996, 0.008850215002894402, -0.023918379098176956, 0.022785330191254616, -0.014356554485857487, -0.002929345006123185, 0.004404380917549133, 0.007199003826826811, -0.017382623627781868, -0.01948290877044201, -0.0027289888821542263, -0.00956182461231947, 0.007779345847666264, -0.004628918133676052, 0.015171797014772892, -0.010383975692093372, -0.036478638648986816, 0.004584010690450668, -0.004421652760356665, 0.0016546654514968395, -0.013714033178985119, -0.01199373323470354, 0.0018463855376467109, -0.0006701567908748984, 0.023531483486294746, -0.004197116009891033, -0.01898547261953354, 0.027497153729200363, 0.015296155586838722, 1.8203154468210414e-05, -0.0007237002137117088, 0.01782478764653206, 0.0028170766308903694, 0.019911255687475204, -0.007765527814626694, -0.0053543453104794025, 0.008518590591847897, 0.0009681002120487392, -0.0019033834105357528, 0.010674146935343742, 0.017479347065091133, -0.030509404838085175, -0.027068806812167168, -0.02036723867058754, -0.0002709557884372771, 0.006117771379649639, 0.000446051504695788, 0.026295017451047897, 0.012905699200928211, -0.0009309652377851307, 0.021044304594397545, -0.031835902482271194, -0.020242879167199135, -0.010978135280311108, 0.027635330334305763, 0.0048189107328653336, -0.007123006507754326, 0.0054994309321045876, -0.03482051566243172, 0.027925502508878708, 0.006774110719561577, 0.031891170889139175, 0.020546868443489075, -0.03921453654766083, -0.029542168602347374, -0.016968093812465668, -0.0002588653296697885, 0.01012834906578064, 0.016926640644669533, -0.030951570719480515, 0.04195043072104454, -0.0007418359164148569, 0.006048683077096939, -0.008739673532545567, 0.017230628058314323, 0.004922543186694384, 0.007026283070445061, -0.009810542687773705, 0.00029837520560249686, 0.030564676970243454, 0.020381055772304535, -0.00870512891560793, -0.0030347048304975033, -0.011897009797394276, 0.008608405478298664, -0.008477137424051762, 0.017783336341381073, 0.029293451458215714, -0.015434332191944122, 0.011689744889736176, 0.004356019198894501, 0.002026015194132924, -0.003827493404969573, -0.00016667558520566672, 0.0426136814057827, 0.005147080402821302, 0.030841030180454254, -0.025908123701810837, -0.025659404695034027, -0.007219730410724878, 0.0075997160747647285, -0.0005147080519236624, 0.025894304737448692, -0.012014459818601608, 0.015724502503871918, 0.009168021380901337, -0.016857551410794258, 0.0014482641126960516, -0.011862466111779213, 0.007295727264136076, 0.0067464751191437244, -0.014701995998620987, 0.012878064066171646, -0.014923078939318657, 0.020408691838383675, 0.0020277423318475485, 0.008076425641775131, -0.006812109146267176, -0.0008877849904820323, -0.008504773490130901, 0.016401568427681923, -0.013320229947566986, -0.009320015087723732, -0.019855985417962074, -0.007136824075132608, -0.003171154297888279, 0.011240670457482338, -0.018032053485512733, -0.02227407693862915, -0.013817665167152882, -0.014480913057923317, 0.02080940455198288, 0.023172225803136826, 0.004311111755669117, -0.01097122672945261, -0.02451253868639469, 0.005848326720297337, -0.04302820935845375, -0.006798291578888893, -0.004832728300243616, 0.009679274633526802, -0.004518376663327217, 0.04078974947333336, -0.011482479982078075, 0.04186752811074257, 0.002314459066838026, 0.016097581014037132, 0.0042143878526985645, -0.02473362162709236, -0.02329658344388008, -0.00949273630976677, 0.003955306950956583, 0.0004918225458823144, -0.04711823910474777, 0.011517024599015713, -0.01915128529071808, 0.021375928074121475, -0.007254274562001228, 0.006515029352158308, -0.015752138569951057, -0.017396440729498863, -0.0008903758134692907, -0.01138575654476881, -0.012919517233967781, 0.04457578808069229, -0.024844162166118622, -0.0018619304755702615, 0.0008325143717229366, -0.030343594029545784, -0.012525714002549648, 0.014107836410403252, -0.02064359188079834, 0.027193166315555573, 0.033549290150403976, -0.03774986043572426, -0.005989958066493273, 0.006874288432300091, -0.006805200129747391, -0.0009473736863583326, -0.029652711004018784, -0.007247365545481443, -0.0089953001588583, -0.009237109683454037, 0.0048189107328653336, -0.020463962107896805, 0.013050785288214684, -0.02097521536052227, 0.020795587450265884, 0.02340712584555149, 0.0095480065792799, -0.027124077081680298, 0.023918379098176956, 0.0063837612979114056, 0.02296495996415615, 0.03783276677131653, -0.014073292724788189, -0.01054287888109684, -0.009727636352181435, 0.028409119695425034, 0.018861113116145134, 0.003010523971170187, -0.006470121908932924, 0.008470228873193264, -0.02456780895590782, 0.004801638890057802, 0.03418490290641785, -0.021514104679226875, -0.004362927749752998, -0.02045014500617981, 0.01865384913980961, 0.016221938654780388, 0.02017379179596901, 0.006065955385565758, 0.027179347351193428, -0.033549290150403976, -0.0059312330558896065, -0.0002767851110547781, -0.004725641570985317, -0.00978290755301714, 0.004014031961560249, -0.010632693767547607, -0.0015959403244778514, 0.011530841700732708, 0.010238890536129475, -0.00485690962523222, 0.022923506796360016, -0.026709547266364098, -0.0074200863018631935, 0.04045812413096428, -0.006853562314063311, 0.022840600460767746, -0.02349003218114376, 0.025244874879717827, 0.030260687693953514, -0.00021266250405460596, 0.022812966257333755, -0.003492414951324463, 0.01221481617540121, -0.0005095264059491456, 0.013230415061116219, -0.015779774636030197, -0.03979487717151642, -0.018114959821105003, 0.007993519306182861, 0.0009775998769327998, -0.005554701667279005, 0.016221938654780388, 0.0072404565289616585, -0.01109558530151844, -0.021210117265582085, 0.011945371516048908, -0.0025459048338234425, -0.006573754362761974, 0.001571759465150535, -0.0015562145272269845, 0.013990386389195919, -0.005008903797715902, -0.02161082811653614, 0.004252386745065451, 0.0005345709505490959, 0.0023749112151563168, 0.0034492346458137035, -0.014273648150265217, 0.0092716533690691, 0.022895872592926025, 0.0004905271343886852, 0.0024647261016070843, -0.02274387702345848, 0.005772329866886139, -0.008553135208785534, -0.008055699057877064, 0.008801853284239769, 0.009914174675941467, 0.029514534398913383, 0.0072404565289616585, 0.013161326758563519, -0.001530306413769722, -0.001265179947949946, -2.987530388054438e-05, 0.0008597178966738284, 0.0037031343672424555, -0.015890315175056458, 0.0039345803670585155, 0.009092023596167564, 0.03772222623229027, -0.00017628318164497614, 0.017092451453208923, -0.024415815249085426, 0.007896795868873596, -0.0010294161038473248, 0.009119659662246704, -0.005865599028766155, 0.011461753398180008, -0.001784206018783152, 0.010549787431955338, -0.016885187476873398, -0.018032053485512733, 0.0031797902192920446, -0.032222796231508255, 0.009326924569904804, 0.021818093955516815, 0.03857892379164696, -0.0021555558778345585, 0.02180427685379982, -0.0042212968692183495, -0.010121439583599567, -0.008152422495186329, 0.013251141645014286, -0.016719374805688858, 0.007447721902281046, 0.00039164445479400456, 0.01390748005360365, -0.004204024560749531, 0.0010596421780064702, -0.02097521536052227, -0.005084901116788387, -0.02401510253548622, 0.004373291041702032, -0.015199432149529457, 0.026764817535877228, -0.007703348528593779, 0.02368347905576229, -0.0024940886069089174, 0.027787325903773308, -0.010929773561656475, 0.0002146056212950498, 0.030564676970243454, 0.03678262606263161, -0.016981910914182663, -0.004984722938388586, 0.007219730410724878, -0.0020968306344002485, -0.0015104435151442885, 0.0006973603158257902, -0.029735615476965904, -0.0002636151621118188, -0.0034544162917882204, -0.012083548121154308, 0.013969659805297852, 0.0007262910366989672, 0.002376638585701585, -0.006974466610699892, -0.0008027200237847865, -0.007399359717965126, -0.002573540201410651, -0.0021020122803747654, -0.030592311173677444, -0.025244874879717827, 0.008428775705397129, -0.032001715153455734, -0.004780912306159735, 0.0006002048612572253, 0.019413819536566734, 0.006763747427612543, -0.011254488490521908, 0.01040470227599144, 0.012028277851641178, -0.013251141645014286, -0.003378419205546379, 0.005485613364726305, 0.0185433067381382, 0.032139889895915985, 0.029929064214229584, -0.005050356965512037, -0.016139034181833267, -0.015268520452082157, 0.002319640712812543, -0.0045011043548583984, 0.002744533820077777, 0.0037722226697951555, 0.019883621484041214, -0.020906127989292145, -0.014646725729107857, -0.049605417996644974, -0.009092023596167564, 0.007758619263768196, -0.008898576721549034, 0.016083762049674988, 0.01159302145242691, -0.0017703884514048696, 0.0037894947454333305, 0.0075651719234883785, 0.014018021523952484, -0.011067950166761875, 0.0029673436656594276, 0.005399252753704786, -0.016346298158168793, 0.010909046977758408, 0.02398746646940708, -0.014480913057923317, 0.018999289721250534, 0.009879630990326405, -0.016525927931070328, 0.007330271415412426, 0.010770870372653008, -0.006656660232692957, -0.0032471513841301203, 0.017949147149920464, -0.01073632575571537, -0.013375500217080116, 0.007882977835834026, 0.013555129989981651, -0.0026495372876524925, -0.0038413109723478556, 0.0007729256758466363, -0.006853562314063311, -0.009064388461411, 0.005634153261780739, 0.0010112803429365158, 0.017175357788801193, -0.004877635743469, -0.0005138444248586893, -0.008090242743492126, -0.00520235113799572, 0.033715102821588516, 0.006121225655078888, 0.0005760239437222481, -0.003210880095139146, 0.023642025887966156, -0.013057693839073181, -0.007116097956895828, -0.011081768199801445, 0.005454523488879204, -0.0025009973905980587, 0.01222863420844078, 0.033853281289339066, 0.015075072646141052, 0.005019267089664936, 0.0010320069268345833, 0.012131910771131516, -0.013548221439123154, -0.035925932228565216, 0.013852209784090519, 0.007102279923856258, 0.013264958746731281, -0.024222368374466896, -0.0006459758733399212, -0.015572508797049522, 0.00034155542380176485, -0.004991631489247084, -0.007779345847666264, 0.03534558787941933, 0.004383654333651066, 0.002469907747581601, 0.007053918205201626, 0.012000642716884613, -0.009465101175010204, 0.008691311813890934, -0.001064823823980987, 0.006787928286939859, 0.008850215002894402, 0.019800715148448944, 0.009499644860625267, -0.020989034324884415, 0.005385435186326504, 0.0014318556059151888, -0.0042212968692183495, -0.008152422495186329, -0.007247365545481443, -0.014176924712955952, -0.015475785359740257, 0.015793591737747192, -0.01859857700765133, 0.02384928986430168, 0.0031728814356029034, 0.004335292614996433, 0.015613961964845657, 0.015558691695332527, 0.0015052619855850935, -0.007067735772579908, 0.006124680396169424, -0.015959404408931732, -0.006615207530558109, 0.008677493780851364, 0.0033576926216483116, 0.02097521536052227, -0.011689744889736176, -0.001272088848054409, -0.01870911940932274, -0.003751496085897088, 0.011081768199801445, 0.017230628058314323, 0.014328919351100922, 0.005122899543493986, 0.0006952012772671878, -0.010370157659053802, 0.00594159634783864, 0.013638036325573921, 0.0006317264051176608, -0.010791596956551075, -0.016622651368379593, -0.012290813960134983, -0.012428990565240383, -0.013755486346781254, -0.028118949383497238, -0.02514815144240856, 0.010363249108195305, 0.011012679897248745, -0.01061196718364954, -0.008242237381637096, 0.02437436208128929, -0.00506417453289032, 0.02227407693862915, -0.0028930737171322107, -0.0033110580407083035, 0.006421760190278292, -0.002699626376852393, -0.014950714074075222, -0.007233547978103161, -0.00011960916890529916, 0.002354184864088893, 0.009983262978494167, 0.009105841629207134, -0.0034768700134009123, 0.0064321234822273254, 0.0038585830479860306, -0.025327781215310097, 0.017810970544815063, -0.0014974895166233182, 0.01181410439312458, 0.014439460821449757, -0.0008903758134692907, 0.02075413428246975, -0.016885187476873398, 0.008345870301127434, -0.005084901116788387, 0.0032955133356153965, -0.0025355415418744087, 0.015240885317325592, 0.006169587839394808, -0.00260117556899786, 0.0014767630491405725, 0.005869053304195404, -2.350622344238218e-05, 0.01887493021786213, -0.011185400187969208, -0.01257407572120428, 0.008186967112123966, 0.01879202574491501, 0.013962751254439354, 0.00023641162260901183, -0.0011641383171081543, -0.0005337073234841228, -0.012401354499161243, 0.014398007653653622, 0.014384189620614052, -0.0015752138569951057, -0.006055592093616724, 0.017658976837992668, 0.014218377880752087, -0.025700857862830162, 0.015434332191944122, 0.0035131415352225304, 0.0029103457927703857, -0.001306632999330759, 0.00558233680203557, -0.005934687331318855, 0.009174929931759834, 0.002283369190990925, -0.004998540505766869, -0.0021590101532638073, -0.008670585229992867, 0.013057693839073181, 0.023559119552373886, -0.0007111779996193945, 0.0024422723799943924, 0.0009542825282551348, -0.028961826115846634, -0.02056068554520607, 0.013562038540840149, -0.010466882027685642, -0.00449765007942915, 0.007268092129379511, 0.005482158623635769, 0.011054132133722305, -0.008373505435883999, 0.017617523670196533, -0.008332052268087864, 0.002561449771746993, 0.0013670852640643716, -0.006338853854686022, 0.013783121481537819, 0.032664962112903595, 0.012560257688164711, -0.0009292379836551845, 0.01940000243484974, -0.0044009266421198845, -0.011973007582128048, 0.028989462181925774, 0.01931709609925747, -0.004445834085345268, -0.004518376663327217, -0.0008765581296756864, -0.00625249370932579, 0.0026253564283251762, -0.006991738919168711, 0.0013480860507115722, -0.0064321234822273254, 0.002140010939911008, -0.019137466326355934, 0.009237109683454037, 0.015683051198720932, -0.02056068554520607, 0.016152851283550262, 0.008062607608735561, 0.0015164888463914394, -0.012221724726259708, 0.02296495996415615, -0.008428775705397129, 0.025949575006961823, 0.005091809667646885, 0.006235221400856972, 0.0089953001588583, -0.010618875734508038, 0.011012679897248745, -0.011503206565976143, 0.009858904406428337, -0.005979594774544239, -2.3587186660734005e-05, 0.004432016052305698, -0.013334047049283981, -0.011282123625278473, -0.015931768342852592, 0.005419979337602854, -0.026129204779863358, 0.016622651368379593, -0.009969445876777172, -0.008173149079084396, 0.006100499536842108, 0.020463962107896805, 0.012753705494105816, -0.006984829902648926, 0.004318020306527615, 0.009810542687773705, 0.003734224010258913, -0.012567167170345783, 0.016636468470096588, 0.005278348457068205, -0.0014750357950106263, -0.030481770634651184, -0.00263571972027421, 0.028519662097096443, -0.014176924712955952, -0.001087277545593679, -0.03498632833361626, 0.024775074794888496, -0.011420300230383873, -0.01818404719233513, 0.004518376663327217, 0.011544659733772278, -0.006373398005962372, 0.014605272561311722, -0.03960143029689789, -0.00021039554849267006, -0.0018964746268466115, -0.007986610755324364, -0.0035856841132044792, 0.0027376250363886356, -0.012449716217815876, 0.007551354356110096, 0.001974198967218399, -0.015959404408931732, 0.0003953147679567337, -0.008753491565585136, 0.04747749865055084, 0.011219944804906845, -0.02241225354373455, 0.0018826569430530071, 0.024250002577900887, 0.00583796389400959, 0.00971381925046444, 0.025327781215310097, 0.006749929394572973, -0.005848326720297337, -0.02376638539135456, -0.007261183112859726, -0.022591883316636086, -0.003678953507915139, 0.01265698205679655, -0.004459651652723551, -0.012954061850905418, 0.013209688477218151, 0.007578989490866661, -0.01195228099822998, 0.032250430434942245, 0.0009352832566946745, 0.003830947680398822, 0.01199373323470354, 0.02136211097240448, -0.019248008728027344, 0.007813889533281326, 0.024636898189783096, 0.008110969327390194, -0.011586112901568413, -0.0029068912845104933, -0.007523718755692244, -0.02407037280499935, 0.006249039433896542, 0.0028395303525030613, 0.012194089591503143, 0.01893020235002041, 0.007129915524274111, 0.00997635442763567, -0.012083548121154308, 0.02299259603023529, 0.0009214655729010701, 0.014356554485857487, -0.004829274024814367, 0.026212111115455627, -0.005343982018530369, 0.02221880666911602, 0.008891668170690536, -0.021320657804608345, -0.0035010511055588722, -0.014301284216344357, -0.004874181468039751, -0.0021037396509200335, 0.011682836338877678, -0.031117383390665054, 0.00034889605012722313, 0.028201855719089508, -0.03821966424584389, 0.004452742636203766, -0.006135043688118458, -0.031200287863612175, -0.006318127736449242, 0.016664104536175728, -0.0015873042866587639, 0.013783121481537819, 0.005634153261780739, -0.0010734598618000746, 0.01713390462100506, -0.01087450236082077, -0.023503849282860756, 0.004919088911265135, 0.03940798342227936, 0.01975926198065281, -0.012601710855960846, 0.0021261933725327253, -0.014059474691748619, -0.005136717110872269, 0.025438321754336357, 0.023116953670978546, -0.0481407456099987, -0.004311111755669117, -0.012194089591503143, 0.003592593129724264, 0.006863925140351057, -0.014128562994301319, -0.02514815144240856, 0.002278187545016408, 0.012138819321990013, -0.01782478764653206, -0.0031556093599647284, -0.019966525956988335, 0.007800071965903044, -0.0011408210266381502, -0.001564850565046072, 0.014232195913791656, 0.01018361933529377, -0.0007487447583116591, 0.010584332048892975, 0.0020519234240055084, -0.013796938583254814, -0.021901000291109085, 0.006546119228005409, 0.0012565439101308584, 0.0025804489850997925, 0.02442963235080242, 0.013817665167152882, 0.009831269271671772, 0.016180485486984253, 0.026350287720561028, 0.014052566140890121, -0.0015985311474651098, 0.00491217989474535, -0.007737892679870129, -0.010301069356501102, 0.004832728300243616, 0.012187181040644646, -0.013202778995037079, 0.02346239611506462, -0.005136717110872269, 0.0074891746044158936, 0.0022989141289144754, 0.008235328830778599, 0.013734759762883186, 0.013548221439123154, -0.0038724008481949568, -0.0033525112085044384, -0.013472223654389381, 0.02191481739282608, 0.006981375627219677, -0.005658334121108055, 0.02045014500617981, 0.016249574720859528, -0.00950655434280634, 0.013258050195872784, -0.010494517162442207, 0.0014085383154451847, 0.014218377880752087, 0.005613426677882671, 0.0063146729953587055, 0.011641383171081543, -0.007337180431932211, -0.026516100391745567, 0.006922650616616011, -0.012249360792338848, -0.017451710999011993, 0.017092451453208923, 0.02376638539135456, 0.017051000148057938, 0.005882870871573687, -0.0016503473743796349, -0.015130343846976757, 0.013092238456010818, 0.0010708690388128161, -0.0022315529640764, 0.004090028814971447, 0.0011252760887145996, -0.00618340540677309, 0.009244018234312534, 0.028657838702201843, 0.0034146904945373535, -0.010687964037060738, 0.007800071965903044, -0.013258050195872784, -0.0034958694595843554, -0.012905699200928211, -0.02509288117289543, 0.0021607375238090754, 0.012843520380556583, -0.0011485934955999255, -0.017202993854880333, 0.005727422423660755, -0.0032816955354064703, 0.030039604753255844, 0.01890256628394127, 0.01870911940932274, -0.022757695987820625, -0.006093590520322323, 0.00999017246067524, 0.0048258197493851185, 0.006255947984755039, 0.005523611791431904, -0.013997294940054417, -0.0012409990886226296, 0.005796510726213455, 0.0021158300805836916, -0.008145513944327831, 0.0197868961840868, 0.011959189549088478, -0.011330485343933105, 0.015240885317325592, -0.02230171300470829, 0.0009007390472106636, -0.02216353639960289, 0.024982338771224022, 0.006808654870837927, -0.011572294868528843, 9.580607729731128e-05, -0.008021154440939426, 0.020629774779081345, -0.011434118263423443, 0.021845730021595955, -0.02125157043337822, -0.011793377809226513, -0.009831269271671772, -0.0036858622916042805, 0.015254702419042587, 0.011171582154929638, 0.000564365298487246, 0.013140600174665451, -0.0016615742351859808, 0.013403135351836681, -0.027206983417272568, -0.024968521669507027, -0.0029673436656594276, -0.0028395303525030613, -0.0009914174443110824, 0.0005259349127300084, 0.0024077282287180424, -0.014881625771522522, -0.02313077263534069, 0.007848434150218964, 0.016111398115754128, 0.00012792136112693697, 0.008318234235048294, -0.007033191621303558, -0.0021503742318600416, -0.008055699057877064, -0.02420854941010475, -0.0018740209052339196, -0.02028433233499527, -0.0049363612197339535, -0.0058966889046132565, 0.024484902620315552, 0.0023023684043437243, 0.003469961229711771, -0.013492950238287449, 0.01793533004820347, 0.0030692489817738533, 0.029459262266755104, -0.01250498741865158, -0.04573647305369377, -0.017078634351491928, -0.0052438038401305676, 0.013589673675596714, -0.0025683585554361343, -0.027552425861358643, 0.005413070321083069, 0.013472223654389381, 0.015724502503871918, 0.0027998045552521944, -0.007737892679870129, 0.013410044834017754, 0.006870834156870842, -0.013727850280702114, 0.017078634351491928, -0.015434332191944122, -0.006684295833110809, -0.004445834085345268, 0.011074858717620373, -0.019220372661948204, -0.004881090484559536, -0.002181463874876499, 0.007523718755692244, 0.01178646832704544, 0.016650287434458733, 0.015738321468234062, 0.00019452681590337306, 0.002475089393556118, 0.006414851173758507, 0.013596583157777786, -0.019330913200974464, -0.004356019198894501, -0.010204345919191837, 0.00870512891560793, -0.010605058632791042, -0.024484902620315552, 0.0030416136141866446, -0.034102000296115875, -0.0021417380776256323, -0.0038067668210715055, -0.02357293665409088, -0.026820089668035507, -0.015296155586838722, 0.010349431075155735, 0.01763134077191353, -0.02318604290485382, 0.02009088546037674, 0.009223291650414467, -0.004352564457803965, -0.02257806621491909, -0.007164459675550461, 0.01934473216533661, 0.0030709761194884777, 0.02313077263534069, -0.016926640644669533, -0.012035186402499676, -0.009237109683454037, 0.00496054207906127, -0.008138605393469334, -0.030647581443190575, -0.00985199585556984, 0.015461967326700687, 1.8877844922826625e-05, -0.02337948977947235, -1.242105554410955e-05, -0.0034855061676353216, -0.0019033834105357528, -0.016788464039564133, 0.0038033125456422567, -0.002134829293936491, -0.029155274853110313, -0.018280770629644394, -0.0015458513516932726, -0.013610400259494781, 0.013389318250119686, 0.006072863936424255, -0.012960970401763916, 0.0035062325187027454, -0.02194245345890522, -0.004297294188290834, -0.01948290877044201, -0.00034436213900335133, -0.007585898507386446, -0.007924431003630161, 0.0025631769094616175, -0.007399359717965126, 0.025797581300139427, -0.0026806271634995937, -0.01986980251967907, -0.018018236383795738, -0.004190206993371248, 0.008435685187578201, 0.003741133026778698, -0.021182481199502945, -0.009444374591112137, -0.026709547266364098, 0.028630202636122704, -0.012352992780506611, -0.02221880666911602, 0.009845086373388767, -0.0034388715866953135, 0.014798719435930252, -0.010093804448843002, -0.016415387392044067, 0.0010294161038473248, -0.013603491708636284, -0.0016615742351859808, 0.012608619406819344, -0.0098934480920434, 0.0021797367371618748, 0.017285900190472603, 0.0004633236094377935, -0.0014033566694706678, 0.0007414041319862008, 0.005295620299875736, 0.0030640673357993364, 0.018529489636421204, -0.023476213216781616, 0.02150028757750988, -0.010211254470050335, -0.014881625771522522, -0.04767094552516937, -0.012739887461066246, 0.004452742636203766, 0.011821012943983078, -0.02257806621491909, 0.0036375003401190042, 0.015461967326700687, -0.023614389821887016, 0.010812323540449142, -0.032388608902692795, -0.0019897439051419497, 0.014328919351100922, -0.0063492171466350555, 0.001070005469955504, -0.013444588519632816, 0.015987038612365723, -0.006273220293223858, 0.005299074575304985, 0.013990386389195919, 0.024830345064401627, 0.026212111115455627, -0.02205299399793148, 0.0088571235537529, -0.026115387678146362, -0.004304202739149332, 0.0031780630815774202, 0.0007081553339958191, 0.009727636352181435, 0.02188718132674694, 0.02017379179596901, -0.032167524099349976, -0.014853990636765957, -0.0077102575451135635, -0.027552425861358643, -0.027441883459687233, 0.010086895897984505, -0.0027065351605415344, -0.002349003218114376, 0.025673221796751022, -0.0042212968692183495, 0.009430556558072567, -0.02412564493715763, 0.007938249036669731, -0.011489388532936573, 0.0096861831843853, 0.024028919637203217, 0.017962966114282608, 0.029403991997241974, 0.014992167241871357, -0.013182053342461586, -0.009934901259839535, -0.018336042761802673, 0.0002513087820261717, 0.025079062208533287, 0.016843734309077263, 0.012871155515313148, -0.01025270763784647, -0.0018515671836212277, -0.0070642814971506596, -0.002860256703570485, 0.019966525956988335, 0.019800715148448944, -0.007012465037405491, 0.0028913465794175863, 0.016415387392044067, -0.006566845346242189, 0.017037181183695793, 0.016843734309077263, 0.01076396182179451, -0.001209045760333538, 0.018750572577118874, -0.013838391751050949, 0.006017593201249838, 0.006480485200881958, -0.01928946189582348, 0.019220372661948204, -0.014729631133377552, -0.005717059131711721, 0.01221481617540121, -0.010107622481882572, 0.003792949253693223, 0.0010294161038473248, -0.0019292915239930153, -0.027137896046042442, -0.00884330552071333, 0.010294160805642605, -0.015116525813937187, -0.005309437867254019, -0.0059657772071659565, 0.016539745032787323, 0.0006645433604717255, 0.010446155443787575, 0.016995728015899658, -0.011973007582128048, 0.0017574343364685774, -0.0008769899723120034, 0.007406268734484911, 0.008836396969854832, -0.0005721377092413604, 0.010107622481882572, -0.017327353358268738, 0.0008420139783993363, 0.0026858088094741106, -0.0028516207821667194, 0.0029604348819702864, -0.024761255830526352, 0.011461753398180008, -0.022204987704753876, -0.008553135208785534, 0.015337608754634857, 0.010985043831169605, 0.0027428066823631525, 0.017023364081978798, -0.009485827758908272, 0.023863108828663826, -0.003466506954282522, 0.005530520807951689, 0.024802708998322487, -0.018197866156697273, 0.005485613364726305, 0.027566242963075638, 0.003609865205362439, -0.0037031343672424555, -0.007800071965903044, -0.007979702204465866, 0.011358121410012245, 0.01390748005360365, -0.011289033107459545, 0.0070297373458743095, -0.010480699129402637, -0.016056127846240997, -0.009672366082668304, 0.01012834906578064, -1.5423429431393743e-05, 0.010784688405692577, 0.006235221400856972, 0.021458834409713745, -0.012974787503480911, 0.004725641570985317, -0.009396012872457504, 0.029625074937939644, -0.007053918205201626, 0.0066359336487948895, -0.030233051627874374, -0.010978135280311108, -0.0036236827727407217, -0.0006360444240272045, 0.01102649699896574, 0.019745444878935814, 0.005240349564701319, 0.0026253564283251762, 0.012035186402499676, -0.00578960170969367, 0.00015944290498737246, -0.005589245818555355, 0.016581198200583458, -0.006825926713645458, -0.0025925394147634506, -0.016981910914182663, 0.002958707744255662, 0.005862144753336906, -0.005454523488879204, -0.01843276619911194, -0.023006413131952286, -0.008760400116443634, -0.02252279408276081, -0.006532301194965839, -0.004414744209498167, 0.016028491780161858, -0.026308834552764893, -0.00599686661735177, 0.007537536323070526, 0.005278348457068205, 0.022094447165727615, -0.006328491028398275, 0.0028637112118303776, -0.011496298015117645, -0.01807350665330887, -0.017949147149920464, -0.006283583585172892, 0.02174900472164154, 0.004829274024814367, 0.000362497812602669, -0.004356019198894501, -0.00014227877545636147, -0.02288205362856388, 0.029238181188702583, -0.014031839556992054, -0.030315957963466644, 0.014100927859544754, -0.00992108415812254, -0.0066359336487948895, 0.012622437439858913, -0.011081768199801445, -0.017023364081978798, 0.007958975620567799, -0.014273648150265217, -0.013720941729843616, 0.030979206785559654, 0.018722936511039734, -0.009278562851250172, -0.0074615394696593285, 0.006473576184362173, -0.034157268702983856, 0.003314512548968196, 0.007026283070445061, -0.016221938654780388, 0.002827439922839403, 0.02235698327422142, -0.015185614116489887, 0.0006140224868431687, 0.011088676750659943, -0.000339612306561321, 0.012912608683109283, 0.002709989668801427, -0.014812537468969822, -0.013603491708636284, -0.013264958746731281, 0.007233547978103161, -0.014273648150265217, -0.015379061922430992, 0.010211254470050335, -0.011005770415067673, 0.013893662951886654, -0.017576070502400398, 0.005658334121108055, 0.02103048749268055, -0.010978135280311108, -0.002803258830681443, -0.00031003387994132936, -0.009465101175010204, -0.022730059921741486, 0.032001715153455734, 0.02014615572988987, 0.033853281289339066, -0.0451008602976799, -0.006705022417008877, -0.02205299399793148, 0.003706588875502348, -0.0005224804626777768, -0.021154845133423805, 0.017368804663419724, -0.004297294188290834, -0.0005445023998618126, -0.0021780095994472504, -0.0026719910092651844, -0.003210880095139146, 0.018819659948349, -0.001168456394225359, -0.02329658344388008, 0.010577422566711903, -0.021375928074121475, -0.02454017475247383, -0.026833906769752502, -0.009098933078348637, 0.001743616652674973, -0.0023576391395181417, -0.010010899044573307, 0.0008558316621929407, -0.0012358174426481128, 0.013748576864600182, -0.019773079082369804, -0.0013144054682925344, -0.009009118191897869, -0.020878491923213005, 0.005095263943076134, -0.02390456199645996, -0.029542168602347374, 0.019275642931461334, -0.01040470227599144, -0.007620442658662796, -0.027082623913884163, 0.001898201764561236, -0.008180057629942894, 0.012580984272062778, 0.007737892679870129, 0.014038748107850552, 0.007440812885761261, 0.013057693839073181, 0.0063146729953587055, 0.010218163952231407, -0.001358449226245284, -0.009934901259839535, -0.0004175525682512671, -0.009748362936079502, 0.011309759691357613, 0.001766933943144977, 0.0022989141289144754, -0.013361682184040546, -0.011620656587183475, 0.002514815190806985, 0.002400819445028901, -0.005865599028766155, -0.031531911343336105, 0.004473469220101833, -0.024498721584677696, 0.003948397934436798, -0.006939922459423542, 0.013278776779770851, -0.010715599171817303, -0.0029448899440467358, -0.00604522880166769, 0.016926640644669533, -0.010176710784435272, -0.008256055414676666, 0.009250926785171032, -0.016664104536175728, 0.0037825859617441893, 0.017424076795578003, -0.03573248162865639, -0.006338853854686022, -0.013886753469705582, 0.00877421721816063, 0.011012679897248745, 0.012373719364404678, -0.018722936511039734, 0.013755486346781254, 0.015835044905543327, 0.012788249179720879, 0.01953817903995514, 0.010245799086987972, -0.013997294940054417, -0.006860470864921808, -0.004528739955276251, -0.008090242743492126, -0.007233547978103161, -0.0016019856557250023, 0.026377923786640167, 0.003561503253877163, -0.005969231482595205, 0.03600883483886719, 0.008332052268087864, 0.009057479910552502, -0.02053305134177208, -0.015227067284286022, 0.006249039433896542, 0.013230415061116219, -0.006953740026801825, 0.0058552357368171215, 0.0020277423318475485, -0.0015113072004169226, -0.007040100637823343, 0.0036029561888426542, 0.009250926785171032, -0.02368347905576229, 0.008456411771476269, 0.004425107501447201, -0.005050356965512037, -0.008649858646094799, 0.029790887609124184, -0.0029828886035829782, -0.01846040040254593, 0.03860655799508095, -0.0013161326060071588, -0.009209473617374897, 0.0018999290186911821, 0.01004544273018837, -0.009458191692829132, -0.0010389157105237246, -0.034157268702983856, 0.017037181183695793, 0.008173149079084396, 0.0048258197493851185, 0.00950655434280634, 0.0026098114904016256, 0.0006287037977017462, 0.0056099724024534225, -0.0037480418104678392, -0.013251141645014286, 0.00877421721816063, 0.013990386389195919, -0.003032977692782879, 0.014867807738482952, 0.021458834409713745, -0.015475785359740257, 0.008145513944327831, -0.009741454385221004, 0.033107127994298935, 0.016857551410794258, -0.027980772778391838, -0.012608619406819344, 0.012871155515313148, -0.004283476155251265, -0.017051000148057938, 0.008221510797739029, 0.017617523670196533, -0.0034803245216608047, 0.002825712552294135, 0.011917736381292343, 0.00983817782253027, 0.00017056180513463914, 0.006912287324666977, 0.010397793725132942, 0.008000428788363934, 0.016581198200583458, 0.018971655517816544, 0.014923078939318657, 0.02407037280499935, -0.005115990526974201, 0.015309973619878292, 0.01898547261953354, 0.012567167170345783, 0.0057446942664682865, 0.011821012943983078, -0.008110969327390194, -0.001415447099134326, 0.009983262978494167, -0.008511682040989399, -0.014315101318061352, -0.006667023524641991, -0.0060348655097186565, 0.009250926785171032, 0.008373505435883999, -0.005267985165119171, -0.0041452995501458645, -0.01221481617540121, 0.014066383242607117, -0.02045014500617981, 0.0016987092094495893, 0.016788464039564133, -0.015116525813937187, 0.0019517452456057072, 0.00042554092942737043, 0.0058897798880934715, -0.0024146370124071836, -0.014342736452817917, 0.007765527814626694, -0.0063146729953587055, 0.013057693839073181, -0.007022828329354525, -0.00599686661735177, -0.01062578521668911, -0.007578989490866661, -0.006100499536842108, 0.008580770343542099, -0.0010104167740792036, 0.017506983131170273, 0.018004417419433594, -0.009306197986006737, -0.0007578125805594027, -0.030371228232979774, 0.01192464493215084, -0.04521140083670616, 0.007026283070445061, 0.013707124628126621, -0.034433621913194656, 0.0007629942265339196, 0.012567167170345783, 0.014246013015508652, 0.003435417078435421, 0.0027289888821542263, -0.00928547140210867, 0.008615314029157162, 0.018363676965236664, 0.004207479301840067, -0.013541311956942081, 0.0015803955029696226, -0.015973221510648727, 0.007371724583208561, 0.007592807058244944, 0.0073855421505868435, 0.016940457746386528, -0.008055699057877064, -0.018363676965236664, 0.005067628808319569, -0.0017557070823386312, -0.024028919637203217, 0.007502992171794176, -0.012380627915263176, 0.003544231178238988, 0.008725855499505997, -0.018667666241526604, -0.017962966114282608, 0.0017358441837131977, 0.01986980251967907, -0.006435577757656574, 0.010839958675205708, 0.04045812413096428, 0.00019841303583234549, 9.688558202469721e-05, 0.020215244963765144, -0.00045684658107347786, -0.005969231482595205, 0.006290492136031389, -0.0027825324796140194, -0.0005103900330141187, -0.00047152783372439444, -0.007889887318015099, 0.011330485343933105, 0.002756624249741435, 0.013085328973829746, -0.01818404719233513, -0.008864032104611397, -0.015793591737747192, 0.011959189549088478, -0.00928547140210867, 0.0013739941641688347, -0.012373719364404678, 0.0019016562728211284, -0.012947152368724346, -0.004957087337970734, 0.003366328775882721, 0.009568733163177967, -0.025327781215310097, -0.004677279852330685, -0.015945585444569588, -0.021707553416490555, -0.0013973114546388388, 0.0004074052267242223, 0.02056068554520607, -0.008725855499505997, 0.006062500644475222, 0.0026599005796015263, 0.030398864299058914, -0.014287466183304787, -0.011551568284630775, -0.005402707029134035, 0.010238890536129475, 0.01032179594039917, -0.03551140055060387, 0.010660328902304173, 0.0026616277173161507, -0.0003717815561685711, -9.04625267139636e-05, -0.010093804448843002, 0.006017593201249838, -0.004197116009891033, 0.0019724718295037746, -0.00572051340714097, -0.03418490290641785, 0.012097366154193878, -0.015876498073339462, -0.032195162028074265, 0.02163846418261528, -0.012864246964454651, -0.007212821394205093, 0.008587678894400597, -0.019717808812856674, -0.003031250322237611, 0.015199432149529457, -0.0022540066856890917, 0.002423273166641593, -0.011503206565976143, -0.0030243415385484695, 0.011572294868528843, 0.03960143029689789, -0.00013461428170558065, 0.013299503363668919, -0.01912364922463894, -0.005879416596144438, -0.024526355788111687, -0.011461753398180008, 0.0013800393790006638, -0.009347651153802872, 0.005613426677882671, -0.0010112803429365158, 0.003015705617144704, 0.013520585373044014, 0.019994162023067474, -0.011226853355765343, 0.008456411771476269, 0.0051401713863015175, -0.0002815349434968084, -0.015821227803826332, 0.023946015164256096, 0.008152422495186329, 0.013112965039908886, -0.01243589911609888, -0.032996583729982376, 0.0020795585587620735, -0.0010786415077745914, 0.02006325125694275, 0.013513676822185516, 0.013479133136570454, 0.005240349564701319, 0.012995514087378979, 0.008228420279920101, -0.03716951981186867, 0.016664104536175728, 0.031145017594099045, 0.004345655906945467, 0.0070711905136704445, 0.003996759653091431, 0.014059474691748619, 0.01116467360407114, -0.011793377809226513, 0.004407835192978382, 0.0004754140682052821, 0.01735498756170273, -0.025065245106816292, 0.0020346513483673334, 0.011468661949038506, -0.0009767361916601658, -0.014370372518897057, 0.016926640644669533, 0.0025027247611433268, -0.005869053304195404, -0.02125157043337822, -0.0030295231845229864, 0.00240427372045815, 0.013078420422971249, 0.016484474763274193, -0.002317913342267275, -0.012083548121154308, 0.008601496927440166, -0.021790457889437675, -0.005554701667279005, -0.0028723471332341433, 0.030758123844861984, -0.017520800232887268, 0.020159974694252014, 0.00589323416352272, 0.01228390447795391, 0.005295620299875736, 0.014315101318061352, 0.011275215074419975, 0.009679274633526802, 0.02288205362856388, -0.023669661954045296, -0.013361682184040546, -0.022923506796360016, -0.030785758048295975, 0.016180485486984253, -0.020933764055371284, -0.008836396969854832, -0.022122083231806755, 0.011143947020173073, 0.006276674568653107, -0.008186967112123966, -0.007668804377317429, -0.02337948977947235, 0.003910399507731199, 0.0034855061676353216, 0.021679917350411415, -0.003665135707706213, -0.017866240814328194, 0.0026668093632906675, 0.002290277974680066, 0.028602568432688713, 0.0027117168065160513, 0.012511895969510078, -0.0058137825690209866, -0.0005328437546268106, -0.00038775824941694736, -0.014059474691748619, 0.011358121410012245, 0.01228390447795391, -0.013340956531465054, 0.0013230415061116219, -0.008297508582472801, -0.02205299399793148, -0.028353849425911903, -0.019579632207751274, -0.015365243889391422, 0.0006442486774176359, -0.02036723867058754, 0.009596368297934532, -0.000690451473928988, 0.014024930074810982, -0.0001570679887663573, 0.017023364081978798, 0.028298579156398773, 0.03868946433067322, -0.0013575856573879719, 0.0025649042800068855, -0.011323576793074608, -0.0012513623805716634, 0.026143023744225502, 0.003578775329515338, -0.006584117654711008, 0.013223505578935146, 0.002699626376852393, 0.003927671350538731, -0.005399252753704786, 0.023586755618453026, 0.001507852808572352, -0.01917891949415207, -0.008518590591847897, 0.029210545122623444, 0.010618875734508038, 0.010031625628471375, 0.001749661867506802, 0.0093407416716218, 0.014660542830824852, -0.002658173441886902, -0.021928634494543076, 0.0027151713147759438, 0.00870512891560793, -0.002514815190806985, 0.007613533642143011, 0.010003989562392235, -0.022591883316636086, 0.01174501609057188, 0.031863536685705185, 0.013423861935734749, 0.006041774060577154, -0.018474219366908073, -0.013803848065435886, 0.003931125625967979, -0.02155555784702301, 0.0036754989996552467, -0.004083120264112949, 0.009437465108931065, -0.032139889895915985, 0.011897009797394276, 0.0019310187781229615, -0.006124680396169424, 0.010176710784435272, -0.0069261048920452595, 0.012311539612710476, -0.010639602318406105, -0.021928634494543076, 0.01893020235002041, -0.015627779066562653, -0.011599930003285408, -0.006221403833478689, 0.001813568640500307, -0.011689744889736176, -0.0022073721047490835, 0.000111512876173947, 0.02268860675394535, -0.0038413109723478556, 0.008739673532545567, -0.014536184258759022, -0.002314459066838026, 0.011959189549088478, 0.017037181183695793, 0.032554421573877335, -0.0023110045585781336, -0.0005604790640063584, 0.02144501730799675, -0.01940000243484974, 0.014964532107114792, -0.0017652068054303527, 0.0019603813998401165, -0.00985199585556984, 0.013845301233232021, -0.01931709609925747, -0.006359580438584089, -0.01782478764653206, 0.033438749611377716, -0.019137466326355934, -0.015406697057187557, -0.049605417996644974, 0.0031953351572155952, 0.010605058632791042, 0.008262963965535164, -0.00942364800721407, 0.0177142471075058], "ce5416cd-156d-439e-ad33-04d2eda3d05f": [-0.036109112203121185, -0.0025194985792040825, -0.0038106953725218773, 0.026119912043213844, -0.024092474952340126, -0.03178785741329193, 0.014547237195074558, 0.04726742208003998, -0.039364852011203766, 0.014169867150485516, 0.01869090646505356, 0.01840972900390625, 0.0183357335627079, -0.00423246156424284, 0.01425866037607193, 0.02685985341668129, -0.020851533859968185, 0.005490361247211695, 0.0030152590479701757, -0.04146628454327583, 0.0662987008690834, 0.015923528000712395, -0.06191825121641159, -0.011957444250583649, -0.030929528176784515, -0.01997840218245983, -0.019001681357622147, 0.02160627208650112, -0.02188744954764843, -0.009278858080506325, 0.008235542103648186, -0.012172026559710503, 0.03152148053050041, 0.019771220162510872, 0.019401248544454575, -0.027215024456381798, 0.008553716354072094, 0.02680065669119358, 0.0061193108558654785, -0.008294736966490746, -0.015671947970986366, 0.03678986057639122, 0.001214427873492241, -0.003009709296748042, -0.01845412515103817, 0.009463843889534473, -0.01500600017607212, -0.012963763438165188, -0.007281017955392599, 0.00838353019207716, 0.028842894360423088, -0.029375651851296425, 0.00374780036509037, 0.004110371228307486, 0.03510279580950737, -0.04487001150846481, 0.02859131433069706, 0.05679785832762718, -0.016130710020661354, -0.05312775447964668, -0.00316324713639915, -0.02351531945168972, -0.003229841822758317, -0.008775698952376842, -0.0007871121051721275, 0.013748100958764553, 0.004421146586537361, 0.018883289769291878, -0.008627709932625294, 0.01984521374106407, 0.03045596554875374, 0.03178785741329193, -0.03838813304901123, 0.044396452605724335, 0.0202447809278965, -0.012971162796020508, 0.03235021233558655, 0.020955124869942665, 0.02866530790925026, -0.024862011894583702, 0.000523508177138865, -0.007924766279757023, 0.0116984648630023, -0.010588553734123707, 0.0862475037574768, 0.014591633342206478, -0.046024322509765625, -0.06914007663726807, -0.011232302524149418, -0.0369674451649189, 0.020659148693084717, 0.020466763526201248, -0.011106512509286404, 0.012874971143901348, 0.021310295909643173, 0.011846452951431274, 0.02869490534067154, 0.005490361247211695, 0.006711263675242662, -0.015316775999963284, 0.015716344118118286, 0.006274698302149773, 0.013104352168738842, -0.004761519376188517, 0.015686746686697006, -0.04540276899933815, 0.0014641579473391175, 0.022686585783958435, -0.027999361976981163, 0.013873890973627567, 0.013570515438914299, -0.028117751702666283, 0.01101031992584467, 0.01821734383702278, -0.0285321194678545, -0.02518758736550808, -0.044396452605724335, -0.002787727164104581, -0.02376689948141575, -0.01986001245677471, 0.024077674373984337, -0.007687985431402922, 0.03844732791185379, -0.011809456162154675, -0.04350852221250534, 0.02178385853767395, -0.008575914427638054, 0.0401935875415802, 0.020895930007100105, 0.01502819824963808, 0.00047587446169927716, -0.004128870088607073, 0.009915207512676716, 0.024284858256578445, 0.007872970774769783, 0.006848152726888657, 0.019371651113033295, 0.028976082801818848, -0.01432525459676981, 0.023900089785456657, -0.07346132397651672, -0.017211023718118668, -0.027570195496082306, 0.011809456162154675, -0.009848612360656261, 0.0004920606734231114, -0.023056557402014732, 0.03013039194047451, -0.007403108291327953, 0.029109273105859756, -0.06034957617521286, -0.03356371819972992, -0.0398976095020771, 0.005020498763769865, 0.027940167114138603, -0.05185505375266075, 0.0037921967450529337, 0.02011159248650074, 0.01099552121013403, 0.037914570420980453, -0.011128710582852364, -0.04537317156791687, -0.00315399793908, 0.021428687497973442, 0.03566515073180199, 0.014532438479363918, 0.07381650060415268, 0.008797897025942802, -0.02527637965977192, 0.017921367660164833, 0.03702664002776146, -0.036138709634542465, 0.0167966578155756, -0.0019164468394592404, -0.011350692249834538, -0.015042997896671295, 0.04688265174627304, 0.013111751526594162, 0.013133950531482697, -0.029701225459575653, -0.022716183215379715, 0.006189605221152306, 0.005242480896413326, -0.02532077580690384, -0.01430305652320385, 0.01866130903363228, 0.02176905982196331, 0.021310295909643173, 0.0019959905184805393, 0.010921526700258255, -0.014584233984351158, -0.008916287682950497, -0.024684427306056023, -0.010507159866392612, -0.027880970388650894, -0.027999361976981163, 0.0018822245765477419, 0.00538676930591464, 0.00038083831896074116, 0.017536597326397896, -0.017743781208992004, -0.06552916020154953, -0.00032603644649498165, 0.022213025018572807, -0.03152148053050041, 0.03492520749568939, -0.029005682095885277, -0.029730822890996933, 0.025853533297777176, -0.03005639649927616, 0.04362691193819046, -0.044722024351358414, -0.0039586834609508514, -0.008709103800356388, 0.004469242878258228, 0.02819174714386463, -0.016456283628940582, 0.015908727422356606, -0.015479562804102898, -0.020629551261663437, 0.008072754368185997, 0.00932325515896082, 0.01697424240410328, -0.026223503053188324, -0.05073034390807152, -0.02694864571094513, -0.03528038039803505, 0.017418207600712776, -0.025927526876330376, 0.0053423731587827206, -0.006674266420304775, -0.0030226584058254957, -0.004894708748906851, -0.029479242861270905, 0.009441644884645939, 0.03536917269229889, 0.047622594982385635, 0.005560655612498522, 0.0010081693762913346, 0.005486661568284035, 0.003903188044205308, 0.01700383983552456, 0.0012347763404250145, 0.015050397254526615, 0.0219318475574255, 0.04407087713479996, 0.005309075582772493, 0.057952165603637695, 0.00209218286909163, 0.005138889420777559, 0.03353412076830864, 0.0018258040072396398, -0.003287187311798334, -0.006060115527361631, -0.03220222517848015, 0.04031197726726532, 0.03492520749568939, -0.011824254877865314, -0.015050397254526615, -0.024832414463162422, -0.0018267289269715548, 0.0397496223449707, -0.018735302612185478, 0.015168786980211735, 0.032379813492298126, -0.029257262125611305, 0.017107432708144188, -0.014095873571932316, 0.0009702474344521761, 0.032853372395038605, 0.009841213002800941, 0.014813615940511227, 0.01270478405058384, 0.0337413027882576, -0.00467642629519105, 0.0006728837033733726, 0.013600112870335579, 0.011594872921705246, -0.012112831696867943, -0.012135029770433903, -0.010410968214273453, -0.014687825925648212, 0.029775219038128853, 0.006000920198857784, -0.016012320294976234, 0.013844293542206287, -0.01664866879582405, -0.022568196058273315, -0.034126073122024536, -0.003357481677085161, 0.02527637965977192, 0.021191906183958054, -0.009375050663948059, 0.011187905445694923, -0.013200544752180576, 0.008309535682201385, 0.004147368483245373, -0.01524278149008751, -0.026208704337477684, -0.0013032208662480116, -0.008694305084645748, 0.0035831634886562824, -0.002928315894678235, -0.03149188309907913, 0.019667627289891243, -0.030574355274438858, 0.06493721157312393, 0.01331893540918827, -0.020703544840216637, 0.03519158810377121, 0.024418048560619354, -0.026045918464660645, -0.012038837186992168, -0.025513160973787308, -0.021473083645105362, 0.02168026752769947, -0.005564355291426182, -0.03309015557169914, -0.027377812191843987, -0.04037117213010788, 0.029301658272743225, 0.007673186715692282, -0.0599944032728672, 0.030781539157032967, 0.03211343288421631, -0.05055275931954384, 0.02876890078186989, -0.0039401850663125515, -0.024699226021766663, 0.016145508736371994, -0.02828053943812847, -0.016204705461859703, -0.015375970862805843, 0.017447805032134056, -0.02850252203643322, -0.035724345594644547, -0.04552116245031357, -0.04750420153141022, 0.029212864115834236, -0.04871770739555359, -0.026060717180371284, -0.009722822345793247, 0.024136871099472046, -0.004842912778258324, -0.012268219143152237, -0.0031373491510748863, -0.0014484341954812407, 0.02000800147652626, -0.00747340265661478, -0.005760439671576023, 0.0008708178647793829, 0.00913086999207735, 0.013474322855472565, 0.002863571047782898, 0.02693384699523449, -0.013193145394325256, -0.03362291306257248, -0.00841312762349844, 0.017788177356123924, -0.03365251049399376, -0.017995361238718033, -0.02854691818356514, 0.007310615386813879, 0.0027507301419973373, 0.0015649748966097832, -0.0010220432886853814, 0.006389389280229807, -0.017477402463555336, -0.012246021069586277, -0.00028603337705135345, 0.0045987325720489025, 0.009900408796966076, -0.0061415089294314384, -0.015509160235524178, -0.018054556101560593, -0.04161427170038223, 0.049516841769218445, -0.019682426005601883, 0.01267518661916256, 0.015479562804102898, -0.006648368667811155, -0.04081513732671738, -0.00934545323252678, 0.023100953549146652, 0.024033278226852417, -0.009190065786242485, 0.02836933173239231, -0.002486201236024499, -0.03391888737678528, -0.027895770967006683, -0.023959284648299217, 0.008220742456614971, -0.02828053943812847, -0.022346213459968567, 0.0013106202241033316, -0.028828095644712448, -0.012911967933177948, -0.006089713424444199, -0.00031655593193136156, -0.016027119010686874, 0.009885610081255436, -0.004132569767534733, 9.60766919888556e-05, -0.005519958678632975, 0.018024958670139313, -0.011779858730733395, -0.015864331275224686, 0.0013087703846395016, 0.013089553453028202, 0.030811136588454247, -0.012815775349736214, 0.004051176365464926, -0.009412047453224659, 0.021487882360816002, 0.028147349134087563, 0.024566035717725754, -0.026223503053188324, 0.03459963575005531, -0.01012978982180357, -0.017728982493281364, 0.022183427587151527, 0.01832093484699726, 0.022597793489694595, 0.0005933400825597346, 0.007872970774769783, 0.034037280827760696, 6.728836888214573e-05, 0.011469082906842232, 0.004058575723320246, 0.0015326024731621146, -0.0024603032507002354, 0.051055919378995895, 0.00316694681532681, -0.0006529978127218783, 0.005708643700927496, -0.022464605048298836, 0.008627709932625294, -0.01660427264869213, 0.0334453247487545, -0.009685825556516647, 0.004502539988607168, 0.03353412076830864, -0.0054533639922738075, -1.907660043798387e-05, -0.04220622777938843, 0.005249880254268646, -0.057715386152267456, -0.007576994132250547, 0.016278699040412903, -0.03155107796192169, 0.014118071645498276, 0.018735302612185478, -0.0335933156311512, 0.00024533664691261947, 0.0026748862583190203, -0.004058575723320246, 0.019149668514728546, 0.013762899674475193, 0.04057835787534714, -0.06040877103805542, -0.021295497193932533, -0.0033852295018732548, 0.02493600733578205, 0.007225522305816412, 0.025468764826655388, -0.010914127342402935, 0.010928926058113575, 0.010899328626692295, 0.0025731443893164396, 0.02490640990436077, 0.008605511859059334, -0.0054644630290567875, 0.01848372258245945, 0.04706023633480072, 0.018898088485002518, 0.017640190199017525, -0.021532278507947922, 0.0075584957376122475, -0.0054755620658397675, 0.007014639209955931, -0.00907167512923479, -0.010566355660557747, 0.0060231187380850315, -0.009264059364795685, 0.010632949881255627, 0.017906568944454193, -0.024625232443213463, -0.0253799706697464, 0.0233969297260046, 0.017033439129590988, 0.015805136412382126, 0.005671646445989609, 0.0025990421418100595, 0.00032118058879859746, 0.005227682180702686, -0.022730983793735504, 0.0013022959465160966, -0.024669628590345383, -0.03347492590546608, -0.009315854869782925, 0.016411887481808662, 0.022361012175679207, 0.010388769209384918, 0.0002596729900687933, -0.04895448684692383, 0.027200225740671158, -0.03202464058995247, 0.029597634449601173, -0.024077674373984337, -0.019060876220464706, -0.04706023633480072, 0.037441007792949677, -0.035961125046014786, 0.010292577557265759, 0.002188374986872077, 0.024270059540867805, 0.0025010001845657825, -0.024018479511141777, 0.024462444707751274, -0.004802216310054064, -0.010477562434971333, -0.017447805032134056, -0.03525078296661377, -0.009375050663948059, -0.017447805032134056, -0.005508859641849995, -0.011927846819162369, -0.04232461750507355, 0.017580995336174965, -0.03812175244092941, -0.001646368415094912, 0.015449965372681618, -0.01993400603532791, 0.015627549961209297, 0.009952204301953316, 0.009989201091229916, 0.004724522121250629, 0.035872332751750946, 0.041170310229063034, 0.0030134092085063457, -0.05644268915057182, 0.03332693502306938, -0.024418048560619354, -0.029390450567007065, -0.0034888212103396654, 0.024284858256578445, 0.0034943707287311554, 0.019771220162510872, -0.016219504177570343, 0.030870331451296806, -0.025587154552340508, 0.01264558918774128, -0.015494361519813538, -0.010462763719260693, -0.0033223344944417477, -0.02870970591902733, 0.013555716723203659, -0.0036294099409133196, -0.025749942287802696, -0.0062192026525735855, -0.031018320471048355, 0.012112831696867943, -0.010766139253973961, 0.003660857444629073, 0.006015718914568424, -0.015967924147844315, -0.03385969251394272, 0.03664186969399452, -0.0015455514658242464, 0.026149509474635124, 0.022390609607100487, -0.025527959689497948, 0.026415888220071793, -0.003917986992746592, -0.02196144498884678, 0.02040756866335869, -0.025735143572092056, 0.00422506220638752, -0.04185105487704277, -0.02844332717359066, 0.022982561960816383, 0.009293656796216965, 0.021206704899668694, -0.000868043105583638, -0.006837053690105677, -0.011950044892728329, -0.013489121571183205, -0.007244020700454712, 0.01259379368275404, -0.0018276538467034698, 0.023026959970593452, 0.01848372258245945, -0.032439008355140686, -4.341371823102236e-05, -0.009656228125095367, 0.02699304185807705, 0.004095572512596846, 0.02011159248650074, 0.02856171689927578, 0.016204705461859703, 0.025927526876330376, 0.016219504177570343, 0.02176905982196331, -0.01001140009611845, -0.03992720693349838, 0.028783699497580528, 0.010936325415968895, 0.02376689948141575, 0.004761519376188517, 0.019327254965901375, -0.020540757104754448, -0.008760899305343628, 0.05315735191106796, -0.019519640132784843, 0.0016953895101323724, -0.015597953461110592, 0.02037797123193741, 0.03966083005070686, 0.030811136588454247, 0.005157387815415859, 0.03664186969399452, -0.00538676930591464, 0.05360131338238716, -0.027910569682717323, 0.01857251487672329, 0.030870331451296806, -0.014858012087643147, -0.015731142833828926, -0.011372891254723072, -0.0030374571215361357, -0.004728222265839577, -0.0018923986935988069, -0.003479571780189872, -0.02848772332072258, -0.010891929268836975, -0.014658228494226933, 0.02025957964360714, 0.014917207881808281, 0.011787258088588715, -0.0187057051807642, 0.0008856166969053447, -0.004143668804317713, 0.010248180478811264, 0.04516598954796791, -0.013407728634774685, 0.00015585003711748868, 0.021251101046800613, 0.028798498213291168, 0.011935246177017689, 0.013407728634774685, -0.003381529590114951, -0.0014382600784301758, 0.00906427577137947, 0.01857251487672329, -0.029094474390149117, -0.035872332751750946, -0.02699304185807705, 0.01101771928369999, 0.014169867150485516, 0.018764900043606758, 0.021221503615379333, -0.029701225459575653, 0.014917207881808281, 0.018069354817271233, 0.006470782682299614, 0.0017157378606498241, 0.006367191206663847, 0.0014068125747144222, 0.014591633342206478, 0.01990440860390663, -0.00034037278965115547, -0.034066878259181976, 0.022597793489694595, 0.011195304803550243, -0.0036978544667363167, -0.008161547593772411, -2.0124368802498793e-06, 0.002789577003568411, 0.011432086117565632, -0.047859374433755875, -0.030870331451296806, -0.050937529653310776, -0.04427805915474892, 0.028931686654686928, -0.012734382413327694, 0.0028395229019224644, 0.0035683647729456425, 0.0005480186664499342, -0.0219318475574255, -0.01080313604325056, -0.01172806229442358, 0.023174947127699852, -0.010558956302702427, 0.016278699040412903, -0.0032723883632570505, -0.004332353826612234, 0.024136871099472046, -0.01330413669347763, 0.011269299313426018, 0.0009517489233985543, -0.03676026314496994, -0.015923528000712395, 0.006999840494245291, -0.02178385853767395, 0.015760740265250206, -0.006840753369033337, -0.0219318475574255, -0.017950965091586113, -0.006370890885591507, 0.011187905445694923, 0.0009170642006210983, -0.0012597492896020412, 0.005131489597260952, 0.007613991387188435, -0.005201783962547779, 0.006814855150878429, -0.008864491246640682, 0.022893769666552544, 0.0062229023315012455, 0.027407409623265266, 0.009656228125095367, 0.026031119748950005, -0.014784018509089947, -0.03838813304901123, -0.044722024351358414, 0.00373855116777122, -0.022938165813684464, -0.004839213099330664, -0.00044627682655118406, 0.00419176509603858, 0.032794177532196045, -0.011365491896867752, 0.02820654585957527, 0.009463843889534473, -0.019800817593932152, -0.04193984717130661, -0.021339893341064453, -0.0040252781473100185, 0.029420047998428345, -0.01858731359243393, 0.028931686654686928, -0.022849373519420624, -0.01654507778584957, -0.04199904203414917, 0.002998610259965062, 0.017018640413880348, 0.05179585888981819, -0.013422527350485325, -0.00916046742349863, -0.02008199505507946, 0.0004883609362877905, -0.023811297491192818, 0.022198226302862167, 0.026445485651493073, -0.009626630693674088, 0.01821734383702278, 0.026001522317528725, 0.021354692056775093, -0.006670566741377115, 0.03501399978995323, -0.0181877464056015, 0.02203543856739998, -0.0004962228122167289, -0.014858012087643147, -0.007673186715692282, 0.005527358036488295, 0.02841372787952423, 0.0202447809278965, 0.010766139253973961, 0.0003373667714186013, 0.04060795530676842, 0.037648189812898636, 0.017196225002408028, 0.037588994950056076, -0.017773378640413284, -0.007262519560754299, 0.0016380440210923553, -0.027244621887803078, -0.040489561855793, -0.00032834874582476914, -0.02165067009627819, -0.03631629794836044, 0.031047917902469635, -0.00844272505491972, 0.01426605973392725, -0.03542836755514145, 0.03883209452033043, 0.011979642324149609, -0.0010044696973636746, 0.020821936428546906, 0.032853372395038605, -0.01843932643532753, -0.040992721915245056, 0.00836873147636652, 0.01004099752753973, -0.015642348676919937, 0.0013614911586046219, -0.004128870088607073, -0.005656847730278969, 0.02020038478076458, 0.029701225459575653, -0.005309075582772493, 0.02685985341668129, 0.034155670553445816, 0.01259379368275404, -0.026327095925807953, -0.0020681347232311964, 0.004395248834043741, -0.03152148053050041, 0.017521798610687256, 0.009819014929234982, 0.007070134859532118, -0.02021518349647522, 0.04404127970337868, -0.03702664002776146, 0.008161547593772411, 0.02366330847144127, -0.010181586258113384, 0.032882969826459885, -0.007010939531028271, -0.023248940706253052, 0.02520238608121872, 0.015523958951234818, -0.0006941570318304002, 0.01682625524699688, 0.005327573977410793, 0.009648828767240047, -0.019416047260165215, -0.0013938635820522904, -0.006681665778160095, -0.012564195320010185, -0.003590563079342246, -0.010166787542402744, 0.017314616590738297, 0.0061452086083590984, 0.02372250333428383, 0.02027438022196293, 0.004979801829904318, -0.0233229361474514, 0.023115752264857292, -0.006433785893023014, -0.037766579538583755, -0.02027438022196293, -0.01500600017607212, 0.01174286101013422, 0.013896089047193527, 0.021103113889694214, -0.0014410348376259208, 0.03551715984940529, 0.04043036699295044, 0.0181877464056015, -0.011809456162154675, -0.010455364361405373, 0.008886689320206642, -0.018735302612185478, 0.008790497668087482, 0.014732222072780132, 0.030811136588454247, -0.02203543856739998, 0.020496360957622528, 0.04143668711185455, 0.013903488405048847, -0.04418926686048508, 0.003542466787621379, -0.025616751983761787, -0.01987481117248535, 0.003359331516548991, 0.0021365792490541935, 0.008820095099508762, -0.001275473041459918, -0.017314616590738297, 0.0027488803025335073, 0.023234141990542412, 0.00933065451681614, 0.015805136412382126, -0.002606441732496023, -0.025809137150645256, 0.0033278840128332376, -0.024684427306056023, -0.009893009439110756, -0.004831813741475344, 0.004495140630751848, -0.018024958670139313, 0.00908647384494543, -0.049398452043533325, -0.014835814014077187, 0.021147510036826134, 0.0034277760423719883, 0.008842293173074722, 0.005786337424069643, 0.0026360393967479467, 0.020999521017074585, -0.01684105396270752, -0.04229502007365227, -0.02857651561498642, 0.010410968214273453, 0.004498840309679508, 0.013711104169487953, -0.019401248544454575, 0.015464764088392258, 0.005190684925764799, -0.021384291350841522, -0.01698904111981392, -0.026031119748950005, 0.05496280640363693, -0.044574037194252014, 0.015686746686697006, 0.017181426286697388, 0.03155107796192169, 0.00911607127636671, 0.023100953549146652, 0.0028839195147156715, -0.0017434856854379177, -0.006718663033097982, 0.03021918423473835, 0.004920606501400471, 0.001728686853311956, -0.039187267422676086, 0.013970083557069302, -0.0020070895552635193, 0.009515639394521713, 0.014791417866945267, 0.04158467426896095, 0.011824254877865314, 0.004176965914666653, 0.010877130553126335, -0.015819935128092766, -0.016056716442108154, -0.007036837283521891, 0.029005682095885277, -0.014066275209188461, 0.008353931829333305, -0.003662707284092903, -0.002785877324640751, 0.012778778560459614, -0.011794657446444035, -0.02367810718715191, 0.0021291798911988735, -0.0030485563911497593, -0.0068703508004546165, 0.009693224914371967, -0.019593633711338043, 0.039335254579782486, -0.028117751702666283, -0.004828114062547684, -0.011128710582852364, 0.023086154833436012, 0.034481242299079895, -0.013185746036469936, 0.012090633623301983, 0.011128710582852364, 0.02020038478076458, -0.00015272841847036034, 0.00025366098270751536, 0.0004347152425907552, -0.006496680900454521, -0.010351772420108318, 0.0030578055884689093, -0.00317064649425447, -0.008065355010330677, 0.009463843889534473, -0.019593633711338043, 0.0007552021415904164, 0.011898248456418514, -0.03297176584601402, 0.024136871099472046, -0.018809296190738678, 0.024077674373984337, -0.01267518661916256, -0.0006553101120516658, 0.0009628480183891952, 0.003076303983107209, 0.010825335048139095, 0.014058875851333141, -0.010144589468836784, 0.012578994035720825, -0.037707384675741196, -0.008797897025942802, -0.029612433165311813, -0.03131429851055145, 0.034066878259181976, -0.017433006316423416, 0.018750101327896118, -0.006955443881452084, 0.007828574627637863, -0.02172466367483139, -0.012149828486144543, 0.03172866255044937, 0.0033352833706885576, 0.016456283628940582, 0.018809296190738678, -0.03705623745918274, -0.00042685336666181684, 0.0013762899907305837, 0.006074914243072271, -0.013104352168738842, 0.0034351754002273083, -0.020570356398820877, 0.0013254190562292933, -0.02990840934216976, 0.013526118360459805, 0.0011635569389909506, -0.021191906183958054, 0.029849214479327202, 0.021236302331089973, 0.004957603756338358, 0.015775538980960846, -0.00158069864846766, -0.03297176584601402, 0.02666746824979782, -0.013607512228190899, 0.008176346309483051, -0.007162627298384905, -0.027303816750645638, 0.0024362553376704454, 0.039542440325021744, 0.03211343288421631, -0.030544757843017578, -0.009493441320955753, 0.04880649968981743, -0.02344132587313652, -0.010521958582103252, -0.011328494176268578, -0.03729302063584328, -0.006544776726514101, 0.02492120862007141, 0.007155227940529585, -0.0019885909277945757, 0.024107273668050766, 0.014058875851333141, -0.04191024973988533, -0.02666746824979782, 0.006552176084369421, -0.004754120018333197, 0.011358091607689857, -0.01432525459676981, -0.012904568575322628, -0.06286537647247314, 0.0016250951448455453, -0.010536757297813892, 0.020496360957622528, -0.011927846819162369, -0.014917207881808281, 0.020910728722810745, 0.014687825925648212, -0.0076435888186097145, 0.0006474482361227274, 0.006285797338932753, -0.012142429128289223, 0.004476642236113548, 0.01105471607297659, -0.021251101046800613, -0.015879129990935326, -0.011313695460557938, -0.027481403201818466, 0.0076435888186097145, -0.022686585783958435, -0.010832734405994415, 0.00420286413282156, 0.032586995512247086, -0.013156148605048656, -0.01664866879582405, 0.03169906511902809, -0.003300136188045144, -0.0012162778293713927, -0.016411887481808662, -0.022849373519420624, 0.0015150288818404078, -0.01695944368839264, -0.02181345596909523, -0.02367810718715191, -0.003855091752484441, 0.022597793489694595, 0.007732382044196129, -0.006496680900454521, 0.03134389594197273, 0.011224903166294098, 0.007255120202898979, -0.015671947970986366, -0.016160307452082634, -0.006100812461227179, 0.010492361150681973, -0.002841372974216938, 0.024003680795431137, -0.015509160235524178, -0.006548476405441761, 0.015642348676919937, 0.009996600449085236, 0.015642348676919937, -0.029316456988453865, -0.024847213178873062, 0.006685365457087755, 0.02329333871603012, 0.009441644884645939, -0.019046077504754066, -0.006700164172798395, -0.0075325979851186275, 0.01695944368839264, 0.015864331275224686, 0.007939564995467663, -0.003542466787621379, -0.014673027209937572, 0.009604432620108128, 0.009471243247389793, 0.019253261387348175, 0.015627549961209297, 0.006541077047586441, 0.009478642605245113, -0.011328494176268578, 0.010262979194521904, 0.006252500228583813, 0.010521958582103252, -0.005697544664144516, 0.012016639113426208, 0.02653427980840206, -0.004476642236113548, 0.008753499947488308, -0.026238301768898964, 0.010884529910981655, 0.007136729545891285, 0.013259739615023136, -0.013415127992630005, -0.019815616309642792, 0.0040178787894546986, -0.017743781208992004, -0.019134869799017906, -0.00021180807380005717, 0.02825094200670719, 0.01676706038415432, 0.03017478808760643, 0.015057796612381935, -0.016086313873529434, 0.03969042748212814, -0.03029317781329155, 0.013104352168738842, 0.003984581679105759, -0.008975482545793056, 0.00209773238748312, -0.03504359722137451, -0.003094802610576153, -0.019815616309642792, -0.006489281076937914, -0.007591793313622475, 0.0006516104331240058, 0.0061119114980101585, -0.021117912605404854, -0.023012161254882812, -0.01651548035442829, 0.014695225283503532, -0.019253261387348175, -0.004502539988607168, -0.004739321302622557, -0.0046875253319740295, 0.008649908937513828, 0.009722822345793247, -0.0084353256970644, 0.00021828255557920784, 0.005649448372423649, 0.03972002491354942, 0.00582703435793519, -0.049309659749269485, -0.002051485935226083, 0.006282097660005093, -0.017832575365900993, -0.021280698478221893, -0.0005642048781737685, 0.027999361976981163, -0.02014118991792202, 0.0009471242665313184, -0.009241861291229725, 0.002567594638094306, -0.0046875253319740295, -0.00017249870870728046, 0.028946485370397568, -0.011839053593575954, 0.0362275056540966, -0.039483245462179184, 0.015153988264501095, -0.0022975164465606213, 0.004162167198956013, 0.016027119010686874, -0.019445644691586494, 0.00586033146828413, -0.012460604310035706, -0.012297816574573517, -0.022952964529395103, 0.007166326977312565, -0.006441185250878334, 0.002562045119702816, 0.034066878259181976, 0.013688906095921993, -0.0183357335627079, -0.03380049765110016, 0.01005579624325037, 0.002784027485176921, -0.014451044611632824, -0.010514559224247932, -0.01681145653128624, 0.0019922908395528793, 0.008191145025193691, -0.002321564359590411, 0.020451964810490608, 0.0001038807604345493, -0.00581593532115221, -0.014665627852082253, -0.008087553083896637, 0.0028154749888926744, 0.01172066293656826, -0.02210943214595318, -0.013000761158764362, -0.023826096206903458, 0.025749942287802696, -0.0126899853348732, -0.008302136324346066, -0.016278699040412903, 0.015390769578516483, 0.013422527350485325, -0.019741622731089592, 0.012075834907591343, -0.009434245526790619, -0.002534297527745366, 0.002915367018431425, 0.0074586039409041405, -0.0019608433358371258, -0.0001635962980799377, -0.02030397765338421, 0.007702784147113562, 0.015657149255275726, 0.015331574715673923, -0.0067926570773124695, -0.014406648464500904, 0.008094953373074532, 0.017388610169291496, 0.008635109290480614, 0.013888689689338207, -0.030722344294190407, -0.03202464058995247, -0.00848712120205164, -0.004743020981550217, 0.019475243985652924, -0.007336513604968786, -0.016337893903255463, -0.008228141814470291, -0.041347894817590714, 0.020659148693084717, -0.0026600873097777367, -0.009441644884645939, -0.0046135312877595425, -0.005205484107136726, 0.0061341095715761185, 0.007791577372699976, -0.005024198442697525, -0.0007427156087942421, 0.009708023630082607, -0.008649908937513828, 0.0107809379696846, -0.022361012175679207, 0.03341572731733322, -0.007835973985493183, 0.006977642420679331, -0.006063815206289291, 0.009974402375519276, 0.012860172428190708, 0.007129330188035965, -0.046231504529714584, -0.013548317365348339, 0.012423606589436531, 0.011150908656418324, -0.021310295909643173, 0.003601662116125226, -0.006226602476090193, -0.023974083364009857, 0.0007232921780087054, 0.03158067539334297, -0.008117151446640491, 0.026504680514335632, -0.003999380394816399, -0.004950204398483038, -0.024832414463162422, -0.012164627201855183, -0.013045157305896282, 0.03664186969399452, 0.012127630412578583, -0.010447965003550053, -0.012837973423302174, 0.005812235176563263, 0.017373811453580856, -0.0032501902896910906, -0.017403408885002136, -0.017492201179265976, -0.0033389830496162176, -0.010729142464697361, -0.025498362258076668, 0.006766758859157562, -0.006936945486813784, -0.008805296383798122, -0.009915207512676716, -0.030929528176784515, 0.0183357335627079, 0.02657867595553398, -0.04546196758747101, 0.015287177637219429, -0.014909808523952961, -0.007373510394245386, 0.013563116081058979, 0.008117151446640491, -0.024521639570593834, 0.007151528261601925, 0.010743941180408001, -0.027303816750645638, -0.001049791113473475, 0.009500840678811073, 0.004643128719180822, 0.0016916897147893906, -0.017240621149539948, 0.019016480073332787, 0.013407728634774685, -0.01829133741557598, -0.008309535682201385, -0.0061119114980101585, 0.019756421446800232, 0.011861251667141914, 0.01654507778584957, -0.00582703435793519, -0.025868332013487816, 0.016352692618966103, -0.006274698302149773, 0.008842293173074722, 0.018098954111337662, 0.024802817031741142, 0.005227682180702686, 0.02509879320859909, -0.0013781398301944137, -0.0017416357295587659, 0.007051636464893818, 0.01328933797776699, -0.008620310574769974, 0.020688746124505997, 0.03015998937189579, -0.006481881719082594, -0.017847374081611633, -0.019105272367596626, -0.0002670724061317742, 0.011861251667141914, -0.024728823453187943, 0.0011829804861918092, 0.007133029866963625, 0.009049477055668831, 0.013437326066195965, -0.030603952705860138, -0.019342053681612015, -0.006755659822374582, 0.04501800239086151, 0.02514318935573101, 0.006182205863296986, 0.0021550776436924934, -0.03024878166615963, -0.006163707468658686, -0.00836873147636652, 0.030663149431347847, 0.019046077504754066, -0.049280062317848206, -0.007621390745043755, -0.013008160516619682, 0.003599812276661396, 0.0003780635306611657, -0.0020773839205503464, -0.021502681076526642, 0.01861691102385521, -0.00933065451681614, 0.001643593655899167, 0.0061156111769378185, -0.004502539988607168, 7.850310066714883e-05, -0.02027438022196293, -0.018039757385849953, -0.004757819697260857, 0.013126550242304802, 0.02213902957737446, -0.01667826622724533, -0.022420207038521767, -0.0004395711002871394, 0.02351531945168972, -0.0022235221695154905, 0.03033757396042347, 0.02197624370455742, -0.002486201236024499, 0.014917207881808281, 0.013866491615772247, -0.008035757578909397, -0.00582333467900753, -0.0028302737046033144, 0.04146628454327583, 0.00036835181526839733, 0.013836894184350967, -0.013866491615772247, -0.0473858118057251, -0.01337813027203083, -0.0039549837820231915, 0.009878210723400116, 0.030899930745363235, -0.005708643700927496, -0.005593952722847462, 0.017196225002408028, -0.018054556101560593, 0.000676120980642736, -0.023204544559121132, 0.014369651675224304, 0.0035609654150903225, -0.016411887481808662, 0.0006113761337473989, -0.020570356398820877, 0.001279172720387578, 0.014110672287642956, 0.013577914796769619, -0.015864331275224686, -0.01653027907013893, -0.007236621342599392, 0.008827494457364082, -0.016189906746149063, -0.02501000091433525, -0.02329333871603012, -0.002399258315563202, -0.015627549961209297, 0.008087553083896637, -0.02168026752769947, -0.018084153532981873, -0.002611991250887513, -0.020925527438521385, 0.00418806541711092, 0.013089553453028202, 0.015982722863554955, 0.013666707091033459, -0.016056716442108154, 0.0047023240476846695, -0.046320296823978424, -0.014695225283503532, -0.018986882641911507, 0.009478642605245113, -0.005486661568284035, 0.034481242299079895, -0.017166627570986748, 0.036168307065963745, 0.024048076942563057, 0.025779539719223976, -0.0005193459801375866, -0.019534438848495483, -0.02527637965977192, -0.010825335048139095, 0.003305685706436634, -0.015035598538815975, -0.036138709634542465, -0.007872970774769783, -0.007136729545891285, 0.00847972184419632, 0.014843213371932507, -0.01175026036798954, -0.010359171777963638, -0.008820095099508762, 0.01869090646505356, -0.014488041400909424, -0.012985961511731148, 0.02348572202026844, -0.029612433165311813, 0.008087553083896637, -0.009256660006940365, 0.013762899674475193, -0.0331493504345417, 0.0031854454427957535, 0.01008539367467165, 0.011824254877865314, 0.05070074647665024, -0.030544757843017578, 0.007932165637612343, -0.00847972184419632, -0.004125170409679413, -0.012031437829136848, -0.03008599579334259, -0.010721743106842041, 0.00418806541711092, -0.024210864678025246, 0.013222742825746536, -0.025823935866355896, 0.01997840218245983, -0.029864013195037842, 0.020644349977374077, 0.008686905726790428, 0.010943724773824215, -0.015923528000712395, 0.0075362976640462875, 0.0011321095516905189, 0.019786018878221512, 0.014843213371932507, -0.017862172797322273, -0.014732222072780132, -0.027170628309249878, 0.021473083645105362, 0.0026600873097777367, 0.022893769666552544, -0.010181586258113384, 0.011483881622552872, -0.0014151368523016572, 0.005327573977410793, 0.03196544572710991, -0.006652068346738815, -0.015627549961209297, -0.00315769761800766, 0.004310155287384987, 0.0019700925331562757, -0.001424386166036129, 0.006592873018234968, 0.027259420603513718, -0.012312616221606731, 0.0039586834609508514, -0.0016056715976446867, 0.014628631062805653, -0.017181426286697388, 0.0013189446181058884, -0.0009961454197764397, 0.010151988826692104, 0.022449806332588196, 0.015538757666945457, -0.022198226302862167, 0.017063036561012268, -0.02341172844171524, -0.0007376285502687097, 0.037529800087213516, -0.015257580205798149, 0.014044077135622501, -0.008709103800356388, 0.025749942287802696, 0.019445644691586494, -0.011106512509286404, -0.00750300008803606, -0.0021273300517350435, 0.005804835818707943, -0.015938326716423035, -0.0028080756310373545, -0.009922606870532036, -0.04359731450676918, -0.0028117753099650145, 0.007924766279757023, -0.014384450390934944, -0.019164467230439186, 0.012312616221606731, 0.01842452771961689, -0.019608432427048683, -0.02185785211622715, 0.02012639120221138, 0.0074660032987594604, 0.012009239755570889, -0.011402488686144352, -0.007895168848335743, 0.019312456250190735, 0.002983811544254422, -0.022878970950841904, 0.0015714493347331882, 0.00031724965083412826, -0.010736541822552681, -0.0013318934943526983, -0.02492120862007141, 0.0009286257554776967, 0.008931086398661137, 0.0002888081653509289, 0.019223663955926895, -0.011520879343152046, -0.0053719705902040005, -0.0060268184170126915, -0.0075547960586845875, 0.008205943740904331, -0.010470163077116013, 0.027244621887803078, 0.0034018780570477247, 0.005638349335640669, 0.00840572826564312, -0.007924766279757023, -0.010329574346542358, -0.010943724773824215, 0.0018350533209741116, -0.013947885483503342, -0.00914566870778799, -0.002260519191622734, 0.07198144495487213, 0.00540526770055294, 0.015716344118118286, -0.016012320294976234, 0.016249101608991623, -0.004905807785689831, -0.004384149331599474, 0.0215618759393692, 0.012394009158015251, -0.013725902885198593, 0.015745941549539566, -0.032823774963617325, -0.002560195280238986, 0.006152607966214418, -0.019223663955926895, 0.007258819881826639, 0.008339133113622665, 0.017018640413880348, 0.0013846142683178186, 0.024166468530893326, 0.004839213099330664, 0.007917366921901703, -0.011927846819162369, 0.01684105396270752, -0.0062118032947182655, 0.020718343555927277, -0.00910867191851139, 0.01654507778584957, 0.0016250951448455453, 0.01851332001388073, 0.005127789918333292, -0.009249260649085045, -0.02495080605149269, -0.0010923376539722085, -0.012120231054723263, 0.02842852659523487, -0.004332353826612234, 0.017758579924702644, 0.0038883890956640244, 0.020910728722810745, -0.01697424240410328, -0.003988281358033419, 0.02829533815383911, 0.03889128938317299, -0.013466923497617245, -0.017551397904753685, 0.019490042701363564, -0.006152607966214418, -0.010632949881255627, 0.0054570636712014675, -0.025897929444909096, -0.01867610774934292, 0.0028358232229948044, 0.0028839195147156715, 0.017669787630438805, 0.0009064275654964149, 0.010499760508537292, -0.017773378640413284, 0.0027599793393164873, 0.003597962437197566, 0.006907348055392504, -0.0037256022915244102, -0.03643468767404556, -0.021265899762511253, 0.006933245807886124, -0.008886689320206642, -0.009663627482950687, -0.004920606501400471, 0.01007059495896101, 0.0011089863255620003, -0.0047837174497544765, 0.011202704161405563, 0.013259739615023136, -0.01994880475103855, -0.00907167512923479, 0.010817935690283775, 0.017433006316423416, 0.029597634449601173, 0.00906427577137947, 0.022449806332588196, -0.005645748693495989, -0.0026637869887053967, -0.010484961792826653, -0.01329673733562231, -0.0014771069400012493, -0.005013099405914545, -0.0025028500240296125, -0.022257421165704727, 0.014132870361208916, -0.02370770461857319, -0.01821734383702278, 0.004254660103470087, -0.005978722125291824, 0.00918266549706459, 0.003283487632870674, -0.012201624922454357, -0.004865111317485571, -0.0028284238651394844, 0.011513479985296726, -0.00023839969071559608, 0.019282858818769455, 0.008871890604496002, -0.013045157305896282, 0.004302755929529667, 0.0067778583616018295, -0.011587473563849926, 0.021191906183958054, 0.009774618782103062, -0.015420367009937763, -8.260746108135208e-05, -0.005112991202622652, -0.005127789918333292, 0.009308455511927605, 0.00042800954543054104, -0.02206503599882126, 0.006629869807511568, 0.01852811872959137, 0.0014715574216097593, -0.010381369851529598, -0.011187905445694923, 0.0013661157572641969, -0.017107432708144188, -0.008886689320206642, 0.0011413587490096688, -0.00585663178935647, 0.006648368667811155, -0.0168706513941288, -0.007569594774395227, -9.752189362188801e-05, -0.010603352449834347, 0.016234302893280983, 0.006263599265366793, 0.01678185909986496, -0.01172066293656826, 0.01171326357871294, -0.008864491246640682, 0.015287177637219429, -0.012749181129038334, 0.029360853135585785, -0.017211023718118668, 0.015523958951234818, 0.022730983793735504, 0.008605511859059334, 0.010433166287839413, 0.006363491527736187, 0.020777538418769836, -0.029449645429849625, -0.024092474952340126, 0.002785877324640751, 0.015805136412382126, 0.012808375991880894, -0.027910569682717323, 0.014184665866196156, -0.009515639394521713, 0.015405568294227123, -9.370657062390819e-05, -0.00905687641352415, 0.029804818332195282, 0.005642049014568329, -0.004591332748532295, 0.00269893417134881, -0.01166886743158102, -0.0035609654150903225, 0.0008763674413785338, -0.008168946951627731, 0.013622310943901539, 0.004291656892746687, 0.019179265946149826, 0.01692984625697136, -0.031047917902469635, -0.0054607633501291275, 0.011824254877865314, -0.020910728722810745, -0.022553397342562675, 0.01339292898774147, -0.015479562804102898, -0.017714183777570724, -0.0040215784683823586, -0.008953284472227097, 0.026031119748950005, 0.002800676040351391, 0.0039253863506019115, 0.02373730204999447, 0.008790497668087482, 0.0008102352148853242, -0.015390769578516483, 0.0027377810329198837, -0.00631909491494298, 0.008916287682950497, -0.0002809462894219905, -0.008746100589632988, 0.028887290507555008, -0.009389849379658699, -0.00212178030051291, -0.014510240405797958, 0.0061230105347931385, -0.009885610081255436, 0.01851332001388073, -0.005941724870353937, -0.009493441320955753, -0.015908727422356606, -0.004539537243545055, -0.007395708933472633, 0.008805296383798122, 0.013866491615772247, -0.014132870361208916, -0.011380290612578392, -0.027614591643214226, -0.011113911867141724, 0.006004619877785444, -0.05493320897221565, -0.01010759174823761, 0.0167966578155756, 0.005738241132348776, -0.010270378552377224, 0.015435165725648403, 0.02034837380051613, 0.012120231054723263, 0.024802817031741142, 0.00418436573818326, 0.007432705722749233, 0.009249260649085045, 0.006985041778534651, -0.013622310943901539, 0.006252500228583813, 0.004883609712123871, 0.004054876044392586, 0.01661907136440277, 0.01331153605133295, -0.0046135312877595425, 0.03008599579334259, -0.000562817498575896, -0.02025957964360714, 0.014443645253777504, 0.007447504438459873, 0.015079994685947895, 0.023189745843410492, -0.004276858177036047, 0.02876890078186989, -0.021473083645105362, 0.003314934903755784, -0.001281947479583323, -0.0007251420174725354, 0.011350692249834538, 0.02000800147652626, 9.26660286495462e-05, 0.0006224752287380397, -0.011506080627441406, -0.004417446907609701, -2.6345940568717197e-05, -1.994371814362239e-05, -0.005553256254643202, -0.019223663955926895, 0.013533517718315125, 0.009582233615219593, 0.012815775349736214, -0.008990281261503696, -0.002850622171536088, 0.002034837380051613, -0.022257421165704727, -0.0003810695488937199, 0.010640349239110947, 0.01657467521727085, -0.004990900866687298, 0.0019330955110490322, 0.024743622168898582, -0.006455983966588974, 0.029168467968702316, 0.010144589468836784, 0.022509001195430756, -0.004506239667534828, 0.0011515329824760556, 0.003855091752484441, 0.008509320206940174, -0.0020829334389418364, 0.005235081538558006, -0.0003577151510398835, -0.006844453047960997, 0.010669946670532227, 0.012534597888588905, -0.008250340819358826, 0.0009683975949883461, 0.009678426198661327, -0.031195906922221184, -0.00841312762349844, -0.012490201741456985, -0.00934545323252678, 0.01337813027203083, -0.021058715879917145, -0.001728686853311956, 0.0013004459906369448, -0.00210143206641078, 0.015642348676919937, 0.004865111317485571, -0.014414047822356224, 0.01103251799941063, -0.006955443881452084, 0.006559575442224741, 0.027629392221570015, 0.006411587353795767, 0.001271773362532258, -0.008701704442501068, -0.012334814295172691, 0.0016250951448455453, 0.00419546477496624, 0.009308455511927605, 0.013185746036469936, 0.00011330344568705186, 0.005901028402149677, -0.003372280392795801, -0.001735161291435361, -0.008102352730929852, 0.0075325979851186275, -0.005094492807984352, 0.013481722213327885, -0.028916887938976288, 0.012320015579462051, 0.03134389594197273, 0.004776318091899157, 0.02027438022196293, -0.0023770600091665983, 0.017832575365900993, -0.01269738469272852, 0.013200544752180576, 0.0001830197434173897, 0.007432705722749233, 0.00631169555708766, 0.01264558918774128, -0.015864331275224686, -0.015057796612381935, -0.0035609654150903225, -0.015908727422356606, 0.006552176084369421, -0.010137190110981464, -0.01684105396270752, 0.008561115711927414, -0.016293497756123543, -0.007761979475617409, -0.021325094625353813, -0.013496520929038525, -0.015287177637219429, 0.009848612360656261, 0.008598112501204014, -0.006663167383521795, 0.0062044039368629456, 0.020437166094779968, 0.01431785523891449, -0.014007080346345901, 0.004369350615888834, 0.0187057051807642, 0.011890849098563194, -0.015287177637219429, 0.011269299313426018, -0.0054718623869121075, -0.010174186900258064, -0.02181345596909523, 0.005246180575340986, 0.009567434899508953, -0.01863170973956585, -0.01328933797776699, -0.012223822996020317, 0.024196065962314606, -0.006160007789731026, -0.02178385853767395, 0.0028284238651394844, 0.011794657446444035, -0.0011052866466343403, 0.02172466367483139, -0.028162149712443352, 0.015153988264501095, -0.004643128719180822, -0.024610431864857674, -0.0033408328890800476, -0.0126529885455966, -0.011491280980408192, 0.000634961761534214, 0.0035665149334818125, -0.017566196620464325, -0.017950965091586113, -0.008080153726041317, 0.032823774963617325, 0.020955124869942665, -0.010884529910981655, 0.014118071645498276, 0.01653027907013893, 0.0010988122085109353, 0.03468842804431915, 0.028902089223265648, 0.0012468002969399095, -0.020599953830242157, -0.010299976915121078, 0.0022679187823086977, -0.010181586258113384, -0.007665787357836962, 0.002032987540587783, 0.007680586073547602, -0.01666346751153469, 0.022479403764009476, 0.004972402472048998, -0.011935246177017689, 0.018809296190738678, -0.0034055777359753847, -0.0033278840128332376, 0.013555716723203659, 0.004861411172896624, -0.01002619881182909, 0.007140429224818945, 0.03007119707763195, 0.019356852397322655, -0.01002619881182909, 9.61778550845338e-06, 0.013185746036469936, -0.01101771928369999, 0.017580995336174965, -0.005741940811276436, -0.004280557855963707, 0.013622310943901539, -0.018069354817271233, 0.00906427577137947, -0.0076435888186097145, 0.030603952705860138, -0.013563116081058979, 0.01426605973392725, -0.011890849098563194, 0.03021918423473835, -0.009005079977214336, 0.02675626054406166, -0.0012162778293713927, -0.0067963567562401295, 0.0014789567794650793, 0.005257279612123966, -0.025764741003513336, -0.007909967564046383, 0.001201478997245431, -0.017906568944454193, 0.0009693225147202611, 0.019578834995627403, -0.019504841417074203, -0.002471402520313859, 0.0014197614509612322, -0.029760420322418213, 0.0023030659649521112, 0.0029042677488178015, 0.003314934903755784, -0.004583933390676975, 0.002055185614153743, 0.001947894343174994, 0.013814696110785007, -0.00913826934993267, -0.01003359816968441, 0.009360251948237419, 0.02015598863363266, 0.013903488405048847, 0.00134669232647866, -0.0005827034474350512, -0.015760740265250206, -0.004273158498108387, 0.016397088766098022, 0.029005682095885277, -0.02666746824979782, 0.004421146586537361, -0.005568054970353842, 0.005286877509206533, -0.0053904689848423, -0.0007852622075006366, -0.02518758736550808, 0.015287177637219429, 0.0337413027882576, -0.022405408322811127, -0.0034259262029081583, -0.010558956302702427, 0.00209773238748312, 0.008923687040805817, -0.01986001245677471, -0.012934166006743908, 0.022582994773983955, 0.008294736966490746, 0.009471243247389793, 0.00587513018399477, -0.01433265395462513, -0.016086313873529434, -0.008546316996216774, 0.0009619230986572802, 0.0039216866716742516, 0.011328494176268578, 0.020555557683110237, 0.009974402375519276, 0.022745782509446144, 0.014554636552929878, 0.010825335048139095, 0.008605511859059334, 0.0005503310239873827, 0.01842452771961689, 0.011343292891979218, 0.009486041963100433, 0.005967623088508844, -0.0011450584279373288, 0.02671186439692974, 0.012897169217467308, -0.009463843889534473, 0.0015927227213978767, 0.021295497193932533, 0.0009646978578530252, 0.004439644981175661, -0.004898408427834511, -0.010225982405245304, -0.010351772420108318, 0.005727142095565796, 0.015790337696671486, -0.006393088959157467, 0.019120071083307266, -0.0002730844134930521, -0.022686585783958435, 0.01685585267841816, 0.000710805703420192, 0.018084153532981873, 0.006019418593496084, 0.002045936416834593, 0.019342053681612015, 0.004336053505539894, -0.004006779752671719, -0.026401089504361153, -0.011587473563849926, 0.008080153726041317, -0.018779698759317398, 0.01866130903363228, 0.027525799348950386, 0.01814335025846958, 0.0037921967450529337, -0.006474482361227274, -0.014732222072780132, 0.0005655923159793019, 0.005331273656338453, -0.006722362712025642, 0.007066435180604458, 0.003899488365277648, 0.020792337134480476, 0.0067038643173873425, 0.04498840495944023, -0.01669306494295597, -0.005986121483147144, -0.0016389689408242702, 0.0006229376886039972, 0.005560655612498522, -0.0007010939298197627, -0.025823935866355896, -0.007747180759906769, 0.011957444250583649, 0.004887309391051531, 0.0074586039409041405, -0.019149668514728546, -0.005664247088134289, 0.04188065230846405, 0.020599953830242157, 0.007425306364893913, -0.03202464058995247, -0.008242941461503506, 0.014428846538066864, -0.005408967845141888, 0.020466763526201248, 0.014791417866945267, -0.012061036191880703, -0.01497640274465084, 0.00027424059226177633, -0.01684105396270752, 0.010240781120955944, 0.01854291744530201, 0.0017629091162234545, -0.014798817224800587, 0.01820254512131214, -0.019608432427048683, 0.007151528261601925, 0.0015492511447519064, 0.006848152726888657, 0.005797436460852623, -0.012231222353875637, -0.009241861291229725, -0.00467272661626339, 0.010336973704397678, -0.016293497756123543, 0.007321714889258146, -0.019519640132784843, -0.02863571047782898, 0.0012421756982803345, -0.005246180575340986, 0.024181267246603966, 0.006862951442599297, 0.005024198442697525, 0.024166468530893326, -0.01827653869986534, 0.02681545726954937, -0.027141030877828598, 0.0005688295350410044, -0.0038032960146665573, 0.009582233615219593, 0.0034185268450528383, -0.002928315894678235, -0.006644668988883495, -0.013207944110035896, -0.034274060279130936, 0.0067926570773124695, 0.020555557683110237, 0.004058575723320246, -0.006492980755865574, 0.00422506220638752, 0.00314659858122468, 0.0006807455793023109, -0.020451964810490608, 0.0017721583135426044, -0.014621230773627758, -0.002232771599665284, -0.009715422987937927, -0.0036368092987686396, -0.015087394043803215, -0.0022919666953384876, -0.01006319560110569, 0.025483563542366028, 0.0016852152766659856, 0.027451805770397186, 0.005135189276188612, -0.022582994773983955, -0.011084313504397869, 0.007170026656240225, 0.009523038752377033, 0.0017814076272770762, -0.014813615940511227, 0.007717582862824202, 0.004817015025764704, 0.023012161254882812, -0.005690145306289196, 0.014606432057917118, 0.004106671549379826, 0.006089713424444199, -0.015523958951234818, 0.0038846894167363644, -0.019090473651885986, -0.022893769666552544, -0.008686905726790428, 0.0029523640405386686, -0.02039276994764805, 0.003592412918806076, -0.016175106167793274, -0.002032987540587783, -0.000711730623152107, 0.013459524139761925, -0.0015437016263604164, 0.003906887490302324, -0.0014456594362854958, 0.01003359816968441, 0.0054607633501291275, -0.022775379940867424, -0.0019108972046524286, -0.014369651675224304, -0.005312775261700153, 0.010188985615968704, -0.006918447092175484, 0.004102971870452166, -0.024388451129198074, 0.011180506087839603, -0.008302136324346066, -0.019238462671637535, -0.027866171672940254, 0.004950204398483038, 0.027984563261270523, 0.000938337470870465, -0.03297176584601402, 0.010329574346542358, 0.015553556382656097, -0.013503920286893845, -0.011520879343152046, -0.015287177637219429, 0.007136729545891285, -0.013444725424051285, 0.023826096206903458, -0.01672266237437725, 8.711647387826815e-05, -0.007155227940529585, -0.004935405682772398, -0.009523038752377033, -0.041288699954748154, -0.010455364361405373, 0.02839892916381359, 0.0006904572946950793, -0.0084353256970644, -1.3266908354125917e-05, 0.0016278699040412903, -0.002476952038705349, -3.552294219844043e-05, 0.011913048103451729, -0.001426236005499959, -0.0334453247487545, -0.017714183777570724, -0.0004740245931316167, -0.02181345596909523, 0.003522118553519249, 0.017048237845301628, -0.01695944368839264, -0.003074454143643379, -0.017492201179265976, -0.015671947970986366, -0.04220622777938843, -0.025927526876330376, -0.019578834995627403, 0.0010359172010794282, 0.007895168848335743, -0.006922146771103144, 0.006914747413247824, 0.001737936050631106, -0.009441644884645939, -0.002334513468667865, 0.005801136139780283, -0.006922146771103144, 0.0034111272543668747, -0.0012976712314411998, -0.0020773839205503464, -0.029716024175286293, 0.016411887481808662, -0.010928926058113575, -0.015168786980211735, 0.001734236371703446, 0.019001681357622147, -0.00212547997944057, -0.017728982493281364, 0.008583313785493374, -0.006063815206289291, -0.020807135850191116, 0.0020588855259120464, 0.003311235224828124, -0.016130710020661354, -0.0007547396817244589, 0.011461683548986912, 0.0029468145221471786, 0.0019996901974081993, 0.006655768025666475, 0.005671646445989609, -0.010928926058113575, 0.022390609607100487, -0.017625391483306885, 0.02022998221218586, 0.010240781120955944, 0.0012495750561356544, -0.024447645992040634, -0.001806380576454103, 0.004983501508831978, 0.006670566741377115, -0.009952204301953316, -0.001114535960368812, 0.0014650828670710325, -0.013474322855472565, 0.0038772900588810444, -0.017817774787545204, -0.01328933797776699, 0.007976562716066837, -0.006648368667811155, -0.007673186715692282, -0.007292116992175579, 0.011202704161405563, -0.00032996738445945084, 0.02817694842815399, 0.02366330847144127, 0.031225504353642464, 0.025749942287802696, -0.0010257429676130414, 0.017403408885002136, -0.016041917726397514, 0.01102511864155531, 0.013141349889338017, -0.014702624641358852, 0.0009683975949883461, 0.022656988352537155, -2.7877849788637832e-05, -0.03166946768760681, -0.009811615571379662, -0.005519958678632975, -0.015745941549539566, -0.014821015298366547, 0.005886229686439037, 0.002549096243456006, -0.005786337424069643, 0.032498203217983246, -0.007835973985493183, -0.0014752571005374193, -0.025986723601818085, 0.018957285210490227, 0.0026582374703139067, -0.01333373412489891, 0.017595794051885605, 0.027540598064661026, 0.018927687779068947, 0.017433006316423416, 0.002791426843032241, 0.013222742825746536, -0.010351772420108318, -0.011306296102702618, 0.0286061130464077, 0.0074993004091084, 0.006441185250878334, -0.015153988264501095, -0.013600112870335579, 0.0006719587836414576, 0.007440105080604553, -0.00315214809961617, 0.012090633623301983, -0.010692145675420761, -0.009796816855669022, 0.02848772332072258, -0.005812235176563263, 0.003618310671299696, 0.014821015298366547, 0.002785877324640751, 0.006748260464519262, 0.019134869799017906, -0.012386609800159931, -0.006689065136015415, 0.007221822626888752, -0.00635609170421958, -0.004909507464617491, 0.0074586039409041405, -0.0003170184209011495, 0.022346213459968567, -0.003474022261798382, -0.009375050663948059, 0.024432847276329994, -0.011927846819162369, -0.014473242685198784, -0.004458143841475248, 0.001281022559851408, -0.00914566870778799, 0.00018591013213153929, 5.383358711696928e-06, 0.018942486494779587, 0.00317804585210979, 0.012135029770433903, 0.02008199505507946, 0.0060305180959403515, -0.010344373062252998, -0.010706944391131401, 0.0016112212324514985, -0.0034980704076588154, 0.015390769578516483, 0.0019182966789230704, -0.028147349134087563, -0.0014854312175884843, 0.012024038471281528, 0.0036997043062001467, 0.005209183786064386, -0.005249880254268646, 0.017862172797322273, -0.01988960988819599, -0.0019441945478320122, 0.017373811453580856, 0.01829133741557598, 0.014584233984351158, 0.008605511859059334, -0.0117354616522789, 0.02166546881198883, -0.019282858818769455, -0.00018995668506249785, 0.023056557402014732, -0.009463843889534473, 0.0013892389833927155, 0.030899930745363235, 0.006507779937237501, 0.007166326977312565, 0.0002513486542738974, -0.018054556101560593, -0.011794657446444035, 0.017018640413880348, -0.013089553453028202, -0.01107691414654255, -0.015671947970986366, -0.0003593337896745652, -0.008760899305343628, 0.03563554957509041, -0.0032649890054017305, 0.007961764000356197, -0.0037884970661252737, 0.004898408427834511, -0.013104352168738842, 0.01103991735726595, -0.022375810891389847, 0.018809296190738678, 0.01266038790345192, 0.0016232451889663935, -0.014510240405797958, -0.004495140630751848, 0.004535837564617395, -0.014177266508340836, 0.004065975081175566, 0.012231222353875637, 0.010270378552377224, -0.003237241180613637, 0.021369492635130882, -0.0004474329762160778, 0.006008319556713104, -0.019623231142759323, 0.03131429851055145, 0.007369810715317726, -0.0038846894167363644, -0.004883609712123871, -0.004328654147684574, 0.00933805387467146, -0.004905807785689831, -0.006012019235640764, -0.02873930335044861, 0.0053608715534210205, -0.03986801207065582, -0.003092952771112323, -0.009241861291229725, 0.027481403201818466, -0.0034906710498034954, -0.013518719002604485, -0.0008606436895206571, -0.0060268184170126915, 0.019046077504754066, 0.012386609800159931, 0.017743781208992004, -0.02341172844171524, -0.015065195970237255, -0.01815814897418022, -0.0007806376088410616, -0.0004326341731939465, -0.0037847973871976137, 0.008894088678061962, -0.00418806541711092, 0.010640349239110947, -0.01012239046394825, 0.021221503615379333, -0.010336973704397678, -0.013622310943901539, 0.02194664627313614, 0.0016250951448455453, 0.01169106550514698, 0.0045247385278344154, -0.013481722213327885, -0.019356852397322655, -0.0037126531824469566, -0.014458443969488144, -0.00314844842068851, 0.017625391483306885, 0.025957124307751656, -0.0023419128265231848, 0.005660547409206629, 0.0004717122938018292, -0.017359012737870216, 0.006278397981077433, -0.0038069956935942173, -0.028117751702666283, 0.005309075582772493, 0.012312616221606731, -0.016263900324702263, 0.012357012368738651, 0.0028376730624586344, -0.0116984648630023, 0.0019885909277945757, -0.006726062390953302, -0.013104352168738842, -0.02196144498884678, -0.019726824015378952, 0.00012787102605216205, 0.007791577372699976, -0.02030397765338421, 0.00914566870778799, -0.0233969297260046, 0.002031137701123953, -0.007591793313622475, 0.004879910033196211, 0.004003080073744059, -0.014428846538066864, 0.00915306806564331, 0.001428085844963789, 0.009049477055668831, 0.00581593532115221, 0.03664186969399452, 0.01658947393298149, 0.03900968283414841, -0.05318694934248924, -0.00540156802162528, -0.02866530790925026, 0.013089553453028202, 0.0005864031263627112, -0.014369651675224304, 0.015864331275224686, -0.00916046742349863, 0.004361951258033514, 0.01001140009611845, -0.007761979475617409, 0.010277778841555119, 0.009626630693674088, -0.019253261387348175, -0.006537377368658781, -0.003829193999990821, -0.015908727422356606, -0.0005225831991992891, -0.013511319644749165, -0.016056716442108154, 0.010558956302702427, 0.013452124781906605, 0.0019756420515477657, -0.019652828574180603, 0.01172806229442358, 0.013008160516619682, -0.016160307452082634, 0.015805136412382126, 0.0016408187802881002, -0.024092474952340126, -0.00316509697586298, -0.024684427306056023, -0.026016321033239365, 0.027940167114138603, 0.02688945084810257, -0.007295816671103239, -0.03678986057639122, -0.0006886074552312493, -0.004336053505539894, 0.027496201917529106, 0.01987481117248535, 0.024432847276329994, 0.0011404338292777538, 0.006603972055017948, 0.0067815580405294895, 0.0005322949727997184, 0.0005433940677903593, -0.01524278149008751, -0.002711883280426264, 0.0028913188725709915, -0.004077074117958546, -0.012238621711730957, -0.0016759660793468356, -0.007306915707886219, 0.00631539523601532, 0.0018618761096149683, 0.011861251667141914, -0.0034166767727583647, -0.02206503599882126, 0.0024584534112364054, -0.04324214160442352, 0.010174186900258064, -0.007673186715692282, -0.0010007700184360147, 0.011853852309286594, 0.004469242878258228, 0.001420686487108469, 0.026149509474635124, 0.0015178036410361528, -0.008738701231777668, 0.008057955652475357, -0.013059956021606922, 0.020733142271637917, 0.007576994132250547, -0.04720822721719742, -0.019652828574180603, -0.011587473563849926, 0.010714343748986721, 0.017240621149539948, 0.013511319644749165, -0.014110672287642956, -0.010174186900258064, 0.042768582701683044, -0.012334814295172691, 0.0028358232229948044, 0.010418367572128773, 0.009715422987937927, -0.009678426198661327, 0.0015289027942344546, -0.012120231054723263, -0.01688545010983944, 0.014510240405797958, 0.0046061319299042225, 0.0017064885469153523, -0.0006585473311133683, 0.031225504353642464, 0.02370770461857319, 0.022627390921115875, -0.02540956810116768, -0.022582994773983955, 0.0076509881764650345, 0.015953125432133675, -0.0046986243687570095, 0.0031872952822595835, 0.010951124131679535, -0.017181426286697388, 0.008672107011079788, -0.005749340634793043, 0.0015474013052880764, -0.03178785741329193, 0.009730222634971142, -0.0015372270718216896, 0.0030430066399276257, -0.02511359192430973, 0.008753499947488308, -0.011121311224997044, -0.006404187995940447, 0.025971923023462296, 0.01869090646505356, 0.01005579624325037, 0.0028913188725709915, 0.008020958863198757, 0.005989821162074804, -0.003226142143830657, -0.01821734383702278, 0.0018350533209741116, 0.005553256254643202, 0.0020662848837673664, 0.01431785523891449, 0.01425126101821661, 0.007018338888883591, 0.013888689689338207, -0.010684746317565441, -0.002565744798630476, -0.010899328626692295, -0.009449044242501259, -0.008583313785493374, -0.002536147367209196, 0.004069674760103226, -0.0032020939979702234, 0.005186985246837139, -0.0053904689848423, 0.026489881798624992, 0.024003680795431137, -0.013459524139761925, -0.008612911216914654, 0.009715422987937927, -0.010292577557265759, -0.012364411726593971, 0.0011857552453875542, 0.019682426005601883, -0.025957124307751656, -0.01165406871587038, -0.003601662116125226, 0.01524278149008751, 0.00587143050506711, 0.004987201187759638, 0.00373670132830739, 0.02031877636909485, 0.023988882079720497, 0.013999680988490582, -0.02348572202026844, 0.00025204234407283366, -0.02166546881198883, 0.022671787068247795, 0.02706703543663025, 0.0067778583616018295, 0.0017610592767596245, 0.004735621623694897, 0.010381369851529598, 0.001947894343174994, -0.0006238626083359122, 0.010840133763849735, 0.0022901168558746576, 0.008553716354072094, -0.005997220519930124, 0.013866491615772247, 0.01422906294465065, -0.0019793417304754257, -0.01849852129817009, -0.013614911586046219, 0.026401089504361153, -0.02996760420501232, 0.021117912605404854, 0.012578994035720825, -0.013563116081058979, -0.009049477055668831, -0.010729142464697361, 0.011787258088588715, 0.014569435268640518, -0.017344214022159576, -0.0031817457638680935, -0.004276858177036047, -0.004591332748532295, -0.0013735152315348387, -0.02490640990436077, 0.01266038790345192, -0.005153688136488199, 0.0053497725166380405, 0.0019238461973145604, 0.009360251948237419, 0.007724982686340809, 0.027570195496082306, -0.021265899762511253, -0.010610751807689667, -0.012490201741456985, -0.0028913188725709915, -0.010433166287839413, 0.013674107380211353, -0.002621240448206663, -0.01987481117248535, -0.0028987182304263115, 0.0006830578786320984, 0.014665627852082253, 0.006385689601302147, -0.0031724963337183, -0.0028876191936433315, -0.0029579135589301586, 0.01987481117248535, 0.01174286101013422, -0.015967924147844315, 0.004443344660103321, -0.005320174619555473, 0.019608432427048683, 0.0005355321918614209, 0.006744560785591602, 0.016115911304950714, -0.019268060103058815, -0.01663387008011341, 0.022390609607100487, 0.01676706038415432, -0.034214865416288376, -0.004014179110527039, -0.005050096195191145, 0.015272378921508789, -0.01007799431681633, -0.030781539157032967, -0.018764900043606758, 5.390584647102514e-06, 0.017936166375875473, -0.007244020700454712, 0.006692764814943075, 0.03874330222606659, -0.00631169555708766, -0.0011950044427067041, 0.028102952986955643, 0.01697424240410328, -0.008590713143348694, 0.01660427264869213, 0.012312616221606731, 0.014369651675224304, -0.020792337134480476, 0.0016389689408242702, 0.025572355836629868, -0.0008019108790904284, 0.011291497386991978, -0.016189906746149063, 0.00015954974514897913, -0.009774618782103062, 0.012571594677865505, 0.004302755929529667, 0.0053608715534210205, 9.544080967316404e-05, -0.004831813741475344, -0.01817294768989086, 0.00269338465295732, 0.004269458819180727, -0.002869120566174388, -0.022287018597126007, -0.0038032960146665573, -0.005249880254268646, 0.0004682438157033175, -0.00908647384494543, 0.002991210902109742, 0.019416047260165215, -0.00908647384494543, 0.004861411172896624, 0.011550476774573326, 0.024654829874634743, -0.004935405682772398, -0.010706944391131401, -0.0011395089095458388, -0.005756739992648363, 0.003851392073556781, -0.026031119748950005, 0.008598112501204014, 0.0009859711863100529, 0.004139969125390053, 0.009922606870532036, -0.008065355010330677, 0.0034055777359753847, -0.014140269719064236, 0.008339133113622665, -0.007040537428110838, -0.016249101608991623, 0.011476482264697552, 0.019564036279916763, -0.01991920731961727, 0.015597953461110592, -0.02870970591902733, -0.0012884220341220498, 0.0047097234055399895, -0.029198065400123596, -0.001868350664153695, 0.019016480073332787, -0.02373730204999447, -0.0030115593690425158, -0.024891609326004982, -0.0005984271410852671, 0.005420066881924868, 0.044722024351358414, 0.0017684586346149445, 0.020451964810490608, -0.02357451617717743, 0.0039586834609508514, -0.023012161254882812, -0.008561115711927414, 0.0030633551068603992, -0.011935246177017689, -0.0028302737046033144, 0.006714963354170322, -0.006652068346738815, 0.020762739703059196, 0.024817615747451782, -0.0030152590479701757, 0.00211068126372993, 0.0034222265239804983, -0.0062118032947182655, 0.002328963717445731, 0.017936166375875473, 8.185595652321354e-05, 0.01494680531322956, -0.00631169555708766, -0.016234302893280983, 0.015139189548790455, -0.0021569274831563234, 0.01848372258245945, -0.00466162757948041, -0.003457373706623912, 0.005223982501775026, 0.009833813644945621, 0.010877130553126335, -0.025971923023462296, 0.024388451129198074, 0.022213025018572807, 0.017077835276722908, 0.010588553734123707, 0.0020866331178694963, 0.010477562434971333, -0.005989821162074804, -0.031255099922418594, -0.01653027907013893, 0.006078613921999931, 0.017536597326397896, -0.00849452055990696, 0.004739321302622557, 0.012978562153875828, 0.014118071645498276, -0.009641429409384727, 0.002926466055214405, 0.005697544664144516, -0.0053645712323486805, -0.0026434387546032667, 0.0015557255828753114, 0.00907907448709011, 0.02498040348291397, 0.010344373062252998, -0.014029278419911861, -0.016041917726397514, 0.0024473543744534254, -0.0011367341503500938, -0.005031597800552845, 0.01999320089817047, 0.016145508736371994, -0.014125471003353596, 0.012956364080309868, -0.01012978982180357, 0.017506999894976616, 0.005812235176563263, 0.009967003017663956, 0.023234141990542412, 0.0031022019684314728, -0.011173106729984283, -0.0200967937707901, -0.020999521017074585, -0.006663167383521795, -0.02363371104001999, -0.017699385061860085, -0.021339893341064453, -0.0019349453505128622, 0.0005207333597354591, 0.009767219424247742, 0.017477402463555336, -0.006063815206289291, -0.0033870793413370848, -0.012778778560459614, 0.005679045803844929, 0.0038032960146665573, 0.012053636834025383, 0.008353931829333305, -0.013429926708340645, 0.008228141814470291, -0.01655987650156021, 0.007576994132250547, 0.015102192759513855, 0.007850772701203823, -0.02022998221218586, 0.016397088766098022, 0.01103251799941063, -0.0013855391880497336, 0.0026360393967479467, 0.0030615052673965693, -0.005605051759630442, 0.011513479985296726, -0.00269523449242115, -0.027096634730696678, -0.008213343098759651, -0.013755500316619873, -0.007036837283521891, 0.01502079889178276, 0.0046209306456148624, 0.01163927000015974, -0.000529057695530355, 0.0061415089294314384, 0.004276858177036047, 0.019682426005601883, 0.01518358662724495, 0.017521798610687256, 0.017995361238718033, 0.010248180478811264, -0.0003711265744641423, -0.005616151262074709, 0.023204544559121132, -0.009811615571379662, -0.01664866879582405, -0.006008319556713104, 0.0011006620479747653, 0.0040400768630206585, -0.003605361795052886, 0.006230302155017853, -0.0107809379696846, -0.017418207600712776, -0.00749560073018074, 0.008760899305343628, 0.00135039200540632, 0.011898248456418514, -0.0015381519915536046, 0.004798516631126404, 0.024551237002015114, -0.007895168848335743, -0.022464605048298836, 0.02172466367483139, 0.015834733843803406, 0.012305215932428837, 0.012253420427441597, 0.001645443495362997, -0.007166326977312565, 0.003973482176661491, 0.022198226302862167, 0.003472172422334552, 0.004846612457185984, -0.015272378921508789, -0.0029745621141046286, -0.001504854648374021, -0.016101112589240074, 0.00583813339471817, -0.02517278864979744, 0.01666346751153469, -0.0016112212324514985, 0.016278699040412903, -0.002996760420501232, 0.006008319556713104, -0.004065975081175566, -0.006711263675242662, 0.015346373431384563, 0.004624630324542522, -0.018039757385849953, 0.016456283628940582, -0.0219318475574255, -0.018794497475028038, 0.002784027485176921, -0.004746720660477877, -0.012290417216718197, 0.007702784147113562, 0.0037681488320231438, 0.01009279303252697, 0.0010645899455994368, -0.007114531472325325, -0.01815814897418022, -0.007769378833472729, 0.013844293542206287, -0.0029468145221471786, 0.03794416785240173, -0.005712343379855156, 0.011535678058862686, 0.008176346309483051, -0.011350692249834538, 0.013881290331482887, 0.0006062890170142055, 0.002260519191622734, 0.004117771051824093, -0.019371651113033295, -0.004961303435266018, -0.005993520841002464, -0.0046986243687570095, 0.034126073122024536, -0.0076287901028990746, -0.013185746036469936, -0.04750420153141022, 0.009863412007689476, 0.0183357335627079, 0.002317864680662751, -0.01670786365866661, -0.0005318325129337609], "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99": [-0.020704982802271843, 0.02788456343114376, 1.3381799135459005e-06, 0.029196960851550102, -0.004218968562781811, -0.01252952590584755, 0.011904207989573479, 0.04032916948199272, -0.030540237203240395, 0.00680130161345005, -0.008584616705775261, 0.0006417232798412442, -0.0036843600682914257, -0.015903156250715256, -0.007708399090915918, 0.02624792791903019, -0.004164928570389748, -0.007515399716794491, 0.013239763677120209, -0.06392142921686172, 0.05135330185294151, 0.00627248315140605, -0.054533932358026505, 0.02360769547522068, -0.012189846485853195, 0.008329857140779495, -0.01594947651028633, 0.010908329859375954, -0.018759548664093018, -0.009240814484655857, 0.012267046608030796, 0.006550402380526066, 0.03341206908226013, -0.011726648546755314, -0.0010875520529225469, -0.013239763677120209, 0.03183719515800476, 0.021924739703536034, -0.00040023267501965165, -0.02797720395028591, 0.0067318216897547245, 0.0310651957988739, 0.007615759503096342, 0.0048327068798244, -0.03937189280986786, 0.009140455164015293, 0.011062730103731155, -0.0055854045785963535, -0.0013529263669624925, -0.013618042692542076, 0.013448202982544899, -0.04335540160536766, -0.007642779033631086, -0.02618616819381714, -0.0015825956361368299, -0.0541633740067482, 0.05549120903015137, 0.042120207101106644, -0.011263449676334858, -0.026525847613811493, 0.0046783071011304855, -0.039804212749004364, 0.02743680588901043, -0.01675235480070114, 0.0347399041056633, 0.013201164081692696, -0.008638656698167324, 0.03004615753889084, -0.027652963995933533, 0.02093658223748207, 0.024549532681703568, 0.03495606407523155, -0.04008213058114052, 0.02595456875860691, 0.016458995640277863, 0.013239763677120209, 0.01530871819704771, 0.009750333614647388, 0.01181928813457489, -0.007862798869609833, 0.011587688699364662, -0.02836320362985134, 0.039835091680288315, 0.008600056171417236, 0.11536736786365509, -0.010514611378312111, -0.01432828139513731, -0.06836813688278198, -0.02910432033240795, -0.028193363919854164, 0.009997372515499592, -0.0039005193393677473, 0.008739016018807888, -0.02782280370593071, 0.021152742207050323, 0.0026769028045237064, 0.007214320357888937, 0.018774988129734993, 0.003858059411868453, -0.025336971506476402, -0.012629885226488113, 0.009179054759442806, 9.131287515629083e-05, -0.006685501895844936, 0.021029222756624222, -0.03344294801354408, 0.00795929878950119, -0.006909381132572889, -0.023406976833939552, 0.03406054899096489, 0.009480134584009647, -0.010831130668520927, -0.04088500887155533, 0.021785780787467957, -0.039001334458589554, 0.008190897293388844, -0.004971666261553764, -0.009287134744226933, -0.0006426882464438677, -0.0502416230738163, 0.01868234947323799, -0.03020055778324604, 0.01588771678507328, 0.008468816988170147, -0.03816757723689079, 0.01868234947323799, 0.01984034664928913, 0.04005125164985657, 0.01615019515156746, 0.002894992008805275, 0.008098257705569267, 0.011487328447401524, 0.011788408271968365, 0.06379790604114532, 0.03643830120563507, 0.0026807626709342003, 0.030802715569734573, 0.0232216976583004, -0.009117295034229755, 0.013841922394931316, -0.06651534140110016, -0.03421494737267494, -0.005515925120562315, 0.02621704898774624, -0.0021210641134530306, -0.002983771963045001, 0.004396528005599976, 0.008345297537744045, -0.008476536720991135, 0.015609797090291977, -0.05484272912144661, -0.030987994745373726, -0.00023919872182887048, -0.0005085536395199597, 0.04798739030957222, -0.036870621144771576, 0.014405480585992336, -0.004929206799715757, 0.0251825712621212, 0.0350487045943737, 0.033720869570970535, -0.020473383367061615, 0.018512509763240814, 0.049778424203395844, 0.049099065363407135, 0.0007377404836006463, 0.05666464567184448, 0.0008641551248729229, -0.04181140661239624, 0.041440848261117935, 0.01659795455634594, -0.013509963639080524, 0.029443999752402306, -0.0009249499998986721, -0.04107028990983963, -0.016042117029428482, 0.03483254462480545, 0.03792053833603859, -0.004338628146797419, 0.008005618117749691, -0.011302049271762371, 0.02268129773437977, 0.016103876754641533, 0.008098257705569267, 0.007179580628871918, 0.022557778283953667, 0.023885615170001984, 0.03264006972312927, 0.03551190346479416, 0.0049176267348229885, -0.013355563394725323, -0.01408896129578352, -0.003807879751548171, -0.018605150282382965, 0.01236740592867136, -0.003869639476761222, -0.0004928724374622107, -0.0015092558460310102, -0.010746210813522339, 0.0033041511196643114, -0.005218705628067255, -0.04934610426425934, -0.012143527157604694, 0.055275049060583115, -0.009256254881620407, 0.03554278239607811, -0.015686998143792152, -0.02209457941353321, 0.004107028711587191, -0.03043215721845627, 0.021446101367473602, -0.01545539777725935, -0.019902106374502182, -0.01636635512113571, 0.013633483089506626, 0.01431284099817276, -0.02972191944718361, 0.015594357624650002, -0.012344246730208397, -0.03061743639409542, -0.005261165555566549, 0.022588659077882767, 0.02170858159661293, -0.02138434164226055, -0.025290651246905327, -0.017833150923252106, -0.023715775460004807, 0.008368457667529583, -0.00279077235609293, 0.0006590932025574148, 0.02161594107747078, -0.004404248204082251, -0.003858059411868453, -0.04496115818619728, -0.020380744710564613, 0.019438907504081726, 0.04344804212450981, -0.021183623000979424, -0.010298452340066433, 0.011193969286978245, 0.012274766340851784, 0.010746210813522339, -0.015609797090291977, -0.006747261621057987, 0.008337576873600483, 0.03569718450307846, -0.005971403792500496, 0.0389704555273056, -0.006600582040846348, 0.009287134744226933, -0.006399862468242645, -0.008268097415566444, -0.0034701304975897074, 0.014899559319019318, -0.03801317512989044, 0.0290425606071949, 0.005253445822745562, -0.014482680708169937, 0.020828504115343094, -0.02654128707945347, -0.00044510504812933505, 0.03477078676223755, -0.02476569265127182, 0.0428304448723793, 0.039063092321157455, -0.02164682187139988, 0.02823968231678009, -0.015409078449010849, 0.020859383046627045, 0.01388052199035883, -0.00627248315140605, 0.004890606738626957, 0.017647871747612953, 0.02078218385577202, -0.012359686195850372, -0.014305121265351772, 0.026772886514663696, -0.009850692935287952, 0.011155369691550732, -0.019438907504081726, -0.01594947651028633, -0.013185723684728146, 0.0173390731215477, 0.008322137407958508, -0.0011956316884607077, 0.008592336438596249, -0.018435310572385788, -0.04076148942112923, -0.015154318884015083, -0.01891394890844822, 0.00160189566668123, -0.000627248315140605, -0.002997281728312373, 0.014945879578590393, 0.008993775583803654, -0.005515925120562315, 0.01201228704303503, -0.017941230908036232, -0.01043741125613451, 0.011572248302400112, -0.0038831494748592377, -0.013216604478657246, -0.02752944454550743, -0.007739278953522444, 0.048357948660850525, -0.012089487165212631, 0.04879026859998703, 0.029536640271544456, 0.016706034541130066, 0.027236085385084152, 0.030339516699314117, -0.04854322969913483, 0.02354593575000763, -0.026510408148169518, 0.0003032504173461348, 0.03961893171072006, 0.01659795455634594, -0.009402934461832047, -0.009835253469645977, -0.03325767070055008, 0.021507861092686653, -0.0010306171607226133, -0.05564560741186142, 0.036623578518629074, 0.013919122517108917, -0.04950050637125969, 0.005952103994786739, -0.01003597304224968, -0.016582515090703964, -0.016968512907624245, -0.022248979657888412, -0.032176870852708817, -0.00866953656077385, 0.029567519202828407, -0.028224242851138115, -0.020288104191422462, -0.0424598827958107, -0.03727205842733383, 0.014598480425775051, -0.04857410863041878, -0.010398811660706997, -0.0030397416558116674, 0.024688493460416794, -0.020982902497053146, 0.010970090515911579, 0.014243361540138721, 0.005261165555566549, 0.024487772956490517, -0.021029222756624222, 0.0059405239298939705, 0.000868980132509023, -0.0008202477474696934, 0.022588659077882767, 0.047678589820861816, 0.005438724998384714, -0.04576403647661209, -0.030663756653666496, 0.012599005363881588, 0.0030262316577136517, 0.010059132240712643, -0.00354154035449028, -0.03319590911269188, -9.849004709394649e-05, 0.0011744018411263824, -0.00815229769796133, -0.006484782323241234, 0.016258275136351585, 0.011634008027613163, 0.012645325623452663, 0.0016047906829044223, 0.009680853225290775, 0.024163534864783287, -0.015663838014006615, -0.014127561822533607, -0.04573315382003784, -0.03192983195185661, 0.03378262743353844, 0.008530576713383198, 0.00012364028953015804, 0.01923818700015545, 0.028780082240700722, -0.04415827989578247, -0.04391124099493027, 0.035172224044799805, 0.03946453332901001, 0.009981933049857616, 0.03551190346479416, -0.002082464285194874, -0.019531546160578728, 0.00618370296433568, -0.04635075479745865, 0.00846109725534916, -0.003475920530036092, -0.05135330185294151, 0.019052907824516296, -0.022588659077882767, -0.005751384422183037, 0.01143328845500946, 0.012043166905641556, -0.01926906779408455, -0.01598035730421543, -0.006091063376516104, 0.020349863916635513, 0.004323188215494156, 0.024009134620428085, -0.03943365439772606, 0.004392668139189482, -0.018605150282382965, 0.0066662016324698925, 0.02473481185734272, -0.006704801693558693, 0.012004567310214043, 0.01395772211253643, 0.027730165049433708, 0.03251655027270317, 0.023777535185217857, 0.013347843661904335, 0.04412740096449852, -0.04422004148364067, -0.013131684623658657, 0.02209457941353321, -0.0017823501257225871, 0.0075810193084180355, 0.01003597304224968, -0.004824986681342125, 0.0465051531791687, -0.009372054599225521, 0.0059907035902142525, 0.01594947651028633, -0.034461986273527145, -0.024209853261709213, 0.022650418803095818, 0.01923818700015545, 0.003987369127571583, 0.017586112022399902, -0.03236215189099312, -0.0035280303563922644, -0.019408026710152626, 0.022882018238306046, 0.010367931798100471, -0.021538741886615753, 0.051445938646793365, 0.02051970362663269, 0.00929485447704792, -0.04551699757575989, -0.03554278239607811, -0.03572806343436241, -0.008684976026415825, 0.03049391694366932, -0.0213534627109766, 0.019562426954507828, 0.008769895881414413, -0.03058655746281147, -0.02589280903339386, 0.0038754295092076063, -0.023453297093510628, 0.016551634296774864, 0.02431793324649334, 0.01630459539592266, -0.04940786585211754, -0.012081767432391644, 0.0016530405264347792, 0.020473383367061615, 0.010198092088103294, -0.0049755265936255455, -0.014351440593600273, -0.007306959945708513, -0.00320379133336246, 0.005079746246337891, 0.007457499857991934, 0.011541368439793587, 0.019099228084087372, 0.039835091680288315, 0.06410670280456543, 0.008322137407958508, -0.013355563394725323, -0.001365471282042563, 0.032887112349271774, -0.013401883654296398, 0.02524433098733425, -0.0096654137596488, -0.0035145203582942486, 0.013764722272753716, 0.002651812741532922, 0.0016115455655381083, 0.004419688135385513, -0.01659795455634594, -0.004940786398947239, 0.034554626792669296, -0.004496887791901827, 0.004952366463840008, -0.009981933049857616, 0.021507861092686653, 0.0016511104768142104, -0.010622691363096237, -0.01630459539592266, 0.01452128030359745, -0.02408633381128311, 0.01903746835887432, -0.024426013231277466, 0.021137302741408348, -0.0010721121216192842, 0.002578472951427102, -0.00163856556173414, -0.04103940725326538, 0.037395577877759933, -0.00904009584337473, 0.027714723721146584, -0.015401357784867287, -0.016783233731985092, -0.013455923646688461, 0.019871225580573082, -0.04894466698169708, 0.012977284379303455, 0.0076968190260231495, 0.025105372071266174, 0.0002914291981142014, -0.015934037044644356, 0.02075130306184292, 0.0004528250137809664, -0.003659270005300641, -0.03387526795268059, -0.02862568199634552, 0.004994826391339302, -0.0077624390833079815, -0.020735863596200943, -0.018280910328030586, -0.03881605342030525, -0.002122994279488921, -0.027730165049433708, -0.008345297537744045, 0.019052907824516296, -0.007967018522322178, 0.019052907824516296, 0.015694716945290565, -0.010699890553951263, 0.0061644031666219234, 0.036870621144771576, 0.032763589173555374, -0.013834202662110329, -0.06645357608795166, 0.03541926294565201, -0.023947374895215034, -0.027035366743803024, -0.02776104398071766, 0.01665971428155899, 0.013710682280361652, 0.008646376430988312, 0.00432704808190465, 0.027158886194229126, -0.03538838401436806, 0.005319065414369106, 0.005415565334260464, -0.00020047819998580962, -0.011070449836552143, -0.02390105463564396, 0.011680328287184238, -0.016798675060272217, -0.02025722526013851, -0.019732266664505005, -0.0027019926346838474, 0.020180024206638336, -0.00582858407869935, 0.0026209328789263964, 0.01829634979367256, -0.01900658756494522, -0.039865970611572266, 0.016381794586777687, -0.007140980567783117, 0.03964981064200401, 0.023684894666075706, -0.028131604194641113, 0.03952629119157791, 0.0021712440066039562, 0.001268006511963904, 0.04422004148364067, -0.021137302741408348, -0.020365305244922638, -0.05126066133379936, -0.004655147437006235, 0.017941230908036232, -0.017864031717181206, 0.008739016018807888, 0.0017939300742000341, -0.000835687736980617, -0.00418036850169301, 0.0016047906829044223, -0.05234145745635033, 0.002460743300616741, -0.02051970362663269, -0.0020033344626426697, 0.043756842613220215, -0.01923818700015545, -0.013996321707963943, -0.017632432281970978, 0.0031902813352644444, 0.002989561762660742, 0.0008993775700218976, 0.03646918013691902, -0.011008690111339092, 0.02643320895731449, 0.005145365837961435, 0.038599893450737, -0.025738410651683807, -0.032917991280555725, 0.006187563296407461, 0.035203102976083755, 0.006098783574998379, -0.004724627360701561, 0.0055352249182760715, 0.00587876420468092, -0.010066852904856205, 0.025336971506476402, -0.0016125106485560536, 0.007469079457223415, 0.0034315306693315506, 0.030833596363663673, 0.03634566068649292, 0.02241881936788559, -0.011070449836552143, 0.016350915655493736, -0.0007594529306516051, 0.02734416536986828, -0.02408633381128311, 0.0231599360704422, 0.023592256009578705, 0.001370296231471002, 0.014413200318813324, -0.006191423162817955, 0.021461540833115578, -0.015934037044644356, -0.00807509757578373, -0.011680328287184238, -0.04249076545238495, -0.007982457987964153, -0.003309940919280052, 0.003418020671233535, 0.015123439021408558, 0.002590053016319871, -0.023329775780439377, -0.011973687447607517, -0.014320560730993748, 0.0015468908241018653, 0.05166209861636162, -0.011008690111339092, -0.01817283034324646, 0.02215633913874626, -4.484222154133022e-05, 0.024209853261709213, -0.014529000036418438, -0.0015584707725793123, 0.008630936965346336, -0.019701385870575905, 0.03683973848819733, -0.01630459539592266, -0.020704982802271843, -0.0017485752468928695, 0.028162483125925064, -0.003904379438608885, 0.02479657344520092, 0.010337051935493946, -0.02672656811773777, 0.01180384773761034, 0.009588213637471199, 0.016289155930280685, 0.007005881052464247, 0.03297974914312363, -0.0012747615110129118, 0.021631380543112755, 0.001569085754454136, 0.03226951137185097, -0.036623578518629074, -0.001337486319243908, -0.00866953656077385, -0.015277838334441185, 0.010730770416557789, -0.0008713926072232425, 0.022526899352669716, -0.004288448486477137, -0.019207308068871498, -0.027452245354652405, -0.041996683925390244, -0.03946453332901001, 0.011201689951121807, -0.015107998624444008, -0.004354068078100681, -0.01354084350168705, -0.007098520640283823, -0.005384685471653938, -0.013409603387117386, -0.002381613478064537, -0.01159540843218565, 0.0019724546000361443, 0.0386616550385952, 0.0050836061127483845, -0.010962369851768017, 0.006643041968345642, 0.0017032204195857048, -0.0074652195908129215, 0.004674447234719992, -0.03129679337143898, -0.03239303082227707, 0.01309308409690857, -0.02206370048224926, -0.004288448486477137, 0.01395772211253643, -0.026680247858166695, -0.016505315899848938, -0.02604720927774906, 0.014258801005780697, 0.015548037365078926, 0.017802271991968155, 0.01315484382212162, 0.010198092088103294, 0.0035704902838915586, 0.011695767752826214, -0.02042706497013569, 0.013340123929083347, -0.023654015734791756, 0.011070449836552143, 0.011487328447401524, 0.04100852832198143, -0.030771836638450623, -0.007256780285388231, -0.03551190346479416, -0.02425617352128029, -0.014413200318813324, -0.012668485753238201, 0.004639707505702972, 0.010105452500283718, 0.027035366743803024, -0.02779192477464676, 0.007403459865599871, 0.007148700766265392, 0.004373367875814438, -0.0504269041121006, -0.014513560570776463, -0.004952366463840008, 0.019176427274942398, 0.012699365615844727, 0.02859480306506157, -0.026155289262533188, -0.012992724776268005, -0.056880805641412735, -0.007388019934296608, 0.011549088172614574, 0.048450589179992676, 0.010838850401341915, -0.017601551488041878, -0.022434258833527565, 0.02025722526013851, -0.016134755685925484, 0.0424598827958107, 0.013625763356685638, 0.013440483249723911, -0.0024800433311611414, 0.020056504756212234, 0.016613394021987915, 0.01749347150325775, 0.03157471492886543, -0.007615759503096342, 0.01984034664928913, 0.008337576873600483, 0.003979649394750595, 0.021106421947479248, -0.020241785794496536, -0.0030127218924462795, 0.024920092895627022, 0.02061234414577484, 0.02752944454550743, 0.024040015414357185, 0.022943777963519096, 0.017925791442394257, 0.034554626792669296, -0.0046860272996127605, -6.272483005886897e-05, 0.0012294066837057471, -0.024904651567339897, -0.01618107594549656, -0.009186775423586369, -0.012197567149996758, -0.018697788938879967, 0.0289499219506979, 0.003991228993982077, 0.0007884028600528836, -0.032022472470998764, 0.03007703833281994, -0.0009075800189748406, -0.021090982481837273, 0.023885615170001984, 0.010522331111133099, -0.006712521892040968, -0.03545014187693596, -0.003655410138890147, -0.01408896129578352, -0.012575846165418625, 0.0136026032269001, -0.011085890233516693, 0.016875874251127243, 0.007260640151798725, 0.014359161257743835, 0.005037286318838596, 0.04094676673412323, 0.022233540192246437, 0.032053351402282715, -0.016675153747200966, -0.020056504756212234, -0.014914999715983868, 0.0032501111272722483, -0.007708399090915918, 0.014613919891417027, 0.010514611378312111, -0.018574269488453865, 0.03554278239607811, -0.0211990624666214, -0.015223798342049122, 0.022851137444376945, 0.04406563937664032, 0.003275201190263033, -0.012197567149996758, -0.011911927722394466, -0.001539170858450234, -0.0018798148958012462, 0.012907804921269417, 0.003776999656111002, 0.043695081025362015, 0.019160987809300423, -0.0019492947030812502, 0.01317028421908617, 0.01217440702021122, -0.008206337690353394, 0.0006330382893793285, -0.035975102335214615, 0.0125449663028121, 0.025614891201257706, -0.003603300079703331, 0.015223798342049122, 0.002835162216797471, -0.01787947118282318, 0.016551634296774864, -0.02280481718480587, -0.03653094172477722, -0.01942346803843975, 0.026618488132953644, 0.007843499071896076, 0.029613839462399483, 0.020735863596200943, -0.0024800433311611414, 0.054472170770168304, 0.049253467470407486, 0.02177034132182598, -0.0425834059715271, 0.015401357784867287, -0.005500485189259052, -0.00923309475183487, 0.01846618950366974, 0.014660240150988102, 0.025676650926470757, -0.031188715249300003, 0.002601632848381996, 0.024194413796067238, 0.014227921143174171, -0.028764640912413597, -0.009078695438802242, -0.010614970698952675, -0.02428705431520939, -0.001284411526285112, -0.02161594107747078, -0.007395739667117596, -0.010259851813316345, -0.03776613622903824, -0.01656707562506199, 0.04026741161942482, 0.022619538009166718, 0.007449779659509659, 0.005925083998590708, -0.004056849051266909, -0.006754981819540262, -0.015995796769857407, -0.03183719515800476, -0.0061721233651041985, 0.022634977474808693, -0.005735944490879774, 0.03968069329857826, -0.01903746835887432, -0.006453902460634708, 0.02351505681872368, -0.015964915975928307, -0.03254743292927742, 0.005971403792500496, -0.008708136156201363, -0.009348894469439983, 0.009364334866404533, -0.04733891040086746, -0.01196596771478653, 0.011047289706766605, 0.001603825599886477, -0.012807445600628853, -0.008708136156201363, -0.034431107342243195, 0.0002899817191064358, -0.028054403141140938, -0.04317012429237366, -0.014613919891417027, 0.0387851744890213, -0.04582579433917999, 0.01823459006845951, -0.01585683599114418, 0.0012930964585393667, 0.0155171575024724, -0.015934037044644356, -0.012097206898033619, 0.0031516815070062876, 0.01615019515156746, 0.055985286831855774, 0.024132654070854187, 0.002730942564085126, 0.0037441898602992296, 0.019917545840144157, -0.000743047974538058, 0.00022653312771581113, 0.0014243361074477434, 0.017323633655905724, 0.025491369888186455, -0.001323976437561214, -0.010113172233104706, -0.029968958348035812, -0.002298623789101839, 0.0011657167924568057, 0.032145991921424866, -0.0037692796904593706, 0.02042706497013569, -0.01545539777725935, -0.002568823052570224, 0.04894466698169708, -0.003910169471055269, -0.019346266984939575, 0.024395134299993515, -0.02817792259156704, 0.010476011782884598, 0.002833232283592224, -0.006017723586410284, 0.03239303082227707, -0.022295299917459488, 0.006635321769863367, -0.02788456343114376, 0.0096654137596488, 0.012714805081486702, 0.008847096003592014, -0.025939129292964935, 0.003138171508908272, 0.025800170376896858, 0.003263621125370264, -0.015995796769857407, -0.01621195673942566, 0.012699365615844727, 0.002536013023927808, 0.0015468908241018653, 0.006187563296407461, 0.009487854316830635, 0.02859480306506157, -0.0013645063154399395, -0.008854815736413002, 0.02016458474099636, -0.011332929134368896, 0.008978335186839104, -0.022048259153962135, 0.006052463315427303, -0.022974656894803047, -0.013903682120144367, -0.0309416763484478, -0.0011329068802297115, 0.027930883690714836, 0.0027965623885393143, 0.004558647517114878, 0.010283011943101883, -0.02161594107747078, -0.013471363112330437, -0.045980196446180344, -0.028316883370280266, 0.002414423506706953, -0.03702501952648163, 0.006967280991375446, -0.000265615526586771, 0.0076968190260231495, -0.02853304147720337, -0.0174625925719738, 0.032207753509283066, -0.017894910648465157, 0.0024568832013756037, 0.013309244066476822, -0.010638130828738213, -0.0022156338673084974, -0.014359161257743835, -0.00893973559141159, -0.025074491277337074, -0.0014677610015496612, -0.029351359233260155, -0.005952103994786739, -0.023684894666075706, 0.006743401754647493, -0.004879026673734188, -0.009912452660501003, 0.012413726188242435, 0.01167260855436325, 0.030771836638450623, 0.02969103865325451, -0.01740083284676075, -0.00981209333986044, 0.02544505149126053, -0.009263974614441395, -0.0057012042962014675, 0.0042266882956027985, 0.004674447234719992, -0.0056510246358811855, 0.03192983195185661, 0.014814639464020729, -0.03931013122200966, 0.015586637891829014, -0.008630936965346336, 0.0009592073620297015, -0.0014108261093497276, -0.016258275136351585, -0.04721539095044136, 0.0016366355121135712, 0.025074491277337074, 0.008005618117749691, 0.010059132240712643, 0.017061153426766396, 0.009951053187251091, -0.03721030056476593, -0.027128005400300026, 0.015347317792475224, -0.024070894345641136, -0.00785507820546627, -0.01588771678507328, -0.009657694026827812, -0.09609829634428024, -0.008831655606627464, 2.106408282998018e-05, 0.0310343150049448, -0.025784729048609734, -0.035295743495225906, 0.028023524209856987, -0.0038792893756181, -0.040607091039419174, 0.012058607302606106, -0.014343720860779285, -0.013100804761052132, 0.0193308275192976, -0.000758005422540009, -0.0014214410912245512, 0.012112647294998169, -0.009912452660501003, -0.02756032533943653, -0.003472060663625598, 0.009866133332252502, -0.009997372515499592, -0.009711734019219875, 0.016844993457198143, 0.00871585588902235, -0.03384438902139664, 0.01811107061803341, -0.0002820204827003181, -0.003987369127571583, -0.006809021346271038, -0.022619538009166718, -0.00393525930121541, -0.0003119354078080505, -0.01627371646463871, -0.018774988129734993, 0.013208883814513683, -0.0005186860798858106, -0.01395772211253643, -0.003302220953628421, 0.01923818700015545, 0.00657742191106081, 0.022882018238306046, 0.0035473303869366646, -0.017447153106331825, 0.025800170376896858, 0.019099228084087372, 0.010275292210280895, 0.02586193010210991, -0.02122994139790535, -0.005952103994786739, 0.012761125341057777, 0.002812002319842577, 0.010367931798100471, -0.0231599360704422, -0.021060103550553322, -0.001874989946372807, 0.03049391694366932, 0.02078218385577202, -0.009549614042043686, -0.028069844469428062, 0.016875874251127243, 0.032948870211839676, 0.021276261657476425, 0.017385393381118774, -0.0031671214383095503, -0.014830079860985279, 0.011888767592608929, 0.030154237523674965, 0.029212400317192078, 0.02830144390463829, 0.004987106658518314, 0.03132767602801323, -0.0010653571225702763, 0.0060486034490168095, -0.0006204933160915971, 0.009595934301614761, -0.012282487004995346, -0.0007179580279625952, 0.017987551167607307, 0.014243361540138721, 0.00025693056522868574, -0.03650005906820297, 0.015401357784867287, 0.0026054929476231337, 0.007376439869403839, -0.018188269808888435, -0.013780162669718266, 0.010916050523519516, -0.000334371579810977, 0.003533820388838649, 0.007615759503096342, 0.01495359931141138, 0.0037576998583972454, 0.04570227488875389, -0.0013760862639173865, -0.01394228171557188, 0.04097764939069748, -0.004080008715391159, 0.019114667549729347, -0.02235705964267254, -0.0012737965444102883, 0.01530871819704771, -0.002221423899754882, -0.001888499828055501, -0.012251606211066246, -0.01503851916640997, -0.013710682280361652, -0.015964915975928307, 0.009680853225290775, -0.01594947651028633, -0.006334242876619101, -0.024564974009990692, -0.01858970895409584, -0.015169758349657059, 0.0008255552384071052, -0.000300355430226773, -0.016103876754641533, 0.014420920982956886, -0.008098257705569267, -0.007214320357888937, 0.0026440927758812904, -0.001122291898354888, 0.012537245638668537, 0.0036187402438372374, -0.038414616137742996, -0.002972191898152232, -0.014806919731199741, -0.014004041440784931, -0.005871044006198645, 0.009341174736618996, 0.024935532361268997, -0.026711126789450645, 0.00397192919626832, -0.007283800281584263, 0.0030590416863560677, -0.005793844349682331, 0.01452128030359745, 0.019562426954507828, -0.03174455463886261, 0.04400388151407242, -0.020180024206638336, 0.02078218385577202, 0.012707085348665714, -0.005191686097532511, -0.012467766180634499, -0.006249323021620512, 0.01524695847183466, -0.02411721460521221, -0.014281961135566235, -0.011441009119153023, -0.014143001288175583, 0.009734893217682838, -0.010012812912464142, 0.04110116884112358, -0.004705327097326517, -0.01959330588579178, -0.02425617352128029, 0.0037943697534501553, 0.009464694187045097, -0.01236740592867136, -0.0010296521941199899, -0.005500485189259052, 0.0038271795492619276, 0.01852794922888279, -0.017539791762828827, 0.006129663437604904, -0.00972717348486185, 0.004357927944511175, -0.01826547086238861, -0.012853764928877354, 0.0233143363147974, 0.028455842286348343, -0.022882018238306046, -0.01862058974802494, -0.029629278928041458, 0.013857361860573292, -0.03226951137185097, 0.0031111515127122402, -0.005396265536546707, 0.03612950071692467, -0.0037036598660051823, -0.014019481837749481, -0.002835162216797471, -0.001613475615158677, 0.01849707029759884, 0.00010120410297531635, 0.009063255041837692, 0.010182652622461319, 0.005118345841765404, -0.006994300987571478, -0.005342225544154644, 0.021893860772252083, 0.019917545840144157, -0.002729012630879879, 0.008932015858590603, 0.01561751775443554, 0.015779636800289154, 0.011379249393939972, 0.03013879805803299, -0.02268129773437977, -0.022279858589172363, -0.014806919731199741, -0.022140899673104286, 0.01437460072338581, 0.013980882242321968, 0.00616054330021143, 0.0018614799482747912, -0.0270816870033741, 0.028347762301564217, -0.006924821063876152, -0.01116308942437172, -0.0007377404836006463, -0.000903720036149025, 0.00795929878950119, 0.017864031717181206, -0.002377753611654043, -0.01560207735747099, -0.019377147778868675, -0.0024665333330631256, 0.010669010691344738, -0.006094923242926598, 0.027668405324220657, 0.004593387711793184, 0.01432828139513731, -0.0087312962859869, 0.01215896662324667, 0.023237137123942375, -0.005963683594018221, -0.03387526795268059, -0.010421971790492535, 0.005616284906864166, -0.00198596459813416, 0.0008062553242780268, 0.01752435229718685, -0.009711734019219875, -0.03656182065606117, 0.0021422940772026777, 0.011070449836552143, 0.00829897727817297, 0.02048882469534874, -0.007430479861795902, -0.0010200021788477898, -0.013471363112330437, -0.012120367027819157, -0.01374928280711174, 0.006704801693558693, 0.0011541368439793587, -0.02393193542957306, -0.015347317792475224, 0.003672780003398657, 0.011765248142182827, -0.0048520066775381565, -0.009063255041837692, -0.013417323119938374, 0.010329332202672958, -0.00320379133336246, -0.013000444509088993, -0.00018105763592757285, -0.00889341626316309, 0.0027483124285936356, -0.0046281274408102036, -0.039958611130714417, 0.016613394021987915, 0.011981407180428505, -0.017647871747612953, 0.029382240027189255, -0.01574103720486164, -0.009318014606833458, 0.007090800907462835, -0.01710747368633747, -0.0250899326056242, -0.01167260855436325, -0.005554524715989828, -0.014752879738807678, -0.006596722174435854, 0.0008747701067477465, 0.020056504756212234, -0.011919647455215454, -0.03795141726732254, 0.013371003791689873, -0.012807445600628853, 0.010707611218094826, -0.017539791762828827, -0.014606200158596039, 2.389876317465678e-05, 0.005461885128170252, 0.01829634979367256, -0.019191868603229523, -0.012128086760640144, 0.011502768844366074, 0.00636898260563612, -0.01894482783973217, 0.00011380937939975411, 0.01107816956937313, 0.012722525745630264, 0.02820880338549614, 0.012251606211066246, -0.02820880338549614, -0.003956489264965057, -0.0012757264776155353, 0.000734845525585115, 0.026587607339024544, 0.016798675060272217, -0.006307222880423069, -0.014266520738601685, -0.02444145269691944, -0.0003305115969851613, -0.00809053797274828, -0.008322137407958508, 0.02428705431520939, 0.009920173324644566, 0.0014108261093497276, 0.011008690111339092, -0.04357156157493591, -0.02093658223748207, -0.02090570330619812, 0.030987994745373726, 0.023144496604800224, -0.003367840778082609, 0.008260377682745457, -0.013517683371901512, 0.02292833849787712, 0.019253628328442574, 0.026850087568163872, 0.013363284058868885, -0.03714853897690773, 0.0022696738597005606, -0.029196960851550102, 0.011348369531333447, 0.015401357784867287, -0.006307222880423069, -0.04777123034000397, 0.029536640271544456, -0.015169758349657059, -0.004689887166023254, -0.020535144954919815, 0.024534093216061592, 0.007449779659509659, 0.00554680498316884, -0.005871044006198645, -1.1089930922025815e-05, 0.02592368982732296, 0.03646918013691902, -0.002402843441814184, -0.013988601975142956, -0.006191423162817955, -0.007125540636479855, -0.015285558067262173, 0.014281961135566235, 0.02847128175199032, 0.0012516016140580177, 0.013726122677326202, 0.004689887166023254, -0.010221252217888832, -0.010066852904856205, -0.014420920982956886, 0.048265308141708374, -0.009464694187045097, 0.0025746130850166082, -0.029984397813677788, -0.02399369515478611, -0.021662261337041855, -0.012776564806699753, 0.00432704808190465, 0.014884119853377342, -0.020180024206638336, 0.007615759503096342, 0.01659795455634594, -0.020180024206638336, -0.0009770598262548447, -0.008098257705569267, 0.00047477870248258114, 0.011618568561971188, -0.012490926310420036, 0.00436564814299345, -0.007384160067886114, 0.003914029337465763, -0.023020977154374123, 0.013664362952113152, -0.0072336201556026936, -0.012784285470843315, -0.021476982161402702, 0.00887797586619854, -0.04551699757575989, -0.010692170821130276, -0.009642253629863262, -0.006091063376516104, -0.010622691363096237, 0.010846570134162903, -0.01675235480070114, -0.020627783611416817, -0.01618107594549656, -0.015416798181831837, 0.0032732710242271423, 0.0192999467253685, 0.00573208462446928, -0.0010682521387934685, -0.002238793997094035, 0.017138352617621422, -0.03952629119157791, -0.0135254031047225, -0.0020033344626426697, 0.016088435426354408, -0.00047308995272032917, 0.023391535505652428, -0.005840164143592119, 0.029891759157180786, 0.016798675060272217, 0.009047815576195717, -0.003786649787798524, -0.023005537688732147, -0.013054484501481056, -0.008414776995778084, 0.021492421627044678, -0.013085364364087582, -0.03554278239607811, 0.01811107061803341, -0.009858413599431515, 0.03801317512989044, -0.008252657949924469, 0.002150014042854309, -0.014637080021202564, 0.004300028085708618, -0.009904732927680016, -0.014783759601414204, 0.0029818417970091105, 0.030061598867177963, -0.028008082881569862, 0.00640758266672492, 0.0021422940772026777, -0.006531102117151022, -0.019222747534513474, 0.025645770132541656, 0.006569702178239822, 0.019068347290158272, 0.02280481718480587, -0.03307238966226578, 0.0014590760692954063, -0.007665939163416624, -0.016350915655493736, -0.01039109192788601, -0.032207753509283066, -0.025167131796479225, -0.01088517066091299, 0.0033485409803688526, -0.007712258957326412, -0.025429610162973404, 0.009680853225290775, -0.01374928280711174, 0.0065658423118293285, 0.01598035730421543, 0.004029829055070877, -0.024271614849567413, 0.011487328447401524, -0.002346873516216874, 0.03399878740310669, 0.02280481718480587, -0.012089487165212631, -0.018867628648877144, -0.010059132240712643, 0.018311789259314537, 0.01577191799879074, 0.010645851492881775, -0.0016376005951315165, 0.009565053507685661, -0.01273796521127224, 0.0011020270176231861, 0.011271169409155846, -0.006141243502497673, -0.018002990633249283, -0.018450750038027763, 0.014922719448804855, 0.01564839668571949, 0.004161068703979254, -0.004520047921687365, 0.01532415859401226, -0.030818156898021698, 0.0010441271588206291, -0.006805161479860544, -0.008121417835354805, -0.025105372071266174, -0.009657694026827812, 0.0007256780518218875, 0.002099834382534027, 0.0250590518116951, 0.003695939900353551, -0.008468816988170147, 0.02348417602479458, -0.005415565334260464, -0.01143328845500946, 0.05095186084508896, 0.00788595899939537, 0.012900085188448429, -0.019160987809300423, 0.03384438902139664, 0.019763145595788956, 0.0030764115508645773, 0.005326785612851381, -0.00809053797274828, 0.006010003853589296, 0.002580402884632349, -0.008823935873806477, -0.021276261657476425, -0.030663756653666496, 0.0028795520775020123, 0.006816741544753313, -0.002136504277586937, 0.0020168444607406855, 0.014837799593806267, 0.012081767432391644, -0.015107998624444008, 0.002254233928397298, 0.011008690111339092, 0.013741562142968178, -0.0016125106485560536, 0.00042990632937289774, -0.0036341801751405, 0.017246432602405548, -0.0037345397286117077, -0.013039044104516506, 0.010136332362890244, 0.0037422599270939827, -0.00923309475183487, -0.003946839366108179, -0.0020747443195432425, 0.0007179580279625952, 0.009897013194859028, -0.017447153106331825, 0.022372499108314514, -0.010313891805708408, 0.00305518158711493, -0.0020940443500876427, -0.029166080057621002, 0.013363284058868885, 0.0011415919288992882, 0.017184672877192497, 0.004516187589615583, 0.006967280991375446, 0.009078695438802242, -0.00795929878950119, -0.009572774171829224, -0.010476011782884598, 0.00852285698056221, -0.01117852982133627, 0.001608650665730238, 0.012830604799091816, 0.05694256350398064, 0.0019801745656877756, 0.01808019168674946, -0.009688573889434338, 0.014050361700356007, -0.005102905910462141, -0.005403985269367695, -0.004022108856588602, 0.023453297093510628, -0.0019898246973752975, -0.0012187917018309236, -0.014243361540138721, 0.00027502424200065434, -0.003030091756954789, -0.03470902517437935, 0.027189765125513077, 0.008932015858590603, 0.023051857948303223, -1.4294023458205629e-05, 0.010352491401135921, 0.014776039868593216, -0.004543207585811615, -0.019052907824516296, -0.006203003227710724, -0.0002290662523591891, 0.011695767752826214, -0.021137302741408348, 0.002775332424789667, 0.01202772743999958, 0.00734170014038682, -0.016165636479854584, -0.018713228404521942, -0.023854734376072884, 0.002451093401759863, -0.014675679616630077, 0.026865527033805847, -0.008484256453812122, 0.01201228704303503, -0.004303888417780399, 0.023360656574368477, -0.006893941201269627, -0.013448202982544899, 0.03325767070055008, 0.03192983195185661, -0.010128612630069256, -0.00836073700338602, -0.008028778247535229, -0.0011560668935999274, -0.0016569005092605948, -0.006816741544753313, -0.031497515738010406, -0.006492502521723509, -0.005739804357290268, -2.0174476958345622e-05, 0.010182652622461319, -0.012251606211066246, 0.007851218804717064, -0.006754981819540262, 0.0036341801751405, -0.0097426138818264, 0.011572248302400112, 0.016088435426354408, -0.02634056843817234, -0.027066245675086975, -0.0005379860522225499, -0.009387494064867496, 0.004037548787891865, 0.0028216522186994553, 0.005944383796304464, 0.011101329699158669, -0.009078695438802242, -0.006793581414967775, 0.024333374574780464, -0.010576371103525162, 0.0016308455960825086, 0.0052650258876383305, 0.019794026389718056, 0.020921142771840096, 0.030061598867177963, -0.008036497980356216, -0.0039120991714298725, -0.014042641967535019, 0.022959217429161072, -0.013594882562756538, -0.0058054244145751, -0.01423564087599516, 0.005898064002394676, -0.006608302239328623, 0.00393525930121541, -0.029351359233260155, -0.0038387596141546965, 0.001016142196021974, -0.011780687607824802, 0.01530871819704771, 0.01672147400677204, -0.0033736308105289936, -0.00504114618524909, -0.00787051860243082, 0.017277313396334648, -0.010946930386126041, 0.016042117029428482, 0.019516106694936752, 0.0028506021481007338, 0.003064831718802452, 0.00944153405725956, 0.0005828583962284029, 0.019948426634073257, 0.011340648867189884, -0.02348417602479458, 0.0073571400716900826, 0.008854815736413002, 0.0025495230220258236, -0.015177479013800621, 0.021121863275766373, -0.018358109518885612, -0.009603654034435749, -0.001747610280290246, 0.0033852108754217625, -0.00792841799557209, -0.00436564814299345, -0.007140980567783117, -0.012714805081486702, -0.020704982802271843, 0.005697344429790974, 0.006017723586410284, 0.013486803509294987, -0.023530496284365654, 0.0037268197629600763, -0.010283011943101883, -0.002682692604139447, 0.01447496097534895, -0.009009215049445629, -0.002319853752851486, -0.0013712613144889474, 0.006990441121160984, -0.010993249714374542, 0.013564002700150013, -0.016968512907624245, 0.014930439181625843, -0.007573299575597048, 0.007967018522322178, 0.029166080057621002, 0.009055535309016705, -0.008221778087317944, -0.008700416423380375, 0.02473481185734272, -0.016829553991556168, -0.02087482251226902, 0.014436360448598862, 0.010645851492881775, 0.0036669899709522724, -0.028316883370280266, -0.0005418460350483656, -0.02004106529057026, -0.007677519228309393, -0.006411442533135414, -0.019469786435365677, 0.025321530178189278, 0.01621195673942566, -0.002510923193767667, -0.0015372408088296652, 0.01002053264528513, 0.0012438816484063864, 0.019114667549729347, 0.006809021346271038, 0.008901135995984077, 0.0086540961638093, 0.02871832251548767, 0.01710747368633747, -0.02235705964267254, -0.004709186963737011, 0.006785861682146788, -0.0012718664947897196, -0.011101329699158669, 0.0096654137596488, -0.010831130668520927, -0.017215553671121597, -0.0027425226289778948, -0.009364334866404533, 0.028409522026777267, 0.01618107594549656, 0.017941230908036232, 0.020149145275354385, 0.012444606050848961, 0.01865146867930889, -0.004041409119963646, 0.0031072916463017464, -0.026170728728175163, -0.00160189566668123, 0.01621195673942566, 0.006473202258348465, 0.027930883690714836, 0.0008371352450922132, -0.005099046044051647, -0.009541894309222698, -0.010730770416557789, 0.0016009307000786066, 0.0194852277636528, 0.005106766242533922, -0.006091063376516104, 0.009580493904650211, -0.0028042823541909456, 0.024178974330425262, 0.014405480585992336, 0.004539347719401121, 0.0033080109860748053, -0.0062570427544415, -0.026325128972530365, -0.01260672602802515, -0.0011522069107741117, -0.04814178869128227, -0.01526239886879921, 0.004384947940707207, 0.018435310572385788, -0.011309769004583359, 0.00043087132507935166, 0.0310651957988739, 0.0125449663028121, 0.01615019515156746, 0.003495220560580492, -0.0056433044373989105, 0.015339598059654236, 0.006025443784892559, -0.008808496408164501, -0.003286781022325158, 0.005604704841971397, 0.018805868923664093, 0.024534093216061592, 0.02823968231678009, -4.668174733524211e-05, 0.00852285698056221, -0.0017070804024115205, -0.025522250682115555, 0.01495359931141138, 0.008901135995984077, 0.014544440433382988, 0.01526239886879921, -0.01066129095852375, 0.02366945520043373, -0.028424963355064392, -0.004535487852990627, -0.0026247927453368902, 0.001319151371717453, 0.003844549646601081, 0.021801220253109932, 0.0023391535505652428, 0.0026054929476231337, 0.0019029747927561402, 0.006218443159013987, -2.6416802938911133e-05, 0.00866953656077385, -0.0016771653899922967, -0.016767794266343117, 0.011294329538941383, 0.023468736559152603, 0.020473383367061615, -0.004674447234719992, -0.0018643749644979835, -0.009179054759442806, -0.026448648422956467, 0.01769419200718403, 0.016196515411138535, 0.0041765086352825165, -0.017709631472826004, 0.02280481718480587, 0.014050361700356007, -0.02592368982732296, 0.010614970698952675, 0.0036747099366039038, 0.005658744368702173, -0.0035261004231870174, -0.005569964647293091, -0.018188269808888435, 0.013988601975142956, -0.01452128030359745, -0.02078218385577202, -0.0037326097954064608, 0.0023989835754036903, 0.010151772759854794, 0.028054403141140938, -0.008291257545351982, -0.011525928974151611, -0.003987369127571583, -0.036870621144771576, -0.01852794922888279, 0.002949032001197338, -0.008800775744020939, 0.008823935873806477, -0.007268360350281, -0.0024588133674114943, 0.013726122677326202, -0.010414252057671547, 0.013116244226694107, -0.002244583796709776, 0.009487854316830635, 0.0011985267046838999, -0.0027598924934864044, 0.002856392180547118, 0.022202659398317337, 0.022882018238306046, -0.0031420313753187656, 0.021538741886615753, -0.007716118823736906, -0.005307485349476337, 0.019608747214078903, 0.020334424450993538, 0.011572248302400112, 0.007569439243525267, 0.004597247578203678, -0.000595885852817446, 0.02019546553492546, -0.004462148062884808, 0.003796299686655402, 0.003834899514913559, 0.006264762952923775, -0.015254678204655647, -0.006210722960531712, 0.014613919891417027, -0.009642253629863262, 0.017508912831544876, 0.004886746872216463, -0.004122468642890453, 0.002557242987677455, 0.01755523309111595, 0.0036766401026397943, 0.02177034132182598, 0.0029181521385908127, -0.004014389123767614, 0.00472076702862978, -0.0002248443925054744, 0.0035685603506863117, -0.01752435229718685, 0.0050836061127483845, 0.002559172920882702, -0.010298452340066433, 0.011255729012191296, -0.03557366505265236, -0.014621640555560589, -0.023422416299581528, 0.004983246326446533, -0.0346781462430954, 0.02010282501578331, -0.00018672698934096843, -0.005048866383731365, -0.005230285692960024, 0.0033524008467793465, 0.0030764115508645773, -0.018805868923664093, 0.006589001975953579, 0.009279415011405945, 0.0035376804880797863, -0.02173946052789688, 0.01695307344198227, 0.0006455832626670599, 0.0026460227090865374, -0.022604098543524742, 0.0014880259986966848, 0.015563477762043476, -0.01769419200718403, -0.007113960571587086, -0.01181928813457489, 0.019562426954507828, -0.009202214889228344, -0.019438907504081726, -0.007430479861795902, 0.016026675701141357, -0.009402934461832047, -0.004682167433202267, -0.041533488780260086, 0.003113081445917487, -0.006461622193455696, -0.005423285067081451, -0.013293803669512272, -0.0022735337261110544, -0.0097426138818264, 0.006619881838560104, 0.01495359931141138, -0.004740067292004824, 0.009657694026827812, -0.012699365615844727, 0.043695081025362015, 0.016057556495070457, -0.02666480652987957, 0.004091588780283928, 0.027838245034217834, 0.005079746246337891, 0.021847540512681007, 0.02714344672858715, 0.005002546589821577, 0.008036497980356216, -0.006488642189651728, -0.0006185633246786892, -0.03325767070055008, -0.007442059926688671, 0.005747524555772543, 0.002532153157517314, -0.0155171575024724, 0.008468816988170147, 0.010862010531127453, -0.0018952548271045089, 0.014397760853171349, -0.008260377682745457, 0.002124924212694168, 0.01553259789943695, 0.015046238899230957, -0.012460046447813511, 0.021538741886615753, 0.029166080057621002, 0.010630411095917225, -0.00676270155236125, 0.0023488036822527647, 0.0012834465596824884, -0.0069055212661623955, -0.01331696379929781, 0.007982457987964153, -0.004809546750038862, 0.010128612630069256, 0.006654622033238411, 0.019562426954507828, 0.0033176608849316835, 0.01080797053873539, -0.0020863243844360113, 0.016520755365490913, 0.0008974475786089897, 0.02485833317041397, 0.004913766402751207, 0.01939258724451065, -0.000546188501175493, -0.013486803509294987, 0.01630459539592266, -0.01202772743999958, -0.02042706497013569, -0.006797441281378269, 0.004296168219298124, -0.015802796930074692, 0.0002815379702951759, 0.03183719515800476, -0.026711126789450645, 0.0035029405262321234, -0.003647690173238516, -0.03566630184650421, -0.013564002700150013, 0.010329332202672958, -0.014853239990770817, 0.015254678204655647, 0.005129925906658173, 0.006094923242926598, 0.02087482251226902, -0.005407845135778189, -0.01588771678507328, 0.002812002319842577, 0.024240734055638313, 0.02161594107747078, 0.005037286318838596, 0.001696465420536697, -0.0011985267046838999, -0.01167260855436325, 0.03554278239607811, 0.020566023886203766, -0.035944223403930664, -0.005662604700773954, -0.00929485447704792, 0.017230993136763573, 0.006241602823138237, 0.0029818417970091105, -0.015162038616836071, -0.0005621109739877284, 0.00030976414564065635, -0.017478032037615776, -0.011062730103731155, -0.02675744704902172, 0.0010981670347973704, -0.005986843723803759, -0.000263203022768721, 0.0004590975004248321, 0.011000970378518105, 0.0019801745656877756, 0.023731214925646782, 0.009680853225290775, -0.003755769692361355, -0.007025180850178003, 0.011271169409155846, 0.0115799680352211, -0.003917889203876257, 0.0194852277636528, 0.012097206898033619, 0.001347136334516108, 0.02280481718480587, 0.014536720700562, 0.011518208310008049, 0.010684451088309288, 0.00704448064789176, -0.006469342391937971, -0.0017109403852373362, -0.002740592462942004, 0.023067297413945198, -0.010954650118947029, 0.020241785794496536, -0.004693747032433748, -0.008183177560567856, -0.0008950350456871092, 0.005627864506095648, 0.010105452500283718, 0.003890869440510869, -0.0025958430487662554, 0.0010885170195251703, -0.005037286318838596, 0.012452325783669949, 0.016443556174635887, -0.02209457941353321, 0.01968594640493393, 0.018311789259314537, -0.009819813072681427, 0.021940181031823158, -0.008414776995778084, 0.006569702178239822, 0.027961764484643936, -0.0011309769470244646, 0.0004979386576451361, 0.004612687509506941, -0.004952366463840008, -0.02524433098733425, 0.007434339728206396, -0.005122206173837185, -0.00889341626316309, 0.023144496604800224, 0.015463117510080338, 0.005654884502291679, -0.0003852751979138702, -0.00045234253047965467, -0.020720424130558968, 0.0047439271584153175, -0.0023507336154580116, -0.0005746559472754598, -0.0012709015281870961, 0.001462936052121222, -0.008538296446204185, 0.013448202982544899, 0.03406054899096489, -0.013803322799503803, 0.006411442533135414, 0.013486803509294987, -0.0025418030563741922, -0.0026460227090865374, 0.00314782140776515, -0.013185723684728146, -0.023360656574368477, 0.003755769692361355, -0.0035106604918837547, -0.014428640715777874, 0.00415720883756876, 0.0021654542069882154, 0.014845519326627254, 0.014567600563168526, 0.013486803509294987, -0.014019481837749481, 0.0025958430487662554, 0.0022349338978528976, 0.0042845881544053555, 0.0025611030869185925, 0.010066852904856205, -0.01591859757900238, -0.013332403264939785, 0.0048520066775381565, 0.0009326699655503035, -0.002184754004701972, 0.02200194075703621, 0.0035685603506863117, -0.000999737298116088, 0.007148700766265392, -0.014860959723591805, 0.018774988129734993, 0.0010431621922180057, 0.030015278607606888, -0.009750333614647388, -0.012599005363881588, -0.0023295036517083645, -0.007712258957326412, 0.02001018635928631, -0.012560405768454075, 0.02167770080268383, -0.01811107061803341, -0.02820880338549614, 0.003531890455633402, -0.0012564265634864569, 0.01222072634845972, 0.015717877075076103, 0.007113960571587086, 0.022233540192246437, -0.011911927722394466, 0.005689624696969986, -0.007333979941904545, -0.010491451248526573, -0.00601386371999979, -0.012730245478451252, 0.004539347719401121, -0.003186421236023307, -0.0025051331613212824, -0.015339598059654236, -0.014922719448804855, -0.003998949192464352, 0.009827532805502415, 0.005126066040247679, 0.00829897727817297, -0.002346873516216874, 0.009541894309222698, -0.00198596459813416, -0.022943777963519096, 0.003786649787798524, -0.014613919891417027, 0.006816741544753313, -0.008283537812530994, 0.011309769004583359, -0.001969559583812952, 0.01621195673942566, -0.00850741658359766, 0.010877449996769428, -0.00734170014038682, 0.027390485629439354, -0.01618107594549656, -0.03239303082227707, -0.005037286318838596, -0.00747679965570569, 0.008183177560567856, -0.004269148223102093, -0.02200194075703621, 0.0075308396480977535, -0.013247484341263771, 0.02618616819381714, -0.01707659289240837, -0.0002258093882119283, 0.004103168845176697, -0.003624530043452978, -0.009611373767256737, 0.011502768844366074, -0.010514611378312111, 0.0005775509052909911, 0.004238268360495567, 0.013471363112330437, -0.026834646239876747, -0.008306697010993958, -0.005407845135778189, 0.010622691363096237, 0.013201164081692696, 0.004099308978766203, -0.0070715006440877914, 0.0012303716503083706, -0.009549614042043686, -0.001335556386038661, 0.007920698262751102, -0.012251606211066246, -0.004493027925491333, -0.00404526898637414, 0.005465744994580746, -0.005994563456624746, -0.005102905910462141, 0.004844286944717169, -0.030987994745373726, 0.004076148848980665, -0.004728487227112055, -0.030833596363663673, -0.019253628328442574, -0.01615019515156746, 0.020380744710564613, -0.001858584932051599, -0.01560207735747099, 0.014529000036418438, 0.011062730103731155, -0.010530051775276661, -0.008337576873600483, 0.014976759441196918, 0.008854815736413002, -0.007056060712784529, 0.022789377719163895, -0.02749856561422348, -0.014274241402745247, -0.009580493904650211, -0.007133260369300842, -0.014266520738601685, -0.03971157222986221, -0.004427407868206501, 0.007002020720392466, 0.015416798181831837, -0.037488218396902084, -1.3117933121975511e-05, -0.0018113000551238656, 0.00046151000424288213, 0.00619914336130023, 0.004651287570595741, -0.0016935704043135047, -0.0036438300739973783, -0.009480134584009647, 0.001353891333565116, -0.008831655606627464, 0.0032346711959689856, 0.010537771508097649, -0.001848934916779399, -0.001381876296363771, -0.018605150282382965, -0.014575320295989513, -0.03151295334100723, -0.003286781022325158, -0.00648092245683074, 0.0037075199652463198, 0.0026537426747381687, -0.012807445600628853, 0.014837799593806267, 0.002997281728312373, -0.021693140268325806, 0.0016636555083096027, 0.01022897195070982, -0.010970090515911579, -0.0033697709441184998, -0.017184672877192497, -0.00247232336550951, -0.02138434164226055, 0.03458550572395325, -0.005724364425987005, -0.015810517594218254, 0.003858059411868453, 0.021878421306610107, 0.009271694347262383, -0.01159540843218565, -0.007665939163416624, -0.013903682120144367, -0.012483205646276474, 0.0061644031666219234, -0.009356614202260971, 0.007716118823736906, -0.007403459865599871, 0.012406006455421448, 0.008414776995778084, -0.008901135995984077, -0.001266076578758657, 0.008067377842962742, 0.0067897215485572815, 0.022974656894803047, -0.025012731552124023, 0.016582515090703964, -0.003495220560580492, -0.0013741562142968178, -0.02675744704902172, -0.010576371103525162, 0.001520835910923779, 0.013679802417755127, -0.02078218385577202, 0.012622165493667126, 0.007677519228309393, -0.014760599471628666, -0.007210460491478443, -0.03409142792224884, -0.0025070630945265293, 0.022310739383101463, -0.013178003951907158, -0.002451093401759863, -0.004164928570389748, 0.012761125341057777, -0.010468291118741035, 0.022912897169589996, 0.02945943921804428, 0.035357505083084106, 0.02981455810368061, -0.010777090676128864, -5.786968540633097e-05, 0.0033176608849316835, 0.008491977117955685, -0.01195052731782198, -0.008569176308810711, 0.005569964647293091, 0.027452245354652405, 0.018605150282382965, -0.008831655606627464, -0.010738491080701351, -0.018219150602817535, -0.0194852277636528, -0.01811107061803341, -0.0029432419687509537, -0.002844812348484993, -0.0031323814764618874, 0.03046303801238537, -0.008576896972954273, 0.003416090738028288, -0.03325767070055008, 0.006388282403349876, -0.023530496284365654, -0.009866133332252502, 0.026680247858166695, 0.013633483089506626, 0.03501782566308975, 0.012514085508883, -0.010267572477459908, -0.00035994400968775153, -0.007797178812325001, 0.0039120991714298725, 0.036716219037771225, 0.01223616674542427, 0.015061679296195507, -0.01701483316719532, 0.0013645063154399395, -0.006299502681940794, -0.0020342145580798388, -0.002045794390141964, 0.03245479241013527, 0.008546017110347748, 0.005531365051865578, 0.017354512587189674, -0.013054484501481056, 0.02138434164226055, 0.02164682187139988, 0.0086540961638093, 0.005658744368702173, 0.014451800845563412, -0.01804931089282036, 0.0038773594424128532, 0.0019541196525096893, 0.005979123525321484, 0.007828058674931526, -0.013625763356685638, -0.0024800433311611414, 0.005743664223700762, 0.0023314335849136114, 0.0002634442935232073, 0.006851481273770332, -0.0006605407106690109, -0.019948426634073257, 0.00587876420468092, -0.0022040540352463722, 0.0003109704121015966, -0.011881047859787941, 0.0012091416865587234, 0.016860434785485268, 0.010699890553951263, 0.003948769066482782, 0.01588771678507328, -0.01749347150325775, 0.0002090425550704822, 0.01109360996633768, 0.005797704216092825, 0.01354084350168705, -0.014830079860985279, 0.001997544663026929, -0.012807445600628853, 0.0012689715949818492, 0.0024472333025187254, 0.007256780285388231, 0.01656707562506199, -0.004790246952325106, 0.007831919007003307, -0.014590760692954063, -0.0042923083528876305, 0.007777879014611244, 0.019794026389718056, 0.014868679456412792, 0.017771391198039055, -0.013950002379715443, 0.03551190346479416, 0.0021326441783457994, 0.002788842422887683, 0.014490400440990925, -0.014444081112742424, 0.0008559526759199798, 0.02200194075703621, 0.0026788327377289534, 0.0039198193699121475, 0.002150014042854309, -0.009827532805502415, 0.0041186087764799595, -0.0027598924934864044, -0.01432828139513731, 0.011232569813728333, -0.0018334949854761362, -0.002671112772077322, -0.010985529981553555, 0.017647871747612953, -0.0011753668077290058, 0.01561751775443554, 0.008808496408164501, 0.022218098863959312, -0.0005071061314083636, 0.003964208997786045, -0.029119761660695076, 0.032825350761413574, 3.232741073588841e-05, 0.00048249869723804295, -0.01868234947323799, -0.006399862468242645, -0.005801564082503319, -0.014382320456206799, 0.013509963639080524, -0.006550402380526066, 0.0051492261700332165, -0.0007748929201625288, 0.009920173324644566, -0.014413200318813324, -0.013286083936691284, -0.004755507223308086, 0.023206256330013275, 0.004987106658518314, 0.0026286528445780277, -0.01814195141196251, 0.009881572797894478, 0.0023295036517083645, 0.004547067452222109, -0.014034922234714031, -0.027313286438584328, -0.006419162731617689, -0.015586637891829014, -0.01109360996633768, 0.0013635412324219942, 0.017354512587189674, -0.010916050523519516, 0.011124489828944206, -0.006365122739225626, 0.004589527379721403, 0.005442585330456495, 0.010970090515911579, 0.005913503933697939, -0.019546987488865852, -0.005982983857393265, -0.004782526753842831, -0.010630411095917225, 0.007770158816128969, 0.01358716282993555, 0.011911927722394466, -0.006037023384124041, -0.0038040196523070335, -0.019469786435365677, 0.011541368439793587, -0.027050806209445, -0.013548563234508038, -0.0015372408088296652, -0.02200194075703621, 0.008368457667529583, -0.007411180064082146, -0.005048866383731365, -0.02627880871295929, 0.0021461541764438152, -0.020890263840556145, -0.008592336438596249, 0.029289599508047104, 0.021446101367473602, 0.006708661559969187, -0.015177479013800621, 0.016428114846348763, -0.022465139627456665, 0.009781213477253914, 0.0011000969680026174, -0.0030860616825520992, -0.015903156250715256, 0.012189846485853195, -0.016134755685925484, 0.0018180550541728735, 0.019346266984939575, 0.008885695599019527, 0.0011637868592515588, -0.006519522052258253, 0.006589001975953579, 0.000839065236505121, -0.025074491277337074, 0.014860959723591805, -0.01117852982133627, -0.0232216976583004, 0.013178003951907158, -0.007557859644293785, 0.01926906779408455, -0.010213532485067844, 0.00352224032394588, 0.013262923806905746, -0.008468816988170147, -0.003319591050967574, -0.007241340354084969, -0.005095186177641153, -0.008422496728599072, 0.026958167552947998, 2.7442112696007825e-05, 0.03717941790819168, -0.054533932358026505, 0.008136858232319355, -0.011695767752826214, 0.008569176308810711, 0.00866953656077385, -0.010939210653305054, 0.018898509442806244, -0.00451232772320509, 0.0034527606330811977, 0.007168000563979149, -0.013772442936897278, -0.0053152055479586124, 0.00950329378247261, -0.019083788618445396, -0.019608747214078903, 0.008013337850570679, -0.021276261657476425, -0.021801220253109932, -0.017354512587189674, -0.011703488416969776, -0.005129925906658173, 0.003533820388838649, -0.012375126592814922, 0.01294640451669693, 0.0016762004233896732, 0.006959561258554459, -0.02482745237648487, 0.007912978529930115, -0.002906572073698044, -0.03020055778324604, -0.0014021411770954728, -0.019994745030999184, -0.027035366743803024, 0.02640232816338539, 0.005894204135984182, -0.00988929346203804, -0.011085890233516693, -0.014366880990564823, -0.007496099453419447, 0.02019546553492546, 0.01116308942437172, 0.013533122837543488, 0.0071950205601751804, 0.010753930546343327, 0.02859480306506157, 0.006307222880423069, -0.006121943239122629, -0.006465482525527477, -0.0024472333025187254, -0.02286657691001892, 0.010784810408949852, -0.011587688699364662, -0.001904904842376709, -0.015810517594218254, -0.017478032037615776, 0.00163856556173414, 0.01495359931141138, -0.012128086760640144, -0.022403379902243614, -0.002302483655512333, -0.02164682187139988, 0.01749347150325775, 0.006527242250740528, 0.013973161578178406, 0.0019936845637857914, -0.004639707505702972, 0.010360212065279484, 0.01410440169274807, 0.0011647518258541822, -0.021137302741408348, 0.01804931089282036, -0.019577866420149803, 0.018636029213666916, 0.010120892897248268, -0.037395577877759933, -0.018774988129734993, -0.010900610126554966, 0.0019599096849560738, 0.003169051371514797, 0.01331696379929781, -0.02087482251226902, 0.015378198586404324, 0.008244937285780907, -0.0007647604215890169, 0.0017968250904232264, 0.010406531393527985, -0.011749807745218277, -0.015077118761837482, -0.0037248898297548294, -0.01656707562506199, -0.0050836061127483845, -0.0035376804880797863, 0.021106421947479248, -0.0003478815488051623, 0.003738399827852845, 0.025290651246905327, 0.001122291898354888, 0.031219594180583954, -0.00683604134246707, -0.01579507626593113, 0.005365385208278894, 0.013448202982544899, 0.004145628772675991, 0.0016057556495070457, 0.00354154035449028, -0.005353805609047413, -0.005720504559576511, -0.014243361540138721, 0.006399862468242645, -0.01736995205283165, 0.004662867169827223, -0.005569964647293091, 0.005122206173837185, -0.026294248178601265, 0.010283011943101883, -0.012074046768248081, -0.014637080021202564, 0.032763589173555374, -0.010090012103319168, -0.0032501111272722483, 3.0156168577377684e-05, 0.009070975705981255, 0.0024356534704566, -0.010491451248526573, -0.02868744172155857, -0.003956489264965057, 0.01977858692407608, -0.003917889203876257, 0.010090012103319168, 0.0211990624666214, 0.011410129256546497, 0.016783233731985092, -0.013702962547540665, -0.015077118761837482, 0.0037248898297548294, 0.00837617740035057, 0.0036168100778013468, 0.03548102453351021, 0.012043166905641556, -0.024503212422132492, 0.010923770256340504, -0.020442504435777664, 0.04014389216899872, 0.02292833849787712, -0.0038812195416539907, -0.0053152055479586124, -0.011927367188036442, 0.0027463824953883886, -0.01144872885197401, -0.0019319247221574187, 0.01849707029759884, -0.006299502681940794, 0.003078341716900468, 0.01621195673942566, 0.014567600563168526, -0.007650499232113361, 0.0029567519668489695, 0.02431793324649334, 0.009750333614647388, 0.024518653750419617, 0.0023507336154580116, -0.006280202884227037, 0.02042706497013569, -0.01669059507548809, 0.019871225580573082, 0.00887797586619854, 0.008021058514714241, 0.016783233731985092, -0.011749807745218277, 0.005689624696969986, 0.007820338942110538, 0.005569964647293091, -0.016042117029428482, -0.01939258724451065, -0.0028409522492438555, -0.0004540312511380762, 0.009696293622255325, 0.018991148099303246, 0.012413726188242435, -0.006758841685950756, -0.005415565334260464, 0.004666727501899004, -0.019871225580573082, -0.002952891867607832, 0.01811107061803341, -0.008754456415772438, -0.004929206799715757, -0.016814114525914192, -0.0052071260288357735, 0.0033060810528695583, 0.002244583796709776, 0.003169051371514797, -0.005276605486869812, 0.0001483683445258066, 0.007426619995385408, 0.0015179408947005868, -0.007851218804717064, -0.015432237647473812, -0.0020187743939459324, -0.009341174736618996, 0.009997372515499592, 0.008970615454018116, 0.017709631472826004, -0.011834727600216866, 0.016906753182411194, -0.02161594107747078, -0.012128086760640144, -0.046752192080020905, 0.02173946052789688, 0.0008014303166419268, -0.02740592509508133, -0.013980882242321968, -0.01022897195070982, 0.010483731515705585, -0.0020303544588387012, -0.0014986408641561866, -0.018713228404521942, 0.0050913263112306595, 0.008800775744020939, 0.002750242594629526, -0.016381794586777687, 5.361766670830548e-05, -0.005569964647293091, -0.001395386178046465, 0.012853764928877354, -0.007974738255143166, 0.008561456575989723, -0.003321520984172821, -0.01897570863366127, 0.004666727501899004, -0.007951578125357628, -0.03625302016735077, -3.1694133213022724e-05, 0.00035656653926707804, 0.0056433044373989105, 0.007140980567783117, -0.018311789259314537, -0.00846109725534916, 0.007766298949718475, 0.024657612666487694, -0.0068399012088775635, 0.0115799680352211, 0.029351359233260155, -0.004049128852784634, 0.00931029487401247, 0.014266520738601685, 0.007936138659715652, -0.02820880338549614, 0.001960874767974019, -0.002321783686056733, 0.010931489989161491, 0.0023256437852978706, 0.0013413463020697236, 0.009858413599431515, -0.002756032394245267, 7.333979738177732e-05, -0.0008559526759199798, -0.011927367188036442, -0.024209853261709213, -0.0044081080704927444, -0.010669010691344738, 0.01389596238732338, -0.0006185633246786892, 0.012313366867601871, -0.015594357624650002, -0.002559172920882702, 0.014583040028810501, -0.0049176267348229885, -0.025321530178189278, 0.005156945902854204, -0.012552686035633087, -0.001789105124771595, -0.013409603387117386, 0.002568823052570224, 0.01704571396112442, -0.015439958311617374, -0.005072026047855616, 0.01811107061803341, 0.018250029534101486, 0.0068978010676801205, -0.013556282967329025, -0.0033292409498244524, 0.01894482783973217, 0.02177034132182598, -0.02820880338549614, 0.019917545840144157, -0.01002053264528513, -0.0015700507210567594, -0.002032284392043948, -0.014127561822533607, 0.021137302741408348, -0.00895517598837614, -0.009981933049857616, -0.01769419200718403, -0.02621704898774624, 0.013517683371901512, 0.019022028893232346, -0.017894910648465157, 0.011471888981759548, -0.0011097469832748175, 0.003995089326053858, 0.009912452660501003, -0.03067919611930847, -0.001052812091074884, 0.01817283034324646, -0.007202740292996168, 0.015478557907044888, -0.006631461903452873, -0.0038271795492619276, 0.009348894469439983, 0.04922258481383324, 0.0054194252006709576, 0.010483731515705585, -0.03189895302057266, 0.004288448486477137, -0.02524433098733425, 0.007187300361692905, 0.006145103368908167, -6.034249236108735e-05, 0.017138352617621422, -0.0008033603080548346, -0.003657340072095394, 0.009125014767050743, 0.019932985305786133, -0.010236691683530807, -0.00309185148216784, 0.002418283373117447, 0.005662604700773954, -0.006639182101935148, 0.011379249393939972, 0.005840164143592119, 0.004697607364505529, -0.009534173645079136, -0.01965506561100483, 0.0014957459643483162, 0.001552680740132928, 0.015123439021408558, -0.006249323021620512, 0.007133260369300842, -0.0027000627014786005, 0.02746768482029438, -0.0005548734916374087, -0.03297974914312363, 0.009927893057465553, 0.01579507626593113, 0.011780687607824802, 0.002929731970652938, 0.005982983857393265, 0.00490604666993022, -0.009734893217682838, -0.0041842288337647915, -0.01022897195070982, -0.009734893217682838, 0.023206256330013275, -0.03242391347885132, -0.0003891351807396859, 0.019176427274942398, -0.0009191600256599486, -0.006882361136376858, 0.029768239706754684, 0.013262923806905746, -0.0020631644874811172, -0.03378262743353844, -0.0023430136498063803, -0.011904207989573479, 0.013757002539932728, 0.009588213637471199, -0.00211527431383729, -0.012830604799091816, 0.025136251002550125, -0.0068399012088775635, -0.019886665046215057, 0.0050257062539458275, 0.02209457941353321, -0.016489874571561813, 0.025815609842538834, 0.0024086334742605686, 0.009318014606833458, 0.006994300987571478, 0.016644274815917015, 0.014999919570982456, 0.0010035972809419036, 0.016088435426354408, -0.025584010407328606, -0.005809284280985594, -0.03418406844139099, -0.028934480622410774, -0.0016482154605910182, -0.01022897195070982, -0.009271694347262383, -0.006357402540743351, 0.015802796930074692, 0.019516106694936752, -0.006141243502497673, -0.011101329699158669, -0.017864031717181206, -0.0028255123179405928, -0.003392930841073394, 0.020704982802271843, -0.0009095100103877485, -0.01239828672260046, -0.0043502082116901875, -0.00038020897773094475, 0.024981852620840073, 0.0005698309396393597, 0.010398811660706997, -0.010908329859375954, -0.006882361136376858, 0.0001692364166956395, -0.01103185024112463, -0.00018962199101224542, 0.016875874251127243, -0.001916484790854156, 0.0034296007361263037, -0.002692342735826969, -0.00981209333986044, -0.027297845110297203, -0.029706479981541634, -0.0017553302459418774, 0.006998160853981972, -0.007210460491478443, 0.01968594640493393, 0.016072995960712433, 0.0027425226289778948, -0.0032713410910218954, 0.021693140268325806, 0.02447233349084854, 0.026958167552947998, 0.007750859018415213, -0.0016771653899922967, -0.010746210813522339, -0.008793056011199951, 0.01238284632563591, -0.00028901672339998186, -0.01900658756494522, 0.0016839203890413046, -0.006349682807922363, 0.01468340028077364, -0.014397760853171349, 0.018358109518885612, -0.010105452500283718, -0.009109575301408768, -0.014096681959927082, 0.03551190346479416, 0.004809546750038862, 0.007936138659715652, -0.006866921205073595, 0.010028252378106117, 0.005612424574792385, -0.0021905440371483564, -0.02785368449985981, 0.026294248178601265, 0.01466795988380909, -0.014567600563168526, -0.0013413463020697236, 0.0032327412627637386, -0.020890263840556145, 0.005106766242533922, 0.027606645599007607, -5.871406028745696e-05, 0.002974121831357479, -0.017447153106331825, -0.01144872885197401, 0.0173390731215477, -0.010784810408949852, 0.004643567372113466, -0.0213225819170475, 0.022619538009166718, -0.026356007903814316, 0.016474435105919838, 0.023206256330013275, 0.017709631472826004, 0.015810517594218254, -0.0015478557907044888, 0.02743680588901043, 0.0007010705885477364, -0.012151246890425682, 0.009487854316830635, -0.03233127295970917, 0.009202214889228344, -0.0087312962859869, -0.010337051935493946, 0.0003621152718551457, -0.015964915975928307, 0.010838850401341915, 0.010777090676128864, -0.00815229769796133, 0.0016308455960825086, -0.013618042692542076, -0.003450830699875951, 0.010607250966131687, 0.022557778283953667, 0.023947374895215034, -0.0041842288337647915, 0.004195808432996273, 0.01468340028077364, -0.029860878363251686, 0.023561375215649605, -0.008986055850982666, 0.007569439243525267, -0.002674972638487816, -0.0020882543176412582, -0.005183965899050236, 0.004149488639086485, -0.009001495316624641, 0.01740083284676075, -0.0052071260288357735, -0.02461129240691662, -0.03230039030313492, -0.0010267571778967977, 0.0035685603506863117, 0.00694798119366169, 0.0005341260693967342, 0.00809053797274828], "5fc110a9-5b33-4c68-a179-5896b8fc210a": [-0.014369651675224304, 0.023982226848602295, 0.01076903659850359, 0.012294582091271877, -0.016174059361219406, -0.0372692346572876, 0.018486982211470604, 0.052951183170080185, -0.019126728177070618, 0.02885412983596325, -0.02642638050019741, 0.007238138001412153, -0.01267186738550663, -0.01856900192797184, -0.018355753272771835, 0.0160510316491127, -0.015362076461315155, 0.0048390948213636875, 0.013385429047048092, -0.06036565825343132, 0.06325270980596542, -0.01742074266076088, -0.05829879269003868, 0.010949477553367615, -0.0064302547834813595, 0.012319187633693218, -0.030871786177158356, 0.01983208768069744, -0.018536195158958435, -0.023096425458788872, 0.0313802994787693, 0.002655350835993886, 0.031790394335985184, 0.005975051783025265, 0.0005454234196804464, -0.037236426025629044, 0.02498285286128521, 0.004707865417003632, -0.01043276023119688, -0.025392945855855942, -0.024654779583215714, 0.02079990692436695, 0.005540353711694479, 0.006278520449995995, -0.030592922121286392, -0.00038830662379041314, 0.0202585831284523, 0.00208224612288177, 0.009793016128242016, 0.024113455787301064, 0.00413578562438488, -0.03605535998940468, 0.011121716350317001, -0.021193595603108406, 0.008972830139100552, -0.026459187269210815, 0.032266102731227875, 0.014492679387331009, -0.012516031973063946, -0.04579916223883629, -0.011630231514573097, -0.023178445175290108, 0.023785382509231567, -0.028837725520133972, 0.03677712008357048, 0.020422620698809624, -0.009604373015463352, 0.017387934029102325, -0.024326704442501068, 0.04150139167904854, 0.032397329807281494, 0.03461183235049248, -0.04780041426420212, 0.00840690266340971, 0.022489488124847412, 0.012450417503714561, 0.008292076177895069, 0.0063236309215426445, 0.010317934677004814, -0.022899581119418144, 0.023933015763759613, -0.02371976710855961, 0.04271526634693146, 0.027000509202480316, 0.09960334002971649, 0.018913479521870613, -0.03658027574419975, -0.09455099701881409, -0.03736765682697296, -0.03389006853103638, 0.016329895704984665, -0.008751380257308483, -0.02946106716990471, -0.024786008521914482, 0.022358259186148643, -0.0006202653748914599, 0.009924245998263359, 0.001813635346479714, 0.0056305741891264915, -0.027262968942523003, -0.017502760514616966, 0.010933074168860912, -0.020947540178894997, -0.02732858434319496, 0.0012118242448195815, -0.030510904267430305, 0.012073132209479809, 0.008726774714887142, -0.004232157487422228, 0.007287349086254835, 0.013155777007341385, -0.0032725404016673565, -0.025442156940698624, 0.012819500640034676, -0.019192343577742577, 0.00894822459667921, -0.02631155401468277, -0.010572192259132862, 0.005745400208979845, -0.03385725989937782, 0.016133051365613937, -0.049145519733428955, 0.0018167110392823815, 0.006052969489246607, -0.02788631059229374, 0.023572133854031563, 0.012737481854856014, 0.04494617134332657, 0.005396821070462465, 0.0014055930078029633, 0.001717263599857688, -0.00928450096398592, 0.007053595967590809, 0.05121238902211189, 0.03187241032719612, 0.017158282920718193, 0.0202585831284523, 0.04832533374428749, -0.009374720975756645, 0.017568375915288925, -0.06446658819913864, -0.03047809563577175, 0.0007653356879018247, 0.041763849556446075, -0.01445987168699503, 0.018847864121198654, 0.01052298117429018, -0.010957679711282253, -0.009259895421564579, 0.030018793419003487, -0.09054848551750183, -0.03471025452017784, -0.0189954973757267, 0.0040681203827261925, 0.052655912935733795, -0.03933610022068024, 0.006602494046092033, 0.003754399484023452, 0.0010324085596948862, 0.006897761020809412, 0.02680366486310959, -0.00953055638819933, 0.012835904024541378, 0.03963136672973633, 0.026836471632122993, 0.014304036274552345, 0.05465716868638992, -0.001614740351215005, -0.04904709756374359, 0.051573269069194794, 0.00649997079744935, -0.007385771255940199, 0.028624476864933968, 0.006376943085342646, -0.0613170750439167, 0.00092270877212286, 0.04471651837229729, 0.03641624003648758, -0.00649997079744935, 0.013615081086754799, -0.00524918781593442, 0.03936890885233879, 0.005208178423345089, -0.008775985799729824, -0.0037010875530540943, 0.00839459989219904, 0.025196101516485214, 0.0297563336789608, 0.05541173741221428, -0.01140057947486639, -0.006274419836699963, -0.030576517805457115, -0.0004698125703725964, -0.008595544844865799, 0.018437771126627922, 0.001660875859670341, -0.0037318444810807705, 0.010506577789783478, 0.0024133960250765085, -0.004650452174246311, -0.011851681396365166, -0.03484148532152176, -0.00013955970644019544, 0.034021299332380295, -0.016666170209646225, 0.03769572824239731, -0.014730533584952354, -0.015854187309741974, -0.01040815468877554, -0.027262968942523003, 0.024523548781871796, -0.012081333436071873, -0.015214442275464535, -0.009866832755506039, 0.02057025395333767, 0.018831461668014526, -0.029346240684390068, 0.009899640455842018, -0.005191774573177099, -0.02019296959042549, -0.005569060333073139, 0.021259211003780365, 0.012770289555191994, -0.0376301147043705, -0.04100928083062172, -0.030576517805457115, -0.018421368673443794, 0.015075011178851128, 0.018667424097657204, 0.0012723129475489259, 0.006520475260913372, -0.0035021924413740635, 0.01958603225648403, -0.024359511211514473, -0.02370336279273033, 0.021127980202436447, 0.04137016087770462, -0.020832713693380356, -0.030822575092315674, 0.022833967581391335, 0.0029301131144165993, 0.0009878110140562057, -0.019438399001955986, -0.00796810258179903, 0.01055578887462616, 0.02732858434319496, -0.032151274383068085, 0.043404221534729004, 0.020767098292708397, 0.005950446240603924, -0.007590817753225565, -0.003106452990323305, -0.002958819502964616, 0.011441589333117008, -0.039828211069107056, 0.019979720935225487, -0.0020535397343337536, -0.007443184033036232, 0.004535626154392958, -0.01874944195151329, -0.028329210355877876, 0.031593549996614456, -0.009752006269991398, 0.055674199014902115, 0.031413108110427856, -0.026278745383024216, 0.026262342929840088, 0.008218259550631046, 0.020881924778223038, 0.001415845355950296, 0.015165231190621853, 0.01753556728363037, 0.01748635619878769, 0.01615765690803528, 0.003809761954471469, -0.025655405595898628, 0.020242180675268173, 0.008226461708545685, -0.0031597649212926626, -0.022227030247449875, -0.016354501247406006, -0.0186346173286438, 0.03713800385594368, 0.03042888455092907, 0.00892361905425787, 0.0003457595012150705, -0.016395509243011475, -0.040976472198963165, -0.01112991850823164, -0.025015659630298615, 0.0012056728592142463, 0.007902488112449646, 7.195847138063982e-05, 0.03005160018801689, -0.012163352221250534, 0.00651637464761734, 0.02946106716990471, -0.03385725989937782, -0.0330042690038681, 0.00774255208671093, 0.0038118124939501286, 0.012721078470349312, -0.019946914166212082, 0.004010707605630159, 0.027197353541851044, 0.010047273710370064, 0.06374482065439224, 0.03966417536139488, -0.003696986474096775, 0.03441498801112175, 0.04281368851661682, -0.039696983993053436, 0.019454801455140114, -0.03894241154193878, -0.020898329094052315, 0.020898329094052315, 0.006122685503214598, -0.010785440914332867, -0.012622656300663948, -0.027837099507451057, 0.03772853687405586, -0.0004854473518207669, -0.062268488109111786, 0.007804065942764282, 0.019996125251054764, -0.024425126612186432, 0.006983880419284105, -0.0010211310582235456, -0.009063051082193851, -0.013975962065160275, -0.009727400727570057, -0.03894241154193878, -0.021029558032751083, 0.030084406957030296, -0.015214442275464535, -0.030396077781915665, -0.03740046173334122, -0.030133618041872978, 0.03385725989937782, -0.04232157766819, -0.012926124967634678, -0.016174059361219406, 0.02057025395333767, -0.020225776359438896, 0.016133051365613937, 0.007873781956732273, 0.028230788186192513, 0.03288944065570831, -0.021751321852207184, 0.0058889323845505714, 0.0009693568572402, -0.000484934716951102, 0.010695219971239567, 0.03520236536860466, -0.004236258566379547, -0.025606194511055946, -0.029772736132144928, 0.00962077733129263, 0.007205330301076174, 0.004564332775771618, -0.012417609803378582, -0.025245312601327896, 0.0008847751887515187, 0.00991604384034872, 0.010473770089447498, 0.01179426908493042, 0.011474396102130413, 0.00928450096398592, 0.004482314456254244, -0.009350115433335304, 0.009382923133671284, 0.005294297821819782, -0.012483224272727966, 0.007586716674268246, -0.050720278173685074, -0.026229534298181534, 0.010063677094876766, 0.004143987782299519, -0.0015173433348536491, 0.017617587000131607, 0.02158728428184986, -0.04429002106189728, -0.04022189974784851, 0.024162666872143745, 0.039467331022024155, -0.015099616721272469, 0.017191089689731598, -0.012507829815149307, -0.025737423449754715, -0.014222018420696259, -0.036383431404829025, -0.004061968997120857, -0.02595067210495472, -0.02412986010313034, 0.019504012539982796, -0.01868382841348648, -0.013155777007341385, -0.018224524334073067, 0.011449790559709072, -0.017617587000131607, -0.021603688597679138, -0.011170927435159683, 0.03060932643711567, -0.017256705090403557, 0.01960243470966816, -0.037597306072711945, -0.006549181882292032, -0.035235174000263214, 0.007074100896716118, 0.033479977399110794, -0.03267619386315346, 0.020176565274596214, 0.023211251944303513, 0.03206925466656685, 0.01996331661939621, 0.015386682003736496, -0.0015932105015963316, 0.03202004358172417, -0.02788631059229374, -0.008669361472129822, 0.034743063151836395, -0.0006966451182961464, 0.011720452457666397, 0.010121090337634087, -0.016264280304312706, 0.02914939634501934, -0.010317934677004814, 0.01457469817250967, 0.008899013511836529, -0.023080023005604744, -0.026721647009253502, 0.014697725884616375, 0.012712876312434673, 0.012827702797949314, 0.013959558680653572, -0.019569627940654755, 0.010342540219426155, -0.037039581686258316, 0.0430433414876461, 0.002669704146683216, -0.011679442599415779, 0.030920997262001038, 0.017568375915288925, 0.02534373477101326, -0.04353545233607292, -0.011113515123724937, -0.0232932697981596, -0.003694936167448759, 0.04451967403292656, -0.022227030247449875, 0.012688270770013332, 0.013131171464920044, -0.020701484754681587, -0.03644904866814613, -0.02485162392258644, -0.02946106716990471, -0.005724895279854536, 0.05783948674798012, -0.007886084727942944, -0.038253456354141235, 0.006877256091684103, -0.0005162042798474431, 0.025507772341370583, 0.012680069543421268, 0.00459714001044631, -0.003873326350003481, -0.014779744669795036, -0.009965254925191402, 0.0036785323172807693, 0.018372157588601112, 0.015009396709501743, 0.016674373298883438, 0.037826959043741226, 0.048423755913972855, 0.002813236555084586, -0.002296519698575139, -0.018782250583171844, 0.026524802669882774, -0.014640312641859055, 0.019307168200612068, 0.0006300050299614668, -0.011170927435159683, 0.007398074027150869, -0.019618839025497437, -0.017699604853987694, -0.0008970779599621892, -0.003315600333735347, -0.002550777280703187, 0.03569447621703148, 0.0321020632982254, 0.0014814601745456457, -0.021915359422564507, 0.011999315582215786, -0.012630858458578587, -0.03234811872243881, -0.023965822532773018, 0.010990486480295658, -0.01687941886484623, 0.01629708707332611, -0.005970951169729233, 0.017584778368473053, 0.01049837563186884, 0.017256705090403557, 0.00045033314381726086, -0.04301053285598755, 0.034447792917490005, -0.01746995374560356, 0.029493873938918114, -0.018011275678873062, 0.012630858458578587, 0.0074308812618255615, 0.027919117361307144, -0.03740046173334122, -0.007828671485185623, 0.010268723592162132, 0.022062992677092552, -0.002454405417665839, -0.0155097097158432, 0.032758213579654694, 0.0189954973757267, 0.0009760208777152002, -0.031134244054555893, -0.03477586805820465, -0.0058233174495399, -0.00832898449152708, -0.012565243057906628, 0.00023593151126988232, -0.03851591423153877, 0.014476276002824306, -0.04094366356730461, 0.0018105596536770463, 0.025901461020112038, -0.014615707099437714, 0.024786008521914482, 0.009292703121900558, 0.006319529842585325, -0.0014189210487529635, 0.03139670565724373, 0.051081158220767975, -0.004301873501390219, -0.07466969639062881, 0.03887679800391197, -0.03369322419166565, -0.033726032823324203, -0.028952552005648613, -0.001613715197890997, 0.007295550778508186, 0.0037236425559967756, -0.004117331467568874, 0.033529188483953476, -0.042419999837875366, 0.005716693587601185, 0.004437203984707594, 0.00030167450313456357, 0.004593039397150278, -0.01427122950553894, -0.003768752794712782, -0.00898103229701519, -0.02063586935400963, -0.024638375267386436, -0.01267186738550663, 0.007590817753225565, -0.007824570871889591, 0.023490116000175476, 0.016256079077720642, -0.031199859455227852, -0.028460439294576645, 0.024539953097701073, -0.028526054695248604, 0.03539920970797539, 0.03950013965368271, -0.025245312601327896, 0.03339795768260956, 0.005560858175158501, 0.01542769093066454, 0.04232157766819, -0.011179129593074322, -0.017027052119374275, -0.055378932505846024, -0.015460498631000519, 0.021095173433423042, -0.01694503426551819, -7.785355410305783e-05, 0.01387753989547491, -0.008431508205831051, -0.010908468626439571, -0.00291165872476995, -0.05045781657099724, -0.020061738789081573, -0.018044082447886467, 0.0010349716758355498, 0.04921113699674606, -0.02086552046239376, 0.0069100637920200825, -0.03766292333602905, 0.005429628770798445, 0.003145411843433976, 0.006335933692753315, 0.024425126612186432, 7.432932034134865e-05, -0.014451670460402966, 0.010547586716711521, 0.03297146037220955, -0.02558979019522667, -0.040189094841480255, 0.0008458163938485086, 0.04281368851661682, 0.015575324185192585, -0.013262401334941387, -0.011851681396365166, -0.023686960339546204, -0.010030869394540787, 0.017076263204216957, -0.011228340677917004, 0.007311954628676176, 0.006409750320017338, 0.019979720935225487, 0.016018224880099297, 0.005831519607454538, -0.00403941422700882, 0.007209431380033493, -0.002169390907511115, 0.022883178666234016, -0.02104596234858036, 0.018421368673443794, 0.03187241032719612, -0.0006095003918744624, 0.010785440914332867, -0.0002647661603987217, 0.019126728177070618, -0.013565870001912117, -0.02014375850558281, 0.003420173889026046, -0.03927048668265343, -0.009136867709457874, 0.009161473251879215, 0.0026040892116725445, 0.00620060320943594, 0.010326136834919453, -0.02390020713210106, -0.001303069875575602, 0.001986899645999074, -0.00916967447847128, 0.03635062649846077, -0.018011275678873062, -0.027230162173509598, 0.01906111277639866, -0.017798027023673058, 0.01850338652729988, -0.01642831787467003, -0.004519222769886255, -0.002729167463257909, 0.011654837056994438, 0.030018793419003487, -0.0033279031049460173, -0.025737423449754715, -0.01582138054072857, 0.009702795185148716, -0.0007668735343031585, 0.014902772381901741, 0.02601628750562668, -0.02619672752916813, 0.006143189966678619, 0.012852308340370655, 0.01203212235122919, 0.0008360766805708408, 0.025622596964240074, -0.004802186507731676, 0.020340602844953537, 0.008570939302444458, 0.03351278230547905, -0.039040833711624146, 0.00021158225717954338, -0.0039614965207874775, -0.01833934895694256, 0.007012586575001478, 0.0022698636166751385, 0.01103969756513834, 0.009875034913420677, -0.0204390250146389, -0.022817563265562057, -0.055247701704502106, -0.04084524139761925, 0.0058643268421292305, -0.009415730834007263, 0.0001704448222881183, -0.008800591342151165, -0.0009903741301968694, -0.0058889323845505714, 0.0075826155953109264, -0.016846612095832825, 0.00618419935926795, -0.010350742377340794, 0.035956937819719315, -0.0015316965291276574, -0.018946286290884018, 0.008497122675180435, -0.020471831783652306, -0.008874407969415188, -0.006934669334441423, -0.024884430691599846, -0.038253456354141235, 0.007984506897628307, -0.041337352246046066, -0.0016403711633756757, 0.017994871363043785, -0.01694503426551819, -0.01103969756513834, -0.028017539530992508, 0.0105803944170475, 0.023686960339546204, 0.0027168646920472383, 0.002669704146683216, 0.022030184045433998, -0.004387992899864912, -0.01692862994968891, -0.0008447911823168397, 0.025671808049082756, -0.009374720975756645, 0.0202585831284523, 0.013779117725789547, 0.05800352618098259, -0.02511408179998398, 0.0024072446394711733, -0.024884430691599846, -0.03325032442808151, -0.003354558954015374, -0.004982627462595701, 0.017814431339502335, 0.012434013187885284, 0.01796206459403038, -0.026344360783696175, -0.0005315828020684421, 0.002550777280703187, 0.010851055383682251, -0.04058278352022171, -0.022046588361263275, -0.018355753272771835, 0.015542516484856606, 0.007701542694121599, 0.03065853752195835, -0.012163352221250534, -0.009071252308785915, -0.03259417414665222, -0.016666170209646225, 0.02793552167713642, 0.033529188483953476, 0.014295835047960281, -0.0079804053530097, -0.03661308437585831, 0.01656774803996086, -0.010088282637298107, 0.04415879026055336, -0.0016014123102650046, 0.015140625648200512, 0.02696770243346691, 0.022833967581391335, 0.01874944195151329, 0.009120463393628597, 0.04488055408000946, -0.01573115959763527, 0.015591727569699287, -0.010670614428818226, 0.006024263333529234, 0.025245312601327896, -0.01267186738550663, 0.0009319358505308628, 0.017617587000131607, 0.012499628588557243, 0.016961438581347466, 0.03385725989937782, 0.0241954755038023, 0.01445987168699503, 0.031003015115857124, -0.017633989453315735, 0.009054848924279213, 0.021390439942479134, -0.029739929363131523, -0.020110949873924255, -0.010227714665234089, -0.005983253940939903, -0.014599303714931011, 0.021800532937049866, -0.005273793358355761, 0.0032479348592460155, -0.02230904810130596, 0.016108445823192596, 0.010399953462183475, -0.030084406957030296, 0.03170837461948395, -0.003846670500934124, 0.007758955471217632, -0.02680366486310959, 0.0030510902870446444, -0.016863016411662102, -0.017437145113945007, 0.026409976184368134, -0.002043287269771099, -0.006016061175614595, 0.0058397212997078896, 0.025491368025541306, 0.006524576339870691, 0.02860807254910469, 0.023440904915332794, 0.0310194194316864, -0.01935637928545475, -0.01665796898305416, -0.016100242733955383, -0.006225208751857281, 0.0015275956830009818, 0.011745058000087738, 0.00824696570634842, -0.025967076420783997, 0.03576008975505829, -0.01892988383769989, 0.0010026769014075398, 0.021800532937049866, 0.020849118009209633, 0.015772169455885887, -0.02189895510673523, -0.01638730801641941, -0.005765904672443867, 0.0063236309215426445, 0.0031433613039553165, 0.007242238614708185, 0.0390736423432827, 0.01327880471944809, -0.002329327166080475, 0.0227519478648901, -0.015296461060643196, 0.0014322490897029638, 0.0011390327708795667, -0.03339795768260956, 0.0023088224697858095, 0.010777238756418228, 0.006955173797905445, 0.011023294180631638, -0.010063677094876766, -0.019750069826841354, 0.011351368390023708, -0.027312180027365685, -0.042912110686302185, -0.02491723746061325, 0.019323572516441345, 0.0022452580742537975, 0.03822064772248268, 0.009464941918849945, -0.011564617045223713, 0.0447821319103241, 0.042551226913928986, 0.015804976224899292, -0.011064304038882256, 0.014320440590381622, -0.010982285253703594, -0.0037400461733341217, 0.01687941886484623, 0.029116587713360786, 0.01615765690803528, -0.03375883772969246, 0.01079364214092493, 0.02298160083591938, 0.009752006269991398, -0.03241373598575592, 0.00794349703937769, -0.011564617045223713, -0.03418533504009247, 0.017584778368473053, -0.016042830422520638, 0.0021652900613844395, -0.005995556712150574, -0.02038981392979622, -0.006987981032580137, 0.02642638050019741, 0.02563900128006935, 0.011302157305181026, 0.011720452457666397, -0.007254541385918856, 0.02007814310491085, -0.0017633989918977022, -0.026688838377594948, -0.001009853556752205, 0.029477469623088837, -0.00828387401998043, 0.033726032823324203, -0.006737824529409409, -0.01363968662917614, 0.026163920760154724, -0.0058233174495399, -0.017978468909859657, 0.0007489319541491568, -0.017322320491075516, 0.002702511614188552, 0.013262401334941387, -0.028575265780091286, 0.006122685503214598, 0.02486802637577057, -0.008189553394913673, 0.012204361148178577, -0.011925498023629189, -0.019618839025497437, 0.004601241089403629, -0.034152526408433914, -0.02696770243346691, -0.009817621670663357, 0.054296284914016724, -0.04386352375149727, 0.0209803469479084, -0.007295550778508186, 0.00491291144862771, 0.03375883772969246, -0.0055075460113584995, 0.0057371980510652065, -0.0074308812618255615, 0.021062366664409637, 0.0365474708378315, 0.010096484795212746, 0.0079804053530097, 0.0059668500907719135, 0.01996331661939621, -0.008874407969415188, 0.010998688638210297, 0.0064056492410600185, 0.0358257070183754, 0.022276241332292557, -0.0013789370423182845, -0.0077630565501749516, -0.040549974888563156, -0.003370962804183364, -0.003022383898496628, 0.03398849070072174, -0.008439709432423115, 0.023457307368516922, -0.01564093865454197, -0.008751380257308483, 0.0494735948741436, -0.018060486763715744, -0.014418862760066986, 0.010071879252791405, -0.021062366664409637, 0.008164947852492332, 0.0009339863318018615, 0.01234379317611456, 0.01330341026186943, -0.025721019133925438, 0.002204248681664467, -0.030232040211558342, 0.015353874303400517, 0.014984790235757828, -0.0076851388439536095, -0.027148142457008362, 0.01043276023119688, 0.03864714503288269, 0.0027066124603152275, 0.008940022438764572, 0.006016061175614595, 0.012688270770013332, -0.007307853549718857, 0.007689239922910929, -0.005413224920630455, -0.018240926787257195, 0.021374035626649857, -0.00962077733129263, -0.028575265780091286, 0.0030736455228179693, -0.004531525541096926, 0.00262459390796721, -0.03448060154914856, 0.011786066927015781, -0.014435266144573689, -0.017650393769145012, -0.011884489096701145, -0.0063236309215426445, 0.0202585831284523, 0.002602038672193885, -0.003914335742592812, 0.007316055241972208, -0.03047809563577175, -0.004703764338046312, -0.046717770397663116, -0.025606194511055946, 0.011966507881879807, -0.03418533504009247, 0.016174059361219406, 0.0027558235451579094, 0.029231414198875427, -0.029953178018331528, -0.015804976224899292, 0.021800532937049866, -0.002640997525304556, -0.01712547428905964, 0.02055385150015354, 0.0037646519485861063, -0.0014722330961376429, -0.03490709885954857, -0.005876629613339901, -0.03772853687405586, 0.004769379273056984, -0.009063051082193851, -0.0009908867068588734, -0.030133618041872978, -0.005286096129566431, -0.022210625931620598, -0.008874407969415188, 0.03182319924235344, 0.014500881545245647, 0.024933641776442528, 0.023867400363087654, -0.01566554419696331, -0.004547928925603628, 0.018913479521870613, -0.01766679808497429, -0.011408781632781029, 0.007644129451364279, -0.017978468909859657, -0.02268633246421814, 0.019274361431598663, 0.010121090337634087, -0.033529188483953476, 0.013401832431554794, 0.0408780500292778, -0.004404396750032902, -0.012269976548850536, -0.015157029964029789, -0.05032658949494362, -0.0037482480984181166, 0.013024547137320042, 0.00040086571243591607, -0.0004846784286201, 0.02239106595516205, -0.0022862672340124846, -0.03963136672973633, -0.026213131844997406, 0.0154194887727499, -0.020767098292708397, 0.010892064310610294, 0.0006407700129784644, -0.008128039538860321, -0.06528677046298981, -0.01457469817250967, -0.003440678585320711, 0.02311282977461815, -0.013434640131890774, -0.0354648232460022, 0.02455635741353035, -0.005441931542009115, -0.03164276108145714, -0.0035965137649327517, 0.002362134400755167, -0.011679442599415779, 0.013688897714018822, -0.008439709432423115, -0.009391125291585922, 0.01593620516359806, -0.00295471865683794, -0.02782069519162178, -0.01103969756513834, -0.00027963201864622533, -0.015271855518221855, 0.007406275719404221, 0.00827157124876976, -0.005126160103827715, -0.029001763090491295, 0.017322320491075516, -0.01143338717520237, -0.007750753778964281, -0.008472517132759094, -0.015747563913464546, 0.012376600876450539, -0.002583584515377879, -0.017683200538158417, 0.006368740927428007, 0.006598392967134714, 0.0044249012134969234, -0.009809419512748718, -0.00647126417607069, 0.008087029680609703, 0.01633809693157673, 0.01649393141269684, -0.0017213644459843636, -0.017076263204216957, 0.004564332775771618, 0.019126728177070618, 0.0016875318251550198, 0.011252946220338345, -0.02394942007958889, 0.001167739275842905, 0.017617587000131607, -0.009719199500977993, 0.00013251123891677707, -0.016649767756462097, -0.03224969655275345, -0.004094776697456837, 0.022587910294532776, 0.02194816619157791, -0.009005637839436531, -0.014804350212216377, 0.011195532977581024, 0.019799280911684036, 0.024539953097701073, 0.011991113424301147, 0.006130887195467949, -0.011220138520002365, 0.012089535593986511, 0.020291391760110855, 0.023145636543631554, 0.02732858434319496, 0.0026840572245419025, 0.02444153092801571, 0.0020555900409817696, -0.003473486052826047, -0.017863642424345016, 0.017814431339502335, -0.03418533504009247, 0.012835904024541378, 0.011244744062423706, 0.018158908933401108, -0.007004384882748127, -0.04130454733967781, 0.015173433348536491, 0.003450930817052722, 0.0002429799787933007, -0.027673061937093735, -0.0154194887727499, 0.013319813646376133, -0.0009883235907182097, -0.02534373477101326, 0.0042731668800115585, 0.011613828130066395, 0.011293955147266388, 0.04573354870080948, -0.00021786180150229484, -0.01294252835214138, 0.0627605989575386, -0.005355811677873135, 0.017945660278201103, -0.025606194511055946, -0.007738451007753611, 0.016961438581347466, -0.009120463393628597, -0.020914733409881592, 0.0018413166981190443, -0.011408781632781029, 0.003807711647823453, -0.014123596251010895, 0.012606252916157246, 0.006725521758198738, -0.014796148054301739, -0.023358885198831558, -0.014394257217645645, -0.028476843610405922, -0.0032007743138819933, -0.0015675796894356608, -0.008275672793388367, 0.03349637985229492, 0.013254199177026749, 0.0027004610747098923, -0.008423306047916412, -0.005893033463507891, 0.004806287586688995, 0.007069999817758799, -0.03884398937225342, 0.0060119605623185635, -0.01176146138459444, -0.010309732519090176, -0.009046646766364574, 0.007352964021265507, 0.013319813646376133, -0.02081630937755108, 0.0009078429429791868, -0.004070171155035496, 0.009292703121900558, 0.01242581196129322, -0.00026104968856088817, 0.03592412918806076, -0.02298160083591938, 0.023145636543631554, -0.018060486763715744, 0.019979720935225487, 0.02196457050740719, -0.013459245674312115, -0.011745058000087738, -0.006003758404403925, -0.004494617227464914, -0.005515748169273138, -0.03241373598575592, -0.0025159192737191916, -0.019339976832270622, 0.012860509566962719, 0.00011809390707639977, 0.0372692346572876, -0.016863016411662102, 0.008611948229372501, -0.03667869791388512, 0.030314059928059578, 0.02055385150015354, -0.00807882845401764, -0.003131058532744646, 0.00012603946379385889, 0.0024933642707765102, 0.013131171464920044, -0.016485730186104774, 0.010014466010034084, 0.004953920841217041, -0.005798711907118559, -0.011786066927015781, -0.005240986123681068, 0.017798027023673058, 0.028837725520133972, -0.023572133854031563, -0.009571566246449947, -0.01953682117164135, 0.019339976832270622, -0.019126728177070618, 0.002257560845464468, 0.008899013511836529, 0.0247367974370718, -0.010457366704940796, -0.01225357223302126, 0.003908184356987476, 0.0008442785474471748, 0.009637180715799332, 0.0016885570948943496, -0.005462436005473137, 0.011531809344887733, -0.004314176272600889, -0.013073758222162724, 0.00384872080758214, 0.013926750980317593, 0.029247818514704704, 0.0003695961204357445, 0.017978468909859657, 0.008669361472129822, 0.023850996047258377, 0.04058278352022171, 0.02255510352551937, -0.029182203114032745, -0.01886426843702793, -0.022456681355834007, -0.0241954755038023, 0.010949477553367615, 0.0007350913365371525, 0.00925169326364994, 0.004752975422888994, -0.008345388807356358, 0.036022551357746124, -0.004716067109256983, -0.009973457083106041, 0.005228683352470398, 0.006344135385006666, 0.006963375490158796, 0.03549763187766075, -0.0058889323845505714, -0.02619672752916813, -0.011474396102130413, -0.007627726066857576, 0.0064507597126066685, -0.012023921124637127, 0.033365149050951004, 0.003592412918806076, 0.007922993041574955, -0.007332459092140198, 0.018716635182499886, 0.030953804031014442, 0.0023785382509231567, -0.00771384546533227, -0.016256079077720642, 0.0016424215864390135, 0.0019694706425070763, -0.004593039397150278, 0.027361391112208366, -0.011843480169773102, -0.03477586805820465, -0.003686734242364764, 0.019307168200612068, 0.017273107543587685, 0.016256079077720642, -0.0013697099639102817, 0.011654837056994438, -0.009054848924279213, -0.014492679387331009, -0.003959445748478174, 0.006996183190494776, 0.0007653356879018247, -0.020357007160782814, -0.00037702906411141157, -0.0013697099639102817, 0.016977841034531593, -0.02099675126373768, -0.016403712332248688, 0.002513868734240532, 0.0006792161730118096, 0.016379106789827347, -0.0046299477107822895, -0.0033258525654673576, -0.018126102164387703, 0.001200546626932919, 0.003377114189788699, -0.037761345505714417, -0.003122856607660651, 0.01140057947486639, -0.022948792204260826, 0.008849802426993847, -0.002425698796287179, -0.006590191274881363, 0.01766679808497429, -0.01112991850823164, -0.013270602561533451, -0.012393004260957241, -0.015944408252835274, -0.015050405636429787, 0.017650393769145012, 0.010572192259132862, 0.028214383870363235, -0.00774255208671093, -0.032577771693468094, 0.005146664567291737, -0.008874407969415188, 0.009842227213084698, -0.01518163550645113, 0.004277267958968878, 0.002577433129772544, 0.007057697046548128, 0.007631826680153608, -0.0016670272452756763, -0.026081901043653488, 0.014189210720360279, 0.007045394275337458, -0.012844106182456017, 0.0019592184107750654, 0.0017787774559110403, -0.0071233119815588, 0.02147245779633522, 0.004264965187758207, -0.011564617045223713, 0.001844392390921712, 0.00262459390796721, 0.012179755605757236, 0.02486802637577057, 0.005728996358811855, -0.010728027671575546, -0.00811573676764965, -0.028460439294576645, -0.00037805430474691093, -0.000755595974624157, -0.0076851388439536095, 0.013557667843997478, 0.007840974256396294, -0.008726774714887142, 0.023785382509231567, -0.02932983636856079, -0.022227030247449875, -0.020537447184324265, 0.023080023005604744, 0.0078081670217216015, -0.0016014123102650046, 0.0006986955995671451, -0.03180679678916931, 0.02540935017168522, 0.008767783641815186, 0.03749888390302658, 0.005310701671987772, -0.037761345505714417, -0.011523607186973095, -0.019684454426169395, 0.010514779016375542, 0.012803097255527973, 0.008234662935137749, -0.04540547356009483, 0.03441498801112175, -0.011293955147266388, -0.0076851388439536095, -0.019799280911684036, 0.01771600916981697, 0.002392891561612487, -0.005040040239691734, -0.0019048809772357345, 0.006438456941395998, 0.02194816619157791, 0.008702169172465801, -0.00033422562410123646, -0.0035801101475954056, -0.0302976556122303, -0.007406275719404221, -0.019192343577742577, 0.015550718642771244, 0.026869280263781548, -0.001501964870840311, 0.019799280911684036, 0.0028891037218272686, -0.0037626014091074467, -0.007668735459446907, -0.011581020429730415, 0.05098273605108261, -0.0026574013754725456, 0.01019490696489811, -0.028526054695248604, -0.03398849070072174, 0.012327389791607857, -0.006536879111081362, 0.004437203984707594, 0.03651466220617294, -0.014722331427037716, 0.002265762770548463, 0.009907841682434082, -0.012647261843085289, 0.005331206135451794, -0.01573115959763527, 0.0012138746678829193, 0.0004915987374261022, -0.008931821212172508, 0.0028829523362219334, -0.022161414846777916, 0.014328641816973686, -0.020406218245625496, 0.006454860791563988, -0.016100242733955383, -0.007890185341238976, -0.006684512365609407, 0.010998688638210297, -0.010646008886396885, -0.00856273714452982, -0.01692862994968891, -0.005589564796537161, 0.001431223819963634, 0.0021324825938791037, -0.018044082447886467, -0.011220138520002365, -0.03697396442294121, -0.015296461060643196, 0.008669361472129822, 0.03585851565003395, 0.01052298117429018, 0.004301873501390219, -0.019143132492899895, -0.006036566104739904, -0.028444036841392517, -0.013237795792520046, -0.010916669853031635, -0.0002975735696963966, -0.010941275395452976, 0.03999225050210953, -0.012450417503714561, 0.021603688597679138, 0.015534315258264542, 0.007927093654870987, 0.002351882169023156, -0.020471831783652306, -0.01204032450914383, 0.0012282278621569276, 0.02079990692436695, -0.004184997174888849, -0.027000509202480316, 0.01983208768069744, -0.009481345303356647, 0.04179665818810463, -0.005675684195011854, -0.0012015718966722488, -0.013131171464920044, 0.017568375915288925, -0.005384518299251795, -0.01145799271762371, -0.006586090195924044, 0.033726032823324203, -0.03421814367175102, 0.009563364088535309, 0.012835904024541378, -0.006897761020809412, -0.013081960380077362, 0.014025173150002956, 0.0013563819229602814, 0.029920369386672974, 0.03211846575140953, -0.018847864121198654, -0.007861479185521603, -0.013180382549762726, -0.0027394199278205633, -0.002870649565011263, -0.05711772292852402, -0.016526740044355392, -0.004131685011088848, -0.0016331945080310106, -0.007890185341238976, -0.019635243341326714, 0.009981658309698105, -0.02099675126373768, -0.004843195900321007, 0.018224524334073067, 0.011269349604845047, -0.02503206394612789, 0.023424500599503517, -0.012803097255527973, 0.023326078429818153, 0.012204361148178577, -0.00831668172031641, -0.005741299130022526, -0.010892064310610294, 0.028460439294576645, 0.014016971923410892, 0.01010468602180481, 0.0020391864236444235, 0.008841600269079208, -0.011015092022716999, 0.0016434468561783433, 0.014435266144573689, -0.012860509566962719, -0.015337470918893814, -0.013139372691512108, 0.025803038850426674, 0.017502760514616966, 0.018109697848558426, -0.010309732519090176, 0.02764025516808033, -0.020603062584996223, -0.007217633072286844, -0.027262968942523003, -0.006139089353382587, -0.01620686799287796, -0.009489547461271286, -0.005950446240603924, -0.007652331609278917, 0.024211877956986427, 0.012278178706765175, 0.005011334083974361, 0.041829466819763184, -0.013410034589469433, -0.0037379958666861057, 0.03169197216629982, -0.002026883652433753, 0.015280057676136494, -0.017387934029102325, 0.036744315177202225, 0.0011113514192402363, 0.014746936969459057, 0.01710907183587551, -0.006606595125049353, 0.0006366690504364669, -0.0010590646415948868, -0.0011195533443242311, -0.016863016411662102, -0.03743327036499977, -0.013516658917069435, 0.01203212235122919, 0.014714129269123077, 0.005179471801966429, 0.014951983466744423, 0.013483851216733456, -0.017076263204216957, -0.001732642063871026, 0.007947598583996296, 0.006975678261369467, 0.0037092892453074455, 0.0034960410557687283, -0.004359286278486252, 0.018798653036355972, -0.00047980857198126614, -0.012466820888221264, 0.0034632335882633924, -0.001843367121182382, -0.010687017813324928, -0.005962749011814594, -0.00991604384034872, -0.0033586600329726934, 0.011728653684258461, -0.01242581196129322, 0.0043756901286542416, -0.01103969756513834, 0.008751380257308483, -0.0012866661418229342, -0.027738677337765694, 0.0012702624080702662, 0.00245030433870852, 0.03090459294617176, 0.01143338717520237, -0.010965880937874317, 0.0002284985821461305, 0.002425698796287179, 0.001271287677809596, -0.010285126976668835, 0.009637180715799332, -0.01140057947486639, 0.004478213377296925, 0.013426437973976135, 0.024999257177114487, -0.0024380015674978495, 0.019438399001955986, -0.02196457050740719, 0.014312238432466984, -0.012302784249186516, -0.0023047213908284903, -0.007886084727942944, 0.013229593634605408, -0.005806914065033197, 0.004449506755918264, -0.022423874586820602, -0.01103969756513834, 0.006586090195924044, -0.0209803469479084, 0.016346298158168793, 0.012516031973063946, 0.02896895445883274, 0.002241157228127122, 0.013918549753725529, 0.016420114785432816, -0.014041577465832233, -0.012278178706765175, -0.007656432688236237, -0.015534315258264542, 0.025983478873968124, -0.01366429217159748, 0.011556414887309074, -3.3640422770986333e-05, 0.01856900192797184, -0.007156119216233492, -0.014172807335853577, -0.018913479521870613, -0.011695846915245056, -0.020094547420740128, 0.026213131844997406, -0.003313549794256687, 0.021062366664409637, -0.0077876620925962925, 0.021882550790905952, -0.000675627903547138, -0.010096484795212746, 0.02280115894973278, 0.034808676689863205, -0.01176146138459444, 0.006545080803334713, 0.011884489096701145, 0.0006710143061354756, 0.006303126458078623, 0.0002845018752850592, -0.027115335687994957, -0.005105655174702406, -0.009571566246449947, -0.003260237630456686, 0.008210057392716408, -0.004187047481536865, 0.003440678585320711, 0.0018238876946270466, -0.0010713674128055573, -0.010990486480295658, 0.006057070568203926, 0.0002446459839120507, -0.021456055343151093, -0.01088386308401823, -0.0037277434021234512, -0.0177324116230011, 0.00016134588804561645, 0.0076851388439536095, 0.00953055638819933, 0.015583526343107224, -0.026262342929840088, 0.010235915891826153, 0.024359511211514473, -0.00810343399643898, -0.0005149227799847722, 0.0009872984373942018, 0.012450417503714561, 0.014714129269123077, 0.0315607413649559, 0.001540923723950982, -0.01911032386124134, -0.0030736455228179693, 0.012835904024541378, -0.009817621670663357, -0.003075696062296629, -0.0018054335378110409, 0.021324824541807175, -0.009727400727570057, 0.008907215669751167, -0.0412389300763607, -0.013902145437896252, -0.0007063848315738142, -0.003824115265160799, 0.008156745694577694, 0.0290345698595047, -0.006811641156673431, -0.005589564796537161, -0.003459132742136717, 0.010153898037970066, -0.006684512365609407, 0.00024259551719296724, 0.02462197095155716, 0.0021714414469897747, 0.008480719290673733, 0.022276241332292557, 0.0006105256616137922, 0.015239047817885876, 0.00037267181323841214, -0.018109697848558426, 0.0074390834197402, -0.002472859574481845, 0.0007602095138281584, -0.022587910294532776, 0.018060486763715744, -0.009120463393628597, -0.016526740044355392, -0.008345388807356358, 0.012827702797949314, -0.006134988274425268, -0.007590817753225565, 0.0009560288162901998, -0.022292643785476685, -0.012015718966722488, 0.00464225048199296, 0.012786692939698696, 0.023096425458788872, -0.020521042868494987, 0.0011574869276955724, -0.010834651999175549, -0.00369083508849144, 0.016526740044355392, 0.0020709685049951077, -0.009292703121900558, -0.008439709432423115, 0.013459245674312115, -0.004777580965310335, 0.018044082447886467, -0.02273554541170597, 0.015403085388243198, -0.0020494386553764343, 0.015952609479427338, 0.015222644433379173, 0.019405590370297432, -0.010301531292498112, -0.017158282920718193, 0.024769604206085205, -0.011015092022716999, -0.029116587713360786, 0.01040815468877554, 0.019339976832270622, 0.008751380257308483, -0.035169556736946106, -0.006955173797905445, -0.022112203761935234, -0.00958796963095665, -0.018536195158958435, -0.013623282313346863, 0.027230162173509598, 0.01566554419696331, 0.003588311839848757, 0.004547928925603628, 0.01088386308401823, -0.0076605333015322685, 0.025917865335941315, 0.0009913992835208774, -0.0011513355420902371, 0.013926750980317593, 0.01681380532681942, 0.01542769093066454, -0.03533359616994858, 0.006282621528953314, 0.015353874303400517, -0.0066599068231880665, -0.008378195576369762, 0.01451728492975235, -0.008222360163927078, -0.016485730186104774, -0.002837842097505927, -0.008579141460359097, 0.03211846575140953, 0.011777864769101143, 0.02388380467891693, 0.017551971599459648, 0.010834651999175549, 0.017223896458745003, -0.0040886253118515015, 0.001311271684244275, -0.026213131844997406, -0.0035103943664580584, 0.00916967447847128, -0.0007294525858014822, 0.01960243470966816, -0.006040666718035936, -0.007635927759110928, -0.004785783123224974, -0.01366429217159748, -0.0036231698468327522, 0.01766679808497429, 0.013574071228504181, -0.006942871026694775, 0.0022206525318324566, 0.0018228624248877168, 0.009678189642727375, 0.01542769093066454, -0.0007253516232594848, -0.010285126976668835, -0.020291391760110855, -0.01509141456335783, -0.019946914166212082, 0.0007038217736408114, -0.0397954061627388, -0.010760835371911526, 0.01233559101819992, 0.00679113669320941, -0.00026450984296388924, 0.0056592803448438644, 0.02885412983596325, 0.007213532458990812, 0.03198723867535591, 0.010785440914332867, 0.0046094427816569805, 0.016625162214040756, -0.0007125362171791494, -0.00201765657402575, -0.0026266444474458694, 0.013738108798861504, 0.015165231190621853, 0.023998631164431572, 0.01746995374560356, -0.009218885563313961, 0.006175997667014599, 0.0047570765018463135, -0.019143132492899895, 0.016715383157134056, 0.01578037068247795, 0.014615707099437714, 0.0142466239631176, -0.020373409613966942, 0.01591159962117672, -0.02800113521516323, -0.007701542694121599, 0.00521638011559844, -0.010039071552455425, -0.0014968387549743056, 0.01850338652729988, -0.0019807482603937387, 0.012532435357570648, -0.010908468626439571, 0.008792389184236526, -2.8081743948860094e-05, 0.01454189047217369, -0.00856273714452982, -0.005364013835787773, 0.010785440914332867, 0.006873155012726784, 0.009809419512748718, -0.008423306047916412, 0.005212279502302408, 0.00865295808762312, -0.007053595967590809, 0.015796774998307228, 0.01850338652729988, 0.0035596054513007402, -0.010268723592162132, 0.02262071892619133, 0.029231414198875427, -0.01548510417342186, 0.010777238756418228, -0.0074759917333722115, 0.015083213336765766, -0.010153898037970066, -0.00340171973221004, -0.0015378480311483145, 0.007947598583996296, -0.007074100896716118, -0.013442841358482838, 0.0027373693883419037, -0.005856125149875879, 0.004465910606086254, 0.022095799446105957, 0.0013235744554549456, -0.004445405676960945, -0.019257957115769386, -0.028148768469691277, -0.024457933381199837, 0.00416449224576354, -0.012860509566962719, 0.00262459390796721, -0.011416983790695667, 0.008238764479756355, 0.017519164830446243, -0.011195532977581024, 0.0021099273581057787, -0.0030715949833393097, -0.010957679711282253, -0.009448537603020668, -0.002116078743711114, 0.0006028364296071231, 0.020963944494724274, 0.02480241283774376, -0.0050933524034917355, 0.03585851565003395, -0.001375861349515617, -0.0014650565572082996, 0.02244027704000473, 0.019077517092227936, 0.004387992899864912, -0.0068649533204734325, 0.006134988274425268, -0.010268723592162132, 0.006147291045635939, -0.019159534946084023, 0.0056551797315478325, 0.00497442577034235, -0.00399020267650485, -0.019126728177070618, 0.0015070909867063165, 0.003947142977267504, -0.016690777614712715, 0.023490116000175476, 0.00554855540394783, -0.0024831118062138557, -0.0032950956374406815, 0.024097053334116936, -0.0022309047635644674, 0.01983208768069744, 0.008234662935137749, -0.008546333760023117, -0.0037174911703914404, 0.0056100692600011826, 0.007512900047004223, -0.01881505735218525, 0.016756391152739525, 0.010367145761847496, -0.0011277551529929042, 0.0012589849065989256, -0.022243432700634003, -0.013951356522738934, -0.011228340677917004, -0.006360539235174656, -0.036088164895772934, 0.015608131885528564, -0.0036641790065914392, -0.0071233119815588, -0.0067829350009560585, 0.009112262167036533, 0.0075826155953109264, -0.014935579150915146, -0.008726774714887142, 0.021980972960591316, 0.004523323383182287, -0.027607446536421776, 0.017158282920718193, -0.0004323915927670896, 0.0013410034589469433, -0.016108445823192596, 0.011080707423388958, 0.01324599701911211, -0.008628352545201778, -0.006413851398974657, -0.019799280911684036, 0.011745058000087738, -0.014886368066072464, -0.024933641776442528, -0.021931761875748634, 0.002542575355619192, -0.013713503256440163, -0.004240359645336866, -0.04422440752387047, -0.0008453037589788437, -0.001669077668339014, -0.01802767999470234, -0.0009565414511598647, -0.007635927759110928, -0.006262117065489292, -0.006688613444566727, 0.011892691254615784, 0.0056100692600011826, 0.008119837380945683, 0.0048595997504889965, 0.03411972150206566, 0.014443468302488327, -0.019700858741998672, 0.008669361472129822, 0.022538699209690094, -0.0013492052676156163, 0.022571507841348648, 0.03297146037220955, 0.002893204567953944, 0.0033689122647047043, -0.011966507881879807, 0.002645098604261875, -0.03569447621703148, -0.0197172611951828, 0.0013143473770469427, 0.0013051202986389399, -0.013229593634605408, 0.00029347266536206007, 0.003955345135182142, -0.0006325681461021304, 0.017978468909859657, -0.01807689107954502, -0.004012757912278175, 0.010235915891826153, 0.020734291523694992, -0.017519164830446243, 0.011023294180631638, 0.021127980202436447, 0.007020788732916117, -0.00615549273788929, 0.005376316606998444, -0.003354558954015374, -0.015649141743779182, -0.003479637438431382, 0.009842227213084698, -0.007771258242428303, 0.014066183008253574, 0.005380417685955763, 0.009022041223943233, 0.0021365834400057793, 0.018175313249230385, 0.0049416180700063705, 0.015558920800685883, 0.006385144777595997, 0.0330042690038681, -0.00405171699821949, 0.011359570547938347, -0.010613201186060905, -0.012434013187885284, 0.003211026545614004, -0.015173433348536491, -0.010596797801554203, 0.01179426908493042, 0.01055578887462616, -0.015099616721272469, -0.0018382410053163767, 0.029608700424432755, -0.029772736132144928, 0.006081676110625267, 0.0026491994503885508, -0.024884430691599846, -0.011416983790695667, 0.018290137872099876, -0.01418100856244564, 0.01542769093066454, 0.01710907183587551, 0.010982285253703594, 0.020586658269166946, -0.00017454574117437005, -0.023801784962415695, 0.00856273714452982, 0.023965822532773018, 0.01784723810851574, 0.00029270374216139317, 0.005364013835787773, -0.0038302666507661343, -0.0069920821115374565, 0.02970712259411812, 0.026180323213338852, -0.04681619256734848, 0.0017264906782656908, -0.011220138520002365, 0.0029998288955539465, 0.005466537084430456, 0.007828671485185623, -0.017043456435203552, -0.0037400461733341217, -0.008726774714887142, -0.011105312965810299, -0.009989860467612743, -0.021620092913508415, 0.00429367134347558, -0.011958305723965168, -0.0008135215612128377, 0.008333085104823112, 0.013114767149090767, 0.010842853225767612, 0.018831461668014526, 0.001025232020765543, -0.002688158303499222, -0.01717468537390232, 0.003543201833963394, 0.011589222587645054, 0.011982911266386509, 0.02716454677283764, 0.02129201777279377, 0.012073132209479809, 0.018060486763715744, 0.01748635619878769, 0.007004384882748127, 0.011113515123724937, 0.009473143145442009, -0.006631200667470694, -0.001017542788758874, -0.004100928083062172, 0.020717887207865715, -0.0006669134018011391, 0.025081275030970573, -0.004330580122768879, -0.005765904672443867, -0.0005592640372924507, 0.004174744710326195, 0.018191715702414513, -0.0032622881699353456, -0.005101554561406374, -0.006676310673356056, -0.01200751680880785, 0.0056551797315478325, 0.008989234454929829, -0.012893317267298698, 0.011941902339458466, 0.024703990668058395, -0.0202585831284523, 0.010063677094876766, -0.011006890796124935, 0.012680069543421268, 0.020717887207865715, -0.0011646635830402374, 0.0031351593788713217, 0.009784813970327377, -0.01322139147669077, -0.02334248274564743, -0.00982582289725542, -0.008907215669751167, -0.014992992393672466, 0.026393571868538857, 0.019946914166212082, 0.019011901691555977, -0.007545707281678915, -0.011408781632781029, -0.007959901355206966, 0.011293955147266388, 0.007767157629132271, 0.004199350252747536, -0.00040958018507808447, 0.010957679711282253, -0.0067624300718307495, 0.014205614104866982, 0.024835219606757164, -0.008800591342151165, 0.0023149738553911448, 0.0041931988671422005, 0.005929941777139902, 0.004105028696358204, -0.0007802015170454979, -0.015895197167992592, -0.019323572516441345, 0.01753556728363037, -0.005765904672443867, -0.009407528676092625, -0.011269349604845047, 0.004826792050153017, 0.023933015763759613, 0.016526740044355392, 0.021275613456964493, -0.020110949873924255, -0.01272928062826395, 0.009473143145442009, 0.0012220764765515924, 0.021259211003780365, 0.010539384558796883, -0.016075637191534042, -0.007434982340782881, 0.006303126458078623, 0.0036354726180434227, -0.005380417685955763, 0.028033943846821785, 0.001597311464138329, -0.0074759917333722115, 0.0008458163938485086, -0.012204361148178577, 0.01520624104887247, -0.006151392124593258, 0.038319069892168045, -0.010358943603932858, -0.012286379933357239, 0.0016003871569409966, -0.013820127584040165, 0.0023252260871231556, -0.010801844298839569, 0.025655405595898628, -0.01454189047217369, -0.019815683364868164, -0.012573445215821266, -0.000692031579092145, 0.015247249975800514, 0.013770915567874908, 0.0016383207403123379, 0.02818157710134983, -0.0018013325752690434, -0.0030695446766912937, -0.016551345586776733, -0.016534941270947456, -0.004650452174246311, -0.005946345627307892, 0.0036600781604647636, 0.003768752794712782, 0.009292703121900558, -0.015075011178851128, -0.029444662854075432, 0.016510335728526115, 0.0064056492410600185, 0.005462436005473137, 0.006647604051977396, 0.0004323915927670896, 0.006401548627763987, -0.00710690813139081, -0.01609204150736332, 0.005523949861526489, -0.019339976832270622, -0.005351711064577103, -0.008255167864263058, 0.0013891893904656172, -0.003680582856759429, 0.011203735135495663, -0.00400660652667284, 0.009752006269991398, -0.0023436802439391613, 0.030346866697072983, -0.009579767473042011, -0.02878851443529129, -0.01929076574742794, -0.014599303714931011, 0.017191089689731598, -0.008447911590337753, -0.0379909947514534, 0.0018546446226537228, 0.0016342197777703404, 0.022210625931620598, -0.004880104213953018, 0.003897931892424822, -0.005355811677873135, 0.0019458902534097433, -0.01699424535036087, 0.0031290079932659864, -0.01766679808497429, -0.010974083095788956, -0.005101554561406374, 0.010604999959468842, -0.013328015804290771, -0.00467095710337162, 0.00022478211030829698, 0.006204703822731972, 0.0038651246577501297, 0.008148543536663055, -0.0009411629871465266, -0.016977841034531593, -0.01588699407875538, 0.014131797477602959, 0.004016858991235495, -0.019996125251054764, 9.303980186814442e-05, -0.005938143469393253, 0.007180724758654833, -0.012286379933357239, -0.012745684012770653, 0.010071879252791405, -0.03152793273329735, 0.008210057392716408, -0.0027455713134258986, -0.025064870715141296, -0.02099675126373768, -0.007197128608822823, 0.018946286290884018, 0.011909094639122486, -0.017043456435203552, 0.004277267958968878, 0.017502760514616966, -0.006668108981102705, -0.010916669853031635, 0.02201378159224987, 0.026508398354053497, -0.004888305906206369, 0.02280115894973278, -0.02813236601650715, 0.005700289737433195, 0.00325818732380867, -0.005429628770798445, -0.013401832431554794, -0.018798653036355972, -0.004465910606086254, 0.016469325870275497, 0.0123683987185359, -0.025261716917157173, -1.5682844605180435e-05, 0.00018261944933328778, -0.008849802426993847, -0.0035985643044114113, 0.014123596251010895, -0.016395509243011475, -0.0045028189197182655, -0.01953682117164135, -0.004371589049696922, -0.011941902339458466, 0.0024749101139605045, 0.006598392967134714, -0.006836246699094772, 0.015189836733043194, -0.01294252835214138, -0.0036190690007060766, -0.03041248209774494, -0.0005367089179344475, -0.010440962389111519, -0.00585202407091856, 0.006840347778052092, -0.0024421026464551687, 0.010350742377340794, 0.013934953138232231, -0.010030869394540787, 0.0024523548781871796, 0.0013553566532209516, -0.013680695556104183, 0.007020788732916117, -0.021095173433423042, 0.00497442577034235, -0.01225357223302126, 0.028886936604976654, -0.008386397734284401, -0.009063051082193851, 0.0014937629457563162, 0.036317817866802216, 0.001280514756217599, 0.005511647090315819, -0.010358943603932858, -0.014057980850338936, 0.0028644981794059277, 0.005917639005929232, 0.009423932060599327, -0.0016639515524730086, -0.00012898699787911028, 0.011786066927015781, 0.0023416299372911453, -0.0009427008335478604, -0.0026266444474458694, 0.010572192259132862, 0.001310246530920267, 0.03206925466656685, -0.022358259186148643, 0.021882550790905952, 0.00015621972852386534, -0.019946914166212082, -0.025671808049082756, 0.0026594516821205616, -0.00680343946442008, 0.015599929727613926, -0.021816937252879143, 0.008160846307873726, -0.0063482364639639854, -0.023375289514660835, -0.014148201793432236, -0.026081901043653488, -0.0099488515406847, 0.02371976710855961, -0.011745058000087738, -0.014033375307917595, -0.0062990253791213036, 0.012696472927927971, -0.005794611293822527, 0.013803723268210888, 0.021078769117593765, 0.0198977030813694, 0.03134749457240105, -0.01654314249753952, 0.016666170209646225, -0.0012025971664115787, -0.003602665150538087, -0.012901519425213337, 0.0009016915573738515, 0.00069920823443681, 0.030018793419003487, 0.016616959124803543, -0.013114767149090767, -0.01748635619878769, -0.017765220254659653, -0.011195532977581024, -0.013631484471261501, 0.005929941777139902, 0.006963375490158796, -0.001423022011294961, 0.027509024366736412, -0.014451670460402966, -0.007512900047004223, -0.021390439942479134, 0.019143132492899895, -0.018306542187929153, -0.001167739275842905, 0.019504012539982796, 0.02117719128727913, 0.025327330455183983, 0.028033943846821785, -0.021915359422564507, -0.0009565414511598647, -0.0026615022215992212, -0.0034304261207580566, 0.026869280263781548, 0.016395509243011475, 0.012466820888221264, -0.018765846267342567, -0.008341287262737751, -0.00809113122522831, 0.008140342310070992, -0.000978583935648203, 0.02212860807776451, 0.022161414846777916, -0.0029608700424432755, 0.009579767473042011, -0.013287006877362728, 0.01850338652729988, 0.00840690266340971, 0.010604999959468842, 0.008226461708545685, 0.012901519425213337, -0.03326672688126564, -0.005253288894891739, -0.004008656833320856, -0.008702169172465801, 0.004552030004560947, -0.024638375267386436, -0.010358943603932858, 0.006545080803334713, 0.0025692314375191927, 0.006622998509556055, 0.012491426430642605, -0.014172807335853577, -0.012680069543421268, 0.015345672145485878, -0.002456455724313855, -0.010646008886396885, 0.007205330301076174, 0.008431508205831051, 0.014205614104866982, 0.009071252308785915, -0.006024263333529234, 0.018831461668014526, -0.014353247359395027, 0.0034693849738687277, 0.011851681396365166, 0.010957679711282253, 0.015919802710413933, -0.009776611812412739, -0.00901383999735117, -0.014673120342195034, 0.003713390324264765, 0.00310030160471797, 0.002370336325839162, 0.011966507881879807, -0.010137493722140789, 0.008222360163927078, -0.018765846267342567, -0.0129999415948987, 0.019487610086798668, 0.022177819162607193, 0.014049778692424297, 0.012286379933357239, -0.02135763317346573, 0.02376897819340229, -0.007664634380489588, -0.0034078711178153753, 0.019208746030926704, -0.023194847628474236, -0.009940649382770061, 0.017617587000131607, 0.010022668167948723, 0.0032479348592460155, 0.002950617577880621, -0.013467446900904179, 0.02086552046239376, 0.0008309505064971745, -0.03513675183057785, 0.00677473284304142, -0.014279430732131004, -0.014886368066072464, -0.0042157541029155254, 0.014345046132802963, -0.007467789575457573, 0.003475536359474063, 0.006754228379577398, 0.024818815290927887, -0.010728027671575546, -0.0025056670419871807, -0.008472517132759094, 0.03930329158902168, 0.00030090557993389666, 0.0016547244740650058, -0.009973457083106041, -0.012105938978493214, -0.006979779340326786, -0.00903844553977251, 0.005728996358811855, -0.013385429047048092, -0.0013307511107996106, 0.006098079960793257, 0.014492679387331009, -0.015280057676136494, -0.01027692575007677, -0.0017582728760316968, 0.027131740003824234, 0.010506577789783478, 0.010186704806983471, -0.014886368066072464, 0.012163352221250534, 0.005191774573177099, -0.0014814601745456457, -0.01520624104887247, -0.020963944494724274, 0.008263370022177696, -0.028214383870363235, -0.005786409135907888, 0.007881983183324337, 0.010096484795212746, -0.026590416207909584, 0.0015768067678436637, -0.0006233410676941276, 0.0007053596200421453, 0.012663665227591991, 0.004646351560950279, 0.006897761020809412, -0.01421381626278162, 0.0007130488520488143, -0.02055385150015354, -0.0020002275705337524, 0.008156745694577694, 0.013844733126461506, -0.0019469155231490731, -0.0014507032465189695, 0.004871902521699667, -0.007069999817758799, 0.014492679387331009, -0.030445288866758347, -0.016625162214040756, 0.0030695446766912937, -0.00991604384034872, 0.009546960704028606, 0.002423648489639163, -0.01088386308401823, -0.005696189124137163, 0.007139715366065502, -0.012893317267298698, -0.011310359463095665, 0.027016913518309593, 0.005060545168817043, 0.011925498023629189, 0.0005551631329581141, 0.016370903700590134, -0.01327880471944809, 0.006217006593942642, -0.005995556712150574, -0.013311612419784069, -0.0036047156900167465, 0.005675684195011854, -0.01651853695511818, -0.0018341400427743793, 0.015189836733043194, -0.00416449224576354, -0.003984051290899515, -0.005573160946369171, -0.010088282637298107, 0.0036149679217487574, -0.01960243470966816, 0.013770915567874908, 0.002923961728811264, -0.012196159921586514, 0.016174059361219406, -0.0042731668800115585, 0.02032419852912426, -0.00429367134347558, 0.008529930375516415, 0.008940022438764572, -0.013155777007341385, 0.001128780422732234, -0.004408497363328934, -0.013779117725789547, -0.007570312824100256, 0.018667424097657204, 0.0031741182319819927, 0.027591044083237648, -0.03963136672973633, -0.012114141136407852, -0.01983208768069744, 0.006770632229745388, 0.004556131083518267, -0.015796774998307228, 0.01297533605247736, -0.013237795792520046, 0.002035085577517748, 0.016379106789827347, -0.007270945236086845, 0.008066525682806969, 0.012581647373735905, -0.02207939513027668, -0.004593039397150278, 0.01807689107954502, -0.012220765464007854, -0.01814250461757183, -0.02371976710855961, -0.0031392602249979973, -0.0033894169609993696, 0.003204875160008669, -0.006540980190038681, 0.005728996358811855, -0.0005351710715331137, 0.009637180715799332, -0.016592353582382202, 0.0060119605623185635, -0.014345046132802963, -0.031593549996614456, -0.001923335250467062, -0.008636553771793842, -0.026327956467866898, 0.011966507881879807, -0.0005956597742624581, -0.012171554379165173, -0.0035760090686380863, -0.005035939626395702, 0.000953978335019201, 0.017027052119374275, 0.01146619487553835, 0.018224524334073067, 0.009153271093964577, -0.003440678585320711, 0.024966448545455933, 0.0025794836692512035, -0.008398700505495071, -0.015403085388243198, -0.0010272824438288808, -0.011105312965810299, 0.0009370620246045291, 0.0020801955834031105, 0.0025876855943351984, -0.0042977724224328995, -0.019487610086798668, -0.006918265484273434, 0.013902145437896252, -0.0079804053530097, -0.027230162173509598, 0.009637180715799332, -0.02352292276918888, 0.00739397294819355, 0.009120463393628597, 0.008661160245537758, -0.0015255451435223222, -0.00011053282651118934, 0.007484193425625563, 0.015239047817885876, 0.022719141095876694, -0.020537447184324265, 0.012434013187885284, -0.026541205123066902, 0.01360687892884016, 0.007389872334897518, -0.043633874505758286, -0.005503445398062468, -0.006364640314131975, 0.009456739760935307, 0.008439709432423115, 0.008423306047916412, -0.006397447548806667, 0.02232545241713524, 0.00862015038728714, -0.006237511523067951, 0.015624535270035267, 0.007291449699550867, -0.017223896458745003, -0.023506518453359604, 0.0023334280122071505, -0.008521728217601776, -0.013541264459490776, -0.017551971599459648, 0.01881505735218525, -0.00279683293774724, 0.004162441939115524, 0.02752542868256569, 0.006914164405316114, 0.022538699209690094, -0.0019684454891830683, -0.009546960704028606, 0.00650407187640667, 0.01076903659850359, -0.00928450096398592, -0.0002932163479272276, -0.00014109755284152925, -0.01012929156422615, 0.012721078470349312, -0.004978526383638382, -0.004728369880467653, -0.01730591617524624, 0.007340660784393549, -0.0021037759725004435, 0.006290823686867952, -0.010080080479383469, 0.016354501247406006, -0.012114141136407852, -0.016707180067896843, 0.02388380467891693, -0.009932447224855423, 0.004539727233350277, 0.0041931988671422005, 0.01656774803996086, 0.009382923133671284, 0.004519222769886255, -0.02558979019522667, 0.008415103890001774, 0.010596797801554203, 0.008456113748252392, 0.007102807052433491, 0.021702110767364502, 0.004154239781200886, 0.0021488862112164497, -0.011499001644551754, -0.0008545308373868465, 0.012409407645463943, 0.016133051365613937, -0.0014455771306529641, 0.028083154931664467, 0.022669930011034012, -0.0154194887727499, 0.021751321852207184, -0.006959274876862764, 0.020701484754681587, 0.015608131885528564, 0.0028788514900952578, -0.0010221563279628754, -0.0036764820106327534, 0.012450417503714561, -0.032446540892124176, 0.005450133234262466, 0.013024547137320042, -0.0006863928283564746, -0.013369024731218815, 0.007939396426081657, 0.021193595603108406, -0.0078081670217216015, 0.002895255107432604, 0.0029465167317539454, -0.0019376884447410703, 0.015017597936093807, 0.0047365715727210045, 0.0042977724224328995, 0.004049666225910187, -0.017338722944259644, 0.0184541754424572, 0.03090459294617176, 0.009924245998263359, 0.01116272620856762, -0.0007422679336741567, 0.006885457783937454, 0.002425698796287179, 0.016764594241976738, -0.014960184693336487, -0.013918549753725529, 0.013770915567874908, 0.00038599985418841243, 0.0025938369799405336, 0.02189895510673523, 0.019881298765540123, -0.011597423814237118, -0.008386397734284401, 0.02426108904182911, -0.02667243592441082, 0.014238421805202961, 0.014386055059731007, -0.0015316965291276574, -0.008369994349777699, -0.015140625648200512, -0.0006776783266104758, 0.004896508064121008, -0.01789644919335842, -0.004285469651222229, -0.011892691254615784, 0.003592412918806076, -0.005240986123681068, -0.007611322216689587, -0.002964970888569951, -0.018421368673443794, -0.009186078794300556, -0.0016680523985996842, 0.005101554561406374, 0.02250589244067669, 0.00989143829792738, 0.003252035938203335, -0.004683259874582291, -0.03221689164638519, -0.013385429047048092, -0.03484148532152176, 0.012450417503714561, -0.0021714414469897747, -0.03261058032512665, 0.001128780422732234, -0.0062990253791213036, 0.003713390324264765, -0.00618419935926795, 0.0025979378260672092, -0.007644129451364279, 0.002655350835993886, 0.023457307368516922, 0.0029137092642486095, -0.015435893088579178, -0.000699720811098814, -0.0023252260871231556, 0.004843195900321007, 0.016042830422520638, 0.004506919998675585, 0.011334965005517006, 0.006569686345756054, -0.01983208768069744, 0.02201378159224987, -0.012835904024541378, -0.032873038202524185, -0.001813635346479714, 0.006581989116966724, 0.0016424215864390135, 0.010506577789783478, -0.011023294180631638, -0.00919428002089262, 0.00527789443731308, 0.03328312933444977, -0.009235289879143238, 0.015271855518221855, 0.038679953664541245, -0.012548839673399925, -0.006151392124593258, 0.013705301098525524, -0.0014917125226929784, -0.031249070540070534, -0.008287975564599037, 0.003578059608116746, 0.0031597649212926626, -0.010145695880055428, -0.008529930375516415, 0.015493305400013924, -0.0004303411114960909, -0.001279489486478269, -0.014377852901816368, -0.013779117725789547, -0.00802551582455635, 0.005405023228377104, -0.012876913882791996, 0.013040950521826744, -0.0005459360545501113, 0.014402459375560284, -0.016444720327854156, 0.0029362645000219345, 0.007611322216689587, -0.009391125291585922, -0.029493873938918114, 0.008874407969415188, -0.00769744161516428, -0.010637806728482246, -0.022095799446105957, 0.0034714355133473873, 0.006159593816846609, -0.008201856166124344, 0.0015716806519776583, 0.0028911542613059282, 0.031839605420827866, 0.007229935843497515, -0.01514882780611515, -0.00989143829792738, 0.006709117908030748, 0.010227714665234089, -0.029001763090491295, 0.011080707423388958, 0.005450133234262466, -0.01272928062826395, 0.0015122172189876437, -0.0013738108100369573, 0.012384802103042603, -0.011630231514573097, -0.012417609803378582, -0.007041293196380138, -0.03085538186132908, 0.00016147403221111745, -0.0010359969455748796, -0.02928062528371811, 0.012360196560621262, -0.011868085712194443, -0.0036928856279700994, 0.005741299130022526, -0.025671808049082756, -0.002852195408195257, 0.014984790235757828, -0.006672209594398737, 0.005339408293366432, -0.006766531150788069, -0.0002611778618302196, -0.00185977085493505, 0.05213099718093872, 0.012885116040706635, 0.0045274244621396065, -0.027673061937093735, 0.0018659222405403852, -0.03146231919527054, -0.0016506235115230083, 0.002448254032060504, -0.008989234454929829, 0.003067494137212634, 0.00919428002089262, -0.01650213450193405, 0.0015060658333823085, 0.021275613456964493, -0.013656090013682842, 0.0012692372547462583, 0.01294252835214138, -0.0007509824354201555, -0.01820812001824379, 0.018290137872099876, 0.013746310025453568, 0.01115452405065298, -0.005031838547438383, -0.02099675126373768, 0.002846044022589922, 0.002235005609691143, 0.014222018420696259, 0.003268439555540681, 0.006139089353382587, 0.004346983507275581, 0.018126102164387703, 0.006245713215321302, -0.030625730752944946, 0.014057980850338936, 0.028476843610405922, 0.014837156981229782, -0.005240986123681068, 0.016100242733955383, 0.010719825513660908, -0.00739397294819355, -0.010662412270903587, -0.006627099588513374, -0.007529303897172213, 0.011351368390023708, -0.019405590370297432, 0.003658027620986104, 0.010998688638210297, -0.01145799271762371, -0.012803097255527973, 0.031167052686214447, -0.002520020119845867, -0.013016344979405403, -0.03321751579642296, -0.008759582415223122, -0.020406218245625496, 0.0007427805685438216, 0.00742267956957221, -0.00741037679836154, -0.00989143829792738, 0.022407470270991325, -0.02086552046239376, -0.015198038890957832, -0.0024851623456925154, 0.015575324185192585, -0.021275613456964493, 0.03828626498579979, -0.004703764338046312, 0.0021099273581057787, -0.005105655174702406, 0.019389187917113304, -0.0015009396011009812, -0.0008565813186578453, 0.01396776083856821, -0.00858734268695116, -0.01856900192797184, -0.0155097097158432, -0.030232040211558342, -0.005466537084430456, -0.004970324691385031, -0.013467446900904179, -0.00961257517337799, 0.023621344938874245, 0.006098079960793257, -0.005605968646705151, -0.001461980864405632, -0.014960184693336487, -0.006192401051521301, 0.002120179822668433, 0.016780996695160866, -0.010744431056082249, 0.0035473026800900698, 0.0007745627663098276, 0.01615765690803528, 0.03890960291028023, 0.0055075460113584995, 0.01103969756513834, 0.0009893488604575396, -0.009177876636385918, 0.00040958018507808447, -0.014779744669795036, 0.005651078652590513, 0.019946914166212082, -0.004342882893979549, 0.002394941868260503, -0.0033976188860833645, -0.0020924985874444246, -0.021029558032751083, -0.023982226848602295, -0.010399953462183475, 0.0008222360629588366, 0.0065778885036706924, 0.005154866259545088, 0.017568375915288925, 0.00771384546533227, 0.0035411512944847345, 0.011228340677917004, 0.016977841034531593, 0.02813236601650715, 0.0068075405433773994, -0.0027619749307632446, 0.0011185280745849013, -0.015435893088579178, 0.018191715702414513, 0.0021919459104537964, -0.014066183008253574, -0.0012866661418229342, 0.012680069543421268, 0.0009073303081095219, -0.009809419512748718, 0.026754453778266907, -0.003338155336678028, -0.014451670460402966, -0.023424500599503517, 0.014443468302488327, 0.019618839025497437, 0.01665796898305416, -0.0009985759388655424, 0.012565243057906628, 0.008858004584908485, 0.007266844157129526, -0.02741060219705105, 0.02140684425830841, 0.016559546813368797, 0.00020581531862262636, 0.00934191420674324, 0.00524918781593442, -0.020225776359438896, 0.014812551438808441, 0.03288944065570831, -0.008480719290673733, 0.0054255276918411255, -0.0017736513400450349, -0.021849744021892548, 0.01545229647308588, -0.017207494005560875, 0.01618226245045662, -0.024589164182543755, 0.017027052119374275, -0.027509024366736412, 0.009957052767276764, 0.01602642610669136, 0.009350115433335304, 0.010424559004604816, -0.009407528676092625, 0.031199859455227852, 0.011851681396365166, -0.02239106595516205, 0.009899640455842018, -0.018716635182499886, 0.0042977724224328995, -0.0051712701097130775, -0.005392720457166433, -0.008439709432423115, -0.008140342310070992, -0.006274419836699963, 0.005482940468937159, -0.006598392967134714, 0.006163694895803928, -0.015550718642771244, -0.004990829154849052, -0.0005602893070317805, 0.015198038890957832, 0.02449074201285839, 0.004211653023958206, 0.0018936034757643938, 0.005265591666102409, -0.019914105534553528, 0.009694593958556652, -0.0030879988335072994, 0.011507203802466393, -0.002602038672193885, 0.011220138520002365, -0.012794895097613335, -0.005745400208979845, -0.020307796075940132, 0.022276241332292557, -0.01687941886484623, -0.019799280911684036, -0.0401562862098217, 0.018290137872099876, 0.005458334926515818, -0.00617189658805728, -0.009268097579479218, 0.012786692939698696], "7c03ecbd-a9c6-446b-8a8e-2cad41690d20": [-0.01653403602540493, 0.019299622625112534, 0.012497174553573132, 0.013879966922104359, -0.0038175485096871853, -0.03735027089715004, 0.017500504851341248, 0.052248746156692505, -0.023864325135946274, 0.030436307191848755, -0.026555566117167473, 0.010415551252663136, -0.013218307867646217, -0.01837776042521, 0.02496461197733879, 0.016073105856776237, -0.011976768262684345, 0.00884689949452877, 0.004683652427047491, -0.060515765100717545, 0.058225978165864944, 0.00392534676939249, -0.06922884285449982, 0.018585922196507454, -0.006505073048174381, 0.013493379577994347, -0.013664370402693748, 0.023611556738615036, -0.010846744291484356, -0.01318113598972559, 0.021069001406431198, 0.013530551455914974, 0.035268645733594894, -0.013106792233884335, -0.012854023836553097, -0.013857663609087467, 0.01596902497112751, 0.016147449612617493, -0.019463177770376205, -0.019329359754920006, 0.0003073647094424814, 0.026867810636758804, 0.006672346033155918, -0.013270348310470581, -0.030451174825429916, -0.016162319108843803, -0.0026410596910864115, 0.0028417876455932856, -0.010103307664394379, 0.0030648186802864075, 0.00029551616171374917, -0.03140277415513992, 0.015879811719059944, -0.010742663405835629, 0.001962673384696245, -0.024756448343396187, 0.022882988676428795, 0.040978241711854935, -0.02622845396399498, -0.03425757214426994, 0.00208534044213593, -0.015062031336128712, 0.02835468389093876, -0.027299003675580025, 0.045974139124155045, -0.0031726169399917126, -0.009642376564443111, 0.024994349107146263, -0.042138002812862396, 0.033305972814559937, 0.045676764100790024, 0.006274607498198748, -0.03589313477277756, 0.009211183525621891, 0.0066277398727834225, 0.01708417944610119, 0.01547835674136877, 0.008876636624336243, 0.0024496247060596943, -0.006256021559238434, 0.017500504851341248, -0.04178115352988243, 0.03577418252825737, 0.01304731797426939, 0.10199954360723495, 0.025024086236953735, -0.03961031883955002, -0.0693477913737297, -0.017753273248672485, -0.03265174850821495, 0.004694804083555937, -0.0060664452612400055, -0.01638534851372242, 0.003639123635366559, 0.002581584732979536, 0.0005645473720505834, 0.021842176094651222, -1.5304345652111806e-05, 0.0037878109142184258, -0.014363201335072517, 0.0017740263137966394, 0.011515838094055653, -0.015203285031020641, 0.0015054597752168775, 0.0059660812839865685, -0.041275616735219955, 0.01596902497112751, -0.003653992433100939, -0.0032841325737535954, 0.002161542885005474, 0.011151553131639957, -0.004769147839397192, -0.031045924872159958, 0.025172773748636246, -0.027462558820843697, 0.001250832574442029, -0.017054442316293716, -0.012720205821096897, 0.0033491833601146936, -0.045111753046512604, 0.03987795487046242, -0.03149198740720749, 0.004438318312168121, 0.008809727616608143, -0.02823573350906372, 0.025767523795366287, 0.010943391360342503, 0.04065113142132759, 0.016281267628073692, -0.00805885624140501, 0.027417952194809914, -0.004572136793285608, 0.018466971814632416, 0.056114617735147476, 0.02164888195693493, 0.013314954936504364, -0.0030945560429245234, 0.035149697214365005, -0.005534887779504061, 0.024607760831713676, -0.07547371089458466, -0.03535785898566246, -0.016459692269563675, 0.031164875254034996, 0.0006286688148975372, 0.028994038701057434, -0.004081468563526869, 0.002821343019604683, 0.0010705491295084357, 0.036428406834602356, -0.09611152112483978, -0.04317881539463997, -0.010987997055053711, 0.017277473583817482, 0.04035375639796257, -0.040264543145895004, 0.003622396383434534, -0.009226052090525627, 0.005401069298386574, 0.016444824635982513, 0.023462869226932526, -0.02350747399032116, 0.007519864477217197, 0.017753273248672485, 0.037439484149217606, 0.001040811650454998, 0.08237280696630478, 0.016177186742424965, -0.05207031965255737, 0.03660683333873749, 7.649268809473142e-05, -0.005349028389900923, 0.04749074950814247, 0.010631147772073746, -0.06447084993124008, 0.00037590027204714715, 0.02493487298488617, 0.03425757214426994, 0.0038993265479803085, -0.006122203078120947, -0.03181909769773483, 0.01982002705335617, 0.012118021957576275, 0.02039990946650505, -0.007386045530438423, 0.02280864492058754, 0.023596687242388725, 0.028295207768678665, 0.023552080616354942, 0.004754278808832169, -0.0076202284544706345, -0.03687446936964989, -0.015790600329637527, -0.010393247939646244, 0.026540696620941162, -0.007285681553184986, -0.009367304854094982, -0.00883202999830246, -0.010608844459056854, 0.0046985214576125145, -0.01666785590350628, -0.04752048850059509, -0.013991482555866241, 0.043386977165937424, -0.003509022295475006, 0.04130535572767258, -0.03235437348484993, -0.021604277193546295, 0.019210409373044968, -0.03464416041970253, 0.03993742913007736, -0.016325874254107475, -0.01867513544857502, -0.020295826718211174, 0.020727021619677544, 0.00748269259929657, -0.051386360079050064, 0.01570138707756996, -0.03818291798233986, -0.030718812718987465, -0.005419655237346888, 0.0279383584856987, 0.005430806428194046, -0.02979695051908493, -0.05343824625015259, -0.015069466084241867, -0.032146211713552475, 0.0058805858716368675, 0.000456981360912323, -0.005088825710117817, 0.022124681621789932, -0.01583520695567131, 0.015344537794589996, -0.03122434951364994, -0.013701542280614376, 0.013039883226156235, 0.049840010702610016, -0.02607976645231247, -0.021143345162272453, 0.03107566200196743, 0.003557345597073436, 0.011671959422528744, 0.003101990558207035, -0.00018504609761293977, 0.003354758955538273, 0.03978874161839485, -0.028875090181827545, 0.009634941816329956, 0.017753273248672485, -0.0006821033312007785, -0.013248045928776264, -0.006583133712410927, -0.007062650751322508, 0.01683141104876995, -0.04850182309746742, 0.029306283220648766, 0.01779787987470627, -0.028146522119641304, 0.016593512147665024, -0.03583366051316261, -0.0024347559083253145, 0.015745993703603745, -0.020548595115542412, 0.04181089252233505, 0.04915604740381241, -0.033989936113357544, 0.023879192769527435, -0.02750716544687748, 0.022882988676428795, 0.004568419884890318, 0.009501123800873756, 0.01684628054499626, 0.018333153799176216, 0.009568032808601856, -0.0004186479200143367, -0.024265781044960022, 0.006895377300679684, 0.01953752152621746, -0.0008651746902614832, -0.016593512147665024, -0.00013590956223197281, -0.021143345162272453, 0.03624998405575752, 0.031045924872159958, 0.0036725783720612526, -0.0023381090722978115, -0.01839262992143631, -0.01141175627708435, -0.025767523795366287, -0.015270194038748741, 0.01332238968461752, -0.004144660662859678, 0.018422367051243782, 0.019359096884727478, 0.0014617828419432044, 0.027908621355891228, 0.005464261397719383, -0.03247332572937012, -0.03250306099653244, 0.028339814394712448, -0.008638736791908741, -0.01511407271027565, -0.02121768891811371, -0.004661349579691887, 0.040680866688489914, 0.011671959422528744, 0.05721490457653999, 0.018913034349679947, 0.003633547807112336, 0.043535664677619934, 0.04187036678195, -0.0385100319981575, 0.01518098171800375, -0.01025942899286747, -0.004248742014169693, 0.01669759303331375, 0.0032729809172451496, 0.011954465880990028, -0.011025168932974339, -0.02610950358211994, 0.029023775830864906, -0.002685665851458907, -0.04032401740550995, 0.017455898225307465, 0.026421748101711273, -0.02722465991973877, 0.004438318312168121, -0.0023678464349359274, -0.019582128152251244, -0.014935647137463093, -0.02552962303161621, -0.04975079745054245, -0.02594594843685627, 0.03034709393978119, -0.022050337865948677, -0.02596081607043743, -0.030049718916416168, -0.02294246293604374, 0.022630220279097557, -0.037826068699359894, -0.005899171810597181, -0.0006607295363210142, 0.02552962303161621, -0.021931389346718788, 0.00989514496177435, 0.01922527886927128, 0.03134329989552498, 0.024711843580007553, -0.029454970732331276, -0.004888097755610943, 0.0008484473801217973, 0.016132580116391182, 0.008452877402305603, 0.02578239142894745, -0.010266863740980625, -0.029469838365912437, -0.030034851282835007, 0.038420818746089935, -0.000647254753857851, 0.012935802340507507, -0.008950980380177498, -0.02609463594853878, -0.023730505257844925, -0.0025444128550589085, -0.014630838297307491, -0.009426780045032501, -0.0031726169399917126, 0.013463642448186874, 0.020191745832562447, -0.0002692635462153703, 0.0037041744217276573, 0.009374739602208138, -0.014415241777896881, -0.013894835487008095, -0.0370231568813324, -0.04258406534790993, 0.025172773748636246, 0.01305475179105997, 0.0013093783054500818, 0.02734360843896866, 0.019641602411866188, -0.04481437802314758, -0.035149697214365005, 0.02338852547109127, 0.039996907114982605, 0.008809727616608143, 0.027759933844208717, -0.0018929762300103903, -0.026852941140532494, -0.02210981398820877, -0.03175962343811989, -0.012995277531445026, -0.014311159960925579, -0.029291413724422455, 0.017307210713624954, -0.029544182121753693, -0.009069929830729961, -0.009389608167111874, 0.02152993343770504, -0.011248200200498104, -0.014288857579231262, -0.023894062265753746, 0.008014249615371227, -0.025038955733180046, 0.029321150854229927, -0.031700149178504944, 0.0065942853689193726, -0.0228235125541687, 0.010140479542315006, 0.026838071644306183, -0.01654890552163124, 0.013077055104076862, 0.016608379781246185, 0.01383536122739315, 0.03381150960922241, 0.01583520695567131, 0.006802447605878115, 0.026629909873008728, -0.057363592088222504, 0.0067801447585225105, 0.04790707305073738, -0.0007685279124416411, 0.013039883226156235, -0.013039883226156235, 0.005148300435394049, 0.0413350909948349, 0.0032859910279512405, 0.030480913817882538, -0.004761713556945324, -0.02624332346022129, -0.014318594709038734, 0.019463177770376205, 0.005884303245693445, 0.0038101142272353172, 0.00934500154107809, -0.02765585295855999, -0.005178038030862808, -0.020994657650589943, 0.027135446667671204, -0.009107101708650589, -0.017351817339658737, 0.030451174825429916, 0.009716720320284367, 0.00669464934617281, -0.05492511764168739, -0.011649656109511852, -0.015745993703603745, -0.00441601499915123, 0.03666630759835243, -0.04195958003401756, -0.0059809498488903046, 0.018154729157686234, -0.027849147096276283, -0.03922373056411743, -0.004568419884890318, 0.011709131300449371, -0.01190242450684309, 0.019478047266602516, -0.004858360160142183, -0.062389224767684937, -0.012564083561301231, -0.008735383860766888, 0.016504298895597458, 0.017336947843432426, -0.0037376289255917072, -0.02594594843685627, -0.00037799120764248073, -0.012586386874318123, -0.010504763573408127, 0.022020600736141205, 6.6176048676425125e-06, 0.008281887508928776, 0.031581200659275055, 0.04347619041800499, 0.011389452964067459, 0.0008075583609752357, -0.013887401670217514, 0.020340433344244957, -0.0070998226292431355, -0.003973670303821564, -0.007806087378412485, -0.0023529778700321913, 0.0035238908603787422, 0.00502191623672843, -0.005921475123614073, 0.008475180715322495, 0.007464106660336256, -0.014273989014327526, 0.01183551549911499, -0.004215287044644356, 0.0005529312184080482, -0.0011281655170023441, 0.014363201335072517, -0.004181832540780306, -0.008631302043795586, -0.030570125207304955, 0.003157748142257333, -0.012928367592394352, 0.006010687444359064, -0.011434059590101242, 0.01811012253165245, -0.017336947843432426, 0.0010343065951019526, 0.008103461936116219, -0.03110540099442005, 0.043535664677619934, -0.012935802340507507, 0.030332226306200027, 0.0013846512883901596, -0.005114845931529999, -0.012757377699017525, 0.02438472956418991, -0.02866692654788494, -0.0009562456980347633, 0.002592736156657338, 0.02891969494521618, 0.003211647504940629, 0.00020107644377276301, 0.02294246293604374, 0.0016337025444954634, -0.011991636827588081, -0.03687446936964989, -0.013143964111804962, -0.009374739602208138, -0.01547835674136877, -0.00666491175070405, -0.002999767893925309, -0.029023775830864906, 0.038866881281137466, -0.01304731797426939, -0.013463642448186874, 0.031581200659275055, -0.016727330163121223, 0.013441339135169983, 0.023745374754071236, -0.012935802340507507, 0.01369410753250122, 0.02877100743353367, 0.05147556960582733, 2.6630143111106008e-05, -0.06762301921844482, 0.02865205891430378, -0.03452520817518234, -0.030748549848794937, -0.0278045404702425, 0.01836289092898369, 0.00927809253334999, 0.002217300469055772, -0.02706110291182995, 0.038004495203495026, -0.03732053190469742, 0.011723999865353107, -0.007504995446652174, -0.00028924341313540936, -0.005059088114649057, 0.007371176965534687, 0.015047162771224976, -0.004508944693952799, -0.025752654299139977, 0.002886393805965781, 0.000299001025268808, 0.026540696620941162, -0.015760863199830055, 0.006122203078120947, 0.017158523201942444, -0.0266596470028162, -0.023849455639719963, 0.02108387090265751, -0.010251995176076889, 0.04760969802737236, 0.009382173418998718, -0.01983489654958248, 0.042821966111660004, 0.02835468389093876, 0.020206615328788757, 0.052546121180057526, -0.024592893198132515, -0.0091219712048769, -0.0464499369263649, 0.008378533646464348, 0.032859910279512405, -0.009434213861823082, -0.0002827383577823639, -0.008029118180274963, -0.00906249601393938, -0.014147603884339333, -0.00437884358689189, -0.03901556879281998, -0.008319059386849403, -0.002930999966338277, -0.0002448695304337889, 0.047847598791122437, -0.015255325473845005, 0.011530706658959389, -0.030837763100862503, 0.020429646596312523, 0.013151398859918118, -0.0040926202200353146, 0.041691940277814865, 0.003858437528833747, 0.006508789956569672, 0.010705491527915001, 0.012697902508080006, -0.008237280882894993, -0.029871294274926186, 0.009969488717615604, 0.032175950706005096, 0.00416696397587657, -0.005995818413794041, 0.012028808705508709, -0.001544490223750472, -0.01811012253165245, 0.02297220006585121, -0.01161991897970438, 0.005928909406065941, -0.00602183910086751, 0.015850074589252472, 0.03321675956249237, -0.0032599708065390587, -0.003754356410354376, 0.018704872578382492, -0.007609076797962189, 0.033008597791194916, -0.0228235125541687, 0.009426780045032501, 0.03416835889220238, -0.017604585736989975, 0.007051499094814062, -0.01068318821489811, -0.005772787611931562, -0.005910323467105627, -0.023998143151402473, 0.010118176229298115, -0.030272750183939934, -0.004248742014169693, 0.00023952608171384782, 0.004501510411500931, 0.016192056238651276, 0.0029365757945924997, -0.022585613653063774, 0.003653992433100939, -0.008638736791908741, 0.0064009916968643665, 0.046241775155067444, -0.011798343621194363, -0.03345466032624245, 0.009017889387905598, -0.018318286165595055, 0.030689075589179993, 0.011426624841988087, -0.012013940140604973, -0.0010324480244889855, -0.0057876561768352985, 0.03895609453320503, -0.014080694876611233, -0.03735027089715004, -0.013121661730110645, 0.018600791692733765, -0.004966158419847488, 0.036844734102487564, 0.021857045590877533, -0.01711391843855381, 0.017203129827976227, 0.0011662666220217943, 0.025276854634284973, 0.012913499027490616, 0.04023480415344238, -0.0026615040842443705, 0.013084489852190018, 0.0059809498488903046, 0.039996907114982605, -0.023641293868422508, -0.006456749513745308, -0.004245024640113115, -0.008237280882894993, 0.004687369801104069, -0.006185395177453756, 0.014415241777896881, -0.00434910599142313, -0.030034851282835007, -0.01739642396569252, -0.03479284793138504, -0.020072797313332558, 0.015374274924397469, -0.009508557617664337, -0.0062597389332950115, -0.008653605356812477, 0.0024124528281390667, -0.009664679877460003, -0.016177186742424965, -0.012995277531445026, 0.01354542002081871, 0.008385968394577503, 0.04059165343642235, 0.018853560090065002, -0.010735228657722473, 0.003653992433100939, -0.02068241499364376, -0.0013651360059157014, -0.013433905318379402, -0.03910478204488754, -0.013344692066311836, 0.005664989352226257, -0.02738821506500244, -0.007999381050467491, 0.01418477576225996, -0.03464416041970253, -0.014162473380565643, -0.02323983795940876, 0.006427011918276548, 0.011924727819859982, 0.01711391843855381, 0.0023548363242298365, 0.009709285572171211, -0.004192984197288752, -0.007858128286898136, -0.009069929830729961, 0.021708358079195023, -0.012370790354907513, 0.039312943816185, 0.0026187566109001637, 0.05215953290462494, -0.011872687377035618, -0.0049735927022993565, -0.02423604391515255, -0.008066290058195591, 0.002393866889178753, -0.008229846134781837, 0.009099667891860008, 0.008229846134781837, 0.03333571180701256, -0.029826689511537552, -0.009188880212605, 0.009181445464491844, 0.02996050752699375, -0.04276249185204506, -0.019180672243237495, -0.013761017471551895, 0.003555486910045147, 0.006404709070920944, 0.020756758749485016, -0.027908621355891228, -0.020028190687298775, -0.03431704640388489, 0.0008433362236246467, 0.014660575427114964, 0.03660683333873749, 0.012712771072983742, 0.0007141640526242554, -0.030406570062041283, 0.007635097019374371, -0.01784248650074005, 0.034852322190999985, -0.009218617342412472, -0.006601719651371241, 0.018050648272037506, 0.008475180715322495, 0.013084489852190018, -0.004140943754464388, 0.0292170699685812, -0.026481222361326218, 0.015270194038748741, -0.004289630800485611, -0.00904019270092249, 0.024622630327939987, -0.01219979953020811, -0.005542322061955929, 0.020295826718211174, 0.029291413724422455, 0.014452413655817509, 0.025603966787457466, 0.014370635151863098, 0.019314490258693695, 0.01897251047194004, -0.020622938871383667, -0.014407807029783726, 0.018585922196507454, -0.031997524201869965, -0.02453341707587242, -0.01153814047574997, -0.003425385570153594, -0.013946875929832458, 0.027968095615506172, 0.0021280881483107805, -0.01940370351076126, -0.02297220006585121, 0.022749168798327446, 0.0026261908933520317, -0.018139859661459923, 0.03140277415513992, -0.008504917845129967, 0.006389840040355921, -0.024027880281209946, 0.0079770777374506, -0.016474561765789986, -0.023923799395561218, 0.029112989082932472, -0.011441494338214397, -0.001053821761161089, 0.010995431803166866, 0.017768142744898796, 0.0010593975894153118, 0.03660683333873749, 0.038272131234407425, 0.029990244656801224, -0.017203129827976227, -0.018288547173142433, -0.013314954936504364, 0.0038956094067543745, 0.006430729292333126, 0.010958259925246239, 0.014430110342800617, -0.02294246293604374, 0.029618525877594948, 0.0010686905588954687, 0.007218772545456886, 0.016890887171030045, 0.03303833678364754, 0.002265624003484845, -0.021292032673954964, 0.001099357265047729, 0.011240766383707523, 0.01668272353708744, 0.01869000308215618, -0.008527221158146858, 0.0364878848195076, 0.010698056779801846, 0.006638891529291868, 0.019983584061264992, 0.0059660812839865685, 0.002284209942445159, 0.012928367592394352, -0.03773685544729233, 0.024979479610919952, 0.017708666622638702, 0.00906249601393938, -0.006222567055374384, -0.00017459150694776326, -0.004252458922564983, -0.0120511120185256, -0.014779525808990002, -0.04204878956079483, -0.013381863944232464, 0.010921088047325611, -2.4611827029730193e-05, 0.021619144827127457, 0.005672423634678125, 0.0006402850267477334, 0.03517943248152733, 0.042703017592430115, 0.01565678045153618, -0.01503229420632124, 0.01254178024828434, -0.02478618547320366, -0.01341160200536251, 0.01610284298658371, 0.036131031811237335, 0.04543886333703995, -0.023775111883878708, 0.024741580709815025, 0.03277069702744484, 0.016340743750333786, -0.03318702429533005, 0.011805778369307518, -0.010385813191533089, -0.04701494798064232, 0.026733990758657455, -0.003635406494140625, -0.000596143479924649, -0.008965848945081234, -0.01837776042521, -0.020043058320879936, 0.027120579034090042, 0.01912119798362255, 0.010809572413563728, 0.01225927472114563, -0.013143964111804962, 0.009924883022904396, -0.025157904252409935, -0.024830792099237442, -0.007397197186946869, 0.030005114153027534, -0.005854565650224686, 0.04279222711920738, -0.03178936243057251, 0.011382019147276878, 0.025722917169332504, -0.0038138313684612513, -0.026748860254883766, 0.0030127780046314, -0.015939287841320038, -0.0018901883158832788, 0.0046464805491268635, -0.03690420836210251, -0.007330287713557482, 0.013359561562538147, -0.00031386976479552686, -0.001413459423929453, -0.007185317575931549, -0.02682320401072502, -0.0008898010710254312, -0.015820337459445, -0.041245877742767334, 0.008051421493291855, 0.049958959221839905, -0.03562549501657486, 0.013106792233884335, -0.0038956094067543745, 0.001413459423929453, 0.020994657650589943, -0.0011198018910363317, -0.0038026797119528055, -0.004579571541398764, 0.02680833451449871, 0.04737180098891258, 0.007538450416177511, 0.00313358660787344, 0.0006802447605878115, 0.02594594843685627, 0.010779835283756256, -0.0011969334445893764, 0.007478975225239992, 0.02468210458755493, 0.03208673745393753, 0.008259584195911884, -0.0145416259765625, -0.010824440978467464, -0.002789746969938278, -0.0035276080016046762, 0.03663657233119011, 0.006501355674117804, 0.01126306876540184, -0.0024496247060596943, -0.0038956094067543745, 0.058404404670000076, 0.0033733448944985867, -0.024265781044960022, 0.01968620903789997, -0.03164067491889, -0.0006783861899748445, 0.010014095343649387, -0.007389762904495001, 0.007426934782415628, -0.025975685566663742, 0.006047859322279692, -0.013077055104076862, 0.024161700159311295, 0.03636893257498741, -0.005676140543073416, -0.03345466032624245, 0.012318749912083149, 0.03482258319854736, 0.00955316424369812, -0.007077519316226244, -0.008393402211368084, 0.025276854634284973, 0.008200109004974365, -0.003622396383434534, 0.0014301867922767997, 0.003096414729952812, 0.027700459584593773, 0.0010082862572744489, -0.011887555941939354, 0.009776195511221886, 0.00045953693916089833, -0.0036707196850329638, -0.028964301571249962, 5.328932456905022e-05, -0.030272750183939934, -0.02378998138010502, -0.017351817339658737, 0.0006184465601108968, 0.02109873853623867, 0.0007522652158513665, -0.0071481456980109215, 0.011396887712180614, -0.020548595115542412, 0.00441601499915123, -0.04749074950814247, -0.03333571180701256, -0.0005482847336679697, -0.03589313477277756, 0.010809572413563728, 0.008140633814036846, 0.00834136176854372, -0.028741270303726196, -0.02848850190639496, 0.023016806691884995, -0.015790600329637527, -0.02581212855875492, 0.01811012253165245, -0.012289011850953102, 0.01332238968461752, -0.0036744368262588978, -0.012065980583429337, -0.034733373671770096, -0.0012331759789958596, -0.014913344755768776, 0.004386277869343758, -0.019983584061264992, 0.02025122195482254, -0.018645398318767548, -0.021455589681863785, 0.02381971850991249, 0.032175950706005096, 0.02478618547320366, 0.033424925059080124, -0.016623249277472496, -0.005367614328861237, 0.026302797719836235, -0.01255664974451065, -0.008861768059432507, 0.00042701157508417964, -0.002317664446309209, -0.023760244250297546, 0.03021327592432499, -0.009731588885188103, -0.037409745156764984, 0.025024086236953735, 0.029008908197283745, 0.008475180715322495, -0.015716256573796272, -0.00599210150539875, -0.03907504305243492, -0.0052263615652918816, 0.0026094636414200068, 0.005523736122995615, 0.0038695891853421926, 0.0195226538926363, 0.004520096350461245, -0.03910478204488754, -0.008081159554421902, 0.014385503716766834, -0.01641508750617504, 0.015820337459445, -0.009627507999539375, -0.008497484028339386, -0.07743638753890991, -0.013850229792296886, 0.00812576524913311, 0.02738821506500244, -0.013790754601359367, -0.029440101236104965, 0.022288238629698753, 2.8938862669747323e-05, -0.03532811999320984, -0.012526911683380604, -0.0031001318711787462, -0.022273369133472443, 0.018006041646003723, 0.0017368544358760118, -0.019864633679389954, -0.003233950585126877, -0.005163169465959072, -0.023284444585442543, -0.009530860930681229, 0.00290683819912374, 0.0001030357088893652, -0.007858128286898136, 0.02292759343981743, -0.013441339135169983, -0.0195226538926363, 0.025410672649741173, -0.003408658318221569, 0.006951135117560625, 0.0008489119936712086, -0.02951444499194622, 0.017009835690259933, 0.008296756073832512, -0.019641602411866188, -0.01894277147948742, 0.012876327149569988, 0.014995122328400612, -0.020429646596312523, -0.008244715631008148, 0.026332534849643707, 0.009434213861823082, 0.023462869226932526, 0.015136375091969967, -0.021039264276623726, 0.018006041646003723, 0.017054442316293716, -0.0032488193828612566, -0.0012210950953885913, -0.01626639999449253, -0.009092233143746853, 0.014370635151863098, -0.0021466740872710943, 0.0018650973215699196, -0.030480913817882538, -0.017649192363023758, 0.0036911643110215664, 0.01104747224599123, 0.03021327592432499, -0.014957950450479984, -0.014452413655817509, 0.01837776042521, 0.0011913576163351536, 0.019017115235328674, 0.004289630800485611, -0.0010909936390817165, -0.020741889253258705, 0.005375048611313105, 0.016087975353002548, 0.024429336190223694, 0.041097190231084824, 0.007497561164200306, 0.02478618547320366, 0.004096337128430605, 0.0017926122527569532, -0.0043119341135025024, 0.0060590109787881374, -0.01909145899116993, 0.0039848219603300095, 0.007508712820708752, 0.011865252628922462, 0.0016225510044023395, -0.028012702241539955, 0.017991172149777412, 0.001661581452935934, -0.008460312150418758, -0.018288547173142433, -0.018154729157686234, 0.003351041814312339, 0.01767892949283123, -0.016177186742424965, 0.005456826649606228, 0.024265781044960022, 0.015359406359493732, 0.059653379023075104, -0.004345388617366552, -0.008534655906260014, 0.0430896021425724, -0.012147759087383747, 0.033008597791194916, -0.010348641313612461, 0.0005710524856112897, 0.020176878198981285, -0.0012229536660015583, -0.006070162169635296, 0.0010008519748225808, -0.011382019147276878, -0.017708666622638702, -0.011820646934211254, -0.0031614655163139105, -0.01098056323826313, -0.02436986193060875, -0.01940370351076126, -0.011709131300449371, -0.034971270710229874, 0.010527066886425018, 0.0031596068292856216, -0.011865252628922462, 0.022912725806236267, -0.0024775033816695213, -0.006702083628624678, 0.0015732983592897654, 0.0007192752091214061, 0.009791064076125622, 0.01012561097741127, -0.03333571180701256, -0.0043268026784062386, -0.01950778439640999, -0.006222567055374384, -0.0033937895204871893, 0.010318904183804989, 0.026421748101711273, -0.027864014729857445, 0.004330520052462816, -0.0024421901907771826, 0.008073724806308746, -0.0033045769669115543, 0.00502191623672843, 0.021738095209002495, -0.02536606788635254, 0.0436248779296875, -0.028116783127188683, 0.021990863606333733, 0.02549988590180874, -0.011731434613466263, -0.01048989500850439, -0.011500968597829342, -0.010445288382470608, -0.007542167324572802, -0.029856426641345024, -0.0071481456980109215, -0.009003020823001862, -0.0013883684296160936, -0.00976876076310873, 0.029261676594614983, -0.010058701038360596, -0.012958105653524399, -0.03732053190469742, 0.01289863046258688, 0.003325021592900157, -0.001988693606108427, -0.014749787747859955, -0.020697282627224922, -0.003399365348741412, 0.006557113490998745, -0.009657245129346848, 0.019924109801650047, 0.0067281038500368595, -0.0018799661193042994, -0.010445288382470608, -0.0005896383663639426, 0.027819408103823662, 0.01726260408759117, -0.015255325473845005, -0.027759933844208717, -0.03152172639966011, 0.022020600736141205, -0.026838071644306183, 0.020043058320879936, 0.006902811583131552, 0.02466723695397377, -0.01509920321404934, -0.013396733440458775, 0.008898939937353134, 0.006512507330626249, 0.01751537434756756, -0.013813057914376259, -0.0075272987596690655, 0.017991172149777412, 0.0014859444927424192, -0.00712212547659874, 0.008244715631008148, 0.016340743750333786, 0.013426470570266247, 0.006233718246221542, -0.00517060374841094, 0.004449469968676567, 0.0015147527446970344, 0.02664477936923504, 0.028473634272813797, -0.015024859458208084, -0.006873073987662792, -0.0074343690648674965, -0.02963339537382126, 0.0182439424097538, 0.009114536456763744, 0.013813057914376259, 0.0011737010208889842, -0.019344227388501167, 0.038272131234407425, -0.004259893670678139, 0.0017749556573107839, -0.007806087378412485, 0.009441648609936237, -0.002304654335603118, 0.018452104181051254, -0.02949957549571991, -0.016370480880141258, -0.006824750918895006, -0.014653141610324383, 0.008415705524384975, -0.0007160226814448833, 0.028339814394712448, 0.009032757952809334, 0.01417734194546938, -0.00238829106092453, 0.018348023295402527, 0.03738000616431236, -0.009434213861823082, -0.008504917845129967, -0.005207775626331568, 0.01910632848739624, 0.006475335452705622, 0.000546890776604414, 0.013255479745566845, -0.005122280213981867, -0.04433857649564743, 0.008371099829673767, 0.03717184439301491, 0.0067281038500368595, 0.030629601329565048, 0.0009134981082752347, -0.005705878138542175, -0.011136684566736221, -0.027299003675580025, -0.027254397049546242, 0.01808038540184498, 0.011716566048562527, -0.026317667216062546, -0.0038956094067543745, -0.010445288382470608, 0.01112925074994564, -0.0045981574803590775, -0.026733990758657455, -0.01822907291352749, 0.012430264614522457, 0.004880663473159075, -0.009300395846366882, -0.003847285872325301, -0.011515838094055653, 0.0023436849005520344, -0.008750252425670624, -0.03794502094388008, -0.008415705524384975, 0.00563153438270092, -0.021069001406431198, 0.028577715158462524, -0.006768993102014065, -0.017916830256581306, 0.00456470251083374, -0.011723999865353107, -0.014593666419386864, -0.017039574682712555, -0.0010166499996557832, -0.0156865194439888, 0.010385813191533089, 0.003023929661139846, 0.017738403752446175, -0.019165802747011185, -0.035119958221912384, 0.007557036355137825, -0.011701696552336216, -0.002072330331429839, -0.012132890522480011, -0.00417068088427186, -0.00302764680236578, 0.006809881888329983, 0.0021671184804290533, 0.008653605356812477, -0.019359096884727478, 0.008281887508928776, 0.009590336121618748, -0.016638118773698807, 0.016638118773698807, -0.000336869852617383, -0.008148068562150002, 0.027908621355891228, -0.01098056323826313, -0.023968406021595, -0.010066135786473751, 0.0022563310340046883, 0.003306435653939843, 0.007969643920660019, 0.01726260408759117, -0.02436986193060875, -0.01712878607213497, -0.02764098346233368, -0.00029714242555201054, 0.006783861666917801, -0.011017735116183758, 0.0182439424097538, 0.0014831565786153078, 0.007337722461670637, 0.0016662279376760125, -0.030599862337112427, -0.008222412317991257, -0.031045924872159958, 0.03125408664345741, 0.010921088047325611, -0.0055534737184643745, 0.0032804154325276613, -0.02810191549360752, 0.03253279998898506, 0.019924109801650047, 0.02338852547109127, 0.008110896684229374, -0.0313730388879776, -0.005899171810597181, -0.019284753128886223, -0.002789746969938278, 0.006943700835108757, 0.009107101708650589, -0.05221900716423988, 0.04002664238214493, -0.02365616150200367, 0.008162937127053738, -0.024295518174767494, 0.009322699159383774, -0.0022451793774962425, 0.004159529693424702, 0.0017981879645958543, 9.067897735803854e-06, 0.016786804422736168, 0.022734301164746284, -0.005672423634678125, 0.0019031984265893698, -0.012170062400400639, -0.00032920314697548747, -0.01940370351076126, 0.027626115828752518, 0.03369256108999252, -0.00819267425686121, 0.02378998138010502, 0.007296833209693432, 0.005572059657424688, -0.001879036775790155, -0.013872532173991203, 0.04549833759665489, -0.005568342283368111, 0.01354542002081871, -0.014876172877848148, -0.029871294274926186, -0.003016495145857334, 0.0006588709657080472, -0.006092465482652187, 0.020548595115542412, -0.006099899765104055, 0.005940061062574387, 0.007378611247986555, -0.009924883022904396, 0.006865639705210924, -0.017307210713624954, 0.01638534851372242, -0.0042264387011528015, -0.016325874254107475, 0.00961263943463564, -0.02607976645231247, -0.010326338931918144, -0.008430574089288712, 0.02037017047405243, -0.00608874810859561, -0.0006839619600214064, -0.0006458607967942953, 0.012303880415856838, -0.02891969494521618, -0.011173856444656849, -0.008133199997246265, -0.0011188725475221872, -0.008876636624336243, 0.011315110139548779, -0.02677859738469124, -0.0051668863743543625, -0.03767738118767738, -0.00870564579963684, 0.009434213861823082, 0.03107566200196743, 0.01739642396569252, 0.0030703945085406303, -0.013314954936504364, 0.01940370351076126, -0.036012083292007446, -0.017738403752446175, -0.006285759154707193, 0.007389762904495001, 0.004144660662859678, 0.031283825635910034, -0.011642222292721272, 0.03767738118767738, 0.005572059657424688, 0.02295733243227005, -0.0004144660779275, -0.014318594709038734, -0.013062186539173126, -0.01681654341518879, 0.018006041646003723, 0.006211415398865938, -0.02095005288720131, 0.022035470232367516, -0.011158987879753113, 0.02521738037467003, -0.014526757411658764, 0.01189499069005251, -0.016028499230742455, 0.0030573841650038958, -0.018199335783720016, -0.01565678045153618, 0.00712212547659874, 0.03321675956249237, -0.03306807205080986, 0.0020128553733229637, 0.01547835674136877, -0.013746147975325584, -0.0059809498488903046, 0.0276707224547863, 0.00505537074059248, 0.037142109125852585, 0.014653141610324383, -0.02166375145316124, -0.004676218144595623, -0.01125563494861126, -0.01668272353708744, -0.011634787544608116, -0.03306807205080986, -0.014563929289579391, 0.006746689788997173, -0.013344692066311836, -0.010995431803166866, -0.005783939268440008, 0.007084953598678112, -0.018898166716098785, 0.005776504520326853, 0.024711843580007553, 0.01382049173116684, -0.0278045404702425, 0.020266089588403702, -0.001097498694434762, 0.023001937195658684, 0.04023480415344238, -0.006356385536491871, -0.0026131807826459408, -0.011515838094055653, 0.01390227023512125, 0.02037017047405243, 0.01318113598972559, -0.00708867097273469, 0.012935802340507507, -0.0021503912284970284, -0.0006881437730044127, 0.026183847337961197, -0.0031428795773535967, -0.0195226538926363, -0.013337258249521255, 0.009731588885188103, 0.016905754804611206, 0.021306902170181274, -0.01296553947031498, 0.035149697214365005, -0.028324946761131287, 0.004876946099102497, -0.021559670567512512, -0.001990552293136716, -0.011575312353670597, -0.004367691930383444, -0.00898071750998497, -0.009679548442363739, 0.02651095949113369, 0.016593512147665024, -0.01341160200536251, 0.028161389753222466, 0.0006012545782141387, -0.004018276464194059, 0.03550654649734497, -0.0027395649813115597, 0.012184930965304375, -0.029410364106297493, 0.030897237360477448, 0.0228235125541687, 0.007746612653136253, 0.014511887915432453, -0.01126306876540184, 0.009538295678794384, 0.0030982731841504574, -0.001856733695603907, -0.010266863740980625, -0.0430896021425724, -0.013612329959869385, 0.01782761700451374, 0.006531093269586563, 0.006118485704064369, 0.01641508750617504, 0.016861148178577423, -0.03024301305413246, -0.0063935574144124985, 0.008363665081560612, -0.004438318312168121, 0.004891814664006233, 0.005698443856090307, 0.0004153953632339835, 0.016638118773698807, -0.003973670303821564, -0.005490281619131565, 0.008452877402305603, -0.008683343417942524, -0.006601719651371241, -0.0028232017066329718, -0.005059088114649057, 0.0028417876455932856, 0.005910323467105627, -0.012586386874318123, 0.005404786206781864, -0.01894277147948742, 0.018422367051243782, 0.006036707665771246, -0.0276707224547863, 0.003639123635366559, 0.004062882624566555, 0.03019840642809868, 0.006557113490998745, -0.005096259992569685, 0.006977155338972807, -0.006932549178600311, 0.008623868227005005, -0.01656377501785755, 0.011597615666687489, -0.013619763776659966, 0.005828545428812504, 0.020474253222346306, 0.04588492587208748, 0.012274143286049366, 0.008802292868494987, -0.015760863199830055, 0.0006974367424845695, -0.006155657581984997, -0.006505073048174381, -0.004661349579691887, 0.009902579709887505, -0.005152017809450626, 0.0004572136967908591, -0.010021529160439968, -0.002590877702459693, 0.004772864747792482, -0.032711222767829895, 0.019076591357588768, 0.005189189687371254, 0.03348439931869507, -0.0014348332770168781, 0.006757841445505619, 0.006932549178600311, 0.0024198871105909348, -0.026287928223609924, 0.004282196518033743, -0.005122280213981867, 0.02038503997027874, -0.0035926587879657745, -0.0021429569460451603, 0.010705491527915001, 0.015537831000983715, -0.0196564719080925, -0.01375358272343874, -0.02365616150200367, -0.0145416259765625, -0.016325874254107475, 0.016905754804611206, -0.012697902508080006, 0.02224363200366497, -0.004891814664006233, 0.029321150854229927, -0.015909548848867416, -0.01076496671885252, 0.012549214996397495, 0.03294912353157997, -0.005427089519798756, 0.0031521725468337536, 0.0071072569116950035, -0.0024310387670993805, 0.00991744827479124, 0.0063601029105484486, -0.019418571144342422, -0.00709238788112998, -0.0044122980907559395, -0.008096028119325638, 0.016593512147665024, -0.004274762235581875, 0.014318594709038734, -0.01211058720946312, -0.008393402211368084, -0.012512043118476868, 0.009166576899588108, 0.0024236042518168688, -0.020741889253258705, -0.01680167391896248, -0.008200109004974365, -0.026347404345870018, -0.012385658919811249, 0.0027321306988596916, 0.017708666622638702, -0.00015182375500444323, -0.010281732305884361, 0.004468055907636881, 0.017441030591726303, -0.0047988854348659515, 0.005624100100249052, -0.001154185738414526, 0.02792349085211754, 0.022838382050395012, 0.025886472314596176, -0.0008535584784112871, -0.02422117441892624, -0.009776195511221886, 0.011248200200498104, -0.015879811719059944, -0.0051743206568062305, -0.005456826649606228, 0.017916830256581306, -0.011723999865353107, 0.02181243896484375, -0.0278045404702425, -0.005746767390519381, -0.006932549178600311, -0.009560598991811275, 0.0029737476725131273, 0.018020911142230034, -0.016311004757881165, -0.018303416669368744, 0.008460312150418758, 0.01104747224599123, -0.00441601499915123, 0.009107101708650589, 0.016742199659347534, 0.0025369783397763968, 0.005921475123614073, 0.009731588885188103, -0.001986835151910782, 0.01654890552163124, 0.004754278808832169, -0.016206923872232437, 0.0025611401069909334, 0.005062805488705635, 0.0019924109801650047, -0.00976876076310873, 0.018422367051243782, -0.024473942816257477, -0.009032757952809334, 0.0011737010208889842, 0.010527066886425018, -0.01254178024828434, 0.00782839022576809, -0.0056464034132659435, -0.020608071237802505, -0.007519864477217197, 0.006479052826762199, 0.014697747305035591, 0.019076591357588768, -0.022139551118016243, 0.00840083695948124, -0.007010609842836857, -0.0004915976314805448, 0.022347712889313698, -0.001082630013115704, -0.0024366143625229597, 0.003109424840658903, 0.021143345162272453, -0.010794703848659992, 0.02066754549741745, -0.011493534781038761, 0.009389608167111874, 0.004438318312168121, 0.01796143501996994, 0.03809370845556259, 0.0172328669577837, -0.012928367592394352, -0.012140324339270592, 0.026733990758657455, -0.00766483461484313, -0.029246807098388672, 0.008653605356812477, 0.01897251047194004, 0.009003020823001862, -0.0289494339376688, 0.007360025309026241, -0.02022148296236992, 0.0027191205881536007, -0.0011337412288412452, 0.005051653832197189, 0.024860529229044914, 0.0031465967185795307, 0.0059735155664384365, 0.004966158419847488, 0.019715946167707443, -0.014742353931069374, 0.025276854634284973, 0.007504995446652174, -0.0003210717986803502, 0.009739023633301258, 0.020741889253258705, 0.02037017047405243, -0.02765585295855999, -0.0064939213916659355, 0.025143036618828773, 0.0018269962165504694, -0.021574538201093674, 0.019017115235328674, -0.007746612653136253, -0.015225587412714958, -0.006531093269586563, -0.011924727819859982, 0.040680866688489914, 0.008371099829673767, 0.012385658919811249, 0.014712615869939327, 0.010861612856388092, 0.005984667222946882, -0.007032913155853748, -0.0020184312015771866, -0.02124742604792118, 0.00024417255190201104, -0.001977542182430625, 0.0072373584844172, 0.01726260408759117, -0.0019199257949367166, -0.01189499069005251, -0.010415551252663136, -0.01611771248281002, -0.0026800900232046843, 0.012422830797731876, 0.010058701038360596, 0.0011216604616492987, 0.012028808705508709, -0.000785255222581327, 0.015552700497210026, 0.01938883401453495, -0.014920778572559357, -0.013010146096348763, -0.0066872150637209415, -0.011746303178369999, -0.01654890552163124, 0.003306435653939843, -0.038539767265319824, -0.010675754398107529, 0.01396174542605877, 0.007371176965534687, 0.004516378976404667, -0.0092557892203331, 0.026124373078346252, 0.004813753999769688, 0.02752203494310379, 0.0027525750920176506, -0.007125842850655317, 0.01141175627708435, 0.01611771248281002, -0.02182730659842491, -0.004003407899290323, 0.016132580116391182, 0.010668319649994373, 0.0104006826877594, 0.025871604681015015, -0.0002825060219038278, 0.022288238629698753, 0.0028399289585649967, -0.005895454436540604, 0.021604277193546295, 0.0028752421494573355, 0.01240796223282814, 0.020741889253258705, -0.01784248650074005, 0.005995818413794041, -0.029425231739878654, -0.004542399663478136, 0.0030666771344840527, 0.0005306280800141394, 0.0005482847336679697, 0.014028654433786869, 0.003148455172777176, 0.014563929289579391, -0.004152094945311546, 0.014400373212993145, -2.6746303774416447e-05, 0.0197902899235487, -0.021842176094651222, -0.006345233879983425, 0.020266089588403702, 0.016058236360549927, 0.00906249601393938, -0.01253434643149376, 0.013649501837790012, 0.0006124061765149236, -0.024325255304574966, 0.007902733981609344, 0.023269575089216232, -0.002501665148884058, -0.014147603884339333, 0.02181243896484375, 0.01784248650074005, -0.023566950112581253, 0.009055061265826225, 0.004356540273874998, 0.01811012253165245, -0.007872996851801872, -0.004267327953130007, -0.013441339135169983, 0.003756214864552021, -4.81201168440748e-05, -0.014192210510373116, 0.002523968229070306, -0.0026392010040581226, 0.0017442888347432017, 0.020727021619677544, 0.009003020823001862, 0.003250677837058902, -0.014192210510373116, -0.028994038701057434, -0.017441030591726303, 0.0003073647094424814, -0.010318904183804989, 0.009805932641029358, -0.009263223968446255, 0.0020463101100176573, 0.02420630492269993, -0.0197902899235487, 0.017307210713624954, -0.004720824304968119, 0.008200109004974365, -0.004051730968058109, -0.010869047604501247, 0.0047059557400643826, 0.029023775830864906, 0.018214203417301178, 0.007360025309026241, 0.019061721861362457, -0.011872687377035618, -0.011225896887481213, 0.02737334743142128, 0.02480105496942997, 0.012370790354907513, -0.008869201876223087, 0.009263223968446255, 0.0005078603280708194, 0.01247487124055624, -0.011025168932974339, 0.0078432597219944, 0.013025014661252499, 0.005211492534726858, -0.021277165040373802, -0.012697902508080006, 0.016058236360549927, -0.002074189018458128, 0.016281267628073692, 0.003120576497167349, -0.0038249827921390533, 0.0028417876455932856, 0.018065515905618668, -0.0010872764978557825, 0.025157904252409935, 0.0008767909021116793, -0.008869201876223087, 0.005311856511980295, -0.01680167391896248, 0.006839619483798742, -0.0238345880061388, 0.006869357079267502, -0.00883202999830246, 0.0044197323732078075, 0.01695036143064499, -0.01738155446946621, -0.008854333311319351, -0.012935802340507507, -0.0019162086537107825, -0.03360334783792496, 0.024280648678541183, -0.009932316839694977, -0.006501355674117804, -0.00126384268514812, -0.0012647720286622643, 0.007746612653136253, -0.010497328825294971, 0.008713080547749996, 0.008824596181511879, 0.004482924472540617, -0.02378998138010502, 0.01396174542605877, 0.0022600481752306223, -0.010103307664394379, -0.029901031404733658, 0.01766405999660492, 0.015404012985527515, -0.015864944085478783, -0.018035778775811195, -0.02692728489637375, 0.018422367051243782, -0.004713390022516251, -0.0185115784406662, 0.0006505072815343738, 0.007542167324572802, -0.010326338931918144, 0.00834136176854372, -0.04249485209584236, -0.0012852165382355452, 0.0042190044187009335, -0.009240920655429363, -0.013842795044183731, 0.007003175560384989, -0.012794549576938152, -0.0005812747403979301, 0.011218463070690632, 0.0023455433547496796, 0.004449469968676567, 0.0028362118173390627, 0.02735847793519497, 0.010333772748708725, -0.026317667216062546, 0.005835979711264372, 0.014430110342800617, 0.0020277241710573435, 0.015641912817955017, 0.03592287003993988, 0.012742508202791214, 0.007192751858383417, -0.009694417007267475, -0.001358630950562656, -0.035119958221912384, -0.007649965584278107, 0.006352668162435293, 0.0067801447585225105, -0.012170062400400639, 0.0032488193828612566, -0.009962054900825024, 0.004081468563526869, 0.011025168932974339, -0.013136530295014381, 0.004683652427047491, 0.01640021800994873, 0.015864944085478783, -0.015047162771224976, 0.010943391360342503, 0.012311315163969994, 0.01638534851372242, -0.012385658919811249, 0.002700534649193287, 0.010527066886425018, -0.01347851101309061, -0.0018251376459375024, 0.0014097422827035189, 0.010564238764345646, 0.009679548442363739, 0.0071555799804627895, 0.012586386874318123, -0.002581584732979536, 0.016757067292928696, 0.009850539267063141, 0.01922527886927128, 0.0029291415121406317, 0.03946163132786751, 0.00029946566792204976, 0.007947340607643127, 0.0017879657680168748, -0.006858205422759056, 0.0009924882324412465, -0.012385658919811249, -0.006873073987662792, 0.005293270573019981, 0.0038212656509131193, -0.022853249683976173, -0.009835670702159405, 0.037409745156764984, -0.03987795487046242, 0.002165260026231408, 0.00989514496177435, -0.03277069702744484, -0.006103617139160633, 0.021351508796215057, -0.022764038294553757, 0.0036967399064451456, 0.0030778287909924984, -0.001150468597188592, 0.025990555062890053, 0.0003949508536607027, -0.02481592446565628, 0.0007880431367084384, 0.027150316163897514, 0.01119615975767374, 0.003969952929764986, 0.006564547773450613, -0.008096028119325638, -0.009240920655429363, 0.024592893198132515, 0.02066754549741745, -0.031997524201869965, 0.0019273601938039064, -0.00587686849758029, -0.0018316427012905478, 0.005791373550891876, 0.00392534676939249, -0.02938062697649002, 0.004315651021897793, 0.017158523201942444, -0.014095563441514969, -0.010861612856388092, -0.019983584061264992, 0.007835824973881245, -0.0041335090063512325, 0.005345311481505632, 0.009389608167111874, 0.01610284298658371, -0.0021113608963787556, 0.009136839769780636, 0.001563076046295464, 0.004100054502487183, -0.015418881550431252, 0.006553396116942167, 0.006761558819562197, 0.0030518085695803165, 0.016920624300837517, 0.010534500703215599, 0.007040347438305616, 0.01433346327394247, 0.02280864492058754, 0.010296600870788097, 0.0011049330933019519, 0.021752964705228806, -0.005798807833343744, 0.00247936206869781, 0.0042264387011528015, 0.009902579709887505, -0.00669464934617281, 0.017173392698168755, -0.005401069298386574, -0.01640021800994873, 0.004181832540780306, 0.006006970070302486, 0.018645398318767548, 0.006802447605878115, -0.0019347945926710963, 0.006189112085849047, -0.009270657785236835, 0.005497715901583433, 0.015760863199830055, -0.020429646596312523, 0.009099667891860008, 0.014786959625780582, -0.011872687377035618, 0.010118176229298115, -0.013649501837790012, 0.005404786206781864, 0.023745374754071236, -0.01611771248281002, -4.373499905341305e-05, 0.004118640441447496, -0.00022221793187782168, -0.02750716544687748, 0.003854720387607813, -0.007125842850655317, -0.01937396638095379, 0.0131960054859519, 0.02582699805498123, 0.017872223630547523, -0.00544939236715436, -0.0035536284558475018, -0.010281732305884361, 0.013002711348235607, 0.0010147914290428162, 0.0056947264820337296, 0.012296446599066257, 0.004999613389372826, 0.004620460327714682, 0.00666119484230876, 0.027685590088367462, -0.018630528822541237, 0.0026615040842443705, 0.013233176432549953, 0.002496089320629835, -0.000878184859175235, 0.003189344424754381, -0.014943081885576248, -0.015374274924397469, 0.00940447673201561, -0.002070471877232194, -0.013077055104076862, -0.012831720523536205, 0.005698443856090307, 0.019626734778285027, 0.01561217475682497, 0.011077210307121277, -0.012073415331542492, -0.010244560427963734, 0.007531015668064356, -0.009017889387905598, 0.01811012253165245, 0.010095872916281223, -0.010987997055053711, -0.008222412317991257, 0.010318904183804989, 0.003609386272728443, -0.012757377699017525, 0.026124373078346252, 0.00805885624140501, -0.0013391156680881977, 0.017009835690259933, -0.01924014650285244, 0.008623868227005005, -0.004088902845978737, 0.029990244656801224, -0.004081468563526869, -0.01836289092898369, -0.015389143489301205, -0.004579571541398764, 0.021425850689411163, -0.008237280882894993, 0.023552080616354942, -0.011017735116183758, -0.028116783127188683, -0.007029195781797171, -0.005334159824997187, 0.009999226778745651, 0.01153814047574997, 0.008385968394577503, 0.03181909769773483, -0.009292961098253727, 0.018050648272037506, -0.018199335783720016, -0.022124681621789932, -0.018585922196507454, -0.006133354268968105, 0.008371099829673767, 0.0036930227652192116, 0.0040851859375834465, -0.013485945761203766, -0.006319213658571243, 0.008281887508928776, -0.005620383191853762, 0.012125455774366856, 0.013575158081948757, -0.007564470637589693, 0.004880663473159075, -0.011575312353670597, -0.01753024198114872, 0.011478666216135025, -0.00477658212184906, 0.005943777970969677, -0.009679548442363739, 0.005501433275640011, -0.013255479745566845, 0.004181832540780306, -0.007716875057667494, 0.017158523201942444, -0.002813908737152815, 0.016920624300837517, -0.013136530295014381, -0.030302487313747406, -0.012482305988669395, -0.015218153595924377, 0.014095563441514969, 0.007880431599915028, -0.02677859738469124, 0.006006970070302486, -0.001875319634564221, 0.025901341810822487, -0.01104747224599123, -0.006285759154707193, 0.007954774424433708, 0.002300937194377184, -0.013381863944232464, 0.0017173392698168755, -0.009330132976174355, -0.010519632138311863, -0.00663145724684, 0.022778905928134918, -0.023700768128037453, -0.009709285572171211, 0.008371099829673767, 0.006865639705210924, 0.0064864871092140675, 0.0170990489423275, -0.0018985519418492913, -0.0024644932709634304, -0.009530860930681229, 0.0007801441242918372, 0.0010659026447683573, -0.01867513544857502, -0.004040579777210951, -0.01034120749682188, 0.01712878607213497, -0.017069311812520027, -0.0059809498488903046, -0.0005366685218177736, -0.029261676594614983, 0.0060738795436918736, 0.002061178907752037, -0.03934268280863762, -0.02792349085211754, -0.0040926202200353146, 0.019909240305423737, 0.007902733981609344, -0.006508789956569672, 0.002161542885005474, 0.0016550763975828886, -0.001661581452935934, -0.01418477576225996, 0.008073724806308746, 0.013775886036455631, -0.01226670853793621, 0.02539580501616001, -0.020875709131360054, -0.0006379617843776941, -0.009017889387905598, -0.002165260026231408, -0.013381863944232464, -0.03491179645061493, -0.00669464934617281, 0.018585922196507454, 0.01653403602540493, -0.018065515905618668, -1.5057501514093019e-05, 0.00019491986313369125, -0.0047394102439284325, 0.0006593355792574584, 0.0073414393700659275, -0.010913653299212456, -0.017366686835885048, -0.014734919182956219, -0.004731975961476564, -0.014682878740131855, -0.001334469299763441, 0.01598389260470867, 0.003302718512713909, 0.0008154573733918369, -0.013270348310470581, -0.00043932473636232316, -0.02765585295855999, -0.008720515295863152, -0.007902733981609344, -0.011805778369307518, 0.008304189890623093, -0.005363897420465946, 0.010660884901881218, 0.00970185175538063, -0.01922527886927128, 0.005196623969823122, 0.00989514496177435, 0.006757841445505619, 0.002717261901125312, -0.02181243896484375, 0.0005612948443740606, -0.01796143501996994, 0.016742199659347534, 0.001451560528948903, -0.012958105653524399, 0.0031503138598054647, 0.021425850689411163, 0.012586386874318123, 0.009672113694250584, -0.012824286706745625, -0.006371254101395607, -0.011181291192770004, 0.010571672581136227, 0.004575854167342186, -0.006932549178600311, -0.008884071372449398, 0.011077210307121277, 0.0052263615652918816, -0.012653295882046223, 0.0023343919310718775, 0.005620383191853762, 0.012065980583429337, 0.0057393331080675125, -0.00883202999830246, 0.010415551252663136, 0.006352668162435293, -0.013634633272886276, -0.022749168798327446, -0.002589019015431404, 0.0012972974218428135, 0.007820956408977509, -0.024131961166858673, 0.00018853094661608338, 0.00559807987883687, -0.017441030591726303, -0.015582437627017498, -0.026273060590028763, -0.011374584399163723, 0.019894370809197426, -0.016459692269563675, -0.004237590357661247, -0.0006216990877874196, 0.010809572413563728, -0.008519787341356277, 0.01968620903789997, 0.007798653095960617, 0.02621358446776867, 0.020206615328788757, -0.0028882522601634264, 0.01368667371571064, -0.007110973820090294, 0.002620615065097809, -0.009047627449035645, -0.011813212186098099, 0.004408580716699362, 0.024741580709815025, 0.003951366990804672, -0.00875768717378378, -0.014511887915432453, -0.0077689155004918575, -0.006501355674117804, -0.019329359754920006, 0.010928522795438766, -0.0031558896880596876, 0.0015110354870557785, 0.028042439371347427, -0.015166113153100014, -0.007296833209693432, -0.02996050752699375, 0.013129095546901226, -0.01711391843855381, 0.007813521660864353, 0.010214823298156261, 0.031729888170957565, 0.024578023701906204, 0.01855618506669998, -0.009716720320284367, -0.002172694308683276, -0.0060255560092628, -0.006218849681317806, 0.025425542145967484, 0.02337365597486496, 0.012630992569029331, -0.023269575089216232, -0.006791295949369669, -0.008229846134781837, 0.005657555069774389, 0.006832185201346874, 0.02295733243227005, 0.023730505257844925, 0.0009962054900825024, 0.011664524674415588, -0.017143655568361282, 0.0013809340307489038, 0.014668010175228119, 0.013619763776659966, -0.00171083421446383, 0.01698009856045246, -0.031016187742352486, 0.002475644927471876, -0.0030387984588742256, -0.013552854768931866, 0.014913344755768776, -0.00982823595404625, -0.011813212186098099, 0.006642608903348446, -0.0007081236690282822, 0.0008321846835315228, 0.0028232017066329718, -0.007003175560384989, -0.01739642396569252, 0.009069929830729961, 0.005702161230146885, 0.004910400602966547, -0.0025518471375107765, 0.011880122125148773, 0.00834136176854372, -0.001962673384696245, 0.0017619454301893711, 0.014497019350528717, -0.00846774596720934, -0.002925424138084054, 0.01897251047194004, 0.0025258269160985947, 0.016876017674803734, -0.004442035686224699, -0.011329978704452515, -0.004601874388754368, -0.0074752578511834145, -0.00663145724684, 0.010698056779801846, 0.019611865282058716, -0.012987842783331871, 0.00283063598908484, -0.024146830663084984, -0.030480913817882538, 0.02307628095149994, 0.026466352865099907, 0.01481669768691063, -0.003009060863405466, -0.012526911683380604, 0.018645398318767548, 0.00041795094148255885, 0.0004971734015271068, 0.013366995379328728, -0.019745683297514915, -0.001973825041204691, 0.011486100032925606, 0.0017507938900962472, 0.011545575223863125, -0.004691086709499359, -0.020147139206528664, -0.0005654767155647278, 0.0036242548376321793, -0.01396917924284935, 0.00456470251083374, -0.014013785868883133, -0.003917912486940622, -0.0030722529627382755, 0.011277938261628151, 0.0016513592563569546, 0.010757531970739365, 0.00997692346572876, 0.012928367592394352, -0.007084953598678112, 0.006531093269586563, -0.008021684363484383, 0.025856735184788704, 0.007471540942788124, 0.006891659926623106, -0.016132580116391182, -0.014831566251814365, -0.010162782855331898, -0.009315264411270618, 0.00024951601517386734, 0.00891380850225687, 0.014467282220721245, 0.0008702858467586339, 0.011924727819859982, -0.0025629987940192223, -0.014363201335072517, -0.010995431803166866, 0.012720205821096897, 0.005252381786704063, -0.0033045769669115543, -0.018481841310858727, 0.014415241777896881, 0.009240920655429363, -0.003193061565980315, -0.02209494449198246, -0.01509920321404934, -0.00375807355158031, -0.02378998138010502, -0.005152017809450626, -0.00456470251083374, 0.0017879657680168748, -0.013991482555866241, 0.008876636624336243, 0.012155193835496902, -0.005806242115795612, 0.013798189349472523, 0.00018551074026618153, 0.012519477866590023, -0.01326291449368, -0.0031633239705115557, -0.020920313894748688, -0.02323983795940876, 0.0066277398727834225, 0.013233176432549953, 0.00947138573974371, 0.001574227586388588, -0.010222257114946842, -0.010675754398107529, 0.014898475259542465, -0.01219979953020811, -0.018600791692733765, 0.004464338533580303, -0.022005733102560043, 0.0031558896880596876, 0.008259584195911884, -0.00495872413739562, -0.022778905928134918, 0.002602029126137495, -0.012222102843225002, 0.006244869902729988, 0.019567258656024933, 0.007776350248605013, 0.006542244926095009, -0.008817161433398724, 0.023700768128037453, -0.023314181715250015, 0.001699682674370706, 0.002481220755726099, -0.014311159960925579, -0.00842314027249813, 0.004029428120702505, -0.01796143501996994, 0.009657245129346848, 0.019775422289967537, -0.017887091264128685, -0.006884225644171238, -0.006311779376119375, -0.009739023633301258, -0.0007750329677946866, -0.0289494339376688, 0.013136530295014381, -0.0004929915885441005, -0.01656377501785755, 0.020191745832562447, -0.01570138707756996, 0.011203594505786896, 0.0007810734095983207, -0.0018520872108638287, 0.009174011647701263, -0.006032990291714668, -0.004880663473159075, 0.00748269259929657, 0.006505073048174381, -0.00842314027249813, 0.02252613753080368, 0.006917680613696575, 0.030183538794517517, -0.04463595151901245, -0.006761558819562197, -0.0018251376459375024, 0.01426655426621437, -0.003157748142257333, -0.007583056576550007, 0.014705182053148746, -0.013471076264977455, 0.0019310773350298405, 0.004672500770539045, -0.010222257114946842, -0.0014032371109351516, 0.02240718901157379, -0.014065826311707497, -0.004207852762192488, -0.005155734717845917, -0.007887865416705608, -0.01754511147737503, -0.03164067491889, -0.020295826718211174, 0.007545884698629379, -0.010638582520186901, -0.004899249412119389, 0.003419809741899371, -0.0016885310178622603, 0.00745295500382781, -0.023150624707341194, -0.004345388617366552, -0.02008766494691372, -0.018913034349679947, -0.0029700305312871933, -0.017351817339658737, -0.017708666622638702, 0.013738714158535004, -0.002064896048977971, -0.01724773645401001, 0.0024384730495512486, -0.008185240440070629, 0.002304654335603118, 0.015775730833411217, 0.02095005288720131, 0.01922527886927128, 0.006787579040974379, -0.0072076208889484406, 0.01869000308215618, 0.004285913892090321, -0.008408271707594395, -0.010861612856388092, 0.0012731356546282768, -0.00962007325142622, -0.003005343722179532, -0.011448928155004978, 0.0008990939822979271, -0.006932549178600311, -0.02325470559298992, -0.011486100032925606, 0.006884225644171238, 0.0017879657680168748, -0.030332226306200027, 0.021128477528691292, -0.038301870226860046, 0.01623666286468506, 0.016757067292928696, 0.010891350917518139, -0.0016448542010039091, 0.008809727616608143, 0.005847131367772818, 0.009530860930681229, -0.0036744368262588978, -0.010036398656666279, 0.012512043118476868, -0.02453341707587242, 0.020280959084630013, 0.023596687242388725, -0.04549833759665489, -0.009813367389142513, -0.011508403345942497, 0.0022581894882023335, 0.004111206158995628, 0.01909145899116993, -0.030748549848794937, 0.015069466084241867, 0.011307675391435623, 0.008281887508928776, 0.019641602411866188, 0.003137303749099374, -0.01383536122739315, -0.024771317839622498, -0.0012043677270412445, -0.02506869286298752, -0.005401069298386574, -0.007151863072067499, 0.02952931448817253, 0.00982823595404625, 0.018898166716098785, 0.036279719322919846, 0.0073340050876140594, 0.020310696214437485, -0.007467823568731546, -0.011642222292721272, 0.007571904920041561, 0.01141175627708435, 0.011493534781038761, 0.005363897420465946, 0.008081159554421902, -0.001097498694434762, -0.004389994777739048, -0.007939905859529972, -0.007490126881748438, -0.013805623166263103, -0.0004953148309141397, -0.008542089723050594, 0.010861612856388092, -0.015627043321728706, 0.011649656109511852, -0.009055061265826225, -0.016177186742424965, 0.03910478204488754, -0.00584341399371624, 0.007902733981609344, -0.008244715631008148, 0.006891659926623106, -0.004784016404300928, 0.0003875164838973433, -0.021931389346718788, 0.014192210510373116, 0.011426624841988087, 0.0016262682620435953, 0.01104747224599123, 0.017723536118865013, -0.006724386941641569, 0.014660575427114964, -0.017783010378479958, -0.01418477576225996, 0.0020054210908710957, 0.012660730630159378, -0.01083187572658062, 0.02609463594853878, 0.018154729157686234, -0.01565678045153618, 0.003306435653939843, -0.014578797854483128, 0.0195226538926363, 0.018169598653912544, -0.013300086371600628, -0.002713544759899378, -0.008281887508928776, 0.007096105255186558, -0.020935183390975, -0.0005919616087339818, 0.008296756073832512, -0.00238829106092453, -0.0060738795436918736, 0.0263920109719038, 0.012995277531445026, -0.002392008202150464, 0.001814915332943201, 0.01226670853793621, 0.008430574089288712, 0.0035108807496726513, 0.006713235285133123, 0.003940215799957514, 0.0018046931363642216, -0.020043058320879936, 0.008713080547749996, 0.033424925059080124, 0.018466971814632416, 0.01433346327394247, 0.002615039236843586, -0.002183845965191722, -0.0018065517069771886, 0.011909859254956245, -0.011634787544608116, -0.028027571737766266, -0.0027469992637634277, 0.002196856075897813, 0.009545729495584965, -0.0009176799212582409, 0.002821343019604683, 0.0029607375618070364, 0.0011606909101828933, 0.015344537794589996, -0.03547680750489235, -0.011069775559008121, 0.01098056323826313, -0.009627507999539375, -0.006456749513745308, -0.015433750115334988, -0.005568342283368111, 0.006690931972116232, -0.02294246293604374, 0.007754046935588121, -0.0027730197180062532, 0.0027302720118314028, -0.0091219712048769, -0.0014692171243950725, -0.004728258587419987, -0.01880895346403122, -0.00023023311223369092, -0.001760086859576404, 0.007872996851801872, 0.017366686835885048, 0.0009534578421153128, 0.007835824973881245, -0.0064939213916659355, -0.018571054562926292, -0.0104675916954875, -0.033276237547397614, 0.02352234348654747, -0.005471695680171251, -0.03479284793138504, -0.011092078872025013, 0.008653605356812477, 0.0016244096914306283, 0.00013811663666274399, 0.0011253776028752327, -0.004661349579691887, 0.009523427113890648, 0.012147759087383747, -0.0018818246899172664, -0.014006351120769978, -0.00015693488239776343, -0.01012561097741127, 0.010363510809838772, 0.0011058624368160963, 0.0014394797617569566, -0.006624022964388132, 0.004828622564673424, -0.014615969732403755, -0.0005914969951845706, -0.002172694308683276, -0.031194612383842468, -0.004720824304968119, -0.013188570737838745, 0.012764811515808105, -0.0005603655590675771, -0.022615350782871246, -0.011441494338214397, -0.0009515992132946849, 0.02720979042351246, -0.0015602882485836744, 0.006783861666917801, 0.02723952755331993, -0.0012852165382355452, 0.004888097755610943, 0.006389840040355921, -0.007426934782415628, -0.026897547766566277, 0.0006732750334776938, 0.0043268026784062386, 0.018779216334223747, -0.010311469435691833, -0.004679935518652201, 0.010363510809838772, 0.0006323860143311322, 0.0014617828419432044, -0.015790600329637527, -0.004100054502487183, -0.02795322798192501, 0.005932626314461231, -0.011567878536880016, 0.009753892198204994, -0.0077614812180399895, 0.010088439099490643, -0.009582901373505592, -0.00834136176854372, 0.0021503912284970284, -0.009218617342412472, -0.020147139206528664, -0.00021455124078784138, -0.013381863944232464, -0.00608874810859561, -0.009493689052760601, -0.010333772748708725, 0.019076591357588768, 0.0024403317365795374, 0.0005668706144206226, 0.005337877199053764, 0.015374274924397469, -0.0033975066617131233, -0.018734609708189964, -0.007687137462198734, 0.013597461394965649, 0.0170990489423275, -0.02450367994606495, 0.0144747169688344, 0.00026275849086232483, -0.000620769802480936, -0.008237280882894993, -0.00997692346572876, 0.0076202284544706345, -0.010185085237026215, -0.012251839973032475, -0.020608071237802505, -0.024265781044960022, 0.0009757609223015606, 0.005642686039209366, -0.018927903845906258, 0.007583056576550007, -0.011337412521243095, -0.0072076208889484406, 0.00891380850225687, -0.024295518174767494, -0.0017535818042233586, 0.0017377837793901563, 0.00375807355158031, 0.0034718504175543785, -0.012876327149569988, -0.0038956094067543745, 0.01290606427937746, 0.04300038889050484, 0.015508093871176243, 0.00869821198284626, -0.016013631597161293, 0.001137458486482501, -0.025261985138058662, -0.0006305274437181652, -0.0033752035815268755, -0.005111128557473421, 0.007865562103688717, 0.00392534676939249, -0.024548286572098732, 0.013924573548138142, 0.01995384693145752, -0.015210718847811222, 0.008021684363484383, 0.00712212547659874, -0.0007866491796448827, -0.014080694876611233, 0.00976132694631815, 0.02893456444144249, 0.0021671184804290533, -0.013456207700073719, -0.02564857341349125, -0.0004181832482572645, 0.007835824973881245, -0.0020147140603512526, -0.0013892976567149162, 0.015567569062113762, -0.0019124913960695267, 0.02609463594853878, 0.005326725542545319, -0.034406259655952454, 0.026139240711927414, 0.010631147772073746, 0.009560598991811275, -0.003969952929764986, 0.013887401670217514, 0.016221793368458748, -0.010541935451328754, -0.013225742615759373, -0.00010245489829685539, -0.000883760629221797, 0.008839464746415615, -0.023715637624263763, 0.0011802060762420297, 0.023462869226932526, -0.009679548442363739, -0.004393712151795626, 0.03589313477277756, -0.006527375895529985, -0.018883297219872475, -0.02554449252784252, 0.001661581452935934, -0.008222412317991257, -0.007724309340119362, 0.025574229657649994, -0.020429646596312523, -0.016013631597161293, 0.01827367953956127, 0.004014559090137482, -0.020593201741576195, 0.004207852762192488, 0.03152172639966011, -0.020563464611768723, 0.026050029322504997, 0.0019087742548435926, -0.0026466352865099907, 0.002899403916671872, 0.014519322663545609, 0.009010455571115017, 0.0049327039159834385, 0.017738403752446175, -0.020429646596312523, -0.014169907197356224, -0.027432821691036224, -0.0344657339155674, -0.0156865194439888, -0.005241230130195618, -0.008319059386849403, -0.013158833608031273, 0.007902733981609344, 0.020578334107995033, -0.00982823595404625, -0.003832417307421565, -0.015567569062113762, 0.007426934782415628, 0.005534887779504061, 0.02150019444525242, -0.006423295009881258, -0.005114845931529999, 0.002079764846712351, 0.003351041814312339, 0.028592582792043686, 0.005947495345026255, -0.0013028731336817145, -0.0017266322392970324, -0.0014013785403221846, 0.008445443585515022, -0.01332238968461752, -0.0021671184804290533, 0.028845351189374924, 0.007783784531056881, 0.0009483466856181622, -0.004888097755610943, -6.203051452757791e-05, -0.027135446667671204, -0.024146830663084984, -0.003445829963311553, 0.011441494338214397, -0.009092233143746853, 0.0032878497149795294, 0.01289863046258688, 0.006467901170253754, 0.0073414393700659275, 0.005676140543073416, 0.02765585295855999, 0.03437652066349983, 0.002181987278163433, 0.0015203284565359354, -0.0010129327420145273, 0.0002899403916671872, 0.02039990946650505, -0.005523736122995615, -0.01751537434756756, 0.0019924109801650047, -0.000989700434729457, 0.004687369801104069, 0.002378998091444373, 0.0048397742211818695, -0.010779835283756256, -0.009003020823001862, -0.011307675391435623, 0.007865562103688717, 0.014987687580287457, 0.0005933555657975376, -0.005724464077502489, 0.004724541679024696, 0.006479052826762199, 0.0012387516908347607, -0.023730505257844925, 0.04103771597146988, 0.019195541739463806, -0.014534191228449345, 0.007129559759050608, 0.013932007364928722, -0.02993077039718628, 0.006230001337826252, 0.032413847744464874, 0.005367614328861237, 0.003010919550433755, -0.014519322663545609, -0.022154420614242554, 0.009240920655429363, -0.017351817339658737, 0.01432602945715189, -0.02778967097401619, 0.022199025377631187, -0.0344657339155674, 0.018288547173142433, 0.019492914900183678, -0.0020109969191253185, 0.010036398656666279, -0.0007346085621975362, 0.020890576764941216, -0.0029811819549649954, -0.018437234684824944, 0.00645303213968873, -0.008779989555478096, 0.00171083421446383, -0.004981027450412512, -0.006278324872255325, 0.0022396037820726633, -0.0002917989913839847, 0.009545729495584965, 0.00556462537497282, -0.012950670905411243, -0.0026466352865099907, -0.012489739805459976, -0.007066367659717798, -0.0032971426844596863, 0.028399290516972542, 0.027403084561228752, 0.003189344424754381, 0.002668938599526882, 0.011701696552336216, -0.01955239102244377, 0.0131960054859519, -0.010817007161676884, 0.02350747399032116, -0.0022061490453779697, 0.011173856444656849, -0.014370635151863098, -0.0061593749560415745, -0.016355611383914948, 0.015240456908941269, -0.01909145899116993, -0.019329359754920006, -0.0395805798470974, 0.020162008702754974, 0.016296137124300003, 0.00709238788112998, 0.008794858120381832, 0.01567164994776249], "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999": [-0.00616611260920763, -0.009313507936894894, -0.008256261236965656, -0.0011320189805701375, 0.010398576967418194, -0.004326364491134882, 0.04637974128127098, 0.04064834862947464, -0.02963072806596756, 0.05853807553648949, -0.004378531128168106, 0.004315930884331465, 0.006555624771863222, -0.01101762242615223, 0.0257077869027853, 0.035668160766363144, -0.004830643068999052, -0.00669821398332715, 0.015190964564681053, -0.04782649874687195, 0.05027486011385918, -0.012513070367276669, -0.057647764682769775, 0.011587979272007942, 0.0030987064819782972, 0.015441365540027618, -0.017152436077594757, 0.027293656021356583, -0.001639775582589209, -0.014481496065855026, 0.01989292912185192, 0.016317766159772873, -0.008451017551124096, 0.008096283301711082, 0.014161540195345879, -0.014258918352425098, 0.020198974758386612, -0.01667945645749569, -0.034416161477565765, 0.01900261640548706, 0.009661286137998104, 0.0006686041597276926, 0.027752723544836044, -0.033442381769418716, -0.016373410820961, -0.005592278204858303, -0.028768237680196762, 0.013577272184193134, -0.009605642408132553, -0.02494267374277115, 0.017124613747000694, 0.02494267374277115, 0.023106403648853302, 0.01169231254607439, 0.02249431237578392, -0.03475002571940422, 0.018084481358528137, 0.0407874621450901, -0.005800945218652487, -0.06438075751066208, 0.004945410415530205, -0.026403343304991722, 0.02772490121424198, -0.00851361732929945, 0.04537813737988472, -0.005234066396951675, 0.007275525946170092, -0.003382145892828703, -0.01830706000328064, 0.024608805775642395, 0.03413793817162514, -0.006993825547397137, -0.03355366736650467, 0.007226837333291769, 0.0022153491154313087, 0.015121408738195896, 0.011567112989723682, 0.0353621169924736, 0.03408229351043701, -0.012693914584815502, -0.006367824040353298, -0.008214527741074562, 0.041789062321186066, 0.017583681270480156, 0.06688476353883743, 0.037643544375896454, -0.01570567674934864, -0.03711492195725441, -0.005508811213076115, -0.02865694835782051, 0.0004790648818016052, 0.0125269815325737, -0.03497260436415672, 0.005446211434900761, -0.015037941746413708, 0.004256808664649725, 0.04735352098941803, 0.003236078890040517, -0.0044306982308626175, -0.00917439628392458, -0.0074424599297344685, -0.0016962896334007382, 0.011727090924978256, 0.02184048853814602, 0.004785432014614344, -0.03363713622093201, 0.01652643457055092, -0.001353727770037949, -0.005974834319204092, -0.016276033595204353, -0.004489820450544357, -0.003408229211345315, -0.004100308287888765, 0.012283536605536938, -0.03152264282107353, -0.012346136383712292, -0.059428390115499496, -0.038394745439291, -0.006538235582411289, -0.014537140727043152, 0.047019653022289276, -0.0034708294551819563, 0.001693681231699884, -0.024928761646151543, -0.03149481862783432, 0.023648938164114952, -0.006538235582411289, 0.02314813621342182, 0.024094093590974808, 0.019378216937184334, -0.011720134876668453, -0.023356802761554718, 0.019725997000932693, 0.01652643457055092, 0.02384369447827339, 0.008437106385827065, -0.01815403811633587, 0.024720095098018646, -0.016039544716477394, 0.02307858131825924, -0.07295002043247223, 0.0070216478779911995, -0.016234301030635834, 0.01943386159837246, 0.022549957036972046, 0.0008920518448576331, -0.015844788402318954, 0.01928083971142769, -0.006566057913005352, 0.017208080738782883, -0.09626508504152298, -0.027905747294425964, -0.032635532319545746, 0.0059783123433589935, 0.013772028498351574, -0.035779450088739395, 0.013452071696519852, 0.028448279947042465, 0.01776452548801899, 0.02668156661093235, 0.012728692963719368, -0.04437653720378876, -0.0032395566813647747, 0.024580983445048332, 0.03021499514579773, 0.014328474178910255, 0.07550966739654541, 0.02609729766845703, -0.038339100778102875, 0.014245007187128067, -0.016234301030635834, -0.029908951371908188, 0.01973990723490715, 0.008882262744009495, -0.065938800573349, -0.008444061502814293, 0.02815614640712738, 0.0666065365076065, 0.02299511432647705, -0.008666640147566795, -0.04518338292837143, 0.019767729565501213, 0.005453167017549276, 0.030938375741243362, 0.0057070450857281685, 0.05742518603801727, 0.013215582817792892, 0.014091984368860722, 0.00581833440810442, 0.01316689420491457, 7.297914271475747e-05, -0.004667187575250864, -0.014787541702389717, 0.008235394954681396, 0.0053870887495577335, -0.022702980786561966, -0.005929623264819384, 0.009779531508684158, -0.013132115826010704, 0.027975302189588547, -0.010447265580296516, -0.02839263714849949, -0.019962485879659653, 0.033915359526872635, -0.014300651848316193, 0.03719838708639145, -0.022716891020536423, -0.03669758513569832, 0.022007422521710396, -0.027933567762374878, 0.039618924260139465, -0.033331092447042465, -0.013020826503634453, -0.006830369587987661, 0.010224687866866589, 0.0041907308623194695, -0.01761150360107422, 0.025777341797947884, -0.028684770688414574, -0.004514164756983519, 0.008117150515317917, 0.019684262573719025, -0.026347698643803596, -0.03870078921318054, -0.032941579818725586, -0.01277738157659769, -0.038951192051172256, 0.028684770688414574, 0.00913266371935606, 0.001480666920542717, 0.019684262573719025, -0.012749559246003628, 0.025457385927438736, 0.004340275656431913, -0.01055159978568554, 0.04354186728596687, 0.06744120270013809, -0.03063233010470867, 0.003825563471764326, 0.017820170149207115, -0.0041420417837798595, -0.005067132879048586, -0.0040411860682070255, -0.0005081912968307734, -0.001838009338825941, 0.04727005213499069, -0.0155109204351902, 0.03639154136180878, -0.009640419855713844, -0.0071920594200491905, -0.003277812385931611, 0.024372316896915436, 0.00870837364345789, 0.0261390320956707, -0.05147121846675873, 0.03149481862783432, 0.04362533614039421, -0.029074281454086304, -0.014537140727043152, -0.014467584900557995, 0.016609901562333107, 0.014968386851251125, 0.016303855925798416, 0.019948573783040047, 0.03199562057852745, -0.010196865536272526, 0.03010370582342148, -0.02206306718289852, 0.015566565096378326, 0.010718532837927341, 0.03739314526319504, 0.01328513864427805, 0.006333046592772007, 0.017082879319787025, 0.012888670898973942, -0.023328982293605804, 0.008506662212312222, 0.026319876313209534, 0.03171739727258682, 0.007539837621152401, -0.027084989473223686, -0.005268844310194254, 0.010739400051534176, 0.017889725044369698, 0.037059277296066284, -0.020212886855006218, -0.034026648849248886, 0.0025196552742272615, -0.06315657496452332, -0.008451017551124096, 0.01437020767480135, 0.0015650031855329871, 0.02175702340900898, 0.011219333857297897, 0.008770973421633244, 0.01655425690114498, -0.0036516741383820772, -0.010440310463309288, 0.018167948350310326, 0.0375322550535202, 0.034026648849248886, -0.02043546363711357, -0.001368508324958384, -0.007922394201159477, 0.04195599630475044, -0.009682153351604939, 0.030075883492827415, 0.014564963057637215, -0.024372316896915436, 0.03767136484384537, 0.043458402156829834, -0.015677854418754578, -0.0021075375843793154, -0.0016310811042785645, 0.00034799586865119636, -0.011817513033747673, 0.011998358182609081, -0.01726372353732586, -0.013813761994242668, -0.04905067756772041, -0.01016208715736866, -0.00290916720405221, -0.06310092657804489, 0.021228399127721786, 0.050664372742176056, -0.03984150290489197, 0.024594895541667938, -0.006844280753284693, -0.019489506259560585, -0.025499118492007256, -0.03308068960905075, -0.03160610795021057, -0.03413793817162514, 0.014843186363577843, -0.03438833728432655, -0.018599193543195724, -0.03664194047451019, -0.018390526995062828, 0.015024030581116676, -0.024108005687594414, -0.009543041698634624, -0.004799343179911375, 0.057647764682769775, -0.0202824417501688, 0.005161033011972904, 0.021311866119503975, 0.03355366736650467, 0.018390526995062828, -0.04265155270695686, -0.00881966296583414, 0.0008242350304499269, 0.003333456814289093, 0.0159421656280756, -0.020226797088980675, 0.009981242939829826, -0.006162635050714016, -0.015121408738195896, 0.012999960221350193, -0.02273080311715603, -0.0040411860682070255, -0.020143330097198486, -0.01954515092074871, -0.005307099781930447, 0.01210269145667553, -0.03909030184149742, -0.012686959467828274, -0.012318314053118229, -0.033720601350069046, -0.006774724926799536, 0.011233245022594929, -0.012846937403082848, 0.016999412328004837, -0.013445116579532623, -0.020699776709079742, -0.020685864612460136, -0.04354186728596687, 0.022981202229857445, 0.004037708509713411, -0.005957445595413446, 0.020449375733733177, 0.03310851380228996, -0.010676799342036247, 0.026848500594496727, 0.04370880126953125, 0.01609518937766552, -0.0035160405095666647, -0.002097104210406542, -0.04418177902698517, -0.03138353303074837, -0.003387362463399768, -0.0026952833868563175, -0.0019527762196958065, -0.03658629581332207, -0.021478800103068352, -0.0035421240609139204, -0.010064709931612015, 0.002959595061838627, -0.007136414758861065, -0.0019284317968413234, -0.006075690500438213, 0.006193934939801693, -0.0265702772885561, -0.011490601114928722, -0.02412191592156887, 0.01392505131661892, -0.02401062659919262, -0.0032499900553375483, 0.004413309041410685, 0.017778435721993446, -0.007825016044080257, -0.01110804546624422, 0.022327380254864693, 0.01930866204202175, 0.024887029081583023, 0.032830290496349335, 0.006743425037711859, -0.0202824417501688, 0.04891156777739525, -0.018334882333874702, -0.004823687486350536, 0.04181688651442528, 0.008339728228747845, 0.010982844978570938, 0.010746355168521404, 0.01605345495045185, 0.025499118492007256, -0.025860808789730072, 0.01363291684538126, -0.0031439175363630056, -0.009654331021010876, -0.005915712099522352, 0.03900683671236038, -0.01663772389292717, -0.008506662212312222, 0.0009268296998925507, 0.002537044230848551, -0.016150834038853645, -0.02804485708475113, 0.01652643457055092, 0.0191973727196455, -0.02238302305340767, -3.0620809411630034e-05, -0.026111209765076637, -0.004601109307259321, -0.03672540932893753, -0.015441365540027618, -0.03246860206127167, -0.006642569322139025, 0.04774302989244461, -0.04009190574288368, 0.020115507766604424, -0.007178148254752159, -0.04768738895654678, -0.02113102190196514, 0.012088780291378498, -0.007035559043288231, -0.0018519205041229725, 0.017319368198513985, 0.02090844325721264, -0.062266260385513306, -0.014564963057637215, -0.022967291995882988, 0.03466656059026718, 0.016387322917580605, 0.031550463289022446, -0.0021510100923478603, 0.012283536605536938, 0.01078113354742527, 0.0012728692963719368, 0.018084481358528137, 0.010148176923394203, -0.0041211750358343124, -0.015733499079942703, 0.029157748445868492, 0.03132788836956024, -0.003230862319469452, -0.029602905735373497, -0.00025083523360081017, 0.005651400424540043, -0.019684262573719025, 0.000499062123708427, -0.011121956631541252, 0.027251923456788063, -0.005279277451336384, 0.0033265012316405773, 0.027391035109758377, -0.02175702340900898, -0.03792176768183708, 0.04017537087202072, -0.005004532635211945, 0.015274431556463242, -0.0034986515529453754, 0.0056757451966404915, -0.007185103837400675, -0.012276580557227135, -0.026472898200154305, -0.00440983148291707, -0.01648470014333725, 0.0025579107459634542, -0.0254852082580328, -0.006746902596205473, -0.015580476261675358, -0.0040098861791193485, -0.0041107418946921825, -0.02924121543765068, 0.041677772998809814, -0.01652643457055092, 0.04713094234466553, -0.013952873647212982, -0.017055056989192963, -0.024539250880479813, 0.020198974758386612, -0.034610915929079056, 0.001280694268643856, 0.02078324370086193, 0.04064834862947464, -0.015761321410536766, 0.009139618836343288, 0.025735609233379364, -0.012353092432022095, -0.01363291684538126, -0.02579125389456749, -0.019183462485671043, -0.011365401558578014, -0.00676776934415102, -0.009654331021010876, 0.01481536403298378, -0.03750443458557129, 0.027168456465005875, -0.008381461724638939, -0.022132623940706253, 0.024108005687594414, -0.014384118840098381, 0.0034986515529453754, 0.01516314223408699, -0.029463794082403183, 0.01889132708311081, 0.020449375733733177, 0.024177560582756996, -0.006169590633362532, -0.0635460838675499, 0.022953379899263382, -0.04048141837120056, 0.002731800079345703, -0.014050250872969627, 0.01590043306350708, -0.005202766042202711, 0.00021986122010275722, -0.018682660534977913, 0.02369067072868347, -0.0185435488820076, 0.03525082767009735, -0.007609393447637558, 0.014773630537092686, -0.014495407231152058, -0.00820061657577753, 0.01861310563981533, -0.021965689957141876, -0.011713179759681225, -0.0027022389695048332, -0.012965181842446327, 0.028990814462304115, -0.00915353000164032, -0.006597358267754316, 0.01581696607172489, -0.010697666555643082, -0.02943597175180912, 0.002037981990724802, -0.010788088664412498, 0.045322492718696594, 0.027001522481441498, -0.010906334035098553, 0.02095017582178116, 0.018627015873789787, 0.013758117333054543, 0.054782070219516754, -0.015218786895275116, 0.013257316313683987, -0.039034657180309296, -0.007233792450278997, 0.03177304193377495, 0.02924121543765068, -0.010301198810338974, -0.00451764278113842, -0.026264231652021408, 0.007331170607358217, -0.01590043306350708, -0.007825016044080257, 0.007032081019133329, -0.0076441713608801365, -0.00139111396856606, 0.0340544693171978, -0.027794457972049713, 0.023050758987665176, -0.017082879319787025, 0.011497557163238525, 0.014731897041201591, 0.024497516453266144, 0.03202344477176666, 0.025721697136759758, 0.01559438742697239, 0.006315657403320074, 0.014411941170692444, 0.013424250297248363, -0.017166346311569214, 0.027098899707198143, 0.0058079008013010025, 0.002660505473613739, -0.0081867054104805, 0.008179750293493271, 0.0027874447405338287, -0.02366284839808941, 0.024441871792078018, -0.01748630218207836, 0.004872376564890146, -0.009257863275706768, 0.014982297085225582, 0.024219295009970665, -0.00035082155955024064, 0.00735899293795228, 0.019058261066675186, -0.010676799342036247, 0.03575162962079048, 0.00827712845057249, 0.01741674728691578, 0.027210189029574394, -0.007449415512382984, -0.001818881486542523, -0.004653276409953833, -0.021144932135939598, -0.0032169511541724205, -0.01004384271800518, -0.0034464849159121513, -0.00437157554551959, -0.0058079008013010025, -0.005971356760710478, 0.02388542704284191, 0.0023492437321692705, 0.01570567674934864, -0.011880113743245602, 0.007025125436484814, -0.0006260012742131948, 0.008270172402262688, 0.04754827544093132, -0.007157281506806612, 0.005832245573401451, 2.3026739654596895e-05, 0.005126255098730326, 0.04866116866469383, 0.035473406314849854, -0.014801452867686749, -0.001305038807913661, 0.023899337276816368, 0.022285645827651024, -0.005717478226870298, -0.02540174126625061, -0.028017034754157066, -0.01330600492656231, -0.014133717864751816, 0.00934828631579876, 0.0213675107806921, -0.013772028498351574, 0.030548863112926483, 0.008777929469943047, 0.01780625805258751, -0.0036481963470578194, 0.043068889528512955, -0.004437653813511133, 0.0254852082580328, 0.00397510826587677, 0.01819577068090439, -0.008645772933959961, 0.014495407231152058, -0.000523406604770571, -0.008270172402262688, -0.01124715618789196, -0.008096283301711082, 0.024024538695812225, 0.014245007187128067, -0.01900261640548706, -0.010739400051534176, -0.03191215544939041, -0.02839263714849949, 0.02644507586956024, -0.018404437229037285, -0.007352037355303764, 0.0021944823674857616, -0.004427220206707716, -0.003406490432098508, 0.014787541702389717, -0.013653784058988094, 0.007070336956530809, -0.013118204660713673, 0.029769839718937874, 0.005773122888058424, 0.003303895704448223, 0.01900261640548706, -0.0375322550535202, -0.004402875900268555, -0.020101597532629967, -0.03408229351043701, -0.018793949857354164, -0.005261888727545738, -0.007978038862347603, 0.003762963227927685, -0.0048341210931539536, -0.02474791742861271, -0.02442796155810356, -0.013278182595968246, 0.007226837333291769, 0.01850181631743908, 0.005919190123677254, -6.8468893005047e-05, 0.0019353872630745173, 0.007734593935310841, 0.005268844310194254, -0.008061505854129791, 0.032357312738895416, 0.02842045947909355, 0.048688989132642746, -0.01869657263159752, 0.016623811796307564, -0.0014763197395950556, -0.010189909487962723, -0.027488412335515022, 0.012846937403082848, -0.013723338954150677, -0.015956077724695206, 0.007887615822255611, 0.0025074828881770372, 0.03694798797369003, -0.008736195974051952, 0.006006134673953056, 0.018251415342092514, 0.018988706171512604, -0.02661200985312462, -0.025721697136759758, 0.017444569617509842, 0.012819115072488785, -8.852049359120429e-05, 0.014912742190063, -0.021965689957141876, -0.00018214898591395468, -0.018640927970409393, -0.020852798596024513, -0.027446677908301353, 0.0397023931145668, 0.01978164166212082, -0.037059277296066284, -0.037754833698272705, 0.03266335651278496, -0.02772490121424198, 0.020032040774822235, 0.0062982686795294285, -0.028378725051879883, 0.027669256553053856, 0.03152264282107353, 0.013932006433606148, -0.00697295879945159, 0.01756976917386055, -0.024845296517014503, 0.015288342721760273, 0.01900261640548706, 0.003554296214133501, -0.008944862522184849, 0.00028887350345030427, 0.026041653007268906, 0.02184048853814602, 0.019725997000932693, 0.013312960974872112, 0.032134734094142914, 0.023328982293605804, 0.014036339707672596, 0.014217184856534004, -0.01590043306350708, -0.013688561506569386, 0.011087178252637386, -0.04393137991428375, -0.012151381000876427, -0.015636121854186058, -0.01208182517439127, -0.0351395383477211, 0.01698550209403038, -0.007692860439419746, 0.005849634297192097, -0.03505607321858406, 0.04045359417796135, -0.029797662049531937, -0.007484193425625563, 0.024761829525232315, 0.019113905727863312, 0.015246609225869179, -0.009612597525119781, 0.02737712301313877, 0.012415692210197449, -0.04134390875697136, 0.004722831770777702, 0.020894531160593033, -0.009473485872149467, 0.0034430071245878935, 0.02912992611527443, 0.016762923449277878, 0.027084989473223686, 0.0405648835003376, 0.033331092447042465, -0.015719588845968246, -0.02369067072868347, -0.019517328590154648, -0.029881129041314125, 0.014773630537092686, 0.0008051072363741696, -0.007922394201159477, -0.004649798385798931, 0.017667148262262344, -0.019656440243124962, 0.00023083797714207321, 0.03388753533363342, 0.00611742353066802, 0.008005861192941666, 0.015190964564681053, -0.015803053975105286, -0.00044733009417541325, 0.03594638407230377, 0.019058261066675186, 0.02249431237578392, 0.01718025840818882, 0.0018449649214744568, 0.02001813054084778, -0.009723886847496033, -0.02001813054084778, -0.012826071120798588, 0.007352037355303764, -0.025874720886349678, 0.028796060010790825, 0.01471798587590456, 0.027349300682544708, 0.0022014379501342773, 0.00697295879945159, -0.020491108298301697, 0.003357801353558898, -0.017625413835048676, -0.054281268268823624, -0.008374505676329136, -0.005849634297192097, -0.022285645827651024, 0.01351467240601778, 0.01923910714685917, 0.01146277878433466, 0.028100501745939255, 0.07562095671892166, 0.01601172238588333, -0.01407807320356369, 0.00991168711334467, -0.009139618836343288, -0.010885466821491718, 0.013570317067205906, 0.01462060771882534, 0.034694381058216095, -0.004785432014614344, 0.00014693640696350485, 0.025234807282686234, 0.019489506259560585, -0.046518851071596146, 0.022230001166462898, -0.028072679415345192, -0.027557967230677605, 0.010294243693351746, -0.0004721092991530895, -0.0067016915418207645, -0.014356296509504318, -0.012812159955501556, 0.006340002175420523, 0.0007046861574053764, 0.0015119670424610376, 0.004886287730187178, -0.017708880826830864, -0.0010555076878517866, -0.005943534430116415, -0.017388924956321716, 0.012297447770833969, 0.019642530009150505, 0.015552653931081295, -0.003486479399725795, 0.017625413835048676, -0.028476102277636528, -0.017861902713775635, -0.008951818570494652, 0.013020826503634453, -0.011121956631541252, 0.015413543209433556, -0.01644296757876873, 0.00019084344967268407, 0.0038985968567430973, -0.007512015290558338, -0.015024030581116676, 0.021200576797127724, 0.013299049809575081, -0.011845335364341736, -0.006030478980392218, 0.005004532635211945, 0.004475909285247326, -0.022549957036972046, -0.029408149421215057, -0.011052400805056095, 0.0700564980506897, -0.05781469866633415, 0.009181352332234383, -0.006687780376523733, 0.013403383083641529, 0.012513070367276669, 0.0055262004025280476, 0.0027683167718350887, 0.012986049056053162, 0.011455823667347431, 0.016387322917580605, 0.02442796155810356, 0.023565471172332764, -0.019572973251342773, 0.0034656126517802477, -0.003602985292673111, 0.007115548010915518, -0.01392505131661892, 0.02238302305340767, 0.00804759468883276, 0.0023527215234935284, -0.004235941916704178, -0.0405648835003376, -0.0159421656280756, -0.01109413430094719, 0.02273080311715603, 0.003500390565022826, -0.0037420967128127813, 0.012666093185544014, -0.0015823921421542764, 0.04117697477340698, 0.0015858699334785342, -0.03483349457383156, 0.005407955497503281, -0.029185570776462555, 0.0005129732890054584, 0.0007381598697975278, -0.0018275759648531675, 0.035000428557395935, -0.009243952110409737, -0.018014926463365555, -0.00934828631579876, 0.04064834862947464, 0.023565471172332764, -0.024288849905133247, -0.01737501285970211, 0.007421593181788921, 0.009737798012793064, -0.0010537687921896577, -0.003329979022964835, -0.0008551003993488848, 0.012533936649560928, -0.0007720682770013809, -0.02125622145831585, -0.006778202950954437, 0.010941111482679844, -0.003232601098716259, 0.03338673710823059, -0.0013085165992379189, 0.0022188269067555666, 0.008179750293493271, 0.0032847679685801268, -0.008409284055233002, -0.007240748032927513, -0.03878425806760788, -0.007108592428267002, -0.014453674666583538, 0.00020334174041636288, -0.0020275486167520285, 0.011274978518486023, -0.0067503806203603745, -0.010614199563860893, -0.03602985292673111, -0.00037581814103759825, -0.050942592322826385, -0.002987417159602046, 0.01706896908581257, -0.03130006417632103, -0.00806846097111702, -0.01560829859226942, -0.015079675242304802, -0.023356802761554718, -0.026598099619150162, 0.03013152815401554, -0.03486131504178047, -0.009090930223464966, -0.0007929349667392671, -0.020602397620677948, -0.0016241255216300488, 0.011810557916760445, 0.004308975767344236, -0.03653065487742424, -0.013563361018896103, -0.008256261236965656, 0.002241432433947921, -0.03191215544939041, 0.02497049607336521, 0.006218279246240854, -0.04604587331414223, 0.03583509474992752, 0.044738225638866425, 0.025888631120324135, 0.011497557163238525, -0.034610915929079056, -0.025582585483789444, 0.028601303696632385, -0.01997639611363411, -0.025499118492007256, -0.01733328029513359, -0.009570864029228687, -0.0048445542342960835, 0.007894571870565414, 0.0002714845759328455, -0.015316165052354336, 0.02800312452018261, 0.026431165635585785, 0.019517328590154648, -0.007087725680321455, 0.005195810925215483, -0.025958186015486717, -0.022007422521710396, 0.0001269391505047679, -0.004162908531725407, 0.008228438906371593, -0.0011094134533777833, 0.019948573783040047, -0.018376614898443222, -0.02843436971306801, 0.002437927294522524, -0.0081867054104805, 0.02490093931555748, -0.0014876225031912327, -0.006051345728337765, -0.07311695069074631, -0.004510687198489904, -0.01373029500246048, 0.0019858151208609343, 0.024233205243945122, -0.022619513794779778, 0.01549700926989317, 0.00957782007753849, -0.032913755625486374, -0.01741674728691578, 0.01923910714685917, -0.02268906868994236, 0.025763431563973427, 0.003905552439391613, -0.011261067353188992, -0.0045315539464354515, -0.0039716302417218685, -0.016317766159772873, -0.005470555741339922, 0.006576491519808769, -0.0013502499787136912, 0.008499706164002419, 0.03021499514579773, -0.014398030005395412, -0.02497049607336521, 0.02218826860189438, -0.008367550559341908, 0.014537140727043152, -0.00915353000164032, -0.04279066622257233, 0.0028170058503746986, 0.0055575002916157246, -0.017834080383181572, -0.018237505108118057, -0.014926653355360031, 0.01889132708311081, -0.01620647870004177, -0.011907936073839664, 0.019364306703209877, 0.00861099548637867, 0.014968386851251125, 0.0015093586407601833, -0.012325270101428032, 0.0023005546536296606, 0.011532334610819817, -0.001630211714655161, -0.008882262744009495, -0.03280246630311012, -0.0004045098612550646, 0.011295845732092857, 0.006246101576834917, 0.010836778208613396, -0.025262629613280296, -0.007915438152849674, -0.009563908912241459, -0.003387362463399768, 0.030938375741243362, -0.023064669221639633, 0.011782735586166382, 0.014787541702389717, 0.005508811213076115, 0.010426399298012257, 0.016860300675034523, -0.006426946725696325, -0.01287475973367691, 0.008764018304646015, 0.009396974928677082, 0.032524242997169495, 0.03219037875533104, -0.005571411456912756, 0.026278143748641014, 0.0058392006903886795, -0.009570864029228687, 0.00735899293795228, 0.00950130820274353, 0.010002109222114086, 0.01884959451854229, 0.0059087565168738365, 0.011608846485614777, -0.013257316313683987, -0.04351404681801796, 0.0006681694067083299, 0.00012357004743535072, -0.017820170149207115, -0.00687558064237237, 0.00020268965454306453, 0.002283165929839015, -0.0041420417837798595, 0.016665546223521233, -0.0077554602175951, 0.017472391948103905, 0.007553748786449432, 0.038923367857933044, 0.013139071874320507, -0.02184048853814602, 0.042373333126306534, -0.024344494566321373, 0.026236409321427345, 0.0018797427183017135, -0.0009711714228615165, 0.008457972668111324, -0.024094093590974808, 0.015761321410536766, -0.015274431556463242, -0.01748630218207836, -0.018557460978627205, 0.0025909498799592257, 0.005689656361937523, -0.010968933813273907, -0.024622717872262, -0.0036238518077880144, -0.007470282260328531, -0.031828686594963074, 0.012944315560162067, -0.0018710483564063907, -0.011254112236201763, -0.005230588372796774, -0.0030934896785765886, -0.01826532743871212, -0.00014932738849893212, -0.002159704454243183, 0.04106568545103073, -0.005550544708967209, -0.009299596771597862, 0.013507716357707977, -0.010322066023945808, -0.0006555624422617257, -0.005585322622209787, 0.008520573377609253, 0.032329488545656204, -0.010885466821491718, 0.016387322917580605, -0.012603492476046085, 0.0033977958373725414, -0.019906841218471527, 0.005432300269603729, 0.043847911059856415, -0.025540852919220924, 0.03939634934067726, -0.03347020223736763, 0.024108005687594414, 0.011483645997941494, -0.010050798766314983, 0.0042428974993526936, -0.01679074577987194, -0.010447265580296516, -0.011608846485614777, -0.007000781130045652, 0.005898323375731707, -0.0014371946454048157, 0.005832245573401451, -0.0011076745577156544, 0.02086670882999897, 0.00804759468883276, 0.0015936949057504535, -0.05302926525473595, -0.01800101436674595, 0.0007625043508596718, -0.0003238687349949032, -0.02097799815237522, -0.021117109805345535, -0.004921065643429756, 0.01330600492656231, -0.008318861946463585, 0.02078324370086193, 0.013118204660713673, -0.012812159955501556, -0.01818186044692993, 0.023022936657071114, 0.019113905727863312, 0.015343987382948399, -0.005682700779289007, -0.028879527002573013, -0.009876909665763378, 0.0127426041290164, -0.025415651500225067, 0.018251415342092514, 0.00511929951608181, 0.017166346311569214, -0.002140576718375087, 0.0026205109898000956, 0.026208586990833282, 9.226998372469097e-05, 0.005727911833673716, -0.014085029251873493, -0.0037699188105762005, -0.013312960974872112, 0.005988745484501123, -0.010836778208613396, 0.021812668070197105, 0.01633167825639248, 0.02823961339890957, 0.0015754365595057607, -0.016359500586986542, -0.004879332147538662, -0.017430657520890236, 0.035695984959602356, 0.040425773710012436, -0.014328474178910255, -0.013973739929497242, -0.00021594870486296713, -0.007727638352662325, 0.008457972668111324, 0.0233150701969862, 0.005992223508656025, 0.02373240515589714, -0.04312453418970108, 0.0278779249638319, 0.009849087335169315, -0.008784884586930275, -0.0053870887495577335, 0.01087851170450449, 0.014704074710607529, 0.01101762242615223, 0.013625961728394032, -0.007991950027644634, 0.01415458507835865, -0.011497557163238525, 0.009751709178090096, -0.013716383837163448, 0.04323582351207733, -0.009000507183372974, 0.008151927962899208, -0.013201671652495861, 0.018126215785741806, 0.0438200905919075, 0.012276580557227135, -0.05926145613193512, -0.00024583592312410474, 0.0066495249047875404, -0.0008855310152284801, 0.002533566439524293, -0.006086123641580343, -0.018821772187948227, -0.01694376766681671, 0.00578007847070694, 0.03552905097603798, -0.016415145248174667, 0.035000428557395935, 0.0015980422031134367, -0.009737798012793064, -0.018557460978627205, -0.03586291894316673, -0.0039716302417218685, 0.01756976917386055, 0.021631821990013123, -0.027641434222459793, -0.0023266382049769163, 0.006562580354511738, -0.003968152683228254, 0.012060957960784435, -0.007859794422984123, -0.007035559043288231, 0.008569261990487576, -0.003328240243718028, -0.0037142743822187185, 0.0009885603794828057, 0.003933374769985676, 0.012881715781986713, -0.0024692274164408445, -0.021464888006448746, -0.01163666881620884, 0.003411707002669573, -0.019253017380833626, 0.02498440630733967, -0.003458657069131732, -0.019447773694992065, -0.000559053907636553, 0.014676252380013466, -0.025972098112106323, -0.013855495490133762, -0.0029630728531628847, -0.009466530755162239, 0.026347698643803596, 0.004830643068999052, 0.024914851412177086, -0.013667695224285126, -0.0224525798112154, 0.010850689373910427, -0.0006186109967529774, -0.015691766515374184, -0.0023735882714390755, -0.016902035102248192, 0.005578367039561272, 0.005630533676594496, 0.004162908531725407, 0.02086670882999897, -0.00012802596029359847, 0.01737501285970211, 0.015886520966887474, -0.0010702883591875434, 0.01802883669734001, 0.024956583976745605, -0.01101762242615223, 0.029074281454086304, -0.012485248036682606, 0.025777341797947884, 0.010655933059751987, 0.0013467721873894334, -4.113567410968244e-05, 0.020004218444228172, 0.01276347041130066, -0.03180086612701416, -0.023982804268598557, -0.0187661275267601, -0.00021953516989015043, 0.01535789854824543, -0.0005847025895491242, -0.0023579380940645933, 0.006510413251817226, -0.01012035459280014, 0.005147121846675873, -0.011434956453740597, -0.01694376766681671, 0.0036481963470578194, 0.029686372727155685, 0.023203780874609947, -0.01989292912185192, -0.004218553192913532, -0.04312453418970108, 0.01756976917386055, 0.013855495490133762, 0.024135828018188477, 0.007901526987552643, -0.04649103060364723, -0.019684262573719025, -0.003110878635197878, -0.018209682777523994, 0.0014328473480418324, 0.02334289252758026, -0.022424757480621338, 0.05289015173912048, 0.01560829859226942, -0.002561388537287712, 0.00031799994758330286, -0.008235394954681396, -0.011956624686717987, 0.014592785388231277, -0.007866749539971352, 0.0037664410192519426, 0.014091984368860722, 0.002455316251143813, 0.0010685494635254145, -0.013368605636060238, 0.003084795316681266, 0.002330115996301174, -0.0037525298539549112, 0.034610915929079056, 0.0349169597029686, -0.004333320073783398, 0.021297955885529518, 0.010419443249702454, 0.004114219453185797, 0.0012728692963719368, -0.015969987958669662, 0.03650283068418503, 0.01045422162860632, 0.025179162621498108, -0.028517836704850197, -0.031133130192756653, -0.018056659027934074, 0.00040950917173177004, 0.0006672999588772655, 0.028211791068315506, 0.004347231239080429, 0.008207572624087334, -0.009077019058167934, -0.019113905727863312, 0.0031978231854736805, -0.02733539044857025, 0.014300651848316193, -0.0038985968567430973, -0.029380327090620995, 0.010210776701569557, -0.030743619427084923, -0.015469187870621681, 0.011873157694935799, 0.015650032088160515, -0.0055262004025280476, 3.1191382731776685e-05, 0.00367949646897614, -0.02203524485230446, 0.006037434563040733, -0.011170645244419575, -0.039924971759319305, 0.004994099028408527, -0.01667945645749569, 0.005835723131895065, -0.013994606211781502, -0.002884822664782405, -0.03870078921318054, -0.01958688534796238, 0.003846430219709873, 0.019072173163294792, 0.02446969412267208, 0.0018745260313153267, -0.021075377240777016, 0.02408018335700035, -0.036753229796886444, -0.02357938140630722, -0.009306552819907665, 0.004931499250233173, -0.0047332653775811195, 0.04843859001994133, -0.02695978805422783, 0.033219803124666214, 0.0228838250041008, 0.03171739727258682, 0.01505185291171074, -0.03249642252922058, -0.015218786895275116, -0.00841623917222023, -0.0006577360909432173, -0.0002191004459746182, -0.02264733612537384, 0.01132366806268692, -0.00917439628392458, 0.014029384590685368, -0.014286740683019161, 0.015636121854186058, -0.015691766515374184, -0.009856042452156544, -0.02687632292509079, -0.01846008189022541, -0.021284043788909912, 0.027474500238895416, -0.02257777936756611, 0.011254112236201763, 0.008256261236965656, -0.012520025484263897, 0.009612597525119781, -0.008214527741074562, 0.009438708424568176, 0.040425773710012436, 0.04715876281261444, -0.031272243708372116, 0.0036934076342731714, -0.005341877695173025, 0.0023075102362781763, -0.016387322917580605, -0.025735609233379364, -0.012283536605536938, 0.011685357429087162, -0.013257316313683987, -0.0005094954976812005, -0.0021057988051325083, 0.01655425690114498, -0.025582585483789444, 0.020658042281866074, 0.025304364040493965, 0.021729201078414917, -0.015177053399384022, 0.014342385344207287, 0.0016015199944376945, 0.008562306873500347, 0.01004384271800518, 0.004044664092361927, -0.019461683928966522, 0.0007777196587994695, 0.031133130192756653, 0.0035716851707547903, 0.012074869126081467, -0.013312960974872112, 0.00687558064237237, 0.0018658316694200039, 0.00692426972091198, 0.031133130192756653, -0.010189909487962723, -0.013612050563097, -0.026848500594496727, 0.00029800270567648113, -0.005143643822520971, -0.0025161774829030037, 0.010322066023945808, 0.025763431563973427, -0.020991910248994827, -0.003554296214133501, -0.0001353075640508905, -0.009278730489313602, 0.0009129185345955193, 0.009278730489313602, 0.0006138290627859533, -0.010106443427503109, 0.028962992131710052, 0.020226797088980675, -0.012207024730741978, 0.03180086612701416, -0.010829822160303593, -0.0012424386804923415, 0.03455527126789093, -0.0019736429676413536, 0.018668750301003456, -0.042095109820365906, 0.0015154448337852955, 0.02785010263323784, -0.008339728228747845, 0.013403383083641529, -0.03413793817162514, 0.00816583912819624, -0.01276347041130066, 0.010913289152085781, -0.020463285967707634, -0.042373333126306534, -0.011546245776116848, 0.01628994382917881, -0.012805203907191753, -0.0026465943083167076, 0.006934703327715397, 0.01221398077905178, -0.0005160163273103535, -0.014634518884122372, 0.005105388350784779, -0.010405532084405422, 0.0032656399998813868, 0.004715876188129187, -0.025874720886349678, 0.005307099781930447, -0.00511929951608181, -0.01320862676948309, 0.0073729041032493114, -0.01846008189022541, -0.005442733410745859, -0.0028465669602155685, -0.006959047634154558, 0.002464010613039136, 0.004792387597262859, -0.008082372136414051, -0.016609901562333107, -0.026431165635585785, 0.00969606451690197, 0.002389238215982914, 0.006812980864197016, 0.02357938140630722, 0.01375116128474474, 0.0362246073782444, 0.0028204836416989565, 0.009424797259271145, 0.0002658331941347569, -0.023287247866392136, 0.005950490012764931, -0.004806298762559891, -0.0016128227580338717, -0.018446171656250954, 0.01221398077905178, 0.013194716535508633, 0.04173341765999794, 0.009800397790968418, 0.000607742927968502, -0.0159421656280756, 0.0036516741383820772, -0.0165959894657135, 0.001701506320387125, -0.005724433809518814, 0.019656440243124962, -0.0009372630156576633, -0.003634285181760788, -0.0060270014218986034, 0.004524598363786936, 0.01640123315155506, -0.02117275446653366, 0.029575083404779434, 0.010273376479744911, 0.04298542067408562, -0.002759622409939766, 0.008882262744009495, 0.0028222224209457636, 0.009765620343387127, -0.012680004350841045, 0.02769707888364792, -0.011873157694935799, 0.011302800849080086, -0.006666913628578186, 0.0006312179611995816, 0.010050798766314983, 0.018279237672686577, -0.014968386851251125, -0.0155109204351902, -0.0012215719325467944, -0.01221398077905178, -0.005494900047779083, 0.015302253887057304, -0.014537140727043152, 0.010419443249702454, -0.0028187446296215057, 0.02574951946735382, 0.0030395840294659138, -0.0016345588956028223, 0.013883317820727825, 0.016429055482149124, 0.002982200589030981, -0.00804759468883276, -0.0013867667876183987, 0.003190867602825165, 0.009083974175155163, -0.013876361772418022, -0.026890233159065247, -0.009390018880367279, 0.024720095098018646, 0.002827439224347472, 0.02307858131825924, 0.0019527762196958065, 0.025624319911003113, -0.019461683928966522, -0.012207024730741978, -0.008138016797602177, -0.009856042452156544, 0.0074424599297344685, -0.022160446271300316, -0.011073267087340355, 0.011003711260855198, -0.023134225979447365, -0.016651634126901627, 0.0043924422934651375, 0.009125707671046257, -0.00029409019043669105, -0.007018169853836298, 0.005108865909278393, 0.00019660353427752852, -0.022981202229857445, 0.008854440413415432, 0.005251455120742321, 0.004541987087577581, 0.015719588845968246, 0.01087851170450449, -0.005213199649006128, -0.008506662212312222, -0.006812980864197016, -0.004615020472556353, -0.019225195050239563, -0.004841076675802469, -0.005094954743981361, 0.02761361189186573, -0.018752217292785645, 0.003011761698871851, -0.03672540932893753, -0.014119806699454784, -0.006353912875056267, -0.0037942633498460054, 0.009835176169872284, 0.015733499079942703, -0.012895626947283745, -0.026848500594496727, 0.02362111583352089, -0.00913266371935606, 0.0003493000112939626, 0.005703567527234554, 0.026820678263902664, -0.008110194467008114, 0.010391621850430965, 0.016345588490366936, -0.021937867626547813, 0.015775231644511223, 0.01016208715736866, -0.014189362525939941, -0.00028604781255126, 0.005533155985176563, -0.01110804546624422, -0.012227891944348812, 0.005400999914854765, -0.018098393455147743, 0.002112754387781024, 0.019572973251342773, 0.002364893676713109, -0.010252510197460651, -0.0070216478779911995, -0.002389238215982914, 0.0005438385996967554, -0.00578007847070694, -5.9285364841343835e-05, 0.01733328029513359, 0.0011415829649195075, -0.010002109222114086, 0.0014963169815018773, -0.018320970237255096, -0.009981242939829826, 0.022327380254864693, 0.007094681262969971, 0.0033247624523937702, 0.0069833919405937195, 0.034610915929079056, -0.008451017551124096, -0.007247703615576029, 0.008854440413415432, 0.00676776934415102, -1.975273153220769e-05, 0.010189909487962723, 0.03750443458557129, 0.01415458507835865, 0.010370754636824131, -0.0025353052187711, 0.02618076466023922, -0.011191511526703835, -0.020421553403139114, -0.0017093312926590443, 0.005369700025767088, 0.027057167142629623, -0.028601303696632385, 0.00348126282915473, -0.014224139973521233, 0.01691594533622265, 0.010516821406781673, -0.011622757650911808, 0.04573982581496239, -0.015914343297481537, -0.0028761280700564384, 0.008673595264554024, 0.005296666640788317, -0.017472391948103905, -0.00034299652907066047, 0.016609901562333107, 0.00017606286564841866, 0.01578914374113083, 0.01861310563981533, 0.017834080383181572, -0.0217987559735775, -0.00827712845057249, 0.0036864520516246557, -0.0036099408753216267, -0.03561251610517502, 0.0067190807312726974, -0.005439255852252245, -0.0051540774293243885, -0.0016597728244960308, -0.025777341797947884, 0.021270133554935455, 0.006458246614784002, -0.0030482783913612366, 0.010391621850430965, 0.007317259442061186, -0.0012511331588029861, -0.003780352184548974, 0.011741002090275288, -0.004677620716392994, 0.0021475323010236025, -0.007769371382892132, 0.006666913628578186, 0.019475596025586128, -0.007866749539971352, 0.003783829975873232, -0.01834879256784916, -0.0054044779390096664, 0.011741002090275288, 0.011149778962135315, 0.003703841008245945, -0.010913289152085781, 0.008506662212312222, -0.0021475323010236025, 0.009334375150501728, -0.006270446348935366, -0.00826321728527546, -0.017249813303351402, -0.014008517377078533, 0.005745300557464361, -0.00196320959366858, -0.009243952110409737, -0.03191215544939041, -0.02551303058862686, 0.01802883669734001, 0.010294243693351746, -0.01481536403298378, -0.026236409321427345, 0.025026140734553337, -0.0057766009122133255, 0.019336484372615814, 0.009014418348670006, 0.0047436985187232494, 0.009751709178090096, 0.018293147906661034, -0.013020826503634453, -0.035974208265542984, 0.003208256559446454, 0.014112851582467556, 0.007129459176212549, 0.018863504752516747, 0.0020066818688064814, 0.036669764667749405, 0.004667187575250864, -0.02644507586956024, 0.009278730489313602, -0.004455042537301779, 0.02330115996301174, 0.0250539630651474, -0.009939509443938732, 0.02362111583352089, -0.02225782349705696, 0.005439255852252245, 0.00026213802630081773, -0.009661286137998104, -0.0010607243748381734, 0.022007422521710396, -0.009953420609235764, 0.015079675242304802, -0.009181352332234383, 0.005369700025767088, -2.37875065067783e-05, 0.005063654854893684, -0.0056061893701553345, -0.003453440498560667, 0.01628994382917881, 0.019795551896095276, 0.019906841218471527, 0.0033178068697452545, -0.002936989301815629, -0.0010268159676343203, -0.0191973727196455, 0.007247703615576029, 0.024455783888697624, -0.016429055482149124, -0.03021499514579773, 0.0054670777171850204, 0.02229955792427063, -0.012353092432022095, 0.004715876188129187, 0.0018084481125697494, 0.007706771604716778, 0.007171192672103643, -0.00895877368748188, 0.007073814515024424, 0.016804656013846397, -0.010461176745593548, -0.014022428542375565, 0.006593880243599415, -0.01718025840818882, 0.004799343179911375, 0.012067914009094238, 0.00512973265722394, -0.005345355253666639, 0.007518970873206854, -0.021033642813563347, 0.005001054611057043, -0.0038742523174732924, -0.0043228864669799805, -0.0024222771171480417, -0.0034482236951589584, -0.0012137469602748752, 0.02412191592156887, -0.012311358936131, 0.008604040369391441, -0.016317766159772873, -0.0031891288235783577, 0.002905689412727952, -0.013125160709023476, 0.006597358267754316, 0.023356802761554718, 0.002985678380355239, -0.01233222521841526, 0.007421593181788921, 0.0036655853036791086, -0.016081277281045914, 0.006517368834465742, 0.018557460978627205, 0.01437020767480135, -0.008576218038797379, -0.00556445587426424, -0.008138016797602177, -0.0031491343397647142, -0.0004703704034909606, 0.007484193425625563, 0.0036099408753216267, 0.0010720272548496723, -0.027001522481441498, 0.00391598604619503, 0.005300144199281931, -0.0191973727196455, -0.015872610732913017, 0.014592785388231277, -0.010363799519836903, -0.020268531516194344, 0.014411941170692444, -0.0033960570581257343, 0.028253525495529175, 0.002964811632409692, 0.014829275198280811, -0.0015128364320844412, -0.023092491552233696, 0.011894024908542633, -0.013500761240720749, 0.011685357429087162, -0.012916493229568005, -0.0008846615673974156, 0.018919149413704872, -0.01208182517439127, 0.004364619962871075, -0.012937360443174839, 0.0026239887811243534, -0.02885170467197895, 0.011295845732092857, -0.0021996989380568266, 0.007352037355303764, 0.016025632619857788, 0.0016354284016415477, 0.011066311970353127, -0.011873157694935799, 0.007943260483443737, 0.012798248790204525, 0.008381461724638939, -0.010655933059751987, 0.002987417159602046, 0.0030239340849220753, -0.0013137332862243056, -0.022049156948924065, 0.010857644490897655, 0.012888670898973942, -0.034026648849248886, 0.005543589126318693, -0.020769331604242325, 0.020115507766604424, -0.0032482510432600975, -0.019642530009150505, 0.0007281612488441169, 0.011483645997941494, 0.0008164099999703467, 0.017166346311569214, -0.027683168649673462, 0.003780352184548974, -0.013709427788853645, -0.013737250119447708, -0.021395333111286163, 0.011184556409716606, -0.010322066023945808, 0.01780625805258751, -0.0063991243951022625, -0.011455823667347431, -0.008325817063450813, 0.0020901488605886698, 0.0329694002866745, 0.016234301030635834, -0.023175958544015884, -0.006566057913005352, 0.012387869879603386, 0.013911140151321888, 0.021339688450098038, 0.023871514946222305, 0.00692426972091198, -0.00917439628392458, -0.021284043788909912, -0.012186158448457718, -0.01943386159837246, 0.0020066818688064814, 0.0016623812261968851, -0.006340002175420523, -0.021534444764256477, 0.02885170467197895, -0.010189909487962723, 0.006639091297984123, 0.011302800849080086, -0.007984993979334831, 0.007845883257687092, 0.007477237842977047, 0.022021334618330002, -0.03180086612701416, 0.0003775570366997272, 0.0014728419482707977, 0.0023753270506858826, -0.001007688231766224, 0.003552557434886694, 0.009278730489313602, -0.024789651855826378, 0.009292641654610634, 0.01002297643572092, -0.006280879490077496, 0.020546752959489822, -0.0020953654311597347, 0.015316165052354336, -0.002430971711874008, 0.0005894845235161483, 0.012986049056053162, 0.005223632790148258, 0.0015971726970747113, 0.025582585483789444, 0.008485794998705387, 0.001095502288080752, 0.004187252838164568, -0.007630260195583105, 0.005821811966598034, -0.02032417431473732, -0.0050532217137515545, -0.007101636845618486, 0.020310264080762863, -0.02366284839808941, -0.002284904709085822, 0.022313468158245087, -0.033219803124666214, 0.01437020767480135, 0.013278182595968246, -0.0228838250041008, -0.006604313384741545, 0.010968933813273907, -0.008103239350020885, 0.015691766515374184, 0.0013302527368068695, -0.0032708568032830954, 0.024219295009970665, 0.007978038862347603, -0.006479113362729549, 0.007059903349727392, 0.027544056996703148, -0.004719354212284088, -0.017347190529108047, 0.00508104357868433, -0.010412488132715225, 0.0009746492141857743, 0.015177053399384022, 0.027627523988485336, -0.035000428557395935, -0.006826892029494047, -0.0013885056832805276, -0.01667945645749569, -0.0013641611440107226, -0.011587979272007942, -0.016721190884709358, -0.0054253446869552135, 0.016888123005628586, -0.016498612239956856, 0.004343753214925528, -0.012533936649560928, -0.0011563635198399425, -0.01341729424893856, -0.015177053399384022, 0.014996208250522614, -0.006235668435692787, 0.006840803194791079, -0.0029004726093262434, 0.021089287474751472, -0.00632261298596859, -0.022021334618330002, 0.0073729041032493114, 0.0007155542261898518, 0.004340275656431913, 0.02097799815237522, 0.01585869863629341, 0.021270133554935455, 0.00948044192045927, 0.0198511965572834, -0.000983343692496419, -0.017082879319787025, -0.00496279913932085, 0.014843186363577843, -0.01978164166212082, 0.003310851287096739, -0.0006742555415257812, -0.009744753129780293, 0.009223085828125477, -0.010294243693351746, 0.006270446348935366, -0.006778202950954437, -0.012902582064270973, 0.015413543209433556, 0.03238513320684433, 0.0007581571117043495, -0.00620436854660511, -0.01834879256784916, 0.01915564015507698, 0.020157242193818092, 0.005199288483709097, 0.016498612239956856, 0.004778476431965828, -0.019642530009150505, 0.026653744280338287, -0.012582626193761826, 0.012492203153669834, 0.014015473425388336, -0.001961470814421773, -0.0005620970041491091, 0.0024483606684952974, -0.016693368554115295, -0.005783556494861841, 0.0011494079371914268, -0.004580242559313774, -0.007414637599140406, 0.008444061502814293, 0.017347190529108047, 0.03650283068418503, 0.008423195220530033, -0.0009303074912168086, -0.008117150515317917, 0.004649798385798931, 0.005192332901060581, 0.0009546519722789526, 0.005999179091304541, 2.791737415464013e-06, 0.007699816022068262, 0.0060478681698441505, 0.031272243708372116, 0.010558554902672768, 0.004719354212284088, 0.0024170605465769768, -0.002681372221559286, -0.0017719314200803638, -0.002305771457031369, -0.023175958544015884, 0.002037981990724802, 0.009417841210961342, 0.003776874393224716, -0.005376655608415604, 0.006642569322139025, -0.010370754636824131, 0.03032628446817398, 0.02156226709485054, -0.0014989252667874098, -0.03819999098777771, -0.011400179006159306, 0.005341877695173025, -0.007838927209377289, 0.01233222521841526, -0.0013641611440107226, -0.010885466821491718, -0.012568715028464794, 0.00023083797714207321, -0.01395982876420021, 0.00016834652342367917, 0.02132577635347843, 0.00752592645585537, -0.014704074710607529, 0.03324762359261513, -0.003399534849449992, 0.004945410415530205, -0.007386815268546343, 0.017208080738782883, -0.017500214278697968, -0.009236996993422508, -0.019336484372615814, 0.007421593181788921, 0.01802883669734001, -0.012686959467828274, 0.010099487379193306, -0.008923996239900589, -0.021701378747820854, 0.001968426164239645, 0.009981242939829826, 0.011212378740310669, 0.0005151468794792891, -0.008019772358238697, 0.005195810925215483, -0.02761361189186573, 0.019614707678556442, -0.01830706000328064, -0.00841623917222023, -0.01078113354742527, -0.0069207921624183655, -0.008353639394044876, -0.0027196279261261225, 0.02536000870168209, -0.02164573408663273, -0.018293147906661034, 0.005213199649006128, 0.0028483059722930193, 0.0025700831320136786, -0.01363291684538126, -0.0023996715899556875, -0.002039720769971609, 0.0041420417837798595, -0.008019772358238697, 0.012951270677149296, -0.008680551312863827, -0.01023859903216362, -0.013528583571314812, 0.008040638640522957, 0.002065804321318865, -0.010732444003224373, -0.022230001166462898, 0.0155109204351902, 0.010224687866866589, 0.02001813054084778, -0.04106568545103073, -0.013820717111229897, -0.027168456465005875, -0.005811378825455904, 0.013778983615338802, 0.00290916720405221, -0.0014102418208494782, 0.011747957207262516, 0.01322253793478012, 0.006979914382100105, -0.007783282548189163, -0.0011954886140301824, 0.004907154478132725, 0.0020988432224839926, -0.001938865054398775, 0.0044932980090379715, 0.009744753129780293, -0.03032628446817398, -0.006218279246240854, 0.01706896908581257, -0.02567996457219124, -0.017889725044369698, 0.0006325221620500088, 0.000979865901172161, 0.008798795752227306, 0.015204875729978085, 0.01667945645749569, 0.0025526941753923893, 0.0028030946850776672, -0.009563908912241459, -5.284602957544848e-05, -0.00462545407935977, -0.005860067438334227, -0.0023944550193846226, 0.017861902713775635, -0.023259425535798073, -0.015316165052354336, 0.014356296509504318, -0.03516736254096031, -0.006792114116251469, -0.000413639034377411, -0.01733328029513359, -0.045823294669389725, -0.0005577497649937868, 0.02442796155810356, 0.018863504752516747, -0.021868310868740082, 0.007240748032927513, 0.0015658726915717125, -0.005804423242807388, -0.03199562057852745, -0.009772575460374355, 0.016651634126901627, -0.012499159201979637, 0.0207136869430542, -0.009306552819907665, -0.015413543209433556, 0.0019006094662472606, 0.0018849594052881002, 0.0023509825114160776, -0.03658629581332207, -0.01198444701731205, 0.036558475345373154, 0.007581571117043495, -0.011455823667347431, -1.3483208931575064e-05, -0.0014763197395950556, 0.00278222793713212, -0.01776452548801899, -0.004295064602047205, -0.008249306119978428, -0.032524242997169495, -0.013125160709023476, 0.00508104357868433, -0.029380327090620995, 0.021242311224341393, 0.014787541702389717, -0.023245515301823616, 7.281612488441169e-05, -0.027126722037792206, 0.01023859903216362, -0.014884919859468937, -0.010927200317382812, 0.01223484706133604, -0.00026778943720273674, 0.009570864029228687, 0.001465886365622282, 0.018167948350310326, -0.000845101720187813, 0.001069418853148818, 0.015107497572898865, -0.0002890908799599856, 0.00940393004566431, 0.010405532084405422, -0.02097799815237522, -0.014161540195345879, -0.015469187870621681, 0.020351996645331383, -0.012353092432022095, -0.010349888354539871, 0.034805670380592346, -0.004128130618482828, 0.003312590066343546, 0.001230266410857439, -0.0012885193573310971, 0.00363080739043653, -0.012318314053118229, -0.001316341571509838, 0.01163666881620884, -0.010266421362757683, 0.00409335270524025, 0.01761150360107422, -0.013159938156604767, 0.0017354147275909781, 0.011003711260855198, 0.01223484706133604, -0.0013589444570243359, 0.01713852398097515, -0.008903129026293755, 0.0036238518077880144, 0.0028917782474309206, -0.0233150701969862, -0.010857644490897655, -0.015956077724695206, 0.005710522644221783, 0.019127817824482918, -0.003411707002669573, -0.007825016044080257, 0.011685357429087162, -0.012617403641343117, -0.004378531128168106, -0.013368605636060238, -0.013201671652495861, 0.013465982861816883, -0.02058848738670349, 0.0005668789381161332, -0.0022953380830585957, 0.014481496065855026, 0.0054253446869552135, 0.010718532837927341, -0.00017215035040862858, 0.013911140151321888, 0.007233792450278997, -0.018585283309221268, 0.018251415342092514, -0.016262121498584747, 0.010426399298012257, 0.0008711851551197469, -0.010113398544490337, 0.0063608684577047825, 0.005094954743981361, 0.017402835190296173, -0.02125622145831585, -0.017194168642163277, -0.017082879319787025, -0.016470789909362793, -0.019183462485671043, 0.007929349318146706, -0.003105662064626813, 0.005950490012764931, 0.010829822160303593, -0.0035108239389955997, -0.012833026237785816, -0.018668750301003456, -0.0026622444856911898, -0.0224525798112154, 0.0035890741273760796, 0.020143330097198486, 0.02043546363711357, 0.007129459176212549, 0.010600288398563862, -0.0008877046057023108, -0.002976984018459916, -0.006684302818030119, -0.0060270014218986034, 0.01923910714685917, 0.017834080383181572, 0.006503457669168711, -0.001464147469960153, -0.01765323616564274, -0.0028796058613806963, 0.006872103083878756, 0.004406353458762169, 0.007706771604716778, 0.005362744443118572, 0.004583720583468676, 0.010635066777467728, -0.004841076675802469, 0.021423155441880226, 0.01978164166212082, 0.005953968036919832, 0.011003711260855198, 0.02117275446653366, -0.025276541709899902, 0.001106805051676929, 0.022480402141809464, -0.022174356505274773, 0.012464380823075771, 0.001217224751599133, -0.004628931637853384, 0.008172794245183468, -0.0013876361772418022, -0.0008777059847488999, 0.008332773111760616, -0.003399534849449992, -0.017110701650381088, -0.0037212299648672342, 0.0050706104375422, -0.0025770387146621943, -0.011629712767899036, -0.011747957207262516, 0.00387773010879755, 0.00582876754924655, 0.0036968854255974293, 0.025999920442700386, 0.001179838553071022, -0.008617951534688473, 0.010523777455091476, -0.007171192672103643, 0.00467414315789938, 0.009591731242835522, 0.015928255394101143, -0.020268531516194344, 0.004653276409953833, 0.01559438742697239, 0.0006203498924151063, 0.01437020767480135, -0.026514632627367973, 0.013326872140169144, -0.014745808206498623, -0.016609901562333107, 0.01285389345139265, 0.02036590874195099, 0.0029665506444871426, 0.003361279144883156, -0.014467584900557995, 0.012492203153669834, 0.01176882442086935, -0.0014206751948222518, 0.021506622433662415, -0.02101973257958889, -0.00039777165511623025, 0.02737712301313877, 0.02110319957137108, 0.008541439659893513, -0.019489506259560585, -0.016762923449277878, -0.009111796505749226, 0.019753819331526756, -0.008520573377609253, 0.012436558492481709, -0.001082460512407124, -0.0012380913831293583, -0.021395333111286163, 0.007084248121827841, 0.009202218614518642, 0.02637552097439766, 0.0008724892977625132, 0.011594935320317745, -0.009807353839278221, 0.0016623812261968851, -0.0008085850276984274, 0.01993466354906559, 0.016804656013846397, 0.0025996442418545485, -0.016234301030635834, -0.00735899293795228, -0.0024779217783361673, -0.009090930223464966, 0.012464380823075771, 0.0257077869027853, 0.01363291684538126, -0.007991950027644634, 0.02090844325721264, -0.01648470014333725, -0.008764018304646015, -0.002933511510491371, 0.013368605636060238, -0.000659909681417048, -0.003884685691446066, -0.004138564225286245, -0.0008151058573275805, 0.014071118086576462, -0.009988198056817055, -0.006635613739490509, -0.008770973421633244, -0.010210776701569557, -0.05060872808098793, 0.008284083567559719, -0.01087851170450449, 0.00496279913932085, -0.007338126190006733, 0.00015443538723047823, -0.001665859017521143, 0.012436558492481709, 0.011073267087340355, -0.0017354147275909781, 0.02078324370086193, -0.016776833683252335, -0.01462060771882534, -0.026403343304991722, -0.006409557536244392, 0.019559063017368317, 0.00044428702676668763, 0.006169590633362532, -0.005296666640788317, 0.0019301706925034523, -0.0038220856804400682, -0.018279237672686577, -0.009417841210961342, -0.013695517554879189, 0.006037434563040733, -0.011643623933196068, -0.0019214762141928077, 0.02451142854988575, -0.010148176923394203, -0.018126215785741806, -0.006705169565975666, -0.004952365532517433, -0.0053244889713823795, 0.001131149590946734, 0.031272243708372116, 0.012380914762616158, -0.0006829500198364258, 0.00827712845057249, -0.025930363684892654, 0.0037907855585217476, 0.0068512363359332085, -0.014787541702389717, -0.017082879319787025, 0.010127309709787369, -0.005943534430116415, 0.005533155985176563, 0.011511468328535557, -0.004955843556672335, 0.004472431261092424, 0.0016015199944376945, -0.009744753129780293, -0.011045444756746292, -0.024441871792078018, 0.0010624632705003023, 0.012297447770833969, -0.009355241432785988, 0.021631821990013123, -0.0375322550535202, -0.003411707002669573, -0.00989082083106041, 0.0030743619427084923, -0.006413035560399294, -0.009014418348670006, -0.005581845063716173, 0.004785432014614344, -0.006774724926799536, -0.0057766009122133255, 0.025318274274468422, 0.008089328184723854, 0.013820717111229897, -0.04312453418970108, -0.0023718492593616247, -0.004980187863111496, 0.021617911756038666, 0.003062189556658268, -0.022021334618330002, 0.012318314053118229, 0.0033595403656363487, 0.004778476431965828, 0.0006033956888131797, 0.006134812720119953, -0.006990347523242235, 0.012979093007743359, -0.00687558064237237, -0.0077137271873652935, -0.01233222521841526, -0.003159567713737488, -0.0012285275151953101, -0.005741822998970747, -0.022744713351130486, 0.01713852398097515, 0.006454769056290388, -0.0026987611781805754, 0.02229955792427063, 0.0010781133314594626, 0.005035832524299622, -0.001968426164239645, -0.012165292166173458, -0.0018797427183017135, -0.00861099548637867, -0.0024657496251165867, -0.01628994382917881, -0.022327380254864693, 0.03733750060200691, 0.006406079977750778, -0.014509318396449089, -0.023217692971229553, -0.006051345728337765, 0.009647374972701073, 0.014105895534157753, 0.0340544693171978, 0.027321478351950645, 0.03143917769193649, 0.003533429466187954, -0.009786486625671387, 0.008923996239900589, 0.007338126190006733, -0.022981202229857445, -0.00936915259808302, 0.008457972668111324, 0.00917439628392458, -0.0014224140904843807, 0.007922394201159477, -0.009647374972701073, 0.009876909665763378, -0.007317259442061186, -0.003255206625908613, 0.004263764247298241, -0.018014926463365555, -0.0036168962251394987, -0.018515726551413536, 0.032051265239715576, 0.0017927981680259109, 0.011115000583231449, 0.006051345728337765, 0.010662888176739216, 0.010808955878019333, 0.032134734094142914, -0.017444569617509842, 0.004340275656431913, 0.00928568560630083, -0.01078113354742527, 0.011156734079122543, 0.010906334035098553, -0.04863334447145462, -0.02691805548965931, -0.0017571508651599288, -0.001503272564150393, 0.004736742936074734, -2.5689419999253005e-05, -0.013577272184193134, 0.0053557888604700565, 0.009751709178090096, 0.017667148262262344, -0.0052549331448972225, 0.0013319916324689984, -0.015524831600487232, -0.008235394954681396, 0.0029456838965415955, -0.007553748786449432, -0.01070462167263031, -0.022675158455967903, 0.021423155441880226, 0.001701506320387125, -0.01087851170450449, 0.014537140727043152, 0.007477237842977047, 0.003399534849449992, -0.020449375733733177, -0.014238051138818264, 0.007331170607358217, 0.024219295009970665, 0.006138290278613567, 0.026166854426264763, 0.013104293495416641, -0.008388416841626167, -0.009633464738726616, -0.005665311589837074, -0.0035160405095666647, -0.00780414929613471, 0.015037941746413708, 0.013834628276526928, 0.004235941916704178, -0.01427282951772213, 0.003703841008245945, -0.002310988027602434, -0.010419443249702454, 0.018487904220819473, 0.0049036769196391106, 0.0016884645447134972, -0.009682153351604939, 0.017861902713775635, -0.0064304242841899395, -0.002632683143019676, -0.005348833277821541, 0.01526052039116621, 0.0016102144727483392, 0.008054549805819988, 0.0027126723434776068, 0.001991031924262643, 0.008882262744009495, 0.009306552819907665, -0.007532882038503885, -0.011483645997941494, -0.003206517780199647, 0.018640927970409393, -0.0038638191763311625, 0.016999412328004837, 0.019169550389051437, -0.0014476280193775892, -0.0035960297100245953, 0.012686959467828274, 0.0037386189214885235, 0.01427282951772213, -0.02090844325721264, 0.0010885467054322362, 0.009647374972701073, 0.00013835063145961612, -0.02338462509214878, 0.0031491343397647142, 0.0038742523174732924, -0.0015823921421542764, -0.006579969078302383, -0.009327419102191925, 0.01989292912185192, -3.744052810361609e-05, 0.007205970585346222, 0.010155132040381432, 0.007400726433843374, 0.01683247834444046, 0.02218826860189438, 0.011080223135650158, 0.01718025840818882, -0.004823687486350536, 0.006482590921223164, 0.02001813054084778, 0.015469187870621681, 0.010175998322665691, 0.014787541702389717, -0.014286740683019161, -0.017834080383181572, 0.0053557888604700565, 0.002368371468037367, -0.01341729424893856, -0.006687780376523733, -0.01220006961375475, -0.015399632044136524, -0.013695517554879189, -0.0018258370691910386, 0.01481536403298378, -0.000402988342102617, -0.007045992184430361, -0.027391035109758377, 0.0033386736176908016, 0.0074633266776800156, -0.0032499900553375483, 0.019336484372615814, 0.00016986805712804198, 0.01393896248191595, 0.021659644320607185, -0.021089287474751472, 0.008172794245183468, 0.012909538112580776, 0.006037434563040733, -0.019058261066675186, -0.00403423048555851, -0.011587979272007942, -0.004535031504929066, -5.629664519801736e-05, -0.0044306982308626175, -0.0009589992114342749, 0.002726583508774638, 0.010036887601017952, -0.0007033820147626102, -0.005682700779289007, -0.020880620926618576, 0.0021510100923478603, -0.02145097777247429, 0.013932006433606148, 0.009306552819907665, -0.021144932135939598, -0.014064162038266659, 0.011643623933196068, 0.018793949857354164, 0.006931225303560495, 0.0016762923914939165, -0.020922353491187096, 0.019058261066675186, -0.0016684673028066754, 0.012137469835579395, -0.014286740683019161, 0.014398030005395412, -0.019058261066675186, -0.006726035848259926, 0.006934703327715397, 0.010412488132715225, 0.005571411456912756, -0.0065695359371602535, -0.02609729766845703, -0.015218786895275116, 0.00957782007753849, -0.0287404153496027, 0.0005673136911354959, 0.002342288149520755, 0.0038985968567430973, 0.005627056118100882, -0.032134734094142914, -0.009883864782750607, -0.007484193425625563, 0.014126762747764587, 0.002509221900254488, -0.006955570075660944, 0.04718658700585365, 0.007226837333291769, 0.00452807592228055, 0.015232698060572147, -0.0029456838965415955, 0.0033021566923707724, 0.025026140734553337, 0.00035538614611141384, 0.006051345728337765, 0.005647922866046429, 0.0015337031800299883, 0.01023859903216362, 0.0015571782132610679, 0.014036339707672596, -0.001033771550282836, -0.0032882457599043846, -0.024414049461483955, 0.015969987958669662, -0.01691594533622265, 0.021617911756038666, 0.007838927209377289, 0.005898323375731707, -0.01826532743871212, -0.01070462167263031, -0.001693681231699884, 0.0031665232963860035, -0.01982337422668934, 0.0012250497238710523, -0.007164237089455128, -0.0032430344726890326, 0.00839537288993597, -0.01986510679125786, 0.02362111583352089, -0.00934828631579876, -0.007978038862347603, -0.0006433902308344841, 0.03828345611691475, -0.02536000870168209, -0.014745808206498623, 0.0020814542658627033, 0.025304364040493965, 0.0027491890359669924, -0.019920751452445984, -0.0025231330655515194, 0.017305457964539528, 0.0028935170266777277, 0.003399534849449992, -0.0032221677247434855, -0.008624906651675701, -0.02039373107254505, -0.0019997262861579657, -0.013215582817792892, -0.02184048853814602, 0.008965729735791683, -0.010850689373910427, -0.009508264251053333, 0.008284083567559719, -0.024873116984963417, -0.014015473425388336, -0.00752592645585537, -0.01353553868830204, 0.005491422489285469, 0.007098159287124872, -0.007028603460639715, -0.0019701651763170958, -0.004020319320261478, 0.007678949274122715, 0.00458719814196229, 0.04009190574288368, 0.014592785388231277, 0.02718236669898033, -0.00696252565830946, 0.011741002090275288, -0.021284043788909912, -0.004928021226078272, -0.004204642027616501, -0.011900980025529861, -0.0034204015973955393, 0.006343479733914137, -0.01873830519616604, 0.028211791068315506, 0.013236449100077152, -0.00225882139056921, -0.0016832478577271104, 0.0014293695567175746, -0.019684262573719025, 0.0004508078854996711, 0.028879527002573013, 0.00228838250041008, 0.011587979272007942, 0.004329842049628496, -0.0340544693171978, 0.0006425207830034196, 0.01549700926989317, 0.014147629030048847, 0.001862353878095746, 0.00511929951608181, -0.001690203440375626, 0.024219295009970665, -0.00019214762141928077, -0.022049156948924065, 0.02199351228773594, 0.011358445510268211, -0.007678949274122715, 0.005101910326629877, 0.013605094514787197, 0.008332773111760616, -0.01341729424893856, -0.030354106798768044, -0.0006164374062791467, -0.005300144199281931, -0.006141768302768469, -0.015469187870621681, 0.007014692295342684, 0.019183462485671043, -0.002192743355408311, -0.0023996715899556875, -0.003110878635197878, 0.002714411122724414, 0.010078621096909046, -0.014634518884122372, 0.007553748786449432, -0.0015145753277465701, 0.0057209562510252, 0.011330623179674149, -0.012944315560162067, -0.028253525495529175, 0.0059087565168738365, 0.0016893340507522225, -0.01186620257794857, 0.005213199649006128, 0.018835682421922684, -0.010537688620388508, 0.006548669189214706, -0.003208256559446454, 0.019127817824482918, -0.010516821406781673, 0.0038742523174732924, 0.026556365191936493, -0.003776874393224716, 0.0006938180886209011, -0.013904184103012085, -0.01822359301149845, -0.007512015290558338, -0.02292555756866932, -0.005303622223436832, -0.008666640147566795, -0.0014032862382009625, -0.009021374396979809, -0.001989292912185192, 0.004378531128168106, -0.015177053399384022, 0.0056374892592430115, -0.007984993979334831, 0.004917588084936142, 0.000578616454731673, 0.01896088384091854, 0.005915712099522352, -0.023245515301823616, -0.014314563013613224, 0.006357390899211168, 0.014940564520657063, 0.014954475685954094, -0.007414637599140406, 0.0015458754496648908, -0.02835090272128582, 0.015302253887057304, 0.00025800816365517676, 0.0032517288345843554, 0.006454769056290388, -0.0007985863485373557, 0.002415321534499526, 0.004232464358210564, -0.03079926408827305, -0.015302253887057304, -0.011121956631541252, -0.00305871176533401, 0.020351996645331383, -0.02039373107254505, -0.001464147469960153, -0.0011954886140301824, 0.01080199982970953, 0.024344494566321373, 0.019614707678556442, 0.02191004529595375, 0.00991168711334467, 0.02017115242779255, 0.0020953654311597347, -0.011713179759681225, 0.007164237089455128, 0.026013830676674843, -0.011316712014377117, 0.008284083567559719, 0.02672329917550087, 0.012012269347906113, 0.01437020767480135, -0.0032899845391511917, 0.006830369587987661, -0.0067190807312726974, -0.032246023416519165, -0.0127426041290164, 0.006482590921223164, 0.010433354414999485, 0.006190457381308079, -0.0041907308623194695, 0.005032354965806007, 0.019336484372615814, 0.0001598694216227159, -0.014592785388231277, 0.02912992611527443, 0.01609518937766552, 0.004931499250233173, -0.01208182517439127, 0.009633464738726616, -0.03338673710823059, 9.569342364557087e-05, 0.03138353303074837, 0.007400726433843374, -0.016623811796307564, -0.022174356505274773, -0.01574740931391716, 0.0033004179131239653, -0.013146026991307735, 0.006892969831824303, -0.011087178252637386, 0.011685357429087162, -0.025999920442700386, 0.017778435721993446, 0.014884919859468937, -0.008548395708203316, 0.003307373495772481, 0.008221483789384365, 0.01997639611363411, -0.011379312723875046, -0.006287835072726011, 0.009647374972701073, -0.013438161462545395, -0.007998905144631863, -0.014091984368860722, 0.011469734832644463, 0.005439255852252245, 0.0052166772074997425, -0.006357390899211168, 0.021117109805345535, -0.00502192135900259, 0.011761868372559547, -0.012951270677149296, 0.009028329513967037, -0.0022101323120296, 0.018126215785741806, 0.0185435488820076, -0.005599233787506819, -0.010016020387411118, 0.020838886499404907, -0.00626349076628685, 0.016178656369447708, -0.014857097528874874, 0.016888123005628586, 0.0003440833534114063, 0.025693874806165695, -0.02090844325721264, -0.0015754365595057607, -0.00826321728527546, 0.02442796155810356, -0.01993466354906559, -0.013904184103012085, -0.0375322550535202, 0.020310264080762863, 0.008784884586930275, 0.012373958714306355, -0.01620647870004177, 0.012193113565444946], "27fa039b-fe69-4713-98d1-a3c64b165183": [-0.004934424534440041, -0.005213951226323843, -0.002197391353547573, 0.008246040903031826, 0.003241734579205513, -0.049320951104164124, 0.015583619475364685, 0.013696813955903053, -0.010319198481738567, 0.06683796644210815, -0.003796905744820833, -0.002791385864838958, -0.03450603038072586, -0.004639368504285812, 0.001225841580890119, 0.023262841627001762, -0.03410227224230766, 0.019799815490841866, 0.001134607126004994, -0.0376429446041584, 0.07037863880395889, -0.015591383911669254, -0.04773696884512901, 0.03860575705766678, 0.004394782707095146, 0.0016043673967942595, -0.015148799866437912, 0.00913120899349451, -0.018417710438370705, 0.010676370933651924, 0.0162280835211277, 0.010622018948197365, 0.03652483597397804, -0.009752379730343819, -0.0046510156244039536, -0.022206852212548256, -0.003257263684645295, 0.0062155891209840775, -0.016585256904363632, 0.019225232303142548, -0.0036765539553016424, 0.051619283854961395, -0.0019634817726910114, 0.005866180639714003, -0.014356807805597782, 0.009690262377262115, -0.009030268527567387, -0.03141570836305618, -0.007764633744955063, -0.012143886648118496, 0.018060537055134773, 0.020436516031622887, 0.03497191146016121, 0.014675157144665718, 0.004616074729710817, -0.008649801835417747, 0.006021473556756973, 0.0469605028629303, -0.004018197767436504, -0.05351385474205017, 0.014970213174819946, -0.0028515616431832314, 0.027067512273788452, 0.009333089925348759, 0.020560748875141144, -0.019970636814832687, 0.027688683941960335, 0.012772821821272373, -0.026368696242570877, 0.025266118347644806, 0.028340913355350494, 0.01540503278374672, -0.04534545913338661, 0.030219953507184982, 0.010870487429201603, -0.02254849672317505, 0.01330858189612627, -0.002603093395009637, 0.0008759477059356868, 0.007461812812834978, -0.02764209546148777, -0.0017645129701122642, 0.013518227264285088, -0.015265269204974174, 0.09435582906007767, 0.014496570453047752, -0.022688258439302444, -0.05612277239561081, -0.02560776099562645, -0.03664907068014145, -0.015226446092128754, 0.006922170985490084, 0.018976764753460884, 0.030406305566430092, 0.012423413805663586, 0.02458282932639122, 0.008882740512490273, 0.011041308753192425, 0.017315132543444633, -0.013494933024048805, 0.012811644934117794, 0.02922608144581318, 0.0036202603951096535, 0.005540065933018923, 0.01354928594082594, 0.002243979135528207, 0.019737698137760162, 0.0019401877652853727, -0.03522037714719772, -0.0004894145531579852, 0.014178221113979816, -0.03382274508476257, -0.012431178241968155, -0.0019877462182193995, -0.028806790709495544, -0.04658780246973038, -0.029645370319485664, -0.044196292757987976, -0.0042161960154771805, -0.036307428032159805, 0.03568625450134277, -0.017035605385899544, -0.0109403682872653, -0.0223466157913208, -0.032890986651182175, 0.030872182920575142, 0.005179010797291994, 0.019706640392541885, 0.029055258259177208, -0.006192295346409082, 0.0003457688435446471, 0.0009754321072250605, 0.01010955311357975, 0.023324958980083466, 0.014310219325125217, 0.011530481278896332, -0.0026885042898356915, 0.04258124902844429, -0.01855747401714325, 0.045407578349113464, -0.06112319603562355, -0.03202134743332863, -0.011437305249273777, -0.024334361776709557, 0.03163311630487442, -0.00065756740514189, -0.06326623260974884, 0.058762747794389725, -0.028589380905032158, 0.03795352950692177, -0.06801819056272507, -0.01624361425638199, 0.0006551409605890512, 0.0025933876167982817, -0.019349467009305954, -0.020902393385767937, 0.007019228767603636, 0.029567724093794823, 0.0001368516677757725, -0.0006376705132424831, 0.007267697248607874, -0.04928989335894585, -0.00280691497027874, 0.01126648299396038, 0.03394697979092598, 0.015094447880983353, 0.060626257210969925, 0.0174238383769989, -0.05456984415650368, 0.025731995701789856, 0.013696813955903053, -0.023247312754392624, 0.03397803753614426, 0.01865064911544323, -0.01299023162573576, 0.0008046101429499686, 0.009752379730343819, 0.037239182740449905, 0.03276675194501877, -0.030779007822275162, -0.05118446424603462, 0.004060903564095497, -0.02152356505393982, 0.001846041646786034, 0.034257564693689346, 0.020855804905295372, 0.026415282860398293, 0.028775731101632118, 0.010000848211348057, 0.024163540452718735, -0.016818195581436157, -0.030856654047966003, -0.023045431822538376, 0.04239489883184433, 0.0016024262877181172, -0.030173366889357567, -0.019970636814832687, -0.002799150301143527, 0.0037600237410515547, 0.010746252723038197, -0.022657200694084167, -0.04969365522265434, -0.029629841446876526, 0.05196092650294304, -0.024334361776709557, 0.030592655763030052, -0.012353532016277313, -0.05370020493865013, 0.026477400213479996, -0.0230143740773201, 0.04963153600692749, -0.00979120284318924, -0.04037609323859215, -0.013254229910671711, 0.021026628091931343, -0.004802425857633352, -0.038978461176157, -0.009767908602952957, -0.023992717266082764, -0.010691900737583637, -0.026865631341934204, 0.0025118589401245117, 0.004767484962940216, -0.029055258259177208, -0.03916481137275696, -0.035282496362924576, 0.01572338305413723, -0.00019338791025802493, -0.007652046158909798, 2.3369726477540098e-05, 0.006227236241102219, 0.011693538166582584, 0.016725020483136177, -0.03643165901303291, -0.028899965807795525, 0.016849255189299583, 0.04820284619927406, 0.026306578889489174, -0.02107321470975876, 0.014131633564829826, 0.01372787170112133, 0.02318519540131092, -0.01401516329497099, -0.021290624514222145, 0.03239405155181885, 0.028511734679341316, 0.01697348989546299, 0.03972386568784714, 0.011685773730278015, 0.0031330296769738197, 0.018899118527770042, 0.022610612213611603, -0.01010178867727518, -0.006867818534374237, -0.03851258382201195, 0.038170937448740005, 0.05146399140357971, -0.006498998496681452, -0.00417737290263176, -0.005512889940291643, -0.006491233594715595, 0.0023507429286837578, -0.0019033057615160942, 0.026601634919643402, 0.010094023309648037, -0.04621509835124016, 0.009402971714735031, -0.016383375972509384, 0.024722592905163765, 0.029334785416722298, 0.00663099717348814, -0.010878251865506172, 0.019240761175751686, 0.0003338792303111404, -0.0072715794667601585, -0.03655589371919632, 0.01874382607638836, 0.031571000814437866, -0.0032708519138395786, 0.012050711549818516, -0.006009826436638832, -0.04065562039613724, 0.03562413901090622, 0.05668182671070099, 0.0108083700761199, -0.01539726834744215, 0.009294266812503338, 0.006875582970678806, -0.05006635561585426, -0.01405398640781641, -0.0037658473011106253, -0.016290200874209404, 0.024241186678409576, 0.027471274137496948, 0.007690869737416506, 0.017625717446208, -0.012904820963740349, -0.03636954352259636, -0.007939337752759457, 0.012858233414590359, -0.012361296452581882, -0.02782844752073288, 0.033356864005327225, -0.003550378605723381, 0.04220854863524437, -0.01335516944527626, 0.055625833570957184, -0.007869455963373184, -0.01535068079829216, 0.03599683940410614, 0.03702177107334137, -0.014915861189365387, 0.010590960271656513, -0.006894994527101517, -0.02540588192641735, -0.0016509551787748933, 0.041711609810590744, 0.006844524294137955, -0.012470001354813576, -0.03754976764321327, 0.030188895761966705, 3.403093433007598e-05, -0.06093684583902359, 0.029008671641349792, 0.028993140906095505, -0.01605726219713688, 0.022206852212548256, -0.023806367069482803, -0.02719174697995186, -0.027129629626870155, -0.004798543639481068, -0.015863146632909775, -0.04140102490782738, 0.015676794573664665, -0.010024141520261765, -0.0554705411195755, -0.04009656608104706, -0.007333696354180574, 0.012912585400044918, 0.0006808612961322069, -0.01717536896467209, -0.006137942895293236, 0.029816193506121635, 0.012811644934117794, 0.010622018948197365, 0.001641249400563538, 0.0006988170207478106, 0.015894204378128052, -0.03230087459087372, 0.0061651188880205154, 0.0009011827642098069, -0.019535817205905914, 0.01613490842282772, 0.028170090168714523, -0.0009404912707395852, -0.01112672034651041, -0.018573002889752388, 0.009915436618030071, -0.007391931023448706, 0.018852530047297478, -0.00628547091037035, -0.02273484691977501, -0.006739702075719833, -0.010218258015811443, -0.010396844707429409, 0.025359293445944786, 0.030468422919511795, -0.016492081806063652, 0.024613888934254646, -0.00023524413700215518, -0.01788971573114395, 0.03689754009246826, 0.016383375972509384, -0.0016946312971413136, -0.021663326770067215, -0.0105754304677248, 0.024551771581172943, 0.011196601204574108, -0.010552137158811092, 0.018976764753460884, 0.024334361776709557, -0.0008652713731862605, -0.024427536875009537, 0.033729568123817444, 0.02476918138563633, 0.012019652873277664, 0.016818195581436157, -0.004072550218552351, -0.024256715551018715, 0.015210917219519615, -0.04534545913338661, 0.0004321503802202642, -0.044941697269678116, -0.024613888934254646, -0.02838749997317791, 0.03997233510017395, 0.007966513745486736, -0.00024701241636648774, 0.012772821821272373, -0.03459920734167099, 0.005373126361519098, -0.027315981686115265, 0.0053575970232486725, 0.02020357735455036, -0.0012025475734844804, -0.04733320698142052, -0.013230935670435429, -0.025731995701789856, 0.004674309398978949, 0.002663269406184554, -0.012314708903431892, -0.010226022452116013, 0.016585256904363632, 0.00030112219974398613, 0.037798237055540085, 0.031959231942892075, -0.0010433726711198688, 0.01893017627298832, -0.058110516518354416, -0.014022928662598133, 0.036121074110269547, 0.0395064540207386, 0.0002148619678337127, 0.021834149956703186, -0.006561115384101868, 0.018510885536670685, 0.02292119897902012, 0.005380891263484955, -0.024520711973309517, -0.011654715053737164, -0.0013025172520428896, 0.04255019128322601, -0.010722959414124489, -0.010055200196802616, 0.00807521864771843, -0.009441794827580452, 0.022098146378993988, -0.012477765791118145, 0.0022400966845452785, -0.01503233052790165, 0.01753254234790802, -0.007069699000567198, -0.01633678935468197, -0.01053660735487938, -0.03739447519183159, -0.027704212814569473, -0.04751955717802048, 0.0007323020254261792, -0.004154079128056765, -0.017299603670835495, -0.009589322842657566, -0.006223354022949934, -0.04677415266633034, -0.007554988376796246, 0.01670949161052704, -0.010086258873343468, -0.023635543882846832, 0.0023119195830076933, 0.018231360241770744, -0.042985010892152786, -0.03537566959857941, -0.014209279790520668, 0.010715194046497345, -0.007038640324026346, 0.02282802201807499, -0.03292204812169075, -0.009115680120885372, 0.01043566782027483, 0.00839356891810894, 0.010055200196802616, -0.024924473837018013, 0.011382953263819218, -0.015917498618364334, 0.012547647580504417, 0.001836335868574679, 0.00280691497027874, -0.024070363491773605, 0.014574217610061169, -0.0010608431184664369, -0.013704578392207623, -0.028216678649187088, -0.021104274317622185, -0.026027051731944084, -0.009589322842657566, -0.003886199090629816, 0.0028379736468195915, 0.011375187896192074, -0.026089169085025787, -0.004480193369090557, -1.2306641110626515e-05, 0.034661322832107544, -0.0094107361510396, 0.025095295161008835, -0.02160121127963066, 0.006747466512024403, -0.03661801293492317, -0.030856654047966003, -0.02169438637793064, -0.010132846422493458, -0.030080189928412437, -0.0033776157069951296, -0.040313977748155594, -0.0075045181438326836, 0.023356018587946892, -0.021383801475167274, 0.01798289082944393, -0.02243979088962078, 0.02348025143146515, 0.01865064911544323, -0.001290870364755392, -0.00830815825611353, 0.012159416452050209, -0.03605895861983299, 0.003934727981686592, 0.0012695175828412175, 0.03876104950904846, -0.015901969745755196, -0.007574399933218956, 0.036586955189704895, 0.006235000677406788, 0.004899483639746904, -0.018215829506516457, -0.013890929520130157, -0.018852530047297478, -0.03388486057519913, -0.009534969925880432, 0.013533756136894226, -0.004693720955401659, 0.03155547007918358, -0.0029505607672035694, -0.00385125819593668, 0.022672729566693306, 0.0012860174756497145, 0.010986956767737865, 0.018588533625006676, -0.005085834767669439, 0.0073569901287555695, 0.031244885176420212, 0.0223466157913208, 0.016538670286536217, -0.044009942561388016, 0.023884013295173645, -0.014108339324593544, -0.0028554440941661596, -0.005780769512057304, 0.037052832543849945, 0.009573793038725853, 0.008665330708026886, 0.007182286120951176, 0.02484682761132717, -0.018976764753460884, -0.0007565664709545672, 0.002768091857433319, 0.011693538166582584, -0.005683711729943752, -0.035002969205379486, 0.021119803190231323, -0.05450772866606712, -0.02299884520471096, -0.006875582970678806, 0.0003232028684578836, 0.006561115384101868, 0.0011569303460419178, 0.0038900813087821007, -0.007473459932953119, -0.031307004392147064, -0.03416438773274422, 0.02820114977657795, -0.024893416091799736, 0.03646272048354149, 0.03070136159658432, -0.001363663817755878, 0.04941412806510925, 0.007749104406684637, -0.023216255009174347, 0.03202134743332863, -0.027890563011169434, -0.01149942260235548, -0.038543641567230225, -0.01920970343053341, 0.029738547280430794, -0.02855832315981388, -0.009985318407416344, -0.013852106407284737, -0.02273484691977501, -0.02096451073884964, -0.031772881746292114, -0.024427536875009537, 0.022750375792384148, 0.020156988874077797, -0.02087133564054966, 0.026182344183325768, 0.005889474414288998, 0.04519016668200493, -0.025825170800089836, 0.03487873449921608, 0.007958749309182167, 0.01633678935468197, 0.014302454888820648, -0.0005095540545880795, -0.0016431906260550022, 0.015645736828446388, 0.015047860331833363, 0.011150013655424118, -0.016895841807127, 0.015482679009437561, -0.01294364407658577, 0.017190897837281227, 0.013052348978817463, 0.019163114950060844, 0.010466726496815681, 0.0045500751584768295, 0.02633763663470745, -0.008238276466727257, 0.012353532016277313, 0.001290870364755392, 0.01837112382054329, 0.027983739972114563, -0.0009205943788401783, -0.00398713955655694, 0.005936062429100275, -0.015490444377064705, 0.03953751549124718, -0.027486803010106087, 0.01751701347529888, 0.023868484422564507, 0.0008303304784931242, 0.003614436835050583, -0.008657566271722317, 0.010971426963806152, 0.013859870843589306, 0.0019071880960837007, -0.003583378391340375, -0.025716466829180717, 0.004185137338936329, -0.01085495762526989, 0.002222626470029354, 0.03183499723672867, -0.0065494682639837265, -0.04015868529677391, -0.03745659068226814, -0.005842886865139008, 0.009022504091262817, 0.04081091284751892, -0.01007073000073433, -0.0010569607838988304, -0.0005202304455451667, -0.003402850590646267, 0.03571731597185135, 0.009232149459421635, -0.006145707331597805, 0.0014325749361887574, 0.009325324557721615, 0.026648221537470818, -0.00700369942933321, -0.05205410346388817, -0.012120593339204788, 0.012345767579972744, 0.005703123286366463, 0.019737698137760162, 0.0197532270103693, -0.00047364263446070254, 0.017485955730080605, 0.027859505265951157, 0.022859081625938416, 0.018976764753460884, 0.03366745263338089, -0.0009118591551668942, 0.031291473656892776, -0.003950257319957018, 0.024722592905163765, -0.018107125535607338, 0.016165968030691147, 0.025157412514090538, 0.003094206564128399, 0.010862722061574459, -0.0003006368933711201, 0.02236214466392994, -0.004041492007672787, -0.010948133654892445, -0.017020076513290405, -0.021461447700858116, -0.01224482711404562, 0.011414011009037495, 0.006075825542211533, -0.0004069153219461441, -0.0016208672896027565, 0.03388486057519913, -0.016492081806063652, -0.01049001980572939, 0.0075084008276462555, 0.025017648935317993, 0.0016829842934384942, 0.005256657022982836, 0.00633205845952034, 0.020467573776841164, 0.011289777234196663, -0.01670949161052704, 0.016895841807127, -0.02949007786810398, -0.04997318238019943, -0.022843552753329277, -0.012741764076054096, -0.023806367069482803, 0.007807339075952768, 0.023946130648255348, -0.01427916157990694, -0.019458170980215073, -0.0012044887989759445, -0.02216026373207569, 0.019240761175751686, 0.005664300173521042, 0.0020362751092761755, 0.0038337877485901117, 0.01751701347529888, 0.015754440799355507, -0.011701302602887154, 0.008657566271722317, 0.01285046897828579, 0.030468422919511795, -0.014085045084357262, 0.030592655763030052, -0.024148009717464447, -0.05242680758237839, -0.03189711645245552, -0.011142249219119549, 0.0029525018762797117, -0.00030937211704440415, -0.013083407655358315, -0.0025332116056233644, 0.04304713010787964, -0.009612616151571274, -0.0028554440941661596, 0.01405398640781641, 0.015094447880983353, -0.038916341960430145, -0.009682497940957546, 0.008517802692949772, -0.001543220947496593, -0.004604427609592676, 0.013161053881049156, -0.04292289540171623, 0.034474972635507584, -0.010684135369956493, 0.02077815867960453, 0.017687834799289703, 0.02143038809299469, -0.002210979349911213, 0.009589322842657566, 0.009682497940957546, 0.04018974304199219, -0.03627636656165123, 0.037798237055540085, 0.04081091284751892, -0.014574217610061169, 0.01697348989546299, 0.035655196756124496, -0.0006153472349978983, -0.023899542167782784, 0.04866872355341911, -0.028496205806732178, 0.004759720526635647, -0.0031932054553180933, -0.03636954352259636, 0.00043384890886954963, 0.0017819834174588323, -0.020747100934386253, 0.027160687372088432, 0.030577126890420914, -0.0015548678347840905, 0.039382223039865494, -0.007686987053602934, 0.01816924288868904, 0.023821895942091942, -0.018045008182525635, -0.013945281505584717, 0.01714431121945381, -0.010140611790120602, -0.04267442598938942, -0.008510038256645203, 0.005652653053402901, -0.03522037714719772, 0.026865631341934204, -0.031198298558592796, 0.017641248181462288, -0.03070136159658432, 0.018138183280825615, -0.01010178867727518, 0.02430330216884613, 0.019520288333296776, -0.008937093429267406, -0.01052884291857481, -0.01816924288868904, 0.035282496362924576, 0.0007628752500750124, -0.01680266670882702, 0.013541520573198795, -0.04140102490782738, -0.016445493325591087, 0.0031718527898192406, 0.04028292000293732, -0.010132846422493458, 0.03683542087674141, 0.05015953257679939, 0.006203942000865936, 0.01330858189612627, -0.010264845564961433, 0.005672064609825611, -0.0072211092337965965, -0.012174945324659348, -0.004519016947597265, 0.009527205489575863, -0.02051416225731373, 0.015583619475364685, -0.0091777965426445, 0.005920533090829849, 0.014263631775975227, -0.0003724597627297044, 0.008556625805795193, 0.0014878979418426752, -0.0021080980077385902, 0.00903803389519453, 0.02494000270962715, 0.019551347941160202, -0.017827598378062248, 0.02107321470975876, 0.016197025775909424, -0.012361296452581882, 0.007574399933218956, 0.01947370171546936, 0.02570093795657158, 0.019986167550086975, -0.01362693216651678, 0.022408733144402504, 0.021306155249476433, 0.01854194514453411, -0.004235607571899891, 0.011701302602887154, -0.0056681823916733265, -0.01652313955128193, -0.019256291911005974, -0.040686678141355515, -0.011887653730809689, -0.016212554648518562, -0.018526416271924973, -0.02607364021241665, -0.01910099945962429, 0.015933027490973473, 0.045314401388168335, 0.024707064032554626, 0.00011938124225707725, -0.0007813162519596517, -0.008106277324259281, 0.0027972091920673847, -0.022843552753329277, 0.010971426963806152, 0.004072550218552351, 0.025809641927480698, 0.0051984223537147045, 0.012594236060976982, -0.008222746662795544, 0.005015953443944454, -0.0021760384552180767, -0.006871700752526522, 0.013114466331899166, -0.022750375792384148, 0.012050711549818516, 0.0056448886170983315, -0.0025836818385869265, -0.025374822318553925, -0.018883589655160904, 0.007248285226523876, 0.0188214723020792, 0.012710705399513245, -0.018666179850697517, 0.017936304211616516, -0.011755655519664288, 0.00019714889640454203, -0.05289268493652344, -0.019163114950060844, -0.008494509384036064, 0.02226896956562996, -0.004573369398713112, 0.00048771605361253023, -0.041245732456445694, 0.012640823610126972, 0.004581133835017681, -0.01680266670882702, 0.003963845316320658, -0.015381739474833012, -0.0015713677275925875, 0.0059050037525594234, -0.007318167015910149, -0.040500327944755554, -0.01624361425638199, 0.001961540663614869, -0.006258294451981783, -0.013976340182125568, -0.02068498358130455, -0.022750375792384148, -0.00556724239140749, -0.021181920543313026, -0.03820199891924858, 0.013937517069280148, 0.04341983050107956, -0.01160036213696003, 0.022843552753329277, 0.002210979349911213, -0.01178671419620514, 0.026213403791189194, -0.01652313955128193, 0.02365107461810112, -0.025840699672698975, -0.00969802774488926, 0.06528504192829132, -0.00908462144434452, 0.02579411305487156, -0.014869273640215397, 0.013518227264285088, -0.027937151491642, -0.013448345474898815, 0.007749104406684637, -0.006642643827944994, 0.019986167550086975, 0.0024050951469689608, -0.006293235346674919, 0.003695965511724353, -0.0033368512522429228, 0.0057186526246368885, 0.029195021837949753, 0.0020013342145830393, 0.029754076153039932, 0.010451196692883968, 0.00011179858847754076, 0.031493354588747025, -0.010590960271656513, 0.006949346978217363, 0.03422650322318077, -0.05478725582361221, -0.0197532270103693, -0.024458596482872963, 0.0105754304677248, 0.01572338305413723, -0.026042580604553223, -0.0002870488096959889, -0.014713980257511139, -0.015824323520064354, 0.051246579736471176, 0.010839428752660751, 0.0004083711828570813, 0.015637971460819244, 0.03071689046919346, -0.0005362450028769672, -0.0024924473837018013, 0.007752986624836922, 0.038264114409685135, 0.0015791323967278004, 0.006693114060908556, -0.005625477060675621, 0.011305306106805801, 0.010311433114111423, 0.002684622071683407, -0.0036280250642448664, 0.006883347872644663, -0.02661716379225254, -0.007069699000567198, -0.029645370319485664, -0.0075821648351848125, -0.010622018948197365, -0.022191323339939117, -0.031866054981946945, -0.02616681531071663, -0.0003576584276743233, -0.018417710438370705, -0.02827879600226879, 0.011584833264350891, -0.023076491430401802, 0.0017480130773037672, -0.02208261750638485, -0.003534849500283599, 0.014201514422893524, -0.06242765486240387, -0.0015684559475630522, 0.0012345766881480813, 0.00307091255672276, -0.0003785258741118014, -0.02198944240808487, 0.014061751775443554, -0.019240761175751686, 0.007752986624836922, -0.017843127250671387, -0.00417737290263176, 0.011049073189496994, 0.0013112524757161736, -0.02273484691977501, -0.03972386568784714, 0.011157778091728687, -0.01122765988111496, -0.0055866539478302, -0.013129995204508305, 0.0019149527652189136, 0.0014752803836017847, -0.03236299380660057, 0.04581133648753166, 0.046152982860803604, 0.009395206347107887, 0.012143886648118496, -0.015141035430133343, -0.0005571124493144453, 0.013176582753658295, -0.008579920046031475, -0.009146738797426224, 0.017004547640681267, 0.005641006398946047, -0.008284864015877247, 0.04317136108875275, 0.005784652195870876, -0.03736341744661331, 0.00987661350518465, 0.03758082538843155, 0.040438212454319, -0.03351216018199921, 0.0043171364814043045, -0.01502456609159708, -0.01874382607638836, -0.006087472662329674, 0.009107914753258228, 0.024831298738718033, 0.00732981413602829, 0.03388486057519913, -0.02051416225731373, 0.003459144150838256, 0.012392355129122734, -0.01745489612221718, 0.01052107848227024, -0.01534291636198759, -0.021399330347776413, -0.07938561588525772, -0.010039671324193478, 0.010427902452647686, 0.003643554402515292, -0.01535844523459673, -0.016119379550218582, 0.022300027310848236, 0.008812858723104, -0.008867211639881134, -0.010396844707429409, -0.011118954978883266, -0.0012316650245338678, 0.017004547640681267, 0.02598046325147152, -0.01706666499376297, -0.002073157113045454, 0.0026962689589709044, -0.029552195221185684, 0.0037580826319754124, 0.014364572241902351, -0.0015471032820641994, -0.004076432436704636, 0.026974337175488472, -0.006685349624603987, -0.010288139805197716, 0.03748765215277672, -0.003994903992861509, 0.01807606779038906, -0.02421012707054615, -0.020653925836086273, -0.006386410910636187, 0.011856595054268837, -0.034381795674562454, 0.005283833015710115, -0.0030980887822806835, 0.0190233513712883, 0.004957718309015036, 0.002432271372526884, 0.04155631735920906, 0.004022079985588789, 0.03459920734167099, -0.009705792181193829, -0.004790778737515211, 0.00208868645131588, 0.010148376226425171, -0.010629783384501934, -0.012749528512358665, -0.011755655519664288, -0.005679829511791468, -0.007566635496914387, -0.006196177564561367, 0.02413248084485531, -0.016849255189299583, -0.019815344363451004, 0.012881526723504066, 0.00867309607565403, 0.013324110768735409, -0.016926901414990425, -0.008626507595181465, -0.014085045084357262, 0.037332359701395035, 0.018293477594852448, 0.006557233165949583, -0.001934364321641624, -0.027719741687178612, 0.007760751061141491, -0.0021022744476795197, 0.024598360061645508, 0.030639244243502617, 0.008409097790718079, 0.008867211639881134, -0.0010957838967442513, 0.012019652873277664, 0.009154503233730793, 0.02309202030301094, -0.007966513745486736, 0.016849255189299583, 0.0038900813087821007, 0.017097722738981247, -0.008867211639881134, -0.007190050557255745, 0.006992052309215069, 0.029086317867040634, -0.007737457286566496, -0.03199028968811035, -0.018153714016079903, 0.0105754304677248, -0.003092265222221613, -0.019240761175751686, -0.012788351625204086, 0.045128051191568375, 0.0251418836414814, 0.048358138650655746, 0.008098512887954712, 0.009496146813035011, 0.047364264726638794, -0.01705113612115383, 0.03189711645245552, -0.0038318466395139694, -0.00867309607565403, 0.011895419098436832, 0.0013772519305348396, -0.005780769512057304, -0.014861508272588253, -0.020001696422696114, -0.028993140906095505, 0.0007861691410653293, -0.004150196444243193, -0.018355593085289, -0.041991136968135834, -0.007543341722339392, -0.006894994527101517, -0.022672729566693306, 0.0024885651655495167, -0.012493295595049858, 0.004126902669668198, 0.008688624948263168, -0.0025409762747585773, -0.019458170980215073, 0.01052884291857481, 0.0028049738612025976, 0.018899118527770042, 0.017858657985925674, -0.046339333057403564, -0.001363663817755878, 0.0007293902453966439, -0.00025599024957045913, -0.0005571124493144453, -8.031542529352009e-05, 0.017299603670835495, 0.013828812167048454, 0.016476552933454514, -0.005963238421827555, 0.0174238383769989, -0.01502456609159708, 0.00039065812597982585, 0.0399102158844471, -0.026368696242570877, 0.038357291370630264, -0.01566903106868267, 0.02338707633316517, 0.026089169085025787, 0.002327448921278119, 0.023169666528701782, 0.001249135471880436, -0.021725444123148918, -0.018045008182525635, -0.03478555753827095, -0.0024458596017211676, -0.020840276032686234, -0.006755231413990259, -0.01585538126528263, 0.014954684302210808, -0.02372872084379196, -0.01642996445298195, -0.0324561670422554, -0.023713190108537674, -0.0008507126476615667, 0.014519864693284035, -0.033356864005327225, -0.030095720663666725, -0.0014151044888421893, 0.017843127250671387, -0.0315244123339653, 0.03490979224443436, 0.006646526511758566, -0.02419459819793701, -0.013075643219053745, 0.008214982226490974, -0.0030883830040693283, 0.014519864693284035, -0.006685349624603987, -0.006902759429067373, -0.006999817211180925, 0.021275095641613007, 0.007077463436871767, -0.005606065504252911, 0.007248285226523876, 0.02503317780792713, 0.0032922045793384314, -0.01958240568637848, 0.008013102225959301, 0.010443432256579399, 0.0071201687678694725, 0.002416742267087102, -0.012920349836349487, 0.002059569116681814, 0.010280374437570572, -0.00473254406824708, 0.008168394677340984, 0.025374822318553925, 0.020296752452850342, 0.0060292379930615425, -0.008059689775109291, 0.020265692844986916, 0.009488382376730442, 0.019333938136696815, 0.04928989335894585, -0.022424262017011642, -0.010676370933651924, -0.01229141466319561, -0.00950391124933958, 0.012702940963208675, -0.004744191188365221, -0.0026496811769902706, -0.002684622071683407, -0.030468422919511795, 0.020436516031622887, 0.0009016680996865034, -0.023775307461619377, -0.015172094106674194, 0.029924897477030754, -0.013425051234662533, -0.002278920030221343, -0.011305306106805801, -0.011483892798423767, 0.003323263255879283, -0.014139398001134396, 0.009527205489575863, 0.007527812384068966, 0.040127627551555634, -0.0026438576169312, -0.01771889440715313, -0.028635969385504723, 0.0006963905761949718, 0.03652483597397804, -0.0050470116548240185, -0.035406727343797684, -0.012858233414590359, 0.004119138233363628, -0.003068971447646618, -0.008214982226490974, 0.007399695925414562, 0.006370882038027048, 0.007205579895526171, 0.006281588692218065, 0.01715984009206295, -0.010179434902966022, 0.026182344183325768, -0.023899542167782784, -0.02365107461810112, -0.02439647912979126, -0.007838397286832333, -0.008649801835417747, 0.025763053447008133, 0.005967121105641127, -0.027719741687178612, -0.024924473837018013, -0.015917498618364334, 0.027129629626870155, -0.016398906707763672, -0.027300450950860977, -0.009946495294570923, 0.011709067039191723, 0.009302031248807907, 0.025949405506253242, -0.022672729566693306, -0.02170991525053978, 0.0021740973461419344, 0.002276978688314557, 0.005373126361519098, 0.011577068828046322, 0.016647374257445335, -0.04227066412568092, 0.03211452439427376, 0.0028282678686082363, -0.006417469587177038, -0.005563360173255205, -0.008742977865040302, -0.02840302884578705, -0.011320835910737514, -0.005062540993094444, -0.023713190108537674, 0.01535844523459673, 0.008098512887954712, 0.013766695745289326, -0.00875850673764944, -0.006219471339136362, 0.0036765539553016424, 0.0040803151205182076, 0.00011744008224923164, 0.0033426748123019934, -0.02057627961039543, -0.01196529995650053, 0.011421776376664639, -0.008315922692418098, 0.015498208813369274, 0.0022070971317589283, 0.004977130331099033, 0.0065766447223722935, 0.0015315739437937737, 0.03153994306921959, 0.03171076253056526, -0.0020052166655659676, 0.02197391353547573, -0.012858233414590359, 0.008587684482336044, -0.016026204451918602, 0.0015063389437273145, -0.0009511676034890115, 0.0361831933259964, 0.009162267670035362, -0.03922693058848381, -0.017874186858534813, -0.014201514422893524, -0.00033946006442420185, 0.012881526723504066, 0.0032669694628566504, -0.00908462144434452, 0.0020459808874875307, -0.0006876553525216877, -0.003940551541745663, 0.0019120409851893783, 0.002816620748490095, -0.02540588192641735, 0.006068061105906963, 0.002758386079221964, -0.013564814813435078, -0.010955898091197014, -0.018883589655160904, 0.026927748695015907, 0.0024613889399915934, 0.012741764076054096, 0.023977188393473625, -0.02180309034883976, 0.00503148278221488, 0.029086317867040634, -0.003991021774709225, 0.022750375792384148, -0.002938913879916072, -0.02189626730978489, 0.029288196936249733, -0.005159599240869284, 0.02820114977657795, -0.0011909006861969829, 0.005462419707328081, -0.009798967279493809, 0.004169608000665903, 0.0004566575225908309, 0.00383767019957304, 0.019271820783615112, 0.009208855219185352, 0.015125506557524204, -0.015692325308918953, 0.004437488038092852, 0.0060020615346729755, -0.01187212485820055, 0.023216255009174347, 0.040127627551555634, -0.004682073835283518, 0.004057020880281925, -0.00526053924113512, -0.0036687892861664295, 0.011817771941423416, -0.004852896090596914, 0.04009656608104706, -0.00385125819593668, 0.021026628091931343, -0.00633205845952034, -0.019349467009305954, -0.0033737332560122013, 0.002940854988992214, -0.0035134966019541025, 0.03025101311504841, 0.02484682761132717, 0.02208261750638485, 0.021942853927612305, -0.02383742481470108, -0.012842703610658646, -0.027983739972114563, -0.003626083955168724, -0.007877220399677753, -0.002038216218352318, -0.014465512707829475, -0.016569728031754494, -0.015304092317819595, -0.0010482255602255464, 0.009930966421961784, -0.003991021774709225, -0.005691476631909609, -0.015886440873146057, 0.004538428504019976, -0.010094023309648037, -0.008424627594649792, -0.02540588192641735, -0.00043748857569880784, -0.018029479309916496, 0.0010899604531005025, -0.022098146378993988, -0.02216026373207569, -0.016926901414990425, -0.00019629964663181454, 0.003111677011474967, -0.0067008789628744125, 0.01155377458781004, -0.002719562966376543, -0.014255867339670658, 0.014201514422893524, -0.03062371537089348, -0.011375187896192074, -0.017408307641744614, -0.0003016074770130217, -0.002525447169318795, 0.025079766288399696, -0.024241186678409576, 0.031011946499347687, 0.009278737008571625, 0.02282802201807499, -0.00403372710570693, -0.028356442227959633, -0.013766695745289326, -0.00839356891810894, 0.01734619215130806, 0.00437925336882472, 0.0007463754154741764, -0.002294449135661125, -0.0012666058028116822, 0.013789989054203033, -0.02031228132545948, 0.0038726110942661762, -0.013906458392739296, -0.01224482711404562, 0.006324294023215771, -0.01734619215130806, -0.019427113234996796, -0.003845434868708253, -0.014022928662598133, 0.012508824467658997, 0.01641443558037281, -0.00027224747464060783, 0.007380284368991852, 0.02273484691977501, -0.0006172883440740407, 0.03469238430261612, 0.04686732962727547, -0.02430330216884613, 0.020374398678541183, -0.01049001980572939, 0.002276978688314557, -0.02756444923579693, -0.031213827431201935, -0.008610978722572327, -0.007337578572332859, -0.02049863338470459, -0.012299180030822754, -0.01583208702504635, 0.008455686271190643, -0.04112149775028229, 0.024070363491773605, 0.013114466331899166, -0.007403578143566847, -0.009434029459953308, 0.021119803190231323, -0.027347039431333542, 6.181376375025138e-05, 0.018619591370224953, -0.016476552933454514, 0.0063631171360611916, 0.0013830753741785884, 0.01799841970205307, 0.022983314469456673, -0.0005687593948096037, -0.03754976764321327, 0.009666969068348408, -0.004429723601788282, 0.007026993203908205, 0.027502331882715225, -0.02737809717655182, -0.0333879254758358, -0.027502331882715225, 0.015513737685978413, -0.025716466829180717, -0.01006296556442976, -0.00047703966265544295, 0.012695175595581532, -0.015280799008905888, -0.009604851715266705, -0.013122230768203735, 0.0062893531285226345, -0.008044159971177578, 0.0020828628912568092, -0.00908462144434452, -0.02837197110056877, 0.03025101311504841, 0.020188046619296074, 0.0094107361510396, 0.026120226830244064, 0.0166939627379179, -0.007112404331564903, 0.01865064911544323, -0.0030320894438773394, 0.03531355410814285, -0.029365845024585724, 0.01650761067867279, 0.012702940963208675, -0.024784710258245468, -0.004654897842556238, -0.000955049938056618, 0.022843552753329277, 0.015319622121751308, -0.0053847734816372395, -0.02605810947716236, -0.03469238430261612, -0.004689838737249374, -0.0003986654046457261, -0.004200666677206755, -0.000686199520714581, 0.0016393082914873958, 0.0091777965426445, -0.02338707633316517, 0.0069338176399469376, 0.007124051451683044, 0.014682922512292862, 0.015785500407218933, 0.00697652343660593, -0.003827964421361685, -5.5323012929875404e-05, 0.003160205902531743, -0.009643674828112125, -3.909614315489307e-05, -0.009107914753258228, -0.014178221113979816, 0.00419678445905447, -0.009395206347107887, 0.0025526233948767185, -0.010272610001266003, -0.002789444522932172, 0.0010957838967442513, -0.003045677440240979, 0.0028437969740480185, 0.015373974107205868, -0.0009666968835517764, 0.0014830450527369976, 0.015366209670901299, 0.035282496362924576, -5.683954441337846e-05, -0.006844524294137955, -0.003631907282397151, -0.014030693098902702, -0.02141485922038555, -0.010334727354347706, -0.0032339699100703, -0.007446283474564552, -0.013789989054203033, 0.002872914308682084, 0.08348534256219864, 0.009100150316953659, 0.0024109187070280313, 0.009232149459421635, 0.0014568393817171454, -0.014317984692752361, -0.006557233165949583, -0.0019227174343541265, 0.015436091460287571, -0.011561539024114609, -0.013036820106208324, -0.006087472662329674, 0.01605726219713688, -0.0009797996608540416, -0.02467600628733635, 0.016942430287599564, 0.020886864513158798, 0.014209279790520668, 0.01511774118989706, 0.006308764684945345, -5.194115146878175e-07, -0.017594659700989723, 0.0059050037525594234, 0.00628547091037035, 0.007881103083491325, 0.008991445414721966, -0.010086258873343468, 0.005524536594748497, 0.015560325235128403, 0.03605895861983299, -0.010606489144265652, -0.01613490842282772, -0.014558687806129456, -0.011150013655424118, 0.007562753278762102, 0.004596663173288107, -0.010187199339270592, 0.015094447880983353, -0.006522292271256447, 0.02066945470869541, -0.006258294451981783, 0.016119379550218582, 0.02281249314546585, 0.023356018587946892, -0.00526830367743969, -0.0007133756880648434, 0.010831663385033607, 0.001957658212631941, 0.004247254692018032, 0.0003098573943134397, -0.0077180457301437855, -0.02271931804716587, 0.01939605548977852, 0.015754440799355507, 0.00951167568564415, -0.014853743836283684, 0.010396844707429409, -0.010086258873343468, -0.00014825597463641316, -0.001884864759631455, -0.019085468724370003, 0.015614678151905537, -0.0012714586919173598, -0.016305729746818542, -0.0012112827971577644, -0.012004123069345951, -0.017781011760234833, -0.006025355774909258, 0.002628328511491418, -0.010389079339802265, -0.02484682761132717, 0.002504094270989299, 0.013254229910671711, -0.02700539492070675, -0.003488261718302965, 0.007632634602487087, 0.0108083700761199, 0.01958240568637848, 0.018805943429470062, 0.015327386558055878, -0.014201514422893524, 0.0016305730678141117, -0.011452834121882915, -0.02456730045378208, 0.0060797082260251045, -0.012772821821272373, 0.008944857865571976, -0.015055624768137932, 0.018246889114379883, -0.013533756136894226, -0.021834149956703186, -0.010917074978351593, 0.00021971487149130553, 0.020840276032686234, 0.016165968030691147, -9.21443643164821e-05, -0.006949346978217363, -0.010699665173888206, 0.018231360241770744, -0.0021275095641613007, -0.0004653927171602845, 0.012407884001731873, 0.0018596297595649958, 0.0008196541457436979, -0.017004547640681267, -0.002556505613029003, 0.026089169085025787, 0.010249316692352295, -0.002954442985355854, 0.004169608000665903, -0.0070464047603309155, 0.0056953588500618935, -0.007131815887987614, 0.008082984015345573, -0.038170937448740005, -0.01076178252696991, 0.011406246572732925, 0.007485106587409973, -0.0125709418207407, -0.001649014069698751, -0.0026186227332800627, 0.006056413985788822, -0.03636954352259636, -0.002801091643050313, 0.011949771083891392, 0.014519864693284035, -0.010754017159342766, -0.004041492007672787, -0.0251418836414814, -0.015700088813900948, 0.0010734605602920055, 0.03332580626010895, 0.014791627414524555, 0.011235424317419529, 0.028232207521796227, -0.00035620256676338613, 0.009760144166648388, 0.0008215953130275011, 0.020452044904232025, -0.01751701347529888, 0.013456109911203384, 0.011810007505118847, 0.020467573776841164, 0.010288139805197716, 0.00038920226506888866, 0.006790171843022108, -0.005019835662096739, -0.025250587612390518, -0.0036590835079550743, -0.00489560142159462, 0.019551347941160202, -0.036773305386304855, -0.009775673970580101, -0.0034513797145336866, -0.0005876857321709394, 0.0047053680755198, -0.014341278001666069, 0.037891410291194916, -0.007058051880449057, 0.008657566271722317, 0.010241551324725151, -0.014131633564829826, -0.009705792181193829, 0.007069699000567198, 0.0011540186824277043, -0.003536790609359741, 0.015141035430133343, 0.015676794573664665, 0.024986591190099716, -0.0054585374891757965, -0.0015936910640448332, 0.007947102189064026, -0.004623839166015387, -0.02487788535654545, -0.002750621410086751, -0.0025739760603755713, 0.002506035380065441, -0.006040885113179684, -0.020762629806995392, 0.03456814959645271, -0.016818195581436157, -0.004185137338936329, 0.0048101902939379215, 0.0159640870988369, 0.007388048805296421, -0.030018072575330734, -0.005190657451748848, -0.007337578572332859, 0.004418076481670141, -0.01911652833223343, -0.0012112827971577644, 0.00473254406824708, -0.0034513797145336866, -0.007593811489641666, -0.00875850673764944, -0.01395304687321186, 0.00753945903852582, 0.0025662113912403584, 0.0030980887822806835, -0.015474914573132992, 0.014224808663129807, -0.006421351805329323, 0.017237486317753792, 0.00950391124933958, -0.012780587188899517, -0.003362086368724704, -0.004200666677206755, -0.015979615971446037, -0.02568540722131729, -0.014100574888288975, -0.03963068872690201, -0.021647797897458076, 0.000902153376955539, 0.006068061105906963, -0.009162267670035362, -0.015016801655292511, 0.02419459819793701, 0.024893416091799736, 0.0005935091758146882, 0.017579130828380585, 0.02113533206284046, 0.00561382994055748, 0.0077918097376823425, -0.03727024048566818, -0.0014354865998029709, 0.01573891192674637, 0.0016752197407186031, 0.025918347761034966, 0.023713190108537674, -0.00023014859471004456, 0.03239405155181885, 0.010257081128656864, -0.01191871240735054, 0.015552560798823833, 0.0006997875752858818, 0.032704636454582214, 0.007244403008371592, 0.00025210794410668314, 0.007415225263684988, -0.019271820783615112, -0.015195388346910477, 0.01112672034651041, -0.014962448738515377, -0.003952198661863804, -0.0030825594440102577, -0.0197532270103693, 0.0032883223611861467, 0.007989807985723019, -0.004794661421328783, -2.7616011720965616e-05, 0.0017014252953231335, -0.00945732370018959, -0.016212554648518562, 0.021476976573467255, 0.028899965807795525, 0.01007073000073433, 0.00243421271443367, 0.0054080672562122345, 0.00811404176056385, -0.02689669094979763, -0.0014878979418426752, 0.01298246718943119, -0.005066423211246729, -0.02051416225731373, -0.007640399504452944, 0.025530114769935608, -0.023154137656092644, -0.006735819857567549, 0.012159416452050209, 0.010653077624738216, -0.003845434868708253, -0.016538670286536217, 0.017734423279762268, 0.023076491430401802, -0.013704578392207623, -0.0011151954531669617, -0.0002741886128205806, -0.010769546963274479, -0.0040298448875546455, -0.000751228304579854, -0.0025118589401245117, 0.005967121105641127, 0.009216619655489922, -0.042332783341407776, -0.006223354022949934, -0.0223466157913208, 0.005454655271023512, 0.029521137475967407, -0.01154601015150547, -0.00020552014757413417, 0.014721745625138283, -0.01396081130951643, 0.00251574139110744, -0.007943220436573029, -0.0043909004889428616, -0.008238276466727257, -0.014682922512292862, -0.008463450707495213, 0.01706666499376297, 0.0007701545837335289, -0.009216619655489922, 0.00014607216871809214, -0.0042394897900521755, -0.011709067039191723, 0.022750375792384148, 0.021942853927612305, 0.016818195581436157, 0.011095661669969559, -0.010816134512424469, -0.008921563625335693, -0.006588291376829147, -0.001991628436371684, -0.004864542745053768, 0.009597087278962135, -0.008129571564495564, 0.0002683651400730014, -0.011243189685046673, 0.016445493325591087, -0.016352318227291107, -0.012780587188899517, 0.007632634602487087, 0.015296327881515026, 0.01007073000073433, 0.004002668429166079, 0.0031893232371658087, 0.008455686271190643, -0.010055200196802616, -0.004134667571634054, 0.005839004646986723, -0.03590366616845131, 0.013036820106208324, -0.010544372722506523, -0.00844015646725893, -0.0024866238236427307, -0.010629783384501934, 0.018045008182525635, -0.018666179850697517, -0.008269335143268108, -0.010862722061574459, 0.009496146813035011, -0.011856595054268837, 0.004534545820206404, -0.011196601204574108, -0.004111373331397772, -0.006949346978217363, -0.00867309607565403, 0.00109481334220618, -0.011033544316887856, 0.017501484602689743, 0.02894655428826809, 0.008051925338804722, -0.006580526940524578, -0.002857385203242302, 0.015746677294373512, -0.011646950617432594, -0.002496329601854086, 0.03004913218319416, 0.00798204354941845, -0.02049863338470459, -0.0034649677108973265, -0.012462236918509007, 0.012765057384967804, -0.01289705652743578, -0.022486379370093346, 0.0063631171360611916, -0.007275461684912443, -0.013479404151439667, 0.004484076052904129, -0.04637039080262184, 0.011421776376664639, -0.011747890152037144, -0.015459385700523853, -0.012105063535273075, -0.01052107848227024, -0.011654715053737164, 0.006805701181292534, -0.0009603881044313312, -0.003177676349878311, -0.016088319942355156, -0.013052348978817463, 0.021476976573467255, 0.009612616151571274, 0.003406733041629195, -0.005322656128555536, -0.006863935850560665, 0.008541096933186054, 0.03329474851489067, 0.04009656608104706, 0.000608067843131721, -0.006308764684945345, -0.005439125932753086, -0.005377008579671383, -0.006347587797790766, 0.011740125715732574, 0.004472428932785988, 0.01986193284392357, -0.024598360061645508, 0.015537031926214695, -0.004445252940058708, 0.0013597814831882715, -0.0010608431184664369, 0.0024458596017211676, 0.022890139371156693, 0.026492929086089134, 0.02577858418226242, -0.022004971280694008, 0.015055624768137932, 0.005784652195870876, 0.008222746662795544, 0.002620563842356205, 0.01938052475452423, 0.006308764684945345, -0.025530114769935608, 0.015715617686510086, 0.022036030888557434, 0.02150803431868553, 0.016352318227291107, 0.00871191918849945, 0.0024283891543745995, -0.01790524460375309, -0.003435850376263261, 0.00014073398779146373, 0.027440214529633522, 0.008222746662795544, 0.021461447700858116, 0.003298028139397502, 0.024629417806863785, 0.0017004547407850623, -0.0026186227332800627, -0.012951408512890339, 0.003998786211013794, 0.0020285104401409626, -0.01661631651222706, 0.02393059991300106, -0.007698634173721075, -0.007950984872877598, 0.019442642107605934, -0.011848830617964268, 0.0037677884101867676, 0.023992717266082764, -0.024318832904100418, -0.001583014614880085, -7.394600106636062e-05, 0.0019091293215751648, 0.020296752452850342, -0.005974885541945696, 9.760387183632702e-05, 0.025669878348708153, -0.019271820783615112, -0.007116286549717188, -0.013494933024048805, 0.02338707633316517, 0.004383135586977005, 0.010187199339270592, -0.0030379127711057663, 0.005361479707062244, 0.004258901346474886, -0.011452834121882915, 0.022098146378993988, -0.03907163441181183, -0.00908462144434452, -0.007116286549717188, -0.010342491790652275, -0.0027292687445878983, 0.002923384541645646, -0.005850651301443577, 0.0028554440941661596, 0.0031310885678976774, -0.012648588046431541, 0.0004299665743019432, -0.016554199159145355, 0.016212554648518562, -0.0069842878729105, -0.003290263470262289, 0.007912161760032177, 0.02170991525053978, -0.007648163940757513, 0.006689231842756271, 0.0013326052576303482, -0.006401940248906612, -0.019271820783615112, 0.012928115203976631, 0.002995207440108061, -0.010233786888420582, 0.019240761175751686, -0.012865997850894928, 0.01641443558037281, 0.0197532270103693, -0.0020945100113749504, 0.02264167182147503, -0.0034727323800325394, 0.028356442227959633, -0.005870062857866287, -0.0070968749932944775, 0.02096451073884964, -0.0040298448875546455, -0.007061934098601341, 0.024738121777772903, 0.0024536242708563805, 0.0030320894438773394, -0.007760751061141491, 0.012206004001200199, 0.00044719435391016304, 0.010994721204042435, 0.0105754304677248, 0.006335941143333912, 0.007100757211446762, 0.004627721384167671, 0.03360533341765404, -0.00503148278221488, 0.014077280648052692, -0.01967558078467846, -0.015568090602755547, 0.007613223046064377, -0.015505973249673843, 0.02893102541565895, 0.009915436618030071, 0.014349042437970638, 0.006250530015677214, 0.01330858189612627, -0.005446890369057655, -0.022564025595784187, -0.005602183286100626, 0.0007536547491326928, -0.010862722061574459, 0.008533332496881485, 0.018759354948997498, 0.01807606779038906, -0.006370882038027048, -0.01362693216651678, -0.018479827791452408, 0.010000848211348057, 0.004926660098135471, -0.007776280399411917, 0.007760751061141491, -0.00039648159872740507, 0.016010673716664314, 0.007112404331564903, 0.008370274677872658, 0.0033698510378599167, 0.015785500407218933, -0.0038823168724775314, -0.0010142552200704813, 0.011406246572732925, 0.007527812384068966, -0.010350256226956844, 0.00876627117395401, 0.00438701780512929, -0.010412373580038548, -0.009977553971111774, -0.009255442768335342, 0.005516772158443928, 0.030266541987657547, 0.017392778769135475, 0.018573002889752388, -0.007205579895526171, 0.00251574139110744, 0.03341898322105408, -0.0057691228576004505, 0.01196529995650053, -0.002507976721972227, -0.002245920244604349, 0.0029777369927614927, -0.0012190474662929773, -0.017858657985925674, 0.005629359278827906, 0.02809244394302368, -0.006638761609792709, 0.009472852572798729, 0.016942430287599564, -0.007415225263684988, -0.0053575970232486725, -0.03369851037859917, 0.017641248181462288, -0.016274672001600266, -0.0017188957426697016, -0.013968575745821, 0.008952622301876545, 0.00700369942933321, -0.012997996993362904, 0.00044598113163374364, -0.008176159113645554, -0.009100150316953659, 0.0024070364888757467, -0.002546799834817648, 0.01583208702504635, 0.008781800977885723, -0.005578889045864344, 0.019908521324396133, -0.02902420051395893, 0.02476918138563633, -0.013362934812903404, -0.006444646045565605, -0.004278312902897596, 0.0044763111509382725, 0.005012070760130882, 0.00013187744480092078, 0.008137336000800133, -0.023511311039328575, -0.020188046619296074, -0.0023060962557792664, 0.00770251639187336, 0.01396081130951643, -0.004612192511558533, -0.010676370933651924, 0.004817955195903778, 0.00017409764404874295, -0.015731148421764374, 0.008036395534873009, 0.011204366572201252, 0.012578706257045269, -0.005311009474098682, 0.02236214466392994, -0.018604062497615814, 0.00946508813649416, -0.004798543639481068, -0.007729692850261927, -0.01396081130951643, 0.016833726316690445, -0.0125709418207407, -0.011957535520195961, 0.010559901595115662, 0.009752379730343819, 0.01911652833223343, -0.007632634602487087, 0.008409097790718079, -0.010754017159342766, 0.006751348730176687, 0.0312604159116745, -0.00807521864771843, -0.0028205031994730234, 0.0056681823916733265, -0.02475365251302719, -0.0174238383769989, 0.004984894767403603, 0.002042098669335246, -0.031959231942892075, -0.002073157113045454, 0.002680739853531122, -0.028061386197805405, 0.007566635496914387, -0.013339640572667122, 0.011258718557655811, -0.003226205240935087, 0.006972640752792358, -0.0017014252953231335, 0.006879465188831091, -0.008471215143799782, -0.005000424105674028, 0.004511252045631409, -0.0017839245265349746, 0.009263208135962486, -0.0021275095641613007, 0.016631845384836197, -0.006044767331331968, 0.0012345766881480813, -0.007287108805030584, -0.041587378829717636, 0.029070788994431496, -0.01187988929450512, -0.017035605385899544, -0.02803032658994198, -0.010559901595115662, 0.018805943429470062, 0.008634272962808609, -0.016585256904363632, -0.0017402485245838761, 0.006561115384101868, -0.013751165941357613, -0.006017590872943401, 0.005179010797291994, 0.007209462113678455, -0.0051712458953261375, 0.018060537055134773, -0.006250530015677214, 0.02997148595750332, 0.0034824381582438946, -0.011639186181128025, -0.012151651084423065, -0.023697661235928535, -0.001754807191900909, 0.006200059782713652, 0.016383375972509384, -0.009395206347107887, -1.560509372211527e-05, 0.02348025143146515, -0.0017984831938520074, 0.007190050557255745, 0.0003950257378164679, -0.004181255120784044, -0.014892566949129105, -0.006945464760065079, -0.026943279430270195, -0.030825594440102577, 0.004111373331397772, 0.0005289656692184508, -0.000812860089354217, 0.007764633744955063, -0.008618743158876896, -0.011390717700123787, -0.018355593085289, 0.001012314110994339, 0.006735819857567549, 0.0024206244852393866, 0.01043566782027483, -0.011483892798423767, 0.009814497083425522, 0.01076178252696991, 0.00403372710570693, 0.013875400647521019, 0.020995568484067917, -0.0003707612631842494, 0.00473254406824708, -0.00697652343660593, -0.00875850673764944, -0.035934723913669586, -0.0006667879060842097, -0.0037444946356117725, -0.021632269024848938, 0.0019731875509023666, 0.013425051234662533, 7.212616765173152e-05, 0.015933027490973473, -0.005489596165716648, -0.01006296556442976, -0.010187199339270592, 0.013207641430199146, 0.015412797220051289, -0.012019652873277664, 0.004581133835017681, 0.01047449093312025, 0.0014548982726410031, -0.016631845384836197, 0.018293477594852448, 0.013207641430199146, 0.006231118459254503, 0.012741764076054096, -0.009550499729812145, 0.004324900917708874, 0.03199028968811035, -0.02549905702471733, -0.0027467391919344664, -0.007461812812834978, -0.0020032755564898252, -0.014597510918974876, -0.018883589655160904, -0.01122765988111496, -0.0013277523685246706, -0.006405822467058897, 0.0009210796561092138, 0.008867211639881134, 0.0008880799869075418, 0.010039671324193478, -0.013665755279362202, 0.01531185768544674, 0.0024594475980848074, 0.028682556003332138, -0.007912161760032177, 0.008385804481804371, 0.006192295346409082, 0.016181496903300285, 0.01771889440715313, -0.003402850590646267, 0.007290991023182869, -0.0015684559475630522, 0.02329390123486519, -0.002742856740951538, -0.01428692601621151, -0.009519441053271294, 0.018060537055134773, 0.005877827759832144, -0.00978343840688467, -0.0035154379438608885, -0.023138608783483505, 0.003998786211013794, -0.03571731597185135, -0.004084197338670492, 0.0007167727453634143, 0.00872744806110859, 0.015498208813369274, -0.009760144166648388, -0.0016179555095732212, -0.021958384662866592, -0.0010152258910238743, -0.028232207521796227, 0.027409156784415245, 0.025716466829180717, 0.02588728815317154, 0.009946495294570923, 0.008890505880117416, 0.014558687806129456, 0.004437488038092852, -0.005128540564328432, 0.011817771941423416, 0.022501908242702484, 0.009185561910271645, -0.004041492007672787, -0.024784710258245468, -0.007710281293839216, -0.00591276865452528, 0.017377249896526337, -0.0004544737166725099, -0.018122654408216476, -0.00802863109856844, -0.008820624090731144, 0.014240337535738945, -0.020079342648386955, 0.008106277324259281, 0.0068872300907969475, -0.01146059948951006, 0.0014558688271790743, 0.011934242211282253, -0.01792077347636223, -0.0003707612631842494, 0.006149590015411377, -0.008510038256645203, 0.011810007505118847, -0.012361296452581882, -0.009666969068348408, 0.025856230407953262, -0.011701302602887154, 0.007554988376796246, 0.001412192708812654, 0.007310402579605579, -0.030297599732875824, 0.007834515534341335, 0.004720897413790226, -0.000481892580864951, -0.0044763111509382725, -0.011188836768269539, 0.0037852588575333357, -0.014294690452516079, -0.007026993203908205, -0.003160205902531743, 0.006572762504220009, -0.01015614066272974, 0.003616378176957369, 0.0063165295869112015, 0.02135274186730385, 0.002042098669335246, -0.0018052773084491491, -0.013153289444744587, -0.014915861189365387, -0.004507369827479124, -0.0048606605269014835, 0.012431178241968155, -0.0014296631561592221, -0.010653077624738216, -0.01330858189612627, -0.036711186170578, 0.010295904241502285, 0.023154137656092644, -0.01160036213696003, -0.001968334661796689, -0.008642037399113178, 0.0005153775564394891, 0.005109129007905722, -0.020902393385767937, 0.013921988196671009, -0.012105063535273075, -0.007857808843255043, 0.024241186678409576, -0.010886016301810741, -0.0077918097376823425, 0.007562753278762102, -0.010140611790120602, -0.02976960502564907, 0.008230512030422688, -0.012485531158745289, -0.0008351834258064628, -0.011763419955968857, 0.004456899594515562, -0.00695711188018322, 0.018774883821606636, -0.005901121534407139, 0.023309430107474327, -0.0055944183841347694, 0.007838397286832333, -0.013743401505053043, -0.0062155891209840775, -0.014915861189365387, 0.009076857008039951, 0.003332969034090638, 0.015863146632909775, -0.041991136968135834, -0.014504335820674896, 0.02448965422809124, -0.0009647557162679732, 0.00017579615814611316, 0.023884013295173645, 0.009767908602952957, -0.005411949474364519, 0.021476976573467255, -0.0038066115230321884, -0.004627721384167671, -0.01056766603142023, 0.01364246103912592, 0.0180915966629982, -0.0075316946022212505, 0.012384590692818165, -0.00044937815982848406, -0.0068872300907969475, -0.010148376226425171, -0.007287108805030584, -0.007787927519530058, 0.0013753107050433755, -0.030841125175356865, 0.005815710406750441, -0.0036843186244368553, 0.004433605819940567, -0.010280374437570572, 0.009107914753258228, 0.000265453418251127, -0.0014830450527369976, -0.0023507429286837578, 0.015172094106674194, 0.012384590692818165, -0.015700088813900948, -0.004616074729710817, -0.01577773503959179, -0.019551347941160202, 0.007877220399677753, 0.004418076481670141, 0.011437305249273777, 0.006716407835483551, -0.007554988376796246, -0.010513314045965672, -0.02413248084485531, -0.014170456677675247, -0.015141035430133343, 0.011367423459887505, 0.007780162617564201, 0.007426871918141842, 0.01363469660282135, -0.010948133654892445, -0.024163540452718735, 0.007298755459487438, -0.010816134512424469, 0.004926660098135471, 0.022750375792384148, 0.02068498358130455, 0.007395813707262278, -0.006297118030488491, -0.005877827759832144, -0.007690869737416506, 0.0009370942134410143, -0.009162267670035362, -0.013106701895594597, 0.00042535632383078337, 0.002302213804796338, -0.006681467406451702, 0.0053343032486736774, 0.014201514422893524, 0.011041308753192425, 0.01354928594082594, 0.003004913218319416, -0.014869273640215397, -0.004371488932520151, -0.03407121077179909, 0.01010178867727518, -0.005551713053137064, -0.018945705145597458, 0.010365786030888557, -0.01855747401714325, 0.014535394497215748, -0.007865574210882187, 0.004728661850094795, 0.0003993933496531099, -0.007061934098601341, -0.006366999354213476, 0.0035562021657824516, -0.009573793038725853, -0.0058545335195958614, 0.009379677474498749, 0.009286501444876194, 0.04112149775028229, -0.022377673536539078, -0.013735637068748474, -0.003940551541745663, 0.031244885176420212, -0.017781011760234833, 0.0046510156244039536, 0.007411342579871416, -0.017687834799289703, 0.022843552753329277, -0.002162450458854437, -0.01020272821187973, 0.003938610199838877, 0.018526416271924973, -0.02178756147623062, -0.010862722061574459, -0.03568625450134277, 0.007535576820373535, -0.00398713955655694, -0.005606065504252911, -0.024427536875009537, 0.007733575068414211, -0.0011239306768402457, -0.0003974521823693067, 0.009597087278962135, 0.005602183286100626, 0.0035794961731880903, -0.013285287655889988, 0.0019091293215751648, -1.9980282104370417e-06, -0.004355959594249725, 0.01428692601621151, -0.001419957377947867, -0.011243189685046673, 0.020079342648386955, 0.012532118707895279, -0.004748073406517506, -0.0194892305880785, -0.006366999354213476, -0.007617105729877949, 0.021740974858403206, 0.013471639715135098, 0.02967642992734909, 0.010264845564961433, -0.010358021594583988, 0.01260976493358612, 0.03609001636505127, 0.022501908242702484, -0.014954684302210808, 0.006747466512024403, 0.0068600536324083805, -0.019520288333296776, -0.0011841065715998411, 0.0013568697031587362, -0.009721321053802967, 0.008510038256645203, 0.007322049234062433, 0.0075045181438326836, -0.007690869737416506, -0.005182893015444279, -9.4449489552062e-05, -0.028076915070414543, 0.01427916157990694, 0.008331451565027237, 0.005101364105939865, -0.0006400969577953219, 0.0050237178802490234, 0.006693114060908556, 0.0013161053648218513, -0.002440036041662097, -0.012143886648118496, 0.0011656655697152019, -0.014201514422893524, 0.020902393385767937, -0.015148799866437912, -0.020188046619296074, -0.0202191062271595, 0.001747042522765696, 0.009713556617498398, 0.00032829842530190945, 0.004674309398978949, -0.004119138233363628, 0.010404609143733978, 0.0001656050735618919, 0.016926901414990425, 0.016926901414990425, 0.01052107848227024, -0.00422396045178175, -0.026415282860398293, -0.006518410053104162, -0.007224991451948881, -0.024551771581172943, -0.005745828617364168, -0.001729572075419128, 0.006980405654758215, -0.008370274677872658, 0.024784710258245468, -0.003298028139397502, 0.005804063752293587, -0.004441370256245136, -0.0027622682973742485, 0.00950391124933958, 0.02846514619886875, 0.015513737685978413, 0.004771367181092501, 0.012275885790586472, -0.0028360323049128056, -0.011802243068814278, -0.015288563445210457, -0.01642996445298195, -0.010660842061042786, 0.006642643827944994, 0.0003765847359318286, -0.0035232023801654577, -0.010311433114111423, 0.012306944467127323, 0.0002598725841380656, -0.0008516832604072988, 0.017206428572535515, 0.00030451922793872654, -0.002954442985355854, 0.008556625805795193, -0.006235000677406788, -0.012019652873277664, -0.008082984015345573, -0.019240761175751686, 0.007826751098036766, 0.009201090782880783, 0.019908521324396133, 0.011305306106805801, 0.011670243926346302, -0.0023507429286837578, 0.011087896302342415, 0.00315244123339653, -0.024986591190099716, -0.005547830834984779, -0.0010841370094567537, -0.023961659520864487, -0.001730542746372521, 0.008199453353881836, 0.00036275398451834917, -0.0018411887576803565, -0.010194963775575161, 0.019520288333296776, 0.0018683649832382798, -0.00022602363605983555, 0.008991445414721966, -0.00017761599156074226, -0.01788971573114395, -0.00946508813649416, -0.0028709731996059418, -0.0022400966845452785, -0.004406429361552, -0.012586470693349838, 0.004693720955401659, 0.004041492007672787, -0.003618319286033511, 0.01816924288868904, 0.004146314226090908, 0.021942853927612305, 0.012640823610126972, 0.003103912342339754, -0.008036395534873009, 0.012345767579972744, -0.02997148595750332, 0.023821895942091942, 0.005443008150905371, 0.003692083293572068, 0.004612192511558533, 0.0004903851659037173, -0.011740125715732574, -0.004321018699556589, 0.011810007505118847, 0.009573793038725853, -0.012633059173822403, -0.013075643219053745, -0.01252435427159071, 0.009798967279493809, -0.009185561910271645, 0.018759354948997498, 0.002358507364988327, -0.0038570817559957504, 0.01084719318896532, -0.026663752272725105, 0.008548861369490623, 0.002210979349911213, 0.0037406121846288443, -0.000603700231295079, -0.0045267813839018345, -0.00014849861327093095, 0.028418559581041336, -0.018340064212679863, -0.004647133406251669, 0.006902759429067373, -0.007065816782414913, -0.024800239130854607, -0.0036532601807266474, -0.004817955195903778, -0.007364755030721426, -0.0043909004889428616, 0.019924050197005272, 0.002570093609392643, -0.0023216253612190485, -0.012446708045899868, 0.00765592884272337, -0.011375187896192074, -0.028356442227959633, -0.01113448478281498, -0.038543641567230225, 0.020545220002532005, -0.0011947830207645893, -0.011243189685046673, -0.016492081806063652, 0.0042899600230157375, 0.0024633300490677357, 0.015482679009437561, -0.015995144844055176, -0.023620015010237694, 0.00263026962056756, 0.0005066423327662051, 0.005182893015444279, -0.018231360241770744, -0.015552560798823833, -0.004274430684745312, 0.008486744947731495, 0.006273823790252209, 0.0019120409851893783, -0.004375371150672436, 0.00593994464725256, -0.017656777054071426, -0.011018015444278717, 0.0038823168724775314, -0.01930287852883339, -0.00612241355702281, 0.0014917802764102817, 0.004235607571899891, 0.0005469213938340545, -0.030747948214411736, -0.006235000677406788, 0.003921139985322952, 0.02226896956562996, -0.0009036092087626457, 0.007275461684912443, 0.0307945366948843, -0.0016480435151606798, 0.0063126469030976295, 0.028542792424559593, -0.0004932968877255917, -0.013665755279362202, 0.00403372710570693, -0.012143886648118496, 0.01900782249867916, -0.011165543459355831, -0.003340733703225851, 0.007256050128489733, -0.015319622121751308, 0.004631604067981243, -0.004949953872710466, -0.009954260662198067, -0.012446708045899868, 0.013821047730743885, -0.022300027310848236, 0.03792247176170349, -0.0008070365875028074, -0.011150013655424118, -0.01854194514453411, -0.006638761609792709, 0.0019867755472660065, -0.008890505880117416, -0.018309006467461586, 0.007345343474298716, 0.0011472245678305626, -0.0019285408779978752, -0.016026204451918602, -0.018417710438370705, 0.016756080090999603, 0.0011909006861969829, 0.0026885042898356915, 0.009729085490107536, 0.0251418836414814, -0.003435850376263261, -0.014263631775975227, 0.0013005761429667473, 0.004953836090862751, 0.007368637248873711, -0.007958749309182167, -0.030763478949666023, 0.017284074798226357, 0.023884013295173645, 0.0071201687678694725, -0.0008905064314603806, 0.001470427494496107, -0.013153289444744587, 0.003829905530437827, 0.0014976037200540304, -0.016849255189299583, 0.014317984692752361, 0.011623656377196312, -0.03116723895072937, 0.006161236669868231, -0.027409156784415245, -0.013704578392207623, 0.005811828188598156, -0.0038842579815536737, 0.0015936910640448332, 0.011483892798423767, 0.0038881401997059584, 0.0025603878311812878, -0.021011099219322205, -0.012345767579972744, -0.0003938125155400485, 0.057271938771009445, 0.02346472255885601, 0.016911372542381287, -0.002653563627973199, 0.01605726219713688, -0.025095295161008835, 0.011406246572732925, 0.002758386079221964, -0.03562413901090622, -0.0018761295359581709, 0.019628994166851044, -0.03549990430474281, 0.031307004392147064, 0.013176582753658295, -0.017206428572535515, 0.0008706095395609736, 0.0038706697523593903, -0.01570785418152809, -0.02346472255885601, -0.0032999692484736443, 0.005850651301443577, 0.0043909004889428616, -0.0054080672562122345, -0.022657200694084167, 0.022470848634839058, -0.0055323014967143536, 0.004220078233629465, -0.004977130331099033, 0.016569728031754494, 0.00140345748513937, 0.03590366616845131, 0.0019168938742950559, -0.019706640392541885, 0.011336364783346653, -0.001975128659978509, 0.027781859040260315, -0.0026962689589709044, 0.017656777054071426, -0.0012044887989759445, -0.0017654835246503353, -0.02494000270962715, -0.007892750203609467, 0.0005847739521414042, -0.01112672034651041, -0.009798967279493809, -0.01697348989546299, 0.008564391173422337, 0.000595935620367527, -0.008378040045499802, 0.0032786165829747915, 0.0010666665621101856, 0.00020539882825687528, -0.018805943429470062, 0.006805701181292534, -0.005722534842789173, 0.012174945324659348, 0.009760144166648388, -0.009146738797426224, -0.004064785782247782, 0.004907248541712761, 0.002707915846258402, -0.011056838557124138, 0.008556625805795193, 0.007846162654459476, -0.005520654376596212, 0.0174238383769989, -0.006235000677406788, 0.007450165692716837, 0.0024769180454313755, 0.013067877851426601, 0.020762629806995392, -0.022129205986857414, 0.001158871571533382, -0.01126648299396038, -0.02633763663470745, -0.020747100934386253, -0.03683542087674141, -0.019784286618232727, -0.004682073835283518, 0.0009225355461239815, -0.005998179316520691, -0.014387865550816059, 0.0006828024634160101, -0.0021993324626237154, -0.016026204451918602, -0.01335516944527626, -0.008416863158345222, 0.013968575745821, 0.02691221982240677, -0.001208371133543551, -0.024707064032554626, 0.007162874564528465, 0.01048225536942482, 0.013758930377662182, 0.0031330296769738197, 0.005563360173255205, -0.012477765791118145, 4.176523725618608e-05, -0.0013733695959672332, 0.006401940248906612, 0.0027875034138560295, 0.01790524460375309, 0.015917498618364334, 0.012345767579972744, -0.021834149956703186, -0.016569728031754494, -0.004383135586977005, -0.003942492883652449, -0.004352076910436153, 0.020467573776841164, 0.0010220198892056942, 0.006828995421528816, 0.007663693279027939, 0.007469577714800835, 0.01798289082944393, 0.012066240422427654, 0.0031815585680305958, 0.0066504087299108505, 0.0004163784615229815, 0.00806745421141386, -0.015731148421764374, 0.014892566949129105, 0.015886440873146057, 0.014675157144665718, -0.003738671075552702, 0.013696813955903053, 0.007477342151105404, 0.018231360241770744, -0.010303668677806854, 0.0023119195830076933, 0.008704153820872307, -0.00437925336882472, -0.0009293296025134623, 0.0031951467972248793, 0.0050974818877875805, 0.0009996965527534485, 0.0020712160039693117, 0.014877038076519966, 0.02023463509976864, 0.017315132543444633, -0.02523505873978138, 0.01837112382054329, -0.001249135471880436, -0.008836152963340282, -0.0190233513712883, -0.006665938068181276, -0.023154137656092644, 0.014108339324593544, 0.019364995881915092, 0.01474503893405199, -0.008013102225959301, -0.008378040045499802, 0.005233363248407841, 0.009286501444876194, -0.0006925082416273654, 0.02004828304052353, -0.0018673944287002087, 0.026570575311779976, -0.003534849500283599, 0.014574217610061169, -0.0009370942134410143, 0.012516588903963566, 0.0034688501618802547, 0.012182709760963917, 0.013378463685512543, -0.0003802244027610868, 0.0037503179628401995, 0.01827794685959816, -0.010909310542047024, 0.0021527446806430817, -0.009022504091262817, 0.016367847099900246, -0.00452289916574955, 0.014574217610061169, -0.005637124180793762, -0.001452957047149539, -0.005225598346441984, -0.010039671324193478, -0.015141035430133343, -0.017563601955771446, 0.014434454031288624, 0.0237442497164011, 0.02206708863377571, -0.016864784061908722, -0.00765592884272337, 0.0005930238985456526, -0.015412797220051289, 0.0025351529475301504, -0.0024594475980848074, 0.01846429891884327, 0.015746677294373512, 0.017020076513290405, -0.018852530047297478, -0.014504335820674896, 0.004010433331131935, -0.0017004547407850623, -0.004682073835283518, -0.012004123069345951, -0.03894740343093872, 0.0011452834587544203, -0.001142371678724885, 0.01229141466319561, -0.010629783384501934, 0.01047449093312025], "23df7c2f-a610-4aa5-9772-c60b136c4718": [-0.0008437056094408035, -0.0181396696716547, -0.0034934685099869967, 0.02792138233780861, 0.004057037644088268, -0.008430464193224907, 0.03121710754930973, 0.015265798196196556, -0.011442757211625576, 0.03741307184100151, 0.0169268436729908, 0.0015506385825574398, 0.007316509261727333, 0.0037373520899564028, 0.007342875469475985, 0.06095772981643677, 0.0013314728857949376, 0.01828468218445778, -0.025535278022289276, -0.040286943316459656, 0.0401814803481102, -0.022951429709792137, -0.06412162631750107, 0.008878682740032673, 0.032192640006542206, 0.013341094367206097, -0.004940291866660118, 0.016491807997226715, -0.009933315217494965, -0.012906058691442013, 0.031744424253702164, -0.0075538018718361855, 0.020868530496954918, 0.01620178483426571, 0.010513362474739552, -0.03121710754930973, -0.004284442402422428, -0.015450358390808105, -0.04542827233672142, -0.002012040000408888, -0.007276960648596287, 0.012207365594804287, 0.02873872220516205, -0.037492167204618454, -0.02321508713066578, 0.005991627927869558, 0.004047150257974863, -0.003915321081876755, 0.018706535920500755, -0.0496731661260128, 0.01592494361102581, 0.007098991423845291, 0.04806485399603844, 0.017085038125514984, 0.041157014667987823, -0.025772569701075554, -0.011910750530660152, -0.005365440156310797, -0.008173397742211819, -0.057846564799547195, -0.002788183279335499, -0.0016396231949329376, 0.01262262649834156, -0.0021010246127843857, 0.020420312881469727, 0.04840761050581932, 0.012971973977982998, 0.006802376359701157, -0.028712356463074684, 0.01958978921175003, 0.042738962918519974, 0.008621616289019585, -0.03290451690554619, 0.03638480231165886, 0.008377732709050179, 0.017994659021496773, 0.003654958913102746, 0.035356536507606506, 0.026537178084254265, -0.01452755555510521, -0.01214804220944643, -0.038204044103622437, 0.06427981704473495, -0.002672832924872637, 0.060114022344350815, 0.044584568589925766, -0.015015322715044022, -0.030874351039528847, 0.007125357631593943, -0.01185801811516285, 0.026708554476499557, 0.006416776683181524, -0.00852933619171381, 1.6748977941460907e-05, -0.02135629765689373, 0.009201664477586746, 0.026576725766062737, -0.004818350076675415, 0.013341094367206097, -0.01737506128847599, 0.02425653673708439, -0.0014146899338811636, 0.003271006979048252, 0.014250715263187885, 9.974717977456748e-05, -0.02403242699801922, 0.011067044921219349, 0.0011370250722393394, -0.031559862196445465, -0.005121556576341391, -0.008977554738521576, 0.004317399580031633, 0.010941807180643082, 0.008443647064268589, -0.04321354627609253, -0.03809858113527298, -0.04846034198999405, -0.010961581021547318, 0.008285452611744404, -0.004396497271955013, 0.04466366395354271, -0.008252494968473911, -0.011904158629477024, -0.0002922896237578243, -0.015015322715044022, 0.017269598320126534, -0.00419545779004693, 0.011923933401703835, 0.01782328076660633, 0.016544539481401443, -0.006215737201273441, -0.007000119891017675, 0.018719717860221863, -5.504890577867627e-05, 0.02135629765689373, 0.03208717703819275, 0.019734801724553108, 0.056633736938238144, 0.007810868322849274, 0.017941927537322044, -0.06691639870405197, -0.021277200430631638, -0.016676368191838264, 0.03482922166585922, 0.019708435982465744, 0.006222328636795282, -0.010612234473228455, 0.05768837034702301, -0.02022256888449192, 0.00887209177017212, -0.07994110882282257, -0.020868530496954918, -0.013973874039947987, -0.01079020369797945, 0.013894776813685894, -0.0037175777833908796, 0.011838244274258614, 0.0362793393433094, 0.008245903998613358, 0.03498741611838341, 0.0027931269723922014, -0.04772209748625755, -0.010104692541062832, 0.0301361083984375, 0.05958670750260353, 0.02945059910416603, 0.04107791557908058, 0.013334503397345543, -0.05494632571935654, 0.022226369008421898, 0.021725419908761978, -0.03295724838972092, 0.030478864908218384, 0.01972161792218685, -0.07081853598356247, 0.005240202881395817, 0.012629218399524689, 0.021870430558919907, 0.03867862746119499, -0.00011555635865079239, -0.012853327207267284, 0.007290143519639969, 0.0004890031996183097, 0.007270369213074446, 0.025087058544158936, 0.016715917736291885, 0.03448646515607834, -0.001687411218881607, -9.880737934508943e-07, 0.012022804468870163, 0.007389015518128872, -0.026405349373817444, -0.030294304713606834, 0.004930404480546713, 0.008087709546089172, -0.00021731187007389963, 0.010486996732652187, -0.02329418435692787, -0.026959029957652092, 0.013749764300882816, -0.0006121809128671885, -0.04374086111783981, 0.0003952810075134039, 0.044584568589925766, -0.030795253813266754, 0.01877244934439659, -0.03388005122542381, -0.014395726844668388, 0.019444776698946953, -0.0297669880092144, 0.036622095853090286, -0.021844064816832542, -0.016953209415078163, -0.01564810238778591, -0.010869300924241543, -0.002730508102104068, -0.03498741611838341, 0.04155249893665314, -0.020525775849819183, -0.04089335724711418, -0.011205464601516724, 0.02937150187790394, -0.010243113152682781, -0.032693590968847275, -0.039153214544057846, -0.012853327207267284, -0.014092519879341125, 0.01769145205616951, -0.029556062072515488, -0.014329812489449978, 0.046166516840457916, 0.012358969077467918, -0.0012993395794183016, -0.011027495376765728, -0.014329812489449978, 0.025719838216900826, 0.07071307301521301, -0.013499289751052856, -0.020934445783495903, 0.02606259286403656, -0.00032627678592689335, 0.006258581764996052, -0.009254395961761475, -0.017955109477043152, -0.012339194305241108, 0.027156773954629898, -0.009214847348630428, 0.025772569701075554, -0.00030567849171347916, -0.0063574532978236675, 0.004541508853435516, -0.0013265293091535568, 0.008931415155529976, 0.006116865668445826, -0.044057250022888184, 0.04155249893665314, 0.032456301152706146, -0.015015322715044022, -0.013261997140944004, -0.0011147790355607867, 0.0071121747605502605, 0.01746734231710434, -0.010546320118010044, 0.03693848475813866, 0.025416631251573563, -0.016940025612711906, 0.01850879192352295, -0.013907959684729576, 0.0012721498496830463, 0.0013421840267255902, 0.04358266666531563, 0.018811998888850212, 0.026721738278865814, 0.010678148828446865, 0.03564656153321266, -0.010632009245455265, 0.008311818353831768, 0.004159205127507448, 0.016900477930903435, 0.02148812636733055, -0.030478864908218384, 0.0005858151125721633, 0.030874351039528847, 0.031058913096785545, 0.04566556587815285, -0.018442876636981964, -0.0338536873459816, 0.005167696624994278, -0.03356366232037544, -0.007962471805512905, 0.0067826020531356335, 0.015898577868938446, 0.032456301152706146, 0.024507010355591774, 0.020697152242064476, 0.019537057727575302, -0.036173876374959946, 0.010407899506390095, -0.013617935590445995, 0.023821501061320305, -0.011996438726782799, -0.049567703157663345, 0.01072428934276104, -0.01709822192788124, 0.012161225080490112, -0.02107945643365383, 0.03480285406112671, 0.006192667409777641, -0.0010735824471339583, 0.05030594766139984, 0.048486705869436264, -0.036806657910346985, -0.006429959554225206, -0.038124945014715195, 0.007738362066447735, 0.018746083602309227, 0.011594360694289207, -0.006677138619124889, -0.010104692541062832, -0.030109742656350136, 0.024876132607460022, 0.006301426328718662, -0.031006181612610817, 0.01045404002070427, 0.04732660949230194, -0.01468575093895197, 0.015133969485759735, 0.0009639995405450463, -0.012503980658948421, -0.023861048743128777, -0.03166532516479492, -0.02167268842458725, -0.047168415039777756, 0.007098991423845291, -0.022476844489574432, -0.03746580332517624, -0.027657724916934967, -0.025363899767398834, 0.02945059910416603, -0.0011007721768692136, 0.005823546089231968, -0.026444897055625916, 0.01696639135479927, -0.01547672413289547, 0.027024945244193077, -0.0031606003176420927, 0.014857128262519836, 0.007046259939670563, -0.030057011172175407, 0.011614134535193443, 0.0007625483558513224, -0.006034472491592169, -0.0005767518887296319, -0.0034407367929816246, 0.021277200430631638, -0.014488006941974163, -0.012859919108450413, 0.013855228200554848, -0.0072440034709870815, 0.040286943316459656, -0.010341985151171684, -0.023874232545495033, -0.00834477599710226, 0.00498972786590457, -0.025087058544158936, -0.013070845045149326, 0.0004848835524171591, -0.0026464671827852726, 0.02823777124285698, -0.017085038125514984, -0.011726189404726028, 0.006377228070050478, -9.289824811276048e-05, -0.022384563460946083, -0.009221438318490982, -0.0141847999766469, 0.00963670015335083, 0.009234621189534664, -0.011218647472560406, 0.02316235564649105, 0.013261997140944004, -0.008918232284486294, 0.019985277205705643, 0.03759763017296791, 0.008160214871168137, -0.03467102721333504, 0.023584207519888878, -0.0038955470081418753, -0.01459346991032362, -0.00702648563310504, -0.013070845045149326, -0.0032100360840559006, -0.037571266293525696, -0.009663065895438194, -0.020868530496954918, 0.0019032811978831887, -0.03335273638367653, 0.00943236518651247, 0.0005792236770503223, -0.014909859746694565, -0.010374941863119602, -0.03501378372311592, -0.009504870511591434, -0.02325463481247425, 0.015147152356803417, -0.08194490522146225, -0.0051083737052977085, -0.0055467053316533566, 0.024177437648177147, -0.016636820510029793, -0.02602304518222809, 0.013512472622096539, -0.007402198389172554, 0.05520998686552048, 0.025680288672447205, 0.006535422522574663, -0.004686520900577307, 0.04202708601951599, -0.03198171406984329, 0.019431594759225845, 0.046983856707811356, 0.010941807180643082, 0.01208212785422802, 0.010276070795953274, 0.00325782410800457, 0.007362649776041508, -0.010098101571202278, 0.006548605393618345, 0.014039788395166397, 0.021791333332657814, -0.014567104168236256, 0.029793353751301765, -0.011686640791594982, 0.0037933795247226954, -0.0033913010265678167, -0.03411734476685524, -0.010196973569691181, -0.0297669880092144, 0.03707031533122063, 0.005421467591077089, -0.026945848017930984, -0.011759147047996521, -0.01452755555510521, 0.03965416178107262, -0.02810594253242016, 0.0023943441919982433, -0.023333732038736343, 0.015252615325152874, 0.03076888807117939, -0.033590029925107956, 0.017032306641340256, 0.0026514106430113316, -0.033273641020059586, -0.015727199614048004, 0.018561523407697678, -0.017572805285453796, -0.016913659870624542, 0.021053090691566467, 0.016214966773986816, -0.047801196575164795, -0.012840144336223602, -0.04329264163970947, 0.03058432787656784, 0.029107842594385147, 0.032746322453022, -0.02262185700237751, -0.005250089801847935, 0.014659385196864605, 0.016504989936947823, 0.01574038341641426, 0.00922803021967411, -0.02742043137550354, 0.0037834923714399338, 0.015621736645698547, 0.00827886164188385, -0.011600951664149761, 0.0043075126595795155, 0.010401308536529541, 2.8387005386321107e-06, -0.016570905223488808, 0.024230170994997025, -0.011765738017857075, 0.026945848017930984, -0.03696485236287117, 0.019695252180099487, 0.04395178705453873, -0.00690124835819006, -0.001353719038888812, 0.05170333385467529, -0.027499528601765633, -0.01823195070028305, 0.006881473585963249, 0.03672755882143974, -0.016544539481401443, -0.0061860759742558, -0.023096440359950066, -0.02131674997508526, -0.02144857868552208, 0.017625536769628525, -0.027394065633416176, -0.0054313549771904945, -0.01185801811516285, -0.005662055686116219, 0.005609323736280203, -0.027763187885284424, 0.043503571301698685, -0.0368330217897892, 0.023518294095993042, -0.02425653673708439, 0.0029645045287907124, -0.037940386682748795, 0.008542519062757492, -0.03158622980117798, 0.03140166774392128, 0.0035066513810306787, 0.031190741807222366, 0.0017137769609689713, 0.020341213792562485, 0.017256416380405426, -0.0037043949123471975, 0.0005281399353407323, -0.024546559900045395, -0.028395965695381165, -0.010467222891747952, 0.0017351992428302765, -0.016491807997226715, 0.0005384390824474394, -0.02981971949338913, 0.018838364630937576, 0.0003524365893099457, -0.010190381668508053, 0.02506069280207157, -0.02583848312497139, -0.026128508150577545, 0.009755345992743969, -0.02868599072098732, 0.014804396778345108, 0.03448646515607834, 0.029872450977563858, 0.0057807015255093575, -0.07619716227054596, 0.04627197980880737, -0.016623636707663536, 0.013565204106271267, 0.015437175519764423, 0.0012391925556585193, -0.024915680289268494, 0.0076988134533166885, 0.0075603933073580265, 0.02212090604007244, -0.02728860266506672, 0.04171069711446762, 0.003572565969079733, -0.0014830762520432472, -0.02384786680340767, -0.04202708601951599, 0.022450478747487068, -0.034908320754766464, 0.0015803001588210464, -0.011258197017014027, 0.002033462282270193, 0.025733020156621933, 0.0035363128408789635, -0.023650122806429863, 0.010289253666996956, -0.009287352673709393, -0.027394065633416176, 0.01146912295371294, -0.002615157747641206, 0.03709667921066284, 0.04440000653266907, 0.009663065895438194, 0.021514492109417915, 0.01475166529417038, -0.014540738426148891, 0.05958670750260353, 0.008100892417132854, -0.02466520667076111, -0.0372021421790123, -0.0035494957119226456, 0.01541080977767706, 0.014395726844668388, -0.005935600493103266, -0.006093795411288738, -0.0018060572911053896, -0.023056892678141594, -0.023584207519888878, -0.001954364823177457, -0.022015443071722984, 0.0027552261017262936, 0.006031176541000605, 0.03530380502343178, -0.012246914207935333, 0.02425653673708439, -0.030426133424043655, 0.018403328955173492, 0.02881781943142414, 0.011277970857918262, 0.012978564947843552, 0.01452755555510521, -0.004824941512197256, -0.006047655362635851, 0.033774588257074356, 0.0006389587069861591, -0.029081476852297783, 0.0071121747605502605, 0.0031474174465984106, -0.009386224672198296, 0.006621111650019884, -0.014290263876318932, -0.02072351798415184, -0.013288362883031368, 0.034090980887413025, -0.020262116566300392, 0.019167937338352203, 0.012293053790926933, -0.018021024763584137, 0.02611532434821129, -0.013420192524790764, -0.008905048482120037, 0.0058861649595201015, -0.012840144336223602, 0.03714941069483757, 0.003444032510742545, 0.008641391061246395, 0.02945059910416603, 0.008338184095919132, -0.005358848720788956, -0.011930524371564388, -0.017520073801279068, -0.008766628801822662, -0.0014616540865972638, -0.009939906187355518, 3.0285909815574996e-06, -0.019945727661252022, 0.00134630361571908, 0.022964611649513245, 0.03917957842350006, -0.02818503975868225, -0.030979814007878304, -0.01133729424327612, -0.01323563139885664, -4.598566374625079e-05, 0.08974917978048325, 0.0009656473994255066, 0.016597270965576172, -0.009728980250656605, 0.011330702342092991, 0.046403806656599045, 0.0031259951647371054, -0.016544539481401443, -0.007250594906508923, -0.00032318703597411513, 0.025482546538114548, 0.007125357631593943, -0.020578507333993912, -0.028659624978899956, 0.0018077051499858499, 0.00283432356081903, 0.006433255039155483, 0.04099882021546364, -0.008212946355342865, 0.02442791312932968, 0.01846924237906933, 0.014382543973624706, -0.01547672413289547, 0.025311168283224106, 0.01683456264436245, 0.027077676728367805, 0.02863325923681259, 0.019576607272028923, -0.04226437583565712, 0.02330736629664898, 0.0038922512903809547, -0.015938125550746918, -0.0066672516986727715, -0.015463541261851788, 0.01173937227576971, 0.003526425687596202, -0.016439076513051987, -0.010941807180643082, -0.03883682191371918, -0.020117105916142464, 0.011258197017014027, 0.0024915679823607206, 0.004178979434072971, 0.0003713869955390692, -0.010084918700158596, -0.013110393658280373, 0.011502080596983433, -0.016162235289812088, 0.002905181609094143, -5.679975947714411e-05, 0.016359979286789894, 0.007066034246236086, -0.005642281379550695, 0.009597151540219784, -0.025271618738770485, -0.018587889149785042, -0.012253505177795887, -0.025548459962010384, -0.021158553659915924, 0.00042432459304109216, -0.006153118330985308, 0.01481757964938879, 0.01806057244539261, -0.01914157159626484, -0.014870311133563519, -0.01877244934439659, 0.006284947507083416, 0.026313068345189095, 0.028448699042201042, 0.0035692702513188124, -0.010289253666996956, -0.009834443219006062, 0.0016972983721643686, -0.0014649498043581843, 0.037755824625492096, 0.005843320395797491, 0.033458199352025986, -0.0012556712608784437, 0.03142803534865379, -0.020525775849819183, -0.005737857427448034, -0.024006061255931854, -0.010051961056888103, -0.01257648691534996, 0.005072120577096939, 0.012728089466691017, -0.00556647963821888, 0.04252803698182106, -0.018258316442370415, -6.921022577444091e-05, 0.01588539406657219, 0.0077910940162837505, -0.032377202063798904, -0.02524525299668312, 0.02276686765253544, 0.009175298735499382, 0.000949168810620904, 0.010493588633835316, -0.016043588519096375, 0.0014937873929738998, -0.043319009244441986, -0.01882518082857132, 0.0025228774175047874, 0.028976013883948326, 0.025456178933382034, -0.0037340563721954823, -0.02723587118089199, 0.03340546786785126, -0.05568457022309303, 0.029292404651641846, 0.005747744347900152, -0.02434881590306759, 0.03266722708940506, 0.017928743734955788, 0.018851546570658684, -0.023768767714500427, 0.045454639941453934, -0.015239432454109192, 0.02198907732963562, -0.005286342930048704, -0.03968052938580513, 0.00783064216375351, -0.013360869139432907, 0.012049170210957527, 0.035541098564863205, 0.022015443071722984, 0.0141847999766469, 0.05307435616850853, 0.013987056910991669, 0.035725660622119904, 0.039205946028232574, -0.022542759776115417, -0.03361639380455017, 0.009247804060578346, -0.055262718349695206, -0.016175419092178345, -0.0013495993334800005, -0.014988956972956657, -0.03564656153321266, 0.011212056502699852, 0.016004040837287903, 0.0013693737564608455, -0.029529696330428123, 0.04289715737104416, -0.021026724949479103, -0.010447448119521141, 0.010836344212293625, 0.025588009506464005, 0.0026201014406979084, -0.0017928744200617075, 0.03519834205508232, 0.015621736645698547, -0.013308137655258179, 0.019260216504335403, -0.013387234881520271, 0.0037241692189127207, 0.006373932119458914, 0.031006181612610817, -0.007922923192381859, 0.02492886409163475, 0.03150713071227074, 0.023465562611818314, -0.03685938939452171, -0.009056651964783669, -0.04168432950973511, -0.026405349373817444, 0.013143351301550865, 0.009873991832137108, -0.01058586873114109, -0.028580527752637863, 0.021237652748823166, -0.022885514423251152, 0.01759917102754116, 0.011633909307420254, 0.03475012257695198, 0.013453149236738682, 0.030109742656350136, -0.01570083387196064, -0.00012410464114509523, 0.03316817805171013, 0.010236522182822227, 0.012378742918372154, 0.023096440359950066, 0.01810012198984623, -0.006034472491592169, -0.0031985011883080006, 0.002359739039093256, -0.005767518654465675, -0.007178089115768671, -0.033009979873895645, 0.03372185677289963, -0.01759917102754116, 0.020525775849819183, 0.01309721078723669, 0.0019527170807123184, -0.020077556371688843, -0.00041505537228658795, -0.012306236661970615, -0.046720199286937714, -0.012820370495319366, 0.013907959684729576, -0.003099629422649741, 0.0022163749672472477, 0.020789433270692825, 0.009696022607386112, 0.032008081674575806, 0.06296153366565704, 0.021738601848483086, -0.06127411872148514, 0.014923042617738247, 0.014039788395166397, -0.011146142147481441, 0.010796794667840004, 0.025100242346525192, 0.03530380502343178, -0.011034087277948856, -0.004525030497461557, 0.000994484988041222, 0.023333732038736343, -0.015555822290480137, 0.0007662560674361885, -0.008496379479765892, -0.028659624978899956, 0.007652673404663801, 0.012629218399524689, -0.011627317406237125, 0.0070067113265395164, -0.009359858930110931, -0.0007757312851026654, 0.0394432358443737, 0.026075776666402817, 0.01133729424327612, -0.008002020418643951, -0.013578386977314949, 0.014830762520432472, -0.032324470579624176, 0.0051149651408195496, 0.02131674997508526, -0.0049864319153130054, 0.004838124383240938, 0.023281000554561615, -0.023742401972413063, 0.0039680530317127705, 0.012991747818887234, -0.008292044512927532, -0.02850143052637577, 0.016267698258161545, 0.004716182593256235, 0.01763872057199478, 0.021844064816832542, -0.020525775849819183, -0.009221438318490982, 0.010552911087870598, 0.014369361102581024, 0.010071735829114914, -0.014171617105603218, -0.018429694697260857, 0.02107945643365383, -0.011416391469538212, -0.03095344826579094, -0.01583266258239746, 0.048170316964387894, -0.04213254898786545, 0.04155249893665314, 0.016860928386449814, 0.010216747410595417, 0.010546320118010044, 0.00027127936482429504, -0.0036154102999716997, 0.0037933795247226954, -0.028448699042201042, 0.029740622267127037, 0.01610950380563736, 0.022147271782159805, 0.010612234473228455, 0.005368736106902361, -0.018614254891872406, -0.007270369213074446, 0.0001698328269412741, 0.017625536769628525, 0.00943236518651247, 0.01352565549314022, -0.014791213907301426, -0.035224709659814835, 0.007883374579250813, -0.011561403051018715, 0.019036106765270233, -0.010388124734163284, 0.009643291123211384, -0.0021455169189721346, -0.00997945573180914, 0.029529696330428123, -0.01854833960533142, -0.01904929056763649, -0.0081865806132555, -0.04302898421883583, -0.006169597152620554, -0.009663065895438194, 0.0013322968734428287, 0.011937116272747517, -0.00013563968241214752, -0.01806057244539261, -0.02528480254113674, 0.03451283276081085, 0.016228150576353073, -0.005790588911622763, -0.0032940772362053394, 0.01882518082857132, 0.02682720124721527, -0.002077954588457942, 0.003882364137098193, -0.006657364312559366, 0.03612114489078522, 0.002788183279335499, -0.017322329804301262, -0.010908849537372589, -0.005576366558670998, -0.0004350357048679143, -0.0032116840593516827, 0.01733551360666752, 0.0014665976632386446, 0.0020614759996533394, 0.016030406579375267, -0.006439846474677324, -0.020341213792562485, -0.02556164376437664, -0.023412831127643585, 0.0034868770744651556, -0.0265108123421669, -0.006317904684692621, 0.0029974619392305613, 0.007323101162910461, -0.019352497532963753, -0.025192521512508392, -0.005777406040579081, -0.016900477930903435, -0.021778151392936707, 0.024151071906089783, -0.042238011956214905, -0.01500213984400034, -0.009135750122368336, -0.010592459701001644, -0.052599769085645676, -0.002333373297005892, 0.017177319154143333, -0.027130408212542534, -0.008832543157041073, -0.004014193080365658, -0.02276686765253544, -0.000847001327201724, 0.021119005978107452, 0.0005907586892135441, -0.039153214544057846, -0.013723398558795452, -0.0037175777833908796, -0.001731903525069356, -0.029239671304821968, 0.004528325982391834, 0.010869300924241543, -0.04308171570301056, 0.021369481459259987, 0.05397079139947891, 0.04772209748625755, 0.0280004795640707, -0.014092519879341125, -0.019747983664274216, 0.00118728494271636, -0.027341334149241447, -0.030927082523703575, -0.01583266258239746, -0.013973874039947987, 0.019616154953837395, 0.015028505586087704, 0.0002601562882773578, -0.02289869636297226, 0.030057011172175407, 0.023491928353905678, 0.01750689186155796, -0.0008185756742022932, 0.015054871328175068, -0.015318529680371284, -0.015015322715044022, -0.007751545403152704, 0.003135882318019867, 0.00507871201261878, 0.014356178231537342, -0.001629736041650176, -0.017757365480065346, -0.019708435982465744, 0.015252615325152874, -0.011020904406905174, 0.007098991423845291, -0.02275368571281433, -0.01106045302003622, -0.07097673416137695, -0.00690124835819006, -0.00947850476950407, 0.019800715148448944, 0.00895778089761734, -0.020341213792562485, 0.013631118461489677, 0.008147032000124454, -0.003315499285236001, -0.014263898134231567, 0.003437441075220704, -0.024810217320919037, 0.026260336861014366, -0.00022616912610828876, -0.01765190251171589, -0.0009335140930488706, -0.00042926816968247294, -0.013222448527812958, -0.00279477471485734, 0.03279905393719673, 0.00047623226419091225, -0.019879812374711037, 0.03514561057090759, -0.010434265248477459, -0.03461829572916031, 0.03461829572916031, -0.016399526968598366, 0.014079337008297443, -0.0008008611621335149, -0.024309268221259117, 0.0020944331772625446, 0.0006364868604578078, 0.004225119482725859, -0.009920132346451283, 0.003127642907202244, 0.0031012771651148796, 0.0005886988947167993, -0.017678268253803253, 0.017322329804301262, -0.00011555635865079239, 0.01638634502887726, 0.0023317253217101097, -0.025891214609146118, -0.0015333360061049461, 0.012253505177795887, -0.01958978921175003, 0.01475166529417038, -0.02842233143746853, -0.0037043949123471975, 0.005892756395041943, 0.0009524645283818245, 0.02117173746228218, -0.01850879192352295, -0.01827150024473667, -0.009551011025905609, -0.013749764300882816, 0.013242223300039768, -0.0285541620105505, 0.029872450977563858, -0.009893766604363918, 0.030426133424043655, 0.0022773458622395992, 0.01895700953900814, 0.0033122035674750805, -0.014698933809995651, 0.014646202325820923, 0.022318650037050247, 0.037623997777700424, 0.03960143029689789, -0.004890855867415667, 0.027446797117590904, 0.004010897129774094, -0.014145251363515854, 0.022832782939076424, 0.014778031036257744, 0.0019016333390027285, 0.007435155566781759, 0.02176496759057045, 0.024230170994997025, -0.0004272083460818976, -0.03343183547258377, -0.0033435130026191473, 0.007184680551290512, -0.015173518098890781, 0.008489787578582764, -0.004564579110592604, 0.003168839495629072, -0.0014336403692141175, 0.009109383448958397, 0.000974710681475699, 0.018297865986824036, 0.0022410929668694735, 0.028264136984944344, 0.01638634502887726, 0.01318949181586504, 0.030663425102829933, -0.018746083602309227, 0.03991782292723656, -0.014633018523454666, -0.00019249094475526363, 0.005263272672891617, -0.03277269005775452, 0.008331593126058578, 0.015107603743672371, -0.005783997476100922, -0.0032364018261432648, -0.002847506431862712, 0.0008412338211201131, -0.011528446339070797, -0.004080107435584068, -0.025825301185250282, -0.00783064216375351, -0.03453919664025307, 0.005790588911622763, -0.00668373005464673, -0.014474824070930481, 0.006077317055314779, 0.012523755431175232, -0.013815679587423801, 0.001422929228283465, -0.010605642572045326, 0.0280004795640707, 0.012385334819555283, -0.033273641020059586, -0.009623517282307148, -0.015938125550746918, -0.014026605524122715, 0.0010999481892213225, -0.009115975350141525, 0.038704995065927505, -0.0029282516334205866, -0.002135629765689373, -0.018179219216108322, 0.003397892462089658, -0.0006554372957907617, 0.004960066173225641, 0.03593658655881882, -0.002694255206733942, 0.02139584720134735, -0.029107842594385147, 0.015265798196196556, 0.004136134870350361, -0.01208212785422802, -0.001205411390401423, -0.004936995916068554, 0.008153623901307583, -0.0029298996087163687, -0.01914157159626484, 0.002920012455433607, -0.009155523963272572, 0.0009730628225952387, -0.01206235308200121, 0.029476964846253395, 0.021158553659915924, -0.01592494361102581, -0.028448699042201042, -0.0030370105523616076, -0.002290528966113925, -0.004528325982391834, -0.015727199614048004, -0.005451129283756018, 0.006687026005238295, 0.009564193896949291, 0.004294329788535833, 0.004960066173225641, 0.00345062417909503, -0.026405349373817444, -0.011330702342092991, -0.003674733452498913, 0.012194182723760605, 0.022608673200011253, -0.0007576047792099416, -0.024282902479171753, -0.019655704498291016, -0.0006933381664566696, -0.0162808820605278, 0.007303326390683651, -0.01051995437592268, 0.01481757964938879, -0.022542759776115417, 0.010282661765813828, 0.009076426737010479, 0.009307127445936203, -0.001206235378049314, -0.01995891146361828, 0.002007096540182829, -0.006436550989747047, -0.0020449974108487368, -0.016584089025855064, 0.019247034564614296, 0.0010093158343806863, 0.03221900761127472, -0.006802376359701157, 0.010407899506390095, 0.0021916572004556656, -0.0067199831828475, 0.0236237570643425, 0.03316817805171013, -0.024190621450543404, -0.0012202421203255653, -0.007362649776041508, -0.020301666110754013, 0.02243729494512081, 0.029292404651641846, -0.009735571220517159, 0.021699054166674614, -0.02818503975868225, 0.012899467721581459, 0.007955879904329777, -0.025825301185250282, -0.02117173746228218, 0.0019131683511659503, 0.02193634584546089, 0.019616154953837395, -0.002829379867762327, 0.015951309353113174, 0.008476604707539082, -0.003404483897611499, 0.009181889705359936, -0.0032808941323310137, 0.0181396696716547, 0.00020690973906312138, 0.014580287039279938, -0.005760927218943834, 0.0036582546308636665, 0.030505230650305748, 0.0030815028585493565, -0.02546936273574829, -0.01806057244539261, -0.01264240127056837, 0.0141847999766469, 0.008305227383971214, 0.0027288603596389294, -0.013453149236738682, -0.0008626560447737575, 0.01119887363165617, 0.022740501910448074, -0.0247443038970232, 0.013565204106271267, -0.005082007963210344, 0.0017417906783521175, -0.013103802688419819, -0.014764848165214062, 0.004294329788535833, 0.001128785777837038, 0.030927082523703575, -0.05610642209649086, -0.016504989936947823, -0.007955879904329777, 0.015727199614048004, 0.011871200986206532, -0.013143351301550865, -0.008647982031106949, 0.013004930689930916, -0.0001027854232233949, -0.008272269740700722, 0.0017417906783521175, 0.004142726305872202, -0.0034011881798505783, -0.00460412772372365, -0.014224349521100521, -0.011923933401703835, 0.014382543973624706, -0.027183139696717262, 0.00866775680333376, -0.008713897317647934, 0.0046601551584899426, 0.004900743253529072, 0.004946883302181959, -0.01642589271068573, -0.01255671214312315, 0.0036450717598199844, -0.025324350222945213, 0.029925182461738586, 0.00887209177017212, 0.021514492109417915, -0.0054412418976426125, -0.027209505438804626, 0.0165577232837677, 0.004732660949230194, -0.010533137246966362, 0.019800715148448944, -0.038889553397893906, 0.011330702342092991, 0.007052851375192404, -0.000974710681475699, 0.013420192524790764, 0.008891865611076355, 0.023518294095993042, 0.003310555825009942, -0.021593589335680008, 0.019260216504335403, 0.02167268842458725, -0.02570665441453457, 0.026550360023975372, -0.00641348073258996, 0.008641391061246395, 0.0024520193692296743, 0.015054871328175068, 0.006344270426779985, 0.0092082554474473, 0.03235083818435669, -0.053865328431129456, -0.026168055832386017, -0.011093410663306713, -0.0001550020679133013, 0.009676248766481876, 0.009847626090049744, -0.002628340618684888, 0.0027684089727699757, -0.03287815302610397, 0.008021794259548187, -0.0030221797060221434, -0.030109742656350136, -0.009188481606543064, 0.019022924825549126, 0.027209505438804626, -0.021013543009757996, 0.0074747041799128056, -0.044057250022888184, 0.016597270965576172, 0.017348695546388626, 0.014909859746694565, 0.010104692541062832, -0.05009502172470093, -0.004264668095856905, 0.002949673915281892, -0.010559502989053726, 0.0038329281378537416, 0.000935985881369561, -0.017019124701619148, 0.038573164492845535, 0.019523873925209045, 0.0184165108948946, 0.0034077796153724194, -0.009491687640547752, -2.5464625650784e-05, 0.022951429709792137, -0.012266688048839569, -0.008839134126901627, 0.019972093403339386, -0.0023696261923760176, -0.003994418773800135, 0.0006776834488846362, -3.213331729057245e-05, -0.0020186316687613726, -9.634846355766058e-05, 0.02747316285967827, -0.0008412338211201131, -0.02293824590742588, 0.03883682191371918, -0.00028714005020447075, 0.0007382424082607031, -0.0032166275195777416, 0.0056488728150725365, 0.0433453768491745, 0.011521854437887669, 0.005688421428203583, -0.019154753535985947, -0.05288979411125183, -0.009214847348630428, -0.008615025319159031, -0.0021636434830725193, 0.014356178231537342, 0.007204454857856035, -0.0023135989904403687, 0.004996319301426411, -0.016096320003271103, -0.0004366835637483746, -0.01895700953900814, -0.0041130646131932735, -0.004178979434072971, -0.020235750824213028, -0.01606995426118374, -0.039706893265247345, 0.009148932993412018, -0.004287738353013992, 0.005388510413467884, 0.005194062367081642, -0.014791213907301426, 0.006163005717098713, -0.003149065189063549, 0.008351366966962814, -0.010183789767324924, -0.013341094367206097, -0.006828742101788521, -0.011851427145302296, -0.009379633702337742, -0.0074417470023036, 0.0013018114259466529, -0.01755962334573269, -0.021606773138046265, 0.020196203142404556, 0.02515297383069992, 0.02338646538555622, -0.009715797379612923, -0.02502114325761795, 0.015305346809327602, -0.02212090604007244, -0.007738362066447735, -0.0005466783768497407, 0.0035692702513188124, -0.008331593126058578, 0.04144703596830368, -0.00036252973950468004, 0.03142803534865379, 0.0021471648942679167, 0.012998339720070362, -0.005619211122393608, -0.0013759651919826865, -0.008107483386993408, 0.004185570869594812, 0.010809977538883686, -0.0015926591586321592, -0.01169323269277811, 0.02515297383069992, -0.009728980250656605, 0.02388741448521614, -0.02578575164079666, 0.010434265248477459, -0.01964252069592476, -0.0049765445291996, -0.02697221376001835, -0.03179715573787689, -0.01936567947268486, 0.038704995065927505, -0.024045608937740326, -0.015489907003939152, 0.009557602927088737, -0.0015028505586087704, 0.03163896128535271, -0.017427794635295868, 0.0074681127443909645, 0.01854833960533142, 0.04511188343167305, -0.010355168022215366, 0.0074681127443909645, -0.02488931454718113, -0.009392816573381424, -0.0009038525749929249, -0.028132308274507523, 0.004551396239548922, -0.006512352731078863, -0.025482546538114548, -0.003743943525478244, 0.004824941512197256, 0.002137277740985155, -0.03380095586180687, 0.020117105916142464, 0.044953688979148865, 0.015911759808659554, -0.01380249671638012, 0.019220668822526932, 0.01117909885942936, 0.009313718415796757, 0.01683456264436245, -0.017230050638318062, -0.015344895422458649, 0.0021405734587460756, 0.009076426737010479, -0.004831532947719097, 0.0026547065936028957, 0.010809977538883686, 0.00791633129119873, 0.007059442810714245, 0.010744063183665276, 0.029107842594385147, -0.0006265997071750462, -0.012088718824088573, -0.03786128759384155, 0.0039911228232085705, -0.018245132640004158, -0.005118261091411114, -0.016452258452773094, 0.011706415563821793, -0.04026057571172714, -0.005134739447385073, 0.006980345584452152, -0.006986937019973993, -0.008806177414953709, 0.0016412710538133979, 0.009076426737010479, 0.0016198488883674145, 0.02392696402966976, 0.026088958606123924, -0.008206355385482311, 0.0014509429456666112, 0.015845846384763718, 0.011923933401703835, 0.023874232545495033, 0.015041688457131386, 0.023913780227303505, -0.03076888807117939, -0.010954990051686764, 0.014026605524122715, -0.022318650037050247, 0.010051961056888103, -0.001045568729750812, 0.016004040837287903, -0.0039812359027564526, 0.010196973569691181, -0.017902377992868423, -0.04152613505721092, 0.0016017223242670298, 0.00805475190281868, 0.0006163005600683391, -0.020789433270692825, -0.0053324829787015915, -0.002686015795916319, 0.008562293834984303, -0.014896676875650883, 0.003430849639698863, -0.001339712180197239, 0.01140320859849453, -0.0013512471923604608, -0.00922803021967411, -0.00034110754495486617, -0.005250089801847935, 0.00042926816968247294, 0.0018950419034808874, -0.009511462412774563, -0.007356058340519667, 0.0023449084255844355, -0.008582067675888538, -0.004828236997127533, 0.0020038008224219084, -0.008898457512259483, 0.005190766882151365, -0.012602852657437325, -0.004188866354525089, -0.00201368797570467, 0.0037175777833908796, 0.011238422244787216, 0.022727319970726967, 0.03556746244430542, -0.00048076387611217797, 0.003648367477580905, -0.0007728475029580295, -0.016162235289812088, -0.002854097867384553, 0.007494478486478329, 0.0028557456098496914, -0.011574585922062397, -0.006894656457006931, 0.012003030627965927, 0.039522334933280945, -0.008437056094408035, 0.008489787578582764, -0.021501310169696808, 2.1164734789635986e-05, -0.023808317258954048, 0.0008651278330944479, 0.0018917461857199669, 0.01165368314832449, -0.0042284149676561356, 0.013275180011987686, -0.008160214871168137, -0.0013776130508631468, 0.004284442402422428, -0.005803771782666445, 0.003674733452498913, 0.012563304044306278, 0.023676488548517227, -0.02863325923681259, 0.022015443071722984, -0.008792994543910027, 0.00610697828233242, -0.009241213090717793, 0.016584089025855064, -0.009050060994923115, 0.010467222891747952, -0.010737472213804722, -0.0016767000779509544, 0.005602732300758362, 0.013552021235227585, -0.016096320003271103, 0.0012466079788282514, -0.0004300920991227031, 0.0008375261095352471, 0.0006237159832380712, 0.019668886438012123, -0.022819599136710167, 0.014013422653079033, -0.007764728274196386, 0.00443604588508606, -0.011805286630988121, 0.012385334819555283, 0.013604752719402313, 0.02561437524855137, -0.008311818353831768, -0.00900392048060894, 0.011785512790083885, 0.0005207245703786612, 0.0009178594336844981, -0.00450196024030447, -0.029239671304821968, -0.0028903507627546787, 0.012932424433529377, 0.001956012798473239, 0.02760499343276024, -0.004139430820941925, 0.00839091558009386, -0.01891746185719967, -0.009155523963272572, -0.003069967729970813, 8.939654071582481e-05, -0.0020812503062188625, -0.016636820510029793, -0.010783611796796322, 0.013156534172594547, -0.026721738278865814, -0.020328031852841377, 0.0002083516155835241, -0.0011180747533217072, -0.009511462412774563, -0.02126401849091053, 0.005144626833498478, 0.019985277205705643, -0.019668886438012123, 0.0038329281378537416, 0.0151603352278471, 0.0002195776760345325, 0.02981971949338913, 0.025943947955965996, -0.009966271929442883, -0.00443604588508606, -0.009320310316979885, -0.0018175923032686114, -0.005299525801092386, -0.009267578832805157, -0.006393706426024437, 0.020103922113776207, -0.01305107120424509, 0.007000119891017675, -0.03986508771777153, -0.01592494361102581, -0.0054478333331644535, -0.010401308536529541, -0.012774229981005192, 0.00382304098457098, -7.168202137108892e-05, 0.00025418278528377414, -0.015872212126851082, 0.008727080188691616, 0.004073516000062227, 0.02900237962603569, 0.012583077885210514, -0.006149822846055031, 0.0016692846547812223, 0.010678148828446865, -0.013018113560974598, -0.0011535037774592638, -0.00573456147685647, -0.023505110293626785, 2.471793777658604e-06, -0.005899347830563784, -0.012055762112140656, -0.017796915024518967, 0.005714787170290947, -0.004426158498972654, 0.003355048131197691, 0.036305706948041916, 0.00583672896027565, -0.006278356071561575, -0.003727464936673641, -0.016122685745358467, 0.004462411627173424, -0.0081404410302639, -0.013855228200554848, 0.014514372684061527, 0.006808967795222998, -0.010552911087870598, -0.006446437910199165, -0.01769145205616951, -0.022780051454901695, 0.02818503975868225, 0.0035165385343134403, 0.0049765445291996, -0.004765618126839399, 0.024770669639110565, -0.0005882869008928537, 0.005062233656644821, 0.011119776405394077, 0.016439076513051987, 0.004969953093677759, 0.002494863932952285, 0.04258076846599579, 0.013973874039947987, 0.00639041094109416, 0.008542519062757492, 0.02126401849091053, -0.019932543858885765, -0.04521734640002251, -0.0016305599128827453, -0.001949421362951398, 0.014369361102581024, -0.023505110293626785, -0.002129038330167532, -0.019484326243400574, 0.001269678003154695, 0.004412975627928972, -0.017322329804301262, 0.01529216393828392, -0.006650772877037525, 0.011100001633167267, -0.005042459350079298, -0.0021982486359775066, -0.008160214871168137, -0.011205464601516724, 0.009966271929442883, 0.004380018450319767, 0.020143471658229828, 0.020288482308387756, 0.013973874039947987, -0.031164376065135002, -0.005642281379550695, 0.01728278212249279, -0.002840914996340871, -0.031928982585668564, -0.0007637842791154981, -0.018086938187479973, -0.015147152356803417, 0.01323563139885664, -0.0398123562335968, 0.025232071056962013, 0.0070198941975831985, -0.01364430133253336, 0.010744063183665276, 0.010440857149660587, 0.021343115717172623, -0.01189756765961647, 0.008727080188691616, -0.012279870919883251, -0.004607423674315214, -0.007191271986812353, -0.00036232377169653773, 0.026313068345189095, 0.005915826186537743, -0.009313718415796757, -0.004360244143754244, -0.009307127445936203, 0.011001129634678364, 0.01746734231710434, -0.0005952903302386403, -0.0030254756566137075, 0.013828862458467484, -0.020459860563278198, 0.002303711837157607, 0.008700713515281677, -0.006403593812137842, -0.01827150024473667, -0.008450238965451717, -0.012154634110629559, -0.002803014125674963, -0.00873367115855217, -0.06681093573570251, -0.019616154953837395, 0.026260336861014366, 0.012227139435708523, -0.01278082188218832, -0.01036175899207592, 0.03562019392848015, 0.003317147260531783, 0.012754456140100956, 0.008107483386993408, 0.00943236518651247, 0.008680939674377441, 0.003674733452498913, 0.0014468232402577996, -0.012326011434197426, -0.0027272123843431473, 0.006921022664755583, 0.00798883754760027, 0.01932613179087639, -0.008542519062757492, 0.011502080596983433, 0.0033945967443287373, -0.010460630990564823, 0.03045249916613102, -0.003898842725902796, 0.042923521250486374, 0.013433375395834446, -0.009623517282307148, 0.006802376359701157, 0.0007254714728333056, -0.010190381668508053, 0.008338184095919132, -0.005187470931559801, -0.005912530701607466, 0.00518087949603796, -0.005082007963210344, 0.00641348073258996, 0.010164015926420689, 0.004828236997127533, -2.67005216301186e-05, 0.015674468129873276, -0.0046601551584899426, -0.0058795735239982605, 0.03190261870622635, 0.01737506128847599, 0.0201830193400383, -0.009676248766481876, -0.012253505177795887, -0.011686640791594982, -0.019220668822526932, 0.013697032816708088, 0.009788303636014462, 0.0016305599128827453, -0.020393947139382362, 0.004699703771620989, -0.0047623226419091225, -0.015199883840978146, -0.002097728895023465, 0.0028573935851454735, 0.015463541261851788, 0.007599941920489073, -0.01904929056763649, 0.014422092586755753, 0.02394014596939087, -0.002456963062286377, -0.008905048482120037, 0.0026645937468856573, -0.009030286222696304, 0.0004375074931886047, 0.026998579502105713, 0.008443647064268589, 0.0055401138961315155, 0.0015481668524444103, -0.021778151392936707, 0.00047993994667194784, 0.0009384576696902514, -0.0008552406216040254, -0.0005664527416229248, -0.005978445056825876, 0.01605677232146263, 0.017836464568972588, -0.014988956972956657, 0.008601842448115349, -0.02193634584546089, -0.0002052618656307459, 0.013565204106271267, -0.012873101979494095, 0.0002801366208586842, 0.019062472507357597, 0.008489787578582764, -0.010196973569691181, 0.01670273393392563, -0.0055631836876273155, -0.00812066625803709, 0.01629406400024891, 0.006647477392107248, 0.017520073801279068, 0.00014665976050309837, -0.001173278084024787, 0.006456325296312571, -0.009696022607386112, 0.0020499408710747957, 0.012939016334712505, 0.0029348430689424276, -9.650294668972492e-05, -0.019576607272028923, -0.003444032510742545, 0.020341213792562485, -0.013881593942642212, -0.004353652708232403, 0.0011600952129811049, 0.009676248766481876, -0.008028386160731316, 0.0007670799968764186, -0.014580287039279938, 0.01773099973797798, 0.009564193896949291, 0.0027420432306826115, 0.00982126034796238, -0.037808556109666824, 0.003898842725902796, -0.0054313549771904945, 0.012326011434197426, -0.0012540234019979835, 0.003476989921182394, 0.02303052693605423, -0.00879958551377058, -0.006393706426024437, -0.021092640236020088, -0.0014056266518309712, -0.021422212943434715, -0.005269864108413458, 0.009307127445936203, -0.004515143111348152, 0.02103990875184536, 0.0009648234699852765, -0.005708195734769106, 0.012866510078310966, 0.005375327542424202, 0.009920132346451283, 0.010750655084848404, -0.004693112336099148, 0.007303326390683651, 0.0012556712608784437, 0.005451129283756018, -0.00758016761392355, 0.011778920888900757, 0.021119005978107452, -0.026484446600079536, 0.0006455501425080001, -0.03583112359046936, 0.009260986931622028, -0.011614134535193443, -0.011614134535193443, -0.004940291866660118, 0.0067891934886574745, -0.00108346960041672, 0.015278981067240238, -0.039153214544057846, 0.010328802280128002, -0.017388245090842247, -0.028844185173511505, -0.010678148828446865, 0.000974710681475699, -0.020842164754867554, 0.001674228347837925, -0.013697032816708088, -0.005599436815828085, -0.005932305008172989, 0.0007860304322093725, 0.03852043300867081, 0.015489907003939152, 3.0305222026072443e-05, 0.000852768833283335, 0.015964491292834282, -0.0011979960836470127, 0.020670786499977112, 0.029872450977563858, 0.00823931209743023, -0.007000119891017675, -0.013973874039947987, -0.009063243865966797, -0.015041688457131386, -0.008720488287508488, -0.0036252974532544613, -0.0013965634861961007, -0.019247034564614296, 0.01733551360666752, -0.010750655084848404, 0.008746854029595852, 0.01850879192352295, 0.006802376359701157, -0.0007749073556624353, 0.01782328076660633, 0.021211285144090652, -0.019879812374711037, 0.007217637728899717, 0.008318410255014896, -0.0004869433760177344, 0.0021405734587460756, 0.006453029345721006, -0.00029187765903770924, -0.022555941715836525, -0.01610950380563736, 0.005233611445873976, -0.007810868322849274, 0.027262236922979355, 0.01405297126621008, 0.005302821286022663, -0.006387114990502596, 0.005889460444450378, 0.012187590822577477, 0.007263777777552605, 0.0030831508338451385, -0.0049765445291996, -0.006578267086297274, 0.008680939674377441, -0.003829632420092821, -0.005408284720033407, 0.00573456147685647, -0.018561523407697678, 0.00417238799855113, -0.008568884804844856, 0.02528480254113674, -0.014290263876318932, -0.011778920888900757, 0.01918111927807331, -0.021198103204369545, 0.01522624958306551, 0.0015629975823685527, -0.016307247802615166, -0.005398397333920002, 0.024586107581853867, -0.006100386846810579, 0.012958791106939316, -0.0005301997298374772, 0.0007007535314187407, 0.021474944427609444, -0.003750534961000085, -0.0133938267827034, -0.009577376767992973, 0.027815919369459152, 0.0029809833504259586, -0.011416391469538212, 0.008199763484299183, -0.015450358390808105, -0.0058795735239982605, -0.002092785434797406, 0.025218887254595757, -0.027710456401109695, -0.010183789767324924, -0.01002559531480074, -0.0009293944458477199, 0.012879692949354649, -0.0022147272247821093, -0.02488931454718113, -0.0035165385343134403, 0.027763187885284424, -0.016452258452773094, 0.009010512381792068, -0.012497388757765293, 0.008746854029595852, 0.0004424510698299855, -0.014857128262519836, 0.010322210378944874, 0.0016503343358635902, 0.0023119510151445866, 0.010599051602184772, 0.016188601031899452, 0.0011073636123910546, -0.02117173746228218, 0.00988717470318079, -0.0001589157327543944, 0.019484326243400574, 0.022608673200011253, 0.013907959684729576, 0.01918111927807331, -0.003018883988261223, 0.015265798196196556, 0.0043141040951013565, 0.000583343324251473, -0.011165915988385677, 0.007138540502637625, -0.02597031369805336, 0.004867785610258579, -0.00450196024030447, -0.0032792463898658752, -0.0020367580000311136, -0.0014501189580187201, 0.013683849945664406, -0.007191271986812353, 0.0018044094322249293, 0.019260216504335403, 0.003905434161424637, -0.017322329804301262, -0.0028310278430581093, 0.0045448048040270805, 0.021501310169696808, 0.014435275457799435, 0.002547595417127013, 0.013479514978826046, -0.009603742510080338, -0.013749764300882816, 0.023597391322255135, -0.004735956899821758, 0.01646544225513935, 0.00770540488883853, -0.004218528047204018, 0.00498972786590457, -0.004406384192407131, -0.008568884804844856, -0.008845726028084755, -0.002801366150379181, 0.012326011434197426, -0.009564193896949291, 0.010539728216826916, 0.03316817805171013, 0.024902498349547386, 0.022595491260290146, -0.0081865806132555, -0.011759147047996521, 0.019985277205705643, 0.001411394216120243, 0.014870311133563519, 0.0005334955058060586, 0.0073362840339541435, -0.005253385752439499, 0.004432749934494495, 0.04194798693060875, 0.0064728036522865295, 0.0005248442175798118, 0.015305346809327602, 0.011792103759944439, 0.008654573932290077, 0.006716687697917223, -0.02434881590306759, -0.0036780291702598333, 0.00895778089761734, -0.003648367477580905, -0.011034087277948856, -0.003546199994161725, 0.006271764636039734, 0.031006181612610817, 0.0031078686006367207, 0.011594360694289207, -0.022239552810788155, -0.00412954343482852, 0.0010027242824435234, -0.007257186342030764, 0.011001129634678364, -0.005929009057581425, -0.01575356535613537, -0.013433375395834446, 0.012596260756254196, -0.022885514423251152, -0.006192667409777641, 0.03145439922809601, -0.005774110089987516, 0.004136134870350361, 0.0072440034709870815, -0.013453149236738682, -0.0016190249007195234, 0.001929646939970553, 0.029740622267127037, -0.012385334819555283, -0.000516192929353565, -0.021527675911784172, 0.008628208190202713, 0.010486996732652187, -0.009939906187355518, 0.006146526895463467, -0.028132308274507523, -0.014870311133563519, -0.0029348430689424276, -0.013749764300882816, 0.011528446339070797, 0.01724323257803917, -0.004047150257974863, 0.025798935443162918, -0.02171223610639572, 0.0030749114230275154, -0.0180473905056715, -0.01709822192788124, -0.0016190249007195234, 0.0013191138859838247, 9.47005974012427e-05, -0.00488756038248539, 0.014725299552083015, -0.007843825034797192, -0.02597031369805336, 0.008305227383971214, 0.0013290011556819081, -0.010691331699490547, -0.01124501321464777, -0.016597270965576172, 0.00268107233569026, -0.00887209177017212, 0.005141330882906914, 0.0074615213088691235, -0.014422092586755753, -0.008641391061246395, -0.01605677232146263, 0.008977554738521576, 0.024717938154935837, 0.0019131683511659503, -0.02669537253677845, 0.013894776813685894, -0.01782328076660633, 0.038124945014715195, -0.015555822290480137, -0.013842045329511166, -0.014488006941974163, -0.015990857034921646, 0.022859148681163788, 0.005368736106902361, 0.008786402642726898, 0.001776395714841783, 0.015674468129873276, 0.005866390652954578, -0.015859028324484825, -0.016531355679035187, 0.007270369213074446, 0.0031787266489118338, -0.007408789824694395, 0.013855228200554848, 0.006980345584452152, -0.02810594253242016, 0.000449042534455657, 0.013341094367206097, -0.009458730928599834, 0.007962471805512905, -0.010632009245455265, 0.0018637324683368206, -0.002860689302906394, 0.012299645692110062, 0.031111644580960274, 0.00893800612539053, 0.012912650592625141, -0.0009013807866722345, 0.0003835399984382093, -0.0014212813694030046, 0.005170992575585842, -0.01868017017841339, 0.03182351961731911, -0.00852933619171381, -0.02267458848655224, -0.007764728274196386, -0.024546559900045395, 0.01737506128847599, -0.01380249671638012, -0.015028505586087704, -0.03678029030561447, 0.009768528863787651, 0.020960811525583267, 0.01400023978203535, -0.026761287823319435, 0.012681949883699417, 0.008476604707539082, -0.01077042892575264, -0.024783851578831673, -0.01364430133253336, 0.0009277465869672596, -0.016584089025855064, 0.02167268842458725, -0.003355048131197691, -0.00881936028599739, 0.01249079778790474, 0.007217637728899717, 0.0016280881827697158, -0.02950333058834076, -0.007145131938159466, 0.012754456140100956, 0.01165368314832449, -0.014698933809995651, -1.409694868925726e-05, 0.0076922220177948475, 0.011159325018525124, -0.00807452667504549, -0.0008766628452576697, -0.007079217117279768, -0.037439435720443726, -0.005612619686871767, -0.00278323981910944, -0.027789553627371788, 0.014936225488781929, -0.004165796563029289, -0.022318650037050247, -0.0024882722645998, -0.009834443219006062, 0.005543409381061792, -0.022780051454901695, 0.012233731336891651, -7.38963353796862e-05, 0.000635250995401293, 0.0026464671827852726, 0.00968283973634243, 0.010651783086359501, 0.0006171244895085692, -0.010605642572045326, 0.0038955470081418753, 0.002847506431862712, 0.0009977807058021426, 0.010058552958071232, -0.014857128262519836, -0.0035429042764008045, -0.030874351039528847, 0.004350356757640839, -0.0030617285519838333, -0.021923162043094635, 0.022054990753531456, 0.01029584463685751, 0.013538838364183903, 0.008351366966962814, 0.008179989643394947, -0.013828862458467484, -0.019655704498291016, 0.008417281322181225, 0.010236522182822227, 0.006828742101788521, -0.005184175446629524, 0.013842045329511166, 0.009735571220517159, -0.015120786614716053, 0.010348576121032238, 0.0026398757472634315, 0.0010167311411350965, 0.006634294521063566, -0.013426783494651318, 0.017862830311059952, 0.003007349092513323, -0.013736581429839134, -0.016531355679035187, -0.008041569031774998, 0.010440857149660587, 0.002789831254631281, -0.007421972695738077, -0.0012087071081623435, 0.007079217117279768, -0.009577376767992973, -0.007059442810714245, 0.004267964046448469, 0.0026975509244948626, 0.006960571277886629, -0.015819480642676353, 0.005606028251349926, -0.00902369525283575, 0.02900237962603569, -0.01687411218881607, 0.010493588633835316, -0.0033402172848582268, 0.027394065633416176, 0.014092519879341125, -0.02881781943142414, 0.0017615649849176407, 0.0018357188673689961, 0.012655584141612053, 0.0036220017354935408, -0.0010447448585182428, -0.01173937227576971, 0.007771319709718227, 0.00893800612539053, -0.024190621450543404, -0.006687026005238295, -0.01705867238342762, -0.014672568067908287, -0.028343234211206436, 0.005203949753195047, 0.0018439581617712975, -0.0025228774175047874, 0.02624715305864811, -0.009340085089206696, 0.01106045302003622, -0.013024705462157726, 0.01065837498754263, -0.014646202325820923, 0.014171617105603218, 0.018429694697260857, 0.013116985559463501, 0.02403242699801922, 0.006139935459941626, 0.0009417533874511719, 0.0018110008677467704, -0.027130408212542534, 0.005085303448140621, 0.024401547387242317, 0.012326011434197426, 0.0006661484367214143, -0.006255285814404488, 0.0001847665844252333, -0.0054478333331644535, -0.00412954343482852, 0.006601337343454361, 0.004969953093677759, -0.004871081560850143, 0.0015185052761808038, 0.018258316442370415, -0.0002863161207642406, 0.016860928386449814, 0.013064254075288773, 0.006921022664755583, -0.0019527170807123184, 0.006756236311048269, -0.030109742656350136, -0.012583077885210514, -0.004040558822453022, -0.018021024763584137, 0.006650772877037525, 0.005187470931559801, -0.008977554738521576, 0.004956770222634077, -0.009913540445268154, 0.010796794667840004, 0.012378742918372154, -0.017045490443706512, -0.013736581429839134, -0.015489907003939152, 0.023452378809452057, -0.01284673623740673, 0.0015160335460677743, -0.00682215066626668, 0.013334503397345543, 0.0006228919955901802, -0.0006385467131622136, 0.020301666110754013, 0.01345974113792181, -0.007125357631593943, 4.668085603043437e-05, 0.004689816851168871, -0.0057642231695353985, 0.009847626090049744, 0.014962591230869293, 0.0009532884578220546, 0.001789578702300787, -0.004996319301426411, 0.0003958989691454917, -0.010447448119521141, -0.02479703538119793, 0.017941927537322044, -0.021844064816832542, -0.02140902914106846, 0.0013495993334800005, 0.03121710754930973, 0.005032571963965893, 0.020868530496954918, -0.019787533208727837, 0.021725419908761978, 0.01746734231710434, 0.01700594089925289, 0.024849766865372658, -0.024137889966368675, 0.014395726844668388, 0.027974113821983337, 0.01741461083292961, 0.003701099194586277, -0.004933700431138277, 0.003944982774555683, 0.0019395342096686363, 0.012906058691442013, -0.00624539889395237, 0.005751040298491716, -0.014514372684061527, -0.020973993465304375, -0.015819480642676353, 0.01031561940908432, 0.0007864423678256571, 0.01405297126621008, 0.012405108660459518, 0.002353147603571415, -0.003135882318019867, 0.030557962134480476, -0.005925713572651148, 0.037386704236269, -0.00046840490540489554, 0.019128387793898582, -0.001000252552330494, -0.006153118330985308, 0.017717817798256874, 0.0003310143656563014, 0.02379513531923294, 0.01575356535613537, -0.0009079722221940756, 0.0029941662214696407, 0.02981971949338913, -0.006776010617613792, 0.005767518654465675, -0.00688806502148509, 0.0007394782733172178, -0.007283552084118128, -0.01208212785422802, -0.018205584958195686, 0.015727199614048004, 0.004264668095856905, -0.017981475219130516, -0.016821380704641342, -0.0026909594889730215, 0.005701604299247265, -0.03227173909544945, -0.003859293879941106, -0.020578507333993912, 0.01099453866481781, -0.01936567947268486, 0.005184175446629524, 0.007514252793043852, 0.013855228200554848, 0.013855228200554848, 0.010335393249988556, 0.016004040837287903, -0.013275180011987686, -0.0001673610386205837, -0.0266030915081501, -0.012471023015677929, 0.015318529680371284, 0.00839091558009386, 0.007626307662576437, -0.011218647472560406, 0.010341985151171684, 0.0018703239038586617, -0.010427674278616905, -0.023426013067364693, -0.014488006941974163, 0.014013422653079033, -0.011706415563821793, 0.0022740501444786787, 0.01570083387196064, -0.006166301667690277, -0.02773682214319706, -0.00798883754760027, -0.023017343133687973, -0.006146526895463467, 0.013229040428996086, 0.029266037046909332, 0.0016519821947440505, 0.0005829313304275274, -0.0035890445578843355, -0.02275368571281433, 0.006116865668445826, 0.0056554642505943775, -0.012095310725271702, 0.00020042127289343625, 0.006802376359701157, -0.008114075288176537, 0.008852316997945309, 0.024638840928673744, 0.00191152049228549, 0.01719050109386444, -0.0018390145851299167, -0.018719717860221863, -0.00040125451050698757, -0.023966511711478233, -0.003875772701576352, -0.012932424433529377, -0.023584207519888878, 0.004017488565295935, -0.01337405201047659, 0.008964371867477894, -0.011396616697311401, 0.006687026005238295, -0.0003503767657093704, -0.005009502172470093, 0.0007946816622279584, 0.012312828563153744, -0.019352497532963753, -0.0253902655094862, 0.018482426181435585, 0.020802617073059082, 0.010974763892591, -0.026181239634752274, -0.0002486212470103055, -0.0030320670921355486, 0.03182351961731911, 0.009043469093739986, -0.014250715263187885, -0.0036978034768253565, -0.009260986931622028, -0.001031561871059239, 0.009966271929442883, -0.008305227383971214, 0.007052851375192404, 0.003921912517398596, 0.0016437427839264274, -0.006176188588142395, -0.012293053790926933, -0.0248365830630064, 0.0016091377474367619, 0.002868928713724017, -0.011212056502699852, 0.013453149236738682, 0.014619835652410984, -0.017427794635295868, 0.022186821326613426, 0.0037109863478690386, 0.0011279619066044688, -0.008179989643394947, -0.01868017017841339, -0.011541629210114479, 0.0012466079788282514, -0.014395726844668388, -0.016992758959531784, -0.013723398558795452, 0.03337910398840904, 0.01914157159626484, 0.001571236876770854, -0.019919361919164658, -0.022054990753531456, 0.00968283973634243, 0.009359858930110931, 0.017862830311059952, 0.020341213792562485, -0.0015407514292746782, 0.007494478486478329, -0.006934205535799265, 0.012049170210957527, 0.016992758959531784, 0.005134739447385073, -0.0070067113265395164, 0.0025690176989883184, 0.008252494968473911, -0.01427708100527525, 0.02013028785586357, -0.025891214609146118, 0.003277598414570093, -4.8302968934876844e-05, -0.008931415155529976, -0.010276070795953274, -0.010473813861608505, 0.0008350543212145567, -0.020143471658229828, 0.022292284294962883, 0.0063277920708060265, -0.0013891480630263686, 0.00443604588508606, 0.006835333537310362, 0.010796794667840004, 0.023109624162316322, -0.009399407543241978, 0.008245903998613358, 0.015094420872628689, -0.004162500612437725, -0.005596140865236521, 0.010131058283150196, -0.027710456401109695, -0.021593589335680008, 0.003277598414570093, -0.004267964046448469, 0.018561523407697678, 0.01601722277700901, 1.8924671167042106e-05, -0.0037604221142828465, 0.02448064461350441, 0.0015827718889340758, 0.014646202325820923, 0.009827852249145508, -0.022015443071722984, -0.019431594759225845, -0.008470012806355953, -0.0006245399126783013, -0.008806177414953709, -0.00934667605906725, 0.0017286078073084354, -0.0024800330866128206, -0.015898577868938446, 0.024177437648177147, 0.017295964062213898, 0.00478539289906621, -0.00957078579813242, -0.008951188996434212, 0.007059442810714245, 0.022872330620884895, 0.013275180011987686, 0.005016093607991934, 0.02316235564649105, -0.012471023015677929, -0.00881936028599739, -0.0018077051499858499, 0.0003672673483379185, -0.006416776683181524, 0.011020904406905174, 0.01891746185719967, -0.026589909568428993, -0.011350477114319801, 0.003027123399078846, -0.004126247484236956, -0.0024717936757951975, 0.0141847999766469, -0.002481680829077959, 0.002283937530592084, 0.013202674686908722, 0.003252880647778511, -0.013960691168904305, -0.012701723724603653, -0.022819599136710167, -0.006509056780487299, 0.011225239373743534, 0.017309147864580154, 0.013314728625118732, 0.0133938267827034, 0.010447448119521141, 0.003457215614616871, -0.005256681237369776, -0.01651817373931408, 0.012563304044306278, 0.012220548465847969, 0.008615025319159031, 0.01873290166258812, 0.014988956972956657, -0.012378742918372154, -0.0013100507203489542, 0.003490172792226076, 0.008166806772351265, 0.006828742101788521, -0.023768767714500427, -0.00015510505181737244, 0.004811758641153574, -0.0019527170807123184, -0.018258316442370415, -0.0026777766179293394, 0.0018044094322249293, -0.008647982031106949, 0.0012556712608784437, 0.016676368191838264, 0.01206235308200121, 0.0007674919324927032, 0.005849911831319332, 0.01823195070028305, 0.011996438726782799, 0.007164906244724989, -0.004340469837188721, -0.01181187853217125, 0.023861048743128777, -0.010414491407573223, -0.0032215712126344442, 0.01886473037302494, 0.015872212126851082, 0.0084634218364954, 0.01986663043498993, 0.00039569297223351896, -0.018930643796920776, 0.002911773044615984, -0.009999229572713375, -0.014316629618406296, -0.018719717860221863, 0.00902369525283575, 0.006403593812137842, -0.010546320118010044, -0.00922803021967411, 0.01133729424327612, -0.014316629618406296, -0.006561788264662027, -0.0055565922521054745, -0.009781711734831333, -0.003681324888020754, -0.004010897129774094, 0.003809858113527298, 0.0011559755075722933, 0.013084027916193008, 0.01711140386760235, -0.027314968407154083, -0.012503980658948421, 0.009135750122368336, -0.0077910940162837505, -0.024493828415870667, -0.019985277205705643, -0.008489787578582764, -0.013248814269900322, -0.00017436445341445506, -0.016544539481401443, 0.0016956505132839084, 0.0063409749418497086, -0.0010340337175875902, -0.012774229981005192, 0.0016387992072850466, -0.022819599136710167, -0.013907959684729576, -0.02755226008594036, 0.01796829327940941, 0.008970963768661022, -0.03886318951845169, 0.003290781518444419, 0.012279870919883251, 0.0028310278430581093, 0.015990857034921646, -0.008931415155529976, -0.012431474402546883, 0.022687770426273346, 0.0014913155464455485, 0.0058729820884764194, -0.02040712907910347, 0.007613124791532755, -0.006268469151109457, 0.004165796563029289, -0.010447448119521141, 0.015081238001585007, 0.002092785434797406, -0.025139790028333664, -0.023281000554561615, 0.011541629210114479, 0.0054544247686862946, -0.020973993465304375, -0.007369241211563349, 0.012161225080490112, 0.0019016333390027285, 0.01210190262645483, -0.02031484805047512, -0.015213066712021828, -0.0035494957119226456, 0.017955109477043152, -0.00314412172883749, 0.011541629210114479, 0.032509032636880875, -0.0026777766179293394, -0.0033187950029969215, 0.022793233394622803, -0.0013413600390776992, 2.5387382265762426e-05, 0.03401188179850578, -0.014013422653079033, 0.0015036745462566614, -0.002359739039093256, -0.016992758959531784, 0.010493588633835316, 0.008984146639704704, 0.0027206209488213062, -0.005322596058249474, -0.012774229981005192, -0.01318949181586504, 0.017137769609689713, -0.007942697033286095, 0.02329418435692787, 0.00798883754760027, -0.0034868770744651556, -0.021422212943434715, 0.000278900726698339, -0.004630493465811014, -0.008470012806355953, -0.017770549282431602, -0.012444657273590565, -0.006169597152620554, 0.004080107435584068, -0.013215857557952404, -0.005365440156310797, 0.023017343133687973, -0.0016050180420279503, -0.006545309908688068, 0.00631131324917078, 0.043635398149490356, -0.011350477114319801, -0.02249002642929554, -0.0014476472279056907, 0.024216987192630768, 0.005948783829808235, -0.008806177414953709, 0.004620606545358896, 0.027446797117590904, -0.007079217117279768, 0.015252615325152874, 0.01316971704363823, -0.002938138786703348, -0.030874351039528847, 0.002776648383587599, -0.005467607639729977, -0.021699054166674614, 0.015265798196196556, -0.006835333537310362, -0.02193634584546089, -0.0031177557539194822, -0.028712356463074684, -0.016030406579375267, -0.0059949238784611225, -0.008766628801822662, 0.005210541188716888, 0.005177584011107683, 0.007098991423845291, -0.012616035528481007, -0.010546320118010044, 0.007276960648596287, 0.019115205854177475, 0.04062969610095024, 0.015503090806305408, 0.02276686765253544, -0.007283552084118128, 0.009313718415796757, -0.025126608088612556, -0.01015742402523756, -0.017032306641340256, -0.010078326798975468, -0.0035165385343134403, 0.006179484538733959, -0.0016602214891463518, 0.011047270148992538, 0.01972161792218685, -0.00729673495516181, 0.0012647344265133142, 0.007039668504148722, -0.023426013067364693, -0.005131443962454796, 0.015634918585419655, 0.010150833055377007, 0.004323991015553474, -0.008720488287508488, -0.013512472622096539, 0.0022048400714993477, 0.012523755431175232, -0.0006002339068800211, -0.0033781181555241346, 0.008641391061246395, -0.00345062417909503, 0.017493708059191704, 0.01411888562142849, -0.031243473291397095, 0.030030645430088043, 0.0036022274289280176, 0.015766749158501625, -0.0009129157988354564, 0.004541508853435516, 0.009247804060578346, -0.0005957022658549249, -0.019892996177077293, -0.0033319778740406036, -0.012187590822577477, 0.0008568884804844856, -0.006835333537310362, 0.0027848875615745783, 0.008641391061246395, -0.00023626229085493833, -0.011100001633167267, -0.0004754083347506821, -0.0109286243095994, -0.004943587351590395, -0.016254516318440437, 0.006400297861546278, -0.011040679179131985, 0.00957078579813242, 0.006663955748081207, -0.01579311490058899, -0.015621736645698547, -0.009689431637525558, -0.014382543973624706, -0.005573071073740721, 0.0026201014406979084, 0.021909980103373528, -0.00947850476950407, 0.016636820510029793, -0.009465321898460388, 0.010038778185844421, 0.0014072746271267533, -0.007652673404663801, 0.0141847999766469, 0.001321585732512176, 0.007204454857856035, -0.015015322715044022, -0.0073362840339541435, -0.016030406579375267, -0.03134893625974655, -0.011396616697311401, -0.016597270965576172, 0.0033204429782927036, -0.01393432542681694, 0.01004537008702755, -0.004225119482725859, -0.007665856275707483, 0.011818469502031803, 0.001347127603366971, 0.0064662122167646885, -0.0008700714097358286, 0.0064596207812428474, -0.0038395195733755827, -0.031691692769527435, -0.008582067675888538, 0.014488006941974163, 0.03132256865501404, 0.01955024152994156, -0.005184175446629524, -0.013413600623607635, -0.00893800612539053, 0.01031561940908432, 0.002867280738428235, 0.015621736645698547, 0.005335778929293156, 0.00439979275688529, -0.02433563396334648, 0.0038922512903809547, -0.014461641199886799, 0.0030617285519838333, -0.015344895422458649, -0.004050446208566427, 0.009050060994923115, -0.0013067550025880337, 0.018627436831593513, -0.013209265656769276, 0.004600832238793373, 0.025996679440140724, 0.004871081560850143, 0.007534027099609375, 0.009735571220517159, 0.01683456264436245, -0.0003040306328330189, -0.014672568067908287, 0.02312280610203743, 0.023742401972413063, -0.0076988134533166885, 0.0062124417163431644, 0.015964491292834282, 0.007771319709718227, 0.009359858930110931, 0.0028244364075362682, 0.022226369008421898, 0.010882483795285225, -0.027842285111546516, 0.005892756395041943, 0.014395726844668388, 0.010190381668508053, -0.007356058340519667, -0.001628912054002285, -0.002033462282270193, 0.006199258845299482, -0.0013001635670661926, -0.013176308944821358, 0.029081476852297783, 0.007738362066447735, -0.007936106063425541, 0.024190621450543404, 0.003931799903512001, -0.02140902914106846, 0.0004914749879390001, 0.023689670488238335, 0.007652673404663801, -0.012583077885210514, 0.002033462282270193, -0.012042579241096973, 0.010632009245455265, -0.008621616289019585, 0.009939906187355518, 0.002213079249486327, 0.021844064816832542, -0.010104692541062832, 0.029740622267127037, 0.009518053382635117, -0.006914431229233742, 0.00041505537228658795, 0.015397626906633377, 0.01791556179523468, -0.014540738426148891, -0.007606533356010914, 0.004057037644088268, -0.007949288934469223, 0.009168706834316254, -0.006522239651530981, -0.0044459328055381775, -0.0010019004112109542, 0.004574466496706009, 0.0014138660626485944, 0.012629218399524689, -0.007382424082607031, 0.011508671566843987, -0.01051995437592268, -0.0013438318856060505, -0.0002558306441642344, 0.018166035413742065, 0.03741307184100151, -0.0012606148375198245, -0.01011128444224596, 0.0025096945464611053, 0.003238049801439047, 0.001506970264017582, -0.013347686268389225, 0.023781951516866684, 0.007520844228565693, 0.012589669786393642, 0.005170992575585842, -0.016412710770964622, -0.0215804073959589, 0.01614905335009098, -0.004950178787112236, -0.02226591855287552, -0.03841497004032135, 0.01459346991032362, 0.015503090806305408, -0.0031655437778681517, -0.009946498088538647, 0.020328031852841377], "35615553-1e95-4ed8-8173-ccebfd5ebbdb": [-0.018010228872299194, -0.003599095856770873, -0.006125100422650576, 0.016476187855005264, 0.00032589148031547666, -0.0406520813703537, 0.016461437568068504, 0.0003724474227055907, -0.00010186989675275981, 0.026845714077353477, 0.01461763959378004, 0.02653595618903637, -0.014366882853209972, -0.011910942383110523, 0.00015706862905062735, 0.02923527918756008, -0.02638845331966877, 0.004712750669568777, 0.0012205949751660228, -0.01312047429382801, 0.07546301186084747, -0.02157982438802719, -0.033335886895656586, 0.01678594760596752, -0.009137867949903011, -0.017346462234854698, 0.00039042445132508874, 0.0005743434303440154, -0.04189111664891243, -0.011129171587526798, 0.029943296685814857, 0.0016953733284026384, 0.017700470983982086, -0.022936860099434853, 0.003178709652274847, -0.06153864040970802, 0.001234423485584557, 0.005011445842683315, 0.005188450682908297, 0.006158289033919573, -0.019677024334669113, 0.03295237571001053, 0.010782537050545216, -0.014477510936558247, -0.04298264533281326, 0.0002472995547577739, -0.011261925101280212, -0.022907359525561333, 0.00775870680809021, -0.05062334984540939, 0.027347227558493614, 0.015959925949573517, 0.0008707341039553285, 0.019618023186922073, 0.03879353404045105, -0.03451592102646828, -0.001628074562177062, 0.09469752013683319, 0.016372935846447945, -0.0525703988969326, -0.021181564778089523, -0.01241983100771904, 0.03283437341451645, -1.5470626749447547e-05, 0.021078310906887054, 0.005605149082839489, -0.0021646202076226473, 0.019131259992718697, -0.017685720697045326, 0.025119919329881668, 0.025193670764565468, 0.028792766854166985, -0.04295314475893974, 0.03245086595416069, -0.013872744515538216, -0.006434858776628971, 0.034722425043582916, 0.0012528614606708288, 0.023571128025650978, 0.007161315530538559, -0.022686103358864784, -0.004716438241302967, 0.04383816570043564, 0.02194858528673649, 0.04174361005425453, 0.03734799474477768, -0.03613846376538277, -0.05221639201045036, -0.024205394089221954, -0.018305238336324692, 0.023821884766221046, 0.03560744971036911, -0.007120752241462469, 0.0030680818017572165, -0.005715777166187763, 0.034869927912950516, 0.013592487201094627, -0.005734215024858713, 0.02475115843117237, -0.03389640152454376, 0.02007528394460678, 0.009462377056479454, -0.006445921491831541, 0.016210680827498436, -0.0009274309268221259, -0.026727711781859398, 0.0016538877971470356, 0.0262851994484663, -0.025650933384895325, -0.0043476782739162445, 0.008872360922396183, -0.03298188000917435, 0.0066008009016513824, -0.027214474976062775, -0.03982606157660484, -0.019013255834579468, -0.036344967782497406, -0.01678594760596752, -0.012006820179522038, -0.015458411537110806, 0.026639210060238838, -0.01460288930684328, 0.028778016567230225, -0.007187128998339176, -0.010472779162228107, 0.017656220123171806, -0.004834441468119621, 0.006722491700202227, 0.029854794964194298, 0.028188001364469528, -0.016166429966688156, -0.0059702214784920216, 0.01570916920900345, -0.004001044202595949, -0.005719464737921953, -0.0008688903180882335, 0.011807689443230629, 0.06714379042387009, -0.028276503086090088, 0.04283514246344566, -0.036226965487003326, -0.05082985386252403, -0.042599134147167206, -0.004878692328929901, 0.024205394089221954, 0.00466112419962883, -0.05740853026509285, 0.0399145632982254, -0.02804049663245678, 0.040888089686632156, -0.06690777838230133, -0.007920960895717144, 0.0005701948539353907, 0.0014252567198127508, 8.406571578234434e-05, -0.029014023020863533, 0.007024874445050955, 0.03843952342867851, -0.008274970576167107, 0.030297307297587395, -0.012205949984490871, -0.05755603313446045, 0.005144199356436729, -0.007091251201927662, 0.04165510833263397, 0.025488678365945816, 0.07150990515947342, 0.03271637111902237, -0.025208421051502228, 0.0169777013361454, 0.021978085860610008, -0.011284050531685352, 0.03088732250034809, 0.016151679679751396, -0.0031326147727668285, -0.017788974568247795, 0.044133175164461136, 0.06319068372249603, 0.030076051130890846, -0.03268687054514885, -0.03253936767578125, -0.0186149962246418, 0.012065821327269077, 0.006416420917958021, 0.00574159063398838, 0.02017853781580925, 0.015458411537110806, 0.021152064204216003, -0.005435519851744175, 0.013275353237986565, -0.023748133331537247, -0.008341346867382526, -0.025178920477628708, 0.03121183067560196, -0.010347400791943073, -0.0366399772465229, -0.015097026713192463, -0.002203339943662286, 0.009809011593461037, 0.03130033239722252, -0.028571510687470436, -0.033365387469530106, -0.02961878851056099, 0.059680089354515076, -0.03451592102646828, 0.03221485763788223, -0.031270831823349, -0.020827554166316986, 0.024411899968981743, 6.199774361448362e-05, 0.045549213886260986, -0.027612734586000443, -0.015886172652244568, 0.0010113237658515573, 0.0009569317335262895, 0.003993669059127569, -0.03714149072766304, 0.007260880898684263, -0.0198835302144289, 0.005328579340130091, -0.015945173799991608, -0.005376518238335848, 0.009484502486884594, -0.005453957710415125, -0.05788054317235947, -0.003971543163061142, -0.036374468356370926, 0.03386690095067024, -0.01721370778977871, 0.023851385340094566, 0.03442741557955742, 0.005369143094867468, 0.0031989915296435356, -0.031919851899147034, 0.0011219517327845097, 0.033335886895656586, 0.04218612238764763, 0.011844565160572529, -0.023969387635588646, -0.007714455481618643, 0.006272604689002037, 0.015251906588673592, -0.023703880608081818, 0.00024269006098620594, -0.010111394338309765, 0.01706620492041111, -0.016004176810383797, 0.04979732632637024, -0.0017193426610901952, 0.013946495950222015, 0.00576002849265933, 0.02171257883310318, 0.005689964164048433, 0.0004918334307149053, -0.010214647278189659, 0.05903107300400734, 0.0373774953186512, -0.02470690757036209, -0.015281407162547112, -0.0155616644769907, 0.03250986710190773, -0.005446582566946745, -0.008112716488540173, 0.011092294938862324, 0.022037087008357048, -0.03557794913649559, 0.02489866316318512, -0.026963718235492706, 0.026742462068796158, 0.03404390811920166, 0.02333512157201767, 0.004410367459058762, 0.013356480747461319, 0.022863108664751053, 0.009860637597739697, -0.026816213503479958, 0.01845274120569229, 0.015974676236510277, 0.03100532479584217, 0.007957836613059044, 0.0015073057729750872, -0.006132476031780243, 0.01087103970348835, -0.0027398853562772274, 0.05115436390042305, -0.0067741177044808865, -0.016240183264017105, -0.003606471000239253, -0.04525420442223549, -0.0024282834492623806, 0.014507011510431767, 0.0007642547134310007, 0.02804049663245678, 0.010111394338309765, 0.0007453557918779552, 0.012213325127959251, -0.004823378287255764, -0.031654343008995056, -0.01687444932758808, 0.012751714326441288, 0.004155923146754503, -0.025975441560149193, 0.014307880774140358, -0.029972799122333527, 0.04543121159076691, -0.015340408310294151, 0.024234894663095474, 0.0030164553318172693, -0.015502662397921085, 0.03602045774459839, 0.04174361005425453, -0.014366882853209972, -0.0033354326151311398, -0.016210680827498436, 0.0011090451152995229, -0.009005114436149597, -0.027420980855822563, -0.017729971557855606, 0.0020171161741018295, -0.03835102170705795, 0.025931190699338913, 0.0013810055097565055, -0.09363549202680588, 0.026712961494922638, 0.050269339233636856, -0.053602926433086395, 0.016358185559511185, 0.004875004757195711, -0.020768553018569946, -0.0037226304411888123, -0.0343979150056839, -0.01160855870693922, -0.039619553834199905, 0.0074636987410485744, -0.02655070647597313, -0.06271866708993912, -0.06038810685276985, -0.025636183097958565, 0.031831346452236176, -0.013850619085133076, 0.009927014820277691, 0.01854124292731285, 0.002625569934025407, -0.011815064586699009, 0.02811424806714058, -0.006043973378837109, -0.003894103690981865, 0.008193843066692352, -0.02146182209253311, -0.005712089594453573, 0.0009818230755627155, -0.016063177958130836, 0.025916440412402153, -0.008053714409470558, 0.029825294390320778, 0.0029058274812996387, 0.006346356589347124, -0.010708785615861416, 0.01842324063181877, 0.013437608256936073, -0.02022278867661953, -0.024397149682044983, -0.007943086326122284, 0.006482797674834728, -0.01396124716848135, 0.03250986710190773, -0.009713133797049522, -0.01572391949594021, 0.0004623326240107417, -0.0034442166797816753, -0.025886939838528633, 0.0058079673908650875, 0.00848147552460432, -0.006799931172281504, -0.0217420794069767, -0.04672924429178238, 0.048853300511837006, 0.011210298165678978, -0.01694820076227188, 0.014743017964065075, 0.0042702388018369675, 0.004786502569913864, 0.011947818100452423, 0.04313014820218086, 0.05283590778708458, 0.0005890938336960971, 0.02655070647597313, -0.002876326674595475, -0.03548944368958473, -0.00862898025661707, -0.04814528301358223, -0.00780295766890049, -0.008201218210160732, 0.02013428695499897, -0.045903220772743225, 0.001982084009796381, -0.020429294556379318, -0.0066782403737306595, 0.03604995831847191, -0.01565016619861126, -0.011446304619312286, -0.004959819372743368, -0.01870349794626236, 0.004716438241302967, 0.017965978011488914, -0.042628634721040726, -0.0034220912493765354, -0.02296636253595352, 0.022125588729977608, -0.025842688977718353, -0.01557641476392746, 0.003586189355701208, 0.028483008965849876, 0.03460442274808884, 0.03307038173079491, 0.02960403822362423, -0.0008868673467077315, 0.028822267428040504, -0.022332094609737396, -0.03088732250034809, 0.022892609238624573, 0.03209685534238815, -0.01688919961452484, 0.00578584149479866, 0.014322631061077118, 0.027155473828315735, -0.030385809019207954, 0.011357802897691727, 0.0007794660632498562, 0.012235450558364391, -0.009897513315081596, 0.05121336504817009, -0.010745661333203316, -0.0342504121363163, 0.019072256982326508, -0.01722845807671547, 0.030120301991701126, -0.004417742602527142, 0.009226370602846146, 0.025901690125465393, -0.016328684985637665, 0.003468186128884554, -0.007187128998339176, -0.00234346860088408, -0.03749549761414528, -0.0528654083609581, -0.04652274027466774, 0.006047660950571299, 0.007102313917130232, 0.011114421300590038, 0.008953488431870937, 0.0343979150056839, -0.06212865561246872, 0.014101375825703144, -0.008304471150040627, 0.00578952906653285, -0.011379928328096867, 0.005726839881390333, 0.03218535706400871, -0.043956171721220016, -0.06897283345460892, 0.003905166406184435, 0.027435731142759323, 0.01842324063181877, 0.02007528394460678, -0.030297307297587395, 0.0027085409965366125, 0.013511359691619873, 0.0021775267086923122, 0.03082832135260105, -0.024175893515348434, -0.004144860431551933, -0.0017654376570135355, 0.02802574634552002, -0.0034294663928449154, -0.012301827780902386, -0.00939599983394146, 0.00037959215114824474, 0.0058079673908650875, -0.028689514845609665, -0.002964828861877322, -0.0019230825128033757, 0.003824039362370968, 0.008680606260895729, 0.022155089303851128, 0.006888433359563351, -0.024338148534297943, -0.021225815638899803, 0.050269339233636856, -0.016638442873954773, 0.03761349990963936, 0.0059001571498811245, 0.018260985612869263, -0.007972586899995804, -0.01994253136217594, -0.04200911894440651, -0.00288554560393095, -0.050593845546245575, -0.03849852457642555, -0.025621432811021805, 0.022376345470547676, 0.0005416159983724356, -0.003468186128884554, 0.016092678532004356, -0.0044288053177297115, 0.030415309593081474, -0.019234512001276016, 0.03531244024634361, -0.025252671912312508, -0.0001953274622792378, -0.034751925617456436, -0.0029924858827143908, -0.0037650377489626408, 0.009742634370923042, 0.0168301984667778, 0.03672847896814346, -0.013644113205373287, 0.005538772325962782, 0.02947128564119339, 0.0093812495470047, -0.01566491648554802, -0.018201984465122223, -0.021093061193823814, -0.006449609063565731, -0.03596145659685135, -0.006962185259908438, -0.009705758653581142, -0.02016378752887249, 0.03374889865517616, -0.023939887061715126, -0.01681544817984104, 0.018039731308817863, 0.004904505796730518, 0.027184974402189255, 0.020576797425746918, 0.014145626686513424, -0.0011542182182893157, 0.016446687281131744, 0.012663212604820728, 0.010155645199120045, -0.06018160283565521, 0.022700853645801544, -0.009580380283296108, -0.017464464530348778, 0.007013811729848385, 0.03528293967247009, 0.0031584277749061584, 0.011328301392495632, -0.006855245213955641, 0.0402095690369606, -0.027361977845430374, -0.0016087146941572428, -0.003945730160921812, 0.0033594020642340183, 0.010347400791943073, -0.01562066562473774, 0.02483966201543808, -0.02312861569225788, -0.028910769149661064, -0.0037613501772284508, -0.00931487325578928, 0.01460288930684328, -0.00620622793212533, -0.006272604689002037, -0.009772134944796562, -0.013666238635778427, -0.023880885913968086, 0.02004578337073326, -0.005369143094867468, 0.041094593703746796, 0.02652120590209961, 0.01469876617193222, 0.04177311062812805, 0.01858549565076828, -0.008739607408642769, 0.013857994228601456, -0.008798609487712383, 0.0031307709868997335, -0.03259836882352829, -0.014912647195160389, 0.030651316046714783, -0.025798436254262924, -0.013415481895208359, -0.004871317185461521, -0.011313551105558872, 0.022037087008357048, -0.03513543680310249, -0.016181180253624916, -0.009137867949903011, 0.02781924046576023, -0.008370848372578621, 0.030385809019207954, -0.020916057750582695, 0.022287843748927116, -0.009823761880397797, 0.028379755094647408, 0.016181180253624916, 0.0343979150056839, 0.030326807871460915, 0.024013640359044075, 0.011697061359882355, 0.002059523481875658, 0.014462759718298912, 0.0051405117847025394, -0.02950078621506691, 0.03666947782039642, -0.01837898977100849, 0.01831998862326145, -0.014595513232052326, 0.018113482743501663, -0.00466112419962883, -0.024234894663095474, 0.01873299852013588, 0.00775870680809021, 0.031713344156742096, 0.002256810199469328, 0.013570361770689487, 0.026004942134022713, 0.001770047121681273, 0.002682727761566639, 0.019765526056289673, -0.0397670604288578, 0.03386690095067024, -0.028866518288850784, 0.014285755343735218, 0.034869927912950516, -0.033306386321783066, 0.0016861542826518416, -0.011888816952705383, 0.012530459091067314, -0.0115790581330657, -0.01705145463347435, 0.010989042930305004, -0.010819412767887115, 0.0009320404496975243, 0.0034423728939145803, 0.0016197775257751346, 0.025444427505135536, -0.005664150696247816, -0.023807134479284286, 0.009115742519497871, 0.0007513481541536748, 0.0125083327293396, 0.06696678698062897, -0.015207654796540737, 0.016726944595575333, -0.014942147769033909, 0.018216734752058983, 0.04829278588294983, 0.01998678222298622, -0.007581701967865229, 0.00783245824277401, 0.016166429966688156, 0.01864449679851532, 0.005505584180355072, -0.01699245162308216, -0.022317344322800636, 0.004152235575020313, 0.022877858951687813, 0.018939504399895668, 0.03215585649013519, -0.013208976946771145, 0.03374889865517616, 0.02025228925049305, 0.024456150829792023, 0.00465006148442626, 0.03902953863143921, 0.018983755260705948, 0.0341029092669487, 0.012353453785181046, 0.0022217778023332357, -0.008326596580445766, 0.004085858818143606, 0.001983927795663476, 0.012110072188079357, -0.00464637391269207, -0.0027140723541378975, 0.008916612714529037, 0.012641086243093014, -0.012161699123680592, -0.017656220123171806, -0.0343979150056839, -0.015119153074920177, 0.02330562099814415, 0.009632006287574768, 0.0007379805902019143, -0.0007531919400207698, 0.048882801085710526, -0.04047507792711258, -0.015915673226118088, 0.011261925101280212, 0.016018927097320557, -0.017892226576805115, 0.030356308445334435, -0.0012731433380395174, 0.0025149420835077763, 0.003879353404045105, -0.019190261140465736, 0.02165357582271099, -0.015251906588673592, -0.03392590209841728, -0.02491341345012188, 0.001654809690080583, -0.009875387884676456, 0.017951227724552155, 0.019839277490973473, -0.022877858951687813, -0.014344757422804832, -0.008319221436977386, 0.013887494802474976, -0.007884085178375244, -0.016476187855005264, -0.005590398795902729, 0.005571960937231779, 0.005162637680768967, 0.013894869945943356, -0.010819412767887115, 0.017611969262361526, 0.018069231882691383, 0.0376725047826767, -0.010826787911355495, 0.03551894426345825, -0.012596835382282734, -0.042717136442661285, -0.003744755871593952, 0.025695184245705605, -0.004155923146754503, 0.02457415498793125, -0.017538217827677727, -0.001406818744726479, 0.04773227125406265, -0.011372553184628487, -0.006951122544705868, 0.010561280883848667, -0.017375962808728218, -0.016151679679751396, -0.020739052444696426, 0.02196333557367325, 0.022051837295293808, -0.004720125813037157, 0.02635895274579525, -0.005490833893418312, 0.020960308611392975, -0.017729971557855606, 0.003602783428505063, -0.010177770629525185, 0.036374468356370926, 0.009521378204226494, 0.00020950166799593717, 0.014765143394470215, 0.023674380034208298, -0.03448641672730446, 0.013290103524923325, 0.021225815638899803, 0.0007946774130687118, 0.019072256982326508, 0.04339565709233284, 0.011844565160572529, -0.03430941328406334, 0.0397670604288578, -0.03221485763788223, 0.01094479113817215, -0.009049366228282452, -0.022081337869167328, -0.0011422334937378764, 0.01839374005794525, -0.0026698210276663303, 0.023910386487841606, 0.03861652687191963, -0.01396124716848135, 0.02770123817026615, 0.04197961837053299, 0.019278762862086296, 0.0341029092669487, -0.02966303937137127, -0.012877092696726322, 0.008975613862276077, -0.02332037128508091, -0.047083254903554916, -0.004790190141648054, -0.009270621463656425, -0.04460518807172775, 0.015900922939181328, -0.0558449886739254, 0.022287843748927116, -0.03902953863143921, 0.04330715164542198, -0.0051220739260315895, 0.003591720713302493, 0.03097582422196865, 0.02329087071120739, -0.013688364997506142, -0.014979023486375809, 0.023954637348651886, 0.025990191847085953, -0.03256886824965477, 0.02016378752887249, -0.01091529056429863, -0.008149592205882072, 0.01860024593770504, -0.0004273004306014627, -0.008142217062413692, 0.053366921842098236, 0.0641937106847763, -0.007109689526259899, -0.008997739292681217, 0.0019323014421388507, -0.0009855106472969055, -0.011903567239642143, -0.017803724855184555, 0.011202923022210598, -0.0050298841670155525, -0.003820351790636778, 0.02935328148305416, -0.0076185776852071285, 0.004126422572880983, 0.019293513149023056, 0.004391929600387812, 0.04478219151496887, 0.017744721844792366, 0.0004816925211343914, 0.016240183264017105, 0.019544269889593124, 0.0012657680781558156, 0.004956131801009178, -0.006018160376697779, -0.00033073147642426193, -0.01469139102846384, -5.3182080591795966e-05, -0.009425501339137554, -0.01837898977100849, -0.013651488348841667, -0.005830092821270227, 0.042599134147167206, -0.016697444021701813, 0.017833225429058075, -0.018880503252148628, 0.01461026445031166, -0.01566491648554802, 0.021107811480760574, -0.01705145463347435, -0.036344967782497406, -0.010458028875291348, 0.009853262454271317, -0.004299739375710487, 0.011955193243920803, -0.009831137023866177, 0.014956898055970669, 0.024057891219854355, 0.058293551206588745, 0.03262786939740181, -0.028365004807710648, 0.0019488956313580275, -0.009536128491163254, -0.01883625239133835, 0.009174744598567486, -0.0044214301742613316, 0.029058273881673813, -0.008680606260895729, 0.012139573693275452, 0.012353453785181046, 0.018024979159235954, -0.02948603592813015, 0.023807134479284286, -0.007589077111333609, -0.03755449876189232, -0.013002471067011356, 0.03728899359703064, 0.016269683837890625, 0.020694801583886147, -0.0033870588522404432, -0.019101759418845177, 0.01565016619861126, 0.001558010233566165, -0.034899428486824036, 0.010229397565126419, -0.02935328148305416, 0.006357419304549694, -0.04336615651845932, -0.0058227176778018475, -0.011121796444058418, 0.0073751965537667274, -0.012803341262042522, -0.003916229121387005, -0.0375249981880188, -0.010354775935411453, -0.01094479113817215, -0.00996389053761959, -0.01249358244240284, -0.0017350149573758245, -0.0001468124974053353, 0.029043523594737053, -0.005376518238335848, -0.01991303078830242, -0.014212003909051418, 0.004520995542407036, -0.0010666378075256944, -0.017523467540740967, -0.006265229545533657, -0.003755818819627166, -0.006442233920097351, -0.03522393852472305, -0.038056012243032455, 0.0037041923496872187, 0.07180491089820862, -0.037967510521411896, 0.02190433256328106, 0.014551262371242046, -0.0027749177534133196, 0.01862974651157856, 0.02610819600522518, 0.02966303937137127, -0.0031989915296435356, -0.02491341345012188, 0.040976591408252716, 0.026049192994832993, 0.0249429140239954, 0.006733554415404797, -0.0027251350693404675, -0.02955978736281395, 0.002880014246329665, 0.01562066562473774, 0.01831998862326145, 0.015797670930624008, -0.0035548447631299496, 0.00580427935346961, -0.013798992149531841, -0.011343051679432392, -0.022317344322800636, 0.023954637348651886, -0.007021186873316765, 0.01461763959378004, 0.027302976697683334, -0.012921344488859177, 0.005184763111174107, -0.00044481654185801744, 0.00044550796155817807, -0.00019244653230998665, -0.04776177182793617, -0.027125973254442215, 0.000902078696526587, 0.007640703581273556, 0.037908509373664856, -0.01570916920900345, -0.01731696166098118, -0.016476187855005264, -0.01833473891019821, 0.025827938690781593, -0.015045400708913803, 0.0020927120931446552, 0.004399304743856192, 0.036315467208623886, 0.007275631185621023, 0.011910942383110523, 0.0199572816491127, 0.02317286655306816, -0.014160376973450184, -0.0020945558790117502, 0.02629994973540306, 0.00014047443983145058, 0.001971021294593811, 0.0023139677941799164, 0.016579441726207733, 0.006796243600547314, -0.02773073874413967, 0.02615244686603546, -0.011379928328096867, -0.002830231562256813, 0.004048982635140419, -0.02337937243282795, -0.020650550723075867, -0.014278380200266838, 0.005483458749949932, 0.019057506695389748, -0.01713995635509491, -0.00734569551423192, 0.002111149951815605, -0.002540755085647106, -0.025400176644325256, -0.014234129339456558, 0.013334355317056179, -0.01857074536383152, -0.011704436503350735, -0.017759472131729126, -0.005483458749949932, -0.02041454426944256, -0.011225049383938313, 0.013658863492310047, -0.02942703291773796, 0.022892609238624573, 0.013747366145253181, -0.029146775603294373, 0.0037078799214214087, 0.000956009840592742, -0.0008472256595268846, -0.008289720863103867, -0.042628634721040726, 0.0033649334218353033, 0.003905166406184435, -0.023748133331537247, -0.0008223343756981194, 0.01085628941655159, -0.0339554026722908, 0.04495919868350029, 0.03135933354496956, 0.018880503252148628, 0.002454096684232354, -0.01559116505086422, -0.011918317526578903, 0.013474483974277973, -0.01569441705942154, -0.03094632364809513, -0.005254827439785004, -0.008053714409470558, -0.004978257697075605, 0.01463976502418518, 0.019750775769352913, -0.02314336597919464, -0.003613846143707633, 0.034722425043582916, 0.0014787268592044711, -0.024367649108171463, 0.018201984465122223, -0.013002471067011356, -0.007729205768555403, 0.0012122979387640953, -0.00037936167791485786, 0.015443661250174046, 0.020901307463645935, 0.012530459091067314, -0.005671525839716196, -0.007397321984171867, 0.0075337630696594715, -0.01834948919713497, 0.006482797674834728, -0.03398490324616432, 0.00210930616594851, -0.09505153447389603, -0.02483966201543808, -0.007094938773661852, 0.012338703498244286, -0.00288185803219676, -0.0005393112660385668, 0.016372935846447945, 0.019205011427402496, -0.01860024593770504, 0.0011910941684618592, 0.0027306664269417524, -0.012294452637434006, 0.008112716488540173, 0.020665301010012627, -0.020665301010012627, -0.0023692818358540535, -0.003755818819627166, -0.024515151977539062, 0.008599478751420975, 0.0010850757826119661, -0.00045795360347256064, 0.013363855890929699, 0.028232252225279808, -0.016505690291523933, -0.010576032102108002, 0.0434841588139534, -0.0029537661466747522, 0.01464714016765356, 0.0034442166797816753, -0.03227385878562927, -0.004060045816004276, 0.007061750628054142, -0.01991303078830242, -0.009646756574511528, 0.004827065858989954, 0.013400731608271599, 0.006279979832470417, 0.0006831275532022119, 0.019278762862086296, 6.902722816448659e-05, 0.00928537268191576, -0.010738286189734936, -0.00019901506311725825, 0.0002438424271531403, 0.01152743212878704, -0.012884467840194702, -0.0009292747708968818, -0.013238477520644665, -0.011652810499072075, 0.006423796061426401, 0.003890416119247675, 0.004122735001146793, -0.022346844896674156, -0.015974676236510277, 0.010996418073773384, -0.005490833893418312, 0.010797287337481976, -0.013260602951049805, -0.002876326674595475, -0.006906871218234301, 0.05133136734366417, 0.026889966800808907, 0.008599478751420975, 0.005173700395971537, -0.008702731691300869, -0.011025918647646904, -0.0029463910032063723, 0.023644879460334778, 0.023644879460334778, 0.0012952688848599792, 0.00464637391269207, -0.018939504399895668, 0.0007227692403830588, 0.02345312386751175, 0.008547852747142315, -0.0005443816771730781, 0.01306884828954935, 0.01839374005794525, -0.010797287337481976, 0.003193459939211607, -0.015827171504497528, 0.007419447414577007, 0.03132983297109604, 0.0011855628108605742, -0.009698383510112762, -0.010163020342588425, -0.003191616153344512, -0.017361212521791458, 0.01310572400689125, -0.015015900135040283, 0.031890347599983215, 0.014374257996678352, 0.03519443795084953, -0.00021549401571974158, -0.010708785615861416, 0.031949352473020554, -0.0007103236275725067, 0.020547296851873398, 0.0024227520916610956, -0.001908332109451294, -0.005398643668740988, -0.036551471799612045, -0.004539433401077986, -0.017951227724552155, -0.025237921625375748, -0.012677962891757488, -0.0026587583124637604, 0.02955978736281395, -0.006884745787829161, -0.02144707180559635, 0.0013561142841354012, 0.02165357582271099, -0.02655070647597313, -0.011409428901970387, -0.022833608090877533, -0.006327918730676174, -0.017744721844792366, -0.011195547878742218, -0.02495766431093216, 0.009632006287574768, 0.006740929558873177, 0.027347227558493614, 0.004782814998179674, -0.03150684013962746, 0.015163403935730457, 0.0123977055773139, -0.01851174235343933, -0.022155089303851128, 0.007625953294336796, 0.022612351924180984, 0.0044214301742613316, 0.008577353321015835, -0.022759856656193733, 0.010428527370095253, -0.021122561767697334, 0.010775161907076836, 0.036285966634750366, -0.009174744598567486, 0.027347227558493614, -0.03242136165499687, 0.013452358543872833, -0.006007097661495209, 0.014868396334350109, 0.014263629913330078, -0.014344757422804832, 0.003245086409151554, -0.009196870028972626, -0.020429294556379318, 0.006932684686034918, -0.0008675074786879122, 0.0017884850967675447, -0.001239954843185842, 0.01840849034488201, 0.005335954483598471, -0.012759089469909668, -0.025075668469071388, -0.02013428695499897, 0.0011311707785353065, 0.0058079673908650875, -0.029073024168610573, -0.021196315065026283, 0.004793877713382244, 0.011719186790287495, -0.01403499860316515, 0.013371231034398079, -0.0075448257848620415, -0.014971648342907429, -0.01250095758587122, 0.00424442533403635, -0.005365455523133278, 0.0052179512567818165, 0.002983266953378916, -0.021196315065026283, -0.00840772408992052, 0.014337382279336452, -0.008186467923223972, -0.016181180253624916, -0.0002830231678672135, 0.02329087071120739, -0.010745661333203316, -0.005022508557885885, 0.029972799122333527, -0.0052105761133134365, -0.003741068299859762, -0.0026642896700650454, -0.0010122456587851048, -0.015886172652244568, 0.005704714450985193, -0.004860254470258951, -0.00575265334919095, 0.03516493737697601, 0.013031971640884876, -0.010391651652753353, 0.000916368153411895, -0.008614229038357735, 0.0068331193178892136, 0.035017430782318115, 0.036492470651865005, -0.01467664074152708, -0.006515985820442438, -0.03823301941156387, 0.00288185803219676, 0.010472779162228107, 0.0200310330837965, 0.00937387440353632, 0.0016031833365559578, -0.03720049187541008, 0.012950845062732697, 0.021048810333013535, -0.01883625239133835, -0.008053714409470558, 0.018260985612869263, 0.01713995635509491, -0.013334355317056179, -0.012788590975105762, -0.0023785007651895285, 0.009676258079707623, -0.02953028678894043, 0.02660970948636532, 0.010509654879570007, 0.03457492217421532, -0.008112716488540173, 0.0002871717151720077, -0.019455768167972565, 0.00999339111149311, 0.022612351924180984, 0.011173422448337078, -0.0369349829852581, -0.009683633223176003, 0.010753036476671696, -0.0034276226069778204, -0.00935912411659956, -0.009145243093371391, 0.0025149420835077763, -0.014794643968343735, -0.020429294556379318, 0.03460442274808884, -0.0066745528019964695, 0.027612734586000443, -0.0037152552977204323, -0.022774606943130493, -0.026757212355732918, 0.003060706425458193, -3.6069319321541116e-05, 0.03094632364809513, -0.0015893548261374235, -0.021299567073583603, -0.01240508072078228, 0.008555227890610695, 0.005007758270949125, 0.015001149848103523, -0.011977318674325943, -0.010561280883848667, 0.012788590975105762, 0.007972586899995804, -0.0013598018558695912, -0.004712750669568777, -0.005874344147741795, 0.0005268655950203538, -0.018231485038995743, 0.0016741695581004024, 0.01330485474318266, 0.031270831823349, -0.034692924469709396, 0.0156354159116745, 0.012972970493137836, -0.00576371606439352, 0.007404697127640247, -0.007648078724741936, -0.008761733770370483, 0.005151574499905109, 0.019249262288212776, -0.020576797425746918, 0.0007965211989358068, 0.01688919961452484, 0.013850619085133076, 0.011778188869357109, -0.01306884828954935, -0.007002749014645815, -0.012021570466458797, -0.016107428818941116, 0.0008430771413259208, -0.019352516159415245, 0.016166429966688156, 0.017862726002931595, 0.02932378090918064, 0.024264397099614143, 0.006814681459218264, 0.03109382838010788, -0.02500191517174244, -0.005616212263703346, 0.01687444932758808, 0.014831519685685635, -0.015133903361856937, 0.02020803838968277, -0.016431936994194984, 0.002634788863360882, -0.020621048286557198, 0.00733832037076354, -0.017670970410108566, 0.006788868457078934, 0.015414160676300526, -0.009425501339137554, -0.00734200794249773, -0.012736964039504528, -0.0002247130178147927, 0.0059038447216153145, 0.006161976605653763, 0.006375857163220644, 5.021471588406712e-05, 0.02144707180559635, 0.009056741371750832, -0.0007448948454111814, -0.011372553184628487, -0.007242443040013313, 0.025105169042944908, 0.020458795130252838, 0.002981423167511821, -0.011733937077224255, -0.023984137922525406, -0.009897513315081596, -0.0002980040153488517, 0.024456150829792023, 0.007471073884516954, -0.036403968930244446, 0.0025628807488828897, 0.007928336039185524, -0.007670204155147076, 0.012729588896036148, -0.003964168019592762, -0.008068464696407318, 0.045785218477249146, -0.0115053066983819, -0.0036986609920859337, -0.005726839881390333, 0.0020798053592443466, -0.023969387635588646, 0.01397599745541811, -0.001967333722859621, 1.1523744660735247e-06, 0.006844182498753071, 0.012242825701832771, 0.010295773856341839, -0.022243592888116837, 0.013334355317056179, 0.009772134944796562, 0.007898835465312004, 0.022509099915623665, 0.023836635053157806, -0.007404697127640247, 0.009927014820277691, 0.013408106751739979, 0.0020042096730321646, -0.008009463548660278, 0.005273265298455954, 0.019249262288212776, 0.010148270055651665, 0.010391651652753353, -0.016299184411764145, -0.034751925617456436, -0.006892120931297541, 0.009853262454271317, -0.009676258079707623, 0.0370824858546257, -0.0010638721287250519, 0.0003839711716864258, 0.02026703953742981, -0.01084891427308321, 0.02467740699648857, -0.022110838443040848, 0.00842247437685728, 0.006722491700202227, -0.013481859117746353, -0.005177387967705727, -0.019441017881035805, -0.011129171587526798, 0.014558637514710426, 0.0031584277749061584, 0.0050446344539523125, -0.0005918595124967396, -0.0016935294261202216, 0.01090791542083025, -0.02951553650200367, -0.005273265298455954, -0.01696295104920864, 0.01402762345969677, -0.014145626686513424, -0.012353453785181046, -0.029972799122333527, -0.010332650505006313, -0.013533485122025013, -0.005638337694108486, 0.006888433359563351, -0.0051146987825632095, 0.026742462068796158, 0.0010933728190138936, -0.01693345047533512, 0.008776484057307243, -0.03835102170705795, -0.009130492806434631, -0.016210680827498436, 7.467386603821069e-05, -0.003938355017453432, 0.03545994311571121, -0.011453679762780666, 0.006814681459218264, 0.016402436420321465, 0.019072256982326508, 0.0017838756320998073, -0.01728746108710766, -0.019426267594099045, -0.011977318674325943, 0.0038056012708693743, -0.01405712403357029, -0.007426822558045387, -0.005498209036886692, 0.013245852664113045, 0.004321865271776915, -0.0002726517850533128, -0.003064393997192383, -0.019573770463466644, -0.01090791542083025, 0.013865369372069836, -0.037879008799791336, -0.01241245586425066, 0.007419447414577007, -0.011704436503350735, -0.009646756574511528, 0.02013428695499897, 0.013784241862595081, 0.010118769481778145, -0.002887389389798045, -0.01311309915035963, 0.006869995500892401, 0.05124286562204361, -0.007032249588519335, 0.015119153074920177, -0.014359507709741592, -0.007102313917130232, -0.025503428652882576, -0.03135933354496956, -0.02927953004837036, 0.003311463166028261, -0.036344967782497406, 0.00421492476016283, -0.020768553018569946, 0.02466265670955181, -0.019323013722896576, 0.022700853645801544, -0.004045295063406229, -0.0023121240083128214, -0.03902953863143921, 0.010694034397602081, -0.0043550534173846245, -0.004461993928998709, 0.017552968114614487, 0.003964168019592762, -0.004048982635140419, -0.007869334891438484, 0.025813186541199684, 0.02947128564119339, 0.011114421300590038, -0.010635033249855042, 0.017818475142121315, -0.012176449410617352, 0.01241983100771904, 0.039619553834199905, -0.01699245162308216, -0.029869545251131058, -0.024411899968981743, 0.00940337497740984, -0.03398490324616432, -0.012110072188079357, 0.0005411550519056618, 0.01001551654189825, -0.01678594760596752, 0.00013263829168863595, -0.0036820669192820787, -0.00624679122120142, -0.01245670672506094, 0.002824700204655528, -0.011040668934583664, 0.0051073236390948296, 0.01680069789290428, 0.02469215728342533, -0.0012639242922887206, 0.027170224115252495, -0.010524405166506767, -0.009455001913011074, 0.022656602784991264, -0.005933345295488834, 0.025400176644325256, -0.02650645561516285, -0.003053331281989813, 0.004849191755056381, -0.04133060202002525, -0.00031114110606722534, -0.0033004004508256912, 0.0216683279722929, -0.015060150995850563, 0.006055036094039679, -0.01715470664203167, -0.04177311062812805, 0.0042739263735711575, 0.007496887352317572, -0.014167752116918564, -0.010251522995531559, 0.008901862427592278, 0.009521378204226494, 0.004495182074606419, 0.0012795965885743499, 0.011217673309147358, 0.0010389807866886258, 0.01304672285914421, -0.011284050531685352, -0.006279979832470417, 0.001919394824653864, 0.005962846335023642, -0.026801463216543198, -0.017552968114614487, -0.02815850079059601, -0.029161525890231133, -0.012360828928649426, -0.0037005047779530287, 0.012316578067839146, -0.00017274092533625662, -0.005918595008552074, -0.0012574710417538881, -0.0032192731741815805, -0.002400626428425312, 0.0115421824157238, 0.010391651652753353, -0.0028468258678913116, -0.0012122979387640953, 0.025282172486186028, -0.006969560403376818, -0.00024683860829100013, -0.0023674380499869585, -0.0038572277408093214, -0.0007370586972683668, -0.019824527204036713, -0.001141311600804329, -0.012633711099624634, -0.0066634900867938995, 0.0067704301327466965, 0.09457951784133911, 0.0037005047779530287, 0.015487912110984325, 0.007913585752248764, 0.0011072013294324279, -0.008850235491991043, -0.004450931213796139, 0.01986877992749214, 0.022258343175053596, -0.009536128491163254, 0.0066819279454648495, -0.028483008965849876, 0.025119919329881668, 0.015207654796540737, -0.01090054027736187, 0.01570916920900345, 0.026624459773302078, 0.02336462214589119, -0.006114037707448006, 0.016299184411764145, -0.004782814998179674, 0.004723813384771347, -0.01244195643812418, 0.008916612714529037, -0.016018927097320557, 0.015355158597230911, -0.007869334891438484, 0.005280640441924334, 0.01461026445031166, 0.031831346452236176, -0.003595408285036683, -0.007482136599719524, -0.0044288053177297115, -0.003600939642637968, -0.0005190294468775392, 0.02160932496190071, -0.010679284110665321, 0.004307114519178867, -0.004775439854711294, 0.0025112542789429426, -0.008673231117427349, -0.0011403897078707814, 0.022568101063370705, 0.024456150829792023, -0.0027085409965366125, -0.006482797674834728, -0.0038498525973409414, -0.004111671820282936, 0.0009311185567639768, -0.006397983059287071, -0.002872639102861285, -0.009742634370923042, 0.007721830625087023, 0.012006820179522038, 0.01095954142510891, -0.0042776139453053474, 0.002396938856691122, -0.010635033249855042, -0.0029943296685814857, -0.006099287420511246, -0.017493965104222298, -0.003318838309496641, -0.009602505713701248, -0.02473640814423561, -0.012626335956156254, -0.018924754112958908, -0.019780276343226433, -0.022125588729977608, -0.009123117662966251, -0.003460810985416174, -0.012589460238814354, 0.009189494885504246, -0.006383232306689024, -0.023541627451777458, -0.00622835336253047, 0.02034079097211361, 0.00422967504709959, 0.013607237488031387, 0.006515985820442438, 0.006936372257769108, 0.0021443383302539587, 0.011217673309147358, -0.0218895822763443, -0.018880503252148628, -0.004329240415245295, -0.012677962891757488, 0.03088732250034809, -0.015310907736420631, 0.02031129039824009, -0.009123117662966251, -0.021284816786646843, -0.007478449027985334, -0.003064393997192383, 0.007957836613059044, 0.010458028875291348, -0.01462501473724842, -0.013865369372069836, -0.00624679122120142, 0.013422857038676739, 0.014123501256108284, 0.0020687426440417767, 0.027096470817923546, -0.008518352173268795, 0.00013137068890500814, -0.011298800818622112, -0.004506244789808989, 0.025414926931262016, 0.0027159161400049925, -0.02659495733678341, 0.016358185559511185, -0.019544269889593124, -0.02143232151865959, 0.008267595432698727, 0.0010813882108777761, -0.038085512816905975, 0.012729588896036148, 0.022450098767876625, 0.009041991084814072, -0.009130492806434631, -0.009809011593461037, -0.008673231117427349, 0.009838512167334557, -0.01242720615118742, 0.005354392807930708, 0.005317516624927521, -0.004576309584081173, -0.011866690590977669, 0.0029076712671667337, -0.011136546730995178, -0.0027749177534133196, 0.00781770795583725, 0.022922109812498093, 0.004871317185461521, 0.012928719632327557, 0.020621048286557198, -0.003978918306529522, -0.003193459939211607, -0.00576740363612771, 0.015340408310294151, -0.014256254769861698, 0.005280640441924334, 0.01003764197230339, 0.005701026879251003, 0.0011053575435653329, 0.006866307929158211, 0.017552968114614487, -0.03292287513613701, -0.012943469919264317, -0.009071491658687592, -0.00022286921739578247, 0.019087009131908417, -0.034781426191329956, 0.017818475142121315, -0.0003759045503102243, 0.015296157449483871, 0.00932962354272604, -0.013695740140974522, 0.03307038173079491, -0.006420108489692211, 0.004919256083667278, -0.0014556794194504619, 0.000247069081524387, -0.007087563630193472, -0.022125588729977608, 0.00027610891265794635, 0.010531780309975147, 0.010435902513563633, 0.0186149962246418, 0.026668710634112358, -0.014824144542217255, 0.00840772408992052, 0.010679284110665321, -0.0007250739727169275, -0.03560744971036911, 0.0050446344539523125, 0.0032819623593240976, 0.00734938308596611, -0.012043695896863937, -0.01083416398614645, 0.019588520750403404, -0.0008947034948505461, -0.011711811646819115, 0.01003764197230339, 0.005944408476352692, -0.00932962354272604, -0.015399410389363766, -0.0007370586972683668, -0.015812421217560768, 0.004373491276055574, -0.0007711689686402678, -0.0076112025417387486, 0.00781770795583725, 0.0028044183272868395, -0.022450098767876625, -0.0024411899503320456, 0.005295391194522381, 0.011468430049717426, 0.019146010279655457, 0.0032764310017228127, -0.02035554125905037, 0.005299078766256571, 0.003117864252999425, 0.009772134944796562, 0.003536406671628356, -0.006025535520166159, -0.01402024831622839, -0.016077928245067596, -0.01565016619861126, -0.012744339182972908, 0.0004390546528156847, -0.058293551206588745, -0.04171410948038101, 0.013857994228601456, 0.002621882362291217, -0.025827938690781593, 0.002636632649227977, 0.017449714243412018, 0.027096470817923546, 0.01703670434653759, 0.009919638745486736, 0.012331328354775906, 0.007648078724741936, 0.03516493737697601, -0.014189877547323704, -0.005966533906757832, -0.003997356630861759, 0.02172732912003994, 0.01469139102846384, 0.012287077493965626, 0.002537067513912916, 0.02778973989188671, -0.006158289033919573, -0.008046339266002178, 0.0280699972063303, 0.002465159399434924, 0.021048810333013535, 0.017346462234854698, 0.004952444229274988, 0.007275631185621023, -0.013548235408961773, -0.01559116505086422, -0.002701165620237589, -0.019352516159415245, -0.002188589423894882, 0.013732615858316422, -0.01551741361618042, 0.005704714450985193, -0.005542459897696972, -0.012220700271427631, -2.6302946935174987e-05, -0.002319499384611845, -0.005273265298455954, 0.0020798053592443466, 0.018069231882691383, 0.018983755260705948, 0.011409428901970387, 0.003589876927435398, 0.007231379859149456, -0.0002059293183265254, -0.01400549802929163, -0.001656653475947678, 0.028586260974407196, -0.019544269889593124, -0.012980345636606216, -0.009130492806434631, 0.015841921791434288, -0.015355158597230911, 0.011424179188907146, 0.004484119359403849, 0.006917934399098158, -0.010332650505006313, 0.003752131247892976, 0.017538217827677727, 0.018172483891248703, -0.005937033332884312, -0.0029998610261827707, 0.019514769315719604, -0.024013640359044075, -0.002114837523549795, 0.007957836613059044, -0.008024213835597038, 0.02351212687790394, 0.0026569145265966654, -0.02006053365767002, 0.012051071040332317, -0.01886575296521187, 0.0007296834955923259, 0.027627484872937202, -0.022110838443040848, 0.00931487325578928, 0.0002726517850533128, -0.004104296676814556, 0.01091529056429863, -0.008171717636287212, -0.022110838443040848, -0.0030773007310926914, -0.0007997478824108839, 0.004107984248548746, 0.012294452637434006, -9.829753980739042e-05, -0.018039731308817863, 0.012051071040332317, 0.0008011307218112051, -0.01304672285914421, 0.009536128491163254, 0.018172483891248703, 0.0186887476593256, 0.0032948690932244062, 0.0043513658456504345, 0.0009315795032307506, 0.012132198549807072, -0.005653087981045246, -0.004845504183322191, 0.0016077928012236953, -0.01842324063181877, 3.923834810848348e-05, 0.0011201079469174147, 0.022096088156104088, -0.0037834758404642344, 0.0019544269889593124, 0.006814681459218264, 0.006036598235368729, -0.0035788139794021845, 0.011461054906249046, 0.0016778571298345923, 0.009115742519497871, -0.003165803151205182, 0.006910559255629778, 0.00848147552460432, -0.020975058898329735, 0.006169351749122143, -0.009528753347694874, -0.009233745746314526, -0.011202923022210598, -0.004015794489532709, 0.0125083327293396, -0.010155645199120045, -0.010059768334031105, -0.016343435272574425, 0.0009089929517358541, -0.019057506695389748, -0.010399026796221733, 0.007854584604501724, -0.009550879709422588, 0.005560898222029209, -0.009093617089092731, 0.011711811646819115, -0.021122561767697334, 0.012869717553257942, 0.018187234178185463, 0.007426822558045387, -0.00030699255876243114, 0.02001628279685974, 0.010502279736101627, -0.012781215831637383, -0.001385614974424243, 0.011438929475843906, 0.009713133797049522, -0.023556377738714218, 0.0037797882687300444, -0.023762883618474007, 0.012146948836743832, -0.009823761880397797, -0.024456150829792023, 0.006368482019752264, 0.006951122544705868, -0.009432876482605934, 0.023984137922525406, -0.02460365556180477, 0.00576740363612771, -0.014794643968343735, -0.027273476123809814, -0.009462377056479454, -0.006637676618993282, -0.022332094609737396, 0.004008419346064329, 0.0059960344806313515, -0.006991686299443245, -0.013444983400404453, -0.0016289964551106095, 0.02023753896355629, 0.02351212687790394, -0.008702731691300869, -0.0033741523511707783, 0.01312784943729639, 0.01725796051323414, 0.03596145659685135, 0.03253936767578125, 0.010340025648474693, -0.008319221436977386, -0.011638060212135315, 9.714516636449844e-05, 0.0025020353496074677, 0.011822439730167389, -0.004325552843511105, 0.0172727108001709, -0.022405846044421196, 0.022479599341750145, 0.005490833893418312, -0.004034232348203659, -0.012559959664940834, 0.004782814998179674, 0.025090418756008148, 0.011674935929477215, 0.005070447456091642, -0.030208803713321686, -0.0037834758404642344, 0.017656220123171806, 0.016476187855005264, -0.01886575296521187, 0.00997864082455635, 0.006379544734954834, -0.021329067647457123, 0.01019252184778452, 0.005376518238335848, 0.008805984631180763, 0.023659629747271538, -0.010177770629525185, 0.005642025265842676, -0.010966917499899864, 0.016579441726207733, -0.0015451036160811782, 0.011084919795393944, -0.008673231117427349, 0.022199342027306557, -0.002319499384611845, 0.016490940004587173, -0.0009993391577154398, -0.0062172906473279, 0.008592103607952595, 0.0009168290998786688, -0.011409428901970387, -0.005265890154987574, 0.0016428249655291438, -0.014079250395298004, -0.01570916920900345, 0.024013640359044075, -0.024013640359044075, -0.008982989005744457, 0.029028773307800293, -0.01572391949594021, -0.009868012741208076, 0.006571299862116575, 0.004915568511933088, 0.005483458749949932, 0.0059739090502262115, -0.0032211169600486755, 0.016608942300081253, -0.011018543504178524, -0.006449609063565731, -0.011468430049717426, 0.019028006121516228, -0.0004240738053340465, 0.004410367459058762, -0.01465451531112194, 0.002815481275320053, 0.004325552843511105, -0.005236389581114054, 0.02643270418047905, -0.025459177792072296, -0.0007642547134310007, 0.000309066817862913, -0.0024983477778732777, 0.007165003102272749, -0.005966533906757832, 0.0031270831823349, 0.003742912085726857, 0.0115790581330657, -0.008348722010850906, 0.0037097237072885036, 0.00017965518054552376, -0.004373491276055574, 0.0011523744324222207, -0.011166047304868698, -0.011468430049717426, 0.011431554332375526, -0.004635310731828213, 0.015119153074920177, 0.003543781815096736, -0.02000153250992298, -0.0311233289539814, 0.0031399899162352085, -0.004863942041993141, 0.0007144721457734704, 0.025960691273212433, 0.0032008353155106306, 0.0042628636583685875, 0.02939753234386444, 0.009027240797877312, -0.006386919878423214, -0.006401670631021261, 0.015097026713192463, 0.020842304453253746, -0.001550635090097785, 0.022273093461990356, -0.001969177508726716, -0.009034615941345692, 0.041153594851493835, -0.00843722466379404, -0.008038964122533798, 0.006534424144774675, -0.0025979129131883383, 0.005737902596592903, 0.022155089303851128, 0.0007176988292485476, 0.0030957385897636414, 0.004181736148893833, 0.003257992910221219, 0.02178633026778698, 0.009477127343416214, 0.011129171587526798, -0.016653193160891533, -0.0029279529117047787, 0.019529519602656364, 9.674183093011379e-05, 0.029766293242573738, 0.008238093927502632, 0.009750009514391422, 0.02330562099814415, -0.004775439854711294, -0.0022365283221006393, -0.01575342006981373, 0.0008241782197728753, 0.013621987774968147, 0.0044288053177297115, -0.00466481177136302, 0.010376901365816593, 0.014219379052519798, 0.0017313273856416345, -0.01461026445031166, -0.008149592205882072, 0.005501896608620882, 0.01160855870693922, -0.006091912277042866, 0.012537834234535694, 0.004557871259748936, 0.005590398795902729, 0.011084919795393944, 0.03610896319150925, -0.012958220206201077, 0.004734876099973917, 0.00733832037076354, 0.022125588729977608, -0.0008343191002495587, 0.00058217957848683, -0.02168307825922966, -0.0035751264076679945, 0.0062172906473279, -0.011903567239642143, 0.019175510853528976, -0.01312784943729639, -0.0024264396633952856, 0.026004942134022713, 0.002033710479736328, 0.006740929558873177, -0.013806367293000221, -0.006272604689002037, 0.017951227724552155, 0.010399026796221733, 0.017980728298425674, -0.0001517677155788988, -0.013857994228601456, -0.014942147769033909, 0.0025186296552419662, -0.019160760566592216, 0.0019378327997401357, 0.01691870018839836, -0.0028025745414197445, 0.009211620315909386, 0.02784874103963375, -0.0023692818358540535, -0.0025167858693748713, -0.010509654879570007, 0.004945069085806608, 0.0025241610128432512, -0.0007836146396584809, -0.026019692420959473, -0.010450653731822968, 0.009115742519497871, -0.01003026682883501, 0.004550496116280556, -0.012655837461352348, -0.010760411620140076, -0.013415481895208359, -0.004074796102941036, 0.020960308611392975, 0.00579321663826704, 0.0018456429243087769, 0.02618194743990898, -0.022509099915623665, 0.02464790642261505, -0.004532058257609606, -0.0036470345221459866, -0.002457784255966544, -0.00021422641293611377, -0.01862974651157856, -0.004078483674675226, -0.0009735259227454662, -0.006165664177387953, -0.025709934532642365, 0.006084537133574486, -0.013821118511259556, -0.0031602715607732534, -0.012301827780902386, 0.004742251243442297, 0.005549835506826639, -0.0032948690932244062, -0.0073788841255009174, 0.0017921727849170566, 0.004307114519178867, -0.00466849934309721, -0.007183441426604986, 0.022273093461990356, -0.016756447032094002, -0.0010288398480042815, -0.009558254852890968, 0.011114421300590038, 0.0028597323689609766, 0.013872744515538216, -0.013363855890929699, -0.005527709610760212, -0.005686276592314243, 0.0006453297100961208, 0.008540477603673935, 0.004543120972812176, 0.00469431234523654, 0.015782920643687248, 0.010140894912183285, 0.022037087008357048, -0.024470901116728783, 0.006379544734954834, 0.009196870028972626, 0.0029095150530338287, -0.019736025482416153, 0.0016879980685189366, -0.00576740363612771, -0.030621815472841263, -0.0018898941343650222, -0.0033428077585995197, -0.03413240984082222, 0.0168301984667778, -0.01305409800261259, 0.0023084364365786314, 0.004498869646340609, 0.012795966118574142, 0.0005591320805251598, 0.007231379859149456, -0.00994176510721445, -0.01398337259888649, -0.0023526877630501986, -0.016638442873954773, 0.009543504565954208, -0.013474483974277973, 0.010686659254133701, -0.00993438996374607, -0.0022365283221006393, 0.008555227890610695, -0.03982606157660484, 0.028925519436597824, 0.012847592122852802, -0.009115742519497871, -0.022317344322800636, 0.013931745663285255, 0.0217420794069767, 0.0005125761381350458, -0.017980728298425674, -0.0059038447216153145, 0.010974292643368244, 0.012523083947598934, -0.02186008170247078, -0.0034239350352436304, 0.014861021190881729, -0.029058273881673813, 0.016712194308638573, -0.006943747401237488, 0.003982605878263712, -0.010177770629525185, -0.018187234178185463, 0.0036212215200066566, -0.02774548903107643, -0.007047000341117382, 0.014942147769033909, 0.0015709168510511518, -0.0018594714347273111, -1.511050959379645e-05, 0.016048427671194077, 0.00846672523766756, -0.019057506695389748, -0.0024264396633952856, 0.012840216979384422, -0.01882150210440159, 0.0012491738889366388, -0.012965595349669456, -0.024043140932917595, 0.009123117662966251, -0.002258653985336423, -0.028660012409090996, -0.002207027515396476, -0.017611969262361526, -0.0036230653058737516, -0.025547679513692856, -0.016107428818941116, 0.011202923022210598, -0.005723152309656143, -0.003040424780920148, -0.0014077406376600266, 0.018069231882691383, 0.011719186790287495, 0.0019452080596238375, 0.0006513220141641796, 0.014359507709741592, 0.0029390158597379923, 0.015192904509603977, -0.004716438241302967, -0.00862898025661707, -0.030474310740828514, 0.009868012741208076, -0.0043403031304478645, -0.011350426822900772, 0.012641086243093014, 0.004945069085806608, 0.0007213864009827375, 0.004001044202595949, 0.005512959323823452, -0.004045295063406229, -0.01677119731903076, 0.00840772408992052, 0.013349105603992939, -0.01565016619861126, 0.008024213835597038, -0.0033594020642340183, -0.016653193160891533, -0.01702195405960083, 0.0042776139453053474, 0.007943086326122284, -0.006309480406343937, -0.0035788139794021845, -0.01461763959378004, 0.009860637597739697, 0.028748515993356705, -0.021978085860610008, -0.016195930540561676, -0.012065821327269077, 0.0017064360436052084, 0.016004176810383797, -0.005162637680768967, -0.006084537133574486, 0.005535084754228592, -0.0035585323348641396, 0.0010371370008215308, -0.008510977029800415, -0.007496887352317572, 0.011704436503350735, -0.02324661985039711, 0.016387686133384705, -0.01867399737238884, 0.024367649108171463, 0.0005701948539353907, -0.0001712428347673267, 0.0062172906473279, 0.018231485038995743, -0.0005204122862778604, -0.013776866719126701, 0.006626613903790712, -0.0004918334307149053, 0.019116509705781937, 0.01240508072078228, -0.005962846335023642, -0.015827171504497528, 0.003741068299859762, 0.0051110112108290195, -0.021004559472203255, -0.0084519749507308, -0.018260985612869263, -0.011269300244748592, -0.02767173759639263, -0.005866968538612127, 0.0035769701935350895, -0.00289292074739933, 0.01559116505086422, -0.005188450682908297, -0.00467956205829978, -0.03121183067560196, -0.019072256982326508, -0.027553733438253403, -0.00033211431582458317, 0.018216734752058983, 0.009912263602018356, 0.02141757123172283, 0.01864449679851532, -0.0006872761296108365, 0.007736580912023783, -0.015082276426255703, 0.004473056644201279, 0.020798053592443466, 0.0016197775257751346, 0.005476083140820265, -0.01680069789290428, -0.004716438241302967, -0.0067483047023415565, 0.008732232265174389, 0.008606853894889355, -0.022051837295293808, -0.00031759438570588827, -0.003816664218902588, 0.014816769398748875, -0.015930423513054848, 0.005723152309656143, -0.00422229990363121, -0.016476187855005264, 0.023851385340094566, 0.01312047429382801, -0.018187234178185463, -0.004447243642061949, 0.0021627764217555523, -0.0013487390242516994, 0.0006633067387156188, -0.0003328057355247438, -0.006099287420511246, 0.024293897673487663, -0.009698383510112762, -0.0011182641610503197, 0.011055419221520424, -0.0075448257848620415, -0.025842688977718353, 0.0067704301327466965, 0.017936477437615395, -0.011335676535964012, 0.00420754961669445, -0.013260602951049805, -0.0019562707748264074, -0.00839297380298376, -0.012537834234535694, 0.013245852664113045, 0.004107984248548746, -0.020916057750582695, -0.007920960895717144, 0.00840034894645214, 0.00731988251209259, 0.013806367293000221, 0.005490833893418312, -0.027037469670176506, 0.0013929902343079448, 0.016284434124827385, -0.008053714409470558, 0.005372830666601658, -0.008614229038357735, 0.0015607759123668075, -0.012183824554085732, -0.02948603592813015, -0.007913585752248764, 0.02191908285021782, -0.00018829798500519246, 0.003879353404045105, -0.00579321663826704, 0.005317516624927521, 9.616564784664661e-05, -0.010546530596911907, 0.022037087008357048, -0.012087946757674217, 0.006091912277042866, 0.030267806723713875, -0.012390329502522945, 0.008879736065864563, 0.0029980172403156757, -0.010694034397602081, -0.011741312220692635, 0.008238093927502632, -0.0011791095603257418, -0.0037281617987900972, -0.008584728464484215, 0.009115742519497871, 0.012309202924370766, 0.022066587582230568, 0.006169351749122143, 0.01460288930684328, 0.002050304552540183, 0.003121551824733615, -0.0067446171306073666, 0.006493860390037298, -0.0007660984992980957, 0.027155473828315735, 0.01719895750284195, 0.0023692818358540535, -0.007054375484585762, -0.007677579298615456, 0.019072256982326508, -0.008769108913838863, 0.004956131801009178, 0.01833473891019821, 2.761377254500985e-05, -0.014204627834260464, 0.019337765872478485, -0.009691008366644382, 0.0044398680329322815, -0.02146182209253311, 0.02017853781580925, -0.010583407245576382, 0.0022328407503664494, -0.0006619238993152976, 0.005848530679941177, 0.00574159063398838, -0.00842984952032566, -0.007943086326122284, -0.02318761684000492, 0.010472779162228107, -0.02184533141553402, -0.000492294377181679, 0.0015589321264997125, 0.004026857204735279, -0.012611585669219494, 0.005948096048086882, 0.0019304576562717557, 0.002345312386751175, 0.011018543504178524, 0.011379928328096867, 0.004026857204735279, -0.01991303078830242, -0.010258898138999939, -0.01554691419005394, -0.008230718784034252, 0.00936649926006794, -0.008363472297787666, 0.022184589877724648, 0.00368022290058434, -3.972810736740939e-05, -0.015310907736420631, -0.0009205167298205197, -0.014588138088583946, -0.004576309584081173, 0.019426267594099045, -0.0026458518113940954, 0.004930318798869848, 0.012036320753395557, -0.03121183067560196, -0.016195930540561676, 0.008525727316737175, -0.000849991396535188, -0.00036391985486261547, 0.01843799091875553, 0.016269683837890625, 0.005579336080700159, 0.008754357695579529, -0.009115742519497871, 0.006556549575179815, 0.002188589423894882, 0.009786885231733322, -0.019131259992718697, 0.014094000682234764, 0.006287354975938797, -0.003982605878263712, 0.003986293449997902, 0.014905272051692009, -0.00469799991697073, 0.0043513658456504345, 0.006825744174420834, 0.0018087669741362333, 0.0007909898413345218, -0.02326137013733387, -0.012331328354775906, 0.008038964122533798, -0.019146010279655457, 0.012877092696726322, -0.037908509373664856, 0.011697061359882355, -0.007264568470418453, 0.009713133797049522, 0.009469752199947834, -0.0073715089820325375, 0.004768064245581627, -0.003541938029229641, 0.005251139868050814, -0.0010647940216585994, 0.02950078621506691, 0.013813742436468601, 0.030385809019207954, -0.025488678365945816, 0.0020945558790117502, -0.007474761456251144, 0.027125973254442215, -0.010642408393323421, 0.006936372257769108, 0.013356480747461319, -0.007297756616026163, 0.008341346867382526, 0.0010104018729180098, 0.0027859804686158895, -0.0028505134396255016, 0.016122179105877876, -0.0002152635424863547, -6.245869735721499e-05, -0.0261376965790987, 0.002616351004689932, 0.004107984248548746, -0.010155645199120045, -0.022951610386371613, 0.01848224177956581, 0.012567334808409214, 0.012323953211307526, -0.00665242737159133, 0.013599862344563007, 0.008569978177547455, -0.009698383510112762, -0.0030127677600830793, -0.005055697169154882, -0.01711045578122139, -0.00026596803218126297, 0.008599478751420975, -0.03852802515029907, 0.01570916920900345, 0.008282345719635487, -0.005704714450985193, -0.02296636253595352, 0.007891460321843624, -0.010664533823728561, 0.022922109812498093, 0.029958046972751617, 0.02491341345012188, -0.007054375484585762, 0.0032782747875899076, -0.0013625675346702337, 0.02299586310982704, 0.006025535520166159, -0.00732725765556097, 0.007290381472557783, 0.009639381431043148, -0.011874066665768623, -0.010546530596911907, -0.010133519768714905, -0.02925002947449684, 0.006825744174420834, 0.01089316513389349, 0.0024356585927307606, 0.0029095150530338287, -0.009521378204226494, 0.010133519768714905, -0.012257575988769531, 0.028733765706419945, -0.007183441426604986, -0.003615689929574728, 0.011431554332375526, 0.003993669059127569, 0.006102974992245436, 0.011733937077224255, -0.016004176810383797, -0.023925136774778366, 0.013467108830809593, -0.014986399561166763, 0.003477405058220029, 0.0024965039920061827, -0.02351212687790394, -0.014979023486375809, -0.006128787994384766, 0.001016855239868164, -0.0009440251160413027, 0.007146565243601799, 0.012891842983663082, 0.0230843648314476, 0.02317286655306816, 0.02930903062224388, -0.005675213411450386, 0.0002830231678672135, -0.006158289033919573, -0.01003764197230339, 0.005841155536472797, 0.0025739434640854597, -0.018024979159235954, -0.004956131801009178, -0.005538772325962782, -0.0030017050448805094, -0.010753036476671696, 0.024028390645980835, 0.0075411382131278515, 0.008378223516047001, -0.02764223702251911, -0.02032604068517685, 0.012626335956156254, 0.019396767020225525, -0.003674691542983055, 0.003908853977918625, -0.001974708866328001, -0.020503045991063118, -0.006338981445878744, -0.006291042547672987, -0.0021461821161210537, -0.008813359774649143, -0.002529692370444536, 0.0030256742611527443, 0.0028505134396255016, -0.01833473891019821, 0.006353731732815504, 0.004041607491672039, -0.007485824171453714, 0.00735675822943449, -0.0018437991384416819, 0.006906871218234301, 0.011807689443230629, 0.002044773194938898, -0.003536406671628356, -0.004993007984012365, 0.0018714560428634286, 0.013467108830809593, 0.006335293874144554, 0.007633328437805176, 0.017493965104222298, 0.013666238635778427, 0.005689964164048433, 0.014897896908223629, -0.009897513315081596, -0.017774222418665886, -0.022302594035863876, 0.002474378328770399, -0.01094479113817215, 0.010081893764436245, 0.0058890944346785545, -0.0006554705905728042, -0.008547852747142315, -0.012736964039504528, 0.019529519602656364, 0.021034060046076775, -0.01304672285914421, -0.011615934781730175, 0.008127466775476933, 0.0038019136991351843, -0.008665855973958969, 0.002677196403965354, -0.011984693817794323, -0.015052775852382183, -0.007426822558045387, 0.006722491700202227, -0.0024430337361991405, -0.002057679696008563, -0.009617256000638008, 0.01862974651157856, 0.013349105603992939, 0.005940720904618502, -0.0001827665837481618, -0.007876710034906864, -0.006335293874144554, -0.021004559472203255, 0.020517796277999878, 0.012641086243093014, 0.006844182498753071, 0.012567334808409214, 0.003064393997192383, -0.002828387776389718, 0.0009643069352023304, 0.007891460321843624, 0.010421152226626873, 0.00012664594396483153, -0.00467956205829978, -0.006132476031780243, 0.0030828320886939764, -0.00233240588568151, -0.004712750669568777, -0.0015156028093770146, -0.00127590901684016, 0.0034276226069778204, -0.033394888043403625, 0.027022719383239746, -0.006055036094039679, 0.011048044078052044, -0.012788590975105762, 0.006527049001306295, 0.004709063097834587, 0.03124133124947548, -0.018924754112958908, 0.00466849934309721, 0.02034079097211361, 0.00780295766890049, 0.00042292141006328166, -0.006073474418371916, 0.005324891768395901, -0.006283667404204607, 0.009152619168162346, 0.004004731774330139, 0.003742912085726857, -0.004037919919937849, 0.0028542010113596916, -0.008798609487712383, -0.011697061359882355, -0.018983755260705948, -0.0051958258263766766, -0.00928537268191576, 0.03681698068976402, 0.0011809533461928368, -0.01240508072078228, 0.003538250457495451, 0.0005254827556200325, 0.0004109367146156728, 0.02660970948636532, 0.0004964428953826427, -0.008857610635459423, -0.0016004176577553153, -0.010819412767887115, 0.013835868798196316, -0.005538772325962782, -0.0020208037458360195, 0.0029261091258376837, -0.011372553184628487, -0.02150607295334339, -0.015355158597230911, 0.016446687281131744, -0.006504923105239868, -0.031949352473020554, -0.0015801357803866267, 0.00509626092389226, -0.01093741599470377, -0.003908853977918625, 0.018024979159235954, 0.00106018444057554, 0.004310802090913057, -0.02329087071120739, -0.00843722466379404, -0.005549835506826639, 0.020827554166316986, -0.0006388764013536274, -0.009049366228282452, 0.03374889865517616, -0.012058446183800697, 0.0003311924228910357, 0.034987930208444595, 0.001838267664425075, 0.003055175067856908, 0.019411517307162285, -0.005288016051054001, 0.013201601803302765, -0.018187234178185463, -0.005070447456091642, 0.02492816373705864, 0.00736044580116868, 0.0030182991176843643, -0.013710490427911282, -0.0023600629065185785, -0.009713133797049522, 0.01836423948407173, -0.006287354975938797, 0.020916057750582695, 0.0010970605071634054, 0.009801636449992657, -0.010627658106386662, -0.000596469035372138, -9.31694739847444e-05, 0.0024467213079333305, -0.020768553018569946, -0.010996418073773384, -0.0008269438985735178, -0.006884745787829161, 0.004034232348203659, -0.021137312054634094, 0.019455768167972565, -0.008024213835597038, 0.012972970493137836, -0.0012906594201922417, 0.02653595618903637, -0.01463976502418518, -0.011660185642540455, -0.001868690364062786, 0.015104401856660843, 0.004107984248548746, 0.0013127849670127034, 0.00020765786757692695, 0.028719015419483185, 0.0366399772465229, 0.018305238336324692, -0.009078866802155972, -0.0026476955972611904, -0.022936860099434853, -0.010649783536791801, -0.006095599848777056, -0.016638442873954773, 0.021314317360520363, 0.011697061359882355, -0.02001628279685974, -0.011446304619312286, -0.029161525890231133, -0.006903183646500111, 0.0042259874753654, -0.0015699949581176043, 0.008016838692128658, -0.0009809010662138462, 0.0067667425610125065, -0.0022439034655690193, -0.015163403935730457, -0.0017497653607279062, 0.009410751052200794, 0.04749626666307449, 0.012205949984490871, 0.029854794964194298, -0.01559116505086422, 0.01557641476392746, -0.022848358377814293, 0.010067143477499485, -0.0012196730822324753, -0.01565016619861126, 0.004307114519178867, 0.007574326824396849, -0.015082276426255703, 0.025680433958768845, 0.006560237146914005, -0.006512298248708248, -0.007913585752248764, 0.0019968345295637846, -0.007950461469590664, -0.003886728547513485, 0.018216734752058983, -0.009455001913011074, 0.0016428249655291438, 0.0021554010454565287, -0.01095216628164053, 0.0035732826218008995, 0.0002936249948106706, 0.0013644113205373287, -0.0043476782739162445, 0.00035677512641996145, 0.00184011145029217, 0.02323186956346035, -0.003049643710255623, -0.03923604637384415, 0.004045295063406229, 0.001798626035451889, 0.007566951680928469, 0.016195930540561676, 0.0073715089820325375, -0.0021627764217555523, -0.016181180253624916, -0.028291253373026848, -0.016446687281131744, 0.006291042547672987, -0.007205566857010126, -0.0016160899540409446, -0.0037797882687300444, 0.0017442340031266212, 0.01864449679851532, -0.004391929600387812, 0.012604210525751114, 0.0038498525973409414, 0.00424811290577054, -0.020989809185266495, -0.00232503074221313, -0.009661506861448288, -0.005660463124513626, 0.002977735595777631, -0.02765698730945587, 0.0010804663179442286, -0.004616872873157263, 0.0022309969644993544, -0.0033889026381075382, 0.020709551870822906, 0.004115359392017126, -0.006619238760322332, 0.019765526056289673, -0.007633328437805176, 0.013039346784353256, 0.008031588979065418, -0.008024213835597038, 0.021181564778089523, -0.019337765872478485, 0.0036341280210763216, -0.03253936767578125, -0.015310907736420631, -0.0075300754979252815, -0.026963718235492706, -0.014824144542217255, -0.002533379942178726, 0.003176865866407752, 0.000900234910659492, -0.006025535520166159, 0.003742912085726857, -0.013629362918436527, -0.012781215831637383, 0.013865369372069836, 0.00466112419962883, -0.0004134719492867589, 0.007286693900823593, 0.009868012741208076, -0.010546530596911907, -0.022361595183610916, -0.008311846293509007, 0.004745938815176487, 0.01730221137404442, -0.011173422448337078, -0.007253505755215883, -0.004970882553607225, 0.0084888506680727, 0.004093233961611986, 0.003905166406184435, 0.0009633850422687829, 0.0005356236360967159, 0.010310524143278599, -0.004712750669568777, -0.015974676236510277, -0.006088224705308676, -0.005453957710415125, -0.0037834758404642344, 0.007972586899995804, -0.003538250457495451, 0.0009679945069365203, -0.006268917117267847, 0.016387686133384705, 0.004004731774330139, 0.02147657237946987, 0.0052068885415792465, 0.0022180902305990458, 0.008680606260895729, 0.007898835465312004, -0.008982989005744457, 0.004037919919937849, 0.026639210060238838, -0.002981423167511821, -0.010753036476671696, 0.012714838609099388, -0.003173178294673562, 0.0068331193178892136, 0.0043550534173846245, -0.00781770795583725, 0.0005706558004021645, -0.01867399737238884, 0.001701826578937471, 0.010782537050545216, 0.003545625600963831, -0.0042628636583685875, 0.0032192731741815805, -0.020503045991063118, 0.01849699206650257, -0.0020650550723075867, -0.01559116505086422, 0.0466112419962883, 0.007098626345396042, 0.0014473822666332126, -0.007507950067520142, 0.007920960895717144, -0.025473928079009056, 0.005409706383943558, 0.009875387884676456, 0.005391268525272608, -0.005162637680768967, -0.008761733770370483, -0.01693345047533512, 0.014529136940836906, 0.0009426422766409814, 0.020930808037519455, -0.01152005698531866, 0.008510977029800415, -0.01860024593770504, 0.009750009514391422, -0.005144199356436729, 0.006471734959632158, -0.005737902596592903, -0.0011367021361365914, -0.0006891199154779315, -0.0067778052762150764, -0.004635310731828213, 0.017626719549298286, -0.0030662380158901215, -0.01004501711577177, -0.00733832037076354, -0.0027786053251475096, -0.003470029914751649, 0.016402436420321465, 0.003128926968201995, 0.0020834929309785366, 0.0024835974909365177, 0.005361767951399088, -0.016195930540561676, -0.01711045578122139, 0.010443277657032013, 0.010399026796221733, 0.03540094196796417, -0.009477127343416214, -0.010539155453443527, 0.020960308611392975, -0.015310907736420631, 0.0052032009698450565, -0.008555227890610695, -0.005693651735782623, 0.01864449679851532, 0.018010228872299194, -0.015384660102427006, -0.008850235491991043, -0.014462759718298912, 0.014543887227773666, 0.00847410038113594, -0.0012630023993551731, -0.03841002285480499, 0.005018820986151695, 0.01154955755919218, 0.0038092888426035643, -0.012722213752567768, -0.010266273282468319], "67baf74b-8983-4047-a9a6-5bcfb3347273": [-0.0011893182527273893, -0.014254719018936157, 0.00019205651187803596, 0.013734872452914715, -0.003264426253736019, -0.03439190238714218, 0.03053409978747368, 0.02562292478978634, -0.018974371254444122, 0.052996911108493805, 0.012072734534740448, 0.008338052779436111, 0.008543254807591438, -0.01270202174782753, 0.02009614370763302, 0.049768395721912384, -0.011320325545966625, -0.005964546464383602, 0.004801733419299126, -0.041177257895469666, 0.037565696984529495, -0.01711387000977993, -0.05119112879037857, 0.048318296670913696, 0.022695371881127357, 0.008680056780576706, -0.013775913044810295, 0.02042446658015251, -0.018153561279177666, -0.01292774360626936, 0.029986893758177757, 0.02149152010679245, 0.003054094035178423, 0.005537041462957859, 0.015595373697578907, -0.007004237733781338, -0.0005236933357082307, -0.014227358624339104, -0.04418689012527466, 0.03160115331411362, 0.019931981340050697, 0.02731926366686821, 0.018550286069512367, -0.011874372139573097, -0.031573791056871414, 0.021518878638744354, -0.0018211703281849623, 0.006966617424041033, -0.022968975827097893, -0.026306932792067528, 0.028728319332003593, 0.020356066524982452, 0.02670365758240223, 0.013899034820497036, 0.036115601658821106, -0.038112904876470566, -0.0072983610443770885, 0.021847203373908997, -0.01166232954710722, -0.05778496339917183, 0.020711749792099, -0.01627938076853752, 0.04106781631708145, 0.009268303401768208, 0.042873598635196686, -0.007209440227597952, -0.009733428247272968, -0.0011149323545396328, -0.03266820311546326, 0.011833331547677517, 0.031737953424453735, 0.0008272217237390578, -0.0337899774312973, 0.04774373024702072, -0.007031598128378391, 0.0006596398307010531, 0.011197204701602459, 0.026060689240694046, 0.023830825462937355, -0.006716954987496138, -0.011737571097910404, -0.027209822088479996, 0.051163770258426666, 0.004203226882964373, 0.07414642721414566, 0.04150558263063431, -0.005348939448595047, -0.033489011228084564, 0.006826396100223064, -0.031737953424453735, 0.01162128895521164, 0.02095799334347248, -0.009316183626651764, 0.0056533231399953365, -0.014336799271404743, 0.010273794643580914, 0.03307860717177391, -0.0036184003110975027, -0.0038509629666805267, -0.027757028117775917, 0.018988050520420074, 0.033489011228084564, 0.007530923932790756, 0.03154643252491951, 0.00526001863181591, -0.01619729958474636, 0.030205776914954185, 0.0007669435581192374, -0.04073949530720711, 0.009979670867323875, -0.006586993113160133, -0.01704546995460987, -0.003358477493748069, 0.006932416930794716, -0.038550667464733124, -0.039699800312519073, -0.06024739146232605, -0.005540461745113134, -0.013598071411252022, -0.0241865087300539, 0.03447398543357849, -0.026033328846096992, -0.02533564157783985, -0.023051057010889053, -0.011457127518951893, 0.03275028616189957, -0.018769169226288795, 0.038331788033246994, 0.019548937678337097, 0.026963580399751663, -0.031190747395157814, -0.03444662317633629, 0.01751059480011463, 0.016252020373940468, 0.028919842094182968, 0.014801925048232079, -0.03469286486506462, 0.04243583232164383, -0.012715701945126057, 0.027373984456062317, -0.05740191787481308, -0.033270131796598434, -0.020602310076355934, -0.005547301843762398, 0.03294180706143379, -0.004630731418728828, -0.01627938076853752, 0.034118298441171646, -0.03816762566566467, 0.02119055576622486, -0.0990443006157875, -0.011053563095629215, -0.029056644067168236, 0.003413198050111532, 0.022517530247569084, -0.030944503843784332, -0.00014129032206255943, 0.020273985341191292, 0.011231404729187489, 0.044159531593322754, -0.0014022155664861202, -0.056526388972997665, -0.024200189858675003, 0.020232945680618286, 0.04008284583687782, 0.032887086272239685, 0.04569170996546745, 0.042873598635196686, -0.03228515759110451, 0.012961944565176964, 0.004032224882394075, -0.004791473504155874, 0.03409093990921974, 0.01634778268635273, -0.049385350197553635, -0.009145181626081467, -0.00397408427670598, 0.06199844926595688, 0.023529861122369766, -0.0037175812758505344, -0.006860596593469381, 0.009357224218547344, -0.0009148601675406098, 0.026498455554246902, 0.007879767566919327, 0.027127742767333984, 0.020506547763943672, 0.013857994228601456, 0.012421578168869019, -0.0004343448381405324, 0.0046478318981826305, -0.010260114446282387, -0.027373984456062317, 0.02946704812347889, 0.012920903973281384, -0.01142976712435484, -0.0008969049667939544, 0.003402937902137637, -0.02756550721824169, 0.019767820835113525, -0.0006254394538700581, -0.03285972401499748, 0.006860596593469381, 0.040028125047683716, -0.04265471547842026, 0.02723718248307705, -0.010034391656517982, -0.03439190238714218, 0.015691135078668594, -0.023228898644447327, 0.031218107789754868, -0.01649826392531395, -0.014035835862159729, -0.008570615202188492, 0.0002188824291806668, -0.010656838305294514, -0.022462809458374977, 0.02809903211891651, -0.02285953424870968, -0.04733332619071007, -0.0314917117357254, 0.012688341550529003, -0.007291520945727825, -0.04779845103621483, -0.044022731482982635, -0.009500865824520588, -0.03567783534526825, 0.02793487161397934, -0.004945375025272369, 0.0008161065634340048, 0.024077067151665688, -0.004969315137714148, -0.006039787083864212, -0.004729912616312504, -0.015417532064020634, 0.04030172899365425, 0.07463891059160233, 0.01296878419816494, 0.0029326826333999634, 0.009199902415275574, 0.0037175812758505344, -0.0002511590428184718, -0.0257050059735775, 0.004599951207637787, 0.006703274790197611, 0.03712793439626694, -0.012414738535881042, 0.04060269147157669, 0.010054911486804485, -0.005899565760046244, -0.00203492259606719, 0.036881688982248306, -0.0026522395201027393, 0.0023564063012599945, -0.05037032067775726, 0.03275028616189957, 0.024925237521529198, -0.021997684612870216, -0.00027509930077940226, 0.012524179182946682, 0.011689689941704273, 0.020082464441657066, 0.0066075134091079235, 0.024200189858675003, 0.013707512989640236, -0.02686781994998455, 0.0092135826125741, -0.022216567769646645, 0.003308886894956231, 0.02831791527569294, 0.029658570885658264, 0.004244267009198666, 0.013269747607409954, 0.018153561279177666, 0.022531211376190186, -0.020150864496827126, -0.0031430150847882032, 0.013338148593902588, 0.01604681834578514, 0.0165119431912899, -0.02785279043018818, -0.0018776009092107415, 0.0011491328477859497, 0.028290554881095886, 0.030342577025294304, -0.024761075153946877, -0.019124852493405342, 0.0018211703281849623, -0.03513063117861748, 0.0037825622130185366, 0.0022999756038188934, 0.008324372582137585, 0.0337899774312973, 0.0004907754482701421, 0.005533621646463871, 0.025841807946562767, -0.01619729958474636, -0.003580779768526554, 0.0029429427813738585, 0.047388046979904175, -0.0019460016628727317, -0.03737417608499527, 0.020766470581293106, 0.003827022621408105, 0.036033522337675095, -0.009370904415845871, 0.023215217515826225, -0.004705972503870726, -0.007325721438974142, 0.039645079523324966, 0.025075718760490417, -0.036334484815597534, 0.0020776730962097645, -0.016621384769678116, -0.008604816161096096, -0.020082464441657066, 0.01277726236730814, -0.016867628321051598, -0.016539303585886955, -0.020916953682899475, 0.016142578795552254, -0.010431116446852684, -0.05876993387937546, 0.02395394630730152, 0.05162889510393143, -0.03513063117861748, 0.030971864238381386, -0.00772928586229682, -0.018071481958031654, -0.0039946045726537704, -0.04281887784600258, -0.020082464441657066, -0.03310596942901611, 0.02347514219582081, -0.039262037724256516, -0.044487856328487396, -0.038961075246334076, -0.02692253887653351, 0.021286316215991974, -0.011224565096199512, -0.017975719645619392, -0.01116300467401743, 0.04612947255373001, -0.003502118866890669, 0.015171288512647152, 0.01123824529349804, 0.00779084675014019, 0.03499383106827736, -0.043092478066682816, 0.011053563095629215, 0.0007306056213565171, 0.0008165340987034142, 0.013844314031302929, -0.005225818138569593, 0.006238149479031563, -0.006487812381237745, -0.02440539188683033, 0.012298457324504852, -0.0028283714782446623, 0.02586916834115982, -0.013119266368448734, 0.009952310472726822, 0.0005523361614905298, -0.005013776011765003, -0.02365298382937908, -0.004982995335012674, 0.0013654502108693123, -0.026197491213679314, 0.004856454208493233, 0.007565124426037073, -0.00506165623664856, 0.027360305190086365, -0.005762764252722263, -0.01688130758702755, -0.0008909199386835098, -0.012838822789490223, 0.018755488097667694, 0.015923697501420975, 0.010821000672876835, 0.015978418290615082, 0.04388592764735222, 0.0072026001289486885, 0.022695371881127357, 0.03493911027908325, -0.004138246178627014, -0.007606164552271366, 0.012202695943415165, -0.012572060339152813, -0.02372138388454914, -0.0069768778048455715, -0.029494408518075943, 0.004623891320079565, -0.03874219208955765, -0.009548746049404144, -0.00928882323205471, 0.011361366137862206, -0.002046892885118723, -0.022777453064918518, 0.02547244355082512, -0.016908667981624603, -0.012134294956922531, -0.03099922463297844, 0.0028386316262185574, -0.007052118424326181, 0.005342099349945784, -0.051683615893125534, -0.0007237655809149146, 0.010691039264202118, 0.02264065109193325, -0.02017822489142418, 0.01549961231648922, 0.010301155038177967, 0.007660885341465473, 0.008495374582707882, 0.057292476296424866, 0.014377839863300323, -0.016908667981624603, 0.035650476813316345, -0.03307860717177391, 0.007339401636272669, 0.03701849281787872, 0.0032473262399435043, 0.015526972711086273, 0.015937376767396927, 0.003803082276135683, 0.044487856328487396, -0.00545154046267271, -0.003474758705124259, 5.317090472090058e-05, -0.012018013745546341, -0.014008475467562675, 0.034118298441171646, -0.007024758029729128, 0.007606164552271366, -0.008426973596215248, -0.01688130758702755, -0.025568204000592232, -0.025431403890252113, 0.03162851184606552, 0.01917957328259945, -0.014542002230882645, -0.004223747178912163, -0.004435789305716753, 0.013899034820497036, -0.03277764469385147, -0.01980886049568653, -0.04875606298446655, -0.010417436249554157, 0.005071916617453098, -0.03275028616189957, 0.014856644906103611, 0.004093785770237446, -0.048236217349767685, -0.009610307402908802, 0.017702117562294006, 0.003090004436671734, -0.016525624319911003, 0.01787995919585228, 0.033188048750162125, -0.07321617752313614, -0.010150672867894173, -0.027114061638712883, 0.02310577780008316, 0.01392639521509409, 0.015554333105683327, -0.004093785770237446, -0.010027552023530006, -0.0048154136165976524, 0.011183524504303932, 0.010526876896619797, -0.0037517817690968513, -0.0021341037936508656, -0.009760788641870022, 0.01656666398048401, 0.00510269682854414, -0.017319072037935257, -0.017920998856425285, -0.0026402694638818502, 0.01887861080467701, -0.020999033004045486, -0.004938534926623106, -0.010102792643010616, -0.004015124868601561, 0.0029172925278544426, -0.011231404729187489, 0.018673408776521683, -0.0032798165921121836, -0.025923889130353928, 0.012961944565176964, -0.008221771568059921, 0.0056020221672952175, -0.012831983156502247, 0.022120805457234383, 0.005290798842906952, 0.011176683939993382, -0.01924797333776951, 0.004459729418158531, -0.018221963196992874, 0.00790712796151638, -0.017236992716789246, -0.012873023748397827, -0.01896069012582302, -0.018153561279177666, 0.00985655002295971, -0.0184134840965271, 0.052613865584135056, -0.019398456439375877, 0.025527164340019226, -0.010198553092777729, 0.0013517700135707855, -0.013550191186368465, 0.03658072650432587, -0.0391525961458683, 0.016908667981624603, 0.01281146239489317, 0.02132735773921013, 0.006268929690122604, 0.006303130183368921, 0.0368543304502964, -0.009199902415275574, -0.006590413395315409, -0.02670365758240223, -0.030889783054590225, -0.0030335737392306328, -0.017893638461828232, -0.012681500986218452, 0.01250365935266018, -0.035185351967811584, 0.028263194486498833, -0.026129091158509254, -0.011087763123214245, 0.02976801060140133, -0.006214209366589785, -0.0063817910850048065, 0.019083812832832336, -0.04558226838707924, 0.012900383211672306, 0.03586935997009277, 0.021135834977030754, 0.014528322033584118, -0.06270981580018997, 0.03275028616189957, -0.01162128895521164, 0.007859247736632824, 0.002074253046885133, 0.024925237521529198, -0.01964469812810421, 0.005037716124206781, 9.047069761436433e-05, 0.019453177228569984, -0.02801695093512535, 0.030123695731163025, -0.004329768009483814, 0.008324372582137585, -0.006881116423755884, -0.016853947192430496, 0.02517148107290268, -0.04290095716714859, -0.02525356039404869, -0.01727803237736225, -0.01834508404135704, 0.026977259665727615, 0.004890654236078262, -0.0033294069580733776, 0.011361366137862206, -0.005612282548099756, -0.02203872613608837, -0.010506357066333294, -0.019754139706492424, 0.050069358199834824, 0.03398149833083153, 0.0023564063012599945, 0.039179954677820206, 0.007175239734351635, 0.01950789801776409, 0.04826357588171959, -0.017236992716789246, -5.990410500089638e-05, -0.04413217306137085, -0.012729382142424583, 0.027538146823644638, 0.00893997959792614, -0.010978322476148605, -0.015184968709945679, -0.03217571973800659, -0.010889401659369469, -0.0026727598160505295, -0.005523361265659332, -0.0018451105570420623, 0.015198648907244205, -0.012770421802997589, 0.02708670124411583, -0.015020807273685932, 0.03742889687418938, -0.009733428247272968, 0.014186318032443523, 0.0022657751105725765, 0.012223215773701668, 0.0234067402780056, 0.02210712619125843, 0.020438147708773613, 0.007927647791802883, 0.005222398322075605, 0.007722445763647556, -0.02508939988911152, 0.020315026864409447, 0.014487281441688538, -0.003426878247410059, 0.00041596213122829795, 0.011518687941133976, -0.005868785548955202, -0.013372348621487617, 0.025663966313004494, -0.016853947192430496, 0.010424275882542133, -0.0027941709849983454, -0.0072983610443770885, 0.021067434921860695, -0.0035602597054094076, 0.007236800622195005, 0.01856396719813347, -0.007004237733781338, 0.051136408001184464, 0.00783188734203577, 0.021163195371627808, 0.02042446658015251, 0.006778515409678221, 0.0257186871021986, 0.003686801064759493, -0.012879863381385803, -0.007134199608117342, -0.003090004436671734, -0.007708766032010317, -0.010082271881401539, -0.004192966502159834, -0.008078129962086678, 0.007708766032010317, 0.012845663353800774, -0.019165894016623497, -0.04826357588171959, -0.01779787801206112, -0.012448938563466072, -0.0038201825227588415, 0.06336646527051926, -0.015239689499139786, -0.0057832845486700535, -0.025663966313004494, 0.012462618760764599, 0.041177257895469666, 0.014500961638987064, -0.006337330676615238, 0.005605442449450493, -0.006631453987210989, 0.020397106185555458, 0.0006433946546167135, -0.032038915902376175, -0.0161288995295763, -0.0020862233359366655, -0.005270278546959162, 0.0024607174564152956, 0.05182041600346565, -0.006675914395600557, 0.015910016372799873, 0.009220422245562077, 0.020356066524982452, -0.002469267463311553, 0.019617337733507156, 0.00753776403144002, 0.030260497704148293, 0.00390568352304399, 0.0060124266892671585, -0.021286316215991974, 0.015294410288333893, -0.002046892885118723, -0.02227128855884075, -0.0028044311329722404, -0.022394409403204918, 0.011484487913548946, -0.009391424246132374, -0.0010704719461500645, -0.008604816161096096, -0.02638901397585869, -0.03324276953935623, 0.01447360124439001, -0.026443734765052795, -0.017236992716789246, 0.00386464293114841, -0.014446240849792957, -0.030725622549653053, -0.01619729958474636, -0.013344988226890564, 0.0022897154558449984, -0.006771675311028957, 0.014788244850933552, 0.008290172554552555, 0.002255515195429325, 0.010191713459789753, -0.0184271652251482, -0.009391424246132374, -0.02225760743021965, -0.03313332796096802, -0.021081114187836647, -0.0026471095625311136, -0.016703465953469276, -0.004832513630390167, 0.012681500986218452, -0.018974371254444122, -0.021354718133807182, -0.008324372582137585, -0.007079478818923235, 0.027962232008576393, 0.025267241522669792, -0.002587258815765381, 0.007038438227027655, 0.02164200134575367, 0.026211172342300415, 0.0006818700931034982, 0.02815375290811062, 0.022818494588136673, 0.03707321360707283, -0.009726588614284992, 0.018358765169978142, -0.013379189185798168, -0.011121964082121849, 0.007996048778295517, 0.0034456884022802114, 0.002115293638780713, -0.016210980713367462, -0.0009456405532546341, 0.0012483139289543033, 0.027456065639853477, -7.77524255681783e-05, -0.0017288292292505503, 0.011142483912408352, 0.016306741163134575, -0.011409247294068336, -0.016552984714508057, 0.017592675983905792, 0.012873023748397827, -0.018331404775381088, 0.01309190597385168, -0.02370770461857319, 0.017688436433672905, -0.007394122425466776, -0.003466208465397358, -0.007893447764217854, 0.03430982306599617, 0.016758186742663383, -0.04686820134520531, -0.02555452473461628, 0.02510307915508747, -0.026662616059184074, 0.03294180706143379, 0.022394409403204918, -0.02187456376850605, 0.012277936562895775, 0.033899419009685516, 0.008030249737203121, -0.007161559537053108, 0.015007127076387405, -0.041396141052246094, 0.01539017166942358, -0.0008639871375635266, -0.015143928118050098, -0.0030472539365291595, -0.010492676869034767, 0.01979518122971058, 0.03023313730955124, 0.017141230404376984, 0.024282271042466164, 0.040411170572042465, 0.014788244850933552, -0.012394217774271965, 0.02938496693968773, -0.007578804157674313, -0.018536606803536415, 0.006658813916146755, -0.0314917117357254, -0.01430943887680769, -0.003196025500074029, -0.019767820835113525, -0.039727162569761276, 0.030123695731163025, -0.009931790642440319, 0.03162851184606552, -0.0283999964594841, 0.04965895414352417, -0.024309631437063217, -0.012531019747257233, 0.005636222660541534, 0.015212329104542732, -0.008584295399487019, 0.00035589770413935184, 0.034966468811035156, 0.004261367488652468, -0.027962232008576393, 0.0021614639554172754, 0.007325721438974142, -0.012599419802427292, 0.018741808831691742, 0.024583233520388603, -0.024884197860956192, 0.038550667464733124, 0.0391525961458683, 0.02638901397585869, -0.008488534018397331, -0.026047009974718094, -0.02285953424870968, -0.045171864330768585, 0.016853947192430496, -0.0009559006430208683, -0.0130508653819561, -0.03543159365653992, 0.02026030607521534, -0.014131597243249416, -0.013208187185227871, 0.014665123075246811, 0.017838917672634125, 0.0013483499642461538, 0.024610593914985657, -0.012845663353800774, -0.003909103572368622, 0.04801733419299126, 0.01059527788311243, -0.0002592816308606416, 0.019589977338910103, 0.030068974941968918, 0.015855295583605766, -0.008734777569770813, 0.0016920638736337423, -0.012592580169439316, -0.0007023903308436275, -0.025267241522669792, 0.04437841475009918, 0.008105490356683731, 0.03228515759110451, -0.0030147635843604803, -0.00874845776706934, -0.025458764284849167, -0.009008380584418774, -0.015349131077528, -0.04251791164278984, -0.004798313602805138, 0.0006412571528926492, -0.014733524061739445, -0.003168665338307619, 0.019589977338910103, 0.006918737199157476, 0.029357606545090675, 0.05365355685353279, 0.033051248639822006, -0.03269556537270546, -0.007120519410818815, -0.019056452438235283, 0.005759343970566988, 0.021313676610589027, 0.005386559758335352, 0.016005778685212135, -0.006689594592899084, -0.008461174555122852, 0.018522925674915314, 0.01902909204363823, -0.02385818585753441, 0.003413198050111532, -0.027907511219382286, -0.01673082634806633, 0.0024162568151950836, 0.01507552806288004, -0.00866637658327818, -0.006935837212949991, -0.007031598128378391, 0.01261994056403637, 0.01796204037964344, 0.025978609919548035, -0.004534970503300428, -0.0011397276539355516, 0.006480972282588482, -0.0027685207314789295, -0.03439190238714218, 0.01032167486846447, 0.02104007452726364, 0.009747108444571495, -0.017674757167696953, 0.022435449063777924, -0.02218920737504959, -0.014528322033584118, 0.006952937226742506, 0.0035089589655399323, -0.008604816161096096, 0.02740134485065937, 7.940900832181796e-05, 0.0026385593228042126, 0.006617773789912462, -0.004630731418728828, -0.013577551580965519, 0.009678707458078861, 0.012565219774842262, -0.014090556651353836, 0.004750432912260294, -0.020602310076355934, 0.010335355065762997, -0.029439687728881836, -0.037948742508888245, -0.0022059245966374874, 0.05039767920970917, -0.05641694739460945, 0.022161846980452538, 0.007852407172322273, -0.003946723882108927, 0.007626684848219156, -0.004288727883249521, -0.004346868488937616, 4.8869136662688106e-05, -0.008639016188681126, 0.056143343448638916, 0.023215217515826225, 0.03655336797237396, -0.003226805943995714, -0.0057832845486700535, -0.015253369696438313, -0.015841616317629814, 0.00898102018982172, 0.009596627205610275, -0.0008951949421316385, 0.01666242629289627, -0.010773119516670704, -0.027798069640994072, -0.00391252338886261, 0.0010114762699231505, 0.03160115331411362, -0.0033071767538785934, 0.004538390319794416, -0.00498641561716795, 0.0007635235087946057, 0.03945355862379074, -0.005718303844332695, -0.027182461693882942, 0.0055062612518668175, -0.04618419334292412, -0.010191713459789753, -0.02217552624642849, -0.0038407028187066317, 0.010615797713398933, -0.009829189628362656, -0.007893447764217854, -0.015472251921892166, 0.020383426919579506, 0.023215217515826225, -0.022531211376190186, 0.0037517817690968513, 0.005844844970852137, 0.007366762030869722, 0.011853852309286594, -0.003360187401995063, 0.017086509615182877, 0.02508939988911152, 0.009343544021248817, -0.01971310004591942, 0.006108188070356846, 0.0006228744168765843, -0.005516521632671356, 0.024350671097636223, 0.0032592962961643934, 0.007236800622195005, 0.008221771568059921, 0.018769169226288795, -0.020014062523841858, -0.0076130046509206295, -0.032805006951093674, -0.014747204259037971, -0.01186069194227457, -0.006785355508327484, -0.015609053894877434, 0.0010730369249358773, -0.011115123517811298, -0.019918302074074745, -0.015609053894877434, -0.001497121644206345, -0.03275028616189957, -0.012236895971000195, 0.0077429660595953465, -0.04265471547842026, -0.0028027212247252464, -0.009924950078129768, -0.01020539365708828, -0.0203287061303854, -0.012202695943415165, 0.029713289812207222, -0.03636184334754944, -0.005383139941841364, -0.022353367879986763, -0.004080105572938919, 0.0013380899326875806, 0.0019118012860417366, 0.008686896413564682, -0.04098573699593544, -0.004104045685380697, -0.009110981598496437, -0.00798236858099699, -0.035103268921375275, 0.019083812832832336, 0.024925237521529198, -0.025746047496795654, 0.03961772099137306, 0.05310635268688202, 0.025198839604854584, 0.014008475467562675, -0.01304402481764555, -0.02117687650024891, 0.004692292306572199, -0.052449703216552734, -0.021081114187836647, -0.002211054554209113, -0.010821000672876835, 0.007476203143596649, 0.020506547763943672, -0.000725048070307821, -0.014884005300700665, 0.024432752281427383, 0.03124546818435192, 0.014446240849792957, -0.02547244355082512, -5.6443985840815e-07, -0.03559575602412224, -0.02848207764327526, 0.0001872470893431455, -0.0033020467963069677, 0.004257947206497192, 0.013037185184657574, 0.011108283884823322, -0.010909921489655972, -0.015048167668282986, -0.005779864266514778, -0.0241865087300539, 0.005417340435087681, -0.01439152006059885, -0.008789497427642345, -0.05980962514877319, -0.022435449063777924, -0.01618362031877041, 0.010998842306435108, 0.013522830791771412, -0.019083812832832336, 0.0261017307639122, -0.0009217002661898732, -0.01039691548794508, -0.011463967151939869, 0.011450287885963917, -0.022161846980452538, 0.02692253887653351, 0.014268399216234684, -0.01679922640323639, 0.010109632275998592, -0.004329768009483814, -0.02079383097589016, -0.006843496114015579, 0.01819460280239582, 0.006645134184509516, 0.0016818037256598473, 0.029412327334284782, -0.02357090264558792, -0.033899419009685516, 0.03502118960022926, -0.0012312136823311448, 0.004329768009483814, -0.0009875360410660505, -0.033270131796598434, -0.002992533380165696, 0.009623986668884754, -0.0029309727251529694, -0.0040869456715881824, -0.011190364137291908, 0.013495470397174358, -0.0101643530651927, -0.020014062523841858, 0.027579186484217644, 0.0026129090692847967, 0.023379379883408546, 0.009822349064052105, -0.021778803318738937, 0.005465220659971237, 0.009952310472726822, -0.018933331593871117, -0.002033212687820196, -0.0199456624686718, 0.006183428689837456, 0.014637762680649757, -0.0009439305285923183, 0.0013637401862069964, -0.033352211117744446, -0.018618687987327576, -0.0072026001289486885, 0.00898102018982172, 0.01618362031877041, -0.007838726975023746, 0.013290268369019032, -0.001826300285756588, 0.028208473697304726, 0.020930632948875427, 0.012332657352089882, 0.001848530606366694, -0.012106934562325478, 0.014104236848652363, 0.014692483469843864, 0.04268207401037216, 0.04437841475009918, -0.016306741163134575, 0.009323024190962315, 0.0071478793397545815, -0.011115123517811298, 0.012216376140713692, 0.01039691548794508, 0.019357414916157722, -0.0013782753376290202, 0.019070131704211235, 0.0203287061303854, -0.0029788531828671694, -0.03184739500284195, 0.0032798165921121836, 0.003308886894956231, -0.009124661795794964, -0.0011773480800911784, -0.003325986908748746, 0.014542002230882645, -0.01304402481764555, 0.010732079856097698, -0.0026539494283497334, 0.022531211376190186, 0.007209440227597952, 0.03444662317633629, 0.02024662494659424, -0.012346337549388409, 0.06101347878575325, -0.02080751210451126, 0.020219264551997185, -0.0063817910850048065, -0.005362619645893574, 0.020711749792099, -0.013960595242679119, 0.024610593914985657, -0.013611751608550549, -0.006436511874198914, -0.001792099908925593, 0.003325986908748746, -0.0008558645495213568, -0.008632175624370575, -0.0035739396698772907, -0.012147975154221058, -0.029056644067168236, -0.027811748906970024, 0.013173986226320267, -0.015951057896018028, -0.004459729418158531, 0.019603658467531204, -0.011600769124925137, -0.028071671724319458, -0.0008434668998233974, -0.010663678869605064, 0.04030172899365425, 0.003064354183152318, -0.032339878380298615, 0.004169026389718056, -0.015061847865581512, 0.00634759059175849, -0.007414642721414566, 0.012688341550529003, 0.03209363669157028, -0.0016741086728870869, 0.003264426253736019, -0.015951057896018028, 0.0058516850695014, 0.002211054554209113, -0.010923601686954498, 0.03729209676384926, -0.01316030602902174, 0.01956261694431305, -0.02856415882706642, 0.025595564395189285, 0.00381676247343421, -0.012996144592761993, 0.007571964059025049, -0.012626780197024345, 0.005034295842051506, -0.001896411064080894, -0.00041467961273156106, 0.00782504677772522, -0.0007938763592392206, 0.002395736752077937, -0.014719843864440918, 0.016210980713367462, 0.017442194744944572, -0.02309209667146206, -0.03285972401499748, -0.029904812574386597, 0.01162812951952219, 0.00390568352304399, -0.022599611431360245, -0.017606355249881744, 0.008741617202758789, 0.03198419511318207, -0.007489883340895176, 0.027729667723178864, 0.012866183184087276, -0.026580536738038063, -0.010212233290076256, 0.008132850751280785, 0.004811993334442377, 0.0029993734788149595, -0.017360113561153412, -0.016470903530716896, -0.024583233520388603, -0.0029685930348932743, -0.025663966313004494, 0.004247687291353941, 0.003498699050396681, 0.016621384769678116, -0.004658091813325882, 0.0061047677882015705, 0.0019340314902365208, 0.005448120646178722, 0.006248409394174814, -0.003125914838165045, -0.0007797686848789454, -0.012394217774271965, 0.025349322706460953, 0.005844844970852137, 0.027415025979280472, 0.015841616317629814, 0.037401534616947174, 0.00898102018982172, -0.002318785758689046, 0.013515990227460861, -0.014733524061739445, 0.030752982944250107, 0.03151907026767731, -0.010841520503163338, -0.007031598128378391, -0.01539017166942358, -0.014555682428181171, 0.010684198699891567, 0.03198419511318207, -0.005386559758335352, 0.025212520733475685, -0.03507591038942337, 0.012845663353800774, 0.019453177228569984, -0.01726435124874115, -0.0018861510325223207, 0.006203948985785246, 0.024036027491092682, 0.012271096929907799, 0.0038201825227588415, 0.00571488356217742, 0.018016761168837547, 0.002537668216973543, -0.007503563538193703, 0.0013868254609405994, 0.03275028616189957, 0.0005339534254744649, 0.023051057010889053, -0.018468204885721207, 0.01850924640893936, 0.03846858814358711, 0.023543542250990868, -0.03031521663069725, -0.022900575771927834, -0.008420133963227272, -0.0036902211140841246, 0.01794835925102234, -0.0018074901308864355, -0.019070131704211235, -0.010677359066903591, -0.006173168774694204, 0.011771771125495434, -0.02686781994998455, 0.03430982306599617, -0.0029788531828671694, -0.01507552806288004, -0.018208282068371773, -0.02495259791612625, 0.00381676247343421, 0.022668011486530304, 0.03753833845257759, -0.03310596942901611, -0.00021011858189012855, 0.015130248852074146, 0.022161846980452538, 0.012654140591621399, 0.007859247736632824, -0.0023820565547794104, 0.010567917488515377, 0.004076685290783644, 0.005684103351086378, -0.0017852599266916513, -0.00036808158620260656, 0.003926203586161137, -0.019124852493405342, -0.01558169350028038, -0.005119796842336655, 0.003101974492892623, -0.04106781631708145, 0.02886512130498886, 0.005324999336153269, -0.014405200257897377, 0.007229960523545742, 0.006614353507757187, -0.028372636064887047, -0.01649826392531395, -0.0031430150847882032, -0.009562426246702671, 0.013262907974421978, 0.010766279883682728, 0.027360305190086365, -0.014336799271404743, -0.03231251984834671, 0.006077407859265804, 0.001019171322695911, -0.008755297400057316, 0.01288670301437378, -0.03116338700056076, 0.00920674204826355, 0.012565219774842262, 0.008221771568059921, 0.009706067852675915, -0.0025120179634541273, 0.02480211667716503, 0.00885789841413498, -0.004459729418158531, 0.02294161543250084, 0.0253219623118639, -0.014254719018936157, 0.030752982944250107, -0.016074178740382195, 0.012209535576403141, 0.006053467281162739, 0.008803177624940872, -0.008509054780006409, 0.025458764284849167, 0.0039946045726537704, -0.03805818408727646, -0.008618496358394623, -0.0014595012180507183, -0.0002699692558962852, 0.019439496099948883, 0.015472251921892166, -0.0024179669562727213, -0.016785547137260437, -0.01771579682826996, -0.004791473504155874, -0.0038304426707327366, -0.022763773798942566, 1.0093120181409176e-05, 0.02140943892300129, 0.025732366368174553, -0.01681290753185749, -0.01063631847500801, -0.0421895906329155, 0.012572060339152813, -0.005964546464383602, 0.02134103700518608, 0.0030729041900485754, -0.03819498419761658, -0.008885258808732033, -0.003226805943995714, -0.012674661353230476, 0.013522830791771412, 0.02056126855313778, -0.019070131704211235, 0.06281925737857819, 0.022243928164243698, 0.01589633710682392, -0.0024778174702078104, -0.0018707608105614781, 0.0030831643380224705, 0.002937812590971589, -0.02087591215968132, 0.0009447855409234762, 0.031573791056871414, 0.005304479040205479, 0.004032224882394075, 0.0041827065870165825, 0.0031413049437105656, -0.0006395471282303333, 0.0024504573084414005, 0.021299997344613075, 0.04084893316030502, -0.004582851193845272, 0.012031693942844868, 0.020834872499108315, 0.008639016188681126, 0.015102888457477093, -0.010020711459219456, 0.035814639180898666, 0.005222398322075605, 0.018399804830551147, -0.023817144334316254, -0.011320325545966625, -0.02347514219582081, 0.0014193158131092787, 0.008105490356683731, 0.023967627435922623, -0.0005925215664319694, 0.010718399658799171, 0.007476203143596649, -0.022886894643306732, 0.005205297842621803, -0.032339878380298615, -0.0031088145915418863, 0.0005933765787631273, -0.023201538249850273, -0.0002676179865375161, -0.008563775569200516, 0.006645134184509516, 0.003158405190333724, 0.016840267926454544, 0.014459921047091484, -0.013625431805849075, 0.003567099804058671, -0.006597253493964672, -0.0004681177088059485, -0.01193593256175518, -0.027291903272271156, -0.007674565538764, -0.00390568352304399, -0.004558910615742207, -0.005400239955633879, -0.007688245736062527, -0.014213678427040577, -0.01950789801776409, -0.00435370858758688, 0.0035499995574355125, 0.008365413174033165, -0.0013962305383756757, -0.03636184334754944, 0.010718399658799171, -0.018988050520420074, -0.016689786687493324, -0.001379130408167839, 0.0074283224530518055, -0.0021477839909493923, 0.03904315456748009, -0.023899225518107414, 0.03559575602412224, -0.006152648478746414, 0.02195664495229721, -0.002831791527569294, -0.016402503475546837, -0.011286125518381596, 0.009706067852675915, -0.006320230197161436, -0.0064194113947451115, -0.018522925674915314, 0.011518687941133976, -0.010027552023530006, 0.022380728274583817, -0.020000383257865906, 0.0025923887733370066, 0.008057610131800175, -0.03368053585290909, -0.029713289812207222, -0.014966086484491825, -0.027798069640994072, 0.04027436673641205, -0.016990749165415764, 0.009644507430493832, 0.007339401636272669, -0.013002985157072544, 0.00508217653259635, -0.0046888720244169235, -0.007065798621624708, 0.027880150824785233, 0.046922922134399414, -0.04618419334292412, 0.008960499428212643, -0.019070131704211235, 0.002457297407090664, -0.0036184003110975027, -0.032421961426734924, 0.0060090068727731705, -0.0024880776181817055, -0.02500731870532036, -0.011641809716820717, -0.011764930561184883, 0.014665123075246811, -0.031026585027575493, 0.02370770461857319, 0.027688628062605858, 0.026156451553106308, -0.020533908158540726, 0.02157359942793846, -0.00642967177554965, 0.006703274790197611, 0.013748552650213242, -0.013557030819356441, -0.011751250363886356, -0.01407687645405531, 0.026142770424485207, 0.003464498557150364, -0.005656742956489325, -0.014610402286052704, 0.005078756716102362, 0.007195760030299425, 0.015485932119190693, 0.036498647183179855, -0.012606260366737843, -0.018673408776521683, -0.02886512130498886, -0.004487089812755585, -0.02370770461857319, 0.004117725882679224, -0.011347685940563679, 0.026457414031028748, -0.03406357765197754, 0.008344893343746662, -0.007099999114871025, -0.006628033705055714, -0.025445083156228065, 0.01688130758702755, -0.012018013745546341, -0.012298457324504852, 0.028290554881095886, 0.014049516059458256, -0.020821191370487213, 0.023447781801223755, 0.0002699692558962852, 0.004251107107847929, 0.016320422291755676, -0.0006117593147791922, 0.03406357765197754, -0.044460494071245193, -0.00470255222171545, 0.016676105558872223, -0.020588628947734833, -0.0002855731872841716, -0.021395757794380188, 0.01526704989373684, 0.007756646256893873, 0.015102888457477093, -0.025759726762771606, -0.042326390743255615, -0.001882730983197689, 0.006262089591473341, -0.0023461461532860994, 0.007961848750710487, 0.006156068295240402, -0.00028386316262185574, -0.001519351964816451, -0.015226009301841259, -0.0017040339298546314, -0.007175239734351635, 0.007250480819493532, -0.0033789975568652153, -0.016607705503702164, 0.0002714655129238963, -0.011949612759053707, 0.0013970854924991727, 0.002082803286612034, -0.027456065639853477, -0.01588265597820282, 9.549387323204428e-05, 0.0019340314902365208, -0.0046478318981826305, 0.0016689785989001393, -0.02203872613608837, -0.0033311170991510153, -0.027921190485358238, -0.0010431116679683328, 0.006022687070071697, 0.01864604838192463, 0.017702117562294006, 0.012407897971570492, 0.036033522337675095, -2.2216887373360805e-05, 0.015061847865581512, 0.00048735542804934084, -0.0211084745824337, -0.01581425592303276, 0.002541088266298175, -0.003591039916500449, -0.009193062782287598, 0.008290172554552555, 0.006306549999862909, 0.05354411527514458, 0.0157321747392416, 0.0038714830297976732, -0.01155288890004158, 0.0017732897540554404, -0.022312328219413757, -0.0004245122254360467, -0.00437422888353467, 0.014022155664861202, -0.0019374515395611525, -0.008597975596785545, -0.01530809048563242, 0.014022155664861202, 0.008146530948579311, -0.025431403890252113, 0.013974275439977646, 0.013173986226320267, 0.027510786429047585, -0.012613099999725819, 0.011566569097340107, 0.014131597243249416, -0.0028232415206730366, -0.0012688341084867716, 0.02318785898387432, -0.004822253715246916, 0.010301155038177967, -0.008235451765358448, 0.00897417962551117, -0.004839353729039431, 0.009904430247843266, -0.012312136590480804, -0.022914255037903786, -0.004398168995976448, -0.005718303844332695, 0.0014791664434596896, 0.0165119431912899, -0.012455778196454048, 0.010458476841449738, -0.011881212703883648, 0.017223311588168144, 0.0001629861944820732, 0.0013209896860644221, 0.004271627403795719, 0.031737953424453735, -0.016867628321051598, -0.007141039706766605, 0.006576733198016882, 0.002399156801402569, 0.017469555139541626, -0.01530809048563242, -0.025746047496795654, -0.017168590798974037, 0.014172637835144997, 0.005044556222856045, 0.022599611431360245, -0.008310692384839058, 0.027893830090761185, -0.00763352494686842, -0.016402503475546837, -0.0034815988037735224, -0.01979518122971058, 0.008454333990812302, -0.02057494968175888, -0.022298648953437805, 0.007325721438974142, -0.027264542877674103, -0.018167242407798767, 0.0008272217237390578, -0.010656838305294514, -0.0037517817690968513, -0.006026106886565685, 0.009049421176314354, 0.015239689499139786, -0.036334484815597534, 0.0023444360122084618, 0.008837378583848476, 0.0030335737392306328, 0.034118298441171646, 0.008201251737773418, -0.0016202430706471205, -0.006330490577965975, -0.013290268369019032, -0.006115028169006109, -0.01396743580698967, 0.003500408958643675, 0.004360548686236143, 0.020533908158540726, -0.027456065639853477, 0.0028010110836476088, -0.03031521663069725, -0.012729382142424583, -0.005749084055423737, -0.002306815702468157, -0.002142653800547123, 0.023365700617432594, 0.0027309004217386246, -0.005752503871917725, -0.0057867043651640415, 0.013639112003147602, -0.008269651792943478, -0.006901636719703674, 0.022544890642166138, -0.004162186291068792, 0.004028805065900087, 0.01826300285756588, -0.015609053894877434, 0.0030233135912567377, 0.012407897971570492, -0.011648649349808693, -0.011525528505444527, 0.0044084289111196995, -0.013680152595043182, -0.009685548022389412, -0.0010131862945854664, -0.026512134820222855, 0.007503563538193703, 0.01941213570535183, 0.009035740979015827, -0.002903612330555916, -0.009986511431634426, -0.002385476604104042, -0.005362619645893574, -0.00024346396094188094, -0.006227889098227024, 0.009569266811013222, 0.018098842352628708, -0.0038099223747849464, -0.002010982483625412, -0.02370770461857319, -0.011115123517811298, 0.03009633533656597, -0.0006096218130551279, 0.014418880455195904, 0.006501492578536272, 0.02448747307062149, -0.00253082811832428, -0.00794132798910141, -0.0018348504090681672, 0.01856396719813347, -0.013803273439407349, 0.013741713017225266, 0.03570519760251045, 0.019535256549715996, 0.022585932165384293, 0.0001646962045924738, 0.024528512731194496, -0.00508217653259635, -0.039262037724256516, 0.0010542267700657248, 0.014979766681790352, 0.021505199372768402, -0.030643541365861893, 0.0077976868487894535, -0.009623986668884754, 0.01396743580698967, 0.003274686401709914, -0.015526972711086273, 0.03474758565425873, -0.022503850981593132, -0.004148506093770266, 0.005324999336153269, 0.002995953429490328, -0.01242841873317957, 0.0034679186064749956, 0.003474758705124259, -0.0070179179310798645, 0.023899225518107414, 0.017551634460687637, 0.015007127076387405, -0.017360113561153412, -0.01558169350028038, 0.009849709458649158, 0.001123482477851212, -0.027264542877674103, -0.008871578611433506, -0.015704814344644547, -0.008365413174033165, -0.0030147635843604803, -0.035568397492170334, 0.008987859822809696, -0.002630009315907955, -0.014063196256756783, 0.009788149036467075, 0.02623853273689747, 0.01062947791069746, -0.010793640278279781, 0.012907223775982857, -0.010608958080410957, 0.00885789841413498, -0.0017852599266916513, -0.0036697008181363344, 0.015554333105683327, 0.0065151723101735115, 0.005885885562747717, -0.013905874453485012, -8.742471982259303e-05, 0.009938630275428295, 0.01787995919585228, -0.003438848303630948, -0.010485836304724216, 0.005755924154073, -0.01078679971396923, 0.009494025260210037, 0.004747012630105019, -0.011990653350949287, -0.016525624319911003, -0.0003274686459917575, -0.00948034506291151, -0.016785547137260437, -0.003625240409746766, -0.037264734506607056, -0.03693640977144241, 0.020000383257865906, 0.007455682847648859, -0.00664171390235424, -0.020301345735788345, 0.03307860717177391, 0.005841425154358149, 0.005338679533451796, 0.007763486355543137, 0.0035739396698772907, 0.014049516059458256, 0.02400866709649563, -0.005834585055708885, -0.02272273227572441, 0.0026864400133490562, 0.01316714659333229, 0.022435449063777924, 0.00913834199309349, 0.006480972282588482, 0.027141422033309937, 0.0025650286115705967, -0.014514641836285591, 0.019165894016623497, 0.009323024190962315, 0.045472826808691025, 0.006279190070927143, -0.006467292085289955, 0.018591327592730522, -0.01787995919585228, 0.0015065267216414213, 0.004705972503870726, -0.005680683068931103, 0.004045905079692602, 0.008242291398346424, -0.001686078729107976, 0.015855295583605766, -0.0012970494572073221, 0.004671772010624409, -2.3365806555375457e-05, -0.00234101596288383, -0.004261367488652468, -0.0028950623236596584, 0.0360882431268692, 0.015485932119190693, 0.012914063408970833, -0.005755924154073, -0.0017749997787177563, -0.0042203268967568874, -0.008426973596215248, 0.0027086702175438404, 0.013379189185798168, -0.010643158107995987, -0.01316030602902174, -0.0038817431777715683, 0.01911117322742939, -0.01462408248335123, 0.011983813717961311, -0.02026030607521534, 0.009644507430493832, 0.00658015301451087, -0.009699228219687939, 0.009377744048833847, 0.015855295583605766, -0.006689594592899084, -0.0008554370142519474, -0.005513101350516081, -0.006645134184509516, 0.0014176057884469628, 0.012004333548247814, 0.010923601686954498, 0.005803804378956556, 0.013919554650783539, -0.02924816496670246, 1.7380740246153437e-05, -0.013714352622628212, -0.004897494334727526, 0.006593833211809397, 0.004668352194130421, 0.0033892577048391104, 0.001603142824023962, -0.015089208260178566, 0.00886473897844553, -0.009589786641299725, -0.004158766474574804, 0.009220422245562077, -0.006990558002144098, 0.0032610062044113874, 0.021683041006326675, 0.0025906788650900126, -0.00932986382395029, 0.008105490356683731, 0.005755924154073, -0.02233968861401081, 0.01926165446639061, 0.010985162109136581, 0.023201538249850273, -0.003076324239373207, -0.008084969595074654, -0.0037039013113826513, 0.0022264448925852776, -0.007154719438403845, 0.0044050090946257114, -0.0012226635590195656, -0.00870741717517376, -0.028345275670289993, 0.004110885784029961, 0.00790712796151638, -0.024501152336597443, -0.014227358624339104, 0.013420229777693748, 0.011368206702172756, -0.012770421802997589, 0.02064334973692894, -0.014760884456336498, 0.015061847865581512, -0.0010550817241892219, 0.0073872823268175125, 0.0020178223494440317, -0.02963121049106121, -0.0014603562885895371, -0.012373697943985462, -0.0009370904299430549, -0.013550191186368465, -0.001872470835223794, 0.012442098930478096, -0.006412571296095848, -0.004678612109273672, -0.01681290753185749, 0.008187571540474892, -0.03124546818435192, 0.009083621203899384, 0.0022332847584038973, 0.0017767098033800721, 0.013775913044810295, -0.009815509431064129, -0.004227166995406151, -0.008556935004889965, 0.008618496358394623, 0.013427069410681725, 0.005246338434517384, -0.004859874024987221, 0.008474854752421379, 0.006227889098227024, 0.012387378141283989, 0.0029172925278544426, 0.026347972452640533, 0.011723890900611877, -0.020698070526123047, 0.0011328875552862883, -0.015951057896018028, 0.008276492357254028, -0.01415895763784647, -0.01909749209880829, -0.006333910394459963, 0.006238149479031563, -0.005311319138854742, 0.028536798432469368, -0.04161502420902252, 0.0067374748177826405, -0.0184271652251482, -0.017059149220585823, -0.01216849498450756, -0.011888052336871624, -0.007209440227597952, 0.01539017166942358, -0.007024758029729128, -0.012031693942844868, -0.011853852309286594, -0.001848530606366694, 0.029904812574386597, 0.01972677931189537, -0.004032224882394075, -0.008126010186970234, 0.011258765123784542, 0.019015410915017128, 0.027975911274552345, 0.026990940794348717, 0.006576733198016882, -0.0128593435510993, -0.024063387885689735, -0.017756838351488113, -0.01926165446639061, 0.0031618252396583557, 0.001450951094739139, -0.00579696474596858, -0.03537687286734581, 0.024678993970155716, -0.014801925048232079, 0.008324372582137585, 0.015759535133838654, 0.000351408903952688, 0.016320422291755676, 0.017223311588168144, 0.0322304405272007, -0.031108666211366653, 0.0013628851156681776, 0.011094603687524796, 0.0014073456404730678, -0.0016587184509262443, 0.012558380141854286, 0.013762232847511768, -0.03015105612576008, -0.0006138968165032566, 0.018454525619745255, -0.00783188734203577, 0.014459921047091484, -0.007134199608117342, 0.01458304189145565, -0.009124661795794964, 0.0032233858946710825, 0.009275143034756184, 0.013987955637276173, -0.005838004872202873, 0.00985655002295971, -0.002541088266298175, 0.015855295583605766, -0.003030153689906001, -0.0053762998431921005, 0.016840267926454544, -0.020670710131525993, -0.01020539365708828, -0.012599419802427292, 0.02317417785525322, -0.017551634460687637, -0.010862041264772415, 0.02117687650024891, -0.025841807946562767, 0.018331404775381088, 0.021915603429079056, -0.0103558748960495, -0.004004864487797022, 0.020123504102230072, 0.013105586171150208, 0.016689786687493324, -0.009596627205610275, 0.01078679971396923, 0.03061618097126484, 0.005078756716102362, -0.028263194486498833, 0.0004715377581305802, 0.02317417785525322, -0.0011730730766430497, -0.004004864487797022, -0.00444946950301528, -0.004517870489507914, -0.009993351064622402, 0.01688130758702755, 0.02618381194770336, -0.04161502420902252, -0.003360187401995063, -0.00928882323205471, -0.020930632948875427, 0.009658187627792358, -0.008625335991382599, -0.023146817460656166, -0.007927647791802883, 0.008755297400057316, -0.010684198699891567, 0.004158766474574804, -0.01458304189145565, -0.0029275526758283377, 0.0020451827440410852, -0.006303130183368921, 0.020055104047060013, -2.995205250044819e-05, 0.006392051000148058, -0.000994376023299992, 0.012455778196454048, -0.004216907080262899, -0.025116760283708572, 0.002329045906662941, 0.007551444228738546, 0.02094431221485138, 0.03715529292821884, -0.0036013000644743443, 0.018098842352628708, -0.0006352720665745437, 0.017825238406658173, 0.010027552023530006, 0.0005583211896009743, 0.0018006500322371721, -0.007674565538764, -0.010916761122643948, 0.011833331547677517, 0.0003469201037660241, -0.017989400774240494, 0.026990940794348717, -0.00658015301451087, 0.007127359509468079, -0.01756531558930874, -0.0052805389277637005, 0.020315026864409447, 0.02370770461857319, 0.006805875804275274, -0.004155346192419529, -0.009117821231484413, 0.015321770682930946, 0.018837569281458855, 0.012134294956922531, -0.0035294792614877224, 0.005711463745683432, -0.005130057223141193, 0.026744697242975235, -0.013454429805278778, 0.01177861075848341, 0.014938726089894772, 0.010732079856097698, 0.008331213146448135, 0.0068298159167170525, -0.010766279883682728, -0.013755393214523792, -0.002842051675543189, -0.0048701344057917595, -0.012448938563466072, 0.004760692827403545, 0.01603313907980919, 0.009323024190962315, 0.016703465953469276, -0.0008951949421316385, -0.013235547579824924, 0.003055803943425417, -0.003028443781659007, 0.008112329989671707, -0.006135548464953899, 0.01159392949193716, -0.008249131962656975, 0.004709392320364714, 0.01919325441122055, 0.005711463745683432, 0.008474854752421379, 0.0061971088871359825, 0.012599419802427292, 0.003496988909319043, 0.004876974504441023, -0.031190747395157814, -0.007852407172322273, -0.010198553092777729, 0.0069802976213395596, -0.007407802622765303, 0.006959777325391769, -0.000555328675545752, 0.01727803237736225, 0.0092135826125741, 0.011874372139573097, -0.02024662494659424, -0.006822975818067789, 0.009350383654236794, -0.009309343993663788, 0.007968688383698463, -0.008987859822809696, -0.023365700617432594, 0.011983813717961311, 0.007394122425466776, -0.012517339549958706, -0.0006091942777857184, 0.035486314445734024, 0.010390075854957104, -0.01044479664415121, 0.02778438851237297, -0.003485018853098154, 0.005578082054853439, -0.007722445763647556, 0.029275525361299515, -0.012708861380815506, -0.011764930561184883, -0.010684198699891567, -0.0005694363499060273, 0.01588265597820282, -0.0030985544435679913, 0.008481694385409355, -0.01751059480011463, -0.015937376767396927, 0.00017997949908021837, -0.013297108002007008, 0.01688130758702755, 0.0004424674261827022, 0.0012731092283502221, 0.004846193827688694, -0.009535065852105618, 0.01439152006059885, -0.019603658467531204, -0.013543350622057915, -0.00327297649346292, -0.0049077547155320644, -0.00802340917289257, -0.006357850972563028, 0.01530809048563242, -0.022148165851831436, -0.014897685497999191, -0.0018451105570420623, 0.005632802844047546, -0.0021956644486635923, -0.009343544021248817, -0.015485932119190693, 0.0019631017930805683, 0.007127359509468079, -0.008468014188110828, -0.004982995335012674, -0.008167050778865814, -0.011758090928196907, -0.01539017166942358, 0.024200189858675003, 0.011135644279420376, -0.0006720374803990126, -0.01827668398618698, 0.008673216216266155, -0.005909825675189495, 0.02232600934803486, -0.028646238148212433, -0.018591327592730522, -0.010848361067473888, -0.005564401857554913, 0.012838822789490223, -0.003676540916785598, 0.004918014630675316, 0.002992533380165696, 0.01857764646410942, 0.01116300467401743, -0.009042580612003803, -0.009535065852105618, -0.002375216456130147, 0.0010713269002735615, -0.0015056717675179243, -0.003498699050396681, 0.015321770682930946, -0.030123695731163025, 0.003314016852527857, 0.010814160108566284, -0.020670710131525993, 0.0002706105005927384, -0.009760788641870022, 0.0003753491910174489, 0.0032592962961643934, 0.007476203143596649, 0.015951057896018028, 0.01673082634806633, 0.018837569281458855, -0.010184873826801777, 0.004015124868601561, -0.005759343970566988, 0.0006934127304702997, -0.0030711942818015814, 0.023543542250990868, -0.020766470581293106, -0.02140943892300129, 0.002970303175970912, -0.0375930592417717, -0.0007058103801682591, -0.0012303587282076478, -0.02310577780008316, -0.04353024438023567, 0.0014253008412197232, 0.012387378141283989, 0.013399709016084671, -0.023310979828238487, 0.010834680870175362, 0.003146435134112835, -0.007893447764217854, -0.01942581683397293, -0.012421578168869019, 0.014500961638987064, -0.023201538249850273, 0.027031980454921722, 0.0054139201529324055, -0.013584391213953495, 0.00036231029662303627, 0.0006164618534967303, 0.0001668337354203686, -0.04268207401037216, -0.0051916176453232765, 0.017141230404376984, 0.0031874754931777716, -0.006091087590903044, -1.5951271052472293e-05, -0.006583573296666145, 0.00813969038426876, -0.013481790199875832, -0.0041861264035105705, -0.011115123517811298, -0.030123695731163025, -0.0077976868487894535, 0.003943304065614939, -0.035486314445734024, 0.026430053636431694, 0.005184777546674013, -0.01894701085984707, -0.009596627205610275, -0.021683041006326675, 0.009104141034185886, -0.011983813717961311, 0.003324277000501752, 0.01171021070331335, 0.0015150768449530005, 0.01565009355545044, -0.0007387282093986869, 0.018741808831691742, -0.006487812381237745, -0.003635500557720661, 0.007900288328528404, 0.006658813916146755, 0.005109536927193403, 0.012483138591051102, -0.006665654014796019, -0.022886894643306732, -0.01787995919585228, 0.02295529469847679, -0.010424275882542133, -0.016375143080949783, 0.03124546818435192, 0.0021460738498717546, -0.0001778419828042388, 0.0038680629804730415, -0.0010020711924880743, 0.002074253046885133, -0.004798313602805138, 0.008693736977875233, 0.021587280556559563, -0.011457127518951893, 0.005071916617453098, 0.01580057665705681, -0.01580057665705681, -0.011121964082121849, 0.0070179179310798645, -0.001579202595166862, -0.006942677311599255, 0.009781308472156525, -0.00346278864890337, 0.00390568352304399, -0.00024688401026651263, -0.024925237521529198, -0.01604681834578514, -0.02195664495229721, 0.0030472539365291595, 0.007435162551701069, -0.006778515409678221, -0.0050958567298948765, 0.007510403636842966, -0.012339496985077858, 0.0017698697047308087, -0.001695483922958374, -0.0008349167765118182, 0.01001387182623148, -0.015417532064020634, 0.007626684848219156, 0.011600769124925137, 0.040028125047683716, -0.012763582170009613, 0.0010944121750071645, -0.012948264367878437, 0.024596914649009705, 0.00948034506291151, -0.031902115792036057, 0.01139556709676981, 0.006029527168720961, 0.021217916160821915, -0.00644335150718689, -0.01369383279234171, 0.005478900857269764, 0.019152212888002396, 0.018769169226288795, -0.021368397399783134, -0.018071481958031654, -0.030725622549653053, -0.016676105558872223, -0.038112904876470566, 0.02270905300974846, -0.002806141274049878, 0.0027924610767513514, 0.026977259665727615, 0.002212764695286751, 0.017524275928735733, -0.020533908158540726, -0.00787292793393135, -0.021901924163103104, 0.006183428689837456, 0.028673598542809486, 0.014459921047091484, 0.017592675983905792, 0.011251925490796566, 0.021655680611729622, -0.004056164994835854, -0.015827937051653862, 0.0050924369134008884, 0.025212520733475685, 0.016552984714508057, 0.003755201818421483, -0.005205297842621803, -0.008440653793513775, -0.014500961638987064, 0.0034422683529555798, -0.011217724531888962, -0.0017228442011401057, -0.008392773568630219, -0.0048701344057917595, 0.007565124426037073, -0.006097927689552307, 0.023393061012029648, 0.019904620945453644, -0.0029651729855686426, -0.0035636797547340393, 0.00598848657682538, -0.01749691553413868, 0.00063270702958107, 0.018618687987327576, -0.0157458558678627, 0.00989759061485529, -0.0038851632270962, -0.016758186742663383, 0.00898102018982172, -0.007442002650350332, 0.005201878026127815, 0.01043795607984066, -0.010567917488515377, -0.025212520733475685, -0.0020776730962097645, 0.0015851876232773066, -0.010944121517241001, -0.004719652701169252, -0.020137183368206024, -0.0008712547132745385, 0.0033960978034883738, 0.01166232954710722, 0.021436799317598343, -0.010950962081551552, 4.067975169164129e-06, 0.002431647153571248, -0.004309248179197311, 0.000561741238925606, 0.007968688383698463, -0.0024042867589741945, -0.01627938076853752, 0.012756741605699062, -0.0008319242624565959, 0.007442002650350332, 0.005013776011765003, -0.019589977338910103, 0.010390075854957104, -0.013625431805849075, -0.01781155914068222, 0.005509681534022093, 0.009466665796935558, -0.009473505429923534, 0.019480537623167038, -0.02633429318666458, 0.010458476841449738, 0.012551539577543736, 0.0010251564672216773, 0.009706067852675915, -0.02778438851237297, 0.007688245736062527, 0.034337181597948074, 0.0099728312343359, -0.010704719461500645, -0.0027873311191797256, -0.006730634719133377, 0.01424103882163763, 0.017209632322192192, 0.006610933691263199, 0.005136897321790457, 0.006046627182513475, 0.004192966502159834, -0.0046888720244169235, 0.016539303585886955, 0.002937812590971589, 0.027497105300426483, 0.015362811274826527, 0.0035636797547340393, -0.0034884389024227858, 0.013796433806419373, -0.004825673531740904, 0.03023313730955124, 0.00397408427670598, 0.01166232954710722, -0.030670901760458946, -0.011812811717391014, 0.01926165446639061, -0.010800479911267757, 0.017291711643338203, 0.026416374370455742, -0.002199084497988224, -0.0001064486859831959, 0.015143928118050098, -0.019480537623167038, -0.004340028390288353, -0.003406357951462269, 0.006682754494249821, 0.01193593256175518, 0.0051881978288292885, -0.009357224218547344, 0.009706067852675915, 0.0027069600764662027, -0.012312136590480804, -0.014254719018936157, -0.004432369489222765, -0.0015287570422515273, -0.04656723886728287, 0.005270278546959162, -0.01277726236730814, -0.0023786365054547787, -0.021929284557700157, 0.011272445321083069, 0.009316183626651764, -0.0005536186508834362, 0.012380537576973438, 0.003567099804058671, 0.03053409978747368, -0.004298987798392773, -0.01139556709676981, -0.03217571973800659, -0.01857764646410942, 0.026977259665727615, -0.01320134662091732, 0.00013605339336209, -0.006665654014796019, 0.00519845774397254, -0.0030626440420746803, -0.011210884898900986, -0.008830538019537926, -0.015992097556591034, 0.003662860719487071, -0.0016424732748419046, -0.0009730008314363658, 0.027073021978139877, -0.010068591684103012, -0.01704546995460987, -0.004063005093485117, -0.004360548686236143, 0.00573540385812521, 0.012236895971000195, 0.03015105612576008, 0.006764835212379694, -0.0064741321839392185, -0.003614980261772871, -0.027373984456062317, -0.006949517410248518, 0.008515894412994385, -0.008885258808732033, -0.0038920033257454634, 0.008830538019537926, -0.004350288305431604, 0.0009738558437675238, 0.02010982297360897, 0.00030331462039612234, 0.014952406287193298, -0.009781308472156525, -0.0005352359730750322, -0.020014062523841858, -0.01786627806723118, -0.003370447549968958, 0.004712812602519989, -0.0155406529083848, 0.01726435124874115, -0.022284967824816704, 0.011771771125495434, -0.01435047946870327, 0.0035363193601369858, -0.008844218216836452, -0.01957629807293415, 0.0013517700135707855, -0.0009610307170078158, -0.008372252807021141, -0.020629670470952988, 0.018905971199274063, 0.005608862265944481, 0.014035835862159729, -0.037100572139024734, -0.0018981210887432098, -0.00577644445002079, 0.032805006951093674, -0.0048154136165976524, -0.012469458393752575, 0.0008823698153719306, -0.0038714830297976732, 0.011026202701032162, 0.0017852599266916513, 0.0008105490123853087, 0.003963823895901442, 0.007284681312739849, -0.006351010873913765, -0.01718227192759514, -0.007058958522975445, 0.0010046361712738872, 0.001862210687249899, 0.011696530506014824, -0.01741483435034752, 0.004056164994835854, 0.017360113561153412, -0.01424103882163763, 0.017688436433672905, 0.012537859380245209, 0.013119266368448734, 0.005749084055423737, -0.01177861075848341, -0.0015988678205758333, -0.002489787759259343, -0.00794132798910141, -0.005454960744827986, -0.017743157222867012, 0.035349514335393906, 0.008426973596215248, -0.015362811274826527, -0.017086509615182877, -0.01281146239489317, 0.010745760053396225, 0.014186318032443523, 0.025910208001732826, 0.028181113302707672, 0.01193593256175518, 0.013686992228031158, -0.003064354183152318, 0.017168590798974037, 0.004671772010624409, -0.014542002230882645, -0.0025342481676489115, 0.021012714132666588, 0.006200529169291258, 0.0034012277610599995, 0.00042130594374611974, -0.013625431805849075, 0.0029651729855686426, -0.0043708086013793945, -0.009391424246132374, 0.0026744697242975235, -0.0063817910850048065, 0.0019135113107040524, -0.01424103882163763, 0.011074082925915718, -0.003984344191849232, 0.015376491472125053, 0.00510269682854414, 0.007681405637413263, 0.004425529390573502, 0.020123504102230072, -0.024049706757068634, -0.005591762252151966, 0.019740460440516472, -0.012606260366737843, 0.01428207941353321, -0.002527408068999648, -0.022818494588136673, -0.022284967824816704, 0.010862041264772415, -0.009630827233195305, 0.018550286069512367, 0.009323024190962315, -0.0006784500437788665, 0.01396743580698967, 0.011286125518381596, 0.030889783054590225, 0.011929092928767204, 0.006450191605836153, -0.010985162109136581, -0.010232754051685333, -0.015321770682930946, -0.004637571517378092, -0.009473505429923534, -0.012914063408970833, 0.02448747307062149, 0.008762137964367867, -0.016826586797833443, 0.024131787940859795, -0.0033516373950988054, 0.006241569295525551, -0.011457127518951893, -0.015472251921892166, 0.008550095371901989, 0.029275525361299515, 0.0006083392654545605, 0.005554141942411661, 0.023611942306160927, -0.007455682847648859, -0.01415895763784647, -0.004377648700028658, -0.0017177141271531582, -0.016005778685212135, 0.015609053894877434, 0.011416086927056313, -0.010191713459789753, -0.008878419175744057, 0.006539112888276577, -0.01766107603907585, -0.009740268811583519, 0.015130248852074146, 0.0015851876232773066, 0.00022786002955399454, 0.006029527168720961, 0.01719595119357109, 0.006436511874198914, -0.0031669551972299814, -0.013782753609120846, 0.007565124426037073, -0.001066196826286614, 0.0036902211140841246, 0.006436511874198914, -0.0002815118932630867, 0.006970037706196308, 0.005567822139710188, 0.0019716520328074694, -0.019836220890283585, 0.01415895763784647, 0.013071385212242603, -0.011867532506585121, 0.0067887757904827595, 0.009637666866183281, 0.007264161016792059, 0.003346507204696536, 0.005485740955919027, 0.014925045892596245, 0.0070726387202739716, -0.021245276555418968, 0.01017119362950325, 0.012250576168298721, 0.0025291182100772858, -0.01193593256175518, 0.011559728533029556, 0.008577455766499043, 0.00790712796151638, -0.007961848750710487, 0.007359921932220459, 0.015513292513787746, 0.00037470791721716523, 0.0184271652251482, 0.01242841873317957, 0.026525815948843956, 0.01641618274152279, 0.00932986382395029, 0.003676540916785598, 0.026265893131494522, -0.009801829233765602, 0.006361270789057016, 0.019371096044778824, 0.020533908158540726, 0.00038389928522519767, 0.012996144592761993, -0.014665123075246811, -0.027579186484217644, -0.0011978683760389686, 0.002481237519532442, -0.02142311818897724, -0.011573408730328083, -0.0028813821263611317, -0.011805971153080463, -0.029193444177508354, -0.00755828432738781, 0.016074178740382195, -0.003452528500929475, -0.020205585286021233, -0.016552984714508057, 0.014884005300700665, 0.0024179669562727213, -0.003390967845916748, 0.005366039928048849, 0.00755828432738781, 0.014459921047091484, 0.02270905300974846, -0.017674757167696953, -0.005752503871917725, 0.007777166552841663, 0.006032946985214949, -0.021655680611729622, -0.0157321747392416, -0.0012910643126815557, -0.0068298159167170525, -0.0022777453996241093, 0.0007699360721744597, -0.002867701929062605, -0.005537041462957859, -0.002163174096494913, -0.013215026818215847, -0.009323024190962315, -0.025308281183242798, -0.01024643424898386, -0.038961075246334076, 0.014801925048232079, 0.02102639339864254, -0.02270905300974846, -0.010677359066903591, 0.016087859869003296, 0.01526704989373684, 0.015157608315348625, -0.005160837434232235, -0.027196142822504044, 0.014856644906103611, 0.0021033233497291803, 0.017483234405517578, -0.007442002650350332, 0.012531019747257233, -0.009692387655377388, 0.0005873915506526828, -0.006186848971992731, 0.012920903973281384, 0.0001657649700064212, 0.0002917720121331513, -0.017606355249881744, -0.008283331990242004, 0.013379189185798168, -0.027045661583542824, -0.005646483041346073, 0.01580057665705681, 0.0005989341880194843, 0.005297638941556215, -0.027674948796629906, -0.005167677532881498, 0.0013534800382331014, 0.01704546995460987, -0.01017119362950325, 0.007688245736062527, 0.03934411704540253, -0.014035835862159729, 0.008050769567489624, 0.013105586171150208, -0.005301059223711491, -0.011320325545966625, 0.02502099797129631, -0.004039064981043339, 0.01135452650487423, -0.0019015411380678415, -0.010383235290646553, 0.008700576610863209, 0.0032575861550867558, 0.014090556651353836, -0.005290798842906952, -0.014418880455195904, -0.02024662494659424, 0.015951057896018028, -0.02746974490582943, 0.019740460440516472, 0.009665027260780334, 0.00905626080930233, -0.014952406287193298, 0.005820904858410358, 0.0021118735894560814, -0.009569266811013222, -0.01666242629289627, 0.00462731160223484, -0.009336704388260841, -0.011518687941133976, -0.006262089591473341, -0.006713534705340862, 0.009979670867323875, -0.009740268811583519, -0.0013663051649928093, -0.006344170775264502, 0.03269556537270546, -0.023830825462937355, -0.012312136590480804, -0.00591324595734477, 0.03343429043889046, 0.004692292306572199, -0.0090220607817173, -0.007722445763647556, 0.03868747130036354, 0.01658034510910511, 0.026799418032169342, -0.0004330623196437955, 0.0043673887848854065, -0.017907319590449333, 0.012360017746686935, -0.016676105558872223, -0.019672058522701263, 0.01008911244571209, -0.008488534018397331, -0.01424103882163763, 0.0071478793397545815, -0.019302694126963615, -0.0007100853836163878, 0.005950866267085075, -0.0006066292407922447, 0.005174517631530762, 0.011450287885963917, 0.004459729418158531, -0.014131597243249416, 0.00390568352304399, 0.008269651792943478, -0.0022486750967800617, 0.03983660414814949, 0.020000383257865906, 0.018057800829410553, -0.018167242407798767, 0.0017177141271531582, -0.02701830118894577, -0.008297012187540531, -0.00017228441720362753, -0.027729667723178864, 0.008570615202188492, 0.004811993334442377, -0.004107465501874685, 0.02856415882706642, 0.014993446879088879, -0.0010080562205985188, 0.007175239734351635, 0.0050958567298948765, -0.01850924640893936, -0.00642967177554965, 0.025130439549684525, -0.004552070517092943, 0.025978609919548035, -0.0059166657738387585, -0.018550286069512367, 0.0014107656897976995, 0.011087763123214245, 0.01849556528031826, 0.010417436249554157, 0.008016569539904594, 0.008146530948579311, 0.015773216262459755, -0.0005754213780164719, -0.020287666469812393, 0.028181113302707672, 0.010458476841449738, -0.003438848303630948, 0.006542532704770565, 0.016470903530716896, 0.0012474588584154844, -0.0026282991748303175, -0.02678573876619339, -0.005817484576255083, 0.007722445763647556, 0.00255134841427207, -0.022668011486530304, 0.005530201364308596, 0.009610307402908802, 0.008625335991382599, -0.008632175624370575, 0.007414642721414566, 0.014323119074106216, 0.004476829897612333, -0.02047918736934662, 0.006682754494249821, -0.003635500557720661, 0.005981646478176117, 0.0012696891790255904, -0.018755488097667694, -0.01047899667173624, -0.004747012630105019, -0.013495470397174358, -0.008556935004889965, 0.009076780639588833, 0.008105490356683731, -0.010095952078700066, 0.00652543269097805, 0.0011944483267143369, 0.0230100154876709, -0.009623986668884754, -0.001066196826286614, 0.026539495214819908, -0.0029275526758283377, 0.015376491472125053, -0.028345275670289993, -0.007448842748999596, -0.0157321747392416, -0.02325625903904438, -0.02119055576622486, -0.0076677254401147366, 0.0034473983105272055, -0.014925045892596245, -0.015526972711086273, -0.0002013547345995903, -0.008789497427642345, -0.0016074179438874125, -0.005961126182228327, 0.00498641561716795, -0.002002432243898511, 0.020014062523841858, -0.011135644279420376, -0.017756838351488113, -0.0025000479072332382, 0.015294410288333893, 0.03154643252491951, 0.0012448938796296716, -0.004829093813896179, -0.002120423596352339, -0.011737571097910404, 0.008385933004319668, 0.005342099349945784, 0.008440653793513775, 0.009466665796935558, -0.005769604351371527, -0.010424275882542133, -0.006836656015366316, -0.023379379883408546, -0.009911269880831242, 0.004343448206782341, -0.009049421176314354, 0.02470635436475277, -0.007065798621624708, -0.0004121145757380873, -0.01032167486846447, 0.014952406287193298, 0.0237897839397192, 0.01462408248335123, 0.016703465953469276, 0.005136897321790457, 0.014514641836285591, 0.0060090068727731705, -0.013830633834004402, 0.005749084055423737, 0.03783930093050003, 0.009788149036467075, 0.009240943007171154, 0.02010982297360897, 0.017756838351488113, 0.02095799334347248, -0.0040527451783418655, 0.0180441215634346, 0.003180635394528508, -0.020602310076355934, -0.0058790454640984535, 0.01664874516427517, 0.004664931911975145, 0.0009225552785210311, 0.003040413837879896, -4.133436596021056e-05, 0.006864016409963369, -0.007961848750710487, -0.014090556651353836, 0.03217571973800659, 0.028208473697304726, -0.00404932489618659, -0.014459921047091484, 0.00925462320446968, -0.027606546878814697, -0.008919458836317062, 0.02057494968175888, 0.009035740979015827, -0.011956453323364258, -0.0037415216211229563, -0.010431116446852684, 0.0027787808794528246, -0.008372252807021141, 0.004104045685380697, 0.0012953394325450063, 0.016594024375081062, -0.0075172437354922295, 0.014993446879088879, 0.0025821286253631115, -0.007188919931650162, 0.006518592592328787, 0.004569170996546745, 0.011245084926486015, -0.01166917011141777, -0.006857176311314106, 0.024460112676024437, -0.0161288995295763, -0.005509681534022093, -0.006867436226457357, 0.007168399635702372, 0.00573540385812521, 0.0010431116679683328, -0.009309343993663788, 0.017250671982765198, -0.00224525504745543, 0.00794816855341196, -0.0030626440420746803, 0.0037004812620580196, 0.01911117322742939, 0.021382078528404236, 0.01711387000977993, 0.0005095856613479555, -0.011840172111988068, 0.028071671724319458, -0.011135644279420376, 0.0068298159167170525, -0.010950962081551552, 0.023160498589277267, 0.015704814344644547, 0.022750092670321465, -0.014760884456336498, 0.0010499516502022743, 0.0006810150807723403, 0.023817144334316254, -0.008673216216266155, -0.023064736276865005, -0.03827706724405289, 0.009569266811013222, 0.00047068274579942226, 0.012640460394322872, -0.003792822128161788, 0.017838917672634125], "0367b4dc-58bc-45e6-8bbf-4770fcb2829b": [-0.01122744008898735, 0.010270437225699425, -0.010214959271252155, 0.032510340213775635, 0.00968791451305151, -0.020166397094726562, -0.0006709418375976384, 0.019542263820767403, -0.0025658756494522095, 0.02676832489669323, 0.032704513520002365, 0.013841859064996243, 0.003320035059005022, 0.003848813474178314, 0.035422954708337784, 0.025076234713196754, -0.015769733116030693, -0.010748938657343388, 0.0013609543675556779, -0.02327318675816059, 0.047683678567409515, -0.016546430066227913, 0.005471556447446346, 0.018141435459256172, -0.0007216525264084339, 0.016796084120869637, 0.012073485180735588, 0.008370302617549896, -0.009604697115719318, 0.007496518082916737, 0.016088733449578285, 0.013613010756671429, 0.012392486445605755, -0.00317613803781569, 0.022787749767303467, -0.020846007391810417, 0.028682328760623932, 0.013959750533103943, -0.01449373085051775, -0.003592225955799222, 0.029514506459236145, 0.011449353769421577, 0.022704532369971275, -0.016893170773983, -0.02116500772535801, 0.0028831427916884422, -0.04280158132314682, -0.012482638470828533, -0.02622741088271141, -0.027794675901532173, 0.0005877242074348032, -0.015617167577147484, 0.014576948247849941, 0.012378616258502007, 0.02435501478612423, -0.043827932327985764, -0.0015715989284217358, 0.016671257093548775, -0.004167814273387194, -0.05353664979338646, 0.014868209138512611, -0.024036014452576637, 0.048765506595373154, -0.012295398861169815, 0.024729494005441666, 0.021109528839588165, -0.0060402099043130875, -0.0035263453610241413, -0.0546184778213501, 0.01914004608988762, 0.03911226615309715, -0.0015074519906193018, -0.010339785367250443, 0.015131731517612934, 0.0202773530036211, -0.005620654672384262, -0.0012239920906722546, 0.041886188089847565, 0.01922326348721981, -0.021719790995121002, -0.0040291184559464455, -0.01614421233534813, 0.05886257439851761, 0.016546430066227913, 0.06657407432794571, 0.0234257522970438, -0.0075034527108073235, -0.042746104300022125, 0.0073231481947004795, -0.026518672704696655, -0.01614421233534813, -0.010214959271252155, -0.00842578150331974, 0.008356433361768723, -0.03151172772049904, 0.025159452110528946, 0.02626901865005493, 0.003375513479113579, 0.0076768225990235806, -0.03742017596960068, 0.0065117767080664635, -0.004653250332921743, 0.018543653190135956, -0.006598461419343948, 0.007413300219923258, -0.03459077700972557, 0.01685156300663948, -0.03140076994895935, -0.026393845677375793, 0.0328432098031044, 0.0161858219653368, -0.0013488184195011854, -0.030901465564966202, 0.012981943786144257, -0.039084527641534805, -0.0236615352332592, -0.07805810123682022, -0.01719830185174942, -0.03353668749332428, -0.03273225203156471, 0.010270437225699425, -0.041692014783620834, -0.017572781071066856, -0.006966006010770798, -0.02011091820895672, 0.03023572452366352, -0.0171566940844059, 0.05140073224902153, 0.039944443851709366, -0.009105391800403595, -0.0105062210932374, -0.012503443285822868, 0.0016288110055029392, -0.0009561354527249932, -0.005201099440455437, 0.0381413958966732, -0.023453490808606148, 0.04199714586138725, 0.018391087651252747, 0.013904272578656673, -0.06174745410680771, -0.03506234660744667, -0.01653256081044674, 0.00755893113091588, 0.022968055680394173, -0.008321759290993214, -0.02948676608502865, 0.055506132543087006, -0.009771131910383701, 0.003637302201241255, -0.09780840575695038, 0.0014433050528168678, -0.02937581017613411, -0.00853673741221428, 0.029320331290364265, -0.006692081224173307, -0.008959760889410973, 0.01588069088757038, -0.00853673741221428, 0.04696245864033699, 0.03073503077030182, -0.050762731581926346, 0.009292631410062313, 0.016130343079566956, 0.058030400425195694, 0.02069343999028206, 0.03728147968649864, 0.007212191354483366, -0.017836304381489754, 0.011317592114210129, 0.012766965664923191, -0.03650478273630142, 0.041802968829870224, 0.004889033269137144, -0.038696181029081345, -0.013141444884240627, 0.03736469894647598, 0.016158081591129303, 0.023911187425255775, -0.004622043576091528, -0.022108139470219612, 0.015159470960497856, 0.011816898360848427, 0.009660175070166588, 0.018349478021264076, 0.0142440777271986, 0.03170590102672577, 0.026934759691357613, 0.005055468529462814, 0.004147009924054146, -0.0015473270323127508, 0.008515933528542519, -0.005804426968097687, 0.018377218395471573, -0.008585281670093536, -0.029625462368130684, 0.017184432595968246, -0.005603317636996508, -0.0333147756755352, 0.0106241125613451, 0.012981943786144257, -0.04704567790031433, -0.011470157653093338, 0.029153896495699883, -0.04105401039123535, 0.04069340229034424, -0.011185831390321255, -0.030762769281864166, 0.027447935193777084, -0.029514506459236145, 0.03481269255280495, -0.050485339015722275, -0.006990277674049139, -0.02665736898779869, 0.031345292925834656, 0.011206635273993015, -0.010145611129701138, 0.012343942187726498, -0.015852950513362885, -0.0118307676166296, 0.00727460440248251, 0.003859215881675482, -0.02183074876666069, -0.02178913913667202, -0.045159414410591125, 0.03370312601327896, -0.014313425868749619, 0.018571391701698303, -0.029237113893032074, -3.323827695567161e-05, 0.024230187758803368, 0.006768363993614912, -0.004597771912813187, -0.026366107165813446, -0.0042024883441627026, 0.01454920880496502, 0.04618576169013977, -0.0022572772577404976, -0.0029871647711843252, -0.00021172808192204684, -0.006445895880460739, 0.03977800905704498, -4.648482718039304e-05, -0.020180266350507736, 0.002019760198891163, 0.021761400625109673, -0.033287037163972855, 0.045547761023044586, -0.005481958854943514, 0.0044105323031544685, 0.00026894017355516553, 0.013585271313786507, 0.0070076147094368935, 0.004680989310145378, -0.03642156720161438, 0.05633831024169922, 0.04199714586138725, 0.003821074264124036, -3.212762385373935e-05, -0.010457676835358143, 0.02568649686872959, -0.005728144198656082, 0.007219125982373953, 0.006397352088242769, 0.035700347274541855, 0.004736467730253935, 0.03755887225270271, -0.009479870088398457, 0.0011971197091042995, 0.0051421537064015865, 0.024465972557663918, 0.005613720044493675, -0.011421614326536655, 0.028293980285525322, -0.0028380665462464094, 0.010693460702896118, 0.018932001665234566, 0.007385561242699623, 0.019001349806785583, 0.008689303882420063, 0.015228819102048874, 0.010700395330786705, 0.007468778640031815, 0.015131731517612934, 0.035977739840745926, 0.014022164046764374, -0.01429955568164587, -0.03389729931950569, -0.05364760756492615, 0.0011338397162035108, 0.0026889683213084936, -0.012766965664923191, 0.016879301518201828, -0.0036407695151865482, -0.00015473271196242422, -0.0013921608915552497, -0.0045908372849226, 0.028266241773962975, -0.019639352336525917, 0.04085983708500862, -0.015090122818946838, -0.02443823218345642, -0.005398740991950035, 0.007870997302234173, 0.06202484294772148, -0.024535318836569786, 0.025506190955638885, 0.020873745903372765, -0.008356433361768723, 0.02821076288819313, -0.004459076095372438, -0.013515924103558064, -0.0091816745698452, 0.0016218761447817087, -0.004081129562109709, 0.011997202411293983, -0.028654590249061584, -0.030513117089867592, -0.009479870088398457, -0.04074887931346893, 0.0070214844308793545, 0.027766935527324677, -0.0492648147046566, 0.022579707205295563, -0.003404986346140504, -0.045658718794584274, 0.0014138321857899427, 0.007649083621799946, -0.03256581723690033, 0.004580434877425432, -0.06496519595384598, -0.006556852720677853, -0.0173924770206213, 0.022815490141510963, -0.022538097575306892, -0.00025247002486139536, -0.02097083255648613, -0.025547800585627556, 0.016477083787322044, -0.014084577560424805, 0.000273491139523685, -0.007191387005150318, -0.0008525468874722719, 0.016976388171315193, 0.035117823630571365, 0.0029230178333818913, -0.01730925962328911, 0.026060976088047028, -0.03567260876297951, -0.004181683994829655, 0.0009361978736706078, 0.041497837752103806, 0.008613021112978458, 0.007905671373009682, 0.0198057871311903, -0.009812740609049797, 0.00683771213516593, 0.00881412997841835, 0.01708734594285488, -0.020374439656734467, -0.0243966244161129, -0.03062407299876213, 0.01002078503370285, 0.0005157756968401372, -0.003956303000450134, -0.0028328655753284693, 0.0063696131110191345, -0.014646296389400959, 0.015575558878481388, -0.012884857133030891, 0.018460435792803764, -0.025117842480540276, -0.027877893298864365, -0.022870967164635658, -0.024715624749660492, -0.01318998821079731, 0.025658756494522095, -0.003616497851908207, -0.02821076288819313, 0.038391049951314926, 0.02011091820895672, -0.028293980285525322, 0.02023574337363243, 0.037919480353593826, 0.004798881243914366, 0.010367524810135365, 0.03325929865241051, -0.008973630145192146, -0.010048524476587772, -0.021275963634252548, -0.02295418456196785, 0.006855049170553684, -0.01626903936266899, -0.005731611512601376, 0.0035107422154396772, 0.01607486419379711, -0.00978500209748745, -0.016712866723537445, 0.04452141001820564, 0.003626900026574731, 0.017378607764840126, -0.02373088337481022, -0.01918165385723114, 0.004580434877425432, 0.0236615352332592, -0.031927816569805145, -0.016990257427096367, -0.006088753696531057, 0.03925096243619919, -0.006969473324716091, 0.01391120720654726, 0.018502043560147285, -0.004927174653857946, 0.052121952176094055, 0.03933418169617653, 0.012281529605388641, -0.043800193816423416, 0.05292638763785362, -0.05381404235959053, 0.010825221426784992, 0.034341126680374146, 0.0038384112995117903, 0.01918165385723114, 0.0020249614026397467, 0.04307897388935089, 0.0338418185710907, -0.05913996696472168, -0.0033824483398348093, 0.023092880845069885, 0.005166425369679928, 1.892170803330373e-05, 0.05625509098172188, 0.010603307746350765, -0.008162259124219418, -0.004722598474472761, -0.02031896263360977, -0.03553391247987747, -0.02151174657046795, 0.029791897162795067, 0.010325916111469269, -0.042940277606248856, -0.02202492207288742, -0.006196243222802877, 0.01832173950970173, -0.0323716439306736, -0.05042985826730728, -0.03267677500844002, -0.00635227607563138, -0.0006631401483900845, -0.01685156300663948, 0.009680979885160923, 0.01871008798480034, -0.05533969774842262, -0.010672655887901783, 0.03062407299876213, 0.009112326428294182, -0.005211501847952604, -0.001259532873518765, 0.02506236359477043, -0.05594995990395546, -0.03730921819806099, -0.016754474490880966, 0.020221874117851257, 0.027128934860229492, 0.0164216049015522, -0.01134533155709505, -0.0009214614401571453, 0.020443787798285484, 0.013938946649432182, 0.02054087445139885, 0.016601908951997757, -0.017378607764840126, 0.030845986679196358, 0.02416083961725235, 0.013023553416132927, -0.010332850739359856, 0.01579747349023819, -0.0009067250066436827, 0.004153944551944733, -0.008037432096898556, 0.00914700049906969, 0.02937581017613411, -0.005579045973718166, 0.011484027840197086, -0.005759350955486298, 0.03151172772049904, 0.0033061655703932047, -0.0118307676166296, -0.008037432096898556, -0.021081790328025818, -0.010152545757591724, -0.005877242423593998, 0.03497912734746933, -0.018099825829267502, 0.02689315192401409, -0.013217727653682232, -0.023883448913693428, -0.0035540845710784197, 0.010097067803144455, -0.021275963634252548, -0.0038418788462877274, -0.02019413560628891, 0.011428548954427242, 0.0022087334655225277, 0.025464583188295364, 0.04746176674962044, -0.02836332842707634, 0.01588069088757038, -0.016948649659752846, 0.013571402058005333, -0.04377245157957077, 0.057364657521247864, -0.02368927374482155, 0.013169183395802975, 0.014479860663414001, 0.017919521778821945, -0.0062898630276322365, 0.012968074530363083, 0.027170542627573013, -0.03128981590270996, 0.008744781836867332, -0.024424362927675247, -0.013571402058005333, -0.013418836519122124, -0.015825212001800537, -0.0161858219653368, -0.0011520435800775886, -0.03062407299876213, 0.02069343999028206, -0.050873685628175735, -0.02618580125272274, 0.026990238577127457, 0.008807195350527763, 0.003921628929674625, 0.006820375099778175, 0.002938621211796999, 0.005069338250905275, 0.02762823924422264, 0.031151117756962776, -0.011823832988739014, -0.03969478979706764, 0.030124768614768982, -0.030457638204097748, -0.0013808918884024024, 0.0030755833722651005, 0.024465972557663918, 0.005644926801323891, 0.009112326428294182, -0.007212191354483366, 0.0007918673800304532, -0.0004020016349386424, -0.00992369744926691, 0.0005162091110832989, 0.005901514086872339, -0.023800231516361237, 0.007170582190155983, 0.033869560807943344, -0.014868209138512611, -0.007919540628790855, -0.028432676568627357, -0.006927864626049995, 0.0256032794713974, -0.015533950179815292, -0.00859915092587471, 0.02614419348537922, 0.02058248408138752, -0.011102613992989063, -0.006740625016391277, 0.016879301518201828, 0.014216338284313679, 0.03345347195863724, 0.004656717646867037, 0.022857097908854485, 0.01176835410296917, 0.0011243043700233102, 0.053675346076488495, -0.022593576461076736, 0.022635184228420258, -0.04011087864637375, 0.0021047114860266447, 0.049708642065525055, 0.013273205608129501, -0.009133130311965942, -0.007330082822591066, -0.0008187397615984082, 0.001177182188257575, -0.02762823924422264, -0.00744103966280818, -0.021581094712018967, -0.008398042060434818, 0.015145601704716682, 0.025395235046744347, -0.020263483747839928, -0.003096387954428792, -0.015561689622700214, 0.03209425136446953, 0.010644916445016861, 0.009341174736618996, 0.04890420287847519, 0.0161858219653368, 0.025312017649412155, 0.021858487278223038, 0.016490953043103218, 0.015339775942265987, -0.027558892965316772, 0.026366107165813446, 0.013300945051014423, 0.007413300219923258, 0.014507600106298923, -0.008710107766091824, -0.018959740176796913, -0.031151117756962776, 0.030291203409433365, 0.01536751538515091, 0.004063792526721954, 0.018335608765482903, 0.024715624749660492, -0.0031293281354010105, -0.005287784617394209, -0.0008070372859947383, 0.017447954043745995, -0.002493060426786542, 0.040166355669498444, -0.006549918092787266, -0.014660165645182133, 0.003096387954428792, -0.024105362594127655, 0.004622043576091528, -0.0002163874014513567, -0.00690705981105566, -0.016130343079566956, -0.016588039696216583, -0.0011676468420773745, -0.02789176255464554, 0.015395253896713257, -0.02116500772535801, 0.011636593379080296, 0.02248261868953705, 0.004895968362689018, -0.035700347274541855, 0.006913994904607534, -0.0028276643715798855, 0.00744103966280818, 0.06318989396095276, -0.007475713733583689, -0.0011581114958971739, -0.003398051718249917, 0.014646296389400959, 0.017489563673734665, 0.035311996936798096, -0.01233700755983591, -0.01260746456682682, -0.022080400958657265, 0.0156865157186985, 0.0005240107420831919, -0.03101242147386074, -0.017295388504862785, -0.001113035250455141, 0.02454918995499611, -0.010603307746350765, 0.003467399626970291, -0.007711496669799089, 0.008273215033113956, 0.011289853602647781, 0.0323716439306736, -0.005995133891701698, 0.006251721642911434, -0.009812740609049797, 0.031927816569805145, -0.005201099440455437, 0.02692089043557644, -0.023550577461719513, -0.00464978301897645, 0.01708734594285488, -0.021289832890033722, 0.0037239871453493834, -0.043245408684015274, 0.018183043226599693, -0.010062393732368946, -0.01758665032684803, -0.008994434960186481, -0.016435474157333374, -0.019597742706537247, 0.021040180698037148, -0.014230208471417427, -0.005169892683625221, 0.008300954475998878, -0.004635913297533989, -0.0038661505095660686, -0.014715643599629402, -0.01629677787423134, -0.008883478119969368, 0.0015672646695747972, 0.05292638763785362, 0.028183024376630783, -0.0014407045673578978, 0.029126156121492386, -0.012524247169494629, -0.001467576832510531, -0.011463223025202751, -0.025575539097189903, -0.03780852630734444, -0.0008846203563734889, -0.0027132402174174786, 0.015145601704716682, 0.020485397428274155, -0.010381394065916538, -0.02109565958380699, -0.009674045257270336, -0.01629677787423134, 0.001905336044728756, 0.010651852004230022, -0.004382793325930834, 0.027073455974459648, 0.011019395664334297, 0.03592225909233093, -0.030901465564966202, 0.03201103210449219, 0.008085976354777813, 0.04282931983470917, -0.01590842939913273, 0.018155304715037346, -0.024493711069226265, 0.0005001723766326904, -0.014070707373321056, 0.0032645566388964653, 0.005520100239664316, 0.007884866558015347, 0.006071416661143303, -0.002498261397704482, 0.015006905421614647, -0.020610222592949867, 0.020374439656734467, 0.00317613803781569, 0.01676834374666214, -0.02447984181344509, -0.013502053916454315, 0.019153915345668793, 0.00968791451305151, -0.017683738842606544, 0.00044209344196133316, -0.025339756160974503, 0.027947241440415382, -0.04133140295743942, 0.000186156015843153, 0.0058460356667637825, 0.03750339522957802, 0.03303738310933113, -0.032427120953798294, -0.01653256081044674, 0.013758641667664051, -0.033203817903995514, 0.0052531105466187, -0.020097048953175545, -0.003418856067582965, 0.0011858507059514523, 0.03456303849816322, 0.0117128761485219, 0.00013739570567850024, 0.054535262286663055, -0.030568594112992287, 0.00038379780016839504, 0.004389727953821421, -0.0046324459835886955, 0.026560280472040176, -0.008453520014882088, 0.004247564356774092, 0.02871006913483143, 0.03423016890883446, -0.0009197277249768376, 0.03700408712029457, 0.04099853336811066, 0.015395253896713257, 0.02377249114215374, -0.004504152107983828, 0.00695560360327363, 0.019750308245420456, -0.027531152591109276, -0.0424964502453804, -0.0025017287116497755, -0.04019409790635109, -0.020679570734500885, 0.03717052564024925, -0.00323508377186954, 0.015936167910695076, -0.0449097603559494, 0.05209421366453171, -0.015048514120280743, -0.027947241440415382, 0.007163647562265396, 0.029237113893032074, -0.007884866558015347, -0.007496518082916737, 0.009389718063175678, 0.012052681297063828, -0.028280111029744148, -0.0033287035766988993, 0.0010610242607071996, -0.005610252730548382, 0.013550597243010998, 0.01945904642343521, -0.0070873647928237915, 0.027073455974459648, 0.04610254615545273, -0.013515924103558064, -0.0046047065407037735, -0.01758665032684803, -0.024923669174313545, -0.028460416942834854, 0.01367542427033186, -0.0015499276341870427, -0.007475713733583689, -0.0032680241856724024, 0.007746170740574598, -0.028931982815265656, -0.0037517263554036617, 0.0256032794713974, -0.0027721859514713287, 0.02887650392949581, 0.026060976088047028, -0.016435474157333374, 0.0033824483398348093, 0.006480569951236248, 0.004150477237999439, 0.0070214844308793545, 0.015852950513362885, 0.03403599560260773, 0.007600539829581976, 0.002319690305739641, 0.006803038064390421, -0.010298176668584347, -0.02170592173933983, -0.023994404822587967, 0.03350894898176193, -0.0013843593187630177, 0.038030438125133514, -0.01325240172445774, -0.0019192056497558951, -0.03739243745803833, 0.0063418736681342125, -0.003061713883653283, -0.026518672704696655, -0.012482638470828533, 0.012531181797385216, 0.0017406345577910542, -0.0002010008174693212, -0.006986810360103846, 0.009667109698057175, 0.012399421073496342, 0.06124814599752426, 0.0487932488322258, -0.02407762221992016, 0.01590842939913273, -0.01575586386024952, -0.0166573878377676, -0.0023387609981000423, 0.020291222259402275, 0.030707290396094322, 0.022968055680394173, 0.003571421606466174, 0.004694859031587839, 0.06230223551392555, -0.03275999054312706, 0.00036906133755110204, -0.005017327144742012, -0.04011087864637375, 0.019791917875409126, 0.004309977870434523, -0.004348119255155325, -0.022357793524861336, -0.0091816745698452, -0.002716707531362772, 0.02424405887722969, 0.021733660250902176, 0.02502075582742691, 0.005235773511230946, -0.02428566664457321, 0.018432697281241417, -0.014230208471417427, 0.0022590109147131443, 0.007850192487239838, 0.006705950945615768, 0.00044274359242990613, 0.02859911136329174, -0.036171913146972656, -0.02540910430252552, -0.010970852337777615, 0.01991674304008484, -0.016352256760001183, 0.009500674903392792, 0.00823160633444786, -0.0008469123276881874, 0.048266202211380005, -0.01330787967890501, -0.02073504962027073, 0.0391400083899498, 0.007635213900357485, 0.011310657486319542, -0.009618566371500492, 0.001924406737089157, 0.008065171539783478, -0.030790507793426514, -0.027808545157313347, -0.0164216049015522, 0.054146911948919296, -0.05181682109832764, 0.04385567083954811, 0.010277372784912586, 0.0046983263455331326, -0.0094174575060606, -0.004798881243914366, -0.009882088750600815, -0.013030488044023514, -0.0007329215877689421, 0.01950065605342388, 0.018196912482380867, 0.007898736745119095, -0.010943112894892693, -0.003925096243619919, 0.002404641592875123, -0.002799925161525607, 0.023883448913693428, 0.02424405887722969, 0.008224671706557274, 0.017794694751501083, -0.011907050386071205, -0.024063752964138985, -0.022038791328668594, 0.011678202077746391, -0.002834599232301116, -0.020651832222938538, -0.004261434078216553, -0.013148379512131214, -0.019403567537665367, 0.025353625416755676, -0.01449373085051775, -0.03400825709104538, 0.029986072331666946, -0.025201059877872467, 0.011324526742100716, -0.01449373085051775, 0.01270455215126276, 0.028085937723517418, -0.003458731109276414, -0.029431287199258804, -0.03836330771446228, 0.018626870587468147, 0.00823160633444786, -0.02047152817249298, -0.03450756147503853, -0.0071151042357087135, 0.007142843212932348, -0.0005053735221736133, -0.002805126365274191, 0.018779436126351357, 0.02120661549270153, 0.012413290329277515, -0.03295416757464409, 0.02159496396780014, 0.005880709737539291, -0.011074874550104141, 0.01472951378673315, 0.009070717729628086, 0.010644916445016861, -0.008432716131210327, -0.0007615276263095438, -0.013765576295554638, 0.012018007226288319, -0.04252418875694275, -0.005579045973718166, -0.009105391800403595, -0.003873085370287299, -0.00886960793286562, 0.002735778223723173, -0.021373052150011063, -0.005384871736168861, -0.004174749366939068, -0.01439664326608181, -0.0164216049015522, -0.02085987664759159, 0.0057524158619344234, -0.03658800199627876, 0.010603307746350765, -0.012232986278831959, 0.013176118955016136, -0.03273225203156471, -0.024257928133010864, 0.03195555508136749, -0.034840431064367294, 0.010277372784912586, -0.0006596727762371302, 0.0011139020789414644, -0.003072116058319807, -0.010180285200476646, 0.0051421537064015865, -0.033980514854192734, -0.01793339103460312, 0.0006523045594803989, -0.013065162114799023, -0.03400825709104538, 0.021650442853569984, -0.008252411149442196, -0.013606076128780842, 0.03148398920893669, 0.05065177381038666, 0.011622723191976547, 0.009077652357518673, -0.012288464233279228, -0.02478497289121151, -0.0021705920808017254, -0.02174752950668335, -0.04205262288451195, -0.014271817170083523, 0.0013358157593756914, 0.018696218729019165, 0.004587369505316019, -0.0029819635674357414, -0.031456250697374344, 0.007968083955347538, 0.021581094712018967, 0.013176118955016136, -0.011033265851438046, -0.02786402404308319, -0.017794694751501083, -0.008827999234199524, 0.005707339849323034, 0.005291251931339502, -0.0004633312637452036, -0.0032385513186454773, 0.008508998900651932, -0.007253800053149462, -0.023065142333507538, -0.002949023386463523, -0.012718421407043934, 0.013536727987229824, -0.024965276941657066, -0.008592216297984123, -0.0849929004907608, -0.014056838117539883, -0.02206653170287609, 0.009951436892151833, 0.01188624557107687, -0.006445895880460739, 0.009424392133951187, -0.003196942387148738, -0.01735086739063263, -0.010936178267002106, 0.00701454933732748, -0.011907050386071205, 0.018307870253920555, 0.010700395330786705, -0.01089456956833601, 0.0048404899425804615, -0.008009692654013634, -0.03952835500240326, 0.01346044521778822, -0.002073504962027073, -0.002697636839002371, 0.025769714266061783, 0.03614417463541031, -0.010665721260011196, -0.005967394914478064, 0.01840495690703392, -0.006386950146406889, -0.01285711769014597, -0.015464602038264275, -0.033481210470199585, 0.012128964066505432, 0.032316163182258606, -0.0039667049422860146, -0.02926485240459442, -0.02568649686872959, 0.01231620367616415, 0.009285695850849152, -0.0069798752665519714, 0.003911226987838745, 0.041692014783620834, 0.0047330004163086414, -0.018765566870570183, 0.010950048454105854, 0.010423003695905209, 0.024660145863890648, -0.00760747492313385, 0.007371691521257162, -0.013224662281572819, -0.007829388603568077, 0.00823160633444786, 0.01790565252304077, 0.024063752964138985, -0.031262073665857315, -0.015173341147601604, 0.003925096243619919, -0.013626880943775177, 0.03373086452484131, -0.04183070734143257, 0.005381404422223568, 0.016324518248438835, 0.03755887225270271, 0.005052001215517521, -0.005759350955486298, 0.0036546392366290092, -0.00010033787839347497, 0.010104002431035042, 0.013141444884240627, 0.038502003997564316, 0.04097079485654831, -0.009396652691066265, 0.01560329832136631, 0.009327304549515247, -0.027794675901532173, 0.01321079209446907, 0.0020006895065307617, 0.013127574697136879, -0.0019157383358106017, 0.02782241441309452, 0.00012569323007483035, 0.021955573931336403, -0.02411923184990883, 0.003883487544953823, 0.007933409884572029, -0.02011091820895672, -0.011851571500301361, -0.007316213101148605, 0.00963243655860424, -0.01571425423026085, 0.017267649993300438, -0.006445895880460739, 0.021969443187117577, -0.0053640673868358135, 0.010735069401562214, 0.01023576408624649, -0.018862653523683548, 0.06723981350660324, -0.021040180698037148, 0.02618580125272274, -0.007864062674343586, 0.010374459438025951, -0.000749825150705874, -0.019015219062566757, 0.007988888770341873, 0.0013947614934295416, -0.019625481218099594, 0.010124807246029377, -0.014056838117539883, 0.00689665786921978, 0.00426836870610714, -0.013148379512131214, 0.010631047189235687, -0.0059257857501506805, -0.01750343292951584, 0.017725346609950066, -0.0156865157186985, 0.01035365555435419, -0.028307851403951645, 0.004712196066975594, -0.02497914619743824, 0.005003457423299551, 0.0027375121135264635, 0.03872391954064369, 0.020679570734500885, -0.013238531537353992, -0.003859215881675482, 0.009313435293734074, -7.964183168951422e-05, 0.004462543409317732, 0.01812756434082985, 0.027059586718678474, -0.024715624749660492, -0.008335628546774387, 0.005880709737539291, -0.016490953043103218, -0.018779436126351357, 0.0035246117040514946, 0.031927816569805145, -0.0030703824013471603, 0.011248243972659111, -0.03825235366821289, 0.016324518248438835, 0.007697626948356628, -0.020263483747839928, 0.0017727080266922712, -0.004757272079586983, 0.005041599273681641, -0.026588020846247673, -0.030679551884531975, -0.005058935843408108, -0.0006119960453361273, 0.0022538097109645605, -0.009715653955936432, 0.01840495690703392, 0.03342573344707489, -0.016643518581986427, -0.0420248843729496, -0.012503443285822868, 0.017226042225956917, 0.000984741491265595, -0.003595693502575159, -0.0028918113093823195, -0.0023370273411273956, 0.01840495690703392, 0.02135918103158474, -0.0037621285300701857, 0.0043446519412100315, -0.022316183894872665, -0.012905661016702652, 0.02174752950668335, 0.01246876921504736, 0.01583908125758171, -0.005842568352818489, -0.017267649993300438, 0.0013375494163483381, 0.003115458646789193, -0.020097048953175545, -0.0029022134840488434, 0.0003718786174431443, 0.004348119255155325, -0.026685107499361038, -0.005481958854943514, 0.01750343292951584, 0.009965306147933006, 0.00630373228341341, 0.0031848065555095673, 0.005804426968097687, 0.0023925057612359524, 0.01128291804343462, -0.0056518614292144775, 0.006841179449111223, -0.0037586612161248922, 0.035506170243024826, 0.010589438490569592, -0.003952835686504841, 0.004788478836417198, -0.004563097842037678, 0.037836264818906784, 0.024854321032762527, -0.019167784601449966, 0.0036927806213498116, -0.008037432096898556, -0.022968055680394173, 0.006959070917218924, -0.00031509995460510254, -0.007343952544033527, 0.01324546616524458, -0.01454920880496502, 0.020443787798285484, 0.00990289356559515, -0.0018533250549808145, -0.002161923563107848, -0.0004906370304524899, 0.031345292925834656, 0.013529793359339237, -0.001865461003035307, 0.002789522986859083, 0.007135908585041761, -0.010811352171003819, -0.007434104569256306, -0.009285695850849152, 0.031650424003601074, -0.004687924403697252, 0.017766956239938736, -0.0010376193094998598, 0.016158081591129303, 0.02307901158928871, 0.002042298438027501, -0.04829394072294235, -0.015936167910695076, -0.008959760889410973, 0.006463232915848494, 0.008793325163424015, -0.0025780117139220238, 0.028931982815265656, -0.009833545424044132, 0.0026802998036146164, 0.027087325230240822, -0.009701783768832684, 0.013398031704127789, 0.0040013790130615234, -0.010582503862679005, -0.030984682962298393, 0.001964281778782606, 0.00035280792508274317, 0.01948678493499756, 0.029930593445897102, -0.025672627612948418, -0.00025181990349665284, 0.015353645198047161, 0.020554745569825172, 0.0006796102970838547, 0.001998955849558115, -0.004570032469928265, 0.004687924403697252, -0.013564467430114746, -0.011275983415544033, 0.020610222592949867, -0.011484027840197086, 0.015201079659163952, -0.012961139902472496, -0.03606095537543297, 0.009514544159173965, 0.014757253229618073, -0.029597723856568336, 0.03015250712633133, -0.011622723191976547, -0.011185831390321255, -0.0009960104944184422, 0.009278761222958565, -0.014840470626950264, -0.010256567969918251, 0.005613720044493675, -0.0008599151042290032, 0.015395253896713257, 0.00012916063133161515, 0.008876542560756207, 0.012877922505140305, -0.005343263037502766, 0.0036095629911869764, -0.012302333489060402, -0.004438271280378103, 0.008224671706557274, -0.012794704176485538, 0.01394588127732277, 0.01868234947323799, 0.0032021435908973217, -0.0062898630276322365, -2.459686584188603e-05, 0.025422973558306694, -0.0025606746785342693, -0.012073485180735588, 0.025159452110528946, 0.01079748198390007, 0.008169193752110004, 0.024923669174313545, 0.0013609543675556779, 0.025395235046744347, -0.001894933870062232, 0.023398011922836304, -0.021456269547343254, 0.015228819102048874, 0.0024826580192893744, -0.043827932327985764, -0.028280111029744148, -0.001484047039411962, -0.00025030289543792605, -0.0067718313075602055, 0.015728125348687172, 0.005447284784168005, 0.0007047489634715021, -0.007864062674343586, -0.006678211502730846, 0.01945904642343521, -0.014327295124530792, -0.00015061517478898168, 0.03325929865241051, 0.019667090848088264, -0.016629649326205254, -0.01173368003219366, -0.03950061649084091, 0.00975032802671194, 0.003013170324265957, 0.02252422831952572, 0.03023572452366352, -0.04859907180070877, -0.0017501699039712548, 0.00454229349270463, -0.01766986772418022, 0.012884857133030891, -0.0038522810209542513, -0.02735084854066372, 0.05217742919921875, 0.014410512521862984, 0.016601908951997757, -0.016601908951997757, 0.0067995707504451275, -0.0048543596640229225, -0.004129672888666391, -0.001046287827193737, -0.003592225955799222, 0.029680941253900528, 0.016796084120869637, 0.010665721260011196, 0.0033078992273658514, 0.012364747002720833, -0.0011624457547441125, -0.0037968026008456945, 0.00908458698540926, 0.013592206872999668, 0.014112316071987152, 0.017253780737519264, 0.004140075296163559, 0.012905661016702652, 0.007912606000900269, 0.0005023395060561597, 0.02314835973083973, 0.013259336352348328, 0.011067939922213554, -0.01832173950970173, -0.018224652856588364, -0.0043307822197675705, 0.0219833143055439, 0.015631036832928658, 0.0008278416353277862, -0.013689293526113033, -0.001622742973268032, -0.0022746140602976084, -0.01832173950970173, 0.015422993339598179, -0.018696218729019165, -0.01560329832136631, 0.0010601574322208762, -0.025159452110528946, 0.009722588583827019, -0.024341145530343056, 0.01626903936266899, 0.0023266251664608717, -0.012343942187726498, 0.014993036165833473, -0.011948659084737301, -0.015436863526701927, -0.0011191032826900482, -0.011539505794644356, -0.036171913146972656, -0.019292611628770828, 0.0022988859564065933, -0.007683757692575455, -0.0005647527286782861, -0.020721180364489555, -0.017170563340187073, -0.010859895497560501, -0.013488184660673141, -0.010950048454105854, 0.009986110962927341, 0.0059396554715931416, 0.005440350156277418, -0.026685107499361038, 0.02435501478612423, -0.006556852720677853, -0.00601940555498004, -0.012787769548594952, 0.01590842939913273, -0.013474314473569393, 0.0492648147046566, -0.017877912148833275, 0.03112337924540043, -0.0032541544642299414, 0.014521469362080097, -0.011171961203217506, -0.016588039696216583, -0.025076234713196754, -0.010062393732368946, -0.00041652139043435454, -0.008474324829876423, -0.021692052483558655, 0.010485416278243065, -0.0016002049669623375, 0.02762823924422264, -0.018072087317705154, 0.008065171539783478, -0.006043677683919668, -0.03780852630734444, -0.014923688024282455, -0.017323128879070282, -0.02568649686872959, 0.033758603036403656, -0.019320350140333176, -0.019431307911872864, 0.0033859156537801027, -0.036393824964761734, 0.00727460440248251, 0.008016628213226795, -0.026171931996941566, 0.02637997642159462, 0.03292642533779144, -0.01173368003219366, 0.008980564773082733, 0.003115458646789193, 0.013294010423123837, -0.024133101105690002, -0.014604686759412289, -0.012884857133030891, -0.004684457089751959, -0.002250342397019267, -0.0011381739750504494, 0.0048266202211380005, 0.016435474157333374, -0.01034671999514103, 0.019403567537665367, 0.013932012021541595, 0.007018016651272774, -0.053148303180933, -0.004937577061355114, 0.010728134773671627, 0.002113380003720522, 0.012850183062255383, -0.022538097575306892, 0.011213569901883602, -0.023883448913693428, 0.009091521613299847, 0.017517302185297012, 0.018224652856588364, -0.003333904780447483, 0.007399430964142084, -0.007815518416464329, 0.015159470960497856, 0.038890354335308075, -0.0041643469594419, -0.01113035250455141, -0.015006905421614647, 0.01728151924908161, 0.0023370273411273956, 0.0008642493630759418, -0.010013850405812263, 0.010485416278243065, -0.04163653403520584, -0.007232995703816414, 0.014965296722948551, -0.0021584562491625547, -0.011317592114210129, -0.00902910903096199, -0.011338396929204464, -0.008058236911892891, -0.010533959604799747, 0.025617148727178574, -0.012142833322286606, -0.005842568352818489, -0.016158081591129303, 0.013203857466578484, 0.025728104636073112, -0.03403599560260773, 0.05306508392095566, -0.03273225203156471, 0.008169193752110004, 0.029986072331666946, -0.010423003695905209, 0.011054069735109806, 0.0003835810930468142, 0.014743383042514324, 0.009368914179503918, 0.017184432595968246, -0.001785710803233087, -0.027808545157313347, 0.005585980601608753, 0.008758651092648506, -0.008502064272761345, -0.0038522810209542513, -0.0025173320900648832, 0.009486805647611618, 0.006584591697901487, -0.005495828576385975, 0.003404986346140504, -0.016158081591129303, -0.0019816188141703606, 0.008703173138201237, 0.005783622618764639, -0.006286395713686943, 0.005540904588997364, -0.012205246835947037, 0.011393874883651733, -0.02474336326122284, -0.01646321266889572, 0.006428558845072985, 0.004639380611479282, 0.010041588917374611, -0.0011217037681490183, -0.012551986612379551, -0.007475713733583689, -0.030568594112992287, -0.003259355667978525, 0.003932031337171793, -0.0015395254595205188, -0.00025355358957313, 0.004472945351153612, 0.015575558878481388, 0.002175793284550309, 0.018502043560147285, 0.005863372702151537, -0.007981954142451286, -0.002447984181344509, -0.012073485180735588, 0.0028519362676888704, -0.006581124383956194, 0.010672655887901783, 0.0224548801779747, 0.05264899507164955, 0.006140764802694321, 0.004431336652487516, 0.003706650109961629, -0.002924751490354538, -0.02529814839363098, 0.009812740609049797, 0.005683068186044693, -0.0008217737195082009, 0.0010575568303465843, 0.006463232915848494, -0.018113695085048676, 0.013821055181324482, 0.006594994105398655, -0.023120621219277382, 0.006140764802694321, 0.0035852910950779915, 0.03312060236930847, -0.0024133101105690002, 0.012656008824706078, -0.0006735423812642694, 0.01890426315367222, -0.002656028140336275, 0.01502077467739582, -0.011601919308304787, 0.010755873285233974, 0.00044902824447490275, -0.00502772955223918, 0.008827999234199524, 0.02506236359477043, -0.005305121187120676, 0.00047416691086255014, 0.003873085370287299, -0.016754474490880966, -0.004999990109354258, 0.01708734594285488, -0.0006466699996963143, 0.0016158082289621234, 0.003907759208232164, 0.010637981817126274, -0.0014311692211776972, 0.0025606746785342693, 0.022815490141510963, 0.033758603036403656, -0.010325916111469269, -0.018307870253920555, 0.01099165715277195, -0.0019504122901707888, -0.008557542227208614, -0.0037447914946824312, -0.020263483747839928, -0.00015408257604576647, 0.010402198880910873, -0.010027719661593437, 0.009611631743609905, -0.005475024227052927, 0.0019382763421162963, 0.0034743344876915216, -0.005995133891701698, -0.019445177167654037, -0.013328684493899345, -0.007538126781582832, -0.02385570853948593, -0.015741994604468346, -0.006976407952606678, -0.0103883296251297, -0.020374439656734467, -0.021109528839588165, 0.009403587318956852, -0.009764197282493114, 0.004837022628635168, 0.022593576461076736, 0.008259345777332783, -0.029209373518824577, -0.003021838841959834, 0.009056847542524338, 0.012482638470828533, 0.027087325230240822, 0.017364736646413803, -0.002552006160840392, 0.008467390201985836, 0.011699005961418152, -0.006425091531127691, -0.010284307412803173, -0.006726755294948816, -0.004462543409317732, 0.008280150592327118, -0.01449373085051775, 0.014701774343848228, -0.044493671506643295, -0.005821764003485441, -0.0016123407986015081, -0.007586670573800802, 0.0033460406120866537, -0.0010974319884553552, 0.003696247935295105, -0.013162248767912388, 0.0029160829726606607, 0.011969463899731636, 0.0075173224322497845, 0.01367542427033186, 0.013529793359339237, -0.012295398861169815, 0.00032875282340683043, 0.02314835973083973, -0.02513171173632145, 0.02353670820593834, 0.031262073665857315, -0.013744772411882877, 0.001689490512944758, -0.0026698976289480925, -0.007156712934374809, -0.002789522986859083, -0.005787089932709932, -0.033203817903995514, -0.011484027840197086, 0.029930593445897102, -0.010582503862679005, -0.016865432262420654, -0.007551996503025293, 0.002508663572371006, 0.0020960429683327675, 0.010360590182244778, 0.013328684493899345, -0.005759350955486298, 0.021081790328025818, -0.012766965664923191, -0.0035055410116910934, -0.010672655887901783, -0.012350877746939659, -0.007753105368465185, 0.016407735645771027, 0.010755873285233974, -0.0017250312957912683, 0.017725346609950066, -0.005301653873175383, -0.008037432096898556, 0.004119270946830511, 0.0212482251226902, -0.0222190972417593, -0.0015447265468537807, 0.032205209136009216, 0.014271817170083523, 0.007350887171924114, 0.013051291927695274, 0.0076768225990235806, -0.0008226405479945242, -0.014965296722948551, -0.019791917875409126, 0.008571411482989788, 0.02859911136329174, -0.014951427467167377, -0.016282908618450165, 0.000505806936416775, 0.021692052483558655, 0.0054438174702227116, -0.0008421446545980871, 0.03669895604252815, 0.0030461105052381754, -0.0020856407936662436, -0.005603317636996508, 0.013259336352348328, -0.005110946949571371, -0.032704513520002365, -0.003918161615729332, 0.00022148014977574348, 0.013543662615120411, 0.014868209138512611, 0.017378607764840126, -0.02248261868953705, 0.006386950146406889, 0.01851591467857361, -0.00487516401335597, -0.03275999054312706, -0.008106780238449574, -0.01067959051579237, 0.005495828576385975, 0.013626880943775177, -0.025353625416755676, 0.004355053883045912, -0.006428558845072985, -0.008453520014882088, 0.012621334753930569, 0.011123417876660824, 0.003469133283942938, -0.01629677787423134, 0.013314814306795597, -0.01646321266889572, 0.00012742693070322275, -0.007649083621799946, 0.0037274546921253204, 0.03736469894647598, -0.009375848807394505, -0.0025260006077587605, -0.008280150592327118, -0.00042107232729904354, -0.004947979468852282, 0.009965306147933006, -0.0129195312038064, -0.022981924936175346, 0.008203867822885513, -0.00842578150331974, 0.0008885211427696049, 0.017558911815285683, -0.0032472198363393545, -0.026352237910032272, -0.017364736646413803, 0.005260045174509287, -0.024923669174313545, -0.006920929532498121, -0.06069336459040642, -0.01789178140461445, 0.016588039696216583, -0.0025745441671460867, -0.026282889768481255, -0.015325906686484814, 0.023481229320168495, 0.002907414687797427, 0.009368914179503918, 0.00027890896308235824, 0.019320350140333176, 0.006522178649902344, 0.031178858131170273, -0.02743406593799591, -0.002928219037130475, 0.014854339882731438, 0.017253780737519264, 0.004209422972053289, 0.0020058907102793455, -0.003028773469850421, 0.024993017315864563, -0.006542982999235392, -0.02629675902426243, 0.020485397428274155, 0.0019330752547830343, 0.026740586385130882, 0.0027149738743901253, -0.013467379845678806, 9.892924572341144e-05, -0.02167818322777748, 0.005391806364059448, -0.0017510368488729, -0.006803038064390421, -0.002364766551181674, 0.015547819435596466, 0.014840470626950264, 0.011955593712627888, 0.023217707872390747, 0.015977777540683746, -1.678167245700024e-05, 0.0045526959002017975, -0.007378626614809036, -0.011171961203217506, 0.03977800905704498, 0.010201090015470982, 0.0060679493471980095, 0.007829388603568077, -0.0004967050044797361, -0.012232986278831959, -0.005388339050114155, 0.005360599607229233, 0.00651871133595705, -0.013661554083228111, -0.012413290329277515, -0.003904291894286871, 0.00755893113091588, -0.027655979618430138, 0.023522838950157166, -0.01911230757832527, 0.013918141834437847, 0.0035367475356906652, 0.0024965277407318354, 0.027295369654893875, 0.020998572930693626, -0.0039146943017840385, 0.0008083375287242234, -0.014230208471417427, -0.0022728804033249617, -0.012274594977498055, 0.019320350140333176, 0.0004494616878218949, 0.005696937441825867, 0.013689293526113033, -0.032898686826229095, 0.013148379512131214, 0.002345695858821273, 0.0010081464424729347, -0.0034257909283041954, -0.012135898694396019, -0.003769063390791416, 0.019431307911872864, 0.004393195267766714, 0.021997183561325073, -0.015353645198047161, -0.008120649494230747, 0.012378616258502007, -0.0024410493206232786, -0.004531891085207462, 0.03528425842523575, 0.02291257679462433, 0.004847424570471048, 0.004379325546324253, 0.00251906574703753, -0.010097067803144455, 0.006536048371344805, 0.014618556946516037, 0.003689313307404518, -0.013370293192565441, -0.01449373085051775, 0.0008235074346885085, 0.0046185762621462345, 0.01044380757957697, 0.007232995703816414, -0.0025866799987852573, -0.00235956534743309, -0.0050624036230146885, 0.004864761605858803, 0.013314814306795597, -0.00914700049906969, 0.010083198547363281, 0.0018221185309812427, 0.00460123922675848, -0.016060994938015938, 0.024257928133010864, -0.00943826138973236, 0.025492321699857712, 0.0032558883540332317, 0.01961161196231842, 0.013786381110548973, -0.028543634340167046, 0.006903592497110367, -0.004736467730253935, -0.0007350887171924114, -0.005464621819555759, -0.0005998601554892957, 0.02155335620045662, -0.014868209138512611, -0.0016617513028904796, -0.018349478021264076, 0.008418845944106579, -0.02723989076912403, 0.01696251891553402, 0.0005664863856509328, -0.011872376315295696, -3.586591628845781e-05, 0.00497918576002121, 0.0018342543626204133, -0.018224652856588364, 0.007018016651272774, 0.0031692031770944595, 0.015520080924034119, -0.006009003613144159, 0.015631036832928658, 0.004573500249534845, -0.005471556447446346, -0.01219831220805645, 0.01221911609172821, 0.01961161196231842, -0.022163618355989456, 0.007434104569256306, -0.0164216049015522, -0.00640081986784935, -0.012933400459587574, -0.010041588917374611, 0.006681679282337427, -0.01324546616524458, -0.015062384307384491, 0.011137287132441998, -0.03312060236930847, 0.013016617856919765, -0.012309269048273563, -0.033287037163972855, -0.012739226222038269, -0.019472915679216385, -0.02070731110870838, 0.011803028173744678, 0.005249643232673407, -0.0022988859564065933, -0.016366126015782356, -0.006851581856608391, 0.035894520580768585, 0.005325926002115011, -0.023827970027923584, -0.005440350156277418, 0.00218792911618948, 0.010006914846599102, 0.023508969694375992, 0.012142833322286606, -0.0026993704959750175, -0.0166573878377676, -0.003309632884338498, -0.02170592173933983, -0.014271817170083523, 0.004701793659478426, 0.010277372784912586, 0.005405676085501909, -0.012357812374830246, 0.019542263820767403, 0.01536751538515091, -0.005468089133501053, 0.024701755493879318, 0.007170582190155983, 0.022441010922193527, 0.0027721859514713287, 0.015658777207136154, -0.019015219062566757, -0.0013063427759334445, 0.01502077467739582, -0.00036299339262768626, -0.004902902990579605, 0.022385532036423683, 0.0057177417911589146, -0.0248681902885437, 0.00317613803781569, 0.0008317424799315631, -0.0031692031770944595, 0.015325906686484814, -0.005984731949865818, 0.012427160516381264, -0.020804397761821747, 0.013772510923445225, -0.011088743805885315, 0.010769743472337723, -0.021650442853569984, 0.013529793359339237, 0.003873085370287299, 0.028266241773962975, -0.00142250070348382, -0.01614421233534813, 0.008488194085657597, -0.006119960453361273, -0.006972940638661385, -0.009736457839608192, 0.0118307676166296, -0.01357833668589592, -0.012128964066505432, 0.02926485240459442, -0.012836313806474209, 0.008841869421303272, 0.008467390201985836, -0.007773909717798233, -0.0043169124983251095, 0.011601919308304787, 0.005104012321680784, 0.008522868156433105, -0.007385561242699623, 0.004091531503945589, 0.010270437225699425, -0.014465991407632828, -0.02194170467555523, -0.003509008325636387, 0.0502634234726429, 0.013543662615120411, -0.023508969694375992, -0.0016149414004758, -0.013418836519122124, -0.01700412854552269, 0.012780834920704365, 0.025728104636073112, -0.02194170467555523, 0.013668489642441273, -0.011490962468087673, -0.00695560360327363, 0.014826600439846516, -0.011199700646102428, -0.020915353670716286, 0.005457687191665173, 0.019680960103869438, -0.0015351912006735802, -0.0010081464424729347, -0.024729494005441666, 0.005121349357068539, -0.008349498733878136, 0.0027479142881929874, 0.015090122818946838, -0.008141454309225082, -0.00526351248845458, 0.007551996503025293, 0.004358521196991205, -0.017212171107530594, -0.028931982815265656, -0.007461844012141228, 0.0013020085170865059, 0.026005497202277184, 0.031095638871192932, 0.0017553711077198386, 0.013862663879990578, 0.011907050386071205, 0.01685156300663948, 0.01875169761478901, -0.024798842146992683, -0.017212171107530594, 0.008980564773082733, -0.012385551817715168, 0.01034671999514103, 0.002106445375829935, -0.008606085553765297, 0.016130343079566956, 0.006861983798444271, 0.005294719245284796, -0.010603307746350765, 0.0007008481188677251, 0.014993036165833473, 0.010617177933454514, 0.0033061655703932047, -0.018349478021264076, 0.003023572498932481, 0.008349498733878136, 0.0034604647662490606, 0.003403252689167857, 0.01629677787423134, 0.016601908951997757, 0.0010653585195541382, 0.016601908951997757, -0.002473989734426141, 0.019750308245420456, 0.007246865425258875, -0.0028068600222468376, 0.012760031037032604, 0.0178640428930521, -0.003973640035837889, -0.0034205897245556116, 0.002116847550496459, -0.01237168163061142, -0.00030816515209153295, -0.012302333489060402, 0.006903592497110367, 0.0019209394231438637, 0.016837691888213158, -0.00156119663733989, 0.007905671373009682, -0.007108169142156839, -0.003977107349783182, 0.013370293192565441, -0.016366126015782356, 0.0031483988277614117, 0.003907759208232164, -0.0016877567395567894, 0.03556165099143982, -0.018030477687716484, 0.004739935044199228, 0.007954214699566364, -0.009861284866929054, 0.004764207173138857, 0.006171971093863249, -0.03073503077030182, 0.0001844223152147606, 0.01864073984324932, -0.003873085370287299, -0.0038557483348995447, 0.008952826261520386, 0.00920247845351696, -0.0054784915409982204, 0.005724676884710789, 0.00875171646475792, -0.013030488044023514, -0.004462543409317732, 0.007801649160683155, -0.004611641634255648, -0.005298186559230089, -0.01790565252304077, -0.021719790995121002, 0.010700395330786705, 0.013349488377571106, -0.01325240172445774, 0.0030877194367349148, 0.015076253563165665, 0.017142822965979576, -0.008758651092648506, 0.024230187758803368, -0.009868219494819641, -0.018002739176154137, 0.004521489143371582, 0.004025651142001152, 0.005755883175879717, 0.0005023395060561597, -0.0006453697569668293, 0.009424392133951187, 0.022274574264883995, -0.008259345777332783, 0.009063782170414925, -0.02637997642159462, -0.010159481316804886, 0.0031605346594005823, -0.014771122485399246, 0.006258656270802021, 0.003717052284628153, -0.010436872951686382, 0.007128973491489887, -0.003789867740124464, 0.02019413560628891, -0.03522878140211105, -0.01369622815400362, -0.006830777041614056, 0.008772521279752254, -0.01832173950970173, -0.004427869338542223, 0.018502043560147285, -0.010360590182244778, -0.002874474273994565, 0.003977107349783182, -0.00377946556545794, -0.009951436892151833, -0.001107834163121879, -0.006119960453361273, 0.0008287085220217705, 0.0019920209888368845, -0.007056158035993576, -0.0030859855469316244, 0.0008343430235981941, -0.012753095477819443, -0.0035575521178543568, 0.03054085560142994, 0.012441029772162437, -0.010859895497560501, -0.014140055514872074, 0.018085956573486328, 0.012156703509390354, 0.03345347195863724, -0.021525617688894272, -0.020138656720519066, -0.018543653190135956, -0.012933400459587574, -0.00042497317190282047, 0.011123417876660824, 0.012330072931945324, -0.010263502597808838, 0.0014086310984566808, 0.018141435459256172, -0.0013774244580417871, -0.008023562841117382, 0.009341174736618996, 0.009771131910383701, 0.0024653212167322636, 0.015936167910695076, 0.009230217896401882, -0.03423016890883446, 0.005516632925719023, 0.0041227382607758045, -0.01463242620229721, -0.0033078992273658514, -0.01700412854552269, 0.006494439672678709, 0.00957002304494381, 0.01950065605342388, 0.023703143000602722, 0.0030391758773475885, 0.002030162373557687, -0.009015238843858242, 0.004292640835046768, -0.023245446383953094, -0.01868234947323799, -0.021178876981139183, 0.018418826162815094, -0.013737836852669716, -0.017461825162172318, 0.01264907419681549, -0.008730912581086159, -0.0013141444651409984, 0.003479535458609462, -0.009826610796153545, -0.029237113893032074, -0.007545061409473419, 0.010790547356009483, 0.00013609543384518474, -0.01472951378673315, 0.017531173303723335, 0.00175363733433187, -0.009764197282493114, -0.01747569441795349, -0.018155304715037346, 0.016407735645771027, -0.015825212001800537, 0.022746141999959946, -0.0065637873485684395, -0.012815508991479874, -0.00647016754373908, -0.018932001665234566, 0.011622723191976547, -0.04022183641791344, 0.0075173224322497845, -0.007718431763350964, 0.007496518082916737, -0.013259336352348328, -1.9436400179984048e-05, 0.0012005871394649148, 0.010416068136692047, -0.016518691554665565, 0.007406365592032671, -0.01186544168740511, -0.02435501478612423, -0.016102604568004608, 0.016171952709555626, -0.018432697281241417, 0.033952776342630386, 0.004771141801029444, -0.005943122785538435, -0.0031882738694548607, 0.002541603986173868, 0.0017163627780973911, -0.016865432262420654, 0.00673022260889411, -0.009001369588077068, -0.017253780737519264, 0.025381365790963173, -0.007635213900357485, 0.018779436126351357, -0.001764039508998394, -0.010970852337777615, 0.01790565252304077, -0.00027739195502363145, 0.013259336352348328, -0.004528423771262169, -0.007049223408102989, -0.025825193151831627, -0.022787749767303467, 0.029042938724160194, -0.01511786226183176, -0.022857097908854485, 0.010908438824117184, -0.016712866723537445, -0.00048803648678585887, -0.006542982999235392, 0.0016028054524213076, -0.003290562191978097, -0.020208004862070084, -0.0023422285448759794, 0.003091186750680208, -0.009431326761841774, -0.014895948581397533, 0.011844636872410774, -0.009826610796153545, -0.006796103436499834, 0.012295398861169815, 0.011636593379080296, 0.019930612295866013, -0.004805815871804953, -0.0029646267648786306, 0.000151156957144849, 0.005423013120889664, -0.01225379016250372, -0.020915353670716286, -0.0033581764437258244, -0.008467390201985836, 0.02034670114517212, -0.001870662090368569, -0.006976407952606678, 0.0017180965514853597, -0.020069308578968048, 0.012260724790394306, -0.008196932263672352, -0.007239930331707001, 0.006574189756065607, -0.009764197282493114, 0.002815528539940715, 0.00662620086222887, 0.033758603036403656, 0.0021515213884413242, 0.007572800852358341, -0.007496518082916737, 0.014042968861758709, 0.016782214865088463, -0.014715643599629402, 0.006428558845072985, 0.0059257857501506805, 0.007801649160683155, 0.005735078826546669, -0.005554774310439825, 0.003477801801636815, 0.00898749940097332, 0.013148379512131214, -0.0011191032826900482, -0.002383837243542075, -0.013827989809215069, -0.030013810843229294, -0.033980514854192734, -0.0016054060542955995, -0.0015429927734658122, -0.02299579419195652, 0.026712846010923386, -0.0017874444602057338, -0.0033564427867531776, -0.02109565958380699, -0.007870997302234173, -0.023398011922836304, 0.014084577560424805, 0.027142804116010666, 0.002503462601453066, 0.02299579419195652, -0.00034067200613208115, 0.01607486419379711, -0.0010636248625814915, -0.002343962201848626, 0.0008945891167968512, 0.03758661076426506, 0.0272815003991127, -0.006875853519886732, -0.009070717729628086, 0.021456269547343254, -0.005332860630005598, -0.016213560476899147, 0.013065162114799023, -0.0118307676166296, -0.002132450696080923, -0.007836323231458664, 0.02280161902308464, -0.0009509343653917313, 0.01790565252304077, 0.005658796057105064, 0.0029316863510757685, 0.008051302284002304, 0.00799582339823246, -0.019403567537665367, -0.01203881110996008, 0.004275303799659014, -0.012246855534613132, 0.01952839456498623, 0.013758641667664051, -0.0005565176252275705, 0.010270437225699425, -0.0067718313075602055, -0.009015238843858242, -0.005769752897322178, 0.0128016397356987, -0.024188579991459846, -0.006255188956856728, 0.01988900452852249, -0.016823822632431984, 0.007267669774591923, 0.0006497040158137679, -0.00883493386209011, 0.003769063390791416, 0.0022347390186041594, 0.02069343999028206, -0.015533950179815292, -0.004147009924054146, -0.010485416278243065, -0.009403587318956852, 0.007461844012141228, 0.019237132743000984, 0.008162259124219418, -0.012073485180735588, 0.013044357299804688, 0.008245476521551609, -0.011199700646102428, -0.014895948581397533, -0.024257928133010864, -0.0015525282360613346, -0.0032177467364817858, -0.006085286382585764, 0.005977796856313944, 0.011816898360848427, 0.006109558045864105, 0.013127574697136879, -0.019237132743000984, 0.004455608315765858, 0.00570040475577116, -0.0029108820017427206, 0.022163618355989456, -0.019056828692555428, -0.002834599232301116, 0.008619955740869045, 0.016518691554665565, 0.010950048454105854, 0.011407745070755482, -0.00031965089146979153, 0.005835633724927902, 0.014105381444096565, -8.275707841676194e-06, 0.005953525193035603, -0.008904282003641129, 0.0033564427867531776, -0.017253780737519264, 0.02450758032500744, 0.008273215033113956, 0.013446575962007046, 0.008682368323206902, 0.01067959051579237, 0.024216318503022194, 0.01203881110996008, -0.01560329832136631, 0.030097028240561485, -0.004882098641246557, -0.005440350156277418, -0.009036043658852577, -0.017031867057085037, 0.00033178681042045355, -0.006650472525507212, 0.02528427727520466, 0.01603325642645359, 0.015547819435596466, -0.01439664326608181, 0.021331442520022392, 0.00018008807091973722, 0.02381410077214241, -0.016019385308027267, 0.014993036165833473, -0.01089456956833601, 0.0012049213983118534, -0.010013850405812263, -0.0060679493471980095, 0.011678202077746391, -0.020804397761821747, -0.0015785336727276444, -0.008085976354777813, 0.00012829378829337656, -0.0243966244161129, 0.004785011522471905, -0.02646319381892681, -0.002895278623327613, -0.009160869754850864, -0.0025780117139220238, 0.016407735645771027, -0.006941733881831169, -0.002217401983216405, 0.009576957672834396, 0.017447954043745995, -0.012073485180735588, -0.03206651285290718, -0.03342573344707489, -0.02653254196047783, 0.00460123922675848, -0.005235773511230946, -0.003616497851908207, -0.013758641667664051, -0.0018689284333959222, -0.009556153789162636, 0.00848125945776701, -0.009999980218708515, -0.012461834587156773, 0.012011072598397732, 0.0005292118876241148, 0.0059153838083148, 0.01700412854552269, -0.02109565958380699, -0.02653254196047783, 0.002018026541918516, -0.00978500209748745, 0.004306510556489229, 0.010533959604799747, 0.03128981590270996, -0.005273914895951748, 0.007364756893366575, 0.013085965998470783, -0.011636593379080296, -0.0007064826786518097, 0.011269048787653446, -0.014840470626950264, -0.005596383009105921, 0.01065878663212061, 0.0011901849647983909, 0.015298167243599892, 0.0075034527108073235, 0.002447984181344509, 0.0026612291112542152, -0.002042298438027501, -0.0005283450009301305, -0.013959750533103943, -0.011414679698646069, -0.003456997452303767, -0.009278761222958565, -0.014174729585647583, 0.017447954043745995, -0.033564429730176926, 0.011393874883651733, -0.02420244924724102, 0.006532581057399511, -0.010582503862679005, -0.021192746236920357, 0.009680979885160923, 0.0060402099043130875, 0.003859215881675482, -0.013821055181324482, 0.017142822965979576, 0.022246835753321648, 0.0020995105151087046, -0.0319000780582428, 0.0017415015026926994, -0.006712885573506355, 0.01840495690703392, -0.006043677683919668, -0.014216338284313679, 0.018432697281241417, 0.00208217347972095, 0.009382783435285091, 0.0033425732981413603, 0.010631047189235687, -0.0001729365612845868, 0.017642129212617874, 0.004032585769891739, -0.013439641334116459, -0.010513155721127987, -0.00015321571845561266, 0.003769063390791416, 0.003834943985566497, -0.01754504255950451, 0.022357793524861336, 0.006158101838082075, -0.006466700229793787, -0.005579045973718166, 0.0014693106058984995, 0.015894560143351555, -0.012066550552845001, 0.0032922958489507437, -0.0052080340683460236, -0.0002163874014513567, -0.006608863826841116, -0.0010774944676086307, -0.017059605568647385, 0.03273225203156471, 0.003980574663728476, 0.007905671373009682, -0.011158091947436333, -0.007288474123924971, -0.0037621285300701857, 0.01599164679646492, 0.006050612311810255, 0.024993017315864563, 0.015852950513362885, 0.012621334753930569, -0.00017467026191297919, 0.00509707722812891, 0.005731611512601376, -0.00883493386209011, -0.01040913350880146, 0.0024029079359024763, 0.0011303722858428955, 0.0046047065407037735, 0.009757262654602528, -0.02049926668405533, 0.004486815072596073, 0.0033720461651682854, -0.0033807146828621626, -0.016407735645771027, -0.009757262654602528, -0.00449374970048666, -0.025353625416755676, 0.015242688357830048, -0.014257946982979774, 0.019819656386971474, -0.0026941695250570774, -0.005495828576385975, 0.003325236262753606, 0.0006661741645075381, -0.00836336798965931, -0.009826610796153545, -0.0054299477487802505, -0.015672646462917328, 0.009549218229949474, 0.005776687990874052, -0.03528425842523575, -0.002375168725848198, -0.01110954862087965, 0.005769752897322178, 0.016324518248438835, -0.01173368003219366, -0.016366126015782356, 0.029431287199258804, 0.024299535900354385, 0.029819637537002563, 0.01626903936266899, -0.00755893113091588, -0.02545071393251419, -0.004289173521101475, -0.003932031337171793, -0.008280150592327118, -0.03636608645319939, 0.007662953343242407, 0.011539505794644356, 0.007981954142451286, -0.009431326761841774, 0.040832098573446274, 0.000812671787571162, 0.016588039696216583, -0.003498606150969863, -0.026629628613591194, 0.019694829359650612, 0.02284322865307331, 0.0004043854714836925, 0.008370302617549896, 0.011158091947436333, -0.009133130311965942, -0.008938956074416637, -0.005294719245284796, 0.0005001723766326904, -0.023009663447737694, 0.001766640110872686, 0.016948649659752846, -0.012565855868160725, -0.01579747349023819, -0.004070727154612541, 0.008994434960186481, -0.012864052318036556, 0.0094174575060606, -8.993567462312058e-05, -0.0031588010024279356, 0.00727460440248251, 0.017753085121512413, -0.0003911660169251263, -0.018488174304366112, -0.020249614492058754, 0.014098446816205978, -0.00034500626497901976, 0.012551986612379551, -0.0024601200129836798, 0.0013037422904744744, 0.00552356755360961, 0.016047125682234764, -0.0070734950713813305, 0.006803038064390421, 0.0017753086285665631, -0.019972221925854683, -0.004129672888666391, -0.004285705741494894, 0.007760040462017059, 0.0018290532752871513, 0.005249643232673407, -0.008169193752110004, -0.0003307032457087189, 0.005963927134871483, -0.042274534702301025, -0.004143542610108852, 0.012628269381821156, 0.003710117656737566, -0.008370302617549896, 0.0065637873485684395, 0.004400129895657301, 0.0008885211427696049, -0.013987489975988865, 0.0018914664397016168, 0.02140079066157341, 0.007316213101148605, -0.006064482033252716, 0.011511766351759434, 0.021719790995121002, 0.019431307911872864, 8.879794040694833e-05, 0.01961161196231842, 0.01325240172445774, 0.004327314905822277, 0.0015811342746019363, 0.027017977088689804, 0.01707347482442856, 0.0065915267914533615, 0.0026213540695607662, -0.006456298287957907, -0.01685156300663948, -0.014195534400641918, 0.0014129653573036194, -0.00224167387932539, -0.013169183395802975, -0.004507619421929121, 0.002019760198891163, -0.009646305814385414, -0.01708734594285488, 0.01188624557107687, -0.008335628546774387, -0.011761419475078583, -0.02062409371137619, 0.013717032968997955, -0.003973640035837889, -0.007239930331707001, -0.0012231252621859312, -0.003907759208232164, 0.014382774010300636, 0.0035246117040514946, -0.014410512521862984, 0.0008529803017154336, 0.02536749467253685, 0.011366136372089386, -0.012697617523372173, -0.005863372702151537, -0.007933409884572029, -0.00290394714102149, -0.002843267749994993, 0.005069338250905275, -0.006432026159018278, 0.008155323565006256, -1.4126944734016433e-05, -0.015145601704716682, -0.007184451911598444, -0.029209373518824577, 0.007031886372715235, -0.011518701910972595, 0.025201059877872467, 0.011872376315295696, -0.022551966831088066, 0.013085965998470783, 0.00744103966280818, 0.015145601704716682, 0.007038821000605822, -0.0035350138787180185, -0.007656018249690533, 0.010617177933454514, -0.003755193669348955, 0.02556166984140873, -0.005669198464602232, 0.016588039696216583, -0.002895278623327613, 0.007343952544033527, -0.018349478021264076, 0.006986810360103846, 0.011699005961418152, 0.0018984013004228473, -0.006872386205941439, 0.006827309727668762, 0.005533969961106777, -0.01766986772418022, 0.01607486419379711, -0.010721199214458466, 0.0031379966530948877, 0.01950065605342388, -0.029680941253900528, -0.009466000832617283, -0.0008482126286253333, 0.014979165978729725, 0.0049687838181853294, 0.0004260567366145551, 0.020527005195617676, 0.0004780677263624966, -0.00012666844122577459, 0.03547843173146248, 0.010318981483578682, -0.007330082822591066, 0.024105362594127655, 0.00990289356559515, 0.018543653190135956, 0.003313100431114435, -0.02034670114517212, 0.013925076462328434, 0.0128016397356987, 0.023827970027923584, -0.022898707538843155, -0.01902908831834793, -0.019237132743000984, 0.015617167577147484, -0.02334253489971161, 0.033009644597768784, -0.0014589084312319756, 0.0020544342696666718, -0.015922298654913902, 0.00883493386209011, -0.00695560360327363, -0.00026070509920828044, 0.0016799551667645574, -0.0007554597104899585, -0.008377237245440483, -0.020554745569825172, -0.013051291927695274, -0.007496518082916737, 0.004011781420558691, -0.0027687186375260353, 0.0014112317003309727, -0.0007636947557330132, 0.03323155641555786, -0.00393896596506238, -0.003280160017311573, -0.004136607516556978, 0.017226042225956917, -0.01017335057258606, -0.021067919209599495, 0.009431326761841774, 0.01789178140461445, 0.0058460356667637825, 0.02435501478612423, 0.011719810776412487, -0.0035991608165204525, -0.020180266350507736, 0.0012976742582395673, -0.018183043226599693, -0.03428564593195915, 0.01941743865609169, 0.0077253663912415504, -0.013349488377571106, 0.00037816326948814094, -0.017961129546165466, -0.023606056347489357, 0.01325240172445774, 0.01328707579523325, 0.007028419058769941, 0.013384162448346615, 0.01511786226183176, -0.012302333489060402, 0.0035679542925208807, 0.014153925701975822, -0.00345352990552783, 0.039667051285505295, -0.011747550219297409, 0.03500686585903168, -0.018959740176796913, -0.0061615691520273685, -0.028821025043725967, -0.009639371186494827, 0.0031986760441213846, -0.008189997635781765, 0.019195524975657463, 0.0003361210401635617, -0.004407064989209175, 0.014015229418873787, 0.013391097076237202, 0.004680989310145378, -0.0009379315888509154, 0.0030270398128777742, -0.004802348557859659, -0.003980574663728476, -0.0022347390186041594, -0.0008694504504092038, -0.0019348090281710029, -0.0034500625915825367, -0.0284881554543972, -0.014022164046764374, 0.003127594478428364, 0.024798842146992683, 0.008335628546774387, 0.00794034544378519, 0.006664342246949673, 0.004843957256525755, 0.0061615691520273685, -0.018460435792803764, 0.035894520580768585, 0.00240810913965106, -0.009868219494819641, 0.005904981400817633, 0.006418156903237104, 0.02163657359778881, -0.006251721642911434, -0.018779436126351357, -0.0032732251565903425, 0.0032784263603389263, 0.011303722858428955, -0.018529783934354782, 0.015700384974479675, 0.0212482251226902, 0.011019395664334297, -0.0006553385173901916, 0.004819685593247414, -0.006272525992244482, 0.006165036465972662, -0.015741994604468346, 0.017558911815285683, -0.002666430315002799, 0.01203881110996008, 0.01394588127732277, -0.0004022183420602232, -0.02743406593799591, 0.015963908284902573, -0.017267649993300438, -0.008259345777332783, 0.01527042780071497, 0.014327295124530792, 0.0033373720943927765, 0.0065776570700109005, -0.01044380757957697, 0.02377249114215374, 0.005221903789788485, 0.0036303673405200243, 0.007711496669799089, -0.01110954862087965, 0.009278761222958565, -0.03789174184203148, 0.0054299477487802505, -0.018696218729019165, -0.029320331290364265, -0.01065878663212061, -0.0038314766716212034, -0.02271840162575245, -0.014382774010300636, -0.014368903823196888, 0.006334939040243626, -0.012981943786144257, 0.0011329727713018656, -0.00902910903096199, 0.004937577061355114, -0.00043364166049286723, 0.014951427467167377, -0.017128953710198402, -0.007891801185905933, -0.0019625481218099594, 0.004022183362394571, 0.028543634340167046, 0.017961129546165466, -0.022052662447094917, -0.011477092280983925, -0.004972251132130623, 0.013231596909463406, -0.0021948639769107103, 0.011484027840197086, 0.0019920209888368845, 0.006300264969468117, -0.019015219062566757, -0.007697626948356628, -0.01909843645989895, -0.019986091181635857, -0.003928563557565212, -0.007156712934374809, -0.0027652510907500982, -0.019167784601449966, 0.009341174736618996, -0.004625510890036821, 0.001905336044728756, 0.02416083961725235, 0.003051311708986759, 0.02230231463909149, 0.0210124421864748, -0.0013670222833752632, 0.022205227985978127, -0.00427183648571372, 0.016435474157333374, 0.018196912482380867, 0.0045908372849226, 0.0071012345142662525, 0.015700384974479675, -0.012579726055264473, -0.014195534400641918, -0.007635213900357485, -0.003592225955799222, 0.001051488914526999, -0.029237113893032074, 0.019736438989639282, 0.004469478037208319, -0.0011650462402030826, 0.000126776794786565, 0.0115949846804142, -0.002399440621957183, 0.009105391800403595, 0.004126205574721098, -0.011421614326536655, 0.026560280472040176, -0.0016019386239349842, -0.009133130311965942, 0.006678211502730846, 0.011775288730859756, -0.030596334487199783, 0.002656028140336275, 0.01013867650181055, 0.01186544168740511, -0.006796103436499834, -0.005527034867554903, -0.00871704239398241, 0.010755873285233974, -0.01588069088757038, 0.014840470626950264, 0.014382774010300636, 0.004084596876055002, -0.02047152817249298, 0.02420244924724102, 0.012330072931945324, -0.0060540796257555485, 0.01418166421353817, -0.009251021780073643, 0.009389718063175678, -0.022288445383310318, -0.012517312541604042, 0.02131757326424122, -0.0035644867457449436, -0.007919540628790855, -0.004174749366939068, 0.026366107165813446, -0.007753105368465185, 0.010873764753341675, 0.0028571372386068106, 0.02851589396595955, 0.008619955740869045, 0.002385570900514722, 0.011144222691655159, -0.007586670573800802, 0.016477083787322044, 0.012926465831696987, 0.027184413745999336, -0.011061004363000393, -0.005343263037502766, 0.03281547129154205, -0.007836323231458664, 0.01394588127732277, 0.0013609543675556779, 0.03902905061841011, 0.006861983798444271, 0.006751026958227158, 0.00044902824447490275, -0.01406377274543047, -0.014965296722948551, 0.012912596575915813, 0.01637999527156353, -0.00932036992162466, -0.04416080191731453, -0.004947979468852282, 0.012600529938936234, 0.032621294260025024, -0.00959082692861557, 0.012191376648843288], "d802fbb6-1c8b-4540-b126-543f1cb58877": [-0.01606873795390129, -0.007090003229677677, -0.007772852201014757, 0.04631748050451279, -0.006683199666440487, -0.024771425873041153, 0.025686733424663544, 0.021633228287100792, 0.007881817407906055, 0.013250170275568962, 0.04535858705639839, 0.023158740252256393, 0.03687382861971855, 0.006875704973936081, -0.002386338310316205, 0.053349368274211884, 0.02401593327522278, -0.0013420882169157267, 0.0020322012715041637, -0.030219687148928642, 0.022054560482501984, -0.008128805086016655, -0.0007890897686593235, -0.017826709896326065, 0.010279051959514618, -0.010010271333158016, -0.02545427344739437, -0.0044784704223275185, -0.02886851690709591, -0.010482453741133213, -0.0005271192057989538, 0.01121615245938301, -0.0005162227316759527, 0.0007959000649861991, 0.020470932126045227, -0.0176668930798769, 0.031178580597043037, -0.0004299585707485676, -0.03443300724029541, 0.024364622309803963, 0.0058114780113101006, 0.023696301504969597, 0.016693470999598503, -0.020136771723628044, -0.02253400720655918, -0.0019668221939355135, -0.014724832959473133, -0.0007164463168010116, -0.009588939137756824, -0.04097092151641846, 0.0015182486968114972, -0.0015282371314242482, 0.016882343217730522, -0.015138900838792324, 0.04009919986128807, -0.05622605234384537, 0.013533479534089565, 0.02482954040169716, -0.00739873806014657, -0.03789083659648895, -0.009523559361696243, -0.000220087036723271, -0.0053175026550889015, -0.016112323850393295, 0.03048120252788067, 0.010475189425051212, -0.004206057172268629, -0.006973773706704378, -0.032573334872722626, -0.00015436738613061607, -0.012480149045586586, 0.0017125699669122696, -0.01798652485013008, 0.007743794471025467, -0.002202913397923112, 0.014419729821383953, 0.021139251068234444, 0.02939155139029026, 0.041552070528268814, -0.033067312091588974, -0.01232759840786457, -0.024597080424427986, 0.04384760186076164, 0.01929410733282566, 0.04994965344667435, 0.0105986837297678, 0.012254954315721989, -0.04605596512556076, 0.009044112637639046, -0.024364622309803963, -0.011543048545718193, 0.04527141526341438, 0.008048897609114647, -0.017216503620147705, -0.0029420608188956976, 0.02353648655116558, 0.004275068640708923, 0.0014256282011047006, -0.020630747079849243, -0.016083266586065292, -0.011535784229636192, -0.002193833002820611, 0.017419906333088875, -0.004511159844696522, 0.023304026573896408, -0.03789083659648895, 0.01003932859748602, -0.001155939302407205, -0.035885877907276154, 0.03908219188451767, -0.02041281759738922, -0.007307933643460274, 0.0028385438490659, -0.003890058258548379, -0.03422960638999939, -0.028548886999487877, -0.056603796780109406, 0.005488214548677206, -0.03870444372296333, -0.012618171982467175, 0.022054560482501984, -0.026834500953555107, 0.032050300389528275, -0.019555624574422836, -0.029870998114347458, -0.0013802261091768742, 0.004729090258479118, 0.032050300389528275, 0.027139602228999138, 0.02243230491876602, -0.0025497861206531525, -0.012058816850185394, -0.0042859651148319244, -0.01788482442498207, -0.0031745198648422956, 0.04149395227432251, 0.008114276453852654, 0.05099572241306305, 0.020964907482266426, 0.007576714735478163, -0.05526715889573097, -0.027313947677612305, -0.03181784227490425, 0.00848475843667984, 0.023783475160598755, 0.012995918281376362, -0.004224217962473631, 0.060323141515254974, 0.0023899704683572054, 0.012429298833012581, -0.07438691705465317, -0.013947547413408756, -0.013802260160446167, -0.0118554150685668, 0.05677814036607742, -0.02695073001086712, -0.020717918872833252, 0.030568374320864677, -0.006984670180827379, 0.0464627668261528, 0.044893667101860046, -0.04573633149266243, -0.00913854967802763, 0.05698154494166374, 0.04623030871152878, 0.03422960638999939, 0.03120763786137104, 0.03696100041270256, -0.011840886436402798, 0.01201523095369339, -0.0040644025430083275, -0.032166533172130585, 0.03321259841322899, 0.0363798514008522, -0.02039828896522522, -0.004569274839013815, 0.0323118194937706, 0.0015137084992602468, 0.032369934022426605, -0.010068385861814022, -0.012392977252602577, 0.027735279873013496, 0.026631098240613937, 0.017913881689310074, 0.014681247062981129, 0.03030685894191265, 0.018349742516875267, 0.026195237413048744, 0.004031713120639324, -0.010911050252616405, 0.009472709149122238, 0.008005310781300068, -0.0006170155247673392, 0.02414669096469879, -0.00474361889064312, -0.054598838090896606, 0.014361615292727947, 0.007336991373449564, -0.03899502009153366, 0.005815110169351101, 0.011586634442210197, -0.0423947349190712, -0.002172040054574609, 0.023391200229525566, -0.024902183562517166, 0.054976582527160645, 0.004881641827523708, -0.012988653965294361, 0.03379374369978905, -0.03809423744678497, 0.04814809560775757, -0.038123298436403275, 0.009262043051421642, -0.034491121768951416, 0.021487940102815628, 0.0027096017729490995, 0.0008708136738277972, 0.013242905959486961, -0.03655419871211052, -0.032951079308986664, -0.0008258655434474349, -0.0028875782154500484, -0.009378273040056229, -0.0059168110601603985, -0.03492698445916176, 0.03884973004460335, -0.019439393654465675, 0.03280579298734665, -0.019671853631734848, 0.007042785175144672, 0.051257237792015076, -0.003285301150754094, 0.01585080660879612, 0.0042859651148319244, -0.02211267501115799, 0.046201251447200775, 0.05227424576878548, -0.013417250476777554, 0.00053029740229249, 0.015778163447976112, 0.03359034284949303, 0.04562010243535042, -0.012785252183675766, -0.03948899358510971, 0.025788433849811554, 0.019744496792554855, -0.0313238687813282, 0.06590215861797333, -0.0057715242728590965, 0.002099396428093314, 0.001272168941795826, 0.012807045131921768, -0.014804740436375141, 0.02394329011440277, -0.004983342718333006, 0.030626490712165833, 0.012080609798431396, -0.045503873378038406, 0.007642093580216169, -0.0013475364539772272, -0.002704153535887599, 0.012073345482349396, -0.0016117771156132221, 0.015908921137452126, 0.01807369664311409, 0.0010987325804308057, 0.03120763786137104, 0.012596379034221172, 0.016388367861509323, 0.011543048545718193, 0.04503895714879036, 0.010896521620452404, -0.019410336390137672, 0.02028205804526806, -0.007918138988316059, 0.00019783996685873717, 0.009748755022883415, -0.023885175585746765, 0.03829764202237129, -0.005582651123404503, -0.004002655390650034, 0.02090679295361042, -0.012254954315721989, -0.012843366712331772, 0.028316427022218704, 0.009044112637639046, -0.010831142775714397, -0.0118699437007308, -0.035275671631097794, -0.01978808268904686, 0.01788482442498207, -0.00436950521543622, 0.010010271333158016, -0.0028385438490659, 0.03768743574619293, -0.0014229040825739503, 0.011383232660591602, 0.0061383736319839954, -0.007206232752650976, 0.026514869183301926, -0.03251522034406662, -0.026921672746539116, 0.012102403677999973, 0.02090679295361042, 0.05863781273365021, -0.02445179410278797, 0.011804564855992794, -0.005706144962459803, 0.009988478384912014, 0.012952331453561783, 0.0028893942944705486, -0.037019114941358566, -0.014405201189219952, 0.000387053529266268, 0.002531625097617507, 0.010090178810060024, -0.02413216233253479, -0.01858220063149929, -0.004874377511441708, -0.00899326242506504, -0.008150598034262657, -0.0015954324044287205, -0.04102903604507446, 0.0024208438117057085, 0.03867538645863533, -0.055877361446619034, 0.03048120252788067, -0.008274092338979244, -0.0212264247238636, -0.034694526344537735, -0.044196292757987976, 0.0029674859251827, -0.007961724884808064, -0.005477318074554205, -0.027386590838432312, -0.040854692459106445, -0.04602690786123276, -0.04899075999855995, 0.02251947857439518, -0.04413817822933197, 0.004100724123418331, -0.008942412212491035, -0.0026133491192013025, 0.009748755022883415, -0.0009815950179472566, 0.0017407193081453443, -0.010758498683571815, 0.030335916206240654, -0.032282762229442596, 0.020470932126045227, 0.0008826182456687093, 0.028127554804086685, 0.0232313834130764, -0.005237594712525606, 0.02788056619465351, -0.007961724884808064, 0.00016265329031739384, 0.027328476309776306, 0.021458882838487625, -0.025628618896007538, -0.003276220755651593, -0.017536135390400887, -0.007340623531490564, -0.003350680461153388, -0.01946845091879368, 0.02092132158577442, -0.0036575989797711372, -0.009363744407892227, -0.008571930229663849, 0.004790837410837412, 0.007860024459660053, -0.007540392689406872, 0.019047118723392487, -0.02535257302224636, -0.01399113330990076, -0.025614090263843536, 0.003922747913748026, 0.016141381114721298, -0.021023022010922432, 0.04349891468882561, 0.013678766787052155, 0.009981214068830013, 0.01256732176989317, 0.03420054912567139, 0.0027204982470721006, 0.009472709149122238, -4.7899291530484334e-05, -0.0016789723886176944, -0.0052012731321156025, 0.005172215402126312, -0.0029747504740953445, 0.023362142965197563, -0.030161570757627487, -0.0009075894486159086, -0.020223943516612053, -0.00955261755734682, -0.00711542833596468, -0.028156612068414688, 0.00847749412059784, -0.006051201838999987, -0.008797124959528446, 0.009588939137756824, -0.008361264131963253, 0.01707121729850769, 0.02687808685004711, -0.04303399473428726, -0.023057039827108383, -0.023158740252256393, 0.03341599926352501, 0.0012422034051269293, 0.017652364447712898, -0.004420355428010225, -0.03260239213705063, 0.053785230964422226, 0.07659528404474258, 0.008310413919389248, -0.03251522034406662, 0.039430879056453705, -0.00701736006885767, -0.002577027305960655, 0.00424601137638092, 0.011070866137742996, 0.029159091413021088, 0.0005443720729090273, 0.030161570757627487, 0.02533804439008236, -0.026384111493825912, 0.021357182413339615, 0.011826357804238796, 0.004300493746995926, -0.017652364447712898, 0.06555347144603729, 0.015807220712304115, -0.016286667436361313, -0.0030800835229456425, -0.00833947118371725, -0.027793394401669502, 0.014521431177854538, 0.03893690183758736, -0.0017398112686350942, -0.03051025979220867, 0.013446307741105556, -0.017245560884475708, -0.0003371111233718693, -0.015792692080140114, -0.059015560895204544, -0.015211543999612331, 0.02445179410278797, 0.029740238562226295, -0.006385361775755882, 0.0012431114446371794, 0.018320685252547264, -0.05372711643576622, -0.016838757321238518, 0.028403598815202713, -0.009683375246822834, 0.009966685436666012, -0.0044784704223275185, 0.012770723551511765, -0.08205807209014893, -0.017637835815548897, -0.033386941999197006, 0.04009919986128807, 0.029740238562226295, 0.05239047482609749, -0.009341951459646225, -0.0036721278447657824, -0.0013221112312749028, 0.0031345661263912916, 0.004910699091851711, -0.0004515245964284986, 0.002204729476943612, -0.004147942643612623, 0.02506200037896633, 0.021851157769560814, -0.006774004083126783, 0.016838757321238518, 0.0067849005572497845, 0.015894392505288124, 0.009966685436666012, 0.010090178810060024, -0.0005234870477579534, 0.03664137050509453, -0.007028256542980671, 0.016301196068525314, -0.007482278160750866, -0.002290085656568408, -0.008012575097382069, -0.017332732677459717, -0.02201097272336483, 0.029624009504914284, -0.009705168195068836, 0.052158016711473465, -0.012392977252602577, 0.019526567310094833, -0.01897447556257248, -0.01696951687335968, -0.01910523511469364, -0.000656515418086201, -0.04980436712503433, 0.0062546031549572945, -0.025919193401932716, -0.013199320062994957, -0.005742467008531094, 0.015720048919320107, 0.026979787275195122, 0.00033529504435136914, 0.02068886160850525, -0.0363507941365242, 0.015792692080140114, -0.044690266251564026, 0.010511511005461216, -0.03521755710244179, 0.024291979148983955, 0.014550488442182541, 0.0006388085894286633, -0.0022755570244044065, -0.008826182223856449, 0.0403897725045681, -0.0116156917065382, 0.017390849068760872, -0.023798003792762756, -0.009719696827232838, -0.009000526741147041, -0.006388993933796883, -0.017013102769851685, -0.014812004752457142, -0.03855915740132332, 0.023580072447657585, -0.03080083429813385, -0.02886851690709591, 0.005390145815908909, -0.029667595401406288, 0.02158964052796364, 0.009915834292769432, 0.007151750382035971, -0.002724130405113101, 0.03260239213705063, 0.02888304553925991, -0.02192380093038082, -0.06038125976920128, 0.0494556799530983, -0.01909070648252964, 4.1401108319405466e-05, -0.0043259188532829285, 0.007231658324599266, -0.007598507683724165, 0.0038973225746303797, -0.0068321190774440765, 0.011383232660591602, 0.0005125905154272914, 0.00596039742231369, -0.00953808892518282, -0.01347536500543356, -0.021342653781175613, -0.006857544183731079, 0.0423947349190712, 0.011165302246809006, 0.0008326758397743106, -0.013526215218007565, -0.008680895902216434, -0.016722528263926506, -0.026892615482211113, -0.010082914493978024, -0.006574234459549189, 0.007852760143578053, -0.012349391356110573, -0.010373488068580627, -0.00979234091937542, 0.026500340551137924, 0.032253704965114594, -0.011819093488156796, 0.04896170273423195, -0.0023772576823830605, 0.0022010973189026117, 0.037513092160224915, -0.018712960183620453, 0.005978558212518692, -0.03443300724029541, 0.0008308597607538104, 0.009167606942355633, 0.01596703566610813, -0.009944891557097435, -0.004754515364766121, 0.007184439804404974, 0.0032362667843699455, -0.002213809872046113, -0.02757546305656433, -0.012632700614631176, 0.02555597573518753, 0.01999148540198803, 0.03202124312520027, -0.033183541148900986, 0.007489542476832867, 0.015574761666357517, 0.006145637948065996, 0.02182210050523281, 0.02716865949332714, 0.046608053147792816, 0.02432103641331196, -0.00502692861482501, 0.0156474057585001, 0.027807923033833504, 0.008855239488184452, -0.020325643941760063, 0.026805443689227104, 0.010344430804252625, 0.008608251810073853, 0.022548535838723183, -0.037309691309928894, -0.013242905959486961, -0.05532527342438698, 0.028708701953291893, -0.008964205160737038, 0.01307582575827837, -0.007889081723988056, 0.005157686769962311, -0.011383232660591602, -0.010896521620452404, 0.005648030433803797, 0.007177175488322973, 0.006171063520014286, 0.02606447972357273, 0.022098146378993988, -0.009291100315749645, 0.02888304553925991, -0.013337342068552971, 0.00024199357721954584, 0.012465620413422585, 0.004271436482667923, -0.019976956769824028, -0.023289497941732407, 0.001007928280159831, -0.02937702275812626, 0.007947196252644062, -0.021284539252519608, 0.02664562687277794, 0.02253400720655918, 0.009022319689393044, -0.038617271929979324, 0.018451442942023277, 0.010366223752498627, 0.02503294125199318, 0.04201698675751686, -0.01519701536744833, 0.004783573094755411, 0.008956940844655037, 0.015923449769616127, 0.034694526344537735, 0.030335916206240654, -0.018553143367171288, 0.03199218586087227, -0.008346735499799252, 0.01868390291929245, 0.012647229246795177, 0.0027495555114001036, -0.02353648655116558, 0.01788482442498207, -0.00489617045968771, -0.021284539252519608, 0.009930362924933434, 0.0026151651982218027, 0.009523559361696243, -0.011710128746926785, 0.031643498688936234, -0.0030019916594028473, 0.012087874114513397, -0.006665038876235485, 0.02049998939037323, 0.0156619343906641, 0.027241304516792297, -0.04835149645805359, 0.003633989952504635, 0.019323164597153664, -0.02334761433303356, -0.0017534319777041674, -0.0020194887183606625, 0.012044288218021393, -0.011470405384898186, 0.0002935250522568822, -0.011136244982481003, -0.01978808268904686, 0.0008948768372647464, 0.022984396666288376, -0.0434408001601696, -0.008789860643446445, 0.002851256402209401, -0.04088374972343445, -0.01495002768933773, -0.0118626793846488, -0.03850104287266731, 0.0014782947255298495, -0.006167431361973286, 0.04826432466506958, 0.0063417754136025906, -0.000900779094081372, 0.025890134274959564, -0.017652364447712898, -0.0032580599654465914, 0.01635931059718132, -0.02199644409120083, -0.056603796780109406, -0.0017107538878917694, -0.02160416916012764, 0.028955690562725067, 0.007453220896422863, -0.020863207057118416, -0.017013102769851685, -0.01827709935605526, -0.0032162899151444435, 0.014434258453547955, 0.00793266762048006, 0.0059930868446826935, 0.009690639562904835, 0.00540104229003191, 0.03260239213705063, -0.015066256746649742, 0.026093536987900734, -0.0008031644392758608, 0.046114079654216766, -0.01605420745909214, 0.022185318171977997, -0.01125247497111559, 0.025933722034096718, -0.010562361218035221, -0.012407505884766579, 0.020136771723628044, 0.0009516295394860208, 0.01737632043659687, -0.005088675767183304, -0.001504627987742424, 0.004267804324626923, -0.0040353452786803246, 0.008230505511164665, -0.01397660467773676, -0.013460836373269558, 0.023594601079821587, 0.012756194919347763, 0.03080083429813385, -0.015138900838792324, 0.03100423514842987, 0.00032984677818603814, 0.01836427114903927, -0.03254427760839462, -0.005001503508538008, 0.012334862723946571, 0.02089226432144642, 0.02525087259709835, -0.03617645055055618, -0.015560233034193516, 0.006635981611907482, -0.010896521620452404, 0.0075839790515601635, -0.013090354390442371, -0.0013439042959362268, 0.013003182597458363, 0.04445780813694, -0.010395281948149204, -0.003926380071789026, 0.0393727645277977, -0.021081136539578438, 0.015066256746649742, -0.013933018781244755, 0.011281532235443592, 0.025802962481975555, -0.011150773614645004, 0.036408912390470505, -0.0019268682226538658, 0.020253000780940056, 0.014877383597195148, 0.049223218113183975, 0.023144211620092392, 0.03324165567755699, 0.02535257302224636, -0.026979787275195122, -0.004155206959694624, -0.012102403677999973, -0.010438867844641209, -0.02808396890759468, 0.006265500094741583, -0.027023373171687126, 0.005252123344689608, 0.04352797195315361, 0.025003883987665176, 0.028824931010603905, -0.021473411470651627, 0.06956339627504349, -0.022839108482003212, -0.007968989200890064, 0.004282332956790924, 0.01625761017203331, 0.011310589499771595, 0.010170087218284607, 0.014870119281113148, 0.0030128881335258484, -0.019439393654465675, -0.005470053758472204, -0.006269132252782583, -0.008128805086016655, -0.004834423307329416, 0.029929112643003464, -0.015545704402029514, 0.02472783997654915, 0.03452017903327942, -0.01495002768933773, -3.3200340112671256e-05, -0.022170789539813995, -0.01298138964921236, -0.03048120252788067, 0.03576964884996414, 0.006432579830288887, -0.020064128562808037, -0.026224294677376747, 0.030829891562461853, -0.0514896959066391, -0.017812181264162064, 0.026006365194916725, 0.009167606942355633, 0.03341599926352501, 0.03190501406788826, -0.013867639936506748, -0.002805854193866253, 0.008230505511164665, 0.02129906788468361, 0.012545528821647167, 0.016620827838778496, 0.02494576945900917, 0.02747376263141632, -0.012850631028413773, -0.0009706984856165946, -0.010998222045600414, -0.004460309632122517, -0.016126852482557297, 0.006606924347579479, -0.00751859974116087, 0.028723230585455894, -0.010119236074388027, -0.002691440749913454, -0.044486865401268005, 0.022345133125782013, -0.009421858936548233, -0.004235114902257919, -0.010271787643432617, 0.0039881267584860325, 0.0027604522183537483, -0.021153779700398445, 0.0024662460200488567, 0.0004567458527162671, -0.0019795347470790148, 0.06991208344697952, 0.05526715889573097, -0.02596277929842472, -0.006516119930893183, -0.0018360639223828912, -0.017303675413131714, 0.0039590694941580296, 0.010584154166281223, -0.00042133216629736125, 0.008557401597499847, 0.026689212769269943, -0.018611257895827293, 0.04059317335486412, -0.025178229436278343, 0.00018853251822292805, -0.017913881689310074, -0.030771777033805847, -0.020979436114430428, 0.01176097895950079, -0.006102052051573992, -0.011695600114762783, 0.000742779579013586, -0.01868390291929245, 8.609386713942513e-05, 0.017492549493908882, -0.0038864261005073786, 0.008041633293032646, -0.007475013844668865, 0.0027840612456202507, -0.01637383922934532, -0.0005039641400799155, 0.005361088551580906, 0.0018079145811498165, 0.004304125905036926, 0.017042160034179688, -0.006628717295825481, -0.011535784229636192, 0.004532952792942524, 0.02382706105709076, -0.025991836562752724, 0.010213673114776611, 0.03359034284949303, 0.014107363298535347, 0.007416898850351572, -0.008361264131963253, -0.004133414011448622, 0.0031436465214937925, 0.004082563333213329, 0.017637835815548897, -0.015414945781230927, 0.009559881873428822, 0.014528695493936539, -0.03030685894191265, -0.05826006829738617, -0.03855915740132332, 0.06584404408931732, -0.04855490103363991, 0.0166498851031065, -0.0022592120803892612, 0.02342025749385357, 0.002818566979840398, 0.004947020672261715, 0.0017143860459327698, -0.005230330396443605, -0.019018061459064484, 0.0035250247456133366, 0.016606299206614494, -0.005593547597527504, -0.007605771999806166, -0.001631754101254046, -0.007409634534269571, -0.0007336991257034242, 0.023798003792762756, 0.0053066061809659, -0.0040644025430083275, 0.005895018111914396, 0.012966861017048359, -0.017114803194999695, -0.033299770206213, 0.02382706105709076, 0.00011407295824028552, -0.02080509252846241, -0.0016299380222335458, -0.037019114941358566, 0.0001853543653851375, 0.020572632551193237, -0.006799429655075073, -0.02503294125199318, 0.0064471084624528885, -0.03452017903327942, 0.004471206106245518, -0.025570504367351532, -0.003031049156561494, 0.014506902545690536, -0.0026405903045088053, -0.010990957729518414, -0.014819269068539143, 0.026921672746539116, 0.022868165746331215, -0.020877735689282417, -0.024480851367115974, 0.002758636139333248, 0.020136771723628044, -0.010090178810060024, -0.005673455540090799, -0.00973422545939684, 0.0020721552427858114, 0.0009371008491143584, -0.04163924232125282, -0.019032590091228485, 0.01298138964921236, -0.018930889666080475, -0.011811829172074795, -0.009407330304384232, 0.009283835999667645, 0.003784725209698081, 0.009632525034248829, -0.005756995640695095, 0.002300982130691409, -0.02674732729792595, -0.013933018781244755, -0.00898599810898304, 0.012356655672192574, -0.00436587305739522, -0.006697728764265776, -0.010191880166530609, -0.007159014698117971, -0.028330955654382706, -0.017085745930671692, -0.046608053147792816, -0.006036672741174698, 0.018916361033916473, -0.03440394997596741, -0.01596703566610813, 0.017419906333088875, -0.010322637856006622, -0.01348262932151556, -0.0006329062744043767, 0.010714912787079811, -0.031265754252672195, -0.008818917907774448, 0.008397585712373257, -0.018611257895827293, -0.011630220338702202, 0.015138900838792324, -0.0006497051217593253, 0.005920443218201399, 0.013046768493950367, -0.014920970425009727, 0.001759788254275918, -0.02575937658548355, 0.004122517537325621, 0.004957917146384716, -0.03713534399867058, 0.013780467212200165, 0.02445179410278797, 0.030045341700315475, 0.006813958287239075, -0.01877107471227646, -0.03173067048192024, 0.021793043240904808, -0.03213747590780258, -0.030917063355445862, -0.004202425014227629, -0.007605771999806166, 0.004845319781452417, 0.016795171424746513, 0.007663886994123459, -0.01519701536744833, 0.019352221861481667, 0.018233513459563255, 0.01509531494230032, -0.018553143367171288, -0.0034796225372701883, -0.0016435586148872972, -0.004779940936714411, 0.018117282539606094, -0.008615516126155853, -0.011078130453824997, 0.012705343775451183, 0.00711542833596468, 0.0011595714604482055, -0.023885175585746765, -0.013911225832998753, -0.02241777628660202, 0.011412289924919605, -0.016940459609031677, 0.006043937057256699, -0.057504575699567795, -0.018625786527991295, -0.015211543999612331, -0.0010905602248385549, 0.010322637856006622, -0.01413642056286335, 0.010678591206669807, -0.0003520938626024872, 0.00739510590210557, -0.012058816850185394, 0.009036848321557045, 0.0006724061677232385, -0.000985227175988257, 0.008419378660619259, -0.009479973465204239, 0.006577866617590189, -0.012109667994081974, 0.0014338006731122732, -0.004834423307329416, -0.0029929112643003464, -0.02010771445930004, 0.022650236263871193, 0.048525843769311905, -0.01095463614910841, -0.009450916200876236, 0.013569801114499569, 0.001027905149385333, -0.02342025749385357, -0.012211368419229984, -0.02897021919488907, 0.004434884060174227, 0.0058877537958323956, -0.018044639378786087, -0.024495379999279976, -0.0007164463168010116, -0.0008067965973168612, 0.0009094055276364088, -0.017608778551220894, 0.01005385722965002, 0.027197718620300293, 0.0027204982470721006, -0.017042160034179688, -0.017725007608532906, -0.0007473197765648365, 0.01707121729850769, -0.013366399332880974, 0.0059930868446826935, -0.026340525597333908, -0.0021883847657591105, 0.011666541919112206, 0.01846597157418728, 0.012545528821647167, 0.00014335736341308802, -0.016126852482557297, -0.008956940844655037, -0.01388216856867075, 0.028519829735159874, -0.03414243459701538, 0.01014829333871603, -0.013213848695158958, 0.05785326659679413, 0.004038977436721325, 0.019933370873332024, -0.014608602970838547, -0.024582551792263985, 0.027226775884628296, 0.008709953166544437, 0.028432656079530716, 0.03071366250514984, -0.002735026879236102, 0.022795522585511208, 0.017710478976368904, -0.03068460524082184, 0.004264172166585922, 0.0118699437007308, 0.03071366250514984, 0.0023663612082600594, 0.024408208206295967, 0.0043622408993542194, 0.022141732275485992, -0.03893690183758736, 0.013794995844364166, -0.005132261663675308, -0.008811653591692448, 0.0046709757298231125, -0.0009284744155593216, -0.014877383597195148, -0.013024975545704365, 0.023696301504969597, 0.006657774560153484, 0.0017043976113200188, 0.024262921884655952, -0.004976077936589718, 0.011092659085988998, -0.020674332976341248, 0.05079231783747673, -0.0237253587692976, -0.0058478000573813915, -0.028839459642767906, -0.01428170781582594, -0.00486711272969842, 0.004562010522931814, 0.025730319321155548, -0.012538264505565166, -0.02190927229821682, 0.006592395715415478, -0.020267529413104057, 0.03010345622897148, -0.014463316649198532, -0.010526039637625217, -0.008855239488184452, -0.0034287720918655396, -0.024960298091173172, 0.025425216183066368, 0.004830791149288416, -0.0036594150587916374, -0.022998925298452377, -0.011681071482598782, 0.007860024459660053, 0.010032064281404018, -0.00979960523545742, 0.051460638642311096, 0.018262570723891258, -0.020776035264134407, 0.007257083430886269, 0.0039191157557070255, 0.00048262509517371655, 0.004957917146384716, -0.0035431855358183384, 0.02301345393061638, -0.029958169907331467, -0.028839459642767906, 0.004754515364766121, -0.016737056896090508, -0.0009489054209552705, 0.006799429655075073, 0.017289146780967712, 0.0028530724812299013, 0.005506375338882208, -0.011688335798680782, 0.03007439896464348, 0.014855590648949146, -0.008353999815881252, -0.010475189425051212, -0.0116156917065382, 0.010540568269789219, -0.0166789423674345, -0.01656271331012249, -0.013620652258396149, 0.011027280241250992, 0.0019940633792430162, -0.030829891562461853, 0.021749457344412804, 0.052070844918489456, -0.01946845091879368, -0.04120337963104248, -0.04268530756235123, 0.014477845281362534, 0.004351344425231218, -0.0070936353877186775, 0.009116756729781628, 0.013780467212200165, 0.00751859974116087, 0.014746625907719135, -0.00290210684761405, 0.004423987586051226, 0.005796949379146099, 0.0014392489101737738, 0.01096190046519041, -0.0048925383016467094, 0.015836277976632118, 0.01938127912580967, -0.015182486735284328, 0.016286667436361313, -0.008157862350344658, -0.026093536987900734, -0.0014719384489580989, -0.009661582298576832, 0.00807795487344265, 0.013816789723932743, -0.02462613955140114, 0.0005557226249948144, 0.001570007181726396, -0.019976956769824028, 0.004685504361987114, 0.014252650551497936, 0.0036376221105456352, 0.013417250476777554, -0.0024117634166032076, -0.003381553804501891, 0.019657324999570847, 0.03553718701004982, 0.008680895902216434, 0.005938604008406401, 0.0007001014892011881, -0.008528344333171844, 0.0363217368721962, 0.012342127040028572, -0.019003532826900482, -0.011041808873414993, -0.0116084273904562, -0.02606447972357273, 0.019134292379021645, 0.0069374521262943745, 8.981117389339488e-06, -0.0012258586939424276, -0.03774555027484894, 0.023696301504969597, 0.02312968298792839, -0.0022592120803892612, -0.007122693117707968, -0.004482102580368519, 0.02250494994223118, 0.014376143924891949, 0.017027631402015686, 0.014782947488129139, -0.0017507077427580953, -0.00035254788235761225, 0.002468062099069357, -0.018407857045531273, 0.03292202204465866, 0.008455700241029263, 0.0176814217120409, -0.012458356097340584, 0.012342127040028572, 0.01778312399983406, 0.019613739103078842, -0.04858395829796791, -0.016533656045794487, 0.006534280721098185, 0.025396158918738365, 0.022664764896035194, -0.008150598034262657, -0.002745923353359103, 0.003485070774331689, 0.012908745557069778, 0.0211973674595356, 0.005364720709621906, 0.016925930976867676, 0.005179479718208313, -0.006054833997040987, -0.024364622309803963, 0.00914581399410963, 0.00883344653993845, 0.004075299017131329, 0.0373968631029129, -0.0464627668261528, -0.009981214068830013, 0.013010446913540363, 0.028127554804086685, 0.01120162382721901, 0.004300493746995926, -0.010003007017076015, -0.01429623644798994, -0.014615867286920547, -0.01880013197660446, 0.02394329011440277, 0.011630220338702202, 0.009160342626273632, -0.018756546080112457, -0.031265754252672195, -0.004227850120514631, 0.015908921137452126, -0.023885175585746765, 0.0065233842469751835, -0.0064834305085241795, -0.0011786404065787792, 0.0015954324044287205, 0.024960298091173172, -0.007772852201014757, -0.00014471942267846316, 0.001768868649378419, -0.008855239488184452, -0.007692944258451462, 0.011652013286948204, 0.0038537364453077316, -0.022577593103051186, 0.009872248396277428, 0.02403046190738678, -0.009269307367503643, -0.009756019338965416, -0.00873901043087244, -0.010090178810060024, 0.012349391356110573, 0.009763283655047417, 0.010075650177896023, -0.02796773798763752, -0.009429123252630234, 0.023492900654673576, -0.007460485212504864, -0.013765938580036163, 0.01585080660879612, 0.02051451802253723, -0.015531175769865513, 0.011535784229636192, -0.003614013083279133, 0.003254427807405591, 0.024408208206295967, 0.024103105068206787, -0.004696400836110115, 0.006501591298729181, 0.005139525979757309, -0.013540743850171566, -0.01685328595340252, -0.008971469476819038, -0.0003241715021431446, 0.0015972484834492207, -0.0039881267584860325, 0.001941396971233189, -0.006243706680834293, 0.006468901410698891, -0.02090679295361042, -0.009879512712359428, -0.03112046606838703, -0.0031291176564991474, 0.02908644825220108, 0.025701262056827545, 0.0025824755430221558, -0.017855767160654068, -0.022577593103051186, 0.016925930976867676, -0.021531525999307632, 0.01593797840178013, -0.007460485212504864, -0.06136921048164368, -0.015836277976632118, -0.009320158511400223, 0.002553418278694153, -0.004046241752803326, -0.0022010973189026117, -0.018044639378786087, 0.03809423744678497, 0.009211192838847637, 0.021081136539578438, -0.011332382448017597, 0.013824054040014744, -0.0023554647341370583, -0.0073914737440645695, -0.021023022010922432, -0.003156359074637294, 0.02353648655116558, 0.008056161925196648, 0.014209063723683357, -0.0016671677585691214, -0.0005239410675130785, -0.0227374080568552, 0.010366223752498627, 0.010271787643432617, -0.0019976955372840166, 0.01938127912580967, 0.01503719948232174, -0.00783096719533205, 0.0113614397123456, -0.0008739918121136725, -0.00979234091937542, 0.04614313691854477, 0.012879688292741776, -0.0036830243188887835, -0.0217058714479208, -0.01837879978120327, 0.0017861215164884925, 0.033997148275375366, -6.316577491816133e-05, 0.010126500390470028, -0.02079056389629841, -0.013715088367462158, -0.01398386899381876, -0.02452443726360798, -0.0007550381124019623, -0.004351344425231218, -0.01216778252273798, -0.005589915439486504, -0.031062351539731026, 0.005589915439486504, -0.0171729177236557, 0.014891913160681725, -0.0022755570244044065, 0.015821749344468117, 0.0057243057526648045, 0.011005486361682415, -0.017841238528490067, -0.0032998300157487392, -0.016911400482058525, -0.017739536240696907, -0.012305804528295994, -0.003352496540173888, -0.0012095138663426042, 0.0011123532894998789, -3.54704461642541e-05, -0.007282508537173271, -0.021429825574159622, -0.030161570757627487, -0.017201974987983704, 0.013867639936506748, 0.006370833143591881, -0.008230505511164665, -0.023100625723600388, 0.006566970143467188, -0.013518950901925564, -0.02443726547062397, -0.012734401039779186, 0.02786603756248951, -0.006566970143467188, 0.038617271929979324, -0.02462613955140114, 0.014906441792845726, -0.0010042961221188307, -0.004020816646516323, -0.008869768120348454, -0.014964556321501732, -0.00011356218601576984, -0.0003784271248150617, -0.0030909799970686436, -0.001038801739923656, -0.02282457984983921, 0.0007895437884144485, -0.016707999631762505, 0.040854692459106445, -0.009915834292769432, 0.014107363298535347, -0.009857719764113426, -0.006621452979743481, -0.00979960523545742, -0.021880215033888817, -0.019628267735242844, 0.028824931010603905, -0.007438691798597574, -0.011492198333144188, 0.0069374521262943745, -0.039227478206157684, -0.0023572808131575584, 0.03213747590780258, -0.01888730376958847, 0.01596703566610813, 0.04890358820557594, -0.036205507814884186, -0.0005184928304515779, -0.00699556665495038, 0.003806518157944083, -0.028432656079530716, -0.03446206450462341, -0.0171583890914917, -0.006541545037180185, -0.01605420745909214, -0.012211368419229984, 0.004667343571782112, 0.0014801108045503497, -0.029565894976258278, -0.005266651976853609, 0.015836277976632118, 0.007184439804404974, -0.05419203266501427, -0.014456052333116531, 0.005157686769962311, 0.004275068640708923, 0.002947509055957198, -0.013664238154888153, -0.003984494600445032, -0.016490070149302483, 0.029609480872750282, -0.002509832149371505, 0.005644398275762796, 0.01070764847099781, 0.004917963407933712, 0.006116580683737993, 0.011194359511137009, 0.006603292189538479, -0.0015273290919139981, -0.0018415121594443917, -0.03542095795273781, 0.02737206220626831, -0.0011940771946683526, 0.015080785378813744, -0.0049797105602920055, 0.00018433282093610615, -0.026122594252228737, -0.015255129896104336, 0.009349215775728226, 0.004384033847600222, -0.01464492455124855, -0.00847749412059784, -0.00502329645678401, 0.002437188755720854, 0.007235290482640266, 0.01479021180421114, 0.0009706984856165946, -0.031556326895952225, -0.012952331453561783, 0.012865159660577774, 0.026122594252228737, 0.0010896521853283048, 0.0394018217921257, -0.008557401597499847, 0.008855239488184452, 0.020223943516612053, -0.005415571387857199, 0.006603292189538479, 0.003617645241320133, 0.0024317402858287096, 0.01634478196501732, -0.006850279867649078, -0.011775507591664791, -0.01705668866634369, 0.013874904252588749, 0.01707121729850769, -0.030742719769477844, -0.0029529572930186987, 0.009988478384912014, 0.0062909252010285854, 0.021938329562544823, 0.00939280167222023, -0.004009919706732035, 0.0005548145272769034, 0.015153429470956326, -0.008390321396291256, -0.007707472890615463, -0.0004152028704993427, 0.0015382255660369992, -0.0012658125488087535, 0.01267628651112318, -0.015560233034193516, -0.008695424534380436, 0.0031127729453146458, 0.0034723582211881876, 0.01917787827551365, 0.002787693403661251, -0.0022719246335327625, -0.009843191131949425, -0.0212264247238636, -0.006777636241167784, 0.01746349222958088, 0.009509030729532242, 0.01747802086174488, 0.011455876752734184, 0.01827709935605526, 0.007264347746968269, 0.016998574137687683, 0.010881992988288403, -0.014405201189219952, -0.00782370287925005, -0.004075299017131329, -0.007983517833054066, -0.02493124082684517, 0.008760803379118443, 0.021458882838487625, 0.04213321581482887, 0.0063308789394795895, 0.013453572057187557, 0.004082563333213329, 0.0026950729079544544, -0.02978382632136345, -0.015313245356082916, 0.011586634442210197, 0.006072994787245989, -0.004423987586051226, 0.008237769827246666, -0.03585682064294815, 0.006635981611907482, 0.04062223061919212, -0.01120888814330101, 0.005223066080361605, -0.008680895902216434, 0.022897223010659218, -0.02756093442440033, 0.021560583263635635, 0.0009489054209552705, 0.009479973465204239, -0.0039045868907123804, 0.015690991654992104, 0.004431251902133226, 0.01534230262041092, -0.00620738510042429, -0.01929410733282566, -0.017448963597416878, 0.03112046606838703, 0.000996123650111258, -0.012349391356110573, 0.013162997551262379, -0.011811829172074795, -0.007707472890615463, 0.013722352683544159, 0.008194183930754662, 0.009785076603293419, 0.00028966585523448884, 0.003664863295853138, 0.000794992025475949, 0.02251947857439518, 0.006941084284335375, 0.026485811918973923, -0.00832494255155325, -0.031033292412757874, -0.0005225790082477033, 0.0016444666543975472, 0.0004921595682390034, -0.01429623644798994, -0.02192380093038082, 0.010032064281404018, -0.0044494131579995155, -0.0043259188532829285, -0.008680895902216434, -0.006309085991233587, -0.005437364336103201, 0.001972270430997014, 0.0035885877441614866, -0.003276220755651593, 0.005168583244085312, 0.01070038415491581, -0.015269658528268337, -0.0025588665157556534, -0.005466421600431204, -0.0021429825574159622, -0.011971645057201385, -0.004779940936714411, 0.017942938953638077, 0.0036921047139912844, -0.0054264678619802, 0.03576964884996414, 0.017289146780967712, -0.03425866365432739, 0.027110544964671135, 0.012538264505565166, -0.009574410505592823, 0.02564314752817154, 0.0005539064877666533, 0.012618171982467175, 0.00780190946534276, 0.007794645149260759, 7.44028075132519e-05, -0.01509531494230032, -0.0003704817208927125, -0.00540104229003191, 0.026689212769269943, -0.005259387660771608, 0.0009652501903474331, -0.029304377734661102, 0.005851432215422392, -0.01829162798821926, -0.009203928522765636, 0.01938127912580967, 6.027138442732394e-05, -0.011194359511137009, -0.021560583263635635, -0.012872423976659775, 0.003690288634970784, 0.005005135666579008, 0.008397585712373257, 0.0010151925962418318, -0.01070764847099781, -0.0011423187097534537, 0.022069089114665985, -0.004700032994151115, -0.0006646878318861127, 0.007151750382035971, -0.023260440677404404, -0.01126700360327959, -0.014935499057173729, -0.008092483505606651, -0.005560858175158501, 0.006882969290018082, -0.017652364447712898, -0.005564490333199501, 0.023376671597361565, 0.007656622678041458, -0.014877383597195148, -0.01948298141360283, -0.005143158137798309, 0.003443300724029541, -0.004206057172268629, 0.0023300396278500557, 0.0056770876981318, 0.013540743850171566, -0.020151300355792046, -0.006120212841778994, -0.00955261755734682, 0.0003527748922351748, -0.013867639936506748, -0.0043259188532829285, 0.008157862350344658, 0.013569801114499569, 0.005909546744078398, -0.004689136520028114, -0.013744145631790161, -0.015545704402029514, 0.005909546744078398, -0.013911225832998753, -0.004660079255700111, 0.024393679574131966, 0.01363518089056015, 0.02331855520606041, 0.01495002768933773, 0.03248616307973862, -0.018654845654964447, -0.019308635964989662, -0.013293756172060966, 0.0007046417449600995, 0.02353648655116558, -0.018596729263663292, 0.0113687040284276, -0.020572632551193237, 0.030423087999224663, -0.0025824755430221558, -0.031352926045656204, 0.03207935765385628, 0.008593723177909851, -0.00924751441925764, -0.01120162382721901, 0.004053506068885326, -0.031469155102968216, -0.018596729263663292, 0.003795621683821082, 0.004427619744092226, 0.020732447504997253, 0.01469577569514513, 0.016940459609031677, -0.040738463401794434, -0.001999511616304517, 0.01727461814880371, 0.0047508832067251205, -0.028912104666233063, 0.0037484033964574337, -0.010279051959514618, -0.0020085922442376614, 0.010010271333158016, -0.031846899539232254, 0.01308309007436037, 0.012066081166267395, -0.009632525034248829, 0.009821398183703423, -0.010889257304370403, 0.004830791149288416, -0.01439067255705595, 0.017928410321474075, -0.015022670850157738, 0.004576539155095816, 0.012429298833012581, -0.0038936904165893793, 0.0413777232170105, -0.0171729177236557, -0.0051249973475933075, -0.020369231700897217, -0.005564490333199501, -0.0064834305085241795, 0.011790036223828793, -0.023783475160598755, -0.007765587884932756, -0.0008294977014884353, -0.004503895528614521, 0.0022410512901842594, 0.010656798258423805, -0.008855239488184452, -0.003361576935276389, -0.005510007496923208, 0.006327246781438589, -0.017739536240696907, -0.017027631402015686, -0.06584404408931732, -0.021691342815756798, 0.010722177103161812, -0.008499287068843842, -0.013954811729490757, -0.006734050344675779, 0.013802260160446167, -0.004801733884960413, 0.014775683172047138, -0.007333359215408564, 0.006236442364752293, -0.01080208458006382, 0.005905914586037397, -0.01282157376408577, -0.007482278160750866, 0.006592395715415478, 0.020776035264134407, -0.0011196176055818796, 0.027619050815701485, -0.006850279867649078, 0.025585032999515533, -0.022664764896035194, -0.01306856144219637, 0.022272489964962006, 0.010889257304370403, 0.013141204603016376, 0.029870998114347458, -0.0014347087126225233, 0.021967386826872826, -0.014056513085961342, -0.0007886357489041984, 0.008215976879000664, -0.010017535649240017, -0.01637383922934532, 0.01877107471227646, 0.01529871579259634, 0.014775683172047138, -0.02031111530959606, 0.007188071962445974, -2.0799870981136337e-05, 0.006723153870552778, 0.008266828022897243, -0.003944540861994028, 0.01827709935605526, 0.004264172166585922, 0.014310765080153942, 0.009814133867621422, -0.00396270165219903, -0.010874728672206402, -0.010126500390470028, 0.00807795487344265, 0.009581674821674824, -0.008935147896409035, -0.01005385722965002, 0.007282508537173271, 0.0037484033964574337, -0.002053994219750166, 0.026529397815465927, -0.01586533524096012, 0.00793266762048006, 0.022868165746331215, 0.01251647062599659, 0.013409986160695553, 0.02424839325249195, 0.0037138976622372866, -0.0002662837505340576, -0.012509206309914589, 0.003710265504196286, -0.003915483597666025, 0.022054560482501984, 0.012625436298549175, -0.003581323428079486, 0.02109566517174244, -0.03144009783864021, 0.013664238154888153, -0.007714737206697464, 0.003922747913748026, 0.0004174729692749679, -0.008949676528573036, 0.027226775884628296, 0.023986876010894775, 0.005226698238402605, 0.009196664206683636, -0.00527391629293561, -0.014710304327309132, 0.020049599930644035, -0.00045947000035084784, 0.015778163447976112, 0.029740238562226295, 0.006657774560153484, -0.007195336278527975, -0.0012267667334526777, -0.007758323103189468, -0.02535257302224636, 0.004445780999958515, -0.005495478864759207, -0.002858520718291402, -0.003930012229830027, -0.010271787643432617, 0.0006192856235429645, 0.009683375246822834, -0.0008898826199583709, 0.010773027315735817, -0.011463141068816185, -0.01978808268904686, -0.017695950344204903, -0.002386338310316205, 0.010024799965322018, -0.015705520287156105, 0.008099747821688652, -0.013337342068552971, 0.012407505884766579, -0.019671853631734848, 0.022650236263871193, -0.017042160034179688, 0.027517348527908325, 0.007576714735478163, 0.015429474413394928, -0.002913003321737051, -0.034084320068359375, 0.018742017447948456, -0.025192758068442345, 3.569745967979543e-05, -0.011158037930727005, 0.01297412533313036, 0.02158964052796364, -0.005310238339006901, -0.00011180285218870267, -0.016214024275541306, 0.008092483505606651, -0.034781698137521744, 0.0058768573217093945, 0.0012994102435186505, -0.01241477020084858, -0.011165302246809006, 0.023492900654673576, 0.010286316275596619, -0.017841238528490067, -0.005756995640695095, 0.009189399890601635, 0.012138725258409977, -0.0005330215208232403, 0.010678591206669807, 0.002458981703966856, 0.0018959947628900409, -0.0028458081651479006, -0.01948298141360283, 0.014565017074346542, -0.024175748229026794, 0.006675935350358486, -0.02111019380390644, -0.006853912025690079, -0.01505172811448574, -0.0030455777887254953, -0.0021030285861343145, -0.011099923402071, -0.0014002029784023762, 0.007238922640681267, -0.023289497941732407, -0.006890233606100082, -0.008346735499799252, -0.025105586275458336, -0.007910874672234058, -0.01070038415491581, -0.013439043425023556, 0.00989404134452343, 0.0022337869741022587, -0.0034614617470651865, -0.021124722436070442, -0.007874553091824055, 0.01858220063149929, -0.013148468919098377, -0.003911851439625025, 0.005626237485557795, 0.01399113330990076, 0.028737759217619896, 0.024887654930353165, 0.007151750382035971, 0.009160342626273632, -0.004830791149288416, -0.0036575989797711372, -0.014252650551497936, -0.009930362924933434, -0.023478372022509575, 0.011281532235443592, -0.01176097895950079, -0.015879863873124123, 0.02424839325249195, -0.002477142494171858, -0.012284011580049992, 0.019657324999570847, 0.013903961516916752, 0.00031441004830412567, 0.011971645057201385, 0.0027150500100106, -0.01939580775797367, 0.0003348410245962441, 0.01544400304555893, 0.0030655546579509974, -0.0038210467901080847, 0.0010869280667975545, 0.010402546264231205, -0.012029759585857391, -0.009509030729532242, -0.012305804528295994, -0.019235992804169655, 0.020267529413104057, -0.012952331453561783, 0.008448435924947262, -0.0007990782614797354, 0.00042224020580761135, -0.009937627241015434, -0.00914581399410963, -0.01463766023516655, 0.013489893637597561, 0.011797300539910793, 0.0113541753962636, -0.002299166051670909, -0.0001425628288416192, 0.01866937428712845, -0.005480950232595205, -0.032980140298604965, 0.01242203451693058, 0.019323164597153664, -0.004514792002737522, -0.019846197217702866, 0.01948298141360283, -0.0108602000400424, 0.024611609056591988, 0.020441874861717224, -0.016475539654493332, 0.00031849625520408154, 0.006065730471163988, -0.003762932028621435, 0.030452145263552666, 0.00230824644677341, 0.01605420745909214, 0.011949852108955383, -0.009051376953721046, -0.04977530986070633, -0.01625761017203331, 0.03141104057431221, 0.002745923353359103, -0.02201097272336483, -0.01988978311419487, 0.005727938376367092, -0.0038101503159850836, 0.019555624574422836, 0.005778788588941097, -0.014877383597195148, 0.008564665913581848, -0.0021974651608616114, -0.004950652830302715, 0.0108529357239604, -0.0009616180323064327, -0.009864984080195427, 0.00817239098250866, 0.01606873795390129, 0.009029584005475044, -0.0007436876185238361, -0.00277861300855875, -0.014426994137465954, -0.0010469740955159068, 0.006142005790024996, -0.0027640843763947487, -0.010896521620452404, 0.014267179183661938, 0.0006265499978326261, 0.011499462649226189, -0.008310413919389248, -0.01593797840178013, 0.0052412268705666065, 0.014891913160681725, 0.015385888516902924, 0.017725007608532906, -0.0034087952226400375, -0.005644398275762796, 0.008005310781300068, 0.029711181297898293, 0.013918490149080753, -0.007260715588927269, -0.01705668866634369, -0.009705168195068836, -0.024553494527935982, 0.0002215626009274274, -0.009654317982494831, -0.00608389126136899, 0.016199495643377304, 0.016417425125837326, 0.0030346813146024942, -0.007333359215408564, -0.015414945781230927, 0.013816789723932743, 0.00042224020580761135, -0.0014256282011047006, -0.011557577177882195, -0.012291275896131992, 0.03080083429813385, 0.02039828896522522, 0.004046241752803326, 0.012284011580049992, 0.02282457984983921, 0.01596703566610813, 0.03251522034406662, 0.0018024662276729941, 0.021328125149011612, 0.004667343571782112, 0.0011105370940640569, 0.00964705366641283, -0.007685679942369461, 0.005204905290156603, -0.004304125905036926, -0.003052842104807496, -0.006788532715290785, -0.006450740620493889, -0.0032181059941649437, -0.00039817707147449255, 0.024204807355999947, 0.027633579447865486, 0.0028385438490659, -0.01654818467795849, -0.003581323428079486, -0.0012040656292811036, 0.017303675413131714, -0.004071666859090328, 0.01698404550552368, -0.0027804290875792503, -0.012189575470983982, 0.03254427760839462, -0.0118554150685668, -0.002173856133595109, -0.01231306977570057, 0.016737056896090508, 0.000198634501430206, -0.003083715680986643, -0.04009919986128807, -0.005233962554484606, 0.007039153017103672, 0.010133764706552029, 0.013409986160695553, 0.006043937057256699, 0.006748578976839781, 0.0012848814949393272, 0.009574410505592823, 6.645743269473314e-05, -0.014165477827191353, 0.002566130831837654, -0.015211543999612331, -0.01949751004576683, -0.0019668221939355135, -0.0176814217120409, -0.01848050020635128, 0.0011722841300070286, 0.021153779700398445, 0.004147942643612623, 0.0014655821723863482, 0.016998574137687683, 0.009429123252630234, -0.006792164873331785, 0.011375968344509602, 0.006621452979743481, 0.006156534887850285, 0.02068886160850525, -0.002440820913761854, -0.004017184488475323, -0.008709953166544437, 0.0008353999583050609, -0.0027114178519695997, -0.0009107675869017839, 0.010322637856006622, -0.00041474885074421763, -0.0212264247238636, -0.006650510244071484, -0.005371985025703907, -0.0005053261993452907, 5.334755405783653e-05, -0.00739873806014657, 0.007889081723988056, 0.003083715680986643, -0.007656622678041458, -0.006112948525696993, -0.023463843390345573, -0.006040304899215698, -0.015560233034193516, -0.0027622682973742485, -0.017797652631998062, -0.0027604522183537483, 0.01333007775247097, -0.01226948294788599, -0.002660567406564951, 0.0024825907312333584, 0.010911050252616405, -0.015429474413394928, 0.006951980758458376, 0.007355152163654566, -5.45677357877139e-05, 0.011375968344509602, 0.0010233649518340826, 0.003592219902202487, -0.0052702841348946095, -0.02018035762012005, 0.0034923350904136896, 0.01348262932151556, 0.01775406487286091, -0.007939931936562061, -0.024466322734951973, 0.014652188867330551, -0.011949852108955383, 0.01698404550552368, -0.004380401689559221, -0.004514792002737522, -0.01685328595340252, -0.021240953356027603, -0.002794957719743252, 0.0016390184173360467, -0.0030782674439251423, -0.013591594062745571, -0.009254778735339642, 0.01686781458556652, -0.014426994137465954, -0.005782420746982098, -0.013794995844364166, 0.015080785378813744, 0.00954535324126482, 0.014819269068539143, -0.001694409060291946, -0.012429298833012581, 0.006581498775631189, -0.0035431855358183384, -0.00792540330439806, 0.002075787400826812, -0.013606123626232147, 0.003770196344703436, 0.009015055373311043, 0.01878560334444046, 0.0036521507427096367, -0.006552441511303186, -0.00873901043087244, 0.012145989574491978, -0.007108164019882679, -0.032457105815410614, -0.00501966429874301, -0.013998397625982761, 0.007591243367642164, 0.0009725145646370947, -0.0035431855358183384, 0.0035540820099413395, -0.008048897609114647, 0.0049034347757697105, 0.007889081723988056, -0.0002649216912686825, -0.021633228287100792, -0.005059618037194014, 0.013809525407850742, 0.0012213184963911772, -0.03879161551594734, 0.03039403073489666, 0.011056337505578995, 0.0002764992241282016, -0.03565341979265213, 0.001091468264348805, 0.021328125149011612, -0.02018035762012005, 0.024989355355501175, -0.007976253516972065, -0.025192758068442345, -0.006229178048670292, -0.009283835999667645, 0.0166498851031065, -0.027183188125491142, 0.001377501874230802, -0.005760627798736095, -0.00195047736633569, -0.011136244982481003, -1.9139853975502774e-05, -0.01606873795390129, -0.0003135020087938756, -0.010177351534366608, -0.004997871350497007, -0.01805916801095009, -0.02392876148223877, -0.01362791657447815, 0.022083617746829987, -0.024989355355501175, 0.025585032999515533, 0.0023699933663010597, -0.0023264072369784117, -0.018422385677695274, -0.0050850436091423035, -0.0018814660143107176, -0.029130034148693085, 0.000720986514352262, -0.0029493251349776983, -0.015589290298521519, 0.0009516295394860208, -0.012901481240987778, 0.021357182413339615, -0.01306856144219637, -0.01887277513742447, -0.0007214405341073871, -0.0055572260171175, 0.0047399867326021194, -0.00449299905449152, -0.010693119838833809, -0.011826357804238796, -0.017347263172268867, 0.034171491861343384, -0.0069483486004173756, -0.013199320062994957, 0.02333308383822441, -0.014935499057173729, 0.009523559361696243, -0.001589984050951898, -0.0030147042125463486, -0.002291901735588908, -0.013591594062745571, -0.005640766117721796, 0.01348262932151556, 0.005284812767058611, 0.008971469476819038, 0.01307582575827837, -0.030219687148928642, 0.013838582672178745, 0.013271963223814964, -0.001154123223386705, 0.002893026452511549, 0.008956940844655037, -0.005967661738395691, 0.01202249526977539, 0.024059519171714783, 0.005092307925224304, -0.01999148540198803, -0.02250494994223118, 0.01200796663761139, 0.025497861206531525, -0.009843191131949425, -0.011928059160709381, 0.00802710372954607, -0.02343478612601757, -0.011419554241001606, -0.017739536240696907, -0.00973422545939684, 0.00010663835564628243, -0.0008553769439458847, 0.002513464307412505, 0.02482954040169716, 0.028418127447366714, 0.00633814325556159, -0.0009498134604655206, 0.0020176726393401623, 0.02180757187306881, 0.002914819400757551, -0.013664238154888153, 0.016475539654493332, 0.00714448606595397, 0.0043259188532829285, -0.012625436298549175, -0.006283660884946585, 0.01126700360327959, 0.00028966585523448884, 0.021633228287100792, -0.01560381893068552, 0.00023768037499394268, -0.0217058714479208, -0.022897223010659218, -0.015414945781230927, -0.015429474413394928, 0.001366605400107801, -0.03312542662024498, 0.027589991688728333, 0.00018104116315953434, 0.013315549120306969, -0.03603116422891617, -0.009915834292769432, -0.025977307930588722, 0.02048546075820923, 0.027488291263580322, 0.016795171424746513, 0.014877383597195148, 0.02222890406847, 0.0024953035172075033, -0.0010642269626259804, -0.017826709896326065, -0.015531175769865513, 0.025904662907123566, 0.015821749344468117, 0.015066256746649742, 0.008651837706565857, -0.00462012505158782, -0.008637309074401855, 0.0003423323796596378, 0.010090178810060024, 0.007496806792914867, -0.007743794471025467, 0.022040029987692833, 0.02140076830983162, -0.010765762999653816, 0.03080083429813385, 0.008281356655061245, -0.0031963130459189415, 0.01126700360327959, 0.00025289010955020785, -0.01897447556257248, -0.01003932859748602, 0.015981564298272133, -0.001198617392219603, 0.006973773706704378, 0.010511511005461216, 0.005978558212518692, 0.0075839790515601635, 0.015022670850157738, -0.012814309448003769, 0.021458882838487625, 0.017550664022564888, -0.00883344653993845, -0.0009570778347551823, 0.0113687040284276, -0.027633579447865486, -0.00752586405724287, 0.007489542476832867, 0.0006873888778500259, 0.004147942643612623, -0.0069374521262943745, 0.02990005537867546, -0.016112323850393295, -0.013831318356096745, -0.01544400304555893, -0.01727461814880371, 0.0004601510299835354, -0.004721825942397118, 0.004038977436721325, -0.006450740620493889, 0.011070866137742996, 0.020964907482266426, -0.01535683125257492, -0.028795873746275902, -0.020529046654701233, 0.003882793942466378, -0.02533804439008236, 0.020020542666316032, 0.001027905149385333, 0.0013947547413408756, 0.016286667436361313, 0.02645675465464592, -0.012698079459369183, 0.02007865719497204, -0.006857544183731079, 0.004700032994151115, 0.01232033409178257, -0.02947872318327427, -0.002290085656568408, -0.007453220896422863, 0.017492549493908882, 0.012204104103147984, -0.0027895094826817513, -0.006403522565960884, -0.003762932028621435, 0.008593723177909851, -0.0022301548160612583, 0.0005943144205957651, 0.00780190946534276, -0.008266828022897243, -0.011477669700980186, 0.014935499057173729, 0.0018406041199341416, 0.01627213880419731, 0.005982190370559692, 0.02260665036737919, 0.021691342815756798, 0.02616618014872074, -0.005121365189552307, 0.02849077247083187, -0.005411939229816198, -0.02978382632136345, 0.01044613216072321, -0.021487940102815628, 0.0019141556695103645, -0.01004659291356802, 0.018959946930408478, 0.01644648239016533, 0.018102753907442093, -0.010896521620452404, 0.014020190574228764, -0.01070764847099781, 0.0011405026307329535, -0.0014183638850226998, 0.01980261132121086, 0.002725946484133601, 2.1949112124275416e-05, -0.011928059160709381, -0.007489542476832867, 0.007569450419396162, -0.0031545429956167936, -0.003679392160847783, -0.0077002085745334625, 0.017797652631998062, -0.030975177884101868, 0.0021556951105594635, -0.014274443499743938, 0.00898599810898304, -0.013853111304342747, -0.0065633379854261875, 0.002822199137881398, 0.014259914867579937, -0.012850631028413773, -0.0028893942944705486, 0.005106836557388306, -0.015690991654992104, -0.022257961332798004, -0.04015731438994408, -0.01529871579259634, 0.010816614143550396, 0.012487413361668587, -0.0072461869567632675, -0.02615165151655674, 0.004307758063077927, -0.0033198068849742413, -0.011782771907746792, -0.007336991373449564, -0.010664062574505806, 0.003980862442404032, 0.007257083430886269, -0.0055390652269124985, 0.024684254080057144, -0.006933819968253374, -0.012102403677999973, -0.01529871579259634, -0.0008140609716065228, -0.006131109315901995, 0.00989404134452343, 0.03030685894191265, 0.008550137281417847, 0.010969164781272411, -0.004994239192456007, -0.014862854965031147, 0.00782370287925005, -0.0008353999583050609, -0.01217504683881998, -0.003563162637874484, 0.02462613955140114, 0.0031073247082531452, -0.0004390390240587294, 0.022272489964962006, 0.004641917999833822, -0.002364545129239559, -0.0022247065789997578, -0.009763283655047417, -0.015836277976632118, -0.011492198333144188, 0.011237945407629013, 0.0029965434223413467, -0.007787380833178759, 0.017957467585802078, -0.00908043421804905, 0.0022828213404864073, -0.006043937057256699, -0.004994239192456007, -0.015560233034193516, -0.02109566517174244, 0.011121716350317001, 0.02392876148223877, -0.009116756729781628, 0.002913003321737051, 0.013148468919098377, 0.01014829333871603, 0.014121891930699348, -0.010540568269789219, 0.007504071108996868, -0.0058078458532691, 0.00661418866366148, -0.0015418578404933214, -0.02230154722929001, 0.015996092930436134, -0.005480950232595205, -0.005226698238402605, 0.018843717873096466, -0.0028367277700453997, -0.008615516126155853, 0.005644398275762796, 0.024277450516819954, -0.02837454155087471, -0.0161704383790493, -0.01656271331012249, 0.01788482442498207, 0.014724832959473133, -0.015792692080140114, 0.019424865022301674, 0.011426818557083607, 0.018916361033916473, 0.024088576436042786, 0.004863480571657419, 0.026180708780884743, -0.0035522659309208393, 0.0010197327937930822, 0.003930012229830027, -0.007133589591830969, -0.007409634534269571, -0.0237108301371336, -0.03158538416028023, 0.03716440126299858, -0.00801983941346407, 0.001283065415918827, -0.028519829735159874, 0.0011205256450921297, 0.011528519913554192, 0.017507078126072884, 0.010162821970880032, 0.01241477020084858, 0.004416723269969225, 0.027197718620300293, -0.007765587884932756, 0.007576714735478163, -0.012196839787065983, -0.005524536594748497, -0.013308284804224968, 0.006577866617590189, 0.007050049491226673, 0.005629869643598795, 0.0034741743002086878, -0.01849502883851528, 0.0013511686120182276, 0.007195336278527975, 0.009443651884794235, -0.013998397625982761, 0.007685679942369461, -0.014804740436375141, -0.003316174726933241, 0.023202326148748398, -0.020165828987956047, -0.003908219281584024, -0.01454322412610054, -0.007743794471025467, 0.002255579922348261, 0.0116084273904562, -0.01634478196501732, -0.006944716442376375, 0.008644573390483856, -0.001133238198235631, 0.008150598034262657, -0.008513815701007843, -0.032282762229442596, -0.014303500764071941, -0.006661406718194485, 0.018335213884711266, 0.011877208016812801, 0.002745923353359103, -0.004852584097534418, 0.02615165151655674, 0.01797199621796608, 0.017855767160654068, 0.001906891237013042, 0.00792540330439806, -0.0060330405831336975, -0.010562361218035221, -0.006984670180827379, 0.004133414011448622, -0.008724481798708439, -0.0005884121637791395, 0.0034814386162906885, 0.011906266212463379, -0.024974826723337173, 0.010475189425051212, -0.0004649182374123484, 0.015327773988246918, 0.00914581399410963, -0.017434434965252876, 0.0018188110552728176, -0.01469577569514513, 0.007562186103314161, 0.021168308332562447, 0.014180006459355354, -0.01946845091879368, -0.0067849005572497845, 0.004271436482667923, -0.007300669327378273, -0.016431953758001328, -0.00015663749945815653, 0.00792540330439806, -0.014223592355847359, -0.030423087999224663, 0.0018524086335673928, -0.008949676528573036, -0.0018887304468080401, 0.0008004403207451105, -0.001304858480580151, -0.0032816689927130938, 0.012363919988274574, 0.0181753970682621, 0.010874728672206402, 0.008114276453852654, -0.01397660467773676, 0.025773905217647552, -0.0011695600114762783, -0.005379249341785908, -0.00014710304094478488, 0.001917787827551365, 0.00014210879453457892, 0.005480950232595205, -0.011884473264217377, 0.006396258249878883, -0.008201448246836662, -0.01014829333871603, -0.01519701536744833, 0.016737056896090508, 0.018930889666080475, -0.002077603479847312, 0.008143333718180656, 0.00018512735550757498, -0.011434082873165607, -0.0008989630150608718, -0.03597304970026016, -0.0034378524869680405, -0.004206057172268629, 0.023667244240641594, -0.017332732677459717, 0.014681247062981129, -0.017114803194999695, -0.004841687623411417, -0.007217129226773977, 0.006174695678055286, 0.014434258453547955, 0.005117733031511307, 0.0037266104482114315, 0.0040644025430083275, 0.018930889666080475, 0.007889081723988056, 0.011557577177882195, 0.0017761329654604197, 0.03783272206783295, 0.00661055650562048, -0.0021484307944774628, 0.007133589591830969, 0.010184615850448608, 0.008513815701007843, -0.003882793942466378, -0.012647229246795177, -0.020136771723628044, 0.005967661738395691, -0.002106660744175315, 0.011637484654784203, -0.005597179755568504, 0.006345407571643591, 0.013133940286934376, 0.0073515200056135654, 0.0002880767860915512, -0.007961724884808064, -0.006142005790024996, -0.0052412268705666065, -0.015720048919320107, 0.021081136539578438, 0.013555272482335567, -0.021981915459036827, -0.007627564948052168, 0.003633989952504635, 0.003539553377777338, 0.027488291263580322, -0.00939280167222023, 0.0025080160703510046, 0.002934796502813697, -0.0014383408706635237, -0.009298364631831646, -0.03597304970026016, 0.002095764270052314, 0.005284812767058611, -0.002395418705418706, -2.3197671907837503e-05, -0.0037266104482114315, 0.0017924777930602431, 0.010417074896395206, -0.004808998201042414, 0.0028803138993680477, -0.021546054631471634, -0.014245386235415936, -0.018248042091727257, 0.027386590838432312, 0.02696525864303112, -0.0212118960916996, -0.006025776267051697, -0.0016435586148872972, -0.004914331249892712, -0.003176335943862796, 0.001503719948232174, -0.01756519265472889, -0.004874377511441708, -0.00025924641522578895, 0.003219922073185444, -0.016722528263926506, 0.02788056619465351, 0.009603467769920826, 0.007224393542855978, -0.009690639562904835, 0.0007981702219694853, 0.02211267501115799, -0.016737056896090508, -0.01848050020635128, 0.011702864430844784, 0.009712432511150837, -0.01637383922934532, 0.0013529848074540496, -0.00940006598830223, -0.009262043051421642, 0.01362791657447815, -0.004307758063077927, -0.004798101726919413, 0.005648030433803797, 0.015124372206628323, -0.00842664297670126, 0.006646878086030483, 0.03071366250514984, 0.007918138988316059, -0.009973949752748013, 0.01676611416041851, -0.009523559361696243, -0.013315549120306969, 0.02058716118335724, -0.008702688850462437, 0.01606873795390129, -0.001451053423807025, -0.019860725849866867, 0.008913354948163033, 0.007707472890615463, 0.0039045868907123804, -0.014405201189219952, -0.0004537947243079543, -0.015371359884738922, 0.008201448246836662, 0.0010061122011393309, 0.04254002124071121, -0.0003405163006391376, 0.004485734738409519, -0.0016390184173360467, 0.014615867286920547, 0.008593723177909851, 0.009915834292769432, 0.004351344425231218, 0.007613036315888166, -0.015879863873124123, -0.016940459609031677, -0.02294081076979637, -0.005263019818812609, 0.017027631402015686, -0.006174695678055286, -0.004224217962473631, -0.005266651976853609, 0.004322286695241928, 0.008375792764127254, -0.008593723177909851, -0.0062255458906292915, 0.008215976879000664, 0.007133589591830969, -0.030655547976493835, 0.01333007775247097, 0.023274969309568405, 0.007318830117583275, 0.02140076830983162, 0.005088675767183304, -0.010729441419243813, 0.0003784271248150617, 0.004249643534421921, -0.023463843390345573, -0.036292679607868195, 0.0287813451141119, 0.003138198284432292, -0.006443476304411888, -0.008760803379118443, -0.019642796367406845, -0.025410687550902367, 0.010373488068580627, -0.008956940844655037, 0.005037825088948011, -0.006421683356165886, 0.0012067897478118539, -0.009472709149122238, -0.017100274562835693, 0.015545704402029514, -0.004133414011448622, 0.04515518620610237, -0.0004985158448107541, 0.030364973470568657, -0.013765938580036163, -0.0004830791149288416, -0.04161018505692482, -0.011492198333144188, -0.007489542476832867, -0.0181753970682621, 0.01977355405688286, -0.00027854234213009477, -0.007206232752650976, 0.010097443126142025, 0.01297412533313036, 0.007656622678041458, 0.007380577269941568, 0.0041406783275306225, -0.015778163447976112, 0.013613387942314148, 0.0066686710342764854, 0.005139525979757309, 0.0024626138620078564, -0.0005670731188729405, -0.025483332574367523, -0.014223592355847359, 0.005778788588941097, 0.008615516126155853, 0.013133940286934376, 0.007453220896422863, -0.011637484654784203, -0.006094787735491991, -0.000604302913416177, -0.011935323476791382, 0.023304026573896408, 0.02342025749385357, 0.0014546855818480253, 0.013351870700716972, 0.01627213880419731, 0.01654818467795849, 0.002043097745627165, 0.007809173781424761, 0.0014755706069990993, 0.0026878085918724537, 0.01837879978120327, -0.012211368419229984, -0.0008195092086680233, 0.010068385861814022, -0.0014882832765579224, -0.0048562162555754185, 0.008470229804515839, -0.0020067759323865175, 0.010889257304370403, -0.017594249919056892, 0.016620827838778496, 0.003940908703953028, 0.014180006459355354, 0.023100625723600388, -0.00767841562628746, -0.023565543815493584, 0.022780993953347206, -0.019163349643349648, -0.02241777628660202, -0.001411099568940699, 0.02081962116062641, 0.0009788708994165063, 0.016402896493673325, 0.0011096290545538068, 0.01595250703394413, 0.0029620376881211996, -1.252106812899001e-05, 0.002488038968294859, -0.01029358059167862, 0.0028040381148457527, -0.02331855520606041, -0.010562361218035221, -0.014920970425009727, -0.009814133867621422, -0.006508855614811182, -0.009567146189510822, -0.004467573948204517, -0.009174871258437634, -0.008542872965335846, 0.0017343630315735936, -0.007228026166558266, 0.0004998779040761292, -0.002911187242716551, 0.019526567310094833, -0.0034687260631471872, 0.009770547971129417, -0.008390321396291256, 0.0029965434223413467, 0.0013121227966621518, 0.0040244488045573235, 0.01788482442498207, 0.003930012229830027, -0.02623882330954075, -0.006131109315901995, 0.006134741473942995, -0.00118590472266078, 0.012610907666385174, 0.007838231511414051, -0.008673631586134434, -0.008702688850462437, -0.00020067760488018394, -0.0047872052527964115, -0.017594249919056892, -0.009959421120584011, -0.014252650551497936, -0.0013729616766795516, 0.012552793137729168, 0.0004070304858032614, 0.015996092930436134, -0.014165477827191353, 0.013184791430830956, 0.01827709935605526, -0.004423987586051226, 0.02767716534435749, 0.013874904252588749, 0.01593797840178013, 0.017594249919056892, -0.007961724884808064, 0.01605420745909214, 0.029362494125962257, -0.0016344782197847962, 0.014310765080153942, 0.012487413361668587, 0.003283485071733594, 0.012276747263967991, 0.008615516126155853, -0.006843015551567078, 0.013671502470970154, -0.04707297310233116, -0.00383920781314373, 0.02636958286166191, -0.009051376953721046, 0.00596039742231369, 0.0010969165014103055, 0.020746976137161255, 0.005168583244085312, 0.0022083616349846125, 2.297066203027498e-05, 0.03675759956240654, 0.024074047803878784, -0.004049873910844326, 0.0029529572930186987, 0.007540392689406872, -0.027299419045448303, -0.008252299390733242, 0.020776035264134407, 0.004685504361987114, 0.000921664119232446, -0.010816614143550396, -0.01878560334444046, -0.009567146189510822, -0.0171729177236557, 0.011782771907746792, -0.0009979397291317582, 0.023681772872805595, -0.0074677495285868645, 0.009044112637639046, 0.010627740994095802, -0.003390634199604392, 0.009625260718166828, 0.0006397166289389133, 0.0034995994064956903, -0.00924025010317564, -0.017390849068760872, 0.008303149603307247, -0.0004867113020736724, -0.024873126298189163, -0.006428947672247887, 0.01020640879869461, -0.01094737183302641, -0.018640317022800446, 0.004358608741313219, 0.013199320062994957, -0.0010587787255644798, 0.007591243367642164, 0.004293229430913925, -0.0036303577944636345, 0.0007087279227562249, 0.0012521919561550021, 0.025410687550902367, 0.0029293482657521963, -0.01150672696530819, 0.024785954505205154, -0.004467573948204517, 0.02604995109140873, 0.00833947118371725, 0.02100849337875843, -0.0003148640680592507, 0.007260715588927269, -0.004921595565974712, -0.005332031287252903, -0.001876017777249217, 0.01605420745909214, -0.0038718972355127335, -0.01232759840786457, -0.03806518018245697, -0.005622605327516794, -0.010279051959514618, 0.021429825574159622, -0.03594399243593216, 0.029159091413021088], "8b853460-a294-4741-b13f-57e59580de1c": [-0.014340241439640522, -0.009453076869249344, 0.005594607908278704, 0.02082000859081745, 0.002318840241059661, -0.05145535618066788, 0.003943908028304577, 0.029418684542179108, 0.005522838793694973, 0.027955953031778336, -0.003673918079584837, 0.03893327713012695, -0.0031441901810467243, -0.003282603109255433, 0.014586308971047401, 0.0162267554551363, 0.00013029592810198665, 0.020778996869921684, 0.01282966323196888, -0.019015515223145485, 0.03565238416194916, 0.00017750149709172547, -0.03297298774123192, 0.046725399792194366, -0.009282196871936321, -0.009890529327094555, -0.027600523084402084, 0.014025822281837463, -0.02533123642206192, -0.01196159329265356, 0.029008572921156883, 0.03540631756186485, -0.0015225399984046817, -0.0042583271861076355, 0.016377130523324013, -0.03201605752110481, 0.003581642871722579, -0.0023290931712836027, -0.020327873528003693, 0.01566627062857151, 0.012733970768749714, 0.02441532164812088, 0.006425084546208382, 0.009289031848311424, -0.02944602631032467, 0.023868504911661148, -0.007935662753880024, -0.004555658437311649, -0.0129937082529068, -0.05481827259063721, 0.030566997826099396, -0.006831778679043055, 0.014640990644693375, 0.04508495330810547, 0.04902202636003494, -0.023868504911661148, 0.010533037595450878, 0.003195454366505146, -0.024524684995412827, -0.04828382655978203, 0.02177693508565426, -0.014586308971047401, 0.010232288390398026, -0.0032757679000496864, 0.04896734654903412, -0.011332754977047443, -0.00814755354076624, -0.008851579390466213, -0.0006390908383764327, 0.02643853984773159, -0.011886406689882278, 0.020409896969795227, -0.05435347929596901, 0.026069438084959984, 0.0018591734115034342, -0.009077141061425209, 0.0203415434807539, 0.01142161339521408, 0.007614408619701862, -0.02829771302640438, 0.01405316311866045, -0.02170858345925808, 0.040464360266923904, -0.016199415549635887, 0.058509279042482376, 0.0550369992852211, -0.015843985602259636, -0.041011177003383636, -0.02695801481604576, -0.021462516859173775, -0.004647933412343264, 0.007129109930247068, -0.0053827171213924885, -0.007040251977741718, -0.01632244884967804, 0.015010090544819832, 0.010157101787626743, 0.016595857217907906, 0.007019746582955122, -0.031195836141705513, -0.006797602865844965, 0.01153781171888113, 0.011032006703317165, 0.021161766722798347, 0.035625044256448746, 0.013253445737063885, 0.004241239279508591, 0.004685527179390192, -0.02079266682267189, 0.022419443354010582, -0.014531627297401428, -0.014025822281837463, 0.03163328766822815, -0.0007813483825884759, -0.048557233065366745, -0.0456317700445652, -0.05167408287525177, -1.9117189367534593e-05, -0.006763426586985588, -0.014928068965673447, 0.037620920687913895, -0.014176197350025177, 0.007785288617014885, -0.019220571964979172, -0.025303896516561508, 0.0075665623880922794, 0.0031646958086639643, 0.009446240961551666, 0.02135315351188183, 0.013034719042479992, -0.0319887176156044, -0.017019638791680336, 0.03444938734173775, -0.003745687659829855, 0.020546600222587585, 0.006476348266005516, -0.021243790164589882, 0.022474125027656555, -0.013103071600198746, 0.03513290733098984, -0.023184984922409058, -0.025508953258395195, -0.0255226232111454, -0.018919823691248894, 0.04158533364534378, 0.0067292507737874985, -0.015871325507760048, 0.025631986558437347, -0.022118695080280304, 0.01457263808697462, -0.08267853409051895, -0.007956168614327908, 0.002904958324506879, -0.011073017492890358, 0.009767495095729828, -0.0609152689576149, 0.010676576755940914, 0.03313703089952469, 0.013718239031732082, 0.041175223886966705, 0.004740208387374878, -0.03619920089840889, -0.028707824647426605, 0.02673928812146187, 0.05129131302237511, 0.03365650773048401, 0.046041883528232574, 0.020546600222587585, -0.015051102265715599, 0.018154282122850418, 0.008509819395840168, -0.02859846130013466, 0.01639080047607422, 0.02229641005396843, -0.032426171004772186, -0.01740241050720215, 0.011838559992611408, 0.056157972663640976, 0.02928198128938675, 0.002790468977764249, -0.03253553435206413, 0.020163828507065773, -0.0064011611975729465, 0.024114571511745453, 0.004928176291286945, 0.030238907784223557, -0.01421720813959837, 0.029500707983970642, 0.007785288617014885, 0.006319139152765274, 0.007928827777504921, -0.0005152029334567487, -6.65897605358623e-05, 0.009104480966925621, -0.006243951618671417, -0.013807096518576145, -0.01651383377611637, 0.019630683586001396, -0.010157101787626743, 0.0015456087421625853, 0.003361207665875554, -0.04393664002418518, 0.008653358556330204, 0.01570728048682213, -0.050252363085746765, 0.01853705197572708, 0.02072431519627571, -0.02961006946861744, -6.18905687588267e-05, -0.0017258870648220181, 0.05358793959021568, -0.02944602631032467, -0.03901530057191849, 0.006083324551582336, 0.005792828742414713, -0.0006275564664974809, -0.02206401340663433, 0.03114115446805954, -0.0026811056304723024, -0.06627406179904938, -0.020902030169963837, 0.01837300695478916, -0.005902192089706659, -0.061680812388658524, -0.041667357087135315, 0.004613757599145174, -0.02356775663793087, 0.009705978445708752, -0.027149399742484093, -0.01490072812885046, -0.019152220338582993, 0.016459152102470398, -0.0012602392816916108, -0.021202778443694115, -0.008065531961619854, 0.056157972663640976, 0.04505761340260506, 0.002783633768558502, -0.02533123642206192, 0.020286861807107925, 0.015816643834114075, 0.02340371161699295, -0.018263643607497215, -0.013998482376337051, 0.021722253412008286, 0.0023974450305104256, -0.022118695080280304, 0.05235760286450386, -0.024005210027098656, -0.023526744917035103, 0.005283606704324484, 0.015543236397206783, 0.0077169365249574184, -0.01405316311866045, -0.036253880709409714, 0.05416209623217583, 0.010635565035045147, -0.023458393290638924, 0.00038939257501624525, -0.00812704861164093, 0.007805794011801481, 0.0390426404774189, 0.02667093649506569, 0.005488662514835596, 0.03887859731912613, -0.02069697342813015, -0.014340241439640522, -0.016951287165284157, 0.016472823917865753, 0.04071043059229851, 0.025973746553063393, 0.006155094131827354, -0.010437345132231712, 0.02770988643169403, 0.00016500591300427914, -0.02027319185435772, -0.013636216521263123, 0.004928176291286945, 0.03953477367758751, 0.022733863443136215, -0.045194316655397415, 0.013342303223907948, 0.019152220338582993, 0.005570685025304556, 0.038960617035627365, -0.026192471385002136, -0.02914527617394924, -0.030184226110577583, -0.037949010729789734, 0.015051102265715599, 0.004979440476745367, 0.022009331732988358, 0.05131865292787552, 0.0015584247885271907, 0.022993599995970726, 0.028215689584612846, -0.028844527900218964, -0.041503310203552246, -0.022378431633114815, 0.005122979637235403, 0.017839862033724785, -0.025864383205771446, 0.0201091468334198, -0.015980688855051994, 0.05331452935934067, -0.04276098683476448, 0.01634978875517845, -0.009275360964238644, -0.017976565286517143, 0.06583660840988159, 0.020519258454442024, -0.05356059968471527, 0.0028741999994963408, 0.006411414127796888, -0.00633964454755187, -0.007190626580268145, -0.016049040481448174, -0.018564393743872643, -0.011510470882058144, -0.028516439720988274, 0.03048497624695301, -0.0003701685927808285, -0.042678967118263245, 0.014312900602817535, 0.05347857624292374, -0.05353325605392456, 0.02641119807958603, -0.01465466059744358, -0.013314962387084961, 0.003016030415892601, -0.02539958991110325, -0.013294456526637077, -0.05388868600130081, 0.022269070148468018, -0.04582315683364868, -0.04276098683476448, -0.047873713076114655, -0.03313703089952469, 0.029500707983970642, -0.01438125316053629, -0.016131063923239708, 0.003540631616488099, 0.0366913340985775, -0.0049110883846879005, -0.01065607089549303, 0.002641803352162242, 0.007942497730255127, 0.022433113306760788, -0.0456317700445652, 0.004685527179390192, 0.0006634412566199899, 0.006308886222541332, 0.022105025127530098, 0.007921992801129818, -0.005881686229258776, -0.021517198532819748, -0.02082000859081745, 0.04932277649641037, 0.002872491255402565, -0.0037388524506241083, -0.0033577901776880026, 0.01366355735808611, -0.0007569979643449187, 0.0006950540118850768, -0.016431812196969986, 0.006845449097454548, 0.026028428226709366, -0.012932191602885723, 0.019822068512439728, -0.003622654126957059, -0.026424868032336235, 0.03220744431018829, 0.007040251977741718, -0.005369046702980995, 0.007826299406588078, -0.023321690037846565, -0.0009116443106904626, 0.004989693406969309, -0.018468700349330902, 0.02161289006471634, 0.03770294412970543, 0.006243951618671417, -0.009261691011488438, 0.04243289679288864, 0.008400456048548222, 0.0009902491001412272, -0.008988282643258572, -0.008906261064112186, -0.04913138970732689, -0.023061951622366905, -0.027996964752674103, -0.00038618859252892435, -0.043335143476724625, -0.013998482376337051, -0.03141456097364426, -0.0007672507781535387, -0.016117392107844353, -0.03956211730837822, -0.0010295514948666096, -0.05246696621179581, -0.013971141539514065, -0.024456331506371498, 0.01414885651320219, 0.0022265652660280466, 0.021257460117340088, -0.042678967118263245, 0.009343713521957397, 0.009480416774749756, 0.03168797120451927, -0.0095829451456666, 0.0397535003721714, 0.0018232886213809252, 0.010410004295408726, 0.0029716016724705696, 0.04781903326511383, 0.016076382249593735, -0.011093523353338242, 0.025563634932041168, -0.06042313575744629, -0.004613757599145174, 0.015010090544819832, 0.03300032764673233, 0.014723013155162334, 0.0406830869615078, 0.01347900740802288, 0.01736139878630638, 0.02513985149562359, -0.02683497965335846, 0.005297277122735977, -0.0008569627534598112, -0.039288707077503204, 0.03062167949974537, 0.005806499160826206, 0.0023718131706118584, 0.002486302750185132, -0.008058696053922176, -0.0002892142510972917, 0.020915700122714043, 0.003663665149360895, 0.02056027017533779, -0.00744352862238884, -0.0013097944902256131, 0.0052460129372775555, 0.01733405701816082, -0.0095829451456666, -0.021790605038404465, -0.01124389749020338, 0.017252035439014435, -0.006428502034395933, -0.009664967656135559, -0.0032603885047137737, 0.009104480966925621, -0.03573440760374069, 0.009767495095729828, 0.015201476402580738, 0.0038550507742911577, -0.012720299884676933, -0.0036260716151446104, 0.025126181542873383, -0.03920668736100197, -0.010765434242784977, -0.01831832528114319, 0.024989478290081024, 0.01330129150301218, 0.013930129818618298, -0.03365650773048401, 0.012023109942674637, 0.004668439272791147, 0.014340241439640522, -0.006134588737040758, 0.012029945850372314, -0.003735434729605913, -0.014162526465952396, 0.02382749505341053, -0.005071715451776981, 0.0006459260475821793, -0.019138550385832787, -0.011073017492890358, 0.00736834155395627, -0.0053177825175225735, -0.0037285995204001665, -0.0507991798222065, 0.008256916888058186, 0.00681469077244401, -0.005365629214793444, 0.004781219642609358, 0.0088789202272892, -0.01756645366549492, 0.011578822508454323, -0.02533123642206192, 0.04388196021318436, -0.02288423664867878, 0.015174135565757751, 0.0006130316760390997, -0.014435934834182262, -0.037456873804330826, 0.0031852014362812042, -0.009610285982489586, -0.010362157598137856, -0.05287707969546318, 0.038468483835458755, -0.016992297023534775, -0.020943041890859604, -0.004125040955841541, -0.0118795707821846, 0.017115332186222076, 0.005293859634548426, 0.03655463084578514, -0.012850169092416763, -4.069077840540558e-05, -0.02082000859081745, 0.052740372717380524, -0.023677119985222816, 0.017019638791680336, 0.018427688628435135, 0.02862580120563507, -0.012296518310904503, -0.03893327713012695, 0.019493980333209038, -0.02477075159549713, -0.00883107353001833, -0.031879354268312454, -0.03302766755223274, -0.0022897906601428986, -0.028707824647426605, -0.02911793626844883, 0.007655419874936342, -0.013684063218533993, 0.005505750421434641, -0.027737226337194443, 0.008742216043174267, 0.014012152329087257, 0.004176305141299963, 0.02333535999059677, 0.018851472064852715, -0.028078986331820488, -0.014873387292027473, 0.024128243327140808, 0.019658025354146957, 0.012016274966299534, -0.041011177003383636, 0.024798091500997543, -0.02168124169111252, -0.006684822030365467, 0.004261744674295187, 0.04024563729763031, -0.024196594953536987, 0.0007424731738865376, -0.024442661553621292, 0.024757081642746925, -0.018208961933851242, 0.021107086911797523, 8.260975300800055e-05, 0.0065207770094275475, -0.003933655563741922, -0.01818162202835083, 0.01413518562912941, -0.042323533445596695, -0.0175254438072443, -0.004189975094050169, -0.014709342271089554, 0.02401887997984886, 0.009801671840250492, 0.01837300695478916, -0.009535098448395729, 0.02060128189623356, -0.022351091727614403, -0.007580232806503773, -0.0378669872879982, 0.03237149119377136, 0.04057372361421585, 0.001747247064486146, 0.05582988262176514, -0.0033594989217817783, 0.0014661495806649327, 0.04325312376022339, -0.007546056527644396, -0.008933601900935173, -0.02947336621582508, -0.01532450970262289, 0.05331452935934067, -0.002353016287088394, 0.009405230171978474, -0.012235001660883427, -0.004203645512461662, 0.002518769819289446, -0.00883107353001833, -0.021722253412008286, -0.00016735550889279693, 0.026588913053274155, 0.0038823913782835007, 0.02366345003247261, -0.029637411236763, 0.045030273497104645, -0.01615840382874012, 0.015625258907675743, 0.010533037595450878, 0.031059131026268005, 0.0038926443085074425, 0.02131214179098606, 0.013725074008107185, 0.010225453414022923, -0.005416892934590578, -0.00010012494749389589, -0.01684192381799221, 0.032234784215688705, -0.0009330043103545904, 0.02843441627919674, 0.011196051724255085, 0.04153065383434296, 0.02914527617394924, 0.036773357540369034, 0.016636867076158524, -0.012453727424144745, 0.005878268741071224, 0.004630845505744219, 0.0056766304187476635, 0.024210264906287193, 0.02653423137962818, 0.009022459387779236, 0.023950528353452682, -0.011496799997985363, 0.03584377095103264, 0.008585006929934025, 0.024032549932599068, 0.009261691011488438, -0.011223392561078072, 0.011182380840182304, -0.002235109219327569, 0.004849571734666824, 0.009794835932552814, 0.0024196594022214413, -0.004565910901874304, -0.017115332186222076, 0.003564554965123534, -0.03819507732987404, 0.0064421724528074265, 0.02262450009584427, -0.04792839661240578, -0.025878053158521652, -0.02455202490091324, 0.013000543229281902, -0.004743626341223717, 0.04322578012943268, -0.01060822419822216, -0.0009218971244990826, -0.016951287165284157, -0.007334165740758181, 0.03278160095214844, 0.01279548741877079, 0.004367690533399582, 0.01853705197572708, -0.0020522677805274725, 0.031195836141705513, 0.004788055084645748, -0.0010867961682379246, 0.0069513944908976555, 0.0026640177238732576, -0.01279548741877079, -0.011626669205725193, 0.03649994730949402, -0.021694913506507874, 0.00645584287121892, 0.012706629931926727, 0.0012141017941758037, -0.028653142973780632, 0.02177693508565426, 0.015256158076226711, 0.038113053888082504, -0.007306824903935194, 0.01084062084555626, 0.009446240961551666, 0.00791515689343214, 0.011913747526705265, -0.013246610760688782, 0.0016712055075913668, -0.032562874257564545, 0.007908321917057037, -0.020587611943483353, -0.00788098108023405, -0.025891723111271858, -0.051127269864082336, -0.025317566469311714, -0.011674514971673489, -0.03111381269991398, -0.0022727027535438538, 0.004248074255883694, 0.002588830655440688, -0.03302766755223274, -0.014627319760620594, -0.028051644563674927, 0.0035030380822718143, -0.018728436902165413, 0.005758652929216623, -0.01267928909510374, 0.0040430184453725815, -0.005256265867501497, -0.037128787487745285, 0.007129109930247068, -0.00951459351927042, -0.019056526944041252, -0.038441143929958344, -0.0004976877244189382, -0.03723815083503723, 0.009562439285218716, 0.002732369815930724, -0.017935555428266525, -0.03868721053004265, 0.003133937483653426, -0.013048389926552773, 0.014996420592069626, 0.0191658902913332, -0.01480503473430872, -0.019644353538751602, 0.003670500358566642, 0.01867375709116459, 0.003814039519056678, 0.030375612899661064, 0.011319085024297237, 0.03496886417269707, -0.03792166709899902, 0.009753825142979622, -0.02813366800546646, -0.0225834883749485, -0.01413518562912941, 0.022419443354010582, 0.04322578012943268, -0.012870674952864647, -0.000292845448711887, 0.005994467064738274, 0.039152003824710846, -0.01844136044383049, 0.001731867901980877, -0.004326679278165102, -0.012918520718812943, 0.00045368613791652024, 0.013205599039793015, 0.008366280235350132, 0.020259521901607513, -0.010498861782252789, -0.0015191223938018084, -0.0048017255030572414, 0.04497558996081352, -0.0022949171252548695, -0.01691027544438839, 0.004890582989901304, 0.02608310803771019, 0.00507513340562582, -0.03906998038291931, -0.017962895333766937, 0.05290441960096359, 0.00047461895155720413, 0.03045763447880745, 0.028926551342010498, -0.02173592336475849, 0.022733863443136215, 0.03956211730837822, -0.012815993279218674, -0.01723836548626423, 0.034258004277944565, -0.010615060105919838, 0.020081806927919388, 0.012344364076852798, -0.020054465159773827, -0.01707432046532631, -0.007600738201290369, 0.017552783712744713, 0.021271130070090294, 0.024962136521935463, 0.016896605491638184, 0.03756623715162277, 0.0006519068265333772, -0.017388738691806793, 0.015816643834114075, -0.01078594010323286, -0.017744168639183044, 0.004408701788634062, 0.0028229360468685627, -0.017320387065410614, 0.005030704662203789, -0.04344450682401657, -0.013273951597511768, 0.02109341509640217, -0.004914506338536739, 0.019740046933293343, -0.02568666823208332, 0.04978756979107857, -0.037456873804330826, 0.014449604786932468, 0.009801671840250492, 0.011852229945361614, 0.004248074255883694, 0.01942562870681286, 0.05047108978033066, -0.0053109475411474705, -0.0026537650264799595, -0.004870077129453421, -0.010368992574512959, -0.02467505820095539, 0.003156151855364442, 0.038468483835458755, -0.020655963569879532, 0.03658197075128555, 0.03368384763598442, 0.0319887176156044, -0.011264403350651264, -0.025016818195581436, -0.016664208844304085, -0.03032093122601509, 0.015242488123476505, 0.005618531256914139, 0.004367690533399582, -0.031879354268312454, 0.02947336621582508, -0.015351850539445877, -0.028844527900218964, -0.00896094273775816, 0.009083976037800312, 0.008475643582642078, 0.002323966706171632, 0.003755940357223153, -0.008605511859059334, 0.032918304204940796, 0.008482478559017181, -8.981874998426065e-05, -0.0046957796439528465, 0.03581642732024193, 0.016445482149720192, 0.0009424026939086616, 0.0031646958086639643, -0.007416187785565853, -0.0064011611975729465, -0.0324535109102726, 0.02728610299527645, -0.0014721304178237915, 0.0257550198584795, 0.0189334936439991, -0.011565151624381542, -0.023718131706118584, 0.03603515401482582, -0.005464739631861448, -0.05654074251651764, 0.01147629413753748, 0.024128243327140808, -0.0033885485026985407, -0.012453727424144745, 0.014271889813244343, 0.005557014606893063, 0.023089293390512466, 0.015884995460510254, 0.02523554489016533, -0.019917761906981468, 0.015611588023602962, -0.04188608378171921, -0.00412162346765399, 0.016103722155094147, -0.00108935940079391, -0.003578225150704384, 0.011298579163849354, 0.022474125027656555, 0.0065857116132974625, 0.007498210296034813, -0.00431642634794116, 0.000621575687546283, -0.03685537725687027, -0.016923945397138596, 0.00819540023803711, 0.01254941988736391, 0.01343116071075201, -0.020218510180711746, 0.003875556169077754, -0.008318433538079262, 0.032945647835731506, 0.01648649387061596, -2.7661184503813274e-05, -0.01808592863380909, 0.010416839271783829, -0.01900184527039528, -0.041339267045259476, 0.004917923826724291, -0.007149615325033665, 0.0005357085028663278, -0.022446785122156143, 0.007320495322346687, -0.03469545766711235, -0.005259683355689049, 0.0067292507737874985, -0.03567972406744957, 0.007081263232976198, 0.0014977623941376805, 0.00993837509304285, 0.003755940357223153, 0.014955409802496433, -0.016049040481448174, -0.016363460570573807, -0.018099600449204445, 0.005816752091050148, -0.012733970768749714, 0.006783932447433472, -0.01677357219159603, -0.0012704920955002308, -0.018851472064852715, -0.01498275063931942, -0.013260280713438988, 0.054982319474220276, -0.05405273288488388, 0.007047087419778109, 0.004449712578207254, -0.007655419874936342, -0.0010654361685737967, 0.00811337772756815, -0.0008270587422885001, -0.016869263723492622, -0.02895389124751091, 0.03565238416194916, 0.012228165753185749, 0.025085169821977615, 0.003673918079584837, -0.002568325027823448, -0.007183791138231754, 0.017552783712744713, -0.0035440493375062943, 0.022337421774864197, -0.011182380840182304, 0.02796962298452854, 0.01632244884967804, -0.0100545734167099, -0.006674569100141525, -0.0009022459271363914, 0.011530975811183453, -0.019015515223145485, -0.004504394251853228, -0.001987333409488201, 0.006896712817251682, 0.03567972406744957, -0.017812522128224373, -0.016800912097096443, -0.015720952302217484, -0.03882391378283501, -0.0025085171218961477, -0.007976674474775791, -0.026042098179459572, 0.04060106724500656, -0.0191658902913332, -0.0007382011972367764, -0.008926765993237495, -0.01090213842689991, 0.020573940128087997, -0.023909516632556915, -0.0028741999994963408, -0.012487903237342834, 0.02754584141075611, 0.02523554489016533, -0.010081914253532887, 0.011025171726942062, 0.009993056766688824, 0.01615840382874012, -0.020642293617129326, 0.025413259863853455, 0.0028998320922255516, -0.0017651894595474005, 0.0038174570072442293, -0.015597918070852757, 0.008297928608953953, -0.008263751864433289, 0.0019172725733369589, -0.018906153738498688, 0.0030450799968093634, 0.0015071607194840908, 0.008872084319591522, 0.012836498208343983, -0.029528047889471054, -0.002851985627785325, 0.0010338234715163708, -0.009788000956177711, -0.0011064474238082767, -0.010341651737689972, -0.01030064094811678, -0.03546099737286568, 0.0018950582016259432, 0.02199566178023815, -0.029856137931346893, -0.021134426817297935, -0.017621135339140892, -0.032754261046648026, 0.0072316378355026245, -0.01919323019683361, 0.01129174418747425, -0.02660258300602436, 0.0050546275451779366, 0.0002857966464944184, -0.009425736032426357, -0.009890529327094555, 0.002124037127941847, -0.0032296301797032356, -0.013561028987169266, 0.008434631861746311, -0.019767386838793755, 0.0034090541303157806, -0.030238907784223557, 0.005796246230602264, 0.010191277600824833, -0.02464771829545498, 0.03587111085653305, 0.027313444763422012, 0.03264489769935608, -0.015625258907675743, -0.026520561426877975, -0.010273300111293793, 0.004060106351971626, -0.03617185726761818, -0.0331643708050251, 0.005085385870188475, -0.012528914958238602, -0.002378648379817605, 0.006896712817251682, 0.011968428269028664, -0.024593036621809006, 0.014107844792306423, 0.018591733649373055, 0.01639080047607422, -0.02829771302640438, 0.011865900829434395, -0.017156342044472694, -0.0228158850222826, 0.006889877840876579, 0.0031253935303539038, -0.012371704913675785, 0.007053922396153212, 0.02565932646393776, -0.010512531735002995, -0.02135315351188183, -0.011496799997985363, -0.014476945623755455, 0.004528317600488663, -0.015611588023602962, -0.00963079184293747, -0.04358121007680893, -0.011695020832121372, 0.008140718564391136, 0.0062200287356972694, 0.003974666818976402, -0.0041079530492424965, 0.017771510407328606, 0.012446892447769642, -0.0201091468334198, 0.012788652442395687, 0.020970381796360016, 0.007723771966993809, 0.021763265132904053, 0.004671856760978699, -0.015871325507760048, 0.03570706397294998, -0.01665053889155388, -0.007655419874936342, 0.002498264191672206, 0.018208961933851242, -0.0009090810781344771, -0.010649235919117928, 0.024593036621809006, -0.010567213408648968, 0.004381360951811075, 0.028489097952842712, -0.00963079184293747, 0.003407345386222005, -0.011435283347964287, -0.03688272088766098, -0.006568623706698418, 0.010396333411335945, -0.007928827777504921, -0.020450906828045845, 0.00047504613758064806, 0.001361912814900279, -0.014176197350025177, -0.009760660119354725, 0.01794922538101673, -0.002640094608068466, 0.007149615325033665, 0.016404470428824425, -0.009425736032426357, 0.0020334708970040083, -0.012269177474081516, -0.005833839997649193, -0.006582294125109911, -0.008386786095798016, -0.006527612451463938, 0.009022459387779236, -0.0009586362866684794, 0.00475046131759882, -0.011749702505767345, -0.02363610826432705, -0.011114029213786125, -0.001987333409488201, 0.02996550127863884, -0.005105891730636358, 0.0037115116138011217, 0.011763372458517551, 0.03250819444656372, 0.027108388021588326, 0.0007100059883669019, 0.000930441077798605, 0.007272648625075817, 0.006312303710728884, 0.023950528353452682, 0.04615124687552452, 0.038960617035627365, -0.007012911140918732, 0.01651383377611637, -0.006971900351345539, -0.006965064909309149, 0.027108388021588326, 0.016664208844304085, 0.014463275671005249, 0.013902788981795311, 0.01634978875517845, 0.0009364219149574637, -0.011886406689882278, -0.022173376753926277, -0.0023666867054998875, 0.006196105387061834, 0.005973961669951677, -0.0048393188044428825, -0.015365521423518658, -3.094528437941335e-05, -0.004678691737353802, 0.008065531961619854, 0.0026332593988627195, 0.03789432719349861, 0.020737985149025917, 0.028078986331820488, 0.013615710660815239, -0.011674514971673489, 0.06649278849363327, -0.01596701890230179, -0.0002704174548853189, -0.006913801189512014, 0.004326679278165102, 0.026465879753232002, -0.02135315351188183, 0.010833785869181156, -0.011086688376963139, -0.0063704028725624084, -0.014599978923797607, 0.002124037127941847, -0.021831616759300232, -0.03382055088877678, -0.00868069939315319, -0.04500293359160423, -0.020423566922545433, 0.001423429581336677, 0.0024435827508568764, -0.024661388248205185, 0.005081968382000923, 8.69885552674532e-05, -0.010662905871868134, -0.01886514201760292, 0.0029835631139576435, 0.002004421316087246, 0.018892481923103333, 0.00010866893717320636, -0.04040968045592308, -0.013000543229281902, 0.020054465159773827, -0.013014214113354683, 0.00135678646620363, 0.015980688855051994, 0.02095671184360981, -0.005502332933247089, -0.0018642997602000833, -0.016008028760552406, 0.007785288617014885, -0.018167952075600624, 0.005755235441029072, 0.028161007910966873, 0.006284962873905897, 0.018714766949415207, -0.026370186358690262, 0.021872628480196, -0.011271238327026367, -0.01155831664800644, -0.0064968541264534, -0.01655484549701214, 0.022679181769490242, -0.012029945850372314, -0.000811679579783231, 0.0054613216780126095, -0.00015197631728369743, 0.005690300837159157, 0.002373521914705634, 0.012002605013549328, 0.014476945623755455, -0.03887859731912613, -0.00217871880158782, -0.02843441627919674, 0.0021650483831763268, 0.017087990418076515, -0.028926551342010498, -0.022692851722240448, 0.010621895082294941, 0.029828796163201332, -0.015447543933987617, 0.011742867529392242, 0.001937778084538877, -0.012440057471394539, -0.002373521914705634, 0.002081317361444235, 0.00019875468569807708, -0.0032655149698257446, 0.001268783351406455, 0.0038823913782835007, -0.015939677134156227, 0.0025717425160109997, -0.005201584193855524, -0.014039493165910244, 0.0003436822153162211, 0.012303353287279606, 0.006490018684417009, -0.016131063923239708, 0.008318433538079262, -0.006804437842220068, 0.00613800622522831, 0.0015960183227434754, 0.01010242011398077, -0.010232288390398026, 0.016336118802428246, 0.015310839749872684, 0.014025822281837463, 0.022187046706676483, 0.03310969099402428, -0.0030143214389681816, -0.005187913775444031, 0.014080503955483437, -0.000966325867921114, 0.026260824874043465, 0.039124663919210434, -0.021763265132904053, -0.02431962825357914, -0.006818108260631561, 0.0005062317359261215, 0.0027050289791077375, 0.020191170275211334, -0.009596615098416805, 0.010867961682379246, -0.026889661327004433, -0.0032928558066487312, 0.021271130070090294, -0.023267008364200592, 0.004576163832098246, 0.00510930921882391, 0.010628730058670044, 0.0031493166461586952, -0.0033082349691540003, -0.015652598813176155, 0.02265184000134468, -0.009719649329781532, 0.006671151611953974, 0.006548117846250534, 0.026807639747858047, -0.02370445989072323, -0.005625366698950529, -0.01655484549701214, 0.013369644060730934, 0.025440599769353867, 0.023280678316950798, -0.031168494373559952, -0.008407291024923325, -0.004449712578207254, 0.011619833298027515, 0.016896605491638184, -0.010874797590076923, -0.004644515924155712, -0.010936314240098, -0.004463382996618748, 0.00010049874254036695, -0.016732560470700264, 0.025044159963726997, -0.00562194874510169, -0.020669633522629738, 0.0036978411953896284, -0.004740208387374878, 0.0064968541264534, 0.039671480655670166, 0.0366913340985775, -0.020163828507065773, -0.009781165979802608, 0.0017352855065837502, 0.027108388021588326, -0.01733405701816082, 0.004066941794008017, -0.008181730285286903, 0.015010090544819832, -0.0024333298206329346, 0.02232375182211399, 0.006927471607923508, 0.005799664184451103, 0.002997233532369137, -0.0053177825175225735, -0.0034312685020267963, 0.022214388474822044, -0.005758652929216623, -0.03707410395145416, 0.021202778443694115, 0.007573397364467382, 0.003684170776978135, -0.002600792096927762, -1.8609889593790285e-05, -0.010628730058670044, 0.0029015408363193274, 0.005423728376626968, -0.0018523382022976875, 0.01961701363325119, -0.011729196645319462, 0.011175545863807201, -0.0019104373641312122, -0.026069438084959984, -0.0023154227528721094, 0.004302755929529667, 0.0028348977211862803, 0.0015302295796573162, -0.0029989422764629126, -0.015242488123476505, 0.017580125480890274, 0.02542692981660366, 0.013861778192222118, -0.01557057723402977, 0.03349246084690094, -0.01811327040195465, -0.007812629453837872, 0.007942497730255127, 0.017019638791680336, -0.01961701363325119, 0.03234414756298065, -0.016800912097096443, -0.005369046702980995, 0.005228925030678511, -4.265322786523029e-06, 0.003361207665875554, 0.013615710660815239, -0.015652598813176155, -0.02128480188548565, -0.03893327713012695, -0.018236303701996803, -0.00022235748474486172, -0.004152381792664528, -0.0018318325746804476, 0.011038841679692268, -0.0129937082529068, -0.003190327901393175, -0.005823587067425251, -0.008304763585329056, -0.01457263808697462, 0.0007386283832602203, 0.017648477107286453, 0.03209808096289635, -0.014791364781558514, -0.010239124298095703, -0.046369969844818115, 0.017716828733682632, -0.012918520718812943, 0.0331643708050251, 0.015980688855051994, -0.049760229885578156, -0.011469459161162376, 0.018523382022976875, 0.011913747526705265, 0.01566627062857151, 0.016076382249593735, -0.018290985375642776, 0.06463361531496048, 0.002429912332445383, 0.004412119276821613, -0.01837300695478916, 0.005601443350315094, -0.007546056527644396, -0.006852284073829651, -0.02401887997984886, -0.0005613404791802168, 0.006811273284256458, -0.007204296998679638, 0.00993837509304285, -0.0065447003580629826, 0.00745036406442523, -0.0007001804187893867, -0.0026811056304723024, 0.023936856538057327, 0.03015688620507717, 0.0012269177241250873, -0.026875991374254227, 0.016008028760552406, 0.01266561821103096, 0.010635565035045147, -0.010874797590076923, 0.01570728048682213, 0.01909753866493702, 0.013444830663502216, -0.024470003321766853, -0.02474340982735157, -0.01742975041270256, 0.010355322621762753, -0.00016094751481432468, 0.02284322679042816, -0.008291092701256275, 0.02112075686454773, 0.02881718799471855, -0.012542584910988808, 0.019699035212397575, -0.031879354268312454, 0.0002785342512652278, -0.01266561821103096, -0.014668331481516361, 0.013157752342522144, -0.025180863216519356, -0.006288380362093449, 0.0027255346067249775, 0.010813280940055847, 0.023554086685180664, -0.017183683812618256, 0.0011372057488188148, 0.0001572095206938684, -0.01749810203909874, -0.002836606465280056, -0.02914527617394924, -0.01155831664800644, -0.011660845018923283, -0.017634807154536247, -0.003930238075554371, 0.0019719540141522884, -0.0175254438072443, -0.015461213886737823, 0.007149615325033665, 0.020450906828045845, 0.00803135521709919, -0.0007638331735506654, -0.030348271131515503, 0.02742280811071396, -0.04431941360235214, 0.005714224185794592, -0.00606281915679574, 0.01480503473430872, 0.0030074864625930786, 0.025467941537499428, -0.02291157841682434, 0.03163328766822815, 0.015789303928613663, 0.03280894085764885, 0.01002039760351181, -0.045221660286188126, -0.003954160958528519, 0.01212563831359148, 0.012453727424144745, 0.00736834155395627, -0.04062840715050697, -0.00681469077244401, -0.01602170057594776, 0.019904091954231262, -0.016472823917865753, 0.004777802154421806, -0.0027767985593527555, -0.03302766755223274, -0.021366823464632034, -0.030539656057953835, -0.005772323347628117, 0.015242488123476505, -0.022761203348636627, 0.001912146108224988, 0.00566296000033617, -0.007423023227602243, -0.0025307314936071634, 0.0315239243209362, -0.009207009337842464, 0.014545297250151634, 0.03972616046667099, -0.055665839463472366, 0.018974505364894867, -0.027627862989902496, -0.001397797605022788, -0.004883747547864914, -0.035925790667533875, -0.0065857116132974625, -0.0048393188044428825, -0.021517198532819748, -0.017443420365452766, -0.007258978206664324, 0.016144733875989914, -0.00971281435340643, 0.00788098108023405, 0.027696214616298676, 0.01883780024945736, -0.019343605265021324, 0.012822828255593777, -0.0007270940113812685, 0.04270630702376366, -0.003171531017869711, -0.011462624184787273, -0.011722361668944359, -0.01691027544438839, 0.04226885363459587, 0.027299772948026657, 0.01018444262444973, -0.027573181316256523, 0.00399858970195055, -0.020915700122714043, 0.0026076273061335087, 0.030074862763285637, -0.016541175544261932, 0.004193393047899008, -0.01785353198647499, 0.009589780122041702, -0.004060106351971626, -0.009138657711446285, -0.013342303223907948, 0.004384778439998627, -0.02813366800546646, -0.0023649779614061117, -0.01326711568981409, -0.0023991537746042013, -0.026875991374254227, 0.008585006929934025, -0.010669741779565811, -0.01975371688604355, 0.014340241439640522, 0.00253756670281291, -0.004849571734666824, -0.0037798634730279446, 0.0014610232319682837, 0.010546707548201084, 0.01220766082406044, 0.007019746582955122, 0.03436736762523651, -0.033082351088523865, 0.013007378205657005, 0.030184226110577583, 0.0007685323944315314, -0.009330042637884617, 0.006920636165887117, 0.011114029213786125, 0.026260824874043465, 0.017976565286517143, -0.02284322679042816, -0.010615060105919838, 0.0017250326927751303, 0.010717587545514107, -0.007887816056609154, 0.010485190898180008, 0.007641749456524849, 0.0013029592810198665, -0.007122274488210678, -0.014107844792306423, -0.0034722797572612762, -0.008072366937994957, -0.00014556832320522517, -0.01147629413753748, -0.015078443102538586, -0.013964305631816387, 0.0034141805954277515, -0.02624715305864811, 0.0034295597579330206, -0.016964957118034363, -0.014668331481516361, -0.0024333298206329346, -0.007423023227602243, 0.018455030396580696, -0.005700553767383099, -0.006038895808160305, 0.0035372141283005476, -0.018400348722934723, 0.011913747526705265, -0.014039493165910244, 0.024333298206329346, 0.0070949336513876915, 0.013800261542201042, 0.026055768132209778, -0.012057285755872726, 0.0072316378355026245, -0.020519258454442024, -0.01863274537026882, 0.001588328741490841, 0.00796300359070301, 0.002214603591710329, -0.006445589940994978, -0.0035030380822718143, -0.006346479523926973, 0.044866226613521576, 0.012692959047853947, 0.009289031848311424, -0.013766085729002953, -0.010929479263722897, -0.016896605491638184, 0.011783878318965435, 0.005184496287256479, 0.035269614309072495, 0.019042856991291046, -0.0025922481436282396, -0.004415536765009165, 0.013643051497638226, 0.003489367663860321, -0.025700338184833527, 0.02526288479566574, 0.03633590415120125, 0.02053293026983738, -0.017046978697180748, 0.020355215296149254, 0.006859119515866041, -0.01165401004254818, -0.00749137531965971, 0.024278616532683372, 0.009193339385092258, 0.010669741779565811, -0.015351850539445877, 0.019179560244083405, 0.001351660117506981, 0.02751849964261055, -0.012419551610946655, -0.013561028987169266, -0.010874797590076923, -0.010621895082294941, 0.016472823917865753, 0.023007269948720932, -0.02448367327451706, 0.020054465159773827, -0.0037798634730279446, 0.0014413719763979316, -0.0025307314936071634, -0.0008569627534598112, 0.0028246447909623384, 0.019152220338582993, 0.005775740835815668, -0.010116090066730976, -0.0039028970059007406, 0.00033471101778559387, 0.005218672566115856, -0.013253445737063885, -0.008530325256288052, -0.017771510407328606, 0.001763480599038303, 0.022146034985780716, 0.002224856289103627, -0.005235760472714901, 0.02013648860156536, -0.0023718131706118584, 0.004436042159795761, -0.00015656871255487204, -0.020806336775422096, 0.019070196896791458, -0.016445482149720192, -0.026985354721546173, -0.010519366711378098, -0.019904091954231262, -0.008974612690508366, -0.0036910059861838818, 0.0048017255030572414, -0.0032655149698257446, -0.006524194963276386, 0.000806980358902365, 0.009200174361467361, -0.027955953031778336, 0.002235109219327569, -0.005273353774100542, -0.011312250047922134, 0.03934339061379433, 0.010758599266409874, 0.0037627755664288998, -0.004453130532056093, -0.004733373410999775, -0.009487252682447433, -0.010512531735002995, 0.02088836021721363, 0.0011124281445518136, 0.0162267554551363, -0.008543995209038258, -0.007265813648700714, -0.011353260837495327, -0.01912487857043743, -0.0019001845503225923, -0.0018301238305866718, 0.007265813648700714, 0.0023513075429946184, 0.00816122442483902, -0.014367582276463509, -0.0191658902913332, 0.017306717112660408, -0.006900130771100521, -0.01295953243970871, -0.004142128862440586, -0.00796300359070301, 0.00926852598786354, 0.013704568147659302, -0.005895356647670269, 0.011216556653380394, 0.001460168743506074, -0.01756645366549492, 0.0038413803558796644, 0.0029374256264418364, -0.022009331732988358, -0.01204361580312252, 0.003489367663860321, -0.03573440760374069, 0.003520125988870859, 0.014408593997359276, 0.010943149216473103, -0.015857655555009842, -0.00275458418764174, -0.006551535800099373, 0.01958967186510563, -0.00938472431153059, -0.0037696107756346464, 0.006175599992275238, -0.006407996639609337, -0.002918628742918372, -0.003246718319132924, -0.0031612783204764128, 0.007908321917057037, 0.00014727712550666183, -0.005950038321316242, 0.0033988014329224825, 0.024374309927225113, 0.027231421321630478, -0.0027785073034465313, -0.010560378432273865, -0.00926852598786354, 0.02056027017533779, -0.01219398993998766, 0.013950635679066181, 0.01592600718140602, 0.00562194874510169, 0.03237149119377136, -0.0020642292220145464, 0.027860259637236595, -0.01438125316053629, -0.027436478063464165, -0.004572746343910694, 0.002918628742918372, -0.015119453892111778, -0.023020941764116287, 0.004422372207045555, -0.012672454118728638, -0.001835250179283321, -0.002667435444891453, -0.03718346729874611, 0.03726549074053764, -0.022009331732988358, -0.010314310900866985, 0.0011372057488188148, -0.01013659592717886, 0.0023102962877601385, -0.003205707063898444, 0.010826950892806053, -0.005338288377970457, 0.04062840715050697, 0.016869263723492622, 0.012699794955551624, -0.016199415549635887, -0.01926158368587494, 0.006025225389748812, 0.00043339416151866317, -0.034750137478113174, 0.008858414366841316, 0.01413518562912941, -0.009801671840250492, 0.0026025010738521814, -0.032426171004772186, -0.0016438646707683802, -0.0017720246687531471, 0.0009936667047441006, 0.011148205026984215, 0.007956168614327908, 0.01069024670869112, -0.01900184527039528, -0.0025102258659899235, -0.0033013997599482536, -0.004449712578207254, -0.010922643356025219, -0.0005288732936605811, 0.020191170275211334, 0.005758652929216623, 0.002819518558681011, -0.015611588023602962, 0.008701205253601074, 0.02686232142150402, 0.03368384763598442, 0.0032176687382161617, -0.011066182516515255, 0.0007219676044769585, 0.0008193691610358655, 0.00931637268513441, -0.0001689575146883726, -0.011797549203038216, -0.014367582276463509, -0.006978735327720642, -0.018099600449204445, -0.006859119515866041, -0.0077101015485823154, -0.02735445462167263, -0.038441143929958344, 0.006397743709385395, -0.004504394251853228, -0.012460562400519848, -0.013752414844930172, 0.016992297023534775, 0.009569275192916393, 0.02246045507490635, -0.0056048608385026455, 0.009241185151040554, 0.005228925030678511, 0.03332841768860817, -0.01017077174037695, -0.008304763585329056, 0.021981991827487946, -0.00498627545312047, 0.01362938154488802, -0.0016814583213999867, -0.006787349935621023, 0.015174135565757751, -0.005731312092393637, -0.0026435120962560177, 0.019562331959605217, 0.006985570769757032, 0.010984160006046295, 0.0159943588078022, 0.008420961908996105, 0.03496886417269707, -0.011872735805809498, -0.0065139420330524445, 0.010259629227221012, -0.002481176285073161, -0.006349897477775812, 0.010259629227221012, -0.003046788740903139, 0.005932950414717197, 0.0018796789227053523, 0.0025426929350942373, -2.7007035896531306e-05, 0.004979440476745367, -0.00728631904348731, 0.002378648379817605, 0.02667093649506569, 0.008673864416778088, -0.00931637268513441, 0.009336878545582294, 0.011011500842869282, 0.017375068739056587, -0.015297168865799904, 0.002040306106209755, 0.007204296998679638, -0.018878811970353127, -0.022569818422198296, -0.0025478194002062082, 0.01618574559688568, -0.01693761721253395, -0.003814039519056678, 0.005324617959558964, -0.003776445984840393, 0.0014781111385673285, 0.003325322875753045, 0.01867375709116459, 0.014832375571131706, -0.015693610534071922, -0.00016692830831743777, -0.01142161339521408, -0.011353260837495327, 0.011818054132163525, 0.004066941794008017, 0.01834566704928875, 0.009541934356093407, 0.015529565513134003, -0.016869263723492622, -0.0012551129329949617, -0.019056526944041252, 0.02194098010659218, 0.007464034482836723, 0.012016274966299534, 0.00022064868244342506, -0.00028964143712073565, -0.022050343453884125, 0.0216402318328619, -0.000580564490519464, -0.01863274537026882, 0.019247911870479584, -0.003241591854020953, 0.008297928608953953, 0.017976565286517143, 0.00018166670633945614, -0.01015026681125164, -0.0026947760488837957, -0.012740805745124817, -0.018167952075600624, 0.013424325734376907, 0.009330042637884617, 0.0159943588078022, -0.0009834138909354806, -0.006233699154108763, 0.0009851226350292563, -0.0065925465896725655, -0.010416839271783829, -0.002247070660814643, 0.010211783461272717, -0.010451015084981918, -0.019015515223145485, 0.011216556653380394, 0.009671802632510662, -0.01152414083480835, -0.011086688376963139, 0.0005301549099385738, 0.015105783939361572, -0.010204948484897614, 0.012939026579260826, -0.007477704901248217, 0.002194097964093089, -0.01295953243970871, 0.007457199040800333, 0.012481068260967731, -0.04122990369796753, 0.009391559287905693, -0.007224802393466234, -0.005338288377970457, -0.0011961593991145492, -0.0013499512569978833, 0.00416263472288847, -0.005242595449090004, -0.01968536525964737, -0.011469459161162376, 0.0007172683835960925, -0.023485735058784485, -0.013588369823992252, -0.01274764072149992, -0.015748292207717896, 0.019699035212397575, 0.01975371688604355, 0.004135293886065483, -0.0031373549718409777, 0.021694913506507874, 0.022966260090470314, 0.004008842632174492, -0.01935727521777153, 0.009220680221915245, 0.023718131706118584, -0.012898015789687634, -0.014463275671005249, 0.011093523353338242, -0.00203688838519156, -0.030402952805161476, -0.0047299559228122234, 0.014080503955483437, 0.025180863216519356, -0.013772920705378056, 0.0017668982036411762, 0.004969187546521425, 0.00855083018541336, -0.012754476629197598, 0.02620614320039749, -0.021913638338446617, 0.010949984192848206, -0.011278074234724045, -0.018892481923103333, -0.007826299406588078, -0.028024304658174515, -0.010122925974428654, -0.012850169092416763, -0.005492080003023148, -0.00971281435340643, -0.017621135339140892, -0.030566997826099396, 0.04071043059229851, 0.017962895333766937, 0.003494494128972292, -0.008646523579955101, 0.006667734123766422, 0.010116090066730976, 0.026588913053274155, 0.010232288390398026, 0.014668331481516361, -0.011011500842869282, -0.0061482591554522514, -0.012132473289966583, -0.002482885029166937, 0.011127699166536331, -0.002605918562039733, 0.005078550893813372, -0.018687427043914795, 0.016759900376200676, -0.016541175544261932, 0.002976727904751897, 0.014764023944735527, 0.005642454605549574, 0.019507650285959244, 0.02434696815907955, 0.014750353991985321, -0.02366345003247261, 0.0027255346067249775, 0.02177693508565426, -0.002503390656784177, -0.0016319031128659844, 0.003960996400564909, 0.0056697954423725605, -0.019603343680500984, 0.018359337002038956, 0.010997830890119076, -0.013895954005420208, 0.006462677847594023, -0.010211783461272717, 0.010027232579886913, -0.020587611943483353, 0.017484432086348534, -0.021845286712050438, 0.013226104900240898, 0.0139369647949934, -0.011387436650693417, -0.005844092927873135, 0.0020693556871265173, -0.003084382275119424, -0.011763372458517551, 0.014668331481516361, -0.01726570539176464, -0.003385131014510989, 0.008461972698569298, 0.008626017719507217, -0.030512316152453423, -0.01841401867568493, 0.017580125480890274, -0.02311663329601288, 0.004637680482119322, 0.015433873049914837, -0.004603504668921232, -0.0017976566450670362, -0.006110665388405323, 0.012822828255593777, 0.017935555428266525, 0.016431812196969986, 0.001171381794847548, 0.011804384179413319, -0.0004553949402179569, -0.03163328766822815, -0.009931540116667747, 0.013793425634503365, -0.00879689771682024, 0.013520018197596073, -0.012768146581947803, 0.003407345386222005, -0.012446892447769642, 0.036800697445869446, 0.0248117633163929, -0.022802215069532394, -0.0008825947297737002, -0.002306878799572587, -0.01707432046532631, 0.005830422509461641, -0.027176739647984505, -0.014640990644693375, 0.0044736359268426895, 0.01700596883893013, 0.007812629453837872, -0.0061790174804627895, -0.01018444262444973, -0.0014516247902065516, 0.006575458683073521, -0.01629510708153248, 0.00020494908676482737, 0.024292288348078728, 0.008837908506393433, -0.007149615325033665, -0.008366280235350132, -0.014846046455204487, -0.004723120480775833, -0.0056766304187476635, -0.0033731693401932716, 0.02278854511678219, 0.023417381569743156, -0.019576001912355423, 0.005201584193855524, 0.008872084319591522, 0.005570685025304556, 0.016855593770742416, 0.013615710660815239, 0.007976674474775791, -0.000601497245952487, -0.0062986332923173904, 0.013813931494951248, -0.005051210056990385, -0.012822828255593777, 0.028571119531989098, -0.0022573235910385847, -0.0005468156887218356, -0.01465466059744358, -0.006124335806816816, 0.020915700122714043, 0.013321797363460064, 0.005379299633204937, 0.0027682543732225895, -0.01667787879705429, 0.020587611943483353, 0.012118803337216377, 0.009521428495645523, 0.0012038489803671837, 0.010628730058670044, 0.005105891730636358, 0.01496907975524664, -0.009213844314217567, -0.0029220464639365673, -0.005772323347628117, 0.009569275192916393, 0.003376587061211467, 0.01677357219159603, 0.006602799519896507, -0.008502984419465065, -0.007853640243411064, -0.01651383377611637, -0.007655419874936342, 0.01488705724477768, 0.023321690037846565, 0.01785353198647499, 0.015392862260341644, -0.00550916837528348, -0.029227299615740776, -0.007928827777504921, -0.012576760724186897, 0.002795595210045576, -0.012590431608259678, -0.002687940839678049, -0.009596615098416805, 0.010560378432273865, 0.02591906487941742, 0.0017583542503416538, 0.017703158780932426, -0.0031458991579711437, 0.014627319760620594, 0.004230986349284649, -0.015133124776184559, -0.014121515676379204, -0.010512531735002995, -0.007047087419778109, -0.013656722381711006, 0.00871487520635128, 0.005133232567459345, 0.0013832728145644069, 0.016718890517950058, 0.004938429221510887, 0.030840406194329262, -0.007956168614327908, -0.020286861807107925, 0.001659243949688971, 0.0035577197559177876, 0.0035337964072823524, -0.018878811970353127, -0.033902574330568314, -0.003036536043509841, 0.021694913506507874, -0.01371140405535698, -0.0014225752092897892, 0.023267008364200592, 0.008509819395840168, -0.0013354264665395021, 0.0239915382117033, 0.0002605918562039733, 0.005440816283226013, -0.019480308517813683, 0.017046978697180748, 0.00202321819961071, -0.0049110883846879005, 0.0024487089831382036, -0.0075323861092329025, 0.012891179881989956, -0.0100545734167099, 0.0038584682624787092, -0.003940490540117025, -0.007293154485523701, -0.0010705626336857677, 0.004661603830754757, 0.029555387794971466, 0.0009834138909354806, 0.009241185151040554, -0.023649778217077255, -0.02474340982735157, 0.012576760724186897, -0.013861778192222118, -0.007142779882997274, 0.0046171750873327255, -0.0032159597612917423, -0.0033236141316592693, 0.00872854609042406, 0.015119453892111778, -0.027573181316256523, -0.023608768358826637, -0.014586308971047401, -0.002182136522606015, -0.015379191376268864, -0.00033022541902028024, -0.011736031621694565, -0.0058201695792376995, 0.004002007190138102, -0.0008172331727109849, -0.016855593770742416, -0.018331997096538544, 0.00038255739491432905, -0.00010861553892027587, 0.012624607421457767, -0.011483130045235157, 0.01200943998992443, -0.007641749456524849, -0.006353314965963364, -0.014340241439640522, -0.0008928474853746593, -0.011216556653380394, -0.015953348949551582, -0.003578225150704384, -0.008434631861746311, 0.008318433538079262, -0.003571389941498637, -0.009371054358780384, 0.025932734832167625, 0.006965064909309149, 0.006848866585642099, -0.010533037595450878, 0.014244548976421356, -0.013116741552948952, -0.01473668310791254, -0.007265813648700714, 0.017224693670868874, -0.0013012505369260907, -0.03163328766822815, -0.004176305141299963, 0.00954876933246851, -0.01224183663725853, -0.000616876466665417, -0.02401887997984886, -0.0007125692209228873, 0.013574699871242046, 0.008530325256288052, -0.0002294062724104151, 0.028707824647426605, -0.0027374960482120514, -0.019999783486127853, 0.017224693670868874, -0.012269177474081516, 0.02617880143225193, -0.011578822508454323, 0.0001224995357915759, 0.004740208387374878, -0.008168059401214123, -0.0019001845503225923, -0.056322015821933746, 0.010949984192848206, -0.0024196594022214413, -0.01660952717065811, -0.026588913053274155, -0.0007510171853937209, -0.011544646695256233, 0.031195836141705513, -0.013526853173971176, 0.0009483834728598595, 0.010867961682379246, -0.005850927904248238, -0.01853705197572708, -0.007183791138231754, 0.011161875911056995, -0.005406640470027924, 0.021202778443694115, 0.012925355695188046, -0.004483888857066631, 0.007156450301408768, -0.005030704662203789, -0.0011269529350101948, -0.022733863443136215, -0.011804384179413319, 0.016759900376200676, 0.01665053889155388, 0.003195454366505146, -1.0059219675895292e-05, 0.013369644060730934, 0.020833678543567657, -0.013561028987169266, -0.005580937955528498, 0.0037115116138011217, -0.012939026579260826, -0.019562331959605217, -0.00029669023933820426, -0.018304655328392982, 0.028188349679112434, 0.012699794955551624, -0.018701096996665, -0.009603451006114483, -0.018236303701996803, -0.015215147286653519, -0.007628079038113356, 0.0034500653855502605, -0.0007997179636731744, -0.016172073781490326, 0.011599328368902206, 0.0006237116758711636, 0.025563634932041168, 0.006746338680386543, -0.0035953132901340723, 0.007518715690821409, -0.0010141722159460187, 0.0011688185622915626, -0.01580297388136387, -0.019370947033166885, -0.01883780024945736, -0.02650689147412777, 0.02425127662718296, -0.021749595180153847, -0.02878984622657299, 0.022474125027656555, 0.001443935208953917, 0.008414126932621002, -0.012166649103164673, 0.01606271043419838, 0.007771618198603392, 0.00265205604955554, 0.015297168865799904, 0.009165998548269272, -0.022897906601428986, 0.011223392561078072, 0.024825433269143105, -0.0033116526901721954, -0.02542692981660366, 0.01660952717065811, -0.0030143214389681816, -0.005307530052959919, 0.002696485025808215, -0.0055262562818825245, 0.0065447003580629826, -0.003366334130987525, -0.026917003095149994, -0.029008572921156883, -0.0050888038240373135, -0.004887165501713753, 0.01153781171888113, -0.011790713295340538, 0.0016438646707683802, 0.013718239031732082, -0.0018813877832144499, -0.0008706331136636436, -0.0020625204779207706, -0.014176197350025177, 0.0005070861079730093, -0.019493980333209038, -0.006958229932934046, 0.01101833675056696, 0.027901271358132362, -0.016759900376200676, 0.0027374960482120514, -0.009042964316904545, 0.013185093179345131, 0.024032549932599068, -0.018988175317645073, 0.008967777714133263, -0.011428448371589184, 0.008263751864433289, -0.013089400716125965, -0.026971684768795967, -0.0011782170040532947, 0.013670392334461212, 0.0179902371019125, -0.011250733397901058, -0.020874690264463425, -0.03313703089952469, -0.03220744431018829, -0.02928198128938675, 0.02611044980585575, -0.00011203313624719158, 0.0024196594022214413, 0.01710166037082672, 0.004514647182077169, -0.0036568299401551485, -0.025549963116645813, -0.011551481671631336, -0.012337529100477695, 0.0033646253868937492, 0.03444938734173775, 0.018496040254831314, 0.010867961682379246, 0.008318433538079262, 0.024784421548247337, 0.005013616289943457, -0.020259521901607513, 0.003238174133002758, 0.028407076373696327, -0.010225453414022923, 0.016855593770742416, -0.017744168639183044, -0.010792775079607964, -0.018906153738498688, 0.0065925465896725655, 0.004138711374253035, -0.00412162346765399, -0.006230281200259924, 0.0011423322139307857, 0.006995823234319687, -0.021271130070090294, 0.030867746099829674, 0.02898123301565647, -0.009439405985176563, 0.005724476650357246, 0.004155799280852079, -0.01961701363325119, -0.013294456526637077, 7.118216308299452e-05, -0.015064772218465805, 0.013369644060730934, 0.007115439511835575, -0.012788652442395687, 0.015119453892111778, -0.009952045977115631, -0.005857763346284628, 0.01343116071075201, -0.001685730298049748, -0.02356775663793087, -0.0011320794001221657, -0.008824238553643227, -0.017060650512576103, -0.011954758316278458, -0.012645113281905651, -0.00215821317397058, 0.004456548020243645, 0.005649289581924677, 0.0033065262250602245, -0.010847456753253937, -0.0008437195210717618, 0.02060128189623356, 0.00045624934136867523, 0.007395682390779257, 0.01413518562912941, 0.0157619621604681, -0.02862580120563507, 0.01719735376536846, -0.0018079094588756561, -0.016035370528697968, 0.00820907112210989, -0.009965715929865837, 0.024374309927225113, -0.0020847348496317863, -0.022638170048594475, 0.000223639071919024, 0.014709342271089554, -0.020997723564505577, -0.003950743470340967, -0.01655484549701214, 0.010895302519202232, 0.008202235214412212, -0.005615113768726587, 0.010348486714065075, -0.02660258300602436, 0.005857763346284628, 0.03775762394070625, 0.0011884697014465928, -0.0036260716151446104, -0.00439844885841012, -0.008379950188100338, 0.015269828028976917, 0.005567267537117004, 0.004600087180733681, 0.005283606704324484, -0.003591895569115877, 0.0026708529330790043, 0.00161396071780473, 0.010526202619075775, -0.008516654372215271, 0.02657524310052395, 0.024729739874601364, 0.011332754977047443, -0.01834566704928875, -0.005857763346284628, -0.014859716407954693, 0.02448367327451706, -0.011209721677005291, -0.012023109942674637, -0.010293805971741676, -0.0029886895790696144, 0.0015302295796573162, -0.00669165700674057, 0.016992297023534775, 0.039835523813962936, 0.03371118754148483, 0.010895302519202232, 0.01971270516514778, -0.023198656737804413, -0.004152381792664528, -0.015884995460510254, 0.022638170048594475, -0.006500271614640951, 0.013540524058043957, -0.0026537650264799595, 0.01555690634995699, 0.0026708529330790043, -0.016431812196969986, -0.013909623958170414, -0.022446785122156143, 0.021831616759300232, -0.03874189406633377, -0.012282847426831722, -0.003526961198076606, 0.023444723337888718, -0.007423023227602243, -0.004706032574176788, -0.007272648625075817, 0.002908376045525074, 0.006271292455494404, -0.0014584599994122982, 0.010245959274470806, -0.013034719042479992, -0.016664208844304085, -0.03496886417269707, -0.017511771991848946, 0.029008572921156883, -0.009405230171978474, -0.007204296998679638, 0.01700596883893013, -0.0049828579649329185, -0.0242239348590374, -0.010526202619075775, 0.009699143469333649, -0.009808506816625595, -0.0004558221553452313, -0.0062200287356972694, -0.010984160006046295, 0.01792188547551632, -0.016459152102470398, -0.025276556611061096, -0.0006711308378726244, -0.011578822508454323, 0.00249655544757843, 0.022938918322324753, 0.011366931721568108, -0.015174135565757751, -0.005721059162169695, -0.008017685264348984, -0.021817946806550026, 0.002482885029166937, 0.018468700349330902, -0.010799610055983067, 0.01413518562912941, 0.007354671135544777, 0.01220766082406044, 0.005700553767383099, 0.009261691011488438, 0.007805794011801481, 0.010143430903553963, 0.005287024192512035, 0.006284962873905897, -0.020232180133461952, -0.022282740101218224, 0.01557057723402977, 0.0058201695792376995, -0.02464771829545498, 0.024921124801039696, -0.007641749456524849, -0.001521685509942472, -0.003000651253387332, 0.024360639974474907, 0.005649289581924677, -0.0016045622760429978, 0.0037491051480174065, 0.003960996400564909, -0.018919823691248894, -0.013923294842243195, 0.02131214179098606, 0.0014815287431702018, 0.012809157371520996, -0.01756645366549492, -0.008434631861746311, -0.014668331481516361, 0.01912487857043743, -0.022269070148468018, -0.01886514201760292, 0.003506455570459366, -0.0008146699401549995, -0.004022513050585985, 0.008660193532705307, -0.019863080233335495, -0.004087447188794613, 0.012597266584634781, -0.003960996400564909, -0.02199566178023815, -0.018728436902165413, 0.0036670828703790903, 0.010464685037732124, 0.01655484549701214, -0.01912487857043743, 0.01707432046532631, 0.01919323019683361, 0.003814039519056678, 0.022774873301386833, 0.01677357219159603, 0.0157619621604681, -0.004183140117675066, -0.0001975798950297758, 0.010498861782252789, -0.0061858524568378925, -0.013950635679066181, 0.00109961221460253, -0.024538354948163033, 0.015133124776184559, 0.006824943237006664, -0.010779104195535183, -0.03852316737174988, 0.005187913775444031, -0.00811337772756815, 0.036445267498493195, 0.019493980333209038, 0.01274764072149992, 0.013041554018855095, 0.003499620594084263, -0.0029835631139576435, 0.027368126437067986, 0.008051861077547073, -0.005693718325346708, 0.005416892934590578, 0.01354735903441906, -0.004436042159795761, -0.015242488123476505, -0.0019770804792642593, -0.007012911140918732, 0.003289438085630536, 0.00939839519560337, -0.011626669205725193, -0.011578822508454323, 0.009118151850998402, -0.001973662991076708, -0.010225453414022923, 0.017470762133598328, -0.0060354783199727535, 0.006749756168574095, -0.0014652952086180449, -0.006302050780504942, 0.006674569100141525, 0.00475729675963521, -0.02173592336475849, -0.020710645243525505, 0.009931540116667747, -0.022610830143094063, 0.016199415549635887, -0.013492677360773087, -0.015365521423518658, -0.014928068965673447, -0.0026503473054617643, -0.0030963439494371414, 0.011783878318965435, 0.019179560244083405, 0.007115439511835575, 0.014668331481516361, 0.020642293617129326, 0.027723556384444237, 0.00788098108023405, 0.004887165501713753, -0.006756591610610485, 0.007012911140918732, 0.0050546275451779366, -0.017115332186222076, -0.014244548976421356, -0.010580883361399174, 0.01710166037082672, 0.015611588023602962, -0.022105025127530098, 0.016595857217907906, -0.020150158554315567, 0.011736031621694565, -0.012788652442395687, -0.006233699154108763, 0.011585657484829426, 0.018701096996665, 0.006599382031708956, 0.013690898194909096, 0.01785353198647499, -0.014873387292027473, -0.0003189046401530504, 0.0004261317662894726, 0.008120212703943253, -0.01155831664800644, 0.021421505138278008, 0.013738744892179966, 0.004418954253196716, -0.0034671532921493053, 0.015625258907675743, -0.01429923065006733, 0.004490723833441734, 0.022378431633114815, 0.016445482149720192, -0.009644461795687675, 0.007505045272409916, 0.003933655563741922, -0.007129109930247068, -0.003456900594756007, -0.030703701078891754, 0.00573814706876874, 0.004589834250509739, 0.001490072812885046, 0.013834437355399132, 0.005396387539803982, 0.011011500842869282, 0.002388901077210903, 0.006011554971337318, -0.028188349679112434, 0.004894000478088856, 0.0216402318328619, 0.007621244061738253, -0.006247369572520256, 0.005228925030678511, -0.002887870417907834, -0.003468862036243081, -0.012904850766062737, 0.02314397506415844, 0.012166649103164673, -0.0051263971254229546, -0.0073820119723677635, 0.01785353198647499, -0.00031463263439945877, -0.008769556879997253, 0.006524194963276386, -0.0011568570043891668, -0.01632244884967804, -0.002405988983809948, 0.0037080938927829266, 0.012815993279218674, -0.015078443102538586, 0.027764568105340004, 0.005946620833128691, 0.011161875911056995, 0.009248020127415657, 0.01220766082406044, -6.2958562921267e-05, 0.015392862260341644, 0.0011636922135949135, 0.004244656767696142, -0.0036807532887905836, -0.00012217913172207773, -0.009207009337842464, -0.004063524305820465, -0.012651948258280754, -0.036773357540369034, -0.006534447427839041, 0.009835847653448582, 0.0005322908982634544, -0.006014972925186157, -0.008817403577268124, -0.018468700349330902, -0.01700596883893013, 0.003171531017869711, -0.00019053109281230718, -0.023102963343262672, 0.004500976763665676, -0.016705220565199852, 0.02751849964261055, 0.01563892886042595, -0.010642400942742825, 0.0028656560461968184, 0.008297928608953953, 0.0012704920955002308, 0.01919323019683361, -0.015502224676311016, 0.01168818585574627, 0.005560432095080614, 0.00539297005161643, -0.02559097483754158, -0.006667734123766422, 0.004442877601832151, -0.008229576051235199, -0.012180319987237453, 0.018167952075600624, 0.003205707063898444, -0.009364218451082706, 0.015064772218465805, -0.013923294842243195, -0.002747748978435993, -0.02147618681192398, -0.017470762133598328, -0.028215689584612846, 0.01850971207022667, 0.0281063262373209, -0.015078443102538586, -0.0013174840714782476, 0.02196832001209259, 0.011619833298027515, 0.02591906487941742, 0.002059102989733219, -0.013048389926552773, 0.017894543707370758, 0.008236411958932877, -0.008133883588016033, -0.013998482376337051, 0.0038926443085074425, 0.007272648625075817, 0.0037661930546164513, -0.0017856949707493186, 0.005447651259601116, 0.023020941764116287, -0.0003443230234552175, -0.020519258454442024, 0.002414533169940114, 0.01658218540251255, -0.012474233284592628, 0.0024692146107554436, 0.00997255090624094, -0.0018591734115034342, -0.001648991135880351, -0.02829771302640438, -0.007798959035426378, 0.0001295483234571293, 0.004227568861097097, -0.0009338586824014783, -0.004938429221510887, 0.03767560049891472, -0.015119453892111778, -0.0005032413173466921, 0.00510930921882391, -0.01160616334527731, -0.014517956413328648, 0.01339698489755392, -0.009131821803748608, 0.004740208387374878, -0.006407996639609337, -0.007921992801129818, 0.01338331401348114, 0.0026298416778445244, 0.00638065580278635, 0.00439844885841012, -0.005997884552925825, -0.017252035439014435, 0.007101769093424082, -0.017716828733682632, 0.022774873301386833, -0.014914398081600666, 0.0019924596417695284, 0.0026537650264799595, 0.006247369572520256, 0.0005532237119041383, 0.009220680221915245, -0.022405773401260376, 0.001753227785229683, 0.005707388743758202, 0.00403960095718503, -0.0041865576058626175, -0.017621135339140892, 0.017087990418076515, -0.002055685268715024, -0.0003998589818365872, 0.0061072479002177715, 0.02516719326376915, 0.002147960476577282, -0.0014482071856036782, -0.015775632113218307, 0.01900184527039528, 0.004183140117675066, -0.004996528383344412, 0.0025922481436282396, 0.034258004277944565, 0.027135729789733887, 0.020259521901607513, 0.0033782958053052425, -0.003391966223716736, -0.004285668022930622, -0.005341705866158009, -0.0038892265874892473, -0.018290985375642776, 0.03439470753073692, -0.011448953300714493, -0.018919823691248894, 0.0034722797572612762, -0.029637411236763, -0.005146902985870838, -0.005782575812190771, -0.006076489575207233, 0.0013550776056945324, 0.002570033771917224, 0.00577915832400322, -0.0010304058669134974, -0.0019343605963513255, 0.011366931721568108, 0.004883747547864914, 0.03986286371946335, 0.000354575808160007, 0.008837908506393433, -0.009343713521957397, -0.0011363513767719269, -0.012768146581947803, 0.007778453174978495, -0.01084062084555626, -0.022310080006718636, 0.011845394968986511, 0.007279484067112207, -0.023444723337888718, 0.02363610826432705, 0.018824130296707153, -0.003026283113285899, -0.00676684407517314, -0.00993837509304285, 0.00370125868357718, -0.007313659880310297, 0.008154389448463917, -0.013437995687127113, 0.021271130070090294, -0.023267008364200592, -0.005102474242448807, 0.009036129340529442, 0.007498210296034813, 0.009001953527331352, 0.004852989222854376, 0.025153521448373795, 0.011975264176726341, 0.007648584432899952, -0.004200228024274111, -0.011312250047922134, 0.007313659880310297, -0.003494494128972292, 0.01069024670869112, 0.004169469699263573, 0.00859867688268423, -0.011339590884745121, -0.005881686229258776, -0.017867203801870346, -0.010635565035045147, 0.008400456048548222, 0.0036944234743714333, -0.018810460343956947, 0.003386839758604765, 0.003824292216449976, 0.004347184672951698, -0.024825433269143105, 0.0019924596417695284, 0.0017455382039770484, 0.010539872571825981, -0.02500314824283123, -0.005850927904248238, 0.005215254612267017, 0.006971900351345539, -0.01080644503235817, -0.007552891969680786, -0.004207063466310501, -0.007949333637952805, -0.01632244884967804, -0.013492677360773087, 0.0027306608390063047, 0.036445267498493195, 0.006920636165887117, -0.0004291221557650715, 0.013130412437021732, 0.02944602631032467, -0.015857655555009842, -0.001140623353421688, 0.025714008137583733, -0.013964305631816387, 0.0057415650226175785, -0.021886298432946205, -0.013745579868555069, -0.024141913279891014, -0.037101443856954575, 0.0014464984415099025, -0.011510470882058144, 0.0046240100637078285, -0.003274058923125267, -0.012706629931926727, 0.0017976566450670362, -0.0100545734167099, -0.006199522875249386, 0.0025666162837296724, -0.00443262467160821, -0.0012525497004389763, 0.0014473528135567904, -0.009794835932552814, -0.018222633749246597, -0.003000651253387332, -0.006975317839533091, 0.005656125023961067, -0.005259683355689049, -0.0007971547893248498, 0.0065207770094275475, -0.018072258681058884, 0.0061140828765928745, 0.007436693646013737, 0.005249430891126394, 0.0122896833345294, -0.0139369647949934, -0.01834566704928875, -0.01710166037082672, -0.017867203801870346, -0.008051861077547073, -0.005557014606893063, 0.005683465860784054, 0.005293859634548426, -0.0036875884979963303, 0.0019018934108316898, -0.024634046480059624, 0.0072316378355026245, 0.012727135792374611, 0.012364869937300682, 0.008892590180039406, -0.001212392933666706, 0.003947325982153416, -0.004596669692546129, -0.010929479263722897, 0.0032672237139195204, 0.020054465159773827, 0.014750353991985321, -0.0023120050318539143, 0.01978105865418911, 0.01792188547551632, 0.011011500842869282, -0.0040361834689974785, 0.004784637596458197, 0.009576110169291496, -0.0312778577208519, -0.005919279996305704, 0.019370947033166885, -0.013123576529324055, 0.002188971498981118, 0.012508409097790718, -0.010779104195535183, -0.0009671802981756628, 0.001391816884279251, -0.023061951622366905, 0.01240588165819645, 0.01423087902367115, -0.00502728670835495, -0.004207063466310501, 0.012084626592695713, -0.03466811403632164, 0.0031971631105989218, 0.014558968134224415, 0.006168764550238848, -0.02509883977472782, -0.008687534369528294, -0.01808592863380909, 0.009042964316904545, -0.010635565035045147, 0.00606281915679574, -0.014121515676379204, 0.023020941764116287, -0.017211023718118668, 0.003062167903408408, 0.001824997365474701, 0.002086443593725562, 0.0005421165260486305, 0.0157619621604681, -0.006066236644983292, -0.008626017719507217, -0.01429923065006733, 0.020587611943483353, -0.006804437842220068, -0.004627428017556667, 0.007129109930247068, -0.02215970680117607, 0.005977379158139229, -0.007771618198603392, -0.0006929180235601962, -0.001731867901980877, 0.007272648625075817, 0.0026349681429564953, -0.01405316311866045, 0.010109255090355873, 0.020970381796360016, 0.011278074234724045, 0.022433113306760788, 0.020642293617129326, -0.03097710944712162, 0.013164588250219822, -0.012590431608259678, 0.01421720813959837, 0.004565910901874304, 0.014039493165910244, 0.004647933412343264, 0.028215689584612846, -0.034586094319820404, 0.010546707548201084, -0.006390908733010292, 0.031004449352622032, -0.012023109942674637, 0.01421720813959837, -0.018222633749246597, -0.014586308971047401, 0.014558968134224415, 0.01142161339521408, -0.025208203122019768, -0.01641814224421978], "f8f00cd2-7871-47b0-a1f5-9b380df20766": [-0.03371657431125641, -0.0033801309764385223, -0.008488088846206665, 0.008259677328169346, -0.025420058518648148, -0.035838596522808075, -0.012768974527716637, 0.011612177826464176, -0.004601398948580027, 0.05811983346939087, 0.015067831613123417, 0.03395235538482666, -0.011847957968711853, 0.0015519129810854793, -0.011405869387090206, -0.009409105405211449, -0.013203694485127926, 0.02185388281941414, 0.02285594865679741, -0.01291633676737547, 0.07150036096572876, -0.02070445381104946, -0.011140616610646248, 0.029546212404966354, -0.00874597392976284, -0.0317419171333313, -0.004026684444397688, -0.005430313758552074, -0.04297095164656639, -0.018788738176226616, 0.009910138323903084, 0.012872127816081047, 0.00888596847653389, 0.002729893196374178, 0.0001994000922422856, -0.05617464333772659, -0.009681726805865765, -0.0013437632005661726, -0.004074577707797289, 0.008863863535225391, -0.002232544356957078, 0.04986752197146416, -0.00741602573543787, 0.00742339389398694, -0.02555268444120884, -0.0017766410019248724, 0.002087023574858904, -0.02704104781150818, 0.011192194186151028, -0.027601025998592377, 0.01679934374988079, 0.025420058518648148, 0.0019009782699868083, 0.00298593589104712, 0.03480705991387367, -0.020380254834890366, 0.014662584289908409, 0.10209284722805023, -0.002136758528649807, -0.05635147914290428, -0.011833221651613712, -0.008952281437814236, 0.010816419497132301, 0.005890822038054466, 0.02275279350578785, -0.009755407460033894, 0.005415577441453934, 0.023253826424479485, -0.03336290642619133, 0.012474249117076397, -0.0074086575768888, 0.014721529558300972, -0.070793017745018, 0.03949319198727608, 7.563849067082629e-05, -0.00312408828176558, 0.011914270929992199, -0.005846613552421331, 0.010860627517104149, -0.007021830417215824, -0.015532024204730988, -0.0019451871048659086, 0.03239031136035919, 0.02198650874197483, 0.03516073152422905, 0.02236965112388134, -0.010573270730674267, -0.04839389771223068, -0.035042840987443924, -0.026127399876713753, 0.014507853426039219, 0.029222015291452408, -0.013387897051870823, 0.010226968675851822, 0.010698528960347176, 0.016224628314375877, -0.006668160203844309, 0.003455654252320528, 0.03990580886602402, -0.01620989292860031, 0.0029012023005634546, 0.017477210611104965, -0.027881015092134476, 0.009865930303931236, 0.004336146172136068, -0.00334513233974576, 0.022001244127750397, 0.03622174263000488, -0.02683473937213421, -0.007323923986405134, 0.02748313546180725, -0.05446523800492287, 0.009851193986833096, -0.0019028203096240759, -0.02396116778254509, -0.005345580168068409, -0.02845572866499424, -0.02085181511938572, -0.0279989056289196, -0.034040775150060654, -0.005555571988224983, -0.038432180881500244, 0.007110248319804668, -0.01557623315602541, -0.01421312801539898, 0.029855674132704735, -0.007530231960117817, 0.019068727269768715, 0.036634355783462524, -0.000173957014339976, 0.004295621532946825, -0.034217607229948044, 0.008547034114599228, -0.025641102343797684, -0.0025438477750867605, 0.01794877089560032, 0.01268792524933815, 0.06979095190763474, -0.017138276249170303, 0.034482862800359726, -0.019717123359441757, -0.04193941131234169, -0.03869743272662163, 0.008679660968482494, 0.036840666085481644, 0.0032788191456347704, -0.03236084058880806, 0.0369880273938179, -0.04276464134454727, 0.042234137654304504, -0.058208249509334564, -0.012540562078356743, -0.005389789119362831, 0.0014312597922980785, 0.01587095856666565, -0.02593582682311535, -0.003136982675641775, 0.03689960762858391, 0.0016108580166473985, 0.03415866568684578, 0.0071655092760920525, -0.047273941338062286, -0.02095497027039528, 0.009571204893290997, 0.03972897306084633, 0.034040775150060654, 0.05732407420873642, 0.019422398880124092, -0.006122918333858252, 0.004457720555365086, 0.010175391100347042, -0.005750827491283417, 0.038874268531799316, 0.013262638822197914, 0.008642819710075855, -0.033215541392564774, 0.02814626693725586, 0.03315659612417221, 0.0465371273458004, -0.025007443502545357, -0.026598960161209106, -0.016033057123422623, -0.010897468775510788, -0.0021809672471135855, -0.014043660834431648, 0.015708860009908676, -0.006951833143830299, 0.03471864387392998, -0.007191297598183155, 0.02914833277463913, -0.023180145770311356, -0.0033709208946675062, 0.006178179290145636, 0.026805266737937927, -0.005433998070657253, -0.043855126947164536, -0.012422672472894192, 0.015561496838927269, 0.0028698877431452274, 0.032861873507499695, 0.009445946663618088, -0.01954028755426407, -0.0048592835664749146, 0.04055420309305191, -0.03869743272662163, 0.02396116778254509, 0.006598162930458784, -0.05095800757408142, 0.005581360775977373, 0.005879770033061504, 0.054406292736530304, -0.023695915937423706, 0.004535085987299681, 0.045652952045202255, -0.0022583326790481806, 0.002440694021061063, -0.026598960161209106, 0.009062803350389004, 0.008068105205893517, -0.017992980778217316, -0.016784606501460075, -0.0034261818509548903, -0.00355696608312428, -0.0214412659406662, -0.05216637998819351, 0.0003877480048686266, -0.0258916188031435, 0.018228759989142418, -0.020527618005871773, -0.023312771692872047, 0.03330396115779877, 0.013446842320263386, 0.04677290841937065, -0.03415866568684578, -0.009092275984585285, 0.015826748684048653, 0.018243497237563133, 0.01019749604165554, -0.03427655249834061, -0.019525552168488503, 0.0037282751873135567, 0.0169024970382452, -0.03613332286477089, -0.001323500880971551, -0.02164757438004017, 0.01353526022285223, -0.006793418433517218, 0.026805266737937927, 0.00536768464371562, 0.009512259624898434, 0.006616583094000816, 0.04099629074335098, -0.012334254570305347, 0.004741393495351076, -0.012842655181884766, 0.03297976404428482, 0.03893321380019188, -0.017536155879497528, -0.009652254171669483, 0.014515222050249577, -0.002263858914375305, 0.006808154750615358, -0.025523211807012558, -0.01056590210646391, 0.033097654581069946, -0.0623638778924942, 0.03681119158864021, -0.021176014095544815, 0.02966410294175148, 0.04718552157282829, 0.014021556824445724, -0.02724735625088215, -0.002072287257760763, 0.04538770020008087, -0.005124536342918873, -0.023916959762573242, -0.0016394095728173852, 0.03489547595381737, 0.02519901469349861, 0.01846454106271267, -0.013586836867034435, -0.007758643943816423, 0.019761333242058754, 0.021794937551021576, 0.03893321380019188, 0.009814352728426456, -0.009622781537473202, 0.009011226706206799, -0.018302442505955696, 0.010241704992949963, -0.00580977275967598, -0.00034376943949609995, 0.0264515969902277, 0.032242950052022934, 0.00023992483329493552, 0.022015981376171112, -0.015089936554431915, -0.04252886399626732, -0.01954028755426407, -0.011538496240973473, 0.010757474228739738, -0.0038572174962610006, 0.013277375139296055, -0.03480705991387367, 0.041850995272397995, -0.01324053481221199, 0.014905733056366444, 0.023135937750339508, -0.038667961955070496, 0.0507517009973526, 0.02275279350578785, -0.036428049206733704, -0.000642869621515274, -0.006480272859334946, -0.01651935465633869, -0.0038719538133591413, -0.03931635618209839, -0.014611007645726204, 0.010116446763277054, -0.041674159467220306, -0.0035035472828894854, 0.0065392181277275085, -0.0830535963177681, 0.020380254834890366, 0.03141772001981735, -0.04913071170449257, 0.038284819573163986, -0.02108759619295597, -0.030209343880414963, -0.010499589145183563, -0.0232685636729002, 0.012857391498982906, -0.048659149557352066, -0.000785627169534564, -0.014006820507347584, -0.04093734547495842, -0.051016952842473984, -0.02786627784371376, 0.01579727604985237, -0.030798794701695442, -0.004656659904867411, 0.0007031961577013135, 0.027674706652760506, -0.007891270332038403, 0.0018457173136994243, -0.0275273434817791, 0.001943345065228641, 0.004608767107129097, -0.004542454145848751, -0.004295621532946825, 0.0008197047864086926, -0.012304781936109066, 0.019613970071077347, 0.007390237413346767, 0.03778378665447235, -0.02357802540063858, -0.01422786433249712, -0.0006387250032275915, 0.011015358380973339, 0.020792871713638306, -0.029619894921779633, -0.03191875293850899, -0.026643168181180954, -0.019127672538161278, -0.0009735145722515881, 0.039817389100790024, 0.018611904233694077, -0.007648122031241655, -0.010013292543590069, 0.010971149429678917, -0.034482862800359726, 0.024255894124507904, 0.010359594598412514, -0.020792871713638306, -0.005198217928409576, -0.024727454409003258, 0.03807850927114487, 0.0002330171992070973, 0.005761879961937666, 0.015082567930221558, 0.011759540066123009, 0.011862694285809994, -0.020763399079442024, 0.024535883218050003, 0.04055420309305191, 0.00536031648516655, 0.0034611804876476526, 0.007626017555594444, -0.02399064041674137, -0.0006364224827848375, -0.053846314549446106, 0.009541732259094715, -0.039463721215724945, 0.014404700137674809, -0.02676105871796608, -0.004332462325692177, -9.08928268472664e-05, -0.012872127816081047, 0.029958827421069145, -0.025316905230283737, -0.00929858349263668, -0.017506683245301247, 0.02185388281941414, 0.018125606700778008, 0.017374057322740555, -0.04134996235370636, 0.007581808604300022, -0.014861524105072021, 0.020630771294236183, -0.001764667802490294, 0.009416474029421806, 0.007474971003830433, 0.042646754533052444, 0.03401130065321922, 0.04011211544275284, 0.03180086240172386, -0.012555298395454884, 0.04376671090722084, -0.028323102742433548, -0.020925497636198997, 0.018862420693039894, 0.03510178625583649, -0.010241704992949963, 0.04689079895615578, -0.007124984636902809, 0.031682971864938736, 0.0046124509535729885, 0.018449803814291954, -0.004137206822633743, -0.018921365961432457, 0.021426530554890633, 0.06118497624993324, -0.01047748513519764, -0.015929903835058212, 0.004855599720031023, -0.0007372737745754421, 0.023813804611563683, 0.0099027706310153, 0.01164901815354824, 0.022811738774180412, 0.002775944070890546, -0.008259677328169346, 0.017521420493721962, 0.010728001594543457, -0.03692908212542534, -0.020277101546525955, -0.03837323561310768, -0.009755407460033894, 0.019098199903964996, 0.005599780939519405, -0.0053087398409843445, 0.020999178290367126, -0.043029896914958954, -0.0030504069291055202, -0.00698499009013176, 0.011096407659351826, -0.007316555827856064, -0.013697358779609203, 0.026304233819246292, -0.02900097146630287, -0.031211411580443382, 0.014117342419922352, 0.0232685636729002, 0.004531401675194502, 0.011980583891272545, -0.02817573957145214, -0.021765464916825294, -0.0023854330647736788, -0.0015104672638699412, 0.0033027655445039272, -0.02424115687608719, 0.01293107308447361, -0.03135877475142479, 0.041055236011743546, -0.018788738176226616, -0.017816144973039627, -0.015237298794090748, 0.0028975182212889194, -0.02260543219745159, -0.009062803350389004, -0.0072760311886668205, -0.01887715607881546, -0.015782540664076805, -0.0066276355646550655, -0.0021478107664734125, -0.0018503223545849323, -0.053816843777894974, -0.027910487726330757, 0.01002802886068821, 0.010654320009052753, 0.06542901694774628, 0.0142794419080019, -0.02306225523352623, 0.02583267353475094, -0.00013274152297526598, -0.02786627784371376, 0.006229756399989128, -0.033097654581069946, -0.015340453013777733, -0.03855007141828537, 0.03872690722346306, -0.005986608099192381, 0.006896572187542915, 0.025110596790909767, -0.02989988401532173, 0.02648106962442398, -0.0061560748144984245, 0.031270354986190796, -0.0032861873041838408, -0.012525825761258602, -0.01178901270031929, 0.0023080676328390837, -0.033068180084228516, 0.013262638822197914, 0.016062529757618904, 0.024123266339302063, -0.008959649130702019, -0.014964678324759007, 0.043442510068416595, 0.007618649397045374, -0.01497204601764679, -0.004542454145848751, -0.01911293715238571, -0.017919298261404037, -0.016298310831189156, 0.003527493681758642, 0.0049955942668020725, -0.016548827290534973, 0.0219128280878067, -0.04034789651632309, -0.016224628314375877, 0.015605705790221691, -0.02683473937213421, 0.026982102543115616, 0.03412919119000435, 0.0139994528144598, -0.000721156015060842, -0.005691882688552141, -0.003280661068856716, 0.0084512485191226, 0.0031867173966020346, 0.0211612768471241, -0.0050508552230894566, -0.013343689031898975, 0.004903492517769337, 0.03695855289697647, 0.009099643677473068, 0.012245836667716503, -0.028131531551480293, 0.03931635618209839, -0.012990018352866173, 0.0017333532450720668, -0.015193089842796326, -0.00612660264596343, 0.007906006649136543, -0.01164901815354824, -0.010308017954230309, -0.015008886344730854, -0.023946432396769524, -0.015207826159894466, 0.007883901707828045, 0.0174624752253294, 0.001056406064890325, 0.026805266737937927, -0.01597411185503006, -0.013947875238955021, -0.025434793904423714, 0.027365244925022125, -0.009792248718440533, 0.02704104781150818, 0.05078117176890373, -0.0008625320624560118, 0.040465787053108215, 0.03734169900417328, 0.012643716298043728, 0.02119074948132038, 0.00768496235832572, -0.0005632016691379249, -0.022443333640694618, -0.019245563074946404, 0.03527861833572388, -0.025523211807012558, 0.0011061409022659063, -0.024904288351535797, -0.008827023208141327, 0.032242950052022934, -0.04014158621430397, -0.016843551769852638, 0.010484852828085423, 0.013343689031898975, -0.005798720754683018, 0.036486994475126266, -0.0004430089902598411, 0.03371657431125641, -0.013410001993179321, 0.024211684241890907, 0.01590043120086193, 0.03094615787267685, 0.019555024802684784, 0.011759540066123009, 0.030238816514611244, 0.014684689231216908, 0.007714434992522001, 0.005721355322748423, -0.02596529945731163, 0.012577402405440807, 0.015649914741516113, 0.021102333441376686, -0.015428869985044003, 0.025714782997965813, -0.022045454010367393, 0.01687302440404892, 0.006793418433517218, 0.001906504388898611, 0.007810221053659916, 0.002628581365570426, 0.004442984238266945, 0.011965847574174404, 0.003754063742235303, 0.02773365192115307, 0.02185388281941414, -0.0338049940764904, 0.03200716897845268, -0.027232619002461433, 0.021323377266526222, 0.02247280441224575, -0.018449803814291954, 0.0013207377633079886, 0.005798720754683018, 0.016607770696282387, -0.006730789318680763, -0.013712095096707344, 0.009622781537473202, -0.017447737976908684, -0.010588007047772408, -0.019333980977535248, -0.02285594865679741, 0.008812286891043186, -0.0031019840389490128, -0.022015981376171112, 0.00713972095400095, 0.0029527791775763035, -0.008517561480402946, 0.025184277445077896, -0.014375227503478527, 0.01877400279045105, -0.017506683245301247, -0.001621910254471004, 0.04052473232150078, 0.013564732857048512, -0.015679387375712395, 0.019068727269768715, 0.0013115276815369725, 0.004708237014710903, 0.024919025599956512, -0.014559431001543999, -0.008922808803617954, 0.020453937351703644, 0.03916899487376213, 0.011059567332267761, 0.015148880891501904, -0.017992980778217316, 0.00943857803940773, 0.005470838863402605, 0.016092002391815186, -0.015443606302142143, 0.019275035709142685, 0.021588629111647606, 0.029443059116601944, -0.005069275386631489, 0.031005103141069412, -0.0059571354649960995, -0.00097904063295573, -0.012997386045753956, -0.005481890868395567, 0.0030504069291055202, 0.006469220854341984, -0.0024314839392900467, 0.00159888481721282, -0.020453937351703644, -0.023622233420610428, -0.03353974223136902, -0.02634844370186329, 0.002002290217205882, -0.029163070023059845, -0.007471286691725254, -0.025036916136741638, 0.05935767665505409, -0.0322134755551815, -0.0003654133470263332, -0.004177731461822987, 0.028205212205648422, -0.02430010214447975, 0.00942384172230959, 0.0025567421689629555, -0.016917232424020767, 0.009932243265211582, -0.023799069225788116, 0.0333334319293499, -0.015325716696679592, -0.019555024802684784, -0.018523486331105232, 0.02309172786772251, -0.0427941158413887, 0.03619226813316345, 0.011074303649365902, -0.017536155879497528, -0.008502825163304806, -0.004461404401808977, 0.008362830616533756, 0.006170811131596565, -0.00669763283804059, -0.009777512401342392, 0.02886834368109703, 0.021942298859357834, -0.0007036566967144608, -0.017123540863394737, 0.01697617769241333, -0.013048963621258736, 0.031211411580443382, -0.007773380260914564, 0.015929903835058212, -0.01117008924484253, -0.03236084058880806, -0.008863863535225391, 0.022826476022601128, -0.011811116710305214, -0.010602743364870548, -0.01393313892185688, 0.0021901775617152452, 0.04830547794699669, -0.003265924984589219, -0.007323923986405134, 0.008893336169421673, 0.002422273624688387, -0.015310980379581451, 0.01620989292860031, 0.00479665445163846, -0.008443879894912243, -0.012555298395454884, 0.017315112054347992, -0.005106116179376841, 0.0381079837679863, -0.03292081877589226, 0.011383765377104282, 0.006638687569648027, 0.02475692704319954, -0.023135937750339508, 0.0036269633565098047, 0.019451871514320374, 0.053404226899147034, -0.02586214616894722, 0.04574136808514595, 0.03521967679262161, 0.0005650437087751925, 0.00726866303011775, 0.03713538870215416, -0.00291225453838706, -0.00769233051687479, 0.05596833676099777, -0.010904836468398571, -0.002591740805655718, -0.018022453412413597, -0.022797003388404846, 0.01367525476962328, 0.018656112253665924, 0.0027188409585505724, 0.006384487263858318, 0.04031842201948166, 0.004185099620372057, 0.03872690722346306, 0.027306299656629562, 0.024904288351535797, 0.033215541392564774, -0.014552062377333641, -0.03893321380019188, 0.019422398880124092, -0.002669106237590313, -0.04571189731359482, 0.0022509645204991102, -0.0026451596058905125, -0.039640553295612335, 0.011825853027403355, -0.045652952045202255, 0.026009509339928627, -0.02928096055984497, 0.03577965497970581, 0.01019749604165554, 0.01676987111568451, 0.009468050673604012, 0.010897468775510788, -0.010993254370987415, 6.993969873292372e-05, 0.02178020030260086, 0.017167748883366585, -0.020542355254292488, 0.019319243729114532, 0.0035661763977259398, -0.015841485932469368, -0.004454036243259907, 0.021352849900722504, -0.02527269534766674, 0.033480796962976456, 0.04712657630443573, -0.009416474029421806, 0.011413238011300564, 0.0030246186070144176, -0.03395235538482666, -0.013542627915740013, -0.01104483101516962, -0.006063973531126976, 0.009711199440062046, -0.011317452415823936, 0.03141772001981735, -0.015841485932469368, 9.951296306098811e-06, -0.010816419497132301, -0.013299480080604553, 0.037872202694416046, -0.003276976989582181, 0.0061560748144984245, -0.00742339389398694, 0.012754238210618496, 0.026304233819246292, -0.0019378189463168383, -0.0016394095728173852, 0.008812286891043186, 0.003289871383458376, 0.008473352529108524, -0.005437681917101145, 0.004726657178252935, -0.009313319809734821, -0.004358250647783279, 0.01735932193696499, -0.021765464916825294, 0.013785776682198048, 0.01032275427132845, 0.008569138124585152, -0.016961442306637764, 0.035042840987443924, -0.028116794303059578, -0.07197192311286926, 0.003422497771680355, -0.008200732059776783, -0.0065723746083676815, 0.011273243464529514, -0.00038521518581546843, 0.00046442262828350067, 0.022458069026470184, 0.054023150354623795, 0.024226421490311623, -0.02236965112388134, -0.009659621864557266, 0.010278545320034027, -0.03890374302864075, 0.02835257537662983, -0.041762575507164, 0.014117342419922352, -0.010204863734543324, 0.0182582326233387, 0.033687103539705276, -0.00935016106814146, -0.0275273434817791, 0.011612177826464176, -0.025641102343797684, -0.014500485733151436, 0.0034390760120004416, 0.007869166322052479, 0.029207278043031693, 0.023430662229657173, 0.014198391698300838, -0.023519080132246017, 0.00013734660751651973, -0.0021220222115516663, -0.03849112614989281, -0.012754238210618496, 0.0011365344980731606, 0.023740123957395554, -0.04329514876008034, -0.008554401807487011, -0.014736265875399113, 0.034070245921611786, -0.0033064496237784624, -0.01604779250919819, -0.04217519238591194, -0.006513429339975119, -0.01149428728967905, -0.012908969074487686, 0.0133657930418849, -0.015502551570534706, 0.00021563301561400294, -0.0017315112054347992, -0.023563288152217865, -0.027954695746302605, -0.03569123521447182, 0.014596271328628063, -0.004929280839860439, -0.024948498234152794, -0.021220222115516663, 0.02015921100974083, -0.005618201103061438, -0.034866005182266235, -0.06035974621772766, -0.01777193695306778, 0.05817877873778343, -0.03342185169458389, 0.0026912104804068804, -0.01651935465633869, -0.0020612352527678013, 0.015148880891501904, 0.011877430602908134, 0.034866005182266235, -0.014824683777987957, -0.014994150027632713, 0.06831733137369156, 0.008244941011071205, 0.021559156477451324, -0.010661688633263111, -0.017919298261404037, -0.012010056525468826, 0.0030080401338636875, 0.0069960420951247215, 0.045829787850379944, -0.014360491186380386, 0.002155178925022483, 0.014434171840548515, -0.008443879894912243, -0.018936101347208023, -0.005433998070657253, 0.022384388372302055, -0.009689094498753548, 0.0025143753737211227, 0.012179523706436157, -0.012076369486749172, -0.011472183279693127, 0.00022726085444446653, -4.466930477065034e-05, 0.003496179124340415, -0.02989988401532173, -0.02568531036376953, -0.011553232558071613, -0.01646040938794613, 0.03849112614989281, -0.016814079135656357, -0.0016615139320492744, -0.01676987111568451, -0.015443606302142143, 0.027468400076031685, -0.014360491186380386, 0.011162721551954746, -0.003661961993202567, 0.036663830280303955, -0.012054265476763248, 0.015340453013777733, 0.022119134664535522, 0.019717123359441757, -0.002017026301473379, -0.00011368798732291907, 0.013756304048001766, -0.0023062254767864943, -0.0044908770360052586, -0.014861524105072021, -0.000992855872027576, 0.011516391299664974, -0.014669952914118767, 0.021117068827152252, -0.02696736715734005, 0.004472456872463226, 0.015738332644104958, -0.018685584887862206, -0.008510193787515163, -0.0053418963216245174, -0.007386553101241589, 0.013417369686067104, -0.014456276781857014, -0.005625569261610508, -0.03129982948303223, -0.005761879961937666, -0.029133597388863564, -0.0023541185073554516, 0.029369378462433815, -0.0125479307025671, -0.031653497368097305, -0.02164757438004017, -0.014529958367347717, 0.014640480279922485, -0.014544694684445858, 0.010418539866805077, -0.024329574778676033, 0.026466332376003265, 0.00493664899840951, -0.00509874802082777, 0.011037463322281837, -0.007036566734313965, 0.012194260023534298, -0.015679387375712395, -0.025537949055433273, -0.02098444290459156, -0.001575859379954636, -0.028529411181807518, -0.01117008924484253, 0.023533815518021584, -0.027232619002461433, 0.04768655449151993, 0.025316905230283737, -0.005761879961937666, -0.0013060015626251698, -0.0035459138453006744, 0.01618042029440403, 0.020321309566497803, -0.028205212205648422, -0.004431931767612696, -0.006531849969178438, 0.0014773106668144464, 0.008090210147202015, 0.009121748618781567, 0.02516954205930233, -0.014574166387319565, -0.008620715700089931, 0.04238149896264076, -0.005481890868395567, -0.02147073857486248, 0.012717396952211857, -0.002145968610420823, -0.02693789452314377, 0.004314041696488857, 0.014515222050249577, 0.01293107308447361, 0.04568242281675339, 0.0004517586494330317, 0.00348328473046422, -0.019717123359441757, 0.002379906829446554, -0.004745077341794968, -0.0028827819041907787, -0.018921365961432457, -0.005176113452762365, -0.07220770418643951, -0.029649367555975914, -0.002521743532270193, -0.010654320009052753, 0.006097130011767149, -0.001750852563418448, 0.018125606700778008, 0.03392288461327553, -0.02565583772957325, 0.026702113449573517, -0.008650188334286213, -0.0037098547909408808, 0.03911004960536957, 0.023356981575489044, -0.010617479681968689, 0.009077539667487144, -0.006178179290145636, 0.004350882489234209, 0.0068855201825499535, -0.009482786990702152, -0.02126443199813366, 0.0139994528144598, 0.018317177891731262, -0.015163617208600044, -0.009615413844585419, 0.044827722012996674, -0.010676424950361252, 0.015119408257305622, -0.018214024603366852, -0.03622174263000488, 0.015089936554431915, 0.011678490787744522, -0.01777193695306778, -0.0069960420951247215, 0.015428869985044003, 0.006454484537243843, 0.015723595395684242, 0.011877430602908134, 0.04650765284895897, 0.011560600250959396, 0.00929858349263668, 0.01030064933001995, 0.00611186632886529, 0.0009090434177778661, -0.006623951252549887, -0.024727454409003258, -0.006892888341099024, -0.01659303531050682, 0.004896124359220266, 0.009821721352636814, 0.002751997672021389, 0.0026451596058905125, -0.015310980379581451, -0.020557090640068054, -0.00035827545798383653, -0.008650188334286213, 0.013299480080604553, -0.00192124058958143, -0.01218689139932394, -0.009490154683589935, 0.04049525782465935, 0.0219128280878067, -0.0038756378926336765, 0.0007013541762717068, -0.0056218854151666164, 0.016342518851161003, 0.006811839062720537, 0.009342792443931103, 0.02306225523352623, 0.01604779250919819, 0.02157389372587204, -0.010845891200006008, 0.0018226918764412403, 0.010131183080375195, 0.007357080467045307, -0.0009864087915048003, 0.03180086240172386, -0.0011678490554913878, 0.0016661190893501043, -0.00554083613678813, -0.018641376867890358, 0.0033046077005565166, 0.035396508872509, 0.006417643744498491, -0.01600358448922634, -0.002004132140427828, -0.0015841486165300012, -0.02085181511938572, -0.017786672338843346, 0.0014257336733862758, 0.028219949454069138, 0.008038632571697235, 0.03681119158864021, 0.014485749416053295, -0.002182809403166175, 0.04140890762209892, 0.004306673537939787, -0.01597411185503006, 0.015038358978927135, 0.009755407460033894, -3.22355808748398e-05, -0.03471864387392998, -0.0011540338164195418, -0.02804311364889145, -0.014448908157646656, -0.0018825579900294542, -0.007172877434641123, 0.019820276647806168, -0.01610673777759075, -0.020689716562628746, -0.006951833143830299, 0.008068105205893517, -0.013542627915740013, -0.012061633169651031, -0.012562666088342667, 0.0010121972300112247, -0.001983869820833206, -0.014036293141543865, -0.025729520246386528, 0.020453937351703644, -0.0007188534364104271, 0.027615761384367943, 0.008325990289449692, -0.04028895124793053, -0.00683762738481164, -0.0005958977271802723, -0.006708684843033552, 0.00466771237552166, 0.011811116710305214, 0.01998237706720829, 0.0003566636878531426, 0.017315112054347992, -0.02689368464052677, 0.018523486331105232, -0.01149428728967905, 0.0026156872045248747, 0.024521145969629288, -0.017270904034376144, 0.019790804013609886, -0.005456102546304464, 0.020350782200694084, 0.000553991470951587, 0.0021054439712315798, -0.0048371790908277035, 0.0005714907892979681, -5.051200423622504e-05, -0.004767181817442179, -0.019820276647806168, 0.007891270332038403, -0.016622507944703102, -0.01604779250919819, 0.019407661631703377, 0.038874268531799316, 0.012422672472894192, 0.0048040226101875305, -0.028411520645022392, -0.017860354855656624, 0.012297413311898708, 0.002604634966701269, -0.006594479084014893, -0.02195703610777855, 0.008944913744926453, 0.018995046615600586, -0.02894202619791031, -0.0006732631591148674, -0.004671396221965551, -0.030238816514611244, -0.010226968675851822, -0.00010073619341710582, -0.014780474826693535, -0.008244941011071205, 0.007272347342222929, -0.004619819112122059, 0.011243770830333233, 0.011486919596791267, 0.0006253703031688929, -0.015355189330875874, -0.015605705790221691, 0.0267315860837698, -0.004144574515521526, -0.008915441110730171, 0.01075010560452938, 0.0007916137692518532, 0.012452144175767899, 0.002182809403166175, -0.0024241157807409763, 0.006244492717087269, 0.002858835505321622, 0.014927837066352367, 0.015738332644104958, 0.027512608096003532, -0.008709132671356201, -0.01324053481221199, -0.0030854055657982826, -0.007430762052536011, 0.008038632571697235, 0.02385801449418068, 0.03675224632024765, -0.008193363435566425, -0.0075891767628490925, -0.03353974223136902, -0.006303437519818544, 0.014102606102824211, 0.01590043120086193, -0.0036822243127971888, -0.002453588182106614, -0.003280661068856716, 0.0019101884681731462, 0.04188046604394913, -0.021765464916825294, -0.013115276582539082, 0.00016129303548950702, 0.007180245593190193, -0.004711920861154795, -0.016475144773721695, -0.012872127816081047, 0.007007094565778971, -0.015517287887632847, 0.018685584887862206, 0.0044356160797178745, 0.0322134755551815, -0.01721195876598358, -0.004840863402932882, -0.010396435856819153, -0.005492942873388529, 0.01669618859887123, 0.00919543020427227, -0.07662858068943024, 0.0012553456472232938, -0.0020980758126825094, -0.02046867273747921, 0.004144574515521526, 0.006922360975295305, -0.004542454145848751, -0.01607726514339447, -0.01839086040854454, 0.02136758528649807, -0.015001518651843071, 0.013925771228969097, -0.015929903835058212, -0.022001244127750397, -0.02247280441224575, -0.014345754869282246, -0.006023448426276445, 0.03336290642619133, -0.0004404762003105134, -0.018729792907834053, -0.012768974527716637, -0.00888596847653389, 0.020380254834890366, -0.0033525004982948303, -0.015561496838927269, -0.0025014812126755714, 0.008163890801370144, -0.00580977275967598, 0.005168745294213295, 0.014994150027632713, -0.008967017754912376, 0.009585941210389137, -0.013579469174146652, 0.0019249246688559651, 0.016475144773721695, 0.024801135063171387, -0.022251760587096214, 0.024565355852246284, 0.006023448426276445, -2.5227220248780213e-05, 0.017418265342712402, -0.000419292802689597, -0.006800786592066288, 0.00681920675560832, -0.008303885348141193, -0.01915714517235756, -0.01559096947312355, 0.007714434992522001, 0.008200732059776783, 0.014441540464758873, -0.02337171696126461, -0.005006646271795034, 0.03135877475142479, -0.016371991485357285, 0.004137206822633743, -0.017315112054347992, 0.0038535334169864655, 0.010462748818099499, 0.016814079135656357, 0.012194260023534298, 0.003238294506445527, 0.047244466841220856, -0.030165135860443115, 0.0005185323534533381, 0.01218689139932394, 0.02108759619295597, -0.005599780939519405, 0.01839086040854454, -0.019230827689170837, 0.0206455085426569, -0.003369078738614917, 0.021102333441376686, -0.019348716363310814, 0.024285366758704185, -0.011111143976449966, -0.013601573184132576, -0.0293546412140131, -0.002825679024681449, -0.00027100913575850427, 0.016725661233067513, 0.005990291945636272, 0.007191297598183155, 0.004792970605194569, 0.0211612768471241, 0.01759510114789009, -0.023312771692872047, -0.003041196847334504, -0.00538610527291894, 0.02288542129099369, 0.015841485932469368, -0.005529783666133881, -0.019628705456852913, -0.02627476118505001, 0.0021220222115516663, -0.00580977275967598, 0.04370776563882828, -0.0022270181216299534, -0.026672640815377235, -0.0169024970382452, -0.010381699539721012, -0.01790456287562847, 0.017329849302768707, 0.008613347075879574, 0.0006460931617766619, 0.03869743272662163, 0.006881835870444775, -0.020999178290367126, 0.002926990855485201, 0.008996490389108658, -0.013940507546067238, -0.008429143577814102, -0.022914893925189972, 0.004999278113245964, 0.009401737712323666, 0.009600677527487278, 0.007007094565778971, -0.01738879270851612, 0.010470116510987282, -0.0003951161343138665, 0.006303437519818544, 0.027748389169573784, 0.014964678324759007, -0.014191024005413055, -0.005883453879505396, 0.01700565032660961, 0.0062039680778980255, -0.005448734387755394, 0.011671122163534164, 0.023636970669031143, 0.0002569636271800846, 0.01815507933497429, -0.02396116778254509, -0.011405869387090206, -0.013756304048001766, 0.003960371483117342, 0.012710029259324074, 0.021618101745843887, -0.017300376668572426, 0.014360491186380386, 0.04591820389032364, -0.022517014294862747, 0.003437234088778496, -0.024255894124507904, -0.009261743165552616, 0.009247006848454475, -0.000991934910416603, -0.007279715500771999, -0.002420431701466441, 0.003219874110072851, -0.01047748513519764, 0.004185099620372057, -0.016814079135656357, -0.01610673777759075, 0.012835287488996983, 0.015620442107319832, -0.023769596591591835, -0.012474249117076397, -0.018479276448488235, -0.0049403333105146885, -0.012518458068370819, -0.01293107308447361, -0.001989395823329687, -0.011472183279693127, -0.012938441708683968, 0.0073312921449542046, 0.008547034114599228, 0.01977606862783432, 0.0012056106934323907, 0.0071876137517392635, -0.02208966203033924, 0.007603913079947233, -0.03958160802721977, 0.008303885348141193, -0.0038166928570717573, 0.003317501861602068, 0.005146640818566084, 0.01805192604660988, -0.018169816583395004, 0.01436785887926817, 0.004398775286972523, 0.013542627915740013, -0.004402459599077702, -0.04061314836144447, 0.0009762776317074895, 0.004428247921168804, -0.002201229799538851, -0.0051392726600170135, -0.004406143445521593, -0.010285913944244385, 0.0017084857681766152, 0.011590072885155678, 0.0064913248643279076, -0.03560281917452812, -0.016033057123422623, -0.027129465714097023, 0.016990914940834045, -0.01597411185503006, -0.008208099752664566, 0.010558534413576126, -0.017108803614974022, 0.00224359636195004, 0.013748936355113983, -0.00783232506364584, 0.0010370647069066763, 0.007596544921398163, -0.006159759126603603, 0.00011650859960354865, 0.06731526553630829, -0.03038617968559265, 0.012120578438043594, -0.028986234217882156, 0.0013584995176643133, -0.025523211807012558, -0.022664377465844154, -0.02206018939614296, -0.009136484935879707, -0.033834464848041534, 0.003652751911431551, -0.02845572866499424, 0.020527618005871773, -0.006826574914157391, 0.028323102742433548, 0.007942846976220608, -0.008112314157187939, -0.02427062951028347, 0.011229034513235092, 0.0037982724606990814, -0.007169193122535944, 0.005150324665009975, -0.003831429174169898, 0.00014621138689108193, -0.023180145770311356, 0.0449456088244915, 0.029295695945620537, -0.012724765576422215, -0.0185382217168808, 0.010823787190020084, -0.02714420109987259, 0.016534090042114258, 0.04338356480002403, -0.036074377596378326, -0.011442710645496845, -0.01164901815354824, 0.01467732060700655, -0.02316541038453579, -0.008657556027173996, 0.0037006447091698647, 0.0018180868355557323, -0.009917506948113441, -0.010676424950361252, -0.01033749058842659, 0.007489706855267286, -0.01977606862783432, 0.014898364432156086, -0.0044135116040706635, 0.006903940346091986, 0.012348990887403488, 0.009394369088113308, 0.0015058621065691113, 0.029723048210144043, -0.009512259624898434, -0.011280611157417297, 0.010985885746777058, -0.017889827489852905, 0.009409105405211449, -0.016814079135656357, 0.015841485932469368, -0.00523874256759882, -0.019142409786581993, -0.009217534214258194, -0.0008252309053204954, 0.018611904233694077, 0.00436561880633235, -0.00033870385959744453, -0.025980036705732346, -0.03554387390613556, -0.003247504588216543, 0.002844099188223481, -0.005585044622421265, 0.012813183479011059, 0.01063221599906683, 0.007994424551725388, -0.0008390461443923414, -0.014662584289908409, -0.0032088218722492456, -0.015723595395684242, 0.006071341689676046, -0.019171882420778275, 0.004870336037129164, 0.007869166322052479, -0.0009735145722515881, -0.019628705456852913, -0.0116342818364501, -0.01557623315602541, -0.018331915140151978, -0.00048629677621647716, -0.006399223580956459, 0.0014874418266117573, -0.01237846352159977, -0.004991909954696894, 0.011560600250959396, -0.0033322381787002087, -0.010094341821968555, -0.001737037324346602, 0.0024020113050937653, 0.008193363435566425, -0.006502377334982157, 0.027232619002461433, -0.0001372314727632329, -0.0026304235216230154, 0.008377566933631897, -0.004446668084710836, 0.004376670811325312, -0.019333980977535248, -0.010057501494884491, 0.008134419098496437, -0.009718567132949829, -0.009541732259094715, 0.053993675857782364, -0.008937545120716095, 0.005706619005650282, -0.0043803551234304905, -0.0018604535143822432, -0.009895402006804943, -0.002311751712113619, 0.024211684241890907, 0.021691782400012016, -0.013446842320263386, -0.002002290217205882, -0.02015921100974083, 0.005706619005650282, 0.008893336169421673, -0.013719463720917702, 0.025567421689629555, 0.022030716761946678, 0.017521420493721962, -0.007117616478353739, 0.01352052390575409, 0.009136484935879707, 0.0047708661295473576, -0.008414408192038536, 0.018891893327236176, -0.008782814256846905, 0.013255271129310131, 0.005389789119362831, 0.02627476118505001, -0.01367525476962328, 0.028603091835975647, -0.005500311031937599, 0.005721355322748423, -0.018376123160123825, -0.006863415706902742, -0.0007754960097372532, 0.01687302440404892, -0.006450800225138664, 0.017197221517562866, -0.017786672338843346, 0.005813456606119871, -0.012960545718669891, -0.008016528561711311, 0.021735992282629013, 0.025302167981863022, -0.010484852828085423, 0.001521519385278225, 0.0019875539001077414, 0.0026304235216230154, 0.005927662830799818, 0.0003875177353620529, -0.01049222145229578, -0.014787842519581318, 0.004977173637598753, 0.023666443303227425, -0.00025581236695870757, -0.003886690130457282, 0.00340960337780416, 0.00020435056649148464, -0.003945635166019201, 0.005161377135664225, -0.029015706852078438, -0.002449904102832079, -0.019613970071077347, -0.036251213401556015, -0.004358250647783279, -0.021632838994264603, -0.011066935956478119, -0.030135663226246834, 0.007316555827856064, -0.007117616478353739, -0.01030064933001995, 0.024919025599956512, 0.0007805615896359086, -0.02113180421292782, -0.012643716298043728, 0.017123540863394737, -0.0006506982608698308, 0.009799616411328316, -0.002109128050506115, 0.00451298151165247, -0.005305055528879166, -0.005065591540187597, -0.02686421200633049, -0.024697981774806976, 0.017683519050478935, -0.008539666421711445, 0.014161551371216774, -0.02709999307990074, 0.019643442705273628, -0.011140616610646248, -0.022561222314834595, 0.00269305263645947, -0.02357802540063858, 0.01536992471665144, 0.025596894323825836, 0.004708237014710903, -0.010109078139066696, -0.00973330345004797, 0.016092002391815186, 0.0011245612986385822, -0.012319518253207207, 0.01064695231616497, -0.007176561281085014, 0.010175391100347042, -0.007206033915281296, -0.017329849302768707, 0.021249694749712944, 0.008672292344272137, -0.005294003523886204, 0.005562940146774054, -0.015620442107319832, -0.022487541660666466, 0.00495138531550765, -0.014640480279922485, -0.0323018953204155, 0.008812286891043186, 0.0206012986600399, -0.0014892838662490249, -0.012783710844814777, -0.027085255831480026, -0.0008330595446750522, 0.0036509097553789616, -0.010138550773262978, -0.002444378100335598, 0.005492942873388529, 0.0046345554292202, -0.01063221599906683, -0.012908969074487686, -0.01049222145229578, -0.0018494013929739594, 0.0008197047864086926, 0.018272969871759415, 0.009011226706206799, 0.007655490189790726, 0.007559704128652811, -0.0074676028452813625, 0.005772931966930628, 0.0012645558454096317, 0.010602743364870548, -0.021146541461348534, 0.00815652310848236, -0.0037098547909408808, -0.006469220854341984, 0.01628357358276844, 0.005529783666133881, 0.009991188533604145, -0.01707933284342289, -0.011663754470646381, -0.0071876137517392635, -0.003194085555151105, 0.023666443303227425, -0.03748906031250954, -0.0076996986754238605, 0.013940507546067238, -0.01436785887926817, -0.003603016957640648, -0.018626639619469643, 0.011730067431926727, -0.011516391299664974, 0.0018834789516404271, 0.011251138523221016, -0.006889204028993845, -0.012805814854800701, -0.008871232159435749, -0.016990914940834045, 0.011818485334515572, 0.01376367174088955, 0.010168023407459259, 0.027424190193414688, 0.00452034967020154, 0.009519627317786217, 0.0030301446095108986, 0.005946083460003138, -0.034659698605537415, 0.022502277046442032, -0.0005272820126265287, -0.0066055310890078545, -0.00521295377984643, -0.02378433384001255, 0.005769248120486736, 0.009379632771015167, -0.011877430602908134, 0.00784706138074398, -0.008687028661370277, -0.009740672074258327, -0.023843277245759964, -0.007088143844157457, -0.013115276582539082, -0.003735643345862627, 0.020969705656170845, -0.0206455085426569, 0.0018669007113203406, 0.0017895352793857455, -0.013527891598641872, -0.01635725423693657, 0.00014805342652834952, 0.011855325661599636, 0.02139705792069435, 0.009320688433945179, -0.016416199505329132, 0.004535085987299681, 0.005305055528879166, 0.017919298261404037, -0.008981754072010517, -0.01030064933001995, 0.0005940556875430048, -0.0012802131241187453, -0.01441943645477295, -0.007375501096248627, 0.009541732259094715, -0.048423368483781815, -0.029678838327527046, 0.007559704128652811, 0.0008648345828987658, -0.007869166322052479, 0.01413944736123085, 0.021220222115516663, 0.014036293141543865, 0.02956094965338707, 0.02357802540063858, 0.022001244127750397, 0.009165957570075989, 0.010661688633263111, -0.01441943645477295, -0.015605705790221691, -0.009357528761029243, 0.003505389206111431, 0.013771040365099907, 0.00904069934040308, -0.010131183080375195, 0.02755681611597538, -0.006800786592066288, -0.015532024204730988, 0.0084512485191226, 0.01656356267631054, 0.021971771493554115, 0.00814178679138422, 0.009792248718440533, 0.0046935006976127625, -0.0125479307025671, -0.019216090440750122, -0.006056605372577906, -0.020542355254292488, -0.009276479482650757, 0.006336594466120005, -0.022708585485816002, 0.011103776283562183, 0.002425957703962922, -0.023563288152217865, -2.8263697458896786e-05, -0.007283399347215891, -0.008112314157187939, -0.008944913744926453, 0.010145919397473335, 0.03159455209970474, 0.012614243663847446, 0.01497204601764679, 0.025876883417367935, 0.01777193695306778, -0.02873571775853634, -0.0014533641515299678, 0.009534363634884357, -0.01974659599363804, -0.00391616253182292, -0.00464929174631834, 0.0275273434817791, -0.02637791633605957, 0.0004268912016414106, -0.0024333258625119925, -0.0016476986929774284, -0.007942846976220608, -0.0076112812384963036, 0.015355189330875874, 0.015178353525698185, -0.0066939485259354115, 0.0052276900969445705, -0.008303885348141193, -0.020630771294236183, 0.0021238643676042557, 0.010521694086492062, -0.013292111456394196, 0.012142683379352093, 0.01808139868080616, -0.02558215707540512, -9.100795432459563e-05, -0.037665896117687225, -0.004822442773729563, 0.011855325661599636, -0.010440643876791, -0.007117616478353739, 0.0026396336033940315, -0.008650188334286213, 0.007202350068837404, 0.0026433176826685667, -0.024226421490311623, -0.009895402006804943, 0.0030338286887854338, 0.0219128280878067, -0.002413063542917371, 0.006417643744498491, -0.01277634222060442, -0.0032290841918438673, 0.0023596445098519325, -0.013019490987062454, 0.004384038969874382, 0.011921638622879982, 0.01268792524933815, 0.006332910154014826, -0.01704986020922661, 0.031093521043658257, 0.014043660834431648, 0.004597715102136135, -0.016018321737647057, 0.0070291985757648945, -0.017550893127918243, -0.010985885746777058, 0.0019249246688559651, 0.02416747622191906, -0.0076112812384963036, -0.0016458566533401608, 0.0009348318562842906, 0.01808139868080616, 0.01119956187903881, 0.01030064933001995, -0.0016578298527747393, -0.00203176261857152, 0.014249969273805618, 0.01222373265773058, 0.026333706453442574, -0.007346028462052345, 0.017329849302768707, -0.0026433176826685667, -0.020247628912329674, -0.01939292624592781, -0.0013060015626251698, 0.00942384172230959, 0.00305961724370718, -0.01646040938794613, -0.004888756200671196, -0.00942384172230959, -0.020940233021974564, -0.01604779250919819, -0.001787693239748478, -0.008348094299435616, 0.006178179290145636, 0.015649914741516113, 0.021765464916825294, -0.0038719538133591413, 0.023135937750339508, 0.015649914741516113, 0.0023099095560610294, 0.012061633169651031, 0.012606875039637089, 0.014301545917987823, -0.01918661780655384, 3.9833968912716955e-05, 0.005548203829675913, -0.002628581365570426, -0.014515222050249577, 0.004181415308266878, -0.014640480279922485, 0.026230553165078163, -0.020910760387778282, -0.005968187469989061, 0.01177427638322115, 0.00933542475104332, -0.01566465012729168, 0.02306225523352623, -0.025921091437339783, -0.0012258731294423342, 0.0018466382753103971, -0.03159455209970474, 0.0017158539267256856, -0.015532024204730988, 0.00017326624947600067, 0.005938715301454067, 0.011531127616763115, -0.0020336047746241093, -0.006170811131596565, 0.00942384172230959, 0.0279989056289196, 0.012975282035768032, -0.0056439898908138275, 0.00843651220202446, 0.000593134667724371, 0.019275035709142685, 0.014964678324759007, 0.017521420493721962, 0.003323027864098549, -0.02001184970140457, 0.00023854330356698483, 0.0025070072151720524, 0.012208996340632439, 0.0012185049708932638, 0.0033985513728111982, 0.012459512799978256, -0.023622233420610428, 0.018552958965301514, 0.011236402206122875, 0.002210439881309867, -0.008031264878809452, -0.007360764779150486, 0.008996490389108658, 0.009939610958099365, -0.017447737976908684, -0.0261716078966856, -0.0026212132070213556, 0.018995046615600586, 0.0139994528144598, -0.008082841522991657, 0.01867084950208664, 0.018022453412413597, -0.012923705391585827, 0.02900097146630287, 0.013527891598641872, 0.0019543971866369247, 0.02724735625088215, -0.006082393694669008, -0.0008197047864086926, -0.003989844117313623, 0.013461578637361526, -0.003348816419020295, 0.0040672095492482185, 0.004991909954696894, 0.016475144773721695, -0.0009596993331797421, 0.02285594865679741, 0.00029449505382217467, 0.0035680183209478855, 0.023430662229657173, 0.010484852828085423, -0.015222562476992607, 0.008642819710075855, 0.004737709648907185, -0.010985885746777058, -0.01610673777759075, 0.015008886344730854, -0.02634844370186329, -0.0065429019741714, 0.02396116778254509, -0.0211612768471241, -0.002958305412903428, 0.006034500896930695, 0.021529683843255043, 0.018420333042740822, 0.025876883417367935, 0.0012028476921841502, 0.02085181511938572, -0.007581808604300022, -0.013284743763506413, -0.008318621665239334, 0.029575685039162636, 0.017550893127918243, 0.006281333044171333, -0.01728563942015171, -0.0025604262482374907, 0.002155178925022483, 0.0061560748144984245, 0.030651433393359184, -0.028824135661125183, 0.013093172572553158, -0.0027741019148379564, 0.006480272859334946, 0.009011226706206799, -0.005835561081767082, 0.010624847374856472, -0.006756577640771866, -0.0012535036075860262, -0.0001295179536100477, 0.0015730963787063956, -0.01651935465633869, 0.0008804918616078794, 0.008370199240744114, -0.014014189131557941, -0.008583874441683292, 0.014802578836679459, -0.01597411185503006, 0.013358425348997116, -0.010963781736791134, -0.0047156051732599735, -0.033215541392564774, -0.0005659647285938263, -0.014065765775740147, 0.006133970804512501, 0.029781993478536606, -0.018611904233694077, -0.002858835505321622, 0.018936101347208023, 0.006277649197727442, -0.009740672074258327, 0.01738879270851612, 0.01528150774538517, 0.007206033915281296, -0.013048963621258736, 0.010993254370987415, -0.0010241704294458032, 0.00016762502491474152, 0.054818909615278244, -0.0035717024002224207, -0.004885071888566017, -0.002674632240086794, -0.0009900928707793355, -0.008547034114599228, 0.019245563074946404, 0.001727827126160264, 0.007913374342024326, -0.001130087417550385, 0.01078694686293602, 0.011921638622879982, 0.016710925847291946, 0.015620442107319832, -0.014905733056366444, -0.00536768464371562, 0.02119074948132038, -0.004122470505535603, 0.013063699938356876, 0.009622781537473202, 0.008657556027173996, 0.018420333042740822, 0.00638817111030221, 0.011730067431926727, -0.011766907759010792, -0.006616583094000816, 0.007021830417215824, 0.010676424950361252, -0.001572175300680101, 0.007404973730444908, 0.006321858149021864, -0.0013631045585498214, -0.004686132539063692, -0.008635452017188072, 0.014588902704417706, 0.003883006051182747, -0.010897468775510788, -0.011295347474515438, 0.0037006447091698647, 0.007047619204968214, 0.008274413645267487, 0.02807258628308773, -0.024226421490311623, 0.013505787588655949, 0.0011742961360141635, 0.033863939344882965, -0.008237572386860847, -0.015414133667945862, -0.00957857258617878, -0.004881388042122126, -0.007898638024926186, -0.007854430004954338, 0.01610673777759075, -0.014640480279922485, 0.007242874708026648, 0.05157693102955818, -0.00392353069037199, 0.014824683777987957, -0.0072539267130196095, 0.00609344569966197, 0.007559704128652811, -0.001961765345185995, 0.02136758528649807, -0.006723421160131693, -0.01928977109491825, 0.005154008977115154, 0.014905733056366444, -0.030297761783003807, 0.006520797498524189, 0.022664377465844154, 0.009202797897160053, 0.0013723147567361593, 0.0018208498368039727, -0.005312423687428236, 0.001378761837258935, -0.01974659599363804, -0.006185547448694706, 0.00726866303011775, 0.0047487616539001465, -0.00451298151165247, -0.0067492094822227955, 0.009526995941996574, -0.002567794406786561, 0.003179349238052964, -0.0041335225105285645, -0.006760261952877045, 0.0005457023507915437, -0.0042219399474561214, 0.022119134664535522, 0.0070844595320522785, 0.005404525436460972, -0.013822617009282112, -0.023946432396769524, 0.00437298696488142, -0.0029380430933088064, 0.003652751911431551, -0.0014441540697589517, -0.0007119458168745041, -0.018096134066581726, -0.0004312660312280059, -0.006763945799320936, -0.004479824565351009, -0.037459585815668106, -0.006465536542236805, 0.004089313559234142, -0.004840863402932882, -0.007824957370758057, 0.0174624752253294, -0.0016412516124546528, 0.0005084011936560273, -0.019555024802684784, -0.007920742966234684, -0.013351056724786758, 0.005448734387755394, -0.0005489258910529315, 0.024079058319330215, -0.012798447161912918, -0.0007750354707241058, -0.007526547648012638, 0.025906356051564217, -0.01324053481221199, 0.015119408257305622, -0.008959649130702019, -0.010050132870674133, -0.008267045021057129, 0.010234336368739605, 0.0012258731294423342, -0.0063255419954657555, -0.006671844515949488, 0.02129390463232994, 0.014640480279922485, 0.021927563473582268, -0.024904288351535797, 0.015023622661828995, 0.003061459166929126, -0.014942573383450508, -0.02686421200633049, 0.007154456805437803, -0.011332188732922077, -0.02900097146630287, 0.0071876137517392635, -0.004741393495351076, -0.02095497027039528, 0.006579742766916752, -0.017550893127918243, 0.002582530491054058, -0.000829375465400517, 0.009762776084244251, -0.010484852828085423, 0.021588629111647606, -0.016578298062086105, -0.01232688594609499, 0.014935205690562725, -0.012179523706436157, 0.020763399079442024, -0.005054539069533348, 0.01856769435107708, -0.004597715102136135, -0.0020557090174406767, 0.011899534612894058, -0.04217519238591194, 0.02824942208826542, 0.011147985234856606, -0.004682448226958513, -0.011229034513235092, 0.0056439898908138275, 0.01033749058842659, 0.010897468775510788, -0.02686421200633049, 0.014787842519581318, 0.0050913798622787, 0.007463918533176184, 0.0047487616539001465, -0.004531401675194502, 0.02547900378704071, -0.03180086240172386, 0.009084908291697502, 0.0009200955973938107, 0.015340453013777733, -0.019230827689170837, -0.004704552702605724, -0.014014189131557941, -0.033068180084228516, -0.002413063542917371, 0.002656211843714118, -0.004122470505535603, -0.0015602021012455225, -1.2512874491221737e-05, 0.018317177891731262, 0.0004690276982728392, -0.020100265741348267, -0.014191024005413055, 0.01618042029440403, -0.018552958965301514, -0.017536155879497528, -0.026775794103741646, 0.006034500896930695, 0.01047748513519764, -0.00030163294286467135, -0.028720982372760773, -0.0014634954277426004, -0.01638672687113285, -0.0021901775617152452, -0.02848520129919052, -0.013771040365099907, 0.012835287488996983, -0.0032825032249093056, 0.00655027013272047, -0.012783710844814777, 0.023975905030965805, 0.015988849103450775, 0.005165060982108116, -0.0015675702597945929, 0.02206018939614296, 0.010293281637132168, 0.008687028661370277, 0.004531401675194502, -0.006922360975295305, -0.042086776345968246, 0.017816144973039627, -0.012371094897389412, 0.0030264605302363634, 0.008952281437814236, 0.009202797897160053, -0.007298135664314032, 0.00025811491650529206, 0.016858287155628204, 0.0035864387173205614, 0.011317452415823936, 0.015060463920235634, 0.0029435690958052874, -0.01610673777759075, 0.0029233067762106657, 0.005618201103061438, 0.004929280839860439, -0.02959042228758335, 0.011265874840319157, -0.011995320208370686, -0.00712130032479763, 0.014979413710534573, -0.02175072766840458, 0.0171824861317873, 0.004177731461822987, -0.03557334467768669, -0.00933542475104332, -0.005470838863402605, 0.0017269061645492911, 0.004708237014710903, -0.01828770525753498, -0.00022438267478719354, -0.0052755833603441715, 0.01890662871301174, 0.00784706138074398, -0.0009440419962629676, -0.009364896453917027, 0.014758369885385036, -0.0022822790779173374, 0.007942846976220608, 4.420879849931225e-05, 0.02323909103870392, 0.0037190651055425406, 0.012628979980945587, 0.006255544722080231, 0.006926044821739197, 0.012231100350618362, -0.009173325262963772, 0.0066055310890078545, -0.008458616212010384, 0.017064595595002174, 0.006911308504641056, -0.00464192358776927, -0.009836457669734955, 0.01651935465633869, 0.022001244127750397, -0.018936101347208023, 0.005146640818566084, -0.011405869387090206, 0.008981754072010517, -0.02583267353475094, 0.0036048591136932373, 0.01590043120086193, 0.007876534014940262, 0.01956976018846035, 0.004682448226958513, 0.0008072710479609668, -0.028470465913414955, -0.013026858679950237, -0.023430662229657173, -0.008561770431697369, 0.029236750677227974, 0.0025530580896884203, 0.012142683379352093, 0.018995046615600586, 0.009917506948113441, 0.014249969273805618, -0.02126443199813366, 0.009254374541342258, 0.011118512600660324, -0.0009256217163056135, 0.012267941609025002, -0.009740672074258327, -0.01294580940157175, 0.006977621931582689, 0.025420058518648148, 0.013712095096707344, -0.008480721153318882, -0.012710029259324074, -0.0171824861317873, 0.014640480279922485, -0.021117068827152252, 0.011000622063875198, -0.009770143777132034, 0.0011402185773476958, 0.015988849103450775, 0.013992084190249443, -0.01421312801539898, -0.014353122562170029, -0.008672292344272137, 0.009836457669734955, 0.0010610111057758331, -0.01538466103374958, -0.010831154882907867, 0.025036916136741638, -0.01846454106271267, -0.001291265245527029, 0.008775446563959122, -0.012511089444160461, -0.03772484138607979, 0.008429143577814102, -0.0002154027606593445, -0.014529958367347717, 0.009703830815851688, 0.005047170910984278, -0.009836457669734955, 0.005577676463872194, -0.02147073857486248, 0.007883901707828045, 0.0050840117037296295, -0.024594826623797417, 0.008915441110730171, -0.0065723746083676815, 0.02139705792069435, 0.000965225393883884, 0.007906006649136543, -0.0338049940764904, -0.009770143777132034, -0.007869166322052479, -0.007202350068837404, 0.0029380430933088064, -0.0006566848605871201, -0.0023596445098519325, -0.010396435856819153, -0.025626366958022118, -0.0014413909520953894, 0.024874815717339516, -0.017889827489852905, -0.0011549547780305147, -0.007839693687856197, 0.012142683379352093, -0.011383765377104282, -0.012091105803847313, 0.010757474228739738, -0.00957857258617878, 0.005080327391624451, 0.008937545120716095, -0.0012046897318214178, 0.0020004480611532927, 0.015237298794090748, -0.013947875238955021, -0.0032567146699875593, -0.002886465983465314, -0.006255544722080231, -0.01895083859562874, -0.006752893794327974, 0.004454036243259907, 0.022870684042572975, 0.011987952515482903, 0.015104671940207481, 0.01338052935898304, 0.008709132671356201, 0.0035219674464315176, -0.014146815054118633, -0.0005484654102474451, -0.00812705047428608, -0.010949045419692993, 0.028028378263115883, 0.005500311031937599, -0.025817938148975372, -0.01939292624592781, 0.014412067830562592, -0.0030522490851581097, -0.00434719817712903, 0.030621960759162903, 0.005887138191610575, -0.006071341689676046, 0.024285366758704185, -0.001544544822536409, 0.00466771237552166, -0.003945635166019201, 0.024079058319330215, 0.014876260422170162, -0.004177731461822987, 1.5268728020600975e-05, 0.011435342021286488, 0.009232270531356335, -0.006601847242563963, -0.02178020030260086, -0.009939610958099365, 0.010013292543590069, -0.0501917228102684, 0.0006387250032275915, 0.02506638877093792, 0.007766012102365494, -0.002578846411779523, 0.006804470904171467, 0.01984974928200245, 0.004126154351979494, 0.012400567531585693, -0.0012074527330696583, -0.004885071888566017, -0.011523759923875332, -0.012960545718669891, -0.00015979638556018472, -0.0039419508539140224, 0.0002599569270387292, -0.0035772284027189016, 0.01856769435107708, 0.0023872749879956245, -0.007743907626718283, -0.01707933284342289, -0.01763930916786194, -0.007346028462052345, 0.004207204096019268, 0.01587095856666565, 0.0009845667518675327, 0.0053308443166315556, 0.008480721153318882, -0.01849401369690895, -0.029104124754667282, 0.007080775685608387, -0.017064595595002174, 0.0012792920460924506, 0.02267911285161972, 0.009519627317786217, -0.0022859631571918726, -0.005076643545180559, -0.021735992282629013, 0.006815522909164429, 0.0028459413442760706, -0.003276976989582181, -0.018405595794320107, 0.009364896453917027, 0.010558534413576126, -0.0028514673467725515, 0.012850023806095123, 0.005640305578708649, -0.013328952714800835, 0.009563836269080639, 0.010904836468398571, -0.006896572187542915, -0.0012120578903704882, -0.01576780341565609, 0.0006631319411098957, 0.003166455077007413, -0.009504891000688076, 0.01987922191619873, -0.030474597588181496, 0.012960545718669891, 0.0042440444231033325, 0.029325168579816818, 0.008163890801370144, 0.0005291240522637963, 0.01497204601764679, -0.005224006250500679, 0.003422497771680355, -0.014080502092838287, 0.012452144175767899, 0.019437134265899658, 0.029163070023059845, -0.033863939344882965, -0.00493664899840951, -0.016416199505329132, 0.03038617968559265, -0.020041322335600853, 0.01669618859887123, 0.006097130011767149, -0.0031222463585436344, 0.012702660635113716, -0.0029804096557199955, -0.006174495443701744, 0.004881388042122126, 0.021514948457479477, 0.011825853027403355, -0.007913374342024326, -0.020763399079442024, 0.017374057322740555, -0.007279715500771999, -0.012061633169651031, -0.017094068229198456, 0.016445672139525414, 0.003459338331595063, 0.0001333171530859545, 0.00974803976714611, 0.018214024603366852, -0.00384248117916286, -0.0017747989622876048, -0.0009375949157401919, 0.004148258827626705, -0.020070793107151985, -0.00769233051687479, 0.005931347142904997, -0.024491673335433006, 0.011847957968711853, 0.014736265875399113, 0.004671396221965551, -0.03796061873435974, 0.01056590210646391, -0.01077221054583788, 0.04226360842585564, 0.029781993478536606, 0.019658178091049194, -0.00919543020427227, 0.004214571788907051, 0.012348990887403488, 0.026024244725704193, 0.004181415308266878, -0.0003923530748579651, 0.002367012668401003, 0.005157692823559046, -0.017992980778217316, -0.005570308305323124, -0.017712991684675217, -0.028293630108237267, 0.024742189794778824, 0.013697358779609203, 0.019348716363310814, 0.0016569088911637664, -0.005839245393872261, 0.009062803350389004, -0.019790804013609886, 0.03834376484155655, 0.004476140718907118, 0.004247728735208511, 0.0003248886205255985, 0.006889204028993845, 0.0015786224976181984, 0.01970238797366619, -0.010764841921627522, -0.012805814854800701, 0.012511089444160461, -0.015546760521829128, 0.019923431798815727, 0.005025066435337067, -0.014596271328628063, -0.012960545718669891, -0.0005595175898633897, 0.008149155415594578, 0.00933542475104332, 0.011273243464529514, -0.00479665445163846, 0.01253319438546896, 0.013292111456394196, 0.037253279238939285, 0.004881388042122126, 0.012702660635113716, -0.003170139156281948, -0.012783710844814777, 0.00283120502717793, 0.00624080840498209, -0.01880347542464733, -0.0009771985933184624, 0.011391133069992065, -0.0007768775103613734, -0.011936374939978123, 0.019628705456852913, -0.013807880692183971, 0.01367525476962328, -0.01618042029440403, 0.0033930251374840736, 0.0028956762980669737, 0.01707933284342289, 0.0014109974727034569, 0.009188061580061913, 0.002238070359453559, -0.009416474029421806, -0.0006787892198190093, 0.0014266547514125705, 0.0012148208916187286, -0.0176982544362545, -0.006800786592066288, -0.0017619048012420535, 0.0015334927011281252, -0.02119074948132038, 0.005986608099192381, -0.011855325661599636, 0.006104498170316219, 0.01780140958726406, 0.01080168318003416, 0.01149428728967905, 0.009762776084244251, -0.00683762738481164, 0.022973839193582535, -0.0059571354649960995, -0.0031038259621709585, 0.013572100549936295, 0.003971423488110304, 0.015605705790221691, 0.025287432596087456, -0.0070770918391644955, 0.015178353525698185, -0.0018319020746275783, 0.0010849576210603118, -0.005312423687428236, 0.00026318049640394747, 0.005655041895806789, -0.020866552367806435, 0.004815074615180492, 0.010109078139066696, -0.008377566933631897, -0.012857391498982906, -0.014028925448656082, 0.021382320672273636, 0.021234959363937378, -0.0026267394423484802, 0.004092997871339321, 0.022517014294862747, -0.00769233051687479, 0.005636621732264757, -0.008090210147202015, -0.001842033234424889, -0.009939610958099365, 0.007194981910288334, -0.009563836269080639, -0.004442984238266945, 0.008384935557842255, -0.015959376469254494, 0.0046935006976127625, 0.017300376668572426, 0.006601847242563963, -0.001558360061608255, 0.006222388241440058, 0.007054987363517284, 0.0020778134930878878, 0.013564732857048512, 0.014913100749254227, 0.003584596561267972, 0.016784606501460075, -0.012658452615141869, 0.0033303960226476192, -0.004498245194554329, -0.002755681751295924, 0.0044908770360052586, 0.011192194186151028, -0.004465088713914156, -0.00828178133815527, -0.00797231961041689, -0.0012673188466578722, -0.003989844117313623, -0.009232270531356335, -0.016504617407917976, 0.0072539267130196095, -0.015546760521829128, 0.03427655249834061, 0.004932965151965618, -0.001479152706451714, -0.0070844595320522785, -0.004240360576659441, 0.004291937220841646, 0.022826476022601128, -0.02735050953924656, 0.010374330915510654, 0.015782540664076805, 0.012142683379352093, -0.0009560152539052069, -0.010308017954230309, 0.007194981910288334, -0.024727454409003258, -0.0059792399406433105, 0.006307121831923723, 0.007080775685608387, -0.00919543020427227, 0.01393313892185688, -0.021485475823283195, -0.021514948457479477, -0.013888930901885033, -0.021809672936797142, -0.013852089643478394, 0.012555298395454884, 0.005942399147897959, -0.010241704992949963, 0.0075339158065617085, 0.008244941011071205, 0.004336146172136068, 0.033834464848041534, -0.005430313758552074, -0.019628705456852913, 0.003477758727967739, -0.0054524182341992855, 0.008569138124585152, -0.01959923282265663, 0.0016974336467683315, 0.012135314755141735, -0.006207651924341917, 0.019216090440750122, -0.00741602573543787, 0.030504070222377777, 0.004420879762619734, -0.009062803350389004, 0.004568242467939854, -0.01631304621696472, -0.0005351106519810855, -0.0037798520643264055, 0.013653149828314781, 0.01232688594609499, -0.010079605504870415, -0.02275279350578785, -0.019510814920067787, -0.005456102546304464, 0.029855674132704735, -0.013188958168029785, -0.0036748561542481184, 0.035868071019649506, 0.008443879894912243, 0.006896572187542915, 0.031830333173274994, -0.0010610111057758331, 0.006981305778026581, 0.010867996141314507, -0.006977621931582689, 0.02534637786448002, -0.011604809202253819, -0.0010343017056584358, 0.02070445381104946, 0.0018595325527712703, 0.003074353327974677, -0.002853309502825141, 0.00552241550758481, -0.011818485334515572, 0.013203694485127926, -0.0026985786389559507, 0.01047748513519764, -0.002367012668401003, -0.0005544520099647343, -0.00028850845410488546, 0.015546760521829128, -0.011685858480632305, -0.007552335970103741, -0.019275035709142685, -0.004288253374397755, 0.003986159805208445, -0.0099027706310153, -0.0005756354075856507, -0.014109974727034569, 0.022178079932928085, -0.0034409179352223873, 0.017727727070450783, -0.004498245194554329, 0.03156508132815361, -0.009932243265211582, -0.01756562851369381, 0.002053867094218731, 0.010403803549706936, -0.0034059195313602686, -0.004442984238266945, -0.008023896254599094, 0.017226694151759148, 0.026392651721835136, 0.016018321737647057, 0.0006258307839743793, -0.0048040226101875305, -0.019687650725245476, 0.009821721352636814, 0.009003858081996441, -0.01805192604660988, 0.007025514729321003, 0.01721195876598358, -0.008930177427828312, 0.010330121964216232, -0.024432728067040443, 0.0045571899972856045, 0.0038019565399736166, -0.00495138531550765, 0.003612227039411664, -0.0007916137692518532, -0.01004276517778635, -0.01618042029440403, -0.008222836069762707, -0.0017683518817648292, 0.012960545718669891, 0.0427941158413887, 0.02758628875017166, 0.004734025336802006, -0.0064618526957929134, 0.002899360377341509, -0.02465377189218998, 0.0020686034113168716, 0.004759813658893108, -0.02599477209150791, -0.0006797102396376431, 0.002263858914375305, -0.011707963421940804, 0.022517014294862747, 0.0011144301388412714, -0.010669056326150894, 0.008274413645267487, 0.00974803976714611, -0.009806985035538673, -0.0017084857681766152, 0.007209718227386475, -0.010411172173917294, 0.016018321737647057, -0.01019749604165554, -0.0059571354649960995, -0.007272347342222929, -0.003267766907811165, 0.0016384884947910905, 0.006487641017884016, -0.0035680183209478855, 0.0052203219383955, 0.020822344347834587, -0.0054524182341992855, -0.032832399010658264, 0.0011660070158541203, 0.011833221651613712, 0.005927662830799818, 0.02070445381104946, 0.010020661167800426, -0.00224359636195004, -0.006159759126603603, -0.023636970669031143, -0.013203694485127926, 0.005437681917101145, -0.007788116578012705, -0.008252308703958988, -0.015929903835058212, 0.0022859631571918726, 0.018523486331105232, -0.014552062377333641, 0.002007816219702363, 0.006406591739505529, 0.008827023208141327, -0.024639036506414413, -0.011545863933861256, -0.0010112762684002519, 0.006631319411098957, -0.003960371483117342, -0.017506683245301247, -4.5763012167299166e-05, -0.013542627915740013, -0.005713987164199352, 0.0062039680778980255, 0.005106116179376841, -0.011597441509366035, -0.003164613153785467, 0.0011927165323868394, 0.005607149098068476, 0.0014644163893535733, 0.004107734188437462, -0.004358250647783279, 0.021234959363937378, -0.01849401369690895, 0.0013833669945597649, -0.012290045619010925, -0.01367525476962328, -0.011567968875169754, -0.03156508132815361, 0.007010778412222862, -0.01579727604985237, -0.00192124058958143, -0.0008229283266700804, -0.020822344347834587, 0.0006387250032275915, -0.002215965883806348, -0.015841485932469368, 0.0059018745087087154, -0.005813456606119871, -0.0005120852147229016, 0.00888596847653389, 0.00800179224461317, 0.001764667802490294, -0.012710029259324074, 0.0032714509870857, 0.011936374939978123, 0.011641649529337883, 0.004977173637598753, 0.005503995344042778, -0.009784880094230175, 0.005573992617428303, 0.005349264480173588, -0.007788116578012705, 0.0148173151537776, 0.0010269335471093655, 0.02519901469349861, -0.0027372613549232483, -0.018656112253665924, -0.00768496235832572, -0.024565355852246284, -0.0084512485191226, 0.014478380791842937, -0.0005641226889565587, 0.0061818636022508144, -0.013314216397702694, 0.023356981575489044, 0.005179797299206257, 0.01646040938794613, -0.0048592835664749146, 0.0026267394423484802, -0.006016080267727375, 0.009468050673604012, 0.006911308504641056, 0.00829651765525341, 0.023224355652928352, 0.006362382788211107, -0.028367310762405396, 0.004420879762619734, 0.015340453013777733, 0.004428247921168804, -0.008318621665239334, -0.011899534612894058, 0.0008703607018105686, -0.019643442705273628, -0.0026580539997667074, 0.020689716562628746, -0.001952555263414979, -0.012245836667716503, 0.007161824963986874, -0.009865930303931236, 0.018317177891731262, -0.0015629652189090848, -0.0285588838160038, -0.0056218854151666164, 0.005887138191610575, -0.0018669007113203406, -0.011921638622879982, 0.002687526401132345, -0.022929629310965538, 0.0021109699737280607, 0.0014911259058862925, 0.013107907958328724, -0.009526995941996574, -0.011140616610646248, -0.008149155415594578, 0.0012829761253669858, 0.01064695231616497, 0.02835257537662983, -0.02136758528649807, 0.008215468376874924, 0.0013934981543570757, 0.007180245593190193, -0.00957857258617878, 0.013247902505099773, 0.004185099620372057, 0.013645782135426998, 0.003136982675641775, -0.004052473232150078, -0.006822891067713499, 0.03156508132815361, -0.010263809002935886, -0.01354999653995037, -0.016961442306637764, -0.01056590210646391, -0.001208373811095953, 0.015635177493095398, 0.008495457470417023, 0.02275279350578785, 0.0015961218159645796, -0.0023172777146101, -0.03241978585720062, -0.006487641017884016, 0.0006041869055479765, 0.0007441813941113651, 0.023283299058675766, 0.0037835361436009407, -0.03239031136035919, 0.014331018552184105, -0.00812705047428608, 0.012651083990931511, -0.00270042079500854, 0.005857665557414293, 0.016961442306637764, 0.00860597938299179, -0.013505787588655949, 0.002140442607924342, -0.004229308106005192, 0.016607770696282387, 0.016917232424020767, 0.0012746870052069426, -0.02724735625088215, -0.001617305213585496, 0.018523486331105232, 0.0050508552230894566, -0.012525825761258602, 0.0037153810262680054], "4850fc27-b132-4064-a67a-3f61df294b5b": [-0.01680353842675686, -0.0011497059604153037, -0.01823011226952076, 0.03219551965594292, -0.01931130513548851, -0.010811927728354931, 0.00837173592299223, 0.029537586495280266, 0.004737726878374815, 0.047422319650650024, 0.01731410250067711, 0.04982496798038483, 0.00016928832337725908, 0.00949047040194273, -0.01699875295162201, 0.01057166326791048, 0.010376447811722755, 0.030288415029644966, 0.00012505984341260046, -0.027570417150855064, 0.047152020037174225, -0.028336262330412865, -0.02028738148510456, 0.025182783603668213, 0.0014378363266587257, -0.032405752688646317, -0.00845432747155428, -0.006145529914647341, -0.05360914394259453, -0.031054260209202766, 0.01020375732332468, 0.015767395496368408, -0.005146928131580353, -0.002840008120983839, -0.0031966515816748142, -0.04099522903561592, 0.008108946494758129, 0.014250721782445908, -0.0068250298500061035, 0.0068287840113043785, -0.00839426089078188, 0.00527081498876214, -0.005259552504867315, -0.005349651910364628, -0.025107700377702713, -0.011284950189292431, 0.0009751383331604302, -0.013650059700012207, -0.00255844765342772, -0.05054576322436333, 0.011712921783328056, 0.02190917171537876, -0.03408760577440262, -0.00809392984956503, 0.03853251039981842, -0.03835231065750122, 0.008942365646362305, 0.08673568814992905, -0.00910754781216383, -0.05994613468647003, -0.00564622925594449, -0.03982393443584442, 0.013537434861063957, -0.00263540749438107, 0.01845536008477211, -0.00127922382671386, -0.0066110435873270035, -0.005747591145336628, 0.0024195443838834763, 0.03609982505440712, -0.02090306021273136, 0.0018817635718733072, -0.07850661128759384, 0.02090306021273136, 0.0016471296548843384, 0.002855024766176939, 0.01899595744907856, -0.013522418215870857, 0.025438064709305763, -0.01806492917239666, 0.004306000657379627, -0.02081296220421791, 0.02213441953063011, 0.01680353842675686, 0.029762836173176765, 0.024386905133724213, -0.01938638836145401, -0.05084609612822533, -0.05357911065220833, -0.02228458598256111, 0.008544426411390305, 0.006111742928624153, 0.00265042413957417, -0.008289145305752754, 0.00199908041395247, 0.014753776602447033, 0.003923078067600727, 0.01650320738554001, 0.005364668555557728, -0.023215612396597862, -0.01018874067813158, 0.01824512891471386, -0.03342687711119652, -0.006258154287934303, 0.010278839617967606, -0.0002632591931615025, -0.0005434119957499206, 0.01782466471195221, -0.013349727727472782, -0.02004711702466011, 0.002342584542930126, -0.06613296270370483, 0.0011055946815758944, -0.0005002393736504018, -0.029057057574391365, -0.027495333924889565, -0.04351801052689552, -0.029687752947211266, -0.004966729320585728, -0.015857495367527008, 0.04279721528291702, -0.007399413269013166, 0.025287898257374763, -0.00919013936072588, 0.0029995592776685953, 0.010353922843933105, 0.011487673968076706, 0.0046513816341757774, 0.03192522004246712, 0.013867799192667007, -0.005657491739839315, -0.024461988359689713, 0.04054472967982292, -0.015737362205982208, 0.01962665282189846, 0.028546493500471115, 0.006858816836029291, 0.049344439059495926, -0.008882299065589905, 0.044088639318943024, -0.03309651464223862, -0.006205596495419741, -0.01807994581758976, 0.006547223310917616, 0.01048907171934843, 0.015264340676367283, -0.029582636430859566, 0.03462820500135422, -0.009625619277358055, 0.01893589086830616, -0.07442210614681244, -0.022389700636267662, -0.00415958883240819, 0.001394663704559207, 0.03138462454080582, -0.022885248064994812, -0.0058264280669391155, 0.04213648661971092, 0.023320728912949562, 0.03823217749595642, 0.03213545307517052, -0.03784174844622612, -0.02267501689493656, 0.0012942403554916382, 0.01734413392841816, 0.03195525333285332, 0.07442210614681244, 0.025257864966988564, -0.027164969593286514, 0.01803489774465561, 0.008927349001169205, -0.014618627727031708, 0.044148705899715424, 0.030078183859586716, -0.012553850188851357, -0.01866559311747551, 0.028516460210084915, 0.014603611081838608, 0.051026295870542526, -0.030753929167985916, -0.024221722036600113, -0.00982083473354578, 0.013522418215870857, 0.00837173592299223, -0.01720898598432541, 0.04390844330191612, -0.011450132355093956, 0.02223953604698181, 0.015069125220179558, 0.005743836984038353, 0.008491868153214455, 0.012711524032056332, 0.008634526282548904, 0.01836526207625866, -0.005942806135863066, -0.03712095320224762, -0.03330674394965172, 0.00877718348056078, -0.0073806424625217915, 0.03994406759738922, -0.0046213483437895775, -0.025347964838147163, -0.013980424031615257, 0.04967480152845383, -0.04453913867473602, 0.02223953604698181, -0.004752743523567915, -0.05273818224668503, 0.01795981451869011, 0.00541722634807229, 0.05451013892889023, -0.01807994581758976, -0.00032754885614849627, 0.0005617134738713503, -0.027525367215275764, 0.0003599283518269658, -0.00524078169837594, 0.029522569850087166, -0.022104386240243912, -0.03925330564379692, -0.012741557322442532, 0.030934127047657967, -0.0023181824944913387, -0.00453500309959054, -0.045710429549217224, 0.001495086937211454, -0.012764082290232182, 0.05138669162988663, -0.03183512017130852, -0.03528893366456032, 0.01959661953151226, -0.01907104067504406, 0.022509833797812462, -0.015031583607196808, 0.00919013936072588, 0.014100556261837482, 0.025317931547760963, -0.02013721689581871, -0.04003416746854782, -0.01871064305305481, 0.006070447154343128, 0.005218257196247578, -0.01842532679438591, 0.005473538767546415, -0.0029638949781656265, 0.03775164857506752, -0.021623855456709862, 0.06457123905420303, 0.025137733668088913, -0.00846934411674738, -0.002663563471287489, 0.023335745558142662, 0.004531248938292265, 0.0066185519099235535, -0.00911505613476038, 0.022089369595050812, 0.02042253129184246, -0.03438793867826462, -0.01012867409735918, -0.004782776348292828, 0.01695370487868786, -0.011645347811281681, 0.005323372781276703, -0.002971403067931533, 0.03495856747031212, -0.030228348448872566, 0.03628002479672432, -0.01062422152608633, 0.023816274479031563, 0.04333781078457832, -0.002271255711093545, -0.010676778852939606, -0.005075599532574415, 0.02211940288543701, 0.00458756135776639, -0.028711676597595215, -0.0013956022448837757, 0.015309389680624008, 0.02178903855383396, 0.00033411860931664705, 0.01093956921249628, 0.03204535320401192, 0.029747819527983665, -0.007331838831305504, 0.030288415029644966, -0.00527081498876214, -0.025227831676602364, -0.0013008101377636194, -0.01632300764322281, -0.0004014585283584893, 0.002487118821591139, -0.001798233832232654, 0.01986691728234291, 0.01603769324719906, 0.01717895269393921, 0.0014387748669832945, 0.00796628836542368, -0.030423564836382866, -0.0034012524411082268, 0.011247408576309681, 0.003757895901799202, -0.0075946287252008915, 0.00418211380019784, -0.028321245685219765, 0.04186618700623512, -0.023515943437814713, 0.0010305119212716818, -0.001114041544497013, -0.03552919626235962, 0.06697388738393784, 0.046220991760492325, 0.0005922158597968519, -0.012396176345646381, -0.012583883479237556, -0.00834921095520258, -0.0003329454339109361, -0.03210541978478432, 0.003953111357986927, -0.01913110539317131, -0.029132138937711716, -0.0073768883012235165, -0.022765114903450012, -0.06637322902679443, 0.01719396933913231, 0.06108739599585533, -0.045650362968444824, 0.04285728186368942, -0.014183147810399532, -0.03558926284313202, -0.01564726233482361, -0.02036246471107006, -0.02046758122742176, -0.03279618173837662, 0.02093309350311756, -0.03874274343252182, -0.03300641477108002, -0.06318971514701843, -0.025468097999691963, -0.005657491739839315, -0.03402753919363022, -0.007444463204592466, 0.04090512916445732, 0.013860290870070457, -0.023200595751404762, -0.007286788895726204, -0.01904100738465786, 0.029717786237597466, -0.0003308337472844869, -0.023380795493721962, -0.014678694307804108, 0.0009263344691134989, 0.007012736517935991, 0.05156689137220383, -0.027390217408537865, 0.03216548636555672, -0.015527130104601383, -0.008642034605145454, 0.0016799784498289227, 0.004294738173484802, 0.00940037053078413, -0.026729488745331764, -0.045019667595624924, -0.025483114644885063, -0.013635043054819107, 0.006284433417022228, 0.01872565969824791, 0.005969085264950991, -0.023951424285769463, -0.01639809086918831, 0.024296805262565613, -0.05991610139608383, 0.01971675269305706, 0.006044168025255203, -0.027495333924889565, -0.015324406325817108, -0.05463027209043503, 0.03976386785507202, 0.005976593587547541, -0.03787178173661232, 0.03309651464223862, 0.0031215688213706017, 0.02069282904267311, -0.012816639617085457, 0.011810529977083206, 0.03979390114545822, 0.012366143055260181, -0.026309024542570114, -0.011833054944872856, -0.03195525333285332, -0.02003210037946701, -0.030483631417155266, 0.004452412016689777, -0.030438581481575966, 0.011690397746860981, -0.026263974606990814, -0.01842532679438591, -0.015812445431947708, -0.030393531545996666, 0.014393378980457783, -0.02031741477549076, 0.00398314418271184, 0.0076096453703939915, -0.01659330725669861, 0.0009488593204878271, 0.006201842334121466, -0.03952360525727272, 0.012441225349903107, -0.022765114903450012, 0.026278991252183914, 0.012771590612828732, 0.00941538717597723, 0.030934127047657967, 0.027855731546878815, 0.03393744304776192, 0.03760148212313652, 0.011502690613269806, -0.01098461914807558, 0.07105839252471924, -0.01934133842587471, -0.027074869722127914, 0.04522990062832832, 0.049494605511426926, 0.005214503034949303, 0.027975864708423615, 0.015031583607196808, 0.00976076815277338, -0.004561282228678465, 0.01940140500664711, -0.005924035795032978, -0.02175900526344776, -0.002939492929726839, 0.05739331990480423, -0.010691795498132706, -0.013409794308245182, 0.01989695057272911, 0.011930662207305431, 0.025453081354498863, 0.01976180262863636, -0.01088701095432043, 0.025903578847646713, -0.008604492992162704, 0.014633644372224808, 0.00914508942514658, 0.00547729292884469, -0.05039559677243233, -0.02109827660024166, -0.029177188873291016, 0.015061616897583008, 0.03204535320401192, 0.00487287575379014, 0.012981821782886982, 0.025347964838147163, -0.05423983931541443, 0.00011719961185008287, 0.01096960250288248, -0.0023238137364387512, -0.004471182823181152, 0.007695990614593029, 0.008491868153214455, -0.03781171515583992, -0.024191688746213913, 0.01820007897913456, 0.049524638801813126, -0.01024880725890398, 0.015857495367527008, -0.02151874080300331, -0.027420250698924065, 0.01097711082547903, -0.005282077472656965, 0.0030446089804172516, -0.00978329312056303, 0.0026767030358314514, -0.02121840976178646, 0.046401191502809525, -0.0055974251590669155, 0.005556129850447178, -0.014138097874820232, -0.02138359099626541, 0.00512440362945199, -0.03375724330544472, -0.01911608874797821, -0.0029413700103759766, 0.00803386326879263, -0.014355838298797607, 0.02091807685792446, 0.0034106378443539143, -0.031234459951519966, -0.01692367158830166, 0.014063014648854733, -0.011007143184542656, 0.05643225833773613, 0.02115834318101406, -0.023696143180131912, 0.007658449001610279, -0.015309389680624008, -0.026924705132842064, -0.023515943437814713, -0.04532000049948692, -0.02096312679350376, -0.030573729425668716, 0.03285624831914902, -0.0035101224202662706, 0.011953187175095081, 0.004377329256385565, -0.00243643787689507, 0.03474833443760872, -0.0007944702520035207, 0.04150579124689102, -0.004970483481884003, -0.03585956245660782, -0.03396747261285782, 0.025768429040908813, -0.013912849128246307, -0.006464632228016853, 0.02195422165095806, 0.01647317409515381, -0.023050429299473763, 0.006374532822519541, 0.03564932942390442, 0.0015589073300361633, -0.01744925044476986, 0.0023294449783861637, -0.008964890614151955, -0.013920357450842857, -0.03318661451339722, -0.0075608412735164165, -0.001995326252654195, -0.02042253129184246, 0.025948626920580864, -0.00801133830100298, -0.01814001239836216, 0.0003613361332099885, -0.02057269588112831, 0.04177609086036682, 0.024221722036600113, -4.009306212537922e-05, -0.0004228102043271065, 0.0006241260562092066, 0.0033806045539677143, 0.006520944181829691, -0.02049761451780796, 0.03183512017130852, -0.0021661396604031324, 0.004459920339286327, -0.0025377997662872076, 0.04147575795650482, -0.01049658004194498, 0.01022628229111433, -0.00879220012575388, 0.031084293499588966, -0.02139860764145851, -0.005755099467933178, -0.01886080764234066, -0.01058667991310358, -0.0005786070832982659, -0.025032617151737213, -0.007196689490228891, -0.012028270401060581, -0.023110495880246162, 0.0024007735773921013, -0.0011853702599182725, 0.003893045010045171, 9.508537186775357e-05, 0.027930814772844315, 0.0065997811034321785, -0.0007433200371451676, -0.028020914644002914, 0.006160546559840441, -0.01726905256509781, 0.03844241052865982, 0.04075496271252632, -0.00846934411674738, 0.047182053327560425, 0.013732650317251682, -0.0021849104668945074, 0.04357807710766792, 0.012246009893715382, 0.002462717005982995, -0.01995701715350151, -0.00944542046636343, 0.027074869722127914, -0.01572234556078911, 0.01023379061371088, -0.01803489774465561, -0.002663563471287489, 0.04303748160600662, -0.03450807183980942, -0.03441797196865082, -0.006971441209316254, 0.03447803854942322, -0.00977578479796648, 0.048083048313856125, 0.0017775860615074635, 0.022074352949857712, -0.025738395750522614, 0.01678852178156376, 0.028696659952402115, 0.023876341059803963, 2.280347871419508e-06, -0.0036846899893134832, 0.028005897998809814, 0.02148870751261711, -0.006021643523126841, -0.015234307385981083, -0.03393744304776192, 0.03615989163517952, 0.003577697090804577, 0.009317779913544655, -0.02163887210190296, 0.01798984780907631, 0.024446971714496613, 0.004200884606689215, 0.01777961477637291, 0.004673906601965427, 0.027960848063230515, -0.0006391426431946456, 0.025107700377702713, 0.03745131939649582, -0.0017193969106301665, 0.02052764780819416, 0.008229078724980354, -0.047091953456401825, 0.05685272067785263, -0.01740420050919056, 0.02019728161394596, 0.0020891798194497824, -0.016202876344323158, 0.003001436358317733, 0.003481966443359852, -0.00844681914895773, -0.0048390887677669525, -0.01800486445426941, -0.007241739425808191, -0.029807886108756065, -0.004981745965778828, -0.014956500381231308, -0.009250205010175705, 0.00976076815277338, -0.011765480041503906, -0.022900264710187912, -0.0056387209333479404, 0.01800486445426941, 0.005706295371055603, 0.04228665307164192, -0.013229595497250557, 0.012794114649295807, -0.025813478976488113, 0.007065294776111841, 0.03405757248401642, 0.01944645494222641, 0.0037860518787056208, 0.027179986238479614, 0.011990728788077831, 0.01922120526432991, 0.01680353842675686, -0.0008245033677667379, -0.0017278437735512853, -0.004444903694093227, 0.024086574092507362, 0.007042769808322191, 0.01970173604786396, 0.0055861626751720905, 0.00504932040348649, 0.000495546730235219, 0.014791318215429783, -0.02100817672908306, 0.026639388874173164, 0.02051263116300106, 0.022554883733391762, 0.024371888488531113, 0.02189415507018566, -0.008244095370173454, 0.000860636995639652, -0.01680353842675686, 0.011254916898906231, 0.004786530509591103, 0.030844029039144516, 0.006761209107935429, 0.00109527085442096, 0.0018451606156304479, -0.03994406759738922, -0.03943350538611412, -0.01955156959593296, 0.0040582274086773396, -0.00906249787658453, -0.012673982419073582, -0.009272729977965355, 0.043968506157398224, -0.044028572738170624, 0.011187341995537281, -0.00808642152696848, 0.02147369086742401, -0.01985190063714981, 0.00795127172023058, 0.0005063398857600987, -0.01941642165184021, 0.00989591795951128, -0.04522990062832832, 0.026954738423228264, -0.015467063523828983, -0.01010614912956953, -0.022825181484222412, 0.03399750590324402, -0.04114539176225662, 0.028876857832074165, -0.006404565647244453, -0.026399124413728714, -0.012276043184101582, 0.01018123235553503, -0.005882740020751953, -0.004354804288595915, -0.014498495496809483, 0.00034890056122094393, 0.01657829061150551, 0.01853044331073761, 0.013867799192667007, -0.015812445431947708, 0.02049761451780796, -0.027930814772844315, 0.03697078675031662, -0.0066373227164149284, -0.00023076239449437708, -0.015324406325817108, -0.01950651966035366, -0.007680973969399929, 0.01908605732023716, -0.006160546559840441, -0.0040507190860807896, -0.0007198567036539316, -0.0017381676007062197, 0.04024440050125122, -0.02211940288543701, 0.0008169951033778489, 0.011119768023490906, -0.006021643523126841, -0.026309024542570114, -0.0006898235296830535, 0.02258491702377796, 0.0033524485770612955, -0.0022224518470466137, 0.009978508576750755, -0.013657568022608757, 0.029267288744449615, -0.0048541054129600525, 0.012989330105483532, -0.002079794416204095, 0.030153267085552216, -0.010031066834926605, -0.01833522878587246, 0.026278991252183914, 0.04177609086036682, -0.03273611515760422, 0.05541113018989563, 0.028291212394833565, -0.015286864712834358, 0.0001780870952643454, 0.027645500376820564, -0.0035401557106524706, -0.012884214520454407, 0.05739331990480423, -0.01895090751349926, 0.0017588153714314103, -0.007099082227796316, -0.0026335304137319326, 0.01638307422399521, 0.010293856263160706, 0.025828495621681213, 0.0023538467939943075, 0.03916320577263832, 0.012200960889458656, 0.03934340551495552, 0.00986588466912508, 0.004523740615695715, 0.04159589111804962, -0.03483843430876732, -0.06403063982725143, 0.004414870869368315, 0.005875231698155403, -0.01087950263172388, -0.02043754793703556, -0.022359667345881462, -0.04985500127077103, -0.001260453136637807, -0.03655032441020012, 0.023681126534938812, -0.030408548191189766, 0.03612985834479332, -0.0007672526990063488, 0.010766878724098206, 0.02226956933736801, 0.01753935031592846, 0.010684287175536156, -0.013980424031615257, 0.044088639318943024, 0.013229595497250557, -0.04087509587407112, -0.005342143587768078, -0.0046363649889826775, -0.012276043184101582, 0.0036884441506117582, 0.014731252565979958, -0.03201531991362572, 0.05279824882745743, 0.04525993391871452, 0.005026795901358128, 0.013957899063825607, 0.013957899063825607, -0.024837400764226913, 0.0013552451273426414, -0.008927349001169205, -0.0022186976857483387, -0.01941642165184021, -0.005150682292878628, 0.04465927183628082, 0.00802635494619608, -0.014693710952997208, -0.0009577753953635693, -0.0036884441506117582, 0.024341855198144913, 0.010016050189733505, 0.014393378980457783, 0.00875465851277113, 0.014198164455592632, 0.00914508942514658, 0.023095479235053062, -0.012501291930675507, 0.007527054287493229, 0.0025490622501820326, -0.0008404584950767457, -0.023606043308973312, 0.000687946449033916, -0.02081296220421791, -0.02109827660024166, 0.03216548636555672, 0.00032989520695991814, 0.023696143180131912, -0.01656327396631241, 0.00494045065715909, -0.022930298000574112, 0.04249688610434532, -0.005909019149839878, -0.046461258083581924, -0.011495182290673256, -0.006487156730145216, -0.01774958148598671, -0.0034763352014124393, 0.014475970529019833, 0.022765114903450012, 0.03384734317660332, 0.05435997247695923, 0.04438897222280502, 0.010774387046694756, -0.0014059260720387101, -0.011412590742111206, -0.03480840101838112, 0.02072286233305931, -0.004031948279589415, -0.005556129850447178, -0.01049658004194498, 0.02226956933736801, 0.0068325381726026535, 0.01726905256509781, -0.01753935031592846, -0.001302687218412757, -0.01997203379869461, -0.029642703011631966, 0.0023876342456787825, 0.004591315519064665, 0.031534790992736816, 0.003630255116149783, 0.01683357171714306, -0.013477369211614132, 0.00034491176484152675, 0.012974313460290432, -0.01917615532875061, -0.030048150569200516, 0.00451998645439744, 0.0018245128449052572, -0.03901303932070732, 0.006671109702438116, 0.004504970274865627, 0.01826014555990696, 0.0005706295487470925, -0.00421965541318059, -0.01719396933913231, 0.0029413700103759766, -0.004516232293099165, -0.01941642165184021, 0.02081296220421791, -0.015249324031174183, -0.007403167430311441, -0.0015495220432057977, -0.013229595497250557, -0.029973067343235016, -0.004223409574478865, -0.01866559311747551, -0.014866401441395283, -0.02051263116300106, -0.0038555036298930645, 0.01914612203836441, -0.0013852783013135195, -0.044208772480487823, -0.030663829296827316, -0.01955156959593296, 0.03378727659583092, -0.05264808237552643, 0.01889084093272686, 0.011765480041503906, -0.004088260233402252, 0.012643949128687382, 0.014933975413441658, 0.024477003142237663, -0.009355321526527405, -0.012704015709459782, 0.05147679150104523, 0.028681643307209015, 0.023951424285769463, -0.007748548407107592, -0.013267137110233307, -0.008506884798407555, -0.010421497747302055, 0.0036978295538574457, 0.03925330564379692, -0.002002834575250745, -0.0013993562897667289, -0.004321017302572727, -0.011675381101667881, -0.01950651966035366, -0.03396747261285782, 0.025122717022895813, -0.003082150360569358, 0.00798881333321333, 0.023681126534938812, -0.011848071590065956, 0.024071557447314262, -0.00907751452177763, -0.031684957444667816, -0.01024129893630743, -0.014363346621394157, -0.01767450012266636, -0.00832668598741293, 0.0009258651989512146, 0.026188893243670464, -0.01087199430912733, -0.010444022715091705, -0.013026871718466282, -0.01725403591990471, 0.01988193392753601, -0.0016264818841591477, 0.02220950275659561, -0.0015354439383372664, 0.03336681053042412, 0.003630255116149783, 0.01045903842896223, 0.01716393604874611, 0.005499817430973053, 0.0019502766663208604, 0.0015354439383372664, 0.012050795368850231, -0.002117336029186845, 0.0005870538880117238, -0.011037176474928856, 0.006156792398542166, 0.011818038299679756, -0.010646745562553406, -5.26459734828677e-05, -0.007669711485505104, -0.005334635265171528, -0.011502690613269806, -0.0011497059604153037, -0.010383956134319305, -0.00838675256818533, 0.006077955476939678, 0.023696143180131912, -0.03399750590324402, -0.0033768503926694393, -0.028561510145664215, -0.014265738427639008, -0.031684957444667816, 0.005578654818236828, 0.012779098004102707, -0.022930298000574112, -0.03799191489815712, -0.006866325158625841, -0.011998237110674381, -0.004354804288595915, 0.0030333464965224266, 0.024792352691292763, -0.027960848063230515, -0.005541113205254078, 0.002136106602847576, -0.008874790742993355, 0.0007470741984434426, -0.027600450441241264, -0.0036096072290092707, -0.013815241865813732, -0.027450283989310265, -0.026158859953284264, 0.012178435921669006, -0.01859050989151001, -0.013792716898024082, 0.01680353842675686, -0.029792869463562965, 0.05526096746325493, 0.03621995821595192, 0.02166890539228916, -0.006442107260227203, -0.03483843430876732, 0.014265738427639008, 0.014250721782445908, -0.011480165645480156, -0.04222658649086952, -0.01021126564592123, -0.00976827647536993, 0.002954509574919939, 0.006941407918930054, 0.01732911728322506, 0.004362312611192465, -0.00022958923364058137, 0.04027443379163742, -0.001605834113433957, -0.027765631675720215, -0.0025640788953751326, -0.013214578852057457, -0.022960331290960312, -0.01807994581758976, -0.00033177228760905564, 0.01729908585548401, 0.045109767466783524, -0.009332796558737755, -0.003369342302903533, -0.01737416721880436, -0.00436606677249074, 0.030904095619916916, 0.008874790742993355, -0.022930298000574112, 0.00438108341768384, -0.06859567761421204, -0.029267288744449615, -0.0005232334951870143, 0.006077955476939678, 0.02081296220421791, 0.00845432747155428, 0.015572180040180683, 0.02036246471107006, -0.01950651966035366, 0.01851542666554451, 0.014160622842609882, -0.02211940288543701, 0.027765631675720215, 0.014776301570236683, 0.001664023264311254, 0.01644314080476761, -0.02078292891383171, 0.001908981124870479, 0.01675848849117756, -0.015159224160015583, -0.02153375744819641, 0.0011393820168450475, 0.028441376984119415, -0.01973176933825016, -0.0008728379616513848, 0.04153582453727722, -0.011224883608520031, 0.01934133842587471, -0.0037785435561090708, -0.03781171515583992, 0.02259993366897106, 0.01827516220510006, -0.011277441866695881, -0.014205671846866608, -0.0007179796230047941, 0.009693194180727005, 0.014040489681065083, 0.007853664457798004, 0.030318448320031166, -0.0028531476855278015, 0.0078011066652834415, 0.029657719656825066, 0.01090953592211008, -0.0048278262838721275, 0.003481966443359852, -0.027014803141355515, 0.01925123855471611, -0.01866559311747551, 0.0008681452600285411, 0.0037841747980564833, -0.0012613916769623756, 0.010338906198740005, -0.007711007259786129, -0.01908605732023716, -0.01018123235553503, -0.0031328313052654266, 0.004317263141274452, -0.011720430105924606, 0.008536918088793755, -0.0009638759074732661, 0.04273714870214462, 0.03135459125041962, 0.0008629833464510739, 0.0068062590435147285, -0.011247408576309681, 0.01783968135714531, 0.00013878592289984226, 0.02177402190864086, 0.023425843566656113, 0.013935374096035957, 0.014400887303054333, -0.023155545815825462, 0.00504932040348649, 0.025783445686101913, -0.006956424564123154, -0.003527016146108508, 0.011044684797525406, 0.0012200960190966725, -0.0029207223560661077, -0.0058451988734304905, -0.03874274343252182, -0.0016799784498289227, 0.010083625093102455, -0.0021642628125846386, -0.014543545432388783, -0.01958160288631916, 0.007264264393597841, 0.0007578673539683223, -0.000906625238712877, 0.008559443056583405, 0.043968506157398224, 0.023395812138915062, 0.03760148212313652, 0.006404565647244453, -0.005075599532574415, 0.05279824882745743, -0.005360914394259453, -0.01780964806675911, 0.011375049129128456, 0.01690865494310856, -0.004287229850888252, -0.030874062329530716, -0.00975325983017683, -0.01940140500664711, -0.006933899596333504, 0.01129245851188898, 0.01133000012487173, 0.027450283989310265, -0.012283551506698132, -0.007489512674510479, -0.00878469180315733, 0.00796628836542368, -0.03709091991186142, -0.00220555835403502, -0.023365778848528862, 0.01744925044476986, -0.023410826921463013, -0.011810529977083206, -0.02069282904267311, 0.00032356008887290955, -0.0007555210031569004, 0.026504240930080414, -0.014581086114048958, -0.028141045942902565, -0.02081296220421791, -0.0005912773194722831, -0.02049761451780796, -0.008642034605145454, -0.01057917159050703, 0.01129996683448553, -0.006847554352134466, -0.006689880508929491, -0.02049761451780796, 0.00492543401196599, -0.0022994119208306074, 0.0002815606421791017, 0.02024233154952526, -0.014641152694821358, 0.029462505131959915, -0.030813995748758316, 0.030108217149972916, 0.011690397746860981, 0.005683770403265953, -0.0038329786621034145, -0.01836526207625866, 0.009648144245147705, -0.01720898598432541, -0.01094707753509283, 0.0025340456049889326, -0.0026992280036211014, -0.00985086802393198, -0.00832668598741293, 0.01869562640786171, 0.02028738148510456, -0.003446302143856883, -0.01827516220510006, -0.01973176933825016, -1.4613289749831893e-05, -0.0024570857640355825, -0.012801622971892357, -0.024687236174941063, 0.00831166934221983, -0.00037236392381601036, -0.01940140500664711, -0.002128598280251026, -0.001779463142156601, -0.005732574500143528, -0.010316381230950356, -0.002509643789380789, -0.008844757452607155, 0.005222011357545853, 0.023320728912949562, 0.0056124418042600155, 0.002036621794104576, 0.003170372685417533, -0.012028270401060581, -0.005736328661441803, -0.00948296207934618, 0.02213441953063011, -0.0021417378447949886, 0.006562239956110716, 0.022449767217040062, -0.00944542046636343, 0.0073919049464166164, 0.00846934411674738, -0.011082226410508156, 0.003665919415652752, -0.005289585795253515, 0.011187341995537281, 0.014648661017417908, 0.011172325350344181, -0.013379761017858982, -0.014288263395428658, 0.01013618241995573, -0.00475649768486619, 0.0018038650741800666, 0.04522990062832832, 0.02114332653582096, -0.0030333464965224266, -0.00282686878927052, -0.01853044331073761, -0.003326169680804014, 0.01627795770764351, 0.027405234053730965, 0.002659809309989214, -0.0006541591719724238, -0.03252588212490082, 0.01824512891471386, 0.02076791226863861, -0.024912483990192413, -0.0036358863580971956, 0.003585205413401127, 0.004294738173484802, -0.022044319659471512, -0.00904748123139143, -0.013762683607637882, 0.024642186239361763, -0.01082694437354803, 0.028891874477267265, 0.006993966177105904, 0.024431955069303513, -0.01704380288720131, -0.0008958320831879973, 0.009610602632164955, 0.006520944181829691, 0.0025884807109832764, 0.0007137561915442348, -0.045380063354969025, 0.011833054944872856, -0.00424218038097024, -0.01962665282189846, 0.023756209760904312, 0.00844681914895773, -0.011990728788077831, -0.0035176307428628206, -0.009925950318574905, 0.030633796006441116, -0.008566951379179955, 0.031534790992736816, 0.00987339299172163, -0.012854181230068207, -0.01839529536664486, -0.007470741868019104, -0.0015363824786618352, 0.024461988359689713, 0.012283551506698132, -0.006336991209536791, -0.026894671842455864, -0.0075833662413060665, 0.004486199468374252, 0.0031910205725580454, -0.002958263736218214, 0.0011844317195937037, 0.003322415519505739, -0.00016330515791196376, 0.0026917196810245514, 0.011254916898906231, -0.00476400600746274, 0.013672583736479282, -0.006014135200530291, -0.0046063316985964775, 0.013852782547473907, 0.01980685256421566, -0.030273398384451866, 0.026654405519366264, 0.005041812546551228, 0.00907000619918108, 0.01678852178156376, 0.011780496686697006, -0.010429006069898605, -0.007331838831305504, 0.004193376284092665, -0.01675848849117756, 0.0017466144636273384, 0.004914171528071165, 0.012568866834044456, 0.007125360891222954, -0.01648819074034691, -0.004899154882878065, 0.00869459193199873, 0.002154877409338951, -0.001933382940478623, -0.007290543057024479, 0.011570264585316181, 0.007534562610089779, 0.0004772452812176198, 0.027675533667206764, -0.02147369086742401, 0.043968506157398224, -0.03306648135185242, 0.005390947684645653, 0.002179279224947095, 0.014205671846866608, -0.022945314645767212, 0.01874067634344101, -0.01821509562432766, 0.01702878624200821, 0.0024758565705269575, 0.015211782418191433, -0.0028794268146157265, 0.01944645494222641, -0.007741040084511042, -0.01606772653758526, -0.026203909888863564, -0.0016799784498289227, -0.00025316994288004935, -0.012448733672499657, 0.01133750844746828, -0.006175563205033541, -0.002639161655679345, 0.023515943437814713, 0.01611277647316456, -0.01877070777118206, -0.015301881358027458, -0.005180715583264828, 0.01866559311747551, 0.01690865494310856, -0.009633127599954605, -0.01792978122830391, -0.044899534434080124, 0.00021339950035326183, -0.011585281230509281, 0.028411343693733215, -0.01887582428753376, -0.046461258083581924, -0.015234307385981083, -0.00837924424558878, -0.011397574096918106, 0.01650320738554001, 0.0026654405519366264, -0.028336262330412865, 0.03787178173661232, -0.00200658873654902, -0.013612518087029457, -0.0024383149575442076, 0.005368422716856003, -0.013304678723216057, -0.02229960262775421, -0.01989695057272911, 0.0032004057429730892, 0.0010624220594763756, -0.0037447563372552395, -0.00876967515796423, -0.01085697766393423, 0.01814001239836216, 0.013492384925484657, 0.003607730148360133, 0.01932632178068161, 0.01788473129272461, -0.02165388874709606, -0.006235629320144653, 0.028201112523674965, 0.015467063523828983, 0.004193376284092665, 0.0023932652547955513, 0.014415903948247433, 0.015872512012720108, 0.01729908585548401, -0.01696872152388096, -0.01680353842675686, -0.031534790992736816, -0.010714320465922356, 0.01835024543106556, 0.031624890863895416, -0.014415903948247433, 0.006449615582823753, 0.04162592440843582, -0.010278839617967606, 0.02157880738377571, -0.02148870751261711, 0.016202876344323158, -0.006074201315641403, -0.023050429299473763, 0.005342143587768078, -0.02069282904267311, -0.007466987706720829, -0.00418211380019784, 0.024732286110520363, -0.010631728917360306, -0.006145529914647341, 0.009940966963768005, 0.012471258640289307, -0.047422319650650024, -0.008506884798407555, -0.025798462331295013, 0.012651457451283932, -0.02036246471107006, -0.009971000254154205, -0.0006264724070206285, -0.010684287175536156, -0.02135355770587921, 0.000916479853913188, 0.011067209765315056, 0.01868060976266861, 0.024281788617372513, -0.008589476346969604, -0.03555922955274582, 0.01738918386399746, -0.04018433392047882, -0.00218303338624537, -0.014235705137252808, -0.013034380041062832, 0.0055899168364703655, 0.01823011226952076, -0.024071557447314262, 0.014986533671617508, 0.01767450012266636, 0.026083776727318764, 0.005019287578761578, -0.030378514900803566, -0.007943764328956604, 0.009257713332772255, -0.013875307515263557, 0.0023763717617839575, -0.025227831676602364, -0.01010614912956953, 0.0011881858808919787, 0.025032617151737213, -0.0007344039622694254, -0.014941483736038208, -0.01091704424470663, -0.00840176921337843, 0.005518588237464428, -0.01980685256421566, -0.007106590084731579, 0.013349727727472782, -0.008101438172161579, 0.003607730148360133, 0.015437031164765358, -0.007741040084511042, 0.008942365646362305, 0.014123081229627132, -0.0007071864674799144, 0.012155910953879356, 0.03793184831738472, -0.03450807183980942, -0.0030765191186219454, -7.68425888963975e-05, 0.006164300721138716, -0.028080979362130165, -0.03913317248225212, -0.01923622190952301, 0.0012088336516171694, -0.004688923247158527, -0.0016668388852849603, -0.01838027872145176, 0.03231565281748772, -0.013334711082279682, 0.008551934733986855, 0.023696143180131912, 0.014866401441395283, -0.029012007638812065, 0.00546227628365159, -0.01887582428753376, 0.0028681643307209015, -0.008581968024373055, 0.001859238720498979, 0.006258154287934303, -0.012906739488244057, 0.04147575795650482, 0.00017327710520476103, 0.00236698635853827, -0.014340821653604507, 0.006855062674731016, -0.014648661017417908, 0.009708210825920105, 0.03468826785683632, -0.022554883733391762, -0.013665076345205307, -0.01801988109946251, 0.01863555982708931, -0.01911608874797821, -0.014378363266587257, 0.003489474765956402, 0.00913007277995348, -0.012538833543658257, -0.008259112015366554, -0.012253518216311932, -0.0003765873552765697, -0.023260662332177162, 0.028801774606108665, -0.005571146495640278, 0.005912773311138153, 0.025573212653398514, 0.03276614844799042, 0.0038592577911913395, 0.027945831418037415, -0.011397574096918106, 0.008874790742993355, 0.014303280040621758, 0.002671071793884039, 0.013650059700012207, -0.012013253755867481, 0.00457254471257329, 0.013447335921227932, -0.022494817152619362, -0.013469860889017582, -0.011097243055701256, 0.02094811014831066, 0.0012060180306434631, 0.008244095370173454, -0.023275678977370262, -0.026173876598477364, -0.011945678852498531, 0.00016189736197702587, -0.0016077111940830946, 0.0025377997662872076, 0.01841031014919281, 0.0066335685551166534, 0.005053074564784765, 0.0026954738423228264, 0.004737726878374815, -0.010684287175536156, -0.0022524851374328136, -0.029822902753949165, -0.004782776348292828, -0.006288187578320503, 0.0004814686835743487, -0.04429887235164642, -0.013514909893274307, -0.004970483481884003, -0.0011985097080469131, -0.006442107260227203, -0.01645815744996071, 0.0033730962313711643, 0.00458005303516984, 0.0015279357321560383, -0.006077955476939678, -0.006768717430531979, 0.0058301822282373905, 0.007129115052521229, -0.009227680042386055, 0.023365778848528862, -0.0035908366553485394, 0.012786606326699257, -0.0005598363932222128, -0.011412590742111206, -0.0040507190860807896, 0.010436514392495155, -0.004144572652876377, -0.011345015838742256, -0.005146928131580353, -0.007913731038570404, -0.0023801259230822325, -0.006922637578099966, 0.07117852568626404, -0.005931544117629528, -0.0023106741718947887, -0.007695990614593029, -0.00873213354498148, -0.027330152690410614, -0.002074163407087326, 0.008904824033379555, 0.023125512525439262, -0.0046213483437895775, -0.008123963139951229, -0.011510198935866356, 0.023891357704997063, 0.006457123905420303, -0.013717633672058582, 0.03297638148069382, 0.02232963591814041, 0.026339057832956314, -0.006047922186553478, 0.0007001474150456488, 0.011397574096918106, 0.0009038096177391708, -0.01020375732332468, 0.02105322666466236, 1.317615715379361e-05, 0.024747302755713463, -0.023230629041790962, 0.0075871204026043415, -0.0011863088002428412, 0.02132352441549301, -0.0028137292247265577, -0.0010239421389997005, -0.014551053754985332, -0.00952801201492548, -0.0003052586398553103, 0.01597762666642666, 0.00031253229826688766, 0.011262425221502781, -0.013732650317251682, 0.0023801259230822325, -0.0013627534499391913, 0.0026691947132349014, 0.015354439616203308, 0.00459506968036294, 0.0030446089804172516, -0.0058189197443425655, -0.02120339311659336, 0.005758853629231453, 0.003673427738249302, -0.01572234556078911, -0.00019779634021688253, 0.012779098004102707, 0.007748548407107592, 0.02225455269217491, 0.003523261984810233, -0.0016940564382821321, 0.01636805757880211, -0.0015889405040070415, -0.010714320465922356, 0.005443505477160215, -0.014926467090845108, 0.00944542046636343, -0.013034380041062832, -0.025423048064112663, -0.013387269340455532, -0.01800486445426941, -0.006325728725641966, -0.02048259787261486, 0.006967687048017979, 0.001967170275747776, -0.015294373035430908, 0.02106824330985546, 0.003878028364852071, -0.01659330725669861, 0.004869121592491865, 0.0076284161768853664, -0.0065960269421339035, 0.013942882418632507, -0.00474898936226964, -0.01092455256730318, 0.003750387579202652, 0.008994923904538155, -0.028741709887981415, -0.02084299549460411, 0.010046083480119705, 0.015114174224436283, 0.03327671065926552, -0.02222451940178871, -0.00509437033906579, -0.01741921715438366, -0.032465819269418716, 0.0048390887677669525, -0.008972398936748505, 0.028726693242788315, 0.01668340526521206, 0.006269416771829128, -0.011442624032497406, 0.006903866771608591, 0.007433200720697641, -0.012178435921669006, -0.005041812546551228, 0.026309024542570114, -0.0011131030041724443, -0.007748548407107592, 0.005282077472656965, -0.01569231227040291, 0.01949150301516056, 0.0021736479829996824, -0.03631005808711052, 0.003938094712793827, 0.004399854224175215, -0.014348329976201057, -0.00904748123139143, -0.015016566962003708, -0.030288415029644966, 0.02190917171537876, 0.030018117278814316, -0.01716393604874611, -0.022750098258256912, -0.012283551506698132, 0.00030197377782315016, 0.011848071590065956, 0.0028193604666739702, -0.01090953592211008, 0.00504932040348649, -0.00903997290879488, -0.01602267660200596, -0.014806334860622883, -0.008604492992162704, 0.003237947355955839, 0.00904748123139143, 0.02057269588112831, -0.005244535859674215, 0.028606560081243515, 0.00805638823658228, -0.002483364660292864, -0.012516308575868607, -0.014618627727031708, 0.025573212653398514, -0.012899231165647507, 0.015316898003220558, -0.005315864458680153, 0.012208469212055206, 0.02082797884941101, 0.0012022638693451881, 0.02138359099626541, -0.013071921654045582, -8.38229461805895e-05, -0.006415828131139278, 0.0048165637999773026, 0.01926625519990921, -0.023080462589859962, 0.009257713332772255, -0.006434598937630653, -0.0031684956047683954, -0.0012933018151670694, -0.03913317248225212, 0.029612669721245766, -0.010796912014484406, -0.01967170275747776, 0.007249247748404741, -0.0016105268150568008, -0.031775057315826416, -0.010361431166529655, -0.00274240062572062, 0.026624372228980064, 0.015452047809958458, 0.027585433796048164, 0.012831656262278557, 0.007309313863515854, -0.005349651910364628, 0.01738918386399746, -0.0010014172876253724, -0.03141465783119202, 0.01765948347747326, -0.0010004787473008037, -0.004444903694093227, -0.0013543065870180726, -0.01986691728234291, 0.0066072894260287285, 0.006040413863956928, 0.0006302265683189034, 0.015497096814215183, -0.005244535859674215, -0.010053591802716255, -0.02223953604698181, -0.008589476346969604, -0.004478691145777702, -0.00438859174028039, 0.005038058385252953, -0.002094811061397195, 0.010736845433712006, 0.012546341866254807, 0.00523327337577939, -0.01566227898001671, -0.005327126942574978, 0.022960331290960312, 0.026894671842455864, 0.013259628787636757, -0.01862054318189621, 0.00488789239898324, 0.003461318789049983, 0.005165698938071728, -0.005882740020751953, -0.01608274318277836, -0.00014195348194334656, -0.01605270989239216, -0.015234307385981083, -0.00400566915050149, 0.007763565052300692, -0.043998539447784424, -0.031594857573509216, 0.012568866834044456, -0.001664023264311254, -0.0065997811034321785, 0.015061616897583008, 0.02180405519902706, 0.012020762078464031, 0.03339684382081032, 0.006149284075945616, 0.023621059954166412, 0.014002948999404907, 0.03144469112157822, -0.00272738398052752, -0.024642186239361763, 0.007365626282989979, -0.008942365646362305, 0.014017965644598007, 0.010316381230950356, -0.014010457322001457, 0.01889084093272686, -0.005890248343348503, -0.008116454817354679, 0.0078011066652834415, 0.014130589552223682, 0.008596984669566154, 0.012794114649295807, 0.01016621571034193, 0.022524850443005562, -0.022840198129415512, -0.0013533680466935039, -0.00454251142218709, -0.012163419276475906, -0.009925950318574905, 0.008882299065589905, -0.012501291930675507, 0.005770115647464991, 0.007542070932686329, -0.013162020593881607, -2.9857157642254606e-05, 0.004088260233402252, 0.00422716373577714, 0.007271772716194391, 0.010068608447909355, 0.014686202630400658, 0.001917427871376276, -0.006787488237023354, 0.01054162997752428, 0.007365626282989979, -0.01627795770764351, -0.0007062479271553457, 0.0024326839484274387, -0.010661762207746506, -0.006276925094425678, 0.002969526220113039, 0.015482080169022083, -0.026909688487648964, -0.005777623970061541, -0.00903997290879488, 0.012681490741670132, 0.00795878004282713, 0.00474898936226964, 0.00882974173873663, 0.007677219808101654, -0.002017851220443845, -0.006490910891443491, 0.004688923247158527, -0.026924705132842064, 0.0004852228157687932, 0.01689363829791546, -0.00399816082790494, 0.004700185265392065, 0.01844034343957901, -0.01767450012266636, 2.21289064938901e-05, -0.02085801213979721, -0.005210748873651028, 0.004208392929285765, -0.011975712142884731, -0.006960178725421429, 0.0019465225050225854, -0.023065445944666862, 0.008844757452607155, 0.014528528787195683, -0.007031507324427366, 0.01025631558150053, -0.005743836984038353, 0.01057166326791048, 0.0035532950423657894, -0.001491332775913179, -0.007936256006360054, 0.007861172780394554, -0.00421214709058404, -0.02091807685792446, 0.011983220465481281, 0.0007264264277182519, 0.013116971589624882, 0.0037410021759569645, -0.012013253755867481, 0.023711159825325012, 0.01810997910797596, 0.00873213354498148, -0.023621059954166412, 0.004290984012186527, -0.024206705391407013, -0.014513512142002583, -0.005897756665945053, 0.013267137110233307, -0.00919013936072588, 0.0011684766504913568, -0.0007020244956947863, 0.00439610006287694, -0.01094707753509283, 0.02259993366897106, -0.005188223905861378, 0.001252944814041257, 0.023906374350190163, 0.022449767217040062, 0.00804887991398573, -0.03189518675208092, 0.01090953592211008, -0.01090202759951353, -0.015016566962003708, -0.011870596557855606, -0.010323889553546906, 0.014513512142002583, -0.004065735265612602, -0.013304678723216057, -0.016232909634709358, -0.005128157790750265, 0.002898197388276458, -0.00875465851277113, -0.00867957528680563, 0.0006114558200351894, 0.01696872152388096, 0.0078011066652834415, 0.013514909893274307, -0.00843180250376463, 0.02078292891383171, 0.01895090751349926, 0.00024894651141949, -0.00026020893710665405, 0.01093206088989973, 0.014656169340014458, -0.027435267344117165, -0.014378363266587257, 0.007549578789621592, 0.004069489426910877, -0.022795148193836212, -0.0006095787393860519, -0.007294297218322754, 0.012869197875261307, -0.013079429976642132, -0.00807891320437193, 0.0032004057429730892, 0.0034106378443539143, -0.00417460547760129, 0.023395812138915062, -0.023170562461018562, 0.001429389463737607, -0.0008029170567169785, -0.03267604857683182, -0.007354363799095154, -0.0012013253290206194, -0.01782466471195221, 0.013702617026865482, -0.013274645432829857, -0.001940891263075173, 0.00042351410957053304, 0.0013571222079917789, 0.030333464965224266, -0.0017766475211828947, -0.005282077472656965, -0.007358117960393429, 0.013229595497250557, 0.02139860764145851, 0.004869121592491865, 0.006498419214040041, 0.00831917766481638, -0.022990364581346512, -0.004272213205695152, -0.0056011793203651905, 0.0026222679298371077, 0.01743423379957676, -0.011990728788077831, 0.013484877534210682, -0.015872512012720108, 0.028771741315722466, 0.006520944181829691, 0.003031469415873289, -0.00046175942406989634, -0.02052764780819416, 0.012583883479237556, 0.00911505613476038, -0.0028080979827791452, -0.027930814772844315, -0.01081943605095148, 0.015061616897583008, 0.025813478976488113, -0.01716393604874611, 0.005158190615475178, 0.009257713332772255, -0.006430844776332378, 0.02174398861825466, 0.002087302738800645, -0.01740420050919056, 0.024161655455827713, -0.00541722634807229, -0.014408395625650883, 0.01021126564592123, 0.008266620337963104, 0.0068175215274095535, 0.015422014519572258, -0.00795127172023058, 0.015151715837419033, -0.023200595751404762, 0.006986457854509354, 0.0004007546231150627, -0.0028756726533174515, 0.024672219529747963, -0.01094707753509283, -0.004422378726303577, 0.031594857573509216, 0.00037588345003314316, -0.02151874080300331, -0.00976076815277338, 0.029747819527983665, -0.031594857573509216, -0.01994200050830841, 0.026504240930080414, -0.010669270530343056, -0.006678618025034666, -0.0007217337260954082, 0.004287229850888252, 0.02006213366985321, 0.02261495031416416, 0.011757971718907356, 0.012899231165647507, 0.0019521537469699979, -0.007129115052521229, -0.0016443140339106321, 0.01995701715350151, 0.006246891804039478, -0.0024645940866321325, -0.024477003142237663, 0.00036368248402141035, -0.007748548407107592, 0.015324406325817108, 0.03555922955274582, -0.03273611515760422, 0.00401317747309804, 0.007012736517935991, 0.0005969085614196956, 0.0028888119850307703, -0.027705565094947815, 0.0028531476855278015, -0.002830622950568795, -0.0006574440631084144, 0.0032923822291195393, -0.002385757165029645, -0.007921239361166954, 0.0012154034338891506, 0.014220688492059708, -0.01641310751438141, 0.004399854224175215, 0.0031684956047683954, -0.005578654818236828, 0.010766878724098206, 0.0048315804451704025, -0.00870210025459528, -0.022059336304664612, 0.005323372781276703, -0.01995701715350151, 0.00974575150758028, 0.011968203820288181, -0.0024251756258308887, -0.011149801313877106, 0.0024927500635385513, 0.012704015709459782, 0.0029732801485806704, 0.0037053378764539957, 0.0024645940866321325, 0.015181749127805233, -0.01902599073946476, 0.00870960857719183, -1.966525087482296e-05, -0.005770115647464991, 0.03552919626235962, 0.0033299236092716455, 0.004722710233181715, 0.01749430038034916, -0.001352429506368935, 0.0015438908012583852, 0.013552451506257057, 0.01010614912956953, 0.005218257196247578, -0.013514909893274307, 0.01680353842675686, 0.01985190063714981, 0.01884579099714756, 0.01941642165184021, -0.00903246458619833, 0.006945162080228329, 0.011480165645480156, -9.971939289243892e-05, 0.025377998128533363, 0.009558044373989105, 0.01920618861913681, 0.011239900253713131, 0.00872462522238493, 0.003654656931757927, -0.024882450699806213, -0.0024251756258308887, 0.00982083473354578, 0.011435115709900856, 0.005342143587768078, 0.009332796558737755, 0.0030727649573236704, 0.003827347420156002, 0.003273611655458808, -0.01803489774465561, 0.0056237042881548405, 0.006547223310917616, 0.0012444979511201382, -0.014363346621394157, -0.00471144774928689, 0.012411192990839481, 0.01088701095432043, 0.026759522035717964, -0.0010314504615962505, 0.026083776727318764, -0.012058303691446781, 0.028231145814061165, -0.011134784668684006, -0.012366143055260181, -0.01702878624200821, -0.015166732482612133, -0.005289585795253515, -0.01627795770764351, 0.003930586390197277, -0.01854545995593071, 0.0012285428820177913, 0.027240052819252014, 0.007639678195118904, -0.00021468997874762863, -0.0022524851374328136, -0.007786090020090342, -0.00528583163395524, -0.005345897749066353, 0.024206705391407013, -0.006254400126636028, -0.025888562202453613, -0.010083625093102455, 0.015249324031174183, -0.00947545375674963, -0.0014387748669832945, 0.0007710068603046238, 0.00799632165580988, 0.0023763717617839575, 0.006885095965117216, 0.0020816714968532324, -0.011172325350344181, -0.008867282420396805, -0.00025739334523677826, 0.0002843762340489775, 0.015106665901839733, -0.02006213366985321, 0.00797379668802023, 0.00950548704713583, -0.0014838245697319508, 0.009325288236141205, -0.0056387209333479404, 0.0007142254617065191, 0.004001914989203215, 0.01723901927471161, 0.02034744806587696, -0.00831917766481638, 0.007733531761914492, 0.004426132887601852, -0.03655032441020012, 0.01636805757880211, -0.001064299140125513, 0.00016178004443645477, -0.005976593587547541, 0.012846672907471657, -0.010053591802716255, -0.0020291137043386698, -0.004137064330279827, -0.007061540614813566, -0.022374683991074562, -0.0019117966294288635, -6.1474071117118e-05, -0.00952801201492548, -0.00022407533833757043, 0.02025734819471836, -0.006284433417022228, -0.004238426219671965, -0.008642034605145454, 0.00113750493619591, -0.013995440676808357, -0.022434750571846962, -0.0027930813375860453, 0.014986533671617508, -0.012613915838301182, -0.00525579834356904, -0.011893120594322681, 0.014611119404435158, 0.002597866114228964, 0.013109463267028332, -0.00877718348056078, -0.0048503512516617775, -0.00802635494619608, 0.0013120725052431226, 0.004152080975472927, -0.0009788924362510443, -0.012658965773880482, 0.026489224284887314, 0.005713803693652153, 0.02082797884941101, -0.01956658624112606, 0.00494795897975564, 0.004884138237684965, -0.010796912014484406, -0.03231565281748772, -0.0034181459341198206, -0.001475377706810832, -0.028771741315722466, 0.011450132355093956, 0.0075645954348146915, -0.03462820500135422, -0.0002077682875096798, -0.00910003948956728, -0.00474898936226964, 0.010361431166529655, 0.0073768883012235165, -0.0034406709019094706, 0.00991093460470438, -0.02064777910709381, -0.011848071590065956, -0.000610986549872905, -0.011547739617526531, 0.022524850443005562, -0.025618262588977814, 0.02072286233305931, -0.0033092759549617767, -0.0014979025581851602, 0.01953655295073986, -0.03219551965594292, 0.01663835532963276, 0.008634526282548904, -0.0037522646598517895, -0.02214943617582321, 0.00912256445735693, -0.013034380041062832, 0.013927865773439407, -0.024717269465327263, 0.0009901549201458693, -0.004730218555778265, 0.011600297875702381, -0.023380795493721962, -0.009227680042386055, 0.023666109889745712, -0.024852417409420013, -0.001521365949884057, 0.01857549324631691, 0.00548480125144124, -0.027915798127651215, -0.01053412165492773, 0.0002475387300364673, -0.023560993373394012, -0.01023379061371088, 0.012065811082720757, -0.0011149800848215818, -0.004715201910585165, -1.5177877685346175e-05, 0.00913758110255003, 0.003466949798166752, -0.01731410250067711, -0.00985086802393198, 0.012065811082720757, -0.02219448611140251, -0.00904748123139143, 0.0001106298659578897, -0.00202160538174212, 0.009340304881334305, -0.0013392900582402945, -0.026429157704114914, -0.011104751378297806, -0.03192522004246712, 0.0007001474150456488, -0.006986457854509354, -0.006550977472215891, 0.006517190020531416, -0.0007193874334916472, 0.007298051379621029, -0.01991196721792221, 0.02145867422223091, 0.022089369595050812, 0.009685685858130455, 0.0014688079245388508, 0.007891206070780754, 0.011345015838742256, -0.003237947355955839, -0.013972915709018707, -0.0023050429299473763, -0.023560993373394012, 0.007406921591609716, -0.007207951974123716, -0.00919013936072588, 0.003710969118401408, -0.005740082822740078, 0.008574459701776505, 0.005053074564784765, 0.00470393942669034, 0.016202876344323158, -0.01097711082547903, 0.006359516177326441, 0.013740158639848232, -0.02124844305217266, 0.008634526282548904, 0.010999634861946106, 0.00867957528680563, -0.013349727727472782, 0.002950755413621664, -0.009347813203930855, -0.0068212756887078285, 0.014355838298797607, -0.012253518216311932, 0.0036171155516058207, 0.0048653678968548775, -0.03643019124865532, -0.024221722036600113, 0.0032942593097686768, 0.003930586390197277, 0.01807994581758976, -0.013394777663052082, -0.009940966963768005, 0.01023379061371088, -0.0007020244956947863, 0.011435115709900856, -0.013477369211614132, -0.01732911728322506, 0.015309389680624008, -0.015249324031174183, -0.013635043054819107, -0.015572180040180683, 0.008544426411390305, 0.0008268497185781598, 0.006070447154343128, -0.0048353346064686775, -0.0005190101219341159, 0.0023970194160938263, -0.015406997874379158, 0.013484877534210682, -0.025002583861351013, 0.00907751452177763, 0.006505927536636591, -0.0019934491720050573, -0.0048616137355566025, 0.012568866834044456, 0.015069125220179558, -0.012276043184101582, -0.02021229825913906, -0.01713390275835991, -0.0065960269421339035, -0.023350762203335762, 0.008934857323765755, 0.011179833672940731, -0.00018360099056735635, 0.005680016241967678, 0.0010633605998009443, -0.008244095370173454, -0.03555922955274582, -0.01680353842675686, -0.01929628849029541, -0.01910107396543026, 0.03372721001505852, 0.01572234556078911, 0.00832668598741293, 0.01941642165184021, 0.01062422152608633, 0.013882815837860107, -0.026098793372511864, -0.00875465851277113, 0.01820007897913456, -0.01759941689670086, 0.00907751452177763, -0.00402819411829114, -0.024942517280578613, 0.006997720338404179, 0.01052661333233118, 0.00844681914895773, 0.007245493587106466, -0.0024683482479304075, -0.0007428507669828832, 0.005000516772270203, -0.013942882418632507, 0.024176672101020813, 0.01048156339675188, -0.0017400446813553572, 0.026999786496162415, 0.0014209426008164883, -0.009925950318574905, -0.00873964186757803, 0.0019033498829230666, 0.005541113205254078, 0.001821697223931551, 0.00523327337577939, -0.007406921591609716, 0.007354363799095154, -0.012658965773880482, 0.007482004351913929, 0.014145606197416782, -0.01049658004194498, -0.02052764780819416, 0.0024195443838834763, -0.0076058912090957165, -0.02141362428665161, 0.01657829061150551, 0.00529333995655179, -0.012846672907471657, -0.002870041411370039, -0.015437031164765358, 0.01672845520079136, 0.004208392929285765, -0.013695108704268932, 0.013717633672058582, -0.007748548407107592, 0.02030239813029766, 0.006363270338624716, 0.006021643523126841, -0.029342371970415115, 0.008506884798407555, -0.001878947950899601, -0.006276925094425678, 0.011037176474928856, -0.007275526877492666, 0.01015119906514883, -0.012876706197857857, -0.01665337197482586, -0.011217375285923481, 0.011187341995537281, -0.01569231227040291, -0.0005832997849211097, -0.001995326252654195, 0.004302246496081352, -0.007527054287493229, 0.0037766664754599333, 0.01660832390189171, -0.0025640788953751326, 0.013710125349462032, 0.00801133830100298, 0.004779022186994553, 0.006002872716635466, 0.01845536008477211, -0.013717633672058582, -0.010751862078905106, 0.014768793247640133, -0.005526096560060978, -0.025002583861351013, -0.0008535980014130473, -0.008289145305752754, -0.008544426411390305, 0.01011365745216608, -0.0038329786621034145, 0.014280755072832108, 0.00877718348056078, 0.0018930259393528104, -0.029973067343235016, -0.003934340551495552, -0.00110277917701751, 0.004001914989203215, 0.015279356390237808, -0.007219214458018541, -0.012786606326699257, -0.01890585757791996, -0.012583883479237556, -0.02073787897825241, -0.004294738173484802, 0.029837917536497116, 0.029777852818369865, -0.0022149435244500637, 0.015294373035430908, -0.002646669978275895, -0.014153114520013332, -0.014588594436645508, 0.028065962716937065, -0.00494045065715909, 0.0008808154962025583, -0.013199562206864357, 0.015219290740787983, -0.0002695943112485111, -0.004745235200971365, -0.007823631167411804, -0.011450132355093956, 0.002701105084270239, -0.03501863405108452, -0.0014819474890828133, 0.010744353756308556, 0.005068091209977865, -0.01026382390409708, -0.0037710354663431644, 0.014633644372224808, -0.006933899596333504, 0.003596467664465308, 0.00914508942514658, -0.0022524851374328136, -0.001663084840402007, -0.007114098407328129, -0.004767760168761015, 0.01050408836454153, 0.023876341059803963, -0.0019277518149465322, 0.012298568151891232, 0.00032825276139192283, -0.005522342398762703, -0.01916113868355751, -0.005154436454176903, -0.00437357509508729, 0.0007057786569930613, 0.013252120465040207, -0.007151640020310879, 0.0005011779139749706, 0.028456393629312515, -0.01838027872145176, -0.01926625519990921, -0.0019840640015900135, -0.012673982419073582, 0.012666474096477032, 0.011367540806531906, 0.01857549324631691, 0.0015579687897115946, 0.004583807196468115, -0.0024045277386903763, -0.002194295870140195, 0.011375049129128456, 0.0011009020963683724, -0.013965407386422157, 0.01054913830012083, 0.006457123905420303, 0.011885612271726131, 0.008912332355976105, 0.005882740020751953, -0.0010708689223974943, -0.0037766664754599333, 0.009310271590948105, -0.00809392984956503, -0.004429887048900127, -0.02066279575228691, -0.02046758122742176, 0.010759370401501656, -0.009295254945755005, 0.015782412141561508, -0.012313584797084332, 0.009633127599954605, -0.007241739425808191, 0.015857495367527008, -0.00798130501061678, 0.00028953817673027515, 0.00907751452177763, 0.0036959524732083082, 0.006107988767325878, -0.02078292891383171, 0.01899595744907856, -0.0020234824623912573, 0.03321664780378342, -0.03769158199429512, 0.007290543057024479, -0.00903997290879488, 0.02052764780819416, -0.02121840976178646, -0.011915645562112331, 0.02117335982620716, -0.0023050429299473763, -0.00044486578553915024, 0.00980581808835268, 0.0005298032774589956, 0.008964890614151955, 0.015752378851175308, 0.00882974173873663, -0.012095844373106956, -0.012426208704710007, 0.0011478288797661662, 0.005368422716856003, -0.00981332641094923, -0.028336262330412865, 0.03483843430876732, 0.002216820605099201, 0.012381159700453281, 0.02109827660024166, 0.01693868823349476, 0.008101438172161579, -0.010398972779512405, -0.007771073374897242, 0.007294297218322754, -0.007478250190615654, -0.0028850578237324953, 0.015842478722333908, -0.022960331290960312, 0.009933458641171455, 0.003874274203553796, -0.01708885282278061, -0.04252691566944122, 0.015219290740787983, -0.02081296220421791, 0.04063482955098152, 0.029387421905994415, 0.022029303014278412, 0.011472657322883606, 0.003170372685417533, 0.006066692993044853, 0.013379761017858982, 0.0027104902546852827, -0.00256595597602427, -0.0066072894260287285, 0.001183493179269135, -0.012155910953879356, -0.00950548704713583, -0.011592789553105831, -0.028501443564891815, 0.01797483116388321, 0.00423467205837369, 0.002059146761894226, -0.005897756665945053, -0.00952050369232893, 0.0016142809763550758, -0.016217892989516258, 0.02051263116300106, -0.005008025094866753, 0.0011131030041724443, -0.003643394447863102, 0.005191978067159653, 0.01083445269614458, 0.02154877409338951, -0.013822750188410282, -0.01814001239836216, 0.007012736517935991, -0.012621424160897732, 0.01895090751349926, 8.734245056984946e-05, -0.011803021654486656, -0.00840176921337843, 0.00911505613476038, 0.0012895476538687944, 0.012914247810840607, 0.011194850318133831, 0.011067209765315056, 0.013454844243824482, 0.00511689530685544, 0.031234459951519966, -0.01095458585768938, 0.006006626877933741, -0.010744353756308556, -0.022735081613063812, 0.02171395532786846, 0.011923153884708881, 0.0009535520221106708, 0.01973176933825016, 0.008184028789401054, 0.00403570244088769, -0.011630331166088581, 0.012321093119680882, -0.011772988364100456, -0.0015682927332818508, -0.025377998128533363, -0.005259552504867315, 0.012163419276475906, 0.01051159668713808, -0.006423336453735828, 0.024507036432623863, 0.008634526282548904, -0.005980347748845816, -0.013987932354211807, -0.0011318736942484975, -0.00201409705914557, -0.0029601408168673515, -0.003435039659962058, -0.011908137239515781, 0.0055861626751720905, -0.026729488745331764, 0.01988193392753601, -0.010023558512330055, 0.002862533088773489, 0.01868060976266861, 0.01659330725669861, 0.0023200595751404762, 0.004215901251882315, 0.00976827647536993, 0.004110785201191902, -0.00835671927779913, -0.004951713141053915, 0.01131498347967863, -0.007684728130698204, 0.008184028789401054, 0.02174398861825466, -0.00919764768332243, 0.006502173375338316, 0.0025603247340768576, -0.014423412270843983, -0.008949873968958855, -0.005732574500143528, -0.006855062674731016, -0.00110277917701751, 0.011697906069457531, 0.009280238300561905, -0.01768951490521431, 0.0026185137685388327, -0.008904824033379555, 0.01804991252720356, 0.015234307385981083, -0.01720898598432541, -0.004268459044396877, 0.01943143829703331, 0.0040544732473790646, 0.002939492929726839, 0.0015926946653053164, 0.008259112015366554, -0.015174240805208683, 0.00919013936072588, -0.008281636983156204, 0.0033036447130143642, 0.00942289549857378, 0.00528583163395524, 0.0015973872505128384, -0.00492543401196599, -0.0017513071652501822, -0.0028493935242295265, 0.025197798386216164, 0.0002775718457996845, -0.005019287578761578, 0.003823593258857727, 0.00908502284437418, 0.0005710988189093769, 0.01929628849029541, 0.006055430509150028, -0.0013608763692900538, -7.097674097167328e-05, 0.005770115647464991, 0.006359516177326441, -0.0033768503926694393, -0.00835671927779913, -0.0003273142210673541, -0.0066298143938183784, -0.014678694307804108, 0.010766878724098206, -0.0003503083426039666, -0.009310271590948105, 0.00027452161884866655, -0.026489224284887314, 0.027450283989310265, 0.0019615390338003635, 0.0009976631263270974, 0.002517152111977339, 0.002851270604878664, 0.00229002651758492, 0.023500926792621613, -0.01758440025150776, 0.0027574170380830765, 0.01818506233394146, -0.006907620932906866, -0.010001033544540405, -0.025242848321795464, 0.0027292610611766577, -0.013770191930234432, -0.005038058385252953, -0.004489953629672527, 0.0023538467939943075, -0.007125360891222954, 0.02121840976178646, -0.013635043054819107, -0.01988193392753601, -0.007421938236802816, -0.015617229975759983, -0.009595585986971855, 0.008574459701776505, 0.011112259700894356, -0.026233943179249763, -0.008529409766197205, 0.01590254344046116, 0.006753700785338879, 0.03219551965594292, -0.004399854224175215, -0.003658411093056202, 0.0018470376962795854, -0.006047922186553478, 0.014581086114048958, -0.01084196101874113, 0.023365778848528862, 0.01059418823570013, -0.0065697478130459785, -0.0025603247340768576, 0.00802635494619608, 0.014453445561230183, 0.0031103063374757767, -0.029312338680028915, -0.004546265583485365, 0.00866455864161253, 0.004016931634396315, -0.0003995814477093518, 0.02159382402896881, -0.0032567179296165705, -0.011810529977083206, -0.029012007638812065, -0.009002432227134705, -0.007542070932686329, 0.01911608874797821, 0.004775268491357565, -0.007718515582382679, 0.028411343693733215, -0.007230476941913366, -0.0034688268788158894, 0.003358079819008708, -0.0073881507851183414, -0.010383956134319305, 0.0038555036298930645, 0.003115937579423189, 0.006941407918930054, -0.025212815031409264, 0.0017306593945249915, 0.02222451940178871, -0.0021154589485377073, 0.002162385731935501, -0.0004659828555304557, 0.00034866592613980174, -0.014258230105042458, 0.014378363266587257, 0.0036058530677109957, 0.009565552696585655, 0.003615238470956683, 0.006359516177326441, -0.0034031295217573643, -9.004073945106938e-05, -0.007936256006360054, 0.00988090131431818, -0.014836368151009083, -0.025483114644885063, 0.0046213483437895775, 0.0015645385719835758, -0.005897756665945053, -0.03273611515760422, 0.01789974793791771, -0.003881782526150346, 0.004914171528071165, -0.008919840678572655, 0.026399124413728714, -0.02018226683139801, -0.00451998645439744, -0.0037635271437466145, 0.01786971464753151, -0.005743836984038353, -0.01022628229111433, 0.003817962249740958, 0.023545976728200912, 0.026158859953284264, 0.011134784668684006, 0.007192935328930616, 0.00835671927779913, -0.011577772907912731, -0.003742879256606102, 0.014047998003661633, -0.011630331166088581, 0.00938535388559103, -0.005717557854950428, 0.004257196560502052, 0.00126420718152076, -0.04309754818677902, -0.001291424734517932, 0.00020941071852575988, -0.003230439033359289, 0.004437395371496677, 0.007846156135201454, 0.0058151655830442905, -0.01633802428841591, -0.011502690613269806, 0.00876216683536768, 0.004737726878374815, 0.05198735371232033, 0.013222087174654007, 0.02069282904267311, -0.013312186114490032, 0.013184545561671257, -0.01821509562432766, -0.0010539753129705787, -0.012268534861505032, -0.012628932483494282, -0.008116454817354679, 0.007451971527189016, -0.02114332653582096, 0.023651093244552612, 0.01675848849117756, -0.0007569288136437535, -0.00402819411829114, -0.0008165258332155645, -0.014979025349020958, -0.007711007259786129, 0.0008784691453911364, -0.003885536687448621, 0.01962665282189846, -0.012358634732663631, -0.015467063523828983, 0.00452749477699399, 0.012606407515704632, 0.008882299065589905, 0.007181673310697079, 0.0021999271120876074, 0.00010447072418173775, 0.01602267660200596, -0.004414870869368315, -0.022494817152619362, 0.011254916898906231, 0.01599264331161976, 0.012035778723657131, 0.01832021214067936, 0.009565552696585655, -0.008506884798407555, -0.01875569298863411, -0.01609775982797146, -0.013139495626091957, 0.004095768555998802, -0.007403167430311441, -0.0020234824623912573, -0.0056274584494531155, 3.3728617836459307e-06, 0.011795513331890106, -0.015782412141561508, 0.006836291868239641, 0.0036959524732083082, -0.012673982419073582, -0.027765631675720215, -0.01961163617670536, -0.005218257196247578, 0.0046025775372982025, -0.0036396405193954706, -0.01713390275835991, -0.013477369211614132, -0.02100817672908306, -0.008559443056583405, 0.0010736845433712006, 0.00985086802393198, 0.007853664457798004, -0.00919013936072588, 0.015369456261396408, 0.00902495626360178, 0.000593623670283705, 0.003431285498663783, -0.0018198202596977353, 0.014438428916037083, -0.00420463876798749, -0.025062650442123413, -0.01771954819560051, -0.015309389680624008, -0.01998705044388771, -0.024822385981678963, 0.015279356390237808, -0.024912483990192413, -0.006836291868239641, 0.015812445431947708, -0.01608274318277836, -0.007114098407328129, -0.00272738398052752, -0.008506884798407555, 0.01934133842587471, -0.015602213330566883, 0.005203240551054478, 0.01943143829703331, 0.00947545375674963, 0.007061540614813566, -0.01847037672996521, -0.007140377536416054, -0.003050240222364664, 0.023065445944666862, -0.007331838831305504, 0.003046486061066389, -0.026774538680911064, 0.007876189425587654, 0.012268534861505032, -0.00544725963845849, 0.015309389680624008, -0.015527130104601383, 0.015782412141561508, 0.0010802543256431818, -0.013912849128246307, -0.009933458641171455, -0.010053591802716255, -0.00039606195059604943, 0.01845536008477211, -0.003369342302903533, 0.014138097874820232, -0.003618992632254958, 0.028306229040026665, 0.01636805757880211, 0.015482080169022083, 0.00947545375674963, 0.005466030444949865, 0.007639678195118904, 0.014979025349020958, -0.01021877396851778, 0.011149801313877106, 0.031114326789975166, 0.01563224568963051, -0.014656169340014458, 0.01627795770764351, 0.006731176283210516, 0.008146487176418304, -0.006881341803818941, 0.011848071590065956, 0.0031253229826688766, -0.01829017885029316, -0.00243643787689507, 0.01612779311835766, -0.005901510827243328, 0.004140818491578102, -0.00036368248402141035, -0.01875569298863411, 0.006081709638237953, -0.007756056729704142, -0.013665076345205307, 0.013514909893274307, 0.01083445269614458, -0.01591756008565426, -0.00798130501061678, 0.012215977534651756, -0.014648661017417908, 0.004951713141053915, 0.01708885282278061, 0.004658889956772327, -0.01662333868443966, -0.010699303820729256, -0.02001708373427391, 0.01710386946797371, -0.0007325268816202879, 0.02157880738377571, -0.023560993373394012, 0.015001550316810608, -0.006017889361828566, 0.012283551506698132, -0.014063014648854733, 0.007102835923433304, 0.0009920320007950068, 0.00474148103967309, 0.003269857494160533, -0.025978660210967064, -0.01570732891559601, 0.01804991252720356, -0.0037334938533604145, -0.025227831676602364, -0.007185427471995354, 0.00440360838547349, -0.0017090729670599103, 0.005008025094866753, 0.0013458598405122757, 0.01053412165492773, 0.0004239833797328174, -0.007046523969620466, -0.01973176933825016, -0.009362829849123955, 0.005556129850447178, 0.006359516177326441, 0.023350762203335762, 0.009302763268351555, -0.02060272917151451, 0.005710049532353878, -0.01024129893630743, 0.023831291124224663, -0.006265662610530853, -0.01018874067813158, 0.011142292991280556, 0.023951424285769463, -0.01973176933825016, -0.0011515829246491194, -0.026203909888863564, 0.007823631167411804, -0.006562239956110716, 0.002870041411370039, -0.03138462454080582, -0.007658449001610279, 0.011562756262719631, 0.007489512674510479, -0.014948992058634758, 0.0024232985451817513], "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7": [-0.003927885089069605, -0.010795395821332932, -0.015840914100408554, 0.021159550175070763, -0.04571152850985527, -0.023761369287967682, 0.0340680256485939, 0.021015804260969162, -0.001735744415782392, 0.05062767490744591, 0.03194057196378708, 0.03964540734887123, 0.0050347368232905865, 0.022453272715210915, 0.010845706798136234, 0.012965974397957325, 0.00856013037264347, 0.026780055835843086, -0.010234782472252846, -0.01712026074528694, 0.05442259460687637, -0.01897459663450718, -0.03277430310845375, 0.035390499979257584, -0.0003847476909868419, -0.0320555679500103, 0.0011086483718827367, 0.006878291256725788, -0.03728795796632767, -0.035275500267744064, 0.006526111159473658, 0.017019638791680336, 0.006127213593572378, 0.009559172205626965, -0.00047391571570187807, -0.02541445940732956, 0.003599064191803336, 0.014108763076364994, -0.024537604302167892, 0.013612835668027401, 5.2725928981089965e-05, 0.016070907935500145, 0.007302344776690006, -0.017680874094367027, -0.024206986650824547, 0.009034495800733566, -0.013174407184123993, -0.014115950092673302, -0.005979872774332762, -0.02246764674782753, 0.013735020533204079, -0.004664588253945112, 0.007248439826071262, -0.0018687102710828185, 0.049736443907022476, -0.03395302966237068, -0.00014419615035876632, 0.07193097472190857, -0.010529464110732079, -0.060776207596063614, 0.003498441306874156, -0.008481069467961788, 0.012570670805871487, 0.0055055078119039536, 0.020900806412100792, -0.012685667723417282, -0.010601337067782879, 0.02000957541167736, -0.016415901482105255, 0.020886430516839027, 0.002091518137603998, -0.00556660071015358, -0.053991351276636124, 0.05258263275027275, 0.0047113061882555485, -0.017206508666276932, 0.03484426066279411, 0.010586963035166264, 0.029928114265203476, -0.004323189612478018, -0.013785332441329956, -0.015165302902460098, 0.03309054672718048, 0.027211297303438187, 0.049477700144052505, 0.031221836805343628, -0.031106838956475258, -0.048845212906599045, -0.029468124732375145, -0.024911345914006233, -0.01323909405618906, 0.01010541059076786, -0.010996641591191292, 0.0031786044128239155, -0.005390510428696871, -0.0032055568881332874, 0.003424770897254348, 0.011650689877569675, 0.006612359546124935, -0.0001854111033026129, 0.005961904767900705, 0.007190940901637077, -0.029841866344213486, 0.015812164172530174, 0.004862240515649319, -0.009911351837217808, 0.019391462206840515, 0.021145176142454147, -0.031020591035485268, -0.010112597607076168, 0.02252514660358429, -0.05735503137111664, 0.005498320795595646, -0.0110038286074996, -0.035677991807460785, -0.03171057626605034, -0.04421656206250191, -0.016703395172953606, -0.008581692352890968, -0.0006176626775413752, 0.021044552326202393, -0.011672251857817173, 0.031135588884353638, -0.009070432744920254, -0.01352658774703741, 0.027757534757256508, -0.0028731420170515776, 0.023919491097331047, 0.023258255794644356, 0.024135112762451172, 0.0018579292809590697, -0.0340680256485939, 0.02261139452457428, -0.024393856525421143, 0.0042764716781675816, 0.025055091828107834, -0.00856013037264347, 0.05016768351197243, -0.003748201532289386, 0.046027772128582, -0.05074267089366913, -0.018097739666700363, -0.026233818382024765, -0.004129130858927965, 0.0007807256188243628, 0.018126489594578743, -0.025428835302591324, 0.04510779306292534, -0.041600365191698074, 0.024523228406906128, -0.06675608456134796, -0.022597020491957664, -0.023459501564502716, 0.015596543438732624, 0.017997117713093758, -0.02269764244556427, -0.0049305204302072525, 0.03881167620420456, 0.007676086854189634, 0.042549096047878265, 0.007575463969260454, -0.06457112729549408, -0.035534244030714035, -0.010579775087535381, 0.03455676510930061, 0.021748913452029228, 0.07164347916841507, 0.04778148606419563, -0.02003832347691059, 0.005947529803961515, 6.356310041155666e-05, 0.006853135768324137, 0.048442721366882324, 0.004068038426339626, 0.010249157436192036, -0.023775745183229446, 0.03484426066279411, 0.009465736337006092, 0.04778148606419563, -0.03769044950604439, -0.004362719599157572, -0.005289887543767691, 0.006777668371796608, -0.002637756522744894, -0.028102528303861618, 0.026808805763721466, -0.019477711990475655, 0.007316719740629196, 0.01172256376594305, 0.035218000411987305, -6.088890586397611e-06, -0.014805935323238373, 0.0042333477176725864, 0.030301855877041817, -0.003149854950606823, -0.04502154514193535, -0.006123620085418224, -0.0001557632931508124, -0.014051264151930809, 0.04447530582547188, 0.012994724325835705, -0.048643965274095535, 0.0007865653024055064, 0.0510014146566391, -0.047982729971408844, 0.02272639237344265, -0.002502993680536747, -0.03173932433128357, 0.009393863379955292, -0.003899135859683156, 0.05991372838616371, -0.024753224104642868, -0.00023718246666248888, 0.006360802333801985, -0.005987060256302357, 0.011650689877569675, -0.018040241673588753, 0.027771910652518272, -0.006116432603448629, -0.026607559993863106, -0.015323424711823463, 0.0188021007925272, 0.005049111321568489, -0.01746525429189205, -0.0451652891933918, -0.022712018340826035, -0.027613788843154907, 0.04450405389070511, -0.0130378482863307, -0.03892667219042778, 0.029065633192658424, -0.01252035889774561, 0.02298513613641262, -0.015309049747884274, -0.006738137919455767, 0.01694776490330696, 0.03306179866194725, -0.011780062690377235, -0.025515083223581314, -0.03222806379199028, 0.002927047200500965, 0.007226877845823765, -0.027585038915276527, -0.021058928221464157, -0.01189505960792303, 0.034729260951280594, -0.026636309921741486, 0.06336365640163422, 0.03326304256916046, 0.03242931142449379, 0.008509819395840168, 0.021677039563655853, -0.003971009515225887, 0.010249157436192036, -0.008049828931689262, 0.03944416344165802, 0.03912791982293129, -0.0373167060315609, -0.00727000180631876, 0.012017244473099709, 0.00848825741559267, 0.002939624944701791, -0.012973162345588207, -0.001314386143349111, 0.027096299454569817, -0.04467654973268509, 0.042290352284908295, -0.019305214285850525, 0.019132718443870544, 0.05192139744758606, 0.017048388719558716, -0.007640150375664234, -0.011046952567994595, 0.019276466220617294, 0.015265925787389278, -0.03734545782208443, 0.00640392629429698, 0.01142069511115551, 0.002204718766734004, -0.001026892219670117, 0.0008979691774584353, 0.019103968515992165, 0.01352658774703741, 0.013735020533204079, 0.026406314224004745, 0.007302344776690006, -0.013382840901613235, 0.013979390263557434, -0.02619069442152977, -0.012053181417286396, 0.001838164054788649, -5.615115242108004e-06, 0.01634402759373188, 0.018040241673588753, 0.013490650802850723, 0.01845710724592209, 0.0005462383851408958, -0.02052706480026245, -0.001400634297169745, 0.0077695222571492195, -0.0014473521150648594, -0.005595349706709385, 0.000949628243688494, -0.02192140929400921, 0.021375169977545738, -0.016760893166065216, 0.023373253643512726, -0.0010322827147319913, -0.029525622725486755, 0.06278866529464722, 0.0393291637301445, -0.013979390263557434, 0.004890989977866411, -0.02046956494450569, -0.00016474747098982334, -0.01680401712656021, -0.03955915942788124, -0.014266883954405785, -0.011636314913630486, -0.0008512514177709818, 0.007309532258659601, 0.003243290586397052, -0.061868686228990555, 0.010651648975908756, 0.04539528489112854, -0.041284121572971344, 0.03973165526986122, -0.012017244473099709, -0.048298973590135574, -0.00820076372474432, -0.023114508017897606, -0.013914704322814941, -0.035965487360954285, 0.02544320933520794, -0.03202681988477707, -0.041571617126464844, -0.05735503137111664, -0.03455676510930061, 0.0099041648209095, -0.02544320933520794, -0.010716334916651249, 0.018615229055285454, 0.049017708748579025, -0.009135118685662746, -0.00245088548399508, -0.013260656036436558, 0.02693817764520645, 0.018270237371325493, -0.01691901497542858, 0.0012910272926092148, 0.0008409196161665022, -0.00014228701184038073, 0.02361762337386608, 0.002343075117096305, 0.04027789458632469, -0.013188782148063183, -0.035246752202510834, 0.003956634551286697, 0.018298985436558723, -0.0014132121577858925, -0.026377564296126366, -0.048241473734378815, -0.014698125422000885, -0.0130378482863307, 0.0018139068270102143, 0.017479628324508667, 0.01848585717380047, -0.017335882410407066, -0.009250115603208542, -0.0028965009842067957, -0.0390416719019413, 0.014949682168662548, 0.012930037453770638, -0.02887876145541668, -0.026205068454146385, -0.04082413390278816, 0.04427405819296837, 0.01302347332239151, -0.01120507437735796, 0.010522276163101196, 0.02215140499174595, 0.02483947202563286, -0.02879251353442669, 0.007252033334225416, 0.023402003571391106, 0.015237175859510899, 0.007805459201335907, -0.010234782472252846, -0.022510772570967674, -0.010069473646581173, -0.02275514230132103, 0.009379488416016102, -0.007640150375664234, 0.002206515520811081, -0.020757058635354042, -0.022798266261816025, -0.0005332113360054791, -0.03892667219042778, 0.016530899330973625, -0.02859126776456833, -0.004510060418397188, 0.007546714507043362, 0.0035792989656329155, 0.010874456726014614, 0.005318637005984783, -0.042319100350141525, 0.017220884561538696, -0.016272153705358505, 0.01660277135670185, -0.003823668695986271, 0.005304262507706881, 0.028203150257468224, 0.006465018726885319, 0.03265930712223053, 0.04476279765367508, 0.023545749485492706, -0.0189458467066288, 0.07497840374708176, -0.026435064151883125, -0.0036781250964850187, 0.00948729831725359, 0.034786760807037354, -0.0008840436930768192, 0.02529946342110634, 0.005059892311692238, 0.019793953746557236, 0.01640152744948864, 0.00815763883292675, -0.0030276700854301453, -0.01975082978606224, 0.030359355732798576, 0.05169140174984932, -0.011938183568418026, -0.0064757997170090675, -0.0018776945071294904, -0.014920933172106743, 0.0167465191334486, -0.0012802461860701442, 0.004139911849051714, 0.013907517306506634, 0.012304738163948059, 0.00620268052443862, -0.004531622398644686, 0.01983707770705223, -0.05310012027621269, -0.028174402192234993, -0.04683275520801544, 0.008423571474850178, 0.01671776920557022, -0.010249157436192036, 0.00590440584346652, -0.0010861878981813788, -0.05218014121055603, -0.0008260957547463477, -0.00030164397321641445, 0.0007964479154907167, -0.009106368757784367, -0.0020232382230460644, 0.004240534733980894, -0.04993768781423569, -0.03737420588731766, 0.009206991642713547, 0.05034017935395241, -0.011966933496296406, 0.013936266303062439, -0.02916625514626503, -0.012081930413842201, 0.005185671150684357, 0.005365354940295219, 0.011765687726438046, -0.006953758653253317, 0.0069609456695616245, -0.017479628324508667, 0.026837555691599846, 0.0041686613112688065, 0.003643985139206052, -0.009264490567147732, -0.010335405357182026, 0.009077619761228561, -0.014834685251116753, -0.020670810714364052, -0.0013134877663105726, -0.0025335398968309164, -0.01825586147606373, 0.004998799879103899, 0.015136552974581718, -0.034959256649017334, -0.017105886712670326, 0.0021346420980989933, -0.00033578387228772044, 0.03242931142449379, 0.023948241025209427, -0.008933872915804386, 0.01903209649026394, -0.010551026090979576, -0.02676568180322647, -0.010558213107287884, -0.05212264135479927, -0.01885959878563881, -0.03274555504322052, 0.03424052149057388, -0.004254909697920084, 0.004179442301392555, 0.007460466586053371, -0.013145658187568188, 0.035505495965480804, 0.002325106877833605, 0.024710100144147873, -0.010967891663312912, -0.01903209649026394, -0.02581695094704628, 0.010773833841085434, -0.01660277135670185, 0.023229505866765976, 0.036022983491420746, 0.022108281031250954, -0.01594153605401516, -0.013102534227073193, 0.048902712762355804, -0.013878767378628254, -0.01977957971394062, -0.00580378295853734, -0.022165779024362564, -0.008301385678350925, -0.03165307641029358, -0.008919497951865196, -0.004060851410031319, -0.02893625944852829, 0.03426927328109741, -0.023919491097331047, -0.012434110976755619, 0.025428835302591324, -0.016099657863378525, 0.01908959448337555, 0.017997117713093758, -0.014992806129157543, 0.0006122721242718399, 0.005293481517583132, 0.011780062690377235, 0.006795636843889952, -0.02229515090584755, 0.023689497262239456, 0.011348821222782135, -0.004258503206074238, 0.0007124458206817508, 0.03987540304660797, -0.009580734185874462, 0.0040069459937512875, -0.014468129724264145, 0.03231431171298027, -0.021619541570544243, 0.018816474825143814, -0.012240052223205566, -0.019477711990475655, -0.009825103916227818, -0.02052706480026245, 0.008243887685239315, -0.011176325380802155, -0.019650207832455635, -0.006680639460682869, 0.009753230027854443, 0.013749395497143269, 0.015280300751328468, 0.006853135768324137, -0.009099181741476059, 0.0006639311905018985, -0.03194057196378708, 0.030531851574778557, -0.015179677866399288, 0.018701476976275444, 0.035131752490997314, -0.020368942990899086, 0.03852418065071106, 0.01957833394408226, 0.001557857496663928, 0.049218952655792236, 0.0016099658096209168, -0.0007263713050633669, -0.02876376360654831, -0.030301855877041817, 0.016990888863801956, 0.0009334567585028708, 0.012089118361473083, -0.014259696938097477, -0.0034535203594714403, 0.010011974722146988, -0.025773826986551285, -0.021260173991322517, 0.005329417996108532, 0.027728786692023277, 0.004060851410031319, 0.041657865047454834, 0.007690461818128824, 0.00999041274189949, -0.021346421912312508, 0.014216572977602482, 0.021518917754292488, 0.021202674135565758, 0.005713941063731909, 0.004416625015437603, 0.01972208172082901, 0.020915180444717407, -0.0010646258015185595, -0.004312408156692982, -0.027599412947893143, 0.01680401712656021, 0.029525622725486755, 0.015194051899015903, -0.022855764254927635, 0.01628652960062027, -0.005645661149173975, -0.0027958780992776155, 0.02220890298485756, -0.005810970440506935, 0.010529464110732079, -0.012541920877993107, 0.035447996109724045, 0.03375178202986717, -0.008107327856123447, 0.03970290720462799, 0.016847142949700356, -0.036856718361377716, 0.05264013260602951, -0.00838763453066349, 0.023459501564502716, 0.027628162875771523, -0.004143505822867155, 0.0012056775158271194, 0.0035954704508185387, -0.008811688050627708, -0.014892183244228363, -0.025083841755986214, -0.001250598463229835, -0.023013886064291, -0.002156204078346491, -0.01911834441125393, -0.012218490242958069, 0.0016638708766549826, -0.0006275452324189246, -0.03168182820081711, -0.0030761845409870148, 0.009559172205626965, 0.005907999351620674, 0.04559653252363205, -0.003236103104427457, 0.015380923636257648, -0.035706739872694016, 0.01640152744948864, 0.01949208602309227, 0.03743170574307442, -0.008768564090132713, 0.024077612906694412, 0.019808329641819, 0.01119069941341877, 0.004409437533468008, -0.010213220492005348, -0.011930996552109718, -0.0031714169308543205, 0.019937701523303986, 0.010321030393242836, 0.026492562144994736, -0.005131766200065613, 0.010982266627252102, -0.011478194035589695, 0.03866792842745781, -0.01017728354781866, 0.020987054333090782, 0.022223277017474174, 0.014532816596329212, 0.010975079610943794, -0.002799471840262413, -0.02246764674782753, 0.017522752285003662, -0.015783414244651794, 0.010457590222358704, -0.001072711544111371, 0.004290846176445484, -0.0017213696846738458, -0.0013000114122405648, -0.008617629297077656, -0.0314805805683136, -0.03392427787184715, -0.006037371698766947, 0.01443938072770834, -0.020627686753869057, -0.009077619761228561, -0.0001519450161140412, 0.03918541595339775, -0.0387541763484478, -0.010428841225802898, -0.006220648996531963, 0.026866303756833076, -0.021792037412524223, -0.0032378998585045338, 0.009494485333561897, -0.008955434896051884, 0.006389551796019077, -0.030474351719021797, 0.024422606453299522, -0.03455676510930061, -0.03194057196378708, -0.014877809211611748, 0.02209390513598919, -0.04070913419127464, 0.04099662974476814, 0.018169613555073738, -0.021346421912312508, -0.009551984257996082, 0.01723525859415531, 0.006479393690824509, 0.0032971955370157957, -0.00805701594799757, -0.00847388245165348, 0.023962615057826042, 0.010055098682641983, 0.018327735364437103, -0.011363196186721325, 0.017953993752598763, -0.017393380403518677, 0.03976040706038475, -0.01333971694111824, -0.007176566403359175, -0.006245804950594902, -0.035246752202510834, -0.013591273687779903, 0.012462859973311424, -0.0013970406726002693, -0.0012326301075518131, -0.0036044546868652105, -0.0027347856666892767, 0.036310479044914246, -0.01462625153362751, 0.004254909697920084, 0.005545038264244795, -0.012944412417709827, -0.03886917605996132, 0.01017728354781866, -0.002555101877078414, -0.004808335565030575, -0.02312888391315937, 0.02241014875471592, -0.0050922357477247715, 0.01729275844991207, -0.018083365634083748, 0.010479152202606201, 0.007589838933199644, 0.055917561054229736, -0.005031143315136433, -0.016013409942388535, 0.014288446865975857, 0.0443028099834919, -0.04671775922179222, 0.04522278904914856, 0.028375647962093353, -0.013368465937674046, 0.00500239385291934, 0.0260756965726614, -0.0012398173566907644, -0.007597025949507952, 0.020886430516839027, -0.010522276163101196, 0.017508378252387047, -0.019161468371748924, -0.004132724832743406, 0.00320196314714849, 0.021145176142454147, 0.027671286836266518, 0.016387151554226875, 0.031078089028596878, 0.010256344452500343, 0.05962623283267021, 0.03498800843954086, 0.012362237088382244, 0.035361748188734055, -0.01749400421977043, -0.06577860563993454, 0.003917104098945856, -0.008883561007678509, -0.023315753787755966, -0.016502149403095245, -0.011147575452923775, -0.05172014981508255, 0.017723998054862022, -0.02587445080280304, 0.01671776920557022, -0.020253945142030716, 0.04456155374646187, 0.006310490891337395, 0.0017141823191195726, 0.005685191601514816, 0.018356485292315483, -0.01120507437735796, -0.025400085374712944, 0.0256444551050663, 0.021792037412524223, -0.03915666788816452, 0.006120026111602783, -0.014281258918344975, -0.01643027551472187, 0.015294674783945084, 0.021763287484645844, -0.035534244030714035, 0.03763294965028763, 0.05887874960899353, -0.001182318665087223, -0.008330135606229305, -0.0011257182341068983, -0.018442733213305473, -0.007589838933199644, 0.010852894745767117, 0.0026072103064507246, -0.010400091297924519, -0.022597020491957664, 0.048183977603912354, 0.0019675362855196, 0.007963581010699272, 0.0024616664741188288, 0.013131283223628998, 0.03171057626605034, 0.003572111716493964, 0.008301385678350925, 0.01949208602309227, 0.021360795944929123, -0.005077860783785582, 0.013382840901613235, -0.010249157436192036, 0.006986101623624563, 0.002885719994083047, 0.0016872297273948789, -0.020728308707475662, -0.000468076003016904, 0.003500238060951233, -0.0011311087291687727, 0.04122662544250488, 0.002971968147903681, 0.030646849423646927, 7.294034730875865e-05, 0.012894101440906525, -0.025285087525844574, 0.02573070302605629, -0.01282222755253315, -0.04643026366829872, -0.00031714170472696424, -0.006030184216797352, -0.010364154353737831, 0.004535216372460127, 0.013131283223628998, 0.005613318178802729, 0.02315763384103775, 0.07170097529888153, 0.05008143559098244, -0.0005345589597709477, -0.019937701523303986, 0.024393856525421143, -0.02656443603336811, 0.02716817334294319, -0.003988977521657944, 0.021389545872807503, -0.012585044838488102, 0.02676568180322647, 0.027700036764144897, 0.015194051899015903, -0.011284135282039642, -0.013720645569264889, -0.017652124166488647, -0.018643978983163834, -0.0056744106113910675, 0.005178483668714762, 0.03401052579283714, 0.013914704322814941, 0.003823668695986271, -0.0043878755532205105, -0.00977479200810194, 0.0109319556504488, -0.03823668882250786, -0.01110445149242878, -0.0074460916221141815, 0.015539044514298439, -0.04453280568122864, 0.004603495821356773, 0.001983707770705223, -0.003963822033256292, -0.0033834436908364296, -0.005875656381249428, -0.017723998054862022, 0.007212502881884575, -0.0035954704508185387, -0.004211785737425089, 0.023991364985704422, 0.0006118229357525706, 0.009940101765096188, 0.00867512822151184, -0.020987054333090782, -0.02647818811237812, -0.02238139882683754, 5.014297857997008e-05, -0.001158959697932005, -0.021504543721675873, -0.000637877092231065, 0.01920459233224392, -0.00026975013315677643, -0.02601819671690464, -0.05169140174984932, -0.04306658357381821, 0.04438905790448189, -0.06261616945266724, 0.018097739666700363, 0.004535216372460127, 0.0006518025766126812, 0.01957833394408226, -0.012189741246402264, 0.006874697748571634, -0.009393863379955292, -0.016070907935500145, 0.0507139228284359, 0.010881643742322922, 0.02836127206683159, -0.0067489189095795155, -0.010586963035166264, -0.010392904281616211, 0.005318637005984783, 0.024350732564926147, 0.03743170574307442, -0.0077767097391188145, 0.007942019030451775, -0.003038451075553894, -0.01917584240436554, -0.006400332786142826, -0.02347387559711933, 0.03458551689982414, -0.005613318178802729, -0.0017528142780065536, 0.00320196314714849, -0.017997117713093758, 0.02249639667570591, 0.0020573781803250313, -0.02169141359627247, 0.004919739440083504, -0.019621457904577255, -0.03153808042407036, -0.010881643742322922, -0.007575463969260454, 0.041657865047454834, -0.007172972429543734, -0.020872056484222412, -0.013080972246825695, 0.0009114454733207822, 0.01648777537047863, -0.009199804626405239, 0.01422375999391079, 0.009336364455521107, 0.029266878962516785, -0.005692379083484411, 0.0023215131368488073, 0.011851935647428036, 0.018442733213305473, 0.0025335398968309164, 0.008524194359779358, -0.008703877218067646, 0.003338522743433714, -0.005839719902724028, -0.012786290608346462, 0.006953758653253317, 0.011851935647428036, -0.01954958401620388, 0.02041206695139408, -0.02058456279337406, 0.010055098682641983, -0.013030660338699818, -0.009566359221935272, -0.012764728628098965, -0.009623858146369457, -0.005969091784209013, 0.020138947293162346, -0.02350262552499771, -0.01009103562682867, -0.035275500267744064, -0.015309049747884274, -0.020872056484222412, -0.011435069143772125, 0.042175352573394775, -0.05755627900362015, -0.04001915082335472, -0.029899364337325096, -0.016933390870690346, 0.004876615013927221, -0.013799706473946571, 0.013576898723840714, -0.029870616272091866, 0.01972208172082901, 0.004840678535401821, -0.012225678190588951, 0.003115714993327856, -0.011830373667180538, 0.022079531103372574, -0.0020645654294639826, -0.023516999557614326, -0.02910875715315342, 0.00580378295853734, -0.0218639113008976, -0.01654527336359024, 0.022309526801109314, -0.01620028167963028, 0.05879250168800354, 0.03283180296421051, 0.018730226904153824, -0.0004685251915361732, -0.030761847272515297, 0.0019531615544110537, 0.01625777967274189, -0.035390499979257584, -0.030819345265626907, -0.012275989167392254, -0.016300903633236885, 0.012189741246402264, 0.034901756793260574, 0.012311926111578941, 0.007273595314472914, 0.0007322109886445105, 0.041974108666181564, -0.005897218361496925, -0.029813116416335106, 0.0005543241859413683, -0.00788452010601759, -0.028145652264356613, -0.003669140860438347, 0.021303297951817513, 0.014992806129157543, 0.042692843824625015, -0.0203833170235157, -0.016272153705358505, -0.01683276705443859, -0.005649255122989416, 0.004143505822867155, 0.010975079610943794, -0.016990888863801956, 0.0016935187159106135, -0.062328677624464035, -0.030761847272515297, 0.004244128707796335, -0.004319595638662577, 0.017853369936347008, -0.010701959952712059, 0.010579775087535381, 0.0225826445966959, -0.012901288457214832, 0.018212737515568733, 0.001412313780747354, -0.02859126776456833, 0.03872542828321457, 0.030301855877041817, 0.005297075025737286, 0.011837560683488846, -0.0072340648621320724, -0.006892666220664978, 0.02584570087492466, -0.010428841225802898, -0.015366548672318459, 0.012232865206897259, 0.030186858028173447, -0.02570195309817791, -0.0054084789007902145, 0.05968373268842697, -0.0068711042404174805, 0.016272153705358505, -0.019362714141607285, -0.022309526801109314, 0.016358401626348495, 0.007920457050204277, -0.0023556530941277742, -0.0028659547679126263, -0.003626016667112708, 0.009350738488137722, 0.019765205681324005, -0.004384282045066357, 0.03748920187354088, 0.016990888863801956, 0.010529464110732079, 0.01986582763493061, 0.0001133691766881384, -0.017939619719982147, -0.00825826171785593, -0.003744608024135232, 0.004042882937937975, -0.013770957477390766, 0.014432193711400032, 0.006874697748571634, 0.020253945142030716, 0.015582169406116009, -0.017781497910618782, -0.02149016782641411, -0.004147099331021309, 0.0036655471194535494, 0.004970050882548094, -0.016760893166065216, 0.013921891339123249, -0.002494009444490075, 0.04723524674773216, 0.024163860827684402, 0.008718252182006836, 0.0035056285560131073, -0.01462625153362751, 0.025112591683864594, -0.0007578159566037357, 0.014036889187991619, 0.03334929049015045, 0.0023520593531429768, 0.00458552734926343, -0.00721969036385417, 0.0059008123353123665, 0.010795395821332932, 0.007589838933199644, -0.0026683027390390635, 0.012074743397533894, 0.007198128383606672, -1.820701072574593e-05, 0.010781020857393742, -0.03412552550435066, -0.0035936736967414618, 0.02818877622485161, -0.00636798981577158, -0.0023682308383286, -0.019535209983587265, 0.009882602840662003, -0.01445375569164753, -0.0032414935994893312, 0.005969091784209013, 0.03337804228067398, 0.008430758491158485, 0.04654525965452194, 0.018442733213305473, 0.007489216048270464, 0.04464780166745186, -0.0050275493413209915, -0.013871580362319946, 0.005886437371373177, 0.009652607142925262, -0.010019161738455296, -0.040967877954244614, -0.0026952552143484354, -0.011959745548665524, -0.011456632055342197, -0.004240534733980894, 0.001047555822879076, 0.02627694234251976, -0.005767846014350653, -0.011672251857817173, -0.0032702430617064238, -0.00015228192205540836, -0.03323429450392723, -0.028102528303861618, -0.029841866344213486, 0.01877335086464882, -0.006928602699190378, 0.004129130858927965, -0.00918542966246605, 0.008962621912360191, 0.004855053033679724, 0.02558695711195469, 0.0009136915323324502, -0.04666025936603546, -0.012204115279018879, 0.012125055305659771, -0.01897459663450718, -0.026348814368247986, -0.006824386306107044, 0.026377564296126366, -0.002059174934402108, 0.009666982106864452, -0.020886430516839027, 0.002323310123756528, -0.00918542966246605, 0.012117867358028889, 0.011686626821756363, -0.022625768557190895, 0.0189458467066288, -0.02272639237344265, 0.028634391725063324, 0.014029702171683311, 0.012290364131331444, -0.014008140191435814, -0.007539527490735054, 0.0061523690819740295, -0.015280300751328468, -0.0005678004235960543, 0.0025083841755986214, -0.0006643804372288287, -0.022970762103796005, 0.013612835668027401, 0.02593194879591465, 0.013174407184123993, -0.011111638508737087, -0.013131283223628998, -0.016818393021821976, 0.00405007041990757, -0.001591997453942895, -0.010464777238667011, -0.02636319026350975, 0.013699083589017391, 0.0015964895719662309, -0.01017728354781866, 0.021360795944929123, 0.002143626334145665, -0.021432669833302498, -0.007783897221088409, -0.006745325401425362, -0.0016845344798639417, -0.008933872915804386, 0.01080258283764124, -0.005200045648962259, 0.01078820787370205, -0.004355532582849264, -0.010781020857393742, -0.005307856015861034, -0.005077860783785582, 0.019103968515992165, -0.0002657072327565402, 0.005922374315559864, 0.018284611403942108, -0.007611400913447142, -0.009135118685662746, 0.011815998703241348, -0.02169141359627247, 0.007812646217644215, 0.007057975046336651, -0.0008009400335140526, 0.012060368433594704, 0.02015332132577896, -0.008869186975061893, -0.01313847117125988, 0.006105651613324881, -0.01302347332239151, -0.008890748955309391, 0.03317679464817047, 0.013375652953982353, -0.010170096531510353, -0.006971726659685373, -0.010860081762075424, -0.017019638791680336, 0.021849535405635834, 0.024738850072026253, 0.003268446074798703, 0.0005781322252005339, -0.02338762767612934, 0.01954958401620388, 0.011176325380802155, -0.0314805805683136, -0.010960704647004604, 0.006601578556001186, 0.009710106067359447, -0.015222801826894283, -0.005365354940295219, -0.001965739531442523, 0.022453272715210915, -0.0013790723169222474, 0.028260650113224983, -0.0019693332724273205, 0.020368942990899086, -0.005307856015861034, 0.0167465191334486, -0.011765687726438046, -0.0023107321467250586, 0.0002333641896257177, 0.0183708593249321, -0.04714899882674217, -0.018643978983163834, -0.002247842960059643, 0.012671293690800667, 0.016128407791256905, -0.0010915783932432532, -0.008725439198315144, -0.0015084445476531982, -0.007115473970770836, 0.037172961980104446, -0.010155721567571163, 0.014683750458061695, -0.011902247555553913, -0.016300903633236885, -0.027858158573508263, -0.021648289635777473, -0.001974723767489195, 0.029784366488456726, 0.021748913452029228, -0.015337798744440079, -0.012549108825623989, -0.015150927938520908, 0.011736937798559666, 0.011751312762498856, -0.0049233329482376575, -0.010594150051474571, 0.0017761732451617718, -0.007007663603872061, -0.010450403206050396, 0.012728791683912277, 0.0094010503962636, 0.012800665572285652, -0.008265449665486813, 0.0035343780182302, 0.015122178941965103, 0.03125058487057686, -0.03498800843954086, 0.03159558027982712, -0.00423694122582674, 0.023085759952664375, 0.015194051899015903, 0.027829408645629883, -0.017192134633660316, -0.0078701451420784, -0.009853852912783623, -0.03467176482081413, -0.005742690525949001, 0.0034032089170068502, 0.019075220450758934, -0.008976996876299381, -0.015280300751328468, 0.02252514660358429, 0.013749395497143269, -0.002925250446423888, 0.00620268052443862, -0.02604694664478302, 0.010637274011969566, 0.005318637005984783, 0.0008004907867871225, 0.025227589532732964, -0.003787731984630227, 0.03852418065071106, -0.014849059283733368, 0.014532816596329212, 0.015582169406116009, 0.01891709864139557, -0.028864387422800064, 0.014863434247672558, -0.013152845203876495, 0.01992332749068737, 0.0045424033887684345, 0.018442733213305473, -0.00797076802700758, 0.014906558208167553, -0.0022226872388273478, -0.029353126883506775, -0.019477711990475655, 0.0023628403432667255, -0.00022280776465777308, -0.00039215965080074966, 0.01280785258859396, 0.006892666220664978, 0.0033672722056508064, 0.02032581903040409, 0.014683750458061695, -0.015869662165641785, -0.011233823373913765, -0.0018121099565178156, 0.020785808563232422, 0.008567318320274353, -0.008136076852679253, -0.009307614527642727, -0.05137515813112259, 0.005368948448449373, -0.010651648975908756, 0.042664092034101486, -0.006073308642953634, -0.03803544119000435, -0.020771434530615807, -0.016243405640125275, -0.02350262552499771, 0.013835643418133259, 0.01963583193719387, -0.0017546111484989524, 0.02933875098824501, 0.0012865351745858788, -0.002325106877833605, 0.00399975897744298, 0.006817198824137449, -0.019305214285850525, -0.009832290932536125, -0.017077136784791946, 0.004053663928061724, -0.0004274225502740592, 0.0060553401708602905, -0.004826303571462631, -0.005875656381249428, 0.021303297951817513, 0.015237175859510899, 0.008279823698103428, 0.022367024794220924, 0.022913264110684395, -0.026463812217116356, 0.0013835643185302615, 0.021044552326202393, 0.0002374070609221235, 0.0029216567054390907, 0.009451361373066902, 0.013483463786542416, 0.017752747982740402, 0.021044552326202393, -0.02384761907160282, -0.03909916803240776, -0.024551978334784508, -0.004470529966056347, 0.01648777537047863, 0.027858158573508263, -0.00500239385291934, 0.024868221953511238, 0.03728795796632767, -0.011075702495872974, -0.005929561331868172, -0.02670818194746971, 0.002034019213169813, 0.006400332786142826, -0.024609476327896118, 0.009127930738031864, -0.007198128383606672, 0.0055773817002773285, -0.0035020350478589535, 0.004984425380825996, -0.01746525429189205, -0.006565641611814499, 0.014029702171683311, -0.0027868938632309437, -0.02601819671690464, -0.010622899048030376, -0.007302344776690006, -0.01017728354781866, -0.025227589532732964, -0.005821751430630684, 0.005368948448449373, -0.003521800274029374, -0.014065639115869999, 0.0003095051506534219, 0.011578816920518875, 0.020455190911889076, 0.02023956924676895, -0.00987541489303112, -0.043095335364341736, 0.018241487443447113, -0.019808329641819, -0.002341278363019228, -0.012613794766366482, 0.0014060247922316194, 0.0073957801796495914, 0.019333964213728905, -0.027153797447681427, 0.018313361331820488, 0.008847624994814396, 0.025055091828107834, 0.0028192370664328337, -0.024149486795067787, -0.013160033151507378, 0.012901288457214832, -0.015107803978025913, -0.007381405681371689, -0.027700036764144897, -0.011880684643983841, 0.016070907935500145, 0.011154763400554657, 0.0042261602357029915, -0.02913750521838665, -0.01726400852203369, -0.014396256767213345, 0.011082889512181282, -0.01914709247648716, 0.004132724832743406, 0.01594153605401516, -0.006407520268112421, -0.0021418295800685883, 0.00022314467059914023, 0.004369907081127167, -0.006199087016284466, 0.013418777845799923, -0.009120743721723557, 0.002195734530687332, 0.049075208604335785, -0.036137983202934265, -0.0028192370664328337, -0.02032581903040409, 0.014619064517319202, -0.024422606453299522, -0.024250110611319542, -0.009221366606652737, -0.008948246948421001, -0.009781979955732822, -0.013907517306506634, -0.009257303550839424, 0.027211297303438187, -0.02518446557223797, 0.017925243824720383, 0.019218966364860535, -0.006562048103660345, -0.02558695711195469, 0.007740773260593414, -0.017882119864225388, -0.005275513045489788, 0.004506466910243034, -0.0027797066140919924, -0.0021651883143931627, -0.014777186326682568, 0.04407281428575516, 0.009041682817041874, -0.003823668695986271, -0.03242931142449379, 0.00551628926768899, -0.011097264476120472, 0.014101575128734112, 0.031135588884353638, -0.0224388986825943, -0.01906084455549717, -0.022280776873230934, 0.002562289359048009, -0.00645423773676157, -0.0016638708766549826, -0.001724064932204783, 0.004355532582849264, -0.018471483141183853, -0.024379482492804527, -0.0066950139589607716, 0.009861040860414505, -0.013885955326259136, 0.01960708387196064, -0.003988977521657944, -0.0006899853469803929, 0.02215140499174595, 0.02284139022231102, -0.01723525859415531, 0.012800665572285652, -0.005329417996108532, -0.006163150537759066, 0.024796348065137863, -0.0034193804021924734, 0.009710106067359447, -0.013770957477390766, 0.011334446258842945, 0.014978432096540928, -0.030934343114495277, -0.00961667113006115, -0.017450878396630287, 0.029870616272091866, -0.0059008123353123665, 0.0021005021408200264, -0.02578820288181305, -0.042232852429151535, -0.0040716324001550674, -0.005584568716585636, -0.009925726801156998, 0.003992571495473385, -0.0005341097712516785, -0.0073957801796495914, -0.003913510590791702, -0.015840914100408554, 0.012347863055765629, -0.013095347210764885, 0.005031143315136433, -0.019650207832455635, -0.0027868938632309437, 0.007367031183093786, 0.0077192108146846294, -0.028979383409023285, -0.003011498600244522, -0.01712026074528694, -0.012671293690800667, -0.000432813074439764, -0.018672728911042213, -0.0014698124723508954, 0.003624219913035631, -0.0028210338205099106, 0.005235982593148947, -0.01903209649026394, -0.004197410773485899, 0.01162194088101387, 0.002086127642542124, 0.016789643093943596, -0.013282218016684055, 0.030848095193505287, -0.002477837959304452, -2.7598291126196273e-05, -0.00026930091553367674, 0.0021723757963627577, -0.0035775022115558386, -0.018025867640972137, -0.0036907028406858444, -0.009738855995237827, -0.012283176183700562, -0.0014338757609948516, 0.06790605932474136, -0.0016962139634415507, -0.009781979955732822, -0.005523476283997297, -0.008215137757360935, -0.012067556381225586, 0.0013521197251975536, 0.016358401626348495, 0.021705789491534233, -0.017752747982740402, 0.002414948772639036, -0.02862001769244671, 0.011442257091403008, 0.012793478555977345, -0.014403443783521652, 0.019190216436982155, 0.018198363482952118, 0.013605648651719093, -0.009235741570591927, 0.00732031324878335, 0.007316719740629196, 0.007762335240840912, -0.006127213593572378, 0.024307608604431152, 0.0016351215308532119, 0.012556295841932297, -0.0007798271835781634, 0.018787726759910583, -0.020368942990899086, 0.02379011921584606, -0.0035792989656329155, 0.0028300180565565825, -0.030790595337748528, -0.005642067641019821, -0.011068514548242092, 0.02350262552499771, 0.002026831964030862, 0.02021082118153572, -0.015697166323661804, 0.011463819071650505, -0.010831332765519619, -0.015481546521186829, 0.01865835301578045, 0.02310013398528099, -0.004323189612478018, -0.014791560359299183, 0.0008517006644979119, 0.00039530411595478654, 0.003361881710588932, -0.017249632626771927, -0.00951604824513197, -0.008179200813174248, 0.007489216048270464, 0.012944412417709827, 0.0033564912155270576, 0.001872304012067616, 0.010809770785272121, -0.008294198662042618, -0.019678957760334015, 0.007323906756937504, -0.022769516333937645, -0.006842354778200388, -0.018298985436558723, -0.02361762337386608, -0.008078577928245068, -0.028663141652941704, -0.013289405032992363, -0.022683268412947655, 0.005857687909156084, -0.0024472917430102825, -0.015208426862955093, 0.027829408645629883, 0.007345468737185001, -0.014360319823026657, -0.003550549503415823, 0.009336364455521107, 0.003361881710588932, 0.02003832347691059, -0.005067079793661833, -0.00590440584346652, -0.0057786270044744015, 0.0032181348651647568, -0.018428359180688858, -0.016070907935500145, 0.0020124572329223156, 0.010033536702394485, 0.01897459663450718, -0.02650693617761135, 0.012096305377781391, -0.026348814368247986, -0.012973162345588207, 0.008711065165698528, -0.017637750133872032, 0.006515330169349909, 0.012793478555977345, 0.01926209032535553, -0.015079054981470108, 0.0051964521408081055, 0.002986342879012227, -0.014417818747460842, -0.002290966920554638, 0.018097739666700363, -0.0016297310357913375, -0.006080495659261942, 0.003733827034011483, -0.008042641915380955, 0.015265925787389278, 0.005800189450383186, -0.021547667682170868, -0.003088762518018484, -0.008423571474850178, 0.0003896889975294471, -0.005757065024226904, -0.003261258825659752, -0.027958780527114868, 0.012462859973311424, 0.01666027121245861, -0.004111162852495909, -0.02304263599216938, -0.026233818382024765, -0.0023844025563448668, 0.0028893135022372007, 0.0055019143037498, -0.01946333609521389, -0.0007263713050633669, 0.0028569705318659544, -0.013986578211188316, -0.008409196510910988, -0.014381881803274155, -0.011183512397110462, 0.002502993680536747, 0.020426440984010696, 0.0055198827758431435, 0.009120743721723557, -0.0016935187159106135, 0.0008409196161665022, -0.003978196531534195, -0.00825826171785593, 0.017407754436135292, -0.013950641267001629, 0.015107803978025913, 0.006623140536248684, 0.008976996876299381, 0.025428835302591324, 0.0014814919559285045, 0.01432438287883997, -0.021418295800685883, -0.015840914100408554, 0.0006279944791458547, -0.0009514251141808927, 0.02000957541167736, -0.024681350216269493, 0.010558213107287884, 0.0004465139645617455, 0.0020286287181079388, -0.002603616565465927, -0.03455676510930061, 0.01857210509479046, 0.004254909697920084, -0.015639668330550194, -0.003523597028106451, -0.009609483182430267, -0.029008133336901665, -0.0027958780992776155, -0.012958787381649017, 0.017537128180265427, 0.015438421629369259, 0.017551502212882042, 0.018643978983163834, -0.0036224229261279106, 0.0007483825320377946, 0.019707705825567245, 0.0028066590894013643, -0.029525622725486755, 0.013648772612214088, -0.009609483182430267, -0.012879726476967335, -0.006199087016284466, -0.019103968515992165, 0.021346421912312508, 0.003566720988601446, -0.014964057132601738, 0.015452796593308449, -0.0029683744069188833, 0.005591756198555231, -0.012211303226649761, -0.009242928586900234, -0.008524194359779358, -0.005379729438573122, 0.00560253718867898, -0.017508378252387047, 0.01602778397500515, 0.014310008846223354, -0.0015353970229625702, -0.028893135488033295, -0.0007115473854355514, 0.013418777845799923, 0.017609000205993652, 0.00818638876080513, -0.021504543721675873, 0.0094729233533144, -0.0037769509945064783, 0.0065979850478470325, -0.0067022014409303665, 0.000305237655993551, -0.014568752609193325, -0.006037371698766947, -0.014051264151930809, 0.007266408298164606, -0.006411113776266575, -0.036022983491420746, -0.026176318526268005, 0.01452562864869833, -0.0006998679600656033, -0.008416383527219296, 0.01917584240436554, 0.03171057626605034, 0.00858888030052185, 0.04769523814320564, 0.01663152128458023, 0.024681350216269493, 0.003624219913035631, 0.015467171557247639, -0.0014195011463016272, -0.015007181093096733, -0.005713941063731909, 0.003769763745367527, 0.017335882410407066, 0.010536651127040386, -0.02570195309817791, 0.021403919905424118, 0.001600981573574245, -0.006824386306107044, 0.010666023008525372, 0.010637274011969566, 0.010471965186297894, 0.019765205681324005, 0.015754666179418564, 0.01576904021203518, -0.0015039524296298623, -0.004093194380402565, -0.007086724508553743, -0.024494480341672897, 0.004578340332955122, 0.006220648996531963, -0.020368942990899086, 0.014834685251116753, -0.008366072550415993, -0.01946333609521389, -3.0209319447749294e-05, 0.010098222643136978, 0.010263532400131226, -0.00645423773676157, 0.013505025766789913, 0.01834210939705372, 0.00967416912317276, 0.002016050973907113, 0.003687109099701047, 0.011384758166968822, -0.02356012538075447, -0.008416383527219296, 0.003938666544854641, -0.009106368757784367, 0.010392904281616211, -0.0065332986414432526, 0.02341637760400772, -0.03723045811057091, 0.006752512883394957, -0.0032325093634426594, 0.023315753787755966, -0.009731668047606945, -0.012010057456791401, 0.013785332441329956, 0.01605653390288353, -0.0005305160884745419, -0.0035343780182302, -0.01129132229834795, -0.024206986650824547, 0.0006432675872929394, 0.004797554109245539, -0.010220407508313656, 0.010565400123596191, 0.01565404236316681, -0.0225826445966959, -0.008646379224956036, -0.029813116416335106, -0.009321989491581917, 0.00645423773676157, 0.00463583879172802, -0.019621457904577255, 0.002849783282727003, -0.007862958125770092, 0.011571628972887993, 0.008610442280769348, -0.021878285333514214, 0.005056298803538084, -0.0008139670826494694, 0.012513171881437302, 0.011241011321544647, 0.012283176183700562, -0.011600378900766373, 0.004193817265331745, 0.0042189727537333965, -0.022683268412947655, 0.005907999351620674, -0.0002751406282186508, 0.008962621912360191, 0.0013700880808755755, -0.013727833516895771, 0.012642543762922287, 0.014432193711400032, 0.009566359221935272, -0.016502149403095245, -0.004660994745790958, -0.008402008563280106, -0.01608528383076191, -0.007374218199402094, 0.025227589532732964, 5.483159839059226e-05, 0.0014877809444442391, -0.0027275984175503254, 0.021389545872807503, 0.006838760804384947, 0.01622902974486351, -0.007280782796442509, 0.0036709376145154238, 0.020642060786485672, 0.01966458186507225, 0.008667941205203533, -0.021274548023939133, 0.007252033334225416, -0.019103968515992165, -0.018471483141183853, -0.014202198013663292, -0.0021508135832846165, 0.01714901067316532, 0.005243170075118542, -0.02177766151726246, -0.024465730413794518, -0.012815040536224842, -0.011751312762498856, -0.017206508666276932, -0.011377571150660515, -0.0035649242345243692, 0.010184471495449543, 0.006472206208854914, 0.004132724832743406, 0.0007582651451230049, 0.02012457326054573, 0.02535696141421795, 0.0035110190510749817, 0.007216096855700016, 0.006522517651319504, 0.0053581674583256245, -0.024350732564926147, -0.0005893624620512128, 0.008006704971194267, 0.0007488317205570638, -0.01666027121245861, 0.004366313572973013, -0.01019165851175785, 0.015093429014086723, -0.013663147576153278, -0.012757541611790657, 0.012376612052321434, 0.010709147900342941, -0.009896976873278618, 0.03196932002902031, -0.03863918036222458, 0.0032540715765208006, -0.008912310935556889, -0.027915656566619873, -0.002343075117096305, -0.01425250992178917, -0.009652607142925262, 0.01975082978606224, 0.0008278925670310855, -0.006400332786142826, -0.009250115603208542, 0.007704836316406727, 0.018227113410830498, -0.00039799936348572373, -0.002425729762762785, 0.0064254882745444775, 0.01465500146150589, 0.02693817764520645, 0.0099760377779603, 0.013303779996931553, 0.007862958125770092, -0.029554372653365135, -0.0018300783121958375, -0.0015228191623464227, 0.0035128160379827023, 0.012800665572285652, -0.01433875784277916, 0.007668899372220039, -0.013720645569264889, 0.029180629178881645, 0.006364395841956139, 0.0034427393693476915, 0.004244128707796335, -0.009264490567147732, 0.0071945348754525185, 0.02347387559711933, -0.008222325704991817, -0.023574499413371086, -0.0006715677445754409, 0.02218015305697918, 0.02049831487238407, -0.01651652343571186, 0.0034319583792239428, 0.01017728354781866, -0.008064203895628452, 0.024652602151036263, 0.005149734206497669, -0.0005646559875458479, 0.024393856525421143, -0.005775033496320248, -0.007906082086265087, 0.0066518899984657764, 0.014058451168239117, 0.00961667113006115, 0.024551978334784508, -0.00260181981138885, 0.00927167758345604, -0.021332046017050743, 0.016990888863801956, 0.0009828697657212615, 0.010982266627252102, 0.008696690201759338, -0.0019262090791016817, -0.009508860297501087, 0.017321506515145302, 0.01412313710898161, -0.018327735364437103, -0.006942977663129568, 0.023516999557614326, -0.02816002629697323, -0.014568752609193325, 0.020656436681747437, -0.01322471909224987, 0.0016297310357913375, 0.017781497910618782, 0.014511254616081715, 0.022424522787332535, 0.023919491097331047, 0.0032073536422103643, 0.02933875098824501, -0.0060050287283957005, -0.0030528258066624403, -0.011082889512181282, 0.03139433264732361, -0.002316122641786933, -0.0036799218505620956, -0.023919491097331047, -0.0034265678841620684, -0.0056744106113910675, -0.0021921410225331783, 0.041945360600948334, -0.021677039563655853, 0.014676563441753387, -0.004560371860861778, 0.008897935971617699, -0.00016721812426112592, -0.022970762103796005, -0.010486340150237083, 0.004506466910243034, 0.014058451168239117, 0.0035936736967414618, 0.007226877845823765, -0.013267843052744865, -0.00014105168520472944, 0.010622899048030376, -0.01129132229834795, -0.009163867682218552, 0.0027365824207663536, -0.00987541489303112, 0.009192617610096931, -0.0019549585413187742, -0.020598936825990677, -0.025975072756409645, 0.012168179266154766, -0.015352173708379269, 0.014446567744016647, 0.009638233110308647, -0.007302344776690006, -0.02685192972421646, 0.010126972571015358, 0.008933872915804386, 0.0014419615035876632, -0.0007955494802445173, 0.0020322224590927362, -0.00041012800647877157, -0.01579779013991356, 0.00857450533658266, -0.0006836964166723192, -0.0017851573647931218, 0.030301855877041817, -0.011471006087958813, -0.002332294126972556, -0.0028982977382838726, -0.005218014121055603, -0.001412313780747354, 0.004520841408520937, 0.003437348874285817, -0.005372541956603527, -0.01868710294365883, 0.007162191439419985, 0.012448485940694809, 0.018442733213305473, 0.014367506839334965, -0.025601331144571304, -0.0007901589851826429, 0.0167465191334486, -0.002767128637060523, 0.018442733213305473, 0.006310490891337395, 0.0032648525666445494, 0.020828932523727417, 0.0018848818726837635, -0.0042836591601371765, -0.02584570087492466, 0.0015030540525913239, 0.0016108641866594553, 0.009710106067359447, 0.007410155143588781, 0.014058451168239117, 0.012426923029124737, 0.009781979955732822, -0.001958552049472928, -0.02220890298485756, 0.00795639306306839, 0.006957352161407471, -0.002078940160572529, -0.002307138405740261, -0.008912310935556889, 0.007101099006831646, 0.0035361747723072767, 0.028404396027326584, -0.01415188703685999, -0.006141588091850281, -0.00044224646990187466, 0.020857682451605797, -0.006177525036036968, -0.018313361331820488, -0.030071862041950226, -0.010011974722146988, -0.006306897383183241, -0.0017007060814648867, 0.003022279590368271, -0.011902247555553913, 0.006342833861708641, 0.03734545782208443, 0.014518441632390022, 0.004898176994174719, -0.00503833033144474, 0.0037841382436454296, -0.0016773472307249904, -0.015007181093096733, 0.013102534227073193, -0.0018327735597267747, -0.023085759952664375, -0.0049233329482376575, 0.014863434247672558, -0.025227589532732964, -0.0063140843994915485, 0.01312409620732069, 0.01729275844991207, -0.0073957801796495914, 0.0044381869956851006, -0.01103257853537798, -0.008703877218067646, -0.009321989491581917, -0.007676086854189634, 0.006479393690824509, 0.010809770785272121, -0.018083365634083748, -0.008790126070380211, 0.009077619761228561, 0.0011059531243517995, -0.0017438301583752036, -0.018960222601890564, 0.0012703636894002557, 0.010781020857393742, 0.008121702820062637, 0.017163384705781937, -0.0010304859606549144, 0.00788452010601759, 0.018054615706205368, -0.029611870646476746, 0.010414466261863708, -0.018471483141183853, 0.007262814324349165, 0.00418662978336215, 0.015869662165641785, -0.00810014083981514, -0.007891707122325897, -0.0010053302394226193, -0.006278147920966148, -0.036281730979681015, 0.0011239214800298214, 0.018183989450335503, -0.010356967337429523, -0.010910393670201302, 0.010781020857393742, -0.005624099168926477, -0.004617870785295963, -0.00808576587587595, -0.014561565592885017, -0.003981790505349636, -0.01657402329146862, -0.0015785210998728871, 0.028893135488033295, -0.00013981635856907815, -0.005573787726461887, -0.015582169406116009, 0.022367024794220924, -0.009357926435768604, 0.02229515090584755, 0.006687826476991177, -0.012563482858240604, -0.006040965206921101, 0.010047911666333675, 0.016703395172953606, 0.004305221140384674, -0.007934831082820892, 0.0146406264975667, 0.008042641915380955, 0.015481546521186829, -0.026262566447257996, 0.0045999023132026196, -0.001548873377032578, -0.0014482504921033978, -0.030704347416758537, -0.005530663765966892, -0.01120507437735796, -0.024221360683441162, 0.004427406005561352, 0.004995206370949745, -0.019995199516415596, 0.007977955043315887, -0.005800189450383186, -0.003820075187832117, -0.0051389532163739204, -0.0021993282716721296, 0.00930042751133442, 0.01111882645636797, -0.007467654068022966, -0.009465736337006092, 0.00727000180631876, -0.015050305053591728, 0.02266889251768589, -0.018902722746133804, 0.01712026074528694, -0.0028731420170515776, -0.013160033151507378, 0.01608528383076191, -0.017781497910618782, 0.015697166323661804, 0.011255386285483837, -0.008581692352890968, -0.01703401282429695, 0.013454713858664036, 0.0004096787888556719, 0.009731668047606945, -0.03332054242491722, 0.004506466910243034, 0.009746043011546135, 0.004053663928061724, -0.016358401626348495, -0.003823668695986271, 0.02818877622485161, -0.03475801274180412, 0.01934833824634552, 0.014389069750905037, -0.0017734779976308346, -0.026636309921741486, 0.0060050287283957005, -0.023315753787755966, -0.027470041066408157, -0.002272998681291938, 0.015539044514298439, -0.018399609252810478, 0.001115835621021688, -1.4557185750163626e-05, 0.008998558856546879, -4.301177978049964e-05, -0.006526111159473658, -0.014029702171683311, 0.015783414244651794, -0.014180636033415794, -0.01963583193719387, -0.015553419478237629, -0.010019161738455296, 0.017565876245498657, -0.005340198986232281, -0.02856251783668995, -0.004222566727548838, -0.017939619719982147, -0.0008198068244382739, -0.007690461818128824, -0.017522752285003662, 0.006925009191036224, -0.0009424409363418818, 0.003823668695986271, -0.017594626173377037, 0.010162909515202045, 0.021677039563655853, -0.00660517206415534, -0.007977955043315887, 0.016933390870690346, 0.014762811362743378, -0.0014168057823553681, 0.008747002109885216, -0.00857450533658266, -0.03386678174138069, -0.003927885089069605, -0.006781262345612049, -0.006256585940718651, 0.008207950741052628, -0.00167644873727113, 0.008610442280769348, -0.001992692006751895, 0.005735503043979406, 0.0028569705318659544, -0.019218966364860535, 0.004869427997618914, 0.014662188477814198, -0.01640152744948864, -0.0014446567511186004, 0.004391469061374664, -0.006630328018218279, -0.024451356381177902, 0.009436987340450287, -0.005685191601514816, -0.00970291905105114, 0.01180881168693304, -0.019161468371748924, 0.011197887361049652, 0.006457831710577011, -0.03237181156873703, -0.019391462206840515, -0.003261258825659752, 0.014266883954405785, 0.01252035889774561, -0.012470047920942307, -0.007111879996955395, 0.00495208241045475, -0.0013494244776666164, 0.018672728911042213, -0.007381405681371689, -0.022884514182806015, 0.012412548996508121, -0.0062673669308424, -0.00011780511704273522, -0.0004864935763180256, 0.02044081501662731, 0.0015542638720944524, 0.011981307528913021, 0.017206508666276932, 0.013145658187568188, 0.009551984257996082, -0.027211297303438187, 0.009192617610096931, -0.017192134633660316, 0.013799706473946571, 0.009012933820486069, -0.004639432765543461, -0.010759458877146244, 0.01891709864139557, 0.013555336743593216, -0.024753224104642868, -0.0006230531726032495, -0.014216572977602482, -0.006184712518006563, -0.016818393021821976, 0.0005839719669893384, 0.01582653820514679, 0.0015336002688854933, 0.016272153705358505, -0.0014832888264209032, 0.0039350725710392, -0.03326304256916046, -0.012275989167392254, -0.013763770461082458, -0.01888834871351719, 0.024825097993016243, 0.006051746662706137, 0.02682317979633808, 0.02209390513598919, 0.010572588071227074, 0.018845224753022194, -0.020598936825990677, -0.0019010533578693867, 0.014964057132601738, -0.00988978985697031, 0.014029702171683311, -0.007424529641866684, -0.028332524001598358, 0.00012678929488174617, 0.009559172205626965, 0.008013891987502575, 0.013454713858664036, 0.0019172248430550098, 0.002163391560316086, 0.012491609901189804, -0.012462859973311424, 0.012664105743169785, 0.003548752749338746, -0.0002188771904911846, 0.005713941063731909, 0.011880684643983841, -0.008732627145946026, -0.01643027551472187, 0.0012164585059508681, -0.001612661057151854, 0.007575463969260454, 0.0041219438426196575, -0.0023520593531429768, 0.01671776920557022, -0.016128407791256905, 0.014245321974158287, -0.00035869356361217797, -0.010910393670201302, -0.024738850072026253, -0.0019890982657670975, 0.006677045486867428, -0.014410631731152534, 0.007022038102149963, -0.001915428088977933, -0.006971726659685373, -0.002564086113125086, -0.012412548996508121, 0.013778144493699074, 0.013418777845799923, -0.021662665531039238, -0.005045517813414335, 0.0013036051532253623, 0.012304738163948059, 0.013950641267001629, 0.012470047920942307, -0.018212737515568733, 0.005297075025737286, -0.008761376142501831, -0.006608766037970781, 0.003361881710588932, -0.004797554109245539, 0.00398538401350379, -0.030388103798031807, -0.020670810714364052, -0.0141375120729208, 0.01689026691019535, -0.015596543438732624, 0.002603616565465927, -0.004628651775419712, 0.006357208825647831, -0.007568276487290859, 0.0023215131368488073, 0.02238139882683754, -0.007697648834437132, 0.018643978983163834, 0.00931480247527361, 0.00807139091193676, 0.0130378482863307, 0.01264973171055317, -0.01597028598189354, -0.012491609901189804, 0.01322471909224987, -0.0032576650846749544, -0.022654518485069275, -0.006730950903147459, 0.00022303237346932292, -0.000288167706457898, 0.010831332765519619, 0.011758499778807163, 0.012434110976755619, 0.013735020533204079, 0.0059008123353123665, -0.02229515090584755, 0.011629127897322178, -0.00278330035507679, 0.008229512721300125, 0.014417818747460842, 0.014288446865975857, -0.011147575452923775, -0.01180881168693304, 0.011327259242534637, -0.015452796593308449, -0.008078577928245068, 0.03265930712223053, 0.01162194088101387, -0.0005969990161247551, 0.02044081501662731, -0.0032666493207216263, -0.010436028242111206, -0.007298751268535852, 0.02266889251768589, -0.0043878755532205105, -0.006245804950594902, -0.003845230909064412, 0.00631767837330699, 0.02215140499174595, -0.016645897179841995, 0.0032936017960309982, -0.014849059283733368, -0.003200166393071413, -0.03202681988477707, -0.005279106553643942, -5.320321633917047e-06, 0.009264490567147732, -0.0029054852202534676, -0.0025748671032488346, 0.0071226609870791435, 0.004488498438149691, 0.008330135606229305, -0.002441901247948408, 0.00856013037264347, -0.012067556381225586, -0.007147816941142082, -0.004625057801604271, 0.0031821979209780693, 0.014849059283733368, -0.0013718849513679743, 0.015395297668874264, -0.007381405681371689, -0.0034930508118122816, -0.013461901806294918, 0.0035936736967414618, -0.007877333089709282, 0.0040716324001550674, 0.011729750782251358, 0.005142547190189362, 0.003115714993327856, 0.024436980485916138, -0.01860085502266884, -0.028016280382871628, 0.0027024426963180304, -0.02310013398528099, 0.005120984744280577, 0.010615712031722069, 0.018672728911042213, -0.00978916697204113, 0.007676086854189634, -0.009551984257996082, -0.008502631448209286, 0.004132724832743406, -0.0009586124215275049, -0.013519400730729103, 0.006048152688890696, 0.010040723718702793, 0.008976996876299381, 0.010464777238667011, 0.011183512397110462, -0.011866310611367226, 0.013217532075941563, 0.011284135282039642, -0.012261614203453064, -0.016760893166065216, -0.016559647396206856, -0.0056169116869568825, -0.005548632238060236, -0.018413983285427094, 0.021475793793797493, -0.016818393021821976, 0.002815643325448036, -0.006515330169349909, 0.012268802151083946, -0.0067489189095795155, -0.006296116393059492, 0.004215379245579243, 0.008409196510910988, 0.0034607078414410353, -0.015122178941965103, 0.02281264029443264, 0.01462625153362751, 0.028016280382871628, -0.03159558027982712, 0.0047616176307201385, -0.020311443135142326, 0.03222806379199028, -0.01871585287153721, -0.004024914465844631, 0.01142069511115551, -0.004858647007495165, 0.003624219913035631, -0.0038883548695594072, 0.0020735496655106544, 0.006792043335735798, 0.013907517306506634, 0.012369425036013126, -0.008933872915804386, -0.016530899330973625, 7.59725080570206e-05, 0.003036654321476817, -0.017019638791680336, -0.02688067965209484, 0.030244357883930206, 0.0171777606010437, -0.002170578809455037, 0.016185905784368515, 0.01189505960792303, 0.0025676798541098833, 0.0016908234683796763, -0.011413507163524628, 0.0005898117087781429, -0.014130325056612492, -0.002440104493871331, -0.004161474294960499, -0.015955910086631775, 0.007546714507043362, 0.021073302254080772, -0.007402967661619186, -0.043239083141088486, -0.00825826171785593, -0.011801624670624733, 0.04059413820505142, 0.04079538211226463, 0.03395302966237068, 0.004010539967566729, -0.0010484543163329363, 0.005117391236126423, 0.016962138935923576, -0.0005871164612472057, -0.004348345100879669, -0.010946329683065414, 0.0011347024701535702, -0.013181595131754875, -0.017939619719982147, -0.014417818747460842, -0.022022031247615814, 0.012872539460659027, 0.0021418295800685883, 0.005171296186745167, 0.006242210976779461, -0.017666500061750412, 0.005056298803538084, -0.03498800843954086, 0.023402003571391106, 0.005282700061798096, -0.00020731004769913852, -0.0016800424782559276, 0.01680401712656021, 0.0024077612906694412, 0.02393386699259281, -0.01637277752161026, -0.011535692028701305, 0.014496879652142525, -0.005875656381249428, 0.019908951595425606, 0.005239576101303101, -0.02206515707075596, -0.01283660251647234, 0.0056276931427419186, 0.01030665636062622, 0.03271680325269699, 0.01333971694111824, 0.016530899330973625, 0.005340198986232281, 0.012498796917498112, 0.017882119864225388, -0.006684232968837023, 0.0033816469367593527, -0.003288211300969124, -0.01602778397500515, 0.012484421953558922, 0.0066518899984657764, -0.003599064191803336, 0.014468129724264145, 0.0038344496861100197, 0.0017582048894837499, -0.008890748955309391, 0.007726398296654224, -0.0013772754464298487, 0.010098222643136978, -0.017982743680477142, -0.010119784623384476, 0.004344751592725515, 0.00797076802700758, -8.080150291789323e-05, 0.015539044514298439, 0.008545756340026855, -0.010594150051474571, -0.016933390870690346, 0.00358468946069479, -0.011758499778807163, -0.014259696938097477, -0.004183036275207996, -0.010658835992217064, -0.001323370379395783, -0.02044081501662731, 0.010249157436192036, -0.008653566241264343, 0.006950164679437876, 0.008617629297077656, 0.018471483141183853, 0.00022909669496584684, 0.0018615229055285454, 0.0011122419964522123, 0.011629127897322178, -0.0006360802217386663, -0.0041686613112688065, -0.00021595731959678233, -0.006677045486867428, 0.011449444107711315, 0.01706276275217533, -0.000263011985225603, 0.004262097179889679, 0.007108286488801241, -0.005372541956603527, -0.005214420612901449, -0.001981911016628146, -0.01030665636062622, 0.0006544978241436183, 0.008143264800310135, 0.0013431354891508818, -0.007740773260593414, -0.012664105743169785, -0.00338524067774415, 0.022424522787332535, 0.018471483141183853, -0.008042641915380955, 0.010241969488561153, 0.008215137757360935, 0.005537851247936487, -0.00047885702224448323, -0.0027527539059519768, 0.012031619437038898, -0.015208426862955093, 0.018586480990052223, -0.012240052223205566, 0.007927644066512585, 0.0029953268822282553, 0.0042261602357029915, -0.0011598581913858652, 0.017997117713093758, 0.012010057456791401, -0.003708671312779188, 0.008933872915804386, 0.0009388472535647452, -0.012060368433594704, -0.0006226039840839803, 0.022769516333937645, 0.007108286488801241, 0.007949206046760082, 0.003895542351529002, 0.0146406264975667, -0.003550549503415823, -0.007841396145522594, 0.007474841084331274, 0.00958792120218277, -0.0041219438426196575, 0.003873980138450861, 0.013001911342144012, -0.01706276275217533, -0.0006571930716745555, 0.011880684643983841, -0.012110680341720581, 0.009631045162677765, -0.03326304256916046, 0.021418295800685883, 0.01972208172082901, -0.010896018706262112, -0.015984660014510155, 0.0027365824207663536, 0.012434110976755619, 0.030991841107606888, -0.017407754436135292, 0.00021528350771404803, 0.015366548672318459, -0.00012499246804509312, -0.012376612052321434, -0.03386678174138069, -0.007223283872008324, -0.005142547190189362, -0.003992571495473385, 0.006414707284420729, 0.004093194380402565, -0.008660753257572651, 0.03352178633213043, -0.015237175859510899, -0.02180641144514084, -0.0075107780285179615, -0.020110197365283966, 0.003539768513292074, 0.013792519457638264, -0.000194170672330074, -0.01272160466760397, 0.0058936248533427715, 0.017709624022245407, 0.008107327856123447, 0.013548149727284908, -0.010234782472252846, -0.009221366606652737, 0.001805820968002081, 0.0025479146279394627, 0.017882119864225388, -0.01240536104887724, 0.009113556705415249, 0.00847388245165348, 0.008833250030875206, -0.003863199148327112, 0.002077143406495452, 0.023761369287967682, -0.013354090973734856, -0.021590791642665863, 0.0047616176307201385, 0.0006913329707458615, -0.012951599434018135, -0.0019459743052721024, 0.015208426862955093, 0.001307198777794838, -0.014748436398804188, -0.035907987505197525, -0.023775745183229446, -0.008639191277325153, 0.019046470522880554, -0.0006365294684655964, -0.005979872774332762, 0.036224231123924255, -0.005606130696833134, 0.00988978985697031, 0.020713934674859047, -0.005095829255878925, -0.0007137934444472194, 0.02916625514626503, -0.01321034412831068, 0.01911834441125393, -0.02189265936613083, -0.010220407508313656, 0.02252514660358429, 0.005455196835100651, 0.0046538072638213634, -0.009659795090556145, 0.0015461781295016408, -0.006342833861708641, 0.009566359221935272, -0.007733585778623819, 0.004970050882548094, 0.0035810957197099924, 0.001191302784718573, -0.0032055568881332874, 0.011780062690377235, -0.008632004261016846, 0.002616194309666753, -0.015150927938520908, -0.010816957801580429, -0.007798271719366312, -0.005961904767900705, -0.0019262090791016817, -0.02925250306725502, 0.011312884278595448, -0.0032576650846749544, 0.010299468412995338, -0.008711065165698528, 0.031221836805343628, -0.00815763883292675, -0.015179677866399288, -0.005972685758024454, 0.014374694786965847, 0.004258503206074238, -0.0062637729570269585, -0.004682556726038456, 0.005368948448449373, 0.01726400852203369, 0.025026343762874603, -0.011966933496296406, 0.00428725266829133, -0.025055091828107834, 0.0026934584602713585, 0.0034157868940383196, -0.011528505012392998, 0.019218966364860535, 0.0035523464903235435, -0.013332528993487358, 0.0023718245793133974, -0.0381791889667511, 0.0025568988639861345, 0.0030097016133368015, -0.007848583161830902, 0.007212502881884575, 0.015323424711823463, -0.005595349706709385, -0.01963583193719387, -0.015380923636257648, 0.012319113127887249, 0.006511736661195755, 0.048298973590135574, 0.014496879652142525, 0.0163152776658535, -0.02575945295393467, 0.005257544573396444, -0.017767122015357018, -0.005164109170436859, 0.0009190820273943245, -0.0030779815278947353, -0.0029180629644542933, 0.0047005251981318, -0.012045994400978088, 0.02218015305697918, 0.012319113127887249, -0.0016935187159106135, -0.0040069459937512875, -0.011370383203029633, -0.01292285043746233, -0.0010241969721391797, 0.002639553276821971, -0.0006266468553803861, 0.016042159870266914, -0.014187823981046677, -0.010845706798136234, 0.0011922012781724334, 0.0041147563606500626, 0.00930042751133442, 0.011952558532357216, 0.005095829255878925, -0.004409437533468008, 0.010960704647004604, -0.0029737649019807577, -0.016300903633236885, 0.01103257853537798, 0.012973162345588207, 0.020311443135142326, 0.02032581903040409, 0.006465018726885319, -0.002691661473363638, -0.008021079935133457, -0.015668416395783424, -0.0078701451420784, 0.0042333477176725864, -0.006306897383183241, -0.0013718849513679743, -0.011284135282039642, -0.0017402364173904061, 0.017795871943235397, -0.017192134633660316, 0.003038451075553894, 0.003863199148327112, -0.007726398296654224, -0.022050781175494194, -0.006993289105594158, 0.0039530410431325436, 0.00013992867025081068, 0.010356967337429523, -0.01605653390288353, -0.003448129864409566, -0.020843306556344032, -0.0011688423110172153, 0.0068136053159832954, 0.0161715317517519, 0.006396739277988672, -0.005645661149173975, 0.014173449017107487, 0.011780062690377235, -0.0024293235037475824, 0.0033331322483718395, 1.084419091057498e-05, 0.011586003936827183, -0.021820787340402603, -0.014144699089229107, -0.02333012968301773, -0.013634397648274899, -0.021533291786909103, -0.029266878962516785, -0.0034319583792239428, -0.034873008728027344, -0.013648772612214088, 0.005444415379315615, -0.0130378482863307, 0.01300909835845232, 0.009861040860414505, -0.008567318320274353, 0.009329176507890224, -0.010752271860837936, -0.0014994603116065264, 0.015064680017530918, 0.026981301605701447, -0.004520841408520937, 0.0017842589877545834, -0.009631045162677765, 0.007676086854189634, 0.007079537026584148, 0.0006356310332193971, -0.008150451816618443, -0.015064680017530918, 0.009631045162677765, 0.011276948265731335, -0.005994247738271952, 0.01364158559590578, 0.0063140843994915485, 0.016185905784368515, -0.022827014327049255, -0.02853376790881157, -0.012355050072073936, -0.020742684602737427, -0.003482269821688533, 0.025917574763298035, -0.00799951795488596, 0.007942019030451775, -0.010745083913207054, 0.014482504688203335, 0.017594626173377037, 0.015035931020975113, -0.0011877091601490974, 0.0025101809296756983, 0.0045424033887684345, 0.008502631448209286, -0.01452562864869833, 0.00938667543232441, 0.025745078921318054, 0.015596543438732624, -0.006350021343678236, 0.007230471353977919, 0.00937230046838522, -0.005588162690401077, -0.005250357091426849, 0.005724722053855658, 0.004215379245579243, -0.009666982106864452, 0.004222566727548838, 0.00620268052443862, -0.004919739440083504, -0.004359126091003418, -0.002143626334145665, -0.0071370359510183334, 0.014475317671895027, -0.014734062366187572, -0.01854335516691208, 0.010270719416439533, 0.0034355521202087402, 0.002986342879012227, -0.003737420542165637, 0.012204115279018879, -0.025428835302591324, -0.0020142539869993925, 0.01657402329146862, 0.004643026273697615, -0.011011015623807907, -0.009034495800733566, 0.002662912243977189, -0.0034948475658893585, -0.0017519159009680152, 0.0218639113008976, -0.006439863238483667, 0.02367512136697769, 0.003906323108822107, 0.012577857822179794, -0.014094388112425804, 0.00818638876080513, -0.007647337391972542, 0.003113918239250779, 0.0034409426152706146, -0.019190216436982155, -0.023775745183229446, 0.03507425636053085, -0.02307138405740261, -0.01917584240436554, -0.010335405357182026, 0.004783179610967636, -0.004862240515649319, 0.007352656219154596, 0.0035451590083539486, 0.015323424711823463, -0.0019513648003339767, -0.0009011136717163026, -0.02713942341506481, -0.007877333089709282, -0.004165067803114653, 0.009781979955732822, 0.02639194019138813, -0.010723521932959557, -0.024968843907117844, 0.015251550823450089, -0.009458549320697784, 0.006781262345612049, -0.008114514872431755, -0.008049828931689262, -0.004894583486020565, 0.012779103592038155, -0.016530899330973625, -0.016214655712246895, -0.011815998703241348, 0.012333488091826439, 0.005200045648962259, -0.0031336834654212, -0.0370292142033577, 0.005167702678591013, 0.01700526289641857, 0.007568276487290859, -0.023991364985704422, 0.011082889512181282], "de927a9a-e05d-431c-91f7-a4603741e016": [-0.03988182917237282, 0.0046143620274960995, -0.010431112721562386, 0.011703770607709885, -0.022361306473612785, -0.02545316331088543, 0.013538584113121033, 0.01565447635948658, 0.00040453742258250713, 0.01580282300710678, 0.0034158769994974136, 0.004676823504269123, -0.016333747655153275, -0.010126611217856407, -0.014686319045722485, 0.0105091892182827, -0.009345839731395245, 0.013483930379152298, 0.010228111408650875, -0.0545603409409523, 0.05993204936385155, -0.014756588265299797, -0.04047521576285362, -0.023282617330551147, -0.00883833784610033, 0.011656924150884151, -0.02618708834052086, -0.004282533656805754, -0.045659538358449936, -0.011243115179240704, 0.019628604874014854, 0.03226149454712868, -0.010071957483887672, -0.0046143620274960995, -0.013710354454815388, -0.043941840529441833, 0.022173920646309853, 0.04484753683209419, -0.0212994571775198, -0.02681170590221882, -0.04300491511821747, -0.0139211630448699, -0.0006402329308912158, -0.0010745372856035829, -0.03666504845023155, -0.013741585426032543, 0.03847643733024597, -0.03800797462463379, 0.010782459750771523, -0.014850281178951263, 0.017426827922463417, -0.0036657240707427263, -0.0005201892927289009, -0.02448500692844391, 0.018394986167550087, -0.030996643006801605, 0.023829158395528793, 0.08369874209165573, 0.0004528476856648922, -0.04756462201476097, -0.03149633854627609, -0.031902339309453964, 0.013101352378726006, -0.0071831014938652515, -0.006000231951475143, -0.024703621864318848, -0.00044528397847898304, 0.02863871306180954, -0.01659920997917652, 0.012718774378299713, -0.0024574794806540012, 0.023157693445682526, -0.049688324332237244, 0.01772352121770382, -0.028841713443398476, 0.007374390494078398, 0.012999852187931538, 0.016911519691348076, 0.02704593725502491, 0.01766105927526951, -0.021892843768000603, 0.011719386093318462, 0.030496949329972267, 0.019862836226820946, 0.02670239843428135, 0.012101964093744755, -0.059807125478982925, -0.048033084720373154, -0.02034691534936428, 0.0009174069855362177, -0.013413661159574986, 0.012710966169834137, -0.016505517065525055, -0.014046085998415947, 0.015670090913772583, 0.021174533292651176, 0.0056371730752289295, 0.010282766073942184, 0.01570132188498974, -0.01920698769390583, 0.002508229576051235, 0.02510962449014187, -0.057933274656534195, 0.0029298465233296156, -0.020440608263015747, 0.018551139160990715, -0.012336195446550846, -0.011930194683372974, 0.005816750694066286, 0.016505517065525055, 0.021065225824713707, -0.01630251668393612, 0.0021451706998050213, 0.002941558137536049, -0.01948806643486023, -0.036446429789066315, -0.045940618962049484, -0.006827849894762039, -0.0035115214996039867, -0.005512249656021595, 0.01823883131146431, -0.020893456414341927, 0.04109983146190643, 0.007237755227833986, 0.004594842437654734, -0.006476502865552902, -0.006136867217719555, 0.0051765176467597485, 0.041224755346775055, -0.004466015379875898, 0.010329611599445343, -0.022626768797636032, 0.013569815084338188, 0.0012424032902345061, -0.01733313500881195, 0.02728017047047615, 0.01681782677769661, 0.04334845393896103, -0.049407243728637695, 0.02318892441689968, -0.06086897477507591, -0.016240054741501808, -0.03347949683666229, 0.01329654548317194, 0.008627529256045818, -0.005180421285331249, -0.04615923389792442, 0.029872331768274307, -0.023876003921031952, 0.04644031077623367, -0.04522230848670006, -0.0017684482736513019, -0.004024879075586796, 0.03663381561636925, 0.01692713424563408, -0.054810184985399246, -0.005352191161364317, 0.023376310244202614, -0.0011653020046651363, 0.020268838852643967, 0.03663381561636925, -0.07114393264055252, 0.006827849894762039, 0.0020026799757033587, 0.018145138397812843, 0.024360083043575287, 0.06268036365509033, -0.005961193237453699, -0.002639008918777108, 0.011500770226120949, 0.01511574350297451, -0.02431323565542698, 0.019238218665122986, 0.028029710054397583, -0.0005245811189524829, -0.01830129325389862, 0.044129226356744766, -0.004313764628022909, 0.02323577180504799, -0.01976914331316948, -0.031043490394949913, -0.00423178356140852, 0.005395133513957262, -0.006882504094392061, -0.018597986549139023, 0.02966933138668537, -0.025156470015645027, -0.013796239160001278, 0.011086960323154926, 0.0008564091403968632, 0.01003291830420494, 0.002986452542245388, -0.01082149799913168, 0.005836269818246365, 0.02932579256594181, -0.0004884704248979688, -0.016958365216851234, 0.012351810932159424, -0.000919358863029629, 0.033323343843221664, 0.011079153046011925, -0.025015931576490402, -0.02938825450837612, 0.04859524220228195, -0.02148684300482273, 0.038601361215114594, -0.015795014798641205, -0.0761408731341362, 0.03813289850950241, -0.016349364072084427, 0.062024518847465515, -0.01567789912223816, 0.023673003539443016, 0.010321804322302341, -0.011328999884426594, 0.00854945182800293, -0.017458058893680573, 0.035884276032447815, -0.006484310608357191, -0.023423155769705772, 0.029966024681925774, 0.032355185598134995, -0.015334359370172024, -0.013874316588044167, -0.017301904037594795, -0.032136570662260056, -0.00586750078946352, 0.059807125478982925, -0.025609318166971207, -0.021736688911914825, 0.025921626016497612, -0.0022525268141180277, 0.000271074241027236, -0.02051868475973606, -0.00038940997910685837, 0.014366202987730503, 0.016864672303199768, -0.03604042902588844, -0.019253835082054138, 0.0008744645165279508, -0.0029552215710282326, 0.06261790543794632, -0.025468777865171432, 0.003978032618761063, 0.019347527995705605, 0.012859312817454338, -0.015857476741075516, -0.003661820199340582, -0.013085736893117428, 0.0019938962068408728, 0.016583595424890518, 0.029107175767421722, -0.009806495159864426, -0.015927746891975403, -0.002769788261502981, 0.037352126091718674, 0.007928738370537758, -0.041505832225084305, -0.0019929201807826757, -0.02620270475745201, 0.013733777217566967, -0.0007812598487362266, 0.008729029446840286, 0.0008978876867331564, 0.039069823920726776, -0.01972229778766632, 0.016099516302347183, -0.009509801864624023, 0.022236382588744164, 0.01983160525560379, -0.006203232798725367, -0.0077413530088961124, 0.022002151235938072, 0.019628604874014854, 0.0244381595402956, 0.016396209597587585, -0.026515012606978416, 0.008073180913925171, -0.02415708266198635, 0.01727067492902279, 0.004563611466437578, 0.008447951637208462, 0.014756588265299797, -0.0008520173141732812, 0.015186012722551823, -0.01269535068422556, -0.011368039064109325, 0.024391314014792442, -0.04750216007232666, 0.00861191377043724, 0.012039502151310444, 0.0017957753734663129, 0.007608621846884489, 0.016895903274416924, 0.03778935968875885, -0.016739748418331146, -0.00957226287573576, -0.03194918483495712, -0.024453775957226753, -0.002964981133118272, 0.026062166318297386, -0.009072569198906422, -0.0010989364236593246, -0.01204731035977602, 0.04166198894381523, -0.025437548756599426, 0.005621557589620352, 0.020300069823861122, -0.051281098276376724, 0.03143387660384178, 0.06808330863714218, 0.0004738309362437576, -0.02663993649184704, -0.012023886665701866, 0.0006812234641984105, -0.002283757785335183, -0.008120027370750904, -0.019925298169255257, -0.031855493783950806, -0.01795775257050991, 0.0227204617112875, -0.006496021989732981, -0.045378461480140686, 0.005910443142056465, 0.05053155496716499, -0.03597796708345413, 0.04234906658530235, 0.0011428548023104668, -0.013116967864334583, -0.0027717400807887316, -0.01033741980791092, -0.007253370713442564, -0.013835277408361435, 0.002551172161474824, -0.030044101178646088, -0.024079004302620888, -0.03096541203558445, -0.022579923272132874, 0.003263626480475068, -0.038164131343364716, 0.0008568971534259617, -0.0032929053995758295, 0.03363565355539322, -0.012000463902950287, 0.025484394282102585, -0.002088564680889249, -0.016068285331130028, 0.003816022537648678, -0.02482854574918747, -0.011305577121675014, 0.0010403785854578018, -0.027030322700738907, 0.007218236103653908, 0.004106860142201185, 0.049688324332237244, -0.012632888741791248, -0.0397881343960762, -0.030778028070926666, 0.030356410890817642, -0.04050644487142563, -0.0070230429992079735, -0.03454134985804558, -0.004489438142627478, 0.026468167081475258, 0.0006968388915993273, 0.044129226356744766, -0.008658760227262974, -0.017348751425743103, -0.018035830929875374, -0.009525417350232601, -0.03881997615098953, 0.0007105024415068328, 0.01175842434167862, -0.02465677633881569, -0.029075944796204567, -0.0448787659406662, 0.01948806643486023, -0.007253370713442564, -0.003452963661402464, 0.03148072212934494, 0.017864061519503593, 0.006019751075655222, 0.011688155122101307, 0.002639008918777108, 0.020581146702170372, -0.0016025343211367726, -0.0023969695903360844, -0.018566755577921867, -0.017817214131355286, -0.006472598761320114, -0.012539196759462357, 0.017864061519503593, -0.019456835463643074, -0.019800374284386635, -0.012796850875020027, 0.005512249656021595, 0.011032306589186192, -0.016677286475896835, 0.00024179529282264411, -0.06289898604154587, 0.03682120144367218, -0.011969232931733131, -0.023438772186636925, -0.032011646777391434, 0.010790267027914524, -0.043785687536001205, -0.014163201674818993, -0.004056110046803951, 0.025500008836388588, 0.008877376094460487, 0.022314460948109627, 0.004208360332995653, 0.032292723655700684, 0.05087509751319885, 0.043567072600126266, 0.004325476009398699, 0.0011526144808158278, 0.045440923422575, 0.007573487237095833, -0.042817529290914536, 0.023251386359333992, 0.05983835831284523, -0.018160754814743996, 0.035197194665670395, 0.022923462092876434, 0.020487453788518906, -0.011157230474054813, 0.01914452575147152, 0.02426639012992382, -0.027545632794499397, -0.023501234129071236, 0.07639072090387344, -0.032011646777391434, 0.02209584414958954, 0.051000017672777176, 0.0008310340926982462, -0.0026448648422956467, -0.0009774287464097142, 0.024922238662838936, 0.02147122658789158, 0.003730137599632144, 0.026280781254172325, -0.012484542094171047, 0.018941525369882584, -0.018394986167550087, -0.015467090532183647, -0.010759036988019943, -0.009345839731395245, 0.014061701484024525, -0.013499545864760876, 0.008713413961231709, 0.019253835082054138, -0.03385426849126816, 0.00868999119848013, -0.00954884011298418, -0.00039990158984437585, 0.0038726285565644503, -0.016005823388695717, 0.019815990701317787, -0.03703981637954712, -0.02846694365143776, 0.02318892441689968, 0.004832977894693613, 0.011258730664849281, 0.002959125442430377, -0.043848149478435516, -0.0033456075470894575, 0.02624955028295517, 0.0023559790570288897, -4.644982618629001e-05, 0.012507965788245201, -0.03388550132513046, 0.004060013685375452, 0.05562219023704529, 0.03232395648956299, -0.004212264437228441, -0.006636560894548893, -0.01664605736732483, -0.025094008073210716, -0.027686171233654022, -0.025531239807605743, -0.01082149799913168, -0.014522356912493706, -0.021674226969480515, 0.01457701064646244, 0.0029103271663188934, -0.030481334775686264, -0.06046297401189804, 0.03369811549782753, -0.02478170022368431, 0.055153727531433105, 0.012851505540311337, -0.015919938683509827, 0.011414884589612484, -0.012586042284965515, -0.04188060387969017, -0.03572812303900719, -0.030699949711561203, -0.02239253744482994, -0.040881216526031494, 0.05499757081270218, -0.041162293404340744, 0.0038472535088658333, -0.004032686818391085, -0.024110235273838043, 0.019160142168402672, -0.0053209601901471615, 0.046783849596977234, -0.014920550398528576, -0.0289822518825531, -0.03757074475288391, -0.009330224245786667, -0.01823883131146431, 0.011500770226120949, -0.012773428112268448, 0.030200256034731865, -0.00020971044432371855, -0.013140390627086163, 0.030325179919600487, -0.0001651820493862033, -0.003628637408837676, -0.0010638016974553466, -0.03285488113760948, -0.010454535484313965, -0.016895903274416924, 0.017239443957805634, -0.0009857245022431016, -0.028263941407203674, 0.02762370929121971, -0.014374010264873505, 0.0005660596070811152, 0.02760809287428856, -0.03444765508174896, 0.039350904524326324, 0.030543796718120575, 0.01602143980562687, 0.019331911578774452, 0.018160754814743996, 0.0008002911927178502, 0.018332524225115776, -0.0005392205785028636, 0.025328239426016808, 0.02147122658789158, 0.0006660959916189313, -0.0021217477042227983, 0.027889171615242958, 0.026515012606978416, 0.021924074739217758, -0.020987147465348244, 0.03023148700594902, -0.013046697713434696, 0.03404165431857109, -0.026046549901366234, 0.016958365216851234, -0.004583131056278944, -0.006488214246928692, -0.022345691919326782, -0.011204076930880547, -0.01008757296949625, 0.005758192855864763, -0.03272995725274086, 0.013679123483598232, 0.010212495923042297, 0.033947963267564774, 0.006952773779630661, -0.033729344606399536, -0.01182088628411293, 0.020440608263015747, -0.02590601146221161, 0.023501234129071236, 0.05018801614642143, -0.03744582086801529, 0.020206376910209656, 0.008986684493720531, -0.011289961636066437, 0.02779547870159149, -0.003712570294737816, -0.006152482237666845, -0.030153410509228706, -0.02176791988313198, 0.041006140410900116, 0.00042625266360118985, 0.011688155122101307, -0.009790879674255848, 0.0012111724354326725, -0.007136255037039518, -0.02681170590221882, -0.023548079654574394, -0.018113907426595688, 0.010407689027488232, 0.015545167960226536, 0.03163687512278557, -0.004450399894267321, 0.0167553648352623, -0.03688366338610649, -0.01082149799913168, 0.013515161350369453, 0.016583595424890518, 0.031449493020772934, 0.011414884589612484, 0.04962586238980293, 0.012250310741364956, -0.005656692199409008, -0.005769904237240553, -0.04921985790133476, 0.018051445484161377, 0.005777711980044842, 0.008447951637208462, -0.03635273873806, 0.015584207139909267, 0.013530776835978031, 0.015670090913772583, 0.05402941256761551, -0.00812783557921648, 0.02370423451066017, 0.009384877979755402, 0.01642744056880474, 0.03357319161295891, 0.013624469749629498, -0.02396969683468342, 0.018722910434007645, -0.04419168829917908, 0.05602819100022316, -0.018597986549139023, 0.03632150962948799, 0.0058870199136435986, -0.027061553671956062, 0.005574711132794619, -0.00954884011298418, -0.01184430904686451, 0.008713413961231709, -0.0045440923422575, -0.008900799788534641, -0.02881048247218132, -0.006624849513173103, -0.00517261354252696, 0.03472873196005821, 0.018254445865750313, -0.007877988740801811, -0.04078752174973488, 0.025375086814165115, 0.0029962121043354273, 0.014077316969633102, 0.04300491511821747, -0.010829306207597256, -0.0007568607688881457, -0.004130283370614052, 0.012648504227399826, 0.05303002521395683, 0.014569203369319439, -0.03947582468390465, 0.011391461826860905, 0.01806706190109253, -0.00239306571893394, 0.01664605736732483, -0.037352126091718674, -0.02245499938726425, 0.009978264570236206, 0.030356410890817642, -0.001934362342581153, 0.027264554053544998, -0.011414884589612484, 0.02762370929121971, 0.02176791988313198, 0.004434784408658743, 0.0006524324999190867, 0.001814318704418838, 0.01164911687374115, 0.0016249815234914422, 0.005535672418773174, -0.005207748617976904, -0.008721222169697285, 0.0027658843901008368, -0.021627381443977356, -0.004711958114057779, -0.025078393518924713, -0.006269598379731178, 0.03725843504071236, -0.008198104798793793, -0.03313595801591873, -0.0046143620274960995, -0.051000017672777176, -0.017176982015371323, 0.008408913388848305, -0.022642385214567184, -0.009736225008964539, 0.00595338549464941, 0.03972567245364189, -0.029966024681925774, 0.019534911960363388, -0.022298844531178474, 0.026608705520629883, 0.0037281857803463936, 0.01355419959872961, -0.005348287522792816, -0.001274610054679215, 0.013601046055555344, -0.02368861809372902, 0.010501381941139698, -0.020987147465348244, 0.0008403057581745088, 0.02193968929350376, 0.0007100144284777343, -0.021439995616674423, 0.003976081032305956, 0.014397433958947659, -0.022970309481024742, -0.03329211473464966, 0.02448500692844391, 0.007405621465295553, 0.010837113484740257, -0.022517461329698563, 0.0040404945611953735, 0.011321192607283592, -0.006644368637353182, 0.024422544986009598, -0.014374010264873505, 0.026468167081475258, 0.01641182415187359, 0.0210183784365654, -0.024531852453947067, 0.028263941407203674, -0.005890924017876387, -0.02540631778538227, -0.031215259805321693, 0.007530544884502888, -0.004676823504269123, 0.013124775141477585, 0.01709890365600586, 0.0010423304047435522, 0.039007361978292465, -0.008135642856359482, 0.013015467673540115, 0.00022788779460825026, -0.018082676455378532, 0.009088184684515, 0.001933386316522956, 0.0060353665612638, 0.010407689027488232, -0.012117579579353333, 0.01727067492902279, 0.005726961884647608, -0.013530776835978031, -0.008486990816891193, 0.004126379266381264, 0.009525417350232601, 0.018832217901945114, 0.03357319161295891, -0.001223859959281981, 0.030778028070926666, 0.02966933138668537, -0.03454134985804558, 0.07295532524585724, 0.0059377700090408325, -0.011836501769721508, -0.007112831808626652, 0.014873703941702843, -0.008986684493720531, 0.011243115179240704, 0.04909493774175644, -0.006683407351374626, 0.02125260978937149, 0.015537360683083534, -0.003411973128095269, -0.01886344887316227, 0.018379369750618935, 0.011500770226120949, 0.041568294167518616, 0.035946737974882126, 0.030590642243623734, 0.021924074739217758, 0.014616049826145172, 0.021799150854349136, 0.026671167463064194, -0.005980712827295065, -0.030044101178646088, 0.03369811549782753, 0.0021295552141964436, -0.0448787659406662, -0.0157794002443552, -0.010235919617116451, -0.021970920264720917, 0.010009495541453362, -0.01909768022596836, 0.02607778087258339, -0.023313848301768303, 0.043848149478435516, 0.010392073541879654, 0.005406845360994339, -0.0012726581189781427, 0.00321092433296144, 0.0009476618724875152, -0.0027795478235930204, 0.013968008570373058, -0.007081600837409496, -0.048720166087150574, 0.02073730155825615, -0.018379369750618935, 0.013046697713434696, 0.0012628985568881035, 0.01567789912223816, -0.03163687512278557, 0.020362529903650284, 0.050718940794467926, -0.0018465254688635468, 0.012523581273853779, 0.028966637328267097, 0.008221527561545372, -0.010118803940713406, 0.0017137943068519235, -0.005137478932738304, -0.0049149589613080025, -0.011977040208876133, 0.024797314777970314, 0.00486030476167798, 0.005387325771152973, -0.004719765856862068, -0.04178691282868385, 0.05062524974346161, 0.02307961694896221, 0.017317520454525948, 0.021127687767148018, 0.015748169273138046, 0.02284538559615612, -0.02375108003616333, -0.011079153046011925, 0.008073180913925171, 0.0015420244308188558, 0.005828462075442076, -0.03822658956050873, 0.0036110698711127043, -0.01851990818977356, 0.0054263644851744175, 0.007136255037039518, -0.01000168826431036, 0.025437548756599426, 0.02495346963405609, -0.0073275440372526646, -0.02842009626328945, 0.04903247579932213, -0.011898963712155819, -0.04297368600964546, -0.016161978244781494, -0.014881512150168419, -0.026218319311738014, 0.004778323695063591, 0.01034522708505392, 0.009494186379015446, 0.03629027679562569, 0.06355483084917068, 0.02437569759786129, -0.011141614988446236, 0.0006197376642376184, 0.010048533789813519, -0.005594230722635984, 0.0011155278189107776, 0.005922154523432255, 0.011321192607283592, -0.002281805733218789, 0.02863871306180954, -0.00026253453688696027, 0.009228724054992199, -0.044691383838653564, -0.009095991961658001, -0.0018406696617603302, -0.006585810799151659, 0.003384646028280258, 0.011953617446124554, 0.002639008918777108, 0.015865284949541092, -0.012039502151310444, -0.016911519691348076, -0.019815990701317787, -0.01298423670232296, -0.0016825634520500898, -0.027530016377568245, 0.02204899862408638, 0.04231783747673035, -0.044347841292619705, 0.0005709394463337958, -0.004442592151463032, 0.012367426417768002, -0.019066449254751205, 0.01597459241747856, -0.034572578966617584, -0.007335351780056953, 0.009392686188220978, -0.03538458049297333, -0.018316907808184624, -0.009806495159864426, -0.021268226206302643, 0.021330688148736954, -0.034853655844926834, -0.03613412380218506, -0.010985460132360458, 0.010306188836693764, 0.015295321121811867, -0.02568739466369152, -0.01737998239696026, 0.0046651121228933334, 0.003452963661402464, -0.033104728907346725, -0.05449787899851799, 7.319736323552206e-05, 0.025546856224536896, -0.02977863885462284, 0.002914231037721038, 0.021127687767148018, 0.021205764263868332, -0.003940945956856012, 0.03888243809342384, 0.023251386359333992, 0.014608241617679596, -0.040600139647722244, 0.029060330241918564, 0.003113327780738473, 0.010532612912356853, -0.02534385584294796, -0.026577474549412727, -0.0060548861511051655, 0.018457448109984398, 0.02142438106238842, 0.02370423451066017, -0.011407077312469482, 0.00705817760899663, 0.0027463650330901146, -0.0063554830849170685, -0.0008612889796495438, -0.01773913763463497, 0.009829917922616005, -0.01136023085564375, -0.0026663360185921192, 0.016692902892827988, 0.012859312817454338, 0.022408153861761093, 0.007112831808626652, -0.010876152664422989, -0.003886291990056634, -0.0397881343960762, -0.009025722742080688, 0.016115130856633186, -0.003964369185268879, 0.029903562739491463, -0.007678891532123089, -0.020987147465348244, -0.011071344837546349, -0.018566755577921867, -0.008783684112131596, 0.003995600156486034, 0.005652788560837507, -0.03130895271897316, 0.020659223198890686, 0.006519445218145847, -0.008252758532762527, -0.000966693158261478, 0.020253222435712814, -0.012180041521787643, 0.004454303532838821, -0.0029747409280389547, 0.008182489313185215, -0.017301904037594795, -0.005594230722635984, 0.01119626872241497, 0.012367426417768002, -0.0035974064376205206, 0.02273607812821865, -0.02164299599826336, 0.03507227450609207, -0.005996327847242355, -0.005301441065967083, -0.024016542360186577, -0.007717930246144533, -0.0054263644851744175, 0.03728966414928436, -0.010392073541879654, -0.010212495923042297, -0.015638859942555428, -0.026749243959784508, -0.020706070587038994, -0.007721833884716034, 0.037539511919021606, -0.013686930760741234, 0.002802971052005887, -0.038445208221673965, -0.007799911312758923, 0.007842853665351868, -0.0003469554940238595, 0.01184430904686451, -0.011211884208023548, 0.00218811328522861, -0.011118191294372082, -0.031043490394949913, 0.021752305328845978, 0.006246175151318312, 0.01739559695124626, -0.006687310989946127, -0.013843085616827011, -0.02028445340692997, -0.0003389038029126823, -0.02749878540635109, -0.017473675310611725, -0.012437695637345314, -0.0286855585873127, 0.0227204617112875, 0.000633401214145124, 0.011563231237232685, 0.02181476727128029, 0.0014854185283184052, 0.006359387189149857, 0.028373250737786293, -0.010930806398391724, 0.0030469621997326612, -0.044816307723522186, -0.013202852569520473, 0.008471375331282616, 0.02097153291106224, 0.00211589178070426, -0.019987760111689568, -0.017707906663417816, 0.059244971722364426, 0.008088796399533749, -0.0005562999867834151, -0.004735381342470646, -0.013304352760314941, -0.015857476741075516, -0.004711958114057779, 0.009501993656158447, 0.0010228111641481519, 0.020143914967775345, 0.009681571274995804, -0.02687416784465313, -0.011289961636066437, -0.0019236267544329166, 0.03413534536957741, -0.007374390494078398, -0.024625545367598534, -0.020706070587038994, -0.04762708395719528, -0.01862921752035618, -0.018660448491573334, 0.028451327234506607, 0.006339867599308491, -0.02431323565542698, 0.019238218665122986, 0.002775643952190876, -0.03177741542458534, 0.005847981199622154, 0.007331448141485453, -0.015373398549854755, 0.02982548624277115, 0.00994703359901905, -0.009220915846526623, 0.02482854574918747, -0.012008271180093288, -0.008533836342394352, -0.001318528549745679, -0.018441831693053246, -0.020924685522913933, 0.0007500289939343929, 0.02278292365372181, -0.021112071350216866, -0.004872016608715057, 0.03819536045193672, 0.002681951504200697, 0.029763024300336838, -0.018535524606704712, -0.023657387122511864, -0.005305345170199871, 0.011008883826434612, -0.015076705254614353, 0.00509844021871686, -0.0025667876470834017, 0.006894215941429138, 0.02039376087486744, -0.0037438012659549713, 0.019503680989146233, -0.0005499561666510999, -0.00892422255128622, 0.03288611024618149, 0.00218811328522861, -0.002299373270943761, 0.00977526418864727, -0.008010719902813435, 0.043098606169223785, -0.022798538208007812, -0.0006719517987221479, 0.008627529256045818, 0.007737449370324612, 0.0051140557043254375, -0.008939838036894798, -0.019925298169255257, 0.008541644550859928, -0.029122790321707726, 0.0035895986948162317, -0.01025934237986803, -0.0031269914470613003, 0.0002586306945886463, 0.04840785637497902, 0.014600434340536594, 0.0026233934331685305, -0.006062693893909454, -0.012867121025919914, 0.009915802627801895, 0.01571693830192089, 0.021627381443977356, 0.00954884011298418, -0.000135537120513618, 0.009595686569809914, -0.007632045075297356, 0.02590601146221161, 0.03232395648956299, -0.019972145557403564, -0.008541644550859928, 0.02334507927298546, 0.002490662271156907, 0.0019294825615361333, -0.018145138397812843, -0.023563696071505547, 0.00144930777605623, 0.025890395045280457, -0.0035915507469326258, -0.004493342246860266, -0.014413048513233662, 0.0021041801664978266, -0.040943678468465805, 0.0067107342183589935, 0.002350123366340995, 0.02415708266198635, 0.0035720313899219036, 0.024906622245907784, 0.016849057748913765, 0.011125999502837658, 0.03881997615098953, 0.02347000315785408, 0.017754752188920975, 0.00571134639903903, 0.017317520454525948, 0.002886903937906027, -0.017301904037594795, 4.962171442457475e-05, -0.01795775257050991, 0.010142226703464985, -0.017582982778549194, 0.009814302437007427, 0.027592478320002556, -0.010532612912356853, 0.0015693515306338668, 0.002603874308988452, 0.014912743121385574, -0.03541581332683563, 0.0012521628523245454, -0.0007373414700850844, -0.0021744496189057827, 0.0030157314613461494, -0.01034522708505392, -0.013109159655869007, 0.015552976168692112, -0.0009349743486382067, 0.0030860009137541056, -0.0006978148594498634, -0.030840490013360977, -0.01360885426402092, -0.010064149275422096, -0.0014863944379612803, 0.007788199465721846, 0.0093770707026124, 0.003909714985638857, 0.01000168826431036, -0.0140695096924901, -0.015139167197048664, -0.0018260302022099495, -0.012375234626233578, 0.03666504845023155, 0.02084660902619362, -0.032698728144168854, 0.02267361618578434, -0.027686171233654022, 0.0195973739027977, 0.0032987610902637243, -0.005391229875385761, -0.0012863216688856483, -0.020159529522061348, 0.012867121025919914, -0.011313384398818016, -0.005235075484961271, 0.0014746829401701689, 0.000564107671380043, 0.008205912075936794, -0.018738524988293648, 0.008900799788534641, 0.008853953331708908, -0.017301904037594795, -0.02904471382498741, 0.0043528033420443535, 0.00744465971365571, -0.010766844265162945, 0.005828462075442076, -0.021908458322286606, -0.0002666823856998235, -0.013991432264447212, -0.012765619903802872, 0.0061446744948625565, 0.0006983028724789619, -0.0039858403615653515, 0.002508229576051235, -0.012258118949830532, 0.0020456223282963037, -0.0033377998042851686, 0.00979868695139885, -0.018488679081201553, 0.01369473896920681, -0.0012267878046259284, -0.00015066457854118198, -0.003730137599632144, -0.02857625111937523, 0.01630251668393612, -0.01133680809289217, -0.0020983244758099318, 0.023204540833830833, -0.0139211630448699, 0.03272995725274086, -0.026499398052692413, 0.007518833037465811, -0.012351810932159424, 0.01000168826431036, -0.006585810799151659, 0.0013165766140446067, -0.00768279517069459, 0.014686319045722485, 0.003410021308809519, 0.001372206606902182, -0.008252758532762527, 0.0033202324993908405, 0.03279241919517517, 0.01000168826431036, -0.01011099573224783, -0.019285066053271294, -0.011571039445698261, 0.0032167802564799786, 0.016068285331130028, 0.00703475484624505, 0.0033983096946030855, 0.0014854185283184052, -0.02011268399655819, -0.006753676570951939, -0.0008627529023215175, 0.014834665693342686, -0.012351810932159424, -0.005996327847242355, 0.01071219053119421, -0.005348287522792816, 0.029357023537158966, -0.018910294398665428, 0.013187237083911896, -0.011852117255330086, 0.013944585807621479, -0.01082149799913168, 0.02749878540635109, -0.01556859165430069, 0.021112071350216866, -0.02829517237842083, 0.017005210742354393, 0.02351684868335724, -0.0020182952284812927, -0.08313658833503723, 0.008307413198053837, 0.02239253744482994, -0.010602882131934166, 0.010704382322728634, 0.024110235273838043, -0.0009818206308409572, 0.003976081032305956, 0.005703538656234741, 0.03135579824447632, -0.01994091458618641, 0.02261115424335003, -0.005402941256761551, -0.012828081846237183, -0.014420856721699238, -0.010095380246639252, 0.005769904237240553, 0.0020417184568941593, 0.008791491389274597, -0.011055730283260345, 0.007054273970425129, 0.0017216020496562123, 0.016349364072084427, 0.009587878361344337, -0.007194812875241041, -0.016458671540021896, 0.009533224627375603, 0.011945810168981552, 0.0051765176467597485, 0.007261178456246853, -0.027920402586460114, 0.016911519691348076, -0.00016188816516660154, 0.01159446220844984, 0.037820588797330856, 0.01244550384581089, -0.0038140707183629274, 0.033666882663965225, -0.008408913388848305, -0.0005738673498854041, 0.003314376575872302, -0.0033026649616658688, -0.0077452571131289005, 0.004282533656805754, 0.006234463304281235, -0.023954080417752266, -0.006343771703541279, 0.012008271180093288, 0.013437083922326565, 0.01744244433939457, -0.014592626132071018, 0.0046026501804590225, 0.000301817141007632, -0.008791491389274597, -0.008744644932448864, -0.02663993649184704, 0.021845996379852295, 0.008049758151173592, 0.0187541414052248, 0.0008876400534063578, 0.007413429208099842, 0.009291185066103935, -0.02601531893014908, 0.009369262494146824, 0.003193357028067112, 0.04362953454256058, -0.01698959618806839, 0.010946421884000301, 0.004657304380089045, -0.0026233934331685305, 0.006952773779630661, -0.00633596396073699, -0.011407077312469482, 0.01438181847333908, 0.0006968388915993273, -0.012312772683799267, -0.004875920247286558, -0.016005823388695717, -0.000275466067250818, -0.01851990818977356, -0.0010716094402596354, -0.0029025194235146046, 0.0031699337996542454, -0.0036305892281234264, 0.010095380246639252, -0.019363142549991608, -0.0037984552327543497, -0.001770400209352374, -0.0004840785695705563, 0.04765831679105759, -0.018457448109984398, -0.017707906663417816, -0.0261402428150177, 0.004985228646546602, -0.020706070587038994, 0.009439531713724136, 0.01795775257050991, -0.05487264692783356, 0.004782227799296379, -0.01340585295110941, -0.03447888791561127, 0.009783071465790272, -0.003765272442251444, -0.010813690721988678, 0.03165249153971672, 0.012289348989725113, -0.009189684875309467, -0.0033905019517987967, 0.000429424544563517, 0.0002866896684281528, 0.0049696131609380245, 0.000603634282015264, 0.006187617313116789, 0.02806094102561474, 0.0063554830849170685, -0.008619721978902817, -0.018441831693053246, 0.004087341018021107, 0.011719386093318462, 0.004879824351519346, 0.039756905287504196, 0.047876931726932526, 0.0036754836328327656, -0.020268838852643967, 0.011016691103577614, -0.004555803723633289, -0.007803814951330423, -0.005141383036971092, 0.0008168825879693031, -0.009962649084627628, 0.013757200911641121, -0.025203315541148186, -0.0120707331225276, 0.002629249356687069, 0.0011233355617150664, 0.00223691132850945, 0.004048302303999662, -0.02539070136845112, 0.0028908078093081713, 0.03251134231686592, -0.025656163692474365, 0.019253835082054138, -0.0007266058237291873, 0.02887294441461563, -0.028654327616095543, 0.010071957483887672, 0.015545167960226536, -0.030153410509228706, -0.0005362926749512553, 0.020143914967775345, 0.009041338227689266, -0.008221527561545372, 0.012593850493431091, 0.01806706190109253, 0.017598597332835197, -0.045940618962049484, -0.0029493658803403378, -0.00971280224621296, 0.0024828545283526182, -0.01756736822426319, -0.01440524123609066, -0.017239443957805634, -0.027764247730374336, -0.004477726761251688, 0.004840785637497902, 0.005340479779988527, 0.005293633323162794, 0.025156470015645027, 0.012367426417768002, -0.026436936110258102, 0.006425752770155668, -0.039694443345069885, 0.009119415655732155, -0.011500770226120949, -0.007261178456246853, 0.0026604800950735807, 0.018098292872309685, -0.0033885498996824026, 0.0215961504727602, 0.018223214894533157, 0.0022759500425308943, 0.005067209713160992, -0.03513473644852638, -0.01630251668393612, 0.024360083043575287, -0.016567979007959366, 0.004114667885005474, 0.0016786595806479454, 0.00022959573834668845, 0.0027619805186986923, 0.02023760788142681, -0.009392686188220978, -0.012976428493857384, -0.0035974064376205206, -0.004739285446703434, 0.004286437761038542, 0.004840785637497902, -0.006613137666136026, 0.006738061551004648, -0.01613074727356434, -0.007499313913285732, 0.012094156816601753, 0.018785372376441956, 0.006050982046872377, 0.005274114198982716, 0.004790035542100668, 0.006796619389206171, 0.044347841292619705, -0.019331911578774452, 0.0035544640850275755, -0.019956529140472412, -0.019878452643752098, -0.027857940644025803, -0.01659920997917652, 0.0011467586737126112, -0.016552364453673363, -0.011125999502837658, -0.008471375331282616, -0.014311548322439194, 0.0184730626642704, -0.0017508809687569737, 0.024406928569078445, 0.014787819236516953, 0.01215661782771349, -0.008120027370750904, 0.00854945182800293, 0.006386714056134224, 0.01025934237986803, 0.008229335770010948, -0.007538352627307177, 0.003940945956856012, -0.018535524606704712, 0.0397881343960762, 0.03585304319858551, 0.0064062331803143024, -0.013171621598303318, 0.00649211835116148, -0.012547004036605358, 0.03369811549782753, 0.049188628792762756, -0.023376310244202614, -0.010056341998279095, -0.0068161385133862495, 0.010626304894685745, -0.008830529637634754, -0.020643608644604683, 0.0070269471034407616, -0.00697619654238224, -0.011750617064535618, -0.0241414662450552, 0.00031572463922202587, 0.006570195313543081, -0.003470530966296792, 0.011859924532473087, -0.004610457923263311, -0.012976428493857384, 0.014865896664559841, 0.01133680809289217, -0.019737912341952324, 0.04103736951947212, 0.008619721978902817, -0.0076945070177316666, 0.037195973098278046, 0.014780011959373951, 0.02090907096862793, 0.023766696453094482, 0.002888855990022421, 0.0009657172486186028, -0.00501255551353097, -0.005192133132368326, 0.01003291830420494, 0.020440608263015747, 0.0053209601901471615, 0.01692713424563408, -0.011383653618395329, -0.016208823770284653, -0.005035978741943836, 0.004192744847387075, -0.015068897046148777, 0.006394521798938513, 0.03307349607348442, 0.02261115424335003, 0.0037711281329393387, -0.015506129711866379, 0.004680727608501911, -0.012359619140625, 0.0073275440372526646, -0.03369811549782753, -0.014686319045722485, -0.008814914152026176, 0.0031035682186484337, -0.00587921217083931, -0.004286437761038542, -0.004208360332995653, -0.017176982015371323, -0.006257886532694101, -0.00906476192176342, 0.011032306589186192, 0.006230559665709734, -0.007276793941855431, 0.012640696950256824, -0.012593850493431091, 0.007874084636569023, -0.0033514632377773523, 0.009970457293093204, 0.02147122658789158, 0.015232859179377556, 0.01681782677769661, 0.013304352760314941, 0.008346451446413994, -0.01642744056880474, -0.005613749846816063, -0.022626768797636032, -0.010743421502411366, -0.011664732359349728, -0.014475510455667973, -0.0037106184754520655, 0.0006651200237683952, 0.05874527618288994, -0.007507121656090021, -0.007835045456886292, 0.0026175377424806356, -0.011797463521361351, -0.02938825450837612, -0.020706070587038994, 0.018660448491573334, 0.012539196759462357, 0.005945577751845121, 0.008408913388848305, -0.003417828818783164, 0.0070269471034407616, 0.00932241603732109, -0.03981936722993851, 0.029856717213988304, 0.009970457293093204, 0.01727067492902279, 0.01442866399884224, 0.021455612033605576, 0.006476502865552902, -0.010477958247065544, -0.021049609407782555, 0.019128911197185516, -0.012742197141051292, 0.02375108003616333, -0.010556035675108433, -0.005211652256548405, 0.001136023085564375, 0.006777099799364805, 0.0074290442280471325, -0.007124543655663729, -0.018441831693053246, -0.004493342246860266, -0.012999852187931538, 0.01703644171357155, -0.006562387570738792, 0.009681571274995804, -0.001614245818927884, 0.003896051784977317, 0.005684019532054663, -9.55835566855967e-05, 0.013796239160001278, 0.010516997426748276, -0.0028010192327201366, -0.014108547940850258, 0.008057565428316593, -0.003193357028067112, 0.002627297304570675, 0.002986452542245388, -0.0230171550065279, -0.013116967864334583, 0.006691215094178915, 0.008174682036042213, 0.020706070587038994, 0.011289961636066437, 0.02136191911995411, -0.016786595806479454, -0.0003459795261733234, -0.004645592533051968, -0.021330688148736954, 0.014873703941702843, -0.0004545556439552456, -0.020300069823861122, -0.017192596569657326, -0.023735465481877327, -0.021924074739217758, -0.036789972335100174, 0.00815125834196806, 0.007206524256616831, -0.009041338227689266, 0.008986684493720531, 0.002828346099704504, -0.009267762303352356, -0.0023384117521345615, 0.021002763882279396, 0.00250042206607759, 0.010493573732674122, 0.019160142168402672, -0.010321804322302341, 0.0033260881900787354, -0.0012726581189781427, 0.002256430685520172, -0.028794867917895317, 0.005094536580145359, -0.007475890684872866, 0.006929350551217794, -0.030481334775686264, -0.010251535102725029, -0.022642385214567184, 0.007511025294661522, -0.004235687665641308, 0.006363290827721357, -0.008010719902813435, 0.024172697216272354, 0.0018123667687177658, -0.02420392818748951, 0.01773913763463497, 0.007632045075297356, -0.007971680723130703, 0.0004172249755356461, 0.02170545794069767, 0.007917026989161968, 0.03279241919517517, -0.004520669113844633, -0.032698728144168854, 0.015732552856206894, -0.009892379865050316, -0.02857625111937523, -0.011719386093318462, 0.010930806398391724, 0.007335351780056953, 0.024578697979450226, 0.005840173456817865, -0.02005022205412388, -0.006558483932167292, 0.022798538208007812, -0.014241279102861881, -0.03216779977083206, -0.013882123865187168, -0.02290784753859043, -0.0018104148330166936, -0.008619721978902817, -0.006203232798725367, 0.01457701064646244, -0.01698959618806839, -0.004161514341831207, -0.001415149075910449, -0.013601046055555344, -0.009142838418483734, -0.01978475973010063, -0.005746481008827686, 0.01961299031972885, 0.005211652256548405, 7.739096190562123e-07, -0.00906476192176342, -0.003251914866268635, 0.005961193237453699, 0.02307961694896221, -0.0023286521900445223, 0.011438308283686638, 0.013874316588044167, 0.014498934149742126, 0.02073730155825615, 0.005067209713160992, 0.01983160525560379, -0.031105952337384224, -0.021205764263868332, -0.0019665691070258617, -0.004048302303999662, 0.015420245006680489, -0.00883833784610033, 0.005117959808558226, -0.0011750616831704974, 0.0012023886665701866, -0.006316444370895624, -0.01565447635948658, 0.022829769179224968, -0.001856285147368908, -0.0037672242615371943, 0.01042330451309681, -0.0032245877664536238, -0.011797463521361351, -0.009275569580495358, 0.010587266646325588, 0.02454746887087822, 0.02852940373122692, 0.00664827274158597, 0.028513789176940918, -0.00988457165658474, -0.006472598761320114, -0.0014366202522069216, 0.005578615237027407, -0.04181814193725586, 0.007108928170055151, -0.0011897011427208781, 0.010118803940713406, 0.0006109540117904544, -0.010150034911930561, -0.016692902892827988, -0.012429888360202312, -0.010618497617542744, 0.022314460948109627, 0.0022251999471336603, -0.0008769044070504606, -0.018332524225115776, -0.020752916112542152, -0.01071219053119421, -0.001475658849813044, 0.014311548322439194, -0.006402329541742802, 0.02073730155825615, 0.014569203369319439, 0.005621557589620352, -0.006214944180101156, -0.008291797712445259, 0.01338243018835783, 0.00901010725647211, 0.013148198835551739, -0.016068285331130028, -0.01641182415187359, 0.015841862186789513, 0.007448563817888498, 0.010220304131507874, -0.008799298666417599, -0.005063305608928204, 0.005047690123319626, -0.012226887978613377, -0.006238367408514023, 0.001388798002153635, -0.03825782239437103, -0.016833441331982613, -0.006827849894762039, -0.0024106332566589117, -0.015045474283397198, -0.003566175466403365, 0.015287513844668865, 0.012336195446550846, 0.01711452007293701, 0.014678511768579483, 0.02164299599826336, 0.006328156217932701, -0.00875245314091444, 0.012898351065814495, -0.022033382207155228, -0.0011584702879190445, -0.00028937356546521187, 0.017770368605852127, 0.027264554053544998, 0.007030850742012262, 0.028951020911335945, 0.007678891532123089, -0.021892843768000603, 0.007089408580213785, 0.006464791018515825, 0.010454535484313965, 0.017130134627223015, -0.008455759845674038, 0.029684947803616524, -0.008002911694347858, 0.0069215428084135056, 0.012789043597877026, -0.0230171550065279, -0.004344995599240065, 0.0021490745712071657, -0.02603093534708023, -0.0016279093688353896, -0.002283757785335183, 0.0010296428808942437, -2.732701614149846e-05, 0.004911055322736502, 0.008978876285254955, -0.01608389988541603, 0.022829769179224968, 0.028388865292072296, 0.027701785787940025, -0.0007856517331674695, 0.01709890365600586, 0.016567979007959366, -0.015521745197474957, 0.0002686343214008957, 0.010727806016802788, -0.0059885201044380665, -0.013374621979892254, 0.01830129325389862, 0.023251386359333992, -0.02295469306409359, 0.0017020826926454902, 0.006214944180101156, 0.007905315607786179, -0.009751840494573116, 0.017801599577069283, 0.009806495159864426, 0.02852940373122692, -0.0018836121307685971, -0.0003542752529028803, -0.016068285331130028, -0.03422904014587402, -0.006172001827508211, 0.006695118732750416, 0.002492614323273301, 0.0016288853948935866, 0.0037984552327543497, -0.024297621101140976, -0.001440524123609066, -0.01703644171357155, -0.0006304733105935156, -0.0036149737425148487, -0.0107980752363801, 0.01619320921599865, 0.01670851744711399, -0.011602270416915417, 0.0020788051187992096, -0.00190020352602005, -0.00689031183719635, 0.019644221290946007, -0.014374010264873505, 0.0010442823404446244, 0.0056879231706261635, 0.006620945408940315, -0.015584207139909267, -0.007721833884716034, -0.01215661782771349, -0.01830129325389862, 0.011172845959663391, 0.0011994608212262392, 0.018941525369882584, 0.013960201293230057, -0.010157842189073563, 0.019815990701317787, 0.016333747655153275, -0.012718774378299713, 0.02215830609202385, -0.008026335388422012, -0.006015847437083721, -0.01298423670232296, -0.010446728207170963, 0.011274346150457859, -0.01150857750326395, 0.0106575358659029, -0.0013604949926957488, 0.014756588265299797, -0.011399269104003906, 0.009228724054992199, -0.017489289864897728, 0.027748633176088333, 0.00027449012850411236, 0.008002911694347858, 0.008244951255619526, -0.021127687767148018, 0.015131358988583088, 0.0034217326901853085, -9.45465944823809e-05, -0.023001540452241898, 0.01196142565459013, 0.012570427730679512, -0.010516997426748276, -0.01716136559844017, 5.075017179478891e-05, 0.0010354986879974604, -0.020612377673387527, -0.0014258846640586853, 0.0028127306140959263, -0.00972060952335596, 0.0241414662450552, -0.001606438192538917, 0.019175756722688675, 0.014272510074079037, 0.017130134627223015, 0.014569203369319439, 0.01588870771229267, -0.018285676836967468, 0.009455147199332714, 0.012008271180093288, -0.01196142565459013, -0.00028815362020395696, 0.0028595770709216595, 0.009923610836267471, -0.025609318166971207, 0.010321804322302341, 0.002377450466156006, 0.017208212986588478, -0.014819050207734108, -0.008338643237948418, -0.007257274817675352, 0.01767667569220066, -0.022626768797636032, 0.0010882008355110884, -0.033448267728090286, -0.012281541712582111, 0.004938382189720869, -0.02495346963405609, -0.013429276645183563, 0.002797115361317992, -0.009213108569383621, 0.016521133482456207, -0.008182489313185215, -0.008994491770863533, 0.004563611466437578, -0.0059377700090408325, 0.03165249153971672, -0.0052819219417870045, -0.023719849064946175, -0.010384266264736652, 0.009306800551712513, 0.013038890436291695, 0.012429888360202312, 0.018035830929875374, 0.006663888227194548, -0.0057386732660233974, -0.01841060072183609, -0.013975816778838634, 0.002760028699412942, 0.008502605371177197, -0.012055117636919022, 0.0022349595092236996, -0.018488679081201553, -0.0018240782665088773, 0.0035251849330961704, -0.00633596396073699, -0.008088796399533749, -0.007569583598524332, 0.008174682036042213, -0.003009875537827611, -0.014795627444982529, -0.036227814853191376, -0.0077413530088961124, 0.016677286475896835, 0.03507227450609207, -0.0016815874259918928, -0.0028146826662123203, 0.002699518809095025, -0.02392285130918026, 0.008939838036894798, -0.01048576645553112, 0.002506277756765485, 0.024531852453947067, -0.01976914331316948, 0.008674375712871552, 0.004797843284904957, 0.004848593380302191, 0.002289613476023078, -0.006047078408300877, 0.004227879922837019, 0.01133680809289217, 0.002810778794810176, 0.017364365980029106, 0.0001489566348027438, 0.00844014436006546, 0.014163201674818993, 0.002314988523721695, -0.008885184302926064, 0.004879824351519346, -0.012250310741364956, -0.017317520454525948, -0.0007392933475784957, 0.024391314014792442, -0.019800374284386635, -0.0031875011045485735, 0.007760872598737478, -0.02396969683468342, 0.00239306571893394, -0.009728417731821537, 0.006531156599521637, 0.03074679709970951, 0.02370423451066017, 0.014514549635350704, 0.0034412520471960306, -0.008268374018371105, 0.007354870904237032, 0.010235919617116451, 0.023173309862613678, 0.02261115424335003, 0.008330835960805416, -0.027420708909630775, -0.007417332846671343, -0.003107472090050578, 0.016068285331130028, 0.012750004418194294, -0.023001540452241898, -0.005590326618403196, -0.0016991548473015428, -0.008244951255619526, 0.005293633323162794, -0.009501993656158447, 0.013280929997563362, -0.0029552215710282326, 0.009697186760604382, -0.006769292056560516, 0.0008773924200795591, -0.019082065671682358, 0.0066170417703688145, 0.00348809827119112, -0.011969232931733131, 0.004438688047230244, 0.021439995616674423, 0.007772583980113268, 0.012539196759462357, 0.017926521599292755, -0.02193968929350376, -0.016833441331982613, -0.0053326720371842384, -0.010610690340399742, 0.0002910815237555653, 0.021268226206302643, 0.0012111724354326725, -0.015435860492289066, 0.009587878361344337, 0.02289223112165928, -0.00750321801751852, 0.003394405823200941, 0.006257886532694101, 0.016099516302347183, -0.02876363694667816, -0.0003703786642290652, -0.001483466592617333, -0.004571419209241867, 0.009767455980181694, 0.0008198104915209115, 0.007620333693921566, 0.008635337464511395, 0.0016279093688353896, 0.015349974855780602, 0.007296313066035509, 0.00957226287573576, 0.006113443989306688, 0.00626569427549839, 0.020612377673387527, 0.02454746887087822, -0.003976081032305956, 0.010384266264736652, 0.003080144990235567, -0.03210534155368805, 0.032292723655700684, 0.007663276046514511, 0.014959589578211308, 0.024734852835536003, 0.017770368605852127, 0.0013663507997989655, -0.01355419959872961, 0.017301904037594795, -0.019878452643752098, 0.0030391544569283724, 0.019191373139619827, 0.0015693515306338668, -0.009478570893406868, 0.021455612033605576, -0.0037594165187329054, -0.004907151218503714, 0.0028712886851280928, 0.001735265483148396, 0.011633501388132572, 0.0022486229427158833, -0.00011351691500749439, 0.005106247961521149, 0.001050138147547841, 0.008104411885142326, -0.0010374506236985326, 0.03479119390249252, -0.012828081846237183, 0.030699949711561203, -0.0020612378139048815, 0.007038658484816551, -0.014389625750482082, 0.0011740857735276222, 0.0033787903375923634, 0.004134187009185553, 0.011641308665275574, -0.004325476009398699, 0.023719849064946175, -0.010774651542305946, -0.0031445587519556284, 0.023095231503248215, -0.00027473410591483116, 0.0026702398899942636, -0.02340754121541977, 0.0006085140630602837, 0.008830529637634754, 0.0039838883094489574, 0.022548692300915718, -0.007581294979900122, -0.002744413213804364, -0.005516153294593096, 0.024047773331403732, -0.018379369750618935, 0.00324605917558074, 0.02136191911995411, 0.0007300216821022332, 0.0011311433045193553, 0.01173500157892704, 0.009900187142193317, -0.0046143620274960995, -0.007249467074871063, -0.0035447042901068926, 0.010985460132360458, 0.01346831489354372, -0.021955305710434914, -0.00892422255128622, 0.012016079388558865, -0.005102344322949648, -0.0017821118235588074, 0.016099516302347183, -0.01978475973010063, -0.013819661922752857, 0.0010042678331956267, -0.00021446828031912446, -0.012141002342104912, 0.016177592799067497, 0.01584966853260994, -0.020471839234232903, 0.0032089725136756897, -0.008260566741228104, 0.009189684875309467, -0.014397433958947659, -0.009533224627375603, -0.013975816778838634, -0.004333283752202988, -0.00719090923666954, -0.015295321121811867, -0.01000168826431036, -0.007065985351800919, -0.001493226271122694, 0.009954841807484627, -0.003251914866268635, 0.0041419947519898415, -0.008494798094034195, 0.001084296964108944, -0.01025934237986803, -0.009923610836267471, -0.005801135208457708, -0.0006504805642180145, 0.004743189085274935, 0.01965983584523201, 0.009025722742080688, 0.003056721994653344, -0.022923462092876434, 0.013234083540737629, 0.007936546579003334, 0.007991200312972069, -0.011664732359349728, -0.010368650779128075, -0.01119626872241497, 0.006808330770581961, 0.004060013685375452, -0.004153706599026918, -0.02023760788142681, 0.017645444720983505, 0.0058987317606806755, 0.010977652855217457, -0.018145138397812843, 0.017707906663417816, 0.011227499693632126, -0.016677286475896835, -0.015810631215572357, 0.020893456414341927, 0.006898119580000639, -0.028045326471328735, -0.0014600433642044663, 0.006371098570525646, -0.029700562357902527, -0.007491506170481443, -0.014046085998415947, -0.0009447339689359069, 0.0026780476327985525, 0.00844014436006546, 0.006218847818672657, -0.008010719902813435, 0.0010345227783545852, -0.001814318704418838, 0.01474097277969122, -0.01551393698900938, 0.004743189085274935, -0.02545316331088543, 0.015131358988583088, -0.0054380763322114944, 0.007885796017944813, 0.022798538208007812, -0.01886344887316227, 0.023797927424311638, 0.009907995350658894, 0.015303129330277443, -0.013843085616827011, 0.005980712827295065, -0.002420392818748951, 0.017364365980029106, -0.019800374284386635, 0.01150857750326395, 0.0017206260235980153, 0.01136023085564375, -0.003314376575872302, 0.007538352627307177, 0.008650952018797398, -0.026452550664544106, 0.019082065671682358, -0.000836889841593802, 0.01955052837729454, -0.015880899503827095, -0.00968937948346138, 0.007015235256403685, -0.0340728834271431, -0.0016005823854357004, 0.015209436416625977, 0.0015361686237156391, -0.012953005731105804, -1.572218388901092e-05, 0.00016554804460611194, 0.0015361686237156391, -0.007538352627307177, 0.0027287977281957865, -0.005317056551575661, -0.015943361446261406, 0.0015029858332127333, -0.001561543787829578, -0.006800523027777672, -0.009189684875309467, 4.019755215267651e-05, -0.021408764645457268, 0.006905927322804928, -0.027030322700738907, -0.0005441004177555442, -0.008822722360491753, -0.008026335388422012, 0.002699518809095025, 0.011094768531620502, 0.010532612912356853, -0.010727806016802788, 0.018426217138767242, -0.006585810799151659, -0.0037984552327543497, -0.00019336304103489965, 0.005453691817820072, 0.006339867599308491, 0.003550560213625431, 0.0010442823404446244, 0.005039882380515337, -0.01019688043743372, 0.016833441331982613, -0.004286437761038542, 0.011188461445271969, 0.020471839234232903, 0.0010179313831031322, -0.0017235539853572845, -0.017005210742354393, 0.012898351065814495, -0.0016445007640868425, -0.01948806643486023, 0.010470150969922543, 0.022470613941550255, -0.005890924017876387, 0.006156386341899633, 0.004938382189720869, -0.002445767866447568, -0.0034744348376989365, 0.02982548624277115, 0.005297537427395582, -0.010704382322728634, -0.0021646900568157434, -0.013031083159148693, -0.00034061173209920526, -0.006004135590046644, -0.044410303235054016, -0.021674226969480515, -0.020534301176667213, 0.01830129325389862, 0.012148810550570488, 8.551892096875235e-05, -0.018957141786813736, 0.018332524225115776, 0.0071831014938652515, 0.015107936225831509, -0.020268838852643967, 0.00954884011298418, 0.01698959618806839, -0.005160902161151171, 0.0024867583997547626, -0.011914579197764397, 0.019925298169255257, 0.00595338549464941, 0.002744413213804364, -0.006070501171052456, 0.005789423361420631, 0.01474097277969122, 0.005445884075015783, 0.02762370929121971, -1.6515155948582105e-05, 0.0005821630475111306, 0.008338643237948418, -0.006874696351587772, 0.0034393002279102802, 0.028263941407203674, 0.017598597332835197, -0.009455147199332714, -0.021236995235085487, -0.014647280797362328, -0.021127687767148018, -0.015990208834409714, 0.0069722929038107395, 0.011430500075221062, -0.007714026141911745, 0.007561775855720043, -0.007097216323018074, -0.016521133482456207, -0.04063136875629425, -0.010431112721562386, -0.01653674803674221, -0.006246175151318312, 0.030543796718120575, 0.007963873445987701, 0.021268226206302643, 0.029528792947530746, 0.021439995616674423, 0.005359998904168606, -0.018441831693053246, 0.002065141685307026, 0.029763024300336838, 0.0030606258660554886, 0.0038316380232572556, -0.0048524970188736916, -0.001188725233078003, 0.0067107342183589935, 0.007112831808626652, 0.006246175151318312, 0.0065116374753415585, 0.006293021142482758, 0.010680959559977055, 0.005660596303641796, 0.0035349447280168533, 0.028201479464769363, 0.0034607714042067528, -0.007335351780056953, 0.02618708834052086, -0.0014346683165058494, -0.0227204617112875, -0.0020709973759949207, 0.007276793941855431, 0.01631813310086727, -0.011500770226120949, 0.01727067492902279, -0.006905927322804928, 0.010688766837120056, -0.018332524225115776, 0.00829960498958826, 0.015919938683509827, -0.0001928750571096316, 0.002594114514067769, 0.018145138397812843, 0.005153094418346882, -0.0278423260897398, -0.005957289598882198, 0.00180358299985528, -0.005648884456604719, -0.004071725532412529, -0.01395239308476448, 0.007963873445987701, 0.010516997426748276, -0.015662284567952156, 0.00539903761819005, 0.004181033466011286, 0.02966933138668537, 0.00022947373508941382, 0.022751692682504654, -0.02823271043598652, -0.011040114797651768, 0.0006660959916189313, -0.0059377700090408325, 0.009345839731395245, 0.0021471227519214153, 0.002471142914146185, -0.015576398931443691, -0.0031816454138606787, -0.01983160525560379, 0.016052670776844025, -0.0006207136320881546, 0.017598597332835197, 0.019472450017929077, 0.0028010192327201366, -0.011781848035752773, -0.00812783557921648, 0.026686782017350197, -0.0002761980576906353, -0.007507121656090021, 0.015646668151021004, -0.00033304799580946565, -0.019285066053271294, 0.016099516302347183, -0.019972145557403564, -0.016443055123090744, 0.00977526418864727, 0.002810778794810176, -0.010376458056271076, 0.020253222435712814, -0.004579226952046156, 0.001110648037865758, 0.008939838036894798, 0.0008686087094247341, 0.019003987312316895, 0.0015478802379220724, 0.004309860989451408, -0.03129333630204201, 0.02693662978708744, -0.00690202321857214, -0.009455147199332714, 0.008479182608425617, 0.010844921693205833, -0.009135031141340733, -0.008783684112131596, 2.6778036044561304e-05, -0.004555803723633289, 0.0016279093688353896, 0.009408300742506981, 0.0230171550065279, -0.006047078408300877, 0.015748169273138046, 0.009338031522929668, 0.005980712827295065, 0.009025722742080688, 0.030215872451663017, 0.0076515646651387215, -0.005184325389564037, 0.014483318664133549, 0.012945197522640228, 0.013960201293230057, -0.0006255934713408351, -0.012890543788671494, -0.009704994037747383, 0.01653674803674221, -0.04909493774175644, -0.003279241966083646, 0.004801746923476458, 0.0025531239807605743, -0.0020963724236935377, -0.0010686814785003662, 0.008291797712445259, -0.010587266646325588, 0.011297768913209438, -0.005972905084490776, 0.01580282300710678, -0.00861191377043724, -0.019003987312316895, 0.0071831014938652515, -0.018379369750618935, 0.005816750694066286, 0.01961299031972885, -0.01153200026601553, 0.016786595806479454, -0.004177129361778498, -6.305647730187047e-06, -0.013593238778412342, -0.007920931093394756, -0.005828462075442076, 0.015451475977897644, -0.01182088628411293, 0.01897275634109974, 0.007952162064611912, -0.01698959618806839, -0.01744244433939457, 0.000257898704148829, 0.005110152065753937, -0.0029630293138325214, 0.0018055349355563521, 0.019909683614969254, 0.00011485886352602392, 0.015279705636203289, -0.029122790321707726, -0.009939226321876049, 0.001787967630662024, -0.0019831606186926365, -0.014171009883284569, -0.0010403785854578018, -0.0017772320425137877, 0.01802021451294422, 0.00829960498958826, 0.00963472481817007, -0.006156386341899633, 0.004095148295164108, -0.0018631168641149998, 0.011914579197764397, -0.009423916228115559, -0.012461119331419468, 0.0030274430755525827, 0.011438308283686638, -0.019847221672534943, 0.0140695096924901, -0.030715566128492355, 0.0030274430755525827, -0.011492962017655373, 0.02108084037899971, -0.014350587502121925, -0.0076515646651387215, 0.014569203369319439, -0.0014951782068237662, -0.008791491389274597, -0.004009263589978218, 0.02493785321712494, 0.026062166318297386, 0.013077928684651852, -0.029747407883405685, 0.0033865980803966522, 0.005250690970569849, 0.009626917541027069, -0.006964485161006451, -0.013827470131218433, 0.016333747655153275, -0.0015908227069303393, 0.01784844510257244, 0.0020026799757033587, 0.005621557589620352, -0.02062799222767353, 0.0019753528758883476, -0.01307012140750885, -0.01864483207464218, -0.012648504227399826, 0.0164742860943079, -0.012547004036605358, -0.00844014436006546, -0.026062166318297386, 0.012016079388558865, 0.003279241966083646, -0.00025448284577578306, -0.0036813393235206604, 0.00812783557921648, 0.002203728538006544, -0.027405092492699623, -0.005293633323162794, 0.024110235273838043, -0.006835657637566328, -0.013968008570373058, 0.00027741800295189023, -0.02336069382727146, 0.007928738370537758, 0.028326403349637985, -0.013273121789097786, -0.03482242673635483, 0.013640085235238075, -0.013116967864334583, 0.033260881900787354, 0.030778028070926666, 0.023110847920179367, 0.016037054359912872, 0.0020944206044077873, 0.0023813543375581503, 0.018160754814743996, -0.014928358606994152, 0.0059885201044380665, -0.011922386474907398, 0.0029278944712132215, -0.0017577126855030656, -0.001849453430622816, -0.025359470397233963, -0.009127222932875156, 0.010321804322302341, 0.018738524988293648, -0.007487602531909943, -0.0036130219232290983, -0.019925298169255257, -0.00029352144338190556, -0.005746481008827686, 0.029075944796204567, 0.006999619770795107, 0.009580071084201336, 0.0033202324993908405, -0.008018527179956436, 0.010563843883574009, 0.012406465597450733, -0.014155394397675991, -0.010938613675534725, -0.0089476453140378, -0.01142269279807806, 0.0015049377689138055, -0.021502457559108734, -0.02403215877711773, -0.020893456414341927, 0.0019890163093805313, 0.003712570294737816, 0.006371098570525646, -0.0035329926759004593, -0.011266537941992283, 0.004817362409085035, 0.007393909618258476, 0.025140855461359024, 0.01471755001693964, 0.017130134627223015, -0.008268374018371105, -0.012008271180093288, -0.002611682051792741, 8.204204277717508e-06, -0.017005210742354393, 0.02386038936674595, -0.005434172227978706, -0.011243115179240704, -0.00012486250489018857, 0.008853953331708908, -0.021096456795930862, 0.011797463521361351, -0.003316328627988696, -0.019331911578774452, -0.012125387787818909, 0.01198484841734171, 0.00837768241763115, 0.000286445691017434, 0.01355419959872961, -0.0210183784365654, -0.0025804510805755854, -0.009814302437007427, 0.0007061105570755899, 0.008783684112131596, 0.0036032621283084154, -0.0023208444472402334, -0.009658148512244225, -0.021127687767148018, 0.020034605637192726, 0.009993880055844784, -0.010204688645899296, 0.006937158294022083, 0.029060330241918564, 0.009868956170976162, -0.006843465380370617, -0.0012355714570730925, 0.004481630399823189, -0.014701934531331062, -0.013421468436717987, -0.007198716979473829, -0.01630251668393612, -0.0060939243994653225, 0.006964485161006451, 0.0012765619903802872, 0.0012453311355784535, -0.0012472830712795258, -0.013452699407935143, -0.015287513844668865, -0.0021315072663128376, 0.005801135208457708, -0.020581146702170372, -0.020018991082906723, 0.007753064855933189, 0.00751492939889431, 0.0006475526606664062, 0.008401105180382729, 0.009954841807484627, 0.0027541727758944035, -0.007784295827150345, -0.004735381342470646, -0.00088959198910743, -0.0037808879278600216, -0.004946189932525158, 0.003671579761430621, 0.025781087577342987, -0.004836881998926401, 0.017239443957805634, -0.011969232931733131, 0.009736225008964539, 0.01104792207479477, -0.012367426417768002, 0.007792103569954634, -0.0105091892182827, 0.002517989370971918, -0.00696058152243495, 0.003199212718755007, 0.008760260418057442, -0.008721222169697285, 0.004177129361778498, -0.009954841807484627, 0.0021451706998050213, 0.011953617446124554, 0.005359998904168606, -0.0035017619375139475, -0.009923610836267471, 0.028732405975461006, -0.009166262112557888, 0.0073275440372526646, -0.009790879674255848, -0.008229335770010948, 0.0323864184319973, 0.00453238096088171, 0.012703158892691135, 0.009478570893406868, -0.012999852187931538, -0.02551562525331974, -0.023907234892249107, 0.022470613941550255, 0.0255624707788229, 0.012336195446550846, -0.006070501171052456, 0.019347527995705605, 0.009501993656158447, -0.0038140707183629274, -0.01298423670232296, 0.011555423960089684, 0.018504293635487556, -0.015755977481603622, -0.012515773065388203, -0.026405705139040947, 0.009697186760604382, -0.009423916228115559, 0.005496634170413017, 0.00027961391606368124, 0.002964981133118272, 0.0032987610902637243, 0.020752916112542152, -0.012117579579353333, 0.005028170999139547, -0.000807122909463942, -0.01593555323779583, -0.007780391722917557, 0.011602270416915417, 0.0015996063593775034, -0.026967860758304596, 0.008916415274143219, 0.004384034313261509, 0.00986114889383316, 0.027654940262436867, 0.0043410914950072765, 0.0044738226570189, -0.023797927424311638, -0.003191404975950718, -0.0042981491424143314, -0.02261115424335003, -0.010719997808337212, -0.01570132188498974, 0.0029103271663188934, -0.005719154141843319, -0.0009730369783937931, 0.009135031141340733, 0.023797927424311638, -0.006195425055921078, 0.006183713208884001, 0.003888244042173028, 0.005274114198982716, -0.002986452542245388, 0.00852602906525135, -0.004426976665854454, -0.0023735465947538614, -0.021564919501543045, -0.018145138397812843, -0.007335351780056953, 0.013109159655869007, -0.0075891027227044106, 0.002953269751742482, 0.01972229778766632, -0.011859924532473087, -0.003244107123464346, 0.015420245006680489, 0.005297537427395582, -0.003167981980368495, -0.0015361686237156391, -0.002047574147582054, -0.004477726761251688, -0.012507965788245201, -0.00954884011298418, 0.010954229161143303, 0.013601046055555344, -0.002039766637608409, -0.006234463304281235, 0.00823714304715395, -0.004122475627809763, 0.00782723817974329, -0.006468695122748613, 0.0020729494281113148, -0.009166262112557888, 0.005387325771152973, -0.008721222169697285, -0.01173500157892704, 0.0007353895343840122, 0.01540462952107191, -0.006933254189789295, -0.0061095398850739, -0.00013639108510687947, 0.0021119879093021154, -0.0001222395949298516, -0.0409124456346035, 0.012055117636919022, -0.023142078891396523, 0.018707294017076492, -0.009408300742506981, 0.019285066053271294, -0.0033260881900787354, -0.014904934912919998, -0.010009495541453362, 0.009587878361344337, -0.011852117255330086, -0.014616049826145172, -0.001398557680658996, 0.029841100797057152, 0.009267762303352356, 0.008799298666417599, 0.00861191377043724, 0.016864672303199768, -0.021627381443977356, -0.015873093158006668, 0.007069889456033707, -0.029731793329119682, -0.01008757296949625, 0.009369262494146824, -0.008783684112131596, 0.0034920021425932646, -0.023673003539443016, 0.023610541597008705, -0.013663507997989655, -0.010353035293519497, 0.012906159274280071, 0.013476123102009296, 0.0067224460653960705, -0.018613601103425026, 0.0006446247571147978, -0.0028830000665038824, -0.02239253744482994, 0.05290510132908821, 0.008604106493294239, 0.0033768382854759693, -0.004868112504482269, 0.01417881716042757, -0.011805270798504353, -0.0007832117844372988, -9.546156070427969e-05, -0.006585810799151659, -0.018082676455378532, -0.006425752770155668, -0.014108547940850258, 0.011188461445271969, 0.013601046055555344, -0.006257886532694101, 0.003757464699447155, -0.01703644171357155, -0.009127222932875156, -0.0016152218449860811, 0.0012189800618216395, -0.007265082560479641, 0.004208360332995653, -0.000771988183259964, 0.009283377788960934, 0.014241279102861881, 0.010353035293519497, 0.0065545798279345036, 0.0041458988562226295, -0.0018328620353713632, -0.007811622694134712, 0.010064149275422096, 0.00587921217083931, -0.020752916112542152, 0.019160142168402672, 0.006870792713016272, 0.005035978741943836, 0.008393297903239727, 0.006984004285186529, 0.0030528181232511997, -0.008205912075936794, -0.015146974474191666, -0.014038278721272945, 0.00021983608894515783, 0.009509801864624023, -0.02368861809372902, -0.014483318664133549, 0.016396209597587585, 0.01659920997917652, 0.01711452007293701, -0.006839561741799116, 0.0030391544569283724, -0.02215830609202385, -0.012289348989725113, 0.0037789358757436275, -0.013359006494283676, 0.009119415655732155, 0.006831753998994827, -0.013874316588044167, -0.019472450017929077, 0.004087341018021107, -0.006207136437296867, 0.005840173456817865, 0.001986088464036584, 0.01167253963649273, -0.01591213047504425, 0.017692290246486664, -0.0008534812368452549, 0.013023274950683117, -0.004727573599666357, 0.025375086814165115, 0.01795775257050991, -0.012976428493857384, -0.019706683233380318, 0.0010423304047435522, -0.023423155769705772, -0.00751492939889431, -0.019331911578774452, -0.005805038847029209, -0.012453311122953892, 0.0011516385711729527, 0.009095991961658001, -0.015685707330703735, -0.013515161350369453, -0.017411213368177414, -0.022751692682504654, 0.0010442823404446244, 0.002420392818748951, 0.010665344074368477, 0.0019743768498301506, -0.004286437761038542, 0.008401105180382729, -0.03635273873806, -0.022548692300915718, 0.008252758532762527, 0.007557871751487255, 0.0003432956291362643, -0.0036813393235206604, -0.018285676836967468, 0.006808330770581961, 0.002964981133118272, 0.002322796266525984, 0.002836153842508793, 0.0019363142782822251, -0.002420392818748951, 0.0025804510805755854, -0.02153368853032589, -0.01806706190109253, -0.018769755959510803, 0.00548492232337594, 0.006019751075655222, -0.002506277756765485, 0.015076705254614353, -0.009119415655732155, 0.005363903008401394, 0.00751492939889431, 0.02635885961353779, 0.0024438160471618176, 0.018738524988293648, -0.00697619654238224, -0.002213488332927227, -0.014764396473765373, 0.0034939541947096586, 0.021346302703022957, -0.004719765856862068, 0.0029688850045204163, 0.023267002776265144, 0.003435396356508136, 0.006570195313543081, -0.0046534002758562565, -0.0026351050473749638, -0.007885796017944813, -0.013889932073652744, -0.0006294973427429795, 0.010759036988019943, 0.006113443989306688, 0.00017896755889523774, 0.006203232798725367, 0.0037262337282299995, 0.008393297903239727, -0.015217243693768978, -0.008229335770010948, 0.03988182917237282, 0.015865284949541092, -0.0036891470663249493, 0.021174533292651176, -0.0041966489516198635, -0.007714026141911745, 0.014733165502548218, -0.0034822425805032253, 0.0029200867284089327, -0.001630837214179337, -0.007167486008256674, -0.010181264951825142, 0.0021646900568157434, -0.0031367510091513395, 0.021689843386411667, -0.02119014970958233, 0.025250162929296494, 0.010727806016802788, 0.006523348856717348, -0.0029474138282239437, 0.003002067795023322, 0.0017723521450534463, 0.016271285712718964, 0.010095380246639252, -0.026780474931001663, 0.0026682878378778696, 0.007936546579003334, -0.009033530950546265, 0.004290341399610043, -0.0018904439639300108, -0.0030215871520340443, -0.016068285331130028, -0.002117843832820654, 0.007253370713442564, 0.01150857750326395, 0.0014844425022602081, 0.009197493083775043, -0.013562007807195187, -0.010548228397965431, 0.009205300360918045, 0.019566142931580544, 0.007885796017944813, -0.002508229576051235, -0.02034691534936428, 0.004782227799296379, -0.01275781262665987, -0.0055317687802016735, -0.0010452583665028214, -0.002646816661581397, 0.00223691132850945, 0.024282004684209824, 0.01886344887316227, -0.008853953331708908, -0.011407077312469482, -0.0024164889473468065, -0.008026335388422012, -0.004938382189720869, -0.03794551268219948, -0.010860537178814411, 0.014514549635350704, -0.002246671123430133, -0.03956951946020126, -0.0032499630469828844], "8421e4dd-a2ca-470e-90cf-b80e1736f364": [-0.018341027200222015, -0.01872137188911438, -0.01039606612175703, 0.02742701955139637, -0.046599168330430984, -0.02107386849820614, 0.018566416576504707, 0.012818997725844383, 0.011656835675239563, 0.05474134534597397, 0.008311218582093716, 0.00964946486055851, -0.013952985405921936, 0.000973750778939575, -0.0100298086181283, 0.026356421411037445, -0.0073321848176419735, 0.008733822032809258, 0.01727042905986309, -0.0015240168431773782, 0.07668859511613846, -0.01632661372423172, -0.029216045513749123, -0.002396518597379327, 0.017059126868844032, -0.014551674947142601, -0.0034723987337201834, 0.008374609053134918, -0.04752889648079872, -0.010346761904656887, 0.005472725722938776, 0.024764612317085266, -0.0036625706125050783, 0.013509251177310944, -0.00040565611561760306, -0.04995182901620865, -0.0027381237596273422, -0.01618574559688568, -0.024722352623939514, -0.030286641791462898, -0.039781153202056885, 0.05082521215081215, 0.0009138818131759763, -0.029075177386403084, -0.04364093765616417, 0.008945124223828316, 0.007747745607048273, -0.01126240473240614, -0.014044550247490406, -9.415052045369521e-05, 0.0046768211759626865, 0.020383615046739578, -0.0034565511159598827, 0.0014324525836855173, 0.026497289538383484, -0.037780825048685074, -0.0013452903367578983, 0.07060309499502182, 0.020482221618294716, -0.0924658253788948, -0.020003270357847214, 0.014664369635283947, 0.0011199014261364937, -0.017467644065618515, 0.01157231442630291, -0.006289761047810316, -0.0029441434890031815, 0.0017309167888015509, -0.04679638519883156, 0.012093526311218739, 0.005870678462088108, 0.02735658548772335, -0.02136969193816185, 0.008064699359238148, -0.00731105450540781, -0.00916347000747919, 0.053896136581897736, 0.001651678467169404, 0.027962319552898407, 0.017242256551980972, -0.02622964046895504, 0.009085992351174355, 0.06130579859018326, 0.013368383049964905, 0.060066159814596176, 0.02807501330971718, 0.0014949627220630646, -0.03211792930960655, 0.0066560180857777596, -0.026074685156345367, 0.029864037409424782, 0.04251399263739586, -0.02855396457016468, 0.005331857595592737, -0.015030627138912678, 0.019383450970053673, 0.019327104091644287, -0.0023894752375781536, 0.028610311448574066, -0.029103349894285202, 0.013220471329987049, 0.006853233091533184, -0.022031771019101143, 0.014023419469594955, -0.006198196671903133, -0.008621128275990486, 0.003997132647782564, 0.02637050859630108, -0.041161660104990005, -0.012016049586236477, 0.004828254226595163, -0.04668369144201279, -0.011621618643403053, 0.00563120236620307, -0.03707648441195488, -0.012980995699763298, -0.005310727749019861, 0.0017599709099158645, -0.016016703099012375, -0.03318852558732033, 0.025004088878631592, -0.009043732658028603, -0.0027645365335047245, -0.014023419469594955, -0.020454049110412598, 0.024144792929291725, -0.009452249854803085, -0.01280491054058075, 0.013466990552842617, 0.01643930748105049, 0.0170873012393713, -0.011656835675239563, 0.01658017560839653, -0.013868465088307858, 0.003231162205338478, 0.012959865853190422, 0.00425421679392457, 0.04989548400044441, -0.00594111206009984, 0.031244546175003052, -0.030850114300847054, -0.0530509278178215, -0.03848516568541527, 0.017622599378228188, 0.04386632889509201, -0.009874854236841202, -0.04364093765616417, 0.0200596172362566, -0.04648647457361221, 0.015256015583872795, -0.046852730214595795, -0.00030660824268125, -0.01351629476994276, 0.008121046237647533, -0.002780384151265025, 0.003482963889837265, -0.015946269035339355, 0.02848353050649166, 0.014192461036145687, 0.06164388358592987, -0.01722816936671734, -0.06710956245660782, -0.02049630880355835, 0.01159344520419836, 0.05916460230946541, 0.04276755824685097, 0.029047003015875816, 0.022299420088529587, 0.012586564756929874, 0.0014394959434866905, 0.016058964654803276, -0.009071906097233295, 0.02851170487701893, 0.02296150103211403, -0.006652496289461851, -0.030990982428193092, 0.028215881437063217, 0.030061254277825356, 0.015467317774891853, -0.015664532780647278, -0.01519966870546341, 0.004828254226595163, 0.002584929810836911, -0.011410316452383995, -0.006511628162115812, 0.035470589995384216, 0.0037506131920963526, 0.038147084414958954, 0.014988366514444351, 0.001461506588384509, -0.022257160395383835, -0.0029811211861670017, 0.005993937607854605, 0.024285661056637764, 0.004275347106158733, -0.010212937369942665, 0.00881834328174591, -0.00812808983027935, -0.003384356154128909, 0.05248745530843735, 0.004937427118420601, -0.047979675233364105, -0.008339392021298409, 0.05513577535748482, -0.03501981124281883, 0.040034715086221695, -0.0324278362095356, -0.03594953939318657, 0.0042013912461698055, -0.03659753501415253, 0.0478106327354908, -0.03065289929509163, 0.02118656225502491, 0.011008841916918755, -0.010980668477714062, 0.007092709187418222, -0.00048115261597558856, 0.024694178253412247, 0.01697460561990738, -0.008388695307075977, -0.012051266618072987, 0.020947087556123734, 0.003026903374120593, 0.006539801601320505, -0.05938999354839325, -0.01697460561990738, -0.01289647538214922, 0.0410771407186985, -0.033357568085193634, -0.0011929767206311226, 0.03516067937016487, -0.012678129598498344, 0.02420113980770111, -0.026567723602056503, -0.026976242661476135, 0.00025048109819181263, 0.01507288683205843, 0.011889267712831497, -0.0027416455559432507, -0.019214408472180367, 0.0157772284001112, 0.01941162534058094, 0.01084684394299984, 0.01039606612175703, -0.023567233234643936, 0.004388041328638792, 0.013614902272820473, 0.03783717378973961, -0.008212610147893429, -0.009008515626192093, -0.0015821248525753617, 0.04905027523636818, 0.00888877734541893, -0.025891557335853577, -0.011304665356874466, 0.027370672672986984, 0.0234686266630888, -0.01269925944507122, 0.006916624028235674, 0.011339882388710976, 0.006321456283330917, 0.0016833738191053271, 0.00765618123114109, 0.019200323149561882, 0.02122882381081581, -0.044683363288640976, 0.02927239239215851, -0.020270919427275658, 0.006539801601320505, 0.00929025188088417, -0.01814381219446659, 0.004310564137995243, 6.553668208653107e-05, 0.021538732573390007, 0.0074448795057833195, -0.014481240883469582, 0.003482963889837265, -0.0008971537463366985, 0.011861094273626804, 0.00032839877530932426, -0.008980341255664825, 0.013805074617266655, -0.002773340791463852, 0.006060850340873003, 0.01356559805572033, -0.02376444824039936, -0.014079767279326916, 0.019932836294174194, -0.03780899941921234, 0.008494346402585506, 0.012579522095620632, 0.004951513838022947, 0.04313381388783455, 0.010445370338857174, 0.018059290945529938, 0.013713509775698185, -0.025849297642707825, -0.017185907810926437, -0.027088936418294907, 0.03893594443798065, 0.019651100039482117, -0.01784798875451088, 0.004807123914361, -0.027765102684497833, 0.027004415169358253, -0.043331027030944824, 0.02063717693090439, 0.032202448695898056, -0.0059516774490475655, 0.03465355187654495, 0.026905808597803116, -0.022609330713748932, -0.04510596767067909, -0.013945942744612694, -0.0022045858204364777, 0.0009667073609307408, -0.0134599469602108, -0.011565271764993668, 0.011755443178117275, -0.012466827407479286, -0.0029687953647226095, -0.0009948810329660773, -0.0761251226067543, 0.010579194873571396, 0.033075831830501556, -0.034484513103961945, 0.042795728892087936, -0.006159457843750715, -0.00861408468335867, -0.018960846588015556, -0.01872137188911438, -0.022440288215875626, -0.020848479121923447, -0.008008351549506187, -0.017862075939774513, -0.040654536336660385, -0.032709572464227676, -0.02887796051800251, -0.042795728892087936, -0.006997623015195131, -0.008268957957625389, 0.003396682208403945, 0.016735130921006203, -0.012635868974030018, 0.01835511438548565, 0.007663224823772907, 0.0005049241008237004, -0.02162325382232666, -0.013924811966717243, 0.025088610127568245, 0.0008425673586316407, -0.016228005290031433, 0.007698441855609417, -0.012171003967523575, 0.03685109689831734, -0.02079213224351406, -0.005190989468246698, -0.023736275732517242, 0.011072233319282532, -0.010403109714388847, -0.00974102970212698, -0.02187681570649147, -0.01245978381484747, -8.815262117423117e-05, -0.0055924635380506516, 0.02539851889014244, 0.0011920963879674673, -0.03262505307793617, -0.015101061202585697, -0.002090130466967821, -0.05510760098695755, 0.010593281127512455, 0.00765618123114109, -0.006567975506186485, -0.013600815087556839, -0.03428729623556137, 0.04502144455909729, 0.011910398490726948, -0.026948068290948868, 0.01157231442630291, 0.008212610147893429, 0.02325732447206974, -0.014495328068733215, 0.0325123593211174, 0.025370346382260323, 0.00046530496911145747, 0.014805237762629986, -0.005782635882496834, -0.009135296568274498, 0.004176739137619734, -0.0341746024787426, -0.006050284951925278, -0.021158389747142792, 0.0023049544543027878, -0.03516067937016487, -0.03355478122830391, -0.000146370759466663, -0.04211956262588501, 0.02703258953988552, -0.031723495572805405, -0.0153827965259552, -0.002584929810836911, -0.022778373211622238, 0.01943979784846306, -0.0020795653108507395, -0.02187681570649147, 0.0031466411892324686, -0.016101224347949028, 0.02028500661253929, -0.012516130693256855, -0.00408165343105793, -0.0047331685200333595, 0.0487685389816761, 0.009874854236841202, 0.05155772715806961, 0.013213427737355232, -0.029469607397913933, 0.05606550723314285, -0.026793112978339195, -0.026018338277935982, 0.01980605535209179, 0.035386066883802414, -0.01766486093401909, 0.038006216287612915, -0.01796068251132965, 0.028427183628082275, 0.02013005129992962, 0.007973134517669678, 7.527639536419883e-05, -0.016016703099012375, -0.01393185555934906, 0.04893757775425911, 0.00469795148819685, 0.00812808983027935, 0.009438162669539452, -0.01646748185157776, 0.0453595295548439, -0.002768058329820633, 0.016087137162685394, -0.012628825381398201, -0.018256505951285362, -0.0026958633679896593, 0.0023155193775892258, 0.0014826367842033505, -0.027638321742415428, -0.05020539090037346, -0.041048966348171234, -0.021890902891755104, 0.02339819259941578, 0.009297294542193413, 0.015861747786402702, 0.009931201115250587, -0.07133560627698898, -0.009853723458945751, -0.0048775579780340195, 0.008797213435173035, -0.0015645163366571069, -0.010551021434366703, -0.003093815641477704, -0.04383815452456474, -0.058206699788570404, -0.007874527014791965, 0.028596224263310432, 0.00477190688252449, 0.00812808983027935, -0.02611694671213627, 0.010952495038509369, 0.011544140987098217, 0.009642421267926693, 0.041556090116500854, 0.00696592777967453, -0.018129725009202957, 0.006539801601320505, 0.042936597019433975, -0.005500899627804756, -0.03400555998086929, -0.010311544872820377, 0.005331857595592737, -0.006941275671124458, -0.009135296568274498, -0.017369037494063377, -0.046965427696704865, -0.024764612317085266, 0.002084848005324602, 0.004412693437188864, -0.0072194901295006275, -0.03254053369164467, -0.017876163125038147, 0.044598840177059174, -0.009240947663784027, 0.044824231415987015, -0.00020833071903325617, 0.0006088143563829362, 0.021214736625552177, -0.031103678047657013, -0.02627190202474594, -0.01386142149567604, -0.0478951558470726, -0.02267976477742195, -0.04538770392537117, 0.02293332666158676, -0.015805400907993317, -0.007458966225385666, 0.030821941792964935, -0.010593281127512455, 0.024116618558764458, -0.031582627445459366, 0.03062472492456436, -0.0008033884223550558, -0.015227842144668102, -0.037527263164520264, 0.007578704040497541, -0.018552329391241074, 0.034343644976615906, 0.021904990077018738, 0.03856968507170677, 0.007909744046628475, 0.010170676745474339, 0.03262505307793617, -0.001207944005727768, -0.0004727885825559497, -0.008599997498095036, -0.019313016906380653, -0.009691725485026836, -0.033611129969358444, -0.0011507163289934397, -0.019313016906380653, -0.0349634625017643, 0.03206158056855202, -0.033104006201028824, -0.012473871000111103, 0.030990982428193092, -0.021961336955428123, 0.030962809920310974, 0.019397538155317307, 0.004891644697636366, -0.0046768211759626865, -0.0003312601475045085, -0.011931528337299824, 0.01842554844915867, -0.0003114505670964718, 0.0071525778621435165, 0.02975134365260601, 0.0045641264878213406, -0.007994265295565128, 0.04933201149106026, 0.007550530601292849, -0.00038452589069493115, -0.00231728027574718, 0.02680720016360283, -0.034991636872291565, 0.010565107688307762, -0.019890576601028442, 0.01807337813079357, 0.012720390222966671, -0.024820959195494652, 0.018481895327568054, -0.038654208183288574, -0.012635868974030018, -0.0059622423723340034, -0.013988202437758446, 0.0234686266630888, 0.004902210086584091, 0.006296804174780846, -0.03000490553677082, -0.011015885509550571, -0.008754952810704708, 0.02194724977016449, 0.0015310602029785514, 0.023736275732517242, 0.04716264083981514, 0.01966518722474575, 0.007825222797691822, 0.021242910996079445, 0.02710302360355854, 0.01550957839936018, 0.008966255001723766, 0.02351088635623455, -0.04552857205271721, -0.014650282450020313, 0.006243978627026081, -0.007564617320895195, -7.31853797333315e-05, 0.00390909006819129, 0.018524155020713806, 0.03014577366411686, -0.007902700453996658, -0.014833411201834679, 0.011649792082607746, 0.014509414322674274, -0.00669475644826889, 0.01886224001646042, 0.00013943741214461625, 0.005451595410704613, -0.013347253203392029, 0.020693523809313774, 0.02289106696844101, 0.016537915915250778, 0.013819160871207714, 0.009677638299763203, 0.003525224281474948, 0.008395738899707794, 0.011677965521812439, 0.005740375258028507, -0.036118581891059875, 0.040908098220825195, -0.01389663852751255, 0.0132416021078825, -0.002380670979619026, 0.029807690531015396, -0.007071578875184059, 0.006472889333963394, 0.030793767422437668, 0.0011762486537918448, 0.04062636196613312, 0.013628989458084106, -0.005673462990671396, 0.025004088878631592, -0.0038879597559571266, 0.029582301154732704, 0.021454211324453354, -0.02187681570649147, 0.05536116659641266, -0.033723823726177216, 0.023820796981453896, 0.029864037409424782, -0.014805237762629986, 0.019228495657444, -0.014227678067982197, -0.0032135536894202232, -0.007811136543750763, -0.013142993673682213, 0.010311544872820377, -0.010184763930737972, 0.023665841668844223, 0.011994918808341026, -0.01159344520419836, 0.03456903249025345, -0.013037342578172684, 0.0036044626031070948, -0.012480913661420345, 0.0032153145875781775, -0.006184109952300787, 0.0503462590277195, -0.017101388424634933, 0.03702013939619064, -0.021285170689225197, 0.032484184950590134, 0.04251399263739586, 0.01318525429815054, -0.03772448003292084, 0.023496799170970917, 0.005092381965368986, 0.011396229267120361, 0.018186071887612343, -0.023130543529987335, -0.006170022767037153, -0.013572641648352146, 0.04240129888057709, 0.03152628242969513, 0.029328739270567894, -0.003460072912275791, 0.015734966844320297, -0.0009112405241467059, 0.019214408472180367, 0.02880752645432949, 0.02855396457016468, 0.012431610375642776, 0.026356421411037445, 0.020144138485193253, 0.021426038816571236, -0.01618574559688568, 0.011304665356874466, -0.0005718364845961332, -0.003266379237174988, 0.002528582466766238, -0.002692341571673751, -0.0051064686849713326, 0.012530217878520489, -0.024172967299818993, -0.006638409569859505, -0.03482259437441826, -0.04335920140147209, -0.018411461263895035, -0.007068057078868151, -0.009149383753538132, -0.009219817817211151, 0.043331027030944824, -0.03239966556429863, -0.006131284404546022, 0.0004501176008488983, 0.016453394666314125, 0.012241438031196594, -0.0032769441604614258, 0.010093200020492077, 0.002391236135736108, 0.01694643311202526, -0.007973134517669678, 0.003965436946600676, -0.039640285074710846, -0.04127435386180878, -0.009050775319337845, -0.0038456991314888, -0.03645666688680649, 0.029187871143221855, 0.0023701058235019445, -0.03276592120528221, -0.01197378896176815, -0.0028860352467745543, 0.0162561796605587, 0.008304174989461899, -0.0069800144992768764, -0.007117360830307007, 0.02899065613746643, 0.027708755806088448, 0.029864037409424782, -0.011677965521812439, -0.001885871752165258, 0.005134642589837313, 0.010818670503795147, 0.015495491214096546, 0.03823160380125046, -0.0068461899645626545, -0.03823160380125046, -0.02510269545018673, 0.040513668209314346, 0.004793037194758654, 0.01646748185157776, -0.004405649844557047, -0.0017432428430765867, 0.029666822403669357, -0.016819652169942856, -0.012445696629583836, 0.010565107688307762, 0.021454211324453354, 0.0017458840738981962, -0.020594917237758636, 0.00442678015679121, 0.03403373435139656, -0.050120871514081955, 0.001146314200013876, -0.005800244398415089, 0.025412606075406075, -0.010973624885082245, 0.019975097849965096, -0.007261750753968954, 0.02746928110718727, 0.006469367537647486, -0.0039161331951618195, 0.006543323397636414, 0.04034462571144104, -0.039922021329402924, 0.03707648441195488, 0.04048549383878708, -0.02427157387137413, 0.01832694001495838, 0.033216699957847595, -0.017002779990434647, -0.006043241824954748, 0.03304765745997429, -0.00964946486055851, 0.0030973374377936125, -0.021454211324453354, -0.020228659734129906, 0.010642585344612598, 0.010417195968329906, 0.0051628160290420055, 0.028723007068037987, 0.024060271680355072, 0.016044877469539642, 0.030089426785707474, 0.027272064238786697, 0.038456991314888, 0.02927239239215851, 0.0013400078751146793, -0.029694996774196625, 0.030990982428193092, -0.013072559610009193, -0.029723169282078743, -0.024806873872876167, -0.01588992215692997, -0.04302112013101578, 0.013234558515250683, -0.03899228945374489, 0.024990001693367958, -0.0333857424557209, 0.01519966870546341, 0.018594589084386826, -0.0006251021986827254, -0.0046768211759626865, 0.012311872094869614, -0.0037506131920963526, -0.016495654359459877, 0.025947904214262962, 0.021580994129180908, -0.023736275732517242, 0.02717345766723156, -0.025849297642707825, 0.015523664653301239, 0.00545863900333643, 0.014086810871958733, -0.03476624935865402, 0.040541838854551315, 0.04933201149106026, -0.0027222761418670416, -0.009212774224579334, 0.017735294997692108, -0.021707775071263313, -0.02173594757914543, 0.0074448795057833195, -0.0027874275110661983, -0.022975588217377663, -0.02372218854725361, 0.03910498693585396, 0.00012524054909590632, -0.01770712062716484, -0.0016384720802307129, -0.0038879597559571266, 0.020580830052495003, -0.0014227678766474128, -0.012199177406728268, 0.014129070565104485, 0.03197706118226051, 0.0027416455559432507, -0.010191807523369789, -0.008015395142138004, 0.0038668294437229633, 0.0098114637658, 0.001614700653590262, -0.014636196196079254, -0.009219817817211151, -0.0093959029763937, -0.0012281937524676323, 0.03710465878248215, -0.022905154153704643, 0.015763141214847565, -0.01235413271933794, 0.02961047552525997, -0.030230294913053513, 0.019355276599526405, -0.03614675626158714, -0.04127435386180878, -0.021778209134936333, 0.00659262714907527, -0.018665023148059845, -0.008529563434422016, 0.017805729061365128, 0.001356735941953957, 0.036738403141498566, 0.05310727655887604, 0.02383488230407238, -0.013375426642596722, 8.980341954156756e-05, 0.003884437959641218, 0.0002584049361757934, -0.001104053808376193, -0.03490711748600006, 0.005360031500458717, -0.03383651748299599, 0.028384922072291374, 0.005257902201265097, 0.01784798875451088, -0.04310563951730728, 0.010593281127512455, -0.02491956762969494, -0.0069236671552062035, 0.003317443886771798, 0.012234394438564777, 0.012847171165049076, 0.026469117030501366, 0.000998402712866664, -0.024215226992964745, 0.009015558287501335, 0.012487957254052162, -0.031188197433948517, -0.010403109714388847, -0.003255814081057906, 0.03206158056855202, -0.054769519716501236, -0.005190989468246698, -5.001918179914355e-05, 0.012072396464645863, 0.0029916863422840834, -0.019242582842707634, -0.04541587829589844, 0.007487139664590359, 0.021933164447546005, -0.015241928398609161, 0.01588992215692997, 0.012375262565910816, 0.023088281974196434, -0.006543323397636414, -0.0037823086604475975, -0.008480260148644447, -0.01276969350874424, -0.0037823086604475975, -0.007015231531113386, -0.03383651748299599, 0.005039556417614222, -0.021848643198609352, 0.0063601951114833355, -0.02935691364109516, -0.03623127564787865, 0.021031608805060387, 0.031047329306602478, -0.03685109689831734, 0.028272228315472603, 0.0024070837534964085, -0.005870678462088108, 0.00023375301680061966, -0.014389676973223686, 0.030934635549783707, 0.0009006754262372851, -0.01679147779941559, 0.04175330698490143, 0.040541838854551315, 0.019327104091644287, -0.0003792433417402208, -0.024356095120310783, -0.01507288683205843, 0.0031096634920686483, 0.022947413846850395, 0.023989837616682053, 0.006835624575614929, -0.005500899627804756, -0.018777718767523766, -0.005863634869456291, 0.0005449834861792624, -0.007353315129876137, 0.017030954360961914, -0.0009975222637876868, 0.0066665830090641975, 0.017932510003447533, 0.0001917126792250201, -0.013030299916863441, 0.01858050376176834, 0.000301986001431942, -0.012269611470401287, -0.013776900246739388, -0.028906134888529778, -0.025116782635450363, 0.001085564843378961, 0.016932345926761627, 0.0018805891741067171, -0.006895493716001511, -0.017566252499818802, -0.023243237286806107, 0.018115637823939323, -0.006673626601696014, 0.016115311533212662, -0.007226533722132444, 0.026764940470457077, -0.013009169138967991, -0.0002667689695954323, 0.01734086312353611, 0.03237149119377136, 0.00045033771311864257, -0.008536607027053833, 0.0230741947889328, 0.006842668168246746, -0.005134642589837313, -0.01570679433643818, -0.01124831847846508, 0.010684845969080925, -0.018228333443403244, 0.030455684289336205, -0.017242256551980972, -0.003926698584109545, 0.013086646795272827, -0.020763957872986794, -0.02151056006550789, -0.009839637205004692, -0.02187681570649147, 0.015734966844320297, 0.004166174214333296, -0.018848152831196785, -0.014917932450771332, 0.006198196671903133, -0.01162866223603487, 0.0026588854379951954, 0.025060435757040977, -0.008804256096482277, -0.008938081562519073, -0.011706139892339706, -0.0192707572132349, 0.006229891907423735, -0.01883406564593315, 0.013889594934880733, -0.013805074617266655, 0.011389186605811119, 0.020961174741387367, -0.03555510938167572, 0.01166387926787138, -0.014361503534018993, 0.007649138104170561, 0.0010494673624634743, -0.032991308718919754, -0.0035974192433059216, -0.015326449647545815, -0.02332775853574276, -6.0804395616287366e-05, 0.023355931043624878, -0.019467972218990326, 0.038766901940107346, 0.011910398490726948, 0.02855396457016468, 0.005405813455581665, -0.0325123593211174, -0.006754625588655472, 0.012678129598498344, -0.026426855474710464, -0.009867810644209385, 0.001719471300020814, 0.00848730280995369, 0.013903682120144367, 0.015551839023828506, 0.00013514533929992467, -0.008515477180480957, -0.00045914197107777, 0.03628762438893318, -0.020735785365104675, -0.00655741011723876, 0.01311482023447752, 0.0035128984600305557, -0.025595733895897865, -0.010860931128263474, -0.00565937627106905, -9.855264943325892e-05, 0.027765102684497833, -0.006529236678034067, -0.01908762753009796, -0.007247664034366608, 0.015185581520199776, -0.007099752314388752, -0.0029547084122896194, -0.03344208747148514, 0.006356673315167427, -0.07854805141687393, -0.031047329306602478, -0.029976733028888702, 0.015241928398609161, 0.017073214054107666, 0.009445206262171268, 0.02151056006550789, 0.011656835675239563, -0.01427698228508234, 0.026680419221520424, -0.004757820162922144, -0.010705975815653801, 0.020397702232003212, 0.03755543753504753, -0.02151056006550789, 0.01865093782544136, -0.005395248532295227, -0.012917605228722095, 0.024975914508104324, -0.014248808845877647, -0.0037224397528916597, 0.01639704778790474, 0.0010133698815479875, -0.015368710272014141, -0.02434200793504715, 0.03597771376371384, 0.005226206500083208, 0.002176412148401141, -0.005472725722938776, -0.03899228945374489, 0.01318525429815054, 0.0078886142000556, -0.009388859383761883, 0.0037999171763658524, 0.003217075252905488, 0.017974769696593285, 0.015396883711218834, 0.007367401849478483, 0.016199832782149315, 0.0008945124573074281, 0.020651264116168022, 0.026328248903155327, -0.0006678028730675578, -0.019679274410009384, -0.00675814738497138, -0.027145283296704292, -0.014009333215653896, -0.019946923479437828, -0.013290905393660069, 0.007046926766633987, 0.014319242909550667, 0.018594589084386826, -0.02408844605088234, -0.016411134973168373, 0.00995937455445528, -0.005331857595592737, 0.01197378896176815, -0.0035181809216737747, 0.02913152426481247, 5.832819806528278e-05, 0.03617493063211441, 0.009226860478520393, -0.0030480336863547564, 0.011107450351119041, -0.010558064095675945, 0.016537915915250778, 0.005198033060878515, 0.02539851889014244, 0.023750362917780876, -0.003729483112692833, -0.010290415026247501, -0.008529563434422016, 0.037639956921339035, 0.02935691364109516, -0.002650081180036068, 0.004747255239635706, 0.029103349894285202, 0.022905154153704643, -0.009480423294007778, -0.019580665975809097, -0.020341353490948677, -0.005240293685346842, 0.038006216287612915, -0.006184109952300787, -0.020580830052495003, -0.02198951132595539, -0.0020056096836924553, -0.045331355184316635, 0.021355604752898216, 0.006106632295995951, 0.021496472880244255, -0.014044550247490406, 0.03378017246723175, 0.02144012600183487, -0.013579685240983963, 0.007018753327429295, -0.0015433861408382654, -0.0031343153677880764, -0.0024951263330876827, -0.0013540945947170258, -0.0012907040072605014, -0.03394921123981476, 0.012945778667926788, -0.017862075939774513, -0.007677311543375254, -0.006155936047434807, 0.0007065415848046541, 0.009381815791130066, -0.012241438031196594, -0.01628435216844082, 0.008311218582093716, 0.024553310126066208, -0.0385415144264698, -0.00803652498871088, -0.016594262793660164, 0.016101224347949028, -0.01679147779941559, -0.01886224001646042, -0.011304665356874466, 0.007430792320519686, -0.009353642351925373, 0.01952431909739971, 0.0132416021078825, -0.017538078129291534, 0.0015072886599227786, 0.015791313722729683, 0.006962405983358622, -0.010149546898901463, 0.006465846206992865, 0.018298767507076263, 0.000776535423938185, 0.010586238466203213, -0.017354950308799744, -0.00018609997641760856, -0.0019193278858438134, 0.01883406564593315, 0.019228495657444, -0.014593935571610928, 0.008177393116056919, -0.02913152426481247, -0.0017476449720561504, -0.0034248558804392815, 0.012290742248296738, -0.0057685486972332, -0.01853824220597744, -0.013706466183066368, -0.003940785303711891, -0.010001635178923607, 0.012586564756929874, -0.008663387969136238, -0.00368722272105515, 0.005247336812317371, 0.023046022281050682, -0.008952167816460133, -0.012290742248296738, -0.011269448325037956, -0.022919241338968277, 0.0012105852365493774, -0.008254870772361755, -0.0183973740786314, -0.02056674286723137, 0.00964946486055851, 0.0013514533638954163, 0.008339392021298409, 0.011945615522563457, -0.001572440261952579, -0.018749544396996498, -0.01911580190062523, 0.004102783743292093, -0.004602865315973759, -0.009078949689865112, -0.006317934487015009, -0.006328499410301447, -0.015875834971666336, 0.0038950031157583, -0.014650282450020313, -0.016819652169942856, -0.006201718468219042, 0.03025846928358078, 0.007782962638884783, 0.004817689303308725, -0.00999459158629179, -0.008459129370748997, 0.027412932366132736, 0.012487957254052162, -0.003470637835562229, -0.0009931201348081231, 0.012776737101376057, 0.014129070565104485, -0.007402618881314993, 0.0342591218650341, 0.022327594459056854, -0.017805729061365128, 0.006339064799249172, 0.006726452149450779, 0.0027398846577852964, 0.040767230093479156, 0.03276592120528221, 0.002026739763095975, -0.00809287279844284, -0.026567723602056503, -0.006071415264159441, 0.012903518043458462, 0.010325632058084011, -0.011530054733157158, 0.011100406758487225, -0.038400646299123764, 0.010649628937244415, 0.014016376808285713, -0.0059516774490475655, 0.00563120236620307, 0.014608022756874561, 0.01669287122786045, -0.00738148856908083, 0.009536771103739738, -0.013981159776449203, 0.0035586804151535034, -0.025666167959570885, 0.0001577062503201887, 0.004166174214333296, 0.04411989077925682, -0.000563912617508322, -0.004930383525788784, -0.008691562339663506, 0.005793200805783272, 0.024074358865618706, 0.0016490372363477945, -0.0640668123960495, -0.02938508614897728, 0.003419573185965419, -0.0013215189101174474, 0.027257978916168213, -0.0009825549786910415, -0.010529890656471252, -0.004264781717211008, -0.004377476405352354, 0.054769519716501236, -0.007585747633129358, 0.01289647538214922, -0.009184600785374641, -0.03648483753204346, -0.02434200793504715, 0.011741356924176216, 0.0117343133315444, 0.02431383542716503, 0.04057001322507858, -0.036991965025663376, 0.004317607264965773, 0.006715886760503054, 0.023060109466314316, 0.010565107688307762, -0.009459293447434902, -0.018622763454914093, 0.017185907810926437, 0.005187468137592077, 0.018960846588015556, -0.0009596639429219067, -0.025159044191241264, -0.006863798480480909, -0.020017357543110847, 0.013072559610009193, 0.003254053182899952, 0.02337001822888851, -0.01124831847846508, 0.02901882864534855, -0.014495328068733215, 0.007120882626622915, 0.012445696629583836, -0.013220471329987049, -0.007247664034366608, -0.0039161331951618195, 0.004511300940066576, -0.032230623066425323, -0.0073744454421103, 0.010727105662226677, 0.0029969688039273024, 0.008663387969136238, -0.00814217608422041, -0.008057655766606331, 0.019749708473682404, -0.007145534735172987, 0.02107386849820614, -0.021158389747142792, 0.01015659049153328, 0.009100079536437988, 0.006543323397636414, 0.022552983835339546, 0.006638409569859505, 0.04121800884604454, -0.0222430732101202, 0.016735130921006203, -0.012142830528318882, 0.01588992215692997, -0.0008579748100601137, 0.020270919427275658, -0.03161080181598663, -0.0038950031157583, -0.0030603595077991486, 0.003460072912275791, -0.021172476932406425, 0.018524155020713806, -0.005310727749019861, -0.014164287596940994, -0.00497968727722764, -0.005120555404573679, -0.00021504396863747388, 0.0015997333684936166, 0.01867911033332348, 0.010529890656471252, 0.013234558515250683, -0.0014157244004309177, 0.013924811966717243, -0.023609494790434837, -0.008423912338912487, 0.011741356924176216, -0.00074263900751248, 0.026905808597803116, 0.0062369355000555515, -0.015213754959404469, -0.030990982428193092, -0.013142993673682213, -0.023384105414152145, 0.03428729623556137, 0.0026148641481995583, -0.03580867126584053, 0.007261750753968954, 0.007423749193549156, -0.032596878707408905, 0.02060900442302227, -0.0036343971733003855, -0.00943112000823021, 0.049613747745752335, -0.0021411951165646315, -0.009078949689865112, 0.012889431789517403, -0.007902700453996658, -0.006162979640066624, 0.005085338372737169, -0.0012528457446023822, 0.0005480649415403605, 0.015875834971666336, 0.017495818436145782, 0.011931528337299824, 0.003958393819630146, 0.02129925787448883, 0.01280491054058075, 0.011565271764993668, 0.03355478122830391, 0.036907441914081573, 0.008895820938050747, 0.01348107773810625, -0.001688656397163868, 0.003296313574537635, -0.0016182223334908485, 0.014509414322674274, 0.028201794251799583, 0.009388859383761883, 0.02024274691939354, -0.02180638164281845, -0.027511540800333023, -0.02615920640528202, -0.014523501507937908, 0.006698278244584799, 0.009107123129069805, 0.006715886760503054, 0.0027962317690253258, 0.02680720016360283, -0.008966255001723766, 0.010783453471958637, -0.00971989892423153, 0.0068285814486444, 0.019961010664701462, 0.010896148160099983, -0.012875344604253769, -0.01570679433643818, 0.018157899379730225, -0.012192134745419025, -0.00036691740388050675, 0.022299420088529587, 0.0037752653006464243, 0.0015935704577714205, 0.008733822032809258, -0.008177393116056919, -0.028723007068037987, -0.014051593840122223, 0.01036084908992052, -0.005377640016376972, -0.00483529781922698, -0.008043568581342697, 0.0073744454421103, 0.0009024362661875784, -0.009064862504601479, 0.008663387969136238, 0.0170450396835804, 0.0007479215855710208, 0.00803652498871088, -0.044683363288640976, 0.009487466886639595, -0.02793414518237114, -0.018200159072875977, -0.007902700453996658, 0.008121046237647533, -0.005201554857194424, 0.020552655681967735, 0.0011515967780724168, 0.024806873872876167, 0.010684845969080925, 0.019580665975809097, -0.006159457843750715, -0.0162139181047678, -0.0028684267308562994, 0.008494346402585506, -0.0007386771030724049, -0.018749544396996498, -0.02422931417822838, -0.0008821865194477141, 0.0034988115075975657, 0.02510269545018673, 0.00027205151855014265, -0.011220144107937813, -0.01519966870546341, -0.0036625706125050783, 0.010649628937244415, -0.023412279784679413, -0.00350057240575552, 0.0153827965259552, -0.012720390222966671, 0.001282780198380351, -0.002856100909411907, 0.005518508143723011, 0.029554128646850586, -0.010691889561712742, 0.0018418504623696208, 0.010952495038509369, 0.03324487432837486, -0.014974279329180717, -0.014791150577366352, -0.02028500661253929, -0.0040288278833031654, -0.022158551961183548, -0.027849623933434486, -0.01269925944507122, -0.001689536846242845, -0.005877721589058638, 0.010903190821409225, -0.007416705600917339, 0.024623744189739227, 0.0026817764155566692, 0.02217263914644718, 0.030089426785707474, -0.012586564756929874, -0.03479442000389099, 0.038006216287612915, 0.014889759011566639, -0.00857886765152216, 0.01955249346792698, -0.0037330046761780977, 0.0019880011677742004, -0.028779353946447372, 0.035611458122730255, 0.01588992215692997, 0.009100079536437988, -0.0217641219496727, 0.00819852389395237, -0.029159696772694588, 0.01858050376176834, 0.028751179575920105, -0.025891557335853577, -0.02238394133746624, 0.0025620386004447937, -0.004454953595995903, -0.02822996862232685, -0.02314462885260582, 0.020454049110412598, 0.015565925277769566, -0.033357568085193634, -0.0017837423365563154, -0.0011489554308354855, -0.012572478502988815, -0.012142830528318882, 0.017214082181453705, -0.007592790760099888, 0.015847662463784218, 0.030202122405171394, 0.027441106736660004, -0.009466337040066719, 0.04118983447551727, -0.011825877241790295, -0.02129925787448883, 0.030173948034644127, 0.008184436708688736, 0.01719999499619007, -0.017580339685082436, 0.009571988135576248, -0.0018717849161475897, -0.03265322744846344, -0.015537751838564873, -0.015565925277769566, 0.027849623933434486, 0.00010614631901262328, 0.020707610994577408, -0.022074032574892044, -0.04865584149956703, -0.007916787639260292, 0.010184763930737972, -0.0046310387551784515, -0.004264781717211008, 0.014481240883469582, 0.009860767051577568, -0.0051522511057555676, -0.012530217878520489, -0.00617706635966897, -0.007959048263728619, 0.004229564685374498, 0.0026606463361531496, -0.012656998820602894, 0.011276491917669773, 0.004715560004115105, -0.016411134973168373, -0.010304502211511135, -0.016425220295786858, -0.024581484496593475, -0.012713346630334854, -0.011713182553648949, -0.0016965802060440183, -0.0026236684061586857, -0.005444552283734083, 0.004433823749423027, -0.006698278244584799, -0.00713849114254117, -0.004197869449853897, 0.00477190688252449, -0.009987548924982548, 0.020158225670456886, 0.016058964654803276, -0.00015583533968310803, -0.005479769315570593, 0.00046002239105291665, -0.017143648117780685, -0.007599834352731705, 0.005402291659265757, -0.016115311533212662, 0.012206220999360085, -0.0038140038959681988, -0.00812808983027935, 0.07144830375909805, 0.013213427737355232, -0.0004983209073543549, -0.00026632874505594373, 0.0035586804151535034, -0.010043895803391933, -0.009529727511107922, 0.012741520069539547, 0.019355276599526405, -0.008740865625441074, 0.011769530363380909, -0.009494510479271412, 0.0022468462120741606, 0.0034547902178019285, -0.011072233319282532, 0.011044058948755264, 0.040288276970386505, 0.016270266845822334, -0.00023595408129040152, 0.007599834352731705, -0.005627680569887161, -0.003444225061684847, -0.018298767507076263, 0.022299420088529587, -0.017171822488307953, 0.019313016906380653, 0.005243815016001463, 0.010649628937244415, 0.018707284703850746, 0.025525299832224846, -0.0016657653031870723, -0.01008615642786026, -0.010579194873571396, -0.0009904789039865136, -0.0025778862182050943, 0.019763795658946037, 0.0004956796183250844, 0.005553725175559521, 0.0009174035512842238, 0.009276164695620537, 0.009135296568274498, -0.008832430467009544, 0.006751103792339563, 0.02198951132595539, -0.010494673624634743, -0.010973624885082245, 0.006708843633532524, -0.0028631442692130804, 0.015284189023077488, -0.01763668656349182, -0.004722603131085634, -0.015537751838564873, 0.002965273568406701, 0.010381978936493397, 0.020763957872986794, -0.004940948914736509, 0.002810318721458316, -0.013579685240983963, -0.004539474844932556, 0.0022855850402265787, -0.02673676609992981, -0.009170513600111008, -0.017101388424634933, -0.010459456592798233, -0.024511050432920456, -0.020651264116168022, -0.019467972218990326, -0.02927239239215851, 0.0011075754882767797, -0.015523664653301239, -0.0078886142000556, 0.03406190872192383, -0.007846353575587273, -0.02431383542716503, -0.0007650898769497871, 0.03025846928358078, -0.0153827965259552, 0.0061136758886277676, 0.005374118220061064, 0.021496472880244255, -0.0020373049192130566, 0.003273422596976161, -0.012030135840177536, -0.007145534735172987, 0.006071415264159441, 0.002324323635548353, 0.008205567486584187, -0.02622964046895504, 0.016594262793660164, -0.02067943848669529, -0.010367892682552338, -0.003729483112692833, -0.0005727168754674494, -0.0020126530434936285, 0.003792873816564679, -0.00497968727722764, -0.0049902526661753654, 0.014065680094063282, 0.017073214054107666, -0.007811136543750763, 0.0067299734801054, 0.015326449647545815, -0.02049630880355835, 0.00738148856908083, -0.007254707161337137, -0.02337001822888851, 0.013023256324231625, 0.005655854474753141, -0.014988366514444351, 0.00010064365778816864, -0.008564780466258526, -0.007642094511538744, 0.009790332987904549, -0.0011824116809293628, -0.03439998999238014, 0.013889594934880733, 0.01694643311202526, -0.005550203379243612, -0.002528582466766238, -0.01722816936671734, -0.011459620669484138, -0.0040781316347420216, 0.0069131022319197655, -0.0030339467339217663, -0.004831776022911072, 0.004581735003739595, -0.013248644769191742, -0.015016539953649044, -0.01658017560839653, -0.0004587017756421119, 0.017650773748755455, 0.010494673624634743, 0.01908762753009796, 0.006567975506186485, 0.012001962400972843, -0.0027645365335047245, -0.006296804174780846, -0.0037400482688099146, 0.020806219428777695, -0.019129889085888863, 0.008494346402585506, 0.010938407853245735, 0.0008958330727182329, 0.01796068251132965, 0.0061805881559848785, 0.009628335013985634, -0.0021130216773599386, -0.01687599904835224, 0.003838655771687627, -0.008628170937299728, 0.03949941694736481, -0.03324487432837486, -0.003167771501466632, 0.0012299546506255865, -0.005525551270693541, -0.005846026353538036, -0.02013005129992962, 0.011635705828666687, -0.018524155020713806, 0.001134868711233139, -0.017833901569247246, -0.006701800040900707, -0.003303356934338808, -0.00850843358784914, -0.006962405983358622, 0.0031360762659460306, 0.02042587473988533, 0.019200323149561882, 0.012135786935687065, -0.004472562111914158, -0.015241928398609161, 0.012713346630334854, 0.006835624575614929, -0.02191907726228237, 0.011776573956012726, -0.011361012235283852, 0.0021059780847281218, -0.012396393343806267, -0.022116292268037796, 0.019256670027971268, -0.003433660138398409, -0.009797376580536366, 0.008740865625441074, -0.001700982335023582, 0.000751883490011096, -0.02408844605088234, -0.005198033060878515, -0.007952004671096802, -0.009417032822966576, 0.006085501983761787, -0.023989837616682053, 0.009276164695620537, -0.0002100915735354647, -0.015227842144668102, -0.017876163125038147, -0.004715560004115105, 0.010593281127512455, 0.013086646795272827, 0.008290087804198265, -0.013748726807534695, -0.0025761255528777838, 0.006539801601320505, 0.013805074617266655, 0.004180260933935642, -0.015298276208341122, -0.01814381219446659, 0.004567648284137249, -0.010959538631141186, -0.019566578790545464, 0.004553561564534903, -0.03730187565088272, -0.03400555998086929, 0.0039443071000278, 0.013938899151980877, -0.009733986109495163, 0.005356509704142809, 0.0050501213409006596, 0.0012158678146079183, 0.008945124223828316, 0.013368383049964905, 0.01915806159377098, 0.0028842743486166, 0.02242620289325714, 0.0033685085363686085, -0.022693851962685585, -0.0037435698322951794, 0.012924648821353912, 0.014114984311163425, 0.021538732573390007, 0.006451759021729231, 0.023665841668844223, -0.011755443178117275, -0.009043732658028603, 0.011290578171610832, -0.00771957216784358, 0.03761178255081177, 0.014608022756874561, -0.012452740222215652, 0.006603192538022995, 0.00861408468335867, -0.02604651264846325, -0.009966418147087097, -0.019777880981564522, -0.0045148227363824844, 0.0068567548878490925, -0.028356749564409256, 0.01162866223603487, -0.0029564693104475737, -0.005279032047837973, -2.697679155971855e-05, -0.006486976053565741, -0.01157231442630291, 0.0016992215532809496, 0.006184109952300787, 0.022778373211622238, 0.0014755934244021773, -0.020327268168330193, 0.013981159776449203, 0.006131284404546022, -0.028525790199637413, 0.01039606612175703, 0.021820468828082085, -0.021130215376615524, 0.015227842144668102, -0.002546190982684493, 0.02604651264846325, -0.019890576601028442, 0.001301269163377583, 0.016411134973168373, 0.002842013956978917, -0.0018841108540073037, -0.009247991256415844, 0.020383615046739578, 0.03400555998086929, -0.011854050680994987, 0.01574905402958393, -0.0007408781675621867, -0.023820796981453896, 0.001054749940522015, 0.024440616369247437, 0.00466273445636034, 0.01810155063867569, -0.0006123360362835228, -0.021383779123425484, 0.0034002037718892097, -0.025891557335853577, 0.010670758783817291, 0.0011172601953148842, -0.0020073705818504095, 0.011339882388710976, -0.0035287460777908564, -0.017862075939774513, 0.023130543529987335, -0.0029617520049214363, -0.019566578790545464, -0.0026042989920824766, -0.022806545719504356, 0.007839309982955456, -0.0005797602934762836, 0.007952004671096802, -0.00803652498871088, 0.006029154639691114, -0.015284189023077488, -0.016016703099012375, 0.003125511109828949, 0.0035586804151535034, 0.0067898426204919815, 0.011234231293201447, -0.0037999171763658524, 0.032202448695898056, 0.031244546175003052, 0.006884928792715073, 0.0047331685200333595, -0.015594098716974258, -0.01618574559688568, 0.014438980259001255, 0.0006700039375573397, 0.004891644697636366, -0.021595079451799393, 0.006046763155609369, 0.008325304836034775, 0.00932546891272068, 0.00028415737324394286, 0.004095740150660276, 0.0026483202818781137, 0.025412606075406075, 0.017002779990434647, 0.012868301011621952, 0.005500899627804756, -0.017101388424634933, 0.01438263338059187, 0.002063717693090439, -0.01500245276838541, -0.014389676973223686, -0.0008496107766404748, 0.005603028926998377, -0.0019580665975809097, -0.011325795203447342, -0.01759442687034607, -0.008761996403336525, -0.01650974154472351, -0.015565925277769566, -0.012656998820602894, -0.01012137345969677, 0.008423912338912487, 0.0153827965259552, 0.005236771889030933, -0.004155609291046858, 0.0239053163677454, 0.018552329391241074, 0.010853887535631657, 0.015861747786402702, 0.020270919427275658, 0.0015891683287918568, -0.009804420173168182, 0.00675814738497138, -0.008402782492339611, 0.018383286893367767, -0.017580339685082436, 0.018157899379730225, -0.02713119611144066, 0.014988366514444351, -0.008832430467009544, -0.0010248154867440462, -0.008987384848296642, 0.028060926124453545, -0.021144302561879158, 0.020439961925148964, -0.014171331189572811, 0.004616952035576105, -0.004433823749423027, -0.02532808482646942, -0.006081980187445879, -0.016270266845822334, -0.02684945985674858, 0.0053424229845404625, 0.011473706923425198, 0.007599834352731705, -0.014664369635283947, 0.020665351301431656, 0.042035043239593506, 0.011544140987098217, -0.004845862742513418, 0.005169859621673822, 0.01467845682054758, 0.016298439353704453, 0.005617115646600723, 0.010142503306269646, 0.012917605228722095, -0.0069694495759904385, -0.02231350727379322, -0.01157231442630291, 0.0033262481447309256, 0.00035217026015743613, 0.0013153558829799294, 0.007529400289058685, -0.036513011902570724, 0.03293496370315552, 0.002632472664117813, -0.0011744878720492125, -0.018157899379730225, 0.006152414251118898, 0.010790497064590454, -0.007804092951118946, 0.00462751742452383, -0.030962809920310974, -0.010755280032753944, 0.008909907191991806, 0.011072233319282532, -0.01810155063867569, 0.0035410718992352486, 0.0028472966514527798, -0.024003924801945686, -0.0010705975582823157, 0.011994918808341026, -0.0016736891120672226, 0.021679600700736046, -0.0034794420935213566, -0.00038210474303923547, 0.0013206384610384703, 0.018552329391241074, 0.006053806748241186, 0.0004353704862296581, -0.017693033441901207, 0.02746928110718727, -0.014199504628777504, 0.02082030661404133, -0.0068004075437784195, -0.010494673624634743, 0.011417360045015812, -0.0014157244004309177, -0.012783780694007874, -0.005032512824982405, 0.017538078129291534, -0.02452513761818409, -0.016805564984679222, 0.03000490553677082, -0.019791968166828156, -0.00545863900333643, 0.016706956550478935, -0.024172967299818993, -0.016270266845822334, -0.00016981209046207368, 0.007177229970693588, 0.01991874910891056, -0.0024088446516543627, 0.001399876782670617, 0.013037342578172684, 0.0029864038806408644, 5.6677399697946385e-05, -0.005680506117641926, 0.01581948809325695, 0.0034142907243222, 0.001553951296955347, -0.022045858204364777, -0.00800130795687437, 0.008881733752787113, -0.0019633492920547724, 0.031723495572805405, -0.03462538123130798, 0.005448074080049992, -0.007078622002154589, 0.00484234094619751, 0.018439635634422302, -0.01476297713816166, -0.012600651942193508, 0.008747909218072891, 0.009205730631947517, -0.005835461430251598, 0.013178210705518723, -0.006462324410676956, 0.01115675363689661, 0.014178374782204628, -0.006691235117614269, -0.009247991256415844, 0.005782635882496834, -0.005708680022507906, 0.008254870772361755, 0.013199341483414173, -0.017819814383983612, -0.02086256630718708, 0.016242092475295067, -0.009508596733212471, 0.01929892972111702, 0.03462538123130798, -0.010825714096426964, -0.002546190982684493, 0.01211465708911419, 0.009515640325844288, -0.011755443178117275, 0.01207944005727768, 0.00916347000747919, 0.014481240883469582, -0.027046676725149155, 0.01124831847846508, -0.0018277636263519526, -0.0036590490490198135, 0.03327304497361183, -0.004085175227373838, -0.009593117982149124, 0.008945124223828316, 0.0007752148085273802, -0.006497541442513466, 0.020975260064005852, 0.01276969350874424, 0.017242256551980972, -0.013593772426247597, 0.018946759402751923, 0.011417360045015812, 0.015481404960155487, -0.007395575288683176, -0.01159344520419836, -0.0019017193699255586, 0.017805729061365128, 0.0027416455559432507, 0.007494183257222176, 0.020256834104657173, 0.02855396457016468, 0.005712201818823814, 0.005701636429876089, -0.016171658411622047, -0.015171495266258717, -0.0016569610452279449, 0.0027909493073821068, 0.025440780445933342, -0.01929892972111702, -0.0019404580816626549, -0.010339719243347645, 0.01420654822140932, -0.012156917713582516, -0.01814381219446659, 0.015734966844320297, -0.002496887231245637, -0.012516130693256855, 0.014777064323425293, 0.004930383525788784, 0.01669287122786045, 0.023102369159460068, 0.024102533236145973, -0.01481932494789362, 0.010755280032753944, 0.0034530293196439743, 0.017904335632920265, -0.007867483422160149, -0.001405159360729158, -0.03935854882001877, 0.004148565698415041, 0.0078886142000556, -0.011861094273626804, 0.00368722272105515, -0.0201018787920475, 4.2012812627945095e-05, 0.02724389173090458, 0.012523174285888672, 0.017974769696593285, -0.012382306158542633, -0.0011621618177741766, 0.0031184677500277758, 0.001041543553583324, 0.02191907726228237, -0.01672104373574257, -0.007163143251091242, -0.006071415264159441, -0.017904335632920265, -0.026102859526872635, 0.0033051178324967623, 0.026793112978339195, 0.004856427665799856, 0.005384683143347502, 0.023172803223133087, -0.002255650470033288, -0.011755443178117275, -0.000999283161945641, 0.006170022767037153, 0.0038421775680035353, -0.001768775167874992, -0.026102859526872635, -0.003231162205338478, 0.02641277015209198, -0.004831776022911072, 0.00020513917843345553, -0.014847498387098312, -0.025412606075406075, 0.005356509704142809, -0.007966090925037861, 0.029300564900040627, 0.009910071268677711, -0.013593772426247597, 0.012403436936438084, -0.017650773748755455, 0.01748173125088215, -0.017538078129291534, -0.017298603430390358, -0.003044511890038848, 0.009867810644209385, -0.006064371671527624, -0.0017899053636938334, 0.005127598997205496, -0.01929892972111702, -0.02815953455865383, -0.012875344604253769, -0.0002104217273881659, 0.0013417686568573117, -0.01275560725480318, 0.016777390614151955, -0.007846353575587273, -0.0035956583451479673, -0.019679274410009384, -0.0077618323266506195, -0.01531236246228218, -0.0028631442692130804, -0.008783126249909401, 0.005627680569887161, 0.004852906335145235, -0.006715886760503054, -0.0006559171015396714, 0.01984831504523754, -0.0002570842916611582, 0.020707610994577408, 0.01311482023447752, -0.0017053844640031457, -0.002088369568809867, 0.0019334147218614817, 0.0048000807873904705, -0.005518508143723011, 0.0018330462044104934, 0.02079213224351406, 0.009762159548699856, 0.013290905393660069, -0.024102533236145973, 0.0005124077433720231, 0.023736275732517242, -0.01108631957322359, -0.028539877384901047, 0.020200485363602638, 0.0011665639467537403, -0.023961665108799934, -0.014988366514444351, 0.0007532041636295617, -0.03868238255381584, 0.0061911530792713165, -0.003546354593709111, -0.0006365477456711233, 0.004895166493952274, 0.01420654822140932, -0.01320638507604599, -0.0011700857430696487, -0.001535462331958115, -0.002028500661253929, 0.02074987255036831, -0.01115675363689661, 0.019946923479437828, -0.010938407853245735, 0.02369401603937149, -0.021059781312942505, -0.014354459941387177, 0.013375426642596722, -0.027596062049269676, 0.03983749821782112, 0.013572641648352146, -0.01911580190062523, -0.015495491214096546, -0.0036766575649380684, -0.003502333303913474, 0.003261096542701125, -0.024440616369247437, 0.022778373211622238, -0.012938735075294971, 0.0055818986147642136, -0.009452249854803085, -0.02249663695693016, 0.009022601880133152, -0.028652573004364967, 0.007698441855609417, 0.005800244398415089, -0.002267976524308324, -0.011241274885833263, -0.000499201356433332, 0.004123913589864969, -0.016960520297288895, 0.001577722723595798, 0.0025937340687960386, 0.0024370180908590555, -0.008931037969887257, -1.5077289390319493e-05, 0.008360521867871284, -0.0034283774439245462, -0.006768712308257818, -0.0018946760101243854, 0.011459620669484138, -0.010381978936493397, 0.003083250718191266, -0.027525627985596657, -0.007677311543375254, -0.013776900246739388, 0.0005278151948004961, -0.017397210001945496, -0.014636196196079254, -0.017242256551980972, 0.0008342033252120018, -0.010987712070345879, -0.007909744046628475, 0.010543977841734886, 0.000647112843580544, -0.003254053182899952, -0.01676330529153347, 0.013833248056471348, 0.010269285179674625, -0.005948155652731657, -0.005775592289865017, 0.012783780694007874, 0.019946923479437828, 0.0027469280175864697, 0.006881406996399164, -0.023158716037869453, -0.029835864901542664, 0.017791641876101494, -0.00771957216784358, -0.0062369355000555515, 0.024581484496593475, 0.0011436729691922665, 0.004895166493952274, -0.011494837701320648, 0.003354421816766262, 0.011825877241790295, -0.015340536832809448, 0.002171129686757922, 0.013924811966717243, -0.014791150577366352, -0.009388859383761883, 0.016312526538968086, -0.0020496309734880924, -5.054193388787098e-05, 0.011107450351119041, -0.0100298086181283, -0.009966418147087097, 0.0036837009247392416, -0.007846353575587273, -0.004585256800055504, -0.0034002037718892097, -0.024172967299818993, -0.014960193075239658, -0.016481569036841393, 0.0035727673675864935, 0.014974279329180717, -0.0004912774893455207, 0.010529890656471252, 0.010698932223021984, -0.007022275123745203, 0.022158551961183548, 0.004793037194758654, -0.0015081691090017557, 0.008726779371500015, -0.00446199718862772, 0.010600324720144272, -0.014777064323425293, 0.03665388002991676, 0.003669614205136895, -0.0014949627220630646, -0.004859949462115765, 0.019580665975809097, -0.009818506427109241, -0.008022438734769821, 0.010607368312776089, 0.0032434880267828703, 0.027849623933434486, 0.005310727749019861, -0.0074448795057833195, -0.008783126249909401, 0.004204913042485714, 0.027807364240288734, -0.01006502564996481, -0.005360031500458717, -0.03065289929509163, -0.007318098098039627, -0.016312526538968086, -0.000203378323931247, 0.010100242681801319, 0.004303520545363426, 0.01043128315359354, 0.004490170627832413, -0.00250393059104681, -0.01191744115203619, -0.014354459941387177, -0.012142830528318882, -0.008515477180480957, 0.019214408472180367, -0.005433986894786358, 0.015692707151174545, 0.011008841916918755, 0.028934309259057045, 0.01763668656349182, -0.019200323149561882, -0.003111424157395959, 0.013466990552842617, -0.009881897829473019, 0.004500736016780138, -0.012945778667926788, 0.0018823500722646713, -0.012762649916112423, 0.014467154629528522, 0.017002779990434647, -0.001275736722163856, 0.0006136566516943276, -0.003747091628611088, 0.024933654814958572, -0.010924321599304676, 0.0025814080145210028, 0.00033037972752936184, 0.008790169842541218, 0.01683373935520649, 0.0014535827795043588, -0.007867483422160149, -0.009078949689865112, 0.009966418147087097, -0.001855937298387289, 0.01519966870546341, -0.010565107688307762, 0.01157231442630291, 0.02615920640528202, -0.026215553283691406, 0.0076913982629776, 0.01543914433568716, -0.022736111655831337, -0.0061242408119142056, 0.0015874074306339025, 0.008670431561768055, -0.024144792929291725, -0.007402618881314993, -0.015720879659056664, -0.010255197994410992, 0.0029423825908452272, -0.009910071268677711, 0.01039606612175703, 0.007620964199304581, -0.017073214054107666, -0.010973624885082245, -0.007004666607826948, 0.02470826543867588, 0.0026905806735157967, 0.005919982213526964, -0.014833411201834679, 0.010755280032753944, -0.0036203102208673954, -0.0030374685302376747, -0.02132743038237095, -0.01006502564996481, -0.009276164695620537, -0.008726779371500015, -0.013960028998553753, -0.014438980259001255, 0.024032099172472954, -0.006398933473974466, 0.02397575043141842, -0.005743897054344416, -0.0011551184579730034, 0.0016472763381898403, -0.002088369568809867, 0.003194184275344014, -0.01286125835031271, 0.023679928854107857, 0.014551674947142601, -0.0021376735530793667, -0.006863798480480909, 0.00775478919968009, -0.007578704040497541, 0.005870678462088108, -0.020270919427275658, 0.0009262078092433512, -0.013333166018128395, -0.00019380370213184506, 0.00850843358784914, -0.011128580197691917, 0.0017450036248192191, 0.0069800144992768764, 0.0100298086181283, 0.014375589787960052, 0.002540908521041274, -0.02198951132595539, 0.020115965977311134, -0.0018700241344049573, 0.011635705828666687, 0.005102946888655424, 0.019003108143806458, -0.028962481766939163, -0.0008060297113843262, 0.026638157665729523, -0.0042788684368133545, 0.009656508453190327, 0.02337001822888851, -0.0056382459588348866, 0.00038892801967449486, 0.015608185902237892, 0.003715396160259843, 0.006187631282955408, -0.010198851116001606, 0.02079213224351406, 0.009762159548699856, -0.004747255239635706, 0.008747909218072891, 0.007768875919282436, 0.020693523809313774, -0.01006502564996481, -0.01159344520419836, -0.02387714385986328, -0.0058284178376197815, -0.03349843621253967, -0.006860276684165001, 0.005169859621673822, 0.01289647538214922, -0.010177720338106155, -0.008149219676852226, 0.0065503669902682304, 0.002775101689621806, -0.007705485448241234, 0.0034125298261642456, -0.0005493856151588261, -0.012051266618072987, -0.00669475644826889, -0.029694996774196625, -0.013572641648352146, 0.02235576882958412, 0.001868263236247003, 0.028751179575920105, 0.007804092951118946, -0.007131447549909353, -0.00271171098574996, -0.010022765956819057, -0.007240620441734791, -0.007775919511914253, 0.015495491214096546, -0.0007510030991397798, 0.015044713392853737, 0.0031413587275892496, -0.003669614205136895, -0.01393185555934906, 0.015284189023077488, -0.015340536832809448, -0.0016877759480848908, 0.019200323149561882, 0.020369527861475945, 0.019101714715361595, 0.0007122643291950226, -0.030342990532517433, -0.0034230949822813272, 0.008064699359238148, -0.0012026614276692271, -0.012572478502988815, -0.02074987255036831, 0.00775478919968009, 0.0033509000204503536, 0.01519966870546341, 0.013678292743861675, 0.0073321848176419735, 0.013748726807534695, 0.007367401849478483, 0.013142993673682213, -0.006698278244584799, -0.014424894005060196, -0.016411134973168373, -0.003352660918608308, -0.007043405435979366, 0.016354786232113838, -0.02208811789751053, 0.009240947663784027, -0.02104569412767887, 0.0026148641481995583, 0.0014826367842033505, 0.0032276404090225697, -0.00014086809824220836, -0.0038104820996522903, -0.004451432265341282, 0.01543914433568716, 0.015720879659056664, 0.02706076204776764, 0.017397210001945496, -0.024933654814958572, 0.01427698228508234, -0.01500245276838541, 0.009424076415598392, -0.006444715894758701, 0.011480750516057014, 0.013805074617266655, -0.005719244945794344, 0.011783616617321968, -0.008135133422911167, 0.011579358018934727, 0.003093815641477704, 0.0029864038806408644, 0.00525085860863328, -0.017749380320310593, -0.015368710272014141, -0.0005172500968910754, 0.0019246104639023542, -0.01400228962302208, -0.013952985405921936, 0.029187871143221855, 0.019284842535853386, 0.0024246922694146633, 0.01193857192993164, 0.015608185902237892, 0.005898851901292801, 0.01211465708911419, -0.009733986109495163, 0.0034230949822813272, -0.009910071268677711, 0.005680506117641926, 0.016157571226358414, -0.048120543360710144, -0.002965273568406701, 0.00027645364752970636, -0.0037893520202487707, -0.03431547060608864, 0.0018418504623696208, -0.00854365061968565, 0.03287861496210098, 0.032596878707408905, 0.019679274410009384, 0.001238758908584714, 0.015664532780647278, -0.022144466638565063, 0.016847824677824974, -0.0028067969251424074, -0.00013591570314019918, 0.002651842078194022, -0.0014817563351243734, 0.004197869449853897, -0.01197378896176815, -0.03783717378973961, -0.027920057997107506, -0.000266548857325688, 0.00957903079688549, 0.02634233608841896, 0.00155307084787637, -0.008691562339663506, -0.004947992041707039, 0.0003096897271461785, 0.028666658326983452, -0.009093035943806171, -0.002060196129605174, -0.000318934180540964, -0.004282390233129263, 0.01146666333079338, 0.008769039064645767, -0.00847321655601263, 0.0023102369159460068, 0.022369854152202606, 0.0038562642876058817, -0.002053152536973357, 0.020735785365104675, -0.011480750516057014, -0.010318588465452194, 0.0025673212949186563, -0.0009085992933250964, 0.01904536783695221, -0.0021218257024884224, 0.006645452696830034, 0.008987384848296642, -0.002273258985951543, 0.030737420544028282, 0.007846353575587273, 0.005842504557222128, -0.005208597984164953, -0.014424894005060196, 0.003556919516995549, 0.008381652645766735, -0.01998918317258358, -0.00816330686211586, -0.001942218979820609, -0.007515313569456339, -0.009557900950312614, 0.023750362917780876, 0.015495491214096546, -0.005141685716807842, -0.007902700453996658, -0.0013717031106352806, -0.0015143321361392736, 0.0035428327973932028, -0.009903027676045895, -0.004102783743292093, 0.019003108143806458, -0.003997132647782564, -0.01318525429815054, -0.004243651404976845, 0.003460072912275791, -0.018495982512831688, -0.007395575288683176, 0.006701800040900707, -0.0014474197523668408, -0.01865093782544136, 0.024243401363492012, -0.014453067444264889, 0.008740865625441074, 0.005310727749019861, -0.007698441855609417, -0.0014870389131829143, 0.008177393116056919, 0.008029482327401638, 0.0026113425847142935, -0.009346598759293556, 0.004993774462491274, 0.014361503534018993, -0.0026905806735157967, 0.006342586595565081, 0.001917567104101181, -0.005536116659641266, 0.008304174989461899, 0.0028578615747392178, -0.013579685240983963, -0.017693033441901207, -0.003669614205136895, -0.009557900950312614, -0.012368219904601574, 0.0069694495759904385, 0.0007540845545008779, -0.017946597188711166, -0.00823374092578888, -0.0026412769220769405, 0.01886224001646042, 0.019017193466424942, -0.023609494790434837, -0.0038668294437229633, 0.009107123129069805, 0.0003495289711281657, 0.005240293685346842, 0.000754965003579855, 0.006293282378464937, 0.006296804174780846, -0.014410806819796562, -0.0005181304877623916, 0.022003598511219025, 0.008381652645766735, 0.0010124895488843322, 0.012854214757680893, 0.02422931417822838, 0.010663715191185474, 0.011135623790323734, 0.0013285622699186206, 0.03065289929509163, -0.00487051485106349, 0.011762486770749092, 0.02198951132595539, 0.008064699359238148, 0.019284842535853386, -0.0028948395047336817, -0.012213264591991901, 0.01006502564996481, 0.0077407024800777435, 0.011037016287446022, 0.006310890894383192, -0.007501226384192705, -0.004416215233504772, 0.007952004671096802, -0.008564780466258526, -0.0234686266630888, 0.026201467961072922, -0.008423912338912487, -0.01053693424910307, -0.00854365061968565, 0.014946105889976025, 0.007416705600917339, 0.004099261946976185, -0.0057720704935491085, 0.017284516245126724, 0.010452413000166416, 0.01748173125088215, -0.01588992215692997, 0.004863471258431673, 0.007402618881314993, -0.005934068933129311, -0.010670758783817291, -0.027159370481967926, 0.004067566711455584, 0.01001572236418724, 0.008346435613930225, 0.0010318588465452194, 0.00775478919968009, -0.005448074080049992, 0.024877307936549187, -0.022736111655831337, -0.014100897125899792, -0.007233577314764261, -0.01603079028427601, 0.004926861729472876, 0.025342172011733055, 0.0024669526610523462, -0.013650119304656982, 0.011107450351119041, 0.015932181850075722, 0.009487466886639595, 0.03896411880850792, -0.0037189179565757513, -0.011072233319282532, 0.005736853461712599, -0.004430301953107119, 0.0018171985866501927, -0.009156426414847374, 0.012255525216460228, 0.0036837009247392416, 0.010212937369942665, -0.008501389995217323, -0.0022855850402265787, 0.030202122405171394, -0.0052966405637562275, -0.018002944067120552, -0.0009781528497114778, 0.013368383049964905, 0.014720716513693333, -0.008008351549506187, 0.013304992578923702, -0.014192461036145687, 0.01084684394299984, -0.03603406250476837, -0.005684027913957834, -0.008367565460503101, 0.0162561796605587, -0.01202309224754572, -0.007557573728263378, 0.026060599833726883, -0.006842668168246746, 0.01012137345969677, 0.014777064323425293, -0.002502169692888856, 0.0026905806735157967, 0.009501554071903229, -0.00298464298248291, 0.02314462885260582, 0.008973298594355583, 0.007226533722132444, 0.020918913185596466, 0.020383615046739578, -0.002866665832698345, -0.012868301011621952, -0.017876163125038147, -0.007451922632753849, 0.006508106365799904, -0.019946923479437828, 0.0005643528420478106, -0.0033685085363686085, 0.005719244945794344, -0.008719735778868198, 0.006272152531892061, 0.0134599469602108, 0.003285748418420553, -0.017566252499818802, 0.0018136767903342843, 0.0002621467283461243, -0.02072169817984104, -0.0042119561694562435, -0.02422931417822838, 0.00861408468335867, -0.003537550335749984, 0.023355931043624878, -0.010529890656471252, 0.019073542207479477, -0.008938081562519073, -0.013297948986291885, 0.0031589672435075045, 0.013720553368330002, -0.005021947901695967, -0.0009482184541411698, -0.012797866947948933, 0.03848516568541527, 0.02989221177995205, 0.01053693424910307, -0.016044877469539642, 0.012347089126706123, -0.023130543529987335, -0.0032699008006602526, 0.010149546898901463, -0.017185907810926437, 0.01722816936671734, 0.01126240473240614, -0.014417850412428379, 0.0008584150345996022, -0.023524973541498184, 0.012375262565910816, 6.702240352751687e-05, 0.007011709734797478, 0.005321292672306299, -0.001996805425733328, 0.00573333166539669, -0.019355276599526405, -0.010896148160099983, -0.001657841494306922, -0.007367401849478483, 0.04378180578351021, 0.01683373935520649, 0.00644823769107461, -0.01427698228508234, 0.0021535211708396673, -0.02558164857327938, -0.00013316437252797186, -0.00771957216784358, -0.006884928792715073, 0.008656345307826996, 0.00594111206009984, -0.0035780498292297125, 0.01191744115203619, 0.00350057240575552, 0.00020392859005369246, -0.007881570607423782, 0.00327870505861938, -0.018002944067120552, 0.0038914813194423914, 0.014734803698956966, 0.0006506345816887915, 0.013297948986291885, -0.013312036171555519, 0.006582062225788832, 0.003613266861066222, 0.009240947663784027, 0.004785994067788124, 0.002248607110232115, -0.020256834104657173, 0.005268467124551535, 0.0286243986338377, -0.004092218354344368, -0.03783717378973961, 0.009191643446683884, -0.006240456830710173, 0.00857886765152216, 0.0027909493073821068, 0.006416541989892721, 0.0036203102208673954, -0.007170186378061771, -0.002275019884109497, -0.01646748185157776, 0.008607041090726852, -0.014847498387098312, -0.011685009114444256, -0.023806709796190262, 0.002253889571875334, 0.004321129061281681, -0.009381815791130066, -0.01991874910891056, 0.008564780466258526, -0.012966909445822239, -0.023708101361989975, -0.004095740150660276, -0.004828254226595163, -0.006388368550688028, -0.0015601142076775432, -0.023341845721006393, -0.009832593612372875, -0.016918258741497993, -0.008677475154399872, 0.013037342578172684, 0.012966909445822239, 0.009952331893146038, -0.0043809982016682625, 0.015932181850075722, 0.0005991296493448317, -0.004891644697636366, 0.00507829524576664, -0.01741129718720913, 0.023102369159460068, -0.022736111655831337, 0.001126944785937667, -0.006796886213123798, -0.010804583318531513, -0.028638485819101334, -0.03645666688680649, 0.0025321042630821466, -0.009508596733212471, 0.005571333691477776, -0.012107613496482372, -0.0022274767979979515, 0.0038703512400388718, -0.00957903079688549, -0.019580665975809097, 0.01607304997742176, -0.00847321655601263, 0.0011419120710343122, 0.015664532780647278, 0.009114166721701622, 0.002107738982886076, -0.021059781312942505, -0.0002447583246976137, 0.01126240473240614, 0.013875508680939674, 0.005726288538426161, -0.010290415026247501, -0.020073704421520233, 0.0006796885863877833, 0.00888877734541893, 0.0021975424606353045, 0.011008841916918755, -0.00803652498871088, 0.017749380320310593, -0.015284189023077488, -0.02404618449509144, -0.001030098064802587, -0.0007223892607726157, -0.006346107926219702, 0.008388695307075977, -0.020735785365104675, 0.015241928398609161, -0.007430792320519686, 0.020228659734129906, -0.004285912029445171, 0.02013005129992962, 0.0008192360401153564, 0.0002768938720691949, -0.011931528337299824, 0.0003121109039057046, -0.014847498387098312, 0.013882551342248917, 0.02151056006550789, 0.004764863755553961, -0.0019633492920547724, 1.2325958778092172e-05, -0.002859622472897172, 0.01908762753009796, -0.002482800278812647, -0.008261914364993572, 0.006208761595189571, -0.0033685085363686085, -0.00034314588992856443, 0.0011066950391978025, -0.0026976242661476135, -0.002238041954115033, 0.014833411201834679, -0.01741129718720913, 0.011692052707076073, -0.015016539953649044, -0.0333012193441391, 0.012297785840928555, 0.0024387789890170097, -0.007902700453996658, 0.0002859182422980666, -0.005986894480884075, -0.00800130795687437, 0.010072069242596626, -0.004222521558403969, 0.004173217806965113, -0.0014007572317495942, -0.004701472818851471, -0.01427698228508234, 0.008649301715195179, -0.0006761669064871967, 0.030709246173501015, -0.015664532780647278, 0.008776082657277584, -0.02576477639377117, 0.015410970896482468, 0.0020073705818504095, 0.0023155193775892258, 0.009064862504601479, 0.004726124927401543, 0.0019457406597211957, -0.004898688290268183, -0.0032681399025022984, 0.008409826084971428, -0.013924811966717243, -0.006987058091908693, -0.004539474844932556, -0.006712364964187145, -0.013438817113637924, 0.006596148945391178, -0.01320638507604599, 0.001966870855540037, 0.0010996516793966293, 0.0024863220751285553, -0.02961047552525997, -0.011494837701320648, 0.008268957957625389, 0.019143976271152496, 0.0393303744494915, -0.011959701776504517, -0.03144175931811333, 0.0093959029763937, -0.007557573728263378, 0.019397538155317307, -0.006444715894758701, -0.006363716442137957, 0.016537915915250778, 0.014023419469594955, -0.011311708949506283, 0.006293282378464937, -0.01115675363689661, 0.005307205952703953, 0.01959475316107273, -0.007127926219254732, -0.0341746024787426, 0.007902700453996658, 0.01998918317258358, -0.015946269035339355, -0.016058964654803276, 0.003926698584109545], "9a6c4417-5268-4d4b-88ea-6c1482255021": [-0.00693233497440815, -0.008805308490991592, -0.0017816567560657859, 0.009574704803526402, -0.03177061304450035, -0.04457833245396614, 0.009465901181101799, 0.03183278441429138, -0.02295752987265587, 0.06484686583280563, 0.006178482435643673, 0.031863871961832047, -0.014882759191095829, -0.003491425421088934, -0.008688733913004398, 0.019911034032702446, -0.03814338520169258, 0.022071558982133865, 0.007538525853306055, -0.019398102536797523, 0.056671060621738434, -0.01616508513689041, -0.04022619500756264, 0.06288839876651764, 0.013903528451919556, -0.009621335193514824, -0.0016777105629444122, 0.004328823648393154, 0.0023606466129422188, -0.006143509875983, 0.013196305371820927, 0.006753586232662201, 0.01900951936841011, -0.011152355000376701, 0.012900982052087784, -0.0340399406850338, -0.013375054113566875, 0.02087472192943096, 0.005805442109704018, 0.01782822422683239, -0.0185743048787117, 0.05294065549969673, 0.027154235169291496, 0.005152621306478977, -0.0327964723110199, 0.0258175078779459, 0.016880080103874207, -0.027402929961681366, -0.0012726119020953774, -0.02544446662068367, 0.023874588310718536, -0.004433741327375174, -0.0030484399758279324, 0.014004560187458992, 0.003551655914634466, 0.013452771119773388, 0.008735363371670246, 0.04501354694366455, 0.009955517016351223, -0.04715852811932564, 0.019537992775440216, -0.00857215840369463, 0.028817374259233475, 0.021372109651565552, 0.012465768493711948, -0.021947212517261505, 0.011906207539141178, 0.009745681658387184, -0.056111499667167664, 0.0083312364295125, 0.012388051487505436, 0.01610291190445423, -0.04638136178255081, 0.035687536001205444, -0.017346380278468132, -0.012761091813445091, 0.03071366250514984, 0.003163072047755122, -0.006244541611522436, 0.019786687567830086, -0.030558230355381966, 0.005113762803375721, 0.005389657337218523, -0.010857031680643559, 0.07205897569656372, 0.024340888485312462, -0.04945894703269005, -0.049116991460323334, -0.022631119936704636, -0.02384350262582302, 0.012434681877493858, -0.0028386046178638935, 0.028490964323282242, -0.003003752790391445, -0.0012298676883801818, 0.022615576162934303, 0.02087472192943096, 0.0006941077881492674, 0.021869495511054993, -0.04414311796426773, 0.0010666624875739217, 0.017999202013015747, -0.03133539855480194, 0.016786819323897362, 0.004530887119472027, 0.007530753966420889, 0.018527675420045853, 0.009955517016351223, -0.03985315561294556, 0.017315294593572617, 0.012496855109930038, -0.03192604333162308, -0.0029571226332336664, 0.0062872860580682755, -0.030682576820254326, -0.06938552111387253, -0.010919204913079739, -0.03276538476347923, 0.009294924326241016, -0.044112034142017365, 0.024574039503932, 0.026532500982284546, -0.00400629872456193, 0.0003290819004178047, -0.030635947361588478, 0.00795042421668768, 0.006936220917850733, 0.0028172326274216175, 0.011315559968352318, 0.0077172741293907166, -0.030123015865683556, -0.01470401044934988, -0.012123814783990383, 0.0055256616324186325, 0.013134132139384747, 0.016444865614175797, -0.012675603851675987, 0.04983198642730713, -0.038174472749233246, 0.045355502516031265, -0.042930737137794495, -0.045355502516031265, -0.014494176022708416, -0.015007106587290764, 0.018341155722737312, 0.02403002232313156, -0.05552085116505623, 0.052598703652620316, -0.020563853904604912, 0.004783466458320618, -0.05586280673742294, -0.0005658751470036805, 0.02507142722606659, -0.0021430396009236574, -0.00643883366137743, -0.027325212955474854, -0.01646040938794613, -0.0004335138073656708, 0.002737572882324457, 0.007079996634274721, -0.003118384862318635, -0.04582180082798004, -0.0006285342969931662, 0.021900583058595657, 0.04445398598909378, 0.04765591770410538, 0.051603928208351135, 0.0261283740401268, -0.056360192596912384, 0.0229730736464262, 0.01596302166581154, -0.026594674214720726, 0.004694092087447643, 0.0031300424598157406, -0.013134132139384747, 0.00017024826956912875, 0.020626027137041092, 0.024465234950184822, 0.022242536768317223, -0.025677617639303207, -0.026781195774674416, -0.011020236648619175, -0.0233305711299181, 0.0058248708955943584, 0.029143784195184708, 0.014253254048526287, 0.028630854561924934, 0.02569316141307354, -0.001361014787107706, 0.0017806852702051401, -0.0009602876962162554, -0.01231810636818409, -0.019833317026495934, 0.02774488367140293, -0.019227126613259315, -0.038423165678977966, -0.007892136462032795, 2.2009629901731387e-05, -0.006625353824347258, 0.024356432259082794, -0.01454857736825943, -0.056919753551483154, -0.03205038979649544, 0.05032937228679657, -0.026843369007110596, 0.018605392426252365, -0.005039931740611792, -0.051044367253780365, 0.028195640072226524, -0.027962490916252136, 0.027760425582528114, -0.004666891414672136, -0.021558629348874092, -0.002263500588014722, 0.008020369336009026, -0.0035438842605799437, -0.01330510899424553, 0.025724247097969055, -0.001116206985898316, -0.01980222947895527, -0.04106553643941879, 0.0046902066096663475, 0.00978454016149044, -0.04234008863568306, -0.05437064543366432, -0.006761358119547367, -0.00584818609058857, 0.018558762967586517, -0.02704543247818947, -0.022258080542087555, 0.016553670167922974, 0.027760425582528114, 0.00043545672087930143, -0.020703744143247604, -0.023796871304512024, 0.003982983995229006, 0.04078575596213341, 0.04162509739398956, -0.007775561884045601, -0.0038411507848650217, 0.01145545020699501, 0.010499534197151661, 0.011945066042244434, 0.005836528725922108, 0.03745947778224945, 0.0065903812646865845, -0.010414045304059982, 0.05825648456811905, 0.009512531571090221, -0.023548178374767303, -0.005972533021122217, 0.020579397678375244, -0.010313013568520546, -0.0346616730093956, -0.008906340226531029, 0.05194588378071785, 0.016118455678224564, 0.00433270912617445, -0.01646040938794613, -0.016491496935486794, -0.00342925195582211, 0.010041004978120327, -0.0011783803347498178, -0.02260003425180912, 0.02395230531692505, -0.017128773033618927, 0.026905542239546776, -0.025351207703351974, 0.027620535343885422, 0.034817107021808624, -0.003209702204912901, 0.0012483254540711641, 0.0004978729994036257, -0.009341554716229439, -0.005902587901800871, -0.03658904880285263, 0.0077133881859481335, -0.0010715198004618287, 0.010857031680643559, 0.01801474392414093, 0.004181161522865295, -0.0118207186460495, 0.012178216129541397, 0.0466611422598362, 0.010103179141879082, -0.010849259793758392, -0.017253121361136436, -0.018310068175196648, -0.04296182468533516, -0.011502080596983433, -0.018543219193816185, 0.007519096601754427, 0.036309268325567245, 0.004336595069617033, 0.03689991682767868, 0.018341155722737312, 0.002667627763003111, -0.029936496168375015, -0.023081878200173378, 0.009699051268398762, -0.03515906259417534, -0.021496456116437912, 0.030744750052690506, -0.00685850391164422, 0.017983658239245415, -0.000619305414147675, 0.03832990676164627, 0.004973872564733028, -0.025304576382040977, 0.04983198642730713, 0.03344929218292236, -0.015061507932841778, 0.0138646699488163, -0.03658904880285263, -0.028195640072226524, -0.006528207566589117, 0.04861960560083389, 0.005887044593691826, 0.002696771640330553, -0.01604073867201805, 0.06509555876255035, -0.005875387229025364, -0.05331369861960411, 0.03254777938127518, 0.023144051432609558, -0.03233017027378082, 0.029174871742725372, -0.009706823155283928, -0.03027844987809658, -0.00928715243935585, -0.008424496278166771, -0.0023878475185483694, -0.049552205950021744, 0.006757472176104784, -0.01204609777778387, -0.06503338366746902, -0.048806123435497284, -0.022320253774523735, 0.011230072006583214, -0.03453732654452324, -0.018496587872505188, 0.0019497191533446312, 0.015185854397714138, 0.012784406542778015, 0.014859444461762905, -0.0320814773440361, -0.024356432259082794, 0.025351207703351974, -0.02407665178179741, 0.007997054606676102, 0.0009403727599419653, -0.006473806221038103, 0.01980222947895527, 0.02042396366596222, 0.0185743048787117, -0.012489083223044872, -0.012869895435869694, 0.002840547589585185, 0.00433270912617445, 0.02061048522591591, 0.0015251913573592901, -0.019149409607052803, -0.028755201026797295, 0.0007737674750387669, -0.01975560002028942, 0.005894816014915705, 0.021247761324048042, 0.0009097718284465373, 0.045293327420949936, 0.005576177500188351, -0.009108404628932476, 0.04768700525164604, 0.03472384810447693, 0.008766449987888336, -0.016180628910660744, -0.018356697633862495, 0.06484686583280563, 0.012815493158996105, -0.022366883233189583, 0.015481178648769855, 0.008696505799889565, 0.02687445469200611, 0.0022440713364630938, 0.01395792979747057, 0.021092329174280167, 0.012854351662099361, 0.011183441616594791, -0.001192952273413539, -0.011797403916716576, 0.02081254869699478, -0.0396355465054512, 0.02432534657418728, -0.04734504967927933, 0.008440040051937103, -0.03295190632343292, 0.04187379032373428, 0.007375320419669151, 0.010981378145515919, 0.02389013208448887, -0.03260995075106621, 0.0002193069813074544, -0.0026540274266153574, 0.0033515351824462414, 0.018170177936553955, 0.005751040298491716, -0.058474089950323105, 0.016615843400359154, -0.027154235169291496, 0.017595075070858, -0.01621171645820141, -0.008859710767865181, -0.001008374965749681, 0.00011262858606642112, -0.01913386583328247, 0.04644353687763214, 0.005172050558030605, -0.007736703380942345, 0.022444600239396095, -0.07914675027132034, -0.024776102975010872, 0.018496587872505188, 0.035811882466077805, 0.0057549262419342995, 0.022397970780730247, -0.015341288410127163, 0.04314834624528885, 0.044858112931251526, -0.014781727455556393, -0.017237577587366104, -0.013476085849106312, -0.030014213174581528, 0.02754282020032406, 0.014758412726223469, -0.012900982052087784, 0.005475145764648914, -0.014346513897180557, -0.00020752803538925946, -0.007095539942383766, -0.007495781406760216, 0.0014154164819046855, 0.035749711096286774, 0.007021709345281124, -0.02382795885205269, -0.014890531077980995, -0.004266649950295687, -0.039169248193502426, -0.053096089512109756, 0.0010919204214587808, -0.013320652768015862, -0.005933674518018961, -0.011463222093880177, 0.014890531077980995, -0.059406690299510956, 0.017905941233038902, 0.028895091265439987, 0.002170240506529808, -0.02309742011129856, -0.015520037151873112, 0.012496855109930038, -0.03602948784828186, -0.01844995841383934, -0.04003967344760895, -0.004010184668004513, 0.004507571924477816, 0.01683345064520836, -0.01967788301408291, -0.0038294934201985598, 0.01664692908525467, 0.00011675728455884382, -0.013079730793833733, -0.008719820529222488, 0.0034836537670344114, -0.00850998517125845, 0.004771809093654156, -0.0292836744338274, 0.0006771072512492537, 0.001315356115810573, -0.009807854890823364, 0.017377467826008797, 0.0008859710651449859, -0.03379124775528908, -0.03057377226650715, -0.0239056758582592, 0.013149675913155079, -0.0009408585028722882, -0.0049544433131814, 0.004453170113265514, -0.027775969356298447, -0.007872708141803741, 0.0065787239000201225, 0.03195713087916374, 0.003866408718749881, 0.006547636818140745, -0.00608133664354682, 0.009932202287018299, -0.029003893956542015, -0.0207503754645586, -0.03282755985856056, -0.012862123548984528, -0.03195713087916374, 0.010926976799964905, -0.02235133945941925, -0.002104181330651045, 0.03223691135644913, -0.00922497920691967, 0.006411632522940636, -0.022429056465625763, 0.018372241407632828, -0.0028172326274216175, 0.019864404574036598, -0.01349940150976181, -0.004150074906647205, -0.0204861368983984, -0.0015523922629654408, -0.0029260360170155764, 0.014976019971072674, -0.03845425322651863, 0.0036934888921678066, 0.04028836637735367, 0.0009704880067147315, 0.026423698291182518, -0.03332494571805, -0.02556881308555603, 0.022631119936704636, -0.02347046136856079, -0.04414311796426773, 0.0029804378282278776, 0.0012191816931590438, 0.0352834090590477, -0.010631652548909187, 0.006485463585704565, 0.009395956061780453, 0.0052536530420184135, 0.02295752987265587, -0.0006261056405492127, -0.010281926952302456, -0.0035924571566283703, 0.030356166884303093, 0.022335797548294067, 0.048930469900369644, -0.04053706303238869, 0.02382795885205269, -0.011432135477662086, -0.00600750558078289, 0.00817580334842205, 0.04364573210477829, 0.006341687403619289, 0.0229730736464262, 0.02315959520637989, 0.010235297493636608, -0.015877533704042435, 0.0028930064290761948, 0.0018030288629233837, 0.003870294662192464, -0.0004881584027316421, -0.04874395206570625, 0.026081744581460953, -0.051852621138095856, -0.034133199602365494, -0.03285864740610123, 0.002432534471154213, 0.005362456198781729, -0.011478764936327934, -0.015193626284599304, -0.027387386187911034, -0.02451186627149582, -0.04174944385886192, 0.028397703543305397, -0.014136678539216518, 0.012457996606826782, 0.022195907309651375, 0.015994109213352203, 0.04921025037765503, 0.006263970863074064, -0.01077154278755188, 0.023610351607203484, -0.0015397632960230112, -0.014090048149228096, -0.015317973680794239, -0.022817639634013176, 0.03189495950937271, -0.0402572825551033, -0.015061507932841778, -0.029485737904906273, -0.02469838596880436, -0.01695779711008072, -0.022304710000753403, -0.011043551377952099, -0.004041271284222603, 0.037304043769836426, -0.022677751258015633, 0.02093689516186714, 0.010849259793758392, 0.029205957427620888, -0.018185721710324287, 0.033418208360672, 0.014657380990684032, -0.00719657214358449, 0.012597886845469475, -0.0011453507468104362, -0.008098086342215538, 0.01695779711008072, 0.01565992645919323, -0.024340888485312462, -0.01672464609146118, 0.023066334426403046, -0.008408953435719013, 0.016196172684431076, 0.01005654875189066, 0.01697334088385105, 0.008727592416107655, 0.025708703324198723, 0.01421439554542303, -0.006520436145365238, 0.024667300283908844, 0.0060463640838861465, 0.006811873987317085, 0.014253254048526287, -0.008820852264761925, -0.029143784195184708, -0.002826947020366788, -0.006695298943668604, 0.034568414092063904, -0.025289032608270645, 0.009901114739477634, 0.030293993651866913, -0.0004468713595997542, 0.006225112359970808, -0.010825944133102894, 0.009660192765295506, 0.02359480783343315, 0.0007397664012387395, 0.008168031461536884, -0.03932467848062515, 0.015403461642563343, 0.010608337819576263, 0.0010171181056648493, 0.010499534197151661, -0.014906074851751328, -0.0327964723110199, -0.03854751214385033, -0.0022615576162934303, -0.011369962245225906, 0.05424629896879196, -0.013297337107360363, -0.009473673067986965, -0.00823797658085823, 0.011828490532934666, 0.034817107021808624, -0.009077317081391811, -0.01300201378762722, 0.012994241900742054, -3.9495898818131536e-05, 0.026858912780880928, -0.0030076385010033846, -0.0647846907377243, -0.01994211971759796, 0.01633606292307377, 0.012450224719941616, 0.012559028342366219, 0.02842879109084606, -0.01517031155526638, 0.028941720724105835, 0.029501281678676605, 0.015605525113642216, 0.009201664477586746, 0.021325478330254555, 0.017843768000602722, 0.027449559420347214, 0.00041602752753533423, 0.003615772118791938, -0.014587435871362686, 0.01832561194896698, 0.03136648237705231, -0.0037245757412165403, -0.01448640413582325, -0.0054945750162005424, 0.002242128597572446, 2.1212729279795894e-06, -0.009706823155283928, -0.03267212584614754, -0.007736703380942345, -0.029392478987574577, 0.017051057890057564, 0.020999068394303322, 0.00611242325976491, 0.00021979270968586206, 0.022149275988340378, -0.03814338520169258, -0.01089588925242424, 0.022195907309651375, 0.01541123352944851, 0.01005654875189066, 0.0026326552033424377, -0.008315693587064743, 0.010429589077830315, -0.018791912123560905, -0.00041044162935577333, 0.013701464980840683, -0.013297337107360363, -0.02878628857433796, -0.025786420330405235, -0.015465634874999523, -0.01913386583328247, -0.0010452903807163239, 0.025848593562841415, -0.01646040938794613, -0.01000214647501707, 0.017237577587366104, -0.02050168067216873, 0.01597856543958187, 0.023190680891275406, -0.00047625802108086646, 0.0028930064290761948, 0.02191612683236599, 0.011097953654825687, 0.007375320419669151, -0.0026345981750637293, -0.01745518483221531, 0.02029961720108986, -0.014245482161641121, 0.04134531691670418, -0.01000214647501707, -0.0542152114212513, -0.03764599934220314, -0.01739301159977913, -0.016491496935486794, -0.0029260360170155764, -0.01163419894874096, -0.006372774485498667, 0.03127322345972061, -0.007833849638700485, -0.018931802362203598, 0.011875120922923088, -0.007045024074614048, -0.03627818450331688, 0.012403594329953194, 0.00984671339392662, 0.01067828293889761, -0.008968514390289783, 0.011105724610388279, -0.02067265845835209, 0.03344929218292236, -0.02073483169078827, 0.025366749614477158, 0.0031669579911977053, 0.00709165446460247, 0.006722499616444111, 0.016802363097667694, 0.0017185118049383163, 0.04153183475136757, -0.01894734613597393, 0.02283318340778351, 0.01064719632267952, -0.01163419894874096, -0.002955179661512375, 0.028755201026797295, -0.0006975079304538667, -0.017999202013015747, 0.053096089512109756, -0.015520037151873112, 0.014843900687992573, 0.001597079448401928, -0.02712314948439598, 0.0017427983693778515, -0.012543484568595886, -0.03102453052997589, 0.03175506740808487, 0.03009192831814289, -0.0060735647566616535, 0.037241872400045395, 0.010748228058218956, 0.017548443749547005, 0.038485340774059296, -0.026858912780880928, -0.007651214953511953, 0.012605658732354641, -0.00584818609058857, -0.022335797548294067, 0.007437493652105331, 0.01757953129708767, -0.05573846027255058, 0.023439373821020126, -0.028335530310869217, 0.019273756071925163, -0.01703551411628723, 0.03540775552392006, -0.012947612442076206, 0.010351872071623802, 0.0015689070569351315, 0.010755999945104122, -0.004317165818065405, -0.022864270955324173, 0.014874987304210663, 0.0013998731737956405, -0.008035913109779358, 0.02068820223212242, -0.05688866600394249, -0.015481178648769855, 0.0014921617694199085, 0.03285864740610123, -0.04134531691670418, 0.05057806521654129, 0.03094681352376938, 0.006030820310115814, -0.012543484568595886, -0.014237710274755955, 0.00728983199223876, -0.001432902761735022, -0.000844684022013098, -0.021620802581310272, 0.02847542054951191, -0.037801433354616165, 0.025164686143398285, -0.0022149276919662952, 0.0024752786848694086, 0.005564520135521889, 0.015527808107435703, -0.008214661851525307, 0.011082409881055355, -0.017408553510904312, 0.010779314674437046, 0.044112034142017365, -0.0009413442458026111, -0.043801166117191315, 0.00521868048235774, 0.020144183188676834, -0.028071293607354164, 0.02755836211144924, 0.02793140336871147, 0.02087472192943096, 0.017532899975776672, -0.011509852483868599, 0.041811615228652954, 0.016071826219558716, 0.028257813304662704, -0.021076785400509834, 0.0044725993648171425, -0.026548044756054878, 0.012131585739552975, -0.004958329256623983, -0.029485737904906273, -0.021558629348874092, -0.004530887119472027, -0.006940106395632029, -0.012893210165202618, -0.0027259152848273516, -0.018496587872505188, 0.030791379511356354, 0.009302696213126183, 0.0004879155312664807, -0.008214661851525307, -0.011525395326316357, -0.002523851813748479, -0.025801964104175568, 0.013087502680718899, 0.00021614973957184702, 0.013250707648694515, 0.0009340582764707506, 0.01770387776196003, 0.006986736785620451, -0.003520569298416376, -0.004635804798454046, -0.027029888704419136, 0.010950291529297829, -0.004527001176029444, -0.001673824735917151, 0.00811363011598587, 0.012232617475092411, -0.013670378364622593, -0.0018486874178051949, -0.013507172465324402, 0.03083801083266735, 0.005887044593691826, -0.025335663929581642, -0.014688467606902122, -0.025972941890358925, 0.002589910989627242, -0.050484806299209595, -0.017066599801182747, -0.007837735116481781, 0.01932038553059101, -0.014711782336235046, -0.007219886872917414, -0.033573638647794724, -0.025926310569047928, 0.0025005366187542677, -0.011572025716304779, 0.010390730574727058, -0.0037653769832104445, -0.006011391524225473, 0.005657779984176159, -0.007872708141803741, -0.01894734613597393, -0.0037459477316588163, -0.012714461423456669, 0.005622807424515486, -0.020828090608119965, -0.022118190303444862, -0.023859044536948204, -0.0023897902574390173, -0.02092135138809681, -0.034381892532110214, 0.0020148069597780704, 0.029314761981368065, -0.01813909225165844, 0.008952970616519451, 0.0059764189645648, 0.00044930001604370773, 0.02494707889854908, -0.002376189921051264, 0.00841672532260418, -0.001326042227447033, -0.007103311829268932, 0.057230621576309204, 0.009916658513247967, 0.021698519587516785, -0.005203137174248695, 0.008214661851525307, -0.04383225366473198, -0.00841672532260418, 0.014797271229326725, -0.003920810297131538, 0.012621201574802399, 0.012520169839262962, -0.0002605940098874271, 0.01532574463635683, 0.014952704310417175, 0.013732551597058773, 0.017066599801182747, -0.011572025716304779, 0.026781195774674416, 0.0031242137774825096, -0.01383358333259821, 0.03966663405299187, -0.015994109213352203, -0.0031106132082641125, 0.0248849056661129, -0.05875387042760849, -0.028739657253026962, -0.027216408401727676, 0.00581709947437048, 0.031661808490753174, -0.025304576382040977, -0.002599625615403056, 0.0038430937565863132, -0.026237178593873978, 0.04694092273712158, 0.0038061782252043486, 0.006197911687195301, 0.01451749075204134, 0.031179964542388916, 0.010981378145515919, -0.0018826884916052222, 0.0034059369936585426, 0.03808121383190155, -0.009629106149077415, -0.0083312364295125, 0.025118056684732437, 0.008160259574651718, 0.011704144068062305, -0.025273490697145462, -9.86638551694341e-05, 0.005133192054927349, -0.039169248193502426, 0.006792444735765457, -0.04109662398695946, 0.0015689070569351315, 0.0036410302855074406, -0.01900951936841011, -0.006990622729063034, -0.02915932796895504, 0.005622807424515486, -0.011004692874848843, -0.019786687567830086, -0.00646992027759552, -0.012302562594413757, -0.018481045961380005, -0.01709768734872341, -0.0027103719767183065, 0.003982983995229006, -0.036184921860694885, -0.0060852221213281155, 0.001126892981119454, 0.010134265758097172, -0.008820852264761925, -0.013631519861519337, 0.005603378172963858, 0.011680829338729382, -0.001055005006492138, -0.017051057890057564, -0.03571862354874611, -0.0038217215333133936, -0.03102453052997589, -0.007468580733984709, -0.035936228930950165, 0.0004988444270566106, -0.012302562594413757, -0.012022783048450947, -0.021822866052389145, 0.007010051514953375, 0.021278848871588707, -0.03288973122835159, 0.050422634929418564, 0.03820556029677391, 0.014540805481374264, 0.012201530858874321, -0.018931802362203598, -0.007806648500263691, -0.0008679990423843265, -0.027325212955474854, -0.017781594768166542, 0.0035613705404102802, 0.008673190139234066, 0.006473806221038103, 0.03239234536886215, 0.004647462163120508, -0.03002975508570671, -0.009652421809732914, 0.038298819214105606, 0.013483857735991478, -0.023796871304512024, 0.01312636025249958, -0.01175854541361332, -0.007348119746893644, -0.010079863481223583, -0.0066991844214499, 0.010227525606751442, 0.02699880301952362, 0.025491097941994667, -0.030744750052690506, 0.005230337847024202, 0.00029508082661777735, -0.009566932916641235, -0.0013240992557257414, -0.03497254103422165, 0.0027783741243183613, -0.05813213437795639, -0.0037945208605378866, 0.008136944845318794, 0.0017729136161506176, 0.0017204547766596079, 0.006462148390710354, 0.031723979860544205, 0.003650744678452611, -0.0020866950508207083, -0.01309527363628149, 0.0014503890415653586, 0.011020236648619175, 0.013172990642488003, 0.02643924206495285, -0.010491762310266495, 0.012465768493711948, 0.005960875656455755, -0.01888517290353775, 0.01244245283305645, 0.0063766599632799625, -0.019335929304361343, 0.006555408705025911, 0.02799357660114765, -0.00047237216494977474, 0.017734965309500694, 0.04861960560083389, -0.01919603906571865, 0.011781861074268818, -0.019367016851902008, -0.007285946048796177, -0.007146055810153484, -0.027200866490602493, -0.0182634387165308, -0.0031106132082641125, 0.009496987797319889, -0.005374114029109478, 0.014416459016501904, 0.0019147467100992799, 0.01660029962658882, 0.0052381097339093685, 0.02401447854936123, -0.0038061782252043486, -0.020221900194883347, -0.006349459290504456, 0.0016466238303110003, -0.005517889745533466, -0.005758811719715595, -0.015216941013932228, 0.009761225432157516, -0.0031106132082641125, -0.0019370901864022017, 0.012551256455481052, -0.011991695500910282, -0.017377467826008797, -0.0018244009697809815, 0.001756398705765605, 0.02029961720108986, -0.0091317193582654, -0.0023412173613905907, -0.012450224719941616, 0.07896022498607635, 0.01628943346440792, -0.0020342362113296986, 0.0030173531267791986, -0.01201501116156578, 0.011735230684280396, -0.007060567382723093, 0.030060842633247375, 0.02687445469200611, -0.024434149265289307, 0.015286886133253574, -0.003067868994548917, 0.014921617694199085, 0.0027259152848273516, 0.02650141529738903, -0.0009704880067147315, 0.025739790871739388, -0.002430591732263565, 0.010390730574727058, 0.002927978988736868, -0.017905941233038902, 0.0029046637937426567, 0.007561840582638979, -0.008121401071548462, 0.0031825012993067503, -0.008579930290579796, 0.015815360471606255, -0.011572025716304779, -0.02129439264535904, -0.015457862988114357, 0.04202922433614731, 0.020019836723804474, 0.02866194024682045, 0.022864270955324173, 0.0010666624875739217, 0.057106275111436844, 0.0023664752952754498, 0.015543351881206036, -0.013872441835701466, 0.004049043171107769, 0.010188667103648186, -0.006613695994019508, -0.00013114702596794814, -0.013196305371820927, -0.016848992556333542, -0.004620261490345001, -0.0025724247097969055, 0.01467292383313179, -0.0017894284101203084, -0.03211256489157677, -0.00410344498232007, 0.0035244550090283155, -0.023144051432609558, -0.01660029962658882, -0.022584490478038788, -0.014874987304210663, 0.004037385806441307, -0.008836395107209682, -0.014058961533010006, -0.007538525853306055, 2.5409737645532005e-05, 0.029174871742725372, 0.01764170452952385, -0.042122483253479004, -0.011913979426026344, 0.009077317081391811, 0.001540734781883657, -0.003435080870985985, -0.0018341154791414738, 0.0133983688428998, 0.008098086342215538, 0.009528074413537979, -0.03223691135644913, 0.014851672574877739, -0.004538658540695906, -0.001208495581522584, 0.03721078485250473, -0.012753319926559925, -0.0008917998056858778, -0.025289032608270645, 0.009372641332447529, 0.01287766732275486, 0.011105724610388279, 0.015224712900817394, -0.00038202645373530686, 0.0001256825780728832, -0.0036080004647374153, -0.022071558982133865, 0.006396089214831591, -0.03257886692881584, 0.011354418471455574, -0.01633606292307377, 0.015869762748479843, -0.017315294593572617, -0.00571218179538846, -0.03832990676164627, -0.033573638647794724, -0.005991962272673845, 0.011113496497273445, -0.021807322278618813, -0.02791585959494114, 0.00850998517125845, 0.021869495511054993, -0.01689562387764454, 0.02438751980662346, -0.002253785962238908, -0.03351146727800369, 0.004402654245495796, -0.011292245239019394, -0.01616508513689041, 6.49663561489433e-05, 0.008774221874773502, 0.00999437551945448, -0.005498460493981838, 0.01739301159977913, 0.01664692908525467, -0.014587435871362686, -0.012722233310341835, 0.004387110937386751, 0.007157713640481234, -0.01697334088385105, 0.009434814564883709, 0.009263837710022926, -0.0016835392452776432, -0.019087236374616623, 0.01040627434849739, 0.010973606258630753, 0.010398502461612225, 0.0037032035179436207, 0.0007567669381387532, 0.026019571349024773, 0.03233017027378082, -0.0047329505905508995, -0.008945198729634285, 0.019211582839488983, 0.0010734627721831203, 0.025273490697145462, 0.018667565658688545, -0.02687445469200611, -0.024915993213653564, -0.0066331252455711365, -0.0005493603530339897, 0.0044570560567080975, 0.018916258588433266, -0.01365483459085226, -0.00231401645578444, -0.037677083164453506, 0.015551123768091202, 0.021309934556484222, -0.026408154517412186, -0.007604585029184818, 0.022087102755904198, 0.014268796890974045, -0.008222432807087898, -0.008556615561246872, -0.008424496278166771, -0.00046751488116569817, -0.011828490532934666, 0.013351739384233952, -0.012069412507116795, 0.02031516097486019, -0.001899203285574913, -0.011688600294291973, -0.035811882466077805, 0.00025160799850709736, 0.003732347395271063, -0.010662739165127277, -0.044547244906425476, -0.015574438497424126, 0.02110787108540535, -0.012885438278317451, -0.0004847582895308733, 0.006275628227740526, -0.006687527056783438, 0.005498460493981838, 0.0016145657282322645, 0.019429190084338188, -0.026470327749848366, 0.02283318340778351, -0.006920677609741688, -0.018683109432458878, -0.018310068175196648, -0.009279381483793259, 0.007538525853306055, 0.01894734613597393, 0.022056017071008682, -0.02042396366596222, -0.014711782336235046, 0.0036818315275013447, 0.014439773745834827, -0.007756132632493973, -0.019227126613259315, -0.00038372649578377604, 0.022491229698061943, 0.015007106587290764, 0.02661021798849106, -0.018993975594639778, -0.026781195774674416, 0.0010142037644982338, -0.003845036728307605, -0.0047057499177753925, -0.004422083497047424, 0.012675603851675987, -0.04653679579496384, 0.013460543006658554, -0.0146418372169137, -0.007997054606676102, -0.00031718151876702905, -0.010266384109854698, -0.03144419938325882, -0.014261025004088879, -0.0019526336109265685, -0.017486270517110825, 0.01641377992928028, 0.006228998303413391, 0.025957398116588593, 0.001832172623835504, -0.014097820036113262, 0.01579204574227333, -0.0027395158540457487, -0.0008616845589131117, -0.0015591924311593175, -0.02129439264535904, -0.007134398445487022, 0.014463088475167751, -0.001986634684726596, 0.011206756345927715, 0.013289566151797771, 0.027402929961681366, -0.00013612576003652066, 0.0014241596218198538, 0.012147129513323307, 0.02903498150408268, -0.010623880662024021, 0.01578427292406559, -0.007029480766505003, 0.010755999945104122, 0.008813080377876759, 0.008719820529222488, -0.01130001712590456, 0.03363581374287605, 0.004515343811362982, -0.026206091046333313, 0.000941829988732934, -0.021931668743491173, -0.00023934333876240999, 0.0015757073415443301, 0.0010297470726072788, -0.01377141010016203, -0.000983117031864822, 0.0066331252455711365, 0.00919389259070158, -0.008517757058143616, -0.0077289314940571785, -0.011595340445637703, 0.02087472192943096, -0.008657647296786308, 0.0018758883234113455, -0.015123681165277958, -0.02544446662068367, 0.008502213284373283, -0.01374809443950653, 0.011097953654825687, 0.010561707429587841, -0.026345981284976006, 0.012566800229251385, 0.015271343290805817, -0.001981777371838689, 0.014735097996890545, -0.014820585958659649, -0.020532768219709396, 0.025553271174430847, -0.012621201574802399, 0.034817107021808624, 0.0013085559476166964, 0.0026326552033424377, -0.007002280093729496, -0.004888384137302637, 0.01776605099439621, -0.0017117116367444396, 0.001432902761735022, 0.016180628910660744, -0.0016495381714776158, -0.020828090608119965, 0.013219621032476425, 0.022693293169140816, 0.005109876859933138, 0.0226622074842453, 0.030682576820254326, -0.012986470945179462, 0.002170240506529808, 0.007736703380942345, 0.004017956554889679, 0.007876593619585037, -0.0034797678235918283, 0.009831169620156288, 0.0058015561662614346, 0.014618522487580776, -0.017563987523317337, -0.005436287261545658, -0.006660326384007931, 0.010748228058218956, -0.012761091813445091, 0.03158409148454666, 0.010134265758097172, -0.0005823899409733713, 0.034692760556936264, -0.027154235169291496, 0.0011298074387013912, -0.016258345916867256, 0.008129172958433628, 0.006314486730843782, -0.008136944845318794, -0.012426909990608692, -0.007371434476226568, -0.00693233497440815, 0.024294259026646614, 0.014478632248938084, -0.0007465666276402771, 0.004635804798454046, -0.030293993651866913, 0.009333782829344273, 0.005580063443630934, -0.01602519489824772, -0.015520037151873112, 0.009870028123259544, 0.00014061876572668552, 0.009403727948665619, -0.00021651403221767396, -0.011292245239019394, 0.016087369993329048, 0.001469818176701665, 0.00919389259070158, -0.0009190006530843675, 0.0008922855486162007, -0.004519229754805565, -0.018170177936553955, 0.024309802800416946, -0.03323168680071831, -0.0037964635994285345, -0.021869495511054993, 0.0047329505905508995, -0.0027511732187122107, 0.02081254869699478, -0.00836232304573059, 0.009248293936252594, 0.006092994008213282, 0.003986869938671589, 0.0019215468782931566, -0.005043817684054375, -0.026283808052539825, -0.011323331855237484, 0.029174871742725372, 0.0019361188169568777, -0.003388450713828206, -0.021403195336461067, -0.001269697560928762, 0.015014877542853355, -0.007794991135597229, 0.014913845807313919, -0.0041578467935323715, -0.005012731067836285, -0.0011307788081467152, -0.026159461587667465, -0.023874588310718536, 0.006706956308335066, -0.0026190548669546843, 0.00339816533960402, 0.014836129732429981, 0.018714195117354393, -0.01566769927740097, 0.017175404354929924, 0.0017398839117959142, 0.027138693258166313, 0.04821547865867615, -0.017921485006809235, 0.013017557561397552, -0.011719686910510063, 0.0074569229036569595, -0.00850998517125845, -0.036744482815265656, -0.010857031680643559, 0.0051215342245996, -0.009947745129466057, -0.022211449220776558, -0.025413380935788155, 0.00699450820684433, -0.027900315821170807, 0.028864003717899323, 0.028180096298456192, 0.005063246935606003, -0.004865068942308426, 0.029392478987574577, -0.017284207046031952, 0.002642369829118252, 0.016755733639001846, -0.01751735806465149, 0.0023606466129422188, -0.0163516066968441, 0.017672790214419365, 0.013351739384233952, -0.010072091594338417, -0.017346380278468132, 0.00693233497440815, 0.011066866107285023, 0.007278174627572298, 0.011385505087673664, -0.02409219555556774, -0.029019437730312347, -0.021247761324048042, 0.0076589868403971195, -0.03257886692881584, -0.011781861074268818, 0.00801259744912386, -0.0066991844214499, -0.014027874916791916, 0.004278307780623436, 0.002605454297736287, -0.005160392727702856, -0.008261291310191154, 0.0028327759355306625, -0.021822866052389145, -0.013670378364622593, 0.02836661785840988, 0.02409219555556774, 0.01169637218117714, 0.011680829338729382, 0.02098352462053299, 0.002861919580027461, 0.012434681877493858, -0.0044453986920416355, 0.023299483582377434, -0.017921485006809235, 0.01689562387764454, 0.02197830006480217, -0.03708643838763237, -0.0023664752952754498, 0.006559294648468494, 0.03851642459630966, 0.012287019751966, -0.001437760074622929, -0.020999068394303322, -0.03170843794941902, 0.005393543280661106, -0.008090314455330372, -0.00696342159062624, 0.0013639291282743216, 0.01591639220714569, 0.005175936035811901, -0.0173308365046978, -0.002104181330651045, 0.004441512748599052, 0.013048644177615643, 0.016755733639001846, -0.0012201531790196896, -0.0012978698359802365, 0.01770387776196003, 0.012675603851675987, -0.017408553510904312, 0.0017340552294626832, -0.006936220917850733, -0.022133732214570045, 0.003881952026858926, -0.004289965145289898, 0.012994241900742054, -0.0026695707347244024, -0.0021624688524752855, -0.001627194695174694, -0.0019380616722628474, 0.005420743953436613, -0.0039188675582408905, -0.0018302296521142125, -0.001709768665023148, 0.007693959400057793, 0.010810401290655136, -0.01820126548409462, 0.008354552090168, -0.013219621032476425, -0.00798151083290577, -0.025895224884152412, 0.008883025497198105, 0.021496456116437912, -0.0010482048382982612, -0.008704276755452156, -0.0019934349693357944, 0.09972614794969559, 0.008984057232737541, 0.01832561194896698, 0.005001073237508535, 0.010165352374315262, -0.011719686910510063, -0.00219938438385725, 0.004243335220962763, 0.0226622074842453, -0.006745814811438322, -0.02098352462053299, -0.018714195117354393, 0.02347046136856079, 0.009139491245150566, -0.0277293398976326, 0.004297736566513777, 0.012706690467894077, 0.002642369829118252, 0.009714595042169094, 0.009893343783915043, 0.006730271503329277, -0.01652258262038231, 0.007662872318178415, 0.01008763536810875, 0.012248161248862743, 0.0130641870200634, -0.005704409908503294, 0.0071382843889296055, 0.004942785948514938, 0.03982206806540489, -0.008346780203282833, -0.005692752543836832, -0.003221359569579363, -0.0038314361590892076, 0.0010938633931800723, 0.013942386955022812, -0.016569213941693306, 0.02600402757525444, -0.004771809093654156, 0.001407644827850163, -0.006959535647183657, 0.00860324501991272, 0.029439108446240425, 0.025040339678525925, -0.020781461149454117, 0.013631519861519337, 0.008486670441925526, 0.0019545764662325382, 0.007247088011354208, -0.0028444333001971245, -0.003990755416452885, -0.03326277434825897, 0.0002678799501154572, 0.01380249671638012, 0.02247568592429161, -0.017346380278468132, -0.002104181330651045, -0.0034273089841008186, 0.008160259574651718, -0.001044319011271, -0.023315027356147766, 0.008533299900591373, -0.0024480780120939016, -0.03382233530282974, -0.012038325890898705, -0.006831303238868713, -0.014828357845544815, -0.0027764311525970697, -0.013281794264912605, -0.01894734613597393, -0.023377200588583946, -0.005214794538915157, -0.003951897379010916, -0.029003893956542015, -0.006139623932540417, 0.008502213284373283, 5.476602746057324e-05, 0.0320814773440361, 0.018247894942760468, 0.01086480263620615, -0.004348252899944782, 0.008276835083961487, -0.011198985390365124, -0.0029104927089065313, -0.001166722853668034, -0.009862257167696953, 0.007013937458395958, -0.014571892097592354, 0.0036021717824041843, -0.014292111620306969, -0.025040339678525925, -0.00844781193882227, -0.005273082293570042, 0.014781727455556393, -0.0001584693236509338, -0.0018642307259142399, -0.006625353824347258, -0.031739525496959686, 0.018745282664895058, 0.004857297521084547, 0.007779447827488184, 0.010561707429587841, 0.004589174408465624, -0.004464827943593264, -0.012994241900742054, -0.00016089798009488732, 0.019273756071925163, 0.010841487906873226, 0.013250707648694515, 0.0034331378992646933, -0.003501140046864748, -0.0009787454036995769, -0.00377703458070755, 0.005051589570939541, -0.03431972116231918, -0.001284269499592483, 0.012512397952377796, -0.004542544484138489, -0.019149409607052803, -0.005137077998369932, 0.0011531224008649588, -0.0015417062677443027, -0.02754282020032406, -0.017843768000602722, -0.000399512704461813, 0.006314486730843782, -0.012069412507116795, -0.0034117656759917736, -0.011323331855237484, -0.010173124261200428, 0.006912905722856522, 0.012457996606826782, 0.012784406542778015, 0.002815289655700326, 0.0195069070905447, 0.002683171071112156, 0.011494308710098267, -0.004371567629277706, 0.015768731012940407, -0.00820688996464014, 0.01591639220714569, -0.02117004431784153, 0.020144183188676834, 0.01377141010016203, -0.007732817437499762, -0.007146055810153484, -0.005506232380867004, -0.027822600677609444, 0.0010015746811404824, 0.006819645408540964, 0.022708836942911148, -0.03385341912508011, 0.003813949879258871, -0.00620568310841918, 0.011898435652256012, 0.005241995211690664, -0.019895490258932114, 0.04171835631132126, -0.023423831909894943, 0.008914112113416195, 0.005315826274454594, -0.014680695720016956, -0.00919389259070158, -0.003854751354083419, -0.014867216348648071, -0.0054945750162005424, 0.014540805481374264, 0.01002546213567257, 0.018962889909744263, -0.003147528739646077, -0.004418197553604841, 0.0033865077421069145, 0.005183707922697067, -0.02884846180677414, 0.008276835083961487, 0.007927109487354755, 0.007390863727778196, -0.012613429687917233, -0.014206623658537865, 0.027029888704419136, -0.005560634192079306, 0.005374114029109478, 0.018372241407632828, 0.02519577369093895, -0.005245881155133247, -0.022258080542087555, -0.0034467382356524467, -0.016693560406565666, 0.012092728167772293, -0.008502213284373283, 0.0030367823783308268, 0.008191346190869808, 0.008587702177464962, -0.01210827101022005, -0.0017087972955778241, -0.012302562594413757, 0.021993841975927353, 0.0016475953161716461, 0.02210264652967453, -0.01309527363628149, -0.0009908886859193444, -0.005887044593691826, 0.0028444333001971245, 0.009364869445562363, 0.002022578613832593, -0.012465768493711948, -0.02210264652967453, -0.02409219555556774, -0.018465502187609673, -0.004286079201847315, -0.016009652987122536, -0.03316951170563698, 0.02068820223212242, 0.006998394150286913, 0.0016019366448745131, -0.005339141469448805, 0.0058248708955943584, 0.022693293169140816, 0.008230204693973064, 0.021154502406716347, 0.009862257167696953, 0.0033903936855494976, 0.005902587901800871, -0.02357926405966282, -0.0005338169867172837, 0.0015213055303320289, 0.007476352155208588, 0.021962756291031837, -0.00047237216494977474, -0.008152487687766552, 0.004868954885751009, 0.0049544433131814, -0.015372375026345253, 0.01175854541361332, -0.0033612498082220554, 0.034257546067237854, 0.007149941753596067, 0.011369962245225906, 0.013157447800040245, -0.002141096629202366, -0.026548044756054878, -0.0021624688524752855, -0.01720649003982544, -0.011028008535504341, -0.007806648500263691, -0.010414045304059982, 0.006240655668079853, 0.005840414669364691, 0.002636541146785021, -3.208852285752073e-05, -0.0071693710051476955, -0.0017340552294626832, -0.006609810516238213, 0.015053736045956612, 0.025226859375834465, -0.00044808568782173097, -0.005047703627496958, 0.0011239786399528384, 0.0005260453326627612, -0.019864404574036598, 0.0033243342768400908, 0.012100499123334885, -0.011432135477662086, -0.009333782829344273, 0.0018865743186324835, 0.030993442982435226, -0.035127975046634674, 0.005548976827412844, 0.0010880345944315195, 0.011797403916716576, 0.018931802362203598, -0.018294524401426315, 0.022242536768317223, 0.008401181548833847, -0.004577517043799162, 0.007002280093729496, 0.004286079201847315, -0.0024694500025361776, 0.007763904053717852, 0.001812743372283876, -0.001653423998504877, 0.010398502461612225, 0.024791646748781204, -0.025242403149604797, 0.006023048888891935, -0.03090018406510353, 0.01336728222668171, 0.01801474392414093, -0.005521775688976049, 0.010165352374315262, -0.002201327122747898, -0.008253519423305988, -0.006675869692116976, -0.007305375300347805, -0.010390730574727058, 0.0005231309332884848, -0.004084015730768442, -0.013087502680718899, 0.010748228058218956, 0.0038353221025317907, -0.0066486685536801815, -0.007262631319463253, 0.00051681644981727, -0.007111083250492811, 0.021636346355080605, 0.016258345916867256, 0.019911034032702446, 0.0060696788132190704, -0.02953236922621727, 0.018216809257864952, -0.002994038164615631, -0.021372109651565552, -0.0035535988863557577, 0.0006411632639355958, -0.011603112332522869, -0.004686320666223764, 0.0012473539682105184, 0.018372241407632828, -0.013615976087749004, 0.0012735833879560232, 0.008136944845318794, 0.014696239493787289, 0.011113496497273445, -0.0017942857230082154, 0.010888118296861649, -0.006734156981110573, -0.005331369582563639, -0.0006975079304538667, 0.005055475048720837, -0.03450624272227287, 0.005587834864854813, 0.003973269369453192, -0.0163516066968441, 0.009388184174895287, -0.011867349036037922, 0.009667964652180672, -0.0027103719767183065, -0.008712048642337322, -0.0015368489548563957, 0.018745282664895058, -0.014043418690562248, -0.013118589296936989, -0.00699450820684433, -0.011556481942534447, -0.004810667596757412, 0.0021469255443662405, -0.008346780203282833, -0.014136678539216518, 0.007557954639196396, 0.019087236374616623, -0.004258878529071808, 0.0025257947854697704, 0.009854485280811787, 0.023548178374767303, -0.0022129847202450037, 0.015302429907023907, 0.03366690129041672, 0.018278982490301132, -0.02093689516186714, -0.014766184613108635, -0.0015863933367654681, 0.009675736539065838, -0.01820126548409462, -0.015589982271194458, 0.01963125355541706, 0.008354552090168, -0.006279514171183109, -0.0035050257574766874, -0.06186253949999809, 0.015193626284599304, -0.013965701684355736, -0.014874987304210663, -0.00836232304573059, -0.012963155284523964, -0.017548443749547005, 0.008921884000301361, 0.0017204547766596079, -0.003067868994548917, -0.01900951936841011, -0.02148091234266758, 0.019911034032702446, 0.010763770900666714, 0.010476219467818737, -0.00910063274204731, -0.006403861101716757, 0.0201752707362175, 0.03565644845366478, 0.018247894942760468, 0.016367148607969284, -0.012279247865080833, -0.005867615342140198, -0.006283400114625692, -0.00153587746899575, 0.018434414640069008, -0.002267386531457305, 0.034568414092063904, -0.02866194024682045, 0.023315027356147766, 0.001365872099995613, -0.0007941681542433798, 0.010009918361902237, 0.01602519489824772, 0.0280402060598135, 0.007693959400057793, 0.02922150120139122, -0.018807455897331238, 0.011704144068062305, 0.004410426132380962, 0.0028832918033003807, 0.008408953435719013, 0.010305242612957954, 0.008129172958433628, -0.016631387174129486, 0.0033359918743371964, 0.014012332074344158, 0.00679633067920804, 0.010165352374315262, 0.00016575527843087912, 0.010351872071623802, -0.014944932423532009, 0.015714328736066818, -0.0028852347750216722, 0.013444999232888222, -0.014128906652331352, 0.0049661011435091496, 0.006497120950371027, 0.028677484020590782, 0.007052795961499214, 0.014711782336235046, -0.01061610970646143, -0.00969128031283617, -0.015038193203508854, 0.0025568814016878605, 0.013678149320185184, -0.018729738891124725, -0.014012332074344158, 0.02538229338824749, -0.018185721710324287, -0.005436287261545658, 0.019911034032702446, 0.00400629872456193, -0.004107330925762653, 0.0031591863371431828, 0.0057821269147098064, 0.01365483459085226, -0.019708970561623573, 0.0019370901864022017, 0.01691116765141487, -0.006916791666299105, -0.018605392426252365, -0.006947878282517195, 0.007522982079535723, -0.01461075060069561, 0.01556666661053896, -0.012271475978195667, -2.8749129342031665e-05, -0.0015436491230502725, -0.010250840336084366, 0.024745015427470207, -0.030915725976228714, 0.004076243843883276, -0.010857031680643559, 0.001842858619056642, -0.0034001083113253117, -0.005401314701884985, 0.003471996169537306, 0.0013085559476166964, 0.009574704803526402, -0.010258612222969532, -0.0055373189970850945, -0.018962889909744263, 0.02272438071668148, 0.009566932916641235, -0.014191079884767532, 0.0057860128581523895, 0.013950157910585403, 0.0006834217347204685, 0.010398502461612225, 0.009667964652180672, -0.005261424463242292, -0.019833317026495934, 0.004017956554889679, -0.005572291556745768, -0.013468313962221146, 0.030993442982435226, -0.019786687567830086, 0.01597856543958187, 0.015737643465399742, 0.0014970190823078156, 0.019056148827075958, -0.0009942888282239437, 0.03150637447834015, -0.0063183726742863655, 0.001013232278637588, 0.012566800229251385, -0.006019162945449352, 0.007620128337293863, 0.01691116765141487, -0.004802895709872246, 0.008098086342215538, -0.006644783075898886, 0.013188534416258335, 0.0003876123228110373, 0.002185783814638853, 0.006092994008213282, 0.0071693710051476955, -0.00022537860786542296, 0.001889488659799099, 0.014144450426101685, -0.005840414669364691, 0.02384350262582302, -0.028568681329488754, -0.014501946978271008, 0.008898569270968437, -0.0019118322525173426, 0.03758382424712181, 0.013608204200863838, 0.010227525606751442, 0.015007106587290764, 0.01244245283305645, -0.004188933409750462, -0.031599633395671844, -0.009807854890823364, -0.007868821732699871, -0.011144583113491535, 0.0008218547445721924, 0.018900716677308083, -0.0038256074767559767, -0.006936220917850733, -0.018247894942760468, -0.01807691901922226, 0.004810667596757412, -0.00984671339392662, -0.01293984055519104, 0.0039033242501318455, 0.02079700492322445, 0.009714595042169094, 0.007437493652105331, 0.0198177732527256, -0.006535979453474283, 0.021869495511054993, -0.009745681658387184, -0.009061774238944054, -0.0038294934201985598, -0.003466167487204075, -0.028801830485463142, 0.004317165818065405, 0.004107330925762653, -0.004029613919556141, -0.002304301830008626, -0.018465502187609673, 0.011494308710098267, 0.013483857735991478, 0.008463354781270027, 0.02353263460099697, -0.019367016851902008, 0.01086480263620615, 0.025211317464709282, -0.005840414669364691, 0.00282500428147614, 0.005999733693897724, -0.002712314948439598, 0.0008558558183722198, 0.007348119746893644, -0.026889998465776443, 0.0033165626227855682, 0.03156854584813118, -0.014299883507192135, -0.0005352741573005915, 0.013794724829494953, 0.0031727866735309362, 0.0047174072824418545, -0.012963155284523964, 0.017004426568746567, -0.009434814564883709, -0.005424629896879196, -0.01980222947895527, 0.0027103719767183065, 0.006197911687195301, -0.004830096382647753, -0.0020458935759961605, -0.014369828626513481, -0.004188933409750462, -0.006967307534068823, -0.0005513032665476203, 0.019724514335393906, 0.00656318012624979, -0.001218210207298398, 0.02396784909069538, -0.015589982271194458, 0.027014344930648804, -0.015014877542853355, -0.006415518466383219, 0.00036526875919662416, 0.006846846546977758, 0.007709502708166838, -0.004814553074538708, -0.003710975171998143, -0.027325212955474854, -0.018527675420045853, -0.0055567482486367226, 0.006823531351983547, 0.015209170058369637, 0.00215081125497818, -0.004573631100356579, 0.017968114465475082, -0.005890930537134409, -0.00719657214358449, -0.00041529894224368036, 0.019398102536797523, 0.016569213941693306, -0.0047057499177753925, 0.013406140729784966, -0.020999068394303322, 0.0226622074842453, -0.018652021884918213, -0.01034410111606121, -0.008945198729634285, 0.026330437511205673, -0.004480371251702309, -0.009155034087598324, 0.0154423201456666, 0.01641377992928028, 0.01231810636818409, -0.02179177850484848, 0.0021566401701420546, -0.007973739877343178, 0.010880346409976482, 0.03141311556100845, -0.012185988016426563, -0.0010297470726072788, -0.0020711517427116632, -0.0133983688428998, -0.00430162250995636, 0.002288758521899581, -0.01333619561046362, -0.016880080103874207, 0.00538577139377594, -0.014175537042319775, -0.018714195117354393, -0.004927242640405893, -0.021014612168073654, -0.012232617475092411, 0.0031805583275854588, 0.018931802362203598, 0.004099559038877487, 0.0032874189782887697, -0.01309527363628149, 0.004670777358114719, -0.0026268265210092068, -0.010445132851600647, 0.024853819981217384, -0.009341554716229439, -0.0041578467935323715, 0.007596813142299652, -0.00465911952778697, -0.013880212791264057, -0.024791646748781204, 0.021527541801333427, -0.008160259574651718, -0.020594941452145576, -0.02303524687886238, 0.011540939100086689, 0.015457862988114357, -0.0055256616324186325, -0.01894734613597393, 0.0017583416774868965, 0.0030231820419430733, -0.013786952942609787, -0.018170177936553955, 0.00584818609058857, 0.010398502461612225, -0.010491762310266495, 0.01641377992928028, 0.0026035113260149956, 0.015271343290805817, 0.014175537042319775, -0.007254859432578087, 0.0008082542917691171, -0.031599633395671844, -0.007336461916565895, 0.00498552992939949, 0.015496721491217613, -0.012776635587215424, -1.0329346878279466e-05, 0.017797138541936874, -0.0001957490894710645, -0.013188534416258335, -0.006244541611522436, 0.010911433026194572, -0.0032174738589674234, -0.0038528083823621273, -0.02934584766626358, -0.035811882466077805, 0.008346780203282833, -0.0049777585081756115, 0.006912905722856522, -0.011572025716304779, -0.007938766852021217, -0.005867615342140198, -0.016367148607969284, 0.004771809093654156, 0.0049622152000665665, 0.004845640156418085, -0.0013775295810773969, -0.009870028123259544, 0.015178083442151546, 0.010934747755527496, -0.0006814788212068379, -3.8888738345121965e-05, 0.025304576382040977, -0.0030795265920460224, -0.011214528232812881, 0.006586495321244001, -0.0021488682832568884, -0.016988882794976234, -0.009737909771502018, 0.0014882759423926473, -0.015644384548068047, 0.007394749671220779, 0.02029961720108986, -0.008766449987888336, -0.001812743372283876, 0.00023582178982906044, -0.012185988016426563, -0.0071382843889296055, 0.012069412507116795, 0.022631119936704636, -0.011129040271043777, 0.004499800503253937, 0.018993975594639778, 0.01198392454534769, -0.010810401290655136, 0.024309802800416946, 0.009566932916641235, 0.0012201531790196896, 0.016320519149303436, -0.004379339516162872, 0.013763638213276863, 0.03351146727800369, -0.021822866052389145, -0.012147129513323307, -0.006543751340359449, 9.963531192624941e-05, 0.011074637994170189, -0.02067265845835209, -0.01578427292406559, -0.005587834864854813, 0.0016922823851928115, 0.011059095151722431, 0.0032271884847432375, 0.002113895956426859, 0.01714431680738926, -0.015931935980916023, 0.012838808819651604, 0.001878802664577961, 0.03276538476347923, -0.009901114739477634, -0.005203137174248695, 0.0004089844587724656, 0.02029961720108986, 0.019227126613259315, -0.01677127741277218, 0.00984671339392662, 0.010274155996739864, 0.015053736045956612, -0.0036721169017255306, -0.008370094932615757, -0.010989150032401085, 0.034817107021808624, 0.004865068942308426, 0.005991962272673845, -0.0019244612194597721, -0.038609687238931656, -0.010701597668230534, -0.03376016020774841, -0.008261291310191154, -0.0005576177500188351, -0.0023120734840631485, 0.021123414859175682, -0.001531020156107843, -0.013250707648694515, -0.01961570978164673, -0.006135737989097834, -0.010095407254993916, 0.02525794692337513, 0.018154634162783623, 0.014913845807313919, 0.0008131116046570241, 0.012512397952377796, 0.017781594768166542, -0.011828490532934666, -0.018310068175196648, 0.009535846300423145, 0.028242269530892372, 0.0019526336109265685, 0.0014620465226471424, -0.014742868952453136, -0.0138646699488163, -0.018667565658688545, 0.009823398664593697, -0.007550183217972517, -0.02575533464550972, -0.011525395326316357, -0.014937161467969418, 0.013343967497348785, -0.012955383397638798, 0.020905807614326477, 0.004655234050005674, -0.019413646310567856, -0.01086480263620615, 0.00903845950961113, -0.005972533021122217, -0.002174126449972391, -0.012994241900742054, -0.0052225664258003235, -0.008463354781270027, -0.008828624151647091, -0.0270609762519598, 0.019398102536797523, -0.01553557999432087, 0.015706557780504227, 0.016304975375533104, -0.0038566940929740667, -0.030169645324349403, 0.005832642782479525, -0.0028794058598577976, -0.009629106149077415, -0.023299483582377434, -0.00847889855504036, -0.007651214953511953, -0.009015143848955631, -0.009854485280811787, -0.00836232304573059, 0.007740589324384928, -0.0005357599002309144, -0.004729064647108316, 0.0003164529334753752, 0.03189495950937271, 0.011937294155359268, -0.002708429004997015, -0.00996328890323639, 0.002840547589585185, -0.001023918273858726, 0.0021236103493720293, 0.007083882577717304, 0.0017282264307141304, -0.009217207320034504, 0.006508778780698776, -0.0198177732527256, 0.01061610970646143, 0.01703551411628723, -0.006295057479292154, 0.005451830569654703, -0.0032835330348461866, -0.006054135505110025, -0.00023205738398246467, -0.016071826219558716, 0.002733686938881874, -0.011805175803601742, 0.025086969137191772, 0.03211256489157677, -0.01987994648516178, -0.009116175584495068, 0.0055373189970850945, -0.008261291310191154, -0.016709104180336, 0.0026812280993908644, -0.011641970835626125, 0.008486670441925526, -0.021030155941843987, 0.007433608174324036, -0.004631918855011463, 0.008859710767865181, -0.009854485280811787, 0.013281794264912605, 0.009652421809732914, -0.0018292581662535667, -0.0010686054592952132, 0.005704409908503294, -0.012932068668305874, 0.022009385749697685, 0.0010744341416284442, 0.00838563870638609, -0.03478602319955826, -0.005117648746818304, 0.024605125188827515, 0.0012075240956619382, 0.007045024074614048, 0.030107472091913223, 0.012364736758172512, 0.0003987841191701591, 0.02347046136856079, -6.490563828265294e-05, 0.005129306111484766, -0.007418064866214991, 0.02841324731707573, 0.006396089214831591, -0.00608133664354682, 0.011478764936327934, 0.011432135477662086, -0.02339274436235428, -0.010686054825782776, -0.015092594549059868, -0.010196438990533352, -0.0032777043525129557, -0.04115879535675049, -0.002999866846948862, -0.00021469255443662405, 0.01061610970646143, -0.021341022104024887, 0.00027565163327381015, 0.00903845950961113, 0.0055412049405276775, 0.010903661139309406, 0.007161599583923817, 0.015675470232963562, -0.00925606582313776, -0.0012405538000166416, -0.004973872564733028, -0.025086969137191772, 0.014501946978271008, 0.015582210384309292, 0.009807854890823364, 0.010126493871212006, 0.01832561194896698, 0.0013590718153864145, -0.007418064866214991, -0.0004325423506088555, -0.012325878255069256, 0.013017557561397552, 0.02098352462053299, 0.008455583825707436, 0.009326010942459106, -0.024045566096901894, -0.007243202067911625, 0.002022578613832593, -0.0008310835692100227, 0.008393409661948681, 0.02835107408463955, 0.01628943346440792, 0.0007140227244235575, 0.0018059432040899992, -0.015248028561472893, 0.0006372774369083345, -0.0020303502678871155, 0.003343763528391719, -0.016553670167922974, -0.004969986621290445, -0.0063611166551709175, -0.00925606582313776, 0.004853411577641964, 0.016180628910660744, 0.0015669642016291618, 0.014113363809883595, -0.0052536530420184135, -0.007892136462032795, -0.01374032348394394, -0.0270609762519598, 0.000153612025314942, -0.0024733359459787607, -0.025055883452296257, -6.132337875897065e-05, -0.0135304881259799, 0.022522317245602608, -0.013849126175045967, 0.009893343783915043, -0.028553137555718422, -0.004635804798454046, 0.021278848871588707, -0.001136607606895268, -0.0035438842605799437, -0.015387918800115585, 0.008945198729634285, 0.013856898061931133, 0.023237310349941254, -0.01911832205951214, 0.005428515840321779, -0.007600699085742235, 0.029952039942145348, -0.024418605491518974, 0.010919204913079739, 0.006675869692116976, -0.019040606915950775, 0.013351739384233952, 0.004379339516162872, -0.0034409095533192158, 0.0057976702228188515, 0.018123548477888107, -0.010662739165127277, -0.013615976087749004, -0.03627818450331688, 0.0016437094891443849, 0.001294955494813621, -0.01415222231298685, -0.026532500982284546, -0.0020750374533236027, 0.01142436359077692, -0.006365002598613501, -0.009598019532859325, 0.016071826219558716, 0.006745814811438322, -0.02507142722606659, 0.004418197553604841, -0.0008247690857388079, -0.012792178429663181, 0.009271609596908092, 0.0005891901673749089, -0.015652155503630638, 0.007927109487354755, 0.01169637218117714, 0.0010482048382982612, -0.030123015865683556, -0.00465911952778697, -0.018807455897331238, 0.012100499123334885, 0.013312880881130695, 0.014874987304210663, 0.011346646584570408, 0.01451749075204134, 0.012388051487505436, 0.028739657253026962, 0.01616508513689041, -0.014346513897180557, 0.012007239274680614, -0.0015805645380169153, -0.000803882721811533, -0.004849525634199381, -0.006466034334152937, -0.004729064647108316, 0.01349940150976181, 0.009294924326241016, 0.010320785455405712, -0.015092594549059868, -0.006652554497122765, 0.006819645408540964, -0.021278848871588707, 0.021822866052389145, 0.008750907145440578, 0.012240389361977577, 0.0017311407718807459, -0.011105724610388279, -0.007651214953511953, 0.009838941507041454, -0.017719421535730362, -0.027387386187911034, 0.004223905969411135, -0.012885438278317451, 0.015434548258781433, -0.019973207265138626, -0.02012864127755165, -0.016864536330103874, -0.0024247628170996904, 0.0025529954582452774, -0.0052225664258003235, 0.008517757058143616, 0.01018089521676302, 0.006225112359970808, 0.017377467826008797, 0.02662576176226139, 0.016133999451994896, 0.011836262419819832, 0.011743002571165562, -0.022024929523468018, -0.005137077998369932, 0.005436287261545658, -0.022988617420196533, 0.002840547589585185, 0.00600750558078289, 0.024434149265289307, -0.026035115122795105, 0.02667239122092724, -0.009240522980690002, -0.001971091376617551, 0.005576177500188351, 0.004138417541980743, 0.007021709345281124, 0.0118207186460495, -0.004783466458320618, 0.009263837710022926, 0.014144450426101685, -0.005117648746818304, -0.01646040938794613, -0.004958329256623983, -0.0057821269147098064, -0.016802363097667694, 0.0283044446259737, 0.006186253856867552, 0.0033903936855494976, -0.021030155941843987, 0.011416591703891754, -0.021776236593723297, 0.0035963431000709534, 0.02154308557510376, -0.007052795961499214, -0.012566800229251385, 0.025864137336611748, -0.0018914316315203905, -0.001213352894410491, -0.008370094932615757, -0.008222432807087898, 0.017905941233038902, 0.004480371251702309, 0.009535846300423145, -0.002125553321093321, 0.016133999451994896, 0.003215530887246132, 0.007052795961499214, -9.392799256602302e-05, -0.02667239122092724, -0.0012609544210135937, -0.006372774485498667, -0.022584490478038788, -0.007219886872917414, 0.00024699358618818223, 0.012061640620231628, 0.002523851813748479, -0.015434548258781433, 0.02328394167125225, 0.005191479343920946, 0.0005284739891067147, -0.0002588939678389579, -0.023377200588583946, -0.03038725256919861, -0.002974608913064003, 0.01080262940376997, -0.011540939100086689, -0.01145545020699501, -0.0037440049927681684, 0.011416591703891754, -0.006291171535849571, -0.005914245266467333, 0.025304576382040977, -0.007791105192154646, 0.02303524687886238, 0.021511999890208244, -0.00826906319707632, -0.021527541801333427, 0.020221900194883347, -0.03175506740808487, 0.01198392454534769, -0.013577117584645748, 0.008074771612882614, -0.00581709947437048, -0.0031825012993067503, -0.013266250491142273, -0.0007281088619492948, 0.011533167213201523, 0.016491496935486794, 0.001842858619056642, -0.010919204913079739, -0.0012055812403559685, 0.014711782336235046, -0.023610351607203484, 0.023377200588583946, 0.011059095151722431, -0.00304066832177341, 0.012496855109930038, 0.006023048888891935, 0.010701597668230534, 0.005199251230806112, -0.0029454652685672045, -0.008471126668155193, 0.004317165818065405, -0.010157580487430096, 0.027962490916252136, -0.012605658732354641, -0.008261291310191154, 0.01987994648516178, 0.006151281297206879, -0.011572025716304779, -0.014315427280962467, 0.000905886001419276, -0.009807854890823364, -0.0032990763429552317, 0.011082409881055355, 0.011595340445637703, 0.0005207022768445313, -0.015387918800115585, -0.014727326110005379, -0.014261025004088879, -0.020470594987273216, -0.008859710767865181, -0.02376578561961651, 0.02210264652967453, -0.00778333330526948, 0.0010831772815436125, -0.014408687129616737, 0.018667565658688545, -0.00386058003641665, 0.0242165420204401, -0.015947479754686356, -0.027029888704419136, 0.004150074906647205, 0.0003040668088942766, 0.026703478768467903, -0.02092135138809681, -0.005144849419593811, 0.008626560680568218, 0.005984190385788679, -0.008168031461536884, -0.004161732271313667, -0.0052381097339093685, 0.00814471673220396, -0.013382826000452042, -0.004604718182235956, 0.001489247428253293, 0.004725179169327021, -0.00826906319707632, 0.011937294155359268, -0.005937560461461544, -0.007864936254918575, -0.021682975813746452, -0.013157447800040245, -0.002154697198420763, 0.019289299845695496, -0.0008641132153570652, 0.025273490697145462, 0.02934584766626358, -0.01652258262038231, -0.005956989713013172, 0.018791912123560905, 0.0033767931163311005, -0.009543618187308311, 0.01244245283305645, -0.005517889745533466, 0.012419138103723526, 0.006411632522940636, 0.008408953435719013, 0.018620936200022697, -0.002749230246990919, 0.0030503827147185802, -0.0016485668020322919, -0.008494441397488117, 0.005949217826128006, 0.017190946266055107, -0.016802363097667694, 0.021620802581310272, -0.0009646592661738396, 9.350297477794811e-05, -0.01374032348394394, -0.008735363371670246, 0.0024131054524332285, -0.002104181330651045, -0.020330704748630524, 0.006431061774492264, 0.0050205024890601635, -0.021838409826159477, -0.013056415133178234, -0.024978166446089745, 0.014276568777859211, -0.011074637994170189, 0.006978964898735285, 0.00969128031283617, 0.02011309750378132, 0.00015579781029373407, -0.01726866327226162, 0.004635804798454046, 0.02005092427134514, 0.0009855456883087754, 0.0060463640838861465, -0.01975560002028942, 0.021869495511054993, 0.03125768154859543, 0.014330970123410225, -0.002160525880753994, 0.007744475267827511, -0.0242165420204401, 0.004394882824271917, -0.00038882665103301406, -0.006885705050081015, -4.0983446524478495e-05, 0.012364736758172512, -0.02735629864037037, -0.007787219248712063, -0.030185189098119736, -0.014913845807313919, 0.0015640497440472245, 0.020952438935637474, 0.009232751093804836, -0.010390730574727058, 0.0029415793251246214, 0.002620997605845332, -0.013996788300573826, 0.0034525669179856777, 0.012154901400208473, 0.06124080717563629, 0.03447515517473221, 0.01925821229815483, -0.01641377992928028, 0.011851806193590164, -0.038298819214105606, 0.004499800503253937, -0.003742062021046877, -0.029610086232423782, -0.0037304044235497713, 0.008315693587064743, -0.0069090197794139385, 0.018418872728943825, 0.0027822600677609444, -0.015589982271194458, 0.011059095151722431, 0.0018846314633265138, -0.016864536330103874, -0.003619658062234521, 0.0014154164819046855, 0.005102105438709259, -0.002376189921051264, -0.01377918105572462, -0.004328823648393154, 0.021558629348874092, -0.00304066832177341, -0.0063339159823954105, -0.0032932476606220007, 0.00732091860845685, 0.014354285784065723, 0.03391559422016144, 0.003312676912173629, -0.027511732652783394, 0.013266250491142273, -0.0018749168375506997, 0.018216809257864952, 0.011502080596983433, 0.024993710219860077, -0.0035050257574766874, 0.0003511825925670564, -0.019304843619465828, -0.00997105985879898, -0.0013551859883591533, -0.017051057890057564, -0.0049466718919575214, -0.008152487687766552, 0.01653812639415264, -0.001966234063729644, -0.004647462163120508, -0.009636878035962582, -0.001863259356468916, 0.011509852483868599, -0.021403195336461067, -0.006365002598613501, 0.004056815057992935, 0.01708214357495308, 0.006011391524225473, -0.014999334700405598, -0.0061163087375462055, -0.004045157227665186, 0.014820585958659649, 0.006854617968201637, 0.014237710274755955, 0.014323199167847633, -0.0028483192436397076, 0.012792178429663181, 0.007250973489135504, -0.0005367313860915601, 0.00600750558078289, -0.006640897132456303, 0.015714328736066818, -0.023019704967737198, -0.011206756345927715, -0.012706690467894077, -0.022739924490451813, -0.022397970780730247, -0.03985315561294556, -0.023625895380973816, -0.0016019366448745131, 0.021620802581310272, -0.0014562177238985896, -0.015419005416333675, -0.005630579311400652, -0.0011239786399528384, -0.006947878282517195, -0.0069245630875229836, -0.006396089214831591, 0.0021236103493720293, 0.004760151728987694, 0.004868954885751009, -0.01596302166581154, 0.003998527303338051, -0.01622726023197174, 0.001576678710989654, 0.0034389665815979242, -0.00045440017129294574, -0.008820852264761925, 0.006143509875983, 0.0007281088619492948, -0.0008291406556963921, -0.005144849419593811, 0.014983790926635265, 0.007386977784335613, 0.0025024795904755592, -0.013172990642488003, -0.02283318340778351, -0.001592222135514021, 0.0035594275686889887, -0.010639424435794353, 0.02079700492322445, -0.010079863481223583, 0.005175936035811901, 0.004282193258404732, 0.009901114739477634, 0.011129040271043777, 0.019522450864315033, -0.0057549262419342995, 0.01365483459085226, 0.007600699085742235, 0.01708214357495308, -0.0242165420204401, 0.005960875656455755, 0.02081254869699478, -0.0026073972694575787, 0.0017690277891233563, -0.0035050257574766874, 0.02000429295003414, 0.02291090041399002, -0.016491496935486794, -0.007219886872917414, 0.016304975375533104, 0.0008670276147313416, 0.013942386955022812, 0.012582343071699142, -0.0004971444141119719, 0.0060852221213281155, 0.0118207186460495, 0.02029961720108986, 0.012038325890898705, 0.00955916102975607, -0.036309268325567245, 0.042619869112968445, 0.00830014981329441, -0.007876593619585037, -0.023361658677458763, 0.01043736096471548, -0.028584223240613937, -0.0014882759423926473, 0.019584624096751213, 0.013141904026269913, -0.0015193626750260592, -0.01900951936841011, -0.0002523366129025817, 0.01597856543958187, -0.0004901012871414423, 0.00038834093720652163, -0.010382958687841892, 0.0359051413834095, -0.014696239493787289, 0.0006586495437659323, -0.015947479754686356, 0.0038974955677986145, 0.00925606582313776, 0.021620802581310272, 0.011626427061855793, -0.003046497004106641, -0.012084956280887127, 0.01782822422683239, -0.005898701958358288, -0.0001916203909786418, -0.015885306522250175, 0.007363663055002689, -0.0016135942423716187, 0.007740589324384928, -0.01061610970646143, -0.008579930290579796, 0.00014584035670850426, -0.004076243843883276, -0.02061048522591591, -0.01086480263620615, 0.011214528232812881, 0.02061048522591591, 0.022335797548294067, 0.012885438278317451, -0.010958063416182995, -0.010996920987963676, -0.011494308710098267, 0.006539865396916866, 0.0007625956786796451, 0.013103045523166656, 0.004666891414672136, 0.01000214647501707, -0.017937028780579567, -0.012520169839262962, -0.0026248835492879152, 0.010429589077830315, 0.0033301631920039654, -0.0007169371237978339, -0.02735629864037037, 0.005642236676067114, 0.00027710883296094835, 0.008035913109779358, 0.0030542686581611633, -0.0008869424927979708], "0741252a-1649-4132-820d-aada866d9dff": [-0.015076427720487118, 0.003685475792735815, -0.007317731622606516, 0.0038014191668480635, -0.058207329362630844, -0.020558074116706848, 0.0472896546125412, 0.030532998964190483, -0.024694018065929413, 0.021303152665495872, -0.02933174930512905, -0.013304966501891613, 0.009465533308684826, 0.008241476491093636, 0.010172597132623196, 0.016513364389538765, -0.01742570474743843, 0.0329354964196682, 0.0034935041330754757, -0.025651976466178894, 0.0386224165558815, -0.014202102087438107, -0.05510536953806877, 0.011738781817257404, -0.013137704692780972, 0.015198073349893093, -0.006101277656853199, 0.0007341490709222853, -0.03284426033496857, -0.019584910944104195, 0.013533052057027817, -0.003839433193206787, 0.0184444859623909, -0.007386157289147377, 0.0015348229790106416, -0.02458757907152176, -0.019980259239673615, 0.010461505502462387, -0.027309395372867584, -0.010514724999666214, -0.004846809431910515, -0.004580710083246231, 0.010020541027188301, 0.0034840006846934557, -0.04625566676259041, 0.02270207554101944, 0.022124258801341057, 0.01695432886481285, -0.0031703836284577847, -0.028738727793097496, -0.001140425680205226, 0.018733393400907516, -0.005553873255848885, 0.018185988068580627, 0.009016966447234154, 0.01891586184501648, -0.00863682385534048, 0.045434560626745224, 0.019721761345863342, -0.0499962642788887, 0.016832683235406876, -0.03907858952879906, 0.02349277026951313, -0.01296283956617117, 0.029544629156589508, -0.02332550846040249, -0.01601157709956169, -0.009792455472052097, -0.06696579605340958, 0.023234274238348007, -0.01119137741625309, 0.000345691543770954, -0.002672397531569004, 0.04443098604679108, -0.01923518069088459, -5.087367753731087e-05, 0.06495864689350128, -0.004782185424119234, 0.0013428513193503022, 0.04242383688688278, -0.027339806780219078, -0.005496852099895477, 0.016847889870405197, 0.009982526302337646, 0.0586634986102581, 0.018109960481524467, -0.0017961704870685935, -0.030639437958598137, -0.04215013608336449, -0.04564743861556053, 0.004592114128172398, 0.004679546691477299, -0.009526356123387814, -0.015433761291205883, -0.01024862565100193, 0.017638584598898888, 0.08052926510572433, -0.002729418920353055, 0.013593874871730804, -0.05188176780939102, -0.01750173419713974, 0.01861174777150154, -0.05331110209226608, 0.02317345142364502, 0.022428372874855995, 0.0031076602172106504, 0.010180200450122356, -0.004398242104798555, -0.02334071323275566, 0.0023169650230556726, 0.010689590126276016, -0.027780771255493164, -0.0025621564127504826, 0.03698020428419113, -0.03098916821181774, -0.06021447852253914, -0.004227178171277046, -0.04318412020802498, 0.02426826022565365, -0.05054366961121559, 0.062404096126556396, 0.03792295604944229, 0.00404090853407979, -0.0010700994171202183, -0.01474190317094326, 0.0011081136763095856, 0.0186877753585577, -0.0033680573105812073, -0.008363122120499611, 0.002955603413283825, -0.004223376512527466, 0.006865363102406263, 0.005394213832914829, -0.009921703487634659, 0.012210157699882984, 0.029696686193346977, -0.008522781543433666, 0.03211439028382301, -0.023203862830996513, 0.06751320511102676, -0.0633772611618042, -0.025667181238532066, -0.0017087379237636924, 0.0021839153487235308, -0.0006467164494097233, 0.020938215777277946, -0.030365735292434692, 0.057416632771492004, -0.012955236248672009, 0.004067518282681704, -0.05863308906555176, -0.02901243045926094, 0.01068198774009943, -0.015471776016056538, 0.02633623220026493, -0.016528571024537086, 0.005474043544381857, 0.005207944195717573, 0.04427893087267876, -0.005371405277401209, -0.014650668948888779, -0.030000800266861916, 0.016254868358373642, 0.023507975041866302, 0.040082164108753204, 0.026229791343212128, 0.048354052007198334, 0.001568085397593677, -0.03752760961651802, 0.025287039577960968, 0.03856159374117851, -0.002066071378067136, 0.02955983579158783, -0.0020831776782870293, -0.009153816848993301, -0.008659632876515388, 0.00640158960595727, 0.015661846846342087, 0.009153816848993301, -0.062464918941259384, 0.01106973271816969, -0.017288854345679283, -0.0260017067193985, 0.02515018917620182, 0.007085845340043306, 0.03112601861357689, 0.02616896852850914, 0.016802271828055382, -0.0036968800704926252, 0.0063103558495640755, 0.034790586680173874, -0.025728004053235054, 0.01608760468661785, 0.0247548408806324, 0.009533959440886974, -0.02230672724545002, -0.0018997591687366366, -0.01883983239531517, -0.013259349390864372, 0.044887155294418335, -0.007291121874004602, -0.027704741805791855, -0.042454250156879425, 0.03190150856971741, -0.004804993513971567, 0.02255001850426197, -0.006527036428451538, -0.009936909191310406, 0.01170837040990591, -0.048293229192495346, 0.025956088677048683, -0.022960571572184563, 0.027689537033438683, -0.016057195141911507, 0.007720682304352522, -0.005504454951733351, -0.001957730855792761, 0.02831296995282173, 0.0014587945770472288, -0.005797164048999548, -0.01347983255982399, 0.017912287265062332, 0.01797311007976532, -0.03524675965309143, -0.033452488481998444, -0.03618951141834259, -0.0455562062561512, 0.012187349610030651, -0.041268207132816315, -0.028434615582227707, -0.007006015162914991, 0.0029365962836891413, 0.00026562417042441666, -0.025560742244124413, -0.03698020428419113, 0.0006557448068633676, 0.03682814911007881, -0.024694018065929413, 0.016102811321616173, -0.015950754284858704, 0.02522621676325798, 0.028434615582227707, -0.0023036599159240723, 0.0023169650230556726, 0.026199379935860634, 0.026032118126749992, -0.053949739784002304, 0.03430400416254997, 0.01418689638376236, 0.014278129674494267, 0.023538386449217796, -0.0005146171315573156, -0.008066611364483833, -0.021166302263736725, -0.0403558649122715, 0.019098330289125443, 0.006758923176676035, -0.005090100225061178, 0.0019102131482213736, -0.017608173191547394, 0.015889931470155716, -0.00354672409594059, -0.022610841318964958, -0.0028662700206041336, 0.05838979780673981, -0.006557447835803032, 0.020132316276431084, -0.027096515521407127, 0.018383663147687912, -0.002482326701283455, 0.016133222728967667, 0.021622471511363983, 0.026974869892001152, -0.00784612912684679, 0.033695779740810394, -0.009404710493981838, -0.016923917457461357, 0.009701221249997616, -0.00425758957862854, 0.038835298269987106, -0.013403804041445255, 0.0036626672372221947, -0.007237901911139488, 0.02726377733051777, 0.008408739231526852, -0.007853731513023376, -0.017836257815361023, 0.00477078091353178, -0.020710131153464317, -0.047015950083732605, -0.0048087951727211475, -6.777217640774325e-05, 0.027218161150813103, 0.02940777875483036, 0.03828789293766022, 0.041268207132816315, 0.019965052604675293, -0.012164541520178318, -0.01087205857038498, 0.026929253712296486, -0.014247719198465347, -0.03226644545793533, -0.02121191844344139, -0.030837111175060272, 0.015251293778419495, -0.042454250156879425, 0.034091126173734665, 0.00283775944262743, -0.0006134540308266878, 0.014855945482850075, 0.03792295604944229, -0.026974869892001152, 0.003839433193206787, -0.02017793245613575, 0.001860794611275196, -0.01328215841203928, 0.03609827533364296, -0.005413220729678869, 0.007808114867657423, -0.03886570781469345, 0.010621164925396442, -0.026047322899103165, -0.027948033064603806, 0.024222642183303833, -0.007876540534198284, -0.05507495999336243, 0.02647308260202408, 0.02443552203476429, -0.027400629594922066, -0.01450621522963047, -0.020634103566408157, -0.03783172369003296, -0.028100090101361275, -0.007465987000614405, -0.013609080575406551, -0.052216291427612305, -0.03399989381432533, -0.03798377886414528, -0.013244143687188625, -0.020983833819627762, -0.01741049997508526, 0.022838925942778587, 0.03652403503656387, -0.027491861954331398, -0.0026800003834068775, 0.010020541027188301, 0.002539347857236862, 0.035520460456609726, -0.028890784829854965, 0.01418689638376236, 0.0009337235824204981, -0.016756655648350716, 0.021105479449033737, -0.013016059063374996, 0.010423490777611732, -0.026838019490242004, -0.03269220516085625, -0.007568625267595053, 0.023523181676864624, 0.026366643607616425, -0.005664114374667406, 0.00021252308215480298, -0.023614415898919106, -0.008173051290214062, -0.027613507583737373, -0.01067438442260027, 0.007051632273942232, -0.024770047515630722, 0.022990982979536057, 0.005896001122891903, -0.03843994811177254, -0.005576681811362505, 0.0364023894071579, -0.022732486948370934, -0.019508883357048035, -0.01319852750748396, 0.05629141256213188, 0.011723576113581657, 0.017304059118032455, 0.019752172753214836, -0.006352171301841736, 0.0019026102963835, -0.021059861406683922, -0.040720801800489426, 0.004337419290095568, -0.00883449800312519, -0.0038641425780951977, -0.016589393839240074, -0.006709504872560501, 0.0002722766366787255, 0.005166128743439913, 0.016224456951022148, 0.00014944329450372607, -0.04561702907085419, -0.01867257058620453, 0.0067513203248381615, 0.007663660682737827, 0.011313023045659065, 0.01296283956617117, -0.015631435438990593, -0.022823719307780266, -0.018809420987963676, -0.007515405770391226, 0.0061126817017793655, 0.01727364771068096, -0.042119722813367844, -0.003674071514979005, -0.02183535136282444, -0.006002440582960844, 0.024222642183303833, -0.014825534075498581, 0.023979350924491882, 8.541313582099974e-05, -0.011830016039311886, 0.051608067005872726, -0.019736967980861664, -0.005234553944319487, 0.04659019410610199, -0.06769566982984543, -0.0006129788234829903, 0.010256228968501091, 0.017760230228304863, -0.024177026003599167, 0.029529424384236336, -0.019676145166158676, 0.028039267286658287, 0.018885450437664986, 0.020907804369926453, -0.03533799201250076, -0.011411859653890133, -0.013358186930418015, 0.015783492475748062, 0.0104006826877594, -0.007906951941549778, -0.01766899600625038, -0.025986500084400177, 0.012787973508238792, -0.034334417432546616, -0.008971349336206913, -0.01300085335969925, 0.004740369506180286, 0.044491808861494064, -0.03758843243122101, 0.009564370848238468, 0.00021062238374724984, -0.026108145713806152, -0.03336125239729881, 0.032905083149671555, 0.01110774651169777, -0.005390412174165249, 0.008363122120499611, -0.009754441678524017, -0.023188656195998192, 1.0015848602051847e-05, 0.0164677482098341, -0.01442258432507515, 0.03840953856706619, -0.016254868358373642, 0.017167208716273308, -0.022489195689558983, -0.011533505283296108, -0.014194498769938946, 0.04005175083875656, -0.015524995513260365, 0.031475748866796494, -0.035581283271312714, 0.01985861361026764, 0.0030240288469940424, -0.005896001122891903, -0.010324654169380665, 0.006253334227949381, -0.0033224401995539665, -0.01135103777050972, 0.020512457937002182, 0.0008439150406047702, 0.01616363413631916, -0.015372938476502895, 0.03257055953145027, 0.007990582846105099, -0.0038318303413689137, -0.018824627622961998, -0.05610894411802292, -0.033391665667295456, -0.00040366320172324777, 0.005310582462698221, 0.0006780781550332904, -0.018429279327392578, -0.002431007567793131, -0.01727364771068096, -0.009792455472052097, 0.032205622643232346, -0.0010805533966049552, 0.0011176172411069274, 0.026032118126749992, -0.000753156142309308, -0.052763696759939194, -0.03731473162770271, 0.003529617562890053, -0.02253481186926365, -0.03600704297423363, 0.008089419454336166, 0.0004675745440181345, 0.004242383874952793, -0.0010016739834100008, -0.01772981882095337, 0.003767206333577633, -0.023979350924491882, 0.0186877753585577, 0.03454729542136192, -0.01091007236391306, -0.03254014626145363, 0.0025925678201019764, -0.0029594048392027617, -0.007530611008405685, 0.009184228256344795, 0.03305714204907417, -0.01233940664678812, -0.019843406975269318, 0.023203862830996513, -0.01931120827794075, 0.008910526521503925, -0.0007370001403614879, -0.013624286279082298, 0.008880115114152431, -0.01332017220556736, -0.02373606152832508, -0.0171976201236248, -0.009898895397782326, 0.03138451650738716, 0.001993844285607338, 0.006485220976173878, 0.011016512289643288, -0.006196313071995974, 0.017121590673923492, 0.003212199080735445, -0.015631435438990593, -0.0009845675667747855, 0.02206343598663807, 0.013821959495544434, 0.02854105457663536, -0.015502187423408031, 0.07037187367677689, -0.024253053590655327, -0.0005516809178516269, -0.006891972851008177, 0.04360987991094589, -0.030791494995355606, 0.01163234282284975, 0.014962385408580303, 0.022367550060153008, -0.0308219064027071, 0.03184068575501442, 0.01048431359231472, -0.0008667235379107296, -0.0006557448068633676, -0.04814117029309273, 0.004451461602002382, 0.004938043188303709, -0.03746678680181503, -0.022580429911613464, 0.007675065193325281, 0.01525889616459608, 0.01569225825369358, -0.014947179704904556, -0.019721761345863342, 0.006705703213810921, -0.029453394934535027, -0.0020318585447967052, -0.036371976137161255, 0.00930587388575077, 0.029438190162181854, 0.00453509297221899, 0.03469935432076454, -0.001207900932058692, -0.0013989221770316362, 0.04640772566199303, -0.006975604221224785, 0.01782105304300785, -0.0050444831140339375, -0.0016583690885454416, 0.0043032062239944935, -0.007792909163981676, -0.023158244788646698, -0.014643066562712193, -0.0005364752723835409, -0.019098330289125443, -0.032905083149671555, -0.010567945428192616, -0.012704342603683472, 0.038500770926475525, -0.014209704473614693, 0.032357677817344666, 0.014992796815931797, 0.002811149461194873, -0.014384569600224495, 0.019250385463237762, -0.011411859653890133, -0.01001293770968914, 0.007070639636367559, 0.011419462971389294, -0.01693912409245968, 0.03907858952879906, 0.014726697467267513, -0.040872856974601746, -0.010263831354677677, 0.02505895495414734, -0.0013086384860798717, 0.012301391921937466, -0.007823320105671883, 0.000791645550634712, -0.0007583831320516765, -0.0009574824362061918, 0.015243690460920334, -0.003763404907658696, 0.04297124221920967, -0.010864456184208393, 0.018855039030313492, 0.034334417432546616, -0.0033395467326045036, -0.019372031092643738, 0.027446245774626732, -0.011601931415498257, 0.046620603650808334, 0.0036417595110833645, 0.010529930703341961, 0.010088966228067875, -0.0020831776782870293, -0.007944965735077858, -0.012993250042200089, 0.005641305819153786, 0.013723122887313366, -0.007785306312143803, 0.013685109093785286, -0.029027637094259262, 0.008165447972714901, -0.005899802315980196, 0.006796937435865402, 0.009366696700453758, -0.019341619685292244, -0.02373606152832508, -0.03035053052008152, 0.03066984936594963, 0.01545657031238079, 0.05109107121825218, -0.005496852099895477, 0.0009574824362061918, -0.02113589085638523, -0.01525889616459608, 0.04531291499733925, 0.006926185451447964, -0.023507975041866302, 0.014080456458032131, 0.018262017518281937, 0.019843406975269318, 0.005926412530243397, -0.04960091784596443, -0.001156581798568368, 0.011533505283296108, -0.02720295451581478, -0.003214099910110235, 0.02159206010401249, -0.009556767530739307, 0.004192965105175972, 0.002693305490538478, 0.020770953968167305, 0.007435575593262911, 0.01256749127060175, 0.009480739012360573, 0.00827949121594429, 0.016361307352781296, -0.009640398435294628, -0.04224136844277382, 0.01979779079556465, 0.02040601707994938, -0.004462866112589836, -0.022337138652801514, 0.009077788330614567, 0.008568398654460907, 0.019660940393805504, -0.006279944442212582, -0.011214186437427998, -0.015707463026046753, -0.029757509008049965, -0.004105532541871071, 0.03634156659245491, -0.019812995567917824, 0.008195859380066395, -0.006241930183023214, -0.03536840155720711, -0.00762944808229804, -0.02838899753987789, 0.012947633862495422, -0.00851517915725708, 0.022200288251042366, 0.008614015765488148, 0.0017724116332828999, -0.0012449647765606642, 0.0007764398469589651, 0.03719308599829674, -0.04586032032966614, -0.01827722229063511, -0.024922102689743042, 0.0012630214914679527, -0.024922102689743042, 0.00823387410491705, 0.02940777875483036, -0.017714612185955048, -0.025195805355906487, 0.014209704473614693, -0.006591660901904106, 0.006489022169262171, -0.0032198019325733185, -0.0137991514056921, 0.010567945428192616, 0.012407831847667694, 0.00875086709856987, 0.00874326378107071, 0.01908312365412712, -0.023857707157731056, 0.03506429120898247, -0.023903323337435722, 0.012210157699882984, -0.003217901336029172, -0.017121590673923492, -0.018566131591796875, -0.01252947747707367, -0.006565050687640905, -0.030076827853918076, 0.016802271828055382, 0.0041853622533380985, 0.027294188737869263, -0.006869164295494556, -0.014399775303900242, 0.006656284909695387, 0.010887264274060726, -0.014787520281970501, -0.006553646642714739, -0.020907804369926453, 0.031019579619169235, -0.00498746195808053, 0.035277169197797775, -0.0030449368059635162, -0.008644427172839642, -0.03682814911007881, 0.027476657181978226, 0.008287093602120876, 0.015889931470155716, -0.009054980240762234, 0.000732248357962817, 0.01545657031238079, 0.030168062075972557, -0.034486472606658936, 0.054193031042814255, 0.013266952708363533, 0.011921250261366367, -0.003643660107627511, -0.0067703272216022015, -0.013289760798215866, -0.001402723602950573, 0.03214479982852936, 0.0005474043427966535, 0.0038831497076898813, 0.005922610871493816, -0.028008855879306793, 0.007758696563541889, -0.004523688927292824, -0.011449874378740788, 0.032053567469120026, 0.025165393948554993, -0.00022511529095936567, 0.027370218187570572, -0.016923917457461357, -0.011373845860362053, 0.045921143144369125, -0.017091181129217148, -0.0056945257820189, -0.006823547184467316, 0.00659926375374198, -0.0015053619863465428, -0.02931654453277588, -0.023781677708029747, -0.029103664681315422, 0.0275983028113842, -0.020117109641432762, 0.003176085650920868, -0.039534758776426315, 0.06562770158052444, 0.010970895178616047, -0.012582696974277496, -0.013928399421274662, -0.007648455444723368, -0.007044029422104359, -0.01024862565100193, 0.03165821731090546, -0.007439377252012491, -0.028905991464853287, 0.016209250316023827, -0.03974763676524162, -0.014095662161707878, -0.036067865788936615, 0.04312329739332199, -0.04367070272564888, 0.03752760961651802, 0.020710131153464317, -0.008576001040637493, -0.02618417516350746, -0.0028700714465230703, -0.014612655155360699, 0.006884369999170303, 0.04193725436925888, -0.006215320434421301, -0.003976284526288509, -0.01575308106839657, 0.020603692159056664, -0.00423478102311492, 0.0018674471648409963, -0.005093901418149471, -0.021896174177527428, -0.001634610234759748, -0.00823387410491705, -0.020466839894652367, -0.007298724725842476, 0.04957050457596779, 0.0061925118789076805, -0.023507975041866302, 0.021424798294901848, 0.004322213586419821, 0.00949594471603632, 0.04199807718396187, 0.02159206010401249, -0.008408739231526852, -0.0017534045036882162, -0.015737874433398247, 0.0048087951727211475, 0.017562557011842728, 0.0346689410507679, -0.03549004718661308, -0.003214099910110235, -0.009914101101458073, 0.02435949444770813, -0.005101504269987345, -0.04619484394788742, -0.018003521487116814, 0.0048240008763968945, 0.004941844847053289, 0.006219121627509594, 0.024617990478873253, -0.00934388767927885, 0.04814117029309273, 0.03673691302537918, -0.00381472404114902, -0.015737874433398247, 0.002529844408854842, 0.02121191844344139, -0.036767326295375824, 0.009982526302337646, 0.016209250316023827, 0.0006448157364502549, -0.010263831354677677, 0.016589393839240074, 0.02200261317193508, 0.018885450437664986, -0.015274101868271828, 0.012681534513831139, -0.021257536485791206, 0.009891292080283165, 0.019356826320290565, 0.013875179924070835, 0.005937816575169563, -0.005648908670991659, 0.0033528516069054604, 0.022732486948370934, 0.024374699220061302, 0.030943552032113075, -0.009009363129734993, -0.025408685207366943, -0.028905991464853287, 0.016498159617185593, -0.026898842304944992, -0.006177306175231934, 0.011959264054894447, -0.0023682841565459967, -0.004094128496944904, 8.072076161624864e-05, -0.01001293770968914, 0.010978498496115208, 0.0013751633232459426, -0.016847889870405197, -0.004215773660689592, 0.004998866003006697, 0.007758696563541889, -0.011221788823604584, -0.019767379388213158, -0.03460811823606491, -0.008956143632531166, -0.010659178718924522, 0.012316597625613213, -0.027172543108463287, 0.0033243410289287567, -0.02426826022565365, 0.01276516541838646, -0.024724429473280907, -0.03847036138176918, 0.013358186930418015, 0.0015186669770628214, -0.052003413438797, 0.019524088129401207, 0.010621164925396442, -0.011883236467838287, 0.005857986863702536, -0.0023264684714376926, -0.015471776016056538, 0.010575547814369202, 0.022033024579286575, 0.03184068575501442, 0.0030544402543455362, 0.018824627622961998, -0.01300085335969925, -0.018505308777093887, -0.035429224371910095, -0.010028143413364887, 0.015266499482095242, 0.007051632273942232, -0.004968454595655203, 0.02963586337864399, -0.0070744408294558525, -0.009085391648113728, 0.003411773592233658, 0.0195544995367527, 0.0275983028113842, -0.01915915310382843, 0.0008244327618740499, 0.008477164432406425, -0.005097703076899052, 0.03454729542136192, 0.0036968800704926252, -0.010134583339095116, -0.019432853907346725, -0.0472896546125412, -0.01774502359330654, -0.027294188737869263, 0.01963052898645401, 0.010279037058353424, -0.019645733758807182, 0.019812995567917824, -0.010256228968501091, -0.016589393839240074, 0.028282558545470238, 0.006823547184467316, 0.00330913532525301, 0.03199274465441704, 0.029194898903369904, -0.0046225255355238914, -0.01285639964044094, -0.0008671987452544272, 0.029194898903369904, 0.003069645958021283, 0.012544683180749416, -0.009245051071047783, 0.008195859380066395, 0.0006671490264125168, -0.004717560950666666, -0.005310582462698221, 0.014711491763591766, -0.02300618775188923, -0.013738328590989113, -0.019889025017619133, 0.0009090143139474094, -0.021014245226979256, -0.012232966721057892, -0.017957903444767, -0.024161819368600845, 0.014734300784766674, 0.0016688229516148567, -0.007937363348901272, 0.018353251740336418, -0.03159739449620247, -0.014171690680086613, -0.008735661394894123, 0.01614842750132084, -0.01332777552306652, -0.026685962453484535, -0.006325561553239822, -0.014673477970063686, 0.00029793623252771795, 0.007990582846105099, -0.027081308886408806, 0.014369363896548748, -0.005603291559964418, -0.01725844293832779, -0.012521874159574509, -0.022519607096910477, -0.004337419290095568, -0.005405617877840996, 0.0032502133399248123, -0.022428372874855995, -0.01994984783232212, -0.016817478463053703, -0.027005281299352646, -0.0184444859623909, 0.002991716843098402, 0.011275009252130985, -0.017075974494218826, 0.08624659478664398, 0.009412313811480999, 0.04297124221920967, 0.016680626198649406, -0.02980312518775463, -0.011563916690647602, 0.004892426542937756, -0.02980312518775463, 0.001953929429873824, 0.02008669823408127, -0.006378781050443649, 0.023538386449217796, 0.01446820143610239, 0.011541108600795269, -0.01678706705570221, 0.0043868375942111015, 0.032053567469120026, 0.016893506050109863, -0.03837912902235985, -0.013502640649676323, 0.0035353198181837797, -0.01575308106839657, -0.007891746237874031, 0.013776342384517193, -0.013183321803808212, 0.028100090101361275, 0.006203915923833847, -0.028571465983986855, -0.0001260408025700599, 0.014392172917723656, -0.015395747497677803, 0.017380088567733765, -0.008895320817828178, -0.0009185178787447512, -0.05744704604148865, -0.0002232145779998973, 0.006063263397663832, 0.01059835683554411, 0.00024376600049436092, -0.011214186437427998, 0.016528571024537086, 0.000627234170679003, -0.02104465663433075, -0.017623379826545715, 0.004508483223617077, -0.019022300839424133, 0.02765912562608719, 0.02119671367108822, -0.011928853578865528, 0.011890838854014874, 0.0005207944195717573, -0.002465220168232918, 0.03427359461784363, -0.013244143687188625, 0.004960851743817329, -0.0037234900519251823, 0.04716800898313522, -0.012286186218261719, -0.004850610624998808, 0.053797684609889984, -0.0025830643717199564, 0.01119898073375225, -0.007929760031402111, -0.032357677817344666, 0.0006700000958517194, 0.0037558020558208227, -0.01135103777050972, 0.0017420003423467278, -0.0003354752261657268, -0.013631888665258884, 0.01323654130101204, 0.0018265818944200873, 0.027172543108463287, 0.0006262838141992688, 0.019432853907346725, 0.024329083040356636, -0.004170156549662352, -0.007241703569889069, 0.0034859012812376022, -0.023462358862161636, -0.020694926381111145, -0.013457023538649082, 0.008104625158011913, 0.029529424384236336, 0.008340313099324703, -0.005067291669547558, 0.014437790028750896, -0.026457875967025757, 0.006409192457795143, 0.002951801987364888, -0.00330913532525301, -0.021105479449033737, 0.0075800297781825066, -0.008287093602120876, 0.05762951448559761, 0.0050444831140339375, 0.0039458731189370155, -0.0034212772734463215, 0.008226270787417889, 0.006812143139541149, 0.01742570474743843, 0.04385317116975784, 0.01836845651268959, -0.019995464012026787, 0.012932428158819675, -0.00547784473747015, 0.013312569819390774, 0.029042841866612434, 0.011594328097999096, 0.012187349610030651, 0.02852584980428219, 0.002873872872442007, -0.0065308380872011185, -0.02279330976307392, -0.028556259348988533, -0.00541702238842845, -0.013806753791868687, -0.000868624250870198, 0.007051632273942232, -0.008112228475511074, 0.00023509400489274412, -0.0018836031667888165, -0.009290668182075024, 0.013624286279082298, 0.01914394646883011, 0.0006433901726268232, 0.03907858952879906, 0.021896174177527428, -0.0029422983061522245, 0.05194259062409401, -0.0034212772734463215, 0.0074127670377492905, -0.023523181676864624, -0.008446753025054932, 0.007146667689085007, -0.004379234742373228, -0.010476711206138134, -0.0089789517223835, 0.0008092271164059639, -0.012597902677953243, 0.0017049364978447556, -0.0003221702645532787, -0.004249986726790667, -0.02924051508307457, -0.01119137741625309, -0.025575947016477585, -0.01766899600625038, -0.00827188789844513, -0.014589846134185791, -0.00500646885484457, 0.007853731513023376, -0.013335377909243107, -0.01068198774009943, -0.017942698672413826, 0.004497078713029623, 0.011487888172268867, -0.022960571572184563, -0.028419408947229385, -0.014734300784766674, 0.012605505995452404, -0.00597202917560935, -0.015601024031639099, 0.005915008019655943, 0.022169876843690872, -0.010355065576732159, 0.002714213216677308, 0.0034763978328555822, 0.004736568313091993, -0.026609933003783226, 0.015859520062804222, 0.02396414615213871, -0.01474190317094326, 0.007735888008028269, -0.02869311161339283, 0.015266499482095242, 0.009351490996778011, 0.00863682385534048, 0.009914101101458073, -0.012651123106479645, -0.0027313195168972015, -0.0056679160334169865, -0.007013618014752865, 0.008378327824175358, -0.027172543108463287, -0.002636284101754427, -0.011837619356811047, 0.0015842413995414972, 0.01280317921191454, -0.020938215777277946, -0.017440911382436752, -0.011982073076069355, -0.003001220291480422, 0.009184228256344795, -0.008051405660808086, -0.011921250261366367, -0.009214639663696289, 0.025439096614718437, -0.008614015765488148, 0.014627860859036446, -0.0034421849995851517, -0.02852584980428219, 0.0049266391433775425, -0.01446820143610239, -0.009100597351789474, 0.0039458731189370155, 0.0025735606905072927, 0.010811235755681992, 0.014772314578294754, 0.01614842750132084, -0.003278723917901516, 0.028571465983986855, 0.0043032062239944935, 0.024937309324741364, -0.004573107231408358, -0.0195544995367527, 0.014878754504024982, -0.005523461848497391, 0.017790641635656357, -0.01741049997508526, -0.006352171301841736, 0.013783945702016354, 0.019676145166158676, -0.0024329081643372774, -0.0013428513193503022, -0.0219113789498806, 0.028814757242798805, 0.02025396004319191, 0.011966867372393608, 0.019843406975269318, -0.013844768516719341, 0.028556259348988533, 0.012438243255019188, -0.03603745251893997, -0.023279890418052673, 0.03184068575501442, -0.005283972714096308, -0.005078695714473724, 0.009982526302337646, -0.01158672571182251, 0.011601931415498257, -0.024389903992414474, 0.03199274465441704, 0.003413674421608448, -0.003923064563423395, -0.007876540534198284, 0.008659632876515388, -8.535373490303755e-05, -0.002107886830344796, -0.010423490777611732, -0.015319718979299068, -0.0015205676900222898, -0.009952114894986153, -0.00036279793130233884, -0.018900655210018158, 0.029681479558348656, -0.016923917457461357, -0.008066611364483833, -0.02867790497839451, 0.005496852099895477, 0.010932881385087967, 0.0006547944503836334, -0.07414288073778152, -0.008340313099324703, 0.028404204174876213, 0.0011081136763095856, 0.024861281737685204, 0.011921250261366367, -0.0033072344958782196, 0.006234327331185341, -0.0007745391339994967, 0.008545590564608574, -0.017167208716273308, 0.031719040125608444, -0.009054980240762234, -0.017167208716273308, -0.024177026003599167, -0.013571065850555897, 0.012727150693535805, 0.021896174177527428, 0.017775435000658035, -0.024846075102686882, -0.02168329432606697, 0.013958810828626156, 0.00642439816147089, 0.0033528516069054604, -0.020755747333168983, -0.021713705733418465, 0.019508883357048035, 0.009131008759140968, 0.013571065850555897, -0.00992930680513382, 0.00811983086168766, -0.006135490257292986, 0.012628314085304737, 0.008287093602120876, 0.026290614157915115, 0.0037558020558208227, -0.043062474578619, 0.025591153651475906, -0.030244089663028717, 0.003972482867538929, 0.014924371615052223, -0.0021839153487235308, -0.020451635122299194, -0.026990074664354324, 0.0005493050557561219, -0.0216680895537138, 0.00021525534975808114, 0.0017553052166476846, 0.002718014642596245, -0.020542869344353676, -0.016923917457461357, 0.019904229789972305, 0.0011299718171358109, -0.007325334474444389, 0.010104171931743622, 0.0030905536841601133, -0.009952114894986153, -0.02499813213944435, -0.007203689310699701, -0.007678866386413574, 0.0184444859623909, 0.007063036784529686, 0.007929760031402111, -0.00040793977677822113, 0.006884369999170303, 0.019417649134993553, -0.009374299086630344, 0.018155576661229134, -0.01469628605991602, -0.011487888172268867, 0.006070866249501705, 0.0031532770954072475, 0.006580256391316652, -0.0009341987315565348, -0.00307344738394022, -0.04929680377244949, -0.004132142756134272, -0.029134076088666916, -0.0002504184958525002, -0.006675291806459427, -0.008583604358136654, -0.009214639663696289, 0.012795576825737953, 0.0015310215530917048, 0.014110867865383625, -0.006306554190814495, -0.009450327605009079, -0.015395747497677803, 0.04069038853049278, -0.021500825881958008, 0.006051859352737665, -0.011510697193443775, -0.008895320817828178, 0.01725844293832779, 0.003229305613785982, 0.020558074116706848, -0.009229845367372036, -0.02594088390469551, 0.018550924956798553, -0.012932428158819675, -0.0028187523130327463, -0.007021220866590738, -0.011252200230956078, -0.038500770926475525, 0.03789254650473595, -0.03682814911007881, 0.029757509008049965, -0.0008097022655420005, 0.004774582572281361, 0.0010311349760740995, -0.005835178308188915, 0.02136397548019886, -0.004409646149724722, 0.020132316276431084, 0.0052307527512311935, -0.0032711210660636425, -0.011373845860362053, 0.006253334227949381, -0.0003321490075904876, 0.008477164432406425, 0.053797684609889984, 0.00831750500947237, -0.025119777768850327, 0.01163234282284975, -0.005120511632412672, 0.025804033502936363, -0.005534866359084845, -0.0027351209428161383, 0.009321079589426517, 0.0010292342631146312, 0.03333084285259247, -0.04288000613451004, -0.052064236253499985, -0.005576681811362505, 0.014962385408580303, -0.009381902404129505, 0.04215013608336449, 0.02074054256081581, 0.01663501001894474, 0.024557167664170265, 0.01502320822328329, 0.00950354803353548, -0.0386224165558815, -0.009328682906925678, -0.006222923286259174, -0.044096462428569794, 0.0071732779033482075, -0.015464172698557377, -0.009632796049118042, 0.006485220976173878, 0.0015300711384043097, 0.005177532788366079, -0.009115803055465221, -0.0046225255355238914, 0.02537827380001545, -0.02182014472782612, -0.0057705543003976345, -0.02545430138707161, 0.003991490229964256, 0.0037900148890912533, 0.011480285786092281, 0.019189564511179924, -0.015380541794002056, -0.009473136626183987, 0.004143546801060438, 0.02405538037419319, -0.001043489552102983, -0.008378327824175358, -0.0071770790964365005, -0.011997278779745102, 0.028236940503120422, -0.03853118419647217, -0.012940030544996262, 0.012134130112826824, -0.010780824348330498, -0.008583604358136654, 0.0425758920609951, -0.0027313195168972015, 0.022276315838098526, 0.0025469507090747356, 0.037253908812999725, 0.0010149788577109575, -0.014901562593877316, -0.026366643607616425, -0.012864002026617527, 0.01829242892563343, -0.022352343425154686, -0.02159206010401249, 0.010780824348330498, 0.013700314797461033, 0.024937309324741364, -0.010758016258478165, 0.02498292550444603, -0.026290614157915115, 0.010575547814369202, -0.001495858421549201, -0.02026916667819023, 0.016847889870405197, 0.009815264493227005, -0.001773362047970295, -0.005987234879285097, 0.022656457498669624, -0.003670270089060068, -0.012780371122062206, 0.02279330976307392, -0.013571065850555897, -0.0059074051678180695, 0.03269220516085625, -0.02656431682407856, 0.011168569326400757, -0.007686469238251448, -0.0019244684372097254, -0.01985861361026764, -0.042758360505104065, -0.035277169197797775, 0.005527263507246971, -0.008583604358136654, -0.020938215777277946, -0.01727364771068096, 0.014019633643329144, -0.021774528548121452, 0.020923011004924774, 0.03229685500264168, 0.0013628087472170591, -0.01946326531469822, 0.02498292550444603, -0.01655898243188858, 8.963033178588375e-05, 0.027218161150813103, -0.009670809842646122, 0.0003896454581990838, -0.002491830149665475, -0.004462866112589836, -0.0012658725026994944, -0.026974869892001152, -0.005093901418149471, 0.005082497373223305, 0.009351490996778011, 0.002240936504676938, 0.006462412420660257, -0.008606412447988987, -0.003541021840646863, -0.019493676722049713, -0.03272261470556259, -0.01142706535756588, -0.019280796870589256, 0.013289760798215866, 0.024465933442115784, -0.028951607644557953, 0.00644720671698451, 0.020512457937002182, -0.0026590926572680473, 0.024389903992414474, 0.033543720841407776, -0.010104171931743622, -0.011122952215373516, 0.021713705733418465, 0.018794216215610504, 0.012544683180749416, -0.014392172917723656, -0.002440511016175151, 0.013654697686433792, 0.016178838908672333, -0.002334071323275566, 0.03018326684832573, 0.0038679440040141344, -0.02017793245613575, 0.046468548476696014, -0.01285639964044094, -0.003991490229964256, 0.0021554045379161835, 0.01985861361026764, 0.014992796815931797, 0.0017591066425666213, -0.013647094368934631, -0.027963239699602127, -0.01640692539513111, -0.008918128907680511, -0.00427659647539258, 0.0032882275991141796, 0.011693164706230164, 0.013540654443204403, -0.017167208716273308, -0.01229378953576088, 0.006492823828011751, 0.013578669168055058, 0.0028092486318200827, 0.014567038044333458, -0.01143466867506504, 0.0089789517223835, -0.007044029422104359, -0.019919436424970627, 0.007542015518993139, -0.0012725250562652946, -0.010529930703341961, -0.0004357376601547003, -0.0260017067193985, -0.0014654470141977072, 0.019919436424970627, 0.00640539126470685, -0.003295830450952053, -0.02601691149175167, 0.006470015272498131, -0.006466214079409838, 0.0018332343315705657, 0.01540334988385439, 0.018733393400907516, 0.022732486948370934, 0.0021325962152332067, -0.006907178554683924, 0.0005797164048999548, -0.01252947747707367, -0.014567038044333458, 0.0031076602172106504, 0.006861561443656683, -0.012438243255019188, -0.01536533609032631, -0.0052649653516709805, 0.05981913208961487, -0.010271434672176838, -0.007435575593262911, -0.0052307527512311935, 0.009039774537086487, -0.02245878428220749, -0.014582243748009205, -0.0077168806456029415, 0.015570612624287605, -0.003223603358492255, -9.283778490498662e-05, -0.023857707157731056, 0.0040827239863574505, -0.0014131775824353099, -0.028571465983986855, 0.003001220291480422, 0.001140425680205226, 0.03451688587665558, 0.02175932377576828, 0.011183775030076504, -0.008051405660808086, -0.01167035661637783, -0.006021447945386171, 0.014209704473614693, -3.8726957427570596e-05, 0.02601691149175167, 0.01593554951250553, -0.016209250316023827, 0.005622298922389746, 0.02112068422138691, -0.020634103566408157, -0.015182867646217346, 0.009518753737211227, -0.022093847393989563, -0.000992170418612659, 0.003434582147747278, -0.004002894274890423, 0.022899748757481575, -0.014597449451684952, 0.008211065083742142, -0.010887264274060726, -0.018809420987963676, 0.03430400416254997, 0.008948540315032005, -0.02072533778846264, -0.003520114114508033, -0.01430854108184576, 0.004067518282681704, -0.010050952434539795, -0.013928399421274662, 0.016422130167484283, -0.010461505502462387, 0.009374299086630344, 0.018262017518281937, 0.02279330976307392, -0.0027750360313802958, 0.00875086709856987, -0.009100597351789474, 0.0001372074766550213, 0.0066524832509458065, -0.0025640572421252728, -0.012027690187096596, -0.008165447972714901, -0.012605505995452404, -0.01836845651268959, -0.03500346839427948, -0.012248172424733639, -0.02435949444770813, -0.0002004060661420226, 0.008218668401241302, -0.017440911382436752, 0.008226270787417889, 0.009921703487634659, -0.020162727683782578, -0.0026457877829670906, 0.02206343598663807, 0.015084031037986279, 0.020117109641432762, 0.04269753769040108, -0.0033167381770908833, -0.006219121627509594, -0.005987234879285097, -0.0032464119140058756, 0.0016175038181245327, -0.004854412283748388, -0.004881022032350302, 0.015471776016056538, -0.023690443485975266, -0.004831603728234768, -0.02057328075170517, -0.010628768242895603, 0.007013618014752865, 0.012970441952347755, 0.00521934824064374, -0.012035292573273182, 0.01908312365412712, 0.0028453622944653034, -0.0005659362650476396, -0.004006695933640003, -0.014643066562712193, 0.025834444910287857, 0.011556314304471016, -0.008545590564608574, 0.019493676722049713, 0.01734967716038227, 0.0016621705144643784, 0.01782105304300785, -0.00016761882579885423, -0.00029793623252771795, 0.0067171077243983746, 0.014795122668147087, -0.0018474897369742393, -0.00043645044206641614, -0.004576908424496651, -0.026275409385561943, -0.013457023538649082, 0.003136170795187354, 0.0020793762523680925, -0.03162780776619911, -0.018824627622961998, -0.02806967869400978, 0.002915688557550311, -0.013411406427621841, -0.016224456951022148, -0.007017419673502445, -0.010712399147450924, -0.01142706535756588, -0.008735661394894123, -0.024298671633005142, -0.003501106984913349, 0.017456116154789925, 0.0055500720627605915, 0.005576681811362505, -0.006105078849941492, 0.02892119623720646, -0.001963432878255844, -0.015502187423408031, -0.0025469507090747356, 0.014726697467267513, -0.0024595181457698345, 0.027157338336110115, 0.021896174177527428, 0.0008681491017341614, 0.008005788549780846, 0.0002451915352139622, -0.0005801916122436523, -0.007549618370831013, -0.034091126173734665, 0.008902923204004765, 0.00830990169197321, 0.017562557011842728, -0.027765564620494843, -0.0027788374572992325, -0.02247398905456066, -0.009746838361024857, -0.011168569326400757, -0.025804033502936363, 0.024800458922982216, -0.0019710357300937176, -0.0028415608685463667, 0.008477164432406425, 0.015296910889446735, -0.01734967716038227, -0.0016726243775337934, -0.0027769366279244423, 0.032053567469120026, 0.003934468608349562, 0.02207864262163639, 0.008902923204004765, -0.005740142893046141, -0.0061887102201581, 0.015426158905029297, 0.014475803822278976, -0.017121590673923492, -0.01640692539513111, -0.009876086376607418, -0.005257362499833107, -0.002503234427422285, -0.016102811321616173, 0.018931066617369652, -0.0031551779247820377, -0.007332937326282263, 0.02034519426524639, 0.014293335378170013, -0.004698554053902626, -0.017243236303329468, -0.0026438869535923004, -0.008051405660808086, -0.006470015272498131, 0.0006505178171209991, 0.00907018594443798, 0.03272261470556259, 0.005382809322327375, -0.010552739724516869, -0.009351490996778011, 0.0024062981829047203, 0.015616229735314846, -0.002493730979040265, 0.023918528109788895, 0.005531064700335264, 0.013700314797461033, 0.0006609717383980751, 0.004839206580072641, 0.02586485631763935, 0.002545050112530589, -0.009526356123387814, -0.010758016258478165, -0.023310301825404167, -0.008439150638878345, -0.017608173191547394, -0.010666782036423683, -0.02026916667819023, 0.012301391921937466, 0.008842100389301777, -0.012879207730293274, 0.005975830834358931, 0.02332550846040249, -0.005185135640203953, 0.007325334474444389, -0.0029118871316313744, 0.0031931919511407614, 0.0033338444773107767, -0.006990809924900532, -0.00973923597484827, -0.021470414474606514, 0.004801192320883274, 0.0074127670377492905, 0.00046828732592985034, 0.028632288798689842, -0.0033376459032297134, 0.007146667689085007, -0.015266499482095242, -0.023933734744787216, 0.017714612185955048, 0.012704342603683472, 0.035520460456609726, 0.021090272814035416, -0.006032851990312338, 0.027522273361682892, -0.0005792412557639182, -0.010263831354677677, 0.01734967716038227, -0.016589393839240074, -0.012027690187096596, -0.006846355739980936, -0.01119898073375225, 0.011685562320053577, -0.0299551822245121, -0.010704795829951763, -2.9327355150599033e-05, -0.010993704199790955, -0.004778383765369654, -0.00547784473747015, 0.009229845367372036, 0.012544683180749416, 0.004440057557076216, -0.021333564072847366, -0.005344795063138008, 0.009564370848238468, -0.01407285314053297, 0.007313930429518223, 0.0021668088156729937, -0.010507122613489628, -0.018079549074172974, 0.007914554327726364, 0.021257536485791206, -0.025804033502936363, 0.013936002738773823, 0.0008581703878007829, 0.014278129674494267, 0.0033528516069054604, -0.016665421426296234, -0.004740369506180286, 0.010415888391435146, 0.0007222696440294385, -0.003949674312025309, 0.021956996992230415, -0.010628768242895603, -0.009815264493227005, -0.0017020853701978922, -0.002949901157990098, 0.00308295083232224, 0.017623379826545715, -0.018885450437664986, -0.01774502359330654, -0.007363348733633757, 0.02483087033033371, 0.0007308227941393852, 0.0002965106978081167, 0.01859654299914837, -0.005074894521385431, -0.010575547814369202, -0.014103264547884464, -0.003350951010361314, -0.005561476107686758, 0.014969988726079464, -0.0012867803452536464, -0.008864909410476685, 0.014947179704904556, 0.004432454705238342, 0.0016003974014893174, 0.020056286826729774, -0.0018180286278948188, -0.01599637232720852, 0.016041988506913185, 0.03752760961651802, 0.0073785544373095036, -0.0041815610602498055, -0.024633195251226425, 0.01931120827794075, 0.0038926531560719013, -0.0004606844740919769, -0.009100597351789474, -0.0052497596479952335, -0.0014663974288851023, -0.001572837121784687, -0.00027156388387084007, 0.018824627622961998, -0.020755747333168983, -0.002871972043067217, -0.007861334830522537, 0.004424851853400469, 0.012825988233089447, 0.012643519788980484, 0.006606866605579853, -0.0017999719129875302, -0.005607093218713999, 0.015334924682974815, 0.007523008156567812, -0.0090321721509099, -0.0137991514056921, -0.008264285512268543, -0.022671664133667946, -0.014338952489197254, -0.009146214462816715, 0.021379180252552032, 0.019204769283533096, 0.002560255816206336, -0.00016975712787825614, 0.002246638759970665, -0.010666782036423683, -0.004242383874952793, -0.001967234304174781, 0.004322213586419821, 0.006591660901904106, 0.014536626636981964, -0.0033224401995539665, -0.01900709606707096, 0.022732486948370934, 0.0038014191668480635, -0.02539348043501377, 0.019296003505587578, 0.01742570474743843, 0.013958810828626156, -0.005314384121447802, -0.008294696919620037, 0.01170837040990591, 0.02522621676325798, 0.00614689476788044, 0.0035391212441027164, -0.018307633697986603, 0.0008059008396230638, -0.010978498496115208, -0.011647548526525497, 0.0003285851562395692, 0.005302979610860348, -0.005337192211300135, 0.01614842750132084, -0.048049937933683395, 0.0019463265780359507, -0.009526356123387814, -0.022124258801341057, 0.009898895397782326, 0.0025735606905072927, -0.0085988100618124, 0.002488028723746538, -0.006006242241710424, -0.008135036565363407, -0.023143040016293526, -0.0022428373340517282, 0.030852317810058594, 0.0071732779033482075, 0.008218668401241302, -0.024891693145036697, 0.019265592098236084, 0.012704342603683472, 0.025651976466178894, 0.021242329850792885, 0.0208013653755188, -0.023143040016293526, -0.00379381631501019, 0.005766752641648054, 0.005778157152235508, 0.007207490503787994, -0.005622298922389746, 0.0003974858846049756, -0.021485621109604836, 0.006819745991379023, -0.01209611538797617, -0.0012468654895201325, 0.0032578161917626858, -0.005379008129239082, 0.006131689064204693, 0.010225817561149597, 0.028905991464853287, -0.04558661952614784, 0.013099689967930317, -0.002235234482213855, 0.019676145166158676, 0.0019520287169143558, -0.007967774756252766, 0.0008638724684715271, -0.011138157919049263, 0.004211972467601299, 0.016437336802482605, -0.009868483990430832, 0.0016716740792617202, 0.011503093875944614, 0.02916448749601841, -0.005622298922389746, 0.01748652756214142, 0.0016517166513949633, 0.018900655210018158, 0.00788414292037487, -0.0030411353800445795, -0.012430640868842602, 0.01209611538797617, -0.0014625960029661655, -0.00214780168607831, 0.0012497165007516742, -0.014399775303900242, -0.012461051344871521, 0.0017448513535782695, 0.019508883357048035, -0.024770047515630722, -0.0019339720020070672, 0.014924371615052223, -0.0073975613340735435, 0.0054664406925439835, 0.001285830046981573, -0.015205676667392254, -0.001140425680205226, 0.0024348089937120676, 0.007424171548336744, 0.026275409385561943, -0.02151603251695633, 0.011738781817257404, 0.014574640430510044, -0.0015851918142288923, -0.008819292299449444, 0.0004072270239703357, 0.024298671633005142, 0.0014350357232615352, -0.0042005679570138454, -0.0032977310474961996, -0.011883236467838287, 0.0042994050309062, -0.010925278067588806, 0.01861174777150154, -0.04716800898313522, 0.008302299305796623, 0.004816398024559021, 0.0013713618973270059, -0.001428383169695735, -0.015905138105154037, -0.004675745498389006, -0.00403710687533021, 0.017836257815361023, -0.004660539794713259, 0.004497078713029623, -0.011313023045659065, 0.016224456951022148, 0.010111775249242783, -0.0027636317536234856, 0.009085391648113728, 0.01592034287750721, 0.0004956100019626319, 0.020618896931409836, -0.0025355464313179255, -0.014133675955235958, 0.001865546451881528, 0.0067551215179264545, -0.002554553560912609, -0.008614015765488148, 0.02916448749601841, 0.007002213969826698, -0.005534866359084845, -0.001659319386817515, 0.031019579619169235, -0.0018693478778004646, 0.006454809568822384, -0.0036208517849445343, -0.005861788056790829, -0.018459690734744072, 0.019098330289125443, -0.0058883982710540295, 0.019736967980861664, -0.008423944935202599, -0.0006638228078372777, 0.007960171438753605, 0.019660940393805504, -0.003438383573666215, 0.004173958208411932, -0.011959264054894447, 0.016999946907162666, -0.021409591659903526, -0.011875633150339127, -0.0019064117223024368, 0.014924371615052223, -0.007701674941927195, 0.0036968800704926252, -0.0077168806456029415, -0.008089419454336166, 0.023599209263920784, 0.005082497373223305, 0.014354158192873001, -0.001984340837225318, 0.007557221222668886, 0.0023302698973566294, 0.009092994034290314, 0.008819292299449444, -0.015046016313135624, 0.007891746237874031, -0.015068825334310532, -0.0009779150132089853, 0.0018189790425822139, 0.0027769366279244423, -0.004208170808851719, 0.009465533308684826, -0.012742356397211552, -0.012468654662370682, -0.0024196032900363207, -0.002575461519882083, 0.001967234304174781, 0.007952569052577019, 0.0019311208743602037, 0.010119377635419369, -0.002928993431851268, 0.04391399398446083, 0.0005521561251953244, 0.020923011004924774, -0.0009394257212989032, -0.013206129893660545, -0.004478071816265583, -0.008241476491093636, -0.026366643607616425, 0.01214173249900341, 0.0056717172265052795, -0.001963432878255844, -0.012499066069722176, -0.017790641635656357, 0.0034155750181525946, 0.021014245226979256, 0.00910819973796606, 0.027218161150813103, -0.015722669661045074, 0.005321986507624388, -0.012673931196331978, -0.001953929429873824, 0.01068198774009943, 0.014635463245213032, 0.0027313195168972015, -0.012681534513831139, -0.007146667689085007, -0.02160726673901081, -0.005591887515038252, 0.037862133234739304, 0.004664341453462839, -0.011830016039311886, 0.011122952215373516, 0.010301846079528332, 0.0055500720627605915, -0.006260937079787254, 0.006489022169262171, 0.004132142756134272, -0.027856798842549324, -0.04446139931678772, 0.001351404469460249, 0.0067513203248381615, -0.007108653895556927, -0.0008619717555120587, -0.0316886305809021, 0.010453902184963226, 0.003453589277341962, -0.012673931196331978, 0.009708824567496777, -0.0037177877966314554, -0.0007621844997629523, 0.017790641635656357, -0.013160512782633305, 0.0413290299475193, -0.003381362184882164, -0.009648001752793789, -0.00638258270919323, 0.024313876405358315, 0.010073760524392128, -0.010826441459357738, 0.004189163912087679, -0.011647548526525497, -0.020755747333168983, -2.2645172066404484e-05, 0.019250385463237762, -0.005462639033794403, -0.010233419947326183, -0.005728738382458687, 0.0024956315755844116, -0.02081657014787197, -0.008097022771835327, -0.00027892913203686476, 0.010628768242895603, 0.0027332203462719917, -0.025515124201774597, 0.007682668045163155, -0.008895320817828178, 0.016741449013352394, -0.001978638581931591, 0.013312569819390774, -0.018383663147687912, 0.019889025017619133, 0.009609987027943134, -0.00827949121594429, -0.013829562813043594, -0.007051632273942232, 0.010613562539219856, -0.018307633697986603, 0.005253561306744814, -0.007637050934135914, 0.004238582216203213, 0.0343952402472496, -0.004455263260751963, -0.004736568313091993, 0.012818384915590286, -0.010088966228067875, -0.02087739296257496, 0.00142933358438313, -0.02404017373919487, -0.0236448273062706, -0.012506668455898762, 0.004132142756134272, -0.013913193717598915, 0.005774355493485928, -0.004447660408914089, -0.005774355493485928, 0.0006595462327823043, 0.011008909903466702, 0.00758763263002038, 0.00029365962836891413, 4.25877733505331e-05, 0.00329963187687099, 0.02294536493718624, -0.023994557559490204, 0.01640692539513111, -0.006226724479347467, 0.008499973453581333, 0.00811983086168766, -0.006690497510135174, -0.00803619995713234, -0.023842500522732735, 0.025591153651475906, -0.01139665488153696, -0.02104465663433075, -0.018490102142095566, 0.009085391648113728, 0.01313010137528181, -0.003983887378126383, -0.0019900428596884012, 0.016270073130726814, 0.005998639389872551, -0.003763404907658696, -0.02019313909113407, -0.013419009745121002, 0.0024538161233067513, -0.004113135393708944, 0.027704741805791855, 0.012993250042200089, -0.0017971209017559886, 0.0009194682352244854, -0.008393533527851105, 0.004116937052458525, -0.012947633862495422, -0.013464626856148243, 0.011442271061241627, 0.006948994006961584, -0.00025493267457932234, -1.3275268429424614e-05, 0.019189564511179924, 0.007249306421726942, -0.004675745498389006, -0.018398867920041084, 0.005295376759022474, -0.0199346411973238, -0.004413447342813015, -0.009754441678524017, -0.02434428781270981, 0.008735661394894123, 0.004310809075832367, 0.0036170503590255976, -0.02279330976307392, -0.04038627818226814, -0.014414981007575989, -0.0027427237946540117, -0.004128341097384691, 0.021029449999332428, 0.0008781278156675398, 0.006348370108753443, -0.019843406975269318, 0.0012877307599410415, -0.007975377142429352, -0.012430640868842602, 0.0007303476450033486, 0.021318357437849045, -0.008294696919620037, 0.014909165911376476, 0.0008496171794831753, 0.004192965105175972, -0.017471322789788246, 0.0006125036743469536, -0.005398015026003122, -0.015418555587530136, -0.004447660408914089, -0.0026495892088860273, 0.01493197400122881, 0.0060898736119270325, -0.004557901527732611, -0.01210371870547533, 0.0010472909780219197, -0.0068729654885828495, 0.020831776782870293, -0.0006685745902359486, 0.0049456460401415825, 0.01162473950535059, 0.009245051071047783, -0.007401362992823124, 0.0113890515640378, -0.0050292774103581905, -0.0014730498660355806, 0.0027161140460520983, -0.01766899600625038, 0.013821959495544434, 0.0058921994641423225, -0.011290214955806732, -0.027552684769034386, -0.0001866259117377922, 0.0008415391785092652, 0.0017087379237636924, -0.016376513987779617, -0.004143546801060438, 0.0038413340225815773, -0.021227125078439713, 0.008203462697565556, 0.009959718212485313, -0.003930667415261269, 0.029286133125424385, -0.02688363566994667, 0.0033737593330442905, 0.010552739724516869, 0.02790241688489914, 0.0011850923765450716, 0.00044405326480045915, 0.00522314989939332, 0.03798377886414528, 0.010294242762029171, -0.014802725985646248, 0.01427052728831768, -0.009465533308684826, -0.008537987247109413, -0.004238582216203213, -0.00500646885484457, 0.007161873392760754, 0.02782638743519783, 0.00455409986898303, 0.013867576606571674, -0.02925572171807289, -0.026609933003783226, -0.01403483934700489, -0.02560635842382908, -0.009800058789551258, 0.010020541027188301, 0.010583151131868362, 0.010507122613489628, 0.004154950845986605, -0.014795122668147087, -0.010651576332747936, 0.010575547814369202, -0.016452541574835777, 0.01765378937125206, 0.004531291779130697, 0.010712399147450924, -0.0010976598132401705, -0.00597202917560935, 0.021181507036089897, -0.007450781296938658, -0.012727150693535805, 0.010811235755681992, 0.029134076088666916, 0.0060936748050153255, 0.001110014389269054, -0.024633195251226425, -0.019676145166158676, -0.013031264767050743, 0.005131915677338839, 0.00013910817506257445, 0.0038508374709635973, -0.006105078849941492, 0.0002451915352139622, 0.004135943949222565, -0.019372031092643738, 0.009906497783958912, 0.020451635122299194, 0.001135673956014216, 0.01493957731872797, 0.011160966008901596, -0.012248172424733639, -0.010735207237303257, 0.0014454895863309503, -0.005827575456351042, 0.0018208797555416822, -0.003613248933106661, -0.006203915923833847, 0.0008591206860728562, -0.014711491763591766, 0.011031717993319035, 0.02213946543633938, -0.008188256993889809, -0.026123352348804474, 0.013297364115715027, -0.018581336364150047, 0.014574640430510044, -0.011221788823604584, -0.01427052728831768, -0.004523688927292824, 0.0017134896479547024, 0.013814357109367847, -0.00477078091353178, 0.015874726697802544, -0.019356826320290565, -0.008097022771835327, 0.0065346392802894115, 0.009146214462816715, 0.017319265753030777, 0.007754894904792309, -0.0019415748538449407, 0.006557447835803032, 0.0006652483134530485, 0.0010311349760740995, -0.005854185204952955, 0.0031228656880557537, 0.00835551880300045, 0.010225817561149597, -0.00211739051155746, 0.00455409986898303, 0.014597449451684952, 0.012430640868842602, 0.008887717500329018, -0.0022523407824337482, 0.0005687873344868422, -0.0004416773736011237, -0.006420596968382597, 0.005093901418149471, 0.0019263691501691937, 0.0175777617841959, 0.029179692268371582, 0.0019976457115262747, -0.0029480005614459515, 0.002478525275364518, 0.008325107395648956, -0.010134583339095116, -0.004687149543315172, -0.001438837149180472, -0.0030753479804843664, -0.01797311007976532, -0.018474897369742393, -0.009800058789551258, 0.005173731595277786, 0.008576001040637493, -0.007929760031402111, 0.010263831354677677, 0.010666782036423683, 0.01422491017729044, 0.001506312284618616, -0.009351490996778011, 0.026838019490242004, -0.00887251179665327, 0.018246810883283615, -0.04108573868870735, -0.0028757734689861536, 0.03199274465441704, -0.011541108600795269, 0.00401809997856617, 0.015783492475748062, -0.0028529649134725332, 0.002991716843098402, 0.023979350924491882, -0.01076561864465475, -0.0019064117223024368, 0.007108653895556927, 0.007450781296938658, -0.014878754504024982, -0.016102811321616173, 0.01727364771068096, 0.003685475792735815, 0.0018978584557771683, -0.01693912409245968, -0.0046225255355238914, -0.01804913766682148, -0.004322213586419821, -0.03050258755683899, -0.0025792629458010197, -0.0034706955775618553, 0.0034193764440715313, -0.010796030052006245, -0.011655150912702084, 0.0022276316303759813, -0.003139972221106291, 0.005398015026003122, 0.018398867920041084, 0.017364881932735443, 0.003934468608349562, -0.020938215777277946, -0.01931120827794075, -0.011077335104346275, 0.019995464012026787, 0.03947393596172333, 0.006500426679849625, 0.0029365962836891413, 0.012985647656023502, 0.0039800857193768024, 0.014627860859036446, -0.0029936174396425486, -0.0018798017408698797, 0.01987381838262081, 0.003160879947245121, -0.0012269080616533756, -0.007443178445100784, 0.004698554053902626, -0.013981619849801064, 0.003510610433295369, -0.004360227845609188, 0.01402723602950573, 0.005922610871493816, 0.026914047077298164, 0.00642819982022047, -0.0030506388284265995, -0.003664568066596985, -0.02334071323275566, 0.006701902020722628, 0.00027203906211070716, -0.015486981719732285, -0.013571065850555897, -0.007484994363039732, -0.00664107920601964, 0.030213678255677223, 0.013783945702016354, 0.013114895671606064, 0.005724937189370394, 0.006021447945386171, -0.0005564327002502978, 0.0001634610234759748, -0.02373606152832508, 0.01048431359231472, -0.026062529534101486, -0.019569706171751022, 0.010575547814369202, -0.0041815610602498055, 0.031232459470629692, 0.0074925972148776054, 0.004177759401500225, -0.03895694389939308, -0.006705703213810921, 0.0033737593330442905, 0.012476257048547268, 0.007237901911139488, -0.02206343598663807, 0.0069565968587994576, 0.020999038591980934, 0.008157845586538315, -0.03907858952879906, -0.003360454458743334, -0.027324600145220757, 0.014597449451684952, -0.016574187204241753, 0.0028795748949050903, 0.011411859653890133, -0.01407285314053297, 0.030137650668621063, 0.013411406427621841, -0.0006519433809444308, -0.007279717363417149, 0.0186877753585577, -0.006492823828011751, -0.013183321803808212, -0.02332550846040249, -0.012605505995452404, -0.0063141570426523685, -0.006861561443656683, -0.017866669222712517, 0.002765532350167632, 0.0016640712274238467, -0.019113535061478615, -0.0002568333875387907, 0.00827188789844513, 0.023994557559490204, 0.0009912200039252639, -0.011830016039311886, 0.013920797035098076, -0.016346102580428123, 0.02844982035458088, 0.0032160005066543818, -0.019980259239673615, 0.01695432886481285, 0.02072533778846264, -0.006891972851008177, -0.0236448273062706, -0.004881022032350302, -0.029590245336294174, 0.017957903444767, 0.01209611538797617, 0.019356826320290565, 0.005394213832914829, 0.013685109093785286, 0.00934388767927885, 0.01931120827794075, 0.01695432886481285, 0.0009308725129812956, -0.012316597625613213, 0.01750173419713974, 0.002965106861665845, -0.025728004053235054, 0.00041221638093702495, -0.020770953968167305, -0.010263831354677677, 0.012210157699882984, 0.009123405441641808, -0.014916768297553062, -0.023143040016293526, 0.005572880618274212, 0.008431547321379185, 0.03059382177889347, 0.013008455745875835, 0.005379008129239082, -0.012278583832085133, 0.010902469977736473, -0.02498292550444603, 0.017091181129217148, -0.02317345142364502, 0.001048241276293993, 0.012711944989860058, 0.002790241502225399, 0.02034519426524639, -0.0017933194758370519, -0.025363069027662277, -0.013723122887313366, -0.01521327905356884, 0.005261164158582687, 0.032205622643232346, 0.0009612838621251285, 0.001491106697358191, -0.020041082054376602, 0.00874326378107071, 0.007967774756252766, 0.009663207456469536, -0.010841647163033485, 0.015099236741662025, -0.008652029559016228, -0.01812516711652279, -0.012970441952347755, -0.013859974220395088, 0.02300618775188923, -0.010704795829951763, 0.012620711699128151, 0.001613702392205596, 0.018307633697986603, 0.005728738382458687, 0.004272795282304287, -0.0015177165623754263, -0.0032217027619481087, -0.013624286279082298, 0.00758763263002038, -0.011601931415498257, 0.002518440131098032, 0.028662700206041336, -0.00784612912684679, 0.0037177877966314554, 0.0028301565907895565, 0.0010197306983172894, -0.005816171411424875, 0.023067010566592216, 0.004797391127794981, -0.008264285512268543, -0.025636769831180573, 0.008089419454336166, -0.024161819368600845, -0.009556767530739307, 0.016102811321616173, 0.0026647946797311306, -0.011008909903466702, 0.017699407413601875, 0.03348289802670479, -0.009359093382954597, -0.011563916690647602, -0.027339806780219078, 0.0052307527512311935, 0.004557901527732611, 0.0027256174944341183, 0.006086071953177452, 0.0028149508871138096, 0.01304647047072649, -0.013228937983512878, -0.022048231214284897, -0.03159739449620247, -0.0023055607452988625, -0.003757702885195613, -0.013913193717598915, -0.0025260429829359055, 0.010507122613489628, -0.01686309464275837, -0.006819745991379023, -0.010180200450122356, 0.01592034287750721, 0.022884542122483253, -0.022762898355722427, 0.004850610624998808, -0.02381208911538124, -0.01748652756214142, -0.0056679160334169865, -0.006686696317046881, -0.009131008759140968, 0.0017229932127520442, -0.006584058050066233, 0.01812516711652279, 0.0039610788226127625, 0.00883449800312519, 0.003109560813754797, -0.009146214462816715, 0.004934241995215416, 0.009944512508809566, 0.002180113922804594, 0.0035695324186235666, 0.009153816848993301, -0.021500825881958008, 0.015585818327963352, 0.011814810335636139, -0.001896908157505095, -0.0104006826877594, -0.009366696700453758, 0.0008957093814387918, 0.01521327905356884, 0.011290214955806732, 0.010035746730864048, 0.003752000629901886, 0.00453509297221899, -0.020117109641432762, 0.031475748866796494, -0.01257509458810091, 0.006827348843216896, 0.020284371450543404, -0.004478071816265583, 0.0186877753585577, 0.008773675188422203, 0.007344341836869717, 0.015783492475748062, -0.016285279765725136, 0.005021674558520317, -0.011655150912702084, 0.010126980021595955, 0.015540201216936111, -0.03281385079026222, -0.006055660545825958, 0.009579576551914215, 0.002280851360410452, -0.005785760004073381, -0.026579521596431732, -0.0019206670112907887, -0.010689590126276016, 0.004086525645107031, 0.006466214079409838, 0.01036266889423132, 0.007469788659363985, 0.01474190317094326, -0.01186042744666338, -0.008211065083742142, 0.00930587388575077, -0.01812516711652279, -0.021500825881958008, 0.008781278505921364, -0.004097929690033197, 0.007059235125780106, -0.028662700206041336, 0.015722669661045074, 0.012582696974277496, 0.009427519515156746, -0.004801192320883274, -0.01961532235145569, -0.006158298812806606, 0.006477618124336004, 0.013266952708363533, -0.0005008369917050004, -0.0032312062103301287, -0.008370724506676197, -0.00545883784070611, 0.006508029531687498, 0.007245504762977362, 0.023903323337435722, -0.004436255898326635, -0.02545430138707161, -0.004132142756134272, 0.016923917457461357, 0.008819292299449444, 0.008667235262691975, 0.011168569326400757, -0.004394440446048975, 0.008385930210351944, -0.002163007389754057, -0.023310301825404167, 3.9113037928473204e-05, 0.018550924956798553, 0.013266952708363533, 0.024465933442115784, 0.01044629979878664, 0.0064129941165447235, -0.008066611364483833, -0.006241930183023214, -0.011966867372393608, -0.012651123106479645, 0.011130555532872677, -0.014901562593877316, 0.014551832340657711, -0.0003164681256748736, 0.006492823828011751, 0.019204769283533096, -0.003531518392264843, 0.005998639389872551, -0.012400229461491108, -0.005523461848497391, 0.004192965105175972, -0.0007374752894975245, -0.012438243255019188, 0.008994157426059246, 0.010050952434539795, -0.011290214955806732, -0.028404204174876213, 0.007424171548336744, 0.006101277656853199, 0.004998866003006697, 0.003181787673383951, -0.023371124640107155, -0.005683121737092733, -0.012886811047792435, -0.02419223077595234, -0.02680760808289051, 0.0005706880474463105, -0.011404257267713547, 0.017836257815361023, -0.0060936748050153255, 0.014787520281970501, -0.004508483223617077, -0.017927492037415504, 0.010940483771264553, 0.01931120827794075, 0.003645560937002301, -0.00017498407396487892, -0.02443552203476429, 0.01687830127775669, -0.005724937189370394, -0.0036208517849445343, 0.0015718868235126138, 0.01300085335969925, -0.009138611145317554, -0.009724030271172523, 0.012651123106479645, -0.028982019051909447, 0.004782185424119234, -0.0016868796665221453, -0.01804913766682148, -0.007401362992823124, -0.030289707705378532, -0.005360000766813755, -0.005002667661756277, -0.017760230228304863, 0.005360000766813755, 0.015053619630634785, 0.0021401988342404366, -0.0005877944058738649, 0.006249533034861088, 0.018414074555039406, 0.021546443924307823, 0.05565277487039566, 0.02245878428220749, 0.01829242892563343, -0.01143466867506504, 0.017243236303329468, -0.04242383688688278, -0.005280171055346727, 0.00036754971370100975, -0.015388144180178642, -0.021105479449033737, -0.00334144732914865, 0.002689504064619541, 0.011936455965042114, 0.01987381838262081, -0.023553593084216118, 0.00855319295078516, -0.005762951448559761, -0.011100144125521183, 0.008568398654460907, -0.0038261283189058304, 0.006508029531687498, 0.03631115332245827, -0.016589393839240074, -0.013510243035852909, 0.03430400416254997, 0.003582837525755167, 0.001330496626906097, -0.016923917457461357, 0.005124312825500965, 0.017790641635656357, 0.03327002003788948, -0.02151603251695633, -0.023036599159240723, 0.00498366029933095, 0.0035600289702415466, 0.006279944442212582, 0.020846981555223465, 0.02381208911538124, 0.002195319626480341, -0.0034421849995851517, 0.003145674243569374, -0.011525902897119522, 0.005131915677338839, -0.006610667798668146, -0.01289441343396902, -0.0047251638025045395, 0.005375206470489502, 0.0073785544373095036, 0.007085845340043306, 0.00013423760537989438, 0.00550065329298377, 0.0024443124420940876, 0.006679093465209007, -0.0072759161703288555, -0.012073307298123837, 0.006553646642714739, 0.008378327824175358, -0.00399909308180213, -0.0009090143139474094, 0.0034878021106123924, 0.008173051290214062, -0.008325107395648956, 0.0012687236303463578, 0.02972709760069847, -0.007450781296938658, 0.006987008266150951, 0.0018959577428177, 0.01661980338394642, 0.007530611008405685, -0.01788187585771084, 0.02972709760069847, -0.014916768297553062, -0.0068501573987305164, -0.015000400133430958, -0.010856852866709232, -0.024770047515630722, -0.02112068422138691, 0.0009779150132089853, -0.02215467020869255, 0.008963746018707752, -0.017121590673923492, -0.010712399147450924, -0.0056679160334169865, -0.0008657731814309955, -0.004394440446048975, 0.0015405251178890467, 0.0018085251795127988, -0.0045883129350841045, 0.00429560337215662, 0.00907018594443798, -0.02860187739133835, -0.002889078576117754, -0.0005939717520959675, 0.0043868375942111015, 0.00760663952678442, -0.005116709973663092, -0.00934388767927885, 0.0033129367511719465, 0.008363122120499611, -0.003645560937002301, 0.002277049934491515, 0.02940777875483036, 0.007602838333696127, 0.003598043229430914, -0.013859974220395088, -0.016999946907162666, 0.002507035853341222, -0.0037139863707125187, -0.013244143687188625, 0.02838899753987789, -0.009412313811480999, -0.0013533051824197173, 0.0012364115100353956, -0.0020166528411209583, 0.01371552050113678, -0.0008933334611356258, 0.007085845340043306, 0.04476550966501236, 0.00023105500440578908, 0.0002266596129629761, -0.011297817341983318, 0.012955236248672009, 0.022610841318964958, 0.004797391127794981, 0.010507122613489628, -0.005819972604513168, 0.01048431359231472, 0.040872856974601746, -0.0031532770954072475, 0.00567551888525486, 0.008393533527851105, -0.01308448426425457, -0.006287547294050455, 0.021956996992230415, -0.009990129619836807, 0.00691858259961009, 0.01540334988385439, 0.00571353267878294, 0.013342981226742268, 0.010256228968501091, -0.020603692159056664, 0.01987381838262081, 0.005823774263262749, -0.0013694611843675375, -0.005576681811362505, -0.002322667045518756, -0.03333084285259247, 0.009815264493227005, 0.007652256637811661, 0.007929760031402111, 0.0005877944058738649, 0.0031133622396737337, -0.007249306421726942, -0.0018066244665533304, -0.007568625267595053, 0.0067703272216022015, -0.011487888172268867, 0.032053567469120026, -0.01379154808819294, -0.026062529534101486, 0.0009308725129812956, 0.007230299059301615, 0.007450781296938658, 0.016254868358373642, 0.001304837060160935, -0.006253334227949381, 0.0001229521440109238, 0.009146214462816715, -0.016209250316023827, -0.010811235755681992, -0.011176171712577343, 0.02019313909113407, -8.34530292195268e-05, -0.005071092862635851, -0.004569305572658777, 0.0017030357848852873, -0.005033079069107771, -0.01469628605991602, -0.017608173191547394, -0.0256215650588274, 0.018702981993556023, 0.024891693145036697, 0.025347862392663956, -0.005546270404011011, 0.004595915786921978, -0.01427052728831768, 0.003938270267099142, 0.013228937983512878, -0.007310128770768642, 0.010347463190555573, -0.004565504379570484, 0.025910472497344017, -0.008971349336206913, 0.011487888172268867, -0.002014752011746168, 0.00524215679615736, -0.005557674914598465, -0.013228937983512878, -0.024572372436523438, 0.002467120997607708, 0.012118924409151077, 0.00997492391616106, -0.004356426186859608, 0.009868483990430832], "a044525e-a899-4a11-8033-1865e1803fc9": [-0.03115234524011612, -0.0005000262171961367, -0.006354835815727711, 0.01580367237329483, -0.05902869254350662, -0.04310368373990059, 0.012429088354110718, 0.034640680998563766, -0.01842750795185566, 0.044438350945711136, 0.01117783784866333, 0.012679338455200195, -0.01126125454902649, -0.0014370422577485442, -0.03197134658694267, 0.014150505885481834, -0.035672012716531754, 0.02629901096224785, 0.018366841599345207, -0.00883458647876978, 0.0699486956000328, -0.0018427507020533085, -0.04692568629980087, 0.025555843487381935, -0.012558004818856716, -0.005482752341777086, 0.008205169811844826, -0.005930169019848108, -0.03370034694671631, -0.013020589016377926, 0.022643841803073883, 0.0163496732711792, 0.02381167560815811, -0.026556843891739845, -0.023538677021861076, -0.0470166839659214, -0.009706670418381691, 0.008076253347098827, 0.001790615264326334, -0.011397754773497581, -0.038129016757011414, 0.0638820230960846, 0.0419510155916214, 0.0037234181072562933, -0.024327343329787254, 0.044741686433553696, 0.026192843914031982, 0.0014114484656602144, -0.016516506671905518, 0.002320501022040844, 0.006768127903342247, 0.021248508244752884, -0.024008844047784805, 0.02999967895448208, 0.008432670496404171, -0.01091242115944624, 0.024994676932692528, 0.08887670189142227, 0.008576753549277782, -0.03006034530699253, 0.006351044401526451, 0.012186422012746334, 0.0046106684021651745, 0.0011706775985658169, -0.02026267535984516, -0.039281681180000305, 0.0004680340352933854, -0.00017015110643114895, -0.041829682886600494, 0.0014901256654411554, -0.004568960051983595, 0.015477589331567287, -0.01695634052157402, 0.0319410115480423, -0.024873344227671623, -0.01160250511020422, 0.04880635440349579, 0.0030921055004000664, -0.00187971955165267, 0.03709768131375313, -0.03934234753251076, -0.005930169019848108, 0.017684340476989746, 0.03430701419711113, 0.06558069586753845, 0.010229920968413353, -0.04134434834122658, -0.037674013525247574, -0.04789635166525841, -0.017760174348950386, 0.0035395221784710884, 0.0302878450602293, 0.001219969242811203, -0.009046920575201511, -0.008349253796041012, -0.010267837904393673, 0.02414534240961075, 0.017790507525205612, 0.002703459467738867, -0.04662235081195831, -0.0049064187332987785, 0.040677014738321304, -0.046228017657995224, 0.029863178730010986, -0.005729210563004017, -0.0014048130251467228, 0.016076672822237015, 0.005516877397894859, -0.052992355078458786, 0.006453419104218483, 0.006146294064819813, -0.01633450575172901, -0.016516506671905518, 0.016091840341687202, -0.02428184263408184, -0.02359934337437153, -0.006851544603705406, -0.022492175921797752, 0.0011915317736566067, -0.04361934959888458, 0.04619768634438515, 0.014946755953133106, 0.002604875946417451, 0.006195585709065199, -0.016531674191355705, -0.005755752325057983, 0.03315434604883194, 0.013559005223214626, 0.010897254571318626, -0.0002997787669301033, 0.0029347511008381844, -0.014415922574698925, 0.006036335602402687, -0.00039077881956472993, 0.014696505852043629, 0.0051149604842066765, 0.004948127083480358, 0.05645035579800606, -0.03964568302035332, 0.04616735130548477, -0.014582755975425243, -0.044832684099674225, 0.00610837759450078, 0.004944335203617811, 0.0008891461766324937, 0.023007841780781746, -0.024327343329787254, 0.05390235409140587, 0.008500919677317142, 0.023872343823313713, -0.016744006425142288, -0.007757753133773804, 0.01580367237329483, -0.00504671037197113, -0.010920003987848759, -0.029817678034305573, 0.01857917383313179, 0.03831101581454277, 0.011359837837517262, -0.003541418118402362, -0.028407178819179535, -0.0328206792473793, -0.014044338837265968, 0.011246087960898876, 0.02220400981605053, 0.01503775641322136, 0.05784568935632706, 0.01988350786268711, -0.05845235660672188, 0.029848013073205948, 0.02152150869369507, 0.00547516904771328, 0.03224434703588486, -0.024782342836260796, -0.006146294064819813, 0.004713043570518494, 0.03940301761031151, 0.030318178236484528, 0.014643422327935696, -0.03382167965173721, -0.007507503032684326, 0.020626675337553024, -0.03336668014526367, 0.0010787296341732144, 0.017532674595713615, -0.004091210197657347, 0.01191342156380415, 0.026936011388897896, -0.0016190423630177975, -0.002449417719617486, 0.010169253684580326, -0.030591178685426712, 0.007947336882352829, 0.030803512781858444, -0.01895834133028984, -0.026769177988171577, 0.01688050664961338, -0.030045179650187492, 0.003298751311376691, 0.01665300689637661, -0.0309855118393898, -0.04295201599597931, -0.06236536055803299, 0.034034013748168945, -0.02367517724633217, 0.0482906848192215, -0.013475588522851467, -0.013308755122125149, 0.032487012445926666, -0.03185001388192177, 0.03139501437544823, -0.013414922170341015, 0.017593340948224068, 0.005945335607975721, 0.006885669659823179, -0.004709251690655947, -0.010389170609414577, 0.042739685624837875, 0.02783084474503994, -0.03564168140292168, -0.020717674866318703, -0.013172255828976631, -0.00674537755548954, -0.02613217756152153, -0.05529768764972687, -0.06212269142270088, -0.009956920519471169, 0.01988350786268711, -0.025480009615421295, -0.012429088354110718, 0.02088450826704502, -0.0024380425456911325, -0.01095033809542656, -0.02375100925564766, -0.01129917148500681, 0.024388009682297707, 0.03306334838271141, 0.019398175179958344, 0.01252767164260149, 0.005698877386748791, 0.021991675719618797, 0.04995901882648468, -0.02082384191453457, 0.006696085911244154, 0.04016134887933731, 0.02127884142100811, -0.014105006121098995, 0.03467101231217384, -0.008243086747825146, -0.026769177988171577, -0.004902626853436232, 0.02118784189224243, 0.008895253762602806, -0.02814934402704239, -0.011033754795789719, 0.04101068153977394, 0.026010844856500626, -0.0032456680200994015, -0.010078254155814648, -0.01867017336189747, 0.009934171102941036, 0.0035433140583336353, -0.039130017161369324, 0.00443625170737505, 0.03266901150345802, -0.02080867439508438, 0.019292008131742477, -0.012034755200147629, -0.013270839117467403, 0.02513117715716362, -0.003427668008953333, 0.00541450222954154, 0.04289134964346886, -0.005664752330631018, 0.02614734321832657, -0.02898351103067398, -0.013210171833634377, 0.0035584806464612484, -0.026784343644976616, -0.007727419957518578, 0.010556004010140896, 0.02390267699956894, 0.007283794693648815, 0.02488850988447666, -0.007992836646735668, 0.012838589027523994, -0.03260834515094757, 0.008880087174475193, -0.03533834591507912, -0.014893672429025173, -0.00043225017725490034, -0.005706460680812597, 0.025025010108947754, -0.003685501404106617, 0.025722676888108253, -0.005122543778270483, 0.006521669216454029, -0.019929008558392525, -0.005585127044469118, 0.0006929273367859423, -0.012027171440422535, -0.03630901500582695, -0.008811837062239647, -0.01214092131704092, 0.009539837017655373, -0.013543838635087013, 0.0376436822116375, -0.0035395221784710884, -0.01460550632327795, 0.03949401527643204, 0.03260834515094757, -0.01260350551456213, -0.009691503830254078, -0.014233922585844994, -0.022552842274308205, -0.005911210551857948, 0.03470134735107422, 0.02767917886376381, -0.013081255368888378, -0.02628384344279766, 0.01695634052157402, 0.00886492058634758, -0.05320468917489052, 0.049686022102832794, 0.008971086703240871, -0.025844011455774307, 0.03006034530699253, 0.0033347723074257374, -0.02960534580051899, -0.03612701594829559, -0.008356836624443531, -0.030500179156661034, -0.0285133458673954, 0.005971877370029688, -0.008447837084531784, -0.03521701321005821, -0.05450902134180069, -0.026192843914031982, -0.006927378010004759, -0.008728420361876488, -0.003649480640888214, 0.007465794682502747, 0.00870567001402378, 0.005054293666034937, 0.0007953023887239397, 0.00439075194299221, 0.0010474483715370297, 0.00237168837338686, -0.005008793901652098, 0.02713317796587944, 0.0009019430726766586, -0.020490175113081932, 0.019640840590000153, 0.01688050664961338, 0.018867341801524162, -0.008978670462965965, -0.019519507884979248, -0.008531253784894943, 0.016546839848160744, 0.008318919688463211, -0.001126125454902649, -0.03606634959578514, -0.050141021609306335, 0.008940753526985645, -0.021551841869950294, 0.010207170620560646, 0.004512085113674402, -0.022795509546995163, -0.0017290007090196013, -0.0055282521061599255, -0.034034013748168945, 0.02335667610168457, 0.0231291763484478, -0.007177628111094236, -0.04929168522357941, -0.023189842700958252, 0.05250702053308487, 0.0036058765836060047, 0.016789507120847702, 0.0022484592627733946, 0.0038807725068181753, 0.017077673226594925, -0.002578334417194128, -0.03037884645164013, 0.0292110126465559, -0.009319920092821121, 0.026162510737776756, 0.0009782504057511687, 0.00776533642783761, 0.025616509839892387, -0.0534776896238327, 0.012247088365256786, -0.007389961276203394, -0.0024873344227671623, -0.022947175428271294, 0.039827682077884674, -0.0019185841083526611, -0.013232922181487083, 0.015682339668273926, -0.03115234524011612, 0.010358837433159351, -0.0018579174065962434, 0.0034087097737938166, 0.004898835439234972, 0.017017006874084473, -0.04210268333554268, -0.006711252965033054, -0.019216174259781837, 0.01530317310243845, 0.01926167495548725, -0.012004422023892403, -0.015189423225820065, 0.02126367576420307, -0.004936751909554005, 0.026572011411190033, 0.011094421148300171, 0.023917842656373978, 0.03145568072795868, -0.05936235934495926, -0.019307173788547516, 0.023948175832629204, 0.04277001693844795, -0.00778808631002903, 0.01789667457342148, -0.019519507884979248, 0.01587950624525547, 0.03412501513957977, 0.02467617765069008, -0.02892284467816353, 0.0054182936437428, -0.027269678190350533, 0.004652376752346754, 0.00203233421780169, -0.014802672900259495, 0.011397754773497581, -0.039827682077884674, 0.013771339319646358, -0.009221336804330349, 0.00119058380369097, -0.029195845127105713, 0.016774339601397514, 0.03448901325464249, -0.021612508222460747, -0.008387169800698757, -0.003228605492040515, -0.038584016263484955, -0.04507535323500633, 0.0009104743367061019, 0.018078673630952835, 0.026101844385266304, 0.001765969442203641, 0.00580125255510211, -0.06558069586753845, 0.003897835034877062, -0.0076212529093027115, 0.015909839421510696, -0.003148980438709259, 0.00269777188077569, 0.019337506964802742, -0.028771178796887398, -0.048442352563142776, -0.008455419912934303, 0.033427346497774124, -0.003744272282347083, -0.0067036692053079605, -0.0468953512609005, 0.013119172304868698, -0.0016446360386908054, 0.0016105110989883542, -0.009661170653998852, -0.013809255324304104, -0.004724418744444847, -0.0012285005068406463, -0.0009341722470708191, -0.03294201195240021, -0.018988674506545067, -0.017381006851792336, 0.012762755155563354, 0.031243346631526947, 0.005797460675239563, -0.02852851152420044, -0.01904934085905552, -0.05232502147555351, 0.009714254178106785, 0.016941173002123833, -0.003693084931001067, -0.017714673653244972, -0.004299751948565245, 0.0050618769600987434, 0.002301542554050684, 0.06333602219820023, 0.018943173810839653, 0.01360450591892004, 0.0033840639516711235, -0.003924376796931028, 0.0027849802281707525, 0.010411920957267284, -0.04665268585085869, -0.020247507840394974, -0.03092484548687935, 0.007886669598519802, -0.005236293654888868, 0.01642550714313984, 0.02930201217532158, 0.010085836984217167, -0.016516506671905518, -0.029544679448008537, 0.041981350630521774, 0.037037014961242676, 0.010821420699357986, 0.004481751937419176, 0.010419503785669804, -0.024266676977276802, 0.0156520064920187, -0.0024911260697990656, 0.005224918946623802, -0.02026267535984516, 0.0037518558092415333, 0.008220336399972439, 0.0003632892039604485, 0.007306544575840235, -0.019458841532468796, 0.002056980039924383, 0.008531253784894943, -0.011557004414498806, -0.0455000177025795, -0.040191683918237686, -0.012785505503416061, 0.037734683603048325, -0.012762755155563354, -0.009994837455451488, 0.00607046065852046, -0.025571011006832123, 0.010609087534248829, 0.01974700763821602, -0.011966505087912083, 0.001254094298928976, 0.007298961281776428, 0.01935267448425293, 0.022568009793758392, -0.015894673764705658, 0.03906935080885887, 0.01641033962368965, -0.026996677741408348, -0.006582336034625769, 0.04046468436717987, -0.033639680594205856, 0.02096034213900566, 0.022173674777150154, 0.029590178281068802, -0.03092484548687935, -0.0030162720941007137, -0.00776533642783761, 0.01191342156380415, 0.0096005043014884, -0.06600535660982132, 0.035277679562568665, -0.011412921361625195, -0.013976088725030422, -0.035884346812963486, -0.005156668834388256, 0.012201588600873947, 0.014514505863189697, 0.0019318549893796444, -0.03664268180727959, -0.022719675675034523, -0.030318178236484528, 0.04016134887933731, -0.019686341285705566, 0.0217338427901268, 0.028255511075258255, 0.008773920126259327, 0.05927135795354843, -0.0016342089511454105, 0.008243086747825146, 0.0034049181267619133, -0.010988254100084305, 0.002767917700111866, -0.0249643437564373, -0.002693980233743787, -0.000597661710344255, -0.044135019183158875, 0.0041594598442316055, -0.008986253291368484, 0.022704510018229485, 0.011193004436790943, -0.018548840656876564, -0.02645067684352398, -0.03075801208615303, 0.0142566729336977, -0.04152635112404823, 0.05472135543823242, 0.008318919688463211, -0.007393753156065941, -0.01897350698709488, 0.015758173540234566, -0.012315338477492332, 0.0074695865623652935, 0.017153507098555565, -0.0006715992349199951, -0.002430459251627326, 0.010897254571318626, 0.028771178796887398, -0.037886347621679306, -0.01426425576210022, 0.015697507187724113, 0.00271862605586648, 0.013900255784392357, 0.0026769177056849003, 0.018336506560444832, 0.025768177583813667, 0.019534675404429436, 0.023872343823313713, 0.004383168648928404, 0.031273677945137024, 0.007321711163967848, 0.01757817342877388, 0.035581015050411224, 0.002712938701733947, -0.020717674866318703, 0.021096842363476753, -0.03324534744024277, 0.049534354358911514, -0.024175677448511124, 0.031122012063860893, 0.014544839039444923, -0.0007317919516935945, -0.013748588971793652, -0.0027148344088345766, 0.00373858492821455, -0.0005507398163899779, -0.0004388855886645615, 0.0202778410166502, -0.04616735130548477, 0.04034334793686867, -0.01650133915245533, -0.02196134254336357, 0.016668172553181648, -0.023690342903137207, -0.02405434288084507, -0.05760302394628525, 0.011048921383917332, -0.00013721099821850657, 0.027118010446429253, -0.013718255795538425, 0.0031508763786405325, -0.016289006918668747, 0.010639420710504055, 0.03454967960715294, -0.02080867439508438, -0.025191843509674072, -0.019216174259781837, 0.002673126058652997, 0.018002839758992195, 0.022310175001621246, -0.04716835170984268, -0.011943754740059376, 0.031789347529411316, -0.007389961276203394, 0.0017508028540760279, 0.021233342587947845, -0.015030172653496265, 0.012959921732544899, 0.0021403967402875423, 0.015477589331567287, 0.015667172148823738, 0.038038015365600586, 0.004360418301075697, 0.01665300689637661, 0.013809255324304104, 0.004675127100199461, -0.02273484319448471, 0.03154667839407921, 0.0038864598609507084, 0.004652376752346754, -0.014317339286208153, 0.006301752757281065, -0.010882087983191013, 0.010859337635338306, 0.00339354295283556, -0.02290167659521103, -0.01457517221570015, -0.037583015859127045, -0.006934961304068565, 0.029741846024990082, -0.01421875599771738, -0.0019583965186029673, 0.027891511097550392, -0.030894512310624123, -0.007753961719572544, 0.01256558857858181, 0.016167672351002693, -0.010942754335701466, 0.014893672429025173, 0.004379376769065857, 0.010821420699357986, -0.012163671664893627, 0.01982284151017666, 0.04152635112404823, -0.03397334739565849, -0.039130017161369324, -0.033427346497774124, -0.006002211011946201, -0.024069510400295258, 0.003679814049974084, 0.027072511613368988, -0.021142341196537018, -0.013976088725030422, 0.006161460652947426, -0.0027053551748394966, 0.0015005527529865503, 0.011670754291117191, 0.005126335192471743, 0.003685501404106617, 0.01360450591892004, 0.007378586567938328, 0.015985673293471336, 0.0035471057053655386, -0.010040337219834328, 0.008880087174475193, 0.003010584507137537, 0.03406434878706932, -0.017077673226594925, -0.046137019991874695, -0.04031301662325859, 0.008008003234863281, 0.0015792298363521695, -0.004519668407738209, 0.0037025639321655035, 0.002762230345979333, 0.027330344542860985, 0.006878086365759373, -0.03737068176269531, 0.003179313847795129, -0.026920843869447708, 0.003511084709316492, -0.02883184514939785, 0.005494127050042152, 0.04204201698303223, -0.01496192254126072, 0.02466101013123989, -0.020459841936826706, 0.023478008806705475, -0.02444867603480816, 0.023569010198116302, 0.007215544581413269, 0.00882700365036726, -0.01191342156380415, 0.0320623479783535, 0.01256558857858181, 0.018215173855423927, -0.03451934829354286, 0.054387688636779785, 0.023326342925429344, -0.0036437930539250374, -0.002703459467738867, 0.016850173473358154, 0.00437558488920331, -0.012353255413472652, 0.03985801711678505, -0.013081255368888378, 0.008243086747825146, -0.018457841128110886, -0.011958921328186989, 0.02658717706799507, 0.017638839781284332, -0.02890767902135849, 0.038826681673526764, 0.022067509591579437, -0.01121575478464365, 0.03339701518416405, 0.00067965651396662, 0.006828794255852699, 0.036824680864810944, -0.02035367488861084, 0.0030143761541694403, 0.012891671620309353, 0.00913033727556467, -0.030879346653819084, -0.013854756020009518, -0.0013356151757761836, -0.03940301761031151, 0.007579544559121132, -0.016592340543866158, 0.013278421945869923, -0.03685501590371132, 0.02159734256565571, 0.020338507369160652, 0.00271673034876585, 0.0062562525272369385, -0.014127755537629128, -0.01418083906173706, -0.0198986753821373, 0.013384588994085789, -0.008008003234863281, -0.00187497993465513, 0.02505534328520298, -0.0468953512609005, -0.0023925425484776497, 0.005774710793048143, 0.015591340139508247, -0.04704701900482178, 0.049837686121463776, 0.03579334914684296, -0.011026171036064625, -0.03670334815979004, 0.013384588994085789, -0.000986781669780612, 0.008114170283079147, 0.0010626149596646428, -0.032335344702005386, -0.013627255335450172, -0.021339507773518562, -0.0030769386794418097, -0.016364840790629387, 0.0026807093527168036, -0.005827793851494789, 0.0022579384967684746, 0.0033840639516711235, 0.003818209981545806, -0.011109587736427784, 0.0023622093722224236, 0.048139020800590515, -0.0025309384800493717, -0.03545968234539032, -0.003683605697005987, 0.026101844385266304, -0.022719675675034523, 0.011769338510930538, 0.032578013837337494, 0.006927378010004759, -0.023842010647058487, -0.008432670496404171, 0.030576013028621674, 0.013119172304868698, 0.031031012535095215, -0.04192068427801132, -0.009903836995363235, -0.018230341374874115, 0.02397850900888443, -0.010821420699357986, -0.029878346249461174, -0.018215173855423927, -0.011185421608388424, 0.00574437715113163, -0.004000209737569094, 0.017017006874084473, -0.019489174708724022, 0.05635935813188553, 0.036278679966926575, 0.005926377605646849, -0.023387009277939796, -0.005243876948952675, 0.023766176775097847, -0.01897350698709488, 0.015697507187724113, 0.0003315339854452759, 0.0036665431689471006, -0.009388170205056667, -0.002870292868465185, 0.014522089622914791, -0.014021589420735836, -0.0306063462048769, -0.011685921810567379, -0.006260044407099485, -0.01040433719754219, -0.01904934085905552, -0.012944755144417286, 0.008682920597493649, 0.0020911050960421562, -0.010108587332069874, 0.006927378010004759, 0.036976348608732224, 0.036673013120889664, -0.032638680189847946, -0.017987674102187157, -0.02573784440755844, -0.001487281871959567, -0.0482906848192215, -0.010904837399721146, 0.021551841869950294, 0.02197650820016861, -0.011731421574950218, -0.014006422832608223, -0.045591019093990326, -0.011352255009114742, 0.026026010513305664, -0.022871343418955803, -0.018321340903639793, 0.0061311274766922, 0.004155668430030346, 0.005698877386748791, 0.014552422799170017, -0.01152667123824358, 0.0067643360234797, -0.027709512040019035, 0.013968505896627903, -0.027937011793255806, -0.01144325453788042, -0.03785601630806923, -0.0019252195488661528, -0.043134018778800964, -0.03740101680159569, 0.03191068023443222, 0.01122333761304617, -0.044135019183158875, 0.023068509995937347, 0.03160734474658966, 0.0074316696263849735, 0.02467617765069008, 0.00948675349354744, 0.02035367488861084, -0.012595921754837036, 0.003452313831076026, 0.05557068809866905, 0.012368422001600266, 0.009395753964781761, -0.000986781669780612, -0.013013005256652832, -0.024084676057100296, -0.008993837051093578, 0.020702509209513664, 0.012209171429276466, 0.005645793862640858, 0.0014095526421442628, -0.011883088387548923, 0.016698507592082024, 0.009706670418381691, 0.01873084157705307, 0.044438350945711136, -0.011701088398694992, 0.01603117398917675, 0.010154087096452713, -0.0038618140388280153, 0.022947175428271294, -0.0048343767412006855, -0.0006114065181463957, 0.0032949596643447876, -0.04046468436717987, -0.021385008469223976, -0.02127884142100811, 0.017077673226594925, 0.02529801055788994, -0.005653377156704664, 0.01499983947724104, -0.01610700599849224, -0.029787344858050346, 0.02460034377872944, 0.012474588118493557, 0.030105846002697945, 0.010882087983191013, 0.05244635418057442, 0.017017006874084473, -0.010040337219834328, -0.00340302218683064, 0.035732682794332504, -0.0041784183122217655, 0.013452839106321335, 0.027542678639292717, 0.0037821889854967594, 0.014484172686934471, -0.012815838679671288, 0.0029669804498553276, 0.004546210169792175, -0.051779020577669144, -0.0016304173041135073, -0.04401368275284767, 0.012702088803052902, -0.012125754728913307, -0.007344461511820555, -0.008030753582715988, -0.012125754728913307, -0.004311126656830311, -0.0037556474562734365, -0.0019204799318686128, -0.009570170193910599, -0.028498178347945213, -0.009183420799672604, -0.006684711202979088, -0.003004897153005004, 0.019003840163350105, -0.0142566729336977, 0.004754751920700073, -0.02328084222972393, -0.0016124069225043058, 0.0053917523473501205, -0.0004680340352933854, 0.0013308755587786436, 0.0025669594760984182, 0.012641421519219875, 0.0009664014214649796, -0.03633934631943703, -0.023690342903137207, 0.002028542570769787, 0.019079674035310745, -0.002356521785259247, -0.02890767902135849, -0.021324342116713524, -0.004970876965671778, -0.027997678145766258, -0.0056344191543757915, 0.01386992260813713, -0.03454967960715294, 0.05860402435064316, -0.015758173540234566, 0.03394301235675812, -0.0019053132273256779, -2.688233507797122e-05, 0.009251669980585575, 0.005907419137656689, -0.011496338061988354, -0.015234922990202904, 0.024691343307495117, -0.018837006762623787, 0.02182484231889248, 0.027846012264490128, 0.0011943754507228732, -0.03891768306493759, -0.012012004852294922, 0.040434349328279495, 0.003664647229015827, 0.0014142922591418028, -0.017244506627321243, -0.012004422023892403, -0.015174256637692451, -0.013543838635087013, -0.002161250915378332, 0.015773339197039604, 0.035581015050411224, 0.0012218650663271546, -0.03015134483575821, 0.007276211399585009, 0.009153086692094803, -0.01804834045469761, -0.0048685017973184586, -0.028103845193982124, 0.001790615264326334, -0.06291136145591736, -0.010851754806935787, -0.0004616356163751334, 0.02152150869369507, -0.02073284238576889, -0.009721837006509304, 0.014362839050590992, 0.007901836186647415, -0.010192004032433033, -0.003799251513555646, -0.011541837826371193, -0.00813691969960928, 0.037431348115205765, 0.026481010019779205, -0.017927007749676704, -0.004102584905922413, 0.000922323320992291, -0.010396754369139671, 0.019686341285705566, -0.005361418705433607, -0.020384008064866066, 0.0016304173041135073, 0.02414534240961075, -0.0051149604842066765, -0.007025961298495531, 0.0391603484749794, 0.0035963973496109247, 0.016546839848160744, -0.02813417837023735, -0.015682339668273926, 0.021460842341184616, -0.0009607139509171247, -0.006354835815727711, -0.0020702509209513664, -0.0005659064627252519, -0.01580367237329483, 0.018548840656876564, 0.017942173406481743, 0.0115645881742239, -0.02020200900733471, 0.020338507369160652, 0.022795509546995163, -0.019929008558392525, -0.0016939277993515134, 0.02252250909805298, -0.015712672844529152, -0.01812417432665825, -0.011822421103715897, 0.0041442932561039925, 0.022022008895874023, 0.02343250997364521, -0.004898835439234972, 0.008258253335952759, -0.02180967479944229, 0.021096842363476753, 0.010920003987848759, 0.0011337087489664555, -0.01619800738990307, -0.004883668851107359, -0.010169253684580326, 0.06030268967151642, 0.021218175068497658, 0.019140340387821198, 0.006578544154763222, -0.018336506560444832, 0.003296855604276061, 0.002464584307745099, 0.026693344116210938, 0.023629676550626755, -0.004500709939748049, -0.008220336399972439, -0.021840007975697517, 0.02543451078236103, 0.034792348742485046, 0.017638839781284332, -0.00717004481703043, 0.028725678101181984, -0.0005611669039353728, 0.002836167812347412, -0.009539837017655373, -0.014309755526483059, -2.2587086334624473e-07, 0.015940172597765923, -0.0021460840944200754, 0.003241876373067498, -0.014446255750954151, -0.0023186050821095705, -0.011739004403352737, -0.013422505930066109, -0.00239064684137702, 0.029711512848734856, 0.018533675000071526, 0.024236343801021576, 0.005425877403467894, -0.00269777188077569, 0.04146568477153778, -0.01766917295753956, -0.006332085933536291, -0.003969876561313868, 0.002703459467738867, 0.0006545367068611085, -0.016607506200671196, 0.00506566883996129, 0.011230921372771263, 0.001527094398625195, 0.0024683759547770023, 0.012004422023892403, 0.036976348608732224, -0.003238084726035595, -0.02937784604728222, -0.014120172709226608, -0.008114170283079147, -0.011412921361625195, -0.010374004021286964, -0.017092840746045113, 0.018093841150403023, -0.007917002774775028, -0.0062941694632172585, -0.025646843016147614, -0.005626835394650698, 0.01148117147386074, 0.03509568050503731, 0.013323921710252762, -0.01418083906173706, -0.02375100925564766, 0.011648004874587059, -0.006855336017906666, 0.0022636258509010077, 0.0019678757525980473, 0.013430088758468628, -0.00674537755548954, 0.001835167407989502, -0.015250089578330517, 0.014848172664642334, 0.009297170676290989, -0.0049253772012889385, 0.03694601356983185, -0.014749589376151562, 0.01286892220377922, -0.05217335373163223, 0.011109587736427784, 0.0023432509042322636, 0.02120300941169262, 0.009077253751456738, -0.00866775307804346, -0.011458421126008034, -0.0034561054781079292, 0.0012768442975357175, 0.008121753111481667, -0.019640840590000153, -0.002326188376173377, 0.004591710399836302, 0.02444867603480816, -0.015197006054222584, -0.020566008985042572, 0.004284584894776344, -0.018230341374874115, -0.00046353143989108503, -0.011610087938606739, -0.019792508333921432, -0.018245507031679153, 0.008455419912934303, 0.01129917148500681, -0.028710512444376945, 0.014089839532971382, 0.004409709945321083, -0.03224434703588486, -0.007568169850856066, -0.014522089622914791, -0.00987350381910801, 0.003992626443505287, 0.00917583703994751, 0.0032589389011263847, -0.020171673968434334, 0.013627255335450172, -0.002976459451019764, -5.175034675630741e-05, -0.013354255817830563, 0.010389170609414577, 0.0025517926551401615, -0.016698507592082024, 0.0003009636711794883, 0.0024588967207819223, -0.002974563743919134, -0.0011867921566590667, 0.01880667358636856, 0.014506923034787178, 0.004011584911495447, -0.01757817342877388, -0.006570960860699415, 0.025070510804653168, 0.01997450739145279, -0.021491175517439842, 0.008811837062239647, 0.004534834995865822, -0.002185896737501025, 0.042830683290958405, 0.015682339668273926, -0.034185681492090225, -0.028847012668848038, -0.0008066773880273104, 0.001492969342507422, 0.01257317140698433, 0.014097422361373901, -0.01903417520225048, 0.007116961292922497, -0.020839007571339607, 0.03439801558852196, 0.02143050916492939, -0.02428184263408184, 0.004113960079848766, 0.018624674528837204, -0.010859337635338306, -0.008538836613297462, -0.008766337297856808, -0.007772919721901417, -0.002430459251627326, -0.027997678145766258, 0.010851754806935787, -0.0074316696263849735, 0.008463003672659397, 0.003243772080168128, -0.007306544575840235, -0.03594501316547394, -0.007780503015965223, -0.010047920979559422, -0.0108365872874856, -0.059483692049980164, -0.021324342116713524, 0.008546420373022556, 0.003264626255258918, 0.015060505829751492, 0.0005957658868283033, 0.0017327923560515046, 0.004542418289929628, -0.014582755975425243, 0.030576013028621674, -0.026693344116210938, 0.018291007727384567, 0.009843170642852783, -0.021491175517439842, -0.04049501568078995, -0.0156520064920187, 0.014628255739808083, 0.02998451143503189, 0.005638210568577051, -0.014825422316789627, -0.012012004852294922, 0.009024170227348804, 0.028543679043650627, 0.0035376264713704586, -0.033579014241695404, -0.018518507480621338, 0.01904934085905552, 0.020930008962750435, 0.008978670462965965, -0.013703089207410812, -0.0026541678234934807, -0.01322533842176199, -0.0202778410166502, 0.00023543889983557165, 0.006643002852797508, 0.02152150869369507, -0.026162510737776756, 0.019398175179958344, -0.010586337186396122, -0.024251509457826614, 0.01795734092593193, -0.035186681896448135, -0.016167672351002693, 0.00024977614521048963, -0.019701508805155754, -0.015834005549550056, 0.005016377195715904, 0.011640421114861965, 0.01641033962368965, -0.002093000803142786, -0.01075317058712244, 0.005793668795377016, 0.015515506267547607, -0.010578754357993603, 0.0019195320783182979, -0.027345512062311172, 0.011132338084280491, -0.009115170687437057, -0.009896254166960716, 0.002930959453806281, 0.011230921372771263, 0.022461842745542526, -0.005645793862640858, 0.0016446360386908054, 0.017396174371242523, 0.013460421934723854, -0.006726419553160667, 0.007772919721901417, -0.006809836253523827, -0.0027394802309572697, -0.015667172148823738, 0.0192010086029768, -0.003787876572459936, 0.011079254560172558, -0.000600031518843025, -0.037886347621679306, 0.007295169867575169, -0.02118784189224243, -0.00029409126727841794, -0.012103005312383175, 0.02736067771911621, -0.007939753122627735, 0.011776921339333057, -0.011534254997968674, 0.01553067285567522, -0.021460842341184616, -0.0048722936771810055, -0.01719900779426098, 0.02558617666363716, -0.014681339263916016, 0.025267677381634712, -0.005137710366398096, -0.021476007997989655, -0.003495918121188879, -0.0015811256598681211, 0.03621801361441612, -0.0029347511008381844, -0.022022008895874023, 0.02598050981760025, 0.014415922574698925, 0.0033707930706441402, 0.006752961315214634, -0.03139501437544823, -0.0363696813583374, 0.03276001289486885, 0.0017470110906288028, 0.025919843465089798, -0.0010076358448714018, 0.012550421990454197, -0.005892252549529076, 0.0006507450598292053, 0.0326993465423584, 0.00202285498380661, 0.021294008940458298, 0.016789507120847702, -0.00786392018198967, -0.0009047868079505861, 0.012747588567435741, 0.009236503392457962, 0.01179208792746067, 0.021779341623187065, 0.026845011860132217, -0.008463003672659397, -0.001244615064933896, 0.004796460270881653, 0.008607086725533009, -0.009448837488889694, 0.00886492058634758, 0.005289377178996801, -0.01144325453788042, 0.031789347529411316, -0.014469006098806858, -0.032426346093416214, -0.0009782504057511687, -0.020141340792179108, -0.005793668795377016, 0.02403917722404003, 0.006062877364456654, -0.0004180314135737717, 0.026177678257226944, -0.0188825074583292, -0.010290587320923805, -0.020156508311629295, -0.00012536202848423272, 0.0004301173612475395, -0.026647843420505524, -0.01725967414677143, -0.002009584102779627, 0.002534730127081275, -0.001046500401571393, 0.00844025332480669, 0.006669544614851475, -0.002767917700111866, 0.006104585714638233, 0.02514634281396866, -0.012413921765983105, -0.024403177201747894, -0.01750233955681324, 0.01257317140698433, 0.003947126679122448, 0.009994837455451488, -0.002580230124294758, -0.003704459872096777, 0.023644842207431793, 0.005638210568577051, 0.028619511052966118, -0.007909419946372509, 0.01710800640285015, -0.007230711169540882, -0.018928008154034615, 0.021476007997989655, -0.02658717706799507, 0.0016541152726858854, -0.024342510849237442, -0.00983558688312769, 0.007909419946372509, 0.026238344609737396, 0.009433670900762081, 0.01122333761304617, 0.015083256177604198, -0.0006038231658749282, -0.015136339701712132, -0.024767177179455757, -0.040191683918237686, -0.018791507929563522, -0.002252250909805298, -0.02159734256565571, -0.004675127100199461, -0.0006881877779960632, 0.0036911889910697937, 0.0076591698452830315, -0.009805253706872463, 0.0003971772384829819, -0.017365841194987297, 0.0037234181072562933, 0.006726419553160667, -0.007025961298495531, -0.003931960090994835, 0.012846171855926514, 0.002058875747025013, -0.006385169457644224, 0.006790877785533667, 0.014051922596991062, -0.012944755144417286, 0.01995934173464775, -0.01697150617837906, -0.004098793491721153, 0.042982351034879684, -0.015060505829751492, -0.002299646846950054, -0.01449175551533699, 0.004686501808464527, -0.010328504256904125, -0.02843751199543476, -0.024297010153532028, 0.014249089173972607, -0.0069311694242060184, -0.0024133967235684395, -0.017987674102187157, 0.011541837826371193, -0.009062087163329124, 0.022795509546995163, 0.003293063957244158, 0.014127755537629128, -0.016091840341687202, 0.02999967895448208, -0.009024170227348804, 0.01361208874732256, 0.01330117229372263, -0.005084626842290163, 0.008023169822990894, -0.01230017188936472, 0.032638680189847946, 0.009365420788526535, -0.0055472105741500854, 0.004993626847863197, 0.007666753139346838, -0.0008881982648745179, 0.007537836208939552, 0.009964504279196262, -0.02428184263408184, -0.012777921743690968, -0.004095001611858606, -0.012967505492269993, -0.01757817342877388, -0.0030466055031865835, -0.002424771897494793, 0.005858127493411303, -0.027542678639292717, 0.007833586074411869, 0.0018114694394171238, 0.008326503448188305, -0.0101389205083251, 0.025404177606105804, -0.03515634685754776, -0.005990835838019848, 0.017138339579105377, 0.010942754335701466, 0.002166938269510865, 0.015159089118242264, 0.005642002448439598, 0.010768338106572628, 0.01741134002804756, -0.006779502611607313, 0.023933010175824165, -0.019140340387821198, -0.0038068348076194525, 0.04025235027074814, -0.03606634959578514, -0.016910839825868607, -0.0006654377793893218, 0.04501468315720558, 0.013786505907773972, 0.01144325453788042, -0.025389010086655617, -0.03424634784460068, -0.014855756424367428, -0.01214092131704092, -0.005126335192471743, -0.010328504256904125, 0.013703089207410812, 0.015818839892745018, -0.006218336056917906, -0.003069355385378003, -0.014734422788023949, 0.011018588207662106, 0.01183000486344099, -0.009592920541763306, 0.001290115062147379, 0.012732421979308128, 0.006669544614851475, -0.02528284303843975, -0.010760754346847534, -0.002460792660713196, -0.012285005301237106, 0.002093000803142786, 0.0015545840142294765, -0.0015204589581117034, 0.020914841443300247, -0.008372003212571144, 0.00745821138843894, -0.006897044368088245, -0.014886089600622654, 0.0034447305370122194, 0.009494337253272533, 0.0015991360414773226, 0.016607506200671196, 0.015015006065368652, -0.008940753526985645, -0.010358837433159351, -0.015060505829751492, -0.0003405392053537071, -0.01148117147386074, 0.005023960489779711, 0.017472006380558014, -0.0029575012158602476, -0.029969345778226852, -0.018928008154034615, 0.06891736388206482, 0.020520508289337158, 0.015667172148823738, 0.015015006065368652, 0.009297170676290989, -0.03621801361441612, -0.014196005649864674, 0.007681919727474451, 0.020702509209513664, -0.007901836186647415, -0.008569169789552689, -0.010328504256904125, 0.0018901466391980648, 0.017714673653244972, -0.00878150388598442, -0.006214544177055359, 0.011731421574950218, 0.006146294064819813, 0.012322921305894852, 0.014673756435513496, -0.006062877364456654, -0.010662171058356762, -0.010207170620560646, -0.011306754313409328, 0.004242876544594765, 0.023933010175824165, 0.019231341779232025, 0.00844025332480669, 0.009168253280222416, 0.03476201370358467, -0.004079835023730993, -0.012717255391180515, 0.007048711180686951, -0.02259834297001362, -0.0037158348131924868, 0.019762175157666206, -0.006229710765182972, 0.02335667610168457, -0.006601294502615929, -0.00046471634414047003, -0.005315918941050768, -0.002280688378959894, 0.010586337186396122, 0.028346512466669083, -0.014506923034787178, -0.006897044368088245, 0.014203589409589767, 0.0015659589553251863, -0.002470271894708276, 0.0032494596671313047, -0.015242505818605423, -0.017593340948224068, 0.00878150388598442, 0.01144325453788042, 0.024949176236987114, -0.015333506278693676, -0.0006208856939338148, -0.00034219806548208, -0.0003561798366717994, 0.008258253335952759, -0.01414292212575674, -0.005858127493411303, -0.0017688132356852293, -0.0362483486533165, -0.01765400730073452, -0.014628255739808083, 0.008766337297856808, -0.022947175428271294, 0.0021934800315648317, -0.0053386688232421875, -0.035035014152526855, 0.0029385427478700876, 0.00786392018198967, -0.02343250997364521, 0.0036722307559102774, 0.026192843914031982, 0.0062903775833547115, 0.007553003262728453, 0.026026010513305664, 0.018002839758992195, 0.012884088791906834, 0.009335086680948734, -0.01827584020793438, -0.015697507187724113, -0.0060666692443192005, -0.004595501814037561, 0.012997838668525219, -0.021172674372792244, 0.012967505492269993, -0.009721837006509304, -0.01560650672763586, -0.006449627690017223, -0.005812627263367176, 0.01005550380796194, 0.0010588233126327395, 0.009608087129890919, 0.014931589365005493, -0.011678338050842285, 0.016592340543866158, -0.015098422765731812, 0.004951918497681618, 0.018093841150403023, -0.011071670800447464, 0.0037234181072562933, -0.009297170676290989, 0.005270418711006641, 0.009615670889616013, -0.023462843149900436, -0.00044149236055091023, 0.010988254100084305, -0.015318339690566063, -0.011852755211293697, 0.0016237818636000156, 0.010320920497179031, -0.03424634784460068, -0.00236031343229115, 0.0006886617629788816, 0.010859337635338306, -0.020080674439668655, -0.0044021266512572765, -0.011170254088938236, -0.005983252543956041, -0.03376101329922676, -0.013013005256652832, 0.0014436776982620358, -0.00020048445730935782, -0.018215173855423927, -0.004053293261677027, -0.01317983865737915, -0.01850333996117115, 0.006555794272571802, 0.02652651071548462, 0.011511504650115967, -0.007841169834136963, 0.01897350698709488, -0.00406845984980464, -0.005228710360825062, 0.00018448835180606693, 0.022401176393032074, -0.013293588533997536, 0.029620511457324028, 0.006381377577781677, 0.004959501791745424, 0.003913001623004675, 0.0005834429175592959, -0.007571961265057325, -0.013172255828976631, -0.02830101177096367, -0.0008867764263413846, 0.0012455630348995328, 0.03806835040450096, -0.040889348834753036, 0.01522733923047781, -0.014635839499533176, 0.005160460248589516, -0.009327503852546215, -0.013938172720372677, 0.028467845171689987, -0.007537836208939552, 0.008971086703240871, 0.009122753515839577, 0.008038336411118507, -0.007947336882352829, -0.00119532342068851, -0.01395333930850029, 0.005513085518032312, 0.011473587714135647, 0.011033754795789719, 0.008955920115113258, -0.003823897335678339, 0.003924376796931028, 0.0011621463345363736, 0.019079674035310745, -0.021309174597263336, 0.0012266046833246946, 0.0008360628271475434, 0.013195005245506763, 0.012929588556289673, -0.006119752302765846, 0.03121301345527172, -0.007389961276203394, 0.005755752325057983, 0.020293008536100388, 0.008463003672659397, -0.008008003234863281, -0.011648004874587059, 0.01642550714313984, -0.00474337674677372, -0.010002420283854008, 0.0021214382722973824, -0.00844025332480669, 0.024024009704589844, 0.017305172979831696, -0.022158509120345116, -0.007962503470480442, -0.011276421137154102, 0.012231921777129173, 0.011731421574950218, 0.021096842363476753, -0.0027337928768247366, 0.00891042035073042, 0.007901836186647415, 0.021005840972065926, 0.012391171418130398, 0.0014379901112988591, -0.021005840972065926, -0.0013498339103534818, -0.0156520064920187, -0.013718255795538425, -0.023326342925429344, -0.03922101482748985, -0.03500467911362648, 0.008842170238494873, 0.0031868971418589354, 0.001313813030719757, 0.004804043564945459, 0.011905837804079056, 0.0002993048110511154, 0.007625044789165258, 0.018457841128110886, 0.00013223443238530308, 0.012535255402326584, 0.008121753111481667, 0.0034997097682207823, -0.006370002403855324, 0.002286375965923071, 0.0021593549754470587, 0.021081674844026566, 0.014446255750954151, 0.0020911050960421562, 0.005054293666034937, -0.002608667826279998, -0.019565008580684662, 0.007268628105521202, -0.013581755571067333, 0.03092484548687935, 0.01491642277687788, -0.006953919306397438, 0.016850173473358154, -0.014764755964279175, -0.014370422810316086, 0.0002921954437624663, 0.003088313853368163, 0.0013024379732087255, -0.013134338892996311, -0.02528284303843975, -0.010078254155814648, 0.004982252139598131, 0.010396754369139671, -2.895590296247974e-05, -0.009623253718018532, -0.006248669233173132, -0.004398335237056017, 0.007177628111094236, 0.02182484231889248, -0.004030543379485607, -0.029650844633579254, 0.00015664329112041742, 0.01625867374241352, -0.007985252887010574, 0.00410637678578496, -0.0018768757581710815, -0.028331344947218895, -0.017472006380558014, 0.00019491543935146183, 0.04189034923911095, -0.04091968387365341, 0.012429088354110718, 0.0015346776926890016, 0.008273419924080372, -0.01514392253011465, -0.008099003694951534, 0.0013507817639037967, 0.023720676079392433, 0.0010303858434781432, 0.00812933687120676, 0.016076672822237015, -0.024388009682297707, -0.002589709358289838, 0.0018332715844735503, -0.008425086736679077, 0.004330085124820471, 0.008963503874838352, -0.023872343823313713, -0.006510294508188963, -0.0209755077958107, 0.015310755930840969, 0.01735067367553711, 0.006821210961788893, 0.03200167790055275, 0.00015711724699940532, -0.009312337264418602, -0.005714043974876404, 0.001358365174382925, -0.003685501404106617, -0.007909419946372509, -0.007541628088802099, -0.011996838264167309, 0.016774339601397514, 0.008159670047461987, -0.005774710793048143, 0.0013801672030240297, 0.003772709984332323, 0.000900047249160707, 0.01835167407989502, 0.01967117376625538, 0.021491175517439842, 0.012823421508073807, -0.01279308833181858, 0.02714834362268448, 0.01850333996117115, -0.003078834619373083, -0.005926377605646849, -0.010806254111230373, -0.027770178392529488, 0.0011773129226639867, 0.0007573857437819242, 0.02937784604728222, -0.014385589398443699, 0.0031110637355595827, -0.00891042035073042, 0.004239085130393505, 0.01904934085905552, -0.0024588967207819223, 0.0070183780044317245, 0.00435283500701189, 0.00951708760112524, 0.0041784183122217655, 0.005865710787475109, -0.01521975640207529, 0.011344671249389648, 0.0025669594760984182, -0.01820000819861889, 0.0002526198804844171, -0.004030543379485607, 0.003774605691432953, -0.00043177622137591243, 0.0028759802225977182, 0.0074165030382573605, 0.007405127864331007, -0.023842010647058487, -0.006184211000800133, -0.007321711163967848, -0.014074672013521194, -0.004322501830756664, -0.0012161775957792997, 0.0022598342038691044, -0.014749589376151562, 0.01973184198141098, 0.0032361887861043215, -0.012929588556289673, 0.014711672440171242, 0.01603117398917675, 0.007917002774775028, -0.012694505043327808, -0.010229920968413353, 0.003981251735240221, 0.018063507974147797, -0.00543725211173296, -0.01918584108352661, -0.017547840252518654, 0.004606876987963915, -0.010662171058356762, -0.019170673564076424, 0.012057504616677761, 0.015561006031930447, -0.005558585748076439, -0.001011427491903305, -0.05074768885970116, 0.0008910420583561063, -0.012247088365256786, -0.021991675719618797, -0.01757817342877388, -0.003655168227851391, -0.016698507592082024, 0.0041442932561039925, 0.0017963028512895107, 0.004637210164219141, -0.02467617765069008, -0.008713253773748875, 0.017790507525205612, -0.0014171359362080693, -0.003253251314163208, -0.018457841128110886, 0.00340112647973001, 0.022689342498779297, 0.016546839848160744, 0.015561006031930447, 0.009153086692094803, -0.010260254144668579, -0.007772919721901417, 0.008607086725533009, 0.006934961304068565, 0.011503920890390873, 0.0002734740555752069, 0.027952177450060844, -0.030742846429347992, 0.025161510333418846, 0.015985673293471336, -0.0036817097570747137, -0.0030731470324099064, 0.011284004896879196, 0.016850173473358154, 0.009592920541763306, 0.015818839892745018, -0.028498178347945213, 0.016850173473358154, -0.0060477107763290405, 0.015052923001348972, -0.008387169800698757, -0.0037101474590599537, -0.0008848805446177721, -0.02035367488861084, -0.01710800640285015, 0.02420601062476635, 0.0009270628797821701, 0.003185001201927662, 0.003139501204714179, -0.008159670047461987, -0.009388170205056667, 0.009433670900762081, 0.0069994195364415646, 0.01974700763821602, -0.002261730143800378, 0.011557004414498806, -0.005911210551857948, 0.025692343711853027, -0.005270418711006641, 0.0017223652685061097, -0.0064458358101546764, -0.012535255402326584, -0.00035997151280753314, -0.0006279950612224638, 0.020414341241121292, -0.013847172260284424, -0.010859337635338306, 0.028558844700455666, -0.0021896883845329285, 0.006354835815727711, 0.0017858757637441158, -0.00856158696115017, -0.017077673226594925, -0.01214092131704092, 0.007985252887010574, 0.020990675315260887, -0.01260350551456213, -0.0006275210762396455, 0.017866341397166252, -0.00780325336381793, -0.004849543794989586, -0.01974700763821602, 0.014848172664642334, -0.02297750860452652, -0.0019963132217526436, -0.0088725034147501, 0.004485543351620436, 0.003882668213918805, -0.020535675808787346, 0.034428346902132034, -0.03245668113231659, 0.003164147026836872, -0.009350254200398922, 0.0071890028193593025, -0.0005796512705273926, -0.008364420384168625, -0.010904837399721146, -0.01387750543653965, 0.007082836236804724, -0.012194004841148853, 0.002951813628897071, -0.0013431984698399901, 0.014795089140534401, 0.009282004088163376, -0.008538836613297462, 0.004136709962040186, 0.023296009749174118, -0.003977459855377674, 0.03570234775543213, 0.007772919721901417, -0.012322921305894852, 0.0010929483687505126, 0.016016006469726562, 0.0013232921482995152, 0.006059085950255394, 0.03646068274974823, -0.0002782136434689164, 0.0050429184921085835, 0.034731682389974594, 0.014719256199896336, -0.0030219596810638905, 0.010419503785669804, 0.011428087949752808, 0.017987674102187157, -0.010654587298631668, -0.00012725786655209959, 0.004841960500925779, 0.0013460422633215785, 0.027269678190350533, 0.002946126274764538, 0.0046296268701553345, 6.919794395798817e-05, 0.008045920170843601, -0.0037423765752464533, -0.007977670058608055, 0.024084676057100296, 0.009850754402577877, -0.010434671305119991, -0.004587918519973755, 0.028407178819179535, -0.0071927946992218494, 0.0048002521507442, -0.015636838972568512, -0.012709671631455421, 0.013824421912431717, 0.01314192172139883, 0.034034013748168945, 0.007143503054976463, 0.011033754795789719, 0.016000838950276375, 0.008409920148551464, -0.0007417451124638319, -0.006711252965033054, -0.013619672507047653, -0.0037480639293789864, 0.007488544564694166, 0.002587813651189208, 0.019079674035310745, -0.010366421192884445, -0.007037336006760597, -0.018928008154034615, -0.013923006132245064, 0.002553688595071435, 0.001983042573556304, -0.006286585703492165, 0.007276211399585009, 0.007894253358244896, 0.02074800804257393, -0.0020209590438753366, 0.01461308915168047, -0.011898254975676537, 0.012376004830002785, 0.002568855183199048, -0.0016768652712926269, -0.00844025332480669, 0.003437147242948413, -0.009646004065871239, 0.010207170620560646, 0.008205169811844826, -0.005873294081538916, -0.012709671631455421, -0.026920843869447708, -0.0011611983645707369, 0.022461842745542526, 0.001290115062147379, 0.027694344520568848, -0.02514634281396866, -0.0002801094960886985, 0.0055434186942875385, -0.004360418301075697, 0.01835167407989502, 0.002762230345979333, -0.008546420373022556, -0.010184421204030514, -0.0020645633339881897, -0.02244667522609234, 0.0034352513030171394, 0.009494337253272533, 0.0010142712853848934, -0.004295960068702698, 0.018382007256150246, 0.0011763650691136718, 0.0031357095576822758, -0.007939753122627735, 0.013634839095175266, 0.0016683340072631836, 0.00017726048827171326, -0.03579334914684296, -0.006715044379234314, 0.00506946025416255, -0.02297750860452652, -0.0021403967402875423, -0.0285133458673954, -0.014165672473609447, -0.02074800804257393, -0.010783504694700241, 0.005551002454012632, 0.012990254908800125, 0.0087435869500041, 0.032578013837337494, -0.002058875747025013, 0.022158509120345116, -0.008015586994588375, -0.0002400599914835766, -0.00539554376155138, 0.033033013343811035, 0.0065330443903803825, -0.002451313426718116, -0.008531253784894943, -0.024494176730513573, -0.016759173944592476, 0.006248669233173132, 0.012353255413472652, 0.018609507009387016, 0.0037802932783961296, 0.018457841128110886, 0.006400336045771837, -0.0048685017973184586, -0.017608506605029106, -0.00031257563387043774, 0.015834005549550056, 0.01356658898293972, -0.00786392018198967, 0.01650133915245533, -0.011663171462714672, 0.026875345036387444, -0.008030753582715988, -0.006146294064819813, -0.008379586972296238, 0.0015906047774478793, 0.007120752707123756, -0.0008493337081745267, 0.009653586894273758, -0.001631365274079144, 0.009244087152183056, -0.0024475217796862125, -0.0036968765780329704, 0.003763230750337243, 0.0024323551915585995, 0.02050534076988697, -0.00878908671438694, -0.004265626892447472, 0.008364420384168625, -0.008463003672659397, -0.012740004807710648, 0.006631627678871155, -0.0024816468358039856, -0.016167672351002693, -0.0067415861412882805, -0.018533675000071526, -0.0014446255518123507, 0.0031281262636184692, -0.006218336056917906, 0.002980251330882311, 0.018609507009387016, -0.0029233761597424746, 0.0057860855013132095, -0.0024475217796862125, 0.007848753593862057, 0.0019602924585342407, -0.0029347511008381844, -0.027800511568784714, 0.019383007660508156, -0.012800672091543674, 0.014400755986571312, 0.005626835394650698, 0.004284584894776344, -0.0020304382778704166, -0.026101844385266304, 0.023189842700958252, 0.004883668851107359, -0.024494176730513573, -0.012899255380034447, 0.0002373347379034385, 0.008637419901788235, -0.013756172731518745, -0.011132338084280491, -0.0011972192442044616, 0.022856175899505615, -0.017017006874084473, -0.015925006940960884, 0.0019053132273256779, -0.0028380637522786856, -0.02074800804257393, 0.020475007593631744, 0.005224918946623802, 0.01333908922970295, 0.01625867374241352, -0.017911840230226517, 0.008857336826622486, -0.029271678999066353, -0.011852755211293697, 0.005869502201676369, 0.0032267095521092415, 0.004288376774638891, -1.5314784832298756e-05, 0.019155507907271385, 0.007689503021538258, -0.002961292862892151, -0.010184421204030514, -0.009509503841400146, 0.003217230550944805, -0.010207170620560646, -0.023265676572918892, -0.01795734092593193, -0.0014664276968687773, -0.005035335198044777, -0.0060856277123093605, -0.015712672844529152, -0.016592340543866158, -0.013589339330792427, -0.025025010108947754, 0.003010584507137537, -0.012937172316014767, 0.001962188398465514, -0.013278421945869923, -0.03500467911362648, 0.0016398965381085873, 0.004015376791357994, 0.0011412921594455838, -0.011375004425644875, 0.023402176797389984, -0.00474337674677372, 0.0005820210790261626, 0.020626675337553024, -0.0038656056858599186, -0.014749589376151562, -0.004895043559372425, -0.006840169429779053, -0.017866341397166252, -0.0035945014096796513, 0.0057519604451954365, 0.0070183780044317245, -0.005698877386748791, 0.01279308833181858, 0.0009578701574355364, -0.01179208792746067, -0.0031868971418589354, 0.010821420699357986, -0.005494127050042152, 0.012944755144417286, -0.0009540785104036331, -0.009016587398946285, 0.0019697716925293207, 0.012702088803052902, 0.0001809336681617424, -0.0023678967263549566, 0.004546210169792175, 0.007602294906973839, 0.00643446110188961, 0.016091840341687202, -0.015712672844529152, -0.029044179245829582, -0.0039888350293040276, -0.0022598342038691044, 0.00948675349354744, -0.021536676213145256, -0.026329344138503075, 0.02875601127743721, -0.009956920519471169, 0.023917842656373978, -0.0033878555987030268, 0.004235293250530958, 0.01525767333805561, 0.001596292364411056, 0.01151908840984106, 0.001487281871959567, 0.014393172226846218, -0.02344767563045025, 0.002879772102460265, 0.00045665903599001467, 0.021005840972065926, 0.023462843149900436, -0.019231341779232025, 0.00866775307804346, 0.002627626061439514, -0.005224918946623802, -0.0055434186942875385, 0.0010654587531462312, -0.01261108834296465, 0.029332345351576805, -0.0073975445702672005, 0.007761545013636351, -0.017381006851792336, -0.0284526776522398, -0.004201168194413185, -0.013801672495901585, -0.004978460259735584, 0.017077673226594925, 0.009244087152183056, 0.005486543755978346, -0.016380006447434425, -0.010025170631706715, -0.016319340094923973, -0.0026769177056849003, -0.03640001639723778, 0.007075252942740917, 0.019064508378505707, 0.008607086725533009, -0.006248669233173132, 0.004072251729667187, 0.01317983865737915, -0.010427087545394897, -0.008076253347098827, 0.009266837500035763, 0.02860434539616108, -0.003183105494827032, 0.008235502988100052, -0.022643841803073883, -0.022097842767834663, -0.006881877779960632, 0.01625867374241352, 0.005915002431720495, -0.017456840723752975, -0.017001839354634285, -0.012474588118493557, 0.012231921777129173, -0.014415922574698925, 0.012747588567435741, -0.0001705065806163475, -0.006347252521663904, -0.00433387653902173, 0.009122753515839577, -0.0007820315659046173, 0.009350254200398922, -0.00780325336381793, -0.013589339330792427, 0.00024290374130941927, -0.010662171058356762, -0.01051808800548315, 0.010343670845031738, -0.0015214069280773401, 0.018715674057602882, 0.0266781784594059, -0.015318339690566063, -0.022537676617503166, 0.013369422405958176, 0.00478129368275404, -0.007731211371719837, -0.006491336040198803, -0.008197586983442307, -0.0010588233126327395, 0.0034181890077888966, -0.01610700599849224, 0.009244087152183056, 0.011291587725281715, -0.01230017188936472, 0.005289377178996801, -0.000395518378354609, 0.015310755930840969, 0.004705460276454687, 0.00848575308918953, -0.015909839421510696, 0.004220126662403345, -0.012156087905168533, 0.0044059185311198235, 0.0008076253579929471, 0.004898835439234972, -0.01414292212575674, -0.010684921406209469, -0.013543838635087013, 0.015773339197039604, -0.0052855852991342545, 0.003950918093323708, 0.0058050439693033695, -0.002949917921796441, 0.012292588129639626, -0.011238504201173782, 0.0010872608982026577, 0.010707670822739601, -0.020065508782863617, 0.02018684148788452, 0.016516506671905518, -0.014393172226846218, -0.012664171867072582, 0.002415292663499713, -0.004314918536692858, -0.014415922574698925, -0.004189793486148119, -0.004322501830756664, -0.016698507592082024, -0.01967117376625538, -0.009759753942489624, 0.004675127100199461, 0.0035622722934931517, -0.0053917523473501205, 0.009737003594636917, -0.0004789350787177682, 0.0028191052842885256, -0.00203422992490232, -0.0026958761736750603, -0.0014616880798712373, 0.01434008963406086, -0.007727419957518578, 0.011822421103715897, -0.028179679065942764, 0.005884669255465269, 0.038038015365600586, -0.0020759382750838995, 0.00187971955165267, 0.01735067367553711, 0.002766021993011236, -0.0072420863434672356, 0.009251669980585575, -0.008258253335952759, -0.0016199902165681124, -0.013020589016377926, 0.024570010602474213, 0.01460550632327795, -0.011435671709477901, 0.020399175584316254, 7.22786717233248e-05, 0.0004905470996163785, 0.0014304068172350526, -0.004747168626636267, -0.003894043155014515, -0.0069842529483139515, -0.022295009344816208, -0.005217335652559996, -0.007917002774775028, 0.0026655427645891905, -0.018761174753308296, -0.011473587714135647, 0.011382588185369968, 0.009714254178106785, 0.01396092213690281, 0.007697086315602064, 0.0074127111583948135, -0.015272839926183224, 9.37252989388071e-05, -0.008986253291368484, -0.007393753156065941, 0.008023169822990894, 0.023098843172192574, 0.028786344453692436, 0.029848013073205948, 0.010336087085306644, -0.012755172327160835, -0.012997838668525219, 0.0013555213809013367, -0.009198587387800217, 0.009494337253272533, -0.0038504390977323055, 0.01804834045469761, 0.004360418301075697, -0.01627383939921856, -0.0062752109952270985, 0.0024115010164678097, 0.004910210147500038, 0.002430459251627326, 0.013013005256652832, 0.01291442196816206, 0.008698087185621262, 0.0088725034147501, -0.029241345822811127, -0.006684711202979088, 0.017532674595713615, 0.006650586146861315, -0.014362839050590992, -0.0037025639321655035, -0.014901256188750267, 0.0020114800427109003, -0.00678329449146986, 0.004914002027362585, -0.006313127465546131, 0.013892672024667263, 0.00237927190028131, 0.006081835832446814, -0.0008275315631181002, -0.028574012219905853, -0.0014815944014117122, -0.013945755548775196, -0.013847172260284424, 0.002980251330882311, -0.01874600723385811, 0.029195845127105713, -0.01491642277687788, -0.0022351883817464113, -0.019398175179958344, -0.00027110427618026733, 0.003655168227851391, 0.013642421923577785, 0.0034333555959165096, -0.000602401269134134, 0.010578754357993603, 0.014620672911405563, 0.008766337297856808, -0.032638680189847946, -0.008493336848914623, -0.011428087949752808, 0.0228106752038002, -0.013824421912431717, 0.00809141993522644, 0.009501920081675053, -0.021718675270676613, 0.01214092131704092, 0.009683921001851559, -0.005968085955828428, -0.0014673755504190922, 0.015591340139508247, -9.502868488198146e-05, -0.0029328553937375546, -0.028847012668848038, -0.023720676079392433, 0.006400336045771837, -0.005236293654888868, -0.016713673248887062, -0.0028077303431928158, 0.012656588107347488, -0.005831585731357336, -0.018139339983463287, -0.0023318759631365538, 0.0051490855403244495, -0.010389170609414577, -0.00010178259253734723, 0.004584126640111208, -0.0202778410166502, 0.01780567318201065, -0.0010123754618689418, -0.015925006940960884, 0.00406466843560338, 0.024160509929060936, -0.0046296268701553345, -0.024297010153532028, 0.0013479380868375301, -0.017381006851792336, 0.0058240024372935295, 0.02830101177096367, 0.019913841038942337, 0.0067415861412882805, -0.0004507345729507506, 0.0014010213781148195, 0.011375004425644875, 0.01557617262005806, -0.014287006109952927, 0.009501920081675053, -0.0014749589608982205, -0.005683710798621178, -0.014347672462463379, -0.023629676550626755, -0.016926007345318794, 0.00040428663487546146, 0.003346147248521447, 0.01113992091268301, -0.015045339241623878, -0.017987674102187157, 0.0028304802253842354, -0.014734422788023949, 0.018488174304366112, 0.0027148344088345766, 0.013657588511705399, 0.006696085911244154, -0.014074672013521194, -0.003010584507137537, -0.008220336399972439, -0.018336506560444832, -0.010647004470229149, 0.02952951192855835, 0.008682920597493649, 0.013695505447685719, -0.0033802723046392202, -0.02018684148788452, -0.015166672877967358, -0.010305753909051418, 0.005482752341777086, 0.024479009211063385, 0.016531674191355705, 0.006301752757281065, -0.003207751316949725, 0.010821420699357986, 0.009312337264418602, 0.01214092131704092, -0.004656168632209301, 0.010897254571318626, -0.001557427691295743, -0.006233502645045519, 0.0006834482192061841, -0.004568960051983595, -0.0002876928192563355, 0.0004616356163751334, 0.0035016057081520557, 0.006555794272571802, 0.017532674595713615, 0.011776921339333057, 2.5401215680176392e-05, -0.015394172631204128, 0.009456420317292213, 0.005717835854738951, 0.009335086680948734, -0.007056294474750757, -0.016000838950276375, 0.012542838230729103, -0.005016377195715904, 0.002999209566041827, -0.0038163140416145325, -0.009661170653998852, -0.011253670789301395, 0.01857917383313179, 0.0060856277123093605, -0.007105586118996143, -0.0195801742374897, 0.006635419558733702, 0.004307335242629051, -0.006862919311970472, 0.020095841959118843, 0.0010692504001781344, -0.014362839050590992, 0.024858176708221436, 0.0074695865623652935, -0.006995627656579018, -0.005896043963730335, -0.028103845193982124, 0.010366421192884445, 0.0019659800454974174, 0.011663171462714672, 0.012558004818856716, 0.0036039806436747313, 0.006328294053673744, 0.0003075990825891495, -0.011981671676039696, -0.03685501590371132, -0.01082900445908308, 0.004242876544594765, -0.029787344858050346, 0.0020797299221158028, -0.00023259515000972897, 0.0007943544769659638, 0.007124544586986303, -0.0025157718919217587, 0.008690503425896168, 0.010161670856177807, -0.006578544154763222, 0.010821420699357986, -0.021460842341184616, -0.03036367893218994, -0.008394753560423851, -0.005467585753649473, 0.00024077092530205846, -0.004686501808464527, -0.0031072720885276794, 0.0031963763758540154, 0.006643002852797508, 0.005585127044469118, 0.010533254593610764, 0.004694085102528334, 0.027042178437113762, 0.00612733606249094, -0.0008588128257542849, -0.022704510018229485, 0.013824421912431717, -0.020065508782863617, 0.026875345036387444, -0.003207751316949725, 0.012285005301237106, -0.003818209981545806, -0.004349043592810631, 0.008698087185621262, 0.024403177201747894, 0.013581755571067333, 0.008068669587373734, -0.0036191472318023443, -0.0041594598442316055, -0.008698087185621262, 0.01765400730073452, -0.011382588185369968, 0.013559005223214626, 0.01750233955681324, 0.005213543772697449, 0.01051808800548315, 0.00541450222954154, 0.01317983865737915, -0.0023242926690727472, 0.0007460107444785535, 0.003238084726035595, 0.0007137815118767321, -0.00273758452385664, 0.020793508738279343, -0.019777340814471245, -0.004110168199986219, 0.001801042351871729, 0.004997418727725744, 0.004785085096955299, -0.019216174259781837, 0.015712672844529152, -0.008682920597493649, 0.0037025639321655035, 0.01733550615608692, 0.011943754740059376, -0.004174626898020506, 0.01880667358636856, -0.005365210585296154, -0.012959921732544899, -0.004470376763492823, -0.020247507840394974, -0.01850333996117115, 0.016986673697829247, -0.003996418323367834, -0.011799671687185764, -0.0009246930712834001, 0.005152876954525709, -0.004735793452709913, 0.0319410115480423, -0.019367842003703117, -0.026936011388897896, 0.0006924534100107849, 0.00169677147641778, 0.019686341285705566, -0.01587950624525547, -0.008235502988100052, 0.00045784394023939967, 0.0005573751986958086, -0.007052503060549498, -0.01782084070146084, 0.011640421114861965, -0.0072269197553396225, 0.002578334417194128, 0.0016759173013269901, 0.0002400599914835766, 0.005346252117305994, 0.004697876982390881, 0.014135339297354221, -0.014400755986571312, 0.004447626881301403, -0.01642550714313984, -0.014196005649864674, -0.006210752762854099, 0.013172255828976631, -0.002766021993011236, 0.003367001423612237, 0.024691343307495117, -0.007947336882352829, -0.009357837028801441, 0.01950434036552906, 0.0016408443916589022, -0.02373584359884262, 0.005486543755978346, -0.0020626673940569162, 0.012042338028550148, 0.004553793463855982, 0.008061086758971214, 0.030849013477563858, 0.0017811361467465758, -0.00921375397592783, -0.00947917066514492, 0.0033518346026539803, -0.00271673034876585, -0.004804043564945459, -0.0046106684021651745, 0.01122333761304617, 0.010146504268050194, -0.004724418744444847, -0.0060135857202112675, 0.0036627515219151974, 0.008713253773748875, -0.015090839937329292, -0.011723837815225124, -0.005513085518032312, 0.01386992260813713, -0.020475007593631744, 0.0012920108856633306, -0.014704089611768723, 0.008455419912934303, -0.015136339701712132, 0.0048343767412006855, -0.013657588511705399, 0.02227984182536602, -0.0010938962223008275, -0.016319340094923973, 0.010586337186396122, 0.014582755975425243, 0.004091210197657347, 0.011185421608388424, -0.02643551118671894, 0.009168253280222416, 0.016213173046708107, 0.010305753909051418, -0.01360450591892004, 0.021642841398715973, -0.02605634368956089, 0.016744006425142288, 0.007587128318846226, -0.02235567569732666, 0.01950434036552906, 0.0062752109952270985, -0.021005840972065926, -0.008614670485258102, -0.035429347306489944, -0.0055472105741500854, 0.010897254571318626, -0.008963503874838352, 0.010510504245758057, 0.0015138235175982118, 0.019989674910902977, -0.00340302218683064, -0.005278002005070448, 0.00994933769106865, 0.009676337242126465, 0.05584368854761124, 0.030257511883974075, 0.014309755526483059, -0.015985673293471336, 0.009183420799672604, -0.03545968234539032, 0.00851608719676733, 0.013976088725030422, -0.03075801208615303, -0.008607086725533009, -0.005725419148802757, -0.010957920923829079, 0.02390267699956894, 0.02837684564292431, -0.011814838275313377, -0.004902626853436232, -0.001468323520384729, -0.024297010153532028, -0.0012777921510860324, -0.0025669594760984182, 0.010965504683554173, 0.011557004414498806, -0.0170473400503397, 0.0038656056858599186, 0.0238268431276083, 0.0008502816199325025, -0.027891511097550392, -0.010495337657630444, -0.011723837815225124, 0.013384588994085789, 0.0136879226192832, -0.010798671282827854, -0.0348530150949955, -0.004091210197657347, -0.004845751915127039, 0.020566008985042572, -0.006279002409428358, 0.01935267448425293, 0.004057085141539574, -0.009979670867323875, -0.014150505885481834, -0.017517507076263428, 0.012633838690817356, -0.014833006076514721, -0.011086837388575077, -6.505080818897113e-05, -0.0013469901168718934, -0.00018946491763927042, 0.0026655427645891905, -0.004113960079848766, -0.00612733606249094, -0.003262730548158288, -0.028012845665216446, -0.010738003998994827, -0.004098793491721153, -0.016622673720121384, 0.012694505043327808, -0.01718384027481079, -0.007666753139346838, -0.018912840634584427, -0.011238504201173782, 0.0035736472345888615, 0.016061507165431976, 0.024297010153532028, -0.0071890028193593025, 0.015439673326909542, -0.0059946272522211075, 0.00011931906192330644, 0.010267837904393673, -0.0228106752038002, -0.00024029696942307055, -0.031243346631526947, -0.012012004852294922, -0.021460842341184616, -0.005524460691958666, -0.017472006380558014, -0.024994676932692528, -0.021324342116713524, -0.019929008558392525, 0.010935171507298946, 0.00272810528986156, -0.012080254964530468, -0.002449417719617486, 0.0014370422577485442, -0.010821420699357986, -0.001488229725509882, 0.0025461053010076284, 0.005478960461914539, 0.00987350381910801, 0.011822421103715897, -0.022340508177876472, -0.0032816887833178043, -0.01633450575172901, 0.008015586994588375, 0.010639420710504055, -0.010222337208688259, 0.003931960090994835, 0.00447416864335537, 0.0010218545794487, 0.0003215808537788689, -0.004713043570518494, 0.014211172237992287, -0.005645793862640858, 0.0076553779654204845, -0.016137339174747467, -0.02514634281396866, 0.0062714191153645515, -0.007333086337894201, 0.0015943965408951044, 0.010078254155814648, -0.019458841532468796, 0.0006545367068611085, -0.0009962607873603702, 0.011966505087912083, -0.003312022192403674, 0.03013617917895317, 0.0076212529093027115, 0.00338216801173985, -0.001929011195898056, 0.01233808882534504, -0.014332505874335766, 0.003139501204714179, 0.017760174348950386, 0.002747063525021076, -0.004132918547838926, -0.0054334606975317, -0.0007971982704475522, 0.020444674417376518, -0.019322341307997704, 0.004303543362766504, 0.01712317392230034, -0.006768127903342247, 0.003947126679122448, 0.009782504290342331, -0.019625674933195114, -0.008061086758971214, 0.015166672877967358, -0.003894043155014515, 0.01518183946609497, 0.010760754346847534, -0.02250734157860279, 0.04856368526816368, 0.0030371262691915035, 0.008068669587373734, -0.005403127055615187, -0.005729210563004017, -0.02188550867140293, 0.009994837455451488, 0.0019678757525980473, -0.00024977614521048963, 0.01572784036397934, -0.003348042955622077, -0.010374004021286964, 0.015712672844529152, -0.0051301270723342896, 0.015288006514310837, -0.0047206268645823, 0.03169834613800049, -0.021476007997989655, 0.003670334815979004, -0.0021100633312016726, 0.01967117376625538, -0.0018095736159011722, 0.01710800640285015, 0.006771919317543507, -0.0038314806297421455, 0.010540837422013283, 0.0170473400503397, -0.01009342074394226, 0.006093211006373167, -0.010593920946121216, 0.00032418762566521764, -0.0069311694242060184, 0.0012749484740197659, 0.001531834015622735, 0.011496338061988354, -0.012982672080397606, -0.010252670384943485, -0.021172674372792244, -0.015773339197039604, 0.006696085911244154, 0.02366000972688198, 0.007731211371719837, 0.00748096127063036, 0.011761754751205444, -0.014036756008863449, -0.014021589420735836, 0.0006701773381792009, 0.006078043952584267, 0.010275420732796192, -0.0014815944014117122, 0.019170673564076424, -0.012087838724255562, -0.013066088780760765, -0.0011194900143891573, -0.009122753515839577, 0.012027171440422535, -0.004777501802891493, -0.03597534820437431, 0.009858337230980396, 0.010775920934975147, 0.005820210557430983, -0.0010825212812051177, -0.020520508289337158], "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3": [0.0007463862420991063, -0.014264717698097229, -0.009394622407853603, 0.01482726912945509, -0.011556429788470268, -0.02574881911277771, 0.026681048795580864, 0.03957153111696243, -0.010817076079547405, 0.06265224516391754, -0.0018865590682253242, 0.003845446277409792, 0.00048469900502823293, -0.011701086536049843, 0.021569859236478806, 0.03957153111696243, 0.0003767090674955398, -0.006995738949626684, 0.011009951122105122, -0.02013937011361122, 0.04934386536478996, -0.012994956225156784, -0.05291205644607544, 0.03764278069138527, -0.020525120198726654, 0.016330087557435036, -0.025604162365198135, 0.017246244475245476, -0.01371020171791315, -0.01609702967107296, 0.029429517686367035, 0.030313529074192047, 0.004383889026939869, -0.006240311544388533, 0.01755162887275219, -0.037128448486328125, 0.02071799524128437, -0.03622836247086525, -0.030924299731850624, 0.026472100988030434, -0.008896362036466599, 0.0014746905071660876, 0.022389579564332962, -0.022646745666861534, -0.03137434273958206, 0.006939483340829611, -0.001899618306197226, -0.002700250595808029, -0.008398100733757019, -0.03606763482093811, 0.022823547944426537, 0.03336738422513008, 0.020862651988863945, 0.016402415931224823, 0.031840454787015915, -0.012528841383755207, 0.03539257124066353, 0.039764404296875, 0.009643752127885818, -0.0760570615530014, 0.006622043438255787, -0.009434804320335388, 0.014337045140564442, -0.011050133034586906, 0.04130740836262703, 0.0005746069364249706, 0.004512472543865442, 0.009716080501675606, -0.014987998642027378, 0.03140648826956749, 0.004653110634535551, 0.01572735235095024, -0.04747940972447395, 0.010423289611935616, 0.017728431150317192, -0.004974569194018841, 0.02187524549663067, 0.03150292485952377, 0.006196110974997282, -0.012110945768654346, -0.004186995793133974, -0.026375662535429, 0.042368218302726746, 0.011403737589716911, 0.06194503605365753, 0.02009115181863308, -0.006955556571483612, -0.05660882592201233, -0.030168872326612473, -0.015663061290979385, 0.008599013090133667, -0.0006760672549717128, -0.013027102686464787, 0.009836627170443535, -0.01734268106520176, 0.017149806022644043, 0.014602248556911945, 0.005673740990459919, 0.006007254123687744, -0.023386100307106972, -0.0015892100054770708, -0.0051232436671853065, 0.018564224243164062, 0.004032293800264597, 0.007879749871790409, -0.0237075574696064, -0.0027685605455189943, 0.02537914179265499, -0.00915352813899517, 0.030217090621590614, -0.02425403706729412, -0.018274910748004913, 0.02066977694630623, -0.01617739535868168, -0.04609713703393936, -0.05689813941717148, -0.03349596634507179, -0.023193225264549255, -0.011210862547159195, -0.024945173412561417, 0.038124967366456985, 0.010270596481859684, -0.0010618172818794847, -0.005428628996014595, -0.0353604257106781, 0.014610284939408302, 0.010953695513308048, 0.03626050800085068, 0.026600683107972145, 0.004970550537109375, 8.224815246649086e-05, -0.04214319959282875, -0.008382027968764305, 0.013525363057851791, 0.020107224583625793, 0.0008985767490230501, -0.01822669245302677, 0.03632480278611183, 0.010117903351783752, 0.024495132267475128, -0.04979391023516655, -0.015413930639624596, -0.007027884479612112, 0.009306221269071102, 0.011371591128408909, -0.016539035364985466, -0.03677484393119812, 0.04879738762974739, -0.022727109491825104, 0.03577832132577896, -0.08499360829591751, -0.033592402935028076, -0.01470672246068716, 0.01647474430501461, -0.0005103152361698449, -0.020075077190995216, 0.012054690159857273, 0.00288107106462121, 0.03648553043603897, 0.027966883033514023, 0.006814918480813503, -0.046611469238996506, -0.003200520295649767, 0.02944559045135975, 0.033174507319927216, 0.020155442878603935, 0.06982076913118362, 0.012737790122628212, -0.03452463448047638, 0.022309213876724243, -0.028754455968737602, -0.008904398418962955, 0.01376645639538765, 0.032306570559740067, -0.042239636182785034, 0.02420581877231598, 0.025523798540234566, 0.0678277239203453, 0.017069442197680473, -0.007558290846645832, -0.054680075496435165, 0.02391650527715683, -0.002820797497406602, 0.018564224243164062, 0.031181465834379196, 0.03249944746494293, 0.012721716426312923, 0.005826433654874563, 0.025443432852625847, 0.01854815147817135, 0.007779293693602085, -0.006879210006445646, -0.003761063562706113, 0.017374826595187187, 0.006782772485166788, -0.017519483342766762, -0.004512472543865442, -0.013637873344123363, 0.005412556231021881, 0.018998192623257637, -0.007919931784272194, -0.03664625808596611, -0.01019023172557354, 0.022228850051760674, -0.016956930980086327, 0.02383614145219326, -3.6069894122192636e-05, -0.022936057299375534, 0.02750076726078987, -0.036999862641096115, 0.035714030265808105, -0.0322904996573925, -0.03957153111696243, -0.037417758256196976, -0.024945173412561417, 0.01431293599307537, -0.02320929802954197, 0.03491038456559181, -0.03145470470190048, -0.01127515360713005, 0.001052776351571083, 0.016731910407543182, -0.005287990905344486, -0.03282090276479721, -0.024270109832286835, -0.013670018874108791, -0.01189396157860756, 0.013887003995478153, -0.012183274142444134, -0.006163964979350567, 0.007775275502353907, -0.013332488015294075, 0.011138534173369408, -0.008647231385111809, -0.032129768282175064, 0.04429696872830391, 0.06982076913118362, -0.02034831792116165, -0.018853535875678062, 0.01768021285533905, 0.017744503915309906, 0.009032981470227242, 0.0006479396251961589, -0.00023180164862424135, 0.011990399099886417, 0.035553302615880966, -0.009595533832907677, 0.0571553073823452, 0.002032219897955656, 0.015984520316123962, -0.011484102346003056, -0.0018343221163377166, 0.003051845822483301, 0.00012688817514572293, -0.035585448145866394, 0.046772200614213943, 0.036164071410894394, -0.007992260158061981, -0.002216053893789649, -0.026102423667907715, 0.014296863228082657, 0.020492974668741226, -0.02250208891928196, -0.0016735928365960717, 0.026343517005443573, -0.002746460260823369, 0.050854720175266266, -0.01792130619287491, -0.0033652677666395903, 0.03661411255598068, 0.023386100307106972, 0.011829669587314129, -0.02216455712914467, 0.02095908857882023, 0.016048811376094818, -0.03664625808596611, 0.005050915293395519, 0.009780372492969036, 0.040664490312337875, 0.0005103152361698449, -0.04063234478235245, 0.00840613804757595, -0.024736225605010986, -0.024768371134996414, 0.04484345018863678, -0.015148728154599667, -0.042818259447813034, 0.0041990503668785095, -0.06358447670936584, -0.01600862853229046, 0.009330330416560173, -0.01668369211256504, 0.009121382609009743, 0.011403737589716911, -0.002147743944078684, 0.014690649695694447, -0.007586418651044369, -0.013067284598946571, 0.015880046412348747, 0.03378527984023094, 0.014320972375571728, -0.022566379979252815, 0.012118982151150703, -0.004926350433379412, 0.01301906630396843, -0.037835653871297836, 0.04060019925236702, 0.0023667376954108477, -0.033753134310245514, 0.01943216100335121, 0.043943364173173904, -0.027565058320760727, -0.019191067665815353, -0.030377820134162903, -0.007570345886051655, -0.022662818431854248, 0.017149806022644043, 0.002607831498607993, -0.013702165335416794, -0.02179487980902195, 0.025989912450313568, -0.00900887232273817, -0.07708572596311569, 0.03834998980164528, 0.04072878137230873, -0.019335724413394928, 0.01689263992011547, 0.0029252716340124607, -0.03703200817108154, -0.014457592740654945, -0.015831826254725456, -0.01617739535868168, -0.02928486093878746, 0.01954467222094536, -0.04008586332201958, -0.040825217962265015, -0.04600070044398308, -0.018869608640670776, 0.020267954096198082, -0.021248402073979378, -0.016233650967478752, 0.000706203980371356, 0.041821740567684174, -0.009804481640458107, 0.010993877425789833, 0.01422453485429287, 0.032628029584884644, 0.007200668565928936, -0.016378305852413177, -0.0012195329181849957, 0.0009226861293427646, -0.0035420700442045927, 0.014425446279346943, -0.004978587385267019, 0.02325751632452011, -0.009016908705234528, -0.026520319283008575, 0.011620721779763699, 0.004086540080606937, 0.002398883458226919, -0.006280493922531605, -0.03140648826956749, -0.005408538039773703, 0.02038046345114708, -0.011034060269594193, 0.008148971013724804, -0.00424325093626976, -0.03356025740504265, -0.006802863907068968, 0.005818397272378206, -0.028465142473578453, 0.038992904126644135, 0.0010618172818794847, 0.00014302387717179954, -0.0342031754553318, -0.02582918293774128, 0.0342031754553318, -0.004420053213834763, 0.014570103026926517, 0.013903076760470867, 0.014626357704401016, -0.0014375218888744712, 0.02155378647148609, 0.04699721932411194, 0.0038434371817857027, -0.0034637143835425377, 0.03516755253076553, -0.02320929802954197, -0.020621556788682938, -0.0026580593548715115, -0.017439119517803192, 0.01726231724023819, -0.04876524209976196, 0.016040774062275887, 0.0026781505439430475, -0.004391925409436226, 0.011210862547159195, -0.003648553043603897, 0.017824869602918625, -0.03944294899702072, 0.002264272654429078, -0.01930357702076435, -0.026713194325566292, -0.03270839527249336, -0.0005050413310527802, -0.009306221269071102, -0.007385507225990295, -0.005472829565405846, -0.012777972035109997, 0.014112024568021297, -0.006999757140874863, 0.0037952184211462736, 0.03298163414001465, 0.017406973987817764, 0.035038966685533524, 0.011901997961103916, -0.024061162024736404, 0.03998942673206329, -0.033174507319927216, -0.034846093505620956, 0.013284268788993359, 0.0468364916741848, 0.02129662036895752, 0.0010778902797028422, -0.001160264015197754, 0.00047992737381719053, -0.0014666540082544088, 0.003383349860087037, -0.015992555767297745, -0.012697607278823853, -0.0064211320132017136, 0.050436824560165405, -0.024318329989910126, 0.006810900289565325, -0.01580771803855896, 0.011885925196111202, 0.03278875723481178, 0.0034154956229031086, 0.0034275504294782877, 0.02962239272892475, -0.026600683107972145, 0.010865294374525547, -0.010150049813091755, 0.012994956225156784, -0.04934386536478996, -0.04493988677859306, -0.04879738762974739, -0.0025977857876569033, 0.02171451598405838, -0.035038966685533524, -0.006280493922531605, 0.0009091245592571795, -0.05358711630105972, -0.0014787086984142661, -0.004854022059589624, -0.012384185567498207, -0.009442840702831745, 0.002491302788257599, 0.03947509452700615, -0.0275329127907753, -0.04342903196811676, 0.00583447003737092, 0.03722488507628441, 0.00020492974726948887, 0.02695428766310215, 0.0039619747549295425, -0.011685013771057129, 0.008422210812568665, 0.007895822636783123, -0.009290148504078388, 0.007317197043448687, -0.007200668565928936, -0.004685256630182266, 0.018628515303134918, 0.036003343760967255, -0.022309213876724243, -0.02001078613102436, -0.0019076548051089048, 0.017165878787636757, -0.009410695172846317, -0.02891518548130989, -0.0067466082982718945, 0.012842264026403427, -0.020444754511117935, 0.012392221949994564, 0.014280790463089943, -0.017664140090346336, -0.008024405688047409, 0.0225503072142601, 0.0036304709501564503, 0.04426482319831848, -0.03397815302014351, -0.004416035022586584, 0.007526145316660404, -0.02553987130522728, -0.04969746991991997, -0.005657668225467205, -0.028834819793701172, -0.019898276776075363, -0.02799902856349945, 0.014152206480503082, -0.014738867990672588, 0.004508454352617264, -0.0021839081309735775, -0.046482887119054794, 0.03789994865655899, 0.005348264239728451, 0.027597205713391304, 0.003138237865641713, -0.030506404116749763, -0.04934386536478996, 0.00781947560608387, -0.021489495411515236, -0.0076788379810750484, 0.012263638898730278, 0.04882953315973282, -0.014811196364462376, -0.018660660833120346, 0.027098944410681725, -0.011877888813614845, -0.01980183832347393, -0.0054406835697591305, -0.007108249235898256, 0.0021276529878377914, -0.020943015813827515, -0.008044497109949589, -0.004040330648422241, -0.015301420353353024, 0.020444754511117935, -0.017423046752810478, -0.030056361109018326, 0.020782286301255226, -0.01630597747862339, 0.024012943729758263, 0.013653946109116077, -0.013573581352829933, -0.014304899610579014, 0.014529920183122158, 0.0006775740766897798, -0.0017609894275665283, -0.051272615790367126, 0.024093307554721832, -0.02907591313123703, -0.005215662997215986, 0.005541139282286167, 0.03677484393119812, -0.0031683745328336954, 0.00015193932631518692, 0.000987982377409935, 0.030892154201865196, -0.005874652415513992, 0.03365669772028923, 0.005484884139150381, 0.008807960897684097, -0.011492138728499413, -0.03937865421175957, 0.009820554405450821, -0.017374826595187187, -0.025845257565379143, -0.01909462921321392, -0.017937378957867622, 0.03577832132577896, 0.008807960897684097, -0.006469350773841143, 0.0038133005145937204, -0.007566327694803476, -0.029590247198939323, 0.00892047118395567, -0.025057682767510414, 0.020364390686154366, 0.01270564366132021, 0.002937326207756996, 0.026922142133116722, -0.009249965660274029, 0.005171462427824736, 0.039700113236904144, 0.0008403123938478529, -0.00046033848775550723, -0.010278632864356041, -0.010720638558268547, 0.03722488507628441, -0.018403494730591774, -0.025009464472532272, -0.0016966976691037416, -0.03635694831609726, -0.0025736764073371887, 0.0057340143248438835, -0.034331757575273514, 0.004990641959011555, 0.008767778053879738, 0.0032246296759694815, 0.01684442162513733, -0.022228850051760674, 0.04320400953292847, -0.0091294189915061, 0.001198437181301415, 0.008056551218032837, 0.025395214557647705, 0.022743182256817818, 0.01893390156328678, 0.020316172391176224, 0.003937865607440472, -0.0020282017067074776, -0.008534721098840237, -0.011355518363416195, 0.03880003094673157, -0.009635715745389462, 0.02158593200147152, 0.005320136900991201, 0.016667619347572327, 0.01325212325900793, -0.009442840702831745, 0.04063234478235245, -0.0012737789656966925, 0.005058951675891876, 0.004186995793133974, 0.014393300749361515, 0.01634616032242775, 0.0056616864167153835, 0.008968689478933811, 0.03716059401631355, -0.03336738422513008, 0.03902505338191986, -0.008365955203771591, -0.0004043344233650714, 0.018901754170656204, -0.01792130619287491, 0.021184109151363373, 0.0032266387715935707, -0.005774196702986956, -0.01896604709327221, 0.004841967485845089, 0.006830991245806217, -0.006589897442609072, 0.015213019214570522, -0.0010120917577296495, 0.01975362002849579, 0.01125104445964098, -0.021312693133950233, -0.009957174770534039, -0.013493216596543789, 0.008181116543710232, 0.009627679362893105, 0.06265224516391754, -0.0038012457080185413, -0.002850934397429228, -0.000674560375045985, 0.007646691985428333, 0.049858201295137405, 0.015397857874631882, 0.016330087557435036, 0.019817911088466644, 0.028690163046121597, 0.020653704181313515, 0.013236050494015217, -0.024093307554721832, -0.00020555758965201676, -0.004874113015830517, -0.0036706533282995224, 0.0222609955817461, 0.04169315844774246, -0.00998128391802311, 0.03394600749015808, 0.013051211833953857, 0.0103750703856349, 0.006352821830660105, 0.03404244780540466, -0.00776723911985755, 0.008639195002615452, 0.02038046345114708, 0.004066449124366045, -0.017953451722860336, 0.0237075574696064, 0.005742051173001528, 0.014144170098006725, -0.02013937011361122, -0.002539521548897028, 0.024350475519895554, 0.0007825503125786781, -0.02799902856349945, -0.029686685651540756, -0.03998942673206329, -0.02058941125869751, 0.024720152840018272, -0.003184447530657053, -0.0016735928365960717, -0.0071966503746807575, 0.012721716426312923, -0.020444754511117935, -0.01510050892829895, -0.0025656400248408318, 0.013597691431641579, -0.007317197043448687, 0.028465142473578453, -0.009000835940241814, 0.009828590787947178, 0.0003209561400581151, -0.036581967025995255, -0.007357379421591759, -0.04114667698740959, -0.03664625808596611, -0.01980183832347393, -0.01801774464547634, -0.021730588749051094, -0.010109866969287395, 0.0030197000596672297, -0.020075077190995216, -0.029895633459091187, -0.0048379492945969105, 0.01838742196559906, 0.014626357704401016, -0.00395192950963974, -0.007064048666507006, 0.00021258949709590524, 0.00998128391802311, 0.008856179192662239, -0.013011028990149498, 0.0005997208645567298, 0.016956930980086327, 0.03240300714969635, -0.007413634564727545, 0.0277097150683403, -0.02807939238846302, -0.020991234108805656, -0.02912413328886032, 0.022518161684274673, 0.005995199549943209, -0.025346996262669563, 0.012786008417606354, -0.005087079480290413, 0.04159671813249588, -0.006630079820752144, 0.0223735049366951, 0.009643752127885818, -0.003742981469258666, -0.026697121560573578, -0.03491038456559181, 0.018146326765418053, 0.007369433995336294, -0.006043418310582638, 0.014144170098006725, -0.005279954522848129, 0.005472829565405846, 0.006947520188987255, -0.01004557590931654, -0.0234182458370924, 0.02566845528781414, -0.0008493533823639154, -0.03241908177733421, -0.03777136281132698, 0.046032845973968506, -0.009442840702831745, 0.02013937011361122, -0.01588808186352253, -0.05291205644607544, 0.018435640260577202, 0.03780350834131241, 0.019850056618452072, -0.013388742692768574, 0.030056361109018326, -0.022035975009202957, 0.017712358385324478, 0.02058941125869751, -0.014907633885741234, -0.007702947128564119, 0.004588819108903408, 0.0018785225693136454, 0.017069442197680473, 0.046322159469127655, 0.015663061290979385, 0.053972866386175156, 0.0222609955817461, 0.0037871820386499166, 0.0008488511084578931, -0.03049033135175705, -0.008293626829981804, -0.007936004549264908, -0.033463820815086365, -0.020476901903748512, -0.009298184886574745, -0.018274910748004913, -0.04895811527967453, 0.010809039697051048, -0.002282354747876525, 0.005348264239728451, -0.03677484393119812, 0.028095465153455734, -0.02308071404695511, 0.010278632864356041, -0.0008357918704859912, 0.011580539867281914, -0.016956930980086327, -0.0031965021044015884, 0.018692806363105774, -0.0026560502592474222, -0.021778807044029236, -0.004641056060791016, 0.02499339170753956, -0.007964132353663445, 0.0020593430381268263, 0.01859636977314949, -0.02013937011361122, 0.02645602822303772, 0.031840454787015915, 0.016539035364985466, -0.017857015132904053, -0.01297888346016407, -0.01256098784506321, -0.03307807072997093, 0.012657425366342068, 0.01507639978080988, -0.0033512040972709656, -0.0006775740766897798, 0.012721716426312923, 0.0008774810121394694, -0.005255844909697771, 0.026311371475458145, 0.021280547603964806, 0.03397815302014351, 0.018499931320548058, -0.021650224924087524, 0.013750383630394936, 0.023450391367077827, 0.003057873109355569, 0.01705336943268776, -0.005006714724004269, -0.0021658260375261307, -0.011017987504601479, -0.0011642822064459324, -0.016490817070007324, 0.003799236612394452, 0.004040330648422241, -0.02828834019601345, 0.0198822021484375, 0.0008759741904214025, 0.039410803467035294, -0.0014746905071660876, 0.021987754851579666, -0.017085514962673187, 0.0011803550878539681, -0.01043936237692833, -0.056512389332056046, -0.010246487334370613, 0.007715002167969942, -0.025073757395148277, 0.011612685397267342, 0.010503653436899185, 0.012890482321381569, 0.029397372156381607, 0.0636487677693367, 0.022936057299375534, -0.013444998301565647, -0.016289904713630676, 0.006710444577038288, 0.004641056060791016, 0.021778807044029236, 0.026520319283008575, 0.031711872667074203, -0.0157675351947546, 0.007775275502353907, 0.01216720137745142, 0.013260159641504288, -0.029043767601251602, -0.015831826254725456, -0.005766160320490599, -0.013300341553986073, -0.002501348266378045, -0.015237129293382168, -0.007072085049003363, -0.0016766065964475274, -0.01975362002849579, 0.008293626829981804, -0.0024752297904342413, 0.002390847075730562, 0.005774196702986956, 0.010993877425789833, -0.0022723092697560787, -0.011484102346003056, -0.021200181916356087, 0.0019588873255997896, 0.01362180057913065, 0.016201503574848175, -0.036999862641096115, 0.025764891877770424, -0.027195382863283157, -0.01801774464547634, -0.000691135588567704, -0.026070278137922287, -0.009290148504078388, 0.005167444236576557, -0.01817847415804863, -0.01447366550564766, -0.012569024227559566, -0.0015008089831098914, -0.007847603410482407, 0.014730831608176231, 0.007019848097115755, 0.0025636309292167425, -0.007570345886051655, -0.01401558704674244, -0.0007514090393669903, -0.030811788514256477, -0.064580999314785, -0.012046653777360916, 0.05011536553502083, -0.06316658109426498, 0.003371295053511858, 0.0020513064227998257, 0.006163964979350567, 0.009555350989103317, 0.010270596481859684, 0.025073757395148277, -0.0001883545337477699, -0.007698928937315941, 0.03834998980164528, 0.0074899811297655106, 0.009225856512784958, -0.012986919842660427, 0.016330087557435036, -0.005778214894235134, -0.015261238440871239, -0.010206304490566254, 0.013051211833953857, 0.002445093123242259, -0.0005394474137574434, 0.01376645639538765, -0.013838784769177437, -0.0025797036942094564, -0.014779050834476948, 0.04471486434340477, 0.010752784088253975, 0.007365415804088116, 0.022534234449267387, -0.024479057639837265, 0.024688007310032845, -0.011548393405973911, -0.018917826935648918, -0.005569267086684704, -0.02462371438741684, -0.01350125391036272, 0.007060030475258827, -0.010294705629348755, 0.04503632336854935, 0.000596707162912935, -0.027629351243376732, 0.010158086195588112, 0.024575496092438698, 0.030715351924300194, 0.000807161966804415, -0.024784443899989128, -0.0022240905091166496, -0.022936057299375534, 0.02533092349767685, -0.013653946109116077, -0.0007745138718746603, -0.02108767256140709, -0.013453034684062004, -0.010535799898207188, 0.0042995065450668335, 0.018708879128098488, -0.0023928561713546515, 0.026359589770436287, 0.0035701976157724857, 0.011009951122105122, -0.0008593989768996835, -0.0028449068777263165, -0.019833983853459358, -0.016860494390130043, -0.012777972035109997, 0.007228796370327473, -0.01584789901971817, -0.006525605916976929, 0.01788916066288948, 0.030265310779213905, -0.013726274482905865, -0.011693050153553486, -0.02142520435154438, -0.020621556788682938, -0.04146813601255417, 0.00035912933526560664, 0.02645602822303772, -0.0468364916741848, -0.010262560099363327, -0.021698443219065666, -0.013179794885218143, -0.03333523869514465, -0.0179695263504982, 0.011074242182075977, -0.0182588379830122, -0.010640273801982403, 0.011910034343600273, -0.017937378957867622, -0.013268196024000645, -0.00831773690879345, 0.008084679022431374, -0.005079043097794056, -0.0053683556616306305, -0.002919244347140193, -0.002406919840723276, -0.028609799221158028, 0.0017961489502340555, -0.0038293732795864344, -0.0412752591073513, 0.02246994338929653, 0.05217270180583, 0.030795715749263763, 0.013179794885218143, -0.023852214217185974, -0.01689263992011547, 0.014899597503244877, -0.015084436163306236, -0.02933308109641075, -0.008639195002615452, -0.015012107789516449, -0.004633019212633371, 0.0319368951022625, -0.015880046412348747, -0.024446912109851837, 0.019978640601038933, 0.037835653871297836, -0.008084679022431374, -0.01917499490082264, -0.0012235511094331741, -0.022952130064368248, -0.016506889835000038, 0.006103691644966602, -0.008791888132691383, 6.837269756942987e-05, -0.008382027968764305, 0.013919149525463581, 0.0010216350201517344, -0.026134569197893143, 0.0038032548036426306, 0.0024209837429225445, 0.018660660833120346, -0.01867673359811306, -0.013870930299162865, -0.10312385857105255, -0.009362475946545601, -0.00744578056037426, 0.017615921795368195, 0.0060273450799286366, -0.012786008417606354, 0.0072046867571771145, 0.008896362036466599, -0.03381742537021637, -0.004524527117609978, 0.015462149865925312, 0.007919931784272194, 0.015478222630918026, 0.012970847077667713, -0.017857015132904053, -0.001389303128235042, -0.01043936237692833, -0.01888568140566349, -0.003847455373033881, 0.01635419763624668, -0.012617242522537708, 0.009571424685418606, 0.02562023513019085, -0.017165878787636757, -0.015421967953443527, 0.04445770010352135, 0.003580243093892932, -0.00830166321247816, 0.0011532320640981197, -0.02545950748026371, -0.008783850818872452, 0.0001815737778088078, -0.019850056618452072, -0.02407723478972912, 0.018194546923041344, 0.009973247535526752, -0.0014626358170062304, -0.014007550664246082, 0.008040478453040123, 0.01006968505680561, -0.002664086641743779, 0.0023044550325721502, -0.0003129196702502668, -0.012681534513831139, 0.012472586706280708, -0.013067284598946571, 0.0018112172838300467, -0.025636307895183563, -0.03040996566414833, 0.003907728940248489, 0.0032628029584884644, 0.015510368160903454, -0.023064641281962395, -0.022936057299375534, -0.01768021285533905, -0.0027685605455189943, 0.025716673582792282, -0.01713373325765133, -0.008390064351260662, 0.012826191261410713, 0.0474151149392128, 0.019335724413394928, 0.034171029925346375, -0.01972147449851036, -0.028432996943593025, 0.004918313585221767, 0.012593133375048637, 0.039282217621803284, 0.024479057639837265, -0.008185135200619698, 0.030056361109018326, -0.012954774312675, -0.0030739461071789265, 0.02312893234193325, 0.012745826505124569, 0.03552115336060524, 0.029027694836258888, 0.022952130064368248, 0.008124861866235733, -0.010093794204294682, -0.019239285960793495, 0.021457349881529808, -0.000755929562728852, -0.01689263992011547, -0.012842264026403427, -0.014136133715510368, -0.005918852984905243, 0.0019799829460680485, 0.00652158772572875, -0.002370755886659026, 0.035424716770648956, 0.010680455714464188, 0.021312693133950233, 0.006103691644966602, -0.01875709928572178, 0.06622043251991272, -0.016940858215093613, 0.01647474430501461, -0.009241929277777672, -0.009933064691722393, -0.002869016258046031, -0.03619621694087982, 0.0006760672549717128, -0.005541139282286167, -0.010897439904510975, 0.013782529160380363, 0.01085725799202919, -0.007719020359218121, -0.011974326334893703, -0.0106081273406744, 0.009659825824201107, -0.03471750766038895, -0.020573338493704796, 0.007297106087207794, -0.01854815147817135, 0.00028077384922653437, -0.025266632437705994, -0.011596612632274628, -0.0064291683956980705, 0.010302742011845112, -0.004508454352617264, 0.0495045967400074, -0.009635715745389462, -0.002887098351493478, 0.008679376915097237, -0.015438040718436241, -0.007417652755975723, -0.016241686418652534, -0.0016826338833197951, 0.014947816729545593, -0.014481701888144016, -0.006067527458071709, -0.013637873344123363, -0.0010080734500661492, -0.023884359747171402, 0.011660903692245483, 0.03519969806075096, -0.025700600817799568, 0.03786780312657356, -0.031342197209596634, 0.01909462921321392, 0.01362180057913065, 1.470735060138395e-05, 0.01145999226719141, -0.018564224243164062, 0.010664382949471474, -0.006489441730082035, -0.011154606938362122, 0.022244922816753387, -0.0015590733382850885, 0.009828590787947178, -0.005818397272378206, 0.0031864566262811422, 0.008080661296844482, -0.0195928905159235, -0.028931258246302605, -0.029043767601251602, 0.0027544968761503696, -0.010037538595497608, -0.02192346379160881, -0.019850056618452072, 0.00023607102048117667, 0.023578975349664688, -0.005135298240929842, 0.016651546582579613, 0.014803159981966019, -0.02221277728676796, 0.004416035022586584, 0.0019649146124720573, 0.008000296540558338, -0.010270596481859684, -0.02362719364464283, 0.0037007899954915047, -0.0058987620286643505, -0.013268196024000645, -0.01522105559706688, 0.006618025247007608, 0.003590288804844022, 0.014947816729545593, -0.009812518022954464, 0.0039639840833842754, 0.025845257565379143, -0.020621556788682938, -0.009852700866758823, -0.007831530645489693, 0.008791888132691383, -0.01025452371686697, 0.015325530432164669, 0.015550551004707813, 0.02038046345114708, 0.014803159981966019, 0.021232329308986664, -0.008759741671383381, 0.00323869357816875, 0.002310482319444418, -0.0038333917036652565, 0.02566845528781414, 0.052751325070858, -0.026922142133116722, -0.014602248556911945, 0.006023326888680458, 0.0057340143248438835, 0.019978640601038933, 0.021023379638791084, 0.0006886242190375924, -0.002730387495830655, -0.04487559571862221, 0.008373991586267948, 0.004645074252039194, -0.012689570896327496, -0.0023285644128918648, 0.017037296667695045, 0.015855936333537102, -0.010101830586791039, 0.01350125391036272, -0.019062483683228493, 0.02242172509431839, -0.018082035705447197, 0.023434318602085114, -0.004267360549420118, 0.02512197569012642, -0.02063762955367565, -0.003714853897690773, -0.039410803467035294, 0.0006921401363797486, 0.03937865421175957, 0.0059550171718001366, -0.025395214557647705, -0.004641056060791016, 0.014987998642027378, 0.004343706648796797, -0.0013712210347875953, 0.0064291683956980705, -0.009266038425266743, -0.017423046752810478, -0.0064934599213302135, 0.032836977392435074, -0.018451713025569916, 0.019705401733517647, -0.01975362002849579, -0.010310778394341469, -0.011226935312151909, 0.009828590787947178, -0.0017107614548876882, 0.007341306656599045, 0.02496124617755413, -0.032258350402116776, -0.01325212325900793, -0.007923949509859085, -0.009812518022954464, 0.01343696191906929, 0.011861815117299557, -0.009169600903987885, 0.009700007736682892, 0.00831773690879345, 0.013332488015294075, -0.004677219782024622, -0.00774714769795537, 0.013935222290456295, 0.005127261858433485, -0.02187524549663067, 0.007666783407330513, 0.016418488696217537, -0.03320665284991264, 0.017712358385324478, -0.0029815267771482468, 0.0017167888581752777, -0.005806342698633671, 0.00546077499166131, -0.03111717477440834, -0.0038072732277214527, 0.0008001300739124417, -0.02595776692032814, 0.02333788014948368, 0.027259673923254013, 0.010471507906913757, -0.0035701976157724857, -0.017439119517803192, -0.0025696582160890102, 0.0021758717484772205, 0.007128340192139149, -0.01784094236791134, -0.005589358042925596, 0.015261238440871239, 0.0225503072142601, 0.005934926215559244, 0.0285776536911726, 0.0041427952237427235, 0.020862651988863945, -0.0010879358742386103, -0.02687392383813858, 0.021328765898942947, 0.013002992607653141, 0.00023808014520909637, 0.02163415215909481, -0.004950459580868483, 0.009571424685418606, 0.002248199889436364, 0.009258002042770386, -0.004480326548218727, 0.0039057198446244, -0.014449555426836014, -0.0495045967400074, -0.012697607278823853, -0.005758123937994242, -0.0003317551454529166, 0.008430247195065022, 8.532460924470797e-05, -0.003873573848977685, -0.02030009962618351, -0.0006087618530727923, -0.01403969619423151, -0.0001703980815364048, -0.02296820469200611, 0.001672588288784027, 0.021360911428928375, 0.012263638898730278, -0.020123297348618507, 0.007526145316660404, -0.02999207004904747, 0.01071260217577219, -0.006015290506184101, 0.016161322593688965, 0.015735389664769173, -0.028513360768556595, -0.00208546151407063, 0.009989320300519466, -0.002832852303981781, -0.006734553724527359, 0.016330087557435036, -0.0076788379810750484, 0.05786251649260521, -0.0023948652669787407, 0.006405058782547712, -0.0022883820347487926, -0.0009206769755110145, 0.0048299129121005535, 0.006393004208803177, -0.011138534173369408, 0.0044280895963311195, 0.011194789782166481, 0.00035586452577263117, 0.004737493582069874, -0.020444754511117935, 0.01528534758836031, -0.00806860625743866, -0.00415083160623908, 0.017294462770223618, 0.02179487980902195, -0.010776893235743046, 0.0006936470163054764, 0.022534234449267387, 0.004938405007123947, -0.011283189989626408, -0.0036606076173484325, 0.024237964302301407, 0.017503410577774048, 0.008518648333847523, -0.009643752127885818, -0.017937378957867622, -0.009201747365295887, 0.0018061944283545017, -0.00013749882054980844, 0.03349596634507179, -0.005271918140351772, 0.017423046752810478, 0.006863137241452932, -0.0195928905159235, 0.007996277883648872, -0.028015101328492165, 0.031711872667074203, -0.007992260158061981, -0.009627679362893105, 0.010817076079547405, -0.018290983512997627, -0.0066662440076470375, 0.009266038425266743, 0.021537713706493378, 0.0104634715244174, -0.006011272314935923, 0.002427011029794812, 0.005918852984905243, -0.029268788173794746, 0.0034797873813658953, -0.021328765898942947, 0.005629540421068668, -0.012552951462566853, -0.005263881757855415, -0.0074980175122618675, -0.0014746905071660876, -0.028770528733730316, -0.02795080840587616, 0.018564224243164062, 0.02205204777419567, 0.020605484023690224, 0.005786251276731491, -0.011813596822321415, 0.024929100647568703, -0.0495045967400074, -0.01610506698489189, -0.00919371098279953, 0.0022502089850604534, -0.013340524397790432, 0.038703594356775284, -0.02891518548130989, 0.024768371134996414, 0.030554622411727905, 0.01401558704674244, 0.01322801411151886, -0.025186266750097275, -0.028191903606057167, 0.005111188627779484, 0.00500269653275609, -0.02042868174612522, -0.04146813601255417, 0.0002634452248457819, -0.01510050892829895, 0.002125643892213702, 0.0008578921551816165, 0.006015290506184101, -0.014377227984368801, 0.000601729960180819, -0.027516840025782585, -0.021232329308986664, -0.022807475179433823, 0.010616164654493332, -0.013027102686464787, 0.0031020736787468195, 0.009169600903987885, 0.0014335035812109709, 0.009884846396744251, 0.01776057668030262, -0.005135298240929842, 0.01407987903803587, 0.041532427072525024, -0.038124967366456985, 0.004962514154613018, -0.022196704521775246, 0.0009041018201969564, 0.0013219977263361216, -0.027645424008369446, -0.012577060610055923, -0.00314627424813807, -0.002907189540565014, -0.009708044119179249, -0.003740972373634577, 0.017535556107759476, -0.02779008075594902, 0.02467193268239498, -0.006103691644966602, -0.0010537808993831277, -0.0036063615698367357, 0.016322050243616104, 0.007043957710266113, 0.018499931320548058, 0.011548393405973911, -0.019914349541068077, -0.00855079386383295, -0.004785712342709303, 0.03413888439536095, -0.0025656400248408318, 0.0018684770911931992, -0.00973215326666832, 0.009563388302922249, 0.0020000741351395845, 0.007698928937315941, 0.024157600477337837, 0.0017419027863070369, -0.029895633459091187, -0.030265310779213905, 0.009603570215404034, -0.011178716085851192, 0.0012607197277247906, 0.00010924563684966415, 0.024093307554721832, -0.02687392383813858, 0.0012245556572452188, 0.004347725305706263, -0.018114181235432625, -0.001624369528144598, 0.0031965021044015884, 0.016989076510071754, -0.011676977388560772, 0.012930665165185928, 0.006931446958333254, 0.0011361546348780394, 0.008221299387514591, -0.01593630015850067, 0.0016384333139285445, 0.02920449711382389, 0.006991720758378506, 0.03822140395641327, -0.023241443559527397, -0.0106081273406744, 0.017214098945260048, -0.023562902584671974, 0.01113049779087305, -0.007437744177877903, 0.025700600817799568, -0.008639195002615452, 0.007160486187785864, -0.028850892558693886, -0.03436390310525894, -0.002169844228774309, -0.0002296669699717313, -0.012689570896327496, -0.01618543080985546, 0.004014212172478437, 0.012826191261410713, 0.005380410235375166, -0.0037269084714353085, 0.0059630535542964935, 0.009282112121582031, 0.004074485506862402, -0.007855639792978764, -0.0223735049366951, 0.0021557805594056845, 0.00840613804757595, -0.023225370794534683, 0.005930907558649778, -0.0066582076251506805, -0.00873563252389431, -0.009635715745389462, -0.007345324847847223, 0.010037538595497608, 0.015116581693291664, -0.004504436161369085, -0.000752413587179035, -0.02234135940670967, -0.00026269181398674846, 0.00900887232273817, 0.007264960091561079, -0.0030076452530920506, -0.009161564521491528, 0.022357432171702385, -0.0059710899367928505, -0.013758420012891293, -0.001236610347405076, -0.02645602822303772, -0.014120060950517654, 0.009700007736682892, 0.004315579310059547, -0.022277068346738815, -0.004424071405082941, 0.009113346226513386, 0.08274339884519577, -0.003118146676570177, -0.0034898328594863415, -0.008285590447485447, 0.0006725512794218957, -0.02862587198615074, -0.010817076079547405, 0.0013571572490036488, 0.03597119823098183, 0.007899840362370014, 0.0012607197277247906, -0.0008674354176037014, 0.018869608640670776, -0.017069442197680473, -0.01763199456036091, 0.03468536213040352, 0.019769692793488503, 0.02949381060898304, -0.0036324800457805395, 0.014120060950517654, -0.017149806022644043, 0.008185135200619698, 0.0004510463331826031, 0.02603813260793686, -0.004685256630182266, 0.015028180554509163, -0.006196110974997282, -0.008036460727453232, -0.0037490087561309338, 0.023562902584671974, 0.009868773631751537, -0.013308378867805004, -0.011210862547159195, -0.013782529160380363, -0.003994120750576258, 0.018901754170656204, -0.008952616713941097, 0.009563388302922249, -0.0026681048329919577, 0.004982605576515198, 0.007056012284010649, 0.012994956225156784, 0.014095951803028584, -0.001188391586765647, 0.0009904936887323856, 0.003901701420545578, -0.005199589766561985, -0.0017981580458581448, 0.0007142404210753739, -0.01129122730344534, -0.012175237759947777, -0.011339445598423481, 0.020814431831240654, 0.016699764877557755, 0.02491302788257599, 0.011484102346003056, 0.020894797518849373, -0.01177341490983963, 0.004870094824582338, -0.005392464809119701, -0.0077270567417144775, -0.00553310289978981, 0.00045029292232356966, -0.02949381060898304, 0.001279806368984282, -0.026761412620544434, -0.02050904743373394, -0.01568717136979103, -0.009241929277777672, -0.002603813074529171, -0.00834184605628252, 0.011082278564572334, 0.0013501252979040146, -0.036003343760967255, -0.002302445936948061, 0.006413095630705357, -0.007622582837939262, 0.005581321660429239, 0.002702259924262762, -0.0029915724880993366, 0.0001233722286997363, 0.006766699720174074, -0.0007785321213304996, -0.015815753489732742, 0.011701086536049843, -0.003696771804243326, 0.006011272314935923, -0.010310778394341469, -0.008116825483739376, -0.02729181945323944, -0.007108249235898256, 0.002141716657206416, -0.003296957816928625, -7.709979399805889e-05, 0.008349882438778877, -0.0024892936926335096, -0.012263638898730278, -0.007027884479612112, 0.011395701207220554, 0.0033692859578877687, 0.00682295486330986, 0.03696771711111069, -0.010310778394341469, 0.005557212512940168, -0.005352282430976629, -0.002501348266378045, 0.009491059929132462, -0.003600334282964468, 0.004096585791558027, 0.007180577609688044, -0.008502575568854809, -0.014031659811735153, -0.002907189540565014, 0.016506889835000038, -0.03584261238574982, 0.01244044117629528, 0.015550551004707813, -0.001662542694248259, -0.017005151137709618, -0.005814379081130028, -0.01447366550564766, 0.010029502213001251, -0.015775572508573532, -0.009555350989103317, 0.016418488696217537, -0.006260402500629425, 0.0021899354178458452, -0.0010678446851670742, -0.020203661173582077, -0.015004071407020092, 0.008976725861430168, -0.0038996923249214888, 0.0064372047781944275, 0.018162401393055916, 0.020573338493704796, -0.012721716426312923, -0.015060327015817165, -0.030393892899155617, 0.021457349881529808, -0.015904154628515244, 0.018290983512997627, 0.019367869943380356, 0.011090314947068691, 0.010495617054402828, 0.004604891873896122, 0.012810117565095425, -0.023900432512164116, -0.015663061290979385, -0.006774736102670431, -0.002623904263600707, 0.010881367139518261, -0.03693557158112526, 0.006863137241452932, -0.021248402073979378, 0.008840106427669525, 0.000850357988383621, -0.02404508925974369, 0.04513275995850563, -0.02200382947921753, 0.0019287505419924855, 0.012962810695171356, 0.012287748046219349, -0.004805803298950195, -0.016040774062275887, 0.015992555767297745, -0.0026098405942320824, 0.009089237079024315, 0.026311371475458145, 0.021184109151363373, -0.013244086876511574, 0.0005590362707152963, 0.0007689888007007539, -0.0019619008526206017, -0.029188424348831177, -0.009113346226513386, 0.006091637071222067, -0.01052776351571083, -0.0030357728246599436, -0.0274204034358263, 0.02325751632452011, -0.004271378740668297, -0.0007689888007007539, 0.0041267224587500095, 0.0015872009098529816, -0.0018986137583851814, -0.009217820130288601, 0.006931446958333254, -0.006698389537632465, 0.005199589766561985, -0.016908712685108185, -0.013268196024000645, 0.026552464812994003, -0.004347725305706263, -0.007232814561575651, -0.02137698419392109, 0.0027986974455416203, 0.008357918821275234, 0.009169600903987885, 0.019416088238358498, -0.018708879128098488, 0.010061648674309254, 5.091851198812947e-05, 0.011869852431118488, 0.009410695172846317, -0.0005816388293169439, -0.008542757481336594, -0.01158857624977827, 0.006638116203248501, -0.020075077190995216, -0.005079043097794056, -0.038253553211688995, -0.0182588379830122, 0.005621504038572311, -0.003401431953534484, -0.017728431150317192, 0.0013270205818116665, 0.02328966185450554, -0.006762681528925896, 0.028593726456165314, 0.012970847077667713, 0.008832070045173168, 0.010495617054402828, 0.017648067325353622, 0.00892047118395567, -0.022325286641716957, 0.01166894007474184, 0.001307933940552175, 0.010133977048099041, 0.02229314111173153, 0.0030337637290358543, 0.013509290292859077, 0.0016173376934602857, -0.018580297008156776, 0.023241443559527397, -0.0009478000574745238, 0.028432996943593025, 0.014690649695694447, 0.0015771553153172135, 0.023595048114657402, -0.013002992607653141, -0.00961160659790039, 0.00900887232273817, 0.0036224345676600933, -0.006284512113779783, 0.005279954522848129, -0.0078114396892488, 0.0007735093240626156, -0.008743668906390667, -0.009780372492969036, -3.154938531224616e-05, 0.0035219788551330566, -0.0037269084714353085, 0.004926350433379412, 0.019367869943380356, 0.013959331437945366, 0.008815997280180454, 0.014272754080593586, 0.0025997948832809925, 0.0033371401950716972, -0.010109866969287395, -0.0003335131041239947, 0.030104581266641617, -0.019416088238358498, -0.021457349881529808, 0.0031141284853219986, 0.0062162019312381744, -0.009507132694125175, 0.0010316806146875024, 0.006131819449365139, 0.0212162546813488, 0.0048942044377326965, 0.0033592404797673225, -0.011138534173369408, 0.0207501407712698, -0.001259715179912746, -0.011717159301042557, -0.0032346753869205713, -0.01522909291088581, 0.010093794204294682, 0.007345324847847223, -0.016989076510071754, 0.003937865607440472, 0.01875709928572178, -0.019625036045908928, 0.009683934971690178, -0.007759202737361193, 0.0069033196195960045, 0.012094873003661633, -0.007120303809642792, 0.00021371961338445544, 0.0010487580439075828, -0.008872251957654953, -0.0019136820919811726, -0.01817847415804863, -0.016113102436065674, 0.026423882693052292, -0.00615592859685421, 0.003138237865641713, 0.013380706310272217, 0.00269824150018394, -0.012753862887620926, 0.009121382609009743, -0.014521883800625801, -0.010953695513308048, -0.003704808186739683, 0.021746661514043808, -0.005705886986106634, 6.969118112465367e-05, 0.0033592404797673225, -0.019335724413394928, 0.001026155543513596, 0.0005183516768738627, -0.00027374192723073065, -0.024720152840018272, -0.012882445938885212, -0.020444754511117935, 0.008815997280180454, 0.0017147797625511885, -0.013051211833953857, -0.006123783066868782, -0.0012004462769255042, 0.008390064351260662, -0.008000296540558338, 0.02745254896581173, -0.01039917953312397, 0.010278632864356041, -0.003327094716951251, 0.012448477558791637, -0.011363554745912552, -0.028272267431020737, 0.012938701547682285, -0.009049054235219955, 0.002549567027017474, -0.006742590107023716, 0.009370513260364532, 0.02229314111173153, -0.008590975776314735, 0.001634415122680366, -0.015020144172012806, 0.018065962940454483, -0.026423882693052292, -0.012697607278823853, -0.0011200816370546818, -0.007228796370327473, 0.026938214898109436, -0.008502575568854809, 0.00266207754611969, -0.006240311544388533, 0.01233596634119749, 0.03040996566414833, 0.020573338493704796, 0.001662542694248259, 0.01635419763624668, -0.0005725977825932205, 0.003789191134274006, -0.0035561337135732174, 0.00017303503409493715, 0.00831773690879345, -0.03397815302014351, -0.004616946447640657, -0.011845742352306843, -0.0006921401363797486, -0.0030197000596672297, 0.0011562457075342536, 0.005693832412362099, -0.002778606256470084, -0.011243008077144623, 0.01671583764255047, -0.01954467222094536, 0.00031191512243822217, -0.0169247854501009, -0.008711523376405239, -0.021810954436659813, -0.012231492437422276, -0.01297888346016407, 0.003771109040826559, 0.00834184605628252, -0.0010688492329791188, 0.006401040591299534, -0.008016369305551052, 0.0418538860976696, 0.008414174430072308, -0.013613764196634293, -0.008727596141397953, 0.01917499490082264, 0.011419810354709625, 0.018290983512997627, -0.00015985022764652967, 0.00668633496388793, -0.018949974328279495, -0.00737345265224576, -0.0071966503746807575, -0.013702165335416794, 0.009306221269071102, 0.013991477899253368, 0.008454356342554092, -0.0223735049366951, 0.01930357702076435, -0.0106081273406744, 0.010632237419486046, 0.0019106684485450387, -0.001795144402422011, 0.01676405593752861, 0.007136377040296793, 0.013316415250301361, -0.03201725706458092, 0.011017987504601479, 0.006268439348787069, 0.022743182256817818, 0.004387907218188047, 0.001601264695636928, 0.009434804320335388, -0.0220841933041811, 0.008566866628825665, 0.011363554745912552, 0.0013672028435394168, 0.01264938898384571, -0.009474987164139748, 0.021184109151363373, -0.006256384309381247, 0.0144334826618433, 0.012456513941287994, 0.028047246858477592, 0.007787330076098442, 0.016699764877557755, -0.01883746311068535, 0.009933064691722393, -0.0001526927517261356, -0.010318814776837826, 0.009788408875465393, 0.0004246766911819577, -0.0033853589557111263, -0.0010849221143871546, 0.010101830586791039, -0.025105902925133705, -0.01301906630396843, 0.03648553043603897, -0.02679355815052986, 0.01110638864338398, 0.005557212512940168, -0.011363554745912552, 0.0013219977263361216, 0.011170679703354836, -0.015671098604798317, 0.020316172391176224, 0.013300341553986073, -0.011267117224633694, 0.019737547263503075, -0.0005248812958598137, -0.0091294189915061, 0.002481257077306509, 0.027259673923254013, -0.006252366118133068, -0.012689570896327496, -0.010294705629348755, 0.004520508926361799, -0.008655267767608166, 0.010519727133214474, 0.03127790242433548, -0.02562023513019085, -0.004146813414990902, 0.000994511996395886, -0.00036264528171159327, 0.009145491756498814, -0.013276232406497002, -0.022823547944426537, 0.001320993178524077, -0.0009347408195026219, 0.001534963957965374, -0.0056697227992117405, 0.0040704673156142235, -0.003646543947979808, 0.008076642639935017, -0.023370027542114258, 0.0033331220038235188, 0.0009744208073243499, 0.0008488511084578931, 0.004026266746222973, -0.004387907218188047, -0.008896362036466599, -0.0089847631752491, -0.0012918610591441393, 0.006871173623949289, 0.01676405593752861, 0.009225856512784958, 0.008309700526297092, -0.006589897442609072, 0.013485180214047432, 0.016289904713630676, 0.025764891877770424, -0.0022783365566283464, -0.00393183808773756, 0.011548393405973911, -0.013131576590240002, -0.002453129505738616, -0.007120303809642792, -0.020492974668741226, 0.009145491756498814, -0.008040478453040123, 0.0002968467597384006, -0.007666783407330513, 0.0016735928365960717, 0.008655267767608166, 0.026086350902915, 0.0069836839102208614, -0.0036786897107958794, -0.013115503825247288, 0.019400015473365784, 0.026970360428094864, 0.01904641091823578, 0.0130431754514575, 0.0006077573052607477, -0.015333566814661026, 0.014594212174415588, -0.011451955884695053, 0.020573338493704796, 0.0021176072768867016, 0.008695450611412525, -0.003355222288519144, -0.003417504718527198, -0.007252905517816544, -0.012962810695171356, 0.008872251957654953, -0.0054406835697591305, 0.006549715064466, 0.006304603070020676, 0.02192346379160881, 0.030892154201865196, 0.0014987998874858022, -0.010037538595497608, -0.008152988739311695, -0.015920227393507957, -0.010326852090656757, 0.00594698078930378, 0.003003627061843872, -0.00804851483553648, 0.009032981470227242, 0.0008513625361956656, 0.026970360428094864, 0.010969768278300762, -0.004946441389620304, -0.0021155981812626123, -0.005709905177354813, 0.01410398818552494, -0.014055768959224224, -0.015550551004707813, -0.008052533492445946, 0.01588808186352253, 0.004753566347062588, -0.001838340307585895, -0.0026801596395671368, -0.0016524972161278129, 0.016908712685108185, 0.0016745973844081163, 0.02021973393857479, -0.013324451632797718, -0.022019902244210243, 0.012890482321381569, -0.005356301087886095, 0.015454113483428955, -0.0005600408185273409, -0.02407723478972912, -0.00809271540492773, 0.008193171583116055, -0.011660903692245483, -0.004219141788780689, 0.026022057980298996, -0.012802081182599068, -0.0006193097215145826, 0.03237086161971092, 0.007393543608486652, 0.008494538255035877, -0.028931258246302605, 0.005412556231021881, 0.01364590972661972, 0.012183274142444134, -0.02483266219496727, -0.0023808013647794724, 0.014176316559314728, -0.014722795225679874, 0.007779293693602085, -0.010479544289410114, -0.018033817410469055, 0.004821876063942909, 0.004375852644443512, 0.017246244475245476, -0.003003627061843872, 0.011355518363416195, 0.002404910745099187, -0.0274204034358263, 0.007715002167969942, -0.015711279585957527, -0.002527466742321849, -0.008333809673786163, 0.010881367139518261, -0.004986623767763376, -0.007919931784272194, 0.009041017852723598, -0.02349860966205597, -0.014674576930701733, -0.0037068172823637724, 0.0053040636703372, -0.010109866969287395, -0.00728103332221508, 0.0017198025016114116, -0.003779145423322916, -0.007847603410482407, 0.0012707653222605586, 0.00291723501868546, -0.003001617966219783, -0.017117660492658615, -0.007413634564727545, 0.014361155219376087, -0.011789487674832344, -0.016201503574848175, -0.025716673582792282, 0.016450634226202965, -0.00629254849627614, 0.022646745666861534, -0.02836870588362217, -0.01996256783604622, -0.026054205372929573, -0.002390847075730562, 0.023771850392222404, -0.0019347778288647532, -0.013517326675355434, 0.013991477899253368, 0.015381785109639168, 0.012094873003661633, -0.008711523376405239, 0.0073774708434939384, -0.006549715064466, -0.011516247875988483, -0.004882149863988161, 0.0005600408185273409, 4.308610186853912e-06, -0.020123297348618507, -0.0002772578736767173, 0.007180577609688044, -0.03224227949976921, 0.0034838055726140738, 0.002042265608906746, 0.00311011029407382, 0.005959035363048315, 0.0142888268455863, 0.0034637143835425377, 0.01416828017681837, -0.014192389324307442, -0.01801774464547634, -0.010953695513308048, -0.01780879683792591, 0.005770178511738777, -0.0032708393409848213, 0.002792669925838709, -0.013750383630394936, -0.014939780347049236, 0.012609206140041351, -0.03606763482093811, 0.01617739535868168, -0.00744578056037426, -0.017246244475245476, -0.03352811187505722, 0.015124618075788021, 0.017037296667695045, 0.02545950748026371, -0.00846239272505045, 0.0012737789656966925, 0.00737345265224576, 0.0019950512796640396, -0.025813110172748566, 0.008052533492445946, 0.022598527371883392, -0.01325212325900793, 0.0130431754514575, 0.004781694151461124, -0.01166894007474184, 0.0077270567417144775, -0.0069033196195960045, 0.00606350926682353, -0.006782772485166788, -0.016828348860144615, 0.034878239035606384, 0.004580782260745764, 0.006147892214357853, -1.2988614798814524e-05, 0.014353117905557156, 0.009997356683015823, -0.018033817410469055, -0.0016213558847084641, 0.0014003532705828547, -0.006545696873217821, -0.01813025400042534, -0.0019779738504439592, -0.018821390345692635, 0.01012593973428011, -0.00021145936625543982, -0.021746661514043808, 0.003953938372433186, -0.025009464472532272, -0.004476308356970549, -0.006360858213156462, -0.007128340192139149, 0.00624834792688489, -0.004713383968919516, 0.0016745973844081163, -0.009724116884171963, 0.020412608981132507, 0.004540600348263979, -0.00037469997187145054, 0.007305142469704151, 0.003544079139828682, 0.004612928256392479, 0.006368895061314106, -0.027147162705659866, -0.010294705629348755, -0.022100266069173813, 0.030265310779213905, -0.028754455968737602, -0.01516480091959238, 0.009282112121582031, -0.005163426045328379, 0.006601952016353607, -0.009571424685418606, 0.018499931320548058, -0.0106081273406744, -0.016032738611102104, 0.003911747131496668, 0.004934386815875769, -0.011628758162260056, 0.0029574173968285322, 0.0075623090378940105, -0.025475580245256424, -0.005858579650521278, 0.00025176722556352615, -0.002302445936948061, -0.003668644232675433, 0.0009392612846568227, -0.01925535872578621, 0.005046897102147341, 0.014120060950517654, -0.034010302275419235, -0.02957417443394661, -0.0075060538947582245, -0.005818397272378206, 0.011508211493492126, -0.012938701547682285, -0.006015290506184101, 0.016322050243616104, -0.015831826254725456, -0.0007036925526335835, 0.000972913985606283, -0.0057340143248438835, 0.008173080161213875, -0.020075077190995216, -0.0012456513941287994, 0.00322864786721766, 0.024655859917402267, 0.0008960653212852776, 0.006308621261268854, 0.008639195002615452, 0.019351797178387642, 0.017728431150317192, -0.021232329308986664, 0.018628515303134918, -0.014063805341720581, 0.008028424344956875, 0.0005479861283674836, 0.006413095630705357, -0.0118537787348032, 0.005275936331599951, 0.01355750858783722, -0.01726231724023819, -0.014754941686987877, -0.037835653871297836, -0.026697121560573578, -0.02349860966205597, 0.0028449068777263165, 0.012432403862476349, 0.00848650187253952, 0.0031342196743935347, -0.007337288465350866, -0.0017037296202033758, -0.011861815117299557, 0.0006509532686322927, -0.02582918293774128, 0.0031201557721942663, 0.025716673582792282, 0.012818153947591782, 0.005010732915252447, 0.035006821155548096, -0.007650710176676512, 0.010865294374525547, -0.01875709928572178, -0.01491567026823759, 0.0005037856171838939, 0.008373991586267948, 0.014457592740654945, -0.007984223775565624, -0.020332245156168938, 0.004898222628980875, 0.011765377596020699, 0.01325212325900793, -0.004026266746222973, 0.0010080734500661492, -0.006839027628302574, -0.0016153285978361964, -0.003855491988360882, 0.024864807724952698, 0.019608963280916214, 0.015703244134783745, 0.012022544629871845, 0.009595533832907677, -0.016113102436065674, 0.0041347588412463665, 0.013107466511428356, -0.02412545494735241, 0.0041267224587500095, 0.012070763856172562, -0.00608360068872571, 0.00447229016572237, -0.016458671540021896, -0.0009849687339738011, 0.011082278564572334, -0.0017730441177263856, -0.013155685737729073, -0.0015229092678055167, 0.010825112462043762, -0.014787087216973305, -0.0007202677661553025, -0.017503410577774048, 0.00879992451518774, 0.021859172731637955, 0.0002684679930098355, -0.0033311129081994295, 0.003327094716951251, -0.00606350926682353, 0.005754105746746063, -0.0038796013686805964, -0.008502575568854809, 0.017439119517803192, 0.007646691985428333, -0.033592402935028076, -0.0030839915852993727, 0.020075077190995216, -0.001055789995007217, 0.013726274482905865, -0.012536878697574139, 0.0103750703856349, -0.008052533492445946, -0.026777485385537148, -0.010166122578084469, 0.008992799557745457, -0.008695450611412525, 0.005862597841769457, -0.011492138728499413, 0.01364590972661972, 0.006999757140874863, -0.02582918293774128, 0.010278632864356041, -0.014979962259531021, 0.010029502213001251, 0.04121096804738045, -0.0052317357622087, 0.011813596822321415, 0.0035641700960695744, -0.009217820130288601, -0.028047246858477592, 0.02287176623940468, 0.01376645639538765, 0.007686874363571405, -0.015751462429761887, 0.017326608300209045, -0.009507132694125175, 0.009145491756498814, -0.00020869683066848665, 0.02004293166100979, 0.014875488355755806, 0.006344785448163748, -0.020203661173582077, 0.007289069704711437, 0.0009372521890327334, 0.015068363398313522, 0.0020462838001549244, 0.01235204003751278, -0.012761899270117283, 0.0025515761226415634, 0.0066099888645112514, -0.0059710899367928505, 0.005573285277932882, 0.01468261331319809, 0.005392464809119701, -0.0039619747549295425, 0.013525363057851791, -0.009828590787947178, -0.010479544289410114, -0.015751462429761887, 0.019833983853459358, -0.00827755406498909, 0.013750383630394936, -0.006654189433902502, -0.009057090617716312, -0.002083452418446541, -0.006963592953979969, 0.0015279320068657398, -0.009949138388037682, -0.0008297645254060626, -0.03937865421175957, 0.009828590787947178, 0.00024071709776762873, 0.0004578271182253957, -0.015606805682182312, -0.005641594994813204, -0.020107224583625793, 0.014087915420532227, 0.023948652669787407, 0.010776893235743046, 0.021682370454072952, -0.0169247854501009, -0.016940858215093613, -0.008161025121808052, -0.002105552703142166, 0.023595048114657402, 0.007598473224788904, 0.008144952356815338, -0.0027826244477182627, -0.007365415804088116, -0.013887003995478153, 0.002139707561582327, -0.01019023172557354, -0.011540357023477554, -0.001259715179912746, 0.0016203513368964195, 0.002445093123242259, 0.01397540420293808, -0.021200181916356087, -0.013903076760470867, -0.0056054312735795975, 0.0004013207508251071, -0.009507132694125175, -0.004789730533957481, 0.023145005106925964, 0.009651788510382175, 0.0028308432083576918, -0.0017278390005230904, -0.01642652601003647, -0.001606287551112473, 0.02038046345114708, -0.005099134054034948, -0.005637576803565025, 0.014184352941811085, 0.004705347586423159, 0.010784929618239403, 0.019110701978206635, -0.0029453628230839968, 0.008767778053879738, -0.009579461067914963, 0.0005896752700209618, -0.010198268108069897, -0.014787087216973305, 0.006991720758378506, 0.005500957369804382, -0.01880531758069992, 0.019496452063322067, -0.033174507319927216, 0.005902780219912529, -0.012577060610055923, 0.0078837675973773, -0.004524527117609978, -0.012898518703877926, 0.003654580330476165, 0.014586175791919231, -0.003212575102224946, -0.007602491416037083, 0.025154121220111847, 0.00937854964286089, 0.018821390345692635, -0.008253444917500019, -0.00502278795465827, -0.005798306316137314, 0.03552115336060524, -0.013340524397790432, -0.012488659471273422, 0.002216053893789649, -0.010881367139518261, -0.0018684770911931992, 0.016314014792442322, 0.0018795272335410118, -0.002262263558804989, 0.02271103672683239, -0.0035219788551330566, -0.003656589426100254, -0.0016655564540997148, 0.006308621261268854, 0.014521883800625801, 0.0036425257567316294, -0.016796201467514038, 0.016796201467514038, 0.0009041018201969564, -0.009997356683015823, 0.017165878787636757, -0.007108249235898256, 0.012448477558791637, -0.009748226031661034, 0.006328712683171034, 0.01660332642495632, -0.02312893234193325, -0.019078556448221207, -0.01131533645093441, -0.02158593200147152, 0.03053854964673519, 0.01817847415804863, -0.015357675962150097, -0.04256109520792961, 0.003907728940248489, -0.009314257651567459, 0.03468536213040352, 0.042496804147958755, 0.02711501717567444, 0.02721145562827587, 0.011443919502198696, 0.0011361546348780394, 0.018853535875678062, 0.017953451722860336, 0.00456470949575305, 0.008840106427669525, 0.02246994338929653, -0.005452738609164953, -0.014851379208266735, 0.0011351500870659947, -0.016539035364985466, 0.0023727649822831154, 0.001708752359263599, -0.00046109192771837115, -0.010744747705757618, -0.007835549302399158, -0.010334888473153114, -0.01622561365365982, 0.022887839004397392, -0.01660332642495632, 0.019705401733517647, 0.010616164654493332, -0.00470132939517498, 0.004030284937471151, 0.005492920521646738, 0.003497869474813342, -0.0017810805002227426, -0.006244329735636711, -0.012319893576204777, 0.010302742011845112, -0.0032527572475373745, -0.03886432200670242, -0.028674090281128883, -0.009049054235219955, -0.010262560099363327, 0.011170679703354836, -0.006642134394496679, -0.012673498131334782, 0.004854022059589624, 0.01747126504778862, 0.02063762955367565, -0.005111188627779484, 0.000478169386042282, -0.024848734959959984, -0.009225856512784958, 0.008325773291289806, -0.000807161966804415, -0.004215123597532511, -0.032676249742507935, 0.008422210812568665, 0.011781451292335987, -0.011026023887097836, 0.00804851483553648, 0.0029453628230839968, 0.007305142469704151, -0.03632480278611183, -0.005239772144705057, 0.0034335777163505554, 0.019078556448221207, 0.010929586365818977, 0.015872009098529816, 0.027098944410681725, -0.0104634715244174, -0.01768021285533905, -0.02063762955367565, 0.0037751272320747375, -0.03261195495724678, 0.009989320300519466, 0.016860494390130043, 0.00576214212924242, -0.019946495071053505, 0.016699764877557755, -0.03132612258195877, -0.012086836621165276, 0.018692806363105774, 0.00776723911985755, -0.006654189433902502, 0.007405598182231188, 0.025491653010249138, 0.0028770528733730316, -0.015550551004707813, 0.0030277364421635866, 0.012544915080070496, 0.004785712342709303, -0.010688492096960545, 0.005420592613518238, -0.005529084708541632, 0.0003500883176457137, 0.011468028649687767, -0.014457592740654945, -0.02488088235259056, -0.008390064351260662, 0.02496124617755413, 0.0011090314947068691, 0.01113049779087305, 0.013911113142967224, 0.00016437073645647615, 0.0030920282006263733, 0.00502278795465827, 0.014184352941811085, 0.009876810014247894, -0.01630597747862339, -0.008631158620119095, 0.00973215326666832, -0.006405058782547712, -0.011443919502198696, 0.0071886139921844006, 0.013155685737729073, -0.021200181916356087, -0.00977233611047268, 0.00415083160623908, 0.015060327015817165, -0.01676405593752861, 0.010632237419486046, 0.0033873680513352156, 0.0029915724880993366, 0.010053612291812897, 0.01804989017546177, -0.0038796013686805964, 0.0021376984659582376, -0.015478222630918026, 0.03164758160710335, 0.011243008077144623, 0.0024571476969867945, -0.010897439904510975, 0.01385485753417015, -0.011202826164662838, -0.0008599012508057058, -0.0024872845970094204, 0.023225370794534683, 0.007550254464149475, -0.0029815267771482468, -0.014031659811735153, 0.010101830586791039, -0.005561230704188347, 0.008201207965612411, 0.020525120198726654, -0.016378305852413177, -0.018692806363105774, -0.026520319283008575, 0.018114181235432625, -0.0018976092105731368, -0.00040785036981105804, -0.0038133005145937204, -0.00723683275282383, 0.00010365778143750504, 0.02234135940670967, -0.018290983512997627, 0.008080661296844482, 0.016241686418652534, 0.002766551449894905, -0.0028850892558693886, -0.014128097333014011, -0.008976725861430168, -0.02038046345114708, 4.3698251829482615e-05, 0.002852943493053317, 0.00404434883967042, 7.666029705433175e-05, 0.023353954777121544, -0.017423046752810478, -0.002907189540565014, -0.029718831181526184, -0.019335724413394928, -0.012456513941287994, 0.01362180057913065, 0.008293626829981804, -0.010150049813091755, -0.004817857872694731, 0.012118982151150703, 0.022614600136876106, -0.0067948270589113235, 0.0035762249026447535, -0.013284268788993359, 0.018612442538142204, -0.008253444917500019, 0.011243008077144623, -0.01784094236791134, -0.008036460727453232, -0.005215662997215986, -0.008044497109949589, 0.012086836621165276, 0.014296863228082657, 0.015204982832074165, -0.011234971694648266, -0.034299612045288086, -0.0005344246164895594, 0.00661400705575943, -0.020332245156168938, 0.004508454352617264, 0.007493999321013689, -0.003825355088338256, -0.005332191474735737, -0.019528599455952644, 0.00867134053260088, 0.006577842868864536, 0.016619401052594185, -0.012818153947591782, -0.005175480619072914, 0.04162886366248131, -0.0032266387715935707, 0.00808869767934084, 0.01854815147817135, -0.0020382471848279238, -0.00012299550871830434, 0.02163415215909481, 0.0004897218313999474, 0.002899153158068657, -0.0007433725986629725, -0.0027263693045824766, 0.023064641281962395, 0.014063805341720581, 0.009691971354186535, -0.007614546455442905, -0.006798845715820789, -0.02308071404695511, 0.031631506979465485, -0.005790269933640957, 0.02263067290186882, 0.00629254849627614, 0.004056403413414955, -0.021039454266428947, -0.0029915724880993366, -0.0049584959633648396, 0.010696528479456902, -0.02833656035363674, -0.015526441857218742, 0.005484884139150381, 0.0020995251834392548, -0.009555350989103317, -0.02375577762722969, 0.024864807724952698, -0.002032219897955656, 0.0028629889711737633, 0.006015290506184101, 0.02711501717567444, -0.0250416100025177, -0.011974326334893703, -0.006091637071222067, 0.017455192282795906, 0.0018373357597738504, -0.023803995922207832, -0.006951538380235434, 0.007763220928609371, 0.02042868174612522, 0.002577694598585367, -0.012344003655016422, -0.004713383968919516, -0.03561759367585182, -0.005079043097794056, -0.017937378957867622, -0.015446077100932598, 0.0026781505439430475, -0.0023526737932115793, -0.007337288465350866, -0.004162886645644903, -0.0156791340559721, -0.010688492096960545, -0.008108788169920444, -0.005617485847324133, 0.0037128448020666838, -0.00033451765193603933, -0.002692214213311672, -0.012641352601349354, -0.0032547665759921074, 0.019287504255771637, 0.007285051513463259, 0.05828041210770607, -0.0056054312735795975, 0.03336738422513008, -0.004741511773318052, 0.01726231724023819, -0.014762978069484234, 0.004074485506862402, -0.004040330648422241, -0.006947520188987255, 0.0067948270589113235, 0.006268439348787069, -0.01689263992011547, 0.03986084461212158, 0.01780879683792591, -0.006111728027462959, 0.005179498810321093, 0.008157007396221161, -0.0014294853899627924, -0.0015691189328208566, 0.01106620579957962, 0.009836627170443535, 0.015204982832074165, -0.010752784088253975, -0.03180830925703049, -0.0012667471310123801, 0.001004557590931654, -0.006513551343232393, -0.008056551218032837, 0.013838784769177437, 0.005127261858433485, 0.00977233611047268, 0.006107709836214781, -0.021907391026616096, 0.02004293166100979, 0.007092176470905542, -0.00045606913045048714, -0.0038675465621054173, 0.02155378647148609, 0.010431325994431973, -0.009137455374002457, -0.01904641091823578, -0.009539278224110603, 0.004279415123164654, -0.0006328712333925068, -0.023321807384490967, -0.0053763920441269875, -0.011387664824724197, -0.0020995251834392548, -0.0029594264924526215, 0.006401040591299534, -0.00698770210146904, 0.010383106768131256, -0.00380526389926672, 0.008639195002615452, 0.00244308402761817, -0.0011512229684740305, 0.002746460260823369, -0.003437595907598734, -0.014095951803028584, -0.00894458033144474, -0.006814918480813503, -0.002435047412291169, 0.012199346907436848, 0.020862651988863945, -0.013758420012891293, 0.014264717698097229, 0.0013903076760470867, 0.008325773291289806, -0.014650467783212662, -0.006067527458071709, 0.014441519044339657, 0.0033029853366315365, -0.018290983512997627, -0.008373991586267948, -0.026391735300421715, -0.025925621390342712, -0.022180629894137383, -0.006332730874419212, -0.0056616864167153835, 0.0011251044925302267, -0.007598473224788904, 0.003431568620726466, 0.0024229928385466337, -0.011765377596020699, -0.004781694151461124, -0.011058169417083263, 0.0006620034109801054, -0.0005861593526788056, 0.015012107789516449, -0.006151910405606031, -0.019978640601038933, -0.014899597503244877, -0.006485423538833857, 0.0036806988064199686, 0.005693832412362099, 0.0031221648678183556, -0.0008619104046374559, -0.008510611951351166, 0.0012125009670853615, 0.009635715745389462, 0.009579461067914963, -0.008783850818872452, -7.64091601013206e-05, 0.0008674354176037014, -0.009627679362893105, -0.023771850392222404, -0.021827027201652527, -0.011885925196111202, -0.007076103240251541, 0.014007550664246082, -0.0037369541823863983, -0.013935222290456295, -0.016032738611102104, 0.010760820470750332, 0.018483858555555344, 0.02258245460689068, 0.022566379979252815, -0.0074417623691260815, 0.006505514495074749, -0.004186995793133974, -0.0209269430488348, 0.0008408146677538753, 0.04252894967794418, 0.007381489034742117, 0.018708879128098488, 0.019914349541068077, 0.008623122237622738, 0.015108545310795307, 0.0010201281402260065, -0.009089237079024315, 0.0019950512796640396, -0.028529435396194458, -0.007944040931761265, 0.003883619559928775, -0.0014766996027901769, -0.011170679703354836, 0.0026279224548488855, 0.0005253836279734969, 0.01131533645093441, -0.017165878787636757, -0.004536581691354513, 0.039185781031847, 0.006461314391344786, 0.013011028990149498, -0.003513942239806056, 0.012858336791396141, -0.025973839685320854, 0.015791645273566246, 0.003230657195672393, 0.02134483866393566, -0.015060327015817165, -0.029606319963932037, -0.01875709928572178, -0.010865294374525547, -0.006947520188987255, 0.002141716657206416, -2.709166074055247e-05, 0.01817847415804863, -0.009346403181552887, 0.0009538274025544524, 0.000954831950366497, -0.004291469696909189, 0.010142013430595398, 0.006304603070020676, 0.005750087555497885, -0.0032929396256804466, -0.0006253370665945113, 0.013613764196634293, 0.007088158279657364, 0.003927819896489382, -0.016201503574848175, -0.010575981810688972, 0.011492138728499413, 0.008454356342554092, -0.0031040827743709087, 0.024945173412561417, 0.004476308356970549, -0.007116285618394613, -0.016289904713630676, 0.0001545762934256345, 0.0005344246164895594, 0.019191067665815353, 0.023402173072099686, -0.012898518703877926, -0.017873087897896767, 0.011877888813614845, -0.006899301428347826, 0.002356691984459758, -0.0038796013686805964, 0.009073163382709026, 0.018724951893091202, 0.019158922135829926, -0.026520319283008575, -0.013035139068961143, -0.01813025400042534, 0.024607641622424126, -0.02279140241444111, -0.0038796013686805964, -0.030217090621590614, -0.00207541580311954, -0.005517030134797096, 0.004174941219389439, -0.017712358385324478, 0.0014927724841982126], "3c9d167e-f7bf-45db-a795-bcc4b941cb4c": [0.0007490554708056152, -0.03295128792524338, -0.0100541478022933, 0.013643893413245678, 0.01723363809287548, -0.02495659701526165, 0.026930242776870728, 0.03006233088672161, -0.013093275018036366, 0.06498726457357407, -0.010726331733167171, -0.014473396353423595, -0.001853867550380528, -0.020809082314372063, 0.005402495618909597, 0.03895803540945053, -0.007851674221456051, 0.027144769206643105, 0.03543979674577713, -0.014537754468619823, 0.05028504133224487, 0.00017307382950093597, -0.04731027036905289, 0.01363674271851778, -0.010661973617970943, 0.010762086138129234, -0.030262555927038193, 0.021538473665714264, -0.021910319104790688, -0.020136898383498192, -0.0015150943072512746, 0.0033001345582306385, -0.0052451761439442635, -0.01501686405390501, 0.012521203607320786, -0.028560644015669823, 0.008044748567044735, -0.025056710466742516, -0.04839720577001572, 0.02046583965420723, -0.02587191015481949, 0.00017128609761130065, 0.02844623103737831, -0.037213217467069626, -0.03890082985162735, -0.006857701111584902, -0.006879153661429882, -0.016861792653799057, -0.0007615695358254015, -0.012192263267934322, 0.010633369907736778, 0.02046583965420723, 0.033981017768383026, 0.024241508916020393, 0.014888147823512554, -0.02671571634709835, 0.01867811754345894, 0.027173371985554695, -0.0012156509328633547, -0.06944941729307175, -0.01026152353733778, 0.0035361137706786394, 0.014001437462866306, 0.009732358157634735, 0.016418438404798508, -0.002744153141975403, 0.014945355243980885, 0.0014945354778319597, -0.043792035430669785, -0.00683982390910387, 0.017076319083571434, 0.021338248625397682, -0.061554837971925735, -0.013422216288745403, 0.022396579384803772, -0.017533976584672928, 0.020480141043663025, 0.01310757640749216, 0.008766988292336464, -0.009653697721660137, -0.018620911985635757, -0.013543780893087387, 0.004919810686260462, 0.010547558777034283, 0.06206970289349556, 0.003943714313209057, 0.002064818749204278, -0.038357362151145935, -0.01684749126434326, -0.02211054414510727, 0.01706201769411564, -0.0004929642891511321, 0.013393612578511238, -0.00314102740958333, -0.03686997666954994, -0.018134649842977524, -0.014158757403492928, -0.0034306382294744253, 0.04802536219358444, -0.020537348464131355, 0.01884973980486393, -0.036069076508283615, 0.028117289766669273, 0.012020641937851906, -0.014287473633885384, -0.01221371628344059, 0.008044748567044735, -0.008724083192646503, -0.0053667412139475346, 0.005463277921080589, -0.021481266245245934, -0.028846681118011475, 0.011355609633028507, -0.01046889927238226, -0.03646952658891678, -0.01826336607336998, -0.03323732689023018, 0.008774138987064362, 0.014373283833265305, -0.028317514806985855, 0.04136073216795921, 0.026143644005060196, -0.003371643368154764, -0.015803461894392967, -0.03778528794646263, -0.0001073191815521568, 0.011999188922345638, 0.02339770458638668, 0.034066829830408096, 0.006464402191340923, -0.0008514025248587132, -0.02152417227625847, -0.007887428626418114, 0.02888958528637886, 0.017433863133192062, -0.02043723687529564, -0.017691295593976974, 0.050428058952093124, -0.018063141033053398, 0.0198222603648901, -0.05909493565559387, -0.023054461926221848, -0.03300849720835686, 0.0020272766705602407, 0.012278073467314243, -0.014609263278543949, -0.04539383575320244, 0.03649812936782837, -0.02674431912600994, 0.0328940823674202, -0.07700075954198837, -0.046108923852443695, -0.02322608232498169, 0.032636649906635284, -0.019121473655104637, 0.003814998548477888, 0.017390958964824677, 0.01826336607336998, 0.007801618427038193, 0.024026982486248016, 0.029089810326695442, -0.06126880273222923, 0.009753810241818428, 0.027988573536276817, 0.044964779168367386, 0.00914598535746336, 0.045965906232595444, 0.009668000042438507, -0.002897897269576788, 0.015031165443360806, -0.037213217467069626, -0.012085000053048134, 0.010182864032685757, 0.015932178124785423, -0.03555421158671379, 0.018191857263445854, -0.007072227541357279, 0.056978270411491394, 0.015746254473924637, -0.00801614485681057, -0.06641744077205658, -0.015231390483677387, 0.004179693758487701, 0.02049444429576397, 0.030233953148126602, 0.033952414989471436, 0.009675150737166405, 0.0431627556681633, 0.011498627252876759, 0.017691295593976974, 0.007672902196645737, -0.03209318220615387, -0.012971710413694382, -0.0018771080067381263, -0.00016134190082084388, -0.01209930144250393, -0.009932583197951317, -0.003671980695798993, -0.01573195308446884, 0.025614479556679726, -0.027902763336896896, -0.028646456077694893, -0.004093883093446493, 0.019765052944421768, -0.01415160670876503, 0.02325468696653843, -0.01567474566400051, -0.022940047085285187, 0.059266556054353714, -0.0725385993719101, 0.06269898265600204, -0.02710186317563057, -0.04854022338986397, -0.02108081616461277, -0.023583626374602318, -0.005044951103627682, -0.02927573397755623, 0.020751874893903732, -0.01793442666530609, -0.033923812210559845, -0.01600368693470955, 0.01679028384387493, -0.019064266234636307, -0.046051714569330215, -0.00283353915438056, -0.012635618448257446, -0.03206457942724228, 0.007072227541357279, -0.00032290726085193455, -0.0012451482471078634, 0.02325468696653843, 0.0003915111010428518, 0.03855758532881737, 0.0003653656458482146, -0.01659005880355835, 0.042590685188770294, 0.08958631753921509, 0.002711974084377289, -0.028546342626214027, 0.02099500596523285, 0.010762086138129234, 0.02428441494703293, 0.020594555884599686, -0.019579129293560982, -0.021424058824777603, 0.010926555842161179, 0.010197165422141552, 0.042762305587530136, 0.023555023595690727, -0.0011441420065239072, -0.012721428647637367, 0.00587087869644165, 0.00878128968179226, -0.002354429801926017, -0.02119523100554943, 0.03309430927038193, 0.04999900609254837, -0.020351426675915718, -0.020837686955928802, -0.01419451180845499, -0.009839621372520924, -5.1732200518017635e-05, -0.001158443745225668, 0.03684137389063835, 0.0015043679159134626, -0.007315358147025108, 0.029118413105607033, -0.021896017715334892, 0.010976612567901611, 0.018606608733534813, 0.005187968723475933, 0.015259994193911552, -0.02125243842601776, 0.02871796488761902, 0.013815514743328094, -0.04859743267297745, 0.014931052923202515, 0.00696496432647109, 0.045880094170570374, -0.025471461936831474, -0.029633278027176857, -0.02261110581457615, 0.001953979954123497, 0.01434468012303114, 0.04204721748828888, -0.015431615523993969, -0.039501503109931946, 0.05017062649130821, -0.055033229291439056, 0.01773420162498951, 0.026815827935934067, -0.011505777947604656, 0.004565841518342495, 0.032693859189748764, 0.028174497187137604, 0.017047716304659843, -0.024227207526564598, -0.013443668372929096, 0.01242109201848507, 0.02266831323504448, -0.0005255902069620788, 0.0016295084496960044, 0.029719088226556778, 0.016690172255039215, 0.007465526461601257, -0.015889272093772888, 0.049255311489105225, 0.0083665382117033, -0.014945355243980885, 0.03180714696645737, 0.05085711181163788, 0.0010842533083632588, -0.01659005880355835, -0.007801618427038193, -0.0048947823233902454, -0.020537348464131355, 0.0047767930664122105, -0.013751156628131866, -0.011212592013180256, -0.021795904263854027, 0.015288597904145718, -0.0027048231568187475, -0.05534787103533745, 0.0074369232170283794, 0.0660741999745369, 0.014609263278543949, 0.014602112583816051, 0.002048729220405221, -0.011791813187301159, -0.020837686955928802, -0.020008184015750885, -0.012342431582510471, -0.025085313245654106, 0.02816019579768181, -0.009367662481963634, -0.04851162061095238, -0.030148141086101532, -0.018449289724230766, 0.007737260311841965, -0.007894580252468586, -0.021795904263854027, -0.02342630736529827, 0.05740732327103615, -0.021095117554068565, -0.005338137503713369, -0.013472272083163261, 0.013701100833714008, 0.021424058824777603, -0.00482327351346612, 0.01893555000424385, 0.0010243646102026105, -0.029518863186240196, 0.008459500037133694, -0.021338248625397682, 0.029290035367012024, -0.018477892503142357, -0.020351426675915718, -0.010032694786787033, -0.017476769164204597, 0.013672497123479843, -0.023583626374602318, -0.019064266234636307, -0.00010676051897462457, 0.03338034451007843, -0.030691608786582947, 0.025829005986452103, -0.02735929563641548, -0.0396445207297802, -0.006503732409328222, 0.014280322007834911, -0.024155698716640472, 0.016632964834570885, 0.009639396332204342, -0.02228216640651226, -0.022410880774259567, -0.03990195319056511, 0.015302899293601513, 0.003922261763364077, 0.00531310960650444, 0.004497908055782318, 0.008516707457602024, 0.009503529407083988, 0.01603228971362114, 0.049255311489105225, 0.018778230994939804, 0.013043219223618507, 0.02046583965420723, -0.030777418985962868, -0.01840638369321823, 0.03675556182861328, -0.007987541146576405, -0.021795904263854027, -0.04124632105231285, 7.854802970541641e-05, -0.010004092007875443, -0.0009707330027595162, 0.004122486803680658, -0.015259994193911552, 0.03452448546886444, -0.007401168812066317, -0.022182052955031395, -0.016461342573165894, -0.018620911985635757, 0.004665954038500786, 0.004916235338896513, -0.028818076476454735, -0.02122383378446102, -0.042933929711580276, -0.015445916913449764, 0.008244973607361317, -0.00913168303668499, -0.001517775934189558, 0.01448769774287939, 0.02266831323504448, 0.035039350390434265, 0.027731141075491905, 0.004261929076164961, 0.014888147823512554, -0.03978753834962845, -0.016489947214722633, 0.031492508947849274, 0.05297377333045006, 0.005309533793479204, 0.016575757414102554, 0.0007955362088978291, 0.009839621372520924, -0.01714782789349556, 0.003282257355749607, -0.035096555948257446, -0.019693544134497643, -0.0007848099339753389, 0.04424969106912613, -0.0320073738694191, -0.011577286757528782, -0.010640520602464676, 0.014716526493430138, 0.03109205886721611, 0.0016893971478566527, -0.01116968598216772, -9.983309428207576e-05, -0.05014202371239662, -0.004766066558659077, -0.008766988292336464, -0.01106957346200943, -0.03415263816714287, -0.03197876736521721, -0.03529677912592888, -0.004733887501060963, 0.04350600019097328, -0.03589745610952377, -0.013379310257732868, 0.0038328757509589195, -0.0478537380695343, -0.01597508229315281, 0.008981514722108841, 0.0011915166396647692, -0.011834719218313694, 0.013000313192605972, 0.006646750029176474, -0.034867726266384125, -0.001734090270474553, -0.01770559698343277, 0.024827880784869194, 0.006010320968925953, 0.033723585307598114, 0.007951786741614342, -0.011791813187301159, 0.010990913957357407, 0.009617943316698074, -0.0005202270695008337, 0.004147514700889587, -0.01367964781820774, -0.004669529385864735, 0.032779667526483536, 0.03103485144674778, -0.010661973617970943, -0.028346117585897446, 0.0018047052435576916, 0.008809893392026424, -0.014873846434056759, -0.011798964813351631, 0.006814796011894941, 0.014051494188606739, -0.018549401313066483, -0.01557463314384222, 0.031521111726760864, -0.024212904274463654, -0.022453786805272102, 0.011970586143434048, -0.007293905131518841, 0.0469670295715332, 0.00893860962241888, 0.008595366962254047, -0.007065076846629381, -0.027788348495960236, -0.03658394142985344, -0.01993667520582676, -0.024498941376805305, 0.005391769111156464, -0.004859027918428183, -0.00878128968179226, -0.044964779168367386, -0.0033376766368746758, -0.008452349342405796, -0.03872920572757721, 0.03744204714894295, 0.017777105793356895, 0.019178681075572968, -0.005899482406675816, -0.020894892513751984, -0.023969775065779686, 0.005949538201093674, -0.033952414989471436, 0.01561753824353218, 0.002935439348220825, 0.04771072044968605, -0.012893049977719784, -0.002080908278003335, 0.022568201646208763, -0.0005197801510803401, -0.010433144867420197, -0.006146187894046307, 0.0009457048727199435, 0.006231998559087515, -0.020351426675915718, -0.005291656590998173, -0.02063746191561222, -0.04424969106912613, 0.028145892545580864, 0.008159162476658821, -0.013565233908593655, 0.025442857295274734, -0.037184614688158035, 0.009861073456704617, 0.01164164487272501, -0.009203191846609116, -0.00045542215229943395, 0.015846366062760353, 0.016389833763241768, 0.022711219266057014, -0.059438176453113556, 0.026086438447237015, -0.012578411027789116, 0.013007464818656445, 0.010440295562148094, 0.026258058845996857, -0.0008348661358468235, 0.008917156606912613, -0.014173058792948723, 0.015388709492981434, -0.010847896337509155, 0.03132088854908943, -0.019707845523953438, 0.0030051604844629765, -0.03961591795086861, -0.026429681107401848, 0.025757497176527977, -0.027387898415327072, -0.018563704565167427, 0.003950865473598242, -0.028846681118011475, 0.038385964930057526, -0.011813266202807426, -0.009360511787235737, -0.0005993337836116552, -0.007994691841304302, -0.011427118442952633, 0.004755340050905943, -0.0021828084718436003, 0.016818886622786522, 0.029719088226556778, 0.023740947246551514, 0.0331801176071167, -0.006646750029176474, -0.012692824937403202, 0.05777917057275772, -0.03315151482820511, -0.020565953105688095, -0.021567076444625854, -0.020237011834979057, 0.04988459125161171, 0.004497908055782318, -0.022124845534563065, -0.004537238273769617, -0.04304834455251694, -0.017247941344976425, -0.016947602853178978, -0.033809397369623184, 0.015932178124785423, 0.03006233088672161, 0.01667586900293827, 0.022825632244348526, -0.005445400718599558, 0.04899788275361061, 0.0006471553351730108, -0.0016357655404135585, 0.018477892503142357, 0.02730208821594715, 0.020480141043663025, 0.007444073911756277, -0.008387991227209568, -0.0021881714928895235, -0.008044748567044735, 0.025142520666122437, -0.019722146913409233, 0.05686385929584503, -0.0050556776113808155, 0.01764838956296444, 0.014144455082714558, 0.0042690797708928585, -0.012113603763282299, 0.002597559941932559, 0.03446727618575096, -0.027874158695340157, 0.02498520165681839, 0.002949741203337908, 0.006021047476679087, 0.05240170285105705, -0.005970991216599941, 0.013214840553700924, 0.008731233887374401, -0.0001225706801051274, 0.05334562063217163, 0.0009465987095609307, -0.0020272766705602407, 0.04127492383122444, -0.018663816154003143, 0.020008184015750885, -0.011727456003427505, -0.007744411006569862, 0.00230794888921082, 0.0017162129515781999, 0.010454597882926464, 0.009861073456704617, 0.012707127258181572, -0.003239352023229003, 0.024613354355096817, 0.03092043846845627, -0.02055164985358715, -0.020308520644903183, -0.008545310236513615, 0.007737260311841965, 0.009031570516526699, 0.06092556193470955, -0.005813671741634607, 0.005613446701318026, -0.011863321997225285, 0.0124067896977067, 0.04553685337305069, 0.03206457942724228, 0.0071830665692687035, 0.032665252685546875, 0.024355923756957054, 0.011877624318003654, 0.01594647951424122, -0.01617530733346939, -0.024584751576185226, 0.00945347361266613, -0.0138012133538723, 0.029576070606708527, 0.019979579374194145, -0.02768823690712452, 0.028589248657226562, 0.03529677912592888, 0.012063547037541866, 0.004258353728801012, 0.03329453244805336, 0.006321384571492672, 0.0022739821579307318, 0.019650638103485107, 0.014373283833265305, -0.018663816154003143, 0.03180714696645737, 0.0140943992882967, 0.00991113018244505, -0.002012974815443158, 0.019250189885497093, 0.007054350338876247, 0.01787721924483776, -0.011470023542642593, -0.02088059112429619, -0.02680152654647827, -0.0455082468688488, 0.02660130150616169, -0.008445197716355324, -0.004101033788174391, -0.0018717447528615594, 0.02007969282567501, -0.006886304821819067, -0.01081929262727499, -0.0014838092029094696, 0.02110942080616951, -0.00868832878768444, 0.020680366083979607, -0.0029801323544234037, 0.0007200050167739391, -0.01790582202374935, -0.036126282066106796, -0.004873329773545265, -0.023569324985146523, -0.025700289756059647, -0.009918280877172947, -0.02213914692401886, -0.012986011803150177, 0.008001843467354774, -0.009174589067697525, -0.019779354333877563, -0.017419561743736267, -0.02389826625585556, 0.0021256012842059135, 0.010089902207255363, -0.008337934501469135, -0.014330378733575344, -0.002340127946808934, 0.009560736827552319, 0.017977330833673477, 0.004598020575940609, 0.006021047476679087, 0.02219635434448719, 0.03867200016975403, 0.0007155356579460204, 0.03360917046666145, -0.04004497081041336, -0.019750751554965973, -0.0182061605155468, 0.012928804382681847, 0.004258353728801012, -0.02263971045613289, 0.003235776675865054, -0.008652573451399803, 0.06075394153594971, -0.006571665406227112, 0.027931366115808487, 0.012456846423447132, -0.004440701100975275, -0.014287473633885384, -0.023612231016159058, 0.006514458451420069, 0.0265726987272501, -0.00966084934771061, 0.003477119142189622, 0.007923183031380177, 0.014773733913898468, 0.0028907463420182467, -0.0042440518736839294, -0.02439882792532444, 0.0009868225315585732, 0.0057135592214763165, -0.02334049716591835, -0.04665239155292511, 0.050456661731004715, -0.009381964802742004, 0.008745535276830196, -0.007243848871439695, -0.026200851425528526, 0.007608544547110796, 0.03644092381000519, 0.006196244154125452, -0.004658803343772888, 0.036011870950460434, -0.0004127402789890766, 0.01297886110842228, 0.014573508873581886, -0.008681177161633968, -0.00599601911380887, 0.009196041151881218, -0.0020934222266077995, 0.016318324953317642, 0.0399305559694767, -0.0055884188041090965, 0.05689246207475662, 0.0140943992882967, 0.041532356292009354, 0.015774857252836227, -0.0513719767332077, 0.00838084053248167, 0.003582594683393836, -0.03223619982600212, -0.0045157852582633495, -0.019650638103485107, 0.007801618427038193, -0.035926058888435364, 0.022982953116297722, 0.02119523100554943, 0.0029586798045784235, -0.022968649864196777, 0.017133526504039764, -0.01923588663339615, 0.01761978678405285, -0.009067324921488762, 0.011555834673345089, -0.006332111079245806, -0.011248346418142319, 0.02897539548575878, -0.009811017662286758, -0.010375937446951866, -0.019950976595282555, -0.002080908278003335, 0.0075584882870316505, -0.008044748567044735, 0.026115041226148605, -0.005352439358830452, 0.04321996495127678, 0.029147017747163773, 0.03907245025038719, -0.016218213364481926, -0.017462467774748802, -0.013908476568758488, -0.010182864032685757, 0.010540408082306385, 0.02038002945482731, -0.002722700359299779, -0.01834917813539505, 0.02665850892663002, 0.003840026678517461, -0.029132716357707977, 0.03129228204488754, 0.038357362151145935, 0.034924935549497604, 0.0124067896977067, -0.0034896330907940865, 0.0026994601357728243, 0.019007058814167976, 0.016990508884191513, 0.005044951103627682, -0.011520080268383026, 0.007015020586550236, 0.005291656590998173, 0.02255389839410782, -0.008137710392475128, 0.014437641948461533, 0.020837686955928802, -0.024069886654615402, 0.03343755006790161, 0.022625407204031944, 0.02258250303566456, -0.002919349819421768, 0.0043656169436872005, -0.03180714696645737, -0.014702225103974342, -0.022739822044968605, -0.04894067347049713, 0.006514458451420069, -0.0083665382117033, -0.029375845566391945, -0.012742881663143635, -0.005945962853729725, 0.008466650731861591, 0.028002874925732613, 0.0598958320915699, 0.013865570537745953, -0.010726331733167171, -0.02489938959479332, -0.0032947715371847153, -0.015074070543050766, 0.01932169869542122, 0.023855360224843025, 0.026558395475149155, -0.019450414925813675, 0.022625407204031944, -0.005420372821390629, 0.007243848871439695, -0.018048839643597603, -0.010897952131927013, -0.006189092993736267, -0.014873846434056759, -0.00498416880145669, 0.009117381647229195, -0.03701299428939819, -0.02401268109679222, -0.023883964866399765, 0.0019843713380396366, -0.007336810696870089, 0.006260601803660393, -0.008566763252019882, 0.00640719523653388, 0.006156913936138153, -0.023354798555374146, -0.04808256775140762, -0.013693949207663536, -0.00676116393879056, 0.023125970736145973, -0.024227207526564598, 0.019307395443320274, -0.03452448546886444, 0.011934831738471985, -0.005509758833795786, -0.017390958964824677, -0.007018595933914185, 0.0072152456268668175, -0.01378691103309393, -0.017834313213825226, -0.006457251496613026, 0.0072295474819839, -0.007190217263996601, 0.008581064641475677, 0.014101549983024597, 0.010661973617970943, -0.0005939705879427493, -0.01556033082306385, -0.0020237010903656483, -0.007118708454072475, -0.0507999062538147, 0.0009564312058500946, 0.024227207526564598, -0.03006233088672161, 0.009932583197951317, -0.008509555831551552, 0.011963434517383575, 0.012263772077858448, -0.007261726073920727, 0.017977330833673477, 0.009067324921488762, 0.0016044804360717535, 0.038128532469272614, -0.0009868225315585732, 0.0002773203596007079, 0.009846772067248821, 0.019336000084877014, -0.03352336212992668, -0.001649173442274332, -0.030748816207051277, -0.0008496148511767387, 0.013744005933403969, -0.009432020597159863, 0.021180929616093636, -0.010890801437199116, 0.007622845936566591, 0.004372767638415098, 0.04430690035223961, 0.008945760317146778, 0.01302176620811224, 0.0311206616461277, -0.007637147791683674, 0.028260307386517525, -0.03217899426817894, -0.024212904274463654, -0.0021524170879274607, -0.037384841591119766, -0.002790633821859956, 0.0064608268439769745, -0.022954348474740982, 0.03320872038602829, 0.0036469525657594204, -0.02281133085489273, 0.012742881663143635, 0.02989071048796177, 0.05228728801012039, -0.004751764703541994, -0.012571260333061218, -0.007737260311841965, -0.004444276448339224, 0.006736136041581631, -0.006836248561739922, 0.010175713337957859, 0.0007150887395255268, -0.020851988345384598, -0.022525295615196228, -0.0059280856512486935, 0.012313827872276306, 0.013157633133232594, 0.017133526504039764, 0.009045872837305069, 0.00430840952321887, -0.0035486279521137476, 0.012092150747776031, -0.006854125764220953, -0.019865166395902634, -0.028875283896923065, -0.014702225103974342, -0.024799278005957603, -0.01670447364449501, 0.01332925446331501, -0.0011003428371623158, -0.02369804121553898, -0.03661254420876503, -0.03867200016975403, -0.017991632223129272, -0.05305958539247513, -0.011176837608218193, 0.011670248582959175, -0.04356320574879646, -0.009417719207704067, -0.015274295583367348, -0.015631839632987976, 0.002695884555578232, -0.005906633101403713, -0.002486721146851778, 0.0021613556891679764, -0.022153450176119804, 0.005391769111156464, -0.03183574974536896, 0.005570541601628065, 0.007358263246715069, 0.004662378691136837, -0.0231974795460701, 0.010297277942299843, 0.005552663933485746, -0.005338137503713369, -0.012878748588263988, 0.006500156596302986, 0.006678929086774588, -0.04224744439125061, 0.040273796766996384, 0.02983350306749344, 0.023883964866399765, 0.030777418985962868, -0.04253347963094711, -0.023011555895209312, 0.024713467806577682, -0.022153450176119804, -0.009360511787235737, -0.03409543260931969, -0.018020236864686012, -0.0036791316233575344, 0.022096242755651474, 0.004025949630886316, -0.01726224273443222, 0.011441419832408428, 0.039472900331020355, 0.008302180096507072, -0.014108700677752495, 0.01812034845352173, -0.026529792696237564, 0.003101697424426675, -0.0024956597480922937, 4.9106485676020384e-05, 0.0022829207591712475, 0.0009385540033690631, 0.0198222603648901, -0.011648795567452908, -0.0075584882870316505, -0.005577692296355963, -0.016833189874887466, 0.027788348495960236, -0.014594961889088154, -0.00924609787762165, -0.06189808249473572, -0.0020147624891251326, 0.0015579996397718787, -0.0058029452338814735, 0.002002248540520668, -0.005534786731004715, 0.018392082303762436, 0.018091745674610138, -0.006349988281726837, -0.007522733882069588, 0.01250690221786499, 0.013207688927650452, 0.010661973617970943, 0.030806023627519608, -0.007082954049110413, 0.003697008825838566, -0.003907959908246994, -0.012950257398188114, -0.011913378722965717, 0.029147017747163773, 0.00566707830876112, -0.0013935292372480035, 0.02484218403697014, -0.016775982454419136, -0.017605485394597054, 0.04876905307173729, 0.010168561711907387, 0.008495254442095757, -0.0013568808790296316, -0.009217494167387486, 0.0038364510983228683, -0.005398920271545649, -0.01993667520582676, 0.0014373284066095948, 0.018663816154003143, 0.020237011834979057, 0.0007410107064060867, 0.0024724192917346954, 0.025242632254958153, -0.001538334647193551, 0.010046997107565403, 0.012292375788092613, -0.014144455082714558, -0.006925634574145079, -0.002803148003295064, -0.011427118442952633, 0.006235573906451464, -0.03635511174798012, 0.002107724081724882, -0.014659319072961807, -0.0014417977072298527, -0.005348864011466503, -0.013407913967967033, -0.015789160504937172, 0.004229750018566847, 0.0113770617172122, 0.031778544187545776, -0.017777105793356895, 0.0045872945338487625, 0.0025439283344894648, 0.027931366115808487, 0.0218674149364233, 0.020909195765852928, -0.011899076402187347, -0.023883964866399765, 0.007544186431914568, -0.0003367621102370322, 0.007140161003917456, 0.021123722195625305, -0.008101955987513065, 0.028045780956745148, -0.015503124333918095, -0.00498416880145669, 0.0036058351397514343, 0.001642916351556778, 0.01882113516330719, 0.03203597664833069, 0.007551337126642466, 0.001038666465319693, -0.013586685992777348, -0.03106345608830452, 0.014173058792948723, 0.003850752953439951, -0.00324471527710557, -0.007343961391597986, -0.012306677177548409, 0.010197165422141552, 0.008037597872316837, 0.019393207505345345, -0.0019611308816820383, 0.03089183382689953, 0.02386966347694397, 0.023683739826083183, 0.015116976574063301, -0.008867100812494755, 0.021266739815473557, -0.025643082335591316, 0.02199612930417061, -0.008545310236513615, -0.020093994215130806, 0.00120581837836653, -0.0276024267077446, -0.0076514496468007565, -0.01036163605749607, -0.008173464797437191, -0.01882113516330719, -0.0023347646929323673, -0.006464402191340923, -0.0028585672844201326, -0.016604360193014145, 0.015217089094221592, -0.005280930548906326, -0.029518863186240196, -0.007147312164306641, -0.003128513228148222, -0.008087653666734695, 0.004501483868807554, 0.003782819490879774, -0.003419911954551935, 0.006825522053986788, -0.00933905877172947, 0.028989698737859726, -0.0014829152496531606, -0.0364123210310936, -0.0001310623629251495, -0.007951786741614342, -0.002854991937056184, -0.021323947235941887, -0.00375064043328166, 0.009381964802742004, -0.0008808999555185437, 0.0138012133538723, -0.014716526493430138, 0.0010949796997010708, -0.036040473729372025, 0.0010368786752223969, 0.02989071048796177, -0.0331801176071167, 0.04310555011034012, -0.02568598836660385, 0.02002248540520668, 0.007951786741614342, 0.011562985368072987, -0.007211670279502869, -0.007211670279502869, -0.02336909994482994, 0.015488822013139725, -0.022496692836284637, 0.00868832878768444, -0.0029801323544234037, -0.010962310247123241, -0.0015874970704317093, 0.008817044086754322, 0.0022203505504876375, -0.021795904263854027, -0.0446215383708477, -0.026558395475149155, -0.0032214748207479715, -0.004108184948563576, -0.03009093552827835, -0.007823070511221886, 0.010476049967110157, 0.0364123210310936, -0.0009251461015082896, 0.023712342604994774, 0.00620339484885335, -0.023040160536766052, 0.004201146308332682, -0.009610792621970177, -0.0020415782928466797, -0.012371035292744637, -0.00889570452272892, -0.0028317514806985855, -0.011748908087611198, -0.01081929262727499, -0.01650424860417843, 0.01363674271851778, -0.002324038418009877, 0.018978456035256386, 0.0040545533411204815, -3.583823854569346e-05, 0.00361477374099195, -0.007966089062392712, -0.010340183041989803, 0.00996833760291338, 0.008917156606912613, 0.004598020575940609, 0.014673621393740177, -0.010168561711907387, 0.00949637871235609, 0.013357858173549175, 0.015588934533298016, -0.017190733924508095, 0.003155329031869769, 0.0071508875116705894, -0.02489938959479332, 0.016818886622786522, 0.0411032997071743, -0.015088372863829136, -0.02448463812470436, -0.0074297720566391945, -0.006114008836448193, 0.01709062047302723, 0.010025544092059135, 0.000985034741461277, 0.0014784459490329027, -0.037213217467069626, 0.03515376150608063, -0.008545310236513615, -0.010325881652534008, -0.018549401313066483, 0.02783125452697277, 0.004404946696013212, -0.009853922761976719, -0.0005984398885630071, -0.015245691873133183, -0.0050234985537827015, -0.024527544155716896, 0.004794670268893242, 0.005098582711070776, 0.033952414989471436, 0.004512209910899401, 0.00222392613068223, -0.015960780903697014, 0.005924510303884745, 0.016161005944013596, -0.005599144846200943, -0.04444991797208786, -0.015488822013139725, 0.004233325365930796, 0.013457970693707466, 0.0018118561711162329, 0.011369911022484303, -0.030262555927038193, 0.006764739751815796, 0.0015472732484340668, 0.030634401366114616, -0.017662692815065384, 0.01887834258377552, -0.013550931587815285, -0.022096242755651474, 0.011369911022484303, -0.007694354746490717, 0.010025544092059135, 0.003911535255610943, 0.04098888859152794, -0.040416818112134933, -0.006982841528952122, -0.007111557759344578, -0.012149358168244362, 0.006932785268872976, 0.001401574001647532, -0.008502405136823654, 0.009782413952052593, 0.010397390462458134, 9.642524673836306e-05, -0.009617943316698074, -0.0016974419122561812, 0.00564562575891614, 0.021180929616093636, -0.004623048938810825, -0.016361230984330177, 0.015074070543050766, -0.00882419478148222, 0.017491070553660393, 0.009553586132824421, 0.0050878566689789295, -0.010075600817799568, 0.0043334378860890865, -0.012842994183301926, 0.004787519108504057, 0.0044263992458581924, -0.05320260301232338, 0.02158137783408165, 0.00786597654223442, -0.005323835648596287, 0.00042882977868430316, -0.018420686945319176, -0.0048018209636211395, 0.004530087113380432, -0.0255429707467556, -0.008702630177140236, -0.014001437462866306, 0.0006896136910654604, 0.01547452062368393, 0.004783943761140108, 0.028288910165429115, 0.005853001493960619, 0.010697728022933006, 0.0049591404385864735, -0.0029265007469803095, 0.022182052955031395, 0.017476769164204597, -0.015331503003835678, 0.01790582202374935, 0.003493208670988679, 0.005813671741634607, 0.0005649201339110732, -9.692804451333359e-05, 0.0031231502071022987, 0.016404135152697563, 0.018392082303762436, -0.03475331515073776, -0.012499751523137093, -0.014802337624132633, -0.0001397775049554184, 0.012399639002978802, -0.005502608139067888, -0.0019950976129621267, -0.0024473911616951227, -0.022039035335183144, -0.016404135152697563, -0.001980795757845044, -0.017491070553660393, -0.004905508831143379, 0.017777105793356895, 0.012685674242675304, -0.007168764714151621, 0.009360511787235737, -0.03403822332620621, 0.022124845534563065, -0.006686079781502485, 0.006661051884293556, 0.02169579267501831, -0.013429366983473301, -0.004873329773545265, -0.001538334647193551, -0.008666875772178173, 0.002427726285532117, 0.01394423097372055, -0.02437022514641285, 0.03644092381000519, -0.006600269116461277, 0.019722146913409233, -0.017719898372888565, 0.010948008857667446, -0.002518900204449892, 0.01435898244380951, -0.0068040695041418076, 0.004873329773545265, -0.0052129970863461494, -0.010962310247123241, 0.00747982831671834, -0.009853922761976719, 0.0013175510102882981, 0.004444276448339224, 0.009281852282583714, 0.02384105883538723, 0.007737260311841965, -0.010433144867420197, 0.01993667520582676, 0.002181020798161626, -0.02645828388631344, 0.005552663933485746, -0.008759837597608566, 0.03132088854908943, 0.03315151482820511, 0.00801614485681057, -0.010797840543091297, -0.011548683047294617, -0.014308925718069077, 0.018005935475230217, -0.015259994193911552, 0.007358263246715069, 0.007082954049110413, 0.015803461894392967, 0.009331908077001572, -0.020208409056067467, -0.016389833763241768, -0.032779667526483536, 0.030806023627519608, -0.01556033082306385, -0.009903979487717152, 0.015217089094221592, -0.02158137783408165, -0.01731945015490055, 0.005817247088998556, 0.02231076918542385, 0.006718258839100599, 0.001760012237355113, -0.015703348442912102, 0.012821541167795658, -0.010225769132375717, -0.002127388957887888, -0.004455002956092358, 0.005062828306108713, -0.01826336607336998, -0.02233937196433544, -0.009961185976862907, 0.009546434506773949, -0.025228330865502357, -0.016961906105279922, 0.004480030853301287, 0.027087561786174774, 0.016933301463723183, 0.015259994193911552, -0.011813266202807426, 0.013415064662694931, -0.035983264446258545, 0.0012228017440065742, -0.0008335253223776817, 0.00019553207675926387, -0.0029801323544234037, 0.027759745717048645, -0.017190733924508095, 0.026172248646616936, 0.01617530733346939, 0.030434178188443184, 0.006235573906451464, -0.010762086138129234, -0.00595311401411891, 0.007980390451848507, 0.006889880169183016, -0.013508026488125324, -0.018692420795559883, -0.00924609787762165, -0.022010432556271553, 0.006954238284379244, -0.017033414915204048, -0.007930334657430649, -0.026429681107401848, 0.0007973239407874644, -0.021567076444625854, -0.018306272104382515, -0.012628467753529549, -0.01052610669285059, -0.01700481027364731, -0.014437641948461533, 0.002306161215528846, 0.012514052912592888, 0.023354798555374146, 0.02233937196433544, 0.012957408092916012, 0.029661880806088448, 0.04127492383122444, -0.03532538563013077, 0.0032214748207479715, -0.020651763305068016, -0.002919349819421768, -0.0195219237357378, -0.009424869902431965, 0.00032313072006218135, -0.02448463812470436, -0.022182052955031395, -0.009474925696849823, -0.0077158077619969845, 0.001848504412919283, -0.04419248551130295, 0.020294219255447388, 0.037041597068309784, 0.014044343493878841, -0.015088372863829136, 0.01083359494805336, -0.0016893971478566527, 0.00945347361266613, -0.01500256173312664, -0.0006248087738640606, -0.011984887532889843, 0.0025832580868154764, 0.03306570276618004, 0.009789564646780491, 0.0024456034880131483, -0.010583313181996346, 0.013615289703011513, 0.0015097311697900295, -0.0014301774790510535, 0.03338034451007843, -0.0005202270695008337, -0.030291158705949783, -0.02342630736529827, -0.009532133117318153, -0.005080705508589745, -0.005434674676507711, -0.00780876912176609, 0.018778230994939804, -0.02768823690712452, -0.011234044097363949, -0.010926555842161179, -0.018134649842977524, 0.013179086148738861, 0.002728063613176346, 0.016575757414102554, -0.02063746191561222, 0.02780264988541603, 0.017948728054761887, -0.011419967748224735, 0.03303709998726845, 0.001448054681532085, -0.013658194802701473, 0.02562878094613552, 0.015159881673753262, 0.01899275742471218, -0.020780479535460472, -0.002787058474496007, 0.014730827882885933, -0.03109205886721611, -0.002381245605647564, -0.0057707661762833595, 0.012070697732269764, -0.011655946262180805, 0.0075584882870316505, -0.035954661667346954, -0.0182061605155468, -0.00861681904643774, 0.0018216886091977358, -0.014180210418999195, -0.008302180096507072, -0.00704719964414835, 0.007422621361911297, -0.0043977960012853146, -6.793343345634639e-05, -0.0015079433796927333, -0.004025949630886316, 0.0024062737356871367, 0.002597559941932559, -0.020394330844283104, 0.01169885229319334, 0.017691295593976974, -8.916262595448643e-05, 0.003907959908246994, -0.02331189252436161, -0.005988868419080973, -0.007951786741614342, -0.011634494177997112, 0.0077158077619969845, 0.010676275007426739, -0.01189192570745945, -0.010533257387578487, -0.009732358157634735, 0.01573195308446884, -0.004787519108504057, 0.007908881641924381, -0.014645017683506012, 0.0012362096458673477, 0.025328444316983223, -0.0009197829058393836, 8.614584658062086e-05, -0.012471147812902927, -0.02877517230808735, -0.015789160504937172, 0.009224644862115383, -0.0053345621563494205, -0.007730109617114067, -0.012857295572757721, 0.011284100823104382, 0.07968948781490326, -0.00867402646690607, 0.008752685971558094, -0.010440295562148094, 0.006646750029176474, -0.02763102948665619, -0.015860669314861298, 0.016389833763241768, 0.03335173800587654, -0.00584942614659667, -0.0058959065936505795, -0.0008764306548982859, -0.003918686416000128, -0.0069613889791071415, -0.01134845893830061, 0.02824600599706173, 0.01628972217440605, 0.019664941355586052, 0.001111069112084806, 0.021881716325879097, -0.013979985378682613, 0.0034967840183526278, 0.004115335643291473, 0.01890694722533226, 0.0035450526047497988, 0.030434178188443184, -0.009689453057944775, 0.007608544547110796, 0.003793545765802264, 0.018835438415408134, -0.014022890478372574, -0.005463277921080589, -0.0065251849591732025, -0.0038543283008038998, -6.11736104474403e-05, -0.00012759864330291748, -0.03092043846845627, 0.004372767638415098, 0.007515582721680403, 0.0037971213459968567, -0.00032938775257207453, 0.023998377844691277, -0.0018467167392373085, 0.012685674242675304, -0.0048947823233902454, 0.0026583424769341946, 0.00842374563217163, 0.0025635932106524706, 0.01561753824353218, 0.005341712851077318, -0.013987136073410511, -0.01382981613278389, 0.016389833763241768, 0.0036541034933179617, 0.025671686977148056, -0.0006498369039036334, 0.009946884587407112, -0.02316887490451336, 0.0027638180181384087, -0.008817044086754322, -0.002613649470731616, 0.012063547037541866, 0.006639598868787289, -0.03555421158671379, -0.00044044997775927186, -0.036212094128131866, -0.02152417227625847, -0.01564614102244377, -0.0014310713158920407, -0.0066753532737493515, -0.017219336703419685, 0.010561861097812653, 0.009796716272830963, -0.039244070649147034, 0.003180357161909342, 0.0036684053484350443, -0.01773420162498951, 0.008244973607361317, 0.00607825443148613, 0.007823070511221886, -0.018864041194319725, 0.008066201582551003, -0.001996885286644101, -0.02604353241622448, 0.0028889586683362722, -0.0069292099215090275, 0.02794566936790943, -0.007551337126642466, 0.000974308408331126, -0.028002874925732613, -0.010948008857667446, -0.01062621921300888, -0.011241194792091846, 0.003872205503284931, 0.006918483879417181, 0.002806723350659013, -0.019336000084877014, 0.00030748816789127886, 0.014687922783195972, 0.011284100823104382, 0.013479422777891159, 0.01104097068309784, -0.005731436423957348, 0.021795904263854027, -1.9385608538868837e-05, 0.003546840278431773, -0.001058331341482699, 0.0027745442930608988, 0.01561753824353218, -0.014573508873581886, 0.01779140904545784, -0.01737665757536888, -0.009474925696849823, 0.023097366094589233, -0.019221585243940353, 0.009203191846609116, 0.02475637197494507, -0.00416181655600667, -0.009567887522280216, 0.0057135592214763165, -0.0221677515655756, 0.004251202568411827, -0.005917359609156847, 0.0019468291429802775, 0.010926555842161179, -0.007136585656553507, -0.006110433489084244, -0.008910005912184715, -0.025728892534971237, -0.007401168812066317, 0.004590869881212711, 0.0034377891570329666, 0.021066514775156975, 0.019893769174814224, 0.020265614613890648, -0.004129637498408556, -0.005030649248510599, 0.0038900827057659626, 0.013794061727821827, -0.016976207494735718, 0.011956283822655678, 0.01709062047302723, 0.021838810294866562, 0.013071822002530098, 0.0008657043217681348, 0.020237011834979057, -0.00397946871817112, -0.023512117564678192, 0.006632448174059391, -0.0052451761439442635, 0.03400962054729462, -0.03137809410691261, 0.002695884555578232, -0.00945347361266613, -0.006607420276850462, -0.0052058459259569645, -0.02680152654647827, 0.03701299428939819, -0.008681177161633968, -0.0006806750898249447, 0.01118398830294609, -0.0008791122236289084, -0.01104097068309784, -0.007565638981759548, 0.02166718989610672, -0.007308206986635923, 0.01600368693470955, 0.022325070574879646, 0.02110942080616951, -0.02713046781718731, -0.014830940403044224, 0.014687922783195972, -0.009575038217008114, -0.0413893386721611, -0.0012210140703245997, -0.0063642896711826324, -0.007265301886945963, 0.0018502922030165792, -0.03970172628760338, 0.018506497144699097, -0.0012710702139884233, 0.007265301886945963, 0.003003372810781002, 0.0018663816154003143, -0.0003027954080607742, -0.009110230952501297, 0.0031839327421039343, 0.006546637509018183, -0.0004429080872796476, -0.018592307344079018, -0.0010824656346812844, 0.022010432556271553, -0.00857391394674778, -0.013300650753080845, -0.018134649842977524, -0.004311985336244106, 0.022239260375499725, 0.01779140904545784, 0.015217089094221592, -0.018806833773851395, 0.011555834673345089, -0.003655891166999936, 0.026701413094997406, 0.006110433489084244, -0.00974665954709053, -0.010840745642781258, -0.024155698716640472, -0.0013783335452899337, -0.023497816175222397, -0.01331495214253664, -0.027387898415327072, -0.029490260407328606, 0.009839621372520924, 0.008387991227209568, -0.0035593542270362377, 0.0029318640008568764, 0.00811625737696886, 0.008180615492165089, 0.02645828388631344, 0.011577286757528782, 0.019622035324573517, 0.0068970308639109135, 0.0016795647097751498, 0.02701605297625065, -0.003101697424426675, 0.01564614102244377, 0.003180357161909342, 0.003954440820962191, 0.02211054414510727, 0.011176837608218193, 0.008516707457602024, 0.011055272072553635, -0.012285225093364716, 0.016132403165102005, -0.0231974795460701, 0.031749941408634186, 0.01547452062368393, -0.010132807306945324, 0.020952099934220314, -0.008445197716355324, -0.007637147791683674, 0.010375937446951866, -0.008044748567044735, -0.01606089249253273, 0.00999694038182497, -0.019107172265648842, 0.006231998559087515, -9.35202042455785e-05, 0.0016411286778748035, -2.6885662009590305e-05, 0.011448570527136326, -0.008080502972006798, -0.0012478298740461469, 0.012728579342365265, 0.02542855590581894, 0.008752685971558094, -0.0018252640729770064, 0.006789767649024725, 0.014451943337917328, -0.021881716325879097, -0.007744411006569862, 0.039472900331020355, -0.027316389605402946, -0.012492600828409195, 0.011927680112421513, 0.030548591166734695, -0.01444479264318943, 0.0038865073584020138, 0.0067718904465436935, 0.019207283854484558, 0.020237011834979057, -0.010948008857667446, 0.00228649633936584, 0.01890694722533226, -0.01734805293381214, -0.010640520602464676, 0.008745535276830196, -0.028045780956745148, 0.0036058351397514343, 0.008867100812494755, -0.010061298497021198, -0.019479017704725266, -0.0027262759394943714, -0.028489135205745697, 0.008395141921937466, -0.01500256173312664, 0.007672902196645737, 0.012328130193054676, 0.0034324259031563997, 0.013815514743328094, 0.0028192372992634773, -0.020394330844283104, 0.012914502993226051, -0.02763102948665619, -0.003171418560668826, 0.00811625737696886, -0.018806833773851395, 0.004973442293703556, 0.0012710702139884233, 0.003664829768240452, -0.008159162476658821, 0.02401268109679222, -0.013665346428751945, -0.018077444285154343, -0.00597456656396389, 0.01225662138313055, 0.0015910724177956581, 0.007694354746490717, -0.004419248551130295, -0.015403011813759804, -0.020008184015750885, -0.013250594958662987, 0.013508026488125324, -0.01926449127495289, -0.010340183041989803, -0.021953225135803223, -0.00397946871817112, 0.00776586402207613, 0.007465526461601257, -0.0014891723403707147, -0.0008621288579888642, 0.00023195691755972803, -0.012306677177548409, 0.020294219255447388, -0.002828175900503993, 0.011791813187301159, -0.006653900723904371, -0.008202067576348782, -0.01490244921296835, -0.03961591795086861, 0.012185112573206425, -0.01495965663343668, -0.002096997806802392, -0.006042500026524067, -0.009289002977311611, 0.02548576332628727, -0.015417313203215599, -0.006235573906451464, -0.005295232404023409, 0.016804585233330727, -0.019307395443320274, -0.001532971509732306, -3.432984522078186e-05, -0.011627343483269215, 0.011298402212560177, -0.005581267643719912, 0.01287159789353609, -0.0055419378913939, 0.003207172965630889, 0.029046904295682907, 0.012664222158491611, -0.00426550442352891, 0.008488103747367859, 0.00022167751740198582, 0.007100831251591444, 0.015102674253284931, -0.0019307396141812205, 0.009832470677793026, -0.031549714505672455, -0.005938812159001827, -0.009210343472659588, 0.011148233897984028, -0.007415470201522112, 0.0015499548753723502, 0.003350190818309784, 0.0018824711441993713, 0.004751764703541994, 0.021466964855790138, -0.027416503056883812, 0.008981514722108841, -0.02590051479637623, -0.010754934512078762, -0.010597615502774715, -0.005749313626438379, -0.012878748588263988, -0.0021470540668815374, 0.00426550442352891, 0.01500256173312664, 0.0015106250066310167, -0.006357138976454735, 0.040617041289806366, -0.006028198171406984, -0.013550931587815285, -0.0032733187545090914, 0.016275420784950256, 0.023597929626703262, 0.030148141086101532, 0.03186435624957085, 0.005477579776197672, -0.00858821626752615, -0.011362760327756405, -0.016318324953317642, -0.009696603752672672, 0.010154260322451591, 0.010497502982616425, 0.011512928642332554, -0.03426705300807953, 0.009939733892679214, -0.0033519784919917583, 0.004658803343772888, -0.004644501488655806, -0.003180357161909342, 0.018306272104382515, 0.0005917359376326203, 0.013014615513384342, -0.0250996146351099, -0.0016581120435148478, 2.5000172172440216e-06, 0.02116662636399269, -0.003160692285746336, -0.017433863133192062, 0.016346929594874382, -0.029719088226556778, -0.011091026477515697, 0.016961906105279922, -0.0010949796997010708, 0.022210655733942986, -0.007987541146576405, 0.02557157352566719, -0.014702225103974342, 0.01985086314380169, 0.002116662682965398, 0.013979985378682613, 0.004598020575940609, 0.0013729704078286886, -0.010225769132375717, 0.013465121388435364, -0.00970375444740057, -0.00444785226136446, 0.011226893402636051, -0.004755340050905943, -0.011369911022484303, -0.022039035335183144, 0.021180929616093636, -0.016804585233330727, -0.008859949186444283, 0.024170000106096268, -0.01679028384387493, 0.001585709280334413, 0.0004205615841783583, -0.012278073467314243, -0.004369192291051149, 0.01036163605749607, -0.01501686405390501, 0.014294624328613281, 0.011663097888231277, -0.006324959918856621, 0.02110942080616951, -0.009281852282583714, -0.009932583197951317, -0.016332626342773438, 0.020823383703827858, -0.004869754426181316, -0.0023115244694054127, -0.0013407914666458964, -0.005470429081469774, -0.02155277505517006, -0.0019039238104596734, 0.025757497176527977, -0.016690172255039215, -0.0011039183009415865, -0.009932583197951317, -0.002939014695584774, 0.0012469360372051597, -0.00805904995650053, -0.02199612930417061, 0.009374813176691532, 0.014058644883334637, -0.01423741690814495, 0.0010511804139241576, -0.009868225082755089, 0.017991632223129272, -0.0030087358318269253, -0.024441733956336975, -0.0039294129237532616, 0.010797840543091297, -0.0028800200670957565, -0.0022686191368848085, 0.010425994172692299, -0.009689453057944775, -0.018063141033053398, 0.011677399277687073, 0.013243443332612514, 0.011784662492573261, 0.012342431582510471, -0.008960061706602573, 0.011670248582959175, 0.012800089083611965, 0.017033414915204048, 0.03973033279180527, -0.0052451761439442635, 0.01990807056427002, -0.0032643801532685757, -0.022596804425120354, -0.0016616875072941184, -0.019736450165510178, -0.00706865219399333, 0.015588934533298016, -0.0030730939470231533, 0.003850752953439951, -0.005187968723475933, 0.010647671297192574, 0.02598632499575615, 0.01112678088247776, 0.013722552917897701, 0.005309533793479204, -0.007158038206398487, 0.01656145602464676, 0.02774544432759285, -0.000771848950535059, 0.013901324942708015, -0.002075545024126768, -0.026286661624908447, 0.017834313213825226, -0.0019039238104596734, 0.030863231047987938, 0.022410880774259567, 0.006997143384069204, 0.006718258839100599, -0.002860354958102107, -0.0020826959516853094, -0.013336405158042908, 0.0035915332846343517, 0.001975432736799121, -0.008988665416836739, -0.00047285243635997176, 0.012170810252428055, 0.027058959007263184, 0.002038002945482731, -0.010154260322451591, -0.007987541146576405, 0.003330525942146778, -0.00488048093393445, -0.0005162046873010695, 0.01026152353733778, 0.0004746401682496071, 0.007751562166959047, -0.002418787684291601, 0.02565738372504711, -0.003936563618481159, -0.0031732062343508005, 0.0002592196688055992, 0.0007731897057965398, -0.013365008868277073, -0.007830222137272358, -0.014845242723822594, 0.0015142004704102874, 0.002329401671886444, -0.0011226893402636051, -0.018363479524850845, -0.019393207505345345, -0.0034163366071879864, 0.029046904295682907, 0.015817763283848763, 0.024970898404717445, -0.025786099955439568, -0.005642050411552191, 0.024498941376805305, -0.015317200683057308, 0.014702225103974342, -0.01403719186782837, -0.004376342985779047, -0.015588934533298016, -0.004887631628662348, -0.014609263278543949, 0.016275420784950256, 0.024913692846894264, -0.02316887490451336, 0.007279603276401758, 0.03555421158671379, 0.010897952131927013, 0.002206048695370555, -0.027259184047579765, 0.00991113018244505, 0.003003372810781002, 0.004980592988431454, -0.034982141107320786, 0.004419248551130295, 0.010225769132375717, -0.010461748577654362, 0.001469507347792387, 0.004008072428405285, -0.02099500596523285, 0.009017269127070904, -0.008666875772178173, 0.018392082303762436, -0.003609410487115383, 0.00397946871817112, 0.007815919816493988, -0.02598632499575615, 0.00325544155202806, -0.02983350306749344, -0.0028621426317840815, -0.01052610669285059, -0.0005908421007916331, -0.017219336703419685, 0.0008379946229979396, 0.003861479228362441, -0.016103798523545265, -0.023683739826083183, -0.0097609618678689, 0.0073654139414429665, -0.004451427608728409, 0.0012031368678435683, -0.008902855217456818, -0.0017617999110370874, -0.004755340050905943, 0.0026100738905370235, 0.025214029476046562, -0.0007039154879748821, -0.018778230994939804, -0.008638272061944008, 0.00747982831671834, -0.0017734201392158866, 0.003782819490879774, -0.014280322007834911, 0.006174791604280472, -0.006997143384069204, -0.0013935292372480035, -0.011677399277687073, -0.00325544155202806, 0.008030446246266365, -0.009789564646780491, 0.017390958964824677, -0.005145063623785973, -0.012828691862523556, 0.011369911022484303, 0.0066503253765404224, 0.010154260322451591, -0.01829197071492672, -0.003487845417112112, 0.021509869024157524, -0.018921248614788055, -0.033981017768383026, 0.010211467742919922, -0.0018252640729770064, -0.016389833763241768, -0.008337934501469135, 0.0028567796107381582, -0.025171123445034027, 0.0030534290708601475, -0.001290735206566751, -0.004630199633538723, -0.006196244154125452, 0.004201146308332682, -0.0036469525657594204, 0.007522733882069588, -0.007815919816493988, 0.0026225880719721317, 0.007544186431914568, -0.012349583208560944, 0.019950976595282555, -0.014559206552803516, 0.0177628044039011, -0.019593432545661926, -0.016318324953317642, -0.0037792441435158253, -0.032636649906635284, 0.017190733924508095, -0.008216369897127151, -0.017305146902799606, -0.04207582399249077, 0.016518549993634224, 0.007858825847506523, 0.012707127258181572, -0.0018199008191004395, 0.002316887490451336, 0.008952911011874676, -0.0008187766070477664, 0.0011289463145658374, 0.011777511797845364, 0.015188485383987427, -0.014830940403044224, 0.003128513228148222, 0.008752685971558094, 0.016189608722925186, 0.01127694919705391, -0.008152011781930923, -0.0025904090143740177, -0.01650424860417843, -0.008094804361462593, 0.022525295615196228, 0.005323835648596287, 0.0030945464968681335, -1.6424693967564963e-05, 0.008402292616665363, 0.001659005880355835, -0.008445197716355324, -0.02384105883538723, 0.006546637509018183, -0.014244567602872849, -0.009053023532032967, -0.024556146934628487, -0.027759745717048645, 0.00750128086656332, 0.0022614682093262672, -0.009560736827552319, 0.0008960955892689526, -0.018506497144699097, 0.0010279400739818811, -0.016132403165102005, 0.001043135765939951, 0.0024527544155716896, 0.013336405158042908, 0.005566965788602829, -1.2402320862747729e-05, 0.00632853526622057, 0.018477892503142357, -0.0016035864828154445, 0.009610792621970177, 0.01890694722533226, -0.0013622440164908767, 0.014830940403044224, -0.023883964866399765, -0.004576568026095629, -0.017948728054761887, 0.00991113018244505, -0.012585561722517014, -0.0017921911785379052, 0.01056901179254055, -0.0007119602523744106, 0.0007030216511338949, -0.0009546434739604592, 0.006357138976454735, -0.012664222158491611, -0.024856485426425934, 0.010425994172692299, 0.012392488308250904, -0.020837686955928802, -0.0037113106809556484, 0.0032840450294315815, -0.010275824926793575, -0.010540408082306385, 0.002776331966742873, 0.013193387538194656, 0.003922261763364077, 0.017591184005141258, -0.014308925718069077, 0.013207688927650452, 0.005298807751387358, -0.03340894728899002, -0.0227541234344244, -0.009374813176691532, 0.00029698529397137463, 0.0018520798766985536, -0.004376342985779047, -0.00397946871817112, 0.0010878287721425295, -0.001585709280334413, -0.008695479482412338, 0.0017555429367348552, -0.00863112136721611, 0.009474925696849823, -0.02557157352566719, 0.013457970693707466, -0.005431098863482475, 0.037070199847221375, -0.017548277974128723, 0.006872002966701984, 0.007637147791683674, 0.02063746191561222, -0.007394017651677132, -0.014859544113278389, 0.006528760306537151, -0.010769236832857132, 0.006199819501489401, 0.003436001483350992, -0.021509869024157524, -0.01676168106496334, 0.003223262494429946, 0.02677292376756668, -0.01993667520582676, -0.004494332708418369, -0.02785985730588436, -0.02258250303566456, -0.02231076918542385, -0.0026154371444135904, 0.017219336703419685, -0.003060579765588045, 0.01547452062368393, -0.011076725088059902, -0.014330378733575344, -0.016389833763241768, 0.008094804361462593, -0.028102988377213478, 0.005731436423957348, 0.021595681086182594, 0.029375845566391945, 0.004158241208642721, 0.021624283865094185, 0.00595311401411891, -0.008716931566596031, -0.0184921957552433, -0.014466245658695698, 0.003983044531196356, 0.010411691851913929, 0.019121473655104637, -0.009060174226760864, -0.010275824926793575, -0.006789767649024725, 0.010697728022933006, 0.007293905131518841, -0.005230874288827181, 0.002032639691606164, 0.007036473136395216, 0.014280322007834911, 0.001775207812897861, 0.032665252685546875, 0.006643174681812525, 0.0144590949639678, -0.011398514732718468, 0.005617022048681974, -0.025228330865502357, 0.006893455516546965, 0.008759837597608566, -0.01169885229319334, 0.006046075373888016, -0.010168561711907387, -0.009253248572349548, 0.005431098863482475, -0.01600368693470955, 0.00882419478148222, -0.001280902768485248, -0.0033895208034664392, -0.024298716336488724, -0.01106957346200943, 0.02369804121553898, -0.0017001235391944647, -0.017476769164204597, -0.011977736838161945, 0.01189192570745945, 0.0075584882870316505, -0.012342431582510471, 0.008252124302089214, 0.012792937457561493, -0.008144861087203026, 0.0050878566689789295, -0.012971710413694382, 0.01664726622402668, -0.0017108498141169548, 0.013114728033542633, -0.01700481027364731, 0.004680255893617868, 0.013500875793397427, -0.011677399277687073, 0.015832064673304558, -0.01608949713408947, 0.005102158058434725, -0.00888140220195055, -0.01935030147433281, -0.006543062161654234, 0.016718775033950806, 0.002912198891863227, 0.0035808070097118616, -0.01297886110842228, -0.008502405136823654, 0.007894580252468586, -0.017634088173508644, 0.013221991248428822, -0.011327005922794342, 0.01307897362858057, 0.023268988355994225, 0.008345086127519608, 0.007100831251591444, -0.014623564667999744, -0.012192263267934322, -0.012235168367624283, 0.014788035303354263, -0.0030945464968681335, -0.00828072801232338, -0.015116976574063301, 0.0097609618678689, -0.01104097068309784, 0.01611809991300106, 0.011984887532889843, 0.01219941396266222, 0.012950257398188114, 0.02152417227625847, -0.012485449202358723, 0.007629997096955776, -0.010039846412837505, 0.005159365478903055, -0.0029783446807414293, 0.013565233908593655, -0.00914598535746336, -0.0034735435619950294, 0.01935030147433281, 0.008173464797437191, -0.006568090058863163, 0.02618655003607273, 0.01870672218501568, 0.010104204528033733, 0.024212904274463654, -0.00778731657192111, -0.014988260343670845, -0.004848301876336336, 0.0265726987272501, -0.00326616782695055, -0.010490352287888527, -0.012935955077409744, 0.0048947823233902454, -0.015074070543050766, -0.010390239767730236, -0.012471147812902927, -0.010168561711907387, -0.008087653666734695, -0.041703976690769196, 0.0002148618223145604, -0.001280902768485248, 0.006732560694217682, -0.009632245637476444, 0.0007977709174156189, -0.007780165411531925, -0.011913378722965717, 0.011813266202807426, -0.013465121388435364, 0.005613446701318026, -0.029461655765771866, -0.0025993476156145334, -0.01896415464580059, -0.01709062047302723, 0.015374408103525639, 0.004429974593222141, 0.010340183041989803, -0.011756058782339096, 0.0019235886866226792, -0.013693949207663536, -0.02205333672463894, 0.02542855590581894, -0.00034368952037766576, 0.0030319762881845236, -0.008602517656981945, 0.00853100884705782, 0.0077158077619969845, -0.0017957666423171759, -0.015259994193911552, -0.002483145799487829, -0.011091026477515697, -0.010068449191749096, 9.759844397194684e-05, 0.0182061605155468, 0.01829197071492672, 0.0038436020258814096, -0.006986417341977358, -0.015274295583367348, 0.015903573483228683, 0.011112479493021965, -0.0009251461015082896, 0.0002500576083548367, -0.0017975543159991503, 0.002624375745654106, -0.0030945464968681335, 0.016775982454419136, -0.0002601135347504169, 0.005727861076593399, -0.007844523526728153, -0.0033948838245123625, -0.005495456978678703, -0.008030446246266365, -0.005985293071717024, -0.008123408071696758, -0.02927573397755623, 0.019707845523953438, -0.03332313522696495, -0.004279806278645992, -0.013479422777891159, 0.00028178966022096574, -0.006610995624214411, -0.0042047216556966305, -0.017591184005141258, 0.019979579374194145, -0.024584751576185226, 0.004040251486003399, 0.02049444429576397, 0.015774857252836227, 0.04130352661013603, -0.007233122829347849, -0.004129637498408556, -0.010762086138129234, 0.02498520165681839, -0.00776586402207613, -0.01597508229315281, 0.00016949838027358055, -0.012885899282991886, 0.000687826017383486, 0.007815919816493988, -0.006793342996388674, 0.006063952576369047, 0.019221585243940353, -0.0055884188041090965, -0.0021506294142454863, -0.02099500596523285, -0.002302585868164897, 0.003160692285746336, -0.012192263267934322, -0.017920123413205147, 0.01573195308446884, 0.009124532341957092, -0.0029014726169407368, 0.01337215956300497, 0.0048947823233902454, -0.0032590168993920088, -0.007107982411980629, -0.004115335643291473, 0.015217089094221592, -0.004072430543601513, -0.017433863133192062, -0.024327319115400314, -0.015889272093772888, 0.031578321009874344, 0.014208813197910786, -0.006875578314065933, -0.022096242755651474, -0.000313298252876848, 0.00822352059185505, 0.022267863154411316, 0.04619473218917847, 0.009875375777482986, -0.00372918788343668, -0.0021220259368419647, -0.0006341943517327309, 0.032865479588508606, 0.005756464321166277, -0.0010413479758426547, 0.006610995624214411, 0.013701100833714008, -0.0033787942957133055, -0.0045157852582633495, -0.0013112940359860659, -0.013894174247980118, 0.013422216288745403, -0.0025367774069309235, -0.0012612377759069204, 0.004233325365930796, 0.005141488276422024, -0.014816639013588428, -0.02063746191561222, 0.013558083213865757, 0.002186383819207549, 0.005620597396045923, 0.017777105793356895, -0.008445197716355324, -0.0003063708427362144, 0.0011682762997224927, -0.02125243842601776, -0.013572384603321552, -0.009725207462906837, -0.010783538222312927, 0.021152324974536896, -0.011999188922345638, -0.026672810316085815, -0.029018301516771317, 0.002679795026779175, 0.0039294129237532616, 0.005899482406675816, -0.009460624307394028, -0.010097052901983261, 0.008309331722557545, 0.012850144878029823, 0.031778544187545776, 0.010654821991920471, 0.005656351801007986, -0.015603236854076385, -0.02997652068734169, 0.002048729220405221, 0.00632853526622057, -0.012885899282991886, -0.023497816175222397, 0.011870473623275757, 0.016933301463723183, -0.01764838956296444, 0.011234044097363949, 0.007508432026952505, 0.013186236843466759, -0.021652886644005775, -0.00995403528213501, 0.002313312143087387, 0.00867402646690607, 0.004462153650820255, 0.003425275208428502, 0.027116166427731514, -0.012742881663143635, -0.009324757382273674, -0.013336405158042908, 0.0009305092389695346, -0.02205333672463894, 0.004294108133763075, 0.0008317375904880464, 0.0027834828943014145, -0.0024992350954562426, -0.0025010230019688606, -0.013457970693707466, 0.005906633101403713, 0.009060174226760864, -0.015245691873133183, -0.01087650004774332, 0.002751304069533944, 0.015317200683057308, 0.005170091520994902, -0.0161467045545578, 0.006582391913980246, 0.0005474898498505354, 0.010661973617970943, 0.006800494156777859, -0.0052129970863461494, 7.916255708551034e-05, 0.007408319506794214, 0.005509758833795786, -0.012106452137231827, -0.0237838514149189, -0.00488048093393445, 0.019192982465028763, 0.0010922980727627873, 0.012192263267934322, 0.013708251528441906, 0.003897233633324504, -0.011019517667591572, -0.0003765389265026897, 0.013629592023789883, -0.0031106360256671906, -0.0004192207707092166, 0.007168764714151621, -0.010089902207255363, 0.001869957079179585, -0.02052304707467556, 0.0074869790114462376, 0.009882526472210884, -0.01955052651464939, -0.029518863186240196, 0.0019843713380396366, 0.0182061605155468, -0.014745130203664303, 0.01271427795290947, -0.0026726440992206335, 0.01711922511458397, 0.024069886654615402, 0.015217089094221592, -0.022568201646208763, 0.01923588663339615, -0.018506497144699097, 0.022982953116297722, 0.0016196760116145015, -0.0020433661993592978, 0.00037251654430292547, 0.012614165432751179, -0.015789160504937172, -0.009982638992369175, 0.014144455082714558, 0.015088372863829136, 0.012013491243124008, 0.0022775577381253242, 6.201160431373864e-05, 0.004680255893617868, 0.0014686135109513998, 0.006417921744287014, 0.032693859189748764, -0.025228330865502357, 0.0012835842790082097, -0.0255429707467556, 0.009732358157634735, -0.002438452560454607, -0.006668202579021454, -0.0020826959516853094, 0.0015928602078929543, 0.006153338588774204, 0.02060885727405548, -0.015932178124785423, 0.004008072428405285, 0.00584942614659667, -0.015403011813759804, -0.013858419843018055, -0.01650424860417843, -0.013186236843466759, -0.019064266234636307, 0.001422132714651525, -0.00030212500132620335, 0.006228423211723566, -0.0013979985378682613, -0.0004214554210193455, -0.00945347361266613, -0.009532133117318153, -0.0325794443488121, -0.007283179089426994, -0.02537134848535061, 0.00995403528213501, 0.010125656612217426, 0.003546840278431773, -0.01943611167371273, 0.007100831251591444, 0.015188485383987427, 0.00622484739869833, 0.006049650721251965, -0.011834719218313694, 0.017305146902799606, -0.014745130203664303, -0.007908881641924381, -0.00882419478148222, -0.011999188922345638, -0.0016312962397933006, 0.006242724601179361, -0.004505059216171503, 0.007136585656553507, 0.010540408082306385, -0.00776586402207613, -0.02645828388631344, 0.008595366962254047, 0.0020576678216457367, -0.0053953444585204124, -0.005345288198441267, 0.014215964823961258, -0.014280322007834911, -0.006446524988859892, -0.022711219266057014, -0.0006337474333122373, 0.004029524978250265, 0.011112479493021965, 0.0037971213459968567, -0.007758712861686945, 0.0443355031311512, 0.016961906105279922, 0.007115133106708527, 0.014180210418999195, -0.01158443745225668, -0.0030570044182240963, 0.017805710434913635, -0.001448054681532085, -0.0023258260916918516, 0.0013229141477495432, 0.011384213343262672, 0.005538362544029951, 0.004544388968497515, 0.007336810696870089, -0.003807847620919347, -0.006628872826695442, -0.016332626342773438, 0.00991113018244505, -0.0091030802577734, 0.014552055858075619, 0.0009635820752009749, 0.007115133106708527, -0.010869349353015423, 0.007894580252468586, -0.003840026678517461, 0.007315358147025108, -0.01773420162498951, -0.013221991248428822, 0.0026047108694911003, -0.012528355233371258, -0.006378591526299715, -0.025829005986452103, 0.02459905296564102, -0.0011146445758640766, -0.0005010090535506606, -0.005692106671631336, 0.023326195776462555, -0.008044748567044735, -0.01425171922892332, -1.1697007948896498e-06, 0.009532133117318153, 0.004859027918428183, -0.02152417227625847, -0.01731945015490055, 0.02125243842601776, 0.02066606469452381, 0.009718055836856365, -0.01700481027364731, 0.013937079347670078, -0.021452663466334343, 0.009424869902431965, -0.01999388076364994, -0.012063547037541866, 0.005220147781074047, 0.010847896337509155, -0.015789160504937172, -0.0028532040305435658, -0.0182061605155468, -0.007408319506794214, -0.019679242745041847, -0.011498627252876759, 0.005116459913551807, -0.011362760327756405, 0.015331503003835678, -0.01761978678405285, -0.009417719207704067, 0.011920529417693615, -0.00132827740162611, 0.04656657949090004, 0.0004549752047751099, 0.013114728033542633, -0.00964654702693224, 0.005742162466049194, -0.01606089249253273, 0.005145063623785973, -0.008702630177140236, -0.02381245605647564, 0.003475331235677004, 0.005259477999061346, -0.00867402646690607, 0.026372473686933517, 0.019307395443320274, -0.0009385540033690631, -0.001685821684077382, 0.007286754436790943, -0.005398920271545649, -0.008409443311393261, 0.01684749126434326, 0.007680053357034922, -0.006628872826695442, -0.0025439283344894648, -0.019650638103485107, 0.023855360224843025, 0.008859949186444283, 0.0004902827204205096, -0.008988665416836739, 0.01030442863702774, -0.0039258371107280254, 0.013200538232922554, -0.0004889419069513679, -0.025757497176527977, 0.012735730968415737, 0.009753810241818428, 0.022468088194727898, -0.018063141033053398, 0.014594961889088154, 0.007086529396474361, -0.000766485754866153, -0.004251202568411827, -0.009053023532032967, -0.001665262971073389, -0.0039294129237532616, -0.009381964802742004, -0.0035647174809128046, 0.009024419821798801, 0.005098582711070776, 0.011720304377377033, 0.004955565091222525, -0.005709983874112368, 0.010969461873173714, -0.029490260407328606, 0.007629997096955776, -0.010190014727413654, 0.011055272072553635, 0.01086219772696495, 0.002533201826736331, -0.01500256173312664, -0.0003591086424421519, 0.015860669314861298, -0.009074476547539234, 0.01729084551334381, 0.024641958996653557, -0.00964654702693224, 0.00622484739869833, -0.008244973607361317, 0.0025635932106524706, 0.0008509556064382195, 0.004819698166102171, 0.027287786826491356, -0.0006073784898035228, -0.009739508852362633, -0.008101955987513065, -0.02149556763470173, -0.01016141101717949, -0.029218526557087898, -0.018563704565167427, -0.008766988292336464, 0.010783538222312927, -0.013236292637884617, -0.0031195746269077063, 0.004755340050905943, -0.009546434506773949, 0.0035897456109523773, -0.020923497155308723, -0.0038006966933608055, 0.006686079781502485, 0.004969866946339607, -0.00661457097157836, -0.022882839664816856, -0.013200538232922554, 0.01242109201848507, 0.0011754271108657122, 0.002211411949247122, 6.815689994255081e-05, -0.006471553351730108, 0.005577692296355963, 0.012306677177548409, 0.009346210397779942, 0.005413221661001444, 0.005609871353954077, 0.007465526461601257, 0.00044044997775927186, -0.011791813187301159, -0.03011953830718994, -0.005398920271545649, -0.005116459913551807, -0.008302180096507072, 0.017591184005141258, -0.011613041162490845, 0.003664829768240452, -0.012349583208560944, 0.012392488308250904, 0.01706201769411564, 0.00778731657192111, 0.02537134848535061, -0.008495254442095757, 0.0033752189483493567, -0.0032000222709029913, -0.015345804393291473, 0.017777105793356895, 0.04342018812894821, -0.009153136052191257, 0.021538473665714264, 0.014988260343670845, 0.00025430344976484776, 0.010411691851913929, 0.0012737518409267068, -0.018778230994939804, 0.007637147791683674, -0.017462467774748802, -0.004862603731453419, 8.787770639173687e-05, -0.0037434895057231188, -0.00665747607126832, 0.001312187872827053, 0.013865570537745953, 0.021981827914714813, -0.006199819501489401, -0.0025117492768913507, 0.0369843915104866, 0.0010601191315799952, 0.0055240606889128685, -0.007694354746490717, 0.002506386023014784, -0.008287878707051277, 0.004465729463845491, 0.004290532320737839, 0.02007969282567501, -0.012471147812902927, -0.0167330764234066, -0.004433550406247377, -0.001264813239686191, -0.00745837576687336, 0.021824508905410767, -0.021538473665714264, 0.01490244921296835, -0.016489947214722633, 0.00805904995650053, 0.013958532363176346, -0.004533662460744381, 0.0021452661603689194, 0.017605485394597054, 0.018091745674610138, -0.012514052912592888, -0.005853001493960619, 0.004859027918428183, 0.006149763241410255, -0.000606037734542042, -0.010368786752223969, 0.007980390451848507, 0.012764334678649902, 0.004730312153697014, -0.0075584882870316505, 0.006989992689341307, 0.005452551878988743, -0.0030587920919060707, -0.01846359111368656, 0.0016688383184373379, 0.0014864907134324312, 0.01597508229315281, 0.024670561775565147, -0.0037005844060331583, -0.010225769132375717, 0.016604360193014145, -0.008888552896678448, 0.00747982831671834, -0.0037792441435158253, 0.002722700359299779, 0.013586685992777348, 0.0364123210310936, -0.011870473623275757, -0.02863215282559395, -0.00599601911380887, 0.010225769132375717, -0.010097052901983261, 0.0013255957746878266, -0.03237921744585037, 0.01388702355325222, -0.0030319762881845236, 0.009861073456704617, 0.0028406900819391012, 0.017777105793356895], "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde": [-0.0005481409607455134, -0.025797612965106964, -0.007860574871301651, 0.0019855531863868237, -0.008995731361210346, -0.033588211983442307, 0.012961006723344326, 0.03576522320508957, -0.0076428730972111225, 0.06164058670401573, 0.006391090340912342, -0.006873143371194601, -0.0048438552767038345, 0.003047819249331951, 0.003887524362653494, 0.05028901621699333, -0.012961006723344326, 0.018318016082048416, 0.007572897709906101, -0.027881326153874397, 0.04406897723674774, -0.01814696379005909, -0.04627709090709686, 0.04916941002011299, -0.0030847506131976843, 0.0014432434691116214, -0.025222258642315865, 0.016203202307224274, -0.00990541186183691, -0.02598421275615692, 0.02320074662566185, 0.032468605786561966, -0.012883256189525127, 0.005135419778525829, 0.007464047055691481, -0.02312299609184265, 0.01497474405914545, -0.035049919039011, -0.04546848684549332, 0.025859812274575233, -0.007603997830301523, 0.03564082458615303, 0.024164851754903793, -0.0009393231011927128, -0.030198289081454277, 0.0024860717821866274, -0.0019301559077575803, -0.012113526463508606, -0.013816261664032936, -0.033650413155555725, 0.008622528985142708, 0.01866011694073677, 0.019624223932623863, 0.018566817045211792, 0.033152807503938675, -0.029218634590506554, 0.02607751451432705, 0.047241196036338806, -0.01079176738858223, -0.06282239407300949, 0.017789311707019806, -0.03134899586439133, 0.007417396642267704, -0.0032713518012315035, 0.033246107399463654, -0.007526247296482325, 0.020230676978826523, -0.0035687475465238094, -0.023107444867491722, 0.02488015592098236, 0.010822867974638939, 0.014274990186095238, -0.05622915178537369, 0.009765461087226868, -0.007872236892580986, -0.012393428012728691, 0.024133751168847084, 0.0058623868972063065, 0.022376591339707375, -0.0031741636339575052, -0.010247514583170414, -0.0035979037638753653, 0.025175608694553375, 0.00024904453312046826, 0.054611943662166595, 0.019033320248126984, -0.021039282903075218, -0.05682005733251572, -0.026264114305377007, -0.005947912577539682, 0.005147082265466452, 0.002785411197692156, 0.0002531750360503793, 0.011188295669853687, 0.02492680586874485, 0.017260609194636345, 0.0244292039424181, -0.00410133833065629, 0.006775955203920603, -0.015394596382975578, 0.017742661759257317, 0.011421547271311283, 0.00990541186183691, -0.010177538730204105, 0.01297655701637268, -0.010247514583170414, 0.012968781404197216, 0.00011042998812627047, -0.0363561287522316, 0.021396934986114502, -0.008591429330408573, -0.03679152950644493, 0.029638485983014107, -0.015511222183704376, -0.06655441969633102, -0.02652846649289131, -0.03725803270936012, -0.031971000134944916, -0.004171313717961311, -0.03688483312726021, 0.022983044385910034, -0.006130625959485769, -0.008995731361210346, -0.020230676978826523, -0.02896983176469803, 0.00939225871115923, 0.017245057970285416, 0.030167190358042717, 0.03669822961091995, 0.007767274044454098, -0.012891030870378017, -0.019981876015663147, 0.01707400754094124, 0.012961006723344326, 0.01162369828671217, 0.012502278201282024, -0.010962818749248981, 0.04248286783695221, -0.02150578610599041, 0.016203202307224274, -0.03856424242258072, -0.0360451266169548, -0.021085932850837708, 0.025066757574677467, 0.02599976398050785, 0.007153044920414686, -0.03557862341403961, 0.047210097312927246, -0.030244940891861916, 0.011755873449146748, -0.08956856280565262, -0.030742542818188667, -0.016856305301189423, 0.01214462611824274, 0.016871856525540352, -0.04581058770418167, 0.009415584616363049, 0.01816251501441002, 0.01506026927381754, 0.039372846484184265, 0.005209282971918583, -0.059152573347091675, -0.02316964603960514, 0.021179232746362686, 0.03162889927625656, 0.038159940391778946, 0.0852145329117775, 0.03853314369916916, -0.03225090354681015, 0.004315152298659086, -0.026839468628168106, -0.028067925944924355, 0.01872231811285019, 0.01763381063938141, -0.03682263195514679, 0.014788143336772919, 0.01018531434237957, 0.0590592697262764, 0.0265751164406538, -0.016016600653529167, -0.04699239507317543, -0.006538816262036562, 0.009462234564125538, 0.013264233246445656, 0.024056000635027885, 0.0429493710398674, 0.004711679648607969, 0.01643645390868187, 0.016685254871845245, 0.003887524362653494, -0.001043800264596939, 0.005726323463022709, -0.008350402116775513, 0.00734353344887495, -0.006632116623222828, -0.008109375834465027, -0.011491522192955017, 0.009773236699402332, 0.0053842212073504925, 0.028472229838371277, 0.00412077596411109, -0.028565529733896255, -0.006410527974367142, 0.033246107399463654, -0.01699625700712204, 0.016623053699731827, 0.005633023101836443, -0.034272413700819016, 0.036511629819869995, -0.030742542818188667, 0.04820530489087105, -0.02830117754638195, -0.023060794919729233, -0.0039069619961082935, -0.01327200885862112, -0.005131532438099384, -0.008016075007617474, 0.021365834400057793, -0.028721030801534653, -0.02668396756052971, -0.003395752515643835, 0.023947151377797127, -0.010371915064752102, -0.038813043385744095, -0.030898043885827065, -0.008086050860583782, -0.035298723727464676, 0.011825849302113056, -0.012307902798056602, 0.000572438002564013, 0.0027523674070835114, 0.005088769365102053, 0.005905149504542351, -0.004688354674726725, -0.03567192330956459, 0.024227052927017212, 0.07445386797189713, -0.01016198843717575, -0.01932877115905285, 0.01750941015779972, 0.002738761017099023, 0.005512509495019913, -0.017820412293076515, -0.0043268147855997086, 0.04403787851333618, 0.027539223432540894, -0.01107944454997778, 0.07675528526306152, 0.012688879854977131, 0.0013684085570275784, -0.011662573553621769, 0.024009350687265396, -0.012999881990253925, -0.008435928262770176, -0.02158353477716446, 0.03682263195514679, 0.023962700739502907, -0.012323452159762383, -0.011025018990039825, -0.006021775305271149, 0.0005180126172490418, 0.022298840805888176, -4.695400639320724e-05, 0.004548403434455395, 0.03498772159218788, -0.034210216253995895, 0.02153688482940197, -0.006208376493304968, 0.015371271409094334, 0.06095638498663902, 0.006177276372909546, 0.007036419119685888, -0.0026201915461570024, 0.002361671067774296, 0.006779842544347048, -0.018504615873098373, 0.0061967140063643456, 0.016234302893280983, 0.036076225340366364, 0.01702735759317875, -0.025611011311411858, 0.0053842212073504925, 6.73635076964274e-05, 0.013551910407841206, 0.042234066873788834, -0.020137377083301544, -0.0265751164406538, -0.015969950705766678, -0.04926270991563797, 0.01527019590139389, 0.0012945455964654684, -0.006371652707457542, 0.024771306663751602, 0.013170932419598103, 0.021272534504532814, 0.022376591339707375, -0.024195952340960503, -0.01276663038879633, 0.018800068646669388, 0.03293510526418686, 0.018831169232726097, -0.020230676978826523, 0.019126620143651962, -0.017431659623980522, 0.03158224746584892, -0.01808476448059082, 0.026948319748044014, 0.004754442255944014, -0.02268759347498417, 0.046152688562870026, 0.047956500202417374, -0.014655967243015766, -0.01074511744081974, -0.01582222431898117, -0.007802261505275965, -0.018940018489956856, 0.0014539341209456325, -0.0034462905023247004, -0.01471039280295372, -0.016265401616692543, 0.025673210620880127, -0.021816786378622055, -0.07246345281600952, 0.016047701239585876, 0.05657125636935234, -0.026963869109749794, 0.007421283982694149, 0.0040235877968370914, -0.036418329924345016, 0.015239096246659756, -0.028596630319952965, -0.017742661759257317, -0.02316964603960514, 0.01708955690264702, -0.04232736676931381, -0.03110019490122795, -0.04114555940032005, -0.027554772794246674, 0.035951826721429825, -0.0019894405268132687, -0.03007388859987259, 0.0025035657454282045, 0.04543738439679146, -0.01103279460221529, -0.0025988100096583366, -0.002589091192930937, 0.012385653331875801, 0.024786856025457382, -0.010053138248622417, -0.011304921470582485, 0.0011137757683172822, -0.029685135930776596, 0.017680460587143898, -0.013233133591711521, 0.020650530233979225, -0.0018621241906657815, -0.03005833923816681, 0.013528585433959961, 0.007514584809541702, 0.008257102221250534, -0.005967350210994482, -0.0176027100533247, -0.01184139959514141, 0.026481816545128822, -0.004610604140907526, 0.023325147107243538, 0.004144100937992334, -0.0272282212972641, -0.013046531938016415, 0.018380215391516685, -0.013077632524073124, 0.028612179681658745, 0.0037223047111183405, 0.0007376577705144882, -0.013691861182451248, -0.03268630430102348, 0.018038112670183182, 0.004548403434455395, 0.00537255872040987, 0.009835436940193176, 0.018940018489956856, 0.007969425059854984, 0.003275239374488592, 0.035858526825904846, 0.024709105491638184, 0.0005068359896540642, 0.015627847984433174, -0.03155114874243736, -0.026481816545128822, -0.0009694513864815235, -0.025828711688518524, 0.005722436122596264, -0.059121470898389816, 0.014912543818354607, -0.013645211234688759, -0.021256983280181885, 0.013847362250089645, -0.017975913360714912, 0.03268630430102348, -0.024258151650428772, 0.004668917041271925, -0.0276480745524168, 0.008288201875984669, -0.007063631899654865, 0.008070500567555428, -0.0398082509636879, 0.0009461262379772961, -0.002091488102450967, 0.01988857425749302, -0.00648827850818634, -0.00550084700807929, 0.013186482712626457, 0.026901669800281525, -0.00019838522712234408, 0.05091102048754692, 0.011678123846650124, -0.008692504838109016, 0.0556071512401104, -0.033028408885002136, -0.02823897823691368, 0.012712204828858376, 0.04453548043966293, -0.003671766724437475, 0.011856949888169765, 0.002600753912702203, 0.014010637998580933, 0.02655956707894802, -0.009322283789515495, -0.015068044885993004, -0.01645200327038765, 0.0012420640559867024, 0.04487758129835129, -0.014601541683077812, -0.009026831947267056, 0.0011011413298547268, 0.007992750033736229, 0.03209540247917175, -0.012424527667462826, -0.0020584440790116787, 0.033059507608413696, -0.011304921470582485, 0.006173389032483101, -0.007662310730665922, 0.001139044645242393, -0.043820176273584366, -0.02265649288892746, -0.03788003697991371, 0.009135682135820389, -0.012883256189525127, -0.04584168642759323, -0.01100169401615858, -0.0147648174315691, -0.04602828994393349, -0.003183882450684905, 0.008816905319690704, 0.0029447998385876417, -0.029747337102890015, 0.009726585820317268, 0.022920843213796616, -0.05371003597974777, -0.011390446685254574, 0.004466765560209751, 0.03134899586439133, 0.006779842544347048, 0.01932877115905285, -0.02612416446208954, -0.010014262981712818, 0.0021964514162391424, 0.013209807686507702, -0.005423096474260092, 0.0029642374720424414, -0.023853849619627, -0.0035726348869502544, 0.01501361932605505, 0.01020086370408535, -0.0020312315318733454, -0.018209164962172508, -0.01705845817923546, 0.02205003798007965, -0.04133215919137001, -0.0027154358103871346, -0.00908125750720501, 0.0002828174037858844, -0.012751080095767975, 0.01417391374707222, 0.0031897136941552162, 0.0008503959979861975, -0.033588211983442307, 0.019142169505357742, -0.007265783380717039, 0.03738243505358696, 0.010581841692328453, -0.017198408022522926, -0.004793317522853613, -0.001849489752203226, -0.055824849754571915, -0.014663741923868656, -0.011405996978282928, -0.01391733717173338, -0.01982637494802475, 0.02150578610599041, -0.034832220524549484, -0.0076428730972111225, 0.0030283816158771515, -0.038284339010715485, 0.038253240287303925, -0.005508622154593468, 0.04254506900906563, -0.001711482647806406, -0.01303098164498806, -0.02662176825106144, 0.017835961654782295, -0.010807317681610584, 0.016296502202749252, 0.01987302489578724, 0.03361931070685387, -0.013240908272564411, -0.0014762873761355877, 0.02777247503399849, -0.01701180636882782, -0.02201893925666809, -0.021365834400057793, -0.009438909590244293, -0.012572254054248333, -0.02259429171681404, 0.0025599347427487373, -0.0017950644250959158, -0.021847886964678764, 0.054580844938755035, -0.01586109958589077, -0.002585203852504492, 0.018302464857697487, -0.014702617190778255, 0.01816251501441002, 0.020184027031064034, -0.018986670300364494, 0.00011869097943417728, 0.00824155192822218, -0.006503828335553408, 0.027041619643568993, -0.035982925444841385, 0.01987302489578724, 0.005014906637370586, -0.009516660124063492, 0.00396333122625947, 0.04764549806714058, -0.023900499567389488, 0.002305302070453763, -0.0006176304304972291, 0.020137377083301544, -0.022329939529299736, 0.03909294679760933, -0.011227170936763287, 0.0033296647015959024, -0.0024666341487318277, -0.02030842751264572, 0.00592458713799715, -0.04192306473851204, -0.040647953748703, -0.006624341476708651, -0.0187534186989069, 0.020650530233979225, 0.012097976170480251, 0.007549572270363569, 0.007635097950696945, -0.009026831947267056, -0.03399251401424408, 0.011351571418344975, -0.03676043078303337, 0.026357416063547134, 0.029825087636709213, -0.0006117991870269179, 0.023387346416711807, -0.013684086501598358, 0.005932362284511328, 0.041083358228206635, -0.005143194925040007, -0.008023850619792938, -0.019966324791312218, -0.031488947570323944, 0.04935600981116295, -0.000476707675261423, -0.022423241287469864, -0.014306089840829372, -0.029203083366155624, 0.017198408022522926, -0.008653629571199417, -0.02096153236925602, 0.00367759820073843, 0.01987302489578724, 0.007258008234202862, 0.01862901635468006, -0.014811468310654163, 0.044939782470464706, -0.021630186587572098, 0.0072541204281151295, 0.02823897823691368, 0.039994850754737854, 0.009065707214176655, 0.016001051291823387, 0.018271364271640778, 0.020510578528046608, -0.008832455612719059, 0.02659066766500473, -0.0242737028747797, 0.04602828994393349, -0.00963328592479229, 0.01583777368068695, 0.019422072917222977, 0.01757161132991314, 0.002416096394881606, -0.0020681628957390785, 0.025362210348248482, -0.011732548475265503, 0.009361159056425095, 0.017711561173200607, 0.006480503361672163, 0.023045245558023453, 0.005038231611251831, 0.016249852254986763, 0.01637425273656845, -0.029451884329319, 0.047241196036338806, 0.002845668001100421, 0.006076200865209103, 0.023527298122644424, -0.01870676688849926, 0.019515372812747955, 0.007534022442996502, 0.0009330058819614351, -0.0147259421646595, 0.020588329061865807, 0.004400677513331175, 0.0028709368780255318, -0.007339646108448505, -0.005477522034198046, 0.018489066511392593, -0.014267214573919773, -0.026979420334100723, -0.020510578528046608, -0.008124926127493382, 0.010216413997113705, -0.0024491404183208942, 0.0737074613571167, -0.006546590942889452, 0.017742661759257317, -0.00959441065788269, 0.0019116901094093919, 0.044473279267549515, 0.02935858443379402, 0.010659592226147652, 0.04071015492081642, 0.0338992141187191, 0.006538816262036562, -0.0003294677007943392, -0.02612416446208954, -0.00753013463690877, 0.005477522034198046, 0.011133870109915733, 0.009190107695758343, 0.053523436188697815, -0.004217964131385088, 0.030415991321206093, 0.015612298622727394, 0.014827018603682518, -0.010356364771723747, 0.020028525963425636, 0.012339002452790737, 0.023573948070406914, 0.007429059129208326, 0.0036115101538598537, -0.0026318540330976248, 0.01705845817923546, -0.006441628094762564, 0.007662310730665922, -0.011304921470582485, 0.0037125858943909407, 0.014570442028343678, 0.005073219537734985, -0.00795387476682663, -0.014562666416168213, -0.04829860478639603, -0.029685135930776596, 0.01702735759317875, -0.030198289081454277, 0.0008708054665476084, -0.018535716459155083, 0.004311264492571354, -0.021225882694125175, -0.007841137237846851, -0.005706885829567909, 0.021630186587572098, -0.007977199740707874, 0.01506026927381754, -0.00964883528649807, 0.0024141527246683836, -0.001901971292681992, -0.04033695533871651, 0.006581578869372606, -0.040430255234241486, -0.0429493710398674, -0.02721267193555832, -0.007071407046169043, -0.022811993956565857, -0.005469746887683868, 0.005088769365102053, -0.02382274903357029, -0.01107944454997778, 0.004264614544808865, -0.001966115552932024, 0.015106920152902603, -0.0062822396866977215, -0.025704311206936836, 0.01578334905207157, 0.011491522192955017, 0.02329404652118683, -0.012191276997327805, 0.010861743241548538, 0.009726585820317268, 0.048516303300857544, -0.01754051074385643, 0.011732548475265503, -0.01800701394677162, -0.01702735759317875, -0.016529753804206848, 0.018489066511392593, 0.013443059287965298, -0.023589497432112694, 0.014298315159976482, -0.00876247975975275, 0.04005705192685127, -0.005496959667652845, 0.016265401616692543, 0.011133870109915733, -0.009773236699402332, -0.010815093293786049, -0.0015005844179540873, 0.007596222683787346, -0.00028597601340152323, 0.0001160183091997169, 0.018038112670183182, -0.0044784280471503735, 0.03327720984816551, -0.0023558398243039846, 0.0009607044630683959, -0.024180401116609573, 0.028752131387591362, 0.023480648174881935, -0.04288716986775398, -0.012852155603468418, 0.05097322165966034, -0.025175608694553375, 0.015736699104309082, -0.0002334944438189268, -0.044379979372024536, 0.014321640133857727, 0.04375797510147095, -0.011351571418344975, -0.017338359728455544, 0.0315977968275547, -0.03361931070685387, 0.022547641769051552, 0.004097450990229845, -0.01582999899983406, -0.00022851354151498526, 0.010356364771723747, -0.008389277383685112, 0.013816261664032936, 0.03349491208791733, 0.019375421106815338, 0.03234420344233513, 0.013163157738745213, 0.011421547271311283, 0.011709223501384258, -0.03234420344233513, -0.016623053699731827, 0.013505259528756142, -0.02264094166457653, -0.014508240856230259, 0.004291826859116554, -0.019126620143651962, -0.04938711225986481, 0.03165999799966812, -0.006216151639819145, 0.023433998227119446, -0.03725803270936012, 0.03843984007835388, -0.030167190358042717, 0.014827018603682518, -0.009617735631763935, 0.012416752986609936, -0.014523791149258614, 0.004225739277899265, 0.027368173003196716, 0.008809130638837814, -0.03181549906730652, -0.015472346916794777, 0.011530397459864616, -0.018520167097449303, -0.002083713188767433, 0.019375421106815338, -0.01816251501441002, 0.029280833899974823, 0.037724535912275314, 0.025875363498926163, -0.012447853572666645, -0.010923943482339382, -0.015176895074546337, -0.026155265048146248, 0.007063631899654865, 0.005201507825404406, 0.0031158507335931063, -0.022392140701413155, 0.04994691535830498, -0.007347421254962683, -0.011110545136034489, 0.0025366097688674927, 0.021941188722848892, 0.026233015581965446, 0.00929895881563425, -0.0204794779419899, 0.015285746194422245, 0.023636149242520332, 0.012603354640305042, -0.002579372376203537, 0.011180520057678223, 0.014002863317728043, 0.0090890321880579, -0.012875480577349663, -0.0153012964874506, 0.0022081139031797647, 0.015433471649885178, -0.017182858660817146, 0.03791113942861557, 0.0012488672509789467, 0.020510578528046608, 0.0024510840885341167, 0.0032985645812004805, -0.021334733814001083, 0.023480648174881935, -0.006433852948248386, -0.06462620943784714, -0.0028223427943885326, 0.0003214496828150004, -0.027414822950959206, -0.010760667733848095, -0.0024880156852304935, 0.026901669800281525, 0.03218870237469673, 0.0720902532339096, 0.022563191130757332, -0.030136089771986008, 0.0021264757961034775, 5.788766793557443e-05, -0.00817157607525587, 0.00960996001958847, 0.004781655035912991, 0.018286915495991707, -0.01819361373782158, 0.01987302489578724, 0.017447208985686302, 0.012603354640305042, -0.03262410685420036, -0.015231320634484291, -0.02268759347498417, -0.018333565443754196, -0.00042082450818270445, 0.006134513765573502, -0.001631788327358663, -0.008226001635193825, -0.0008907290175557137, 0.006305564660578966, 0.008311526849865913, 0.018955569714307785, -0.013684086501598358, 0.002431646455079317, 0.014313865453004837, 0.008575879037380219, -0.03063369169831276, -0.000376117997802794, 0.013007656671106815, 0.006632116623222828, -0.018955569714307785, 0.0067953928373754025, -0.020121825858950615, -0.029902838170528412, -0.01984192430973053, -0.006694316864013672, -0.003490997012704611, -0.0005379361682571471, 0.001535572111606598, 0.005570822395384312, -0.001266361097805202, 0.012922131456434727, -0.02153688482940197, 0.0053259083069860935, -0.002596866339445114, -0.008964631706476212, 0.01705845817923546, -0.018209164962172508, 0.001160426065325737, -0.025020107626914978, -0.04515748471021652, -0.008855780586600304, 0.04752109944820404, -0.05283923074603081, 0.0024860717821866274, 0.002769861137494445, 0.011685898527503014, 0.01445381622761488, 0.017167307436466217, 0.01990412548184395, -0.0019301559077575803, -0.018924469128251076, 0.047210097312927246, -0.002363614970818162, 0.016296502202749252, -0.02038617804646492, 0.007603997830301523, -0.01866011694073677, -0.02088378183543682, 0.0016347040655091405, 0.02318519540131092, 0.0036970358341932297, -0.0023286270443350077, -0.0019291839562356472, -0.016560854390263557, -0.0023286270443350077, -0.008715829811990261, 0.04416227713227272, 0.024740206077694893, -0.0054153213277459145, 0.0037475735880434513, -0.016685254871845245, 0.020790480077266693, -0.010597391985356808, -0.012945456430315971, -0.0010574066545814276, -0.03573412448167801, -0.023045245558023453, -0.008583653718233109, 0.003650385420769453, 0.029451884329319, -0.010130888782441616, -0.00537255872040987, -0.0010195033391937613, -0.0016852418193593621, 0.030695892870426178, -0.032593004405498505, -0.01360633596777916, 0.004147988744080067, 0.007347421254962683, 0.026886118575930595, -0.00024126948846969754, 0.01814696379005909, 0.0063794273883104324, -0.008972406387329102, 0.003949724603444338, 0.006900355685502291, 0.004560066387057304, 0.003422965295612812, 0.022361040115356445, -0.000614228833001107, 0.007868349552154541, -0.009228982962667942, 0.021785687655210495, -0.007992750033736229, -0.008358177728950977, -0.007024756632745266, -0.010589616373181343, -0.008638079278171062, 0.002235326450318098, -0.002655179239809513, 0.009182333014905453, -0.011009469628334045, -0.03050929121673107, -0.014570442028343678, -0.010566291399300098, -0.04568618908524513, -0.017353909090161324, 0.012867705896496773, -0.04260726645588875, -0.017369458451867104, -0.023496197536587715, -0.003683429444208741, -0.015332396142184734, -0.01822471432387829, 0.01704290695488453, -0.024118201807141304, -0.0044162278063595295, -0.008295977488160133, -0.020541679114103317, 0.003662048140540719, -0.01078399270772934, 0.0014276934089139104, -0.017835961654782295, -0.0011798636987805367, -0.004439552780240774, -0.0048943934962153435, -0.03153559938073158, 0.003749517258256674, 0.0014082557754591107, -0.05252822861075401, 0.05280813202261925, 0.04459768161177635, 0.04039915278553963, 0.010029813274741173, -0.02153688482940197, -0.012385653331875801, -0.018566817045211792, -0.02203448861837387, -0.015340171754360199, -0.016249852254986763, -0.012385653331875801, -0.004773879889398813, 0.03187770023941994, 0.003279126947745681, -0.019095519557595253, 0.021225882694125175, 0.05209282785654068, 0.009726585820317268, -0.025393309071660042, 0.01501361932605505, -0.02663731761276722, -0.0215524360537529, 0.007327983621507883, -0.008809130638837814, 0.0025443846825510263, 0.004715566989034414, 0.013792936690151691, -0.004458990413695574, -0.013886237516999245, -0.006363877560943365, -0.0072191329672932625, 0.028503328561782837, -0.01918882131576538, -0.010690691880881786, -0.08241552114486694, -0.019546473398804665, -0.00879358034580946, 0.0118880495429039, 0.008047175593674183, 0.002940912265330553, 0.024087101221084595, 0.009291183203458786, -0.03156669810414314, -0.015697823837399483, 0.012789955362677574, -0.01638980396091938, 0.02659066766500473, 0.017820412293076515, -0.012090200558304787, 0.005252045579254627, -0.010807317681610584, -0.01412726379930973, 0.002787355100736022, 0.010916168801486492, -0.016747456043958664, 0.00482053030282259, 0.02663731761276722, -0.018426865339279175, -0.011390446685254574, 0.039403948932886124, -0.004206301644444466, 0.00410133833065629, -0.0016706635942682624, -0.037102531641721725, -0.013225357979536057, 0.003522097133100033, 0.0009325199062004685, -0.005928474944084883, 0.01357523538172245, 0.01357523538172245, 0.0038680867291986942, -0.005279258359223604, 0.027337072417140007, -0.008824680931866169, 0.0033704836387187243, -0.0019962438382208347, 0.0004169369931332767, 0.0048399679362773895, -0.009275632910430431, -0.012618904002010822, -0.009431133978068829, -0.03231310471892357, -0.011172745376825333, 0.011802524328231812, -0.008389277383685112, 0.007860574871301651, -0.03691593185067177, -0.016809655353426933, -0.009151232428848743, -0.0058351741172373295, 0.012618904002010822, -0.01556564774364233, 0.006429965607821941, 0.01497474405914545, 0.05601145327091217, 0.014065063558518887, 0.012953231111168861, -0.010885068215429783, -0.018940018489956856, 0.002155632246285677, 0.017198408022522926, 0.027881326153874397, 0.025020107626914978, -0.014500466175377369, 0.025937562808394432, -0.002600753912702203, -0.0153012964874506, 0.012533378787338734, 0.008910206146538258, 0.01800701394677162, 0.01649865321815014, 0.021070381626486778, 0.0062861270271241665, -0.001641507144086063, -0.04344697296619415, 0.01019308902323246, 0.009983162395656109, -0.005671898368746042, -0.009454459883272648, -0.009874312207102776, -0.0014490747125819325, 0.002087600529193878, 0.007456271909177303, -0.0058001866564154625, 0.034303516149520874, 0.019344322383403778, 0.03281070664525032, 0.014033962972462177, -0.010714017786085606, 0.06176498904824257, -0.010535190813243389, 0.005368671379983425, -0.01128937117755413, -0.0004273847152944654, 0.0039341747760772705, -0.03349491208791733, 0.014088388532400131, -0.010410790331661701, -0.006468840874731541, -0.010247514583170414, -0.0032499704975634813, -0.010853968560695648, -0.0031080758199095726, -0.019950775429606438, -0.0018417147221043706, -0.029032032936811447, -0.019701974466443062, -0.00023130769841372967, -0.026948319748044014, -0.0028048488311469555, -0.0004565411654766649, -0.017913712188601494, -0.022392140701413155, 0.010822867974638939, -0.010978369042277336, 0.03669822961091995, -0.006721529643982649, -0.02481795661151409, 0.016591954976320267, -0.011056119576096535, -0.005881824530661106, 0.0018689273856580257, 0.014741492457687855, 0.02596866339445114, -0.0033043958246707916, -0.0009981219191104174, -0.02441365271806717, -0.00015963146870490164, -0.022423241287469864, 0.012696654535830021, 0.025642111897468567, -0.019499823451042175, 0.02498900704085827, -0.03218870237469673, 0.01704290695488453, 0.0022100575733929873, 0.008350402116775513, -0.00029715264099650085, -0.010014262981712818, -0.00581573648378253, -0.0017561891581863165, -0.004155763424932957, 0.010962818749248981, 0.000572438002564013, 0.007168595213443041, -0.01506026927381754, 0.005524172447621822, 0.0018475459655746818, -0.019126620143651962, -0.024133751168847084, -0.020619429647922516, 0.009182333014905453, 0.005633023101836443, -0.026886118575930595, -0.029685135930776596, 0.01214462611824274, 0.028161227703094482, -0.008521453477442265, 0.027865774929523468, 0.021334733814001083, -0.012051326222717762, -0.009493335150182247, 0.016047701239585876, 0.007872236892580986, -0.010270839557051659, -0.015246870927512646, -0.002511340891942382, -0.007534022442996502, -0.004194638691842556, -0.01761826127767563, -0.0028106800746172667, -0.0002136923576472327, 0.013652985915541649, 0.009120132774114609, 0.0009223151719197631, 0.013590785674750805, -0.00853700377047062, 0.0010369971860200167, -0.0008329020929522812, 0.005644685588777065, -0.001086563104763627, 0.018908919766545296, 0.00581573648378253, 0.011553722433745861, 0.02376054972410202, 0.03551642224192619, -0.008124926127493382, -0.012898806482553482, 0.0001586595899425447, -0.004700017161667347, 0.03228200227022171, 0.03449011594057083, -0.039341747760772705, -0.01649865321815014, -0.020012976601719856, 0.013209807686507702, 0.013007656671106815, 0.019406521692872047, 0.010550741106271744, -0.0014539341209456325, -0.04092785716056824, 0.005112094804644585, 0.019981876015663147, -0.024180401116609573, 0.006857593078166246, 0.019126620143651962, 0.024211501702666283, -0.014920318499207497, 0.010060912929475307, -0.012929906137287617, 0.010340815410017967, -0.01873786747455597, 0.004987693857401609, 0.005730210803449154, 0.04475318267941475, -0.005792411509901285, 0.0024083214811980724, -0.015277971513569355, 0.011196070350706577, 0.0398082509636879, 0.014477141201496124, -0.02613971382379532, -0.012090200558304787, 0.007110282313078642, -0.0003872946253977716, 0.006702092010527849, -5.5792050261516124e-05, -0.009415584616363049, 0.0039069619961082935, -0.010651816613972187, 0.031939901411533356, -0.02327849715948105, 0.022298840805888176, -0.003984712529927492, -0.02383830025792122, -0.008272651582956314, -0.016001051291823387, -0.003730079624801874, 0.009734361432492733, 0.02881433069705963, -0.024600254371762276, -0.010247514583170414, -0.01273552980273962, 0.001605547615326941, 0.01637425273656845, 0.002791242441162467, -0.0031236258801072836, 0.006620454136282206, 0.007689523510634899, 0.012276802211999893, -0.01331088412553072, -0.004563953727483749, 0.00043102927156724036, 0.005761311389505863, -0.009330058470368385, 0.014593767002224922, 0.010815093293786049, -0.02892318181693554, 0.01637425273656845, 0.009205657988786697, 0.0017736830050125718, -0.009858761914074421, 0.01691850647330284, -0.018924469128251076, -0.006441628094762564, 0.0023344585206359625, -0.02725932188332081, 0.01806921325623989, 0.015215770341455936, 0.032002102583646774, -0.006014000158756971, -0.024475853890180588, 0.00788778718560934, 0.005535834934562445, -0.009835436940193176, -0.007351308595389128, -0.02257874235510826, 0.006021775305271149, 0.021739035844802856, 0.010426340624690056, 0.02203448861837387, 0.009812111966311932, 0.03361931070685387, -0.0054425341077148914, -0.008583653718233109, 0.020821580663323402, 0.01556564774364233, -0.017711561173200607, 0.01981082372367382, -0.0037864488549530506, 0.010177538730204105, 0.005551384761929512, 0.014873668551445007, -0.001525853294879198, 0.028456678614020348, -0.01701180636882782, -0.03110019490122795, -0.0013849305687472224, -0.006698204670101404, -0.00023337294987868518, 0.009734361432492733, -0.00846702791750431, 0.0009155120351351798, -0.0034151901490986347, 0.007013094145804644, -0.007417396642267704, 0.004781655035912991, -0.024071551859378815, 0.002029287861660123, 0.016840755939483643, 0.02548661082983017, -0.027850225567817688, -0.014904769137501717, -0.036076225340366364, 0.012230152264237404, -0.015744473785161972, 0.03756903484463692, 0.00353959109634161, -0.036573830991983414, 0.003269408131018281, 0.00935338344424963, -0.007448496762663126, 0.0062317014671862125, 0.016125451773405075, -0.018582366406917572, 0.06117408350110054, -0.001249839086085558, 0.010029813274741173, 0.006103413179516792, 0.0002828174037858844, -0.006216151639819145, 0.0061967140063643456, -0.024755755439400673, 0.0024122088216245174, 0.013100957497954369, -0.015324621461331844, 0.012891030870378017, -0.02259429171681404, 0.006014000158756971, 0.0027212670538574457, -0.006014000158756971, 0.0295296348631382, 0.03127124533057213, -0.002245045267045498, -0.0018990556709468365, 0.014655967243015766, 0.01551899779587984, 0.010527416132390499, -0.01387846190482378, 0.022221090272068977, 0.009578860364854336, 0.021412484347820282, -0.028472229838371277, -0.018364666029810905, -0.0011079444084316492, 0.014827018603682518, -0.006472728215157986, 0.02716602012515068, -0.00993651244789362, 0.011281595565378666, 0.02100818231701851, -0.024786856025457382, -0.0024938469287008047, -0.028752131387591362, 0.012284576892852783, -0.008879105560481548, -0.004276277031749487, -0.002400546334683895, -0.009726585820317268, 0.0034657281357795, 0.021630186587572098, 0.01876896806061268, 0.011398221366107464, -0.01976417377591133, -0.005430871620774269, -0.003045875346288085, -0.019142169505357742, 0.008140476420521736, -0.023558398708701134, -0.009773236699402332, -0.015340171754360199, -0.005737985949963331, -0.0067370799370110035, 0.0009767404990270734, -0.030944693833589554, -0.017245057970285416, 0.015169120393693447, 0.008311526849865913, 0.019095519557595253, 0.009773236699402332, -0.02201893925666809, 0.029825087636709213, -0.04266946762800217, -0.01595439948141575, -0.003607622580602765, 0.009174557402729988, -0.00638720253482461, 0.03847094252705574, -0.024133751168847084, 0.0272282212972641, -0.0019262683345004916, 0.04067905619740486, 0.015379047021269798, -0.030415991321206093, -0.012486728839576244, 0.009858761914074421, -0.018209164962172508, -0.0011876387288793921, -0.02886098064482212, 0.0022819768637418747, -0.01137489639222622, 0.0015725035918876529, -0.014010637998580933, 0.002392771188169718, -0.008521453477442265, -0.016623053699731827, -0.024600254371762276, -0.027057170867919922, -0.0076312106102705, 0.0030381004326045513, -0.014516016468405724, 0.01923547126352787, 0.007048081606626511, -0.003586241276934743, 0.011421547271311283, 0.025813162326812744, -0.0038816931191831827, 0.035392023622989655, 0.04400677606463432, -0.049045007675886154, 0.00793443713337183, -0.015969950705766678, -0.006464953068643808, -0.011460421606898308, -0.0338992141187191, -0.01576779969036579, -0.016265401616692543, -0.03349491208791733, -0.0204794779419899, -0.0007813923875801265, 0.01988857425749302, -0.03262410685420036, 0.024149302393198013, 0.018240265548229218, 0.011258270591497421, -0.008404827676713467, 0.012097976170480251, -0.006394977681338787, 0.010830642655491829, -0.005080994218587875, -0.016607504338026047, -0.003745629684999585, -0.0032771830447018147, 0.03058704175055027, 0.009462234564125538, 0.010045363567769527, -0.016716355457901955, 0.014033962972462177, -0.011351571418344975, -0.0023441773373633623, 0.031971000134944916, -0.017307259142398834, -0.015542322769761086, -0.03130234777927399, 0.007351308595389128, -0.007040306925773621, 0.0024627468083053827, -0.016607504338026047, 0.0180225633084774, -0.022780893370509148, 0.0006710839224979281, -0.02268759347498417, -0.012712204828858376, 0.0007041278877295554, 0.02942078560590744, -0.007526247296482325, -0.004754442255944014, 0.02144358493387699, 0.008645853959023952, -0.020230676978826523, 0.02208113856613636, -0.010255289264023304, -0.0038447617553174496, 0.03700923174619675, 0.0011302977800369263, 0.03181549906730652, -0.022998593747615814, -0.0028631617315113544, 0.005271483212709427, -0.03262410685420036, -0.00030055423849262297, -0.010387465357780457, 0.014352739788591862, 0.007821699604392052, 0.007526247296482325, -0.02652846649289131, -0.04372687637805939, -0.0028689929749816656, 0.0032149828039109707, -0.012113526463508606, -0.003417134052142501, 0.018815618008375168, 7.671786443097517e-05, -0.004132438451051712, -0.02267204225063324, 0.009244533255696297, -0.01645200327038765, 0.00096993736224249, -0.012595579028129578, -0.01441494096070528, -0.005699110683053732, -0.0030128315556794405, -0.014306089840829372, 0.0001881804782897234, -0.029607385396957397, -0.01467929221689701, -0.003119738306850195, -0.0003894813416991383, 0.010511865839362144, 0.010527416132390499, -0.010962818749248981, -0.011468197219073772, -0.024118201807141304, 0.006616566795855761, 0.013489710167050362, 0.015394596382975578, 0.0012410922208800912, 0.012587804347276688, 0.027523672208189964, -0.0018465741304680705, 0.005438646767288446, -0.0013314770767465234, -0.017851512879133224, -0.014935868792235851, 0.008412603288888931, -0.004560066387057304, -0.01133602112531662, 0.0018669835990294814, 0.004633929114788771, 0.08739154785871506, -0.004291826859116554, -0.004299602005630732, -0.015215770341455936, 0.003024494042620063, -0.02203448861837387, -0.0033724275417625904, 0.01646755263209343, 0.02834782749414444, 0.0008722632774151862, -0.010838418267667294, -0.01579889841377735, 0.022189989686012268, -0.0025404971092939377, -0.017820412293076515, 0.029545186087489128, 0.02895428240299225, 0.035858526825904846, 0.006857593078166246, 0.00960996001958847, -0.005388109013438225, 1.1077926501457114e-05, -0.001303292578086257, 0.03788003697991371, -0.0034929406829178333, 0.020059626549482346, -0.019142169505357742, 0.003502659499645233, -0.008295977488160133, 0.02144358493387699, 0.008389277383685112, -0.022361040115356445, -0.019033320248126984, -0.004435665439814329, -0.0036970358341932297, 0.012300127185881138, -0.009368933737277985, 0.005279258359223604, -0.013645211234688759, 0.006134513765573502, -0.0024782968685030937, -0.0024044339079409838, 0.023480648174881935, 0.019530922174453735, -0.010698467493057251, -0.009174557402729988, -0.0004288425261620432, 0.00397305004298687, 0.011017244309186935, -0.020603880286216736, -0.01218350138515234, -0.02372944913804531, 0.01699625700712204, 0.02330959588289261, 0.024491403251886368, 0.005625247955322266, 0.02203448861837387, -0.008894655853509903, -0.011227170936763287, -0.005574710201472044, -0.02380719967186451, 0.005722436122596264, -0.008482578210532665, -0.011818074621260166, -0.002797073917463422, -0.029591836035251617, -0.024646904319524765, -0.012634454295039177, -0.00011547162284841761, 0.0010204751743003726, -0.010659592226147652, 0.008910206146538258, 0.0023286270443350077, -0.037040334194898605, -0.011421547271311283, -0.004062463063746691, -0.00019947859982494265, 0.018535716459155083, 0.0090501569211483, -0.006243364419788122, -0.006445515435189009, 0.0025191158056259155, -0.003683429444208741, -0.01864456757903099, 0.006542703602463007, 0.0017357796896249056, 0.023480648174881935, -0.028099026530981064, 0.008949081413447857, -0.023107444867491722, -0.014951419085264206, -0.006896468345075846, -0.0013606335269287229, 0.006235589273273945, 0.016203202307224274, -9.281464735977352e-05, -0.013652985915541649, 0.0008917009108699858, 0.005699110683053732, -0.012517828494310379, 0.0076506482437253, 0.01103279460221529, 0.000993748428300023, 0.00382532412186265, 0.002320852130651474, -0.01416613906621933, 0.002278089290484786, 0.0036095664836466312, -0.00735519640147686, -0.01631205342710018, 0.006725417450070381, -0.01015421375632286, -0.005761311389505863, 0.01443049032241106, -0.02606196328997612, 0.005228720605373383, 0.024786856025457382, -0.0017523015849292278, -0.021039282903075218, -0.006433852948248386, -0.012517828494310379, 0.010029813274741173, -0.008583653718233109, -0.0052948081865906715, 0.006006225477904081, -0.006581578869372606, 0.005465859547257423, -0.009127907454967499, -0.021365834400057793, 0.0011322414502501488, 0.004194638691842556, 0.005360896233469248, 0.015394596382975578, 0.01872231811285019, 0.020759381353855133, -0.0017182858427986503, -0.0022003387566655874, -0.005139307118952274, 0.012782180681824684, 0.0031702762935310602, 0.012424527667462826, 0.020075175911188126, 0.01929767057299614, 0.02312299609184265, 0.0034210216253995895, 0.037631236016750336, -0.01412726379930973, -0.022407690063118935, -0.006041212938725948, -0.006402752827852964, 0.031240146607160568, -0.03408581390976906, 0.005018793977797031, -0.008311526849865913, 0.012758854776620865, -0.0032383077777922153, -0.020666079595685005, 0.04089675843715668, -0.016141001135110855, -0.004124663304537535, 0.006573803722858429, -0.010574066080152988, -0.013450834900140762, -0.014033962972462177, -0.0007949987193569541, 0.0013479990884661674, 0.03517432138323784, 0.012548929080367088, 0.016747456043958664, -0.009120132774114609, 0.004595053847879171, 0.00992873776704073, -0.0031605574768036604, -0.04307376965880394, -0.0033024519216269255, 0.01247895322740078, -0.004093563184142113, -0.002538553439080715, -0.024180401116609573, 0.01819361373782158, -0.006418302655220032, -0.007922775112092495, -0.0013499428750947118, -0.001180835533887148, -0.003374371211975813, -0.013676310889422894, 0.008443702943623066, 0.0006190882413648069, 0.0006433852831833065, -0.011133870109915733, -0.00030395580688491464, 0.016576403751969337, -0.0020312315318733454, -0.007837248966097832, -0.008910206146538258, 0.002235326450318098, 0.01976417377591133, 0.01878451742231846, 0.0026571229100227356, -0.01421278901398182, 0.008148251101374626, 0.00935338344424963, 0.016747456043958664, 0.00845925323665142, -0.016591954976320267, -0.0023558398243039846, -0.01074511744081974, -0.011413771659135818, -0.013528585433959961, -0.005885711871087551, -0.03806664049625397, -0.02948298491537571, 0.013139832764863968, -0.008381502702832222, -0.015713373199105263, 0.0028709368780255318, 0.021878987550735474, 0.00960996001958847, 0.027492573484778404, 0.020090727135539055, 0.007911112159490585, 0.013466384261846542, 0.016560854390263557, 0.005586372688412666, -0.020526129752397537, -0.003772842464968562, 0.0005214142147451639, 0.005971237551420927, 0.010068688541650772, -0.0032149828039109707, 0.02438255399465561, -0.00908125750720501, -0.0186756681650877, 0.02827007696032524, 0.0030342128593474627, 0.022563191130757332, 0.021878987550735474, -0.007168595213443041, 0.025828711688518524, -0.021132582798600197, -0.0026026975829154253, -0.002377221127972007, -0.007833361625671387, 0.00011960211850237101, 0.009143457747995853, -0.007394071668386459, 0.01356746070086956, -0.006468840874731541, -0.006402752827852964, -2.891346230171621e-05, -0.018940018489956856, -0.0024705217219889164, 0.00014991266652941704, 0.023620598018169403, 0.025331109762191772, 0.01551899779587984, 0.000516554806381464, 0.003607622580602765, 0.014617091976106167, -0.01763381063938141, 0.003905018325895071, 0.021972287446260452, -0.011600373312830925, -0.009812111966311932, -0.009796561673283577, 0.017789311707019806, -0.010527416132390499, 0.002526890952140093, 0.0008722632774151862, 0.016716355457901955, 0.001159454113803804, 0.002495790598914027, 0.0062550269067287445, 0.013590785674750805, -0.02156798541545868, -0.0009193995501846075, -0.010830642655491829, -0.018380215391516685, 0.00024199839390348643, 0.006608791649341583, -0.00387974944896996, -7.76290034991689e-05, 0.016265401616692543, -0.012292352505028248, 0.003708698321133852, -0.023667247965931892, 0.009757686406373978, 0.009773236699402332, -0.006457177922129631, 0.0003620257193688303, -0.0062239267863333225, -0.01496696937829256, 0.009524434804916382, -0.005399771500378847, -0.013800711371004581, 0.025875363498926163, -0.017773762345314026, 0.001493781222961843, 0.01298433169722557, 0.004182976204901934, -0.012510053813457489, 0.006900355685502291, -0.006461065728217363, -0.017307259142398834, 0.000847480318043381, 0.006845930591225624, 0.004365690052509308, -0.0033782587852329016, -0.01213685143738985, -0.013100957497954369, -0.004031362943351269, 0.0026474040932953358, 0.00422962661832571, -0.005601922515779734, -0.022920843213796616, -0.010053138248622417, 0.007506809663027525, 0.019048869609832764, -0.013738511130213737, -0.008917980827391148, 0.002579372376203537, 0.0052637080661952496, -0.022920843213796616, 0.02161463536322117, -0.004657254088670015, 0.015410146676003933, -0.008614754304289818, 0.008342627435922623, -0.004260726738721132, -0.025144508108496666, 0.005003244150429964, -0.0076778605580329895, -0.0010778161231428385, -0.0026998857501894236, -0.0020370627753436565, 0.012634454295039177, -0.0038078301586210728, -0.005702998489141464, -0.005220945458859205, 0.008397052995860577, -0.02037062868475914, -0.006433852948248386, -0.006869255565106869, -0.011942475102841854, 0.01977972500026226, -0.0019884686917066574, 0.00609175069257617, -0.003537647193297744, 0.01582222431898117, 0.023029694333672523, 0.015690049156546593, -0.01184139959514141, 0.012416752986609936, 0.007891674526035786, 0.0062317014671862125, -0.0032305328641086817, -0.0028962057549506426, 0.015985500067472458, -0.033743713051080704, 0.013855136930942535, -0.003856424242258072, 0.021365834400057793, -0.026497365906834602, -0.008995731361210346, 0.0038758618757128716, 0.001604575663805008, -0.005621360149234533, 0.024538055062294006, -0.028658829629421234, 0.00931450817734003, -0.014243889600038528, -0.004595053847879171, -0.020230676978826523, -0.006185051519423723, -0.013349759392440319, 0.0009461262379772961, 0.0025502159260213375, -0.011413771659135818, 0.001674551167525351, -0.010076463222503662, 0.020090727135539055, 0.004381239879876375, -0.008295977488160133, -0.01273552980273962, 0.014640416949987411, 0.011965800076723099, 0.03111574612557888, 0.02781912498176098, 0.001976806204766035, -0.01873786747455597, -0.018955569714307785, -0.007487372029572725, -0.0057768612168729305, 0.014881443232297897, 0.0007196779479272664, 0.00607231305912137, -0.029109783470630646, 0.014578216709196568, -0.00749125936999917, -0.006480503361672163, 0.00937670934945345, -0.0067642927169799805, 0.021785687655210495, 0.015246870927512646, 0.012129075825214386, -0.029140884056687355, 0.012300127185881138, 0.009407809004187584, 0.011794748716056347, -0.0010350533993914723, 0.007506809663027525, 0.011810299009084702, -0.036418329924345016, 0.01585332490503788, 0.012199051678180695, 0.0035998476669192314, 0.019733073189854622, -0.0038855806924402714, 0.011872499249875546, -0.006251139100641012, 0.004400677513331175, 0.006437740288674831, 0.022345490753650665, 0.002664898056536913, 0.0027309858705848455, -0.005306470673531294, 0.0011740323388949037, 0.00042058154940605164, -0.013676310889422894, 0.012968781404197216, -0.013357534073293209, -0.010955044068396091, -0.0005452252808026969, 0.012113526463508606, -0.01556564774364233, -0.004665029235184193, 0.017851512879133224, -0.01474926806986332, 0.005170407705008984, 0.02783467434346676, -0.0044162278063595295, -0.0030128315556794405, -0.004517303314059973, 0.007044194266200066, 0.020650530233979225, 0.01306208223104477, 0.004431777633726597, 0.024662455543875694, -0.0035804100334644318, -0.018535716459155083, -0.0062278141267597675, 0.0181003138422966, -0.006597129162400961, 0.004085788037627935, -0.012463402934372425, 0.0012731642927974463, -0.005403658840805292, 0.0118491742759943, 0.02896983176469803, -0.0338992141187191, 0.006429965607821941, -0.008723604492843151, -0.012276802211999893, 0.0027057169936597347, -0.009843211621046066, -0.01243230327963829, -0.001504471991211176, 0.004338477272540331, 0.004987693857401609, -0.0005393940373323858, -0.014578216709196568, -0.004680579528212547, -0.0052637080661952496, -0.025657661259174347, 0.02329404652118683, 0.00874693039804697, -0.0008780945790931582, 0.011126094497740269, 0.009843211621046066, -0.014609317295253277, -0.019453171640634537, 0.01813141442835331, 0.015620073303580284, 0.015542322769761086, 0.01498251873999834, -0.0025599347427487373, 0.0017309202812612057, 0.017680460587143898, 0.009143457747995853, 0.027632523328065872, -0.0005457112565636635, -0.004015812650322914, 0.006593241356313229, -0.00933783408254385, 0.009190107695758343, -0.012486728839576244, -0.01159259770065546, 0.01580667495727539, -0.013217583298683167, 0.012704430148005486, -0.00819490198045969, -0.007390183862298727, 0.004159651231020689, 0.012517828494310379, 0.00904238224029541, 0.006558253895491362, -0.0018407427705824375, 0.027865774929523468, 0.0272282212972641, 0.01646755263209343, 0.0038369866088032722, -0.0009631341672502458, -0.009462234564125538, 0.029109783470630646, -0.017198408022522926, 0.01864456757903099, 0.004886618349701166, 0.011196070350706577, 0.002523003378883004, 0.002029287861660123, -0.011600373312830925, -0.014492691494524479, 0.0038972431793808937, -0.0071608200669288635, -0.0002485585864633322, -0.00013557741476688534, 0.019111070781946182, 0.030820293352007866, 0.005162632558494806, -0.011553722433745861, -0.016747456043958664, 0.00422962661832571, -0.006305564660578966, -0.009213432669639587, -0.002898149425163865, -0.0021050944924354553, -0.005333683453500271, 0.010092013515532017, 0.017913712188601494, 0.004622266627848148, 0.011468197219073772, 0.005730210803449154, -0.004431777633726597, -0.0017192576779052615, -0.011577047407627106, -0.020526129752397537, -0.012719979509711266, -0.0023130769841372967, 0.002680448116734624, -0.007460159249603748, 0.004567841067910194, 0.0035823537036776543, 0.019499823451042175, 0.0010836474830284715, 0.0118491742759943, -0.02088378183543682, -0.014858118258416653, 0.008972406387329102, -0.00993651244789362, 0.009952062740921974, -0.004493978340178728, -0.01497474405914545, 0.005080994218587875, 0.012875480577349663, -0.01878451742231846, -0.004050800576806068, 0.04204746335744858, -0.003798111341893673, -0.003269408131018281, 0.028176777064800262, 0.0029856187757104635, 0.0026823917869478464, -0.029545186087489128, 0.008645853959023952, -0.004703904502093792, 0.0018407427705824375, -0.015612298622727394, 0.004649479407817125, 0.008910206146538258, -0.004124663304537535, 6.340005711535923e-06, -0.015402371995151043, -0.008039400912821293, 0.0066748796962201595, 0.01044189091771841, 0.02540886029601097, 0.006888693198561668, -0.0008285286603495479, 0.0017348077381029725, -0.017105108126997948, 0.03281070664525032, -0.024615805596113205, 0.0002478296810295433, -0.006080088205635548, -0.0005291892448440194, -0.003275239374488592, -0.0018835056107491255, 0.009252307936549187, -0.012339002452790737, -0.01805366389453411, -0.00695866858586669, -0.0020623316522687674, -0.012012450955808163, -0.010620716959238052, -0.013474159874022007, 0.002056500408798456, 0.012059100903570652, 0.0012896861881017685, -0.00017433117318432778, -0.0025988100096583366, -0.007261895574629307, -0.002913699485361576, 0.03187770023941994, -0.007810036651790142, -0.009065707214176655, -0.01555787306278944, 0.016063250601291656, -0.009734361432492733, 0.01637425273656845, -0.028658829629421234, -0.02612416446208954, -0.016825206577777863, -0.004567841067910194, 0.015083595179021358, -0.007817811332643032, 0.0009942343458533287, 0.019064418971538544, 0.011203845031559467, 0.010208639316260815, -0.009407809004187584, 0.004424002952873707, -0.00875470507889986, -0.009571084752678871, -0.0019904125947505236, 0.0018086706986650825, -0.004941043443977833, -0.01876896806061268, 0.011172745376825333, 0.006107300985604525, -0.028689930215477943, 0.011561498045921326, -0.0062239267863333225, 0.0025871475227177143, 0.004719454795122147, 0.008008300326764584, 0.002579372376203537, 0.016825206577777863, -0.009718811139464378, -0.02831672877073288, 0.00935338344424963, -0.0045095281675457954, 0.007044194266200066, -0.006981994025409222, 0.01445381622761488, -0.021396934986114502, -0.018240265548229218, 0.01587664894759655, -0.0373513363301754, 0.010970594361424446, -0.006752629764378071, -0.013202033005654812, -0.035329822450876236, 0.00852922908961773, 0.004750554915517569, 0.019981876015663147, -0.02497345767915249, -0.0023130769841372967, 0.016016600653529167, 0.0018786462023854256, -0.021723486483097076, 0.006157838739454746, 0.039341747760772705, -0.013404184021055698, 0.021676836535334587, 0.0067098671570420265, 0.00963328592479229, 0.0024219276383519173, -0.006601016502827406, -0.0023072457406669855, -0.027399271726608276, -0.020277326926589012, 0.028985382989048958, -0.005473634228110313, 0.0007726454641669989, -1.8966868083225563e-05, 0.008062725886702538, 0.008179351687431335, -0.017758211120963097, -0.009275632910430431, 0.005430871620774269, -0.018426865339279175, -0.012805505655705929, -0.0019136338960379362, -0.022983044385910034, 0.023900499567389488, 0.010558516718447208, -0.024786856025457382, -0.003739798441529274, -0.020759381353855133, -0.0002320366183994338, -0.004595053847879171, -0.007016981486231089, 0.015449021942913532, -0.004618378821760416, 0.00880135502666235, 0.004703904502093792, 0.026155265048146248, -0.0016998200444504619, -0.005753536242991686, 0.009026831947267056, 0.014352739788591862, -0.003698979504406452, 0.012377877719700336, -0.026201914995908737, -0.02327849715948105, -0.037600137293338776, 0.013217583298683167, -0.012719979509711266, -0.015503447502851486, 0.023931600153446198, -0.013785162009298801, -0.002491903258487582, -0.006359989754855633, 0.007211357820779085, 0.006694316864013672, -0.003512378316372633, 0.006593241356313229, 0.0208993311971426, -0.011359346099197865, 0.00960218533873558, 0.0015909693902358413, -0.013559685088694096, -0.019950775429606438, 0.013419734314084053, -0.004976031370460987, 0.001865039812400937, -0.005112094804644585, -0.010597391985356808, 0.00875470507889986, 0.009827661328017712, -0.02834782749414444, -0.017711561173200607, -0.012191276997327805, 0.00368731701746583, 0.007883899845182896, -0.006076200865209103, -0.010060912929475307, 0.0016308164922520518, -0.011157195083796978, -0.004159651231020689, 0.0037048107478767633, -0.010263064876198769, 0.016078801825642586, -0.012891030870378017, 0.013217583298683167, 0.0005636910209432244, 0.047832101583480835, -0.00789556186646223, 0.008863555267453194, -0.004128551110625267, 0.015130245126783848, 0.011662573553621769, -0.024584705010056496, 0.014795918017625809, -0.01358301006257534, 0.012813280336558819, -0.004124663304537535, -0.0007381436880677938, -0.0011060007382184267, 0.0076739732176065445, 0.014220564626157284, -0.020044075325131416, -0.01297655701637268, -0.03327720984816551, -0.02035507746040821, -0.030431540682911873, 0.0013548022834584117, 0.017182858660817146, 0.0020156814716756344, 0.008140476420521736, -0.009718811139464378, -0.007265783380717039, -0.02274979278445244, 0.004295714665204287, -0.021070381626486778, 0.0090112816542387, 0.03567192330956459, 0.016685254871845245, 0.00900350697338581, 0.02836337871849537, 0.0061967140063643456, 0.003209151327610016, -0.008334852755069733, -0.006807055324316025, 0.01637425273656845, 0.009874312207102776, 0.013536360114812851, -0.01586887426674366, -0.022314390167593956, -0.0062239267863333225, 0.010962818749248981, 0.009874312207102776, -0.006865368224680424, -0.004637816455215216, 0.006025663111358881, -0.002835949184373021, -0.004497865680605173, 0.017711561173200607, 0.0204794779419899, -0.009765461087226868, 0.006418302655220032, 0.01631205342710018, -0.017649361863732338, 0.002797073917463422, 0.01162369828671217, -0.020044075325131416, -5.488091119332239e-05, -0.0005126672913320363, -0.013808486983180046, 0.003905018325895071, -0.016763005405664444, 0.014383840374648571, 0.0009558450547046959, -0.00611118832603097, -0.01757161132991314, 0.0006973246927373111, -0.00845925323665142, -0.01357523538172245, -0.004630041774362326, -0.014959193766117096, -0.007460159249603748, 0.00024819414829835296, -0.0027465359307825565, 0.004972143564373255, -0.005166519898921251, -0.009757686406373978, 0.003496828256174922, -0.005364783573895693, 0.0012780237011611462, 0.013108732178807259, 0.008653629571199417, -0.014438265934586525, 0.006037325598299503, 0.011872499249875546, -0.009711036458611488, -0.0025929787661880255, -0.016638604924082756, 0.000739115581382066, 0.00013399810995906591, -0.022765344008803368, -0.007961650379002094, 0.016638604924082756, -0.01467929221689701, 0.004458990413695574, -0.006566028576344252, 0.006601016502827406, 0.0010029813274741173, -0.01019308902323246, 0.014694842509925365, -0.01023973897099495, 0.007537909783422947, 0.029156433418393135, 0.017322808504104614, -0.00045921382843516767, -0.00875470507889986, -0.02607751451432705, -0.022221090272068977, 0.01331865880638361, 0.011110545136034489, -0.0015812505735084414, -0.0029525747522711754, 0.008109375834465027, -0.006126738619059324, 0.019577573984861374, -1.4843965345789911e-06, 0.013411959633231163, 0.008288201875984669, 0.008101601153612137, -0.005426984280347824, 0.003267464227974415, -0.0077283987775444984, 0.016560854390263557, 0.0002293639408890158, 0.0004623724380508065, -0.023667247965931892, -0.008848005905747414, 0.01704290695488453, -0.01018531434237957, 0.013427508994936943, 0.023573948070406914, 0.019437622278928757, 0.007044194266200066, 0.016047701239585876, -0.01411948911845684, -0.004610604140907526, -0.009508884511888027, 0.023480648174881935, -0.016747456043958664, 0.005053781904280186, 0.005870162043720484, 0.007969425059854984, 8.686187356943265e-05, -0.0185979176312685, -0.0009213432786054909, -0.005454196594655514, -0.01277440506964922, -0.032530803233385086, 0.003119738306850195, -0.008373728021979332, 0.005496959667652845, -0.008731380105018616, -0.003300508251413703, -0.003055594163015485, -0.010247514583170414, 0.013746286742389202, 0.0014218620490282774, 0.023433998227119446, -0.011685898527503014, -0.00853700377047062, -0.021894536912441254, -0.017167307436466217, 0.021878987550735474, 0.004754442255944014, -0.001429637079127133, -0.012805505655705929, 0.0017814580351114273, -0.008070500567555428, -0.009190107695758343, -0.0005806989502161741, -0.009866536594927311, 0.01044189091771841, 0.005108206998556852, -0.0029311934486031532, 0.02433590218424797, -0.022547641769051552, -0.03105354495346546, -0.0014685123460367322, 0.004043025430291891, -0.002997281262651086, 0.0045095281675457954, 0.029078682884573936, -0.0003387005708646029, -0.0011798636987805367, -0.00765842292457819, -0.014998069033026695, 0.001277051749639213, 0.017260609194636345, -0.005189845338463783, 0.005182070191949606, -0.005038231611251831, -0.004373465199023485, -0.002091488102450967, 0.010278614237904549, 0.009524434804916382, 0.015744473785161972, -0.010861743241548538, 0.0005768114351667464, -0.012307902798056602, -0.016187651082873344, -0.004661141894757748, -0.0010233907960355282, -0.018209164962172508, 0.010263064876198769, -0.01638980396091938, -0.002392771188169718, -0.0018358833622187376, 0.015122470445930958, -0.0013052363647148013, -0.019966324791312218, 0.003586241276934743, 0.009920962154865265, -0.00029593778890557587, -0.008319302462041378, 0.018893368542194366, 0.00524427043274045, 0.014360515400767326, -0.008832455612719059, -0.006414415314793587, -0.0048710680566728115, 0.037195835262537, -0.016047701239585876, -0.021661285310983658, 0.004497865680605173, 0.0015783349517732859, 0.005302583333104849, 0.004614491481333971, -0.006966443732380867, -0.0058623868972063065, 0.028783230111002922, 9.251093433704227e-05, -0.01637425273656845, -0.0132875582203269, 0.003522097133100033, 0.006468840874731541, 0.0013120394432917237, -0.019111070781946182, 0.01272775512188673, 0.009151232428848743, 0.0016823261976242065, 0.01595439948141575, 0.00653492845594883, 0.006499940995126963, -0.006041212938725948, 0.006142288446426392, 0.0032985645812004805, -0.011398221366107464, -0.013629660941660404, -0.013396409340202808, -0.016016600653529167, 0.020790480077266693, 0.01694960705935955, -0.021832337602972984, -0.025222258642315865, 0.009983162395656109, -0.005757423583418131, 0.026155265048146248, 0.03164444863796234, 0.022936394438147545, 0.01873786747455597, 0.0008149223285727203, -3.002201447088737e-05, 0.017851512879133224, -0.0035804100334644318, -0.0062589142471551895, 0.013404184021055698, 0.026901669800281525, -0.018240265548229218, -0.009571084752678871, -0.005084882024675608, -0.025300009176135063, -0.0019301559077575803, 0.00524427043274045, -0.010760667733848095, -0.006118963472545147, -0.010379690676927567, -0.010620716959238052, -0.015487897209823132, 0.014197239652276039, -0.005119869485497475, 0.01576779969036579, 0.008708055131137371, 0.0058973743580281734, 0.011779199354350567, 0.01701180636882782, -0.007370746228843927, -0.005112094804644585, 0.009835436940193176, -0.015363496728241444, 0.0043890150263905525, -0.005287033040076494, -0.035951826721429825, -0.022796442732214928, 0.005617472808808088, -0.0032285889610648155, 0.008653629571199417, 0.00412077596411109, 0.0007993722101673484, 0.005065444391220808, 0.01757161132991314, 0.02596866339445114, 0.002818455221131444, 0.0005355064640752971, -0.0024063775781542063, -0.015410146676003933, -0.003936118446290493, 0.005018793977797031, -0.006947006098926067, -0.013427508994936943, 0.006690429523587227, 0.014935868792235851, -0.01446159090846777, 0.018971119076013565, -0.005905149504542351, 0.00664377911016345, -0.01582222431898117, -0.0024141527246683836, 0.002729042200371623, 0.005240383092314005, 0.00749125936999917, 0.015246870927512646, 0.004124663304537535, -0.011895825155079365, -0.008264876902103424, -0.009718811139464378, -0.005228720605373383, -0.021925637498497963, 0.017245057970285416, 0.012059100903570652, 0.008840230293571949, -0.015029169619083405, 0.010356364771723747, -0.020028525963425636, -0.01107166986912489, 0.016763005405664444, 0.01100169401615858, -0.011133870109915733, 0.006857593078166246, 0.006321114953607321, 0.004470652900636196, -0.00875470507889986, -0.002262539230287075, 0.006624341476708651, -0.006336664780974388, 0.003104188246652484, 0.006243364419788122, -0.001017559552565217, -0.0030964133329689503, 0.005563047248870134, -0.0054075466468930244, -0.026357416063547134, -0.0007347420905716717, 0.013038757257163525, -0.005586372688412666, -0.002585203852504492, 0.014243889600038528, 0.004606716334819794, -0.0018825336592271924, 0.008933531120419502, 0.014772593043744564, 0.0014335246523842216, -0.0090890321880579, 0.010472990572452545, 0.007592335343360901, -0.00024163394118659198, -0.004482315853238106, 0.003974993713200092, 0.008622528985142708, -0.013139832764863968, -0.008109375834465027, -7.289108179975301e-05, 0.010682917200028896, -0.015068044885993004, 0.011304921470582485, 0.0043890150263905525, 0.01595439948141575, 0.015581198036670685, 0.01582222431898117, 0.0015938850119709969, 0.005430871620774269, -0.016514204442501068, 0.018240265548229218, 0.009104582481086254, -0.002040950348600745, -0.011647023260593414, 0.011351571418344975, -0.010558516718447208, -0.012719979509711266, 0.006884805858135223, 0.028674380853772163, 0.006076200865209103, -0.0044784280471503735, -0.01136712171137333, 0.010955044068396091, -0.005718548316508532, 0.0005029484746046364, 0.011017244309186935, -0.012339002452790737, -0.010838418267667294, -0.025844262912869453, 0.02999613806605339, 0.012587804347276688, -0.00820267666131258, 0.0008290145779028535, 0.007001431658864021, 0.009213432669639587, 0.03058704175055027, -0.026932768523693085, 0.009874312207102776, 0.028223427012562752, -0.0026260227896273136, -0.02767917327582836, -0.02206558920443058, -0.016825206577777863, -0.010364140383899212, -0.0036464978475123644, 5.682467235601507e-05, 0.005792411509901285, -0.005469746887683868, 0.02161463536322117, -0.016545303165912628, -0.007627322804182768, -0.03215760365128517, -0.020526129752397537, -0.006807055324316025, 0.010566291399300098, 0.007425171788781881, -0.011429321952164173, -0.011468197219073772, 0.01763381063938141, 0.015347946435213089, 0.007977199740707874, 0.0016463665524497628, -0.011895825155079365, 0.0010350533993914723, -0.009151232428848743, 0.00410133833065629, -0.009127907454967499, -0.002839836524799466, 0.0020117938984185457, -0.004618378821760416, -0.017400559037923813, -0.0018397709354758263, 0.014306089840829372, -0.004684466868638992, -0.02481795661151409, -0.0012478952994570136, 0.01467151753604412, -0.015534548088908195, -0.002785411197692156, -0.0005680645117536187, -0.005625247955322266, -0.009711036458611488, -0.02716602012515068, 0.006931456271559, 0.0008936446974985301, 0.025890912860631943, -0.014306089840829372, -0.004731117282062769, 0.04752109944820404, -0.013660760596394539, 0.009182333014905453, 0.015340171754360199, -0.012486728839576244, -0.0014510184992104769, 0.017929263412952423, 0.0016036038286983967, -0.0013071801513433456, -0.009120132774114609, -0.008327077142894268, 0.017136206850409508, -0.003757292404770851, 0.0058040739968419075, -0.00018660117348190397, -0.007572897709906101, -0.021676836535334587, 0.025890912860631943, -0.029638485983014107, 0.01634315215051174, 0.002859274158254266, -0.004521191120147705, -0.014438265934586525, -0.006371652707457542, 0.0010058969492092729, 0.005135419778525829, -0.022469891235232353, -0.015744473785161972, 0.010612941347062588, -0.0067642927169799805, -0.00930673349648714, -0.03449011594057083, 0.00820267666131258, -0.013792936690151691, 0.002060387982055545, -0.0013256458332762122, 0.03212650120258331, -0.02380719967186451, -0.010636267252266407, -0.004921605810523033, 0.021723486483097076, 0.0010506034595891833, -0.012160176411271095, -0.01327200885862112, 0.02488015592098236, 0.03212650120258331, 0.012385653331875801, -0.0031799948774278164, -0.01023196429014206, -0.02725932188332081, 0.006014000158756971, -0.006048988085240126, -0.013816261664032936, 0.0008848977740854025, 0.0011079444084316492, -0.011180520057678223, -0.005737985949963331, -0.025377759709954262, -0.013450834900140762, -0.003978881053626537, 0.0005928474711254239, 0.006589354015886784, 0.003395752515643835, 0.0147259421646595, -0.013264233246445656, -0.01631205342710018, 0.02215888909995556, 0.0017999238334596157, 0.051844026893377304, 0.01579112373292446, 0.026233015581965446, -0.016265401616692543, 0.013894012197852135, -0.02149023488163948, 0.0043618022464215755, -0.0019777780398726463, -0.01247895322740078, 0.004245176911354065, 0.009485559538006783, -0.0236983485519886, 0.03492552042007446, 0.014103938825428486, -0.009788786992430687, 0.00989763718098402, 0.0006880918517708778, -0.00789556186646223, 0.003650385420769453, 0.009197882376611233, -0.005080994218587875, 0.025393309071660042, -0.006717642303556204, -0.02099263109266758, 0.02438255399465561, 0.005084882024675608, 0.01585332490503788, 0.002453027991577983, 0.020588329061865807, -0.010760667733848095, 0.014827018603682518, 0.006573803722858429, -0.024631354957818985, 0.02044837921857834, 0.006853705737739801, 0.0047777676954865456, 0.01016198843717575, 0.01755606010556221, 0.005784636363387108, -0.004252951592206955, -0.0204017274081707, -0.009267858229577541, 8.16987594589591e-05, 0.0013528584968298674, -0.014391615055501461, -0.0019359871512278914, -0.0067370799370110035, 0.006002337671816349, 0.004124663304537535, -0.0013256458332762122, -0.008397052995860577, 0.0071958075277507305, -0.0204017274081707, 0.003205263987183571, 0.00019534809689503163, 0.0036328916903585196, 0.0024199839681386948, -0.01298433169722557, -0.004913830664008856, -0.009532209485769272, -0.0007386296638287604, -0.007689523510634899, 0.010434115305542946, 0.017960362136363983, -0.011818074621260166, 0.0040274751372635365, 0.008995731361210346, 0.01649865321815014, -0.013691861182451248, 0.0009529294329695404, 0.02879878133535385, -0.0039069619961082935, -0.011522622779011726, -0.018255814909934998, -0.017136206850409508, -0.028736580163240433, -0.02543995901942253, -0.021288083866238594, -0.018318016082048416, 0.00707918219268322, 6.341524567687884e-05, -0.005955687258392572, 0.0001236718671862036, -0.013886237516999245, -0.004015812650322914, -0.0001378856395604089, -0.013225357979536057, -0.005423096474260092, 0.01870676688849926, -0.001901971292681992, -0.019530922174453735, -0.0008329020929522812, -0.0067681800574064255, 0.012743305414915085, 0.003576522460207343, 0.003800055244937539, 0.005870162043720484, -0.028441129252314568, 0.006908130832016468, 0.01556564774364233, 0.0033879776019603014, 0.005671898368746042, 0.011911374516785145, -0.00015817365783732384, -0.015386821702122688, -0.0278035756200552, -0.015588972717523575, -0.005252045579254627, -0.006585466209799051, 0.023542847484350204, -0.004602828994393349, 0.004334589932113886, -0.008397052995860577, 0.010962818749248981, 0.02086823061108589, 0.017385009676218033, 0.005551384761929512, -0.00016995771147776395, 0.0024724656250327826, -0.0013256458332762122, -0.02483350597321987, 0.0048438552767038345, 0.0385020412504673, 0.009967613033950329, 0.007020869292318821, 0.027570324018597603, 0.0053803338669240475, 0.02432035282254219, 0.010472990572452545, -0.013536360114812851, -0.0024063775781542063, -0.02778802439570427, -0.015091369859874249, -0.002161463489755988, 0.005574710201472044, -0.001907802652567625, 0.009485559538006783, 0.00360373524017632, 0.014228339307010174, -0.005757423583418131, -0.013240908272564411, 0.00723468279466033, 0.0181780643761158, 0.013240908272564411, 0.0007906252867542207, 0.007681748364120722, -0.030773643404245377, 0.0029020369984209538, 0.007992750033736229, 0.01758716069161892, -0.021132582798600197, -0.02483350597321987, -0.008404827676713467, -0.0011128038167953491, -0.01022418960928917, 0.011234945617616177, -0.003967218566685915, 0.0036892606876790524, -0.006935343611985445, 0.009112357161939144, -0.0028203988913446665, -0.0138240372762084, 0.002256707986816764, 0.011250495910644531, 0.0047777676954865456, -0.011654797941446304, -0.011942475102841854, 0.029125332832336426, -0.005306470673531294, -0.01049631554633379, -0.0071880328468978405, -0.0011662573087960482, 0.007891674526035786, 0.01298433169722557, -0.0038641993887722492, 0.006394977681338787, -0.006021775305271149, -0.0036737106274813414, -0.005252045579254627, -0.008855780586600304, 0.018924469128251076, 0.011444872245192528, 0.018318016082048416, -0.003708698321133852, -0.01560452301055193, 0.022221090272068977, -0.012097976170480251, 0.0072463457472622395, -0.01048076618462801, 0.008397052995860577, 0.013816261664032936, 0.024164851754903793, -0.02033952809870243, -0.004431777633726597, -0.006394977681338787, 0.021972287446260452, -0.015231320634484291, -0.01592330075800419, -0.028581079095602036, -0.0022644829005002975, 0.006115076132118702, 0.009952062740921974, -0.016280952841043472, 0.0015725035918876529], "c6556b88-8149-40ed-895d-dc611533cba5": [-0.022210676223039627, 0.008833462372422218, -0.0037707341834902763, 0.00948671717196703, -0.011591650545597076, -0.020700931549072266, 0.03838237375020981, 0.02793028950691223, -0.027364134788513184, 0.040269553661346436, 0.0072475033812224865, 0.02180420607328415, -0.002355347853153944, -0.013740134425461292, 0.010996462777256966, 0.03489834442734718, -0.010793227702379227, 0.01044482458382845, -0.015315204858779907, -0.02888839691877365, 0.04404391720890999, -0.015678124502301216, -0.04874735325574875, -0.0040030027739703655, 0.003745329799130559, 0.013203013688325882, -0.02103481814265251, 0.024518845602869987, -0.027872221544384956, 0.008869754150509834, 0.017826609313488007, 0.016926568001508713, 0.026072140783071518, 0.013377214781939983, 0.010488375090062618, -0.015445856377482414, -0.0018037102418020368, -0.0006986201624386013, -0.02570922113955021, -0.0009172791615128517, 0.0009004941675812006, 0.02315426804125309, 0.009994804859161377, -0.019757339730858803, -0.05101197212934494, 0.004300596658140421, 0.016723332926630974, -0.013442540541291237, 0.011860211379826069, 0.014371613971889019, 0.019263770431280136, -0.020700931549072266, 0.020338011905550957, 0.012941711582243443, 0.02438819408416748, -0.007374525535851717, 0.026376992464065552, 0.03231435641646385, -0.004939334932714701, -0.08065523952245712, 0.0065543269738554955, -0.00619866605848074, 0.007421704940497875, -0.012956228107213974, 0.007526951376348734, -0.011199697852134705, 0.013188496232032776, 0.005273221060633659, -0.038469474762678146, 0.010546442121267319, 0.03725006431341171, 0.024881765246391296, -0.029033564031124115, 0.030949778854846954, 0.010996462777256966, 0.005817600525915623, 0.035769350826740265, 0.028031906113028526, 0.01865406520664692, -0.002337201964110136, 0.0016231577610597014, 0.0023789377883076668, 0.03817913681268692, -0.007839062251150608, 0.08326826244592667, 0.03376603499054909, -0.03228532522916794, -0.03463704138994217, 0.01637493073940277, -0.02187679149210453, 0.014553073793649673, 0.006608765106648207, -0.013645775616168976, 0.0049792565405368805, -0.017391104251146317, 0.006942651234567165, 0.03948564827442169, -0.008216498419642448, 0.009588334709405899, -0.023212334141135216, 0.0236333217471838, 0.03521771356463432, -0.00960285123437643, 0.020454145967960358, 0.0062349578365683556, -0.012056187726557255, 0.01133760716766119, 0.011453741230070591, -0.024083342403173447, 0.0194089375436306, 0.020788032561540604, -0.021862274035811424, 0.017507240176200867, 0.030194906517863274, -0.030833644792437553, -0.04741181060671806, -0.023531703278422356, -0.006166003178805113, -0.0048921555280685425, -0.04532139375805855, 0.038033969700336456, 0.005324029829353094, 0.016171695664525032, -0.017231419682502747, -0.031907886266708374, 0.011431965976953506, 0.010909361764788628, 0.012056187726557255, 0.03028200753033161, 0.011221473105251789, -0.007730186451226473, 0.004942964296787977, 0.016752365976572037, 0.026449577882885933, 0.013674808666110039, 0.016824951395392418, 0.0005720519693568349, 0.05260881781578064, -0.04436328634619713, 0.027001215144991875, -0.07728734612464905, -0.030978813767433167, -0.012847351841628551, 0.015010353177785873, 0.016984635964035988, 0.012462657876312733, -0.03690166026353836, 0.04836991801857948, -0.02459142915904522, 0.01408853754401207, -0.06352543830871582, -0.041663166135549545, -0.017826609313488007, -0.007875354029238224, 0.0035257635172456503, -0.02630440890789032, -0.004866751376539469, 0.016970118507742882, 0.003378781024366617, 0.033737003803253174, -0.005222412291914225, -0.07217743992805481, 0.005904701072722673, 0.02853999473154545, 0.07293231040239334, 0.025752771645784378, 0.06584812700748444, 0.011105338111519814, -0.06509324908256531, 0.02897549793124199, 0.027828671038150787, -0.016679782420396805, 0.030107805505394936, 0.009936737827956676, -0.028467409312725067, -0.0027781492099165916, 0.031907886266708374, 0.03408540412783623, 0.009232673794031143, -0.031094947829842567, -0.03028200753033161, -0.0006523479241877794, 0.005951880943030119, 0.021586455404758453, 0.029019048437476158, 0.0472666434943676, 0.017158836126327515, 0.026130208745598793, 0.0026366105303168297, -0.003821542952209711, -0.010096422396600246, -0.017274970188736916, -0.022602630779147148, 0.010234331712126732, 4.318175706430338e-05, -0.033620867878198624, -0.019554106518626213, 0.010060129687190056, 0.004525606986135244, 0.003186433808878064, -0.01637493073940277, -0.06700946390628815, -0.02729155123233795, 0.03036910854279995, -0.04212770238518715, 0.031298182904720306, -0.031094947829842567, -0.04511816054582596, 0.02470756322145462, -0.04697630554437637, 0.04238900542259216, -0.06317703425884247, 0.0029088002629578114, -0.01984444074332714, 0.012586050666868687, -0.0033134554978460073, -0.021107401698827744, 0.029193248599767685, -0.013493348844349384, -0.028104489669203758, -0.031298182904720306, 0.026594744995236397, -0.018363729119300842, -0.02806093916296959, -0.04082119092345238, -0.044101983308792114, -0.0208896491676569, 0.006213182583451271, -0.008339891210198402, 0.012070704251527786, -0.01155535876750946, 0.013362698256969452, -0.0056905788369476795, -0.01821856200695038, -0.022646179422736168, 0.013878043740987778, 0.05719612166285515, 0.01277476828545332, -0.0012411848874762654, 0.004942964296787977, -0.0018998838495463133, 0.0178120918571949, 0.024736596271395683, 0.013740134425461292, 0.013776426203548908, 0.04212770238518715, -0.00884797889739275, 0.02952713519334793, 0.005211524665355682, -0.030659444630146027, -0.0081076230853796, 0.015141003765165806, 0.009152831509709358, -0.010227072983980179, -0.041982535272836685, 0.0490957573056221, 0.0220364760607481, -0.012586050666868687, 0.0005040045361965895, -0.042185768485069275, 0.020628347992897034, 0.006815629079937935, 0.03092074580490589, 0.029599718749523163, 0.03913724422454834, 0.0033007534220814705, 0.020294461399316788, -0.01625879667699337, -0.003741700667887926, 0.032140154391527176, 0.011192439123988152, -0.001959765562787652, 0.005835746414959431, 0.007305570878088474, -0.002045051660388708, -0.001300159259699285, -0.008252791129052639, 0.010227072983980179, 0.02107836864888668, 0.006409159395843744, -0.020700931549072266, -0.0058792969211936, 0.011584391817450523, 0.025956006720662117, -0.00264931283891201, 0.00022330893261823803, -0.032546624541282654, 0.012288455851376057, -0.04651176929473877, -0.002785407705232501, 0.01075693592429161, 0.01098194532096386, 0.011881986632943153, 0.012665892951190472, 0.028307724744081497, 0.0018245780374854803, -0.02717541716992855, 0.007490659598261118, -0.004783279728144407, 0.03742426633834839, -0.02390914037823677, -0.010408532805740833, 0.010234331712126732, -0.024809181690216064, 0.031820785254240036, -0.02027994394302368, 0.05403146520256996, 0.0219203419983387, -0.022370360791683197, 0.05237654969096184, 0.04848605394363403, -0.03324343264102936, -0.01430628914386034, -0.01219409704208374, -0.011613425798714161, -0.0009354251669719815, 0.026957664638757706, 0.007715669926255941, -0.03153045102953911, -0.0351596474647522, 0.008579418063163757, 0.04880542308092117, -0.06817080825567245, 0.04053085669875145, 0.03997921943664551, -0.018000809475779533, 0.04694727435708046, -0.0033297869376838207, -0.027277033776044846, -0.01742013916373253, -0.03124011494219303, -0.03553708270192146, -0.014770826324820518, 0.0062531037256121635, -0.0192928034812212, -0.03466607630252838, -0.05220234766602516, -0.02769802138209343, -0.004293338395655155, -0.03272082656621933, -0.012498949654400349, -0.019336353987455368, 0.029019048437476158, -0.01589587703347206, -0.0016050117556005716, -0.007606794126331806, 0.015344238840043545, 0.001956136431545019, -0.03312729671597481, 0.008826203644275665, 0.0008850700687617064, -0.0023480895906686783, 0.015257137827575207, 0.0020940457470715046, 0.014770826324820518, -0.020033160224556923, -0.011780369095504284, -0.013304631225764751, 0.006289395969361067, -0.007759219966828823, 0.009791569784283638, 0.00641641765832901, -0.027160899713635445, -0.007773736957460642, -0.014422423206269741, 0.00017998542170971632, -0.006496259942650795, -0.020018642768263817, 0.012491690926253796, -0.009624626487493515, -0.024533361196517944, -0.0006205924437381327, 0.017391104251146317, -0.006960797123610973, -0.002264617942273617, -0.03965985029935837, 0.04416005313396454, 0.012905419804155827, -0.013224788941442966, 0.031036879867315292, 0.02806093916296959, -0.006626910995692015, -0.009617368690669537, 0.012491690926253796, 0.039427582174539566, 0.019800890237092972, 0.025970524176955223, -0.046482738107442856, -0.02669636346399784, 0.005055469460785389, -0.018116943538188934, 0.019220219925045967, -0.019641205668449402, -0.035391915589571, -0.012056187726557255, -0.01241184864193201, -0.019176669418811798, -0.007519693113863468, 0.018436312675476074, -0.022776830941438675, -0.013036070391535759, 0.0006895471597090364, -0.013101396150887012, 0.023938173428177834, -0.007421704940497875, -0.033649902790784836, -0.013936110772192478, -0.0018889963394030929, 0.007817286998033524, 0.008514093235135078, -0.006115194410085678, -0.020265428349375725, 0.0013963329838588834, -0.00954478420317173, 0.04575689882040024, -0.004148170351982117, -0.015242621302604675, 0.04665693640708923, -0.03797590360045433, -0.011431965976953506, 0.027915772050619125, 0.036959726363420486, 0.00031982286600396037, 0.008172948844730854, -0.006550698075443506, 0.032865993678569794, 0.02897549793124199, -0.010314173996448517, -0.03100784681737423, -0.030078772455453873, -0.007708411198109388, 0.05124424025416374, 0.008361666463315487, -0.003589274361729622, 0.001243906794115901, -0.01892988383769989, 0.009900445118546486, -0.0369887612760067, 0.006093419156968594, -0.013420765288174152, -0.02255908027291298, 0.016636231914162636, 0.01350786630064249, 0.014393389225006104, -0.023459119722247124, -0.026159241795539856, -0.04627950116991997, 0.008956854231655598, 0.0374532975256443, -0.024489812552928925, 0.013856268487870693, 0.019989609718322754, -0.04900865629315376, -0.010836778208613396, 0.009051213972270489, -0.01749272271990776, -0.005066357087343931, 0.0028053682763129473, 0.039950184524059296, -0.05986721068620682, -0.02721896581351757, -0.039195310324430466, 0.01637493073940277, 0.001956136431545019, 0.009515751153230667, -0.010967428795993328, 0.008492317982017994, 0.010335949249565601, 0.013834493234753609, 0.010582733899354935, 0.018683098256587982, -0.012179580517113209, 1.45309586514486e-05, 0.02618827484548092, -0.0071930657140910625, -0.022907482460141182, -0.008877011947333813, 0.026086658239364624, -0.0001830475521273911, -0.018595997244119644, -0.005048211198300123, -0.03666939213871956, -0.006797483190894127, 0.001182210398837924, 0.0036872627679258585, 0.014995835721492767, 0.004442135337740183, -0.01018352247774601, 0.012927195057272911, 0.0006459968280978501, 0.01849438063800335, -0.03693069517612457, 0.012019895948469639, 0.001139567350037396, 0.006906358990818262, -0.030543310567736626, -0.019350871443748474, -0.018073393031954765, -0.013914335519075394, -0.020192844793200493, 0.016883017495274544, -0.022704247385263443, 0.02742220088839531, 0.0024333756882697344, -0.004583674017339945, 0.034172505140304565, -0.03016587346792221, 0.025593087077140808, -0.025999557226896286, -0.014030469581484795, -0.03431767225265503, 0.01856696419417858, -0.029019048437476158, 0.013232046738266945, -0.005639770068228245, 0.029381968080997467, -0.006710382644087076, -0.0023390166461467743, 0.017710475251078606, 0.001158620696514845, -0.0041009909473359585, -0.006724899169057608, -0.034172505140304565, -0.0015306132845580578, -0.008122139610350132, -0.016883017495274544, -0.00266564404591918, -0.011831177398562431, 0.016273312270641327, -0.0295706856995821, -0.001974282320588827, 0.015474889427423477, -0.01251346617937088, 0.0034096292220056057, 0.02059931494295597, -0.007367266807705164, 0.01614266261458397, 0.025259200483560562, 0.027480268850922585, 0.02343008667230606, -0.06468678265810013, 0.025215649977326393, -0.01586684212088585, 0.007374525535851717, -0.012201355770230293, 0.024896280840039253, 0.008543126285076141, 0.003919531125575304, -0.006717640906572342, -0.0001967704447451979, -0.037801701575517654, 0.020628347992897034, -0.010415791533887386, 0.007145885843783617, -0.001017082016915083, -0.061551157385110855, -0.0064563388004899025, -0.026928631588816643, -0.027843188494443893, -0.014095795340836048, 0.0009980287868529558, 0.029585203155875206, -0.011519066989421844, -0.003741700667887926, 0.0034422921016812325, -0.007780995219945908, -0.014937768690288067, 0.028235141187906265, 0.0033007534220814705, 0.017434654757380486, 0.02498338185250759, 0.0118166608735919, 0.033533766865730286, 0.02650764398276806, 0.002502330346032977, 0.03649519011378288, -0.007301941514015198, -0.00944316666573286, -0.06149309128522873, -0.015068420208990574, 0.0317336842417717, -0.0160991121083498, 0.004707066807895899, 0.006086160894483328, 0.008477800525724888, -0.003759846556931734, -0.01892988383769989, -0.021688072010874748, 0.009181864559650421, 0.00021639079204760492, 0.009675435721874237, 0.0037888800725340843, -0.02602859027683735, 0.008499575778841972, -0.026333443820476532, 0.03504351153969765, 0.011402931995689869, 0.004260675515979528, 0.002727340441197157, 0.0038687223568558693, -0.001912586041726172, 0.013907077722251415, 0.01861051470041275, -0.011243247427046299, -0.025172101333737373, 0.03060137666761875, -0.019510556012392044, 0.0007430777768604457, 0.013297372497618198, 0.0020668269135057926, 0.0013219345128163695, 0.003966710530221462, 0.046453703194856644, -0.0134135065600276, 0.0179282259196043, -0.003952194005250931, -0.007225728593766689, 0.03423057124018669, 0.015765225514769554, -0.015591024421155453, 0.02354622073471546, -0.006681349128484726, 0.04366648197174072, 0.0003892312233801931, 0.029599718749523163, 0.026275375857949257, 0.002877952065318823, -0.022326810285449028, -0.017957258969545364, 0.013486091047525406, 0.007403559051454067, -0.014778084121644497, -0.0009263521642424166, -0.011083562858402729, -0.0006772986380383372, -0.00529862567782402, 0.013914335519075394, 0.015416822396218777, -0.010234331712126732, -0.00783180445432663, -0.020236395299434662, -0.002950536087155342, -0.023647839203476906, 0.05048936977982521, 0.0002474657667335123, 0.002331758150830865, 0.006797483190894127, 0.0064998893067240715, 0.04024051874876022, -0.001460751169361174, -0.040153421461582184, -0.007320087403059006, -0.008862495422363281, 0.020192844793200493, -0.011591650545597076, -0.045931100845336914, -0.012651375494897366, 0.006361979991197586, -0.00609704852104187, 0.006242216564714909, 0.031065914779901505, -0.016316862776875496, 0.006136969663202763, 0.031820785254240036, -0.009043955244123936, 0.007265649735927582, 0.023342985659837723, -0.005022806581109762, 0.033301498740911484, 0.008397958241403103, 0.01733303815126419, -0.028685161843895912, 0.02646409347653389, 0.023342985659837723, -0.014553073793649673, -0.001720238709822297, -0.015489406883716583, -0.00976253580302, -0.0018499824218451977, -0.011838436126708984, -0.004289709031581879, -0.029599718749523163, -0.0317336842417717, 0.007860837504267693, 0.020671898499131203, -0.0001424459187546745, -0.008354407735168934, -0.006220441311597824, -0.004111878573894501, 0.00215755682438612, -0.011112596839666367, 0.010684351436793804, 0.004151799716055393, 0.015692641958594322, 0.007218469865620136, 0.013137687928974628, 0.008492317982017994, -0.022138092666864395, 0.0118166608735919, -0.023923657834529877, -0.05850263312458992, -0.004336888901889324, -0.004329630173742771, -0.021862274035811424, 0.0011558987898752093, 0.026493128389120102, -0.010546442121267319, -0.021615488454699516, 0.03028200753033161, 0.008093106560409069, 0.021455803886055946, 0.009769794531166553, 0.0011341236531734467, 0.006173261441290379, 0.007824545726180077, 0.01257153321057558, 0.007643085904419422, 0.014436939731240273, 0.011664234101772308, 0.016084594652056694, -0.010415791533887386, 0.032895028591156006, -0.020381562411785126, -0.0096464017406106, -0.03382410109043121, -0.0018599627073854208, 0.0037779926788061857, -0.012281198054552078, 0.02877226285636425, 0.0005316771566867828, 0.04355034604668617, -0.011344864964485168, 0.005988172721117735, 0.010713385418057442, 0.02136870287358761, -0.02475111372768879, -0.007468884345144033, 0.012346522882580757, 0.03617582097649574, -0.01877019926905632, 0.02052672952413559, -0.01388530246913433, 0.002652941970154643, -0.02335750311613083, -0.0033116410486400127, -0.010517409071326256, 0.04148896411061287, 0.022370360791683197, -0.008129398338496685, -0.004765133839100599, 0.028525477275252342, -0.044218119233846664, 0.03547901660203934, 0.023067167028784752, -0.004928447771817446, 0.014444198459386826, 0.0254624355584383, 0.029193248599767685, -0.012390073388814926, 0.03423057124018669, -0.010161747224628925, 0.019902508705854416, 0.012121513485908508, -0.0042425296269357204, -0.009827861562371254, -0.0063583506271243095, 0.006507147569209337, 0.03968888148665428, 0.02781415544450283, -0.0031483271159231663, 0.028481926769018173, 0.02160097286105156, 0.038788843899965286, 0.025810839608311653, -0.002765447134152055, -0.01625879667699337, 0.015750708058476448, -0.014386131428182125, -0.039427582174539566, -0.010060129687190056, -0.009515751153230667, -0.04032761976122856, 0.01013997197151184, -0.000369724293705076, 0.010735160671174526, -0.024199476465582848, 0.029120665043592453, -0.019220219925045967, -0.006492631044238806, 0.008412475697696209, 0.03382410109043121, -0.004569157026708126, -0.008557642810046673, 0.004413101822137833, 0.007730186451226473, -0.020555764436721802, 0.0009381470736116171, -0.026870563626289368, 0.010568217374384403, 0.002404342172667384, 0.027727054432034492, -0.019786374643445015, 0.023284919559955597, 0.04912479221820831, 0.02311071753501892, -0.0065797315910458565, -0.0178120918571949, -0.012840094044804573, -0.01382723543792963, 0.01101823803037405, 0.009102022275328636, -0.01837824657559395, -0.030833644792437553, 0.04119862988591194, -0.03211112320423126, 0.008593935519456863, 0.030978813767433167, 0.01904601790010929, 0.005861151032149792, -0.009856895543634892, 0.003955823369324207, 0.019757339730858803, 0.03100784681737423, 0.008593935519456863, -0.03829527273774147, -0.007439850829541683, 0.013783684931695461, 0.001965209376066923, 0.012012637220323086, 0.01813146099448204, -0.017724990844726562, -0.007860837504267693, -0.01753627322614193, 0.04180833324790001, 0.011366640217602253, 0.04119862988591194, 0.01566360890865326, -0.014611141756176949, -0.0388178750872612, 0.012273939326405525, -0.011577134020626545, -0.029004530981183052, -0.01669429987668991, -0.004699808079749346, -0.0028344017919152975, -0.01372561790049076, 0.029265832155942917, -0.002591245574876666, 0.045176226645708084, 0.03666939213871956, -0.009406874887645245, -0.017884675413370132, 0.0075559853576123714, 0.0037235545460134745, -0.01744917221367359, 0.014110312797129154, 0.009341549128293991, 0.02327040210366249, -0.005334917455911636, 0.030020706355571747, 0.0018155050929635763, -0.001719331368803978, -0.023560738191008568, -0.000796608452219516, -0.019002467393875122, -0.01037949975579977, 0.009464941918849945, -0.004108249209821224, -0.007984230294823647, -0.004521977622061968, -0.008579418063163757, 0.00024406339798588306, 0.007534210104495287, 0.01689753495156765, 0.010357724502682686, -0.0020196472760289907, -0.0055490401573479176, -0.008971371687948704, -0.017478205263614655, -0.02726251631975174, -0.006924505345523357, 0.006274878978729248, -0.007751961704343557, 0.025926973670721054, -0.041343796998262405, 0.009617368690669537, 0.009290740825235844, -0.019060535356402397, 0.003115664469078183, 0.017318520694971085, -0.006155115552246571, 0.025564054027199745, -0.0006913617835380137, -0.0367564931511879, -0.025085000321269035, 0.012811060063540936, -0.019147636368870735, -0.013137687928974628, -0.009218156337738037, -0.02116546779870987, 0.0010071017313748598, -0.01155535876750946, -0.031907886266708374, -0.008456025272607803, 0.04459555447101593, -0.041663166135549545, 0.007846320979297161, 0.020700931549072266, 0.028235141187906265, -0.002957794349640608, -0.016070077195763588, -0.0010116383200511336, -0.012230388820171356, -0.02666732855141163, 0.03611775487661362, 0.019075050950050354, 0.007984230294823647, -0.013065104372799397, -0.0006523479241877794, -0.02658022753894329, 0.005338546819984913, -0.013878043740987778, 0.018160494044423103, 0.003387853968888521, 0.008056813850998878, -0.007338233292102814, -0.0022083655931055546, 0.0028452894184738398, 0.010423049330711365, 0.01908956840634346, -0.006271250080317259, 0.006859179586172104, -0.0020232766401022673, 0.009639143012464046, 0.03861464187502861, -0.010074647143483162, -0.022762315347790718, -0.0040538115426898, -0.04439232125878334, -0.012012637220323086, -0.0037344421725720167, -0.01577974297106266, 0.026652812957763672, -0.022457461804151535, -0.02080254815518856, -0.011983604170382023, 0.016679782420396805, 0.049995798617601395, -0.0097044687718153, -0.012985262088477612, 0.009755278006196022, 0.011736818589270115, 0.02072996459901333, -0.02176065742969513, -0.011468257755041122, 0.031936921179294586, -0.0081076230853796, -0.006982572376728058, -0.004961110185831785, 0.0010297842090949416, 0.0010043798247352242, 0.022936515510082245, 0.002035978715866804, 0.012382815591990948, -0.018871817737817764, 0.008477800525724888, -0.024417227134108543, -0.018073393031954765, -0.012607824988663197, -0.003119293600320816, -0.009058471769094467, -0.01043756678700447, -0.001719331368803978, 0.013297372497618198, 0.009181864559650421, 0.006118823774158955, -0.030717510730028152, -0.009566559456288815, -0.028757745400071144, -0.00683377543464303, 0.020062193274497986, -0.046163368970155716, 0.0002447438891977072, -0.014560332521796227, -0.0003667755809146911, -0.008695552125573158, -0.026043107733130455, 0.023255884647369385, -0.012709442526102066, -0.02495434880256653, 0.010364982299506664, -0.02658022753894329, 0.0033715227618813515, 0.007751961704343557, -0.0003288958396296948, -0.014509524218738079, -0.009631885215640068, -0.011881986632943153, -0.0023716792929917574, -0.03754039853811264, 0.008993146941065788, -0.0041263955645263195, -0.03945661336183548, 0.032982129603624344, 0.04468265548348427, 0.03777266666293144, 0.02833675965666771, -0.00880442839115858, -0.015765225514769554, 0.019336353987455368, -0.021731622517108917, -0.019496038556098938, -0.014676466584205627, -0.009058471769094467, -0.010292398743331432, 0.03600161895155907, 0.011794885620474815, -0.06300283223390579, 0.005581702571362257, 0.0210057832300663, -0.008318115957081318, -0.019176669418811798, 0.015111970715224743, -0.011410190723836422, -0.006931763608008623, 0.014705500565469265, 0.00731282914057374, -0.008093106560409069, 0.012179580517113209, 0.025418885052204132, -0.03756943345069885, -0.016883017495274544, 0.006470855791121721, -0.013144946657121181, 0.006343833636492491, -0.019191186875104904, -0.016113627701997757, -0.07508079707622528, -0.0019053276628255844, -0.004416731186211109, 0.04375358298420906, -0.0002767261757981032, -0.01159890927374363, 0.023023616522550583, -0.013232046738266945, -0.012317489832639694, -0.0042243837378919125, -0.00034885641071014106, -0.005403872113674879, 0.015053902752697468, 0.00928348209708929, 0.0012557016452774405, -0.009907703846693039, -0.017841124907135963, -0.01283283531665802, -0.0037852509412914515, 0.004939334932714701, -0.0023244996555149555, 0.012027153745293617, 0.04436328634619713, -0.01076419372111559, -0.0013346367049962282, 0.04320194572210312, -0.008419733494520187, 0.005799454636871815, -0.024765631183981895, -0.014937768690288067, 0.010742418467998505, -0.0012502578319981694, -0.02271876484155655, -0.0079914890229702, -0.006503518670797348, 0.008622968569397926, 0.010147230699658394, -0.0056216237135231495, 0.03179175406694412, 0.002192034153267741, 0.016113627701997757, 0.026652812957763672, -0.02072996459901333, 0.0049792565405368805, 0.013609482906758785, -0.015053902752697468, 0.0021085627377033234, -0.030746545642614365, 0.001328285550698638, 0.016113627701997757, -0.007076931186020374, 0.004834088496863842, -0.005149828735738993, -0.019917026162147522, 0.0011568061308935285, -0.00167668832000345, 0.013783684931695461, -0.02450432814657688, 0.007468884345144033, -0.01028514001518488, 0.02434464357793331, -0.010727901943027973, 0.005080873612314463, -0.015620057471096516, -0.014828893356025219, 0.012310231104493141, 0.020555764436721802, 0.03463704138994217, 0.02806093916296959, 0.004783279728144407, 0.006830146070569754, 0.006532552186399698, 0.015474889427423477, 0.033533766865730286, 0.002930575516074896, 0.0032771634869277477, 0.025317268446087837, 0.012440882623195648, 0.018552448600530624, 0.002006945200264454, -0.02758188545703888, 0.006155115552246571, 0.0064200470224022865, -0.014335322193801403, -0.025999557226896286, -0.016012011095881462, 0.000880987208802253, -0.02713186666369438, 0.0036818189546465874, 0.004717954434454441, 0.024330126121640205, 0.012883644551038742, 0.033620867878198624, 0.032372426241636276, -0.01742013916373253, 0.05429276451468468, -0.019510556012392044, 0.00622769957408309, -0.014632916077971458, -0.006808370817452669, 0.010727901943027973, -0.021339669823646545, 0.014008695259690285, -0.01705721952021122, -0.0075124348513782024, -0.01685398444533348, 0.002544066170230508, -0.009421391412615776, -0.014894218184053898, -0.035246748477220535, -0.014705500565469265, -0.010807744227349758, -0.005109907127916813, -0.0011041827965527773, -0.008064072579145432, -0.004453022964298725, 0.0011577133554965258, 0.016505582258105278, -0.014037728309631348, 0.00013824967027176172, -0.0032063943799585104, 0.04439232125878334, 0.012179580517113209, -0.039311446249485016, 0.005926476325839758, -0.0031501417979598045, -0.008383441716432571, -0.005113536491990089, 0.008318115957081318, 0.026231825351715088, -0.006645056884735823, 0.014487748965620995, -0.003211837960407138, -0.005403872113674879, -0.004645370412617922, 0.024446262046694756, 0.02761092036962509, -0.008753620088100433, 0.04291160777211189, -0.042940642684698105, 0.012694926001131535, 0.01440790668129921, -0.012317489832639694, 0.012919936329126358, -0.012796543538570404, 0.0072910538874566555, -0.006271250080317259, -0.020454145967960358, -0.0019216591026633978, -0.002798109780997038, 0.007715669926255941, -0.0062349578365683556, 0.02701573260128498, -0.0062349578365683556, -0.03057234361767769, -0.03870174288749695, 0.0014172008959576488, -0.005853892304003239, 0.006971684750169516, -0.00359108904376626, -0.022094542160630226, 0.0006224070675671101, 0.040066320449113846, 0.003730813041329384, 0.034056372940540314, -0.00638738414272666, -0.01625879667699337, -0.0024751112796366215, -0.005363950971513987, -0.0041989791207015514, 0.012186838313937187, -0.024852730333805084, 0.00338241015560925, -0.024054307490587234, 0.008361666463315487, -0.019597655162215233, 0.012266680598258972, -0.007189436350017786, 0.007693894673138857, 0.010169005952775478, -0.012542500160634518, 0.007628568913787603, -0.010335949249565601, 0.03272082656621933, -0.00847054272890091, 0.022646179422736168, -0.0002671995316632092, 0.008492317982017994, -0.01904601790010929, 0.021107401698827744, 0.014981319196522236, 0.03504351153969765, 0.001281106029637158, -0.0009399616392329335, 0.014661950059235096, 0.009356066584587097, 0.014923252165317535, 0.02311071753501892, -0.016636231914162636, -0.024126892909407616, 0.005948251578956842, -0.010364982299506664, 0.012390073388814926, 0.000306213361909613, -0.012346522882580757, 0.0011386601254343987, -0.021179985255002975, 0.02020736038684845, 0.010357724502682686, -0.0017030000453814864, -0.01808791048824787, 0.004013890400528908, 0.0020196472760289907, -0.006975313648581505, 0.004333259537816048, -0.01379094272851944, -0.009312516078352928, -0.015184554271399975, -0.00026152891223318875, -0.028525477275252342, 0.022138092666864395, -0.006880954839289188, -0.022254226729273796, -0.016708815470337868, 0.021136434748768806, 0.01988799124956131, -0.0010388572700321674, -0.060273680835962296, -0.016824951395392418, 0.004307854920625687, 0.01325382199138403, 0.00012736208736896515, -0.0034078145399689674, -0.0028235141653567553, 0.0030231198761612177, 0.012600567191839218, 0.035449981689453125, -0.02180420607328415, 0.03518867865204811, -0.018479863181710243, -0.009893187321722507, -0.026768947020173073, -0.015315204858779907, 0.012752993032336235, 0.022225193679332733, 0.01744917221367359, -0.026812497526407242, -0.014952286146581173, 0.01673785038292408, 0.017870159819722176, -0.006430934648960829, -0.012702184729278088, -0.00683377543464303, 0.009588334709405899, -0.0178120918571949, 0.01984444074332714, -0.009356066584587097, -0.010887586511671543, -0.0005992709193378687, -0.007381783798336983, -0.012005378492176533, 0.011272281408309937, 0.008840720169246197, -0.03765653446316719, 0.021223535761237144, -0.014966802671551704, 0.0034187021665275097, 0.0008714605937711895, 0.011664234101772308, -0.02806093916296959, -0.016868501901626587, 0.007918904535472393, -0.017797574400901794, 0.010720644146203995, -0.010546442121267319, -0.001408127835020423, 0.007526951376348734, -0.028206108137965202, 0.012629600241780281, 0.017841124907135963, -0.01209247950464487, -0.011765851639211178, -0.026246342808008194, 0.0008224664488807321, 0.002709194552153349, 0.007926163263618946, 0.011765851639211178, -0.00485223438590765, 0.010669834911823273, 0.014770826324820518, 0.001791008049622178, 0.009697210974991322, 0.03260469436645508, -0.0048304591327905655, 0.042621273547410965, -0.03144335001707077, -0.022021958604454994, 0.011961828917264938, 0.011787626892328262, 0.0063583506271243095, 0.024620462208986282, -0.004209866747260094, -0.03376603499054909, -0.018944401293992996, -0.012484433129429817, -0.0002712823625188321, 0.0004184916033409536, -0.002124893944710493, 0.019176669418811798, -0.001102368114516139, 0.011802144348621368, -0.005073615349829197, -0.02171710692346096, -0.020105743780732155, -0.008405216969549656, 0.020396079868078232, 0.018871817737817764, -0.00485223438590765, -0.01721690408885479, -0.022573595866560936, 0.011961828917264938, -0.015387789346277714, 0.01689753495156765, 0.010154489427804947, -0.04096635803580284, -0.009559300728142262, -0.010611767880618572, -0.019467005506157875, 0.003362449584528804, -0.007585018873214722, -0.03510157763957977, 0.047527946531772614, 0.004140912089496851, 0.008506834506988525, 0.004565528128296137, -0.001139567350037396, 0.0071313693188130856, 0.00010813868721015751, -0.012600567191839218, -0.004169945605099201, 0.026449577882885933, 0.008731844834983349, -0.019060535356402397, -0.024097857996821404, 0.000739448587410152, 0.008463284000754356, 0.012622342444956303, 0.03725006431341171, 0.033417630940675735, -0.008862495422363281, 0.023967208340764046, 0.0070878188125789165, -0.004529235884547234, -0.004365922417491674, 0.003981227520853281, 0.03754039853811264, 0.0028761373832821846, 0.023241369053721428, -0.030630409717559814, -0.03582741692662239, -0.011693268083035946, 0.00731282914057374, -0.0041626873426139355, 0.013580449856817722, -0.003912272863090038, 0.002124893944710493, 0.009493975900113583, -0.0032390570268034935, 0.007592277135699987, -0.018465347588062286, -0.0040392945520579815, 0.009842378087341785, -0.0004060162464156747, 0.003730813041329384, -0.020294461399316788, -0.0194089375436306, 0.01209247950464487, 0.016360413283109665, 0.009406874887645245, -0.01785564236342907, -0.008448767475783825, -0.00356205552816391, 0.0059119598008692265, -0.009748019278049469, -0.017347555607557297, -0.016273312270641327, -0.01207796297967434, -0.002729155123233795, -0.010234331712126732, -0.0005307698738761246, -0.02331395260989666, -0.01824759505689144, 0.013979661278426647, -0.0055490401573479176, 0.009784311056137085, -0.0012203169753775, -0.01984444074332714, 0.021412253379821777, -0.046453703194856644, -0.015387789346277714, 0.009994804859161377, -0.007911646738648415, -0.004042923916131258, 0.049995798617601395, -0.013979661278426647, 0.029004530981183052, 0.015126487240195274, 0.02849644422531128, 0.003803397063165903, -0.023575253784656525, -0.03690166026353836, -0.004133653827011585, 0.02183324098587036, -0.008601193316280842, -0.0335628017783165, 0.01701366901397705, 0.010067388415336609, 0.03603065386414528, -0.014255479909479618, 0.01710077002644539, -0.0002558582928031683, -0.003934048116207123, -0.005919218063354492, -0.014553073793649673, -0.011954570189118385, 0.021905824542045593, -0.015561990439891815, 0.0066595738753676414, 0.0015206328826025128, 0.0006364701548591256, 0.00686280895024538, 0.028757745400071144, 0.011199697852134705, 0.019379904493689537, 0.05391532927751541, -0.034927379339933395, 0.013914335519075394, -0.010495633818209171, -0.004445764701813459, -0.0015532956458628178, -0.02303813397884369, -0.017565306276082993, -0.003774363314732909, 0.0006210461142472923, 0.014698241837322712, -0.010016580112278461, 0.009748019278049469, -0.023284919559955597, 0.031501416116952896, 0.030107805505394936, 0.01207796297967434, -0.012818318791687489, 0.023851072415709496, -0.006122453138232231, 0.008361666463315487, 0.02135418727993965, -0.019670240581035614, -0.004932076670229435, -0.0065434398129582405, 0.005073615349829197, -0.002175702713429928, 0.018900850787758827, -0.01080048643052578, 0.008056813850998878, 0.0057631623931229115, 0.0047506168484687805, 0.03635002300143242, -0.0037562174256891012, -0.01177311036735773, -0.02123805321753025, -0.008724586106836796, -0.0004441227938514203, -0.012723959982395172, 0.0004250695346854627, 0.020497696474194527, -0.03132721781730652, 0.007399929687380791, 0.014168379828333855, -0.009980287402868271, -0.0134135065600276, 0.004841346759349108, -0.02299458347260952, -0.0014562146971002221, 0.02714638225734234, 0.032895028591156006, -0.02036704495549202, 0.006271250080317259, 0.005995430983603001, -0.0140449870377779, 0.013079620897769928, 0.007795512210577726, 0.03925338014960289, -0.020671898499131203, 0.009312516078352928, 0.022588113322854042, -0.013711100444197655, -0.0034096292220056057, -0.01833469606935978, 0.018581481650471687, -0.005407501477748156, 0.009312516078352928, -0.019946059212088585, -0.032778892666101456, -0.006510776933282614, 0.011054529808461666, -0.020352529361844063, -0.007483401335775852, 0.008143914863467216, 0.01808791048824787, -0.012143288739025593, -0.009660918265581131, -0.002166629768908024, -0.002578543499112129, 0.011453741230070591, -0.0057268706150352955, -0.004605449270457029, 0.014480490237474442, -0.006300283595919609, -0.007294683251529932, 0.010865811258554459, -0.007541468366980553, -0.01305058691650629, 0.00906573049724102, 0.0015777928056195378, -0.0001634272193768993, 0.005872038193047047, -0.008637485094368458, 0.012752993032336235, -0.015591024421155453, 0.008593935519456863, -0.015228104777634144, -0.006844663061201572, 0.007592277135699987, 0.015242621302604675, 0.03945661336183548, -0.0006627818220295012, -0.003284421982243657, 0.007715669926255941, -0.014908735640347004, -0.016084594652056694, -0.0003411443904042244, 0.00044797881855629385, -0.018465347588062286, 0.014291771687567234, 0.0027745200786739588, 0.06863534450531006, 0.011490033008158207, 0.0020722707267850637, -0.006187778431922197, 0.005182491149753332, -0.012165063060820103, -0.012687667272984982, 0.024765631183981895, 0.028670644387602806, -0.004013890400528908, -0.0019960575737059116, -0.01602652668952942, -0.001177673926576972, 0.0008877919754013419, -0.027567369863390923, 0.0008437879732809961, 0.014495006762444973, 0.031820785254240036, 0.0012175950687378645, 0.019873475655913353, -0.005607107188552618, -0.008361666463315487, -0.009929479099810123, 0.014117570593953133, -0.0009435908286832273, 0.021426770836114883, -0.0032336132135242224, 0.0028579914942383766, 0.014182896353304386, 0.0253463014960289, -0.011069046333432198, -0.011852952651679516, -0.016723332926630974, -0.005984543357044458, -0.0018889963394030929, 0.022980066016316414, -0.010176264680922031, 0.026565711945295334, 0.003748958930373192, 0.017304005101323128, -0.005113536491990089, 0.0035312073305249214, 0.02888839691877365, 0.032865993678569794, -0.018189528957009315, -0.0027618177700787783, 0.012527982704341412, 0.002417044248431921, 0.003255388466641307, 0.004728841595351696, -0.01984444074332714, -0.02370590530335903, 0.017565306276082993, 0.004514719359576702, 0.004950222559273243, -0.002807182725518942, 0.018784716725349426, -0.016200728714466095, -0.00847054272890091, -0.008260048925876617, -0.008666519075632095, 0.009080247022211552, -0.01956862211227417, -0.015489406883716583, 0.00815117359161377, -0.0058248587884008884, -0.003449550364166498, -0.005799454636871815, 0.011700526811182499, -0.0014761752681806684, -0.005821229889988899, -0.006855550222098827, 0.008078589104115963, -0.018987951800227165, -0.004511089995503426, 0.022268744185566902, 0.0006410066853277385, 0.0319659560918808, 0.024780146777629852, 0.003944935742765665, -0.0033769665751606226, -0.013609482906758785, -0.003048524260520935, -0.005538152530789375, -0.002870693802833557, 0.00199787225574255, 0.0027345989365130663, -0.020773515105247498, -0.008956854231655598, -0.015649091452360153, -0.015881359577178955, -0.004964739549905062, 0.004376810044050217, 0.002115821000188589, -0.012622342444956303, -0.01605556160211563, -0.01111985556781292, 0.0032154673244804144, 0.003520319703966379, -0.007033381145447493, 0.0058502634055912495, 0.008419733494520187, -0.01043756678700447, 0.00852860976010561, 0.009588334709405899, -0.008775394409894943, 0.026289893314242363, -0.0012302972609177232, -0.005204266402870417, 0.0011749520199373364, -0.011228730902075768, 0.00488126790151, -0.005552669055759907, 0.015271655283868313, -0.039195310324430466, 0.00010989658039761707, 0.014313546940684319, -0.0005334917223080993, -0.011359382420778275, -0.005414759740233421, 0.004159057978540659, -0.018828267231583595, -0.02223971113562584, 0.0020577539689838886, 0.012477174401283264, 0.005313142202794552, -0.00561799481511116, -0.00906573049724102, -0.022704247385263443, -0.005599848926067352, 0.028278691694140434, 0.004188091494143009, 0.02223971113562584, -0.012433623895049095, 0.0252301674336195, -0.0008351686410605907, 0.001375465071760118, -0.005723241250962019, 0.006492631044238806, -0.011722302064299583, 0.010640800930559635, 0.022326810285449028, 0.006423675920814276, 0.014299030415713787, 0.011983604170382023, 0.018842782825231552, -0.0081076230853796, -0.030311040580272675, 0.0023589772172272205, -0.009160089306533337, 0.017042702063918114, -0.03701779618859291, 0.005668803583830595, -0.019234737381339073, 0.007606794126331806, 0.0010052871657535434, -0.02152838744223118, 0.04206963628530502, -0.009588334709405899, 0.0004037480102851987, -0.010655318386852741, -0.008042297326028347, -0.0013391731772571802, 0.0030412657652050257, -0.004786909092217684, 0.003202765015885234, 0.012861869297921658, 0.02438819408416748, 0.01988799124956131, -0.0036255663726478815, -0.009849636815488338, 0.00013189857418183237, 0.007868096232414246, -0.02745123580098152, -0.0010497447801753879, -0.008165690116584301, -0.008775394409894943, 0.0013346367049962282, -0.02570922113955021, 0.02829320915043354, 0.009210898540914059, 0.0049719978123903275, 0.02135418727993965, 0.0066160233691334724, 0.01760885678231716, -0.011983604170382023, 0.005044581834226847, -0.008136656135320663, -0.01245539914816618, -0.016287829726934433, 0.01082226075232029, 0.014647433534264565, -0.015968460589647293, -0.01705721952021122, -0.018000809475779533, -0.0001383630878990516, 0.011402931995689869, 0.010713385418057442, 0.011003720574080944, 0.0017365700332447886, -0.004006631672382355, 0.002322685206308961, 0.004235271364450455, 0.01085855346173048, -0.0054619391448795795, -0.023662354797124863, -0.020657381042838097, -0.008506834506988525, -0.005545410793274641, -0.0022936516907066107, -0.023662354797124863, -0.03617582097649574, 0.007686636410653591, 0.012477174401283264, -0.029077114537358284, -0.01107630506157875, 0.006369238253682852, 0.010844036005437374, 0.006997088901698589, 0.0067067532800138, 0.003741700667887926, 0.02120901830494404, -0.005385726224631071, -0.016984635964035988, -0.009334291331470013, 0.002172073582187295, 0.00392678938806057, 0.01602652668952942, 0.014233704656362534, 0.0016558205243200064, 0.013812717981636524, 0.008652002550661564, -0.02952713519334793, 0.009675435721874237, -0.01993154175579548, 0.03765653446316719, 0.025651155039668083, -0.010423049330711365, 0.020584797486662865, -0.0072910538874566555, -0.011831177398562431, 0.005893813446164131, -0.015126487240195274, 0.005320400465279818, 0.011664234101772308, -0.006046239752322435, 0.006750303786247969, -0.00035679529537446797, 0.0018263927195221186, -2.4808954549371265e-05, 0.0019815408159047365, -0.020192844793200493, -0.010655318386852741, 0.02319781854748726, 0.024039791896939278, 0.007349120918661356, -0.006100677885115147, 0.008129398338496685, -0.005305883940309286, -0.035885486751794815, -0.0064817434176802635, 0.013028811663389206, -0.014284513890743256, -0.015213588252663612, 0.007715669926255941, 0.013957886025309563, -0.023226851597428322, 0.009254449047148228, 0.010256106965243816, 0.011548100039362907, 0.01760885678231716, -0.0057704211212694645, 0.004888526629656553, 0.020541246980428696, -0.006989830639213324, 0.006173261441290379, -0.006140599027276039, -0.000956293020863086, 0.005999060347676277, 0.007940679788589478, 0.017841124907135963, -0.00504095247015357, 0.003422331530600786, -0.023299435153603554, -0.023575253784656525, -0.015010353177785873, -0.00686280895024538, 0.01678140088915825, -0.004115507937967777, 0.02219616062939167, 0.019583139568567276, -0.008172948844730854, 0.025738254189491272, -0.015620057471096516, 0.0071749198250472546, 0.013072362169623375, -0.002974125789478421, -0.002660200232639909, 0.013115912675857544, 0.0079914890229702, -0.020817065611481667, -0.0024097857531160116, -0.008361666463315487, -0.014661950059235096, 0.006293025333434343, 0.014937768690288067, 0.007505176588892937, -0.004656258039176464, -0.007425334304571152, -0.0002724164805840701, 0.0021357815712690353, 0.0036673021968454123, -0.0034876568242907524, -0.006020835600793362, 0.0003939945308957249, -0.015315204858779907, 0.007454367820173502, 0.02231229469180107, -0.035130612552165985, 0.0013627628795802593, 0.01213603001087904, 0.028946463018655777, -0.006118823774158955, 0.00577767938375473, 0.001630416139960289, 0.002355347853153944, -0.015257137827575207, 0.003803397063165903, -0.012332006357610226, -0.03536288067698479, 0.024896280840039253, -0.009174606762826443, -0.0006233143503777683, -0.01908956840634346, -0.008093106560409069, 0.014698241837322712, -0.013028811663389206, 0.002957794349640608, -0.01143922470510006, 0.005955509841442108, -0.020381562411785126, 0.01037949975579977, -0.008071331307291985, -0.0074325925670564175, 0.014161121100187302, 0.018000809475779533, -0.010655318386852741, -0.004841346759349108, 0.009094764478504658, 0.00026152891223318875, -0.0031574000604450703, -0.002035978715866804, 0.013972402550280094, 0.015315204858779907, -0.0001597980153746903, -0.017187871038913727, 0.015082936733961105, 0.026159241795539856, -0.027668986469507217, -0.005810342263430357, -0.018116943538188934, 0.030746545642614365, -0.01801532693207264, -0.027189932763576508, 0.00788987148553133, 0.01336995605379343, -0.016650749370455742, 0.02602859027683735, -0.04468265548348427, 0.002242842921987176, -0.019583139568567276, -0.020149294286966324, -0.015576506964862347, -0.010212556459009647, -0.013355439528822899, 0.00622769957408309, -0.006743045523762703, -0.003944935742765665, -0.0178120918571949, -0.013609482906758785, 0.04651176929473877, 0.02080254815518856, -0.003358820453286171, -0.010270623490214348, 0.011410190723836422, 0.0011785812675952911, 0.03228532522916794, 0.02160097286105156, 0.003930418752133846, 0.0001371155376546085, -0.010009321384131908, -0.015228104777634144, -0.008840720169246197, 0.003839688841253519, 0.008114880882203579, -0.005792195908725262, -0.019989609718322754, 0.03263372555375099, 0.006935392506420612, 0.00019404855265747756, 0.010938395746052265, 0.0037344421725720167, 0.00884797889739275, 0.015228104777634144, 0.019467005506157875, -0.031036879867315292, 0.007614052388817072, 0.017913708463311195, 0.009406874887645245, 0.0010579105000942945, 0.0015351497568190098, 0.003908643499016762, -0.019989609718322754, -0.001568719744682312, 0.011344864964485168, 0.0032626467291265726, 0.011540842242538929, 0.0030757433269172907, 0.008085847832262516, -0.022050991654396057, 0.01952507160604, -0.006884584203362465, 0.00625673308968544, -0.003854205599054694, 0.014357097446918488, -0.01801532693207264, 0.03408540412783623, 0.0007712040678597987, -0.017623374238610268, -0.0058502634055912495, -0.01625879667699337, -0.008535867556929588, -0.013028811663389206, 0.012419107370078564, -0.021688072010874748, -0.014074020087718964, 0.025578569620847702, -0.015053902752697468, -0.0017011853633448482, 0.015750708058476448, -0.025752771645784378, -0.014037728309631348, 0.010002062655985355, 0.004111878573894501, 0.01833469606935978, -0.007868096232414246, 0.001262960024178028, 0.009943995624780655, -0.0033479328267276287, -0.012665892951190472, 0.0026093916967511177, 0.02822062559425831, 0.005255075171589851, 0.009058471769094467, 0.008289082907140255, -0.030543310567736626, -0.009341549128293991, 0.0029614234808832407, 0.026202792301774025, -0.025796322152018547, -0.004736100323498249, -0.0023208705242723227, 0.003689077217131853, 0.0032009505666792393, -0.011105338111519814, -0.006140599027276039, 0.00574864586815238, 0.02151387184858322, -0.0062349578365683556, -0.007526951376348734, -0.015721675008535385, 0.00852860976010561, 0.008325374685227871, -0.016331380233168602, 0.013036070391535759, 0.01833469606935978, 0.006761191412806511, 0.005432905629277229, 0.0023045390844345093, -0.004888526629656553, -0.012636858969926834, -0.0008260956383310258, -0.0039775981567800045, 0.00020062646945007145, 0.03582741692662239, 0.0001722733722999692, 0.005810342263430357, 0.0119327949360013, 0.011961828917264938, 0.0097044687718153, 0.005534523166716099, 0.007207582239061594, -0.0025948749389499426, 0.004217125475406647, 0.009581075981259346, -0.004739729221910238, 0.014705500565469265, 0.021862274035811424, 0.0018200415652245283, 0.003652785439044237, 0.0007957011112011969, 0.013660292141139507, 0.014124829322099686, -0.0007834525895304978, -0.004525606986135244, 0.0001067210323526524, -0.003367893397808075, 0.010749677196145058, 0.014182896353304386, 9.526638314127922e-05, 0.014865185134112835, -0.0011767667019739747, -0.03347570076584816, 0.0050590988248586655, -0.007969713769853115, 0.009530267678201199, 0.013377214781939983, 0.0159829780459404, 0.008877011947333813, -0.0004507007251959294, -0.002658385783433914, -0.018073393031954765, -0.00938509963452816, 0.004416731186211109, -0.0027835930231958628, -0.004351405426859856, 0.028264174237847328, 0.015199070796370506, 0.007526951376348734, -0.0011368455598130822, -0.02411237545311451, 0.0048304591327905655, -0.0012547944206744432, -0.0002003996487474069, 0.003269905224442482, -0.003104776842519641, 0.01760885678231716, 0.021688072010874748, 0.025694703683257103, -0.009784311056137085, 0.027349617332220078, 0.010364982299506664, -0.006467226427048445, 0.003429589793086052, -0.010778711177408695, -0.031907886266708374, 0.0039848568849265575, 0.005715982988476753, -0.010894845239818096, -0.007563243620097637, 0.0042425296269357204, 6.906812632223591e-05, 0.028423858806490898, 0.015431339852511883, 0.014850668609142303, -0.02390914037823677, -0.007367266807705164, 0.012782027013599873, -0.0029886425472795963, 0.012215872295200825, 0.012288455851376057, -0.005389355588704348, -0.006111565511673689, -0.008136656135320663, -0.0071749198250472546, 0.004148170351982117, 0.03849850594997406, -0.011163405142724514, -0.004594561643898487, 0.024054307490587234, -0.010727901943027973, -0.0008791726431809366, -0.008274565450847149, 0.012041671201586723, -0.002006945200264454, -0.009893187321722507, -0.03391120210289955, -0.005265962798148394, 0.019626690074801445, -0.01653461530804634, 0.005581702571362257, -0.02399624139070511, -0.02231229469180107, 0.0002962330763693899, -0.001088758697733283, 0.026841530576348305, 0.0057014659978449345, -0.0006732157780788839, 0.005766791757196188, -0.015416822396218777, 0.01972830668091774, -0.020308978855609894, -0.003081187140196562, -0.003494915319606662, 0.018073393031954765, 0.019162151962518692, 0.0038142844568938017, 0.010270623490214348, -0.033185362815856934, -0.03446283936500549, -0.0029650528449565172, 0.012215872295200825, 0.002580357948318124, -0.0050336942076683044, -0.01299251988530159, 0.005501860287040472, -0.0009472200181335211, -0.014378872700035572, -0.001361855654977262, -0.009181864559650421, -0.008296340703964233, -0.015503923408687115, 0.018116943538188934, -0.007585018873214722, -0.00980608630925417, -0.002478740643709898, 0.002736413385719061, -0.009348807856440544, 0.02594148926436901, -0.004957481287419796, -0.018189528957009315, -0.02059931494295597, 6.821753777330741e-05, 0.00831085816025734, -0.013166721910238266, -0.006808370817452669, 0.009501233696937561, 0.014632916077971458, 0.024460777640342712, -0.014509524218738079, -0.008935079909861088, 0.015213588252663612, -0.009348807856440544, -0.0012584235519170761, 0.003759846556931734, 0.007145885843783617, -0.025288235396146774, -0.01733303815126419, 0.012310231104493141, -0.01646203175187111, 0.009131056256592274, -0.006750303786247969, 0.000775286927819252, -0.001478897174820304, 0.010909361764788628, 0.0010751491645351052, 0.003297124058008194, 0.011852952651679516, -0.0005593497771769762, 0.010938395746052265, -0.01678140088915825, -0.0001198768659378402, -0.005255075171589851, 0.018668582662940025, -0.008615709841251373, -0.02538985200226307, -0.005828488152474165, -0.01776854135096073, 0.02183324098587036, -0.006710382644087076, -0.02733510173857212, -0.023096200078725815, -0.013522382825613022, 0.029004530981183052, -0.004583674017339945, -0.02187679149210453, 0.014255479909479618, 0.007708411198109388, -0.0049175601452589035, -0.023894622921943665, -0.00596639746800065, 0.009813345037400723, -0.003449550364166498, 0.005596219561994076, -0.009856895543634892, 0.004391326569020748, 0.01096017099916935, -0.003278978168964386, 0.006739416159689426, -0.025012414902448654, -0.017362071201205254, 0.019960574805736542, 0.0001519725628895685, -0.011620684526860714, -1.6841735487105325e-05, 0.0033606351353228092, 0.00863022729754448, 0.006503518670797348, 0.0011912834597751498, 0.006891842465847731, -0.030398141592741013, 0.003175546182319522, -0.01379094272851944, -0.02036704495549202, 0.009711727499961853, 0.008477800525724888, 0.006115194410085678, -0.0059373639523983, -0.025085000321269035, 0.0009195473976433277, -0.02057028003036976, -0.004638112150132656, 0.004888526629656553, 0.010060129687190056, 0.010902103036642075, 0.001093295169994235, 0.010633543133735657, 0.0029886425472795963, -0.010633543133735657, 0.003872351720929146, 0.012716701254248619, -0.006808370817452669, -0.0020323495846241713, -0.020773515105247498, 0.005988172721117735, -0.02235584519803524, 0.012506207451224327, -0.015126487240195274, -0.014291771687567234, 0.02027994394302368, 0.007381783798336983, 0.0018136905273422599, -0.007490659598261118, -0.007962455041706562, 0.0003087084332946688, -0.02009122632443905, -0.002435190137475729, 0.021136434748768806, -0.0031555856112390757, 0.003217281773686409, 0.018915366381406784, -0.0001046229008352384, 0.003547538770362735, 0.026652812957763672, 0.0027962950989603996, -0.005509119015187025, 0.0020269057713449, -0.013007037341594696, 0.0025404368061572313, 0.002587616443634033, -0.006692236755043268, -0.018204044550657272, -0.01372561790049076, -0.005218783393502235, 0.004587303381413221, -0.01605556160211563, -0.003505802946165204, 0.007526951376348734, -0.01043756678700447, 0.017724990844726562, -0.017637889832258224, -0.005160715896636248, 0.016912050545215607, -0.01080048643052578, 0.004866751376539469, -0.0016177139477804303, 0.02554953657090664, -0.01123598963022232, 0.017913708463311195, 0.010807744227349758, 0.030659444630146027, 0.021949375048279762, 0.0026257229037582874, -0.0038759808521717787, -0.011511808261275291, 0.024330126121640205, -0.0005480085383169353, -0.01744917221367359, -4.9561200285097584e-05, 0.01749272271990776, 0.007447109092026949, -0.012970744632184505, -0.009958513081073761, -0.020396079868078232, -0.02041059546172619, -0.025418885052204132, 0.00783180445432663, -0.010190781205892563, 0.008601193316280842, 0.032343391329050064, 7.110954902600497e-05, -0.003678189590573311, -0.010096422396600246, 0.003433218924328685, -0.005313142202794552, 0.0028198850341141224, 0.03434670716524124, 0.015968460589647293, 0.009508492425084114, 0.03057234361767769, 0.015808776021003723, 0.0011096264934167266, -0.010357724502682686, 0.0013019739417359233, 0.03344666585326195, 0.01424822211265564, 0.004191720858216286, -0.0208896491676569, -0.009929479099810123, -0.012099738232791424, 0.005146199371665716, -0.0029559799004346132, -0.005374838598072529, -0.008129398338496685, 0.0027019360568374395, 0.015300688333809376, -0.005207895766943693, 0.004819571506232023, 0.029077114537358284, 0.00463448278605938, 0.0056288824416697025, -0.0003810655325651169, -0.012302973307669163, -0.00338241015560925, 0.010945653542876244, -0.009196382015943527, 0.010481116361916065, -0.004790537990629673, -0.006684978026896715, 0.011823919601738453, -0.011468257755041122, 0.014865185134112835, 0.01972830668091774, -0.016316862776875496, -0.026318926364183426, 0.00447479821741581, 0.007875354029238224, 0.0010996462078765035, -0.007218469865620136, -0.006503518670797348, 0.006006318610161543, 0.008608452044427395, 0.003502173814922571, 0.007759219966828823, 0.003937677014619112, -0.010103680193424225, -0.012041671201586723, 0.002016018144786358, 0.011243247427046299, 0.0012039856519550085, 0.004761504475027323, -0.011381157673895359, 0.001794637180864811, 0.00718217808753252, -0.00365641457028687, -0.0034277751110494137, -0.021746139973402023, 0.006888213101774454, -0.012767509557306767, -0.010669834911823273, 0.007399929687380791, 0.02395269088447094, 0.0071676610969007015, 0.005280479323118925, -0.009936737827956676, 0.014328064396977425, -0.0020577539689838886, -0.0005040045361965895, 0.005334917455911636, -0.0039848568849265575, 0.018349213525652885, 0.028917429968714714, 0.008339891210198402, -0.013282855972647667, -0.0015886803157627583, -0.021615488454699516, -0.0096464017406106, 0.009479458443820477, 0.0023353872820734978, -0.010873069986701012, -0.009980287402868271, -0.016926568001508713, -0.0007172197801992297, 0.02653667703270912, 0.0016884832875803113, 0.01888633333146572, -0.0029523505363613367, 0.0025404368061572313, 0.001800080994144082, 0.012825577519834042, -0.01881374977529049, 0.00718217808753252, 0.011359382420778275, 0.012629600241780281, -0.0013364512706175447, 0.009675435721874237, 0.01255701668560505, -0.008122139610350132, 0.0032680905424058437, 0.017304005101323128, 0.00529862567782402, -0.0012493506073951721, 0.02123805321753025, -0.01069886889308691, 0.0020033158361911774, -0.014132087118923664, 0.024460777640342712, 0.018857300281524658, -0.021426770836114883, 0.007882612757384777, 0.0008664704510010779, 0.0042243837378919125, -0.012658634223043919, -0.023139750584959984, -0.031704653054475784, -0.005131682381033897, -0.0237494558095932, 0.0011014608899131417, -0.02183324098587036, 0.016084594652056694, -0.004467539954930544, -0.011228730902075768, 0.0007185807335190475, 0.006630540359765291, -0.0015532956458628178, 0.006136969663202763, 0.024809181690216064, -0.012361040338873863, -0.016607198864221573, -0.036204855889081955, -0.020512213930487633, 0.024286577478051186, 0.014429681934416294, -0.0004543299146462232, 0.004130024462938309, 0.0022156238555908203, 0.005897442810237408, 0.0009553857380524278, -0.004870380274951458, -0.026043107733130455, 0.017362071201205254, 0.0017184241442009807, -0.00926896557211876, 0.003166473237797618, -0.012600567191839218, -0.004805054981261492, 0.015024869702756405, -0.01289090234786272, -0.0026202790904790163, 0.012143288739025593, 0.029788436368107796, 0.013101396150887012, -0.001418108120560646, -0.005128053482621908, -0.024939831346273422, -0.005480085499584675, 0.009610109962522984, -0.01865406520664692, -0.01877019926905632, 0.003331601619720459, -0.010677093639969826, 0.017637889832258224, 0.013333664275705814, -0.004090103320777416, -0.0036291955038905144, -0.00530225457623601, -0.007011605892330408, -0.01877019926905632, -0.028554510325193405, 0.017245937138795853, -0.00996577087789774, -0.030223941430449486, 0.005919218063354492, -0.012948969379067421, 0.017942743375897408, -0.015852326527237892, -0.010887586511671543, -0.012680409476161003, -0.01904601790010929, 0.006539810448884964, 0.00456189876422286, -0.011852952651679516, -0.01586684212088585, 0.02642054297029972, 0.002054124604910612, 0.014952286146581173, -0.028844846412539482, -0.0015478519489988685, -0.0031828044448047876, 0.014110312797129154, 0.0039231604896485806, -0.018421797081828117, 0.013435281813144684, -0.010974687524139881, 0.01069886889308691, -0.0012974374694749713, -0.010190781205892563, -0.001347338897176087, 0.016491064801812172, -0.01389256026595831, -0.008935079909861088, -0.012549757957458496, 0.0021611859556287527, -0.013594966381788254, -0.0012620527995750308, -0.015344238840043545, 0.014429681934416294, 0.010103680193424225, -0.018116943538188934, 0.011881986632943153, 0.0023027246352285147, 0.03147238492965698, -0.009421391412615776, -0.00024066102923825383, 0.01717335358262062, -0.01760885678231716, -0.013398990035057068, 0.0021212648134678602, -0.028031906113028526, 0.021179985255002975, 0.02737865224480629, 0.002573099685832858, -0.034056372940540314, 0.0002760456991381943, -0.00048449760652147233, 0.013834493234753609, 0.011482775211334229, 0.01468372531235218, 0.015228104777634144, 0.016157178208231926, 0.00485223438590765, 0.017797574400901794, -0.001794637180864811, -0.014799859374761581, -0.005403872113674879, -0.0020196472760289907, -0.003122922731563449, -0.00826730765402317, -0.013384473510086536, -0.015547473914921284, 0.0034005562774837017, -0.004932076670229435, -0.0070878188125789165, -0.004772392101585865, -0.016113627701997757, -0.0005657008732669055, -0.010640800930559635, 0.006104306783527136, 0.00673578679561615, 0.009189123287796974, 0.00498288543894887, 0.0066232820972800255, 0.0015160964103415608, 0.01336995605379343, -0.011903761886060238, 0.006485372316092253, 0.004645370412617922, -0.009958513081073761, 0.022065509110689163, 0.0025894311256706715, -0.04610529914498329, -0.027596402913331985, -0.017028186470270157, -0.0016267868923023343, 0.014371613971889019, 0.00514257000759244, -0.01586684212088585, 0.0030213051941245794, 0.026609262451529503, 0.014197412878274918, 0.016810433939099312, 0.006957167759537697, -0.006728528533130884, -0.023734938353300095, -0.0056651742197573185, -0.006837404333055019, -0.0034604379907250404, 5.0383441703161225e-05, -0.0029269461520016193, 0.019118601456284523, -0.004942964296787977, 0.03367893397808075, 0.013674808666110039, 0.010321431793272495, -0.002638425212353468, -0.01098194532096386, 0.01085855346173048, 0.01776854135096073, -0.0046707745641469955, -0.0074761430732905865, 0.010851294733583927, -0.011243247427046299, -0.006819258444011211, -0.01037949975579977, 0.008325374685227871, -0.018320178613066673, 0.015997493639588356, 0.013551415875554085, 0.0014870628947392106, -0.010031096637248993, 0.011860211379826069, -0.0074761430732905865, 0.00021128723165020347, 0.02315426804125309, 0.009036696515977383, -0.010110938921570778, 0.0071495152078568935, 0.007102335803210735, 0.0026275375857949257, -0.012527982704341412, -0.012143288739025593, 0.0028380309231579304, -0.0017066291766241193, -0.01013997197151184, 0.009718985296785831, 0.007526951376348734, 0.0030176760628819466, 0.007592277135699987, -0.008739102631807327, -0.029222283512353897, -0.006655944511294365, -0.0041009909473359585, -0.03036910854279995, 0.003589274361729622, -0.008485059253871441, -0.010553700849413872, -0.015561990439891815, 0.006434563547372818, 0.014320805668830872, 0.016520097851753235, -0.02160097286105156, 0.00667409086599946, 0.006717640906572342, -0.007795512210577726, -0.01605556160211563, 0.006100677885115147, 0.021412253379821777, -0.0065434398129582405, -0.006009947974234819, 0.013580449856817722, 0.007425334304571152, -0.0013418950838968158, 0.008753620088100433, 0.005131682381033897, 0.018233077600598335, 0.01414660457521677, 0.01733303815126419, -0.021179985255002975, 0.034695111215114594, -0.02769802138209343, 0.02027994394302368, 0.007940679788589478, -0.005712353624403477, 0.019394421949982643, 0.002233769977465272, -0.002177517395466566, -0.01801532693207264, 0.008194723166525364, 0.004151799716055393, -0.0011758593609556556, -0.00986415334045887, -0.016650749370455742, 0.0005257797311060131, -0.005244187545031309, 0.004492944106459618, 0.01821856200695038, -0.01366755086928606, 0.00910928100347519, -0.0064744846895337105, 0.007824545726180077, 0.009348807856440544, -0.0007993303006514907, -0.0013264709850773215, -0.002981384051963687, 0.012912677600979805, 0.01080048643052578, -0.016824951395392418, 0.008201981894671917, -0.012346522882580757, -0.018668582662940025, -0.013994177803397179, -0.008935079909861088, -0.0006859179702587426, 0.001791008049622178, 0.00022512354189530015, 0.0015242621302604675, 0.006888213101774454, 0.016113627701997757, 0.0020323495846241713, -0.027160899713635445, 0.008935079909861088, -0.019481521099805832, 0.0038687223568558693, -0.026289893314242363, 0.012440882623195648, -0.0022501011844724417, -0.020018642768263817, -0.00549097266048193, 0.018828267231583595, 0.012760251760482788, 0.01753627322614193, -0.004151799716055393, -0.01689753495156765, -0.0010061945067718625, 0.005251445807516575, 0.007490659598261118, -0.015953943133354187, 0.0005588961066678166, -0.018073393031954765, 0.008615709841251373, 0.01008190494030714, -0.000468619866296649, 0.010495633818209171, 0.0054619391448795795, -0.0251140333712101, -0.007810028735548258, 0.016360413283109665, -0.022733280435204506, -0.011141630820930004, 0.014074020087718964, 0.0009717171196825802, 0.0023063537664711475, -0.03629195690155029, -0.015329722315073013, -0.009501233696937561, 0.016752365976572037, -0.009508492425084114, 0.004536494612693787, 0.0374532975256443, 0.0004881267959717661, -0.004427618812769651, 0.01382723543792963, 0.0029977154918015003, -0.00488126790151, 0.01334818173199892, -0.005654286593198776, 0.0030775577761232853, 0.0006255825865082443, 0.005197008140385151, 0.033533766865730286, 0.0034422921016812325, 0.025767289102077484, -0.015852326527237892, -0.008405216969549656, -0.022181643173098564, 0.015460372902452946, -0.005668803583830595, 0.015358755365014076, -0.003963081631809473, -0.003048524260520935, -0.022660696879029274, 0.002192034153267741, 0.008877011947333813, -0.004841346759349108, -0.017754023894667625, -0.0009980287868529558, -0.00469254981726408, -0.013972402550280094, -0.006714012008160353, -0.015024869702756405, 0.028148040175437927, -0.004736100323498249, 0.009573818184435368, 0.007846320979297161, 0.039514679461717606, -0.02068641409277916, -0.00820924062281847, 0.009247190319001675, 0.0038578349631279707, 0.002896097954362631, -0.03208208829164505, 0.002959609031677246, 0.006826516706496477, 0.025607604533433914, -0.001903513097204268, -0.008550385013222694, 0.008238273672759533, -0.009559300728142262, 0.01076419372111559, 0.008035038597881794, -0.026289893314242363, 0.008281824178993702, 0.0035693137906491756, -0.02824965864419937, 0.0020015013869851828, -0.011206955648958683, -0.0020704560447484255, 2.0385872630868107e-05, -0.003453179495409131, 0.005480085499584675, 0.0018390947952866554, -0.005055469460785389, -9.095671703107655e-05, -0.02721896581351757, -0.011410190723836422, 0.012012637220323086, 0.05005386471748352, 0.011540842242538929, 0.015053902752697468, -0.008129398338496685, 0.0024696674663573503, -0.02358977124094963, -0.0015251694712787867, -0.010067388415336609, -0.019800890237092972, -0.0026184646412730217, 0.009160089306533337, 0.00012180487829027697, 0.01805887743830681, 0.011729559861123562, -0.021426770836114883, 0.0005148921045474708, 0.0062966542318463326, -0.011671492829918861, 0.0009354251669719815, 0.01589587703347206, 0.0006332946359179914, -6.186644168337807e-05, -0.009131056256592274, -0.016665266826748848, 0.014233704656362534, 0.0006813814397901297, -0.002741857198998332, -0.01833469606935978, 1.7082736576412572e-06, 0.01570715755224228, 0.02961423620581627, 0.020788032561540604, -0.03304019570350647, 0.020991267636418343, 0.016563648357987404, 0.011584391817450523, 0.00019155348127242178, 0.01096017099916935, 0.007102335803210735, -0.006369238253682852, -0.03216918930411339, -0.006441822275519371, -0.005810342263430357, -0.013195754960179329, -0.030194906517863274, 0.00712411105632782, 0.008020522072911263, -0.007338233292102814, -0.01191827841103077, -4.468447150429711e-05, -0.003124737413600087, -0.001781027764081955, -0.007301941514015198, 0.016157178208231926, -0.006361979991197586, 0.023067167028784752, 0.004743358585983515, -0.011257764883339405, -0.007160402834415436, -0.0009934923145920038, -0.0005670618265867233, -0.0069934600032866, 0.01239733211696148, 0.02904808148741722, -0.004681662190705538, 0.012128771282732487, 0.001342802308499813, -0.0018908109050244093, -0.0007494288729503751, 0.014037728309631348, 0.02790125459432602, -0.017434654757380486, -0.011301315389573574, -0.007385413162410259, -0.01956862211227417, -0.027364134788513184, -0.045060090720653534, -0.002694677794352174, -0.007998746819794178, -0.00038265332113951445, -0.0013890746049582958, 0.018595997244119644, 0.009595593437552452, -0.013703842647373676, -0.0047143250703811646, -0.007410817313939333, -0.002016018144786358, 0.0005271406844258308, 0.018625032156705856, -0.003854205599054694, -0.01372561790049076, 0.004968368913978338, -0.01430628914386034, 0.01813146099448204, 0.01685398444533348, -0.005843004677444696, -0.016171695664525032, 0.010357724502682686, 0.009733502753078938, 0.008601193316280842, 0.009029438719153404, 0.021339669823646545, 0.0018980692839249969, 0.016171695664525032, -0.009631885215640068, -0.032691795378923416, -0.008274565450847149, -0.0016549131833016872, -0.002219252986833453, 0.024243026971817017, -0.0139288529753685, 0.013144946657121181, -0.0028525476809591055, -0.00015117868315428495, 0.012825577519834042, 0.021905824542045593, 0.028902914375066757, 0.014008695259690285, 0.016084594652056694, 0.002736413385719061, -0.005432905629277229, 0.008637485094368458, 0.030136840417981148, -0.009726244024932384, 0.001965209376066923, 0.010212556459009647, 0.010335949249565601, 0.019583139568567276, -0.004605449270457029, -0.0018037102418020368, 0.0008392515010200441, -0.01776854135096073, 0.003275349037721753, 0.002765447134152055, 0.005705095361918211, -0.011090821586549282, -0.0026692734099924564, -0.005240558180958033, 0.017478205263614655, 0.00010388572263764217, -0.023604288697242737, 0.016723332926630974, 0.013682067394256592, -0.0021375962533056736, 0.0015142818447202444, 0.0024660383351147175, -0.01920570246875286, 0.01379094272851944, 0.014589366503059864, 0.01101823803037405, -0.004282450769096613, -0.03132721781730652, -0.003131995676085353, 0.006111565511673689, -0.017507240176200867, 0.008920562453567982, -0.026449577882885933, 0.0294545516371727, -0.017666924744844437, 0.004630853421986103, 0.004246158991008997, 0.007258391007781029, 0.0027581886388361454, 0.017042702063918114, 0.021949375048279762, -0.013014295138418674, 0.0007793697295710444, 0.005066357087343931, -0.008042297326028347, -0.00878991186618805, -0.013108653947710991, -0.00303400750271976, 0.00019552290905267, -0.004394955933094025, -0.015561990439891815, 0.0055417814292013645, -0.007374525535851717, -0.0038505764678120613, -0.015605540946125984, -0.0057704211212694645, 0.02331395260989666, 0.013144946657121181, 0.0335628017783165, -0.0066232820972800255, -0.02180420607328415, 0.020628347992897034, -0.010270623490214348, 0.01056095864623785, -0.004485685843974352, 0.011098080314695835, 0.004746987950056791, -0.003937677014619112, -0.016752365976572037, -0.010894845239818096, -0.010851294733583927, 0.020613830536603928, 0.005215154029428959, -0.015924910083413124, -0.06799660623073578, 0.0014761752681806684, 0.006637798622250557, -0.0002092458016704768, -0.009900445118546486, 0.014952286146581173], "75c34353-c6bd-4fcb-90ec-d02aa625ab46": [-0.03300560638308525, -0.002273965859785676, -0.010555782355368137, 0.03137393295764923, 0.00641219038516283, -0.021426448598504066, 0.03289110213518143, 0.03332049027085304, -0.024432161822915077, 0.04041970148682594, -0.0038895374163985252, -0.01253812201321125, 0.010369714349508286, -0.004465632606297731, 0.020911183208227158, 0.05808185040950775, -0.015715591609477997, 0.007621632423251867, 0.02864016219973564, -0.038301385939121246, 0.04686051607131958, -0.03515254333615303, -0.03956092521548271, -0.011249958537518978, 0.030143018811941147, 0.018077224493026733, -0.015214638784527779, 0.007224448956549168, -0.04219450056552887, -0.017533332109451294, 0.00995463877916336, 0.008201305754482746, -9.59972312557511e-05, 0.013575809076428413, 0.027022801339626312, -0.011013795621693134, 0.009496625512838364, 0.00021089200163260102, -0.019265197217464447, -0.020510422065854073, 0.003621170064434409, 0.01720413565635681, 0.040448326617479324, -0.0077361357398331165, -0.021340571343898773, 0.018993251025676727, -0.017619211226701736, 0.01822035387158394, 0.010720380581915379, 0.01694650389254093, 0.005009523592889309, -0.003424367168918252, 0.014899754896759987, 0.013747564516961575, 0.020581986755132675, -0.06686998158693314, 0.0244751013815403, 0.042108625173568726, -0.015071509405970573, -0.07814856618642807, 0.01635967381298542, -0.005807469133287668, 0.009754258207976818, -0.0017229183577001095, 0.01459202729165554, 0.04434144124388695, -8.643664477858692e-05, -0.009360652416944504, -0.019537141546607018, 0.015429332852363586, 0.018034284934401512, 0.022399727255105972, 0.002476135967299342, 0.022485604509711266, 0.04414106160402298, -0.0021039999555796385, 0.02287205308675766, 0.046717386692762375, 0.03294835239648819, -0.007900734432041645, 0.01416979543864727, -0.0024654013104736805, 0.04832043498754501, -0.004576557781547308, 0.06790051609277725, 0.027938829734921455, 0.018950313329696655, -0.029513251036405563, 0.004426272120326757, -0.033921632915735245, -0.01296035386621952, 0.007099210750311613, -0.013518557883799076, -0.01910775527358055, -0.005020258482545614, 0.0070025986060500145, 0.0016764013562351465, 0.0047125304117798805, -0.000635583302937448, -0.031717441976070404, 0.0009616496390663087, -0.007124258205294609, 0.019565768539905548, 0.008566285483539104, 0.002125469269230962, -0.013933632522821426, -0.004598027095198631, -0.009603972546756268, -0.023043809458613396, 0.04734715446829796, 0.0023974149953573942, -0.011951291933655739, -0.005743061192333698, 0.012738503515720367, -0.07791956514120102, -0.009382122196257114, -0.04362579435110092, -0.009303401224315166, -0.04877844825387001, -0.029570503160357475, 0.025004679337143898, -0.016402611508965492, -0.023043809458613396, -0.022256597876548767, -0.018406420946121216, 0.015228952281177044, -0.0047268434427678585, 0.039131537079811096, -0.002635367214679718, -0.013389741070568562, -0.013919319026172161, 0.0063191563822329044, 0.013976571150124073, 0.006880938541144133, 0.034723155200481415, 0.01060587726533413, 0.0239455234259367, 0.05041012167930603, 0.009432217106223106, 0.003472673473879695, -0.06847303360700607, -0.0002956513490062207, 0.004623074550181627, 0.014234203845262527, 0.025147808715701103, -0.003333122469484806, 0.004422693978995085, 0.041536107659339905, -0.004190108738839626, 0.015500897541642189, -0.06847303360700607, -0.04474220424890518, -0.02043885737657547, 0.005603509955108166, 0.040705956518650055, -0.05361621454358101, 0.01610204018652439, 0.02939874678850174, 0.008673632517457008, 0.034494150429964066, 0.01902187615633011, -0.012316271662712097, -0.0026979863177984953, 0.05043874680995941, 0.044799454510211945, 0.015228952281177044, 0.05971352383494377, -0.011908353306353092, -0.01073469314724207, 0.015114448964595795, 0.027122993022203445, -0.028139209374785423, 0.033864378929138184, 0.01430576853454113, -0.049723099917173386, -0.005850408226251602, 0.02483292482793331, 0.017934095114469528, 0.011013795621693134, -0.00742840813472867, -0.012530965730547905, 0.025305250659585, 0.007936516776680946, -0.003692734520882368, 0.022829115390777588, 0.025462692603468895, 0.018148789182305336, 0.03478040546178818, -0.02756669372320175, 0.010140706785023212, -0.001531482907012105, 0.014405959285795689, 0.00020306461374275386, -0.007120680063962936, 0.003270503366366029, -0.01958008110523224, 0.015887346118688583, 0.009088707156479359, -0.008516190573573112, 0.018964625895023346, 0.020367292687296867, -0.03924604132771492, -0.0231869388371706, 0.015715591609477997, -0.01240214891731739, 0.0382155105471611, -0.03950367122888565, -0.03340636566281319, 0.01584440842270851, -0.05198454111814499, 0.03841589018702507, -0.05066775530576706, -0.01419126521795988, -0.0035138230305165052, 0.01930813491344452, 0.0027731291484087706, -0.004168639425188303, 0.0386735238134861, -0.006208231206983328, -0.02042454294860363, -0.007031224202364683, 0.020853931084275246, -0.01074185036122799, -0.037213604897260666, -0.046975020319223404, -0.01077047549188137, -0.012745659798383713, -0.0005045306170359254, -0.003792925039306283, -0.003193571465089917, 0.0315743125975132, -0.01145749632269144, 0.009460843168199062, -0.01373325102031231, -0.02344457060098648, 0.0258348286151886, 0.06074405461549759, -0.012795754708349705, -0.02146938629448414, 0.01688925176858902, -0.0315743125975132, 0.016975129023194313, 0.01637398637831211, 4.4168791646370664e-05, 0.016545740887522697, 0.02235678769648075, 0.008616380393505096, 0.030658284202218056, 0.0011539795668795705, 0.010784788988530636, 0.010190802626311779, 0.004995210561901331, -0.015457958914339542, -0.007614476140588522, -0.04041970148682594, 0.02534819021821022, 0.0430532768368721, 0.002867952222004533, -0.0020145440939813852, -0.015472271479666233, 0.00913880206644535, 0.02124037966132164, -0.010834883898496628, 0.05138339847326279, 0.02122606709599495, -0.00833012256771326, 0.015729904174804688, 0.01939401403069496, -0.007657414767891169, 0.012867319397628307, 0.01720413565635681, 0.008337278850376606, -0.01415548287332058, 0.0038215508684515953, 0.011865414679050446, 0.020882558077573776, 0.011808162555098534, 0.027724135667085648, 0.03532429784536362, -0.000822993170004338, -0.04122122377157211, 0.014928380958735943, 0.0003251717716921121, 0.004046979360282421, 0.03543880209326744, 0.027681196108460426, -0.028124896809458733, -0.020839618518948555, -0.05338720977306366, -0.009267618879675865, 0.018950313329696655, 0.023859646171331406, 0.012015700340270996, 0.0008247822988778353, -0.016187917441129684, -0.011894040741026402, -0.0025047617964446545, 0.014577713795006275, 0.01130721066147089, 0.026607727631926537, -0.016746122390031815, -0.02260010875761509, -0.0017944829305633903, -0.01305338740348816, 0.04359716922044754, -0.03314873203635216, 0.02838253043591976, 0.017447454854846, 0.0013552550226449966, 0.036383453756570816, 0.028268026188015938, -0.03269071877002716, -0.03400750830769539, -0.010197958908975124, 0.010949387215077877, 0.005331564694643021, -0.012759972363710403, 0.00200738781131804, -0.01746176742017269, -0.02285774052143097, 0.006000693887472153, 0.017862530425190926, -0.03592544049024582, 0.05012386292219162, 0.03380712866783142, -0.005589196924120188, 0.01077763270586729, -0.004530040547251701, -0.0038287073839455843, -0.020896870642900467, -0.029885387048125267, -0.045057088136672974, -0.019694585353136063, 0.014828190207481384, -0.026822421699762344, -0.0030075032263994217, -0.04013344272971153, -0.042309004813432693, 0.03901703283190727, -0.01064165960997343, -0.007485659793019295, -0.015729904174804688, 0.06893104314804077, 0.006093727890402079, 0.015443645417690277, 0.005846829619258642, -0.000444818870164454, 0.003089802572503686, -0.029627755284309387, 0.01880718395113945, 0.0009178163018077612, -0.008895482867956161, 0.02968500554561615, 0.0021666190586984158, -0.021311944350600243, -0.004469210747629404, -0.03615444898605347, 0.005016680341213942, 0.015558149665594101, -0.011994230560958385, -0.00828718300908804, -0.019250884652137756, -0.001772118965163827, 0.018463673070073128, -0.0009992211125791073, -0.015744216740131378, 0.0018857278628274798, -0.015343455597758293, -0.003497720928862691, -0.020510422065854073, 3.748756353161298e-05, -0.0070670065470039845, 0.012244706973433495, 1.5584873835905455e-06, -0.02725180797278881, -0.015572462230920792, 0.030744163319468498, 0.0007169880555011332, 0.03440827131271362, 0.03400750830769539, 0.022256597876548767, -0.04477082937955856, -0.01157199963927269, 0.02531956322491169, 0.006812951993197203, -0.022800488397479057, 0.032576218247413635, -0.03603994473814964, -0.009632598608732224, -0.006383564323186874, -0.013454149477183819, -0.009840135462582111, -0.017232760787010193, -0.025305250659585, -0.011428870260715485, -0.023330068215727806, 0.01801997236907482, -0.01852092519402504, -0.013375428505241871, -0.011650720611214638, 0.025963645428419113, -0.01740451715886593, 0.0132179856300354, -0.009489469230175018, 0.023816706612706184, -0.010133550502359867, -0.020252788439393044, -0.002155884401872754, 0.014799564145505428, 0.01360443513840437, 0.00350487744435668, 0.009382122196257114, 0.0004059055936522782, 0.026350094005465508, 0.03208957612514496, -0.006433659698814154, -0.02592070773243904, 0.03569643571972847, -0.012717033736407757, -0.0026246325578540564, 0.02775276079773903, 0.0015538468724116683, 0.02509055659174919, 0.02347319759428501, 0.020581986755132675, 0.023831019178032875, -0.017647836357355118, 0.007464190479367971, 0.006165292579680681, 0.005399550776928663, 0.009310557506978512, 0.03140255808830261, -0.007170775439590216, 0.003223986364901066, -0.014885441400110722, 0.0031184284016489983, -0.025534257292747498, -0.04980897903442383, 0.04328228533267975, -0.02205621637403965, -0.03168881684541702, 0.006097306031733751, -0.01050568651407957, 0.04050557687878609, -0.06669823080301285, -0.028983673080801964, -0.031717441976070404, -0.013597278855741024, 0.01634535938501358, -0.023115374147892, 0.03921741247177124, 0.011264272034168243, -0.009267618879675865, -0.03506666421890259, 0.025505632162094116, -0.007281700614839792, 0.0030593876726925373, -0.008716571144759655, 0.04814868047833443, -0.05550552159547806, -0.015686966478824615, -0.004093496594578028, 0.028411155566573143, 0.009911700151860714, 0.008265714161098003, 0.008802448399364948, 0.009911700151860714, -0.017032381147146225, -4.042981800012058e-06, 0.00914595928043127, 0.002801754977554083, -0.003492353716865182, -0.005234952084720135, 0.02746650204062462, 0.00654458487406373, -0.02315831184387207, -0.02124037966132164, 0.01388353668153286, -0.01633104681968689, -0.013103482313454151, 0.026035210117697716, -0.014828190207481384, 0.025205060839653015, -0.030686911195516586, 0.0014948061434552073, 0.044284190982580185, -0.036669712513685226, 0.0004942431696690619, 0.028439780697226524, -0.018377795815467834, -0.005131183657795191, -0.01829191856086254, 0.04388342797756195, 0.01307485718280077, -0.0012595374137163162, -0.007557224482297897, 0.003619380760937929, -0.0002489107137080282, 0.01877855695784092, -0.03698459640145302, 0.007822013460099697, -0.020295727998018265, 0.009303401224315166, -0.01051284372806549, -0.016230856999754906, 0.035009413957595825, -0.0059219724498689175, 0.054303236305713654, 0.01119270734488964, -0.016159292310476303, -0.025276625528931618, 0.05158378183841705, -0.05413148179650307, 0.04205137491226196, 0.015672652050852776, 0.03455140069127083, 0.004984476137906313, -0.03976130485534668, 0.04605899378657341, -0.00981151033192873, 0.0021147346124053, -0.04376892372965813, -0.02669360488653183, -0.0017497551161795855, -0.01746176742017269, 0.0032544012647122145, -0.022814802825450897, -0.021168814972043037, 0.03538155183196068, -0.04336816072463989, -0.005689387675374746, 0.00982582289725542, -0.03838726505637169, -0.013332489877939224, 0.006859469227492809, 0.0011378774652257562, 0.018334856256842613, 0.014871128834784031, 0.025176433846354485, -0.01877855695784092, -0.04485670477151871, 0.020324353128671646, -0.020367292687296867, 0.0036891563795506954, -0.022757550701498985, 0.018993251025676727, -0.005481850355863571, 0.012931727804243565, -0.01510013546794653, 0.015186013653874397, -0.0009553877171128988, 0.018635427579283714, -0.004258095286786556, 0.017032381147146225, -0.024303346872329712, -0.0342937670648098, 0.003953945357352495, 0.003524557687342167, -0.01773371361196041, -0.017018066719174385, -0.01404097955673933, 0.061144813895225525, -0.0157871562987566, -0.0003070569655392319, 0.008516190573573112, -0.004984476137906313, -0.01876424439251423, -0.004150748252868652, -0.01583009399473667, 0.009818666614592075, 0.02451804094016552, -0.019436951726675034, 0.02833959087729454, 0.0029216257389634848, 0.01022658497095108, 0.05126889795064926, -0.0047912513837218285, 0.008730883710086346, -0.04686051607131958, -0.006999020464718342, 0.002969931811094284, 0.01634535938501358, 0.0059219724498689175, 0.0011280373437330127, -0.01823466643691063, 0.014799564145505428, -0.01292457152158022, -0.007521442137658596, -0.027967454865574837, -0.02884054370224476, -0.008645006455481052, 0.005821782164275646, -0.03976130485534668, -0.001465285662561655, -0.013361115008592606, 0.016445551067590714, 0.006072258576750755, 0.01119270734488964, 0.04394067823886871, 0.017619211226701736, 0.02942737378180027, 0.015014258213341236, 0.015715591609477997, -0.00592912919819355, -0.03563918173313141, 0.01740451715886593, -0.006888095289468765, -0.004100652877241373, 0.00991885643452406, -0.008959891274571419, -0.011657876893877983, -0.02175564505159855, 0.048663944005966187, -0.00900998618453741, 0.0018696257611736655, 0.01527189090847969, 0.005607088096439838, 0.03810100629925728, 0.003531714202836156, -0.00817267969250679, 0.015973223373293877, -0.003229353576898575, 0.02202759124338627, 0.004988054279237986, 0.00926046259701252, 0.027051428332924843, 0.002828591736033559, -0.019780462607741356, 0.012316271662712097, 0.02427471987903118, -0.026292843744158745, -0.023301441222429276, -0.00952525157481432, -6.334587669698521e-05, -0.0022757549304515123, -0.018105849623680115, 0.021054312586784363, -0.008387373760342598, -0.004852081649005413, -0.009038612246513367, -0.007392625790089369, -0.010978013277053833, 0.0012702720705419779, 0.020481795072555542, -0.007124258205294609, -0.004190108738839626, 0.01959439367055893, -0.009196054190397263, 0.025419754907488823, -0.006623305846005678, -0.025677386671304703, -0.005768108647316694, -0.01743314228951931, 0.018692679703235626, 0.013446993194520473, -0.0315743125975132, -0.00476262578740716, -0.010856353677809238, 0.016502803191542625, 0.010197958908975124, 0.03566780686378479, -0.026221279054880142, -0.0018159523606300354, 0.02176995947957039, 0.03077278845012188, -0.010863509960472584, 0.022113468497991562, -0.009396434761583805, 0.03767161816358566, 0.008337278850376606, 0.004000462591648102, -0.03177469223737717, 0.019422639161348343, -0.006473020184785128, -0.014842502772808075, 0.012616842985153198, -0.008487564511597157, -0.00652669370174408, 0.013461305759847164, -0.018320543691515923, -0.014363019727170467, -0.028196461498737335, -0.03289110213518143, 0.008866856805980206, -0.0021147346124053, -0.00566076161339879, 0.0017846428090706468, -0.0407918356359005, -0.026078149676322937, -0.00025047617964446545, -0.021884461864829063, 0.007915046997368336, 0.004759047646075487, 0.02942737378180027, 0.014005197212100029, -0.010978013277053833, 0.006562476046383381, -0.004490680061280727, -0.010813415050506592, -0.0370132252573967, -0.028926420956850052, -0.016159292310476303, -0.00926046259701252, -0.02101137302815914, 0.0028142789378762245, 0.003986149560660124, -0.005800312850624323, -0.030286148190498352, -0.004991632420569658, 0.0022632312029600143, 0.011049577966332436, 0.047003645449876785, 0.0004027746617794037, 0.024303346872329712, 0.004454897716641426, 0.017633523792028427, -0.009174584411084652, 0.033921632915735245, -0.006204653065651655, 0.03360674902796745, 0.018635427579283714, 0.029484625905752182, -0.012702721171081066, -0.004329659976065159, -0.022757550701498985, -0.030372027307748795, -0.005005945451557636, -0.004862816073000431, 0.01983771286904812, 0.012996135279536247, 0.02673654444515705, 0.008337278850376606, 0.013439835980534554, 0.023773768916726112, 0.02041023038327694, -0.004354707431048155, -0.015558149665594101, 0.006651931907981634, 0.04173648729920387, -0.01128574088215828, 0.009561033919453621, -0.025791890919208527, 0.004050557501614094, -0.04116397351026535, -0.007657414767891169, -0.015944598242640495, 0.027867265045642853, 0.015615400858223438, -0.03294835239648819, -0.04394067823886871, 0.007006176747381687, -0.022113468497991562, 0.041249848902225494, 0.008616380393505096, 0.0015771053731441498, -0.010269523598253727, 0.03377850353717804, 0.013311020098626614, 0.017089631408452988, 0.04797692224383354, -0.024160217493772507, 0.026779482141137123, 0.015200326219201088, -0.010949387215077877, -0.0017640680307522416, -0.005624979268759489, 0.006956081371754408, 0.031001795083284378, 0.005388816352933645, 0.009632598608732224, 0.044026557356119156, 0.006422924809157848, 0.005696543958038092, 0.04926508665084839, -0.005939863622188568, 0.030057141557335854, 0.002896578051149845, -0.03194644674658775, -0.02368788979947567, -0.0059255510568618774, -0.05129752308130264, -0.020782366394996643, 0.020066721364855766, 0.01584440842270851, 0.019680270925164223, -0.037184979766607285, 0.039331916719675064, -0.006215387489646673, 0.0031470542307943106, 0.006759278941899538, 0.004984476137906313, -0.006469442043453455, -0.004676748067140579, 0.0007232499774545431, -0.004648122470825911, -0.016545740887522697, -0.009868761524558067, 0.015973223373293877, 0.005063197109848261, -0.006576789077371359, 0.035009413957595825, -0.0011155136162415147, 0.02338731847703457, 0.02481861226260662, 0.018850121647119522, -0.008501877076923847, -0.027981767430901527, -0.026521850377321243, -0.025806203484535217, 0.021984651684761047, -0.0008534081280231476, -0.02395983599126339, -0.02666497975587845, 0.023759454488754272, -0.03724223002791405, -0.010484217666089535, 0.023258503526449203, 0.018893061205744743, 0.020281413570046425, 0.013747564516961575, -0.027724135667085648, 0.0006838894332759082, 0.008344435133039951, 0.015143074095249176, 0.0011271428084000945, -0.006866625510156155, 0.021669767796993256, 0.023616325110197067, 0.008222775533795357, 0.031202176585793495, -0.008788135834038258, -0.012058638967573643, -0.024432161822915077, 0.01985202729701996, 0.0015279047656804323, 0.022213660180568695, 0.019007563591003418, -0.0010600510286167264, -0.03480903431773186, -0.004716108553111553, -0.018463673070073128, -0.0371563546359539, 0.003531714202836156, 0.003961102105677128, 0.005141918081790209, -0.004937958903610706, 0.04036244750022888, -0.001746176858432591, 0.025820516049861908, 0.03589681535959244, -0.010262367315590382, -0.03815825656056404, 0.05456086993217468, 0.00996179599314928, -0.01902187615633011, 0.01937969960272312, 0.030343400314450264, 0.013912162743508816, -0.020252788439393044, -0.013232299126684666, 0.0016272006323561072, 0.010169332846999168, -0.026765169575810432, -0.005875455681234598, -0.025791890919208527, 0.008501877076923847, 0.015429332852363586, -0.016445551067590714, -0.00566434022039175, 0.00654458487406373, -0.0002650127571541816, 0.03317736089229584, 0.027852952480316162, 0.024374911561608315, 0.013518557883799076, -0.0077504487708210945, 0.0012863741721957922, 0.01634535938501358, 0.00149838428478688, -0.009296244941651821, 0.00969700701534748, 0.00456224475055933, -0.014184108935296535, 0.038015127182006836, -0.013998040929436684, -0.007124258205294609, 0.002871530596166849, 0.0029144692234694958, -0.027910202741622925, 0.03598269447684288, 4.4979486119700596e-05, 0.014262829907238483, 0.02126900665462017, 0.00775760505348444, -0.0342937670648098, 0.02971363253891468, 0.03621169924736023, 0.02261442132294178, -0.017318639904260635, -0.029341496527194977, 0.004733999725431204, -0.0365552082657814, -0.017118258401751518, -0.013117795810103416, 0.04084908589720726, -0.04442732036113739, 0.028554284945130348, 0.0034011087846010923, 0.03051515482366085, -0.014184108935296535, -0.006651931907981634, -0.006079414859414101, -0.009704163298010826, -0.006286952178925276, 0.03249033913016319, 0.02314399927854538, -0.004415537230670452, -0.018105849623680115, -0.01035540085285902, -0.0019877073355019093, -0.006469442043453455, 0.012316271662712097, 0.03317736089229584, 0.0028071224223822355, 0.006104462314397097, -0.012037170119583607, -0.04663150757551193, -0.03412201255559921, 0.025419754907488823, 0.02965638041496277, -0.014148326590657234, -0.010706068016588688, -0.030887290835380554, -0.004941537510603666, 0.007499972824007273, -0.016116352751851082, -0.047776542603969574, -0.004290299024432898, -0.0182776041328907, -0.0010591564932838082, -0.030744163319468498, -0.0006382669671438634, 0.026321468874812126, -0.005005945451557636, -0.0029806667007505894, -0.027953142300248146, 0.01882149651646614, 0.0008708520326763391, 0.002603163244202733, -0.013804815709590912, 0.004426272120326757, -0.0015100135933607817, 0.016760434955358505, -0.014134013094007969, -0.00137761898804456, 0.011607781983911991, 0.007915046997368336, -0.03177469223737717, -0.02156957797706127, 0.008136897347867489, -0.015601088292896748, 0.012015700340270996, -0.015858720988035202, 0.005639292299747467, 0.008272870443761349, -0.009890231303870678, -0.005442489869892597, 0.0026979863177984953, -0.03469453006982803, -0.004941537510603666, 0.004050557501614094, 0.003986149560660124, 0.02010965906083584, 0.0022847005166113377, 0.005338720977306366, -0.021140189841389656, -0.05038149654865265, -0.01455624494701624, -0.017891155555844307, -0.010369714349508286, 0.019737523049116135, -0.03575368598103523, 0.014463210478425026, -0.01766214892268181, 0.00884538795799017, -0.015314829535782337, -0.037442609667778015, 0.04059145599603653, -0.03349224478006363, -0.001712183584459126, 0.023244189098477364, 0.010548625141382217, 0.005166966002434492, -0.012466557323932648, 0.02012397162616253, -0.02148370072245598, 0.006190340034663677, -0.02155526541173458, -0.010276679880917072, -0.03403613343834877, 0.005886190105229616, 0.0005756479222327471, -0.017934095114469528, 0.01225902047008276, 0.03850176930427551, 0.029269931837916374, 0.03354949504137039, 0.0034207890275865793, -0.01829191856086254, -0.009739945642650127, -0.026507535949349403, -0.004275986459106207, 0.008215619251132011, -0.02864016219973564, -0.014785251580178738, 0.014398802071809769, 0.03658383712172508, -0.0261353999376297, 0.01497131958603859, 0.013611591421067715, -0.01801997236907482, -0.01090644858777523, -0.015572462230920792, 0.0006534744752570987, -0.014498992823064327, 0.01401950977742672, 0.002896578051149845, 0.001251486362889409, 0.005295782350003719, 0.016288109123706818, -0.02776707336306572, -0.03615444898605347, 0.006734231021255255, -0.015014258213341236, 0.005327986087650061, -0.014957006089389324, -0.017633523792028427, -0.069789819419384, -0.002536965999752283, -0.03214683011174202, 0.027924517169594765, -0.00010035820014309138, -0.011657876893877983, 0.0237165167927742, 0.0025852720718830824, -0.01583009399473667, -0.008609224110841751, -0.004061292391270399, -0.024446476250886917, -0.0029484624974429607, 0.010126394219696522, 0.0042938776314258575, 0.02013828605413437, 0.017905468121170998, -0.011829632334411144, -0.002107578096911311, 0.012702721171081066, 0.0036301156505942345, -0.02073942869901657, 0.02093980833888054, -0.0168463122099638, -0.03895978257060051, 0.028511345386505127, -0.002635367214679718, -0.01880718395113945, -0.02368788979947567, -0.02965638041496277, 0.005202748347073793, 0.0019966529216617346, -0.004723265301436186, -0.026908298954367638, -0.0058325170539319515, 0.01034108828753233, 0.020481795072555542, -0.006082993000745773, -0.00020384736126288772, -0.002481503412127495, 0.006755700334906578, 0.0029413059819489717, -0.015529523603618145, -0.004998789168894291, -0.001317683607339859, -0.007528598420321941, -0.005202748347073793, -0.033062856644392014, 0.009296244941651821, 0.008866856805980206, -0.0046874829567968845, 0.018134476616978645, -0.03240446001291275, -0.01469937339425087, -0.02529093809425831, 0.009067238308489323, 0.007678884081542492, -0.03455140069127083, 0.01663161814212799, -0.004970163106918335, 0.019565768539905548, 0.008301496505737305, 0.014541931450366974, 0.0011987074976786971, -0.023043809458613396, 0.021998966112732887, 0.030372027307748795, 0.036641087383031845, 0.0030665441881865263, -0.012037170119583607, 0.008788135834038258, 0.009990421123802662, 0.005768108647316694, 0.007557224482297897, 0.0005197380669414997, -0.006308421492576599, 0.009339183568954468, 0.01939401403069496, 0.017032381147146225, 0.00830865278840065, -0.03397888317704201, -0.00018506163905840367, 0.0023508979938924313, -0.007464190479367971, -0.011207019910216331, 0.002723034005612135, -0.01037687063217163, -0.027080053463578224, 0.011779537424445152, 0.0065660541877150536, 0.0419941209256649, -0.0013767244527116418, 0.023816706612706184, 0.01225902047008276, -0.011679346673190594, 0.04580136016011238, -0.0332346111536026, 0.018120162189006805, -0.014413115568459034, 0.0035764421336352825, 0.0044942582026124, -0.017934095114469528, 0.021369196474552155, -0.0014643911272287369, 0.008122584782540798, -0.01333964616060257, -0.0015636869939044118, -0.00899567361921072, 0.009632598608732224, -0.015243264846503735, -0.008144054561853409, -0.012151673436164856, -0.03629757836461067, 0.024747047573328018, -0.01577284373342991, -0.01469937339425087, 0.021326258778572083, 0.01877855695784092, -0.017862530425190926, 0.02483292482793331, -0.009603972546756268, 0.0258348286151886, -0.00606152368709445, -0.02563444897532463, -0.009761414490640163, -0.01510013546794653, 0.006920299027115107, 0.00828718300908804, 0.004705374129116535, 0.02862584963440895, -0.017934095114469528, -0.0006369251641444862, 0.01022658497095108, -0.0009804354049265385, 0.027623943984508514, 0.00537808146327734, 0.01630242168903351, -0.0013865645742043853, 0.029570503160357475, -0.031717441976070404, 0.02010965906083584, 0.0007321955636143684, -0.015472271479666233, -0.005467537324875593, -0.006601836532354355, 0.014470366761088371, -0.007514285389333963, -0.02020985074341297, -0.0018982517067342997, 0.010133550502359867, 0.016402611508965492, 0.01849229820072651, 0.027910202741622925, 0.017290012910962105, -0.026078149676322937, -0.011214176192879677, -0.002991401357576251, 0.01983771286904812, -0.007836326025426388, -0.008244244381785393, -0.017776653170585632, 0.013296707533299923, 0.02673654444515705, 0.005585618782788515, 0.009589659981429577, 0.005084666423499584, -0.017790965735912323, -0.01824897900223732, -0.009196054190397263, 0.0034082653000950813, 0.004859237931668758, -0.008559129200875759, -0.020496107637882233, -0.020768053829669952, 0.008473251946270466, -0.02347319759428501, 0.019937904551625252, -0.013518557883799076, 0.0028590066358447075, -0.008916951715946198, -0.021054312586784363, -0.011493278667330742, 0.006791482679545879, 0.006473020184785128, -0.010140706785023212, 0.003565707476809621, -0.02347319759428501, 0.006018585059791803, -0.023816706612706184, 0.007045537233352661, -0.009861605241894722, 0.02204190380871296, 0.00357107468880713, 0.0015815781662240624, 0.014534775167703629, 0.00282322452403605, 0.025491319596767426, 0.009890231303870678, -0.024160217493772507, -0.004666013643145561, -0.005030992906540632, -0.010448435321450233, 0.034207891672849655, 0.006923877168446779, -0.008394530043005943, 0.01929382234811783, -0.018735619261860847, 0.0074498774483799934, 0.002483292482793331, -0.008108272217214108, -0.010276679880917072, -0.005260000005364418, 0.012810067273676395, 0.02039591781795025, 0.019465576857328415, -0.021311944350600243, -0.010963700711727142, -0.03406476229429245, -0.00888117030262947, -0.025147808715701103, 0.01540070679038763, -0.006966816261410713, 0.01769077591598034, -0.009031455963850021, -0.00015453486412297934, 0.020868243649601936, 0.017604896798729897, -0.07465621829032898, 0.002943095052614808, -0.02237110212445259, 0.016774747520685196, 0.0112928980961442, -0.0008261241018772125, -0.005038149654865265, -0.0004121675156056881, 0.01960870623588562, 0.02803901955485344, -0.026292843744158745, 0.0321754552423954, 0.0035370816476643085, 0.0032007277477532625, -0.0011003060499206185, -0.0132179856300354, -0.00592912919819355, 0.011342993006110191, 0.02862584963440895, -0.02728043496608734, -0.007979455403983593, 0.013060543686151505, 0.024360597133636475, -0.010248053818941116, 0.012373523786664009, -0.005789577960968018, -0.001030530547723174, -0.030915917828679085, 0.0008305968949571252, 0.003451203927397728, -0.012373523786664009, 0.0019716054666787386, -0.003961102105677128, -0.028439780697226524, -0.010598720982670784, 0.0025781155563890934, -0.02965638041496277, 0.01962302066385746, -0.00830865278840065, 0.011378775350749493, 0.012423618696630001, 0.0016450918046757579, -0.021970339119434357, -0.01882149651646614, 0.0026067413855344057, -0.030915917828679085, -0.0020217006094753742, 0.011478966102004051, 0.00017018962535075843, -0.003325965953990817, -0.042080000042915344, -0.0027677619364112616, 0.011364461854100227, -0.02019553631544113, -0.00047858842299319804, -0.028826231136918068, 0.012287645600736141, 0.0043976460583508015, 0.019222257658839226, -0.013532870449125767, 0.00156547618098557, 0.0069346120581030846, -0.003318809438496828, 0.007872108370065689, 0.008630693890154362, 0.023015182465314865, 0.006218965630978346, 0.01983771286904812, 0.0019215102074667811, -0.0006297687068581581, -0.00039763093809597194, 0.002782074734568596, 0.0001552057801745832, 0.00802239403128624, -0.010791945271193981, -0.03784337267279625, 0.0006651037256233394, -0.01666024513542652, -0.00025338350678794086, 0.0022507074754685163, 0.007657414767891169, 0.01773371361196041, 0.01430576853454113, -0.01663161814212799, 0.013103482313454151, -0.02122606709599495, -0.02861153706908226, -0.005438911262899637, 0.023272816091775894, 0.0056464490480721, -0.005610666703432798, 0.007199401035904884, -0.031230801716446877, 0.015901658684015274, -0.020911183208227158, 0.022829115390777588, 0.019207945093512535, -0.05942726507782936, -0.001196918310597539, -0.016187917441129684, 0.0013284183805808425, -0.0013436258304864168, 0.01937969960272312, -0.04219450056552887, 0.03898840770125389, 0.015314829535782337, 0.011951291933655739, 0.00015911947411950678, 0.017633523792028427, 0.002884054323658347, -0.005496162921190262, -0.028754666447639465, -0.002817857079207897, 0.0370132252573967, 0.013311020098626614, -0.013540026731789112, -0.016731809824705124, -0.0021630406845360994, 0.009532407857477665, -0.0033689045812934637, 0.02122606709599495, 0.003624748205766082, 0.0030790679156780243, 0.00489502027630806, 0.003667687065899372, 0.0013624115381389856, -0.0018177414312958717, -0.00036207225639373064, 0.027323372662067413, 0.016560053452849388, -0.0002858112275134772, -0.017633523792028427, -0.035267047584056854, -0.026321468874812126, 0.012037170119583607, 0.013275237753987312, 0.014484680257737637, -0.013275237753987312, 0.0032901836093515158, -0.003953945357352495, -0.02395983599126339, 0.019737523049116135, -0.02695123665034771, 0.001438448904082179, 0.0015735271153971553, -0.011929823085665703, -0.0013427312951534986, -0.017862530425190926, 0.02071080170571804, 0.0010600510286167264, 0.01635967381298542, 0.007664571050554514, -0.0234159454703331, 0.0056464490480721, 0.0025280204135924578, 0.017547646537423134, -0.019551455974578857, -0.02806764468550682, -0.015357768163084984, 0.013912162743508816, 0.010935074649751186, -0.00832296535372734, -0.009503781795501709, -0.014269986189901829, -0.013160734437406063, 0.009897387586534023, 0.007607319392263889, 0.01796272024512291, -0.006297687068581581, -0.016288109123706818, 0.0026335781440138817, -0.03397888317704201, -0.020352978259325027, -0.005034571513533592, 0.015644026920199394, -0.015057196840643883, 0.03978992998600006, -0.029541876167058945, 0.03360674902796745, -0.0007169880555011332, 0.01144318375736475, -0.004716108553111553, -0.03020027093589306, -0.02776707336306572, -0.011085360310971737, -0.023029496893286705, -0.003648006822913885, -0.04445594549179077, 0.020367292687296867, -0.028668789193034172, 0.023272816091775894, -0.005778843536973, -0.0014795985771343112, -0.0033867957536131144, -0.02340163290500641, -0.020481795072555542, -0.005256421864032745, -0.00899567361921072, 0.04528609290719032, -0.016760434955358505, 0.008666476234793663, -0.005213482771068811, -0.017504706978797913, -0.00020026913261972368, -0.011063890531659126, -0.0023025916889309883, 0.010448435321450233, 0.04213725030422211, -0.03870214894413948, 0.006054367404431105, -0.01183678861707449, -0.0042294692248106, -0.0043439725413918495, -0.027037115767598152, -0.004154326394200325, -0.012309115380048752, -0.011743755079805851, 0.007843483239412308, 0.00317210191860795, 0.011049577966332436, -0.015057196840643883, 0.01305338740348816, 0.014413115568459034, 0.027738448232412338, -0.025247998535633087, -0.0017023434629663825, 0.02942737378180027, 0.016517115756869316, 0.012516653165221214, -0.030572406947612762, -0.016202230006456375, -0.008945577777922153, 0.01983771286904812, 0.0016415135469287634, 0.0062368568032979965, -0.0058038909919559956, 0.010548625141382217, -0.020367292687296867, 0.015529523603618145, 0.018735619261860847, -0.006845156196504831, -0.003939632326364517, -0.020324353128671646, 0.004275986459106207, 0.01686062477529049, 0.0017640680307522416, 0.004039823077619076, 0.013046231120824814, -0.03543880209326744, 0.000628874113317579, 0.005778843536973, -0.00742840813472867, 0.01850661262869835, -0.0016298843547701836, -0.004526462405920029, -0.0011101462878286839, 0.023573387414216995, 0.011579155921936035, -0.022471291944384575, 0.021970339119434357, -0.0026461018715053797, 0.00694534694775939, 0.022428352385759354, 0.0005899608950130641, 0.047289904206991196, -0.02700848877429962, 0.011915509589016438, 0.02531956322491169, -0.0034637278877198696, 0.006104462314397097, 1.8953443941427395e-05, -9.476721606915817e-05, 0.004862816073000431, -0.006050788797438145, -0.01937969960272312, -0.03864489868283272, -0.01183678861707449, -0.0018392108613625169, -0.026264216750860214, -0.009074394591152668, 0.009561033919453621, 0.013718938454985619, -0.0017640680307522416, -0.007564380764961243, 0.009196054190397263, -0.008916951715946198, -0.002730190521106124, 0.014914067462086678, -0.011371619068086147, 0.00564287044107914, -0.007671727798879147, -0.00883823074400425, -0.010684598237276077, -0.007585850078612566, 0.007886421866714954, -0.0010403706692159176, 0.0038573332130908966, 0.00035357396700419486, 0.0126884076744318, -0.00716004054993391, 0.006233278661966324, -0.02746650204062462, -0.0006579472683370113, -0.00010047002433566377, 0.010763319209218025, 0.0240170881152153, -7.396874570986256e-05, 0.021612515673041344, 0.008466094732284546, 0.020825305953621864, 0.010233741253614426, -0.015071509405970573, -0.008802448399364948, -0.009847292676568031, 0.0033241768833249807, -0.002603163244202733, 0.008258557878434658, 0.011092516593635082, 0.037442609667778015, 0.0016236223746091127, 0.00442985026165843, -0.00911017693579197, 0.022714611142873764, -0.03343499079346657, -0.0037356733810156584, 0.0005259999888949096, 0.016159292310476303, 0.0004669591726269573, 0.009875917807221413, -0.024646855890750885, -0.0005268945242278278, 0.018893061205744743, -0.021340571343898773, 0.001926877535879612, 0.017103945836424828, 0.0315743125975132, -0.02205621637403965, 0.025548571720719337, -0.00749281607568264, 0.00817267969250679, 0.0021988230291754007, 0.02616402693092823, -0.006294108461588621, 0.016216544434428215, -0.0018606801750138402, 0.009253306314349174, -0.0009679115610197186, 0.010126394219696522, -0.01170797273516655, 0.0011978128459304571, -0.0035835986491292715, 0.0006360305706039071, -0.013289550319314003, 0.01799134723842144, -0.007607319392263889, 0.020624924451112747, 0.001758700585924089, 0.026307156309485435, -0.017748026177287102, 0.012702721171081066, 0.021140189841389656, 0.023272816091775894, -0.01210157759487629, -0.02264304645359516, 0.0030325509142130613, -0.001405350281856954, -0.0026944081764668226, -0.006501646246761084, -0.03515254333615303, -0.004272407852113247, 0.013955101370811462, -0.004941537510603666, 0.01690356433391571, -0.0029860339127480984, -0.005077510140836239, -0.014477523043751717, 0.002536965999752283, -4.553858161671087e-05, 0.0043439725413918495, 0.004744734615087509, -0.025734638795256615, 0.0005407601711340249, 0.011478966102004051, -0.018334856256842613, -0.0016585101839154959, -0.017619211226701736, 0.022929305210709572, -0.006315578240901232, 0.0031488435342907906, 0.017919782549142838, 0.014413115568459034, -0.031001795083284378, -0.008058176375925541, 0.021712707355618477, 0.019694585353136063, 0.013697468675673008, 0.015472271479666233, 0.012709877453744411, -0.0033027073368430138, -0.01333964616060257, -0.0007505340036004782, -0.004154326394200325, 0.018749931827187538, 0.012709877453744411, 0.024689795449376106, -0.03020027093589306, -0.011013795621693134, -0.027638258412480354, 0.001035897876136005, 0.003229353576898575, -0.004769782070070505, -0.001880360534414649, 0.007943673059344292, -0.007657414767891169, 0.003218618920072913, -0.007850639522075653, 0.01739020273089409, -0.01022658497095108, 0.00844462588429451, 0.004462054464966059, -0.0163882989436388, 0.0029663536697626114, 0.03022889792919159, -0.017547646537423134, 0.013726094737648964, 0.0003419447166379541, -0.020009469240903854, -0.0002299013576703146, 0.008866856805980206, 0.0029896122869104147, -0.002200612099841237, 0.014391645789146423, -0.008516190573573112, -0.00941074825823307, 0.016474176198244095, 0.012330585159361362, -0.0059255510568618774, -0.017375890165567398, -0.0176764614880085, -0.018091537058353424, -0.009439374320209026, -0.0035012993030250072, 0.018435047939419746, 0.00910301972180605, -0.007303169928491116, -0.005270734429359436, -0.02428903430700302, -0.003392163198441267, 0.025477007031440735, 0.003211462404578924, -0.005574884358793497, -0.008365904912352562, 0.02557719685137272, -0.009167428128421307, -0.0010421598562970757, -0.005539102014154196, 0.021054312586784363, -0.003499510232359171, 0.008373061195015907, 0.017848217859864235, 0.013082013465464115, 0.00830865278840065, 0.005395972635596991, 0.018878748640418053, 0.00442985026165843, -0.03237583488225937, -0.004054136108607054, -0.019422639161348343, 0.024632543325424194, -0.018735619261860847, -0.013819129206240177, -0.01633104681968689, 0.019551455974578857, -0.018377795815467834, -0.011965605430305004, 0.024031400680541992, 0.007070584688335657, 0.0038644897285848856, 0.0012273333268240094, 0.01660299301147461, -0.006952503230422735, -0.006970394402742386, 0.014785251580178738, 0.007707510143518448, 0.0046731699258089066, 0.032289959490299225, 0.019150692969560623, -0.003592544235289097, -0.00639429921284318, 0.01360443513840437, 0.003291972680017352, -0.00911017693579197, -0.012974666431546211, -0.0321754552423954, -0.006977550685405731, 0.02451804094016552, -0.03163156285881996, 0.019508516415953636, 0.00020418281201273203, 0.002433197107166052, 0.004150748252868652, 0.005016680341213942, -0.0021988230291754007, -0.018864434212446213, 0.005166966002434492, -0.015128761529922485, -0.002703353762626648, 0.00897420383989811, -0.012187455780804157, 0.01713257096707821, -0.013597278855741024, 0.013160734437406063, -0.027895890176296234, 0.004125700797885656, -0.007557224482297897, 0.018964625895023346, 0.0043618637137115, 0.0066054146736860275, 0.00496300682425499, -0.00802955124527216, -0.01389069389551878, 0.002479714108631015, -0.00859491154551506, -0.028955046087503433, -0.009775727987289429, -0.004873550962656736, -0.011393087916076183, -0.009747101925313473, -0.03240446001291275, -0.02563444897532463, 0.022671673446893692, 0.011199863627552986, -0.021125877276062965, -0.00032204081071540713, 0.01538639422506094, -0.002596006728708744, 0.020911183208227158, 0.003198938677087426, -0.011765223927795887, 0.002334795892238617, -0.0013668843312188983, -0.006977550685405731, -0.027867265045642853, 0.00911017693579197, -0.009518095292150974, 0.01852092519402504, 0.02746650204062462, -0.0077218227088451385, 0.018721304833889008, 0.0031130611896514893, -0.026221279054880142, 0.006601836532354355, -0.007650258485227823, 0.02179858461022377, 0.01469937339425087, -0.0034064759965986013, 0.018163101747632027, -0.01936538703739643, 0.00979004055261612, 0.001985918264836073, 0.009382122196257114, -0.002195244887843728, 0.02235678769648075, -0.0022310272324830294, -0.004025510046631098, 0.0029001564253121614, -0.018306231126189232, -1.9358789359102957e-05, 0.0058969249948859215, -0.0006713656475767493, -0.006515958812087774, 0.019966529682278633, 0.004662435036152601, 0.018177414312958717, 0.001612887717783451, -0.01740451715886593, 8.04542942205444e-05, -0.005335142835974693, 0.005972067825496197, 0.014248516410589218, 0.00566076161339879, 0.002052115509286523, 0.015686966478824615, -0.00354781630448997, -0.010061985813081264, 0.016416924074292183, 0.0019555033650249243, 0.009947482496500015, 0.004866394214332104, 0.0004723265301436186, 0.0027140884194523096, 0.005038149654865265, -0.010069143027067184, 0.006530271843075752, -0.002837537322193384, -0.01877855695784092, -0.008745197206735611, 0.029770882800221443, 0.005943442229181528, -0.0007245918386615813, 0.01770508848130703, -0.02755238115787506, -0.015500897541642189, 0.020095346495509148, -0.0030361292883753777, 0.0015601088525727391, 0.004626653157174587, 0.0011817108606919646, 0.019165005534887314, -0.015243264846503735, 0.0034869862720370293, -0.005961333401501179, 0.004716108553111553, 0.018993251025676727, 0.001084204064682126, -4.640518454834819e-05, 0.015171700157225132, 0.020567672327160835, -0.011600625701248646, -0.00885970052331686, -0.0058575645089149475, -0.015228952281177044, 0.03125942870974541, 0.020624924451112747, -0.005353034008294344, 0.0031273739878088236, 0.00654458487406373, -0.010899292305111885, -0.0034082653000950813, 0.015558149665594101, 0.004537197295576334, 0.0017765917582437396, 0.00564287044107914, -0.015672652050852776, -0.0008019710658118129, 0.019751835614442825, -0.03589681535959244, 0.005252843257039785, 0.0182776041328907, 0.01198707427829504, -0.02015259861946106, 0.024861549958586693, -0.006333469413220882, 0.029012298211455345, -0.00017477423534728587, 0.00012848086771555245, -0.003333122469484806, -0.022442666813731194, 0.005102557595819235, -0.021426448598504066, 0.005471115466207266, -0.007192244753241539, 0.001645986340008676, 0.014799564145505428, -0.02290068008005619, 0.0002446615544613451, -0.008115428499877453, 0.017633523792028427, -0.012466557323932648, 0.010276679880917072, -0.01551521010696888, -0.021669767796993256, 0.017046693712472916, 0.00025137074408121407, -0.0023956256918609142, 0.0027409251779317856, -0.01794840767979622, 0.007192244753241539, 0.013532870449125767, 0.005753795616328716, 0.0047662039287388325, -0.001218387740664184, 0.0182776041328907, -0.019207945093512535, -0.011342993006110191, 0.01227333303540945, -0.021641142666339874, -0.0018857278628274798, -0.017032381147146225, 0.01690356433391571, -0.016173604875802994, -0.006852312944829464, 0.01145749632269144, 0.010648815892636776, -0.009475156664848328, 0.026536162942647934, -0.03970405459403992, -0.0058289384469389915, -0.015915973111987114, -0.022242285311222076, -0.022485604509711266, -0.0066089928150177, -0.026221279054880142, -0.0039754146710038185, -0.0126884076744318, -0.008201305754482746, -0.010276679880917072, -0.006358516868203878, 0.0435112901031971, 0.0038644897285848856, -0.016731809824705124, -0.012130203656852245, 0.01933676190674305, -0.00048798127681948245, 0.01740451715886593, 0.020095346495509148, -0.002791020320728421, -0.002950251568108797, -0.015915973111987114, -0.018105849623680115, -0.02010965906083584, -0.0005644659977406263, 0.012659781612455845, -0.004590870812535286, -0.010634503327310085, 0.022757550701498985, 0.012394992634654045, -0.01988065242767334, 0.01577284373342991, 0.009532407857477665, 0.014999945648014545, 0.023831019178032875, 0.021297631785273552, -0.005650027189403772, 0.011829632334411144, 0.00469463923946023, -0.013575809076428413, 0.01064165960997343, 0.003243666607886553, 0.005202748347073793, -0.014184108935296535, -0.006444394588470459, -0.0011226700153201818, -0.0014134013326838613, 0.02347319759428501, 0.002468979451805353, 0.011564843356609344, -0.0037106256932020187, 0.0026872516609728336, 7.436011946992949e-05, 0.010212271474301815, -0.016960816457867622, 0.014048135839402676, 0.018134476616978645, 0.011385931633412838, 0.007313904352486134, -0.019966529682278633, 0.01022658497095108, -0.010863509960472584, -0.0038716462440788746, -0.018334856256842613, 0.025734638795256615, -0.016502803191542625, -0.007192244753241539, 0.013210829347372055, -0.013482775539159775, 0.008086802437901497, -0.0002663545892573893, -0.024704108014702797, -0.006347781978547573, 0.014742312952876091, -0.0058325170539319515, 0.012860163114964962, 0.0077647618018090725, 0.004862816073000431, 0.02182720974087715, -0.002842904767021537, -0.00125685369130224, 0.01527189090847969, 0.03644070774316788, 0.02373082935810089, -0.020481795072555542, 0.014942693524062634, -0.013582965359091759, -0.0019948638509958982, 0.01933676190674305, 0.018978938460350037, -0.027709823101758957, 0.0023652107920497656, -0.002082530641928315, 0.0009777516825124621, 0.00884538795799017, -0.018449360504746437, -0.028253713622689247, -0.007102788891643286, 0.011464652605354786, -0.0089885164052248, -0.0023598435800522566, -0.013260925188660622, 0.0013266291934996843, -0.007406938821077347, -0.01430576853454113, 0.0264359712600708, 0.006422924809157848, -0.0005474693607538939, 0.01388353668153286, -0.0007854217546992004, -0.02640734612941742, -0.002730190521106124, -0.008723727427423, 0.018721304833889008, 0.014957006089389324, 0.024918802082538605, 0.020052406936883926, 0.0063298908062279224, 0.01658868044614792, 0.03160293772816658, 0.013511400669813156, 0.009589659981429577, -0.01485681626945734, 0.0015270101139321923, -0.014262829907238483, 0.008544815704226494, 0.00046203911188058555, -0.0013659897958859801, 0.014742312952876091, 0.007199401035904884, 0.003225775435566902, -0.00654458487406373, 0.005553415045142174, -0.005821782164275646, 0.021340571343898773, -0.0016674557700753212, -0.002501183655112982, -0.01551521010696888, 0.020825305953621864, 0.005485428497195244, 0.004311768803745508, 0.01374040823429823, 0.012573904357850552, -0.0019232992781326175, 0.027037115767598152, -0.007650258485227823, -0.0026657823473215103, 0.004465632606297731, 0.019222257658839226, 0.0019286666065454483, -0.0038143943529576063, 0.0035030883736908436, -0.0163167342543602, 0.01717551052570343, 0.010698911733925343, -0.0046731699258089066, 0.004415537230670452, 0.019751835614442825, 0.015114448964595795, 0.019680270925164223, -0.0016826632199808955, -0.009911700151860714, 8.912032353691757e-05, 0.00639429921284318, 0.007664571050554514, -0.005299360491335392, -0.0036551631055772305, 0.004154326394200325, -0.010799101553857327, 0.02692261151969433, 0.019408326596021652, 0.0016343571478500962, 0.0029878229834139347, -0.010562938638031483, -0.008115428499877453, 0.0035102448891848326, -0.021082937717437744, 0.0022507074754685163, 0.0034565713722258806, 0.0026675714179873466, -0.01854955032467842, -0.0019250883487984538, 0.004998789168894291, 0.030457904562354088, 0.020367292687296867, 0.014148326590657234, -0.02911248989403248, -0.00995463877916336, 0.008924108929932117, -0.002588850213214755, -0.004637387581169605, -0.013418367132544518, -0.005181278567761183, 0.00012669175339397043, 0.01009061187505722, -0.017633523792028427, -0.004730421584099531, 0.031717441976070404, 0.007134993094950914, -0.00025897446903400123, 0.023602012544870377, -0.011672190390527248, 0.015143074095249176, 0.00606152368709445, 0.03105904720723629, 0.00714214937761426, -0.0030468639452010393, -0.01307485718280077, -0.0047268434427678585, 0.007664571050554514, -0.011478966102004051, 0.00729601364582777, -0.0234159454703331, -0.020252788439393044, -0.0012899523135274649, -0.0032937617506831884, 0.017347265034914017, 0.006641197018325329, 0.001031425199471414, 0.0073425304144620895, 0.0013758299173787236, 0.01937969960272312, -0.02373082935810089, 0.00187320401892066, -0.0006834421656094491, 0.005356612149626017, 0.007245918270200491, -0.0028071224223822355, 0.016273794695734978, -0.009883075021207333, -0.018692679703235626, 0.02204190380871296, 0.026006584987044334, -0.008101115003228188, 0.002386680105701089, -0.007335374131798744, -0.002791020320728421, 0.006437237840145826, -0.02317262440919876, -0.0009741734247654676, -0.010985169559717178, -0.0037678773514926434, 0.005750217474997044, 0.027938829734921455, 0.016187917441129684, 0.003166734706610441, -0.02045316994190216, 0.0021648299880325794, 0.009890231303870678, 0.030944542959332466, -0.01882149651646614, -0.01183678861707449, -0.012545278295874596, 0.001652248203754425, 0.01292457152158022, -0.015558149665594101, -0.009725632146000862, -0.010899292305111885, 0.011128298938274384, 0.019236570224165916, 0.0017417040653526783, -0.005732326302677393, 0.002850061049684882, 0.010026203468441963, 0.00017712244880385697, 0.01130721066147089, 0.0007930254796519876, -0.003590754931792617, -0.0014035612111911178, 0.010520000010728836, -0.01852092519402504, 0.009768570773303509, -0.028754666447639465, 0.009031455963850021, 0.020352978259325027, 0.005342299118638039, 0.015314829535782337, 0.008687945082783699, 0.007106367032974958, 0.006637618876993656, 0.016932189464569092, -0.021054312586784363, -0.012988978996872902, 0.0012738503282889724, 0.024661170318722725, -0.008151210844516754, -0.025562884286046028, 0.016989441588521004, -0.030085768550634384, 0.005939863622188568, -0.0008592227823100984, -0.015744216740131378, -0.033635374158620834, -0.022972244769334793, 0.01073469314724207, 0.025963645428419113, -0.033377740532159805, 0.015873033553361893, 0.020267101004719734, -0.009646911174058914, -0.014742312952876091, -0.003109482815489173, 0.027165930718183517, -0.011622094549238682, 0.014613496139645576, -4.620950130629353e-05, -0.01388353668153286, 0.0015896292170509696, -0.0011593468952924013, 0.0005783316446468234, -0.04187961667776108, -0.015343455597758293, -0.0014482890255749226, -0.0006190339918248355, -0.02672223001718521, -1.5501009329454973e-05, -0.00469463923946023, 0.002810700563713908, -0.017318639904260635, -0.00926046259701252, -0.009797196835279465, -0.03941779583692551, -0.023859646171331406, -0.011056734248995781, -0.022142095491290092, 0.014727999456226826, 0.01905050314962864, -0.009968952275812626, -0.008415999822318554, -0.032833848148584366, -0.002810700563713908, -0.03249033913016319, 0.004340394400060177, -0.007786231115460396, 0.0034279455430805683, 0.013869224116206169, -0.004268829710781574, 0.01776234060525894, -0.02315831184387207, -0.0065660541877150536, -0.00012188350228825584, -0.005914816167205572, 0.01443458441644907, -0.009911700151860714, -0.01717551052570343, -0.0015896292170509696, -0.009883075021207333, 0.04090633988380432, -0.027609631419181824, -0.012309115380048752, 0.017318639904260635, -0.002222081646323204, 0.008351591415703297, -0.0074212513864040375, 0.004569401033222675, -0.0030808569863438606, -0.008272870443761349, 0.0010591564932838082, 0.01296035386621952, 0.005546258296817541, -0.001505540800280869, 0.00830865278840065, -0.0063191563822329044, 0.014269986189901829, -0.0036748433485627174, -0.0026926188729703426, -0.00727812247350812, 0.013854911550879478, -0.017776653170585632, 0.011715129017829895, -0.005961333401501179, -0.00994032621383667, -0.02238541468977928, -0.02755238115787506, 0.0004202185373287648, 0.008587755262851715, -0.01403382234275341, -0.0007742397719994187, 0.02506193146109581, -0.012996135279536247, 0.016817687079310417, -0.009446530602872372, 0.0061724488623440266, 0.009496625512838364, 0.012115891091525555, -0.0059219724498689175, 0.015171700157225132, 0.027652570977807045, -0.01717551052570343, -0.00982582289725542, 0.013039074838161469, 0.007514285389333963, 0.024890176951885223, -0.020911183208227158, -0.006244013551622629, -0.013039074838161469, 0.0030933809466660023, 0.004651700612157583, -0.015128761529922485, -0.002361632650718093, 0.00829434022307396, 0.018105849623680115, -0.02096843533217907, 0.005163387395441532, -0.012359210290014744, -0.028439780697226524, -0.02102568745613098, -0.007256652694195509, 0.011765223927795887, -0.004122122190892696, 0.017647836357355118, -0.0043189250864088535, 0.0034225780982524157, -0.0256058219820261, 0.01743314228951931, -0.018921686336398125, 0.007131414953619242, 0.024560978636145592, 5.9208545280853286e-05, 0.02156957797706127, 0.011521904729306698, 0.010655972175300121, -0.004000462591648102, -0.03572506085038185, -0.003606857033446431, 0.03332049027085304, 0.018592489883303642, 0.0032740815076977015, 0.0020306461956351995, 0.007600163109600544, -0.0047912513837218285, 0.017590584233403206, 0.01037687063217163, 0.016130667179822922, -0.014685060828924179, 0.006891673430800438, 0.01687493920326233, 0.012430774979293346, 0.018435047939419746, 0.02345888316631317, -0.00729601364582777, -0.007714666426181793, 0.019494203850626945, -0.010484217666089535, 0.00586114265024662, 0.002075374126434326, -0.004952271934598684, 0.026321468874812126, -0.012631156481802464, -0.005553415045142174, 0.008494720794260502, -0.01988065242767334, 0.0011951292399317026, 0.000903056119568646, -0.010548625141382217, -0.02778138779103756, -0.02483292482793331, 0.014219890348613262, -0.013876380398869514, -0.007635945454239845, 0.0031345305033028126, 0.0036551631055772305, 0.007822013460099697, 0.013318176381289959, 0.008473251946270466, -0.013897850178182125, -0.015601088292896748, -0.004669591784477234, -0.012795754708349705, -0.005671496503055096, -0.0007281700382009149, 0.022270910441875458, -0.0259063933044672, -0.017361577600240707, 0.0012684829998761415, -0.0037213603500276804, 0.009439374320209026, -0.012602530419826508, 0.020539047196507454, -0.017819590866565704, -0.007957986555993557, 0.016803374513983727, 0.009396434761583805, 0.004612340126186609, 0.026507535949349403, -0.017619211226701736, 0.01929382234811783, 0.001779275480657816, 0.009761414490640163, 0.01747608184814453, -0.009482312947511673, 0.004168639425188303, 0.028182148933410645, 0.023215563967823982, -0.006845156196504831, 0.004869972821325064, -0.004458475857973099, 0.00979004055261612, 0.0225857961922884, 0.006247591692954302, 0.013926476240158081, -0.0012801121920347214, -0.0242460947483778, -0.017619211226701736, 0.008201305754482746, 0.0035209795460104942, 0.003585387719795108, 0.018420733511447906, 0.002195244887843728, -0.008866856805980206, 0.008337278850376606, -0.010834883898496628, 0.021097250282764435, 0.007707510143518448, -0.0020574829541146755, -0.028268026188015938, -0.016803374513983727, 0.008015237748622894, 0.006805795710533857, 0.01390500646084547, 0.014842502772808075, -0.0011405611876398325, -0.001023374148644507, 0.023029496893286705, -0.0157871562987566, 0.005467537324875593, -0.007514285389333963, 0.007260231301188469, 0.00619391817599535, 0.000515712599735707, -0.00941074825823307, -0.0031470542307943106, -0.0038143943529576063, -0.005256421864032745, -0.008831074461340904, -0.019122067838907242, -0.0062404354102909565, -0.04333953559398651, -0.002429618965834379, -0.000715646252501756, 0.007124258205294609, -0.01794840767979622, -0.006981129292398691, 0.00279817683622241, 0.0032078842632472515, -0.00037437243736349046, -0.007088475860655308, 0.015958910807967186, 0.00394678907468915, -0.009682693518698215, -0.030429277569055557, 0.0006861258298158646, 0.01852092519402504, -0.012609686702489853, -0.02149801328778267, -0.009267618879675865, -0.0003204753447789699, -0.006684136111289263, 0.0074498774483799934, 0.0070419590920209885, -0.029312869533896446, 0.009267618879675865, -0.01766214892268181, -0.001919721020385623, 0.024632543325424194, -0.005807469133287668, -0.010706068016588688, -0.015085822902619839, -0.021383509039878845, -0.007650258485227823, 0.005811047274619341, 0.05330133065581322, 0.0038573332130908966, 0.010562938638031483, -0.005574884358793497, -0.025562884286046028, 0.017576271668076515, 0.005385237745940685, -0.013547183014452457, 0.007299591787159443, 0.015973223373293877, -0.012752816081047058, -0.0043869116343557835, 0.009289088658988476, 0.00030482056899927557, 0.013439835980534554, 0.0040290881879627705, -0.016774747520685196, -0.013625903986394405, -0.006966816261410713, 0.011715129017829895, -0.01747608184814453, -0.0039754146710038185, 0.002903734566643834, -0.025677386671304703, 0.010591564700007439, -0.014670748263597488, -0.0009204999660141766, 0.0031130611896514893, -0.03234720975160599, -0.009618285112082958, -0.006440815981477499, -0.003907428588718176, -0.0247756727039814, 0.017003754153847694, 0.016445551067590714, 0.016016162931919098, -0.021684080362319946, -0.006820108741521835, -0.02065354958176613, 0.013024761341512203, -0.0008726411615498364, -0.03314873203635216, 0.02645028568804264, -0.004909333307296038, 0.018120162189006805, 0.015372081659734249, 0.004447741433978081, -0.013497088104486465, 0.007016911171376705, 0.001511802664026618, -0.025706013664603233, 0.00015632397844456136, -0.008301496505737305, -0.012738503515720367, 0.011407401412725449, -0.006913142744451761, 0.0112928980961442, 0.005267156288027763, -0.007979455403983593, 0.0050417277961969376, -0.00042312583536840975, 0.016159292310476303, -0.008008081465959549, -0.012545278295874596, 0.0037642992101609707, -0.006122353486716747, -0.008602067828178406, -0.009246149100363255, -0.012466557323932648, 0.02968500554561615, 0.009818666614592075, 0.0030289727728813887, -0.02832527831196785, 0.007915046997368336, -0.004136435221880674, 0.007106367032974958, -0.002481503412127495, 0.0321754552423954, -0.00200559850782156, 0.011994230560958385, 0.008687945082783699, 0.00829434022307396, 0.0022185032721608877, 0.0003124243230558932, 0.006530271843075752, 0.004733999725431204, 0.014785251580178738, -2.896130899898708e-05, 0.02065354958176613, -0.020810993388295174, 0.0040434012189507484, -0.0006342414999380708, 0.002442142693325877, -0.010684598237276077, -0.007678884081542492, -0.0015538468724116683, -0.016431238502264023, 0.020911183208227158, -0.012573904357850552, 0.019665958359837532, 0.004648122470825911, 0.0062905303202569485, -0.010276679880917072, 0.013697468675673008, -0.0010421598562970757, 0.0011790271382778883, 0.02045316994190216, 0.007063428405672312, 0.0035764421336352825, 0.009396434761583805, -0.032547589391469955, -0.022414039820432663, -0.005839673336595297, 0.011994230560958385, 0.02501899190247059, 0.014942693524062634, -0.016545740887522697, 0.004945115651935339, 0.015257577411830425, 0.030715536326169968, 0.0028590066358447075, 0.007943673059344292, -0.029026610776782036, -0.017576271668076515, -0.003785768523812294, -0.0020217006094753742, -0.00833012256771326, -0.008415999822318554, 0.005886190105229616, 0.011543373577296734, 0.003961102105677128, 0.0264359712600708, 0.012795754708349705, 0.023301441222429276, -0.013833441771566868, -0.00033903741859830916, 0.019422639161348343, 0.020882558077573776, -0.007485659793019295, 0.008144054561853409, 0.004193686880171299, -0.0039253197610378265, -0.002486870624125004, -0.0037714557256549597, -0.006430081557482481, -0.017247075214982033, 0.00967553723603487, 0.0031345305033028126, -0.013275237753987312, -0.019751835614442825, 0.0019107754342257977, -0.0010126393754035234, -0.014105387032032013, 0.022256597876548767, -0.009997578337788582, -0.006587523501366377, 0.00991885643452406, 0.009439374320209026, -0.005156231112778187, -0.009367809630930424, -0.018449360504746437, 0.01635967381298542, -0.0002299013576703146, 0.009460843168199062, 0.0047912513837218285, 0.01497131958603859, 0.01907912828028202, 0.013926476240158081, -0.010426965542137623, -0.01360443513840437, 0.014713686890900135, -0.002168408129364252, -0.0016772958915680647, 0.00495942821726203, 0.006931033916771412, -0.011385931633412838, 0.002830380806699395, 0.010276679880917072, 0.013182204216718674, -0.008745197206735611, -0.02645028568804264, -0.00884538795799017, 0.02202759124338627, -0.014119700528681278, -0.011450340040028095, -0.0008001819369383156, 0.007657414767891169, -0.007521442137658596, 0.007707510143518448, -0.002467190381139517, 0.011478966102004051, 0.010083455592393875, 0.009983264841139317, 0.00645870715379715, 0.028110584244132042, 0.006995441857725382, 0.03211820498108864, 0.004061292391270399, 0.022986557334661484, 0.003050442086532712, 0.023845333606004715, 0.02229953743517399, -0.00579315610229969, 0.002460033865645528, -0.0037965034134685993, -0.009117333218455315, -0.0020896869245916605, 0.006158135831356049, -0.005524788983166218, -0.017833903431892395, -0.015658339485526085, -0.0012622210197150707, -0.008773823268711567, 0.006770013365894556, -0.014277142472565174, 0.000250923476414755, -0.00387880252674222, -0.0002802202361635864, 0.007872108370065689, 0.003928897902369499, 0.011936979368329048, -0.004140013363212347, 0.0050417277961969376, -0.0031202177051454782, 0.010019047185778618, 0.009797196835279465, -0.012208924628794193, -0.0005921972915530205, -0.0040183537639677525, 0.004254516679793596, -0.011393087916076183, 0.00401477562263608, 0.002943095052614808, -0.020023781806230545, -0.001384775503538549, -0.0033599589951336384, -0.004676748067140579, 0.009897387586534023, 0.020567672327160835, -0.01713257096707821, -0.002454666653648019, -0.02285774052143097, 0.001787326531484723, -0.028225088492035866, -0.0046874829567968845, 0.021183129400014877, -0.022743238136172295, -0.002535176696255803, 0.0066877142526209354, 0.015644026920199394, 0.009475156664848328, -0.003023605328053236, -0.020095346495509148, 0.013103482313454151, 0.004666013643145561, 0.008129741065204144, -0.018678367137908936, 0.02864016219973564, -0.007224448956549168, -0.006490911357104778, 0.00592912919819355, 0.006397877354174852, 0.022814802825450897, -0.00802955124527216, -0.018334856256842613, 0.015686966478824615, 0.022270910441875458, -0.02476136013865471, 0.004540775436908007, -0.009310557506978512, 0.00394678907468915, -0.009582502767443657, -0.03206095099449158, -0.011106830090284348, -0.002517285756766796, 0.02610677480697632, -0.011414557695388794, 0.00926046259701252, 0.036898721009492874, 0.0077647618018090725, 0.0050667752511799335, 0.03083004057407379, 0.0015869454946368933, 0.004068448673933744, 0.021297631785273552, 0.006748544052243233, 0.003279448952525854, 0.009561033919453621, -0.0028196461498737335, 0.02102568745613098, 0.006015006452798843, -0.008544815704226494, -0.019980842247605324, -0.007392625790089369, -0.008000925183296204, 0.016230856999754906, -0.0011360883945599198, 0.011178393848240376, 0.016688870266079903, -0.016459863632917404, -0.014091074466705322, 0.011521904729306698, -0.001692503341473639, -0.02046748250722885, -0.019565768539905548, -0.005231373943388462, -0.0081941494718194, 0.01403382234275341, -0.00641219038516283, 0.011936979368329048, 0.030085768550634384, -0.011672190390527248, 0.01963733322918415, 0.010562938638031483, 0.03211820498108864, -0.010112081654369831, -0.018163101747632027, 0.0069739725440740585, -0.001217493205331266, -0.004218734800815582, -0.03131667897105217, 0.0013749353820458055, 0.009997578337788582, 0.0033009182661771774, 0.00025852720136754215, 0.0007800544262863696, 0.00729243503883481, -0.013124952092766762, 0.025562884286046028, -0.005617822986096144, -0.030372027307748795, 0.013554340228438377, -0.008716571144759655, -0.014126856811344624, 0.013210829347372055, -0.00979004055261612, 0.003411843441426754, -3.776711309910752e-05, -0.005052462685853243, 0.00483061233535409, 0.006837999913841486, 0.00442985026165843, -0.004626653157174587, 0.0008194149704650044, -0.0034547823015600443, 0.0003137661551591009, 0.04041970148682594, -0.00330628571100533, 0.025677386671304703, -0.012087265029549599, -0.00913880206644535, -0.03792925179004669, -0.01267409510910511, 0.0033402787521481514, -0.004007618874311447, -0.007771918084472418, 0.0069632381200790405, 0.012459401041269302, 0.026307156309485435, 0.013897850178182125, 0.003365326439961791, -0.0018374216742813587, 0.0010412653209641576, -0.016989441588521004, -0.0112928980961442, 0.028182148933410645, 0.005306516773998737, 0.021641142666339874, -0.014477523043751717, -0.02146938629448414, 0.009890231303870678, -0.007678884081542492, 0.022814802825450897, 0.00804386381059885, 0.002109367400407791, 0.02778138779103756, 0.012430774979293346, 0.004966584965586662, -0.012974666431546211, 0.022213660180568695, 0.008258557878434658, -0.009281931445002556, 0.0058038909919559956, 0.010856353677809238, 0.012080108746886253, 0.004258095286786556, -0.019809087738394737, 0.0033474352676421404, 0.010727536864578724, 0.007843483239412308, -0.031746067106723785, 0.016932189464569092, 0.010290993377566338, 0.006176027003675699, 0.008165523409843445, 0.009603972546756268, -0.006995441857725382, 0.009868761524558067, -0.01306769996881485, 0.003426156472414732, 0.00727812247350812, 0.024174530059099197, 0.0027409251779317856, 0.0039789932779967785, -0.007557224482297897, -0.0007326428312808275, -0.01963733322918415, -0.0031685237772762775, -0.0004911122377961874, 0.024861549958586693, 9.93518260656856e-05, 0.004519306123256683, -0.014742312952876091, 0.011486122384667397, -0.004311768803745508, 0.014534775167703629, 0.007635945454239845, -0.0182060394436121, 0.0054245986975729465, -0.028983673080801964, -0.0009491258533671498, -0.030601033940911293, -0.03329186141490936, -0.004483523778617382, -0.015457958914339542, 0.005084666423499584, -0.008888326585292816, 0.008702258579432964, -0.005746639333665371, -0.010061985813081264, 0.0015592142008244991, -0.01293888408690691, 0.007174353580921888, 0.0011861836537718773, 0.025190748274326324, 0.004462054464966059, -0.024417849257588387, -0.0023723673075437546, 0.0039253197610378265, 0.020281413570046425, 0.007614476140588522, 0.008351591415703297, 0.0010698911501094699, -0.0008690629038028419, 0.013210829347372055, 0.0077218227088451385, 0.016288109123706818, -0.0011736598098650575, -0.012631156481802464, -0.0026514693163335323, -0.013404053635895252, -0.02778138779103756, -0.008051020093262196, -0.01824897900223732, -0.011872570961713791, -0.004623074550181627, 0.0003359064576216042, 0.006505224388092756, -0.010104925371706486, 0.0011334047885611653, 0.00982582289725542, 0.032289959490299225, 0.011865414679050446, 0.015057196840643883, 0.005893346853554249, -0.001271166605874896, -0.004021931905299425, 0.012216080911457539, 0.04336816072463989, 0.008723727427423, 0.009496625512838364, 0.004970163106918335, 0.0005877244984731078, 0.020524734631180763, -0.007678884081542492, 0.009024298749864101, -0.009861605241894722, -0.027609631419181824, 0.0005045306170359254, 0.02617833949625492, 0.013876380398869514, -0.009561033919453621, 0.013060543686151505, -0.012860163114964962, 0.011278584599494934, 0.002635367214679718, -0.00926046259701252, 0.011622094549238682, -0.007621632423251867, 0.006118775345385075, 0.010591564700007439, 0.0011217754799872637, -0.01457055751234293, -0.002762394491583109, 0.013396897353231907, 0.013511400669813156, -0.0073282173834741116, -0.016731809824705124, -0.006383564323186874, 0.015930285677313805, -0.016545740887522697, 0.0033671155106276274, -0.004576557781547308, -0.0029144692234694958, -0.009890231303870678, 0.012187455780804157, -0.00559635367244482, -0.006519537419080734, 0.010384026914834976, -0.018077224493026733, 0.008086802437901497, -0.026550475507974625, -0.009611128829419613, 0.012080108746886253, -0.01903619058430195, -0.021082937717437744, -0.004759047646075487, 0.0015082244062796235, -0.0077218227088451385, -0.0001040482529788278, -0.005363768432289362, 0.030973169952630997, 0.005091823171824217, 0.009797196835279465, -0.02237110212445259, -0.004107809625566006, 0.0034136325120925903, 0.00319714960642159, 0.03214683011174202, -0.00200738781131804, 0.0023186937905848026, 0.028497032821178436, -0.0031273739878088236, 0.01630242168903351, 0.001062734634615481, 0.014076761901378632, 0.00912448950111866, 0.019122067838907242, -0.009231836535036564, -0.008265714161098003, -0.0066197277046740055, 0.018062911927700043, -0.019479891285300255, -0.021054312586784363, -0.026249904185533524, 0.003193571465089917, 0.0123878363519907, 0.024188842624425888, -0.01766214892268181, 0.023644952103495598], "8fac4829-a6e7-4159-8bb2-10e1859025b0": [-0.014084135182201862, -0.006352344993501902, -0.012283959425985813, 0.05222579464316368, 0.010442400351166725, -0.01925705373287201, 0.02647155337035656, 0.035534508526325226, -0.015973975881934166, 0.01568429172039032, 0.011835639365017414, -0.01703614741563797, 0.010311353020370007, 0.003067541169002652, 0.006341998931020498, 0.0600886307656765, -0.034513719379901886, -0.002491622930392623, 0.03341016173362732, -0.024857601150870323, 0.016236070543527603, -0.01739480346441269, -0.031120283529162407, -0.01231844536960125, -0.0017829329008236527, 0.02114689350128174, -0.007393826264888048, 0.012801251374185085, -0.036638062447309494, 0.0012915055267512798, 0.01388411596417427, -0.006890328601002693, -0.0009250903967767954, 0.008787065744400024, 0.03641735389828682, -0.015794647857546806, 0.001822591875679791, 0.0036831186152994633, -0.03434818610548973, -0.016953380778431892, 0.015463580377399921, 0.0222366563975811, 0.02427823469042778, -0.0014975601807236671, 0.003983147908002138, 0.016511958092451096, -0.021491754800081253, 0.02631981298327446, -0.0003927107900381088, -0.0025209360755980015, -0.023685073480010033, -0.022484956309199333, 0.013587535358965397, 0.025492146611213684, 0.009345741011202335, -0.08215975761413574, 0.018443182110786438, 0.018319031223654747, -0.0129185039550066, -0.05661242827773094, 0.012773661874234676, 0.0024054076056927443, -0.009490583091974258, 0.006010932382196188, -0.016594724729657173, 0.03735537454485893, -0.02060891129076481, -0.01775345951318741, -0.03360328450798988, 0.01499456912279129, 0.011339039541780949, 0.049273781478405, 0.009435405023396015, 0.018553538247942924, 0.05575717240571976, -0.030844394117593765, 0.0468735471367836, 0.025919774547219276, 0.004255588166415691, -0.012421904131770134, 0.009676807560026646, -0.022691873833537102, 0.04171442240476608, -0.01685681939125061, 0.047370146960020065, 0.02827862650156021, 0.013663404621183872, -0.029878782108426094, 0.013449590653181076, -0.02968565933406353, -0.010125127620995045, -0.00632475595921278, -0.001134593621827662, -0.012766765430569649, 0.007104142569005489, 0.018429387360811234, 0.012504670768976212, -0.00012759867240674794, 0.00379692274145782, -0.04621141403913498, 0.023216061294078827, -0.0037038102746009827, 0.026195663958787918, -0.017229270190000534, 0.03914865478873253, -0.013263365253806114, -0.0012354656355455518, -0.007952501066029072, -0.029409771785140038, 0.051453303545713425, 0.01055965293198824, -0.022912584245204926, -0.006586850620806217, -0.00012986182991880924, -0.06301305443048477, -0.017118914052844048, -0.03412747383117676, 0.014318641275167465, -0.052115436643362045, -0.02596115879714489, 0.029244236648082733, 0.011966686695814133, 0.002417477546259761, -0.021712467074394226, -0.03614146262407303, 0.013194393366575241, 0.007821453735232353, 0.02736819162964821, 0.004572860896587372, 0.005090152844786644, 0.0027726846747100353, -0.0013440968468785286, 0.02040199376642704, 0.009814752265810966, 0.019463971257209778, 0.020967567339539528, 0.02356092259287834, 0.05553646385669708, 0.023243650794029236, 0.010683802887797356, -0.07597983628511429, -0.03371363878250122, 0.01664990372955799, 0.004717702511698008, 0.011139019392430782, -0.017601720988750458, -0.0055315750651061535, 0.040307387709617615, -0.011270066723227501, 0.003845203435048461, -0.060585230588912964, -0.057826340198516846, -0.024650685489177704, -0.007311059162020683, 0.035948339849710464, -0.049715202301740646, 0.027064714580774307, 0.027754437178373337, -0.0042107561603188515, 0.020291637629270554, 0.04698390141129494, -0.008642223663628101, 0.0006362691055983305, 0.0540742501616478, 0.03735537454485893, 0.012766765430569649, 0.046432122588157654, 0.013077139854431152, -0.011649414896965027, 0.018015554174780846, 0.03294115141034126, -0.054129429161548615, 0.029133882373571396, 0.008780168369412422, -0.017960375174880028, -0.019974365830421448, 0.027230247855186462, 0.019601915031671524, -0.01466350257396698, 6.638580089202151e-05, 0.00661788834258914, 0.008504279889166355, 0.0014975601807236671, -0.008690504357218742, 0.0028295868542045355, -0.0045142341405153275, 0.026333607733249664, 0.0321410708129406, -0.03266526013612747, 0.002733025699853897, -0.001701890490949154, 0.009138824418187141, -0.01333923451602459, -0.015725674107670784, -0.0034779261332005262, -0.00023903198598418385, 0.02905111573636532, 0.0019294989760965109, -0.018994959071278572, 0.013677198439836502, -0.007255881559103727, -0.04441813379526138, -0.025492146611213684, 0.021077921614050865, -0.0005828155553899705, 0.03145134821534157, -0.015973975881934166, -0.011325244791805744, 0.03881758823990822, -0.034844785928726196, 0.04709425941109657, -0.03145134821534157, -0.02271946147084236, -0.02677503041923046, 0.018484564498066902, 0.011228683404624462, -0.011145916767418385, 0.03550691902637482, -0.0009949248051270843, -0.041935134679079056, -0.00011229545634705573, 0.005952306091785431, 0.005976445972919464, -0.039286598563194275, -0.04527338966727257, -0.011276964098215103, -0.03261008486151695, -0.005500537808984518, -0.021050333976745605, -0.018456976860761642, 0.012477081269025803, -0.0022622901014983654, -0.006552364677190781, 0.005462602712213993, -0.028168270364403725, 0.02905111573636532, 0.04789433628320694, -0.009262974373996258, -0.021050333976745605, 0.010414810851216316, -0.013104729354381561, 0.0038383062928915024, 0.030927160754799843, -0.017863815650343895, 0.009752677753567696, 0.01757413148880005, 0.0360586978495121, 0.024719657376408577, 0.003367570461705327, 0.023933373391628265, -0.0020467517897486687, -0.005541921127587557, -0.016263658180832863, 0.0013690993655472994, -0.04549410194158554, 0.032527316361665726, 0.03812786564230919, 0.005766080692410469, 0.015670496970415115, -0.010814850218594074, -0.013980676420032978, 0.03294115141034126, -0.017270652577280998, 0.04648730158805847, 0.020181283354759216, 0.00202778447419405, -0.0005155676044523716, 0.012028762139379978, -0.01062172744423151, 0.01785002090036869, 0.012704689987003803, -0.0007858526660129428, -0.011242478154599667, 0.010180305689573288, 0.004027979914098978, -0.02091238833963871, 0.02580941841006279, -0.008166315034031868, 0.025395585224032402, 0.006486841011792421, 0.003907278645783663, 0.02863728255033493, 0.022181477397680283, 0.0011475259670987725, 0.006514429580420256, 0.021202072501182556, -0.02211250551044941, -0.012401212006807327, -0.04320422187447548, -0.02902352623641491, 0.026485348120331764, 0.009200898930430412, 0.0022709115874022245, 0.003257214790210128, 0.015146307647228241, -0.018070731312036514, -0.0058350530453026295, 0.010628624819219112, 0.0015415300149470568, 0.027202658355236053, -0.041328176856040955, -0.02542317472398281, 0.00944919977337122, -0.026664674282073975, 0.05330176278948784, -0.021671082824468613, 0.028775226324796677, 0.02208491787314415, 0.01207704283297062, 0.03277561813592911, 0.010601036250591278, -0.03040297143161297, -0.00733175128698349, -0.008704299107193947, -0.0028106195386499166, -0.006848945282399654, 0.007373134605586529, -0.015932591632008553, -0.028071708977222443, -0.00995959434658289, 0.021822823211550713, 0.0012992649571970105, -0.02575424127280712, 0.04248690977692604, 0.0390658862888813, -0.014966979622840881, 0.010738980956375599, -0.023298829793930054, -0.0105182696133852, -0.01994677633047104, -0.02718886360526085, -0.024678273126482964, -0.0021157239098101854, 0.004579757805913687, -0.06334412097930908, -0.01739480346441269, -0.02833380363881588, -0.03716225177049637, 0.04000391066074371, -0.028223447501659393, 0.014925596304237843, -0.01989159919321537, 0.021477961912751198, 0.028554514050483704, 0.0037520909681916237, 0.018498359248042107, -0.06174396723508835, -0.005400527734309435, -0.033189449459314346, 0.00991821102797985, 0.000878965191077441, -0.0076697152107954025, 0.028775226324796677, -0.006090250331908464, -0.0026623292360454798, -0.01637401431798935, -0.010794158093631268, 0.02160211093723774, 0.03169964998960495, -0.011994276195764542, -0.007090348284691572, -0.01637401431798935, 0.021809028461575508, 0.004086606204509735, 0.018636304885149002, -0.060585230588912964, 0.0035313796252012253, -0.013759966008365154, -0.012463287450373173, -0.022609107196331024, 0.0012027038028463721, 0.0077248928137123585, 0.01637401431798935, 0.02575424127280712, -0.020319227129220963, -0.009035365656018257, 0.049384135752916336, -0.008014576509594917, 0.014649707823991776, 0.025864597409963608, 0.003465855959802866, -0.002070892136543989, -0.014953185804188251, 0.017739664763212204, 0.0024088560603559017, -0.002238149754703045, 0.01604294776916504, -0.0020726164802908897, 0.00260715140029788, -0.0054384623654186726, -0.01550496369600296, -0.01604294776916504, -0.004231447819620371, -0.0042107561603188515, -0.013711685314774513, -0.005762632004916668, -0.01351856254041195, -0.03462407365441322, -0.009525069035589695, -0.012435697950422764, 0.008973291143774986, -0.01057344675064087, 0.011456292122602463, -0.00803526770323515, 0.032196249812841415, 0.003621043637394905, -0.03147893771529198, -0.005990240722894669, 0.02476104162633419, 0.008076651021838188, -0.011835639365017414, -0.008062857203185558, -0.023478155955672264, 0.027547519654035568, 0.030954750254750252, 0.010552755557000637, -0.022153889760375023, 0.026154279708862305, -0.021133100613951683, 0.022691873833537102, 0.02142278291285038, 0.020112311467528343, 0.009469890967011452, 0.00997338816523552, 0.026361197233200073, 0.02169867232441902, -0.01416690181940794, 0.010614831000566483, 0.027326809242367744, 0.015491168946027756, 0.010932102799415588, 0.015725674107670784, -0.004069363232702017, 0.004586655180901289, -0.020084721967577934, -0.008800860494375229, -0.011408011429011822, -0.01802934892475605, 0.04350769892334938, -0.035562098026275635, -0.029078703373670578, 0.03106510452926159, 0.0010190651519224048, 0.024029934778809547, -0.06974475085735321, 0.00858014915138483, -0.06505463272333145, 0.0018553537083789706, -7.409129466395825e-05, -0.008097343146800995, 0.025174874812364578, 0.0015553244156762958, -0.009076748974621296, -0.027919970452785492, 0.03914865478873253, 0.004931516479700804, 0.0279475599527359, -0.017767254263162613, 0.057991873472929, -0.05492950603365898, -0.0012604680377990007, -0.025133490562438965, 0.019601915031671524, 0.004797020461410284, 0.010435502976179123, 0.0036279407795518637, 0.02716127596795559, -0.013077139854431152, -0.016429191455245018, 0.02866487018764019, 0.021326221525669098, -0.014773857779800892, 0.009097441099584103, 0.028140680864453316, 0.007531770505011082, -0.004814263433218002, -0.02265048958361149, -0.01571188122034073, 0.005979894660413265, -0.021891795098781586, 0.031892772763967514, 0.005566061474382877, 0.020719265565276146, -0.014153107069432735, -0.005810912698507309, 0.03283079341053963, 0.0013018513564020395, 0.013077139854431152, 0.029520126059651375, -0.014911802485585213, -0.03194795176386833, 0.0015527380164712667, 0.05421219393610954, 0.00928366556763649, 0.014035854488611221, 0.006079904735088348, 0.011849434114992619, -0.0129185039550066, 0.03363087400794029, -0.03178241848945618, -0.007345545571297407, -0.006531673017889261, -0.004593552555888891, 0.0016355046536773443, -0.027409575879573822, 0.032554905861616135, -0.009545760229229927, 0.043700821697711945, -0.006166120059788227, -0.00590402539819479, -0.025768036022782326, 0.05487432703375816, -0.0516740158200264, 0.04524580016732216, 0.0001723228779155761, -0.013028859160840511, 0.02211250551044941, -0.040997110307216644, 0.049053069204092026, -0.00205020047724247, 0.01342889852821827, -0.038955532014369965, -0.0071179368533194065, 0.009518171660602093, -0.009559554979205132, -0.012166706845164299, -0.012194295413792133, -0.038238219916820526, 0.04204548895359039, -0.03945213183760643, 0.02085721120238304, 0.0018001759890466928, -0.03131340444087982, -0.021864205598831177, 0.0020484761334955692, -0.013932396657764912, 0.013001270592212677, 0.011097636073827744, 0.019477766007184982, 0.011304553598165512, -0.05721938610076904, 0.01107004750519991, -0.017118914052844048, -0.01466350257396698, -0.006479943636804819, 0.013642712496221066, -0.0013311646180227399, 0.01634642481803894, 0.004890133161097765, 0.00862153246998787, 0.008800860494375229, 0.011421806178987026, 0.010214791633188725, -0.0025519735645502806, -0.01305644866079092, -0.0013915153685957193, 0.031092694029211998, 0.018484564498066902, -0.016994765028357506, -0.012849532067775726, -0.005255686119198799, 0.033934351056814194, -0.014635913074016571, 0.0064902896992862225, 0.002850278513506055, -0.02106412686407566, -0.01448417454957962, 0.013525459915399551, -0.025050723925232887, 0.01573946885764599, 0.01485662441700697, -0.011483880691230297, 0.032858382910490036, -0.02996154874563217, -0.01580844074487686, 0.033575695008039474, -0.00581436138600111, 0.035948339849710464, -0.02356092259287834, 0.008028371259570122, -0.016305042430758476, 0.025230051949620247, 0.015932591632008553, -0.012201192788779736, -0.010194099508225918, 0.012401212006807327, 0.009531966410577297, -0.0040521202608942986, -0.03233419358730316, 0.003996942192316055, 0.00024786905851215124, 0.009628526866436005, -0.040997110307216644, -0.01393929310142994, -0.0016044671647250652, 0.04254208877682686, 0.006807561963796616, 0.005945408716797829, 0.0552881620824337, -0.0028899377211928368, 0.018043143674731255, 0.020691677927970886, 0.011732181534171104, -0.0038210630882531404, -0.034927550703287125, 0.017918992787599564, -0.020512349903583527, 0.02037440426647663, 0.003153756493702531, 0.009587143547832966, 0.0042038592509925365, -0.011952891945838928, 0.050735991448163986, -0.00784214586019516, -0.012525361962616444, 0.022664284333586693, -0.012746073305606842, 0.021712467074394226, 0.005200508050620556, -0.02812688611447811, 0.01775345951318741, 0.0007543840911239386, 0.013366824015974998, 0.005207405425608158, -0.011621825397014618, 0.018443182110786438, 0.0143462298437953, 0.004759085830301046, 0.012394314631819725, 0.011504572816193104, -0.034265417605638504, -0.05404666066169739, -0.0037072589620947838, -0.008476690389215946, 0.0034055053256452084, -0.017105119302868843, 0.02725783735513687, 0.004272831603884697, -0.01296678464859724, -0.006566158961504698, -0.0077179959043860435, -0.022347012534737587, 0.00039874587673693895, 0.03603110834956169, -0.012490876019001007, -0.012780559249222279, 0.010000977665185928, -0.006000586319714785, -0.0002896834921557456, -0.017422392964363098, -0.01053206343203783, 0.006359242368489504, -0.01973986066877842, 0.010945897549390793, 0.0032882525119930506, -0.014180696569383144, 0.008931907825171947, -0.014125518500804901, 0.025740446522831917, 0.01700855977833271, 0.0438663549721241, -0.050432514399290085, 0.004131438210606575, 0.003652081126347184, 0.022043533623218536, -0.0065489159896969795, 0.022705666720867157, -0.00574538903310895, 0.026195663958787918, 0.010325146839022636, -0.003291700966656208, -0.037576086819171906, 0.03953490033745766, 0.004655627533793449, -0.01820867694914341, 0.0033830893225967884, -0.00926987174898386, -0.009083646349608898, 0.015767058357596397, -0.022857407107949257, -0.018098320811986923, -0.0249403677880764, -0.040997110307216644, 0.008090445771813393, -0.0238919910043478, 0.0007461936329491436, 0.013759966008365154, -0.028802815824747086, -0.01838800497353077, -0.012904709205031395, -0.004121092613786459, 0.005976445972919464, 0.01430484652519226, 0.04519062489271164, 0.007345545571297407, -0.010366530157625675, 0.011952891945838928, 0.005900576710700989, -0.011125225573778152, -0.04654248058795929, -0.028140680864453316, -0.02932700514793396, -0.021298633888363838, -0.00993200484663248, -0.0063971769995987415, 0.006724795326590538, -0.017256859689950943, -0.023864401504397392, 0.01448417454957962, -0.006252335384488106, -0.008187007158994675, 0.04314904659986496, 0.015256663784384727, 0.02292637899518013, -0.009007777087390423, 0.013139215297996998, -0.019036343321204185, 0.0357552170753479, -0.007180012296885252, 0.026223253458738327, 0.03100992739200592, 0.028237242251634598, -0.010897616855800152, 0.00010006366210291162, -0.03192036226391792, -0.04828058183193207, 0.01943638175725937, -9.785439033294097e-05, 0.01624986343085766, 0.011145916767418385, 0.009518171660602093, 0.007248984184116125, 0.005062563810497522, 0.012159809470176697, -0.013090934604406357, 0.023988552391529083, -0.016622314229607582, 0.024361001327633858, 0.05357765033841133, -0.018553538247942924, 0.004800469148904085, -0.020208870992064476, -0.0016786123160272837, -0.04513544589281082, -0.006921366322785616, -0.019422588869929314, 0.029851192608475685, 0.007186909206211567, -0.01736721396446228, -0.02307811751961708, 0.01568429172039032, -0.02241598442196846, 0.01568429172039032, -0.017353421077132225, -0.019491560757160187, -0.007635228801518679, 0.055839940905570984, -0.014746269211173058, 0.013932396657764912, 0.05150848254561424, -0.025257641449570656, 0.010973486118018627, 0.012759868055582047, -0.031506527215242386, -0.015284252353012562, -0.017684487625956535, 0.010373427532613277, 0.03801750764250755, -0.004138335585594177, 0.0070144785568118095, 0.040969520807266235, 0.016305042430758476, 0.006676514632999897, 0.06168878823518753, -0.028720049187541008, 0.008455999195575714, -0.015932591632008553, -0.03261008486151695, -0.030816804617643356, -0.004438364878296852, -0.044335369020700455, -0.012249473482370377, 0.048363346606492996, 0.01820867694914341, 0.008455999195575714, -0.04742532595992088, 0.03374122828245163, -0.0013854802818968892, -0.009325048886239529, 0.006931711919605732, -0.0028140682261437178, -0.005431565456092358, -0.019367409870028496, -0.010228586383163929, 0.012884018011391163, -0.011608030647039413, -0.009897518903017044, -0.005910922773182392, -0.0017148227198049426, 0.014966979622840881, 0.0327480286359787, -0.007862837053835392, 0.009235385805368423, 0.02547835186123848, 0.029547715559601784, -0.009159515611827374, -0.003962456248700619, 0.004741842858493328, -0.030127082020044327, 0.019670888781547546, 0.006128184963017702, -0.020664088428020477, -0.035231027752161026, 0.01841559261083603, -0.03710707649588585, -0.00806975457817316, 0.034872375428676605, 0.046376947313547134, 0.007814557291567326, 0.042955923825502396, -0.05255686119198799, 0.003067541169002652, 0.022609107196331024, -0.00410040095448494, -0.0009923384059220552, -0.0067558325827121735, 0.03283079341053963, 0.010738980956375599, 0.022098710760474205, 0.025009341537952423, -0.0030227091629058123, -0.01749136485159397, -0.026071513071656227, 0.016111919656395912, 0.0009794060606509447, 0.007766276132315397, 0.011732181534171104, 0.0017967273015528917, -0.02830621413886547, 0.012746073305606842, -0.00844220444560051, -0.02787858620285988, 0.002786479191854596, 0.015780853107571602, 0.010828644968569279, -0.017987964674830437, 0.03787956386804581, -0.0007496422622352839, 0.019753655418753624, 0.021671082824468613, 0.011111430823802948, -0.019463971257209778, 0.03713466227054596, 0.0069006746634840965, -0.020443378016352654, 0.009897518903017044, 0.01790519803762436, -0.006173016969114542, -0.0018950127996504307, -0.016387809067964554, 0.0024192018900066614, 0.02707850933074951, -0.01571188122034073, -0.011394216679036617, -0.006848945282399654, -0.020802032202482224, -0.01203565951436758, -0.00944919977337122, -0.020360611379146576, -0.007849043235182762, -0.005072909407317638, 0.01785002090036869, 0.0585988312959671, 0.01452555786818266, 0.0198364220559597, 0.0003151170094497502, 0.0013837559381499887, 0.02409890666604042, -0.016180891543626785, -0.00470390822738409, 0.021022744476795197, -0.011380422860383987, 0.0014673847472295165, 0.028416570276021957, -0.03611387312412262, 0.0031692753545939922, 0.02442997321486473, 0.012394314631819725, -0.034513719379901886, 0.03238937258720398, 0.002022611442953348, 0.023602306842803955, 0.01676025800406933, 0.014953185804188251, -0.01598776876926422, 0.008821551688015461, 0.026209458708763123, 0.029547715559601784, -0.011608030647039413, -0.03443095088005066, 0.01589120924472809, -0.020746855065226555, -0.009559554979205132, -0.004490093793720007, 0.035203441977500916, -0.025312818586826324, 0.03368604928255081, 0.0074214148335158825, 0.01986400969326496, -0.004638384561985731, 0.0016415397403761744, 0.017449980601668358, 0.002286430448293686, -0.01940879411995411, 0.03363087400794029, 0.025257641449570656, -0.005707454401999712, -0.01616709679365158, -0.009828547015786171, -0.012884018011391163, -0.006586850620806217, 0.0306512713432312, 0.016291247680783272, 0.019243260845541954, -0.014194490388035774, -0.009594040922820568, -0.05975756421685219, -0.023685073480010033, 0.038955532014369965, 0.03263767436146736, -0.024885190650820732, -0.003462407272309065, -0.012028762139379978, 0.005876436363905668, -0.0013630642788484693, -0.011290758848190308, -0.03578280657529831, -3.1468593078898266e-05, -0.020719265565276146, -0.008242185227572918, -0.022553928196430206, -0.0005780737265013158, 0.03136858344078064, -0.006769627332687378, -0.0031589295249432325, -0.04016944393515587, 0.03368604928255081, -0.0033555002883076668, -0.012642614543437958, 0.0032813551370054483, 0.008938804268836975, 0.004607346840202808, 0.0075731538236141205, 0.007276573218405247, -0.004121092613786459, -0.002179523464292288, 0.010159613564610481, -0.019450176507234573, -0.0016958554042503238, 0.01485662441700697, 0.002000195439904928, -0.005772978067398071, 0.01826385408639908, 0.0035658658016473055, -0.014760063029825687, 0.00696964655071497, -0.025285229086875916, 0.01754654198884964, -0.0366656519472599, -0.00866981316357851, -0.005735043436288834, -0.014180696569383144, -0.0005509158945642412, -0.009345741011202335, -0.005838501732796431, -0.02815447561442852, -0.03912106528878212, -0.014470379799604416, -0.02529902383685112, -0.01767069287598133, 0.00759384548291564, -0.022374600172042847, 0.0265957023948431, -0.002839932683855295, 0.020264049991965294, -0.021105511114001274, -0.012752970680594444, 0.027547519654035568, -0.04190754517912865, 0.01721547544002533, 0.0034175754990428686, 0.007159320637583733, 0.009111234918236732, 0.001965709263458848, 0.014249668456614017, -0.02310570701956749, 0.009062955155968666, -0.021891795098781586, -0.02025025524199009, -0.021740056574344635, -0.015546347014605999, 0.006545467302203178, -0.00951127428561449, -0.0022588414140045643, 0.045990701764822006, 0.01802934892475605, 0.017229270190000534, 0.004393532872200012, -0.0558951199054718, -0.014966979622840881, -0.04811504855751991, -0.006090250331908464, 0.011504572816193104, -0.01550496369600296, -0.011766667477786541, 0.018525948747992516, 0.03368604928255081, -0.02820965275168419, 0.014842829667031765, 0.018801838159561157, -0.006583401933312416, -0.003072714200243354, -0.01647057570517063, -0.007635228801518679, -0.002955461386591196, 0.00853186845779419, -0.00799388438463211, 0.005914370995014906, 0.021008949726819992, 0.009483685716986656, -0.005845399107784033, -0.029547715559601784, 0.011145916767418385, -0.010635522194206715, 0.0034261969849467278, -0.01688440889120102, -0.020677883177995682, -0.05870918557047844, -0.014373818412423134, -0.024678273126482964, 0.03346534073352814, 0.006117839366197586, -0.00692481454461813, 0.03531379625201225, 0.006931711919605732, 0.01187012530863285, -0.009290562942624092, 0.008642223663628101, -0.01736721396446228, -0.010132024995982647, 0.01751895435154438, 0.015229074284434319, 0.026250841096043587, 0.011649414896965027, -0.02361610159277916, 0.003193415468558669, 0.011890817433595657, 0.007207600865513086, -0.012842634692788124, 0.0387624092400074, 0.002013989957049489, -0.05189472809433937, 0.01664990372955799, -0.004214204847812653, -0.023395389318466187, -0.010670008137822151, -0.030761627480387688, -0.00942161027342081, 0.004396981559693813, -0.0042590368539094925, -0.04110746458172798, -0.02114689350128174, 0.004138335585594177, 0.0169809702783823, -0.015284252353012562, -0.012263267301023006, -0.006266129668802023, 0.004290074575692415, -0.006614439655095339, -0.017022352665662766, 0.006193708628416061, 0.001986401155591011, 0.002564043737947941, -0.014566941186785698, -0.02193317748606205, 0.004910824820399284, 0.009587143547832966, 0.0062454380095005035, 0.017270652577280998, -0.021229662001132965, -0.01961570978164673, -0.022553928196430206, -0.007628331892192364, 0.001250122208148241, -0.021133100613951683, 0.015973975881934166, -0.018291443586349487, 0.05997827649116516, 0.009704397059977055, 0.008366335183382034, 0.0054832943715155125, -0.018374210223555565, 0.005117741413414478, -0.007400723174214363, 0.034596484154462814, 0.008511176332831383, -0.01790519803762436, 0.015132513828575611, 0.006973095238208771, 0.003027882194146514, 0.009276769123971462, 0.0005246202345006168, -0.011049355380237103, 0.01619468629360199, 0.008042165078222752, 0.005607444792985916, 0.02322985604405403, -0.024361001327633858, 0.00040693633491173387, 0.00510049844160676, 0.009945799596607685, -0.010359632782638073, -0.004279728513211012, -0.032913561910390854, -0.020333021879196167, 0.004117643926292658, 0.003224453190341592, 0.02863728255033493, 0.006376485340297222, 0.01808452606201172, 0.008269773796200752, 0.003062368370592594, 0.05661242827773094, -0.02578183077275753, 0.030458148568868637, -0.012290856800973415, 0.006493737921118736, -0.016415396705269814, -0.013028859160840511, 0.019822627305984497, -0.0005737629835493863, 0.023754045367240906, -0.0026588805485516787, -0.011497675441205502, -0.002826138399541378, 0.02328503504395485, -0.0067006549797952175, -0.0076697152107954025, -0.0021553831174969673, -0.028237242251634598, 0.03266526013612747, -0.0012121874606236815, -0.006310961674898863, 0.015573935583233833, 0.0032313503324985504, -0.008793963119387627, 0.026181869208812714, -0.004093503579497337, 0.026885386556386948, 0.001154423225671053, -0.03070645034313202, -0.01790519803762436, -0.002358851255849004, -0.0003138237807434052, -0.008656018413603306, -0.016787847504019737, 0.017767254263162613, -0.025312818586826324, -0.0003379640693310648, -0.014760063029825687, -0.004517682828009129, 0.017477570101618767, -0.01187012530863285, -0.0007711960352025926, -0.0005767805268988013, 0.024747246876358986, -0.034541305154561996, -0.005003937520086765, -0.01263571809977293, -0.012732278555631638, -0.013697890564799309, -0.017408598214387894, 0.018498359248042107, -0.011849434114992619, -0.01200117263942957, -0.003089957172051072, 0.011704592034220695, 0.006052315700799227, -0.0024864498991519213, 0.015132513828575611, 0.028582103550434113, -0.027754437178373337, -0.032554905861616135, -0.007966295816004276, 0.01905013807117939, -0.004217653535306454, -0.013773759827017784, -0.013001270592212677, 0.01775345951318741, 0.02716127596795559, 0.007076553534716368, 0.01282883994281292, 0.0014889385784044862, 0.005900576710700989, -0.023685073480010033, -0.039976321160793304, -0.009007777087390423, 0.010421708226203918, -0.00018309979350306094, -0.015573935583233833, -0.019243260845541954, 0.021891795098781586, -0.00799388438463211, 0.014539351686835289, -0.003362397663295269, 0.011649414896965027, 0.010566550306975842, -0.01393929310142994, 0.01296678464859724, 0.010807952843606472, -0.009435405023396015, 0.004717702511698008, 0.010180305689573288, -0.01187012530863285, -0.0009716466884128749, -0.0162222757935524, -0.0014837656635791063, -0.0274923425167799, 0.016636108979582787, -0.003924521617591381, 0.004103849176317453, 0.01062172744423151, -0.006645476911216974, 0.010656214319169521, 0.00937332957983017, -0.022760845720767975, -0.01667749136686325, -0.005721248686313629, 0.0036348379217088223, 0.04107987880706787, -0.0043073175475001335, -0.015132513828575611, 0.018498359248042107, -0.03360328450798988, -0.00019516993779689074, 0.009173310361802578, -0.03981078788638115, -0.006200606003403664, 0.008235287852585316, 0.003103751689195633, 0.013304748572409153, 0.004690113477408886, -0.012387417256832123, -0.0019967469852417707, -0.025340408086776733, 0.00043581845238804817, -0.039259009063243866, 0.03832098841667175, -0.009145721793174744, 0.007435209583491087, -0.008469793014228344, -0.006521326955407858, 0.012690895237028599, 0.010676905512809753, -0.04185236617922783, -0.012959887273609638, -0.0013449590187519789, 0.025216257199645042, 0.017712075263261795, -0.01273917593061924, -0.00036253544385544956, 0.008780168369412422, 0.0238919910043478, 0.0250921081751585, -0.011745975352823734, 0.015601525083184242, -0.006383382715284824, -0.00456596352159977, -0.002272635931149125, 0.0010078571503981948, -0.007835248485207558, 0.0034899963065981865, 0.015601525083184242, -0.03738296404480934, -0.005997138097882271, -0.005845399107784033, 0.01754654198884964, 0.010725186206400394, -0.003690015757456422, -0.010959692299365997, -0.014249668456614017, -0.020236460492014885, -0.004969451110810041, 0.0077731735073029995, -0.01874665915966034, 0.0020019197836518288, -0.02320226840674877, -0.022609107196331024, 0.0007910255808383226, 0.019160494208335876, -0.03175482898950577, 0.015394608490169048, -0.007524873595684767, 0.015132513828575611, 0.01093900017440319, 0.00862153246998787, -0.02154693379998207, -0.02838898077607155, 0.020001955330371857, -0.01057344675064087, -0.008207698352634907, 0.009497479535639286, -0.011683900840580463, -0.010601036250591278, -0.03683118522167206, -0.014511763118207455, -0.007814557291567326, -0.019284643232822418, 0.0017829329008236527, -0.025616297498345375, 0.00840082112699747, 0.0021536587737500668, 0.008193904533982277, -0.016305042430758476, -0.007952501066029072, 0.004790123552083969, -0.01518769096583128, -0.0010466540697962046, 0.014566941186785698, 0.01767069287598133, -0.002603702712804079, 0.013959985226392746, 0.02547835186123848, -0.020567527040839195, -0.010152716189622879, 0.01084933616220951, -0.008662915788590908, 0.007138628512620926, 0.023064322769641876, -0.029189059510827065, 0.008821551688015461, -0.025188669562339783, -0.00023364352819044143, 0.016580931842327118, 0.0005970411002635956, 0.012277062050998211, 0.008131829090416431, -0.010249277576804161, 0.005262583494186401, 0.0031606536358594894, -0.02205732837319374, -0.009518171660602093, 0.01664990372955799, 0.0007453314610756934, 0.01950535550713539, 0.026154279708862305, -0.03299632668495178, 0.008428409695625305, -0.016263658180832863, 0.008269773796200752, 0.01716029830276966, -0.04014185443520546, 0.004859095439314842, -0.01107004750519991, 0.007400723174214363, 0.008283568546175957, 0.002207112265750766, -0.028940759599208832, 0.025850802659988403, 0.011883920058608055, 0.03448612987995148, 0.00926987174898386, -0.00027093166136182845, 0.003024433506652713, 0.003089957172051072, -0.018112115561962128, -0.01254605408757925, 0.02998913824558258, 0.017449980601668358, -0.02376784011721611, -0.002089859452098608, -0.009759574197232723, 0.025795625522732735, -0.018608715385198593, 0.015394608490169048, -0.0004862544301431626, -0.0026726750656962395, 0.014511763118207455, 0.005576407071202993, 0.008738785050809383, -0.00808354839682579, 0.002964082872495055, 0.029161470010876656, 0.013042653910815716, -0.005028077866882086, -0.00793180987238884, -0.032223839312791824, 0.0030916815157979727, 0.0074214148335158825, 0.010090641677379608, 0.012415006756782532, -0.01823626458644867, -0.0007410207181237638, 0.0006414420204237103, -0.02698194794356823, 0.022029738873243332, -0.02022266574203968, -0.0002431272150715813, -0.0117183867841959, -0.001283746212720871, -0.0034675803035497665, -0.015022157691419125, -0.0011889092857018113, 0.010263072326779366, 0.009097441099584103, 0.027478547766804695, -0.014939391054213047, -0.0016070535639300942, 0.0189259871840477, 0.01122178602963686, -0.041686832904815674, -0.012573642656207085, -0.00808354839682579, 0.001151836710050702, 0.004890133161097765, -0.002210560953244567, -0.021491754800081253, 0.0081111378967762, -0.01853974349796772, -0.005400527734309435, 0.00017383164959028363, 0.019698476418852806, 0.0007690406637266278, -0.026154279708862305, 0.003952110186219215, -0.03638976439833641, -0.021643495187163353, -0.02496795728802681, 0.02866487018764019, -0.019781243056058884, 0.0351482629776001, -0.00565572502091527, 0.025974951684474945, -0.009745780378580093, -0.002903732005506754, -0.0005513469805009663, -0.00565572502091527, -0.007380031514912844, -0.010987280867993832, -0.008656018413603306, 0.007697304245084524, -0.03581039607524872, 0.013532357290387154, -0.017836226150393486, 0.007017927244305611, -0.00724208727478981, 0.012097734026610851, 0.0017424116376787424, -0.031230637803673744, -0.029575305059552193, 0.00877327099442482, 0.005766080692410469, 0.030209848657250404, -0.018829425796866417, -0.005117741413414478, 0.007690406870096922, -0.0205813217908144, -0.010269969701766968, -0.020029542967677116, -0.004462505225092173, 0.004934965167194605, 0.027685465291142464, -0.04521821439266205, 0.012380520813167095, -0.013173701241612434, -0.013842732645571232, -0.011249375529587269, -0.02220906689763069, 0.007221395615488291, 0.007138628512620926, -0.02256772294640541, -0.002888213377445936, -0.017918992787599564, 0.0048108152113854885, -0.0013121971860527992, 0.012794353999197483, 0.019781243056058884, 0.02649914100766182, -0.022760845720767975, 0.0102906608954072, 0.027906175702810287, 0.02338159643113613, 0.0102906608954072, -0.015491168946027756, -0.012325342744588852, -0.014787652529776096, 0.020084721967577934, 0.0034762017894536257, -0.013256467878818512, 0.016429191455245018, 0.007497284561395645, -0.019146699458360672, 0.021864205598831177, 0.019546737894415855, -0.006717897951602936, -0.02085721120238304, -0.026912976056337357, 0.00401073694229126, 0.02076064981520176, 0.007731790188699961, -0.012615025974810123, 0.019850216805934906, -0.04314904659986496, 0.004438364878296852, 0.004383186809718609, 0.005086704157292843, 0.015767058357596397, -0.02154693379998207, 0.005828155670315027, -0.011007972061634064, 0.010725186206400394, 0.006417868658900261, -0.01060793362557888, 0.011504572816193104, -0.008076651021838188, 0.012842634692788124, 0.035203441977500916, 0.0025123145896941423, 0.04513544589281082, -0.008697401732206345, 0.003814165946096182, 0.042707622051239014, -0.0066040935926139355, -0.0003743900451809168, 0.02205732837319374, 0.011373525485396385, -0.0007819729507900774, -0.0229815561324358, -0.019601915031671524, -0.031561706215143204, 0.003948661964386702, -0.010476886294782162, -0.015256663784384727, -0.007945604622364044, 0.0039452132768929005, -0.0009776817169040442, -0.009518171660602093, -0.008435307070612907, 0.019574327394366264, 0.013711685314774513, -3.629126149462536e-05, 0.005186713766306639, -0.00661788834258914, 0.006811010651290417, 0.00249334704130888, -0.013284057378768921, -0.006428214255720377, -0.015049747191369534, 0.0032503176480531693, -0.001373410108499229, 0.0019777794368565083, 0.0029123537242412567, 0.00699378689751029, -0.004786674864590168, 0.014732474461197853, -0.02598874643445015, -0.008835346437990665, -0.0003884000179823488, 0.01178046129643917, 0.008366335183382034, 0.01300816796720028, 0.02042958326637745, 0.006055764388293028, 0.009621630422770977, 0.0007073967135511339, -0.011352833360433578, -0.007228292524814606, -0.007138628512620926, 0.011435599997639656, 0.006693757604807615, 0.008876729756593704, 0.015132513828575611, 0.07134490460157394, -0.0006043693865649402, 0.010745877400040627, -0.009738883003592491, 0.002238149754703045, -0.02274705097079277, -0.009835444390773773, 0.0018036245601251721, 0.006214400287717581, -0.005783323664218187, 0.012752970680594444, -0.024623095989227295, 0.0036762214731425047, 0.008607737720012665, -0.006990338210016489, -0.007586948573589325, 0.014332435093820095, 0.006952403578907251, -0.021850410848855972, 0.020415788516402245, 0.0029089050367474556, -0.01769828237593174, -0.004969451110810041, 0.00759384548291564, -0.00946299359202385, 0.003027882194146514, -0.005472948774695396, -0.0059419600293040276, -0.002055373275652528, 0.010897616855800152, 0.0009630251443013549, 0.0025123145896941423, 0.0032658365089446306, 0.0030606440268456936, 0.0018519051373004913, 0.021326221525669098, -0.007642126176506281, 0.027809614315629005, 0.00043711168109439313, 0.017987964674830437, -0.020567527040839195, 0.01467729639261961, 0.010752774775028229, 0.00993200484663248, -0.0028554515447467566, -0.014277257025241852, 0.01589120924472809, -0.0022795330733060837, -0.013601329177618027, 0.0013053000438958406, -0.032885972410440445, 0.007897323928773403, -0.005107395816594362, 0.012746073305606842, 0.014208285138010979, -0.02325744554400444, 0.0008056822116486728, -0.015780853107571602, 0.011270066723227501, 0.011442497372627258, 0.01940879411995411, -0.004579757805913687, -0.02310570701956749, -0.010090641677379608, -0.007090348284691572, -0.019905393943190575, 0.006800664588809013, -0.020595116540789604, 0.014091032557189465, -0.010863130912184715, -0.009194002486765385, 0.01536701899021864, 0.010580344125628471, -0.027354396879673004, 0.0029244236648082733, 0.011580442078411579, 0.018277648836374283, 0.01950535550713539, 0.011939098127186298, 0.014925596304237843, 0.00835254043340683, -0.003522758139297366, -0.010228586383163929, -0.013725479133427143, 0.005503986030817032, 0.011966686695814133, 0.029575305059552193, -0.014235873706638813, 0.002929596696048975, -0.029768425971269608, 0.003572762943804264, 0.007959398441016674, 0.002081237966194749, 0.00027179380413144827, -0.006259232293814421, 0.004586655180901289, 0.00320720998570323, -0.016056742519140244, 0.0286924596875906, 0.002250219928100705, 0.02034681662917137, 0.0029244236648082733, -0.010718288831412792, 0.0019674336072057486, 0.018167292699217796, -0.007883529178798199, 0.015698086470365524, -0.0005043596611358225, -0.012304650619626045, 0.0036279407795518637, -0.002439893549308181, 0.010883822105824947, -0.0034106781240552664, -0.00041275584953837097, -0.004555617459118366, -0.00726277893409133, 0.02514728531241417, 0.002314019249752164, -0.014428996481001377, -0.024719657376408577, -0.0035072392784059048, -0.015339430421590805, -0.006079904735088348, -0.016994765028357506, -0.00812493171542883, 0.00034766329918056726, -0.016594724729657173, -0.014028957113623619, -0.021850410848855972, -0.010207894258201122, 0.020871005952358246, -0.007835248485207558, 2.5366163754370064e-05, -0.0036865673027932644, 0.02400234527885914, -0.008131829090416431, 0.003621043637394905, 0.0014639361761510372, 0.034237828105688095, -0.007352442946285009, 0.008807756938040257, 0.022429779171943665, 0.011601134203374386, 0.014042751863598824, 0.016953380778431892, 0.001232879119925201, 0.0029140778351575136, -0.017353421077132225, 0.005003937520086765, -0.017091326415538788, 0.01598776876926422, -0.025174874812364578, -0.006679963320493698, -0.023988552391529083, 0.0238919910043478, -0.011952891945838928, -0.0021950420923531055, 0.025974951684474945, 0.001213911804370582, 0.003072714200243354, -0.013284057378768921, 0.005269480403512716, -0.0046107955276966095, -0.007145525887608528, 0.011373525485396385, 0.0020795136224478483, 0.013959985226392746, 0.029878782108426094, 0.016663698479533195, -0.016898203641176224, -0.01093900017440319, 0.024264439940452576, 0.0038831380661576986, -0.017436187714338303, -0.00572469737380743, -0.04011426493525505, 0.014373818412423134, 0.02208491787314415, -0.02550594136118889, 0.013104729354381561, 0.007131731603294611, -0.006321307271718979, 0.017449980601668358, 0.004559066146612167, 0.00849048513919115, -0.028444159775972366, 0.01673267036676407, -0.015780853107571602, -0.00011714507127180696, 0.02565767988562584, -0.012083939276635647, 0.024926574900746346, -0.00715242326259613, 0.01805693656206131, -0.017077531665563583, 0.012263267301023006, -0.0015544622438028455, 0.022167684510350227, -0.018912192434072495, -0.010580344125628471, 0.002857175888493657, -0.009235385805368423, 0.0002623101172503084, 0.003072714200243354, -0.0044004302471876144, -0.01802934892475605, -0.005455705802887678, -0.022002151235938072, -0.0198364220559597, -0.001769138383679092, -0.06356483697891235, -0.031865183264017105, 0.017739664763212204, 0.009069851599633694, -0.008518073707818985, 0.0018174189608544111, 0.010842438787221909, 0.0025036928709596395, 0.017022352665662766, -0.005221200175583363, -0.017629308626055717, 0.002148485742509365, 0.0010630349861457944, -0.0007746446644887328, -0.014594529755413532, 0.005290172062814236, -0.004559066146612167, 0.022884994745254517, 0.03501031920313835, 0.00021553831174969673, 0.026278430595993996, 0.005917819682508707, -0.017505159601569176, 0.01887081004679203, -0.003446888644248247, 0.005193611141294241, 0.018194882199168205, -0.0008914664504118264, 0.013228879310190678, -0.012863325886428356, 0.005445359740406275, -0.0003881845041178167, 0.015160102397203445, 0.004755637142807245, 0.017049942165613174, -0.0009518171427771449, -0.004538374487310648, 0.00443146750330925, -0.007407620549201965, -2.0274072085157968e-05, 0.0011664932826533914, -0.01380824577063322, -0.026030130684375763, 0.005535023752599955, 0.008421512320637703, 0.015573935583233833, -0.00017480156384408474, -0.020843416452407837, -0.0024623095523566008, 0.00202778447419405, 0.01565670222043991, 0.016911998391151428, 0.01571188122034073, 0.005176368169486523, 0.010773466899991035, 0.009118132293224335, -0.015905002132058144, 0.00942161027342081, -0.014263463206589222, 0.014442791230976582, 0.0043624951504170895, 0.0019674336072057486, 0.01153905875980854, -0.0009147445671260357, 0.004169372841715813, 0.011794256046414375, 0.002964082872495055, 0.004093503579497337, -0.013628918677568436, 0.008787065744400024, -0.008104240521788597, 0.0016329182544723153, 0.026485348120331764, -0.02700953558087349, 0.006141979712992907, -0.004652178846299648, 0.006273027043789625, -0.001016478636302054, 0.010525166988372803, 0.0057798754423856735, -0.005397079046815634, -0.0002228666126029566, 0.014594529755413532, 0.0012889191275462508, -0.0067489356733858585, 0.0237402506172657, 0.006579953245818615, -0.006055764388293028, 0.013194393366575241, 0.023271240293979645, -0.012311547994613647, -0.014718679711222649, 0.0006763592245988548, -0.006676514632999897, 0.01986400969326496, -0.000960438686888665, -0.0026847452390938997, 0.004359046928584576, -0.0042590368539094925, -0.00014171643124427646, -0.013201289810240269, -4.060202991240658e-05, -0.00026080134557560086, -0.0017881058156490326, -0.0016605071723461151, 0.004969451110810041, -0.0039452132768929005, 0.027119891718029976, -0.018484564498066902, 0.003348603146150708, -0.00017598702106624842, 0.0007056724280118942, -0.023271240293979645, 0.012773661874234676, -0.008407718501985073, 0.031892772763967514, 0.007545565254986286, 0.002903732005506754, -0.0027347500436007977, -0.04855646938085556, -0.013449590653181076, -0.024623095989227295, 0.009890621528029442, -0.004848749842494726, 0.012911606580018997, 0.009828547015786171, -0.017449980601668358, -0.00594885740429163, -0.0006129909306764603, 0.0069075715728104115, -0.013918601907789707, -0.003903829725459218, -0.007586948573589325, -0.029161470010876656, 0.005593650043010712, 0.0007306748884730041, 8.616143895778805e-05, -0.001413069199770689, 0.008324951864778996, 0.006848945282399654, 0.016056742519140244, 0.0034589588176459074, 0.012090836651623249, -0.00392107293009758, 0.007297264877706766, -0.01667749136686325, 0.0012785732978954911, 0.020112311467528343, -0.0076214345172047615, 0.008249081671237946, -0.0020157143007963896, 0.011973584070801735, -0.014277257025241852, -0.0006720484234392643, 0.01536701899021864, -0.001845007878728211, -0.005241891834884882, 0.02440238557755947, -0.03181000426411629, 0.007883529178798199, -0.019243260845541954, -0.016001563519239426, -0.011145916767418385, -0.0036693240981549025, -0.010083744302392006, -0.00576952937990427, -0.016636108979582787, -0.018636304885149002, -0.00501083442941308, -0.004990142770111561, 0.039286598563194275, -0.005662622395902872, -0.00820080190896988, -0.006379934027791023, 0.010407913476228714, -0.00585919339209795, 0.02445756271481514, 0.018967371433973312, -0.016746465116739273, 0.0037796797696501017, -0.004552169237285852, -0.010345838963985443, -0.00926987174898386, -0.01565670222043991, 0.01272538211196661, -0.0076628178358078, -0.005735043436288834, 0.025133490562438965, 0.015063541010022163, -0.013759966008365154, 0.023754045367240906, 0.017284447327256203, 0.017587926238775253, 0.02499554678797722, 0.021022744476795197, -0.012118426151573658, 0.006121288053691387, 0.015601525083184242, -8.573036029702052e-05, 0.0006871361401863396, -0.006600644905120134, 0.023864401504397392, -0.007793865166604519, -0.005824707448482513, -0.006855842657387257, -0.015201485715806484, 0.03296874091029167, 0.008118035271763802, 0.012794353999197483, 0.008455999195575714, -0.0008742233621887863, 0.01204945333302021, 0.004576309118419886, -0.02644396387040615, 0.010297558270394802, 0.013649609871208668, 0.0119459955021739, 0.0010423432104289532, -0.009469890967011452, -0.0076628178358078, -0.0053694904781877995, -0.016870614141225815, -0.0013768586795777082, 0.008393923752009869, -0.00030046040774323046, -0.012884018011391163, 0.007793865166604519, -0.01200117263942957, 0.007021375931799412, -0.0013104729587212205, -0.017712075263261795, -0.00708345090970397, 0.010304455645382404, 0.008276671171188354, 0.015298047102987766, -0.010738980956375599, 0.010945897549390793, 0.02425064519047737, -0.012297753244638443, 0.0058833337388932705, -0.011076944880187511, 0.03139617294073105, 0.020829621702432632, -0.017974169924855232, 0.004531477577984333, -0.01647057570517063, 0.0013535806210711598, 0.016111919656395912, 0.0032934253104031086, -0.01264951191842556, 0.000417066621594131, 0.0011225234484300017, -0.012539156712591648, 0.026306020095944405, -0.008566354401409626, -0.006059213075786829, 0.01416690181940794, 0.01721547544002533, -0.015256663784384727, -0.0014510038308799267, -0.0222366563975811, -0.007011029869318008, -0.0001640246482565999, -0.0013880666811019182, 0.016084330156445503, 0.0048211608082056046, 0.0095388637855649, -0.003089957172051072, -0.013994471170008183, -0.025381790474057198, -0.012111528776586056, -0.0037589881103485823, 0.009345741011202335, 0.020291637629270554, 0.018470771610736847, 0.01989159919321537, 0.018125910311937332, 0.011083842255175114, 0.029796015471220016, 0.012573642656207085, 0.007545565254986286, -0.011587339453399181, -0.0025933568831533194, -0.012201192788779736, 0.00866981316357851, -0.005383284762501717, -0.0001970020093722269, 0.01724306493997574, 0.011677003465592861, -0.0020036441273987293, -0.008283568546175957, -0.0010371702956035733, 0.0023053977638483047, 0.0017829329008236527, -0.0038314089179039, -0.004365943837910891, -0.007024824619293213, 0.016291247680783272, 0.021436577662825584, -0.005252237431704998, 0.00993200484663248, 0.005517780780792236, -0.006207503378391266, 0.03181000426411629, -0.01323577668517828, 0.0010647592134773731, 0.005783323664218187, 0.018484564498066902, 0.010883822105824947, -0.007180012296885252, 0.004779777489602566, -0.03501031920313835, 0.018277648836374283, 0.02866487018764019, -0.025919774547219276, 0.0038210630882531404, 0.020498555153608322, 0.0019001857144758105, 0.01071139145642519, 8.767020335653797e-05, -0.007531770505011082, -0.018043143674731255, 0.0023071221075952053, 0.013911704532802105, -0.003019260708242655, 0.005417770706117153, -0.010821747593581676, -0.01716029830276966, 0.0249403677880764, 0.009807854890823364, -0.005810912698507309, 0.004752188455313444, -0.012277062050998211, -0.005245340056717396, -0.004934965167194605, -0.016263658180832863, -0.0037762310821563005, 0.0009500928572379053, 0.007759379222989082, 0.012580540031194687, -0.002698539523407817, 0.017808636650443077, 0.03145134821534157, 0.017836226150393486, 0.020802032202482224, -0.024926574900746346, -0.00527982646599412, 0.008373232558369637, -0.003721053246408701, -0.006376485340297222, -0.01596018113195896, -0.004586655180901289, 0.005528126377612352, 0.017174093052744865, -0.016125714406371117, 0.002389888744801283, 0.016291247680783272, 0.013194393366575241, -0.0050211804918944836, 0.025436969473958015, -0.007035170216113329, -0.001538943499326706, -0.004255588166415691, 0.01871907152235508, 0.014911802485585213, -0.003202037187293172, 0.003845203435048461, -0.012325342744588852, -0.0014561768621206284, -0.012601231224834919, -0.0001630547340027988, -0.017808636650443077, -0.024650685489177704, 0.006624785251915455, 0.0022347010672092438, 0.02019507810473442, -0.0049246191047132015, -0.008180109784007072, 0.00690412288531661, -0.004207307938486338, 0.014539351686835289, -0.027782024815678596, -0.010056155733764172, 0.009152618236839771, -0.004069363232702017, 0.008138726465404034, -0.005048769526183605, 0.011063150130212307, -0.012373623438179493, -0.0068041132763028145, 0.010821747593581676, 0.025671474635601044, 0.0015415300149470568, 0.0023381595965474844, 0.0009880275465548038, 0.0020122656133025885, 0.008690504357218742, -0.03004431538283825, 0.003255490679293871, -0.008787065744400024, -0.013594431802630424, 0.009525069035589695, 0.011242478154599667, 0.01940879411995411, 0.010235482826828957, -0.01724306493997574, 0.002812343882396817, 0.01122178602963686, 0.041631653904914856, -0.012980579398572445, -0.010490680113434792, -0.007069656625390053, 0.00456596352159977, 0.00859394297003746, -0.0024898985866457224, -0.005614341702312231, -0.015946386381983757, 0.011842536740005016, -0.0005384146934375167, -0.003153756493702531, -0.014401407912373543, 0.004324560519307852, -0.00467976788058877, -0.003407229669392109, 0.018663892522454262, 0.010387222282588482, -0.004800469148904085, -0.011849434114992619, 0.018305236473679543, -0.011318347416818142, 0.006555813364684582, -0.03917624428868294, 0.0025864597409963608, 0.023754045367240906, 0.004321111831814051, 0.00042655030847527087, 0.006890328601002693, 0.00467976788058877, 0.023009145632386208, 0.01775345951318741, -0.021050333976745605, -0.0076628178358078, -0.0022364254109561443, 0.014318641275167465, 0.008800860494375229, -0.0051694707944989204, -0.0034365428145974874, -0.016967175528407097, 3.184578599757515e-05, -0.0016829230589792132, -0.0029778771568089724, -0.03597592934966087, -0.018636304885149002, -0.00505566643550992, -0.003690015757456422, -0.024540329352021217, 0.021436577662825584, 0.005448808427900076, -0.020181283354759216, -0.012904709205031395, -0.012711587361991405, 0.02631981298327446, -0.01680164225399494, 0.01716029830276966, -0.0015329084126278758, -0.020926183089613914, -0.0054763974621891975, -0.010904514230787754, 0.008242185227572918, -0.05732974037528038, -0.012890915386378765, -0.01013892237097025, -0.008138726465404034, -0.01986400969326496, -1.728347888274584e-05, -0.010856233537197113, -0.0008414615294896066, -0.025050723925232887, -0.0032054856419563293, -0.007097245194017887, -0.037934742867946625, -0.021133100613951683, 0.007449003867805004, -0.02866487018764019, 0.016001563519239426, 0.010676905512809753, 0.006742038298398256, -0.003143410664051771, -0.025354202836751938, -0.0039934939704835415, -0.0306512713432312, -0.003120994661003351, -0.009456096217036247, 0.005134984850883484, 0.01000787504017353, -0.01213911734521389, 0.007897323928773403, -0.02382301725447178, -0.0019312232034280896, -0.0010604484705254436, -0.006824804935604334, -0.0003847358748316765, 4.76070235890802e-05, -0.00717311492189765, -0.010504474863409996, -0.01935361512005329, 0.02598874643445015, -0.014925596304237843, -0.013049551285803318, 0.012332240119576454, -0.009021571837365627, 0.00012307237193454057, -0.03040297143161297, 0.004955656826496124, -0.007952501066029072, -0.023091912269592285, -0.014415201731026173, 0.012601231224834919, -0.0007186047150753438, 0.002724404213950038, 0.016029153019189835, -0.007973193190991879, -0.004752188455313444, 0.0003170568379573524, -0.005652276799082756, -0.008387026377022266, 0.019063932821154594, -0.02427823469042778, 0.012939196079969406, 0.0009164689108729362, -0.0010466540697962046, -0.027547519654035568, -0.014566941186785698, 0.011290758848190308, 0.016111919656395912, -0.009345741011202335, -0.006545467302203178, 0.016125714406371117, -0.012442595325410366, 0.017270652577280998, -0.028526926413178444, 0.003983147908002138, 0.021229662001132965, 0.009145721793174744, 0.003036503680050373, 0.015256663784384727, 0.020181283354759216, -0.022705666720867157, -0.009580247104167938, 0.010821747593581676, 0.0026140485424548388, 0.017725870013237, -0.013194393366575241, 0.004617692902684212, -0.01971227116882801, -0.00023515229986514896, -0.0013553048484027386, -0.014263463206589222, -0.0005341039504855871, 0.010166510939598083, 0.02034681662917137, -0.03001672774553299, 0.009304357692599297, 0.006838599219918251, -0.023160884156823158, -0.012518464587628841, -0.002179523464292288, 0.0009337119408883154, -0.01273917593061924, 0.020360611379146576, -0.005141881760209799, 0.013042653910815716, -0.03197553753852844, 0.006183363031595945, -0.008835346437990665, 0.0019191531464457512, 0.018677687272429466, 0.002260565757751465, 0.02557491324841976, -0.0033555002883076668, 0.012932298704981804, 0.0021898692939430475, -0.017463775351643562, -0.01060793362557888, 0.03550691902637482, 0.001988125266507268, 0.004421121906489134, -0.0040969522669911385, 0.012677101418375969, -0.00853186845779419, 0.008214595727622509, -0.0015906727639958262, 0.010242380201816559, -0.006176465656608343, -0.0005603996105492115, 0.017684487625956535, 0.003603800432756543, 0.014028957113623619, 0.00775248184800148, -0.011842536740005016, -0.010187202133238316, 0.027782024815678596, -0.01338751520961523, 0.014063443057239056, 0.003153756493702531, -7.166648720158264e-05, 0.016180891543626785, -0.001328578102402389, -0.01869148202240467, 0.009207796305418015, -0.022167684510350227, -0.00717311492189765, 0.009676807560026646, -0.0025174873881042004, -0.017270652577280998, -0.015670496970415115, 0.01664990372955799, -0.009759574197232723, 0.0019777794368565083, -0.001466522691771388, 0.002929596696048975, 0.009318152442574501, 0.00407970929518342, 0.002736474387347698, -0.012628820724785328, -0.008711196482181549, -0.007024824619293213, -0.0015148032689467072, -0.0063006156124174595, 0.0006147152744233608, 0.010856233537197113, -0.013504767790436745, -0.014539351686835289, -0.0064420090056955814, -0.0015329084126278758, -0.0028175166808068752, -0.0036555295810103416, 0.02034681662917137, -0.020829621702432632, -0.0007832662086002529, 0.017270652577280998, -0.0010173408081755042, 0.009587143547832966, 0.017298242077231407, -0.012746073305606842, 0.01961570978164673, -0.00690412288531661, 0.012373623438179493, 0.01060793362557888, -0.027961352840065956, 0.018443182110786438, 0.012518464587628841, 0.016442986205220222, 0.015035952441394329, 0.010366530157625675, -0.0119459955021739, 0.004693562164902687, 0.012332240119576454, 0.010614831000566483, 0.014249668456614017, -0.012766765430569649, -0.016663698479533195, -0.009290562942624092, 0.015767058357596397, -0.0030416767112910748, 0.013594431802630424, 0.022829817607998848, 0.010345838963985443, -0.003969353623688221, 0.006014381069689989, -0.02830621413886547, 0.014773857779800892, -0.0015510136727243662, 0.007862837053835392, -0.014291051775217056, -0.00944919977337122, 0.0035210337955504656, 0.007655920460820198, 0.042680032551288605, 0.007324853911995888, 0.007400723174214363, -0.002545076422393322, 0.020843416452407837, 0.004738394170999527, 0.019657094031572342, -0.008718093857169151, 0.007800762541592121, 0.001710511976853013, 0.0026640535797923803, 9.165766823571175e-05, -0.011104533448815346, 0.011883920058608055, -0.012477081269025803, -0.004348700866103172, -0.005583304446190596, 0.003210658673197031, -0.030927160754799843, -0.008193904533982277, -0.000997511320747435, 0.018291443586349487, -0.01598776876926422, -0.014139313250780106, 0.0026657776907086372, 0.0029175265226513147, 0.0014389337738975883, 0.0073179565370082855, 0.011483880691230297, 0.009518171660602093, -0.012773661874234676, -0.013904807157814503, -0.0015173896681517363, 0.0003909864753950387, -0.005735043436288834, -0.0067110005766153336, -0.01448417454957962, 0.004086606204509735, -0.009262974373996258, 0.006835150998085737, 0.013573740608990192, -0.029823604971170425, 0.017077531665563583, -0.021767644211649895, -0.0025088659022003412, 0.013601329177618027, -0.003996942192316055, -0.013394412584602833, -0.003483099164441228, -0.02427823469042778, -0.00010690699855331331, 0.012208090163767338, 0.05219820514321327, -0.006962749641388655, 0.00793180987238884, -0.0063488963060081005, -0.0196846816688776, 0.003345154458656907, 0.006162671372294426, -0.010421708226203918, -0.0012656409526243806, 0.021436577662825584, 0.00775248184800148, -0.010676905512809753, 0.009518171660602093, 0.0038865867536514997, 0.014980774372816086, -0.004159027244895697, -0.012159809470176697, -0.010511372238397598, -0.019877804443240166, 0.010752774775028229, -0.022195272147655487, -0.015780853107571602, 0.0004056431062053889, -0.02055373229086399, 0.0048177121207118034, -0.022484956309199333, 0.006990338210016489, 0.017422392964363098, -0.027809614315629005, -0.004848749842494726, 0.005800567101687193, 0.0050177318044006824, -0.01724306493997574, 0.021919384598731995, 0.02338159643113613, 0.017229270190000534, -0.021436577662825584, -0.009159515611827374, -0.02812688611447811, 0.010842438787221909, 0.0012785732978954911, -0.03103751689195633, 0.023009145632386208, -0.01046998891979456, 0.02415408566594124, 0.014787652529776096, -0.0014785927487537265, -0.016691286116838455, 0.0010630349861457944, -0.009214693680405617, -0.022843612357974052, 0.0011837363708764315, -0.018374210223555565, -0.007235189899802208, 0.016911998391151428, 0.0050211804918944836, -0.0033968838397413492, 0.009166412986814976, -0.011821845546364784, 0.0035244824830442667, -0.006886879913508892, 0.009594040922820568, -0.006217848975211382, -0.007131731603294611, 0.001145801623351872, -0.014773857779800892, -0.017105119302868843, -0.0036762214731425047, -0.011649414896965027, 0.0339619405567646, 0.012173603288829327, 0.009483685716986656, -0.025409379974007607, -0.006428214255720377, -0.00025886151706799865, 0.0032813551370054483, 0.0036382866092026234, 0.034927550703287125, -0.018484564498066902, 0.004321111831814051, 0.011435599997639656, 0.007304162252694368, 0.01401516329497099, 0.003527930937707424, 0.004928067792207003, 0.0014794549206271768, 0.012483978644013405, -0.015394608490169048, 0.011263169348239899, -0.024209262803196907, -0.006773075554519892, 0.0014285879442468286, -0.008938804268836975, -0.02205732837319374, -0.009945799596607685, 0.0009164689108729362, -0.03158929571509361, 0.0138979097828269, -0.023147089406847954, 0.00993200484663248, -0.0035969032905995846, 0.0023864400573074818, -0.013484076596796513, 0.010552755557000637, 0.00063195830443874, -0.014318641275167465, 0.019657094031572342, -0.009469890967011452, -0.004869441501796246, -0.00650408398360014, -0.02124345488846302, -0.009035365656018257, 0.012552951462566853, 0.011642517521977425, 0.02580941841006279, 0.01430484652519226, -4.124864426557906e-05, 0.0036279407795518637, 0.027892380952835083, 0.028071708977222443, -0.005341901443898678, 0.012242576107382774, -0.03040297143161297, 0.0039555588737130165, -0.004755637142807245, -0.0008776719914749265, -0.007324853911995888, 0.004631487186998129, -0.003488271962851286, 0.0210365392267704, 0.005569509696215391, 0.021298633888363838, 0.01251156721264124, 0.010807952843606472, -0.005607444792985916, 0.0022519442718476057, 0.022609107196331024, 0.024112701416015625, -0.002434720750898123, 0.007952501066029072, -0.0026916423812508583, -0.014980774372816086, 0.0033037711400538683, 0.006535121705383062, -0.0008095618686638772, -0.018953576683998108, 0.008187007158994675, -0.0028295868542045355, -0.009835444390773773, -0.019781243056058884, -0.008559457026422024, 0.0024192018900066614, -0.02052614465355873, 0.012580540031194687, -0.0027675118762999773, -0.00690412288531661, 0.01685681939125061, 0.0037348477635532618, 0.0003086508659180254, -0.0027606147341430187, -0.017505159601569176, 0.027506137266755104, -0.0033968838397413492, -0.001044929726049304, 0.002276084618642926, 0.0190777275711298, 0.011270066723227501, 0.016180891543626785, -0.0027002638671547174, -0.018153497949242592, 0.01871907152235508, -0.0059867920354008675, 0.0032813551370054483, 0.011532161384820938, 0.008614635095000267, -0.0007755068363621831, 0.006542018614709377, -0.0009561279439367354, -0.0019294989760965109, -0.0004280590801499784, -0.016608519479632378, -0.003305495483800769, 0.020677883177995682, 0.0004168510786257684, -0.01749136485159397, 0.029796015471220016, -0.006241989322006702, -0.010000977665185928, 0.009318152442574501, 0.004979797173291445, 0.010897616855800152, 0.01398757379502058, 0.0034399915020912886, 0.0036348379217088223, 0.017201680690050125, 0.011545956134796143, 0.01604294776916504, -0.011187300086021423, 0.030458148568868637, 0.007290367502719164, 0.004234896507114172, 0.011421806178987026, 0.007186909206211567, 0.0012087387731298804, -0.00126391660887748, 0.0019760550931096077, 0.0018036245601251721, -0.007511078845709562, 0.007031721528619528, -0.010042360983788967, -0.01889839954674244, 0.014222079887986183, -0.0012052902020514011, 0.0003086508659180254, -0.013980676420032978, 0.0010578619549050927, -0.0031606536358594894, 0.0033210143446922302, -0.008724990300834179, 0.001016478636302054, 0.016029153019189835, 0.0012604680377990007, -0.003931418526917696, 0.002162280259653926, 0.014773857779800892, 0.025105902925133705, 0.009559554979205132, -0.018498359248042107, 9.424412564840168e-05, 0.014387613162398338, 0.0018294891342520714, -0.0073179565370082855, -0.003358948975801468, -0.018581125885248184, 0.001569980988278985, 0.01640160381793976, -0.001685509574599564, 0.0016105022514238954, 0.01986400969326496, -0.017505159601569176, 0.0023726457729935646, -0.01449796836823225, 0.001547565101645887, -0.023533334955573082, 0.0021950420923531055, 0.011608030647039413, -0.04069363325834274, 0.0009552657720632851, -0.005441911052912474, 0.00567986536771059, 0.02055373229086399, -0.00632475595921278, -0.01956053264439106, 0.0074214148335158825, -3.9712933357805014e-05, 0.0020570976193994284, -0.016870614141225815, 0.016746465116739273, -0.000352405128069222, 0.00016618003428447992, -0.020498555153608322, 0.00685929087921977, 0.021657289937138557, -0.014428996481001377, -0.015767058357596397, 0.019974365830421448, 0.021257249638438225, -0.024333413690328598, -0.00010906238458119333, -0.015049747191369534, -0.010152716189622879, -0.0008134415838867426, -0.020388199016451836, -0.010759672150015831, 0.005776426754891872, 0.030292615294456482, -0.003267560852691531, -0.0010906237876042724, 0.029437359422445297, -0.0018915642285719514, 0.006773075554519892, 0.026388786733150482, 0.013470281846821308, 0.00539363082498312, 0.019450176507234573, 0.015905002132058144, 0.011456292122602463, 0.0017484467243775725, 0.015780853107571602, 0.006000586319714785, 0.021326221525669098, 0.0016079157358035445, -0.023836812004446983, -0.016898203641176224, -0.002089859452098608, 0.014511763118207455, -0.0007578326622024179, 0.006759281270205975, 0.001704476890154183, -0.004917722195386887, -0.016084330156445503, 0.007918015122413635, 0.009159515611827374, -0.011318347416818142, -0.031230637803673744, -0.0019967469852417707, -0.007711098529398441, 0.0003845203318633139, -0.018677687272429466, -0.00023558337124995887, 0.0005099636618979275, -0.007552462164312601, 0.025905979797244072, 0.004752188455313444, 0.014939391054213047, -0.009904416278004646, -0.023022940382361412, 0.011697694659233093, -0.0019846768118441105, 0.013622021302580833, -0.012587437406182289, 0.0035934546031057835, 0.009483685716986656, 0.011276964098215103, 0.02226424589753151, 0.0019088072003796697, 0.013635815121233463, -0.008076651021838188, 0.029520126059651375, -0.031175460666418076, -0.015339430421590805, 0.02491278015077114, -0.006214400287717581, -0.015946386381983757, 0.015339430421590805, -0.0017648276407271624, 0.015463580377399921, 0.015284252353012562, -0.01851215399801731, 0.007248984184116125, 0.005614341702312231, 0.01245639007538557, -0.012932298704981804, -0.004765983205288649, 0.004207307938486338, 0.007090348284691572, 0.04248690977692604, -0.013456488028168678, 0.0387624092400074, -0.014925596304237843, -0.012415006756782532, -0.026388786733150482, -0.01536701899021864, 0.005362593103200197, 0.0035037908237427473, -0.006779972929507494, 0.006828253623098135, 0.02001575008034706, 0.02565767988562584, 0.01910531520843506, 0.0035934546031057835, 0.003434818470850587, 0.001772587071172893, -0.005645379424095154, -0.005717799998819828, 0.01452555786818266, -0.007290367502719164, 0.017643103376030922, -0.012794353999197483, -0.006928263232111931, 0.009731985628604889, -0.007497284561395645, 0.011325244791805744, 0.0039003812707960606, 0.007883529178798199, 0.009649218991398811, 0.009138824418187141, -0.010152716189622879, -0.005079806782305241, 0.03142376244068146, 0.008787065744400024, -0.00913192704319954, 0.012939196079969406, 0.014470379799604416, 0.018139703199267387, 0.0102906608954072, -0.015849824994802475, -0.002407131716609001, 0.017808636650443077, 0.011670106090605259, -0.026719853281974792, 0.016291247680783272, 0.000865170790348202, 0.005390182137489319, -0.0061868117190897465, 0.00812493171542883, -0.01956053264439106, 0.004069363232702017, -0.010932102799415588, 0.01053206343203783, 0.003014087677001953, 0.023354006931185722, 0.007276573218405247, 0.003648632438853383, -0.020291637629270554, 0.0055315750651061535, -0.0303477942943573, -0.0011147641343995929, 0.012394314631819725, 0.020443378016352654, -0.0002683452039491385, 0.012146014720201492, -0.022829817607998848, 0.004186616279184818, 0.015049747191369534, 0.004190064501017332, 0.0027037125546485186, -0.01518769096583128, 0.0026468103751540184, -0.029437359422445297, 0.00946299359202385, -0.03070645034313202, -0.03249972686171532, 0.011256272904574871, -0.02968565933406353, 0.009331946261227131, -0.0006216124747879803, 0.0031072001438587904, 0.004955656826496124, -0.008187007158994675, -0.016939586028456688, -0.01071139145642519, 0.015408402308821678, 0.0009776817169040442, 0.01078726164996624, 0.0003640442155301571, -0.029078703373670578, -0.0014932494377717376, 0.003081335686147213, 0.017560336738824844, 0.009676807560026646, 0.009035365656018257, -0.009642321616411209, 0.012952989898622036, 0.005241891834884882, -0.011276964098215103, 0.024347206577658653, -0.011766667477786541, -0.00759384548291564, -0.020457172766327858, -0.0075731538236141205, -0.024650685489177704, -0.007938707247376442, -0.006024726666510105, -0.0013518562773242593, 0.0058350530453026295, 0.007814557291567326, 0.007635228801518679, -0.014553146436810493, 0.007048964966088533, 0.02145037241280079, 0.010332044214010239, 0.0004642695130314678, 0.008497382514178753, 0.020746855065226555, 0.0030296065378934145, -0.015270457603037357, 0.014511763118207455, 0.0408591665327549, 0.014153107069432735, -0.003131340490654111, -0.01013892237097025, -0.007821453735232353, 0.003381364978849888, -0.017298242077231407, 0.009366433136165142, -0.01180805079638958, -0.022347012534737587, 0.001657058484852314, 0.01851215399801731, 0.0023864400573074818, -0.01213911734521389, 0.019450176507234573, -0.01685681939125061, 0.011332142166793346, 0.007924912497401237, 0.001730341580696404, 0.021560728549957275, -0.0026468103751540184, 0.01562911458313465, 0.019091520458459854, 0.003927970305085182, -0.00951127428561449, -0.0005724697257392108, 0.018153497949242592, 0.0102906608954072, -0.005897128023207188, -0.0006763592245988548, -0.008876729756593704, 0.010304455645382404, -0.02139519527554512, -0.006666168570518494, -5.857253563590348e-05, 0.017270652577280998, -0.003460683161392808, 0.009573349729180336, -0.003645183751359582, 0.0021864206064492464, 0.001654472085647285, -0.013877218589186668, 0.007290367502719164, -0.026568114757537842, -0.017118914052844048, 0.016636108979582787, -0.019698476418852806, -0.029409771785140038, 0.007373134605586529, -0.0009733709739521146, -0.01836041547358036, -0.004631487186998129, 0.008662915788590908, 0.024954162538051605, -0.005583304446190596, 0.007031721528619528, -0.009276769123971462, -0.008435307070612907, -0.0031330648344010115, 0.022222861647605896, 0.029878782108426094, 0.013366824015974998, 0.005648828111588955, 0.0312582291662693, 0.006314410362392664, 0.02698194794356823, 0.02361610159277916, 0.018346620723605156, -0.0018898398848250508, 0.022526338696479797, -0.005048769526183605, -0.009525069035589695, -0.0011337314499542117, 0.014373818412423134, -0.03277561813592911, -0.007462798152118921, -0.017836226150393486, -0.017146503552794456, 0.008414615876972675, 0.03611387312412262, -0.017615513876080513, 0.030761627480387688], "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed": [-0.015918713063001633, -0.01028665341436863, -0.014894701540470123, 0.053275156766176224, -0.0005498239770531654, -0.014123369008302689, 0.02022753655910492, 0.030640529468655586, -0.029842598363757133, 0.023366063833236694, 0.016211286187171936, 0.002116178162395954, 0.04096043109893799, 0.009641659446060658, 0.023326165974140167, 0.05040260776877403, -0.009216096252202988, -0.004082744009792805, 0.030773518607020378, -0.032183196395635605, 0.03478976711630821, -0.009382332675158978, -0.023392660543322563, 5.316938768373802e-05, 0.02158401906490326, 0.01735498756170273, 0.004062796011567116, 0.008697441779077053, -0.04428514093160629, -0.009089757688343525, 0.02137123793363571, -0.001673991559073329, 0.004784258082509041, 0.011077934876084328, 0.026637578383088112, -0.00662614731118083, 0.024004407227039337, 0.013631312176585197, -0.03856663778424263, 0.007088282145559788, 0.01563943736255169, 0.0253209937363863, 0.032342780381441116, -0.02224896103143692, -0.02208937518298626, 0.022541536018252373, -0.027116335928440094, 0.0033662691712379456, 0.009023263119161129, -0.030773518607020378, -0.0033280348870903254, -0.019256722182035446, -0.0019466178491711617, 0.02121165208518505, 0.03675799444317818, -0.05899365618824959, 0.00599112780764699, -0.0008216190035454929, -0.02360544167459011, -0.05862129107117653, 0.015586241148412228, -0.024376776069402695, 0.019456204026937485, -0.01905723847448826, 0.022834109142422676, 0.030268162488937378, -0.008677493780851364, -0.023219775408506393, -0.052583616226911545, 0.015759127214550972, 0.004820829723030329, 0.016064999625086784, -0.005479122512042522, 0.007028437219560146, 0.04502987489104271, -0.018804561346769333, 0.014562230557203293, 0.04960467666387558, -0.006074245553463697, -0.016690045595169067, 0.012833381071686745, -0.020852582529187202, 0.043567001819610596, 0.005635384004563093, 0.05553596094250679, 0.018924251198768616, 0.015067586675286293, -0.030667126178741455, 0.007620235905051231, -0.04710449278354645, -0.00705503486096859, -0.008464712649583817, -0.009987429715692997, -0.03877941891551018, 0.01936311274766922, 0.03460358455777168, -0.004824154544621706, 0.00148531433660537, 0.006815656088292599, -0.05761057883501053, -0.002387142041698098, -0.02275431714951992, 0.0343376062810421, -0.016583655029535294, 0.03572068735957146, -0.015692632645368576, -0.006107492838054895, -0.01162983663380146, -0.025267798453569412, 0.03667820245027542, 0.012241583317518234, -0.0333268940448761, -0.010785359889268875, 0.012308076955378056, -0.0567062571644783, -0.008564453572034836, -0.05332835018634796, 0.00543590122833848, -0.05824892222881317, -0.02683706022799015, 0.009767998941242695, -0.025773152709007263, 0.02057330682873726, -0.018418895080685616, -0.040534865111112595, 0.0062172082252800465, 0.006413366179913282, 0.04872695356607437, 0.01871146820485592, -0.006340222433209419, -0.014056874439120293, 0.0052995881997048855, 0.011736227199435234, 0.026797164231538773, 0.0008594375685788691, 0.02633170410990715, 0.03162464499473572, 0.05878087505698204, 0.022860707715153694, 0.006283702328801155, -0.05516359210014343, -0.01565273478627205, -0.013079410418868065, 0.017913538962602615, 0.00382009195163846, -0.008251930586993694, 0.001436274847947061, 0.0506419874727726, -0.02074619196355343, -0.016184689477086067, -0.06000436842441559, -0.03340668976306915, -0.027581796050071716, -0.01735498756170273, 0.06303650885820389, -0.040029510855674744, -0.009289240464568138, 0.01614479348063469, -0.004611372947692871, 0.05968519672751427, 0.027262624353170395, -0.009974130429327488, 0.003859988646581769, 0.03947095945477486, 0.06399402022361755, 0.0424233041703701, 0.030534138903021812, 0.029948988929390907, -0.02649129182100296, 0.01299296785145998, 0.037476133555173874, -0.03024156391620636, 0.039337970316410065, 0.03449719399213791, -0.034922756254673004, -0.0020114497747272253, 0.04058806225657463, -0.006330248434096575, 0.02053341083228588, 0.01852528564631939, 0.004731062799692154, 0.03428441286087036, -0.009821194224059582, 0.00776652293279767, 0.030667126178741455, 0.013910587877035141, 0.03021496720612049, 0.03021496720612049, -0.010639072395861149, 0.004022899549454451, -0.00021122299949638546, 0.017753953114151955, -0.0026331704575568438, 0.016078298911452293, -0.020639801397919655, -0.021477628499269485, 0.04234350845217705, 0.012042100541293621, -0.03893900662660599, 0.02482893504202366, 0.00773327611386776, -0.034231215715408325, -0.05622749775648117, 0.034576985985040665, 0.010758762247860432, 0.023366063833236694, -0.01147689949721098, 0.0018319153459742665, 0.02633170410990715, -0.02803395688533783, 0.04550863429903984, -0.06814326345920563, 0.00036551032098941505, -0.0353483185172081, 0.004012925084680319, 0.011696330271661282, 0.008857027627527714, 0.035268526524305344, -0.025400785729289055, -0.02312668412923813, 0.0003835884272120893, 0.00815883930772543, -0.006084219552576542, -0.02872549556195736, -0.029284046962857246, 0.031199080869555473, -0.011077934876084328, 0.0051200538873672485, -0.03478976711630821, -0.017793849110603333, 0.03633243218064308, -0.023645339533686638, -0.005302913021296263, 0.019496100023388863, 0.01411006972193718, 0.028406323865056038, 0.035241927951574326, 0.008451413363218307, -0.015227172523736954, 0.02752860076725483, 0.012527507729828358, 0.01504098903387785, 0.000994919566437602, -0.03622604161500931, 0.018033228814601898, 0.00806574709713459, -0.005449200049042702, 0.04524265602231026, -0.0005103430012241006, 0.018990743905305862, -0.010353147983551025, -0.01052603218704462, -0.02036052569746971, 0.007979304529726505, -0.034071631729602814, 0.044950082898139954, 0.031491655856370926, -0.028486117720603943, 0.003899885108694434, 0.020945673808455467, 0.01155004370957613, 0.03037455305457115, -0.0009932571556419134, 0.03755592554807663, 0.01162983663380146, 0.0067624603398144245, 0.022009581327438354, -0.0022408547811210155, -0.008996665477752686, -0.004448462277650833, 0.011437003500759602, -0.012733640149235725, -0.03790169581770897, 0.027821175754070282, 0.004285551607608795, -0.002463610377162695, 0.016437366604804993, -0.026371601969003677, 0.029443632811307907, -0.005369407124817371, -0.017913538962602615, 0.023738430812954903, 0.005505720153450966, 0.03742293640971184, 0.02750200219452381, 0.02633170410990715, -0.03556109964847565, -0.021198352798819542, -0.04346061125397682, -0.013857392594218254, 0.010040624998509884, -0.008212034590542316, -0.012893225997686386, 0.0013066111132502556, 0.023645339533686638, -0.008178787305951118, -0.0033346842974424362, 0.012866628356277943, 0.009668257087469101, 0.020653100684285164, -0.02312668412923813, -0.01332543883472681, 0.03194381669163704, -0.022036179900169373, 0.06383443623781204, -0.01436274778097868, 0.036119651049375534, 0.012806783430278301, -0.0010198549134656787, 0.030507540330290794, 0.001693108701147139, -0.014921299181878567, -0.02800735831260681, -0.00839821808040142, 0.008285177871584892, 0.025932740420103073, -0.009987429715692997, -0.010958245024085045, -0.024589557200670242, -0.001067231991328299, 0.0017670834204182029, 0.010798659175634384, -0.011663082987070084, 0.022847408428788185, 0.022036179900169373, -0.0232995692640543, 0.012095295824110508, -0.0074407015927135944, -0.02750200219452381, -0.015173977240920067, -0.06133425235748291, -0.015772424638271332, -0.023844821378588676, 0.02460285648703575, -0.04641295596957207, -0.004957142751663923, -0.030268162488937378, -0.05420607700943947, 0.0323161818087101, -0.036625009030103683, 0.013052811846137047, -0.049365296959877014, 0.00892352219671011, 0.013564817607402802, -0.0027229376137256622, -0.0017354987794533372, -0.016410769894719124, 0.004584775306284428, -0.027236025780439377, 0.015559643507003784, 0.0009234382887370884, 0.015080885961651802, 0.017793849110603333, -0.0032515665516257286, 0.02262132801115513, -0.027900967746973038, 0.005415952764451504, 0.004099367652088404, 0.012088646180927753, -0.03143845871090889, 0.004697815515100956, -0.05878087505698204, 0.013265593908727169, 0.009136303327977657, -0.001615809160284698, -0.008690792135894299, 0.005076832603663206, -0.011430353857576847, -0.005289613734930754, -0.02006795071065426, 0.02872549556195736, -0.0037137013860046864, 0.009422228671610355, 0.012161790393292904, -0.01403027679771185, -0.010625774040818214, 0.02941703610122204, -0.009216096252202988, -0.025680061429739, 0.024762442335486412, -0.003417802043259144, -0.0037070519756525755, 0.015878815203905106, 0.012574054300785065, 0.0022990370634943247, 0.011769474484026432, 0.01342517975717783, -0.011011440306901932, -0.012354623526334763, -0.0019881767220795155, -0.011875865049660206, -0.016211286187171936, -0.026225313544273376, -0.005934607703238726, -0.03925817832350731, -0.0035108940210193396, -0.000882710563018918, -0.01988176628947258, 0.025759855285286903, 0.0044916835613548756, -0.00021569056843873113, 0.005382705945521593, -0.006400067359209061, -0.0066161733120679855, 0.03125227615237236, -0.03162464499473572, -0.005086806602776051, -0.02137123793363571, 0.01546655222773552, -0.0056985532864928246, 0.01801992952823639, 0.008032499812543392, -0.03601326048374176, 0.025201303884387016, 0.048833344131708145, 0.017102308571338654, -0.04524265602231026, 0.03468337655067444, -0.028645703569054604, 0.01598520763218403, 0.02429698221385479, 0.01837899722158909, 0.022847408428788185, -0.012248232029378414, 0.026291808113455772, 0.007420753128826618, -0.027103038504719734, 0.032209791243076324, 0.006586250849068165, 0.021012168377637863, 0.019123733043670654, 0.04215732589364052, -0.01428295485675335, -0.0010265043238177896, -0.021278144791722298, -0.009947532787919044, -0.02734241634607315, 0.00022026205260772258, 0.02018764056265354, -0.04633316025137901, -0.025919441133737564, 0.0038400401826947927, -0.029337242245674133, 0.0019316566176712513, -0.046944908797740936, -0.0383804552257061, -0.029789403080940247, 0.015134081244468689, -0.0007617742521688342, -0.011569991707801819, 0.016849631443619728, 0.030640529468655586, -0.006503133103251457, -0.009388981387019157, 0.02752860076725483, -0.007527143694460392, 0.02446986734867096, 0.0012135192519053817, 0.02494862489402294, -0.04742366820573807, 0.002596598584204912, -0.002061320235952735, 0.027927566319704056, 0.0031933842692524195, 0.025188004598021507, -0.00014763791114091873, 0.011151078157126904, -0.007168075069785118, -0.0015892115188762546, -0.00016519654309377074, 0.015134081244468689, -0.00041018612682819366, -0.0002321063366252929, 0.022315455600619316, 0.009694854728877544, -0.016756540164351463, -0.01198225561529398, -0.03125227615237236, 0.006007751449942589, 0.006396742537617683, 0.010845204815268517, 0.010047274641692638, 0.017793849110603333, -0.013804196380078793, -0.0017537845997139812, 0.020799387246370316, -0.007493896875530481, 0.009621711447834969, -0.0009749712771736085, -0.023858120664954185, -0.016197988763451576, -0.024403372779488564, 0.05011003091931343, 0.014681920409202576, 0.01097154337912798, -0.0008049954776652157, -0.004614697769284248, -0.027036543935537338, 0.03774211183190346, -0.013684507459402084, -0.03936456888914108, -0.004395266994833946, -0.015173977240920067, -0.009329136461019516, -0.003833390772342682, 0.033699262887239456, -0.020413720980286598, 0.02718283049762249, 0.014415943063795567, 0.009109705686569214, -0.04960467666387558, 0.0601639561355114, -0.056653063744306564, 0.02480233833193779, 0.025520475581288338, -0.00419910904020071, -0.0003688350261654705, -0.011323963291943073, 0.02698334865272045, -0.0300819780677557, 0.009103056974709034, -0.034045033156871796, -0.009109705686569214, 0.005110079422593117, -0.015147379599511623, 0.015905413776636124, -0.023499051108956337, -0.01712890714406967, 0.040534865111112595, -0.034576985985040665, -0.013165852054953575, 0.015014391392469406, -0.027980761602520943, -0.009960832074284554, 0.0034078280441462994, -0.0035807129461318254, 0.0012858316767960787, 0.0033795679919421673, 0.012055398896336555, -0.023898016661405563, -0.03869962692260742, 0.002372180810198188, -0.026451393961906433, -0.0026148846372962, -0.00960176344960928, 0.010166963562369347, -0.015400057658553123, 0.012514209374785423, 0.005741774570196867, 0.025866245850920677, -0.008125592023134232, 0.002661430509760976, -0.005585513077676296, 0.013205748982727528, -0.029443632811307907, 0.010080520994961262, 0.03806128352880478, 0.012341324239969254, -0.00849795900285244, -0.02278091385960579, -0.01631767861545086, 0.016011804342269897, -0.01018691249191761, 0.008172137662768364, -0.0029407062102109194, -0.022528236731886864, -0.015014391392469406, -0.004724413156509399, -0.01614479348063469, 0.02973620779812336, 0.0021992959082126617, 0.005625409539788961, 0.04838118329644203, -0.016038402915000916, -0.007573689799755812, 0.04471070319414139, -0.0012126880465075374, 0.018605077639222145, -0.02837972715497017, 0.001828590640798211, 0.0005514863296411932, 0.017727354541420937, 0.017594367265701294, -0.007846316322684288, 0.007274466101080179, 0.005449200049042702, -0.015479850582778454, -0.016756540164351463, 0.0026581059210002422, 0.008770585991442204, 0.0029756156727671623, 0.02159731835126877, -0.033699262887239456, -0.02020093984901905, -0.01266714558005333, 0.048514172434806824, 0.011250819079577923, -1.659757617744617e-05, 0.052078261971473694, 0.008890274912118912, 0.030640529468655586, 0.0006433314410969615, 0.015506448224186897, 0.01581232249736786, -0.0336194708943367, 0.012853330001235008, -0.017049113288521767, 0.01835240051150322, 0.02139783464372158, -0.007793120574206114, -0.0021361263934522867, -0.032874733209609985, 0.03596006706357002, -0.012574054300785065, -0.003404503222554922, 0.013192449696362019, -0.003773546079173684, 0.00790616124868393, 0.009123004972934723, -0.00581824267283082, 0.027289221063256264, -0.012008853256702423, 0.03854003921151161, -0.0030022133141756058, -0.017115607857704163, 0.037130363285541534, -0.008331723511219025, 0.0035175434313714504, 0.008032499812543392, 0.009621711447834969, -0.048487573862075806, -0.03561429679393768, -0.0044019161723554134, -0.009189498610794544, 0.011077934876084328, -0.03468337655067444, 0.016716642305254936, 0.014269656501710415, 0.004724413156509399, -0.028831886127591133, -0.010665670037269592, -0.029629817232489586, 0.014495736919343472, 0.05862129107117653, -0.01581232249736786, 0.0178204458206892, 0.027129635214805603, 0.004175836220383644, 0.015572942793369293, 0.0073875063098967075, -0.01768745854496956, -0.0011844279943034053, -0.02139783464372158, 0.01969558373093605, 0.005565565079450607, -0.022155869752168655, -0.009674906730651855, 0.015519747510552406, 0.02103876695036888, -0.002332284115254879, 0.03768891468644142, -0.02243514358997345, 0.0034876209683716297, -0.0020929051097482443, 0.0232995692640543, 0.0030836686491966248, -0.00806574709713459, 0.0010356472339481115, 0.03800808638334274, 0.011722927913069725, 0.005206495989114046, -0.050349410623311996, 0.011683031916618347, -0.005808268673717976, -0.02478903904557228, 0.013857392594218254, -0.017062412574887276, 0.012461014091968536, 0.013870690949261189, -0.0034477245062589645, -0.02345915511250496, -0.014003679156303406, -0.010379745624959469, 0.008524556644260883, -0.04635975882411003, -0.011895813047885895, -0.0029473556205630302, -0.04157217592000961, -0.014775012619793415, -0.004983740393072367, -0.015666034072637558, -0.0006109154783189297, 0.01164978463202715, 0.038806017488241196, -0.00015439123671967536, -0.007600287441164255, 0.022528236731886864, -0.0032465795520693064, -0.00986109022051096, -0.015187276527285576, -0.01662355102598667, -0.03340668976306915, -0.020626502111554146, -0.002659768098965287, 0.01103138830512762, 0.010353147983551025, -0.008876976557075977, -0.017940135672688484, -0.02363204024732113, -0.009249343536794186, 0.014655322767794132, 0.0295766219496727, 0.008132240734994411, 0.042024336755275726, -0.00488067464902997, 0.02310008741915226, -0.02125154808163643, 0.040854040533304214, -0.006961943116039038, 0.05125373229384422, 0.01985516957938671, 0.03138526529073715, -0.021623915061354637, 0.004212407860904932, -0.023339465260505676, -0.01952269859611988, 0.017886940389871597, 0.011217571794986725, 0.019801974296569824, -0.004438488278537989, -0.00743405194953084, -0.012381221167743206, 0.013883990235626698, 0.0019000718602910638, 0.00773327611386776, 0.0003378736728336662, -0.012441065162420273, 0.008551154285669327, 0.04077424481511116, -0.023472454398870468, 0.010027325712144375, -0.03021496720612049, 0.01563943736255169, -0.02446986734867096, -0.02087917923927307, -0.00730771292001009, -0.0019981509540230036, 0.005841515958309174, -0.02462945319712162, -0.026105623692274094, 0.017620963975787163, -0.029789403080940247, 0.013112656772136688, -0.00984114222228527, -0.008351672440767288, 0.0012941434979438782, 0.04234350845217705, -0.0027212752029299736, 0.0029174331575632095, 0.04029548913240433, -0.023352764546871185, 0.008351672440767288, 0.009502021595835686, -0.011669732630252838, 0.017740653827786446, -0.0033596197608858347, 0.009621711447834969, 0.029816001653671265, 0.017886940389871597, 0.014748414047062397, 0.06239816173911095, 0.016783136874437332, 0.027395611628890038, 0.042237117886543274, -0.02851271443068981, -0.0016906150849536061, -0.0034311008639633656, -0.017261896282434464, -0.016517160460352898, -0.006007751449942589, -0.0499238483607769, -0.028805289417505264, 0.062451355159282684, 0.015094184316694736, 0.01274693850427866, -0.03806128352880478, 0.03415142372250557, 0.0043985918164253235, -0.004820829723030329, 0.0001596899819560349, 0.0016050038393586874, 0.0164506658911705, -0.002285738242790103, -0.01077206153422594, 0.006835604086518288, -0.006380118895322084, -0.012374571524560452, -0.010180262848734856, -0.004614697769284248, 0.0008236969588324428, 0.011330612003803253, -0.015426655299961567, 0.021863294765353203, 0.03005537949502468, 0.011370508931577206, -0.020307330414652824, -0.014256357215344906, -0.019083837047219276, -0.014974494464695454, 0.01247431244701147, 0.01461542584002018, -0.00781306903809309, -0.02496192418038845, 0.01239451952278614, -0.030534138903021812, -0.012201686389744282, 0.03173103556036949, 0.020998869091272354, 0.026039130985736847, 0.02038712240755558, -0.03199701011180878, -0.010818607173860073, 0.012813433073461056, 0.01051938347518444, -0.005775021854788065, 0.0010373095283284783, 0.040348682552576065, 0.021171754226088524, 0.010605826042592525, 0.02512151002883911, 0.0013157540233805776, -0.020972272381186485, -0.01903064176440239, 0.023020293563604355, 0.012208336032927036, 0.022993694990873337, -0.005575539078563452, -0.004112666472792625, -0.06505792587995529, 0.014389345422387123, -0.007154776249080896, -0.031544849276542664, 0.0021145157516002655, 0.011769474484026432, 0.022807512432336807, -0.007493896875530481, 0.019629089161753654, 0.00637014489620924, 0.020786087960004807, 0.04449792206287384, 0.033220503479242325, -0.04335422068834305, 0.024682648479938507, -0.006044323090463877, -0.003836715593934059, 0.00952861923724413, 0.01680973544716835, -0.007946057245135307, -0.017966734245419502, -0.0104595385491848, -0.00046504384954459965, 0.04149238392710686, -0.00416918657720089, -0.007580339442938566, 0.004471735097467899, -0.025786451995372772, 0.013212398625910282, 0.003996301908046007, -0.006799032445997, -0.005971179343760014, -0.01196230761706829, 0.018392296507954597, 0.030108574777841568, 0.017793849110603333, 0.030986299738287926, 0.020985571667551994, -0.01952269859611988, -0.009369033388793468, -0.017461378127336502, 0.011430353857576847, 0.009814544580876827, -0.00025184679543599486, 0.00010400109022157267, 0.025693360716104507, -0.01469521876424551, -0.013298841193318367, 0.01011376827955246, 0.007334310561418533, -0.02274101786315441, 0.02191649004817009, 0.007128178607672453, 0.005003688856959343, 0.030613930895924568, 0.02617211826145649, -0.028432922437787056, 0.022475041449069977, 0.03529512509703636, 0.030720321461558342, -0.020932376384735107, -0.011257468722760677, 0.01291982363909483, -0.024709247052669525, -0.02262132801115513, -0.014588828198611736, 0.03364606574177742, -0.03566749021410942, 0.044604312628507614, 0.005163275171071291, 0.030667126178741455, -0.036252640187740326, -0.00045257617603056133, 0.013631312176585197, 0.003208345267921686, -0.017421482130885124, 0.027954163029789925, 0.031225677579641342, 0.00849131029099226, -0.020147744566202164, -0.007786471396684647, -0.014681920409202576, 0.018764665350317955, 0.009595113806426525, 0.027129635214805603, 0.025188004598021507, -0.01819281466305256, -0.025254499167203903, -0.022355351597070694, -0.031012896448373795, 0.02617211826145649, 0.028911679983139038, -0.017554469406604767, 0.005711852107197046, -0.02073289267718792, -0.020320629701018333, 0.003040447598323226, -0.024536361917853355, -0.043061647564172745, -0.002678054152056575, -0.011935709975659847, 0.0007385012577287853, -0.011543394066393375, 0.002734574256464839, 0.010153665207326412, -0.0036139599978923798, -0.024350177496671677, -0.022661224007606506, 0.027475405484437943, 0.005658656824380159, -0.014123369008302689, -0.012613950297236443, 0.014402644708752632, 0.021836696192622185, 0.009315838105976582, 0.008597700856626034, 0.019748779013752937, 0.003243254730477929, 0.007833017036318779, -0.02920425496995449, -0.00010722190199885517, 0.003404503222554922, 0.008664194494485855, -0.002446986734867096, 0.014376047067344189, 0.007088282145559788, -0.014721816405653954, 0.02936384081840515, -0.02888508141040802, 0.01731509156525135, -0.02393791265785694, -0.005811593495309353, 0.0008249437087215483, -0.002781120128929615, -0.0005851489841006696, -0.01682303287088871, -0.00824528094381094, -0.020134445279836655, -0.040189098566770554, -0.02923085168004036, -0.015599540434777737, -0.02243514358997345, 0.018937548622488976, -0.0280605535954237, 0.018445491790771484, 0.0012883251765742898, 0.030028782784938812, -0.03518873453140259, -0.009202797897160053, 0.029683012515306473, -0.018658272922039032, -0.017953434959053993, 0.010931647382676601, -0.007473948411643505, -0.00908310804516077, 0.0012683769455179572, 0.010665670037269592, -0.01646396517753601, 5.3507053962675855e-05, -0.03157144784927368, -0.012514209374785423, -0.017408182844519615, -0.012381221167743206, -0.011496847495436668, 0.0005269665853120387, 0.019908364862203598, 0.026916854083538055, 0.030161771923303604, 0.022315455600619316, -0.0035873623564839363, -0.028831886127591133, -0.020985571667551994, -0.029124461114406586, -0.026278508827090263, -0.009295890107750893, -0.007454000413417816, 0.0019831897225230932, -0.004524930380284786, 0.01917692832648754, -0.022634627297520638, 0.012866628356277943, 0.012121893465518951, -0.011776123195886612, -0.015506448224186897, -0.009275941178202629, -0.019097136333584785, -0.011357209645211697, 0.008285177871584892, -0.004893973469734192, -0.016862930729985237, 5.124729068484157e-05, 0.005153300706297159, -0.017368286848068237, -0.025959337130188942, -0.00480088172480464, -0.02291390299797058, -0.001048114849254489, -0.010978193022310734, -0.005030286498367786, -0.06989870965480804, -0.019123733043670654, -0.02240854687988758, 0.00458145048469305, -0.006975241936743259, -0.0008041642722673714, 0.01528036780655384, -0.00303546036593616, -0.0009974130662158132, -0.013159203343093395, -0.013684507459402084, -0.014455839991569519, 0.008424815721809864, 0.030002184212207794, 0.009894337505102158, 0.019123733043670654, 0.0012733640614897013, -0.025227900594472885, 0.0033429961185902357, -0.006689317058771849, 0.0056054615415632725, 0.003956404980272055, 0.03681119158864021, -0.004371993709355593, -0.03654521331191063, 0.006140739656984806, -0.0007131503662094474, -0.026384899392724037, 0.008584401570260525, -0.023565545678138733, 0.009375683031976223, 0.014642023481428623, -0.021677110344171524, -0.028805289417505264, -0.018086424097418785, 0.016942722722887993, 0.007726626470685005, -0.006100843194872141, 0.00035782193299382925, 0.019908364862203598, 0.0036837789230048656, -0.01614479348063469, -0.002428700914606452, 0.011337261646986008, 0.002960654441267252, -0.005153300706297159, 0.014070173725485802, -0.025201303884387016, -0.008012551814317703, 0.013531570322811604, 0.010645722039043903, 0.028778690844774246, -0.015692632645368576, -0.016384171321988106, -0.009016614407300949, 0.000210703510674648, 0.005685254465788603, -0.03021496720612049, 0.01680973544716835, -0.02460285648703575, 0.05183888226747513, 0.015572942793369293, 0.0021959710866212845, -0.011496847495436668, -0.02992239221930504, 0.02716953121125698, -0.003352970350533724, 0.043221231549978256, 0.027475405484437943, -0.027634991332888603, 0.014522334560751915, 0.014389345422387123, -0.02175690419971943, 0.02363204024732113, 0.009847791865468025, 0.022169167175889015, 0.010053923353552818, 0.009834492579102516, 0.012148491106927395, 0.025946037843823433, -0.029762806370854378, -0.005086806602776051, -0.011437003500759602, -0.0022807512432336807, -0.005615435540676117, -0.009748050011694431, -0.016197988763451576, -0.017075711861252785, 0.015599540434777737, -0.0043819681741297245, 0.025733256712555885, 0.0044551114551723, -0.0029473556205630302, 0.0018734742188826203, -0.015519747510552406, 0.05348793789744377, -0.023499051108956337, 0.030959701165556908, -0.0128400307148695, -0.007992603816092014, -0.010665670037269592, 0.004086068831384182, 0.0021793474443256855, 0.009482073597609997, 0.005552266258746386, -0.004907272290438414, -0.019097136333584785, -0.0029407062102109194, 0.011443652212619781, -0.020772788673639297, 0.001160323852673173, 0.001148687326349318, -0.03572068735957146, 0.03633243218064308, -0.012587352655827999, -0.003221644088625908, 0.012254881672561169, 0.005369407124817371, -0.013697805814445019, 0.012713692151010036, -0.004232356324791908, 0.027448806911706924, 0.012367921881377697, -0.02107866294682026, -0.01403027679771185, -0.007028437219560146, 0.0011752850841730833, -0.0007916965987533331, 0.0055722142569720745, 0.012846680358052254, -0.020825983956456184, -0.021823396906256676, 0.006556328386068344, -0.005415952764451504, 0.016942722722887993, -0.017408182844519615, 0.01784704439342022, -0.002676391741260886, 0.03042774833738804, -0.024762442335486412, 0.004854077007621527, -0.014189863577485085, -0.019256722182035446, -0.011716279201209545, -0.008976717479526997, 0.012208336032927036, -0.008730689063668251, -0.0104595385491848, 0.006074245553463697, 0.01069891732186079, 0.011443652212619781, 0.00867084413766861, 0.027954163029789925, 0.04686511680483818, -0.02936384081840515, -0.03056073561310768, -0.014681920409202576, 0.02020093984901905, -0.027448806911706924, -0.0164506658911705, 0.004877349827438593, 0.018059825524687767, 0.011450301855802536, 0.009807894937694073, -0.014163265936076641, -0.0030437721870839596, -0.007992603816092014, -0.016517160460352898, -0.013365334831178188, -0.01027335412800312, 0.009807894937694073, -0.0014869766309857368, -0.02651788853108883, -0.014575529843568802, -0.010319900698959827, -0.016929425299167633, 0.0065064579248428345, 0.0030221615452319384, 0.029948988929390907, -0.004551528487354517, -0.03181082755327225, 0.005924633704125881, 0.0029905769042670727, -0.008916872553527355, 0.0028891731053590775, 0.008976717479526997, -0.018126320093870163, 0.010632423684000969, 0.006855552550405264, 0.005096780601888895, -0.017102308571338654, 0.010260055772960186, -0.007447350770235062, 0.005046910140663385, 0.0011029726592823863, 0.007946057245135307, 0.02208937518298626, 0.01562613807618618, -0.02207607589662075, -0.007846316322684288, -0.0028542636428028345, -0.009249343536794186, 0.013844093307852745, 0.004498332738876343, -0.010811957530677319, 0.015772424638271332, -0.01819281466305256, 0.0019782024901360273, 0.017381584271788597, -0.03345988318324089, 0.01077206153422594, -0.002816029591485858, 0.035401515662670135, 0.01888435333967209, -0.00806574709713459, 0.0015734190819784999, 0.007493896875530481, -0.01307276077568531, 0.009801245294511318, -0.031039495021104813, 0.04207753390073776, -0.0042223818600177765, 0.008943470194935799, 8.576713298680261e-05, -0.0035241928417235613, -0.00637014489620924, 0.02936384081840515, -0.05061538890004158, -0.024031005799770355, 0.000509096251334995, 0.019841870293021202, 0.019775375723838806, -0.002942368621006608, 0.007021788042038679, -0.007520494516938925, 0.011869215406477451, 0.02533429116010666, -0.014469139277935028, 0.018817860633134842, 0.011596589349210262, -0.004215732682496309, -0.010885100811719894, 0.01103138830512762, -0.015067586675286293, 0.012367921881377697, 0.027063140645623207, -0.030986299738287926, 0.005545616615563631, 0.01768745854496956, 0.02073289267718792, 0.00815883930772543, 0.02274101786315441, 0.008045799098908901, -0.012773537077009678, 0.003983002621680498, -0.01663685031235218, 0.022834109142422676, -0.02666417509317398, 0.007281115278601646, -0.008950119838118553, -0.01764756254851818, 0.0014819896314293146, 0.014123369008302689, -0.01027335412800312, 0.013298841193318367, 0.006908747833222151, -0.009807894937694073, -0.0004434332367964089, 0.009741401299834251, -0.012028801254928112, -0.003411152632907033, 0.0030554085969924927, -0.03486955910921097, 0.005196521990001202, 0.005396004766225815, -0.006809006445109844, -0.009455475956201553, -0.02494862489402294, 0.0030620580073446035, -0.023339465260505676, -0.001956591848284006, -0.004129290115088224, -0.02597263641655445, 0.020121145993471146, 0.0050103385001420975, -0.006835604086518288, -0.030667126178741455, -0.008930171839892864, 0.018605077639222145, -0.00038940669037401676, 0.002515143249183893, 0.021304743364453316, 0.0052829645574092865, 0.0014794960152357817, 0.02784777246415615, 0.01953599788248539, 0.004647945053875446, -0.0071946727111935616, 0.004980416037142277, -0.013571467250585556, 0.018219411373138428, -0.004947168752551079, -0.03359287232160568, 0.01562613807618618, 0.001973215490579605, -0.00013070266868453473, 0.006160688120871782, -0.005422602407634258, -0.0031252275221049786, 0.004564827308058739, -0.027634991332888603, -0.021517524495720863, 0.003070369828492403, -0.04090723395347595, 0.0034942703787237406, 0.004950493574142456, 0.00730771292001009, 0.005452524870634079, -0.002937381388619542, -0.026916854083538055, 0.013006266206502914, -0.015759127214550972, 0.02939043752849102, -0.004395266994833946, -0.048354584723711014, -1.0961153748212382e-05, -0.00890357419848442, 0.0010979855433106422, 0.009182849898934364, 0.003336346708238125, -0.03673139959573746, 0.031677838414907455, 0.010831905528903008, 0.019908364862203598, 0.002648131689056754, -0.008517907932400703, 0.001968228491023183, 0.008311775512993336, -0.0028176920022815466, -0.006074245553463697, 0.01973547972738743, 0.01502768974751234, -0.005974504165351391, 0.007952706888318062, 0.006410041358321905, 0.018777962774038315, -0.021623915061354637, -0.0009101394098252058, -0.007121529430150986, -0.018099721521139145, 0.02074619196355343, 0.005512369330972433, 0.008345022797584534, -0.013544869609177113, 0.013139254413545132, 0.024576257914304733, 0.006453262642025948, 0.001330715254880488, -0.01461542584002018, -0.04795562103390694, -0.007520494516938925, 0.02872549556195736, -0.012188388034701347, -0.0058780875988304615, -0.0065397052094340324, -0.002116178162395954, -0.010100469924509525, -0.033858850598335266, 0.01528036780655384, -0.012946421280503273, -0.014761713333427906, -0.001368118217214942, -0.0071946727111935616, 0.012434416450560093, -0.008025850169360638, 0.03244917094707489, 0.0022940500639379025, 0.00730771292001009, 0.02276761643588543, -0.00424897950142622, -0.01650386117398739, 0.028805289417505264, 0.01486810389906168, -0.028273334726691246, -0.0071015809662640095, 0.002061320235952735, 0.003796819131821394, 0.01631767861545086, -0.017275193706154823, -0.01969558373093605, 0.005342809483408928, -0.01291317492723465, -0.008125592023134232, 0.00934908539056778, 0.00849795900285244, 0.009615061804652214, -0.023020293563604355, 0.0061640129424631596, -0.021530823782086372, 0.0009558541933074594, -0.025453981012105942, 0.024323580786585808, -0.01444254070520401, 0.04159877449274063, -0.013318789191544056, 0.03633243218064308, -0.017581067979335785, 0.0024336879141628742, -0.010752112604677677, -0.005585513077676296, -0.016517160460352898, 0.008803832344710827, -0.007826367393136024, -0.020254135131835938, -0.018232710659503937, 0.001765421126037836, -0.021131858229637146, 0.028778690844774246, -0.006742512341588736, 0.012873277999460697, -0.019815273582935333, -0.02513480931520462, -0.02681046351790428, 2.8623677280847915e-05, -0.009807894937694073, 0.0373697429895401, -0.0024951950181275606, -0.013006266206502914, 0.00488067464902997, -0.026251912117004395, -0.0015842244029045105, 0.007015138398855925, -0.015227172523736954, 0.010326550342142582, 0.030720321461558342, -0.014761713333427906, 0.0032299559097737074, 0.0045116315595805645, -0.005625409539788961, -0.018551882356405258, -0.027634991332888603, -0.0024719219654798508, -0.004923895932734013, -0.02327297069132328, 0.008185436949133873, -0.005668630823493004, 0.006110817193984985, -0.010811957530677319, 0.0008719052420929074, 0.009149602614343166, 0.014495736919343472, -0.045615024864673615, -7.911771535873413e-05, 0.026757268235087395, 0.018738066777586937, 0.023233074694871902, -0.01751457341015339, -0.0023505701683461666, -0.012959720566868782, 0.025360889732837677, 0.024695947766304016, 0.001174453878775239, 0.021477628499269485, 0.0028708872850984335, -0.014176564291119576, 0.023060189560055733, -0.0009616724564693868, 0.0002911199408117682, -0.02325967326760292, -0.016610251739621162, 0.02500182017683983, 0.015439954586327076, 0.01597190834581852, -0.012075347825884819, 0.010559279471635818, -0.04287546128034592, -0.010559279471635818, 0.008850378915667534, -0.00816548801958561, -0.01469521876424551, -0.007048385683447123, -0.009375683031976223, -0.00042805643170140684, -0.005575539078563452, -0.00045049822074361145, -0.002157737035304308, 0.0024436619132757187, -0.0012542469194158912, 0.018964147195219994, 0.025281095877289772, -0.016902826726436615, 0.034417398273944855, -0.03758252412080765, -0.005166599527001381, 0.02837972715497017, 0.008551154285669327, -0.007447350770235062, -0.0030554085969924927, 0.006868851371109486, -0.0040428475476801395, -0.008803832344710827, -0.008544505573809147, -0.03502914682030678, 0.009874389506876469, 0.011683031916618347, -0.015732528641819954, -0.01679643616080284, 0.005548941437155008, -0.0005344471428543329, 0.0012683769455179572, -0.0014811584260314703, 0.022342052310705185, -0.004887323826551437, -0.0037203507963567972, 0.008763936348259449, -0.012700392864644527, -0.0005169924115762115, -0.0016773162642493844, -0.004777608439326286, -0.011390456929802895, -0.018924251198768616, -0.002387142041698098, 0.000882710563018918, 0.01097154337912798, 0.0013032864080742002, 0.013485024683177471, -0.013179151341319084, -0.004594749305397272, -0.02359214425086975, -0.013012915849685669, 0.010885100811719894, 0.007427402772009373, 0.0017014204058796167, -0.0029739532619714737, 0.010685618966817856, 0.0008191255037672818, 0.005538967438042164, -0.002332284115254879, -0.02190319076180458, -0.006602874491363764, -0.004009600728750229, -0.004378643352538347, -0.015400057658553123, 0.013192449696362019, 0.013451777398586273, 0.054392259567976, 0.018990743905305862, 0.012627249583601952, 0.006486509460955858, 0.00816548801958561, -0.034417398273944855, 0.0008694117423146963, -0.006060946732759476, 0.004824154544621706, -0.002031398005783558, 0.01650386117398739, -0.024922028183937073, 0.007633534725755453, 0.0034643481485545635, -0.011091233231127262, -0.0063435472548007965, 0.00926929246634245, 0.02175690419971943, -0.008052447810769081, 0.02496192418038845, 0.005608785897493362, 0.0006919553270563483, -0.00429552560672164, 0.01214184146374464, -0.005196521990001202, 0.010984842665493488, 0.001984851900488138, -0.008963419124484062, 0.0062936763279139996, 0.020001456141471863, 0.00849131029099226, 0.0017172128427773714, 0.008724039420485497, 0.0027378988452255726, -0.0029174331575632095, 0.0019748779013752937, 0.004760984797030687, 0.017793849110603333, 0.008983367122709751, 0.007048385683447123, -0.014509035274386406, 0.017913538962602615, 0.017594367265701294, 0.02226226031780243, -0.0016872903797775507, -0.01953599788248539, -0.005130027886480093, -0.0010747126070782542, -0.014322851784527302, 0.0005165768670849502, -0.034071631729602814, -0.003983002621680498, 0.005093456245958805, -0.003996301908046007, 0.006253779865801334, -0.01646396517753601, 0.006948644295334816, 0.0009683218668214977, 0.016929425299167633, -0.0007152282632887363, 0.009388981387019157, -0.001431287731975317, -0.010705566965043545, -0.01732838898897171, -0.010173613205552101, -0.011217571794986725, -0.002003137953579426, -0.02597263641655445, 0.010705566965043545, -0.013066111132502556, -0.003323047887533903, 0.019137032330036163, 0.01496119610965252, -0.015559643507003784, 0.009535268880426884, 0.01735498756170273, 0.0025018444284796715, 0.028459519147872925, -0.007380856666713953, 0.008617648854851723, 0.010785359889268875, 0.012008853256702423, -0.01735498756170273, -0.005020312499254942, -0.004282226786017418, 0.0035241928417235613, 0.010632423684000969, -0.009182849898934364, 0.009123004972934723, -0.0393911674618721, 0.00890357419848442, 0.003276502015069127, -0.0014138330006971955, 0.013012915849685669, -0.013618012890219688, -0.010545981116592884, -0.003773546079173684, -0.010811957530677319, 0.023179879412055016, 0.010559279471635818, 0.018472090363502502, 0.006629472132772207, -0.010153665207326412, -0.003371256170794368, 0.024190591648221016, -0.018950847908854485, 0.024562958627939224, 0.0029589920304715633, -0.02188989147543907, -0.005602136719971895, -0.0013423517812043428, 0.004531580023467541, 0.0062005845829844475, 0.007507195696234703, -0.015413356944918633, 0.0007547092391178012, 0.023538948968052864, 0.004588100127875805, -0.024416672065854073, -0.01833910122513771, 0.004538229666650295, -0.008298476226627827, -0.0022940500639379025, 0.006270403508096933, 0.0013564818073064089, 0.01901734247803688, -0.018285905942320824, -0.011104532517492771, -0.016543757170438766, -0.012939772568643093, 0.008963419124484062, 0.006024375092238188, 0.013205748982727528, -0.000490394770167768, 0.01764756254851818, -0.003248241962864995, 0.007207971531897783, 0.001499444362707436, 0.023871419951319695, -0.01751457341015339, -0.0025417408905923367, 0.02514810860157013, 0.012427766807377338, 0.01546655222773552, 0.014509035274386406, -0.0031302147544920444, 0.0010206860024482012, -0.01512078195810318, 0.0014628724893555045, -0.01122422143816948, 0.023565545678138733, -0.01155004370957613, 0.006130765657871962, -0.018950847908854485, 0.027315819635987282, 0.00764018390327692, -0.01579902321100235, 0.013099358417093754, 0.005824892316013575, -0.003186734626069665, -0.010512733832001686, 0.02211597189307213, -0.008717389777302742, -0.01512078195810318, 0.006676018238067627, -0.0019416307331994176, 0.019110433757305145, 0.023485753685235977, 0.012454364448785782, 0.0006857214611954987, -0.008790533989667892, 0.03393864259123802, 0.016862930729985237, -0.01833910122513771, -0.013052811846137047, -0.021650513634085655, 0.007294414099305868, 0.022488340735435486, -0.034417398273944855, 0.005681929644197226, 0.008770585991442204, 0.0006200584466569126, 0.02500182017683983, 0.006207233760505915, -0.002342258347198367, -0.012341324239969254, 0.018432192504405975, -0.02191649004817009, 0.013671208173036575, 0.011782772839069366, 0.0015501461457461119, 0.042902059853076935, -0.007966005243360996, 0.014735115692019463, -0.014588828198611736, -0.008710741065442562, 0.009595113806426525, 0.022674523293972015, -0.00776652293279767, -0.010585877113044262, 0.002257478190585971, -0.01044623926281929, -0.02002805471420288, 0.017381584271788597, -4.3403051677159965e-05, -0.014482437632977962, -0.021185053512454033, -0.0030886558815836906, -0.027714785188436508, 0.006356846075505018, -0.05322195962071419, -0.018551882356405258, 0.016437366604804993, -0.0015351849142462015, -0.01190246269106865, 0.011915761046111584, 0.022129271179437637, 0.0037602472584694624, 0.009295890107750893, -0.0004529917787294835, -0.0051233782432973385, -0.0016823033802211285, 0.022342052310705185, -0.006330248434096575, -0.013112656772136688, 0.006064271554350853, -0.003231618320569396, -0.0033147360663861036, 0.01989506557583809, -0.031864020973443985, 0.026398198679089546, -0.011995554901659489, 0.0006907085189595819, 0.025533774867653847, 0.015187276527285576, 0.01598520763218403, -0.0036139599978923798, -0.0069552939385175705, 0.0043819681741297245, -0.003786844899877906, -0.0004783426702488214, 0.013411881402134895, -0.002435350324958563, -0.004428513813763857, 0.012620599940419197, -0.001693108701147139, 0.001954929670318961, 0.00274122366681695, 0.0054093035869300365, -2.1130092136445455e-05, -0.012028801254928112, 0.007540442980825901, -0.006961943116039038, 0.02018764056265354, 0.009103056974709034, 0.014269656501710415, -0.004747685976326466, -0.006060946732759476, -0.00781306903809309, 0.004032873548567295, 0.003727000206708908, 0.013857392594218254, 0.0038134425412863493, 0.008192085660994053, -0.0003565751831047237, 0.003042109776288271, -0.020347226411104202, 0.020134445279836655, -0.01836569979786873, 0.01901734247803688, 0.004172511398792267, -0.004900622647255659, 0.013857392594218254, 0.008458063006401062, -0.0007268647896125913, -0.003283151425421238, 0.0032449171412736177, -0.0006104999338276684, -0.01646396517753601, 0.02361874096095562, 0.004232356324791908, -0.00467786705121398, 0.01274693850427866, -0.029523426666855812, 0.008537855930626392, 0.005981153808534145, 0.0013564818073064089, -0.002141113393008709, -0.003306424245238304, 0.004937194753438234, -0.002342258347198367, 0.0076601323671638966, 0.023858120664954185, -0.013106008060276508, -0.012175088748335838, 0.01730179227888584, 0.0025051692500710487, -0.01662355102598667, 0.018139619380235672, -0.0016149779548868537, 0.002850939054042101, -0.01786034367978573, -0.007327661383897066, -0.012633899226784706, 0.008690792135894299, 0.0011927398154512048, -0.003017174545675516, -0.001893422449938953, -0.005695228464901447, 0.0018202788196504116, -0.004115991294384003, 0.012866628356277943, 0.004262278322130442, -0.00890357419848442, 0.0015817309031262994, -0.007035086862742901, 0.010406343266367912, 0.014096771366894245, -0.024190591648221016, 0.010353147983551025, -0.012367921881377697, 0.003780195489525795, -0.006685992237180471, 0.027262624353170395, -0.009575165808200836, 0.027422210201621056, -0.0055888378992676735, 0.011536744423210621, 0.004837453365325928, -0.048833344131708145, -0.0070816329680383205, -0.006147389300167561, 0.011217571794986725, -0.005346133839339018, 0.008743987418711185, 0.015852218493819237, -0.03989652171730995, 0.00831842515617609, 0.004568151663988829, 0.018126320093870163, -0.02888508141040802, 0.001459547784179449, -0.0029224203899502754, -0.030135173350572586, 0.012128543108701706, 0.005552266258746386, 0.001610822044312954, -0.017448078840970993, -0.0046712178736925125, 0.010911698453128338, 0.0025766503531485796, -0.011057985946536064, 0.020626502111554146, 0.006732538342475891, 0.002944030798971653, -0.008644246496260166, -0.0033263724762946367, 0.0037702214904129505, -0.013657909817993641, 0.021131858229637146, -0.003733649617061019, -0.006685992237180471, -0.01520057488232851, -0.0038300661835819483, -0.001926669618114829, -0.009847791865468025, -0.004285551607608795, 0.015253770165145397, -0.029097864404320717, 0.00023356088786385953, -0.004179160576313734, -0.04061466082930565, -0.017527872696518898, -0.002481896197423339, -0.010851854458451271, 0.017022516578435898, -0.0006050972733646631, -0.007427402772009373, -0.012627249583601952, -0.008624298498034477, 0.030986299738287926, -0.0022408547811210155, -0.019283318892121315, -0.012128543108701706, 0.01986846886575222, 0.006436638999730349, 0.029257450252771378, 0.01529366709291935, -0.006024375092238188, -0.005934607703238726, 0.011496847495436668, 0.0065397052094340324, -0.012055398896336555, -0.008059097453951836, 0.008431465364992619, -0.0032233064994215965, -0.012700392864644527, 0.029842598363757133, 0.006064271554350853, -0.01597190834581852, 0.01529366709291935, 0.006875500548630953, 0.009728102013468742, 0.024323580786585808, 0.004322123248130083, -0.006609524134546518, 0.0010198549134656787, 0.019775375723838806, -0.0043320972472429276, 0.012953070923686028, 0.0020097873639315367, 0.008192085660994053, -0.009182849898934364, 0.001604172633960843, -0.014455839991569519, -0.012181738391518593, 0.016051700338721275, 0.005382705945521593, 0.007001839578151703, 0.012427766807377338, 0.007673431187868118, -0.008943470194935799, 0.0005751748685725033, -0.018232710659503937, 0.008371620438992977, 0.006443288177251816, 0.01595860905945301, 0.0030437721870839596, -0.015240471810102463, 0.015838919207453728, -0.008205384947359562, -0.030773518607020378, -0.012680444866418839, 0.014908000826835632, -0.009388981387019157, -0.00670261587947607, 0.007074983324855566, -0.025254499167203903, 0.013571467250585556, 0.014522334560751915, -0.017753953114151955, -0.0036904283333569765, 0.004777608439326286, -0.0022691148333251476, 0.012773537077009678, -0.008584401570260525, 0.012627249583601952, 0.012188388034701347, -0.017235297709703445, -0.026265211403369904, -0.005130027886480093, 0.03367266431450844, 0.027581796050071716, -0.017408182844519615, -0.007833017036318779, -0.011363859288394451, -0.011151078157126904, 0.015360160730779171, 0.011337261646986008, -0.0036039857659488916, 0.01504098903387785, -0.01188251469284296, -0.0073742070235311985, 0.01470851805061102, -0.009927584789693356, -0.0295766219496727, 0.007553741801530123, 0.025041718035936356, -0.0014977819519117475, -0.012128543108701706, -0.0073742070235311985, 0.0028758742846548557, 0.0033562949392944574, -0.0037004025653004646, 2.629897790029645e-05, -0.005143326707184315, 0.010000728070735931, 0.006908747833222151, 0.0011736226733773947, -0.01453563291579485, -0.016716642305254936, -0.018046526238322258, 0.01554634515196085, 0.03298112377524376, 0.027103038504719734, 0.006975241936743259, 0.005691904108971357, 0.015413356944918633, 0.02548057958483696, 0.02087917923927307, -0.006486509460955858, -0.019123733043670654, -0.0012151815462857485, 0.0008203722536563873, 0.00925599317997694, 0.010984842665493488, -0.010206860490143299, 0.015705931931734085, 0.011576641350984573, -0.008557803928852081, -0.012274829670786858, 0.009774647653102875, 0.004987065214663744, 0.011563342064619064, 0.0003623934171628207, -0.0047077895142138, -0.010865152813494205, 0.017461378127336502, 0.0104595385491848, -0.015918713063001633, 0.019110433757305145, 0.017900239676237106, 0.018631676211953163, 0.016437366604804993, -0.01633097603917122, 0.019137032330036163, -0.007274466101080179, 0.012354623526334763, -0.0018801236292347312, 0.016610251739621162, -0.00043719940003938973, -0.011197623796761036, 0.016277780756354332, 0.007646833546459675, -0.018937548622488976, 0.0018917601555585861, 0.005528992973268032, -0.005522343795746565, 0.02018764056265354, 0.003392866812646389, -0.00841816607862711, -0.013132605701684952, 0.000842814042698592, 0.017634263262152672, -0.023831522092223167, 0.01767415925860405, -0.0094155790284276, -0.022488340735435486, 0.02936384081840515, -0.0017172128427773714, -0.009142952971160412, -0.0002267036761622876, -0.0013697806280106306, -0.01868487149477005, 0.005708527285605669, -0.019934961572289467, -0.01833910122513771, 0.015732528641819954, 0.005179898347705603, -0.0071946727111935616, -0.008444763720035553, 0.015572942793369293, 0.014921299181878567, 0.005725150927901268, 0.008291827514767647, -0.023858120664954185, 0.0004081081715412438, -0.010339848697185516, -0.02018764056265354, -0.016064999625086784, -0.0243102815002203, -0.011516796424984932, 0.0021361263934522867, 0.015346862375736237, -0.005149976350367069, -0.009462125599384308, 0.010938297025859356, 0.0183258019387722, 0.012547456659376621, 0.015892114490270615, 0.0013805859489366412, -0.003929807338863611, 0.006695966236293316, 0.015386759303510189, 0.011696330271661282, -0.0007551247836090624, 0.019815273582935333, -0.010752112604677677, 0.02324637398123741, -0.0091629009693861, -0.0007700860151089728, -0.02275431714951992, -0.018458791077136993, 0.014509035274386406, -0.013012915849685669, 0.02158401906490326, -0.004062796011567116, 0.005967854987829924, 0.016397470608353615, -0.0018103047041222453, 0.010379745624959469, -0.036784593015909195, -0.00857775192707777, 0.010220158845186234, -0.005060208961367607, -0.00875063706189394, -0.007793120574206114, 0.008557803928852081, -0.010412991978228092, -0.014735115692019463, 0.009535268880426884, 0.025932740420103073, 0.0018651623977348208, 0.012520859017968178, -0.0010979855433106422, -0.0040927184745669365, 0.012088646180927753, -0.039683740586042404, 0.0035241928417235613, -0.004887323826551437, -0.014974494464695454, 0.014562230557203293, 0.03215659782290459, 0.014841506257653236, -0.006902098190039396, -0.025241199880838394, -0.00043470587115734816, 0.005396004766225815, 0.03005537949502468, -0.013697805814445019, -0.0027894319500774145, -0.014229759573936462, -0.016211286187171936, 0.013365334831178188, -0.01478831097483635, -0.017793849110603333, -0.005076832603663206, -3.210423165000975e-05, 0.015612838789820671, -0.001571756787598133, -0.01679643616080284, -0.0017055763164535165, 0.013604714535176754, -0.008005902171134949, 0.010280003771185875, 0.004135939292609692, -0.024323580786585808, 0.0029972263146191835, -0.0022641276009380817, -0.010180262848734856, 0.0027212752029299736, -0.022834109142422676, 0.002757847076281905, 0.02105206437408924, 0.011463601142168045, 0.01087180245667696, 0.0007592806941829622, -0.002673066919669509, 0.015572942793369293, 0.011410405859351158, -0.02429698221385479, 0.0025832997635006905, -0.01649056188762188, 0.017448078840970993, 0.0012268180726096034, -0.017581067979335785, 0.014495736919343472, -0.020586606115102768, 0.0021992959082126617, -0.009222745895385742, -0.0004093549505341798, -0.02666417509317398, -0.014243058860301971, 0.003434425685554743, -0.0001235337695106864, -0.020825983956456184, 0.01716880314052105, 0.011323963291943073, -0.003780195489525795, -0.017235297709703445, -0.00942887831479311, 0.012946421280503273, -0.01291982363909483, 0.015732528641819954, 0.01018691249191761, -0.009442176669836044, -0.01700921729207039, -0.009648309089243412, 0.021118558943271637, -0.06101508066058159, 0.012328025884926319, -0.02256813272833824, -0.004115991294384003, -0.010432940907776356, -1.694823004072532e-05, -0.020985571667551994, -0.010419641621410847, -0.017581067979335785, 0.0013672871282324195, -0.007886212319135666, -0.02210267260670662, -0.020692996680736542, -0.004524930380284786, -0.014429242350161076, 0.024017706513404846, 0.0033213854767382145, -0.003213332500308752, -0.010160314850509167, 0.008524556644260883, -0.016038402915000916, -0.03500254824757576, 0.005003688856959343, -0.002706314204260707, 8.950743358582258e-05, 0.020320629701018333, -0.024842234328389168, 0.008364970795810223, -0.02175690419971943, -0.016038402915000916, 0.0029573296196758747, 0.005362757481634617, 0.006064271554350853, -0.009295890107750893, 0.004641295410692692, -0.025094913318753242, -0.01145695149898529, 0.03351308032870293, -0.014455839991569519, -0.010166963562369347, -0.0033030996564775705, -0.029683012515306473, -0.0014346124371513724, -0.017035815864801407, -0.000497459783218801, 0.0007027606479823589, -0.013564817607402802, -0.001440430642105639, 0.013066111132502556, -0.0009575165458954871, 0.0065397052094340324, 0.015054287388920784, -0.01816621609032154, 0.007234569638967514, 0.0005199015722610056, 0.0019582542590796947, 0.011975605972111225, 0.00581824267283082, -0.008584401570260525, 0.01071886532008648, 0.012421117164194584, -0.010140365920960903, -0.01835240051150322, -0.01469521876424551, -0.003191721858456731, 0.010226808488368988, -0.01968228444457054, -0.01027335412800312, 0.003640557639300823, -0.027036543935537338, 0.01751457341015339, -0.015932010486721992, -0.002141113393008709, 0.012421117164194584, 0.011496847495436668, -0.005701878108084202, 0.0035408164840191603, 0.016729941591620445, 0.002087918110191822, -0.0046379705891013145, 0.01282008271664381, 0.015227172523736954, 0.022302156314253807, -0.009375683031976223, -0.003959729801863432, -0.006582926027476788, -0.00867084413766861, -0.0002379245706833899, -0.01647726446390152, -0.0037436236161738634, 0.00958846416324377, 0.004495008382946253, -0.006433314178138971, 0.00806574709713459, -0.01162983663380146, -0.0209190770983696, -0.011516796424984932, 0.005801619496196508, 0.015067586675286293, -0.030507540330290794, 0.017049113288521767, 0.00960841216146946, 0.019775375723838806, -0.04125300422310829, 0.016437366604804993, -0.02548057958483696, 0.023379363119602203, 0.029496828094124794, -0.0034876209683716297, 0.025547074154019356, 0.005947906523942947, 0.013990380801260471, -0.0015584579668939114, -0.023352764546871185, -0.007952706888318062, 0.03675799444317818, 0.02562686614692211, 0.012241583317518234, 0.016876228153705597, 0.014243058860301971, -0.003999626263976097, -0.005415952764451504, 0.004232356324791908, 0.004145913757383823, 0.003537491662427783, 0.0027196130249649286, 0.018591780215501785, 0.008863677270710468, 0.009182849898934364, 0.015080885961651802, -0.007360908202826977, -0.008724039420485497, 0.022501638159155846, -0.011363859288394451, 0.013790898025035858, -0.0012808445608243346, -0.008411516435444355, 0.023818224668502808, -0.0010630760807543993, -0.014189863577485085, 0.016011804342269897, -0.010911698453128338, -0.0007015138398855925, 0.009847791865468025, 0.004714439157396555, -0.00960176344960928, -0.01019356120377779, 0.015599540434777737, -0.023911315947771072, -0.0040428475476801395, 0.010200210846960545, -0.0006736693903803825, 0.010280003771185875, 0.004770959261804819, 0.013923886232078075, -0.014376047067344189, -0.00637014489620924, -0.02920425496995449, -0.014894701540470123, -0.01411006972193718, 0.002671404741704464, 0.0038633132353425026, -0.025041718035936356, -0.0005784995737485588, 0.0051200538873672485, -0.012367921881377697, -0.008098994381725788, -0.013371984474360943, 0.006476535461843014, -0.00781306903809309, 0.0005992790102027357, 0.009043212048709393, 0.018046526238322258, 0.0058780875988304615, 0.016956022009253502, -0.021823396906256676, 0.016530459746718407, -0.0018967471551150084, 0.0037535978481173515, 0.014043576084077358, -0.018126320093870163, 0.004923895932734013, 0.022461742162704468, 0.010579227469861507, 0.002711301203817129, 0.023352764546871185, 0.004312149249017239, 0.006995190400630236, 0.013338737189769745, 0.0022940500639379025, 0.013857392594218254, -0.006386768538504839, -0.011423704214394093, -0.015160678885877132, 0.012707042507827282, -0.004903947468847036, 0.004574801307171583, 0.030693724751472473, 0.013112656772136688, 0.013990380801260471, 0.009754699654877186, -0.02038712240755558, 0.0333268940448761, -0.0066161733120679855, -0.0033895419910550117, -0.024243786931037903, -0.016783136874437332, 0.009156252257525921, 0.0012293115723878145, 0.04061466082930565, 0.016929425299167633, 0.0029224203899502754, -0.005063533782958984, 0.020653100684285164, -0.014123369008302689, 0.013258944265544415, -0.012434416450560093, 0.005336159840226173, -0.005728475749492645, -0.0009383994620293379, -0.018299205228686333, -0.01003397535532713, -0.00814554002135992, -0.017767250537872314, 0.0011320638004690409, -0.007666781544685364, 0.020839283242821693, -0.029177656397223473, -0.003284813603386283, -0.016197988763451576, 0.004086068831384182, -0.010891750454902649, -0.010426291264593601, -0.0006877994164824486, -0.0044019161723554134, 0.0053162118420004845, 0.001996488543227315, 0.012181738391518593, 0.0034543739166110754, -0.020825983956456184, -0.020998869091272354, -0.0044551114551723, 0.0036804541014134884, 0.0013365334598347545, -0.0209190770983696, -0.01666344702243805, 0.015932010486721992, -0.015187276527285576, 0.013032863847911358, 0.011310664005577564, -0.01358476560562849, 0.003421126864850521, -0.007041736040264368, -0.008657545782625675, 0.010639072395861149, -0.0011960645206272602, -0.01599850505590439, -0.004624671768397093, -0.004631321411579847, 0.00327317719347775, -0.002538416301831603, 0.05066858232021332, 0.010659021325409412, 0.012959720566868782, -0.0014861454255878925, -0.029975587502121925, -0.0015709255822002888, 0.006154038477689028, 0.004308824427425861, -0.006193934939801693, 0.030667126178741455, -0.009741401299834251, -0.009009964764118195, 0.01972218044102192, 0.007779821753501892, 0.019642388448119164, -0.009595113806426525, -0.010160314850509167, -0.024390073493123055, -0.006456587463617325, 0.0018950848607346416, -0.022647926583886147, -0.011949008330702782, 0.011663082987070084, -0.019309917464852333, 0.005801619496196508, -0.0026980023831129074, -0.00036966620245948434, -0.008045799098908901, -0.00833837315440178, -0.0031318769324570894, -0.0009342435514554381, 0.007527143694460392, -0.007706678472459316, 6.400066922651604e-05, 0.019496100023388863, 0.0035873623564839363, -0.019961560145020485, -0.0034410750959068537, -0.012780185788869858, 0.007966005243360996, -0.010506084188818932, -0.02835312858223915, 0.034417398273944855, -0.008059097453951836, 0.020254135131835938, 0.025041718035936356, -0.002781120128929615, -0.009229395538568497, 0.002164386445656419, 0.012028801254928112, -0.01836569979786873, 0.004714439157396555, -0.007161425892263651, 0.0006940332823432982, -0.00010701410792535171, -0.015386759303510189, 0.01428295485675335, 0.0030105251353234053, -0.004488358739763498, -0.0020912426989525557, -0.009275941178202629, 0.027236025780439377, -0.009395631030201912, 0.00958846416324377, 0.006277052685618401, 0.0011312325950711966, -0.02800735831260681, -0.0004247317265253514, -0.014828207902610302, 0.039683740586042404, 0.0014462489634752274, 0.015386759303510189, -0.02396451123058796, -0.015892114490270615, -0.016104895621538162, 0.01696932129561901, -0.0038101179525256157, 0.023658636957406998, -0.008770585991442204, 0.018804561346769333, -0.007367557846009731, 0.006682667415589094, -0.009502021595835686, 0.00781306903809309, 0.0017438104841858149, 0.009668257087469101, 0.02630510739982128, -0.01130401436239481, 0.021158454939723015, -0.026384899392724037, -0.0004247317265253514, 0.009980780072510242, 0.00394643098115921, -0.012148491106927395, -0.009056510403752327, 0.0007567871361970901, -0.010073872283101082, 0.01817951537668705, -0.013777598738670349, 0.010353147983551025, -0.006077570375055075, -0.0023522325791418552, -0.015852218493819237, 0.00011979346163570881, -0.009847791865468025, -0.010532681830227375, 0.002556702122092247, 0.008657545782625675, -0.009282590821385384, 0.007188023533672094, -0.016517160460352898, -0.013066111132502556, 0.0016266144812107086, 0.012966370210051537, 0.023538948968052864, 0.016011804342269897, -0.011483549140393734, 0.01952269859611988, 0.012361272238194942, 0.01732838898897171, 0.0009192823781631887, 0.010931647382676601, -0.01578572392463684, -0.013019565492868423, -0.0015484837349504232, 0.011975605972111225, -0.02243514358997345, -0.009402280673384666, -0.005971179343760014, 0.019097136333584785, -0.012500910088419914, 0.0290712658315897, 0.020932376384735107, 0.015346862375736237, 0.0002961069985758513, -0.010373095981776714, 0.022514937445521355, 0.027821175754070282, -0.005046910140663385, 0.0062005845829844475, 0.013139254413545132, -0.016171390190720558, -0.012973018921911716, -0.006177311763167381, -0.003826741361990571, -0.014083472080528736, -0.005961205344647169, -0.005981153808534145, -0.008876976557075977, -0.03242257237434387, 0.0030786816496402025, 0.0025234550703316927, -0.006553004030138254, 0.008617648854851723, -0.0064698862843215466, 0.0015941985184326768, 0.01801992952823639, 0.005405978765338659, 0.013923886232078075, -0.016344275325536728, -0.014003679156303406, 0.02344585582613945, 0.0014695218997076154, 0.025520475581288338, 0.0035108940210193396, 0.017062412574887276, 0.009654958732426167, 0.015612838789820671, -0.014668621122837067, 0.006114142015576363, 0.01682303287088871, -0.00865089613944292, -0.005199846811592579, 0.0005855645867995918, 0.01920352689921856, 0.0017321740742772818, 0.011782772839069366, -0.00925599317997694, 0.0014420930529013276, 0.00735425902530551, -0.03420461714267731, -0.019429607316851616, 0.00505688413977623, 0.00488067464902997, -0.01496119610965252, 0.011722927913069725, -0.002082930877804756, -0.01239451952278614, -0.0039497558027505875, 0.0027262624353170395, 0.015666034072637558, 0.019615789875388145, 0.01221498567610979, 0.006562978029251099, 0.02530769445002079, -0.004219057038426399, 0.009555216878652573, 0.00025621047825552523, 0.027395611628890038, 0.004830803722143173, 0.006612848490476608, 0.026637578383088112, 0.016570355743169785, 0.006459911819547415, 0.009189498610794544, -0.004787582904100418, -0.0006919553270563483, -0.008185436949133873, -0.0009841142455115914, 0.0011761162895709276, -0.0183258019387722, 0.0005078495014458895, 0.004574801307171583, 0.003093642881140113, -0.014801610261201859, -0.0039165085181593895, -0.018299205228686333, 0.00637346925213933, -0.01009382028132677, 0.012467663735151291, 0.00024208046670537442, -0.01494789682328701, 0.009049860760569572, 0.0026497940998524427, 0.02413739636540413, 0.018804561346769333, -0.0014678596053272486, -0.0061640129424631596, 0.009881039150059223, 0.011343911290168762, -0.0057683722116053104, -0.010918348096311092, -0.012800134718418121, -0.0036039857659488916, -0.0019599166698753834, -0.011097882874310017, -0.011443652212619781, -0.011244170367717743, 0.023060189560055733, -0.012707042507827282, -0.024922028183937073, -0.02276761643588543, 0.007028437219560146, -0.022169167175889015, 0.01170962955802679, 0.012341324239969254, -0.027794577181339264, 0.0021494252141565084, 0.0049604675732553005, 0.0063468716107308865, -0.0017970058834180236, -0.009807894937694073, -0.021198352798819542, 0.007786471396684647, -0.009169550612568855, 0.004973766393959522, -0.015360160730779171, 0.02579975128173828, -0.002676391741260886, -0.007035086862742901, -0.03787509724497795, 0.01553304586559534, 0.019921664148569107, -0.027555197477340698, -0.012135191820561886, 0.005602136719971895, 0.028166944161057472, -0.022714419290423393, 0.0007813068805262446, -0.011157727800309658, -0.003663830691948533, 0.012008853256702423, -0.01403027679771185, -0.015400057658553123, 0.0048507521860301495, 0.024589557200670242, 0.004937194753438234, 0.0049604675732553005, 0.029097864404320717, 0.0011453626211732626, 0.004973766393959522, 0.02412409707903862, 0.002451973734423518, -0.0003528348752297461, 0.022209065034985542, 0.009748050011694431, 0.00942887831479311, -0.0003193799639120698, -0.007334310561418533, 0.01009382028132677, 0.008105643093585968, 0.004717763978987932, -0.0313054695725441, -0.006782408803701401, -0.0037668966688215733, 0.029151059687137604, -0.001996488543227315, 0.021198352798819542, 0.008351672440767288, -0.009621711447834969, -0.014562230557203293, 0.014894701540470123, 0.00649980828166008, 0.0005381874507293105, -0.014841506257653236, 0.0003968872770201415, -0.014189863577485085, -0.0005922139971517026, -0.010326550342142582, 0.0013639623066410422, -0.004747685976326466, -0.0049438439309597015, 0.017261896282434464, 0.00412264047190547, 0.016849631443619728, -0.008391568437218666, -0.008531206287443638, 0.0034377502743154764, -0.008005902171134949, 0.0006524743512272835, -0.026398198679089546, 0.003150162985548377, 0.011423704214394093, 0.012986318208277225, 0.016397470608353615, 0.007108230609446764, 0.024842234328389168, -0.016197988763451576, 0.015865517780184746, -0.02122494950890541, -0.026903554797172546, 0.022687822580337524, 0.003238267730921507, -0.0074074543081223965, 0.008657545782625675, -0.010978193022310734, -0.021969685330986977, 0.010758762247860432, -0.007314362563192844, 0.008876976557075977, 0.018897652626037598, 0.01700921729207039, -0.025547074154019356, 6.426041363738477e-05, 0.018950847908854485, -0.0064732106402516365, 0.035933468490839005, -0.006426665000617504, 0.034045033156871796, -0.023006994277238846, -0.007939407601952553, -0.03340668976306915, -0.004262278322130442, 0.011576641350984573, 0.00018161229672841728, -0.013371984474360943, 0.009920935146510601, 0.004844103008508682, 0.012195036746561527, 0.01563943736255169, 0.0003114837745670229, -0.006107492838054895, 0.006772434804588556, -0.005884737242013216, 0.0048175049014389515, 0.00043761497363448143, 0.006087544374167919, -0.008617648854851723, -0.014336150139570236, -0.01613149419426918, -0.01087180245667696, 0.005721826106309891, 0.02482893504202366, -0.006842253729701042, -0.005914659239351749, 0.0052995881997048855, 0.0037436236161738634, -0.004837453365325928, -0.007001839578151703, 0.026584383100271225, 0.012228284031152725, -0.005981153808534145, 0.002232542959973216, 0.008478011004626751, 0.007467299234122038, 0.01453563291579485, -0.009595113806426525, 0.008025850169360638, 0.012753588147461414, 0.025094913318753242, -0.027262624353170395, 0.0067591359838843346, 0.002925744978711009, 0.0019649036694318056, -0.016743240877985954, 0.013365334831178188, -0.012447714805603027, 0.012387869879603386, -0.012687094509601593, 0.009369033388793468, 0.007294414099305868, 0.023685235530138016, 0.019442904740571976, -0.0027910941280424595, -0.022980397567152977, -0.005239743273705244, -0.01786034367978573, -0.002626521047204733, 0.01332543883472681, 0.004887323826551437, 0.0015700943768024445, 0.014908000826835632, -0.006316949613392353, 0.011330612003803253, 0.0014096770901232958, 0.005116729065775871, -0.013192449696362019, -0.013817495666444302, 0.010293303057551384, -0.03040114976465702, -0.0021726980339735746, -0.025360889732837677, -0.025759855285286903, -0.0036970777437090874, -0.007015138398855925, -0.019815273582935333, -0.008664194494485855, -0.009807894937694073, 0.016876228153705597, 0.00407277001067996, -0.004883999470621347, -0.0076933796517550945, 0.02393791265785694, -0.0032183194998651743, 0.003276502015069127, -0.012454364448785782, -0.02056000754237175, 0.009834492579102516, 0.005070182960480452, 0.03460358455777168, 0.002054670825600624, 0.0020214237738400698, -0.021836696192622185, 0.010220158845186234, -0.0023405959364026785, 0.0040428475476801395, 0.010845204815268517, -0.01170962955802679, -0.0031468381639569998, -0.01903064176440239, -0.004142588935792446, -0.012208336032927036, -0.01884445734322071, -0.0051732491701841354, -0.004371993709355593, 0.007041736040264368, -0.015094184316694736, 0.00374029902741313, -0.017434779554605484, 0.0063634952530264854, 0.01071886532008648, 0.013711105100810528, 0.009056510403752327, 0.027954163029789925, 0.006077570375055075, 0.017700757831335068, -0.014096771366894245, 0.014402644708752632, 0.04691831022500992, 0.018299205228686333, 0.00014441710663959384, 0.0065064579248428345, -0.008564453572034836, 0.006320273969322443, -0.028752094134688377, 0.008411516435444355, 0.00751384487375617, -0.030108574777841568, 0.004667893052101135, 0.01614479348063469, 0.0028143671806901693, -0.009249343536794186, 0.01565273478627205, -0.011995554901659489, 0.003826741361990571, 0.006257104687392712, 0.007400805130600929, 0.007626885082572699, 0.009801245294511318, 0.018232710659503937, 0.01937641203403473, -0.007234569638967514, -0.007507195696234703, -0.005126703064888716, 0.02137123793363571, 0.0037203507963567972, -0.013804196380078793, -0.003480971558019519, -0.0014911325415596366, 0.016916126012802124, -0.011609887704253197, 0.016277780756354332, 0.009422228671610355, 0.014415943063795567, -0.005509044975042343, 0.014389345422387123, 0.016570355743169785, -0.006380118895322084, 0.006988540757447481, -0.028752094134688377, 0.010412991978228092, -0.03090650588274002, -0.013631312176585197, 0.015745827928185463, 0.002500182017683983, -0.028246738016605377, 0.01647726446390152, 0.005718501750379801, -0.024150695651769638, 0.006060946732759476, -0.007148127071559429, 0.022328753024339676, 0.010306601412594318, -0.0001763135369401425, -0.00925599317997694, -0.009089757688343525, 0.013159203343093395, 0.012401169165968895, 0.02328626997768879, 0.0004567320575006306, -0.0010688942857086658, 0.028645703569054604, -0.0022774264216423035, 0.03582707792520523, -0.005003688856959343, 0.018086424097418785, 0.005143326707184315, 0.016344275325536728, -0.009728102013468742, -0.023578844964504242, 0.004830803722143173, 0.0031734358053654432, -0.017434779554605484, -0.01629108004271984, -0.026770567521452904, -0.016729941591620445, 0.005718501750379801, 0.03787509724497795, -0.011895813047885895, 0.021996282041072845], "194206af-b2e8-42f9-8424-2174f55f3f2c": [-0.04017151892185211, 0.002381075406447053, -0.006920456886291504, 0.04548876732587814, 0.007574157323688269, -0.008121950551867485, 0.028777414932847023, 0.04318073019385338, -0.006829158402979374, 0.044758375734090805, 0.012482386082410812, -0.026104183867573738, -0.005660532042384148, 0.0029927780851721764, 0.01812831126153469, 0.06018424034118652, -0.02582663483917713, 0.013358855620026588, 0.024263598024845123, -0.035029564052820206, 0.04040524363517761, -0.0051236944273114204, -0.03850622847676277, 0.001962926471605897, 0.005751830991357565, 0.01370214018970728, -0.0302381981164217, -0.0009513346012681723, -0.03149447217583656, -0.019778994843363762, 0.025928888469934464, 0.006544305477291346, -0.009319792501628399, 0.04490445554256439, 0.05656149983406067, 0.0006135286530479789, 0.011569397523999214, -0.001370396581478417, -0.04134014621376991, -0.011430623009800911, -0.0023500339593738317, 0.03304290026426315, 0.04458308219909668, -0.024599576368927956, 0.004218009300529957, -0.010875525884330273, -0.01429375633597374, -0.004119406454265118, 0.0006915892008692026, 0.0018378469394519925, -0.0031187706626951694, -0.01729566417634487, 0.0006532436818815768, 0.02040713094174862, 0.012577337212860584, -0.07321441918611526, 0.03353956714272499, 0.05521757900714874, -0.009305184707045555, -0.03663642331957817, 0.02904035523533821, -0.021663405001163483, -0.01636076346039772, -0.0040208036080002785, -0.010641800239682198, 0.0023390778806060553, 0.028397612273693085, -0.003600828815251589, -0.03204956650733948, 0.003031123662367463, -0.005145606119185686, 0.04075583070516586, -0.0010545023251324892, 0.029478590935468674, 0.05288032814860344, -0.01672595925629139, 0.019939681515097618, 0.02002732828259468, 0.00041312756366096437, -0.015221353620290756, 0.01801144890487194, 0.01577645167708397, 0.028178494423627853, -0.004816930275410414, 0.03771740570664406, 0.03009212017059326, -0.02595810405910015, -0.039061322808265686, -0.005733571480959654, -0.05147797614336014, -0.019837426021695137, 0.037396032363176346, -0.02738967165350914, -0.01535282377153635, 0.00801239162683487, 0.03237093985080719, -0.002171088010072708, 0.0029160871636122465, 0.0046124206855893135, -0.00965577270835638, 0.020933013409376144, -0.00871356762945652, 0.04692033305764198, -0.018551938235759735, 0.018917134031653404, -0.023021932691335678, -0.023913009092211723, -0.026279477402567863, -0.020012719556689262, 0.044992100447416306, 0.008640528656542301, -0.026586242020130157, -0.004586856812238693, 0.013227385468780994, -0.06059325858950615, -0.002077963203191757, -0.03856465965509415, 0.0030986848287284374, -0.039295047521591187, -0.011715475469827652, 0.00361726270057261, 0.003281282726675272, 0.005076219327747822, -0.049140721559524536, -0.02535918354988098, -0.014425227418541908, 0.021546542644500732, 0.05486699193716049, 0.03181584179401398, -0.03666564077138901, 0.011525574140250683, 0.012949836440384388, 0.03164054825901985, 0.006730555556714535, 0.007194353733211756, 0.01422802172601223, 0.02322644181549549, 0.06357325613498688, -0.010912044905126095, 0.03765897452831268, -0.07414931803941727, 0.0013676575617864728, -0.016287725418806076, 0.060651689767837524, 0.002413943177089095, 0.01162782870233059, -0.021385855972766876, 0.03926583379507065, -0.01872723177075386, 0.0080562150105834, -0.03140682354569435, -0.06012580916285515, -0.030267413705587387, 0.010532242245972157, 0.0403175987303257, -0.06982540339231491, -0.009093371219933033, 0.006624648813158274, -0.0062010218389332294, 0.03850622847676277, 0.031845059245824814, -0.009882193990051746, -0.0039295051246881485, 0.02277359925210476, 0.039061322808265686, 0.01061258465051651, 0.059950511902570724, 0.029580846428871155, -0.005109086632728577, 0.002605670830234885, 0.023314088582992554, -0.047241706401109695, 0.009947928600013256, 0.014154982753098011, -0.019822819158434868, 0.01048841793090105, 0.004681807942688465, 0.012796455062925816, 0.039061322808265686, -0.0039952402003109455, -0.021838698536157608, 0.009392831474542618, -0.019399192184209824, 0.004079235251992941, 0.02535918354988098, 0.008070823736488819, 0.025812026113271713, 0.025432223454117775, -0.013300424441695213, -0.014301060698926449, 0.008757391013205051, 0.008092734962701797, -0.04361896589398384, 0.005087174940854311, 0.0005779220955446362, -0.005766438785940409, 0.009524301625788212, 0.025782810524106026, -0.0331597626209259, 0.025461439043283463, 0.015557333827018738, -0.013716747984290123, -0.02882123924791813, 0.005331856198608875, 0.006131634581834078, 0.02538839913904667, -0.007968568243086338, -0.00477675860747695, 0.028616728261113167, -0.04017151892185211, 0.042128968983888626, -0.055655814707279205, 0.012416651472449303, -0.04613151028752327, 0.005708007607609034, 0.021064484491944313, 0.005865041632205248, 0.0290695708245039, -0.03853544220328331, -0.03865230455994606, 0.03257545083761215, -0.000760519877076149, -0.00900572445243597, -0.03333505615592003, -0.02452653832733631, -0.024804087355732918, -0.027696436271071434, -0.03085172548890114, -0.007154182065278292, -0.030033688992261887, 0.024584969505667686, -0.009560821577906609, -0.006442050915211439, 0.009188322350382805, -0.02587045729160309, 0.05498385429382324, 0.033831723034381866, -0.005350115709006786, -0.013132434338331223, 0.02417595125734806, 0.0052770767360925674, 0.0095535172149539, 0.02159036509692669, -0.016083214432001114, 0.04081426188349724, 0.02930329740047455, -0.009736115112900734, 0.033510349690914154, 0.018040664494037628, 0.022379187867045403, 0.007705627474933863, -0.01285488624125719, -0.012380131520330906, 0.03403623402118683, -0.04066818580031395, 0.03240015730261803, 0.03353956714272499, -0.014987627975642681, -0.0006085071945562959, 0.011993024498224258, -0.006011120043694973, 0.04490445554256439, -0.012540818192064762, 0.04300543665885925, 0.02085997350513935, 0.023986048996448517, 0.034825053066015244, 0.02820771001279354, -0.0034346648026257753, -0.0010435464791953564, 0.017996840178966522, 0.04481680691242218, -0.0080562150105834, 0.04811817407608032, 0.004163230303674936, -0.018055271357297897, 0.010386163368821144, -6.990072142798454e-05, 0.030676431953907013, -0.03462054580450058, -0.008143862709403038, 0.02977074682712555, 0.025081636384129524, 0.006401879247277975, 0.0481766052544117, 0.032429371029138565, -0.035263288766145706, -0.010802486911416054, -0.012548121623694897, -0.0076471962966024876, 0.0004733848327305168, 0.010415378957986832, -0.008465234190225601, 0.002185695804655552, -0.003987936303019524, -0.03365642949938774, -0.006398227531462908, 0.005357419606298208, 0.019998112693428993, 0.02844143472611904, -0.007800578605383635, 0.0071907020173966885, 0.015820274129509926, -0.04908229038119316, 0.06275521963834763, -0.012292484752833843, 0.021911736577749252, -0.0003515007847454399, -0.0027389670722186565, 0.02322644181549549, 0.03573073819279671, -0.03193270415067673, -0.03900289162993431, -0.008443322964012623, 0.004031759686768055, 0.008910773321986198, -0.006149894092231989, 0.01422802172601223, -0.05036778002977371, -0.0024888082407414913, 0.0038674217648804188, -0.0012380131520330906, -0.02893810160458088, 0.06474187970161438, 0.04823503643274307, 0.0025618472136557102, 0.01434488408267498, 0.007073839195072651, -0.03724995255470276, 0.010656408034265041, -0.008173078298568726, -0.018318211659789085, 0.0027754867915064096, 0.010276604443788528, -0.022481443360447884, -0.014191501773893833, -0.02857290580868721, -0.05001719295978546, 0.015323608182370663, -0.024482714012265205, 0.003593524917960167, -0.007066535297781229, 0.026498595252633095, -0.0023956832010298967, -0.015557333827018738, -0.008582097478210926, -0.009860281832516193, -0.01907781884074211, -0.03795113041996956, 0.004291048739105463, 0.0010106789413839579, -0.03403623402118683, 0.045225825160741806, 0.0033488438930362463, 0.006748815067112446, -0.01113846618682146, -0.025578301399946213, 0.00705557968467474, 0.01636076346039772, -0.047592293471097946, 0.0012909665238112211, -0.024351244792342186, 0.006336144171655178, 0.02895270846784115, 0.009852978400886059, -0.004163230303674936, 0.0009239449282176793, -0.013139738701283932, -0.03818485513329506, -0.036577992141246796, 0.006080507300794125, -0.003682997776195407, 0.030968589708209038, 0.0156449805945158, -0.03593524917960167, -0.022861246019601822, 0.0632810965180397, -0.0027864426374435425, 0.00482788635417819, 0.01755860634148121, -0.001603208831511438, -0.015089883469045162, -0.015980960801243782, 0.03795113041996956, 0.023094970732927322, 0.006898545194417238, 0.005580189172178507, -0.03903210908174515, 0.006084159016609192, 0.028733592480421066, 0.002538109663873911, -0.024234382435679436, -0.014527481980621815, 0.01406003162264824, -0.04467072710394859, -0.020319484174251556, 0.01671135239303112, -0.03593524917960167, -0.025534478947520256, -0.0296538844704628, 0.02005654387176037, 0.021268993616104126, 0.02217467874288559, -0.030267413705587387, 0.028645945712924004, -0.007329476065933704, -0.02855829708278179, -0.02109370008111, -0.00048114522360265255, -0.0016862908378243446, -0.008297245018184185, 0.006295972503721714, -0.01612703874707222, -0.013899345882236958, 0.02798859216272831, 0.006675776094198227, 0.0031005109194666147, 0.0018606716766953468, -0.006580824963748455, -0.03470819070935249, 0.01752939075231552, 0.03272152692079544, 0.00948778260499239, 0.018069880083203316, 0.010400771163403988, 0.006960628554224968, -0.02760878950357437, 0.024029871448874474, -0.02620643749833107, 0.016156254336237907, 0.02823692560195923, 0.04461229592561722, -0.016287725418806076, -0.0050506554543972015, -0.009232145734131336, 0.01263576839119196, -0.008801214396953583, -0.004429822787642479, 0.03377329185605049, -0.025286145508289337, -0.0384477935731411, 0.013475718908011913, -0.01967673934996128, 0.015060667879879475, -0.061937179416418076, -0.024920949712395668, -0.022203894332051277, -0.01061988901346922, -0.019954288378357887, -0.020114975050091743, 0.0061060707084834576, -0.013548757880926132, 0.012219445779919624, -0.030530354008078575, 0.030413491651415825, 0.0006107896915636957, 0.02950780652463436, 0.0026184525340795517, 0.04236269369721413, -0.06345639377832413, -0.009684988297522068, 0.005689747631549835, 0.03900289162993431, -0.006540653761476278, 0.05042621120810509, 0.026031143963336945, -0.004137666430324316, -0.01202954351902008, -0.00931248813867569, 0.015718020498752594, 0.005510801915079355, 0.0037432550452649593, 0.009787242859601974, 0.033627212047576904, 0.03760054334998131, 0.018785662949085236, -0.008845037780702114, -0.007764059118926525, 0.02585585042834282, 0.0004414302238728851, 0.03400701656937599, -2.728981417021714e-05, 0.000284396082861349, -0.028061632066965103, 0.023182617500424385, 0.022364579141139984, -0.0290695708245039, 0.01719341054558754, 0.02121056243777275, 0.013293121010065079, -0.004002544097602367, 0.00984567403793335, 0.00936361588537693, 0.0256075169891119, -0.0016625530552119017, -0.03573073819279671, -0.013147042132914066, -0.013629100285470486, 0.01764625310897827, -0.03920740261673927, -0.03275074437260628, -0.030997805297374725, -0.01634615659713745, -0.00530994450673461, -0.01742713525891304, 0.04236269369721413, -0.024877125397324562, 0.04157387092709541, -0.009969840757548809, -0.02430742047727108, -0.020188014954328537, 0.013205474242568016, -0.025461439043283463, 0.01744174212217331, 0.023270264267921448, 0.017602428793907166, 0.014688167721033096, -0.034094665199518204, 0.02785712294280529, -0.021867914125323296, -0.010364252142608166, -0.02714133821427822, -0.021751051768660545, -0.005083523225039244, -0.008465234190225601, 0.000789279059972614, -0.023869186639785767, -0.017032723873853683, 0.02927408181130886, -0.02904035523533821, 0.001791284536011517, 0.01719341054558754, -0.031348392367362976, -0.0018287170678377151, 0.0004921011277474463, 0.029230257496237755, 0.007508422248065472, 0.007712931372225285, 0.0027243592776358128, 0.010955868288874626, -0.027681827545166016, 0.004590508993715048, -0.017704684287309647, -0.00705557968467474, -0.00871356762945652, 0.021751051768660545, -0.0003953242558054626, 0.016667528077960014, -0.001257185940630734, 0.019764387980103493, -0.001589513965882361, 0.007289304863661528, -0.014761206693947315, 0.004013499710708857, -0.013022876344621181, -0.03260466456413269, 0.0101378308609128, -0.010882829315960407, -0.008501754142343998, -0.004079235251992941, -0.03321819379925728, 0.04791366681456566, -0.010824398137629032, 0.021195953711867332, 0.018902525305747986, -0.014286452904343605, -0.026352515444159508, 0.0045941611751914024, -0.03786348178982735, 0.004988572094589472, 0.021166738122701645, -0.007398863323032856, 0.038360148668289185, -0.03257545083761215, 0.01044459454715252, 0.05133189633488655, -0.0007641718257218599, -0.004415214993059635, -0.02950780652463436, -0.025680556893348694, 0.0003111010300926864, 0.02394222468137741, 0.0045466856099665165, -0.006544305477291346, 0.004451734479516745, 0.030910158529877663, -0.0310562364757061, -0.019063211977481842, -0.010510330088436604, -0.010882829315960407, 0.003014689777046442, 0.002189347753301263, -0.04931601881980896, -0.011416015215218067, -0.0379803441464901, 0.02570977248251438, 0.012263269163668156, 0.016273116692900658, 0.021984776481986046, -0.004411563277244568, 0.023883793503046036, 0.009356311522424221, -0.0007235438097268343, 0.025110851973295212, -0.039528775960206985, 0.026294084265828133, -0.01357797347009182, 0.03792191296815872, 0.004904577042907476, 0.014783118851482868, -0.005434110760688782, -0.01932615227997303, 0.042976222932338715, -0.004502862226217985, 0.006573521066457033, 0.008253420703113079, -0.010970477014780045, 0.008706263266503811, 0.022700559347867966, -0.004112102556973696, 0.03464975953102112, -0.007975872606039047, 0.005200385581701994, 0.023693891242146492, -0.012664983980357647, 0.047154057770967484, 0.0028247882146388292, 0.004893621429800987, 0.0031735498923808336, 0.016769783571362495, -0.020567817613482475, -0.003569787135347724, 0.015279784798622131, 0.006840114016085863, -0.0017145934980362654, -0.00919562578201294, 0.01922389678657055, -0.03780505061149597, -0.004232617095112801, -0.024716440588235855, -0.005843129940330982, -0.013753267005085945, 0.021911736577749252, 0.056123264133930206, -0.010473810136318207, 0.0014909111196175218, 0.011372191831469536, -0.014512874186038971, 0.03225407749414444, 0.021122915670275688, -0.021502718329429626, 0.01292792521417141, -0.0011184115428477526, 0.014666256494820118, 0.002952606650069356, -0.0059344288893043995, 0.023679284378886223, 0.009217537939548492, 0.010167046450078487, 0.014264540746808052, 0.02895270846784115, -0.02703908458352089, 0.009407439269125462, 0.013913953676819801, 0.02573898807168007, 0.00536472350358963, 0.026133399456739426, -0.010590673424303532, 0.02527153678238392, -0.00011657729191938415, 0.013709443621337414, -0.040142301470041275, 0.03765897452831268, -0.011978416703641415, -0.011562093161046505, 0.005054307635873556, 0.006073203403502703, 0.014775815419852734, 0.02962466888129711, -0.013483022339642048, -0.005320900119841099, -0.025695163756608963, -0.009151802398264408, 0.040843479335308075, -0.02645477093756199, -0.008275332860648632, -0.015279784798622131, -0.014914589002728462, -0.0033853633794933558, 0.003798034507781267, -0.0059746005572378635, 0.012796455062925816, -0.01227057259529829, 0.042625632137060165, -0.004144970327615738, 0.004199749790132046, 0.006124330684542656, -0.02630869299173355, 0.023913009092211723, -0.061119139194488525, -0.02680535800755024, -0.004780410788953304, -0.029011139646172523, -0.004645288456231356, -0.001849715830758214, 0.005857737734913826, -0.008677047677338123, -0.018420467153191566, 0.00723452540114522, 0.016273116692900658, -0.0013338769786059856, 0.027331240475177765, 0.010196262039244175, 0.024015264585614204, -0.010568761266767979, 0.006277712993323803, 0.00342553504742682, 0.0579054169356823, 0.009465870447456837, 0.039879363030195236, 0.0398501455783844, 0.024336636066436768, 0.0037140394560992718, 0.0033141502644866705, -0.039441127330064774, -0.04271328076720238, 0.026264868676662445, -0.02348938211798668, 0.022685952484607697, -0.006620996631681919, 0.006274060811847448, 0.015557333827018738, 0.012372828088700771, 0.007355039939284325, -0.0013813524274155498, 0.026878397911787033, 0.017134979367256165, 0.010152438655495644, 0.03833093121647835, -0.000765541335567832, 0.0015027800109237432, 0.002390205394476652, 0.00972150731831789, -0.03131917491555214, -0.009538909420371056, -0.037308383733034134, 0.019296936690807343, 0.007574157323688269, -0.023416344076395035, -0.030764078721404076, 0.021035267040133476, -0.024964772164821625, 0.021429678425192833, -0.010824398137629032, -0.000537750544026494, -0.0035423976369202137, 0.0326923131942749, 0.0008175817201845348, -0.002870437689125538, 0.039791714400053024, -0.038593873381614685, 0.026761535555124283, -0.008961901068687439, -0.015542726032435894, -0.0202756617218256, 0.004305656533688307, -0.005072567146271467, -0.0022477791644632816, 0.015338215976953506, 0.00818038173019886, 0.01744174212217331, 0.02443889155983925, 0.0034383167512714863, 0.03190349042415619, -0.023752324283123016, -0.01744174212217331, 0.0038783776108175516, -0.015396647155284882, -0.018215958029031754, -0.011372191831469536, -0.05349385365843773, -0.0013503108639270067, 0.03862309083342552, 0.012949836440384388, -7.560690573882312e-05, -0.023577028885483742, 0.006909501273185015, 0.006463962607085705, 0.03687015175819397, 0.014271845109760761, 0.003378059482201934, -0.026644673198461533, -0.012708807364106178, -0.0158787053078413, 0.011839642189443111, -0.030384276062250137, -0.029142610728740692, 0.02630869299173355, 0.014505569823086262, -0.00936361588537693, 0.022116247564554214, 0.002808354329317808, 0.013344247825443745, 0.026367124170064926, 0.024365851655602455, -0.0063069285824894905, 0.0029471286106854677, 0.0007554984767921269, -0.01706193946301937, 0.019501445814967155, -0.004568597301840782, -0.024468107149004936, -0.006292320787906647, 0.03418231010437012, -0.039908576756715775, -0.0158787053078413, 0.014045423828065395, -0.001226144260726869, 0.03280917555093765, 0.009809154085814953, -0.027550358325242996, -0.004210705403238535, 0.01162052433937788, 0.012387435883283615, -0.012197533622384071, 0.009341703727841377, 0.014242629520595074, 0.019749779254198074, 0.016331547871232033, 0.011357584036886692, -0.014096550643444061, -0.007073839195072651, -0.012343612499535084, -0.008034303784370422, 0.010115918703377247, -0.007508422248065472, 0.005437762942165136, 0.00037272777990438044, -0.04873170331120491, 0.026250261813402176, -0.02064085751771927, -0.04540111869573593, -0.0003512725525069982, -0.007479206193238497, 0.012986356392502785, -0.010685623623430729, 0.04122328385710716, -0.011394103057682514, 0.018347427248954773, 0.04551798105239868, -0.005266121122986078, -0.009495086036622524, 0.01590792089700699, 0.013132434338331223, -0.004510166123509407, 0.017149586230516434, -0.004868057556450367, 0.007088446989655495, -0.014797726646065712, -0.003715865546837449, -0.0009768982417881489, 0.017339488491415977, -0.02667388878762722, 0.017485566437244415, -0.0030439055990427732, -0.003597176866605878, -0.0007719322456978261, -0.0033196283038705587, -0.01732487976551056, 0.010751359164714813, -0.00989680178463459, 0.021853305399417877, 0.018902525305747986, -0.006131634581834078, 0.0065516093745827675, 0.021195953711867332, -0.024745656177401543, 0.010429986752569675, -0.004641636274755001, -0.014388707466423512, 0.006423790939152241, 0.020231837406754494, -0.007088446989655495, 0.0377466194331646, -0.01671135239303112, -0.027579573914408684, -0.0010691102361306548, -0.011328368447721004, -0.010860918089747429, 0.026995260268449783, 0.024555753916502, 0.017733899876475334, -0.00023988787143025547, 0.01049572229385376, -0.02262752130627632, 0.015148314647376537, 0.024701831862330437, 0.01955987699329853, -0.025519870221614838, -0.012964444234967232, 0.013855521567165852, -0.047124844044446945, -0.02657163329422474, -0.035964466631412506, 0.029128003865480423, -0.043122299015522, 0.01453478541225195, 0.008428715169429779, 0.025198498740792274, -0.019180074334144592, 0.0016278595430776477, 0.037045445293188095, 0.017836153507232666, -0.031260743737220764, 0.04432014003396034, 0.018931740894913673, -0.00453572953119874, -0.037396032363176346, -0.0019044951768592, -0.002925216918811202, 0.0038345539942383766, 0.001975708408281207, 0.009443959221243858, 0.02750653401017189, -0.022218501195311546, -0.006285016890615225, -0.06012580916285515, -0.020450955256819725, 0.013592581264674664, 0.013731355778872967, -0.020363308489322662, -0.014147678390145302, -0.02300732396543026, -0.007880921475589275, -0.028076238930225372, -0.022101638838648796, -0.014848854392766953, 0.00315894209779799, -0.0035497015342116356, -0.014542089775204659, -0.014578609727323055, -0.018303604796528816, 0.04432014003396034, -0.008216901682317257, -0.0126868961378932, -0.02039252407848835, 0.004243573173880577, 0.012453170493245125, -0.018800271674990654, 0.004922837018966675, 0.01410385500639677, 0.023270264267921448, 0.007420775014907122, 0.0005537278484553099, 0.0016935947351157665, 0.006073203403502703, 0.00397332850843668, -0.021488111466169357, -0.007800578605383635, -0.004429822787642479, -0.0019884901121258736, 0.01896095648407936, -0.011956504546105862, 0.008501754142343998, -0.018172133713960648, 0.01251890603452921, 0.0022733428049832582, 0.0020177059341222048, -0.021064484491944313, 0.0024888082407414913, -0.0010645452421158552, 0.02797398529946804, 0.002057877369225025, 0.008530969731509686, 0.006865677889436483, -0.0022185633424669504, -0.021970169618725777, -0.011562093161046505, -0.008808518759906292, -0.029975255951285362, 0.008530969731509686, -0.038477011024951935, 0.02892349287867546, -0.003998891916126013, 0.011459838598966599, -0.024599576368927956, -0.0076545001938939095, 0.017631644383072853, -0.02798859216272831, -0.022496050223708153, 0.0251400675624609, 0.0070774913765490055, 0.007165138144046068, 0.01601017639040947, 0.0018570197280496359, 0.006723251659423113, 0.00556923309341073, -0.0019611006136983633, -0.0041084508411586285, -0.026849182322621346, -0.0022696908563375473, 0.01369483582675457, -0.025432223454117775, 0.004703719634562731, 0.033393487334251404, 0.04388190805912018, 0.033364273607730865, -0.008209597319364548, -0.03777583688497543, -0.026133399456739426, -0.03710387647151947, -0.00029124351567588747, 0.002366467611864209, -0.0407850481569767, -0.013344247825443745, 0.010817094705998898, 0.05226679891347885, -0.003120596520602703, -0.004017151892185211, 0.01657988131046295, -0.022846639156341553, -0.021268993616104126, -0.012489690445363522, -0.025300752371549606, -0.012080671265721321, 0.008771998807787895, -0.008085431531071663, -0.003292238572612405, 0.0011750169796869159, 0.028426827862858772, -0.006821854040026665, -0.036577992141246796, 0.00571896368637681, -0.003798034507781267, 0.0209768358618021, -0.021283600479364395, -0.010692927986383438, -0.05101052299141884, -0.022013992071151733, -0.023518597707152367, 0.006683079991489649, 0.0021199604962021112, 0.010269301012158394, 0.00883773434907198, -0.007844402454793453, -0.00883042998611927, -0.010415378957986832, -0.01955987699329853, -0.01779233105480671, -0.015820274129509926, 0.030997805297374725, 0.012182925827801228, 0.012263269163668156, -0.009458567015826702, -0.01304478757083416, 0.0026531461626291275, -0.0058869533240795135, 0.012869494035840034, 0.014140374958515167, 0.02147350274026394, -0.017923802137374878, -0.03470819070935249, 0.008370283991098404, -0.0038491617888212204, 0.0028613077010959387, -0.018917134031653404, -0.028645945712924004, 0.001040807575918734, 0.0023518598172813654, -0.02216007001698017, -0.008238812908530235, 0.0002757227048277855, 0.020465562120079994, 0.007417123299092054, 0.008852342143654823, 0.006631952710449696, 0.0006838287808932364, -0.008070823736488819, -0.02347477525472641, -0.014680864289402962, 0.000906141649466008, -0.00842141080647707, 0.005901561118662357, -0.0034784884192049503, -0.022846639156341553, 0.015980960801243782, 0.0074353828094899654, 0.010576065629720688, 0.012343612499535084, -0.021283600479364395, -0.021429678425192833, -0.02880663052201271, 0.012496993876993656, 0.014914589002728462, -0.01579105854034424, -0.008647832088172436, -0.012073366902768612, 0.06450815498828888, 0.02370849996805191, 0.017602428793907166, -0.0188733097165823, -0.02440967597067356, 0.015615765005350113, 0.011547485366463661, 0.041544653475284576, -0.004375043790787458, -0.011708172038197517, 0.008019695989787579, -0.0011266284855082631, 0.006734207272529602, 0.017134979367256165, 0.007033667527139187, 0.004371391609311104, 0.012263269163668156, 0.02100605145096779, 0.01954527013003826, 0.014490962028503418, -0.03345191851258278, 5.763243279943708e-06, 0.006285016890615225, 0.013139738701283932, -0.01085361372679472, 0.008823126554489136, -0.024760263040661812, -0.01909242756664753, 0.006602737121284008, -0.004773106891661882, 0.01789458468556404, 0.0076545001938939095, 0.023021932691335678, 0.004269137047231197, -0.007669107988476753, 0.042859356850385666, -0.03783426806330681, 0.04063896834850311, -0.00989680178463459, 0.0024541146121919155, -0.008494449779391289, -0.014089247211813927, 0.025928888469934464, 0.0037286472506821156, 0.005120042711496353, -0.01636076346039772, -0.0194576233625412, -0.012095279060304165, 0.018917134031653404, -0.018449682742357254, 0.001968404510989785, -0.007278348784893751, -0.006617344915866852, 0.018099095672369003, 0.0025563694071024656, -0.00723452540114522, 0.010692927986383438, 0.00696793245151639, 0.008224205113947392, -0.00014459464000537992, -0.005587493069469929, 0.03143604099750519, -0.013607189059257507, -0.022861246019601822, 0.010839005932211876, -0.01167165208607912, -0.0030913809314370155, -0.00895459670573473, 0.009889497421681881, 0.009860281832516193, 0.002366467611864209, 0.0032520671375095844, 0.000289417541353032, -0.012080671265721321, 0.003073121188208461, 0.01215371023863554, 0.015192138031125069, -0.003641000483185053, 0.03485427051782608, -0.02702447585761547, -0.002812006277963519, -0.006018423940986395, -0.00888155773282051, 0.011657044291496277, -0.015630371868610382, 0.008297245018184185, 0.0002839395892806351, -0.018595760688185692, 0.010094007477164268, 0.014322972856462002, 0.0031698979437351227, 0.0022258672397583723, 0.021751051768660545, 0.015542726032435894, -0.032283294945955276, -0.015367431566119194, -0.010320428758859634, 0.004305656533688307, -0.03272152692079544, -0.018814878538250923, -0.004039063584059477, 0.025461439043283463, 0.01955987699329853, 0.009641164913773537, 0.01659449003636837, -0.009918713010847569, -0.0010873699793592095, -0.017602428793907166, -0.012423954904079437, -0.01729566417634487, -0.0023518598172813654, 0.001315617235377431, -0.015542726032435894, -0.0012772716581821442, -0.00015806122974026948, -0.01049572229385376, -0.008209597319364548, -0.002983648329973221, 0.024804087355732918, 1.853082540037576e-05, -0.02725820057094097, 0.013658316805958748, 0.014578609727323055, 0.0025344577152282, -0.014403315261006355, 0.00883042998611927, -0.01369483582675457, 0.017602428793907166, 0.005992860067635775, -0.0012617509346455336, -0.0009577255113981664, -0.009254056960344315, 0.002616626676172018, -0.013614492490887642, -0.0006039422587491572, -0.0020104018040001392, 0.0047000679187476635, 0.026279477402567863, -0.005879649426788092, -0.015732627362012863, -0.006248496938496828, 0.01957448571920395, 0.02205781638622284, 0.0026768839452415705, -0.00482788635417819, -0.0035533534828573465, -0.033276624977588654, -0.0014005252160131931, 0.01370214018970728, -0.030530354008078575, -0.008845037780702114, 0.0036501302383840084, 0.017266448587179184, -0.00047658028779551387, 0.028543690219521523, -0.014242629520595074, -0.0020907449070364237, -0.024818694218993187, -0.0018506288761273026, -0.028718983754515648, 0.04166151583194733, -0.010364252142608166, 0.020670073106884956, -0.023986048996448517, -0.011116554960608482, 0.007048275321722031, 0.021064484491944313, -0.03377329185605049, -0.0038089903537184, 0.0017246362986043096, 0.022364579141139984, 0.010671015828847885, 0.017865369096398354, 0.012117191217839718, 0.006230237428098917, 0.006084159016609192, 0.030150551348924637, -0.017237232998013496, 0.027228984981775284, -0.001092847902327776, 0.005251512862741947, -0.012942533008754253, 0.01232170034199953, -0.002388379303738475, -0.009451262652873993, 0.009538909420371056, -0.03473740816116333, -0.010028271935880184, -0.007530333939939737, -0.004272788763046265, -0.007358691655099392, 0.002538109663873911, -0.0129206208512187, 0.0003772927157115191, -0.004243573173880577, 0.016039391979575157, 0.011291848495602608, -0.027082907035946846, -0.00028622205718420446, 0.020684679970145226, -0.02963927760720253, 0.010882829315960407, 0.020217230543494225, -0.009013027884066105, 0.0030877289827913046, 0.014951108954846859, 0.0028795674443244934, 0.008669744245707989, 0.013833610340952873, -0.009611948393285275, -0.0022660389076918364, 0.0054231551475822926, -0.033510349690914154, -0.019516054540872574, 0.006230237428098917, 0.002213085535913706, -0.0020158798433840275, -0.00894729234278202, -0.00047429781989194453, -0.0012170143891125917, -0.030910158529877663, -0.027667220681905746, -0.0243220292031765, 0.008735479786992073, 0.021648796275258064, 0.005054307635873556, -0.0035880471114069223, -0.007771363016217947, 0.006668472196906805, -0.033276624977588654, -0.02110830694437027, 0.00723452540114522, 0.010327732190489769, 0.01114577054977417, 0.03470819070935249, 0.018551938235759735, -0.010020967572927475, 0.0008075388032011688, -0.009852978400886059, -0.0032758046872913837, 0.01812831126153469, -0.012431259267032146, -0.01304478757083416, 0.014483658596873283, 0.004707371816039085, -0.0002296167513122782, 0.017602428793907166, -0.013205474242568016, -0.0065516093745827675, -0.00545237073674798, -0.007033667527139187, -0.005112738814204931, 0.006244845222681761, -0.00960464496165514, -0.004948400892317295, 0.011576700955629349, -0.0028101804200559855, -0.004039063584059477, 0.008509058505296707, -0.0035241376608610153, 0.015177530236542225, -0.030910158529877663, 0.03155290335416794, -0.007092099171131849, -0.03450368344783783, -0.0034620545338839293, 0.0017100285040214658, 0.0028448738157749176, -0.004670851863920689, 0.0019428407540544868, -0.03856465965509415, 0.03678250312805176, 0.008487146347761154, 0.006537001579999924, 0.001486346242018044, -0.01316164992749691, -0.00787361804395914, 0.0015402125427499413, -0.018435075879096985, -0.00965577270835638, 0.0038601176347583532, 0.015674196183681488, 0.011562093161046505, -0.00646031042560935, 0.010386163368821144, 0.01755860634148121, -0.008720871061086655, 0.020436346530914307, 0.0063726636581122875, 0.006431094836443663, 0.01560115721076727, -0.004795018583536148, -0.014783118851482868, -0.020348699763417244, 0.002295254496857524, 0.015834882855415344, -0.007059231400489807, -0.014892677776515484, -0.019530661404132843, -0.025198498740792274, -0.006577173247933388, 0.0033890153281390667, 0.004922837018966675, 0.007778666913509369, -0.017383310943841934, -0.013614492490887642, 0.0015146489022299647, -0.030062904581427574, 0.021166738122701645, -0.0095535172149539, -0.0016077737091109157, -0.006862025707960129, 0.01487806998193264, 0.020100366324186325, -0.011006996035575867, -0.01446174643933773, 0.011153073981404305, 0.02477487176656723, 0.01061988901346922, -0.0011229765368625522, -0.011584005318582058, 0.012007632292807102, -0.016331547871232033, -0.008078127168118954, -0.02845604345202446, -0.003113292623311281, 0.01565958745777607, 0.006131634581834078, -0.01980821043252945, -0.03307211399078369, -0.021765658631920815, -0.018683407455682755, 0.015060667879879475, -0.009334400296211243, 0.03923661634325981, -0.009779938496649265, -0.007187049835920334, -0.0035497015342116356, -0.036811720579862595, -0.022233109921216965, -0.005182126071304083, 0.01049572229385376, -0.01422802172601223, 0.03879838436841965, -0.018902525305747986, 0.017368704080581665, -0.00035903294337913394, 0.015309000387787819, -0.01008670311421156, -0.04090191051363945, -0.007574157323688269, 0.0008216901333071291, -0.003058513393625617, 0.001931884908117354, -0.026761535555124283, 0.021517327055335045, -0.025227714329957962, 0.02122516930103302, -0.001260837889276445, -0.0008901643450371921, -0.028733592480421066, -0.014366796240210533, -0.024555753916502, 0.007015408016741276, 0.0003747820155695081, 0.02157575823366642, -0.006898545194417238, 0.006179110147058964, 0.010685623623430729, -0.009107979014515877, 0.003308672457933426, -0.018172133713960648, 0.006463962607085705, -0.0076471962966024876, 0.03494191914796829, -0.021049875766038895, 0.016536056995391846, -0.022715168073773384, -0.03342270478606224, -0.008961901068687439, -0.033393487334251404, -0.018186742439866066, 0.0007943004602566361, -0.013329640030860901, 0.010568761266767979, 0.008874253369867802, 0.010912044905126095, -0.01919468119740486, -0.012993660755455494, 0.009736115112900734, 0.0007650848128832877, -0.026936829090118408, 0.003688475815579295, 0.009889497421681881, 0.02620643749833107, 0.010992388240993023, -0.023635460063815117, -0.002839396009221673, 0.007625284604728222, 0.013950472697615623, 0.005127346608787775, 0.002603844739496708, 0.012796455062925816, 0.002408465137705207, -0.010963172651827335, 0.0025472394190728664, 0.018303604796528816, 0.007241829298436642, -0.0019172769971191883, -0.03257545083761215, 0.011730083264410496, 0.021853305399417877, 0.0015886009205132723, -0.012190230190753937, 0.024993987753987312, -0.018449682742357254, -0.014775815419852734, -0.027842514216899872, 0.0006573520950041711, 0.011474446393549442, -0.0038856815081089735, -0.006347099784761667, -0.0015456904657185078, 0.006080507300794125, 0.023650068789720535, -0.0015803840942680836, 0.021780267357826233, -0.004641636274755001, 0.01576184295117855, 0.027448102831840515, 0.0005719876498915255, 0.023854577913880348, -0.025081636384129524, -0.011372191831469536, 0.03500035032629967, -0.018435075879096985, -0.013008268550038338, -0.008216901682317257, -0.002079789061099291, 0.0003633696469478309, -0.02216007001698017, -0.01579105854034424, -0.03137760981917381, -0.0024650704581290483, 0.002527153817936778, -0.03578916937112808, -0.011532877571880817, 0.009429351426661015, 0.015075275674462318, -0.010583369061350822, -0.020684679970145226, 0.017923802137374878, 0.0020980488043278456, -0.005152910482138395, -0.0022349972277879715, -0.0264255553483963, 0.0025782810989767313, 0.0042618331499397755, 0.0011184115428477526, -0.0025527174584567547, -0.01090474147349596, 0.0005226862267591059, -0.0012562728952616453, 0.0030366017017513514, 0.0036738680209964514, 0.015089883469045162, -0.011459838598966599, 0.005200385581701994, -0.013833610340952873, 0.007344083860516548, 0.01625850982964039, 0.014973020181059837, 0.0101378308609128, 0.010451898910105228, 0.013293121010065079, 0.01932615227997303, 0.005266121122986078, -0.007201657630503178, -0.020699288696050644, -0.007011755835264921, 0.009831066243350506, -0.0130959153175354, -0.0038418578915297985, -0.0013092262670397758, 0.010846310295164585, 0.0658520758152008, -0.015323608182370663, 0.007712931372225285, -0.01612703874707222, 0.009020332247018814, -0.02452653832733631, -0.004784062504768372, 0.010429986752569675, 0.02040713094174862, 0.0034164050593972206, 0.017281057313084602, -0.014184198342263699, 0.022612912580370903, 0.012453170493245125, -0.012066063471138477, 0.010006359778344631, 0.03202035278081894, 0.01767546869814396, -0.01232900470495224, 0.012533513829112053, -0.022832030430436134, -0.012255964800715446, -0.0033196283038705587, 0.012759935110807419, 0.011445230804383755, 0.018902525305747986, -0.012664983980357647, 0.0004430279368534684, 0.005138302221894264, 0.018069880083203316, 0.008121950551867485, -0.0010983258252963424, 0.004462690558284521, -0.011459838598966599, -0.013789786957204342, 0.010437291115522385, 0.0038345539942383766, 0.020085759460926056, 0.008691655471920967, 0.0080562150105834, -0.01434488408267498, 0.0028923493809998035, 0.027097515761852264, 0.02099144458770752, 0.006339795887470245, -0.04011308774352074, 0.017953017726540565, 0.0014918241649866104, -0.001722810324281454, -0.0034364908933639526, -0.024935556575655937, -0.013855521567165852, 0.003359799738973379, 0.013198169879615307, 0.010115918703377247, -0.006558913271874189, 0.00391124514862895, -0.016740567982196808, 0.013965080492198467, 0.008866949938237667, 0.012986356392502785, -0.007135922554880381, -0.010992388240993023, 0.00011600667494349182, -0.0077202352695167065, -0.021064484491944313, -0.006303276401013136, -0.030910158529877663, 0.010933957062661648, -0.01647762581706047, 0.0009422047296538949, 0.02407369576394558, 0.02109370008111, -0.03435760363936424, -0.01612703874707222, 0.0029708663932979107, 0.015615765005350113, 0.015060667879879475, -0.008874253369867802, 0.010744055733084679, 0.007851705886423588, 0.00018567914958111942, -0.012942533008754253, -0.013599884696304798, 0.002052399329841137, 0.004736587405204773, 0.021079091355204582, -0.023781539872288704, 0.006409183144569397, -0.015834882855415344, 0.003692127764225006, 0.010999692603945732, 0.010999692603945732, -0.003798034507781267, 7.212613854790106e-05, -0.009268664754927158, -0.004130362533032894, -0.002596540842205286, 0.007391559425741434, -0.007106706965714693, 0.012475082650780678, 0.009874889627099037, -0.00459781289100647, -0.0015420385170727968, 0.004316612146794796, -0.0068583739921450615, 0.017164194956421852, -0.008684352040290833, -0.018537329509854317, -0.006909501273185015, 0.008479841984808445, 0.011218809522688389, 0.008852342143654823, 0.0035058779176324606, -0.005697051528841257, -0.005094478838145733, 0.02252526581287384, 0.012307092547416687, -0.020436346530914307, -0.010181654244661331, 0.010503025725483894, -0.016784390434622765, -0.01991046592593193, -0.00415227422490716, 0.014775815419852734, -0.011160378344357014, -0.020304877310991287, -0.011109250597655773, -0.01779233105480671, -0.008530969731509686, 0.010057487525045872, 0.012964444234967232, 0.01216101460158825, 0.016930468380451202, 0.0016561622032895684, 0.0017648078501224518, -0.00717244204133749, 0.0050689154304564, 0.021429678425192833, 0.01825978048145771, 0.0012106235371902585, 0.01647762581706047, 0.007778666913509369, 0.0053829834796488285, 0.022335363551974297, 0.0017931105103343725, -0.004276440944522619, -0.020421739667654037, -0.006387271452695131, -0.03523407503962517, 0.01847889833152294, -0.023401735350489616, -0.002284298650920391, -0.008487146347761154, 0.021400462836027145, -0.003042079508304596, 0.006913152989000082, 0.02325565740466118, -0.008720871061086655, 0.002169261919334531, -0.012913317419588566, 0.012504298239946365, -0.02855829708278179, -0.0209768358618021, 0.023430950939655304, 0.011481750756502151, 0.0069241090677678585, 0.01657988131046295, 0.016652921214699745, 0.010627192445099354, -0.0027900945860892534, 0.02535918354988098, 0.005306292325258255, -0.019121643155813217, -0.0067451633512973785, -0.00847253855317831, 0.008136558346450329, 0.011993024498224258, -0.0258412417024374, 0.00977263506501913, 0.0006021162844263017, -0.0028868713416159153, 0.013329640030860901, -0.004137666430324316, -0.0028649596497416496, -0.004513817839324474, 0.016389979049563408, 0.0010974128963425756, 0.009560821577906609, 0.0018068053759634495, -0.01776311546564102, 0.0379803441464901, -0.002079789061099291, 0.00281565822660923, 0.0033324100077152252, -0.01208797562867403, 0.0041267103515565395, 0.020012719556689262, -0.018595760688185692, 0.0024468107149004936, -0.011898073367774487, 0.0013758745044469833, -0.019296936690807343, 0.010181654244661331, -0.019632916897535324, -0.013446503318846226, -0.0006043987814337015, -0.009319792501628399, -0.0209768358618021, 0.005189429968595505, -0.04846876487135887, -0.021561149507761, 0.01647762581706047, -0.003195461817085743, -0.02392761781811714, 0.02408830262720585, 0.007311216555535793, -1.0713356459746137e-05, 0.013994296081364155, 0.0015383865684270859, -0.011087339371442795, 0.006555261556059122, -0.006635604426264763, 0.023679284378886223, -0.011839642189443111, 0.0017082025296986103, -0.014439835213124752, 0.005145606119185686, 0.021765658631920815, -0.0005076219094917178, 0.01954527013003826, -0.00936361588537693, -0.014622433111071587, 0.02313879504799843, -0.006825506221503019, 0.006127982400357723, 0.034678976982831955, -0.006277712993323803, 0.014001600444316864, -0.004207053687423468, -0.003984284121543169, 0.008655136451125145, 0.023503990843892097, -0.009670380502939224, 0.010524937883019447, -0.0031297265086323023, -0.0011101947166025639, -0.013782482594251633, -0.011160378344357014, -2.4237006073235534e-05, -0.024146733805537224, -0.007749451324343681, 0.0007084794924594462, 0.027302024886012077, -0.0026348864194005728, 0.03058878518640995, 0.009107979014515877, -0.013190865516662598, 0.002260560868307948, -0.0053355079144239426, -0.004824234172701836, 0.019048603251576424, 0.012438562698662281, -0.000650961184874177, -0.014834246598184109, 0.00983836967498064, -0.008092734962701797, 0.02194095402956009, -0.0013813524274155498, 0.03581838682293892, 0.0005957253742963076, 0.005941732786595821, 0.00890346895903349, 0.012847581878304482, -0.00735138775780797, -0.002386553445830941, -4.099891521036625e-05, -0.00197388231754303, -0.0125116016715765, 0.01815752685070038, -0.005503498017787933, -0.008604008704423904, 0.017354095354676247, -0.01102890819311142, 0.001106542767956853, 0.001304661389440298, -0.012066063471138477, -0.006949672941118479, 0.0018205002415925264, 0.021794874221086502, 0.003597176866605878, 0.00088879483519122, 0.026031143963336945, -0.005320900119841099, 0.001668030978180468, 0.010503025725483894, 0.008465234190225601, -0.0213274247944355, 0.03251701965928078, 0.011971112340688705, -0.015469687059521675, -0.009714203886687756, -0.007026363629847765, -0.007015408016741276, 0.01109464280307293, 0.0004485058889258653, -0.012584641575813293, -0.003414579201489687, -0.0014206109335646033, -0.003816294251009822, -0.010291212238371372, 0.0005943558644503355, 0.01239473931491375, 0.0002784616663120687, -0.0025600213557481766, 0.007727539632469416, 0.004276440944522619, 0.026513202115893364, -0.013826305978000164, 0.011357584036886692, -0.016316941007971764, 0.004265484865754843, -0.014651648700237274, 0.019282329827547073, -0.01167895644903183, 0.03169897943735123, -0.004207053687423468, 0.004068279173225164, -0.007092099171131849, -0.0412524975836277, 0.005280728917568922, -0.005057959351688623, 0.014680864289402962, -0.004670851863920689, 0.011321064084768295, 0.01285488624125719, -0.004017151892185211, 0.00948047824203968, -0.008450626395642757, 0.019516054540872574, -0.01624390110373497, 0.014885373413562775, -0.0158787053078413, -0.02785712294280529, -0.0035478754434734583, 0.00018168482347391546, 0.00012131342373322695, -0.017456350848078728, -0.008143862709403038, 0.021604973822832108, 0.011905377730727196, -0.0196913480758667, 0.006168154068291187, 0.0027353151235729456, 0.008625920861959457, -0.006715947762131691, -0.02419055812060833, 0.016156254336237907, -0.01422071736305952, 0.010941260494291782, -0.0043531316332519054, 0.005850433837622404, -0.028602121397852898, -0.015192138031125069, -0.0099625363945961, 0.0003499030717648566, -0.006091462913900614, 0.006416487041860819, -0.021035267040133476, 0.00989680178463459, -0.01191268116235733, -0.036461129784584045, -0.012774542905390263, -0.009086066856980324, -0.019822819158434868, -0.005529061891138554, -0.007793274708092213, -0.017996840178966522, 0.0032958905212581158, -0.014279148541390896, 0.03131917491555214, 0.004780410788953304, -0.006862025707960129, -0.01191998552531004, 0.03237093985080719, 0.005839478224515915, 0.024920949712395668, 2.5592224119463935e-05, 0.001096499850973487, -0.012913317419588566, -0.001975708408281207, -0.0009015767136588693, -0.01752939075231552, 0.007205309811979532, 0.014081942848861217, -0.014023511670529842, -0.00026271259412169456, 0.02429281361401081, 0.014856157824397087, -0.017821546643972397, -0.0034164050593972206, 0.004291048739105463, 0.013066699728369713, 0.029946040362119675, 0.011810426600277424, -0.0042618331499397755, 0.0008997507393360138, 0.01979360356926918, 0.013855521567165852, 0.021312816068530083, -0.010123223066329956, 0.008450626395642757, -0.014498266391456127, 0.005072567146271467, 0.004411563277244568, -0.016419194638729095, 0.03380250558257103, -0.014819638803601265, -0.002056051278486848, 0.010649104602634907, -0.0012672288576141, 0.0018606716766953468, -0.00548889022320509, -0.004824234172701836, 0.019136250019073486, 0.013709443621337414, 0.010641800239682198, -0.005218645557761192, -0.022846639156341553, 0.02227693237364292, -0.004521121736615896, -0.030764078721404076, -0.0025910630356520414, -0.00631788419559598, -0.01167165208607912, -0.005784698761999607, 0.008823126554489136, -0.0012745327549055219, 0.017982233315706253, 0.013899345882236958, -0.008815822191536427, 0.00989680178463459, 0.005295336712151766, -0.009166410192847252, 0.02159036509692669, 0.00016970184515230358, 0.011781211011111736, 0.023883793503046036, -0.00847253855317831, 0.00960464496165514, -0.015016844496130943, 0.02717055380344391, 0.018946349620819092, -0.017266448587179184, 0.0002953519579023123, -0.012000327929854393, -0.004086539149284363, 0.004743891302496195, 0.003562483238056302, -0.014498266391456127, -0.0012617509346455336, 0.001650684280321002, -0.00048753616283647716, 0.013344247825443745, -0.006445702631026506, -0.023401735350489616, 0.005806610453873873, 0.012248661369085312, -0.0076471962966024876, 0.010897437110543251, -0.0058869533240795135, 0.0032904124818742275, 0.0028521777130663395, -0.015206745825707912, 0.039528775960206985, 0.015484294854104519, 0.004400607198476791, 0.011562093161046505, 9.426612086826935e-05, -0.025446830317378044, -0.015937136486172676, 0.006230237428098917, 0.016331547871232033, 0.0156449805945158, -0.0006851982907392085, 0.014191501773893833, -0.011700867675244808, 0.011562093161046505, 0.035759955644607544, 0.011394103057682514, 0.013731355778872967, -0.01932615227997303, 0.011766603216528893, -0.006259453017264605, -0.003966024611145258, -0.0018214131705462933, 0.0030092119704931974, 0.019866641610860825, 0.005171169992536306, -0.02218928560614586, -0.004258180968463421, -0.0030055600218474865, -0.0055619291961193085, 0.016769783571362495, 0.0003444251196924597, -0.009129890240728855, -0.007238177116960287, 0.02381075546145439, 0.026966044679284096, -0.004137666430324316, 0.011861554346978664, 0.011467142961919308, 0.004079235251992941, 0.03765897452831268, -0.012197533622384071, -0.0013658315874636173, 0.0040354118682444096, 0.030208982527256012, 0.004181489814072847, -0.010795182548463345, 0.004137666430324316, -0.007040971424430609, 0.016798999160528183, 0.023094970732927322, -0.001959274522960186, 0.002607496688142419, 0.007121314760297537, 0.020772326737642288, -0.00046151597052812576, -0.0007135009509511292, -0.007347736041992903, -0.021400462836027145, 0.004272788763046265, 0.0020104018040001392, -0.011423319578170776, -0.009831066243350506, -0.00883773434907198, -0.01590792089700699, 0.019647523760795593, 0.0003919005685020238, 0.0048972731456160545, -0.007117662578821182, -0.008706263266503811, -0.023752324283123016, 0.0030950328800827265, -0.008129254914820194, -0.0076471962966024876, 0.006894893478602171, -0.004886317532509565, 0.0009768982417881489, -0.010510330088436604, 0.0007290217909030616, 0.027112122625112534, 0.013103218749165535, 0.011635132133960724, -0.022846639156341553, -0.005331856198608875, -0.01707654818892479, -0.005788350477814674, 0.006748815067112446, 0.000597551348619163, -0.004627028480172157, -0.00847253855317831, 0.01625850982964039, -0.011423319578170776, 4.998615258955397e-05, 0.029332512989640236, 0.017047332599759102, -0.0024851562920957804, 0.02582663483917713, 0.001746548106893897, -0.0041741859167814255, -0.007292956579476595, 0.024351244792342186, 0.008618616499006748, -0.005996512249112129, -0.009867586195468903, -0.017967624589800835, 0.003339713905006647, -0.014761206693947315, -0.008092734962701797, -0.007837098091840744, -0.025651341304183006, 0.009969840757548809, 0.007022711914032698, 0.0158787053078413, -0.004210705403238535, 0.00017004420806188136, 0.025315361097455025, -0.01292792521417141, 0.008034303784370422, -0.017237232998013496, 0.007121314760297537, 0.012336308136582375, -0.010481114499270916, 0.004302004352211952, 0.0001232535287272185, 0.014286452904343605, 0.009568125009536743, -0.01827438920736313, 0.010481114499270916, 0.012723415158689022, 0.00931248813867569, 0.002760878996923566, -0.010839005932211876, 0.003812642302364111, 0.009232145734131336, -0.016901252791285515, -0.0015128229279071093, -0.007114010863006115, 0.0032082435209304094, 0.005503498017787933, 0.025695163756608963, 0.011182289570569992, -0.0016141646774485707, -0.020962228998541832, 0.008297245018184185, 0.011131162755191326, 0.03389015421271324, 0.0008641441236250103, -0.012219445779919624, -0.018654191866517067, 0.018902525305747986, 0.01257003378123045, -0.016170863062143326, -0.0075887651182711124, -0.005218645557761192, 0.0011238895822316408, -0.0008960987906903028, 0.015820274129509926, -0.008348371833562851, -0.0003567504754755646, -0.021634189411997795, 0.00012165579391876236, 0.0010818920563906431, 0.010042879730463028, 0.011700867675244808, 0.0006742424448020756, 0.010941260494291782, -0.02088918909430504, 0.01742713525891304, -0.03169897943735123, 0.007099403068423271, 0.013884738087654114, 0.007712931372225285, 0.008779303170740604, 0.0045065139420330524, 0.00670133950188756, 0.006799942348152399, 0.0023628156632184982, -0.030296629294753075, 0.001832369016483426, 0.0074938139878213406, 0.01896095648407936, -0.005412199068814516, -0.01601017639040947, 0.015922529622912407, -0.011006996035575867, 0.027827907353639603, -0.010751359164714813, -0.0007764971815049648, -0.029098788276314735, -0.00038391188718378544, -0.010349644348025322, 0.009034940041601658, -0.025432223454117775, 0.02182408981025219, 0.03216642886400223, 0.01410385500639677, -0.03505878150463104, 0.008501754142343998, 0.034211527556180954, -0.0006295059574767947, 0.009750722907483578, 0.0209768358618021, -0.00581026216968894, -0.013052091933786869, -0.011299152858555317, 0.007307564374059439, -0.049374449998140335, -0.020480170845985413, 0.0026257564313709736, 0.006767075043171644, -0.01754399761557579, -1.8545089915278368e-05, -0.005397591274231672, -0.009093371219933033, -0.026016537100076675, -0.016755174845457077, -0.0005541843711398542, -0.027594180777668953, 0.003051209496334195, -0.008896165527403355, -0.015133706852793694, 0.02500859647989273, 0.014089247211813927, -0.013307728804647923, -0.007314868271350861, -0.022481443360447884, -0.006975236348807812, -0.014410619623959064, -0.0014790422283113003, -0.0038893334567546844, 0.014081942848861217, 0.0035460495855659246, -0.006862025707960129, 0.0205093864351511, -0.02087458223104477, 0.009407439269125462, -0.00033027378958649933, 0.004123058635741472, -0.007282000966370106, -0.012730719521641731, -0.007194353733211756, -0.01942840777337551, -0.025636732578277588, 0.03651956096291542, -0.008771998807787895, 0.003315976355224848, 0.01422071736305952, -0.01942840777337551, 0.0018488029018044472, -0.007216265425086021, -0.005225949455052614, -0.001466260408051312, -0.018917134031653404, 0.009889497421681881, 0.018069880083203316, 0.012730719521641731, 0.005014135967940092, 0.008910773321986198, -0.011350279673933983, 0.026819966733455658, 0.0001590883475728333, 0.009575429372489452, -0.009582732804119587, -0.00417783809825778, -0.015615765005350113, 0.014863462187349796, -0.0009152715210802853, -0.007764059118926525, -0.010042879730463028, -0.021283600479364395, 0.014213413931429386, 0.0016872037667781115, -0.019486838951706886, -0.016273116692900658, 0.019998112693428993, -0.006252149119973183, 0.0048132785595953465, -0.024628793820738792, -0.01446174643933773, 0.010356947779655457, 0.00536472350358963, 0.003980632405728102, 0.010839005932211876, 0.013417286798357964, -0.005927124992012978, -0.012818366289138794, 0.023328697308897972, -0.00041906198021024466, 0.0312899611890316, 0.01602478325366974, 0.0037688189186155796, 0.002830266021192074, -0.0014781292993575335, 0.014257237315177917, -0.011525574140250683, -0.0042143575847148895, 0.006774378940463066, 0.005218645557761192, -0.021911736577749252, 0.010897437110543251, -0.03169897943735123, -0.027199769392609596, -0.01647762581706047, -0.007398863323032856, 0.011993024498224258, -0.004670851863920689, 0.0011795818572863936, -0.011036211624741554, 0.0027900945860892534, -0.036081328988075256, 0.01942840777337551, -0.033597998321056366, 0.008348371833562851, 0.03307211399078369, 0.023211833089590073, 0.021049875766038895, 0.010955868288874626, -0.0026732319965958595, -0.0029580844566226006, -0.025315361097455025, -0.013621796853840351, 0.015206745825707912, 0.015586549416184425, -0.0013457458699122071, -0.004689111839979887, 0.005616708658635616, -0.01684282161295414, 0.005817566066980362, -0.0019976201001554728, -0.002412117086350918, -0.009852978400886059, -0.000257691164733842, 0.005766438785940409, -0.004371391609311104, 0.00890346895903349, 0.004334872122853994, -0.02110830694437027, 0.0006203760858625174, 0.03164054825901985, -0.008845037780702114, 0.014666256494820118, 0.024964772164821625, -0.011087339371442795, -0.001595904934220016, -0.012146406807005405, -0.01345380675047636, 0.007968568243086338, -0.0009116195724345744, 0.011401407420635223, 0.01552811823785305, 0.00972150731831789, -0.011474446393549442, 0.0028850454837083817, -0.0014406967675313354, -0.022569090127944946, -0.0005911604384891689, 0.005784698761999607, -0.0034291869960725307, 0.0099625363945961, -0.002976344432681799, -0.004144970327615738, -0.0062010218389332294, -0.020246446132659912, -0.005565581377595663, -0.015951745212078094, -0.023986048996448517, -0.019355367869138718, 0.02775486744940281, -0.011715475469827652, -0.01542586274445057, -0.002698795637115836, -0.01458591315895319, 0.0033378880470991135, -0.02064085751771927, 0.00717244204133749, -0.015250569209456444, 0.005262468941509724, 0.008085431531071663, -0.0029891261365264654, 0.0060878111980855465, 0.018318211659789085, 0.0007454555598087609, 0.019881250336766243, -0.005233253352344036, -0.01001366414129734, -0.0020743112545460463, -0.008910773321986198, -0.0099625363945961, 0.034795839339494705, 0.018537329509854317, 0.0012818366521969438, 0.005660532042384148, -0.009181017987430096, 0.0050506554543972015, 0.024570360779762268, 0.001636989414691925, -0.00018545090279076248, -0.006635604426264763, -0.01102160383015871, -0.011123858392238617, 0.02004193514585495, -0.006135286297649145, 0.00345292454585433, 0.01560115721076727, 0.010860918089747429, -0.004144970327615738, 0.006022075656801462, -0.01429375633597374, 0.014556697569787502, 0.004371391609311104, 0.001955622574314475, -0.011898073367774487, -0.015338215976953506, 0.012906013056635857, -0.014213413931429386, 0.025183890014886856, 0.01227057259529829, 0.005474282428622246, 0.0028996532782912254, 0.026367124170064926, -0.010466506704688072, 0.025885066017508507, -0.015922529622912407, 0.0037396030966192484, -0.0007372386753559113, -0.0053172484040260315, -0.004736587405204773, -0.013548757880926132, -0.00601477175951004, -0.01013052649796009, -0.01612703874707222, -0.008501754142343998, 0.00569339981302619, -0.04326837882399559, 0.0017711988184601068, 0.004196097608655691, 0.015586549416184425, -0.017850762233138084, 0.008516361936926842, 0.00924675352871418, 0.0007043710793368518, -0.013724051415920258, -0.0063726636581122875, 0.006285016890615225, 0.0025600213557481766, -0.01789458468556404, -0.004170534200966358, -0.0026914917398244143, 0.013424591161310673, -0.0050689154304564, -0.014206109568476677, 0.004283744841814041, 0.008742783218622208, -0.010503025725483894, -0.00047247184556908906, 0.008501754142343998, -0.017587821930646896, 0.0075157261453568935, -0.009677683934569359, -0.005393939558416605, 0.024804087355732918, -0.015966352075338364, -0.03520485758781433, -0.004729283507913351, -0.00021375356300268322, 0.004630680661648512, 0.010649104602634907, 0.044758375734090805, 0.01907781884074211, 0.01707654818892479, -0.01850811392068863, -0.005393939558416605, 0.009443959221243858, -0.009451262652873993, -0.01179581880569458, 0.01155478972941637, 0.01381169818341732, 0.0042399209924042225, -0.010941260494291782, -0.0045941611751914024, 0.02797398529946804, 0.013227385468780994, -0.00047703678137622774, 0.0012991834664717317, -0.0135049344971776, -0.0103715555742383, 0.004502862226217985, -0.013950472697615623, -0.0025490655098110437, 0.006160850170999765, -0.020670073106884956, 0.0013913953443989158, -0.007851705886423588, -0.002740793162956834, -0.004616072867065668, -0.015455079264938831, -0.009641164913773537, 0.01143792737275362, 0.0007924744859337807, 0.0011384973768144846, 0.011766603216528893, 0.01044459454715252, 0.014147678390145302, -0.00923944916576147, -0.007691019680351019, 0.0002921565028373152, 0.009999056346714497, -0.0011202376335859299, -0.03710387647151947, 0.027652611956000328, -0.00690584909170866, 0.002854003803804517, 0.021867914125323296, -0.00563131645321846, -0.012825670652091503, 0.012139102444052696, 0.0054231551475822926, -0.024950165301561356, -0.011299152858555317, -0.005492542404681444, -0.010101310908794403, 0.013672924600541592, -0.010050183162093163, 0.0058686938136816025, 0.012460474856197834, -0.017514782026410103, 0.01752939075231552, -0.016901252791285515, 0.020217230543494225, -0.004429822787642479, 0.00989680178463459, 0.0036939538549631834, -0.013680228032171726, -0.0011868857545778155, -0.009217537939548492, -0.012548121623694897, 0.03651956096291542, 0.01636076346039772, 0.0014343057991936803, -0.06106070801615715, 0.004959356505423784, -0.016302332282066345, 0.010583369061350822, -0.0016260335687547922, 0.02062624879181385, -0.006829158402979374, 0.003237459110096097, 0.00010293951345374808, 0.004645288456231356, -0.013782482594251633, 2.2025860744179226e-05, -0.01037885993719101, 0.009860281832516193, 0.0068583739921450615, 0.0025125457905232906, 0.011255329474806786, -0.03295525163412094, 0.0034072750713676214, 0.023518597707152367, -0.004590508993715048, -0.02229154109954834, -0.014921893365681171, -0.0007034580921754241, -0.024468107149004936, 0.033364273607730865, -0.01647762581706047, 0.027784083038568497, 0.006631952710449696, 0.026060359552502632, -0.009275969117879868, 0.005605753045529127, 0.002486982150003314, -0.005003179889172316, 0.002187521895393729, 0.007924744859337807, -0.003925852943211794, -0.005167518276721239, -0.02525692991912365, -0.036081328988075256, 0.016170863062143326, 0.01732487976551056, 0.016331547871232033, 0.007983176037669182, -0.016740567982196808, 0.006095115095376968, -0.0045065139420330524, 0.014439835213124752, -0.00717244204133749, 0.0008449713932350278, -0.010546850040555, -0.013804394751787186, 0.0004989485023543239, 0.021634189411997795, -0.008516361936926842, 0.002722533419728279, -0.025914281606674194, 0.015060667879879475, -0.0065917810425162315, 0.016068607568740845, 0.00411575473845005, 0.02014419063925743, -0.009546213783323765, -0.007632588502019644, 0.005945384968072176, 0.015586549416184425, -0.0005560103454627097, 0.007924744859337807, 0.005901561118662357, -0.012496993876993656, 0.001603208831511438, 0.011839642189443111, -0.008384891785681248, -0.009779938496649265, 0.009473174810409546, 0.00020964510622434318, -0.009611948393285275, -0.020465562120079994, -0.000787909550126642, 0.002412117086350918, -0.01802605576813221, 0.017412526533007622, 0.0022258672397583723, -0.009268664754927158, 0.015542726032435894, 0.008107342757284641, 0.016404587775468826, -0.00042476816452108324, -0.0035204857122153044, 0.019632916897535324, -0.00040719311800785363, 0.0007016321178525686, 0.005419502966105938, 0.004287396557629108, 0.003569787135347724, 0.008450626395642757, -0.009181017987430096, -0.014184198342263699, 0.00447364617139101, 0.0017282882472500205, 0.012898709625005722, 0.010320428758859634, 0.0095535172149539, 0.0013740485301241279, 0.0036501302383840084, 0.014242629520595074, 0.007238177116960287, -0.024555753916502, -0.01850811392068863, 0.0020359656773507595, 0.012095279060304165, 0.0007043710793368518, -0.02775486744940281, -0.002233171137049794, -0.005466978531330824, -0.01764625310897827, 0.013855521567165852, 0.006029379554092884, 0.0010198088129982352, 0.015937136486172676, 0.020786935463547707, 0.004513817839324474, 0.020772326737642288, 0.007859010249376297, 0.013636404648423195, -0.004564945120364428, 0.026001928374171257, 0.008969204500317574, 0.03085172548890114, 0.014001600444316864, 0.002147350227460265, -0.0035880471114069223, 0.0017867195419967175, -0.005766438785940409, -0.017105763778090477, 0.004491906147450209, 0.006719599477946758, 0.014819638803601265, -0.014761206693947315, -0.020100366324186325, 0.007698323577642441, 0.019749779254198074, -0.014688167721033096, -0.004630680661648512, -0.010364252142608166, -0.010145134292542934, -0.010050183162093163, 0.016915861517190933, 0.01882948726415634, 0.004667200148105621, -0.012526209466159344, 0.005193081684410572, 0.019253114238381386, 0.011657044291496277, -0.0003334692446514964, -0.006376315373927355, 0.014593217521905899, 0.007022711914032698, -0.019384583458304405, -0.006230237428098917, 0.008428715169429779, -0.003206417663022876, 0.0042618331499397755, 0.0008970117778517306, -0.004236269276589155, 0.0074938139878213406, 0.042976222932338715, -0.02440967597067356, -0.0055619291961193085, -0.030764078721404076, -0.006690383888781071, -0.012431259267032146, 0.020962228998541832, -0.0009997229790315032, -0.008786606602370739, -0.007099403068423271, 0.0022404752671718597, -0.008107342757284641, -0.004079235251992941, -0.013293121010065079, 0.0005678791785612702, 0.007924744859337807, 0.007241829298436642, 0.010108615271747112, -0.004696415737271309, 0.017982233315706253, -0.010824398137629032, -0.0002334969467483461, -0.0038309020455926657, 0.011898073367774487, 0.02833918109536171, -0.0023171661887317896, -0.015279784798622131, -0.00022117160551715642, 0.0310562364757061, -0.009422047063708305, -0.004250877071171999, -0.015221353620290756, -0.006978888530284166, -0.014899981208145618, -0.010802486911416054, -0.0050506554543972015, 0.009027635678648949, 0.02845604345202446, -0.012957140803337097, 0.004101146943867207, 0.019384583458304405, 0.010057487525045872, 0.008216901682317257, 0.021298209205269814, -0.0032429371494799852, 0.0036081327125430107, 0.01393586490303278, -0.00030379710369743407, 0.011525574140250683, 0.0020396176259964705, 0.0019464927027001977, 0.024511929601430893, 0.0008572967490181327, -0.004199749790132046, -0.021254384890198708, -0.010875525884330273, -0.018069880083203316, 0.02265673689544201, -0.005313596222549677, 0.010846310295164585, -0.0011129336198791862, -0.00750111835077405, -0.024029871448874474, -0.0014087421586737037, 0.012555425986647606, -0.006898545194417238, -0.027900945395231247, -0.017251841723918915, -0.0005646837526001036, 0.006018423940986395, -0.009947928600013256, -0.016200078651309013, -0.0022167374845594168, -0.013512237928807735, 0.012314396910369396, 0.0005660532042384148, 0.021531933918595314, -0.002421247074380517, -0.0161124300211668, 0.021546542644500732, -0.0018305430421605706, -0.007446338888257742, -0.011890769936144352, 0.003723169444128871, -0.0003613154112827033, 0.018186742439866066, 0.01138679962605238, -0.0007541289669461548, 0.024614185094833374, -0.017485566437244415, 0.010985084809362888, -0.00685107009485364, -0.0152359614148736, 0.0012699677608907223, -0.005397591274231672, -0.0018551937537267804, 0.01742713525891304, -0.00711035868152976, 0.007793274708092213, 0.00842141080647707, -0.011087339371442795, 0.00498126819729805, 0.0011914507485926151, 0.005346463993191719, -0.003253892995417118, 0.010700231418013573, 0.0009960710303857923, 0.010773271322250366, 0.04528425633907318, 0.007661804091185331, 0.03426995873451233, 0.005120042711496353, 0.008969204500317574, -0.009232145734131336, 0.0026677539572119713, 0.0017182454466819763, 0.0010736751137301326, 0.006562565453350544, 0.008888861164450645, -0.005456022452563047, 0.03903210908174515, 0.02667388878762722, -0.00038254240644164383, -0.0066575161181390285, 0.01542586274445057, 0.007238177116960287, 0.003688475815579295, 0.012380131520330906, 0.001415133010596037, 0.016872037202119827, -0.0017392442096024752, -0.022715168073773384, 0.01174469105899334, -0.010517633520066738, 0.021663405001163483, -0.00750111835077405, -0.004857101943343878, 0.011299152858555317, 0.009297880344092846, 0.006573521066457033, -0.021911736577749252, 0.011766603216528893, 0.01155478972941637, -0.0024815043434500694, 0.008311852812767029, 0.01636076346039772, 0.020421739667654037, 0.00536472350358963, -0.021371247246861458, -0.0038747256621718407, 0.005021439865231514, 0.014140374958515167, -0.0264255553483963, 0.010539545677602291, -0.008406803011894226, 0.010860918089747429, 0.006387271452695131, -0.0037688189186155796, 0.0017246362986043096, -0.0006518741720356047, -0.022554481402039528, 0.00789552927017212, 0.0041267103515565395, 0.015498902648687363, 0.0024614185094833374, -0.011722779832780361, -0.009166410192847252, 0.0016461192863062024, -0.01410385500639677, -0.01612703874707222, 0.0060403356328606606, 0.009823761880397797, -0.013490326702594757, 0.006774378940463066, -0.03353956714272499, 0.013373463414609432, 0.004959356505423784, 0.024920949712395668, -0.0078078825026750565, -0.02419055812060833, 0.0032319813035428524, -0.02348938211798668, -0.014644344337284565, -0.01839125156402588, -0.034912701696157455, 0.01729566417634487, -0.015966352075338364, 0.0021309165749698877, 0.004721979610621929, 0.0022349972277879715, 0.0038820295594632626, -0.002342729829251766, -0.01764625310897827, -0.006635604426264763, 0.015980960801243782, -0.0059344288893043995, 0.013738659210503101, -0.0042399209924042225, -0.02335791289806366, -0.005543669685721397, -0.010992388240993023, 0.017456350848078728, -0.003987936303019524, 0.004137666430324316, -0.015031452290713787, -0.012540818192064762, 0.004557641223073006, 0.01934076100587845, 0.007260088808834553, -0.02360624447464943, -0.00022619303490500897, -0.003991588018834591, -0.0008732740534469485, -0.023693891242146492, -0.008297245018184185, 0.00047703678137622774, -0.004075583070516586, 0.015323608182370663, 0.014417923055589199, 0.01872723177075386, -0.0058686938136816025, 0.012716111727058887, 0.01577645167708397, 0.007468250580132008, -0.006686731707304716, -0.0026458422653377056, 0.0060476395301520824, 0.01535282377153635, -0.007975872606039047, 0.009429351426661015, 0.043443672358989716, 0.009736115112900734, 0.006821854040026665, -0.0027627048548310995, -0.012044151313602924, 0.012577337212860584, -0.0029471286106854677, -0.014089247211813927, -0.007486510090529919, -0.022496050223708153, -0.009984448552131653, 0.018946349620819092, 0.016915861517190933, -0.0034036231227219105, 0.0069715846329927444, -0.01574723608791828, 0.014564001932740211, 0.0015511683886870742, 0.00883773434907198, 0.013607189059257507, 0.008194989524781704, 0.02122516930103302, -0.0043458277359604836, -0.01694507710635662, 0.0014050902100279927, 0.0026221044827252626, 0.009677683934569359, 0.01191998552531004, -0.010313124395906925, -0.024599576368927956, -0.0080562150105834, -0.005474282428622246, -0.019822819158434868, 0.006328840274363756, 0.02930329740047455, -0.002158306073397398, 0.003754211124032736, -0.00787361804395914, 0.004396955482661724, 0.0024504626635462046, 0.005412199068814516, -0.008874253369867802, -0.008538274094462395, -0.02088918909430504, -0.011211506091058254, 0.006898545194417238, 0.0009960710303857923, -0.03654877841472626, -0.0030000819824635983, 0.012146406807005405, 0.006215629633516073, -0.007099403068423271, -0.003045731456950307, 0.007596069015562534, 0.0008299070759676397, 0.005605753045529127, 0.009232145734131336, -0.002737141214311123, 0.012548121623694897, -0.009093371219933033, 0.02833918109536171, -0.009429351426661015, 0.008107342757284641, 0.023986048996448517, 0.002965388586744666, 0.012058759108185768, 0.01381169818341732, -0.003343365853652358, 0.0035423976369202137, 0.018040664494037628, -0.005090827122330666, -0.01896095648407936, 0.0036610860843211412, 0.013081307522952557, -0.02334330417215824, -0.02454114519059658, -0.020918404683470726, -0.0057153115049004555, 0.0018442379077896476, 0.023620853200554848, -0.03368564322590828, 0.034562114626169205], "35fdfb36-0f18-44d3-a476-1c281c5b4d67": [-0.014931155368685722, -0.00887544360011816, -0.006451816763728857, 0.0311781857162714, -0.00779454642906785, -0.030855931341648102, 0.04138293117284775, 0.034642428159713745, -0.005824090447276831, 0.044874031096696854, 0.0065894462168216705, -0.023860307410359383, 0.010332305915653706, 0.01933530904352665, 0.0033182210754603148, 0.07121838629245758, -0.0089090121909976, 0.013105042278766632, 0.02049005590379238, -0.04769376292824745, 0.04576022922992706, 0.0005752758006565273, -0.01456861849874258, 0.004128894302994013, 0.0005500995903275907, -0.0017807953990995884, -0.016690131276845932, 0.010956674814224243, -0.024061717092990875, -0.019375590607523918, 0.006240336690098047, -0.01485059130936861, 0.004441078752279282, 0.012628373689949512, 0.029942873865365982, -0.01905333623290062, 0.006116134114563465, 0.02488078363239765, -0.04833827167749405, -0.03152729570865631, -0.002314530545845628, 0.04812343418598175, 0.022477297112345695, -0.017831452190876007, -5.853462789673358e-05, 0.021121138706803322, -0.002925472566857934, 0.007210459094494581, -0.006260477472096682, 0.023860307410359383, 0.02485392801463604, -0.019039908424019814, 0.003937555011361837, 0.014085235074162483, 0.017495770007371902, -0.06380651891231537, 0.04057729244232178, 0.041705187410116196, -0.010412869043648243, -0.03810667246580124, 0.01775088720023632, -0.023470915853977203, 0.0002249072422273457, -0.013084901496767998, -0.0005144333699718118, 0.04232284426689148, -0.016609568148851395, -0.016582712531089783, -0.019281599670648575, 0.00041037178016267717, 0.008284642361104488, 0.054085154086351395, -0.0011925118742510676, 0.012151704169809818, 0.05088945850729942, -0.03912714496254921, 0.03445444628596306, 0.02488078363239765, -0.0019587071146816015, -0.021456822752952576, 0.017549477517604828, -0.004384012892842293, 0.01950986310839653, -0.004538426641374826, 0.06010058522224426, 0.018892208114266396, -0.003494454314932227, -0.04527684673666954, 0.004417581018060446, -0.04299420863389969, -0.0077072689309716225, 0.0033971064258366823, -0.011675035580992699, -0.024545099586248398, 0.019590428099036217, 0.009848923422396183, 0.011084234341979027, -0.011258789338171482, 0.0022792837116867304, -0.032708898186683655, 0.017415205016732216, -0.018784789368510246, 0.05303782597184181, -0.014555190689861774, 0.019496437162160873, -0.014152372255921364, -0.022893542423844337, -0.013440725393593311, -0.028465870767831802, 0.042027443647384644, 0.02678745985031128, -0.006337684579193592, -0.021644804626703262, -0.012594805099070072, -0.059456076472997665, -0.0017270861426368356, -0.03386364504694939, 0.004759977106004953, -0.02717685140669346, -0.02298753336071968, 0.018006006255745888, -0.004719695076346397, 0.023752890527248383, -0.03791869059205055, -0.03765014186501503, 0.01156761683523655, 0.013172179460525513, 0.03571661189198494, 0.006619657855480909, -0.015938201919198036, -0.01348100695759058, 0.0006747217266820371, 0.021255413070321083, 0.027713943272829056, 0.010144323110580444, 0.003924127668142319, 0.028036197647452354, 0.045008301734924316, -0.0013175535714253783, 0.03893916308879852, -0.06418248265981674, -0.02808990702033043, -0.01038601528853178, 0.02189992368221283, -0.00773412361741066, 0.015602519735693932, -0.01507885567843914, 0.04382669925689697, -0.0014593794476240873, -0.0011908335145562887, -0.055803850293159485, -0.06488070636987686, -0.006455173250287771, -0.001336855348199606, 0.054675955325365067, -0.0764818862080574, 0.020114092156291008, 0.02330978959798813, -0.0023313146084547043, 0.04672699794173241, 0.03512581065297127, -0.0075192865915596485, -0.005615967325866222, 0.04406839236617088, 0.02991602011024952, 0.02594153955578804, 0.0288955457508564, 0.010238314978778362, -0.030694803223013878, 0.014971436932682991, 0.015307119116187096, -0.03786497935652733, 0.011607899330556393, 0.013467580080032349, -0.012527668848633766, -0.008089946582913399, 0.020167801529169083, 0.029969729483127594, -0.006092636380344629, -0.024424254894256592, -0.0030261771753430367, 0.009855636395514011, -0.0039140572771430016, -0.008042951114475727, 0.01387039851397276, -0.02309495210647583, 0.03227922320365906, 0.033890500664711, -0.01297076977789402, -0.00019595462072174996, -0.0125478096306324, -0.013655561953783035, -0.03445444628596306, 0.007969100959599018, -0.0253104567527771, -0.01233968697488308, 0.022960679605603218, 0.02081231214106083, -0.02467937394976616, 0.018744507804512978, 0.004612276796251535, -0.03950310871005058, -0.03332655504345894, 0.028170470148324966, 0.027015723288059235, 0.016690131276845932, -0.029862310737371445, -0.027257414534687996, 0.006901631131768227, -0.029513200744986534, 0.01855652593076229, -0.025954967364668846, 0.01753605157136917, -0.018811644986271858, 0.022302741184830666, 0.0067841424606740475, -0.003434031503275037, 0.04667328670620918, -0.016461867839097977, -0.018462534993886948, 0.023672325536608696, 0.015159418806433678, 0.013413870707154274, -0.03107076697051525, -0.006122848019003868, -0.02155081368982792, -0.008841875940561295, -0.003719361498951912, -0.027713943272829056, -0.036226850003004074, 0.021429967135190964, -0.00847262516617775, -0.009184272028505802, 0.003165485570207238, -0.02737826108932495, 0.0412755124270916, 0.05859672650694847, 0.009822068735957146, -0.0169452503323555, 0.014394063502550125, -0.003219194710254669, -0.019066762179136276, 0.009036571718752384, -0.03209124132990837, 0.04312847927212715, 0.03015771135687828, 0.004461219534277916, 0.02461223676800728, 0.0065894462168216705, 0.02372603490948677, 0.013427297584712505, -0.011708604171872139, -0.033621951937675476, -0.009573663584887981, -0.015199701301753521, 0.03458872064948082, 0.019483009353280067, -0.00011958686809521168, 0.024800218641757965, 0.037032488733530045, -0.015172846615314484, 0.03319228067994118, -0.02144339494407177, 0.03174213320016861, 0.015602519735693932, 0.023739462718367577, 0.016716985031962395, 0.006747217383235693, -0.01024502795189619, 0.010137610137462616, 0.020060382783412933, 0.02228931523859501, -0.017952296882867813, 0.03633426874876022, 0.0018311477033421397, -0.029271509498357773, 0.0003673624887596816, -0.00623026629909873, 0.02565956674516201, -0.010540428571403027, -0.0047700474970042706, 0.027056004852056503, 0.026411494240164757, 0.01188315823674202, 0.04471290111541748, 0.03434702754020691, -0.011856303550302982, -0.007579709403216839, -0.026492059230804443, -0.005770381074398756, -0.005407844204455614, 0.011574330739676952, -0.004994954913854599, 0.03442759066820145, 0.005162796005606651, -0.04277937114238739, 0.018825070932507515, -0.0011841198429465294, 0.01792544312775135, 0.0286807082593441, 0.003361859591677785, 0.003125203540548682, 0.015803929418325424, -0.039771657437086105, 0.0527961365878582, -0.0032913663890212774, 0.05107744038105011, 0.018757935613393784, 0.01179588120430708, 0.03187640383839607, -0.00945953093469143, -0.0475863441824913, -0.016609568148851395, 0.0002023535780608654, -0.008432342670857906, 0.024665946140885353, -0.011789167299866676, -0.014488054439425468, -0.03423960879445076, 0.0034273178316652775, -0.002839873544871807, 0.009432677179574966, -0.022665278986096382, 0.0532258078455925, 0.04299420863389969, 0.0034172472078353167, 0.026451777666807175, 0.00020675940322689712, -0.03292373567819595, -0.027499105781316757, -0.025686420500278473, -0.02752596139907837, 0.00898286234587431, 0.03619999438524246, -0.04132922366261482, -0.016542430967092514, -0.03273575380444527, -0.04906334728002548, 0.03297744318842888, -0.04895592853426933, -0.0027911996003240347, -0.022302741184830666, 0.027955634519457817, 0.02000667341053486, -0.01613961160182953, -0.00847262516617775, -0.022128187119960785, 0.0006633924203924835, -0.02461223676800728, -0.018261125311255455, 0.0008845232659950852, -0.0341053381562233, 0.03335340693593025, -0.011419916525483131, 0.015669656917452812, -0.010117469355463982, -0.011050665751099586, -0.001522319857031107, 0.010278596542775631, -0.030104001984000206, -0.007720696274191141, -0.026881450787186623, 0.026559194549918175, 0.03329969942569733, 0.011292357929050922, -0.028492726385593414, 0.009989909827709198, -0.014890872873365879, -0.01230611838400364, -0.012735792435705662, 0.007848255336284637, 0.03152729570865631, 0.02330978959798813, 0.0206377562135458, -0.03442759066820145, -0.015615947544574738, 0.0580059252679348, 0.0012311154277995229, 0.002712314249947667, 0.007828114554286003, -0.003262833459302783, -0.03276260569691658, -0.052849844098091125, 0.027499105781316757, 0.03332655504345894, -0.0033685732632875443, 0.017562905326485634, -0.008318210951983929, -0.004612276796251535, 0.017092950642108917, -0.015454819425940514, -0.016179893165826797, -0.012044286355376244, 0.005149368662387133, -0.02713656984269619, -0.03676394000649452, 0.020651184022426605, -0.0074454364366829395, 0.005474980920553207, -0.003548163454979658, -0.006079209037125111, 0.02277269773185253, 0.010090614669024944, -0.0002540696586947888, 0.037139907479286194, -0.027821362018585205, -0.02424970082938671, -0.03163471445441246, 0.004524999298155308, 0.017200369387865067, 0.016757268458604813, 0.013185606338083744, -0.017240650951862335, 0.01277607399970293, 0.031795840710401535, -0.005894583649933338, -0.01789858750998974, 0.03125875070691109, -0.011789167299866676, -0.018006006255745888, 0.017871733754873276, 0.01284992415457964, 0.008761311881244183, 0.011943581514060497, 0.005458196625113487, -0.013266170397400856, -0.01916075311601162, 0.04312847927212715, -0.0031117761973291636, 0.02109428495168686, 0.03241349756717682, 0.03278946131467819, 0.0009357148082926869, -0.007680414244532585, -0.01775088720023632, 0.0056260377168655396, -0.0008677391451783478, -0.021926777437329292, 0.023524625226855278, -0.031446732580661774, -0.04014762118458748, 0.04036245867609978, -0.035340648144483566, 0.008828448131680489, -0.07481690496206284, -0.023645471781492233, -0.044417500495910645, 0.03176898509263992, -0.019026480615139008, -0.007512573152780533, 0.006253764033317566, 0.014353781007230282, -0.007727409712970257, -0.0016406479990109801, 0.020584046840667725, -0.002069482346996665, 0.02524331957101822, 0.0215105302631855, 0.014434345066547394, -0.03864376246929169, -0.005481694359332323, -0.0014577009715139866, 0.00817051064223051, -0.004155748523771763, 0.02407514490187168, 0.020154373720288277, 0.033165425062179565, -0.0214031133800745, -0.018408825621008873, 0.019348736852407455, -0.006206768564879894, -0.011641466990113258, 0.029378928244113922, 0.04401468113064766, 0.019483009353280067, 0.01360185258090496, 0.013789834454655647, 0.00650216918438673, -0.0014551833737641573, 0.010835829190909863, 0.01180930808186531, -0.013924107886850834, -0.008506192825734615, -0.04087269306182861, 0.025256747379899025, 0.00026770675322040915, -0.01968441903591156, 0.0075595686212182045, 0.025471584871411324, 0.007156749721616507, -0.004407510627061129, -0.010614278726279736, 0.009969769045710564, 0.007982528768479824, 0.0026166446041315794, -0.018328260630369186, 0.0034910973627120256, -0.04425637423992157, 0.03568975627422333, -0.02590125799179077, -0.022692132741212845, -0.0261832308024168, -0.017267504706978798, 0.0037428592331707478, -0.041597768664360046, 0.02800934389233589, -0.019241318106651306, 0.037623289972543716, -0.008929152972996235, -0.008573330007493496, -0.021711939945816994, 0.033138569444417953, -0.032574623823165894, 0.006888203788548708, 0.013803262263536453, 0.02007381059229374, 0.011715317144989967, -0.015052000992000103, 0.038187235593795776, -0.004817042965441942, -0.0013981173979118466, -0.02435711771249771, -0.02720370516180992, 0.01246053259819746, -0.0035548771265894175, 0.011540762148797512, -0.008580042980611324, -0.01102381106466055, 0.03684450685977936, -0.028734417632222176, -0.008781452663242817, 0.01690496876835823, -0.029217800125479698, 0.005209791474044323, 0.002239001914858818, 0.011641466990113258, 0.017374923452734947, 0.010339018888771534, 0.0031520582269877195, 0.00040197971975430846, -0.031017057597637177, 0.014018098823726177, -0.006586089730262756, -0.0001665824092924595, -0.019254745915532112, 0.02404829114675522, -0.020960012450814247, 0.017764315009117126, 0.011191653087735176, 0.026371212676167488, -0.0006302437977865338, 0.031097622588276863, -0.007009049411863089, 0.016716985031962395, -0.012212127447128296, -0.008143655955791473, 0.017388351261615753, 0.014662609435617924, -0.006092636380344629, -0.0008685783250257373, -0.03705934062600136, 0.032144952565431595, -0.01844910718500614, 0.0024790149182081223, 0.0074924323707818985, -0.03437388315796852, -0.021067431196570396, 0.007606564089655876, -0.01575022004544735, 0.02583412081003189, 0.02527017518877983, -0.026035530492663383, 0.052151624113321304, -0.036683376878499985, -0.009895918890833855, 0.04379984736442566, -0.027552815154194832, 0.015280265361070633, -0.03233293443918228, -0.01383011694997549, -0.010996957309544086, 0.02598182111978531, 0.03050682134926319, 0.01648872159421444, 0.005767024587839842, 0.017428632825613022, 0.003645511344075203, -0.018610235303640366, -0.0012193664442747831, -0.020100664347410202, -0.005528689827769995, -0.0052869985811412334, -0.018999626860022545, -0.011648180894553661, -0.016649849712848663, 0.02098686620593071, 0.00621348200365901, -0.012695509940385818, 0.06020800396800041, 0.005135941319167614, 0.023846881464123726, 0.015280265361070633, 0.020046954974532127, -0.003749572904780507, -0.049439311027526855, 0.01642158441245556, -0.0013301416765898466, 0.03458872064948082, 0.008512906730175018, 0.004434365313500166, -0.023927444592118263, -0.01462232694029808, 0.032467205077409744, -0.00808323360979557, -0.008056378923356533, -0.0075595686212182045, -0.004068471025675535, 0.04205429553985596, 0.015629375353455544, -0.0056596058420836926, 0.03265518695116043, 0.006072495598345995, 0.008479338139295578, -0.002274248516187072, -0.0027324550319463015, 0.036065723747015, -0.0032796175219118595, 0.011775740422308445, 0.0053205667063593864, 0.02696201391518116, -0.027955634519457817, -0.029056672006845474, -0.004467933438718319, -0.004817042965441942, -0.006821067072451115, -0.007619991432875395, 0.023363498970866203, -0.009338685311377048, 0.012279263697564602, -0.04232284426689148, -0.01613961160182953, -0.022168468683958054, 0.007391727529466152, 0.04275251552462578, -0.019362162798643112, -0.017254076898097992, 0.025820693001151085, -0.01219869963824749, 0.021631376817822456, -0.011816021986305714, -0.022208750247955322, 0.00550854904577136, -0.006193341221660376, 0.007687128148972988, 0.014635754749178886, -0.01785830594599247, 0.01305804681032896, -0.006418248172849417, 0.016018766909837723, 0.014931155368685722, 0.04691497981548309, -0.04790860041975975, -0.00868074782192707, 0.013454152271151543, 0.033380262553691864, 0.006059068255126476, 0.027821362018585205, 0.0030127500649541616, 0.005511905532330275, -0.0030278556514531374, 0.011104375123977661, -0.05470281094312668, 0.05924123898148537, -0.002514261519536376, -0.00601878622546792, 0.0048036156222224236, -0.015575665049254894, 0.010708269663155079, 0.03705934062600136, -0.01916075311601162, -0.0242228452116251, -0.03783812373876572, -0.030748512595891953, 0.03241349756717682, -0.03125875070691109, 0.004984884522855282, -0.011379634961485863, -0.03501839190721512, -0.005062091164290905, -0.010855969972908497, -0.014514909125864506, 0.01383011694997549, 0.0072238864377141, 0.06198040768504143, 0.000961730198469013, -0.02175222337245941, 0.023846881464123726, -0.00011434183397796005, -0.007982528768479824, -0.04108753055334091, -0.016851259395480156, -0.028465870767831802, -0.003961052745580673, -0.01933530904352665, -0.013172179460525513, 0.021349404007196426, -0.011258789338171482, -0.012097995728254318, -0.006300759501755238, 0.008452484384179115, -0.003773070638999343, -0.004098682664334774, 0.0013611923204734921, 0.031366169452667236, -0.013192320242524147, 0.009063426405191422, 0.00047457104665227234, 0.042591389268636703, -0.0007754264515824616, 0.04917076602578163, 0.02878812700510025, 0.02696201391518116, -0.006072495598345995, -0.00933197233825922, -0.03971794620156288, -0.04208115115761757, 0.005572328809648752, -0.020167801529169083, -0.0009885848267003894, -0.0032712253741919994, 0.013883826322853565, 0.004739836324006319, 0.01182944979518652, 0.004766690544784069, 0.009540094994008541, 0.023188943043351173, 0.01711980439722538, -0.012138277292251587, 0.04742521420121193, 0.0005173705867491663, 0.006649869028478861, -0.011413203552365303, 0.006733790040016174, -0.04994954913854599, -0.01462232694029808, -0.022517578676342964, 0.00794224627315998, 0.009466244839131832, -0.013977817259728909, -0.02496134676039219, 0.024451108649373055, -0.014071808196604252, 0.01905333623290062, -0.011440057307481766, 0.01891906186938286, -0.02288011461496353, 0.02948634698987007, -0.013937534764409065, 0.004024832509458065, 0.03695192188024521, -0.019818691536784172, 0.031581003218889236, 0.002007381059229374, 0.004723052028566599, -0.01866394467651844, -0.01191672682762146, 0.002970789559185505, 0.01792544312775135, 0.0048606819473207, 0.03944940119981766, 0.029083527624607086, 0.013883826322853565, 0.01746891438961029, 0.049090199172496796, 0.003432353027164936, -0.0066364421509206295, 0.0032796175219118595, -0.025511866435408592, -0.042806226760149, 0.006492098327726126, -0.021631376817822456, -0.004890893120318651, 0.020302074030041695, 0.009775073267519474, 0.005454839672893286, -0.020127519965171814, 0.03335340693593025, 0.006673367228358984, 0.01337358821183443, 0.017213795334100723, -0.0005484211724251509, -0.015347401611506939, -0.03037254698574543, -0.010285310447216034, 0.018784789368510246, -0.010540428571403027, -0.027056004852056503, 6.299290544120595e-05, 0.008237646892666817, -0.002314530545845628, 0.017522623762488365, 0.0013955998001620173, 0.007653559558093548, 0.03047996573150158, 0.012594805099070072, -0.00705604488030076, -0.002072839066386223, -0.00785496924072504, -0.003625370329245925, 0.01940244622528553, 0.01581735722720623, -0.03405162692070007, -0.018435679376125336, 0.035985156893730164, -0.04457863047719002, 0.002854979131370783, 0.03440073877573013, 0.016542430967092514, 0.03619999438524246, -0.0033836790826171637, -0.012225554324686527, -0.019066762179136276, -0.0031940184999257326, 0.016864685341715813, 0.01788516156375408, -0.00725074065849185, 0.010137610137462616, 0.00866732094436884, 0.0035448067355901003, 0.0061429888010025024, 0.008042951114475727, 0.0010271882638335228, -0.002145010745152831, -0.009271549060940742, 0.024840500205755234, -0.008036238141357899, 0.01051357388496399, 0.00792881939560175, -0.03335340693593025, 0.017267504706978798, -0.004384012892842293, -0.028412161394953728, 0.0033736086916178465, -0.0017094628419727087, 0.014125517569482327, -0.025713276118040085, 0.03284316882491112, -0.0038334934506565332, 0.020516911521553993, 0.03958367556333542, 0.003601872595027089, -0.027082860469818115, 0.011836162768304348, -0.0047264089807868, -0.014783455058932304, 0.02365889959037304, 0.027901925146579742, 0.000732207321561873, -0.034535009413957596, 0.007861683145165443, -0.0021097641438245773, 0.041006967425346375, -0.01274250540882349, -0.0022037553135305643, -0.007391727529466152, -0.006948626600205898, -0.003548163454979658, -0.010627706535160542, -0.028170470148324966, 0.024169135838747025, 0.005589112639427185, 0.029862310737371445, 0.030909638851881027, 0.007760978303849697, 0.006599517073482275, 0.0038502777460962534, -0.01779116876423359, 0.005072161555290222, 0.004531713202595711, -0.014071808196604252, -0.013212461024522781, 0.0011866374406963587, -0.03319228067994118, 0.03834836184978485, -0.008324924856424332, -0.020328929647803307, 0.006626371294260025, -0.0016230245819315314, -0.016018766909837723, 0.03746215999126434, 0.010063759982585907, 0.0231352336704731, -0.006576019339263439, 0.010083900764584541, -0.01824769750237465, 0.013729412108659744, 0.04417581111192703, 0.012400109320878983, -0.03187640383839607, -0.01683783158659935, 0.014676036313176155, -0.042618244886398315, -0.014608900062739849, -0.02165823057293892, 0.04890221729874611, -0.018865354359149933, 0.031930115073919296, 0.006532380357384682, 0.032816316932439804, -0.009815354831516743, -0.012984196655452251, 0.008385347202420235, -0.009499813430011272, -0.004931175149977207, 0.03947625681757927, 0.04065785929560661, 0.006717005744576454, -0.01796572469174862, 0.005397773813456297, -0.01592477597296238, 0.022799551486968994, 0.00144091690890491, 0.02161794900894165, 0.014984864741563797, -0.014353781007230282, 0.007828114554286003, -0.07111097127199173, -0.04073842242360115, 0.02024836465716362, 0.030318837612867355, -0.016247030347585678, -0.005615967325866222, -0.020543765276670456, -0.005511905532330275, -0.012702223844826221, -0.016461867839097977, -0.01870422624051571, -0.00868074782192707, -0.010016764514148235, -0.011836162768304348, -0.023967726156115532, 0.002987573854625225, 0.0312856025993824, 0.0014249719679355621, 0.0009709614678286016, -0.004870752338320017, 0.01796572469174862, 0.004538426641374826, -0.015951629728078842, 0.0075260004960000515, 0.013736126013100147, 0.005391059909015894, 0.01003690529614687, -0.019939538091421127, -0.0027643449138849974, -0.0044310083612799644, -0.01620674878358841, -0.03176898509263992, -0.02228931523859501, -0.0018680727807804942, 0.0057401699014008045, 0.01891906186938286, -0.004353801254183054, 0.022262459620833397, -0.02945949137210846, -0.0004414224240463227, -0.025256747379899025, 0.01634102128446102, -0.023994581773877144, -0.017066095024347305, 0.007291022688150406, 0.01160118542611599, 0.004602206405252218, 0.0065155960619449615, -0.018006006255745888, 0.009237980470061302, -0.053521208465099335, -0.014944582246243954, -0.04173204302787781, -0.0250956192612648, -0.005562257952988148, -0.053521208465099335, 0.00652902340516448, 0.006837851367890835, 0.02502848394215107, -0.02776765264570713, -0.021255413070321083, 0.013897253200411797, -0.029432637616991997, -0.0075260004960000515, 0.022235605865716934, -0.008734457194805145, -0.0017774385632947087, -0.0071970317512750626, 0.015333973802626133, -0.02157766744494438, 0.013306451961398125, -0.018744507804512978, -0.005394416861236095, -0.019254745915532112, -0.013628707267343998, -0.006052354350686073, -0.0006155577138997614, 0.01711980439722538, 0.018301406875252724, 0.04060414806008339, 0.03356824442744255, -0.014984864741563797, -0.03644168749451637, -0.01163475401699543, -0.04960043728351593, 0.012440391816198826, 0.012044286355376244, -0.036012012511491776, -0.013400442898273468, 0.03995963931083679, 0.05999316647648811, -0.014743173494935036, -0.01644844003021717, 0.021738795563578606, -0.031446732580661774, -0.014259790070354939, -0.0015416216338053346, -0.0002905751171056181, -0.011453485116362572, 0.016931822523474693, 0.005793878808617592, -0.0060288566164672375, -0.0049244617111980915, 0.039771657437086105, -0.02102714776992798, -0.022101331502199173, 0.013051333837211132, -0.015535383485257626, -0.0021785791032016277, -0.015548811294138432, -0.011050665751099586, -0.05470281094312668, -0.00229438953101635, -0.019026480615139008, 0.0032040888909250498, -0.02176564931869507, 0.009291689842939377, 0.04484717547893524, -0.004743192810565233, 0.0016859651077538729, -0.0077811190858483315, 0.006465244106948376, -0.021711939945816994, -0.00021420736447907984, 0.015320546925067902, 0.011748885735869408, 0.0018680727807804942, 0.001965420786291361, -0.013105042278766632, 0.019389018416404724, 0.0029540054965764284, 0.005864372476935387, 0.002185292774811387, 0.03853634372353554, -0.013749552890658379, -0.06316200643777847, 0.0056596058420836926, -0.010949961841106415, -0.012178558856248856, 0.0014149014605209231, -0.027928778901696205, 0.005857658572494984, 0.0037361455615609884, -0.025565575808286667, -0.023417208343744278, 0.0012663620291277766, 0.0041020396165549755, 0.010553856380283833, -0.005874442867934704, 0.014702890999615192, 0.005109086632728577, 0.017321214079856873, -0.010681414976716042, -0.013205747120082378, -0.013293025083839893, -0.002766023389995098, 0.007646846119314432, -0.0026434992905706167, -0.03047996573150158, 0.02288011461496353, 0.009701223112642765, -0.002262499649077654, 0.02020808309316635, -0.018784789368510246, -0.02415570802986622, -0.02506876550614834, 0.01047329232096672, 0.005125870928168297, -0.023779744282364845, 0.005038593430072069, -0.019429299980401993, 0.042806226760149, 0.021738795563578606, 0.018287979066371918, -0.021873068064451218, -0.004504858516156673, 0.028412161394953728, -0.0010078864870592952, 0.029513200744986534, -0.007035904098302126, -0.01761661469936371, 0.004494788125157356, 0.0029103667475283146, 0.006240336690098047, 0.005777094978839159, 0.013353447429835796, 0.015119137242436409, 0.011983863078057766, 0.010271882638335228, 0.016233602538704872, 0.013313165865838528, -0.05008381977677345, 0.0010372587712481618, 0.007170177064836025, 0.013259456492960453, -0.005924795288592577, 0.010802261531352997, -0.033514536917209625, -0.029298363253474236, 0.00043974400614388287, 0.01603219285607338, 0.025793839246034622, -0.006794212851673365, 0.0056663197465240955, 0.0036690090782940388, -0.0156428012996912, 0.049895837903022766, -0.03574346750974655, 0.03990592807531357, -0.0036488682962954044, -0.0035246657207608223, -0.0005161117878742516, 0.004652558825910091, 0.01838197000324726, 0.015199701301753521, -0.004253096412867308, -0.010641133412718773, 0.008727743290364742, 0.012346399948000908, 0.014635754749178886, -0.021429967135190964, -0.003907343838363886, -0.018784789368510246, -0.02489420957863331, 0.018019434064626694, -0.002591468393802643, -0.015951629728078842, 0.010761979036033154, 0.02137625776231289, 0.004011405166238546, 0.028412161394953728, -0.015132565051317215, 0.013407156802713871, 0.0028348383493721485, -0.017522623762488365, -0.007042617537081242, -0.00907013937830925, 0.008311497047543526, -0.022101331502199173, -0.001251256326213479, 0.010164464823901653, -0.008271215483546257, 0.010359160602092743, -0.0024890853092074394, -0.0035011679865419865, 0.01089625246822834, 0.00517622334882617, -0.001998988911509514, 0.0036690090782940388, 0.03289688006043434, -0.027431968599557877, -0.0008295552688650787, 0.0014451129827648401, 0.0038939162623137236, 0.014864019118249416, 0.0017254077829420567, 0.024947918951511383, 0.008217506110668182, -0.021631376817822456, 0.021107712760567665, 0.0031973752193152905, 0.014810309745371342, 0.018059715628623962, 0.028251035138964653, 0.029647473245859146, -0.012903633527457714, -0.04183946177363396, -0.020221510902047157, -4.314044053899124e-05, -0.018193988129496574, -0.021322548389434814, 0.016649849712848663, 0.028170470148324966, 0.006475314497947693, -0.0009625694365240633, 0.012379968538880348, -0.008828448131680489, 0.007317877374589443, -0.03141987696290016, -0.014783455058932304, -0.025431301444768906, 0.005125870928168297, -0.017495770007371902, -0.01716008596122265, -0.0009055034024640918, 0.0028986178804188967, -0.018825070932507515, 0.006717005744576454, -0.012796214781701565, 0.01655585877597332, -8.254379281424917e-06, -0.02878812700510025, 0.00011612514936132357, -1.0404844942968339e-05, -0.01370927132666111, 0.009023143909871578, 0.002695529954507947, -0.010822402313351631, -0.0049244617111980915, 0.009318544529378414, -0.004481360781937838, -0.012856638059020042, -0.001147194765508175, -0.002207112032920122, -0.00847262516617775, 0.001299091032706201, -0.01207785401493311, 0.0037092911079525948, 0.010956674814224243, -0.02003352902829647, -0.02000667341053486, -0.014971436932682991, 0.007989242672920227, 0.0343201719224453, -0.010238314978778362, 0.003370251739397645, 0.00538770342245698, -0.0358508862555027, 0.027445396408438683, 0.006888203788548708, -0.03268204256892204, 0.009251408278942108, 0.018287979066371918, 0.01979183778166771, -0.0031235250644385815, 0.005417914595454931, -0.01855652593076229, 0.00197213445790112, 0.0036320840008556843, 0.0042027439922094345, -0.023564906790852547, 0.04186631366610527, -0.005636108107864857, 0.010023477487266064, -0.01387039851397276, -0.0005064608994871378, -0.001538264798000455, 0.013662275858223438, -0.03141987696290016, -0.015495101921260357, -0.00048296310706064105, 0.019039908424019814, 0.012896919623017311, 0.008620325475931168, 0.009036571718752384, 0.012118136510252953, 0.01701238565146923, 0.03676394000649452, -0.011735457926988602, 0.01156761683523655, -0.0043571582064032555, 0.009096994064748287, -0.0051325848326087, -0.0076737008057534695, -0.012104708701372147, -0.0037260751705616713, 0.004864038433879614, -0.03359510004520416, 0.003086599987000227, 0.0009516597492620349, -0.0008450805325992405, 0.00437729898840189, -0.005307139363139868, -0.004592136014252901, -0.01905333623290062, 0.015132565051317215, -0.005085588898509741, 0.012608232907950878, -0.019952964037656784, 0.007774405647069216, -0.0004703750310000032, -0.008915726095438004, 0.002240680390968919, 0.030399402603507042, -0.04618990421295166, 0.020960012450814247, 0.005273571237921715, 0.01367570273578167, 0.004914390854537487, 0.01733464188873768, -0.023282933980226517, -0.005347421392798424, -0.0018764649285003543, -0.030855931341648102, -0.02059747464954853, 0.007076186127960682, -0.023887163028120995, -0.016851259395480156, -0.016918394714593887, -0.007183604408055544, -0.005599183030426502, -0.017267504706978798, -0.008237646892666817, -0.03746215999126434, 0.024625664576888084, 0.01746891438961029, 0.016757268458604813, -0.024424254894256592, -0.02854643575847149, 0.008183938451111317, -0.012366541661322117, -0.013178892433643341, 0.007841542363166809, 0.016985531896352768, -0.008808307349681854, 0.020839165896177292, 0.025337310507893562, -0.01757633313536644, -0.0012395074591040611, -0.01003690529614687, 0.006975481286644936, 0.0075998506508767605, 0.0012067783391103148, -0.01277607399970293, 0.007103040348738432, -0.010923107154667377, -0.00022889346291776747, 0.023914016783237457, -0.0217253677546978, 0.006304116453975439, 0.016931822523474693, -0.019845545291900635, -0.0003751251206267625, -0.017844878137111664, -0.018623661249876022, -0.014353781007230282, 0.018301406875252724, 0.017280932515859604, 0.022020768374204636, 0.03426646441221237, 0.0006868902128189802, 0.010070472955703735, -0.015481674112379551, 0.028036197647452354, 0.010177891701459885, -0.015347401611506939, -0.004504858516156673, -0.02674717642366886, 0.0056663197465240955, 0.0031755559612065554, -5.475819853018038e-05, -0.02435711771249771, 0.031366169452667236, -0.0003759643295779824, 0.01581735722720623, -0.0007158428197726607, -0.004128894302994013, 0.00085011578630656, -0.0024118784349411726, -0.025149328634142876, -0.012695509940385818, 0.004387369379401207, 0.04028189182281494, -0.009439390152692795, -0.00901643093675375, -0.011325925588607788, 0.016931822523474693, -0.014716318808495998, 0.013729412108659744, 0.014595473185181618, -0.0078214006498456, 0.016260458156466484, -0.0019771696534007788, -0.010560569353401661, -0.008526334539055824, 0.009117134846746922, 0.0061362748965620995, -0.00921112671494484, -0.009237980470061302, -0.0189056359231472, -0.02843901701271534, -0.018475960940122604, 0.004988241009414196, -0.010802261531352997, 0.017603186890482903, -0.017025813460350037, -0.006941913161426783, 0.0018093283288180828, -0.023229224607348442, 0.006277261767536402, -0.0010599172674119473, 0.0034273178316652775, 0.010446437634527683, 0.008962721563875675, 0.0019100331701338291, -0.019711272791028023, 0.007371586747467518, 0.005730099510401487, 0.016636421903967857, 0.016394730657339096, 0.009338685311377048, -0.011701890267431736, 0.02116142213344574, -0.014125517569482327, -0.022947251796722412, -0.010204746387898922, 0.003793211653828621, -0.001668341807089746, 0.006730433087795973, -0.01507885567843914, -0.032010678201913834, -0.0030144283082336187, -0.011466911993920803, 0.020906303077936172, -0.0008387865382246673, 0.03182269632816315, -0.0075931367464363575, -0.020516911521553993, -0.0008068966562859714, -0.042027443647384644, -0.020087238401174545, -0.011393061839044094, 0.021255413070321083, -0.01940244622528553, 0.024236273020505905, -0.029996583238244057, 0.013621993362903595, -0.016851259395480156, 0.00747900502756238, -0.0020678038708865643, -0.029405781999230385, -0.01768375188112259, 0.006445102859288454, -0.008029524236917496, -0.0012504170881584287, -0.03356824442744255, 0.004947959445416927, -0.011930153705179691, 0.022020768374204636, -0.0015869387425482273, 0.02257128804922104, -0.025860976427793503, -0.01581735722720623, -0.02185964025557041, -0.010453151538968086, -0.005421271547675133, 0.015293692238628864, 3.862970697809942e-05, 0.015683084726333618, 0.005095659755170345, -0.0332459881901741, -0.0061765569262206554, -0.0003763839486055076, -0.006592803169041872, -0.004931175149977207, 0.03440073877573013, -0.025283601135015488, 0.005968433804810047, -0.0064887418411672115, -0.011715317144989967, -0.01718694157898426, -0.02706943266093731, -0.011198366060853004, -0.006498812232166529, -0.01613961160182953, 0.0060691386461257935, -0.0009281619568355381, 0.011560903862118721, -0.03147358447313309, 0.002915401943027973, 0.01024502795189619, 0.012755933217704296, -0.025632711127400398, 0.006065781693905592, 0.013232601806521416, 0.014179226942360401, 0.014770027250051498, -0.024827074259519577, -0.02902981825172901, -0.00433366047218442, 0.02527017518877983, -0.005313853267580271, -0.015521956607699394, 0.007700555492192507, 0.002406843239441514, -0.01421950850635767, 0.013897253200411797, 0.014528336003422737, -0.006676723714917898, -0.018328260630369186, -0.026196658611297607, 0.0049177478067576885, 0.03292373567819595, -0.013689130544662476, -0.030909638851881027, -0.017428632825613022, 0.00234642019495368, -0.002146689221262932, -0.008089946582913399, 0.012158418074250221, 0.0078214006498456, 0.0023917374201118946, 0.0029523270204663277, -0.014353781007230282, 0.011305784806609154, 0.01246053259819746, 0.0022859973832964897, 0.02626379393041134, 0.0030379260424524546, 0.009244694374501705, 0.028841836377978325, -0.01280964259058237, 0.024585383012890816, -0.035985156893730164, 0.005871085915714502, 0.045115720480680466, -0.008573330007493496, -0.014488054439425468, 0.004897607024759054, 0.01277607399970293, -0.01620674878358841, -0.02745882421731949, -0.02798248827457428, -0.03217180445790291, -0.00808323360979557, 0.0009399108239449561, -0.028734417632222176, -0.01891906186938286, 0.012856638059020042, 0.005421271547675133, -0.005991931539028883, -0.013621993362903595, 0.02274584211409092, 0.0006713648908771574, -0.0023682396858930588, -0.0027525960467755795, -0.02453167364001274, 0.010493433102965355, 0.01659614033997059, -0.008996289223432541, -0.0006113616400398314, -0.01809999719262123, -0.016636421903967857, -0.01575022004544735, 0.01109094824641943, 0.006297402549535036, 0.0019620638340711594, -0.014125517569482327, 0.004796902183443308, -0.010808974504470825, -0.005911367945373058, 0.004427651409059763, -0.0008971113129518926, -9.18406221899204e-05, -0.004988241009414196, 3.839367855107412e-05, 0.009056712500751019, 0.002970789559185505, 0.007948960177600384, -0.006461887154728174, -0.016998959705233574, -0.008996289223432541, 0.00361194321885705, -0.009412535466253757, 0.0051392982713878155, 0.00866732094436884, 0.06445103138685226, -0.007035904098302126, 0.0119502954185009, -0.014541763812303543, 0.019107045605778694, -0.023242652416229248, -0.009036571718752384, 0.011581044644117355, 0.008385347202420235, 0.0010171177564188838, -0.003940911963582039, -0.017200369387865067, 0.0038536344654858112, 0.010130896233022213, -0.018825070932507515, -0.0023094951175153255, 0.023846881464123726, 0.010835829190909863, 0.003568304469808936, 0.016931822523474693, 0.007619991432875395, -0.001680090674199164, 0.00788853783160448, 0.011346066370606422, -0.007042617537081242, 0.01764346845448017, 0.004545140545815229, -0.013125183992087841, 0.006492098327726126, 0.017710605636239052, -0.006159773096442223, 0.013172179460525513, 0.007116467691957951, 0.00827792938798666, -0.01707952283322811, 0.01364213414490223, 0.0037361455615609884, 0.030641093850135803, 0.005229932721704245, 0.009184272028505802, -0.014420918188989162, 0.014770027250051498, 0.036012012511491776, 0.0312856025993824, -0.0075931367464363575, -0.02561928518116474, 0.01905333623290062, -0.0005530368071049452, -0.008848588913679123, -0.012373254634439945, -0.031930115073919296, -0.004766690544784069, -0.009439390152692795, 0.010654561221599579, 0.00894929375499487, -0.01912047155201435, 0.00629068911075592, -0.014179226942360401, 0.032601479440927505, -0.0033719302155077457, 0.00747900502756238, -0.012212127447128296, -0.011957008391618729, -0.0076737008057534695, 0.005256786942481995, -0.009848923422396183, -0.00045191249228082597, -0.029513200744986534, 0.010077186860144138, 0.0020342355128377676, -0.007989242672920227, 0.009378967806696892, 0.015495101921260357, -0.027337977662682533, 0.00017728228704072535, 0.005837517790496349, 0.013803262263536453, 0.01753605157136917, 0.004739836324006319, 0.0060020019300282, 0.008506192825734615, -0.010822402313351631, -0.011158084496855736, -0.010426296852529049, 0.0019738127011805773, 0.0052467165514826775, 0.025820693001151085, -0.011252075433731079, -0.0008459197706542909, -0.028170470148324966, -0.0038334934506565332, 0.014192653819918633, 0.016045620664954185, 0.008298070169985294, 0.0009701222879812121, -0.017938869073987007, -0.0073783001862466335, -0.010043619200587273, 0.014555190689861774, -0.014071808196604252, 0.0029775032307952642, 0.006307472940534353, -0.00785496924072504, -0.005407844204455614, -0.0007670343620702624, -0.0030815647915005684, 0.030667947605252266, 0.007150036282837391, -0.01409866288304329, 0.0026552481576800346, -0.0030933136586099863, 0.006129561457782984, 0.01202414557337761, -0.005035236477851868, -0.002270891796797514, 0.00024253057199530303, 0.0038301367312669754, -0.0019184252014383674, -0.008855302818119526, -0.01961728185415268, 0.012708937749266624, -0.02235645055770874, -0.00725074065849185, -0.005340707488358021, 0.004961386322975159, 0.0021617950405925512, -0.014689464122056961, -0.015454819425940514, -0.015723366290330887, -0.020678037777543068, 0.014152372255921364, 0.007915392518043518, 0.00019249290926381946, -0.0068512787111103535, 0.018717654049396515, -0.0024152351543307304, -0.014058380387723446, -0.012285977602005005, 0.025860976427793503, 0.010694842785596848, 0.0017589760245755315, 0.02520303800702095, 0.0017153372755274177, -0.003950982354581356, 0.02257128804922104, 0.00650216918438673, -0.01015775091946125, -0.022329596802592278, -0.0038737754803150892, -0.011305784806609154, 0.01226583682000637, -0.027096286416053772, 0.00029141432605683804, -0.019832119345664978, 0.02800934389233589, 0.0007196192163974047, -0.01816713437438011, 0.021121138706803322, 0.009184272028505802, 0.00839877501130104, 0.00023497770598623902, 0.02074517495930195, -0.017495770007371902, 0.005240003112703562, 0.022974107414484024, 0.004367228597402573, 0.007183604408055544, 0.02752596139907837, 0.02489420957863331, -7.736431143712252e-05, 0.0072708819061517715, 0.015105710364878178, 0.007351445499807596, -0.004044973291456699, 0.003541449783369899, -0.023779744282364845, 0.013662275858223438, 0.006619657855480909, -0.02207447774708271, 0.0026149663608521223, 0.0023296361323446035, 0.010285310447216034, 0.022624997422099113, 0.0015500136651098728, 0.0075192865915596485, -0.020409492775797844, 0.008828448131680489, -0.0015080533921718597, 0.005609253887087107, 0.01038601528853178, -0.008103374391794205, 0.023081524297595024, 0.0024790149182081223, 0.011473625898361206, -0.010560569353401661, -0.014555190689861774, -0.0033719302155077457, 0.002599860541522503, -0.01570993848145008, -0.0059952884912490845, 0.0068109966814517975, 0.01662299409508705, -0.0037562865763902664, 0.007324590813368559, -0.000971800705883652, -0.016864685341715813, -0.011970436200499535, -0.014488054439425468, -0.011607899330556393, -0.013152038678526878, -0.037354741245508194, -0.021846214309334755, 0.016703559085726738, -0.0025813980028033257, -0.007015763316303492, 0.0003184787346981466, 0.013628707267343998, 0.0020090595353394747, 0.016085902228951454, 0.009916059672832489, -0.004766690544784069, -0.019885828718543053, -0.007405154872685671, 0.006579375825822353, -0.010500147007405758, -0.007103040348738432, -0.011258789338171482, 0.020798884332180023, 0.019952964037656784, -0.004994954913854599, 0.017321214079856873, -0.00674050347879529, -0.009882491081953049, 0.008580042980611324, 0.004075184930115938, 0.01051357388496399, 0.009949627332389355, -0.004162462428212166, 0.013246029615402222, -0.012084567919373512, -0.003246049163863063, -0.0029422566294670105, 0.010433010756969452, 0.0011119480477645993, 0.017710605636239052, -0.017066095024347305, -0.0014820379437878728, -0.015374256297945976, -0.011144657619297504, -1.7243062757188454e-05, 0.0012537739239633083, -0.00012095057900296524, 0.002777772257104516, 0.023820025846362114, 0.01331987977027893, 0.028492726385593414, -1.161120326287346e-05, -0.020624330267310143, 0.0024588739033788443, -0.017146660014986992, 0.0004202324489597231, 0.023927444592118263, 0.011466911993920803, -0.00019920655176974833, -0.004320233128964901, 0.010553856380283833, -0.007680414244532585, -0.0002767282130662352, -0.008962721563875675, 0.014998291619122028, 0.012366541661322117, 0.0010901287896558642, 0.0194427277892828, 0.004481360781937838, -0.006159773096442223, -0.016300739720463753, 0.006095993332564831, -0.01901305466890335, -0.0094528179615736, 0.017603186890482903, -0.005844231229275465, -0.0036723660305142403, 0.0024437683168798685, -0.011124515905976295, -0.0011723709758371115, 0.004699554294347763, -0.0029405781533569098, -0.0004410028050187975, 0.007398440968245268, 0.013816689141094685, -0.001404831069521606, 0.005605896934866905, 0.023296361789107323, 0.012957341969013214, -0.00047499066567979753, 0.01485059130936861, 0.009063426405191422, -0.00359515892341733, 0.015441392548382282, 0.025055337697267532, -0.01613961160182953, -0.010480006225407124, -0.002029200317338109, -0.01472974568605423, -0.0039107003249228, 0.013776407577097416, -0.014528336003422737, 0.0013712628278881311, 0.0075998506508767605, -0.017979152500629425, -0.017307786270976067, -0.011513907462358475, -0.0029103667475283146, -0.0019587071146816015, 0.0011597828706726432, 0.0012277585919946432, -0.006804283242672682, 0.025283601135015488, -0.015307119116187096, 0.00753942783921957, -0.003116811625659466, 0.005045307334512472, -0.015199701301753521, 0.03107076697051525, -0.005709958262741566, 0.03402477130293846, 0.003412212012335658, 0.004441078752279282, -0.00859347078949213, -0.03206438571214676, 0.009640799835324287, -0.01887878030538559, 0.013561571016907692, -0.009533381089568138, 0.006579375825822353, 0.002200398361310363, -0.004679413512349129, -0.0035884452518075705, 0.00574688334017992, 0.009607231244444847, -0.030211420729756355, -0.007532713934779167, -0.008089946582913399, -0.035098955035209656, 0.0008912368793971837, -0.010996957309544086, 0.008284642361104488, -0.0167304128408432, -0.009660940617322922, 0.013507861644029617, 0.002828124677762389, -0.012682083062827587, 0.00016815592243801802, 0.005555544514209032, 0.002025843597948551, -0.004447792191058397, -0.012138277292251587, 0.012702223844826221, 0.004682769998908043, 0.009687795303761959, -0.024263126775622368, 0.012567950412631035, -0.027955634519457817, -0.009063426405191422, -0.005075518507510424, -0.004806972574442625, -0.0032561197876930237, 0.013340020552277565, -0.027257414534687996, 0.007579709403216839, -0.011312498711049557, -0.02394087240099907, -0.014917727559804916, -0.007801259867846966, -0.022087905555963516, 0.002579719526693225, 0.010909679345786572, -0.005693174432963133, -0.0016893219435587525, -0.02741854265332222, 0.0311781857162714, -0.000265398935880512, -0.005525332875549793, -0.01901305466890335, 0.01644844003021717, 0.0038066389970481396, 0.030802221968770027, 0.017589760944247246, 0.0037529298570007086, -0.0032393354922533035, -0.009157417342066765, -0.004387369379401207, -0.014286644756793976, 0.006975481286644936, 0.023645471781492233, -0.005260143894702196, -0.0038167093880474567, 0.028841836377978325, 0.009244694374501705, -0.018234269693493843, 0.00728430924937129, 0.0073380181565880775, 0.01328631117939949, 0.01855652593076229, 0.02911038137972355, 0.0018462534062564373, 0.014864019118249416, 0.01648872159421444, 0.0043168761767446995, 0.011614612303674221, -0.018851926550269127, 0.005797235760837793, -0.0022792837116867304, -0.005951649975031614, -0.0020644471514970064, -0.016972104087471962, 0.04549168422818184, 0.005135941319167614, 0.018825070932507515, 0.022195322439074516, 0.0169452503323555, -0.011104375123977661, 0.010976815596222878, -0.02696201391518116, 0.017979152500629425, 0.008707602508366108, 0.00589794060215354, 0.01203757245093584, -0.025847548618912697, 0.005901297554373741, -0.002327957656234503, -0.028036197647452354, -0.0075998506508767605, -0.003083243267610669, -0.018126852810382843, -0.0037529298570007086, 0.01705266907811165, -0.016972104087471962, 0.0024219488259404898, -4.172427725279704e-05, -0.020785456523299217, -0.005981861148029566, 0.012561237439513206, -0.010278596542775631, 0.012984196655452251, -0.007331304717808962, 0.008761311881244183, 0.0312856025993824, -0.02070489339530468, 0.011863017454743385, -0.00941924937069416, 0.03402477130293846, 0.04028189182281494, -0.01905333623290062, 0.005599183030426502, -0.0037797843106091022, -0.010379301384091377, 0.015656229108572006, 0.00921112671494484, -0.015374256297945976, 0.006022143177688122, -0.0007792029064148664, 0.006461887154728174, 0.0035045247059315443, -0.014259790070354939, -0.003521308768540621, 0.011769026517868042, -0.0037361455615609884, -0.015548811294138432, 0.0023094951175153255, -0.003262833459302783, -0.007995955646038055, -0.011842876672744751, -0.010493433102965355, 0.02185964025557041, 0.004827113356441259, 0.01918760873377323, 0.026250367984175682, 0.0047700474970042706, -0.028277888894081116, -0.013910681009292603, 0.0024974774569272995, 0.014300072565674782, 0.00576366763561964, 0.004712981637567282, 0.015401110984385014, 0.017146660014986992, 0.013736126013100147, 0.03187640383839607, 0.020839165896177292, 0.016435012221336365, -0.01360185258090496, -0.008714316412806511, -0.0020980152767151594, 0.011628040112555027, -0.0014358817134052515, -0.002828124677762389, 0.012494100257754326, 0.0036925068125128746, -0.005401130765676498, 0.003685793373733759, -0.005142655223608017, -0.015696510672569275, -0.003148701274767518, -0.006790855899453163, -0.0019368877401575446, -0.007834828458726406, 0.004602206405252218, 0.041678331792354584, 0.0008362688822671771, 0.0206377562135458, -0.00022364842880051583, -0.0037260751705616713, 0.029083527624607086, -0.006646512541919947, -0.0021718654315918684, 0.00044645764864981174, 0.02787506952881813, 0.009540094994008541, -0.010614278726279736, -0.01226583682000637, 0.005669676698744297, 0.017213795334100723, 0.03504524752497673, -0.0114064896479249, 0.011748885735869408, 0.011621326208114624, 0.013098329305648804, 0.014864019118249416, -0.017603186890482903, -0.02200734056532383, -0.01852967031300068, -0.0020510198082774878, 0.006733790040016174, -0.0015676369657739997, -0.0060355705209076405, 0.004823756869882345, -0.011668321676552296, 0.041597768664360046, 0.016085902228951454, -0.024652518332004547, -0.011654894798994064, 0.002316208789125085, -0.028841836377978325, -0.005528689827769995, -0.01918760873377323, -0.002378310076892376, 0.009654226712882519, 0.006717005744576454, 0.012151704169809818, -0.016690131276845932, 0.007814687676727772, 0.021604523062705994, 0.018757935613393784, 0.01716008596122265, -0.020436346530914307, 0.005985218100249767, 0.007096326909959316, 0.00021032603399362415, -0.006012072786688805, 0.0027324550319463015, -0.014367208816111088, -0.011500480584800243, 0.015495101921260357, -0.01297076977789402, -0.010923107154667377, 0.020328929647803307, -0.004373942501842976, 0.0036622954066842794, 0.019389018416404724, 0.005451482720673084, 0.0042833080515265465, -0.005028523039072752, 0.029164090752601624, 0.0011488731252029538, -0.008512906730175018, 0.007291022688150406, -0.01716008596122265, -0.0002813438477460295, -0.007458863779902458, -0.008378634229302406, -0.005327280610799789, -0.006398107390850782, 0.0016188286244869232, -0.01972470059990883, 0.0220476221293211, -0.00907013937830925, -0.01211142260581255, 0.02502848394215107, -0.0037092911079525948, 0.002787842648103833, -0.024451108649373055, -0.007505859714001417, 0.007499145809561014, -0.0037797843106091022, -0.002217182656750083, -0.0023497771471738815, 0.012272549793124199, -0.002757631242275238, -0.004229598678648472, 0.009828781709074974, 0.024491392076015472, 0.01101709809154272, 0.014676036313176155, -0.00039086025208234787, 0.007136608939617872, 0.0044310083612799644, -0.031688421964645386, 0.0017992579378187656, -0.0033719302155077457, 0.0003906504425685853, 0.011923440732061863, 0.018287979066371918, 0.01223226822912693, 0.00808323360979557, -0.016569284722208977, 0.0029808601830154657, 0.01992611028254032, 0.03899287432432175, -0.007579709403216839, -0.007176890503615141, -0.014071808196604252, 0.006082565989345312, 0.022208750247955322, -0.018959345296025276, -0.016153039410710335, -0.028492726385593414, 0.0072305998764932156, 0.016690131276845932, 0.002839873544871807, -0.013541430234909058, -0.0044545060954988, -0.0018328261794522405, -0.017656896263360977, 0.001998988911509514, 0.002025843597948551, 0.00460556335747242, -0.006307472940534353, 0.029862310737371445, -0.023215798661112785, 0.018959345296025276, -0.02626379393041134, 0.004830470308661461, 0.004018119070678949, 0.018153706565499306, 0.00023036208585835993, 0.002757631242275238, 0.0008354297024197876, 0.020785456523299217, 0.004833827260881662, -0.01746891438961029, -0.0035985158756375313, -0.0011480340035632253, 0.010855969972908497, 0.02513590082526207, -0.017428632825613022, 0.0012462211307138205, -0.024169135838747025, -0.0018412182107567787, -0.011708604171872139, -0.006821067072451115, -0.03002343885600567, -0.004864038433879614, 0.0007578031509183347, 0.005793878808617592, -0.024733083322644234, 0.027082860469818115, 0.01683783158659935, -0.006975481286644936, -0.017804596573114395, 0.006988908629864454, 0.019133899360895157, -0.00675728777423501, -0.001722050947137177, -0.0015256766928359866, -0.005944936070591211, -0.00464920187368989, 0.006549164652824402, 0.0031352739315479994, -0.046028777956962585, -0.012332973070442677, -0.009499813430011272, 0.0031621286179870367, -0.01409866288304329, -1.846253508119844e-05, -0.013440725393593311, -0.012836496345698833, -0.0133601613342762, -0.021456822752952576, 0.005743526853621006, -0.025686420500278473, 0.0050990162417292595, 0.005357491783797741, -0.03005029261112213, 0.012930488213896751, 0.008815021254122257, -0.013031192123889923, -0.009593804366886616, -0.013621993362903595, -0.007646846119314432, -0.027499105781316757, 0.00568646052852273, -0.0003262413665652275, 0.007619991432875395, 0.014528336003422737, -0.025364166125655174, 0.004011405166238546, -0.01577707566320896, -0.0012898597633466125, 0.0002635107084643096, 0.01588449254631996, -0.008465911261737347, -0.004766690544784069, -0.00032330414978787303, -0.0021047289483249187, -0.011943581514060497, 0.03727417811751366, -0.007948960177600384, 0.0012126528890803456, -0.0042430260218679905, -0.014743173494935036, -0.0005182097665965557, -0.023820025846362114, -0.026344358921051025, 0.0044242944568395615, -0.02094658464193344, -0.015615947544574738, 0.02565956674516201, 0.005011738743633032, 0.007881823927164078, 0.002470622770488262, -0.009835495613515377, 0.02305467054247856, -0.009157417342066765, -0.00026393032749183476, -0.01047329232096672, 0.009358827024698257, -0.020503483712673187, 0.02696201391518116, 0.003091635415330529, -0.006072495598345995, -0.026733750477433205, -0.018462534993886948, 0.01961728185415268, 0.01383011694997549, -0.023256080225110054, -0.008962721563875675, 0.02876127138733864, -0.024625664576888084, 0.006404821295291185, -0.014514909125864506, 0.004827113356441259, -0.010271882638335228, 0.009291689842939377, 0.005300425924360752, 0.003538093063980341, 0.012373254634439945, -0.016354449093341827, -0.010372587479650974, 0.018610235303640366, 0.0076401326805353165, 0.013581711798906326, -0.011265503242611885, -0.0014476305805146694, -0.000185569457244128, 0.0071970317512750626, 0.010835829190909863, -0.015830785036087036, -0.008506192825734615, 0.010627706535160542, 0.013648848049342632, -0.018999626860022545, 0.00984220951795578, -0.017549477517604828, -0.01736149564385414, -0.009217839688062668, 0.00016993924509733915, 0.0020107377786189318, -0.02137625776231289, 0.009271549060940742, 0.000670525711029768, 0.0071634636260569096, -0.01842225342988968, 0.019174180924892426, -0.02183278650045395, -0.0026267152279615402, 0.01968441903591156, 0.011547476053237915, 0.028626998886466026, 0.011319211684167385, -0.00314534455537796, 0.003997977823019028, -0.020825738087296486, -0.008251074701547623, 0.02763337828218937, 0.00023791493731550872, -0.0007456346065737307, 0.001642326358705759, -0.007546141277998686, -0.0008203239995054901, -0.00041372861596755683, -0.0027509175706654787, 0.008345065638422966, 0.009788500145077705, 0.0013276240788400173, 0.010949961841106415, 0.007257454562932253, 0.007143322378396988, 0.0008685783250257373, -0.010627706535160542, -0.00591472489759326, 0.031366169452667236, -0.001983883325010538, 0.023672325536608696, 0.013554857112467289, 0.003930841572582722, -0.007969100959599018, -0.02309495210647583, -0.012064427137374878, 0.013118470087647438, -0.013655561953783035, 0.01838197000324726, 0.004404153674840927, -0.001913389889523387, 0.00031260427203960717, -0.0032980800606310368, -0.007586423307657242, -0.00773412361741066, 0.004034902900457382, -0.0039879074320197105, 0.0061362748965620995, 0.01916075311601162, -0.007069472223520279, -0.0073380181565880775, -0.012091281823813915, -0.010963388718664646, -0.025149328634142876, -0.007922105491161346, -0.004420937970280647, -0.012990910559892654, 0.014514909125864506, -0.011701890267431736, -0.02224903181195259, 0.01023160107433796, -0.008862016722559929, -0.004185960162431002, -0.00464920187368989, 0.005800592713057995, -0.01718694157898426, 0.001410705503076315, 0.010849256999790668, 0.0064887418411672115, -0.005481694359332323, 0.02049005590379238, -0.004934532102197409, 0.009815354831516743, -0.009862350299954414, 0.01627388410270214, 0.005323923658579588, -0.011943581514060497, -0.0040281894616782665, 0.028949253261089325, 0.0019184252014383674, 0.009976482018828392, 0.003138630883768201, 0.0037327888421714306, 0.019241318106651306, 0.017589760944247246, -0.015320546925067902, 0.003548163454979658, -0.017374923452734947, -0.019107045605778694, -0.020584046840667725, 0.023497771471738815, 0.008841875940561295, 0.015172846615314484, 0.012648514471948147, 0.01788516156375408, 0.010688128881156445, -0.002786164404824376, -0.01546824723482132, 0.010332305915653706, 0.00111782259773463, 0.0009290011948905885, -0.010419582948088646, 0.009284976869821548, 0.0037227182183414698, -0.012910346500575542, 0.0155890928581357, 0.005488407798111439, 0.0040281894616782665, 0.0009659262141212821, 0.02288011461496353, -0.01058071106672287, 0.0067841424606740475, -0.012191986665129662, 0.002769380109384656, 0.008553188294172287, 0.0065894462168216705, -0.005918081384152174, -0.005102373193949461, -0.02763337828218937, -0.012279263697564602, -0.0013100007781758904, -0.025055337697267532, -0.011547476053237915, -0.031339313834905624, -0.005844231229275465, -0.003454172285273671, 0.006367896217852831, -0.017871733754873276, 0.0031554149463772774, -0.0040214755572378635, -0.018610235303640366, 0.0025394377298653126, -0.012601519003510475, 0.007848255336284637, -0.002819732530042529, -0.023215798661112785, -0.005589112639427185, 0.0026351071428507566, 0.015548811294138432, 0.008029524236917496, -0.006079209037125111, -0.0012218841584399343, 0.026706894859671593, -0.0094528179615736, 0.01348100695759058, 0.003454172285273671, -0.017979152500629425, 0.002841552020981908, -0.002092980081215501, -0.015427965670824051, 0.021926777437329292, -0.011554189957678318, -0.02535073831677437, -0.0167304128408432, -0.0225981418043375, -0.0003010651853401214, 0.03047996573150158, 0.04656586796045303, 0.0006529023521579802, 0.015307119116187096, -0.015199701301753521, -0.01507885567843914, 0.008976148441433907, -0.00570324482396245, -0.006314186844974756, -0.0017354782903566957, 0.023403780534863472, -0.0037126478273421526, -0.015629375353455544, 0.003232622053474188, 0.020960012450814247, 0.01202414557337761, -0.0006701060920022428, -0.015736792236566544, -0.016045620664954185, -0.005038593430072069, 0.024370545521378517, -0.010567283257842064, -0.017348069697618484, -0.004451149143278599, -0.011070807464420795, -0.0043168761767446995, -0.0019788481295108795, -0.012930488213896751, 0.0048841796815395355, -0.015414537861943245, -0.0027643449138849974, 0.004024832509458065, 0.012628373689949512, 0.0003595998277887702, 0.023685753345489502, 0.011064093559980392, 0.00256629241630435, -0.0018160420004278421, -0.0038569914177060127, -0.013568284921348095, 0.011789167299866676, 0.008042951114475727, -0.03182269632816315, 0.04200058802962303, -0.009540094994008541, 0.016367876902222633, 0.018287979066371918, -0.0013402121840044856, 0.001646522432565689, 0.014420918188989162, 0.01588449254631996, -0.0214031133800745, 0.00022721505956724286, -0.018193988129496574, -0.0004204422584734857, 0.011554189957678318, -0.0016616281354799867, 0.0032829742413014174, 0.012118136510252953, -0.0015273551689460874, 0.01219869963824749, 0.004988241009414196, 0.005572328809648752, -0.010339018888771534, 0.0065558780916035175, 0.0026552481576800346, -0.0063410415314137936, -0.008130229078233242, -0.012151704169809818, -0.02263842336833477, 0.04189316928386688, 0.01687811315059662, 0.002250750781968236, -0.021134566515684128, -0.0007489914423786104, -0.009023143909871578, 0.004404153674840927, -0.010184605605900288, 0.032494060695171356, -0.018543098121881485, 0.02428998239338398, 0.007244027219712734, 0.017106376588344574, -0.006243693642318249, 0.011151370592415333, -0.000955855764914304, -0.014313499443233013, 0.020342355594038963, -0.014837164431810379, 0.01262165978550911, -0.024518245831131935, 0.01203757245093584, 0.031715277582407, -0.0061429888010025024, -0.02502848394215107, -0.0058811563067138195, -0.007385013625025749, -0.023497771471738815, 0.02520303800702095, -0.022718988358974457, 0.016690131276845932, 0.008828448131680489, 0.01286335103213787, -0.012440391816198826, 0.006569305434823036, 0.006975481286644936, -0.011957008391618729, 0.014582045376300812, -0.005615967325866222, -0.012997624464333057, 0.0008245200151577592, -0.033514536917209625, -0.039771657437086105, 0.009640799835324287, 0.024947918951511383, 0.016179893165826797, 0.017213795334100723, -0.00047163382987491786, 0.02383345365524292, 0.01348100695759058, 0.015132565051317215, 0.00043890479719266295, 0.013977817259728909, -0.010506860911846161, -0.01789858750998974, -0.006881490349769592, -0.0007385013741441071, -0.0011824413668364286, 0.012943915091454983, -0.0120040038600564, -0.0004959708312526345, -0.014890872873365879, 0.026559194549918175, 0.01485059130936861, 0.007458863779902458, -0.008009383454918861, -0.01045986544340849, 0.007002335973083973, -0.001065791817381978, -0.00523664616048336, -0.0008232612162828445, 0.0022994247265160084, -0.023699181154370308, 0.004404153674840927, 0.0021483676973730326, -0.010258455760776997, -0.016609568148851395, 0.011164798401296139, -0.01746891438961029, -0.006928485818207264, -0.019630709663033485, -0.0020224866457283497, -0.0036354409530758858, -0.015065427869558334, 0.009392394684255123, -0.010063759982585907, -0.007109754253178835, 0.01746891438961029, 0.0019318524282425642, 0.0019301740685477853, -0.007150036282837391, -0.006559235043823719, 0.0334608256816864, 0.017670324072241783, 0.021000294014811516, -0.004947959445416927, 0.007022476755082607, -0.009446104057133198, 0.0059617203660309315, -0.0181402787566185, 0.00031260427203960717, 0.022329596802592278, -0.00014413364988286048, -0.020906303077936172, 0.00163225585129112, 0.01495801005512476, -0.009788500145077705, 0.010735124349594116, 0.0019570286385715008, 0.01807314343750477, -0.009835495613515377, -0.023215798661112785, -0.0012101351749151945, 0.008311497047543526, 0.005223218817263842, -0.0206377562135458, 0.01701238565146923, 0.007291022688150406, -0.018341688439249992, 0.014018098823726177, 0.00980864092707634, 0.00038057996425777674, 0.007109754253178835, 0.011863017454743385, 0.00699562206864357, 0.013366875238716602, -0.0007775244885124266, 0.00792881939560175, -0.01827455312013626, 0.014179226942360401, 0.005166152957826853, 0.009244694374501705, 0.010855969972908497, 0.012097995728254318, 0.008405487984418869, -0.0015491745434701443, 0.0074185822159051895, -0.004867395386099815, 0.009815354831516743, 0.003306472208350897, -0.0065223099663853645, -0.012876778841018677, -0.010587424039840698, 0.003402141621336341, 0.018435679376125336, -0.013326592743396759, -0.010822402313351631, 0.008815021254122257, -0.0006482867174781859, -0.006307472940534353, 0.005908010993152857, 0.013024479150772095, -0.019523290917277336, -0.0008404648979194462, 0.0029942875262349844, 0.014018098823726177, 0.004853968042880297, -0.005186293739825487, -0.00705604488030076, 0.011191653087735176, 0.005830803886055946, -0.00878816656768322, -0.008848588913679123, 0.009311830624938011, -0.013574997894465923, 0.018368544057011604, 0.0019486366072669625, -0.0038502777460962534, 0.004236312583088875, 0.036253705620765686, -0.017321214079856873, 0.006458530202507973, -0.012796214781701565, -0.010688128881156445, -0.02239673212170601, 0.009412535466253757, -0.014461199752986431, -0.02242358773946762, -0.0044645764864981174, 0.0031554149463772774, -0.005568971857428551, 0.012514241971075535, 0.0016473615542054176, -0.0047767614014446735, 0.006344398017972708, 0.011507194489240646, 0.0056663197465240955, -0.007042617537081242, 0.013548143208026886, -0.007458863779902458, 0.009862350299954414, -0.026760604232549667, 0.0036790797021239996, 0.014770027250051498, 0.0006839529960416257, -0.025229891762137413, 0.009486385621130466, 0.026733750477433205, -0.032601479440927505, -0.018516244366765022, -0.0035783748608082533, 0.005948293022811413, -0.01950986310839653, -0.006304116453975439, -0.009204412810504436, 0.011104375123977661, 0.014192653819918633, 0.0066800806671381, 0.008647180162370205, 0.0358508862555027, -0.0039207711815834045, 0.0052534304559230804, 0.0178180243819952, 0.01054714247584343, 0.004545140545815229, 0.02376631647348404, -0.0031017058063298464, 0.014702890999615192, -0.001538264798000455, 0.006868063006550074, 0.01642158441245556, -0.002979181706905365, -0.0038804891519248486, -0.023860307410359383, -0.008627038449048996, 0.004528356250375509, 0.0017044276464730501, 0.0010154393967241049, 0.015508528798818588, 0.003423960879445076, -0.003887202823534608, -0.019764982163906097, 0.004518285859376192, 0.012588092125952244, 0.000955855764914304, -0.01842225342988968, -0.002274248516187072, -0.0043571582064032555, 0.0119502954185009, -0.014152372255921364, -0.0038167093880474567, -0.012755933217704296, -0.015441392548382282, 0.011064093559980392, 0.004441078752279282, 0.026518912985920906, 0.004407510627061129, -0.01462232694029808, -0.0010976815829053521, 0.003116811625659466, -0.001965420786291361, -0.024034863337874413, -0.010815688408911228, -0.01063441950827837, 0.017254076898097992, 0.00796238798648119, -0.00511580053716898, 0.020046954974532127, -0.003665652358904481, 0.0205303393304348, -0.00036652327980846167, -0.015092282555997372, 0.013803262263536453, 0.008848588913679123, -0.010721697472035885, 0.006626371294260025, -0.0005538760451599956, 0.009036571718752384, 0.012353113852441311, -0.005693174432963133, 0.005461553577333689, 0.017415205016732216, 0.00595836341381073, 0.005461553577333689, 0.014649181626737118, 0.016743840649724007, 0.012292691506445408, 0.03912714496254921, -0.010305451229214668, 0.03072165697813034, -0.022799551486968994, 0.010419582948088646, -0.018046287819743156, 0.001393082202412188, -0.003444101894274354, 0.00307652959600091, 0.007586423307657242, 0.014273217879235744, 0.0003516273573040962, 0.02155081368982792, 0.018193988129496574, -0.008976148441433907, -0.004306805785745382, 0.0029405781533569098, -0.012816355563700199, -0.004155748523771763, 0.006797569338232279, 0.005622680764645338, 0.009023143909871578, -0.007217172533273697, 0.0006042284076102078, 0.005965076852589846, -0.014259790070354939, 0.011507194489240646, -0.0006692668539471924, -0.0021483676973730326, 0.020584046840667725, 0.004189317114651203, 0.0007951477891765535, -0.0181402787566185, 0.026800885796546936, 0.0060355705209076405, -0.004172532819211483, 0.016153039410710335, 0.01570993848145008, 0.013024479150772095, 0.015011719428002834, -0.00699562206864357, 0.004870752338320017, 0.016085902228951454, 0.02183278650045395, -0.02211475931107998, 0.00550854904577136, -0.0029204373713582754, 0.008425629697740078, -0.0048438976518809795, 0.006247050128877163, -0.013346734456717968, -0.0020443061366677284, -0.026881450787186623, -0.0016985532129183412, 0.00045778692583553493, 0.025041909888386726, 0.020221510902047157, 0.010339018888771534, -0.01328631117939949, 0.029056672006845474, 0.0007191996555775404, -0.0181402787566185, 0.008553188294172287, 0.022061049938201904, -0.014541763812303543, 0.010057046078145504, -0.0290029626339674, 0.015065427869558334, 0.01634102128446102, 0.015105710364878178, -0.006085922941565514, -0.017442060634493828, -0.0027324550319463015, -0.038455780595541, -0.007693841587752104, -0.026881450787186623, -0.03176898509263992, 0.0037630002480000257, -0.023215798661112785, 0.005260143894702196, -0.0007233956712298095, 0.007297736592590809, -0.0018177204765379429, -0.0002532304497435689, -0.012527668848633766, -0.006431675516068935, 0.012917060405015945, 0.00515943905338645, 0.020476629957556725, -0.004142321180552244, -0.009378967806696892, -0.0005748561816290021, -0.0033652165438979864, 0.010735124349594116, 0.017495770007371902, 0.007183604408055544, -0.008385347202420235, 0.0036622954066842794, -0.004212814848870039, -0.007848255336284637, 0.01940244622528553, -0.015602519735693932, -0.012097995728254318, 0.004830470308661461, -0.015575665049254894, -0.020369211211800575, -0.01707952283322811, -0.004602206405252218, -0.0020443061366677284, 0.00958037655800581, 0.007371586747467518, 0.004541783593595028, 0.009231267496943474, 0.004682769998908043, 0.00731116347014904, 0.016851259395480156, 0.0026988869067281485, 0.016126183792948723, 0.01577707566320896, 0.006518953014165163, -0.02520303800702095, 0.005971790757030249, 0.05048663914203644, 0.004340373910963535, -0.009244694374501705, -0.008371920324862003, -0.003032890846952796, 0.009956341236829758, -0.015669656917452812, 0.0036891500931233168, -0.006962053943425417, -0.01536082848906517, -0.0010523644741624594, 0.01820741593837738, 0.011970436200499535, -0.0024236273020505905, 0.0014140623388811946, -0.011030524969100952, 0.008291356265544891, 0.017428632825613022, 0.0026753891725093126, 0.015911348164081573, 6.262575334403664e-05, 0.022960679605603218, 0.00952666811645031, -0.008660607039928436, 0.0013301416765898466, 0.0043974402360618114, 0.021591095253825188, 0.002661961829289794, 0.002917080419138074, -0.018623661249876022, 0.00594157911837101, -0.006267191376537085, -0.014125517569482327, 0.00032477275817655027, 0.012158418074250221, -0.0022457155864685774, -0.0015542097389698029, 0.003422282636165619, -0.0023111735936254263, -0.0006369574693962932, 0.0020510198082774878, -0.030533675104379654, 0.002504191128537059, 0.0009399108239449561, -0.004125537350773811, 0.008526334539055824, -0.012312832288444042, -0.03332655504345894, -0.005068805068731308, 0.008479338139295578, 6.603503425139934e-05, -0.003022820455953479, 0.002484050113707781, 0.01577707566320896, 0.005978504195809364, -0.008338351733982563, -0.007203745190054178, -0.003378643887117505, 0.01792544312775135, -0.008976148441433907, 0.033138569444417953, 0.0008438217337243259, 0.0052534304559230804, 0.005330637097358704, -0.00996305514127016, 0.010419582948088646, 0.017522623762488365, -0.0025092263240367174, 0.0009004681487567723, 0.00910370796918869, -0.011440057307481766, -0.012695509940385818, 0.006314186844974756, 0.011131229810416698, -0.028734417632222176, -0.013521288521587849, -0.026022102683782578, -0.01722722314298153, -0.011628040112555027, 0.0183551162481308, -0.027163423597812653, 0.03413219004869461], "1982d6a8-22c4-4beb-a9bc-96e81ac08261": [-0.024065904319286346, 0.0060269637033343315, -0.002732060384005308, 0.04997765272855759, -0.02389810048043728, -0.03300147131085396, 0.0019052756251767278, 0.045586779713630676, -0.02262558601796627, 0.017577478662133217, 0.019437307491898537, 0.0010959705105051398, 0.0006865110481157899, -0.007397363893687725, 0.004125183913856745, 0.03179887682199478, -0.025254515931010246, -0.023408671841025352, 0.021814532577991486, -0.04933440312743187, 0.05201926827430725, -0.0011711327824741602, -0.04368500038981438, -0.008872641250491142, 7.854892464820296e-05, 0.009292151778936386, -0.02096152864396572, 0.011690352112054825, -0.0027879951521754265, 0.010431821458041668, 0.004614612553268671, -0.007187608629465103, 0.021422989666461945, 0.015074401162564754, 0.024597283452749252, -0.007935735397040844, 0.012032952159643173, 0.034315936267375946, -0.005649404600262642, -0.0420069582760334, -0.02476508729159832, 0.05428462475538254, 0.007956710644066334, 0.017787234857678413, -0.03509902209043503, 0.00020079682872164994, 0.002794987056404352, 0.029086044058203697, 0.0034260002430528402, 0.00033254927257075906, -0.002174461493268609, -0.04860725253820419, 0.0019419827731326222, -0.030764084309339523, 0.017773250117897987, -0.07416941225528717, 0.02277940697968006, 0.04030095040798187, -0.03314130753278732, -0.03381252661347389, -0.006991837173700333, -0.02900214120745659, 0.016388867050409317, -0.020793724805116653, 0.006589806638658047, 0.030512377619743347, -0.035826176404953, 0.0016885286895558238, -0.02725418284535408, 0.0255202054977417, 0.015773585066199303, 0.06633855402469635, -0.023268835619091988, 0.007732972037047148, 0.04030095040798187, -0.008362237364053726, 0.02195436879992485, 0.005163471680134535, 0.008558008819818497, -0.015074401162564754, 0.021143315359950066, -0.0073064700700342655, 0.03389642760157585, 0.004383882042020559, 0.08854462951421738, 0.011466613039374352, -0.008495082147419453, -0.04933440312743187, -0.006463953759521246, -0.04561474546790123, -0.0007441936759278178, -0.012438478879630566, 0.0017558251274749637, -0.043852802366018295, 0.009012478403747082, 0.030176769942045212, 0.001586273079738021, 0.008844674564898014, -0.006324117071926594, -0.030288638547062874, -0.01693423092365265, -0.010375886224210262, 0.023212900385260582, -0.04186712205410004, 0.0202903114259243, -0.014109527692198753, -0.01161344163119793, -0.0030466930475085974, -0.03610584884881973, 0.022639568895101547, 0.02456931583583355, -0.014403184875845909, -0.04617409408092499, 0.011851164512336254, -0.02394005097448826, -0.012906931340694427, -0.01843048259615898, 0.02725418284535408, -0.008096547797322273, -0.026890605688095093, 0.027519872412085533, -0.027547840029001236, 0.009285160340368748, -0.003156814491376281, -0.037644051015377045, 0.00559696601703763, -0.0024418991524726152, 0.03532276302576065, 0.005187943112105131, -0.015423993580043316, 0.00663525378331542, 0.018024956807494164, -0.0011073322966694832, 0.05084463953971863, 0.0250447615981102, 0.01269717700779438, 0.044048573821783066, 0.03921022266149521, 0.008893617428839207, 0.027995316311717033, -0.06695383787155151, -0.03652535751461983, 0.03778388723731041, 0.017633413895964622, -0.00506209023296833, -0.008271344006061554, -0.002099299104884267, 0.01107507012784481, 0.013011809438467026, 0.022695504128932953, -0.06566733866930008, -0.05526348203420639, -0.0073693967424333096, 0.013955707661807537, 0.073554128408432, -0.06348588317632675, 0.02559012547135353, 0.01673845946788788, -0.018640238791704178, 0.020402181893587112, 0.03895851597189903, 0.011816205456852913, -0.0016736710676923394, 0.04774026572704315, 0.03177090734243393, -0.00027639608015306294, 0.06052134558558464, 0.006334604695439339, -0.013235548511147499, 0.03417610004544258, 0.02318493276834488, -0.02528248354792595, 0.015116352587938309, 0.026960525661706924, -0.039182256907224655, 0.0134872542694211, 0.037951692938804626, 0.0029662870801985264, -0.01238254364579916, -0.012438478879630566, -0.004695018753409386, 0.019786899909377098, -0.01700414903461933, -0.0013293230440467596, 0.027030443772673607, 0.0031673023477196693, 0.026764754205942154, 0.046817343682050705, 0.0011982261203229427, -0.010900274850428104, -0.03093188814818859, -0.00899849459528923, -0.015298140235245228, -0.014158470556139946, -0.0014009893639013171, -0.0038455105386674404, 0.01843048259615898, 0.009243208914995193, -0.006275174207985401, 0.020276328548789024, -0.0062821656465530396, -0.029561487957835197, -0.031435299664735794, 0.018486417829990387, 0.005436153616756201, 0.029058076441287994, -0.01661260612308979, 0.003677706466987729, 0.013641074299812317, -0.030903920531272888, 0.01329148281365633, -0.017465610057115555, -0.0030554328113794327, -0.0035868126433342695, 0.017018131911754608, 0.015340090729296207, -0.005831192247569561, 0.02305907942354679, -0.020597953349351883, -0.025701994076371193, -0.010914257727563381, 0.02528248354792595, 0.025128662586212158, -0.041951023042201996, -0.028806369751691818, -0.011802221648395061, -0.00683452095836401, -0.006432490423321724, -0.00992840901017189, -0.012487421743571758, 0.010026294738054276, -0.02298916131258011, -0.014738793484866619, -0.017199920490384102, -0.03834323585033417, 0.016542688012123108, 0.02986912988126278, -0.005107537377625704, -0.01104011107236147, 0.009802555665373802, -0.0050096516497433186, 0.0007424457580782473, 0.02117128297686577, 0.004306972026824951, 0.047768231481313705, 0.03034457378089428, 0.008767764084041119, 0.05526348203420639, 0.007621102500706911, 0.02117128297686577, 0.042034927755594254, -0.0202903114259243, -0.0202623438090086, 0.0044817677699029446, -0.04793603718280792, 0.013934731483459473, 0.02496085874736309, -0.0008525671437382698, 0.010851331986486912, -0.029421651735901833, -0.023786230012774467, 0.02919791266322136, -0.008571992628276348, 0.056549981236457825, 0.013060752302408218, 0.004656563512980938, 0.0121657969430089, 0.034987155348062515, -0.0042685167863965034, 0.011096046306192875, -0.007942726835608482, 0.01708805002272129, -0.013941723853349686, 0.027002476155757904, 0.0035745769273489714, -0.017339756712317467, 0.0064499699510633945, -0.011739294975996017, -0.003564089071005583, -0.027044426649808884, -0.010886291041970253, -0.00043283842387609184, 0.018052924424409866, 0.006292653735727072, 0.010676535777747631, 0.051124315708875656, -0.004118192009627819, -0.030764084309339523, -0.002398200100287795, -0.01721390336751938, 0.009068412706255913, 0.008900608867406845, -0.025562157854437828, 0.028135154396295547, -0.009662719443440437, -0.009033453650772572, 0.0202623438090086, 0.013354409486055374, -0.02428964339196682, 0.018724139779806137, -0.0035903085954487324, -0.013704000972211361, -0.010942225344479084, -0.004904774017632008, 0.040608592331409454, -0.027310116216540337, 0.06063321232795715, 0.00022679772519040853, 0.013564164750277996, 0.010473771952092648, 0.013396359980106354, -0.04469182342290878, 0.0118092130869627, -0.01630496419966221, 0.005086561664938927, 0.01585748791694641, 0.0038874614983797073, 0.005869647487998009, -0.00808955542743206, -0.0231429822742939, -0.008362237364053726, -0.009725646115839481, -0.03358878567814827, 0.038231365382671356, 0.0004977314383722842, -0.015493911691009998, 0.02251371555030346, -0.00862093549221754, -0.014235381036996841, -0.04611815884709358, -0.011697343550622463, -0.022919243201613426, -0.005006155464798212, 0.028456777334213257, -0.040049243718385696, 0.009662719443440437, -0.048159774392843246, -0.04869115352630615, 0.02215014025568962, -0.03227432072162628, -0.014193429611623287, -0.01905974932014942, -0.009760605171322823, -0.0042265658266842365, -0.020360229536890984, 0.021409006789326668, -0.007016308605670929, 0.011641409248113632, -0.013962699100375175, 0.008215408772230148, 0.0007804638589732349, -0.023366721346974373, 0.01886397786438465, 0.025618091225624084, -0.008809715509414673, -0.03210651874542236, -0.03177090734243393, 0.03191074728965759, 0.01879405789077282, -0.0033613257110118866, 0.0002781440271064639, -0.036497391760349274, 0.02472313679754734, 0.011319784447550774, 0.015200254507362843, -0.029757259413599968, 0.020975511521100998, 0.01931145414710045, 0.005701843183487654, -0.013207580894231796, -0.0017654389375820756, 0.02986912988126278, -0.004125183913856745, 0.01257831510156393, -0.030008966103196144, -0.014906597323715687, 0.045111335813999176, 0.0034434800036251545, 0.021660711616277695, 0.023156965151429176, 0.002662142040207982, -0.06164003908634186, -0.05045309662818909, 0.023198915645480156, 0.035742271691560745, 0.009438980370759964, 0.028540680184960365, 0.00497469212859869, -0.025897765532135963, -0.020346246659755707, -0.023716311901807785, -0.00028819480212405324, -0.04788010194897652, -0.03571430593729019, -0.016836345195770264, -0.03428797051310539, 0.006544359959661961, -0.019758932292461395, -0.0072015924379229546, -0.01346627902239561, -0.008718821220099926, 0.01602529175579548, 0.012508396990597248, -0.014515054412186146, 0.030316606163978577, 0.008061588741838932, -0.010949217714369297, -0.0178851205855608, -0.001948974677361548, 0.035938043147325516, -0.011284825392067432, 0.00656533520668745, 0.009802555665373802, 0.011424662545323372, 0.029897095635533333, 0.026359226554632187, 0.00036772695602849126, 0.017731299623847008, -0.0415315143764019, -0.0001648544130148366, 0.03420406952500343, 0.0002580425061751157, 0.00035767618101090193, 0.005631925072520971, 0.008320286870002747, 0.009445971809327602, 0.004537702538073063, 0.012864980846643448, 0.020318279042840004, -0.002464622724801302, 0.0024436472449451685, 0.021786564961075783, 0.027435969561338425, -0.01626301370561123, -0.005128512624651194, -0.008613944053649902, -0.011683360673487186, -0.02781352959573269, 0.028079219162464142, -0.02998099848628044, -0.01441716868430376, 0.04225866496562958, 0.005610949359834194, 0.019605111330747604, -0.043489228934049606, -0.007914760150015354, -0.05990606173872948, 0.007579151540994644, -0.02251371555030346, -0.01721390336751938, 0.009173290804028511, 0.033085376024246216, 0.020667871460318565, -0.025072729215025902, 0.0034627073910087347, -0.017941053956747055, 0.020360229536890984, 0.004789408762007952, 0.03272179886698723, -0.06404522806406021, -0.0020398686174303293, 0.0012934899423271418, 0.0012629006523638964, 0.021940385922789574, -0.008229392580688, -0.010368894785642624, -1.549948365209275e-06, -0.028946205973625183, -0.01234059315174818, 0.017060082405805588, 0.019786899909377098, 0.007984678260982037, 0.04189508780837059, 0.031435299664735794, 0.015423993580043316, 0.02325485087931156, -0.01556382980197668, 0.013347417116165161, -0.0025520205963402987, 0.03179887682199478, 0.00400632293894887, 0.00036903790896758437, 0.006750619038939476, -0.043097686022520065, -0.01938137225806713, 0.006782082375138998, -0.029477586969733238, 0.010550682432949543, 0.014053593389689922, 0.019772915169596672, -0.023716311901807785, -0.014375217258930206, 0.04231460019946098, 0.019437307491898537, -0.012676200829446316, -0.02093356102705002, 0.010075237601995468, -0.024709153920412064, 0.03406423330307007, -0.03367269039154053, 0.008991503156721592, -0.004240549169480801, -0.011165964417159557, -0.023632410913705826, -0.041279807686805725, 0.0008591220248490572, -0.006516392342746258, 0.028862304985523224, 0.015675699338316917, -0.0031987656839191914, -0.01883601024746895, 0.033532850444316864, -0.030512377619743347, 0.014375217258930206, -0.011753278784453869, 0.013445302844047546, 0.011151980608701706, -0.03300147131085396, 0.02744995430111885, 0.004831359721720219, 0.017507560551166534, -0.039853472262620926, -0.022094206884503365, -0.000810616125818342, -0.016193095594644547, -0.021297136321663857, -0.009452964179217815, -0.005478104576468468, 0.05638217553496361, -0.023073064163327217, -0.002840433968231082, 0.012445470318198204, -0.004715994466096163, 0.024471430107951164, 0.018500402569770813, 0.0062262313440442085, -0.0017348496476188302, 0.01914365030825138, 0.013123678974807262, -0.014584972523152828, -0.03988144174218178, -0.01141067873686552, -0.038706813007593155, -0.02788344770669937, -0.01680837757885456, 0.026722801849246025, -0.005680867936462164, 0.007285494357347488, 0.009075405076146126, 0.03733641281723976, -0.017116017639636993, 0.018640238791704178, 0.002868401352316141, 0.006435986142605543, -0.02119925059378147, 0.01866820640861988, 0.010886291041970253, 0.0018930399091914296, -0.008872641250491142, 0.006180784199386835, -0.026079554110765457, 0.018500402569770813, -0.0008984510786831379, -0.006019971799105406, 0.01350822951644659, -0.026289308443665504, -0.02835889160633087, 0.005712331272661686, -0.009781580418348312, 0.023912083357572556, 0.013018800877034664, -0.03437187150120735, 0.03395236283540726, -0.009704669937491417, -0.0008337766048498452, 0.031938713043928146, -0.021940385922789574, 0.004272012505680323, -0.046621572226285934, -0.010627592913806438, 0.004614612553268671, -0.014214405789971352, 0.012802054174244404, -0.00032708689104765654, 0.004625100642442703, -0.0101311719045043, -0.00540119456127286, -0.014962531626224518, -0.004862823057919741, -0.021828515455126762, -0.0004369898233562708, 0.022849325090646744, -0.026834672316908836, -0.01946527510881424, -0.026009634137153625, 0.012438478879630566, -0.00034434799454174936, -0.016318948939442635, 0.042146794497966766, -0.004887294489890337, 0.02210818976163864, 0.011851164512336254, 0.0031673023477196693, -0.043293457478284836, -0.04712498560547829, -0.001821373589336872, 0.014403184875845909, 0.01697618141770363, 0.007096714805811644, 0.00422306964173913, -0.0025240532122552395, -0.015284156426787376, 0.03286163508892059, 0.0142004219815135, 0.005582982208579779, -0.0036532350350171328, 0.004943228792399168, 0.027911415323615074, 0.016193095594644547, -0.034120164811611176, 0.016151145100593567, 0.0027600277680903673, 0.01760544627904892, -0.00533127598464489, -0.00013907201355323195, 0.020947543904185295, -0.0003727523435372859, -0.008194433525204659, 0.004967700224369764, 0.025799879804253578, -0.04838351532816887, -0.029701324179768562, 0.0007083605160005391, -0.04497149959206581, -0.0035693328827619553, -0.004715994466096163, -0.003092139959335327, 0.0008176079718396068, 0.0015757853398099542, -0.018766092136502266, -0.014137495309114456, -0.022877292707562447, -0.005841680336743593, 0.03238619118928909, -0.00674362713471055, -0.02638719417154789, 0.033169277012348175, -0.01879405789077282, -0.008488090708851814, -0.012962866574525833, -0.01578756794333458, -0.007054763846099377, -0.025212565436959267, 0.03811949864029884, -0.019003814086318016, -0.027589790523052216, -0.002088811481371522, 0.002337021753191948, 0.009676703251898289, 0.0015897690318524837, 0.029141977429389954, -0.032022614032030106, 0.0021447460167109966, 0.01756349578499794, 0.023156965151429176, -0.011907098814845085, 0.02487695775926113, 0.003918924834579229, 0.017116017639636993, -0.0043873777613043785, 0.020835675299167633, -0.05123618245124817, 0.007837849669158459, 0.005873143207281828, -0.01609520986676216, 0.023268835619091988, -0.011221898719668388, 0.008383212611079216, 0.014738793484866619, -0.029617423191666603, -0.024890940636396408, -0.03778388723731041, -0.03260992839932442, 0.014312291517853737, -0.01479472778737545, 0.0003889209474436939, -0.007145657669752836, -0.024779072031378746, 0.000281858432572335, -0.005027131177484989, 0.0005340015632100403, -0.0023964522406458855, -0.016151145100593567, 0.04969798028469086, 0.01697618141770363, -0.04631393030285835, 0.02203827165067196, -0.003088644240051508, -0.012403519824147224, -0.02349257282912731, -0.02417777292430401, -0.028037268668413162, -0.013018800877034664, -0.003315878799185157, -0.0142004219815135, 0.0028019787278026342, -0.014298307709395885, -0.026890605688095093, -0.023548508062958717, -0.005481600295752287, -0.0029173442162573338, 0.029365716502070427, 0.037755921483039856, 0.028750434517860413, -0.0031935216393321753, 0.010040278546512127, -0.001541700097732246, 0.029477586969733238, 0.004576157778501511, 0.020472100004553795, 0.03423203527927399, 0.047180917114019394, -0.013724977150559425, -0.0012331852922216058, -0.0314912348985672, -0.045586779713630676, -0.002866653259843588, 0.002635922748595476, 0.008306303061544895, 0.012284657917916775, 0.01816479302942753, -0.007907767780125141, 0.00590460654348135, 0.010935233905911446, 0.022262010723352432, -0.006981349550187588, -0.02930978313088417, -0.01617911085486412, 0.04368500038981438, -0.0005676497821696103, 0.021017463877797127, -0.023716311901807785, -0.021702663972973824, -0.03761608526110649, -0.008753780275583267, 0.006831025239080191, 0.038315270096063614, 0.005649404600262642, -0.008739796467125416, -0.039573799818754196, -0.0002184949116781354, -0.02753385528922081, 0.03319724276661873, -0.014158470556139946, 0.014962531626224518, 0.007159641478210688, 0.029729291796684265, 0.03501512110233307, 0.02305907942354679, 0.03876274451613426, -0.012312625534832478, 0.00015097999130375683, -0.000339104124577716, -0.03588210791349411, 0.013515221886336803, -0.01926950365304947, -0.006156312767416239, 0.03549056500196457, 0.01388578861951828, 0.03280569985508919, 0.03378455713391304, 0.006233222782611847, 0.013585139997303486, 0.0639892965555191, -0.0029820187482982874, 0.007355412933975458, 0.011935066431760788, -0.015675699338316917, -0.02416379004716873, -0.015773585066199303, -0.024821022525429726, -0.006425498519092798, 0.03674909844994545, 0.023912083357572556, -0.011312793008983135, -0.02610751986503601, 0.032302290201187134, 0.014920581132173538, -0.02721223048865795, 0.04066452756524086, -0.0032022614032030106, 0.0025817358400672674, -0.020989496260881424, -0.01008922141045332, -0.027869462966918945, -0.010180114768445492, 0.01178823783993721, -0.008655894547700882, -0.00038433255394920707, 0.00468802684918046, 0.02156282588839531, 0.011368727311491966, 0.03300147131085396, 0.008690853603184223, 0.020472100004553795, -0.009250201284885406, -0.013585139997303486, -0.0054746088571846485, -0.00765606202185154, 0.018766092136502266, 0.002793238963931799, -0.02117128297686577, -0.03045644424855709, 0.02266753651201725, -0.03571430593729019, -0.01250140555202961, 0.02373029664158821, 0.005226398352533579, -0.007502241525799036, -0.007236551493406296, -0.025855815038084984, -0.005631925072520971, 0.006404522806406021, 0.01257831510156393, 0.0034417319111526012, 0.019409339874982834, 0.034036263823509216, -0.00210104719735682, 0.002635922748595476, 0.009117355570197105, -0.008732805028557777, -0.0019314950332045555, -0.021227218210697174, 0.001369526144117117, 0.02852669730782509, 0.00840418878942728, 0.021059414371848106, 0.0059955003671348095, -0.012403519824147224, 0.0020346245728433132, -0.012641241773962975, -0.03705673664808273, -0.019926736131310463, 0.021884450688958168, 0.02677873708307743, 0.005743794608861208, 0.01918560080230236, 0.002546776784583926, 0.0343439057469368, 0.02357647567987442, -0.0005374975153245032, -0.029225880280137062, 0.027086377143859863, -0.022877292707562447, 0.005915094632655382, 0.014389201067388058, 0.03588210791349411, 0.011802221648395061, -0.04094420000910759, 0.007390371989458799, 0.019605111330747604, 0.025366386398673058, -0.01771731674671173, 0.006516392342746258, -0.005862655583769083, -0.018654221668839455, 0.0035256340634077787, -0.04164338484406471, -0.012137829326093197, -0.013445302844047546, -0.007907767780125141, 0.0053382678888738155, 0.03789575770497322, 0.014109527692198753, 0.026988491415977478, 0.009725646115839481, -0.021590793505311012, 0.01914365030825138, -0.0027215727604925632, -0.04427231475710869, -0.002212916500866413, 0.016794392839074135, -0.010921250097453594, 0.043293457478284836, -0.02472313679754734, 0.0030012461356818676, 0.03560243546962738, -0.005257861688733101, -0.03839917108416557, 0.01724187098443508, -0.0011763765942305326, 0.023170949891209602, -0.008928576484322548, -0.025296468287706375, -0.018178777769207954, 0.0023649889044463634, 0.04427231475710869, 0.022443797439336777, -0.015032450668513775, -0.031071724370121956, 0.002471614396199584, -0.0396297350525856, -0.025660043582320213, 0.005397698376327753, 0.035462599247694016, -0.014892613515257835, 0.023982001468539238, -0.022569650784134865, 0.03442780673503876, -0.0029470594599843025, -0.011886123567819595, 0.018877960741519928, -0.004320955369621515, 0.013941723853349686, 0.040608592331409454, 0.020751772448420525, 0.008124515414237976, -0.009984343312680721, 0.012207748368382454, -0.0009543857886455953, 0.022206075489521027, 0.006016476079821587, 0.028261005878448486, 0.013284491375088692, -0.003387545235455036, 0.007257527206093073, -0.044607922434806824, -0.017269838601350784, 0.017102034762501717, 0.026415161788463593, 0.005838184151798487, 0.0019437307491898537, -0.024737119674682617, -0.011117021553218365, 0.03157513588666916, -0.019157635048031807, -0.015675699338316917, -0.0015259685460478067, -0.004569165874272585, -0.011277833953499794, -0.012088886462152004, -0.018598288297653198, -0.0024855982046574354, -0.030596280470490456, 0.00842516403645277, -0.036805033683776855, 0.026960525661706924, 0.004750953521579504, 0.0009945888305082917, -0.0008429533918388188, -0.0006664094980806112, 0.02349257282912731, 0.008131506852805614, -0.015675699338316917, -0.0030973840039223433, 0.0072015924379229546, 0.006219239439815283, -0.013710993342101574, 0.010732470080256462, -0.0025852317921817303, 0.028191087767481804, 0.0004142663674429059, -0.011907098814845085, 0.011242874898016453, -0.005397698376327753, -0.018220728263258934, -0.029421651735901833, 0.018612271174788475, -0.053305767476558685, 0.0021447460167109966, -0.005446641240268946, 0.015102368779480457, 0.02891824021935463, -0.0009963368065655231, -0.014780743978917599, 0.0006253324681892991, -0.03302944079041481, -0.016193095594644547, -0.045950356870889664, -0.019325438886880875, -0.00672614760696888, -0.018066907301545143, 0.029561487957835197, 0.004352418705821037, 0.03210651874542236, -0.01745162531733513, -0.011872139759361744, 0.02967335842549801, -0.015116352587938309, 0.0022618593648076057, 0.026750769466161728, 0.0036637228913605213, 0.00992840901017189, -0.01775926724076271, 0.009201258420944214, -0.02693255804479122, 0.0076350863091647625, -0.01493456494063139, -0.0075162253342568874, -0.001553935813717544, 0.0034277483355253935, -0.010816371999680996, 0.0010959705105051398, 0.005782249383628368, 0.027743611484766006, 0.005792737472802401, 0.0386788435280323, 0.005282333120703697, -0.03982550650835037, 0.00572631461545825, -0.03739234805107117, 0.002557264408096671, 0.03428797051310539, -0.01669650711119175, -0.035350728780031204, 0.014235381036996841, 0.0363016203045845, -0.04228663071990013, -0.0018825521692633629, 0.0035273819230496883, -0.022220058366656303, -0.021968353539705276, -0.007236551493406296, -0.028666533529758453, 0.000713167421054095, 0.01633293181657791, 0.015032450668513775, 0.009767596609890461, 0.014570988714694977, 0.015885453671216965, -0.04351719468832016, -0.02603760175406933, 0.025310451164841652, -0.007117690518498421, 0.0008923332206904888, -0.008816706947982311, -0.006208751350641251, -0.03616178408265114, -0.008879633620381355, -0.013494245707988739, 0.03451170772314072, -0.025743944570422173, -0.02210818976163864, 0.02396801859140396, 0.015298140235245228, -0.00028120295610278845, -0.020038606598973274, -0.007921751588582993, -0.019437307491898537, -0.011900107376277447, 0.00876077264547348, -0.0025782401207834482, 0.017731299623847008, -0.0025258013047277927, -0.026373211294412613, 0.0026691339444369078, -0.0033805533312261105, -0.00634858850389719, -0.00802662968635559, 0.02223404310643673, 0.00749524962157011, -0.030680181458592415, 0.005355747416615486, -0.00951589085161686, -0.013319450430572033, -0.002018893137574196, -0.03263789787888527, -0.0014237129362300038, 0.010578650049865246, -0.010473771952092648, -0.010417837649583817, 0.002475110348314047, 0.01028499286621809, 0.013039777055382729, -0.02045811526477337, 0.0012629006523638964, 0.024932891130447388, 0.008858658373355865, -0.006782082375138998, -0.013606115244328976, 0.01665455661714077, 0.02389810048043728, 0.007327445782721043, 0.013459286652505398, -0.02891824021935463, 0.014822695404291153, 0.0033508380874991417, -0.00842516403645277, 0.004887294489890337, -0.028862304985523224, -0.02215014025568962, -0.011865148320794106, 0.01745162531733513, 0.0176473967730999, -0.014920581132173538, -0.014487086795270443, 0.0007712870719842613, 0.023716311901807785, 0.02761775813996792, 0.009781580418348312, -0.009187274612486362, -0.0021342583931982517, 0.01255733985453844, 0.01855633594095707, 0.04016111418604851, 0.0012192016001790762, -0.0023457615170627832, 0.00045141050941310823, -0.0007096714689396322, 0.0013861317420378327, -9.165862138615921e-05, -0.0006349462200887501, -0.01585748791694641, 0.007663053926080465, 0.007390371989458799, 0.005820704624056816, 0.011900107376277447, -0.026443129405379295, 0.007732972037047148, 0.0017549511976540089, 0.007250535301864147, -0.013976682908833027, -0.012983841821551323, -0.0034574635792523623, -0.008893617428839207, 0.0005667757941409945, 0.006114361807703972, 0.022206075489521027, -0.016249030828475952, 0.023240868002176285, -0.0018266175175085664, -0.007086227182298899, 0.05523551627993584, -0.01847243495285511, 0.04049672186374664, -0.0276876762509346, -0.013557172380387783, 0.017969021573662758, 0.010921250097453594, -0.0008197929128073156, 0.008229392580688, 0.0013590384041890502, 0.0006200885982252657, -0.0020590960048139095, 0.003719657426699996, -0.01218677219003439, -0.0178851205855608, -0.023156965151429176, -0.00579623319208622, -0.02998099848628044, 0.023758264258503914, -0.0017540771514177322, -0.006827529054135084, 0.01725585386157036, 0.012641241773962975, 0.0007590513559989631, 0.018444467335939407, 0.003333358559757471, 0.0010531455045565963, -0.008117523044347763, -0.02282135747373104, -0.03151920437812805, -0.009166298434138298, -0.001757573103532195, -0.016514720395207405, 0.0012043439783155918, 0.010732470080256462, -0.006411514710634947, 0.006156312767416239, 0.0006428120541386306, -0.003188277827575803, 0.024457447230815887, -0.01479472778737545, 0.013578148558735847, -0.014584972523152828, 0.028428811579942703, -0.02251371555030346, -0.0050830659456551075, 0.008809715509414673, -0.007949719205498695, -0.011117021553218365, -0.016290981322526932, 0.0075721596367657185, -0.019325438886880875, -0.02266753651201725, 0.007774922996759415, 0.005901110824197531, 0.026988491415977478, 0.0027338084764778614, 0.04793603718280792, -0.002391208428889513, -0.01578756794333458, -0.028778402134776115, 0.010655560530722141, 0.016682524234056473, -0.012948882766067982, -0.005610949359834194, -0.000617903599049896, -0.00026678229914978147, -0.0012200756464153528, -0.0145570058375597, -0.00431396346539259, -0.0031096197199076414, 0.003971363417804241, -0.019213568419218063, -0.015969356521964073, 0.0027373044285923243, 0.03395236283540726, -0.01085832342505455, -0.031239530071616173, -0.03599397838115692, 0.03006490133702755, -0.019954703748226166, 0.008914592675864697, -0.009250201284885406, 0.022807372733950615, 0.004957212600857019, -0.01780121773481369, -0.010026294738054276, 0.008914592675864697, 0.015032450668513775, 0.003646243130788207, 0.0210034791380167, 0.000810616125818342, -0.009970360435545444, -0.009669710882008076, 0.0007031166460365057, -0.011137996800243855, 0.005614445544779301, -0.026792719960212708, 0.010201090946793556, 0.012249698862433434, 0.009082396514713764, 0.025939716026186943, 0.021506892517209053, -0.015605781227350235, -0.016430817544460297, -0.009131339378654957, -0.005568998400121927, 0.01855633594095707, -0.004625100642442703, 0.00626119039952755, 0.008096547797322273, -0.025408336892724037, 0.01942332461476326, -0.0034696992952376604, -0.018248695880174637, 0.004929245449602604, -0.01329148281365633, 0.007711996790021658, 0.01617911085486412, -0.0101311719045043, -0.022919243201613426, -0.005506071727722883, -0.004632092081010342, -0.00038913945900276303, -0.020835675299167633, 0.033337078988552094, -0.0038490064907819033, 0.015186270698904991, -0.004265020601451397, 0.011725311167538166, 0.015060417354106903, -0.011914091184735298, -0.05850769579410553, -0.024107854813337326, 0.016249030828475952, 0.008474106900393963, 0.006848504766821861, 0.015242205001413822, -0.007313461974263191, -0.01890592835843563, 0.009760605171322823, 0.013249531388282776, 0.011977017857134342, 0.025226548314094543, 0.006775090470910072, 0.007865817286074162, -0.005967533215880394, -0.017703332006931305, -0.02238786406815052, 0.0029592951759696007, 0.006865984294563532, -0.015158303081989288, -0.005820704624056816, 0.013717984780669212, 0.019968686625361443, 0.005481600295752287, -0.01879405789077282, -0.013557172380387783, -0.006764602847397327, 0.0046181087382137775, -0.012298641726374626, -0.0030641728080809116, -0.025464272126555443, 0.0015338342636823654, -0.0029855144675821066, -0.02389810048043728, 0.014277331531047821, 0.015605781227350235, -0.015731634572148323, 0.020779740065336227, -0.022066239267587662, -0.0020014133770018816, 0.02496085874736309, -0.012962866574525833, -0.006600294262170792, -0.012627257965505123, 0.01613716036081314, -0.02614947222173214, -0.009641743265092373, 0.013144654221832752, -0.0007175373029895127, 0.0069883414544165134, -0.03406423330307007, 0.011340760625898838, -0.04855131730437279, 0.0030327094718813896, -0.01816479302942753, -0.01594138890504837, 0.02096152864396572, 0.0013319450663402677, 0.007956710644066334, -0.035378698259592056, -0.040049243718385696, 0.0023387696128338575, -0.005478104576468468, -0.01819276064634323, -0.0046915230341255665, 0.015200254507362843, 0.00493623735383153, 0.03157513588666916, 0.017661381512880325, -0.0243315938860178, -0.01946527510881424, -0.005027131177484989, -0.015619765035808086, 0.009271176531910896, -0.0058032250963151455, -0.031463269144296646, 0.0019734459929168224, -0.030008966103196144, -0.00027377414517104626, 0.016528703272342682, -0.022919243201613426, 0.016752442345023155, 0.011172955855727196, -0.005184447392821312, 0.00880272313952446, -0.023632410913705826, -0.0007223442080430686, -0.035658370703458786, 0.025883782655000687, 0.004890790209174156, 0.011312793008983135, -0.003347342135384679, -0.013242539949715137, 0.024317611008882523, -0.006117857526987791, 0.021814532577991486, 0.002732060384005308, -0.04351719468832016, 0.006670212838798761, -0.023282818496227264, 0.019115682691335678, 0.01350822951644659, -0.0006725273560732603, -0.04444011673331261, 0.03976957127451897, -0.030092867091298103, 0.0008346505928784609, -0.018570320680737495, 0.010928241536021233, 0.0017820445355027914, -0.015423993580043316, -0.03453967720270157, -0.003356081899255514, 0.014445136301219463, 0.03786779195070267, -0.025646058842539787, 0.004139167722314596, -0.015969356521964073, 0.015340090729296207, -0.01693423092365265, 0.022555667906999588, 0.009418005123734474, 0.001782918581739068, 0.008117523044347763, -0.009830523282289505, -0.009459955617785454, 0.0027285644318908453, 0.0010872307466343045, 0.04066452756524086, 0.008215408772230148, -0.00486631877720356, -0.0009133087587542832, -0.031239530071616173, -0.011340760625898838, 0.01517228689044714, 0.011340760625898838, 0.007439314853399992, -0.01346627902239561, 0.0014577980618923903, 0.012480429373681545, -0.01812284253537655, -0.007865817286074162, -0.01617911085486412, 0.001289993990212679, 0.007670045364648104, -0.00915930699557066, 0.008984510786831379, -0.026205405592918396, 0.0056668841280043125, -0.012130837887525558, 0.014864645898342133, 0.004827863536775112, -0.011026127263903618, -0.006649237126111984, 0.024359561502933502, 0.0009884709725156426, -0.02298916131258011, -0.02682068757712841, -0.004167134873569012, -0.0016841588076204062, 0.011872139759361744, -0.00758614344522357, -0.024261675775051117, -0.009557841345667839, -0.016752442345023155, 0.0012375551741570234, 0.003796567674726248, 0.010243041440844536, 0.00256600440479815, -0.012627257965505123, -0.007607119157910347, -0.03610584884881973, -0.011068078689277172, -0.02251371555030346, 0.02199632115662098, -0.007900776341557503, 0.019353406503796577, -0.01192807499319315, 0.051208216696977615, -0.010396862402558327, -0.005579486023634672, 0.0006703424151055515, -0.02420574054121971, -0.014640907756984234, -0.01030596811324358, 0.00382803101092577, -0.0013188353041186929, -0.037755921483039856, 0.023366721346974373, -0.022024286910891533, 0.02017844282090664, -0.013039777055382729, -0.007732972037047148, 0.0009867229964584112, -0.011725311167538166, -0.017549511045217514, 0.002169217448681593, -0.004121688194572926, 0.05366934463381767, -0.02718426287174225, -0.00201190123334527, 0.011795229278504848, -0.0076350863091647625, -0.029169945046305656, 0.019241536036133766, -0.009222233667969704, 0.00899849459528923, 0.0314912348985672, -0.028400843963027, 0.006631757598370314, -0.011263850145041943, -0.01771731674671173, 0.0015958868898451328, -0.04589442163705826, -0.013955707661807537, -0.015731634572148323, -0.0314912348985672, -0.00729947816580534, -0.023212900385260582, 0.010424829088151455, -0.012683193199336529, -0.004233557730913162, 0.006310133263468742, 0.018052924424409866, -0.025338418781757355, 0.01499049924314022, 0.018094874918460846, 0.028610598295927048, 0.03786779195070267, -0.022499732673168182, -0.016151145100593567, 0.0006659725331701338, 0.012445470318198204, 0.008040612563490868, 0.0008027503499761224, 0.013207580894231796, 0.006757610943168402, 0.004016810562461615, 0.016318948939442635, 0.02764572575688362, -0.018094874918460846, -0.011172955855727196, -0.022611601278185844, 0.007075739558786154, 0.03996534273028374, 0.0171719528734684, -0.013613107614219189, 0.015969356521964073, -0.0072435433976352215, 0.0012410511262714863, -0.014906597323715687, 0.00627866992726922, -0.0044922553934156895, -0.016836345195770264, -0.007795898709446192, -0.014766760170459747, 0.0018161297775804996, 0.0038175431545823812, 0.004516726825386286, 0.024779072031378746, 0.007984678260982037, -0.015605781227350235, 0.02543630450963974, 0.00882369838654995, 0.025701994076371193, -0.019395356997847557, 0.018416499719023705, 0.02373029664158821, 0.012585307471454144, -0.0006886959890834987, 0.001449058298021555, 0.0075721596367657185, -0.0011580230202525854, -0.003985347226262093, -0.014962531626224518, -0.00645696185529232, -0.006345092318952084, 0.004712498281151056, -0.012941891327500343, -0.012277666479349136, 0.013550180941820145, 0.011746286414563656, -0.018738124519586563, -0.002618442988023162, 0.016962196677923203, 0.011082062497735023, -0.007725980132818222, 0.007110698614269495, -0.007404355797916651, 0.0205280352383852, -0.006530376151204109, -0.012032952159643173, 0.010515723377466202, 0.001926251221448183, -0.001824869541451335, -0.003251204267144203, -0.003467951435595751, 0.004702010657638311, 0.011669376865029335, -0.007753947749733925, 0.028890272602438927, -0.016542688012123108, -0.0070512681268155575, 0.006380051374435425, -0.013536197133362293, 0.0021954369731247425, -0.00010935670434264466, 0.0033840492833405733, 0.02089161053299904, -0.00112743373028934, 0.0010181863326579332, -0.004338434897363186, -0.012508396990597248, -0.02199632115662098, 0.01028499286621809, 0.0014805215178057551, 0.004478272050619125, 0.01673845946788788, 0.050145458430051804, -0.00541867408901453, 0.0014088551979511976, -0.026554998010396957, 0.010571657679975033, -0.01803893968462944, -0.019549177959561348, -0.004425833001732826, 0.014284323900938034, -0.006201759912073612, 0.014836679212749004, -0.014102536253631115, -0.01657065376639366, 0.001200848026201129, -0.0333930142223835, 0.005079569760710001, 0.010578650049865246, 0.017857152968645096, -0.009348087012767792, 0.019395356997847557, -0.0005899362731724977, -0.006086394190788269, -0.011417670175433159, -0.00878174789249897, -0.006579319015145302, 0.005820704624056816, -0.016640573740005493, -0.002635922748595476, -0.0025817358400672674, 0.007544192485511303, -0.014668874442577362, 0.005876639392226934, -0.013850829564034939, -0.015186270698904991, -0.019549177959561348, 0.00701281288638711, -0.004513231106102467, 0.0243315938860178, 0.000598676095250994, 0.02191241830587387, -0.004289492033421993, 0.0022775910329073668, 0.020234378054738045, 0.03540666401386261, 0.0010400358587503433, -0.008921584114432335, 0.006373059935867786, -0.0009622516226954758, -0.013228556141257286, 0.00729947816580534, -0.023674361407756805, 0.0002202428731834516, -0.005988508928567171, -0.005502576008439064, 0.01578756794333458, -0.01291392371058464, 0.0067471228539943695, -0.00765606202185154, 0.006463953759521246, -0.004684531129896641, 0.01030596811324358, -0.006442978046834469, -0.008376221172511578, -0.022206075489521027, -0.011354743503034115, -0.01994072087109089, 0.008488090708851814, -0.017116017639636993, 0.02461126819252968, 0.0003148511750623584, -0.011200923472642899, 0.008949551731348038, 0.03806356340646744, -0.004097216762602329, -0.015018466860055923, 0.002697101328521967, 0.02210818976163864, 0.01721390336751938, 0.017703332006931305, 0.0043873777613043785, -0.011207914911210537, -0.007774922996759415, -0.0013721480499953032, -0.00234401342459023, -0.005652900319546461, 0.009851498529314995, 0.022094206884503365, -0.014850662089884281, 0.0007101084920577705, -0.03311334177851677, -0.0017243619076907635, 0.013319450430572033, -0.0002816399501170963, -0.0005147740012034774, 0.01732577383518219, 0.00022876418370287865, 0.011270841583609581, -0.011473605409264565, 0.031043758615851402, 0.0016885286895558238, 0.003286163555458188, 0.0073064700700342655, 0.0036147800274193287, 0.0210034791380167, 0.00758614344522357, -0.01605325937271118, 0.025366386398673058, 0.009452964179217815, -0.023128997534513474, -0.0017890364397317171, 0.011207914911210537, 0.025310451164841652, -0.006009484175592661, 0.008460123091936111, -0.01230563409626484, -0.019912753254175186, 0.007991669699549675, 0.01974494941532612, -0.0022373879328370094, -0.01105409488081932, -0.010166131891310215, -0.023912083357572556, -0.0034784390591084957, -0.005778753664344549, 0.0004026861279271543, 0.01566171646118164, -0.031435299664735794, -0.004548190161585808, -0.00765606202185154, -0.005397698376327753, 0.0363016203045845, -0.008292319253087044, 0.0025292972568422556, -0.012837013229727745, 0.021409006789326668, -0.001359912334010005, 0.010676535777747631, -0.019003814086318016, 0.026359226554632187, 0.009585808962583542, 0.009152315557003021, 0.009977351874113083, 0.01617911085486412, -0.0068520004861056805, 0.01119393203407526, -0.004369898233562708, -0.008334269747138023, -0.01366904191672802, 0.014501070603728294, -0.0014123511500656605, 0.012046935968101025, -0.026638900861144066, -0.010243041440844536, -0.023282818496227264, 0.013144654221832752, -0.006673708558082581, -0.005712331272661686, 0.03168700635433197, 0.01441716868430376, 0.007816874422132969, -0.005173959769308567, 0.00720858434215188, 0.005121520720422268, 0.017269838601350784, 0.015871470794081688, 0.0043314434587955475, 0.012424495071172714, 0.024946875870227814, 0.010082229040563107, -0.005628428887575865, 0.0010916006285697222, 0.004167134873569012, 0.0027425482403486967, -0.006362571846693754, 0.0058346884325146675, -0.030008966103196144, 0.002515313448384404, 0.014179445803165436, -0.013878797180950642, 0.029561487957835197, 0.006694684270769358, 0.022737454622983932, 0.023087047040462494, 0.01350822951644659, 0.008516058325767517, -0.0009543857886455953, -0.004128680098801851, -0.012403519824147224, 0.0009954628767445683, 0.010942225344479084, -0.00515298405662179, 0.025925733149051666, -0.018961863592267036, 0.0035973002668470144, -0.011914091184735298, -0.022052254527807236, 0.0007629842730239034, 0.010571657679975033, 0.011103037744760513, 0.019087715074419975, -0.004142663441598415, 0.0014691598480567336, 0.009501907043159008, 0.010019303299486637, 0.004880302585661411, -0.009837514720857143, -0.010669543407857418, -0.022653553634881973, -0.011718319728970528, 0.009306135587394238, -0.03644145652651787, -0.02373029664158821, 0.010795396752655506, -0.0022793388925492764, -0.014144486747682095, 0.01808089204132557, 0.029058076441287994, 0.012871972285211086, 0.017969021573662758, 1.6428086382802576e-05, -0.01585748791694641, 0.010250033810734749, 0.0202623438090086, -0.006754114758223295, -0.011151980608701706, 0.004967700224369764, -0.014193429611623287, 0.02400996908545494, 0.02567402645945549, 0.001251538866199553, 0.012592298910021782, -0.004104208666831255, -0.01685032807290554, 0.030232705175876617, 0.01493456494063139, 0.0017645650077611208, 0.011151980608701706, -0.007725980132818222, 0.012494413182139397, -0.022835340350866318, -0.003375309519469738, 0.005890623200684786, 0.0035046585835516453, 0.006838017143309116, 0.019772915169596672, 4.308446477807593e-06, 0.0022251522168517113, -0.008460123091936111, 0.0027460441924631596, -2.086626409436576e-05, 0.008921584114432335, -0.02428964339196682, -0.007135170046240091, 0.012753111310303211, 0.004394369665533304, 0.019255520775914192, -0.00913833174854517, -0.012508396990597248, 0.01276010274887085, -0.011851164512336254, 0.012571323662996292, 0.008292319253087044, 0.016584638506174088, 0.0039399005472660065, 0.02524053305387497, 0.007621102500706911, -0.019842835143208504, 0.009103372693061829, 0.001085482770577073, 0.015605781227350235, 0.0005846924032084644, 0.006303141359239817, -0.010900274850428104, -0.005359243135899305, -0.013578148558735847, -0.015885453671216965, 0.006530376151204109, -0.007593135349452496, -0.007858824916183949, 0.01012418046593666, 0.003027465660125017, -0.008858658373355865, 0.0016946465475484729, -0.02900214120745659, -0.012298641726374626, 0.012277666479349136, -0.016668539494276047, 0.0030449451878666878, 0.010005319491028786, -0.0053382678888738155, 0.011662384495139122, -0.006551351398229599, 0.0020905593410134315, 0.0191016998142004, -0.0012594047002494335, 0.012116854079067707, 0.007166633382439613, 0.007886792533099651, 0.019199585542082787, 0.025688011199235916, 0.00150324497371912, 0.006593302823603153, -0.00994938425719738, 0.0078028906136751175, 0.02670881897211075, 0.029281815513968468, -0.0008678617887198925, -0.01214482169598341, 0.010424829088151455, -0.014878629706799984, 0.006768098566681147, -0.004104208666831255, 0.011991000734269619, 0.005953549407422543, 0.010403853841125965, 0.00016824108024593443, -0.0035011626314371824, 0.02500281110405922, -0.014137495309114456, 0.025688011199235916, -0.012690184637904167, 0.0024349072482436895, -0.013326441869139671, 0.01974494941532612, -0.015815535560250282, 0.033840492367744446, 0.01637488231062889, 0.0015172286657616496, -0.008599960245192051, -0.014822695404291153, -0.011921082623302937, -0.031826842576265335, 0.009438980370759964, -0.003943396266549826, 0.00331762689165771, -0.0012777582742273808, -0.03557446971535683, -0.010711494833230972, -0.001197352190501988, 0.01289294846355915, -0.01894787885248661, 0.006782082375138998, -0.009837514720857143, -0.032302290201187134, -0.003464455483481288, 0.0009797312086448073, 0.022164124995470047, -0.014780743978917599, -0.0021517379209399223, 0.006463953759521246, 0.003417260479182005, -0.018486417829990387, 0.007096714805811644, -0.0014481843682006001, -0.003041449235752225, -0.032889604568481445, -0.008949551731348038, 0.007767931092530489, -0.0004081485094502568, -0.008383212611079216, -0.015074401162564754, 0.010424829088151455, -0.02405191957950592, -0.008474106900393963, 0.001649199635721743, 0.006250702776014805, -0.010753446258604527, 0.006701676174998283, -0.03445577621459961, 0.005194935016334057, 0.007159641478210688, -0.02400996908545494, -0.015298140235245228, -0.016556670889258385, -0.012508396990597248, -0.015186270698904991, 0.0018685684772208333, -0.009655727073550224, 0.0035099023953080177, -0.010375886224210262, 0.038986485451459885, 0.0010680031264200807, -0.023744279518723488, -0.0028544175438582897, 0.024065904319286346, -0.014228388667106628, 0.017969021573662758, 0.02338070422410965, -0.020122507587075233, -0.0017365976236760616, 0.000281858432572335, 0.00840418878942728, -0.020583968609571457, -0.005659892223775387, 0.014207413420081139, -0.008180449716746807, 0.0007258401019498706, 0.018766092136502266, 0.005394202657043934, -0.02456931583583355, 0.019549177959561348, 0.001926251221448183, 0.010725478641688824, 0.029925063252449036, 0.01693423092365265, -0.005271845497190952, 0.0054116821847856045, 0.018486417829990387, 0.019171617925167084, -0.01402562577277422, -0.0008792235748842359, 0.00840418878942728, -0.0034662033431231976, -0.0005610949592664838, 0.000756429391913116, -0.0014569241320714355, 0.007732972037047148, -0.001092474558390677, 0.013361400924623013, -0.0026551501359790564, 0.021297136321663857, -0.0021360062528401613, 0.021576810628175735, -0.01366904191672802, 0.022807372733950615, -0.003957380075007677, -0.0036567309871315956, 0.005782249383628368, -0.02900214120745659, 0.009264184162020683, -0.005285828839987516, -0.014948547817766666, -0.0033420983236283064, -0.004967700224369764, -0.01669650711119175, -0.008914592675864697, 0.015717649832367897, -0.009886457584798336, -0.00933410320430994, -0.0007153523620218039, -0.029169945046305656, -0.014130502939224243, 0.0066597252152860165, -0.01459895633161068, 0.016346916556358337, 0.00953686609864235, 0.012885956093668938, 0.025855815038084984, -0.010319951921701431, -0.009858490899205208, -0.007187608629465103, 0.025688011199235916, 0.04636986553668976, -0.00285266968421638, 0.004324451554566622, -0.0028998644556850195, -0.0210034791380167, 0.021143315359950066, 0.004516726825386286, -0.022723471745848656, 0.015256188809871674, -0.005827696528285742, 0.008460123091936111, 0.007362404838204384, 0.004327947273850441, -0.023170949891209602, 0.009606784209609032, -0.002828198252245784, -0.003642747178673744, -0.0013782659079879522, -0.001996169565245509, -0.003852502442896366, -0.007795898709446192, -0.00720858434215188, -0.0013083475641906261, 0.005827696528285742, 0.021255185827612877, 0.0070093171671032906, -0.004037786275148392, -0.01345229521393776, -0.03065221570432186, -0.004366402514278889, 0.012676200829446316, 0.008348253555595875, 0.006687692366540432, 0.007677037268877029, 0.003607788123190403, 0.025170614942908287, 0.02329680137336254, 0.023170949891209602, 0.008599960245192051, -0.006712163798511028, -0.015521879307925701, -0.0036742105148732662, -0.007086227182298899, 0.017675364390015602, -0.011865148320794106, 0.027953365817666054, -0.0009849751368165016, -0.012613274157047272, 0.002725068712607026, 0.009746621362864971, -0.0027460441924631596, 0.0125223807990551, -0.001047901576384902, 0.007040780037641525, -0.01008922141045332, 0.012067911215126514, 0.008439147844910622, -0.019870800897479057, 0.02277940697968006, 0.012864980846643448, -0.013599123805761337, 0.021772582083940506, 0.0015880210557952523, -0.005408185999840498, 0.019017796963453293, 0.0033420983236283064, 0.013102702796459198, -0.005600461736321449, -0.004009818658232689, -0.01784316822886467, 0.008159474469721317, 0.007467282470315695, -0.023632410913705826, 0.004607620649039745, 0.017507560551166534, 0.001971698133274913, 0.013242539949715137, 0.0034225042909383774, -0.0037406329065561295, -0.007397363893687725, 0.0006065418710932136, 0.004408353473991156, -0.006705171894282103, 0.024932891130447388, 0.0035553493071347475, 0.0007455046870745718, 0.032302290201187134, -0.0038490064907819033, 0.0027110849041491747, 0.006019971799105406, 0.0014499322278425097, -0.00901946984231472, 0.00015513139078393579, -0.012333600781857967, -0.012081895023584366, 0.015577813610434532, -0.007397363893687725, -0.00025389110669493675, -0.00016627463628537953, 0.008655894547700882, 0.04488759487867355, 0.03199464827775955, 0.008984510786831379, -0.013815870508551598, -0.0005392454331740737, 0.011033119633793831, -0.004932741168886423, 0.010354910977184772, 0.008530041202902794, -0.02654101513326168, 0.004415345378220081, 0.0077399639412760735, -0.002824702300131321, -0.012767095118761063, 0.019647063687443733, 0.00844613928347826, 0.0014280828181654215, 0.017339756712317467, -0.006970861926674843, 0.007334437221288681, -0.0013363149482756853, 0.03750421479344368, 0.01704609952867031, -0.01816479302942753, 0.014347250573337078, -0.013193597085773945, 0.017731299623847008, -0.00860695168375969, 0.01289294846355915, -0.016235046088695526, -0.03266586363315582, 0.007131674326956272, 0.0012795062502846122, 0.015465944074094296, 0.01732577383518219, -0.004240549169480801, 0.03314130753278732, -0.0048208716325461864, 0.002202428877353668, -0.010956209152936935, -0.0008739796467125416, -0.0009613776346668601, -0.0050516026094555855, 0.006890455726534128, -0.004873310681432486, 0.00808955542743206, -0.02112933248281479, -0.00882369838654995, 0.02270948700606823, 0.015423993580043316, 0.004565669689327478, 0.007376388181000948, -0.005624933168292046, 0.005355747416615486, 0.0006751493201591074, -0.04206289350986481, -0.0007625472499057651, -0.01012418046593666, -0.007886792533099651, 0.0039224205538630486, 0.007684029173105955, 0.00915930699557066, 0.015871470794081688, -0.02392606809735298, -0.0072435433976352215, 0.020542018115520477, 0.025660043582320213, -0.0018510889494791627, -0.007767931092530489, -0.0007970694568939507, -0.001317961374297738, 0.02117128297686577, -0.005177455488592386, -0.027114344760775566, -0.012375552207231522, 0.014018634334206581, 0.018066907301545143, -0.006047939416021109, -0.017591463401913643, -0.004474775865674019, 0.002812466584146023, -0.019549177959561348, 0.01307473611086607, -0.020318279042840004, -0.001585399149917066, -0.0042685167863965034, -0.0015102368779480457, -0.01985681802034378, 0.0053068045526742935, -0.026527030393481255, 0.007788906805217266, 0.01598333939909935, 0.008257360197603703, 0.0012707664864137769, 0.0007232181960716844, -0.012725143693387508, 0.015186270698904991, 0.0046285963617265224, -0.014312291517853737, -0.00018102304602507502, -0.0049152616411447525, 0.014766760170459747, 0.00975361280143261, -0.017591463401913643, -0.005093553569167852, -0.030875952914357185, -0.0018843001453205943, 0.001789910369552672, -0.018584303557872772, -0.013550180941820145, -0.016864310950040817, 0.016472768038511276, 0.0037755921948701143, -0.0030519370920956135, 0.025450287386775017, 0.02682068757712841, -0.0019245032453909516, -0.01704609952867031, 0.004345426801592112, 0.014612940140068531, -0.002139502204954624, 0.02124120108783245, -0.013389368541538715, -0.015479927882552147, -0.013046768493950367, -0.0179130882024765, -0.0006873850361444056, -0.03465154767036438, -0.005359243135899305, -0.008571992628276348, 0.003981851506978273, -0.02666686847805977, -1.4366040886670817e-05, -0.00758614344522357, -0.010340927168726921, -0.02394005097448826, 0.014445136301219463, -0.009061421267688274, -0.01866820640861988, -0.023045096546411514, -0.0031323430594056845, -0.009564833715558052, 0.012592298910021782, 0.01578756794333458, -0.0013415587600320578, 0.0014717817539349198, -0.008578984066843987, -0.005782249383628368, -0.057221196591854095, 0.00862093549221754, -0.019800882786512375, 0.005873143207281828, 0.005013147369027138, -0.01637488231062889, 0.00952987466007471, -0.0078028906136751175, 0.00024973967811092734, -0.002356249140575528, -0.01068352721631527, -0.011047103442251682, -0.005677371751517057, -0.00973263755440712, 0.00391542911529541, -0.013018800877034664, 0.034875284880399704, -0.005575990304350853, -0.015871470794081688, -0.004076241049915552, 0.016752442345023155, 0.0009639995987527072, -0.021744614467024803, -0.01775926724076271, -0.008571992628276348, -0.020877625793218613, -0.00765606202185154, 0.01045978907495737, 0.004013314843177795, -0.0022880788892507553, 0.011291817761957645, 0.005485096480697393, 0.01657065376639366, -0.0022269003093242645, 0.003259944263845682, 0.0055305431596934795, 0.023450622335076332, -0.014906597323715687, 0.025310451164841652, 0.0003310198080725968, -0.010655560530722141, -0.04340532794594765, -0.022737454622983932, 0.0019699502736330032, -0.002331777708604932, -0.025660043582320213, -0.004985180217772722, 0.0145570058375597, -0.025170614942908287, -0.0004955464974045753, -0.033448949456214905, -0.004104208666831255, 0.009760605171322823, 0.005135504528880119, -0.0009858490666374564, -0.018738124519586563, 0.0072015924379229546, -0.011907098814845085, 0.00023772247368469834, 0.021506892517209053, 0.002363241044804454, 0.0362456850707531, -0.0069149271585047245, 0.0011711327824741602, 0.005352251697331667, 0.012389536015689373, -0.0057298108004033566, -0.012816037982702255, -0.008229392580688, 0.024779072031378746, 0.013731968589127064, -0.018248695880174637, -0.011620434001088142, -0.011837180703878403, -0.019045764580368996, -0.0032564483117312193, 0.006428994238376617, 0.010774421505630016, -0.0099074337631464, 0.02389810048043728, -0.009222233667969704, 0.0031096197199076414, -0.034399840980768204, 0.020360229536890984, -0.014214405789971352, 0.01276010274887085, 0.03453967720270157, 0.022415829822421074, 0.012725143693387508, 0.015340090729296207, -0.014654891565442085, -0.012445470318198204, -0.011886123567819595, -0.008019637316465378, 0.04351719468832016, 0.02223404310643673, 0.006736635230481625, -0.0059220860712230206, -0.002328281756490469, -0.002270599128678441, 0.004971196409314871, 0.0026062072720378637, 0.018108859658241272, 0.006631757598370314, -0.0007878926699049771, 0.02282135747373104, -0.0032914073672145605, -0.003259944263845682, 0.011298809200525284, -0.005460625048726797, -0.0021832012571394444, 0.02883433736860752, -0.014179445803165436, 0.028568647801876068, -0.001385257812216878, 0.009613776579499245, 0.004894285928457975, -0.014822695404291153, -0.008334269747138023, 0.019157635048031807, -0.007844841107726097, -0.005072577856481075, 0.005810217000544071, 0.001461294014006853, -0.006470945663750172, 0.003155066631734371, 4.5392320316750556e-05, -0.02167469635605812, 0.007753947749733925, 0.011697343550622463, 0.020234378054738045, 0.009424996562302113, 0.00048768066335469484, 0.009341094642877579, -0.013144654221832752, -0.008886625058948994, -0.007079235278069973, -0.012473437935113907, 0.0002615384291857481, -0.01905974932014942, 0.011361735872924328, -0.01594138890504837, -0.02184250019490719, -0.00042890553595498204, 0.01570366695523262, 0.017353739589452744, -0.004079737234860659, 0.001102088368497789, -0.014752776362001896, -0.006005988456308842, 0.016402849927544594, 0.005894118919968605, 0.0048208716325461864, 0.017969021573662758, -0.004950220696628094, 0.007149153854697943, -0.009445971809327602, -0.0022880788892507553, 0.023702329024672508, -0.009201258420944214, 0.004146159626543522, 0.017060082405805588, 0.011284825392067432, 0.0025118174962699413, 0.00895654410123825, 0.0013773919781669974, 0.016165127977728844, 0.0026166951283812523, -0.004750953521579504, 0.010438812896609306, -0.01685032807290554, -0.022485749796032906, -0.02160477824509144, 0.014445136301219463, -0.023003144189715385, 0.004981684032827616, 0.019409339874982834, 0.015885453671216965, -0.014487086795270443, 0.003925916738808155, -0.022485749796032906, 0.02872246876358986, 0.009683694690465927, -0.0005921212141402066, -0.028862304985523224, -0.011683360673487186, -0.007767931092530489, -0.0017462114337831736, 0.024555332958698273, 0.0039084372110664845, -0.0013966194819658995, 0.0005160850123502314, 0.016011307016015053, -0.008795731700956821, 0.004887294489890337, -0.007152649573981762, 0.0027180768083781004, 0.0078728087246418, 0.013284491375088692, -0.010103205218911171, -0.005558510776609182, -0.012494413182139397, -0.006785578094422817, -0.0024349072482436895, -0.01176726259291172, 0.010564666241407394, -0.01816479302942753, -0.013829854317009449, -0.005789241287857294, 0.006180784199386835, -0.03137936443090439, -0.012466445565223694, -0.008837682195007801, 0.0012200756464153528, 0.0053068045526742935, -0.009369062259793282, -0.00040487106889486313, -0.0029697830323129892, -0.007061755750328302, -0.005520055536180735, -0.004107704386115074, 0.006124849431216717, 0.0008547521429136395, -0.008082563988864422, 0.004352418705821037, 0.007600127253681421, -0.029925063252449036, 0.01194905024021864, 0.00021980589372105896, -0.01626301370561123, 0.007767931092530489, -0.02175859734416008, 0.0039364043623209, 0.015773585066199303, -0.012459454126656055, -0.014256356284022331, -0.0032232371158897877, -0.02528248354792595, -0.005320788361132145, 0.024303626269102097, 0.029449619352817535, 0.020695839077234268, 0.004614612553268671, -0.001309221494011581, -0.007879801094532013, 0.003751120762899518, -0.006033955607563257, -0.010075237601995468, -0.0018196257296949625, 0.014738793484866619, -0.012508396990597248, -0.0041007124818861485, 0.014347250573337078, 0.009767596609890461, 0.01105409488081932, -0.0003181285865139216, -0.022597618401050568, -0.013165629468858242, -0.024107854813337326, 0.018402516841888428, -0.009557841345667839, -0.011026127263903618, 0.014654891565442085, -0.018332596868276596, 0.010557674802839756, 0.003548357402905822, 0.003419008571654558, 0.014459120109677315, 0.010760437697172165, -0.005226398352533579, -0.0025275491643697023, 0.010592633858323097, -0.013564164750277996, 0.004072745330631733, 0.0102640176191926, 0.0019751940853893757, -0.02658296562731266, 0.009816539473831654, -0.018262678757309914, 0.000523950788192451, 0.0036986819468438625, -0.028344908729195595, 0.03809152916073799, -0.015465944074094296, 0.020975511521100998, 0.01497651543468237, -0.008166465908288956, -0.007767931092530489, 0.009998327121138573, -0.012445470318198204, -0.017703332006931305, -0.0022793388925492764, -0.0338684618473053, -0.0281631201505661, -0.01994072087109089, 0.010676535777747631, -0.004803392104804516, -0.0004177622904535383, -0.005334771703928709, 0.007460290566086769, 0.006327612791210413, -0.0003871730004902929, -0.016109192743897438, 0.010180114768445492, -0.013004817068576813, -0.011061086319386959, -8.843581599649042e-05, -0.007313461974263191, -0.023800214752554893, 0.02417777292430401, -0.010075237601995468, 0.00022264632571022958, -0.021339086815714836, -0.0022356400731951, -0.009320119395852089, 0.013990666717290878, -0.011529539711773396, 0.031463269144296646, -0.017465610057115555, 0.005946557503193617, 0.00828532688319683, -0.008159474469721317, -0.004600629210472107, -0.01661260612308979, -0.0019279991975054145, -0.014431152492761612, -0.00094564602477476, 0.006932406686246395, -8.21540888864547e-05, 0.0010391618125140667, -0.01725585386157036, 0.010543690994381905, 0.001557431765832007, -0.004390873946249485, -0.0236184261739254, 0.009991335682570934, -0.02275143936276436, 0.002754783956333995, -0.004366402514278889, 0.022681521251797676, -0.011165964417159557, 0.012312625534832478, -0.0034504716750234365, 0.010767429135739803, 0.007194600533694029, -0.011956041678786278, 0.026373211294412613, -0.025254515931010246, 0.009823531843721867, 0.008019637316465378, -0.03691690042614937, -0.010194098576903343, -0.0202903114259243, 0.007998662069439888, 0.0031987656839191914, 0.0099074337631464, -0.005324284080415964, 0.00901946984231472, 0.009005486965179443, 0.007075739558786154, -0.00021314178593456745, 0.004373394418507814, -0.010669543407857418, -0.01871015690267086, -0.0029855144675821066, -0.0060584270395338535, -0.013655058108270168, 0.00975361280143261, 0.013424327597022057, 0.008152482099831104, 0.016794392839074135, 0.027799544855952263, 0.017311789095401764, 0.015340090729296207, -0.013606115244328976, -0.00933410320430994, 0.0033351064193993807, 0.010732470080256462, -0.010382878594100475, 0.00828532688319683, 0.009068412706255913, -0.01164840068668127, -0.007362404838204384, -9.094850975088775e-05, -0.003037953283637762, -0.030232705175876617, -0.002618442988023162, -0.0053068045526742935, 0.008767764084041119, -0.016458785161376, 0.006317125167697668, 0.008453131653368473, -0.02084965817630291, 0.03342098370194435, -0.012109862640500069, -0.00674362713471055, 0.008809715509414673, 0.001283002202399075, -0.001063633244484663, -0.02208022214472294, -0.02630329132080078, 0.028065234422683716, 0.009452964179217815, 0.018780075013637543, 0.014116520062088966, 0.015382042154669762, 0.000742008734960109, 0.01424237247556448, -0.010229057632386684, -0.000648055924102664, 0.020793724805116653, -0.005352251697331667, -0.010061253793537617, 0.03350488469004631, 0.007488257717341185, -0.004880302585661411, 0.019087715074419975, -0.012899939902126789, 0.011200923472642899, 0.014459120109677315, -0.024946875870227814, -0.012053927406668663, 0.006470945663750172, -0.012620266526937485, -0.004569165874272585, 0.019479257985949516, 3.419445420149714e-05, -0.004065753426402807, 0.005397698376327753, 0.018402516841888428, 0.00939702894538641, 0.006516392342746258, 0.00935507845133543, 0.0037056738510727882, 0.009739628992974758, 0.009599792771041393, 0.01176726259291172, -0.010536698624491692, 0.015927406027913094, -0.006117857526987791, 0.01883601024746895, 0.021534858271479607, -0.0006594176520593464, -0.005303308833390474, -0.00785183347761631, 0.01006824616342783, 0.01402562577277422, 0.002732060384005308, -0.0145570058375597, -0.020597953349351883, -0.01293489895761013, -0.010424829088151455, 0.002053852193057537, 0.02147892490029335, 0.00418461486697197, -0.009690686129033566, -0.0014665379421785474, -0.0016352159436792135, -0.021213235333561897, 0.007124682422727346, 0.01582952030003071, -0.01143165398389101, 0.007107202894985676, -0.0030449451878666878, 0.015815535560250282, 0.0019734459929168224, -0.00540119456127286, -0.00727850291877985, -0.006530376151204109, 0.011298809200525284, -0.006568831391632557, -0.005324284080415964, 0.007016308605670929, -0.017857152968645096, -0.0012926158960908651, -0.0021097869612276554, 0.001133551588281989, 0.017857152968645096, 0.019772915169596672, -0.0035046585835516453, -0.004097216762602329, -0.0179130882024765, -0.007949719205498695, -0.04231460019946098, 0.014389201067388058, 0.003114863531664014, -0.0391542874276638, -0.00806858018040657, -0.007998662069439888, 0.012249698862433434, 0.013340425677597523, -0.0089425602927804, -0.01517228689044714, 0.020304296165704727, 0.01855633594095707, -0.0014569241320714355, -0.014116520062088966, 0.015382042154669762, -0.002406940096989274, 0.010361903347074986, -0.00597452512010932, 0.0015565578360110521, 0.0009036950068548322, 0.010180114768445492, -0.01556382980197668, 0.03093188814818859, 0.0134872542694211, -0.029645390808582306, -0.007998662069439888, 0.00011077692033722997, 0.00978857185691595, 0.005422169808298349, -0.009501907043159008, -0.02500281110405922, 0.006858992390334606, 0.03501512110233307, -0.013368393294513226, 0.015423993580043316, 0.030959855765104294, 0.0010828608646988869, 0.002550272736698389, 0.015200254507362843, 0.002095803152769804, -0.01760544627904892, -0.001484017469920218, 0.013039777055382729, 0.01364806666970253, 0.00647793710231781, 0.006558343302458525, 0.018528368324041367, -0.011061086319386959, -0.0009369062026962638, -0.029813194647431374, -0.015144319273531437, 0.0016762929735705256, -0.0016037527238950133, 0.00552704744040966, 0.002620191080495715, 0.005278837401419878, -0.0075721596367657185, -0.013969691470265388, 0.0013162133982405066, 0.020863642916083336, -0.00783085823059082, -0.01886397786438465, -0.00466705160215497, -0.013815870508551598, -0.0013258272083476186, -0.022639568895101547, 0.004593637306243181, 0.005436153616756201, -0.005988508928567171, 0.010676535777747631, 0.011487589217722416, 0.0195771437138319, 0.004985180217772722, -0.006425498519092798, 0.012151813134551048, 0.015689682215452194, 0.018682189285755157, -0.022569650784134865, 0.0028072227723896503, -0.002754783956333995, 0.006673708558082581, 0.0001548036525491625, -0.00720858434215188, 0.01890592835843563, -0.006872976198792458, 0.006848504766821861, -0.014249364845454693, -0.037448279559612274, 0.01673845946788788, 0.011172955855727196, -0.006708668079227209, 0.02377224713563919, -0.009690686129033566, 0.005093553569167852, 0.01566171646118164, -0.014347250573337078, -0.003960875794291496, 0.009250201284885406, 0.004674043506383896, 0.004128680098801851, 0.0011396694462746382, 0.0021482419688254595, -0.0023038103245198727, 0.0333930142223835, -0.004768433049321175, 0.02939368411898613, -0.01362709142267704, 0.003419008571654558, -0.03579820692539215, -0.007257527206093073, -4.544694456853904e-05, 0.0025100696366280317, -0.019926736131310463, 0.005715826991945505, -0.010984176769852638, 0.007963703013956547, 0.03093188814818859, -0.004597133025527, -0.005747290328145027, 0.011487589217722416, 0.003448723815381527, -0.016123177483677864, 0.006149320863187313, 0.014487086795270443, 0.014403184875845909, -0.014214405789971352, -0.003333358559757471, -0.0033228707034140825, 0.005086561664938927, 0.005317292176187038, 0.001824869541451335, 0.008523049764335155, 0.029505552724003792, -0.0032949033193290234, -0.003282667603343725, -0.023632410913705826, 0.015102368779480457, 0.017675364390015602, 0.002866653259843588, 0.0033351064193993807, 0.010438812896609306, 0.01866820640861988, 0.0049152616411447525, -0.001541700097732246, 0.0028386858757585287, 0.018108859658241272, 0.015815535560250282, -0.023045096546411514, 0.007523216772824526, -0.0015329603338614106, -0.00856500118970871, 4.0967795939650387e-05, 0.03769998624920845, 0.004890790209174156, -0.010319951921701431, -0.019968686625361443, -0.010473771952092648, 0.012788070365786552, 0.012515388429164886, 0.008613944053649902, 0.002172713400796056, -0.009012478403747082, 0.0034574635792523623, -0.010347919538617134, -0.006879968103021383, -0.0010251781204715371, 0.018388532102108, -0.008334269747138023, 0.014738793484866619, -0.0072015924379229546, 0.0056668841280043125, 0.014668874442577362, 0.008453131653368473, -0.002545028692111373, -0.009012478403747082, 0.019772915169596672, -0.027324100956320763, -0.005111033096909523, -0.02903010882437229, -0.027715643867850304, 0.0076350863091647625, -0.007837849669158459, 0.006785578094422817, -0.017941053956747055, 0.011774254031479359, 0.007670045364648104, 0.007033788599073887, -0.008334269747138023, -0.016486752778291702, 0.004118192009627819, 0.003282667603343725, 0.018108859658241272, -0.005957045592367649, -0.02547825500369072, 0.004051769617944956, 0.0022793388925492764, 0.02238786406815052, 0.0015652975998818874, 0.021255185827612877, -0.0102640176191926, 0.011277833953499794, 0.0030641728080809116, -0.005680867936462164, 0.01771731674671173, 0.014752776362001896, -0.018486417829990387, 0.002328281756490469, -0.000598676095250994, -0.014738793484866619, -8.827194687910378e-05, -0.00913833174854517, 0.0053068045526742935, 0.004107704386115074, 0.022024286910891533, 0.006376555655151606, 0.012375552207231522, 0.010312960483133793, -0.0101311719045043, 0.01942332461476326, 0.01343131996691227, 0.01424237247556448, 0.005320788361132145, 0.013081727549433708, -0.00256600440479815, 0.004824367817491293, 0.020318279042840004, -8.974679076345637e-05, -0.021017463877797127, -0.011578482575714588, -0.0036287636030465364, 0.0013922496000304818, -0.028694501146674156, 0.020360229536890984, -0.01693423092365265, -0.0059955003671348095, -0.012941891327500343, 0.022024286910891533, 0.009459955617785454, 0.0013730220962315798, 0.0056668841280043125, -0.0019926736131310463, 0.020835675299167633, 0.006373059935867786, -0.019549177959561348, 0.00042803154792636633, 0.005460625048726797, 0.013403352349996567, 0.013445302844047546, 0.012983841821551323, -0.014305299147963524, 0.020304296165704727, 0.014878629706799984, 0.0017156221438199282, -0.004834855441004038, -0.008599960245192051, -0.02251371555030346, 0.015060417354106903, -0.02215014025568962, -0.00475794542580843, -0.0030973840039223433, 0.01736772432923317, -0.004971196409314871, 0.009739628992974758, 0.01585748791694641, 0.00899849459528923, 0.013333434239029884, -0.010697511024773121, 0.016948213800787926, 0.0030292135197669268, -0.011151980608701706, 0.01812284253537655, -0.03006490133702755, -0.01784316822886467, -5.4924159485381097e-05, 0.0027530358638614416, -0.015927406027913094, -0.006110865622758865, 0.004922253545373678, 0.024667201563715935, 0.00149363128002733, 0.0017103782156482339, -0.024275658652186394, -0.0014735297299921513, 0.014780743978917599, 0.004845343064516783, 0.025855815038084984, -0.009173290804028511, 0.012620266526937485, -0.001439444487914443, -0.01329148281365633, 0.021646728739142418, -0.0028771411161869764, 0.010767429135739803, -0.011061086319386959, 0.01066255196928978, -0.011802221648395061, -0.010271009057760239, 0.0011221899185329676, 0.003716161474585533, -0.03705673664808273, -0.007383380085229874, -0.04457995668053627, 0.010047269985079765, 0.009879466146230698, 0.020108524709939957, -0.0015268424758687615, 0.014487086795270443], "5daeebb9-1856-41ae-a528-c28d9f2e3099": [-0.014618088491261005, 0.004200940951704979, -0.0027006047312170267, 0.018418939784169197, -0.016937127336859703, -0.027591364458203316, 0.029739994555711746, 0.05989489704370499, -0.02081947773694992, 0.007742474786937237, 0.008564881049096584, -0.016033221036195755, 0.013973499648272991, -0.0015568301314488053, -0.009387287311255932, 0.061643436551094055, 0.004186122678220272, 4.6306668082252145e-05, 0.030584627762436867, -0.051448557525873184, 0.05862053483724594, -0.024435102939605713, -0.03304443880915642, 0.011647053062915802, 0.003061796771362424, 0.011847097426652908, -0.016477763652801514, 0.02708754874765873, -0.028184089809656143, 0.009631786495447159, 0.0005218761507421732, -0.0016837103758007288, 0.02517600916326046, -0.005738322157412767, 0.02179747447371483, -0.006794114131480455, 0.006816341541707516, 0.03254061937332153, -0.02778400108218193, -0.03989041596651077, -0.013884590938687325, 0.04670675843954086, -0.0036934197414666414, 0.0064384788274765015, -0.028421180322766304, -0.0021912315860390663, 0.02379792183637619, -0.001589244813658297, -0.03517824783921242, 0.0007108073332346976, 0.0010622749105095863, -0.028524907305836678, -0.02556128054857254, -0.011698916554450989, 0.0105208745226264, -0.058887261897325516, 0.03218498453497887, 0.04400985687971115, 0.006453297100961208, -0.06105070933699608, 0.008179609663784504, -0.004223167896270752, 0.011365508660674095, -0.007038613315671682, -0.006001343950629234, 0.03541534021496773, 0.007027499843388796, -0.023620104417204857, -0.02447955682873726, -7.426431693602353e-05, 0.003315557260066271, 0.023294106125831604, 0.0045713940635323524, 0.021693747490644455, 0.031651534140110016, -0.013269638642668724, 0.047418028116226196, 0.014832951128482819, -0.005782776512205601, -0.01821148581802845, 0.015396040864288807, 0.008987197652459145, 0.051537469029426575, 3.507730070850812e-05, 0.10603856295347214, 0.027946999296545982, -0.014484725892543793, -0.050470560789108276, -0.0002921950654126704, -0.042409498244524, -0.002231981372460723, 0.0031858987640589476, -0.024909282103180885, -0.006568137556314468, 0.019085755571722984, 0.028969451785087585, 0.007064545061439276, 0.007253476418554783, 0.006449592765420675, -0.010454192757606506, 0.005408618599176407, -0.006497751455754042, 0.03482261300086975, -0.0019189482554793358, 0.03909023478627205, -0.005971707869321108, 0.0017494658241048455, -0.004701052792370319, -0.018863484263420105, 0.03254061937332153, 0.02150111086666584, -0.025605734437704086, -0.02685045823454857, -0.008505608886480331, -0.055508729070425034, -0.014003136195242405, -0.02012302540242672, 0.003676749300211668, -0.030584627762436867, -0.033696435391902924, 0.0021282543893903494, 0.007071954198181629, -0.00719049945473671, 0.003845305647701025, -0.03105880692601204, 0.011669280007481575, 0.016196219250559807, 0.02280510775744915, 0.004045350477099419, -0.041579682379961014, -0.009876285679638386, 0.0006353274802677333, 0.029102813452482224, 0.02855454385280609, 0.01830039545893669, -0.0026709686499089003, 0.04243913292884827, 0.054382551461458206, 0.001325296820141375, 0.02725054696202278, -0.051922738552093506, -0.05254510045051575, 0.006812636740505695, 0.016270309686660767, 0.011676689609885216, 0.01014301273971796, -0.02113065868616104, 0.04300222173333168, -0.004712166264653206, 0.008016610518097878, -0.07675793021917343, -0.04922584071755409, -0.011409962549805641, -0.007149749435484409, 0.057968538254499435, -0.05779071897268295, 0.027976635843515396, 0.020463842898607254, -0.008135154843330383, 0.03565242886543274, 0.02716163918375969, -0.025694644078612328, 0.009372469037771225, 0.03366680070757866, 0.049848202615976334, 0.03159226104617119, 0.035089340060949326, 0.024227648973464966, -0.02945845015347004, 0.030273446813225746, 0.03443734347820282, -0.001185450702905655, 0.0007946224068291485, 0.009491014294326305, -0.020182298496365547, -0.0036989764776080847, 0.03405207023024559, 0.016892671585083008, 0.02150111086666584, -0.006842273287475109, -0.012639868073165417, 0.014669951982796192, -0.0318293496966362, -0.012639868073165417, 0.021708564832806587, 0.011180281639099121, 0.032392438501119614, 0.03357788920402527, 0.019767390564084053, -0.033251892775297165, -0.019722934812307358, -0.015099678188562393, -0.030940262600779533, -0.01720385253429413, -0.01868566684424877, -0.01059496495872736, 0.027028275653719902, 0.025694644078612328, 0.010461602360010147, 0.02027120627462864, -0.004415803588926792, -0.05073728784918785, -0.06804487109184265, 0.030584627762436867, 0.010380102321505547, 0.01752985268831253, -0.01032823882997036, -0.021219566464424133, 0.023279286921024323, -0.03203680366277695, 0.039356961846351624, -0.0466771200299263, 0.002913615433499217, 0.014329135417938232, 0.013380774296820164, 0.01921911910176277, -0.010624601505696774, 0.034318797290325165, 0.002717275172472, -0.015121905133128166, -0.0027728432323783636, 0.014788497239351273, 0.004508417099714279, -0.03766769543290138, -0.028584178537130356, -0.011936006136238575, 0.0099874222651124, 0.014499543234705925, -0.045254580676555634, -0.02348674088716507, 0.019159846007823944, -0.02960663102567196, -0.016625946387648582, -0.014825542457401752, -0.01935248263180256, 0.028421180322766304, 0.02142702043056488, 0.004260213579982519, -0.023990558460354805, 0.0059457761235535145, 0.007290521636605263, 0.008483381010591984, -0.0026302186306566, 0.012876957654953003, 0.01835966669023037, 0.01868566684424877, 0.014203180558979511, 0.04009786993265152, -0.007212726399302483, 0.0016818580916151404, 0.0005153932143002748, 0.00025653894408605993, -0.035770975053310394, 0.0105208745226264, -0.01698158122599125, 0.031118080019950867, 0.021308476105332375, -0.00516411941498518, 0.011543326079845428, 0.008053655736148357, -0.0050270515494048595, 0.03259989246726036, -0.014944087713956833, 0.056812722235918045, 0.012595413252711296, 0.00022586077102459967, 0.013640091754496098, 0.016566673293709755, -0.002596877980977297, 0.02059720642864704, -0.001646665041334927, 0.006682978011667728, -0.00837965402752161, 0.028717542067170143, 0.009565104730427265, -0.009098334237933159, 0.012187914922833443, -0.0033100005239248276, 0.014358771033585072, -0.0029154678341001272, -0.005575322546064854, 0.02899908646941185, 0.01752985268831253, 0.022434653714299202, 0.03751951456069946, 0.022019745782017708, -0.015544221736490726, 0.008275927975773811, -0.03245171159505844, -0.009372469037771225, -0.007875838316977024, 0.011936006136238575, -0.013336320407688618, 0.03754914924502373, 0.010002240538597107, -0.02172338403761387, 0.01530713215470314, 0.01966366358101368, -0.017796577885746956, 0.020760204643011093, -0.004641780164092779, 0.00250611687079072, 0.009557696059346199, -0.044276583939790726, 0.05147819593548775, -0.010876510292291641, 0.07124558836221695, 0.029369540512561798, -0.03366680070757866, 0.03328152745962143, 0.025813188403844833, -0.03473370522260666, -0.022079018875956535, -0.01659630984067917, -0.0015614607837051153, -0.003598954062908888, -0.0059680030681192875, -0.00522339204326272, -0.005671640392392874, -0.03603770211338997, -0.028598997741937637, 0.0036137723363935947, -0.022479107603430748, 0.038912419229745865, 0.04255767911672592, -0.025813188403844833, 0.03464479744434357, -0.023368196561932564, -0.027072729542851448, -0.026568913832306862, -0.04193531721830368, -0.052841462194919586, -0.04149077460169792, 0.009513241238892078, -0.0442173108458519, -0.004423212725669146, -0.03666006401181221, -0.06419215351343155, 0.001382717047818005, -0.030184537172317505, -0.003422988811507821, -0.03259989246726036, -0.001843931502662599, 0.000549660122487694, 0.0021375156939029694, -0.015092268586158752, 0.006790409795939922, -0.027028275653719902, -0.01278064027428627, -0.0096391960978508, 0.0009242810774594545, -0.01106173638254404, 0.020063752308487892, 0.017781760543584824, 0.016255492344498634, -0.027146819978952408, -0.011002464219927788, 0.0005366942496038973, 0.005612368229776621, -0.011202508583664894, 0.017411306500434875, -0.0396236889064312, 0.002280140295624733, 0.026198459789156914, 0.023160742595791817, 0.00038619761471636593, 0.005708686076104641, -0.0006399581325240433, -0.020626841112971306, -0.029902992770075798, 0.01029860321432352, 0.017411306500434875, 0.012106414884328842, 0.028791632503271103, -0.025991005823016167, -0.026079915463924408, 0.03840860351920128, -0.004901097621768713, 0.00253390078432858, 0.023916468024253845, -0.023397833108901978, -0.02815445326268673, -0.01707048900425434, 0.005860571749508381, 0.04063132032752037, 0.01973775401711464, 0.02041938714683056, -0.0019282095599919558, -0.0009955933783203363, 0.004808484110981226, -0.028747178614139557, -0.015662766993045807, -0.014292089268565178, -0.011521099135279655, -0.015825767070055008, -0.01782621443271637, -0.0027672864962369204, -0.020374933257699013, 0.004330599680542946, -0.022004928439855576, -0.017485396936535835, -0.0012326834257692099, -0.0025839121080935, -0.014566224999725819, 0.04688457399606705, -0.019026482477784157, -0.020700931549072266, -0.0018791245529428124, 0.004734393674880266, 0.012425004504621029, 0.017277942970395088, 0.004112032242119312, 0.005679049529135227, 0.018181849271059036, 0.051537469029426575, -0.006256957072764635, 0.006145820952951908, 0.01889312081038952, -0.053523097187280655, -0.0009946671780198812, 0.03636369854211807, 0.029443630948662758, 0.006457001436501741, -0.006445887964218855, 0.013417819514870644, -0.00520116463303566, -0.00983183179050684, 0.034022435545921326, 0.012439822778105736, 0.005534572992473841, 0.01751503348350525, 0.026450367644429207, -0.016166582703590393, -0.0010919112246483564, -0.027487637475132942, -0.006971932016313076, -0.007257180754095316, -0.01492186076939106, 0.028184089809656143, -0.04507676139473915, -0.021604837849736214, 0.00971328653395176, -0.01464772503823042, 0.038764238357543945, -0.043654222041368484, -0.009661423042416573, -0.05058910697698593, 0.016877854242920876, -0.011928597465157509, 0.001497557619586587, 0.001872641616500914, 0.03894205391407013, -0.0027858091052621603, -0.008868653327226639, 0.005482709500938654, 0.004319485742598772, 0.022819925099611282, -0.01797439530491829, 0.027532091364264488, -0.06051725521683693, -0.03360752761363983, -0.005675345193594694, 0.005634595174342394, -0.003523011226207018, -0.016107311472296715, -0.014210590161383152, 0.03704533353447914, 0.016048038378357887, 0.0036045110318809748, 0.03858641907572746, 0.02098247781395912, -0.007049726787954569, -0.010972827672958374, 0.027902545407414436, 0.016344401985406876, 0.006042093969881535, -0.023679377511143684, -0.005390095990151167, -0.01297327596694231, 0.00514930160716176, -0.0011845245026051998, -0.02356083132326603, -0.00023801626230124384, -0.006953408941626549, -0.004526939708739519, 0.0038712373934686184, -0.019945207983255386, -0.004134259186685085, 0.027339456602931023, 0.017885487526655197, 0.020908385515213013, -0.025887278839945793, 0.022449472919106483, 0.0036748971324414015, -0.00948360562324524, -0.04463221877813339, 0.0028524906374514103, -0.02181229181587696, 0.03449661284685135, -0.032333165407180786, 0.001756874960847199, -0.01009855791926384, -0.013847545720636845, 0.007527611684054136, -0.02648000419139862, 0.02065647765994072, -0.029591811820864677, 0.014855179004371166, -0.002720979740843177, -0.008142564445734024, -0.03467443212866783, 0.009646604768931866, -0.05002601817250252, 0.003384091192856431, -0.0016105459071695805, 0.008557472378015518, 0.011269190348684788, -0.008157382719218731, 0.022316109389066696, 0.005167824216187, -0.014936678111553192, -0.021441839635372162, -0.030851352959871292, -0.004815893247723579, -0.02570946142077446, -0.008416700176894665, -0.012573186308145523, -0.029828902333974838, 0.046173304319381714, -0.000984479789622128, -0.003830487607046962, 0.022923652082681656, -0.024286920204758644, -0.004137963987886906, 0.03399279713630676, 0.011795233935117722, 0.009209469892084599, -0.005438255146145821, -0.00010853125422727317, 0.004656598437577486, -0.023709014058113098, -0.0033007392194122076, -0.01606285758316517, -0.006542205810546875, -0.004430621862411499, 0.028376726433634758, -0.019396936520934105, 0.02848045341670513, 0.0006594069418497384, 0.04362458363175392, -0.018700484186410904, 0.013832727447152138, -0.011447007767856121, 0.00244869664311409, -0.007331271655857563, -0.01438099890947342, -0.01040232926607132, 0.0054567777551710606, 0.006027275696396828, -0.008638971485197544, -0.025057462975382805, 0.025516826659440994, -0.006012457422912121, 0.0040823956951498985, 0.00551234558224678, -0.02655409462749958, -0.012291641905903816, 0.006516274064779282, -0.028836088255047798, 0.012602822855114937, 0.03236280381679535, -0.012980684638023376, 0.03319261968135834, -0.021708564832806587, 0.0038045558612793684, 0.048307113349437714, -0.014966314658522606, 0.014795905910432339, -0.04092768579721451, -0.02335337921977043, -0.004323190543800592, -0.004545462317764759, 0.015158950351178646, 0.01362527348101139, 0.019308028742671013, 0.015218223445117474, -0.013410410843789577, -0.02081947773694992, -0.005130778532475233, -0.0022245722357183695, 0.009705877862870693, 0.0025783551391214132, -0.00013359473086893559, -0.029977083206176758, -0.011773006990551949, 0.020330479368567467, 0.009846650063991547, 0.0037434310652315617, 0.039149507880210876, 0.019115392118692398, 0.010839465074241161, 0.02311628870666027, 0.01569240354001522, 0.0008182388264685869, -0.05050019919872284, 0.023057015612721443, -0.01530713215470314, 0.037163879722356796, 0.002170856576412916, 0.01032823882997036, -0.016403673216700554, -0.014299498870968819, 0.04359494894742966, -0.019396936520934105, 0.018152212724089622, 0.008290745317935944, -0.008135154843330383, 0.02342746965587139, -0.004556576255708933, -0.004397280979901552, 0.050203837454319, -0.012884367257356644, 0.03449661284685135, -0.02487964555621147, -0.002017118502408266, 0.026983821764588356, -0.0066459327936172485, -0.008698244579136372, -0.00967624131590128, 0.021160295233130455, -0.04160931706428528, -0.017870668321847916, 0.012195323593914509, -0.013106639496982098, 0.005975412204861641, -0.004719575401395559, 0.021619657054543495, 0.008098109625279903, -0.011417372152209282, -0.01197305228561163, -0.015440494753420353, -0.006519978865981102, 0.0008747329120524228, 0.03458552435040474, -0.01646294631063938, -0.004000896122306585, 0.023916468024253845, 0.0150329964235425, 0.02639109641313553, -0.0037804762832820415, -0.041135139763355255, -0.019382119178771973, 0.004037941340357065, 0.03021417371928692, 0.011854507029056549, -0.022627290338277817, 0.0009011277579702437, 0.03728242218494415, 0.012980684638023376, 0.0071349311619997025, 0.04498785361647606, -0.023442286998033524, -0.016951944679021835, 0.012536141090095043, 0.021841928362846375, -0.005038165487349033, 0.0017837327904999256, 0.00823147315531969, 0.03704533353447914, 0.017544670030474663, 0.001963402610272169, -0.040364596992731094, 0.04638075828552246, 0.003710090182721615, 0.0002394054754404351, 0.003926805220544338, -0.012128641828894615, 0.013847545720636845, 0.020523114129900932, 5.177664206712507e-05, -0.020878750830888748, -0.03526715934276581, -0.023783104494214058, 0.02416837587952614, -0.03342970833182335, -0.011046918109059334, -0.008853835053741932, -0.00998001266270876, -0.013699364848434925, 0.0159146748483181, -0.016581490635871887, -0.0005487339803948998, -0.006445887964218855, 0.04383203759789467, 0.009402105584740639, -0.011743370443582535, 0.009016834199428558, -0.02502782829105854, -0.003982373513281345, -0.03162189573049545, -0.03900132700800896, -0.01204714272171259, -0.014054999686777592, -0.01052828412503004, 0.013803090900182724, 0.009883695282042027, -0.021975291892886162, -0.023738650605082512, 0.002204197458922863, -0.00030747626442462206, 0.009550287388265133, 0.0198118444532156, 0.001017820555716753, 0.04750693589448929, 0.009053879417479038, 0.028139635920524597, -0.023145925253629684, 0.04415803775191307, -0.00012780640099663287, 0.05473818629980087, 0.02181229181587696, 0.044187672436237335, -0.011824870482087135, -0.02372383140027523, -0.052900735288858414, -0.013291865587234497, 0.022390199825167656, 0.011461826041340828, 0.0002272499696118757, 0.01332150213420391, 0.03123662620782852, -0.0047788480296730995, 0.0069830454885959625, -0.004108327440917492, 0.0010937635088339448, 0.025976188480854034, 0.015121905133128166, -0.006490342319011688, 0.06271033734083176, -0.006742250639945269, 0.03015490248799324, -0.03559315577149391, 0.01622585579752922, -0.04006823152303696, -0.0205082967877388, -0.005101142451167107, 0.025220463052392006, 0.004382463172078133, 0.010632011108100414, -0.022760653868317604, 0.03138480708003044, -0.023279286921024323, 0.033014800399541855, 0.012862139381468296, -0.007031204178929329, -0.0018967210780829191, 0.029280630871653557, 0.001939323265105486, 0.016892671585083008, 0.026228096336126328, -0.006979340687394142, -0.003628590377047658, 0.01813739538192749, -0.01973775401711464, -0.015233040787279606, 0.009453969076275826, 0.012439822778105736, 0.05293037369847298, 0.015062632970511913, 0.017337216064333916, 0.04804039001464844, 0.005334528163075447, 0.028717542067170143, 0.049937110394239426, -0.024286920204758644, -0.008513017557561398, 0.01090614590793848, -0.009061289019882679, -0.034555885940790176, -0.008172200992703438, -0.03754914924502373, 0.003139592008665204, 0.02646518684923649, -0.013114048168063164, 0.018167031928896904, -0.023294106125831604, 0.024242466315627098, 0.0067385463044047356, -0.009179833345115185, -0.010335648432374, -0.023205196484923363, -0.001972663914784789, -0.012995502911508083, -0.0032618416007608175, -0.002294958336278796, 0.004619553219527006, 0.01258059497922659, -0.01557385828346014, 0.021249203011393547, 0.011898960918188095, 0.024746282026171684, -0.007131226826459169, 0.011046918109059334, 0.04682530090212822, 0.004475076217204332, -0.017159398645162582, 0.004501007962971926, 0.003111808095127344, -0.009935558773577213, 0.02778400108218193, 0.0035674655809998512, -0.012639868073165417, -0.006745955441147089, 0.018152212724089622, -0.05399727821350098, -0.0015484949108213186, 0.009387287311255932, 0.008542654104530811, 0.01615176536142826, -0.004830711521208286, -0.010424557141959667, -0.013803090900182724, 0.0006427365588024259, 0.0015253416495397687, -0.014084636233747005, -0.0038378965109586716, 0.011706325225532055, -0.0017892896430566907, 0.014180953614413738, -0.005575322546064854, 0.004234281834214926, -0.00470475759357214, -0.01289918553084135, 0.020671296864748, 0.042824406176805496, -0.0038193739019334316, -0.0005704981158487499, -0.01001705788075924, -0.04080913960933685, 0.015396040864288807, -0.009076106362044811, -0.03360752761363983, -0.01484036073088646, 0.016714854165911674, 0.010224511846899986, -0.0019319141283631325, 0.032244257628917694, 0.002337560523301363, 0.04910729452967644, 0.042409498244524, 0.008083291351795197, -0.04000896215438843, 0.039594054222106934, -0.010380102321505547, -0.01227682363241911, 0.027591364458203316, -0.00015258046914823353, 0.009379878640174866, -0.024687010794878006, 0.010343057103455067, 0.0012076778803020716, 0.027976635843515396, -0.016625946387648582, -0.0016281424323096871, 0.003930510021746159, 0.004563984926789999, -0.015055223368108273, -0.03319261968135834, -0.009394696913659573, 0.0007460003835149109, -0.027117183431982994, 0.020256388932466507, 0.01867084763944149, 0.005842049140483141, 0.014973724260926247, 0.013180729933083057, -0.028910178691148758, -0.009824422188103199, -0.012217551469802856, -0.02225683629512787, 0.012802867218852043, 0.008142564445734024, 0.004827007185667753, 0.024005375802516937, -0.016418492421507835, -0.007386839482933283, 0.016181401908397675, -0.0034285455476492643, -0.018922757357358932, 0.022019745782017708, 0.012825094163417816, 0.015366404317319393, -0.0017031591851264238, -0.01255095936357975, -0.025368643924593925, 0.006912659388035536, 0.004393576644361019, 0.0014142056461423635, -0.026687458157539368, -0.027872908860445023, 0.009002015925943851, -0.04006823152303696, -0.021219566464424133, -0.003293330082669854, 0.034941159188747406, -0.023679377511143684, 0.037223152816295624, 0.008009200915694237, 0.01561831310391426, -0.002198640489950776, 0.00799438264220953, 0.0029358426108956337, -0.01530713215470314, -0.033933524042367935, 0.02027120627462864, 0.02785809151828289, -0.004315781407058239, -0.01804848574101925, -0.009883695282042027, -0.005905026104301214, 0.04344676807522774, 0.01890793815255165, 0.03511897474527359, 0.007316453382372856, -0.021086204797029495, -0.007027499843388796, -0.028258180245757103, 0.007297930773347616, 0.01484036073088646, 0.04042386636137962, -0.0009071475942619145, 0.003226648550480604, -0.005371573381125927, 0.008861243724822998, 0.003495227312669158, 0.0049529611133039, -0.01585540361702442, -0.013729000464081764, -0.0020282319746911526, 0.013306683860719204, -0.021219566464424133, 0.004789961501955986, 0.017574306577444077, -0.01705567166209221, -0.0012493538670241833, -0.017159398645162582, 0.0020875046029686928, 0.008372245356440544, -0.005879094358533621, 0.01204714272171259, 0.015959130600094795, 0.03411134332418442, 0.015736857429146767, -0.011921188794076443, 0.015588676556944847, 0.024924101307988167, -0.00476032542064786, -0.0042861453257501125, 0.02570946142077446, 0.009705877862870693, 0.0013947568368166685, 0.011202508583664894, -0.004604734946042299, 0.020552750676870346, -0.021101022139191628, 0.02449437417089939, -0.05073728784918785, 0.017885487526655197, -0.01828557625412941, -0.010958009399473667, -0.0016716707032173872, 0.009165016002953053, 0.00256353709846735, 0.0015521994791924953, -0.00925392471253872, -0.010083739645779133, -0.030406810343265533, -0.01668521761894226, -0.014795905910432339, -0.01637403666973114, 0.047418028116226196, -0.021930838003754616, 0.01567758433520794, -0.01797439530491829, 0.018537484109401703, -0.016937127336859703, -0.02203456498682499, 0.03826041892170906, -0.011202508583664894, -0.004204645287245512, 0.014810724183917046, -0.022745834663510323, 0.002270878991112113, -0.011083964258432388, 0.01738166995346546, -0.00728681730106473, -0.014684770256280899, -0.029265813529491425, 0.0016522218938916922, -0.018996847793459892, -0.016551855951547623, -0.0032525802962481976, -0.023457104340195656, 0.03719351440668106, 0.010706101544201374, 0.023294106125831604, 0.02311628870666027, -0.007675793021917343, -0.028954632580280304, 0.00235237879678607, -0.021530747413635254, 0.015973947942256927, 0.03977186977863312, -0.03411134332418442, -0.011602598242461681, 0.018715303391218185, 0.017811397090554237, -0.04818857088685036, -0.0032099781092256308, 0.020908385515213013, -0.015351586043834686, 0.002131958957761526, 0.005693867802619934, -0.039297688752412796, -0.015396040864288807, 0.001012263703159988, -0.016181401908397675, -0.0075868843123316765, 0.0024746283888816833, 0.014758860692381859, -0.042824406176805496, -0.016107311472296715, 0.024657374247908592, -0.018996847793459892, 0.002202345058321953, -0.02098247781395912, -0.0018513405229896307, -0.04860347881913185, -0.010031876154243946, -0.028880542144179344, 0.018700484186410904, -0.02219756320118904, -0.01059496495872736, 0.016033221036195755, 0.005523459054529667, -0.0027672864962369204, -0.0029154678341001272, -0.012099006213247776, -0.014795905910432339, 0.012373141013085842, 0.003580431453883648, -0.0031062511261552572, 0.01683340035378933, 0.0049937111325562, -0.019411755725741386, 0.00255427579395473, 0.0031470011454075575, 0.005501232109963894, -0.000741369731258601, 0.011802643537521362, 0.005430846009403467, -0.033400073647499084, 0.008298154920339584, -0.028050726279616356, -0.012017506174743176, -0.010394920594990253, -0.029873356223106384, 0.007046022452414036, 0.030184537172317505, -0.024894464761018753, -0.011543326079845428, 0.010609783232212067, 0.010335648432374, 0.008861243724822998, -0.002394980750977993, -0.00010667898459360003, -0.0003405855386517942, 0.008216654881834984, -0.008824198506772518, -0.019797027111053467, -0.014966314658522606, 0.003254432464018464, -0.007609111722558737, 0.017633579671382904, -0.024361010640859604, -0.011861915700137615, 0.011424780823290348, 0.007271999027580023, 0.019945207983255386, -0.016122128814458847, -0.02631700411438942, -0.005523459054529667, 0.005782776512205601, 0.0033970570657402277, -0.02501300908625126, 0.000782582676038146, -0.02839154377579689, 0.04409876465797424, 0.015959130600094795, 0.0005172454984858632, -0.01652221940457821, -0.03660079091787338, 0.02885090559720993, 0.009624377824366093, 0.03719351440668106, 0.010313420556485653, -0.014292089268565178, 0.013595637865364552, 0.0064199562184512615, 0.030495718121528625, 0.020834295079112053, 0.0006973784184083343, 0.0021578907035291195, -0.009883695282042027, 0.009535469114780426, 0.0071349311619997025, 0.017307579517364502, -0.032866619527339935, 0.00925392471253872, 0.015736857429146767, -0.0032896255142986774, -0.015885038301348686, -0.015440494753420353, -0.009735513478517532, -0.027487637475132942, -0.004371349234133959, 0.014907042495906353, 0.03704533353447914, -0.0002519082627259195, 0.008713062852621078, 0.006508864928036928, -0.00763133866712451, 0.0685783252120018, -0.016107311472296715, 0.014403225854039192, -0.02151593007147312, -0.005112255923449993, -0.002880274783819914, 0.014069817960262299, 0.011936006136238575, -0.004356531426310539, -0.0002488983445800841, -1.403670830768533e-05, 0.011824870482087135, 0.0033785344567149878, -0.006975636351853609, -0.019619207829236984, -0.021530747413635254, -0.007609111722558737, -0.053078554570674896, 0.013002912513911724, -0.0160776749253273, -0.009542877785861492, 0.010461602360010147, -0.003178489627316594, -0.023131106048822403, 0.014032772742211819, -0.005901321768760681, 0.02096765860915184, -0.01048382930457592, -0.00853524450212717, -0.023205196484923363, 0.003471147734671831, 0.008698244579136372, -0.009031652472913265, 0.007949928753077984, 0.030243810266256332, -0.015292313881218433, 0.002787661273032427, 0.0014086487935855985, 0.004152781795710325, 0.006434774491935968, 0.00823147315531969, 0.03437807038426399, -0.019782207906246185, 0.024612920358777046, -0.02317555993795395, -0.008253700099885464, -0.0027061617001891136, 0.004352826625108719, 0.004263917915523052, 0.000364896550308913, 0.00493443850427866, 0.009231696836650372, -0.03360752761363983, 0.008475972339510918, -0.002007857197895646, 0.0038416010793298483, -0.0028135930188000202, 0.035533882677555084, -0.01561831310391426, -0.026035459712147713, -0.018922757357358932, 0.0004697811382357031, 0.006053207442164421, -0.01896721124649048, -0.004108327440917492, -0.015633130446076393, 0.007868428714573383, 0.012195323593914509, -0.002874717814847827, -0.013632683083415031, 0.006053207442164421, 0.005323414225131273, -0.030584627762436867, -0.015218223445117474, -0.00030770781449973583, -0.003167375922203064, -0.018922757357358932, -0.02791736274957657, -0.027057912200689316, -0.0013993874890729785, -0.01721867173910141, -0.000516319356393069, -6.946000212337822e-05, 0.011980460956692696, 0.00872788019478321, -0.016803763806819916, -0.0016503696097061038, 0.013462274335324764, 0.00014656060375273228, 0.004445440135896206, 0.014677361585199833, -0.03061426430940628, -0.0029895585030317307, -0.005790185648947954, -0.008979788981378078, 0.0025950255803763866, 0.00826851837337017, -0.030584627762436867, 0.004697348456829786, 0.004086100496351719, 0.00483812065795064, 0.01844857633113861, 0.011046918109059334, -0.02364974096417427, -0.010105966590344906, -0.009068697690963745, -0.004119440913200378, 0.021026931703090668, -0.0037934421561658382, -0.0017448351718485355, 0.024701828137040138, -0.025368643924593925, 0.020300842821598053, -0.00046885499614290893, -0.02218274585902691, 0.017174215987324715, -0.00011055716458940879, 0.03212571516633034, 0.014255044050514698, 0.004923325031995773, -0.0060569122433662415, 0.002228276804089546, -0.0039008737076073885, 0.008646381087601185, -0.013254820369184017, 0.06205834448337555, -0.016285128891468048, -0.006542205810546875, -0.02302737906575203, 0.011017282493412495, 0.018181849271059036, 0.007935110479593277, -0.09785895049571991, -0.01813739538192749, 0.009720695205032825, 0.01935248263180256, 0.013477092608809471, -0.007138635963201523, 0.0021541861351579428, 0.006864500232040882, 0.01055791974067688, 0.03769733011722565, 0.0013910522684454918, 0.03846787288784981, -0.014892224222421646, -0.0013734557433053851, -0.010469011031091213, -0.009928149171173573, -0.011172872968018055, 0.009150197729468346, 0.015944311395287514, -0.027872908860445023, -0.01301032118499279, 0.000899738515727222, 0.006090252660214901, -0.002068981993943453, -0.009283560328185558, -0.008431517519056797, 0.00849819928407669, 0.014195771887898445, -0.009535469114780426, 0.0012512061512097716, -0.028435997664928436, 0.007616520393639803, 0.0029488084837794304, -0.006608887575566769, 0.0150329964235425, 0.02265692688524723, -0.031177353113889694, 0.017781760543584824, -0.01255095936357975, -0.0027450593188405037, -0.008409290574491024, 0.00127621169667691, -0.028910178691148758, 0.001535529037937522, 0.009468787349760532, -0.04140186309814453, -0.009416923858225346, 0.004563984926789999, 0.0070237950421869755, -0.006219911389052868, -0.028732361271977425, -0.006434774491935968, -0.021101022139191628, -0.005523459054529667, -0.012951049022376537, -0.043268948793411255, 0.00940951518714428, 0.013647501356899738, 0.012765822000801563, -0.02517600916326046, -0.014558816328644753, 0.0160776749253273, -0.009105742909014225, -0.010743146762251854, 0.022375380620360374, 0.01692230813205242, -0.0027839569374918938, 0.03414097800850868, 0.009817013517022133, -0.0205082967877388, -0.010987645946443081, 0.0030969898216426373, -0.0192783921957016, 0.005367869045585394, 0.010009649209678173, -0.02954735793173313, -0.0019226528238505125, -0.02287919819355011, -0.00028154454776085913, 0.011684098280966282, -1.3906471394875553e-05, 0.017159398645162582, 0.016092492267489433, -0.017277942970395088, -0.001492926967330277, -0.00510484678670764, -0.029413994401693344, -0.022464290261268616, -0.0066644554026424885, 0.005893912632018328, 0.021945655345916748, 0.014299498870968819, -0.00811292789876461, -0.0011317349271848798, -0.011128418147563934, 0.021990109235048294, -0.00012479646829888225, -0.04949256405234337, -0.006616296712309122, -0.0010289341444149613, 0.01790030486881733, 0.019263572990894318, -0.01683340035378933, -0.040216412395238876, 0.03171080723404884, -0.003952736966311932, 0.009453969076275826, 0.01266209501773119, -0.0053641642443835735, 0.008490790612995625, 0.012536141090095043, -0.02151593007147312, -0.005112255923449993, 0.02533900737762451, 0.03574133664369583, -0.018493030220270157, 0.006631114520132542, -0.014455089345574379, 0.004834415856748819, -0.014944087713956833, 0.003091433085501194, 0.03390388935804367, -0.00800179224461317, -0.004652894102036953, -0.005197460297495127, 0.002880274783819914, -0.010306011885404587, 0.010187466628849506, 0.02172338403761387, -0.00021532599930651486, 0.023383013904094696, -0.0006353274802677333, -0.04217240959405899, -0.0023357083555310965, -0.0013595637865364552, -0.009468787349760532, 0.0061754570342600346, -0.0020282319746911526, 0.005093733314424753, 0.01659630984067917, -0.017040854319930077, 0.0036119199357926846, 0.0004582044784910977, -0.005697572138160467, 0.02747282013297081, 0.01032823882997036, 0.00796474702656269, -0.01936729997396469, 0.019767390564084053, 0.00753872562199831, 0.008579699322581291, -0.00010227985330857337, 0.012691731564700603, -0.010394920594990253, 0.020330479368567467, -0.015514586120843887, -0.040512777864933014, -0.011743370443582535, -0.003734169527888298, 0.0024801851250231266, 0.0033803866244852543, -0.006097661796957254, -0.027502454817295074, 0.004315781407058239, -0.006179161835461855, 0.018167031928896904, -0.00940951518714428, 0.011046918109059334, 0.014744042418897152, -0.025813188403844833, 0.012632458470761776, -0.049551837146282196, -0.0011956380913034081, -0.013454864732921124, 0.012350914068520069, -0.008935334160923958, 0.02976962924003601, 0.005045574624091387, 0.03372607007622719, 0.002202345058321953, 0.006275479681789875, 0.0025320486165583134, -0.014581043273210526, -0.01312145683914423, 0.0010715363314375281, 0.0007529464201070368, -0.02931026741862297, -0.007309044245630503, 0.008209246210753918, -0.010995054617524147, 0.012061960995197296, -7.901075150584802e-05, 0.025442734360694885, -0.03808260336518288, -0.02335337921977043, -0.010535692796111107, -0.012195323593914509, -0.02181229181587696, 0.019945207983255386, -0.023694194853305817, 0.004160190932452679, 0.004841824993491173, -0.016092492267489433, 0.0054975273087620735, 0.01102469116449356, -0.0016670400509610772, 0.0016216594958677888, 0.017781760543584824, -0.02227165549993515, 0.02381274104118347, -0.014047590084373951, -0.01484036073088646, -0.009165016002953053, -0.014351362362504005, -0.0037749195471405983, -0.001939323265105486, -0.038378965109586716, 0.015233040787279606, -0.003937919158488512, 0.011276599951088428, -0.0150329964235425, 0.0073423851281404495, 0.009698468260467052, -0.01644812896847725, -0.0263318233191967, 0.02670227736234665, 0.018700484186410904, 0.010787601582705975, 0.028969451785087585, -0.004071282222867012, -0.02234574593603611, -0.018181849271059036, 0.03357788920402527, 0.003356307279318571, -0.0071164085529744625, 0.0026098438538610935, 0.0019208005396649241, -0.006820045877248049, 0.02745800092816353, 0.026139186695218086, -0.029888175427913666, -0.00749797560274601, -0.01020969357341528, 0.0034544772934168577, 0.003826783038675785, -0.01297327596694231, -0.02455364726483822, 0.008335200138390064, -0.014143908396363258, 0.00792029220610857, -0.018493030220270157, -0.005749435629695654, 0.005756844766438007, 0.0159146748483181, -0.0044417353346943855, -0.0036248858086764812, 0.009216878563165665, 0.0067792958579957485, 0.00869083497673273, 0.027043092995882034, -0.008994607254862785, -0.011306235566735268, 0.028584178537130356, 0.002280140295624733, 0.02021193318068981, -0.02754691056907177, 0.012906594201922417, 0.014210590161383152, -0.007646156940609217, -0.01844857633113861, -0.007312749046832323, 0.017692850902676582, -0.019233936443924904, 0.0013549331342801452, -0.03550424799323082, -0.03304443880915642, -0.0023449696600437164, 0.012476867996156216, -0.029191723093390465, -0.009616968221962452, 0.016314765438437462, 0.009002015925943851, -0.029132449999451637, -0.011239553801715374, 0.016403673216700554, 0.0099059222266078, 0.01744094304740429, -0.014640315435826778, -0.01584058441221714, 0.00823147315531969, -0.009239106439054012, -0.013580819591879845, -0.00547159556299448, -0.001565165352076292, -0.01549976784735918, 0.00021903053857386112, 0.005523459054529667, 0.008238881826400757, 0.017870668321847916, 0.0012743595289066434, 0.01592949405312538, -0.020300842821598053, -0.02105656825006008, -0.004178713541477919, 0.012639868073165417, -0.0006728358566761017, 0.0036989764776080847, 0.01692230813205242, 0.00753872562199831, -0.011987869627773762, -0.008994607254862785, -0.016092492267489433, -0.003384091192856431, -0.007868428714573383, -0.004352826625108719, 0.011106191202998161, 0.009453969076275826, 0.006364388391375542, 0.0515967421233654, -0.0004190753388684243, 0.02525009959936142, -0.015440494753420353, -0.002924729138612747, -0.014684770256280899, -0.011535916477441788, 0.009542877785861492, 0.013151093386113644, 0.010387511923909187, 0.011758188717067242, -0.00837965402752161, -0.0008909402531571686, -0.003826783038675785, -0.028406361117959023, -0.007157158572226763, 0.016729673370718956, 0.028806451708078384, -0.006323638372123241, 0.02196047455072403, -0.005612368229776621, 0.001416057930327952, 0.008705653250217438, 0.004634371027350426, -0.014603270217776299, 0.01606285758316517, 0.009224288165569305, 0.008098109625279903, 0.014047590084373951, 0.01029860321432352, 0.0031951600685715675, -0.0038675328250974417, 0.00507150636985898, 0.0016781536396592855, -0.018567120656371117, 0.005716095212846994, 0.016892671585083008, 0.01576649397611618, 0.001963402610272169, 1.423206504114205e-05, -0.015010769478976727, 0.0033322277013212442, 0.02525009959936142, 0.02899908646941185, -0.008883470669388771, -0.01806330494582653, 0.018863484263420105, -0.00255427579395473, -0.0017068637534976006, -0.01246945932507515, -0.028272999450564384, -0.024524010717868805, -0.005860571749508381, -0.00010245350131299347, 0.01975257135927677, -0.011698916554450989, 0.024583283811807632, -0.007446112111210823, 0.01752985268831253, -0.003395204897969961, -0.009142788127064705, -0.013143684715032578, -0.0037434310652315617, -0.021071385592222214, -0.004804779775440693, -0.016329582780599594, 0.014521771110594273, -0.02356083132326603, 0.00872788019478321, -0.016240675002336502, -0.006786704994738102, 0.023131106048822403, 0.008438927121460438, -0.022671744227409363, -0.0038008512929081917, 0.026139186695218086, 0.010054103098809719, 0.02409428544342518, 0.010935782454907894, 0.00730533991008997, 0.014884814620018005, -0.0009520650492049754, -0.013425229117274284, -0.0005065949517302215, -0.0053011872805655, 0.008831607177853584, 0.014973724260926247, -0.009090924635529518, 0.009342833422124386, -0.041520409286022186, 0.008009200915694237, 0.01644812896847725, 0.010157830081880093, -0.005704981274902821, 0.001978220883756876, -0.0043268948793411255, 0.005942071322351694, -0.0009303009137511253, 0.020093388855457306, -0.005616072565317154, 0.025516826659440994, 0.01324000209569931, -0.00792029220610857, 0.012425004504621029, 0.005716095212846994, -0.006353274919092655, 0.015870220959186554, 0.005015938077121973, -0.026835639029741287, 0.005801299121230841, -0.004689939320087433, -0.01014301273971796, 0.011898960918188095, 0.013958681374788284, -0.009594741277396679, 0.00837965402752161, 0.00121879146900028, -0.01255095936357975, -0.010683874599635601, -0.018848665058612823, -0.003811964765191078, 0.0013891999842599034, -0.002054163720458746, -0.011765598319470882, 0.008927925489842892, 0.014351362362504005, -0.011580371297895908, -0.012521322816610336, -0.009290969930589199, -0.014047590084373951, 0.014151317067444324, 0.010002240538597107, 0.009305788204073906, -0.019322846084833145, 0.010572738014161587, 0.001939323265105486, 0.002826558891683817, -0.0033822390250861645, 0.022375380620360374, -0.004538053181022406, 0.011476644314825535, 0.02554646134376526, 0.0034063183702528477, 0.013929045759141445, 0.023086652159690857, 0.013995726592838764, -0.016848217695951462, -0.03381498157978058, -0.0029599221888929605, -0.02853972464799881, 0.020997295156121254, -0.025427917018532753, -0.0012150869006291032, -0.023901648819446564, 0.006497751455754042, -0.008520427159965038, -0.021441839635372162, 0.026880094781517982, -0.009268742054700851, 0.008520427159965038, -0.004841824993491173, 0.01254354976117611, -0.009083515964448452, 0.006897841114550829, 0.0043046679347753525, -0.004260213579982519, 0.012099006213247776, 0.02624291367828846, 0.02999190241098404, 0.0028876836877316236, 0.003552647540345788, -0.006105070933699608, 0.013803090900182724, -0.01549976784735918, -0.001497557619586587, -0.023279286921024323, 0.01526267733424902, 0.006075434852391481, -0.021975291892886162, 0.024316556751728058, -0.006790409795939922, 0.00792029220610857, 0.022864380851387978, 0.005775367375463247, 0.008505608886480331, -0.020404569804668427, 0.011898960918188095, -0.006471819709986448, -0.0023597877006977797, 0.01752985268831253, -0.011239553801715374, 0.029043542221188545, 0.0002854806079994887, 0.015973947942256927, -0.026494823396205902, -0.022449472919106483, 0.0033692731522023678, 0.01518858689814806, 0.008587107993662357, -0.0012901037698611617, 0.007861020043492317, 0.017722487449645996, -0.007935110479593277, 0.013380774296820164, 0.0072275446727871895, -0.011676689609885216, 0.0016123981913551688, -0.013892000541090965, -0.009802195243537426, -0.007979565300047398, -0.03580060973763466, -0.017085308209061623, 0.00818701833486557, 0.010617192834615707, -0.01499595120549202, 0.0019708117470145226, 0.010343057103455067, -0.01090614590793848, 0.005238210316747427, -0.009402105584740639, -0.005753140430897474, 0.008431517519056797, -0.003648965386673808, 0.01204714272171259, -0.014054999686777592, 0.0012975127901881933, -0.0020300843752920628, 0.02003411576151848, 0.019471026957035065, -0.002841377165168524, 0.016937127336859703, 0.0032803642097860575, -0.00253575318492949, 0.030436446890234947, -0.0007409066893160343, 0.011083964258432388, 0.01269914023578167, 0.006360683590173721, 0.013810500502586365, -0.0067792958579957485, -0.01545531302690506, 0.000672372814733535, 0.00784620177000761, 0.003676749300211668, 0.017026035115122795, -0.019026482477784157, 0.0008200910524465144, -0.006938591133803129, -0.006705205421894789, -2.412287904007826e-05, -0.016359219327569008, -0.013062184676527977, -0.0210417490452528, 0.015470131300389767, -0.00026973633794113994, 0.015277495607733727, -0.01653703674674034, -0.0024987077340483665, 0.00516411941498518, -0.024775918573141098, 0.005612368229776621, 0.013558591715991497, 0.0029691834934055805, 0.003986077848821878, 0.012150869704782963, 0.02225683629512787, -0.025842824950814247, 0.009039061143994331, 0.008594517596065998, 0.0192783921957016, 0.014929269440472126, -0.0013614159543067217, 0.017174215987324715, 0.012328687123954296, 0.0001834901631809771, -0.004149077460169792, 0.012684321962296963, -0.014158726669847965, -0.0004591305914800614, 0.024612920358777046, 0.0012039733119308949, -0.00524191465228796, 0.0032377622555941343, -0.00971328653395176, -0.0033248187974095345, -0.015425676479935646, -0.010817237198352814, -0.0016262901481240988, -0.003619329072535038, -0.008401881903409958, 0.006401433609426022, -0.001065979478880763, 0.025768734514713287, -0.0023838672786951065, 0.0062125022523105145, 0.01331409253180027, 0.015588676556944847, 0.0009807752212509513, 0.021293656900525093, 0.02333856001496315, -0.0006959892343729734, -0.00759429344907403, -0.010780191980302334, -0.008083291351795197, 0.010572738014161587, 0.008601926267147064, 0.018789393827319145, -0.005482709500938654, -0.0012363879941403866, -0.004356531426310539, -0.00753502082079649, 0.00019228844030294567, 0.0019356186967343092, -0.0062125022523105145, 0.0017494658241048455, -0.0011169167701154947, 0.005508641246706247, 0.016255492344498634, -0.0032951824832707644, 0.012795458547770977, 0.0008325938833877444, 0.012639868073165417, -0.013543774373829365, 0.018167031928896904, 0.006068025715649128, 0.03171080723404884, 0.00925392471253872, 0.003215534845367074, -0.011083964258432388, -0.030821718275547028, 0.00765356607735157, -0.009839240461587906, -0.011091372929513454, -0.001387347700074315, 0.001809664536267519, -0.008735289797186852, -0.021945655345916748, -0.002204197458922863, -0.011269190348684788, 0.024820374324917793, -0.014869997277855873, -0.029043542221188545, -0.004197236150503159, -0.023738650605082512, 0.01002446748316288, 0.0026913434267044067, 0.009335423819720745, -0.018018851056694984, 0.004189827013760805, 0.012869548983871937, 0.0009404884185642004, -0.021738201379776, 0.01438099890947342, 0.006897841114550829, -0.003915691748261452, -0.011558144353330135, -0.0028247067239135504, 0.004323190543800592, -0.0037508399691432714, 0.018804211169481277, -0.01942657306790352, 0.007675793021917343, -0.003585988190025091, -0.014758860692381859, -0.004386167507618666, 0.0006691313465125859, -0.01881903037428856, 0.008431517519056797, -0.02105656825006008, 0.001028008060529828, -0.007223839871585369, -0.030273446813225746, -0.019797027111053467, -0.0009233549353666604, -0.01646294631063938, 0.007186794653534889, -0.013077002950012684, -0.01557385828346014, -0.0008057359955273569, -0.005345641635358334, 0.0406905934214592, -0.003009933279827237, -0.014321725815534592, -0.012454641051590443, 0.015218223445117474, -0.005160415079444647, 0.026806004345417023, 0.02157520316541195, 0.000993741094134748, 0.004501007962971926, -0.0004440809425432235, 0.00740165775641799, -0.017796577885746956, -0.01758912391960621, 0.013247411698102951, -0.0013790125958621502, -0.011335872113704681, 0.018715303391218185, -0.0020189706701785326, -0.013714182190597057, 0.007201612927019596, 0.009579923003911972, 0.027739545330405235, 0.017781760543584824, 0.0029580697882920504, -0.021012112498283386, 0.022671744227409363, 0.020330479368567467, 0.008564881049096584, -0.009691059589385986, -0.002798774978145957, 0.012284232303500175, -0.010706101544201374, -0.006271774880588055, 0.003061796771362424, -0.006301411427557468, 0.03580060973763466, -0.0030284561216831207, 0.008127746172249317, 0.018922757357358932, 0.02639109641313553, -0.011172872968018055, 0.03366680070757866, -0.018018851056694984, 0.01775212399661541, -0.004063873086124659, 0.021101022139191628, 0.012299050576984882, -0.015810947865247726, -0.0025709462352097034, -0.011002464219927788, -0.01296586636453867, -0.0014456941280514002, -0.0007487788097932935, -0.021634474396705627, -0.0059457761235535145, 0.010883918963372707, -0.021071385592222214, 0.008446335792541504, 0.012602822855114937, -0.03242207691073418, -0.0021912315860390663, -0.0027061617001891136, -0.006649637594819069, 0.011854507029056549, -0.012328687123954296, 0.01867084763944149, 0.025739097967743874, -0.008327791467308998, -0.0014957053354009986, -0.007409066893160343, 0.021945655345916748, 0.029428813606500626, -0.009661423042416573, -0.01480331551283598, -0.01576649397611618, -0.004071282222867012, 0.005990230478346348, 0.01585540361702442, -0.033785343170166016, 0.006064320914447308, -0.006090252660214901, 0.006701501086354256, 0.01592949405312538, -0.004886279348284006, -0.01896721124649048, 0.024153556674718857, 0.01736685261130333, -0.006349570117890835, -0.0003422062727622688, -0.01472922507673502, 0.0018781984690576792, -0.008631562814116478, -0.012980684638023376, 0.0016846365761011839, 0.0071127042174339294, 0.02770990878343582, 0.018641211092472076, -0.003930510021746159, -0.012499095872044563, -0.014869997277855873, 0.000496870547067374, 0.013077002950012684, 0.005686458665877581, 0.022227199748158455, -0.0019133915193378925, 0.02133811265230179, 0.025502007454633713, 0.023071832954883575, 0.014484725892543793, 0.004719575401395559, -0.017692850902676582, 0.0009585479856468737, -0.0073423851281404495, 0.0027469114866107702, 0.004886279348284006, -0.00769061129540205, 0.010972827672958374, -0.004919620230793953, -0.0037119423504918814, -0.0026913434267044067, 0.0003354918153490871, -0.012076778337359428, 0.012024914845824242, 0.0010104114189743996, 0.0031062511261552572, -0.00986887700855732, 0.013077002950012684, 0.020760204643011093, 0.011298826895654202, 0.013580819591879845, 0.008913107216358185, -0.009194651618599892, 0.0052493237890303135, -0.0065347966738045216, 0.008920515887439251, 0.014618088491261005, 0.018196668475866318, 0.0004568152653519064, -0.01312886644154787, -0.019337663426995277, -0.0147662702947855, 0.007242362946271896, 0.025516826659440994, -0.007823974825441837, -0.0027913658414036036, 0.021619657054543495, -0.0019319141283631325, 0.022242018952965736, 0.010913555510342121, 0.004045350477099419, -0.009313196875154972, -0.000885846558958292, 0.00994296744465828, 0.00747945299372077, 0.0026709686499089003, 0.010550511069595814, 0.00776470173150301, 0.04226131737232208, -0.003621181473135948, 0.003778624115511775, 0.0024505488108843565, 0.004097213968634605, -0.022301290184259415, -0.0032914779148995876, -0.02279028855264187, -0.00807588268071413, 0.018581939861178398, -0.00944656040519476, 0.0018587496597319841, -0.021323293447494507, 0.002889536088332534, 0.04009786993265152, 0.011876733973622322, 0.03298516571521759, -0.027650637552142143, -0.0011456270003691316, -0.010735738091170788, -0.007149749435484409, 0.011765598319470882, 0.0017772498540580273, -0.016285128891468048, 0.0023986853193491697, 0.01231386885046959, -0.007942519150674343, -0.013425229117274284, 0.011565553024411201, -0.000540398817975074, 0.002020822837948799, 0.010187466628849506, -0.01929320953786373, -0.0008242586627602577, -0.014062408357858658, 0.03200716897845268, 0.0147662702947855, -0.009646604768931866, -0.007179385516792536, -0.017307579517364502, 0.015084859915077686, -0.0008538949186913669, 0.0019337664125487208, -0.016107311472296715, -0.030584627762436867, -0.0011585927568376064, -0.010120784863829613, 0.016655582934617996, 0.020493479445576668, 0.006594069302082062, 0.01745576038956642, -0.02287919819355011, 0.004923325031995773, -0.022612471133470535, -0.014440271072089672, 0.009009425528347492, 0.00769061129540205, -0.004545462317764759, 0.0032562848646193743, 0.0017272386467084289, -0.030065992847085, -0.01935248263180256, -0.0032247963827103376, 0.020093388855457306, 0.011232145130634308, 0.012788048945367336, -0.0007246993482112885, -0.00260243471711874, 0.00030840240651741624, -0.029532540589571, 0.000873343728017062, -0.01262504979968071, 0.0027246843092143536, -0.0031840463634580374, 0.021323293447494507, -0.002406094456091523, -0.00014030920283403248, -0.016848217695951462, 0.009216878563165665, -0.0009715138585306704, 0.033400073647499084, 0.0012373141944408417, -0.012847322039306164, 0.004149077460169792, -0.009453969076275826, 0.021441839635372162, -0.008868653327226639, -0.0044380309991538525, -0.0147662702947855, 0.005445663817226887, 0.010787601582705975, -0.004612144082784653, 0.00016079990018624812, -0.0028636043425649405, -0.009691059589385986, -0.008935334160923958, 0.013647501356899738, 0.005712390411645174, -0.021204749122262, 0.006356979254633188, 0.013921636156737804, -0.013425229117274284, 0.00501223374158144, -0.010120784863829613, 0.004260213579982519, 0.012150869704782963, 0.00553086819127202, 0.0003253043396398425, -0.01258800458163023, 0.0006557024316862226, 0.021945655345916748, 0.012328687123954296, -0.024909282103180885, 0.008550062775611877, -0.0159146748483181, 0.019604390487074852, 0.011083964258432388, -0.02218274585902691, 0.011861915700137615, -0.031503353267908096, 0.024123921990394592, -0.0021430726628750563, -0.004608439281582832, -0.03793442249298096, -0.006101366598159075, 0.0018902381416410208, 0.001670744502916932, -0.02164929360151291, 0.012558368034660816, 0.006371797528117895, -0.005175232887268066, -0.009320605546236038, -0.003206273540854454, 0.013729000464081764, -0.006545910611748695, 0.012914002873003483, 0.0019985956605523825, 0.001473478158004582, -0.009320605546236038, -0.013499319553375244, 0.003426693379878998, -0.024598101153969765, -0.0038897600024938583, -0.010698691941797733, 0.0036508175544440746, -0.013032548129558563, -1.6482279534102418e-05, -0.025916915386915207, -0.008705653250217438, -0.00986887700855732, 0.015062632970511913, -0.00499000633135438, -0.017944758757948875, 0.006571842357516289, -0.010706101544201374, -0.02402019500732422, 0.010454192757606506, 0.005675345193594694, 0.00010789453517645597, -0.007075658533722162, -0.011898960918188095, -0.02118992991745472, -0.017085308209061623, 0.006694091949611902, -0.005556799937039614, 0.012099006213247776, 0.010839465074241161, -0.009461378678679466, 0.011009872891008854, 0.0026172527577728033, 0.005386391654610634, -0.01197305228561163, 0.007942519150674343, 0.0029506608843803406, 0.005764253903180361, -0.012410187162458897, -0.011861915700137615, -0.02271619811654091, 0.026494823396205902, -0.012150869704782963, 0.004804779775440693, 0.0025839121080935, -0.0016763013554736972, -0.005675345193594694, -0.012906594201922417, -0.0025950255803763866, -0.011447007767856121, -0.019559936597943306, -0.01292882114648819, 0.018715303391218185, -0.0035118975210934877, -0.0017003808170557022, 0.007275703363120556, -0.011565553024411201, 0.008616744540631771, 0.00012745910498779267, -0.011335872113704681, 0.003408170770853758, 0.022627290338277817, -0.01843375712633133, 0.004223167896270752, -0.0005223391926847398, -0.014936678111553192, -0.03000671975314617, -0.025427917018532753, 0.004978892859071493, 0.015870220959186554, -0.030169719830155373, -0.01316591165959835, 0.018804211169481277, -0.02179747447371483, 0.019382119178771973, -0.020463842898607254, -0.002072686329483986, -0.005401209462434053, 0.016774127259850502, 0.003441511420533061, -0.004141668323427439, 0.011802643537521362, -0.002730241045355797, -0.005178937688469887, 0.01584058441221714, 0.020108206197619438, 0.029665902256965637, -0.005897616967558861, 0.010869100689888, 0.002011561533436179, 0.01533676777034998, 0.011254372075200081, -0.013751227408647537, -0.0027932182420045137, 0.02381274104118347, 0.0067792958579957485, -0.013906817883253098, -0.004063873086124659, -0.01312145683914423, -0.007905473932623863, 0.002291254000738263, 0.015899857506155968, 0.0029543654527515173, -0.007442407310009003, 0.01813739538192749, 0.004693643655627966, -0.0020875046029686928, -0.04448403790593147, 0.009965194389224052, -0.009898513555526733, 0.005786481313407421, 0.030732808634638786, 0.016403673216700554, 0.02815445326268673, 0.012306460179388523, -0.0013947568368166685, 0.00872788019478321, -0.020463842898607254, 0.0021782657131552696, 0.02770990878343582, 0.004089804831892252, 0.014343952760100365, -0.00514559680595994, 0.004482485353946686, -0.009550287388265133, -0.005038165487349033, 0.0011150644859299064, 0.010958009399473667, -0.008157382719218731, -0.006468115374445915, 0.012343505397439003, -0.0036452608183026314, 0.014662543311715126, 0.017426125705242157, -0.010313420556485653, -0.0016661138506606221, 0.013262229040265083, -0.00740165775641799, 0.022449472919106483, 0.00803883746266365, -0.0008747329120524228, 0.011076554656028748, -0.01316591165959835, -0.016966762021183968, 0.014692178927361965, -0.027191275730729103, -0.01457363460212946, 0.014418044127523899, -0.0006279184017330408, -0.01032823882997036, -0.011409962549805641, 0.01056532934308052, -0.016507400199770927, 0.010246739722788334, -0.011150645092129707, 0.010439375415444374, 0.01898202858865261, 0.008320381864905357, 0.0018522667232900858, -0.008431517519056797, -0.011209918186068535, -0.014832951128482819, 0.0036711925640702248, -0.002300515305250883, -0.008335200138390064, 0.015218223445117474, -0.019782207906246185, -0.013647501356899738, 0.004323190543800592, -0.00772765651345253, -0.012862139381468296, -0.0035544997081160545, -0.010313420556485653, -0.013521546497941017, -0.0014021658571437001, 0.006297706626355648, 0.02225683629512787, 0.0015901708975434303, 0.014306907542049885, -0.01075796503573656, 0.019115392118692398, 0.0009557696175761521, 0.008653789758682251, 0.010224511846899986, -0.017485396936535835, 0.015396040864288807, 0.032392438501119614, -0.0009428037446923554, 0.01316591165959835, 0.018730120733380318, 0.006901545450091362, 0.0061532300896942616, -0.0008557472028769553, -0.011135827749967575, -0.001819852041080594, -0.007949928753077984, -0.020923204720020294, 0.004156486596912146, 0.00776470173150301, -0.0077202473767101765, 0.010987645946443081, -0.0005612368113361299, 0.01929320953786373, 0.003426693379878998, 0.004808484110981226, -0.012032324448227882, 0.016196219250559807, 0.00853524450212717, 0.017396489158272743, -0.021545566618442535, 0.010513465851545334, 0.01752985268831253, -0.0035933973267674446, 0.01798921450972557, 0.013106639496982098, 0.012069369666278362, -0.004382463172078133, 0.018196668475866318, -0.012447232380509377, 5.985136886010878e-05, 0.001915243803523481, 0.017085308209061623, 0.01075796503573656, -0.00014760250633116812, -0.001993038924410939, -0.006931181997060776, -0.017114944756031036, -0.013640091754496098, 0.006883022841066122, -0.018789393827319145, 0.0035452384036034346, -0.026065096259117126, -0.00537527771666646, -0.017648397013545036, 0.01936729997396469, -0.018789393827319145, -0.01515154168009758, 0.00021960937010589987, -0.0015484949108213186, -0.0026580027770251036, 0.007412771228700876, 0.0064199562184512615, -0.010913555510342121, -0.019263572990894318, -0.009609559550881386, -0.01797439530491829, 0.006701501086354256, 0.015544221736490726, -0.00124379713088274, 0.013425229117274284, 0.011691506952047348, -0.02640591375529766, 0.0058531626127660275, 0.00127621169667691, -0.009261333383619785, 0.024375829845666885, -0.020671296864748, 0.009550287388265133, 0.013780863955616951, -0.01339559257030487, -0.009757740423083305, 0.02113065868616104, -0.001378086395561695, -0.0067792958579957485, 0.018078122287988663, 0.05026311054825783, 0.008083291351795197, -3.4874708944698796e-05, -0.017929941415786743, -0.020878750830888748, -0.0060569122433662415, 0.0016920455964282155, -0.0096391960978508, -0.009305788204073906, 0.024375829845666885, 0.005093733314424753, -0.002367196837440133, 0.013884590938687325, 0.011254372075200081, 0.020241569727659225, 0.005738322157412767, -0.02164929360151291, -0.003072910476475954, -0.012728776782751083, 0.011810052208602428, -0.015010769478976727, -0.017648397013545036, 0.009772558696568012, -0.02157520316541195, 0.004375054035335779, 0.004171304404735565, -0.004526939708739519, 0.007357203401625156, 0.0014799610944464803, -0.005256732925772667, 0.006682978011667728, 0.013410410843789577, 0.010083739645779133, 0.006431069690734148, 0.024524010717868805, 0.0038378965109586716, -0.026806004345417023, -0.0009492866811342537, -0.01690749078989029, 0.007212726399302483, -0.013699364848434925, -0.015944311395287514, 0.027576547116041183, -0.015047814697027206, 0.014092044904828072, 0.008135154843330383, 0.00520116463303566, -0.006360683590173721, 0.011743370443582535, -0.0030562400352209806, -0.016551855951547623, -0.0003398909466341138, -0.02410910278558731, 0.0006519978633150458, -0.00763133866712451, -0.0007886025123298168, -0.0003776308731175959, 0.004119440913200378, -0.01852266676723957, 0.004567689727991819, -0.0068496824242174625, 0.01001705788075924, -0.010683874599635601, -0.0009270594455301762, 0.008631562814116478, -0.006697796285152435, 0.0039008737076073885, -0.006723728030920029, -0.03778624162077904, 0.03218498453497887, -0.005193755961954594, 0.0039675552397966385, -0.012958457693457603, -0.0011604450410231948, -0.012254596687853336, 0.0251019187271595, 0.008713062852621078, 0.029784448444843292, -0.027650637552142143, 0.01659630984067917, -0.005171528551727533, 0.014373589307069778, -0.021367749199271202, 0.0023264470510184765, 0.012039733119308949, -0.005693867802619934, 0.01197305228561163, 0.006201388780027628, -0.0038897600024938583, -0.018122578039765358, -0.005119665060192347, 0.0024894464295357466, 0.005349345970898867, -0.02785809151828289, -0.020523114129900932, 0.010068921372294426, -0.020137842744588852, 0.00520116463303566, -0.008542654104530811, 0.015062632970511913, -0.0017605795292183757, -0.00127621169667691, 0.008564881049096584, 0.02233092673122883, -0.014951496385037899, -0.006368092726916075, 0.01843375712633133, -0.004452849272638559, 0.010735738091170788, 0.004382463172078133, -0.016788944602012634, -0.004634371027350426, -0.004782552365213633, 0.015484949573874474, 0.005212278570979834, 0.02479073777794838, -0.01343263778835535, 0.02848045341670513, 0.010587556287646294, 0.02717645652592182, 0.002261617686599493, 0.025516826659440994, 0.002135663526132703, -0.013869772665202618, -0.014010544866323471, 0.007201612927019596, -0.017085308209061623, -0.00979478657245636, -0.004352826625108719, 0.02019711583852768, 0.0027246843092143536, 0.03123662620782852, 0.01668521761894226, 0.008616744540631771, -0.016640763729810715, -0.006475524511188269, 0.0003952273982577026, 0.012476867996156216, -0.02279028855264187, -0.02043420635163784, 0.004701052792370319, -0.011054327711462975, 0.004312076605856419, -0.00986887700855732, 0.010268966667354107, -0.022775471210479736, -0.005779072176665068, -0.017841031774878502, -0.009283560328185558, -0.016581490635871887, 0.016551855951547623, 0.01606285758316517, -0.003182194195687771, 0.033251892775297165, -0.006723728030920029, -0.0034970794804394245, 0.008098109625279903, 0.002222720067948103, -0.001090058940462768, -0.01059496495872736, -0.024198012426495552, 0.03390388935804367, 0.010743146762251854, 0.027887728065252304, 0.004767734557390213, 0.012847322039306164, 0.012676913291215897, 0.008942743763327599, -0.009031652472913265, -0.013440047390758991, 0.011165463365614414, -0.0032099781092256308, -0.028495270758867264, -0.00763133866712451, 0.002396833151578903, 0.0008636193233542144, 0.013847545720636845, 0.002730241045355797, 0.0035470908042043447, -0.0020134139340370893, -0.04223167896270752, -0.00826851837337017, 0.015010769478976727, 0.010698691941797733, -0.011461826041340828, 0.025220463052392006, 0.006960818078368902, -0.006979340687394142, 0.005808708257973194, 0.015810947865247726, 0.0062828888185322285, 0.0026857866905629635, 0.0024135035928338766, 0.0023449696600437164, 0.008312973193824291, 0.011232145130634308, 0.009002015925943851, -0.020923204720020294, 0.020493479445576668, -0.011491462588310242, 0.014114271849393845, 0.007831383496522903, 0.019308028742671013, 0.004612144082784653, -0.00250426447018981, 0.0037230560556054115, 0.01032823882997036, 0.0019300618441775441, -0.006093957461416721, -0.012417595833539963, -0.006816341541707516, -0.00795733742415905, 0.0010205989237874746, -0.0012558368034660816, -0.01557385828346014, -0.011543326079845428, 0.0014077227097004652, -0.0018985733622685075, -0.01492186076939106, 0.01312886644154787, 0.013610455207526684, -0.005367869045585394, -0.014032772742211819, -0.010246739722788334, 0.021145476028323174, -0.005101142451167107, -0.0066644554026424885, 0.004063873086124659, -0.0041935318149626255, 0.009268742054700851, -0.007742474786937237, -0.021560383960604668, 0.006845977623015642, -0.004245395306497812, -0.0052493237890303135, -0.010261557064950466, -0.0052678463980555534, -0.009150197729468346, 0.018537484109401703, -0.02317555993795395, -0.011387735605239868, -0.016966762021183968, -0.0009094629203900695, -0.021012112498283386, 0.006223616190254688, -0.008505608886480331, -0.023457104340195656, 0.008401881903409958, 0.0024894464295357466, 0.006838568486273289, 0.032333165407180786, -0.015707220882177353, -0.010417147539556026, 0.0034637385979294777, 0.0037563969381153584, -0.006342160981148481, -0.014862587675452232, 0.005745731294155121, -0.016314765438437462, 0.005634595174342394, -0.005227096378803253, -0.008942743763327599, 0.012884367257356644, 0.006019866559654474, -0.033162981271743774, 0.01982666179537773, 0.027561727911233902, -0.017189035192131996, -0.014351362362504005, -0.0015975800342857838, -0.003513749921694398, 0.0007436850573867559, -0.01055791974067688, -0.02279028855264187, 0.005419732537120581, 0.011839688755571842, -0.00800179224461317, -0.00746093038469553, 0.03544497489929199, -0.011039509437978268, 0.005827230866998434, 0.01988593488931656, 0.007490566466003656, -0.0038416010793298483, 0.013025139458477497, 0.002720979740843177, 0.00986887700855732, 0.004697348456829786, 0.003982373513281345, 0.01515154168009758, -0.002261617686599493, 0.004389871843159199, -0.0431504063308239, -0.00940951518714428, -0.016477763652801514, 0.008601926267147064, 0.0002206512726843357, 0.0031618191860616207, 0.009268742054700851, -0.013847545720636845, -0.006405138410627842, -0.0016494435258209705, 0.024998191744089127, 0.010543102398514748, -0.037163879722356796, -0.005827230866998434, -0.003997191321104765, -0.020878750830888748, -0.008216654881834984, -0.008009200915694237, 0.012024914845824242, -0.008794561959803104, 0.01850784942507744, 0.00796474702656269, 0.03571170195937157, -0.0020189706701785326, -0.025235280394554138, 0.006957113742828369, -0.008453745394945145, 0.002126402221620083, -0.008468563668429852, -0.015899857506155968, 0.010120784863829613, 0.026420731097459793, 0.011750780045986176, -0.005427141208201647, 0.01874493807554245, -0.011928597465157509, 0.012262005358934402, -0.00249500316567719, -0.028272999450564384, 0.017485396936535835, -0.001939323265105486, -0.03511897474527359, 0.02501300908625126, -0.008372245356440544, -0.005130778532475233, 0.020997295156121254, -0.012595413252711296, 0.0023060720413923264, 0.012921412475407124, 0.011928597465157509, -3.568507599993609e-05, 0.013528956100344658, 0.00474180281162262, 0.009002015925943851, 0.043357860296964645, -0.005438255146145821, 0.014210590161383152, -0.01518858689814806, 0.0037082377821207047, -0.0160776749253273, -0.0024301738012582064, -0.003648965386673808, -0.013114048168063164, -0.0004977966891601682, 0.02073056809604168, -0.001785585074685514, 0.005464186891913414, 0.015825767070055008, -0.014907042495906353, -0.017396489158272743, -0.0001788594963727519, 0.009113152511417866, -0.00788324698805809, 0.011143236421048641, 0.00247648055665195, 0.006301411427557468, -0.0037656582426279783, -0.006297706626355648, -0.0002975203387904912, -0.0019522891379892826, 0.012602822855114937, -0.00487516587600112, -0.008409290574491024, 0.01040973886847496, 0.020404569804668427, 0.0015095972921699286, -0.02716163918375969, 0.02447955682873726, 0.009631786495447159, -0.0015948016662150621, -0.0014614383690059185, 0.014603270217776299, 0.004008305259048939, -0.0001577899674884975, -0.00023384866653941572, -0.011647053062915802, 0.021916018798947334, 0.019100574776530266, -0.032866619527339935, -0.0073386807925999165, 0.016329582780599594, -0.004393576644361019, -0.007194203790277243, 0.0031988646369427443, 0.003100694390013814, -0.01009855791926384, -0.01258800458163023, -0.007890655659139156, 0.003356307279318571, 0.023205196484923363, -0.0015281200176104903, 8.04578376119025e-05, -0.01327704731374979, -0.003571170149371028, -0.02304219827055931, -0.002202345058321953, 0.008964970707893372, 0.022212382405996323, -0.016492582857608795, 0.018092941492795944, -0.03408170863986015, -0.00121416081674397, 0.004360235761851072, 0.00995037704706192, -0.004400985781103373, -0.01852266676723957, 0.008142564445734024, -0.02501300908625126, -0.0033248187974095345, -0.04232059046626091, -0.019070938229560852, 0.0017003808170557022, -0.012914002873003483, 0.009920740500092506, -0.0020578682888299227, 0.0030951376538723707, 0.024049829691648483, 0.006605182774364948, -0.022390199825167656, -0.004208350088447332, -0.013684546574950218, 0.020878750830888748, 0.021545566618442535, -0.003335932269692421, -0.023131106048822403, -0.006690387148410082, -0.0028339680284261703, 0.030258627608418465, 0.017322398722171783, 0.013106639496982098, -0.016877854242920876, 0.013840137049555779, 0.000551975448615849, 7.32224143575877e-05, 0.008601926267147064, -0.001957845874130726, -0.003119216999039054, -0.005864276085048914, -0.007075658533722162, -0.019070938229560852, -0.005760549567639828, -0.006764478050172329, -0.006068025715649128, 0.01254354976117611, -0.004245395306497812, -0.0014549554325640202, 0.0160776749253273, -0.0016790797235444188, -0.015440494753420353, 0.023590467870235443, 0.011380326934158802, 0.02363492362201214, 0.023249652236700058, 0.00015802150301169604, -0.004789961501955986, 0.01622585579752922, 0.03129589930176735, 0.0018355962820351124, -0.005434550344944, -0.0037267606239765882, -0.0014318021712824702, 0.02074538730084896, -0.03191826120018959, 0.0028043317142874002, -0.00013255282829049975, -0.020404569804668427, -0.011387735605239868, 0.01958957314491272, 0.004652894102036953, -0.005819821730256081, 0.00952065084129572, -0.012521322816610336, 0.00983183179050684, -0.001242870930582285, 0.002015266101807356, -0.0013549331342801452, 0.02135292999446392, 0.02449437417089939, 0.025724278762936592, -0.013032548129558563, -0.014040181413292885, 0.021990109235048294, 0.020715750753879547, -0.005882799159735441, -0.006627410184592009, 6.106691580498591e-05, 0.004456553608179092, 0.006038389168679714, -0.012032324448227882, -0.0006283814436756074, 0.007064545061439276, 0.011936006136238575, -0.021604837849736214, -0.002261617686599493, 0.011158054694533348, 0.006271774880588055, 0.016418492421507835, -0.013936454430222511, 0.00796474702656269, 0.0004049518029205501, -0.011936006136238575, 0.011209918186068535, -0.035089340060949326, -0.026139186695218086, -0.00017237657448276877, 0.006516274064779282, -0.024005375802516937, 0.0021301067899912596, -0.01557385828346014, 0.02799145318567753, -0.003786033019423485, -0.0024449920747429132, -0.010031876154243946, -0.009453969076275826, 0.019619207829236984, -0.0008450966561213136, 0.033933524042367935, 0.0020486069843173027, -0.006268070545047522, 0.006957113742828369, -0.0055864364840090275, 0.01533676777034998, 0.0019893343560397625, 0.009105742909014225, -0.006797818932682276, 0.018730120733380318, -0.019945207983255386, -0.0006853386876173317, 0.0008474119822494686, 0.004708461929112673, -0.025665007531642914, -0.0192783921957016, -0.050707653164863586, -0.004267622251063585, -0.001012263703159988, 0.008853835053741932, -0.016492582857608795, 0.015410859137773514], "0b965522-311f-4ed4-9b89-44bdd2409aff": [-0.024738753214478493, -0.002626606961712241, -0.0022193226031959057, 0.03505662456154823, -0.0024833031930029392, -0.017437804490327835, -0.008583140559494495, 0.05560185760259628, -0.013463011011481285, -0.00996338203549385, 0.03626339137554169, -0.012693695724010468, 0.011909295804798603, -0.014021141454577446, -0.006637226324528456, 0.02000218816101551, -0.019972018897533417, 0.005532279144972563, 0.02205369435250759, -0.04637007787823677, 0.07638844102621078, 0.004977920092642307, -0.05523982644081116, 0.015446635894477367, 0.008605767972767353, 0.017905427142977715, -0.01286716852337122, 0.0227475855499506, -0.02439180761575699, 0.006871038116514683, 0.016743913292884827, 0.007776114158332348, 0.006987943779677153, -0.004442416597157717, 0.021676577627658844, -0.020273709669709206, 0.025839930400252342, 0.02534213848412037, -0.031436316668987274, -0.01582375168800354, -0.03146648779511452, 0.023562153801321983, -0.0027397414669394493, 0.01793559640645981, -0.03273359313607216, -0.0077534872107207775, 0.02148047834634781, -0.03213021159172058, -0.019534563645720482, 0.027831098064780235, 0.0018450358184054494, -0.023667747154831886, -0.011147523298859596, -0.0038465745747089386, 0.04477110877633095, -0.04887412115931511, 0.01864457316696644, 0.06118316203355789, 0.01248251087963581, -0.06365703791379929, -0.003527912078425288, -0.014933759346604347, -0.018614403903484344, 0.0004445244849193841, -0.01684950478374958, 0.0006509950035251677, -0.0054266867227852345, -0.008628394454717636, -0.03976302221417427, -0.0012039401335641742, -0.008884833194315434, 0.03550916165113449, -0.01896134950220585, 0.00870381761342287, 0.022762669250369072, -0.02504044584929943, 0.05098596587777138, 0.03348782658576965, 0.005106138996779919, -0.023652661591768265, -0.0018667199183255434, 0.010762866586446762, 0.034905776381492615, -0.0030056077521294355, 0.09092999994754791, 0.0035184843000024557, -0.011871584691107273, -0.05291679874062538, 0.00019338936544954777, -0.037439990788698196, -0.01483570970594883, 0.022702332586050034, 0.004167122300714254, -0.007791198790073395, -0.009820078499615192, 0.031225133687257767, -0.00606024032458663, 0.010121770203113556, 0.013523349538445473, 0.008952713571488857, -0.018086442723870277, 0.011916838586330414, 0.010423462837934494, 0.0005444599664770067, 0.018750164657831192, 0.018946263939142227, 0.010099143721163273, 0.011313454248011112, -0.03164750337600708, 0.026277383789420128, 0.007712004706263542, -0.029158543795347214, -0.01109472755342722, 0.030983779579401016, -0.06142451614141464, -0.015439094044268131, -0.03394036367535591, -0.026337722316384315, -0.016487473621964455, -0.0055775330401957035, 0.013817498460412025, -0.0018610631814226508, 0.03234139457345009, 0.007285864558070898, -0.02487451583147049, 0.007161416579037905, 0.011584977619349957, -0.017980849370360374, 0.02037930302321911, -0.04296095669269562, -0.007761029526591301, 0.001479234197176993, 0.020590486004948616, 0.01433037593960762, 0.013131149113178253, -0.005743463523685932, 0.028012113645672798, 0.036565084010362625, -0.03092344105243683, 0.03566000983119011, -0.040577590465545654, -0.041754189878702164, -0.004250087775290012, -0.0156578216701746, 0.002856647130101919, -0.027453983202576637, -0.03810371458530426, 0.03478509932756424, 9.245213732356206e-05, 0.015627652406692505, -0.06570854038000107, -0.05330899730324745, -0.01960998773574829, 0.014398256316781044, 0.07542303204536438, -0.024497399106621742, -0.0014207812491804361, 0.033819686621427536, -0.007979756221175194, 0.04178435727953911, 0.01968540996313095, -0.030410565435886383, -0.00692383386194706, 0.044590093195438385, 0.07138035446405411, 0.014654694125056267, 0.025689084082841873, 0.0033846083097159863, -0.028162958100438118, 0.022943684831261635, 0.03816405311226845, -0.042297232896089554, 0.028117705136537552, 0.003884285921230912, -0.006444897968322039, -0.0009305315907113254, 0.040275897830724716, 0.027288051322102547, 0.040336236357688904, -0.03502645343542099, -0.0013953259913250804, 0.006825784221291542, -0.02558349072933197, -3.8359681639121845e-05, -0.0017620704602450132, 0.0005289039690978825, 0.008273906074464321, 0.024738753214478493, 0.03360849991440773, -0.022777754813432693, -0.02393926866352558, 0.0024757608771324158, -0.026111451908946037, 0.003818290773779154, -0.0020515064243227243, -0.013183945789933205, -0.01071006990969181, 0.007059595547616482, -0.005317323375493288, 0.01927812583744526, 0.002247606171295047, -0.08278431743383408, -0.03541865572333336, 0.013515806756913662, -0.011750907637178898, 0.00846246350556612, -0.007316033821552992, -0.02897752821445465, 0.028238382190465927, -0.030727341771125793, 0.034211885184049606, -0.04591754078865051, 0.0017516998341307044, 0.0227475855499506, -0.03092344105243683, 0.01535612903535366, -0.004766735248267651, 0.04293078929185867, 0.02961108088493347, -0.04637007787823677, -0.01621595211327076, 0.008206025697290897, -0.00266808969900012, -0.007761029526591301, -0.061605531722307205, -0.013266910798847675, 0.014707490801811218, 0.024361638352274895, -0.030335141345858574, -0.00378057942725718, 0.011630231514573097, -0.021993355825543404, -0.017060689628124237, -0.009375082328915596, -0.006162061356008053, 0.049477506428956985, -0.00010812598338816315, 0.00688612274825573, -0.01701543480157852, 0.010649731382727623, 0.008334244601428509, 0.03921997547149658, -0.001120974775403738, -0.010415920056402683, 0.02961108088493347, 0.01651764288544655, 0.007346203085035086, 0.03946132957935333, -0.01653272844851017, -0.008356872014701366, -0.0072104413993656635, 0.012293953448534012, -0.005879225209355354, -0.025311969220638275, -0.013870295137166977, 0.018373049795627594, 0.009608893655240536, -0.02069607935845852, 0.034513577818870544, -0.002417308045551181, 0.01998710259795189, 0.014202156104147434, 0.010966508649289608, 0.03843557462096214, 0.037832193076610565, -0.016970181837677956, 0.007406541611999273, 0.014616983011364937, 0.008047637529671192, 0.03768134489655495, -0.01519773993641138, 0.018931180238723755, -0.012935049831867218, 0.01929321140050888, 0.01927812583744526, 0.014111648313701153, -0.003861658973619342, -0.02416553907096386, 0.0016659061657264829, -0.0243314690887928, -0.05101613700389862, 0.005656727124005556, 0.009073390625417233, -0.0018233517184853554, 0.0021080735605210066, 0.01825237274169922, -0.02457282319664955, 0.0006726791616529226, -0.03155699372291565, -0.011117354035377502, 0.006622142158448696, 0.0313156433403492, 0.011547265574336052, 0.018538979813456535, 0.027107035741209984, -0.006723963189870119, -0.009224236011505127, 0.0044047050178050995, -0.04775786027312279, 0.027574660256505013, 0.0069690877571702, 0.003126284573227167, 0.003929539583623409, -0.020122863352298737, 0.04398671165108681, -0.022717416286468506, 0.047818198800086975, 0.020349133759737015, -0.04347383230924606, 0.027197543531656265, 0.028449567034840584, -0.05273578315973282, -0.012180819176137447, 0.014730117283761501, 0.013689279556274414, 0.031526826322078705, -0.021842509508132935, -0.03614271432161331, -0.03481527045369148, -0.02588518336415291, -0.017286958172917366, 0.0076516661792993546, -0.04187486693263054, 0.02117878571152687, 0.03024463541805744, -0.04268943518400192, 0.03336714953184128, -0.014202156104147434, -0.001379298628307879, -0.03291460871696472, -0.030289888381958008, -0.0149186747148633, -0.04247824847698212, -0.00020953459898009896, -0.049718860536813736, -0.02614162117242813, -0.002274004276841879, -0.06667395681142807, 0.014865878969430923, -0.021148616448044777, -0.0017677271971479058, -0.03614271432161331, -0.0010314099490642548, -0.0027642541099339724, 0.027499236166477203, -0.01212048064917326, -0.00458949152380228, 0.0020665910560637712, -0.024301299825310707, 0.01089862734079361, 0.0009069619118236005, -0.023200124502182007, 0.01865965686738491, 0.031436316668987274, 0.020213371142745018, -0.031044118106365204, 0.001885575708001852, 0.0021778398659080267, -0.009435420855879784, -0.0332464724779129, 0.017905427142977715, -0.027906520292162895, -0.005358806345611811, 0.010513970628380775, 0.01117769256234169, 0.00045843058614991605, 0.016562897711992264, 0.006965316832065582, -0.019775917753577232, -0.018086442723870277, -0.015167570672929287, 0.002752940636128187, -0.0192027036100626, 0.012603187933564186, 0.00838704127818346, -0.028132790699601173, 0.05053342878818512, -0.0025511840358376503, -0.021525733172893524, 0.014187071472406387, -0.02194810099899769, -0.029490403831005096, -0.006512778345495462, 0.008568055927753448, 0.04890429228544235, 0.019579818472266197, 0.018207119777798653, -0.011720738373696804, -0.010031262412667274, 0.0043028839863836765, -0.034996286034584045, 0.012520222924649715, -0.0287361741065979, -0.019323380663990974, -0.02015303261578083, -0.008062722161412239, -0.005645413883030415, -0.023894015699625015, 0.00042614011908881366, -0.021299462765455246, -0.0057472349144518375, 0.0236074086278677, -0.008651021867990494, 0.007500820327550173, 0.025794675573706627, -0.016728827729821205, -0.026322636753320694, 0.006546718999743462, 0.04154300317168236, 0.032009534537792206, 0.04944733902812004, -0.01580866612493992, 0.004981691017746925, -0.00991812814027071, 0.0498998761177063, 0.011230489239096642, -0.0036561312153935432, 0.0203038789331913, -0.0420558825135231, -0.005984817165881395, 0.04220672696828842, 0.03997420519590378, 0.015039351768791676, 0.013968344777822495, 0.024693500250577927, 0.011622688733041286, 0.004268943332135677, 0.029505489394068718, 0.017302043735980988, -0.004419789649546146, 0.008635937236249447, 0.05584321171045303, 0.004159579984843731, -0.017905427142977715, -0.010679900646209717, -0.004811989143490791, -0.02140505611896515, 0.003856002353131771, 0.017045604065060616, -0.007512133568525314, -0.022460978478193283, -0.0030074932146817446, -0.0036674446891993284, 0.020756417885422707, -0.02054523304104805, 0.008771697990596294, -0.05005072057247162, 0.02448231540620327, -0.03188885748386383, -0.011426588520407677, 0.003588250605389476, 0.031134625896811485, 0.002732199151068926, -0.011147523298859596, -0.009986009448766708, 0.005245671607553959, 0.013199030421674252, -0.01109472755342722, 0.04353417083621025, -0.07976739853620529, -0.023471646010875702, -0.00988041702657938, 0.002000595908612013, -0.022340301424264908, 0.008537886664271355, -0.02840431220829487, 0.0009498587460257113, -0.014745201915502548, 0.009729570709168911, 0.0398535281419754, 0.03424205631017685, -0.015416467562317848, 0.009261948056519032, 0.02653382159769535, -0.0004065772518515587, 0.00010335312254028395, -0.024029776453971863, -0.012263784185051918, -0.004257630091160536, 0.0055963885970413685, 0.00925440527498722, -0.014420882798731327, 0.014239868149161339, 0.002396566793322563, -0.022732499986886978, -0.0033789516892284155, -0.038707099854946136, -0.030757511034607887, 0.009201609529554844, 0.021902848035097122, 0.03164750337600708, 0.0056831249967217445, 0.034664422273635864, 0.03013904206454754, 0.003610877553001046, -0.017045604065060616, -0.02172183245420456, -0.02212911657989025, 0.004928894806653261, -0.0530676431953907, 0.024180622771382332, -0.03430239483714104, -0.006614599842578173, -0.019263042137026787, 0.003028234699741006, -0.011034389026463032, -0.036323729902505875, 0.014662236906588078, -0.03445323929190636, -0.023878930136561394, -0.04643041640520096, 0.013726991601288319, -0.022777754813432693, 0.004876098595559597, 0.015001640655100346, -0.00460457568988204, -0.018071357160806656, -0.012278868816792965, 0.011705653741955757, 0.004668685607612133, -0.0011747137177735567, -0.033427488058805466, -0.04202571138739586, 4.227814497426152e-05, -0.013493180274963379, -0.011539723724126816, -0.017603734508156776, -0.03312579542398453, 0.024738753214478493, -0.01573324389755726, -0.006818241905421019, 0.03327663987874985, -0.03762100636959076, -0.00211561587639153, 0.012286411598324776, -0.018704911693930626, -0.004597033839672804, 0.018765250220894814, 0.0019298867555335164, 0.004363222047686577, -0.046098556369543076, 0.013975887559354305, -0.00266808969900012, -0.023124700412154198, 0.0053889756090939045, 0.017121028155088425, -0.026352806016802788, 0.011268200352787971, -0.00756115885451436, 0.026020944118499756, -0.025870099663734436, 0.007466879673302174, -0.002869846299290657, -0.0023343428038060665, -0.0007325461483560503, -0.03810371458530426, -0.001659306581132114, 0.014262494631111622, -0.003616534173488617, -0.016653405502438545, -0.017648989334702492, -0.006256340071558952, 0.013757160864770412, -0.0012001689756289124, 0.0066824802197515965, -0.016185782849788666, -0.014865878969430923, -0.006810699589550495, -0.008749071508646011, 0.019082026556134224, 0.03855625167489052, -0.02961108088493347, 0.024150453507900238, -0.00442733196541667, 0.014013598673045635, 0.017920510843396187, -0.01715119741857052, 0.013274452649056911, -0.050503261387348175, -0.022868262603878975, 0.02289843186736107, -0.005611473228782415, 0.017105942592024803, 0.013523349538445473, 0.013825041241943836, 0.005124995019286871, -0.03653491660952568, 0.0015999110182747245, -0.00019739620620384812, -0.024738753214478493, 0.011811246164143085, 0.008635937236249447, -0.003397807478904724, -0.009390166960656643, -0.04154300317168236, 0.01864457316696644, 0.002081675687804818, 0.011358708143234253, 0.010868458077311516, 0.03454374894499779, 0.009789909236133099, 0.03024463541805744, 0.01067235879600048, -0.013116064481437206, -0.05997639149427414, 0.0009484445909038186, 0.0074781933799386024, 0.027107035741209984, 0.009337371215224266, 0.023094531148672104, -0.023034192621707916, 0.0013849553652107716, 0.03894845396280289, -0.010076516307890415, 0.030093789100646973, -0.024271130561828613, 0.005294696427881718, 0.007836452685296535, 0.0016046249074861407, -0.009948297403752804, 0.04516331106424332, -0.032612916082143784, 0.05083512142300606, -0.021374886855483055, 0.02793668955564499, 0.016804249957203865, 0.0012001689756289124, -0.001959113171324134, 0.002743512624874711, 0.010280159302055836, -0.040487080812454224, -0.004702625796198845, 0.010725154541432858, -0.019308295100927353, 0.012158192694187164, -0.008537886664271355, 0.0016149956500157714, 0.04087928310036659, -0.04006471112370491, -0.013093437999486923, -0.019338464364409447, -0.007368830032646656, 0.0008353100274689496, 0.03535831719636917, -0.010317870415747166, -8.166900079231709e-05, -0.0007372600957751274, -2.184616278100293e-05, 0.02707686647772789, 0.011072101071476936, -0.01319148764014244, -0.02227996289730072, -0.012836999259889126, 0.03394036367535591, 0.019428972154855728, -0.02148047834634781, -0.0012246813857927918, 0.043956540524959564, 0.003971022553741932, 0.0003912569663953036, 0.045464999973773956, -0.020575402304530144, -0.005370119586586952, 0.022295046597719193, -0.022611824795603752, -0.004928894806653261, -0.003884285921230912, 0.010174566879868507, 0.01692492701113224, 0.012188361026346684, -0.0014839480863884091, -0.02802719734609127, 0.01408902183175087, -0.012784203514456749, 0.003258274868130684, 0.007361287716776133, -0.015401382930576801, 0.020243540406227112, 0.0016197095392271876, -0.010295243002474308, 0.011170150712132454, -0.034664422273635864, -0.017694242298603058, 0.01660815067589283, -0.05095579847693443, -0.01071006990969181, -0.008681190200150013, -0.00716518796980381, -0.02307944744825363, -0.005607702303677797, -0.020680993795394897, -0.0066636246629059315, -0.005351264029741287, 0.0030320058576762676, 0.0009984123753383756, -0.03882777690887451, 0.008319159969687462, -0.010687443427741528, 0.025945521891117096, -0.028223296627402306, -0.02612653747200966, -0.011977177113294601, 0.01921778731048107, -0.010461173951625824, 0.022536400705575943, 0.0019100882345810533, -0.01380995661020279, -0.04172401875257492, 0.009111101739108562, -0.013998514041304588, 0.019338464364409447, 0.03237156569957733, 0.0013133034808561206, 0.021555902436375618, -0.01731712743639946, 0.05572253465652466, -0.014586813747882843, 0.02409011498093605, 0.014745201915502548, 0.03092344105243683, 0.006599515210837126, 0.03237156569957733, -0.012158192694187164, -0.03771151602268219, -0.0015216596657410264, 0.016547812148928642, 0.02227996289730072, 0.01849372684955597, 0.025206375867128372, 0.006697564851492643, 0.005000547040253878, 0.0006439241115003824, 0.014021141454577446, 0.0004214261716697365, -0.005754777230322361, 0.03134581074118614, -0.006674937903881073, 0.012331665493547916, 0.06631192564964294, -0.020982686430215836, 0.008198482915759087, 0.008530344814062119, 0.02755957469344139, -0.020831840112805367, -0.05032224580645561, 0.019247956573963165, 0.020258625969290733, 0.015258078463375568, 0.0018997174920514226, -0.012542849406599998, 0.019474226981401443, -0.04661143198609352, 0.05116698145866394, 0.007150103338062763, -0.031768180429935455, -0.006116807460784912, 0.02289843186736107, 0.022008439525961876, 0.005068427417427301, 0.027665166184306145, 0.012512680143117905, 0.023894015699625015, 0.017920510843396187, -0.025945521891117096, -0.025945521891117096, 0.01558239758014679, 0.01811661198735237, 0.050261907279491425, 0.024361638352274895, 0.0003745224676094949, 0.043504003435373306, -0.007417854852974415, 0.02440689131617546, 0.02653382159769535, -0.0056642694398760796, 0.009458048269152641, 0.020907264202833176, 0.012497595511376858, -0.04534432664513588, -0.01451893337070942, -0.030184296891093254, -0.014345459640026093, 0.003544882405549288, 0.012263784185051918, 0.00861330982297659, -0.01888592727482319, 0.03882777690887451, 0.020288795232772827, -0.018704911693930626, -0.010642189532518387, 0.014828167855739594, -0.004785591270774603, 0.01011422835290432, -0.002813278930261731, 0.001414181781001389, -0.015929343178868294, -0.005015631206333637, -0.0032790161203593016, 0.013666653074324131, 0.011471842415630817, 0.023728085681796074, -0.007153874263167381, 0.022762669250369072, 0.03707795962691307, 0.013221656903624535, -0.01905185729265213, -0.010302785784006119, 0.02101285569369793, -0.03315596282482147, 0.022762669250369072, -0.0007405598880723119, -0.008681190200150013, -0.007033197674900293, 0.025327052921056747, -0.03647457808256149, 0.0014782913494855165, 0.018599318340420723, -0.005124995019286871, 0.031044118106365204, -0.02046981081366539, -0.0054078311659395695, -0.026956191286444664, 0.011667942628264427, 0.006079096347093582, -0.03321630135178566, -0.0023795964661985636, 0.017196450382471085, -0.007745944894850254, 0.009842704981565475, -0.0149186747148633, -0.014239868149161339, -0.01574832759797573, -0.00893762893974781, 0.027514321729540825, 0.00814568717032671, 0.02110336348414421, 0.01597459800541401, -0.02086200937628746, -0.027499236166477203, 0.02912837453186512, -0.030636833980679512, -0.04247824847698212, -0.012716323137283325, -0.0018827473977580667, 0.006882351357489824, 0.007504591252654791, 0.01716628111898899, 0.023275546729564667, 0.05421407148241997, 0.02565891481935978, 0.004004962742328644, -0.031285472214221954, 0.011554808355867863, -0.004985462408512831, -0.008251279592514038, 0.002801965456455946, -0.017905427142977715, 0.02086200937628746, -0.003701385110616684, 0.01141904667019844, 0.015476805157959461, 0.03493594750761986, -0.018146781250834465, 0.005151392892003059, -0.015627652406692505, 0.003339354647323489, 0.00570952333509922, -0.019097110256552696, 0.009586267173290253, -0.008371956646442413, -0.0043104263022542, 0.020816756412386894, 0.018704911693930626, -0.026171790435910225, 0.028992611914873123, 0.0021080735605210066, -0.00846246350556612, -0.014451052062213421, -0.015476805157959461, -0.0147979985922575, 0.01145675778388977, 0.009148813784122467, -0.012210988439619541, 0.015386298298835754, -0.029580911621451378, -0.0005967846955172718, 0.014239868149161339, 0.004698854871094227, 0.005837742239236832, -0.0027623684145510197, -0.003058403730392456, 0.018916096538305283, -0.012852083891630173, -0.024437060579657555, -0.018689826130867004, -0.01377224549651146, 0.018237289041280746, -0.012950134463608265, -0.0033054142259061337, -0.014277579262852669, 0.0004490027204155922, -0.024768922477960587, -0.023954354226589203, -0.008085348643362522, 0.02440689131617546, -0.024512484669685364, 0.019187618046998978, 0.013131149113178253, 0.014435967430472374, -0.007248152978718281, 0.008311618119478226, -0.0002863718254957348, -0.015853920951485634, -0.03928031399846077, 0.045072801411151886, 0.02289843186736107, 0.008364413864910603, -0.01653272844851017, -0.0018667199183255434, 0.015325959771871567, 0.025538237765431404, 0.023743169382214546, 0.02541756071150303, 0.0041331821121275425, -0.011879127472639084, -0.005634100176393986, -0.00019798545690719038, 0.004468814469873905, 0.0035241409204900265, 0.027589743956923485, -0.01334233395755291, -0.00204584957100451, -0.009277032688260078, 0.01709085889160633, 0.023713000118732452, -0.0002778867201413959, -0.010936339385807514, -0.031526826322078705, -0.03252241015434265, 0.003056518267840147, -0.0075460742227733135, -0.025296883657574654, 0.0123542919754982, -0.014541559852659702, 0.0011058901436626911, -0.038767438381910324, -0.007972214370965958, 0.018765250220894814, -7.070908759487793e-05, 0.0216464102268219, -0.003026349004358053, 0.026111451908946037, -0.004472585394978523, -0.031285472214221954, 0.008990424685180187, 0.018991518765687943, -0.012452341616153717, -0.002999950898811221, 0.01440579816699028, -0.0047780489549040794, 0.024995191022753716, 0.013990972191095352, -0.0052230446599423885, 0.009465590119361877, -0.016668489202857018, 0.03164750337600708, -0.039159636944532394, 0.018373049795627594, -0.016562897711992264, 0.005030715838074684, -0.007338660769164562, -0.025055529549717903, -0.0026341492775827646, 0.003925768658518791, -0.009887958876788616, -0.01094388123601675, -0.01951947994530201, -0.0032035931944847107, -0.023350968956947327, -0.014745201915502548, 0.06950986385345459, -0.034061040729284286, -0.010876000858843327, -0.021465394645929337, -0.007297178264707327, 0.0020496207289397717, -0.02022845670580864, 0.027423813939094543, -0.026413144543766975, 0.0021627554669976234, -0.004197291564196348, -0.02463316172361374, 0.007297178264707327, 0.004099241457879543, 0.01903677172958851, -0.0059357923455536366, -0.0041520376689732075, -0.031285472214221954, 0.0008329530828632414, -0.028871934860944748, -0.0040502166375517845, -0.023984523490071297, -0.041211143136024475, 0.041060298681259155, 0.002630378119647503, 0.005226816050708294, 0.027453983202576637, -0.0061884596943855286, -0.014111648313701153, 0.015242993831634521, -0.03493594750761986, 0.005554906092584133, 0.02313978597521782, -0.032311227172613144, -0.0203038789331913, 0.01746797375380993, -0.012784203514456749, -0.04697346314787865, -0.027333306148648262, 0.023411307483911514, -0.039008788764476776, 0.002226864919066429, -0.00491758156567812, -0.028132790699601173, -0.006859724409878254, 0.015205282717943192, -0.009427879005670547, -4.599037129082717e-05, -0.008530344814062119, 0.011962092481553555, -0.02606619894504547, -0.011275743134319782, 0.02203860878944397, -0.006116807460784912, -0.0010342382593080401, -0.021767085418105125, -0.021435225382447243, -0.04872327670454979, -0.01597459800541401, -0.009593809023499489, 0.05201172083616257, -0.010974050499498844, -0.02761991322040558, 0.014692406170070171, 0.01825237274169922, 0.0029678961727768183, 0.00948821660131216, -0.017181366682052612, -0.005856598261743784, 0.017920510843396187, 0.003473230404779315, 0.0028415624983608723, 0.017286958172917366, -0.01653272844851017, -0.00917898304760456, 0.0015848263865336776, 0.002343770582228899, -0.0038220619317144156, 0.004834616091102362, 0.01998710259795189, 0.0048459297977387905, -0.014420882798731327, 0.01850881054997444, -0.02574942260980606, 0.0015320302918553352, -0.004710168112069368, -0.019263042137026787, -0.011041931807994843, 0.021058110520243645, -0.018146781250834465, -0.009510844014585018, 0.025327052921056747, -0.006086638662964106, -0.0010172680485993624, -0.0033072999212890863, 0.014873421750962734, 0.0009446734329685569, -0.006584430579096079, 0.014292663894593716, -0.018297627568244934, -0.010272616520524025, 0.004280257038772106, 0.023486731573939323, 0.015092148445546627, -0.028630582615733147, -0.013930633664131165, 0.020590486004948616, 0.009118644520640373, -0.005464398302137852, -0.016472389921545982, -0.02659416012465954, 0.00234188511967659, -0.0035203697625547647, -0.006052698008716106, -0.013251826167106628, -0.010936339385807514, -0.009390166960656643, 0.04211622104048729, 0.006354390177875757, -0.001099290675483644, -0.007187814451754093, -0.005988588556647301, 0.0051966467872262, 0.04603821784257889, 0.030802765861153603, 0.025070615112781525, -0.02463316172361374, 0.01310852263122797, -0.01038575079292059, 0.01236183475703001, 0.0243314690887928, 0.00745933735743165, 0.019700495526194572, -0.0038955993950366974, -0.015212824568152428, 0.009480674751102924, 5.752478955400875e-06, -0.021525733172893524, 0.0022457207087427378, 0.006422271020710468, 0.012505138292908669, -0.002671860856935382, -0.008877290412783623, 0.008002383634448051, -0.025960607454180717, -0.008515260182321072, 0.005822657607495785, 0.011939465068280697, -0.0017780979396775365, 0.02173691615462303, 0.013183945789933205, 0.005211731418967247, 0.049869704991579056, 0.006607057526707649, 0.0044914414174854755, -0.021601155400276184, -0.014956386759877205, 0.015537143684923649, -0.0009192181751132011, 0.022762669250369072, -0.021043024957180023, -0.003978564869612455, -0.0012312809703871608, -0.009782366454601288, 0.003486429573968053, -0.013832583092153072, -0.013183945789933205, -0.013930633664131165, 0.002456905087456107, -0.028042282909154892, 0.011260658502578735, -0.019700495526194572, 0.010068974457681179, 0.0010634646750986576, -0.004955293145030737, -0.021073194220662117, 0.009887958876788616, 0.002669975161552429, 0.006248797755688429, -0.003382722847163677, -0.026156706735491753, -0.031375981867313385, -0.005068427417427301, -0.0013170746387913823, 0.0052041891030967236, 0.006882351357489824, 0.018297627568244934, 0.008749071508646011, 0.01483570970594883, -0.007470651064068079, 0.0021816110238432884, 0.0011313454015180469, 0.014511390589177608, 0.030018365010619164, -0.0047818198800086975, 0.031526826322078705, -0.030033450573682785, 0.0013755274703726172, -0.012655984610319138, -0.006075324956327677, 0.00012279811198823154, -0.0009583438513800502, 0.017890341579914093, 0.009518385864794254, -0.009548555128276348, 0.0005864140694029629, 0.00814568717032671, -0.006441126577556133, -0.0028095077723264694, 0.03623322397470474, -0.0006406243774108589, -0.02218945510685444, -0.029233966022729874, -0.0067692166194319725, 0.010951424017548561, -0.014526475220918655, -0.013644025661051273, -0.013018014840781689, 0.02307944744825363, 0.006007444113492966, 0.0016395080601796508, -0.0018252372974529862, -0.011962092481553555, 0.004721481818705797, -0.02244589291512966, -0.00799484085291624, -0.016004767268896103, 0.016819335520267487, 0.00099935510661453, -0.026865683495998383, -0.04422806575894356, 0.01433037593960762, 0.0004603161651175469, -0.004642287269234657, -0.012505138292908669, 0.015944428741931915, -0.008485090918838978, -0.014270037412643433, -0.003654245752841234, -0.002626606961712241, 0.02157098613679409, -0.0034656880889087915, 0.01944405771791935, -0.0247085839509964, -0.0066824802197515965, -0.008047637529671192, 0.00468377023935318, -0.0009229893330484629, 0.02022845670580864, -0.015144944190979004, -0.00375795247964561, 0.019941849634051323, -0.01912727952003479, 0.03442307189106941, 0.017679158598184586, -0.005422915797680616, -0.030335141345858574, -0.016547812148928642, -0.008371956646442413, 0.009541013278067112, 0.011381334625184536, -0.011464300565421581, -0.0002545527240727097, -0.011124896816909313, 0.004819531459361315, 0.009103559888899326, -0.00033398260711692274, 0.031194964423775673, -0.009586267173290253, 0.03934065252542496, -0.007919417694211006, -0.001120974775403738, -0.005607702303677797, -0.000510519603267312, 0.003001836594194174, 0.009435420855879784, -0.0029509260784834623, 0.052554767578840256, -0.012309038080275059, -0.02989768795669079, -0.030516156926751137, 0.0232302937656641, 0.019866425544023514, -0.011426588520407677, -0.08604259043931961, -0.019715579226613045, 0.015288247726857662, 0.02329063042998314, -0.0051363082602620125, 0.0054757120087742805, -0.01858423464000225, 0.001071006990969181, -0.003356324741616845, 0.024512484669685364, -0.015627652406692505, 0.03599186986684799, 0.0024059945717453957, -0.011532180942595005, -0.02573433704674244, -0.007761029526591301, -0.013485637493431568, 0.011464300565421581, 0.025085698813199997, -0.029656335711479187, -0.0032073643524199724, 0.015182655304670334, 0.005543592851608992, 0.019700495526194572, 0.008847121149301529, -0.014473679475486279, 0.005996130872517824, -0.0018818045500665903, 0.0072066704742610455, 0.015446635894477367, -0.015242993831634521, 0.0010587507858872414, 0.00491758156567812, 0.0009889844805002213, 0.02541756071150303, 0.0216464102268219, 0.010174566879868507, 0.017271874472498894, -0.022476062178611755, -0.01334233395755291, -0.0016762767918407917, 0.0015169456601142883, -0.011916838586330414, 0.012474969029426575, 0.016472389921545982, -0.03258274868130684, -0.005784946493804455, 0.0034751161001622677, -0.009714486077427864, -0.0009069619118236005, -0.016547812148928642, -0.007972214370965958, 0.003329926636070013, -0.010415920056402683, 0.01342529896646738, -0.02504044584929943, 0.00948821660131216, -0.0015753984916955233, 0.019775917753577232, -0.013870295137166977, -0.032462071627378464, 0.021616240963339806, -0.01440579816699028, 0.0037900072056800127, 0.021676577627658844, 0.013666653074324131, -0.004815760534256697, 0.02203860878944397, 0.004502754658460617, -0.021978270262479782, 0.012218530289828777, 0.00987287424504757, -0.013674194924533367, 0.0156578216701746, -0.003742867847904563, -0.029158543795347214, -0.007093535736203194, 0.00596596160903573, -0.0002776510373223573, 0.004879869986325502, -0.011728281155228615, 0.015001640655100346, 0.007168958894908428, -0.013734533451497555, -0.003573165973648429, -0.015092148445546627, -0.03234139457345009, -0.01034803967922926, -0.0007834567222744226, 0.01660815067589283, 0.012580561451613903, -0.017694242298603058, -0.01329708006232977, -0.01054413989186287, -0.019383719190955162, 0.02903786674141884, 0.011592519469559193, -0.06432075798511505, -0.008651021867990494, -0.01960998773574829, 0.02123912423849106, 0.016321543604135513, -0.005328637082129717, -0.024678414687514305, 0.035690177232027054, 0.01484325248748064, -0.007723317947238684, 0.01653272844851017, -0.0027472837828099728, 0.0163818821310997, 0.009465590119361877, -0.03626339137554169, -0.0027076867409050465, 0.0005892424378544092, 0.01113998144865036, -0.0105818510055542, -0.003058403730392456, -0.007798741105943918, 8.432059257756919e-05, -0.0069540031254291534, 0.015461720526218414, 0.007184043526649475, 0.00718027213588357, 0.0007933559827506542, 0.018086442723870277, 0.007972214370965958, -0.0026115223299711943, 0.006848411168903112, 0.008552971296012402, 0.004642287269234657, 0.013794871978461742, -0.001542400917969644, -0.030365310609340668, 0.001329330843873322, -0.009299659170210361, 0.007881706580519676, 0.004559322260320187, -0.012987845577299595, 0.015642736107110977, 0.012836999259889126, -0.02952057309448719, -0.009616436436772346, -0.01338758785277605, 0.0002455962239764631, -0.0008400239748880267, -0.007791198790073395, 0.005000547040253878, -0.0024361638352274895, 0.00405398802831769, 0.012090311385691166, 0.012263784185051918, 0.017905427142977715, 0.009028136730194092, -0.004514068365097046, 0.012037515640258789, -0.037198636680841446, 0.0015471149235963821, -0.02054523304104805, 0.01113243866711855, -0.014413340948522091, -0.0010738354176282883, -0.014616983011364937, -0.025930438190698624, 0.010845831595361233, -0.015212824568152428, 0.007602641358971596, 0.007610183674842119, 0.004619660321623087, -0.006233713123947382, -0.03149665519595146, 0.009548555128276348, -0.039793189615011215, -0.009231778793036938, 0.009013052098453045, 0.00936754047870636, -0.011403962038457394, 0.022626908496022224, -0.006482609547674656, 0.03472476080060005, -0.006233713123947382, 0.014979013241827488, -0.00237205415032804, -0.033336978405714035, -0.0139381755143404, 0.012693695724010468, 0.002541756024584174, -0.013749618083238602, -0.014775371178984642, 0.010566766373813152, -0.005947106052190065, 0.01653272844851017, 0.0056982096284627914, -0.000992755638435483, -0.02123912423849106, -0.01338004507124424, -0.0068521820940077305, 0.0016545926919206977, -0.012980303727090359, 0.026413144543766975, -0.02841939777135849, -0.007636581547558308, 0.005566219333559275, 0.0003938496229238808, -0.008500175550580025, 0.0156578216701746, 0.0019779689610004425, 0.00020835611212532967, 0.027665166184306145, -0.038767438381910324, 0.0271522905677557, -0.03336714953184128, -0.013410214334726334, -0.0007914704037830234, -0.008311618119478226, -0.015046894550323486, -0.015190198086202145, -0.044680602848529816, 0.00230228784494102, -0.015416467562317848, 0.014903590083122253, -0.01746797375380993, 0.014096563681960106, 0.018855758011341095, 0.017362380400300026, 0.002826478099450469, 0.014488764107227325, 0.008092891424894333, 0.02510078437626362, 0.012799288146197796, -0.001499032718129456, -0.010845831595361233, -0.023441476747393608, 0.02683551423251629, 0.015869004651904106, 0.008952713571488857, 0.002969781868159771, -0.0008706646040081978, -0.005539821460843086, 0.02683551423251629, 0.02101285569369793, -0.016487473621964455, 0.012256242334842682, -0.010936339385807514, -0.004106783773750067, -0.021435225382447243, -0.0014999754494056106, -0.017045604065060616, 0.00742162624374032, -0.01184895820915699, -0.0040313610807061195, -0.021978270262479782, 0.008997967466711998, -0.005162706132978201, 0.0313156433403492, -0.020515063777565956, 0.0030772595200687647, 0.0008310675038956106, -0.0016517643816769123, -0.008213567547500134, 0.007387685589492321, -0.0035222554579377174, -0.02110336348414421, 0.04226706549525261, 0.008477548137307167, 0.017498143017292023, -0.008997967466711998, 0.017105942592024803, 0.02416553907096386, -0.019187618046998978, -0.023124700412154198, -0.013123607262969017, 0.010453632101416588, -0.02187267877161503, 0.00920915137976408, -0.01985134184360504, -0.01849372684955597, -0.0043028839863836765, 0.013266910798847675, -0.03858642280101776, -0.0041331821121275425, 0.013636483810842037, 0.012474969029426575, -0.016593066975474358, -0.018719995394349098, 0.02220453880727291, -0.005992359481751919, -0.007323576137423515, -0.024527568370103836, 0.007896791212260723, -0.01043100468814373, -0.015763413161039352, -0.017814919352531433, 0.008839579299092293, -0.01716628111898899, -0.00920915137976408, 0.003141369204968214, -0.011343623511493206, 0.015506974421441555, 0.007368830032646656, -0.007874163798987865, -0.001907259807921946, -0.016321543604135513, -0.019866425544023514, 0.006780530326068401, 0.002624721499159932, 0.0032507325522601604, 0.006369474809616804, 0.035478994250297546, 0.013402672484517097, -0.0069540031254291534, -0.011577434837818146, 0.015687990933656693, -0.006599515210837126, -0.007791198790073395, -0.004876098595559597, -0.008605767972767353, 0.009714486077427864, -0.0019025459187105298, 0.07506100088357925, 0.015227909199893475, 0.01460189837962389, -0.007338660769164562, -0.010167024098336697, -0.030501073226332664, -0.0207865871489048, 0.01731712743639946, 0.011087185703217983, 0.018071357160806656, -0.010529055260121822, -0.022415723651647568, 0.01357614528387785, 0.009458048269152641, -0.02841939777135849, 0.007349974010139704, 0.008997967466711998, 0.03556950017809868, -0.010687443427741528, 0.03879760578274727, 0.0012218530755490065, -0.0035184843000024557, 0.004461272154003382, -0.004061529878526926, -0.008718902245163918, 0.015567312948405743, 0.017830004915595055, 0.020680993795394897, 0.0032375336159020662, 0.014345459640026093, 0.012135565280914307, 0.004872327670454979, -0.00963906291872263, -0.007316033821552992, -0.003371409373357892, 0.014058852568268776, 0.01090617012232542, 0.005377661902457476, 0.0023626263719052076, 0.0004911924479529262, 0.01334233395755291, -0.009533470496535301, 0.02298893965780735, 0.015001640655100346, 0.004649829585105181, -0.008138144388794899, 0.009525928646326065, -0.001594254281371832, -0.0026624328456819057, 0.004016276448965073, -0.03638406842947006, -0.02086200937628746, 0.0051966467872262, -0.006154519040137529, 0.016819335520267487, -0.007527218200266361, 0.026428230106830597, -0.006275196094065905, 0.003684415016323328, 0.0009305315907113254, -0.015884090214967728, -0.008688732981681824, -0.023411307483911514, -0.012180819176137447, -0.011502011679112911, -0.016004767268896103, -0.003429862204939127, -0.022883346304297447, 0.0051966467872262, -0.009608893655240536, -0.002183496719226241, 0.009548555128276348, 0.01914236508309841, -0.030033450573682785, -0.014375628903508186, 0.02353198453783989, 0.014820625074207783, 0.03535831719636917, 0.01109472755342722, 0.008907459676265717, 0.02148047834634781, -0.005656727124005556, -0.010589392855763435, 0.0010936339385807514, -0.0068521820940077305, 0.0043028839863836765, -0.003599564079195261, -0.008997967466711998, -0.007406541611999273, -0.023637577891349792, -0.0030338913202285767, 0.01105701643973589, 0.009737113490700722, 0.000718875729944557, 0.026880767196416855, -0.0017997820395976305, 0.0038050918374210596, -0.013010472059249878, 0.03345765545964241, -0.00444995891302824, 0.020877094939351082, 0.012150649912655354, 0.0026379204355180264, 0.02620195969939232, -0.017603734508156776, 0.001959113171324134, 0.020409472286701202, 0.013070810586214066, -0.03197936341166496, 0.007704462390393019, -0.016743913292884827, 0.004649829585105181, 0.014594356529414654, 0.005520965903997421, -0.01976083405315876, -0.009563639760017395, -0.006173375062644482, -0.011124896816909313, -0.004223689436912537, -0.01921778731048107, -0.018131695687770844, 0.005777404177933931, -0.005166477523744106, -0.0332464724779129, 0.015597482211887836, 0.008002383634448051, -0.01597459800541401, -0.0059697325341403484, 0.010295243002474308, -0.02148047834634781, 0.0073763723485171795, 0.0029924085829406977, 0.011562350206077099, -0.009292117320001125, 0.00420860480517149, 0.0008532230276614428, 0.013334791176021099, -0.00032243345049209893, 0.022551486268639565, 0.0010898627806454897, 0.015167570672929287, 0.01145675778388977, 0.004476356785744429, 0.010227362625300884, 0.018478641286492348, 0.020137948915362358, -0.01660815067589283, -0.03659525513648987, 0.012784203514456749, -0.021118447184562683, 0.009986009448766708, -0.02636789157986641, -0.014669778756797314, -0.004374535754323006, 0.0032186778262257576, -0.00423123175278306, -0.031919024884700775, 0.022491147741675377, -0.007557387463748455, -0.0026322638150304556, -0.005713294260203838, 0.0020062525290995836, -0.008726444095373154, 0.0025907810777425766, -0.004898725543171167, -0.0022023525089025497, 0.01094388123601675, 0.028902104124426842, 0.016804249957203865, -0.012663526460528374, 0.007919417694211006, -0.0061394344083964825, 0.005562448408454657, -0.019353549927473068, -0.0011520867701619864, -0.017347296699881554, 0.012376919388771057, 0.02093743346631527, -0.01574832759797573, 0.004291570279747248, -0.009231778793036938, 0.0013001044280827045, 0.019187618046998978, 0.011305912397801876, 0.008364413864910603, -0.012610730715095997, 0.010461173951625824, 0.01357614528387785, -0.012942591682076454, 0.0014094678917899728, -0.014224783517420292, 0.040818944573402405, 0.009382625110447407, -0.001177542028017342, -0.03038039617240429, -0.0009041335433721542, 0.009269489906728268, 0.022868262603878975, 0.012859626673161983, -0.014413340948522091, -0.008839579299092293, 0.02218945510685444, 0.006610828451812267, 0.010876000858843327, 0.010242447257041931, -0.016034936532378197, 0.00470639718696475, -0.008726444095373154, 0.0048647853545844555, 0.0018733195029199123, -0.04519347846508026, -0.01740763522684574, 0.00791187584400177, -0.01361385639756918, -0.017694242298603058, 0.003386494005098939, 0.022626908496022224, -0.002247606171295047, 0.002258919645100832, -0.019187618046998978, 0.014534018002450466, -0.0037390966899693012, 0.007410312537103891, -0.0029678961727768183, -0.0067692166194319725, 0.0005138193955644965, -0.01488096360117197, 0.024587906897068024, -0.0002410001470707357, -0.007172729820013046, 0.017377465963363647, 0.011011762544512749, -0.016909843310713768, 0.009887958876788616, 0.006003673188388348, 0.014451052062213421, 0.0010917483596131206, 0.002560611814260483, 0.017196450382471085, -0.00857559870928526, -0.0002088275068672374, 0.020997771993279457, -0.005720836576074362, 0.008560514077544212, 0.015054436400532722, -0.01122294645756483, -0.006180917378515005, 0.007500820327550173, 0.0018884041346609592, -2.728192339418456e-05, -0.0016347941709682345, -0.0034751161001622677, -0.016562897711992264, 0.021374886855483055, 0.0032450759317725897, 0.0007136904168874025, 0.003959708847105503, -0.0074781933799386024, 0.023667747154831886, -0.011124896816909313, -0.0014584928285330534, 0.005449313670396805, -0.01865965686738491, 0.006331763230264187, 0.010415920056402683, 0.016713744029402733, -0.02567399851977825, 0.01184895820915699, -7.842816557968035e-05, 0.006659853272140026, 0.005151392892003059, 0.0034053497947752476, 0.007512133568525314, 0.008847121149301529, -0.002571925288066268, 0.00026680895825847983, -0.006003673188388348, -0.0087415287271142, 0.0024210792034864426, 0.007474421989172697, 0.012143108062446117, -0.004268943332135677, -4.9496364226797596e-05, -0.017905427142977715, -0.021073194220662117, -0.018086442723870277, -0.021435225382447243, -0.005207960028201342, 0.0017545282607898116, 0.00745933735743165, 0.0054078311659395695, -0.00556999072432518, 0.021359801292419434, -0.00028755029779858887, 0.0043405951000750065, 0.005996130872517824, -0.0004973206087015569, 0.01519773993641138, 0.005434229038655758, 0.015522059053182602, 0.009292117320001125, -0.01795068010687828, -0.01770932786166668, -0.015227909199893475, 0.00945050548762083, -0.001535801449790597, 0.029083119705319405, 0.014345459640026093, -0.013402672484517097, 0.01188666932284832, -0.0013698707334697247, 0.0013368731597438455, 0.005471940618008375, 0.0014500077813863754, -0.005343721713870764, -0.014194614253938198, 0.004943979438394308, 0.023984523490071297, -0.012339207343757153, 0.0086208526045084, -0.006867266725748777, 0.01998710259795189, -0.008628394454717636, 0.017302043735980988, -0.0005501167033798993, 0.023969437927007675, 0.005581303965300322, 0.0022758899722248316, 0.004959064070135355, -0.024376722052693367, 0.007146331947296858, -0.006633455399423838, -0.00731980474665761, -0.011562350206077099, 0.010589392855763435, -0.01460189837962389, 0.0010323526803404093, -0.003116856561973691, 0.002566268667578697, 0.010468716733157635, -0.023169955238699913, -0.008605767972767353, 0.006976630073040724, -0.01605002023279667, 0.008092891424894333, 0.031919024884700775, 0.004615889396518469, -0.016638319939374924, 0.0032771306578069925, -0.0015669134445488453, 0.014737660065293312, 0.009797451086342335, 0.00021224511147011071, 0.0030810306780040264, -0.017648989334702492, -0.011283284984529018, 0.008213567547500134, 0.006346847862005234, -0.012467426247894764, 0.016593066975474358, -0.020590486004948616, 0.031225133687257767, -0.017830004915595055, -0.003814519615843892, -0.004167122300714254, 0.001262392965145409, -0.011909295804798603, 0.004001191817224026, -0.010845831595361233, -0.0147979985922575, -0.007448024116456509, -0.01826745830476284, -0.02761991322040558, -0.009269489906728268, -0.017332211136817932, -0.00480067590251565, -0.004811989143490791, -0.0105818510055542, -0.008809410035610199, -0.005611473228782415, 0.05336933583021164, 0.0009936983697116375, -0.013078353367745876, -0.018946263939142227, 0.012965219095349312, 0.002083561150357127, 0.017528312280774117, 0.0036976139526814222, 0.0034939718898385763, 0.013055725954473019, -0.004351908806711435, 0.0015508860815316439, 0.004027589689940214, -0.008394583128392696, 0.01503180991858244, 0.01287471130490303, -0.010076516307890415, 0.03258274868130684, 0.010415920056402683, 0.0006208257982507348, 0.019338464364409447, 0.007919417694211006, 0.026322636753320694, 0.008967798203229904, -0.004216147121042013, -0.01850881054997444, 0.023169955238699913, 0.02952057309448719, 0.021193871274590492, -0.01259564608335495, 0.005845284555107355, 0.008967798203229904, -0.028902104124426842, 0.013538433238863945, 0.007372600957751274, -0.01660815067589283, 0.0216464102268219, 0.005528508219867945, -0.00035401683999225497, -0.0012020545545965433, 0.02810262143611908, -0.01591425947844982, 0.019504394382238388, -0.00987287424504757, 0.01605002023279667, -0.016894757747650146, 0.031768180429935455, 0.015778496861457825, -0.009420336224138737, 0.008394583128392696, -0.011026847176253796, -0.02252131700515747, -0.008356872014701366, -0.0015169456601142883, -0.025990774855017662, -0.0022230937611311674, -0.0029528115410357714, -0.026639413088560104, 0.004495212342590094, 0.0008532230276614428, -0.03897862136363983, -0.005351264029741287, -0.011117354035377502, 0.00028118648333474994, 0.006490151863545179, 0.0023626263719052076, 0.018750164657831192, 0.02071116305887699, -0.0037390966899693012, 0.002317372476682067, 0.004016276448965073, 0.01959490217268467, 0.02534213848412037, -0.00012480154691729695, -0.021933017298579216, -0.026156706735491753, -0.025146037340164185, 0.014707490801811218, 0.019082026556134224, -0.03252241015434265, 0.0018299511866644025, 0.007979756221175194, 0.01582375168800354, 0.005958419293165207, -0.0046950834803283215, -0.011298369616270065, 0.01417198684066534, 0.010506427846848965, -0.009186524897813797, -0.006422271020710468, -0.008786782622337341, 0.0183428805321455, 0.018207119777798653, -0.011788619682192802, 0.007101078052073717, 0.015446635894477367, 0.011426588520407677, 0.018523896113038063, -0.009043221361935139, -0.0004982633981853724, -0.011381334625184536, 0.010227362625300884, 0.005287154112011194, 0.010702528059482574, 0.005630329251289368, 0.002145785139873624, 0.001579169649630785, 0.005004317965358496, 0.010989135131239891, 0.018991518765687943, 0.012897337786853313, -0.021208954975008965, 0.010295243002474308, -0.006365703418850899, 0.0031753096263855696, -0.0068521820940077305, -0.005754777230322361, 0.02944515086710453, 0.011019304394721985, 0.0027359703090041876, -0.013561060652136803, 0.0030093789100646973, -0.015024267137050629, 0.0016866475343704224, 0.0005505881272256374, 0.008651021867990494, -0.01770932786166668, 0.008839579299092293, -0.0018403219291940331, 0.0015254307072609663, 0.0236074086278677, 0.019398802891373634, -0.015242993831634521, 0.0035184843000024557, -0.0018186378292739391, 0.013583687134087086, 0.010974050499498844, 0.024527568370103836, 0.009141271002590656, 0.003701385110616684, -0.011305912397801876, -0.017965765669941902, 0.0017592421500012279, 0.03062175028026104, 0.007881706580519676, -0.011381334625184536, 0.0306971725076437, 0.0149186747148633, 0.023441476747393608, 0.0003957352018915117, -0.0066636246629059315, -0.002330571645870805, -0.007346203085035086, 0.007308491505682468, 0.010559223592281342, 0.007429168559610844, 0.014594356529414654, -0.0015376870287582278, 0.045133139938116074, -0.004570635501295328, 0.01357614528387785, -0.009013052098453045, 0.002030764939263463, -0.01141150388866663, -0.0029490403831005096, -0.01770932786166668, 0.00048129321658052504, 0.0002261512418044731, -0.010642189532518387, 0.0183428805321455, -0.006840868853032589, 0.003486429573968053, 0.025055529549717903, 0.011268200352787971, 0.030817849561572075, -0.015175113454461098, 0.011200319975614548, 0.0017045604763552547, 0.00580380205065012, 0.008047637529671192, -0.010363124310970306, -0.014239868149161339, -0.00399742042645812, 0.028917189687490463, -0.00834178738296032, 0.005256985314190388, -0.0031225134152919054, 0.009571182541549206, -0.001164342975243926, 0.0163818821310997, -0.011381334625184536, -0.0032488468568772078, -0.013644025661051273, 0.03713829815387726, 0.014239868149161339, 0.0007311319932341576, -0.021586071699857712, -0.031375981867313385, 0.020907264202833176, -0.00921669416129589, -0.0025530694983899593, -0.010800577700138092, -0.01817695051431656, 0.009382625110447407, -0.007184043526649475, 0.024889599531888962, 0.021540816873311996, 0.012671069242060184, 0.0045932624489068985, -0.01865965686738491, 0.017528312280774117, -0.022626908496022224, -0.002040192950516939, 0.0020515064243227243, -0.002786880824714899, -0.001344415475614369, -0.00042778998613357544, -0.0029471549205482006, -0.025990774855017662, -0.02235538512468338, -0.0046762279234826565, 0.002741627162322402, 0.006165832746773958, -0.00010081937944050878, -0.002916985657066107, 0.003993649501353502, 0.01161514688283205, -0.02701652981340885, -0.0111852353438735, -0.01196963433176279, -0.007285864558070898, -0.0013519577914848924, 0.017347296699881554, 0.008055179379880428, 0.019459141418337822, -0.01826745830476284, 0.007033197674900293, -0.008206025697290897, 0.02000218816101551, 0.001355728949420154, -0.0057623195461928844, -0.004876098595559597, -0.008801867254078388, 0.006105494219809771, -0.00032879726495593786, -0.003774922573938966, -0.009186524897813797, 0.013870295137166977, 0.017679158598184586, -0.0033619815949350595, 9.256998600903898e-05, 0.005958419293165207, -0.014782913960516453, -0.0009121472830884159, 0.019323380663990974, -0.00329787191003561, -0.02502536028623581, -0.01389292161911726, -0.002826478099450469, 0.003801320679485798, 0.0036938427947461605, -0.029188713058829308, -0.0044084759429097176, 0.01503180991858244, 0.01342529896646738, -0.012286411598324776, 0.00671264948323369, 0.003756066784262657, 0.0020251083187758923, 0.007036968600004911, -0.02761991322040558, 0.016864588484168053, -0.014224783517420292, 0.014458594843745232, -0.0026115223299711943, -0.021058110520243645, 0.0035524247214198112, -0.013349875807762146, 0.01043100468814373, -0.0064939227886497974, -0.0023456562776118517, -0.01897643320262432, 0.0022664619609713554, 0.0001345829659840092, 0.01338004507124424, -0.010023720562458038, 0.030561411753296852, 0.0027887665200978518, -0.0046762279234826565, -0.005701981019228697, -0.01927812583744526, 0.0002465390134602785, -0.0031545681413263083, 0.016638319939374924, -0.002145785139873624, 0.0034524891525506973, -0.0158991739153862, -0.0036561312153935432, 0.006471295841038227, -0.03384985402226448, 0.004879869986325502, -0.006380788050591946, 0.0009955839486792684, -0.01998710259795189, -1.4406977243197616e-05, -0.0020948746241629124, 0.011592519469559193, -0.0014679207233712077, 0.021058110520243645, -0.008454921655356884, -0.005735921207815409, 0.0020062525290995836, -0.007365058641880751, -0.023984523490071297, 0.005158935207873583, 0.011962092481553555, -0.01574832759797573, -0.0008914059144444764, -0.023516900837421417, -0.024210792034864426, -0.01959490217268467, 0.012663526460528374, 0.004061529878526926, 0.010363124310970306, 0.009337371215224266, -0.020032355561852455, 0.009955840185284615, 0.00395216653123498, -0.003684415016323328, 0.006056469399482012, -0.00814568717032671, -0.0025756964460015297, -0.003141369204968214, -0.02746906690299511, -0.011622688733041286, -0.03149665519595146, 0.024105200543999672, -0.018916096538305283, -0.01662323623895645, 0.007089764811098576, -0.0023362282663583755, -0.0053889756090939045, -0.01668357476592064, 8.043158595683053e-05, 0.004989233333617449, -0.02832888998091221, 0.0029056721832603216, 0.0045065260492265224, -0.0052381292916834354, 0.002011909382417798, 0.006727734114974737, -0.0049515217542648315, 0.009691859595477581, 0.029973112046718597, -0.0033468969631940126, -0.018855758011341095, 0.014745201915502548, -0.0009673003223724663, -0.0066824802197515965, -0.0003610877611208707, -0.00818339828401804, -0.03698745369911194, -0.018463557586073875, 0.006618370767682791, 0.016004767268896103, -0.027122121304273605, -0.009028136730194092, 0.0064939227886497974, -0.011683027260005474, 0.014413340948522091, -0.03084801882505417, -0.003429862204939127, 0.0026643185410648584, -0.00042614011908881366, -0.0014462366234511137, -0.005901852156966925, 0.019006602466106415, 0.018312711268663406, 0.00468377023935318, 0.007327347062528133, 0.01189421210438013, 0.012520222924649715, 0.00482330285012722, -0.002728427993133664, -0.004080385901033878, 0.011660399846732616, -0.0030508614145219326, -0.017045604065060616, 0.005385204218327999, 0.019308295100927353, 0.006211086641997099, -0.01384766772389412, -0.0174830574542284, -0.012309038080275059, -0.011698111891746521, -0.012195903807878494, 0.007368830032646656, 0.0002910857438109815, -0.002828363562002778, 0.018991518765687943, -0.004001191817224026, 0.006565574556589127, -0.03599186986684799, -0.009669232182204723, -0.0012831343337893486, 0.009510844014585018, 0.02102794125676155, 0.013349875807762146, 0.01184141542762518, 0.013651568442583084, 0.012029972858726978, -0.00846246350556612, -0.0123542919754982, 0.005668040830641985, 0.03728914633393288, 0.009359997697174549, 0.017679158598184586, 0.0035750516690313816, 0.004514068365097046, -0.012603187933564186, -0.0020232228562235832, 0.0006000844878144562, 0.008258821442723274, -0.0062073152512311935, -0.011268200352787971, 0.009955840185284615, -0.0017714983550831676, 0.02211403287947178, 0.0011841414961963892, -0.00857559870928526, 0.01054413989186287, -0.0065806591883301735, -0.011388877406716347, -0.004057758953422308, 0.008809410035610199, 0.006754132453352213, 0.001166228554211557, 0.003573165973648429, -0.012075226753950119, 0.015959512442350388, -0.024497399106621742, 0.0011615146650001407, 0.009495759382843971, 0.002800079993903637, -0.006848411168903112, -0.0007094478933140635, -0.008025010116398335, -0.006214857567101717, 0.011788619682192802, -0.018599318340420723, 0.004857243038713932, 0.004023818764835596, 0.007410312537103891, 0.006486380472779274, -0.006840868853032589, -0.022626908496022224, -0.016985265538096428, 0.009465590119361877, -0.0029377269092947245, -0.007791198790073395, 0.027423813939094543, -0.03213021159172058, 0.0002401752135483548, 0.018237289041280746, -0.0063921017572283745, -0.00680692819878459, 0.0031394835095852613, -0.0054757120087742805, -0.00925440527498722, -0.005532279144972563, -0.002198581350967288, 0.029958026483654976, -9.404309093952179e-05, 0.009352455846965313, -0.013817498460412025, 0.022626908496022224, -0.0027227713726460934, -0.012844542041420937, 0.012037515640258789, -0.016095275059342384, 0.012565476819872856, 0.02315486967563629, 0.011939465068280697, -0.0052041891030967236, 0.0028641894459724426, -0.011864042840898037, 0.012935049831867218, 0.0006920063169673085, -0.0123542919754982, -0.00893762893974781, -0.001442465465515852, -0.012112938798964024, -0.0005043915007263422, 0.009028136730194092, -0.004438645206391811, 0.0238487608730793, 0.022687247022986412, 0.0008244679775089025, 0.003582593984901905, 0.016427135095000267, -0.026337722316384315, 0.01291242241859436, 0.005128765944391489, 0.006113036535680294, -0.01929321140050888, 0.003929539583623409, 0.02464824542403221, -0.018719995394349098, 0.00889991782605648, 0.014971471391618252, 0.018448472023010254, -0.00725946668535471, 0.025538237765431404, -0.0004218975664116442, -0.00458949152380228, -0.006822012830525637, 0.021284379065036774, 0.008402124978601933, -0.005751005839556456, 0.004351908806711435, 0.007410312537103891, -0.0029848662670701742, -0.00032290484523400664, -0.008990424685180187, -0.021450309082865715, 0.014933759346604347, -0.03991386666893959, -0.00945050548762083, -0.018222203478217125, 0.02313978597521782, -0.010513970628380775, -0.007761029526591301, 0.0015669134445488453, 0.005882996134459972, -0.0027604829519987106, -0.007112391758710146, 0.020168118178844452, -0.019715579226613045, -0.007761029526591301, -0.012022431008517742, -0.011403962038457394, 0.010574308224022388, 0.008960255421698093, 0.014466136693954468, 0.013055725954473019, 0.01061956211924553, -0.023124700412154198, -0.0002080025733448565, 0.008349329233169556, -0.015838835388422012, 0.02651873789727688, -0.00442733196541667, 0.02393926866352558, 0.005434229038655758, -0.02140505611896515, -0.010174566879868507, -0.003754181321710348, -0.01856914907693863, -0.007606412284076214, 0.019066940993070602, 0.01651764288544655, 0.0199267640709877, 0.01432283315807581, -0.00716518796980381, -0.009986009448766708, 2.7709123969543725e-05, -0.007874163798987865, -0.006678709294646978, -0.005087283439934254, 0.003458145773038268, 0.013244284316897392, 0.005068427417427301, 0.012218530289828777, 0.004600804764777422, 0.012467426247894764, 0.005913165397942066, -0.004525381606072187, -0.02464824542403221, -0.020726248621940613, 0.007926960475742817, -0.004242545459419489, -0.027046699076890945, 0.010785493068397045, -0.005253213923424482, 0.022415723651647568, -0.004793133586645126, 0.009948297403752804, -0.001955342013388872, 0.0014104106230661273, -0.005091054365038872, 0.006693793926388025, 0.013825041241943836, -0.007896791212260723, 0.007455566432327032, 0.020484894514083862, 0.0007862850907258689, -0.024225877597928047, 0.004615889396518469, -0.014187071472406387, 0.010302785784006119, -0.004928894806653261, -0.013161318376660347, 0.016261205077171326, -0.005622786935418844, 0.01787525787949562, 0.0019327150657773018, -0.0029037867207080126, -0.018719995394349098, 0.004970377776771784, -0.016879674047231674, -0.009337371215224266, -0.009691859595477581, -0.00763281062245369, -0.0020760188344866037, 0.002626606961712241, -0.012158192694187164, 0.004065301269292831, -0.0062261708080768585, -0.0192027036100626, 0.007101078052073717, 0.01455664448440075, 0.02905295044183731, -0.011796161532402039, 0.009593809023499489, 0.011524639092385769, -0.00837949849665165, -0.017603734508156776, -0.007436710875481367, -0.035931531339883804, 0.015793582424521446, -0.0025643829721957445, -0.002189153339713812, -0.017845088616013527, -0.008288990706205368, -0.010657274164259434, 0.024286216124892235, 0.0031979363411664963, 0.02148047834634781, -0.013523349538445473, 0.0306971725076437, -0.00480067590251565, 0.023275546729564667, -0.020092694088816643, -0.0033751805312931538, 0.0036127630155533552, 0.001022924785502255, 0.01019719336181879, -0.00030310629517771304, -0.014737660065293312, -0.0023833676241338253, -0.0004959063953720033, -0.010770408436655998, -0.00932228658348322, -0.010053889825940132, -0.02416553907096386, 0.00714256102219224, -0.01248251087963581, 0.014760286547243595, -0.007874163798987865, 0.02063574083149433, -0.004374535754323006, 0.006788072641938925, -0.002060934202745557, 0.015242993831634521, -0.02015303261578083, 0.009050763212144375, 0.028313804417848587, -0.018931180238723755, 0.021374886855483055, -0.00885466393083334, -0.015258078463375568, -0.01645730435848236, -0.020741332322359085, 0.016231035813689232, 0.017664073035120964, 0.0006269539007917047, -0.00822865217924118, 0.01716628111898899, 0.03882777690887451, 0.021857593208551407, -0.009329828433692455, 0.018388135358691216, 0.008869748562574387, -0.00229474576190114, -0.00417089369148016, -0.009903043508529663, -0.009156355634331703, 0.004766735248267651, -0.0011181463487446308, 0.017769666388630867, -0.008877290412783623, 0.02282300777733326, -0.0079495869576931, -0.005532279144972563, -0.013485637493431568, 0.006173375062644482, 0.006735276430845261, 0.005758548155426979, -0.027197543531656265, -0.018327796831727028, 0.015959512442350388, -0.004201062489300966, 0.0036881861742585897, -0.008847121149301529, 0.0047818198800086975, -0.027453983202576637, 0.013138691894710064, -0.00375795247964561, -0.010008635930716991, -0.022566569969058037, 0.017030520364642143, 0.010106685571372509, 0.0068333265371620655, 0.033729176968336105, 0.010438547469675541, -0.0033506681211292744, 0.009314743801951408, 0.0007641295669600368, 0.005226816050708294, -0.008711359463632107, -0.007768571842461824, 0.006079096347093582, 0.000514762185048312, 0.010046347044408321, 0.004811989143490791, 0.018523896113038063, 0.009035678580403328, 0.007331118453294039, 0.0016395080601796508, -0.0070407395251095295, 0.008568055927753448, 0.003884285921230912, -0.027257882058620453, -0.015280705876648426, 0.0004954350297339261, 0.0011153180385008454, 0.006128121167421341, 0.0013085895916447043, 0.02227996289730072, 0.021827423945069313, -0.017814919352531433, 0.002583238761872053, 0.019066940993070602, 0.014353002421557903, -0.004080385901033878, 0.018478641286492348, 0.017830004915595055, -0.00021024169109296054, 0.005109910387545824, 0.0031809662468731403, 0.028389228507876396, -0.004608347080647945, 0.005551134701818228, 0.013447926379740238, -0.0030056077521294355, 0.0056604985147714615, 0.005558677017688751, -0.0026171791832894087, 0.01985134184360504, -0.015522059053182602, 0.020877094939351082, 0.0024833031930029392, 0.02597569115459919, -0.007768571842461824, -0.00048647852963767946, 0.011109812185168266, -0.005981046240776777, 0.003514713142067194, -0.003658016910776496, 0.005272069945931435, -0.005328637082129717, -0.007874163798987865, 0.010913711972534657, 0.0024248503614217043, -0.013877836987376213, -0.0017055032076314092, 0.006678709294646978, -0.01054413989186287, -0.0021175015717744827, 0.016789166256785393, 0.014903590083122253, -0.01535612903535366, -0.010559223592281342, 0.015869004651904106, 0.018146781250834465, -0.00308857299387455, -0.0006014986429363489, 0.003774922573938966, -0.006716420873999596, -0.007730860263109207, -0.01389292161911726, -0.028072452172636986, -0.017422718927264214, -0.01740763522684574, 0.007821368053555489, -0.0027076867409050465, -0.000514762185048312, -0.005317323375493288, 0.012754034250974655, -0.017498143017292023, 0.0002470104082021862, -0.015929343178868294, -0.004065301269292831, -0.006248797755688429, 0.009865332394838333, -0.000921103754080832, -0.03306545689702034, 0.007776114158332348, 0.0034223198890686035, 0.01389292161911726, 0.037651177495718, -0.001720587839372456, -0.009782366454601288, 0.0018365507712587714, -0.0007726146723143756, -0.005988588556647301, -0.016034936532378197, -0.0039483956061303616, -0.010785493068397045, 0.003418548731133342, -0.012950134463608265, -0.008130602538585663, 0.0017903541447594762, 0.009495759382843971, -0.025251630693674088, 0.02597569115459919, 0.00857559870928526, -0.0002232050319435075, -0.010438547469675541, 0.009948297403752804, 0.0060828672721982, 0.001214310759678483, -0.032462071627378464, -0.006418499629944563, -0.005283383186906576, -0.004431102890521288, -0.02329063042998314, -0.01428512204438448, 0.02086200937628746, -0.0033506681211292744, 0.0017385007813572884, 0.01668357476592064, 0.004698854871094227, -0.0022608053404837847, 0.01516002882272005, -0.0036900716368108988, -0.004400933627039194, 0.00039526380714960396, -0.010219820775091648, 0.00818339828401804, -0.004570635501295328, 0.022159285843372345, -0.02440689131617546, -0.014730117283761501, -0.00917898304760456, 0.008907459676265717, -0.010989135131239891, -0.008492632769048214, -0.0008263535564765334, 0.010174566879868507, -0.018916096538305283, 0.0004567807191051543, 0.01208276953548193, -0.00405398802831769, -0.031375981867313385, -0.015838835388422012, 0.0008178684511221945, -0.005177790764719248, -0.019459141418337822, 0.0056982096284627914, 0.003473230404779315, -0.024075031280517578, 0.018674742430448532, 0.023185038939118385, 0.055782873183488846, -0.011192777194082737, -0.032009534537792206, -0.02037930302321911, -0.004295341670513153, 0.01105701643973589, -0.005253213923424482, 0.004483899101614952, 0.023818591609597206, 0.03472476080060005, 0.011901753954589367, -0.007659208495169878, 0.0019459141185507178, 0.0042387740686535835, 0.003058403730392456, -0.006904978305101395, -0.033819686621427536, 0.01377224549651146, -0.020575402304530144, -0.02015303261578083, 0.009616436436772346, -0.019715579226613045, -0.002954697236418724, 0.02110336348414421, -0.021917931735515594, 0.005351264029741287, 0.010468716733157635, 0.015325959771871567, -0.0013783558970317245, 0.008749071508646011, -0.0021910390350967646, -0.0006755075301043689, 0.046882953494787216, 0.0004053987795487046, -0.0043405951000750065, -0.0044047050178050995, 0.009375082328915596, -0.028374142944812775, 0.0002545527240727097, 0.005422915797680616, -0.018086442723870277, -0.01109472755342722, 0.0010238676331937313, -0.004057758953422308, 0.011962092481553555, 0.015190198086202145, -0.01770932786166668, -0.013485637493431568, 0.003256389172747731, -0.005528508219867945, -0.017573565244674683, 0.01129082776606083, 0.0067503610625863075, -0.006086638662964106, 0.0013434727443382144, 0.0024191937409341335, 0.012618272565305233, 0.013010472059249878, 0.02457282319664955, 0.00329787191003561, -0.004431102890521288, 0.007323576137423515, 0.008236194960772991, -0.002200466813519597, -0.01468486338853836, 0.020997771993279457, 0.011109812185168266, 0.0032205632887780666, -0.0064788381569087505, 0.016472389921545982, 0.002289088908582926, -0.0037390966899693012, -0.01188666932284832, -0.0141267329454422, 0.023713000118732452, 0.0066636246629059315, -0.03502645343542099, 0.010023720562458038, 0.016125444322824478, 0.017422718927264214, 0.0037636091001331806, 0.013726991601288319, 0.004698854871094227, -0.01034803967922926, -0.0014047538861632347, -0.007383914664387703, 0.0007278322009369731, 0.020741332322359085, -0.004216147121042013, -0.010876000858843327, -0.004555550869554281, 0.0043707643635571, -0.011637773364782333, 0.0007235896773636341, 0.005147621501237154, 0.021389970555901527, -0.012331665493547916, 0.007595099043101072, -0.00046173034934327006, -0.0009574010618962348, 0.013953260146081448, 0.006957774516195059, 0.01456418726593256, -0.020047441124916077, 0.008198482915759087, -0.014164444990456104, -0.012384461238980293, -0.02345656231045723, -0.02573433704674244, -0.00818339828401804, -0.016472389921545982, 0.003918226342648268, -0.015190198086202145, -0.014224783517420292, 0.011735823005437851, -0.005871682893484831, -0.020816756412386894, -0.0055963885970413685, 0.003099886467680335, 0.005241900682449341, 0.011102269403636456, -0.0013651568442583084, -0.007987299002707005, -0.019398802891373634, -0.007233068346977234, 0.010363124310970306, 0.007059595547616482, 0.01463960949331522, -0.006414728704839945, 0.024497399106621742, 0.0026643185410648584, 0.005626557860523462, 0.012278868816792965, 0.012369376607239246, 0.0025945522356778383, -0.006196002010256052, -0.01015193946659565, -0.03092344105243683, -0.004581949207931757, -0.005434229038655758, 0.0011483156122267246, 0.007557387463748455, -0.02330571599304676, 0.015129859559237957, -0.007670522201806307, 0.010016177780926228, -0.009903043508529663, 0.02903786674141884, 0.018131695687770844, 0.020726248621940613, 0.008002383634448051, 0.0036467034369707108, -0.004389620386064053, 0.0004355679848231375, 0.02378842420876026, -0.0003238476347178221, -0.012422173283994198, 0.001051208470016718, 0.000582171487621963, 0.01315377652645111, -0.009774824604392052, 0.002232521539554, 0.0038692012894898653, -0.02077150158584118, -0.0038692012894898653, 0.015054436400532722, -0.0072104413993656635, -0.011939465068280697, 0.010031262412667274, -0.014715032652020454, 0.013553517870604992, -0.0009955839486792684, -0.013025556690990925, 0.0111852353438735, 0.023969437927007675, 0.021555902436375618, 0.034121379256248474, 0.011720738373696804, -0.019730664789676666, 0.0271522905677557, 0.010310327634215355, 0.021359801292419434, -0.011517096310853958, -0.003573165973648429, -0.0014254952548071742, 0.013364960439503193, -0.005468169692903757, -0.003443061374127865, 0.00680692819878459, 0.020590486004948616, -0.01239954587072134, -0.0040690721943974495, 0.006569345947355032, -0.0044235605746507645, 0.014677321538329124, 0.024859430268406868, 0.002413536887615919, -0.019323380663990974, -0.004129410721361637, 0.01850881054997444, -0.026895852759480476, -0.007217983715236187, 0.004461272154003382, 0.004306654911488295, -0.02614162117242813, 0.0038465745747089386, -0.0036372756585478783, 0.023411307483911514, -0.0022080091293901205, 0.00133404484950006, -0.028042282909154892, 0.00046455871779471636, 0.010612020269036293, -0.006788072641938925, 0.03424205631017685, -0.0017394436290487647, -0.006350619252771139, 0.016864588484168053, -0.014692406170070171, 0.0063091362826526165, -0.010453632101416588, -0.0014679207233712077, -0.008673648349940777, 0.004698854871094227, -0.012112938798964024, -0.005438000429421663, 0.007383914664387703, 0.0024229648988693953, -0.004299112595617771, -0.0037221263628453016, -0.03258274868130684, -0.009307201951742172, 0.0014434081967920065, 0.022340301424264908, -0.006067782640457153, 0.004242545459419489], "8d8dadf8-3f5d-4388-8d63-acca8868c074": [-0.04057317599654198, 0.005643974523991346, 0.0019479813054203987, 0.036601364612579346, -0.0005994783132337034, -0.06856894493103027, -0.03323635458946228, 0.04950975626707077, -0.03516709804534912, 0.00851595401763916, 0.029788600280880928, 0.008936580270528793, -0.007516105193644762, -0.011515500023961067, -0.01730772852897644, 0.027733737602829933, -0.038201119750738144, 0.02221733145415783, 0.022258704528212547, -0.04650331288576126, 0.0599081851541996, 0.014480569399893284, -0.006364555098116398, 0.022024257108569145, -0.039056163281202316, -0.017955906689167023, -0.04076625034213066, 0.025485802441835403, -0.014246121980249882, 0.021100258454680443, -0.0040476638823747635, -0.018397219479084015, 0.002878875005990267, 0.023306820541620255, 0.04004911705851555, 0.018121398985385895, 0.0030771209858357906, 0.047275610268116, -0.009267564862966537, -0.04446224495768547, -0.02678215689957142, 0.048213399946689606, -0.028271587565541267, 0.004399335011839867, -0.04197986051440239, 0.009591653011739254, 0.025609921663999557, -0.027513081207871437, -0.01703190803527832, -0.0010860427282750607, -0.00032947605359368026, -0.055329564958810806, -0.01435645017772913, -0.01810760796070099, 0.013749645091593266, -0.05908072367310524, -0.013701376505196095, 0.0007231665076687932, -0.017018117010593414, -0.03362250328063965, -0.002244488336145878, -0.01477018091827631, -0.010508756153285503, -0.006754151079803705, -0.036849603056907654, 0.012129200622439384, 0.007454045582562685, -0.011425858363509178, -0.024575594812631607, -0.001663541654124856, 0.013066990301012993, 0.04744110256433487, -0.0005559504497796297, 0.03433963656425476, 0.03243647515773773, -0.02118300460278988, 0.023072373121976852, 0.01394271943718195, -0.006516256369650364, -0.01248776726424694, -0.005395736079663038, 0.0026737337466329336, 0.0399387888610363, -0.010805263184010983, 0.08666276186704636, 0.027251051738858223, -0.0179007425904274, -0.043000396341085434, -0.017707668244838715, -0.06553491950035095, 0.024575594812631607, 0.012804960831999779, 0.008136700838804245, -0.02607881650328636, -0.003661515424028039, 0.022920671850442886, 0.024368729442358017, 0.005264721345156431, 0.03174692392349243, -0.056818995624780655, -0.01166030578315258, 0.013908241875469685, 0.004420021548867226, -0.0018928173230960965, 0.02118300460278988, 0.0681827962398529, -0.019321216270327568, -0.01990043930709362, -0.008440103381872177, 0.050116561353206635, 0.05535714700818062, -0.00048009984311647713, -0.03216065466403961, -0.0034253441262990236, -0.019169514998793602, -0.0004143770202063024, -0.0016385454218834639, 0.02449284866452217, -0.019776320084929466, -0.012984244152903557, -0.008777983486652374, -0.019155723974108696, -0.01730772852897644, 0.045868925750255585, -0.008226342499256134, 0.022534525021910667, 0.01758354902267456, -0.004106275737285614, 0.015239075757563114, -0.02045208029448986, -0.035635992884635925, 0.032601967453956604, 0.016521640121936798, 0.004526901990175247, -0.009233087301254272, -0.02052103541791439, 0.017156027257442474, 0.07215461134910583, -0.0009265840635634959, 0.048765040934085846, -0.03527742624282837, -0.03464303910732269, 0.013963405974209309, 0.007088583428412676, -0.029154213145375252, 0.006585211493074894, -0.03665652871131897, 0.007440254557877779, -0.012315379455685616, 0.0369599312543869, -0.05290234833955765, -0.0243273563683033, 0.016425102949142456, 0.01700432598590851, 0.0002206562930950895, -0.007336821872740984, -0.008977953344583511, 0.0221483763307333, -0.006054257042706013, 0.007043762598186731, 0.015280448831617832, -0.03378799557685852, -0.005678451620042324, 0.02809230424463749, 0.05006139725446701, 0.01147412694990635, 0.02515481784939766, 0.02190013788640499, -0.03709783777594566, 0.027278633788228035, 0.023472312837839127, -0.022851716727018356, -0.00846768543124199, 0.026244308799505234, 0.011825798079371452, -0.014232330955564976, 0.06167343631386757, 0.012239528819918633, 0.019390171393752098, -0.000691274821292609, -0.02460317686200142, 0.021334705874323845, -0.03406381607055664, -0.015349403955042362, 0.018700620159506798, 0.0032874341122806072, -0.0024117042776197195, 0.021238168701529503, 0.01207403652369976, 0.0023892938625067472, -0.005168184172362089, -0.0135979438200593, -0.019569454714655876, -0.0281198862940073, -0.0108466362580657, -0.014315077103674412, 0.015873461961746216, 0.012894602492451668, 0.006626584567129612, 0.029485197737812996, -0.012467080727219582, -0.043303798884153366, -0.02791302092373371, 0.0016652655322104692, -0.0408489964902401, 0.011832693591713905, -0.016880206763744354, 0.0012713595060631633, -0.0009938152506947517, -0.02678215689957142, 0.029374869540333748, -0.029623107984662056, 0.022065630182623863, 0.016563013195991516, -0.0023910177405923605, 0.002730621723458171, -0.028795646503567696, 0.04093174263834953, -0.011991290375590324, -0.0422280989587307, -0.029071466997265816, -0.010474278591573238, -0.004482081159949303, -0.04181436821818352, -0.008426312357187271, -0.038918253034353256, -0.019045395776629448, 0.020410707220435143, -0.039718132466077805, -0.02148640714585781, 0.009964010678231716, 0.008936580270528793, -0.012480871751904488, -0.029043884947896004, -0.005333676468580961, 0.03312602639198303, -0.024451475590467453, 0.010722517035901546, 4.158180672675371e-06, -0.012687737122178078, 0.0037959779147058725, 0.03952505812048912, 0.006436957977712154, -0.0027478605043143034, 0.0013696205569431186, 0.020507244393229485, 0.05306784063577652, 0.002901285421103239, 0.02566508576273918, -0.02166569046676159, -0.006957568693906069, -0.02532031014561653, -0.016328565776348114, -0.03105737268924713, -0.034808531403541565, 0.05521923676133156, 0.03119528293609619, 0.024865206331014633, 0.024092908948659897, -0.03560841083526611, -0.01551489531993866, 0.011832693591713905, -0.02104509435594082, 0.020190050825476646, 0.014646061696112156, -0.002163466066122055, -0.005113020073622465, -0.007819507271051407, 0.0142874950543046, 0.03502918779850006, -0.00846768543124199, -0.0038511420134454966, -0.013515197671949863, 0.013487615622580051, 0.009584757499396801, -0.011239680461585522, 0.007674701977521181, 0.020617572590708733, -0.00487167714163661, -0.002627189038321376, -0.005171631928533316, 0.016631968319416046, 0.02487899735569954, 0.0023979132529348135, 0.005113020073622465, 0.016438893973827362, -0.010619084350764751, -0.010322577320039272, -0.003037471789866686, -0.00047104948316700757, 0.012308483943343163, -0.028657736256718636, -0.0369599312543869, 0.029981674626469612, 0.05207488685846329, 0.013480720110237598, -0.04117998108267784, -0.044241588562726974, -0.019845275208353996, 0.012584304437041283, -0.03334668278694153, -0.01730772852897644, 0.02014867775142193, -0.029430033639073372, 0.014935673214495182, -0.03720816597342491, 0.04186953231692314, 0.014549524523317814, -0.016728505492210388, 0.04597925394773483, 0.029623107984662056, -0.04517937824130058, 0.004175230860710144, -0.019390171393752098, 0.0005792228039354086, 0.03505676984786987, 0.0004154544440098107, -0.004850990604609251, -0.0025220324750989676, -0.00830908864736557, 0.0014661576133221388, 0.022796552628278732, -0.04948217421770096, 0.026933858171105385, 0.018700620159506798, -0.03908374533057213, 0.02435493841767311, -0.01299113966524601, -0.037677060812711716, -0.031664177775382996, -0.017955906689167023, -0.014328868128359318, -0.036187633872032166, 0.0005637079011648893, -0.04755143076181412, 0.00267718150280416, -0.021582944318652153, -0.08274611085653305, -0.0009024497703649104, -0.024451475590467453, -0.003682201961055398, -0.015832088887691498, -0.03491885960102081, 0.0048958114348351955, -0.0012549826642498374, 0.014094420708715916, 0.01241881214082241, -0.004278663545846939, -0.030202331021428108, -0.032353729009628296, 0.0008360805222764611, -0.01879715733230114, 0.0024375624489039183, 0.035360172390937805, 0.008908998221158981, -0.014797762967646122, -0.019155723974108696, 0.03147110342979431, 0.008095327764749527, -0.009246878325939178, 0.015528686344623566, -0.00678862864151597, 0.00639213714748621, -0.02823021449148655, 0.04504146799445152, 0.020755482837557793, 0.023141328245401382, -0.006143898703157902, 0.004154544323682785, -0.0399387888610363, 0.022341450676321983, 0.019059186801314354, 0.003864932805299759, 0.009212400764226913, -0.023348193615674973, 0.0006404204177670181, 0.025265146046876907, -0.0034667172003537416, -0.011039710603654385, 0.020231423899531364, 0.009943324141204357, -0.013425556011497974, -0.029457615688443184, -0.014190957881510258, 0.09383408725261688, 0.01737668365240097, -0.004254529252648354, 0.0017531831981614232, 0.010832845233380795, 0.0049302889965474606, -0.0399387888610363, -0.005906003527343273, -0.04402093216776848, -0.047909997403621674, -0.01022604014724493, 0.008557327091693878, 0.00487167714163661, -0.010377741418778896, 0.02038312517106533, -0.049868322908878326, -0.00707479240372777, 0.007467836607247591, 0.020852020010352135, 0.004099380224943161, 0.01806623488664627, -0.027347588911652565, -0.020617572590708733, 0.022258704528212547, 0.007474732119590044, 0.016163073480129242, 0.01297045312821865, 0.005881869234144688, 0.03552566468715668, 0.011019024066627026, 0.02380329743027687, -0.003620142349973321, 0.03240889310836792, -0.030450569465756416, -0.06807246804237366, -0.008040163666009903, 0.027320006862282753, 0.03651861846446991, -3.7602072552544996e-05, 0.028354333713650703, 0.030174748972058296, -0.01022604014724493, 0.013963405974209309, 0.025816787034273148, -0.018810948356986046, 0.0010351883247494698, -0.003415000857785344, 0.05946687236428261, 0.005733615718781948, -0.009336519055068493, -0.005654317792505026, -0.005278512369841337, -0.039580222219228745, 0.0018221383215859532, 0.039442311972379684, 0.025168608874082565, 0.02231386862695217, 0.008702132850885391, 0.008164282888174057, 0.0046889460645616055, -0.02414807304739952, -0.008129805326461792, -0.04939942806959152, -0.012067141011357307, 0.018438592553138733, 0.0031650387682020664, -0.007805716246366501, 0.030533315613865852, -0.01696295291185379, 0.01269463263452053, 0.016852624714374542, 0.025554757565259933, 0.017611131072044373, -0.008502162992954254, 0.006350764073431492, -0.04523454234004021, -0.0035080902744084597, -0.011370694264769554, -0.004633782431483269, 0.02166569046676159, -0.02559613063931465, 0.0020703766494989395, 0.01147412694990635, 0.018976440653204918, 0.0065679727122187614, 0.014328868128359318, 0.006805867422372103, 0.04882020503282547, -0.02442389354109764, -0.011501708999276161, -0.024961743503808975, 0.003156419377774, -0.016990534961223602, -0.009102072566747665, -0.005478482227772474, 0.018893694505095482, -0.0100398613139987, -0.04688946157693863, -0.013294542208313942, -0.002780614187940955, -0.003737366059795022, -0.006947225425392389, 0.019197097048163414, -0.004633782431483269, 0.011370694264769554, -0.015211493708193302, 0.017362892627716064, 0.0046820505522191525, -0.013708272017538548, 0.022272495552897453, -0.0035477394703775644, -0.03500160574913025, -0.010736308060586452, -0.022341450676321983, -0.03406381607055664, -0.03560841083526611, 0.03171934187412262, -0.025375474244356155, -0.012315379455685616, 0.024685923010110855, -0.007860880345106125, -0.027995767071843147, -0.059577200561761856, -0.004971662070602179, -0.049151189625263214, -0.005254378076642752, -0.016728505492210388, 0.0014161651488393545, -0.05803260579705238, -0.0009015878313221037, -0.01682504266500473, 0.0028116439934819937, -0.010632875375449657, -0.021996675059199333, 0.015376986004412174, -0.00033486317261122167, -0.006143898703157902, -0.040131863206624985, -0.022300077602267265, -0.0015247694682329893, -0.023486103862524033, -0.005175079684704542, -0.0030771209858357906, -0.008619386702775955, 0.016976743936538696, -0.016700923442840576, 0.009419265203177929, 0.031636595726013184, -0.006226644851267338, 0.010012279264628887, 0.00915723666548729, -0.012018872424960136, 0.001327385543845594, 0.013473824597895145, 0.038890670984983444, 0.008191864937543869, -0.006792076397687197, 0.003115046303719282, -0.010067443363368511, 0.014728807844221592, -0.014163375832140446, 0.010563920252025127, -0.020231423899531364, 0.005688794888556004, 0.0017945562722161412, 0.0003475767734926194, -0.018162772059440613, 0.017473220825195312, -0.02343093976378441, -0.0014584001619368792, 0.011267262510955334, -0.028078513219952583, -0.02384467050433159, -0.012584304437041283, 0.010612188838422298, -0.023237865418195724, -0.038476940244436264, 0.024479057639837265, 0.030064420774579048, 0.018535129725933075, -0.015197702683508396, -0.008874520659446716, -0.020093513652682304, -0.00671967351809144, -0.022120794281363487, -0.0028771511279046535, 0.015528686344623566, -0.03436721861362457, 0.030671225860714912, -0.00158079550601542, -0.004551036283373833, 0.03654620051383972, -0.016811251640319824, 0.015887252986431122, -0.038339029997587204, -0.008619386702775955, 0.01463227067142725, -0.012618781998753548, -0.0032133073545992374, -0.010791472159326077, 0.0020927870646119118, -0.009984697215259075, -0.0017454257467761636, -0.038201119750738144, 0.007778134196996689, 0.008060850203037262, 0.02194151096045971, 0.006423166953027248, -0.0002837933134287596, -0.023279238492250443, -0.029347287490963936, -0.010026070289313793, 0.03602214157581329, 0.014687434770166874, 0.0014601240400224924, 0.0015911387745290995, 0.0035080902744084597, -0.007036867085844278, 0.010529442690312862, -0.042752157896757126, -0.050116561353206635, 0.0415385477244854, 0.007050658110529184, 0.02754066325724125, 0.007405776996165514, 0.01907297782599926, -0.0021031303331255913, 0.0014308181125670671, 0.0009610616252757609, 0.006419719196856022, 0.01285322941839695, -0.013949614949524403, 0.0016325118485838175, 0.029071466997265816, 0.028409497812390327, 0.037401240319013596, 0.023637805134058, 0.01017777156084776, 0.031939998269081116, -0.05742580071091652, 0.030009256675839424, 0.029567943885922432, -0.017114654183387756, 0.01817656308412552, -0.007516105193644762, -0.0021927719935774803, 0.00016700061678420752, -0.00874350592494011, 0.007798820734024048, -0.016949161887168884, 0.03334668278694153, -0.001553213456645608, 0.028216423466801643, 0.027347588911652565, -0.046144746243953705, -0.04551035910844803, -0.015225284732878208, -0.0026513233315199614, -0.00022712083591613919, 0.013887555338442326, -0.007660910952836275, -0.01734910160303116, 0.0008494405192323029, -0.00789535790681839, 0.030147166922688484, 0.006133555434644222, -0.037511568516492844, 0.01172926090657711, 0.007833298295736313, 0.025554757565259933, 0.0040062908083200455, -0.007185120601207018, 0.011432753875851631, 0.008805565536022186, -0.0008628005743958056, 0.008191864937543869, 0.009515802375972271, -0.018535129725933075, -0.003920096904039383, 0.023306820541620255, 0.0037683958653360605, 0.007764343172311783, -0.004526901990175247, -0.009233087301254272, 0.0299540925770998, 0.0004615681536961347, 0.004954423289746046, -0.011012128554284573, 0.026492547243833542, 0.003182277549058199, -0.010032965801656246, -0.009481324814260006, -0.023927416652441025, -0.0004986315034329891, 0.0006649856804870069, -0.009012430906295776, -0.013073885813355446, -0.02818884141743183, -0.019197097048163414, 0.03679443895816803, -0.008191864937543869, 0.004388991743326187, -0.014673643745481968, 0.023748133331537247, -0.015749342739582062, 0.005113020073622465, -0.02256210707128048, -0.0010170876048505306, -0.0002491002669557929, 0.03395348787307739, 0.0033012251369655132, -0.012315379455685616, 0.001043807715177536, -0.024175655096769333, -0.0019341902807354927, 0.013742749579250813, -0.0440760962665081, -0.011977499350905418, 0.0018928173230960965, -0.032905369997024536, 0.004719975870102644, 0.032464057207107544, -0.009695085696876049, -0.031250447034835815, 0.02712693251669407, 0.0003753742785193026, -0.0013101467629894614, 0.010784576646983624, 0.021238168701529503, 0.006192167289555073, 0.0030753971077501774, -0.010253622196614742, -0.0011774081503972411, 0.011308635585010052, -0.006161137484014034, -0.0026254651602357626, -0.0019859066233038902, 0.005406079348176718, -0.03720816597342491, -0.019707364961504936, -0.017390474677085876, -0.008198760449886322, 0.023513685911893845, 0.010274308733642101, 0.04093174263834953, 0.005543989595025778, -0.0017592167714610696, -0.0038683805614709854, 0.00748852314427495, 0.001737668295390904, -0.0006395584787242115, 0.03307086229324341, 0.033732831478118896, 0.0015471798833459616, 0.04644814878702164, -0.018769575282931328, 0.01728014647960663, -0.017542175948619843, 0.04049042984843254, -0.0415385477244854, -0.022479360923171043, 0.0010101920925080776, 0.03569115698337555, -0.016673341393470764, 0.01707328110933304, -0.01161203719675541, 0.007357508409768343, -0.008143596351146698, 0.03996637091040611, 0.02203804813325405, 0.032629549503326416, 0.007674701977521181, 0.04236600920557976, 0.018893694505095482, -0.0119361262768507, 0.015128747560083866, 0.020852020010352135, -0.011301740072667599, 0.016590595245361328, -0.04366236552596092, -0.00446484237909317, 0.020962348207831383, 0.029898928478360176, 0.02056240849196911, 0.0032288222573697567, 0.027857856824994087, 0.034532710909843445, 0.00796431303024292, -0.016245819628238678, 0.03309844434261322, -0.009619235061109066, -0.0025082414504140615, 0.010998337529599667, 0.03102979063987732, -0.032464057207107544, -0.02134849689900875, -0.03582906723022461, -0.008977953344583511, 0.02898872084915638, -0.014590897597372532, -0.0032770908437669277, -0.013356601819396019, 0.02370676025748253, 0.023472312837839127, 0.005357810761779547, 0.010577711276710033, -0.02394120767712593, 0.008322879672050476, -0.014659852720797062, -0.032077908515930176, -0.005419870372861624, -0.001242053578607738, -0.0006710192537866533, -0.04653089493513107, 0.01648026704788208, 0.005092333536595106, -0.0008791774162091315, -0.023279238492250443, 0.03444996476173401, 0.028630154207348824, 0.005381945054978132, -0.012611886486411095, 0.010115711949765682, 0.014328868128359318, 0.0040959324687719345, 0.016797460615634918, 0.04046284779906273, 0.009791622869670391, -0.025692667812108994, 0.005612944718450308, -0.0355808287858963, 0.0003605058300308883, -0.016673341393470764, 0.030726389959454536, 0.017873160541057587, -0.014204748906195164, -0.0033098445273935795, 0.01817656308412552, -0.019390171393752098, -0.0033253594301640987, 0.004788930993527174, -0.014646061696112156, 0.013301437720656395, -0.03544291853904724, 0.0019686678424477577, -0.003421896370127797, -0.012287797406315804, -0.00707479240372777, -0.011481022462248802, 0.02446526661515236, 0.021776018664240837, 0.017611131072044373, 0.0207692738622427, -0.009177923202514648, -0.042448755353689194, 0.020962348207831383, -0.012398125603795052, -0.03414656221866608, 0.0020686527714133263, 0.015666596591472626, 0.007929835468530655, -0.009357205592095852, 0.013432451523840427, 0.005016482900828123, 0.052047304809093475, -0.010977650992572308, -0.0006654166500084102, -0.015845879912376404, 0.008578013628721237, -0.019155723974108696, -0.016052745282649994, 0.01558385044336319, 0.005743958987295628, 0.025375474244356155, -0.007978104054927826, 0.010343263857066631, -0.027513081207871437, -0.011736156418919563, 0.012494662776589394, -0.03502918779850006, -0.006385241635143757, -0.024023953825235367, -0.018093816936016083, -0.04209018871188164, -0.010460487566888332, -0.017914533615112305, -0.013322124257683754, 0.0023927416186779737, 0.02580299600958824, -0.0020031454041600227, -0.015280448831617832, 0.005609496962279081, -0.014521942473948002, -0.0003783910651691258, -0.05659833922982216, -0.037677060812711716, -0.028271587565541267, 0.012053349986672401, -0.018893694505095482, 0.02343093976378441, -0.04528970643877983, 0.00899863988161087, 0.02345852181315422, -0.031802088022232056, -0.007323030848056078, 0.0351119339466095, 0.023196492344141006, 0.02428598329424858, 0.00013672502245754004, -0.02494795247912407, -0.012274006381630898, -0.002753032138571143, 0.013018721714615822, 0.00412006676197052, -0.0299540925770998, -0.02871290035545826, 0.012177469208836555, -0.025196190923452377, -0.024865206331014633, 0.015969999134540558, -0.002934039104729891, -0.02412049099802971, 0.025954697281122208, 0.015487313270568848, 0.031222864985466003, -0.017431847751140594, 0.01159135065972805, 0.004451051354408264, -0.014894300140440464, -0.03251922130584717, 0.005768093280494213, -9.09883965505287e-05, 0.0005589672364294529, 0.008074641227722168, 0.0021031303331255913, -0.01668713241815567, 0.003916649147868156, -0.010129502974450588, 0.016921579837799072, 0.011536186560988426, 0.008460789918899536, -0.012867020443081856, -0.003833903232589364, 0.007957417517900467, 0.009433056227862835, -3.3292380976490676e-05, -0.01483913604170084, 0.001977287232875824, -0.00017475806816946715, 0.015597641468048096, 0.0041579920798540115, -0.01641131192445755, -0.013894450850784779, -0.025996070355176926, -0.014046152122318745, -0.017059490084648132, -0.014439196325838566, -0.01271531917154789, 0.017845578491687775, -0.023651596158742905, -0.011315531097352505, -0.03486369550228119, -0.01769387722015381, 0.014880509115755558, -0.004551036283373833, 0.015763133764266968, -0.025003116577863693, 0.03337426483631134, 0.0271958876401186, -0.008667655289173126, -0.01024672668427229, 0.03544291853904724, -0.0031029791571199894, 0.0019807349890470505, 0.026271890848875046, 0.0009989868849515915, 0.0034098292235285044, -0.019169514998793602, -0.010605293326079845, 0.0040476638823747635, -0.008143596351146698, -0.008026372641324997, -0.0470549538731575, 0.007716075051575899, 0.006850688252598047, 0.0040062908083200455, 0.0020824437960982323, -0.03047815151512623, -0.0011980946874246001, 0.014659852720797062, 0.0020410707220435143, -0.016466476023197174, -0.011094874702394009, -0.009412369690835476, -0.02270001545548439, -0.02343093976378441, 0.038476940244436264, -0.00016937094915192574, 0.016438893973827362, 0.0016238924581557512, 0.006057704798877239, 0.0027357933577150106, -0.006302495487034321, -0.0028702556155622005, 0.008433207869529724, 0.004637229721993208, 0.034946441650390625, -0.001813518931157887, -0.018810948356986046, -0.006833449471741915, 0.017749041318893433, 0.010963859967887402, -0.004492424428462982, -0.008902102708816528, -0.005678451620042324, -0.009212400764226913, 0.00563018349930644, -0.02118300460278988, -0.013418660499155521, 0.030174748972058296, -0.012536035850644112, -0.016949161887168884, 0.021058885380625725, 0.0005279374308884144, -0.006064600311219692, 0.02556854858994484, -0.030147166922688484, -0.01730772852897644, 0.013756540603935719, -0.02152778021991253, -0.02155536226928234, 0.014397823251783848, 0.018190354108810425, -0.05304025858640671, -0.03089188225567341, 0.03362250328063965, 0.01983148418366909, 0.003094359766691923, -0.0016247543971985579, -0.01734910160303116, 0.0065610771998763084, 0.005095781292766333, 0.00851595401763916, -0.015294239856302738, 0.02138986997306347, -0.00473376689478755, -0.04448982700705528, -0.003968365490436554, 0.01948670856654644, -0.013411764986813068, -0.0037615003529936075, -0.025761622935533524, 0.004644125234335661, -0.02556854858994484, -0.015570059418678284, -0.027375170961022377, 0.03387074172496796, -0.004537245258688927, -0.0046751550398766994, 7.127155549824238e-05, 0.0036580676678568125, 0.012736005708575249, 0.006478331051766872, -0.019845275208353996, 0.018024861812591553, -0.001997973769903183, 0.002496174303814769, -0.015804506838321686, 0.006540390662848949, -0.012653259560465813, -0.010143293999135494, -0.0007537653436884284, 0.007743656635284424, 0.008619386702775955, 0.004623439162969589, 0.013997883535921574, -0.013315228745341301, -0.0024461818393319845, 0.02065894566476345, -0.015501104295253754, 0.020410707220435143, -0.018769575282931328, -0.02263106219470501, 0.01796969771385193, 0.014452987350523472, -0.02196909300982952, -0.010812158696353436, 0.039331983774900436, 0.0047096326015889645, 0.0036304856184870005, -0.02118300460278988, 0.003154695499688387, 0.007916044443845749, 0.003995947539806366, 0.02134849689900875, -0.016025163233280182, 0.009722667746245861, -0.023817088454961777, -0.01854891888797283, 0.0003533948620315641, -0.01841101050376892, -0.027168305590748787, 0.015487313270568848, 0.006826553959399462, -0.005064751487225294, -0.0048613338731229305, -0.022341450676321983, 0.0014756389427930117, 0.008509058505296707, 0.02281034365296364, -0.0033150161616504192, -0.009171027690172195, 0.0040545593947172165, 0.016852624714374542, 0.034808531403541565, 0.006057704798877239, 0.011825798079371452, -0.022272495552897453, 0.033594921231269836, 0.002690972527489066, 0.05320575088262558, 0.0016850900137796998, -0.006905852351337671, -0.003578769275918603, -0.005268169101327658, 0.020479662343859673, 0.02774752862751484, 0.012122305110096931, -0.01710086315870285, 0.0040959324687719345, -0.006778285373002291, 0.010770785622298717, 0.014949464239180088, 0.004513110965490341, 0.0007184258429333568, 0.016466476023197174, -0.03638070821762085, -0.022658642381429672, -0.032601967453956604, -0.007391985971480608, -0.028381915763020515, -0.01093627791851759, 0.014508151449263096, 0.021707063540816307, 0.0002947830071207136, -0.0006076667341403663, 0.013329019770026207, -0.0056681083515286446, 0.02249315194785595, -0.013004930689930916, 0.025099653750658035, -0.0034649933222681284, 0.004471737891435623, 0.006364555098116398, -0.0017324966611340642, -0.003313292283564806, 0.010370845906436443, -0.013446242548525333, 0.0034529261756688356, -0.0029392107389867306, -0.001605791738256812, -0.020231423899531364, 0.00446484237909317, -0.037539150565862656, -0.005754302255809307, -0.028823228552937508, -0.010577711276710033, -0.03127802908420563, -0.00023229247017297894, -0.005609496962279081, -0.017528384923934937, -0.04680671542882919, -0.002682353137061, 0.006571420468389988, 0.008247029036283493, -0.016769878566265106, -0.03378799557685852, -0.028244005516171455, 0.0039235446602106094, -0.012136096134781837, -0.01228090189397335, -0.02405153587460518, 0.012873915955424309, -0.023830879479646683, 0.018990231677889824, -0.014315077103674412, 0.005030273925513029, -0.0049233934842050076, -0.006492122076451778, 0.029430033639073372, -0.0257064588367939, 0.024658340960741043, -0.022534525021910667, -0.009957115165889263, -0.015473522245883942, 0.024410102516412735, -0.003899410367012024, -0.005481929983943701, 0.01168099232017994, -0.009688190184533596, -0.0048337518237531185, 0.02832675166428089, -0.0029667927883565426, 0.00015461024304386228, -0.008764192461967468, 0.026506338268518448, -0.026023652404546738, -0.016866415739059448, -0.010557024739682674, -0.0012015424435958266, -0.013480720110237598, -0.012777378782629967, -0.0035477394703775644, -0.027430335059762, 0.008329775184392929, 0.010494965128600597, 0.0033115684054791927, -0.026754576712846756, -0.00021332981123123318, -0.022120794281363487, -0.00011506881128298119, -0.019445335492491722, -0.0017290489049628377, 0.0024599728640168905, -0.02563750371336937, -0.039194073528051376, -0.016121700406074524, 0.01214299164712429, -0.032877787947654724, -0.011929230764508247, 0.01091559138149023, 0.022851716727018356, 0.01834205538034439, -0.010722517035901546, 0.006864479277282953, 0.003108150791376829, 0.023058582097291946, -0.0031391805969178677, 0.028630154207348824, -0.003237441647797823, 0.00775744765996933, -0.0032546804286539555, 0.004461394622921944, -0.016535431146621704, -0.00932962354272604, -0.03036782331764698, 0.02726484276354313, 0.006726569030433893, -0.009322728030383587, 0.013701376505196095, 0.021086467429995537, -0.016797460615634918, -0.01634235680103302, -0.018921276554465294, -0.0024737638887017965, 0.010874218307435513, -0.02774752862751484, -0.0029667927883565426, 0.0005512097850441933, -2.622178908495698e-05, 0.0033184639178216457, 0.015363194979727268, -0.011377589777112007, 0.01865924708545208, -0.009770936332643032, 0.007957417517900467, 0.002463420620188117, -0.006419719196856022, 0.003442582907155156, -0.0008253062842413783, -0.018962649628520012, -0.0028633601032197475, -0.012480871751904488, 0.04939942806959152, -0.0008425450068898499, -0.01105350162833929, -0.012080932036042213, 0.018976440653204918, 0.002799576846882701, -0.0010825949721038342, -0.06476262211799622, -0.01983148418366909, 0.009570966474711895, 0.031498685479164124, 0.012398125603795052, -0.02625809982419014, -0.000367616827134043, -0.007667806465178728, 0.009846786968410015, -0.009184818714857101, -0.00010122392268385738, 0.016838833689689636, -0.014577106572687626, 0.003154695499688387, -0.0015040829312056303, 0.009302041493356228, 0.004451051354408264, 0.0207692738622427, 0.0065541816875338554, -0.023541267961263657, -0.0029598972760140896, -0.007550582755357027, 0.006502465344965458, -0.02079685591161251, -0.03497402369976044, -0.011653410270810127, 0.004609648138284683, 0.02767857350409031, 0.006743807811290026, 0.009122759103775024, -0.03458787500858307, -7.741286390228197e-05, 0.0006710192537866533, -0.001539422431960702, 0.007529896218329668, 0.013956510461866856, -0.013108363375067711, 0.016507849097251892, -0.032188236713409424, -9.24967898754403e-05, -0.00037408136995509267, -0.015059792436659336, -0.01343934703618288, 0.003758052596822381, 0.0024668683763593435, -0.03353975713253021, 0.0035270529333502054, 0.021582944318652153, 0.0039787087589502335, 0.010274308733642101, -0.020259005948901176, -0.005857734940946102, -0.007591955829411745, 0.010701830498874187, -0.014315077103674412, -0.018011070787906647, -0.013977196998894215, 0.007081687916070223, 0.015969999134540558, -0.016907788813114166, -0.010743203572928905, 0.0024875549133867025, 0.007433359045535326, 0.000782209332101047, -0.0005887040751986206, 0.0125084538012743, 0.014604688622057438, 0.024203237146139145, 0.01783178746700287, -0.016011372208595276, -0.006612793542444706, 0.016866415739059448, -0.008433207869529724, -0.005164736416190863, 0.0022910330444574356, -0.007943626493215561, -0.009626130573451519, -0.007640224415808916, -0.00023164601589087397, 0.021403660997748375, -0.01350830215960741, 0.010005383752286434, -0.007516105193644762, -0.0010998337529599667, 0.013094572350382805, 0.0027357933577150106, -0.006050809286534786, -0.019886648282408714, 0.011687887832522392, -0.012680841609835625, 0.016783669590950012, -0.01168099232017994, -0.028685318306088448, 0.003266747575253248, -0.018438592553138733, 0.021431243047118187, 0.002587539842352271, -0.024685923010110855, 0.0013308333000168204, -0.014618479646742344, 0.00860559567809105, 0.015776924788951874, -0.03428447246551514, -0.027733737602829933, 0.02605123445391655, -0.014742598868906498, -0.01751459389925003, 0.005961167626082897, -0.01186717115342617, -0.01779041439294815, 0.01696295291185379, 0.011032815091311932, -0.0022565554827451706, -0.005264721345156431, 0.03709783777594566, -0.0221483763307333, 0.016494058072566986, 0.0011119008995592594, 0.014535733498632908, -0.011108665727078915, 0.0004391577385831624, 0.01504600141197443, -0.021100258454680443, -0.005526750814169645, 0.0029581733979284763, -0.007736761122941971, 0.007791925221681595, 0.011632723733782768, 0.031112536787986755, 0.005264721345156431, 0.021403660997748375, 0.006723121274262667, -0.009584757499396801, 0.01378412265330553, -0.0032701953314244747, -0.006043913774192333, -0.0005076818633824587, -0.016990534961223602, -0.0014256464783102274, 0.028409497812390327, -0.017059490084648132, -0.013191109523177147, 0.001435989746823907, -0.012632573023438454, 0.008564222604036331, -0.006485226564109325, 0.004726871382445097, -0.01378412265330553, 0.009957115165889263, -0.015873461961746216, 0.006802419666200876, 0.0002018013910856098, 0.019610827788710594, -0.005381945054978132, 0.02587195113301277, -0.03119528293609619, -0.03450512886047363, -0.01865924708545208, 0.016452684998512268, 0.02121058665215969, 0.004726871382445097, -0.005213005002588034, -0.017749041318893433, 0.016383729875087738, -0.008384939283132553, 0.01700432598590851, -0.008288402110338211, -0.006385241635143757, 0.00433727540075779, -0.015376986004412174, 0.029843764379620552, -0.04523454234004021, 0.0014049600576981902, -0.03089188225567341, -0.0021996675059199333, 0.006026674993336201, 0.0020772721618413925, 0.007447150070220232, 0.024299774318933487, -0.005606049206107855, 0.015570059418678284, 0.002851292956620455, -0.03116770088672638, -0.026520129293203354, 0.0012877363478764892, 0.022437987849116325, -0.019776320084929466, 0.003695992985740304, -0.00556122837588191, -0.0037615003529936075, 0.009102072566747665, -0.0009231363073922694, 0.0019479813054203987, -0.013797913677990437, -0.027940602973103523, 0.012825647369027138, 0.013315228745341301, -0.0024806594010442495, 0.01255672238767147, -0.035084351897239685, -0.001235158066265285, 0.01734910160303116, 0.022603480145335197, -0.01031568180769682, 0.025072071701288223, 0.0160665363073349, 0.007881566882133484, 0.031526267528533936, -0.012218842282891273, 0.04575859755277634, -0.03431205451488495, -0.026975231245160103, -0.0004693256050813943, 0.0007934145396575332, 0.012032663449645042, -0.02148640714585781, -0.04073866829276085, 0.0026789053808897734, -0.00846768543124199, -0.003792530158534646, -0.019224679097533226, 0.008633177727460861, 0.013549675233662128, -0.018879903480410576, -0.010674248449504375, 0.02701660431921482, 0.017459429800510406, 0.016080327332019806, 0.007516105193644762, -0.0015333888586610556, 0.007081687916070223, -0.010191562585532665, 0.02712693251669407, 0.036049723625183105, -0.033843159675598145, 0.0040614549070596695, 0.011715469881892204, 0.01700432598590851, 0.011025919578969479, 0.007585060317069292, -0.013549675233662128, -0.0032133073545992374, -0.011556873098015785, 0.002771994797512889, 0.0037890824023634195, -0.014397823251783848, -0.019707364961504936, -0.0024548012297600508, -0.0010222592391073704, 0.008550431579351425, -0.013722063042223454, -0.019983185455203056, -0.032077908515930176, -0.01872820220887661, -0.007902253419160843, -0.0017876607598736882, 0.014521942473948002, 0.015694178640842438, -0.008826252073049545, 0.016080327332019806, 0.007109269965440035, -0.009557175450026989, 0.002428943058475852, 0.015211493708193302, 0.008233238011598587, -0.009288250468671322, 0.04611716419458389, 0.0003906736965291202, -0.019472917541861534, -0.01285322941839695, 0.005733615718781948, 0.010239831171929836, -0.006761046592146158, -0.0026461516972631216, -0.015680387616157532, -0.014783971942961216, 0.0010058823972940445, 0.009295145981013775, -0.02802334912121296, 0.0028754272498190403, -0.005575019400566816, -0.00625422690063715, -0.020824437960982323, -0.02497553452849388, 0.011391380801796913, 0.018355846405029297, -0.004837199579924345, -9.66987408901332e-06, 0.0030288523994386196, 0.004995796363800764, -0.00865386426448822, -0.00044950100709684193, -0.0019479813054203987, 0.016990534961223602, -0.018190354108810425, 0.005595705937594175, -0.020603781566023827, -0.0066369278356432915, 0.004023529589176178, -0.016604386270046234, 0.026271890848875046, -0.004271768033504486, -0.009798518382012844, -0.012867020443081856, 0.018300682306289673, -0.012253319844603539, 0.012467080727219582, -0.0017264630878344178, 0.013832391239702702, -0.006802419666200876, -0.014480569399893284, -0.015845879912376404, -0.002871979493647814, 0.010667352937161922, 0.01948670856654644, -0.012453289702534676, 0.005137154366821051, 9.955391578841954e-05, 0.03569115698337555, -0.009543384425342083, 0.026506338268518448, -0.004451051354408264, -0.011694783344864845, -0.019390171393752098, -0.007254075724631548, 0.015018419362604618, 0.014715016819536686, 0.011094874702394009, 0.012101618573069572, 1.8720229491009377e-05, -0.0048544383607804775, -0.00988126453012228, -0.027457917109131813, -0.003647724399343133, 0.029374869540333748, -0.007978104054927826, 0.0018600636394694448, 0.01558385044336319, 0.0019324664026498795, -0.015818297863006592, 0.006268017925322056, -0.014894300140440464, -0.00932962354272604, 0.010632875375449657, 0.0024323908146470785, 0.007564373780041933, -0.0026375323068350554, 0.007840193808078766, 0.002773718675598502, 0.006978255230933428, 0.005116467829793692, -0.008302193135023117, 0.005823257379233837, 0.004154544323682785, 0.010543233714997768, 0.019914230331778526, 0.01248776726424694, -0.005588810425251722, -0.006123212166130543, 0.0023341297637671232, 0.026547711342573166, 0.02747170813381672, -0.003599455812945962, 0.0022065630182623863, 0.010336368344724178, -0.0041304100304841995, 0.007716075051575899, 0.007433359045535326, -0.00932962354272604, -0.015170120634138584, -0.006164585240185261, 0.00275130826048553, -0.002546166768297553, -0.013901346363127232, 0.01114314328879118, 0.013211796060204506, -0.0005240587051957846, -0.011218993924558163, -0.01803865283727646, 0.013018721714615822, -0.022134585306048393, -0.03566357493400574, -0.018507547676563263, -0.011791320517659187, 0.04264182969927788, -0.01852133870124817, 0.011687887832522392, -0.0196246188133955, -0.021265750750899315, 0.019886648282408714, 0.021307123824954033, -0.019169514998793602, -0.015004628337919712, 0.03089188225567341, -0.004671707283705473, 0.026561502367258072, 0.018093816936016083, 0.015570059418678284, -0.008777983486652374, -0.0021876003593206406, -0.01449436042457819, -0.0125084538012743, 0.01779041439294815, 0.005881869234144688, -0.013859973289072514, -0.01914193294942379, -0.007702284026890993, -0.03530500829219818, -0.005199213977903128, -0.008219446986913681, -0.005550885107368231, -0.0018635113956406713, 0.011674096807837486, 0.005409527104347944, 0.005788779817521572, -0.023031000047922134, 0.02483762428164482, 0.011087979190051556, -0.007123060990124941, -0.0025427190121263266, -0.02159673534333706, -0.007009285036474466, -0.007495418656617403, -0.016080327332019806, -0.003751157084479928, 0.021927719935774803, -0.021638108417391777, 0.010688039474189281, -0.005681899376213551, -0.009777831844985485, 0.015707969665527344, 0.020714109763503075, -0.008977953344583511, -0.005888764746487141, 0.0014618479181081057, 0.018700620159506798, -0.0017109481850638986, -0.01008812990039587, -0.007198911625891924, 0.00881246104836464, -0.008260820060968399, -0.004454499110579491, 0.013970301486551762, 0.004582066088914871, -0.023637805134058, 0.0014446091372519732, -0.0041166190057992935, -0.01539077702909708, 0.028106095269322395, -0.018604082986712456, 0.0048889159224927425, -0.026933858171105385, 0.008888311684131622, 0.011715469881892204, 0.014411614276468754, -0.008157387375831604, 0.01983148418366909, 0.0041855741292238235, 0.001663541654124856, 0.016976743936538696, 0.005633631255477667, -0.003184001427143812, 0.001875578542239964, 0.0014756389427930117, -0.01449436042457819, -0.027554454281926155, -0.002551338402554393, -0.015059792436659336, -0.002287585288286209, -0.022865507751703262, -0.027044186368584633, -0.01599758118391037, -0.027871647849678993, -0.008143596351146698, -0.03320877254009247, 0.024272192269563675, -0.001977287232875824, 0.006905852351337671, 0.004850990604609251, -0.007922939956188202, 0.003916649147868156, 0.017045699059963226, -0.0036925452295690775, -7.805931818438694e-05, 0.019996976479887962, 0.030257495120167732, 0.026106398552656174, -0.015349403955042362, -0.010694934986531734, -0.00782640278339386, 0.01648026704788208, -0.016356147825717926, -0.005350915249437094, -0.009308937005698681, 0.02674078568816185, 0.003820112207904458, -0.016466476023197174, 0.023968789726495743, -0.01107418816536665, 0.010481174103915691, 0.02632705494761467, -0.0014127175090834498, -0.0034460306633263826, -0.007336821872740984, 0.010122607462108135, -0.002785785822197795, -0.009391683153808117, 0.015804506838321686, -0.005754302255809307, 0.026754576712846756, 0.005047512706369162, 0.013611734844744205, 0.015059792436659336, -0.012336065992712975, -0.00042709059198386967, 0.02887839265167713, 0.007978104054927826, -0.005412974860519171, -0.008660759776830673, -0.016356147825717926, 0.002808196237310767, 0.0034856798592954874, 0.003989052027463913, -0.007123060990124941, -0.0014963254798203707, -0.022851716727018356, -0.031222864985466003, 0.001359277288429439, -0.023817088454961777, -0.01112245675176382, 0.0011998185655102134, -0.007936730980873108, -0.013101467862725258, 0.010860427282750607, 0.016521640121936798, -0.0022065630182623863, -0.00446484237909317, -0.007798820734024048, 0.00021386852313298732, 0.004644125234335661, -0.000965371320489794, 0.012687737122178078, 0.005854287184774876, 0.0018117950530722737, 0.006154241971671581, 0.0257064588367939, 0.014852927066385746, -0.009764040820300579, 0.01186717115342617, 0.005002691876143217, 0.009308937005698681, 0.026423592120409012, 0.005595705937594175, 0.007405776996165514, 0.01592862606048584, -0.0034167247358709574, 0.03858726844191551, 0.0034649933222681284, -0.025623712688684464, 0.014990837313234806, -0.0006977393641136587, -0.011425858363509178, -0.006647271104156971, -0.01255672238767147, -0.015059792436659336, 0.00013747921911999583, 0.022603480145335197, -2.0215155018377118e-05, 0.00508888578042388, -0.0016463028732687235, -0.027899229899048805, -0.006395584903657436, 0.0041510965675115585, 0.010812158696353436, -0.006150794215500355, -0.0036649631801992655, 0.0040131863206624985, -0.03456029295921326, -0.009639921598136425, 0.007295448798686266, -0.007043762598186731, -0.0024875549133867025, 0.014659852720797062, 0.0040200818330049515, -0.0160665363073349, 0.001841100980527699, 0.005161288660019636, 0.011549977585673332, 0.008488371968269348, -0.00213416013866663, 0.01879715733230114, 0.005026826169341803, -0.010446696542203426, -0.00461309589445591, -0.00425797700881958, 0.0032288222573697567, 0.038228701800107956, 0.007523000705987215, 0.02021763287484646, -0.006495569832623005, -0.01620444655418396, -0.02325165644288063, 0.002210010774433613, -0.006126659922301769, -0.0020841676741838455, 0.0013049751287326217, 0.010688039474189281, 0.013584152795374393, 0.010674248449504375, -0.02003834955394268, 0.019431544467806816, 0.0022289734333753586, -0.011239680461585522, 0.020645154640078545, -0.00034046577638946474, -0.0019066083477810025, 0.01990043930709362, 0.0023220626171678305, -0.0047785877250134945, -0.0023617118131369352, -0.02770615555346012, -0.013404869474470615, 0.009191714227199554, 0.009184818714857101, 0.005795675329864025, -0.010536338202655315, 0.01306009478867054, 0.009695085696876049, -0.0038166644517332315, -0.014590897597372532, -0.0007740209111943841, -0.014004779048264027, 0.0040200818330049515, 0.0174456387758255, -0.006195615045726299, -0.0023996371310204268, -0.009164132177829742, 0.02304479107260704, 0.011653410270810127, 0.01114314328879118, -0.008157387375831604, 0.013901346363127232, 0.007274762261658907, 0.008150491863489151, -0.00762643339112401, -0.024382520467042923, 0.0046544685028493404, -0.017045699059963226, 0.004892363678663969, -0.003675306448712945, 0.010598397813737392, -6.647701957263052e-05, 0.005923242308199406, 0.013384183868765831, -0.018755784258246422, 0.00011571526556508616, -0.009653712622821331, 0.017045699059963226, -0.024548012763261795, -0.00908828154206276, -0.022851716727018356, -0.004678602796047926, -0.005075094755738974, 0.023748133331537247, 0.01283254288136959, -0.011391380801796913, 0.028492243960499763, 0.018604082986712456, 0.009012430906295776, 0.00013230758486315608, 0.013977196998894215, 0.020369334146380424, -0.026437383145093918, -0.02010730467736721, 0.008074641227722168, 0.005523303057998419, 0.016728505492210388, -0.02345852181315422, -0.0022617271170020103, 0.015266657806932926, -0.006933434400707483, -0.005547437351197004, 0.011067292653024197, 0.007660910952836275, -0.01477018091827631, 0.013811704702675343, -0.015418359078466892, 0.0029323152266442776, -0.004588961601257324, -0.02469971403479576, -0.013204900547862053, 0.020093513652682304, 0.005823257379233837, -0.003140904475003481, -0.0019790111109614372, -0.010688039474189281, -0.008888311684131622, -0.02543063834309578, 0.04115239903330803, -0.0066369278356432915, -0.012998035177588463, 0.0033891426865011454, 0.009433056227862835, -0.010729412548244, 0.0010593226179480553, 0.026561502367258072, 0.000373865885194391, 0.009791622869670391, -0.011356903240084648, 0.005464691203087568, 0.004988900851458311, -0.015156329609453678, 0.007881566882133484, 0.0033443220891058445, 0.0017385302344337106, 0.017817996442317963, 0.010743203572928905, -0.00015568766684737056, -0.0018048995407298207, -0.009577861987054348, 0.029347287490963936, 0.01792832463979721, -0.03224340081214905, -0.012867020443081856, 0.030698807910084724, 0.018080025911331177, 0.022189749404788017, -0.010377741418778896, -0.004420021548867226, 0.0149770462885499, -0.013053199276328087, -0.018355846405029297, 0.02632705494761467, -0.006230092607438564, 0.007867775857448578, -0.02591332420706749, 0.0009119310998357832, -0.004488976672291756, 0.026837320998311043, -0.01796969771385193, 0.01765250414609909, 0.004975109826773405, 0.005861182697117329, -0.01710086315870285, 0.04542761296033859, 0.006199062801897526, -0.012825647369027138, -0.005685347132384777, -0.012908393517136574, 0.0023375775199383497, -7.326478225877509e-05, -0.009729563258588314, -0.018507547676563263, -0.01385307777673006, 0.03307086229324341, -0.014646061696112156, 0.004340723156929016, 0.004775139968842268, -0.013515197671949863, 0.012611886486411095, -0.005044064950197935, -0.00357187376357615, 0.012253319844603539, 0.006419719196856022, 0.00041459250496700406, 0.031912416219711304, -0.01921088807284832, -0.019459126517176628, -0.03566357493400574, 0.01022604014724493, 0.015983790159225464, 0.01098454650491476, -0.011425858363509178, -0.026216726750135422, 0.00144288525916636, -0.005350915249437094, 0.001970391720533371, -0.015059792436659336, -0.010860427282750607, -0.008453894406557083, -0.000796000356785953, 0.001352381776086986, -0.009460638277232647, 4.420129334903322e-05, 0.006885165814310312, -0.010322577320039272, 0.00728165777400136, 0.009819204919040203, 0.009177923202514648, -0.001467881491407752, 0.02846466191112995, -0.0023979132529348135, -0.010681143961846828, 0.003168486524373293, -3.434286918491125e-05, 0.009729563258588314, -0.02148640714585781, -0.001546317944303155, -0.003564978251233697, -0.007371299434453249, 0.00322537450119853, -0.000593444739934057, 0.037235748022794724, -0.023058582097291946, 0.002149675041437149, 0.012011976912617683, 0.0023703312035650015, 0.0142874950543046, 0.022782761603593826, 0.02021763287484646, 0.007385090459138155, -0.01166030578315258, 0.0031029791571199894, 0.017542175948619843, -0.003885619342327118, 0.014370241202414036, -0.0026944202836602926, -0.02003834955394268, -0.005737063474953175, 0.016094118356704712, 0.011605141684412956, -0.006247331388294697, 0.008026372641324997, 0.0019203993724659085, -0.0160665363073349, 0.026409801095724106, 0.0032564043067395687, -0.008502162992954254, 0.0010360502637922764, 0.01751459389925003, -0.023761924356222153, 0.002230697311460972, 0.005930137820541859, -0.02121058665215969, 0.005181975197046995, 0.010288099758327007, -0.018686829134821892, 0.00013758696150034666, -0.008819356560707092, -0.017942115664482117, 0.012218842282891273, 0.028795646503567696, -0.017459429800510406, -0.009412369690835476, 0.016521640121936798, -0.014094420708715916, 0.003046091180294752, -0.01306009478867054, -0.007929835468530655, -0.002318614860996604, -0.001615273067727685, -0.00016333737585227937, 0.0009981249459087849, 0.016245819628238678, -0.012136096134781837, 0.004699289333075285, 0.033319100737571716, -0.018962649628520012, 0.017059490084648132, -0.016907788813114166, -0.010253622196614742, -0.013846182264387608, -0.008343566209077835, 0.00473376689478755, -0.00024435960222035646, 0.023748133331537247, 0.00563018349930644, 0.01057081576436758, 0.0007852261187508702, 0.014370241202414036, 0.016397520899772644, 0.022051839157938957, 0.028933556750416756, -0.029512779787182808, -0.0022082868963479996, 0.0039787087589502335, 0.01477018091827631, 0.020962348207831383, -0.0041097234934568405, -0.020617572590708733, 0.004209708422422409, 0.010012279264628887, -0.007888462394475937, -0.0015316649805754423, -0.00454414077103138, -0.007778134196996689, 0.0011481023393571377, 0.023417148739099503, 0.008660759776830673, -0.005195766221731901, -0.01283254288136959, 0.020479662343859673, 0.013611734844744205, -0.005161288660019636, -0.02370676025748253, -0.009915742091834545, 0.01346003357321024, -0.02104509435594082, 0.00762643339112401, -0.0006546424119733274, -0.030422987416386604, 0.00557157164439559, -0.0037477093283087015, 0.02290688082575798, 0.01886611245572567, 0.0005253516137599945, 0.03337426483631134, -0.031498685479164124, 0.0036097990814596415, -0.02180360071361065, -0.018286891281604767, 0.002970240544527769, -0.0005175941623747349, -0.007357508409768343, 0.006954120937734842, -0.004592409357428551, -0.022672433406114578, -0.022506942972540855, -0.015597641468048096, 0.025761622935533524, 0.0023703312035650015, 0.021955301985144615, -0.007667806465178728, -0.014190957881510258, -0.01716981828212738, -0.011067292653024197, -0.002615121891722083, -0.018121398985385895, 0.013625525869429111, 0.011115561239421368, 0.00019856911967508495, -0.005168184172362089, 0.014921882189810276, -0.020093513652682304, 0.009839891456067562, -0.006516256369650364, -0.0030547105707228184, -0.003470164956524968, -0.010481174103915691, 0.01017777156084776, -0.0026926964055746794, 0.03505676984786987, -0.019583245739340782, -0.015073583461344242, 0.007040314842015505, 0.0046751550398766994, 0.021500198170542717, 0.01689399778842926, 0.005050960462540388, -0.0008343566441908479, -0.02784406580030918, -0.029650690034031868, 0.009460638277232647, -0.00027603586204349995, -0.019155723974108696, 0.00461309589445591, 0.016149282455444336, -0.015156329609453678, -0.006433510221540928, -0.007109269965440035, -0.005819809623062611, 0.010150189511477947, -0.010543233714997768, -4.789146623807028e-05, -0.005306094419211149, -0.025540966540575027, 0.03803562745451927, 0.00851595401763916, -0.0065541816875338554, 0.01326696015894413, -0.006888613570481539, 0.0001557954092277214, 0.02155536226928234, -0.013811704702675343, 0.013494511134922504, -0.009164132177829742, 0.0371805839240551, -0.016590595245361328, -0.0008563360315747559, -0.01737668365240097, -0.003578769275918603, -0.006830001715570688, -0.00981230940669775, -0.01872820220887661, 0.018300682306289673, 0.010308786295354366, 1.423545563739026e-05, 0.011287949047982693, 0.010129502974450588, -0.020989930257201195, -0.02010730467736721, -0.005585362669080496, -0.008178073912858963, 0.017955906689167023, -0.01086732279509306, -0.0027220023330301046, 0.013135945424437523, -0.022396614775061607, -0.013618630357086658, -0.01817656308412552, 0.022658642381429672, -0.002359987935051322, -1.4881909919495229e-05, 0.009984697215259075, 0.017114654183387756, -0.02125195972621441, -0.0035546349827200174, 0.0037546048406511545, -0.003065053839236498, 0.0017704219790175557, -0.03376041352748871, 0.0048199607990682125, 0.014273704029619694, -0.008598700165748596, -0.019983185455203056, -0.0033357026986777782, -0.004247633740305901, -0.015597641468048096, -0.00920550525188446, -0.01166030578315258, -0.03378799557685852, -0.0040407683700323105, 0.0027978529687970877, -0.008426312357187271, 0.007585060317069292, 0.019776320084929466, 0.012260215356945992, 0.013177318498492241, -0.006950673181563616, 0.007819507271051407, 0.011481022462248802, 0.008433207869529724, -0.011825798079371452, -0.017735250294208527, 0.02111404947936535, -0.003427068004384637, -0.007254075724631548, -0.014866718091070652, 0.011356903240084648, -0.00535436300560832, -0.012391230091452599, 0.004323484376072884, -0.009543384425342083, 0.00035167098394595087, -0.01031568180769682, 0.011012128554284573, 0.002901285421103239, 0.0049509755335748196, 0.03279504179954529, -0.005278512369841337, 0.007116165477782488, 0.0358014851808548, -0.0036097990814596415, 0.005395736079663038, 0.019996976479887962, -0.010184667073190212, -0.00109897181391716, 0.012480871751904488, -0.0033839710522443056, -0.03417414426803589, -0.02573404088616371, -0.0020893393084406853, 0.008440103381872177, -0.03078155405819416, 0.013363497331738472, 0.026340845972299576, -0.009343414567410946, 0.022672433406114578, -0.002580644330009818, 0.01008812990039587, 0.0031512477435171604, 0.000958475808147341, -0.01769387722015381, -0.025334101170301437, -0.014115107245743275, -0.008191864937543869, -0.013701376505196095, 0.002353092422708869, 0.020810646936297417, 0.03538775444030762, -0.003134008962661028, 0.007391985971480608, 0.005850839428603649, 0.02843707986176014, 0.01385307777673006, -0.0031529716216027737, 0.002642703941091895, 0.02407911792397499, 0.026161562651395798, -0.019100559875369072, -0.02308616414666176, -0.0328226238489151, -0.009564070962369442, -0.0018514442490413785, 0.037263330072164536, -0.009888160042464733, -0.021789809688925743, 0.050502710044384, 0.0006343868444673717, 0.008212551474571228, -0.02795439399778843, 0.008226342499256134, 0.0003090050013270229, -0.001910056103952229, 0.03966296836733818, 0.014646061696112156, 0.014046152122318745, -0.001765250344760716, 0.017045699059963226, 0.005244034808129072, -0.020410707220435143, 0.005812914110720158, 0.017569757997989655, 0.018673038110136986, 0.009874369017779827, -0.016121700406074524, -0.0048061697743833065, 0.0012455013347789645, -0.0071437475271523, -0.011356903240084648, 0.015818297863006592, -0.002704763552173972, -0.03571873903274536, 0.01827310025691986, -0.011156934313476086, 0.02190013788640499, 0.00274613662622869, -0.009481324814260006, 0.0017221533926203847, -0.016025163233280182, -0.007260971236974001, 0.02487899735569954, -0.006099077872931957, -0.006230092607438564, 0.013742749579250813, 0.0021324362605810165, -0.013653107918798923, 0.020810646936297417, -0.009570966474711895, -0.01682504266500473, 0.029319705441594124, 0.002039346843957901, -0.027388961985707283, 0.016866415739059448, 0.00013715599197894335, -0.01983148418366909, 0.0013291094219312072, 0.012591199949383736, 0.009177923202514648, 0.01755596697330475, 0.008943475782871246, 0.013487615622580051, -0.002792681334540248, -0.014101316221058369, -0.0023099957033991814, 0.01207403652369976, 0.006736912298947573, -0.005971510894596577, 0.013908241875469685, -0.030450569465756416, -0.008695237338542938, -0.0033891426865011454, -0.001009330153465271, 0.014135793782770634, -0.00027991458773612976, -0.007716075051575899, -0.011763738468289375, -0.007123060990124941, 0.019472917541861534, 0.012632573023438454, 0.007474732119590044, -0.013811704702675343, 0.005812914110720158, 0.00651970412582159, -0.016852624714374542, -0.003954574465751648, 0.001585105201229453, 0.0010110540315508842, 0.020755482837557793, 0.014177166856825352, 2.2046775484341197e-05, -0.0021858764812350273, 0.007957417517900467, -0.00426832027733326, 0.014370241202414036, -0.005637079011648893, -0.02072790078818798, -0.020645154640078545, -0.01283254288136959, 0.011832693591713905, 0.023954998701810837, 0.010625979863107204, -0.0040476638823747635, 0.0048475428484380245, 0.023058582097291946, 0.00556122837588191, -0.010281204245984554, 0.015873461961746216, -0.014177166856825352, -0.0010050204582512379, -0.009798518382012844, 0.007984999567270279, -0.00981230940669775, -0.0019807349890470505, 0.016949161887168884, 0.01292218454182148, 0.01755596697330475, 0.0047854832373559475, -0.0038028734270483255, -0.002661666600033641, 0.005288855638355017, -0.0019203993724659085, 0.002940934617072344, -0.007619537878781557, 0.021582944318652153, 0.0010050204582512379, 0.01792832463979721, 0.0010524271056056023, 0.005885316990315914, -0.015376986004412174, -0.007440254557877779, -0.004382096230983734, -0.0038166644517332315, 0.01627340167760849, -0.009274459443986416, -0.02118300460278988, -0.019996976479887962, 0.01435645017772913, -0.008846938610076904, 0.0017023287946358323, -0.005392288323491812, 0.008281506597995758, 0.015170120634138584, 0.012570513412356377, 0.004830304067581892, -0.01105350162833929, 0.001930742640979588, 0.013004930689930916, -0.010653561912477016, 0.009991592727601528, -0.010894904844462872, -0.011653410270810127, 0.013115258887410164, -0.012053349986672401, -0.039607804268598557, 0.008840043097734451, -0.017266355454921722, -0.028823228552937508, 0.03160901367664337, 0.002204839140176773, 0.01996939443051815, -0.007433359045535326, 0.005278512369841337, -0.0019531529396772385, -0.010481174103915691, 0.00041071377927437425, -0.009081386029720306, 0.02573404088616371, 0.014963255263864994, -0.007481627631932497, 0.00557157164439559, -0.04134547337889671, -0.021776018664240837, 0.002828882774338126, 0.0022289734333753586, -0.0019341902807354927, -0.016314774751663208, 0.012053349986672401, 0.01008812990039587, 0.004437260329723358, 0.003237441647797823, 0.013094572350382805, -0.003716679522767663, -0.0012437774566933513, -0.01126036699861288, -0.01059150230139494, -0.023830879479646683, 0.010391532443463802, 0.001557523151859641, -0.020134886726737022, 0.022727597504854202, -0.018052443861961365, -0.004371752962470055, -0.019293634220957756, 0.0048613338731229305, 0.00860559567809105, 0.013149736449122429, 0.004388991743326187, 0.005388840567320585, 0.019707364961504936, 0.0021513989195227623, 0.01696295291185379, 0.03469820320606232, 0.011977499350905418, -0.024823833256959915, 0.010446696542203426, -0.018921276554465294, -0.0007735899416729808, -0.0142874950543046, -0.01755596697330475, -0.010053652338683605, -0.013749645091593266, 0.014935673214495182, 0.006133555434644222, -0.01682504266500473, -0.002921971958130598, -0.002723726211115718, -0.019500499591231346, -0.019431544467806816, -0.008433207869529724, -0.005854287184774876, -0.005961167626082897, 0.015625223517417908, -0.008729714900255203, 0.011549977585673332, 0.009115863591432571, -0.03720816597342491, 0.008591804653406143, 0.0004904430825263262, 0.030395405367016792, -0.01914193294942379, 0.001149826217442751, 0.015749342739582062, -0.01380480919033289, 0.005044064950197935, 0.013122154399752617, -0.03309844434261322, 0.007240284699946642, -0.014384032227098942, -0.010853531770408154, -0.03185725212097168, -0.0018928173230960965, 0.01364621240645647, 0.011418962851166725, -0.0016644035931676626, 0.016232028603553772, -0.007185120601207018, 0.014894300140440464, 0.011908544227480888, 0.029871346428990364, -0.011025919578969479, 0.01838342845439911, -0.009460638277232647, -0.017804205417633057, 0.01796969771385193, -0.004289006814360619, -0.00295472564175725, 0.012984244152903557, -0.012480871751904488, 0.005643974523991346, 0.008971057832241058, -0.01927984319627285, -0.007026523817330599, 0.009460638277232647, -0.03271229565143585, 0.00274613662622869, 0.004344170913100243, 0.01734910160303116, 0.011356903240084648, -0.006726569030433893, 0.004309693351387978, -0.009453742764890194, 0.00735061289742589, -0.012873915955424309, 0.004957871045917273, -0.006002540700137615, 0.03952505812048912, -0.015776924788951874, -0.02359643206000328, 0.006264570169150829, -0.014508151449263096, 0.007812611758708954, 0.010053652338683605, 0.006885165814310312, -0.008247029036283493, 0.00860559567809105, 0.011646514758467674, 0.014949464239180088, 0.007729865610599518, -0.0017299108440056443, -0.008729714900255203, 0.0016471648123115301, -0.006212853826582432, 0.01059150230139494, -0.02487899735569954, -0.00026720098685473204, -0.0039511267095804214, 0.0033494934905320406, 0.0090675950050354, 0.015501104295253754, 0.003189173061400652, 0.01442540530115366, -0.02898872084915638, -0.011784425005316734, -0.00021397626551333815, 0.006002540700137615, 0.0019066083477810025, -0.012825647369027138, -0.00302368076518178, -0.009198609739542007, 0.010681143961846828, -0.006447301246225834, -0.004775139968842268, -0.02058999054133892, 0.0019290187628939748, -0.009612339548766613, -0.00017658968863543123, -0.0026789053808897734, 0.016576804220676422, 0.011584455147385597, -0.0036097990814596415, 0.00967439915984869, -0.005188870709389448, -0.0034167247358709574, 0.016163073480129242, 0.007447150070220232, 0.002927143592387438, -0.013094572350382805, -0.022051839157938957, 0.006261122412979603, 0.01283254288136959, 0.001159307430498302, 0.010198458097875118, 0.019266052171587944, -0.007454045582562685, 0.012880811467766762, -0.003470164956524968, 0.0031305612064898014, 0.010743203572928905, 0.009171027690172195, -0.008840043097734451, -0.007640224415808916, 0.01599758118391037, -0.002594435354694724, 0.003106426913291216, -0.01585967093706131, 0.01152239553630352, 0.0020824437960982323, -0.015914835035800934, -0.006454196758568287, 0.02063136361539364, -0.0013722063740715384, -0.009315832518041134, 0.006785180885344744, 0.01490809116512537, 0.0033908665645867586, -0.006681748665869236, 0.03395348787307739, 0.011412067338824272, 0.006340420804917812, 0.0024168759118765593, -0.005264721345156431, -0.0028099201153963804, 0.016287192702293396, 0.02283792570233345, -0.01783178746700287, 0.009012430906295776, -0.012467080727219582, 0.02556854858994484, -0.00039282854413613677, 0.015776924788951874, -0.016921579837799072, 0.005499168764799833, -0.0004378648300189525, 0.011529291048645973, -0.002711659064516425, -0.010991442017257214, -0.02003834955394268, -0.01682504266500473, 0.025003116577863693, -0.0011024195700883865, 0.010963859967887402, 0.006285256706178188, -0.0016023439820855856, -0.018879903480410576, 0.012867020443081856, -0.010336368344724178, 0.020052140578627586, 0.015170120634138584, 0.003885619342327118, -0.026423592120409012, 0.000579653715249151, 0.004623439162969589, 0.002773718675598502, 0.006126659922301769, -0.002642703941091895, -0.007536791730672121, 0.0047647967003285885, 0.0027151068206876516, -0.01783178746700287, 0.02421702817082405, 0.010653561912477016, -0.0038097689393907785, 0.0007115303305909038, 0.004506215453147888, 0.012570513412356377, 0.016425102949142456, -0.024382520467042923, -0.005592258181422949, 0.0030133374966681004, -0.026506338268518448, -0.008426312357187271, 0.002094510942697525, 0.008984848856925964, -0.022437987849116325, 0.029099049046635628, -8.98032303666696e-05, 0.003933887928724289, 0.038090791553258896, 0.015170120634138584, -0.013177318498492241, -0.0026668382342904806, 0.023748133331537247, 0.013080781325697899, -0.010908695869147778, 0.00046717075747437775, 0.0046751550398766994, 0.015666596591472626, -0.004278663545846939, -0.012446394190192223, 0.02173464559018612, 0.004278663545846939, -0.02843707986176014, 0.017473220825195312, 0.011929230764508247, 0.0066300323233008385, 0.006240435875952244, -0.004788930993527174, 0.001087766606360674, 0.0042269472032785416, -0.00023229247017297894, -0.016949161887168884, 0.0031391805969178677, 0.022824134677648544, -0.0030340240336954594, 0.00028293137438595295, 0.035360172390937805, -0.0167560875415802, 0.0018997128354385495, 0.014549524523317814, 0.0010567368008196354, -0.001707500428892672, 0.03400865197181702, -0.0032339938916265965, 0.01179821603000164, 0.007123060990124941, -0.016397520899772644, 0.026451174169778824, -0.001126553863286972, 0.006012883968651295, -0.02967827208340168, -0.005554332863539457, -0.006071495823562145, 0.0012851505307480693, 0.028961138799786568, -0.0022013913840055466, 0.005864630453288555, -0.002053137868642807, 0.007991895079612732, 0.013053199276328087, -0.0036994407419115305, -0.0005520717240869999, -0.04277973994612694, 0.0019548768177628517, 0.006495569832623005, 0.008495267480611801, -0.0014463330153375864, 0.018604082986712456, -0.001488568028435111, -0.01257740892469883, 0.012115409597754478, 0.017128445208072662, 0.029347287490963936, -0.010888009332120419, 0.0002997391566168517, -0.011301740072667599, -0.009584757499396801, 0.011784425005316734, 0.001977287232875824, -0.006071495823562145, 0.011929230764508247, 0.034670621156692505, 0.012336065992712975, -0.04104207083582878, 0.008122909814119339, -0.02276897057890892, 0.01043290551751852, -0.006257674656808376, -0.022024257108569145, 0.004216603934764862, -0.0031115985475480556, -0.0172111913561821, 0.020093513652682304, -0.02276897057890892, 0.02846466191112995, 0.01283254288136959, -0.027526872232556343, 0.0012636020546779037, 0.004961318802088499, 0.019114350900053978, -0.012136096134781837, 0.003408105345442891, -0.019335007295012474, 0.0068575837649405, 0.036849603056907654, -0.000796000356785953, 0.00721270265057683, 0.007254075724631548, 0.003899410367012024, -0.017500802874565125, 0.007791925221681595, -0.0011946469312533736, -0.006961016450077295, 0.003530500689521432, -0.0031029791571199894, -0.02901630289852619, 0.022465569898486137, 0.0433865450322628, -0.015597641468048096, -0.00611631665378809, -0.0119361262768507, 0.014466778375208378, -0.00846768543124199, -0.002168637700378895, 0.008212551474571228, -0.019293634220957756, -0.00370978401042521, -0.002704763552173972, 0.010460487566888332, 0.01689399778842926, 0.006778285373002291, 0.0012058521388098598, 0.005440556909888983, 0.019403962418437004, 0.012963557615876198, -0.0016342357266694307, -0.029043884947896004, -0.013094572350382805, 0.0009420989663340151, 0.023720551282167435, -0.005599153693765402, 0.011467231437563896, 0.008191864937543869, -0.004413126036524773, -0.025927115231752396, -0.025168608874082565, 0.01983148418366909, -0.005357810761779547, -0.017845578491687775, 0.0034184486139565706, 0.004440708085894585, -0.0025685771834105253, -0.03036782331764698, 0.000817979802377522, 0.011391380801796913, -0.00741956802085042, -0.005609496962279081, -0.011963708326220512, 0.00500958738848567, 0.014204748906195164, 0.00323054613545537, -0.014963255263864994, -0.004995796363800764, -0.0025013459380716085, -0.01285322941839695, 0.0033460459671914577, 0.0031167701818048954, 0.0089503712952137, -0.010632875375449657, 0.017707668244838715, -0.009095177054405212, 0.00932962354272604, 0.019665991887450218, 0.0001327385543845594, 0.00549227325245738, -0.017473220825195312, 0.024341147392988205, -0.0285749901086092, -0.00343396351672709, -0.026368428021669388, -0.02045208029448986, 0.011343112215399742, -0.024341147392988205, 0.020341752097010612, -0.01799727976322174, -0.0005038031376898289, 0.020259005948901176, 0.010253622196614742, -0.033732831478118896, 0.0012730833841487765, 0.009102072566747665, 0.014342659153044224, 0.011336216703057289, -0.00974335428327322, -0.0245618037879467, 0.009936428628861904, -0.006802419666200876, -0.0049027069471776485, 0.011350007727742195, 0.006102525629103184, -0.008371148258447647, 0.010529442690312862, -0.00042084153392352164, -0.004726871382445097, 0.01408062968403101, 0.0007778996368870139, -0.007798820734024048, -0.0037959779147058725, -0.0009826100431382656, -0.015280448831617832, -0.02370676025748253, -0.0004680326965171844, -0.0018221383215859532, 0.0048613338731229305, 0.005688794888556004, 0.020203841850161552, -0.00040080148028209805, 0.008488371968269348, 0.008343566209077835, 0.01394271943718195, -0.003916649147868156, -0.0029236958362162113, 0.012915289029479027, 0.0042062606662511826, -0.0035753215197473764, -0.007605746854096651, 0.023003417998552322, 0.0041717831045389175, -0.003716679522767663, -0.01955566368997097, 0.0005787918344140053, 0.009005535393953323, -0.015611432492733002, -0.003121941816061735, -0.007674701977521181, -0.005192318465560675, -0.006902404595166445, 0.014466778375208378, -0.0020772721618413925, -0.00024263572413474321, 0.016328565776348114, -0.005478482227772474, 0.012529140338301659, -0.007198911625891924, -0.01518391165882349, -0.0047165281139314175, 0.011205202899873257, -0.01456331554800272, 0.020134886726737022, 0.001389445154927671, -0.02336198464035988, 0.012591199949383736, 0.016466476023197174, -0.004364857450127602, 0.008619386702775955, 0.004619991406798363, 0.0029443823732435703, 0.001984182745218277, 0.0016247543971985579, 0.005033721681684256, 0.000703772937413305, 0.012722214683890343, -0.026906276121735573, -0.012384334579110146, 0.02058999054133892, 0.004947527777403593, 0.01350830215960741, -0.009302041493356228, 0.00967439915984869, 0.017252564430236816, -0.013108363375067711, 0.0025703010614961386, -0.022120794281363487, 0.008440103381872177, -1.0801169082697015e-05, -0.009150341153144836, -0.015570059418678284, 0.0012463632738217711, -0.012060245499014854, 0.00020190913346596062, 0.00023358537873718888, -0.002654771087691188, -0.009584757499396801, -0.006747255567461252, 0.013956510461866856, 0.01066045742481947, 0.013535884208977222, 0.007495418656617403, -0.006943777669221163, 0.006019779480993748, -0.0022479360923171043, 0.010874218307435513, 0.016659550368785858, 0.006268017925322056, -0.005526750814169645, 0.014397823251783848, -0.007916044443845749, -0.006164585240185261, -0.006509360857307911, 0.01333591528236866, -0.019307425245642662, 0.01248776726424694, -0.04402093216776848, -0.02515481784939766, 0.018714411184191704, -0.009998488239943981, 0.009426160715520382, -0.02249315194785595], "991c8f71-96f2-4ce7-97fb-e2adfd81fa49": [-0.02168986015021801, -0.010461839847266674, -0.02012963965535164, 0.034269142895936966, -0.024824233725667, -0.04432699829339981, -0.005586149170994759, 0.046305134892463684, 0.0025092395953834057, 0.0278610922396183, 0.031483035534620285, 0.00675283232703805, 0.008636938408017159, -0.0005907422164455056, -0.01507285051047802, 0.03477064147591591, -0.02777750790119171, 0.009981236420571804, 0.03474278002977371, -0.06057001277804375, 0.041680194437503815, -0.0010151885217055678, -0.019990334287285805, -0.0230689849704504, -0.0021035124082118273, -0.011158367618918419, -0.008943410590291023, 0.014919614419341087, -0.033405449241399765, 0.01724601536989212, 0.00791951548308134, 0.005453808698803186, -0.012683762237429619, 0.010245916433632374, 0.04248816519975662, -0.037918947637081146, 0.02213563770055771, 0.04546930268406868, -0.017831098288297653, -0.019976403564214706, -0.047419577836990356, 0.027847161516547203, -0.01246087346225977, 0.001640321803279221, -0.03304325416684151, -0.02107691578567028, 0.01519822608679533, -0.033572614192962646, -0.004005032125860453, -0.01585296168923378, 0.03084222972393036, -0.006230436731129885, -0.03970205783843994, -0.01027377787977457, 0.041847359389066696, -0.07243883609771729, 0.005234402604401112, 0.03733386471867561, 0.0056314230896532536, -0.052044518291950226, -0.008999132551252842, -0.05296393483877182, 0.01585296168923378, -0.011423047631978989, -0.043936941772699356, -0.00751552963629365, 0.00796827208250761, -0.02143911086022854, -0.00565928453579545, 0.010893686674535275, -0.0067772106267511845, 0.04535785689949989, -0.04599866271018982, 0.0033990531228482723, 0.012147435918450356, 0.0008197255665436387, 0.04014783352613449, 7.041455683065578e-05, 0.00043184691458009183, -0.001097030472010374, -0.014668865129351616, 0.023319734260439873, 0.034185558557510376, 0.0016316152177751064, 0.04312897101044655, 0.034352727234363556, -0.024866024032235146, -0.05494207516312599, -0.0002951534406747669, -0.05098579823970795, 0.00814936961978674, 0.025033190846443176, -0.0008454099879600108, -0.032792504876852036, -0.009026993997395039, 0.027317801490426064, 0.006488151848316193, 0.0008323501097038388, 0.02638445422053337, -0.024517761543393135, -0.01437632367014885, 0.007947376929223537, 0.01734353043138981, -0.03337758779525757, 0.007745383772999048, 0.032876089215278625, -0.011771311052143574, 0.002039083745330572, -0.026426246389746666, 0.023974468931555748, 0.027206355705857277, -0.02770785614848137, -0.019363459199666977, 0.017538556829094887, -0.03412983939051628, -0.03814183548092842, -0.042125970125198364, -0.007404085248708725, -0.03128800541162491, 0.0020617207046598196, 0.047586746513843536, 0.002585857640951872, -0.015811169520020485, 0.012544456869363785, -0.04510710760951042, 0.009598146192729473, 0.016159433871507645, -0.01162504032254219, 0.005951825994998217, -0.019043056294322014, -0.04624941200017929, 0.0025405832566320896, 0.025799371302127838, 0.017232084646821022, 0.005916999187320471, -0.002726904349401593, 0.019210223108530045, 0.06903978437185287, -0.02334759570658207, 0.0688169002532959, -0.04187522083520889, -0.029031258076429367, 0.002571927150711417, 0.0009307346190325916, 0.009006097912788391, 0.003991101402789354, -0.03284822776913643, 0.02585509419441223, -0.00949366670101881, 0.02735959179699421, -0.06112723425030708, -0.025980468839406967, 0.008595147170126438, 0.00470155943185091, 0.041763775050640106, -0.03736172616481781, 0.03443630784749985, 0.020770443603396416, 0.034018393605947495, 0.014055920764803886, 0.03206811845302582, -0.03772391751408577, 0.005213506985455751, 0.028167564421892166, 0.04911910369992256, 0.04187522083520889, 0.02674664743244648, 0.015588280744850636, -0.00941008422523737, 0.02864120341837406, 0.03530000522732735, -0.025033190846443176, -0.0012163107749074697, 0.015532558783888817, 0.011764345690608025, -0.030117839574813843, 0.0453021340072155, 0.027025260031223297, 0.014933545142412186, -0.04142944514751434, -0.02472671866416931, -0.007466772571206093, -0.007898619398474693, -0.006425464525818825, 0.024155566468834877, 0.02761034294962883, 0.010677763260900974, 0.023793373256921768, -0.011450909078121185, -0.017232084646821022, -0.03947916626930237, 0.030702922493219376, -0.031733784824609756, -0.020352527499198914, -0.023403316736221313, -0.0031169597059488297, 0.008253848180174828, 0.02177344262599945, -0.0032684544567018747, 0.02553469128906727, -0.013638004660606384, -0.04984349384903908, -0.048645466566085815, 0.020575417205691338, -0.017287807539105415, 0.022525692358613014, -0.0009124507778324187, -0.025283940136432648, 0.041513025760650635, -0.005460774060338736, 0.05566646158695221, -0.03513283655047417, -0.003000291297212243, 0.016925612464547157, -0.01916843093931675, -0.002178389113396406, -0.00570804113522172, 0.04014783352613449, -0.004301056265830994, -0.05580576881766319, 0.014062886126339436, 0.004402052611112595, -0.010817068628966808, -0.02109084650874138, -0.020338596776127815, -0.005210024304687977, 0.0026067534927278757, 0.04109511151909828, -0.045942939817905426, -0.009270777925848961, 0.02266499772667885, -0.0022323699668049812, -0.006770245265215635, 0.00210177106782794, 0.008219022303819656, 0.009166299365460873, 0.0073831891641020775, 0.003715973114594817, -0.00814240425825119, 0.004353295546025038, -0.0023960538674145937, 0.02596653811633587, -0.008072751574218273, -0.0029027776326984167, 0.013512630015611649, 0.027833230793476105, 0.020268945023417473, 0.04382549598813057, -0.00858121644705534, 0.006000582594424486, 0.04755888506770134, 0.0032667131163179874, -0.02359834499657154, -0.01087975688278675, -0.017468905076384544, 0.012133505195379257, 0.033572614192962646, -0.022539623081684113, 0.0032719369046390057, -0.011485734954476357, 0.01266983151435852, -0.001653381623327732, 0.01629873923957348, 0.04608224704861641, 0.011729519814252853, -0.004071202129125595, 0.013582282699644566, 0.020366458222270012, 0.011471804231405258, 0.02072865329682827, -0.004269712138921022, 0.00267814751714468, 0.007411050610244274, 0.04039858281612396, 0.006822485011070967, -0.010259847156703472, -0.003113477025181055, 0.0026415798347443342, 0.01375641394406557, 0.00792648084461689, -0.0007426722440868616, 0.03276464343070984, 0.017287807539105415, -0.011290707625448704, 0.02638445422053337, 0.014947475865483284, -0.03605225309729576, -0.005596596747636795, -0.029254145920276642, 0.0053353989496827126, 0.012871824204921722, 0.014432045631110668, -0.016577349975705147, 0.0322352834045887, 0.03360047563910484, -0.009869791567325592, -0.01271858811378479, 0.007108061108738184, -0.027303870767354965, 0.01240515150129795, 0.019126638770103455, 0.0256879273802042, 0.008776243776082993, -0.06831539422273636, 0.04914696514606476, -0.017106710001826286, 0.04669519141316414, 0.041067250072956085, -0.0487569123506546, 0.027025260031223297, 0.023654067888855934, -0.028070049360394478, -0.023222221061587334, 0.008421014994382858, -0.012662866152822971, 0.022623207420110703, -0.004266229923814535, -0.01681416854262352, -0.01432060170918703, -0.038197558373212814, -0.021453041583299637, 0.015128573402762413, -0.03725028038024902, 0.017705723643302917, 0.04650016129016876, -0.032458171248435974, 0.04806038364768028, -0.016772378236055374, -0.019224153831601143, -0.014146469533443451, -0.0366094745695591, 0.0002331189753022045, -0.018095780164003372, 0.004767729435116053, -0.03883836045861244, -0.026955606415867805, -0.017817167565226555, -0.04173591732978821, 0.00023790760315023363, -0.035244282335042953, -0.006122475024312735, -0.020519694313406944, -0.023640137165784836, -0.0038935875054448843, -0.010830999352037907, -0.015309670008718967, -0.004321951884776354, -0.009918549098074436, -0.024587413296103477, -0.019293805584311485, 0.0008636938291601837, -0.026676995679736137, 0.045246414840221405, -0.011137471534311771, 0.0269973985850811, -0.013902684673666954, 0.01602012850344181, -0.0035731850657612085, 0.009953374974429607, -0.03109297901391983, 0.003872691886499524, -0.03190094977617264, 0.016758447512984276, 0.01585296168923378, 0.011499665677547455, 0.03624727949500084, -0.005568735767155886, -0.0014531300403177738, -0.04156874865293503, -0.013087747618556023, -0.014571350999176502, 0.01994854211807251, 0.006373224779963493, -0.005345846991986036, 0.008253848180174828, -0.03786322474479675, 0.04555288702249527, -0.02071472257375717, -0.017705723643302917, 0.032708920538425446, -0.004443844314664602, -0.0031552687287330627, -0.004353295546025038, 0.0004732032248284668, 0.04382549598813057, 0.011353394947946072, -0.028808368369936943, -0.026328731328248978, -0.031733784824609756, -0.007738418411463499, -0.007682695984840393, 0.0069165159948170185, -0.0392284169793129, -0.004001549445092678, -0.010259847156703472, 0.0066448706202209, 0.010266812518239021, -0.0287526473402977, 0.0070767174474895, -0.03608011454343796, -0.0012694209581241012, 0.002021670574322343, -0.01732959970831871, -0.01925201527774334, -0.0019067435059696436, -0.018499765545129776, -0.02457348257303238, 0.003917966037988663, 0.02813970297574997, 0.019920680671930313, 0.031845226883888245, -0.012823067605495453, -0.0046736979857087135, 0.011116575449705124, 0.044466301798820496, 0.008232953026890755, 0.0243923868983984, 0.017287807539105415, -0.03677664324641228, -0.01120015885680914, 0.052824631333351135, 0.07700806111097336, -0.002312470693141222, 0.014062886126339436, 0.028696924448013306, 0.006331433076411486, -0.006463773548603058, -0.0025893403217196465, -0.003258006414398551, 0.022414248436689377, 0.014710656367242336, 0.07884688675403595, -0.0248103030025959, -0.025729717686772346, -0.008943410590291023, -0.010886721312999725, -0.008316535502672195, 0.0008780597127042711, 0.02021322213113308, -0.00033955706749111414, 0.0034495515283197165, 0.00875534862279892, -0.014766378328204155, 0.02542324736714363, -0.0287526473402977, -0.009542424231767654, -0.046472299844026566, 0.037751778960227966, -0.010134472511708736, 0.002495309105142951, -0.003500049700960517, 0.039924945682287216, -0.03474278002977371, 0.008414049632847309, -0.0020843578968197107, -0.020073916763067245, 0.01767786219716072, -0.004907034803181887, 0.05299179628491402, -0.03204025700688362, -0.01207081787288189, 0.0014618366258218884, 0.02953275665640831, -0.0016350977821275592, -0.02135552652180195, -0.029811369255185127, 0.01420219149440527, 0.010266812518239021, -0.003543582744896412, 0.02805612049996853, 0.03939558565616608, -0.007863793522119522, -0.019962472841143608, 0.031065117567777634, 0.028864091262221336, 0.026370523497462273, -0.017970403656363487, -0.030535757541656494, 0.0021958022844046354, -0.023194359615445137, -0.00775234866887331, -0.031148700043559074, -0.004245333839207888, -0.01377034466713667, -0.002611977281048894, -0.011381256394088268, -0.032012395560741425, -0.018053987994790077, 0.04658374562859535, -0.012307637371122837, 0.03738958388566971, 0.011388221755623817, 0.009946409612894058, 0.005241367965936661, -0.003022928489372134, -0.021313736215233803, -0.018917681649327278, -0.013916615396738052, 0.004976687487214804, -0.0426831915974617, 0.020756512880325317, -0.014264878816902637, 0.013658900745213032, -0.014947475865483284, -0.014209156855940819, -0.011081749573349953, -0.040119972079992294, 0.013136505149304867, -0.00323536922223866, -0.010872791521251202, -0.054579880088567734, 0.01794254407286644, -0.011443943716585636, -0.017482835799455643, 0.000399197218939662, -0.004301056265830994, -0.010482735931873322, -0.007334432564675808, 0.03282036632299423, 0.012112610042095184, 0.004266229923814535, -0.01037129107862711, -0.021216221153736115, -0.01880623772740364, -0.027721786871552467, -0.018848028033971786, 0.006937412079423666, -0.020784374326467514, 0.05767245963215828, -0.014167365618050098, -0.019460972398519516, 0.008128473535180092, -0.02246997132897377, 0.02440631575882435, 0.04407624900341034, 0.006975721102207899, 0.004774694796651602, 0.02089581824839115, -0.011597179807722569, -0.0030351176392287016, -0.0068155196495354176, -0.0015724103432148695, -0.013094712980091572, -0.0016133313765749335, 0.012001165188848972, 0.036024391651153564, -0.011241951026022434, 0.008044890128076077, -0.004624941386282444, 0.01776144653558731, -0.03814183548092842, 0.02194060944020748, -0.01014840230345726, 0.004367226269096136, 0.006975721102207899, -0.03616369888186455, -0.021564485505223274, -0.009256848134100437, -0.00229679886251688, 0.004973204806447029, -0.0309258121997118, 0.012593213468790054, 0.019293805584311485, 0.024852093309164047, -0.008783209137618542, -0.017705723643302917, -0.004175681155174971, -0.0022410766687244177, -0.024239150807261467, 0.013644970022141933, 0.04546930268406868, -0.009417048655450344, 0.02674664743244648, -0.01119319349527359, -0.014459907077252865, 0.02673271857202053, 0.0022933161817491055, 0.032792504876852036, -0.04457774758338928, -0.03502139449119568, 0.008427980355918407, 0.00033542144228704274, 0.012906651012599468, 0.0017900752136483788, 0.008588181808590889, 0.030368590727448463, -0.027819300070405006, -0.005916999187320471, -0.0063801901414990425, 0.009800138883292675, 0.03321042284369469, 0.0007539907819591463, -0.011248915456235409, -0.013791240751743317, -0.015142503194510937, 0.01575544662773609, 0.01250266470015049, 0.011931512504816055, 0.01777537725865841, 0.00581600284203887, 0.035745780915021896, 0.026788439601659775, -0.005683662835508585, -0.026342662051320076, -0.04051002860069275, 0.03145517408847809, -0.008831965737044811, 0.0392284169793129, 0.018416181206703186, 0.023375455290079117, 0.015351461246609688, 0.005537392105907202, 0.033739782869815826, 0.007668765727430582, 0.03351689502596855, -0.008198126219213009, 0.005809037480503321, 0.02953275665640831, 0.008421014994382858, -0.015351461246609688, 0.04897980019450188, -0.010775277391076088, 0.05533212795853615, -0.028348661959171295, 0.011088714934885502, 0.01354049053043127, -0.02795860543847084, -0.011464839801192284, -0.006017995998263359, 0.00316745787858963, -0.013686761260032654, -0.001918932655826211, -0.014041990041732788, -0.01958634704351425, -0.0034391034860163927, -0.005415499676018953, 0.035940807312726974, 0.00836529303342104, -0.030619340017437935, -0.010385221801698208, -0.01751069724559784, 0.009215055964887142, 0.006125957705080509, 0.06302178651094437, -0.016493765637278557, -0.0007866405067034066, -0.01249569933861494, -0.00021603229106403887, 0.025047121569514275, 0.017552487552165985, -0.038559749722480774, 0.0012955408310517669, -0.0035836328752338886, 0.027679994702339172, 0.014529559761285782, -0.015435044653713703, 0.007780210115015507, 0.007181196473538876, 0.009779243730008602, -0.025019260123372078, 0.030535757541656494, -0.034798502922058105, 0.007424980867654085, 0.031483035534620285, 0.002829642267897725, -0.003914483357220888, -0.02387695573270321, -0.001594176865182817, 0.02221922017633915, 0.02472671866416931, -0.0010682987049221992, -0.004269712138921022, 0.014041990041732788, 0.010893686674535275, -0.0010735227260738611, -0.005882172845304012, -0.009918549098074436, 0.01249569933861494, 0.013227052986621857, -0.021815234795212746, -0.013658900745213032, -0.042293138802051544, -0.010649902746081352, 0.018053987994790077, -0.04195880517363548, -0.005784659180790186, -0.008560320362448692, 0.017399251461029053, -0.03075864538550377, 0.014292740263044834, -0.005965756252408028, 0.0023037639912217855, -0.013052921742200851, 0.03142731264233589, 0.003150044707581401, -0.013380289077758789, 0.007571251597255468, -0.011562353000044823, 0.014223087579011917, 0.0002699043252505362, -0.01742711290717125, -0.005864759907126427, -0.010789208114147186, -0.00988372229039669, 0.01804005727171898, 0.001117926323786378, -0.022149568423628807, -0.03850403055548668, 0.013352428562939167, -0.0115344924852252, -0.00984193105250597, -0.004840864799916744, 0.018694791942834854, 0.019377389922738075, -0.006341881118714809, 0.01795647293329239, -0.014710656367242336, 0.02908698096871376, 0.013227052986621857, 0.030089979991316795, 0.0025980467908084393, 0.027373522520065308, -0.014919614419341087, -0.03580150380730629, -0.040119972079992294, 0.004854795057326555, 0.0044333962723612785, 0.018221154808998108, -0.000976008886937052, -0.00439856993034482, 0.036442309617996216, -0.0019746548496186733, 0.015476836822926998, -0.006596113555133343, -0.009096646681427956, 0.014390254393219948, -0.002080875216051936, 0.03379550576210022, 0.041596610099077225, -0.02160627767443657, 0.031928811222314835, 0.007104578427970409, 0.0021035124082118273, -0.006077200639992952, -0.00472245505079627, -0.006794624030590057, 0.03786322474479675, 0.011436978355050087, -0.0013103419914841652, 0.006589148193597794, 0.01464100368320942, -0.04538571834564209, 0.0365816131234169, 0.012788240797817707, 0.008776243776082993, -0.005753315519541502, 0.021968470886349678, -0.0022271459456533194, 0.01048970129340887, 0.04204238951206207, 0.01732959970831871, -0.0058891382068395615, 0.02813970297574997, -0.017622141167521477, -0.027457106858491898, 0.0145852817222476, 0.013261879794299603, 0.01716243289411068, 0.02194060944020748, 0.0017787566175684333, 0.038643334060907364, -0.007585182320326567, 0.032987531274557114, 0.04304538667201996, -0.0113185690715909, -0.015379322692751884, 0.01328277587890625, 0.001499274978414178, -0.038281138986349106, -0.018499765545129776, -0.03075864538550377, -0.012293706648051739, 0.023041123524308205, -0.016438044607639313, 0.024434177204966545, -0.03652589023113251, 0.04719668999314308, -0.001903260825201869, -0.00949366670101881, 0.005854311864823103, 0.0026973020285367966, 0.012419081293046474, 0.002376899356022477, -0.014919614419341087, 0.02240031771361828, -0.01819329336285591, -0.0009916807757690549, -0.01595047488808632, 0.0071115437895059586, 0.0044647399336099625, -0.0011762605281546712, -0.0069861686788499355, 0.031399451196193695, 0.053771909326314926, 0.0077035920694470406, -0.018792307004332542, 0.015295739285647869, 0.006693627219647169, -0.021661998704075813, 0.012328533455729485, 0.006742384284734726, 0.002263713628053665, 0.0015558678423985839, 0.02187095768749714, -0.049787770956754684, -0.0322352834045887, 0.007202092092484236, -0.015309670008718967, 0.016869891434907913, 0.011945443227887154, 0.005460774060338736, -0.006679696962237358, 0.02928200736641884, 0.007787175010889769, -0.020867958664894104, -0.02716456539928913, 0.007390154525637627, -0.024615274742245674, 0.011381256394088268, -0.0036950772628188133, 0.0032997981179505587, -0.030285006389021873, -0.019447041675448418, 0.036191560328006744, 0.02074258215725422, 0.026064051315188408, -0.007801105733960867, -0.014905684627592564, -0.04510710760951042, 0.045859359204769135, -0.012621074914932251, -0.04457774758338928, 0.004402052611112595, 0.005641871131956577, 0.008915549144148827, -0.017566418275237083, 0.016131572425365448, 0.022511761635541916, 0.032792504876852036, 0.02291574887931347, 0.009772278368473053, -0.03736172616481781, 0.03713883459568024, -0.018081849440932274, -0.028780508786439896, 0.010580250062048435, -0.003461740678176284, 0.015574350021779537, 0.012948442250490189, 0.016479836776852608, -0.002322918502613902, 0.035244282335042953, -0.03440845012664795, -0.007954341359436512, -0.009988201782107353, -0.016131572425365448, -0.012551422230899334, -0.0002611977397464216, -0.008790174499154091, 0.015128573402762413, -0.011520561762154102, 0.0018301254604011774, 0.0005123828887008131, -0.02577150985598564, 0.007418015971779823, 0.0041547855362296104, -0.004175681155174971, -0.0013120833318680525, -0.028613341972231865, -0.015267878770828247, -0.017357461154460907, 0.008783209137618542, -0.006564769893884659, 0.02082616649568081, -0.01862514019012451, -0.0005171715165488422, 0.012871824204921722, -0.01716243289411068, 0.008260813541710377, 0.008044890128076077, -0.002335107885301113, 0.0374453067779541, -0.02692774496972561, -0.02142518013715744, -0.025061052292585373, -0.010252881795167923, 0.00771055743098259, -0.012272810563445091, -0.02089581824839115, -0.01628480851650238, -0.0017265169881284237, -0.03510497510433197, -0.00015976594295352697, 0.028265077620744705, 0.012147435918450356, -0.03638658672571182, 0.04025927931070328, 0.00751552963629365, 0.023570483550429344, -0.030201423913240433, 0.010956373997032642, 0.029560618102550507, -0.016828099265694618, -0.04407624900341034, 0.0027599893510341644, 0.0383090004324913, 0.013178296387195587, -0.03440845012664795, -0.007933446206152439, -0.01285092905163765, 0.03176164627075195, 0.019015194848179817, 0.01837439090013504, 0.003844830673187971, -0.02969992347061634, 0.0006216506008058786, -0.025395385921001434, -0.007640904281288385, 0.006125957705080509, 0.016145503148436546, -0.009430979378521442, 0.007835932075977325, 0.015560420230031013, 0.014306670986115932, 0.01081010326743126, -0.017037058249115944, -0.04067719355225563, -0.011687727645039558, -0.002458741422742605, -0.0029341212939471006, -0.00962600763887167, 0.0012964113848283887, 0.00459359772503376, -0.014181295409798622, -0.0265516210347414, -0.028613341972231865, -0.013791240751743317, 0.008476736955344677, 0.0033154699485749006, 0.023890886455774307, -0.01628480851650238, 0.032458171248435974, -0.004976687487214804, -0.0010360843734815717, 0.009653868153691292, 0.015657933428883553, -0.010183229111135006, -0.0032388519030064344, 0.020603276789188385, 0.010642937384545803, 0.0006582182832062244, 0.01032949984073639, 0.01689775288105011, 0.006763279903680086, -0.002585857640951872, -0.001473155221901834, -0.03181736543774605, 0.011708623729646206, -0.0304800346493721, 0.010336465202271938, -0.005969238933175802, 0.0019119674107059836, -0.0023856060579419136, 0.011430012993514538, -0.022261012345552444, -0.019224153831601143, -0.029922813177108765, -0.016939543187618256, -0.032541755586862564, -0.010183229111135006, 0.03847616910934448, -6.725841376464814e-05, 0.0034338796976953745, -0.025896884500980377, 0.0005001936806365848, -0.010782242752611637, 0.004611010663211346, 0.02864120341837406, -0.013080782257020473, 0.0031796470284461975, -0.0015515146078541875, -0.014696725644171238, 0.0018841063138097525, -0.010789208114147186, 0.013686761260032654, -0.019642069935798645, -0.01010661106556654, -0.025019260123372078, -0.009159334003925323, -0.006408051121979952, -0.006522978190332651, -0.010475770570337772, -0.038364723324775696, 0.03190094977617264, 0.0038204521406441927, 0.0011161849834024906, 0.012272810563445091, -0.004301056265830994, -0.028418313711881638, 0.027847161516547203, -0.01595047488808632, -0.0013216605875641108, 0.00927774328738451, -0.031650200486183167, -0.007940411567687988, 0.010036958381533623, 0.022748582065105438, -0.04510710760951042, -0.03638658672571182, 0.03499353304505348, -0.0256879273802042, 0.000584647583309561, 0.0017352236900478601, -0.0252560805529356, -0.007376224268227816, -0.008128473535180092, -0.005728937219828367, -0.005272711627185345, 0.004875691141933203, 0.005829933565109968, -0.020436111837625504, -0.007738418411463499, 0.02213563770055771, 0.00010899564222199842, 0.005666249431669712, -0.032625339925289154, -0.0004623199929483235, -0.04025927931070328, -0.010580250062048435, -0.007000099401921034, 0.03908911347389221, -0.005763763561844826, 0.008163300342857838, 0.010886721312999725, 0.004666733089834452, -0.004158267751336098, -0.0015819875989109278, -0.007626974023878574, 0.0006939152954146266, -0.019015194848179817, -0.011673797853291035, -0.010475770570337772, 0.01734353043138981, -0.013220088556408882, -0.02081223577260971, 0.004499566275626421, -0.011081749573349953, 0.0057184891775250435, 0.006112026982009411, 0.03100939467549324, -0.015337531454861164, -0.02116050012409687, -0.002807005075737834, -0.013749448582530022, 0.008065786212682724, -0.0010134471813216805, -0.03268105909228325, -0.008978236466646194, 0.019892819225788116, -0.014501698315143585, -0.01680023781955242, 0.00537719065323472, 0.0016777601558715105, 0.024322733283042908, -0.004123441409319639, 0.00019154501205775887, -0.009319535456597805, -0.02054755575954914, 0.007010547444224358, -0.009389188140630722, -0.008051855489611626, -0.01224495004862547, -0.010803138837218285, 0.01575544662773609, -0.037083111703395844, -0.021843096241354942, -0.007257814519107342, 0.016047988086938858, 0.005429430399090052, -0.007884688675403595, -0.021313736215233803, 0.015866892412304878, 0.01037129107862711, -0.004757281392812729, -0.0006277452339418232, -0.001419174368493259, -0.005077683832496405, 0.05508137866854668, 0.014362392947077751, 0.007606077939271927, -0.004071202129125595, -0.017468905076384544, 0.01550469733774662, 0.015713656321167946, 0.03490994870662689, 0.00791951548308134, -0.004826934076845646, 0.01769179292023182, -0.020491832867264748, 0.023208290338516235, 0.029254145920276642, -0.022274943068623543, -0.0019433111883699894, -0.0007757573039270937, 0.012781276367604733, 0.00437767431139946, 0.010427013970911503, -0.035244282335042953, -0.002557996427640319, 0.005338881630450487, -0.012809136882424355, -0.021968470886349678, -0.01863907091319561, -0.007048856467008591, -0.01890375092625618, 0.004130406770855188, 0.0014095971127972007, 0.031148700043559074, 0.007585182320326567, 0.01528180856257677, 0.021550554782152176, 0.0023472970351576805, 0.05410623922944069, 0.009702625684440136, 5.5123604397522286e-05, 0.008253848180174828, 0.0020948059391230345, -0.006401085760444403, 0.010649902746081352, 0.00429060822352767, -0.010357361286878586, -0.004471705295145512, 0.008072751574218273, 0.009911583736538887, -0.0033973120152950287, -0.018095780164003372, -0.013895719312131405, -0.027025260031223297, 0.006320985034108162, -0.03301539272069931, 0.007870758883655071, -0.01646590605378151, 0.0029288972727954388, -0.016396252438426018, -0.013352428562939167, -0.03805825114250183, 0.010023027658462524, 0.010684728622436523, 0.012084748595952988, -0.02542324736714363, -0.0265516210347414, -0.02908698096871376, -0.007613043300807476, -0.005060270894318819, -0.00021026417380198836, -0.006742384284734726, 0.040203556418418884, -0.01179917249828577, -0.0014818618074059486, -0.019474903121590614, 0.009688694961369038, -0.007466772571206093, 0.016479836776852608, 0.021411249414086342, -0.02194060944020748, 0.03362833708524704, -0.03683236241340637, -0.004555288702249527, -5.7191420637536794e-05, 0.013317601755261421, 0.0010848413221538067, -0.02708098106086254, -0.0010134471813216805, 0.00285402056761086, -0.011868825182318687, 0.0018788824090734124, 0.015978336334228516, 0.009695660322904587, -0.012224053964018822, 0.03354475647211075, 0.014822101220488548, -0.024071983993053436, -0.03752889111638069, 0.007717522326856852, 0.006951342336833477, -0.003090839833021164, -0.010009096935391426, -0.017120640724897385, 0.015518628060817719, 0.013171331025660038, -0.0002855761849787086, -0.01698133535683155, -0.007202092092484236, 0.0023856060579419136, -0.009319535456597805, -0.009570284746587276, -0.019837098196148872, 0.011165332980453968, -0.0006399344420060515, -0.026426246389746666, -0.01699526607990265, 0.023291872814297676, -0.016688793897628784, -0.01524001732468605, -0.005519978702068329, 0.010608110576868057, 0.0066762142814695835, -0.010691693983972073, 0.028111841529607773, 0.005673214793205261, 0.011395186185836792, -0.0029097427614033222, 0.02543717622756958, -0.008309571072459221, 0.0032179560512304306, -0.006087648682296276, -0.010893686674535275, -0.005304055288434029, -0.011423047631978989, -0.041067250072956085, 0.01184792909771204, 0.010503632016479969, 0.017287807539105415, 0.02499139867722988, 0.008609076961874962, -0.002291574841365218, -0.0003645885153673589, -0.010071785189211369, 0.016535557806491852, 0.006300089415162802, -0.0007875111768953502, -0.01227977592498064, 0.0024604827631264925, -0.022511761635541916, 0.0007413662387989461, 0.02031073532998562, -0.014473836869001389, 0.01578330807387829, 0.00862300768494606, 0.015616142190992832, -0.015992267057299614, 0.0145852817222476, -0.005115992855280638, 0.00809364765882492, -0.024879954755306244, 0.019224153831601143, -0.005412016995251179, 0.05767245963215828, -0.03167806193232536, -0.015644002705812454, -0.006839897949248552, 0.009751382283866405, 0.014668865129351616, -0.0032249214127659798, -0.06931839883327484, -0.008783209137618542, 0.006926964037120342, 0.007557321339845657, -0.001081358641386032, -0.002941086422652006, -0.024002330377697945, -0.007202092092484236, -0.0045343926176428795, 0.0365816131234169, 0.00044360081665217876, 0.040203556418418884, -0.0029602409340441227, -0.009911583736538887, -0.011207124218344688, 0.01416040025651455, -0.01621515490114689, 0.02273465134203434, 0.007014030124992132, -0.0031622338574379683, -0.02202419377863407, 0.0017526368610560894, 0.011854894459247589, 0.0070175123400986195, -0.02107691578567028, -0.0028836231213063, -0.0034878605511039495, 0.021369457244873047, -0.0012145694345235825, 0.0046911113895475864, -0.02403019182384014, 0.010071785189211369, 0.008003098890185356, 0.0006342751439660788, 0.02309684455394745, 0.0154629060998559, -0.03474278002977371, 0.004656285047531128, -0.012906651012599468, -0.005965756252408028, 0.003726421156898141, -0.003677664091810584, -0.016075849533081055, 0.00771055743098259, 0.03736172616481781, -0.029059119522571564, 0.0050950972363352776, 0.015142503194510937, -0.009702625684440136, 0.02649589814245701, 0.0002701219927985221, -0.007884688675403595, -0.017120640724897385, -0.0017683086916804314, 0.004304538480937481, -0.017817167565226555, 0.024629205465316772, 0.00732050184160471, 0.01119319349527359, -0.011889721266925335, -0.020268945023417473, 0.021216221153736115, -0.01951669529080391, -0.0027199392206966877, 0.02664913423359394, 0.013387254439294338, 0.0037821433506906033, 0.01285092905163765, 0.017998265102505684, -0.035940807312726974, -0.010454874485731125, 0.012182262726128101, -0.02447596937417984, 0.0022010263055562973, -0.00021581462351605296, -0.01777537725865841, -0.0024691892322152853, -0.031120840460062027, -0.00022332406661007553, 0.011645936407148838, 0.0008719651377759874, 0.0135056646540761, 0.0007883818470872939, -0.004116476513445377, 0.007104578427970409, -3.9125243347371e-05, -0.020756512880325317, -0.023194359615445137, 0.0009150627302005887, 0.028460105881094933, -0.012781276367604733, -0.007362293545156717, -0.011088714934885502, -0.02099333330988884, -0.00971655547618866, 0.02031073532998562, 0.015309670008718967, -0.042376719415187836, 0.0004102981183677912, -0.004806038457900286, 0.014404184184968472, 0.02046397142112255, -0.034631337970495224, -0.020854027941823006, 0.042627472430467606, 0.0034965670201927423, -0.01120015885680914, 0.014181295409798622, 0.006836415268480778, 0.0026589930057525635, -8.135221287375316e-05, -0.012112610042095184, -0.004102545790374279, -0.004684146028012037, 0.01785895973443985, -0.008741417899727821, -0.0033746748231351376, 0.0035366173833608627, 0.009563319385051727, 0.002021670574322343, 0.010566319338977337, 0.024587413296103477, -0.011659867130219936, 0.005565253086388111, 0.002039083745330572, -0.004572701640427113, -0.0035087561700493097, 0.0030455656815320253, 0.03176164627075195, -0.0025127222761511803, 0.027679994702339172, -0.005189128220081329, -0.025047121569514275, 0.007696626707911491, -0.012704658322036266, 0.00020351656712591648, 0.012948442250490189, -0.005192610900849104, 0.002387347398325801, 0.02160627767443657, -0.012001165188848972, 0.011827033944427967, -0.011095680296421051, 8.967788744485006e-05, -0.002390829846262932, 0.010552388615906239, 0.010113576427102089, -0.015003197826445103, 0.006906067952513695, 0.004938378464430571, 0.027220286428928375, 0.011165332980453968, 0.015253948047757149, 0.0014000198571011424, 0.017441043630242348, -0.047419577836990356, -0.03268105909228325, -0.00897127203643322, 0.010517561808228493, -0.00579510722309351, -0.013888753950595856, -0.0072926408611238, -0.04076077789068222, 0.0061851623468101025, -0.006073717959225178, 0.018430111929774284, 0.000924639985896647, 0.015880823135375977, 0.024852093309164047, -0.03412983939051628, 0.017106710001826286, -0.04546930268406868, -0.009347395971417427, -0.020575417205691338, -0.003090839833021164, -0.01907091774046421, 0.014459907077252865, -0.01629873923957348, 0.0339626707136631, -0.005077683832496405, 0.023835163563489914, 0.01306685246527195, -0.02309684455394745, -0.0052518160082399845, 0.012948442250490189, -0.013240983709692955, -0.022929679602384567, -0.005425947718322277, 0.0013974078465253115, -0.007327467203140259, 0.01654948852956295, 0.002941086422652006, -0.0028052637353539467, -0.02256748452782631, -0.02004605531692505, -0.00919416081160307, -0.009166299365460873, -0.0265655517578125, 0.021007264032959938, -0.022609276697039604, 0.0060841660015285015, 0.016479836776852608, -0.0023020226508378983, -0.004952309187501669, 0.000530666729900986, -0.013345463201403618, 0.013456907123327255, 0.045162830501794815, -0.026704857125878334, 0.015351461246609688, 7.536642897321144e-06, -0.01776144653558731, -0.007933446206152439, -0.015058919787406921, 0.0014130797935649753, 0.001019541872665286, -0.016145503148436546, 0.0052657462656497955, -0.020881887525320053, 0.020784374326467514, 0.004893104080110788, 0.0121961934491992, 0.007121991831809282, 0.0017421889351680875, -0.008483702316880226, 0.01671665534377098, 0.03777964040637016, 0.010427013970911503, 0.006540391128510237, 0.002075651427730918, -0.003806521650403738, -0.001903260825201869, 0.0374453067779541, 0.024517761543393135, -0.0033311417791992426, -0.0034234316553920507, 0.004475187975913286, -0.010141437873244286, 0.012600178830325603, 0.03404625505208969, -0.027721786871552467, -0.0003149609256070107, -0.020951541140675545, 0.019795306026935577, -0.02021322213113308, -0.03518855944275856, -0.022873956710100174, 0.011548422276973724, 0.013561386615037918, -0.0033833812922239304, -0.012544456869363785, -0.0024657065514475107, -0.008344396948814392, -0.0025510312989354134, -0.01943311095237732, -0.0019346046028658748, 0.007348362822085619, 0.0313437283039093, -0.007160300854593515, 0.02369585819542408, -0.012920581735670567, -0.0017439302755519748, 0.01578330807387829, 0.015128573402762413, 0.03780750185251236, 0.0009655609610490501, -0.0005659284070134163, 0.012224053964018822, 0.0011928030289709568, -0.012335498817265034, -0.008734452538192272, 0.011569318361580372, -0.015226086601614952, 0.010176263749599457, -0.022971469908952713, -0.014243983663618565, -0.005871725268661976, 0.014278809539973736, -0.0400921106338501, 0.0003515286080073565, 0.015574350021779537, 0.0045204623602330685, -0.0031900950707495213, -0.025632204487919807, 0.011938477866351604, -2.2950031052459963e-05, 0.0025283941067755222, -0.016229085624217987, -0.004468222614377737, 0.005972721613943577, -0.0019659483805298805, -0.03752889111638069, -0.00354880653321743, -0.006787658669054508, -0.027415314689278603, -0.006853828672319651, -0.02256748452782631, 0.011081749573349953, 0.002000774722546339, -0.013707657344639301, 0.008427980355918407, -0.009215055964887142, -0.023500831797719002, -0.010768312029540539, 0.019265946000814438, -0.0012650677235797048, 0.004443844314664602, 0.014780309051275253, 0.0017517661908641458, 0.002242818009108305, -0.014557420276105404, 0.006704075261950493, -0.01266983151435852, 0.0029114841017872095, -0.012774311006069183, -0.009166299365460873, 0.003294574096798897, -0.0058194855228066444, 0.07700806111097336, -0.0018266428960487247, 0.005997099913656712, -0.013136505149304867, -0.0076339393854141235, -0.01985102891921997, -0.017023127526044846, 0.033572614192962646, 0.017134571447968483, 0.02673271857202053, -0.002908001421019435, -0.01994854211807251, 0.008010064251720905, -0.0033102459274232388, -0.024420246481895447, -0.002634614473208785, 0.024629205465316772, 0.030006395652890205, 0.016939543187618256, 0.027067050337791443, -0.00040986278327181935, -0.0007431075791828334, -0.011778276413679123, 0.01734353043138981, -0.0261197742074728, 0.017580348998308182, -0.0034826365299522877, 0.011026027612388134, 0.017733585089445114, 0.01872265338897705, 0.008546389639377594, -0.00016205142310354859, 0.00970959011465311, 0.0035505478736013174, -0.012621074914932251, 0.003858761163428426, 0.01075438130646944, 0.01464100368320942, 0.006655318196862936, -0.012105644680559635, 0.00017902928811963648, 0.009772278368473053, 0.01794254407286644, 0.021494831889867783, 0.003376416163519025, -0.008783209137618542, 0.006780693307518959, -0.0009394412045367062, -0.005060270894318819, 0.008274744264781475, -0.01915450021624565, -0.01354745589196682, 0.005885655526071787, 0.005189128220081329, 0.0145852817222476, -0.006561287213116884, 0.028279008343815804, -0.00507420115172863, 0.004409017972648144, -0.0002685983490664512, -0.003757764818146825, 0.013860893435776234, -0.00332243531011045, -0.03117656148970127, -0.012481769546866417, -0.018708722665905952, 0.012753414921462536, -0.030814368277788162, 0.016047988086938858, -0.0036915945820510387, -0.009047890082001686, 0.02212170697748661, 0.011443943716585636, -0.019196292385458946, -0.0006460290751419961, 0.03468706086277962, -0.0010169298620894551, 0.01673058606684208, 0.008978236466646194, 0.0034060184843838215, 0.018778376281261444, -0.0028157115448266268, -0.019656000658869743, -0.00020776104065589607, 0.00647073844447732, -0.0026433211751282215, 0.008678730577230453, -0.021661998704075813, -0.007052338682115078, -0.03543930873274803, -0.008985201828181744, 0.012224053964018822, 0.007222988177090883, 0.004781659692525864, 0.01028074324131012, 0.0019485350931063294, -0.008205091580748558, 0.00496623944491148, 0.01804005727171898, 0.0038239348214119673, 0.01976744458079338, 0.02751282788813114, -0.005324951373040676, 0.022191360592842102, 0.01097727008163929, -0.01925201527774334, 0.016688793897628784, 0.004725937731564045, -0.03638658672571182, -0.008010064251720905, -0.01032253447920084, 0.008379223756492138, 0.007815035991370678, 0.0014566127210855484, -0.023974468931555748, 0.005412016995251179, 0.017204225063323975, -0.024183427914977074, -0.010141437873244286, -0.019307736307382584, 0.004806038457900286, 0.005896103568375111, 0.0005189128569327295, -0.006439394783228636, 0.003865726524963975, -0.026259079575538635, -0.007062786724418402, -0.012857894413173199, -0.009270777925848961, -0.019112709909677505, 0.007069752085953951, -0.00546425674110651, 0.0046353889629244804, -0.020101778209209442, 0.010851895436644554, 0.0030351176392287016, -0.005962273571640253, -0.0007461548666469753, 0.030117839574813843, 0.000772709958255291, 0.01028074324131012, 0.0023472970351576805, -0.0018214188748970628, 0.015630071982741356, 0.023709788918495178, 0.005916999187320471, -0.009437944740056992, -0.021049054339528084, 0.0066204918548464775, -0.019474903121590614, 0.02326401136815548, -0.01880623772740364, -0.012481769546866417, -0.02177344262599945, 0.012864858843386173, -0.009486702270805836, -0.015490767545998096, 0.029226286336779594, -0.0012659383937716484, -0.003392087994143367, 0.0074389115907251835, -0.01699526607990265, -0.0003741657710634172, -0.004447326995432377, -0.003360744332894683, 0.009918549098074436, 0.01923808455467224, 0.032959673553705215, 0.01969779282808304, 0.0003861373115796596, 0.0028505378868430853, -0.006603078916668892, -0.0009498891304247081, -0.02465706691145897, -0.018541555851697922, -0.025729717686772346, 0.02369585819542408, 0.00409558042883873, -0.023152567446231842, -0.0026537689846009016, 0.0002520558191463351, -0.001475767232477665, 0.02004605531692505, 0.008100612089037895, -0.00922898668795824, -0.014062886126339436, 0.005805555265396833, -0.004934895783662796, -0.006498599890619516, 0.02134159579873085, -0.007376224268227816, 0.027248147875070572, 0.0034704473800957203, 0.01759427972137928, -0.01688382215797901, 0.008685695007443428, 0.0226371381431818, 0.018137570470571518, 0.004186129197478294, -0.023277942091226578, 0.0007304829778149724, 0.017970403656363487, -0.0068468633107841015, 0.012349428609013557, 0.00461449334397912, -0.010357361286878586, -0.01802612654864788, -0.01671665534377098, 0.0037403516471385956, 0.004255781881511211, -0.04340758174657822, -0.023807303979992867, 0.0053214686922729015, 0.0017465421697124839, -0.029393451288342476, 0.011074784211814404, 0.004015479702502489, 0.0019015194848179817, 0.01610371097922325, -0.007250849157571793, 0.015741517767310143, 0.01371462270617485, 0.0061155096627771854, 0.006543873809278011, -0.021216221153736115, 0.005951825994998217, -0.006850345991551876, 0.011715589091181755, 0.007863793522119522, 0.014237018302083015, 0.01437632367014885, 0.0026520276442170143, -0.010266812518239021, 0.01293451152741909, 0.0043637435883283615, 0.009542424231767654, 0.019293805584311485, -0.005892620887607336, 0.02325008064508438, -0.017719654366374016, 0.001807488384656608, -0.0008192902314476669, -0.007822001352906227, -0.00429060822352767, -0.003404277143999934, -0.023556552827358246, -0.006930446717888117, -0.001583728939294815, 0.003660250920802355, -2.1249525161692873e-05, -0.013965371996164322, -0.01654948852956295, -0.019906749948859215, 0.01794254407286644, 0.014146469533443451, 0.013909650035202503, -0.002869692398235202, -0.00809364765882492, 0.0030856160447001457, -0.017106710001826286, -0.008685695007443428, 0.010023027658462524, -0.005098579917103052, -0.014062886126339436, 0.02220528945326805, 0.01985102891921997, -0.019976403564214706, 0.005210024304687977, -0.0005646224599331617, 0.02167592942714691, 0.008936445228755474, 0.011966339312493801, 0.01371462270617485, 0.0028958122711628675, -0.008421014994382858, -0.00950063206255436, 0.015100711956620216, -0.015309670008718967, 0.006589148193597794, 0.00461449334397912, 0.008232953026890755, -0.009786208160221577, 0.008107577450573444, -0.017037058249115944, 0.0013947959523648024, -0.02517249621450901, -0.008267778903245926, -0.015407184138894081, -0.009382222779095173, 0.01014840230345726, -0.0018249015556648374, -0.016424113884568214, 0.02256748452782631, -0.003614976769313216, -0.002725163009017706, 0.020422181114554405, 0.0030142217874526978, 0.003195319091901183, 0.010231985710561275, 0.0007104578544385731, 0.003628907259553671, -0.0072996062226593494, -0.015644002705812454, 0.0017578607657924294, 0.0065508391708135605, 0.008901619352400303, 0.01454349048435688, -0.006453325506299734, -0.0012389479670673609, 0.011165332980453968, -0.01140911690890789, -0.01027377787977457, -0.0030020326375961304, 0.007620008662343025, -0.009263813495635986, 0.004220955539494753, 0.0061712320894002914, 0.022344596683979034, -0.012913616374135017, 0.010649902746081352, -0.004370708949863911, 0.01611764170229435, -0.02124408259987831, 0.019182361662387848, -0.0055617704056203365, 0.02588295377790928, 0.012467838823795319, 0.015393253415822983, -0.00918719545006752, -0.024280941113829613, -0.006355811841785908, -0.0005711523699574172, -0.009612076915800571, -0.0024813786149024963, 0.00016335741383954883, -8.445393177680671e-05, -0.012565352953970432, -0.011938477866351604, 0.0074389115907251835, 0.006756315007805824, -0.012816102243959904, -0.005300572607666254, 0.007118509151041508, -0.012683762237429619, 0.01751069724559784, 0.010211090557277203, 0.01224495004862547, -0.015365391969680786, 0.019558487460017204, 0.00897127203643322, 0.01119319349527359, -0.0030995465349406004, 0.03153875470161438, 0.00448563601821661, -0.016089780256152153, -0.027039188891649246, 0.0034286556765437126, 0.017134571447968483, -0.004374191630631685, 0.013839997351169586, -0.008560320362448692, 0.0066901445388793945, -0.010789208114147186, -0.006913033314049244, -0.0029793954454362392, 0.004914000164717436, -0.022107776254415512, 0.010127507150173187, -0.01829080656170845, 0.005836898926645517, -0.00581600284203887, -0.036804500967264175, -0.032458171248435974, 0.004718972370028496, -0.008943410590291023, 0.006059787701815367, -0.032095976173877716, -0.01916843093931675, -0.008441911078989506, -0.010392187163233757, 0.052573882043361664, -0.009584215469658375, -0.024963539093732834, -0.01925201527774334, 0.016869891434907913, -0.009222021326422691, 0.022261012345552444, 0.007815035991370678, -0.012600178830325603, 0.006387155503034592, -0.001795299118384719, 0.013707657344639301, 0.00046884993207640946, -0.003028152510523796, 0.019711721688508987, 0.010218055918812752, -0.0019920680206269026, 0.03535572439432144, 0.0034286556765437126, -0.005175197962671518, 0.005317986011505127, 0.004649319685995579, 0.029755646362900734, 0.023403316736221313, 0.0030333762988448143, -0.013415115885436535, -0.0003891846281476319, 0.019279874861240387, 0.016006197780370712, -0.01398626808077097, -0.0027181978803128004, 0.027471037581562996, -0.03204025700688362, -0.005192610900849104, 0.014432045631110668, -0.01249569933861494, 0.022776443511247635, -0.026983467862010002, 0.010566319338977337, 0.01163200568407774, 0.030953673645853996, -0.01629873923957348, 0.008685695007443428, -0.01907091774046421, 0.0018022643635049462, -0.011457874439656734, 0.016424113884568214, 0.009995167143642902, -0.01819329336285591, 0.0022445591166615486, -0.010287708602845669, -0.010427013970911503, 0.000994292669929564, -0.007216022815555334, -0.013018094934523106, 0.008086682297289371, 0.01583903096616268, -0.021731652319431305, 0.008831965737044811, 0.014473836869001389, -0.01915450021624565, -0.002167941303923726, -0.0004050741554237902, -0.003409501165151596, 0.009472771547734737, 0.006101578939706087, 0.014905684627592564, 0.014237018302083015, -0.014571350999176502, -0.0004910517600364983, -0.018249014392495155, 0.0005089002661406994, 0.023236149922013283, -0.007996133528649807, -0.013784275390207767, -0.023821232840418816, -0.0036323899403214455, 0.012969338335096836, 0.008177230134606361, -0.027568550780415535, -0.008448876440525055, 0.002291574841365218, -0.0013199192471802235, 0.018708722665905952, -0.00012025979231111705, 0.012091713957488537, 0.013415115885436535, 0.0064498428255319595, 0.005359777715057135, -0.003921448718756437, -0.006724970880895853, 0.01285092905163765, 0.013303671032190323, 0.0005515625816769898, 0.005168232601135969, 0.006784175988286734, 0.013958406634628773, 0.007038408424705267, -0.003736868966370821, -0.010245916433632374, -0.007341397926211357, 0.010865826159715652, -0.002467447891831398, 0.01201509591192007, 0.02648196741938591, -0.007101095747202635, 0.0037995565216988325, 0.016535557806491852, 0.012488734908401966, 0.02298540063202381, 0.013303671032190323, -0.010851895436644554, 0.017900751903653145, -0.01812363974750042, 0.006435912102460861, -0.0013913132715970278, -0.006303572095930576, 0.001661217655055225, 0.003334624459967017, 0.010475770570337772, -0.003973688464611769, 0.00037634241743944585, -0.0016681829001754522, 0.00043794154771603644, 0.011896686628460884, 0.006108544301241636, -0.004015479702502489, 0.017315668985247612, 0.020436111837625504, -0.0022567484993487597, 0.018235085532069206, -0.0022410766687244177, -0.014146469533443451, 0.008170264773070812, 0.011095680296421051, 0.012098679319024086, 0.013073817826807499, 0.029755646362900734, 0.0010761346202343702, -0.0032510412856936455, -0.019725652411580086, 0.00018164125503972173, -0.002155751921236515, 0.03875477984547615, -0.0028627272695302963, -0.01528180856257677, 0.016521627083420753, -0.0020077398512512445, 0.024002330377697945, -0.0027495415415614843, 0.00316745787858963, -0.0026676994748413563, -0.0014391995500773191, 0.004200059454888105, 0.0073692589066922665, 0.01377034466713667, 0.009730486199259758, 0.00971655547618866, 0.04697380214929581, 0.002108736429363489, 0.012586248107254505, -0.010468805208802223, 0.004523945041000843, -0.01629873923957348, 0.0011466580908745527, 0.0016690535703673959, -0.0014966630842536688, 0.017315668985247612, -0.0016028834506869316, 0.02735959179699421, -0.012809136882424355, 0.00441946554929018, 0.03733386471867561, 0.017747515812516212, 0.013220088556408882, -0.01732959970831871, -0.003775177989155054, -0.006000582594424486, 0.005725454539060593, 0.012182262726128101, 0.002248041797429323, -0.022414248436689377, -0.004983652848750353, 0.014961406588554382, -0.013477803207933903, -0.0010143178515136242, -0.0018701758235692978, -0.00773145304992795, -0.005906551610678434, 0.015100711956620216, -0.0030838747043162584, -0.01267679687589407, -0.008156334981322289, 0.011924547143280506, 0.01593654416501522, 0.003904035547748208, -0.026774508878588676, -0.008414049632847309, 0.021550554782152176, -0.004694594070315361, -0.0013425563229247928, -0.009751382283866405, -0.026844162493944168, -0.0019607243593782187, 0.010364326648414135, 0.022748582065105438, 0.007376224268227816, 0.002467447891831398, 0.015866892412304878, -0.02797253616154194, 0.014216122217476368, -0.002054755575954914, 0.001467931317165494, 0.014627072960138321, 0.00153497199062258, -0.008490667678415775, 0.0032562650740146637, 0.007522494997829199, -0.03786322474479675, -0.017454974353313446, -0.004346330184489489, 0.014216122217476368, 0.008281709626317024, 0.004234885796904564, 0.014794239774346352, 0.0011901910183951259, 0.008281709626317024, -0.025297870859503746, 0.00285402056761086, -0.005537392105907202, 0.0030177044682204723, 0.011569318361580372, -0.0038413479924201965, -0.00439856993034482, 0.006000582594424486, -0.029059119522571564, 0.012488734908401966, 0.0019067435059696436, 0.021132638677954674, -0.02500532940030098, 0.013658900745213032, 0.0027774025220423937, -0.008030959405004978, 0.016507696360349655, -0.0019258980173617601, -0.012175297364592552, -0.004934895783662796, 0.010817068628966808, 0.009068785235285759, -5.351832805899903e-05, 0.006286158692091703, 0.012175297364592552, -0.019182361662387848, -0.02159234695136547, 0.007459807209670544, -0.005234402604401112, -0.022372456267476082, -0.0002618507423903793, 0.006843380630016327, -0.02019929140806198, 0.00732050184160471, -0.022762512788176537, -0.0019050021655857563, 0.026537690311670303, -0.00732050184160471, -0.0067597972229123116, -0.005035892594605684, 0.0020199292339384556, 0.010768312029540539, 0.008386189118027687, -0.008379223756492138, -0.0004150867462158203, -0.01663307100534439, 0.008225987665355206, 0.018262945115566254, -0.012600178830325603, 0.01638232171535492, -0.029560618102550507, 0.018095780164003372, -0.008086682297289371, -0.0018040057038888335, -0.016911683604121208, -0.0010709107154980302, -0.005102062597870827, 0.011966339312493801, -0.010594179853796959, 0.00989068765193224, 0.004119959194213152, -0.00315701006911695, -0.006933929398655891, -0.014905684627592564, 0.015058919787406921, -0.01224495004862547, -0.0013068593107163906, 0.007139404769986868, -0.00448563601821661, -0.01349869929254055, -0.012913616374135017, 0.028947673738002777, -0.030368590727448463, -0.012049922719597816, -0.001957241678610444, -0.011652901768684387, -0.02178737334907055, -1.364486070087878e-05, -0.016967404633760452, 9.190895070787519e-05, -0.02266499772667885, -0.0023264011833816767, -0.007529459893703461, -0.019279874861240387, 0.008692660368978977, -0.001887588994577527, -0.01432060170918703, 0.017650002613663673, 0.013136505149304867, -0.01934952847659588, -0.005962273571640253, -0.024197358638048172, -0.007543390616774559, -0.022497830912470818, -0.001514076255261898, -0.0128439636901021, 0.0004011561977677047, 0.020519694313406944, -0.007139404769986868, 0.011987234465777874, 0.0024970504455268383, 0.01006481982767582, 0.00655780453234911, -0.0026851126458495855, -0.006867759395390749, 0.005467739421874285, -0.008776243776082993, -0.011750415898859501, -0.024796372279524803, 0.01656341925263405, -0.01603405922651291, 0.003324176650494337, 0.005237885285168886, -0.013519594445824623, -0.012328533455729485, -0.021815234795212746, 0.019363459199666977, 0.0018841063138097525, -0.0033450722694396973, -0.022860025987029076, 0.0014043732080608606, -0.0121961934491992, 0.019976403564214706, 0.011792207136750221, -0.0005728937103413045, 0.0062408847734332085, 0.005530426744371653, -0.011179262772202492, -0.017817167565226555, 0.011269811540842056, 0.0009620783384889364, -0.008170264773070812, 0.0012781275436282158, -0.009653868153691292, -0.04641658067703247, -0.018861958757042885, 0.009201125241816044, 0.020408250391483307, -0.00014594424283131957, -0.011443943716585636, 0.023319734260439873, -0.02518642693758011, 0.010768312029540539, -0.01698133535683155, 2.3671045710216276e-05, 0.005540874786674976, -0.000293629796942696, 0.001349521684460342, -0.02046397142112255, 0.010789208114147186, -0.002338590333238244, 0.0018893303349614143, -0.005192610900849104, 0.0018127122893929482, 0.025562552735209465, -0.0031744232401251793, 0.015866892412304878, 0.0032005428802222013, 0.01663307100534439, 0.006258297711610794, -0.021285874769091606, 0.0028035223949700594, 0.015086781233549118, 0.0027512828819453716, 0.0014635779662057757, -0.009117542766034603, -0.019990334287285805, -0.02054755575954914, 0.0025074982549995184, 0.006930446717888117, 0.004739868454635143, -0.024197358638048172, 0.017273876816034317, 0.0020843578968197107, -3.539773388183676e-05, -0.04485635831952095, 0.006303572095930576, -0.015100711956620216, 0.011262846179306507, 0.039590612053871155, 0.018137570470571518, 0.01087975688278675, 0.0025823749601840973, 0.016925612464547157, 0.008114542812108994, -0.01941918022930622, -0.009660833515226841, 0.0392005555331707, -0.010406117886304855, 0.016061918810009956, -0.0018109709490090609, -0.0032997981179505587, 0.001604624791070819, 0.009765313006937504, 0.0005267487722449005, 0.0020077398512512445, -0.00941008422523737, -0.02004605531692505, 0.007306571584194899, -0.004645837005227804, 0.011680763214826584, 0.006286158692091703, -0.01311560906469822, 0.015922613441944122, 0.001717810402624309, -0.007250849157571793, 0.0052518160082399845, 0.004255781881511211, 0.0037229384761303663, -0.0004775565175805241, -0.006808554287999868, -0.01585296168923378, 0.01093547884374857, -0.02866906300187111, -0.007738418411463499, 0.020533625036478043, 0.0023264011833816767, -0.0007383189513348043, 0.0022166981361806393, -0.007815035991370678, -0.019711721688508987, 0.0039284140802919865, -0.0039110006764531136, 0.008692660368978977, 0.0033259177580475807, -0.011026027612388134, 0.013352428562939167, -0.005798589903861284, -0.03346117213368416, 0.003980653360486031, -0.004088615067303181, 0.006331433076411486, -0.0033154699485749006, 0.014069851487874985, -0.036804500967264175, -0.0052274372428655624, 0.0035522892139852047, -0.011276776902377605, 0.004241851158440113, -0.0005528685287572443, 0.008776243776082993, -0.00540505163371563, -0.00496623944491148, -0.004562253598123789, 0.024016261100769043, -0.004436878953129053, -0.0018632105784490705, 0.008901619352400303, 0.010559353977441788, -0.009305604733526707, -0.012119575403630733, 0.009688694961369038, -0.003242334583774209, 0.009479736909270287, 0.017650002613663673, 0.0036741814110428095, 0.0004455597954802215, 0.009786208160221577, -0.01484996173530817, 0.0047607640735805035, 0.009563319385051727, -0.023138636723160744, -0.012321568094193935, 0.0004523074021562934, -0.011910616420209408, -0.014947475865483284, 0.00560007942840457, 0.0004666732857003808, 0.01873658411204815, 0.011994199827313423, 0.005833416245877743, -0.004687628708779812, 0.01397930271923542, -0.012119575403630733, 0.0009307346190325916, 0.01294147688895464, 0.003172681899741292, 0.0012267587007954717, 0.019196292385458946, 0.007153335493057966, -0.013651935383677483, 0.02221922017633915, 0.007209057454019785, 0.011917581781744957, -0.01707884855568409, 0.012600178830325603, 0.01223798468708992, -0.0010029992554336786, -0.006341881118714809, 0.023988399654626846, -0.008198126219213009, -0.006798106245696545, -0.0021540105808526278, -0.0024430695921182632, 0.0055234613828361034, -0.02621728740632534, -0.0032440759241580963, -0.01732959970831871, 0.004597080405801535, -0.02666306495666504, -0.016577349975705147, -0.005704558454453945, 0.013784275390207767, -0.009208090603351593, -0.012871824204921722, 0.004865243099629879, -0.018276875838637352, -0.0022880921605974436, 0.009507597424089909, 0.008999132551252842, -0.02107691578567028, -0.015184295363724232, 0.004670215770602226, -0.013129539787769318, 0.0017569900956004858, 0.007132439408451319, -0.002650286303833127, 0.011464839801192284, 0.007668765727430582, -0.02387695573270321, -0.004071202129125595, 0.0006738901720382273, -0.008232953026890755, 0.028028259053826332, -0.00814240425825119, 0.007675730623304844, 0.02246997132897377, -0.021271944046020508, -0.007585182320326567, 0.006627457216382027, 0.008595147170126438, -0.008003098890185356, 0.029337730258703232, 0.046918079257011414, 0.006871241610497236, 0.0029114841017872095, -0.017998265102505684, -0.013791240751743317, -0.006432429421693087, -0.003505273722112179, -0.026676995679736137, -0.0019241566769778728, 0.009222021326422691, 0.01795647293329239, -0.006373224779963493, 0.015880823135375977, 0.012802171520888805, 0.005418982356786728, 0.009793173521757126, -0.012335498817265034, -0.0028749164193868637, -0.012231019325554371, 0.004743351135402918, 0.00950063206255436, -0.022233150899410248, 0.012391220778226852, -0.02588295377790928, -0.003977170679718256, -0.011666832491755486, 0.0006277452339418232, 0.0027129738591611385, -0.0019659483805298805, 0.0033259177580475807, 0.008156334981322289, 0.025130705907940865, -0.002011222532019019, 0.015727587044239044, 0.037417445331811905, 0.009006097912788391, -0.019112709909677505, 0.019976403564214706, 0.002941086422652006, 0.0009394412045367062, -0.008811070583760738, -0.028446175158023834, 0.027944674715399742, 0.008880723267793655, 0.02908698096871376, 0.008511563763022423, -0.0009316052892245352, 0.006940894760191441, 0.012823067605495453, -0.008037924766540527, -0.012446942739188671, -0.004381156526505947, -0.01636839099228382, -0.003378157503902912, 0.006822485011070967, -0.0037507994566112757, 0.0029167081229388714, 0.0032057669013738632, -0.007094130385667086, 0.013638004660606384, 0.005551322363317013, 0.02500532940030098, -0.02177344262599945, -0.004872208461165428, 0.027833230793476105, -0.008260813541710377, -0.003775177989155054, 0.015044989995658398, -0.043491166085004807, 0.015811169520020485, 0.007557321339845657, -0.006425464525818825, -0.020171429961919785, 0.010238951072096825, -0.014599212445318699, 0.0300621185451746, -0.002657251665368676, 0.007996133528649807, -0.003590598236769438, 0.023291872814297676, -0.01267679687589407, 0.027303870767354965, -0.012175297364592552, -0.005314503330737352, 0.0002992890658788383, 0.006617009174078703, 0.006836415268480778, -0.003980653360486031, -0.008957341313362122, -0.006199093069881201, 0.014041990041732788, 0.011548422276973724, -0.01136732567101717, -0.008225987665355206, -0.010120541788637638, -0.0037403516471385956, -0.004948826506733894, 0.0030089979991316795, -0.009807104244828224, 0.007146370131522417, 0.007773244753479958, -0.0005802942905575037, 0.023041123524308205, 0.012363359332084656, -0.009180230088531971, -0.010231985710561275, -0.0043637435883283615, -0.00015269184950739145, 0.012816102243959904, -0.026273010298609734, -0.017914682626724243, -0.010211090557277203, 0.005777693819254637, 0.005676697473973036, 0.01306685246527195, 0.0065369089134037495, 0.003977170679718256, 0.0145852817222476, 0.011764345690608025, 0.02246997132897377, -0.01441811490803957, 0.017454974353313446, -0.005067236255854368, -0.000821466906927526, -0.004314986523240805, 0.01819329336285591, -0.025395385921001434, 0.020505763590335846, -0.0029184494633227587, 0.010183229111135006, -0.001102254493162036, 0.030034257099032402, 0.005596596747636795, 0.007947376929223537, -0.022344596683979034, -0.022065984085202217, 0.01568579487502575, 0.011374291032552719, -0.01752462610602379, -0.011395186185836792, 0.006331433076411486, -0.01976744458079338, 0.006286158692091703, -0.008205091580748558, 0.0050254445523023605, -0.011708623729646206, 0.01120015885680914, -0.003082133363932371, 0.0042940909042954445, -0.016159433871507645, 0.02021322213113308, 0.009988201782107353, -0.0008105836459435523, 0.017009196802973747, 0.018945543095469475, 0.00984889641404152, 0.0037925911601632833, -0.0011867083376273513, -0.01628480851650238, -0.01916843093931675, -0.008657834492623806, 0.005014996509999037, -0.007884688675403595, 0.015588280744850636, 0.012467838823795319, 0.004694594070315361, 0.0025283941067755222, 0.004715489689260721, -0.011039957404136658, 0.0003778660611715168, -0.007780210115015507, 0.0011344688246026635, -0.014390254393219948, -0.0005297960597090423, 0.008246882818639278, 0.01393054611980915, -0.0022776443511247635, 0.020756512880325317, 0.014780309051275253, 8.097130194073543e-05, -0.0392284169793129, -0.01829080656170845, 0.024462038651108742, -0.005244850646704435, -0.005060270894318819, 0.020923679694533348, 0.006213023327291012, -0.0017700500320643187, -0.008198126219213009, -0.001709974487312138, 0.01725994609296322, 0.009117542766034603, 0.004123441409319639, 0.010385221801698208, -0.002093064598739147, 0.005620975513011217, 0.019210223108530045, -0.009918549098074436, 0.02011570893228054, -0.007766279391944408, 0.010231985710561275, 0.0038239348214119673, 0.017803238704800606, 0.006829450372606516, 0.0017970404587686062, 0.003914483357220888, 0.005878690630197525, 0.004130406770855188, 0.0009908101055771112, -0.013011129572987556, -0.002183613134548068, 0.0008798010530881584, 0.004611010663211346, 0.005345846991986036, -0.00862300768494606, -0.0035662197042256594, 0.0007191644399426877, -0.01593654416501522, -0.011430012993514538, 0.03248603269457817, 0.00503240991383791, -0.006634422577917576, -0.006150336004793644, 0.005575701128691435, 0.024545621126890182, 0.004994100891053677, 0.007759314030408859, 0.006136405281722546, -0.003775177989155054, -0.0066901445388793945, -0.014599212445318699, -0.024754580110311508, 0.0029376039747148752, 0.00524833332747221, 0.003242334583774209, -0.007620008662343025, 0.007390154525637627, -0.025061052292585373, 0.014390254393219948, -0.032263144850730896, -0.004523945041000843, -0.004586632363498211, -0.010245916433632374, -0.01742711290717125, 0.01785895973443985, -0.01856941729784012, -0.02063113823533058, -0.0017352236900478601, 0.005150819197297096, 0.013624073937535286, 0.05006638169288635, 0.0003108253004029393, -0.01031556911766529, -0.0055931140668690205, -0.012049922719597816, -0.0066204918548464775, -0.014724587090313435, 0.0017334823496639729, 0.006857311353087425, 0.004234885796904564, -0.02099333330988884, -0.00857425108551979, 0.014237018302083015, 0.018276875838637352, -0.01664700172841549, 0.03502139449119568, 0.015295739285647869, 0.0027930745854973793, -0.0011597179109230638, 0.007397119887173176, 0.014627072960138321, -0.0002074345393339172, -0.008636938408017159, -0.012098679319024086, -0.00409558042883873, 0.00945187546312809, -0.004516979679465294, -0.02422522008419037, 0.036107975989580154, -0.004788625054061413, 0.0005075942608527839, 0.02162020653486252, 0.010169298388063908, -0.010162333026528358, 0.011827033944427967, 0.005008031148463488, -0.005060270894318819, 0.00047973316395655274, -0.001177131081931293, 0.0019154500914737582, -0.005669732112437487, 0.017009196802973747, -0.029894951730966568, -0.01354049053043127, 0.005739384796470404, 0.010259847156703472, 0.014432045631110668, -7.509435090469196e-05, -0.006599596235901117, -0.01271858811378479, -0.008427980355918407, -0.007355328183621168, 0.023988399654626846, 0.018095780164003372, -0.02900339663028717, -0.023291872814297676, 0.006874724291265011, -0.0030769093427807093, 0.007870758883655071, -0.015212155878543854, 0.017984334379434586, -0.016089780256152153, 0.019795306026935577, 0.012857894413173199, 0.04165233299136162, -0.011722554452717304, -0.012077783234417439, -0.012593213468790054, -0.0038100043311715126, -0.005537392105907202, -0.008086682297289371, -0.008504598401486874, 0.01603405922651291, 0.041680194437503815, 0.012607144191861153, -0.003715973114594817, 0.007891654036939144, -0.008741417899727821, 0.004607527982443571, 0.009026993997395039, -0.014947475865483284, 0.00918719545006752, 0.003010739339515567, -0.0124121168628335, 0.012105644680559635, -0.021062985062599182, 0.013143470510840416, 0.005802072584629059, -0.006132923066616058, 0.00753642525523901, 0.005286642350256443, 0.008441911078989506, -0.012042957358062267, 0.00472245505079627, 0.003945827018469572, -0.004112993832677603, 0.0383368618786335, -0.01201509591192007, 0.02230280451476574, 0.007933446206152439, 0.020255014300346375, -0.015003197826445103, 0.0014304929645732045, -0.00814240425825119, -0.00526922894641757, -0.009173264726996422, 0.0034269143361598253, -0.02194060944020748, 0.015978336334228516, 0.021745583042502403, -0.002732128370553255, -0.008107577450573444, -0.01140911690890789, 0.0033903466537594795, -0.006832932587713003, 0.009904618375003338, -0.005666249431669712, 0.004840864799916744, -0.0037995565216988325, -0.016869891434907913, 0.00883893109858036, 0.004736385773867369, 0.007849862799048424, -0.0038483133539557457, -0.002160975942388177, 0.020533625036478043, 0.0034164662938565016, -0.010301638394594193, -0.01820722408592701, 0.008880723267793655, 0.002817452885210514, 0.00296198227442801, 0.004572701640427113, 0.013345463201403618, 0.017538556829094887, -0.007348362822085619, -0.03761247545480728, -0.010169298388063908, 0.012342464178800583, 0.016424113884568214, -0.01567186415195465, -0.0012633263831958175, 0.014257913455367088, 0.00858121644705534, -0.009465806186199188, 0.0023943125270307064, -0.01048970129340887, -0.009765313006937504, -0.01611764170229435, -0.004579667001962662, 0.0063140201382339, 0.025033190846443176, 0.004875691141933203, -0.015992267057299614, -0.017803238704800606, -0.016256947070360184, -0.0038517960347235203, 0.0076478696428239346, 0.01585296168923378, 0.01432060170918703, -0.012621074914932251, 0.012084748595952988, -0.02003212459385395, 0.003531393362209201, 0.015713656321167946, -2.4772973119979724e-05, 0.008866792544722557, -0.01524001732468605, -0.010635972023010254, -0.017120640724897385, -0.00363587262108922, -0.009096646681427956, -0.010768312029540539, 0.00814936961978674, -0.01593654416501522, 0.01595047488808632, 0.002618942642584443, -0.015880823135375977, -0.0010604627896100283, -0.0012093455297872424, -0.018402250483632088, -0.0029097427614033222, -0.008734452538192272, 0.008671765215694904, 0.019920680671930313, 0.0010482736397534609, -0.019656000658869743, -0.01830473728477955, -0.012732518836855888, -0.003468706039711833, 0.024267010390758514, 0.012224053964018822, -0.013693726621568203, 0.005028927233070135, 0.0069861686788499355, 0.008058820851147175, 0.016674863174557686, 0.0040119970217347145, -0.007640904281288385, 0.005513013806194067, 0.00949366670101881, -0.01603405922651291, 0.0012763863196596503, 0.0113185690715909, 0.005986652337014675, 0.003935379441827536, 0.016479836776852608, 0.01542111486196518, 0.010197159834206104, 0.009598146192729473, -0.00014202627062331885, 0.025632204487919807, 0.001377382781356573, 0.014390254393219948, 0.02081223577260971, 0.01097030472010374, -0.02344510890543461, 0.009869791567325592, 0.03229100629687309, -0.006209540646523237, -0.015644002705812454, 0.0049557918682694435, 0.004353295546025038, 0.005091614555567503, -0.024267010390758514, -0.0062234713695943356, -0.008427980355918407, -0.03215169906616211, -0.011478769592940807, 0.017232084646821022, -0.0029811367858201265, -0.0065369089134037495, 0.008992167189717293, -0.0252560805529356, 0.02333366498351097, -0.0031639751978218555, -0.01585296168923378, 0.015323600731790066, 0.01950276456773281, 0.02031073532998562, 0.020589346066117287, -0.011492700316011906, -0.0226371381431818, 0.01524001732468605, 0.005586149170994759, 0.010552388615906239, -0.005443360656499863, -0.003747316775843501, -0.006561287213116884, 0.005046340171247721, -0.00012417776451911777, -0.0040990631096065044, 0.0049697221256792545, 0.013805171474814415, -0.003339848481118679, -0.005276194307953119, 0.013679795898497105, -0.00537719065323472, 0.020854027941823006, -0.017050988972187042, 0.01873658411204815, -0.024155566468834877, -0.006582182832062244, 0.016786307096481323, -0.01855548657476902, -0.014682795852422714, 0.0006394991069100797, 0.010252881795167923, -0.010071785189211369, 0.006080683320760727, 0.0023176944814622402, 0.01398626808077097, -0.0008532459614798427, 0.011687727645039558, -0.011520561762154102, -0.007327467203140259, 0.031120840460062027, 0.004349812865257263, 0.03075864538550377, 0.008232953026890755, -0.006564769893884659, 0.005701075773686171, -0.013164365664124489, 0.015407184138894081, 0.007066269405186176, -0.001385218696668744, 0.005230919923633337, 0.021021194756031036, -0.013582282699644566, -0.001591564854606986, -0.015156433917582035, 0.008643903769552708, -0.021898819133639336, 0.002403019228950143, -0.044466301798820496, -0.022609276697039604, 0.008421014994382858, 0.0017561194254085422, -0.022929679602384567, -0.008720521815121174], "3f708918-9bcb-4c0a-bd9c-c987901f8659": [-0.02852565050125122, -0.017429256811738014, -0.014290601015090942, 0.034275222569704056, -0.04163578525185585, -0.036025092005729675, 0.009346525184810162, 0.048885244876146317, -0.014512807130813599, 0.037497203797101974, 0.03271978348493576, -0.00570790795609355, 0.015957143157720566, 0.005291272420436144, -0.030914362519979477, 0.039691485464572906, -0.019456882029771805, 0.0018314607441425323, 0.03246980160474777, -0.05607915297150612, 0.04610767588019371, -0.0006453511887229979, -0.03549735248088837, -0.006996006239205599, 0.0014452047180384398, -0.01361704058945179, -0.011575525626540184, 0.012471292167901993, -0.03488628938794136, 0.008520198054611683, 0.009804824367165565, -0.009485404007136822, -0.00992981530725956, 0.028095128014683723, 0.05027402937412262, -0.03702501952648163, 0.009409020654857159, 0.03355305269360542, -0.017012620344758034, -0.005468342453241348, -0.0536348894238472, 0.033330850303173065, 0.001110160257667303, 0.0034250919707119465, -0.01972075179219246, -0.003395580220967531, -0.01307541411370039, -0.011103338561952114, -0.013068470172584057, -0.014887779019773006, 0.009638170711696148, -0.005332935601472855, -0.043468981981277466, 0.0035726502537727356, 0.040746960788965225, -0.0657728761434555, 0.009846488013863564, 0.04944076016545296, 0.014346152544021606, -0.060606591403484344, -0.007159188389778137, -0.03363637998700142, -0.0202762670814991, -0.026373034343123436, -0.02248443476855755, 0.03241425007581711, 0.008770179934799671, -0.010749198496341705, -0.01134637650102377, 0.006141903344541788, -0.011672740802168846, 0.051023975014686584, -0.03433077409863472, -0.00281923427246511, 0.013971180655062199, -0.011124170385301113, 0.038858216255903244, 0.005756515543907881, 0.01146442350000143, -0.017679236829280853, 0.008666020818054676, 0.018373630940914154, 0.02195669710636139, 0.008360488340258598, 0.05119062960147858, 0.028289558365941048, -0.02248443476855755, -0.05416262894868851, 0.003258437616750598, -0.04491331800818443, -0.0002512833452783525, 0.019095798954367638, -0.005388487130403519, -0.031969837844371796, 0.0166793130338192, 0.03435854986310005, 0.014443367719650269, 0.004937131889164448, 0.016457106918096542, -0.022067800164222717, -0.012103264220058918, -0.0024459981359541416, 0.025886958464980125, -0.03841380402445793, 0.01709594763815403, 0.011172777973115444, -0.008909057825803757, 0.013158741407096386, -0.03241425007581711, 0.003603897988796234, 0.024428734555840492, -0.04430225491523743, -0.020928995683789253, 0.019179126247763634, -0.04580214247107506, -0.02265108935534954, -0.050218477845191956, -0.015373853966593742, -0.016234900802373886, -0.009971478953957558, 0.043052345514297485, 0.005912753753364086, -0.005315575748682022, 0.005614164751023054, -0.052107226103544235, 0.0012611907441169024, 0.01566549949347973, -0.00997842289507389, 0.01233935821801424, -0.013818413950502872, -0.02129007875919342, 0.01691540516912937, 0.028192343190312386, 0.02908116579055786, 0.01640155538916588, -0.00644049234688282, 0.02972000651061535, 0.09027104824781418, -0.010256179608404636, 0.04569103941321373, -0.04891302064061165, -0.03541402518749237, -0.001409617136232555, 0.02324826642870903, 0.005482230335474014, 0.003659449517726898, -0.03352527692914009, 0.03391413763165474, -0.00865213293582201, 0.010533937253057957, -0.061439864337444305, -0.022734416648745537, -0.0033469726331532, 0.005190585274249315, 0.07038364559412003, -0.042774587869644165, 0.023026062175631523, 0.025956397876143456, 0.006666169967502356, 0.04474666342139244, 0.028358997777104378, -0.032664231956005096, 0.0035414027515798807, 0.03677503764629364, 0.04066363722085953, 0.0383860282599926, 0.02129007875919342, 0.025706417858600616, 0.008186889812350273, 0.020956771448254585, 0.03785828873515129, -0.02608138881623745, 0.016276564449071884, -0.0013479897752404213, 0.012519899755716324, -0.03149765357375145, 0.07205018401145935, 0.011985217221081257, 0.013908685185015202, -0.04471888765692711, -0.025400884449481964, -8.755857561482117e-05, 0.005315575748682022, 0.0013992012245580554, 0.02506757527589798, 0.028303446248173714, 0.03127544745802879, 0.04138580337166786, -0.008686852641403675, -0.026664679870009422, -0.017345929518342018, 0.02230389229953289, -0.02356768772006035, -0.01467946171760559, -0.026761893182992935, -0.02041514404118061, 0.0007512460579164326, 0.03594176471233368, 0.0139295170083642, 0.02866452932357788, -0.01755424775183201, -0.0434134304523468, -0.0427190363407135, 0.027220193296670914, 0.0035396667663007975, 0.027706267312169075, -0.015568284317851067, -0.019429108127951622, 0.05732905864715576, -0.015887703746557236, 0.04538550600409508, -0.03608064353466034, -0.009534011594951153, 0.01560994703322649, -0.0046003516763448715, 0.009152095764875412, -0.013401778414845467, 0.05010737478733063, 0.00475311791524291, -0.03869156166911125, -0.007450833451002836, 0.018470846116542816, -0.005319047719240189, -0.015818266198039055, -0.02972000651061535, 0.011964386329054832, -0.01642933115363121, 0.03505294397473335, -0.0448855422437191, 0.00021168126841075718, 0.029414473101496696, -0.003062271745875478, -0.006131487432867289, 0.003029288025572896, -0.010040918365120888, 0.022984398528933525, 0.0202762670814991, -0.007520272862166166, -0.012242143042385578, 8.27303811092861e-05, 0.006811992265284061, 0.013339283876121044, -0.0014599605929106474, -0.02048458345234394, 0.009346525184810162, 0.03460853174328804, 0.002308855764567852, 0.08238274604082108, -0.019762415438890457, 0.008457702584564686, 0.027178529649972916, 0.010568656958639622, -0.007513328921049833, -0.008992385119199753, -0.02394266054034233, 0.029636679217219353, 0.03241425007581711, -0.005520422011613846, 0.005329463630914688, -0.008409094996750355, 0.0060898237861692905, -0.0038504074327647686, 0.01386007759720087, 0.04880191758275032, 0.024303743615746498, -0.008478534407913685, 0.02555365115404129, 0.01709594763815403, 0.009165983647108078, 0.02140118181705475, 0.0020849141292274, -0.007575823925435543, 0.006454379763454199, 0.03316419571638107, -0.0016352947568520904, -0.02097065933048725, 0.0060412161983549595, -0.007065445650368929, 0.02919226884841919, -0.012485180050134659, 0.007617487572133541, 0.03583066165447235, 0.03283088654279709, -0.014665573835372925, 0.02191503345966339, 0.035747334361076355, -0.020998435094952583, -0.006673113442957401, -0.03271978348493576, -0.004405921790748835, 0.011339432559907436, 0.0166376493871212, -0.02384544536471367, 0.024373183026909828, 0.02212335169315338, -0.01078391820192337, 0.0045656319707632065, 0.0011318600736558437, -0.008714628405869007, 0.025789743289351463, 0.008589637465775013, 0.027539614588022232, 0.01520719937980175, -0.0558013953268528, 0.028581202030181885, -0.02834510989487171, 0.04219130054116249, 0.04463556036353111, -0.042246852070093155, 0.031414326280355453, 0.015179423615336418, -0.03246980160474777, -0.01859583519399166, 2.9362502118601697e-06, -0.01381147000938654, 0.011644965037703514, -0.009103488177061081, -0.010776974260807037, -0.005520422011613846, -0.037497203797101974, -0.02797013707458973, 0.017276490107178688, -0.0441911518573761, 0.012874040752649307, 0.04599657282233238, -0.038052719086408615, 0.045357730239629745, -0.021317854523658752, -0.030775483697652817, -0.03171985596418381, -0.029803333804011345, -0.014200330711901188, -0.024039873853325844, 0.004398977849632502, -0.041441354900598526, -0.032219819724559784, -0.04499664530158043, -0.05921780690550804, -0.0032844773959368467, -0.03199761360883713, -0.01695706881582737, -0.020401256158947945, -0.01863749884068966, -0.0024807178415358067, -0.012783769518136978, -0.01487389113754034, -0.019359668716788292, -0.010200628079473972, -0.016123797744512558, -0.025192566215991974, 0.0008992385119199753, -0.01226991880685091, 0.04446890577673912, -0.016512658447027206, 0.02419264055788517, -0.01772090047597885, -0.014526695013046265, 0.0008870866731740534, 0.026025837287306786, -0.018818041309714317, -0.002562308916822076, -0.03794161602854729, 0.023442696779966354, 0.0030865755397826433, 0.0038990150205790997, -0.0025466850493103266, -0.005124617833644152, -0.0019008999224752188, -0.03610841929912567, -0.015332190319895744, -0.02290107123553753, 0.02576196938753128, 0.0018314607441425323, 0.0077771982178092, -0.010429778136312962, -0.04905189946293831, 0.046052124351263046, -0.015859927982091904, -0.009492347948253155, 0.022845519706606865, -0.011651908978819847, -0.010978348553180695, -0.0097909364849329, 0.012082432396709919, 0.048440832644701004, 0.011179721914231777, -0.011922722682356834, -0.025720305740833282, -0.027247969061136246, -0.0019321476574987173, -0.02667856775224209, -0.013193461112678051, -0.05330158397555351, -0.009714554063975811, -0.037358324974775314, -0.023720454424619675, 0.0012889663921669126, -0.04599657282233238, 0.011499143205583096, -0.024025985971093178, -0.01401978824287653, -0.001334969885647297, -0.01019368413835764, -0.018679162487387657, 0.023970434442162514, -0.018345855176448822, -0.023692678660154343, 0.009138207882642746, 0.03835825249552727, 0.012700442224740982, 0.030497726052999496, -0.00023761249030940235, -0.0018279887735843658, 0.018429182469844818, 0.05366266518831253, 0.024109313264489174, 0.00036911311326548457, 0.01838751882314682, -0.04221907630562782, -0.008527141995728016, 0.041274700313806534, 0.05402375012636185, 0.004194131586700678, 0.013172629289329052, 0.009679834358394146, 0.028150679543614388, -0.004676734562963247, 0.011457479558885098, 0.00476353382691741, 0.019137462601065636, -0.0019686033483594656, 0.05827343463897705, 0.002720283344388008, -0.020317930728197098, -0.00018846250895876437, -0.011151946149766445, 0.007180020213127136, -0.011964386329054832, 0.019040247425436974, -0.00990898348391056, -0.011825507506728172, 0.012867096811532974, -0.02451206184923649, -0.00422190735116601, -0.046135447919368744, -0.0016023111529648304, -0.047913096845149994, 0.011547749862074852, -0.014235050417482853, -0.01560994703322649, -0.0004307404742576182, 0.04119137302041054, -0.026456361636519432, 0.01573493890464306, 2.7992704417556524e-05, -0.003596954047679901, 0.026331370696425438, -0.01454058289527893, 0.02758127823472023, -0.05624580755829811, -0.00743694556877017, -0.015054433606564999, 0.012658778578042984, 0.0006236514309421182, -0.0025675168726593256, -0.03444187715649605, 0.02667856775224209, -0.00912432000041008, -0.00827021710574627, 0.05230165645480156, 0.022456659004092216, -0.007568880449980497, 0.000640577229205519, 0.05213500186800957, 0.022040024399757385, 0.015957143157720566, -0.020984547212719917, -0.00743694556877017, 0.007193908095359802, -0.004121220670640469, 0.0031021994072943926, -0.0195402093231678, 0.018401406705379486, -0.013297620229423046, 0.0045586880296468735, -0.0040656691417098045, -0.027595164254307747, -0.007214739918708801, 0.05921780690550804, 0.010214515961706638, 0.031442102044820786, 0.011096394620835781, 0.017415368929505348, 0.021276190876960754, -0.0034997391048818827, -0.027803482487797737, 0.0017585494788363576, -0.02045680768787861, -0.0004934528260491788, -0.03555290400981903, 0.006759912706911564, -0.026136940345168114, 0.012561563402414322, -0.00515586556866765, -0.030331071466207504, 0.0030310240108519793, -0.03919152170419693, 0.018151424825191498, -0.0012212630826979876, -0.017498696222901344, -0.053329359740018845, 0.017540359869599342, -0.023095499724149704, 0.0046142395585775375, -0.002098801778629422, 0.003307045204564929, -0.009902039542794228, -0.020109612494707108, 0.021873369812965393, 0.005353767424821854, 0.01426282525062561, -0.030608829110860825, -0.01762368716299534, -0.010638095438480377, -0.03080325946211815, 0.0013254220830276608, -0.002977208700031042, -0.01654043421149254, 0.047246478497982025, -0.014429479837417603, -0.0206234622746706, 0.004839917179197073, -0.03660838305950165, 0.02958112768828869, 0.042246852070093155, 0.02335936948657036, 0.005586388986557722, 0.023887109011411667, -0.012249086983501911, 0.002475509885698557, -0.0058259544894099236, -0.007596655748784542, -0.022956622764468193, -0.00483297323808074, 0.013915629126131535, 0.027081314474344254, -0.0023036478087306023, 0.00034914931165985763, 0.0018575004069134593, 0.01772090047597885, -0.023692678660154343, 0.024984247982501984, -0.013089301995933056, 0.013568433001637459, 0.00130893022287637, -0.028220118954777718, -0.0045725759118795395, -0.0007416981970891356, -0.005253080744296312, -0.007037669885903597, -0.038469355553388596, 0.018026433885097504, 0.005902337841689587, 0.011033900082111359, -0.024220416322350502, 0.004871164448559284, -0.020915107801556587, -0.0012264710385352373, -0.018623610958456993, 0.013047638349235058, 0.03202538937330246, 0.0032896853517740965, 0.024970360100269318, -0.0011787315597757697, 0.003164694644510746, 0.016526546329259872, 0.006565482821315527, 0.035330697894096375, -0.023887109011411667, -0.029136717319488525, 0.007388337980955839, 0.0012377549428492785, 0.010422834195196629, -0.004076085053384304, 0.01520719937980175, 0.0267757810652256, -0.016832077875733376, -0.016943180933594704, 0.004957963712513447, 0.00137402955442667, 0.018859704956412315, 0.007853581570088863, -0.009284029714763165, -0.009763160720467567, -0.01569327525794506, 0.015359966084361076, 0.02758127823472023, 0.010818637907505035, 0.019026359543204308, 0.005329463630914688, 0.029414473101496696, 0.020609574392437935, -0.005246136803179979, -0.0159015916287899, -0.04160800948739052, 0.03633062541484833, -0.02052624709904194, 0.03802494332194328, 0.00716613233089447, 0.0340530164539814, 0.017318153753876686, -0.014651685953140259, 0.030719932168722153, 0.0002818800276145339, 0.027067426592111588, 0.004846861120313406, 0.003489323193207383, 0.024970360100269318, 0.002784514566883445, 0.0034320359118282795, 0.041024718433618546, -0.009270141832530499, 0.030247746035456657, -0.015998806804418564, 0.012374077923595905, 0.03310864418745041, -0.026525801047682762, -0.007173076272010803, -0.014207274653017521, 0.004589935764670372, -0.023081611841917038, -0.010964460670948029, 0.010499217547476292, -0.0024737739004194736, 0.004867692478001118, 0.010110357776284218, 0.0369139164686203, 0.00957567524164915, -0.004874636419117451, -0.003501475090160966, -0.01073531061410904, 0.001916523789986968, 0.013679536059498787, 0.07543881982564926, -0.019415220245718956, 0.013575376942753792, 0.00502393115311861, 0.007068917620927095, 0.02999776415526867, 0.02147062122821808, -0.022067800164222717, 0.0021404654253274202, 0.002531061414629221, 0.034552980214357376, 0.0014894723426550627, -0.006877959705889225, 0.011318600736558437, 0.0015094360569491982, 0.017595911398530006, 0.004999627359211445, 0.036025092005729675, -0.02038736827671528, 0.022539986297488213, 0.038997091352939606, 0.019554097205400467, -0.011339432559907436, -0.0004674130759667605, 0.018137536942958832, 0.03694169223308563, 0.010533937253057957, 0.014707236550748348, -0.009047936648130417, 0.013436498120427132, -0.010638095438480377, 0.007520272862166166, 0.003537930781021714, 0.01375591941177845, 0.01716538704931736, 0.011054731905460358, -0.027178529649972916, -0.024275967851281166, -0.04491331800818443, -0.017984770238399506, 0.024567613378167152, -0.03274755924940109, -0.0036698654294013977, -0.01314485352486372, 0.016318228095769882, -0.024317631497979164, 0.015026657842099667, -0.0043225944973528385, 0.012714330106973648, -0.014214218594133854, 0.04091361537575722, 0.0010042653884738684, -0.021665051579475403, 0.015234975144267082, 0.0016856382135301828, 0.017040396109223366, -0.01629045233130455, -0.023331593722105026, -0.010985292494297028, -0.012610170990228653, -0.014860003255307674, 0.012068544514477253, -0.012137983925640583, -0.022220565006136894, -0.04019144922494888, 0.00618009502068162, -0.012929591350257397, -0.0103117311373353, -0.001500756130553782, 0.007659151218831539, 0.024025985971093178, -0.005874562077224255, 0.018373630940914154, -0.004117748700082302, 0.027261856943368912, 0.003069215686991811, 0.039802588522434235, 0.007548048626631498, 0.03866378590464592, -0.003407732117921114, -0.032525353133678436, -0.02866452932357788, -0.00763831939548254, -0.006249533966183662, 0.012193535454571247, -0.004714926239103079, -0.0001272691588383168, 0.028553426265716553, -0.014235050417482853, 0.019692976027727127, 0.009179871529340744, -0.0030188721138983965, 0.020998435094952583, -0.0014790564309805632, 0.012387965805828571, 0.0564957894384861, -0.0060412161983549595, 0.03177540749311447, -0.0002512833452783525, 0.023928772658109665, -0.02055402286350727, -0.002645636210218072, 0.003909430932253599, 0.021373406052589417, 0.0008514990331605077, 0.012679610401391983, 0.007131412625312805, 0.017887555062770844, -0.04433002695441246, 0.020429031923413277, 0.00770775880664587, -0.007693870924413204, -0.0007403962081298232, 0.040885839611291885, -0.0003964548232033849, 0.00550653412938118, 0.028331222012639046, -0.0019686033483594656, -0.006728664971888065, 0.032497577369213104, -0.023553799837827682, -0.004107332788407803, 0.0097701046615839, 0.023581575602293015, -0.0011752595892176032, 0.015096097253262997, 0.01058948878198862, 0.04894079640507698, 0.0034042601473629475, 0.04038587957620621, 0.05457926541566849, -0.007818861864507198, -0.017707012593746185, 0.007430001627653837, 0.000263001216808334, -0.02377600595355034, -0.026386922225356102, -0.03280311077833176, -0.015748826786875725, 0.03230314701795578, -0.015359966084361076, 0.022401107475161552, -0.039108194410800934, 0.0332752987742424, 0.008138282224535942, 0.004048309288918972, 0.0009834336815401912, -0.001862708362750709, 0.005006571300327778, -0.006197454873472452, -0.008554917760193348, 0.01487389113754034, -0.004339954350143671, -0.012478236109018326, -0.03919152170419693, 0.0011353320442140102, -0.0037150008138269186, 0.012728217989206314, -0.009943703189492226, 0.028720080852508545, 0.041163597255945206, 0.011311656795442104, -0.01831807941198349, 0.02576196938753128, -0.003129974938929081, -0.036858364939689636, 0.014971106313169003, -0.002071026246994734, 0.0009304861887358129, -0.010054806247353554, 0.02140118181705475, -0.05621803179383278, -0.025289781391620636, 0.012325470335781574, -0.011915778741240501, 0.02241499535739422, 0.010763086378574371, -0.02230389229953289, 0.0034910591784864664, 0.020498471334576607, 0.012721274048089981, 0.011263049207627773, -0.017540359869599342, 0.008471590466797352, -0.015165535733103752, -0.010561713017523289, -0.018012546002864838, -0.0038885991089046, -0.03363637998700142, -0.010811693966388702, 0.02104009874165058, 0.02891451120376587, 0.026470249518752098, 0.007832749746739864, -0.0062842536717653275, -0.051690589636564255, 0.046024348586797714, -0.01004786230623722, -0.03891376405954361, -0.012374077923595905, 0.010554769076406956, 0.01454058289527893, 0.005266968626528978, 0.023484360426664352, 0.024637052789330482, 0.040080346167087555, 0.024623164907097816, 0.010485329665243626, -0.03096991404891014, 0.028011800721287727, -0.014707236550748348, -0.025317557156085968, -0.0019668673630803823, -0.015137760899960995, 0.0063050854951143265, -0.012422685511410236, 0.012596283107995987, -0.011554693803191185, 0.024762043729424477, -0.026373034343123436, 0.0007039405754767358, -0.01573493890464306, -0.011367208324372768, -0.008006347343325615, -0.0007560200174339116, -0.005211417097598314, 0.007464721333235502, -0.008186889812350273, -0.001495548291131854, 0.02198447287082672, -0.0006323313573375344, 0.0042600990273058414, 0.010096469894051552, -0.002489397767931223, 0.001610123086720705, -0.04066363722085953, -0.02758127823472023, -0.021415069699287415, 0.012804601341485977, -0.0028921454213559628, 0.015526620671153069, -0.027539614588022232, -0.002124841557815671, 0.012589339166879654, -0.009846488013863564, 0.005121145863085985, 0.008429926820099354, 0.003603897988796234, 0.034802962094545364, -0.022706640884280205, -0.02345658466219902, -0.016873741522431374, -0.020845668390393257, 0.008520198054611683, 0.006537707056850195, -0.027803482487797737, -0.011603301391005516, 0.0022897599264979362, -0.032914213836193085, -0.009985366836190224, 0.007186964154243469, 0.029525576159358025, -0.023123275488615036, 0.03624729812145233, 0.004249683115631342, 0.030053315684199333, -0.016096021980047226, 0.010888077318668365, 0.027942361310124397, -0.017332041636109352, -0.03799716755747795, 0.02866452932357788, 0.02597028575837612, 0.006850183941423893, -0.0206234622746706, -0.002227264456450939, -0.008471590466797352, 0.03133099898695946, 0.014762788079679012, 0.017415368929505348, 0.021942809224128723, -0.02290107123553753, -0.0057912347838282585, -0.026095276698470116, -0.021456733345985413, 0.013443442061543465, 0.012665722519159317, -0.007554992567747831, -0.001909579848870635, -0.0021682411897927523, 0.011096394620835781, 0.01158941350877285, -0.0068189362064003944, -0.04227462783455849, -0.017040396109223366, -0.008561861701309681, 0.0018279887735843658, -0.015915479511022568, -0.00690573500469327, 0.012047712691128254, -0.020290154963731766, -0.01283237710595131, -0.03283088654279709, -0.006766856648027897, 0.02101232297718525, 0.007346674799919128, 0.016832077875733376, -0.016304340213537216, 0.03449742868542671, -0.01792921870946884, 0.007395281922072172, 0.026511913165450096, 0.012589339166879654, -0.015151647850871086, -0.008409094996750355, 0.02342880889773369, 0.0012941743480041623, 0.007686926983296871, -0.00469409441575408, -0.014762788079679012, 0.003940678667277098, -0.024803707376122475, 0.02188725769519806, -0.03741387650370598, 0.00736750615760684, -0.0217483788728714, 0.010096469894051552, -0.007943851873278618, -0.0010780446464195848, -0.010728366672992706, 0.010568656958639622, -0.016332115978002548, -0.014637798070907593, -0.02985888533294201, -0.0318865105509758, -0.029108941555023193, -0.008006347343325615, 0.027817370370030403, -0.009082656353712082, 0.005044762976467609, -0.005010043270885944, 0.0022828159853816032, -0.01099223643541336, 0.0024720379151403904, 0.030219970270991325, -0.014485031366348267, 0.004541328176856041, 0.02276219241321087, -0.018998583778738976, -0.0007955136243253946, 0.0014261089963838458, 0.013978124596178532, -0.016318228095769882, -0.008145226165652275, -0.021859481930732727, -0.00488505233079195, -0.013443442061543465, -0.016734862700104713, -0.012096320278942585, -0.036719486117362976, 0.03502516821026802, 0.01260322704911232, 0.009332637302577496, 0.015262750908732414, -0.009221535176038742, -0.04646875709295273, 0.034691859036684036, -0.020790116861462593, -0.013130965642631054, 0.010179796256124973, -0.022109463810920715, -0.025498099625110626, 0.004912828095257282, 0.03549735248088837, -0.052107226103544235, -0.010374226607382298, 0.025164790451526642, -0.026650791987776756, -0.008311880752444267, 0.0027220193296670914, -0.028831183910369873, -0.005940529517829418, 0.0027897225227206945, -0.008714628405869007, -0.006520347204059362, 0.0144711434841156, -0.0005724399816244841, -0.02349824830889702, -0.01229075063019991, 0.012665722519159317, -0.008304936811327934, 0.0016552585875615478, -0.03402524068951607, 0.01172829233109951, -0.044524457305669785, -0.017179274931550026, -0.023442696779966354, 0.03149765357375145, -0.0015024921158328652, 0.002131785498932004, 0.0065689547918736935, 0.01817920058965683, 0.002914713229984045, 0.004891996271908283, -0.02097065933048725, 0.009277085773646832, -0.014929442666471004, 0.0022654561325907707, -0.0060551040805876255, 0.009811768308281898, -0.013894797302782536, -0.025789743289351463, 0.014665573835372925, -0.019415220245718956, 0.004888524301350117, 0.0041594123467803, 0.02935892343521118, 0.00763831939548254, -0.02622026763856411, 0.011353320442140102, -0.005864146165549755, -0.004107332788407803, 0.0030535918194800615, -0.04944076016545296, 0.005808594636619091, 0.02863675355911255, -0.02135951817035675, -0.009992310777306557, 2.896919431805145e-05, 0.017207050696015358, 0.009409020654857159, -0.0206234622746706, 0.020192939788103104, 4.076844561495818e-05, -0.012193535454571247, 0.0014261089963838458, -0.014429479837417603, -0.012311582453548908, -0.006437020376324654, -0.0037566644605249166, 0.015596060082316399, -0.01527663879096508, -0.025859182700514793, -0.02297051064670086, 0.007284179329872131, 0.02349824830889702, -0.006294669583439827, -0.01817920058965683, 0.005930113606154919, 0.007082805503159761, 0.0038226316682994366, -0.010103413835167885, 0.007818861864507198, -0.013853133656084538, 0.04985739290714264, 0.01863749884068966, 0.002348783193156123, -0.009749272838234901, -0.015512732788920403, 0.02160950005054474, 0.00820077769458294, 0.031942062079906464, -0.004746173974126577, 0.0018123649060726166, 0.007541104685515165, -0.013832301832735538, 0.012144927866756916, 0.01967908814549446, -0.01307541411370039, 0.0031143510714173317, 0.000927882210817188, 0.003576122224330902, -0.004971851594746113, 0.005378071218729019, -0.02958112768828869, -0.0007790217641741037, -0.0015042281011119485, -0.005211417097598314, -0.03716389462351799, -0.01960964873433113, -0.008749348111450672, -0.017248714342713356, -0.0032896853517740965, 0.009020160883665085, 0.02255387417972088, 0.012922647409141064, 0.012867096811532974, 0.02216501347720623, -0.007471665274351835, 0.043746739625930786, -0.005450982600450516, 0.01305458229035139, -0.0010789126390591264, 0.00035240428405813873, -0.009047936648130417, -0.015068321488797665, 0.010658927261829376, -0.002996304305270314, -0.0038017998449504375, 0.00515586556866765, 0.0037288886960595846, 0.009443740360438824, -0.03027552179992199, -0.026484137400984764, -0.010214515961706638, 0.015790490433573723, -0.0264285858720541, 0.019318005070090294, -0.016443219035863876, -0.0037219447549432516, -0.010624208487570286, -0.01790144294500351, -0.03052550181746483, 0.0034563394729048014, 0.00603080028668046, 0.00013345359184313565, -0.021873369812965393, -0.016457106918096542, -0.020859556272625923, 0.0018870121566578746, -0.003192470408976078, -0.007499441038817167, -0.009624282829463482, 0.017595911398530006, -0.0055551412515342236, -0.012554619461297989, -0.02124841697514057, 0.011825507506728172, 0.007895245216786861, 0.01314485352486372, 0.008638245053589344, -0.010638095438480377, 0.03149765357375145, -0.031942062079906464, -0.012867096811532974, -0.008471590466797352, 0.01467946171760559, -0.006423132494091988, -0.021803930401802063, 0.0009079184383153915, -0.007061973679810762, -0.01487389113754034, 0.007416113745421171, 0.021206753328442574, 0.0029667927883565426, -0.0018592363921925426, 0.03580288589000702, 0.018165312707424164, -0.022331668063998222, -0.031414326280355453, -0.004430225118994713, 0.005315575748682022, -0.026511913165450096, -0.01884581707417965, -0.021928921341896057, 0.007186964154243469, 0.0016977901104837656, 0.0017246977658942342, -0.0228316318243742, -0.021512284874916077, 0.013679536059498787, -0.01887359283864498, -0.01134637650102377, -0.013714255765080452, 0.012790713459253311, -0.003103935392573476, -0.026997987180948257, -0.014103115536272526, 0.020373480394482613, -0.014346152544021606, -0.02702576294541359, -0.007180020213127136, 0.014984994195401669, 0.01494333054870367, -0.022748304530978203, 0.007221683859825134, 0.004312178585678339, 0.0002162382152164355, 0.0037080568727105856, 0.023303817957639694, -0.0021074817050248384, -0.004926715977489948, 0.0031907344236969948, -0.0170265082269907, 0.010797806084156036, -0.001558911520987749, -0.03360860422253609, 0.010179796256124973, 0.008596581406891346, 0.009645114652812481, 0.025998061522841454, 0.028970062732696533, -0.00463159941136837, -0.011110282503068447, -0.020567910745739937, 0.014637798070907593, 0.008700740523636341, -0.006412716582417488, -0.00983954407274723, 0.012714330106973648, -0.03055327758193016, 0.018331967294216156, 0.014207274653017521, -0.019776303321123123, 0.003926790785044432, -0.001262058736756444, 0.017401481047272682, -0.003631673753261566, 0.0048225573264062405, -0.005933585576713085, -0.00523572089150548, -0.01799865812063217, 0.01006869412958622, -0.026386922225356102, 0.06782827526330948, -0.016804302111268044, -0.0018887481419369578, -0.009679834358394146, 0.015929367393255234, 0.012922647409141064, 0.0034771712962538004, -0.06599508225917816, -0.004131636582314968, 0.015471069142222404, 0.010443666018545628, 0.009353469125926495, -0.006752968765795231, -0.01947076991200447, -0.004652430769056082, 0.006721721030771732, 0.03513627126812935, 0.019373556599020958, 0.02285940758883953, -0.004190659616142511, -0.010999180376529694, -0.018276415765285492, 0.016901517286896706, -0.013047638349235058, 0.021026210859417915, 0.003043175907805562, -0.011443591676652431, -0.02191503345966339, -0.01723482646048069, 0.01078391820192337, 0.011263049207627773, -0.014304488897323608, -0.00898544117808342, -0.015859927982091904, 0.01440170407295227, -0.004541328176856041, 0.011332488618791103, -0.021206753328442574, 0.0012985143112018704, -0.016373779624700546, 0.0008311012643389404, 0.02052624709904194, 0.02363712713122368, -0.040608085691928864, 0.007416113745421171, -0.019567985087633133, -0.002498077694326639, 0.0038087437860667706, 0.00248245382681489, -0.0014356569154188037, 0.0017047340516000986, 0.023678790777921677, -0.03280311077833176, 0.0003148636897094548, 0.01629045233130455, -0.01583215221762657, 0.015984918922185898, -0.016693200916051865, -0.008693796582520008, -0.0026612598448991776, -0.015957143157720566, -0.014818339608609676, -0.016415443271398544, 0.010742254555225372, 0.010436722077429295, 0.0037219447549432516, -0.025303669273853302, -0.026942435652017593, 0.018359743058681488, -0.01960964873433113, -0.012151871807873249, 0.006690473295748234, 0.0217067152261734, 0.025123126804828644, 0.009464572183787823, 0.0034858512226492167, -0.03191428631544113, -0.010020086541771889, 0.01940133236348629, -0.023012174293398857, 0.005742627661675215, -0.0159432552754879, -0.012228255160152912, -0.004326066467911005, -0.021192865446209908, -0.0001667627366259694, 0.026470249518752098, -0.008867394179105759, 0.002185601042583585, 0.01751258410513401, -0.0191930141299963, 0.01024229172617197, -0.00020365235104691237, -0.021095650270581245, -0.015471069142222404, 0.00704461382701993, 0.032525353133678436, 0.008103562518954277, -0.00036433915374800563, -0.010679759085178375, -0.011110282503068447, -0.01649877056479454, 0.030053315684199333, 0.003064007731154561, -0.05132950842380524, 0.003999701701104641, 0.008666020818054676, 0.0159432552754879, 0.023192714899778366, -0.02188725769519806, -0.024164864793419838, 0.030442174524068832, -0.007464721333235502, -0.01246434822678566, 0.009721498005092144, -0.00811050646007061, -0.0015250599244609475, -0.007214739918708801, -0.020928995683789253, -0.007409169804304838, 8.679908205522224e-05, 0.027109090238809586, -0.001437392900697887, 0.004447584971785545, 0.014054507948458195, 0.008909057825803757, -0.003881655167788267, 0.016165461391210556, 0.014276713132858276, -0.0018991639371961355, 0.005572501104325056, -0.004041365347802639, -0.00597872119396925, -0.011693572625517845, 0.0013427818194031715, 0.03652505576610565, 0.006454379763454199, 0.010672815144062042, -4.15279355365783e-05, -0.027497950941324234, -0.018443070352077484, 0.008152170106768608, 0.010436722077429295, 0.013068470172584057, -0.0022637201473116875, -0.005371127277612686, 0.03080325946211815, -0.02398432232439518, -0.011249161325395107, -0.0009009744971990585, -0.0005047366721555591, 0.002475509885698557, -0.0028799937572330236, 0.003912902902811766, -0.016526546329259872, 0.005593332927674055, 0.007277235388755798, 0.02265108935534954, 0.021456733345985413, 0.012499067932367325, -0.0017099420074373484, 0.023928772658109665, -0.019706863909959793, -0.017359817400574684, -0.02129007875919342, 0.008957665413618088, -0.0018887481419369578, 0.0005420602974481881, -0.013151797465980053, -0.030719932168722153, -0.003610841929912567, -0.0202346034348011, 0.010422834195196629, -0.006173151079565287, 0.00281402631662786, 0.007923020049929619, -0.027206305414438248, 0.010603376664221287, -0.04416337609291077, -0.024456510320305824, -0.02960890345275402, 0.004662846680730581, -0.02394266054034233, 0.013374002650380135, -0.014665573835372925, 0.02947002463042736, -0.002038042526692152, 0.022331668063998222, 0.004510080441832542, -0.02188725769519806, -0.002204696647822857, 0.009561787359416485, -0.014984994195401669, -0.01804032176733017, -0.013304564170539379, 0.0034042601473629475, -0.012506011873483658, 0.020331818610429764, 0.004968379624187946, -0.0045656319707632065, -0.031053241342306137, -0.019373556599020958, -0.0019876989535987377, -0.004718398209661245, -0.026720229536294937, 0.013346226885914803, -0.021942809224128723, 0.014887779019773006, 0.016901517286896706, -0.013228180818259716, 0.0009782257257029414, -0.001930411672219634, 0.010936684906482697, 0.006454379763454199, 0.04721870273351669, -0.02255387417972088, 0.0030310240108519793, -0.003353916574269533, -0.010478385724127293, -0.012506011873483658, -0.022151127457618713, -0.0021717131603509188, 0.001890484127216041, -0.021998360753059387, 0.0166376493871212, -0.01654043421149254, 0.014984994195401669, -0.004905884154140949, 0.015137760899960995, 0.018720826134085655, 0.0010155492927879095, -0.023720454424619675, 0.008450758643448353, 0.04019144922494888, 0.021276190876960754, 0.007839693687856197, -0.006687001325190067, -0.004062197171151638, 0.003596954047679901, 0.02985888533294201, 0.023928772658109665, 0.003711528843268752, 0.005652356427162886, 0.00569749204441905, 0.001234282972291112, 0.01101306825876236, 0.02453983761370182, -0.015707163140177727, 0.004548272117972374, -0.016901517286896706, 0.020304042845964432, -0.02167893946170807, -0.018193088471889496, -0.01080475002527237, 0.024498173967003822, 0.0004986607236787677, -0.0024060707073658705, -0.008048010990023613, -0.010811693966388702, -0.011193609796464443, -0.008402151055634022, -0.018137536942958832, 0.009714554063975811, 0.005739155691117048, 0.032219819724559784, -0.007541104685515165, 0.013318452052772045, -0.013186517171561718, -0.008645188994705677, 0.022192789241671562, 7.140581146813929e-06, 0.026789668947458267, -0.009159039705991745, 0.011832451447844505, 0.01785977929830551, 0.0003940678434446454, -0.019665200263261795, -0.005621108692139387, 0.0048295012675225735, -0.0034181480295956135, 0.008909057825803757, -0.0231788270175457, -0.020359592512249947, -0.0008497630478814244, 0.01985963061451912, -0.04180243983864784, -0.011832451447844505, 0.008645188994705677, 0.012714330106973648, -0.004381617996841669, -0.025636978447437286, 0.01670708879828453, -0.0003914638655260205, 0.0013471217826008797, -0.014110059477388859, -0.007030725944787264, 0.010554769076406956, -0.0027150753885507584, -0.03783051297068596, 0.010075638070702553, -0.007180020213127136, -0.00827021710574627, -0.0028435380663722754, -0.016901517286896706, 0.014346152544021606, 0.0068258801475167274, -0.006475211586803198, 0.01647099480032921, -0.011825507506728172, -0.025386996567249298, -0.00811050646007061, 0.01859583519399166, -0.00865213293582201, 0.010415890254080296, 0.013721199706196785, 0.00542667880654335, 0.007929963991045952, -0.0020623463205993176, -0.003933734726160765, -0.014415591955184937, -0.004176772199571133, -0.00024347144062630832, 0.00032571356859989464, 0.0021005377639085054, -0.000633199349977076, 0.07410559058189392, -0.0068605998530983925, 0.009742328897118568, -0.012172703631222248, -0.005020459182560444, -0.015859927982091904, -0.021581724286079407, 0.02852565050125122, 0.016873741522431374, 0.01576271466910839, 0.004947547800838947, -0.02958112768828869, 0.0015771393664181232, 0.0063120294362306595, -0.02597028575837612, 0.008520198054611683, 0.03241425007581711, 0.04163578525185585, 0.005725267808884382, 0.018998583778738976, 0.0027758346404880285, -0.009721498005092144, -0.009617338888347149, 0.005926641635596752, -0.014901666902005672, 0.014110059477388859, -0.0114158159121871, 0.009360413067042828, 0.0030119281727820635, 0.023067723959684372, 0.0034372438676655293, 0.004767005797475576, 0.005110729951411486, 0.009763160720467567, -0.006749496795237064, 0.0012915703700855374, -0.0024529420770704746, 0.013297620229423046, 0.0028365941252559423, 0.0035535546485334635, -0.0014929443132132292, 0.012297694571316242, 0.016415443271398544, 0.011999105103313923, 0.0071175252087414265, -0.015040545724332333, 0.011506087146699429, -0.0022446243092417717, -0.016582097858190536, 8.674483251525089e-05, -0.017290377989411354, -0.009464572183787823, -0.007037669885903597, 0.0040170615538954735, 0.014026732183992863, -0.006398828700184822, 0.02087344415485859, -0.013623984530568123, 0.004388561937958002, 0.007798030041158199, -0.005523893982172012, -0.002253304235637188, -0.011506087146699429, -0.03363637998700142, -0.0015788753516972065, -0.007291123270988464, 0.0003057497669942677, -0.02622026763856411, 0.021484509110450745, -0.008325768634676933, -0.021762266755104065, 0.026900772005319595, 0.012624058872461319, -0.01965131238102913, -0.003381692338734865, 0.028608977794647217, -0.007020310033112764, 0.003923318814486265, 0.014498919248580933, 0.005135033745318651, 0.014290601015090942, 0.0017932690680027008, -0.02331770583987236, -0.005891921930015087, -0.00184187653940171, -0.007728590629994869, 0.0195818729698658, -0.019456882029771805, 0.00023804648662917316, -0.03555290400981903, -0.009679834358394146, 0.0017602854641154408, 0.0075063849799335, -0.003211566247045994, 0.012006049044430256, -0.012846264988183975, -0.0058120666071772575, 0.0033313489984720945, 0.017082059755921364, 0.006478683557361364, 0.017109835520386696, 0.02048458345234394, -0.0024078066926449537, 0.013853133656084538, -0.004898940213024616, -0.028303446248173714, 0.01965131238102913, 0.014554470777511597, -0.04199687018990517, -0.00690573500469327, -0.006791160441935062, 0.013658704236149788, -0.0007412642007693648, 0.003964981995522976, -0.02009572461247444, 0.010367282666265965, 0.022539986297488213, -0.010145077481865883, -0.015012769959867, -0.029025614261627197, 0.00610023969784379, 0.014790563844144344, 0.00020310985564719886, -0.002893881406635046, 0.0062703657895326614, -0.01560994703322649, -0.01880415342748165, -0.014568358659744263, -0.01125610526651144, -0.00348237925209105, 0.01267266646027565, -0.0002075583179248497, 0.015957143157720566, -0.0022290004417300224, 0.011429703794419765, 0.0021890730131417513, -0.0030327599961310625, -0.001184807508252561, 0.02167893946170807, -0.005468342453241348, 0.003711528843268752, -0.007992459461092949, -0.003338292706757784, 0.007079333532601595, 0.024303743615746498, 0.009881207719445229, -0.007714702747762203, -0.016234900802373886, 0.01092279702425003, -0.01877637766301632, 0.027317408472299576, -0.026900772005319595, -0.007457777392119169, -0.027331296354532242, 0.018609723076224327, 0.006336333230137825, -0.020248491317033768, 0.027386847883462906, 0.004392033908516169, 0.009165983647108078, -0.0032289258670061827, -0.008554917760193348, -0.010860301554203033, 0.0037566644605249166, -0.0046003516763448715, 0.005544725339859724, 0.012332414276897907, 0.03177540749311447, 0.025192566215991974, 6.949351518414915e-05, 0.009936759248375893, -0.004270514938980341, -0.00019540643552318215, -0.020651238039135933, -0.01251295581459999, -0.020040173083543777, 0.02820623107254505, -0.003366068471223116, -0.02069290168583393, 0.015193311497569084, 0.003213302232325077, -0.0027949304785579443, 0.01887359283864498, 0.005037819035351276, -0.005478758364915848, -0.01560994703322649, 0.009152095764875412, 0.00057027000002563, 0.0037150008138269186, 0.014123947359621525, -0.012839321047067642, 0.02495647221803665, -0.009311805479228497, 0.017332041636109352, -0.015929367393255234, -0.0016752223018556833, -0.0010684967273846269, 0.022040024399757385, -0.0034320359118282795, -0.013158741407096386, -0.017012620344758034, 0.018054209649562836, -0.00023435753246303648, 0.01891525648534298, 0.010200628079473972, -0.005961361341178417, -0.004447584971785545, -0.018443070352077484, -0.01080475002527237, 0.013130965642631054, -0.043580085039138794, -0.025150902569293976, 0.010825581848621368, -0.006478683557361364, -0.025470323860645294, 0.012714330106973648, 0.008131338283419609, -0.002907769288867712, 0.014103115536272526, -0.010485329665243626, 0.0034875872079283, 0.008999329060316086, 0.007423057686537504, 0.007693870924413204, -0.02541477233171463, 0.0035275148693472147, -0.015915479511022568, 0.008943777531385422, 0.01887359283864498, 0.002550157019868493, 0.03246980160474777, 0.0006692209281027317, 0.0026369562838226557, 0.012644890695810318, 0.004930187948048115, 0.0066175623796880245, 0.02667856775224209, -0.006003024522215128, 0.02241499535739422, -0.02160950005054474, -0.00421149143949151, 0.0037497205194085836, -0.0005924037541262805, 0.009777048602700233, 0.0071105812676250935, -0.0159432552754879, -0.002598764607682824, -0.0010997444624081254, 0.003435507882386446, -2.3774811779730953e-05, -0.01681818999350071, -0.00905488058924675, -0.01960964873433113, 0.018859704956412315, 0.015387741848826408, 0.014818339608609676, -0.0002428204461466521, -0.005100314039736986, 0.006537707056850195, -0.023331593722105026, 0.005648884456604719, 0.009464572183787823, 0.0011882794788107276, -0.004333010409027338, 0.010492273606359959, 0.011145002208650112, -0.012568507343530655, 0.0035535546485334635, 0.007180020213127136, 0.011054731905460358, 0.011519975028932095, 0.0040656691417098045, 0.014901666902005672, 0.004270514938980341, -0.015623834915459156, -0.0025275894440710545, 0.014179498888552189, -0.014075339771807194, 0.011033900082111359, 0.013610096648335457, -0.006426604464650154, 0.0016812982503324747, 0.006759912706911564, -0.010339506901800632, 0.0063536930829286575, -0.030053315684199333, -0.011825507506728172, -0.006242590025067329, -0.00881184358149767, 0.010999180376529694, -0.006919622886925936, -0.017568135634064674, 0.02227611653506756, 0.008784067817032337, -0.01113805826753378, 0.009888151660561562, -0.00022057817841414362, 0.004471888765692711, 0.02342880889773369, -0.00535723939538002, 0.013311508111655712, -0.0034719633404165506, -0.01762368716299534, 0.0025536289904266596, -0.0013297619298100471, 0.009339581243693829, 0.011846339330077171, -0.003940678667277098, 0.00011175381951034069, 0.009075712412595749, -0.011318600736558437, -0.007072389591485262, 0.011145002208650112, -0.004471888765692711, -0.012144927866756916, 0.00804106704890728, 0.003050119848921895, 0.008388263173401356, -0.014457255601882935, 0.01967908814549446, -0.0119366105645895, 0.00851325411349535, -0.02041514404118061, 0.01566549949347973, -0.005405846983194351, 0.02198447287082672, 0.005982193164527416, 0.023512136191129684, -0.005662772338837385, -0.025109238922595978, -0.0032914213370531797, -0.003826103638857603, -0.0009409021004103124, -0.003746248548850417, 0.006996006239205599, -0.001058948808349669, -0.009825656190514565, -0.006159263197332621, 0.006864071823656559, 0.0048225573264062405, -0.022498322650790215, -0.010221459902822971, -0.0036872250493615866, -0.018304191529750824, 0.0020397785119712353, 0.015498844906687737, 0.008457702584564686, -0.024150976911187172, 0.005239192862063646, 0.021623387932777405, 0.004978795535862446, -0.005853730253875256, 0.026067500934004784, -0.0001240141864400357, -0.0068953195586800575, -0.019109686836600304, -0.0004995287163183093, 0.01762368716299534, -0.009589563123881817, 0.01992907002568245, -0.02255387417972088, 0.00966594647616148, -0.005284328479319811, -0.013255956582725048, -0.022456659004092216, 0.00990898348391056, -0.012137983925640583, 0.022539986297488213, -0.009881207719445229, -0.0013314979150891304, -0.012367133982479572, -0.031414326280355453, -0.024775931611657143, -0.001615330926142633, -0.013297620229423046, 0.0007043745717965066, -0.015526620671153069, -0.022706640884280205, 0.0007772857788950205, -0.0002014823694480583, 0.046552084386348724, -0.00684324000030756, -0.014971106313169003, -0.010429778136312962, 0.014929442666471004, -0.003881655167788267, 0.020609574392437935, 0.02069290168583393, -0.00797162763774395, 0.003905958728864789, -0.009450684301555157, 0.016512658447027206, 0.005197529215365648, -0.004489248618483543, 0.013200405053794384, 0.008707684464752674, 0.0023505191784352064, 0.030581053346395493, 0.002699451521039009, -0.025289781391620636, 0.007825805805623531, 0.0014078811509534717, 0.022609425708651543, 0.025984173640608788, 0.0038712392561137676, -0.016387667506933212, 0.0021474093664437532, 0.0267757810652256, 0.02133174240589142, -0.002734171226620674, -0.0005789499264210463, 0.013748975470662117, -0.023651015013456345, -0.0045656319707632065, 0.008360488340258598, -0.005902337841689587, 0.030219970270991325, -0.023401033133268356, 0.007832749746739864, 0.006471739616245031, 0.0206234622746706, -0.007645263336598873, 0.020220715552568436, -0.013151797465980053, 0.00999925471842289, -0.010901965200901031, 0.01242962945252657, 0.0037150008138269186, -0.016970956698060036, 0.011089450679719448, -0.004183715675026178, -0.015318302437663078, 0.007263347506523132, 0.001400069217197597, -0.01999850943684578, 0.0006410112255252898, 0.01647099480032921, -0.01608213409781456, -0.0031334469094872475, 0.019095798954367638, -0.027220193296670914, -0.0006440491997636855, 0.012610170990228653, 0.0010164172854274511, 0.02055402286350727, 1.9855291611747816e-05, 0.001012077322229743, 0.011443591676652431, -0.014887779019773006, -0.00020180786668788642, -0.010297843255102634, 0.0065411790274083614, 0.01901247166097164, -0.011714404448866844, -0.012950423173606396, -0.02849787473678589, 0.003951094578951597, 0.010596432723104954, 0.013269844464957714, -0.02649802528321743, -0.0010554768377915025, 0.0007968156132847071, 0.0007499440689571202, 0.012235199101269245, -0.0016049151308834553, 0.0005490042385645211, 0.006725193001329899, 0.010790862143039703, 0.002881729742512107, 0.0035414027515798807, -0.0028036104049533606, 0.016970956698060036, 0.01681818999350071, -0.01758202351629734, -0.0063467491418123245, 0.010429778136312962, 0.011040844023227692, 0.016109909862279892, 0.002072762232273817, -0.009881207719445229, -0.0114158159121871, 0.006752968765795231, -0.0020935938227921724, 0.008436870761215687, 0.019304117187857628, 0.002362671075388789, 0.001402673195116222, 0.023748230189085007, 0.004648958798497915, 0.031442102044820786, 0.009346525184810162, -0.006996006239205599, 0.016332115978002548, -0.021553948521614075, 0.007138356566429138, -0.004951019771397114, -0.009346525184810162, 0.008749348111450672, 0.010346450842916965, -0.0029997762758284807, 0.00929791759699583, 0.0012169231195002794, -0.010888077318668365, 0.016387667506933212, 0.015373853966593742, 0.007923020049929619, -0.013186517171561718, 0.022470546886324883, 0.009797880426049232, 0.008596581406891346, 0.020081836730241776, -0.005687076132744551, -0.007888301275670528, 0.008624357171356678, 0.0050864266231656075, 0.009672890417277813, 0.011020012199878693, 0.03069215640425682, 0.00959650706499815, -0.004208019468933344, -0.01467946171760559, -0.0019408275838941336, -0.004440641030669212, 0.033580828458070755, -0.011145002208650112, -0.009360413067042828, 0.004461472854018211, 0.0012985143112018704, 0.02191503345966339, -0.010797806084156036, -0.007395281922072172, 0.00014864343393128365, -0.0022307364270091057, -0.008770179934799671, 0.010624208487570286, 0.008853506296873093, 0.006989062298089266, 0.0017220939043909311, 0.042913466691970825, -0.008221609517931938, 0.009235423058271408, -0.01300597470253706, 0.007631375454366207, -0.02852565050125122, -0.002848746022209525, -0.004148996435105801, -0.016943180933594704, 0.01244351640343666, -0.0039024867583066225, 0.023789893835783005, -0.015596060082316399, 0.001848820480518043, 0.03919152170419693, 0.01772090047597885, 0.011901890859007835, -0.01762368716299534, 0.0006032536621205509, -0.011985217221081257, 0.006159263197332621, 0.017873667180538177, -0.0038017998449504375, -0.013012918643653393, 0.0005611560773104429, 0.008006347343325615, -0.007686926983296871, -0.003442451823502779, -0.0013453857973217964, -0.0028435380663722754, 0.00502393115311861, 0.017012620344758034, -0.008589637465775013, -0.016998732462525368, -0.005388487130403519, 0.015429405495524406, 0.01347816176712513, -0.004527440294623375, -0.015471069142222404, -0.006978646386414766, 0.02052624709904194, 0.0009139943867921829, -0.0065967305563390255, -0.00476353382691741, -0.027136866003274918, 0.007186964154243469, 0.013429554179310799, 0.02195669710636139, 0.004787837620824575, 0.007173076272010803, 0.015957143157720566, -0.039108194410800934, 0.011047787964344025, -0.009214591234922409, -0.0062842536717653275, 0.0040726130828261375, -0.005957889370620251, -0.00936735700815916, 0.006933510769158602, 0.00039884180296212435, -0.02559531480073929, -0.021720603108406067, -0.010033974424004555, 0.008020235225558281, 0.008006347343325615, 0.007985515519976616, 9.981894982047379e-05, 0.00016600325761828572, 0.0018436125246807933, -0.030497726052999496, 0.005676660221070051, -0.015165535733103752, 0.003760136431083083, 0.015929367393255234, 0.0045934077352285385, -0.0020363065414130688, 0.0019199957605451345, -0.033858586102724075, 0.018262527883052826, 0.0060898237861692905, 0.024637052789330482, -0.01863749884068966, 0.014637798070907593, -0.00703419791534543, 0.0019599234219640493, 0.021859481930732727, -0.015179423615336418, -0.016262676566839218, -0.017943106591701508, 0.017748676240444183, 0.009117376059293747, -0.0005151525838300586, -0.011665796861052513, 0.005312104243785143, -0.010082582011818886, -0.02663690410554409, 0.0191930141299963, -0.020054060965776443, -0.012485180050134659, -0.0029737367294728756, 0.013179573230445385, -0.022317780181765556, 0.0019338836427778006, -0.019387444481253624, -0.005739155691117048, 0.015929367393255234, 0.0022099046036601067, -0.015846040099859238, -0.004461472854018211, -0.007124468684196472, 0.014387816190719604, 0.0029459609650075436, -0.010901965200901031, 0.000409040687372908, -0.01799865812063217, 0.014957218430936337, 0.011339432559907436, -0.007964683696627617, 0.009589563123881817, -0.02384544536471367, 0.01134637650102377, -0.005183641333132982, -0.0014365249080583453, -0.032664231956005096, -0.00034676233190111816, -0.0009478459833189845, 0.004214963410049677, -0.02045680768787861, 0.01188800297677517, 0.004718398209661245, 0.010283955372869968, -0.00078770169056952, -0.009200703352689743, 0.016137685626745224, -0.0033313489984720945, 0.0042878747917711735, 0.0043295384384691715, -0.010631151497364044, -0.021387293934822083, -0.02974778227508068, 0.019706863909959793, -0.03730277344584465, -0.009082656353712082, 1.1121132956759539e-06, -0.002159561263397336, -0.01912357471883297, -1.2714709555439185e-05, -0.007041141856461763, -0.006527291145175695, -0.0181097611784935, -0.001177863567136228, -0.0060342722572386265, -0.032358698546886444, -0.0014643005561083555, -0.012110208161175251, -0.015179423615336418, 0.023067723959684372, 0.01573493890464306, -0.0180680975317955, -0.005103786010295153, -0.007013366091996431, -0.012040768750011921, -0.027400735765695572, 0.004162884317338467, -0.014721124432981014, -0.0006158394971862435, 0.01642933115363121, -0.017332041636109352, 0.02094288356602192, -0.0015623834915459156, 0.016207125037908554, 0.0075063849799335, -0.004767005797475576, -0.0048225573264062405, -0.0025206455029547215, -0.005201001185923815, -0.023081611841917038, -0.013026806525886059, 0.03652505576610565, -0.017387593165040016, -0.00736750615760684, 0.0028036104049533606, -0.0039892857894301414, -0.014790563844144344, -0.010658927261829376, 0.003958038054406643, 0.00542667880654335, -0.012367133982479572, -0.0166793130338192, 0.016873741522431374, -0.010235347785055637, 0.01388090942054987, 0.018901368603110313, 0.009777048602700233, 0.01134637650102377, 0.006183566991239786, -0.017887555062770844, -0.02087344415485859, 0.011200553737580776, -0.01426282525062561, -0.008027179166674614, -0.0021161616314202547, -0.008381319232285023, -0.04699649661779404, -0.018206976354122162, 0.009554843418300152, 0.015193311497569084, -0.0028036104049533606, -0.010415890254080296, 0.01186717115342617, -0.026123052462935448, 0.011707460507750511, -0.022067800164222717, 0.002718547359108925, 0.01026312354952097, 0.0002092942886520177, 0.004826029296964407, -0.016998732462525368, 0.01199216116219759, 0.009277085773646832, 0.002977208700031042, 0.0059995525516569614, 0.004867692478001118, 0.02223445288836956, -0.00804106704890728, 0.013158741407096386, -0.00690573500469327, 0.02762294001877308, -0.00763831939548254, -0.023859333246946335, 0.005666244309395552, 0.013790639117360115, 0.011471367441117764, -0.017345929518342018, -0.008714628405869007, -0.014846115373075008, -0.013096245937049389, -0.011693572625517845, 0.01165885291993618, -0.007131412625312805, -0.025442548096179962, 0.011999105103313923, -0.001035513123497367, 0.005444038659334183, -0.03894153982400894, 0.0068397680297493935, -0.01433226466178894, 0.007700814865529537, 0.03571955859661102, 0.01831807941198349, 0.00489546824246645, 0.0006748628802597523, 0.012929591350257397, 0.01534607820212841, -0.016332115978002548, -0.008089674636721611, 0.032247595489025116, -0.004638542886823416, 0.02142895758152008, 0.0005767799448221922, 0.0024321102537214756, -0.005471814423799515, 0.010235347785055637, 0.0010294371750205755, 0.009186815470457077, -0.002970264758914709, -0.0034129400737583637, 0.018748601898550987, -0.0027879865374416113, 0.004201075527817011, 0.00038061398663558066, -0.011235273443162441, 0.022387219592928886, 0.0006206134567037225, -0.007936907932162285, 0.02094288356602192, 0.007009894121438265, -0.0006648809649050236, 0.006329389289021492, -0.012325470335781574, -0.005371127277612686, 0.01824864000082016, -0.02177615463733673, -0.018498621881008148, 0.026067500934004784, 0.0048017255030572414, -0.014846115373075008, -0.007100165355950594, -0.012346302159130573, -0.022637201473116875, 0.0040031736716628075, -0.009464572183787823, 0.001615330926142633, -0.0023522551637142897, -0.010790862143039703, 0.01058948878198862, -0.008839618414640427, -0.03471963480114937, -0.014360040426254272, 0.007784142158925533, -0.0006275573978200555, -0.0055551412515342236, 0.012554619461297989, -0.03894153982400894, 0.004725342150777578, 0.020859556272625923, -0.007242515683174133, -7.833617564756423e-05, -0.0024112786632031202, 0.005544725339859724, -0.008221609517931938, 0.005523893982172012, -0.009082656353712082, 0.031136568635702133, 0.0042878747917711735, -0.0014486766885966063, -0.0005893657798878849, 0.01560994703322649, -0.021123426035046577, 0.0009608658729121089, 0.011881059035658836, -0.0036143139004707336, 0.014248937368392944, 0.02154006063938141, 0.009492347948253155, 0.00891600176692009, 0.013700367882847786, -0.02234555594623089, 0.0060481601394712925, -0.0037427765782922506, -0.01520719937980175, -0.010797806084156036, 0.000439420371549204, -0.02069290168583393, -0.016234900802373886, 0.017748676240444183, 0.011526918970048428, 0.02258164994418621, 0.005016987212002277, 0.005284328479319811, -0.0011926194420084357, 0.006419660523533821, -0.012707386165857315, 0.007541104685515165, 0.014748900197446346, 0.00110321631655097, -0.005912753753364086, 0.007804973516613245, 0.005680132191628218, -0.02156783640384674, 0.02384544536471367, 0.016623761504888535, 0.01622101292014122, -0.014957218430936337, 0.018081985414028168, 0.006766856648027897, 0.007041141856461763, -0.009547899477183819, 0.011894946917891502, -0.011401928029954433, -0.014387816190719604, -0.006718249060213566, -0.006957814563065767, 0.0012559827882796526, -0.02097065933048725, -0.007221683859825134, -0.026164716109633446, 0.012943479232490063, -0.030081091448664665, -0.012943479232490063, -0.009992310777306557, 0.014193386770784855, -0.006801576353609562, -0.02076234109699726, 0.006155791226774454, -0.006933510769158602, -0.0021508813370019197, 0.007964683696627617, 0.007818861864507198, -0.01236019004136324, -0.023414921015501022, 0.0019599234219640493, -0.009693722240626812, 0.004655902739614248, 0.00042553251842036843, 0.0027098674327135086, -0.0037566644605249166, -0.0015181159833446145, -0.025511987507343292, -0.0036941689904779196, 0.005239192862063646, -0.013429554179310799, 0.02615082822740078, -0.006700889207422733, 0.017332041636109352, 0.017276490107178688, -0.021053986623883247, -0.009749272838234901, -0.005843314342200756, -0.00034654533374123275, -0.005596804898232222, 0.02765071578323841, 0.04249683395028114, 0.010770030319690704, 0.0007863997016102076, -0.027956249192357063, -0.01071447879076004, 0.007311955094337463, -0.01047144178301096, -0.020512359216809273, -0.005878034047782421, 0.009554843418300152, 0.013873965479433537, -0.0024078066926449537, 0.007839693687856197, 0.007839693687856197, 0.01654043421149254, 0.0045586880296468735, -0.017179274931550026, -0.0019616594072431326, -0.012950423173606396, 0.001386181334964931, 0.008672964759171009, -0.008596581406891346, 0.013193461112678051, -0.021484509110450745, -0.0017134139779955149, -0.0010806486243382096, -0.004905884154140949, 0.00033395946957170963, 0.0022724000737071037, 0.003895543050020933, 0.0043156505562365055, 0.019804079085588455, 0.01291570346802473, 0.021595612168312073, 0.02688688412308693, 0.018401406705379486, -0.02394266054034233, 0.021373406052589417, -0.007107109297066927, 0.005148921627551317, -0.010492273606359959, -0.021928921341896057, 0.03133099898695946, 0.0006618430488742888, 0.030025539919734, 0.011540805920958519, 0.0010901965433731675, 0.002213376574218273, 0.000626255408860743, -0.008617413230240345, -0.018929144367575645, -0.002097065793350339, -0.015721051022410393, 0.0019911709241569042, 0.0008454230846837163, 0.0040101176127791405, 0.015068321488797665, 0.005916225723922253, 0.004791309591382742, 0.01415866706520319, 0.0009825656889006495, 0.025192566215991974, -0.0114158159121871, -0.004510080441832542, 0.004503136500716209, -0.011075563728809357, 0.0009374301298521459, 0.0040378933772444725, -0.029831109568476677, 0.015040545724332333, 0.005718323867768049, -0.0058190105482935905, -0.036275073885917664, 0.005544725339859724, -0.006256477907299995, 0.02834510989487171, -0.0007568880100734532, 0.015540508553385735, -0.009672890417277813, 0.013887853361666203, -0.012304638512432575, 0.009610394947230816, -0.0037497205194085836, -0.005780818872153759, 0.006850183941423893, 0.0030397039372473955, -0.007770254276692867, -0.003951094578951597, 0.003468491369858384, -0.0009087864309549332, 0.0040309494361281395, 0.020401256158947945, 0.005232248920947313, -0.0065967305563390255, -0.013707311823964119, 0.0065897866152226925, -0.022734416648745537, 0.016346003860235214, -0.009992310777306557, 0.00931874942034483, 0.011158890090882778, 0.0015024921158328652, 0.012860152870416641, 0.00664186617359519, -0.008929889649152756, -0.010103413835167885, 0.014144779182970524, -0.00429134676232934, 0.006794632412493229, -0.0070897494442760944, -0.029553351923823357, -0.01587381586432457, 0.00657242676243186, 0.0040378933772444725, 0.007298067212104797, 0.009915927425026894, 0.015234975144267082, 0.014498919248580933, 0.005992608610540628, 0.02419264055788517, -0.00582942645996809, 0.012478236109018326, 0.0020849141292274, -0.0023921828251332045, -0.006770328618586063, 0.017415368929505348, -0.0202762670814991, 0.015332190319895744, -0.004867692478001118, -0.00025649130111560225, 0.004635070916265249, 0.021665051579475403, 0.013450386002659798, 0.003951094578951597, -0.017123723402619362, -0.004076085053384304, 0.018901368603110313, 0.0012698706705123186, -0.01995684579014778, -0.0012039033463224769, -0.002038042526692152, -0.02656746469438076, -0.0020015868358314037, 0.0023505191784352064, 0.0021231055725365877, -0.02303995005786419, 0.011193609796464443, -0.006475211586803198, -0.0021786571014672518, -0.02126230299472809, 0.011283881030976772, 0.0010112093295902014, 0.0057704029604792595, 0.02069290168583393, 0.012332414276897907, 0.017193162813782692, 0.009513179771602154, -0.002194280968979001, -0.0035257788840681314, -0.012103264220058918, -0.00616967910900712, 0.021998360753059387, -0.006957814563065767, 0.015165535733103752, 0.010360338725149632, -0.0007460381602868438, 0.005919697694480419, 0.009381244890391827, -0.01038117054849863, 0.014693349599838257, -0.005405846983194351, -0.007058501709252596, -0.02237333171069622, 0.014290601015090942, 0.010617264546453953, 0.0028435380663722754, 0.003954566549509764, 0.012540731579065323, 0.009693722240626812, 0.00040708770393393934, -0.02797013707458973, -0.015248863026499748, 0.029775558039546013, -0.0016847702208906412, 0.003867767285555601, 0.012582395225763321, 0.0016092550940811634, -0.0004120786616113037, 0.005315575748682022, -0.0040031736716628075, 0.02373434230685234, 0.0020206826739013195, -0.0034372438676655293, 0.010346450842916965, -0.002050194423645735, 0.0006479551666416228, 0.022040024399757385, -0.006711305119097233, 0.01408922765403986, -0.0034476597793400288, 0.021790042519569397, 0.028442325070500374, 0.013429554179310799, 0.013658704236149788, -0.006537707056850195, 0.004145524464547634, 0.016137685626745224, 0.003933734726160765, 0.0013679536059498787, -0.01094362884759903, -0.0169848445802927, -0.0017611534567549825, 0.01388090942054987, 0.00033461046405136585, -0.014707236550748348, -0.003374748397618532, -0.0004665450833272189, -0.007409169804304838, -0.01527663879096508, 0.021942809224128723, 0.005634996574372053, -0.016582097858190536, -0.011603301391005516, 0.00495449174195528, 0.03583066165447235, 0.015540508553385735, -0.0010711007053032517, 0.0009530539391562343, -0.013235124759376049, -0.004263570997864008, -0.011228329502046108, -0.03255312889814377, 0.004666318651288748, -0.001663938513956964, 0.005853730253875256, -0.007242515683174133, 0.0040448373183608055, -0.014651685953140259, 0.022539986297488213, -0.037080567330121994, -0.006746024824678898, -0.002732435241341591, -0.004874636419117451, -0.008999329060316086, 0.025525875389575958, -0.019109686836600304, -0.03380303457379341, -0.0041594123467803, 0.00931874942034483, 0.015471069142222404, 0.024775931611657143, 0.002640428254380822, -0.032080940902233124, -0.005492646247148514, -0.002761946991086006, -0.0034181480295956135, -0.008832674473524094, 0.001822780817747116, 0.007242515683174133, -0.008867394179105759, -0.03055327758193016, -0.0026959795504808426, 0.019567985087633133, -0.0035552906338125467, -0.022734416648745537, 0.02852565050125122, 0.0169848445802927, 0.008332712575793266, -0.0022428883239626884, 0.00322024617344141, 0.009853431954979897, -0.004419809207320213, -0.006933510769158602, -0.014860003255307674, -0.005409318953752518, 0.01061032060533762, 0.013943404890596867, -0.01981796696782112, 0.038747113198041916, 0.0040031736716628075, 0.004117748700082302, 0.011089450679719448, 0.010985292494297028, -0.009249310940504074, 0.009582619182765484, 0.011811619624495506, 0.004541328176856041, 0.005360711365938187, -0.00035913122701458633, 0.0083188246935606, -0.0037219447549432516, 0.019429108127951622, -0.024025985971093178, -0.006086351815611124, 0.00037171709118410945, 0.00858269352465868, 0.015373853966593742, -0.0026508441660553217, -0.007027253974229097, -0.007020310033112764, -0.0063467491418123245, -0.001829724758863449, 0.018859704956412315, 0.010339506901800632, -0.02548421174287796, -0.014151723124086857, 0.0037566644605249166, -0.004270514938980341, -0.004496192559599876, -0.01040200237184763, 0.00267861969769001, -0.008707684464752674, 0.013172629289329052, 0.009249310940504074, 0.03352527692914009, -0.0024876617826521397, -0.017207050696015358, -0.008207721635699272, 0.0001039419075823389, 0.0029459609650075436, -0.00966594647616148, -0.009027104824781418, 0.009617338888347149, 0.0304143987596035, 0.013269844464957714, -0.008832674473524094, 0.014186442829668522, -0.005037819035351276, -0.0011813355376943946, -0.0031594866886734962, -0.012755993753671646, 0.02356768772006035, 0.0009192022844217718, -0.015498844906687737, 0.013498993590474129, -0.007318899035453796, 0.006930038798600435, 0.002699451521039009, -0.0028522179927676916, 0.010672815144062042, 0.00703419791534543, 0.013498993590474129, -0.003937206696718931, -0.0031907344236969948, 0.004666318651288748, -0.002138729440048337, 0.037080567330121994, -0.0195818729698658, 0.028192343190312386, -0.0029095052741467953, 0.01283237710595131, -0.024387070909142494, -9.054229303728789e-05, -0.008013291284441948, 0.0010112093295902014, -0.0060273283161222935, 0.0119574423879385, -0.019776303321123123, 0.006183566991239786, 0.017943106591701508, 0.004225379321724176, -0.014360040426254272, 0.010964460670948029, 0.0016179349040612578, 0.004760061856359243, 0.019984621554613113, 0.0012533788103610277, 0.01167968474328518, -0.013276788406074047, -0.01583215221762657, 0.004735758062452078, 0.011950498446822166, 0.0169848445802927, -0.005510006099939346, -0.011214441619813442, 0.013026806525886059, 0.004319122526794672, -0.005600276868790388, -0.01804032176733017, 0.004232323262840509, 0.007957739755511284, 0.01179773174226284, 0.008770179934799671, 0.010707534849643707, 0.012186591513454914, -0.0007412642007693648, -0.01905413530766964, -0.01024229172617197, 0.013846189714968204, 0.014665573835372925, -0.015887703746557236, 0.010096469894051552, 0.00469409441575408, -0.00117352360393852, -0.020567910745739937, 0.013297620229423046, -0.0061037116684019566, -0.009846488013863564, -0.0007069785497151315, -0.0083188246935606, 0.008839618414640427, 0.023914884775877, -0.0019356196280568838, -0.016415443271398544, -0.02188725769519806, -0.009422908537089825, -0.006700889207422733, 0.0031282389536499977, 0.017109835520386696, 0.0003241945814806968, -0.017415368929505348, 0.021345630288124084, -0.013339283876121044, 0.009270141832530499, 0.023206602782011032, 0.0021890730131417513, 0.018956920132040977, -0.013742031529545784, -0.012797657400369644, -0.016526546329259872, -0.012617114931344986, -0.01359620876610279, -0.023831557482481003, 0.00014582245785277337, -0.020179051905870438, 0.012006049044430256, -0.0015155120054259896, -0.0010077373590320349, 0.01873471401631832, -0.007311955094337463, -0.016207125037908554, -0.003244549734517932, 0.004055253230035305, 0.018498621881008148, 0.014304488897323608, -0.0003333084750920534, -0.01188800297677517, -0.015679387375712395, -0.0015762713737785816, -0.003905958728864789, 0.02041514404118061, -0.002805346390232444, -0.020609574392437935, 0.011790787801146507, 0.004805197473615408, 0.012436572462320328, 0.020442919805645943, -0.003225453896448016, -0.00992981530725956, 0.005714851897209883, 0.0023244793992489576, -0.008686852641403675, 0.007714702747762203, 0.012033824808895588, -0.0016587305581197143, 0.004409393295645714, 0.0005997816915623844, 0.014596134424209595, -0.002185601042583585, 0.014651685953140259, -0.003978869877755642, 0.026456361636519432, 0.006666169967502356, 0.013728143647313118, 0.027136866003274918, 0.009165983647108078, -0.009353469125926495, 0.0048364452086389065, 0.032914213836193085, -0.003293157322332263, -0.012172703631222248, 0.000493018829729408, -0.006766856648027897, 0.010422834195196629, -0.022317780181765556, -0.0018818042008206248, -0.0012655307073146105, -0.019179126247763634, 0.0032271898817270994, 0.025039799511432648, -0.007853581570088863, -0.00234183925203979, 0.02188725769519806, -0.017776452004909515, 0.027428511530160904, -0.003860823344439268, -0.008756292052567005, 0.009971478953957558, 0.014596134424209595, 0.012596283107995987, 0.00820077769458294, -0.00952706765383482, -0.021581724286079407, 0.015429405495524406, 0.019567985087633133, 0.005603748839348555, -0.00797162763774395, -0.01132554467767477, -0.015582172200083733, 0.012901815585792065, -0.0042809308506548405, 0.0003183356311637908, -0.0008792747394181788, 0.008117450401186943, 0.0021474093664437532, -0.0035414027515798807, 0.012235199101269245, 0.001117104198783636, 0.006433548405766487, -0.009256254881620407, 0.006402300670742989, 0.000493018829729408, -0.013769807294011116, 0.0037497205194085836, -0.01188800297677517, -0.017137611284852028, 0.003978869877755642, 0.003947622608393431, -0.005735683720558882, 0.0025883486960083246, -0.003473699325695634, 0.013082358054816723, 0.006242590025067329, 0.0032688535284250975, -0.021831706166267395, -0.005044762976467609, 0.018540283665060997, 0.004582991823554039, 0.03766385838389397, -0.0010415890719741583, -0.0011908834567293525, 0.01188800297677517, -0.0042878747917711735, 0.028122903779149055, 0.00849242229014635, -0.007193908095359802, 0.010679759085178375, 0.01328373234719038, -0.010256179608404636, -0.004027477465569973, -0.012019936926662922, 0.010506161488592625, -0.015651611611247063, -0.0037879119627177715, -0.04013589769601822, -0.025456435978412628, 0.007395281922072172, 0.0026421642396599054, -0.01933189295232296, -0.0031889984384179115], "1278ad97-268a-4707-9066-09d44fb74832": [-0.020158104598522186, -0.03704351559281349, -0.006390217691659927, 0.022471560165286064, -0.03410937637090683, -0.04358890280127525, 0.008202895522117615, 0.051601361483335495, -0.0042107729241251945, 0.023966843262314796, 0.03966731205582619, 0.006503069307655096, 0.017731796950101852, -0.00987450871616602, 0.013725567609071732, 0.04838509485125542, -0.031457364559173584, 0.004193139728158712, 0.020327381789684296, -0.03867986053228378, 0.03918769210577011, 0.0012616448802873492, -0.020637722685933113, -0.0018902631709352136, 0.005543831270188093, -0.010897225700318813, -0.008125309832394123, 0.028142349794507027, -0.05693359673023224, -0.005318128503859043, 0.018098564818501472, -0.010629203170537949, 0.008195842616260052, 0.006936842575669289, 0.03413758799433708, -0.007793808821588755, 0.010586883872747421, 0.003318540286272764, -0.025532659143209457, -0.012131539173424244, -0.028621969744563103, 0.030893106013536453, 0.0027225431986153126, -0.010100211948156357, -0.018817992880940437, 0.005300495307892561, -0.039244119077920914, -0.00816762913018465, -0.01657506823539734, -0.00694036902859807, 0.004397682845592499, -0.012907394208014011, -0.02395273745059967, 0.016053130850195885, 0.06409966945648193, -0.04694623500108719, 0.011348632164299488, 0.031824130564928055, 0.016250619664788246, -0.05682074651122093, 0.004376523196697235, -0.022711370140314102, -0.0013506917748600245, -0.010255382396280766, -0.013993590138852596, 0.028015391901135445, -0.0021547588985413313, -0.009437208995223045, -0.029087482020258904, -0.005547358188778162, -0.014769444242119789, 0.03859522193670273, -0.016518643125891685, 0.021399471908807755, 0.04178328067064285, -0.04065476357936859, 0.031259872019290924, 0.03049812652170658, 0.029059268534183502, -0.012068060226738453, 0.006852203980088234, 0.013683248311281204, 0.023303840309381485, 0.0016680866247043014, 0.05574865639209747, 0.033121924847364426, -0.006277366541326046, -0.04057012498378754, 0.03574572131037712, -0.04674874618649483, -0.006580654997378588, 0.008774206042289734, -0.009176240302622318, -0.026139235123991966, -0.01359860971570015, 0.013711460866034031, 0.006425484083592892, -0.012836861424148083, 0.000790842343121767, -0.010861959308385849, -0.008329853415489197, -0.015277275815606117, 0.021258406341075897, -0.024742698296904564, 0.028791246935725212, 0.005631996784359217, 0.003043464617803693, 0.01301319245249033, -0.04240396246314049, 0.04466099292039871, 0.028184669092297554, -0.04547916725277901, -0.004771503619849682, 0.01227965671569109, -0.06917798519134521, -0.027789689600467682, -0.04310928285121918, -0.003163369372487068, -0.03523788973689079, -0.008266374468803406, 0.016645601019263268, 0.01469891145825386, -0.003392599057406187, 0.02736649662256241, -0.029877442866563797, 0.032952647656202316, 0.01328121405094862, 0.00288124056532979, -0.0027860221453011036, -0.011376844719052315, -0.028805352747440338, 0.019636165350675583, 0.020962171256542206, 0.019156547263264656, 0.022344602271914482, -0.015263169072568417, 0.02285243570804596, 0.07719044387340546, 0.007822021842002869, 0.05856994539499283, -0.05591793358325958, -0.03605606406927109, 0.006795777939260006, -0.0034543147776275873, 0.005363974254578352, 0.008626088500022888, -0.04982395097613335, 0.035266101360321045, -0.012766329571604729, 0.010347074829041958, -0.07205570489168167, -0.04818760231137276, -0.013097831048071384, 0.011235780082643032, 0.08294587582349777, -0.027084367349743843, 0.013669141568243504, 0.023839885368943214, 0.009641752578318119, 0.046156276017427444, 0.03478648513555527, -0.034730058163404465, -0.002997618867084384, 0.033291202038526535, 0.05205276980996132, 0.01784464903175831, 0.028791246935725212, 0.024178439751267433, -0.01894495077431202, 0.01807035133242607, 0.026943303644657135, -0.008435651659965515, 0.03470184653997421, -0.015291382558643818, 0.0028583176899701357, -0.02709847316145897, 0.06472035497426987, 0.013803152367472649, 0.007800862193107605, -0.014981040731072426, -0.004390629939734936, 0.006227993872016668, 0.005917652044445276, 0.0059987641870975494, 0.014459102414548397, -0.00794897973537445, 0.03230375051498413, 0.03969552740454674, -0.015912065282464027, -0.027521666139364243, -0.02345901168882847, 0.0042107729241251945, -0.024742698296904564, 0.0017218674765899777, -0.025363381952047348, -0.011285153217613697, 0.024911975488066673, 0.02629440650343895, -0.018691034987568855, 0.026407258585095406, -0.011003023944795132, -0.04246038943529129, -0.029792804270982742, 0.03839773312211037, -0.01505157258361578, -0.001039468334056437, -0.01838069222867489, -0.007807915098965168, 0.03298085927963257, -0.015559405088424683, 0.03013135865330696, -0.045648444443941116, -0.003198635531589389, 0.011158195324242115, 0.006672346498817205, 0.01833837293088436, 0.0009204453090205789, 0.04059833660721779, -0.001255473238416016, -0.0498521625995636, -0.0010738528799265623, -0.012759275734424591, 0.0019731384236365557, -0.023430798202753067, -0.03879271447658539, 0.016448110342025757, -0.027380602434277534, 0.020933959633111954, -0.03865164890885353, 0.006633554119616747, 0.028438584879040718, -0.017929287627339363, -0.0013815496349707246, 0.019918294623494148, -0.004147293511778116, 0.03862343728542328, 0.030187783762812614, 0.0067640384659171104, -0.0124771473929286, -0.011221674270927906, 0.0028847672510892153, 0.015206743963062763, -0.0022746636532247066, -0.020270956680178642, 0.020031146705150604, 0.016151875257492065, 0.004267198499292135, 0.059247054159641266, 0.007906660437583923, 0.01880388706922531, 0.02148411050438881, -0.0022182378452271223, -0.011144088581204414, -0.003911010921001434, -0.03458899259567261, 0.03588678687810898, 0.03552002087235451, -0.020722361281514168, 0.007906660437583923, 0.00670761289075017, 0.007434094324707985, 0.016518643125891685, 7.819156598998234e-05, 0.04767977073788643, 0.01994650810956955, 0.011369791813194752, 0.028551436960697174, 0.014444995671510696, 0.006196254398673773, 0.025038933381438255, 0.008294587023556232, -0.0023786986712366343, -0.004083814565092325, 0.02886177971959114, 0.013126043602824211, -0.008195842616260052, 0.00024377694353461266, -0.00495136110112071, 0.02722543105483055, -0.009444262832403183, -8.667747169965878e-05, 0.02619566209614277, 0.011355685070157051, -0.0018814465729519725, 0.026844557374715805, 0.038200244307518005, -0.011680133640766144, -0.020270956680178642, -0.037128154188394547, -0.005543831270188093, -0.0007031179266050458, 0.009246772155165672, -0.020524872466921806, 0.024248972535133362, 0.0022940600756555796, -0.007099066395312548, 0.0022676105145365, 0.011320418678224087, -0.024502888321876526, 0.02522231638431549, 0.009789870120584965, 0.02939782291650772, 0.024629846215248108, -0.047256577759981155, 0.036733172833919525, -0.024911975488066673, 0.038510583341121674, 0.034927546977996826, -0.018028032034635544, 0.026280300691723824, -0.01134157832711935, -0.05100889131426811, -0.0036324085667729378, 0.008153523318469524, 0.011235780082643032, 0.021639280021190643, -0.02996208146214485, -0.019466888159513474, -0.017816435545682907, -0.02726775035262108, -0.014628379605710506, 0.01653274893760681, -0.039977654814720154, 0.01630704663693905, 0.04011872038245201, -0.03504040092229843, 0.030159572139382362, -0.01129220612347126, -0.01970669813454151, -0.013612715527415276, -0.044350650161504745, -0.02819877676665783, -0.04875186085700989, 0.014670698903501034, -0.039300546050071716, -0.024897869676351547, -0.04567665606737137, -0.07205570489168167, 0.02712668664753437, -0.035632871091365814, -0.018888525664806366, -0.03171128034591675, -0.019692592322826385, -0.005427453201264143, 0.009140973910689354, -0.01938224956393242, -0.030582765117287636, -0.008238161914050579, -0.017280390486121178, -0.0018726300913840532, 0.0009742261026985943, -0.010382341220974922, 0.027973072603344917, -0.0013286503963172436, 0.024911975488066673, -0.03030063584446907, -0.01242777518928051, -0.007546945940703154, 0.033686183393001556, -0.02993386797606945, 0.015545298345386982, -0.03264230489730835, 0.011955209076404572, -0.0032815109007060528, -0.01657506823539734, -0.007511680014431477, 0.0018267841078341007, 0.014035909436643124, -0.028946418315172195, -0.011602547951042652, -0.0024562841281294823, 0.015122105367481709, -0.006235047243535519, 0.006421957165002823, 0.01187762338668108, -0.031993407756090164, 0.05673610791563988, -0.010586883872747421, -0.014571953564882278, 0.013542183674871922, -0.02114555612206459, -0.012448934838175774, -0.01997472159564495, -0.003163369372487068, 0.02292296662926674, 0.00238398858346045, 0.005293441936373711, -0.03645104542374611, -0.01429687812924385, -0.019650273025035858, -0.02361418306827545, -0.013669141568243504, -0.020397914573550224, -0.014388569630682468, -0.02866428904235363, -0.003422575304284692, 0.0037064673379063606, -0.0308366809040308, -0.014134653843939304, -0.015488872304558754, -0.035830359905958176, 0.004478794988244772, 0.01207511406391859, -0.01657506823539734, 0.04463278129696846, -0.004404736217111349, -0.02575836144387722, 0.009345517493784428, 0.027183111757040024, -0.01704058051109314, 0.054902270436286926, 0.0001978208019863814, -0.006164514925330877, 0.021836770698428154, 0.04319392144680023, 0.013669141568243504, -0.016631493344902992, 0.014656592160463333, -0.033262986689805984, 0.011482642963528633, 0.010325915180146694, 0.03650746867060661, 0.026520108804106712, 0.020933959633111954, 0.02439003624022007, 0.02288064733147621, -0.005857699550688267, 0.010622150264680386, 0.024404143914580345, 0.02148411050438881, 0.015728682279586792, 0.0481029637157917, 0.001340993563644588, -0.003096363740041852, -0.03188055753707886, -0.018451225012540817, -0.015122105367481709, -0.011038290336728096, 0.012491254135966301, -0.012096273712813854, -0.02214711345732212, 0.0005611718515865505, -0.02900284342467785, 0.013189522549510002, -0.02077878825366497, -0.002972932532429695, -0.05225025862455368, 0.017929287627339363, -0.05298379436135292, -0.021526429802179337, 0.008111204020678997, 0.04042905941605568, -0.004129660781472921, -0.0022693737410008907, 0.009260878898203373, -0.005815380252897739, 0.02382577955722809, -0.01743556186556816, 0.03066740371286869, -0.05055748671293259, -0.009112761355936527, -0.00113380525726825, 0.025518551468849182, 0.00868956744670868, -0.00031430914532393217, -0.026943303644657135, 0.014381516724824905, -0.009479528293013573, 0.006203307770192623, 0.03769241273403168, 0.034194014966487885, -0.003099890425801277, -0.0185781829059124, 0.04528167471289635, 0.02080700173974037, 0.003329120110720396, -0.016448110342025757, -0.015615830197930336, -0.008548503741621971, 0.008640195243060589, 0.022203538566827774, -0.00452816765755415, 0.009162133559584618, -0.00712375296279788, -0.017858754843473434, 0.022175325080752373, -0.028142349794507027, 0.006227993872016668, 0.026703493669629097, -0.0034596046898514032, -0.010079052299261093, 0.00887295138090849, 0.021470002830028534, 0.027987180277705193, 0.016490429639816284, -0.012547679245471954, 0.010798480361700058, -0.015390126965939999, 0.011771825142204762, -0.028114138171076775, -0.00223410758189857, -0.01650453545153141, 0.0056778425350785255, -0.007462307345122099, -0.004873775411397219, 0.014642486348748207, -0.016081342473626137, 0.026520108804106712, -0.007271870505064726, -0.01560172438621521, -0.04677695780992508, 0.02675991877913475, -0.015813320875167847, 0.01720985770225525, -0.008767153136432171, 0.0020366173703223467, -0.0034437349531799555, -0.04296822100877762, 0.039977654814720154, -0.0025426859501749277, 0.0069192093797028065, -0.03303728625178337, -0.016462216153740883, -0.0015376020455732942, -0.024474674835801125, -0.0028830040246248245, -0.015883853659033775, -0.014981040731072426, 0.03190876916050911, -0.032219111919403076, -0.020637722685933113, 0.014473209157586098, -0.026449577882885933, -0.006848677061498165, 0.010043785907328129, 0.008710727095603943, 0.013147203251719475, 0.005974078085273504, -0.019297610968351364, -0.017421454191207886, -0.021075023338198662, 0.007836127653717995, -0.0281282439827919, 0.003464894602075219, 0.021639280021190643, 0.01787286065518856, -0.028339840471744537, 0.017026474699378014, -0.0035354269202798605, 0.019509207457304, -0.02922854572534561, 0.036338191479444504, -0.00262203486636281, 0.0019202393013983965, -0.007398828398436308, -0.032726943492889404, 0.013584502972662449, 0.010720895603299141, -0.0163352582603693, -0.024996614083647728, -0.02873481996357441, 0.010297701694071293, 0.013408172875642776, -0.006256206892430782, -0.028452692553400993, -0.004887881688773632, -0.00858376920223236, -0.0029517728835344315, -0.012321976013481617, 0.021343044936656952, 0.022457454353570938, 0.003685307689011097, 0.030977744609117508, -0.012187965214252472, -0.011842356994748116, 0.025843000039458275, -0.010904279537498951, 0.014459102414548397, -0.05555116385221481, -0.023473117500543594, 0.0030628610402345657, 0.003251534653827548, 0.012202071957290173, -0.006788725033402443, 0.016194194555282593, 0.02309224382042885, -0.01723807118833065, -0.0024844969157129526, -0.01524906326085329, -0.0030840206891298294, 0.01127809938043356, -0.01152496226131916, -0.018183203414082527, -0.011842356994748116, -0.020031146705150604, 0.04096510633826256, 0.0023293260019272566, 0.0045034815557301044, 0.020454339683055878, 0.027380602434277534, 0.03425043821334839, 0.03171128034591675, 0.0047679771669209, -0.019988827407360077, -0.04900577664375305, 0.028015391901135445, -0.0185781829059124, 0.03932875767350197, 0.007730329874902964, 0.020891640335321426, 0.017223965376615524, -0.02295118011534214, 0.021596960723400116, -0.003836951917037368, 0.014628379605710506, -0.0012651714496314526, -0.0064995428547263145, 0.028875885531306267, 0.010043785907328129, -0.010318861342966557, 0.03250123932957649, -0.02141357772052288, 0.0308648943901062, -0.02455931343138218, 0.003840478602796793, 0.027578093111515045, -0.00811825692653656, -0.021258406341075897, -0.008908217772841454, 0.007610424887388945, -0.03749492019414902, -0.012625264935195446, 0.0028671342879533768, -0.012963819317519665, 0.0025744254235178232, -0.0007335349218919873, 0.030554551631212234, 0.0029852755833417177, -0.011905836872756481, -0.0030011453200131655, -0.03250123932957649, -0.010368234477937222, -0.007730329874902964, 0.051939915865659714, -0.01640579104423523, -0.001637228881008923, -0.013069617561995983, 0.004531694110482931, -0.0001461339124944061, 0.001377141335979104, -0.004968993831425905, -0.019960613921284676, -0.01677255891263485, 0.04130366072058678, 0.002632614690810442, -0.0045740134082734585, 0.01606723666191101, 0.003290327498689294, 0.001960795372724533, 0.0018796833464875817, 0.05744142830371857, -0.03117523528635502, 0.0038193189539015293, 0.01650453545153141, 0.006400797516107559, -0.008604928851127625, -0.005265229381620884, 0.019523315131664276, 0.020821107551455498, 0.019170653074979782, -0.03298085927963257, -0.03577393665909767, 0.01980544440448284, -0.017322709783911705, 0.009148026816546917, 0.01107355672866106, -0.013161309994757175, 0.005247596185654402, 0.011842356994748116, -0.018959056586027145, -0.030018506571650505, -0.037635985761880875, -0.013274161145091057, 0.03557644411921501, -0.0462973415851593, 0.010354127734899521, -0.001083550974726677, 0.0025232897605746984, -0.021470002830028534, -0.010572778061032295, 0.001296910922974348, 0.012039847671985626, -0.019593846052885056, 0.030921319499611855, 0.0034278652165085077, -0.014571953564882278, 0.006961528677493334, -0.0052687558345496655, 0.010763214901089668, -0.015629936009645462, -0.03331941366195679, -0.0126957967877388, -0.012949713505804539, 0.00048314561718143523, 0.030780253931879997, 0.011884676292538643, -0.011094716377556324, -0.04601521044969559, 0.01105944998562336, -0.00916918646544218, -0.004009755793958902, 0.016391685232520103, 0.00988861545920372, 0.027479346841573715, 0.007497573737055063, 0.024136120453476906, -0.007659797556698322, 0.03554823249578476, 0.019354037940502167, 0.03935696929693222, 0.010650362819433212, 0.028114138171076775, -0.010720895603299141, -0.028015391901135445, -0.0408240407705307, -0.004464688710868359, 0.0068275174126029015, 0.012921500019729137, -0.010079052299261093, 0.0035936159547418356, 0.009296144358813763, 7.538129284512252e-05, 0.03772062435746193, -0.0027260698843747377, -0.0009072205284610391, 0.01984776370227337, -0.00965585932135582, 0.006753458641469479, 0.06607457250356674, -0.01943867653608322, 0.009867455810308456, 0.0009618829353712499, 0.012470094487071037, -0.015390126965939999, -0.017534306272864342, -0.006905103102326393, 0.021159661933779716, 0.006644133944064379, -7.697928958805278e-05, -0.01670202612876892, 0.008400386199355125, -0.040175143629312515, 0.016024917364120483, -0.011482642963528633, -0.01400064304471016, 0.0041190809570252895, 0.03862343728542328, 0.009310251101851463, -0.004708024673163891, 0.03283979371190071, 0.01429687812924385, -0.00025986708351410925, 0.029059268534183502, -0.009768710471689701, -0.007998351939022541, -0.009677018970251083, 0.009782817214727402, 0.02048255316913128, 0.02285243570804596, 0.005840066820383072, 0.05058569833636284, 0.009444262832403183, 0.028015391901135445, 0.04260145127773285, -0.004619859624654055, -0.005046579521149397, 0.004471742082387209, -0.002897110302001238, -0.030582765117287636, -0.016151875257492065, -0.051234595477581024, -0.02673170529305935, 0.02863607555627823, -0.005974078085273504, 0.012604105286300182, -0.013810206204652786, 0.03915948048233986, 0.005857699550688267, -0.009634699672460556, -0.021723918616771698, -0.0003921149764209986, -0.013908950611948967, 0.0052687558345496655, -0.006429010536521673, 0.008358066901564598, 0.006400797516107559, -0.028382159769535065, -0.006213887594640255, -0.010861959308385849, -0.0035195571836084127, 0.011821197345852852, -0.005325181409716606, 0.022824222221970558, 0.017788222059607506, 0.011517909355461597, -0.011390951462090015, 0.008809472434222698, -0.009578273631632328, -0.030244210734963417, 0.02080700173974037, 0.002823051530867815, 0.0028706607408821583, -0.020736468955874443, 0.004746817518025637, -0.04243217408657074, -0.013471651822328568, 0.006608867552131414, -0.004030915442854166, 0.014191079884767532, 0.02185087837278843, -0.015996703878045082, -0.0018144410569220781, 0.016998261213302612, -0.0016134242760017514, -0.0034578414633870125, -0.0052969688549637794, 0.03650746867060661, -0.003096363740041852, -0.0007604253478348255, 0.004743291065096855, -0.007504626642912626, -0.018817992880940437, -0.027944860979914665, 0.019551526755094528, 0.020538978278636932, 0.01787286065518856, 0.004813822917640209, 0.0071025933139026165, -0.04378639534115791, 0.03137272596359253, -0.004796190187335014, -0.032162684947252274, 0.002579715335741639, 0.017491986975073814, 0.03574572131037712, 0.010135478340089321, 0.01884620636701584, 0.027902541682124138, 0.026209767907857895, 0.007462307345122099, 0.008696621283888817, -0.045055974274873734, 0.028791246935725212, 0.002475680550560355, -0.0354071669280529, 0.017999818548560143, 0.008541449904441833, 0.01884620636701584, -0.010269489139318466, 0.00990272220224142, 0.02773326262831688, 0.02646368369460106, -0.03281158208847046, 0.008238161914050579, -0.023769352585077286, 0.014783550053834915, -0.015658149495720863, -0.013887790963053703, 0.003787579480558634, 0.0021917882841080427, -0.00605518976226449, 0.02415022812783718, 0.037099938839673996, -0.0022993499878793955, -0.0009610013221390545, -0.0047926632687449455, 0.0067922514863312244, 0.0031598429195582867, -0.027775581926107407, -0.016081342473626137, -0.013711460866034031, 0.001404472510330379, -0.0016610334860160947, 0.011926996521651745, -0.019128333777189255, -0.006111615803092718, 0.002073646755889058, -0.0031263399869203568, -0.014360357075929642, 0.009803976863622665, -0.003724100533872843, 0.036394618451595306, -0.0046657053753733635, -0.006242100149393082, -0.012752222828567028, -0.024446463212370872, 0.02749345451593399, 0.014078228734433651, -0.004147293511778116, -0.005032472778111696, -0.0019837182480841875, -0.02398095093667507, -0.00789960753172636, -0.019297610968351364, 0.036168914288282394, -0.04305285960435867, 0.019664378836750984, 0.00416845316067338, 0.025744255632162094, -0.007589265238493681, 0.001854997011832893, 0.019650273025035858, -0.032896220684051514, -0.031090596690773964, 0.038341306149959564, 0.012787489220499992, -0.004961940925568342, -0.02422075904905796, -0.004626912530511618, -0.0032497714273631573, 0.033291202038526535, 0.024516994133591652, 0.012364295311272144, 0.018662821501493454, -0.018902631476521492, -0.0020225110929459333, -0.030413487926125526, -0.005868279375135899, 0.015954384580254555, 0.021695706993341446, -0.011158195324242115, -0.004133187234401703, -0.019029589369893074, 0.008435651659965515, 0.014021802693605423, 0.0011822960805147886, -0.028678394854068756, 0.0014441469684243202, -0.022640837356448174, -0.016476323828101158, -0.021935516968369484, -0.007807915098965168, 0.013901897706091404, -0.021991942077875137, -0.002331089461222291, -0.028071818873286247, 0.012173858471214771, 0.016645601019263268, -0.01914244145154953, 0.00262203486636281, -0.009317304007709026, 0.029115695506334305, 0.007218971382826567, 0.0059987641870975494, 0.015517085790634155, 0.008238161914050579, -0.013908950611948967, -0.022006047889590263, -0.01577100157737732, 0.008372172713279724, 0.01029064878821373, 0.001280159573070705, 0.001487347879447043, 0.0032286117784678936, -0.02228817716240883, 0.028438584879040718, -0.04971110075712204, 0.013302373699843884, -0.03986480459570885, 0.013069617561995983, -0.011510856449604034, 0.007518733385950327, 0.0016680866247043014, 0.009712284430861473, -0.011884676292538643, -0.01594027876853943, -0.03949803486466408, -0.01960795372724533, -0.016010811552405357, -0.015926172956824303, 0.04395567253232002, -0.025899427011609077, 0.00406618183478713, -0.030074933543801308, 0.008294587023556232, -0.021371258422732353, -0.0025144731625914574, 0.035632871091365814, -0.021357152611017227, 0.016123661771416664, 0.019297610968351364, 0.000304831366520375, -0.0031369198113679886, -0.008915270678699017, 0.01733681559562683, -0.010438766330480576, 0.0019484522053971887, -0.011630760505795479, -0.009543007239699364, -0.030244210734963417, 0.0006431655492633581, -0.015742788091301918, -0.025843000039458275, 0.031147021800279617, 0.023078138008713722, 0.010953651741147041, 0.013203629292547703, -0.004926674533635378, -0.029877442866563797, -0.003925117198377848, -0.02568782866001129, -0.013655034825205803, 0.021766239777207375, -0.019791336730122566, -0.01005789265036583, -0.00037712688208557665, 0.016518643125891685, -0.047623347491025925, -0.008026565425097942, 0.022810116410255432, -0.04068297520279884, -0.00871778093278408, -0.0015931462403386831, -0.019424568861722946, 0.00182502088136971, 0.015728682279586792, 0.001711287652142346, -0.01713932678103447, 0.0009116287692449987, 0.0028159983921796083, -0.01400064304471016, -0.02077878825366497, 0.021864984184503555, -0.011912889778614044, 0.0038334254641085863, -0.032360177487134933, 0.015573510900139809, -0.03571750968694687, -0.02004525251686573, -0.017026474699378014, 0.030244210734963417, 0.0007776175625622272, -0.010593937709927559, -0.0008587295887991786, 0.019198866561055183, 0.004478794988244772, 0.004129660781472921, -0.012886233627796173, -0.0021406523883342743, -0.017858754843473434, 0.010248329490423203, 0.00871778093278408, 0.007222497835755348, -0.008195842616260052, -0.021230194717645645, 0.011602547951042652, 0.0025691355112940073, 0.01740734837949276, -0.013605662621557713, 0.03286800906062126, 0.0005580860888585448, -0.030752042308449745, 0.02675991877913475, -0.019424568861722946, -0.012801595032215118, -0.0018638134934008121, -0.035096824169158936, -0.012089219875633717, 0.016744345426559448, -0.013189522549510002, -0.01383136585354805, 0.003914537373930216, 0.004246038850396872, 0.020186318084597588, -0.02255619876086712, 0.011701293289661407, -0.0004198870446998626, -0.010918385349214077, 0.004140240605920553, -0.011334525421261787, -0.01760483905673027, -0.00664060702547431, 0.0026396678294986486, 0.01165897399187088, -0.023035818710923195, -0.006633554119616747, -0.006383164785802364, 0.022443348541855812, 0.009592380374670029, -0.009677018970251083, -0.026618855074048042, -0.00816762913018465, 0.01623651385307312, -0.005371027626097202, -0.014106441289186478, 0.002623798092827201, -0.013774939812719822, 0.06398681551218033, 0.019551526755094528, 0.007892553694546223, -0.004432949237525463, 0.004478794988244772, 0.02288064733147621, 0.017999818548560143, 0.02642136439681053, 0.01948099583387375, -0.02485555037856102, 0.022259963676333427, -0.013196575455367565, 0.000745437282603234, 0.03331941366195679, -0.0054309796541929245, 0.013217735104262829, -0.005110058467835188, 0.018366586416959763, -0.014769444242119789, 0.011785931885242462, -0.02328973449766636, -0.0053322347812354565, 0.0036817812360823154, 0.009514794684946537, -0.005603783763945103, 0.0019061329076066613, -0.0008428598521277308, -0.016716133803129196, 0.0016001993790268898, 0.007370615378022194, 0.01469891145825386, -0.004909041337668896, 0.00816762913018465, 0.021596960723400116, -0.0059987641870975494, 0.06133480742573738, -0.019537420943379402, 0.01977723091840744, -0.014656592160463333, -0.023543650284409523, -0.0009918591240420938, -0.012942659668624401, 0.017125219106674194, 0.01401474978774786, 0.003320303512737155, 0.009324357844889164, -0.005021892953664064, -0.01405001524835825, -0.01242777518928051, -0.022640837356448174, -0.01677255891263485, 0.014656592160463333, -0.017548412084579468, 0.017350923269987106, -0.021822664886713028, 0.015107998624444008, -0.0056425766088068485, 0.0065630218014121056, -0.029482461512088776, 0.008569663390517235, 0.005882386118173599, -0.002463337266817689, -0.010699735954403877, -0.02939782291650772, -0.023176882416009903, 0.02114555612206459, -0.005540304817259312, -0.015460659749805927, -0.003179239109158516, 0.029143907129764557, -0.004563433583825827, 0.0010906042298302054, -0.013916004449129105, -0.009260878898203373, 0.0035654029343277216, 0.0022111847065389156, 0.0037452601827681065, -0.015531191602349281, 0.029510674998164177, -0.027451135218143463, -0.012921500019729137, -0.0018867364851757884, -0.008506184443831444, -0.0003099008754361421, -0.004489374812692404, -0.0027578093577176332, 0.00043509554234333336, -0.007250710856169462, -0.0002684632199816406, 0.004535221029073, 0.009437208995223045, 0.014896402135491371, 0.03066740371286869, 0.012350189499557018, -0.029651738703250885, -0.021540535613894463, -0.0013083724770694971, 0.005318128503859043, -0.021695706993341446, -0.002004877896979451, -0.01005789265036583, 0.02075057476758957, 0.00890116486698389, -0.0015252589946612716, -0.0053322347812354565, -0.00935257039964199, 0.0035177937243133783, -0.014797656796872616, -0.013351746834814548, -0.018916737288236618, 0.013725567609071732, -0.007575158961117268, -0.03591499850153923, -0.031147021800279617, 0.022570306435227394, -0.013330587185919285, -0.02007346600294113, -0.0018973163096234202, 0.012314923107624054, 0.007673903834074736, -0.033121924847364426, 0.002040144056081772, 0.014515528455376625, 0.0013171889586374164, -0.005825960077345371, 0.020002933219075203, -0.011792984791100025, -0.006979161873459816, -0.007049694191664457, 0.0036465150769799948, 0.0019043695647269487, 0.0027137266006320715, -0.04511239752173424, 0.00811825692653656, 0.01428277138620615, 0.0038969044107943773, 0.027549879625439644, 0.019636165350675583, -0.004485848359763622, -0.012314923107624054, -0.008294587023556232, -0.01065741665661335, 0.013161309994757175, -0.01287918072193861, -0.017491986975073814, 0.013330587185919285, -0.018225522711873055, 0.0012872127117589116, 0.005318128503859043, -0.01750609278678894, 0.007377668749541044, 0.00024069115170277655, 0.02649189718067646, 0.0029464829713106155, 0.0013277687830850482, -0.003542480058968067, 0.0007141386158764362, -0.009740497916936874, 0.006605341099202633, -0.026745812967419624, 0.055212609469890594, -0.016617387533187866, -0.006326738744974136, -0.016476323828101158, -0.003713520709425211, 0.012025740928947926, 0.005730741657316685, -0.06686453521251678, -0.021441791206598282, 0.014515528455376625, 0.026280300691723824, 0.006400797516107559, -0.008823579177260399, -0.014395623467862606, -0.01931171864271164, 0.013887790963053703, 0.03210626170039177, -0.0036676747258752584, 0.02939782291650772, 0.0015331938629969954, -0.010988918133080006, -0.034165799617767334, 0.006429010536521673, -0.011651920154690742, 0.03571750968694687, 0.01650453545153141, -0.023275628685951233, -0.013676194474101067, -0.0005532369832508266, 0.015150317922234535, 0.01012137159705162, 0.011249886825680733, -0.006799304857850075, 0.004641019273549318, 0.0033820192329585552, -0.011024183593690395, 0.012131539173424244, -0.019452782347798347, 0.003639461938291788, -0.0017774115549400449, -0.0036147756036370993, 0.022739583626389503, 0.016518643125891685, -0.03777705132961273, 0.012406615540385246, -0.006072822958230972, -0.010579830966889858, -0.010445820167660713, 0.020524872466921806, -0.005900018848478794, -0.008767153136432171, 0.03371439501643181, -0.031259872019290924, -0.0015702232485637069, -0.0022235277574509382, -0.016546854749321938, 0.005138271022588015, -0.02409380115568638, -0.0026114550419151783, -0.01405001524835825, -0.016927730292081833, 0.013147203251719475, -0.02846679836511612, 0.014854082837700844, 0.017999818548560143, 0.00019076757598668337, -0.003591852495446801, -0.012949713505804539, 0.014148760586977005, -0.015291382558643818, -0.0015719865914434195, 0.020694149658083916, 0.018902631476521492, 0.013006138615310192, 0.012815701775252819, -0.010064945556223392, -0.017520200461149216, -0.007603371981531382, 0.003762893145903945, -0.020821107551455498, 0.005857699550688267, -0.012385454960167408, -0.04420958831906319, 0.002618508180603385, -0.02729596383869648, -0.00015076258569024503, 0.026703493669629097, -0.006383164785802364, 0.005600257311016321, 0.0090563353151083, -0.02405148185789585, -0.004577540326863527, -0.0022182378452271223, -0.009190346114337444, -0.003265641164034605, 0.003480764338746667, 0.01931171864271164, 0.004404736217111349, 0.004863195586949587, -0.016984155401587486, 0.0072295512072741985, -0.017562519758939743, 0.03678959980607033, 0.00910570751875639, -0.04116259515285492, -0.011172301135957241, 0.0049478341825306416, 0.02094806544482708, 0.017999818548560143, -0.013365852646529675, -0.01423339918255806, 0.03645104542374611, 0.0030734408646821976, 0.008343960158526897, 0.010650362819433212, -0.007211918011307716, 0.011433270759880543, -0.001302200835198164, -0.029877442866563797, -0.010854906402528286, 0.0005915889050811529, 0.03647925704717636, -0.009500687941908836, 0.004796190187335014, 0.005187643691897392, 0.007497573737055063, -0.00852029025554657, 0.0030699141789227724, 0.0041543468832969666, -0.011052397079765797, 0.002525052987039089, 0.005833013448864222, 0.014670698903501034, -0.025504445657134056, 0.014642486348748207, 0.03425043821334839, 0.02248566783964634, 0.009274984709918499, -0.007222497835755348, -0.037099938839673996, -0.01207511406391859, 0.012187965214252472, 0.012999085709452629, 0.0072295512072741985, -0.007053220644593239, 0.012611158192157745, 0.025349274277687073, -0.017830541357398033, -0.002861844375729561, -0.011137035675346851, -0.009578273631632328, 0.011165248230099678, -0.01606723666191101, 0.020059360191226006, -0.012794542126357555, 0.007159018889069557, 0.019650273025035858, 0.026886876672506332, 0.013260054402053356, -0.01289328746497631, -0.006101035978645086, 0.020538978278636932, -0.006203307770192623, -0.0013665615115314722, -0.011948156170547009, 0.0035371901467442513, 0.0046022264286875725, 0.004207246005535126, -0.014141707681119442, -0.027648624032735825, -0.00012618652544915676, -0.029792804270982742, 0.022471560165286064, -0.0024950767401605844, -0.0035054506734013557, 0.009387836791574955, -0.026745812967419624, 0.00893643032759428, -0.05301200598478317, -0.01974901743233204, -0.025843000039458275, 0.013330587185919285, -0.02185087837278843, 0.027422921732068062, -0.01821141503751278, 0.02278190292418003, -0.026717599481344223, 0.021766239777207375, -0.0007295674877241254, -0.023360267281532288, -0.014910507947206497, 0.019495101645588875, -0.005155904218554497, -0.017097007483243942, -0.016095450147986412, 0.014487314969301224, -0.01307667139917612, 0.018352480605244637, 0.00535339443013072, -0.007800862193107605, -0.029821015894412994, -0.023995056748390198, 0.006270313169807196, -0.014684805646538734, -0.02228817716240883, 0.023346159607172012, -0.014910507947206497, -0.004732711240649223, 0.009140973910689354, -0.0030170150566846132, -0.014515528455376625, -0.003099890425801277, -0.008795365691184998, 0.00771622359752655, 0.0398930162191391, -0.02836805395781994, 0.018366586416959763, -0.005438033025711775, -0.00039475993253290653, -0.014557847753167152, -0.02091985195875168, -0.009197399951517582, -0.004164926707744598, -0.05676431953907013, 0.015206743963062763, -0.010742055252194405, 0.00653833569958806, -0.008760100230574608, 0.004023862536996603, 0.010904279537498951, 0.008745993487536907, -0.023966843262314796, 0.01740734837949276, 0.033121924847364426, 0.019057802855968475, 0.025109466165304184, -0.011454430408775806, -0.006277366541326046, -0.011912889778614044, 0.042742516845464706, 0.016546854749321938, -0.014924614690244198, 0.009923881851136684, 0.0048843552358448505, -0.0190719086676836, 0.006654713768512011, 0.01706879399716854, -0.038341306149959564, -0.010897225700318813, -0.010869013145565987, 0.02138536423444748, -0.012286710552871227, -0.007730329874902964, -0.01613776944577694, 0.023275628685951233, -0.009930934756994247, 0.006139828357845545, -0.013676194474101067, -0.012307870201766491, -0.012886233627796173, 0.001747435424476862, -0.02532106265425682, -0.014571953564882278, -0.0035742195323109627, 0.02161106839776039, -0.008929377421736717, 0.0061539351008832455, -0.012406615540385246, -0.008985803462564945, 0.020722361281514168, -0.007631584536284208, 0.03568929806351662, -0.03467363119125366, 0.00013301933358889073, 0.03396831080317497, 0.0023628289345651865, -0.022499773651361465, -0.010650362819433212, -0.006735825911164284, -0.013485757634043694, -0.0042742518708109856, -0.023529544472694397, -0.02468627132475376, 0.01386663131415844, 0.0030699141789227724, -0.04347605258226395, -0.014924614690244198, 0.010615097358822823, 0.002763099269941449, -0.0038334254641085863, -0.016758453100919724, 0.022626731544733047, 0.00012133743439335376, -0.002181208459660411, -0.014924614690244198, -0.0025814787950366735, 0.003995649516582489, -0.006474856752902269, -0.024672165513038635, 0.010403500869870186, -0.008745993487536907, -0.006559495348483324, -0.001918475958518684, -0.010869013145565987, 0.010953651741147041, 0.009359624236822128, -0.004552853759378195, 0.012138593010604382, -0.016321152448654175, -0.03408116102218628, -0.012378402054309845, 0.008999909274280071, -0.002458047354593873, 0.0035795094445347786, 0.020665936172008514, 0.00582243362441659, 0.0038863245863467455, -0.00546977249905467, -0.003461367916315794, -0.00593175832182169, -0.002851264551281929, 6.193609442561865e-05, -0.003995649516582489, 0.0036606215871870518, 0.003709994023665786, 0.07724687457084656, 0.005074792075902224, 0.012173858471214771, -0.007183704990893602, -0.0033714394085109234, -0.010086105205118656, -0.010368234477937222, 0.008710727095603943, 0.013521024025976658, 0.014134653843939304, 0.006813411135226488, -0.03137272596359253, 0.001155846519395709, 0.014741230756044388, -0.016194194555282593, -0.0073212431743741035, 0.016885410994291306, 0.03134451061487198, -0.016984155401587486, 0.031090596690773964, -0.002768389182165265, -0.010615097358822823, -0.0009204453090205789, 0.015192637220025063, -0.012124486267566681, -0.005505038890987635, 0.0064360639080405235, 0.01777411624789238, 0.016053130850195885, 0.008435651659965515, -0.004362416919320822, 0.006753458641469479, -0.0011911126784980297, 0.014896402135491371, -0.006242100149393082, 0.010481085628271103, 0.009550061076879501, 0.009550061076879501, 0.0069756354205310345, -0.0007392656989395618, -0.006584181450307369, 0.014769444242119789, 0.023797566071152687, 0.015150317922234535, -0.008964643813669682, -0.01369735412299633, 0.012716956436634064, -0.005564990919083357, -0.014078228734433651, 0.006742878817021847, -0.0226831566542387, -0.0007339757867157459, -0.007155492436140776, 0.004485848359763622, 0.016984155401587486, -0.005808327347040176, 0.021004490554332733, -0.014021802693605423, 0.011941102333366871, 0.011024183593690395, 0.003967436496168375, -0.004023862536996603, -0.013528076931834221, -0.03405294939875603, 0.003274457762017846, -0.018423011526465416, -0.001216680509969592, -0.012434828095138073, -0.0021988414227962494, -0.011666026897728443, -0.010283595882356167, 0.010819640010595322, 0.023769352585077286, -0.018860312178730965, -0.007405881769955158, 0.022457454353570938, 0.012237337417900562, 0.010735001415014267, 0.016081342473626137, -0.0017218674765899777, 0.0015305489068850875, -0.004372996743768454, -0.022626731544733047, 0.001318952301517129, -0.004411789588630199, -0.00629852619022131, 0.008040671236813068, -0.019932402297854424, 0.00011571690265554935, -0.017449667677283287, -0.00875304639339447, 0.013513971120119095, 0.009923881851136684, -0.006774618290364742, 0.009803976863622665, -0.0006118668825365603, 2.16969183384208e-05, -0.018662821501493454, 0.020468445494771004, 0.00214594230055809, 0.007589265238493681, 0.006686453241854906, 0.00020410257275216281, 0.005723688751459122, 0.006880416534841061, -0.003918063826858997, 0.016321152448654175, 0.008005405776202679, -0.02034148760139942, 0.0007577803917229176, -0.005593203939497471, 0.008146469481289387, 0.0013947744155302644, 0.0023346159141510725, -0.012068060226738453, -0.0021353624761104584, 0.015912065282464027, -0.01486818864941597, -0.002911216812208295, -0.022711370140314102, 0.001810914371162653, -0.009246772155165672, -0.014938721433281898, 0.0023610657081007957, -0.004305991344153881, 0.0018408906180411577, -0.02048255316913128, -0.014783550053834915, 0.0016874830471351743, -0.016927730292081833, 0.01643400453031063, 0.0016292940126731992, 0.01469891145825386, -0.009952094405889511, 0.0038863245863467455, 0.002316982951015234, -0.007067326921969652, -0.007878447882831097, 0.02612512931227684, -0.015982598066329956, 0.0010191904148086905, 0.0036817812360823154, -0.0006206834223121405, 0.0154183404520154, 0.022527987137436867, 0.005864752922207117, -0.011186407878994942, -0.03340405225753784, 0.013394066132605076, -0.0158979594707489, 0.01880388706922531, -0.02866428904235363, -0.004179033450782299, -0.012300816364586353, 0.017280390486121178, -0.0014926377916708589, -0.014374463818967342, 0.017661264166235924, 0.0039991759695112705, -0.00214594230055809, -0.006979161873459816, -0.010368234477937222, -0.02309224382042885, -0.0019202393013983965, -0.011870570480823517, 0.00023496041831094772, 0.01894495077431202, 0.03794632852077484, 0.019650273025035858, -0.0017077610827982426, 0.00670761289075017, -0.004485848359763622, -0.004436475690454245, -0.017534306272864342, -0.018888525664806366, -0.01469891145825386, 0.008929377421736717, 0.010650362819433212, -0.02783200889825821, 0.0026696440763771534, 0.01386663131415844, -0.013126043602824211, 0.022344602271914482, 0.007991299033164978, 0.006273839622735977, -0.007596318610012531, 0.021695706993341446, -0.01706879399716854, -0.004224879201501608, 0.026252087205648422, -0.012575892731547356, 0.02365650236606598, -0.007836127653717995, 0.007673903834074736, -0.030046720057725906, 0.0065277558751404285, 0.014007695950567722, 0.02214711345732212, 0.004958414006978273, -0.004866722039878368, -0.005127691198140383, 0.0069756354205310345, -0.013323533348739147, 0.013168362900614738, 0.025603190064430237, -0.019269399344921112, -0.014374463818967342, -0.016998261213302612, -0.005247596185654402, 0.006968582049012184, -0.03932875767350197, -0.028241096064448357, 0.01670202612876892, -0.0046445457264781, -0.024700378999114037, 0.015813320875167847, 0.011087662540376186, -0.010354127734899521, 0.009662912227213383, -0.015714576467871666, -0.01045992597937584, 0.0005721925408579409, 0.019269399344921112, -0.008379226550459862, -0.019636165350675583, 0.006132775451987982, -0.006929789204150438, 0.010128424502909184, -0.0007798217120580375, -0.011687186546623707, 0.03357332944869995, -0.004302464425563812, -0.005850646644830704, 0.029708165675401688, -0.002167101949453354, 0.019622059538960457, 0.01797160692512989, 0.004133187234401703, 0.00830164086073637, -0.017012368887662888, 0.003953330218791962, 0.008061830885708332, 0.00394980376586318, 0.0027930752839893103, 0.0025197630748152733, -0.008294587023556232, -0.00734945572912693, 0.007878447882831097, -0.010410553775727749, -2.2702553906128742e-05, -0.0124630406498909, -0.006767565384507179, -0.02014399878680706, 0.01726628467440605, -0.0007639519753865898, 0.010325915180146694, 0.003815792268142104, -0.011567281559109688, 0.00035354268038645387, -5.427673750091344e-05, 0.002297586528584361, 0.013944217003881931, 0.009091601707041264, 0.0007811441901139915, 0.014981040731072426, 0.014487314969301224, -0.021427683532238007, 0.01733681559562683, -0.0015887379413470626, 0.02365650236606598, 0.011941102333366871, -0.00771622359752655, 0.026971515268087387, 0.0022605571430176497, -0.003921590745449066, -0.004397682845592499, 0.016984155401587486, -0.010382341220974922, 0.012977926060557365, 0.01369735412299633, -0.004679812118411064, 0.002433361019939184, 0.009063388220965862, -0.013767886906862259, -0.008343960158526897, -0.016617387533187866, 0.002604401670396328, -0.005057159345597029, 0.0006590352859348059, -0.0038757447618991137, 0.005557938013225794, -0.0008525580633431673, 0.029313184320926666, 0.0019396357238292694, -0.014078228734433651, 0.010565724223852158, 0.011926996521651745, 0.008012458682060242, 0.022090686485171318, 0.01784464903175831, 0.006175094749778509, -0.016955941915512085, -0.013894844800233841, -0.007060274016112089, 0.005385133903473616, 0.00517001049593091, 0.010050839744508266, -0.00830164086073637, 0.0017315656878054142, -0.0014088808093219995, -0.009599433280527592, 0.0007983364048413932, -0.0013251238269731402, -0.005110058467835188, -0.008492077700793743, -0.005660209339112043, 0.014642486348748207, 0.014825869351625443, -0.016814878210425377, 0.023444905877113342, -0.005187643691897392, 0.02051076479256153, -0.020129891112446785, 0.022302282974123955, -0.0047926632687449455, 0.018592288717627525, 0.010396447032690048, -0.0009821610292419791, 0.009775763377547264, -0.034363292157649994, -0.011912889778614044, -0.012166805565357208, -0.018465330824255943, -0.006922735832631588, 0.01045992597937584, -0.0036712014116346836, -0.012970873154699802, -0.00811825692653656, -0.009662912227213383, 0.0181126706302166, -0.025913532823324203, -0.021131448447704315, -0.008259321562945843, -0.016828984022140503, 0.004253092221915722, 0.017830541357398033, 0.004231932573020458, -0.004612806253135204, 0.009754603728652, 0.018535863608121872, 0.005445086397230625, -0.005674316082149744, 0.02028506249189377, 0.0024174912832677364, 0.002510946476832032, -0.010777320712804794, 0.013760833069682121, 0.013789046555757523, -0.01594027876853943, 0.01733681559562683, -0.018987270072102547, 0.019198866561055183, -0.009049282409250736, -0.0029905654955655336, -0.002248214092105627, 0.0033273568842560053, -0.018817992880940437, 0.026012277230620384, -0.023642394691705704, -0.003840478602796793, -0.00587885919958353, -0.030695615336298943, -0.007772649172693491, -0.006577128078788519, -0.01010726485401392, 0.007035587448626757, -0.01687130331993103, -0.03433507680892944, -0.007977192290127277, 0.004852615762501955, 0.04246038943529129, 0.00023584206064697355, -0.013584502972662449, -0.015883853659033775, 0.014755337499082088, -0.011228727176785469, 0.02202015556395054, 0.008033618330955505, -0.010565724223852158, -0.003868691623210907, -0.004679812118411064, 0.01723807118833065, 0.004736237693578005, -0.011221674270927906, 0.009712284430861473, 0.00010508197010494769, -0.0027948387432843447, 0.043250348418951035, 0.00935257039964199, -0.028946418315172195, 0.021526429802179337, 0.012082166969776154, 0.023769352585077286, 0.03278337046504021, 0.005131218116730452, -0.027422921732068062, 0.01997472159564495, 0.018987270072102547, 0.006224467419087887, -0.0073847221210598946, -0.0003321625990793109, 0.011137035675346851, -0.018352480605244637, -0.00813236366957426, 0.00813236366957426, -0.002604401670396328, 0.015291382558643818, -0.015474766492843628, 0.017365029081702232, 0.006700559519231319, 0.021399471908807755, -0.001114408834837377, 0.030357060953974724, -0.016546854749321938, 0.0034437349531799555, 0.0032145052682608366, 0.026280300691723824, 0.0127099035307765, -0.014854082837700844, -0.0016980628715828061, -0.011835304088890553, -0.016053130850195885, -0.005988184362649918, 0.00993798766285181, -0.02565961703658104, -0.005508565343916416, 0.008273427374660969, -0.012589998543262482, 0.017153432592749596, 0.008322800509631634, -0.020454339683055878, -0.0037452601827681065, 0.01523495651781559, 0.0026308512315154076, 0.013351746834814548, 0.0020948066376149654, 0.007631584536284208, 0.007603371981531382, -0.012350189499557018, 0.0015746315475553274, -0.012773382477462292, 0.024009162560105324, 0.01994650810956955, -0.010685629211366177, -0.0044752685353159904, -0.020835213363170624, -0.009408996440470219, -7.146895950427279e-05, 0.016518643125891685, -0.003932170569896698, 0.0002658182638697326, -0.0009292617905884981, -0.0043835765682160854, 0.017054688185453415, -0.005247596185654402, 0.0002847737923730165, 0.01506567932665348, 0.015658149495720863, -0.006220940500497818, -0.002020747633650899, 0.0008988447953015566, 0.01650453545153141, 0.014586060307919979, -0.008217002265155315, -0.001163781387731433, 0.005766008049249649, 0.006735825911164284, 0.018126776441931725, 0.0011884677223861217, -0.012180912308394909, -0.0072295512072741985, 0.005674316082149744, -0.00182502088136971, 0.014825869351625443, 0.032190900295972824, 0.00970523152500391, 0.0028847672510892153, 0.021230194717645645, 0.0074764140881598, 0.033460479229688644, 0.003470184514299035, -0.004880828782916069, 0.006453697104007006, -0.008181735873222351, 0.01523495651781559, -0.0030311215668916702, -0.009324357844889164, 0.013168362900614738, 0.004789136815816164, -0.0032938539516180754, -0.006235047243535519, 0.0029270865488797426, 0.009846296161413193, 0.01743556186556816, -0.002916506724432111, 0.009197399951517582, -0.005589677486568689, 3.6285513488110155e-05, 0.0021776817739009857, 0.0022605571430176497, 0.01777411624789238, -0.0009601196506991982, -0.010354127734899521, 0.009677018970251083, -0.006383164785802364, 0.020524872466921806, -0.009014016017317772, 0.018592288717627525, 0.016109555959701538, -0.003251534653827548, -0.005963498260825872, -0.015658149495720863, 0.005110058467835188, 0.0317959189414978, -0.004013282712548971, -0.0046304394491016865, 0.009211505763232708, 0.0016522168880328536, 0.03176770731806755, -0.01821141503751278, -0.0023381425999104977, -0.0046657053753733635, -0.006626500748097897, -4.1795843571890146e-05, -0.0027913120575249195, 0.004348310641944408, 0.0037981593050062656, -0.0033079604618251324, 0.04604342579841614, -0.003776999656111002, -0.0018532336689531803, -0.0055790976621210575, -0.012089219875633717, -0.012561785988509655, -0.007441147696226835, -0.014240452088415623, -0.010777320712804794, -0.0004434712463989854, 0.000525464944075793, 0.012265550903975964, -0.006598287727683783, 0.004626912530511618, 0.036366406828165054, 0.026506002992391586, 0.03162664175033569, -0.005593203939497471, -0.007963086478412151, -0.013161309994757175, 0.015488872304558754, -0.002078936668112874, 0.0007807033834978938, -0.019396357238292694, 0.00970523152500391, 0.011821197345852852, -0.010960704647004604, 0.0004302464658394456, -0.0013454018626362085, 0.0015790397301316261, 0.0018620502669364214, 0.020835213363170624, -0.014318037778139114, -0.006968582049012184, -0.018987270072102547, 0.008640195243060589, 0.02629440650343895, 0.0023346159141510725, -0.016998261213302612, -0.015136211179196835, 0.02024274319410324, 0.005490932147949934, -0.008830632083117962, -0.0154183404520154, -0.03100595809519291, 0.012745169922709465, 0.006689979694783688, 0.026717599481344223, 0.01737913489341736, 0.002258793916553259, 0.009726391173899174, -0.023628288879990578, 0.01670202612876892, -0.019918294623494148, 0.0046657053753733635, 0.017125219106674194, -0.008499130606651306, -0.009909775108098984, 0.00018657972395885736, 0.006474856752902269, -0.022330496460199356, -0.034024737775325775, -0.005582624115049839, 0.01980544440448284, 0.010967758484184742, 0.0073847221210598946, -0.012787489220499992, 0.003553059883415699, 0.0149528281763196, -0.040541913360357285, -0.007589265238493681, -0.02091985195875168, -0.01770358346402645, 0.016222408041357994, 0.01383136585354805, -0.0003129866672679782, 0.0011911126784980297, -0.030046720057725906, 0.01626472733914852, 0.006009344011545181, 0.038538798689842224, -0.022937074303627014, 0.004817349836230278, -0.004581066779792309, -0.0009495398262515664, 0.012505359947681427, -0.01229376345872879, -0.0063796378672122955, -0.009613540023565292, 0.01560172438621521, 0.014395623467862606, -0.004013282712548971, -0.012632317841053009, -0.003406705567613244, 0.002983512356877327, -0.011320418678224087, 0.01850765012204647, -0.01152496226131916, -0.019396357238292694, -0.005325181409716606, 0.011087662540376186, 0.0006656476762145758, 0.003988596145063639, -0.028311626985669136, 0.0005360447685234249, 0.00910570751875639, 0.005935285240411758, -0.008809472434222698, 0.023600075393915176, 0.011870570480823517, 0.01743556186556816, 0.02124430052936077, -0.018140884116292, 0.006682926323264837, -0.006993268150836229, 0.0017271573888137937, 0.00969112478196621, -0.01974901743233204, 0.005258176010102034, -0.027846114709973335, 0.010572778061032295, -0.0127099035307765, -0.0004392834089230746, -0.03142915293574333, -0.004595173057168722, -0.001976665109395981, -0.000564257672522217, -0.014212239533662796, 0.003052281215786934, 0.020270956680178642, -0.00506068579852581, -0.008781259879469872, -0.021836770698428154, 0.016955941915512085, -0.008971696719527245, 0.006785198114812374, -0.0002158946736017242, -0.013097831048071384, -0.014487314969301224, -0.013365852646529675, 0.013513971120119095, -0.036338191479444504, -0.0019819550216197968, -0.0015411287313327193, -0.012843914330005646, -0.017548412084579468, -1.352096842310857e-05, -0.009832189418375492, 0.006961528677493334, -0.018930844962596893, -0.013140150345861912, -0.015291382558643818, -0.02678813226521015, -0.009063388220965862, -0.024375930428504944, -0.021075023338198662, 0.01613776944577694, 0.014656592160463333, -0.01075616106390953, -0.012455987744033337, -0.003903957549482584, -0.010650362819433212, -0.03487112373113632, 0.004507008008658886, -0.006270313169807196, -0.004348310641944408, 0.014586060307919979, -0.030949532985687256, 0.01777411624789238, -0.0034331551287323236, 0.007864341139793396, 0.004133187234401703, 0.0027031467761844397, 0.005311075132340193, 0.012357242405414581, -0.010325915180146694, -0.020186318084597588, -0.03320656344294548, 0.03467363119125366, -0.01469891145825386, -0.003270931076258421, -0.0022235277574509382, 0.00671466626226902, -0.01186351664364338, -0.024446463212370872, 0.004852615762501955, 0.010022626258432865, -0.019057802855968475, -0.023332053795456886, 0.01558761764317751, -0.004852615762501955, 0.00693331565707922, 0.014487314969301224, -0.0022358710411936045, -0.002316982951015234, 0.0038228456396609545, -0.01938224956393242, 0.0007176651852205396, 0.010332968086004257, -0.01328121405094862, -0.004320097621530294, -0.00296940584667027, -0.001545536913909018, -0.04576129466295242, -0.01711111329495907, 0.011651920154690742, 0.015305488370358944, -0.012491254135966301, -0.010713841766119003, -0.002038380829617381, -0.03066740371286869, 0.020567191764712334, -0.011764772236347198, 0.0005532369832508266, 0.007285976782441139, 0.008400386199355125, 0.016109555959701538, -0.007568105589598417, 0.018592288717627525, 0.0005285507068037987, 0.009204452857375145, 0.013605662621557713, 0.013612715527415276, 0.017618944868445396, -0.0020560137927532196, 0.009973254054784775, -0.0070461672730743885, 0.018549969419836998, 0.003290327498689294, -0.011390951462090015, 0.007342402823269367, 0.018183203414082527, 0.013154256157577038, -0.021526429802179337, 0.004686865024268627, -0.01488229539245367, -0.013041405007243156, -0.007539893034845591, 0.008668407797813416, 0.001299555879086256, -0.018028032034635544, 0.01687130331993103, -0.00014117461978457868, 0.014409729279577732, -0.04057012498378754, 0.019255291670560837, -0.01697004958987236, 0.007589265238493681, 0.02192140929400921, 0.007250710856169462, 0.009599433280527592, -0.006661766674369574, 0.0039639100432395935, 0.01606723666191101, -0.02478501759469509, 0.0016513352748006582, 0.03772062435746193, 0.004337730817496777, 0.013443438336253166, 0.009599433280527592, -0.00875304639339447, -0.012928553856909275, 0.009973254054784775, 0.00505363242700696, -0.0005457429215312004, -0.006785198114812374, -0.003436681814491749, 0.015164424665272236, -0.009070442058146, 0.006305579096078873, 0.009712284430861473, -0.016998261213302612, 0.0047679771669209, 0.00789960753172636, 0.0064995428547263145, 0.018860312178730965, 0.006390217691659927, 0.003464894602075219, 0.012843914330005646, -0.005660209339112043, -0.012484200298786163, 0.022866541519761086, -0.026576535776257515, -0.009437208995223045, 0.00734945572912693, 0.010727948509156704, -0.01346459798514843, -0.027070261538028717, -0.006256206892430782, -0.012512413784861565, -0.00013368057261686772, -0.02372703328728676, 0.001048284932039678, 0.011271046474575996, 0.0022235277574509382, 0.00623152032494545, -0.00734945572912693, -0.013330587185919285, -0.017647158354520798, -0.004397682845592499, -0.006242100149393082, 0.0006956238648854196, 0.010502245277166367, -0.0353507399559021, -0.011905836872756481, 0.002385751809924841, -0.007963086478412151, -0.006598287727683783, -0.00029094534693285823, 0.02044023387134075, -0.004552853759378195, -0.0190719086676836, -0.014614272862672806, 0.021328939124941826, -0.007218971382826567, 0.009782817214727402, -0.012420721352100372, 0.020835213363170624, -0.01720985770225525, -0.012625264935195446, 0.02214711345732212, -0.018916737288236618, 0.01030475553125143, 0.023444905877113342, 0.009084547869861126, 0.006351425312459469, 0.0032003987580537796, -0.006679399870336056, 0.009733444079756737, 0.013944217003881931, -0.02121608704328537, 0.0044470555149018764, -0.010177797637879848, -0.01524906326085329, -0.022259963676333427, 0.021173767745494843, 0.0095218475908041, 0.008823579177260399, 0.020355595275759697, -0.00693331565707922, 0.011080609634518623, 0.006093982607126236, -0.008188788779079914, 0.02773326262831688, 0.01579921506345272, 0.008308693766593933, -0.009451315738260746, 0.0077091702260077, 0.021173767745494843, -0.01030475553125143, 0.02673170529305935, 0.006164514925330877, 0.006718192715197802, -0.007561052683740854, 0.029538888484239578, -0.004662178922444582, 0.0062808929942548275, -0.009909775108098984, 0.0063796378672122955, -0.009853349067270756, -0.004217825829982758, -0.005113584920763969, -0.01064330991357565, 0.004598699975758791, -0.021991942077875137, -0.014134653843939304, -0.024841442704200745, 0.01750609278678894, -0.021991942077875137, -0.00652422895655036, -0.012258497066795826, 0.024234866723418236, -0.015686362981796265, -0.018423011526465416, -0.011821197345852852, -0.005847119726240635, -0.0027137266006320715, -0.001343638519756496, 0.01780232973396778, -0.008224055171012878, -0.010777320712804794, -0.006922735832631588, -0.014134653843939304, 0.01570046879351139, -0.007596318610012531, 0.004542273934930563, 0.0048490893095731735, 0.012216177769005299, -0.027140792459249496, -0.00011053719208575785, 0.0074764140881598, -0.019198866561055183, 0.023741140961647034, -0.004732711240649223, 0.005191170610487461, 0.011517909355461597, -0.018549969419836998, -0.015714576467871666, -0.005473299417644739, -0.02509535849094391, 0.0010676812380552292, 0.02431950531899929, 0.03379903361201286, 0.003052281215786934, 0.007956032641232014, -0.019297610968351364, -0.014212239533662796, -0.005903545767068863, -0.0003564080689102411, -0.003193345619365573, 0.004746817518025637, 0.02038380689918995, 0.015107998624444008, -0.00593881169334054, 0.017280390486121178, 0.0071025933139026165, 0.028579650446772575, 0.010777320712804794, -0.010375287383794785, -0.018140884116292, -0.002480970462784171, 0.0029429562855511904, -0.008915270678699017, -0.02077878825366497, 0.011017130687832832, -0.02065183036029339, -0.002156522125005722, -0.01311193685978651, 0.005402767099440098, 0.015883853659033775, -0.004591646604239941, -0.004390629939734936, 0.004171980079263449, 0.011553175747394562, 0.0025038933381438255, 0.012568838894367218, 0.03252945467829704, 0.017534306272864342, -0.015023360028862953, -0.0027243064250797033, -0.014042962342500687, 0.003981543239206076, -0.014473209157586098, -0.018987270072102547, 0.03554823249578476, -0.0005109176854602993, 0.017350923269987106, 0.01870514079928398, 0.0010474033188074827, -0.003196872305124998, 0.009606486186385155, -0.004267198499292135, -0.006781671661883593, -0.005127691198140383, -0.009669965133070946, 0.0073282960802316666, -0.008915270678699017, 0.007017954718321562, 0.016151875257492065, 0.020637722685933113, -0.006302052643150091, 0.0027084366884082556, -0.0014441469684243202, 0.033291202038526535, -0.006566548254340887, 0.0029076901264488697, 0.008816525340080261, -0.013549236580729485, -0.0021142028272151947, -0.007596318610012531, -0.03247302770614624, 0.02312045730650425, -0.010368234477937222, 0.0020278010051697493, -0.026886876672506332, 0.00552972499281168, -0.004831456113606691, 0.02288064733147621, 0.0012616448802873492, 0.0240232702344656, -0.014783550053834915, 0.02793075330555439, -0.014628379605710506, 0.0026114550419151783, -0.008858845569193363, -0.014035909436643124, 0.007730329874902964, 0.010142531245946884, -0.005505038890987635, -0.011962261982262135, -0.0008922324050217867, -0.012350189499557018, -0.004916094709187746, 0.005466246046125889, -0.00681693758815527, -0.009677018970251083, -0.015926172956824303, 0.009500687941908836, -0.01970669813454151, 0.011327472515404224, 0.003115760162472725, 0.01933993026614189, -0.0012880944414064288, 0.008195842616260052, -0.0030699141789227724, 0.005131218116730452, -0.005046579521149397, -0.004633965902030468, 0.025433912873268127, -0.007342402823269367, 0.008915270678699017, 0.004369470290839672, -0.019523315131664276, -0.01606723666191101, 0.0007110527949407697, 0.018225522711873055, 0.026111023500561714, 0.01626472733914852, 0.004415316041558981, 0.020665936172008514, 0.025335168465971947, 0.012180912308394909, -0.01670202612876892, 0.021441791206598282, -0.0021635754965245724, -0.004641019273549318, -0.013739673420786858, 0.017788222059607506, -0.02055308409035206, 0.000774090935010463, -0.0009371967171318829, 0.015093891881406307, -0.027352388948202133, 0.024248972535133362, 0.01047403272241354, 0.005335761234164238, -0.014896402135491371, -0.00942310318350792, 0.020397914573550224, 0.022231752052903175, -0.01657506823539734, -0.003168659284710884, 0.004648072179406881, -0.008830632083117962, -0.0028442111797630787, -0.0004192258056718856, -0.005254649557173252, -0.011207567527890205, 0.009028122760355473, -0.004997206851840019, -0.023176882416009903, -0.010220116935670376, 0.008661354891955853, 0.00016663233691360801, 0.003450788091868162, 0.027380602434277534, 0.006101035978645086, -0.002257030690088868, 0.012970873154699802, -0.007927820086479187, -0.0017950446344912052, -0.00865430198609829, -0.007624531630426645, 0.015009253285825253, -0.0032145052682608366, 0.02080700173974037, 0.01867692731320858, 0.014727124944329262, 0.015192637220025063, -0.001194639247842133, -0.004813822917640209, 0.007829074747860432, 0.012187965214252472, -0.007779702544212341, -0.025603190064430237, -0.0068839434534311295, 0.00044787951628677547, 0.008809472434222698, -5.6343109463341534e-05, -0.0027948387432843447, 0.01189173012971878, -0.003343226620927453, -0.027606304734945297, 0.001518205739557743, 0.024883762001991272, 0.0014882296090945601, -0.006037557031959295, 0.029059268534183502, 0.004891408607363701, -0.009394889697432518, 0.006809884682297707, 0.004436475690454245, 0.013845471665263176, 0.005811853799968958, 0.00852029025554657, -0.000834924983792007, 0.020538978278636932, 0.011687186546623707, 0.029256759211421013, -0.009867455810308456, 0.008252267725765705, -0.002657300792634487, 0.014910507947206497, 0.018832098692655563, 0.02465805970132351, 9.852467337623239e-05, -0.005995237734168768, 0.009698178619146347, 0.0012669347925111651, 0.0034543147776275873, 0.00011461483518360183, -0.0022111847065389156, -0.013147203251719475, -0.012032794766128063, -0.002110676374286413, -0.0029182699508965015, -0.010713841766119003, -0.011814144439995289, 0.0006458105053752661, 0.0001259661075891927, -0.01594027876853943, 0.02044023387134075, 0.016659706830978394, -0.02642136439681053, -0.007141385693103075, 0.007553999312222004, 0.025405701249837875, 0.008858845569193363, 0.006019923835992813, -0.004207246005535126, -0.01286507397890091, 0.0069474224001169205, -0.009818082675337791, -0.015122105367481709, -0.003918063826858997, -0.013253001496195793, 0.0061892010271549225, -0.005663736257702112, 0.0025726621970534325, -0.01847943849861622, 0.028085924685001373, -0.039103053510189056, -0.016885410994291306, -0.011087662540376186, 0.005508565343916416, -0.02058129757642746, 0.012716956436634064, -0.016095450147986412, -0.02832573466002941, 0.008626088500022888, 0.0008512355852872133, 0.0035689296200871468, 0.03698708862066269, -0.011729505844414234, -0.030328849330544472, -0.010579830966889858, 0.002486260375007987, 0.011673079803586006, -0.019664378836750984, -0.005088898818939924, 0.006968582049012184, 0.0030152518302202225, -0.04330677539110184, -0.00833690632134676, 0.0226831566542387, 0.004288358148187399, -0.025603190064430237, 0.027916647493839264, 0.029623527079820633, -0.012533573433756828, -0.012900340370833874, 0.006284419447183609, -0.001087077660486102, 0.006619447376579046, -0.005159430671483278, -0.02578657492995262, -0.0011011840542778373, 0.013528076931834221, -0.007120226044207811, -0.017618944868445396, 0.04595878720283508, 0.0016689683543518186, 0.004810296464711428, 0.03286800906062126, 0.0030134886037558317, 0.004979573655873537, 0.02041202038526535, -0.00020641690935008228, 0.005709582008421421, -0.0009222085936926305, -0.0016680866247043014, -0.00015329734014812857, 0.0012122723273932934, 0.01948099583387375, -0.03487112373113632, -0.004524641204625368, -0.0013789046788588166, 0.016010811552405357, 0.005540304817259312, -0.004831456113606691, -0.010664469562470913, -0.001490874565206468, -0.010191903449594975, 0.01164486724883318, 0.024897869676351547, -0.005907072219997644, -0.031288087368011475, -0.014783550053834915, -0.009331410750746727, -0.009140973910689354, 0.0002411319874227047, 0.011327472515404224, 0.008929377421736717, -0.014938721433281898, 0.010100211948156357, 0.022767797112464905, 0.042883582413196564, 0.00033458715188317, -0.018648715689778328, -0.007772649172693491, -0.011842356994748116, -0.001844417187385261, -0.019593846052885056, -0.004817349836230278, 0.020835213363170624, 0.024799123406410217, 0.012780435383319855, -0.006460750009864569, 0.004662178922444582, -0.01523495651781559, 0.01266053132712841, -0.017633050680160522, -0.016476323828101158, 0.01733681559562683, -0.0012210888089612126, -0.025998171418905258, 0.013104883953928947, -0.003105180338025093, 0.010869013145565987, 0.012336082756519318, 0.009190346114337444, 0.01105944998562336, 0.010636257007718086, 0.008823579177260399, -0.0062456270679831505, -0.0056143635883927345, 0.00013897048484068364, 0.010608043521642685, 0.04023157060146332, -0.010036733001470566, 0.0071025933139026165, -0.0093031981959939, -0.003791106166318059, -0.03501218557357788, -0.0018673401791602373, 0.007730329874902964, 5.1521572459023446e-05, 0.002082463353872299, 0.01804213784635067, -0.00871778093278408, 0.0049760472029447556, 0.012265550903975964, -0.010572778061032295, -0.011588441208004951, -0.004390629939734936, -0.002994092181324959, -0.010347074829041958, 0.016546854749321938, -0.0021388891618698835, 0.004923148080706596, -0.010403500869870186, -0.008047725073993206, 0.004887881688773632, 0.012089219875633717, 0.015347807668149471, -0.00482792966067791, 0.0005466245929710567, 0.016645601019263268, 0.0034472616389393806, -0.005141797941178083, -0.008541449904441833, 0.02034148760139942, 0.008548503741621971, 0.009832189418375492, 0.01329532079398632, 0.010869013145565987, 0.014642486348748207, 0.00933846365660429, -0.02265494503080845, -0.004789136815816164, 0.02097627893090248, 0.01804213784635067, -0.015361914411187172, 0.007342402823269367, -0.0015993177657946944, 0.009747550822794437, -0.02168159931898117, 0.014085281640291214, -0.00833690632134676, 0.0023328526876866817, -0.012639371678233147, -0.012187965214252472, -0.004686865024268627, 0.01924118585884571, 0.003479001112282276, -0.015545298345386982, -0.013894844800233841, -0.016631493344902992, -0.012371349148452282, 0.0003696328494697809, 0.013986536301672459, 0.005575570743530989, -0.004817349836230278, -0.006936842575669289, -0.02228817716240883, 0.011390951462090015, 0.010812587104737759, -0.0016601517563685775, 0.0051488508470356464, -0.02077878825366497, -0.00605518976226449, -0.020623616874217987, -0.003974489867687225, -0.01967848464846611, -0.01941046305000782, 0.006728772539645433, -0.020863426849246025, 0.009162133559584618, 0.001664560055360198, -0.011609600856900215, 0.018423011526465416, 0.008513237349689007, -0.016010811552405357, -0.018493544310331345, -0.004965467378497124, 0.002004877896979451, 0.01630704663693905, 0.004147293511778116, -0.027676837518811226, -0.00587885919958353, -0.001669849967584014, 0.00865430198609829, 0.010742055252194405, 0.013859578408300877, -0.009190346114337444, 0.015361914411187172, 0.008329853415489197, 0.011496749706566334, 0.018183203414082527, -0.0027243064250797033, 0.0020524871069937944, -0.003329120110720396, -0.00893643032759428, -0.017491986975073814, 0.00022294789960142225, 0.0037946326192468405, 0.004249565303325653, -0.0062526799738407135, -0.00948658213019371, 0.009627645835280418, -0.013499864377081394, 0.02873481996357441, 0.004425895866006613, 0.014402676373720169, -0.00027617765590548515, 0.017915179952979088, 0.04243217408657074, 0.0032815109007060528, -0.013852525502443314, 0.008506184443831444, 0.03013135865330696, 0.0059987641870975494, -0.01767536997795105, 0.0010068472474813461, -0.007159018889069557, -0.0037593666929751635, -0.016123661771416664, 0.0009971490362659097, 0.002808945020660758, -0.015319595113396645, 0.0072648171335458755, 0.018888525664806366, -0.0028159983921796083, -0.005194697063416243, 0.016490429639816284, -0.011390951462090015, 0.02976459078490734, 0.003960383590310812, 0.0028159983921796083, 0.008992856368422508, 0.020764682441949844, 0.032162684947252274, 0.014769444242119789, 0.009860401973128319, -0.015192637220025063, 0.014353304170072079, 0.020623616874217987, 0.012822754681110382, -0.006972108501940966, -0.002339906059205532, -0.0154324471950531, 0.01960795372724533, -0.003168659284710884, -0.013217735104262829, 0.009176240302622318, 0.011962261982262135, 0.0023822253569960594, -0.00988861545920372, 0.0008106795721687376, -0.0030240684282034636, 0.011666026897728443, -0.016377577558159828, -0.0015755131607875228, -0.0026414310559630394, -0.007469360716640949, 0.007596318610012531, -0.018154989928007126, -0.020327381789684296, 0.007042640820145607, 0.015023360028862953, -0.013267108239233494, 8.777953189564869e-05, 0.004803243093192577, 0.026618855074048042, 0.012082166969776154, 0.009310251101851463, -0.02656242810189724, 0.005758954677730799, 0.01931171864271164, -0.0048843552358448505, 0.04796190187335014, -0.007617478258907795, -0.0009107470978051424, 0.020835213363170624, -0.010819640010595322, 0.022669050842523575, 0.0021300725638866425, 0.015390126965939999, -0.0023293260019272566, 0.00681693758815527, -0.02091985195875168, -0.008414492011070251, -0.0026061651296913624, 0.01970669813454151, -0.016123661771416664, -0.0024562841281294823, -0.04756692051887512, -0.021822664886713028, -0.004901988431811333, 0.02068004198372364, -0.016377577558159828, 0.010502245277166367], "532e020b-af47-4631-9116-743d24b89552": [-0.03358235955238342, -0.019242113456130028, -0.014462031424045563, 0.014568593353033066, -0.018100373446941376, -0.03717503324151039, 0.00652313744649291, 0.04134618863463402, -0.0001508047425886616, 0.04819662123918533, 0.003090307815000415, -0.012087213806807995, 0.015185132622718811, -0.021023226901888847, 0.012795091606676579, 0.015443927608430386, -0.034404411911964417, 0.006058829836547375, 0.01805470511317253, -0.027569198980927467, 0.061623476445674896, 0.01197304017841816, -0.02689937874674797, 0.0010209052124992013, 0.03586583957076073, -0.015040513128042221, -0.01794814132153988, 0.007668682374060154, -0.04646117985248566, 0.008753335103392601, -0.002616486046463251, 0.008030232973396778, 0.007577343378216028, 0.0048638093285262585, 0.03918449208140373, -0.020262068137526512, 0.0008144407183863223, 0.0181764904409647, -0.04192466661334038, -0.028984956443309784, -0.009994025342166424, 0.04131574183702469, -0.010488778352737427, -0.007706740405410528, -0.02968522161245346, 0.007219598162919283, -0.026199111714959145, -0.010656233876943588, -0.013388796709477901, 0.00622247951105237, 0.044086359441280365, -0.02365683950483799, -0.011691411025822163, 0.017384884878993034, 0.03528735786676407, -0.024159204214811325, 0.00930137000977993, 0.03973252698779106, 0.03321700170636177, -0.0602838359773159, -0.019226890057325363, -0.03385637700557709, -0.006450827233493328, -0.012155718170106411, 0.006237702444195747, 0.018161267042160034, -0.019333451986312866, -0.012901654466986656, -0.037022799253463745, 0.012033932842314243, -0.001313951681368053, 0.018252605572342873, -0.023017464205622673, 0.018754972144961357, 0.04740501567721367, -0.02219541184604168, 0.04987117275595665, 0.017963364720344543, 0.008426036685705185, -0.028284689411520958, 0.025057371705770493, 0.001273039379157126, 0.021693047136068344, -0.0047991108149290085, 0.09566253423690796, 0.019074657931923866, -0.02084054797887802, -0.05452946946024895, -5.0426820962456986e-05, -0.02524005062878132, 0.0003658322966657579, 0.004722995217889547, 0.012414512224495411, -0.01469799131155014, -0.006119722966104746, 0.008395589888095856, 0.026655808091163635, 0.00951449479907751, 0.005320505239069462, -0.03129887953400612, -0.03202959522604942, -0.0024889917112886906, -0.004730606451630592, -0.0020570335909724236, 0.013114779256284237, 0.021830055862665176, 0.019257336854934692, 0.015025289729237556, -0.03473932296037674, 0.033978160470724106, 0.006123528815805912, -0.029593883082270622, 0.006275760475546122, 0.02790411002933979, -0.05449902266263962, -0.042503148317337036, -0.021479923278093338, 0.0018372489139437675, -0.023778624832630157, -0.010306100361049175, 0.019683586433529854, -0.007291908375918865, 0.0232001431286335, 0.01653238572180271, -0.024265766143798828, 0.016151806339621544, 0.013685648329555988, 0.008875120431184769, 0.03269941359758377, 0.012551520951092243, -0.00605121860280633, 0.016288815066218376, 0.03772306814789772, 0.028345581144094467, 0.01524602621793747, -0.025620630010962486, 0.03218182548880577, 0.08768557757139206, -0.013130002655088902, 0.015070958994328976, -0.033399682492017746, -0.02699071727693081, -0.007459363434463739, 0.02196706458926201, -0.013579086400568485, -0.013974889181554317, -0.03285164758563042, 0.04186377674341202, -0.035439588129520416, 0.011965428479015827, -0.047161445021629333, -0.0014766495442017913, -0.010876970365643501, 0.005682055838406086, 0.05245911702513695, -0.004407113883644342, 0.023991748690605164, 0.04439082369208336, -0.013206117786467075, 0.06296312063932419, 0.023124027997255325, -0.04521287605166435, -0.007322354707866907, 0.03814931586384773, 0.05276358127593994, -0.006066441535949707, -0.010724738240242004, 0.01393683161586523, -0.003274888964369893, 0.028573930263519287, 0.009910297580063343, -0.009331815876066685, 0.0381188690662384, 0.004993206821382046, -0.0063062068074941635, -0.01236123126000166, 0.04137663170695305, 0.007885612547397614, 0.005194914061576128, -0.008144407533109188, -0.01685207337141037, 0.01461426354944706, 0.0016631336184218526, -0.007383247837424278, 0.011204268783330917, 0.0025727192405611277, 0.018937649205327034, 0.007729575037956238, -0.0058837635442614555, -0.014568593353033066, -0.023778624832630157, -0.012193775735795498, 0.005286253057420254, -0.016517162322998047, -0.027325628325343132, -0.012985382229089737, 0.01653238572180271, -0.0003251578309573233, 0.0013729415368288755, 0.011843642219901085, -0.0197292547672987, -0.05300715193152428, -0.04591314494609833, 0.04113306105136871, -0.0014157567638903856, 0.02712772600352764, -0.01424129493534565, -0.022545546293258667, 0.028178127482533455, -0.025940317660570145, 0.05547330901026726, -0.03330834209918976, 0.016517162322998047, 0.010724738240242004, -0.014462031424045563, 0.010770407505333424, -0.005114992149174213, 0.043112076818943024, 0.02954821288585663, -0.01805470511317253, -0.0190594345331192, -0.015801671892404556, -0.027919331565499306, -0.006249119993299246, -0.03227316588163376, 0.017963364720344543, -0.023550275713205338, 0.010298488661646843, -0.00598652008920908, -0.020246844738721848, 0.0096591142937541, 0.002959007862955332, 0.02385473996400833, -0.00760778971016407, 0.007139676716178656, 0.04786171391606331, -0.00678193150088191, -0.004258687607944012, -0.006793349049985409, 0.019424792379140854, 0.006477467715740204, 0.03020281158387661, -0.01283315010368824, -0.03172513097524643, -0.007021696772426367, 0.02291090227663517, 0.016973858699202538, 0.06692114472389221, 8.17651889519766e-05, 0.009506883099675179, -0.0040912325493991375, 0.0014585719909518957, -0.012810315005481243, -0.0036764005199074745, -0.025483621284365654, 0.05081501230597496, 0.037479497492313385, -0.013586698099970818, 0.016973858699202538, 0.00045170061639510095, -0.005069322418421507, -0.0035070425365120173, 0.00908824522048235, 0.0608014240860939, 0.024159204214811325, -0.016730286180973053, 0.021053673699498177, 0.017521893605589867, 0.01659327745437622, 0.01333551574498415, 0.03821020945906639, -0.03046160563826561, -0.01590823382139206, 0.037083692848682404, -0.009133914485573769, -0.015177521854639053, 0.0005047439481131732, -0.014058616943657398, 0.014149956405162811, -0.0034442469477653503, -0.03982386738061905, -0.008502151817083359, 0.051180366426706314, -0.0005470834439620376, -0.008235746063292027, 0.048470638692379, 0.0033300730865448713, -0.013000604696571827, -0.03364325314760208, -0.004209212493151426, 0.01109770592302084, 0.0005708696553483605, -0.0035279744770377874, 0.04031100869178772, 0.01560377050191164, -0.0006369954207912087, -0.01653238572180271, 0.014188013970851898, -0.030857408419251442, 0.005636386573314667, -0.0075278677977621555, 0.005172078963369131, 0.0019447626546025276, -0.030507273972034454, 0.01604524254798889, -0.016669394448399544, 0.05526018515229225, 0.05395098775625229, -0.027066834270954132, 0.03516557067632675, 0.024829024448990822, -0.03218182548880577, -0.018846310675144196, 0.0052139428444206715, 0.010397439822554588, 0.03732726350426674, -0.022347643971443176, -0.03623119369149208, -0.00019480926857795566, -0.02715817280113697, -0.047130998224020004, 0.018024258315563202, -0.044329933822155, 0.025909870862960815, 0.033978160470724106, -0.056082237511873245, 0.03805797919631004, -0.010481166653335094, 0.013000604696571827, -0.03562226518988609, -0.02187572605907917, -0.0389409214258194, -0.007459363434463739, -0.005457513965666294, -0.036992352455854416, -0.025590183213353157, -0.02256076969206333, -0.06071008741855621, -0.020277289673686028, -0.0033814513590186834, -0.012757034040987492, -0.028467366471886635, -0.004848586395382881, 0.00917197298258543, -0.015634216368198395, -0.009468824602663517, 0.009857016615569592, 0.005217748694121838, -0.001068477751687169, 0.020977556705474854, 0.0008819936192594469, -0.01937912218272686, 0.04630894586443901, -0.008380366489291191, 0.00422824127599597, -0.041498418897390366, -0.014751272276043892, 0.029959239065647125, 0.02735607512295246, 0.005704890936613083, 0.0006350924959406257, -0.03623119369149208, 0.025103041902184486, -0.005933238659054041, -0.005621163174510002, 0.022149743512272835, 0.012315561063587666, -0.006644922774285078, -0.025300944223999977, -0.02699071727693081, -0.005350951571017504, -0.004783887881785631, -0.020520862191915512, 0.009499271400272846, 0.009126302786171436, -0.05349429324269295, 0.035957176238298416, 0.008890343829989433, -0.009567775763571262, 0.02035340666770935, -0.015969127416610718, -0.009522105567157269, -0.014119509607553482, -0.002846736693754792, 0.03927583247423172, 0.01274942234158516, 0.04040234908461571, -0.03836243972182274, -0.028010671958327293, -0.029441650956869125, -0.04734412580728531, -0.001406242256052792, -0.03431307151913643, -0.009248088113963604, -0.033917270600795746, 0.008205300197005272, 0.014652321115136147, 8.461953257210553e-05, 0.004821945913136005, -0.02274344675242901, -0.01768934726715088, -0.010519225150346756, -0.006336653139442205, -0.00565541535615921, 0.011638129130005836, -0.02991357073187828, -0.015550489537417889, 0.021114565432071686, 0.005731531418859959, 0.027721431106328964, 0.04158975929021835, -0.01688251830637455, 0.006058829836547375, 0.010823688469827175, 0.03860601410269737, 0.022865232080221176, -0.009750453755259514, 0.04429948702454567, -0.04789216071367264, -0.0012064379407092929, 0.031999148428440094, 0.037509944289922714, 0.003025609301403165, 0.045517340302467346, -0.010405050590634346, 0.014682767912745476, 0.01805470511317253, 0.006039801053702831, 0.02348938398063183, 0.015565712936222553, 0.01587778888642788, 0.029989685863256454, -0.011128152720630169, -0.010892192833125591, -0.02158648520708084, -0.030568167567253113, -0.005750560201704502, -0.005636386573314667, 0.008966459892690182, -0.021251574158668518, -0.013502970337867737, -0.00037082741619087756, -0.012688529677689075, 0.0009276631753891706, -0.030324596911668777, -0.03318655490875244, -0.028604375198483467, 0.02144947648048401, -0.02974611520767212, 0.0058837635442614555, 0.021342914551496506, 0.06201928108930588, -0.023732954636216164, 0.009834181517362595, -0.0008605860057286918, -0.0007202472188510001, 0.03279075399041176, -0.004148319363594055, 0.027538752183318138, -0.06813900172710419, -0.0020227814093232155, 0.003942806273698807, 0.026320897042751312, 0.004433754365891218, -0.020596977323293686, -0.03285164758563042, 0.025711970403790474, -0.002664058469235897, 0.011135764420032501, 0.03918449208140373, 0.009263311512768269, -0.006488885264843702, -0.01246018148958683, 0.022058403119444847, 0.0027820381801575422, 0.002281575696542859, -0.016608500853180885, -0.004703965969383717, 0.004174960311502218, 0.025285720825195312, 0.0005523163708858192, -0.026107773184776306, 0.02951776795089245, 0.017582785338163376, -0.02291090227663517, 0.010458332486450672, -0.02138858288526535, -0.006728650536388159, -0.018009034916758537, 0.02977656200528145, 0.00624531414359808, -0.0020779655314981937, 0.008266192860901356, 0.04850108548998833, 0.014188013970851898, -0.0012777965748682618, -0.0012216611066833138, -0.01627359166741371, 0.02096233330667019, -0.02348938398063183, 0.004053174518048763, -0.03434351831674576, 0.03285164758563042, -0.028924062848091125, -0.027980225160717964, 0.016243144869804382, -0.018785417079925537, 0.006466050166636705, 0.0041254847310483456, -0.003634536871686578, -0.03266896679997444, 0.02119068242609501, -0.03623119369149208, 0.004939925391227007, 0.01032132375985384, 0.01604524254798889, -0.00977328885346651, -0.01211765967309475, 0.03775351494550705, 0.015580936335027218, -0.00882945116609335, -0.03690101578831673, -0.021175459027290344, 0.010389828123152256, -0.011904535815119743, 0.013815046288073063, -0.020977556705474854, -0.015618993900716305, 0.030278926715254784, -0.025620630010962486, -0.010641010478138924, -0.0019285880262032151, -0.020140280947089195, 0.007531673647463322, 0.03961074352264404, 0.004696354269981384, -0.01584734208881855, 0.01860274001955986, -0.011219492182135582, -0.021479923278093338, -0.003505139844492078, 0.019226890057325363, -0.021114565432071686, -0.023869963362812996, -0.0019618887454271317, 0.020916664972901344, -0.004483229946345091, 0.00674006761983037, -0.004410919733345509, 0.01274942234158516, -0.03772306814789772, 0.037570834159851074, -0.007992175407707691, 0.020764432847499847, 0.020459968596696854, -0.02566630020737648, -0.017704570665955544, 0.011044424958527088, -0.006561195477843285, -0.026792816817760468, -0.02116023562848568, -0.001969500444829464, 0.010998755693435669, 0.011622906662523746, -0.010298488661646843, 0.011044424958527088, -0.033521465957164764, 0.010686679743230343, 0.018009034916758537, 0.015124239958822727, 0.01954657770693302, -0.013754152692854404, 0.03510467708110809, 0.005111186299473047, 0.0006997910677455366, 0.021556038409471512, -0.0018962387694045901, -0.010435497388243675, -0.052124205976724625, 0.01211765967309475, 0.02213452011346817, -0.0030046773608773947, 0.037509944289922714, -0.013548639602959156, 0.03312566503882408, 0.014629486948251724, 0.010618175379931927, -0.02135813608765602, -0.010039694607257843, 0.008136795833706856, 0.004966565873473883, -0.0075583141297101974, -0.011409781873226166, -0.012559132650494576, -0.03775351494550705, 0.016517162322998047, 0.003025609301403165, 0.0008724791114218533, 0.018907202407717705, 0.02747786045074463, 0.018496176227927208, 0.016547609120607376, -0.002064645290374756, -0.03775351494550705, -0.05532107502222061, 0.024280989542603493, -0.023763401433825493, 0.03638342767953873, 0.010998755693435669, 0.03202959522604942, 0.031040087342262268, -0.004650685004889965, 0.03467842936515808, -0.016471492126584053, 0.02300224080681801, -0.004559345543384552, 0.007893224246799946, 0.03227316588163376, 0.013837880454957485, -0.003958029672503471, 0.05440768599510193, -0.011120541021227837, 0.033947717398405075, -0.01794814132153988, 0.006119722966104746, 0.03884958475828171, -0.04128529503941536, 0.008623938076198101, -0.010100587271153927, 0.023504607379436493, -0.020231621339917183, 0.0034975281450897455, -0.00879900436848402, -0.009286146610975266, 0.012658082880079746, -0.01053444854915142, 0.03023325651884079, 0.004749635700136423, -0.009286146610975266, -0.008821839466691017, -0.0053128935396671295, -0.0024090700317174196, -0.0035641295835375786, 0.01659327745437622, -0.013731318525969982, 0.009103468619287014, 0.014134733006358147, 0.014926338568329811, 0.010298488661646843, 0.009704784490168095, -0.022773893550038338, -0.005898986477404833, -0.011257549747824669, 0.03458708897233009, 0.01733921468257904, -0.003684012219309807, -0.01042027398943901, 0.00793889444321394, 0.01066384557634592, -0.015025289729237556, 0.03315611183643341, -0.05169795826077461, 0.019592246040701866, 0.01944001577794552, 0.01458381675183773, 0.007151093799620867, -0.02262166142463684, 0.00828141625970602, 0.012292726896703243, 0.022865232080221176, -0.0005090254708193243, -0.009263311512768269, -0.008426036685705185, -0.0024851858615875244, 0.01550482027232647, -0.013685648329555988, 0.0016821626340970397, 0.012718976475298405, -0.011021589860320091, -0.01989671029150486, -0.023382822051644325, -0.05629536136984825, -0.015999574214220047, 0.015969127416610718, -0.04186377674341202, -0.007535479497164488, 0.008760946802794933, 0.016836849972605705, -0.028543483465909958, -0.030065802857279778, -0.006998862139880657, 0.009019740857183933, -0.007162511348724365, 0.018511399626731873, -0.008365143090486526, -0.01831349916756153, 0.00671723298728466, 0.002176916226744652, 0.015832118690013885, -0.018770193681120872, -0.034465305507183075, 0.011295607313513756, -0.008989294059574604, 0.001952374237589538, 0.033460572361946106, 0.014933950267732143, -0.012094825506210327, -0.04210734739899635, -0.0016393474070355296, -0.01185886561870575, -0.003505139844492078, 0.006363293621689081, 0.00019647431327030063, 0.012422123923897743, -0.0018648408586159348, 0.01172946859151125, -0.023869963362812996, 0.024220097810029984, -0.0014909212477505207, 0.04168109595775604, -0.011531567201018333, 0.034465305507183075, -0.025042148306965828, -0.037053246051073074, -0.02696027047932148, 0.01653238572180271, 0.01406622864305973, 0.004715383518487215, 0.009582999162375927, 0.015063347294926643, 0.020916664972901344, -0.014857834205031395, 0.01966836303472519, 0.004673519637435675, 0.012871207669377327, 0.004932313691824675, -0.0031036280561238527, 0.006576418410986662, 0.07599417120218277, 0.004780082032084465, 0.014423973858356476, -0.010313712060451508, 0.03519601747393608, -0.03726636990904808, -0.01249062828719616, -0.008471705950796604, 0.01779591105878353, -0.008753335103392601, 0.020246844738721848, -0.0072652678936719894, 0.01694341190159321, -0.05255045369267464, 0.01892242580652237, 0.020048942416906357, 0.005373786203563213, 0.006789543200284243, 0.03379548341035843, -0.01372370682656765, 0.03519601747393608, 0.02187572605907917, 0.003788671689108014, 0.0006217721966095269, 0.006800960749387741, -0.014926338568329811, -0.011128152720630169, 0.016669394448399544, 0.0239765252918005, 0.005579299293458462, 0.012163329869508743, 0.030065802857279778, 0.054590363055467606, -0.005552658811211586, 0.01262002531439066, 0.025818532332777977, 0.006127334199845791, -0.0438123419880867, -0.0016783567843958735, 0.014073840342462063, -0.0024052641820162535, -0.032942984253168106, -0.018252605572342873, -0.04643073305487633, 0.019988050684332848, -0.006131140049546957, -0.004555539693683386, -0.013388796709477901, 0.027310404926538467, 0.012817926704883575, -0.02446366846561432, -0.001933345221914351, -0.001883869874291122, -0.008859897032380104, 0.006808571983128786, -0.0008753334986977279, 0.0031321714632213116, 0.010016859509050846, 0.0014357372419908643, -0.0015879691345617175, 0.002715436741709709, -0.009004517458379269, 0.017095644026994705, -0.0024319046642631292, 0.030674729496240616, 0.016060465946793556, 0.012041544541716576, -0.03769262135028839, 0.010153868235647678, -0.013990112580358982, -0.03522646427154541, 0.009955966845154762, 0.00637471117079258, -0.0024509336799383163, -0.003701138310134411, 0.017780687659978867, -0.023245813325047493, -0.011105317622423172, 0.009826569817960262, 0.013952055014669895, 0.023809071630239487, -0.010526836849749088, -0.017004303634166718, -0.003137880237773061, 0.018907202407717705, -0.0001726880727801472, 0.0029228527564555407, -0.015101405791938305, 0.016258368268609047, -0.01313761342316866, 0.003339587477967143, -0.01539064571261406, -0.0190594345331192, -0.034556642174720764, -0.005796229932457209, 0.0353178046643734, 0.005503183696419001, 0.038088422268629074, -0.004494647029787302, -0.0024414192885160446, -0.0379057452082634, 0.019424792379140854, -0.016060465946793556, -0.04545644670724869, 0.0014376400504261255, 0.004742024000734091, 0.027462637051939964, 0.0025061178021132946, 0.004867615178227425, 0.0014909212477505207, 0.028041118755936623, 0.024448445066809654, 0.01883108727633953, -0.018587516620755196, 0.05087590590119362, 0.011691411025822163, 0.0034366354811936617, 0.009415543638169765, -0.008015010505914688, -0.0012159523321315646, -0.005571688059717417, 0.01639537699520588, 0.021205905824899673, 0.004281522240489721, -0.018480954691767693, -0.009118691086769104, -0.011805584654211998, 0.010085363872349262, 0.01172946859151125, -0.016227921470999718, 0.0058913747780025005, 0.01957702450454235, 0.017491446807980537, 0.008738111704587936, 0.04378189891576767, -0.013130002655088902, -0.000929090369027108, -0.012779869139194489, 0.00934703927487135, 0.00024345213023480028, -0.03382593020796776, -0.008677219040691853, -0.023809071630239487, 0.002015169942751527, -0.013502970337867737, 0.006184421479701996, -0.01645626872777939, 0.019881486892700195, 0.030020132660865784, -0.016501938924193382, -0.00031421618768945336, 0.009415543638169765, -0.012581967748701572, 0.033917270600795746, -0.008464094251394272, -0.0332474485039711, -0.018465731292963028, -0.0034195093903690577, 0.007984563708305359, -0.005042681936174631, -0.012208999134600163, -0.012825538404285908, 0.016760732978582382, -0.03187736123800278, -0.008875120431184769, 0.013152836821973324, 0.027173396199941635, -0.029822230339050293, 0.01980537176132202, -0.020079389214515686, 0.024798577651381493, -0.026320897042751312, 0.007546897046267986, 0.02469201572239399, -0.006226284895092249, -0.01934867538511753, 0.03717503324151039, 0.008235746063292027, 0.0036174107808619738, -0.023017464205622673, -0.0028029701206833124, -0.012247057631611824, 0.03574405238032341, 0.003636439796537161, 0.01714131236076355, -0.003853370202705264, -0.03312566503882408, -0.009895074181258678, -0.043020736426115036, 0.0006888493662700057, 0.010610563680529594, 0.01740010641515255, -0.029563436284661293, 0.0005765783716924489, 0.013624755665659904, 0.0035489064175635576, 0.020018495619297028, -0.02122112736105919, -0.03467842936515808, -0.01280270330607891, -0.04119395464658737, -0.019135551527142525, -0.0035298774018883705, -0.007451752200722694, 0.009750453755259514, -0.021662600338459015, -0.014987231232225895, -0.021601708605885506, -0.004563151393085718, 0.024417998269200325, 0.01054967101663351, 0.0004528899444267154, -0.00977328885346651, 0.03239494934678078, 0.0021921393927186728, 0.0012825538869947195, 0.02093188837170601, 0.022210635244846344, -0.013320292346179485, -0.012894042767584324, 0.018968096002936363, 0.005107380449771881, -0.00452889921143651, -0.01966836303472519, -0.01419562567025423, 0.009879850782454014, -0.012338396161794662, 0.027782322838902473, -0.03184691444039345, 0.009834181517362595, -0.03912360221147537, -0.0025365641340613365, -0.02061220072209835, -0.005286253057420254, -0.01338118501007557, -0.01630403846502304, -0.02106889709830284, -0.02641223557293415, -0.0412244014441967, 0.0015327850123867393, -0.036535657942295074, 0.016517162322998047, 0.016669394448399544, -0.03072039969265461, -0.003939000889658928, -0.04314252361655235, -0.000518064247444272, -0.0004904721863567829, -0.017415329813957214, 0.01785680279135704, -0.02388518676161766, 0.015725556761026382, 0.019303007051348686, -0.0043500266037881374, 0.008722888305783272, 0.011059648357331753, 0.014766495674848557, -0.021266797557473183, -0.017354438081383705, -0.02750830538570881, 0.0005304330843500793, -0.03763172775506973, 0.004235852975398302, -0.005750560201704502, -0.006218673661351204, 0.056173574179410934, 0.008707664906978607, 0.00279535842128098, 0.032486289739608765, 0.005773395299911499, 0.006690592505037785, 0.02288045547902584, -0.011912146583199501, -0.010732349939644337, 0.01805470511317253, -0.02006416581571102, -0.03336923569440842, 0.010770407505333424, 0.031938254833221436, -0.05693473294377327, -0.007291908375918865, 0.049049120396375656, -0.0332474485039711, -0.006161586381494999, 0.0031987729016691446, -0.019759701564908028, -0.013419242575764656, 0.0021084118634462357, -0.005366174969822168, -0.018648408353328705, 0.00201707286760211, -0.006477467715740204, -0.03123798780143261, -0.02032295987010002, 0.005906598176807165, -0.015025289729237556, -0.0024109729565680027, -0.01918121986091137, 0.011836031451821327, -0.051576171070337296, -0.03075084649026394, -0.020886218175292015, 0.025331389158964157, -0.009210030548274517, -0.01779591105878353, 0.001281602424569428, 0.026062102988362312, -0.004498452879488468, 0.014378303661942482, -0.02336759865283966, 0.013929219916462898, -0.0026240975130349398, 0.0031664236448705196, -0.006336653139442205, -0.010861746966838837, 9.437189146410674e-05, -0.015801671892404556, -0.007166317198425531, -0.00641657505184412, 0.022119296714663506, -0.006530749145895243, 0.013837880454957485, 0.0045403167605400085, -0.044025469571352005, 0.02735607512295246, -0.010138644836843014, -0.012437347322702408, -0.005491766147315502, -0.030735623091459274, -0.016836849972605705, 0.018039481714367867, -0.008601102977991104, -0.009590609930455685, 0.012125271372497082, 0.012368842959403992, -0.015169910155236721, -0.012696141377091408, 0.03556137531995773, 0.013373573310673237, 0.012505851686000824, 0.018617963418364525, -0.01246018148958683, -0.015862565487623215, 0.005385203752666712, 0.0045707630924880505, 0.005522212479263544, -0.04137663170695305, -0.00015484839968848974, 0.007208181079477072, 0.00023155900998972356, 0.013023439794778824, -0.0035774498246610165, -0.023047911003232002, 0.0040912325493991375, 0.007524061948060989, 0.014393527060747147, -0.014271741732954979, 0.0043195802718400955, -0.0022758671548217535, 0.03260807693004608, 0.015489596873521805, -0.014393527060747147, -0.012292726896703243, -0.007832331582903862, 0.005423261784017086, 0.01448486652225256, 0.03613985702395439, 0.033430129289627075, -0.008654383942484856, 0.0008092077332548797, -0.016867294907569885, 0.01070951484143734, 0.02495080977678299, 0.009971190243959427, 0.001585114747285843, 0.008760946802794933, 0.010998755693435669, 0.0047648586332798, 0.0052481950260698795, -0.009019740857183933, -0.012901654466986656, 0.004677325487136841, 0.012064378708600998, -0.04028056189417839, -0.020262068137526512, -0.006005548872053623, -0.03000490926206112, -0.012224222533404827, 0.003999893553555012, 0.013518193736672401, 0.00917197298258543, 0.022317197173833847, 0.016989080235362053, -0.020627424120903015, 0.04460395127534866, -0.015230802819132805, 0.0036973324604332447, -0.01866363175213337, -0.012855985201895237, 0.017293544486165047, -0.009666725993156433, 0.019272560253739357, -0.01578644849359989, -0.004053174518048763, 0.009811346419155598, -0.0077143521048128605, -0.007839943282306194, -0.027767101302742958, -0.029502544552087784, -0.01330506894737482, 0.019531354308128357, -0.011189045384526253, 0.0008263338240794837, -0.02624478191137314, 0.0024718656204640865, 0.009697172790765762, -0.013198507018387318, -0.031040087342262268, -0.004068397916853428, -0.0024280990473926067, -0.0176589023321867, -0.004468006547540426, -0.005723919719457626, -0.00990268588066101, 0.01567988656461239, -0.018267828971147537, -0.001861986587755382, -0.001965694595128298, 0.01587778888642788, -0.012110048905014992, 0.0012054864782840014, -0.014644709415733814, -0.0008529744227416813, 0.009484048001468182, 0.0012939712032675743, -0.00040270097088068724, -0.009255699813365936, 0.03020281158387661, -0.03787529841065407, -0.026579691097140312, -0.015185132622718811, 0.012970158830285072, 0.0009680998045951128, -0.006009354721754789, 0.010009247809648514, 0.0008377512567676604, -0.02096233330667019, 0.006964609958231449, 0.0074631692841649055, 0.004327191971242428, 0.024874694645404816, 0.044086359441280365, 0.020886218175292015, -0.00871527660638094, -0.03172513097524643, -0.0016012893756851554, 0.0055336300283670425, -0.022012734785676003, -0.004460394848138094, -0.01283315010368824, 0.008989294059574604, 0.014545759186148643, 0.0038895253092050552, -0.00754309119656682, -0.015223191119730473, 0.0010399342281743884, -0.01762845553457737, -0.031999148428440094, -0.020170727744698524, -0.004197794944047928, -0.02213452011346817, -0.0348002128303051, -0.041102614253759384, 0.021373359486460686, -0.0068846880458295345, -0.01131083071231842, -0.02534661255776882, 0.011386946775019169, 0.0030122888274490833, -0.030552944168448448, 0.012894042767584324, 0.0007706740288995206, 0.006192032713443041, 0.0005213943077251315, 0.03218182548880577, 0.004780082032084465, -0.01058011781424284, -0.0007145385025069118, 0.009697172790765762, 0.017872026190161705, -0.013761764392256737, -0.030111471191048622, 0.009415543638169765, 0.016517162322998047, 0.0016954828752204776, 0.03620074689388275, 0.019972827285528183, 0.004426142666488886, -0.014705602079629898, -0.014142344705760479, -0.013601921498775482, 0.01194259338080883, -0.014675156213343143, -0.0049208966083824635, -0.01633448339998722, -0.02135813608765602, 0.020307736471295357, 0.020490415394306183, -0.032882094383239746, 0.00322921946644783, -0.006165392231196165, 0.025453174486756325, -0.00036202650517225266, -0.008555433712899685, 0.0025517873000353575, -0.020794879645109177, -0.020566530525684357, -0.014127121306955814, -0.01969880983233452, 0.03556137531995773, 0.004806722514331341, -0.0042130183428525925, -0.018237382173538208, 0.033978160470724106, 0.02560540661215782, 0.002658349694684148, -0.06177571043372154, -0.00299326004460454, 0.013662814162671566, -0.007010279688984156, 0.0067552910186350346, -0.013365961611270905, -0.00643940968438983, -0.014522924087941647, 0.013365961611270905, 0.013442077673971653, 0.005008429754525423, 0.012452569790184498, -0.021769162267446518, -0.009986413642764091, -0.010184315033257008, 0.006032189354300499, -0.021373359486460686, 0.032486289739608765, 0.02787366323173046, -0.011851253919303417, -0.008479317650198936, -0.004232047125697136, 0.02035340666770935, 0.0038628848269581795, 0.02609254978597164, -0.022058403119444847, 0.0017230749363079667, 0.002085577230900526, -0.0027877469547092915, 0.03422173485159874, -0.028406474739313126, 0.0049551487900316715, -0.0029133381322026253, 0.0012416414683684707, 0.0051834965124726295, 0.016699841246008873, -0.03367369994521141, 0.01966836303472519, -0.01338118501007557, -0.013990112580358982, -0.0003311044129077345, 0.007775244768708944, 0.0018477147677913308, 0.00459359772503376, 0.02116023562848568, -0.01837439090013504, 0.001215000986121595, 0.006016966421157122, -0.019683586433529854, 0.008966459892690182, -0.023641616106033325, -0.010694291442632675, 0.008129184134304523, -0.02903062477707863, 0.008395589888095856, -0.02038385346531868, 0.016775956377387047, 0.007143482565879822, 0.018968096002936363, -0.00743652880191803, -0.036474764347076416, 0.02520960383117199, -0.013685648329555988, -0.0042130183428525925, 0.015999574214220047, 0.02207362651824951, 0.021145012229681015, 0.0072995200753211975, -0.01560377050191164, -0.019531354308128357, -0.008524986915290356, 0.01560377050191164, -0.014477254822850227, 0.0017792104044929147, 9.675051114754751e-05, -0.040493689477443695, -0.0034176064655184746, -0.013548639602959156, -0.0002916192461270839, 0.02971566841006279, 0.006660146173089743, 0.014690379612147808, 0.005252000875771046, -0.02222585864365101, 0.002528952667489648, -0.01283315010368824, -0.01461426354944706, -0.01207199040800333, 0.003139783162623644, 0.013038663193583488, -0.004410919733345509, 0.009392708539962769, -0.024357106536626816, -0.005510794930160046, -0.004780082032084465, 0.036474764347076416, 0.018009034916758537, -0.04131574183702469, -0.01788724958896637, 0.013487746939063072, 0.015725556761026382, 0.0179176963865757, -0.009423155337572098, -0.01762845553457737, 0.017247876152396202, -0.01424129493534565, -0.02793455496430397, 0.012140494771301746, 0.0008225280325859785, 0.00598652008920908, -0.0022054598666727543, -0.03132932633161545, 0.002331051044166088, 0.0064622447825968266, 0.017217429354786873, -0.0005946559249423444, 0.020277289673686028, 0.009857016615569592, 0.01244495902210474, 0.002083674306049943, 0.02546839788556099, -0.005038876086473465, -0.007992175407707691, 0.013708483427762985, -0.010306100361049175, -0.004867615178227425, -0.025940317660570145, 0.012056767009198666, 0.03026370331645012, 0.017278321087360382, 0.008783780969679356, 0.005240583326667547, -0.03878869116306305, -0.028787054121494293, 0.012483016587793827, 0.023580722510814667, 0.00390094262547791, -0.015421092510223389, 0.016608500853180885, 0.011158598586916924, -0.020718762651085854, -0.008441259153187275, -0.009636280126869678, 0.0029875512700527906, 0.009453601203858852, -0.005864734295755625, 0.01348013523966074, -0.016349706798791885, 0.030020132660865784, -0.011775137856602669, 0.022012734785676003, 0.01740010641515255, 0.00650410819798708, 0.00129016546998173, 0.017506670206785202, -0.012977770529687405, -0.03187736123800278, -0.03586583957076073, -0.0005294816219247878, -0.0016317358240485191, 0.00403414573520422, -0.015999574214220047, -0.009232865646481514, 0.00038842923822812736, -0.009963578544557095, 0.0013339321594685316, 0.019303007051348686, -0.007763827219605446, -0.017613232135772705, -0.02638179063796997, 0.010458332486450672, -0.05081501230597496, -0.015695109963417053, -0.006195838563144207, 0.008212911896407604, -0.01834394596517086, 0.009666725993156433, 0.0004754868568852544, 0.036961909383535385, -0.005168273579329252, 0.035074230283498764, -0.009727618657052517, -0.045974038541316986, -0.010595341213047504, 0.00631001265719533, 0.019272560253739357, -0.03330834209918976, -0.01995760388672352, 0.003866690443828702, -0.011828419752418995, 0.043081630021333694, -0.0061121112667024136, -0.01808515004813671, -0.015984350815415382, -0.010641010478138924, -0.014941561967134476, 0.003798186080530286, -0.02058175392448902, 0.008760946802794933, -0.01866363175213337, -0.009468824602663517, 0.01006252970546484, -0.013784599490463734, 0.004072203766554594, 0.012422123923897743, -0.008623938076198101, 0.0020570335909724236, 0.021571261808276176, -0.016958635300397873, 0.005918015725910664, 0.0014585719909518957, -0.024768130853772163, -0.01980537176132202, -0.024265766143798828, -0.010024471208453178, -0.01096830889582634, -0.021479923278093338, 0.015177521854639053, -0.01581689529120922, 0.010268042795360088, -0.003758225357159972, -0.002121732337400317, 0.01181319635361433, -0.006016966421157122, -0.023763401433825493, 0.009149137884378433, 0.022378090769052505, 0.023063134402036667, 0.0007606838480569422, 0.00013451116683427244, -0.005073128268122673, -0.021464699879288673, 0.03257763013243675, 0.0274474136531353, 0.0035013339947909117, -0.0003406188916414976, 0.009598221629858017, -0.021479923278093338, 0.0030865019652992487, 0.01338118501007557, -0.018998542800545692, -0.011927369982004166, 0.007447946351021528, 0.02974611520767212, -0.024494115263223648, -0.021784385666251183, -0.023306705057621002, 0.00539662130177021, -0.015634216368198395, 0.010443109087646008, 0.00019005202921107411, 0.005408038385212421, -0.010336547158658504, 0.011820808053016663, -0.011889312416315079, 0.015421092510223389, 0.0013586698332801461, 0.019972827285528183, -0.012193775735795498, 0.014835000038146973, -0.0036097990814596415, -0.021799609065055847, 0.03589628264307976, -0.010846523568034172, 0.024448445066809654, -0.011402170173823833, 0.013921608217060566, 0.02761486917734146, 0.00866960734128952, -0.01714131236076355, -0.013236564584076405, -5.753295772592537e-05, -0.004224435426294804, 0.002909532282501459, -0.016517162322998047, -0.017811132594943047, 0.010960697196424007, 0.016227921470999718, -0.03982386738061905, -0.00648127356544137, -0.00036559446016326547, 0.014271741732954979, -0.009004517458379269, -0.0184352844953537, 0.02813245728611946, -0.003786768764257431, -0.006203450262546539, -0.013875938951969147, -0.001619366928935051, 0.0037106527015566826, -0.009567775763571262, -0.023839516565203667, 0.020475191995501518, -0.007817108184099197, -0.00897407066076994, -0.005088351666927338, -0.0011893118498846889, -0.014203237369656563, 0.012977770529687405, -0.004738218151032925, -0.0012483017053455114, 0.007322354707866907, -0.041498418897390366, -0.009468824602663517, -0.002844833768904209, 0.004471812397241592, 0.014477254822850227, 0.02219541184604168, 0.01432502269744873, -0.006382322870194912, 0.009750453755259514, -0.007109230384230614, -0.0012911169324070215, 0.006934163626283407, 0.002745883073657751, -0.01714131236076355, -0.002578428015112877, -0.010519225150346756, 0.055595092475414276, 0.014043393544852734, 0.022926125675439835, 0.015177521854639053, 0.017491446807980537, -0.013952055014669895, -0.00841081328690052, 0.02038385346531868, 0.020490415394306183, -0.001097021158784628, 0.0030351236928254366, -0.014545759186148643, -0.007124453317373991, -0.005560270510613918, -0.016928188502788544, 0.011158598586916924, 0.005708696786314249, 0.03711413964629173, -0.006424186751246452, 0.0271886195987463, 0.02696027047932148, -0.00312265707179904, -0.0006398497498594224, 0.012855985201895237, -0.015618993900716305, 0.004951342940330505, 0.015276472084224224, 0.021205905824899673, 0.0013177574146538973, 0.011257549747824669, -0.002715436741709709, -0.00012547239020932466, -0.008996905758976936, -0.0015489596407860518, 0.010222372598946095, 0.014089063741266727, -0.0014138538390398026, 0.018754972144961357, 0.0042853280901908875, 0.020079389214515686, 0.0017316379817202687, -0.00930137000977993, 0.024387551471590996, 1.198974950966658e-05, 0.0024851858615875244, 0.004369055852293968, 0.014507700689136982, -0.005742948967963457, -0.0006802863208577037, 0.007406082469969988, -0.027340851724147797, -0.01762845553457737, -0.005107380449771881, 0.006519331596791744, 0.012886431068181992, -0.01066384557634592, 0.019851041957736015, -0.007295714225620031, 0.01020714920014143, 0.00658783596009016, -0.004582180641591549, -0.0039275833405554295, -0.0290001779794693, -0.037022799253463745, 0.007752410136163235, -0.01736966148018837, 0.0015270763542503119, 0.002707825042307377, 0.0033452962525188923, 0.00559071684256196, -0.00841081328690052, 0.02443322166800499, 0.019790148362517357, -0.005438485182821751, -0.007946506142616272, 0.023565499112010002, -0.0015213676961138844, 0.0019580828957259655, 0.013586698099970818, 0.01432502269744873, 0.013373573310673237, 0.0006217721966095269, -0.008890343829989433, -0.007421305403113365, -0.003586964448913932, -0.0075849550776183605, 0.010070140473544598, -0.0051187979988753796, 0.017476223409175873, -0.027553975582122803, -0.005472737364470959, -0.004502258729189634, 0.010937863029539585, 0.00734899565577507, 0.00921764224767685, 0.01398250088095665, -0.0005323359509930015, 0.0001861272903624922, 0.030735623091459274, -0.0054422905668616295, -0.0007083541131578386, 0.00028781345463357866, -0.013906384818255901, 0.021540815010666847, -0.00108370091766119, -0.013586698099970818, 0.023550275713205338, 0.022926125675439835, -0.02583375573158264, 0.018709301948547363, 4.266656105755828e-05, 0.0009219545172527432, -0.010732349939644337, 0.006507914047688246, -0.005773395299911499, -0.003800089005380869, 0.0013843589695170522, -0.007227209862321615, -0.0070787835866212845, -0.027432190254330635, 0.00866960734128952, 0.004589791875332594, 0.003939000889658928, 0.01045072078704834, 0.0054346793331205845, 0.0014861640520393848, -0.01963791623711586, -0.017476223409175873, -0.011402170173823833, -0.006058829836547375, 0.024570230394601822, -0.005389009602367878, 0.00452889921143651, -0.011128152720630169, 0.01367803756147623, 0.00021324360568542033, 0.00533192278817296, -0.011881700716912746, 0.023839516565203667, -0.013579086400568485, -0.008403201587498188, 0.006382322870194912, -0.010100587271153927, 0.011029201559722424, 0.02093188837170601, 0.015048123896121979, -0.007151093799620867, -0.023839516565203667, 0.03126843273639679, 0.004684937186539173, 0.014073840342462063, -0.02300224080681801, -0.021342914551496506, -0.03023325651884079, 0.0005037924856878817, 0.00299326004460454, -0.02342849038541317, 0.000533287413418293, -0.00656880671158433, -0.0059142098762094975, -0.0006384225562214851, 0.003819118021056056, 0.00986462738364935, -0.001017099479213357, -0.012658082880079746, 0.002414778573438525, 0.01688251830637455, 0.017415329813957214, 0.025788085535168648, -0.012924489565193653, 0.021434253081679344, 0.012338396161794662, 0.0010094878962263465, -0.019135551527142525, -0.019881486892700195, -0.012033932842314243, 0.00845648255199194, 0.008700053207576275, -0.02877183072268963, 0.013700871728360653, 0.011447839438915253, 0.0010979726212099195, 0.006028383504599333, 0.002597457030788064, 0.020429521799087524, -0.0012159523321315646, 0.016060465946793556, 0.01168379932641983, -0.008418424986302853, 0.008776169270277023, -0.0061768097802996635, 0.02676237002015114, 0.010184315033257008, 0.002823901828378439, -0.003904748475179076, 0.0012739908415824175, 0.0015727459685876966, 0.030370265245437622, 0.016760732978582382, 0.006759096868336201, -0.01662372425198555, 0.010153868235647678, 0.012155718170106411, 4.049606650369242e-05, 0.013259399682283401, -0.01220138743519783, -0.004814334213733673, -0.011143376119434834, -0.015497208572924137, 0.007421305403113365, -0.04037190228700638, -0.01954657770693302, 0.010641010478138924, 0.00997880194336176, -0.025026926770806313, 0.008342308923602104, 0.013921608217060566, -0.01756756193935871, 0.014903504401445389, 0.0032977238297462463, 0.006226284895092249, 0.01398250088095665, -0.0018952873069792986, -0.02336759865283966, 0.005754366051405668, -0.0007254802039824426, -5.146746843820438e-05, 0.009552552364766598, 0.001114147249609232, -0.0006260537193156779, 0.025011703372001648, -0.012323172762989998, -0.0013710386119782925, 0.016471492126584053, -0.002745883073657751, 0.02106889709830284, 0.024935586377978325, -0.019455237314105034, 0.017232652753591537, 0.0004952294402755797, -0.010245207697153091, 0.025224827229976654, -0.006443215534090996, 0.005328116938471794, 0.012779869139194489, -0.01131083071231842, -0.0038609819021075964, 0.008190076798200607, 0.008007398806512356, -2.7696098186424933e-05, 0.014089063741266727, -0.010100587271153927, -0.009095856919884682, 0.018328722566366196, 0.014340246096253395, 0.013228952884674072, 0.024387551471590996, -0.02184527926146984, 0.01300821639597416, -0.007611595559865236, 0.013031051494181156, 0.013099555857479572, -0.0003441868466325104, -0.006736262235790491, 0.030187588185071945, 0.00639374041929841, -0.014081452041864395, 0.012627637013792992, 0.004696354269981384, -0.002226391574367881, 0.009027352556586266, -0.008349920623004436, 0.012384065426886082, 0.014629486948251724, -0.010047306306660175, -0.0009623910882510245, 0.01668461784720421, -0.005480348598212004, 0.017263097688555717, 0.014538147486746311, -0.016471492126584053, -0.0019733060616999865, -0.004947537090629339, -0.02300224080681801, -0.016030021011829376, -0.03224271908402443, -0.0058495113626122475, 0.0021236350294202566, 0.010991143994033337, 0.0070711723528802395, 0.0030046773608773947, -0.015207967720925808, 0.0287413839250803, 0.01743055321276188, -0.01575600355863571, -0.00892840139567852, 0.0017630357760936022, 0.010930251330137253, 0.005853316746652126, 0.008852285332977772, 0.004585986491292715, -0.007219598162919283, -0.009080633521080017, -0.014469643123447895, 0.01109770592302084, 0.010153868235647678, 0.014188013970851898, -0.013875938951969147, 0.012277503497898579, 0.01590823382139206, 0.0022891873959451914, -0.008190076798200607, 0.005252000875771046, 0.011805584654211998, 0.006264342926442623, -0.007740992587059736, 0.00470016011968255, 0.003341490402817726, -0.004022728186100721, 0.007029308471828699, 0.00743652880191803, 0.007976952008903027, -0.0013643784914165735, 0.017735017463564873, 0.008646772243082523, 0.014347857795655727, 0.005309087689965963, 0.005446096416562796, 0.012193775735795498, -0.022271528840065002, 0.0035317803267389536, -0.01814604364335537, -0.011364111676812172, -0.020733986049890518, 0.012132883071899414, 0.0035032369196414948, -0.0062072561122477055, -0.008692442439496517, -0.014035781845450401, 0.014210849069058895, -0.036048516631126404, -0.014226071536540985, 0.017537115141749382, -0.02297179587185383, 0.0038895253092050552, 0.038453780114650726, 0.011843642219901085, -0.018039481714367867, 0.00897407066076994, 0.02122112736105919, 0.007809496950358152, 0.003352907719090581, 0.005925626959651709, -0.004247270058840513, -0.012581967748701572, -0.020916664972901344, 0.009742842055857182, 0.006648728623986244, -0.006313818506896496, 0.004209212493151426, -0.030081026256084442, 0.017643678933382034, -0.014918726868927479, -0.0038096036296337843, -0.014888281002640724, 0.0021388584282249212, -0.012863595969974995, 0.012483016587793827, -0.01590823382139206, -0.0019019474275410175, -0.004300551488995552, -0.024707239121198654, -0.007603983860462904, -0.007470780983567238, 0.003872399218380451, -0.0014033878687769175, 0.004064592067152262, 0.004136902280151844, 0.0011969234328716993, 0.012254668399691582, 0.04518242925405502, -0.009986413642764091, -0.0037125556264072657, 0.0021921393927186728, 0.003821020945906639, -0.006264342926442623, 0.010153868235647678, 0.005746754817664623, -0.0013348835054785013, 0.00201707286760211, 0.0009452649974264205, 0.035500481724739075, 0.02084054797887802, -0.0020931886974722147, 0.017872026190161705, 0.001320611801929772, -0.009628668427467346, 0.022347643971443176, 0.006363293621689081, -0.026046879589557648, 0.00934703927487135, -8.497633098158985e-05, 0.004452783148735762, 0.015383034944534302, -0.003623119555413723, -0.03236450254917145, 0.031938254833221436, 0.021799609065055847, 0.016380153596401215, -0.011523955501616001, 0.00038842923822812736, 0.00014771251881029457, -0.012208999134600163, -0.0030199005268514156, 0.020262068137526512, -0.002072256989777088, 0.027660537511110306, -0.007999787107110023, 0.01918121986091137, -0.007432722952216864, 0.019972827285528183, -0.012110048905014992, 0.023184919729828835, -0.009065410122275352, 0.008753335103392601, 0.014926338568329811, 0.03659655153751373, 0.02158648520708084, -0.01348013523966074, -0.0004600257962010801, -0.002144566969946027, -0.0059142098762094975, 0.004597403574734926, 0.014279353432357311, -0.022499876096844673, -0.011249938048422337, 0.017186982557177544, -0.02865004539489746, 0.008228134363889694, 0.017095644026994705, -0.008738111704587936, -0.015017678029835224, 0.022088849917054176, 0.004426142666488886, 0.0076154014095664024, 0.010176703333854675, -0.004662102088332176, 0.020733986049890518, -0.010458332486450672, -0.016517162322998047, -0.006192032713443041, 0.015893012285232544, 0.021571261808276176, 0.007211986929178238, -0.007931282743811607, -0.021571261808276176, 0.001097021158784628, 0.012863595969974995, 0.017491446807980537, -0.01811559684574604, 0.004117873031646013, -0.0006075004930607975, 0.00414070812985301, 0.024128757417201996, -0.007706740405410528, 0.007862778380513191, 0.008661995641887188, -0.0074289171025156975, -0.0032482484821230173, 0.0016983372624963522, -0.006401351653039455, 0.007676294073462486, 0.017491446807980537, -0.016151806339621544, -0.0094003202393651, 0.009141526184976101, 0.008738111704587936, 0.01834394596517086, 0.0024737685453146696, 0.0005366174736991525, -0.004224435426294804, -0.014012947678565979, -0.002201654016971588, 0.010237595997750759, 0.036018069833517075, -0.0036611773539334536, -0.019561801105737686, 0.03215137869119644, 0.0012416414683684707, 0.022256305441260338, 0.0019561799708753824, 0.0008034990751184523, 0.007029308471828699, 0.007432722952216864, 0.0047991108149290085, -0.007295714225620031, -0.006043606903403997, 0.025026926770806313, 0.001406242256052792, 0.0021065091714262962, -0.004818140063434839, 0.007181540131568909, -0.004049368668347597, 0.017186982557177544, 0.01142500527203083, -0.0014928241726011038, -0.017232652753591537, 0.00871527660638094, 0.011721856892108917, -0.005803841631859541, 0.01730876788496971, -0.004936119541525841, -0.007687711622565985, -0.0026183887384831905, -0.025270497426390648, 0.00986462738364935, 0.007318548858165741, 0.02472246252000332, 0.006702010054141283, 0.013084332458674908, 0.00023798129404895008, 0.007128259167075157, -0.010755184106528759, 0.011638129130005836, 0.0022054598666727543, 0.010816076770424843, 0.017004303634166718, -0.0036097990814596415, 0.018511399626731873, -0.011523955501616001, -0.012376454658806324, -0.001894335844554007, 0.00678193150088191, -0.0045060645788908005, 0.0007602081168442965, 0.012186164036393166, 0.007733380887657404, -0.011158598586916924, 0.03626164048910141, -0.004772470332682133, -0.0026183887384831905, 0.004601209424436092, 0.006812377832829952, -0.005137826781719923, -0.005164467729628086, -0.010366993024945259, -0.01659327745437622, 0.006047412753105164, 0.0034518586471676826, -0.0008634403930045664, -0.008258581161499023, 0.009940743446350098, 0.02485947124660015, 0.025788085535168648, 0.026914602145552635, -0.004783887881785631, -0.014051005244255066, -0.002001849701628089, 0.012772257439792156, 0.006869465112686157, -0.009879850782454014, -0.02170827053487301, -0.0047914995811879635, 0.014423973858356476, -0.007204375229775906, 0.008905566297471523, 0.001255913288332522, 0.0002353648014832288, 0.004083620849996805, 0.03318655490875244, -0.01287881936877966, -0.0006888493662700057, -0.010268042795360088, 0.016319260001182556, 0.01940956898033619, -0.009895074181258678, -0.0009837987599894404, -0.02589464746415615, 0.000993313267827034, -0.021023226901888847, 0.0003299150848761201, -0.014545759186148643, -0.028543483465909958, 0.01471321377903223, 0.008502151817083359, 0.029867900535464287, 0.010542059317231178, 0.01197304017841816, -0.0046354616060853004, -0.03461753576993942, 0.007817108184099197, -0.016501938924193382, -0.012186164036393166, -0.009012129157781601, -0.0007264316664077342, -0.0027040191926062107, -0.008387978188693523, -0.005057905334979296, -0.03476976975798607, -0.035500481724739075, -0.003853370202705264, 0.004391890484839678, 0.004304357338696718, 0.013967277482151985, -0.018100373446941376, -0.0013767473865300417, -0.00986462738364935, -0.03821020945906639, -0.005229166243225336, -0.013944443315267563, 0.00977328885346651, 0.016699841246008873, 0.014606651850044727, -0.006211061961948872, 0.00650410819798708, -0.01262002531439066, 0.01270375307649374, -0.0032158989924937487, 0.02316969633102417, -0.011173821985721588, -0.0005028410232625902, -0.01630403846502304, 0.0024014583323150873, 0.01300821639597416, -0.01393683161586523, -0.008859897032380104, -0.017293544486165047, 0.006614476442337036, 0.013259399682283401, -0.007992175407707691, -0.016806403174996376, -0.003189258510246873, -0.0010285167954862118, -0.020733986049890518, 0.020292513072490692, -0.028239019215106964, -0.022271528840065002, -0.011135764420032501, 0.004742024000734091, 0.003286306280642748, -0.010473554953932762, -0.014880669303238392, 0.0006655388860963285, 0.009994025342166424, -0.002610777271911502, -0.01785680279135704, 0.010465944185853004, 0.005411844234913588, 0.0021274408791214228, 0.013327904045581818, -0.012384065426886082, 0.017704570665955544, -0.012277503497898579, 0.008494540117681026, 0.00044979772064834833, -0.011021589860320091, 0.012947323732078075, -0.03239494934678078, 0.010953085497021675, -0.01500245463103056, 0.014911115169525146, -0.01963791623711586, 0.0034765962045639753, 0.0012825538869947195, -0.00628717802464962, 0.0007797128055244684, 0.02460067719221115, 0.023474160581827164, 0.003919971641153097, 0.005438485182821751, -0.013282233849167824, -0.005210136994719505, -0.00492470245808363, 0.004060786217451096, 0.00631001265719533, -0.0053357286378741264, -0.013967277482151985, -0.0194704607129097, 0.015124239958822727, -0.039580296725034714, 0.020992780104279518, -1.1826219633803703e-05, -0.008859897032380104, -0.028665268793702126, -1.361018712486839e-05, -0.00012392629287205637, -0.00020016117196064442, -0.012551520951092243, -0.0022720613051205873, -0.007284296676516533, -0.009910297580063343, -0.01944001577794552, -0.025559738278388977, -0.008783780969679356, 0.008890343829989433, 0.010618175379931927, -0.0061768097802996635, -4.4985717977397144e-05, -0.005111186299473047, -0.006488885264843702, -0.028010671958327293, 0.00622247951105237, -0.013746541924774647, -0.002812484512105584, 0.016212698072195053, -0.01627359166741371, 0.022043179720640182, 0.007421305403113365, 0.014949173666536808, 0.007387053221464157, -0.0036649832036346197, 0.0006108305533416569, -0.006420380901545286, -0.010511613450944424, -0.015040513128042221, -0.020810101181268692, 0.027173396199941635, -0.023580722510814667, 0.0018068024655804038, -0.009803734719753265, 0.002772523555904627, -0.00605121860280633, -0.016471492126584053, 0.006359488237649202, 0.017993811517953873, -0.004513676278293133, 0.00243000197224319, 0.0031302685383707285, -0.01714131236076355, -0.005937044508755207, 0.019820595160126686, 0.006861853413283825, -0.021540815010666847, -0.010694291442632675, -0.018815863877534866, -0.01042027398943901, 0.010717126540839672, -0.008623938076198101, -0.0024052641820162535, 0.004251075908541679, -0.01105203665792942, -0.04941447824239731, -0.022530322894454002, 0.003830535337328911, 0.01960746943950653, -0.003977058455348015, -0.005575493909418583, 0.0007782856118865311, -0.00895884819328785, 0.012269891798496246, -0.01560377050191164, 2.835765371855814e-06, 0.01223183423280716, 0.0037639338988810778, 0.005061711184680462, -0.01053444854915142, 0.020338183268904686, 0.0030788902658969164, 0.012825538404285908, 0.018039481714367867, 0.010747572407126427, 0.02359594590961933, -0.006903717294335365, 0.0061425575986504555, 0.01762845553457737, 0.020429521799087524, -0.006964609958231449, -0.008479317650198936, -0.0018334430642426014, 0.008509763516485691, 0.00997880194336176, -0.01708042062819004, -0.016227921470999718, -0.005906598176807165, -0.002281575696542859, -0.023550275713205338, 0.01330506894737482, 0.005887568928301334, -0.013365961611270905, 0.049627602100372314, 0.0018401031848043203, 0.023839516565203667, -0.035470034927129745, 0.010633398778736591, -0.014987231232225895, -0.010169091634452343, 0.04271627217531204, 0.004022728186100721, 0.0184352844953537, -0.009164361283183098, 0.01419562567025423, 0.002346274210140109, -0.027843216434121132, -0.011447839438915253, 0.04180288314819336, 0.00381531217135489, 0.023017464205622673, -0.0035393917933106422, 0.00135486398357898, -0.013974889181554317, 0.004749635700136423, 0.00947643630206585, 0.015725556761026382, 0.006694398354738951, -0.015999574214220047, 0.007505033165216446, -0.009826569817960262, 0.0038781079929322004, 0.0016850169049575925, 0.005693473387509584, 0.015291695483028889, -0.0034937222953885794, -0.010382216423749924, 0.0064622447825968266, 0.004448977764695883, 0.011074871756136417, 0.010831300169229507, -0.016121359542012215, -0.002182625001296401, 0.019972827285528183, -0.020170727744698524, 0.0033624223433434963, 0.005602134391665459, 0.006671563256531954, -0.02463112212717533, -0.0038248267956078053, -0.006386128719896078, -0.0011836030753329396, 0.0032786948140710592, -0.01092263963073492, 0.008471705950796604, -0.0059142098762094975, -0.004361444152891636, 0.012399288825690746, -0.011059648357331753, -0.012300338596105576, -0.006934163626283407, 0.02641223557293415, -0.005902792327105999, -0.003996087703853846, 0.01616702973842621, -0.033521465957164764, -0.013716095127165318, 0.009042575024068356, -0.009453601203858852, -0.0014985328307375312, -0.007040726020932198, -0.00546131981536746, -0.000492375111207366, -0.02061220072209835, -0.014264130033552647, 0.032486289739608765, 0.003269180189818144, -0.0029894541949033737, -0.011173821985721588, 0.02724951133131981, -0.004289133939892054, -0.003090307815000415, 0.008235746063292027, -0.006192032713443041, 0.014104286208748817, 0.0028695715591311455, 0.008890343829989433, 0.008372754789888859, 0.005130215547978878, -0.010945474728941917, 0.007771438919007778, 0.006408963352441788, -0.00407600961625576, -0.013107167556881905, -0.0025860394816845655, -0.005229166243225336, 0.0005004624254070222, 0.020992780104279518, 0.010892192833125591, 0.011036813259124756, 0.016867294907569885, 0.0011512538185343146, -0.011501120403409004, -0.007744798436760902, 0.0062072561122477055, 0.0029209498316049576, 0.0053357286378741264, 0.018511399626731873, -0.014895892702043056, -0.0004412346752360463, 0.026518799364566803, -0.0008220523013733327, 0.0036136049311608076, 0.015177521854639053, 0.0028676686342805624, -0.0009752356563694775, 0.03151200711727142, -0.0017887249123305082, 0.015147075057029724, 0.004673519637435675, 0.020338183268904686, 0.0020741596817970276, -0.020307736471295357, -0.009232865646481514, 0.0013919705525040627, -0.01645626872777939, -0.012741810642182827, -0.0013853104319423437, -0.02767576090991497, 0.024996479973196983, -0.016151806339621544, -0.012863595969974995, -0.020475191995501518, -0.0017754046712070704, -0.004677325487136841, 0.0033319760113954544, -0.008098737336695194, 0.005099769216030836, -0.011120541021227837, -0.0020741596817970276, 0.0021750133018940687, -0.024448445066809654, -0.012049155309796333, -0.016090912744402885, -0.005381397902965546, 0.009004517458379269, -0.00036678375909104943, 0.009872239083051682, -0.001124613219872117, -0.006477467715740204, -0.02699071727693081, 0.015268860384821892, 0.0019086075481027365, -0.02861959859728813, 0.018724525347352028, -0.00931659247726202, 0.005895180627703667, 0.00013070536078885198, -0.029182856902480125, -0.009499271400272846, 0.003912359941750765, -0.029152410104870796, -0.006968415807932615, 0.013662814162671566, 0.030507273972034454, 0.008966459892690182, -0.01627359166741371, -0.023321928456425667, -0.024966033175587654, 0.0014205139596015215, 0.00631001265719533, -0.0008957896498031914, -0.002051325049251318, 0.022149743512272835, 0.007345189806073904, 0.000847265706397593, 0.00093765341443941, -0.01168379932641983, 0.02638179063796997, 0.009628668427467346, -0.002844833768904209, -0.03181646764278412, 0.0003812933573499322, 0.014264130033552647, 0.005016041453927755, -0.023124027997255325, 0.0024433222133666277, -0.023124027997255325, 0.006294789258390665, -0.002742077223956585, 0.0070064738392829895, 0.0015413480577990413, 0.009484048001468182, -0.0007283345330506563, 0.00641657505184412, 0.007790468167513609, 0.007440334651619196, 0.013015828095376492, 0.03824065625667572, 0.02184527926146984, -0.007992175407707691, -0.006595447659492493, -0.025255274027585983, -0.0010932154254987836, -0.007763827219605446, -0.016958635300397873, 0.020688315853476524, -0.006987444590777159, 0.030857408419251442, 0.01108248345553875, -0.0053699808195233345, -0.011356500908732414, 0.0032977238297462463, -0.021951841190457344, 0.0007878001197241247, -0.009933131746947765, -0.010648622177541256, -0.0059218211099505424, -0.0017411524895578623, -0.024387551471590996, 0.002496603410691023, -0.0019752089865505695, -0.006290983874350786, 0.007406082469969988, 0.010854135267436504, 0.023261036723852158, -0.007535479497164488, 0.002726854057982564, -0.0007706740288995206, -0.020490415394306183, -0.01662372425198555, -0.0031036280561238527, -0.02339804545044899, 0.01287881936877966, -0.007931282743811607, 0.007387053221464157, -0.029121965169906616, -0.00042553574894554913, 0.0024280990473926067, 0.006854241713881493, -0.002877183025702834, 0.02112978883087635, -0.0004995109629817307, 0.02391563355922699, 0.0038267297204583883, 0.012178553268313408, -0.012612413614988327, -0.009742842055857182, -0.0012568647507578135, -0.010656233876943588, 0.019226890057325363, -0.002875280100852251, 0.0030179976020008326, -0.028330357745289803, -0.011691411025822163, 0.0009895074181258678, 0.0025042148772627115, 0.0011893118498846889, -0.0239765252918005, 0.01934867538511753, -0.005723919719457626, 0.02084054797887802, 0.005141632631421089, 0.009590609930455685, 0.013784599490463734, 8.13935275800759e-06, -0.004905673209577799, -0.010001636110246181, 0.00498940097168088, -0.014530535787343979, 0.024387551471590996, -0.01134127750992775, 0.012155718170106411, -0.014964397065341473, -0.020992780104279518, -0.014530535787343979, -0.00793889444321394, 0.007508839014917612, 0.027949778363108635, 0.0059142098762094975, 0.008905566297471523, 0.012627637013792992, 0.01547437347471714, 0.033551912754774094, 0.0014842611271888018, 0.014682767912745476, 0.008349920623004436, -0.0035032369196414948, -0.012429735623300076, 0.003735390491783619, -0.022728223353624344, 0.017552338540554047, 0.005194914061576128, -0.008380366489291191, -0.020657870918512344, 0.0024166814982891083, 0.015192744322121143, 0.012985382229089737, -0.003904748475179076, -0.0008510714978910983, 0.023550275713205338, 0.006134945899248123, -0.01495678536593914, 0.004536510910838842, 0.013929219916462898, -0.006926551926881075, -0.010899804532527924, -0.016715064644813538, 0.005556464660912752, -0.01957702450454235, 0.002690698951482773, 0.002161693060770631, -0.0043424153700470924, -0.025818532332777977, 0.006066441535949707, -1.9385783161851577e-05, 0.012886431068181992, 0.03933672606945038, -0.010770407505333424, -0.006237702444195747, 0.012285115197300911, -0.00803784467279911, 0.01244495902210474, -0.01537542324513197, -0.016699841246008873, 0.009628668427467346, 0.013000604696571827, 0.002528952667489648, 0.003923777490854263, 0.026716699823737144, 0.012110048905014992, 0.009453601203858852, -0.014804553240537643, 0.0030865019652992487, -0.010268042795360088, 0.0019542770460247993, -0.02300224080681801, -0.001505193067714572, -0.0014566690661013126, -0.003128365846350789, -0.00635187653824687, -0.004547928459942341, 0.007447946351021528, 0.009385096840560436, -0.00930137000977993, -0.005472737364470959, 0.024296212941408157, -0.021601708605885506, -0.0015917748678475618, 0.01908988133072853, 0.005480348598212004, -0.008441259153187275, -0.00552601832896471, 0.005990325473248959, 0.017004303634166718, 0.016760732978582382, 0.008022621273994446, -0.001902898889966309, -0.005918015725910664, -0.006629699841141701, 0.015535266138613224, 0.003128365846350789, 0.0019428597297519445, 0.00930137000977993, 0.002812484512105584, 0.021495144814252853, 0.011645740829408169, -4.281522342353128e-05, -0.010991143994033337, 5.247838271316141e-05, 0.0029704251792281866, -0.003238733857870102, -0.0075925663113594055, -0.0033662281930446625, -0.002348177134990692, -0.00409884424880147, -0.00832708552479744, 0.014104286208748817, -0.028756607323884964, -0.00639374041929841, -0.02388518676161766, 0.009704784490168095, -0.025788085535168648, 0.014218460768461227, 0.027234287932515144, -0.0017487640725448728, 0.023900410160422325, 0.008631548844277859, 0.02913718670606613, 0.01863318495452404, 0.005693473387509584, -0.001109390053898096, 0.0030046773608773947, -0.007984563708305359, -0.017186982557177544, -0.012353619560599327, -0.013860715553164482, -0.013244176283478737, 0.0035945759154856205, 0.006332847289741039, 0.0040912325493991375, -0.0063062068074941635, 0.019272560253739357, -0.04012833163142204, -0.020977556705474854, 0.011272773146629333, 0.006134945899248123, -0.025026926770806313, 0.009210030548274517, 0.008045456372201443, -0.013076720759272575, 0.003954223822802305, 0.011090094223618507, 0.0067552910186350346, 0.02285001054406166, -0.005191108211874962, -0.03370414674282074, 0.0017782589420676231, 0.003931389190256596, -0.012551520951092243, -0.019911933690309525, -0.008524986915290356, 0.009788512252271175, 0.006660146173089743, -0.01889198087155819, 0.0019019474275410175, 0.020201174542307854, 0.004308163188397884, -0.03589628264307976, 0.030248479917645454, 0.01474366057664156, -0.0047648586332798, -0.023382822051644325, 0.007531673647463322, 0.026107773184776306, 0.0005437533254735172, -0.011348889209330082, -0.01928778365254402, 0.001350106787867844, 0.015634216368198395, -0.013244176283478737, -0.013845492154359818, 0.02893928624689579, 0.017932919785380363, 0.0017097546951845288, 0.01032132375985384, 0.007706740405410528, -0.001352961058728397, 0.008007398806512356, 0.0048980615101754665, 0.0003360995033290237, 0.009697172790765762, 0.0032311223912984133, 0.00973523035645485, 0.012581967748701572, 0.027173396199941635, -0.009453601203858852, -0.0009210030548274517, -0.017537115141749382, 0.0043195802718400955, 0.00509596336632967, -0.00082347949501127, -0.01682162657380104, 0.007086395286023617, -0.009415543638169765, 0.034556642174720764, 0.008266192860901356, -0.004148319363594055, -0.03202959522604942, -0.0025555931497365236, 0.002578428015112877, -0.007794274017214775, -0.0029666193295270205, 0.005716308020055294, 0.009286146610975266, -0.016715064644813538, 0.014667544513940811, 0.014682767912745476, 0.04341654106974602, -0.002627903362736106, -0.00816724169999361, -0.009552552364766598, 0.0013472524005919695, 0.018039481714367867, -0.00598652008920908, 0.005682055838406086, -0.0030294149182736874, 0.030081026256084442, -0.010937863029539585, -0.0011702828342095017, 0.003988476004451513, -0.007664876524358988, -0.0021883337758481503, -0.002262546680867672, -0.027279958128929138, 0.016227921470999718, -0.005134021397680044, -0.005320505239069462, 0.01794814132153988, -0.005324311088770628, 0.012642860412597656, 0.00546131981536746, -0.0043195802718400955, 0.0012635248713195324, 0.004627849906682968, 0.007699128706008196, -0.0051492443308234215, -0.003472790354862809, -0.0022872844710946083, 0.004159736912697554, 0.048561979085206985, -0.02466156892478466, -0.0032958209048956633, 0.0018401031848043203, -0.012011097744107246, -0.02845214307308197, 0.012208999134600163, -0.002114120637997985, -0.02799544855952263, 0.01066384557634592, 0.002641223603859544, -0.014789329841732979, 0.013152836821973324, 0.014538147486746311, -0.007440334651619196, -0.0059560732915997505, 0.010366993024945259, -0.002072256989777088, -0.005819064565002918, 0.024555006995797157, 0.011013979092240334, 0.000950497982557863, -0.0018144140485674143, -0.01367803756147623, 0.022027958184480667, 0.011501120403409004, 0.009704784490168095, -0.013107167556881905, 0.002268255455419421, 0.004886644426733255, 0.0018810154870152473, -0.0007002667989581823, -0.028117233887314796, -0.014987231232225895, 0.010557282716035843, 0.022286752238869667, -0.001802045269869268, 0.013404020108282566, -0.0014109995681792498, 0.0075583141297101974, -0.022606438025832176, -0.010488778352737427, 0.00565541535615921, 0.010123422369360924, -0.03525691106915474, 0.0054422905668616295, 0.009210030548274517, -0.010123422369360924, -0.030826961621642113, 0.02116023562848568, -0.005647803656756878, -0.01642582379281521, -0.00042886583833023906, -0.005137826781719923, 0.01372370682656765, 0.0019637916702777147, 0.001883869874291122, -0.017263097688555717, -0.010998755693435669, -0.01857229322195053, -0.010732349939644337, 0.0037962831556797028, 0.013274622149765491, 0.0024509336799383163, -0.011797972954809666, -0.0036078961566090584, -0.001802045269869268, -0.019485684111714363, 0.012718976475298405, -0.005111186299473047, 0.009933131746947765, -0.015139463357627392, 0.01902898959815502, -0.011326054111123085, -0.004943731240928173, -0.02090144157409668, -0.016212698072195053, 0.009034964255988598, -0.029989685863256454, -0.0035279744770377874, -0.02437232807278633, -0.013327904045581818, 0.005697279237210751, -0.00370684708468616, -0.003786768764257431, -0.005583105143159628, 0.009796123020350933, 0.0029361729975789785, 0.005114992149174213, 0.0012587675591930747, -0.01762845553457737, -0.016121359542012215, 0.011790361255407333, 0.01474366057664156, 0.014705602079629898, 0.006199644412845373, -0.012026321142911911, 0.01889198087155819, 0.005682055838406086, 0.0013215632643550634, 0.012886431068181992, 0.00654597207903862, -0.009651503525674343, -0.010602952912449837, 0.0035679354332387447, -0.01435546949505806, 0.0017468611476942897, -0.011455451138317585, -0.02210407331585884, -0.006926551926881075, -0.005765783600509167, 0.008387978188693523, -0.020764432847499847, 0.023276258260011673, 0.005324311088770628, 0.01312239095568657, 0.02534661255776882, 0.015169910155236721, 0.017263097688555717, 0.01283315010368824, -0.009704784490168095, 0.01317567192018032, 0.034465305507183075, -0.009796123020350933, -0.010953085497021675, -0.00806829147040844, 0.0033947716001421213, 0.011630518361926079, -0.0221649669110775, 0.006987444590777159, -0.0008976925164461136, -0.008806616067886353, 0.012140494771301746, 0.010884581133723259, -0.006496496964246035, -0.01808515004813671, 0.008890343829989433, -0.010869358666241169, 0.017384884878993034, -0.006348070688545704, -0.01983581855893135, 0.010975920595228672, 0.009415543638169765, 0.015276472084224224, 0.03574405238032341, -0.002003752626478672, -0.020246844738721848, 0.00667536910623312, 0.008235746063292027, 0.003174035344272852, 0.0012083407491445541, -0.01892242580652237, -0.002209265483543277, 0.0032786948140710592, -0.007215792313218117, 0.011965428479015827, -0.0010618175147101283, 0.009834181517362595, 0.0010713320225477219, -0.0011122444411739707, 0.012094825506210327, -0.0021883337758481503, 0.012193775735795498, 0.0032139963004738092, 0.012635248713195324, 0.004456588998436928, 0.006800960749387741, 0.008677219040691853, -0.02161693200469017, 0.004418530967086554, -0.005682055838406086, -0.003073181724175811, -0.014233683235943317, -0.0019618887454271317, 0.009415543638169765, 0.01584734208881855, 0.003866690443828702, 0.009392708539962769, -0.017674123868346214, -0.004224435426294804, 0.006230090744793415, 0.014560982584953308, 0.04244225472211838, 0.009628668427467346, -0.001139836385846138, 0.01957702450454235, -0.012368842959403992, 0.015116628259420395, -0.00815201923251152, 0.011950205080211163, 0.0005285301594994962, 0.007603983860462904, -0.018267828971147537, -0.0038457587361335754, 0.00020242086611688137, -0.0011112929787486792, 0.004144513979554176, 0.0036117020063102245, -0.029867900535464287, -0.023352375254034996, 0.01007775217294693, 0.022834787145256996, -0.007505033165216446, -0.013639979064464569], "9e212d39-504d-4779-83f0-355636b0de25": [-0.03282645717263222, -0.013334816321730614, -0.0059257568791508675, 0.03989264369010925, -0.018038153648376465, -0.041025616228580475, 0.0008609118522144854, 0.04400712996721268, -0.0028622522950172424, 0.00881782453507185, 0.02510433830320835, 0.00805753841996193, -0.003048596903681755, -0.02409062348306179, -0.007878648117184639, 0.004740605596452951, -0.017173513770103455, 0.016249245032668114, 0.018515195697546005, -0.031097179278731346, 0.0669647827744484, -0.01984196901321411, -0.040518760681152344, 0.019320202991366386, -0.001993886660784483, 0.026282036677002907, -0.03211089223623276, 0.023509228602051735, -0.03208107873797417, -0.03392961621284485, 0.0033896074164658785, 0.0025883258786052465, -0.013029211200773716, -0.01265652198344469, 0.004636252298951149, -0.0028212566394358873, 0.007528319954872131, -0.005840038415044546, -0.016189614310860634, -0.026714354753494263, -0.06642811000347137, 0.026699448004364967, -0.018455564975738525, 0.0003924882039427757, -0.02453785017132759, -0.0037902481853961945, -0.019588539376854897, 0.0018578552408143878, 0.0008031450561247766, 0.0005795315373688936, 0.01439325325191021, -0.024612389504909515, -0.002847344847396016, 0.00587358046323061, 0.040936172008514404, -0.0325879342854023, 0.03542037308216095, 0.0376565083861351, -0.0006214590976014733, -0.03777576982975006, -0.03255812078714371, 0.00826624408364296, -0.007122088689357042, 0.0033262502402067184, 0.03971375152468681, 0.03843170031905174, -0.00122335203923285, -0.021377447992563248, -0.04648178443312645, -0.009868807159364223, -0.007014009170234203, 0.004017588682472706, -0.013193194754421711, 0.042486559599637985, 0.043649349361658096, -0.021496707573533058, 0.0322897844016552, 0.03294571861624718, 0.017769817262887955, -0.028831228613853455, 0.01700953021645546, -0.012395639903843403, 0.007263710722327232, 0.013536068610846996, 0.07751933485269547, 0.027191396802663803, 0.020527716726064682, -0.04827069491147995, 0.0024504309985786676, -0.0325879342854023, -0.012581984512507915, 0.014743581414222717, 0.020825866609811783, -0.031097179278731346, -0.02950206957757473, 0.01578710973262787, 0.020333917811512947, -0.006249996367841959, 0.018902791664004326, -0.002519378438591957, -0.008146983571350574, -0.043261751532554626, 0.023389969021081924, 0.0097868163138628, 0.03804410248994827, 0.016219429671764374, 0.013729866594076157, 0.01790398545563221, -0.03291590139269829, 0.07334521412849426, 0.0068761142902076244, -0.027251027524471283, 0.00475178612396121, -0.0027504456229507923, -0.06475845724344254, -0.01470631267875433, -0.03434702754020691, -0.0017879760125651956, -0.001719960244372487, 0.005031303036957979, 0.0008241087780334055, -0.024016086012125015, 0.017918892204761505, 0.01152354758232832, -0.008489858359098434, 0.026535464450716972, 0.007692303042858839, 0.013193194754421711, 0.00070438242983073, 0.0012773919152095914, -0.0020926494617015123, 0.0044461810030043125, 0.011590631678700447, -0.02786223776638508, 0.002538012806326151, 0.001337022171355784, 0.02822002023458481, 0.05960044264793396, -0.027057228609919548, 0.01617470756173134, -0.05936191976070404, -0.017650555819272995, -0.005474803037941456, 0.007028916385024786, 0.007274891249835491, -0.007848832756280899, -0.026520557701587677, 0.01393111888319254, -0.013215555809438229, 0.007241349201649427, -0.05644004046916962, -0.03223015367984772, -0.028085852041840553, 0.012850320897996426, 0.05629096180200577, -0.021645784378051758, 0.0023013553582131863, 0.026073329150676727, 0.0012708698632195592, 0.04830050840973854, 0.05554558336734772, -0.030202725902199745, 0.012820505537092686, 0.03661297634243965, 0.05074534937739372, -0.0039244163781404495, 0.02968095988035202, 0.006283538416028023, -0.030381616204977036, 0.030441246926784515, 0.008482404053211212, -0.026118053123354912, 0.025983884930610657, -0.007953185588121414, 0.016785917803645134, -0.023300522938370705, 0.02908465825021267, 0.02468692697584629, 0.026997599750757217, -0.0009503572364337742, -0.0165921188890934, -0.0018224497325718403, -0.0028231199830770493, -0.005068571772426367, 0.023002371191978455, -0.02203338034451008, -0.010338395833969116, 0.04982107877731323, -0.01593618653714657, -0.019081681966781616, -0.0013780179433524609, -0.014997010119259357, 0.002424342557787895, -0.004651159979403019, -0.009824085049331188, -0.02367321215569973, -0.003656080225482583, 0.041293952614068985, -0.0018708993447944522, 0.005474803037941456, 0.0052400087006390095, -0.05864635854959488, -0.023658305406570435, 0.020646976307034492, -0.04287415370345116, 0.013536068610846996, 0.01906677521765232, -0.029457347467541695, 0.026773985475301743, -0.029516978189349174, 0.028056036680936813, -0.05816931650042534, -0.00834078248590231, 0.014110010117292404, 0.015891464427113533, 0.003648626385256648, -0.00584376510232687, 0.029278457164764404, 0.020915312692523003, -0.029189011082053185, 0.0020684245973825455, 0.007614038418978453, -0.011545908637344837, -0.031276069581508636, -0.05825876072049141, 0.03783539682626724, -0.03798447549343109, 0.021034574136137962, -0.003810746129602194, -0.00835569016635418, 0.006615231744945049, -0.0112104881554842, 0.001576474984176457, -0.009928437881171703, 0.011486277915537357, 0.05930229276418686, 0.02239116095006466, 0.005049937404692173, -0.01632378250360489, -0.026788894087076187, 0.01416963990777731, 0.031246254220604897, -0.014497606083750725, -0.029904574155807495, -0.014482698403298855, 0.004278470762073994, -0.010166958905756474, 0.05921284481883049, -0.003704529721289873, -0.0038163363933563232, -0.02304709516465664, -0.0007439806358888745, -0.01150863990187645, 0.012917404063045979, -0.027370288968086243, 0.020930219441652298, 0.04874773696064949, -0.02328561618924141, 0.03363146632909775, 0.0016118803760036826, 0.020244471728801727, -0.0109868748113513, -0.008586756885051727, 0.02426951564848423, 0.03473462536931038, -0.020468086004257202, 0.004789054859429598, 0.0037622966337949038, 0.020572438836097717, 0.02382228709757328, 0.020438270643353462, 0.0021224645897746086, 0.0018196546006947756, 0.04689919576048851, 0.02173522859811783, -0.005459895357489586, -0.03577815368771553, 0.016428135335445404, 0.05694689601659775, 0.006984193809330463, -0.04833032190799713, 0.010860160924494267, 0.0037436620332300663, 0.014527421444654465, 0.052802592515945435, 0.027370288968086243, -0.0052325548604130745, 0.0021336451172828674, -0.03449610248208046, -0.017889076843857765, 0.002729947678744793, -0.019633261486887932, 0.026371480897068977, 0.02274894341826439, -0.001551318448036909, -0.014147278852760792, -0.0022994917817413807, 0.016219429671764374, -0.027877144515514374, -0.011150858364999294, 0.020557532086968422, 0.0004104238760191947, 0.009622832760214806, -0.03255812078714371, 0.042039331048727036, -0.01605544611811638, 0.04621344804763794, 0.03881929814815521, -0.0394454151391983, 0.06201546639204025, 0.026431111618876457, -0.04818124696612358, -0.005452441517263651, -0.009511025622487068, 0.017978522926568985, 0.03255812078714371, -0.05787116661667824, -0.03366127982735634, -0.02453785017132759, -0.04451398551464081, -0.007983000949025154, 0.009212874807417393, -0.05855691432952881, 0.021377447992563248, 0.04704827442765236, -0.0630888119339943, 0.028950490057468414, 0.023240892216563225, 0.01153845526278019, -0.02504470758140087, -0.043112676590681076, -0.03890874236822128, -0.03539055958390236, -0.007930824533104897, -0.041174691170454025, -0.0037492525298148394, -0.028503263369202614, -0.027966590598225594, 0.015727480873465538, -0.026878338307142258, -0.0030131915118545294, -0.06350622326135635, 0.032051265239715576, -0.018783530220389366, 0.01267142966389656, 0.011106135323643684, 0.012395639903843403, 2.3336744561675005e-05, -0.028592707589268684, 0.019886691123247147, 0.0007989523001015186, -0.020095396786928177, 0.015310068614780903, 0.013878942467272282, 0.011389379389584064, -0.003972866106778383, -0.039862826466560364, 0.00564996711909771, -0.001712506404146552, -0.019871782511472702, 0.01590637117624283, -0.02429932914674282, -0.004285924602299929, -0.01757601834833622, -0.00310450023971498, 0.001080798450857401, 0.043500274419784546, -0.006093467120081186, -0.0007234827498905361, -0.015697665512561798, -0.022256992757320404, -0.009004169143736362, -0.01632378250360489, -0.011605538427829742, -0.008624025620520115, -0.022137733176350594, 0.05038756877183914, -0.0015131178079172969, 0.02567082643508911, 0.008601664565503597, -0.016696471720933914, -0.02283838950097561, -0.008437681011855602, -0.001432989607565105, 0.03697076067328453, 0.003583405865356326, 0.003395197680220008, -0.02947225421667099, -0.028920674696564674, -0.006842572242021561, -0.05035775154829025, -0.015116270631551743, -0.01295467372983694, -0.06001785397529602, -0.030202725902199745, 0.0019268026808276772, -0.02409062348306179, 0.015049186535179615, 0.007196626625955105, -0.010897429659962654, -0.053190190345048904, -0.010666362009942532, 0.02534285932779312, 0.02555156499147415, 0.03637445718050003, 0.012991942465305328, -0.013625513762235641, -0.018276674672961235, 0.009429034776985645, 0.01900714449584484, 0.04898625612258911, 0.011568269692361355, 0.013170832768082619, 0.014654135331511497, 0.05578410625457764, 0.01267142966389656, -0.0006335714715532959, 0.02872687578201294, -0.05822894722223282, 0.012343463487923145, 0.013811858370900154, 0.003546136897057295, 0.024105532094836235, 0.02304709516465664, 0.03688131272792816, -0.0024075715336948633, -0.019961228594183922, -0.0033728363923728466, 0.010137143544852734, 0.0026218679267913103, -0.012738513760268688, 0.06025637686252594, 0.006086013279855251, -0.015049186535179615, -0.023360153660178185, -0.023211076855659485, -0.00922032818198204, -0.03577815368771553, 0.02382228709757328, 0.013789497315883636, -0.028592707589268684, -0.011590631678700447, -0.007356883026659489, 0.012470177374780178, -0.007129542529582977, -0.0024597481824457645, -0.019856875762343407, 0.01945437118411064, 0.005273550748825073, -0.020333917811512947, -0.006797849200665951, 0.029278457164764404, 0.00377720408141613, -0.0225700531154871, -0.027489548549056053, -0.007576769683510065, 0.00875819381326437, -0.0024951535742729902, 0.028950490057468414, -0.03732854127883911, -0.010219135321676731, 0.01858973316848278, 0.03154440596699715, -0.015667850151658058, 0.02531304396688938, -0.01787417009472847, -0.007364336866885424, -0.015608219429850578, -0.00017632853996474296, 0.04493140056729317, 0.012991942465305328, 0.01668156497180462, -0.00902653019875288, 0.010740900412201881, -0.022495513781905174, -0.006835118401795626, -0.007692303042858839, 0.01104650553315878, -0.019946321845054626, 0.015995817258954048, 0.023986270651221275, -0.029338086023926735, 0.016279060393571854, -0.0045952568762004375, -0.010666362009942532, 0.02194393426179886, -0.043291568756103516, -0.0008348235860466957, 0.02319617010653019, -0.010248950682580471, 0.005992840975522995, 0.0454382561147213, 0.004774147644639015, 0.0037157104816287756, 0.007479870226234198, -0.014795757830142975, 0.0097868163138628, -0.02887595258653164, -0.008288606069982052, -0.024135347455739975, 0.029606422409415245, -0.003130588447675109, 0.0008991124923340976, 0.005008941516280174, 0.0038275171536952257, 0.017501480877399445, -0.013223009184002876, 0.022435884922742844, -0.025775179266929626, -0.007282345090061426, -0.042725078761577606, 0.05002978444099426, -0.03024744801223278, 0.0048934081569314, 0.025968976318836212, 0.012499992735683918, -0.022734034806489944, -0.005284731741994619, 0.0331842377781868, 0.005266096908599138, -0.027713162824511528, -0.02985985204577446, -0.026654725894331932, -0.00144044344779104, -0.02340487577021122, 0.011471371166408062, -0.00564996711909771, 0.00437164306640625, 0.01295467372983694, -0.03336312994360924, -0.0027001325506716967, 0.003711983561515808, -0.029189011082053185, 0.0016389003721997142, 0.02857780084013939, -0.020244471728801727, -0.007200353778898716, -0.005854946095496416, 0.009130883030593395, 0.011456463485956192, -0.026371480897068977, 0.029874758794903755, -0.008989261463284492, -0.025566473603248596, -0.003592723049223423, 0.03711983561515808, -0.021809766069054604, -0.007122088689357042, -0.016338691115379333, 0.027176490053534508, -0.013543521985411644, 0.03610612079501152, -0.009302319958806038, 0.0064624291844666, -0.00564996711909771, -0.03902800381183624, 0.004539353307336569, 0.03682168573141098, 0.0037641599774360657, -0.03392961621284485, -0.014847934246063232, 0.01644304394721985, 0.031335700303316116, 0.0021988656371831894, -0.01174716092646122, 0.015503866598010063, -0.01393111888319254, 0.006287265103310347, -0.006503425072878599, 0.012507446110248566, 0.0283989105373621, 0.005206466652452946, 0.04791291058063507, 0.0007081092917360365, -0.006413979455828667, 0.03021763265132904, -0.004755512811243534, 0.006976739969104528, -0.03196181729435921, -0.014110010117292404, 0.03255812078714371, -0.011292479932308197, 0.019663076847791672, -0.008378051221370697, 0.004367916379123926, 0.012581984512507915, -0.03187237307429314, -0.013662782497704029, -0.021183649078011513, -0.009175606071949005, 0.019290387630462646, 0.004293378442525864, -0.004546807147562504, 0.004382824059575796, -0.018694086000323296, 0.030828842893242836, 0.0070885466411709785, -0.0011422921670600772, 0.021109111607074738, 0.025238506495952606, 0.03732854127883911, 0.03571852296590805, 0.01811269111931324, -0.011314840987324715, -0.03798447549343109, 0.005754319950938225, 0.011389379389584064, 0.0331842377781868, 0.005385357420891523, 0.02965114638209343, 0.012350916862487793, -0.007550681475549936, 0.02453785017132759, -0.0005054596113041043, 0.001600699732080102, -0.0022286807652562857, 0.0014898247318342328, 0.03479425609111786, 0.013685144484043121, 0.026282036677002907, 0.03592722862958908, -0.012298740446567535, 0.021869396790862083, 0.009339588694274426, 0.042098961770534515, 0.02358376607298851, 0.0018764896085485816, -0.004006408154964447, 0.0003007135237567127, 0.007826471701264381, -0.02233153209090233, -0.0077892025001347065, 0.010837798938155174, -0.012045311741530895, 0.004759239964187145, -0.004960492253303528, -1.2112395779695362e-05, -0.005989113822579384, -0.0038722397293895483, -0.005769227631390095, -0.006820210721343756, 0.005016395356506109, 0.005702143535017967, 0.006924563553184271, -0.011024143546819687, -0.005657420493662357, -0.006358076352626085, 0.0006615231977775693, 0.027608809992671013, 0.0028231199830770493, -0.02349432185292244, 0.00148889294359833, 0.0030597776640206575, 0.040965985506772995, 0.026878338307142258, -0.009838992729783058, 0.0028976579196751118, 0.02274894341826439, 0.0011665169149637222, -0.008966900408267975, 0.040727466344833374, -0.043649349361658096, 0.01271615270525217, 0.01706916093826294, 0.0018839434487745166, -0.01781453937292099, 0.0007691371720284224, 0.009212874807417393, 0.015131177380681038, 0.005832584574818611, 0.008556941524147987, -0.020110303536057472, 0.027474641799926758, -0.013774589635431767, -0.004658613819628954, -0.0036076304968446493, -0.026118053123354912, 0.0002809144207276404, 0.002062834333628416, -0.012932311743497849, -0.026893246918916702, -0.020661884918808937, -0.03252830728888512, 0.010099874809384346, -0.040280237793922424, -0.002439250238239765, -0.02438877522945404, -0.010174412280321121, -0.006920836865901947, 0.011516093276441097, -0.00813207682222128, 0.006592870224267244, -0.022555144503712654, 0.006380437407642603, 0.006879840977489948, -0.012596892192959785, 0.0008194501860998571, -0.017024438828229904, 0.03813355043530464, -0.020885497331619263, -0.029755499213933945, -0.016934992745518684, 0.02534285932779312, -0.015831833705306053, 0.043321382254362106, 0.024910539388656616, -0.006451248656958342, -0.026535464450716972, -0.004293378442525864, 0.019707800820469856, 0.004125668667256832, 0.02507452294230461, -0.03255812078714371, 0.01769527979195118, 0.006022655870765448, 0.01814250648021698, 0.0014460337115451694, 0.040757279843091965, -0.0018550599925220013, 0.042605817317962646, -0.014877749606966972, 0.01173225324600935, -0.030649952590465546, -0.0167411956936121, -0.01638341322541237, -0.009369404055178165, 0.007371790707111359, 0.006037563551217318, 0.008400412276387215, 0.013983295299112797, 0.012634160928428173, 0.012984488159418106, 0.020005950704216957, 0.00299269356764853, 0.0029498343355953693, 0.02173522859811783, 0.00484868511557579, 0.009652648121118546, 0.0364639014005661, -0.020945128053426743, -0.0047256979160010815, 0.010398026555776596, 0.022435884922742844, -0.04609419032931328, -0.020140118896961212, -0.01972270756959915, 0.02328561618924141, 0.0014152869116514921, -0.02462729625403881, -0.01873880811035633, 0.02617768384516239, -0.013618060387670994, 0.03410850837826729, 0.006302172783762217, -0.0031790381763130426, 0.018455564975738525, 0.0352712981402874, 0.01653248816728592, 0.009607925079762936, 0.015310068614780903, 0.005210193805396557, 0.003711983561515808, 0.017889076843857765, -0.012499992735683918, -0.012507446110248566, 0.011165766045451164, 0.02926354855298996, 0.03694094344973564, 0.031454961746931076, -0.014833026565611362, 0.031156810000538826, 0.020423363894224167, 0.01793380081653595, 0.018217043951153755, -0.0029982838314026594, -0.0015084592159837484, -0.0019081681966781616, -0.017382219433784485, -0.012865227647125721, 0.01515353936702013, -0.028264742344617844, -0.01273106038570404, 0.01939474046230316, -0.0047033363953232765, 0.006559328176081181, -0.01802324503660202, 0.03902800381183624, -0.010017883032560349, -0.012142211198806763, -0.00031492230482399464, 0.0016454224241897464, -0.003521912032738328, 0.012708698399364948, -0.031037548556923866, 0.007356883026659489, -0.026565279811620712, -0.009809177368879318, -0.006913383025676012, 0.0032144435681402683, -0.02534285932779312, 0.031216438859701157, -0.0010714811505749822, 0.0493142232298851, 0.00835569016635418, 0.027340473607182503, -0.021869396790862083, 0.0001801718899514526, -0.02546212077140808, -0.0385509617626667, 0.009033983573317528, 0.0014683951158076525, 0.005344361998140812, -0.018455564975738525, -0.0017740001203492284, -0.016577212139964104, -0.007915916852653027, -0.0023162628058344126, -0.0008753535221330822, 0.0112104881554842, -0.00406603841111064, -0.003784657921642065, 0.0025734181981533766, 0.006700950209051371, -0.009302319958806038, 0.008154437877237797, -0.006283538416028023, 0.03363146632909775, 0.014400707557797432, 0.006600324064493179, 0.016815733164548874, -0.0195736326277256, 0.0028287102468311787, -0.027698254212737083, 0.015414421446621418, 0.0034995507448911667, 0.03777576982975006, -0.013468984514474869, 0.004565441515296698, -0.026103144511580467, 0.026192590594291687, -0.025685733184218407, -0.040697649121284485, 0.004565441515296698, -0.0023889371659606695, 0.013536068610846996, 0.02277875877916813, -0.0013295684475451708, 0.016398319974541664, 0.01841084286570549, 0.023509228602051735, 0.013819311745464802, -0.025119245052337646, 0.02370302751660347, -0.005318273790180683, -0.03306497633457184, 0.01650267466902733, -0.007759387139230967, 0.01124030351638794, -0.015966001898050308, -0.008124622516334057, 0.05038756877183914, 0.026222405955195427, -0.024075716733932495, 0.007066185586154461, -0.028861043974757195, -0.00035056070191785693, 0.0322897844016552, -0.011784429661929607, 0.002728084335103631, -0.01464668195694685, -0.007166811730712652, 0.007081093266606331, 0.0015503866598010063, 0.011888782493770123, 0.0009745820425450802, -0.001319319475442171, 0.0122540183365345, -0.00734570249915123, -0.030500875785946846, -0.014669043011963367, -0.011180673725903034, -0.0005594995454885066, -0.018664270639419556, 0.00563505943864584, 0.00022209942108020186, 0.009630286134779453, -0.020915312692523003, 0.003408242017030716, 0.004565441515296698, 0.013021757826209068, -0.03726891055703163, 0.025968976318836212, 0.0059332107193768024, -0.019499093294143677, -0.008445135317742825, 0.005202739965170622, 0.01617470756173134, -0.005959298927336931, -0.010137143544852734, -0.015652943402528763, -0.002983376383781433, -0.010524740442633629, -0.01811269111931324, -0.030113279819488525, 0.030769212171435356, -0.054293349385261536, 0.0033728363923728466, -0.023479413241147995, 0.020482992753386497, 0.00032703467877581716, 0.011769521981477737, -0.007714664563536644, -0.018723901361227036, -0.02447822131216526, 0.04689919576048851, -0.005553067661821842, -0.009354496374726295, 0.013230463489890099, -0.00014360177738126367, -0.003002010751515627, 0.024761464446783066, -0.018574824556708336, 0.03163385018706322, -0.007006555330008268, 0.010271311737596989, 0.00563505943864584, 0.010755808092653751, -0.005195286124944687, 0.010047698393464088, 0.04606437310576439, -0.012529808096587658, 0.01004024501889944, -0.00206656102091074, -0.007707210723310709, 0.021586153656244278, -0.018246859312057495, -0.03822299465537071, -0.012760874815285206, -0.02230171672999859, -0.01416963990777731, -0.0041741179302334785, -0.019901597872376442, 0.00734570249915123, 0.0030989099759608507, -0.004103307146579027, 0.012537261471152306, 0.006041290238499641, 0.014020564034581184, -0.006495971232652664, -0.01293976604938507, 0.005489710718393326, 0.017948707565665245, 0.015369698405265808, -0.00718917278572917, 0.016428135335445404, 0.0016491493443027139, -0.009615379385650158, -0.027161581441760063, -0.030500875785946846, -0.007021463010460138, 0.02827964909374714, 0.00753950048238039, -0.011359564028680325, -0.00014360177738126367, -0.012827958911657333, 0.0065965973772108555, -0.018843160942196846, 0.01972270756959915, -0.01632378250360489, -0.0005925756995566189, 0.0009000442223623395, 0.008616572245955467, 0.016845548525452614, 0.0337805412709713, 0.0060599250718951225, 0.0023330338299274445, -0.026103144511580467, -0.027877144515514374, -0.022018471732735634, -0.0021056935656815767, 0.053041115403175354, -0.022048287093639374, -0.007751933299005032, -0.03634464368224144, -0.015474052168428898, -0.005400265101343393, -0.039743565022945404, 0.020676791667938232, -0.0334823913872242, 0.03208107873797417, -0.01463177427649498, 0.025760270655155182, 0.0011180673027411103, -0.0004132190370000899, 0.024075716733932495, -0.02510433830320835, 0.01814250648021698, -0.026118053123354912, -0.0016230610199272633, -0.03801428899168968, -0.009607925079762936, -0.014833026565611362, -0.02008049003779888, 0.04442454129457474, 0.00922032818198204, 0.019633261486887932, 0.01265652198344469, -0.0053890845738351345, -0.011396832764148712, 0.017233144491910934, -0.025536658242344856, -0.023956455290317535, 0.014117463491857052, -0.031991634517908096, -0.0170393455773592, 0.010226588696241379, 0.022972555831074715, -0.030500875785946846, -0.024075716733932495, 0.02971077524125576, -0.03279663994908333, -0.021422170102596283, 0.015295160934329033, -0.010830345563590527, -0.005709597375243902, 0.0077668409794569016, 0.0026423658709973097, -0.008273698389530182, 9.65497747529298e-05, -0.01268633734434843, -0.015011916868388653, -0.02977040596306324, 0.0054114460945129395, -0.032051265239715576, 0.01268633734434843, -0.027996405959129333, -0.013223009184002876, -0.030918288975954056, -0.0114341014996171, -0.02507452294230461, 0.02528322860598564, 0.0003547534579411149, -0.03500296175479889, -0.005791588686406612, 0.014318715780973434, -0.003618811257183552, 0.01629396714270115, -0.0007612174958921969, -0.025089431554079056, 0.02441859059035778, 0.0036803048569709063, 0.02830946445465088, -0.005608971230685711, -0.008765648119151592, 0.002703859470784664, 0.001424604095518589, -0.011724798940122128, 0.01864936389029026, -0.004721971228718758, -2.402097834419692e-06, -0.011344656348228455, -0.026207497343420982, 0.052116844803094864, -0.04719734936952591, -0.01466158963739872, -0.012805597856640816, -0.022614775225520134, 0.0033169330563396215, 0.03431721404194832, -0.010055151768028736, -0.010681269690394402, 0.0239117331802845, -0.002135508693754673, 0.020438270643353462, -0.0195736326277256, 0.012745967134833336, 0.008825277909636497, 0.006715857889503241, -0.004379096906632185, -0.02230171672999859, 0.013483892194926739, -0.0012103079352527857, 0.007248803041875362, 0.003024372039362788, -0.012768329121172428, 0.005974206607788801, 0.020348824560642242, -0.007938277907669544, 0.001464668195694685, 4.1519895603414625e-05, -0.0224209763109684, -0.015638034790754318, 0.0034753258805722, -0.01686045527458191, -0.004789054859429598, 0.004546807147562504, -0.0006591938436031342, 0.02170541323721409, 0.007073639426380396, -0.002113147173076868, 0.016428135335445404, 0.010644000954926014, 0.008273698389530182, 0.03553963452577591, 0.02857780084013939, -0.005269824061542749, -0.013483892194926739, 0.020706607028841972, -0.017113883048295975, 0.014162186533212662, 0.03315442427992821, -0.016279060393571854, 0.00907125324010849, 0.0028678427916020155, -0.0011721072951331735, 0.0030336894560605288, -0.010442748665809631, -0.0167411956936121, 0.0037101199850440025, 0.0003834039089269936, 0.008206614293158054, -0.010807984508574009, 0.01906677521765232, -0.009734639897942543, -0.014937379397451878, -0.011344656348228455, 0.012611799873411655, 0.010949606075882912, -0.0072525301948189735, 0.02807094343006611, 0.00598538713529706, -0.012872681953012943, 0.07435893267393112, -0.026475833728909492, -0.0026442292146384716, -0.0016128121642395854, 0.0008501970442011952, 0.015064094215631485, -0.03297553211450577, 0.02259986847639084, -0.015861649066209793, -0.015324976295232773, -0.00041438371408730745, -0.011009235866367817, 0.01129993423819542, -0.04636252671480179, 0.006633866112679243, -0.026610001921653748, 0.011665169149637222, -0.014281447045505047, 0.00612700916826725, -0.016398319974541664, -0.002560374094173312, 0.021273095160722733, -0.0014152869116514921, -0.029666053131222725, 0.012775782495737076, 0.007751933299005032, 0.001048188074491918, -0.0070960004813969135, -0.024821095168590546, -0.02400117926299572, -0.005199013277888298, -0.0026833615265786648, -0.0069506517611444, 0.015652943402528763, 0.02355395257472992, -0.01927548088133335, 0.018217043951153755, -0.02827964909374714, 0.00600029481574893, -0.002968468703329563, 0.012738513760268688, -0.000695996917784214, -0.006592870224267244, 0.028264742344617844, -0.02483600191771984, -0.003275937167927623, -0.001982706133276224, -0.002474655630066991, -0.014736127108335495, 0.01273106038570404, 0.014177093282341957, -0.0066040512174367905, -0.010226588696241379, 0.026058422401547432, -0.015265345573425293, -0.010673816315829754, 0.017859261482954025, 0.020989850163459778, 0.016696471720933914, -0.021228371188044548, -0.018574824556708336, -0.003328113816678524, -0.004919496364891529, -0.008176798932254314, 0.005225101485848427, -0.028443632647395134, 0.03249849006533623, 0.03619556501507759, -0.010204227641224861, -0.004192752297967672, -0.012581984512507915, -0.0067046768963336945, -0.010979421436786652, 0.0034380571451038122, -0.0012615526793524623, -0.007759387139230967, -0.014110010117292404, -0.03521166741847992, -0.015384606085717678, 0.002975922543555498, -0.008638933300971985, -0.01745675876736641, -0.001136701786890626, 0.018902791664004326, -0.011903690174221992, -0.017412034794688225, 0.008750740438699722, 0.018336303532123566, 0.02352413721382618, -0.013536068610846996, 0.013640421442687511, -0.01855991780757904, -0.00908616092056036, 0.022122826427221298, 0.014445429667830467, 0.0027653533034026623, 0.009339588694274426, -0.0007663419819436967, 0.003288981271907687, 0.008966900408267975, -0.010696177370846272, 0.025387581437826157, 0.011918597854673862, -0.013454076834022999, 0.0017581608844920993, 0.008728379383683205, -0.014057832770049572, 0.026744170114398003, 0.009660101495683193, -0.0073680635541677475, 0.004960492253303528, -0.0038536053616553545, 0.011612992733716965, 0.012499992735683918, 0.01885806955397129, -0.018395934253931046, -0.011314840987324715, 0.016577212139964104, 0.008206614293158054, -0.00805753841996193, -0.004338101018220186, -0.0109868748113513, -0.018485380336642265, -0.0008110646740533412, -0.013588245026767254, 0.04496121406555176, -0.005079752765595913, 0.0021727774292230606, -0.019663076847791672, 0.008638933300971985, 0.00901162251830101, 0.00405113073065877, -0.0965413898229599, -0.005251189693808556, -0.005325727164745331, 0.012306194752454758, -0.0026926787104457617, -0.013126110658049583, -0.01273106038570404, 0.010442748665809631, 0.00974209327250719, -0.013081387616693974, -0.00975700095295906, 0.026848522946238518, -0.0025324225425720215, 0.011709892190992832, -0.016577212139964104, 0.00033961294684559107, -0.015802018344402313, 0.042337484657764435, 0.02191411890089512, -0.011665169149637222, 0.0013724276795983315, 0.020721513777971268, 0.01709897629916668, -0.005087206140160561, 0.031246254220604897, -0.008698564022779465, 0.0114341014996171, -0.02926354855298996, 0.000113495480036363, 0.022674405947327614, 0.00230508204549551, 0.011180673725903034, -0.0038610592018812895, -0.006369256880134344, 0.011314840987324715, 0.020766237750649452, -0.013856581412255764, 0.03369109705090523, -0.011314840987324715, -0.0013938572956249118, -0.027981499210000038, -0.002377756405621767, 5.4651365644531325e-05, 0.006078559439629316, 7.296553667401895e-05, -0.008303513750433922, 0.01620452292263508, -0.005567975342273712, 0.0036430361215025187, -0.001480507431551814, -0.022495513781905174, -0.0014367165276780725, 0.006413979455828667, -0.00929486658424139, 0.001704121008515358, -0.03756706044077873, 0.010345849208533764, 0.01095705945044756, 0.020140118896961212, 0.0011804928071796894, -0.004315739963203669, 0.029606422409415245, -0.021273095160722733, 0.004077218938618898, -0.0009950798703357577, 0.004949311260133982, -0.016785917803645134, 0.013834219425916672, -0.005031303036957979, -0.006872387137264013, 0.010919790714979172, 0.006723311729729176, -0.015429329127073288, -0.002321853069588542, -0.00974209327250719, -0.027608809992671013, -0.028980305418372154, -0.007140723522752523, -0.000257854291703552, 0.008445135317742825, 0.013327362947165966, 0.01799342967569828, 0.0064400676637887955, -0.001512186019681394, 0.003456691512838006, -0.014288900420069695, -0.029397716745734215, -0.007953185588121414, -0.0013752228114753962, -0.0013985158875584602, 0.003980319481343031, 0.004356735851615667, -0.026132959872484207, 0.01650267466902733, -0.005471076350659132, 0.03574834018945694, -0.004226294346153736, -0.05658911541104317, -0.030709583312273026, -0.020035766065120697, 0.010725992731750011, 0.013118656352162361, 0.0019510274287313223, -0.01796361431479454, 0.031723298132419586, 0.005597790237516165, -0.020900405943393707, 0.013811858370900154, -0.005560521502047777, 0.005213920492678881, 0.01617470756173134, -0.02956170029938221, -0.004673521500080824, 0.004785328172147274, 0.025149060413241386, -0.0021802312694489956, -0.01273106038570404, 0.014415614306926727, 0.0024783825501799583, -0.0028212566394358873, 0.024493128061294556, -0.012283832766115665, -0.0014367165276780725, 0.007248803041875362, 0.019141312688589096, 0.0095632029697299, -0.012313648127019405, 0.004207659978419542, 0.016487766057252884, 0.020945128053426743, 0.011590631678700447, -0.027787700295448303, -0.03601667657494545, -0.041562288999557495, 0.023419784381985664, 0.013618060387670994, -0.0033728363923728466, -0.024045901373028755, 0.027176490053534508, -0.009376858361065388, -0.020557532086968422, -0.002519378438591957, -0.019588539376854897, -0.015682756900787354, 0.010368211194872856, -0.03840188682079315, 0.00854948814958334, -0.0109868748113513, 0.006063651759177446, 9.643330849939957e-05, 0.010271311737596989, 0.008005362004041672, -0.010524740442633629, -0.007714664563536644, 5.395257176132873e-05, -0.03187237307429314, -0.01129993423819542, -0.006734492257237434, 0.0008012815960682929, -0.013834219425916672, -0.000992284738458693, 0.006015202030539513, -0.010181866586208344, -0.003203262807801366, -0.016905177384614944, 0.00832587480545044, 0.031782928854227066, 0.0014851661399006844, 0.007983000949025154, -0.027578994631767273, 0.011545908637344837, -0.029487162828445435, -0.006641319952905178, 0.03372091054916382, 0.011314840987324715, -0.009645193815231323, 0.015682756900787354, -0.0011851513991132379, 0.02343469113111496, -0.007699756883084774, 0.016994623467326164, -0.007159357890486717, -0.01665174961090088, -0.027265936136245728, -0.00636553019285202, 0.012507446110248566, -0.01396093424409628, -0.020199749618768692, 0.014825573191046715, -0.00922032818198204, 0.040995802730321884, -0.01220929529517889, 0.004953038413077593, -0.01416963990777731, -0.025983884930610657, -0.0002510992926545441, 0.0023069456219673157, 0.0026591368950903416, 0.013737320899963379, -0.023509228602051735, -0.0027411284390836954, -0.0018681042129173875, -0.008363143540918827, -0.015220623463392258, -0.00119167345110327, -0.01168753020465374, -0.004043676890432835, 0.04704827442765236, -0.031246254220604897, 0.018217043951153755, -0.04904588684439659, 0.002008794341236353, -0.025894438847899437, -0.027012506499886513, -0.01906677521765232, 0.004092126619070768, -0.04636252671480179, 0.015697665512561798, -0.026848522946238518, 0.020214656367897987, -0.018992237746715546, 0.005176651757210493, 0.012321101501584053, 0.0014432385796681046, -0.011814245022833347, 0.016308875754475594, -0.0031809015199542046, 0.016159798949956894, 0.004584075883030891, 0.013953479938209057, -0.0076401266269385815, -0.021824674680829048, 0.042397111654281616, 0.009734639897942543, 0.0021709140855818987, 0.0018177911406382918, 0.006954378914088011, -0.009123429656028748, -0.0022789938375353813, 0.031305886805057526, -0.026431111618876457, 0.007975546643137932, -0.002791441511362791, 0.011486277915537357, -0.002783987671136856, -0.02531304396688938, -0.007744479458779097, 0.01626415364444256, -0.01751638762652874, -0.005176651757210493, -0.003009464591741562, -0.003536819713190198, 0.0001819188764784485, 0.013372085057199001, -0.011918597854673862, -0.007122088689357042, 0.004830050747841597, 0.010368211194872856, -0.01879843883216381, 0.0011581314029172063, -0.008735832758247852, -0.011039051227271557, 0.010696177370846272, -0.017978522926568985, 0.021183649078011513, -0.03246867656707764, 0.021526522934436798, 0.0258497167378664, -0.008035177364945412, -0.015891464427113533, -0.007546954322606325, -0.002074014861136675, 0.005225101485848427, 0.005064845085144043, -0.013498799875378609, -0.02203338034451008, 0.002169050509110093, 0.0053890845738351345, -0.02489563263952732, -0.013498799875378609, 0.00951847992837429, 0.015354791656136513, -0.012060219421982765, -0.026028607040643692, 0.02991948090493679, -0.01167262252420187, -0.005657420493662357, -0.014974648132920265, 0.0032125802244991064, 0.007722118403762579, 0.0037622966337949038, -0.01418454758822918, 0.007274891249835491, -0.016845548525452614, 0.0059033953584730625, -0.010152051225304604, -0.0026218679267913103, 0.00029954887577332556, 0.005102113820612431, -0.0065742358565330505, 0.007230168674141169, -0.02507452294230461, -0.01518335472792387, -0.005776681005954742, -0.004017588682472706, -0.012850320897996426, 0.0124776316806674, 0.03700057417154312, 0.005519525613635778, -0.0013249097391963005, 0.0010621639667078853, 0.005515798926353455, 0.011598085053265095, 0.0032069897279143333, 0.00611210148781538, -0.00742769381031394, -0.00574686611071229, 0.00971227791160345, 0.03601667657494545, 0.00044513054308481514, 0.01246272400021553, 0.005560521502047777, 0.004080945625901222, -0.015004463493824005, -0.005016395356506109, 0.02313653938472271, 0.0067121307365596294, 0.0077817486599087715, 0.015064094215631485, -0.01488520298153162, 0.0016854865243658423, 0.00502012250944972, -0.014997010119259357, 0.013461530208587646, 0.014095102436840534, 0.022883111611008644, -0.004323193803429604, 0.018843160942196846, -0.007520866114646196, 0.007267437409609556, 0.006056197918951511, 0.014430521987378597, -0.0013100021751597524, 0.009570656344294548, 0.02501489222049713, 0.025998791679739952, 0.015831833705306053, 0.019871782511472702, -0.0035517271608114243, 0.008385504595935345, -0.018664270639419556, -0.005400265101343393, -0.006894748657941818, 0.004557987675070763, -0.0033150697126984596, 0.006842572242021561, 0.0032833910081535578, 0.020363733172416687, -0.012619253247976303, -0.013394447043538094, 0.019260572269558907, 0.01715860702097416, -0.013834219425916672, -0.018067967146635056, 0.0035591810010373592, -0.006369256880134344, -0.010278766043484211, 0.012738513760268688, -0.03565889224410057, -0.004546807147562504, 0.009838992729783058, 0.004953038413077593, -0.0008711607661098242, -0.011501185595989227, 0.02376265823841095, -0.00402131536975503, -0.00904143787920475, -0.016040539368987083, -0.0027504456229507923, 0.00588848814368248, -0.02008049003779888, -0.01784435473382473, 0.00012904360482934862, -0.03533092886209488, 0.0005855877534486353, -0.01700953021645546, -0.01241800095885992, 0.0016584665281698108, -0.00022501105559058487, 0.01578710973262787, 0.019797245040535927, -0.017829446122050285, -0.005459895357489586, 0.013401900418102741, -7.541131344623864e-05, 0.01220929529517889, 0.01879843883216381, 0.0020833320450037718, 0.0071109081618487835, -0.000807803648058325, -0.01793380081653595, -0.001383608323521912, 0.0005581019213423133, -0.015638034790754318, 0.009242690168321133, -0.0032871179282665253, -0.0027243574149906635, -0.021228371188044548, -0.025804994627833366, -0.005362996365875006, -0.003169720759615302, 0.005866126623004675, 0.013603152707219124, 0.0038200633134692907, 0.010696177370846272, -0.01617470756173134, 0.010748353786766529, -0.009317227639257908, 0.011568269692361355, 0.0026777712628245354, 0.00033588605583645403, 0.0005921098054386675, -0.006141916383057833, 0.0019454371649771929, 0.01460195891559124, 0.007405332755297422, -0.01421436294913292, 0.011061413213610649, 0.002552920486778021, -0.021138926967978477, -0.007833925075829029, 0.002910702023655176, -0.015474052168428898, -0.024105532094836235, 0.020005950704216957, 0.005974206607788801, 0.006018929183483124, -0.030023833736777306, -0.03030707873404026, 0.006108374334871769, -0.015697665512561798, -0.006354349199682474, 0.02218245528638363, 0.005251189693808556, -0.01653248816728592, -0.01128502655774355, -0.004960492253303528, -0.00015396719390992075, 0.020870590582489967, 0.0020982397254556417, -0.0019566179253160954, -0.009048891253769398, 0.012216748669743538, -0.002696405630558729, 0.020676791667938232, -0.0030597776640206575, 0.01650267466902733, 0.0019510274287313223, 0.011769521981477737, 0.018455564975738525, 0.013275186531245708, 0.007744479458779097, 0.009287412278354168, 0.021302908658981323, -0.014430521987378597, -0.03196181729435921, 0.009421580471098423, 0.008400412276387215, 0.016249245032668114, -0.005989113822579384, -0.015548589639365673, -0.010338395833969116, -0.00908616092056036, 4.996363350073807e-05, -0.04791291058063507, 0.00899671483784914, 0.010368211194872856, -0.0038871474098414183, -0.0037977020256221294, -0.0013901303755119443, -0.021183649078011513, 0.01492992602288723, -0.01739712804555893, -0.004058584570884705, 0.005441260989755392, 0.03336312994360924, 0.02857780084013939, -0.0037734771613031626, 0.0034306033048778772, -0.0015811335761100054, -0.0056238784454762936, -0.0343768447637558, -0.0022286807652562857, -0.01793380081653595, 0.0027877145912498236, 0.025804994627833366, -0.010919790714979172, 0.006618958432227373, -0.004882227163761854, -0.014288900420069695, 0.006499697919934988, -0.007349429186433554, 0.026028607040643692, -0.010226588696241379, 0.009920984506607056, 0.000123919133329764, -0.008489858359098434, 0.026341665536165237, -0.008668748661875725, 0.030769212171435356, -0.010301127098500729, -0.002849208191037178, -0.02340487577021122, -0.004677248187363148, 0.005098387133330107, 0.02447822131216526, 0.0016631251201033592, 0.0032442586962133646, 0.009734639897942543, -0.00025366153568029404, -0.007010282017290592, -0.01593618653714657, 0.025715548545122147, -0.01632378250360489, -0.01686045527458191, -0.0014506923034787178, 0.011247756890952587, 0.009317227639257908, -0.03610612079501152, -0.02459748089313507, 0.01879843883216381, -0.009242690168321133, -0.02283838950097561, 0.021839581429958344, 0.01945437118411064, -0.00405113073065877, 0.013111202977597713, -0.012425455264747143, 0.004073491785675287, 0.005564248189330101, 0.004472269210964441, -0.008303513750433922, -0.020453177392482758, 0.007423967123031616, -0.016070354729890823, 0.003875966649502516, -0.0013379539595916867, -0.020632069557905197, 0.02221227064728737, -0.018067967146635056, -0.015198261477053165, 0.013223009184002876, -0.008944538421928883, 0.005828857887536287, 0.0283989105373621, 0.0044685425236821175, 0.010062606073915958, -0.013103748671710491, 0.001960344612598419, 0.01656230352818966, 0.006913383025676012, -0.0022883110214024782, 0.018753716722130775, -0.003488369984552264, 0.0008515946101397276, 0.011560816317796707, -0.0072525301948189735, -2.9363825888140127e-05, 0.004673521500080824, -0.00859421119093895, -0.018217043951153755, 0.006816484034061432, 0.009406672790646553, 0.0018271083245053887, 0.0065667820163071156, 0.011329748667776585, 0.01460195891559124, 0.0044759963639080524, 0.0015652942238375545, 0.014013110660016537, -0.017143698409199715, 0.005042483564466238, 0.01101669017225504, 0.003113817423582077, -0.005854946095496416, 0.025119245052337646, -0.015265345573425293, 0.009675009176135063, 0.0003922552859876305, -0.005948118399828672, 0.016815733164548874, 0.017590925097465515, -0.0076326727867126465, 0.0028343007434159517, 0.01924566552042961, -0.013297547586262226, 0.010897429659962654, 0.022435884922742844, -0.014221816323697567, -0.006164277903735638, -0.009764454327523708, -0.01466158963739872, -0.023300522938370705, -0.01147882454097271, -0.025626102462410927, 0.008020269684493542, 0.0021299181971699, -0.011680076830089092, 0.015339883975684643, 0.0028790233191102743, 0.017143698409199715, 0.0005226964713074267, -0.0018597187008708715, -0.008765648119151592, 0.012373278848826885, 0.030292170122265816, 0.015213169157505035, 0.017859261482954025, -0.004714517388492823, -0.008400412276387215, 0.0001487262488808483, -0.004673521500080824, 0.026371480897068977, 0.001087320502847433, 0.0019864330533891916, -0.00437164306640625, -0.012880135327577591, 0.010211681947112083, -0.007498505059629679, -0.011799337342381477, 0.012276379391551018, 0.004285924602299929, 0.006276084575802088, -0.022197363898158073, 0.019931413233280182, 0.019886691123247147, -0.00441636610776186, -0.0016994623001664877, 0.011665169149637222, 0.004658613819628954, -0.009794269688427448, 0.026401296257972717, 0.007006555330008268, 0.01100178249180317, -0.010785622522234917, -0.0020367458928376436, 0.021288001909852028, -0.01680082455277443, 0.004979126621037722, -0.009168151766061783, -0.014721219427883625, -0.00905634555965662, 0.0011469507589936256, 0.01192605122923851, -0.006257450208067894, -0.014490152709186077, -0.0071183620020747185, 0.013208102434873581, -0.029904574155807495, -0.019171128049492836, 0.0007570247398689389, -0.006630139425396919, 0.019260572269558907, 0.009794269688427448, 0.00574686611071229, -0.01835121214389801, 0.010316034778952599, 0.006022655870765448, 0.003009464591741562, 0.0017982249846681952, -0.003473462536931038, 0.020825866609811783, -0.014005656354129314, -0.028741784393787384, 0.020169934257864952, 0.012291287072002888, -0.010793076828122139, -0.003359792288392782, -0.023091817274689674, 0.04373879358172417, -0.012611799873411655, -0.005992840975522995, 0.006879840977489948, 0.008870000950992107, -0.007953185588121414, 0.011083774268627167, -0.0022063194774091244, -0.03604649007320404, -0.0015997679438441992, -0.022584959864616394, -0.0068761142902076244, -0.004994033835828304, -0.0016305148601531982, -0.001231737551279366, 0.0009298593504354358, -0.0045952568762004375, -0.025029800832271576, -0.01626415364444256, 0.04600474238395691, 0.008720925077795982, -0.010904883034527302, 0.01128502655774355, 0.002890204079449177, 0.01751638762652874, -0.004505811259150505, 0.019439464434981346, 0.0017879760125651956, -0.014296353794634342, -0.012895043008029461, -0.001673374092206359, 0.005426353309303522, -0.001729277428239584, 0.008974353782832623, -0.013200648128986359, 0.005314546637237072, 0.0301878172904253, 0.01632378250360489, -0.007692303042858839, -0.0025883258786052465, -0.0033896074164658785, 0.021213464438915253, 0.0224209763109684, -0.0037883848417550325, -0.04657123237848282, 0.01858973316848278, 0.008005362004041672, 0.014862841926515102, 0.011307387612760067, 0.011359564028680325, 0.005724504590034485, -0.003344884840771556, 0.015518774278461933, 0.013722413219511509, 0.00031795038376003504, 0.01578710973262787, 0.004360462538897991, 0.014609413221478462, -0.01960344798862934, 0.03351220488548279, -0.0021578699816018343, 0.03336312994360924, 0.012268925085663795, -0.00808735378086567, 0.010144597850739956, 0.025327952578663826, -0.002409435110166669, -0.003367246128618717, 0.016636840999126434, -0.01222420297563076, -0.0016305148601531982, 0.0008618435822427273, 0.01692008599638939, -0.03595704585313797, -0.004069765098392963, 0.005590336862951517, -0.02516396902501583, 0.013603152707219124, -0.022376254200935364, -0.026326758787035942, -0.009861353784799576, 0.015682756900787354, 0.009399219416081905, 0.0008683656342327595, 0.022495513781905174, 0.005079752765595913, 0.01778472401201725, -0.010412933304905891, -0.02510433830320835, -0.0012615526793524623, 0.043977316468954086, 0.019111497327685356, -0.006749399937689304, 0.0012857774272561073, -0.01149373222142458, -0.0021019666455686092, 0.026923060417175293, 0.031514592468738556, -0.01772509329020977, -0.010189319960772991, 0.0011385652469471097, 0.023032186552882195, 0.011404287070035934, -0.014982102438807487, 0.0002920950937550515, 0.01903695985674858, 0.0009261324303224683, -0.004885954316705465, -0.00068854313576594, 0.0023870738223195076, 0.012850320897996426, 0.0019659351091831923, -0.020572438836097717, 0.005426353309303522, 0.01832139678299427, -0.009429034776985645, 0.008064992725849152, -0.011262664571404457, -0.010032790713012218, -0.009063798934221268, -0.00584376510232687, -0.0038685130421072245, -0.0020348825491964817, 0.020885497331619263, -0.02325580082833767, 0.0010444612707942724, 0.010398026555776596, 0.00850476510822773, 0.02510433830320835, 0.0064549753442406654, -0.011396832764148712, -0.001336090499535203, -0.007207807153463364, 0.00813207682222128, 0.0003333238128107041, 0.00449835741892457, 0.01954381726682186, 0.004871046636253595, 0.000756093009840697, 0.00010499350901227444, -0.007923370227217674, 0.009242690168321133, 0.025119245052337646, -0.011605538427829742, 0.006436340976506472, -0.013640421442687511, 0.014721219427883625, -0.004121941514313221, 0.0057878619991242886, 0.014110010117292404, 0.013409353792667389, -0.021824674680829048, 0.0034771894570440054, -0.019051866605877876, 0.00742769381031394, 0.0016491493443027139, 0.007476143538951874, 0.011188127100467682, 0.005750592797994614, 0.004889681003987789, -0.007464963011443615, 0.004759239964187145, 0.014445429667830467, -0.00611210148781538, 0.013096295297145844, 0.03327368199825287, -0.00035964499693363905, 0.03428739681839943, 0.012857774272561073, 0.015198261477053165, -0.01662193424999714, -0.011844059452414513, -0.007923370227217674, -0.005221374332904816, -0.00011664004705380648, 0.005996567662805319, -0.0011907416628673673, 0.022584959864616394, 0.002312535885721445, -0.0033523384481668472, 0.006141916383057833, 0.013849127106368542, -0.013864034786820412, -0.01709897629916668, -0.018634455278515816, 0.008199159987270832, -0.009414127096533775, -0.00953338760882616, 0.006235088687390089, -0.005567975342273712, 0.0012811188353225589, 0.03938578441739082, 0.005806496366858482, 0.025596287101507187, -0.010964513756334782, 0.003875966649502516, -0.004114487674087286, 0.015190808102488518, 0.02911447361111641, -0.006756853777915239, -0.014907564036548138, 0.010137143544852734, 0.022078102454543114, -0.02501489222049713, 0.006197819951921701, 0.011739706620573997, 0.006246269680559635, 0.014385799877345562, 0.0031809015199542046, -0.012857774272561073, 0.0056462399661540985, -0.013483892194926739, 0.01439325325191021, 0.015019371174275875, -0.00026041650562547147, -0.012596892192959785, -0.014221816323697567, -0.0025715548545122147, -0.006294718943536282, 0.0030430066399276257, -0.005702143535017967, -0.010733446106314659, 0.007908462546765804, -0.00899671483784914, 0.0331842377781868, 0.022942742332816124, 0.0003801428829319775, -0.0011413603788241744, -0.01488520298153162, 0.0015802017878741026, -0.02567082643508911, 0.012760874815285206, -0.008489858359098434, -0.011352110654115677, -0.0021261912770569324, -0.007006555330008268, 0.01241800095885992, -0.011531000956892967, -0.03404887765645981, -0.006540693808346987, 0.006902202498167753, 0.0010202364064753056, 0.0012056492269039154, -0.0010714811505749822, -0.001865308964625001, 0.00461016409099102, -0.006697223521769047, -0.013923665508627892, -0.028085852041840553, -0.022316623479127884, 0.0034771894570440054, 0.02245079167187214, 0.0037101199850440025, 0.010144597850739956, 0.004319466650485992, 0.017322590574622154, -0.018127597868442535, 0.0020926494617015123, -0.02555156499147415, -0.030023833736777306, -0.018217043951153755, -0.005031303036957979, 0.013729866594076157, 0.0039393240585923195, -0.0037958386819809675, -0.005989113822579384, 0.006879840977489948, 0.015339883975684643, -0.0020907858852297068, 0.007983000949025154, 0.0012820505071431398, -0.0073755173943936825, -0.003089592792093754, 0.01656230352818966, -0.031126994639635086, -0.01847047172486782, -0.004759239964187145, 0.012835413217544556, 0.002111283829435706, -0.018366118893027306, -0.030888473615050316, 0.0055046179331839085, 0.01894751377403736, 0.008706017397344112, -0.020348824560642242, 0.014065287075936794, -0.01578710973262787, -0.007025189697742462, 0.009227782487869263, -0.01638341322541237, 0.007628946099430323, -0.010867614299058914, 0.009704824537038803, -0.0027504456229507923, -0.023628490045666695, 0.01683063991367817, -0.028145480901002884, 0.013819311745464802, -0.0077742948196828365, -0.01694990135729313, -0.016994623467326164, -6.982097693253309e-05, -0.008400412276387215, 0.021019665524363518, -0.012619253247976303, 0.01611507683992386, 0.020408455282449722, -0.008877454325556755, -0.0068761142902076244, -0.017441850155591965, -0.0009256665944121778, -0.02456766553223133, 0.0127012450248003, 0.002903248183429241, 0.010979421436786652, 0.0030225086957216263, -0.0022510422859340906, -0.014810665510594845, -0.03036670945584774, -7.663419819436967e-05, 0.00043860849109478295, 0.007535773795098066, -0.004423819947987795, -9.601111742085777e-06, 0.0006848162156529725, 0.02507452294230461, -0.018872976303100586, 0.002776533830910921, -0.0038349709939211607, -0.03142514452338219, 0.007192899938672781, -0.031514592468738556, 0.0027523089665919542, 0.03422776609659195, -0.0034939604811370373, -0.030739396810531616, -0.009242690168321133, -0.0278026070445776, -0.0009061003802344203, -0.019618354737758636, -0.0014907564036548138, 0.018992237746715546, 0.013685144484043121, 0.009749546647071838, -0.014326169155538082, 0.017799632623791695, 0.012723606079816818, -0.008884908631443977, -0.010062606073915958, -0.0060524712316691875, 0.001104091526940465, -0.012835413217544556, -0.0124776316806674, 0.000575804675463587, -0.020035766065120697, 0.03148477524518967, -0.01858973316848278, -0.0038275171536952257, 0.003328113816678524, 0.001241054735146463, 0.01515353936702013, -0.008146983571350574, -0.007409059442579746, -0.007960638962686062, -0.008646387606859207, 0.004561714828014374, -0.00015047322085592896, -0.006585416384041309, 0.012708698399364948, 0.012499992735683918, -0.0015224349917843938, -0.023598674684762955, 0.0019715253729373217, -0.01802324503660202, -0.016040539368987083, 0.017918892204761505, -0.015638034790754318, 0.010174412280321121, -0.02409062348306179, -0.012634160928428173, -0.04472269490361214, -0.005534433294087648, 0.01647285930812359, 0.009615379385650158, -0.010219135321676731, -0.007286072243005037, 0.0035014140885323286, 0.012343463487923145, 0.014005656354129314, -0.013558429665863514, -0.007587950211018324, 0.0031548133119940758, -0.01440816093236208, 0.010450202971696854, -0.005571702029556036, 0.011314840987324715, -0.0033001620322465897, 0.007692303042858839, 0.022614775225520134, 0.02403099462389946, 0.039982087910175323, -0.025626102462410927, -0.0027262207586318254, 0.005281004589051008, -0.0010379392188042402, -0.0035256389528512955, -0.020140118896961212, -0.01437834557145834, 0.020289195701479912, 0.015041732229292393, -0.015160992741584778, -0.00585867278277874, -0.005948118399828672, -0.01662193424999714, -0.003425012808293104, 0.012544715777039528, 0.015951093286275864, -0.0020237017888575792, 0.03485388681292534, 0.009227782487869263, -0.004077218938618898, -0.023747749626636505, -0.0021988656371831894, -0.0068313912488520145, 0.00414802972227335, 0.021064387634396553, 8.449560846202075e-05, 0.017769817262887955, 0.01733749732375145, 0.0002629787486512214, 0.010412933304905891, -0.01891769841313362, -0.0010463247308507562, 0.040131162852048874, 0.012425455264747143, 0.026833616197109222, -0.0034306033048778772, -0.009988067671656609, -0.006004021503031254, 0.007196626625955105, 0.02409062348306179, 0.010084967128932476, -0.008750740438699722, -0.006063651759177446, 0.0219737496227026, -3.6948629713151604e-05, 0.02570064179599285, 0.007230168674141169, 0.007826471701264381, 0.0005296844174154103, -0.00744260149076581, -0.006820210721343756, 0.0012345326831564307, 0.009130883030593395, 0.015772202983498573, 0.011881329119205475, 0.004084672778844833, -0.0037641599774360657, 0.024999985471367836, -0.026908153668045998, 0.0015429329359903932, 0.007602857891470194, -0.005914576351642609, -0.03896837309002876, 0.002513787942007184, -0.00273926486261189, -0.0017180967843160033, 0.015488958917558193, -0.010800530202686787, 0.006469883024692535, 0.021615969017148018, -0.01629396714270115, 0.00353868305683136, -0.003011327935382724, -0.0248061865568161, 0.0013528615236282349, -0.0006633865996263921, 0.002374029718339443, 0.013536068610846996, 0.030858658254146576, -0.021094202995300293, -0.009749546647071838, -0.008691109716892242, -0.0044759963639080524, -0.009205421432852745, -0.020125212147831917, 0.02254023775458336, -0.010852706618607044, -0.021556338295340538, -0.0015429329359903932, 0.02783242240548134, -0.002759762806817889, 0.0016621934482827783, -0.021794859319925308, 0.027161581441760063, -0.020945128053426743, 0.0045952568762004375, 0.013424261473119259, -0.00856439583003521, 0.00902653019875288, 0.00948866456747055, 0.01864936389029026, 0.009689916856586933, 0.007983000949025154, -0.010122235864400864, -0.0052549163810908794, 0.016905177384614944, -0.008765648119151592, -0.0018913971725851297, -0.005881034303456545, 0.002793304855003953, 0.006727038417011499, 0.016934992745518684, 0.007930824533104897, 0.013081387616693974, 0.01271615270525217, -0.0009303251863457263, -0.014266539365053177, -0.009414127096533775, -0.0071332696825265884, 0.00406603841111064, 0.022644590586423874, 0.0025957797188311815, -0.01826176606118679, 0.007017735857516527, 0.008191706612706184, 0.007256256882101297, 0.01419945526868105, 0.022763850167393684, 0.008191706612706184, -0.001040734350681305, 0.03878948092460632, -0.013662782497704029, 0.008497311733663082, -0.007587950211018324, 0.0013426125515252352, 0.01144900918006897, -0.009421580471098423, -0.00045631121611222625, 0.0034529645927250385, 0.00486359279602766, 0.002640502294525504, -0.020468086004257202, -0.0026833615265786648, 0.0185301024466753, -0.019916506484150887, -0.0004057652549818158, -0.01124030351638794, 0.004871046636253595, -0.010845253244042397, -0.006801576353609562, -0.00021045288303866982, -0.0025231053587049246, 0.004017588682472706, 0.0013100021751597524, 0.01262670662254095, -0.0230172798037529, -0.02262968197464943, -0.03345257416367531, 0.0016826912760734558, 0.008288606069982052, 0.0009359155083075166, -0.001280187047086656, 0.01167262252420187, 0.014385799877345562, -0.02364339679479599, 0.007662488147616386, 0.004025042522698641, -0.01680082455277443, 0.020527716726064682, -0.009689916856586933, -0.00012904360482934862, 0.013565883971750736, -0.008415319956839085, -0.011009235866367817, 0.002974059199914336, -0.015503866598010063, 0.0038610592018812895, 0.014557236805558205, 0.01466158963739872, 0.005825130734592676, 0.004442454315721989, -0.01784435473382473, -0.02792186848819256, -0.001809405628591776, 0.008646387606859207, 0.0011870148591697216, -0.006104647647589445, 0.011784429661929607, -0.0015820652479305863, 0.005176651757210493, 0.008035177364945412, -0.011076319962739944, 0.024522943422198296, 0.013416808098554611, -0.0031436325516551733, -0.021004758775234222, -0.0049977609887719154, 0.0288461372256279, 0.008363143540918827, -0.02537267468869686, 0.017084069550037384, -0.014445429667830467, 0.00034240810782648623, -0.005165471229702234, 0.021004758775234222, -0.0029703322798013687, 0.0032069897279143333, 0.0002967537147924304, -0.010226588696241379, -0.01733749732375145, -0.004669794347137213, 0.01697971671819687, 0.013983295299112797, 0.01745675876736641, -0.021824674680829048, -0.01909659057855606, -0.03297553211450577, 0.01152354758232832, -0.010286219418048859, -0.02456766553223133, 0.009361950680613518, -0.015563497319817543, 0.027400102466344833, -0.014192000962793827, -0.012850320897996426, -0.010398026555776596, 0.01879843883216381, -0.009570656344294548, -0.016875362023711205, -0.0006349690956994891, -0.0035349561367183924, 0.00975700095295906, -0.0224209763109684, -0.006302172783762217, 0.0003493960539344698, 0.004323193803429604, -0.015459144487977028, 0.013878942467272282, 0.0068313912488520145, 0.015518774278461933, 0.0003386812168173492, -0.004397731274366379, 0.008064992725849152, -0.0005562385194934905, -0.019991043955087662, -0.008884908631443977, -0.0328860878944397, 0.00805753841996193, 0.015966001898050308, -0.001697598840110004, -0.026341665536165237, -0.007923370227217674, -0.007196626625955105, 0.009347043000161648, 0.0013761544832959771, 0.026699448004364967, 0.00040413474198430777, 0.023539043962955475, 0.0025734181981533766, 0.012246564030647278, -0.007591677363961935, 0.004871046636253595, -0.004830050747841597, 0.010390572249889374, 0.014892656356096268, -0.002657273318618536, 0.008489858359098434, -0.0015429329359903932, -0.0007901008939370513, -0.0076475804671645164, 0.00633571483194828, 0.006633866112679243, 0.001127384603023529, -0.0010817301226779819, -0.004155483562499285, 0.01861954852938652, 0.01805306039750576, 0.02851817011833191, -0.010487471707165241, 0.008951992727816105, -0.015891464427113533, 0.0085196727886796, -0.0010854570427909493, 0.0005222306353971362, 0.018604639917612076, -0.02382228709757328, 0.023211076855659485, 0.0023982543498277664, -0.007341975346207619, -0.015563497319817543, -0.02337506040930748, 0.014244177378714085, 0.03163385018706322, 0.015354791656136513, -0.007513412274420261, 0.005817676894366741, 0.026982691138982773, 0.009809177368879318, -0.01838102750480175, 0.01823195070028305, 0.0009177469182759523, -0.00975700095295906, -0.015339883975684643, -0.021571245044469833, -0.012485085055232048, 0.004833777900785208, 0.016040539368987083, 0.0077817486599087715, -0.01647285930812359, 0.014087648130953312, 0.0016426272923126817, 0.011344656348228455, -0.005161744076758623, -0.01147882454097271, 0.006786668673157692, 0.022346438840031624, -0.01467649731785059, -0.007953185588121414, -0.009048891253769398, -0.0024839728139340878, 0.012008043006062508, -0.004338101018220186, 0.0014544192235916853, -0.01623433828353882, 0.00031026368378661573, 0.020617160946130753, -0.02418006956577301, -0.017561111599206924, 0.0034529645927250385, 0.007058731745928526, 0.001704121008515358, 0.0297405906021595, 0.01891769841313362, -0.009898622520267963, 0.010614185594022274, 0.0006219249335117638, -0.000113495480036363, -0.00832587480545044, -0.007737026084214449, -0.007151904050260782, 0.00402131536975503, -0.0015634307637810707, 0.02406080812215805, 0.0015317522920668125, 0.007289798930287361, 0.0024783825501799583, -0.01445288397371769, 0.018545009195804596, 0.011180673725903034, 0.011694984510540962, 0.003711983561515808, 0.0061605507507920265, 0.0015755431959405541, -0.005728231742978096, 0.004315739963203669, -0.007990454323589802, 0.025730455294251442, 0.01469140499830246, -0.01421436294913292, 0.002055380493402481, -0.00043790970812551677, 0.01984196901321411, 0.0004793713742401451, 0.0219737496227026, 0.008452588692307472, -0.015459144487977028, 0.009160698391497135, 0.014810665510594845, 0.012306194752454758, 0.004934403579682112, -0.002185821533203125, 0.005735685583204031, 0.003512594848871231, 0.004684702027589083, 0.040757279843091965, -0.004062311258167028, 0.019916506484150887, -0.0013174560153856874, 0.01220929529517889, 0.0015075274277478456, 0.014959740452468395, -0.0014944833237677813, 0.020974943414330482, 0.006864933297038078, 0.0015643625520169735, -0.004080945625901222, -0.006387891247868538, 0.01617470756173134, -0.0059257568791508675, 0.007040097378194332, -0.005963025614619255, -0.008489858359098434, 0.00947375688701868, -0.01721823774278164, -0.009794269688427448, 0.020572438836097717, -0.027728069573640823, 0.014460337348282337, 0.012962127104401588, 0.005266096908599138, 0.004315739963203669, -0.0038051558658480644, 0.026356574147939682, 0.0023516681976616383, -0.021392354741692543, 0.00709227379411459, -0.004744332283735275, 0.004222567658871412, -0.0005660215974785388, -0.014937379397451878, 0.011814245022833347, -0.031335700303316116, 0.00465488713234663, 0.0015308205038309097, 0.0032144435681402683, -0.009361950680613518, 0.008795462548732758, -0.02860761620104313, -0.01173225324600935, -0.015474052168428898, -0.01605544611811638, -0.021302908658981323, -0.010532193817198277, 0.01951400190591812, -0.012842866592109203, -0.004811416380107403, -0.001576474984176457, 0.010442748665809631, 0.02985985204577446, 0.0038946012500673532, -0.021243279799818993, -0.0010770715307444334, 0.013230463489890099, -0.004136849194765091, -0.022555144503712654, -0.0034753258805722, 0.0031268615275621414, -0.01413982454687357, 0.004237475339323282, -0.0024262061342597008, 0.018574824556708336, 0.014236724004149437, -0.027370288968086243, 0.013312455266714096, 0.011545908637344837, -0.023240892216563225, 0.0087432861328125, 0.0170393455773592, 0.011844059452414513, -0.0015075274277478456, -0.005966752767562866, -0.020140118896961212, 0.006093467120081186, -0.0015829970361664891, -0.01924566552042961, -0.025059616193175316, 0.025238506495952606, 1.6479845726280473e-05, 0.00945884920656681, 0.009302319958806038, -0.0080724461004138, 0.007655034307390451, 0.0003822392609436065, -0.02513415366411209, 0.005728231742978096, 0.0006633865996263921, -0.03750743344426155, 0.012336009182035923, 0.026088237762451172, 0.009183059446513653, -0.020244471728801727, -0.005996567662805319, -0.01492992602288723, 0.0030206451192498207, 0.009667555801570415, -0.02552174963057041, -0.0029721956234425306, 0.001848537940531969, -0.006544420961290598, 0.020155027508735657, -0.0026162774302065372, -0.0027877145912498236, -0.029010120779275894, -0.012306194752454758, -0.0023796199820935726, 0.002618141006678343, -0.004405185114592314, 0.0016985306283459067, -0.0017749319085851312, -0.02564101107418537, -0.011359564028680325, 0.012410547584295273, 0.04439472779631615, -0.007327067665755749, -0.008214067667722702, -0.01488520298153162, -0.004785328172147274, 0.013267732225358486, -0.01757601834833622, 0.0027336745988577604, 0.0034045150969177485, 0.03738817200064659, 0.007431420963257551, -0.0026833615265786648, -0.017382219433784485, 0.0008292332640849054, 0.00884763989597559, 0.00747241685166955, -0.027549179270863533, 0.00883273221552372, -0.020259380340576172, -0.02872687578201294, 0.006108374334871769, -0.025819901376962662, 0.010696177370846272, 0.005035029724240303, -0.014833026565611362, -0.0014227406354621053, -0.0009848310146480799, 0.011903690174221992, 0.01894751377403736, 0.00923523586243391, 0.009883714839816093, 0.01939474046230316, 0.04600474238395691, 0.00019111963047180325, 0.0039020548574626446, 0.0029013846069574356, -0.002927473047748208, -0.02307691052556038, 0.01775490865111351, 0.014713766053318977, -0.01507900096476078, -0.007584223523736, -0.004427546635270119, 0.010904883034527302, 0.020527716726064682, 0.006518332287669182, -0.011814245022833347, -0.00103328051045537, -0.004353008698672056, 0.00036966102197766304, -0.013081387616693974, 0.008437681011855602, -0.021720321848988533, 0.0087432861328125, -0.006134462542831898, -0.011188127100467682, 0.0004246326570864767, 0.002424342557787895, 0.005922029726207256, -0.02194393426179886, 0.0013230463955551386, 0.004140575882047415, 0.020408455282449722, -0.009242690168321133, -0.02501489222049713, 0.01951400190591812, 0.008929630741477013, -0.0007421171758323908, -0.001982706133276224, 0.012298740446567535, 0.007304706610739231, -0.0019417102448642254, -0.021779950708150864, -0.011158311739563942, 0.020274287089705467, 0.005657420493662357, -0.016308875754475594, 0.007099727634340525, 0.003255439456552267, 0.021750137209892273, -0.014587052166461945, 0.02370302751660347, -3.40369988407474e-05, 0.02519378438591957, -0.009906076826155186, -0.006380437407642603, 0.031395331025123596, 0.015474052168428898, -0.008146983571350574, -0.013938572257757187, -0.020512808114290237, 0.007968093268573284, 0.010733446106314659, -0.00035824740189127624, 0.0030616410076618195, 0.01894751377403736, -0.005720777902752161, -0.010822892189025879, 0.010644000954926014, -0.001160926534794271, -0.008258790709078312, -0.00857930351048708, 1.6989382856991142e-05, -0.014572144486010075, -0.003275937167927623, -0.010606732219457626, -0.002409435110166669, -0.02230171672999859, -0.02310672402381897, 0.009950798936188221, -0.02316635474562645, 0.011791883036494255, -0.02447822131216526, -0.006466155871748924, 0.010234043002128601, 0.00045188554213382304, 0.0002485370496287942, -0.005560521502047777, 0.01635359786450863, -0.021496707573533058, 0.011501185595989227, -0.006961832754313946, -0.01485538762062788, -0.00980172399431467, -0.014117463491857052, -0.005847492255270481, -0.0006023587775416672, -0.001424604095518589, -0.0007397878798656166, 0.008542034775018692, 0.005817676894366741, -0.0049679456278681755, 0.008840185590088367, 0.023658305406570435, -0.00031399057479575276, -0.026416204869747162, -0.012112395837903023, -0.02456766553223133, -0.008348235860466957, -0.007211534306406975, -0.0046027107164263725, 0.01104650553315878, -0.008922177366912365, 0.012902497313916683, -0.020945128053426743, 0.009652648121118546, 0.009429034776985645, 0.020333917811512947, 0.011657715775072575, 0.02176504395902157, 0.004856138955801725, -0.015310068614780903, -0.005567975342273712, 0.011165766045451164, 0.009980614297091961, 0.006339441519230604, -0.014967194758355618, 0.0041890256106853485, 0.018872976303100586, 0.013998202979564667, -0.008691109716892242, -0.0025175148621201515, 0.0030448699835687876, -0.023211076855659485, -0.008392958901822567, 0.007662488147616386, 0.00810226146131754, -0.005251189693808556, 0.0030131915118545294, 0.0048934081569314, 0.020930219441652298, 0.004912042524665594, -0.021422170102596283, 0.001856923452578485, 0.02265949733555317, 0.0011534728109836578, 0.02008049003779888, 0.012112395837903023, -0.012514900416135788, 0.0018066104967147112, 0.01168753020465374, 0.021854490041732788, -0.016994623467326164, -0.0028622522950172424, -0.01715860702097416, -0.004915769211947918, -0.003738071769475937, 0.007289798930287361, 0.00417784508317709, 0.007599130738526583, -0.003984046634286642, -0.016249245032668114, -0.0032293510157614946, -0.003972866106778383, 0.005754319950938225, 0.019856875762343407, 0.011888782493770123, -0.0037417986895889044, -0.013707505539059639, 0.017382219433784485, -0.029367901384830475, -0.018872976303100586, -0.004457361530512571, 0.01635359786450863, -0.00549343740567565, 0.00402131536975503, 0.00039714682498015463, 0.0230172798037529, 0.005549340974539518, 0.009317227639257908, -0.03223015367984772, 0.008571849204599857, -0.01754620298743248, -0.010755808092653751, 0.026356574147939682, -0.011426648125052452, 0.007491051219403744, 0.01002533733844757, -0.008892362006008625, 0.011068866588175297, -0.012142211198806763, 0.02418006956577301, -0.0004290583310648799, 0.005053664091974497, -0.01772509329020977, -0.013796950690448284, -0.0009293934563174844, 0.022555144503712654, -0.002401981269940734, 0.005191559437662363, -0.03497314453125, 0.0010863887146115303, 0.015921277925372124, 0.008840185590088367, -0.0060599250718951225, -0.0064549753442406654], "062f22d5-6e38-4cd6-a3f1-cf5700f9821f": [-0.06790876388549805, 0.02205532416701317, 0.0004077624762430787, 0.015219376422464848, -0.0033052938524633646, -0.0428185798227787, -0.025916509330272675, 0.025150282308459282, -0.011298095807433128, -0.00793270580470562, -0.002826401963829994, 0.024594390764832497, -0.023182129487395287, -0.03704933822154999, 0.007714856415987015, 0.015700146555900574, -0.015895457938313484, 0.01956132985651493, 0.03329332545399666, -0.04224766418337822, 0.07656262814998627, 0.0019568842835724354, -0.02453429438173771, -0.01418271567672491, -0.022596191614866257, -0.028395479544997215, -0.024519270285964012, 0.013709457591176033, -0.031069763004779816, -0.010486796498298645, -0.019110608845949173, -0.009915881790220737, 0.05021042004227638, 0.011298095807433128, 0.027659300714731216, -0.013469072990119457, -0.0006563637871295214, 0.03449524939060211, -0.008638836443424225, -0.010697132907807827, -0.009119606576859951, 0.025916509330272675, -0.03674886003136635, 0.018028875812888145, -0.0656852051615715, -0.001412261975929141, 0.027373842895030975, -0.027524083852767944, -0.020988617092370987, 0.003297781804576516, -0.0008798466878943145, -0.020327556878328323, -0.006843460723757744, -0.01464846171438694, 0.024399079382419586, -0.03975367173552513, -0.005720411892980337, 0.03810102492570877, 0.01207183487713337, -0.004676239565014839, -0.012199539691209793, -0.005254665855318308, 0.029432140290737152, -0.009420087561011314, -0.011110294610261917, -0.027629252523183823, 0.010674596764147282, -0.005712899845093489, -0.04059501737356186, -0.009945929981768131, -0.0050217933021485806, 0.009006925858557224, -0.04227771237492561, 0.014363004826009274, -0.0013164834817871451, -0.025871437042951584, 0.02749403566122055, 0.015549905598163605, 0.013318832032382488, -0.0011023905826732516, -0.0040978132747113705, 0.0051607657223939896, 0.03542673960328102, -0.005866896826773882, 0.057752497494220734, 0.029852813109755516, -0.001156852813437581, -0.05048085376620293, -0.03206134960055351, -0.0486779659986496, 0.022641263902187347, 0.01640627719461918, -0.008278259076178074, -0.0033804140985012054, 0.027118433266878128, 0.020327556878328323, 0.03416471928358078, 0.018659885972738266, 0.019441137090325356, -0.03879212960600853, -0.00472131185233593, 0.012635237537324429, -0.04837748408317566, 0.01562502607703209, -0.017112407833337784, 0.027959780767560005, 0.011020150035619736, 0.010006026364862919, -0.012950742617249489, 0.06652655452489853, 0.035006068646907806, -0.029477212578058243, -0.004293126054108143, 0.006291326601058245, -0.054387107491493225, -0.04636425897479057, 0.004255565814673901, 0.01868993416428566, -0.04756618291139603, -0.041917137801647186, -0.0074218870140612125, -0.014152667485177517, 0.009570328518748283, 0.04065511375665665, -0.0139949144795537, 0.00506310909986496, 0.03704933822154999, 0.044891901314258575, 0.03581736609339714, 0.005528855137526989, 0.010186314582824707, -0.0036339452490210533, 0.026307133957743645, 0.019696546718478203, 0.001488321227952838, 0.010389139875769615, 0.0002605736081022769, 0.061778947710990906, -0.005840604659169912, 0.052043356001377106, -0.07385829091072083, -0.048257291316986084, -0.00846605934202671, -0.002841426059603691, -0.004743847995996475, 0.009134630672633648, -0.04263829067349434, 0.02140928991138935, 0.007057553622871637, 0.03921280428767204, -0.04639430716633797, -0.03840150684118271, 0.002103368751704693, 0.01223709899932146, 0.008533667773008347, -0.008210650645196438, -0.0012958254665136337, 0.013716969639062881, 0.01464846171438694, 0.008781565353274345, 0.021304121240973473, -0.05826331675052643, 0.004195469431579113, 0.005889432970434427, 0.03665871545672417, 0.031460389494895935, 0.03957338258624077, -0.010389139875769615, -0.02127407304942608, 0.01859978958964348, 0.03182096406817436, -0.019546305760741234, 0.017878634855151176, 0.016436325386166573, -0.005311006214469671, 0.006445323117077351, 0.032872650772333145, -0.0028545719105750322, 0.04774647206068039, -0.011455847881734371, -0.023152081295847893, 0.02160460315644741, -0.03563707694411278, -0.01799882762134075, -0.0028545719105750322, -0.0010742205195128918, -0.020658086985349655, -0.01170374546200037, 0.01582033932209015, 0.02560100331902504, -0.022836575284600258, -0.009510232135653496, -0.00037630583392456174, 0.01428037229925394, -0.0065279556438326836, -0.027418915182352066, -0.0044396105222404, -0.010509331710636616, 0.0209285207092762, 0.02964247576892376, 0.028605816885828972, -0.02481975220143795, -0.0403846800327301, 0.0216496754437685, -0.024985017254948616, 0.024173717945814133, -0.016631638631224632, -0.01736781746149063, 0.0023719239979982376, -0.0139949144795537, 0.03984381631016731, -0.061057791113853455, 0.02803490124642849, 0.00688477698713541, -0.006520443595945835, 0.011320631951093674, -0.02584138885140419, 0.031220003962516785, 0.0016780000878497958, -0.016075747087597847, -0.017067335546016693, -0.012259635142982006, 0.0023174616508185863, -0.01321366336196661, -0.004094057250767946, -0.022115420550107956, -0.03897241875529289, 0.016826950013637543, -0.05264431610703468, -0.018043899908661842, 0.030393680557608604, 0.009728080593049526, 0.007466959301382303, -0.04729574918746948, -9.982785559259355e-05, 0.014152667485177517, -0.005772996228188276, 0.011470871977508068, -0.013664385303854942, -0.005070621147751808, 0.009765640832483768, 0.045372672379016876, -0.008541179820895195, -0.007260378450155258, 0.02764427661895752, 0.024744631722569466, 0.008458547294139862, 0.004743847995996475, 0.03284260258078575, -0.011020150035619736, 0.025676123797893524, -0.01640627719461918, -0.019155681133270264, 0.003295903792604804, -0.04101569205522537, 0.033804140985012054, -0.0008441645768471062, -0.011305607855319977, 0.02408357337117195, -0.029462188482284546, -0.0071101379580795765, 0.03966352716088295, -0.014610901474952698, 0.025375641882419586, 0.03236183151602745, -0.01912563294172287, 0.0009568450041115284, -0.015579953789710999, 0.008856684900820255, 0.023091984912753105, 0.011906569823622704, -0.008128018118441105, -0.0057091438211500645, 0.0010967566631734371, 0.02477467991411686, -0.008721468970179558, -0.025616027414798737, 0.01688704639673233, -0.003817989956587553, 0.006291326601058245, -0.009089558385312557, -0.008924293331801891, 0.008901757188141346, 0.005694119725376368, -0.009683008305728436, 0.02788466028869152, -0.01810399629175663, -0.01123799942433834, -0.01274791732430458, 0.008826636709272861, 0.005495050922036171, -0.01873500645160675, -0.007947728969156742, 0.04846762865781784, 0.02608177438378334, 0.01141077559441328, 4.923902088194154e-05, -0.016180915758013725, -0.05519840866327286, 0.01673680543899536, -0.008030361495912075, -0.013085958547890186, -0.0012620212510228157, -0.03626808896660805, 0.015271959826350212, -0.03281255438923836, 0.035066165030002594, 0.01736781746149063, -0.00611854949966073, 0.027238626033067703, 0.03674886003136635, -0.012605189345777035, -0.007057553622871637, -0.012500020675361156, -0.003962596878409386, -0.006298838648945093, 0.0026705272030085325, -0.020462773740291595, 0.010329043492674828, -0.024654487147927284, -0.014423100277781487, 0.010088657960295677, -0.03251207247376442, 0.04639430716633797, 0.025465786457061768, -0.0647236630320549, 0.025616027414798737, -0.017578154802322388, -0.029086586087942123, -0.03972362354397774, -0.022986816242337227, 0.00013275168021209538, -0.03449524939060211, -0.01562502607703209, -0.055498890578746796, -0.02633718214929104, -0.024789704009890556, -0.07343762367963791, 0.00042677728924900293, -0.01063703652471304, 0.015039087273180485, -0.0020658087451010942, 0.0005197387072257698, -0.0163011085242033, 0.0036395792849361897, 0.032782506197690964, 0.03227168694138527, -0.0020864668767899275, -0.02481975220143795, -0.02005712501704693, 0.0009221018990501761, -0.007917681708931923, -0.026983218267560005, -0.0021784892305731773, 0.012041786685585976, -0.013897258788347244, -0.013363904319703579, 0.007729880511760712, 0.007399350870400667, -0.005344810429960489, -0.00834586750715971, -0.03245197609066963, -0.025465786457061768, 0.003459290601313114, 0.0033372200559824705, 0.015655074268579483, 0.018164092674851418, 0.012131931260228157, -0.0076434919610619545, 0.012792989611625671, 0.006768340244889259, 0.01428037229925394, 0.034825779497623444, -0.003012324683368206, -0.04594358429312706, -0.03524645045399666, 0.05489792674779892, -0.010569428093731403, 0.016030674800276756, 0.037980832159519196, -0.008090457879006863, -0.02958238124847412, -0.031851012259721756, 0.0042705899104475975, 0.04993998631834984, 0.02247599884867668, 0.008045385591685772, 0.007992801256477833, -0.018359405919909477, 0.0003187918337062001, -0.030829377472400665, -0.015459761023521423, -0.028455575928092003, -0.04083540290594101, 0.0016582809621468186, -0.018464572727680206, 0.017578154802322388, -0.008856684900820255, 0.01223709899932146, -0.049909938126802444, 0.0029822764918208122, 0.014708558097481728, -0.003186979331076145, 0.020703159272670746, 0.009683008305728436, -0.044651515781879425, -0.012522556819021702, -0.0051607657223939896, -0.001348409685306251, 0.0340745747089386, -0.008999413810670376, -0.010794789530336857, 0.031550534069538116, 0.02575124427676201, 0.03323322907090187, 0.007016237359493971, 0.0452524796128273, -0.003973864484578371, -0.050931572914123535, -0.02569114789366722, 0.011403263546526432, 0.06298087537288666, -0.009179702959954739, 0.030093198642134666, -0.004142885562032461, 0.006835948675870895, 0.0216496754437685, 0.023091984912753105, -0.007940216921269894, -0.033653900027275085, 0.02851567231118679, 0.037980832159519196, 0.00030658478499390185, 0.013604288920760155, 0.0006619977648369968, -0.021334169432520866, -0.021589579060673714, -0.0027325015980750322, 0.03686905279755592, 0.016241012141108513, -0.004218005575239658, 0.012710357084870338, -0.0068547287955880165, 0.006449079141020775, -0.02632215805351734, -0.020793303847312927, -0.0365084744989872, -0.008383426815271378, 0.03218154236674309, 0.025961581617593765, 0.020357605069875717, 0.03665871545672417, -0.021379241719841957, -0.0056377798318862915, 0.011711257509887218, 0.004552291240543127, 0.013461560942232609, -0.015414688736200333, 0.005115693435072899, -0.03497602045536041, -0.009645448997616768, 0.00367526151239872, 0.017142456024885178, -0.004341954365372658, 0.00871395692229271, -0.04065511375665665, -0.011087758466601372, 0.05468758940696716, 0.0018808249151334167, -0.016286084428429604, 0.004293126054108143, 0.004785164259374142, -0.002548456657677889, 0.02399342879652977, -0.006516687572002411, -0.00028287494205869734, -0.04900849238038063, 0.02492492087185383, 0.003898744471371174, -0.006689464207738638, -0.022896671667695045, -0.04432098567485809, -0.017983803525567055, 0.003772917902097106, -0.002345631830394268, 0.00485277222469449, -0.019546305760741234, 0.011125318706035614, -0.00043522834312170744, -0.009089558385312557, 0.06790876388549805, -0.00282264593988657, -0.037349820137023926, -0.00460863159969449, -0.010914982296526432, -0.02905653789639473, -0.00291466829366982, -0.01858476549386978, -0.03158058226108551, -0.029762668535113335, 0.05649047717452049, 0.011470871977508068, 0.004939160775393248, 0.0204477496445179, -0.01799882762134075, 0.01077976543456316, -0.0457332469522953, 0.010246410965919495, -0.017698345705866814, -0.03557698056101799, -0.031069763004779816, -0.014655973762273788, -0.03587746247649193, 0.020613014698028564, -0.011020150035619736, 0.018073948100209236, 0.011027662083506584, -0.01942611299455166, 0.02472960762679577, -0.00047184948925860226, -0.03951328620314598, -0.008481083437800407, -0.0011756329331547022, -0.015354592353105545, -0.019771667197346687, -0.0204327255487442, -0.013063423335552216, -0.011651161126792431, 0.03003310225903988, -0.016090771183371544, 0.006381470710039139, 0.01960640214383602, -0.015039087273180485, 0.005562659353017807, 0.0076434919610619545, 0.028695961460471153, -0.006261278409510851, 0.018269261345267296, 0.008225674740970135, -0.001156852813437581, -0.005337298382073641, 0.02073320746421814, -0.01304088719189167, -0.01975664310157299, -0.019350992515683174, 0.043930359184741974, -0.01376955397427082, 0.006858484819531441, -0.0019118119962513447, 0.02530052326619625, -0.01966649852693081, 0.004788920283317566, -0.009562816470861435, -0.015880433842539787, 0.02004210092127323, -0.05405657738447189, -0.020748231559991837, 0.010103682056069374, -0.01688704639673233, -0.014843774028122425, -0.019576353952288628, 0.021574554964900017, -0.0025935289449989796, 0.014107595197856426, 0.021289097145199776, -0.0005587073392234743, 0.0030987130012363195, 0.020763255655765533, -0.03566712513566017, 0.006576783489435911, 0.030919522047042847, -0.0064603472128510475, 0.03665871545672417, 0.009615400806069374, 0.006246254313737154, 0.043089013546705246, -0.010622012428939342, 0.012312219478189945, -0.021664699539542198, -0.008691420778632164, 0.013739505782723427, -0.02545076236128807, 0.011838961392641068, -0.004841504152864218, 0.0037447477225214243, -0.00921726319938898, -0.009036974050104618, -0.03885222598910332, 0.005540123209357262, 0.009893345646560192, 0.01223709899932146, 0.030303535982966423, -0.0021484410390257835, -0.00939003936946392, -0.023197153583168983, 0.012086858972907066, -0.002045150613412261, -0.004717555828392506, -0.0007821902981959283, 0.004030204843729734, -0.0009887712076306343, 0.01571517065167427, 0.017247624695301056, -0.008548691868782043, -0.041045740246772766, 0.04705536738038063, 0.016962166875600815, 0.002030126517638564, -0.010659572668373585, 0.023272274062037468, -0.009187215007841587, 0.01520435232669115, 0.018870223313570023, -0.014573341235518456, 0.025826364755630493, -0.0007394655840471387, 0.014212763868272305, 0.03305293992161751, 0.004706287756562233, 0.01766829751431942, 0.014302908442914486, -0.014002426527440548, 0.04639430716633797, -0.025976605713367462, 0.024954969063401222, 0.02686302550137043, -0.008608788251876831, 0.0029428384732455015, -0.00418420135974884, 0.003596385009586811, 0.003887476399540901, -0.0027963537722826004, 0.014716070145368576, -0.036087799817323685, 0.037590205669403076, -0.0018761298852041364, 0.028004853054881096, 0.026262061670422554, -0.02866591326892376, -0.006351422518491745, -0.007789976894855499, 0.006080989725887775, 0.031610630452632904, 0.012838061898946762, -0.014167691580951214, -0.004244297742843628, 0.008683908730745316, -0.006914825178682804, 0.04254814609885216, -0.002548456657677889, -0.039933960884809494, -0.003186979331076145, 0.009089558385312557, 0.015745218843221664, 0.008796588517725468, -0.0038461601361632347, 0.002298681763932109, 0.030979618430137634, 0.007121406029909849, 0.012792989611625671, 0.007230330258607864, -0.018915295600891113, 0.0038574282079935074, 0.01207183487713337, 0.02214546874165535, 0.03416471928358078, -0.008375914767384529, 0.00320012541487813, 0.01975664310157299, 0.01562502607703209, 0.006325130816549063, -0.026637664064764977, 0.006340154446661472, 0.011185415089130402, -0.014933918602764606, 0.00830079521983862, 0.0010019171750172973, 0.012537580914795399, 0.015955554321408272, -0.015805315226316452, -0.005412418860942125, -0.026832977309823036, -0.007767440751194954, 0.004127861466258764, 0.0005831214366480708, -0.006017137318849564, 0.007767440751194954, 0.04588348791003227, -0.010749717243015766, -0.016436325386166573, -0.03575726971030235, 0.01805892400443554, -0.012830549851059914, 0.04011425003409386, 0.019696546718478203, -0.008751517161726952, 0.009675496257841587, -0.027223601937294006, 0.005611487664282322, -0.0053485664539039135, -0.03713948279619217, 0.003297781804576516, 0.03230173513293266, -0.045673150569200516, 0.00043029856169596314, 0.014933918602764606, -0.017743417993187904, -0.031069763004779816, 0.020763255655765533, 0.015519857406616211, 0.02603670209646225, 8.685786451678723e-05, 0.0013671896886080503, 0.021048711612820625, 0.0063927387818694115, 0.015136743895709515, -0.029086586087942123, 0.016917094588279724, -0.009352479130029678, 0.003310927888378501, -0.005634023807942867, 0.013228687457740307, -0.016902070492506027, -0.00546124717220664, -0.039783719927072525, 0.007774952799081802, -0.007620955817401409, 0.03206134960055351, 0.0033729022834450006, 0.011853985488414764, 0.0423378087580204, -0.011643649078905582, 0.0007530811708420515, 0.017052311450242996, -0.009908369742333889, -0.00506310909986496, 0.01742791384458542, -0.019726594910025597, 0.026637664064764977, -0.001918385038152337, 0.00834586750715971, -0.015745218843221664, -0.012883134186267853, -0.032872650772333145, -0.008984389714896679, 0.019155681133270264, 0.007451935205608606, -0.024444151669740677, 0.03051387146115303, 0.008443523198366165, 0.014813725836575031, -0.01921577751636505, 0.047325797379016876, 0.027809541672468185, 0.014400564134120941, 0.0025616027414798737, 0.02101866342127323, -0.0051607657223939896, -0.008571228012442589, 0.031009666621685028, -0.0051269615069031715, -0.009202239103615284, -0.007271646521985531, -0.026592591777443886, -0.014325444586575031, 0.016361204907298088, 0.005408662836998701, 0.010899958200752735, 0.03140029311180115, 0.011831449344754219, 0.02062803879380226, 0.010899958200752735, 0.002664893167093396, 0.03353370726108551, -0.029116634279489517, -0.03338347002863884, 0.009329942986369133, 0.011253023520112038, -0.04296882078051567, -0.007267890498042107, -0.014528268948197365, -0.018960367888212204, 0.026247037574648857, 0.001474236254580319, 0.025090185925364494, -0.0384315550327301, 0.012868110090494156, 0.02184498868882656, 0.00012124888598918915, 0.027028288692235947, -0.0005479088285937905, -0.005923236720263958, -0.0042029814794659615, -0.006280058529227972, -0.01114785484969616, -0.016195939853787422, 0.01975664310157299, -0.03386423736810684, 0.015835363417863846, 0.018870223313570023, 0.009502720087766647, -0.03305293992161751, 0.016180915758013725, 0.049609456211328506, -0.012687820941209793, -0.02014726959168911, 0.019501233473420143, 0.02219054102897644, 0.013296295888721943, 0.005187057889997959, -0.0005934505024924874, -0.010486796498298645, -0.017608201131224632, 0.04305896535515785, -0.021634651347994804, 0.006516687572002411, -0.013191127218306065, 0.025871437042951584, 0.03027348779141903, 0.0023212176747620106, -0.013176103122532368, 0.026607615873217583, -0.028200166299939156, 0.016045698896050453, -0.005202081985771656, -0.004788920283317566, 0.0059157246723771095, -0.018073948100209236, 0.022325757890939713, -0.014415588229894638, -0.014776166528463364, -0.0010676474776118994, -0.007681052200496197, 0.03662866726517677, 0.004266833886504173, -0.011576040647923946, -0.0014451270690187812, -0.019155681133270264, -0.030393680557608604, 0.016466373577713966, -0.020417701452970505, -0.0374700129032135, -0.01520435232669115, 0.004323174245655537, -0.0025766268372535706, 0.013544192537665367, 0.018479596823453903, -0.01814906857907772, 0.06030659005045891, 0.041676752269268036, 0.015640050172805786, -0.006370202638208866, -0.00039696390740573406, 0.00019167417485732585, -0.01450573280453682, 0.03807097673416138, -0.0003124535724055022, 0.02551085874438286, 0.0063439104706048965, 0.018224189057946205, -0.0007817207952030003, 0.0033691462595015764, -0.023001840338110924, -0.012402364052832127, -0.009885833598673344, -0.009728080593049526, -0.020162291824817657, -0.03317313268780708, 0.011425799690186977, 0.002724989550188184, -0.021875035017728806, -0.0008831332088448107, 0.01591048203408718, 0.004402050282806158, -0.0026498690713196993, 0.012424900196492672, -0.011553504504263401, 0.01673680543899536, -0.05679095908999443, -0.013521656394004822, -0.00846605934202671, 0.03167072683572769, -0.022175516933202744, 0.02258116751909256, -0.050390709191560745, -0.00012535702262539417, 0.038671936839818954, -0.0027681835927069187, -0.012447436340153217, 0.016045698896050453, 0.0030217147432267666, -0.007485739421099424, -0.027749445289373398, -0.03323322907090187, -0.009615400806069374, -0.036718811839818954, -0.0034630466252565384, -0.016030674800276756, -0.03134019672870636, -0.013987402431666851, 0.0067495605908334255, -0.036478426307439804, -0.04152651131153107, 0.006449079141020775, 0.013176103122532368, -0.027073360979557037, 0.026171917095780373, 0.01962142623960972, 0.03143034130334854, -0.008375914767384529, 0.025961581617593765, -0.00014272860425990075, -0.017067335546016693, 0.007714856415987015, 0.02632215805351734, 0.01567009836435318, 0.01311600673943758, -0.002993544563651085, 0.010644548572599888, -0.011816425248980522, -0.0006605892558582127, 0.006103525869548321, 0.005228374153375626, 0.017503034323453903, 0.008954341523349285, 0.021048711612820625, -0.00021984429622534662, -0.008022849448025227, 0.012792989611625671, 0.034134671092033386, -0.014595877379179, -0.003376658307388425, 0.005491294898092747, 0.010036074556410313, -0.004229273647069931, -0.001992566278204322, -0.011538480408489704, -0.022250637412071228, -0.02696819417178631, -0.030483823269605637, -0.03638828173279762, -0.012417388148605824, 0.014347980730235577, -0.024293910712003708, 0.013566728681325912, -0.034825779497623444, -0.020718183368444443, 0.011884033679962158, -0.016135843470692635, 0.006817168556153774, -0.005525099113583565, 0.054777733981609344, 0.017442937940359116, 0.007391839288175106, -0.010509331710636616, 0.03066411241889, 0.0049541848711669445, 0.004214249551296234, 0.004420830402523279, 0.0016714270459488034, 0.011087758466601372, -0.014595877379179, 0.008037873543798923, 0.0018761298852041364, -0.00917219091206789, -0.0027494034729897976, -0.045432768762111664, 0.009630424901843071, -0.005419930908828974, 0.006531711667776108, -0.00699745723977685, -0.028996441513299942, 0.021259048953652382, 0.028726009652018547, -0.009652960114181042, -0.004969208966940641, -0.012905670329928398, -0.00383301405236125, -0.018945343792438507, 0.004788920283317566, 0.005968309007585049, 0.012282171286642551, 0.021304121240973473, -0.04161665588617325, -0.0013408976374194026, 0.008090457879006863, -0.03134019672870636, 0.0026536250952631235, -0.027028288692235947, -0.016781877726316452, 0.027043312788009644, -0.001061074435710907, -0.021379241719841957, -0.017052311450242996, -0.0035250207874923944, -0.00999851431697607, -0.003970108460634947, -0.008819124661386013, 0.004383270628750324, -0.018990416079759598, -0.003703431459143758, -0.004488438833504915, -0.026442350819706917, 0.053605858236551285, 0.0243389829993248, -0.017382841557264328, 0.01951625756919384, 0.008188114501535892, 0.004326930269598961, 0.004679995588958263, -0.031460389494895935, -0.0028339140117168427, 0.009405063465237617, -0.010231386870145798, -0.0047325799241662025, 0.020312532782554626, 0.012319731526076794, -0.05859384685754776, -0.021138856187462807, 0.04522243142127991, -0.010531867854297161, -0.01403998676687479, -0.01072718109935522, -0.008924293331801891, -0.007797488942742348, 0.00561899971216917, 0.01187652163207531, -0.0024846044834703207, 0.020462773740291595, 0.010096170008182526, -0.03323322907090187, -0.013837162405252457, 0.019305920228362083, -0.0011296217562630773, 0.00773739255964756, -0.03386423736810684, -0.005198325961828232, -0.05045080557465553, -0.01284557394683361, -0.00032630388159304857, 0.0423378087580204, -0.014911382459104061, -0.00672702444717288, 0.01372448168694973, 0.003757893806323409, -0.01664666272699833, 0.02355773188173771, -0.0032095154747366905, 5.141046494827606e-05, -0.008721468970179558, 0.02466951124370098, -0.024564342573285103, 0.0009549669921398163, -0.005284714046865702, -0.016706759110093117, 0.007820025086402893, -0.0027005753945559263, -0.02710340917110443, 0.015700146555900574, 0.012349779717624187, -0.008375914767384529, -0.0055213430896401405, 0.013243711553514004, -0.019651474431157112, 0.01345404889434576, -0.0326022170484066, -0.026848001405596733, 0.006798388436436653, 0.002899644197896123, -0.011959154158830643, -0.0005023670964874327, 0.03713948279619217, 0.0004986110725440085, -0.008849172852933407, 0.004909112583845854, 0.014032474718987942, -0.0017531203338876367, 0.0122896833345294, 0.03626808896660805, -0.01853969320654869, 0.011771353892982006, 0.0023212176747620106, -0.022280685603618622, 0.013964866288006306, -0.02953730896115303, 0.00034015419078059494, 0.009622912853956223, 0.002309949602931738, 0.016721783205866814, 0.00126577727496624, -0.02049282193183899, 0.002458312315866351, 0.009006925858557224, 0.027133457362651825, -0.010096170008182526, 0.006445323117077351, 0.00834586750715971, 0.030679136514663696, 0.006817168556153774, 0.008180602453649044, 0.011643649078905582, -0.009547792375087738, 0.02623201347887516, -0.0007305450853891671, 0.03542673960328102, 0.009480183944106102, 0.0017052311450242996, 0.002360655926167965, -0.014978990890085697, 0.02336241863667965, 0.029311947524547577, 0.02005712501704693, -0.0015193084254860878, 0.009164678864181042, -0.005896945018321276, 0.013596776872873306, 0.0036245551891624928, -0.0026386009994894266, 0.0008587191114202142, 0.020477797836065292, -0.004702531732618809, -0.012109395116567612, -0.021229000762104988, -0.003632067237049341, -0.014242812059819698, -0.00883414875715971, 0.012049298733472824, 0.012372315861284733, 0.012146955356001854, 0.04269838705658913, 0.024759655818343163, 0.011636137031018734, 0.04447122663259506, 0.009945929981768131, 0.02399342879652977, 0.011696233414113522, -0.00130145950242877, 0.0034912165720015764, -0.0018094605766236782, -0.007489495445042849, -0.005480026826262474, -0.017503034323453903, -0.0035137527156621218, -0.002711843466386199, -0.020117221400141716, -0.0049203806556761265, -0.01150843221694231, -0.023392466828227043, -0.013641849160194397, -0.03197120502591133, -0.01582033932209015, -0.009014437906444073, -0.013281271792948246, 0.00017876287165563554, -0.023031888529658318, -0.0413762703537941, 0.013641849160194397, 0.009960954077541828, 0.018374430015683174, -0.0005690364050678909, -0.04954935982823372, -0.002199147129431367, -0.01951625756919384, -0.01762322522699833, 0.012424900196492672, -0.022310733795166016, 0.017893658950924873, -0.020567942410707474, -0.0034668026491999626, 0.008128018118441105, 0.008638836443424225, -0.00999851431697607, 0.015211864374577999, 0.04209742322564125, -0.03485582768917084, 0.02223561331629753, -0.009615400806069374, 0.013371416367590427, -0.012034274637699127, 0.02062803879380226, -0.0034686806611716747, -0.006325130816549063, -0.005870652850717306, 0.0014329199912026525, -0.04083540290594101, 0.019200753420591354, 0.002264877548441291, -0.00209210067987442, -0.004079033154994249, 0.01853969320654869, -0.009134630672633648, -0.01893031969666481, -0.01606072299182415, 0.0009756251238286495, -0.0034348764456808567, -0.0037954540457576513, -0.001854532747529447, -0.010231386870145798, 0.0008150554494932294, 0.010892446152865887, -0.006982433144003153, 0.006005869247019291, -0.008278259076178074, -0.0277344211935997, -0.012011738494038582, -0.023978404700756073, -0.005694119725376368, 0.0064603472128510475, -0.0027944757603108883, -0.04435103386640549, -0.01352916844189167, 0.008909269236028194, -0.022566143423318863, 0.004822724498808384, 0.0009906492196023464, 0.03055894374847412, 0.020222388207912445, 0.030153295025229454, -0.0007310145883820951, 0.0021296609193086624, 0.025090185925364494, -0.010208850726485252, 0.008849172852933407, 0.005923236720263958, 0.0004641026898752898, -0.027524083852767944, 0.0015193084254860878, 0.015054111368954182, -0.013619313016533852, -0.02297179214656353, -0.005881920922547579, 0.02336241863667965, 0.015099183656275272, 0.0019606403075158596, 0.012717869132757187, -0.03016831912100315, -0.01068210881203413, -0.010276459157466888, -0.013491609133780003, 0.009457647800445557, -0.011628624983131886, -0.0006211511208675802, 0.008315819315612316, -0.0054161748848855495, -0.0008042568806558847, 0.01771336980164051, -0.028846200555562973, 0.016676710918545723, -0.00017688487423583865, 0.008308307267725468, 0.005577683448791504, -0.0032395636662840843, -0.0043532224372029305, 0.0053147622384130955, -0.014723582193255424, 0.002597284968942404, 0.0017221332527697086, 0.03921280428767204, -0.014806213788688183, 0.0015925506595522165, -0.007376815192401409, -0.002863961970433593, 0.01022387482225895, -0.025330569595098495, -0.08527658134698868, 0.0016310499049723148, 0.007012481335550547, 0.013521656394004822, 0.001949372235685587, 0.003532532835379243, 0.006430299021303654, -0.012973278760910034, 0.00039555539842695, 0.0219050832092762, -0.0026705272030085325, 0.022250637412071228, 0.0019850542303174734, -0.0028113778680562973, -0.009112094528973103, -0.011793890036642551, 0.006257522385567427, 0.022265661507844925, -0.005145741626620293, -0.026201965287327766, -0.0070275054313242435, 0.012808013707399368, 0.017022263258695602, -0.011470871977508068, -0.028004853054881096, -0.04020439460873604, 0.021183928474783897, 0.03206134960055351, 0.0033560001756995916, 0.001695841085165739, -0.02199522778391838, 0.013131030835211277, -0.004841504152864218, 0.0026329669635742903, 0.019876835867762566, 0.021875035017728806, -0.011929105967283249, 0.03743996471166611, -0.019290897995233536, -0.0011981690768152475, -0.018314333632588387, -0.006080989725887775, -0.018239213153719902, -0.0016028797253966331, -0.003647091332823038, -0.0284706000238657, -0.02890629693865776, 0.011132830753922462, 0.006486639380455017, 0.007662272080779076, -0.01781853847205639, 0.001757815363816917, -0.009502720087766647, -0.008037873543798923, -0.02088344842195511, -0.01664666272699833, -0.005220862105488777, -0.011643649078905582, 0.021108807995915413, -0.007065065670758486, -0.01455080509185791, 0.003536288859322667, 0.01510669570416212, 0.004567315336316824, 0.010163778439164162, 0.027479011565446854, 0.008503619581460953, 0.026532495394349098, -0.005070621147751808, -0.024173717945814133, -0.010374115779995918, 0.011681209318339825, -0.001805704552680254, -0.0119215939193964, 0.00691106915473938, -0.021048711612820625, -0.010930006392300129, -0.01527947187423706, -0.0002927344758063555, 0.021138856187462807, -0.017833562567830086, 0.014460660517215729, -0.02394835650920868, 0.0013193004997447133, 0.006456591188907623, -0.00893180537968874, 0.0025954069569706917, -0.00490535655990243, 0.0030423728749156, 0.0043532224372029305, 0.004364490509033203, -0.02481975220143795, 0.002330607734620571, 0.006302594672888517, -0.013807114213705063, 0.023527683690190315, 0.006482883356511593, -0.03653852269053459, -0.0025785048492252827, -0.011170390993356705, 0.009495208039879799, 0.013499121181666851, -0.020808327943086624, -0.027899684384465218, 0.02408357337117195, -0.004432098474353552, 0.0057429480366408825, 0.014317932538688183, -0.005014281254261732, -0.011110294610261917, -0.0036733835004270077, -0.0030818108934909105, -0.00023756800510454923, 0.012477484531700611, 0.037890687584877014, -0.01718752831220627, 0.011981690302491188, -0.006291326601058245, -0.007887633517384529, -0.02301686443388462, 0.01382213830947876, 0.022220589220523834, -0.013491609133780003, 0.004627411253750324, -0.004803944379091263, 0.0031757112592458725, -0.009187215007841587, 0.02414366975426674, 0.03596760705113411, -0.005761728156358004, 0.03527649864554405, -0.004199225455522537, -0.043629880994558334, 0.02088344842195511, -0.015790291130542755, -0.012402364052832127, 0.024894872680306435, -0.02199522778391838, 0.0062875705771148205, 0.03434500843286514, -0.03425486385822296, 0.013439024798572063, -0.006948629394173622, -0.0016132087912410498, -0.002792597748339176, 0.011778865940868855, 0.01853969320654869, -0.01908056065440178, -0.0002732501598075032, -0.020402677357196808, 0.015790291130542755, -0.02633718214929104, 0.004341954365372658, 0.004180445801466703, 0.037650302052497864, -0.05802293121814728, -0.028170118108391762, -0.02325724996626377, 0.008000313304364681, 0.011313119903206825, -0.015347080305218697, -0.019050512462854385, -0.027854613959789276, 0.005502562969923019, 0.005149497650563717, 0.00866137258708477, 0.0062537663616240025, -0.003955084830522537, 0.007312962785363197, -0.014753630384802818, 0.029281899333000183, -0.058563798666000366, 0.024293910712003708, -0.006896045058965683, 0.006929849274456501, 0.010298995301127434, 0.012950742617249489, -0.00706882169470191, 0.034435153007507324, 0.0008986267494037747, 0.018765054643154144, -0.00019507807155605406, -0.047956809401512146, -0.01843452639877796, 0.011771353892982006, 0.006862240843474865, -0.005720411892980337, 0.004969208966940641, -0.004676239565014839, 0.0037973320577293634, 0.024789704009890556, 0.003720333566889167, -0.008721468970179558, -0.031009666621685028, -0.0015925506595522165, 0.021259048953652382, 0.0015117963775992393, 0.015835363417863846, 0.025240426883101463, -0.03173082321882248, 0.00573167996481061, 0.02014726959168911, 0.005611487664282322, -0.006757072173058987, 0.027118433266878128, 0.003265855833888054, -0.008240698836743832, 0.029041513800621033, -0.007053797598928213, 0.03079932928085327, -0.030573967844247818, -0.010614500381052494, -0.01311600673943758, -0.00580304441973567, -0.005934504792094231, -0.013536680489778519, -0.008188114501535892, -0.005784264300018549, 0.011666185222566128, 0.011884033679962158, -0.009930905885994434, -0.002756915520876646, 0.023873236030340195, -0.0037672838661819696, -0.030498847365379333, 0.01790868304669857, 0.004101569298654795, -0.008308307267725468, 0.028545720502734184, -0.015009039081633091, 0.014956454746425152, -0.021108807995915413, 0.025721196085214615, 0.02521037869155407, -0.01951625756919384, 1.4407842172659002e-05, 0.017593177035450935, -0.01966649852693081, 0.018269261345267296, 0.03353370726108551, -0.021980203688144684, -0.009202239103615284, 0.0021653431467711926, 0.001871434855274856, 0.0022911697160452604, -0.017608201131224632, 0.006595563609153032, -0.0006465042242780328, -0.018088972195982933, -0.0029747644439339638, -0.0001042881267494522, -0.007985289208590984, -0.015685122460126877, 0.005945772863924503, 1.0050276614492759e-05, -0.0001816972653614357, 0.008789077401161194, 0.008638836443424225, 0.016571542248129845, -0.002869596006348729, -0.000903791282325983, 0.010246410965919495, 0.013874722644686699, 0.007865097373723984, 0.017352793365716934, -0.00883414875715971, 0.013889746740460396, 0.023813139647245407, -0.025225402787327766, -0.003048006910830736, -0.0007230330375023186, 0.003660237416625023, -0.011185415089130402, -0.006388982757925987, -0.01386721059679985, -0.03167072683572769, -0.008330843411386013, 0.0023212176747620106, -0.020718183368444443, 0.001349348691292107, -0.0008051958866417408, 0.0016911460552364588, -0.02575124427676201, -0.005701631773263216, -0.010764741338789463, 0.00948769599199295, 0.0036414572969079018, 0.0034499005414545536, 0.009014437906444073, -0.003519386751577258, -0.014468172565102577, -0.011643649078905582, -0.005772996228188276, 0.011861497536301613, -0.02734379470348358, 0.004552291240543127, -0.016616614535450935, 0.00830079521983862, 0.002309949602931738, 0.0008005008567124605, 0.023377442732453346, -0.015414688736200333, -0.007485739421099424, -0.005044328980147839, -0.001298642484471202, -0.009840761311352253, 0.008698932826519012, 0.010862397961318493, 0.021394265815615654, -0.012312219478189945, -0.009202239103615284, -0.013296295888721943, 0.0008544935844838619, 0.0036546033807098866, -0.010351579636335373, -0.01567009836435318, 0.01243241224437952, -0.023873236030340195, 0.04531257599592209, -0.001251692301593721, 0.0029522283002734184, 0.009314918890595436, -0.0051419856026768684, -0.017142456024885178, -0.006929849274456501, 0.00963793694972992, 0.0006521382601931691, -0.011515944264829159, -0.0004077624762430787, -0.021980203688144684, -0.0020000783260911703, -4.460268610273488e-05, -0.02890629693865776, 0.004105325322598219, 0.011771353892982006, -0.003570093074813485, -0.0010648304596543312, 0.01450573280453682, -0.0023719239979982376, -0.011072734370827675, -0.011576040647923946, 0.0018132166005671024, -0.018269261345267296, 0.024639463052153587, 0.02088344842195511, -0.009337455034255981, -0.011869009584188461, 0.0035099966917186975, 0.003585117170587182, -0.011538480408489704, -0.0046236552298069, -0.007429399061948061, -0.017022263258695602, 0.0030517629347741604, 0.009097070433199406, 0.023076960816979408, 0.006219962146133184, 9.020306606544182e-05, 0.011869009584188461, 0.013055911287665367, 0.021499434486031532, 0.027373842895030975, -0.009968466125428677, -0.006073477678000927, 0.018945343792438507, -0.0035118747036904097, 0.020312532782554626, 0.016526469960808754, -0.01805892400443554, -0.018524669110774994, -0.017608201131224632, 0.010103682056069374, 0.004356978461146355, 0.0030404948629438877, -0.0018845809390768409, 0.004112837370485067, 0.011305607855319977, -0.0007685747114010155, -0.02510521002113819, 0.003793576033785939, -0.023242225870490074, -0.04753613471984863, -0.033353421837091446, -0.012041786685585976, 0.02249102294445038, -0.025285499170422554, 0.005649047903716564, -0.007185257971286774, -0.0015437224647030234, 0.01367940939962864, 0.02638225443661213, -0.01853969320654869, 0.0016254158690571785, 0.03662866726517677, 0.014047498814761639, 0.030498847365379333, 0.017262648791074753, 0.006088501773774624, -0.006531711667776108, -0.006437811069190502, -0.024714583531022072, 0.000808482407592237, 0.014145155437290668, -0.008225674740970135, -0.0057429480366408825, -0.014152667485177517, 0.0061448416672647, -0.02729872241616249, 0.005908212624490261, -0.007121406029909849, -0.019681522622704506, 0.002537188585847616, 0.03021339140832424, 0.005352322477847338, 0.0023850700818002224, -0.01664666272699833, 0.005716655869036913, -0.004800188355147839, -0.0035456789191812277, 0.010389139875769615, -0.004676239565014839, 0.014573341235518456, 0.01036660373210907, -0.003158809384331107, 0.011621112935245037, -0.008135530166327953, -0.00990085769444704, 0.011215463280677795, -0.018028875812888145, -0.0011164756724610925, 0.009720568545162678, 0.018569741398096085, -0.024203766137361526, -0.012477484531700611, -0.006614343728870153, -0.0028714740183204412, -0.014963966794312, -0.013829650357365608, -0.006790876388549805, 0.002437654184177518, -0.01799882762134075, 0.00247521442361176, 0.00985578540712595, 0.006640635896474123, -0.0043043941259384155, -0.005055597051978111, -0.004278101958334446, -0.004785164259374142, 0.02253609523177147, 0.0008436950738541782, 0.018164092674851418, -0.02131914533674717, 0.004541023168712854, 0.0034949725959450006, 0.009945929981768131, -0.017157480120658875, 0.021529482677578926, -0.015730194747447968, 0.013874722644686699, -0.0005347627447918057, 0.005168277770280838, 0.013461560942232609, 0.00428185798227787, 0.017307721078395844, -0.003906256519258022, -0.028650889173150063, 0.015534881502389908, -0.009284870699048042, 0.01133565604686737, -0.035156309604644775, -0.009532768279314041, -0.008233186788856983, -0.024879848584532738, -0.004717555828392506, -0.0321214459836483, 0.039543334394693375, -0.020958568900823593, -0.006625611800700426, -0.011793890036642551, 0.005352322477847338, -0.010081145912408829, -0.005814312491565943, -0.0051269615069031715, 0.013108494691550732, -0.0006896983832120895, 0.027614228427410126, 0.016090771183371544, -0.008165578357875347, -0.011305607855319977, 0.00481896847486496, 0.009450135752558708, -0.01041167601943016, 0.021724795922636986, -0.014250324107706547, 0.005138229578733444, 0.005258421879261732, -0.02204030007123947, 0.018419502303004265, -0.002287413692101836, -0.009164678864181042, 0.047235652804374695, -0.008533667773008347, -0.005010525230318308, -0.006535467691719532, 0.002174733206629753, -0.011080246418714523, 0.0031193711329251528, 0.025961581617593765, -0.0016610979801043868, -0.0009394734515808523, 0.008954341523349285, 0.002664893167093396, 0.0011296217562630773, -0.003361634211614728, 0.011583552695810795, 0.016661686822772026, 0.01986181177198887, 0.003202003426849842, -0.0072829145938158035, 0.003232051618397236, -0.0007047224789857864, 0.02472960762679577, -0.00709511386230588, 0.002199147129431367, 0.0013502876972779632, -0.027959780767560005, -0.042217615991830826, 0.0031625654082745314, -0.02038765326142311, -0.01712743192911148, 0.003215149510651827, 0.00856371596455574, -0.005630267783999443, 0.01005109865218401, 0.0029127902816981077, 0.008751517161726952, 0.010749717243015766, -0.005472514778375626, 0.012777965515851974, 0.007812513038516045, -0.013957354240119457, -0.0007544896798208356, -0.010291483253240585, -0.005536367185413837, 0.008270747028291225, 0.023873236030340195, 0.04179694503545761, 0.004604875575751066, 0.02632215805351734, 0.0121694914996624, -0.016917094588279724, 0.01966649852693081, 0.010599476285278797, 0.008022849448025227, 0.007414374966174364, -0.015084159560501575, 0.028545720502734184, 0.005750460084527731, -0.020552918314933777, 0.031370244920253754, -0.022551119327545166, -0.0004472006403375417, -0.007598420139402151, -0.031009666621685028, -0.01781853847205639, -0.009562816470861435, 0.011576040647923946, -2.263879832753446e-05, -0.002995422575622797, -0.005288470070809126, -0.011801401153206825, 0.0054311989806592464, 0.028485624119639397, -0.004691263660788536, -0.009893345646560192, 0.0052433982491493225, -0.010006026364862919, -0.020673111081123352, -0.0022742676082998514, 0.0027663055807352066, -0.00282264593988657, -0.006122305523604155, 0.003853672184050083, 0.01345404889434576, -0.007117650005966425, -0.0007803122862242162, -0.0017634493997320533, 0.0006915763951838017, -0.00013169529847800732, -0.0006389921763911843, 0.011005125939846039, 0.003474314697086811, -8.885324496077374e-05, 0.01077976543456316, -0.004582339432090521, 0.0015502955066040158, 0.019381040707230568, 0.02170977182686329, 0.012665284797549248, -0.0015822215937078, 0.0029259363655000925, -0.03125005215406418, -0.016917094588279724, -0.013221175409853458, -0.004161665681749582, 0.01092249434441328, 0.006317618768662214, 0.017217576503753662, -0.0032865137327462435, 0.0024188740644603968, 0.013100982643663883, 0.0015089793596416712, 0.010614500381052494, 0.002381314057856798, 0.011944130063056946, -0.002358777914196253, 0.013566728681325912, 0.010141242295503616, -0.013070935383439064, -0.010749717243015766, -0.004541023168712854, -0.015489809215068817, 0.002490238519385457, 0.0015202474314719439, 0.011853985488414764, -0.004574827384203672, 0.011778865940868855, 0.015444736927747726, 0.01382213830947876, -0.002199147129431367, 0.014490708708763123, 0.011545992456376553, -0.0077599287033081055, 0.008075433783233166, 0.010208850726485252, 0.0092473104596138, 0.011553504504263401, 0.010674596764147282, -0.008856684900820255, 0.010990101844072342, 0.0031137370970100164, 0.010178802534937859, -0.0010375994024798274, 0.00975812878459692, 0.013281271792948246, -0.010344067588448524, 0.010486796498298645, -0.028004853054881096, 0.019245825707912445, -0.015362104400992393, -0.005656559951603413, -0.027914708480238914, -0.012665284797549248, 0.00846605934202671, -0.014948942698538303, 0.007185257971286774, -0.010982589796185493, 0.012868110090494156, -0.019696546718478203, -0.01031401939690113, -0.010186314582824707, -0.006411518901586533, -0.010344067588448524, 0.01893031969666481, 0.012695332989096642, -0.005371102597564459, 0.011268047615885735, 0.007433155085891485, 0.00907453428953886, 0.011005125939846039, 0.03512626141309738, 0.0070763337425887585, -0.0105844521895051, -0.025871437042951584, 0.004154153633862734, 0.0011756329331547022, 0.009187215007841587, -0.013078447431325912, -0.033653900027275085, 0.017503034323453903, -0.014265348203480244, -0.01697719097137451, 0.027509059756994247, 0.011793890036642551, -0.012364803813397884, 0.006573027465492487, -0.016526469960808754, 0.006531711667776108, -0.007125162053853273, -0.0250601377338171, -0.020643062889575958, 0.0184946209192276, -0.02690809778869152, 0.015955554321408272, 0.002920302329584956, -0.005457491148263216, -0.003031104803085327, -0.008721468970179558, 0.04296882078051567, -0.00044297511340118945, -0.008698932826519012, 0.00557392742484808, 0.04077530652284622, -0.005904456600546837, 0.008488595485687256, 0.03557698056101799, -0.014640949666500092, -0.0007164599956013262, -0.014776166528463364, 0.01031401939690113, -0.005359834525734186, -0.01562502607703209, 0.007031261455267668, 0.007534567732363939, -0.01921577751636505, 0.014528268948197365, -2.2917565729585476e-05, -0.004090301226824522, -0.008120506070554256, -0.0021446850150823593, 0.006020893342792988, -0.013266247697174549, -0.022686336189508438, -0.019786691293120384, 0.015459761023521423, 0.014355492778122425, 0.029942957684397697, -0.005202081985771656, -0.017412889748811722, 0.00757964001968503, -0.0009681130759418011, -0.0005831214366480708, 0.028590792790055275, 0.004112837370485067, 0.001141828834079206, -0.02121397666633129, -0.00793270580470562, 0.008984389714896679, 0.025090185925364494, -0.021138856187462807, -0.011643649078905582, 0.009412575513124466, 0.019531281664967537, -0.014663485810160637, 0.03924285247921944, 0.014565829187631607, -0.019095584750175476, -0.0008418170618824661, 0.0007281975704245269, -0.01386721059679985, -0.02214546874165535, -0.010404163971543312, -0.009728080593049526, -0.01284557394683361, 0.01072718109935522, -0.03783059120178223, 0.004961696919053793, 0.000792049802839756, -0.03431496024131775, -0.004195469431579113, 0.009645448997616768, -0.023527683690190315, 0.01843452639877796, 0.012687820941209793, 0.008984389714896679, 0.029281899333000183, -0.0020845888648182154, -0.010930006392300129, -0.005900700576603413, -0.0010667084716260433, 0.0316406786441803, 0.006096013821661472, -0.013048399239778519, 0.0006108220550231636, 0.0024789704475551844, -0.0030611527618020773, 0.019651474431157112, -0.03425486385822296, -0.01160608883947134, -0.004860284272581339, 0.0038724523037672043, 0.001682695117779076, 0.003921280615031719, -0.003309049876406789, 0.010869910009205341, -0.0028019878081977367, -0.0030780548695474863, 0.01248499657958746, -0.007910169661045074, -0.00598708912730217, 0.02136421762406826, 0.0023399977944791317, -0.014250324107706547, 0.0243239589035511, -0.008451035246253014, 0.013003326952457428, -0.013138542883098125, -0.004375758580863476, -0.0010714035015553236, -0.012379827909171581, -0.007391839288175106, 0.010133730247616768, 0.04540272057056427, -0.0059495288878679276, -0.0047814082354307175, 0.011741305701434612, 0.01762322522699833, -0.016195939853787422, 0.024504246190190315, 0.024549318477511406, 0.0023869480937719345, -0.006310106720775366, -0.010359091684222221, 0.013198639266192913, -0.007207794114947319, 0.02958238124847412, 0.0019606403075158596, -0.018825151026248932, -0.004522243048995733, 0.011425799690186977, -0.01156101655215025, -0.0011681208852678537, -0.0029672523960471153, -0.008000313304364681, 0.0007882938371039927, 0.017548106610774994, 0.018073948100209236, 0.020237412303686142, -0.0028433038387447596, 0.01966649852693081, -0.009457647800445557, 0.005333542358130217, -0.0047476040199398994, -0.007985289208590984, 0.023392466828227043, 0.010561916045844555, -0.006231230217963457, -0.004725067876279354, 0.003436754457652569, -0.022611215710639954, 0.010103682056069374, 0.023377442732453346, 0.0013089715503156185, -0.020372629165649414, 0.016616614535450935, -0.0011324387742206454, -0.018629837781190872, -0.000649790745228529, -0.006039673462510109, 0.0027681835927069187, -0.003104347037151456, 0.01012621819972992, 0.026637664064764977, 0.024354007095098495, 0.0074556912295520306, 0.0010216363007202744, 0.03320318087935448, -0.02851567231118679, 0.002726867562159896, -0.009044486097991467, 0.00866137258708477, -0.0024451662320643663, -0.0012620212510228157, -0.01274791732430458, 0.013033375144004822, 0.01022387482225895, -0.009480183944106102, 0.018269261345267296, -0.029477212578058243, -0.0021296609193086624, 0.03314308449625969, 0.01450573280453682, 0.03317313268780708, -0.01893031969666481, -0.003070542821660638, 0.0008512070635333657, 0.0033184399362653494, 0.019966980442404747, 0.004105325322598219, -0.004541023168712854, -0.0005371102597564459, 0.020507846027612686, -0.005679096095263958, 0.005453735124319792, 0.009750616736710072, 0.006760828197002411, 0.00681341253221035, 0.02229570969939232, 0.0007009664550423622, 0.0007845378131605685, -0.010787277482450008, 0.0036395792849361897, 0.015181816183030605, -0.0013906648382544518, -0.03864188864827156, -0.001252631307579577, 0.0035438009072095156, -0.01419022772461176, 0.011576040647923946, -0.0091271186247468, -0.018614813685417175, -0.0009178763721138239, 0.007373059168457985, 0.024158693850040436, 0.005863140802830458, 0.004638679325580597, 0.029942957684397697, -0.01699221506714821, 0.003564459038898349, -0.005337298382073641, -0.0065993196330964565, -0.0019550062716007233, 0.01335639227181673, -0.006430299021303654, -0.002125904895365238, -0.007031261455267668, -0.024459173902869225, -0.03158058226108551, -0.01660159043967724, 0.005446223076432943, 0.021198952570557594, 0.01645134948194027, 0.003248953726142645, -0.010869910009205341, -0.0038424041122198105, 0.000459642440546304, -0.005694119725376368, -0.003312805900350213, 0.02286662347614765, 0.0002065808657789603, -0.004323174245655537, -0.013221175409853458, 0.010193826630711555, -0.004372002556920052, 0.012146955356001854, -0.0007690442143939435, 0.006501663476228714, 0.010336555540561676, -0.009863297455012798, 0.006606831680983305, -0.015256935730576515, 0.008090457879006863, -0.015294495970010757, -0.02690809778869152, 0.024519270285964012, -0.0014178960118442774, 0.022370830178260803, -0.0017315233126282692, -0.0024169960524886847, 0.0036170431412756443, -0.022130444645881653, -0.02282155118882656, -0.010629524476826191, -0.013153566978871822, -0.02462443895637989, 0.0109525416046381, -0.010088657960295677, -0.021980203688144684, 0.0163011085242033, -0.005679096095263958, -0.00019906883244402707, 0.0020075903739780188, 0.003530654823407531, -0.0018338747322559357, -0.004454634618014097, -0.011793890036642551, 0.010306507349014282, -0.0021108807995915413, -0.003757893806323409, 0.0023738020099699497, -0.009412575513124466, 0.007444423157721758, 0.006824680604040623, -0.016436325386166573, 0.01747298613190651, -0.029477212578058243, 0.05213350057601929, 0.002120270859450102, -0.011042686179280281, -0.010614500381052494, -0.0024958725553005934, 0.007564615923911333, -0.006340154446661472, -0.009532768279314041, 0.026156894862651825, 0.006017137318849564, 0.008481083437800407, -0.008158066309988499, 0.0042705899104475975, -0.00487906439229846, -0.035216402262449265, 0.017382841557264328, -0.009577840566635132, 0.029657499864697456, -0.013484097085893154, -0.01591048203408718, 0.0016507689142599702, -0.017578154802322388, -0.021289097145199776, -0.006002113223075867, 0.007620955817401409, -0.01951625756919384, -1.4070386896491982e-05, -0.004882820416241884, 0.0074707153253257275, -0.014047498814761639, -0.02038765326142311, -0.007940216921269894, -0.013048399239778519, -0.016000626608729362, -0.020943544805049896, 0.011808913201093674, -0.005908212624490261, -0.003947572782635689, 0.01017129048705101, -0.0036226771771907806, -0.04266833886504173, -0.017337769269943237, -0.026397278532385826, -0.01537712849676609, -0.017292696982622147, -0.017548106610774994, -0.011343168094754219, -0.011268047615885735, 0.011891545727849007, 0.02219054102897644, 0.0041879573836922646, -0.006512931548058987, 0.007320474833250046, -0.007654760032892227, 0.01316859107464552, 0.010757229290902615, 0.006531711667776108, -0.03909261152148247, 0.016376229003071785, -0.003985132556408644, -0.016556518152356148, -0.01664666272699833, 0.020913496613502502, 0.004999257158488035, -0.022130444645881653, 0.019696546718478203, -0.0038912324234843254, 0.011042686179280281, -0.0060321614146232605, 0.0012714113108813763, -0.014355492778122425, -0.0037485037464648485, 0.029221802949905396, -0.014130131341516972, -0.0015916116535663605, 0.027073360979557037, -0.009427599608898163, 0.005048085004091263, -0.0033729022834450006, -0.009795689024031162, 0.0052433982491493225, -0.010990101844072342, -0.025030089542269707, -0.04131617397069931, -0.021259048953652382, -0.00206205272115767, 0.0029240583535283804, -0.02427888661623001, -0.0019775424152612686, 0.008000313304364681, -0.009728080593049526, 0.009968466125428677, -0.011944130063056946, -0.0014056889340281487, 0.006456591188907623, -0.0004056497127749026, -0.002824523951858282, -0.0062387422658503056, -0.0019249580800533295, -0.0025935289449989796, 0.007294182665646076, 0.009750616736710072, 0.01688704639673233, 0.008375914767384529, 0.00971305649727583, 0.00907453428953886, 0.017157480120658875, 0.02351265959441662, 0.026487423107028008, -0.01201925054192543, -0.005371102597564459, 0.03497602045536041, 0.022160492837429047, -0.012890646234154701, -0.03149043768644333, -0.03269236162304878, -0.004740091972053051, -0.014753630384802818, 0.040715210139751434, -0.010742205195128918, -0.00805289763957262, 0.05192316323518753, -0.007192770019173622, 0.007072577718645334, -0.03167072683572769, 0.004939160775393248, -0.024248838424682617, 0.000554481812287122, 0.022851599380373955, 0.00658429553732276, 0.02229570969939232, 0.016180915758013725, 0.008120506070554256, 0.011485896073281765, -0.03003310225903988, 0.0021503190509974957, 0.03494597226381302, -0.002503384603187442, -0.0006685708067379892, -0.031069763004779816, -0.011268047615885735, -0.0003058805305045098, -0.0024639463517814875, 0.0018122775945812464, 0.019921908155083656, -0.011298095807433128, -0.018810126930475235, 0.004717555828392506, -0.004980477038770914, 0.01005109865218401, -0.0028714740183204412, -0.01893031969666481, 0.003977620508521795, 0.01610579527914524, -0.0021841232664883137, 0.009405063465237617, 0.004056497011333704, -0.0034837047569453716, -0.0023888261057436466, -0.002991666551679373, 0.008278259076178074, 0.024098597466945648, -0.009314918890595436, 0.0006934544071555138, 0.02145436219871044, 0.0013756407424807549, -0.03143034130334854, 0.016631638631224632, 0.0022892917040735483, -0.009322430938482285, -0.0024977505672723055, 0.00043076806468889117, 0.015655074268579483, 0.009795689024031162, 0.0006065965280868113, 0.01394233014434576, 0.005273445975035429, -0.0006892288802191615, -0.019982004538178444, 0.01331131998449564, 0.0036696274764835835, 0.009262334555387497, 0.006760828197002411, -0.03548683598637581, -0.005926992744207382, -0.017157480120658875, 0.002398216165602207, 0.011057710275053978, -0.0052433982491493225, -0.003921280615031719, -0.007196526043117046, -0.013799602165818214, 0.03293274715542793, 0.009284870699048042, 0.0021634651347994804, 0.0132587356492877, -0.004233029671013355, 0.01801385171711445, -0.005746704060584307, -0.007925193756818771, 0.01819414086639881, -0.001077976543456316, 0.01403998676687479, -0.005532611161470413, -0.008443523198366165, 0.004740091972053051, 0.018674910068511963, -0.006621855776757002, -0.000233694605412893, 0.00013169529847800732, -0.002122148871421814, -0.022506047040224075, -0.005727923940867186, -0.007549591828137636, 0.029867837205529213, 0.004127861466258764, 0.021394265815615654, 0.002392582129687071, 0.028350407257676125, 0.007722368463873863, 0.0003988419193774462, -0.006174889858812094, 0.0043381983414292336, -0.010028562508523464, 0.0009718690998852253, 0.026487423107028008, -0.009006925858557224, -0.0026573811192065477, 0.010524355806410313, 0.003141907276585698, -0.009975978173315525, -0.0072491103783249855, 0.004785164259374142, -2.4502134692738764e-05, 0.013131030835211277, -0.0045635593123734, 0.0027062094304710627, -0.005641535855829716, 0.030634064227342606, 0.020943544805049896, -0.006944873370230198, 0.007211550138890743, 0.0020489066373556852, -0.010832349769771099, -0.0021315389312803745, 0.0030987130012363195, 0.003329708008095622, 0.01053937990218401, -0.03395438194274902, -0.01853969320654869, -0.005889432970434427, 0.01031401939690113, -0.017052311450242996, 0.0008901757537387311, -0.01146335992962122, -0.0017080481629818678, 0.0014451270690187812, 0.0032865137327462435, 0.0063288863748312, -0.011170390993356705, 0.005299738142639399, 0.007613443769514561, -0.005649047903716564, 0.024804728105664253, 0.01838945411145687, 0.01582033932209015, 0.015955554321408272, 0.004657459445297718, -0.02481975220143795, -0.002837670035660267, -0.02477467991411686, -0.010088657960295677, 0.01873500645160675, -0.01087742205709219, 0.012064322829246521, -0.0019249580800533295, -0.000902382773347199, 0.0007549591828137636, 0.012740405276417732, -0.000823036942165345, -0.014325444586575031, 0.021544506773352623, 0.024744631722569466, -0.004296882078051567, -0.014130131341516972, -0.011177903041243553, -0.007117650005966425, -0.0028921321500092745, 0.0035907512065023184, -0.01345404889434576, -0.011681209318339825, 0.022521071135997772, -0.006580539513379335, -0.010178802534937859, -0.0036884075962007046, 0.0008145859465003014, 0.0012958254665136337, 0.000823975948151201, -0.007098869886249304, -0.013401464559137821, -0.022836575284600258, -0.0005333542358130217, -0.006974921096116304, -0.02360280230641365, 0.008120506070554256, -0.013619313016533852, 0.013574240729212761, -0.007391839288175106, -0.0022742676082998514, -0.007158966269344091, -0.0023831920698285103, 0.006843460723757744, 0.01591048203408718, 0.007275402545928955, 0.01223709899932146, 0.010907470248639584, 0.03167072683572769, 0.014994014985859394, -0.025631051510572433, 0.010839861817657948, -0.007519543636590242, -0.013273759745061398, -0.01403998676687479, 0.002582260873168707, 0.00985578540712595, -0.023662898689508438, 0.016947142779827118, -0.002328729722648859, -0.014520756900310516, -0.0042705899104475975, 0.011080246418714523, -0.01799882762134075, -0.02273140847682953, -0.016676710918545723, 0.0012967644724994898, -0.019381040707230568, -0.0015963066834956408, -0.010291483253240585, 0.013904770836234093, 0.006824680604040623, -0.032872650772333145, 0.010381627827882767, -0.01119292713701725, 0.0011850229930132627, -0.025465786457061768, 0.00038546111318282783, 0.01790868304669857, -0.005217106081545353, 0.020222388207912445, -0.007305450737476349, -0.025150282308459282, 0.027824565768241882, -0.0029390824493020773, 0.00921726319938898, -0.023182129487395287, 0.01182393729686737, 0.003703431459143758, 0.01995195634663105, 0.015640050172805786, 0.014836261980235577, -0.015286983922123909, 0.00897687766700983, 0.013401464559137821, 0.02438405528664589, 0.010013538412749767, 0.007872609421610832, -0.010614500381052494, -0.02258116751909256, 0.010073634795844555, -0.017352793365716934, -0.01975664310157299, -0.009840761311352253, -0.00394006073474884, 0.007080089766532183, 0.007358035072684288, -0.013762041926383972, -0.02705833688378334, 0.016120819374918938, -0.024308934807777405, 0.017217576503753662, 0.005096913315355778, 0.009277358651161194, -0.00027982317260466516, -0.00042396027129143476, 0.004946672823280096, 0.0109525416046381, 0.0024620683398097754, -0.00564529187977314, -0.001983176451176405, -0.012139443308115005, 0.03596760705113411, -0.0009051997913047671, -0.002214171225205064, -0.008143042214214802, -0.008961853571236134, 0.0011991080828011036, 0.016706759110093117, 0.015850387513637543, -0.0075383237563073635, 0.003970108460634947, 0.032151494175195694, 0.023918308317661285, 0.01082483772188425, -0.004800188355147839, -0.0029691304080188274, -0.010854885913431644, -0.008638836443424225, -0.0014723582426086068, -0.030649088323116302, -0.002863961970433593, 0.002216049237176776, 0.01175632979720831, 0.011470871977508068, 0.017743417993187904, 0.00039813766488805413, 0.02418874204158783, -0.008698932826519012, -0.01615086756646633, 0.00536359054967761, 0.007917681708931923, -0.0018949100049212575, -0.007910169661045074, 0.012064322829246521, -0.014783678576350212, 0.004601119551807642, -0.012740405276417732, -0.012650261633098125, -0.009517744183540344, 0.002647991059347987, -0.01986181177198887, -0.010404163971543312, -0.021048711612820625, 0.019260849803686142, 0.0037616498302668333, -0.01591048203408718, 0.02764427661895752, 0.000966235063970089, 0.0032639778219163418, -0.00010546188423177227, 0.006907313130795956, 0.006573027465492487, -0.012349779717624187, -0.017683321610093117, 0.005307250190526247, 0.012672796845436096, 0.00647161528468132, 0.013777066022157669, -0.0043381983414292336, -0.010073634795844555, 0.016075747087597847, -0.006174889858812094, -0.007354279048740864, 0.0054161748848855495, -0.01567009836435318, -0.03614789620041847, 0.000341327948262915, 0.010554403997957706, -0.008428499102592468, -0.011936618015170097, -0.00958535261452198, 0.009825737215578556, -0.011688721366226673, -0.019050512462854385, -0.015256935730576515, 0.01433295663446188, 0.003408584278076887, -0.013198639266192913, -0.005851872731000185, 0.00665565999224782, 0.00025400056620128453, 0.00834586750715971, 0.01654149405658245, 0.003917524591088295, 0.007977777160704136, 0.009382527321577072, -0.008315819315612316, 0.006809656508266926, 0.013641849160194397, 0.006114793475717306, -0.004552291240543127, 0.011726281605660915, -0.019305920228362083, 0.030198367312550545, -0.009870809502899647, 0.005228374153375626, 0.00014683674089610577, -0.014994014985859394, 0.005187057889997959, 0.015835363417863846, 0.004229273647069931, -0.003141907276585698, -0.0022592435125261545, -0.01908056065440178, 0.007425643038004637, 0.007962753064930439, 0.01684197410941124, -0.00739559531211853, -0.013852186501026154, -0.02764427661895752, 0.014017450623214245, -0.006603075657039881, 0.025976605713367462, -0.004807700403034687, 0.013957354240119457, -0.022641263902187347, -0.01119292713701725, -0.0002582260931376368, 0.011666185222566128, 0.003048006910830736, 0.010096170008182526, -0.004056497011333704, -0.0036715054884552956, 0.004172933753579855, -0.01790868304669857, 0.006422786973416805, -0.008548691868782043, 0.008443523198366165, 0.0001710160868242383, 0.00531851826235652, 0.0004314723191782832, 0.021153880283236504, -0.010561916045844555, -0.014858798123896122, -0.012980790808796883, -0.0004190305189695209, -0.026742832735180855, 0.00842098705470562, -0.00658429553732276, -0.015399664640426636, 0.01669173501431942, -0.01912563294172287, -0.017337769269943237, 0.019936932250857353, 0.001992566278204322, 7.987402204889804e-05, 0.00323580764234066, 0.010449236258864403, -0.003902500495314598, -0.003202003426849842, 0.0037841859739273787, -0.012131931260228157, 0.031009666621685028, 0.014302908442914486, -0.017112407833337784, 0.03046879917383194, 0.007947728969156742, -0.014640949666500092, 0.014265348203480244, 0.004882820416241884, -0.0007845378131605685, -0.021784892305731773, 0.008676396682858467, 0.013701945543289185, 0.006452835164964199, -0.008353379555046558, 0.00012488751963246614, -0.0021841232664883137, 0.024263862520456314, -0.014423100277781487, 0.020913496613502502, 0.035366643220186234, 0.003014202695339918, 0.0056039756163954735, 0.01864486187696457, 0.0032733676489442587, -0.00640025082975626, 0.019531281664967537, -0.0013549827272072434, 0.008789077401161194, 0.007008725311607122, 0.0008962792926467955, 0.014896358363330364, -0.004717555828392506, 0.0070763337425887585, -0.02321217767894268, 0.0034348764456808567, -0.016195939853787422, 0.01367940939962864, 0.0065993196330964565, 0.004616143181920052, 0.010036074556410313, -0.004041472915560007, 0.0016423178603872657, -0.009375015273690224, 0.004957940895110369, 0.005957040935754776, -0.029161706566810608, -0.005592707544565201, 0.003553190967068076, -0.0019869322422891855, -0.004634923301637173, 0.017202552407979965, 0.002142807003110647, -0.002696819370612502, 0.023572755977511406, 0.006141085643321276, 0.02205532416701317, -0.008060409687459469, -0.013146054930984974, 0.00954028032720089, -0.006640635896474123, 0.010892446152865887, -0.013085958547890186, -0.00446590268984437, -0.002916546305641532, 0.022010251879692078, 0.005994601175189018, -0.02560100331902504, 0.013296295888721943, -0.036718811839818954, 0.010591964237391949, -0.0070275054313242435, -0.031700775027275085, -0.013055911287665367, -0.004935404751449823, -0.02666771225631237, 0.021484410390257835, -0.022956768050789833, 0.018750030547380447, 0.005198325961828232, -0.02575124427676201, 0.0009432294755242765, -0.0008028483716771007, 0.004191713407635689, -0.0064941514283418655, -0.01814906857907772, -0.0026235771365463734, 0.006790876388549805, 0.04714551195502281, 0.023272274062037468, 0.008158066309988499, 0.009307406842708588, 0.011966666206717491, -0.02977769263088703, 0.003294025780633092, 0.004454634618014097, -0.006588051561266184, -0.007797488942742348, -0.004218005575239658, -0.009720568545162678, 0.016391253098845482, 0.010186314582824707, -0.016195939853787422, 0.0038236239925026894, -0.0034799487330019474, 0.0044921948574483395, -0.0004887515679001808, 0.007147698197513819, 0.011485896073281765, -0.003091200953349471, -0.004417074378579855, -0.0014347980031743646, 0.0037691618781536818, 0.008112994022667408, -0.008180602453649044, -0.014483196660876274, 0.00183763075619936, 0.021439338102936745, 0.020958568900823593, -0.00810548197478056, -0.03566712513566017, 0.0014732972485944629, -0.007271646521985531, 0.006479127332568169, -0.0014347980031743646, 0.014070034958422184, -0.004176689777523279, -0.00027606714866124094, -0.031310148537158966, -0.013003326952457428, -0.005525099113583565, -0.005288470070809126, -0.008060409687459469, -0.011831449344754219, 0.00022301344142761081, -0.020853400230407715, -0.007620955817401409, 0.0030217147432267666, 0.01133565604686737, -0.02851567231118679, -0.0015202474314719439, -0.008022849448025227, -0.01941108889877796, 0.0021127588115632534, 0.007279158569872379, -0.030543919652700424, -0.01119292713701725, -0.018629837781190872, -0.017938731238245964, -0.009848273359239101, 0.011628624983131886, 0.02370797097682953, -0.004601119551807642, 0.011726281605660915, -0.014708558097481728, 0.007354279048740864, 0.0022216832730919123, 0.018674910068511963, 0.01141077559441328, -0.01321366336196661, -0.004912868607789278, -0.02151445858180523, 0.0004831175319850445, -0.017022263258695602, -0.028094997629523277, -0.003902500495314598, -0.011726281605660915, 0.005934504792094231, -0.011425799690186977, -0.008909269236028194, 0.012913182377815247, 0.007594664115458727, -0.018704958260059357, -0.003453656565397978, -0.010389139875769615, -0.003121249144896865, -0.0036527253687381744, -0.0003760710824280977, -0.017698345705866814, 0.00546124717220664, -0.02267131209373474, 0.009465159848332405, 0.01386721059679985, 0.008954341523349285, -0.008210650645196438, 0.010576940141618252, 0.0045598032884299755, 0.013303807936608791, 0.010036074556410313, 0.010554403997957706, 0.007669784128665924, 0.003044250886887312, 0.0033015378285199404, -0.02379811555147171, -0.01625603623688221, -0.022220589220523834, -0.0009075473062694073, 0.02838045544922352, 0.013694433495402336, 0.016180915758013725, 0.005675340071320534, -0.012402364052832127, 0.005311006214469671, -0.005202081985771656, -0.010306507349014282, 0.00842098705470562, 0.019786691293120384, -2.1083573301439174e-05, 0.014430612325668335, 0.00231182761490345, 0.03446520119905472, 0.007098869886249304, -0.004086545202881098, -0.006640635896474123, 0.0004756055132020265, 0.019982004538178444, 0.005682852119207382, -0.015444736927747726, 0.007658516056835651, -0.009720568545162678, -0.004773896187543869, 0.02160460315644741, -0.00971305649727583, -0.006719512399286032, 0.00234750984236598, -0.0048715523444116116, 0.0003704370465129614, -0.005359834525734186, -0.01501655112951994, 0.005983333103358746, 0.01858476549386978, -0.003724089590832591, 0.026412302628159523, 0.0023512658663094044, -0.02195015549659729, 0.01902046427130699, 0.004984233062714338, 0.0051757898181676865, -0.0010516843758523464, 0.007230330258607864, -0.002867717994377017, 0.008067921735346317, -0.0025184086989611387, 0.0017559373518452048, -0.01693211868405342, 0.022130444645881653, -0.023302322253584862, 0.0024658243637531996, 0.0008263234631158412, -0.0027775736525654793, 0.018659885972738266, -0.004214249551296234, 0.0028733520302921534, -0.004368246532976627, 0.00084087805589661, 0.01160608883947134, -0.006554247345775366, 0.003697797656059265, 4.430925037013367e-05, -0.018629837781190872, -0.022250637412071228, -0.001060135429725051, -0.00180664355866611, -0.00047325799823738635, -0.004266833886504173, 0.002122148871421814, -0.019095584750175476, -0.0009709300938993692, 0.01567009836435318, 0.006512931548058987, 0.007970265112817287, -0.005085645243525505, -0.015955554321408272, 0.000467858713818714, -0.011425799690186977, -0.0074707153253257275, 0.006524199619889259, -0.00215407507494092, -0.006625611800700426, 0.02160460315644741, -0.0023193396627902985, -0.0002758323971647769, -0.007662272080779076, 0.012890646234154701, -0.005769240204244852, -0.0030066906474530697, -0.04224766418337822, -0.007012481335550547, 0.011733793653547764, 0.0008831332088448107, 0.006310106720775366, -0.0031625654082745314], "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1": [-0.015506516210734844, -0.005173110403120518, -0.002740338910371065, 0.020043132826685905, -0.03509684279561043, -0.015104969963431358, -0.0014150229981169105, 0.0619577132165432, -0.03499431908130646, 0.012610257603228092, 0.03899269178509712, 0.00841538142412901, -0.008953624404966831, -0.02481042593717575, -0.011713186278939247, 0.01939382404088974, -0.03789912164211273, 0.01462653186172247, 0.019974784925580025, -0.04839058220386505, 0.059565525501966476, -0.026348261162638664, -0.061821017414331436, 0.025630604475736618, 0.027219701558351517, 0.006992883514612913, -0.03270465135574341, 0.010388938710093498, -0.025220515206456184, 0.007475593127310276, 0.014267703518271446, -0.007954031229019165, 0.0204190481454134, 0.0011587169719859958, 0.027356399223208427, -0.021136704832315445, 0.007808791007846594, 0.03762572631239891, -0.03649798035621643, -0.00326363043859601, -0.02414402924478054, 0.040564704686403275, 0.016412129625678062, 0.030329549685120583, -0.018009770661592484, 0.02457120642066002, -0.009585846215486526, -0.017855988815426826, -0.03038080967962742, 0.012687149457633495, 0.010380394756793976, -0.003876629052683711, -0.018983734771609306, -0.024895859882235527, 0.0027040287386626005, -0.04346950724720955, 0.017317745834589005, 0.03547275811433792, 0.00913303904235363, -0.03436209633946419, -0.003825367661193013, -0.010440199635922909, -0.008496545255184174, -0.01836859993636608, -0.016326695680618286, 0.005126120988279581, -0.006360661704093218, -0.019052082672715187, -0.0036395457573235035, 0.0019853038247674704, 0.0034836262930184603, 0.04719448834657669, -0.02188853546977043, -0.011379988864064217, 0.01720668002963066, -0.03605371713638306, 0.046305958181619644, 0.00813771691173315, -0.012473560869693756, -0.0009194979211315513, -0.01305452175438404, 0.007817334495484829, 0.01869325339794159, -0.00034708110615611076, 0.10580313950777054, 0.014780315570533276, -0.011132226325571537, -0.05495201796293259, 3.197151090716943e-05, -0.03188447281718254, -0.01096135564148426, -0.008163347840309143, 0.0014438574435189366, -0.01620708592236042, -0.024895859882235527, 0.018283164128661156, 0.010875919833779335, 0.02221319079399109, -0.0033853757195174694, -0.009825064800679684, -0.009346626698970795, -0.00391934672370553, -0.023494720458984375, -0.0040944889187812805, 0.0120549276471138, 0.0043999203480780125, -0.0005449173622764647, 0.003686535404995084, -0.03497723117470741, 0.04709196463227272, 0.03439627215266228, -0.02949228323996067, -0.018949560821056366, -0.0003727117145899683, -0.058027688413858414, -0.042922720313072205, -0.024383248761296272, 0.0001731400698190555, -0.02510090544819832, -0.029902372509241104, 0.044016290456056595, 0.028603754937648773, -0.008757122792303562, 0.02006022073328495, -0.03301221877336502, -0.018385687842965126, 0.036976419389247894, 0.02949228323996067, 0.003564789891242981, -0.015566320158541203, -0.011995122767984867, -0.01570301689207554, 0.020675353705883026, 0.04196584224700928, 0.03171360120177269, -0.0065358043648302555, 0.017821813002228737, 0.05652402713894844, -0.015010991133749485, 0.019137518480420113, -0.05840360373258591, -0.0728592649102211, 0.005339709110558033, 0.002558788750320673, -0.023836461827158928, -0.002261900808662176, -0.03444753214716911, 0.03632710874080658, -0.013515871949493885, 0.03899269178509712, -0.08769084513187408, -0.046579353511333466, 0.02105126902461052, 0.03783077374100685, 0.03506266698241234, -0.04972337186336517, 0.0091501260176301, 0.03420831263065338, -0.011875513941049576, -0.021136704832315445, 0.0283303614705801, -0.02168349176645279, 0.012627344578504562, 0.01992352306842804, 0.022657454013824463, 0.014669249765574932, 0.03677137568593025, 0.02713426761329174, 0.0007117832428775728, 0.026143217459321022, 0.02646787092089653, -0.019633043557405472, 0.009269735775887966, -0.028039881959557533, -0.01879577711224556, 0.0041628372855484486, 0.04709196463227272, 0.01462653186172247, 0.01384907029569149, -0.012576083652675152, -0.02217901684343815, 0.0032785814255476, -0.019171692430973053, -0.009295365773141384, 0.041829146444797516, 0.014122462831437588, -0.013045977801084518, 0.036976419389247894, 0.030995944514870644, 0.0033875114750117064, 0.0049467068165540695, -0.024400334805250168, 0.008018107153475285, -0.011909687891602516, 0.002558788750320673, -0.015959322452545166, 0.03806999325752258, 0.018949560821056366, 0.025886910036206245, 0.010619614273309708, -0.0012078422587364912, -0.04005208984017372, -0.03364444151520729, 0.03407161682844162, 0.0061299861408770084, 0.025493908673524857, -0.03759155422449112, 0.01409683283418417, 0.014455661177635193, -0.05132955685257912, 0.014037027955055237, -0.028142403811216354, 0.013686742633581161, 0.003573333378881216, -0.004378561396151781, 0.013891787268221378, -0.029902372509241104, 0.04555412754416466, 0.02597234584391117, -0.018710341304540634, -0.029441021382808685, -0.0008046941948123276, -0.013857613317668438, -0.011713186278939247, -0.029048018157482147, -0.013490241952240467, -0.002289667259901762, 0.021410098299384117, -0.06387146562337875, 0.004299534019082785, 0.026826700195670128, -0.020931661128997803, -0.004942434839904308, -0.009620020166039467, -0.03533605858683586, 0.03738650679588318, 0.025818562135100365, 0.019974784925580025, 0.00025804145843721926, 0.0020312254782766104, 0.006787838414311409, 0.010662331245839596, -0.00680919736623764, -0.0010396414436399937, 0.046340133994817734, 0.019701391458511353, -0.0023131619673222303, 0.03420831263065338, -0.01233686413615942, 0.007650735322386026, 0.014805945567786694, 0.00040528393583372235, -0.03140603378415108, -0.010747767053544521, -0.020641179755330086, 0.020214004442095757, 0.0034131421707570553, -0.00548067782074213, 0.008060825057327747, -0.04798049107193947, -0.029218889772892, 0.011516684666275978, -0.029167627915740013, 0.03653215616941452, 0.046305958181619644, -0.018556557595729828, 0.01696746051311493, 0.024434510618448257, 0.006903176195919514, 0.046340133994817734, -0.013772178441286087, 0.005455046892166138, 0.020504483953118324, -0.005895039066672325, 0.018778689205646515, -0.021512620151042938, 0.010790484957396984, -0.011414162814617157, 0.013430437073111534, -0.004767292644828558, -0.006830556318163872, -0.006382020656019449, 0.009611477144062519, 0.00036176529829390347, 0.005237186793237925, 0.02692922204732895, -0.008411110378801823, 0.002238406101241708, -0.03290969505906105, -0.014216441661119461, -0.0012420163257047534, 0.01956469565629959, -0.0051602949388325214, 0.018676167353987694, 0.001795210293494165, -0.01802685856819153, 0.030739638954401016, 0.009688368998467922, -0.03065420314669609, -0.012430842965841293, 0.003816824173554778, 0.018710341304540634, -0.0009045467595569789, -0.03885599598288536, 0.03772825002670288, -0.018454035744071007, 0.07019368559122086, 0.012840933166444302, -0.03150855749845505, 0.029475195333361626, 0.030466245487332344, -0.019718479365110397, 0.005651548504829407, -0.001614728127606213, 0.002400733297690749, -0.03237999603152275, 0.0009221677901223302, -0.020077306777238846, -0.004361474420875311, -0.04025713726878166, 0.0005969795165583491, 0.0021454952657222748, -0.02069244161248207, 0.023272588849067688, 0.03533605858683586, -0.0322091281414032, 0.02072661556303501, -0.002906937850639224, -0.029082192108035088, -0.04141905531287193, -0.014968273229897022, -0.06821158528327942, -0.04131653532385826, -0.0011320183984935284, -0.03540441021323204, -0.029013844206929207, -0.032328736037015915, -0.059326305985450745, 0.0024605379439890385, -0.015609038062393665, -0.018419861793518066, 0.016753870993852615, 0.0026442240923643112, -0.005079131573438644, -0.00416924525052309, -0.005463590379804373, 0.020777877420186996, -0.004780107643455267, 0.013985767029225826, -0.010064284317195415, 0.0010866308584809303, -0.019445085898041725, 0.029697326943278313, 0.019974784925580025, -0.010807571932673454, -0.023392198607325554, -0.034191228449344635, -0.011149313300848007, 0.028808800503611565, -0.0029752859845757484, -0.0198893491178751, -0.04384542256593704, 0.0004965929547324777, 0.010047197341918945, 0.044084638357162476, -0.0021134568378329277, -0.00938080158084631, -0.006937350146472454, -0.010799027979373932, -0.02875753864645958, -0.013464611023664474, 0.020316526293754578, -0.010406025685369968, 0.030039068311452866, -0.052320607006549835, -0.030773812904953957, 0.05918961018323898, -0.0018731700256466866, 0.029304325580596924, 0.02006022073328495, -0.018949560821056366, -0.025613518431782722, -0.0062666828744113445, 0.0033661527559161186, 0.03125225007534027, -0.0016371548408642411, 0.018522383645176888, -0.00976525992155075, -0.0035049852449446917, -0.004523801617324352, -0.03058585524559021, -0.0005628053331747651, -0.02882588654756546, -0.0017001634696498513, 0.0070270574651658535, 0.017582595348358154, 0.009517498314380646, -0.030705465003848076, -0.0030884877778589725, -0.024263639003038406, 0.008539263159036636, -0.007347439881414175, -0.011157856322824955, 0.0091501260176301, 0.03653215616941452, 0.03104720637202263, -0.03670302405953407, 0.0005147479823790491, 0.00845382735133171, 0.03629293665289879, 0.0033319785725325346, -0.004024005029350519, 0.03191864490509033, 0.010098458267748356, 0.03537023440003395, 0.022828325629234314, 0.03841173276305199, 0.024092769250273705, -0.06612695753574371, -0.014002854004502296, 0.02298210933804512, 0.017855988815426826, 0.013558589853346348, 0.0049467068165540695, -0.003118390217423439, 0.002926160581409931, 0.008859645575284958, 0.017326287925243378, 0.01587388850748539, -0.007680637761950493, -0.012687149457633495, 0.019684303551912308, 0.020709527656435966, -0.009312452748417854, -0.0046775853261351585, -0.008646056987345219, -0.004690400790423155, -0.04452890530228615, 0.015754278749227524, -0.01766802929341793, -0.006108627654612064, 0.019120430573821068, -0.01780472695827484, -0.004442638251930475, -0.02487877383828163, 0.0033576092682778835, -0.041624102741479874, -0.02291376143693924, -0.011875513941049576, -0.0011523092398419976, 0.02069244161248207, 0.03244834393262863, -0.006975796073675156, -0.023853549733757973, -0.0019020044710487127, 0.006860458292067051, 0.008791297674179077, -0.019342562183737755, 0.029799848794937134, -0.06452077627182007, -0.03875347599387169, -0.007697724737226963, 0.018283164128661156, -0.013669655658304691, -0.006484542973339558, -0.07914730906486511, 0.0055063082836568356, -0.0013840526808053255, 0.005352524574846029, 0.015463798306882381, 0.019615955650806427, 0.010927180759608746, -0.023033369332551956, 0.007625104859471321, -0.008287228643894196, 0.006715218536555767, -0.03477218747138977, -0.003135477192699909, -0.003720709355548024, 0.006279498338699341, -0.015036621131002903, -0.018641993403434753, -0.01260171364992857, -0.02407568134367466, -0.016224171966314316, 0.023033369332551956, -0.014532553032040596, -0.024229465052485466, -0.001685212249867618, 0.019171692430973053, 0.05204721540212631, -0.009218473918735981, 0.034157052636146545, 0.014515466056764126, 0.002471217419952154, -0.023187153041362762, -0.0006663957028649747, -0.027390573173761368, 0.004288854543119669, -0.05293574184179306, 0.03144020959734917, -0.02527177706360817, 0.0004837776650674641, 0.017292113974690437, -0.02330676279962063, 0.008774210698902607, -0.023887723684310913, 0.014019940979778767, 0.008381207473576069, -0.024998383596539497, -0.02985111065208912, -0.0015762822004035115, -0.020794963464140892, 0.009107408113777637, -0.0172408539801836, 0.005044957157224417, -0.004015461541712284, -0.02417820319533348, 0.02417820319533348, 0.012157450430095196, 0.009705455973744392, -0.03964200243353844, -0.008159075863659382, 0.00747986463829875, 0.006599880754947662, -0.007005698513239622, -0.012157450430095196, -0.021341750398278236, 0.02802279405295849, -0.0038232319056987762, -0.022042319178581238, 0.013404806144535542, -0.022144842892885208, 0.0072363740764558315, 0.016121650114655495, -0.004216234665364027, -0.012593170627951622, 0.006813468877226114, 0.00340459868311882, -0.0013765770709142089, -0.03015867806971073, -0.004664769861847162, -0.011918230913579464, 0.012046384625136852, -0.003223048523068428, 0.024964209645986557, -0.032960958778858185, 0.03114972822368145, 0.024759164080023766, -0.00036229926627129316, -0.020111480727791786, 0.031166816130280495, 0.0016916198655962944, 0.017283571884036064, 0.010764854028820992, -0.03210660442709923, -0.002697621239349246, -0.004197011701762676, -0.01333645824342966, -0.011866969987750053, -0.005634461063891649, 0.019274214282631874, 0.00498088076710701, 0.006121442653238773, -0.0019447221420705318, -0.02284541167318821, -0.029048018157482147, 0.021939797326922417, -0.0336102657020092, -0.009987392462790012, 0.026792526245117188, -0.022093581035733223, 0.025015469640493393, -0.020965835079550743, 0.0048185535706579685, 0.005519123747944832, -0.02368267811834812, 0.00891945045441389, -0.039061039686203, -0.02192271128296852, 0.005301263183355331, -0.04094062000513077, 0.02530595101416111, 0.005373883526772261, -0.0016670572804287076, 0.0016264754813164473, -0.03258504346013069, -0.03012450411915779, -0.005241458769887686, -0.008970711380243301, 0.0005307670799084008, 0.02713426761329174, -0.001743949018418789, -0.011362900957465172, -0.01288365013897419, 0.001882781507447362, -0.008825471624732018, 0.001668125158175826, 0.024656642228364944, -0.007150938734412193, 0.0003067663055844605, 0.027715226635336876, 0.021905623376369476, -0.030261199921369553, -0.04733118414878845, 0.01333645824342966, -0.020436136052012444, 0.03783077374100685, -0.0025075275916606188, 0.01673678494989872, 0.0084025664255023, -0.007915585301816463, 0.04210253804922104, -0.009252647869288921, 0.03164525330066681, 0.005442231893539429, 0.012541908770799637, 0.03460131585597992, 0.003571197623386979, -0.011328727006912231, 0.004284582566469908, -0.014045570977032185, 0.03268756344914436, -0.031833212822675705, 0.01077339705079794, 0.02245241031050682, -0.005420872941613197, -0.008304315619170666, 0.015634668990969658, 0.025391384959220886, -0.01184133905917406, -0.004124391358345747, 0.02002604492008686, -0.0566607229411602, 0.014797402545809746, 0.0025032556150108576, 0.009124495089054108, 0.0017343375366181135, -0.008624698035418987, -0.021273402497172356, -0.013199761509895325, 0.01200366672128439, 0.023050457239151, -0.0007048416300676763, -0.013456067070364952, -0.020265264436602592, 0.012687149457633495, 0.013524415902793407, 0.040564704686403275, -0.010158263146877289, -0.034755099564790726, -0.01198657974600792, 0.0018582188058644533, 0.040359657257795334, 0.01700163446366787, -0.015933692455291748, -0.004545160569250584, 0.013003259897232056, -0.005502036307007074, -0.009884869679808617, 0.040667224675416946, -0.010089914314448833, 0.011268922127783298, 0.024947121739387512, 0.022554932162165642, 0.012746954336762428, 0.025066731497645378, 0.004019733052700758, 0.020436136052012444, 0.012234342284500599, 0.001558127230964601, -0.014139549806714058, 0.02713426761329174, -0.01409683283418417, 0.014583813957870007, 0.016480479389429092, 0.0022832597605884075, -0.005835234187543392, 0.02703174389898777, -0.00315470015630126, -0.009876326657831669, -0.03484053537249565, -0.03178194910287857, 0.012610257603228092, -0.0041179838590323925, 0.002306754468008876, 0.005950571969151497, 0.0053781550377607346, -0.010312046855688095, -0.0012986173387616873, -0.02129048854112625, -9.424587187822908e-05, -0.01753133349120617, 0.043025240302085876, 0.016822220757603645, -0.01600204035639763, 0.018471121788024902, 0.005698537919670343, 0.02154679410159588, -0.01571156084537506, -0.027937358245253563, -0.013635481707751751, 0.0017354055307805538, -0.005339709110558033, 0.020897487178444862, 0.0014705559005960822, -0.020794963464140892, -0.028774624690413475, 0.005685722455382347, -0.026980483904480934, 0.014814489521086216, 0.008744307793676853, 0.006621239706873894, 0.02154679410159588, 0.011431249789893627, 0.014566726982593536, -0.006843371316790581, -0.0013263837900012732, -0.003109846729785204, 0.03991539403796196, 0.0005035345675423741, 0.0577201209962368, -0.0008837218629196286, -0.022127754986286163, -0.05091946944594383, -0.0021892806980758905, 0.0026442240923643112, -0.013345001265406609, 0.008727220818400383, 0.017087070271372795, 0.022332800552248955, -0.00691599166020751, 0.018317338079214096, 0.005450775381177664, -0.021358836442232132, 0.0009990596445277333, -0.008936537429690361, -0.011422705836594105, 0.057139161974191666, -0.004506714642047882, 0.012823846191167831, -0.012482104822993279, 0.01696746051311493, -0.02129048854112625, -0.01823190413415432, 0.013575676828622818, 0.010884463787078857, -0.01896664686501026, 0.013242479413747787, -0.0009643515222705901, 0.026912134140729904, -0.0014662841567769647, 0.016155824065208435, 0.013208304531872272, 0.006082996726036072, -0.009329539723694324, 0.029065106064081192, 0.00046135089360177517, 0.025579342618584633, 0.03065420314669609, 0.00890236347913742, -0.012311234138906002, 0.009320996701717377, -0.013908875174820423, 0.00719792814925313, -0.0016649214085191488, -0.005570384673774242, 0.012541908770799637, 0.013917418196797371, 0.0011170671787112951, 0.02689504809677601, -0.005211556330323219, 0.00888527650386095, 0.04774127155542374, -0.014720510691404343, -0.005882223602384329, -0.011286010034382343, -0.006450369022786617, -0.023956071585416794, -0.029799848794937134, -0.016924742609262466, -0.048869021236896515, 0.005899311043322086, -0.01823190413415432, 0.026450784876942635, -0.01823190413415432, 0.03284134715795517, 0.020709527656435966, -0.01019243709743023, -0.006228236947208643, -0.022965021431446075, -0.003067129058763385, -0.01766802929341793, -0.020572831854224205, -0.01580553874373436, -0.008270141668617725, 0.00586940860375762, -0.00913303904235363, 0.003932161722332239, 0.0017984140431508422, 0.012131819501519203, -0.008774210698902607, 0.009295365773141384, 0.011687555350363255, -0.036976419389247894, -0.042820196598768234, 0.004359338898211718, 0.004651954863220453, -0.003660904709249735, 0.010183893144130707, -0.025032557547092438, -0.004481084179133177, 0.0004504044773057103, -0.001778123201802373, -0.039573654532432556, 0.0283303614705801, 0.010833201929926872, -0.008488002233207226, 0.012191624380648136, 0.00227898801676929, -0.013045977801084518, 0.011328727006912231, 0.004404192324727774, 0.015113512985408306, -0.009175756014883518, -0.008389751426875591, 0.0010188164887949824, -0.020880399271845818, 0.031064292415976524, -0.014848663471639156, 0.01471196673810482, -0.015327101573348045, -0.0016777366399765015, 0.03130351006984711, 0.04247845709323883, 0.010175350122153759, 0.005002239719033241, -0.01494264230132103, -0.030295373871922493, 0.010004479438066483, 0.004656226374208927, -0.012977629899978638, -0.01773637905716896, -0.0012388125760480762, 0.0020055947825312614, 0.008065097033977509, 0.015446711331605911, 0.020897487178444862, 0.053482528775930405, 0.034686751663684845, 0.023152979090809822, -0.010568352416157722, 0.028501233085989952, -0.001568806590512395, -0.034157052636146545, 0.022965021431446075, 0.0008810520521365106, 0.031867384910583496, -0.024981295689940453, 0.00028460650355555117, -0.00709113385528326, -0.0062666828744113445, -0.01783890090882778, -0.03629293665289879, -0.004694672301411629, -0.0016969596035778522, -0.006279498338699341, -0.048903193324804306, 0.00032839211053214967, -0.014788858592510223, -0.010064284317195415, 2.8750997444149107e-05, 0.023785201832652092, 0.02400733344256878, 0.007018513977527618, -0.013626937754452229, -0.015352732501924038, 0.01001302246004343, -0.0032016898039728403, -0.040598876774311066, -0.0015965730417519808, 0.028381623327732086, -0.008637513965368271, 0.015318557620048523, -0.023887723684310913, 0.0037783782463520765, 0.04972337186336517, -0.017189592123031616, -0.02646787092089653, -0.013105782680213451, -0.011004072614014149, 0.014592357911169529, -0.029697326943278313, -0.02481042593717575, -0.004899717401713133, -0.021803101524710655, -0.007945487275719643, -0.01756550744175911, 0.004446909762918949, -0.02192271128296852, -0.0057070814073085785, -0.03663467615842819, -0.03108138032257557, 0.009850695729255676, 0.01607038825750351, -0.03615624085068703, 0.03055168129503727, 0.020863311365246773, 0.022469496354460716, 0.021666403859853745, 0.03072255104780197, -0.002682670019567013, -0.00666822912171483, -0.025459734722971916, 0.0552595853805542, 0.020214004442095757, -0.006159888580441475, -0.010175350122153759, -0.0023110262118279934, 0.006305128801614046, 0.013302283361554146, 0.01600204035639763, 0.020111480727791786, 0.021444272249937057, -0.008244510740041733, -0.006779294926673174, -0.01260171364992857, -0.000188758727745153, 0.0038830365519970655, 0.02354598231613636, -0.009816521778702736, 0.00606163777410984, -0.0013103646924719214, 0.0013616258511319757, 0.03174777701497078, -0.008842558600008488, -0.001642494578845799, -0.007458506152033806, -0.00616843206807971, -0.011439792811870575, -0.007962574250996113, 0.008547807112336159, 0.02241823635995388, -0.02530595101416111, 0.009346626698970795, -0.03284134715795517, -0.007005698513239622, 0.019086256623268127, -0.008094999007880688, 0.011747360229492188, 0.0027467464096844196, 0.037215638905763626, -0.01683930680155754, 0.0042824470438063145, -0.008799840696156025, 0.02590399794280529, -0.007693453226238489, 0.011935317888855934, 0.001489778864197433, -0.004570791032165289, 0.013917418196797371, -0.00999593548476696, -0.03290969505906105, -0.0008842558600008488, -0.01763385534286499, 0.010149719193577766, -0.04613508656620979, 0.032431259751319885, -0.008526448160409927, 0.00023054194753058255, -0.0262286514043808, -0.009773803874850273, 0.03615624085068703, -0.0004357202851679176, -0.024366160854697227, 0.003530615707859397, -0.04015461355447769, -0.019137518480420113, -0.03231164813041687, -0.011627751402556896, 0.054507751017808914, -0.020265264436602592, 0.01462653186172247, -0.01231977716088295, 0.017386093735694885, 0.017548421397805214, -0.022999195381999016, 0.010269328951835632, 0.009209930896759033, 0.006984339561313391, 0.007103949319571257, -0.011866969987750053, -0.018471121788024902, -0.005643005017191172, 0.026792526245117188, -0.005613102577626705, -0.005796788260340691, -0.02308463118970394, 0.0014684200286865234, -0.015856800600886345, 0.002035497222095728, -0.02058991976082325, -0.026877960190176964, 0.03502849116921425, 0.012029296718537807, 0.00973108597099781, 0.019000820815563202, -0.015147686935961246, 0.0028877148870378733, 0.026211565360426903, -0.0251692533493042, 0.019615955650806427, 0.0355411060154438, -0.01710415631532669, -0.01633523777127266, 0.02231571264564991, -0.01406265888363123, -0.05170547217130661, 0.0007176569197326899, 0.055772196501493454, -0.003502849256619811, -0.008953624404966831, -0.0075054955668747425, -0.035814497619867325, 0.0053696115501224995, 0.008022379130125046, 0.0067579359747469425, -0.008248782716691494, 0.0005574656534008682, 0.014669249765574932, -0.03677137568593025, -0.020675353705883026, 0.022435322403907776, -0.0010652720229700208, -0.009158669039607048, -0.04241010546684265, 0.018436947837471962, -0.03902686759829521, -0.0168051328510046, -0.006992883514612913, 0.06233363226056099, -0.027646878734230995, -0.03636128455400467, 0.008291500620543957, 0.020863311365246773, -0.017052896320819855, -0.009218473918735981, -0.016463391482830048, 0.0036096435505896807, 0.0030244113877415657, 0.024229465052485466, -0.013063064776360989, -0.006587065290659666, -0.020675353705883026, -0.01942799799144268, 0.0012089101364836097, 0.006155617069453001, -0.013908875174820423, -0.014037027955055237, 0.02122214064002037, 0.009047603234648705, -0.036976419389247894, 0.0281594917178154, -0.017257940024137497, 0.020470310002565384, -0.029970720410346985, -0.03251669555902481, 0.00868450291454792, 0.022161928936839104, 0.004852727986872196, 0.0001898266636999324, 0.017420267686247826, 0.00420128321275115, 0.01982100121676922, -0.006313672289252281, 0.019735565409064293, 0.015762822702527046, -0.0003267902065999806, 0.007548213005065918, -0.01942799799144268, -0.023170066997408867, 0.018009770661592484, 0.010081371292471886, 0.0018069576472043991, -0.029628979042172432, -0.007723355665802956, -0.00747986463829875, 0.011969492770731449, 0.024622468277812004, 0.015045165084302425, -0.03304639458656311, 0.008304315619170666, 0.003067129058763385, 0.0027488823980093002, -0.03152564540505409, 0.008611883036792278, 0.011174943298101425, 0.04719448834657669, 0.02308463118970394, -0.011397075839340687, -0.005971930921077728, -0.016113106161355972, 0.00718084117397666, 0.015574864111840725, 0.04076974838972092, 0.00888527650386095, -0.01180716510862112, 0.015626125037670135, -0.01876160316169262, 0.012541908770799637, 0.020931661128997803, 0.012524821795523167, -0.028842974454164505, 0.005032142158597708, -0.005241458769887686, 0.014917012304067612, 0.01226851623505354, -0.009081777185201645, -0.0022042319178581238, 0.00997884850949049, -0.0009777008090168238, -0.030842160806059837, -0.01633523777127266, 0.0012313369661569595, -0.018146468326449394, -0.020863311365246773, 0.01571156084537506, 0.01985517516732216, 0.015574864111840725, 0.010619614273309708, 0.019940610975027084, -0.014823033474385738, 0.06479416787624359, -0.008590524084866047, 0.0009686232660897076, -0.012729867361485958, -0.012157450430095196, 0.001179007813334465, 0.0011523092398419976, 0.003440908621996641, -0.0028770354110747576, 0.002654903568327427, 0.016728240996599197, 0.014122462831437588, 0.006279498338699341, -0.01717250421643257, -0.02311880514025688, -0.04090644419193268, -0.0014566726749762893, -0.0468185693025589, 0.0020814186427742243, -0.010867376811802387, 0.0012601714115589857, 0.02477625198662281, -0.003101303242146969, -0.031730689108371735, -0.007676366250962019, 0.0009045467595569789, -0.004017597064375877, -0.04312776401638985, -0.030705465003848076, -0.025083817541599274, 0.010089914314448833, 0.0007395497523248196, -0.006834827829152346, 0.008731492795050144, 0.01472905371338129, -0.0034003269392997026, -0.003850998356938362, -0.011636294424533844, 0.00991050060838461, 0.00936371460556984, 0.0024861686397343874, 0.025886910036206245, -0.03420831263065338, 0.01520749181509018, -0.045519955456256866, -0.0096798250451684, 0.00723210209980607, 0.01124329213052988, 0.003833911381661892, 0.012875107116997242, 0.0009707591379992664, 0.0022918032482266426, -0.026279913261532784, 0.007689181249588728, -0.0034430446103215218, -0.021068356931209564, 0.01687348075211048, 0.030995944514870644, -0.01903499662876129, -0.017855988815426826, -0.022930847480893135, 0.009739629924297333, -0.0035263439640402794, -0.010397481732070446, -0.005954843945801258, -0.02846705913543701, -0.008389751426875591, -0.001719386433251202, -0.007411516737192869, -0.004088081419467926, -0.01571156084537506, -0.006762207951396704, -0.01696746051311493, -0.03321726247668266, -8.436740608885884e-05, -0.0013872564304620028, 0.015216035768389702, -0.03376404941082001, -0.023272588849067688, 0.007766073103994131, -0.00841538142412901, -0.010628157295286655, -0.01836859993636608, 0.011294553056359291, 0.009423518553376198, -0.0019297709222882986, -0.0022576290648430586, 0.0144300302490592, 0.0038809007965028286, -0.01203784067183733, -0.002874899422749877, -0.011021159589290619, -0.002699756994843483, -0.0309788566082716, -0.003927890211343765, 0.013353545218706131, 0.011696099303662777, -0.04620343819260597, 0.001812297385185957, 0.01600204035639763, 0.004064586944878101, 0.037044767290353775, 0.00813344493508339, -0.027954446151852608, -0.017975596711039543, -0.012405212968587875, 0.006497358437627554, 0.009372257627546787, -0.0008981390856206417, -0.0069672525860369205, -0.013097238726913929, -0.01959886960685253, 0.014498379081487656, 0.013396263122558594, -0.006514445412904024, -0.00812062993645668, -0.003859541844576597, -0.0009029448265209794, 0.00994467455893755, 0.0005644072662107646, -0.022965021431446075, -0.002742474665865302, -0.009141582064330578, 0.003729253076016903, -0.009338083676993847, 0.04975754767656326, -0.0013028890825808048, 8.530185732524842e-05, -0.034225400537252426, -0.009124495089054108, 0.012815302237868309, -0.011567946523427963, -0.07839547842741013, -0.01893247291445732, 0.023204240947961807, 0.008342761546373367, -0.0010818251175805926, -0.0012057063868269324, -0.0025908269453793764, 0.007407244760543108, 0.026690002530813217, 0.021939797326922417, 0.003116254461929202, 0.026126129552721977, 0.0006156684830784798, -0.006894632708281279, -0.0102095240727067, -0.020248178392648697, 0.006787838414311409, 0.02347763441503048, 0.0023601516149938107, -0.00562164606526494, -0.02593817189335823, 0.007287635467946529, 0.01208910159766674, 0.0013691014610230923, -0.02692922204732895, -0.009474780410528183, 0.004613508936017752, 0.00562164606526494, -0.004916804376989603, -0.01411391980946064, -0.014156637713313103, 0.001585893682204187, 0.007065503392368555, -0.001978896325454116, 0.020077306777238846, 0.017650943249464035, -0.03128642588853836, 0.023050457239151, -0.023272588849067688, -0.006429010070860386, -0.004028276540338993, -0.007753258105367422, -0.013208304531872272, 0.006223964970558882, 0.0013968679122626781, -0.027305137366056442, -0.006920263171195984, 0.011328727006912231, 0.0028599482029676437, -0.007424331735819578, -0.02188853546977043, -0.012516278773546219, -0.010611070320010185, 0.007556756492704153, -0.0048057385720312595, -0.03005615621805191, 0.014310420490801334, 0.0055661131627857685, 0.00262286514043808, -0.015258753672242165, -0.017317745834589005, 0.012191624380648136, -0.014746141619980335, 0.0026848057750612497, 0.015378362499177456, 0.029628979042172432, -0.009457693435251713, 0.01836859993636608, -3.5876171750715e-05, -0.013720916584134102, -0.02154679410159588, 0.0009360510157421231, -0.01893247291445732, 0.004421279300004244, -0.011866969987750053, -0.021803101524710655, -0.013481697998940945, -0.04357202723622322, -0.0003198485937900841, 0.0195305198431015, -0.009124495089054108, 0.00999593548476696, 0.01418226771056652, -0.013216848485171795, 0.028005708009004593, -0.011379988864064217, -0.006510173436254263, -0.02228153869509697, -0.00735598336905241, -0.0011982307769358158, 0.003111982485279441, 0.00029688782524317503, -0.003987695090472698, 0.015549233183264732, -0.012806759215891361, 0.03759155422449112, 0.012627344578504562, -0.04076974838972092, 0.0029752859845757484, 0.01448129117488861, 0.020504483953118324, 0.005553297698497772, -0.005074859596788883, -0.041692450642585754, 0.01780472695827484, -0.022537844255566597, -0.007539669517427683, -0.0006733373156748712, 0.007813062518835068, -0.01995769701898098, -0.003353337524458766, -0.0072363740764558315, 0.0038061446975916624, 0.01587388850748539, 0.05303826555609703, -0.017377549782395363, -0.000161793184815906, 0.000497660890687257, -0.00627522636204958, 0.004604965448379517, 0.013182674534618855, 0.01809520646929741, -0.0044084638357162476, -0.0003836581017822027, -0.006095812190324068, 0.0007288703345693648, -0.010406025685369968, 0.014293333515524864, 0.03530188649892807, -0.0010022633941844106, 0.02457120642066002, 0.007270548027008772, -0.026484958827495575, 0.005583200138062239, -0.00991050060838461, 0.011217661201953888, 0.023101719096302986, -0.0009253715979866683, 0.01173881720751524, 0.03543858230113983, -0.0322091281414032, -0.02487877383828163, -0.012396669015288353, 0.010730680078268051, 0.0019201594404876232, -0.008505089208483696, -0.01198657974600792, -7.635784277226776e-05, 0.013669655658304691, -0.01019243709743023, 0.015233122743666172, -0.014541096054017544, 0.02460538037121296, 0.004950978327542543, 0.017061438411474228, -0.03629293665289879, -0.030961770564317703, -0.01773637905716896, 0.029441021382808685, 0.0015890974318608642, 0.0019778283312916756, -0.001433177967555821, -0.030961770564317703, 0.014823033474385738, 0.00019610082381404936, 0.016113106161355972, 0.010739223100244999, 0.010935724712908268, -0.0019447221420705318, -0.018949560821056366, 0.0309788566082716, -0.03321726247668266, -0.005899311043322086, -0.027869010344147682, 0.012746954336762428, -0.005074859596788883, 0.026057781651616096, 0.006928806658834219, 0.02610904350876808, 0.0036886711604893208, 0.0025459732860326767, 5.1628314395202324e-05, -0.039573654532432556, -0.029184715822339058, -0.0034131421707570553, -0.006770751439034939, -0.017351919785141945, 0.00034387726918794215, 0.007189384661614895, -0.0015987089136615396, 0.0006519784801639616, 0.005091946572065353, 0.007219287101179361, -0.024588292464613914, -0.011251835152506828, 0.0008223152253776789, -0.002051516203209758, 0.0035840128548443317, 0.02646787092089653, -0.01773637905716896, -0.004861271474510431, 0.011533771641552448, 0.0035263439640402794, 0.003833911381661892, 0.013011803850531578, 0.005570384673774242, 0.007343168370425701, 0.03540441021323204, -0.03248251974582672, 0.02281123772263527, -0.029065106064081192, 0.0017450170125812292, -0.0010455150622874498, -0.019240040332078934, -0.010354763828217983, 0.002330249175429344, -0.023819375783205032, -0.009329539723694324, -0.01564321294426918, -0.0034473163541406393, -0.022042319178581238, 0.009953218512237072, 0.016659893095493317, 0.005540482234209776, -0.00432516448199749, 0.014421487227082253, 0.007394429296255112, 0.026160303503274918, 0.019735565409064293, -0.01812938041985035, 0.0001008537583402358, -0.014848663471639156, 0.014515466056764126, 0.005151751451194286, -0.001594437169842422, -0.004205555189400911, 0.012277059257030487, 0.00833849050104618, 0.019069170579314232, 0.007748986128717661, -0.015745734795928, -0.018556557595729828, -0.011679012328386307, -0.006189791020005941, -0.015925148501992226, -0.0018721020314842463, -0.01872742921113968, -0.004229049663990736, 0.0024178202729672194, 0.00288985064253211, -0.011140769347548485, 0.0019607413560152054, 0.003996238578110933, 0.01212327554821968, -0.002654903568327427, -0.030790898948907852, 0.013097238726913929, 0.004553704056888819, -0.0010909026023000479, -0.011123682372272015, -0.006501629948616028, -0.010517091490328312, 0.011585033498704433, 0.007573843467980623, 0.021734753623604774, -0.01490846835076809, 0.011405618861317635, 0.007676366250962019, -0.01202075369656086, -0.014874294400215149, -0.012259972281754017, 0.026177391409873962, -0.01740317977964878, 0.008022379130125046, -0.03159399330615997, -0.027834836393594742, -0.007390157785266638, 0.002238406101241708, -0.02400733344256878, -0.0031995538156479597, 0.00627522636204958, 0.011055334471166134, -0.02932141162455082, -0.003808280685916543, 0.028108229860663414, 0.010858832858502865, 0.00560455908998847, -0.011286010034382343, -0.001733269658870995, 0.002847132971510291, 0.00037137678009457886, -0.016993090510368347, 0.002114524831995368, 0.007894226349890232, -0.00733889639377594, 0.00861615501344204, -0.010713593102991581, 0.023938985541462898, 0.02284541167318821, -0.00601037684828043, 0.019769739359617233, -0.010183893144130707, -0.02248658426105976, -0.0016638534143567085, -0.003994102589786053, -0.019342562183737755, 0.018847037106752396, 0.010910093784332275, 0.028108229860663414, -0.002488304628059268, -0.00036256626481190324, -0.0009488663636147976, -0.0012227934785187244, -0.019052082672715187, 0.012687149457633495, -0.0023558796383440495, 0.0039535206742584705, 0.013174130581319332, 0.0626411959528923, 0.0064076511189341545, 0.009491867385804653, -0.0013157043140381575, -0.005416600964963436, -0.016130194067955017, -0.030466245487332344, 0.0011523092398419976, 0.022025233134627342, -0.010781941004097462, 0.00865032896399498, -0.01436168234795332, 0.011679012328386307, 0.0045280735939741135, -0.018043946474790573, 0.010824658907949924, 0.0096798250451684, 0.021239228546619415, -0.0076464638113975525, 0.016762414947152138, -0.0016756007680669427, -0.0029048018623143435, 0.003754883538931608, -0.00455797603353858, -0.003925754223018885, 0.0023985973093658686, 0.0027488823980093002, -0.001973556587472558, 0.0006583861541002989, 0.021939797326922417, 0.00482282554730773, -0.011123682372272015, 0.001269782893359661, -0.010337676852941513, -0.02351180836558342, 0.017924336716532707, 0.009807977825403214, 0.0045366170816123486, -0.006830556318163872, 0.0063478462398052216, 0.005177381914108992, 0.011909687891602516, 0.017582595348358154, 0.016019128262996674, -0.0032016898039728403, -0.01439585629850626, 0.02072661556303501, -0.0017311337869614363, 0.007343168370425701, 0.011465423740446568, -0.020299438387155533, -0.010653788223862648, 0.003312755608931184, 0.012943455018103123, 0.008765666745603085, -0.006245323922485113, 0.004066722467541695, -0.00695016561076045, 0.01929130218923092, 0.0033939192071557045, -0.0168051328510046, -0.011960948817431927, -0.0084025664255023, -0.023204240947961807, -0.016711154952645302, -0.01024369802325964, -0.006147073116153479, -0.0102095240727067, 0.0015645348466932774, -0.017616769298911095, -0.011866969987750053, 0.008893819525837898, 0.028039881959557533, -0.0204190481454134, -0.010517091490328312, 0.010482917539775372, 0.008261598646640778, 0.02530595101416111, 0.022469496354460716, 0.0076464638113975525, 0.002157242503017187, 0.0012558996677398682, -0.0027830565813928843, -0.0016531740548089147, -0.013498784974217415, 0.0010017295135185122, 0.022759977728128433, -0.02016274258494377, -0.0019212274346500635, -0.02600651979446411, 0.012174537405371666, -0.009620020166039467, 0.008470915257930756, -0.00526281725615263, 0.019086256623268127, -0.0011149313068017364, 0.005865136627107859, -0.00974817294627428, -0.0021326798014342785, -0.006065909750759602, 0.013148500584065914, 0.014848663471639156, -0.003205961547791958, 0.017061438411474228, -0.013028890825808048, 0.004976609256118536, 0.02065826766192913, -0.0002017075166804716, -0.03062002919614315, 0.0032401354983448982, -0.003152564400807023, 0.017095614224672318, -0.009825064800679684, 0.010858832858502865, -0.017873074859380722, -0.0001224128354806453, 0.013703829608857632, -0.0017524926224723458, -0.009859239682555199, -0.013720916584134102, -0.012208711355924606, 0.00562164606526494, -0.01434459537267685, -0.00011473700578790158, 0.008193249814212322, 0.005724168382585049, -0.03132059797644615, -0.009423518553376198, 0.005412329453974962, -0.018043946474790573, 0.00227898801676929, 0.015890974551439285, 0.013302283361554146, -0.015198948793113232, 0.005343981087207794, 0.010841745883226395, 0.01230269018560648, -0.015216035768389702, 0.019547607749700546, 0.0036929429043084383, 0.023101719096302986, 0.0006487746722996235, 0.013396263122558594, 0.012217255309224129, 0.015173317864537239, 0.007368798833340406, -0.003942841198295355, -0.02544264681637287, -0.006219693459570408, -0.0067365774884819984, 0.023033369332551956, -0.04794631898403168, -0.013686742633581161, -0.01780472695827484, 0.012362495064735413, -0.006505901925265789, -0.029628979042172432, 0.028501233085989952, 0.002516071079298854, 0.0075781154446303844, 0.00812062993645668, 0.0018902571173384786, -0.01333645824342966, 0.0072278305888175964, 0.0022341343574225903, -0.0011907551670446992, 0.011969492770731449, 0.03005615621805191, 0.028279099613428116, 0.0072363740764558315, 0.0005176847917027771, 0.00045974896056577563, 0.0050876750610768795, -0.03371278941631317, -0.026980483904480934, -0.009209930896759033, 0.014054114930331707, 0.01122620515525341, -0.0019190915627405047, 0.03429374843835831, -0.005130392499268055, 0.016497565433382988, 0.019222954288125038, 0.0028855788987129927, 0.01893247291445732, -0.013174130581319332, 0.008517904207110405, 0.002840725239366293, -0.0075866589322686195, 0.020179828628897667, -0.01823190413415432, 0.018590731546282768, 0.002272580284625292, 0.013772178441286087, -0.005890767090022564, -0.013746547512710094, 0.0032700379379093647, 0.02298210933804512, 0.010969898663461208, 0.012781128287315369, 0.0006354253855533898, 0.01149105466902256, 0.006377748679369688, 0.024400334805250168, 0.008927994407713413, -0.00615134509280324, -0.00948332343250513, -0.009244104847311974, -0.0071082208305597305, -0.0002470950421411544, -0.03793329373002052, -0.01783890090882778, 0.004145750310271978, 0.012482104822993279, -0.021666403859853745, 0.004950978327542543, 0.016659893095493317, -0.00391721073538065, 0.00938080158084631, 0.006719490047544241, -0.004933891352266073, 0.010371851734817028, -0.012729867361485958, -0.007283363491296768, -0.018847037106752396, 0.006715218536555767, -0.020931661128997803, 0.030842160806059837, 0.03227747604250908, 0.006181247532367706, 0.0195305198431015, 0.00833849050104618, -0.03759155422449112, 0.026553306728601456, 0.0007299382705241442, -0.0003537557495292276, 0.014951186254620552, 0.006599880754947662, 0.03537023440003395, -0.012217255309224129, -0.005963387433439493, 0.013498784974217415, 0.00946623645722866, -0.006710946559906006, -0.0005208886577747762, -0.016659893095493317, -0.0027745128609240055, -0.0029282965697348118, 0.0032337279990315437, -3.2605599699309096e-05, -0.000924303662031889, -0.0028514047153294086, -0.02105126902461052, 0.006800653878599405, 0.00843674037605524, 0.0177705530077219, -0.0055789281614124775, 0.003494305768981576, 0.010585439391434193, -0.014934099279344082, 0.0042589521035552025, -0.010312046855688095, 0.008077912032604218, -0.005057772621512413, 0.009790890850126743, 0.01826607808470726, -0.01726648397743702, 0.009568759240210056, 0.007633648347109556, 0.01414809376001358, 0.0033853757195174694, -0.00028113569715060294, 0.0034110064152628183, 0.005083403084427118, -0.009039060212671757, 0.004237593151628971, 0.008594796061515808, -0.01865907944738865, 0.017044352367520332, 0.017061438411474228, 0.005237186793237925, 0.006890360731631517, -0.015626125037670135, -0.02457120642066002, -0.006420466583222151, -0.007458506152033806, -0.0038744930643588305, 0.013438980095088482, -0.011858426034450531, 0.008197521790862083, 0.012165993452072144, -0.01780472695827484, -0.005455046892166138, 0.02129048854112625, 0.01697600446641445, 0.002936840057373047, 0.003334114560857415, -0.011123682372272015, 0.028672102838754654, 0.024827511981129646, -0.004810010083019733, -0.012499191798269749, -0.019137518480420113, 0.002246949588879943, 0.014506922103464603, 0.0125846266746521, 0.040530528873205185, -0.005711352918297052, -0.003912938758730888, 0.0017578323604539037, -0.010858832858502865, -0.007800247520208359, 0.007561028469353914, -0.005010783206671476, -0.01173881720751524, 0.015848256647586823, 0.01690765470266342, 0.010969898663461208, -0.0021871449425816536, 0.016514653339982033, 2.9551953048212454e-05, 0.000426909769885242, -0.006245323922485113, 0.013703829608857632, 0.008594796061515808, 0.012473560869693756, -0.004333707969635725, -0.006373477168381214, 0.005126120988279581, -0.015087882988154888, 0.015754278749227524, -0.017428811639547348, -0.016711154952645302, 0.006100083701312542, -0.007629376836121082, -0.011371444910764694, -0.018710341304540634, -0.006975796073675156, 0.004335843957960606, 0.013755091466009617, -0.010337676852941513, -0.0337982252240181, -0.0024156845174729824, -0.01823190413415432, -0.008607611060142517, 0.010918637737631798, 0.00693307863548398, -0.007552484981715679, 0.017941422760486603, 0.025220515206456184, -0.008214608766138554, -0.009261191822588444, -0.002016274258494377, -0.006544347852468491, -0.0062581393867731094, -0.013550045900046825, 0.007018513977527618, -0.002445586957037449, -0.005130392499268055, 0.0011736680753529072, -0.03899269178509712, 0.00976525992155075, -0.012294146232306957, -0.018078120425343513, -0.001218521618284285, 0.0008976051467470825, 0.004993696231395006, 0.0015730783343315125, -0.041931670159101486, -0.0027018929831683636, -0.019086256623268127, -0.015728646889328957, -0.01434459537267685, -0.003633138258010149, -0.01571156084537506, 0.006369205191731453, -0.009500410407781601, -0.02626282535493374, 0.0013979359064251184, -0.006100083701312542, 0.039061039686203, -0.014472748152911663, 0.0006370273185893893, -0.021136704832315445, 0.017428811639547348, -0.007539669517427683, -0.002539565786719322, 0.02414402924478054, -0.00944914948195219, 0.003530615707859397, -0.02108544483780861, 0.012533365748822689, -0.010670875199139118, -0.017650943249464035, 0.011098051443696022, 0.017685117200016975, -0.007484136614948511, 0.008607611060142517, 0.011251835152506828, -0.020470310002565384, 0.018180642277002335, -0.0018283164827153087, 0.014284790493547916, 0.01200366672128439, 0.015104969963431358, -0.03150855749845505, 0.02460538037121296, -0.00114803749602288, 0.028347449377179146, -0.008842558600008488, -0.0066895876079797745, 0.009637107141315937, -0.009175756014883518, -0.009893413633108139, 0.025220515206456184, 0.00013816497812513262, 0.004711759276688099, -0.0018026859033852816, 0.00964565109461546, 7.035066664684564e-05, 0.01812938041985035, -0.005049229133874178, 0.03258504346013069, -0.003047906095162034, 0.020231090486049652, -0.0051560234278440475, 0.02713426761329174, -0.006646870169788599, -0.004604965448379517, -0.008842558600008488, -0.011277466081082821, -0.007915585301816463, 0.0037591552827507257, 9.81839039013721e-05, -0.007889954373240471, -0.0115252286195755, 0.00936371460556984, -0.002960334764793515, 0.00015658697520848364, 0.00992758758366108, -0.0276297926902771, 0.00016259415133390576, -0.010542722418904305, -0.010730680078268051, 0.010457286611199379, -0.011294553056359291, 0.010286415927112103, 0.03114972822368145, -0.004284582566469908, -0.0139003312215209, -0.0025822834577411413, 0.0078344214707613, 0.010901550762355328, -0.02769814059138298, -0.00548067782074213, 0.0021305440459400415, -0.004758749157190323, -0.009807977825403214, 0.022589106112718582, -0.04128235951066017, -0.004622052423655987, -0.008573437109589577, 0.023887723684310913, 0.005292719695717096, 0.005967658944427967, -0.009825064800679684, 0.007014242000877857, -3.394052691874094e-05, -0.009261191822588444, 0.005412329453974962, -0.005809603724628687, 0.0225207582116127, 0.012114732526242733, -0.007031329441815615, -0.012943455018103123, 0.025186341255903244, 0.011687555350363255, 0.021973971277475357, 0.011960948817431927, -0.01154231559485197, -0.007992477156221867, 0.002821502508595586, -0.008740035817027092, 0.00629231333732605, 0.048766497522592545, -0.0059975613839924335, 0.016164368018507957, 0.028552493080496788, 0.013071608729660511, 0.020231090486049652, 0.0009889141656458378, -0.005224371794611216, 0.015497972257435322, -0.01235395111143589, 0.016523197293281555, 0.00572844035923481, -0.0017236581770703197, 0.009671281091868877, -0.00301373191177845, -0.0031226619612425566, 0.009585846215486526, 0.009064690209925175, -0.002219183137640357, -0.010098458267748356, -0.004955250304192305, -0.0023366566747426987, -0.025425558909773827, 0.013934505172073841, 0.019701391458511353, 0.011550859548151493, 0.015480885282158852, -0.0016350189689546824, -0.020829137414693832, 0.0018753058975562453, 0.011661925353109837, 0.00618551904335618, 0.019769739359617233, 0.014190811663866043, 0.003124797949567437, -0.009209930896759033, -0.01361839473247528, -0.03284134715795517, 0.0066169677302241325, 0.015557777136564255, -0.012695692479610443, -0.003955656662583351, 0.012977629899978638, 0.01643776148557663, 0.012977629899978638, -0.007424331735819578, -0.012875107116997242, -0.00888527650386095, -0.004903988912701607, -0.00615134509280324, 0.004549432545900345, 0.00946623645722866, 0.01995769701898098, 0.005433688405901194, 0.038206689059734344, -0.01876160316169262, 0.025476820766925812, 0.0025908269453793764, -0.021700577810406685, -0.0018945288611575961, 0.004421279300004244, 0.0035882845986634493, 0.01210618857294321, 0.010628157295286655, -0.013020346872508526, -0.00037618252099491656, -0.03217495232820511, 0.0067451209761202335, 0.054678622633218765, 0.010183893144130707, 0.020043132826685905, -0.022691627964377403, 0.006450369022786617, -0.000422637996962294, 0.015318557620048523, 0.019120430573821068, 0.008552078157663345, -0.015053708106279373, 0.008218880742788315, 0.014737597666680813, -0.005766885820776224, -0.00790276937186718, 0.008005292154848576, -0.0015506516210734844, 0.009654194116592407, 0.02281123772263527, -0.0057882447727024555, 0.026519132778048515, -0.006719490047544241, 0.004869814962148666, 0.012499191798269749, -0.013857613317668438, -0.013558589853346348, -0.009543128311634064, 0.009825064800679684, -0.00011246762733208016, 0.0022918032482266426, -0.020316526293754578, -0.022759977728128433, 0.0002130544016836211, -0.0010449810652062297, 0.014951186254620552, 0.014532553032040596, -0.008458099327981472, 0.021973971277475357, -0.014720510691404343, 0.021666403859853745, -0.01992352306842804, 0.013037433847784996, -0.008987798355519772, 0.012165993452072144, 0.0006386292516253889, 0.0003056983696296811, -0.0006461048033088446, -0.03619041293859482, -0.021991059184074402, 0.007565299980342388, 0.005331165622919798, 0.015549233183264732, 0.00886818952858448, -0.011670468375086784, -0.008124901913106441, -0.022332800552248955, -0.03513101488351822, -0.01446420419961214, 0.015087882988154888, 0.007270548027008772, 0.0010182826081290841, 0.03605371713638306, -0.008159075863659382, 0.009056147187948227, -0.021495534107089043, 0.006941622123122215, -0.010944267734885216, 0.0362587608397007, 0.015959322452545166, -0.012259972281754017, 0.005617374088615179, -0.003605371806770563, 0.01333645824342966, -0.0034473163541406393, -0.02129048854112625, -0.009543128311634064, 0.011063877493143082, 0.023836461827158928, 0.00627522636204958, 0.0072961789555847645, -0.008765666745603085, 0.0013167723082005978, -0.009056147187948227, 0.025750214233994484, -0.01001302246004343, -0.020436136052012444, -0.010149719193577766, 0.014652162790298462, -0.005322622135281563, 0.010141176171600819, -0.009261191822588444, 0.002349472139030695, 0.021495534107089043, -0.001357354107312858, -0.014301877468824387, -0.008517904207110405, -0.013174130581319332, 0.0195305198431015, 0.00641619460657239, -0.008193249814212322, 0.001385120558552444, -0.012635888531804085, 0.010576896369457245, 0.004382833372801542, -0.010303502902388573, 0.00040635187178850174, -0.015267296694219112, 0.014122462831437588, -0.0008399362559430301, -0.0010663399007171392, -0.026980483904480934, 0.00037297868402674794, 0.015079339034855366, -0.004481084179133177, -0.021734753623604774, 0.012951998971402645, 0.020299438387155533, -0.0009344491409137845, -0.003870221320539713, 0.011653381399810314, -0.0008116358076222241, -0.006147073116153479, 0.007112492807209492, -0.002693349262699485, 0.017958510667085648, -0.007684909738600254, -0.022366974502801895, -0.01149105466902256, -0.009004885330796242, -0.00817189086228609, 0.0023110262118279934, 0.007441418711096048, -0.025989433750510216, -1.2748556400765665e-05, -0.014780315570533276, 0.01802685856819153, -0.01683076284825802, 0.007018513977527618, -0.01077339705079794, -0.019154604524374008, -0.0039022595155984163, -0.020470310002565384, -0.02862084098160267, 0.011798622086644173, 0.005292719695717096, 0.006710946559906006, -0.0022918032482266426, -0.027356399223208427, -0.023187153041362762, -0.024622468277812004, 0.014840120449662209, -0.010986985638737679, -0.012524821795523167, 0.003242271486669779, -0.011713186278939247, 0.00723210209980607, 0.01173881720751524, 0.01492555532604456, -0.0019180235685780644, -0.007693453226238489, -0.002714708214625716, -0.008479458279907703, -0.010021566413342953, -0.00043331741471774876, -0.026416609063744545, 0.02334093675017357, 0.0007801315514370799, -0.012482104822993279, -0.005724168382585049, 0.017249396070837975, -0.013191217556595802, -0.010448743589222431, 0.012943455018103123, -0.002708300482481718, -0.010799027979373932, -0.028740450739860535, 0.007172297686338425, -0.0022127756383270025, -0.0016553099267184734, 0.01564321294426918, -0.00326363043859601, 0.011200574226677418, 0.018847037106752396, -0.013712373562157154, 0.0014684200286865234, 0.02710009180009365, -0.006903176195919514, 0.007279091514647007, 0.005096218548715115, -0.031269337981939316, -0.05054355412721634, -0.01260171364992857, -0.006869002245366573, 0.005203012842684984, -0.012183080427348614, -5.7535366067895666e-05, 0.014737597666680813, -3.474148252280429e-05, 0.02453703247010708, -0.016027672216296196, 0.012439386919140816, 0.007257733028382063, 0.018180642277002335, 0.01097844261676073, 0.0027211159467697144, 0.005946300458163023, -0.008235967718064785, 0.01816355437040329, 0.026314087212085724, 0.024947121739387512, 0.01918877847492695, -0.01155940257012844, 0.014156637713313103, -0.001348810619674623, 0.018180642277002335, 0.01462653186172247, -0.006403379607945681, -0.007360255345702171, 0.017215222120285034, 0.007936944253742695, -0.020470310002565384, -0.019017908722162247, -0.02048739604651928, -0.015062252059578896, -0.003451588097959757, 0.010166806168854237, 0.0021668539848178625, -0.002471217419952154, 0.029235975816845894, -0.011328727006912231, -0.00120997813064605, -0.04141905531287193, -2.7833235435537063e-05, -0.028279099613428116, 0.006962981075048447, 0.029201801866292953, 0.02593817189335823, 0.019684303551912308, 0.00845382735133171, -0.00913303904235363, 0.004301670007407665, -0.02052156999707222, 0.008607611060142517, 0.039402782917022705, 0.004553704056888819, -0.0018977327272295952, -0.016924742609262466, 4.826596523344051e-06, -0.008163347840309143, 0.007526854053139687, 0.0031397491693496704, 0.008505089208483696, -0.00835130549967289, -0.0071680257096886635, 0.008590524084866047, 0.008099270984530449, 0.02175183966755867, -0.0062581393867731094, -0.014421487227082253, 0.0020814186427742243, 0.0115252286195755, -0.0073773423209786415, 0.007881411351263523, 0.003197417827323079, -0.0053781550377607346, 0.008834014646708965, -0.01749715954065323, -0.00599328987300396, 0.01747152954339981, -0.025545168668031693, -0.020709527656435966, 0.005882223602384329, -0.0035946923308074474, -0.015882430598139763, -0.003032954875379801, 0.011636294424533844, 0.0021807372104376554, -0.0024306357372552156, -0.02238406054675579, 0.018146468326449394, 0.02308463118970394, -0.0036011000629514456, 0.010482917539775372, 0.0019981192890554667, -0.013789265416562557, -0.005843777675181627, 0.01597641035914421, -0.005100490525364876, -0.0006151344859972596, 0.00946623645722866, -0.022572020068764687, -0.016181455925107002, 0.0039449771866202354, -0.008744307793676853, -0.0002792667946778238, 0.0021956884302198887, -0.0014598765410482883, -0.006813468877226114, -0.011320183984935284, 0.013191217556595802, 0.008376935496926308, 0.002117728814482689, 0.008270141668617725, 0.0015346324071288109, 0.015848256647586823, -0.0022149113938212395, -0.00618551904335618, 0.020675353705883026, -0.03601954132318497, 0.007467049639672041, 0.022537844255566597, 0.005164566915482283, -0.0005040685646235943, 0.005275632720440626, -0.0015357004012912512, -0.008159075863659382, -0.014190811663866043, -0.0016659892862662673, -0.006941622123122215, -0.021358836442232132, -0.015959322452545166, 0.005040685646235943, 0.01049146056175232, -0.0032123690471053123, 0.014951186254620552, 0.0006573182181455195, 0.016181455925107002, 0.002349472139030695, -0.007150938734412193, -0.01331937126815319, 0.012507734820246696, -0.00652726087719202, 0.028808800503611565, -0.021768927574157715, 0.0011736680753529072, 0.03350774198770523, 0.00916721299290657, 0.017480071634054184, 0.004933891352266073, 0.006651141680777073, 0.0036032358184456825, 0.017719291150569916, 0.001707639079540968, -0.004269631579518318, -0.004493899177759886, 0.02875753864645958, 0.004137206822633743, -0.016719697043299675, 0.000531568075530231, -0.010303502902388573, -0.01879577711224556, 0.0013221120461821556, 0.007133851759135723, -0.02154679410159588, -0.004933891352266073, -0.01942799799144268, -0.017685117200016975, -0.015181861817836761, 0.02129048854112625, -0.016617175191640854, -0.02846705913543701, -0.004549432545900345, 0.002601506421342492, 0.006070181727409363, 0.006202606484293938, 0.018436947837471962, -0.0091501260176301, 0.01047437358647585, -0.002891986630856991, -0.0037442040629684925, 0.006928806658834219, 0.02274288982152939, 0.020282352343201637, 0.0002830045996233821, 0.011174943298101425, -0.02586982399225235, -0.005459318868815899, 0.004395648837089539, -0.014472748152911663, 0.02178601361811161, -0.012823846191167831, 0.01942799799144268, 0.003925754223018885, -0.011952404864132404, -0.00354556692764163, -0.010089914314448833, 0.00215510674752295, -0.020231090486049652, 0.01358422078192234, 0.01173881720751524, -0.001820840872824192, 0.006018920335918665, -0.012311234138906002, -0.02281123772263527, 0.008799840696156025, -0.0027894640807062387, -0.010329133830964565, -0.007454234175384045, 0.012465017847716808, -0.0010209523607045412, 0.0053696115501224995, -0.0040944889187812805, -0.010824658907949924, 0.012447929941117764, 0.004630595911294222, -0.010850288905203342, -0.008586252108216286, -0.016096020117402077, 0.003906531259417534, -0.013575676828622818, -0.010559809394180775, 0.0026698545552790165, -0.00966273806989193, 0.014771771617233753, -0.004297398030757904, -0.01467779278755188, -0.012670062482357025, 0.01719813607633114, 0.0023879180662333965, -0.0025288863107562065, 0.017428811639547348, 0.008722948841750622, 0.018112294375896454, 0.030466245487332344, 0.013532958924770355, -0.016412129625678062, 0.01959886960685253, -0.02981693670153618, 0.010807571932673454, -0.005519123747944832, -0.01600204035639763, 0.015198948793113232, -0.015959322452545166, 0.005540482234209776, 0.014669249765574932, -0.0016019127797335386, -0.020880399271845818, -0.004350794944912195, -0.016514653339982033, -0.019154604524374008, -0.01746298559010029, -0.028074055910110474, 0.001656377804465592, -0.018539471551775932, -0.005352524574846029, -0.012456473894417286, -0.0007171229808591306, -0.01673678494989872, -0.015087882988154888, -0.0015122056938707829, 0.01726648397743702, -0.01879577711224556, -0.002778784604743123, -0.01180716510862112, -0.011499597690999508, -0.00025323571753688157, 0.0014972544740885496, -0.020282352343201637, 0.02101709507405758, 0.006928806658834219, 0.0027018929831683636, -0.017924336716532707, 0.0015645348466932774, -0.004613508936017752, 0.00485699949786067, 0.012627344578504562, 0.025254689157009125, -0.0064076511189341545, -0.004211962688714266, -0.00813771691173315, -0.0030799442902207375, -0.006399107631295919, -0.014541096054017544, 0.004613508936017752, -0.01826607808470726, 0.0015538553707301617, -0.0005644072662107646, -0.010764854028820992, -0.005912126041948795, -0.010645244270563126, 0.003964200150221586, 0.0035391594283282757, -0.00046241882955655456, -0.02826201356947422, 0.010585439391434193, -0.013720916584134102, 0.0011672604596242309, -0.0027894640807062387, 0.013755091466009617, 0.01444711722433567, -0.011926774866878986, 0.005980474408715963, -0.011115138418972492, 0.004899717401713133, -0.021034182980656624, 0.020675353705883026, -0.01386615727096796, 0.023938985541462898, 0.003381103975698352, -0.02407568134367466, -0.005467862356454134, -0.006505901925265789, 0.0028428612276911736, -0.000622076157014817, 0.016847850754857063, 0.007082590367645025, 0.010218068026006222, -0.001450265059247613, 0.020880399271845818, 0.008432469330728054, 0.018983734771609306, -0.00209209811873734, -0.01522457879036665, -0.0053781550377607346, -0.010833201929926872, -0.008359848521649837, 0.006335031241178513, -0.01918877847492695, 0.01597641035914421, -0.0002615122648421675, 0.02354598231613636, 0.010850288905203342, 0.01047437358647585, -0.011747360229492188, -0.001987439813092351, 0.013515871949493885, -0.0055661131627857685, -0.01706998236477375, -0.0032358637545257807, 0.007535397540777922, 0.002909073606133461, 0.008953624404966831, -0.01180716510862112, -0.0077447141520679, -0.030244113877415657, 0.00248189689591527, -0.004711759276688099, -0.01437876932322979, -0.0060573662631213665, 0.021170878782868385, 0.019052082672715187, -0.008564894087612629, 0.03114972822368145, -0.004352930933237076, 0.0007731898804195225, 0.014370225369930267, 0.00496379379183054, 0.0091501260176301, 0.004908260889351368, -0.01736900582909584, 0.017428811639547348, 0.015104969963431358, -0.0016777366399765015, 0.016514653339982033, -0.0013915282906964421, -0.011918230913579464, 0.017223766073584557, -0.005830962676554918, -0.012635888531804085, -0.0003219844656996429, -0.010354763828217983, -0.029133453965187073, 0.0005980474525131285, -0.003440908621996641, -0.002253357321023941, 0.034259576350450516, -0.0035049852449446917, 0.006672500632703304, 0.0020344292279332876, -0.013789265416562557, -0.00023641562438569963, -0.0023366566747426987, 0.008543535135686398, -0.003836047137156129, 0.019086256623268127, 0.01570301689207554, -0.0017119108233600855, 0.008274413645267487, 0.004882629960775375, 0.008223152719438076, -0.005279904697090387, 0.004617780447006226, -0.016591545194387436, 0.005600287113338709, 0.002413548529148102, -3.5976292565464973e-05, -0.01436168234795332, 0.0034430446103215218, -0.017753465101122856, 0.018043946474790573, 0.006514445412904024, 0.0007545009138993919, -0.008799840696156025, -0.0018891891231760383, 0.002165785990655422, 0.019205866381525993, 0.004079537931829691, -0.011798622086644173, -0.0022042319178581238, -0.012986172921955585, -0.003782649990171194, 0.025613518431782722, 0.0021369517780840397, 0.003054313827306032, -0.0048783584497869015, 0.011012616567313671, 0.00615134509280324, -0.013148500584065914, 0.026912134140729904, 0.0018870532512664795, -0.015745734795928, -0.010730680078268051, 0.008001020178198814, 0.013327914290130138, 0.015984954312443733, 0.005895039066672325, 0.007569571956992149, -0.005591743625700474, -0.008791297674179077, 0.0077148121781647205, -0.04039383307099342, -0.0035519746597856283, -0.010038653388619423, 0.0013381311437115073, 0.006971524562686682, -0.0029945089481770992, -0.002802279544994235, 0.003947113174945116, -0.016283977776765823, -0.009936130605638027, -0.023204240947961807, 0.0031696513760834932, -0.021205052733421326, 0.017855988815426826, 0.0005240924656391144, -0.02453703247010708, 0.00020104004943277687, -0.007958303205668926, 0.014318964444100857, 0.013644025661051273, -0.026194477453827858, -0.03207242861390114, -0.00031504285288974643, 0.004391376860439777, -0.002332384930923581, -0.0006519784801639616, -0.011593576520681381, -0.00443409476429224, 0.012311234138906002, 0.018351512029767036, 0.00024095438129734248, 0.01237103808671236, 0.016813676804304123, 0.0065486193634569645, 0.019803913310170174, 0.018180642277002335, -0.011619207449257374, 0.0017973461654037237, 0.0031504284124821424, -0.006411923095583916, 0.011610663495957851, -0.006587065290659666, -0.013473154976963997, -0.0018058896530419588, 0.025186341255903244, 0.002015206264331937, -0.001206774264574051, 0.03615624085068703, -0.007697724737226963, 0.00445118173956871, 0.02424655109643936, 0.013891787268221378, -0.022759977728128433, 0.016121650114655495, 0.0024178202729672194, 0.017616769298911095, 0.013669655658304691, 0.01918877847492695, 0.012183080427348614, -0.014566726982593536, 0.0039407056756317616, -0.014105375856161118, -0.004903988912701607, 0.00299664493650198, -0.0057070814073085785, 0.006663957145065069, -0.005865136627107859, 0.005339709110558033, -0.011405618861317635, 0.0005462522385641932, 0.0020226819906383753, 0.019342562183737755, 0.001179007813334465, -0.026177391409873962, -0.0030607213266193867, -0.00457506300881505, -0.014199354685842991, -0.015634668990969658, 0.006253867410123348, 0.02766396664083004, -0.007176569197326899, 0.015258753672242165, 0.020077306777238846, 0.027954446151852608, 0.007411516737192869, -0.021563882008194923, -0.012294146232306957, -0.015352732501924038, 0.015335645526647568, -0.003974879626184702, -0.03673719987273216, 0.0068177408538758755, 0.017257940024137497, 0.006074453238397837, -0.015557777136564255, 0.008718677796423435, -0.0022747162729501724, 0.006501629948616028, -0.010858832858502865, -0.02231571264564991, 0.016617175191640854, -0.010636701248586178, -0.022059407085180283, 0.015822626650333405, -0.01876160316169262, 0.007398701272904873, -0.0031675156205892563, -0.016087476164102554, 0.0012772585032507777, 0.021205052733421326, 0.003522072220221162, 0.0017033672193065286, -0.004707487765699625, -0.0015175454318523407, 0.000428244675276801, 0.05799351632595062, 0.010107002221047878, 0.011431249789893627, 0.0028343177400529385, 0.01331937126815319, -0.0339520089328289, -0.0017418131465092301, -0.0007224626606330276, 0.0025993704330176115, -0.010534178465604782, 0.005963387433439493, -0.016326695680618286, 0.02178601361811161, 0.018146468326449394, -0.0021636502351611853, -0.005365340039134026, 0.007817334495484829, -0.007044144440442324, -0.019274214282631874, 0.003799737198278308, 0.0020322934724390507, 0.003844590624794364, -0.0046775853261351585, 0.0021978244185447693, 0.00026765294023789465, -0.00010652720084181055, 0.012738410383462906, -0.019120430573821068, -0.007441418711096048, -0.0009675553301349282, 0.011901143938302994, -0.008394023403525352, -0.027851924300193787, 0.01305452175438404, 0.006053094286471605, 0.013097238726913929, -0.011892600916326046, 0.0172408539801836, 0.008124901913106441, 0.008654600940644741, -0.005711352918297052, -0.007360255345702171, 0.0068262843415141106, -0.010004479438066483, -0.025357211008667946, 0.007864323444664478, 0.021410098299384117, -0.012029296718537807, -0.004673313349485397, 0.020350700244307518, -0.019052082672715187, 0.000587901973631233, 0.005672906991094351, -0.008146260865032673, 0.012499191798269749, 0.004139342810958624, 0.013729460537433624, -0.001175803947262466, -0.010790484957396984, 0.0018133652629330754, -0.01876160316169262, 0.001450265059247613, 0.010901550762355328, 0.008509361185133457, -0.01865907944738865, 0.013644025661051273, -0.009936130605638027, -0.007467049639672041, 0.003250814974308014, 0.011055334471166134, 0.002411412773653865, -0.0327388271689415, -0.0052286433055996895, -0.024331986904144287, -0.02566477842628956, -0.00359042058698833, -0.02294793538749218, -0.02308463118970394, -0.011713186278939247, 0.01783890090882778, -0.012875107116997242, 0.015796996653079987, 0.007001427002251148, 0.0035242082085460424, -0.02470790222287178, -0.018454035744071007, 0.0005422474932856858, 0.0041179838590323925, 0.018043946474790573, 0.006390564143657684, -0.021495534107089043, -0.004463997203856707, -0.01360130775719881, 0.014788858592510223, 0.0026335446164011955, -0.0010989122092723846, -0.018214816227555275, 0.01636941358447075, 0.004656226374208927, 0.00287276366725564, 0.00948332343250513, 0.014489835128188133, 0.005339709110558033, -0.0045964219607412815, -0.011166400276124477, -0.03340522199869156, -0.0029539272654801607, -0.007415788248181343, 8.830544538795948e-05, 0.02012856863439083, 0.005689994432032108, 0.009227017872035503, 0.0025651962496340275, 0.002539565786719322, 0.0021529707591980696, 0.02404150739312172, 0.012507734820246696, 0.02002604492008686, 0.0327388271689415, -0.006920263171195984, -0.011849883012473583, 0.011414162814617157, 0.006411923095583916, 0.004194875713437796, -0.006762207951396704, -0.005608830600976944, 0.0009536721045151353, 0.02111961878836155, -0.006621239706873894, -0.00831713154911995, 0.004263224080204964, -0.0030585855711251497, -0.009919043630361557, 0.029748588800430298, -0.006023192312568426, 0.0004901853390038013, 0.019718479365110397, 0.012875107116997242, 0.030295373871922493, 0.007582387421280146, -0.033029306679964066, -0.006907448172569275, 0.012644431553781033, 0.009320996701717377, 0.01743735559284687, -0.00012821976270060986, -0.020880399271845818, 0.01949634589254856, 0.02773231454193592, 0.006001833360642195, 0.006305128801614046, 0.0005975134554319084, 0.008581981062889099, 0.0061983345076441765, -0.018812863156199455, -0.005284176208078861, -0.02058991976082325, 0.020282352343201637, -0.020572831854224205, 0.004173516761511564, -0.0064802709966897964, 0.015848256647586823, 0.0041863322257995605, 0.0022234548814594746, 0.015130599960684776, 6.644600944127887e-05, -7.675832307540986e-07, 0.00293470430187881, -0.02404150739312172, -0.017488615587353706, -0.004053907468914986, 0.006856186781078577, -0.03971035033464432, 0.003519936464726925, -0.0024199562612921, 0.017121244221925735, -0.0017119108233600855, -0.006006104871630669, -0.03858260437846184, -0.004600693471729755, 0.009722542949020863, 0.019069170579314232, 0.016249803826212883, -0.010875919833779335, 0.023836461827158928, 0.007573843467980623, -0.009773803874850273, 0.017488615587353706, 0.012157450430095196, 0.004333707969635725, -0.013370632193982601, 0.02566477842628956, -0.01706998236477375, -0.014353138394653797, -0.0020451087038964033, 0.004276039078831673, -0.014746141619980335, -0.008859645575284958, -0.04114566370844841, 0.014318964444100857, -0.006621239706873894, 0.00512184901162982, -0.017548421397805214, -0.0001800816971808672], "926c9e8c-0a25-4512-88ba-697deb7cd1d6": [-0.026330426335334778, -0.0014446259010583162, -0.0021679243072867393, 0.009231415577232838, -0.030445540323853493, -0.05146258324384689, 0.0340876542031765, 0.047615502029657364, -0.028506234288215637, 0.009617701172828674, 0.03241638094186783, 0.027371030300855637, 0.011478173546493053, -0.021647710353136063, -0.03512825816869736, -0.013046963140368462, -0.029972540214657784, 0.008364246226847172, 0.008947614580392838, -0.04525049403309822, 0.09340206533670425, -0.0030449482146650553, -0.0498228445649147, 0.019676869735121727, 0.0030646566301584244, 0.008411546237766743, -0.009846318513154984, -0.0012219209456816316, -0.03301551565527916, 0.0035061249509453773, 0.015301603823900223, -0.0065865484066307545, 0.021868444979190826, -0.006074129603803158, 0.011525474488735199, -0.032211415469646454, -0.010863271541893482, 0.02863236889243126, 0.0022250786423683167, -0.01822633109986782, -0.008750530891120434, 0.03238484635949135, 0.021348142996430397, 0.00552229443565011, 0.0020240528974682093, -0.010516404174268246, -0.005396160762757063, -0.016838859766721725, 0.007524668239057064, 0.0065786647610366344, -0.013858948834240437, -0.03405611962080002, -0.025226755067706108, 0.008167162537574768, 0.007102908566594124, -0.025069089606404305, 0.03427685424685478, 0.09100551903247833, 0.0031947321258485317, -0.02648809365928173, 0.01491531915962696, -0.03087124228477478, 0.0041032894514501095, 0.009570400230586529, -0.03702026605606079, 0.0011874312767758965, -0.009775367565453053, 0.015782488510012627, -0.022262612357735634, 0.013472664169967175, 0.04190794751048088, 0.04893990606069565, -0.014418668113648891, 0.016964992508292198, 0.009365432895720005, 0.010145885869860649, 0.0264565609395504, -0.01761142909526825, 0.0253213569521904, -0.006661440245807171, 0.03080817498266697, -0.0075562018901109695, 0.015750955790281296, 0.016949227079749107, 0.04701636731624603, 0.007311817724257708, -0.025242522358894348, -0.05442672595381737, -0.005916462745517492, -0.038344670087099075, 0.011746208183467388, 0.030067140236496925, -0.012865645810961723, -0.023571250960230827, -0.010224719531834126, 0.007950370199978352, -0.008734764531254768, 0.004320081789046526, -0.0038017509505152702, 0.03178571164608002, 0.008868781849741936, 0.0077414605766534805, -0.038849204778671265, 0.005628719925880432, 0.0008312019053846598, -0.023587016388773918, 0.02637772634625435, 0.019077735021710396, -0.00882936455309391, 0.018857000395655632, 0.02160041034221649, -0.04007900878787041, -0.02265677973628044, 0.01077655516564846, -0.025447489693760872, 0.00883724819868803, -0.04525049403309822, -0.024012718349695206, -0.002000402892008424, -0.013299230486154556, 0.011698908172547817, -0.00934966653585434, 0.027371030300855637, -0.005029584281146526, -0.027749432250857353, 0.015624822117388248, -0.01019318588078022, 0.037745535373687744, 0.02257794700562954, 0.00552229443565011, -0.004824616946280003, -0.022782914340496063, 0.02760753035545349, 0.02087514102458954, 0.020654406398534775, 0.022231077775359154, 0.03979520872235298, 0.07082411646842957, 0.007627151906490326, 0.02763906493782997, -0.06855370849370956, -0.04011054337024689, -0.0023433291353285313, 0.012100959196686745, -0.01378011517226696, 0.006641732063144445, -0.026693060994148254, 0.010532170534133911, -0.022262612357735634, 0.01649199239909649, -0.06164788454771042, -0.04175028204917908, -0.002183691132813692, -0.000562674889806658, 0.06016581133008003, -0.038344670087099075, -0.006649615243077278, 0.045439694076776505, -0.013622447848320007, 0.018935833126306534, 0.03840773552656174, -0.050421979278326035, 0.007004366256296635, 0.016176657751202583, 0.03623192757368088, -0.0030666275415569544, 0.031738411635160446, 0.007989786565303802, -0.015561754815280437, 0.015506571158766747, 0.03147037699818611, -0.008884548209607601, 0.012329576537013054, -0.007051666732877493, -0.005549886263906956, -0.042191747575998306, 0.04736323282122612, 0.01715419441461563, 0.027922865003347397, -0.003845109371468425, -0.011927525512874126, 0.007855769246816635, 0.010634654201567173, -0.0003136099549010396, -0.029341870918869972, 0.002376833464950323, 0.03645266219973564, 0.05026431009173393, 0.0181001964956522, 0.0020989449694752693, 0.003764305030927062, -0.016397390514612198, 8.739445183891803e-05, 0.003921972122043371, 0.0025739173870533705, -0.05146258324384689, 0.033393919467926025, 0.007374884560704231, -0.010122235864400864, 0.007378825917840004, -0.009783251211047173, -0.032731715589761734, 0.006204205099493265, 0.038313135504722595, -0.012187676504254341, 0.032290246337652206, -0.030745109543204308, -0.019582269713282585, -0.004343732260167599, -0.002305883215740323, 0.04339002072811127, -0.0417187474668026, -0.01608205772936344, 0.002623188542202115, -0.005991354584693909, 0.023855051025748253, -0.018573198467493057, -0.012558194808661938, -0.008060736581683159, -0.0248325876891613, -0.01328346412628889, -0.032794781029224396, 0.01185657549649477, -0.027875564992427826, -0.05117877945303917, -0.011903875507414341, 0.0064722397364676, 0.008419429883360863, -0.008592863567173481, -0.001672258018516004, 0.03251098096370697, -0.01647622510790825, 0.021710777655243874, -0.042254816740751266, -0.01929846778512001, 0.012920829467475414, 0.05057964473962784, -0.020512506365776062, -0.025557857006788254, -0.030571674928069115, 0.021821143105626106, 0.009846318513154984, -0.000941568985581398, -0.01981876976788044, 0.013685515150427818, 0.032148346304893494, -0.029578370973467827, 0.02202611044049263, 0.030713574960827827, 0.0352228581905365, 0.027386797592043877, -0.003815546864643693, -0.0019471902633085847, 0.016728492453694344, -0.02703992836177349, -0.0010238515678793192, 0.031060444191098213, -0.015049336478114128, 0.0033287492115050554, -0.023035181686282158, -0.01434771716594696, -0.01817903108894825, -0.018068663775920868, 0.017942531034350395, 0.02264101430773735, -0.022278379648923874, 0.017169959843158722, -0.019645337015390396, 0.011872341856360435, 0.04175028204917908, -0.01650775782763958, 0.002816330874338746, 0.019992204383015633, 0.02103280834853649, -0.003202615538612008, -0.012471477501094341, -0.010555820539593697, 0.01701229438185692, -0.0049310424365103245, -0.01986606977880001, 0.014276767149567604, -0.033299319446086884, 0.027733664959669113, 0.025589389726519585, 0.022420279681682587, 0.03812393546104431, -0.01134415715932846, 0.008908198215067387, -0.006574723403900862, -0.031691111624240875, -0.008143512532114983, 0.013843182474374771, -0.0003729815362021327, 0.025037555024027824, -0.002826184965670109, -0.004067814443260431, 0.021206241101026535, -0.03806086629629135, -0.02155311033129692, -0.013078495860099792, -0.013961432501673698, -0.006961008068174124, -0.02423345297574997, -0.008143512532114983, 0.05682326853275299, -0.0027867681346833706, 0.059787411242723465, 0.013929898850619793, -0.00020509057503659278, 0.01931423507630825, 0.036042727530002594, -0.03129694238305092, 0.019061967730522156, -0.022372979670763016, -0.004903450608253479, 0.01765872910618782, -0.02319284901022911, -0.02480105496942997, -0.03080817498266697, -0.04257015138864517, -0.006058363243937492, 0.00882936455309391, -0.052660852670669556, 0.050421979278326035, 0.032274480909109116, -0.017958296462893486, -0.0011529416078701615, -0.02538442239165306, -0.009791134856641293, -0.05351225659251213, -0.025226755067706108, -0.030997376888990402, -0.0495075099170208, 0.02372891642153263, -0.021616175770759583, -0.021805377677083015, -0.048246171325445175, -0.079527348279953, 0.03216411545872688, -0.0008312019053846598, 0.016744259744882584, 0.013866832479834557, -0.014253117144107819, -0.03954293951392174, 0.0018732837634161115, -0.030997376888990402, 0.014765535481274128, -0.009838434867560863, -0.009302366524934769, 0.02644079364836216, 0.0009302366524934769, 0.009223532862961292, -0.0035731333773583174, 0.0225621797144413, -0.004186064936220646, -0.00854556355625391, -0.04682716727256775, -0.0008587936754338443, 0.010445453226566315, 0.002130478387698531, -0.030414007604122162, -0.03128117695450783, 0.004288548603653908, -7.310586079256609e-05, -0.011809275485575199, 0.015963805839419365, 0.027954399585723877, 0.026298893615603447, -0.009806901216506958, -0.008167162537574768, 0.011533357203006744, 0.028001699596643448, -0.014134867116808891, 0.00401263078674674, -0.022451812401413918, -0.02913690358400345, 0.045944228768348694, 0.019976437091827393, 0.003949563950300217, 0.0077414605766534805, -0.0019245255971327424, -0.01653929241001606, -0.07107638567686081, -0.011084006167948246, 0.052566252648830414, -0.009980334900319576, 0.023791983723640442, 0.0032065571285784245, 0.009538867510855198, 0.018935833126306534, -0.03954293951392174, 0.03793473541736603, -0.008466729894280434, -0.02043367177248001, 0.020023737102746964, -0.010524286888539791, -0.0051281265914440155, -0.0002498039975762367, 0.024564553052186966, 0.01921963505446911, -0.017816396430134773, 0.01824209839105606, 0.020701706409454346, -0.02415461838245392, 0.06454896181821823, -0.012108842842280865, -0.009814784862101078, -0.015609054826200008, 0.01992913708090782, 0.027749432250857353, 0.017217261716723442, 0.013882598839700222, 0.0023117957171052694, 0.01814749836921692, 0.04569196328520775, -0.011028822511434555, 0.006507714744657278, 0.01712265983223915, -0.04029974341392517, -0.008900314569473267, 0.011391457170248032, 0.013393830507993698, 0.010469104163348675, 0.00402051443234086, -0.01589285582304001, -0.0033090407960116863, -0.023350516334176064, 0.029341870918869972, -0.006791515741497278, -0.004694541450589895, 0.0008858927176333964, 0.020654406398534775, 0.014126983471214771, -0.0025561798829585314, 0.001981679815798998, -0.005025642924010754, -0.0005498644313775003, -0.03405611962080002, 0.027717897668480873, 0.003606637706980109, -0.02642502635717392, 0.03676799684762955, 0.016397390514612198, 0.02153734304010868, -0.006704798899590969, -0.012022125534713268, -0.04357922077178955, -0.026156991720199585, 0.012771044857800007, 0.014844369143247604, 0.0072211590595543385, 0.05354379117488861, -0.0060898964293301105, 0.007449776399880648, 0.005873104091733694, -0.01208519283682108, 0.018320931121706963, -0.0033859035465866327, -0.006176613736897707, -0.047615502029657364, -0.022861747071146965, 0.0006360887200571597, 0.007615326903760433, 0.0259677916765213, 0.024075785651803017, -0.003598754294216633, -0.02803323231637478, 0.0008957469253800809, 0.02103280834853649, 0.04843537136912346, 0.0053133852779865265, 0.01868356578052044, -0.016287025064229965, 0.036641862243413925, -0.016208190470933914, 0.010003985837101936, -0.025715524330735207, 0.005013817921280861, -0.011541240848600864, 0.009176232852041721, 0.04458829015493393, 0.003642112948000431, -0.01099728886038065, -0.0030469191260635853, -0.007489193230867386, 0.010981522500514984, -0.003145461203530431, 0.002288145711645484, 0.013433247804641724, 0.016917692497372627, 0.008364246226847172, 0.01773756369948387, 0.0012603523209691048, -0.006495889741927385, -0.004018543288111687, 0.018494365736842155, 0.026898028329014778, -0.011091888882219791, 0.015025686472654343, -0.030981609597802162, 0.029925238341093063, -0.004213656764477491, -0.02311401441693306, 0.007378825917840004, 0.01185657549649477, 0.025620924308896065, -0.016712725162506104, 0.028269734233617783, -0.00967288389801979, 0.01492320280522108, -0.0006405230960808694, -0.006858524400740862, -0.02095397375524044, -0.011959059163928032, 0.003994893282651901, -0.003766275942325592, -0.041119612753391266, -0.02035483904182911, 0.022372979670763016, 0.012573961168527603, -0.008529797196388245, -0.04294855147600174, -0.02651962637901306, 0.007966136559844017, -0.003078452544286847, -0.010130119509994984, -0.03370925411581993, -0.02585742436349392, 0.0002867572766263038, -0.019992204383015633, -0.027355263009667397, 0.0029641438741236925, -0.009010681882500648, 0.015246420167386532, 0.010185303166508675, 0.01699652709066868, -0.023429349064826965, 0.009231415577232838, 0.027292195707559586, -0.0027473513036966324, -0.031769946217536926, 0.01265279483050108, -0.009743834845721722, -0.026078158989548683, 0.01701229438185692, 0.013922016136348248, 0.012195560149848461, 0.039984408766031265, -0.022814447060227394, 0.018305165693163872, 0.0023788041435182095, -0.001708718598820269, -0.006298805586993694, -0.015112403780221939, 0.023350516334176064, -0.021915744990110397, 0.008529797196388245, 0.004014601930975914, -0.03083970956504345, -0.018510133028030396, 0.001739266561344266, 0.009160465560853481, -0.005364627111703157, 0.007721752393990755, 0.0160662904381752, -0.008908198215067387, 0.0005956864915788174, 0.012479361146688461, -0.026661528274416924, 0.019408835098147392, 0.02918420359492302, -0.016933459788560867, 0.04193948209285736, 0.016744259744882584, -0.014402900822460651, 0.004615707788616419, -0.010524286888539791, -2.3988821340026334e-05, -0.00825387891381979, -0.019125035032629967, 0.020102571696043015, -0.03579045832157135, 0.014560568146407604, 0.0016909809783101082, -0.010413920506834984, 0.017453761771321297, -0.026582693681120872, -0.03897533938288689, -0.04039434343576431, -0.014324067160487175, 0.011596424505114555, 0.05789540335536003, 0.008734764531254768, 0.009940918534994125, -0.015057220123708248, 0.025699757039546967, -0.016208190470933914, -0.018336698412895203, 0.05691786855459213, 0.013590915128588676, 0.006405231077224016, 0.016744259744882584, 0.01985030435025692, -0.014473850838840008, -0.044935159385204315, -0.017264561727643013, 0.009728067554533482, 0.032826315611600876, -0.0077966442331671715, 0.013464781455695629, -0.014465968124568462, -0.011903875507414341, 0.02863236889243126, -0.00509659294039011, 0.012455711141228676, -0.015750955790281296, 0.0042964317835867405, 0.02253064699470997, 0.02267254702746868, -0.019739937037229538, 0.023933885619044304, -0.022246845066547394, 0.017895229160785675, -0.05180944874882698, 0.047142501920461655, -0.0038746721111238003, 0.018825465813279152, -0.027717897668480873, 0.013086379505693913, 0.03183301165699959, -0.004071756266057491, -0.03531745821237564, 0.011927525512874126, -0.01161219086498022, 0.033393919467926025, -0.004607824608683586, 0.009010681882500648, -0.002774943131953478, 0.005573536269366741, 0.003413495374843478, 0.01813173107802868, -0.017800629138946533, -0.01660235784947872, 0.016271257773041725, 0.0007967121782712638, -0.00032691314117982984, 0.00017060086247511208, 0.0087662972509861, 0.010287786833941936, -0.01712265983223915, -0.01099728886038065, -0.007571968249976635, -0.018052896484732628, 0.021963045001029968, 0.016807327046990395, -0.009302366524934769, 0.009199882857501507, 0.023918118327856064, 0.0016249578911811113, -0.016413157805800438, 0.01184080820530653, -0.026125459000468254, -0.008561329916119576, 0.026882261037826538, 0.0038096343632787466, -0.00017244853370357305, 0.014205817133188248, -0.005053234752267599, 0.03184878081083298, -0.008663813583552837, 0.0007316744886338711, -0.019125035032629967, 0.011982709169387817, -0.0009731024038046598, 0.03348851948976517, 0.0017560187261551619, -0.021190475672483444, -0.00731575908139348, 0.018951600417494774, 0.003547512460500002, -0.026078158989548683, -0.02582589164376259, -0.02978333830833435, 0.017485294491052628, -0.007512843236327171, -0.0028616602066904306, -0.030634742230176926, 0.02311401441693306, 0.013843182474374771, -0.02095397375524044, 0.010461220517754555, 0.0020871199667453766, -0.011738324537873268, 0.021805377677083015, 0.031044676899909973, -0.020733239129185677, 0.0007617297815158963, -0.01869933307170868, 0.0247537549585104, -0.003464737208560109, -0.03875460475683212, -0.011162839829921722, 0.04471442475914955, -0.0362003929913044, 0.052566252648830414, 0.02324014902114868, -0.012108842842280865, -0.007737519219517708, 0.019739937037229538, 0.011714674532413483, -0.009278716519474983, 0.02374468371272087, 0.010358736850321293, 0.017926763743162155, 0.004891625605523586, -0.011013055220246315, 0.016223957762122154, 0.024454185739159584, -0.014458084478974342, 0.032889384776353836, 0.02434382028877735, 0.026015091687440872, -0.012022125534713268, -0.03654726222157478, -0.025731291621923447, 0.0129444794729352, -0.0023985125590115786, 5.875567512703128e-05, -0.00014288592501543462, 0.013330764137208462, 0.016105707734823227, 0.0011174664832651615, 0.016870392486453056, 0.0022979998029768467, -0.016744259744882584, -0.007733577396720648, 0.0015067073982208967, -0.0013037108583375812, 0.02040213905274868, -0.010059168562293053, 0.018841233104467392, -0.04093041270971298, 0.010634654201567173, -0.026598460972309113, -0.026803428307175636, 0.011635840870440006, 0.02533712238073349, -0.030745109543204308, -0.018557433038949966, -0.0017619312275201082, 0.025494789704680443, -0.015561754815280437, 0.03957447409629822, 0.01764296181499958, 0.020165637135505676, -0.01577460579574108, 0.050516579300165176, 0.014205817133188248, -0.010524286888539791, 0.036042727530002594, -0.007102908566594124, 0.0024379293899983168, -0.021679243072867393, 0.012447827495634556, 0.008104095235466957, -0.013583031482994556, 0.008679580874741077, 0.0036164920311421156, 0.04181334748864174, -0.003813575953245163, 0.03648419678211212, 0.04897144064307213, 0.00394759327173233, 0.01937730237841606, -0.0037761300336569548, 0.009601933881640434, 0.0015086783096194267, -0.005676019936800003, -0.018604733049869537, -0.019534969702363014, -0.013598797842860222, -0.04559735953807831, 0.0065274229273200035, -0.020764773711562157, -0.0037071506958454847, -0.03689413145184517, 0.03632652759552002, 0.010295669548213482, -0.021805377677083015, 0.013937782496213913, -0.005593244917690754, -0.015277953818440437, -0.02371315099298954, -0.03594812750816345, -0.013922016136348248, 0.0032440030481666327, -0.005143893416970968, -0.019440369680523872, 0.019030433148145676, 0.00019006291404366493, 0.031107744202017784, -0.0056996699422597885, 0.042160216718912125, 0.022357212379574776, -0.003496270626783371, -0.014536918140947819, -0.004911334253847599, -0.03244791552424431, 0.004469865933060646, -0.01759566180408001, 0.012321693822741508, 0.018478598445653915, -0.009767484851181507, 0.014434434473514557, -0.04736323282122612, 0.028285499662160873, -0.009830551221966743, 0.001388457021676004, 0.04354768618941307, 0.0012820316478610039, -0.00041658637928776443, 0.005467111244797707, -0.018904300406575203, 0.02249911241233349, -0.020291771739721298, 0.025132155045866966, 0.05770620331168175, -0.02869543433189392, 0.016886159777641296, -0.008955498225986958, 0.010571587830781937, 0.0034509412944316864, -0.0040303682908415794, 0.03421378880739212, 0.0129444794729352, -0.0003971243277192116, 0.0031651696190238, 0.013464781455695629, -0.022987881675362587, 0.037840135395526886, -0.012463593855500221, -0.021695010364055634, 0.0017776979366317391, 0.015837673097848892, 0.006085955072194338, 0.01991336978971958, 0.010319319553673267, 0.007709927391260862, 0.018604733049869537, 0.056003399193286896, 0.01704382710158825, -0.04067814350128174, -0.013031195849180222, 0.011241673491895199, -0.034939058125019073, 0.02927880361676216, -0.026882261037826538, -0.0009612773428671062, -0.018021363765001297, -0.013196746818721294, 0.0386284701526165, -0.0042924899607896805, 0.007434009574353695, -0.004083581268787384, -0.025258289650082588, -0.029452238231897354, -0.0010494724847376347, -0.009570400230586529, -0.0009095427813008428, -0.0008681551553308964, -0.015861323103308678, 0.008908198215067387, 0.023902351036667824, 0.005841570906341076, 0.015128170140087605, -0.00037815497489646077, -0.0431692861020565, 0.014237350784242153, 0.004201831761747599, -0.00047497250488959253, -2.388104076089803e-05, 0.03988980874419212, -0.0027887390460819006, 0.030682042241096497, -0.035538192838430405, -0.011517590843141079, -0.00552623625844717, -0.020733239129185677, -0.0008139570709317923, -0.000391458161175251, -0.013141563162207603, -0.0009543794440105557, -0.013425364159047604, -0.017926763743162155, -0.018588965758681297, 0.015814023092389107, 0.023807751014828682, 0.010082818567752838, 0.002286174800246954, 0.01653929241001606, 0.0016978789353743196, -0.05004357546567917, -0.027702132239937782, -0.018935833126306534, 0.028947701677680016, -0.02147427573800087, 0.01704382710158825, -0.0013657923555001616, 0.021111641079187393, 0.04726863279938698, 0.024485720321536064, 0.02705569565296173, -0.008608630858361721, 0.02197881042957306, 0.05124184861779213, 0.013669748790562153, 0.004059931263327599, -0.004327965434640646, 0.0013786028139293194, -0.011202256195247173, -0.0009272803436033428, 0.018573198467493057, 0.04975977540016174, 0.01991336978971958, -0.023303216323256493, -0.0009878836572170258, -0.030508607625961304, -0.0033918162807822227, 0.0053252107463777065, 0.02968873828649521, -0.02647232636809349, 0.01019318588078022, 0.003651967039331794, 0.004761550109833479, 0.027402563020586967, -0.02095397375524044, -0.001317506772466004, 0.002089090645313263, -0.01400873251259327, -0.013835298828780651, -0.022735614329576492, 0.007000424899160862, 0.02921573631465435, -0.02267254702746868, -0.02647232636809349, -0.029578370973467827, -0.003413495374843478, 0.02098550833761692, -0.02486412040889263, 0.0006484064506366849, 0.008561329916119576, 0.039921339601278305, -0.011801391839981079, 0.028490466997027397, -0.00968076754361391, 0.011304739862680435, 0.007654743734747171, 0.01515182014554739, 0.0014544801088050008, 0.0005863250116817653, 0.020812073722481728, 0.013953549787402153, -0.024406885728240013, 0.0030725400429219007, -0.034466054290533066, 0.024075785651803017, -0.03183301165699959, 0.001565832644701004, 0.006874291226267815, -0.012676444835960865, -0.010240485891699791, 0.0011499853571876884, 0.02535288967192173, 0.013102146796882153, -0.0024004834704101086, 0.011738324537873268, -0.03247945010662079, -0.009830551221966743, -0.006350047420710325, -0.021363908424973488, 0.042223282158374786, -0.021379675716161728, 0.015238537453114986, -0.0006809253245592117, 0.02530558966100216, 0.022357212379574776, 0.00878994818776846, 0.02038637176156044, -0.02543172426521778, 0.03210104629397392, 0.010461220517754555, -0.019156567752361298, -0.0035218915436416864, -0.02655116096138954, 0.007331525906920433, -0.03806086629629135, -0.0077966442331671715, -0.013882598839700222, 0.0053212689235806465, -0.027844032272696495, 0.007229042239487171, -0.043894555419683456, -0.016176657751202583, 0.017910996451973915, 0.016397390514612198, -0.016681192442774773, 0.012834112159907818, 0.002812389051541686, -0.008592863567173481, 0.045439694076776505, 0.005167543422430754, -0.015293721109628677, 0.013456897810101509, -0.01661812514066696, 0.00566813675686717, 0.013299230486154556, -0.004698483273386955, -0.03793473541736603, 0.007540435064584017, 0.029357636347413063, -0.02748139761388302, -0.02863236889243126, -0.021726543083786964, -0.028253966942429543, -0.010177419520914555, 0.012778928503394127, 0.004205773118883371, -0.004753666929900646, 0.019582269713282585, 0.021773843094706535, -0.015553872101008892, -0.026109691709280014, 0.028947701677680016, -0.03377231955528259, -0.0018249981803819537, -0.039385274052619934, 0.011635840870440006, -0.07593253254890442, -0.011864458210766315, -0.004221539944410324, 0.03153344616293907, 0.0032814492005854845, -0.013188863173127174, 0.026898028329014778, 0.0025423839688301086, 0.0014988241018727422, -0.00481279194355011, -0.011486057192087173, -0.03134424611926079, 0.02208917774260044, 0.008293296210467815, -5.2196472097421065e-05, -0.005612953100353479, -0.015025686472654343, -0.0024004834704101086, -0.00992515217512846, -0.007043783087283373, -0.01435560081154108, -0.019456135109066963, 0.038849204778671265, -0.006062304601073265, 0.007276342250406742, 0.049349840730428696, -0.015561754815280437, 0.017264561727643013, -0.012865645810961723, -0.016681192442774773, 0.007820294238626957, 0.0036874422803521156, -0.010169535875320435, -0.019992204383015633, 0.03202221170067787, -0.0032499157823622227, 0.020212939009070396, -0.000693243055138737, 0.009869968518614769, 0.013314996846020222, -0.00045206150389276445, 0.002359095960855484, -0.016980759799480438, -0.016444692388176918, 0.020228704437613487, 0.00012015966785838827, -0.0015155761502683163, -0.015719423070549965, 0.02528982236981392, 0.012810462154448032, 0.014473850838840008, 0.00045156877604313195, -0.007402476388961077, -0.03859693557024002, -0.0009425543830730021, 0.018604733049869537, 0.014765535481274128, -0.027891332283616066, -0.02096974104642868, -0.009168349206447601, 0.039921339601278305, 0.03348851948976517, 0.02090667374432087, 0.01459998544305563, 0.005305502098053694, 0.0027296137996017933, 0.008427313528954983, 0.0342453196644783, 0.0160662904381752, 0.0018762400140985847, 0.006558956578373909, 0.005766678601503372, 0.0067718070931732655, 0.005167543422430754, 0.03292091563344002, -0.015112403780221939, 0.012069426476955414, -0.0065353065729141235, 0.016712725162506104, -0.003569191787391901, -0.026346193626523018, -0.0013697340618818998, 0.0017491207690909505, -3.843138620140962e-05, -0.010358736850321293, -0.007422184571623802, 0.008734764531254768, -0.007504960056394339, -0.016208190470933914, 0.004312198609113693, -0.0006188438856042922, 0.016728492453694344, 0.010910571552813053, 0.003027210710570216, -0.004552640952169895, 0.040488943457603455, 0.0053764525800943375, -0.004257014952600002, 0.01975570246577263, -0.012014242820441723, -0.0053173271007835865, -0.013985082507133484, -0.0018693420570343733, -0.015136053785681725, -0.010674071498215199, -0.0019501465139910579, 0.005116301588714123, 0.028411634266376495, -0.0241861529648304, -0.011241673491895199, -0.03301551565527916, 0.0069215912371873856, -0.021631943061947823, -0.021616175770759583, -0.022294145077466965, 0.013291346840560436, 0.03216411545872688, 0.010082818567752838, -0.0027197597082704306, 0.0018378086388111115, 0.008190812543034554, 0.019629569724202156, -0.014095449820160866, -0.04184488207101822, -0.017201494425535202, -0.011769858188927174, -0.010256253182888031, -0.016744259744882584, -0.0038569343741983175, 0.02267254702746868, 0.0009213678422383964, 0.015932273119688034, -0.005746970418840647, 0.02100127376616001, 0.0016476224409416318, 0.016318557783961296, 0.023839283734560013, -0.016145123168826103, 0.01934576779603958, -0.03147037699818611, 0.005573536269366741, -0.0007592662004753947, -0.013527847826480865, 0.007922777906060219, 0.013094263151288033, 9.410762140760198e-05, 0.007347292732447386, -0.037146396934986115, -0.028001699596643448, -0.01660235784947872, 0.0018880650168284774, 0.005652369931340218, 0.03358311951160431, 0.013338646851480007, 0.0003182907239533961, -0.01594015583395958, 0.009948802180588245, 0.011493940837681293, -0.0012110813986510038, 0.018320931121706963, -0.01491531915962696, -0.0036992672830820084, 0.01403238344937563, -0.004603882785886526, 0.006767865736037493, -0.01770602911710739, -0.01767449639737606, -0.019724169746041298, -0.016444692388176918, -0.01658659242093563, -0.007229042239487171, -0.0007257619290612638, -0.02694532833993435, -0.0011214081896468997, 0.024422653019428253, 0.004871917422860861, 0.015230653807520866, -0.009980334900319576, 0.0061884387396276, -0.00963346753269434, -0.013299230486154556, 0.007083199918270111, 0.009854201227426529, 0.005222726613283157, -0.0011756062740460038, -0.008514029905200005, -0.02032330445945263, -0.0047339582815766335, -0.005309443920850754, -0.013196746818721294, 0.011509707197546959, 0.0042924899607896805, -0.01877816580235958, 0.0242649856954813, -0.014678818173706532, 0.012203442864120007, 0.007449776399880648, 0.012881412170827389, -0.015672123059630394, -0.01298389583826065, -0.03755633160471916, -0.02541595697402954, 0.012290160171687603, -0.00934966653585434, -0.016287025064229965, 0.016775792464613914, -0.0015382408164441586, 0.013677631504833698, 0.008490379899740219, -0.03210104629397392, 0.006649615243077278, -0.016113590449094772, 0.023965418338775635, 0.009901502169668674, -0.017942531034350395, -0.012605494819581509, 0.004702425096184015, -0.012234976515173912, -0.01594015583395958, -0.009743834845721722, 0.0350651890039444, 0.004406799096614122, -0.01769026182591915, -0.02975180558860302, -0.009743834845721722, 0.010886921547353268, -0.01020895317196846, -0.04566042870283127, -0.020212939009070396, 0.0030350941233336926, -0.004800966940820217, -0.0003187834226991981, 0.0029976482037454844, -0.005940112750977278, -0.008987031877040863, 0.015561754815280437, 0.021143175661563873, -0.0022704079747200012, 0.0077414605766534805, -0.010547936893999577, -0.022893281653523445, -0.032227180898189545, -0.00939696654677391, 0.0007099952199496329, 0.032242946326732635, -0.014040266163647175, 0.000572036427911371, -0.010942105203866959, 0.0018338669324293733, 0.01162795815616846, -0.007930661551654339, -0.0072172172367572784, -0.01155700720846653, 0.010138002224266529, -0.011714674532413483, -0.022845981642603874, 0.00309027754701674, -0.013661865144968033, 0.007370942737907171, -0.012589727528393269, -0.021679243072867393, 0.026771895587444305, 0.033835384994745255, -0.02489565499126911, 0.02700839564204216, 0.0033701369538903236, -0.02038637176156044, 0.000905108405277133, -0.01869933307170868, -0.010303553193807602, 0.005660253576934338, -0.00797796156257391, -0.019629569724202156, -0.00968865118920803, -0.011091888882219791, 0.005273968446999788, -0.0008543592994101346, -0.032258715480566025, 0.012455711141228676, -0.001688024727627635, -0.014741885475814342, -0.005266085267066956, -0.006353989243507385, 0.009838434867560863, 0.009436383843421936, 0.018462831154465675, -0.003937738947570324, -0.01577460579574108, 0.02417038567364216, 0.00552623625844717, 0.02264101430773735, 0.011415107175707817, 0.015199120156466961, -0.007757227402180433, 0.014544801786541939, -0.011320507153868675, -0.00964135117828846, 0.012834112159907818, 0.01827363111078739, -0.022767147049307823, -0.0011894020717591047, -0.01299966312944889, -0.022735614329576492, -0.021631943061947823, -0.047647036612033844, -0.00036091014044359326, 0.02098550833761692, 0.004710308276116848, 0.022404512390494347, 0.0018427356844767928, -0.006649615243077278, 0.03509672358632088, -0.034402988851070404, -0.02260947972536087, -0.008813598193228245, 0.01293659582734108, 0.01133627351373434, 0.014970502816140652, 0.0017244853079319, -0.012274393811821938, 0.03806086629629135, 0.009515216574072838, 0.021080108359456062, -0.0035751042887568474, -0.025683991611003876, -0.04405222088098526, -0.007154150400310755, 0.02046520635485649, 0.008198695257306099, -0.003713063197210431, -0.023476649075746536, 0.00745765957981348, -0.007296050898730755, -0.004706366453319788, -0.0011233789846301079, 0.01076867152005434, 0.0014101362321525812, 0.01019318588078022, 0.005924345925450325, 0.006503772921860218, 0.013630331493914127, 0.010571587830781937, 0.005427694413810968, 0.0008523884462192655, 0.0028931936249136925, -0.007765111047774553, -0.006346105597913265, 0.0007301963632926345, 0.015735188499093056, -0.017816396430134773, 0.01373281516134739, 0.025021787732839584, -0.0031001318711787462, -0.02861660160124302, -0.015222770161926746, 0.04682716727256775, -0.005451344419270754, -0.001055384986102581, -0.020764773711562157, -0.021395443007349968, -0.01372493151575327, -0.009010681882500648, 0.018604733049869537, 0.009191999211907387, -0.027749432250857353, 0.024548787623643875, 0.02481682039797306, -0.028931936249136925, -0.0077454023994505405, -0.015948040410876274, 0.005916462745517492, -0.0026586635503917933, -0.025116389617323875, 0.0008863854454830289, -0.004706366453319788, 0.01271586213260889, -0.01372493151575327, 0.005415868945419788, -0.01819479838013649, -0.02752869762480259, -0.011667374521493912, 0.0067718070931732655, -0.027985932305455208, -0.021206241101026535, -0.006901882588863373, 0.004446215927600861, 0.006689032074064016, -0.0022231079638004303, -0.012053659185767174, -0.01925116777420044, 0.011746208183467388, -0.00365787954069674, 0.011367807164788246, 0.02155311033129692, 0.0038254009559750557, -0.003336632624268532, -0.023492416366934776, -0.01407179981470108, -0.03686259686946869, -0.019487669691443443, -0.024469953030347824, 0.01127320621162653, -0.010295669548213482, 0.010618887841701508, 0.009743834845721722, 0.027686364948749542, 0.01707535982131958, -0.012510893866419792, -0.007571968249976635, -0.01868356578052044, 0.00745765957981348, -0.03629499673843384, 0.018825465813279152, -0.007765111047774553, -0.020638639107346535, 0.0006030771182850003, -0.01127320621162653, 0.02043367177248001, 0.01701229438185692, -0.021758077666163445, -0.019645337015390396, -0.0135120814666152, 0.009255066514015198, -0.015411971136927605, -0.006945241242647171, 0.029452238231897354, -0.03188031166791916, -0.007244809065014124, 0.01936153508722782, 0.011249556206166744, -0.03509672358632088, 0.006113546434789896, 0.006480122916400433, 0.004584174603223801, 0.0331101156771183, -0.0015944098122417927, 0.03657879680395126, -0.030477074906229973, 0.01327558048069477, -8.483852070639841e-06, -0.026866495609283447, -0.032794781029224396, 0.01099728886038065, -0.023523949086666107, -0.0005173455574549735, -0.01487590279430151, 0.0061884387396276, -0.0002722223289310932, 0.023539716377854347, 0.004513224121183157, 0.023366283625364304, -0.020622873678803444, 0.0024517253041267395, 0.01155700720846653, 0.020749006420373917, 0.024485720321536064, 0.005281852092593908, -0.006397347431629896, -0.018431298434734344, 0.020654406398534775, 0.03471832349896431, -0.009184115566313267, 0.017800629138946533, 0.010981522500514984, -0.002796622458845377, 0.03025634028017521, 0.01923540234565735, -0.0181001964956522, -0.020575573667883873, -0.014986270107328892, 0.0053133852779865265, 0.0013450984843075275, 0.00033504285966046154, -0.007386709563434124, 0.0231297817081213, -0.014268883503973484, -0.003988980781286955, -0.0149310864508152, -0.013717048801481724, -0.011265323497354984, -0.013929898850619793, 0.00830117892473936, -0.007836061529815197, 0.0022979998029768467, 0.02819089964032173, -0.005743028596043587, 0.0146472854539752, -0.019093500450253487, -0.004363440442830324, 0.009594050236046314, -0.01765872910618782, -0.0006705783889628947, -0.02259371243417263, 0.027891332283616066, 0.029357636347413063, 0.007000424899160862, -0.022814447060227394, -0.00717385858297348, 0.005230610258877277, -0.012337460182607174, -0.0031040734611451626, -0.027717897668480873, -0.026220059022307396, 0.006555014755576849, 0.002826184965670109, -0.010918455198407173, -0.00784788653254509, 0.005573536269366741, 0.002191574312746525, -0.013086379505693913, -0.0021166824735701084, 0.01652352511882782, 0.008419429883360863, -0.0012357168598100543, -0.0006873305537737906, 0.004339790437370539, 0.014434434473514557, -0.021158941090106964, -0.010059168562293053, 0.01213249284774065, 0.015317371115088463, -0.026141226291656494, 0.01400873251259327, 0.013393830507993698, -0.0069767748937010765, 0.017769096419215202, -0.008813598193228245, 0.0225621797144413, -0.017343394458293915, -0.022420279681682587, 0.005936170928180218, -0.006101721432060003, 0.005443460773676634, 0.011028822511434555, 0.020717473700642586, 0.0016476224409416318, -0.008403663523495197, 0.00783211924135685, -0.014734001830220222, 0.00415453128516674, -0.003413495374843478, -0.0006528408266603947, 0.0007986830314621329, -0.007524668239057064, 0.008072561584413052, 0.06912130862474442, -0.0024931130465120077, 0.01646045781672001, -0.0026862553786486387, -0.003500212449580431, -0.022388745099306107, 0.007473426405340433, 0.006369756069034338, 0.008403663523495197, -0.0046866582706570625, -0.008482496254146099, -0.020244471728801727, 0.01106035616248846, 0.003397728782147169, -0.00040205143159255385, 0.006495889741927385, 0.019534969702363014, 0.016255490481853485, -0.013543614186346531, 0.016744259744882584, 0.008711114525794983, 0.004481690935790539, -0.02035483904182911, -0.025494789704680443, 0.0018959484295919538, -0.005502586252987385, -0.0019767528865486383, 0.01374069880694151, -0.004312198609113693, 0.024469953030347824, -0.0066141402348876, 0.0022447870578616858, -0.022183777764439583, -0.0242649856954813, -0.023350516334176064, 0.03139154613018036, 0.006204205099493265, 0.014268883503973484, -0.004371323622763157, 0.011990592814981937, -0.011754091829061508, 0.013354414142668247, 0.014166399836540222, 0.03929067403078079, 0.005616894923150539, 0.00400868896394968, 0.003133636200800538, -0.008104095235466957, 0.010981522500514984, 0.0004978835349902511, -0.015530222095549107, 0.0011243644403293729, 0.0060071214102208614, 0.007974020205438137, 0.005609011743217707, -0.010011868551373482, -0.01994490437209606, -0.008080445230007172, 0.0038096343632787466, -0.004126939456909895, 0.0034844456240534782, -0.02487988770008087, -0.03205374628305435, -0.0373355969786644, -0.0009942889446392655, -0.012818345800042152, 0.0010455307783558965, -0.006854582577943802, 0.004592057783156633, -0.026141226291656494, -0.008080445230007172, 0.016744259744882584, 0.021679243072867393, -0.019692637026309967, -0.0067718070931732655, 0.010729254223406315, -0.0006508700316771865, 0.01925116777420044, 0.00201025721617043, 0.015120286494493484, 0.008648047223687172, -0.0040520476177334785, 0.0034213787876069546, -0.012581844814121723, 0.00438709044829011, -0.002966114552691579, 0.004848266951739788, -0.02035483904182911, 0.009578283876180649, -0.02084360644221306, -0.0022428163792937994, 0.016949227079749107, -0.016744259744882584, 0.0066141402348876, 0.019061967730522156, 0.006168730091303587, 0.004505340941250324, -0.03323625028133392, 0.010547936893999577, -0.013188863173127174, 0.016838859766721725, 0.01184080820530653, -0.006692973896861076, 0.01821056380867958, -0.00784000288695097, -0.015948040410876274, 0.017311861738562584, -0.0034903581254184246, -0.008238112553954124, 0.016838859766721725, -0.010563704185187817, -0.0008676624274812639, -0.003780071623623371, 0.0033326910343021154, -0.027891332283616066, 0.004706366453319788, 0.02585742436349392, -0.013992966152727604, -0.018320931121706963, -0.022909047082066536, -0.008640163578093052, -0.004359498620033264, -0.008182928897440434, -0.009570400230586529, -0.007481309585273266, 0.012747394852340221, -0.030571674928069115, -0.0038963512051850557, 0.012234976515173912, -0.01658659242093563, 0.012345343828201294, 0.031706877052783966, -0.006294863764196634, -0.014497501775622368, 0.010855388827621937, 0.003606637706980109, 0.013961432501673698, -0.01921963505446911, 0.04241248220205307, -0.0041624149307608604, 0.017248794436454773, -0.003642112948000431, 0.015766723081469536, 0.0007518755737692118, -0.0030035607051104307, 0.0013283463194966316, -0.02160041034221649, -0.01710689440369606, 0.012171910144388676, 0.019487669691443443, 0.02820666693150997, -0.027118762955069542, -0.009846318513154984, -0.003025239799171686, -0.002315737307071686, -0.009901502169668674, -0.01661812514066696, -0.005616894923150539, 0.0019028462702408433, 0.018431298434734344, 0.013693398796021938, 0.015703655779361725, -0.009436383843421936, 0.00016973861784208566, -0.009168349206447601, 0.00963346753269434, 0.0042964317835867405, 0.01920386776328087, 0.025494789704680443, -0.0004872902645729482, 0.00013426349323708564, 0.0007691204082220793, -0.0003402162983547896, -0.0040343101136386395, -0.0063342805951833725, -0.00394759327173233, -0.011604308150708675, 0.018573198467493057, -0.003931826446205378, 0.0166338924318552, 0.021316608414053917, -0.005017759278416634, 0.027985932305455208, 0.008608630858361721, -0.00882936455309391, -0.023318981751799583, 0.00911316554993391, -0.012195560149848461, 5.459843669086695e-05, 0.011225906200706959, 0.0016288994811475277, 0.04395762085914612, -0.015309487469494343, 0.007146266754716635, -0.012518777512013912, 0.0078005860559642315, 0.011990592814981937, 0.007784819230437279, -0.002394570969045162, -0.005139951594173908, -0.006247563753277063, -0.0032380905468016863, 0.013985082507133484, -0.0008987031760625541, 0.016089940443634987, -0.011714674532413483, -0.0060898964293301105, -0.011068238876760006, -0.00789518654346466, 0.005065059754997492, -0.04291701689362526, -0.01299177948385477, 0.005258202087134123, -0.007296050898730755, -0.015735188499093056, 0.013535731472074986, 0.016042640432715416, 0.011493940837681293, 0.004631474614143372, 0.019125035032629967, -0.004280664958059788, -0.009294482879340649, -0.007063491735607386, 0.008135628886520863, -0.0031967030372470617, 0.0022566120605915785, 0.00646829791367054, 0.030682042241096497, 0.02035483904182911, -0.042633216828107834, 0.016791559755802155, 0.0019274818478152156, -0.009160465560853481, 0.0007676422828808427, 0.007903069257736206, 0.007784819230437279, 0.017233027145266533, 0.005999237764626741, 0.017201494425535202, -0.027402563020586967, -0.005573536269366741, 0.014095449820160866, 0.0025896842125803232, -0.002899106126278639, 0.013307114131748676, -0.013985082507133484, 0.005143893416970968, 0.023445116356015205, -0.013385947793722153, -2.602125096018426e-05, 0.009184115566313267, -0.012116726487874985, -0.009728067554533482, 0.0071659754030406475, 0.0004860585031565279, 0.010555820539593697, -0.0018417502287775278, 0.0006405230960808694, -0.01710689440369606, -0.016334325075149536, -8.228258229792118e-05, -0.005451344419270754, 0.005766678601503372, -0.006787573918700218, 0.025210989639163017, 0.022309912368655205, -0.027780964970588684, 0.016089940443634987, 0.0014111216878518462, 0.016712725162506104, -0.011509707197546959, 0.0032814492005854845, 0.01764296181499958, -0.0002272625279147178, -0.003358311951160431, 0.00032642041333019733, -0.02084360644221306, -0.014142749831080437, -0.009294482879340649, 0.009665001183748245, -0.0031040734611451626, -0.0037505091167986393, -0.004946809262037277, -0.028348566964268684, 0.008111978881061077, -0.0017954355571419, -0.022845981642603874, 0.015277953818440437, -0.005285793915390968, 0.0017353248549625278, 0.028553534299135208, 0.0012741482350975275, 0.012581844814121723, 0.007678393740206957, 0.005585361272096634, -0.014765535481274128, 0.009735951200127602, 0.00467483326792717, 0.021174708381295204, 0.016728492453694344, 0.004477749112993479, 0.0034391162917017937, -0.004186064936220646, -0.005735145416110754, 0.02268831431865692, 0.011438757181167603, 0.029925238341093063, 0.005289735272526741, -0.002353183226659894, 0.0012731628958135843, 0.0010277932742610574, 0.008916081860661507, -0.012542427517473698, 0.006314572412520647, -0.023492416366934776, -0.00938908290117979, 0.002262524561956525, 0.01162795815616846, -0.012471477501094341, 0.02084360644221306, -0.00801737792789936, -0.004327965434640646, 0.0025542089715600014, 0.018320931121706963, 0.00938908290117979, -0.007674452383071184, 0.018636265769600868, 0.0006961993640288711, 0.01704382710158825, -0.003640142036601901, -0.0038766427896916866, -0.015522338449954987, -0.010019752196967602, -0.0067757489159703255, -0.003039035713300109, 0.006953124422580004, -0.007544376887381077, -0.004205773118883371, -0.0017836104379966855, -0.000685852428432554, -0.02484835498034954, 0.0008282456547021866, 0.01047698687762022, -0.035601258277893066, 0.0024517253041267395, 0.018462831154465675, -0.003600725205615163, -0.009617701172828674, 0.0027867681346833706, 0.002601509215310216, -0.013527847826480865, -0.006673265248537064, 0.013575147837400436, 0.020149871706962585, -0.004749725107103586, -0.004950751084834337, 0.01977146975696087, -0.006070188246667385, 0.00048236316069960594, 0.023318981751799583, -0.01822633109986782, 0.026062391698360443, -0.021048573777079582, -0.01713842712342739, 0.009980334900319576, 0.003693354781717062, -0.005739086773246527, -0.010398153215646744, -0.027118762955069542, 0.000861257198266685, -0.007654743734747171, -0.045502759516239166, -5.749310730607249e-05, -0.0030745109543204308, -0.004347673617303371, -0.003851021872833371, -0.0044974577613174915, -0.006192380096763372, 0.0061963219195604324, -0.012755278497934341, 0.023429349064826965, -0.014568451792001724, -0.018305165693163872, 0.013110029511153698, 0.012179792858660221, 0.009160465560853481, 0.01605052314698696, 0.007946427911520004, -0.017516829073429108, -0.0036322586238384247, -0.021080108359456062, 0.005159659776836634, -0.01156489085406065, -0.01929846778512001, 0.003695325693115592, -0.006909766234457493, -0.023933885619044304, 0.020528271794319153, 0.011091888882219791, -0.015277953818440437, 0.009034331887960434, 0.0015254303580150008, 0.01327558048069477, 0.015703655779361725, 0.00029464063118211925, -0.031218109652400017, 0.02087514102458954, 0.030445540323853493, 0.011730441823601723, -0.004631474614143372, 0.01827363111078739, 0.01709112711250782, -0.0063934060744941235, 0.006507714744657278, 0.011982709169387817, 0.005061117932200432, 0.017327627167105675, -0.007627151906490326, -0.0035928417928516865, 0.0011913729831576347, 0.0146472854539752, -0.006216030102223158, 0.023965418338775635, -0.010059168562293053, 0.011407223530113697, 0.015782488510012627, 0.019550735130906105, -0.010098585858941078, -0.009594050236046314, 0.013094263151288033, -0.004186064936220646, -0.004911334253847599, -0.002863630885258317, 0.01608205772936344, -0.024927187711000443, -0.002985822968184948, 0.006491947919130325, -0.010027635842561722, -0.009262949228286743, 0.008632280863821507, -0.021080108359456062, -0.0005611967644654214, -0.0008903270936571062, -0.007686277385801077, 0.019724169746041298, 0.01459998544305563, 0.005735145416110754, 0.01652352511882782, -0.0083169462159276, 0.010090702213346958, -0.011793508194386959, 0.03320471569895744, 0.008726880885660648, -0.005431635770946741, -0.016058407723903656, -0.0029326104559004307, -0.009515216574072838, 0.005597186274826527, 0.002745380625128746, -0.011588540859520435, 0.010571587830781937, 0.008135628886520863, 0.011013055220246315, 0.006961008068174124, -0.003600725205615163, -0.009467916563153267, 0.014197933487594128, 0.0186677984893322, -0.004115114454180002, 0.0006700857193209231, -0.003951534628868103, 0.032179880887269974, 0.029941005632281303, 0.0018230272689834237, -0.01207730919122696, 0.02046520635485649, 0.0010632683988660574, 0.01292871218174696, -0.010374503210186958, -0.010642537847161293, -0.04373688995838165, -0.018841233104467392, -0.02819089964032173, 0.0011815187754109502, 0.029594138264656067, 0.005534119438380003, 0.0140796834602952, 0.020827841013669968, 0.014237350784242153, 0.00968076754361391, 0.004974401090294123, -0.0012524690246209502, 0.01515970379114151, 0.019046200439333916, 0.004371323622763157, -0.009278716519474983, -0.009869968518614769, 0.026156991720199585, -0.0041624149307608604, -0.0047339582815766335, 0.027102995663881302, 0.01715419441461563, 0.01049275416880846, 0.001775727141648531, -0.0166338924318552, 0.005427694413810968, 0.006992541253566742, 0.0016042640199884772, -0.002315737307071686, -0.0013697340618818998, 0.02037060633301735, -0.012510893866419792, -0.002357125049456954, 0.01647622510790825, -0.002832097467035055, 0.008435196243226528, 0.014331950806081295, 0.0038391968701034784, 0.014458084478974342, 0.009042215533554554, -0.0029464063700288534, -0.02487988770008087, 0.003340574214234948, 0.00801737792789936, -0.002142303390428424, 0.020685939118266106, 0.006740273907780647, 0.009767484851181507, 0.0014810864813625813, -0.010027635842561722, -0.0137958824634552, 0.006231796927750111, 0.008245996199548244, -0.012763162143528461, 0.003971243277192116, 0.020685939118266106, 0.006842757575213909, 0.025526324287056923, 0.027780964970588684, -0.015514454804360867, 0.007713868748396635, 0.01491531915962696, -0.028884636238217354, -0.030634742230176926, -0.007658685557544231, 0.004923159256577492, -0.005624778103083372, -0.003417437197640538, -0.0060465382412076, 0.009814784862101078, -0.01925116777420044, 0.013953549787402153, 0.03083970956504345, 0.021395443007349968, 0.03645266219973564, -0.007343350909650326, 0.005009876098483801, 0.01759566180408001, 0.014623635448515415, -0.004426507279276848, 0.0023709209635853767, -0.020607106387615204, -0.0014268883969634771, 0.02806476689875126, -0.012116726487874985, 0.00830906257033348, 0.0033839328680187464, 0.011959059163928032, -0.0035849586129188538, -0.0047339582815766335, -0.008853014558553696, 0.01401661615818739, -0.014560568146407604, 0.01543562114238739, 0.02655116096138954, -0.0019008754752576351, -0.01099728886038065, -0.010256253182888031, 0.021821143105626106, 0.002530558966100216, 0.011659490875899792, -0.01128108985722065, -0.016728492453694344, -0.019014667719602585, -0.001038632821291685, 0.005549886263906956, 0.010871155187487602, -0.007966136559844017, 0.008703230880200863, -0.010130119509994984, 0.010082818567752838, -0.021206241101026535, 0.00995668489485979, 0.008655930869281292, -0.013646097853779793, -0.0034942999482154846, 0.0017855813493952155, -0.0007587735308334231, 0.0014209758955985308, -0.030445540323853493, 0.013125796802341938, 0.01977146975696087, 0.002568004885688424, -0.0031671402975916862, 0.016807327046990395, -0.00316319870762527, 0.010737137869000435, -0.00911316554993391, -0.0009474814869463444, -0.009893618524074554, -0.005183309782296419, 0.010863271541893482, 0.0342453196644783, -0.003395757870748639, 0.011793508194386959, -0.013362296856939793, 0.018320931121706963, -0.010051285848021507, 0.013756465166807175, 0.015530222095549107, 0.003606637706980109, 0.0017461645184084773, -0.0010612974874675274, 0.016760025173425674, 0.0019442340126261115, -0.020496739074587822, -0.004848266951739788, -0.008529797196388245, 0.017390694469213486, -0.010547936893999577, 0.004371323622763157, 0.00179346464574337, 0.018320931121706963, 0.000491724640596658, 0.015262187458574772, -0.00024623185163363814, -0.010634654201567173, 0.016901927068829536, 0.00046832094085402787, 0.0013805736089125276, 0.02979910559952259, -0.020685939118266106, 0.011076122522354126, 0.017248794436454773, 0.00646829791367054, -0.013898366130888462, 0.017311861738562584, 0.001601307769306004, 0.014276767149567604, 0.011651608161628246, -0.01545138843357563, 0.0075483182445168495, 0.006156905088573694, -0.005549886263906956, 0.00934966653585434, -0.005841570906341076, -0.004714250098913908, -0.01821056380867958, 0.013236163184046745, -0.010918455198407173, -0.009499450214207172, -0.030098672956228256, 0.0030823941342532635, 0.017942531034350395, 0.013835298828780651, -0.008214462548494339, -0.00035154863144271076, 0.011486057192087173, -0.006436764262616634, -0.008687464520335197, -0.00855344720184803, 0.004316140431910753, -0.017359161749482155, 0.013141563162207603, -0.011170722544193268, 0.009381200186908245, -0.018920067697763443, -0.012037892825901508, -0.023334749042987823, -0.030177507549524307, -0.007473426405340433, 0.01825786381959915, 0.010516404174268246, -0.019534969702363014, -1.6074665836640634e-05, -0.0035731333773583174, -0.006125371903181076, -0.010051285848021507, -0.005206960253417492, 0.0014347716933116317, -0.0153804374858737, -0.011604308150708675, -0.011415107175707817, -0.015719423070549965, 0.013102146796882153, -0.010981522500514984, -0.008695347234606743, 0.01106035616248846, -0.0123768774792552, -0.002694138791412115, -0.03411918878555298, 0.002916843630373478, -0.006346105597913265, 0.003906205529347062, 0.0019264963921159506, -0.017248794436454773, 0.0026074217166751623, 0.021805377677083015, -0.00849826354533434, -0.00703195808455348, 0.004994109272956848, 0.009806901216506958, -0.00046930633834563196, -0.020291771739721298, -0.006692973896861076, -0.025526324287056923, 0.027244895696640015, -0.010563704185187817, -0.005013817921280861, -0.01077655516564846, 0.022483346983790398, 0.0024201918859034777, 0.006689032074064016, -0.002022082218900323, 0.003145461203530431, -0.006267272401601076, 0.0017707999795675278, 0.021647710353136063, -0.010965755209326744, -0.0015914535615593195, 0.013133679516613483, -0.012250743806362152, -0.010547936893999577, 0.011422990821301937, -0.009365432895720005, 0.004264898598194122, 0.01991336978971958, -0.011825041845440865, -0.0041032894514501095, 0.00344699970446527, -0.030019840225577354, -0.019534969702363014, -0.00481673376634717, -0.01240841019898653, 0.010949988849461079, -0.024012718349695206, -0.012353227473795414, -0.0028754561208188534, 0.022136477753520012, 0.006164788268506527, -0.005723320413380861, 0.00882148090749979, 0.009176232852041721, 0.01575883850455284, -0.018037131056189537, -0.007883361540734768, 0.002887281123548746, -0.0038194884546101093, 0.011509707197546959, 0.029010768979787827, 0.03156497702002525, 0.02260947972536087, -0.0077493442222476006, -0.020496739074587822, 0.015719423070549965, 0.020181404426693916, 0.004560524597764015, 0.00878206454217434, -0.010516404174268246, 0.030429774895310402, 0.023035181686282158, -0.0020358781330287457, -0.00731970090419054, 0.0013460839400067925, -0.005474994424730539, -0.014213699847459793, 0.009444266557693481, 0.0053764525800943375, -0.014245233498513699, 0.027434097602963448, -0.011249556206166744, 0.004095406271517277, -0.045565828680992126, -0.0006705783889628947, -0.0005345904501155019, -0.020812073722481728, -0.0016328411875292659, 0.012897178530693054, 0.018935833126306534, -0.02746563032269478, -0.01133627351373434, 0.00934178289026022, -0.019156567752361298, 0.006243621930480003, 0.016964992508292198, 0.01538832113146782, 0.018983133137226105, -0.005175426602363586, -0.018399765715003014, -0.02257794700562954, 0.01099728886038065, 0.003129694378003478, -0.012345343828201294, -0.015002036467194557, 0.006677207071334124, 0.02089090645313263, -0.006129313260316849, -0.0013490401906892657, -0.009940918534994125, 0.0019028462702408433, 0.016137240454554558, 0.023571250960230827, -0.01488378643989563, 0.007138383574783802, 0.005400102585554123, 0.016318557783961296, -0.0077966442331671715, -0.010264135897159576, 0.002905018627643585, 0.0036775879561901093, -0.03692566230893135, -0.0032952448818832636, 0.014946852810680866, 0.0007380797178484499, -0.03686259686946869, -0.008900314569473267, 0.013070613145828247, -0.0013667778111994267, 0.0038096343632787466, 0.0008716041338630021, 0.00769021874293685, -0.0020516447257250547, -0.010019752196967602, 0.017233027145266533, -0.0011716645676642656, -0.0016417099395766854, 0.00797796156257391, -0.00467089144513011, -0.0022467579692602158, -0.004765491932630539, -0.004663008265197277, -0.030114440247416496, 0.000316319870762527, -0.0009553648415021598, 0.0005779489292763174, 0.012755278497934341, -0.004592057783156633, 0.013575147837400436, -0.02861660160124302, -0.0043003736063838005, 0.016870392486453056, 0.01769026182591915, 0.005112359765917063, 0.00826176255941391, -0.002670488553121686, 0.021931510418653488, -0.009869968518614769, -0.006066246423870325, 0.037146396934986115, -0.007642918732017279, -0.005061117932200432, 0.003920001443475485, 0.018935833126306534, 0.008198695257306099, -0.0004173254419583827, -0.010461220517754555, 0.0029424645472317934, 0.003606637706980109, -0.03342545032501221, 0.008758414536714554, -0.022436046972870827, -0.027670597657561302, 0.0004175717767793685, 0.014434434473514557, 0.016042640432715416, 0.0018131730612367392, -0.004895567428320646, 0.014126983471214771, -0.006850640755146742, 0.009310249239206314, -0.005908579099923372, 0.016854627057909966, 0.020165637135505676, 0.020780541002750397, -0.004010660108178854, -0.011154956184327602, 0.0063303392380476, -0.013717048801481724, -0.005171484779566526, 0.003835255280137062, -0.009144699200987816, 0.023445116356015205, 0.021915744990110397, -0.011895991861820221, -0.003216411452740431, -0.01761142909526825, 0.023823518306016922, 0.010035518556833267, -0.008813598193228245, -0.01769026182591915, 0.0065313647501170635, -0.017217261716723442, 0.004710308276116848, -0.015254303812980652, 0.006712682079523802, 0.008068620227277279, -0.03342545032501221, -0.007189625408500433, -0.0021068283822387457, -0.0012672502780333161, -0.012786812148988247, -0.0026133342180401087, 0.009830551221966743, 0.00660625658929348, 0.014852252788841724, -0.00538039393723011, 0.017437994480133057, -0.004454099107533693, -0.002518733963370323, -0.007910952903330326, -0.013204630464315414, 0.002903047716245055, 0.007765111047774553, 0.0123768774792552, -0.006945241242647171, 0.001000201446004212, -0.024422653019428253, -0.011422990821301937, -0.004229423124343157, -0.024564553052186966, 0.022987881675362587, -0.011320507153868675, 0.006953124422580004, 0.001863429555669427, -0.013330764137208462, -0.003062685951590538, -0.0007701058639213443, -0.006172671914100647, -0.009089515544474125, 0.03575892746448517, -0.002191574312746525, -0.01811596378684044, -0.00855344720184803, -0.005687844939529896, -0.019093500450253487, 0.004119056276977062, -0.009097399190068245, -0.024533020332455635, 0.006440706085413694, 0.029452238231897354, 8.148192864609882e-05, 0.0015254303580150008, 0.0035415999591350555, -0.022893281653523445, 0.003340574214234948, 0.005632661748677492, -0.005995296407490969, -0.004032339435070753, 0.00031188546563498676, -0.01406391616910696, -0.004730016924440861, -0.0008908198215067387, 0.027386797592043877, 0.00910528190433979, -0.0032656823750585318, -0.006357931066304445, 0.008293296210467815, 0.009467916563153267, 0.005250318441540003, 4.988689397578128e-05, 0.009278716519474983, -0.001370719401165843, -0.0026586635503917933, 0.009933034889400005, 0.023618550971150398, 0.014261000789701939, -0.025636691600084305, -0.014789185486733913, -0.01431618444621563, 0.00910528190433979, 0.0013500256463885307, -0.004521107766777277, 0.005884929094463587, -0.0026862553786486387, 0.003961388953030109, 0.0008114934898912907, -0.018951600417494774, -0.0012731628958135843, 0.011115538887679577, -0.018998900428414345, -0.013701281510293484, -0.012849878519773483, 0.0017530624754726887, -0.013007545843720436, -0.025479024276137352, -0.0018230272689834237, -0.005155718419700861, 0.00646435609087348, -0.010256253182888031, -0.01207730919122696, 0.014529034495353699, 0.001407179981470108, 0.004308256786316633, -0.008151395246386528, -0.013401714153587818, -0.027386797592043877, 0.01653929241001606, -0.011084006167948246, -0.025542089715600014, -0.007674452383071184, 0.01047698687762022, 0.0041032894514501095, -0.005254260264337063, -0.0018565315986052155, -0.00784788653254509, 0.014797069132328033, 0.010910571552813053, 0.018320931121706963, 0.007808469235897064, 0.016886159777641296, 0.007493135053664446, 0.008648047223687172, -0.008387896232306957, -0.010863271541893482, -0.0018368231831118464, -0.009475800208747387, -0.010272019542753696, -0.005857337266206741, -0.004010660108178854, -0.011903875507414341, -0.011470290832221508, -0.0012889296049252152, 0.015884973108768463, -0.005723320413380861, -0.015569638460874557, 0.004781258758157492, -0.03705179691314697, 0.003324807621538639, 0.005001992918550968, 0.01874663308262825, 0.017485294491052628, -0.0004168327141087502, 0.00048384128604084253, -0.003476562211290002, -0.0071659754030406475, -0.022215312346816063, 0.012510893866419792, -0.013180979527533054, 0.018368231132626534, -0.0053685689345002174, -0.011943291872739792, 0.0030823941342532635, -0.01544350478798151, 0.018967367708683014, -0.0016988643910735846, -0.005502586252987385, -0.008119862526655197, 0.01701229438185692, 0.017958296462893486, 0.0441468246281147, -0.006870349403470755, 0.005892812740057707, -0.011754091829061508, -0.010697721503674984, -0.0034312328789383173, 0.021253541111946106, -0.011903875507414341, -0.0038983221165835857, 0.003884526202455163, 0.0042451899498701096, -0.015948040410876274, 0.02491142228245735, -0.007757227402180433, 0.018857000395655632, -0.008931848220527172, -0.0035593376960605383, 0.009554633870720863, -0.0010268078185617924, -0.01879393309354782, -0.0022979998029768467, -0.012471477501094341, -0.03254251554608345, 0.003096190048381686, -0.004517165943980217, -0.006815165746957064, -0.024643387645483017, -0.00010408500384073704, -0.0026566926389932632, -0.005975587759166956, -0.007071374915540218, -0.00997245218604803, -0.004635416436940432, -0.009097399190068245, 0.03266865015029907, 0.005005934275686741, 0.004190006293356419, 0.0025581507943570614, -0.007426126394420862, -0.003642112948000431, 0.004946809262037277, -0.012637028470635414, 0.0009302366524934769, 0.00632639741525054, 0.008514029905200005, 0.031107744202017784, -0.0004163400153629482, -0.003198673715814948, 0.018021363765001297, 0.008868781849741936, 0.011186489835381508, -0.008060736581683159, 0.0030153857078403234, -0.014040266163647175, 0.007378825917840004, -0.00632639741525054, -0.010918455198407173, 0.0028222433757036924, 0.0022566120605915785, 0.023476649075746536, 0.0031553152948617935, -0.01761142909526825, -0.0038056925404816866, -0.00021900962747167796, -0.011533357203006744, -0.020780541002750397, 0.010011868551373482, 0.007508901413530111, -0.010138002224266529, 0.009988218545913696, -0.007063491735607386, 0.013937782496213913, -0.004623591434210539, -0.010216835886240005, -0.004509282764047384, 0.023334749042987823, 0.011438757181167603, 0.016192423179745674, -0.0035455417819321156, -0.0023098248057067394, -0.007678393740206957, 0.03478138893842697, 0.008853014558553696, 0.0009287584689445794, 0.0007139369263313711, -0.010981522500514984, 0.011832925491034985, 0.007788761053234339, 0.0016259432304650545, -0.011076122522354126, 0.0017372957663610578, -0.01660235784947872, -0.010051285848021507, -0.002059528138488531, 0.014371367171406746, 0.020685939118266106, -0.00207726564258337, -0.007197508588433266, 0.0023985125590115786, -0.0219945777207613, 0.02801746502518654, -0.004718191921710968, -0.01491531915962696, -0.01042180322110653, -0.012952362187206745, 0.0065865484066307545, -0.003921972122043371, 0.011966942809522152, -0.004568407777696848, -0.003322836710140109, 0.004694541450589895, 0.005750912241637707, -0.01098940521478653, 0.002694138791412115, -0.010240485891699791, 0.0016801413148641586, -0.012952362187206745, 0.0017008351860567927, 0.01701229438185692, -0.0021679243072867393, -0.0033208660315722227, -0.003533716779202223, -0.028285499662160873, -0.01652352511882782, -0.011422990821301937, 0.01299177948385477, -0.012455711141228676, -0.025163689628243446, 0.00675209891051054, 0.007942486554384232, -0.005277910269796848, 0.02210494503378868, -0.006353989243507385, -0.02481682039797306, -0.005191193427890539, 0.01435560081154108, 0.020023737102746964, -0.0025955967139452696, -0.0005592259112745523, 0.0012327606091275811, -0.0017432082677260041, 0.02197881042957306, 0.004946809262037277, 0.021127408370375633, 0.0033169242087751627, -0.002357125049456954, 0.017816396430134773, 0.015545988455414772, -0.003852992784231901, -0.005340977106243372, -0.020575573667883873, 0.0071068499237298965, 0.003334661712870002, -0.015033570118248463, -0.020086804404854774, -0.002315737307071686, 0.025447489693760872, -0.002702021971344948, 0.0006671294686384499, 0.05795847252011299, 0.003131665289402008, -0.019125035032629967, 0.032731715589761734, -0.005877045914530754, -0.004130881279706955, 0.007481309585273266, 0.0004956663469783962, 0.020244471728801727, -0.016287025064229965, 0.0009346710285171866, 0.010366619564592838, 0.0010070994030684233, 0.011927525512874126, -0.005908579099923372, -0.01595592312514782, 0.003669704543426633, -0.010051285848021507, 0.01076078787446022, 0.005392218939960003, 0.00967288389801979, 0.011588540859520435, 0.011651608161628246, 0.010224719531834126, -0.007508901413530111, -0.0028774267993867397, -0.04471442475914955, 0.010130119509994984, -0.008947614580392838, -0.012487243860960007, -0.022956347092986107, 0.01660235784947872, 0.014497501775622368, -0.009586167521774769, 0.00996456854045391, 0.007812411058694124, 0.03531745821237564, 0.019014667719602585, -0.03515979275107384, -0.01270797848701477, -0.0020358781330287457, 0.022830214351415634, -0.01350419782102108, 0.0009410762577317655, 0.005983471404761076, 0.04004747420549393, 0.003695325693115592, -0.0064722397364676, 0.0077454023994505405, 0.0007637006347067654, -0.0016141182277351618, -0.003618462709710002, -0.014970502816140652, 0.00036534451646730304, -0.0025955967139452696, -0.008175045251846313, -0.0020171550568193197, -0.018383998423814774, 0.0009548721136525273, 0.009712301194667816, 0.003689412958920002, 0.0008366217371076345, 0.008868781849741936, -0.01048487052321434, 0.021899977698922157, -0.0313284769654274, -0.02656692825257778, 0.0011095830705016851, 0.05133644863963127, 0.027859797701239586, 0.007311817724257708, -0.0019639423117041588, 0.015238537453114986, -0.04692176729440689, 0.007575910072773695, -0.004517165943980217, -0.010350853204727173, 0.02084360644221306, 0.0031868487130850554, -0.0129444794729352, 0.013125796802341938, 0.024485720321536064, -0.001351010985672474, -0.008380012586712837, -0.0020831781439483166, -0.0050690011121332645, -0.002073324052616954, 0.010949988849461079, -0.003342545125633478, 0.010177419520914555, -0.016964992508292198, -0.016712725162506104, 0.007398534566164017, -0.007974020205438137, -0.008569213561713696, -0.009586167521774769, 0.012613377533853054, 0.015561754815280437, 0.021332375705242157, -0.015262187458574772, -0.03512825816869736, 0.005987412761896849, 0.009996102191507816, 0.010618887841701508, -0.004698483273386955, 0.005845512263476849, 0.008395779877901077, 0.00043161402572877705, -0.008167162537574768, -0.015829788520932198, 0.000834158156067133, -0.012353227473795414, -0.013346530497074127, -0.0027985931374132633, 0.00878206454217434, 0.0033090407960116863, -0.018636265769600868, 0.018841233104467392, 0.017784863710403442, 0.010303553193807602, -0.013125796802341938, -0.014268883503973484, 0.0020171550568193197, 0.006905824411660433, -0.00309027754701674, 0.006176613736897707, -0.006456472910940647, 0.011265323497354984, -0.018541665747761726, -0.005833687260746956, -0.0014446259010583162, 0.014000849798321724, -0.008671697229146957, 0.01020106952637434, -0.0060938382521271706, 0.013401714153587818, 0.009097399190068245, -0.010666187852621078, -0.002530558966100216, -0.004655124619603157, 0.0021147115621715784, -0.025179455056786537, -0.012889295816421509, -0.011139189824461937, -0.02642502635717392, -0.0075522600673139095, -0.01756412908434868, 0.00509659294039011, -0.0032361198682338, 0.01270009484142065, 0.0056996699422597885, 0.010571587830781937, -0.006519539747387171, -0.02089090645313263, 0.01649199239909649, 0.011832925491034985, 0.010863271541893482, -0.0009223532397300005, -0.0066141402348876, 0.007587735075503588, 0.0011568833142518997, 0.019739937037229538, -0.0032794782891869545, 0.018588965758681297, -0.0013677631504833698, 0.013086379505693913, 0.017453761771321297, -0.00660625658929348, -0.0014564510202035308, 0.009199882857501507, 0.005908579099923372, 0.01821056380867958, 0.01928270235657692, -0.02744986303150654, -0.029657205566763878, -0.020607106387615204, -0.004627533257007599, 0.0004848267126362771, 0.0033208660315722227, -0.0006986628868617117, -0.010406036861240864, 0.004170298110693693, -0.0028183015529066324, 0.01575883850455284, -0.004134823102504015, 0.017485294491052628, 0.02656692825257778, -0.008600747212767601, -0.0018131730612367392, -0.007871536538004875, 0.01657082512974739, 0.015009920112788677, -0.015246420167386532, -0.006034713238477707, 0.0017284268978983164, 0.015735188499093056, -0.02365008369088173, 0.012274393811821938, 0.01816326379776001, -0.009499450214207172, -0.00393970962613821, 0.014497501775622368, -0.00023194326786324382, 0.004178181290626526, 0.03380385413765907, 0.013196746818721294, 0.031028909608721733, -0.0013648068998008966, -0.017926763743162155, 0.016665425151586533, 0.0049310424365103245, 0.004347673617303371, 0.010579470545053482, 0.016775792464613914, -0.017264561727643013, 0.010216835886240005, 0.015798255801200867, 0.0053173271007835865, 0.018021363765001297, 0.008963381871581078, -0.028522001579403877, 0.022341445088386536, -0.00717385858297348, -0.003407582873478532, -0.0352228581905365, 0.0035790461115539074, -0.011927525512874126, 0.0008415488409809768, -0.009814784862101078, 0.018068663775920868, -0.005281852092593908, -0.017201494425535202, 0.020071037113666534, 0.0016742288134992123, -0.020827841013669968, 0.013709165155887604, -0.024375353008508682, -0.017343394458293915, -0.0005730218254029751, 0.0051281265914440155, -0.016444692388176918, 0.014142749831080437, 0.010350853204727173, 0.03632652759552002, -0.0002744395169429481, -0.016074173152446747, -0.03746173158288002, 0.0032302073668688536, 0.004777316935360432, 0.008443079888820648, 0.032321780920028687, 0.0018043043091893196, 0.0003463751927483827, -0.005423752591013908, -0.015104520134627819, 0.014237350784242153, 0.02703992836177349, 0.011139189824461937, -0.026125459000468254, 0.026078158989548683, -0.014615751802921295, 0.0016220015240833163, -0.01652352511882782, 0.019692637026309967, -0.006677207071334124, -0.016681192442774773, -0.03206951171159744, -0.004414682276546955, -0.0063934060744941235, 0.01702805981040001, -0.0003089292149525136, 0.008663813583552837], "46cea481-4853-4b34-a148-91f2281b5148": [-0.001011496176943183, 0.00723692774772644, -0.014990519732236862, 0.02075386419892311, -0.04092557355761528, -0.06991694867610931, 0.010122239589691162, 0.05262691155076027, -0.030359439551830292, 0.015427136793732643, 0.03120356611907482, -0.004071454051882029, -0.0006890363292768598, -0.013797099702060223, -0.020710203796625137, 0.027317674830555916, -0.0408964641392231, 0.0023540938273072243, 0.008906988427042961, -0.034347210079431534, 0.08336475491523743, 0.020259032025933266, -0.06007850915193558, 0.02047734148800373, -0.01205790787935257, -0.01763932965695858, -0.011504859663546085, 0.007699014153331518, -0.0280744768679142, 0.02314070425927639, 0.027186689898371696, -0.004435301758348942, -0.0045808409340679646, 0.02666275016963482, 0.03853873535990715, 0.002252216450870037, 0.010442424565553665, 0.04759126156568527, -0.015398028306663036, -0.017813976854085922, -0.03693780303001404, 0.03262984752655029, -0.011868707835674286, 0.01931302808225155, -0.022543994709849358, -0.011963307857513428, -0.008150185458362103, -0.015063288621604443, 0.008157461881637573, 0.0397612601518631, 0.005130250472575426, -0.05393676087260246, -0.018236039206385612, 0.010456979274749756, 0.04031430929899216, -0.04529174417257309, 0.009969423525035381, 0.05064757913351059, -0.003867699531838298, -0.03524954989552498, 0.014262824319303036, -0.01425554696470499, 0.0019393075490370393, 0.014495686627924442, -0.030796056613326073, 0.01503418106585741, 0.022514887154102325, -0.0055814217776060104, -0.06846155971288681, -0.01242903247475624, 0.010849934071302414, 0.05903062969446182, -0.02878761850297451, 0.019735092297196388, -0.0027361337561160326, 0.00701861921697855, 0.02299516648054123, -0.0031145350076258183, 0.010471533052623272, 0.0027979877777397633, 0.01596563123166561, -0.006407355424016714, 0.023751968517899513, -0.004060538951307535, 0.0809779167175293, 0.02172897569835186, -0.032688066363334656, -0.04485512897372246, -0.024596095085144043, -0.041129328310489655, 0.004748210776597261, -0.001933849765919149, -0.0009960327297449112, -0.031407322734594345, -0.0028543840162456036, -0.003809483954682946, 0.017246374860405922, 0.0018683571834117174, 0.03088338114321232, -0.026298901066184044, -0.003427444025874138, 0.044826019555330276, -0.01396446954458952, 0.0022831433452665806, 0.004722741432487965, 0.019021950662136078, 0.019225705415010452, 0.0056432755663990974, -0.018832750618457794, 0.04206077754497528, 0.051025982946157455, -0.037316206842660904, -0.013651560060679913, 0.024174032732844353, -0.018876411020755768, -0.02979183755815029, -0.01846890151500702, -0.003980492241680622, -0.020928511396050453, -0.03318289667367935, 0.03626832365989685, 0.003200039267539978, 0.020710203796625137, 0.021656205877661705, -0.04133308306336403, 0.007517090532928705, -0.007145965937525034, 0.01509239710867405, 0.02359187602996826, 0.003207316156476736, -0.058070071041584015, -0.007517090532928705, 0.0030745118856430054, 0.025920500978827477, 0.02002616971731186, -0.005766983609646559, 0.04866825044155121, 0.06811226159334183, -0.03006836213171482, 0.04826074093580246, -0.06706438213586807, -0.04799877107143402, -0.010820826515555382, 0.013309543952345848, -0.03897535055875778, -0.004853726364672184, -0.03865516558289528, 0.01864354871213436, -0.0077135683968663216, 0.011104627512395382, -0.061999622732400894, -0.05335460603237152, 0.008426709100604057, 0.026313455775380135, 0.04037252441048622, -0.012509078718721867, 0.006134469993412495, 0.03169839829206467, -0.0010806272039189935, 0.029035035520792007, 0.038596950471401215, -0.045349959284067154, -0.010755334049463272, 0.04328330606222153, 0.05093865841627121, 0.013520575128495693, 0.022631317377090454, 0.01849800907075405, -0.03402702510356903, 0.0269392728805542, 0.05347103625535965, -0.027885276824235916, 0.011883261613547802, 0.010988196358084679, 0.008805111050605774, -0.010595240630209446, 0.04206077754497528, 0.007677183486521244, 0.015630891546607018, -0.035220444202423096, -0.006694795098155737, -0.013695222325623035, 0.002759783761575818, 0.0227186419069767, -0.004864641930907965, 0.016693325713276863, 0.01875998079776764, 0.016445910558104515, -0.0033255666494369507, -0.0032382432837039232, 0.0004930134164169431, -0.012079739011824131, -0.027157582342624664, 0.002650629496201873, -0.005243043415248394, -0.01822148635983467, 0.033386651426553726, 0.011271997354924679, 0.02443600259721279, -0.0017974069342017174, -0.01256001740694046, -0.05309263616800308, -0.013302266597747803, 0.007287866435945034, -0.023097043856978416, 0.027041150256991386, 0.009678345173597336, -0.008812387473881245, 0.014990519732236862, -0.04305044189095497, 0.04686356708407402, -0.04147862270474434, -0.001937488210387528, -0.00638552475720644, -0.022223809733986855, -0.008142908103764057, 0.0001198422905872576, 0.04412743076682091, 0.016009293496608734, -0.030446764081716537, -0.009503697976469994, 0.0026015101466327906, 0.027274012565612793, -0.03475471958518028, -0.04392367601394653, -0.018454348668456078, 0.0018365206196904182, 0.021510668098926544, -0.03155285865068436, -0.012523633427917957, 0.019778752699494362, -0.00012495889677666128, 0.011453920975327492, -0.00972928386181593, -0.0067930337972939014, 0.0031272696796804667, 0.023519106209278107, -0.004187885206192732, -0.011854153126478195, -0.013775268569588661, 0.011483029462397099, 0.018992843106389046, 0.012887480668723583, 0.012327155098319054, 0.012392647564411163, 0.038596950471401215, -0.005908884573727846, 0.03571527823805809, 0.02298061177134514, -0.003643933217972517, 0.0041915238834917545, -0.009591021575033665, -0.011810491792857647, -0.019152935594320297, -0.035511523485183716, 0.02932611294090748, 0.032658956944942474, -0.007233289536088705, 0.00405326159670949, -0.0282345712184906, -0.022791411727666855, -0.015834646299481392, -0.002845288021489978, 0.007495259866118431, 0.03714155778288841, -0.015077843330800533, 0.005901607219129801, -0.011730445548892021, 0.0010951812146231532, 0.03842230141162872, -0.010704395361244678, 0.005887053441256285, -0.005359474569559097, -0.0008368493872694671, -0.005828837864100933, 0.0009068900253623724, 0.002334082033485174, 0.018570778891444206, -0.005748791620135307, -0.014706718735396862, 0.0015772791812196374, 0.002930792048573494, -0.002026630798354745, 0.007771783974021673, -0.011977861635386944, 0.02862752601504326, -0.024319570511579514, -0.011184673756361008, -0.016955295577645302, -0.02779795415699482, 0.005534121301025152, 0.01653323322534561, 0.0051921047270298, 0.030359439551830292, 0.02538200654089451, -0.02146700583398342, -0.014211885631084442, 0.007222373969852924, -0.017159050330519676, 0.015703661367297173, -0.02724490500986576, -0.0022831433452665806, 0.013942638412117958, -0.015703661367297173, 0.029457097873091698, -0.026924720034003258, 0.033095575869083405, 0.01763932965695858, -0.015150612220168114, 0.020797526463866234, 0.023475443944334984, -0.0296171922236681, 0.0017864914843812585, -0.02453787997364998, -0.0080337543040514, 0.03839319571852684, 0.01016590092331171, -0.039324644953012466, -0.02270408719778061, -0.01007857732474804, 0.023329906165599823, 0.027594199404120445, -0.06677330285310745, 0.02130691334605217, 0.03332843631505966, -0.024610649794340134, 0.0386260561645031, -0.004599033389240503, -0.017304589971899986, -0.036210108548402786, -0.03190215304493904, -0.013040296733379364, -0.015339813195168972, -0.0001574777706991881, -0.012610956095159054, -0.014917749911546707, -0.0232862439006567, -0.052161186933517456, -0.004278847482055426, -0.02695382758975029, -0.0017464682459831238, -0.00868867989629507, -0.029558975249528885, -0.003933192230761051, -0.006203601136803627, -0.013258605264127254, -0.005494098179042339, -0.005406774580478668, -0.006720264442265034, -0.03129088878631592, 0.0008150185458362103, -0.032804496586322784, -0.00593071524053812, 0.014590287581086159, 0.01333865150809288, -0.020943066105246544, -0.018570778891444206, 0.003391059348359704, 0.003509309608489275, -0.023228028789162636, 0.005970738362520933, -0.006924019195139408, -0.009758391417562962, -0.01333865150809288, 0.015063288621604443, 0.028132693842053413, 0.023198921233415604, 0.01651867851614952, -0.03498758003115654, -0.025745853781700134, -0.014299209229648113, 0.016853418201208115, 0.009460036642849445, 0.0034529133699834347, -0.00818657036870718, -0.04363260045647621, 0.0408964641392231, -0.013069404289126396, -8.442400576313958e-05, 0.009416375309228897, 0.0035238636191934347, -0.0036130063235759735, -0.0017082643462345004, -0.03938286006450653, 0.06357144564390182, 0.030446764081716537, 0.010893596336245537, -0.013586067594587803, -0.00027197605231776834, 0.016576895490288734, -0.01277832593768835, 0.04051806405186653, -0.019007395952939987, -0.0034783827140927315, -0.01064617931842804, 0.0009923941688612103, 0.012647341005504131, -0.002475982764735818, -0.0016455005388706923, -0.014539348892867565, -0.013527852483093739, 0.027186689898371696, 0.03286271169781685, 0.012094292789697647, 0.029093250632286072, -0.011060966178774834, -0.0386260561645031, 0.0048973881639540195, 0.019021950662136078, 0.014262824319303036, 0.004289762582629919, -0.017741207033395767, -0.006036230828613043, 0.003170931478962302, 0.05801185593008995, -0.010937257669866085, 0.0004054626333527267, 0.008826942183077335, -0.06787940114736557, -0.015572675503790379, 0.018818195909261703, 0.050589364022016525, 0.0022322048898786306, 0.05379122495651245, 0.011832322925329208, 0.022252917289733887, 0.05248137190937996, 0.008652294985949993, -0.022893289104104042, 0.0002799352223519236, 0.010064023546874523, 0.029413437470793724, 0.006596556399017572, -0.00018237858603242785, -0.003360132221132517, 0.0008595898398198187, -0.024057600647211075, -0.021525220945477486, 0.02439234033226967, -0.013062127865850925, -0.012188893742859364, 0.0276669692248106, -0.01312034297734499, 0.016824310645461082, -0.02072475664317608, -0.023359013721346855, -0.05978742986917496, 0.00334921688772738, 0.00034110707929357886, -0.011737721972167492, -0.005061119794845581, 0.029122358188033104, 0.002494174987077713, 0.01804683916270733, -0.01651867851614952, 0.002643352607265115, 0.010034915991127491, 0.0014490229077637196, 0.005861584097146988, -0.03460917994379997, 0.014932303689420223, -0.0017410105792805552, 0.021670760586857796, 0.013913530856370926, -0.011279274709522724, -0.03964482992887497, -0.004162415862083435, -0.01961866021156311, 0.010769887827336788, 0.024756187573075294, 0.03158196806907654, -0.011446644552052021, -0.02017170935869217, 0.0025032712146639824, -0.00988209992647171, 0.009962146170437336, -0.0031909430399537086, -0.0033219282049685717, 0.002121231285855174, 0.008281170390546322, 0.005388582590967417, -0.02484351210296154, -0.01752289943397045, -0.017857639119029045, -0.021219588816165924, -0.002628798596560955, -0.017610222101211548, 0.0005466809379868209, 0.016766095533967018, 0.005883415229618549, 0.035336874425411224, -0.007917323149740696, -0.0001869266852736473, -0.003674860345199704, -0.002153977518901229, -0.029660852625966072, 0.007793614640831947, -0.0033746862318366766, -0.011614014394581318, -0.04060538858175278, 0.02397027797996998, -0.018396133556962013, -0.005253958981484175, 0.0163876935839653, -0.018701763823628426, 0.003600271651521325, -0.03146553784608841, 0.0002590139920357615, -0.0069203805178403854, -0.0097365602850914, -0.027404997497797012, 0.031523752957582474, -0.005741514731198549, -0.00020022985700052232, -0.010340548120439053, -0.021918177604675293, -0.02044823206961155, -0.007080473471432924, 0.025600314140319824, -0.013033019378781319, -0.004198800772428513, -0.04150772839784622, -0.03271717205643654, 0.024203140288591385, -0.00868867989629507, -0.010042192414402962, -0.03021390177309513, -0.018003176897764206, 0.041711483150720596, -0.030592303723096848, -0.003907722886651754, 0.010107684880495071, -0.03446364030241966, -0.0023832016158849, 0.02397027797996998, 0.0018883688608184457, 0.0008354849414899945, 0.010937257669866085, 0.021699868142604828, 0.023388121277093887, -0.029035035520792007, 0.004322508815675974, -0.002625160152092576, -0.013935361988842487, 0.006585640832781792, 0.018658103421330452, -0.03158196806907654, 0.024043045938014984, -0.006043508183211088, 0.003136365907266736, -0.020113492384552956, 0.03556973859667778, -0.025367451831698418, -0.02822001650929451, 0.009409097954630852, -0.05064757913351059, 0.007866384461522102, -0.012530909851193428, -0.0036803181283175945, -0.020215369760990143, -0.007873660884797573, 0.02073931135237217, 0.03286271169781685, 0.02468341775238514, -0.003323747543618083, -0.027346782386302948, -0.00929994322359562, 0.02344633638858795, -0.023664645850658417, 0.026488102972507477, 0.039732154458761215, -0.006149023771286011, 0.049163080751895905, 0.008172016590833664, -0.03248431161046028, 0.0378110371530056, -0.011635844595730305, 0.04092557355761528, -0.019516782835125923, -0.0066111101768910885, 0.03900445997714996, -0.03513311967253685, 0.021336020901799202, 0.008550417609512806, 0.005126612260937691, 0.004151500761508942, -0.030359439551830292, -0.024465110152959824, -0.0013635187642648816, -0.01079899538308382, 0.010915426537394524, 0.011621290817856789, 0.019298475235700607, -0.021816300228238106, -0.016314923763275146, 0.013105789199471474, 0.00866684876382351, -0.005239404737949371, 0.019167490303516388, -0.015747321769595146, 0.019109273329377174, 0.009365436621010303, 0.00310725811868906, -0.04194434732198715, -0.04893022030591965, 0.0004636782396119088, 0.017682991921901703, 0.022398455068469048, 0.0098166074603796, 0.023097043856978416, -0.00875417236238718, -0.005424967035651207, 0.017959516495466232, -0.0010342367459088564, 0.024770742282271385, 0.010216839611530304, -0.007509813643991947, 0.03583170846104622, 0.02964629977941513, -0.016998957842588425, 0.024610649794340134, -0.012872926890850067, 0.03233877196907997, -0.024363232776522636, 0.029675407335162163, 0.022936949506402016, -0.007960984483361244, -0.009802053682506084, -0.011766830459237099, 0.02103038877248764, -0.0018174186116084456, -0.004286124370992184, 0.015907416120171547, -0.013200389221310616, 0.02411581575870514, -0.02708481252193451, 0.02429046295583248, 0.014008130878210068, -0.03155285865068436, -0.02213648520410061, -0.02017170935869217, 0.00687671871855855, 0.0017219085711985826, 0.05175367742776871, -0.004115115851163864, -0.004086008295416832, -0.02862752601504326, 0.0024996327701956034, 0.025090927258133888, 0.004537179134786129, -0.018410686403512955, 0.0005043837008997798, 0.006185408681631088, 0.024814404547214508, 0.0064764865674078465, -0.022616764530539513, 0.0030817887745797634, 0.010638902895152569, -0.004417109303176403, -0.01989518478512764, 0.026167916133999825, -0.027143027633428574, -0.010478809475898743, 0.03653029352426529, -0.0055159288458526134, 0.014233716763556004, -0.016460463404655457, 0.005261235870420933, 0.005497736856341362, 0.0029526229482144117, -0.0025432943366467953, -0.001919295871630311, 0.022340239956974983, -0.013193112798035145, 0.0019684152211993933, -0.0023322629276663065, -0.0010879042092710733, -0.00797553826123476, 0.011162843555212021, -0.00782272219657898, -0.01762477494776249, -0.012319878675043583, -0.02778339944779873, 0.0098166074603796, -0.008834218606352806, -0.010158623568713665, -0.02145245298743248, 0.002990826964378357, 0.0022722280118614435, -0.0028998651541769505, -0.0029435267206281424, 0.006170854438096285, -0.02935522049665451, 0.004966519307345152, -0.0002220607129856944, 0.0009282660903409123, -0.011199227534234524, -0.019545890390872955, 0.02411581575870514, -0.016620555892586708, -0.03839319571852684, -0.01680975779891014, 0.015732768923044205, -0.00546499015763402, 0.019269367679953575, 0.018672656267881393, -0.015572675503790379, -0.03542419895529747, 0.024217693135142326, -0.014175500720739365, 0.0008846044074743986, 0.01988063007593155, 0.02129235863685608, 0.011104627512395382, -0.009641960263252258, 0.0044935173355042934, 0.008841495960950851, 0.02216559275984764, 0.0034329018089920282, 0.01544169057160616, -0.0035602482967078686, 0.019691430032253265, -0.024887172505259514, -0.03810211643576622, -0.02510548196732998, -0.015514460392296314, 0.03458007052540779, 0.005421328824013472, 0.0030799696687608957, 0.0008705052896402776, 0.01608206145465374, -0.0030708734411746264, 0.008135631680488586, 0.005388582590967417, 0.01679520308971405, -0.029951931908726692, -0.012218001298606396, -0.0002635620767250657, 0.041012898087501526, -0.030854273587465286, -0.0009241728112101555, -0.01580553874373436, 0.03658851236104965, -0.0196332149207592, -0.007335166912525892, 0.031523752957582474, 0.030126577243208885, 0.007153242826461792, 0.015136058442294598, -0.004551732912659645, 0.027827061712741852, -0.03428899496793747, 0.02865663357079029, 0.012174339033663273, 0.005887053441256285, 0.019007395952939987, 0.04063449427485466, 0.021219588816165924, -0.00819384679198265, 0.012843819335103035, 0.002388659166172147, 0.0026906526181846857, 0.018803641200065613, -0.005963461473584175, -0.020972173660993576, -0.006378247868269682, 0.0015345270512625575, 0.01733369752764702, 0.024945389479398727, -0.008230231702327728, 0.053849440068006516, 0.027870723977684975, 0.021787192672491074, 0.04045984894037247, 0.0006849430501461029, -0.00638552475720644, 0.021961838006973267, 0.010020362213253975, -0.033968809992074966, -0.01778486929833889, -0.0003338301321491599, -0.028889495879411697, 0.018134161829948425, -0.011213782243430614, 0.002110315952450037, -0.03047587163746357, 0.04401100054383278, 0.005217574071139097, -0.020288139581680298, 0.004740933887660503, 0.01874542608857155, 0.007022257894277573, -0.0207684189081192, -0.023664645850658417, -0.009656514041125774, -0.014422917738556862, 0.01806139200925827, -0.016300370916724205, -0.013193112798035145, 0.009765668772161007, 0.02622613124549389, -0.03609367832541466, 0.026619087904691696, 0.027899831533432007, 0.007699014153331518, -0.004588117823004723, -0.006269093602895737, -0.0020066192373633385, 0.013105789199471474, 0.021496113389730453, 0.023097043856978416, 0.0018792726332321763, -0.019167490303516388, 0.049308620393276215, -0.05195743218064308, -0.009656514041125774, -0.029675407335162163, 0.031261783093214035, 0.024625202640891075, -0.023620983585715294, -0.028030816465616226, 0.020273586735129356, 0.00528670521453023, 0.014546625316143036, -0.012225277721881866, -0.005814284086227417, 0.044826019555330276, -0.026066038757562637, 0.010253224521875381, 0.008201124146580696, 0.0034856596030294895, -0.03146553784608841, -0.007953708060085773, 0.031116243451833725, 0.029005927965044975, 0.03443453460931778, 0.012698279693722725, -0.021932730451226234, -0.021525220945477486, 0.054984644055366516, -0.021656205877661705, -0.03810211643576622, -0.00027970780502073467, 0.014422917738556862, 0.03510401397943497, 0.008113800548017025, 0.03105802834033966, -0.0018328820588067174, 0.022893289104104042, 0.01721726730465889, 0.007091389037668705, -0.04540817439556122, -0.010697118006646633, -0.0008041030960157514, -0.017173605039715767, 0.017129942774772644, -0.03248431161046028, 0.01560178305953741, -0.015499905683100224, 0.026851950213313103, 0.005628721788525581, 0.024057600647211075, -0.005250320304185152, -0.02653176337480545, -0.01264006458222866, -0.013520575128495693, -0.01073350291699171, -0.019240258261561394, 0.009183512069284916, -0.026866503059864044, -0.021539775654673576, 0.024494217708706856, 0.024654310196638107, 0.006170854438096285, -0.0015709118451923132, -0.018396133556962013, -0.025018157437443733, 0.0005848849541507661, -0.012821988202631474, -0.04104200378060341, -0.01878908835351467, 0.020113492384552956, -8.2036254752893e-05, 0.02287873439490795, -0.050705794245004654, -0.015354366973042488, 0.010769887827336788, -0.01733369752764702, -0.011679506860673428, 0.005876137875020504, -0.0015663637313991785, 0.02808903157711029, -0.0033728668931871653, -0.038043901324272156, -0.024945389479398727, -0.0007863655337132514, 0.014932303689420223, 0.021627098321914673, -0.007589859887957573, -0.006905826739966869, 0.0015745502896606922, -0.04517531394958496, -0.015019627287983894, 0.004464409779757261, 0.008703233674168587, -0.04470958933234215, 0.026197023689746857, 0.0033801437821239233, 0.020346354693174362, 0.015063288621604443, 0.011737721972167492, 0.004995626863092184, -0.007280589547008276, -0.03484204411506653, 0.023620983585715294, 0.019822414964437485, 0.00595982326194644, -0.009307220578193665, -0.002153977518901229, -0.021103158593177795, 0.015005073510110378, 0.010064023546874523, 0.02031724713742733, -0.001308941631577909, -0.02609514631330967, -0.017959516495466232, -0.025774961337447166, 0.013826207257807255, 0.016344033181667328, 0.008848772384226322, -0.028845835477113724, 0.0022376624401658773, -0.012174339033663273, 0.005122973583638668, 0.05358747020363808, -0.0007126863929443061, -0.020142601802945137, -0.011606737039983273, -0.03303735703229904, -0.02357732132077217, -0.03402702510356903, -0.025061819702386856, 0.017115389928221703, -0.02753598429262638, 0.006556532811373472, -0.027550537139177322, -0.023679198697209358, 0.015427136793732643, -0.011504859663546085, 0.007939153350889683, 0.004984711762517691, 0.04278847202658653, 0.0033219282049685717, -0.0013999034417793155, 0.017144497483968735, 0.031523752957582474, -0.010638902895152569, 0.007105942815542221, -0.001568182953633368, -0.009991253726184368, 0.004919218830764294, 0.0014963230350986123, 0.00398776913061738, 0.004322508815675974, -0.03964482992887497, 0.013498744927346706, -0.060486018657684326, -0.0007831818656995893, -0.013447806239128113, 0.012785603292286396, 0.004216993227601051, -0.015718214213848114, -0.004653610289096832, 0.0098166074603796, -0.00875417236238718, -0.002397755393758416, -0.017857639119029045, 0.0006858526612631977, -0.012741941958665848, -0.010718949139118195, 0.02612425573170185, -0.017668437212705612, 0.0067930337972939014, -0.010202285833656788, 0.008608633652329445, 0.013105789199471474, 0.014539348892867565, 0.02228202484548092, 0.010420594364404678, 0.027594199404120445, 0.011788660660386086, -0.009285389445722103, -0.0027797953225672245, -0.025571206584572792, 0.013629729859530926, -0.03117445856332779, -0.0059197996743023396, -0.03184393793344498, 0.03452185541391373, -0.03653029352426529, 0.023810183629393578, -0.017988624051213264, -0.028278231620788574, 0.025920500978827477, 0.0032164123840630054, 0.0020011616870760918, 0.027608752250671387, 0.020841188728809357, -0.01305485051125288, 0.04328330606222153, -0.012465417385101318, -0.006531063932925463, -0.0028016262222081423, -0.020521001890301704, 0.001717360457405448, 0.01531070563942194, -0.004730018321424723, -0.05641092732548714, -0.03088338114321232, 0.021074051037430763, 0.0032200508285313845, -0.013673391193151474, -0.009889376349747181, -0.0101004084572196, -0.00796826183795929, 0.009860268794000149, 0.02651721052825451, -0.014721272513270378, 0.010398763231933117, 0.017581114545464516, -0.03571527823805809, -0.01050791796296835, 0.01101730391383171, -0.023664645850658417, -0.01213795505464077, -0.01765388436615467, 0.003558429190889001, -0.055363044142723083, -0.0030344887636601925, -0.01114101242274046, 0.030155686661601067, 0.004624502267688513, -0.0031509199179708958, 0.004555371589958668, -0.0016364044276997447, 0.004537179134786129, 0.012574572116136551, -0.0227186419069767, -0.00923445075750351, -0.0005384943797253072, 0.024508772417902946, -0.029981039464473724, -0.0023540938273072243, -0.013389590196311474, -0.001670969882979989, -0.012720110826194286, -0.009685622528195381, 0.005988930817693472, -0.007568029221147299, 0.035336874425411224, 0.00669843377545476, 0.02753598429262638, 0.0355406291782856, -0.04051806405186653, 0.02188907004892826, -0.016052953898906708, -0.029166020452976227, 0.016009293496608734, 0.01635858602821827, -0.016998957842588425, -0.011563075706362724, 0.009467313066124916, -0.012181616388261318, 0.014539348892867565, -0.01108279637992382, 0.01531070563942194, 0.009183512069284916, -0.0010451520793139935, 0.002643352607265115, -0.027026597410440445, -0.004075092729181051, -0.012887480668723583, -0.005002903752028942, 0.010493363253772259, -0.028176354244351387, -0.002486898098140955, 0.03047587163746357, 0.02512003481388092, 0.012698279693722725, 0.00659291772171855, -0.02792893908917904, 0.002323166700080037, 0.014059069566428661, 0.019836969673633575, -0.02047734148800373, -0.013578791171312332, -0.009620129130780697, 0.06747189164161682, 0.014517517760396004, -0.014371979050338268, 0.006440101657062769, 0.006010761484503746, 0.01580553874373436, 0.026837395504117012, 0.0255566518753767, 0.0052066585049033165, -0.008957927115261555, 0.0028707573655992746, -0.007669906597584486, 0.026604533195495605, 0.029253343120217323, 0.012654618360102177, 0.004326147492974997, 0.03129088878631592, -0.0007372461259365082, 0.009343605488538742, -0.0009605575469322503, -0.0066038332879543304, -0.007113219704478979, 0.021132266148924828, -0.028889495879411697, -0.013702498748898506, -0.025352897122502327, 0.00975111499428749, -0.00782272219657898, -0.009460036642849445, 0.002022992353886366, 0.0215834379196167, 0.017144497483968735, 0.002657906385138631, 0.01807594671845436, -0.007280589547008276, 0.05655646324157715, -0.006079892627894878, 0.0018901880830526352, -0.006316393613815308, -0.007167797069996595, -0.01277832593768835, -0.0069931503385305405, -0.012159785255789757, -0.009074358269572258, -0.018236039206385612, 0.014437471516430378, 0.0017264566849917173, 0.015543567948043346, -0.020128047093749046, -0.02513458952307701, -0.036908697336912155, -0.0003497484722174704, -0.031669292598962784, -0.011177397333085537, -0.02724490500986576, -0.0020812079310417175, -0.010558856651186943, -0.013440528884530067, -0.036501187831163406, 0.008528586477041245, -0.006003484595566988, 0.029093250632286072, -0.014284655451774597, -0.06124282255768776, -0.014961411245167255, -0.006145385093986988, -0.016169385984539986, -0.022325687110424042, -0.022660426795482635, 0.02017170935869217, -0.017974069342017174, 0.008091969415545464, -0.006123554427176714, -0.008928819559514523, -0.0005062029231339693, 0.025469329208135605, 0.028394663706421852, 0.010114962235093117, 0.01921115070581436, -0.03990679979324341, -0.007404298055917025, 0.0053340052254498005, 0.005264874082058668, -0.0003552061680238694, 0.0004984711413271725, -0.001046971301548183, 0.019807862117886543, -0.008077415637671947, 0.007531644310802221, -0.02059377171099186, 0.019866077229380608, -0.0006230889703147113, 0.026706410571932793, 0.005927076563239098, -0.02161254547536373, -0.02848198637366295, 0.006909464951604605, 0.0039368304423987865, 0.0034037940204143524, 0.007033173460513353, -0.019167490303516388, -0.003345578210428357, 0.01593652367591858, 0.0018155992729589343, 0.007946430705487728, -0.008521310053765774, -0.018527118489146233, -0.01531070563942194, -0.007353359367698431, -0.014801318757236004, 0.003185485489666462, -0.013600621372461319, -0.03615189343690872, -0.01488136500120163, 0.03740352764725685, -0.010908150114119053, 0.01277104951441288, 0.004962880630046129, 0.015398028306663036, 0.0006540159811265767, -0.014801318757236004, 0.009467313066124916, 0.0007940973155200481, 0.014080900698900223, -0.0006872171070426702, 0.043690815567970276, -0.012181616388261318, 0.005304897204041481, -0.021190481260418892, 0.012516356073319912, 0.010311439633369446, -0.0017955877119675279, -0.03568616881966591, 0.020360909402370453, 0.004424386192113161, 0.0007872751448303461, 0.007771783974021673, -0.012509078718721867, -0.011060966178774834, -0.0055159288458526134, -0.03306646645069122, -0.009161681868135929, -0.014903196133673191, -0.010689841583371162, -0.005828837864100933, 0.017173605039715767, -0.00938726682215929, 0.03175661340355873, 0.017435574904084206, -0.03437631577253342, 0.012967526912689209, -0.025207359343767166, 0.006480125244706869, -0.01580553874373436, 0.005450436379760504, -0.003914999775588512, -0.0076335216872394085, 0.0006631121505051851, -0.010071300901472569, -0.014291931875050068, 0.0530635267496109, -0.009423651732504368, -0.006709348876029253, -0.023169811815023422, -0.004711825866252184, 0.0050247348845005035, -0.009852992370724678, -0.05207386240363121, -0.030301224440336227, -0.009569190442562103, 0.004147862084209919, -0.0076407985761761665, -0.008870603516697884, -0.017173605039715767, 0.004475324880331755, -0.002528740558773279, 0.0009805691661313176, 0.00282345712184906, 0.01339686755090952, -0.023344459012150764, -0.017668437212705612, -0.016766095533967018, -0.010835380293428898, 0.0010305981850251555, 0.02512003481388092, 0.0019484036602079868, -0.02411581575870514, -0.01935669034719467, -0.0002512822102289647, 0.0030635965522378683, 0.006410994101315737, -0.01079171895980835, -0.007087750360369682, 0.016038401052355766, 0.008201124146580696, 0.011104627512395382, 0.005366751458495855, -0.017857639119029045, 0.011184673756361008, -0.027448659762740135, -0.0028361917939037085, 0.016853418201208115, 0.027594199404120445, -0.028292786329984665, 0.029107805341482162, -0.02922423556447029, -0.003256435738876462, 0.016314923763275146, -0.009823883883655071, -0.014692164957523346, -0.0013116704067215323, 0.003711245022714138, -0.02584773115813732, -2.023902015935164e-05, 0.001613663975149393, 0.011548521928489208, -0.0012871107319369912, -0.01718815788626671, 0.01621304638683796, 0.004089646507054567, -0.001752835582010448, -0.007764507085084915, -0.00910346582531929, -0.00437708618119359, -0.0014726730296388268, 0.010500640608370304, -0.0037439914885908365, -0.014837703667581081, 0.010871765203773975, 0.0059197996743023396, 0.025047266855835915, 0.0033692284487187862, 0.010959088802337646, 0.0038131223991513252, 0.03105802834033966, 0.0029562613926827908, -0.014626671560108662, 0.007233289536088705, 0.024930834770202637, -0.011155566200613976, -0.003614825429394841, -0.014903196133673191, -0.030504979193210602, -0.005745152942836285, -0.02864208072423935, -0.00026583613362163305, 0.02468341775238514, -0.0029107804875820875, 0.012239831499755383, 0.008383047766983509, -0.021510668098926544, 0.016736987978219986, -0.01794496178627014, -0.029166020452976227, -0.01376799214631319, 0.012043354101479053, 0.008310277946293354, 0.004529902245849371, -0.004042346496134996, -0.018105054274201393, 0.008179293014109135, -0.0011188312200829387, 0.013760714791715145, -0.00386042264290154, -0.026837395504117012, -0.023650091141462326, -0.008856049738824368, 0.012538187205791473, 0.02299516648054123, -0.012792880646884441, -0.013433251529932022, 0.018512563779950142, -0.009023419581353664, -0.018163269385695457, 0.01608206145465374, 0.002856203354895115, 0.008201124146580696, 0.0036912334617227316, 0.010275054723024368, -0.004038707818835974, 0.010427870787680149, 0.026298901066184044, -0.025935053825378418, -0.014219162985682487, 0.00853586383163929, -0.011402982287108898, 0.006763926241546869, -0.0004952874733135104, 0.0014099093386903405, -0.00016202586994040757, 0.002026630798354745, 0.01974964514374733, -0.015470798127353191, -0.007011342328041792, -0.008608633652329445, 0.04584479331970215, -0.010122239589691162, 0.00010818779992405325, -0.028860388323664665, -0.034783825278282166, -0.005774260964244604, -0.02612425573170185, 0.014917749911546707, -0.016460463404655457, 0.002153977518901229, 0.010005807504057884, 0.032251447439193726, -0.021365128457546234, -0.009249004535377026, -0.013309543952345848, -0.0031418236903846264, 0.01567455381155014, -0.004460771102458239, 0.006112638860940933, -0.0033110128715634346, -0.0017555644735693932, -0.0034147093538194895, 0.004482601769268513, 0.008266616612672806, -0.012749218381941319, -0.023897508159279823, 0.022602209821343422, -0.030243009328842163, -0.01790129952132702, -0.010478809475898743, 0.009438205510377884, 0.0038931688759475946, -0.00024309565196745098, 0.014110008254647255, -0.02044823206961155, 0.01516516599804163, -0.013491467572748661, 0.03655940294265747, 0.00023718312149867415, 0.00909618940204382, -0.013629729859530926, -0.027041150256991386, 0.021947285160422325, -0.05344193056225777, -0.006756649352610111, -0.008142908103764057, 0.0047627645544707775, 4.6959074097685516e-05, 0.002263131784275174, -0.005737876053899527, 0.024654310196638107, -0.010253224521875381, 0.004828257020562887, -0.004871918819844723, -0.015136058442294598, -0.018556226044893265, 0.0031018005684018135, 0.03603546321392059, -0.022485779598355293, -0.0013416878646239638, 0.008877880871295929, -0.0023322629276663065, 0.02808903157711029, -0.005545036867260933, -0.006905826739966869, -0.011570352129638195, -0.023198921233415604, 0.0012643702793866396, -0.014299209229648113, -0.009416375309228897, 0.0332702212035656, -0.014386532828211784, 0.004988349974155426, 0.011221058666706085, 0.025090927258133888, -0.024174032732844353, 0.01678065024316311, 0.006763926241546869, 0.011941476725041866, 0.05996207892894745, -0.012152508832514286, 0.033939700573682785, -0.022543994709849358, -0.0045007942244410515, 0.0033546744380146265, -0.02172897569835186, -0.019080165773630142, -0.018439793959259987, -0.016547787934541702, 0.0010205924045294523, -0.01778486929833889, -0.0035038520582020283, -0.009307220578193665, 0.0280744768679142, 0.00468999519944191, 0.011970584280788898, -0.014430194161832333, 0.02172897569835186, 0.010158623568713665, 0.012014246545732021, 0.01678065024316311, -0.011730445548892021, 0.019254812970757484, -0.02356276847422123, 0.018658103421330452, 0.01622760109603405, -0.03556973859667778, 0.006218154914677143, 0.01007857732474804, -0.004431663081049919, 0.008521310053765774, 0.00903797335922718, -0.00929994322359562, -0.0005739695043303072, -0.014801318757236004, -0.0070077041164040565, 0.003998684696853161, -0.020113492384552956, -0.02624068595468998, 0.0067457337863743305, 0.002206735545769334, -0.017843084409832954, -0.0009128025849349797, 0.002450513420626521, -0.010406040586531162, 0.005042927339673042, -0.007145965937525034, 0.004162415862083435, 0.01149030588567257, 0.021394236013293266, -0.012319878675043583, 0.0023850207217037678, -0.006207239348441362, -0.009722006507217884, 0.007808168418705463, -0.014284655451774597, 0.021117713302373886, 0.01862899586558342, 0.03469650447368622, 0.006967680994421244, -0.016591448336839676, -0.01733369752764702, -0.005832476541399956, 0.026298901066184044, -0.003099981229752302, 0.0007317884010262787, -0.03091248869895935, -0.03178572282195091, 0.007306058891117573, -0.001415367005392909, -0.013302266597747803, -0.011621290817856789, 0.011999692767858505, -0.00037931109545752406, -0.010915426537394524, -0.017435574904084206, 0.01651867851614952, 0.007611691020429134, 0.0022613126784563065, 0.0011852334719151258, -0.005705129820853472, 0.01362245250493288, -0.02216559275984764, -0.01750834472477436, 0.006629302632063627, 0.010966365225613117, -0.02456698752939701, 0.00881966482847929, -0.009016142226755619, 0.008826942183077335, 0.007418851833790541, -0.008273893967270851, 0.019225705415010452, -0.005814284086227417, -0.020142601802945137, -0.012443586252629757, -0.003043584758415818, -0.017974069342017174, 0.0069203805178403854, 0.018163269385695457, 0.009190789423882961, -0.003167293034493923, -0.004144223872572184, -0.010828102938830853, -0.0033765053376555443, 0.004271570593118668, 0.007611691020429134, -0.019298475235700607, 0.0043043168261647224, -0.0036621256731450558, 0.0793478786945343, -0.005774260964244604, 0.014917749911546707, -0.003525682957842946, -5.491824049386196e-05, -0.004333424381911755, -0.005344920791685581, 0.013746161013841629, 0.021059496328234673, 0.010376932099461555, -0.0033128319773823023, -0.02867118827998638, 0.006501955911517143, 0.0018437975086271763, -0.012188893742859364, -0.020215369760990143, 0.021554330363869667, 0.019560445100069046, 0.009350881911814213, 0.033503081649541855, 0.002244939561933279, -0.007185989525169134, -0.014073623344302177, -0.015252489596605301, -0.015849199146032333, 0.013738883659243584, -0.01749379001557827, 0.01935669034719467, -0.004413471091538668, 0.023475443944334984, -0.01213795505464077, -0.0027015681844204664, -0.008019200526177883, 0.0003515676944516599, -0.010420594364404678, 0.016038401052355766, 0.0088851572945714, 0.02581862360239029, -0.0028762149158865213, 0.0028743958100676537, 0.012683725915849209, -0.004981073085218668, 0.031261783093214035, 0.04302133619785309, -0.007779060862958431, -0.011825045570731163, 0.011664953082799911, 0.0001581599935889244, -0.010602517984807491, -0.01447385549545288, -0.01129382848739624, -0.01592196896672249, 0.0031745699234306812, 0.0015372559428215027, -0.0013362301979213953, -0.020564664155244827, -0.005985292140394449, -0.015281597152352333, 0.0019629576709121466, 0.010042192414402962, -0.01453207153826952, 0.0016218505334109068, -0.01531070563942194, -0.03597724810242653, 0.004067815840244293, -0.01353512890636921, 0.010355101898312569, -0.014481132850050926, 0.001230714377015829, -0.005359474569559097, -0.006487402133643627, 0.005155719816684723, 0.02653176337480545, -0.025003604590892792, -0.023664645850658417, 0.007349720690399408, 0.0031127159018069506, 0.03961572423577309, 0.025512991473078728, 0.003165473695844412, 0.012931142002344131, -0.007684460375458002, -0.006545617710798979, -0.0069931503385305405, 0.006964042317122221, 0.0017146316822618246, 0.0025414752308279276, -0.02089940384030342, 0.007105942815542221, -0.04421475529670715, -0.0003399700508452952, 0.0029398882761597633, 0.008019200526177883, 0.0014881364768370986, 0.0163876935839653, -0.001138842897489667, 0.0038786150980740786, -0.032950036227703094, 0.019938847050070763, -0.0024104900658130646, 0.00395138468593359, 0.0026706410571932793, -0.012232555076479912, 0.009656514041125774, -0.006556532811373472, -0.02146700583398342, 0.013316820375621319, 0.013033019378781319, -0.02386840060353279, 0.01333137508481741, -0.0045808409340679646, 0.011883261613547802, 0.008557694964110851, 0.011024581268429756, -0.03848051652312279, -0.00018920072761829942, 0.012458140030503273, -0.009001588448882103, -0.013520575128495693, -0.008681402541697025, 0.007757230196148157, 0.013040296733379364, -0.009802053682506084, -0.012392647564411163, 0.012283493764698505, 0.0041587776504457, -0.016751540824770927, -0.010675287805497646, 0.007393382489681244, -0.026298901066184044, 0.008237509056925774, 0.0048973881639540195, 0.01227621641010046, -0.02443600259721279, 0.015485351905226707, 0.0014926845906302333, 0.0010242308489978313, -0.0032455201726406813, 0.019982507452368736, -0.019516782835125923, 0.008746895007789135, -0.012036077678203583, 0.019123828038573265, 0.008550417609512806, 0.0017546548042446375, -0.021627098321914673, -0.0009805691661313176, -0.026342563331127167, 0.025585761293768883, -0.005424967035651207, 0.02867118827998638, -0.02088484913110733, -0.014721272513270378, -0.010697118006646633, -0.0003922731557395309, -0.003607548540458083, -0.028540203347802162, 0.019516782835125923, -0.01932758279144764, 0.008492202498018742, 0.0015399848343804479, -0.00020159428822807968, -0.0033091935329139233, 0.009008865803480148, -0.013513298705220222, -0.001181594911031425, 0.009023419581353664, 0.025003604590892792, 0.008222955279052258, 0.008397601544857025, 0.010813549160957336, -0.008550417609512806, -0.009692898951470852, -0.021627098321914673, -0.009219896979629993, -0.022369347512722015, 0.009365436621010303, 0.02707025781273842, -0.012319878675043583, 0.02526557445526123, 0.00036407497827894986, -0.010464255698025227, 0.024581540375947952, 0.015907416120171547, 0.017668437212705612, -0.025309236720204353, 0.025629421696066856, -0.012450863607227802, -0.012348986230790615, 0.018308809027075768, -0.005082950461655855, 0.028889495879411697, -0.0031491005793213844, -0.005035650450736284, -0.00783727690577507, 0.011177397333085537, 0.023781076073646545, 0.027841614559292793, -0.008288447745144367, -0.015019627287983894, -0.0028252762276679277, -0.0016646025469526649, 0.009139850735664368, 0.0013198570813983679, 0.001866537961177528, -0.0095328064635396, -0.022689534351229668, -0.021554330363869667, -0.012399924919009209, 0.009867546148598194, -0.040867358446121216, -0.026298901066184044, 0.0007754501421004534, 0.0012443586019799113, -0.020229924470186234, -0.0002011394826695323, 0.006232708692550659, 0.004249739460647106, 0.005807007197290659, -0.002397755393758416, -0.0058506689965724945, -0.007102304603904486, -0.019953399896621704, -0.009336328133940697, -0.0032382432837039232, -0.009852992370724678, -0.00910346582531929, 0.014044515788555145, 0.00797553826123476, -0.0183379165828228, 0.013149450533092022, 0.007411574944853783, -0.0018883688608184457, 0.022194700315594673, -0.0018474359530955553, 0.01948767527937889, 0.01325132790952921, -0.011584905907511711, 0.03373594582080841, -0.010660733096301556, -0.012996634468436241, 0.004475324880331755, 0.009678345173597336, -0.0007931877044029534, 0.0015972907422110438, -0.015194274485111237, -0.0007399749592877924, 0.015427136793732643, 0.008841495960950851, -2.7913929443457164e-05, -0.0011170119978487492, -0.012960250489413738, -0.018265146762132645, 0.008215677924454212, 0.016183938831090927, 0.0037021490279585123, 0.0020921234972774982, -0.007389743812382221, -0.014852257445454597, -0.021219588816165924, -0.0005112058133818209, -0.012283493764698505, -0.004679079633206129, 0.004024154040962458, 0.009758391417562962, 0.015892861410975456, -0.02795804664492607, 0.012450863607227802, -0.0006462842575274408, 0.007568029221147299, 0.014422917738556862, -5.272947237244807e-05, 0.014561179094016552, 0.015980184078216553, 0.0036512103397399187, -0.014481132850050926, -0.019254812970757484, 0.007699014153331518, 0.011584905907511711, -0.0003374686057213694, 0.011868707835674286, -0.006156300660222769, -0.0011379332281649113, -0.01050791796296835, 0.0023013358004391193, -0.01362245250493288, -0.0018510745139792562, -0.003047223435714841, 0.0027361337561160326, 0.0016127543058246374, -0.003170931478962302, -0.007367913145571947, 0.02187451533973217, 0.0018619898473843932, 0.0035875369794666767, 0.012734664604067802, 0.018279701471328735, 0.001777395373210311, 0.0034183477982878685, 0.004369809292256832, -0.004682718310505152, 0.004107838962227106, -0.003802207065746188, -0.004751848988234997, 0.015296151861548424, 0.015863753855228424, 0.01918204315006733, 0.0004811883845832199, -0.012821988202631474, -0.008215677924454212, -0.003352855332195759, -0.0033837822265923023, -0.0039004457648843527, -0.00788821466267109, -0.004613587167114019, -0.010442424565553665, -0.005537759978324175, 0.01750834472477436, -0.019254812970757484, 0.006829418707638979, -0.0019665961153805256, 0.011410259641706944, 0.004697272088378668, 0.0160675086081028, 0.010828102938830853, 0.0018183281645178795, 0.005475905723869801, 0.004075092729181051, -0.008914264850318432, -0.012538187205791473, -0.0013262243010103703, 0.004984711762517691, -0.015761876478791237, -0.013527852483093739, 0.007800891529768705, -0.003227327950298786, 0.0049083037301898, -0.0008218406583182514, -0.006119915749877691, 0.010486086830496788, -0.002450513420626521, 0.0057305991649627686, -0.002050281036645174, -0.004566286690533161, -0.0009323593694716692, 0.022383902221918106, 0.0032800857443362474, -0.01608206145465374, -0.0005607800558209419, 0.00028471072437241673, -0.010922703891992569, 0.0068803573958575726, 0.023489998653531075, 0.014903196133673191, -0.016562340781092644, -0.010697118006646633, 0.022922396659851074, 0.02172897569835186, 0.0009469132637605071, 0.009008865803480148, -0.0064837634563446045, 0.030534086748957634, -0.016314923763275146, -0.011526690796017647, 0.021554330363869667, 0.001379891880787909, -0.0033473975490778685, 0.007808168418705463, -0.023882953450083733, 0.003394697792828083, -0.004267931915819645, -0.03458007052540779, -0.020506449043750763, 0.005261235870420933, 0.0017755761509761214, -0.0029926460701972246, -0.01248724851757288, -0.014291931875050068, -0.015456244349479675, -0.010602517984807491, 0.042555611580610275, 0.005435882601886988, -0.028190908953547478, 0.0047554876655340195, 0.015048734843730927, -0.006345501635223627, 0.022049162536859512, 0.009758391417562962, -0.007997369393706322, 0.000159638118930161, -0.0015427136095240712, 0.007764507085084915, 0.006079892627894878, -0.012312601320445538, 0.01227621641010046, 0.0098166074603796, -0.0006549255922436714, 0.023228028789162636, 0.0013280436396598816, -0.004682718310505152, 0.007931876927614212, 0.014561179094016552, 0.01934213563799858, 0.01333865150809288, 0.004817341919988394, -0.018396133556962013, 0.014204609207808971, 0.029602637514472008, 0.021685315296053886, -0.007851830683648586, -0.001497232704423368, 0.008368493989109993, -0.02581862360239029, -0.0006221793009899557, 0.02383929304778576, -0.004653610289096832, 0.0015036000404506922, -0.0166351106017828, 0.018250593915581703, -0.0023759244941174984, 0.014095454476773739, -0.009190789423882961, 0.026444440707564354, -0.011759553104639053, 0.004624502267688513, -0.009045250713825226, 0.027856169268488884, 0.0014235535636544228, -0.012610956095159054, 0.010777165181934834, -0.0010615253122523427, -0.003933192230761051, -0.022602209821343422, -0.001915657427161932, -0.02667730301618576, -0.0017073546769097447, 0.022791411727666855, -0.012509078718721867, -0.007699014153331518, 0.02216559275984764, -0.007404298055917025, -0.0039004457648843527, -0.008703233674168587, -0.0031472814735025167, 0.01179593801498413, 0.01107551995664835, 8.698230521986261e-05, 0.028132693842053413, -0.01945856772363186, -0.013447806239128113, -0.01820693165063858, 0.02002616971731186, 0.017595667392015457, 0.006945849861949682, -0.0016209408640861511, -0.019254812970757484, -0.013360482640564442, -0.01976419985294342, 0.01708628237247467, -0.019574997946619987, 0.005843391641974449, -0.004588117823004723, 0.0036384756676852703, 0.0027652415446937084, -0.019822414964437485, 0.014786764979362488, 0.020433679223060608, 0.00621451623737812, -0.00391136109828949, 0.003914999775588512, -0.0032200508285313845, 0.018832750618457794, 0.027987154200673103, -0.008091969415545464, 0.0021685315296053886, 0.01073350291699171, 0.002426863182336092, 0.008397601544857025, -0.019836969673633575, -0.0047700414434075356, -0.017042620107531548, -0.001390807330608368, -0.008943373337388039, -0.004930134397000074, 0.03184393793344498, -0.005894330330193043, 0.0020557388197630644, 0.0252364668995142, 0.002692471956834197, 0.019793307408690453, 0.030679626390337944, -0.0001255274110008031, 0.004984711762517691, -0.007575306110084057, 0.0028616611380130053, -0.008230231702327728, 0.006822141818702221, 0.013294990174472332, -0.0025633061304688454, 0.004253378137946129, 0.01248724851757288, 0.01305485051125288, 0.0034856596030294895, -0.019283920526504517, 0.003005380742251873, 0.0041915238834917545, -0.01191964652389288, 0.006647495087236166, 0.004639056511223316, 0.0023286244831979275, 0.012603679671883583, -0.003984130918979645, -0.011133735068142414, -0.00023081580002326518, 0.012945695780217648, -0.0027834337670356035, -0.0024141285102814436, 0.011271997354924679, 0.01333865150809288, 0.003363770665600896, -0.00695312675088644, -0.018003176897764206, 0.0036384756676852703, 0.01733369752764702, 0.00016100255015771836, -0.005406774580478668, 0.022354794666171074, 0.004901026841253042, 0.007149604614824057, -0.017741207033395767, 0.0019993423484265804, 0.00585430720821023, 0.004599033389240503, -0.015499905683100224, 0.00897248089313507, 0.024901727214455605, 0.0031272696796804667, -0.0029417076148092747, 0.02781250700354576, -0.0029435267206281424, 0.015980184078216553, 0.005865222774446011, -0.012916588224470615, -0.02258765697479248, -0.008579525165259838, -0.006236347369849682, 0.010158623568713665, 0.018119608983397484, 0.005719683598726988, 0.012254386208951473, -0.007866384461522102, 0.013484190218150616, 0.02344633638858795, 0.026575425639748573, 0.017697544768452644, -0.028540203347802162, 0.021059496328234673, 0.016169385984539986, 9.0905035904143e-05, 0.0051921047270298, 0.0022322048898786306, -0.007440682500600815, 0.0004541272355709225, 0.01624215580523014, -0.02273319475352764, 0.0021521584130823612, 0.007880938239395618, -0.004282485693693161, -0.004511709790676832, 0.019662322476506233, 0.0008818755159154534, 0.008077415637671947, -0.015339813195168972, 0.002117592841386795, 0.009787498973309994, -0.01213795505464077, -0.01859988644719124, -0.025498436763882637, 0.013840761035680771, -0.009780222550034523, 0.006414632312953472, -0.018585333600640297, -0.025600314140319824, 0.006956765428185463, 3.817556716967374e-05, 0.01653323322534561, 0.0016928007826209068, 0.004369809292256832, 0.030708733946084976, -0.01877453364431858, 0.016591448336839676, -0.027739737182855606, -0.011155566200613976, 0.0006344591965898871, -0.0019629576709121466, -0.0015590868424624205, -0.005093866027891636, -0.0013507840922102332, -0.029035035520792007, -0.03091248869895935, 0.0021703506354242563, 0.014903196133673191, 0.001957499887794256, -0.010668010450899601, -0.0016091158613562584, 0.008506756275892258, -0.009860268794000149, -0.01791585423052311, 0.003842230187729001, -0.011301104910671711, 0.0037185221444815397, -0.003416528692469001, 0.011752275750041008, -0.009743837639689445, 0.0026269794907420874, -0.007480705622583628, 0.019225705415010452, -0.027608752250671387, 0.01807594671845436, 0.007375190034508705, -0.002075750380754471, -0.0019283920992165804, -0.0033928784541785717, 0.02456698752939701, -0.024188585579395294, -0.0252364668995142, -0.004402555525302887, 0.009016142226755619, 0.03102892078459263, -0.0103842094540596, -0.0023104320280253887, 0.0037949299439787865, -0.00669843377545476, -0.020215369760990143, 0.005424967035651207, -0.011453920975327492, -0.007568029221147299, -0.0026797372847795486, -0.00988209992647171, -0.002323166700080037, 0.008230231702327728, -0.0024632480926811695, 0.0009309949236921966, 0.023941168561577797, 0.005948907695710659, -0.014008130878210068, 0.019385797902941704, -0.0019083804218098521, 0.009059804491698742, 0.013214942999184132, -0.01806139200925827, 0.01418277807533741, -0.001990246120840311, 0.00897248089313507, 0.018163269385695457, -0.026182470843195915, 0.007346082478761673, -0.007262397091835737, 0.03455096483230591, -0.011235612444579601, -0.009256281889975071, -0.02622613124549389, -0.0035948138684034348, 0.006531063932925463, -0.009743837639689445, -0.012589125894010067, 0.007517090532928705, 0.02298061177134514, 0.005472267512232065, 0.0011079157702624798, -0.0032236892729997635, -0.006163577549159527, -0.008630463853478432, 0.011271997354924679, -0.0047081876546144485, 0.01567455381155014, -0.008725064806640148, -0.009772945195436478, 0.014102731831371784, -0.02596416138112545, -0.005002903752028942, 0.0013280436396598816, -0.002912599826231599, -0.019807862117886543, -1.390011402691016e-05, -0.0008191118249669671, 0.016402248293161392, -0.033532191067934036, -0.016445910558104515, -0.003827676409855485, -0.024217693135142326, -0.003827676409855485, -0.022951504215598106, -0.005275789648294449, 0.024901727214455605, 0.007517090532928705, -0.013003911823034286, 0.00791004579514265, -0.018265146762132645, -0.012050631456077099, -0.03318289667367935, -0.0007199633400887251, -0.03388148546218872, 0.004559009801596403, 0.017697544768452644, -0.01402996201068163, 0.008695956319570541, 0.012152508832514286, 0.0046281409449875355, -0.0018901880830526352, 0.017828529700636864, -0.011701337993144989, 0.017159050330519676, -0.004835533909499645, -0.007611691020429134, -0.0269392728805542, 0.011563075706362724, 0.004879195708781481, -0.02104494348168373, -0.011279274709522724, -0.0010342367459088564, -0.010769887827336788, -0.004799149464815855, 0.002890768926590681, -0.016402248293161392, -0.015485351905226707, -0.00701861921697855, 0.019793307408690453, -0.01007857732474804, 0.01390625350177288, 0.02552754431962967, -0.012603679671883583, -0.0038531457539647818, 0.026589980348944664, -0.009976699948310852, -0.00783727690577507, 0.02229657769203186, -0.003838591743260622, -0.003827676409855485, 0.01762477494776249, -0.011956030502915382, -0.022063715383410454, -0.009198066778481007, -0.002528740558773279, 0.014364701695740223, -0.03169839829206467, -0.0036457525566220284, 0.0056432755663990974, -0.011286551132798195, 0.014502963982522488, -0.03501668944954872, 0.002386840060353279, 0.005566867534071207, -0.0026870141737163067, -0.008914264850318432, -0.0016591448802500963, 0.01044970192015171, -0.021001281216740608, 0.00740793626755476, 0.026298901066184044, 0.021656205877661705, 0.02820546366274357, 0.0015090577071532607, -0.010151347145438194, -0.002643352607265115, 0.0221510399132967, -0.003001742297783494, -0.009132573381066322, -0.012800157070159912, 0.040576279163360596, 0.008921542204916477, -0.006574725266546011, 0.00023138431424740702, -0.015878306701779366, -0.00416969321668148, -0.009052527137100697, 0.012196170166134834, -0.010762610472738743, -0.0012370817130431533, 0.04016876965761185, 0.0013935361057519913, 0.0007063190569169819, -0.03527865931391716, 0.010777165181934834, -0.010675287805497646, 0.010951811447739601, 0.022500332444906235, 0.013644283637404442, -0.0025760408025234938, 0.011388428509235382, 0.011206504888832569, 0.002015715464949608, -0.012967526912689209, 0.010900872759521008, 0.013113065622746944, 0.01822148635983467, 0.011701337993144989, -0.000233317245147191, -0.013294990174472332, -0.001663692994043231, 0.004784595221281052, -0.024028493091464043, -0.006996788550168276, -0.018032284453511238, -0.026473548263311386, 0.007618967909365892, -0.0010497001931071281, 0.023038826882839203, 0.0033892400097101927, 0.005937992129474878, 0.01397174596786499, 0.0024741634260863066, 0.0022303855512291193, -0.004424386192113161, 0.007604414131492376, 0.01312034297734499, 0.0013935361057519913, -0.02172897569835186, -0.023053381592035294, 0.009030696004629135, -0.023475443944334984, -0.00416969321668148, 0.038189440965652466, -0.01705717295408249, -0.0269392728805542, 0.009190789423882961, -0.004719102755188942, -0.008222955279052258, -0.018032284453511238, -0.008863326162099838, -0.00701861921697855, 0.006480125244706869, -0.0038968073204159737, -0.005315812770277262, -0.0026779179461300373, -0.015106950886547565, -0.005097504239529371, -0.0001240492711076513, 0.007084112148731947, -0.004369809292256832, 0.007895492017269135, -0.022354794666171074, 0.006145385093986988, 0.022966058924794197, -0.0005907974555157125, 0.00638552475720644, -0.005817922297865152, 0.012967526912689209, -0.03248431161046028, -0.004846449475735426, 0.012479971162974834, 0.015761876478791237, 0.015412583015859127, -0.013586067594587803, -0.0026688219513744116, 0.011337489821016788, -0.014721272513270378, -0.011453920975327492, 0.017013512551784515, -0.011846876703202724, 0.0210158359259367, 0.02382473833858967, 0.008448540233075619, -0.014160946942865849, 0.009569190442562103, -0.004249739460647106, -0.001500871148891747, 0.010835380293428898, -0.011060966178774834, -0.0027470490895211697, -0.03455096483230591, -0.01312034297734499, -0.0018246955005452037, 0.01580553874373436, 0.017668437212705612, -0.00037203411920927465, 0.00747342873364687, 0.017450129613280296, 0.006989511661231518, 0.005745152942836285, -0.01516516599804163, 0.011599460616707802, 0.0007249662885442376, 0.01270555704832077, -0.00782272219657898, -0.00881966482847929, 0.024916280061006546, -0.0016227600863203406, 0.01859988644719124, 0.02369375340640545, -0.010064023546874523, 0.004206077661365271, 0.01235626358538866, -0.0041842469945549965, -0.008084692992269993, -0.010784441605210304, 0.01736280508339405, 0.001660054549574852, 0.0014462940162047744, -0.0015663637313991785, 0.011868707835674286, -0.013040296733379364, -0.014168224297463894, -0.010893596336245537, -0.004606310278177261, 0.016344033181667328, -0.02231113240122795, -0.012785603292286396, -0.007582582999020815, 0.016271263360977173, -0.029180575162172318, -0.025440221652388573, -0.005403136368840933, 0.0005280337645672262, 0.007233289536088705, 0.007560752332210541, 0.014044515788555145, 0.0037621837109327316, 0.010158623568713665, 0.00610172376036644, -0.030504979193210602, -0.0001665739546297118, -0.003973215352743864, 0.0070695579051971436, 0.009772945195436478, 0.01793040707707405, -0.015732768923044205, -0.002043004147708416, -0.009474590420722961, -0.013607898727059364, 0.018687210977077484, -0.0009487324859946966, 0.01135932095348835, -0.002386840060353279, -0.0024887172039598227, 0.0074443211778998375, 0.0007022257777862251, -0.002852564910426736, -0.018992843106389046, 0.02752142958343029, 0.02091395854949951, -0.014917749911546707, -0.0071350508369505405, -0.02075386419892311, -0.020695649087429047, 0.003689414355903864, -0.017159050330519676, -0.031378213316202164, -0.0022995166946202517, 0.017013512551784515, -0.00881966482847929, 0.016154831275343895, 0.014743102714419365, 0.01692618802189827, 0.009460036642849445, 0.008332109078764915, -0.008812387473881245, -0.011599460616707802, -0.0202008169144392, -0.0018283339450135827, -0.023795630782842636, -0.013294990174472332, 0.019371245056390762, -0.014066346921026707, 0.007917323149740696, -0.01057341042906046, 0.0036548487842082977, -0.002517825225368142, -0.013986300677061081, 0.005555952433496714, 0.018163269385695457, 0.022514887154102325, 0.0015481713926419616, 0.02838010899722576, 0.0137534374371171, 0.002334082033485174, -0.03129088878631592, 0.01419005449861288, -0.028278231620788574, 0.004966519307345152, -0.01368794497102499, -0.017115389928221703, 0.005210297182202339, -0.01609661616384983, 0.0244214478880167, 0.004657248966395855, -0.018701763823628426, -0.0034492749255150557, 0.017435574904084206, -0.014677610248327255, -0.015252489596605301, -0.013826207257807255, -0.009125296957790852, -0.015834646299481392, -0.0017719375900924206, 0.012676448561251163, 0.011679506860673428, 0.013673391193151474, -0.010769887827336788, -0.010355101898312569, -0.00610172376036644, 0.019953399896621704, -0.007844553329050541, -0.008892434649169445, 0.018396133556962013, -0.018148716539144516, -0.006662048865109682, 0.0005757887847721577, -0.01793040707707405, 0.01226893998682499, 0.015121504664421082, 0.0051993816159665585, -0.02624068595468998, 0.0007231470081023872, -0.017246374860405922, 0.018279701471328735, 0.010420594364404678, 0.01192692294716835, 0.00681122625246644, 0.02427591010928154, 0.00020398203923832625, 0.019720537588000298, -0.0004720922152046114, -0.0129020344465971, -0.0036912334617227316, 0.0017673894762992859, -0.0011752275750041008, -0.023635538294911385, -0.00451898667961359, -0.008695956319570541, -0.01079171895980835, 0.005865222774446011, 0.010238670744001865, -0.005828837864100933, -0.02200550027191639, -0.00036407497827894986, -0.038014791905879974, -0.005668744910508394, 0.004398916848003864, 0.003947746008634567, 0.004253378137946129, 0.0004484421224333346, 0.006945849861949682, 0.01353512890636921, -0.012967526912689209, -0.013018465600907803, 0.012065185233950615, -0.02044823206961155, 0.031669292598962784, -0.007113219704478979, -0.012829264625906944, 0.006967680994421244, -0.019662322476506233, 0.01877453364431858, 0.007844553329050541, 0.00038727023638784885, -0.0019884270150214434, -0.004118754528462887, 0.02174353040754795, 0.01608206145465374, 0.0022194702178239822, 0.026022378355264664, 0.01516516599804163, -0.02567308396100998, -0.010959088802337646, 0.023926615715026855, -0.017406467348337173, 0.0007695375825278461, 0.0014308305690065026, 0.00903797335922718, -0.004351616837084293, 0.010784441605210304, 0.0032127739395946264, 0.008812387473881245, 0.0011879622470587492, -0.001680975779891014, 0.009409097954630852, -0.0006276370259001851, -0.023737415671348572, -0.009350881911814213, 0.007098665926605463, -0.01948767527937889, 0.00804103072732687, -0.0064910403452813625, 0.003918638452887535, -0.01990973763167858, 0.016620555892586708, -0.006629302632063627, 0.004504432901740074, -0.012079739011824131, 0.016693325713276863, -0.004162415862083435, -0.006567448377609253, 0.014000854454934597, 0.013142174109816551, 0.0036857756786048412, 0.01234170887619257, 0.002022992353886366, -0.025294682011008263, -0.005526844412088394, -0.018658103421330452, -0.002228566212579608, 0.005359474569559097, -0.004307955037802458, 0.016838865354657173, 0.014168224297463894, 0.0005412232712842524, 0.005872499663382769, 0.005443159490823746, -0.00818657036870718, 0.01859988644719124, -0.0022976973559707403, -0.030272116884589195, 0.0006039869622327387, -0.0030126578640192747, 0.0010988196590915322, -0.005250320304185152, 0.008113800548017025, 0.024508772417902946, 0.021627098321914673, -0.007178712170571089, -0.0032473395112901926, 0.005847030319273472, -0.004384363070130348, -0.0134696364402771, 0.010093131102621555, 0.011563075706362724, -0.014059069566428661, 0.013877145946025848, 0.013986300677061081, 0.009161681868135929, -0.005901607219129801, 0.01750834472477436, -0.011330213397741318, 0.01298935804516077, 0.021234143525362015, 0.012691003270447254, -0.020069831982254982, 0.023897508159279823, -0.01859988644719124, 0.012909311801195145, 0.010682564228773117, 0.01270555704832077, -0.010151347145438194, 0.005825199652463198, 0.002259493339806795, 0.0057778991758823395, -0.005847030319273472, 0.013658837415277958, -0.009219896979629993, -0.01648957096040249, -0.013214942999184132, 0.01221072394400835, 0.011381152085959911, 0.018963735550642014, 0.013040296733379364, -0.01790129952132702, 0.001096090767532587, -0.001646410208195448, 0.020521001890301704, 0.01064617931842804, -0.010908150114119053, -0.017304589971899986, 0.004559009801596403, 0.0013116704067215323, -0.0005848849541507661, 0.010784441605210304, 0.0033328437712043524, -0.003682137234136462, 0.0009460036526434124, -0.003341939765959978, -0.021976392716169357, -0.0024668865371495485, -0.0026378948241472244, -0.0003060867602471262, 0.00578881474211812, 0.00938726682215929, -0.006763926241546869, 0.010245947167277336, -0.026313455775380135, 0.002646991051733494, -0.031814832240343094, -0.013724329881370068, -0.008179293014109135, 0.011388428509235382, -0.013586067594587803, -0.036763157695531845, 0.01609661616384983, 0.014655780047178268, 0.008572248741984367, 0.030563194304704666, -0.004737295210361481, -0.03385237604379654, 0.0010760792065411806, 0.011883261613547802, -0.0016837045550346375, -0.008070139214396477, -0.009118019603192806, 0.008979758247733116, 0.01270555704832077, 0.0009523709886707366, -0.005868860986083746, -0.00011438458022894338, 0.013156727887690067, -0.020419124513864517, 0.014357424341142178, 0.006825780030339956, 0.004286124370992184, -0.0018810918554663658, 0.004267931915819645, 0.013214942999184132, 0.000617176410742104, -0.002068473491817713, -0.0019738730043172836, 0.003600271651521325, 0.010973642580211163, 0.005406774580478668, 0.001131565892137587, 0.04273025691509247, 0.0014353786827996373, -0.004351616837084293, 0.019851522520184517, 0.0015718215145170689, 0.00039409237797372043, 0.013935361988842487, 0.009045250713825226, -0.0052139353938400745, -0.004118754528462887, -0.010093131102621555, 0.016969850286841393, 0.005847030319273472, 0.010478809475898743, -0.02725945971906185, -0.009227174334228039, 0.013811653479933739, 0.0013244050787761807, 0.007829999551177025, 0.008681402541697025, -0.010071300901472569, 0.002203096868470311, -0.0007690828060731292, 0.021059496328234673, -0.0009341785917058587, 0.006283647380769253, -0.027768846601247787, -0.010413317009806633, -0.012676448561251163, -0.020491894334554672, -0.0057160453870892525, 0.01101002749055624, 0.010260500945150852, -0.015325259417295456, 0.013702498748898506, 0.010195008479058743, 0.022543994709849358, -0.004435301758348942, -0.02356276847422123, -0.014415640383958817, -0.006181770004332066, 0.011875984258949757, -0.007677183486521244, -0.013236774131655693, 0.002827095566317439, 0.023460891097784042, 0.002621521707624197, -0.02242756448686123, 0.018803641200065613, -0.024232247844338417, 0.010369655676186085, -0.003551152301952243, -0.01270555704832077, 0.0023049742449074984, -0.007429767400026321, -0.019007395952939987, 0.01544169057160616, -0.022689534351229668, 0.02015715464949608, 0.0015418040566146374, 0.00019215699285268784, 0.004671802744269371, 0.015237935818731785, -0.0025596676860004663, -0.011432090774178505, -0.022951504215598106, -0.005177550949156284, 0.019705984741449356, 0.04773680120706558, 0.024086708202958107, 0.00409328518435359, 0.006145385093986988, 0.01874542608857155, -0.034638289362192154, 0.013294990174472332, -0.006629302632063627, -0.00747342873364687, 0.017406467348337173, 0.010777165181934834, -0.001298935734666884, 0.025935053825378418, 0.030592303723096848, -0.012014246545732021, 0.01221072394400835, -0.0077135683968663216, 0.021248698234558105, 0.0039222766645252705, 0.011046412400901318, -0.00585430720821023, -0.0034529133699834347, -0.005312174558639526, -0.0045808409340679646, 0.024887172505259514, -0.00022410735255107284, -0.004140585195273161, -0.00528670521453023, -0.004631779622286558, 0.02088484913110733, 0.021336020901799202, -0.008164739236235619, -0.02300971932709217, 0.01806139200925827, 0.012167062610387802, 0.015558121725916862, 0.008630463853478432, 0.009510975331068039, 0.008273893967270851, 0.008353940211236477, -0.030359439551830292, -0.0196332149207592, 0.000281981861917302, -0.0024395978543907404, -0.015761876478791237, 0.021656205877661705, 0.011330213397741318, 0.00405326159670949, -0.02330079860985279, 0.013214942999184132, 0.005355835892260075, 0.01488136500120163, -0.0067457337863743305, -0.0028925880324095488, -0.005177550949156284, 0.009474590420722961, 0.0016918911132961512, -0.019138380885124207, -0.003565706079825759, -0.012720110826194286, -0.012596402317285538, -0.0071969046257436275, 0.004835533909499645, 0.035627953708171844, -0.014211885631084442, 0.024363232776522636, -0.0028689380269497633, 0.010071300901472569, 0.013527852483093739, -0.00782272219657898, 0.006389162968844175, -0.01653323322534561, 0.001646410208195448, -0.017391912639141083, -0.015179719775915146, -0.009154404513537884, -0.023169811815023422, -0.01164312195032835, -0.03347397595643997, 0.015077843330800533, -0.007105942815542221, 0.01312034297734499, 0.021496113389730453, 0.0002451422915328294, -0.011628568172454834, -0.0004086463013663888, -0.005417690146714449, 0.008717787452042103, 0.01101002749055624, -0.01806139200925827, -0.017100835219025612, 0.006196323782205582, -0.013025742955505848, -0.002594233024865389, 0.02976273000240326, 0.01094453502446413, -0.02117592841386795, 0.0172027125954628, 0.004861003253608942, 0.014291931875050068, 0.003973215352743864, 0.0177703145891428, -0.005061119794845581, -0.002867118688300252, 0.009685622528195381, -0.030970703810453415, 0.004347978159785271, 0.005159358493983746, -0.004591756034642458, 0.013891699723899364, -0.006534702144563198, 0.019676875323057175, -0.0002483259595464915, 0.010835380293428898, -0.001578188850544393, 0.02302427403628826, 0.005104781128466129, 0.007258758880198002, 0.020695649087429047, 0.010325993411242962, -0.010391485877335072, -0.006254539359360933, 0.016984404996037483, -0.00017555644444655627, 0.0018901880830526352, -0.01036237832158804, 0.003498394275084138, 0.01235626358538866, -0.015907416120171547, -0.002475982764735818, 0.015572675503790379, -0.021365128457546234, -0.004126031417399645, 0.009809330105781555, -0.006436463445425034, 0.008710511028766632, 0.02187451533973217, -0.00825933925807476, 0.03458007052540779, -0.0034820211585611105, -0.014284655451774597, 0.009198066778481007, 0.02229657769203186, 0.00847037136554718, 0.012545463629066944, 0.006654771976172924, -0.017886746674776077, 0.020826634019613266, 0.028845835477113724, -0.023810183629393578, 0.011606737039983273, -0.017828529700636864, 0.0015136058209463954, 0.0064910403452813625, -0.006381886079907417, -0.0037730992771685123, -0.015106950886547565, 0.013105789199471474, 0.007917323149740696, -0.009059804491698742, 0.0019411267712712288, 0.00483189569786191, 0.013637006282806396, 0.0069276574067771435, 0.00769173726439476, 0.004599033389240503, -0.00895064976066351, 0.009052527137100697, -0.00532308965921402, -0.008506756275892258, 0.004115115851163864, 0.002121231285855174, -0.005490459501743317, 0.00550501374527812, -0.006341862957924604, 0.01191964652389288, -0.004653610289096832, -0.006127193104475737, -0.029457097873091698, 0.0015690926229581237, 0.028147246688604355, -0.001258912612684071, 0.023912061005830765, 0.002359551377594471, 0.010849934071302414, 0.010173177346587181, -0.007156881503760815, 0.0196332149207592, 0.015019627287983894, -0.0016664218856021762, -0.00825206283479929, 0.018527118489146233, -0.0013034838484600186, -0.025891391560435295, -0.005479544401168823, 0.026851950213313103, 0.002143062185496092, 0.0017200893489643931, -0.04700910300016403, -0.019167490303516388, 0.000996942282654345, 0.005403136368840933, -0.014786764979362488, -0.006389162968844175], "5428fbdd-f596-42e9-b75e-2e7e1e153e90": [-0.00855884701013565, -0.008317443542182446, -0.009978006593883038, 0.03742484003305435, -0.03160189837217331, -0.0014657939318567514, 0.0031236133072525263, 0.036137353628873825, 0.0039100032299757, 0.0056693218648433685, -0.006733691319823265, 0.019253747537732124, -0.007223813328891993, -0.02743220143020153, -0.00612652488052845, 0.014879226684570312, -0.018492961302399635, 0.0232625063508749, 0.03262603282928467, -0.03999980911612511, 0.0743815004825592, 0.0012115889694541693, -0.04550087824463844, -0.024798709899187088, 0.012545660138130188, 0.004359891172498465, -0.04222364351153374, 0.022443199530243874, -0.04286738857626915, -0.005138965789228678, 0.018961137160658836, -0.0067995283752679825, 0.014176961965858936, 0.0026938421651721, 0.008032148703932762, -0.026890873908996582, -0.012794379144906998, 0.0120189618319273, -0.036898139864206314, -0.05217238888144493, -0.03435243293642998, 0.02472555823624134, -0.002410376211628318, -0.00631672190502286, -0.024842601269483566, 0.023569747805595398, 0.015508337877690792, -0.020760690793395042, -0.0025091320276260376, -0.004286738578230143, 0.021653151139616966, -0.007746853865683079, -0.010570541955530643, -0.0060387421399354935, 0.03130928799510002, -0.014264744706451893, 0.01569853536784649, 0.016517844051122665, 0.020848473533988, -0.03288938105106354, -0.0033723320811986923, 0.020526602864265442, -0.015376663766801357, -0.02816372737288475, 0.009451308287680149, 0.007900474593043327, 0.021931130439043045, -0.029202492907643318, -0.03411834314465523, -0.014030656777322292, -0.002417691284790635, 0.027519984170794487, -0.04991929233074188, -0.00846374873071909, 0.039590153843164444, -0.0353180468082428, 0.045705705881118774, 0.027549246326088905, 0.023101571947336197, -0.006865365896373987, 0.015303511172533035, 0.018244242295622826, 0.017995525151491165, 0.009619559161365032, 0.04754915088415146, 0.03558139503002167, 0.0004528599383775145, -0.044710829854011536, 0.007201867178082466, -0.008163823746144772, -0.003520465921610594, -0.0008449118467979133, -0.0255156047642231, 0.0005929927574470639, -0.002099477918818593, 0.009590297937393188, 0.03446947783231735, 0.022121326997876167, 0.026773829013109207, -0.016781192272901535, -0.0017547465395182371, -0.003964867442846298, 0.007275019772350788, -0.018171090632677078, 0.014791443012654781, 0.00016299300477840006, -0.0120189618319273, -8.475407230434939e-05, -0.01125817559659481, 0.035932525992393494, 0.0005061241099610925, -0.024169597774744034, -0.009758548811078072, 0.004136776085942984, -0.02397940121591091, -0.012333517894148827, -0.022165218368172646, 0.00507312873378396, -0.001146666007116437, -0.024330534040927887, 0.003441826906055212, 0.02746146358549595, 0.009773178957402706, -0.010928989388048649, 0.008851457387208939, 0.013628317974507809, 0.017937002703547478, -0.0323626846075058, 0.019019659608602524, -0.007498135324567556, -0.0036631133407354355, 0.009656134992837906, 0.05029968544840813, 0.047900281846523285, 0.013738046400249004, -0.025676541030406952, 0.022487090900540352, 0.0519675649702549, -0.03692740201950073, 0.03242120519280434, -0.0479295440018177, -0.03669331222772598, -0.030782587826251984, 0.03707370534539223, 0.03218711540102959, -0.024813340976834297, -0.024418316781520844, 0.026627523824572563, -0.015815578401088715, 0.010080419480800629, -0.04675910249352455, -0.04090689867734909, 0.00904896855354309, 0.008010203018784523, 0.023847727105021477, -0.006327694747596979, 0.03926828131079674, 0.0013213177444413304, -0.01543518528342247, 0.03657626733183861, 0.013262555003166199, -0.0332990363240242, 0.00014767669199500233, 0.04678836464881897, 0.05313800275325775, -0.011470317840576172, 0.009678080677986145, 0.0003198137565050274, 7.469559932360426e-05, 0.023438073694705963, 0.002876723650842905, -0.020468080416321754, 0.010665640234947205, -0.03037293441593647, 0.0009034338290803134, -0.025076691061258316, 0.02965603955090046, 0.0002436893992125988, 0.032977163791656494, -0.013343023136258125, -0.029056187719106674, -0.004341603256762028, -0.0323626846075058, -0.01738104224205017, 0.03154337406158447, -0.009129436686635017, 0.004125803243368864, 0.04945111647248268, -0.01884409412741661, -0.01275048777461052, -0.0070189861580729485, -0.02134591154754162, -0.0005957359680905938, -0.02277970127761364, -0.02200428396463394, -0.003558871103450656, 0.004743942059576511, 0.01985359936952591, 0.004857328720390797, 0.018068676814436913, -0.009422047063708305, -0.06097995489835739, -0.024096446111798286, 0.016839714720845222, -0.01613744907081127, 0.03941458836197853, -0.04523753002285957, -0.025530235841870308, 0.00440378300845623, -0.03961941599845886, 0.023130832239985466, -0.031748201698064804, 0.009136752225458622, 0.01764439232647419, -0.01324060931801796, 0.0069824098609387875, -0.015874100849032402, 0.057234544306993484, 0.022472459822893143, -0.01566927321255207, -0.035405829548835754, 0.0008389681461267173, -0.018039416521787643, -0.028017422184348106, -0.05802459269762039, 0.010468128137290478, 0.002737733768299222, 0.002468898193910718, -0.025164473801851273, -0.013562480919063091, 0.028968404978513718, -0.003946579527109861, 0.009817070327699184, -0.027871116995811462, -0.003302837023511529, 0.06203335151076317, 0.020233992487192154, -0.03034367226064205, 0.002563996473327279, 0.009092860855162144, -0.001495969365350902, 0.002931587863713503, -0.013043097220361233, 0.011770243756473064, 0.008397911675274372, -0.00269932858645916, 0.0337672121822834, 0.03277233615517616, -0.013145511038601398, -0.0074469284154474735, 0.005354765802621841, 0.024608513340353966, -0.002649950794875622, -0.0056729791685938835, -0.03356238454580307, 0.036342181265354156, 0.0035241234581917524, -0.023672161623835564, 0.041521381586790085, -0.011909233406186104, 0.009846331551671028, -0.014059918001294136, 0.015771687030792236, 0.045179009437561035, 0.01885872520506382, -0.0066897994838654995, 0.013884351588785648, -0.020950887352228165, 0.006623962428420782, 0.010738792829215527, -0.0024359794333577156, 0.007827321998775005, 0.004089226946234703, 0.01015357207506895, 0.01910744234919548, 0.004498881287872791, -0.01915133371949196, 0.0021013065706938505, 0.0037070049438625574, 0.0006784897996112704, -0.016810452565550804, 0.0022457828745245934, 0.02078995108604431, -0.011719036847352982, 0.0028876964934170246, 0.04231142997741699, -0.03619587421417236, 0.03534730523824692, -0.06484241038560867, -0.00010755709081422538, 0.02428664267063141, 0.017951633781194687, 0.014242799021303654, 0.008010203018784523, 0.022179849445819855, 0.003268089611083269, -0.011111870408058167, 0.005519358906894922, -0.05580075457692146, 0.007710277568548918, 0.015288880094885826, -0.010073104873299599, 0.0077029624953866005, -0.0006085376953706145, 0.05076786130666733, -0.029100079089403152, 0.07291845232248306, 0.0606873445212841, -0.008229660801589489, 0.012911423109471798, 0.026100825518369675, -0.05190904065966606, -0.03675183653831482, 0.012274996377527714, 0.01915133371949196, 0.016239862889051437, 0.014535409398376942, -0.038331929594278336, 0.01743956468999386, -0.05416214093565941, -0.0002208292280556634, 4.954941323376261e-05, -0.044037826359272, 0.025910628959536552, 0.018024785444140434, -0.06929008662700653, 0.032216377556324005, -0.009224534966051579, 0.020658276975154877, -0.046905405819416046, -0.019721925258636475, -0.01982433721423149, -0.025091320276260376, -0.011250860057771206, -0.029348798096179962, -0.025105951353907585, -0.024315902963280678, -0.07367923855781555, -0.0050950744189321995, -0.012435931712388992, 0.010043843649327755, -3.1932797810441116e-06, 0.023950140923261642, -0.006130182649940252, 0.04117024689912796, 0.011243545450270176, -0.0023829438723623753, 0.0015362033154815435, -0.01790774054825306, 0.020965516567230225, 0.0008773732697591186, -0.00809798575937748, 0.018975768238306046, 0.012823640368878841, 0.008383280597627163, -0.03502543643116951, -0.005724186077713966, -0.0014621363952755928, 0.005833914969116449, 0.0015608923276886344, 0.017073802649974823, -0.006536179222166538, 0.017059171572327614, 0.023716052994132042, -0.009656134992837906, 0.0007118656649254262, 0.0015453473897650838, -0.011031403206288815, -0.01238472480326891, -0.004557403270155191, -0.035171739757061005, 0.01637153886258602, -0.033884257078170776, 0.006949491333216429, -0.04114098846912384, -0.024301273748278618, 0.05334283038973808, -0.004813436884433031, -0.0014731092378497124, 0.007490819785743952, -0.017307890579104424, -0.017995525151491165, 0.022340785712003708, -0.004352576099336147, 0.03382573276758194, 0.008653945289552212, 0.03821488469839096, -0.0036685997620224953, 0.00637524388730526, -0.009422047063708305, -0.048163630068302155, 0.012157951481640339, -0.026422696188092232, -0.024052554741501808, -0.025778954848647118, -0.017088433727622032, -0.015991145744919777, -0.02008768729865551, 0.012377409264445305, -0.012311572209000587, -0.011009456589818, -0.014542724937200546, 0.014133070595562458, 0.004378179553896189, 0.03326977416872978, -0.02747609280049801, -0.03575696051120758, 0.048397719860076904, 0.01090704370290041, 0.02251635119318962, 0.038361191749572754, -0.010570541955530643, -0.013986765407025814, 0.0054462063126266, 0.05465957522392273, -0.007973626255989075, -0.004345260560512543, 0.023701421916484833, -0.017805328592658043, -0.02301378920674324, 0.04362817481160164, 0.035405829548835754, 0.009217219427227974, 0.027256635949015617, -0.003405250608921051, 0.007834636606276035, 0.008690521121025085, 0.0421651229262352, -0.005091416649520397, 0.005570565816015005, -0.022691916674375534, 0.019195226952433586, 0.016854343935847282, -0.011492263525724411, -0.004780518356710672, -0.04289664700627327, -0.001298457500524819, 0.0007831893744878471, -0.0019732897635549307, -0.009926799684762955, -0.013577111065387726, -0.007607864215970039, -0.031045937910676003, -0.0005312702851369977, -0.009107491001486778, -0.012896792963147163, -0.01543518528342247, -0.012179898098111153, 0.019765816628932953, -0.001652332954108715, 0.02327713742852211, 0.026846980676054955, -0.04684688523411751, -0.002207377925515175, -0.025852106511592865, 0.02348196506500244, -0.0089465556666255, -0.00575344730168581, 0.02545708417892456, -0.05811237543821335, -0.05065081641077995, -0.02133128046989441, -0.01100214198231697, 0.010438866913318634, -0.007944365963339806, -0.032684553414583206, 0.038068581372499466, 0.023862358182668686, 0.0031492167618125677, 0.04904146119952202, 0.021901870146393776, -0.016342276707291603, 0.024564621970057487, 0.028822099789977074, -0.009407415986061096, -0.021389802917838097, -0.0198389682918787, 0.02475481852889061, -1.865961166913621e-05, 0.018931876868009567, -0.003443655790761113, -0.023467333987355232, 0.011206968687474728, 0.0242720115929842, 0.015069423243403435, 0.01863926649093628, -0.017790697515010834, -0.0073006232269108295, 0.007688331883400679, -0.0230284184217453, 0.06203335151076317, 0.009480568580329418, 0.020658276975154877, 0.029275646433234215, -0.023818466812372208, 0.008361334912478924, -0.006272830069065094, -0.0367225743830204, -0.00698606763035059, -0.014996270649135113, 0.030724065378308296, -0.015844840556383133, -0.01862463541328907, 0.0007242101128213108, 0.0012353635393083096, -0.011448372155427933, -0.04099468141794205, 0.012560291215777397, -0.006137498188763857, 0.011214284226298332, -0.03280159831047058, 0.018990399315953255, -0.0074469284154474735, 0.02989012748003006, 0.019517097622156143, 0.01861000619828701, -0.0017556608654558659, -0.01531814131885767, 0.04111172631382942, -0.002499988069757819, -0.00612652488052845, -0.032479725778102875, -0.013994080945849419, 0.013920928351581097, 0.007915104739367962, 0.0060753184370696545, -0.017834588885307312, -0.029480472207069397, 0.00883682630956173, -0.0314263291656971, 0.0023116201627999544, 0.004352576099336147, -0.02576432377099991, -0.008602738380432129, 0.0005948215839453042, -0.02204817533493042, -0.0035533844493329525, 0.010255985893309116, -0.01588873192667961, -0.02323324605822563, -0.014528093859553337, 0.02990475855767727, 0.0164154302328825, -0.022487090900540352, 0.015508337877690792, 0.037629663944244385, -0.012413986027240753, 0.014652453362941742, 0.0005884207203052938, 0.01686897501349449, -0.041053205728530884, 0.030460717156529427, -0.00453179981559515, 0.012048223055899143, 0.007223813328891993, -0.035610657185316086, 0.012560291215777397, 0.012238419614732265, -0.005724186077713966, -0.014842649921774864, -0.011148447170853615, 0.02500353753566742, 0.004429385997354984, -0.0014584787422791123, -0.006773924920707941, -0.013898982666432858, 0.010804629884660244, 0.009239166043698788, 0.028236879035830498, -0.0013140024384483695, 0.03353312239050865, -0.0020391270518302917, 0.03037293441593647, 0.001281083794310689, 0.01051933504641056, 0.030694805085659027, 0.0005134393577463925, 0.009839016012847424, -0.06367196887731552, 0.004853670950978994, -0.002395745599642396, -0.02452073059976101, 0.029714561998844147, 0.005237721838057041, 0.029816973954439163, 0.020497340708971024, -0.01613744907081127, -0.018683157861232758, -0.002686526859179139, 0.0012911423109471798, 0.031748201698064804, 0.005599827039986849, -0.01640079915523529, -0.014637823216617107, -0.01481338869780302, 0.014996270649135113, 0.009502515196800232, 0.0009445821633562446, 0.028002791106700897, 0.009012392722070217, 0.01764439232647419, 0.019751185551285744, 0.04234068840742111, -0.025427822023630142, -0.03871232271194458, 0.012326202355325222, -0.00483538256958127, 0.008522271178662777, 0.026305653154850006, 0.03405982255935669, -0.002962677739560604, -0.008617369458079338, 0.035786222666502, -0.032947901636362076, 0.031689681112766266, -0.016956757754087448, 0.00807604007422924, 0.016795823350548744, -0.001656905049458146, 0.006931202951818705, 0.015405924990773201, -0.03558139503002167, 0.029743822291493416, -0.041258033365011215, 0.035874005407094955, 0.0075932336039841175, -0.004425728693604469, 0.004305026959627867, -0.014652453362941742, 0.0035314387641847134, -0.010753422975540161, -0.007267704699188471, 0.0074469284154474735, -0.013130880892276764, 0.015610751695930958, 0.00818576943129301, 0.030226629227399826, 0.013708786107599735, -0.001554491464048624, 0.005394999869167805, -0.0009025194449350238, -0.014411049894988537, 0.008317443542182446, 0.027139591053128242, 0.0005459008389152586, 0.006708087865263224, 0.0006624876987189054, 0.023642899468541145, 0.020131578668951988, 0.013269870541989803, -0.006276487838476896, -0.019487835466861725, -0.01068027038127184, 0.031982291489839554, -0.003666770877316594, 0.01102408766746521, -0.006565440446138382, 0.0036631133407354355, -0.006144813261926174, 0.02936342917382717, 0.053518395870923996, -0.02643732726573944, 0.014432995580136776, -0.0025292490608990192, 0.009290372021496296, 0.03315272927284241, 0.006806843914091587, -0.01421353779733181, 0.01571316458284855, -0.006287460681051016, 0.011214284226298332, -0.023452702909708023, -0.009348894469439983, -0.015786318108439445, 0.0037636980414390564, -0.0088295117020607, -0.02301378920674324, -0.005793680902570486, 0.009451308287680149, -0.029217123985290527, -0.028822099789977074, -0.04728579893708229, -0.04623240604996681, -0.012150636874139309, -0.0010762567399069667, -0.007234786171466112, 0.020497340708971024, 0.024608513340353966, -0.017702914774417877, -0.0090635996311903, -0.038331929594278336, -0.010182833299040794, 0.00581196928396821, 0.019531726837158203, -0.002505474491044879, -0.005124335177242756, 0.007863897830247879, 0.0019440286559984088, 0.015259619802236557, -0.024359796196222305, -0.037834491580724716, -0.012033592909574509, 0.029451211914420128, -0.019970642402768135, 0.02059975452721119, 0.0006071660900488496, -0.0193707924336195, -0.05091416835784912, -0.016342276707291603, 0.014740236103534698, 0.006448396481573582, 0.012392040342092514, 0.025105951353907585, -0.008866087533533573, -0.025632649660110474, 0.008368650451302528, -0.0010305363684892654, 0.0185953751206398, -0.017000649124383926, 0.017834588885307312, 0.009678080677986145, 0.03994128480553627, -0.03698592260479927, -0.0019421998877078295, -0.025603387504816055, 0.010607117787003517, -0.0037929590325802565, 0.008112616837024689, 0.00133229058701545, 0.010014582425355911, 0.0337672121822834, 0.024608513340353966, 0.027622397989034653, 0.010087735019624233, 0.0030760641675442457, 0.028061313554644585, 0.0038441659417003393, -0.0045427726581692696, 0.06618841737508774, -0.040555767714977264, 0.0023445389233529568, -0.00662030465900898, 0.017585869878530502, -0.019780445843935013, -0.01125817559659481, 0.015405924990773201, 0.0435696505010128, -0.001249079592525959, 0.005837572738528252, -0.033942777663469315, 0.027827225625514984, -0.033416081219911575, 0.010833891108632088, 0.023642899468541145, -0.009056284092366695, 0.0015800948021933436, 0.02667141519486904, -0.013189402408897877, 0.01284558605402708, 0.02402329444885254, 0.015976514667272568, -0.00858079269528389, 0.01666414737701416, -0.025340039283037186, -0.0033156387507915497, 0.005186514928936958, 0.01912207342684269, 0.009721972048282623, 0.025895997881889343, 0.003703347174450755, 0.02225300297141075, 0.008500324562191963, 0.008149192668497562, 0.03997054696083069, -0.009465938434004784, -0.009531775489449501, 0.029934018850326538, 0.011060663498938084, -0.035669177770614624, -0.037102967500686646, -0.004140433855354786, -0.017951633781194687, 0.010965565219521523, -0.02867579460144043, 0.04064355045557022, -0.021272758021950722, 0.03602030873298645, 0.003578987903892994, -0.022443199530243874, -0.014732921496033669, 0.0011942151468247175, -0.007000697776675224, 0.03227489814162254, -0.017029911279678345, -0.011638568714261055, -0.015259619802236557, -0.0015389465261250734, -0.01884409412741661, 0.0003408451157156378, -0.017205476760864258, 0.029202492907643318, -0.020906995981931686, 0.0348498709499836, 0.008668575435876846, 0.008280867710709572, -0.015171836130321026, 0.0010405948851257563, -0.0008261664770543575, -0.03233342245221138, 0.011989700607955456, -0.0027797964867204428, -0.025120582431554794, -0.0006867194315418601, 0.009831701405346394, -0.02304304949939251, -2.2117212211014703e-05, 0.0028730658814311028, 0.0012920567533001304, 0.011850710958242416, -0.017980894073843956, -0.015230358578264713, 0.003072406630963087, 0.024184228852391243, 0.00883682630956173, 0.012999205850064754, -0.0035332676488906145, 0.044681571424007416, -0.020877733826637268, 0.014447626657783985, -0.0070921387523412704, -0.03619587421417236, -0.008588108234107494, 0.002084847306832671, 0.02914397045969963, 0.0027852829080075026, 0.019721925258636475, 0.003348557511344552, -0.01250176876783371, -0.03400129824876785, 0.04675910249352455, -0.02280896157026291, -0.02449147030711174, -0.033181991428136826, -0.01666414737701416, 0.01397213526070118, -0.008449118584394455, 0.009582982398569584, 0.03379647433757782, 0.051089733839035034, 0.046642057597637177, 0.007988257333636284, -0.019517097622156143, 0.03010958433151245, -0.002214692998677492, -0.022735808044672012, 0.024359796196222305, -0.017220107838511467, 0.014513463713228703, -0.007527396082878113, 0.0028200303204357624, 0.029948649927973747, 0.023321028798818588, -0.049392592161893845, 0.007688331883400679, -0.02057049423456192, -0.01078999973833561, -0.0010753422975540161, -0.02744683250784874, -0.010263301432132721, -0.007344515062868595, -0.006770267616957426, 0.0006720889359712601, 0.019546357914805412, 0.0023189354687929153, -0.0070555624552071095, -0.006572755519300699, 0.007849267683923244, -0.010724161751568317, -0.02667141519486904, -0.028865991160273552, -0.009656134992837906, -0.006024111527949572, -0.0022457828745245934, 0.02645195834338665, -0.022428568452596664, 0.02330639958381653, 0.0217848252505064, -0.017337150871753693, 0.003637509886175394, 0.034410953521728516, 0.014337897300720215, 0.0016212430782616138, -0.014301321469247341, -0.00587049126625061, 0.0031419014558196068, -0.011587361805140972, -0.005307216662913561, -0.01738104224205017, -0.0012161609483882785, -0.03446947783231735, -3.994814323959872e-05, -0.03818562626838684, -0.01615208014845848, 0.029319537803530693, 0.01980970799922943, -0.031953029334545135, 0.01422816887497902, -0.00582294212654233, 0.0029608490876853466, 0.008785619400441647, -0.002426835475489497, 0.019239118322730064, -0.017263999208807945, -0.02206280641257763, 0.034206125885248184, 0.009312317706644535, -0.03013884648680687, -0.00205375743098557, 0.0024871863424777985, -0.020892364904284477, 0.027622397989034653, 0.004502538591623306, 0.008083355613052845, -0.00954640656709671, -0.0025530236307531595, -0.014762181788682938, 0.0034034219570457935, -0.009012392722070217, 0.014506148174405098, 0.009948745369911194, -0.05185052007436752, 0.010160887613892555, 0.0009107490768656135, -0.010007266886532307, 0.0018370430916547775, 0.01483533438295126, 0.018756311386823654, -0.021462954580783844, -0.016810452565550804, -0.030051061883568764, -0.00520114554092288, -0.01956098899245262, 0.010716847144067287, -0.005526674445718527, 0.002695671049878001, 0.011931179091334343, -0.012450561858713627, 0.03602030873298645, -0.01397213526070118, 0.036898139864206314, -0.012560291215777397, 0.022589504718780518, 0.005833914969116449, -0.02083384245634079, -0.007776114623993635, 0.0087124677374959, -0.00520114554092288, -0.023174723610281944, -0.006876338738948107, 0.0035753303673118353, -0.008536901324987411, -0.013013836927711964, -0.014286690391600132, 0.0015654643066227436, -0.021009409800171852, 0.027593137696385384, -0.025383930653333664, 0.004992660600692034, -0.025413190945982933, -0.018580744042992592, -0.01643005944788456, -0.004319657571613789, 0.017527347430586815, 0.014740236103534698, 0.009370840154588223, -0.03487912937998772, -0.03999980911612511, -0.005435233470052481, -0.02523762546479702, 0.007695646956562996, 0.048368457704782486, -0.0054462063126266, 0.003708833595737815, -0.03446947783231735, -0.027505354955792427, 0.0005367567646317184, -0.030928893014788628, 0.008485694415867329, -0.03926828131079674, 0.007198209874331951, 0.04898294061422348, -0.03502543643116951, -0.013920928351581097, 0.01051933504641056, 0.011243545450270176, -0.013394230045378208, -0.010043843649327755, -0.024696296080946922, -0.0029827947728335857, -0.04040946066379547, 0.0010433380957692862, -0.02769555151462555, -0.029334167018532753, 0.056971196085214615, -0.024915754795074463, 0.023189354687929153, -0.001503284671343863, 0.011404480785131454, 0.0010223067365586758, 0.021653151139616966, -0.013986765407025814, -0.010226724669337273, 0.02772481180727482, -0.021272758021950722, -0.018917245790362358, 0.003811247181147337, 0.00020905623387079686, -0.059195034205913544, -0.005775392986834049, 0.023950140923261642, -0.03432317078113556, -0.008449118584394455, 0.016737300902605057, 0.019546357914805412, -0.01210674550384283, 0.009151382371783257, 0.006869023200124502, -0.014571985229849815, 0.019283009693026543, 0.008061409927904606, -0.023086940869688988, -0.007293308153748512, 0.020892364904284477, -0.040819115936756134, 0.011309382505714893, -0.02544245310127735, 0.0033302693627774715, -0.03224563971161842, -0.006452053785324097, -0.01915133371949196, 0.04090689867734909, -0.002119594719260931, -0.004422070924192667, 0.015230358578264713, 0.038566019386053085, -0.012545660138130188, 0.005482782609760761, -0.0011649541556835175, 0.005405972711741924, 0.0056693218648433685, 0.020511971786618233, 0.0026554372161626816, 0.008631999604403973, -0.008866087533533573, 0.0072640469297766685, 0.010029212571680546, 0.004524484276771545, 0.002185432007536292, -0.007315253838896751, 0.014637823216617107, 0.0026828693225979805, -0.023350290954113007, 0.02159462869167328, -0.023950140923261642, 0.027095699682831764, -0.027841856703162193, -0.02033640630543232, 0.005914382636547089, 0.02036566659808159, -0.008595422841608524, 0.009999952279031277, 0.02649584971368313, 0.02225300297141075, 0.010365714319050312, 0.006437423173338175, 0.014528093859553337, 0.01787848025560379, -0.0007886757957749069, 0.04040946066379547, -0.014915802516043186, -0.024549992755055428, -0.007922420278191566, -0.006642250344157219, -0.0012792550260201097, -0.0014356186147779226, -0.028353923931717873, -0.0038075896445661783, 0.01421353779733181, 0.0033083234447985888, 0.013694155029952526, -0.018054045736789703, -0.011916548945009708, -0.0005445292335934937, 0.01005847379565239, -0.010343768633902073, -0.005618114955723286, -0.016093557700514793, 0.02375994436442852, 0.004904877860099077, -0.009173328056931496, 0.004480592906475067, -0.007432297803461552, 0.01508405338972807, 0.014630507677793503, 0.02523762546479702, -0.013789253309369087, -0.006415477488189936, 0.009619559161365032, -0.024579253047704697, 0.008734413422644138, 0.03581548109650612, 0.00460129464045167, -0.0065764132887125015, 0.002904155757278204, -0.0003950237005483359, -0.0036996896378695965, 0.0012042736634612083, -0.013167456723749638, -0.008785619400441647, 0.012487138621509075, 0.010241355746984482, -0.02257487364113331, -0.011887287721037865, -0.008383280597627163, -0.017776066437363625, 0.003964867442846298, 0.010007266886532307, 0.015391293913125992, -0.000800563080701977, 0.02103867009282112, 0.01432326715439558, -0.02428664267063141, 0.018580744042992592, -0.02305768057703972, 0.008529585786163807, -0.009268426336348057, -0.008178453892469406, 0.020906995981931686, -0.018229613080620766, 0.019517097622156143, -0.012589551508426666, 0.003390620229765773, 0.003869769163429737, 0.002454267581924796, 0.014659768901765347, -0.031718939542770386, -0.026569001376628876, -0.026656784117221832, 0.0007895902381278574, -0.03534730523824692, 0.01640079915523529, -0.017893111333251, 0.006923887878656387, 0.023818466812372208, 0.0069458335638046265, -0.026422696188092232, 0.0018324711127206683, -0.006773924920707941, 0.002267728792503476, -0.016283754259347916, -0.024403687566518784, 0.003507664194330573, -0.002463411772623658, -0.012172582559287548, -0.009868277236819267, 0.005497413221746683, 0.028017422184348106, -0.020160838961601257, 0.01691286638379097, -0.005735158920288086, 0.002273215213790536, -0.004970714915543795, 0.012311572209000587, 0.01861000619828701, -0.02134591154754162, 0.023686792701482773, -0.04339408501982689, -0.008749043568968773, -0.006569097749888897, 0.027300527319312096, 0.0009528117952868342, 0.0017885795095935464, -0.013138195499777794, 0.007450586184859276, -0.022018913179636, 0.0016066125826910138, 0.006280145607888699, -0.010782684199512005, 0.011638568714261055, 0.0353180468082428, -0.005351108033210039, -0.010358399711549282, -0.02643732726573944, -0.013811198994517326, 0.006473999470472336, -0.008617369458079338, -0.013891667127609253, -0.010855836793780327, 0.026349544525146484, 0.007732223253697157, 0.002940732054412365, -0.020965516567230225, -0.001997064333409071, -0.00588146410882473, -0.01907818205654621, -0.03803931921720505, 0.002662752289324999, 0.0012079313164576888, -0.0183612871915102, -0.04781249910593033, -0.04114098846912384, 0.014257430098950863, 0.002931587863713503, -0.004670789465308189, -0.03233342245221138, 0.009012392722070217, 0.00010744279279606417, -0.013635633513331413, -0.012516398914158344, -0.0011859855148941278, 0.02544245310127735, 0.0019037948222830892, 0.020263252779841423, -0.00452082697302103, -0.019209856167435646, -0.006371586117893457, -0.0023774574510753155, 0.0019129388965666294, -0.012179898098111153, -0.00133229058701545, -0.004937796387821436, 0.013072358444333076, -0.011441056616604328, 0.029246384277939796, 0.007944365963339806, 0.018727049231529236, -0.0353180468082428, -0.013928242959082127, -0.010709531605243683, 0.014564670622348785, -0.013050412759184837, -0.020658276975154877, -0.0025658253580331802, -0.00470736576244235, 0.02111182175576687, -0.003522294806316495, 0.0022988184355199337, 0.0033266115933656693, -0.012377409264445305, 0.020453449338674545, 0.004817094653844833, -0.007139687892049551, -0.009985321201384068, -0.00016756502736825496, -0.01421353779733181, 0.012904107570648193, -0.0213166493922472, 0.0421651229262352, -0.016986019909381866, 0.004747599828988314, -0.035113219171762466, -0.013460067100822926, 0.013855090364813805, -0.03239194303750992, -0.07642976939678192, -0.02080458216369152, 0.023862358182668686, 0.006166758947074413, -0.0018315566703677177, 0.0012627956457436085, -0.013328392058610916, -0.014045286923646927, 0.02323324605822563, 0.027300527319312096, 0.004352576099336147, 0.01840517856180668, 0.010394975543022156, -0.024608513340353966, -0.008507640101015568, -0.014037972316145897, -0.0166495181620121, 0.015757055953145027, 0.030753327533602715, -0.01663488708436489, -0.020687537267804146, 0.002295160898938775, 0.037805233150720596, -0.002969993045553565, 0.0010936304461210966, -0.01296994462609291, 0.02967066876590252, 0.0029279303271323442, 0.016049666330218315, 0.0011192337842658162, -0.011675145477056503, 0.007238443475216627, 0.008917294442653656, 0.031514111906290054, 0.0025182762183248997, 0.013679524883627892, -0.0032644320745021105, 0.03312347084283829, -0.027300527319312096, -0.004959742072969675, -0.025530235841870308, -0.01666414737701416, -0.006137498188763857, -0.0011265490902587771, 0.009597613476216793, -0.004740284290164709, -0.014798758551478386, 0.007157975807785988, -0.011975070461630821, -0.002810886362567544, -0.011455687694251537, -0.034908391535282135, 0.015522968955338001, -0.012582236900925636, 0.016020406037569046, -0.016035037115216255, 0.02111182175576687, -0.00038359363679774106, -0.012318887747824192, -0.019429314881563187, -0.023920880630612373, 0.017746806144714355, -0.018039416521787643, -0.0121360057964921, -0.01358442660421133, 0.005738816689699888, -0.0036338523495942354, 0.015874100849032402, -0.008653945289552212, -0.0312800258398056, -0.031982291489839554, 0.008917294442653656, -0.0020720455795526505, -0.0073737758211791515, -0.0105412807315588, -0.01957562007009983, -0.004283081274479628, -0.006806843914091587, -0.00023088770103640854, 0.009348894469439983, -0.0036356812343001366, 0.016986019909381866, -0.010073104873299599, -0.019195226952433586, 0.01717621646821499, -0.030694805085659027, -0.020190101116895676, -0.007205524947494268, 0.004283081274479628, 0.0025585100520402193, 0.01689823716878891, 0.006411820184439421, -0.01588873192667961, -0.004557403270155191, -0.024827972054481506, 0.03449873626232147, -0.0017437735805287957, -0.06092143431305885, -0.008690521121025085, 0.00980244018137455, 0.0015828380128368735, 0.023218614980578423, -0.010746107436716557, -0.04242847114801407, 0.03801006078720093, 0.001630387152545154, -0.005797338671982288, 0.02374531328678131, -0.017527347430586815, -0.012238419614732265, 0.013313761912286282, -0.020672908052802086, 0.004711023531854153, 0.02351122535765171, 0.040263157337903976, -0.016269125044345856, 0.00483538256958127, 0.01767365261912346, -0.009195273742079735, -0.01078999973833561, 0.035113219171762466, -0.000468176236608997, 0.003370503196492791, 0.005640060640871525, -0.004308684729039669, -0.007428640499711037, -0.018668528646230698, 0.02937806025147438, 0.04073133319616318, 0.015874100849032402, 0.029714561998844147, -0.021887239068746567, -0.03853675723075867, -0.017585869878530502, -0.003194937016814947, 0.0036777439527213573, 0.011126501485705376, -0.01015357207506895, 0.020029164850711823, 0.0033375846687704325, -0.008646629750728607, -0.008456433191895485, -0.021199606359004974, -0.00507312873378396, 0.011945809237658978, 0.0007987342542037368, 0.009700026363134384, -0.029275646433234215, 0.004967057146131992, 0.007681016344577074, 0.01713232509791851, 0.023423442617058754, 0.020424189046025276, 0.00893192458897829, 0.014001395553350449, -0.020014533773064613, -0.02105330117046833, -0.0004924079985357821, 0.020687537267804146, 0.01014625746756792, 0.011967754922807217, -0.021155714988708496, 0.0029206150211393833, 0.01593262329697609, 0.004268450662493706, 0.007688331883400679, 0.02179945632815361, -0.021609259769320488, -0.0014401905937120318, -0.023950140923261642, 0.023701421916484833, -0.06150665506720543, -0.006583728361874819, -0.0005523016443476081, 0.014352528378367424, -0.01531814131885767, 0.018171090632677078, -0.0008330245036631823, 0.0257496926933527, 0.007607864215970039, 0.00735914520919323, -0.006927545182406902, -0.044184133410453796, -0.027242004871368408, -0.006927545182406902, -0.004370864015072584, -0.01028524711728096, -0.032216377556324005, -0.0035241234581917524, -0.0053181895054876804, 0.0012582236668094993, 0.007827321998775005, -0.009224534966051579, -0.036400701850652695, -0.019707294180989265, -0.011119185946881771, -0.01784921996295452, -0.007403037045150995, 0.005768077448010445, -0.010555910877883434, -0.015844840556383133, 0.0011887287255376577, 0.01174098253250122, 0.0023061337415128946, -0.006719060707837343, -0.015610751695930958, 0.005376711487770081, 0.024886492639780045, -0.03204081207513809, 0.015215728431940079, -0.04096542298793793, -0.015362032689154148, -0.01531814131885767, 0.011016772128641605, -0.01739567331969738, -0.004001443739980459, -0.023086940869688988, 0.007066535297781229, -0.023862358182668686, 0.0031638473737984896, 0.0008197656134143472, 0.004209928680211306, 0.01468903012573719, -0.021726304665207863, -0.01594725251197815, 0.029948649927973747, 0.03215785697102547, -0.00027226461679674685, 0.010585172101855278, -0.0007306109764613211, 0.0014219024451449513, -0.009502515196800232, 0.013540535233914852, -0.0014411050360649824, -0.0065032606944441795, -0.0015700364019721746, 0.010080419480800629, -0.015537599101662636, 0.0025109609123319387, 0.03923902288079262, -0.022677287459373474, 0.0007502707303501666, 0.014264744706451893, 0.011419110931456089, -0.015757055953145027, -0.023203985765576363, -0.006828789599239826, 0.005841230042278767, -0.014571985229849815, 0.017220107838511467, 0.0038880573119968176, -0.005563250742852688, 0.0029882811941206455, 0.0052048033103346825, -0.004769545514136553, -0.005614457186311483, 0.021448323503136635, 0.004070938564836979, -0.011887287721037865, 0.019019659608602524, -0.017951633781194687, -0.016795823350548744, 0.024315902963280678, 0.000869143579620868, 0.009495199657976627, -0.023672161623835564, 0.0217848252505064, 0.019253747537732124, -0.006700772326439619, -0.015830209478735924, -0.00855884701013565, 0.01565464399755001, -0.0200730562210083, -0.0092976875603199, -0.02867579460144043, -0.012231104075908661, -0.01321866363286972, 0.023657530546188354, -0.011353273876011372, 0.0071908943355083466, 0.00978049449622631, 0.02545708417892456, -0.014915802516043186, -0.010980196297168732, 0.025910628959536552, -0.016503212973475456, -0.007746853865683079, 0.009334264323115349, -0.007066535297781229, 0.0185953751206398, 0.0031766488682478666, -0.008990447036921978, 0.011089924722909927, 0.0002606059133540839, 0.002425006590783596, -0.011682460084557533, -0.009882908314466476, 0.005266982596367598, 0.009136752225458622, 0.004195298068225384, 0.02349659614264965, 0.0021433692891150713, -0.02987549640238285, -0.0065032606944441795, -0.005896094720810652, -0.006554467603564262, 0.014052602462470531, 0.01840517856180668, 0.0181271992623806, -0.0007598719676025212, -0.002679211786016822, -0.008573477156460285, 0.007922420278191566, 0.007915104739367962, 0.012809009291231632, -0.008880718611180782, -0.0017766922246664762, -0.0050621554255485535, 0.05705897882580757, 0.0016029550461098552, 0.030051061883568764, 0.012231104075908661, -0.0026590947527438402, -0.011697091162204742, -0.02159462869167328, -0.00605703005567193, 0.012662704102694988, 0.005566908046603203, 0.0017456024652346969, -0.004809779580682516, -0.00041948407306335866, 0.0036631133407354355, -0.02671530656516552, 0.01980970799922943, 0.01811256818473339, 0.027754073962569237, -0.0028182014357298613, 0.022384677082300186, -0.013533219695091248, -0.00991948414593935, -0.014257430098950863, 0.0013258897233754396, -0.012187212705612183, 0.004030704963952303, 0.024827972054481506, 0.02769555151462555, 0.016342276707291603, 0.013321077451109886, -0.003041316755115986, -0.005325504578649998, 0.0007822749321348965, -0.009092860855162144, -0.002860264154151082, 0.012340833432972431, -0.0007379262242466211, 0.021184975281357765, 0.010270616039633751, 0.02005842514336109, -0.0047622304409742355, -0.004820752423256636, 0.016956757754087448, 0.028602642938494682, 0.0005221262690611184, -0.0016358736902475357, 0.022223740816116333, -0.007951680570840836, 0.00722015555948019, 0.018273504450917244, -0.016356907784938812, -0.013635633513331413, -0.00957566685974598, 0.005010948982089758, 0.0067995283752679825, -0.010629063472151756, 0.016313016414642334, -0.017893111333251, 0.01138985063880682, -0.00642279302701354, -0.0025841135066002607, -0.004626898095011711, -0.02305768057703972, -0.02374531328678131, -0.02206280641257763, -0.02672993764281273, -0.0024926727637648582, -0.0016797651769593358, 0.0026097167283296585, -0.0017785211093723774, 0.011089924722909927, 0.010270616039633751, 0.01741030439734459, -0.029582886025309563, 0.0038331930991262197, 0.02254561148583889, -0.007439613342285156, 0.02617397904396057, 0.017337150871753693, 0.01909281313419342, -0.0018964795162901282, 0.009795124642550945, -0.005665664095431566, -0.0161813423037529, 0.005544962361454964, 0.003174820216372609, 0.0047622304409742355, 0.0008490266627632082, 0.01138985063880682, -0.022677287459373474, -0.016986019909381866, -0.01005115918815136, -0.005109705030918121, 0.008171138353645802, -0.0028145438991487026, 0.00397949805483222, 0.01139716524630785, 0.0024926727637648582, 0.028602642938494682, -0.009370840154588223, 0.006221623159945011, 0.010073104873299599, -0.006850735284388065, 0.014857280999422073, -0.006642250344157219, -0.004904877860099077, 0.023086940869688988, 0.015991145744919777, -0.025822846218943596, 0.008763673715293407, -0.026773829013109207, -0.01713232509791851, -0.005179199855774641, 0.004857328720390797, -0.029187863692641258, -0.006130182649940252, 0.014016026630997658, 0.007754168938845396, -0.002831003163009882, -0.008749043568968773, 0.002772481180727482, 0.022370046004652977, -0.016576364636421204, -0.008895348757505417, 0.023876989260315895, 0.0022787016350775957, -0.011609307490289211, -0.0037783286534249783, 0.007798060774803162, -0.0028566066175699234, 0.02942195162177086, 0.010928989388048649, 0.008310128003358841, -0.02373068407177925, 0.0022841880563646555, 0.008588108234107494, -0.00904896855354309, 0.0033156387507915497, -0.004059965722262859, -0.0078200064599514, 0.003646654076874256, 0.008046778850257397, 0.008968501351773739, 0.0010744278552010655, 0.03130928799510002, 0.017571238800883293, -0.02080458216369152, -0.02790037728846073, 0.011031403206288815, -0.02083384245634079, 0.0171176940202713, -0.015113314613699913, -0.015859469771385193, -0.017776066437363625, -0.01247982308268547, -0.0015234015882015228, -0.03871232271194458, 0.01811256818473339, -0.0060021658428013325, -0.005826599895954132, -0.004743942059576511, -0.018961137160658836, 0.00502557959407568, 0.005234064068645239, 0.0013853261480107903, 0.012070168741047382, -0.009092860855162144, 0.035113219171762466, 0.0065398369915783405, -0.02863190323114395, -0.01619597151875496, 0.005830257199704647, -0.018727049231529236, -0.030021801590919495, -0.010299877263605595, -0.02743220143020153, -0.008683206513524055, 0.015215728431940079, -0.011031403206288815, 0.020394926890730858, -0.0011183194583281875, -0.0026042303070425987, 0.01520109735429287, -0.0073006232269108295, 0.0074103521183133125, -0.013562480919063091, 0.00416603684425354, -0.006071660667657852, -0.00545717915520072, 0.016708040609955788, -0.007761484477669001, 0.027563875541090965, 0.005588853731751442, 0.011931179091334343, 0.00017499459499958903, 0.005307216662913561, -0.002459754003211856, 0.029773082584142685, 0.015332772396504879, 0.0073371995240449905, -0.012157951481640339, 0.01689823716878891, 0.0007461559143848717, 0.00994142983108759, 0.005720528308302164, -0.02304304949939251, -0.003549726912751794, -0.013130880892276764, -0.009934114292263985, 0.004904877860099077, -0.035610657185316086, -0.0070921387523412704, 0.0061484710313379765, 0.010365714319050312, -0.012787063606083393, -0.00727867754176259, 0.017512718215584755, -0.01956098899245262, 0.009531775489449501, -0.027359049767255783, -0.006971437018364668, -0.009209904819726944, 0.005793680902570486, 0.003535096300765872, -0.005863175727427006, 0.007681016344577074, -0.014901172369718552, 0.0037673558108508587, 0.01471097581088543, 0.0017620617290958762, 0.008909978903830051, -0.002644464373588562, -0.007549341768026352, 0.019239118322730064, -0.012238419614732265, 0.006832446902990341, 0.009985321201384068, -0.003884399775415659, 0.03432317078113556, -0.0034454844426363707, -0.015537599101662636, 0.011960440315306187, 0.007761484477669001, -0.01384046021848917, 0.011697091162204742, -0.008522271178662777, -0.004871958866715431, 0.00600948091596365, 0.011938494630157948, -2.64892205450451e-05, -0.0001995692728087306, -0.016547104343771935, -0.010980196297168732, 0.011858026497066021, 0.019546357914805412, -0.008302813395857811, 0.0018589888932183385, -0.013138195499777794, -0.00017590899369679391, -0.015976514667272568, 0.013679524883627892, 0.0210825614631176, -0.009934114292263985, 0.009100175462663174, 0.018756311386823654, 0.010394975543022156, -0.021243497729301453, 0.0033613592386245728, 0.030460717156529427, -0.003244315041229129, 0.005958274472504854, -0.009912168607115746, 0.019531726837158203, 0.020702168345451355, 0.0042611355893313885, 0.0025292490608990192, 0.01833202689886093, -0.01285290066152811, -0.0035899607464671135, 0.03183598443865776, 0.006715402938425541, -0.00447327783331275, -0.017966262996196747, -0.023891618475317955, -0.013613687828183174, -0.011675145477056503, -0.0074469284154474735, 0.006993382703512907, 0.022487090900540352, 0.01865389756858349, -0.002430493012070656, -0.009158697910606861, 0.019268378615379333, -0.005570565816015005, 0.004085569176822901, -0.004743942059576511, -0.0027615083381533623, 0.004363548941910267, 0.007549341768026352, 0.018770940601825714, 0.016561735421419144, 0.001677021966315806, -0.012713911011815071, -0.015786318108439445, 0.0090635996311903, 0.007527396082878113, 0.02672993764281273, 0.01566927321255207, -0.004217243753373623, 0.004791491199284792, -0.011360589414834976, -0.0031839641742408276, 0.008222345262765884, -0.0044476743787527084, -0.00016985104593914002, 0.000913035124540329, 0.0033375846687704325, 0.012604182586073875, -0.0044476743787527084, 0.02229689434170723, -0.007512765470892191, 0.010921673849225044, 0.012070168741047382, 0.008405226282775402, -0.0020519287791103125, 0.0200730562210083, 0.0015151719562709332, -0.013065042905509472, 0.020965516567230225, -0.03525952249765396, 0.016298385336995125, -0.0011494092177599669, 0.011711721308529377, -0.013094304129481316, 0.014169646427035332, 0.0025530236307531595, 0.005592511501163244, -0.0039026879239827394, -0.005658349022269249, 0.014901172369718552, -0.03534730523824692, -0.00711408443748951, 0.0023061337415128946, -0.012062853202223778, 0.015347402542829514, 0.03724927082657814, -0.001495969365350902, -0.01014625746756792, 0.020775320008397102, 0.00440378300845623, 0.010197463445365429, 0.021506845951080322, 0.0005545876920223236, -0.0012280482333153486, -0.015771687030792236, -0.027359049767255783, 0.01934153027832508, 0.028119836002588272, -0.004085569176822901, 0.009860962629318237, -0.025544866919517517, 0.041755467653274536, -0.011916548945009708, -0.0014996270183473825, -0.009736603125929832, 0.01395750418305397, 0.00251278979703784, 0.019795076921582222, -0.0037783286534249783, -0.010563226416707039, -0.007937050424516201, -0.031953029334545135, -0.02330639958381653, 0.0003986813244409859, -0.008675890974700451, -0.0007168948650360107, -0.003311981214210391, 0.00041376904118806124, -0.005544962361454964, -0.014052602462470531, 0.06823668628931046, -0.01286753173917532, 0.0017081117257475853, -0.009326948784291744, 0.010870466940104961, 0.00193122704513371, -0.011887287721037865, 0.006228938698768616, -0.011038717813789845, 0.005117020104080439, -0.011638568714261055, 0.008749043568968773, 0.015581490471959114, -0.021184975281357765, 0.011104554869234562, 0.010409606620669365, -0.01615208014845848, 0.023672161623835564, 3.640481736510992e-05, -0.01029256172478199, 0.00037902159965597093, 0.008134562522172928, -0.0004679476551245898, 0.0051718843169510365, -0.0016075270250439644, -0.03596178814768791, -0.0010588830336928368, 0.00269932858645916, 0.015991145744919777, -0.002796255750581622, -0.004623240325599909, 0.006810501217842102, -0.01076805405318737, -0.00318762194365263, 0.025881368666887283, -0.005409630015492439, 0.006104579195380211, -0.008536901324987411, 0.018522223457694054, -0.007355487905442715, 0.018419809639453888, -0.014564670622348785, 0.001569121959619224, -0.0028639219235628843, 0.039356064051389694, -0.006499602925032377, 0.018010154366493225, 0.028119836002588272, -0.01543518528342247, 0.010724161751568317, 0.0004256563261151314, 0.0010506532853469253, -0.02421349100768566, 0.013767307624220848, -0.04339408501982689, -0.0061521283350884914, 0.0225602425634861, -0.020848473533988, -0.002099477918818593, 0.010043843649327755, -0.025310778990387917, -0.04035094007849693, 0.0011530668707564473, -0.0038039321079850197, 0.007651755586266518, -0.001794066047295928, -0.0019165965495631099, 0.009890222921967506, 0.003105325158685446, 0.014513463713228703, 0.0023445389233529568, 0.015786318108439445, 0.011755612678825855, 0.011814135126769543, -0.0036905454471707344, -0.01395750418305397, 0.005885121878236532, 0.004915850702673197, 0.027637029066681862, -0.029963279142975807, 0.0039026879239827394, -0.00044828790123574436, 0.029041558504104614, 0.010409606620669365, -0.004334287717938423, -0.030519239604473114, 0.037395577877759933, 0.020160838961601257, -0.007542026694864035, -0.006170416716486216, 0.0013972134329378605, 0.023833097890019417, 0.018200350925326347, -0.02351122535765171, -0.0010223067365586758, 0.018712420016527176, 0.0028547777328640223, 0.019780445843935013, -0.005614457186311483, 0.005190172698348761, 0.007157975807785988, -0.0032936930656433105, 0.00397949805483222, 0.010014582425355911, 0.03426465019583702, -0.007615179289132357, 0.005680294707417488, -0.004498881287872791, 0.002251269295811653, 0.01102408766746521, -0.0033796473871916533, 0.005087758880108595, 0.015479076653718948, -0.009561036713421345, 0.016854343935847282, -0.013767307624220848, -0.0007287821499630809, 0.0077029624953866005, 0.015581490471959114, 0.010365714319050312, 0.005797338671982288, 0.012626128271222115, 0.002865750575438142, 0.011492263525724411, 0.005409630015492439, 0.005277955438941717, -0.02548634447157383, 0.006741006392985582, 0.00881488062441349, 0.0027980846352875233, 0.010687585920095444, 0.014337897300720215, -0.024389056488871574, 0.01957562007009983, -0.010226724669337273, 0.006053372751921415, 0.02503279782831669, 0.02598378248512745, 0.002351853996515274, -0.003624708391726017, -0.02200428396463394, -0.0011100898263975978, 0.003200423438102007, 0.01888798549771309, 0.00195500161498785, 0.004111172631382942, 0.016342276707291603, -0.004634213168174028, 0.023408811539411545, -0.014849965460598469, 0.015786318108439445, -0.0032552878838032484, -0.008119931444525719, 0.009736603125929832, 0.01784921996295452, 0.010819260030984879, 0.009144066832959652, 0.017995525151491165, 0.04555940255522728, -0.00333392689935863, 0.022165218368172646, 0.0004144548438489437, 0.012604182586073875, -0.00968539621680975, -0.0120189618319273, -0.015069423243403435, 0.006927545182406902, 0.00798094179481268, -0.009473253972828388, 0.004593979567289352, -0.018273504450917244, -0.002454267581924796, 0.022633396089076996, 0.02396477200090885, 0.02522299438714981, -0.004630555864423513, 0.003580816788598895, -0.016225233674049377, -0.0012646245304495096, 0.012611497193574905, -0.01811256818473339, -0.02503279782831669, 0.010694901458919048, 0.014155016280710697, 0.009517145343124866, 0.0003063262556679547, 0.005351108033210039, -0.0021378828678280115, 0.013577111065387726, 0.023847727105021477, -0.018961137160658836, -0.004454989451915026, 0.010482758283615112, 0.01125817559659481, 0.031221503391861916, -0.00023077339574228972, -0.02106793038547039, 0.004623240325599909, 0.0181271992623806, -0.004136776085942984, -0.0007621580152772367, -0.011887287721037865, -0.029231755062937737, -0.0003424453316256404, -0.01638616807758808, 0.021931130439043045, 0.028002791106700897, 0.028119836002588272, 0.0016834228299558163, -0.024067185819149017, 0.006327694747596979, -0.014389104209840298, -0.017103062942624092, -0.00728965038433671, 0.005720528308302164, 0.001811439753510058, 0.0027267609257251024, -0.0014136728132143617, -0.02817835845053196, -0.01736641302704811, -0.007951680570840836, 0.004418413154780865, 0.0029004982206970453, -0.0017364583909511566, -0.006089949049055576, -0.006470342166721821, 0.006887311581522226, -0.013035782612860203, 0.006305748596787453, -0.023906249552965164, -0.001677021966315806, 0.004100199788808823, 0.021155714988708496, 0.012099429965019226, 0.01717621646821499, -0.0051718843169510365, 0.03850749507546425, -0.015113314613699913, 0.011419110931456089, -0.0060021658428013325, 0.0019257406238466501, 0.005676636938005686, -0.0004007387615274638, 0.008661260828375816, 0.01068027038127184, -0.017000649124383926, 0.003659455804154277, 0.004286738578230143, 0.013855090364813805, -0.01137521956115961, 0.0026462930254638195, -0.0070921387523412704, -0.028002791106700897, -0.01985359936952591, 0.02544245310127735, -0.006046057213097811, -0.028090573847293854, -0.011733666993677616, 0.005844887811690569, -0.004509854130446911, -0.022340785712003708, -0.006089949049055576, -0.002064730506390333, 0.011185023002326488, 0.016269125044345856, 0.0011274635326117277, 0.007414009887725115, 0.0028236880898475647, 0.003535096300765872, -0.005786365829408169, -0.014301321469247341, 0.004769545514136553, -0.006715402938425541, 0.01312356535345316, 0.007333541754633188, -0.022604133933782578, 0.002134225331246853, -0.043481867760419846, 0.028310032561421394, 0.0063569555059075356, -0.009897538460791111, -0.019473206251859665, 0.012077484279870987, 0.01152884028851986, 0.0017986380262300372, -0.0038368506357073784, 0.008939240127801895, 0.002368313493207097, -0.006335009820759296, -0.00869783665984869, -0.012713911011815071, -0.01508405338972807, -0.024886492639780045, 0.015391293913125992, 0.007037274073809385, -0.0038953726179897785, 0.0225602425634861, 0.0007520995568484068, 0.009348894469439983, -0.006675169337540865, -0.010299877263605595, -0.012333517894148827, 0.02694939449429512, -0.007293308153748512, -1.2730256457871292e-05, -0.0019257406238466501, 0.0025310777127742767, -0.009400101378560066, 0.015771687030792236, 0.008763673715293407, -0.003108982928097248, 0.008339389227330685, -0.02624713070690632, -0.014103809371590614, -0.006477657239884138, -0.0022165218833833933, -0.0019348845817148685, 0.0067629520781338215, -0.028500229120254517, -0.005848545581102371, -0.007428640499711037, 0.00029558196547441185, -0.009451308287680149, -0.009890222921967506, 0.0066532231867313385, 0.0025731404311954975, 0.022604133933782578, 0.008434487506747246, 7.755312253721058e-05, 0.0025182762183248997, -0.008222345262765884, 0.011755612678825855, -0.00194585754070431, -0.021755564957857132, 0.0019513439619913697, -0.03353312239050865, 0.03742484003305435, -0.009275741875171661, -0.009451308287680149, 0.0012390210758894682, 0.016254493966698647, 0.003997786436229944, -0.029085449874401093, 0.008134562522172928, 0.021462954580783844, -0.007739538326859474, 0.0050950744189321995, -0.0014392761513590813, -0.0027267609257251024, -0.017512718215584755, 0.01957562007009983, 0.008588108234107494, -0.009619559161365032, 0.0033631878904998302, -0.017454195767641068, -0.017029911279678345, 0.013416175730526447, -0.0024231779389083385, -0.005453521851450205, -0.0023500253446400166, -0.007095796056091785, -0.06431571394205093, -0.024345165118575096, 0.01068027038127184, 0.016517844051122665, 0.0035460693761706352, -0.0051316507160663605, 0.003171162446960807, -0.015771687030792236, 0.022969897836446762, 0.010373029857873917, 0.0017145125893875957, -0.00600948091596365, 0.002434150781482458, 0.005519358906894922, -0.009626873768866062, 0.011316698044538498, 0.001691652461886406, 0.009817070327699184, 0.01444031111896038, 0.02080458216369152, 0.016620256006717682, 0.002017181133851409, -0.007293308153748512, 0.003906345460563898, 0.011945809237658978, 0.004608609713613987, -0.0185953751206398, 0.0050219218246638775, 0.014996270649135113, 0.0070921387523412704, -0.015815578401088715, -0.010109680704772472, -0.010482758283615112, -0.020438820123672485, -0.01483533438295126, 0.021419063210487366, -0.002862093038856983, 0.009714657440781593, 0.035376567393541336, -0.0004841783666051924, 0.00871978234499693, -0.01884409412741661, -0.009122121147811413, -0.02991938777267933, 0.002796255750581622, 0.027124961838126183, 0.0019787761848419905, 0.018449069932103157, -0.015010900795459747, 0.006825131829828024, 0.003825877793133259, -0.03309420868754387, -0.011821449734270573, 0.04491565749049187, -0.02374531328678131, 0.0072274706326425076, -0.008653945289552212, 0.006704430095851421, 0.006144813261926174, -0.00966345053166151, 0.00920258928090334, 0.01556686032563448, -0.011009456589818, 0.0030888658948242664, 0.014133070595562458, -0.004513511434197426, 0.0041184877045452595, 0.002136054215952754, -0.00032804341753944755, -0.009502515196800232, -0.004681762307882309, -0.005925355479121208, 0.005790023598819971, 0.0018544167978689075, 0.0012792550260201097, 0.028763577342033386, -0.019297638908028603, 0.013708786107599735, 0.016590995714068413, -0.019721925258636475, -0.004996318370103836, 0.015362032689154148, -0.0077029624953866005, -0.01834665611386299, -0.0004396010481286794, -0.012721226550638676, -0.00660933181643486, -0.00022940179042052478, -0.023628270253539085, 0.002360998187214136, 0.005757104605436325, -0.012084798887372017, 0.00041216882527805865, 0.012274996377527714, -0.01565464399755001, -0.013379598967730999, 0.017029911279678345, 4.634899232769385e-05, -0.004996318370103836, 0.01884409412741661, -0.017527347430586815, -0.019253747537732124, 0.010263301432132721, -0.0060753184370696545, -0.004444016609340906, -0.004129461012780666, -0.00954640656709671, 0.001136607606895268, -0.021375171840190887, -0.0032223693560808897, 0.03496691212058067, 0.014857280999422073, 0.02377457544207573, 0.007216497790068388, 0.013225979171693325, -0.007070192601531744, 0.005182857159525156, 0.018580744042992592, -0.007929734885692596, 0.025369299575686455, 0.0066532231867313385, 0.010160887613892555, 0.0021964048501104116, 0.008317443542182446, -0.014118439517915249, 0.014118439517915249, 0.000898404628969729, -0.017819957807660103, -0.0010360227897763252, -0.012238419614732265, -0.00834670476615429, -0.006064345594495535, 0.009392785839736462, -0.006477657239884138, 0.024462208151817322, 0.01834665611386299, 0.006071660667657852, 0.005325504578649998, 0.011675145477056503, -0.006254542153328657, 0.020936256274580956, 0.009217219427227974, 0.022384677082300186, -0.012940684333443642, 0.008727097883820534, 0.011792189441621304, -0.0016047838144004345, 0.015493707731366158, 0.014147700741887093, 0.0008042207336984575, 0.0034601150546222925, 0.04002906754612923, 0.0012847414473071694, 0.005065813194960356, 0.004418413154780865, 0.03084111027419567, 0.005358423572033644, -0.011206968687474728, 0.0030961812008172274, 0.00337416073307395, 0.004367206711322069, -0.0019037948222830892, 0.00027226461679674685, -0.031689681112766266, 0.005091416649520397, -0.030753327533602715, -0.024345165118575096, -0.01287484634667635, 0.027344418689608574, -0.005266982596367598, -0.021901870146393776, -0.010248670354485512, 0.006627620197832584, -0.012926053255796432, 0.0039026879239827394, 0.0020427845884114504, -0.019517097622156143, -0.0119019178673625, -0.007194552104920149, -0.010848521254956722, 0.003048632061108947, 0.014784128405153751, 0.010446182452142239, 0.02397940121591091, 0.008456433191895485, -0.0171176940202713, -0.009027022868394852, 0.008500324562191963, -0.01909281313419342, 0.006144813261926174, -0.00966345053166151, 0.0010085905669257045, -0.0018763625994324684, -0.021931130439043045, -0.0069092572666704655, -0.011814135126769543, -0.02133128046989441, -0.004747599828988314, 0.01386240590363741, 0.03312347084283829, 0.009078229777514935, 0.02058512344956398, -0.01201164722442627, -0.024681666865944862, 0.0001475623867008835, 0.004992660600692034, 0.00477686058729887, -0.010197463445365429, 0.013781937770545483, 0.00194585754070431, 0.0106583246961236, 0.0028438048902899027, -0.019531726837158203, 0.03034367226064205, 0.0042611355893313885, -0.003924633841961622, -0.01199701614677906, 0.003994128666818142, 0.024462208151817322, -0.011404480785131454, -0.03520100191235542, 0.005106047261506319, -0.014513463713228703, 0.010212094523012638, -0.007549341768026352, 0.0014529923209920526, 0.002637149067595601, 0.002527420176193118, -0.005468152463436127, 0.0011027745204046369, -0.005731501150876284, -0.0002978679840452969, 0.011697091162204742, 0.04046798497438431, 0.021272758021950722, -0.023920880630612373, -0.006825131829828024, -0.026583632454276085, 0.004893905017524958, 0.00269932858645916, 0.0037929590325802565, 0.011382535099983215, -0.005530331749469042, 0.020248621702194214, -0.004217243753373623, 0.003385133808478713, -0.02399403229355812, 0.004469620063900948, -0.008983131498098373, -0.015171836130321026, -0.017322521656751633, -0.02790037728846073, -0.001048824517056346, -0.007973626255989075, -0.0034290251787751913, 0.0025383930187672377, -0.011404480785131454, -0.014169646427035332, -0.0065764132887125015, 0.009890222921967506, 0.009751233272254467, 0.002390259178355336, 0.009692711755633354, 0.004440359305590391, -0.009231850504875183, -0.00855884701013565, -0.014908486977219582, -0.019795076921582222, 0.011594677343964577, -0.002666410058736801, 0.00809067115187645, -0.03013884648680687, 0.014491518028080463, 0.007776114623993635, -0.009561036713421345, 0.011009456589818, -0.003441826906055212, -0.00722015555948019, 0.0094147315248847, 0.008880718611180782, 0.0026353201828897, -0.001466708374209702, 0.005888779181987047, 0.006814158987253904, -0.020394926890730858, 0.01571316458284855, -0.004392809700220823, 0.011470317840576172, -0.009831701405346394, 0.003964867442846298, 0.003035830333828926, 0.015303511172533035, -0.0034253676421940327, -0.01591799221932888, 0.012026277370750904, -0.010219410061836243, 0.025808215141296387, 0.0012847414473071694, 0.008602738380432129, 0.011850710958242416, 0.0008334817248396575, 0.020380297675728798, 0.012143321335315704, -0.001713598263449967, -0.0076663861982524395, 0.004484250675886869, -0.0164154302328825, 0.0171176940202713, 0.007995572872459888, -0.021228866651654243, 0.005424260627478361, -0.012816324830055237, 0.013577111065387726, -0.0006510575767606497, 0.009473253972828388, -0.0012591381091624498, -0.0011558100813999772, 0.044447481632232666, 0.01907818205654621, 0.010563226416707039, 0.0035698439460247755, -0.00711408443748951, -0.005680294707417488, -0.003348557511344552, -0.012713911011815071, -0.029041558504104614, 0.006214308086782694, -0.0019147676648572087, -0.011411796323955059, -0.00667882664129138, 0.015127944760024548, 0.0025475372094660997, 0.013438121415674686, -0.0108924126252532, 0.00015922107559163123, 0.002975479466840625, -0.001674278755672276, -0.02103867009282112, 0.00967076513916254, 0.022735808044672012, -0.011989700607955456, 0.004147748928517103, -0.007893159054219723, 0.01263344381004572, -0.012552975676953793, 0.007915104739367962, 0.00855884701013565, 0.001532545662485063, -0.018741680309176445, 0.025603387504816055, 0.016561735421419144, 0.0006053372635506094, 0.04002906754612923, -0.004919508006423712, -0.004572033416479826, 0.013328392058610916, -0.004275765735656023, 0.002061072736978531, -0.003165676025673747, -0.007856582291424274, 0.018434438854455948, 0.005749789532274008, -0.0026536083314567804, -0.006602016743272543, 0.012516398914158344, 0.010958250612020493, 0.013306446373462677, -0.01760050095617771, -0.011887287721037865, -0.02425738237798214, 0.009480568580329418, -0.024886492639780045, -0.005581538658589125, 0.00704458961263299, -0.0019147676648572087, -0.014301321469247341, -0.009187959134578705, 0.019897490739822388, 0.008046778850257397, -0.004334287717938423, -0.0015581491170451045, 0.0033266115933656693, 0.0017081117257475853, 0.005837572738528252, 0.006159443873912096, -0.0041148304007947445, 0.004305026959627867, 0.012223789468407631, 0.004806121811270714, 0.02206280641257763, 0.013803884387016296, -0.0033942777663469315, -0.003928291145712137, -0.009173328056931496, 0.014564670622348785, 0.009158697910606861, -0.012933368794620037, 0.038566019386053085, -0.003942921757698059, 0.014601246453821659, 0.00011412939056754112, -0.00846374873071909, 0.0046890778467059135, -0.0061484710313379765, 0.012721226550638676, 0.003950237296521664, -0.006174074020236731, -0.009348894469439983, 0.003679572604596615, -0.017585869878530502, -0.0029590202029794455, -0.010131626389920712, -0.02182871662080288, -0.03277233615517616, 0.0015581491170451045, -0.008134562522172928, 0.01814183034002781, -0.01588873192667961, 0.009473253972828388, 0.010197463445365429, -0.007147002965211868, 0.00016665062867105007, 0.0036631133407354355, 0.018054045736789703, -0.0041514066979289055, 0.00844180304557085, 0.004886589478701353, -0.020716799423098564, -0.002962677739560604, -0.020965516567230225, -0.02838318422436714, 0.0052450369112193584, -0.0018928219797089696, 0.005947301164269447, 0.004297711420804262, 0.003167504910379648, -0.00045537453843280673, 0.007136030122637749, -0.029070818796753883, 0.0025731404311954975, 0.0017199990106746554, 0.006170416716486216, -0.017307890579104424, 0.0049121929332613945, 0.021258126944303513, -0.018010154366493225, 0.004352576099336147, 0.018712420016527176, 0.010438866913318634, 0.03379647433757782, -0.006239911541342735, -0.008683206513524055, 0.0007950766594149172, 0.021989652886986732, -0.022340785712003708, -0.009312317706644535, 0.006671511568129063, -0.011155761778354645, 0.004557403270155191, 0.007534711621701717, -0.0030742355156689882, -0.0019696319941431284, -0.011748298071324825, -0.024842601269483566, 0.020409557968378067, -0.0016962244408205152, 0.005054840352386236, -0.016590995714068413, 0.008434487506747246, 0.015186467207968235, 0.0036356812343001366, -0.025398561730980873, 0.008500324562191963, -0.009707341901957989, 0.0011960440315306187, -0.01358442660421133, -0.0088295117020607, 0.04017537459731102, 0.0017584041925147176, -0.0056729791685938835, -0.0038587963208556175, 0.000977500807493925, -0.005069470964372158, 0.013438121415674686, -0.002163486322388053, 0.011265491135418415, 0.003942921757698059, -0.0034290251787751913, 0.005643718410283327, 0.010299877263605595, 0.006704430095851421, -0.025837477296590805, -0.013269870541989803, -0.0062838029116392136, 0.009422047063708305, 0.014674399048089981, -0.0033010083716362715, -0.004242847207933664, -0.0033247829414904118, -0.005647376179695129, 0.024813340976834297, 0.011872656643390656, -0.009326948784291744, -0.03365016728639603, -0.01199701614677906, 0.009283057413995266, -0.0004023389483336359, -0.016810452565550804, 0.001735543948598206, 0.018902616575360298, -0.019048921763896942, 0.015581490471959114, 0.006953148636966944, 0.028544120490550995, -3.97766925743781e-05, -0.02374531328678131, -0.011367904022336006, -0.005029236897826195, 0.010629063472151756, 0.01174098253250122, 0.004206270910799503, 0.017337150871753693, 0.02447683922946453, 0.0009025194449350238, -0.015610751695930958, -0.0013130881125107408, 0.0035332676488906145, 0.0026060591917485, -0.003679572604596615, -0.022399308159947395, 0.00931963324546814, -0.008566162548959255, -0.020014533773064613, 0.021184975281357765, -0.01152884028851986, 0.002264071023091674, 0.00833207368850708, 0.007790745235979557, 0.0022494406439363956, 0.011580047197639942, 0.014052602462470531, 0.005885121878236532, 0.0034034219570457935, 0.0022988184355199337, 0.010819260030984879, 0.04292590916156769, -0.007885843515396118, -0.0005253266426734626, 0.001688909251242876, 0.011594677343964577, -0.01988285966217518, 0.011945809237658978, 0.009765863418579102, 0.004268450662493706, 0.011272805742919445, -0.0017446880228817463, 0.013628317974507809, -0.003610077779740095, 0.018507592380046844, -0.011967754922807217, -0.013686839491128922, -0.0072969659231603146, 0.001449334667995572, 0.010592487640678883, 0.015186467207968235, 0.005720528308302164, -0.0042611355893313885, -0.014981639571487904, 0.005544962361454964, 0.020702168345451355, 0.02008768729865551, 0.010526650585234165, -0.011675145477056503, -0.012172582559287548, -0.0010643694549798965, 0.004513511434197426, -0.015157205983996391, -0.02668604627251625, 0.0010058473562821746, -0.004334287717938423, -0.005263325292617083, -0.0006035084370523691, 0.004250162281095982, 0.014198907651007175, 0.008375965990126133, -0.0161813423037529, -0.014520779252052307, 0.006978752091526985, 0.0008755444432608783, -0.02671530656516552, 0.012896792963147163, 0.010329138487577438, -0.009743917733430862, -0.002286016708239913, 0.01076805405318737, -0.011316698044538498, -0.012830954976379871, -0.016620256006717682, -0.0005079529364593327, 0.006086291279643774, 0.016239862889051437, 0.008990447036921978, -0.012516398914158344, 0.005354765802621841, -0.01386240590363741, 0.0016267296159639955, 0.0008641143795102835, 0.009692711755633354, 0.030753327533602715, -0.003811247181147337, 0.015244988724589348, 0.007768799550831318, -0.006916572339832783, 0.01689823716878891, -0.006971437018364668, 0.01005115918815136, -0.013803884387016296, 0.00904165394604206, -0.01296263001859188, -0.013299131765961647, -0.037395577877759933, -0.019721925258636475, 0.011697091162204742, -0.02816372737288475, 0.015113314613699913, -0.005424260627478361, 0.0021013065706938505, 0.0072603896260261536, -0.01815645955502987, -0.01543518528342247, -0.005332820117473602, 0.0025841135066002607, -0.014155016280710697, 0.0009573838324286044, 0.0007388406083919108, 4.3862946768058464e-05, -0.02576432377099991, -0.012933368794620037, 0.009085545316338539, -0.0056327455677092075, 0.0017026253044605255, 0.007607864215970039, 0.0053181895054876804, 0.001728228759020567, -0.008405226282775402, -0.00037490675458684564, 0.004059965722262859, -0.009970691055059433, 0.004458647221326828, -0.018214982002973557, -0.017556609585881233, -0.0016879948088899255, -0.0018589888932183385, -0.0089465556666255, -0.0004832639533560723, -0.015991145744919777, 0.01840517856180668, -0.006104579195380211, 0.011309382505714893, -0.000438229413703084, 0.02620323933660984, 0.009209904819726944, 0.03751262277364731, -0.0006698029465042055, -0.01408917922526598, -0.0021159371826797724, 0.008127246983349323, 0.009846331551671028, 0.005321847274899483, -0.007340857293456793, -0.003536925185471773, -0.003114469349384308, 0.0005038381204940379, -0.026656784117221832, -0.0014310465194284916, 0.0022165218833833933, -0.008397911675274372, -0.012187212705612183, 0.01815645955502987, -0.018068676814436913, -0.0011347787221893668, 0.006850735284388065, 0.001958659151569009, 0.004052650649100542, -0.013877036981284618, -0.03063628263771534, 0.009561036713421345, 0.010248670354485512, 0.006627620197832584, 0.013503958471119404, -0.008471064269542694, -0.00318213552236557, 0.016254493966698647, 0.02329176850616932, 0.00954640656709671, -0.006141155492514372, 0.0026225184556096792, -0.008858771994709969, 0.014820704236626625, -0.011821449734270573, -0.0036119066644459963, -0.017585869878530502, 0.019956013187766075, -0.023218614980578423, -0.0010351084638386965, 0.01985359936952591, -0.0041550640016794205, 0.008061409927904606, 0.016590995714068413, 0.001390812685713172, -0.00131491688080132, -0.005925355479121208, 0.007863897830247879, -0.02649584971368313, 0.002911471063271165, -0.0013999567599967122, -0.016795823350548744, -0.009648819454014301, -0.0013578940415754914, -0.003004740457981825, 0.011550785973668098, -0.0018836779054254293, 0.010841206647455692, -0.025852106511592865, -0.0005427004070952535, -0.008566162548959255, 0.006770267616957426, 0.030958153307437897, -0.005405972711741924, 0.00957566685974598, 0.012231104075908661, -0.011097240261733532, 0.01469634473323822, -0.010277931578457355, -0.020702168345451355, 0.00478783342987299, 0.008858771994709969, 0.00717260641977191, 0.007688331883400679, -0.004630555864423513, -0.008770989254117012, -0.003405250608921051, 0.006744664162397385, -0.04757840931415558, -0.00416603684425354, 0.0019696319941431284, 0.00772490818053484, -0.017541978508234024, -0.002732247347012162], "32a50608-96b5-4eda-bd89-6ad80ad73f62": [-0.03453685715794563, -0.010729974135756493, -0.0019780199509114027, 0.05704861134290695, -0.01822604238986969, -0.023846130818128586, 0.03507060930132866, 0.06069067865610123, -0.027331212535500526, 0.02012556977570057, 0.030423831194639206, 0.004788064397871494, 0.014324946328997612, -0.017880672588944435, 0.0032162449788302183, 0.07227622717618942, -0.02141285128891468, -0.005392459221184254, 0.026546284556388855, -0.014081618748605251, 0.05133432894945145, 1.2210852219141088e-05, -0.041193053126335144, -0.006326524540781975, -0.025274699553847313, 0.0165305957198143, -0.016012543812394142, 0.039089445024728775, -0.02350076101720333, 0.006613023113459349, 0.0119937090203166, 0.01379119511693716, 0.027017241343855858, -0.008485077880322933, 0.024254294112324715, -0.0030729954596608877, 0.030941884964704514, 0.022386163473129272, -0.0398743711411953, -0.032009389251470566, -0.029842983931303024, 0.05130293220281601, 0.0021977999713271856, 0.0014707599766552448, -0.0036126337945461273, 0.016577690839767456, -0.01070642564445734, 0.0023724467027932405, -0.00021904413006268442, -0.0019593778997659683, 0.01528255920857191, -0.0076883756555616856, -0.03375193104147911, 0.00570250628516078, -0.005710355471819639, -0.07968594878911972, 0.019497625529766083, 0.06982724368572235, 0.00042950312490575016, -0.0663735643029213, 0.024552566930651665, -0.012519611045718193, 0.017268428578972816, -0.014638918451964855, -0.016687581315636635, 0.006616948172450066, 0.0052590216509997845, -0.009050226770341396, -0.03682884946465492, 0.0015992920380085707, 0.011844572611153126, 0.04580843076109886, -0.013571415096521378, 0.016891663894057274, 0.026609079912304878, -0.029450520873069763, 0.06326524168252945, 0.012731541879475117, -0.005580842029303312, 0.003029824234545231, -0.005302192643284798, 0.0006936806603334844, 0.03145993873476982, -0.0005857529467903078, 0.08885391801595688, 0.01294347271323204, -0.02720562554895878, -0.05566713586449623, 0.0010508231353014708, -0.03097328171133995, 0.011915216222405434, 0.02131866104900837, 0.0016640486428514123, -0.0241130068898201, -0.013587113469839096, 0.013712702319025993, 0.03400310501456261, 0.002517658518627286, -0.007032960187643766, -0.005883039906620979, -0.022339068353176117, 0.0008776483009569347, 0.01654629409313202, 0.003455648198723793, 0.02122446894645691, -0.005502349231392145, -0.008226051926612854, -0.000715266156475991, -0.03708002716302872, 0.06819459795951843, 0.022370465099811554, -0.027550993487238884, -0.011616943404078484, 0.011491354554891586, -0.04649917036294937, -0.01821034401655197, -0.030659310519695282, -0.003604784607887268, -0.000906101951841265, -0.01010988000780344, 0.012535309419035912, 0.002158553572371602, -0.023940321058034897, 0.010549440048635006, -0.020690716803073883, -0.00946623831987381, -0.006306901108473539, 0.032213468104600906, 0.02271583303809166, -0.02996857278048992, -0.016452103853225708, 0.013037663884460926, -0.00505494000390172, 0.020439540967345238, 0.01901097036898136, -0.00891678873449564, 0.019497625529766083, 0.04213496670126915, -0.002884612651541829, 0.0488225594162941, -0.05491360276937485, -0.04910513386130333, 0.03915223851799965, -0.013775496743619442, -0.0010881072375923395, -0.020863402634859085, -0.03777076303958893, 0.013006267137825489, 0.0014687975635752082, 0.032904207706451416, -0.07007842510938644, -0.0485713817179203, -0.021930905058979988, -0.00505886459723115, 0.013343785889446735, -0.03682884946465492, -0.002313577104359865, 0.025368891656398773, -0.016970155760645866, 0.04185239225625992, 0.009018829092383385, -0.01971740648150444, -0.006848501972854137, 0.0378335565328598, 0.03117736428976059, 0.008210352621972561, 0.052025068551301956, 0.01781787909567356, -0.009058075957000256, 0.020675018429756165, 0.03406590223312378, -0.03453685715794563, -0.022872818633913994, -0.013131855055689812, -0.01449763122946024, 0.017158538103103638, 0.04204077646136284, 0.02362634986639023, 0.025839848443865776, -0.0117582306265831, -0.010989000089466572, 0.016012543812394142, -0.014638918451964855, -0.015133422799408436, 0.00037308636819943786, -0.012166392989456654, 0.019450530409812927, 0.04122444987297058, 0.013783345930278301, -0.00565541023388505, -0.01344582624733448, -0.006330449134111404, -0.014835149981081486, 0.0006774914800189435, -0.019764501601457596, -0.007040809374302626, 0.025541575625538826, -0.0026118499226868153, -0.03293560445308685, 0.010886959731578827, 0.0027531369123607874, -0.0386812798678875, -0.025949738919734955, 0.0006338298553600907, -0.01901097036898136, 0.01923074945807457, -0.004780215211212635, 0.005839868448674679, 0.01902666874229908, -0.05042381212115288, 0.03836730867624283, -0.0422605536878109, 0.0005872247274965048, -0.005726053845137358, 0.005616163834929466, 0.017252730205655098, 0.010290414094924927, 0.051962271332740784, -0.005094186402857304, -0.028131840750575066, -0.0066640437580645084, 0.01921505108475685, -0.021648330613970757, -0.03180530667304993, -0.04254312813282013, -0.03346935659646988, -0.018100453540682793, 0.01802195981144905, -0.03416009247303009, 0.004725269973278046, 0.010996849276125431, -0.000798664812464267, -0.01612243242561817, -0.019576119258999825, -0.04135003685951233, 0.014105166308581829, 0.03155412897467613, -0.007417574990540743, 0.008202503435313702, 0.007452896796166897, -0.0018328082514926791, 0.020988989621400833, -0.0003838791453745216, -0.018649904057383537, 0.007841436192393303, -0.008532173931598663, 0.015510188415646553, 0.03078489936888218, 0.0072370413690805435, -0.010620083659887314, 0.016153831034898758, -0.011145985685288906, -0.0039835125207901, -0.0022174231708049774, -0.05277859792113304, 0.03645208477973938, 0.02558867260813713, 0.01910516247153282, -0.010957603342831135, -0.015682872384786606, 0.004642852582037449, 0.03682884946465492, -0.017566701397299767, 0.062103550881147385, 0.009646772406995296, 0.001667973236180842, 0.013351635076105595, 0.0036087092012166977, -0.0021448172628879547, 0.028445811942219734, 0.002780609531328082, 0.0414128303527832, -0.00724881561473012, 0.02489793486893177, 0.025321796536445618, -0.008532173931598663, -0.005639711860567331, -0.018053356558084488, 0.012935623526573181, -0.004870481789112091, -0.008406585082411766, 0.03704863041639328, 0.009018829092383385, 0.029262138530611992, 0.023265283554792404, 0.011860270984470844, -0.0014815527247264981, -0.017770783975720406, -0.03566715493798256, -0.015164820477366447, 0.0005396383930929005, 0.029120851308107376, -9.633771696826443e-05, 0.030361037701368332, -0.01041600201278925, -0.007727622054517269, 0.006879899185150862, 0.0011018435470759869, -0.02886967360973358, 0.000429012521635741, 0.019999980926513672, 0.01165618933737278, -0.00015318371879402548, -0.04521188512444496, 0.034222885966300964, -0.04470953345298767, 0.05161690339446068, 0.0038795096334069967, -0.014215056784451008, 0.012174242176115513, 0.03566715493798256, -0.039685990661382675, 0.007527465000748634, -0.01165618933737278, 0.03009416162967682, 0.0036538424901664257, -0.009144417941570282, -0.016875965520739555, 0.007735471241176128, -0.034631047397851944, 0.02131866104900837, -0.014160111546516418, -0.05695441737771034, 0.04750387743115425, 0.02310829795897007, -0.011609094217419624, 0.006149915512651205, -0.012629500590264797, 0.0011715058935806155, -0.032433249056339264, -0.007138925604522228, -0.04012554883956909, -0.025133414193987846, 0.012833582237362862, -0.04116165637969971, -0.009411294013261795, -0.009701717644929886, -0.06009413301944733, -0.0009698774083517492, -0.021334359422326088, -0.000577413069549948, -0.0034595727920532227, 0.0013481148052960634, 0.0006269617006182671, 0.01379119511693716, 0.021695425733923912, 0.0017435225890949368, -0.011381464079022408, -0.0073901028372347355, -0.0024607512168586254, 0.0009335744543932378, -0.024081608280539513, 0.035604361444711685, 0.015455244109034538, 0.016279418021440506, -0.015172669664025307, 0.001372643862850964, 0.022134985774755478, 0.016373610123991966, -0.016687581315636635, 0.003606746904551983, -0.014309247955679893, 0.008594968356192112, 0.03139714524149895, 0.011687587015330791, 0.006828878540545702, 0.015353202819824219, -0.004305333364754915, -0.0210046898573637, -0.02967029996216297, -0.014207207597792149, 0.01594189926981926, -0.0003868226194754243, 0.010659330524504185, -0.03466244786977768, -0.006012552883476019, 0.06926209479570389, 0.004195443354547024, 0.015259011648595333, 0.017974864691495895, -0.016907362267374992, -0.010015688836574554, -0.0072409664280712605, 0.006510982755571604, 0.054536838084459305, -0.01624802127480507, 0.013437977060675621, -0.0024548640940338373, 0.0031024301424622536, -0.005239398218691349, -0.01841442473232746, -0.020596526563167572, -0.013822592794895172, -0.020078472793102264, -0.00826529785990715, 0.018053356558084488, 0.017802180722355843, -0.04967028275132179, 0.008948185481131077, -0.009623224847018719, 0.019089464098215103, 0.004116950556635857, -0.017770783975720406, -0.010847712866961956, 0.016781773418188095, -0.0002857630606740713, -0.03708002716302872, -0.01051019411534071, 0.020439540967345238, -0.008485077880322933, -0.007535314653068781, -0.0022213479969650507, 0.03135004639625549, 0.008759803138673306, 0.012276283465325832, 0.013563565909862518, 0.0011960349511355162, 0.037519585341215134, -0.038587089627981186, -0.007339082192629576, 0.04474093019962311, 0.013469374738633633, -0.0002663851482793689, 0.015808461233973503, 0.02409730851650238, 0.021883808076381683, 0.0013510583667084575, 0.03315538167953491, 0.01350077148526907, -0.006821029353886843, 0.0021016462706029415, 0.016970155760645866, 0.010384605266153812, 0.006542379967868328, -0.001332416315563023, -0.008532173931598663, -0.001579668722115457, -0.04015694558620453, 0.022590244188904762, -0.013563565909862518, -0.021632632240653038, 0.011742531321942806, -0.0023116145748645067, 0.032119277864694595, -0.027472499758005142, -0.014309247955679893, -0.03334376588463783, -0.02480374276638031, -0.014921491965651512, -0.007523540407419205, 0.008061216212809086, 0.0336577370762825, -0.012676596641540527, -0.015816310420632362, 0.022668737918138504, 0.019842995330691338, -0.000703982834238559, 0.00647566094994545, 0.05594971030950546, -0.07673461735248566, -0.011185232549905777, 0.02439558133482933, 0.027142830193042755, -0.014623219147324562, 0.020266856998205185, -0.03475663810968399, 0.02113027684390545, 0.014317097142338753, 0.0019682084675878286, 0.02419149875640869, 0.02331237867474556, 0.009638923220336437, 0.009364197961986065, 0.03412869572639465, 0.01539244968444109, 0.0216012354940176, -0.010847712866961956, -0.002598113613203168, 0.025337494909763336, 0.014544726349413395, -0.00861851591616869, -0.016091035678982735, 0.019089464098215103, -0.016310816630721092, -0.012370474636554718, 0.019481927156448364, -0.021240167319774628, -0.009905798360705376, 0.0324646458029747, -0.005918361712247133, 0.002780609531328082, 0.01105964370071888, 0.027111433446407318, 0.0062362574972212315, -0.017378319054841995, -0.041883789002895355, 0.010926205664873123, -0.01880688965320587, 0.007186021190136671, -0.06712709367275238, 0.020266856998205185, 0.0010782956378534436, 0.005255097057670355, -0.010486645624041557, -0.040188342332839966, 0.020737813785672188, -0.03883826732635498, 0.015141271986067295, -0.025871247053146362, -0.0097566619515419, -0.029026659205555916, 0.004536887165158987, -0.04194658249616623, 0.019686009734869003, -0.0011734681902453303, 0.020675018429756165, 0.0072959112003445625, -0.023861829191446304, 0.023328077048063278, 0.003379117464646697, -0.007032960187643766, -0.05833589285612106, -0.027707979083061218, 0.0021526666823774576, -0.010910507291555405, -0.0026216614060103893, -0.009364197961986065, -0.01751960627734661, 0.05331235006451607, -0.020486636087298393, -0.008477228693664074, 0.03981157764792442, -0.010486645624041557, 0.014897944405674934, 0.0003048956859856844, -0.002042776672169566, -0.006377544719725847, 0.00956043042242527, -0.013853989541530609, -0.004199367947876453, -0.03924642875790596, 0.006785707548260689, -0.0227943267673254, -0.016310816630721092, -0.023846130818128586, 0.02979588881134987, 0.0036734656896442175, -0.0045565105974674225, 0.012817883864045143, 0.02012556977570057, -0.004434846341609955, 0.017959166318178177, 0.0003385004529263824, -0.012134996242821217, 0.015470942482352257, -0.025824150070548058, 0.03686024621129036, -0.009010979905724525, -0.012025105766952038, 0.003016088157892227, -0.01843012310564518, 0.0476294681429863, 0.005635787267237902, 0.00045599445002153516, -4.5378685172181576e-05, -0.0018063168972730637, -0.021365756168961525, -0.0019309243652969599, -0.021334359422326088, -0.001478609279729426, 0.025745658203959465, -0.020251156762242317, 0.021365756168961525, -0.026577681303024292, -0.019858693704009056, 0.041789598762989044, -0.027817869558930397, 0.001610084786079824, -0.06188376992940903, -0.01643640547990799, -0.011208780109882355, -0.013218197040259838, 0.006934843957424164, 0.029607506468892097, 0.017095744609832764, 0.011499203741550446, -0.026028232648968697, -0.02886967360973358, -0.009183664806187153, -0.012080051004886627, 0.011805325746536255, 0.01010988000780344, -0.024772346019744873, -0.02441127970814705, -0.009324952028691769, 0.019073763862252235, 0.0060164774768054485, 0.021334359422326088, 0.0189167782664299, 0.013516469858586788, 0.01802195981144905, 0.007857135497033596, 0.022543149068951607, -0.020659320056438446, -0.046750348061323166, 0.028932467103004456, -0.0070211864076554775, 0.023736240342259407, -0.005804547108709812, 0.003806903725489974, 0.01973310485482216, -0.016389308497309685, 0.04235474765300751, -0.01703295111656189, 0.023642048239707947, 0.018477218225598335, 0.009874401614069939, 0.017598098143935204, 0.0017248805379495025, -0.008453681133687496, 0.02698584459722042, -0.009905798360705376, 0.025667164474725723, -0.006605173926800489, 0.004250388126820326, 0.015706421807408333, 0.004175819922238588, 0.00188579095993191, -0.005859491880983114, 0.005337514448910952, -0.021632632240653038, -0.0006681704544462264, 0.0003196131146978587, -0.021664028987288475, 0.011813174933195114, 0.012441118247807026, -0.0015737818321213126, 0.0020761361811310053, -0.025447385385632515, -0.016373610123991966, -0.026970146223902702, -0.01783357746899128, 0.014866547659039497, 0.02571425959467888, -0.0057770744897425175, -0.011373614892363548, -0.012025105766952038, 0.0058320192620158195, 0.0042543127201497555, 0.01941913366317749, -0.024144403636455536, -0.005537671037018299, 0.004018834326416254, 0.03138144314289093, 0.01444268599152565, -0.016860265284776688, -0.0047409688122570515, -0.0076883756555616856, -0.01080846693366766, 0.011114588938653469, 0.01051019411534071, -0.009348499588668346, 0.01722133345901966, 0.02362634986639023, 0.01171113457530737, 0.011145985685288906, 0.03175821155309677, -0.02910515107214451, 0.024536866694688797, 0.02021976001560688, -0.000420917960582301, -0.024866538122296333, 0.04470953345298767, 0.006220559123903513, -0.010031387209892273, -0.0002631963579915464, -0.02260594256222248, 0.014521178789436817, -0.0034183640964329243, -0.014803753234446049, -0.013312389142811298, -0.027346912771463394, -0.03616951033473015, 0.011036096140742302, 0.001066521741449833, -0.0016571804881095886, -0.005788848269730806, -0.004654626362025738, -0.0210046898573637, 0.01478805486112833, -0.010298263281583786, -0.0051648300141096115, -0.0360439196228981, 0.0077001494355499744, 0.021161675453186035, -0.011161684058606625, -0.001789637142792344, 0.001983907073736191, 0.0062362574972212315, -0.02450546994805336, -0.03726840764284134, -0.01135791651904583, -0.005208001006394625, -0.004234689753502607, 0.002533357124775648, -0.0035145177971571684, -0.018775491043925285, -0.0398743711411953, -0.0022193854674696922, -0.0025765281170606613, 0.0029866532422602177, 0.019372036680579185, 0.005871265660971403, 0.005431705620139837, 0.004481942392885685, 0.006907371338456869, -0.005317891016602516, 0.012119296938180923, -0.00801412109285593, 0.03265303000807762, 0.013006267137825489, 0.03293560445308685, -0.03315538167953491, -0.03218207135796547, -0.04232335090637207, -0.00886969268321991, 0.024568265303969383, 0.016091035678982735, 0.010188372805714607, 0.01509417686611414, 0.023139694705605507, 0.0004317107086535543, 0.02558867260813713, 0.007127151358872652, 0.0035321786999702454, 0.0005803565727546811, -0.017409715801477432, 0.015007834881544113, 0.0685085654258728, -0.02368914522230625, 0.00689559755846858, -0.010361057706177235, 0.004599681589752436, -0.02370484359562397, -0.033218178898096085, -0.007017261348664761, 0.047472480684518814, -0.012912075035274029, -0.015463093295693398, -0.03249604254961014, 0.011507052928209305, -0.04938770830631256, 0.026750367134809494, -0.004042382352054119, -0.004905803594738245, -0.015015684068202972, 0.04609100520610809, 0.022747229784727097, -6.953976844670251e-05, 0.012919924221932888, -0.008689159527420998, 0.012448967434465885, 0.00831239391118288, -0.03255883604288101, -0.008210352621972561, -0.0019721330609172583, 0.0080101964995265, 0.02478804439306259, 0.01075352169573307, 0.00766875222325325, 0.058430083096027374, 0.015525887720286846, -0.0027511746156960726, 0.034317076206207275, 0.002358710393309593, 0.02210358902812004, 0.011287272907793522, -0.018587108701467514, -0.024050211533904076, 0.0028826501220464706, -0.044678136706352234, -0.022150684148073196, 0.01468601357191801, -0.011444258503615856, -0.0046114553697407246, -0.03293560445308685, 0.028555702418088913, 0.01140501257032156, 0.0001553913316456601, 8.437982614850625e-05, -0.00042925780871883035, -0.019654611125588417, -0.023469364270567894, 0.007099679205566645, 0.026860255748033524, 0.004089477937668562, 0.02450546994805336, 0.010007839649915695, 0.021397152915596962, 0.004446620587259531, 0.006353996694087982, 0.0017602023435756564, 0.01379119511693716, 0.027645185589790344, -0.011883818544447422, -0.025667164474725723, -0.024238593876361847, 0.005506273824721575, -0.023532159626483917, 0.01448978204280138, -0.004419147968292236, -0.014905793592333794, -0.012182091362774372, 0.016875965520739555, -0.0461851991713047, -0.01169543620198965, 0.024882236495614052, 0.014073769561946392, 0.01962321437895298, 0.003249604254961014, -0.022480355575680733, 0.0050392416305840015, 0.027943458408117294, -0.005380685441195965, 0.020282555371522903, -0.010627932846546173, 0.003859886433929205, -0.01314755342900753, 0.008846145123243332, 0.004175819922238588, 0.0038127906154841185, -0.005333589855581522, -0.025243302807211876, 0.019795898348093033, 0.005690732039511204, 0.005188378039747477, -0.0012421495048329234, 0.032119277864694595, -0.022339068353176117, 0.014858698472380638, -0.000853119243402034, -0.022590244188904762, -0.030659310519695282, 0.009599676355719566, 0.014301398769021034, -0.0018279023934155703, 0.032433249056339264, 0.011020397767424583, 0.05139712244272232, 0.030345339328050613, 0.005286493804305792, -0.03613811358809471, 0.018398726359009743, -0.0033830422908067703, -0.011169534176588058, 0.025635767728090286, 0.01923074945807457, 0.0029532937332987785, -0.02708003669977188, -0.0007245871820487082, 0.008492927066981792, 0.037707969546318054, -0.006632646545767784, 0.004748817998915911, -0.02540028840303421, -0.013076909817755222, -0.011554148979485035, -0.02211928740143776, -0.008233901113271713, -0.01445053517818451, -0.0378335565328598, 0.027864964678883553, 0.024850839748978615, -0.004599681589752436, 0.012527460232377052, -0.0002933670475613326, -0.016609089449048042, 0.007119302172213793, -0.022370465099811554, -0.021145975217223167, -0.009097321890294552, 0.005156980827450752, -0.027346912771463394, 0.012778636999428272, -0.04232335090637207, -0.0040384577587246895, 0.005780999083071947, -0.0015129498206079006, -0.026750367134809494, 0.013069060631096363, 0.001316717709414661, 0.01204865425825119, 0.007135001011192799, -0.028540004044771194, -0.018147548660635948, 0.006412866525352001, -0.005541595630347729, 0.004984296392649412, 0.0101177291944623, -0.04590262472629547, 0.011091041378676891, -0.03846149891614914, -0.01854001358151436, -0.0009370084735564888, 0.023861829191446304, -0.05761375650763512, 0.03566715493798256, -0.0012647161493077874, 0.028116142377257347, -0.0023116145748645067, -0.0007878720643930137, 0.0066640437580645084, -0.0027354760095477104, -0.022762928158044815, 0.03337516263127327, 0.02481944113969803, 0.013830441981554031, -0.00956827960908413, 0.00955258123576641, -0.0004312201344873756, 0.011773928999900818, 0.012111447751522064, 0.0221977811306715, 0.005388534627854824, -0.009372047148644924, 0.004026683513075113, -0.030675008893013, 0.0006833784282207489, 0.0007554937619715929, 0.03227626532316208, -0.0038971705362200737, -0.005722129251807928, -0.0008079858380369842, -0.012417570687830448, -0.001842619851231575, -0.021459948271512985, -0.012205639854073524, 0.011043945327401161, -0.01584770902991295, 0.00806906633079052, -0.029152248054742813, -0.015470942482352257, 0.01794346794486046, -0.023343775421380997, 0.006067498121410608, -0.05142851918935776, 0.008124010637402534, 0.028822578489780426, -0.007091829553246498, -0.004505489952862263, 0.004803762771189213, 0.023045502603054047, 0.021993698552250862, -0.006495283916592598, 0.02629510685801506, 0.012323378585278988, -0.006856351159512997, 0.009324952028691769, 0.011923065409064293, 0.021255865693092346, 0.012747240252792835, 0.017551003023982048, -0.024976426735520363, 0.007821813225746155, -0.02419149875640869, -0.004952899180352688, -0.02012556977570057, 0.020784908905625343, -0.022150684148073196, -0.01389323640614748, -0.01751960627734661, -0.013178951106965542, 0.011593394912779331, 0.005714280065149069, -0.012715843506157398, 0.016295118257403374, -0.03145993873476982, -0.0012823770521208644, -0.02648349106311798, -0.021538440138101578, 0.023139694705605507, -0.01854001358151436, 0.013328087516129017, 0.008626365102827549, 0.023233886808156967, -0.034819431602954865, -0.02001567929983139, 0.009607525542378426, -0.006856351159512997, 0.02092619612812996, 0.010973301716148853, -0.006742536555975676, 0.0009512353572063148, -0.027409706264734268, 0.025525877252221107, -0.014042372815310955, -0.009058075957000256, -0.013359484262764454, 0.015792762860655785, -0.023186789825558662, 0.01573781855404377, -0.020188363268971443, -0.04461533948779106, 0.01662478782236576, 0.023437967523932457, 0.015306107699871063, -0.004544736351817846, -0.004073779564350843, -0.025164810940623283, 0.002089872257784009, -0.039780180901288986, 0.006036100909113884, 0.03626370057463646, -0.03934061899781227, -0.011483505368232727, 0.025353193283081055, 0.0013804931659251451, -0.05023542791604996, -0.005251172464340925, 0.03478803485631943, 0.0006406979518942535, -0.02340657077729702, 0.013948180712759495, -0.0420093797147274, -0.007441123016178608, 0.016405006870627403, -0.01170328538864851, -0.005969381891191006, 0.011538450606167316, 0.01602824218571186, -0.021946603432297707, -0.03428567945957184, 0.02122446894645691, -0.024725250899791718, 0.023139694705605507, -0.018963875249028206, 0.005537671037018299, -0.0607534721493721, -0.004387750755995512, -0.008029819466173649, 0.039685990661382675, -0.008453681133687496, -0.009191513992846012, 0.017048649489879608, 0.016200926154851913, 0.004811612423509359, -0.01854001358151436, -0.0032240941654890776, -0.021554138511419296, -0.008375188335776329, 0.006907371338456869, -0.012833582237362862, -0.0069269947707653046, -0.017064347863197327, -0.03821032494306564, 0.0031612999737262726, 0.011671887710690498, -0.003569462802261114, -0.0022880667820572853, 0.016200926154851913, 0.0006583588547073305, -0.021946603432297707, 0.02670327015221119, -0.022590244188904762, -0.008759803138673306, -0.012590254656970501, -0.027127131819725037, 0.016075337305665016, -0.0011430522426962852, -0.005361062474548817, -0.020470937713980675, -0.0007221343112178147, 0.031224459409713745, 0.022637341171503067, -0.023359473794698715, -0.013469374738633633, -0.00040644584805704653, -0.0028473285492509604, -0.010549440048635006, -0.0071467747911810875, -0.014560425654053688, 0.019748803228139877, -0.0027864964213222265, -0.0037794311065226793, -0.01319464948028326, 0.002921896753832698, -0.009222910739481449, 0.01439558994024992, 0.02189950831234455, -0.020455239340662956, -0.030298244208097458, 0.0070879049599170685, 0.03340655937790871, 0.007142850197851658, -0.0062598055228590965, 0.006314750295132399, 0.0010047085816040635, 0.06357921659946442, 0.0190423671156168, 0.004536887165158987, -0.008092613890767097, -0.027331212535500526, 0.01664048619568348, 0.02003137767314911, 0.03704863041639328, 0.01320249866694212, -0.011075342074036598, -0.017315523698925972, -0.009395595639944077, 0.0011410899460315704, 0.01943483203649521, 0.016185227781534195, -0.018178945407271385, 0.015659324824810028, 0.030753502622246742, 0.010588686913251877, 0.007044733967632055, -0.0312715545296669, -0.005392459221184254, 0.007696224842220545, -0.018006261438131332, 0.0005572992959059775, -0.01508632767945528, 0.001096937688998878, -0.01255100779235363, 0.01409731712192297, -0.00754316383972764, 0.038901060819625854, -0.019858693704009056, 0.019968582317233086, 0.011821024119853973, -0.004917577374726534, 0.05648346245288849, -0.020047076046466827, 0.01871269755065441, -0.020988989621400833, -0.024348484352231026, -0.0029061981476843357, -0.017707988619804382, 0.023233886808156967, -0.0008653837721794844, -0.004195443354547024, 0.006169538479298353, -0.004466243553906679, -0.00587911531329155, -0.0007191908080130816, -0.006891672965139151, -0.031836703419685364, 0.00022689341858495027, -0.03764517605304718, 0.0011636565905064344, -0.008547872304916382, 0.01773938536643982, 0.006224483717232943, -0.0003124997019767761, 0.0003878037678077817, -0.007268438581377268, 0.013697003945708275, -0.002439165487885475, -0.012802185490727425, -0.018304534256458282, -0.019466228783130646, 0.013477223925292492, 0.0012392060598358512, -0.010729974135756493, -0.004615379963070154, 0.026546284556388855, 0.009623224847018719, -0.0024077685084193945, 0.010871261358261108, 0.0007378328591585159, -0.0043367305770516396, -0.0033261349890381098, 0.02359495311975479, -0.010957603342831135, 0.055227573961019516, -0.029937176033854485, -0.01662478782236576, -0.0023547857999801636, 0.008163257502019405, 0.010251167230308056, -0.01863420382142067, -0.0008590062498115003, 0.0003659729554783553, -0.013218197040259838, 0.003273152280598879, -0.0038127906154841185, 0.011177383363246918, -0.007138925604522228, 0.0330611914396286, -0.006255880929529667, -0.03130295127630234, -0.03488222509622574, 0.007107528392225504, 0.004642852582037449, -0.0012117335572838783, -0.011624792590737343, -0.026232313364744186, 0.006970165763050318, 0.017378319054841995, -0.004387750755995512, 0.016295118257403374, -0.013744099996984005, -0.014277851209044456, -0.0036459933035075665, -0.0016463877400383353, 0.009246458299458027, 0.0026040005031973124, -0.012119296938180923, -0.03296700119972229, -0.03566715493798256, 0.024160102009773254, -0.010141277685761452, 0.010941904038190842, -0.010643631219863892, 0.014215056784451008, 0.01194661296904087, -0.011373614892363548, 0.005616163834929466, 0.01171113457530737, 0.012488213367760181, -0.005910512059926987, 0.013555716723203659, -0.026624778285622597, 0.01783357746899128, -0.012464665807783604, 8.014856575755402e-05, -0.004085553344339132, 0.021538440138101578, -0.027174226939678192, -0.0008207409409806132, -0.0024077685084193945, -0.004489791579544544, 0.023846130818128586, 0.017174238339066505, -0.01602824218571186, -0.008390886709094048, -0.013139704242348671, 0.005580842029303312, 0.001215658150613308, 0.012864979915320873, 0.005423856433480978, 0.009646772406995296, -0.04951329529285431, 0.01255100779235363, 0.0177236869931221, -0.016279418021440506, -0.001122447894886136, -0.009081623516976833, 0.012182091362774372, -0.0027963081374764442, 0.01582415960729122, -0.011585545726120472, 0.019246449694037437, -0.017394017428159714, -0.009395595639944077, -0.0227943267673254, 0.03287281095981598, -0.002213498577475548, 0.007978798821568489, -0.023171091452240944, 0.03160122409462929, 0.0030572968535125256, -0.009686018340289593, -0.06153840199112892, -0.02899526245892048, 0.01200155820697546, 0.012456816621124744, -0.0012686408590525389, 0.014183659106492996, -0.007095754612237215, 0.01499213557690382, -0.0028198559302836657, 0.028540004044771194, -0.008602817542850971, 0.04612240195274353, -0.011624792590737343, -0.021051784977316856, -0.005274720024317503, -0.0009482918540015817, -0.0028061196208000183, 0.03598112612962723, 0.021758221089839935, -0.004607530776411295, 0.00030882033752277493, 0.01594974845647812, 0.013006267137825489, 0.004897954408079386, -0.00921506155282259, -0.0056828828528523445, 0.005117734428495169, 0.016985854133963585, -0.003959964495152235, 0.005306117236614227, -0.03218207135796547, 0.014968588016927242, -0.004776290617883205, -0.008532173931598663, 0.011436409316956997, 0.016020392999053, -0.01762949675321579, 0.025949738919734955, -0.00826529785990715, -0.013861838728189468, 0.0233908724039793, 0.0020408143755048513, -0.016514897346496582, 0.009984291158616543, 0.014073769561946392, -0.03026684559881687, 0.012237036600708961, 0.005470952019095421, -0.00014459856902249157, -0.006738611962646246, -0.014458384364843369, -0.009411294013261795, -0.011773928999900818, -0.01449763122946024, -0.006824953947216272, -0.018163247033953667, -0.002547093201428652, 0.012103598564863205, 0.0026530586183071136, -0.01584770902991295, -0.012888527475297451, 0.023877527564764023, -0.0035910482984036207, -0.007743320427834988, 0.020784908905625343, 0.015761366114020348, -0.0017131066415458918, 0.009670319966971874, 0.008524324744939804, -0.01792776957154274, -0.015329655259847641, 0.011687587015330791, -0.008979583159089088, -0.0008212315151467919, 0.006224483717232943, -0.035102006047964096, 0.0004383335472084582, -0.03745679184794426, -0.0002747249964158982, 0.014324946328997612, -0.0067189885303378105, 0.006208785343915224, 0.0004785611527040601, -0.0035439524799585342, 0.016499198973178864, -0.006656194571405649, -0.018602807074785233, -0.021883808076381683, -0.0006686610286124051, 0.0069387685507535934, 0.007029035594314337, 0.01539244968444109, -0.013853989541530609, 0.011742531321942806, 0.007978798821568489, 0.011577696539461613, 0.031114568933844566, -0.03296700119972229, 0.003720561508089304, -0.008233901113271713, 0.013806893490254879, 0.00612636748701334, -0.006762159988284111, -0.018257439136505127, 0.04452114924788475, -0.029638903215527534, -0.012425419874489307, 0.007558862213045359, 0.008171106688678265, 0.020784908905625343, -0.006032176315784454, -0.004399524535983801, -0.006063573528081179, 0.014623219147324562, 0.048069026321172714, -0.014874396845698357, -0.013288840651512146, 0.009646772406995296, 0.012284132651984692, 0.0026550209149718285, 6.819066766183823e-05, 0.017346922308206558, 0.0038324138149619102, 0.02638929896056652, -0.018069056794047356, -0.006047874689102173, -0.0012264508986845613, 0.00719779497012496, 0.035918332636356354, 0.001913263462483883, 0.00826529785990715, 0.016687581315636635, -0.03497641906142235, -0.012825733050704002, 0.009058075957000256, 0.004171895328909159, -0.00720171956345439, -0.0013039626646786928, 0.01960751600563526, 0.023767637088894844, -0.005011769011616707, 0.0141444131731987, -0.015306107699871063, -0.010204071179032326, 0.005141282454133034, -0.0029729169327765703, -0.007394027430564165, -0.013995276764035225, -0.006538454908877611, 0.007115377578884363, -0.00980375800281763, -0.004328880924731493, 0.0023292754776775837, 0.009120870381593704, 0.022339068353176117, -0.042291950434446335, -0.036514878273010254, -0.007707998622208834, 0.006353996694087982, 0.00021254394960124046, -0.0013451713602989912, -0.010886959731578827, -0.03017265535891056, -0.003908944316208363, -0.013916783966124058, 0.003249604254961014, -0.01101254764944315, 0.0097566619515419, 0.009489786811172962, -0.023956021293997765, 0.021538440138101578, -0.0390266478061676, -0.012660898268222809, -0.02629510685801506, -0.0007275306852534413, -0.015871256589889526, 0.03009416162967682, -0.005843793507665396, 0.04929351434111595, 0.009018829092383385, -0.014850849285721779, -0.005470952019095421, -0.017111442983150482, -0.027613786980509758, -0.01110673975199461, 0.01673467829823494, -0.03353215008974075, -0.04075349122285843, 0.004297484178096056, 5.5404918384738266e-05, 0.012762938626110554, -3.0186023650458083e-05, -0.016467802226543427, -0.010981150902807713, -0.014160111546516418, 0.001289245206862688, 0.0015904615866020322, 0.004148347768932581, 0.026326505467295647, -0.02967029996216297, -0.01821034401655197, 0.005435630679130554, 0.0028061196208000183, -0.009772361256182194, -0.0004969579167664051, -0.019544722512364388, -0.0026040005031973124, 0.025321796536445618, -0.02032965049147606, 0.03375193104147911, -0.03529039025306702, -0.004097327124327421, -0.028335921466350555, -0.018304534256458282, -0.011075342074036598, 0.007841436192393303, -0.03047092817723751, 0.01390108559280634, -0.011970160529017448, 0.01196231134235859, -0.017252730205655098, 0.01383829116821289, 0.010863411240279675, -0.0009561411570757627, -0.01843012310564518, 0.013485073111951351, 0.004572208970785141, 0.014866547659039497, 0.030109860002994537, -0.029937176033854485, -0.006342222914099693, -0.017755083739757538, 0.02519620768725872, 0.010086332447826862, -0.006244106683880091, -0.005894813686609268, 0.007119302172213793, 0.006338298320770264, 0.014709562063217163, 0.018178945407271385, -0.022668737918138504, -0.0027531369123607874, -0.024866538122296333, -0.003114204155281186, 0.013979578390717506, -0.011766079813241959, 0.0025686786975711584, 0.020141268149018288, -0.0029434822499752045, -0.008155408315360546, -0.021240167319774628, -0.02290421538054943, 0.014458384364843369, 0.01504708081483841, -0.012833582237362862, -0.000222110262257047, 0.006699365563690662, 0.029607506468892097, -0.02728411741554737, 0.0221977811306715, 0.004148347768932581, -0.0036106714978814125, 0.038492899388074875, 0.007378328591585159, 0.018445821478962898, -0.006098895333707333, 0.009065925143659115, 0.025934040546417236, -0.015690721571445465, -0.009960743598639965, -0.01654629409313202, 0.01015697605907917, -0.01200155820697546, -0.00010774371185107157, -0.018791191279888153, -0.025274699553847313, -0.007009412162005901, 0.007778642233461142, -0.017174238339066505, -0.011585545726120472, 0.014623219147324562, 0.013398731127381325, -0.006204860284924507, -0.02452116832137108, 0.01693875901401043, 0.0008207409409806132, 0.004211141727864742, -0.005082412622869015, -0.008791199885308743, 0.007405801210552454, -0.0016974080353975296, -0.019073763862252235, 0.004411298781633377, -0.01194661296904087, -0.0229199156165123, -0.0031750360503792763, -0.015251162461936474, 0.008328092284500599, 0.010274714790284634, -0.008791199885308743, 0.023657748475670815, -0.012480364181101322, -0.021193072199821472, -0.0067189885303378105, 0.007429349236190319, -0.01673467829823494, 0.00991364847868681, 0.019277846440672874, 0.006263730116188526, -0.002464675810188055, -0.006251956336200237, -0.006715063937008381, -0.015431695617735386, -0.016671882942318916, -0.0002867442381102592, -0.013092609122395515, 0.014332796446979046, 0.010431701317429543, 0.08232331275939941, -0.007633430417627096, 0.015557284466922283, -0.005435630679130554, 0.015988994389772415, -0.007307684980332851, 0.005502349231392145, 0.005247247405350208, 0.012127147056162357, -0.008814748376607895, 0.012613802216947079, -0.023139694705605507, 0.0059615327045321465, 0.013343785889446735, -0.0227943267673254, 0.00017366545216646045, 0.023563556373119354, 0.03026684559881687, -0.004065929912030697, 0.01682886853814125, -0.006797481328248978, 0.008131859824061394, -0.008383037522435188, 0.0074803694151341915, -0.007429349236190319, 0.0119937090203166, 0.013861838728189468, 0.0025510177947580814, 0.02431708760559559, 0.012339076958596706, -0.005843793507665396, -0.005639711860567331, 0.002146779792383313, 0.0017052573384717107, -0.026671873405575752, 0.02938772551715374, 0.01469386275857687, 0.020282555371522903, 0.004270011559128761, 0.005667184479534626, -0.005392459221184254, 0.0069034467451274395, 0.03149133548140526, 0.02800625190138817, 0.0005376760964281857, -0.012134996242821217, 0.021836712956428528, -0.004415223374962807, 0.0042229159735143185, 0.002009417163208127, -0.028853975236415863, -0.0033065115567296743, 0.006271579302847385, 0.00955258123576641, 0.007229192182421684, -0.010361057706177235, -0.000816325715277344, -0.009222910739481449, 0.018383027985692024, 0.001986850518733263, -0.004529037978500128, -0.003914831206202507, -0.010698576457798481, -0.03240185230970383, -0.009144417941570282, -0.021098880097270012, -0.004262162372469902, -0.02481944113969803, 0.0009536882280372083, -0.004328880924731493, -0.001903451862744987, 0.022967010736465454, 0.0201098695397377, -0.031098870560526848, -0.002297878498211503, 0.02389322593808174, 0.01863420382142067, 0.018288835883140564, 0.02081630565226078, 0.011145985685288906, -0.010792767629027367, -0.006554153747856617, -0.0005151093937456608, -0.0016140093794092536, -0.0023979567922651768, 0.008076915517449379, 0.023233886808156967, -0.031098870560526848, 0.006381469313055277, -0.03378332778811455, 0.007825737819075584, 0.02092619612812996, 0.0016493311850354075, -0.0027060413267463446, 0.021695425733923912, 0.0007599089876748621, 0.008901090361177921, 0.006809255573898554, 0.011287272907793522, -0.014772355556488037, 0.004764516372233629, 0.02428569085896015, -0.017001552507281303, 0.012519611045718193, 0.012613802216947079, -0.0025569049175828695, 0.012197790667414665, -0.0006112631526775658, -0.019999980926513672, -0.002499997615814209, 0.0016846529906615615, 0.012189940549433231, -0.005215850658714771, 0.015470942482352257, -0.017503907904028893, -0.01443483680486679, -0.007417574990540743, 0.008437982760369778, -0.013296689838171005, -0.01971740648150444, 0.006970165763050318, -0.00433280598372221, -0.005733903497457504, -0.0016797471325844526, 0.025149112567305565, 0.009921497665345669, -0.008178955875337124, -0.00707613117992878, 0.005749601870775223, -0.022888517007231712, 0.010847712866961956, 0.012401871383190155, 0.01135006733238697, -0.011522751301527023, 0.011860270984470844, 2.0811339709325694e-06, -0.0023547857999801636, 0.001834770548157394, 0.024631058797240257, -0.002641284605488181, 0.02031395211815834, 0.026514887809753418, 0.015470942482352257, 0.011499203741550446, 0.0050392416305840015, 0.0033457581885159016, -0.026718968525528908, -0.037111423909664154, 0.00980375800281763, -0.0022762930020689964, 0.01962321437895298, -0.03912084177136421, 0.0022762930020689964, -0.010910507291555405, 0.008147559128701687, -0.00021965736232232302, -0.01803765818476677, 0.03097328171133995, 0.009003130719065666, 0.0011293160496279597, 0.006452112924307585, -0.010690727271139622, 0.012017256580293179, 0.0005263927159830928, 0.0075706359930336475, 0.005160905420780182, 0.01833593100309372, 0.031036077067255974, 0.014905793592333794, -0.015149122104048729, 0.007986648008227348, -0.0061459909193217754, 0.0016787659842520952, -0.026122422888875008, -0.012684445828199387, -0.025353193283081055, 0.003061221446841955, 0.016813170164823532, -0.017503907904028893, 0.016766075044870377, -0.008092613890767097, 0.0026079253293573856, 0.018445821478962898, 0.009937196038663387, -0.009175815619528294, -0.008210352621972561, 0.01943483203649521, 0.000841835921164602, -0.006456037517637014, 0.008233901113271713, -0.01874409429728985, 0.031051775440573692, -0.009434841573238373, 0.0005160905420780182, -0.02689165249466896, 7.039828051347286e-05, 0.006083196494728327, 0.017770783975720406, 0.008084764704108238, -0.017786482349038124, -0.004016872029751539, -0.006055723875761032, 0.0021193071734160185, 0.020737813785672188, -0.004689948167651892, -0.015400298871099949, -0.010274714790284634, -0.021538440138101578, -0.007284137420356274, 0.008383037522435188, -0.0420093797147274, -0.02689165249466896, 0.00836733914911747, -0.0041640461422502995, -0.0300784632563591, 0.019858693704009056, 0.017551003023982048, 0.007417574990540743, 0.010572987608611584, 0.0005366949480958283, -0.007684451062232256, 0.014270002022385597, 0.015274710021913052, -0.0037068251986056566, -0.007460745982825756, 0.005439555272459984, -0.0013127931160852313, 0.03164831921458244, 0.02301410585641861, -0.00018985460337717086, 0.026938749477267265, -0.0013589076697826385, -0.014717411249876022, 0.021554138511419296, -0.0009723302791826427, 0.013657757081091404, 0.011091041378676891, 0.0012706031557172537, 0.013995276764035225, -0.00956827960908413, 0.003416401566937566, -0.008296695537865162, 0.012880678288638592, -0.0041051763109862804, 0.015156971290707588, -0.010321810841560364, -0.006020402070134878, -0.0031809231732040644, 0.002295916201546788, -2.93581688310951e-05, -0.003569462802261114, -0.01872839592397213, -0.028116142377257347, 0.005851642694324255, -0.0029179719276726246, 0.008728405460715294, 0.008453681133687496, -0.0026079253293573856, -0.0007854191935621202, -0.01901097036898136, -0.004960748832672834, 0.011467806994915009, -0.003730372991412878, 0.004501565359532833, 0.008045517839491367, 0.030643612146377563, -0.02051803283393383, 0.023359473794698715, 0.013061211444437504, 0.020596526563167572, 0.005635787267237902, 0.003940341528505087, 0.011436409316956997, 0.0036715033929795027, -0.017456810921430588, -0.012982718646526337, 0.0017307675443589687, -0.02340657077729702, 0.0038795096334069967, 0.010141277685761452, -0.008045517839491367, -0.0074254246428608894, -0.002262556692585349, -0.01684456691145897, 0.00522762443870306, -0.005090261809527874, 0.010729974135756493, 0.011177383363246918, -0.0036361815873533487, -0.0015992920380085707, 0.020078472793102264, -0.007448972202837467, 0.011844572611153126, 0.006263730116188526, -0.005003919824957848, 0.018759792670607567, 0.018995271995663643, 0.003722523804754019, 0.03466244786977768, 0.01781787909567356, -0.0029160096310079098, 0.001951528713107109, -0.011546299792826176, 0.00020224176114425063, 0.01962321437895298, 0.034222885966300964, 0.024960728362202644, -0.010321810841560364, -0.008689159527420998, -0.007225267589092255, -0.00026466810959391296, 0.0001244234445039183, 0.005808471702039242, 0.006314750295132399, -0.007715847808867693, 0.018006261438131332, 0.007908155210316181, 0.01913655921816826, -0.00492935162037611, 0.02053373120725155, -0.004901879001408815, 0.0071703228168189526, -0.02750389836728573, 0.02599683403968811, -3.1182513339444995e-05, 0.02051803283393383, 0.0077001494355499744, -0.003394816070795059, -0.0057770744897425175, -0.028320223093032837, 0.0009159135515801609, -0.003398740664124489, -0.011091041378676891, 0.009026678279042244, -0.016169529408216476, 0.004054156132042408, -0.03128725290298462, 0.006703290157020092, -0.012519611045718193, -1.6802378013380803e-05, -0.013131855055689812, 0.0031220533419400454, -0.009576128795742989, -0.010133428499102592, 0.005922286305576563, 0.010329660028219223, 0.006589475553482771, -0.02042384259402752, 0.016389308497309685, 0.028649892657995224, -0.002262556692585349, -0.011538450606167316, 0.013116156682372093, -0.01010988000780344, -0.008995281532406807, -0.008744104765355587, -0.011240177787840366, 0.027268419042229652, -0.0028296676464378834, 0.00492935162037611, -0.01693875901401043, 0.01469386275857687, 0.000930140377022326, -0.015855558216571808, 0.009670319966971874, 0.01723703183233738, -0.009497635997831821, 0.016577690839767456, -0.027409706264734268, 0.003282963763922453, 0.0014472120674327016, -0.011609094217419624, -0.007845360785722733, -0.011726832948625088, -0.018445821478962898, -0.0013078872580081224, -0.015784913673996925, -0.017676591873168945, -0.007613807450979948, -0.005184453446418047, 0.05287278816103935, 0.00015808951866347343, -0.010329660028219223, -0.00565541023388505, 0.0147409588098526, -0.001926018507219851, 0.033626340329647064, 0.0075706359930336475, 0.0012352813500910997, -0.008186805061995983, -0.017111442983150482, 0.009897949174046516, -0.013555716723203659, -0.008296695537865162, 0.015996845439076424, 0.008924637921154499, -0.0029160096310079098, 0.028131840750575066, 0.004607530776411295, -0.017660893499851227, 0.004721345379948616, 0.002861064625903964, 0.009120870381593704, 0.018194643780589104, 0.01473310962319374, -0.022935613989830017, 0.01040815282613039, 0.0201098695397377, 0.017409715801477432, -0.016766075044870377, -0.01634221337735653, 0.00048518399125896394, -0.01075352169573307, -0.003614596091210842, 0.01993718557059765, -0.004203292541205883, 0.01692306064069271, -0.014764506369829178, 0.009426992386579514, -0.004913652781397104, 0.010557289235293865, -0.0017876748461276293, 0.02780217118561268, -0.025761356577277184, 0.01703295111656189, -0.01528255920857191, 0.009733114391565323, 0.0035262915771454573, -0.013579264283180237, -0.011145985685288906, -0.006581626366823912, -0.007704074028879404, -0.020078472793102264, 0.0015963484765961766, -0.020973291248083115, -0.012189940549433231, 0.0097566619515419, -0.007739395834505558, 0.013477223925292492, -0.013320238329470158, -0.025557273998856544, 0.0023665595799684525, 0.0015286484267562628, -0.007225267589092255, 0.010125578381121159, -0.0025490554980933666, 0.011295122094452381, 0.02441127970814705, -0.005137357395142317, -0.002929745940491557, -0.009293554350733757, 0.011891667731106281, 0.0010635781800374389, -0.020439540967345238, -0.016389308497309685, -0.007841436192393303, -0.012872829101979733, -0.01498428639024496, 0.014913642778992653, -0.02929353527724743, 0.009960743598639965, -0.004917577374726534, 0.0015708383871242404, 0.025572974234819412, -0.008485077880322933, -0.005062789190560579, 0.016750376671552658, 0.007064357399940491, -0.005317891016602516, 0.023657748475670815, 0.0030729954596608877, 0.0038029788993299007, -0.011507052928209305, -0.009921497665345669, 0.004784139804542065, 0.013885386288166046, 0.030408132821321487, 0.027959156781435013, 0.007441123016178608, -0.00916796550154686, -0.014262152835726738, 0.00861066672950983, 0.015227614901959896, 0.0068367281928658485, 0.00920721236616373, 4.166867074673064e-05, 0.008178955875337124, 0.018587108701467514, 0.017582399770617485, 0.022040795534849167, 0.009733114391565323, -0.009277855977416039, 0.015156971290707588, 0.0004459375631995499, -0.0011646377388387918, 0.005439555272459984, -0.006616948172450066, 0.019795898348093033, -0.0015423846198245883, -0.0037872805260121822, 0.000732927059289068, 0.007083980366587639, -0.004344579763710499, 0.01379119511693716, 0.008657761849462986, 0.010957603342831135, -0.015211915597319603, 0.018461519852280617, 0.025620069354772568, 0.010667179711163044, 0.008877541869878769, 0.010329660028219223, -0.009623224847018719, 0.014678164385259151, 0.004650701768696308, 0.01604394055902958, 0.024662455543875694, 0.008846145123243332, -0.0006657175836153328, 0.004992145579308271, -0.017095744609832764, -0.015196217224001884, 0.008131859824061394, 0.017111442983150482, -0.016656184569001198, -0.010431701317429543, 0.01324959471821785, 0.00831239391118288, 0.007923854514956474, -0.008194654248654842, -0.019780199974775314, -0.013304539956152439, 0.014458384364843369, 0.015777064487338066, -0.008689159527420998, 0.0014550613705068827, 0.019497625529766083, -0.000978217227384448, 0.033312369138002396, 0.0025196208152920008, 0.014065920375287533, 0.014411289244890213, -0.010070634074509144, 0.0021526666823774576, -0.0035930105950683355, -0.005419931840151548, 0.003926605451852083, 0.008657761849462986, -0.002643246902152896, -0.002394032198935747, -0.02180531620979309, 0.0047056470066308975, 0.03334376588463783, 0.022229177877306938, 0.0159340500831604, -0.02659337967634201, -0.007115377578884363, 0.015973296016454697, 0.021836712956428528, 0.009489786811172962, -0.00630297651514411, -0.020549429580569267, -0.01105179451406002, 0.013783345930278301, -0.011569847352802753, -0.005070638842880726, 0.00540423346683383, 0.022967010736465454, -0.012511761859059334, 0.02241756021976471, -0.007770793046802282, 0.012692295014858246, -0.02172682248055935, 0.021287262439727783, 0.005459178239107132, -0.0036361815873533487, -0.014458384364843369, -0.02908945269882679, 0.009733114391565323, -0.00797094963490963, 0.004670325201004744, -0.02491363324224949, -0.028430113568902016, 0.016020392999053, -0.014065920375287533, 0.03175821155309677, 0.04103606566786766, 0.010133428499102592, 0.01753530465066433, -0.00706828199326992, 0.028665592893958092, -0.01872839592397213, -0.0020761361811310053, -0.006334373727440834, 0.018869683146476746, -0.007562786806374788, -0.00458398275077343, 0.008390886709094048, -0.026326505467295647, -0.03340655937790871, 0.005208001006394625, 0.029952874407172203, 0.001443287474103272, 0.015659324824810028, -0.02241756021976471, 0.00368523970246315, 0.005196227226406336, -0.012409720569849014, -0.006405017338693142, -0.012158543802797794, 0.0013383032055571675, -0.0015777064254507422, 0.007394027430564165, -0.020345348864793777, 0.007503917440772057, -0.020455239340662956, 0.012880678288638592, 0.010266865603625774, 0.025855546817183495, -0.004591832403093576, -0.01880688965320587, 0.010188372805714607, 0.006228408310562372, 0.025572974234819412, -0.011185232549905777, -0.00383633840829134, -0.0037617702037096024, -0.00015232519945129752, -0.00044152233749628067, 0.00981945637613535, 0.007186021190136671, -0.02081630565226078, -0.006499208509922028, -0.012794336304068565, 0.01692306064069271, -0.0010076520266011357, -0.007861060090363026, -0.001127353636547923, 0.015808461233973503, -0.015211915597319603, 0.0059262108989059925, -0.01872839592397213, 0.010023538023233414, 0.009058075957000256, -0.011766079813241959, 0.01613813266158104, 0.016750376671552658, 0.004293559584766626, 0.014544726349413395, -0.005027467384934425, -0.027425404638051987, 0.01880688965320587, -0.009678169153630733, 0.02189950831234455, -0.0009654621826484799, -0.02808474563062191, 0.007613807450979948, -0.02899526245892048, 0.011161684058606625, -0.012087900191545486, -0.011718983761966228, -0.03419148921966553, 0.00569858169183135, 0.023783335462212563, 0.011444258503615856, -0.007225267589092255, 0.02081630565226078, 0.021773919463157654, 0.0009978404268622398, -0.021350057795643806, -0.01440343912690878, 0.017582399770617485, -0.0046820989809930325, 0.024458374828100204, 0.010094181634485722, -0.004689948167651892, 0.008477228693664074, -0.01255100779235363, 0.003804941428825259, -0.036200907081365585, -0.010439550504088402, 0.008806899189949036, 0.0034458364825695753, -0.009905798360705376, -1.001090549834771e-05, 0.004576133564114571, 0.006436414550989866, -0.018681300804018974, 0.0029415199533104897, -0.007186021190136671, -0.022982709109783173, -0.018053356558084488, -0.015502339228987694, -0.03717421740293503, 0.003704862901940942, 0.015196217224001884, -0.009230759926140308, -0.006275503896176815, -0.01992148719727993, -0.002957218559458852, -0.03632649406790733, -0.004948974587023258, -0.01613813266158104, -0.008485077880322933, -0.0053571374155581, -0.02708003669977188, 0.0021173448767513037, 0.0010861449409276247, -0.012205639854073524, 0.003229981055483222, -0.008846145123243332, 0.006279428489506245, 0.009780210442841053, -0.019372036680579185, -0.005863416474312544, -0.02370484359562397, 0.023736240342259407, -0.0019230750622227788, -0.015463093295693398, 0.0026805312372744083, 0.012072201818227768, 0.0030906563624739647, -0.017472511157393456, -0.007762943860143423, -0.004423072561621666, -0.024348484352231026, -0.01350077148526907, 0.010659330524504185, 0.007036884780973196, 0.012802185490727425, 0.025839848443865776, -0.002517658518627286, 0.013877537101507187, -0.0022841421887278557, -0.007602033205330372, 0.005788848269730806, 0.01883828639984131, 0.0010047085816040635, -0.0030769200529903173, -0.003065146040171385, -0.012103598564863205, -0.0226216409355402, -0.019670309498906136, 0.01016482524573803, 0.0026255862321704626, -0.026954447850584984, -0.003969776444137096, 0.012660898268222809, -0.034913621842861176, 0.013265293091535568, -0.014780205674469471, -0.010690727271139622, 0.004599681589752436, 0.010400303639471531, 0.010235468856990337, 0.007335157599300146, 0.0207064151763916, -0.004693872760981321, 0.00016557087656110525, 0.013830441981554031, 0.023485062643885612, 0.0216012354940176, -0.021836712956428528, 0.010486645624041557, -0.00048567456542514265, 0.021585535258054733, 0.010384605266153812, -0.0037401847075670958, -0.010180523619055748, 0.0226216409355402, 0.009717416018247604, -0.024050211533904076, -0.0068367281928658485, -0.015572982840240002, -0.01076137088239193, -0.01444268599152565, 0.014897944405674934, -0.00157476298045367, 0.002327313181012869, 0.022747229784727097, -0.007617732044309378, 0.0051648300141096115, -0.02886967360973358, 0.016781773418188095, -0.00428570993244648, 0.002694267313927412, 0.023861829191446304, 0.023736240342259407, 0.014010975137352943, 0.022684436291456223, 0.007931703701615334, 0.005694657098501921, -0.01563577726483345, 0.003669541096314788, 0.0410674624145031, 0.012386173009872437, 0.009050226770341396, -0.004058080725371838, -0.0029101227410137653, -0.02230766974389553, 7.393199211946921e-06, 0.008163257502019405, 0.018555711954832077, -0.008751953952014446, -0.009921497665345669, 0.015219765715301037, 0.002331238007172942, 0.019842995330691338, 0.009489786811172962, -0.012448967434465885, -0.013681305572390556, 0.009199363179504871, -0.004101251717656851, 0.012040804140269756, 0.004113025963306427, -0.010015688836574554, -0.001943679410032928, 0.004638927988708019, -0.0066640437580645084, 0.0065698521211743355, -0.015431695617735386, -0.005160905420780182, 0.009788059629499912, -0.007955251261591911, 0.004964673426002264, -0.0048665571957826614, 0.011428560130298138, 0.0008889316231943667, -0.021083181723952293, -0.019686009734869003, 0.012080051004886627, 0.01582415960729122, 0.007774717640131712, 0.013995276764035225, 0.0015865368768572807, -0.0036813151091337204, 0.0054434798657894135, -0.0035086306743323803, -0.0016012543346732855, -0.0017641270533204079, 0.0051766037940979, -0.02810044400393963, -1.746159432514105e-05, 0.01076137088239193, -0.0020859476644545794, -0.002633435418829322, -0.0076648276299238205, 0.002845366019755602, -0.012268433347344398, -0.012786487117409706, -0.00261381221935153, 0.008029819466173649, -0.006047874689102173, 0.013767647556960583, -0.021098880097270012, 0.03237045556306839, 0.010070634074509144, 0.0066522699780762196, 0.00463107880204916, -0.03196229040622711, 0.018948176875710487, 0.029513314366340637, 0.0027335137128829956, -0.00857141986489296, 0.008335941471159458, -0.004607530776411295, 0.0011293160496279597, -0.004678174387663603, -0.01632651500403881, -0.006758234929293394, -0.01861850544810295, -0.006087121088057756, -0.01802195981144905, 0.022354766726493835, -0.013767647556960583, 0.0072959112003445625, 0.010824165306985378, 0.021381454542279243, -0.0066522699780762196, 0.007323383819311857, -0.0069269947707653046, 0.034097298979759216, -0.006094970274716616, 0.020596526563167572, -0.02152274176478386, -0.003186810063198209, -0.0009002149454317987, -0.0027492123190313578, 0.02767658233642578, 0.025682862848043442, 0.011145985685288906, 0.0016444254433736205, 0.0208320040255785, 0.004984296392649412, 0.007409725803881884, -0.007884607650339603, 0.02221347950398922, -0.0022488203831017017, 0.002348898909986019, -0.007303760387003422, -0.017299825325608253, 0.0073547810316085815, -0.0009085548226721585, -0.003114204155281186, -0.029827285557985306, 0.0072959112003445625, -0.0064442637376487255, -0.007829662412405014, -0.00569858169183135, 0.02967029996216297, -0.013885386288166046, -0.012770787812769413, 0.0002179403236368671, 0.0020153040532022715, 0.008838295936584473, 0.0004765988269355148, 0.0057417526841163635, -0.02061222493648529, -0.009740963578224182, -0.013304539956152439, -0.0019731142092496157, 0.026561982929706573, -0.00015060817531775683, 0.0072959112003445625, 0.009324952028691769, 0.0031711114570498466, -0.03224486485123634, 0.006978014949709177, 0.006828878540545702, -0.011475656181573868, 0.01664048619568348, -0.02817893587052822, 0.005851642694324255, 0.010659330524504185, -0.0034634973853826523, 0.003936416935175657, 0.017786482349038124, -0.0033123986795544624, -0.014529027976095676, 0.018901079893112183, 0.029842983931303024, 0.012637349776923656, -0.00044323934707790613, -0.01479590404778719, -0.016891663894057274, 0.01634221337735653, 0.008210352621972561, -0.011373614892363548, -0.00021941207523923367, 0.009230759926140308, 0.006691516377031803, -0.0010115767363458872, 0.006844577379524708, 0.002148742089048028, 0.007939552888274193, -0.006322599947452545, -0.018885381519794464, -0.012291981838643551, -0.0015178556786850095, -0.009607525542378426, -0.014780205674469471, -0.015557284466922283, 0.0012313567567616701, -0.02111457847058773, 0.018273137509822845, -0.01634221337735653, 0.0025235454086214304, -0.002931708237156272, 0.009631074033677578, -0.003061221446841955, 0.00791992899030447, 0.01594189926981926, -0.003182885469868779, 0.014670315198600292, 0.036891642957925797, 0.01781787909567356, -0.033908914774656296, 0.007978798821568489, -0.021585535258054733, 0.006844577379524708, 0.0003831432550214231, -0.01583985798060894, 0.027817869558930397, -0.003991361707448959, 0.007845360785722733, 0.00806906633079052, -0.0020761361811310053, 0.0075156912207603455, 0.019277846440672874, -0.0011852422030642629, -0.020047076046466827, -0.006703290157020092, -0.0201098695397377, 0.0016051789280027151, -0.001210752292536199, 0.00647566094994545, 0.004517264198511839, 0.018178945407271385, -0.01285712979733944, 0.00011522506247274578, -0.0035047060810029507, 0.02310829795897007, 0.004886180628091097, -0.00033016057568602264, -0.008414434269070625, -0.015620078891515732, 0.0035066683776676655, -0.017362620681524277, -0.024458374828100204, 0.015172669664025307, -0.005580842029303312, -0.009795908816158772, -0.014560425654053688, 0.0071703228168189526, 0.005937984678894281, 0.01612243242561817, 0.005451329052448273, 0.022386163473129272, -0.009835154749453068, 0.01479590404778719, -0.017284126952290535, 0.00956043042242527, -0.00570250628516078, -0.016200926154851913, -0.0028571400325745344, 0.004917577374726534, 0.009952894411981106, -0.0025922267232090235, -0.009709566831588745, -0.0037264483980834484, -0.01781787909567356, -0.00791207980364561, 0.008547872304916382, -0.009897949174046516, -0.016279418021440506, -0.003271189983934164, -0.02111457847058773, 0.0008918751263990998, -0.013186800293624401, 0.005506273824721575, 0.004246463533490896, -0.002262556692585349, 0.0008742142235860229, -0.003596935188397765, 0.006781782954931259, -0.002029040362685919, 0.023171091452240944, -0.013532169163227081, 0.01230768021196127, 0.020376745611429214, -0.02062792330980301, -0.003500781487673521, -0.0033869668841362, 0.018445821478962898, 0.010086332447826862, 0.002904235851019621, 0.003981550224125385, 0.021852411329746246, 0.016577690839767456, 0.020580828189849854, -0.008924637921154499, -0.0025765281170606613, 0.0006225464749149978, -0.01294347271323204, -0.00925430841743946, -0.0029689923394471407, -0.023563556373119354, 0.012912075035274029, 0.014458384364843369, 0.017974864691495895, 0.011153834871947765, 0.031114568933844566, 0.021397152915596962, 0.001706238486804068, -0.004662476014345884, -0.016020392999053, -0.0006289240554906428, 0.022464655339717865, -0.021868109703063965, -0.01861850544810295, 0.013610661961138248, 0.0030926186591386795, -0.002237046370282769, -0.0025196208152920008, -0.003016088157892227, -0.009097321890294552, 0.005941909272223711, 0.0030553345568478107, 0.012590254656970501, -0.01196231134235859, 0.023076901212334633, 0.011970160529017448, -0.018681300804018974, 0.023233886808156967, 0.00010381906758993864, -0.0006696421769447625, 0.0016297079855576158, 0.012441118247807026, 0.005121659021824598, -0.005561219062656164, -0.04291989654302597, 0.016310816630721092, 0.009701717644929886, 0.012362625449895859, -0.0018063168972730637, 0.01901097036898136, -0.0027864964213222265, 0.024740949273109436, -0.003651880193501711, -0.012268433347344398, -0.0035243292804807425, -0.0029434822499752045, -0.007507842034101486, 0.0008433076436631382, 0.00028968771221116185, 0.007327308412641287, 0.007413650397211313, -0.010313961654901505, 0.010251167230308056, 0.0079670250415802, -0.022260574623942375, 0.0031259781681001186, 0.009301403537392616, -0.011028246954083443, -0.01843012310564518, 0.013053362257778645, 0.012119296938180923, -0.018069056794047356, -0.008532173931598663, 0.009474088437855244, 0.00505886459723115, 0.001412871410138905, 0.0023665595799684525, 0.015957597643136978, 0.017315523698925972, 0.019591817632317543, 0.02511771395802498, -0.0038500747177749872, 0.014238604344427586, -0.0035145177971571684, 0.033720530569553375, 0.011224478483200073, 0.007829662412405014, -0.0014010975137352943, 0.006817104760557413, -0.006691516377031803, 0.0010351245291531086, 0.01141286175698042, 0.005659335292875767, -0.006255880929529667, -0.00600077910348773, -0.010478796437382698, 0.017080046236515045, 0.006648344919085503, -0.0036087092012166977, -0.0016463877400383353, 0.003402665490284562, 0.0011028246954083443, -0.020172664895653725, 0.023563556373119354, 0.02480374276638031, -0.001473703421652317, 0.00040031358366832137, 0.00445446977391839, 0.0153375044465065, 0.022857120260596275, -0.0065345303155481815, -0.0033045492600649595, 0.009442690759897232, -0.0001334378612227738, -0.027535295113921165, -0.023673446848988533, 0.004081628751009703, 0.0052590216509997845, 0.0009409331250935793, 0.007562786806374788, -0.0017503907438367605, -0.0007147755823098123, 0.02152274176478386, -0.02042384259402752, -0.009976441971957684, -0.028540004044771194, -0.000853119243402034, -0.01792776957154274, 0.008453681133687496, 0.00672291312366724, -0.024144403636455536, 0.00016544823301956058, -0.005726053845137358, 0.007951326668262482, 0.02249605394899845, -0.00985870324075222, -0.013594962656497955, 0.00463500339537859, 0.0048901052214205265, 0.010659330524504185, -0.012025105766952038, 0.0014315134612843394, -0.008579269051551819, -0.00201726658269763, 0.004615379963070154, 0.008453681133687496, 0.012064352631568909, 0.0034595727920532227, -0.01753530465066433, 0.029529012739658356, 0.025729959830641747, -0.014010975137352943, 0.012990567833185196, 0.0015472904779016972, -0.007268438581377268, 0.013061211444437504, -0.03579274192452431, -0.025431687012314796, 0.006208785343915224, 0.013108307495713234, -0.014717411249876022, -0.00018004298908635974, 0.030831994488835335, -0.0075706359930336475, 0.010321810841560364, 0.029262138530611992, 0.010981150902807713, 0.005262946244329214, 0.02152274176478386, -0.008390886709094048, 0.01624802127480507, 0.02370484359562397, 0.010070634074509144, 0.01744111254811287, -0.015109875239431858, -0.007633430417627096, -0.01973310485482216, -0.02329668030142784, 0.0005563181475736201, 0.003924643155187368, -0.008037668652832508, 0.0022782552987337112, 0.009905798360705376, -0.013131855055689812, -0.013759798370301723, 0.012872829101979733, 0.019450530409812927, 0.009081623516976833, -0.025761356577277184, -0.0029689923394471407, -0.007707998622208834, -0.014270002022385597, 0.003640106413513422, -0.01290422584861517, 0.006459962110966444, -0.016656184569001198, 0.020470937713980675, 0.009827305562794209, 0.03488222509622574, 0.009301403537392616, -0.00956827960908413, -0.021397152915596962, -0.006240182090550661, 0.012919924221932888, -0.00707613117992878, -0.0057182046584784985, 0.011970160529017448, -0.0018769605085253716, -0.011554148979485035, -0.015714270994067192, 0.008642063476145267, -0.016875965520739555, -0.0036950514186173677, -0.01854001358151436, -0.02967029996216297, 0.03384612128138542, -0.003818677505478263, -0.01413656398653984, 0.012425419874489307, -0.027864964678883553, 0.007586334832012653, 0.013076909817755222, -0.011420710943639278, -0.00039172841934487224, 0.024725250899791718, 0.006766084581613541, -0.005204076413065195, 0.0062009356915950775, -0.004921502433717251, 0.009301403537392616, 0.05199366807937622, -0.0009222910739481449, 0.010722124949097633, -0.010886959731578827, 0.011318670585751534, -0.024678153917193413, 0.0013579264050349593, -0.0019780199509114027, 0.0005102035938762128, -0.0270957350730896, -0.003349682781845331, -0.018445821478962898, 0.019670309498906136, 0.0324646458029747, 0.00046163611114025116, 0.0006725856801494956, 0.0046820989809930325, 0.008806899189949036, -0.0016993703320622444, 0.0022704058792442083, 0.014513329602777958, 0.01742541417479515, -0.013430127874016762, -0.0077550942078232765, 0.0189167782664299, 0.004058080725371838, 0.029010960832238197, 0.0027570617385208607, -0.0012068276992067695, 0.017064347863197327, 0.00261381221935153, -0.0015335541684180498, -0.021978000178933144, 0.0202354583889246, 0.01960751600563526, 0.005121659021824598, 0.003371268277987838, 0.013940331526100636, 0.006251956336200237, 0.006879899185150862, -0.0073312330059707165, -0.008218202739953995, 0.023045502603054047, 0.009152267128229141, -0.03189949691295624, -0.004016872029751539, 0.008453681133687496, -0.006098895333707333, 0.0034438741859048605, 0.0050156936049461365, -0.004693872760981321, 0.00569858169183135, -0.0216012354940176, -0.002448977204039693, 0.009160116314888, 0.005659335292875767, 0.012864979915320873, 0.009843004867434502, -0.0034262132830917835, -0.01171113457530737, -0.01543954573571682, 0.004148347768932581, 0.007939552888274193, 0.029356328770518303, -0.012111447751522064, 0.005769225303083658, -0.011216629296541214, 0.010078483261168003, 0.00985870324075222, -0.015918351709842682, -0.0023116145748645067, -0.009646772406995296, 0.008422283455729485, -0.023940321058034897, -0.006208785343915224, -0.008736255578696728, -0.024458374828100204, 0.006216634530574083, -0.003993324004113674, 0.03406590223312378, -0.01390108559280634, -0.005298268049955368, 0.0022939539048820734, -0.0011096927337348461, -0.007927779108285904, -0.008901090361177921, -0.0010243317810818553, 0.006212709937244654, 0.025682862848043442, -0.008948185481131077, -0.029042357578873634, -0.010604385286569595, 0.004042382352054119, 0.020565129816532135, 0.004862632602453232, 0.004430921748280525, -0.017095744609832764, 0.010368906892836094, 0.007276287768036127, -0.00921506155282259, 0.018147548660635948, -0.00044152233749628067, -0.008406585082411766, -0.0022684435825794935, -0.022982709109783173, -0.040502313524484634, -0.006138141732662916, -0.0034007031936198473, -0.006149915512651205, -0.002107533160597086, 0.00535321282222867, -0.001048860838636756, 0.0011038058437407017, 0.03397170826792717, 0.00754316383972764, 0.009364197961986065, 0.011781778186559677, 0.017378319054841995, 0.014646767638623714, -0.009945045225322247, -0.01344582624733448, 0.007468595635145903, 0.013618511147797108, 0.003151488257572055, 0.0013196611544117332, 0.003632256994023919, -0.002158553572371602, 0.007452896796166897, -0.02361065149307251, 0.011138136498630047, 0.00020077000954188406, -0.02907375432550907, 0.0025843773037195206, 0.03249604254961014, 0.005125583615154028, 0.018602807074785233, 0.020345348864793777, -0.0027786472346633673, 0.009348499588668346, 0.0013932482106611133, -0.019654611125588417, 0.024254294112324715, 0.00951333437114954, 0.010015688836574554, 0.006091045681387186, -0.007311609573662281, -0.013697003945708275, 0.0210046898573637, 0.020894799381494522, 0.009018829092383385, 0.0007020204793661833, -0.01194661296904087, -0.005494500044733286, 0.014945040456950665, -0.019999980926513672, -0.00945838913321495, 0.000888441049028188, 0.010902658104896545, -0.000859496823977679, 0.0079670250415802, 0.003308474086225033, -0.0006563965580426157, 0.02370484359562397, -0.0028649894520640373, 0.007091829553246498, -0.005298268049955368, -0.021585535258054733, 0.005545520689338446, -0.029858684167265892, -0.014937191270291805, 0.005459178239107132, 0.006216634530574083, -0.02189950831234455, -0.0018337893998250365, -0.0038618487305939198, 0.01409731712192297, -0.0005882058758288622, 0.009426992386579514, 0.000267856870777905, -0.015117724426090717, 7.009167165961117e-05, 0.010675028897821903, 0.03497641906142235, -0.007405801210552454, -0.003369305981323123, 0.0021703275851905346, -0.011153834871947765, 0.016671882942318916, -0.0005033354391343892, 0.00019414718553889543, -0.012833582237362862, 0.01110673975199461, -0.01761379837989807, -0.006573776714503765, -0.0011244101915508509, 0.006499208509922028, -0.007315534632652998, -0.01572996936738491, -0.03535318374633789, 0.017692290246486664, 0.011193081736564636, 0.009113021194934845, -0.01160124409943819, -0.009160116314888], "ae360743-3475-4f15-95b3-7c96f8878dbe": [-0.025862988084554672, 0.009671269915997982, -0.009853608906269073, 0.026300601661205292, 0.002180776558816433, -0.025512896478176117, 0.03264600411057472, 0.04726231470704079, 0.0007471347926184535, 0.021443087607622147, 0.02918885461986065, 0.01472571212798357, 0.0077895293943583965, -0.015112270601093769, -0.021180517971515656, 0.01317947544157505, -0.02631518989801407, 0.016250066459178925, 0.03401719778776169, -0.047116443514823914, 0.041573330760002136, 0.013164888136088848, -0.04297369718551636, -6.7750399466604e-05, -0.002162542659789324, 8.900430839275941e-05, -0.011786404065787792, 0.031712427735328674, -0.03673040494322777, -0.0016282888827845454, -0.009970306418836117, -0.0013757491251453757, 0.0009436052059754729, 0.0141276391223073, 0.00020399194909259677, -0.011509248986840248, 0.008642876520752907, -0.010240168310701847, -0.0312456414103508, 0.0025217507500201464, -0.038918472826480865, 0.010232874192297459, -0.007986456155776978, -0.048575155436992645, -0.022814277559518814, 0.035184167325496674, -0.0340755432844162, -0.01201250497251749, 0.019225843250751495, 0.010801772587001324, -0.012107321061193943, -0.06844282895326614, -0.005911435931921005, -0.004525658208876848, 0.027219591662287712, -0.023849964141845703, -0.008052097633481026, 0.021953636780381203, -0.00543735409155488, -0.028838763013482094, -0.0149955740198493, -0.004361553117632866, -0.029480597004294395, -0.00881062913686037, 0.005284189246594906, 0.025994272902607918, 0.018365202471613884, -0.01921125501394272, -0.010094297118484974, -0.022858038544654846, -0.005612399894744158, 0.05064652860164642, -0.059632204473018646, -0.007592603098601103, 0.04311956837773323, -0.00794269423931837, 0.03649700805544853, 0.014638189226388931, -0.015272729098796844, -0.0054738218896090984, 0.014543372206389904, -0.007512373849749565, 0.0022938267793506384, 0.014900756999850273, 0.06570044904947281, -0.003345923963934183, 0.0030687684193253517, -0.05706486850976944, 0.02338317595422268, 0.0004895806778222322, 0.00044057704508304596, 0.010626726783812046, -0.0032255800906568766, 0.005900495685636997, -0.007490493357181549, 0.0037160723004490137, 0.023354001343250275, -0.009539986029267311, 0.01823391765356064, 0.009270123206079006, -0.010568378493189812, -0.026563171297311783, 0.03559260815382004, 0.006936182267963886, 0.047758277505636215, -0.007979162037372589, 0.007920813746750355, 0.004620474763214588, -0.028663719072937965, 0.023456111550331116, 0.0067283157259225845, -0.018408963456749916, -0.00012250914005562663, 0.02479812689125538, -0.05017974227666855, -0.005667101591825485, -0.02793436124920845, 0.00032570335315540433, 0.007563428953289986, 0.00589684909209609, 0.005178432445973158, -0.026431886479258537, -0.006024486385285854, -0.005502996500581503, -0.04714561626315117, -0.025046108290553093, 0.03299609571695328, 0.0031435273122042418, 0.02543996088206768, 0.011881220154464245, -0.024010421708226204, 0.021880701184272766, 0.02072831802070141, 0.03603022173047066, 0.022143268957734108, -0.0006691847811453044, 0.017723368480801582, 0.05152175575494766, -0.013310759328305721, 0.007125814910978079, -0.08501381427049637, -0.038655903190374374, -0.015593646094202995, 0.05411826819181442, -0.011275854893028736, 0.016804378479719162, -0.02473977953195572, 0.0056926291435956955, -0.003792654722929001, 0.035125818103551865, -0.07614483684301376, -0.03591352328658104, -0.027861425653100014, 0.013959887437522411, 0.06383329629898071, -0.0013411046238616109, 0.011312322691082954, 0.014514198526740074, -0.027569683268666267, 0.030195366591215134, 0.029816102236509323, -0.03448398411273956, -0.0042229751124978065, 0.05283460021018982, 0.050413135439157486, -0.00989737082272768, 0.029057571664452553, 0.011253973469138145, -0.025031521916389465, 0.022332902997732162, -0.0005082704592496157, -0.016891900449991226, 0.018831990659236908, -0.0016319355927407742, -0.0044199014082551, 0.007085700519382954, 0.03489242494106293, 0.011946862563490868, 0.01339828222990036, -0.013792134821414948, -0.0451325923204422, 0.020378226414322853, -0.008110446855425835, 0.008905445225536823, 0.052163589745759964, 0.0073227412067353725, -0.004594947211444378, 0.03194582462310791, -0.007833290845155716, -0.006545976269990206, -0.006199531722813845, 0.008526179939508438, -0.015870802104473114, -0.009211774915456772, -0.03299609571695328, -0.005010680295526981, 0.027132069692015648, 0.0006103803752921522, -0.014900756999850273, 0.01741703785955906, 0.0022135975304991007, 0.001353868399746716, -0.020538683980703354, 0.010801772587001324, -0.030662154778838158, -0.010356864891946316, -0.0176796056330204, -0.007607190404087305, 0.009992186911404133, -0.04253608360886574, 0.032470960170030594, -0.06103256717324257, 0.02164730615913868, 0.02781766466796398, -0.01973639242351055, 0.013544153422117233, 0.006735608913004398, 0.0356801301240921, 0.032033346593379974, -0.04090232402086258, 0.013412869535386562, 0.02603803388774395, 0.007585309445858002, -0.019065383821725845, -0.05852358043193817, -0.012202137149870396, -0.0293493140488863, -0.01298984233289957, -0.01671685464680195, -0.021939050406217575, -0.03209169581532478, -0.0476415790617466, 0.007238865364342928, 0.014791353605687618, 0.0017659548902884126, 0.0282552782446146, 0.057852573692798615, -0.017781715840101242, -0.01150195486843586, 0.00638551777228713, -0.02641730010509491, 0.0353592112660408, 0.020101070404052734, -0.02201198600232601, -0.002226361306384206, 0.012523054145276546, 0.012253192253410816, 0.009459756314754486, 0.0002461578988004476, 0.023529047146439552, -0.03016619384288788, -0.012085440568625927, 0.0032292266841977835, -0.0007485023234039545, -0.020421987399458885, 0.019998960196971893, 0.01123209297657013, -0.022653818130493164, 0.023879138752818108, 0.00526230875402689, -0.006502214819192886, 0.05082157626748085, 0.037138842046260834, 0.02679656445980072, -0.010787185281515121, -0.008358427323400974, 0.01648346148431301, 0.005338890943676233, 0.023558221757411957, 0.009503518231213093, 0.039356086403131485, -0.030224541202187538, -0.027730140835046768, 0.07206044346094131, 0.004000521264970303, 0.004718937911093235, -0.021764004603028297, -0.02667986787855625, 6.547116208821535e-05, 0.00408075051382184, -0.03226673975586891, -0.0021443087607622147, 0.012924200855195522, -0.023354001343250275, 0.020815839990973473, 0.027350876480340958, -0.0094670495018363, 0.011932275258004665, -0.04023131728172302, -0.005984371528029442, 0.011669707484543324, 0.029961973428726196, 0.007052879314869642, 0.012129201553761959, 0.002928367117419839, -0.004722584504634142, 0.006834072060883045, -0.003431623335927725, -0.049654603004455566, 0.003572024405002594, 0.013252411037683487, -0.005984371528029442, -0.019867677241563797, -0.024973172694444656, 0.04726231470704079, -0.01969263143837452, 0.033929672092199326, 0.0530388206243515, -0.03760563209652901, 0.052105244249105453, 0.02793436124920845, -0.06394999474287033, -0.028678305447101593, -0.02831362746655941, 0.01084553450345993, 0.014784060418605804, -0.004281323868781328, -0.044169843196868896, -0.02609638310968876, -0.03130399063229561, -0.019269604235887527, 0.0034060957841575146, -0.07246888428926468, 0.035388387739658356, 0.021078407764434814, -0.03489242494106293, 0.052163589745759964, 0.012304247356951237, -0.007074759807437658, -0.03366710618138313, -0.028503259643912315, -0.026971610262989998, -0.024987760931253433, 0.0024871062487363815, -0.0464162603020668, -0.03238343819975853, -0.03136233985424042, -0.044344887137413025, 0.013288878835737705, -0.03489242494106293, 0.00541182653978467, -0.018481899052858353, 0.016556397080421448, -0.02783225104212761, -0.016147958114743233, -0.00730815390124917, 0.015987498685717583, 0.022157857194542885, 0.011720762588083744, 0.025673355907201767, 0.0008524356526322663, -0.012194843962788582, 0.014878876507282257, -0.0052258409559726715, 0.02196822315454483, -0.04454910755157471, -0.0511133186519146, 0.008183382451534271, -0.0016054963925853372, -0.0005233134143054485, 0.007804116699844599, -0.024272991344332695, 0.016585571691393852, 0.009357646107673645, -0.006907008122652769, 0.0003908896178472787, 0.02751133404672146, 0.021063821390271187, -0.018248504027724266, -0.02673821710050106, -0.016527222469449043, 0.016468875110149384, -0.03597187250852585, -0.019838502630591393, 0.0022810630034655333, -0.03194582462310791, 0.05569367855787277, -0.004624121356755495, -0.015958324074745178, -0.003734306199476123, 0.01827767863869667, -0.006702788174152374, -0.026125557720661163, 0.003770774230360985, 0.025585832074284554, 0.026723628863692284, 0.029932798817753792, -0.044169843196868896, -0.023572808131575584, -0.0027040899731218815, -0.03460068255662918, 0.013704611919820309, -0.004642355255782604, -0.008241730742156506, 0.011020579375326633, -0.004908570554107428, 0.0068450127728283405, -0.030691329389810562, 0.009474343620240688, -0.025367025285959244, -0.020626207813620567, -0.012698099948465824, 0.02653399668633938, -0.012202137149870396, 0.023018497973680496, -0.03673040494322777, -0.014061996713280678, 0.00013219589891377836, 0.03258765861392021, 0.006144830025732517, 0.011005993001163006, -0.006761136464774609, 0.011582184582948685, 0.0030961192678660154, 0.02707372047007084, 0.020378226414322853, -0.012647044844925404, 0.030457936227321625, -0.012377182953059673, 0.004208388272672892, 0.032412610948085785, 0.02891169860959053, 0.0068450127728283405, 0.03293775022029877, 0.017285753041505814, -0.01556447148323059, 0.008015629835426807, 0.014937224797904491, 0.020159419625997543, -0.00681948522105813, 0.02266840636730194, 0.02869289182126522, 0.008125033229589462, -0.007658245507627726, -0.013573328033089638, 0.004569419659674168, -0.022143268957734108, -0.01604584790766239, 0.029538946226239204, -0.008905445225536823, -0.03509664535522461, 0.025906749069690704, -0.010327691212296486, -0.006881480570882559, -0.00816150102764368, -0.004164626821875572, -0.037459760904312134, 0.007847878150641918, 0.00813232734799385, -0.018744466826319695, -0.003909351769834757, -0.004255796317011118, -0.025089871138334274, -0.014280804432928562, -0.006651733070611954, -0.016352176666259766, 0.02538161352276802, -0.004496484063565731, 0.019940612837672234, -0.055897898972034454, 1.451590742362896e-05, 0.01087470818310976, 0.0065496233291924, 0.0035556138027459383, 0.011341496370732784, -0.012326127849519253, -0.002332118107005954, -0.0018425373127683997, 0.010240168310701847, 0.005834853742271662, 0.02625684067606926, -0.005116437096148729, 0.025731705129146576, 0.042711127549409866, -0.00482834130525589, 0.004263089969754219, -0.017475387081503868, -0.004507424309849739, -0.021136756986379623, 0.01648346148431301, -0.0068559530191123486, -0.03719719126820564, 0.042827825993299484, -0.015768691897392273, 0.008584528230130672, 0.02967023104429245, -0.005513936746865511, -0.03888930007815361, -0.014463143423199654, -0.009992186911404133, 0.018350614234805107, 0.00431414507329464, 0.0018689765129238367, 0.02543996088206768, -0.01439750101417303, -0.008817922323942184, -0.01019640639424324, -0.0015517063438892365, -0.009051316417753696, -0.012865852564573288, 0.030195366591215134, -0.00417556706815958, -0.002439698204398155, -0.010728836990892887, -0.02354363352060318, 0.007144048810005188, -0.009663975797593594, 0.02190987579524517, -0.054380834102630615, -0.008562647737562656, -0.01169158797711134, 0.026665281504392624, -0.05688982084393501, 0.014645482413470745, 0.0276134442538023, 0.027307115495204926, -0.0070929937064647675, -0.010203700512647629, 0.02452097274363041, 0.0019783801399171352, -0.022114094346761703, -0.04215681552886963, -0.02164730615913868, -0.0009563689818605781, 0.03416306897997856, -0.022580882534384727, -0.0008232613909058273, -0.01106434129178524, -0.024987760931253433, -0.051230013370513916, -0.019838502630591393, 0.032412610948085785, -0.03792654722929001, -0.0016921075293794274, -0.0009682209929451346, -0.024156294763088226, -0.004806460812687874, 0.01011617761105299, -0.0004759052535519004, -0.017592083662748337, -0.04848763346672058, 0.013741080649197102, 0.0009600157500244677, -0.024987760931253433, 0.009408701211214066, 0.0027113836258649826, -0.01654181070625782, 0.010575671680271626, -0.009751498699188232, 0.032675180584192276, -0.018306853249669075, 0.03570930287241936, 0.008693931624293327, 0.009963012300431728, 0.004649648908525705, -0.04557020589709282, -0.006130243185907602, 0.0008455979404971004, 0.0001895187742775306, -0.02169106900691986, -0.026504822075366974, 0.02398124895989895, 0.0004624577413778752, 0.04484084993600845, 0.010546498000621796, -0.007118521258234978, -0.006370930932462215, -0.010736130177974701, 0.010962231084704399, 0.008854390121996403, 0.02142849937081337, 0.0023977600503712893, 0.037138842046260834, -0.006786664016544819, -0.01909455843269825, 0.06219954043626785, 0.002906486392021179, -0.008424069732427597, -0.05794009566307068, -0.012136495672166348, 0.016235480085015297, -0.007796823047101498, 0.027380051091313362, 0.01274186186492443, -0.005864027887582779, -0.035563431680202484, -0.015520710498094559, -0.015856213867664337, 0.00514196464791894, -0.003752540098503232, 0.01643970049917698, 0.01339828222990036, -0.004058870021253824, -0.007023705169558525, -0.012865852564573288, 0.02332482673227787, -0.009970306418836117, 0.018511073663830757, 0.048254240304231644, 0.009642095305025578, -0.006225059274584055, 0.020947124809026718, 0.04942120984196663, -0.011487367562949657, -0.05338890850543976, -0.011275854893028736, 0.006330816075205803, 0.024725191295146942, 0.023689504712820053, -0.0006254233885556459, 0.020655382424592972, -0.010750717483460903, 0.020217766985297203, -0.015287316404283047, 0.02001354843378067, -0.0066116186790168285, -0.0033659811597317457, 0.031012246385216713, 0.007687419652938843, -0.011647826060652733, 0.027890600264072418, -0.003520969534292817, 0.026592345908284187, -0.009452463127672672, 0.008504299446940422, 0.03130399063229561, -0.023237304762005806, -0.013493099249899387, -0.007986456155776978, 0.027963535860180855, 0.013434750027954578, -0.010181819088757038, -0.0035227928310632706, -0.009860903024673462, -0.01480594091117382, -0.026986198499798775, 0.024914825335144997, 0.00960562750697136, 0.015185206197202206, -0.006535036023706198, 0.0004234827356413007, -0.016293829306960106, 0.0006646263063885272, 0.024448037147521973, -0.014105758629739285, -0.004788226913660765, 0.013748373836278915, -0.0156228207051754, 0.020947124809026718, -0.005995312239974737, -0.015651995316147804, 0.025848401710391045, -0.03763480484485626, 0.02956812083721161, 0.004926804453134537, -0.0004982418031431735, -0.009685857221484184, -0.009933838620781898, -0.018408963456749916, -0.005904142279177904, 0.024331338703632355, -0.017781715840101242, -0.011210212484002113, -0.03130399063229561, -0.011844752356410027, 0.0014960928820073605, 0.01556447148323059, -0.004970565903931856, 0.0019400888122618198, -0.005510289687663317, 0.017212817445397377, -0.02478354051709175, 0.02543996088206768, -0.005696275737136602, 0.004325085319578648, -0.0071951039135456085, -0.024652255699038506, 0.03092472441494465, -0.021399324759840965, -0.011027873493731022, -0.00830007903277874, -0.045745253562927246, -0.03419224172830582, 0.0018315970664843917, -0.047758277505636215, 0.00018484634347259998, -0.015185206197202206, -0.0350382961332798, -0.0162646546959877, 0.00984631571918726, -0.03731388971209526, 0.013310759328305721, -0.032354261726140976, 0.01903620921075344, -0.008912738412618637, -0.021472260355949402, 0.007490493357181549, -0.011188331991434097, 0.013201355934143066, -0.013843189924955368, -0.05099662020802498, -0.009277417324483395, 1.5278028513421305e-06, -0.011122689582407475, -0.0022719460539519787, 0.010838240385055542, -0.020436573773622513, -0.01470383070409298, -0.012194843962788582, 0.014113051816821098, 0.0014295391738414764, -0.003479031380265951, 0.006505861878395081, 0.0001955587649717927, 0.01935712620615959, 0.011253973469138145, 0.018248504027724266, 0.028021885082125664, 0.013653557747602463, 0.026052622124552727, 0.021224280819296837, 0.03322949260473251, -0.04344048351049423, -0.00023977601085789502, -0.0426236055791378, -0.047437358647584915, 0.014915344305336475, 0.01407658401876688, 0.02088877558708191, 0.0038911178708076477, 0.033550407737493515, 0.005025267601013184, 0.02478354051709175, 0.012048972770571709, 0.03614691644906998, -0.0062651741318404675, 0.003840063000097871, 0.018642356619238853, 0.07077677547931671, -0.0021953636314719915, 0.0013119303621351719, 0.0318874754011631, 0.009554572403430939, -0.02158895879983902, -0.02771555446088314, 0.0017103414284065366, 0.025454549118876457, 0.006564210169017315, 0.011669707484543324, -0.04414066672325134, 0.03206251934170723, -0.022858038544654846, 0.02739463746547699, 0.0035574373323470354, 0.005160198546946049, 0.020203180611133575, 0.044286537915468216, 0.008380308747291565, 0.011655120179057121, 0.021632719784975052, -0.02218702994287014, 0.016964836046099663, 0.0010666841408237815, -0.011020579375326633, 0.019926024600863457, -0.023718679323792458, 0.010991405695676804, -0.014966399408876896, 0.01250117365270853, 0.035884350538253784, 0.04527846351265907, 0.019167494028806686, 0.01016723271459341, -0.0097077377140522, -0.018365202471613884, -0.005988018587231636, 0.007176870014518499, -0.016147958114743233, -0.0205095112323761, 0.003513675881549716, -0.016746029257774353, -0.019459236413240433, 0.0018343321280553937, -0.0038801776245236397, -0.011611358262598515, -0.009233655408024788, 0.04160250723361969, -0.0031070595141500235, -0.01589997671544552, -0.006969003472477198, 0.0230476725846529, -0.005189372692257166, -0.005185726098716259, -0.0021315449848771095, -0.00794998835772276, -0.04145663604140282, -0.018146393820643425, 0.02354363352060318, -0.0028444910421967506, -0.015506123192608356, 0.02625684067606926, -0.010670488700270653, 0.028357388451695442, -0.00975879281759262, 0.02771555446088314, -0.006910654716193676, -0.01114457007497549, -0.035505082458257675, -0.03142068535089493, 0.038976822048425674, 0.024768954142928123, -0.031974997371435165, -0.02805105783045292, 0.017723368480801582, -0.014900756999850273, -0.004387080669403076, 0.022858038544654846, 0.011538422666490078, 0.019823914393782616, -0.03136233985424042, -0.02033446542918682, -0.012603283859789371, 0.006841365713626146, 0.01458713412284851, -0.009284710511565208, -0.003637666581198573, 0.009802553802728653, 0.0063928114250302315, -0.005379005800932646, -0.002069549635052681, -0.0027040899731218815, 0.005138318054378033, -0.0249439999461174, 0.03037041239440441, 0.016629332676529884, 0.020086484029889107, 0.02522115409374237, 0.007297213654965162, -0.006772076711058617, 0.014572546817362309, -0.0066152652725577354, -0.03640948608517647, -0.006607971619814634, 0.01654181070625782, -0.0014012765605002642, 0.019167494028806686, 0.02326647937297821, 0.0031362338922917843, 0.009780673310160637, 0.051346711814403534, 0.01109351497143507, -0.004350612871348858, 0.01649804785847664, -0.003561084158718586, -0.015506123192608356, 0.0149955740198493, 0.003128940239548683, 0.027350876480340958, -0.02164730615913868, 9.481637243879959e-05, 0.0128585584461689, -0.011268560774624348, -0.028561608865857124, 0.025512896478176117, -0.016250066459178925, -0.005543110892176628, 0.003619432682171464, -0.01366814412176609, 0.00553217064589262, 0.00213519181124866, -0.0295097716152668, -0.005969784688204527, 0.029086744412779808, -0.0006896979175508022, 0.001075801090337336, -0.028007296845316887, 0.026329776272177696, -0.027642618864774704, -0.006677260622382164, -0.008672051131725311, 0.004664236214011908, 0.01757749728858471, -0.025046108290553093, 0.021895287558436394, -0.0051237307488918304, 0.011968743056058884, 0.013325346633791924, -0.010473562404513359, -0.011078928597271442, 0.025016935542225838, -0.01811722107231617, 0.02609638310968876, 0.01331805344671011, 0.007461319211870432, 0.0034188595600426197, 0.013143007643520832, 0.018700705841183662, 0.010860120877623558, -0.010575671680271626, -0.039618656039237976, 0.003216463141143322, -0.017271166667342186, -0.03264600411057472, -0.011239387094974518, 0.07159365713596344, -0.047816626727581024, -0.002922896994277835, -0.013682731427252293, 0.06558375060558319, -0.009561866521835327, -0.016352176666259766, 0.02056785859167576, -0.01859859563410282, 0.0023065905552357435, 0.014565253630280495, 0.010488149709999561, -0.0001242185680894181, -0.014492318034172058, 0.0149955740198493, 0.0030596512369811535, 0.009445169009268284, -0.018802816048264503, 0.030020320788025856, -0.008365721441805363, -0.040552232414484024, 0.002835374092683196, -0.010597553104162216, -0.005426413845270872, -0.006589737720787525, 0.004707997664809227, -0.026388125494122505, -0.022755928337574005, -0.032791875302791595, 0.0001294608082389459, 0.020421987399458885, -0.010626726783812046, -0.019327951595187187, -0.02088877558708191, -0.024010421708226204, -0.027307115495204926, -0.019998960196971893, -0.044403236359357834, 0.0225662961602211, -0.017723368480801582, 0.03357958421111107, 0.004883043002337217, 0.007658245507627726, 0.003792654722929001, -0.02034905180335045, -0.012800210155546665, 0.015316491015255451, 0.008285491727292538, -0.003741599852219224, -0.004310498014092445, 0.01713988184928894, 0.006188591476529837, -0.00989737082272768, -0.04393644630908966, -0.0049122171476483345, 0.015462362207472324, 0.030253715813159943, -0.003176348516717553, -0.038480859249830246, 0.008599115535616875, -0.03139151260256767, -0.0168773140758276, -0.030895549803972244, 0.0007594426861032844, -0.023995835334062576, -0.010181819088757038, -0.001001953729428351, 0.004069810267537832, -0.001815186464227736, 0.012296954169869423, 0.010057829320430756, 0.0015152385458350182, -0.03611774370074272, -0.02154519595205784, -0.025250328704714775, -0.00821985024958849, 0.030399587005376816, -0.028780415654182434, -0.010079709812998772, -0.010320397093892097, -0.007103934418410063, -0.007818703539669514, -0.009423288516700268, 0.012508467771112919, -0.014652776531875134, 0.004751759115606546, 0.027350876480340958, -0.01741703785955906, 0.009744205512106419, 0.007665538694709539, 0.01801511086523533, -0.015068509615957737, 0.02132638916373253, -0.026971610262989998, -0.005656161345541477, -0.045541033148765564, -0.00458400696516037, -0.009569159708917141, -0.014288097620010376, 0.0343964621424675, 0.013544153422117233, 0.0017194583779200912, -0.005076322704553604, -0.003945819567888975, -0.004109925124794245, 0.025644181296229362, -0.02961188182234764, -0.029276378452777863, 0.012056265957653522, -0.011465487070381641, -0.003293045563623309, 0.03433811292052269, 0.03594269976019859, -0.03238343819975853, -0.02007189579308033, 0.024272991344332695, -0.005834853742271662, -0.02880959026515484, 0.006801251322031021, -0.009313885122537613, -0.0028809590730816126, 0.022332902997732162, -0.0039677005261182785, -0.010582965798676014, 0.009984892792999744, 0.012435531243681908, -0.016147958114743233, -0.027905186638236046, -0.0024415215011686087, -0.021603545174002647, 0.013551447540521622, -0.03212086856365204, -0.01092576328665018, -0.02071372978389263, -0.03395884856581688, -0.014878876507282257, 0.02576087787747383, -0.017942175269126892, -0.014149519614875317, 0.019007036462426186, 0.011669707484543324, 0.006947122514247894, -0.0058202664367854595, -0.00061858567642048, -0.0008615526021458209, 0.0194154754281044, 0.006538682617247105, -0.007928106933832169, -0.0035173227079212666, -0.028386563062667847, -0.010582965798676014, -0.005929669830948114, -0.005626986734569073, 0.00015042981249280274, 0.019896849989891052, 0.013493099249899387, 0.010918470099568367, -0.03725554049015045, 0.025016935542225838, 0.00803021714091301, -0.010648608207702637, -0.020217766985297203, -0.04431571438908577, -0.003734306199476123, 0.019109144806861877, -0.028284452855587006, -0.021764004603028297, 0.021603545174002647, -0.010575671680271626, 0.006487627979367971, -0.023791614919900894, 0.018263092264533043, -0.007694713305681944, 0.014856996014714241, 0.006505861878395081, -0.015549885109066963, 0.0020659028086811304, -0.00894920714199543, -0.0041062780655920506, 0.009729618206620216, -0.011210212484002113, 0.01817556843161583, 0.0038619437254965305, -0.017023185268044472, -0.0037744208239018917, 0.0010912999277934432, -0.021472260355949402, -0.004325085319578648, 0.01584162749350071, 0.012136495672166348, 0.005054441746324301, -0.002467049052938819, -0.01975097879767418, 0.04414066672325134, 0.023237304762005806, -0.017985936254262924, -0.016133369877934456, 0.009379527531564236, 0.00480281375348568, 0.027948949486017227, 0.0147548858076334, 0.009963012300431728, -0.003139880485832691, 0.024258403107523918, -0.014054703526198864, -0.00919718760997057, 0.035125818103551865, 0.0043177916668355465, -0.014601721428334713, 0.0036978384014219046, 0.01681896485388279, 0.0037324829027056694, -0.0010247461032122374, -0.0406981036067009, -0.006418338976800442, -0.011997917667031288, 0.012698099948465824, -0.012129201553761959, 0.0027551448438316584, 0.004660589154809713, -0.037343062460422516, 0.037722326815128326, 0.0037634805776178837, 0.03337536379694939, 0.0007147695869207382, 0.00494868541136384, 0.02072831802070141, -0.018642356619238853, 0.06418339163064957, -0.04376140236854553, -0.0032255800906568766, -0.026971610262989998, -0.007344622164964676, 0.030224541202187538, 0.0006532301194965839, 0.01935712620615959, -0.013952593319118023, -0.014499611221253872, -0.011305028572678566, 0.013121127150952816, 0.0002484371361788362, -0.03302527219057083, -0.018584009259939194, -0.029961973428726196, 0.0036212559789419174, 0.002191716805100441, 0.00036946474574506283, -0.006221412681043148, -0.00997759960591793, 0.019400889053940773, 0.01177181676030159, -0.014980986714363098, 0.012508467771112919, 0.010035947896540165, 0.008934619836509228, -0.01508309692144394, -0.021340977400541306, 0.006341756321489811, -2.588361530797556e-05, -0.01730034127831459, 0.009736912325024605, -0.011326909065246582, 0.022172443568706512, -0.01811722107231617, 0.005688982084393501, -0.007009117864072323, 0.007906226441264153, 0.030516283586621284, 0.0015298256184905767, 0.006013546139001846, -0.016775203868746758, 0.039735354483127594, -0.00035009122802875936, 0.03168325498700142, -0.00550664309412241, -0.018306853249669075, -0.003500912105664611, 0.013522272929549217, 0.030224541202187538, -0.0030158900190144777, 0.00021869305055588484, 0.011990624479949474, -0.0024579321034252644, -0.0035227928310632706, 0.03322949260473251, 0.04090232402086258, 0.02266840636730194, -0.013390989042818546, -0.026023447513580322, -0.000467699981527403, 0.009678563103079796, -0.0038692373782396317, 0.005379005800932646, -0.002492576604709029, 0.021924462169408798, 0.02061161957681179, 0.0034188595600426197, -0.011990624479949474, -0.019079972058534622, -0.008103152737021446, -0.011895807459950447, 0.0128585584461689, -0.015958324074745178, 0.004726231563836336, -0.023616569116711617, -0.014835115522146225, 0.003415212733671069, -0.005309716798365116, -0.011137276887893677, 0.0017668666550889611, -0.008095859549939632, 0.007702006958425045, 0.006163063924759626, -0.01632300205528736, -0.0017003128305077553, -0.001184292952530086, 0.03938526287674904, -0.010582965798676014, 0.0013876011362299323, -0.0013556918129324913, -0.008336546830832958, -0.010976818390190601, 0.008701225742697716, -0.017869239673018456, 0.016935663297772408, 0.005988018587231636, -0.0008319224580191076, 0.002477989299222827, -0.023718679323792458, 0.023777028545737267, 0.0009294739575125277, -0.01632300205528736, -0.016964836046099663, -0.01155300997197628, -0.024812715128064156, 0.005853087641298771, -0.01725658029317856, 0.004697056952863932, 0.004700704012066126, -0.018000522628426552, 0.013478511944413185, -0.0032547542359679937, 0.018627770245075226, 0.0017167233163490891, -0.018146393820643425, 0.03675957769155502, 0.005736390594393015, 0.004821047652512789, -0.006640792824327946, -0.002952071139588952, -0.010174525901675224, 0.00572544988244772, -0.02819693088531494, 0.029859863221645355, -0.012792916037142277, -0.0013383695622906089, 0.005648867692798376, 0.000704740930814296, 0.01627924107015133, -0.002999479416757822, -0.06523366272449493, -0.009780673310160637, -0.0003017713315784931, 0.00735191535204649, -0.01402552891522646, -0.0038218291010707617, -0.025469135493040085, -0.027423812076449394, 0.029538946226239204, 0.03270435333251953, -0.011677000671625137, 0.01128314808011055, -0.0014395677717402577, -0.003039594041183591, -0.03130399063229561, -0.0224058385938406, -0.00911695882678032, 0.032354261726140976, 0.017752541229128838, -0.0047955201007425785, -0.00794269423931837, -0.0013128420105203986, 0.018408963456749916, 0.00040775598608888686, 0.009452463127672672, 0.00744673190638423, 0.006998177617788315, -0.01887575164437294, 0.010006774216890335, 0.007971868850290775, -0.017592083662748337, 0.018744466826319695, -0.0037744208239018917, -0.026213079690933228, 0.00921906903386116, 0.012705394066870213, -0.01385777723044157, 0.011049753986299038, -0.017212817445397377, 0.004543892107903957, 0.02148684859275818, 0.00943787582218647, 0.007709300145506859, -0.006192238535732031, 0.004357906058430672, 0.001343839685432613, 0.012734567746520042, 0.0064037516713142395, -0.01837978884577751, 0.0023011204320937395, -0.04463662952184677, -0.008059391751885414, 0.030078670009970665, -0.005171138793230057, 0.005105496849864721, -0.023397762328386307, 0.019780153408646584, 0.012216724455356598, 0.015579058788716793, -0.007629070896655321, -0.02799271047115326, 0.009984892792999744, -0.005400886293500662, 0.01795676164329052, 0.012136495672166348, -0.007906226441264153, -0.006057307589799166, 0.0007580750971101224, 0.007304507307708263, -0.022799691185355186, 0.004299557767808437, 0.007490493357181549, 0.007435791660100222, 0.021822351962327957, 0.008380308747291565, -0.0027916128747165203, -0.010006774216890335, 0.001295519876293838, -0.00024501828011125326, 0.006826778873801231, -0.0002247330266982317, 0.014499611221253872, -0.007570722606033087, 0.0015371192712336779, -0.00033687162795104086, -0.017942175269126892, -0.004846575204282999, -0.025862988084554672, 0.020917950198054314, -0.0004487822880037129, 0.018744466826319695, 0.035067468881607056, -0.031070595607161522, 0.015243555419147015, -0.007315447553992271, 0.01616254448890686, -0.012865852564573288, -0.039239391684532166, -0.03302527219057083, -0.0381891168653965, 0.010736130177974701, 0.012807503342628479, -0.0026275075506418943, -0.028897112235426903, 0.03591352328658104, 0.017504559829831123, -0.020684555172920227, -0.0016073198057711124, -0.004346965812146664, 0.013288878835737705, 0.009459756314754486, -0.026665281504392624, 0.005918729584664106, 0.0032839286141097546, 0.0375472828745842, -0.02815316803753376, -0.027409223839640617, -0.0030942957382649183, -0.006075541488826275, 0.009685857221484184, 0.0046788230538368225, -0.013814016245305538, 0.009890076704323292, 0.005900495685636997, -0.017271166667342186, -0.0027223238721489906, -0.00710758101195097, 0.014463143423199654, 0.030603807419538498, 0.017942175269126892, 0.020626207813620567, -0.0051310244016349316, -0.027759315446019173, -0.022201618179678917, 0.012209431268274784, 0.024418862536549568, 0.005637927446514368, -0.021063821390271187, 0.019765567034482956, 0.009284710511565208, -0.01109351497143507, -0.015301903709769249, -0.025746291503310204, -0.007548841647803783, -0.0003138513129670173, 0.007340975105762482, 0.018190156668424606, -0.017781715840101242, 0.005039854906499386, -0.007490493357181549, 0.02436051331460476, 0.022143268957734108, -0.015199793502688408, -0.01773795485496521, 0.005178432445973158, -0.002906486392021179, 0.0009654859313741326, -1.7892030882649124e-05, -0.01921125501394272, 0.0009116958826780319, 0.008205262944102287, -0.014280804432928562, -0.0147548858076334, -0.015156032517552376, -0.002806199947372079, -0.003759833751246333, 0.027759315446019173, 0.008431363850831985, -0.02592133730649948, -0.010809066705405712, 0.003659547306597233, -0.05125918984413147, -0.010918470099568367, 0.0032711648382246494, -0.0022245380096137524, -0.009933838620781898, 0.007957281544804573, -0.02819693088531494, 0.0391518659889698, 0.01201250497251749, 0.032354261726140976, 0.005010680295526981, -0.055081017315387726, -0.016147958114743233, 0.0036157858557999134, 0.018131807446479797, -0.012260486371815205, -0.03807241842150688, 0.02310601994395256, 0.015958324074745178, 0.02615473046898842, 0.01038603950291872, -0.011399845592677593, -0.001812451402656734, -0.006600677967071533, -0.01648346148431301, -0.0112029192969203, -0.010327691212296486, 0.02891169860959053, -0.017154470086097717, -0.007971868850290775, 0.0033696279861032963, -0.009780673310160637, 0.005499349441379309, 0.015579058788716793, -0.0008241730974987149, 0.010582965798676014, 0.037138842046260834, -0.045920297503471375, -0.00021880700660403818, -0.006421985570341349, 0.015593646094202995, -0.0031909355893731117, 0.002700443146750331, -0.007964574731886387, 0.009715030901134014, -0.0249439999461174, 0.01746079884469509, 0.00031225584098137915, 0.01897786185145378, -0.00749778700992465, -0.01016723271459341, 0.01827767863869667, 0.019065383821725845, -0.015958324074745178, -0.0004360185412224382, -0.023354001343250275, -0.004682470113039017, 0.010305809788405895, -0.013310759328305721, -0.007224278058856726, 0.002472519176080823, 0.05277625098824501, -0.009984892792999744, -0.004850222263485193, 0.00023772470012772828, 0.010969525203108788, 0.002120604505762458, 0.01344933733344078, 0.016191719099879265, -0.026548583060503006, 0.0003915733832400292, 0.002408700529485941, 0.014120345935225487, 0.01594373770058155, -0.0046532959677278996, -0.010685076005756855, 0.014018235728144646, -0.029101332649588585, -0.006881480570882559, -0.00730815390124917, 0.015170618891716003, -0.02727794088423252, -0.0084386570379138, -0.01141443196684122, -0.019109144806861877, 0.016206305474042892, 0.01785465143620968, -0.00943787582218647, 0.026300601661205292, -0.0077895293943583965, -0.0016848139930516481, 0.02689867466688156, -0.0017158116679638624, 0.0238207895308733, -0.0318874754011631, 0.005605106242001057, 0.002687679370865226, -0.005907789338380098, -0.02190987579524517, -0.014477730728685856, 0.02478354051709175, -0.010612140409648418, 0.003665017429739237, -0.027438398450613022, -0.02284345217049122, -0.00223183142952621, 0.02250794693827629, -0.025250328704714775, -0.011662413366138935, 0.011976037174463272, 0.0005994400125928223, -0.004715290851891041, -0.019079972058534622, 0.004208388272672892, -0.015754105523228645, -0.0007986456039361656, 0.011997917667031288, -0.014470436610281467, 0.008475124835968018, -0.01404741033911705, -0.011027873493731022, 0.0175191480666399, -0.005940610077232122, -0.0003874707326758653, -0.006801251322031021, 0.00572544988244772, -0.006338109727948904, 0.008467831648886204, -0.004511071369051933, 0.004277676809579134, -0.01985308900475502, -0.017008598893880844, -0.021195106208324432, -0.012238604947924614, -0.003174524987116456, 0.0034462104085832834, 0.027788490056991577, 0.002842667745426297, 0.011852046474814415, 0.011655120179057121, 0.004018755629658699, 0.0030377707444131374, -0.007548841647803783, 0.005812972784042358, -0.014477730728685856, 0.006473040673881769, -0.000985543243587017, 0.03238343819975853, 0.014426675625145435, 0.016250066459178925, 0.002268299227580428, 0.006345403380692005, -0.004015108570456505, 0.008321959525346756, 0.012749155052006245, 0.02364574372768402, -0.00979526061564684, -0.013967180624604225, -0.016410525888204575, -0.00830007903277874, 0.0039567602798342705, -0.020597033202648163, -0.0005173874087631702, 0.011976037174463272, 0.03226673975586891, 0.0007886169478297234, 0.018131807446479797, -0.00514196464791894, 0.011895807459950447, -0.00431414507329464, 0.01556447148323059, -0.004350612871348858, 0.00013504494563676417, -0.0010666841408237815, 0.020655382424592972, -0.007636364549398422, 0.027438398450613022, -0.010918470099568367, -0.009963012300431728, -0.020699143409729004, 0.012792916037142277, -0.005787445232272148, 0.01784006506204605, 0.0061594173312187195, 0.015374839305877686, -0.01610419526696205, -0.0039895810186862946, 0.002901016268879175, -0.011275854893028736, 0.030020320788025856, 0.024389687925577164, -0.007180516608059406, -0.00821985024958849, 0.018350614234805107, -0.0015571765834465623, -0.02306225895881653, -0.006104715634137392, -0.022099507972598076, -0.004631415009498596, -0.009868196211755276, -0.009561866521835327, -0.009044023230671883, -0.010218286886811256, 0.011903101578354836, -0.01643970049917698, 0.012559521943330765, 0.01111539639532566, -0.011582184582948685, -0.00794269423931837, -0.02787601388990879, 0.0008273639832623303, -0.004449076019227505, -0.024812715128064156, 0.004040636122226715, -0.0030797086656093597, 0.010152645409107208, 0.005182079505175352, 0.006432926282286644, 0.012865852564573288, 0.015418600291013718, -0.006268820725381374, -0.014937224797904491, 0.012253192253410816, -0.004831987898796797, 0.02402500994503498, 0.019269604235887527, -0.00881062913686037, -0.006356343626976013, -0.005554051138460636, -0.010590258985757828, -0.0022354782558977604, 0.008971087634563446, -0.009372233413159847, 0.013522272929549217, -0.01713988184928894, 0.023033084347844124, -0.022114094346761703, -0.015199793502688408, 0.003495441982522607, 0.006597031373530626, -0.0041901543736457825, 0.006458453368395567, -0.004977859556674957, 0.014120345935225487, 0.011399845592677593, 0.015331077389419079, 0.00482834130525589, -0.005634280387312174, 0.004682470113039017, -0.00830007903277874, 0.00848971214145422, -0.0023357649333775043, -0.0034115659072995186, 0.03357958421111107, 0.029115919023752213, -0.016293829306960106, -0.0017477209912613034, -0.0001036484245560132, 0.01996978558599949, 0.012019798159599304, 0.018292266875505447, -0.0006108362576924264, -0.020436573773622513, 0.005554051138460636, 0.0036139623261988163, 0.0006368195754475892, -0.018306853249669075, 0.005962491035461426, -0.004204741213470697, -0.008992968127131462, 0.015418600291013718, 0.00997759960591793, 0.002461578929796815, -0.009984892792999744, -0.008453244343400002, -0.015389426611363888, -0.013894245028495789, 0.010006774216890335, 0.0012699923245236278, 0.00022724019072484225, -0.0022646526340395212, 0.018948687240481377, -0.006367283873260021, 0.0038108888547867537, -0.0067319623194634914, 0.01975097879767418, 0.010458975099027157, 0.016133369877934456, 0.021939050406217575, 0.002199010457843542, 0.0018233917653560638, 0.014696537517011166, 0.0261984933167696, -0.019225843250751495, -0.010692369192838669, 0.004197448026388884, -0.0024506384506821632, 0.012464705854654312, -0.008343840949237347, -0.007071113213896751, -0.012486586347222328, -0.008963793516159058, -0.015447774901986122, -0.027788490056991577, 0.018306853249669075, 0.007774942554533482, 0.003637666581198573, 0.017344102263450623, 0.004277676809579134, 0.008307373151183128, 0.004810107406228781, -0.006597031373530626, -0.005674395244568586, 0.02115134336054325, 0.03725554049015045, 0.02403959631919861, -0.011531129479408264, -0.004109925124794245, 0.0019674396608024836, -0.023441525176167488, -0.03144986182451248, -0.0013921596109867096, -0.011946862563490868, -0.02484188973903656, 0.010298516601324081, -0.020042721182107925, 0.017504559829831123, 0.016643919050693512, 0.01191039476543665, 0.011596771888434887, 0.00356655428186059, 0.0076728323474526405, -0.014032823033630848, -0.000961839163210243, -0.004671529866755009, -0.011399845592677593, -0.005444647744297981, 0.0062979948706924915, 0.017985936254262924, -0.009766086004674435, 0.013062778860330582, -0.031916648149490356, -0.0325293093919754, 0.012997136451303959, 0.0280948206782341, -0.008052097633481026, 0.0025272208731621504, 0.010356864891946316, -0.007085700519382954, 0.0016465227818116546, 0.010597553104162216, 0.014499611221253872, -0.013121127150952816, -0.008125033229589462, -0.001131414552219212, 0.007855171337723732, 0.027132069692015648, -0.04557020589709282, -0.0024524619802832603, 0.008883564732968807, -1.1125538549094927e-05, -0.0032073461916297674, 0.007268039509654045, 0.020407401025295258, -0.017825476825237274, 0.03042876161634922, -0.0206699687987566, -0.004507424309849739, 0.0065204487182199955, -0.0032182864379137754, 0.00039522015140391886, 0.01074342429637909, 0.0034334466326981783, -0.02342693693935871, 0.006363637279719114, 0.0034188595600426197, -0.014171401038765907, 0.021793177351355553, -0.00916801393032074, -0.019225843250751495, 0.014733005315065384, -0.0035939051304012537, 0.01660015806555748, 0.016250066459178925, 0.003351394087076187, 0.026621518656611443, -0.021122170612215996, -0.002647564746439457, 0.011275854893028736, -0.007607190404087305, 0.002350352006033063, 0.010458975099027157, 0.006418338976800442, -0.00546288164332509, -0.02056785859167576, -0.014769473113119602, -2.5100127459154464e-05, 0.002023964887484908, -0.011757230386137962, -0.00924824271351099, 0.03842251002788544, 0.011129982769489288, 0.007045585662126541, 0.02056785859167576, -0.0032602243591099977, -0.01169158797711134, -0.005754624493420124, -0.001982026733458042, 0.011903101578354836, 0.0206699687987566, -0.0016629332676529884, 0.03305444493889809, 0.004346965812146664, -0.0007753973477520049, 0.012318834662437439, 0.00494868541136384, 0.00824902392923832, 0.005036207847297192, 0.011480074375867844, 0.00821985024958849, 0.0027569683734327555, -0.011195625178515911, -0.0054811155423521996, -0.006152123678475618, 0.010480855591595173, -0.004507424309849739, 0.012187550775706768, 0.004139099270105362, -0.017533734440803528, 0.0053425380028784275, -0.010422507300972939, -0.006680907215923071, -0.008526179939508438, 0.0019145613769069314, 0.002127898158505559, 0.021720241755247116, 0.0010156291536986828, 0.010407919995486736, -0.004343319218605757, 0.03185829892754555, -0.0005146523471921682, 0.009510811418294907, -0.002811670070514083, -0.006349049974232912, 0.015301903709769249, 0.005616046488285065, 0.0019346186891198158, 0.0022938267793506384, 0.0016337590059265494, -0.010035947896540165, -0.0035173227079212666, 0.010706956498324871, 0.013274291530251503, 0.019678043201565742, -0.0014878876972943544, -0.021384738385677338, -0.009153426624834538, -0.01084553450345993, -0.012187550775706768, 0.007362856063991785, 0.004040636122226715, 0.022639231756329536, -0.007592603098601103, 0.0007202397682704031, 0.037663981318473816, -0.01833602786064148, 0.0012353479396551847, -0.005448294337838888, 0.021297216415405273, -0.002286533359438181, 0.021472260355949402, -0.003624902805313468, 0.026446474716067314, -0.0002618846483528614, 0.013201355934143066, 0.001075801090337336, -0.023733267560601234, 0.007505080197006464, -0.006556916516274214, -0.008511592634022236, -0.013945300132036209, 0.00960562750697136, -0.005145611707121134, -0.013770254328846931, -0.004525658208876848, -0.031216466799378395, 0.008868977427482605, -0.018350614234805107, 0.011326909065246582, 7.51579282223247e-05, -0.012617871165275574, 0.008730399422347546, 0.04682470113039017, 0.011749936267733574, -0.006345403380692005, 0.009598334319889545, -0.003542850259691477, -0.006567857228219509, 0.008409482426941395, -0.006801251322031021, 0.011830165982246399, 0.0002899192913901061, -0.024812715128064156, 0.01899244822561741, 0.005842146929353476, -0.007344622164964676, -0.004193800967186689, -0.022084921598434448, 0.03877260163426399, -0.011217505671083927, 0.001324694138020277, 0.008504299446940422, 0.0038947646971791983, -0.006648086477071047, 0.01807345822453499, -0.014003648422658443, 0.0060536605305969715, 0.01046626828610897, -0.02962646819651127, -0.020699143409729004, -0.01638135127723217, -0.012916906736791134, 0.006250586826354265, -0.013814016245305538, 0.008044804446399212, 0.006564210169017315, -0.015447774901986122, 0.034367289394140244, 0.0002657593577168882, -0.01789841428399086, 4.5549181777460035e-06, 0.007804116699844599, -0.0066262055188417435, 0.022814277559518814, 0.013354521244764328, -0.003203699365258217, 0.009000261314213276, -0.017825476825237274, -0.002439698204398155, -0.009372233413159847, -0.0018744467524811625, 0.017708780243992805, -0.02170565538108349, -0.006272467784583569, 0.027423812076449394, -0.0009240037761628628, -0.003158114617690444, 0.010298516601324081, 0.008715812116861343, 0.0025928630493581295, 0.03147903457283974, 0.017271166667342186, -0.030837200582027435, 0.014222455210983753, 0.03042876161634922, 0.014521491713821888, 0.004398020915687084, 0.005656161345541477, -0.0020421987865120173, -0.023339414969086647, 0.004686116706579924, 0.0015708520077168941, -0.006257880479097366, 0.014740298502147198, -0.009044023230671883, 0.025833813473582268, -0.007136755157262087, 0.007326388265937567, -0.012253192253410816, 0.014550666324794292, -0.008212556131184101, 0.017869239673018456, -0.011297735385596752, 0.022478774189949036, 0.00652409577742219, -0.0037379530258476734, 0.00448919041082263, -0.013886951841413975, -0.02517739310860634, 0.0018890338251367211, 0.0042120348662137985, -0.03112894296646118, -0.004368846770375967, 0.012406357564032078, -0.010758011601865292, -0.0038801776245236397, -0.005765564739704132, -0.02268299274146557, -0.014477730728685856, 0.017154470086097717, 0.013602502644062042, 0.025425374507904053, 0.004047929774969816, 0.009700444526970387, 0.013967180624604225, -0.007738474756479263, -0.011881220154464245, 0.008562647737562656, 0.010976818390190601, 0.01773795485496521, 0.01402552891522646, 0.008409482426941395, -0.022478774189949036, -0.02190987579524517, 0.03541756048798561, 0.013617089949548244, -0.023529047146439552, 0.011852046474814415, 0.004266736563295126, -0.00112867949064821, 0.015914563089609146, -0.006316229235380888, -0.010152645409107208, 0.0189340990036726, -0.010108883492648602, -0.0004298645944800228, -0.002011201111599803, -0.008861684240400791, 0.005583225749433041, 0.0017121648415923119, -0.023281065747141838, -0.005783798638731241, -0.006505861878395081, 0.011706175282597542, 0.013376401737332344, -0.010189113207161427, -0.029684817418456078, 0.0032584010623395443, 0.004700704012066126, 0.015010160394012928, -0.003531909780576825, 0.019109144806861877, -0.0070674666203558445, 0.011698881164193153, 0.014069290831685066, 0.009634802117943764, 0.01426621712744236, 0.014886170625686646, 0.0006459365249611437, -0.01887575164437294, -0.008934619836509228, 0.024725191295146942, 0.0012991665862500668, 0.008533473126590252, 0.02679656445980072, 0.004846575204282999, 0.010291223414242268, -0.007935401052236557, -0.011567597277462482, 0.019882263615727425, 0.001613701693713665, -0.015535297803580761, 0.008285491727292538, -0.014331859536468983, 0.020407401025295258, 0.011020579375326633, -0.009984892792999744, 0.01741703785955906, 0.0008724929648451507, 0.006808544974774122, 0.015754105523228645, -0.006538682617247105, 0.00029789662221446633, 0.03054545819759369, 0.028561608865857124, 0.012785622850060463, 0.002777025569230318, -0.011647826060652733, -0.009255536831915379, -0.010488149709999561, 0.0030085963662713766, -0.0022719460539519787, -0.007330034859478474, 0.007585309445858002, -0.017767129465937614, 0.02034905180335045, -0.004179213661700487, -0.012902320362627506, -0.0008971087518148124, -0.004266736563295126, -4.980138692189939e-05, -0.008380308747291565, 0.006939828861504793, 0.008941913023591042, 0.007869758643209934, 0.020159419625997543, 0.0013383695622906089, 0.009736912325024605, 0.005794738885015249, -0.0037324829027056694, 0.008679344318807125, -0.018088046461343765, -0.012311541475355625, -0.0027223238721489906, -0.005583225749433041, -0.0009331207256764174, -0.0015280023217201233, 0.0010858298046514392, -0.0010320397559553385, 0.040756452828645706, 0.023281065747141838, 0.015651995316147804, -0.009671269915997982, 0.0009308414882980287, 0.010159938596189022, -0.00948893092572689, 0.003116176463663578, -0.013617089949548244, -0.01807345822453499, 0.0026056268252432346, 0.00460953451693058, -0.017446212470531464, 0.009430581703782082, 0.010546498000621796, 0.009481636807322502, -0.004799167159944773, 0.009474343620240688, -0.0013256057864055037, 0.0170377716422081, -0.010561085306107998, 0.017110707238316536, 0.01573951728641987, -0.00427038362249732, 0.008373014628887177, 0.001380307599902153, 0.0033058093395084143, -0.022332902997732162, 0.006717375013977289, 0.002332118107005954, -0.033988021314144135, 0.00247434270568192, -0.00618494488298893, 0.022420424968004227, 0.018919512629508972, 0.0002714574511628598, 0.009831728413701057, -0.015374839305877686, -0.004992446396499872, -0.023631157353520393, -0.019167494028806686, -0.010531910695135593, -0.002893722616136074, -0.0076509518548846245, -0.004153686575591564, 0.0002447903389111161, -0.020159419625997543, -0.01344933733344078, -0.0009636625181883574, 0.02376244030892849, 0.0009782497072592378, -0.002395936753600836, 0.0033131027594208717, 0.00577650498598814, -0.006086481735110283, -0.0022227144800126553, 0.0034917951561510563, -0.040114618837833405, -0.009744205512106419, 0.0019546758849173784, 0.0009490753873251379, 0.001351133338175714, 0.01375566702336073, -0.0051200841553509235, 0.025804640725255013, -0.01521438080817461, 0.02864913083612919, -0.025206567719578743, 0.002284709829837084, -0.023631157353520393, 0.013143007643520832, 0.017212817445397377, -0.004259442910552025, -0.009561866521835327, 0.005105496849864721, -0.002479812828823924, -0.002122428035363555, -0.02196822315454483, -0.0011086221784353256, 0.007213337812572718, -0.012085440568625927, -0.014878876507282257, 0.003238343633711338, -0.021764004603028297, -0.01271998044103384, -0.019109144806861877, 0.008453244343400002, 0.005393592640757561, 0.0025873929262161255, -0.009948424994945526, -0.004810107406228781, 0.0015498829307034612, 0.018146393820643425, -0.008482418023049831, 0.013843189924955368, 0.01697942428290844, 0.0004727143095806241, -0.0059260232374072075, -0.016454286873340607, 0.010159938596189022, -0.0018334203632548451, -0.01440479513257742, -0.0019309718627482653, -0.02625684067606926, 0.011210212484002113, -0.040172968059778214, 0.009087784215807915, -0.00494868541136384, -0.020801253616809845, -0.020655382424592972, -0.0206699687987566, 0.0015015631215646863, 0.004500130657106638, 0.0013584268745034933, 0.0299911480396986, 0.014747592620551586, -0.00489763030782342, -0.024710604920983315, -0.004777286201715469, 0.01594373770058155, -0.004004168324172497, 0.01380672212690115, -0.0034060957841575146, -0.0038619437254965305, -0.0013420162722468376, -0.004737171810120344, 0.002076843287795782, -0.04154415801167488, -0.004908570554107428, 0.01573951728641987, -0.010276636108756065, -0.02039281278848648, -1.1852046554849949e-05, -0.004780933260917664, -0.0025983331725001335, -0.01210002787411213, 0.005324304103851318, -0.006556916516274214, -0.03445481136441231, -0.009532691910862923, -0.0017094297800213099, -0.023674918338656425, 0.021443087607622147, 0.002180776558816433, -0.0157832782715559, 0.0030888256151229143, -0.02805105783045292, -0.008956500329077244, -0.023091433569788933, -0.0030304770916700363, 0.0019163846736773849, 0.005616046488285065, 0.010714249685406685, -0.020363638177514076, 0.014258923009037971, 0.0141276391223073, -0.004788226913660765, -0.0003915733832400292, -0.004598593804985285, 0.00848971214145422, -0.006243293173611164, -0.027584269642829895, -0.01014535129070282, -0.014156813733279705, 0.050529833883047104, -0.0074175577610731125, 0.01632300205528736, -0.0013812192482873797, -0.006640792824327946, 0.007869758643209934, -0.02034905180335045, 0.0039786407724022865, 0.009372233413159847, -0.000597616657614708, -0.006075541488826275, 0.0037087788805365562, 0.005539464298635721, 0.011749936267733574, 0.0175191480666399, 0.0048866900615394115, -0.0006960798054933548, 0.014528785832226276, 0.0019364419858902693, -0.024754365906119347, 0.030224541202187538, -0.009685857221484184, -0.005619693547487259, -0.018190156668424606, 0.0018963273614645004, -0.04008544236421585, -0.015447774901986122, 0.019678043201565742, 0.006896067410707474, -0.03147903457283974, 0.011757230386137962, 0.016075022518634796, -0.0024506384506821632, 0.004179213661700487, -0.009292004629969597, -0.008533473126590252, 0.004868456162512302, -0.0032237565610557795, -0.017212817445397377, 0.014623601920902729, 0.023149780929088593, 0.010816359892487526, -0.0021898935083299875, 0.022799691185355186, 0.0028153168968856335, 0.017504559829831123, -0.013507685624063015, -0.0006979032186791301, -0.0012608753750100732, 0.02148684859275818, -0.010240168310701847, -0.006644439417868853, 0.029363900423049927, 0.011764523573219776, 0.014412088319659233, -0.027482161298394203, 0.0066371457651257515, -0.0046532959677278996, -0.018000522628426552, -0.016891900449991226, -0.0027442045975476503, 0.01141443196684122, 0.014390207827091217, 0.02517739310860634, 0.004102631472051144, 0.0019747333135455847, -0.018686119467020035, 0.023558221757411957, -0.003448033705353737, 0.007286273408681154, 0.03270435333251953, 0.017665019258856773, 0.02603803388774395, 0.021822351962327957, 0.022916387766599655, 0.006462100427597761, -0.033608756959438324, 0.005258661694824696, 0.023091433569788933, 0.010043242014944553, 0.02001354843378067, 0.008278198540210724, -0.022376663982868195, 0.0032474605832248926, 0.006166710983961821, 0.012391770258545876, 0.034746553748846054, 0.0016884607030078769, 0.004875749349594116, 0.0021187812089920044, -0.0054738218896090984, 0.020057309418916702, 0.020188594236969948, 0.010079709812998772, -0.001160588813945651, 0.003345923963934183, -0.022084921598434448, 0.006852305959910154, 0.007454025559127331, 0.005105496849864721, 0.014054703526198864, 0.0014158636331558228, -0.015097683295607567, 0.019079972058534622, -0.016206305474042892, -0.0020130244083702564, 0.017023185268044472, -0.009598334319889545, -0.008715812116861343, -0.004547539167106152, -0.00794998835772276, -0.0009025789331644773, 0.0014450380112975836, -0.014565253630280495, 0.014740298502147198, 0.027788490056991577, 0.008183382451534271, 0.0007211514166556299, -0.023076845332980156, -0.018831990659236908, -0.0013392812106758356, 0.007060172967612743, -0.011210212484002113, -0.0066152652725577354, 0.00851888582110405, -0.019342539831995964, -0.025892162695527077, -0.008052097633481026, -0.01380672212690115, 0.001958322711288929, -0.013091952539980412, 0.016746029257774353, -0.02120969258248806, -0.010276636108756065, 0.006677260622382164, 0.02017400600016117, -0.011370670981705189, 0.010721543803811073, 0.0005096379900351167, 0.019619695842266083, -0.018292266875505447, -0.0025345145259052515, 0.02843032404780388, 0.0041901543736457825, -0.0010475385934114456, 0.024710604920983315, 0.03629278764128685, 0.000676934199873358, 0.016891900449991226, -0.028109407052397728, 0.0026749155949801207, 0.008701225742697716, -0.016293829306960106, -0.0026749155949801207, -0.0014258923474699259, -0.01353686023503542, -0.0020677263382822275, 0.026490235701203346, -0.004861162509769201, 0.0005278718890622258, 0.016293829306960106, 0.01128314808011055, 0.00208778353407979, 0.011706175282597542, -0.003840063000097871, 0.013609795831143856, 0.005371712148189545, -0.00638551777228713, -0.015812452882528305, 0.007709300145506859, 0.007297213654965162, -0.008971087634563446, 0.005940610077232122, 0.008336546830832958, -0.0016647566808387637, 0.0006308935699053109, 0.03710966929793358, -0.019240429624915123, -0.006786664016544819, 0.00029447776614688337, 0.022332902997732162, -0.007614484056830406, -0.008664757944643497, -0.002556395251303911, 0.0007042850484140217, -0.010079709812998772, -0.0004740818403661251, -0.020465748384594917, 0.002286533359438181, 0.0008013806655071676, -0.018627770245075226, -0.00135933852288872, -0.0011067987652495503, 0.024418862536549568, -0.00938682071864605, -0.012224018573760986, 0.0010274812811985612, -0.0037853613030165434, 0.00965668261051178, -0.01106434129178524, 0.011057047173380852, -0.0014268039958551526, -0.025104457512497902, -0.007111227605491877, -0.018948687240481377, -0.006633499171584845, -0.00013367740029934794, -0.00113961985334754, -0.019561346620321274, 0.010590258985757828, -0.017927587032318115, 0.008146914653480053, 0.0014787707477807999, -0.02418546751141548, 0.007129461504518986, -0.011297735385596752, 0.002146132057532668, 0.01871529221534729, -0.005189372692257166, -0.01006512250751257, -0.013551447540521622, -0.005900495685636997, -0.013930712826550007, 0.014149519614875317, 0.017446212470531464, 0.011071634478867054, -0.010210993699729443, -0.005047148559242487, -0.007220631465315819, -0.005065382458269596, -0.0019856735598295927, -0.005805679131299257, -0.0035118525847792625, 0.013529567047953606, -6.0456834034994245e-05, 0.0029393075965344906, -0.006447513122111559, -0.005918729584664106, 0.016454286873340607, -0.011516542173922062, -0.004996093455702066, -0.017942175269126892, -0.024068770930171013, 0.015039335004985332, -0.01046626828610897, -0.012661632150411606, 0.0027733787428587675, -0.019488411024212837, 0.005838500335812569, 0.005273249000310898, 0.01358791533857584, 0.00509820319712162, -0.0031654080376029015, -0.01409846544265747, 0.0006422897567972541, -0.0036030220799148083, -0.005747330840677023, 0.023135194554924965, 0.011137276887893677, 0.027584269642829895, -0.016731442883610725, -0.001730398740619421, -0.02913050726056099, 0.012143788859248161, -0.004573066718876362, -0.008212556131184101, 0.010590258985757828, -0.0019473823485895991, 0.019838502630591393, 0.010991405695676804, -0.009839021600782871, -0.005827560089528561, 0.020261529833078384, -0.02288721315562725, -0.024608494713902473, 0.004704350605607033, -0.009036729112267494, -0.007362856063991785, 0.004131805617362261, -0.019765567034482956, 0.005291482899338007, 0.010043242014944553, -0.015126857906579971, 0.005185726098716259, 0.011057047173380852, 0.019896849989891052, -0.016950249671936035, 0.014550666324794292, 0.019386300817131996, -0.0024159939493983984, -0.01169158797711134, -0.0097077377140522, -0.023747853934764862, 0.017592083662748337, 0.00851888582110405, 0.01588538847863674, -0.02278510294854641, 0.0187736414372921, -0.004945038352161646, 0.005878615193068981, 0.0015635584713891149, 0.02364574372768402, -0.004427195060998201, 0.027263352647423744, -0.003818182274699211, 0.01274186186492443, -0.010991405695676804, -0.0030304770916700363, 0.0028517846949398518, -0.01128314808011055, 0.007964574731886387, -0.005794738885015249, 0.011399845592677593, -0.01145089976489544, 0.004168273415416479, -0.008044804446399212, 0.024214642122387886, -0.0050033871084451675, -0.014878876507282257, -0.011815578676760197, -0.01366814412176609, 0.016527222469449043, 0.0036613706033676863, 0.032354261726140976, 0.0014012765605002642, 0.001081271329894662, 0.004522011615335941, 0.011078928597271442, -0.014448556117713451, -0.0009408701444044709, 0.021122170612215996, -0.005637927446514368, 0.008365721441805363, 0.0049122171476483345, -0.05379734933376312, -0.02072831802070141, -0.0261984933167696, 0.014849702827632427, 0.024375101551413536, 0.010152645409107208, -0.01141443196684122, -0.0009846315952017903, 0.01480594091117382, 0.015958324074745178, -0.006108362227678299, 0.007643658202141523, -0.013084659352898598, -0.00703829200938344, 0.0076509518548846245, 0.0012681689113378525, -0.015053922310471535, 0.015389426611363888, 0.003799948375672102, 0.005874968133866787, -0.01899244822561741, 0.010415214113891125, 0.00975879281759262, 0.02805105783045292, -0.014251629821956158, -0.0007512373849749565, 0.003384215058758855, -0.0050070337019860744, -0.007421204354614019, 0.005670748185366392, 0.02506069652736187, 0.009007555432617664, -0.005663454532623291, -0.010568378493189812, 0.0022701227571815252, -0.01407658401876688, 0.018642356619238853, 0.003174524987116456, -0.007928106933832169, -0.03194582462310791, 0.01915290765464306, -0.013157594949007034, 0.00706381956115365, 0.013019016943871975, 0.013427456840872765, -0.007293567061424255, -0.0019364419858902693, -0.007964574731886387, 0.016031259670853615, -0.01025475561618805, -0.02034905180335045, 0.0088398028165102, 0.005441001150757074, 0.0213118027895689, -0.011049753986299038, -0.0022117742337286472, -0.002498046727851033, 0.006214119028300047, 0.001584527431987226, -0.002180776558816433, 0.010634020902216434, 0.007096640765666962, -0.024068770930171013, -0.004908570554107428, -0.006279760971665382, -0.0048866900615394115, 0.004336025565862656, -0.02218702994287014, 0.034950774163007736, 0.018102632835507393, -0.010911175981163979, 0.0031599379144608974, 0.01899244822561741, 0.001817921525798738, -0.02148684859275818, 0.007709300145506859, 0.006006252486258745, -0.013959887437522411, -0.0003019992436747998, 0.020101070404052734, 0.02358739636838436, -0.0024816361255943775, 0.009095078334212303, 0.008402189239859581, 0.011239387094974518, 0.010641314089298248, 0.005608752835541964, -0.0013000783510506153, 0.020378226414322853, -0.0070784068666398525, 0.02641730010509491, 0.01339828222990036, 0.00026439179782755673, -0.0025035168509930372, -0.007505080197006464, 0.012391770258545876, -0.022216204553842545, 0.021676480770111084, 0.004051576368510723, 0.005105496849864721, -0.018029697239398956, 0.0008902710396796465, 0.016133369877934456, -0.0011934099020436406, -0.016673093661665916, -0.0014486847212538123, -0.00577650498598814, 0.007804116699844599, -0.012946081347763538, 0.012814797461032867, 0.03004949539899826, -0.01985308900475502, 0.001703959540463984, 0.006677260622382164, 0.025454549118876457, 0.020086484029889107, 0.0002472975174896419, -0.0028134933672845364, -0.02087418921291828, -0.006801251322031021, -0.010240168310701847, -0.0022245380096137524, -0.014375620521605015, -0.021457673981785774, -0.0088398028165102, 0.013310759328305721, 0.0038619437254965305, 0.00848971214145422, 0.03497994691133499, -0.024477209895849228, -0.006706434767693281, -0.00870851892977953, -0.013223237358033657, -0.019327951595187187, 0.010488149709999561, 0.0028918993193656206, -0.017183644697070122, 0.007381089963018894, 0.01344933733344078, 0.020057309418916702, 0.027263352647423744, 0.005389946047216654, -0.030282890424132347, -0.006217765621840954, 0.006607971619814634, -0.0013101069489493966, -0.010152645409107208, -0.0022190676536411047, 0.006071894429624081, 0.0149955740198493, 0.014856996014714241, -0.0022281846031546593, 0.015549885109066963, 0.002536337822675705, -0.02190987579524517, 0.036642879247665405, 0.010903882794082165, -0.019182080402970314, -0.02017400600016117, 0.005561344791203737, 0.028838763013482094, -0.006877833511680365, -0.00271867704577744, -0.008533473126590252, 0.007100287359207869, -0.005448294337838888, -0.030457936227321625, -0.009007555432617664, 0.04151498153805733, -0.002895546145737171, 0.0005178432329557836, 0.013442044146358967, -0.009503518231213093, -0.005853087641298771, 0.005988018587231636, 0.008664757944643497, -0.003964053466916084, -0.0019346186891198158, -0.0018252151785418391, -0.005619693547487259, 0.012632458470761776, 0.013741080649197102, -0.020757490769028664, -0.00322740338742733, 0.0002264424692839384, 0.005554051138460636, -0.02723417989909649, 0.014091171324253082, -0.009284710511565208, 0.01277832966297865, -0.01155300997197628, 0.011385258287191391, 0.010225581005215645, -0.008774161338806152, -0.02859078347682953, -0.0023120606783777475, -0.011749936267733574, -0.001022922806441784, -0.01616254448890686, -0.010706956498324871, 0.012902320362627506, -0.019138319417834282, 0.00584579398855567, 0.024068770930171013, 0.03264600411057472, -0.003004949539899826, -0.012581403367221355, -0.021559784188866615, -0.0022300081327557564, 0.01604584790766239, -0.0238207895308733, 0.016395937651395798, 0.001414951984770596, 0.01871529221534729, 0.00039339676732197404, -0.015579058788716793, 0.01697942428290844, 0.0019455589354038239, 0.010568378493189812, 0.004718937911093235, -0.012267779558897018, 0.013026311062276363, -0.004945038352161646, -0.019298778846859932, 0.004711644258350134, -0.014244336634874344, -0.010706956498324871, 0.003672311082482338, -0.00848971214145422, -0.0008829774451442063, 0.026344364508986473, -0.0007184163550846279, -2.645342465257272e-05, -0.008832509629428387, 0.009882783517241478, 0.01556447148323059, 0.0457744263112545, -0.008453244343400002, 0.023281065747141838, 0.0026238607242703438, -0.016454286873340607, -0.024637669324874878, -0.003840063000097871, 0.01204167865216732, -0.013821309432387352, -0.010619433596730232, -0.013208650052547455, 0.007512373849749565, 0.011246680282056332, 0.023733267560601234, -0.014557959511876106, 0.004416254814714193, 0.0020969004835933447, -0.020276116207242012, -0.015520710498094559, 0.002419640775769949, 0.0011432666797190905, 0.008103152737021446, -0.011968743056058884, -0.02201198600232601, 0.00960562750697136, 0.01082365307956934, 0.007268039509654045, -0.0009864548919722438, 0.010991405695676804, 0.007738474756479263, 0.018146393820643425, -0.00960562750697136, -0.020917950198054314, 0.028765827417373657, 0.009715030901134014, -0.01147278118878603, -0.00848971214145422, 0.008679344318807125, 0.004992446396499872, 0.018540246412158012, -0.013201355934143066, -0.014922638423740864, 0.005196666345000267, 0.0002529956109356135, -0.02653399668633938, -0.0003671855083666742, 0.021020060405135155, -0.01242094486951828, -0.005816619843244553, 0.022493360564112663, 0.0020421987865120173, -0.003971347119659185, -0.02456473372876644, 0.006604325026273727, -0.0061594173312187195, 0.013055484741926193, 0.0011915864888578653, -0.002034905133768916, -0.012384477071464062, -0.0024706958793103695, 0.011939569376409054, -0.00018963274487759918, -0.0015635584713891149, 0.013281585648655891, -0.013733786530792713, -0.0032966923899948597, -0.002952071139588952, 0.0001129933079937473, 0.009904664009809494, 0.0007722064037807286, 0.013529567047953606, -0.020261529833078384, 2.218697318312479e-06, -0.008475124835968018, -0.017344102263450623, 0.00642927922308445, -0.00921906903386116, 0.015126857906579971, -0.02663610689342022, 0.017606670036911964, -0.006009899079799652, 0.009984892792999744, 0.019167494028806686, -0.0004581271787174046, 0.00492315785959363, -0.014550666324794292, 0.005178432445973158, 0.0024816361255943775, 0.025425374507904053, -0.014390207827091217, -0.007519667502492666, 0.00204037525691092, 0.015374839305877686, 0.014018235728144646, -0.0010739777935668826, -0.00609012832865119, 0.0015371192712336779, 0.003752540098503232, 0.008672051131725311, -0.0012626987881958485, -0.006618911866098642, 0.006958062760531902, -0.0035355566069483757, -0.00889815203845501, -0.006990883965045214, -0.01632300205528736, -0.003993228077888489, -0.006400105077773333, 0.006086481735110283, -0.006017192732542753, -0.008336546830832958, 0.0023868198040872812, -0.007253452204167843, 0.015476949512958527, 0.007049232721328735, 0.007326388265937567, 0.007319094613194466, 0.020917950198054314, 0.0011058871168643236, 0.012136495672166348, -0.010262048803269863, -0.010590258985757828, 0.01773795485496521, -0.0048538688570261, -0.025833813473582268, 0.013281585648655891, 0.00821985024958849, -0.010969525203108788, -0.00385829689912498, 0.00771659379824996, -0.0031015893910080194, -0.01660015806555748, -0.0058312066830694675, 0.019809328019618988, 0.007833290845155716, 0.009663975797593594, 0.003097942564636469, 0.017985936254262924, -0.0030250069685280323, 0.008796041831374168, -0.017708780243992805, -0.012953374534845352, 0.0116040650755167, 0.02673821710050106, 0.025673355907201767, 0.011677000671625137, -0.0038254759274423122, -0.0005196666461415589, 0.025046108290553093, 0.0017139882547780871, -0.03004949539899826, -0.011210212484002113, -0.004503777716308832, 0.006356343626976013, -0.008752279914915562, 0.0023394115269184113, -0.008037511259317398, 0.00489763030782342, 0.01312842033803463, -0.008073979057371616, 0.004182860720902681, -0.011633239686489105, 0.008190675638616085, 0.024710604920983315, 0.017592083662748337, -0.006983590312302113, -0.014842408709228039, 0.024316752329468727, -0.018408963456749916, 0.00011134085798403248, -0.005116437096148729, -0.0020148479379713535, 0.008095859549939632, -0.004671529866755009, 0.010232874192297459, 0.00550664309412241, -0.0018434490775689483, -0.004788226913660765, -0.01521438080817461, -0.006447513122111559, -0.0022992969024926424, -0.005400886293500662, 0.03699297085404396, -0.01344933733344078, -0.012078147381544113, -0.003050534287467599, -0.014849702827632427, 0.004091691225767136, -0.01426621712744236, 0.002578275976702571, 0.0066152652725577354, 0.007578016258776188, -0.0032766349613666534, -0.007082053460180759, -0.007599896751344204, 0.02061161957681179, 0.008548060432076454, 0.014762179926037788, -0.02891169860959053, -0.025075282901525497, 0.011005993001163006, 0.00808127224445343, -0.02013024501502514, -0.008445950224995613], "179c2192-96a1-4557-8891-c408aa29e6ac": [-0.017659416422247887, 0.006493597291409969, -0.005321582313627005, 0.011910207569599152, -0.023012675344944, -0.011910207569599152, 0.0031062359921634197, 0.0810907781124115, -0.006232269573956728, 0.028587665408849716, 0.02131800539791584, 0.011332118883728981, 0.032151225954294205, 0.0005315642920322716, -0.012535810470581055, 0.025325030088424683, -0.015212439931929111, -0.01064316462725401, 0.005365137010812759, -0.044251490384340286, 0.0834348052740097, 0.010461026802659035, -0.05413442850112915, 0.004553437232971191, 0.007004374172538519, -0.0006830155616626143, -0.014373023062944412, 0.029537947848439217, -0.028888588771224022, -0.005068173632025719, -0.0033497458789497614, 0.0004187182348687202, -0.003074559848755598, 0.0066361394710838795, 0.043269529938697815, -0.015283710323274136, -0.003327968530356884, 0.031390998512506485, -0.01189436949789524, -0.00038827949902042747, -0.010294727049767971, 0.04127393662929535, 0.018356291577219963, -0.0013977072667330503, -0.026528719812631607, 0.016360698267817497, -0.02939540706574917, -0.014087938703596592, 0.0004600456450134516, 0.0007815083954483271, 0.004711817484349012, -0.006042213179171085, -0.027827439829707146, 0.009645367972552776, 0.007186511531472206, -0.037061017006635666, 0.016835838556289673, 0.0653160884976387, 0.019354088231921196, -0.008267457596957684, 0.01330395508557558, -0.0018490913789719343, -0.0072617423720657825, -0.01619439758360386, 0.002676629228517413, -0.0269563477486372, 0.010326403193175793, -0.002807293087244034, -0.02641785517334938, -0.015758851543068886, -0.013042627833783627, 0.016550753265619278, -0.04336455836892128, -0.021222976967692375, 0.005123606417328119, -0.052740681916475296, 0.06455586105585098, -0.011395471170544624, -0.007626017089933157, 0.009320687502622604, 0.0190690029412508, 0.016162721440196037, -0.013810772448778152, -0.0032903533428907394, 0.08977002650499344, 0.002918159356340766, -0.03070996329188347, -0.043079473078250885, -0.010160104371607304, -0.03131181001663208, -0.0013986971462145448, -0.015101573430001736, -9.595626033842564e-05, 0.016724972054362297, 0.003074559848755598, 0.015046140179038048, 0.0039119962602853775, 0.03230960667133331, -0.01000964269042015, -0.015283710323274136, 0.0038050897419452667, -0.002033208729699254, -0.021603088825941086, -0.029157835990190506, -0.0007622058037668467, -0.00603429414331913, 0.01149049960076809, -0.0069964551366865635, -0.03094753436744213, 0.012686272151768208, 0.01830877736210823, -0.06037461757659912, -0.002080722711980343, -0.010864896699786186, -0.05185374990105629, -0.022901808843016624, -0.008615895174443722, -0.015972666442394257, -0.036332469433546066, -0.04580361768603325, 0.0049889832735061646, 0.010864896699786186, 0.006826196331530809, 0.019655009731650352, -0.037441130727529526, 0.007614138536155224, 0.016455726698040962, 0.03867650032043457, 0.022394992411136627, -0.043491262942552567, -0.01884726993739605, 0.028524313122034073, 0.026623748242855072, 0.041749078780412674, 0.03148602694272995, -0.0020510265603661537, 0.051410283893346786, 0.03664923086762428, -0.01556879561394453, 0.0445682518184185, -0.05980444699525833, -0.03001308999955654, 0.00716275442391634, 0.02770073525607586, -0.031248457729816437, 2.313838922418654e-05, -0.042129192501306534, 0.02656039595603943, 0.002342050429433584, 0.058917514979839325, -0.062338534742593765, -0.06351055204868317, -0.02114378660917282, 0.018609698861837387, 0.05473627522587776, -0.023060189560055733, 0.012836732901632786, 0.015719257295131683, -0.009098955430090427, 0.020145989954471588, 0.053849343210458755, -0.030218984931707382, 0.008386243134737015, 0.03147019073367119, 0.03240463510155678, 0.008528785780072212, 0.054767951369285583, 0.02415301464498043, -0.016091451048851013, 0.026702938601374626, 0.019908418878912926, -0.01084113959223032, 0.017231790348887444, -0.017215952277183533, 0.007174632977694273, 0.0007503272499889135, 0.02567346580326557, 0.00730133755132556, 0.03226209059357643, -0.048401057720184326, -0.054577894508838654, 0.010255131870508194, -0.017817797139286995, -0.018245425075292587, 0.03848644345998764, 0.013660311698913574, -0.007388446480035782, 0.060849759727716446, 0.03036152757704258, -0.0035873164888471365, 0.018815593793988228, 0.008861384354531765, -0.021618926897644997, -0.026908833533525467, -0.009273173287510872, -0.012060669250786304, 0.020098475739359856, 0.0036269116681069136, 0.023883767426013947, 0.019132355228066444, -0.01884726993739605, -0.030820829793810844, -0.036680907011032104, 0.00777647877112031, 0.011633042246103287, -0.013422740623354912, -0.02413717657327652, -0.05543314665555954, 0.011941883713006973, -0.004838522057980299, 0.054767951369285583, -0.02939540706574917, 0.02527751587331295, 0.017659416422247887, 0.0041772834956645966, 0.020446913316845894, 0.002108439337462187, 0.021808983758091927, -0.003256697440519929, -0.009494906291365623, -0.005230513401329517, -0.0054007722064852715, -0.0006226330297067761, -0.04415646195411682, -0.05993115156888962, 0.019860904663801193, 0.008041765540838242, 0.011672637425363064, -0.034780342131853104, -0.0038427049294114113, 0.013834529556334019, -0.009352363646030426, -0.017833635210990906, 0.006121403072029352, -0.040323656052351, 0.01792866364121437, 0.03468531370162964, -0.009336525574326515, -0.016677457839250565, 0.012607081793248653, 0.002932017669081688, 0.016075612977147102, 0.01527579128742218, 0.020336046814918518, 0.03357664868235588, 0.002559823449701071, 0.03642749786376953, 0.011292523704469204, -0.0019065042724832892, 0.00342101720161736, -0.0037417374551296234, -0.027811601758003235, 0.019464954733848572, 0.022394992411136627, -0.03832806274294853, 0.021571412682533264, 0.016677457839250565, -0.017770282924175262, 0.02057361602783203, -0.03430519998073578, 0.0020846822299063206, 0.024232205003499985, -0.014666027389466763, 0.01883143186569214, 0.054039400070905685, -0.020858701318502426, 0.012100264430046082, 0.018704727292060852, 0.016503239050507545, 0.01718427613377571, 0.0023776860907673836, -0.002662770915776491, 0.03153354302048683, 0.008544623851776123, -0.0016451766714453697, 0.005713573656976223, 0.00622831005603075, 0.0034883287735283375, 0.0069014267064630985, -0.009423634968698025, -0.011474661529064178, 0.024643993005156517, 0.0205261018127203, 0.023424465209245682, 0.003424976719543338, 0.035160452127456665, -0.012599162757396698, 0.003520004916936159, -0.03490704670548439, -0.025356706231832504, 0.015085735358297825, 0.036680907011032104, 0.01922738365828991, 0.038359738886356354, 0.017881149426102638, -0.029537947848439217, 0.017817797139286995, -0.0018401825800538063, -0.06072305515408516, -0.031961169093847275, -0.007629976607859135, -0.0007696298416703939, 0.0033022318966686726, -0.019116517156362534, 0.0338934101164341, 0.006865791045129299, 0.07196806371212006, 0.025024106726050377, -0.05530644208192825, 0.028397610411047935, 0.005717533174902201, -0.04409310966730118, 0.02359868213534355, -0.020969567820429802, 0.007669571787118912, -0.02190401218831539, 0.009399877861142159, -0.023250246420502663, 0.01582220382988453, -0.04390305280685425, -0.018973974511027336, -0.0035536608193069696, -0.04862279072403908, 0.017073409631848335, 0.04653216898441315, -0.02906280755996704, 0.017786120995879173, -0.014127533882856369, -0.017421847209334373, -0.047989267855882645, -0.014254237525165081, -0.0331648588180542, -0.048179324716329575, 0.005202796775847673, -0.038201358169317245, -0.014032505452632904, -0.04580361768603325, -0.07304505258798599, 0.010769868269562721, -0.0039060572162270546, -0.01018386147916317, 0.00849710963666439, 0.006402528379112482, 0.0003556135343387723, -0.024390585720539093, 0.003100296715274453, 0.00688162911683321, -0.0020728036761283875, -0.016820000484585762, -0.01751687377691269, 0.0009438483393751085, -0.02657623402774334, 0.042540982365608215, 0.007709166966378689, 0.02434307150542736, -0.010611488483846188, -0.011522175744175911, 0.0019520387286320329, -0.023867929354310036, 0.03411514312028885, 0.025039944797754288, -0.06427077203989029, -0.0195758193731308, 0.014578917995095253, 0.0250557828694582, -0.0013036688324064016, -0.018973974511027336, -0.007907142862677574, -0.06474591791629791, -0.03500207141041756, -0.015244115144014359, 0.009851261973381042, -0.013177251443266869, -0.005476003047078848, -0.020605292171239853, -0.018704727292060852, 0.054419513791799545, -0.009502825327217579, 0.00325471768155694, 0.020842863246798515, -0.022537533193826675, -0.015402495861053467, -0.00271028489805758, 0.020652806386351585, 0.021745631471276283, 0.022949323058128357, 0.01149049960076809, -0.019084841012954712, 0.021048758178949356, 0.004886035807430744, -0.057428739964962006, 0.02774824947118759, -0.015386657789349556, -0.020510263741016388, 0.009977966547012329, -0.0016045916127040982, 0.038581471890211105, -0.025736818090081215, -0.011783502995967865, -0.015560876578092575, -0.032531339675188065, -0.005816521123051643, -0.007891304790973663, -0.023076027631759644, 0.036300793290138245, -0.0021816904190927744, -0.019005650654435158, -0.015101573430001736, 0.02130216732621193, 0.0056383428163826466, 0.04507506638765335, -0.006065970286726952, 0.02378873899579048, -0.025214163586497307, 0.03091585822403431, 0.009930452331900597, -0.00034422994940541685, -0.003314110217615962, -0.06747005879878998, -0.027209756895899773, 0.038549795746803284, 0.03205619752407074, -0.029712166637182236, -0.00726570188999176, 0.02036772295832634, 0.012615000829100609, 0.02567346580326557, 0.011854774318635464, -0.00395951047539711, -0.010413512587547302, 0.016123127192258835, 0.022141583263874054, -0.001290800399146974, -0.021951526403427124, 0.01846715807914734, -0.024643993005156517, 0.03870817646384239, 0.012662515044212341, 0.006081808358430862, -0.010619407519698143, -0.008710923604667187, -0.002132196445018053, 0.014357184991240501, 0.0019559981301426888, -0.03229376673698425, 0.007693328894674778, -0.052550625056028366, -0.024073824286460876, 0.0064500425942242146, -0.022664237767457962, 0.016313184052705765, 0.0201618280261755, -0.010817382484674454, -0.017992015928030014, 0.015410414896905422, -0.0097879096865654, -0.012836732901632786, -0.0061570387333631516, 0.03756783530116081, -0.07576919347047806, -0.0070914835669100285, 0.002359868260100484, 0.013066384941339493, -0.032563015818595886, -0.000993342255242169, -0.04111555591225624, 0.016503239050507545, 0.0024073824752122164, 0.0015620269114151597, 0.033671677112579346, 0.0062797837890684605, -0.014848164282739162, 0.03053574450314045, 0.040482036769390106, -0.0029102403204888105, -0.0008211035165004432, -0.026861319318413734, -0.0050444165244698524, -0.015101573430001736, 0.008607976138591766, -0.01587763801217079, -0.025024106726050377, -0.001221508951857686, 0.005776925943791866, -0.02337695099413395, -0.004038700833916664, 0.00029721076134592295, -0.060849759727716446, -0.001198741840198636, 0.026544557884335518, 0.04526512324810028, 0.014658108353614807, 0.01605977490544319, 0.030139794573187828, -0.011482580564916134, -0.00014489333261735737, -0.0019322411390021443, -0.008560461923480034, -0.003523964434862137, -0.03265804424881935, -0.00999380461871624, -0.01244078204035759, 0.01699421927332878, 0.007867547683417797, -0.024596478790044785, 0.008251619525253773, -0.0410522036254406, 0.012884247116744518, -0.005182999186217785, -0.005301784723997116, -0.01605977490544319, -0.024406423792243004, -0.02374122478067875, 0.022474180907011032, 0.005436407867819071, -0.0011245009955018759, -0.015521281398832798, -0.005966982338577509, 0.036142412573099136, 0.0014006769051775336, -0.011252928525209427, -0.036712583154439926, -0.01567174308001995, -0.006976657547056675, -0.001956988126039505, -0.014753135852515697, -0.029648814350366592, -0.0350654236972332, 0.021365519613027573, -0.00023274497652892023, -0.015386657789349556, 0.013066384941339493, -0.01601226069033146, 0.018166234716773033, -0.0027696776669472456, 0.012702110223472118, 0.004830603022128344, -0.024786535650491714, -0.003719960106536746, -0.010461026802659035, -0.021112110465765, -0.017865311354398727, -0.018071206286549568, -0.020066799595952034, 0.008227863349020481, 0.019512467086315155, -0.011728070676326752, 0.029379568994045258, -0.009629529900848866, 0.029110321775078773, -0.01460267510265112, 0.03128013387322426, 0.0010779767762869596, 0.0017015996854752302, 0.02225244976580143, -0.018926460295915604, -0.022125745192170143, -0.0053374203853309155, -0.01832461543381214, 0.025134973227977753, -0.028730208054184914, -0.0002860746462829411, 0.023123541846871376, 0.008370405063033104, -0.0038506239652633667, -0.03712436929345131, 0.005028578452765942, -0.006778682116419077, -0.024279719218611717, 0.016740810126066208, 0.028619341552257538, -0.011514256708323956, 0.029284540563821793, -0.01772276870906353, -0.002454896457493305, 0.01659826748073101, -0.009510744363069534, -0.00608576787635684, -0.022585047408938408, -0.018736403435468674, 0.01244078204035759, -0.015141168609261513, 0.004581153858453035, -0.03493872284889221, 0.0018619598122313619, -0.011989397928118706, -0.013248521834611893, -0.025198325514793396, 0.011427147313952446, -0.004640546161681414, 0.02735229954123497, 0.014000829309225082, -0.006109524983912706, -0.01065900269895792, -0.015267872251570225, 0.020272694528102875, 0.00012856036482844502, 0.025309192016720772, 0.007562665268778801, -0.01623399369418621, 0.008821789175271988, 0.05001653730869293, 0.03468531370162964, 0.0011096528032794595, -0.0331648588180542, 0.01085697766393423, 0.012187373824417591, 0.014262156561017036, -0.03408346697688103, 0.02827090583741665, 0.0097879096865654, -0.011672637425363064, 0.03826471045613289, -0.00547204352915287, 0.019480790942907333, 0.0049493880942463875, -0.0027063253801316023, 0.02168227918446064, 0.0190690029412508, -0.007859628647565842, 0.04542350396513939, -0.00989085715264082, 0.031992845237255096, -0.02548340894281864, 0.011094548739492893, 0.031216781586408615, -0.017390171065926552, 0.00013363348261918873, -0.0038941786624491215, 0.017469361424446106, -0.004905833397060633, 0.0007057827315293252, 0.014032505452632904, -0.019195707514882088, -0.00645796163007617, -0.0026013983879238367, 0.005745249800384045, 0.00810907781124115, -0.0153787387534976, 0.008330809883773327, -0.01886310800909996, -0.006438164040446281, -0.006180795840919018, 0.02318689413368702, -0.01640821248292923, -0.0014224541373550892, 0.009178145788609982, 0.02735229954123497, 0.02280678041279316, 0.026069417595863342, -0.0181187205016613, -0.012393267825245857, -0.0362374410033226, 0.03791627287864685, 0.017089247703552246, -0.01441261824220419, 0.01756438799202442, 0.04751412570476532, 0.003773413598537445, 0.0023281921166926622, 0.030123956501483917, -0.013264359906315804, 0.006549030542373657, 0.013596959412097931, 0.0005478972452692688, -0.004822683986276388, 0.011625123210251331, 0.009122712537646294, 0.005923427641391754, 0.025705141946673393, 0.013755339197814465, -0.020811187103390694, 0.05052335560321808, 0.006632179953157902, 0.027035538107156754, -0.006299581378698349, 0.006588625721633434, -0.01057189330458641, 0.01754854992032051, 0.005677937995642424, 0.008338728919625282, -0.026069417595863342, -0.031200943514704704, 0.004145607352256775, -0.030963372439146042, 0.0003971884143538773, -0.013604878447949886, 0.0029973494820296764, 0.00650943536311388, 0.025325030088424683, -0.005622504744678736, 0.0030844586435705423, -0.009827504865825176, 0.04060874134302139, -0.005717533174902201, -0.005527476780116558, 0.00277957646176219, -0.006655937060713768, 0.02529335394501686, -0.02095372974872589, -0.03135932236909866, -0.002838968997821212, -0.0052423919551074505, -0.016899190843105316, 0.00790318287909031, 0.013145575299859047, -0.028920264914631844, -0.036522526293992996, 0.009550339542329311, -0.014951111748814583, 0.025720980018377304, 0.02622779831290245, 0.03620576485991478, 0.023662034422159195, -0.02751067839562893, 0.010912410914897919, 0.006244148127734661, 0.010270969942212105, -0.02165060304105282, 0.05812561511993408, 0.014713541604578495, 0.07253823429346085, -0.01602809876203537, -0.018039530143141747, -0.05711197853088379, -0.01715259999036789, -0.004822683986276388, 0.004315866623073816, -0.015054059214890003, 0.01254372950643301, 0.03338659182190895, -0.004874157253652811, 0.015917232260107994, -1.9039676772081293e-05, -0.03718772158026695, -0.011720151640474796, -0.01405626256018877, 0.0022410829551517963, 0.05299408733844757, -0.026322826743125916, 0.020066799595952034, 0.017279304563999176, -0.009502825327217579, -0.012028993107378483, -0.0015729155857115984, 0.008647571317851543, 0.012599162757396698, 0.021539736539125443, 0.00897225085645914, 0.001841172343119979, 0.014761054888367653, -0.034590285271406174, 0.0328797772526741, -0.013921638950705528, -0.0036843244452029467, -0.02508745901286602, 0.033291563391685486, 0.032357119023799896, 0.0077131264843046665, 0.02356700599193573, -0.002933997195214033, 0.013660311698913574, -0.005614586174488068, -0.028777722269296646, -0.0023776860907673836, 0.0029597340617328882, 0.019908418878912926, 0.0288569126278162, 0.028049172833561897, 0.005844237748533487, 0.04342791065573692, 0.01271794829517603, 0.019702523946762085, 0.034241847693920135, -0.02415301464498043, -0.019544143229722977, 0.011054953560233116, 0.010999520309269428, -0.0343368761241436, -0.04285774379968643, -0.0029854709282517433, -0.03452693298459053, 0.017833635210990906, 0.0034150779247283936, 0.018023692071437836, -0.008948493748903275, 0.024770697578787804, 0.0005172110395506024, -0.01507781632244587, 0.0011373694287613034, 0.000677571224514395, -0.006422325968742371, 0.012622919864952564, 0.011823098175227642, 0.001223488710820675, -0.014373023062944412, 0.01312181819230318, 0.006667815614491701, 0.015727175399661064, -0.008924736641347408, 0.006861831992864609, 0.006485678255558014, 0.01226656325161457, 0.026655424386262894, 0.02622779831290245, -0.000806750264018774, -0.00297359237447381, 0.00885346531867981, -0.03172359988093376, -0.0006587635725736618, -0.018023692071437836, 0.025039944797754288, 0.0021123988553881645, 0.03544553741812706, -0.037631187587976456, 0.013549445196986198, 0.03132764622569084, -0.005032537970691919, 0.019274897873401642, 0.017801959067583084, 0.010405593551695347, 0.014111695811152458, -0.012900085188448429, 0.041970811784267426, -0.003213142743334174, 0.012195292860269547, 0.01699421927332878, -0.01661410555243492, 0.028033334761857986, -0.013335631228983402, 0.028777722269296646, 0.0030468434561043978, -0.01735849492251873, 0.032135386019945145, 0.03202452138066292, 0.015030302107334137, -0.011395471170544624, -0.004315866623073816, -0.018356291577219963, 0.027098890393972397, -0.014357184991240501, -0.03167608380317688, -0.03664923086762428, 0.005955103784799576, 0.01846715807914734, 0.012678353115916252, 0.01620231755077839, 0.014468051493167877, 0.0543561615049839, 0.01699421927332878, 0.024564802646636963, 0.018419643864035606, 0.03175527602434158, -0.012345753610134125, -0.005571031477302313, 0.012052750214934349, 0.012306158430874348, 0.04282606765627861, 4.7204790462274104e-05, -0.02605357952415943, -0.0027142444159835577, 0.01349401194602251, -0.027003861963748932, -0.012749623507261276, -0.011577608995139599, -0.005662099923938513, -0.008924736641347408, -0.021080434322357178, -0.008552542887628078, 0.003480409737676382, -0.03145435079932213, -0.003480409737676382, 0.01773860678076744, -0.0024944916367530823, 0.01432550884783268, -0.0009725547861307859, -0.03128013387322426, -0.01291592326015234, -0.017485197633504868, -0.03281642496585846, 0.01694670505821705, 0.04260433465242386, -0.030123956501483917, 0.020320208743214607, -0.03712436929345131, -0.004735574591904879, 0.0067390869371593, -0.01263083890080452, 0.003044863697141409, -0.0018332534236833453, 0.01903732679784298, 0.03070996329188347, -0.012749623507261276, -0.006149119697511196, -0.027003861963748932, -0.006604463793337345, 0.025974389165639877, -0.0031062359921634197, -0.024960754439234734, -0.010548136197030544, -0.006853912957012653, -0.031058400869369507, -0.0269563477486372, 0.00784379057586193, 0.021951526403427124, -0.030884182080626488, 0.0035774176940321922, 0.01750103570520878, 0.02128632925450802, 0.01792866364121437, 0.02977551892399788, 0.005685857031494379, -0.03181862831115723, -0.000880496168974787, 0.013438578695058823, 0.010342241264879704, 0.0013244563015177846, -0.02131800539791584, 0.012702110223472118, 0.00809719879180193, 0.0077408431097865105, -0.0011205414775758982, 0.011973559856414795, 0.012282401323318481, -0.028508475050330162, -0.004810805432498455, -0.014681865461170673, -0.00457323482260108, 0.011633042246103287, 0.011427147313952446, -0.0069964551366865635, 0.0026607911568135023, 0.006719289347529411, -0.014547241851687431, 0.032911453396081924, -0.018213748931884766, -0.008980169892311096, -0.0008166490588337183, -0.014792731031775475, -0.0015778649831190705, -0.0067707630805671215, -0.03490704670548439, 0.02714640460908413, -0.023867929354310036, 0.010476864874362946, -0.015347062610089779, 0.0023044352419674397, 0.028350096195936203, -0.032911453396081924, 0.029537947848439217, 0.017437685281038284, 0.04282606765627861, -0.004577194340527058, -0.02223661169409752, 0.0001276942202821374, 0.0030349649023264647, 1.471669656893937e-05, -0.021634764969348907, 0.013596959412097931, -0.006236229091882706, 0.013367307372391224, 0.021555574610829353, -0.010104671120643616, 0.017073409631848335, -0.015996422618627548, -0.0058561163023114204, -0.036902640014886856, 0.03259469196200371, -0.012955518439412117, -0.00848127156496048, -0.019892580807209015, -0.007907142862677574, 0.029728004708886147, -0.0004231726925354451, -0.00951866339892149, -0.008774274960160255, -0.03278474882245064, -0.01113414391875267, -0.021618926897644997, -0.013652392663061619, 0.03601570799946785, -0.010302646085619926, 0.011957721784710884, -0.03528715670108795, 0.004014943726360798, 0.0004996407078579068, -0.02169811725616455, 0.019132355228066444, 0.0076458146795630455, -0.0010274930391460657, 0.003607114078477025, -0.02622779831290245, 0.014658108353614807, 0.012432863004505634, 0.02282261848449707, -0.00626394571736455, 0.002876584418118, -0.027288947254419327, -0.011260847561061382, -0.03617408871650696, -0.042699363082647324, -0.006042213179171085, -0.03655420243740082, 0.03823303431272507, 0.011648880317807198, -0.006141200661659241, -0.006465880665928125, -0.0025657627265900373, -0.01008091401308775, 0.01775444485247135, -0.024786535650491714, 0.011625123210251331, 0.007966535165905952, -0.038771528750658035, -0.005780885461717844, 0.034812018275260925, 0.015434172004461288, -0.060976460576057434, -0.027605706825852394, 0.03376670554280281, -0.010975763201713562, -0.013367307372391224, -0.008140753954648972, -0.03693431615829468, -0.01159344706684351, 0.007479515392333269, -0.009114793501794338, -0.010991601273417473, 0.0048583196476101875, -0.01026305090636015, -0.032943129539489746, -0.00035338630550540984, 0.04453657567501068, -0.011712232604622841, 0.007158794905990362, -0.02378873899579048, -0.011640961281955242, -0.03728275001049042, -0.017105085775256157, -0.0042723119258880615, 0.037599511444568634, -0.02450145035982132, -0.023091865703463554, 0.028381772339344025, 0.04130561277270317, -0.015283710323274136, 0.008885141462087631, -0.0144284563139081, 0.0042327167466282845, -0.008924736641347408, 0.01770693063735962, 0.008758436888456345, -0.005297825206071138, -0.013113899156451225, -0.023266084492206573, -0.000502362905535847, 0.01525995321571827, -0.0048028863966465, 0.015149087645113468, 0.001362071605399251, 0.013422740623354912, -0.024089662358164787, 0.010437269695103168, -0.021824821829795837, -0.004256473854184151, -0.024612316861748695, -0.011498418636620045, -0.005274068098515272, 2.323892431377317e-06, -0.02130216732621193, -0.002935976954177022, 0.009938371367752552, -0.0008493150235153735, 0.006331257522106171, 0.0047514126636087894, 0.01659826748073101, 0.009859181009232998, -0.008893060497939587, 0.0007404284551739693, -0.008948493748903275, -0.011189577169716358, 0.009851261973381042, 0.009851261973381042, 0.012583324685692787, -0.012377429753541946, -0.010975763201713562, 0.0003382906725164503, 0.02209406904876232, -0.005000861827284098, -0.012710029259324074, -0.029300378635525703, -0.001996583305299282, 0.011926045641303062, -0.0055353958159685135, -0.008204106241464615, -0.012432863004505634, -0.019116517156362534, 0.036142412573099136, 0.019116517156362534, -0.004173323977738619, -0.017279304563999176, -0.019211545586586, -0.005887791980057955, 0.016083531081676483, 0.021080434322357178, 0.020304370671510696, -0.004042660351842642, -0.001564996549859643, -0.01940160244703293, 0.00409809360280633, 0.014032505452632904, 0.03370335325598717, -0.005618545226752758, -0.0039793080650269985, 0.0005365136894397438, 0.011482580564916134, 0.009700801223516464, -0.007946738041937351, -0.010666921734809875, 0.0076180980540812016, 0.011427147313952446, -0.0328797772526741, -0.04146399348974228, 0.0023816456086933613, 0.006038253661245108, -0.0001110519006033428, 0.001984704751521349, 0.03322821110486984, 0.010437269695103168, 0.017406009137630463, 0.015980584546923637, 0.00867132842540741, 0.05587661266326904, -7.102372182998806e-05, -0.018451320007443428, -0.018530508503317833, -0.016519077122211456, -0.0020431075245141983, 0.008505028672516346, 0.015505443327128887, -0.016297345981001854, 0.004600951448082924, -0.00777647877112031, 0.010595650412142277, -0.002791455015540123, -0.02374122478067875, -0.02979135699570179, -0.02564178965985775, 0.01587763801217079, -0.0220623929053545, 0.012868409045040607, -0.008861384354531765, -0.0075547462329268456, 0.017215952277183533, -0.00499690230935812, -0.012995113618671894, -0.01586179994046688, 0.008164511062204838, 0.021175462752580643, -0.021222976967692375, -0.016455726698040962, 0.006224350538104773, 0.0004838026943616569, 0.009376120753586292, -0.008663409389555454, 0.0077408431097865105, 0.022505857050418854, -0.004323785658925772, -0.009898776188492775, -0.003801130224019289, -0.004798926878720522, 0.005689816549420357, 0.006323338486254215, 0.034590285271406174, -0.0105560552328825, 0.04165405035018921, -0.011601366102695465, -0.007875466719269753, 0.0003627901605796069, -0.00217179162427783, 0.005871953908354044, 0.0012551648542284966, -0.0025756615214049816, 0.019354088231921196, -0.01925905980169773, -0.002035188488662243, -0.0006226330297067761, -0.0012809016043320298, -0.00193125125952065, 0.029949737712740898, 0.004482165910303593, -0.014262156561017036, -0.02603774145245552, -0.0054403673857450485, 0.009827504865825176, -0.021349681541323662, 0.00471577700227499, -0.03278474882245064, 0.016534915193915367, 0.005871953908354044, -0.001936200656928122, 0.01018386147916317, 0.0010938147315755486, 0.016099369153380394, -0.006893507670611143, -0.012654596008360386, -0.003818947821855545, 0.01300303265452385, -0.015038221143186092, -0.03246798738837242, -0.03607906028628349, 0.015315386466681957, -0.004537599161267281, -0.028397610411047935, -0.016709133982658386, 0.010025480762124062, -0.009130631573498249, -0.015133249573409557, -0.0074478392489254475, 0.023519491776823997, 0.003820927580818534, -0.010033399797976017, 0.009827504865825176, -0.006834115367382765, -0.008893060497939587, -0.0006295621860772371, -0.003316089976578951, 0.0020371682476252317, -0.01094408705830574, -0.0429527685046196, -0.021951526403427124, 0.0038090490270406008, 0.011039115488529205, 0.015560876578092575, 0.022664237767457962, -0.032372958958148956, -0.025372544303536415, 0.0025736817624419928, 0.012725867331027985, 0.027574030682444572, 0.0060263751074671745, 0.007633936125785112, 0.006861831992864609, -0.007570584304630756, 0.03585732728242874, -0.006236229091882706, 0.006960819475352764, 0.030868344008922577, 0.002805313328281045, 0.005539355333894491, -0.0005498770042322576, 0.005990739446133375, 0.002793434774503112, 0.008156592026352882, 0.016534915193915367, 0.0006048152572475374, -0.015972666442394257, 0.0644291564822197, -0.007534948643296957, -0.02223661169409752, -0.03137516230344772, 0.012686272151768208, -0.0013531626900658011, -0.030630772933363914, -0.07317175716161728, 0.0033378673251718283, 0.012535810470581055, 0.00017310485418420285, -0.010191780515015125, -0.002852827310562134, -0.013739501126110554, 0.003506146604195237, 0.023709548637270927, 0.03734610229730606, -0.002947855507954955, 0.025562599301338196, -0.004537599161267281, -0.008370405063033104, 0.0036288914270699024, -0.015038221143186092, -0.014388861134648323, -0.006893507670611143, 0.008410000242292881, -0.0046959794126451015, -0.009384039789438248, 0.00829121470451355, 0.00867132842540741, -0.008049684576690197, -0.0032052237074822187, -0.010270969942212105, -0.013177251443266869, 0.02925286442041397, -0.006160998251289129, -0.011973559856414795, -0.008410000242292881, 0.011070791631937027, 0.014444294385612011, 0.01328811701387167, 0.02717808075249195, 0.01789698749780655, -0.006774722598493099, 0.011245009489357471, -0.0035873164888471365, -0.003355685155838728, -0.01810288242995739, 0.0034289362374693155, -0.010516460053622723, 0.02228412590920925, 0.023155217990279198, -0.017976177856326103, 0.0001323961332673207, -0.0029577543027698994, -0.00989085715264082, 0.009977966547012329, -0.007990292273461819, -0.012662515044212341, -0.00036427497980184853, -0.032531339675188065, -0.023677872493863106, -0.011268766596913338, 0.01404042448848486, 0.026877157390117645, -0.0011195515980944037, -0.022933484986424446, -0.016138965263962746, 0.019528305158019066, 0.011522175744175911, -0.004608870483934879, 0.01867305114865303, 0.004897914361208677, -0.014594756066799164, 0.026908833533525467, 0.013129737228155136, -0.012100264430046082, -0.006877669598907232, -0.010215537622570992, -0.006196633912622929, -0.0027162241749465466, -0.0009859181009232998, -0.014666027389466763, 0.000603825377766043, -0.02038356103003025, -0.0003019126888830215, 0.01962333358824253, -0.021761469542980194, 0.008940574713051319, -0.0014442314859479666, -0.012622919864952564, 0.00829121470451355, -0.01567174308001995, -0.01187853142619133, -0.013454416766762733, -0.0028726249001920223, 0.012424943968653679, 0.010611488483846188, 0.02228412590920925, -0.011688475497066975, -0.0010334321996197104, 0.011205415241420269, 0.012622919864952564, 0.012401186861097813, -0.022220773622393608, -0.008758436888456345, 0.013145575299859047, 0.0025459653697907925, 0.018625536933541298, -0.010421431623399258, -0.04146399348974228, 0.010801544412970543, -0.024913240224123, -0.022220773622393608, 0.010445188730955124, 0.0017600024584680796, 0.0038545834831893444, 0.003898138180375099, -0.02809668704867363, -0.0007765589980408549, 0.0077131264843046665, 0.038423091173172, -0.006640098989009857, 0.008465433493256569, 0.007756681181490421, 0.03074163943529129, -0.009510744363069534, 0.008243700489401817, 0.0029537947848439217, -0.006446083076298237, 0.00040114790317602456, -0.0054007722064852715, -0.007455758284777403, -0.005614586174488068, 0.009486987255513668, 0.03620576485991478, -0.008346647955477238, 0.01943327859044075, -0.002035188488662243, -0.021618926897644997, -0.02584768459200859, 0.0014165148604661226, 0.021032920107245445, 0.015545038506388664, -0.00336954346857965, 0.01587763801217079, 0.017010057345032692, -0.03110591508448124, -0.026908833533525467, -0.014951111748814583, 0.0038050897419452667, -0.018625536933541298, 0.003981288056820631, -0.0022549412678927183, -0.014943192712962627, 0.003706101793795824, -0.0027300824876874685, 0.012377429753541946, -0.005131525453180075, -0.017295142635703087, 0.006679694168269634, 0.009368201717734337, -0.04504339024424553, -0.028160039335489273, -0.020827025175094604, 0.009360282681882381, -0.006521313916891813, -0.009067279286682606, -0.0030270458664745092, -0.019132355228066444, -0.0074201226234436035, -0.0002468507445883006, 0.0035536608193069696, 0.01581428572535515, -0.005515598226338625, -0.009977966547012329, -0.021254653111100197, 0.019512467086315155, -0.06550614535808563, 0.005428488831967115, -0.009661206044256687, 0.02358284406363964, -0.005547274369746447, 0.020636968314647675, -0.02450145035982132, 0.03557224199175835, 0.008576299995183945, -0.013945396058261395, -0.0008889101445674896, -0.026306988671422005, -0.024564802646636963, -0.01583012379705906, 0.025499247014522552, -0.01976587623357773, -0.022901808843016624, 0.0029122200794517994, 0.010223456658422947, -0.001159146660938859, 0.006006577517837286, -0.01694670505821705, -0.026528719812631607, 0.017865311354398727, -0.006810358259826899, -0.0051117283292114735, -0.031406838446855545, 0.02188817411661148, -0.031169267371296883, -0.010041318833827972, 0.005978860892355442, 0.009186064824461937, -0.010500621981918812, 0.013042627833783627, 0.002599418628960848, 0.015117411501705647, 0.03493872284889221, -0.030868344008922577, 0.025356706231832504, -0.011213334277272224, -0.004660343751311302, -0.01500654499977827, 0.011276685632765293, -0.009336525574326515, -0.001853050896897912, -0.024643993005156517, -0.00499690230935812, -0.022204935550689697, 0.011284604668617249, -0.006434204522520304, 0.014206724241375923, 0.027811601758003235, -0.0007834881544113159, -0.005903630051761866, -0.0034843692556023598, -0.015576714649796486, 0.011498418636620045, 0.005460164975374937, -0.03161273151636124, -0.007055847905576229, -0.023091865703463554, 0.018213748931884766, 0.005899670533835888, -0.0018144457135349512, 0.009922533296048641, 0.010088833048939705, 0.01451556570827961, 0.007685409858822823, 0.009589934721589088, -0.02882523648440838, -0.015909314155578613, 0.0001109900331357494, 0.010690678842365742, 0.004672222305089235, -0.011569689959287643, -0.014642270281910896, 0.018593860790133476, -0.0022272246424108744, 0.0015877637779340148, 0.0011957722017541528, 0.0016857616137713194, 0.003925854805856943, -0.003258677199482918, 0.01678832434117794, -0.014277994632720947, -0.01103119645267725, 0.012670434080064297, -0.015133249573409557, 0.00980374775826931, -0.013676149770617485, -0.00133237533736974, 0.04013359919190407, -0.012393267825245857, 0.010690678842365742, -0.010136347264051437, -0.0014204743783921003, -0.004288149997591972, -0.003717980347573757, -0.016329022124409676, -0.01404042448848486, 0.006014496553689241, -0.004577194340527058, -0.0005295845330692828, -0.027399813756346703, -0.020098475739359856, 0.011759745888411999, 0.011640961281955242, -0.03731442615389824, -0.007230066228657961, 0.014856083318591118, 0.0036704663652926683, -0.017437685281038284, -0.012567486613988876, 0.006834115367382765, -0.0035140656400471926, 0.014064181596040726, -0.005757128354161978, 0.009027684107422829, 0.0037536160089075565, -0.0007379537564702332, -0.029458757489919662, 0.023155217990279198, -0.0028666856233030558, -0.02152389846742153, 3.1475015020987485e-06, -0.006873710080981255, 0.015996422618627548, 0.022204935550689697, -0.001705559203401208, 0.004589072894304991, -0.00802592746913433, -0.024580640718340874, 0.005796723533421755, -0.004462368320673704, -0.014198805205523968, 0.0055353958159685135, 0.008552542887628078, 0.019702523946762085, -0.009186064824461937, -0.009977966547012329, 0.012361591681838036, -0.0014759075129404664, -0.015576714649796486, -0.000282362598227337, 0.0020549860782921314, -0.008734680712223053, 0.004036720842123032, 0.08539872616529465, 0.0062124719843268394, 0.015125330537557602, -0.005654180888086557, -0.009946290403604507, 0.0005582909798249602, -0.00010313287930330262, 0.005107768811285496, 0.002470734529197216, -0.007717086002230644, 0.012868409045040607, -0.017089247703552246, 0.0019352107774466276, -0.00914646964520216, -0.02605357952415943, 0.016471564769744873, 0.00868716649711132, 0.023804577067494392, -0.007717086002230644, -0.006778682116419077, 0.005539355333894491, -0.004450489766895771, -0.002890442730858922, 0.002961713820695877, 0.006802439223974943, 0.002765718149021268, -0.01661410555243492, 0.014135452918708324, 0.020272694528102875, 0.02526167780160904, -0.0069687385112047195, -0.023883767426013947, -0.005903630051761866, -0.018229587003588676, -0.0025321070570498705, 0.00763789564371109, -0.004688060376793146, -0.007899223826825619, 0.0030963371973484755, 0.010714435949921608, -0.008180349133908749, -0.017786120995879173, 0.016930866986513138, 0.00897225085645914, -0.0044306921772658825, -0.012424943968653679, -0.00023757063900120556, -0.004933550022542477, -0.00471577700227499, -0.009360282681882381, -0.02090621553361416, -0.013137656264007092, -0.0017223870381712914, 0.013169332407414913, 0.03281642496585846, -0.011601366102695465, 0.009391958825290203, -0.01827710121870041, 0.007210268639028072, 0.0022153460886329412, -0.0056937760673463345, -0.018245425075292587, -0.007273620925843716, -0.03109007701277733, -0.01349401194602251, -0.021048758178949356, -0.0019748059567064047, 0.0032903533428907394, 0.015418333932757378, -0.017437685281038284, -0.00702021224424243, 0.011902288533747196, 0.022363316267728806, -0.022125745192170143, -0.003169588278979063, 0.020320208743214607, 0.010508541017770767, 0.015790527686476707, 0.006948940921574831, -0.0006830155616626143, 0.007669571787118912, -0.013201008550822735, 0.0007245904416777194, -0.01677248626947403, 0.00010610251047182828, -0.009399877861142159, 0.025895198807120323, -0.0037298589013516903, 0.013232683762907982, -0.022917646914720535, 0.0011532075004652143, -0.007249863818287849, -0.00124922557733953, -0.009122712537646294, 0.02378873899579048, -0.0028330297209322453, 0.010540217161178589, 0.013327712193131447, 0.028239229694008827, 0.0024311395827680826, 0.016503239050507545, 0.007677490822970867, -0.0015550977550446987, 0.04691228270530701, -0.0011413289466872811, -0.0021242774091660976, 0.030298175290226936, 0.005171120632439852, -0.013660311698913574, -0.010936168022453785, 6.87346255290322e-05, 0.010144266299903393, -0.0058283996768295765, 0.025404220446944237, -0.005939265713095665, -0.014214643277227879, 0.017279304563999176, -0.010532298125326633, -0.03268972039222717, -0.018403805792331696, -0.0010631285840645432, -0.01677248626947403, 0.0024509369395673275, -0.0220623929053545, 0.023076027631759644, 0.0036249319091439247, -0.014230480417609215, 0.0018748282454907894, 0.024263881146907806, -0.018039530143141747, 0.00400504469871521, 0.020969567820429802, 0.02092205360531807, -0.01441261824220419, 0.007245904300361872, -0.000926525448448956, 0.025942713022232056, -0.008433757349848747, 0.013216846622526646, 0.002092601265758276, 0.02165060304105282, 0.005812561605125666, 0.008948493748903275, 0.017817797139286995, 0.01159344706684351, 0.006533192470669746, 0.005032537970691919, -0.023044351488351822, -0.00810907781124115, -0.007028131280094385, 0.021919850260019302, -0.022680075839161873, -0.010104671120643616, -0.01189436949789524, -0.0018787877634167671, 0.008679247461259365, -0.030108118429780006, 0.02413717657327652, -0.01084113959223032, 0.014182967133820057, 0.018150396645069122, -0.003355685155838728, -0.0021143786143511534, 0.01675664819777012, -0.006616341881453991, -0.00228661741130054, 0.00631541945040226, 0.024834049865603447, 0.013874124735593796, -0.01865721307694912, -0.01884726993739605, 0.0017293161945417523, -0.01104703452438116, -0.03183446452021599, -0.004212919156998396, -0.009336525574326515, 0.0017154579982161522, 0.01038183644413948, -0.014000829309225082, 0.027273109182715416, -0.014808569103479385, 0.009922533296048641, 0.02152389846742153, 0.002528147539123893, -0.0033061914145946503, -0.012401186861097813, 0.004775169771164656, -0.015101573430001736, -0.0078160734847188, 0.01301887072622776, -0.009051441214978695, 0.02638617902994156, -0.008457514457404613, 0.010144266299903393, -0.018245425075292587, -0.009772071614861488, 0.004937509540468454, 0.01008091401308775, 0.005179039668291807, 0.0014373023295775056, -0.0134781738743186, 0.025530923157930374, 0.011720151640474796, 0.018213748931884766, -0.009898776188492775, -0.00045955070527270436, -0.016629943624138832, -0.002316313562914729, -8.005635027075186e-05, 0.01206858828663826, -0.022965161129832268, -0.01696254312992096, 0.001726346556097269, -0.00598282041028142, -0.017120923846960068, 0.011728070676326752, 0.01772276870906353, -0.013787015341222286, 0.013343550264835358, -0.001606571371667087, 0.007629976607859135, 0.004688060376793146, -0.011015358380973339, -0.0011878531659021974, 0.024469774216413498, -0.006224350538104773, -0.002878564177080989, -0.0013571222079917789, 0.02150806039571762, 0.006402528379112482, 0.02317105606198311, -0.00016011270054150373, -0.016930866986513138, 0.031153429299592972, 0.008370405063033104, 0.00536909606307745, 0.018720565363764763, -0.0024370786268264055, 0.014222562313079834, -0.019528305158019066, -0.017105085775256157, 0.00041451124707236886, 0.0007334992988035083, 0.005511638708412647, 0.008932655677199364, -0.017881149426102638, -0.0013313854578882456, -0.010104671120643616, -0.0007562665268778801, -2.9866463592043146e-05, 0.0011165819596499205, -0.003341826843097806, -0.028144201263785362, 0.011886450462043285, 0.006667815614491701, -0.0011640960583463311, -0.011759745888411999, -0.003682344686239958, 0.008188268169760704, -0.025420058518648148, -0.012211130931973457, -0.002864705864340067, 0.01567174308001995, -0.003929814323782921, 0.011807260103523731, 0.011815179139375687, -0.005852156784385443, 0.016519077122211456, -0.010999520309269428, 0.009985885582864285, 0.024406423792243004, -0.004977104719728231, -0.0025796210393309593, 0.007701247930526733, -0.010888653807342052, -0.0025063701905310154, -0.006101605948060751, 0.006913305260241032, -0.006105565465986729, -0.0008314971928484738, 0.001223488710820675, -0.012076507322490215, -0.0003934763662982732, -0.014270075596868992, 0.008639652281999588, -0.01130044274032116, 0.007218187674880028, 0.007428041659295559, -0.0041654049418866634, -0.007891304790973663, -0.007368648890405893, -0.026306988671422005, 0.014436375349760056, -0.0028270904440432787, 0.018578022718429565, 0.01963917165994644, 3.161421773256734e-05, 0.00320324394851923, 0.018973974511027336, 0.006972698029130697, 0.0015471787191927433, -0.013438578695058823, -0.012694191187620163, -0.01490359753370285, -0.004501963499933481, -0.00261327694170177, 0.04301612079143524, 0.0058561163023114204, -0.0037773731164634228, 0.004862279165536165, -0.012124021537601948, -0.00763789564371109, 0.01196564082056284, 0.015909314155578613, 0.006624260917305946, 0.013137656264007092, 0.0019856945145875216, 0.015252034179866314, 0.01751687377691269, 0.01775444485247135, -0.007602260448038578, 0.015236196108162403, 0.004363380838185549, 0.015719257295131683, -0.008980169892311096, 0.013794934377074242, 0.007721045520156622, 0.012654596008360386, -0.01480065006762743, -0.033830057829618454, 0.01320892758667469, -0.02036772295832634, -0.004224797710776329, -0.009558258578181267, -0.009376120753586292, -0.003314110217615962, -0.012797137722373009, -0.010761949233710766, -0.02264839969575405, 0.014776892960071564, -0.0022549412678927183, -0.009479068219661713, 0.0042723119258880615, -0.010484783910214901, -0.0014600695576518774, 0.026813805103302002, 0.009051441214978695, -0.014998625963926315, -0.002132196445018053, 0.022711751982569695, 0.011276685632765293, -0.009756233543157578, -0.022490018978714943, 0.0021025000605732203, -0.010516460053622723, -0.01376325823366642, 0.012052750214934349, 0.011585528030991554, -0.0048028863966465, -0.00023373485601041466, -0.024406423792243004, 0.013596959412097931, -0.022949323058128357, -0.01656659133732319, -0.010049237869679928, 0.0030250661075115204, -0.004264392890036106, 0.004743493627756834, -0.02359868213534355, -0.0044584088027477264, 0.002318293321877718, 6.697141088807257e-06, -0.013248521834611893, 0.01104703452438116, -0.01271794829517603, 0.0007988312281668186, -0.015758851543068886, -0.000744387973099947, -0.006845993921160698, -0.01085697766393423, 0.050650060176849365, -0.00791506189852953, 0.002536066574975848, -0.0016679437831044197, 0.009186064824461937, -0.022870132699608803, 0.013153494335711002, 0.017881149426102638, -0.017675254493951797, 0.006810358259826899, 0.008402081206440926, 0.010611488483846188, -0.0011621162993833423, -0.01605185493826866, 0.0017659417353570461, 0.029949737712740898, -0.016099369153380394, 0.0048028863966465, -0.0055353958159685135, -0.017025895416736603, 0.011363795027136803, -0.0027538395952433348, 0.013232683762907982, 0.029854709282517433, 0.007368648890405893, -0.030139794573187828, 0.019686685875058174, 0.006137241143733263, 0.015956828370690346, -0.013620716519653797, -0.011458823457360268, 0.0026211959775537252, -0.03398843854665756, -0.001977775478735566, 0.03937337175011635, -0.0055749909952282906, 0.003329948289319873, -0.009170226752758026, 0.016534915193915367, -0.004513842053711414, 0.01832461543381214, -0.005547274369746447, 0.012710029259324074, -0.0013402943732216954, 0.02261672355234623, 0.0012541749747470021, 0.027114728465676308, 0.015774689614772797, -0.0038149883039295673, -0.0026291150134056807, -0.020858701318502426, -0.02076367288827896, -0.006758884526789188, -0.009186064824461937, -0.01602809876203537, 0.0024410381447523832, 0.02508745901286602, -0.009582015685737133, -0.001956988126039505, 0.018150396645069122, -0.027843277901411057, -0.0015115431742742658, -0.013913719914853573, -0.007788357324898243, 0.007202349603176117, 0.0048028863966465, 0.00698457658290863, 0.012488296255469322, -8.395399345317855e-05, 0.003015167312696576, -0.0013343550963327289, 0.021080434322357178, -0.000951767317019403, 0.006216431502252817, -0.010152185335755348, 0.0019411500543355942, -0.02017766609787941, 0.01642405055463314, 0.006323338486254215, -0.025911036878824234, -0.005238432437181473, -0.006766803562641144, 0.020842863246798515, 0.015014464035630226, 0.007170673459768295, 0.0035853367298841476, 0.02638617902994156, 0.009502825327217579, -0.00829121470451355, -0.0027340420056134462, -0.01546584814786911, 0.019876742735505104, 0.004284190479665995, -0.019718362018465996, -0.00315770972520113, 0.015442091040313244, 0.018340453505516052, 0.010476864874362946, 0.006355014629662037, -0.012044831179082394, -0.014919435605406761, 0.010690678842365742, 0.012805056758224964, 0.01775444485247135, 0.009186064824461937, -0.00045955070527270436, 0.010690678842365742, 0.01349401194602251, 0.012226969003677368, 0.020652806386351585, 0.023329436779022217, -0.004798926878720522, -0.0003731838660314679, -0.0005365136894397438, -0.00951866339892149, 0.010286808013916016, 0.00318542611785233, -0.002161892829462886, 0.004771210253238678, -0.0015065937768667936, 0.0015937029384076595, 0.009265254251658916, -0.003213142743334174, 0.0032487784046679735, 0.006766803562641144, 0.007629976607859135, 0.00043925820500589907, 0.0069687385112047195, 0.014420537278056145, 0.00047885329695418477, 0.02811252512037754, -0.0026192162185907364, -0.011324199847877026, 0.01680416241288185, -0.008988088928163052, 0.011355875991284847, 0.026845481246709824, 0.011347956955432892, 0.00221732584759593, -0.01036599837243557, -0.022901808843016624, -0.03728275001049042, -0.0038803203497081995, 0.0195758193731308, -0.004632627125829458, -0.007234025746583939, 0.02660791017115116, 0.012345753610134125, -0.003874381072819233, 0.010421431623399258, 0.010793625377118587, -0.0008220933959819376, -0.011957721784710884, -0.00829121470451355, 0.0034507133532315493, 0.011324199847877026, 0.022664237767457962, 0.020494425669312477, 0.029284540563821793, 0.003060701536014676, 0.014230480417609215, -0.012884247116744518, -0.011039115488529205, -0.015085735358297825, -0.01254372950643301, -0.01423839945346117, -0.005353258457034826, 0.015418333932757378, -0.008623814210295677, -0.017485197633504868, -0.024057986214756966, -0.014871921390295029, 0.033291563391685486, 0.012369510717689991, 0.013248521834611893, -0.01642405055463314, 0.009368201717734337, -0.006493597291409969, 0.019306574016809464, 0.014848164282739162, -0.002019350416958332, -0.010326403193175793, -0.0087663559243083, 0.021397195756435394, -0.011474661529064178, 0.003478429978713393, 0.008805951103568077, -0.007210268639028072, -0.0032368998508900404, 0.02090621553361416, -0.018229587003588676, 0.011799341067671776, -0.010635245591402054, 0.019464954733848572, 0.008148672990500927, -0.018150396645069122, 1.6951655197772197e-05, -0.011379633098840714, 0.017485197633504868, -0.015220358967781067, -0.0035457417834550142, -0.020652806386351585, -0.02638617902994156, 0.003987227100878954, -0.00040881946915760636, 0.0205261018127203, 0.014753135852515697, -0.010666921734809875, 0.011712232604622841, -0.01944911666214466, 0.022695913910865784, -0.00726570188999176, 0.004866238683462143, -0.008592138066887856, -0.0004951863083988428, 0.011838936246931553, -0.0030349649023264647, -0.002094581024721265, -0.029870547354221344, -0.012797137722373009, -0.0035972152836620808, 0.013224765658378601, -0.0011007438879460096, 0.012393267825245857, -0.009550339542329311, 0.004636586643755436, 0.009510744363069534, -0.009510744363069534, 0.0041139316745102406, -0.010967844165861607, 0.003943672403693199, -0.024248043075203896, 0.01887894608080387, -0.010651083663105965, 0.019718362018465996, -0.020795349031686783, 0.008259538561105728, -0.000550866883713752, 0.020130151882767677, -0.003452693112194538, -0.00038357757148332894, 3.85433595511131e-05, 0.007772519253194332, -0.006537151988595724, 0.00409809360280633, -0.013889962807297707, -0.0011423188261687756, -0.01718427613377571, 0.012955518439412117, -0.0011393491877242923, -0.005654180888086557, -0.003395280335098505, -0.004929590504616499, -0.011910207569599152, 0.008908898569643497, -0.0058561163023114204, -0.024612316861748695, -0.004577194340527058, 0.011633042246103287, 0.0023816456086933613, 0.009320687502622604, -0.0031616692431271076, 0.006667815614491701, 0.01488775946199894, 0.007107321638613939, -0.0073171756230294704, 0.018372129648923874, -0.003454672871157527, -0.0035180251579731703, 0.00990669522434473, -0.014998625963926315, 0.009977966547012329, -0.004462368320673704, -0.012377429753541946, -0.003636810462921858, -0.005384934134781361, 0.011023277416825294, -0.017310980707406998, 0.0011858734069392085, -0.007566624786704779, -0.016154803335666656, -0.01943327859044075, 0.01566382311284542, 0.014048343524336815, 0.0011829037684947252, -0.006853912957012653, 0.012781299650669098, 0.004707857966423035, -0.009352363646030426, -0.006715329829603434, -0.024802373722195625, 0.03664923086762428, -0.01244078204035759, 0.0020431075245141983, 0.00561062665656209, 0.017200114205479622, -0.0019787654746323824, -0.01959165744483471, -0.009677044115960598, -0.046500492841005325, -0.018752241507172585, -0.002935976954177022, 0.004001085180789232, -0.005915508605539799, -1.2713740943581797e-05, -0.004842481575906277, -0.001438292209059, -0.0016679437831044197, 0.0015125330537557602, -0.012432863004505634, -0.01734265685081482, -0.0016431969124823809, 0.0025736817624419928, -0.027779925614595413, 0.003935753367841244, 0.013462335802614689, -0.00017755929729901254, 0.006018456071615219, -0.004549477715045214, 0.0025301272980868816, -0.01943327859044075, -0.008798032067716122, -0.008703004568815231, -0.0078081549145281315, 0.006937062367796898, -0.02339278906583786, 0.011466742493212223, 0.009336525574326515, 0.01750103570520878, 0.010160104371607304, -0.030123956501483917, -0.01396915316581726, -0.0013204967835918069, -0.018435481935739517, 0.006584666203707457, -0.03181862831115723, 0.01699421927332878, 0.0030369446612894535, -0.0025578439235687256, 0.002637034049257636, 0.014610594138503075, -0.01585387997329235, -0.024913240224123, 0.010746111162006855, -4.321434607845731e-05, -0.017865311354398727, -0.02714640460908413, 0.0067984797060489655, 0.019892580807209015, -0.002357888501137495, -0.009550339542329311, 0.013486092910170555, 0.010603569447994232, 0.002975572133436799, 0.006481718737632036, -0.017279304563999176, 0.02846096083521843, -0.0075824628584086895, 0.0022292044013738632, -0.014206724241375923, -0.015885556116700172, -0.044789984822273254, -0.004985023755580187, 0.011379633098840714, 0.014333427883684635, -0.01715259999036789, -0.001760992337949574, 0.005052335560321808, 0.015473767183721066, 0.018593860790133476, -0.026306988671422005, -0.008140753954648972, -0.00645796163007617, 0.003876360831782222, -0.010563974268734455, -0.01226656325161457, 0.017580226063728333, 0.0017708911327645183, 0.016740810126066208, 0.01696254312992096, 0.002148034516721964, 0.006913305260241032, 0.012512053363025188, 0.017453523352742195, -0.0034031993709504604, 0.02317105606198311, -0.008089279755949974, -0.015758851543068886, 0.0085842190310359, 0.026338664814829826, -0.0016243892023339868, -0.0014570999192073941, -0.012282401323318481, -0.009027684107422829, -0.009795828722417355, -0.0058006830513477325, 0.014460132457315922, -0.008932655677199364, 0.003355685155838728, 0.02792246825993061, -0.021618926897644997, -0.002902321284636855, -0.037219397723674774, 0.026085255667567253, -0.009265254251658916, -0.0076893693767488, 0.0220623929053545, 0.03175527602434158, 0.011474661529064178, 0.017057571560144424, 0.009083117358386517, -0.0022925566881895065, -0.0038506239652633667, 0.004866238683462143, 0.023677872493863106, 0.0020134111400693655, 0.01849883235991001, -0.01925905980169773, -0.006750965490937233, -0.009811666794121265, -0.0014551201602444053, -0.007424082141369581, 0.027574030682444572, -0.015426252968609333, -0.0018421622226014733, 0.01225072517991066, -0.012219049967825413, 0.018055368214845657, 0.017263466492295265, 0.016645781695842743, -0.009352363646030426, 0.001087875571101904, -0.003771433839574456, 0.009613691829144955, -0.0065727876499295235, -0.0017699012532830238, -0.007174632977694273, 0.005186958704143763, -0.010682759806513786, 0.013256440870463848, -0.013604878447949886, -0.016344860196113586, 0.009170226752758026, 0.006058051250874996, -0.0022133663296699524, 0.004600951448082924, -0.003442794317379594, -0.010247212834656239, -0.005266149062663317, -0.006806398741900921, 0.015576714649796486, 0.021571412682533264, 0.0030488232150673866, 0.006671775132417679, -0.001412555342540145, -0.013327712193131447, 0.006659896578639746, 0.017833635210990906, -0.0032091832254081964, -0.004149566870182753, -0.006180795840919018, -0.01330395508557558, -0.02432723343372345, 0.013216846622526646, 0.0035417822655290365, 0.006283743306994438, -0.010270969942212105, 0.005622504744678736, -0.0010571893071755767, -0.012860490009188652, -0.011569689959287643, 0.009360282681882381, 0.021539736539125443, 0.0032487784046679735, -0.012131940573453903, 0.014151290990412235, 0.0030072482768446207, 0.00027345368289388716, 0.015972666442394257, -0.003227001056075096, 0.013533607125282288, 0.015727175399661064, 0.009637448936700821, 0.000129055290017277, 0.010152185335755348, -0.011252928525209427, -0.00522655388340354, -0.0007562665268778801, 2.607708847790491e-05, 0.008267457596957684, -0.0054403673857450485, 0.012765461578965187, -0.012971356511116028, 0.019005650654435158, -0.007178592495620251, 0.02416885271668434, 0.008148672990500927, 0.005483922082930803, 0.011347956955432892, -0.002302455483004451, -0.005297825206071138, -0.0005241401959210634, 0.00744387973099947, 0.004529680125415325, -0.009494906291365623, 0.0008740619523450732, 0.007384486962109804, 2.0431692973943427e-05, 0.01500654499977827, 0.03370335325598717, 0.007748762145638466, 0.017105085775256157, 0.023456141352653503, -0.00233215163461864, 0.010215537622570992, -0.0008894050261005759, 0.033101506531238556, 0.004961266648024321, -0.0005721492925658822, 0.008560461923480034, -0.0003291343164164573, -0.004608870483934879, 0.012060669250786304, 0.004395056515932083, -0.014452213421463966, -0.012472458183765411, -0.03262636810541153, -0.013074303977191448, -0.021808983758091927, 0.018958136439323425, -0.008299133740365505, -0.004794967360794544, -0.016123127192258835, 0.006050132215023041, -0.007887344807386398, 4.5163167669670656e-05, 0.007534948643296957, -0.022521695122122765, 0.01453140377998352, -0.007293418515473604, -0.019274897873401642, -0.014523484744131565, 0.010421431623399258, 0.013787015341222286, -3.86980282200966e-05, -5.0700295105343685e-05, -0.022141583263874054, -8.692363189766183e-05, 0.010587731376290321, -0.00233215163461864, 0.013010951690375805, -0.008552542887628078, 0.01385036762803793, -0.0005157262203283608, -0.023677872493863106, -0.008536704815924168, 0.0058006830513477325, -0.009700801223516464, -0.011648880317807198, 0.0001585041609359905, 0.016487400978803635, 0.0008161541190929711, 0.005289906170219183, -0.014761054888367653, 0.002045087283477187, 0.014198805205523968, -0.00154420908074826, -0.014357184991240501, -0.01941744051873684, 0.011458823457360268, -0.0003761535044759512, -0.018704727292060852, -0.003609093837440014, 0.0027993740513920784, 0.015719257295131683, 0.002890442730858922, -0.014689784497022629, 0.0032250212971121073, -0.007206309121102095, 0.018229587003588676, -0.003015167312696576, -0.024913240224123, 0.0021995080169290304, -0.013604878447949886, 0.015125330537557602, 0.013842448592185974, 0.0014283934142440557, -0.006564868614077568, 0.008552542887628078, 0.01586971804499626, 0.015331224538385868, 0.017105085775256157, 0.012955518439412117, 0.009677044115960598, 0.035762298852205276, 0.008536704815924168, -0.023456141352653503, 0.0037793528754264116, -0.0181187205016613, 0.003872401313856244, 0.013501930981874466, -0.0008201136370189488, 0.019195707514882088, -0.0007384486962109804, 0.0019490690901875496, 0.0007567614666186273, -0.005087971221655607, -0.004810805432498455, 0.028065010905265808, -0.03268972039222717, -0.006050132215023041, -0.006541111506521702, -0.017390171065926552, -0.005293865688145161, -0.008924736641347408, 0.00026058527873829007, -0.0031339526176452637, 0.013454416766762733, 0.005270108580589294, -0.0020569658372551203, 0.006576747167855501, -0.0030983169563114643, -0.014959030784666538, 0.010160104371607304, 0.011910207569599152, -0.008227863349020481, 0.006168917287141085, -0.0200192853808403, -0.03137516230344772, 0.01274170447140932, -0.007574543822556734, -0.0036130533553659916, -0.027241433039307594, -0.002662770915776491, -0.004236676264554262, 0.010706516914069653, 0.0026053579058498144, 0.01959165744483471, -0.005642302334308624, -0.0038684417959302664, 0.002373726572841406, -0.0014204743783921003, -0.0052146753296256065, -0.012710029259324074, 0.0060263751074671745, -0.013945396058261395, -0.016550753265619278, 0.008410000242292881, -0.0028191714081913233, -0.006129322107881308, -0.009265254251658916, -0.0017441643867641687, 0.00802592746913433, -0.018197910860180855, -0.017279304563999176, 0.02057361602783203, -0.022157421335577965, 0.012013155035674572, -0.006232269573956728, 0.028207553550601006, 0.020985405892133713, 0.014175048097968102, 0.018625536933541298, 0.0073567708022892475, 0.006679694168269634, 0.004901873879134655, 0.025974389165639877, -0.031074238941073418, 0.026275312528014183, 0.0201618280261755, -0.027811601758003235, -0.012876328080892563, -0.00015380223339889199, 0.006806398741900921, -0.012013155035674572, 0.011371714062988758, -0.02054193988442421, 0.0029656733386218548, 0.01441261824220419, 0.01568758115172386, -0.008441676385700703, 0.01621023565530777, -0.002961713820695877, -0.011854774318635464, -0.00744387973099947, 0.01092824898660183, -0.014048343524336815, 0.017865311354398727, 0.006873710080981255, 0.016067693009972572, 0.006065970286726952, 0.009740395471453667, 0.026687100529670715, 0.016131045296788216, -0.005210715811699629, -0.007859628647565842, 0.0038050897419452667, 0.004810805432498455, -0.013010951690375805, -0.015948908403515816, 0.01104703452438116, -0.0012363571440801024, -0.0041772834956645966, -0.011870612390339375, 0.018562184646725655, -0.018973974511027336, -0.0028587665874511003, -0.002399463439360261, -0.004537599161267281, -0.019512467086315155, -0.002696426585316658, 0.001984704751521349, 0.0015956826973706484, 0.021967364475131035, 0.0075983009301126, 0.007475555874407291, -0.007558705750852823, 0.013699906878173351, 0.0072221471928060055, -0.015315386466681957, -0.024643993005156517, 0.013177251443266869, 0.01581428572535515, -0.001339304493740201, 0.0022272246424108744, 0.0076101794838905334, -0.0015412394423037767, 0.021080434322357178, -0.004977104719728231, -0.02076367288827896, -0.008877222426235676, -0.0027716574259102345, -0.03883488103747368, 0.001721397158689797, -0.008703004568815231, -0.0037298589013516903, 0.00466430326923728, -0.000642925500869751, 0.01832461543381214, 0.002635054290294647, -0.006430245004594326, 0.006556949578225613, 0.018007853999733925, -0.004553437232971191, -0.02849263697862625, 0.021729793399572372, 0.020288532599806786, -0.017881149426102638, 0.008314971812069416, 0.008033846504986286, 0.006766803562641144, -0.0038229073397815228, -0.010920329950749874, -0.007218187674880028, -0.008180349133908749, 0.025008268654346466, 0.014373023062944412, -0.013351469300687313, -0.009455311112105846, -0.023060189560055733, 0.02073199674487114, 0.019195707514882088, 0.01678832434117794, -0.012036912143230438, -0.016629943624138832, 0.020795349031686783, -0.004581153858453035, 0.004692019894719124, 0.0036585878115147352, -0.0006473799585364759, -0.013707825914025307, -0.005131525453180075, 0.015347062610089779, 0.009051441214978695, -0.0171684380620718, -0.007697288412600756, -0.015085735358297825, 0.026639586314558983, -0.02694050967693329, 0.025800170376896858, -0.00021406104497145861, -0.011625123210251331, 0.008156592026352882, -0.0005770986899733543, 0.0067390869371593, 0.013153494335711002, 0.016851676627993584, -0.00036452244967222214, -0.0009290001471526921, -0.016915028914809227, -0.014555160887539387, -0.03918331488966942, -0.0006300571258179843, 0.0029537947848439217, 0.0017362453509122133, 0.008402081206440926, 0.011078710667788982, -0.012076507322490215, -1.5830308257136494e-05, -0.017247628420591354, -0.02149222232401371, -0.01337522640824318, 0.02713056653738022, -0.014555160887539387, 0.004569275304675102, 0.0011492479825392365, -0.018625536933541298, 4.961761806043796e-05, -0.010476864874362946, -0.00042490498162806034, 0.008742598816752434, -0.013486092910170555, -0.023329436779022217, -0.00016135004989337176, 0.02038356103003025, -0.015188682824373245, -0.01678832434117794, 0.008615895174443722, -0.02165060304105282, 0.02242666855454445, 0.0171684380620718, -0.004268352407962084, -0.009011846035718918, 0.0028983617667108774, -0.0025162689853459597, 0.02581600844860077, 0.002078742953017354, -0.004680141340941191, -0.015157006680965424, 0.0009388989419676363, 0.01583804190158844, -0.005274068098515272, -0.015608390793204308, -0.026544557884335518, -0.004925630986690521, 0.0018193951109424233, -0.024010471999645233, -0.0003506641660351306, 0.02866685576736927, 0.008259538561105728, 0.009692882187664509, 0.02336111292243004, 0.007016252726316452, -0.0026409935671836138, 0.0021658523473888636, -0.0005860075470991433, 0.01775444485247135, 0.0007661652634851635, 0.006109524983912706, 0.004640546161681414, -0.026655424386262894, 0.005155282560735941, -0.0018896764377132058, -0.002385605126619339, -0.01943327859044075, 0.006592585239559412, 0.0004400006146170199, 0.013905800879001617, 0.013082223013043404, 0.01282881386578083, -0.003217102261260152, 0.008101158775389194, 0.02394711971282959, -0.012504134327173233, -0.04184410721063614, -0.00830705277621746, 0.010057156905531883, -0.005444326903671026, -0.012417024932801723, 0.006442123558372259, 0.0019302613800391555, -0.006101605948060751, 0.016091451048851013, 0.015117411501705647, 0.023519491776823997, 0.001318517024628818, -0.008623814210295677, -0.012203211896121502, 0.008227863349020481, 0.0064777592197060585, 0.0002010688913287595, -0.005571031477302313, 0.0009784940630197525, 0.018514670431613922, 0.003761535044759512, -0.01564006693661213, 0.008885141462087631, -0.010223456658422947, 0.012678353115916252, -0.006196633912622929, -0.022854294627904892, 0.012789218686521053, -0.0009577065939083695, -0.011173739098012447, 0.013137656264007092, 0.00012045573384966701, 0.013691987842321396, 0.007970495149493217, -0.01620231755077839, 0.0007176612853072584, 0.013984991237521172, 0.0008270427351817489, 0.013842448592185974, -0.028888588771224022, 0.014578917995095253, -0.0026548518799245358, 0.0539126954972744, 0.004129769280552864, 0.017786120995879173, -0.015418333932757378, 0.002118338132277131, -0.01159344706684351, 0.01233783457428217, 0.004739534109830856, -0.0017916784854605794, -0.003969409503042698, -0.0004927116096951067, -0.030108118429780006, 0.021983202546834946, 0.018799755722284317, -0.012290320359170437, 0.004478206392377615, 0.010191780515015125, -0.008885141462087631, -0.0007236005621962249, 0.0051117283292114735, -0.008924736641347408, -0.007241944782435894, -0.00040510742110200226, 0.0025736817624419928, 0.014127533882856369, 0.009597853757441044, 0.006592585239559412, -0.008758436888456345, 0.0018283040262758732, -0.00934444461017847, 0.022775104269385338, -0.008402081206440926, -0.033291563391685486, 0.007550786715000868, 0.0124566201120615, -0.003104256233200431, 0.004044639877974987, 0.01057189330458641, 0.016162721440196037, -0.00848127156496048, 0.0003024076286237687, -0.019464954733848572, 0.0124566201120615, 0.0034606121480464935, -0.01849883235991001, 0.022315802052617073, 0.007986333221197128, -0.018514670431613922, -0.005780885461717844, 0.005131525453180075, 0.005531436298042536, -0.016661619767546654, -0.015347062610089779, -0.0036308711860328913, 0.006446083076298237, 0.015038221143186092, 0.00026776190497912467, -0.012290320359170437, -0.009716639295220375, -0.0035398025065660477, -0.006786601152271032, 0.008505028672516346, 0.017057571560144424, 0.015014464035630226, -0.01775444485247135, 0.023044351488351822, -0.01395331509411335, -0.017817797139286995, 0.013153494335711002, 0.018229587003588676, 0.005384934134781361, -0.022410830482840538, -0.0017946481239050627, -0.004442570731043816, -0.023456141352653503, -0.011062872596085072, -0.020272694528102875, -0.015529200434684753, -0.015608390793204308, 0.010603569447994232, -0.006604463793337345, -0.0074201226234436035, 0.003407158888876438, -0.005068173632025719, -0.008243700489401817, -0.03313318267464638, -0.0021420952398329973, 0.0031339526176452637, 0.009170226752758026, -0.0018273141467943788, -0.02489740215241909, -0.013636554591357708, 0.004684100858867168, -0.003169588278979063, 0.013446497730910778, -0.0021282369270920753, -0.004759331699460745, 0.006964778993278742, 0.0036447294987738132, 0.005254270508885384, 0.003492288291454315, 0.0036546282935887575, 0.010358079336583614, 0.008560461923480034, 0.005737330764532089, -0.009091036394238472, -0.00016011270054150373, -0.014499727636575699, -0.002528147539123893, 0.005915508605539799, 0.020431075245141983, 0.01189436949789524, 0.003935753367841244, 0.0024766738060861826, 0.0033319280482828617, 0.028413448482751846, 0.008322890847921371, 0.0020371682476252317, 0.020668644458055496, -0.002106459578499198, 0.006259986199438572, 0.016162721440196037, 0.024390585720539093, -0.015299548394978046, -0.0009720598463900387, -0.008615895174443722, -0.006331257522106171, 0.0033754827454686165, -0.01770693063735962, 0.001297729555517435, 0.005424529314041138, -0.010310565121471882, -0.013723663985729218, 0.0038130085449665785, -0.022030716761946678, -0.011157901026308537, 0.0007716096006333828, 0.003605134319514036, 0.007784397806972265, 0.005622504744678736, -0.022347478196024895, 0.00018263242964167148, 0.013573202304542065, 0.0005657150759361684, -0.002650892361998558, -0.003622952150180936, 0.011553851887583733, 0.04162237420678139, 0.013470254838466644, 0.006442123558372259, 0.008259538561105728, -0.014277994632720947, -0.0002101015270454809, 0.017025895416736603, -0.007273620925843716, 0.021935688331723213, -0.009170226752758026, 0.01789698749780655, -0.0013432638952508569, 0.017200114205479622, 0.032182902097702026, 0.012100264430046082, 0.010769868269562721, 0.011387552134692669, 0.001387808471918106, 0.007820033468306065, -0.0013650412438437343, 0.024849887937307358, -0.0220623929053545, -0.001943129813298583, -0.0013769197976216674, 0.001910463790409267, -0.005155282560735941, 0.0015481685986742377, -0.003719960106536746, 0.02152389846742153, 0.0022826578933745623, -0.016835838556289673, -0.023630358278751373, -0.0003994156140834093, -0.020668644458055496, 0.003409138647839427, 0.0336083248257637, -0.00791902095079422, 0.010484783910214901, -0.00810907781124115, -0.01864137500524521, 0.02076367288827896, -0.0022014877758920193, 3.2140091207111254e-05, 0.0010433309944346547, 0.007439920213073492, -0.006113484501838684, -0.002146054757758975, -0.0034487335942685604, -0.0020688441582024097, 0.004363380838185549, -0.0097879096865654, -0.02320273220539093, 0.0066361394710838795, 0.005107768811285496, 0.007542867679148912, -0.014151290990412235, 0.005135484971106052], "692705ab-306d-4be0-9fed-d651401eaadc": [-0.025087671354413033, -0.028725149109959602, -0.006143122911453247, 0.041932474821805954, -0.022917672991752625, -0.03871650621294975, -0.02198098413646221, 0.04196369647979736, -0.0017436087364330888, 0.03462629392743111, -0.0016392068937420845, -0.003793593030422926, -0.0008103341097012162, -0.00690418342128396, -0.014089373871684074, 0.03125421330332756, -0.041401684284210205, 0.004695157054811716, 0.018921131268143654, -0.05011289566755295, 0.040402546525001526, -0.007587186060845852, -0.02839730866253376, 0.008836105465888977, 0.015197789296507835, -0.021481415256857872, -0.017500484362244606, 0.005077638663351536, -0.03186305984854698, 0.0027417687233537436, -0.0008557050605304539, -0.010678262449800968, 0.026102418079972267, -0.0028022632468491793, 0.01673552207648754, -0.040433771908283234, 0.03042680211365223, 0.04283794015645981, -0.010303585790097713, -0.010865599848330021, -0.03471996262669563, 0.0378110408782959, -0.0019924170337617397, -0.013347827829420567, -0.0378110408782959, 0.0037155356258153915, -0.025977525860071182, -0.033939387649297714, -0.011864735744893551, 0.002589556621387601, 0.004624905064702034, -0.005526469089090824, -0.03153521940112114, 0.03100442700088024, 0.014612358994781971, -0.052922964096069336, 0.008516070432960987, 0.07106351852416992, 0.022355658933520317, -0.061977632343769073, -0.003791641676798463, -0.007755009923130274, -0.018530843779444695, -0.013636640273034573, -0.012871677055954933, -0.018640123307704926, -0.010600204579532146, -0.014503078535199165, -0.03809204697608948, 0.010381643660366535, -0.0024256359320133924, 0.037436362355947495, -0.023838751018047333, 0.0005659166490659118, 0.025134505704045296, -0.021169185638427734, 0.08124221861362457, 0.016454514116048813, 0.01376933790743351, -0.040652330964803696, 0.010381643660366535, 0.013285381719470024, 0.025712130591273308, -0.007743301335722208, 0.06026036664843559, 0.0067910002544522285, -0.04152657464146614, -0.05776252970099449, 0.006299237720668316, -0.025993138551712036, 0.01262969896197319, 0.02493155561387539, -0.01629840023815632, 0.010951463133096695, 0.011318333446979523, 0.021965373307466507, 0.02451004646718502, 0.012567252852022648, 0.005327422637492418, -0.019639259204268456, -0.01826544851064682, 0.014026927761733532, 0.014315740205347538, -0.0034247715957462788, -0.005869921762496233, 0.04049621522426605, 0.026555152609944344, -0.0012879482237622142, -0.01593152992427349, 0.013371245004236698, -0.00444927578791976, -0.05201749876141548, -0.01188034750521183, 0.004371218383312225, -0.047427721321582794, -0.033908165991306305, -0.018093721941113472, 0.0005337179754860699, -0.03359593451023102, -0.016501350328326225, 0.0345950722694397, 0.014815308153629303, 0.006080676801502705, 0.015057286247611046, -0.025353066623210907, 0.013090237975120544, 0.022308824583888054, 0.009179558604955673, 0.028693927451968193, -0.010857794433832169, -0.012902899645268917, 0.028522200882434845, 0.03624989092350006, 0.03553175926208496, 0.015447573736310005, -0.007329596672207117, 0.032159678637981415, 0.08036797493696213, -0.028334861621260643, 0.03253435343503952, -0.06488136947154999, -0.041401684284210205, -0.0018343506380915642, 0.013246352784335613, -0.008141394704580307, -0.01801566407084465, -0.05214238911867142, 0.04034009948372841, -0.007918930612504482, 0.03378327190876007, -0.054203107953071594, -0.03381449729204178, -0.007446683011949062, -0.003370131365954876, 0.038622837513685226, -0.02911543659865856, 0.01394886989146471, 0.030130183324217796, -0.008906357921659946, 0.035906437784433365, 0.02714838832616806, -0.037717368453741074, 0.024666160345077515, 0.03952830284833908, 0.05863677337765694, 0.0033135395497083664, 0.029630616307258606, 0.02329234965145588, -0.0043165781535208225, 0.02936522103846073, 0.022105876356363297, -0.03481363132596016, 0.016501350328326225, -0.023698247969150543, 0.0016655513318255544, 0.013613223098218441, 0.046678368002176285, 0.013902035541832447, 0.0062211803160607815, -0.01701652817428112, -0.016033004969358444, 0.011482253670692444, -0.016751132905483246, 0.0025114992167800665, 0.02129407785832882, 0.020919403061270714, 0.01375372614711523, 0.02825680561363697, 0.009718155488371849, -0.023698247969150543, -0.011372973211109638, -0.0017153129447251558, -0.012848259881138802, -0.02881881780922413, -0.022105876356363297, -0.0005595745169557631, 0.0015611493727192283, -0.013652252033352852, -0.010717290453612804, 0.014643581584095955, -0.024353930726647377, -0.055389583110809326, -0.04071477800607681, 0.021465804427862167, -0.0006849542842246592, 0.01243455521762371, -0.007462294306606054, -0.009421536698937416, 0.04302527755498886, -0.03949708119034767, 0.037436362355947495, -0.05613893270492554, 0.00970254372805357, 0.0049020093865692616, 0.003606255166232586, 0.021309690549969673, -0.00030783916008658707, 0.04112067446112633, 0.00993671640753746, -0.022308824583888054, -0.0019846111536026, -0.006439741235226393, -0.005101055838167667, -0.014932394027709961, -0.047896064817905426, -0.02917788363993168, -0.011232470162212849, 0.02204342931509018, -0.03284658491611481, -0.009187364019453526, 0.02137213572859764, -0.007173481862992048, -0.004800534341484308, -0.029052991420030594, 0.0064748674631118774, 0.021887315437197685, 0.01965487189590931, 0.0158768892288208, -0.01316048949956894, -0.008804882876574993, 0.004035571124404669, 0.03381449729204178, -0.005007386673241854, -0.029958456754684448, 0.008609739132225513, 0.004488304723054171, 0.03025507554411888, 0.04955088347196579, -0.0057489327155053616, 0.009007832035422325, 0.023229902610182762, -0.0029349608812481165, -0.006646593566983938, -0.012543835677206516, -0.03350226581096649, 0.026164865121245384, 0.015486602671444416, -0.0036140610463917255, 0.015775414183735847, -0.038435500115156174, -0.009359090588986874, 0.021528251469135284, -0.014706027694046497, 0.05298541113734245, 0.04277549311518669, -0.024057311937212944, 0.018390340730547905, 0.041932474821805954, -0.0008620471926406026, 0.029131049290299416, -0.02404170110821724, -0.008008696138858795, 0.002544673625379801, 0.025946304202079773, -0.006962726358324289, -0.012403332628309727, 0.006209471728652716, -0.004542944952845573, -0.009616680443286896, -0.03303392231464386, 0.0017738559981808066, 0.006939309183508158, 0.033158812671899796, -0.016751132905483246, 0.005893338937312365, 0.040652330964803696, -0.01508850883692503, -0.009593263268470764, -0.040683552622795105, -0.0034306258894503117, 0.0023768499959260225, 0.029412055388092995, -0.026992274448275566, 0.03412672504782677, 0.011224664747714996, -0.0013903987128287554, -0.003932144958525896, -0.014940200373530388, -0.03145715966820717, -0.011833512224256992, 0.0011454933555796742, 0.013168295845389366, -0.023058177903294563, -0.03306514397263527, 0.030130183324217796, -0.015150954946875572, 0.06900280714035034, 0.025196950882673264, -0.030489249154925346, 0.017328757792711258, 0.0306765865534544, -0.035625431686639786, -0.008398983627557755, -0.011763260699808598, 0.004679545294493437, 0.016610629856586456, -0.023417241871356964, -0.030270688235759735, -0.014464049600064754, -0.021137963980436325, -0.01962364837527275, 0.005077638663351536, -0.035687875002622604, 0.03575032204389572, 0.04580412432551384, -0.04533578082919121, 0.03987175598740578, -0.019342642277479172, -0.0009127845405600965, -0.0205135028809309, -0.012801425531506538, -0.040621109306812286, -0.02237127162516117, 0.011864735744893551, -0.03525075316429138, -0.028803206980228424, -0.03117615357041359, -0.07437315583229065, -0.024994002655148506, -0.028163135051727295, -0.020575949922204018, -0.01202085055410862, -0.008469236083328724, -0.010787542909383774, -0.03064536303281784, -0.0030091155786067247, 0.004211200401186943, 0.019467532634735107, 0.02864709123969078, -0.004168268758803606, 0.0009742547990754247, -0.02262105606496334, 0.026492705568671227, -0.00482395151630044, 0.03896629065275192, -0.008477041497826576, -0.0035847893450409174, 0.005132278893142939, 0.0171258095651865, -0.014128402806818485, -0.007942347787320614, -0.041901249438524246, 0.010381643660366535, 0.0015260236104950309, 0.005666972603648901, 0.007942347787320614, 0.0017816617619246244, -0.010178694501519203, -0.04274427145719528, 0.00024246601969935, 0.009515205398201942, 0.015861278399825096, -0.03278413787484169, 0.007431071251630783, -0.004726380109786987, -0.0567321702837944, 0.07399848103523254, 0.005721612833440304, 0.008492653258144855, 0.023026954382658005, -0.01687602512538433, -0.029021767899394035, -0.012567252852022648, 0.0013055112212896347, 0.04976944252848625, 0.011380779556930065, 0.03606255352497101, -0.03905995935201645, -0.028085079044103622, 0.008078948594629765, -0.03749880939722061, 0.0029213009402155876, -0.020888179540634155, 0.001727997325360775, -0.01951436698436737, -0.00581528153270483, 0.022464940324425697, -0.019139692187309265, 0.01879623904824257, -0.006740262731909752, -0.025415511801838875, -0.000679587887134403, -0.01305901538580656, -0.01164617482572794, -0.003375985659658909, -0.020607171580195427, -0.024947168305516243, 0.0054601202718913555, 0.023838751018047333, 0.009616680443286896, 0.020591560751199722, -0.047646280378103256, 0.011521282605826855, -0.0012762396363541484, 0.027164001017808914, 0.0073491111397743225, -0.020747676491737366, 0.01815616711974144, -0.07630898058414459, -0.023198680952191353, 0.026196086779236794, 0.050206564366817474, 0.01415962539613247, 0.019639259204268456, -0.00478102033957839, 0.016891635954380035, 0.010241140611469746, 0.003980930894613266, -0.006650496739894152, 0.005971396341919899, 0.001642134040594101, 0.02226199023425579, 0.016079839318990707, -0.013917647302150726, 0.007872096262872219, -0.019561203196644783, 0.0067207482643425465, -0.01562710665166378, 0.01375372614711523, -0.020997459068894386, -0.0016226196894422174, 0.026305368170142174, 0.005393771454691887, 0.001941679627634585, -0.05264195799827576, -0.021575085818767548, -0.04699059948325157, 0.008297509513795376, -0.011365167796611786, -0.005791864357888699, 0.00738423690199852, 0.06531849503517151, -0.010397255420684814, -0.007255441974848509, -0.005959687754511833, -0.006361683830618858, 0.035406868904829025, -0.002495887689292431, 0.04196369647979736, -0.060697488486766815, -0.01550221350044012, -0.0081179765984416, -0.01121685840189457, -0.005249364767223597, 0.0033311026636511087, -0.04461764916777611, 0.011388584971427917, 0.023479687049984932, 0.011927181854844093, 0.04108945280313492, 0.01787516102194786, -0.01937386393547058, 0.022917672991752625, 0.05548325181007385, 0.013402467593550682, 0.013043403625488281, -0.033908165991306305, -0.011185635812580585, 0.0019231409532949328, 0.005764544475823641, 0.005370353814214468, 0.0019348495407029986, -0.011778872460126877, 0.022886451333761215, -0.019327029585838318, 0.010857794433832169, -0.01401912234723568, -0.0029720382299274206, 0.0012996569275856018, 0.02326112613081932, 0.008851717226207256, 0.012926316820085049, 0.025306232273578644, 0.00335842277854681, 0.007005658000707626, -0.008055531419813633, 0.015041674487292767, -0.0007298373384401202, 0.005908950697630644, -0.040621109306812286, 0.011942792683839798, -0.030520470812916756, 0.01829667203128338, -0.0038521362002938986, -0.047927286475896835, 0.024556880816817284, -0.041183121502399445, 0.0024236845783889294, -0.005608429200947285, -0.011560311540961266, -0.031769391149282455, 0.005179113242775202, -0.018702570348978043, -0.0007322766468860209, -0.002265618182718754, -0.0037252928595989943, -0.006943211890757084, -0.011521282605826855, 0.024478822946548462, 0.010397255420684814, 0.0037506616208702326, -0.03559420630335808, -0.029521334916353226, 0.005140084307640791, -0.010537758469581604, -0.012325274758040905, -0.017328757792711258, -0.024244651198387146, 0.0378110408782959, -0.004593682009726763, -0.014830919913947582, 0.019108468666672707, -0.018031276762485504, 0.013909841887652874, 0.0026422454975545406, 0.020966237410902977, -0.0008732679416425526, -0.007310082204639912, 0.0022890353575348854, -0.012106713838875294, -0.023729471489787102, 0.00747400289401412, -0.007618409115821123, -0.015166566707193851, -0.007353013847023249, 0.014487466774880886, 0.0017943461425602436, 0.014292323030531406, 0.006088482681661844, 0.0017045800341293216, -0.03039557859301567, 0.014495272189378738, 0.00027271328144706786, 0.0025154019240289927, 0.008461429737508297, -0.033127591013908386, -0.012184771709144115, -0.010889017023146152, -0.005791864357888699, -0.03325248137116432, -0.017313146963715553, 0.01163056306540966, 0.011177829466760159, 0.013706891797482967, -0.012036462314426899, -0.01987343281507492, -0.02689860388636589, 0.015759803354740143, 0.002216832246631384, -0.0027964089531451464, 0.017344370484352112, -0.0005693316925317049, 0.024822276085615158, -0.011802289634943008, 0.007762815337628126, 0.020248107612133026, -0.010373838245868683, -0.0022831810638308525, -0.04508599638938904, -0.013886423781514168, 0.0020236398559063673, -0.011552506126463413, 0.03777981549501419, -0.009889882057905197, 0.02814752422273159, 0.00875804852694273, 0.0007532545714639127, -0.035438090562820435, -0.005471828859299421, 0.01618911884725094, 0.014073762111365795, 0.013503942638635635, 0.006346072535961866, -0.028881264850497246, -0.03172255679965019, 0.007181287277489901, -0.011052938178181648, -0.005171307362616062, 0.032159678637981415, 0.0013777143321931362, 0.0012986811343580484, 0.02376069501042366, 0.009351285174489021, -0.028381695970892906, -0.05532713606953621, 0.017828326672315598, -0.025977525860071182, 0.04149535298347473, 0.013418079353868961, 0.00036638224264606833, 0.015385127626359463, -0.009679126553237438, 0.040902115404605865, -0.0075949919410049915, 0.03784226253628731, 0.005780155770480633, 0.0069510177709162235, 0.028959322720766068, 0.007965764962136745, -0.034189172089099884, 0.032128456979990005, -0.005862115882337093, 0.04986311122775078, -0.02664882130920887, 0.001342588453553617, 0.06319532543420792, -0.029333997517824173, -0.003924339544028044, -0.006338266655802727, 0.013246352784335613, -0.026305368170142174, -0.005214239004999399, -0.00968693196773529, -0.013488330878317356, 0.03259680047631264, -0.0010381643660366535, 0.02068522945046425, 0.018858684226870537, -0.015026063658297062, 0.00875804852694273, -0.03306514397263527, -0.016064228489995003, 0.006467061582952738, 0.025462348014116287, -0.007735495455563068, -0.002540770685300231, 0.01887429691851139, 0.0018050790531560779, 0.02454126812517643, 0.01584566757082939, -0.01790638454258442, -0.009850853122770786, -0.01264531072229147, 0.02892809920012951, -0.0033564711920917034, -0.028475366532802582, -0.007505225948989391, 0.03272169083356857, 0.037155356258153915, 0.001310389838181436, 0.011989627964794636, -0.029443278908729553, 0.024603715166449547, 0.011263692751526833, 0.01598617061972618, 0.023276738822460175, -0.01779710315167904, 0.01202085055410862, 0.03131665661931038, 0.02012321539223194, 0.011693009175360203, -0.029131049290299416, 0.021418970078229904, 0.0004624905122909695, 0.011677397415041924, 0.006623176392167807, -0.008820494636893272, -0.0036316239275038242, 0.009335673414170742, -0.02611803077161312, -0.008921968750655651, -0.062164969742298126, -0.019810985773801804, 0.014784085564315319, -0.00439853873103857, -0.013269769959151745, -0.0038560391403734684, 0.013152684085071087, -0.027991408482193947, 0.0026578567922115326, -0.009733766317367554, 0.02725766971707344, -0.016111062839627266, 0.015510019846260548, 0.003401354420930147, -0.01751609705388546, -0.00857851654291153, -0.0024822275154292583, 0.010740707628428936, -0.02397925592958927, -0.01948314532637596, 0.0054757315665483475, -0.019732927903532982, -0.0042151035740971565, 0.004745894111692905, 0.0063929068855941296, -0.018062498420476913, -0.03272169083356857, 0.013613223098218441, 0.0062485006637871265, 0.011661786586046219, 0.00037174869794398546, 0.005928465165197849, -0.000750815321225673, -0.001956315478309989, 0.0038013989105820656, -0.016360845416784286, 0.01759415492415428, -0.016079839318990707, 0.02789773978292942, 0.010397255420684814, 0.06372611969709396, -0.016360845416784286, -0.04608513042330742, -0.023885585367679596, 0.009616680443286896, 0.009023443795740604, 0.01216135360300541, 0.023667024448513985, 0.012551641091704369, 0.0294276662170887, -0.012551641091704369, 0.01654818467795849, 0.012028655968606472, -0.004886397626250982, -0.0033018309623003006, -0.013269769959151745, -0.008032114244997501, 0.07175042480230331, 0.00785648450255394, 0.01837472803890705, 0.004956649616360664, -0.003990688361227512, -0.030208241194486618, -0.016095450147986412, 0.0006371440831571817, 0.01353516522794962, 0.006759777199476957, 0.027523064985871315, -0.0008869279990904033, 0.005471828859299421, -0.04433664306998253, 0.017203867435455322, -0.005631846375763416, 0.014167430810630322, -0.016095450147986412, 0.03161327540874481, 0.00425413204357028, 0.01654818467795849, 0.018686959519982338, 0.0010557272471487522, -0.009905492886900902, -0.007965764962136745, -0.01182570680975914, -0.010163082741200924, 0.026445871219038963, 0.013176101259887218, 0.004753699991852045, 0.011380779556930065, 0.02486911043524742, 0.04124556854367256, 0.014674805104732513, 0.031488385051488876, 0.04571045562624931, -0.020700842142105103, -0.03571910038590431, 0.015400739386677742, -0.008024307899177074, -0.011560311540961266, -0.020529115572571754, -0.02079451084136963, -0.02653953991830349, 0.028209969401359558, 0.006744165439158678, 0.016704298555850983, -0.019498756155371666, 0.018421562388539314, 0.017687823623418808, 0.000408094230806455, -0.011091967113316059, -0.00035296613350510597, -0.04233837127685547, -0.004062891472131014, -0.009757183492183685, 0.002263666596263647, 0.01200523879379034, 0.004851271864026785, -0.008726825006306171, 0.021715588867664337, -0.006088482681661844, 0.005428897216916084, -0.020388610661029816, 0.031800612807273865, 0.03159766271710396, -0.0030696101021021605, -0.031191766262054443, -0.002205123659223318, 0.020388610661029816, -0.01815616711974144, 0.020966237410902977, 0.011263692751526833, 0.0064085181802511215, 0.011232470162212849, 0.027195222675800323, -0.04255693405866623, -0.011248081922531128, 0.018921131268143654, 0.02925593964755535, 0.02831925079226494, -0.004484401550143957, -0.007380333729088306, -0.012973152101039886, -0.004648322239518166, 0.017578542232513428, -0.013870812952518463, -0.03372082859277725, -0.002726157195866108, -0.025212563574314117, 0.007505225948989391, -0.014612358994781971, -0.008804882876574993, -0.02426026202738285, -0.019576814025640488, 0.03584399074316025, 0.026945440098643303, 0.022277602925896645, 0.014729444868862629, 0.00813358835875988, -0.05151792988181114, 0.02828802727162838, -0.022636666893959045, -0.02978673204779625, -0.01084218267351389, 0.0068495431914925575, 0.02093501389026642, 0.013933259062469006, 0.011052938178181648, -0.0032588993199169636, 0.05520224571228027, 0.032190900295972824, 0.01216135360300541, 0.014706027694046497, 0.03128543496131897, 0.00354966358281672, -0.028662703931331635, -0.009405924938619137, 0.0005815281765535474, 0.016532571986317635, -0.006974434945732355, 0.012902899645268917, -0.011950599029660225, 0.025993138551712036, -0.022183934226632118, -0.024744218215346336, -0.004203394986689091, 0.005292296409606934, -0.013972287066280842, -0.023698247969150543, -0.011146606877446175, 0.009382507763803005, -0.023354794830083847, 0.011653980240225792, 0.03484485670924187, -0.004640516825020313, 0.006997852120548487, -0.008859522640705109, 0.007021269761025906, 0.003180841915309429, -0.03039557859301567, -0.023495299741625786, -0.020279331132769585, 0.0010196256916970015, -0.015111926943063736, 0.012130131013691425, -0.025837022811174393, 0.0017250701785087585, 0.041713912039995193, -0.014237683266401291, 0.002726157195866108, 0.00516350194811821, 0.0011601292062550783, 0.030941981822252274, -0.014627969823777676, -0.03649967536330223, -0.00017831253353506327, -0.008914163336157799, 0.010428478009998798, -0.005304004997014999, -0.01125588733702898, -0.013652252033352852, 0.01045189518481493, -0.02543112449347973, -0.019467532634735107, 0.003173036267980933, 0.02026372030377388, -0.01718825474381447, 0.00989768747240305, 0.006088482681661844, 0.033658381551504135, 0.0009493739926256239, 0.0019748539198189974, 0.011653980240225792, -0.023526521399617195, -0.02653953991830349, 0.03784226253628731, 0.008594127371907234, 0.003053998574614525, -0.022199545055627823, 0.012418943457305431, -0.014862142503261566, 0.0018987479852512479, 0.02326112613081932, 0.011552506126463413, 0.004410247318446636, -0.028803206980228424, -0.0033994028344750404, -0.015611493960022926, -0.002216832246631384, -0.00856290478259325, 0.012606281787157059, -0.020888179540634155, 0.009062472730875015, -0.016142284497618675, 0.01102171465754509, 0.010654845274984837, -0.022714724764227867, -0.014128402806818485, 0.0009664490935392678, -0.016829190775752068, 0.0004383414925541729, -0.011185635812580585, -0.02561846189200878, 0.01458894181996584, -0.018390340730547905, -0.018858684226870537, -0.02618047595024109, -0.012208188883960247, 0.02287083864212036, -0.003416965715587139, 0.02023249678313732, -0.0036160124000161886, 0.04833318665623665, -0.012286245822906494, -0.0014635776169598103, -0.001760195940732956, 0.014175237156450748, -0.015525630675256252, -0.005928465165197849, 0.020357389003038406, -0.0009010759531520307, 0.019030410796403885, -0.003988736774772406, -0.013121460564434528, 0.003612109459936619, -0.022636666893959045, 0.02767917886376381, -0.02376069501042366, 0.015954947099089622, -0.026992274448275566, -0.0014196702977642417, -0.022948896512389183, -0.007786232978105545, -0.002310501178726554, 0.005015192553400993, -0.016829190775752068, -0.007969668135046959, -0.03400183469057083, -0.0014157673576846719, -0.017750268802046776, -0.01025675144046545, 0.029942845925688744, -0.005300102289766073, 0.015174372121691704, -0.027351338416337967, 0.0162359531968832, 0.010217723436653614, -0.012598475441336632, 0.01414401363581419, 0.00030247270478866994, 0.015244624577462673, 0.0167667455971241, -0.013706891797482967, 0.00506593007594347, -0.0013240498956292868, 0.00387555337511003, -0.003965319599956274, -0.01829667203128338, -0.020357389003038406, -0.007532545831054449, -0.021497027948498726, -0.017063362523913383, -0.012418943457305431, -0.028459753841161728, 0.05055001750588417, -0.002776894485577941, 0.002452956046909094, 0.024962779134511948, -0.008469236083328724, 0.002714448608458042, 0.03646844998002052, -0.010334809310734272, 0.0023300154134631157, 0.015837861225008965, -0.016579406335949898, -0.018780628219246864, 0.014300128445029259, 0.02254299819469452, -0.046959374099969864, -0.012660921551287174, 0.0367494560778141, -0.012176965363323689, -0.012723367661237717, 0.0013045355444774032, -0.022449329495429993, -0.005362548399716616, 0.007274956442415714, -0.007673049345612526, -0.018640123307704926, 0.00875804852694273, -0.01951436698436737, -0.03559420630335808, -0.01687602512538433, 0.03189428150653839, -0.008180422708392143, 0.013191713020205498, -0.03075464442372322, 0.0018421562854200602, -0.0538596548140049, -0.013355633243918419, -0.021059906110167503, 0.025384290143847466, -0.021356524899601936, -0.015642717480659485, 0.021824868395924568, 0.016142284497618675, 0.000700077973306179, 0.006490478757768869, -0.020607171580195427, 0.012325274758040905, -0.019061634317040443, 0.022449329495429993, -0.009585457853972912, -0.0005776252946816385, -0.005362548399716616, -0.03484485670924187, 0.004632710944861174, -0.020575949922204018, -0.01321513019502163, 0.0018480106955394149, 0.0026051681488752365, 0.007645729463547468, -0.038185715675354004, 0.0035477119963616133, 0.004605390597134829, -0.002441247459501028, -0.014331351965665817, -0.02500961348414421, 0.0016518912743777037, 0.008765853941440582, -0.01604861579835415, 0.0012137936428189278, 0.0033408598974347115, 0.006861251778900623, 0.021746812388300896, -0.009054666385054588, 0.02304256521165371, 0.02229321375489235, 0.0038209131453186274, 0.03050485998392105, -0.008711214177310467, -0.015837861225008965, 0.014222071506083012, 0.008258480578660965, 0.015705162659287453, -0.05039390176534653, -0.012738979421555996, -0.016704298555850983, 0.013152684085071087, 0.008781465701758862, -0.004109725821763277, -0.027632344514131546, -0.00025246714358218014, 0.01025675144046545, -4.924328823108226e-05, 0.008547293022274971, -0.005452314391732216, -0.0077589126303792, 0.03909118101000786, 0.011380779556930065, -0.022496163845062256, -0.011661786586046219, -0.023557744920253754, 0.009054666385054588, 0.00781355332583189, 0.03553175926208496, 0.011974016204476357, -0.00836776103824377, -0.01259067002683878, -0.012145742774009705, 0.021809257566928864, 0.021731199696660042, 0.030489249154925346, -0.017078975215554237, 0.008071142248809338, 0.009421536698937416, -0.0010157228680327535, 0.007555963471531868, 0.004324384033679962, -0.0016616483917459846, 0.011162218637764454, 0.010803153738379478, -0.033377375453710556, -0.025712130591273308, -0.004492207430303097, -0.015229012817144394, -0.027382561936974525, 0.001035237219184637, 0.01726631261408329, 0.02864709123969078, 0.022527385503053665, 0.025602851063013077, -0.0016314011299982667, 0.06425691395998001, -0.00988207571208477, 0.016641853377223015, -0.008976609446108341, -0.019311418756842613, -0.0045468476600945, 0.0041292402893304825, 0.008773659355938435, -0.009913299232721329, 0.005877727642655373, -0.004137046169489622, 0.014190847985446453, -0.0001416011364199221, -0.013113655149936676, -0.030192630365490913, -0.02806946635246277, 0.0026617597322911024, -0.021575085818767548, 0.005284490995109081, -0.023854363709688187, -0.005764544475823641, 0.0034872174728661776, -0.006424129940569401, -0.018171779811382294, -0.008196034468710423, 0.010225528851151466, 0.006467061582952738, -0.012044267728924751, -0.021059906110167503, -0.023198680952191353, 0.00949178822338581, 0.008375566452741623, -0.008890746161341667, -0.001224526553414762, 0.013347827829420567, -0.0052064331248402596, -0.002581750974059105, -0.01358980592340231, -0.004012153949588537, 0.003649186808615923, 0.004589779302477837, 0.018889907747507095, -0.019889043644070625, 0.047209158539772034, -0.03628111258149147, -0.01804688759148121, 0.00017697091971058398, 0.012699950486421585, -0.0015504165785387158, -0.0031515704467892647, 0.005616235081106424, 0.006990046706050634, -0.020888179540634155, 0.004308772273361683, 7.513031596317887e-05, 0.0004590754979290068, 0.001552367932163179, 0.03506341576576233, -0.0005156671977601945, -0.012411138042807579, -0.03106687404215336, -0.0007532545714639127, -0.006022133864462376, -0.011919375509023666, 0.0015845666639506817, -0.014120596460998058, 0.0009786455193534493, -0.0018099576700478792, 0.018640123307704926, 0.018187390640378, -0.006428032647818327, 0.004862980451434851, -0.010178694501519203, -0.03375205025076866, -0.015385127626359463, 0.008719019591808319, -0.008398983627557755, -0.03453262522816658, -0.03646844998002052, 0.029989680275321007, -0.0197953749448061, -0.015494408085942268, -0.020248107612133026, 0.019951488822698593, -0.007918930612504482, -0.012926316820085049, -0.017000917345285416, 0.025415511801838875, 0.019608037546277046, -0.018593288958072662, 0.03977808728814125, -0.0004917620681226254, -0.0016957985935732722, -0.02964622713625431, -0.019061634317040443, 0.003990688361227512, -0.0107016796246171, -0.04187002778053284, 0.007575477473437786, 0.015619300305843353, 0.005639652255922556, 0.009249810129404068, 0.022464940324425697, -0.003003261284902692, -0.013254158198833466, -0.009858658537268639, 0.005819184705615044, 0.007645729463547468, -0.004035571124404669, -0.010725096799433231, -0.015213401056826115, -0.0233704075217247, 0.021699976176023483, 0.016251565888524055, -0.023729471489787102, 0.013660057447850704, -0.0028432433027774096, 0.012442360632121563, -0.0035281977616250515, 0.0017016528872773051, -0.026695655658841133, -0.0022831810638308525, -0.017609765753149986, -0.0056630694307386875, -0.007212510332465172, 0.03977808728814125, -0.006318752188235521, -0.004980066791176796, -0.01321513019502163, 0.022636666893959045, 0.011653980240225792, -0.020138828083872795, -0.06950237601995468, -0.02268350124359131, 0.017250701785087585, -0.0016509154811501503, -0.009538622573018074, 0.0007405702490359545, -0.0034345288295298815, -0.0024646646343171597, -0.0006537313456647098, 0.02229321375489235, 0.010264557786285877, 0.03447017818689346, -0.002669565612450242, -0.011599340476095676, 0.007774524390697479, 0.0044180527329444885, 0.010639233514666557, 0.01801566407084465, 0.0010576787171885371, -0.01178667787462473, 0.0022090263664722443, -0.00038833593134768307, 0.02023249678313732, 0.004531236365437508, -0.0028022632468491793, -0.021216019988059998, -0.005268879234790802, 0.009226392954587936, -0.004457081668078899, 0.013527359813451767, -0.03111370839178562, -0.002123163314536214, 0.007036881055682898, -0.009374702349305153, 0.016142284497618675, 0.010498729534447193, -0.02243371680378914, 0.013043403625488281, -0.019592424854636192, 0.007950153201818466, 0.01640767976641655, 0.0024802761618047953, -0.004741991404443979, 0.001524072140455246, 0.028709538280963898, -0.016829190775752068, -0.018858684226870537, 0.009624485857784748, -0.01793760620057583, 0.01629840023815632, -0.004597585182636976, -0.013129266910254955, -0.021028682589530945, -0.040183987468481064, 0.005042512435466051, -0.017500484362244606, 0.0008157005649991333, 0.005237656179815531, -0.011974016204476357, -0.008555098436772823, -0.041901249438524246, 0.01993587799370289, -0.0092732273042202, 0.00676758261397481, 0.014791890978813171, 0.008516070432960987, 0.0205135028809309, 0.013831784017384052, 0.0007898440235294402, -0.021184798330068588, -0.010912434197962284, 0.0022831810638308525, -0.021637530997395515, 0.015026063658297062, 0.007399848196655512, -0.023745082318782806, 0.01049092411994934, -0.016532571986317635, -0.00025978501071222126, 0.030863923951983452, -0.017531707882881165, 0.008781465701758862, 0.005963590927422047, -0.010725096799433231, 0.00610799714922905, -0.034657515585422516, -0.011224664747714996, -0.013933259062469006, -0.0014216216513887048, -0.0027593316044658422, 0.01812494546175003, 0.013066820800304413, -0.013519554398953915, -0.008024307899177074, -0.004000445362180471, 0.017719045281410217, 0.007622312288731337, -0.04727160558104515, -0.0062641119584441185, 0.006947115063667297, 0.012567252852022648, 0.006599759217351675, -0.01528365258127451, -0.03521953150629997, 0.013324410654604435, -0.01164617482572794, -0.02386997453868389, 0.008125782944262028, -0.004839563276618719, 0.004948843736201525, 0.004609293770045042, -0.02293328568339348, -0.00021917074627708644, 0.012543835677206516, 0.03774859383702278, -0.009725960902869701, 0.016423292458057404, -0.009952327236533165, 0.022246379405260086, -0.016922859475016594, 0.0008776587201282382, -0.0003271095920354128, -0.02090379036962986, 0.024478822946548462, -0.017359981313347816, -0.011544699780642986, -0.021325301378965378, 0.0005703074275515974, 0.02190292626619339, -0.0003090588143095374, 0.013917647302150726, 0.004667836707085371, -0.031098097562789917, 0.0020490086171776056, -0.011974016204476357, 0.024962779134511948, 0.006502187345176935, -0.007501323241740465, 0.014417215250432491, 0.012926316820085049, -0.026773713529109955, -0.000833263504318893, -0.00203339708968997, 0.005046415608376265, -0.015564659610390663, 0.0060338424518704414, -0.013745920732617378, -0.004226812161505222, 0.0055772061459720135, -0.007282762322574854, 0.02204342931509018, 0.01321513019502163, 0.011560311540961266, 0.007704272400587797, 0.028569035232067108, -0.031222987920045853, -0.03462629392743111, -0.026586374267935753, 0.0060767740942537785, -0.004738088697195053, 0.01457333005964756, -0.00968693196773529, -0.021091129630804062, 0.01662624068558216, -0.014245488680899143, -0.005819184705615044, 0.004621002357453108, -0.01557246595621109, 0.004082405939698219, -0.012848259881138802, 0.014300128445029259, -0.06079115718603134, -0.008921968750655651, -0.02554040402173996, 0.009546428918838501, -0.008235063403844833, 0.035406868904829025, -0.010334809310734272, 0.0335334911942482, 0.0021036488469690084, 0.018327893689274788, -0.006080676801502705, -0.024353930726647377, -0.019342642277479172, 0.0062055690214037895, 0.00729447090998292, -0.023386018350720406, -0.03184744715690613, 0.004964455030858517, -0.008398983627557755, 0.01537732221186161, 0.01898357644677162, -0.021278467029333115, -0.024915944784879684, -0.006006522569805384, -0.010100636631250381, -0.003932144958525896, -0.01987343281507492, 0.02229321375489235, -0.029052991420030594, -0.013238547369837761, 0.013254158198833466, -0.0070017552934587, -0.011107577942311764, 0.0028920292388647795, 0.01064703892916441, -0.013496137224137783, 0.029833566397428513, -0.008438012562692165, 0.021387746557593346, -0.006771485786885023, -0.012278440408408642, -0.00775110675022006, -0.008469236083328724, -0.01679796725511551, -0.005264976527541876, -0.02357335574924946, 0.00582308741286397, -0.012988762930035591, -0.0013845444191247225, -0.02357335574924946, 0.01494800578802824, 0.027585510164499283, 0.02490033395588398, -0.015065091662108898, -0.00081618846161291, 0.028959322720766068, 0.0060611627995967865, -0.0033057339023798704, 0.0034930717665702105, 0.022480551153421402, -0.027023496106266975, 0.018078111112117767, 0.022386882454156876, 0.00473418552428484, 0.0017240943852812052, 0.007548157591372728, -0.006517798639833927, 0.03003651462495327, 0.02418220415711403, -0.009390314109623432, -0.006365587003529072, 7.988694414962083e-05, 0.01512753777205944, -0.01840595155954361, -0.02386997453868389, -0.016360845416784286, 0.01453430112451315, -0.010771931149065495, 0.010974880307912827, 0.00415656017139554, 0.010740707628428936, -0.008391178213059902, -0.0011445176787674427, 5.241437247605063e-05, 0.015135344117879868, 0.014815308153629303, 0.016033004969358444, -0.023354794830083847, 0.008851717226207256, 0.004328286740928888, 0.004421955905854702, 0.040152762085199356, -0.003130104625597596, 0.011763260699808598, -0.008024307899177074, 0.016142284497618675, 0.009359090588986874, -0.009210781194269657, -0.030832700431346893, -0.007247636094689369, -0.002205123659223318, 0.0003205234825145453, 0.00857851654291153, -0.018421562388539314, -0.016579406335949898, 0.004363412503153086, 0.011919375509023666, -0.041214343160390854, -0.011279304511845112, 0.0038053018506616354, 0.01687602512538433, -0.027772847563028336, -0.0038521362002938986, 0.009000026620924473, 0.005682583898305893, 0.006428032647818327, -0.022246379405260086, -0.005405480042099953, 0.01679796725511551, -0.002571993740275502, -0.010568981990218163, 0.01976415142416954, 0.003317442489787936, -0.008570710197091103, 0.0059752995148301125, -0.01237991452217102, 0.0013786901254206896, 0.008555098436772823, -0.00025319893029518425, 0.021606307476758957, -0.007821358740329742, -0.02850658819079399, -0.00038540875539183617, 0.0032549966126680374, -0.01640767976641655, 0.005776253063231707, -0.00028100688359700143, 0.007700369693338871, -0.004179977811872959, 0.005908950697630644, -0.002950572408735752, -0.01296534575521946, -0.006978338118642569, -0.0003288170846644789, -0.009257616475224495, -0.005643554963171482, 0.0037096813321113586, 0.09148335456848145, 6.616590690100566e-05, 0.011349556036293507, 0.004648322239518166, -0.009718155488371849, -0.00573332142084837, -0.022995730862021446, 0.026445871219038963, 0.010608009994029999, -0.0019680240657180548, -0.010857794433832169, -0.03609377518296242, 0.003229627851396799, 0.0006634885212406516, -0.028990544378757477, 0.0052298507653176785, 0.019639259204268456, 0.018327893689274788, 0.011248081922531128, 0.0017650745576247573, 0.0034364801831543446, -0.005596720613539219, -0.011638369411230087, 0.0007903319201432168, -0.0029778925236314535, 0.002341724233701825, -0.005908950697630644, 0.01593152992427349, 0.002911543706431985, 0.03384571895003319, -0.005198627710342407, -0.009874270297586918, -0.008617544546723366, -0.013566388748586178, -0.0009269324946217239, 0.01776587963104248, -0.008773659355938435, -0.005276685114949942, 0.01264531072229147, 0.021481415256857872, 0.002999358344823122, 0.012902899645268917, 0.024744218215346336, 0.01887429691851139, 0.0023807529360055923, 0.003990688361227512, 0.02803824469447136, -0.00017087267769966274, 0.005397674161940813, 0.016860414296388626, -0.02154386229813099, -0.019639259204268456, -0.01629840023815632, 0.008828300051391125, 0.011279304511845112, -0.0214033592492342, 0.014292323030531406, -0.0026090710889548063, 0.017750268802046776, 0.0022714724764227867, 0.007540351711213589, -0.008617544546723366, -0.030130183324217796, -0.03693679720163345, -0.004016057122498751, 0.0002607607457321137, 0.0073491111397743225, -0.012980957515537739, 0.01286387164145708, -0.005073735490441322, -0.006771485786885023, 0.021668754518032074, 0.014190847985446453, -0.012333080172538757, -0.0073217907920479774, 0.04052744060754776, -0.007122744340449572, 0.007388139609247446, 0.011513477191329002, 0.007169578690081835, -0.005069832783192396, -0.007173481862992048, -0.004492207430303097, -0.009725960902869701, -0.0023846556432545185, -0.0201544389128685, 0.010459701530635357, -0.009109307080507278, 0.010561175644397736, -0.006470964290201664, -0.008047725073993206, 0.009140529669821262, 0.010053802281618118, -0.009007832035422325, 0.016719911247491837, -0.005159598775207996, 0.0019280195701867342, -0.004328286740928888, 0.018999189138412476, -0.00534303393214941, 0.017609765753149986, 0.01084218267351389, 0.0018265448743477464, 0.01007721945643425, -0.004956649616360664, -0.0016938471235334873, 0.0141830425709486, 0.009187364019453526, -0.014206459745764732, 0.002324161119759083, -0.0070954239927232265, 0.016282789409160614, -0.004160463344305754, 0.0075091286562383175, -0.012169159948825836, -0.007228122092783451, 0.01401912234723568, -0.005093249958008528, -0.024822276085615158, -0.019561203196644783, -0.003865796374157071, -0.016563795506954193, 0.004137046169489622, -0.0021485318429768085, -0.0020490086171776056, -0.006603661924600601, -0.01604861579835415, -0.014409408904612064, -0.0060338424518704414, -0.004078502766788006, 0.02351091057062149, -0.004660030826926231, 0.027117164805531502, -0.0205135028809309, 0.007700369693338871, 0.012973152101039886, 0.021091129630804062, -0.008039919659495354, 0.021746812388300896, -0.0047732144594192505, 0.004866883158683777, 0.014401603490114212, -9.3836670203018e-06, 0.005585012026131153, 0.015783220529556274, 0.012723367661237717, 0.0009264445980079472, -0.01353516522794962, 0.022745946422219276, -0.003003261284902692, 0.009398119524121284, -0.031379103660583496, -0.005842601880431175, -0.02265227772295475, -0.004640516825020313, 0.01301998645067215, -0.021559473127126694, 0.011755455285310745, 0.007918930612504482, -0.009733766317367554, -0.0007025172235444188, -0.00956204067915678, 0.00017733681306708604, -0.0008196034468710423, -0.0064514498226344585, 0.00814920011907816, 0.021965373307466507, 0.022059042006731033, 0.026164865121245384, -0.0022831810638308525, -0.006990046706050634, 0.011419808492064476, -0.004714671056717634, -0.018593288958072662, -0.019670482724905014, -0.025275008752942085, 0.01401912234723568, 0.0016596970381215215, -0.01615789718925953, 0.02461932599544525, -0.010233334265649319, 0.008851717226207256, 0.022745946422219276, -0.0015201692003756762, 0.013168295845389366, -0.013300993479788303, 0.00439853873103857, -0.00021551179816015065, -0.003877504961565137, 0.011045131832361221, -0.009967938996851444, 0.03078586608171463, -0.00950739998370409, 0.0015435864916071296, -0.017609765753149986, -0.0030208241660147905, 0.0062641119584441185, 0.02543112449347973, 0.014276711270213127, -0.0009786455193534493, -0.020419834181666374, 0.021559473127126694, 0.01264531072229147, 0.010389449074864388, 0.017469262704253197, 0.0025563822127878666, 0.002452956046909094, -0.019592424854636192, -0.014627969823777676, 0.005811378825455904, -0.042681824415922165, -0.018312282860279083, 0.014620164409279823, 0.005592817906290293, -0.011771067045629025, 0.02436954341828823, -0.007770621217787266, -0.01415962539613247, 0.018562067300081253, -0.002628585323691368, 0.00407460005953908, 0.01343369111418724, -0.001454796176403761, -0.003495023353025317, 0.008071142248809338, 0.014635776169598103, -0.003949707839637995, 0.027491841465234756, 0.0256809089332819, 0.005487440153956413, 0.015189983882009983, -0.014830919913947582, -0.0049761636182665825, 0.019529979676008224, 0.009827435947954655, 0.005866019055247307, 0.028865652158856392, -0.020060770213603973, 0.028740761801600456, -0.0061353170312941074, -0.014620164409279823, 0.019748540595173836, 0.009085889905691147, 0.01068606786429882, -0.0004115092451684177, -0.016314011067152023, -0.01145103108137846, -0.0025017419829964638, 0.012372109107673168, -2.9744165658485144e-05, 0.013972287066280842, -0.003939950838685036, -0.019358253106474876, 0.0201544389128685, 0.0005825038533657789, 0.004648322239518166, 0.004336092621088028, -0.008656573481857777, 0.013222935609519482, -0.012543835677206516, -0.011529088951647282, 0.008945385925471783, 0.007778427097946405, -0.0032979282550513744, 0.014784085564315319, 0.031082484871149063, -0.009499594569206238, 0.004468790255486965, -0.003680409863591194, 0.009569846093654633, 0.007794038392603397, -0.004570264834910631, 0.01337905041873455, 0.006966629531234503, -0.003742855740711093, 0.013527359813451767, 0.013800561428070068, 0.009140529669821262, 0.009085889905691147, 0.007626214995980263, -0.004558556247502565, -0.005772349890321493, -0.011919375509023666, -0.011162218637764454, -0.004464887548238039, -0.030598528683185577, -0.005721612833440304, 0.003873602021485567, 0.0010479215998202562, 0.015463185496628284, 0.0005454265628941357, -0.009671321138739586, 0.0217624232172966, 0.011763260699808598, 0.005760641302913427, -0.00227342383004725, 0.0006532434490509331, 0.002630536677315831, 0.021731199696660042, 0.008453624323010445, 0.003723341505974531, -0.0011503719724714756, -0.00974157266318798, -0.00516350194811821, 0.009913299232721329, 0.0022441523615270853, 0.028100689873099327, -0.01013186015188694, 0.005581109318882227, 0.01815616711974144, -0.011013909243047237, -0.007216413039714098, 0.00388335925526917, 0.008875134401023388, -0.0041448515839874744, 0.026804935187101364, -0.014776279218494892, 0.017313146963715553, 0.013878618367016315, 0.009476177394390106, -0.013277576304972172, 0.026836158707737923, -0.014417215250432491, -0.004222908988595009, 0.008352149277925491, 0.017094586044549942, 0.013386856764554977, -0.005097152665257454, -0.01084218267351389, -0.01754731871187687, 0.006209471728652716, 0.0019143595127388835, -0.015697358176112175, -0.005249364767223597, -0.008789271116256714, -0.0022812297102063894, -0.00911711249500513, -0.0025075962767004967, -0.015150954946875572, 0.016579406335949898, -0.008625350892543793, 0.005101055838167667, 0.0020860859658569098, -0.023729471489787102, 0.0039087277837097645, 0.02892809920012951, 0.021091129630804062, -0.024775441735982895, 0.0008357028127647936, 0.023448463529348373, 0.0011113432701677084, -0.011279304511845112, -0.004503916017711163, -0.008110171183943748, -0.019342642277479172, -0.016938472166657448, 0.005526469089090824, 0.002771040191873908, -0.00535083981230855, -0.01146664284169674, -0.027382561936974525, 0.017968829721212387, -0.008929775096476078, -0.01314487773925066, -0.003824816085398197, 0.010038190521299839, -0.00836776103824377, 0.009671321138739586, -0.019670482724905014, 0.013066820800304413, -0.004944941028952599, -0.03528197854757309, -0.007809650152921677, 0.0010001113405451179, -0.007575477473437786, -0.015900306403636932, -0.007532545831054449, -0.009913299232721329, -0.00039272665162570775, 0.0034052571281790733, 0.05407821759581566, -0.004148754756897688, 7.927711703814566e-05, 0.0027788460720330477, 0.01604861579835415, -0.005339131224900484, 0.007477905601263046, 0.023026954382658005, -0.015494408085942268, 0.020966237410902977, -0.015018257312476635, 0.031738169491291046, 0.004519527778029442, -0.006275820545852184, 0.013816172257065773, 0.010147470980882645, -0.011755455285310745, 0.003178890561684966, 0.012481389567255974, -0.01887429691851139, -0.003013018285855651, 0.008625350892543793, 0.0028725150041282177, 0.0015123635530471802, 0.00875804852694273, -0.02390119805932045, 0.02165314182639122, 0.023823140189051628, 0.02436954341828823, -0.009359090588986874, 0.009788407012820244, 0.0061197057366371155, -0.01475286204367876, -0.0017387302359566092, 0.018187390640378, -0.006728554144501686, 0.026242921128869057, -0.02165314182639122, 0.015915919095277786, 0.014627969823777676, 0.01951436698436737, -0.012801425531506538, 0.016938472166657448, -0.0028822722379118204, 0.014362574554979801, 0.014128402806818485, 0.037405140697956085, 0.004222908988595009, -0.015213401056826115, -0.017984440550208092, -0.00993671640753746, -0.008750242181122303, -0.0011864735279232264, -0.0006020182627253234, -0.010186499916017056, 0.008984414860606194, 0.010045996867120266, -0.025634072721004486, 0.003013018285855651, 0.016095450147986412, -0.031550828367471695, -0.012122325599193573, -0.0006717821233905852, -0.019920267164707184, -0.0002595410915091634, -0.005709904246032238, 0.005011289846152067, 0.031519606709480286, -0.006428032647818327, 0.002452956046909094, -0.001366981421597302, 0.016969693824648857, 0.027913352474570274, 0.016829190775752068, -0.016360845416784286, -0.010241140611469746, -0.008914163336157799, -0.0023397726472467184, 0.022855227813124657, -0.028584646061062813, -0.006123608443886042, 0.0017943461425602436, 0.012934123165905476, 0.005612332373857498, -0.0008932701894082129, -0.018686959519982338, 0.017422428354620934, -0.001102561829611659, -0.014565524645149708, 0.010038190521299839, -0.00781355332583189, 0.01912408135831356, 0.004878591746091843, -0.010670456103980541, -0.015541242435574532, 0.015978364273905754, 0.01300437469035387, 0.027585510164499283, 0.008164811879396439, -0.010014773346483707, -0.003290122374892235, 0.006303140893578529, 0.001707507180981338, 0.004503916017711163, 0.02326112613081932, -0.0025934595614671707, 0.003457946004346013, 0.024588104337453842, 0.00888293981552124, 0.02001393586397171, 0.009718155488371849, 0.005557692144066095, 0.008430207148194313, -0.00392043637111783, -0.009062472730875015, 0.00738423690199852, 0.0020977945532649755, 0.018718181177973747, 0.004929329268634319, -0.010100636631250381, 0.0030891243368387222, 0.007805746980011463, -0.0014011316234245896, 0.008430207148194313, 0.005292296409606934, -0.00047346734208986163, -0.00831312034279108, 0.0024275872856378555, 0.02525939792394638, 0.0035711294040083885, 0.01954559050500393, 0.00487078633159399, -0.005955785047262907, -0.0011181732406839728, -0.008016502484679222, 0.012512613087892532, 0.034876078367233276, 0.02936522103846073, 0.012473584152758121, -0.003982882481068373, -0.006240694783627987, -0.01225502323359251, -0.005050318315625191, 0.02123163267970085, -0.010428478009998798, -0.009249810129404068, 0.02440076507627964, -0.010865599848330021, 0.005428897216916084, -0.005339131224900484, -0.011037326417863369, -0.0005229850648902357, 0.015330487862229347, 0.002905689412727952, 0.011497865431010723, 0.004738088697195053, 0.02151263877749443, 0.0025700421538203955, 0.041432905942201614, -0.0062211803160607815, 0.003061804221943021, 0.0017582445871084929, 0.007559866178780794, -0.0016860413597896695, 0.008227257058024406, -0.0037955446168780327, -0.010147470980882645, 0.03306514397263527, -0.005186919122934341, 0.008945385925471783, -0.021059906110167503, 0.007989182136952877, 0.0370929092168808, 0.0157910268753767, 0.026851769536733627, -0.013418079353868961, 0.0008674136479385197, 0.010100636631250381, 0.008617544546723366, 0.009616680443286896, 0.0007156894425861537, -0.01401912234723568, -0.007177384570240974, 0.002774943131953478, -0.005624040961265564, -0.003329151077196002, 0.00182361772749573, -0.008601933717727661, 0.0049020093865692616, 0.04449275881052017, -0.01514314953237772, 0.011856930330395699, -0.01319951843470335, 0.018718181177973747, 0.02429148554801941, -0.0036101581063121557, -0.004152657464146614, -0.014401603490114212, 0.013894230127334595, -0.016641853377223015, -0.004355607088655233, -0.027554286643862724, -0.03147277235984802, 0.013410273939371109, -0.008086754009127617, 0.026836158707737923, 0.005339131224900484, 0.004113628529012203, 0.019436310976743698, -0.028022632002830505, 0.017750268802046776, 0.002870563417673111, -0.018827462568879128, -0.0107016796246171, 0.014971422962844372, 0.009156141430139542, -0.004800534341484308, -0.020810121670365334, -0.026882993057370186, -0.026945440098643303, -0.011224664747714996, 0.011146606877446175, 0.014120596460998058, 0.008180422708392143, -0.001130857621319592, 0.005385965574532747, -0.004515624605119228, -0.02725766971707344, 0.001108416123315692, -0.005288393702358007, 0.014315740205347538, 0.020950624719262123, 0.014151819981634617, -0.009515205398201942, 0.01593152992427349, 0.0006386077147908509, 0.003975076600909233, 0.005495246034115553, 0.028022632002830505, 0.005401576869189739, 0.002162192016839981, -0.0021446291357278824, 0.0015094364061951637, -0.0022909867111593485, -0.010459701530635357, -0.00227342383004725, -0.018843073397874832, -0.000287349073914811, 0.012653116136789322, 0.004390732850879431, -0.014971422962844372, -0.0009591311682015657, -0.0010284071322530508, -0.022480551153421402, 0.022839616984128952, -0.01773465797305107, -0.007540351711213589, -0.002212929306551814, 0.020419834181666374, 0.0008825372788123786, -0.0011240275343880057, -0.012668727897107601, -0.004847369156777859, 0.028834430500864983, 0.0037721272092312574, -0.01654818467795849, 0.005296199582517147, -0.006728554144501686, 0.01573638617992401, -0.005042512435466051, -0.02543112449347973, 0.01762537658214569, -0.00838337279856205, 0.014627969823777676, 0.016782356426119804, -0.019717317074537277, -0.010420672595500946, -0.02426026202738285, 0.018562067300081253, -0.019529979676008224, -0.0055772061459720135, -0.022059042006731033, 0.013956676237285137, 0.013987898826599121, -0.0029798438772559166, -0.00038467696867883205, 0.01823422499001026, 0.012918511405587196, -0.003971173893660307, 0.008078948594629765, -0.008375566452741623, -0.004578070715069771, -0.0004085820692125708, -0.000923029612749815, -0.005140084307640791, 0.006193860433995724, -0.015049480833113194, -0.027694791555404663, 0.0028783692978322506, -0.03475118800997734, 0.001310389838181436, 0.0008937580278143287, -0.008719019591808319, -0.021137963980436325, -1.27376988530159e-05, 0.00907808355987072, 0.009039055556058884, 0.009054666385054588, 0.00964790303260088, -0.0003322320990264416, -0.012372109107673168, -0.020216885954141617, -0.02162192016839981, -0.01512753777205944, 0.00025002783513627946, 0.008157005533576012, -0.005893338937312365, 0.00415656017139554, -0.0070524923503398895, -0.005838698707520962, -0.029271552339196205, 0.007165675982832909, -0.014674805104732513, -0.012403332628309727, 0.006880766246467829, -0.026196086779236794, 0.008656573481857777, -0.0019846111536026, 0.011099772527813911, -0.008851717226207256, -0.001314292661845684, -0.011958404444158077, -0.00879707746207714, -0.004047279711812735, -0.005526469089090824, -0.010998297482728958, 0.014495272189378738, -0.009999162517488003, -0.005101055838167667, -0.00444927578791976, 0.012801425531506538, -0.00831312034279108, -0.016844801604747772, 0.0024158786982297897, 0.004406344145536423, -0.01380836684256792, -0.01659501902759075, 0.009546428918838501, -0.012684338726103306, 0.022168321534991264, 0.011677397415041924, 5.924440119997598e-05, 0.004094114527106285, -0.0009874269599094987, -0.008640961721539497, -0.0015123635530471802, 0.015869084745645523, -0.016423292458057404, 0.0060611627995967865, -0.004987872205674648, -0.004367315676063299, -0.041214343160390854, -0.009991356171667576, 0.01200523879379034, 0.015400739386677742, -0.013066820800304413, 0.00016257907554972917, 0.013863006606698036, -0.01550221350044012, 0.017219478264451027, -0.020997459068894386, -0.006111899856477976, 0.008438012562692165, -0.0013708843616768718, 0.007454488426446915, -0.016423292458057404, 0.014760667458176613, -0.003651138162240386, 0.01718825474381447, 0.016688687726855278, 0.018187390640378, 0.01301998645067215, 0.001613838248886168, 0.009109307080507278, 0.0008142369915731251, 0.019826598465442657, 0.0030227755196392536, -0.008773659355938435, -0.009124918840825558, 0.02062278427183628, -0.0026500511448830366, -0.00974157266318798, -0.014869947917759418, -0.0063070436008274555, -0.00014879705850034952, -0.011950599029660225, 0.019951488822698593, -0.0021153574343770742, 0.0021875605452805758, 0.024994002655148506, -0.008000890724360943, 0.02001393586397171, -0.027085943147540092, 0.023963643237948418, -0.02750745229423046, -0.012387720867991447, 0.048926424235105515, 0.030660975724458694, 0.013176101259887218, -0.017453650012612343, 0.010545564815402031, 0.003229627851396799, -0.024244651198387146, -0.00017587323964107782, 0.03812326863408089, -0.005842601880431175, 0.01673552207648754, -0.015424156561493874, 0.004445373080670834, -0.012036462314426899, -0.0070524923503398895, -0.0010518244234845042, 0.009850853122770786, -0.014104984700679779, -0.010405060835182667, 0.01557246595621109, -0.002019737148657441, 0.022886451333761215, 0.005339131224900484, -0.007130550220608711, 0.002776894485577941, 0.018078111112117767, -0.02062278427183628, 0.02767917886376381, 0.011888152919709682, -0.0023222097661346197, 0.008656573481857777, -0.00838337279856205, -0.009218587540090084, 0.00889855157583952, -0.017562931403517723, -0.005101055838167667, 0.024104146286845207, 0.015447573736310005, -0.012871677055954933, 0.005393771454691887, 0.0030247271060943604, -0.014058150351047516, -0.005971396341919899, -0.0052064331248402596, 0.03462629392743111, -0.006658302154392004, -0.006728554144501686, 0.021949760615825653, 0.001477237674407661, -0.01205987948924303, -0.0029310579411685467, 0.011029521003365517, -0.00676758261397481, -0.021590696647763252, 0.008836105465888977, -0.022886451333761215, 0.0017582445871084929, 0.009975744411349297, -0.006353877950459719, -0.015978364273905754, 0.004578070715069771, -0.01143541932106018, -0.008843911811709404, -0.015954947099089622, -0.003149618860334158, 0.018281059339642525, -0.008032114244997501, -0.0014655289705842733, -0.012348691932857037, 0.017000917345285416, 0.005300102289766073, 0.0008147248299792409, 0.0019280195701867342, -0.00993671640753746, 0.005124473012983799, 0.005491343326866627, 0.004999581258744001, 0.003649186808615923, 0.013870812952518463, -0.022667890414595604, 0.013355633243918419, 0.004051182884722948, -0.00610799714922905, -0.009733766317367554, -0.004905912093818188, -0.01181009504944086, 0.005276685114949942, 0.022480551153421402, -0.006057259626686573, 0.008000890724360943, 0.012723367661237717, 0.004757602699100971, -0.011872541159391403, 0.022168321534991264, -0.0042580352164804935, 0.010389449074864388, 0.0027085943147540092, 0.021668754518032074, -0.01518217846751213, 0.002443198813125491, 0.027601122856140137, -0.002952523762360215, -0.003779933089390397, 0.008570710197091103, 0.00785648450255394, -0.0044180527329444885, 0.012270634062588215, -0.0022343951277434826, 0.016345234587788582, -0.002449053106829524, 0.020279331132769585, -0.0036257696337997913, -0.01475286204367876, 0.0015026063192635775, -0.0009283960680477321, -0.0056474581360816956, -0.004117531701922417, 0.000818139873445034, -0.023479687049984932, 0.01876501552760601, -0.026164865121245384, -0.003372082719579339, -0.007981376722455025, 0.031628888100385666, -0.013285381719470024, -0.01243455521762371, -0.00040467921644449234, 0.0009566918597556651, 0.00516350194811821, 0.0001300144795095548, -0.002806166186928749, -0.023214291781187057, -0.004406344145536423, -0.011037326417863369, -0.011091967113316059, -0.0009518133010715246, 0.0069939494132995605, 0.018281059339642525, -0.003569177817553282, 0.0052064331248402596, -0.030458025634288788, 0.012692145071923733, 0.006775388494133949, -0.013285381719470024, 0.025150116533041, -0.004476596135646105, 0.006642690859735012, -0.0036160124000161886, -0.015861278399825096, 0.0068495431914925575, 0.017032140865921974, -0.01576760970056057, -0.011365167796611786, 0.010756319388747215, 0.029224717989563942, 0.009811824187636375, 0.009663514792919159, -0.028974933549761772, -0.0073491111397743225, 0.012699950486421585, -0.003957513719797134, -0.014729444868862629, 0.004855174571275711, 0.0049605523236095905, 0.014479661360383034, 0.005424994044005871, -0.010522146709263325, 0.0055615948513150215, 0.014729444868862629, 0.001778734615072608, -0.00610019126906991, -0.011287109926342964, -0.013582000508904457, -0.013043403625488281, -0.0022265894804149866, -0.025462348014116287, 0.007271053269505501, -0.027164001017808914, 0.010904628783464432, 0.009913299232721329, 0.0019348495407029986, -0.009640097618103027, 0.0021543861366808414, -0.0028881265316158533, 0.008601933717727661, 0.00818822905421257, 0.024135369807481766, 0.020732063800096512, 0.031488385051488876, 0.020716452971100807, -0.032190900295972824, -0.002536867745220661, -0.013792755082249641, 0.005869921762496233, -0.0008459478267468512, -0.01314487773925066, 0.025337455794215202, -0.004183880519121885, 0.004956649616360664, 0.004835660569369793, -0.004753699991852045, -0.007727689575403929, 0.019889043644070625, -0.03334615007042885, -0.01082657091319561, -0.012418943457305431, -0.014487466774880886, -0.007192995864897966, -0.013886423781514168, -0.001872403547167778, 0.0022519580088555813, 0.009624485857784748, 0.005764544475823641, -0.005549886263906956, -0.0014011316234245896, 0.025353066623210907, -0.007883804850280285, 0.016470126807689667, 0.0032140163239091635, -0.013441496528685093, 0.0004134606570005417, 0.005643554963171482, -0.030614139512181282, 0.007985278964042664, -0.016392068937420845, 0.0003461361047811806, -0.033627159893512726, 0.0028237290680408478, -0.006467061582952738, -0.001589445280842483, 0.008547293022274971, 0.017078975215554237, -0.006931503303349018, 0.0035281977616250515, -0.008032114244997501, 0.013316604308784008, -0.022215155884623528, 0.0009352260967716575, 0.007548157591372728, -0.010810960084199905, -0.002765185898169875, -0.007329596672207117, 0.0011318332981318235, -0.012731174007058144, -0.004757602699100971, -0.013691280968487263, 0.020732063800096512, -0.025743354111909866, -0.03200356289744377, 0.013995704241096973, -0.025150116533041, 0.01848400942981243, -0.01343369111418724, 0.016142284497618675, 0.02023249678313732, -0.0033603741321712732, -0.0016762842424213886, -0.0010918289190158248, -0.00425413204357028, -0.006568536162376404, 0.009062472730875015, -0.015588076785206795, 0.014901171438395977, -0.007395945489406586, -0.008867328986525536, -0.024853499606251717, -0.00023868511198088527, 0.011177829466760159, 0.00037418800638988614, 0.012614087201654911, -0.00030271662399172783, 0.00392043637111783, 0.01698530651628971, 0.02162192016839981, 0.009249810129404068, 0.005210336297750473, 0.009921104647219181, -0.010366031900048256, -0.01082657091319561, 0.015939336270093918, -0.005471828859299421, 0.021824868395924568, -0.015346098691225052, 0.0028783692978322506, 0.0022363464813679457, 0.020216885954141617, 0.007965764962136745, 0.013933259062469006, -0.006728554144501686, -0.005311810877174139, 0.02237127162516117, -0.005304004997014999, -0.02201220765709877, -0.015634911134839058, 0.001153299119323492, -0.011817901395261288, -0.00676758261397481, -0.012848259881138802, 0.008266285993158817, -0.02992723509669304, 0.009601068682968616, 0.0010342615423724055, -0.012582864612340927, -0.017500484362244606, -0.006404615473002195, 0.003914582077413797, 0.007528643123805523, 0.041214343160390854, 0.0009488861542195082, 0.01601739227771759, -0.0005703074275515974, -0.0007581331883557141, 0.026055583730340004, -0.010319197550415993, -0.02825680561363697, 0.023307960480451584, 0.010818765498697758, -0.0016050568083301187, 0.0007849654648452997, 0.020950624719262123, -0.00175239029340446, 0.014666998758912086, 0.0005800646031275392, 0.004347801208496094, 0.0021660947240889072, -0.015463185496628284, -0.018702570348978043, -0.0005873824702575803, -0.010209917090833187, 0.00515569606795907, -0.008609739132225513, -0.005979202222079039, 0.011029521003365517, 0.011997433379292488, -0.011458836495876312, -0.004012153949588537, 0.023448463529348373, -0.020029546692967415, -0.0030149698723107576, 0.026633208617568016, 0.015080703422427177, -0.006268015131354332, 0.005382062867283821, 0.008672185242176056, 0.028990544378757477, 0.005799670238047838, -0.01089682336896658, 0.009952327236533165, 0.00505812419578433, 0.006428032647818327, 0.0060767740942537785, -0.016673075035214424, 0.015299264341592789, 0.004062891472131014, 0.01904602348804474, 0.021699976176023483, 0.013675669208168983, -0.009249810129404068, -0.020575949922204018, 0.011224664747714996, -0.005651360843330622, 0.011802289634943008, 0.008750242181122303, -0.0037038270384073257, -0.01550221350044012, -0.011700814589858055, 0.012176965363323689, 0.019170915707945824, -0.02742939628660679, -0.0029037378262728453, -0.009226392954587936, 0.007251539267599583, -0.016610629856586456, 0.017438039183616638, 0.014503078535199165, -0.004702962469309568, 0.0057060010731220245, 0.010709485039114952, 0.016079839318990707, 0.007025172468274832, 0.017110196873545647, 0.003235482145100832, -0.013683474622666836, -0.011123189702630043, -0.015018257312476635, -0.029942845925688744, -0.0008981488063000143, 0.009858658537268639, -0.0016460369806736708, 0.009179558604955673, 0.009772795252501965, -0.00036589440423995256, 0.01145103108137846, -0.03849794343113899, -0.01480750273913145, -0.0070954239927232265, 0.012551641091704369, -0.0076691466383636, 0.02129407785832882, 0.010834377259016037, -0.007228122092783451, -0.010951463133096695, -0.007532545831054449, -0.010334809310734272, 0.02401047758758068, -0.0140035105869174, -0.003910679370164871, 0.0008591200457885861, 0.013644445687532425, -0.006947115063667297, 0.00354966358281672, -0.013441496528685093, 0.002597362268716097, 0.020732063800096512, -0.009952327236533165, 0.007704272400587797, 0.017313146963715553, 0.014596747234463692, -0.020466668531298637, 0.023588968440890312, 0.024385154247283936, -0.008679990656673908, -0.001499679172411561, -0.005225947592407465, 0.018343506380915642, -0.008781465701758862, -0.019451921805739403, -0.026976661756634712, 0.00026783469365909696, 0.016204731538891792, -0.017703434452414513, -0.006400712765753269, 0.018686959519982338, 0.0048161461018025875, 0.008000890724360943, 0.02806946635246277, 0.016954082995653152, -0.015346098691225052, -0.0062914323061704636, 0.006443644408136606, 0.01011624839156866, 0.007153967395424843, 0.019327029585838318, 0.010990492068231106, -0.003791641676798463, 0.004851271864026785, -0.029911622405052185, -0.016392068937420845, -0.020747676491737366, 0.008258480578660965, 0.0019241166301071644, -0.018593288958072662, -0.012176965363323689, 0.00104109151288867, -0.004371218383312225, 0.02451004646718502, 0.015197789296507835, -0.008289703167974949, -0.029380831867456436, -0.016282789409160614, -0.00033150031231343746, -0.004219006281346083, -0.012091102078557014, 0.004285355098545551, 0.008672185242176056, -0.020435446873307228, 0.014565524645149708, 0.005756738595664501, 0.030473636463284492, -0.0041292402893304825, -0.021715588867664337, -0.010342614725232124, -0.002162192016839981, 0.009000026620924473, -0.008274092338979244, -0.007708175107836723, -0.010225528851151466, 0.022464940324425697, -0.005608429200947285, -0.021465804427862167, 0.01178667787462473, -0.006919794715940952, -0.0018548406660556793, -0.011599340476095676, -0.025462348014116287, 0.015892501920461655, 0.011318333446979523, 0.005990910809487104, 0.011755455285310745, -0.015361710451543331, 0.02190292626619339, 0.005756738595664501, -0.0077393981628119946, 0.00345599465072155, 0.0060182311572134495, 0.006541216280311346, -0.006080676801502705, -0.005983105394989252, -0.009374702349305153, 0.005467925686389208, 0.05039390176534653, -0.010405060835182667, 0.015447573736310005, -0.00378578738309443, -0.008734631352126598, -0.03200356289744377, 0.008633156307041645, -0.00024149029923137277, -0.014877754263579845, 0.003842378966510296, -0.008726825006306171, -0.029224717989563942, 0.02357335574924946, 0.020310554653406143, -0.009530817158520222, -0.014690415933728218, 0.017422428354620934, 0.012653116136789322, -0.000634704832918942, 0.011240275576710701, 0.01726631261408329, -0.012536030262708664, -0.013831784017384052, -0.004652225412428379, 0.006166540086269379, 0.007825261913239956, 0.004379024263471365, -0.008906357921659946, -0.0009825484594330192, 0.011934987269341946, 0.01164617482572794, 0.010209917090833187, -0.015213401056826115, 0.0015582222258672118, 0.009601068682968616, 0.01496361754834652, -0.0024510046932846308, 0.013987898826599121, 0.004109725821763277, 0.008469236083328724, -0.01102171465754509, -0.006833931431174278, 0.010069414041936398, 0.009788407012820244, -0.026804935187101364, 0.007879901677370071, 0.0026071195024996996, -0.0054327999241650105, -0.010483118705451488, 0.004207297693938017, 0.0019533883314579725, -0.026882993057370186, -0.012114519253373146, -0.01031139213591814, 0.010217723436653614, 0.013261964544653893, -0.00013757629494648427, 0.0044609843753278255, -0.011802289634943008, -0.0038092045579105616, -0.012941928580403328, 0.007700369693338871, 0.02636781334877014, 0.025634072721004486, -0.017422428354620934, -0.005042512435466051, -0.017172643914818764, -0.01951436698436737, 0.026945440098643303, 0.007922833785414696, 0.005323519464582205, -0.017531707882881165, 0.010818765498697758, -0.0167667455971241, -0.009960133582353592, -0.0031749876216053963, -0.03952830284833908, -0.00600261939689517, -0.020107604563236237, -0.0028920292388647795, -0.017438039183616638, -0.0030383870471268892, 0.011006103828549385, 0.0006288504810072482, -0.0061782486736774445, -0.022777169942855835, 0.008172617293894291, 0.027819683775305748, 0.0019738783594220877, -0.008359955623745918, -0.011443225666880608, -0.01776587963104248, -0.0019036266021430492, 0.01787516102194786, 0.00913272425532341, 0.0005888460436835885, -0.02703910879790783, 0.02168436534702778, 0.007107132580131292, -0.0028373890090733767, 0.003420868655666709, 0.007485711481422186, -0.0013016082812100649, -0.008679990656673908, 0.0008342392393387854, -0.019030410796403885, -0.0070524923503398895, 0.007969668135046959, -0.007310082204639912, 0.013925452716648579, 0.00657243886962533, 0.007415459956973791, -1.558862641104497e-05, 0.020638395100831985, -0.0013718600384891033, 0.01687602512538433, 0.018889907747507095, 0.008196034468710423, 0.019498756155371666, 0.00809455942362547, -0.00013038037286605686, 0.01787516102194786, 0.035438090562820435, -0.014432826079428196, -0.008960997685790062, -0.005120570305734873, 0.004113628529012203, 0.018827462568879128, -0.007833067327737808, 0.0007737446576356888, 0.0007405702490359545, -0.0058308932930231094, 0.02029494196176529, 0.01790638454258442, -0.023229902610182762, 0.0043751210905611515, 0.014815308153629303, -0.01178667787462473, 0.00652950769290328, -0.004367315676063299, -0.022340048104524612, 0.015307069756090641, 0.01453430112451315, 0.00378578738309443, 0.026242921128869057, -0.006845640484243631, -0.005869921762496233, 0.017250701785087585, 0.002390510169789195, 0.018530843779444695, 0.018577678129076958, -0.01496361754834652, -0.006997852120548487, 0.014760667458176613, -0.00581528153270483, 0.008625350892543793, -0.013113655149936676, 0.02376069501042366, -0.012387720867991447, 0.019717317074537277, 0.012153548188507557, 0.01237991452217102, 0.0013513700105249882, 0.003327199723571539, 0.017921995371580124, -0.0075091286562383175, -0.006303140893578529, 0.0006830028723925352, -0.013738115318119526, -0.008157005533576012, -0.0001836789888329804, -0.016111062839627266, -0.03306514397263527, 0.004515624605119228, -0.004535139072686434, 0.013074626214802265, -0.0009957206202670932, 0.0021465804893523455, -0.01314487773925066, 0.0038872621953487396, 0.0039009221363812685, -0.0002260007750010118, 0.03133226931095123, -0.010202111676335335, 0.007485711481422186, 0.0044609843753278255, -0.009039055556058884, 0.002324161119759083, -0.006424129940569401, 0.004289258271455765, -0.014292323030531406, 0.02004515938460827, -0.014331351965665817, 0.006556827574968338, -0.010740707628428936, -0.002585653681308031, -0.005167404655367136, -0.018031276762485504, -0.03478240966796875, -0.01532268151640892, 0.014666998758912086, 0.012106713838875294, 0.0026149253826588392, 0.014464049600064754], "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac": [-0.023491770029067993, -0.0145371463149786, -0.011261851526796818, 0.017376810312271118, -0.012302523478865623, -0.008293110877275467, 0.008176136761903763, 0.05405043438076973, -0.018586894497275352, 0.04023933783173561, 0.02531496435403824, -0.00655865715816617, 0.00632874108850956, -0.0034406729973852634, -0.00878521241247654, 0.0023536139633506536, -0.01590857468545437, 0.0051751271821558475, 0.019619500264525414, -0.055792953819036484, 0.07796169817447662, 0.0004152101755607873, -0.05805177986621857, 0.012286389246582985, 0.0006589917466044426, -0.02455664426088333, -0.01913546584546566, 0.009930758737027645, -0.025363367050886154, -0.011148910038173199, -0.0006978152669034898, -0.013673952780663967, 0.026331434026360512, -0.003932774066925049, 0.0014490759931504726, -0.019393617287278175, 0.03701244667172432, 0.035399001091718674, -0.043563034385442734, -0.01600538194179535, -0.020361686125397682, 0.05937480181455612, 0.018038323149085045, -0.010777818039059639, -0.041885051876306534, 0.008051094599068165, -0.029300175607204437, -0.012229918502271175, -0.014319331385195255, 0.003771429415792227, 0.009761346504092216, -0.004533782601356506, -0.038012780249118805, 0.03092975541949272, 0.020748913288116455, -0.06634488701820374, 0.04194958880543709, 0.07847800105810165, 0.026831602677702904, -0.04798387736082077, 0.026831602677702904, 0.004549916833639145, -0.0012463867897167802, -0.02218487858772278, 0.010705212131142616, -0.017086390405893326, -0.006227900739759207, 5.111345672048628e-05, -0.03147832676768303, 0.001581176882609725, 0.030655469745397568, 0.023959670215845108, -0.024927737191319466, -0.012681683525443077, 0.0012403364526107907, -0.016860507428646088, 0.04633816331624985, 0.001689076074399054, -0.003200673032552004, -0.022846391424536705, -0.008946556597948074, 0.00744605204090476, 0.022104207426309586, -0.023588577285408974, 0.07667094469070435, -0.00018819332763087004, -0.021878324449062347, -0.05840673670172691, -0.02049076184630394, -0.013738490641117096, -0.010455128736793995, 0.022830257192254066, -0.01703798770904541, -0.007801010273396969, -0.016699163243174553, 0.017183197662234306, -0.002484706463292241, 0.02970353700220585, -0.004791934043169022, -0.027460847049951553, -0.003236975520849228, 0.020200340077280998, -0.0033196646254509687, 0.0035919335205107927, -0.003297479823231697, 0.02039395458996296, 0.019990593194961548, 0.008381851017475128, -0.010923027992248535, 0.025556981563568115, 0.009285380132496357, -0.0633116140961647, -0.014125717803835869, 0.0012675633188337088, -0.05417950823903084, -0.01401277631521225, -0.03514084964990616, -0.014157986268401146, -0.021910592913627625, -0.028783872723579407, 0.0037371437065303326, 0.010955296456813812, 0.021055467426776886, -0.010495464317500591, -0.013577146455645561, 0.003944874741137028, 0.01255260780453682, 0.013464204967021942, 0.05082353949546814, -0.03130084648728371, 0.0031078997999429703, 0.020248744636774063, 0.04236908629536629, 0.021055467426776886, -0.002775126602500677, 0.010011430829763412, 0.06369883567094803, 0.07712270319461823, -0.029638998210430145, 0.04485379159450531, -0.07124976068735123, -0.031026562675833702, -0.014674289152026176, 0.017070256173610687, -0.024637317284941673, 0.0031583199743181467, -0.03336605802178383, 0.029735805466771126, -0.00585680827498436, 0.01797378621995449, -0.07208875566720963, -0.03972303494811058, -0.025992611423134804, -0.005146891809999943, 0.05576068535447121, -0.031236309558153152, -0.004553950857371092, 0.023394962772727013, -0.0514366514980793, 0.04253042861819267, 0.03543126955628395, -0.04443429782986641, 0.010019497945904732, 0.02792874537408352, 0.03833547234535217, 0.018038323149085045, 0.04717715457081795, 0.011632943525910378, -0.022426895797252655, 0.021184543147683144, 0.02300773561000824, -0.03401143476366997, 0.029606729745864868, -0.028186896815896034, -0.0069257160648703575, -0.000551596749573946, 0.06092371046543121, 0.01955496333539486, 0.020652106031775475, -0.03283362090587616, -0.026508914306759834, 0.012262187898159027, -0.030058493837714195, -0.003706891555339098, 0.01218151580542326, 0.008793279528617859, 0.002242689486593008, 0.04372438043355942, 0.01630386896431446, -0.009414455853402615, -0.020765047520399094, 0.006598993204534054, -0.007772774901241064, -0.019506558775901794, -0.0027166393119841814, -0.016489416360855103, 0.006631262134760618, -0.010011430829763412, 0.004332101903855801, 0.01997445896267891, -0.015505213290452957, -0.055470265448093414, -0.05721278488636017, 0.04127194359898567, 0.005901177879422903, -0.004908908624202013, 0.009906556457281113, -0.039593957364559174, 0.02249143458902836, -0.01849008910357952, 0.034334126859903336, -0.04453110322356224, 0.029122695326805115, 0.009172438643872738, -0.0046063875779509544, 0.036431606858968735, 0.005784202832728624, 0.04985547438263893, 0.0004048740374855697, -0.023685384541749954, 0.006619160994887352, -0.0020591600332409143, 0.016481349244713783, -0.032252781093120575, -0.05760001391172409, -0.008192270994186401, -0.020216476172208786, 0.03698017820715904, -0.02258823998272419, 0.0036826899740844965, 0.009430590085685253, 0.00745008559897542, -0.01630386896431446, 0.005364707205444574, -0.006808741018176079, 0.008446388877928257, 0.022539837285876274, 0.028832275420427322, -0.026170089840888977, 0.003093782113865018, -0.003805715125054121, 0.02708975411951542, 0.0007855463773012161, -0.02091025747358799, 0.01650555059313774, 0.0028961352072656155, 0.004562017973512411, 0.011592607945203781, -0.02989714965224266, 0.010802019387483597, 0.015731096267700195, 0.005522018298506737, 0.016239332035183907, -0.002900168765336275, -0.017909247428178787, 0.02571832574903965, 0.02091025747358799, -0.006280337460339069, 0.006074623204767704, -0.041465554386377335, 0.0029526057187467813, 0.022459164261817932, -0.0029344544745981693, 0.04211093485355377, 0.041659168899059296, -0.021910592913627625, 0.027751266956329346, 0.03217210993170738, 0.00217008450999856, 0.019587231799960136, 0.0037653790786862373, -0.002151933265849948, 0.013811095617711544, 0.02394353412091732, -0.02134588733315468, -0.0034063872881233692, -0.013036641292273998, 0.018667567521333694, 0.005066219717264175, 0.00339832017198205, 0.005997984670102596, -0.009995296597480774, 0.04549916833639145, 0.011995969340205193, 0.013141515664756298, 0.005267900414764881, -0.022297820076346397, -0.012665549293160439, -0.031123368069529533, -0.02854185551404953, -0.013891767710447311, 0.01932908035814762, 0.002208403777331114, 0.030574796721339226, 0.045628245919942856, -0.029768073931336403, 0.0006000001449137926, -0.0029324376955628395, -0.0155858863145113, -0.0280255526304245, -0.004816135391592979, 0.0005188236245885491, -0.008240674622356892, -0.018038323149085045, 0.03672202676534653, -0.00486050546169281, 0.061117324978113174, 0.030397318303585052, -0.03952942043542862, 0.01745748333632946, 0.02625076286494732, -0.007175799924880266, -0.000533445505425334, -0.0010149582521989942, -0.0051025222055613995, 0.012536473572254181, -0.02165244147181511, -0.028186896815896034, 0.0006090757669880986, -0.033107906579971313, -0.004408740438520908, -0.00585680827498436, -0.02604101411998272, 0.01881277747452259, 0.06202085316181183, -0.018764374777674675, 0.043337151408195496, -0.02195899747312069, -0.014141852036118507, -0.029445385560393333, -0.01902252621948719, -0.015295465476810932, -0.03157513216137886, -0.005675295367836952, -0.04801614582538605, -0.04078790917992592, -0.05417950823903084, -0.08660976588726044, -0.014303196221590042, -0.002242689486593008, -0.025056812912225723, -0.018038323149085045, -0.008898152969777584, -0.014238658361136913, -0.012891431339085102, -0.026799334213137627, 0.026283031329512596, 0.005392942577600479, -0.017731769010424614, -0.0008576472755521536, 0.0009347901213914156, -0.019603366032242775, 0.012334792874753475, -0.004114286508411169, 0.045434631407260895, 0.0005319329211488366, -0.013625549152493477, 0.010955296456813812, 0.0065909260883927345, -0.027525383979082108, -0.013520675711333752, -0.0438857227563858, -0.012116977944970131, -0.0023394962772727013, 0.03585076332092285, -0.0002964706509374082, 0.011124708689749241, -0.03762555494904518, -0.03607664629817009, -0.0020581516437232494, -0.011770086362957954, 0.008502858690917492, -0.021555636078119278, -0.013528742827475071, -0.01025344803929329, -0.04904875159263611, 0.05334051698446274, 0.0032692444510757923, -0.004775799345225096, 0.031316980719566345, 0.006994287483394146, -0.027251098304986954, -0.02405647560954094, 0.023136811330914497, 0.06879732757806778, -0.006598993204534054, 0.039142195135354996, -0.020845718681812286, -0.024653451517224312, 0.020652106031775475, -0.04420841485261917, 0.0049653793685138226, 0.0023394962772727013, -0.01894185319542885, 0.00042453792411834, -0.006002018228173256, 0.0009630254353396595, -0.00703058997169137, 0.013891767710447311, -0.030865216627717018, -0.018344877287745476, 0.015335801988840103, -0.004783866461366415, -0.01744134910404682, 0.010180843062698841, -0.04017480090260506, -0.028590258210897446, 0.00021630256378557533, 0.016069918870925903, -0.00645378278568387, 0.04098152369260788, -0.031204041093587875, 0.008615800179541111, -0.00316235376521945, 0.037786900997161865, -0.017231600359082222, 0.00856739655137062, 0.01640874333679676, -0.07318589836359024, -0.010108238086104393, 0.020103534683585167, 0.029526056721806526, -0.011681347154080868, -0.005259833298623562, -0.00820437166839838, 0.028251435607671738, 0.006566724274307489, 0.008188237436115742, 0.023991938680410385, -0.022136475890874863, -0.0028053787536919117, 0.024411434307694435, 0.011818489991128445, -0.003696807660162449, -0.0019643702544271946, -0.009132103063166142, 0.027977149933576584, 0.015263197012245655, 0.00504605146124959, -0.012302523478865623, -0.004005379043519497, 0.016061851754784584, -0.0006186555838212371, 0.003507227636873722, -0.031074965372681618, -0.014270927757024765, -0.03365647792816162, 0.002071260940283537, 0.0032228578347712755, 0.003263194113969803, 0.014270927757024765, 0.0514366514980793, -0.019167736172676086, -0.01050353143364191, 0.01682823896408081, -0.021910592913627625, -0.004198992624878883, -0.02081345021724701, 0.020942525938153267, -0.06621581315994263, -0.0176833663135767, 0.008793279528617859, -0.005033950787037611, -0.009583868086338043, 0.0430467315018177, -0.030978158116340637, 0.01650555059313774, 0.0336887463927269, 0.015747230499982834, 0.039787571877241135, 0.02008740045130253, -0.00703462352976203, 0.01839328184723854, 0.06021379679441452, 0.021458828821778297, 0.009107901714742184, -0.02091025747358799, -0.009922691620886326, -0.00557042146101594, 0.0018242021324113011, 0.013335129246115685, -0.0018756306963041425, 0.0016739499988034368, 0.017634961754083633, -0.01913546584546566, -0.017118658870458603, -0.016650760546326637, -0.0125445406883955, -0.005223530810326338, 0.03491496667265892, 0.0163200031965971, 0.014964709058403969, 0.026605719700455666, -0.000736638845410198, 0.00043512615957297385, -0.01671529747545719, 0.027944879606366158, -0.01890958473086357, 0.00872067455202341, -0.039981186389923096, 0.012625212781131268, -0.010447061620652676, -0.002682353602722287, -0.000791092636063695, -0.04294992610812187, 0.04520874843001366, -0.06218219920992851, 0.011689414270222187, -0.032962698489427567, -0.013262524269521236, -0.009188573807477951, -0.019054794684052467, -0.0202648788690567, 0.008397985249757767, 0.0011102523421868682, -0.0015236978651955724, -0.0009357985109090805, -0.00909176655113697, 0.019377483054995537, 0.020781181752681732, -0.007014455273747444, -0.027735132724046707, -0.006869245320558548, 0.011568405665457249, 0.00146420206874609, -0.02058756723999977, -0.031236309558153152, -0.029090426862239838, 0.028477316722273827, 0.009341850876808167, -0.0126494150608778, 0.013294792734086514, -0.02739630825817585, -0.011326389387249947, 0.00504201790317893, -0.004364370834082365, -0.0077163041569292545, -0.01349647343158722, 0.004501513671129942, -0.003928740508854389, -0.03281748667359352, 0.03898084908723831, -0.004003362264484167, -0.017312273383140564, -0.011253784410655499, 0.03543126955628395, 0.015819836407899857, 0.024024207144975662, -0.007329077459871769, 0.01442420482635498, -0.03575395792722702, 0.0035838664043694735, -0.004368404392153025, -0.0013169751036912203, 0.014932440593838692, -0.038948580622673035, -0.013819162733852863, 0.0006423530867323279, -0.011770086362957954, -0.003977143671363592, -0.037593286484479904, -0.0042191604152321815, 0.0070467242039740086, 0.013375464826822281, -0.003551597474142909, -0.028816141188144684, -0.009357985109090805, 0.015642356127500534, -0.014440339058637619, 0.008349581621587276, 0.02268504723906517, -0.007591262459754944, 0.027848074212670326, -0.004763698671013117, 0.023975804448127747, 0.01953882724046707, -0.028880678117275238, 0.005340505391359329, -0.02329815737903118, -0.004332101903855801, -0.00010953783930744976, -0.013915969990193844, 0.02176538296043873, -0.007429917808622122, 0.011003700084984303, -0.009462859481573105, -0.015965046361088753, -0.042401354759931564, 0.015706894919276237, 0.0022971434518694878, 0.010172775015234947, 0.03562488034367561, -0.0029425215907394886, -0.01490017119795084, -0.008438320830464363, 0.020668240264058113, -0.023169081658124924, 0.004332101903855801, 0.02865479700267315, 0.017538154497742653, -0.013044709339737892, 0.019280675798654556, 0.031736478209495544, -0.016368407756090164, -0.03804505243897438, 0.011987902224063873, -0.0006242018425837159, 0.007228237111121416, -0.013415801338851452, -0.003325714962556958, -0.009656473062932491, 0.007252438459545374, 0.04243362322449684, -0.01587630622088909, 0.021571770310401917, -0.0020379836205393076, 1.0919120541075245e-05, 0.008228573016822338, 0.009293447248637676, -0.02312067709863186, 0.045015137642621994, -0.000912605260964483, 0.046983540058135986, -0.021039333194494247, 0.00674823671579361, 0.03468908369541168, -0.02007126435637474, 0.0007653783541172743, 0.013940171338617802, 0.025573115795850754, -0.001526723033748567, -0.018635299056768417, 0.005872942507266998, -0.0097129438072443, 0.040497489273548126, 0.015440675429999828, 0.02810622565448284, 0.034463200718164444, -0.017828576266765594, 0.012560674920678139, -0.020958660170435905, -0.015311600640416145, -0.005993951112031937, 0.06208539381623268, -0.020426223054528236, -0.01903866045176983, 0.014795297756791115, 0.018538491800427437, 0.02489546872675419, -0.005134791135787964, -0.01255260780453682, -0.013173784129321575, -0.011592607945203781, 0.02176538296043873, -0.002668235916644335, 0.009769413620233536, -0.009930758737027645, 0.03286588937044144, 0.02186219021677971, 0.007901850156486034, 0.013682019896805286, -0.026508914306759834, 0.012310591526329517, 0.007062858901917934, 0.020200340077280998, 0.022717315703630447, -0.0009141178452409804, 0.011237649247050285, 0.04424068331718445, -0.007720337714999914, 0.02153949998319149, -0.036012109369039536, -0.005062186159193516, -0.0075952960178256035, 0.007615463808178902, 0.006284371018409729, 0.008970757946372032, 0.013399667106568813, 0.0064658839255571365, -0.009422522969543934, 0.012730087153613567, -0.03378555551171303, -0.01260101143270731, 0.03104269690811634, -0.01818353310227394, -0.0114958006888628, -0.008301177993416786, 0.023056140169501305, -0.009003027342259884, 0.013133448548614979, 0.012173447757959366, 0.005497816484421492, -0.012665549293160439, 0.01495664194226265, -0.0017707566730678082, -0.012100842781364918, 0.001835294533520937, -0.016166726127266884, 0.0036221856717020273, -0.006167396437376738, -0.031333114951848984, 0.010745548643171787, 0.013980507850646973, -0.0070467242039740086, -0.001854454167187214, 0.005223530810326338, -0.012399330735206604, -0.02102319896221161, 0.03052639402449131, 0.007490422111004591, 0.01448874268680811, 0.016908911988139153, 0.018215803429484367, 0.013415801338851452, -0.0006292438483797014, 0.01810286194086075, -0.012262187898159027, 0.03149446099996567, -0.03196236118674278, 0.05175933986902237, 0.004150588996708393, 0.044079337269067764, -0.012778490781784058, -0.030607065185904503, -0.008381851017475128, -0.006845043506473303, 0.006667564623057842, 0.012705884873867035, 0.012746221385896206, 0.006873278878629208, 0.04204639792442322, -0.00966454017907381, 0.01745748333632946, -0.0006630253628827631, -0.03170420974493027, 0.00504201790317893, -0.003975126892328262, -0.005659161135554314, 0.053566399961709976, 0.0024342862889170647, 0.020055130124092102, 0.02854185551404953, 0.0053889090195298195, -0.038529083132743835, -0.018990255892276764, -0.0006191597785800695, 0.0066393292509019375, 0.010890758596360683, 0.010382523760199547, -0.008014791645109653, 0.0001438235631212592, -0.026702526956796646, 0.041465554386377335, -0.006715967785567045, 0.012092775665223598, -0.023491770029067993, 0.0301230326294899, 0.00784134678542614, 0.029977822676301003, 0.022330088540911674, -0.00924504455178976, 0.01118117943406105, -0.02458891272544861, -0.00977748166769743, 0.006026220042258501, 0.021587904542684555, 0.014077314175665379, 0.02039395458996296, 0.022346222773194313, 0.010979498736560345, 0.04988774284720421, 0.008825547993183136, 0.0006468908977694809, 0.029461519792675972, -0.018215803429484367, -0.03196236118674278, 0.021781517192721367, -0.02132975310087204, -0.025960342958569527, -0.0324302613735199, -0.03009076416492462, -0.030461855232715607, 0.020781181752681732, 0.015303532592952251, 0.02152336575090885, -0.027251098304986954, 0.01736067607998848, 0.027993284165859222, -0.006824875716120005, 0.00504201790317893, 0.017425214871764183, -0.007873615249991417, -0.004120337311178446, 0.005703530739992857, 0.0032510932069271803, -0.01290756557136774, -0.011576473712921143, -0.020539164543151855, 0.026847736909985542, -0.0023193282540887594, 0.005223530810326338, -0.012818826362490654, 0.024524375796318054, 0.05037177726626396, 0.0017223533941432834, -0.025169754400849342, -5.1554634410422295e-05, 0.02928403951227665, -0.00856739655137062, 0.0063932789489626884, 0.011874960735440254, 0.04624135419726372, -0.0032470596488565207, 0.04014252871274948, -0.01661849208176136, 0.004509580787271261, 0.026266897097229958, 0.03126857802271843, 0.05224337428808212, -0.004670925438404083, -0.001862521399743855, -0.0032571435440331697, -0.010051767341792583, 0.02771899849176407, -0.0038924377877265215, -0.005344538949429989, -0.009680674411356449, -0.02655731700360775, 0.01547294482588768, -0.018425550311803818, -0.0008657145081087947, -0.022975467145442963, -0.018554626032710075, 0.0322205126285553, 0.02947765402495861, 0.001618487760424614, -0.015650423243641853, -0.009059498086571693, -0.04656404256820679, 0.022426895797252655, -0.023814458400011063, -0.04256269708275795, -0.01196369994431734, 0.026508914306759834, 0.011197313666343689, 0.02134588733315468, 0.015666557475924492, -0.009656473062932491, 0.056406062096357346, 0.04078790917992592, 0.037690091878175735, 0.007397648878395557, 0.004658824764192104, 0.005909244995564222, -0.01590857468545437, 0.009035295806825161, -0.01892571896314621, 0.020877987146377563, -0.006570757832378149, -0.003083698218688369, 0.0014329415280371904, 0.031091099604964256, -0.000794622057583183, -0.03504404053092003, 0.023685384541749954, -0.0036181521136313677, -0.007292774971574545, -0.014270927757024765, 0.00627630390226841, -0.018457818776369095, -0.008607733063399792, 0.003091765334829688, 0.029219502583146095, -0.007103194948285818, 0.01437580119818449, 0.0004673950606957078, -0.029348578304052353, -0.01640874333679676, -0.0324302613735199, -0.020781181752681732, 0.01250420417636633, 0.005768068600445986, -0.0242500901222229, 0.01986151747405529, -0.029235636815428734, -0.00580437108874321, 0.00120302545838058, -0.007147564552724361, -0.0016245382139459252, 0.009003027342259884, 0.0030231939163058996, 0.012334792874753475, 0.0017001684755086899, -0.018264206126332283, -0.00035949586890637875, -0.001047731377184391, 0.0061794971115887165, -0.005376807879656553, -0.016892777755856514, 0.0033015133813023567, 0.006381177809089422, -0.026928409934043884, -0.031333114951848984, -0.015505213290452957, 0.015440675429999828, -0.03526992350816727, 0.010317985899746418, 0.020216476172208786, 0.02939698100090027, 0.009333783760666847, 0.016860507428646088, 0.01166521292179823, -0.014803364872932434, -0.023782189935445786, 0.016449078917503357, 0.019796978682279587, 0.003706891555339098, -0.013044709339737892, 0.005380841437727213, -0.009648405946791172, 0.023023871704936028, 0.026589585468173027, -0.0013310927897691727, 0.010858490131795406, -0.04666085168719292, 0.001960336696356535, -0.007998657412827015, -0.011987902224063873, 0.0021539500448852777, 0.020135803148150444, -0.010301850736141205, 0.013141515664756298, -0.026089418679475784, 0.015456810593605042, 0.001843361766077578, -0.01766723021864891, 0.014569414779543877, -0.0075549595057964325, -0.01808672770857811, 0.011979835107922554, -0.011673280037939548, -0.002976807300001383, 0.009632270783185959, -0.01786084473133087, -0.007591262459754944, -0.01552941557019949, -0.016223197802901268, 0.004461177624762058, 0.002920336788520217, 0.008906220085918903, 0.021087735891342163, 0.06321480125188828, -0.005501850042492151, -0.011891094967722893, 0.000917143072001636, 0.01160874217748642, -0.006538488902151585, -0.008607733063399792, 0.0062561361119151115, 0.0003355462977197021, 0.01871597021818161, 0.01290756557136774, -0.003061513416469097, 0.007078993134200573, -0.0438857227563858, 0.007938153110444546, -0.035076308995485306, 0.009059498086571693, -0.01703798770904541, 0.00966454017907381, -0.013819162733852863, -0.005223530810326338, 0.0054252115078270435, 0.009801683016121387, -0.019216138869524002, 0.0034769754856824875, -0.007619497366249561, -0.02362084574997425, -0.019490424543619156, -0.006389245390892029, 0.0341082438826561, -0.0017939499812200665, 0.024395300075411797, -0.025863535702228546, 0.019732441753149033, -0.00045806734124198556, -0.009124035947024822, 0.03009076416492462, -0.016666894778609276, 0.006715967785567045, 0.015432608313858509, -0.026283031329512596, 0.003495126962661743, -0.0025875635910779238, 0.0031966394744813442, 0.0015489079523831606, -0.01850622333586216, -0.033301521092653275, -0.006857144646346569, -0.028477316722273827, -0.030252108350396156, -0.012786557897925377, -0.01736067607998848, 0.031720343977212906, 0.0012534456327557564, -0.002543193753808737, 0.01542454119771719, -0.008825547993183136, -0.01974857598543167, 0.026089418679475784, 0.0009796640370041132, 0.020200340077280998, -0.0037109251134097576, -0.018586894497275352, -0.007607396692037582, 0.010858490131795406, 0.026928409934043884, -0.05614791065454483, -0.019183870404958725, 0.0370447151362896, -0.010100170038640499, 0.006643362808972597, -0.025266559794545174, -0.030865216627717018, -0.008486724458634853, 0.012108909897506237, -0.0056833624839782715, -0.008091430179774761, 0.017522020265460014, 0.007494455669075251, -0.035818494856357574, 0.0021216811146587133, 0.027622191235423088, -0.025492442771792412, 0.013940171338617802, -0.024863198399543762, -0.0017768071265891194, -0.05666421353816986, -0.025056812912225723, -0.011536137200891972, 0.016441011801362038, -0.03814185783267021, -0.021700846031308174, 0.02029714733362198, 0.015956979244947433, -0.02896135114133358, 0.016747567802667618, -0.00816000159829855, -0.0062682367861270905, 0.006385211367160082, 0.01966790296137333, -0.009454792365431786, -0.012165380641818047, -0.017392944544553757, -0.01621513068675995, -0.019312946125864983, -0.010487397201359272, -0.024847064167261124, 0.0014833617024123669, 0.0011405044933781028, 0.008970757946372032, -0.02268504723906517, 0.012625212781131268, -0.013859499245882034, -0.002349580405279994, -0.0017495802603662014, -0.01452907919883728, 0.010914960876107216, 0.0040094126015901566, -0.023991938680410385, 0.012246053665876389, 0.01296403631567955, -0.007946220226585865, 0.00485647190362215, 0.00698218634352088, 0.016174793243408203, 0.006292438600212336, 0.001654790248721838, 0.014569414779543877, -0.020732777193188667, -0.013318995013833046, 0.0006257144268602133, 0.008341514505445957, 0.032043032348155975, -0.043240346014499664, 0.0013673952780663967, 0.0028094123117625713, 0.022088073194026947, -0.01715092919766903, -0.01651361770927906, -0.022394627332687378, -0.006647396367043257, 0.011463532224297523, 0.0037976480089128017, 0.006070589646697044, -0.025024544447660446, -0.004299832973629236, 0.060891442000865936, 0.015819836407899857, -0.006611093878746033, -0.013246390037238598, -0.019200004637241364, 0.00878521241247654, 0.009454792365431786, 0.028251435607671738, 0.011318322271108627, 0.004368404392153025, 0.0009544540080241859, -0.0033862192649394274, 0.021813785657286644, 0.013665885664522648, 0.009495127946138382, -0.0019502525683492422, 0.002458487870171666, 0.006760337855666876, 0.009438657201826572, 0.010882691480219364, -0.020765047520399094, -0.013310927897691727, 0.006361010018736124, 0.02500840835273266, -0.009164371527731419, -0.021797651425004005, 0.014230591244995594, -0.009874287992715836, -0.02153949998319149, 0.004162690136581659, 0.007990590296685696, 0.008406052365899086, 0.027525383979082108, -0.00018000004638452083, -0.008962690830230713, 0.07144337892532349, -0.0023374794982373714, 0.021362021565437317, -0.016336137428879738, -0.007627564948052168, 0.008502858690917492, -0.013794961385428905, 0.011729750782251358, -0.019474290311336517, -0.01944202184677124, -0.0030131100211292505, 0.0030655469745397568, 0.004844370763748884, -0.008599665947258472, -0.04307899996638298, -0.02112000435590744, 0.012778490781784058, -0.01590857468545437, 0.00020546223095152527, -0.021071601659059525, 0.003805715125054121, -0.0030857149977236986, -0.02216874435544014, -0.014964709058403969, -0.0252988301217556, 0.010374456644058228, 0.023072274401783943, -0.01745748333632946, -0.02978420816361904, -0.0024806729052215815, -0.0006806724122725427, 0.009696808643639088, -0.0009347901213914156, -0.012722020037472248, 0.006288405042141676, 0.002412101486697793, -0.007635632064193487, -0.009874287992715836, 0.0029707569628953934, 0.002575462684035301, -0.0039025219157338142, 0.045015137642621994, -0.03212370350956917, 0.030284376814961433, -0.023056140169501305, 0.0004762185853905976, -0.013093112036585808, -0.008599665947258472, 0.02113613858819008, 0.0026137821841984987, 0.0032672276720404625, 0.0066877324134111404, -0.01882891170680523, -0.008240674622356892, -0.007236304227262735, -0.0015751264290884137, -0.006062522530555725, 0.03217210993170738, -0.008640002459287643, 0.000433613546192646, -0.03562488034367561, 0.002367731649428606, -0.004352269694209099, -0.01577143184840679, 0.00575193390250206, -0.013222187757492065, 0.004295799415558577, -0.010124372318387032, 0.020619837567210197, 0.029090426862239838, -0.010874624364078045, 0.017215466126799583, -0.015101851895451546, -0.014133784919977188, -0.01547294482588768, 0.008849750272929668, -0.00955966580659151, -0.043240346014499664, -0.018054457381367683, 0.017392944544553757, -0.015198659151792526, -0.006445715669542551, -0.00863193441182375, 0.029929418116807938, -0.0029082358814775944, -0.01164907868951559, -0.01019697729498148, -0.004610421136021614, 0.019200004637241364, -0.011511935852468014, 0.01995832473039627, -0.019684039056301117, -0.01673143170773983, -0.007062858901917934, -0.0052638668566942215, 0.019393617287278175, -0.012730087153613567, -0.029413115233182907, -0.003844034392386675, 0.015021179802715778, 0.009882355108857155, -0.0010194960050284863, 0.015723029151558876, -0.024411434307694435, -0.014577481895685196, -0.0019845382776111364, 0.0072685731574893, 0.017844710499048233, 0.013617482036352158, -0.0006352942436933517, -0.00048529423656873405, -0.01458554994314909, 0.03646387532353401, 0.018054457381367683, -0.013891767710447311, 0.025234291329979897, -0.007579161319881678, 0.020571433007717133, -0.002990924986079335, -0.015343869104981422, -0.01577143184840679, 0.016973448917269707, 0.002775126602500677, -0.0002058403770206496, -0.007651766296476126, 0.058374468237161636, -0.0008268909296020865, -0.01061647292226553, -0.02657345123589039, 0.02499227412045002, 0.00961613655090332, -0.016683029010891914, -0.07641278952360153, -0.008793279528617859, 0.019990593194961548, 0.021200677379965782, -0.0008324371883645654, -0.0006509245140478015, -0.0015075634000822902, -0.012108909897506237, -0.01160874217748642, 0.03917446359992027, 0.0022749584168195724, 0.02949378825724125, 0.0022366391494870186, -0.020861852914094925, 0.0013684036675840616, -0.016473280265927315, -0.009317649528384209, 0.011826557107269764, -0.010850423015654087, -0.006191598251461983, 0.010422859340906143, 0.016352273523807526, -0.005154959391802549, -0.005917312111705542, -0.010535800829529762, -0.0125445406883955, 0.0015257146442309022, 0.024427568539977074, -0.0010648742318153381, 0.018764374777674675, -0.016053784638643265, -0.0028981519863009453, 0.0037290765903890133, -0.005062186159193516, 0.028993619605898857, 0.023249752819538116, -0.0048524378798902035, 0.007514623459428549, -0.016908911988139153, -0.006841009948402643, -0.007696136366575956, -0.011729750782251358, -0.018683701753616333, -0.0022164711263030767, 0.007897816598415375, -0.02071664296090603, -0.018473953008651733, -0.00603428715839982, 0.001988571835681796, 0.01396437268704176, -0.0011203363537788391, 0.0032591603230684996, -0.00030605049687437713, -0.03375328332185745, -0.009164371527731419, -0.023362694308161736, 0.00863193441182375, -0.0021579836029559374, 0.010309918783605099, -0.0299132838845253, -0.026412107050418854, 0.010438993573188782, 0.012923700734972954, 0.001418823841959238, 0.023604711517691612, -0.0006897480343468487, 0.006405379623174667, 0.011326389387249947, 0.003198656253516674, -0.018135130405426025, 0.007058825343847275, 0.003261177334934473, -0.010705212131142616, -0.009059498086571693, 0.003200673032552004, -0.02708975411951542, 0.013948238454759121, -0.00486050546169281, -0.00033126058406196535, 0.031736478209495544, -0.011632943525910378, 0.007567060645669699, 0.0012322692200541496, 0.0020813450682908297, -0.0008223531185649335, -0.029606729745864868, -0.01102790143340826, -0.013673952780663967, 0.011237649247050285, -0.004116303287446499, 0.015182524919509888, 0.007490422111004591, -0.012778490781784058, -0.01396437268704176, 0.0029344544745981693, 0.012794625014066696, -0.005066219717264175, -0.04504740610718727, -0.01067294366657734, -0.01008403580635786, 0.01869983598589897, 0.014335465617477894, -0.017634961754083633, -0.014706557616591454, 0.015279331244528294, -0.008006724528968334, -0.011826557107269764, 0.012681683525443077, -0.01789311319589615, 0.0075065563432872295, 0.01601344905793667, 0.007926052436232567, -0.0015226894756779075, 0.015238994732499123, 0.011834624223411083, -0.005772102158516645, 0.006554623134434223, 0.00575193390250206, 0.02216874435544014, -0.015021179802715778, 0.0021095802076160908, 0.020329415798187256, -0.02142656035721302, 0.003749244613572955, 0.008518993854522705, -0.0062198331579566, 0.010261515155434608, -0.006425547879189253, 0.031123368069529533, -0.008389918133616447, 0.020345550030469894, 0.0033761351369321346, -0.04023933783173561, -0.013149582780897617, -0.0092611787840724, 0.004436975810676813, 0.028073955327272415, -0.0163200031965971, 0.008002690970897675, 0.007801010273396969, -0.03260773792862892, -0.009963027201592922, 0.008293110877275467, 0.010785885155200958, -0.02926790527999401, 0.003942857962101698, 0.009212775155901909, -0.01818353310227394, 0.018957987427711487, -0.0070104217156767845, 0.00930958241224289, -0.004908908624202013, 0.008349581621587276, -0.007155632134526968, 0.017167063429951668, -0.04088471457362175, -0.032769083976745605, -0.012875297106802464, 0.008946556597948074, -0.004227227997034788, 0.010471262969076633, -0.011729750782251358, -0.03430185839533806, 0.010124372318387032, -0.001490420545451343, 0.004441009368747473, 0.013093112036585808, 0.008349581621587276, 0.0034467235673218966, -0.019926054403185844, 0.002954622497782111, -0.056180182844400406, -0.015731096267700195, -0.00598184997215867, 0.02560538426041603, -0.0037936142180114985, 0.03514084964990616, -0.006449749227613211, 0.03191395848989487, 0.008591598831117153, -0.004215126857161522, -0.01787697896361351, -0.02112000435590744, -0.00240403413772583, 0.005372774321585894, 0.01061647292226553, -0.008030925877392292, -0.041562363505363464, -0.007889749482274055, -0.02207193709909916, 0.022765720263123512, 0.0036201688926666975, -0.0022285720333456993, -0.017602693289518356, -0.0020450425799936056, 0.00302117713727057, 0.0015983197372406721, -0.002541176974773407, 0.010487397201359272, -0.03672202676534653, -0.00656269071623683, 0.0125445406883955, 0.0019089080160483718, -0.023023871704936028, 0.020458491519093513, 0.008809413760900497, -0.007143530994653702, 0.007022522855550051, -0.014771095477044582, 0.013472272083163261, -0.0078050438314676285, -0.009745212271809578, -0.010785885155200958, 0.003533446229994297, -0.033817823976278305, 0.001994622405618429, -0.016812104731798172, 0.004731429740786552, -0.01966790296137333, -0.0009368069586344063, -0.018538491800427437, 0.01850622333586216, 0.021168408915400505, 0.010422859340906143, -0.02121681161224842, -0.0046063875779509544, -0.007817144505679607, -0.005497816484421492, 0.020442357286810875, -0.00240403413772583, 0.011858826503157616, -0.016077985987067223, 0.02008740045130253, 0.02905815839767456, 0.0012887398479506373, 0.025911938399076462, 0.008656136691570282, -0.003589916741475463, 0.015174456872045994, 0.009333783760666847, -0.007627564948052168, -0.00562285864725709, -0.011753952130675316, 0.02068437449634075, -0.0034628580324351788, -0.012834960594773293, -0.004908908624202013, 0.008224539458751678, -0.029316309839487076, 0.0045176479034125805, -0.008397985249757767, 0.005792270414531231, -0.0025613452307879925, -0.02142656035721302, 0.003035294823348522, 0.019054794684052467, 0.012633279897272587, 0.004360337276011705, -0.023604711517691612, 0.019167736172676086, 0.009833951480686665, 0.0055099171586334705, 0.03891631215810776, 0.0022547903936356306, 0.024282358586788177, -0.011003700084984303, 0.019409751519560814, 0.021926727145910263, -0.006308572832494974, -0.009011094458401203, -0.0025694123469293118, -0.004533782601356506, -0.0030413451604545116, -0.005292102228850126, -0.019684039056301117, -0.03407597541809082, -0.0038097486831247807, 0.001156638958491385, -0.019990593194961548, -0.0014803365338593721, 0.01344000268727541, 0.012375128455460072, -0.028800006955862045, -0.003571765497326851, 0.014964709058403969, 0.0068853795528411865, -0.0016376473940908909, -0.016069918870925903, -0.0116006750613451, 0.008454455994069576, -0.009172438643872738, -0.025121349841356277, 0.016860507428646088, 0.0060544549487531185, -0.00867227092385292, 0.007599329575896263, -0.004997648298740387, -0.0008500842377543449, 0.005243698600679636, -0.004364370834082365, 0.016570087522268295, -0.017118658870458603, -0.011479666456580162, 0.016812104731798172, 0.0018383197020739317, -0.01066487655043602, 0.0007210085750557482, 0.018974121659994125, -0.0031038662418723106, -0.009051430970430374, -0.0021922693122178316, 0.002333445940166712, -0.01494857482612133, -0.015819836407899857, -0.019087063148617744, -0.005267900414764881, -0.0019996643532067537, -0.00017760507762432098, 0.06502186506986618, 0.010576137341558933, 0.010729414410889149, 0.014214457012712955, -0.014730759896337986, -0.013722356408834457, -0.004112269729375839, 0.022523703053593636, -0.011915297247469425, -0.012367061339318752, -0.008535128086805344, -0.023072274401783943, 0.0014087398303672671, 0.01600538194179535, -0.03617345541715622, 0.01787697896361351, 0.01097143068909645, 0.034850429743528366, -0.0070104217156767845, 0.01652168482542038, 0.011931431479752064, -0.007865548133850098, -0.010100170038640499, -0.008220505900681019, 0.000275798374786973, 0.011955632828176022, -0.00862386729568243, 0.014141852036118507, -0.007881682366132736, 0.01694118045270443, -0.004973446484655142, -0.012141179293394089, -0.01025344803929329, -0.012746221385896206, -0.0056470599956810474, 0.01671529747545719, -0.010229245759546757, -0.0030070594511926174, 0.019909920170903206, 0.012229918502271175, 0.019087063148617744, -0.0014934457140043378, 0.01060840580612421, 0.017296139150857925, 0.0025915971491485834, -0.008192270994186401, 0.011003700084984303, -0.002107563428580761, 0.00012170170521130785, -0.0024524375330656767, -0.027654459699988365, -0.012455801479518414, -0.0077405059710145, -0.002738824114203453, 0.00784134678542614, -0.005764035042375326, 0.010592271573841572, -0.0125445406883955, 0.01505344919860363, -0.0013310927897691727, 0.006663531064987183, -0.014658154919743538, -0.023895131424069405, -0.032962698489427567, -0.006732102483510971, 0.000877311103977263, 0.0018504206091165543, -0.009422522969543934, 0.01881277747452259, -0.009164371527731419, -0.0156907606869936, 0.019296811893582344, 0.019087063148617744, -0.008970757946372032, -0.009236976504325867, 0.03943261504173279, 0.010769749991595745, 0.02928403951227665, 0.01296403631567955, -0.0021922693122178316, 0.010229245759546757, 0.0002997479750774801, -0.0018645382951945066, -0.01702185347676277, 0.019264541566371918, -0.011221515014767647, 0.0025371434167027473, 0.01124571729451418, -0.009866220876574516, -0.02132975310087204, -0.000506218580994755, 0.007877648808062077, -0.011689414270222187, -0.012988238595426083, 0.014133784919977188, -0.008276976644992828, 0.0019048743415623903, -0.015844037756323814, 0.02091025747358799, -0.018457818776369095, 0.02134588733315468, 0.008930422365665436, 0.004610421136021614, 0.02028101310133934, -0.003083698218688369, -0.013520675711333752, 0.016699163243174553, -0.004368404392153025, -0.02018420584499836, -0.006897480692714453, -0.014383869245648384, 0.0007154623745009303, 0.008091430179774761, 0.01619899459183216, -0.019926054403185844, -0.022330088540911674, -0.0071354638785123825, -0.008535128086805344, -0.02821916528046131, -0.01448874268680811, 0.0012887398479506373, -0.017828576266765594, 0.003146219300106168, -0.007986556738615036, 0.01306891068816185, 0.004027564078569412, -0.013407734222710133, -0.00655865715816617, 0.020055130124092102, -0.011810422874987125, 0.025331098586320877, 0.01061647292226553, 0.032268915325403214, -0.016465213149785995, 0.009640337899327278, 0.004003362264484167, 0.012794625014066696, -0.011068237945437431, 0.00779294315725565, -0.0007315967814065516, 0.016158659011125565, 0.02071664296090603, 0.0047556315548717976, 0.012988238595426083, 0.005792270414531231, 0.013141515664756298, 0.0005949581391178071, -0.012778490781784058, 0.013044709339737892, -0.01692504622042179, 0.018054457381367683, -0.009059498086571693, -0.009269245900213718, -0.005126724019646645, -0.0029848746489733458, 0.0019663870334625244, -0.027751266956329346, 0.018135130405426025, 0.0023717652074992657, -0.002801345195621252, 0.004723362624645233, 0.008873951621353626, -0.007978489622473717, -0.0006796640227548778, 0.004666891880333424, 0.012673616409301758, 0.019942188635468483, 0.015650423243641853, 0.029251771047711372, -0.009132103063166142, -0.008817480877041817, 0.005146891809999943, 6.378152465913445e-05, -0.029009753838181496, 0.015085717663168907, -0.013940171338617802, 0.023701518774032593, 0.003293446032330394, -0.008107565343379974, 0.011810422874987125, -0.015505213290452957, -0.0029969755560159683, 0.048242028802633286, -0.0007810085662640631, 0.013948238454759121, -0.016481349244713783, 0.01629580184817314, -0.00816000159829855, 0.003299496602267027, 0.018135130405426025, -0.006155295763164759, 0.03073614090681076, -0.008349581621587276, -0.003686723532155156, -0.023185215890407562, -0.00703058997169137, 0.013101179152727127, 0.014270927757024765, 0.022201012820005417, 0.00551798427477479, -0.024847064167261124, 0.025686057284474373, 0.0012131094699725509, 0.01953882724046707, 0.007897816598415375, 0.00557042146101594, 0.0013048741966485977, -0.029929418116807938, -0.022749584168195724, -0.002276975428685546, -0.03163967281579971, -0.02123294584453106, 0.005957648623734713, 0.00026420174981467426, -0.02260437421500683, 0.007022522855550051, -0.0050904215313494205, -0.003172437660396099, 0.010761682875454426, -0.005546219646930695, 0.02249143458902836, 0.009269245900213718, -0.007708237040787935, -0.0023778157774358988, 0.00316437054425478, 0.002428235951811075, -0.010705212131142616, 0.008006724528968334, 0.017118658870458603, -0.0013593280455097556, 0.02354017272591591, 0.012891431339085102, -0.0029163032304495573, 0.016973448917269707, 0.004533782601356506, 0.007817144505679607, 0.01541647408157587, -0.009954960085451603, 0.010205044411122799, -0.012471935711801052, -0.018796643242239952, 0.011584540829062462, -0.00872067455202341, 0.0011858826037496328, 0.007159665692597628, -0.02834824100136757, -0.008882018737494946, -0.0013593280455097556, 0.007054791320115328, -3.215861943317577e-05, 0.008026892319321632, -0.000198907611775212, -0.016957314684987068, 0.02926790527999401, -0.0043079000897705555, 0.014400003477931023, 0.003172437660396099, -0.01050353143364191, -0.0020631938241422176, -0.006425547879189253, -0.001707227318547666, -0.009551598690450191, 0.017651095986366272, -0.004457144066691399, 0.010681010782718658, 0.0202648788690567, -0.012584877200424671, 0.019474290311336517, -0.0051388246938586235, 0.01447260845452547, 0.00528403464704752, -0.011479666456580162, 0.016336137428879738, 0.014924373477697372, -0.00924504455178976, 0.00873680878430605, -0.007421850226819515, 1.4503680176858325e-05, 0.002295126672834158, 0.02089412324130535, -0.0038904210086911917, -0.002990924986079335, -0.003944874741137028, -0.023362694308161736, 0.0007598320953547955, -0.02300773561000824, -0.005183194298297167, 0.01395630557090044, 0.002758992137387395, 0.01694118045270443, -0.01025344803929329, -0.011762019246816635, 0.02539563551545143, -0.0065909260883927345, 0.006994287483394146, 0.004279664717614651, 0.01097143068909645, 0.0035475639160722494, 0.02134588733315468, -0.0014803365338593721, 0.017409078776836395, -0.004376471508294344, -0.010261515155434608, -0.014859835617244244, 0.01297210343182087, -0.002974790520966053, 0.03920673206448555, -0.003833950497210026, 0.0007023530779406428, 0.016263533383607864, 0.00045554630924016237, 0.015109919011592865, 0.008696472272276878, 0.006389245390892029, 0.0008808405254967511, 0.009293447248637676, -0.008833615109324455, 0.016247399151325226, 0.011261851526796818, 0.013891767710447311, -0.017409078776836395, 0.011511935852468014, -0.009454792365431786, 0.00977748166769743, -0.001681008841842413, 0.025476308539509773, 0.02257210575044155, 0.010632607154548168, 0.0007164707640185952, -0.01609412208199501, -0.0021478997077792883, -0.01249613706022501, 0.007801010273396969, -0.010406725108623505, -0.0007552942843176425, 0.006643362808972597, -0.006183530669659376, -0.009583868086338043, -0.018683701753616333, 0.005602690391242504, -0.0259280726313591, -0.003099832683801651, 0.017699500545859337, -0.024024207144975662, 0.002141849137842655, 0.02655731700360775, -0.0022568071726709604, -0.007958320900797844, -0.006284371018409729, 0.02510521560907364, 0.026621855795383453, -0.0036000008694827557, 0.003979160450398922, -0.014940507709980011, -0.012625212781131268, -0.013875633478164673, 0.013206053525209427, 0.0038924377877265215, -0.008389918133616447, 0.000827395124360919, -0.025347232818603516, 0.019926054403185844, -0.011415128596127033, -0.011697481386363506, -0.016449078917503357, -0.00012920171138830483, -0.015150255523622036, -0.006026220042258501, -0.02270118147134781, -0.007700169924646616, -0.004501513671129942, -0.022507568821310997, -0.013270591385662556, 0.008006724528968334, -0.00041344546480104327, -0.01202017068862915, 0.0002286555099999532, -0.0007421850459650159, -0.010818153619766235, 0.010366388596594334, 0.04275631159543991, 0.0026097483932971954, 0.010358321480453014, 0.019006390124559402, 0.014803364872932434, -0.01255260780453682, 0.0002858824154827744, 0.020619837567210197, -0.027057485654950142, 0.017312273383140564, -0.00909176655113697, 0.024960005655884743, -0.002976807300001383, -0.012237985618412495, 0.004420841578394175, 0.013972439803183079, -0.01974857598543167, -0.00024075635883491486, 0.008922355249524117, -0.009971094317734241, -0.004013446159660816, -0.00015882356092333794, 0.01673143170773983, -0.003362017683684826, 0.007615463808178902, -0.04143328592181206, 0.03163967281579971, 0.0248793326318264, 0.007821178063750267, -0.007474287413060665, 0.014222524128854275, -0.008236640132963657, -0.013770759105682373, 0.010987565852701664, 0.022249417379498482, -0.020765047520399094, 0.019167736172676086, -0.011745885014533997, 0.01590857468545437, 0.018651433289051056, 0.012358994223177433, -0.006760337855666876, 0.017118658870458603, -0.009575800970196724, 0.012923700734972954, 0.007200001738965511, 0.04617681726813316, 0.01297210343182087, 0.00020987399329897016, 0.002892101416364312, -0.015642356127500534, -0.00909983366727829, -0.0030131100211292505, 0.003172437660396099, -0.029122695326805115, 0.014738827012479305, 0.015432608313858509, -0.030284376814961433, -0.004015462938696146, 0.0232013501226902, -0.036851100623607635, -0.01019697729498148, -0.009478993713855743, -0.02371765300631523, -0.0011606725165620446, 0.011415128596127033, 0.0023899164516478777, 0.027025217190384865, 0.003478992497548461, 0.004116303287446499, 0.005848740693181753, 0.011003700084984303, 0.013359330594539642, 0.014771095477044582, -0.026428241282701492, -0.019506558775901794, -0.03010689839720726, -0.01301243994385004, -0.0024786561261862516, -0.02278185449540615, 0.0008697481243871152, -0.0007779833977110684, 0.017167063429951668, 0.004541849717497826, -0.004320001229643822, -0.020958660170435905, 0.01608605496585369, 0.012189582921564579, -0.006756304297596216, -0.0005026892176829278, -0.016989583149552345, 0.02717042714357376, 0.00033932781661860645, -0.009769413620233536, -0.012818826362490654, 0.023443367332220078, 0.02091025747358799, 0.020135803148150444, 0.004961345810443163, 0.0011011767201125622, -0.004364370834082365, 0.009963027201592922, -0.005017816089093685, -0.0028678998351097107, 0.01103596854954958, 0.0039226901717484, 0.0072968085296452045, 0.015602020546793938, 0.006437648553401232, -0.0009418489644303918, 0.00744605204090476, 0.012221851386129856, 0.009414455853402615, -0.000917143072001636, -0.012471935711801052, 0.01364975143224001, -0.011286052875220776, 0.030397318303585052, -6.825631862739101e-05, 0.0006680673686787486, 0.014141852036118507, 0.00872874166816473, 0.01882891170680523, -0.0018736139172688127, -0.013682019896805286, -0.00010802523320307955, 0.0007038657204248011, 0.0066030267626047134, 0.016489416360855103, 0.007139497436583042, 0.019893785938620567, 0.003362017683684826, -0.010269582271575928, 0.007817144505679607, -0.01353680994361639, 0.0020289081148803234, 0.04091698303818703, 0.01757042482495308, 0.004477311857044697, -0.013617482036352158, -0.019167736172676086, -0.020055130124092102, 0.012673616409301758, 0.025024544447660446, 0.0010890759294852614, -0.010382523760199547, 0.011866893619298935, 0.002623866079375148, 0.004416807554662228, 0.0023273956030607224, 0.0017112608766183257, -0.004973446484655142, 0.014085381291806698, -0.0008531094645150006, 0.011156977154314518, 0.026525048539042473, 0.01923227310180664, 0.004178824368864298, 0.03823866322636604, -0.007091094274073839, -0.0013341179583221674, -0.007764707785099745, 0.0009882354643195868, -0.03212370350956917, 0.0016588239232078195, -0.012221851386129856, -0.012367061339318752, 0.0232013501226902, -0.01437580119818449, 0.005203362554311752, -0.024024207144975662, 0.005062186159193516, 0.03031664527952671, 0.01789311319589615, 0.02216874435544014, -0.017909247428178787, -0.0020934459753334522, -0.0019048743415623903, 0.015723029151558876, 0.010519666597247124, -0.00044546229764819145, -0.0002449160092510283, -0.01154420431703329, 0.033495135605335236, -0.0021357988007366657, 0.0007805043715052307, -0.002347563626244664, -0.0040094126015901566, -0.006441682111471891, 0.023040005937218666, -0.008107565343379974, 0.001991597004234791, -0.022136475890874863, 0.021281348541378975, 0.02518588863313198, -0.007942186668515205, 0.0038803371135145426, -0.01997445896267891, 0.011673280037939548, -0.015610087662935257, -0.0005173110403120518, -0.02594420686364174, -0.027831939980387688, 0.0067966403439641, 0.0014127733884379268, 0.020361686125397682, -0.007893783040344715, -0.007748573087155819, 0.00909176655113697, -0.01890958473086357, 0.016537819057703018, -0.003749244613572955, -0.02489546872675419, -0.0005732774152420461, 0.0014531095512211323, 0.007917985320091248, 0.001192941446788609, -0.014440339058637619, -0.032769083976745605, -0.021362021565437317, -0.004541849717497826, 0.013262524269521236, 0.012520339339971542, 0.010858490131795406, -0.005780169274657965, 0.0014843700919300318, 0.005643026437610388, -0.010116305202245712, 0.0020117652602493763, -0.004783866461366415, 0.017618827521800995, -0.0055986568331718445, -0.007312942761927843, -0.0008042018744163215, 0.022749584168195724, -0.01734454184770584, -0.0037351269274950027, 0.0066393292509019375, 0.015222860500216484, -0.007316976319998503, 0.0014430255396291614, -0.005364707205444574, -0.006227900739759207, -0.004303866531699896, -0.00020546223095152527, -0.011689414270222187, 0.0026339502073824406, -0.00966454017907381, 0.021684711799025536, 0.0009115968714468181, -0.005296135786920786, -0.007006388157606125, 0.0034648748114705086, 0.0029707569628953934, 0.0032873956952244043, -0.006808741018176079, -0.017409078776836395, -0.0031684041023254395, 0.015327734872698784, -0.00878521241247654, -0.009890422224998474, -0.023023871704936028, 0.0004754622932523489, 0.02497613988816738, 0.01452907919883728, 0.0023031937889754772, 4.1123959817923605e-05, 0.0030675637535750866, -0.006010085344314575, -0.0015327734872698784, -0.03336605802178383, 0.015013112686574459, -0.005380841437727213, -0.002224538242444396, -0.007236304227262735, -0.007659833878278732, 0.005219496786594391, -0.007329077459871769, 0.021184543147683144, -0.007538825273513794, 0.0018292440799996257, -0.016368407756090164, 0.005937480367720127, 0.00486453901976347, -0.013044709339737892, -0.017118658870458603, 0.025040678679943085, 0.0037593285087496042, -0.005118656437844038, -0.011253784410655499, -0.012568742036819458, 0.009737145155668259, -0.022765720263123512, 0.0008697481243871152, -0.011616809293627739, 0.01684437319636345, -0.027460847049951553, -0.023282021284103394, -0.004590253345668316, -0.028767738491296768, -0.011326389387249947, 0.006627228576689959, 0.0033862192649394274, -0.0015872272197157145, -1.3518910236598458e-05, 0.0062157995998859406, 0.007155632134526968, 0.002648067893460393, 0.0010336136911064386, -0.01343193557113409, -0.013052776455879211, -0.01734454184770584, -0.01156033854931593, -0.015230927616357803, 0.005989917553961277, 0.0017304205102846026, -0.006865211762487888, -0.0015791599871590734, 0.0010310927173122764, -0.006066556088626385, -0.03105883114039898, 0.004291765857487917, 0.004328068345785141, 0.0032652108930051327, 0.0020178155973553658, -0.016650760546326637, 0.01997445896267891, -0.0022205046843737364, 0.012149246409535408, -0.005219496786594391, -0.007861514575779438, -0.009075632318854332, -0.013851432129740715, -0.012165380641818047, 0.0037189924623817205, -0.027622191235423088, 0.025266559794545174, -0.006167396437376738, -0.013641683384776115, -0.0036020176485180855, 0.011891094967722893, -0.0027529418002814054, -0.012108909897506237, 0.0017657147254794836, -0.004900841508060694, -0.023072274401783943, -0.00815596804022789, 0.0016820172313600779, -0.01744134910404682, 0.0008324371883645654, -0.006679665297269821, -0.0032833621371537447, -0.0050137825310230255, 0.004376471508294344, -0.001906891237013042, -0.012189582921564579, 0.009333783760666847, -0.011463532224297523, 0.007982523180544376, 0.008063195273280144, -0.021281348541378975, -0.035592611879110336, -0.00702655641362071, 0.013157649897038937, 0.016441011801362038, -0.026428241282701492, -0.008656136691570282, 0.004408740438520908, -0.0020631938241422176, 0.01736067607998848, -0.028687065467238426, -0.007627564948052168, 0.006534455344080925, 0.00030831940239295363, -0.0045176479034125805, 0.0031845385674387217, 0.01358521357178688, 0.011213447898626328, 0.014682356268167496, 0.017522020265460014, -0.0005596639821305871, 0.0053485725075006485, 0.007675968110561371, 0.018764374777674675, 0.006098825018852949, 0.009745212271809578, -0.001734454184770584, -0.00462252227589488, -0.007813110947608948, 0.03062320128083229, 0.0064779845997691154, -0.020135803148150444, -0.01986151747405529, -0.0018383197020739317, -0.0028053787536919117, -0.012270255014300346, -0.005340505391359329, 0.0026984880678355694, 0.002827563788741827, 0.02936471253633499, -0.014149919152259827, 0.029187234118580818, -0.03514084964990616, 0.0013563028769567609, -0.0060544549487531185, -0.001102185109630227, 0.02436303161084652, 0.025347232818603516, 0.027670593932271004, 0.010963363572955132, 0.010705212131142616, 0.011431262828409672, -0.010995632968842983, 0.014875969849526882, 0.03239798918366432, 0.020151937380433083, 0.008357648737728596, -0.018457818776369095, 0.0024826896842569113, -0.007494455669075251, -0.005526051856577396, -0.005356640089303255, 0.01202017068862915, -0.0219428613781929, -0.013552944175899029, 0.010600338689982891, -0.006373110692948103, 0.008527060970664024, 0.013633616268634796, -0.00509848864749074, -0.011431262828409672, 0.009938825853168964, -0.027444712817668915, 0.011302187107503414, 0.0003973110287915915, 0.002476639114320278, -0.001646723016165197, -0.009374120272696018, -0.00702655641362071, -0.0008248741505667567, -0.009696808643639088, -0.004497480113059282, 0.015206726267933846, 0.006010085344314575, -0.015731096267700195, 0.019813112914562225, 0.00014357146574184299, -0.01913546584546566, 0.0025270595215260983, -0.014262860640883446, 0.010398657992482185, -0.008079329505562782, 0.01024538092315197, 0.006566724274307489, -0.013657818548381329, -0.00862386729568243, -0.007667900994420052, 0.009850086644291878, -0.007490422111004591, -0.0029243703465908766, 0.0008097480749711394, -0.02123294584453106, 0.0035737822763621807, 0.02363697998225689, 0.0041344547644257545, -0.007377480622380972, 0.014270927757024765, -0.008123699575662613, -0.01505344919860363, -0.011286052875220776, 0.009438657201826572, 0.01643294468522072, 0.007377480622380972, -0.000994285917840898, -0.020668240264058113, 0.021813785657286644, -0.005522018298506737, -0.0006625211681239307, 0.004007395822554827, -0.012665549293160439, 0.009075632318854332, 0.017312273383140564, 0.005396976135671139, -0.013851432129740715, 0.008825547993183136, -0.012818826362490654, 0.0034467235673218966, 0.009543531574308872, -0.012326725758612156, -0.00016890760161913931, 0.0053485725075006485, -0.006953950971364975, 0.004485378973186016, 0.024653451517224312, -0.00627630390226841, 0.016384541988372803, 0.014625885523855686, 0.006336808204650879, 0.004384538624435663, 0.014795297756791115, -0.0023717652074992657, 0.016352273523807526, 0.0044813454151153564, 0.015101851895451546, -0.001518655801191926, -0.019167736172676086, 0.0134884063154459, -0.0025270595215260983, 0.004945211112499237, 0.016908911988139153, 0.0029243703465908766, 0.0034386562183499336, 0.016860507428646088, 2.320903877262026e-05, 0.002646051114425063, 0.002329412382096052, 0.021362021565437317, 0.021684711799025536, 0.005453446414321661, 0.0202648788690567, -0.004912942182272673, -0.010681010782718658, 0.0027267232071608305, 0.011826557107269764, -0.015271264128386974, 0.018845045939087868, -0.03041345253586769, -0.003115967148914933, -0.022217148914933205, 0.031833283603191376, -0.007437984924763441, -0.002287059323862195, 0.0004941177321597934, -0.008446388877928257, -0.0006529413512907922, 0.0019401685567572713, -0.011681347154080868, -0.027557654306292534, 0.002700504846870899, -0.017086390405893326, -0.01213311217725277, -0.00013084037345834076, 0.015835970640182495, 0.0072605060413479805, 0.007913951762020588, -0.003571765497326851, -0.008454455994069576, -0.0041868919506669044, -0.009067565202713013, -0.005114622879773378, 0.016231264919042587, 0.00301916035823524, 0.012665549293160439, -0.0014047061558812857, -0.018473953008651733, -0.0032410090789198875, -0.0009645380196161568, 0.007530758157372475, 0.0010689077898859978, 0.008143867366015911, 0.019361348822712898, 0.008059161715209484, 0.012697817757725716, -0.005356640089303255, -0.021620173007249832, 0.00264201732352376, -0.006473951041698456, -0.012899498455226421, -0.010689077898859978, 0.021491097286343575, 0.0039247069507837296, 0.006405379623174667, 0.0029163032304495573, 0.0035737822763621807, 0.012609078548848629, 4.960085061611608e-05, -0.01155227143317461, 0.002186218975111842, -0.016973448917269707, -0.0011173111852258444, -0.0012131094699725509, -0.02268504723906517, -0.0020833618473261595, -0.027234964072704315, 0.009527397342026234, 0.012423532083630562, 0.002395967021584511, -0.009277313016355038, 0.002206386998295784, 0.0058810096234083176, 0.02331429161131382, 0.005392942577600479, 0.0059213461354374886, 0.011334456503391266, 0.03220437839627266, 0.02552471123635769, -0.02071664296090603, -0.020845718681812286, -0.020329415798187256, -0.0009458825807087123, -0.007575127761811018, -0.004239328671246767, 0.011632943525910378, -0.0009801683481782675, 0.00026042023091576993, -0.007139497436583042, -0.005687396042048931, -0.008648069575428963, 0.00863193441182375, -0.02518588863313198, -0.0027085719630122185, -0.017505886033177376, -0.013399667106568813, 0.0062157995998859406, -0.005897144321352243, -0.022039668634533882, 0.012310591526329517, -0.0020642022136598825, 0.002097479533404112, -0.011729750782251358, -0.0005137816187925637, 0.019780844449996948, -0.01019697729498148, 0.008123699575662613, 0.00909176655113697, -0.016570087522268295, -0.003650421043857932, 0.011883027851581573, -0.021055467426776886, 0.007809077389538288, -0.010600338689982891, -0.0022386559285223484, -0.03304336965084076, 0.004691093694418669, 0.0025189921725541353, -3.655462933238596e-05, 0.0072968085296452045, 0.022249417379498482, -0.004666891880333424, -8.268909732578322e-05, -0.0012534456327557564, 0.011310255154967308, -0.017634961754083633, 0.009180506691336632, -0.005021850112825632, -0.0010779834119603038, 0.008543195202946663, -0.001238319557160139, -0.006348908878862858, -0.008849750272929668, -0.006123026832938194, -0.003706891555339098, 0.010826220735907555, -0.01776403747498989, -0.027444712817668915, 0.015134121291339397, -0.023282021284103394, 0.022330088540911674, -0.0022285720333456993, 0.018264206126332283, 0.009825884364545345, 0.0028678998351097107, 0.008333447389304638, 0.006264203228056431, -0.009390254504978657, 0.003053446067497134, 0.008543195202946663, -0.0232013501226902, 0.011624876409769058, -0.0008410086156800389, -0.006578824948519468, -0.023023871704936028, 0.0014702524058520794, 0.007482354529201984, -0.005433278623968363, 0.0001754622207954526, -0.02142656035721302, 0.014698490500450134, 0.03607664629817009, 0.027202695608139038, -0.012576810084283352, 0.02570219151675701, -0.002194286324083805, 0.00039403370465151966, -0.010705212131142616, 0.007772774901241064, -0.003527395660057664, -0.004360337276011705, -0.0072968085296452045, 0.0009731094469316304, 0.0011596641270443797, 0.014214457012712955, 0.0008082354906946421, 0.015198659151792526, -0.01072134729474783, -0.013407734222710133, 0.013270591385662556, 0.004735463298857212, -0.006070589646697044, -0.012786557897925377, -0.002432269509881735, -0.029203368350863457, 0.0004479833005461842, -0.02205580286681652, 0.0052638668566942215, -0.004791934043169022, 0.01297210343182087, -0.009842019528150558, -0.022846391424536705, -0.026799334213137627, -0.015835970640182495, -0.011810422874987125, -0.006873278878629208, 0.033269252628088, 0.009527397342026234, 0.006288405042141676, -0.01301243994385004, 0.008043027482926846, 0.020635971799492836, -0.003525378881022334, -0.025637652724981308, 0.011326389387249947, 0.013206053525209427, 0.0010820170864462852, -0.001960336696356535, 0.018006054684519768, 0.001372437342070043, 0.009882355108857155, 0.004997648298740387, -0.0003647900011856109, -0.008071262389421463, 0.0156907606869936, -0.03105883114039898, -0.010100170038640499, -0.005126724019646645, 0.0036121017765253782, -0.00604235427454114, -0.0012695800978690386, 0.016021516174077988, 0.013004372827708721, -0.02228168584406376, -0.005469581112265587, 0.014149919152259827, 0.0038279001601040363, -0.01306084357202053, 0.017844710499048233, 0.026815468445420265, -0.00868033803999424, -0.0033499167766422033, 0.012584877200424671, 0.02312067709863186, 0.022814122959971428, -0.01894185319542885, 0.012205717153847218, 0.00040789926424622536, 0.013318995013833046, 0.01307697780430317, -0.013552944175899029, -0.004961345810443163, -0.027267232537269592, 0.030978158116340637, 0.007014455273747444, 0.014036977663636208, 0.006877312436699867, -0.018796643242239952, 0.0025532778818160295, -0.003914622589945793, 0.011060170829296112, 0.0057600014843046665, 0.007054791320115328, 0.002611765405163169, -0.006711934227496386, 0.008664203807711601, 0.014319331385195255, -0.014416137710213661, -0.007514623459428549, -0.014650087803602219, 0.01652168482542038, -0.020748913288116455, 0.014295129105448723, 0.004707227926701307, -0.014198322780430317, 0.0018584878416731954, 0.009220842272043228, 0.010326053015887737, -0.0029142864514142275, -0.0012947901850566268, 0.004763698671013117, -0.0030090762302279472, -0.005703530739992857, -0.0004933614400215447, -0.029106561094522476, 0.006937816739082336, 0.011584540829062462, 0.006332774646580219, -0.009390254504978657, 0.002611765405163169, 0.013141515664756298, 0.022249417379498482, -0.020345550030469894, -0.012044372968375683, -0.017651095986366272, 0.019587231799960136, -0.0020309248939156532, 0.009914624504745007, 0.0044329422526061535, -0.027154292911291122, 0.00674823671579361, -0.010697145015001297, -0.015400339849293232, 0.015037314034998417, -0.0134884063154459, -0.015384205617010593, -0.00348907639272511, -0.0036484042648226023, -0.009390254504978657, -0.005417143926024437, 0.0038097486831247807, 0.0017616810509935021, 0.012092775665223598, 0.009519330225884914, 0.00457411864772439, 0.004795967601239681, 0.01577143184840679, -0.01113277580589056, -0.0010527733247727156, 0.020119668915867805, -0.004092101939022541, -0.006832942832261324, -0.00604235427454114, 0.013101179152727127, -0.0014682356268167496, -0.015739163383841515, -0.008381851017475128, 0.002212437568232417, 0.031397655606269836, -0.01789311319589615, -0.004384538624435663, 0.030768411234021187, 0.002775126602500677, 0.020635971799492836, 0.019926054403185844, 0.0026964712888002396, -0.02100706286728382, 0.001726386952213943, 0.005885043181478977, 0.008817480877041817, -0.0038621858693659306, -0.004562017973512411, 0.009446725249290466, -0.016570087522268295, -0.009293447248637676, -0.018248071894049644, -0.011891094967722893, -0.015481011942029, 0.02049076184630394, -0.003642353694885969, 0.009656473062932491, 0.0018675634637475014, 0.01197176706045866, -0.0125445406883955, -0.004328068345785141, 0.0022447064984589815, -0.0009690758306533098, -0.028622528538107872, -0.014157986268401146, 0.001500504557043314, -0.009583868086338043, -0.022104207426309586, -0.003852101741358638, 0.007103194948285818, -0.02760605700314045, 0.008954623714089394, 0.011528070084750652, 0.01903866045176983, -0.01060840580612421, -0.025895804166793823, -0.02112000435590744, 0.003608067985624075, 0.009406388737261295, -0.017586559057235718, 0.006106892134994268, -0.006252102088183165, 0.015956979244947433, -0.0012393280630931258, -0.01984538324177265, 0.01354487705975771, -0.016481349244713783, 0.011850759387016296, -0.0071717663668096066, -0.014327398501336575, 0.004953278228640556, 0.00721210241317749, -0.0058084046468138695, 0.010180843062698841, -0.014682356268167496, 0.002601681277155876, 0.026089418679475784, -0.007107228506356478, 0.0006620169733650982, 0.017747903242707253, 0.008518993854522705, 0.004937143996357918, -0.02279798872768879, -0.0011263868073001504, 0.00027554627740755677, 0.056406062096357346, 0.005945547483861446, 0.02926790527999401, -0.010422859340906143, 0.003606051206588745, -0.035302191972732544, 0.0073089092038571835, 0.0011425212724134326, -0.011237649247050285, 0.0076800016686320305, -0.0029163032304495573, -0.021168408915400505, 0.026202358305454254, 0.0252988301217556, -0.014359666965901852, -0.009656473062932491, 0.015763364732265472, -0.011770086362957954, -0.008688405156135559, 0.01009210292249918, 0.004453110042959452, -0.00603832071647048, -0.012262187898159027, 0.006312606390565634, -0.004872606135904789, 0.018328743055462837, -0.0010678994003683329, -0.007022522855550051, -0.017376810312271118, -0.0049290768802165985, 0.02810622565448284, -0.005106555763632059, -0.019393617287278175, 0.016255466267466545, 0.018651433289051056, 0.0016709247138351202, 0.000994285917840898, 0.01629580184817314, 0.00041924379183910787, 0.011326389387249947, -0.006728068925440311, -0.01297210343182087, 0.012189582921564579, 0.0068369763903319836, -0.033269252628088, 0.004957312252372503, 0.008906220085918903, -0.015844037756323814, -0.007280673831701279, 0.004900841508060694, 0.015811767429113388, -0.025089081376791, -0.008430253714323044, -0.007042690645903349, 0.0019734457600861788, 0.010858490131795406, 0.006598993204534054, -0.012326725758612156, -0.011229582130908966, 0.014658154919743538, -0.017586559057235718, 0.00036554629332385957, 0.018957987427711487, 0.014238658361136913, -0.01787697896361351, 0.0020934459753334522, -0.010156640782952309, 0.005163026507943869, 0.011302187107503414, 0.029316309839487076, 0.00551395071670413, -0.013690087012946606, 0.001437983475625515, -0.01892571896314621, -0.016279667615890503, -0.013109246268868446, -0.015811767429113388, -0.008018825203180313, -0.02362084574997425, -0.010358321480453014, -0.010301850736141205, -6.390758062480018e-05, 0.016182860359549522, 0.0045579844154417515, -0.005909244995564222, -0.011576473712921143, 0.007179833482950926, 0.01411765068769455, -0.004077984020113945, -0.0014934457140043378, -0.02541176974773407, -0.007546892389655113, 0.003432605881243944, 0.01411765068769455, 0.006877312436699867, -0.0011536136735230684, -0.011334456503391266, 0.01913546584546566, 0.0015610087430104613, -0.006611093878746033, -1.2203258847875986e-05, -0.0013966389233246446, 0.006699833553284407, 0.004150588996708393, -0.004037647973746061, -0.008462523110210896, -0.006853110622614622, -0.005925379693508148, -0.0034588242415338755, 0.008825547993183136, -0.00207731151022017, 0.000718487543053925, 0.002125714672729373, 0.01881277747452259, -0.007252438459545374, 0.009833951480686665, 0.009858153760433197, -0.008761010132730007, 0.017118658870458603, -4.3613454181468114e-05, -0.027251098304986954, 0.007966388016939163, 0.03814185783267021, -0.013972439803183079, -0.013786894269287586, -0.010237312875688076, -0.015593953430652618, 0.01206857431679964, -0.006998321041464806, 0.01882891170680523, 0.028461182489991188, 0.004174790810793638, -0.00046588244731538, 0.010059834457933903, -0.013690087012946606, -0.006990253925323486, -0.00972907803952694, -0.002276975428685546, -0.0017465549753978848, 0.0018998323939740658, -0.020571433007717133, 0.028832275420427322, 0.014190255664288998, -0.0006968068773858249, 0.018361013382673264, -0.00339832017198205, -0.00019399164011701941, 0.027831939980387688, 0.013149582780897617, 0.024395300075411797, 0.002648067893460393, -0.0035294126719236374, -0.002541176974773407, 0.013464204967021942, -0.0026722694747149944, 0.012988238595426083, 0.00022966391406953335, 0.023878997191786766, -0.017070256173610687, 0.0013976474292576313, 0.007091094274073839, -0.0028699166141450405, 0.004299832973629236, 0.020635971799492836, 0.009769413620233536, -0.005953614600002766, -0.015481011942029, 0.007853447459638119, -0.016061851754784584, -0.017070256173610687, 0.007655800320208073, -0.018054457381367683, -0.03646387532353401, -0.005247732158750296, -0.0069620185531675816, 0.018554626032710075, -0.0036020176485180855, 0.01911933161318302, -0.01260101143270731, 0.00820033811032772, 0.001182857435196638, 0.0183126088231802, 0.025976477190852165, -0.0032410090789198875, -0.0003685715200845152, 0.010358321480453014, -0.007696136366575956, 0.008317313157022, 0.010172775015234947, -0.013625549152493477, -0.008406052365899086, 0.02625076286494732, -0.0017576474929228425, 0.014246726408600807, -0.008127733133733273, 0.011705548502504826, -0.007195968180894852, -0.015932776033878326, -0.028735468164086342, -0.024847064167261124, -0.0012514288537204266, 0.0091563044115901, 0.002025882713496685, 0.0172638688236475], "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac": [-0.0003491707902867347, -0.006847027689218521, -0.009826848283410072, 0.047014184296131134, -0.03889305144548416, -0.027622904628515244, -0.006418872624635696, 0.03474961593747139, -0.024142419919371605, 0.021255826577544212, 0.027540037408471107, 0.018396854400634766, 0.006636403035372496, -0.00984065979719162, -0.018175872042775154, -1.147807233792264e-05, -0.010821273550391197, 0.022333119064569473, -0.013148503378033638, -0.016242267563939095, 0.07148808240890503, 0.003307842882350087, -0.045688286423683167, 0.010330966673791409, 0.020800048485398293, -0.03066142462193966, -0.013839075341820717, 0.014681573957204819, -0.035744041204452515, -0.014253418892621994, 0.015675999224185944, -0.01035168394446373, 0.010821273550391197, 0.01683616079390049, -0.00010736246622400358, -0.05052229389548302, 0.008576911874115467, 0.045135825872421265, -0.01580030284821987, 0.021242015063762665, -0.02429434470832348, 0.027512414380908012, -0.029086919501423836, -0.011152748018503189, -0.019971361383795738, -0.00977850891649723, -0.032677896320819855, 0.0032905787229537964, -0.026738973334431648, -0.015455015935003757, 0.009163899347186089, -0.008204002864658833, -0.036489859223365784, 0.005220728926360607, 0.027774831280112267, -0.029197411611676216, -0.004084737040102482, 0.053616058081388474, -0.01401862408965826, -0.05822908505797386, -0.03231880068778992, -0.010551949962973595, 0.0035340054892003536, -0.007803470827639103, 0.01820349507033825, 0.0018524611368775368, -0.017278127372264862, 0.003604789264500141, -0.034887731075286865, 0.022264061495661736, -0.01498542632907629, 0.03314748778939247, -0.0019957548938691616, 0.021117711439728737, 0.04292599484324455, 0.00046872618258930743, 0.056847941130399704, 0.009460845030844212, 0.0213248822838068, -0.01780296303331852, 0.029390770941972733, -0.025564998388290405, 0.03502584248781204, 0.03223593160510063, 0.04502533748745918, -0.007927773520350456, -0.01126324012875557, -0.03742903843522072, -0.017996322363615036, -0.03394855186343193, 0.0369594469666481, 0.03334084525704384, -0.00053648860193789, -0.016960464417934418, 0.00283652707003057, 0.01825874112546444, 0.0011308126850053668, 0.00013865403889212757, 0.01774771697819233, -0.02519208937883377, -0.011511845514178276, 0.006260041147470474, -0.003254323499277234, -0.005065350327640772, 0.034086667001247406, 0.007603204809129238, 0.005424448288977146, 0.005641978234052658, -0.028644952923059464, 0.009702545590698719, 0.01807919144630432, -0.06739988923072815, -0.021131522953510284, 0.019695131108164787, -0.012858462519943714, -0.02320324070751667, -0.04601975902915001, -0.017333373427391052, 0.00012290035374462605, -0.003193898359313607, 0.005928566213697195, -0.046544596552848816, 0.01614558883011341, -0.0013915038434788585, -0.026297006756067276, 0.021918775513768196, -0.0002030715113505721, 0.014888745732605457, 0.03726330026984215, 0.007033482193946838, -0.021311070770025253, -0.0006046826601959765, 0.025979341939091682, -0.014308664947748184, 0.009571337141096592, 0.0017989417538046837, 0.02980511449277401, 0.060715146362781525, -0.018507346510887146, 0.0029073108453303576, -0.03389330580830574, -0.026297006756067276, -0.02900405041873455, 0.008321400731801987, 0.001294823712669313, -0.014025529846549034, -0.0106624411419034, 0.014792066067457199, -0.018963124603033066, 0.013217560015618801, -0.05182057246565819, -0.008190191350877285, -0.012078115716576576, -0.003798149526119232, 0.05524580925703049, 0.005911301821470261, -0.008286871947348118, 0.009122464805841446, -0.006432684138417244, 0.024363402277231216, 0.04679320007562637, -0.03839583694934845, 0.009882094338536263, 0.026973767206072807, 0.049224019050598145, 0.01705714501440525, 0.046434104442596436, 0.011187276802957058, -0.013721678406000137, 0.016988087445497513, 0.0004911698051728308, -0.03845108300447464, 0.05717941373586655, -0.025288769975304604, 0.03270551934838295, -0.011712111532688141, 0.04483197629451752, 0.012823933735489845, 0.028810691088438034, -0.014709196984767914, -0.02621413767337799, 0.0014838679926469922, -0.0051585775800049305, 0.004896160215139389, 0.0005524581065401435, 0.023286109790205956, -0.0015995388384908438, 0.040854278951883316, -0.012105738744139671, 0.008058982901275158, -0.013873604126274586, 0.002190841594710946, 0.02059287577867508, 0.000674171547871083, -0.01791345328092575, -0.03602026775479317, -0.017499109730124474, 0.031932078301906586, -0.02911454252898693, 0.037732888013124466, 0.007858716882765293, -0.026697538793087006, -0.016905218362808228, 0.022816520184278488, -0.023217052221298218, -0.015206409618258476, -0.01393575593829155, -0.04682082310318947, 0.02325848676264286, -0.024156231433153152, 0.03510871157050133, -0.032898880541324615, 0.03452863171696663, 0.0230375025421381, -0.006912631914019585, 0.018106814473867416, 0.009336542338132858, 0.014792066067457199, 0.006308380980044603, -0.049969837069511414, -0.004854725673794746, 0.0011325391242280602, -0.00469244085252285, -0.025344016030430794, -0.05248352140188217, -0.008666686713695526, -0.030385196208953857, 0.005824980325996876, -0.02103484235703945, -0.0495002456009388, 0.033644698560237885, -0.010703875683248043, 0.02695995569229126, -0.021407751366496086, 0.013238277286291122, 0.030191835016012192, 0.03372756764292717, -0.003843036713078618, -0.02770577371120453, -0.02719474956393242, 0.012727254070341587, 0.010600290261209011, -0.017664847895503044, -0.04295361787080765, -0.016849972307682037, 0.019929926842451096, 0.004654459655284882, 0.03173871710896492, 0.004878895822912455, 0.03259502723813057, -0.00850094947963953, 0.00219774735160172, -0.01273415982723236, -0.003130020573735237, -0.018410665914416313, 0.01962607353925705, 0.03624125197529793, -0.034942977130413055, 0.017264315858483315, 0.010227380320429802, -0.005693771410733461, 0.02167017012834549, -0.017084766179323196, 0.033810436725616455, 0.04383755102753639, -0.07861478626728058, 0.022733651101589203, -0.008480232208967209, 0.03323035687208176, 0.03502584248781204, 0.022623158991336823, -0.010593384504318237, 0.02155967801809311, 0.03974936157464981, -0.029252657666802406, -0.020951973274350166, -0.008266154676675797, 0.018272552639245987, -0.014805877581238747, -0.021877340972423553, -0.010255003347992897, 0.0010548497084528208, 0.03143486753106117, 0.004537062253803015, 0.018244929611682892, 0.026462743058800697, 0.0044852690771222115, -0.034445762634277344, -0.026172703132033348, -0.01643562875688076, 0.002069991547614336, -0.006878103595227003, 0.007844905368983746, 0.0358545295894146, 0.00043419754365459085, 0.017651036381721497, -0.032512158155441284, -0.009633488021790981, -0.018286364153027534, -0.009426316246390343, 0.0028002720791846514, -0.0230375025421381, -0.023645207285881042, -0.030440442264080048, 0.046489350497722626, 0.005669601261615753, 0.050246063619852066, 0.030468065291643143, -0.030302327126264572, 0.041213374584913254, 0.016642801463603973, -0.03220830857753754, -0.018355419859290123, -0.007810376584529877, 0.001788583118468523, 0.023244675248861313, -0.05784236267209053, -0.02479155734181404, -0.024487705901265144, -0.004585402086377144, -0.0167809147387743, 0.020689556375145912, -0.05311884731054306, 0.027733396738767624, 0.03742903843522072, -0.04817434772849083, 0.03433527052402496, 0.0015658735064789653, 0.0008882490801624954, -0.04762188717722893, -0.03328560292720795, -0.007161238230764866, -0.019708942621946335, 0.024087173864245415, -0.04452812299132347, -0.03712518513202667, -0.03566117212176323, -0.05010795220732689, 0.016421817243099213, -0.02383856661617756, -0.013569752685725689, -0.005431353580206633, 0.021021030843257904, -0.0012050492223352194, -0.012775593437254429, -0.007603204809129238, 0.02724999561905861, -0.01316922064870596, 0.023244675248861313, -0.009813036769628525, 0.0007712832884863019, 0.008245437406003475, 0.043423205614089966, 0.007375315763056278, -0.005845697596669197, -0.0312691293656826, -0.03491535410284996, 0.024529140442609787, 0.003406249452382326, 0.017844397574663162, -0.03770526498556137, -0.06773136556148529, 0.005003198981285095, -0.053781796246767044, 0.006757253315299749, 0.029667001217603683, 0.033534206449985504, 0.003076501190662384, -0.040467556565999985, -0.024777745828032494, -0.0012335353530943394, 0.008259248919785023, -0.04077140986919403, -0.020233778282999992, -0.015675999224185944, -0.03325797989964485, 0.03919690102338791, -0.002734667621552944, -0.006570798810571432, 0.008210908621549606, 0.006515552755445242, -0.014136021956801414, -0.038754936307668686, 0.00031744761508889496, 0.02053762972354889, 0.004423117730766535, -0.0060770390555262566, -0.010952481999993324, -0.019653696566820145, -0.00816256832331419, -0.03726330026984215, 0.016711857169866562, -0.030689047649502754, -0.019778000190854073, -0.020675744861364365, -0.010987010784447193, 0.01248555351048708, -0.009453939273953438, 0.0420696847140789, 0.00804517138749361, -0.018949313089251518, -0.019598450511693954, 0.008328305557370186, 0.005341579206287861, 0.011477317661046982, -0.016048908233642578, -0.002807177836075425, 0.01168448943644762, 0.008148756809532642, 0.018162060528993607, 0.01256842166185379, -0.028506837785243988, 0.03845108300447464, 0.012948237359523773, 0.022305496037006378, 0.03331322222948074, -0.017250504344701767, 0.030744293704628944, -0.056958429515361786, 0.025509752333164215, 0.03889305144548416, 0.027029013261198997, 0.004530156496912241, 0.04242878407239914, -0.014695385470986366, 4.1946892451960593e-05, 0.010386212728917599, 0.016739480197429657, -0.002729488303884864, -0.011912377551198006, 0.045577794313430786, 0.04925164207816124, 0.00595964165404439, -0.011111313477158546, 0.005476240999996662, -0.002669063163921237, 0.013949567452073097, -0.003967339638620615, 0.01464014034718275, -0.002035462763160467, 0.00830758921802044, -0.00045189345837570727, 0.013811452314257622, -0.011877849698066711, -0.030799539759755135, -0.015358335338532925, -0.0253163930028677, 0.01774771697819233, -0.006636403035372496, 0.01319684274494648, -0.0036842050030827522, 0.0324292927980423, -0.050135575234889984, -0.027719585224986076, 0.01012379489839077, 0.0043506077490746975, 0.018617838621139526, -0.0016409732634201646, 0.017706282436847687, -0.0369870699942112, -0.03088240884244442, 0.002713950350880623, 0.006291116587817669, -0.022554101422429085, -0.008528572507202625, -0.034832485020160675, -0.016311325132846832, -0.011732828803360462, 0.009951151907444, 0.03521920368075371, -0.01487493421882391, -0.0156345646828413, -0.0057421112433075905, 0.04715229943394661, -0.013445449061691761, -0.02365901879966259, -0.0023980133701115847, -0.030578555539250374, -0.027899134904146194, 0.013162314891815186, -0.005572921130806208, -0.030578555539250374, -0.016463251784443855, -0.008894575759768486, -0.005458976607769728, -0.010330966673791409, -0.054914336651563644, -0.00027925032190978527, 0.005175841972231865, 0.0005511632771231234, 0.013445449061691761, 0.023907624185085297, 0.003254323499277234, 0.020717179402709007, 0.0034684010315686464, -0.0065293642692267895, 0.011553280055522919, -0.018576404079794884, 0.01955701783299446, -0.03590977564454079, 0.024100985378026962, -0.01080746203660965, 0.02285795472562313, 0.00787252839654684, -0.022706028074026108, 0.018396854400634766, -0.029307901859283447, 0.029584132134914398, 0.006781423464417458, -0.01484731212258339, -0.028700198978185654, 0.0149301802739501, -0.027484791353344917, -0.008010642603039742, 0.01763722486793995, 0.004726969636976719, 0.011277050711214542, -0.0028382535092532635, -0.0014666036004200578, 0.009826848283410072, -0.012630573473870754, -0.038368213921785355, -0.03253978118300438, -0.021642547100782394, -0.016822349280118942, -0.0038637539837509394, -0.012388872914016247, -0.019349845126271248, 0.06165432557463646, -0.021573489531874657, -0.01649087481200695, 0.01464014034718275, -0.03908641263842583, 0.011767357587814331, -0.0031006711069494486, 0.008031359873712063, -0.006166813429445028, -0.00909484177827835, 0.0065293642692267895, -0.008121133781969547, 0.0053519378416240215, 0.03604789078235626, 0.008770272135734558, -0.02469487674534321, 0.008652875199913979, 0.01390122715383768, -0.008038265630602837, 0.014543459750711918, -0.02792675793170929, 0.02878306806087494, -0.05549441650509834, 0.0012861915165558457, -0.005707582924515009, -0.0021753038745373487, 0.011145842261612415, -0.0006871197838336229, -0.008487137965857983, 0.02024758979678154, -0.014460590668022633, -0.02223643846809864, -0.003801602404564619, -0.002278889762237668, 0.017153823748230934, 0.028534460812807083, -0.021200580522418022, -0.010655535385012627, -0.012582233175635338, 0.03190445527434349, -0.009564431384205818, 0.02473631128668785, 0.02889355830848217, -0.012975859455764294, 0.060438916087150574, 0.024321967735886574, 0.007389127276837826, 0.017954887822270393, 0.01614558883011341, 0.0255926214158535, -0.02798200398683548, -0.0074789016507565975, 0.023424223065376282, -0.001332805142737925, 0.03132437542080879, -0.0049652173183858395, 0.03690420091152191, -0.0032215213868767023, -0.03787100315093994, -0.04110288247466087, -0.011166559532284737, 0.032733142375946045, 0.003580619115382433, 0.03372756764292717, -0.019418902695178986, -0.0017134833615273237, -0.0012654743622988462, 0.040191326290369034, 0.009509185329079628, -0.01260295044630766, 0.04414140433073044, 0.007506524678319693, 0.02207070216536522, -0.010082360357046127, 0.021007219329476357, -0.0167809147387743, -0.01707095466554165, 0.0039017354138195515, 0.010386212728917599, -0.01162924338132143, 0.009398693218827248, 0.011926189064979553, -0.012803216464817524, 0.002791639883071184, 0.004174511414021254, -0.0092467674985528, 0.00949537381529808, -0.008818612433969975, -0.01225766446441412, 0.00038650486385449767, 0.016794726252555847, 0.022954635322093964, 0.030191835016012192, -0.03143486753106117, 0.03759477287530899, -0.037732888013124466, 0.021753037348389626, 0.012105738744139671, -0.01939127966761589, -0.009509185329079628, 0.004899612627923489, 0.01552407257258892, -0.037732888013124466, -0.008169474080204964, 0.013514506630599499, -0.008431891910731792, 0.00926748476922512, -0.033175110816955566, -0.012644384987652302, 0.02035808190703392, -0.008010642603039742, -0.02285795472562313, -0.00063619005959481, 0.013770018704235554, 0.00260863802395761, 0.04099239036440849, -0.009792320430278778, 0.008466420695185661, -0.0013785556657239795, -0.020150909200310707, 0.010337872430682182, 0.022885577753186226, -0.014833500608801842, 0.01384598109871149, -0.014432968571782112, 0.020951973274350166, 0.021808283403515816, -0.005731753073632717, 0.0021580394823104143, 0.0432298481464386, 0.02542688511312008, 0.008121133781969547, 0.012174795381724834, -0.028189174830913544, 0.011256334371864796, 0.006954066455364227, 0.00306441611610353, 0.004229757469147444, -0.007900151424109936, 0.02331373281776905, 0.0035219204146414995, 0.004440382122993469, 0.010683158412575722, -0.03331322222948074, 0.0012672008015215397, -0.024183854460716248, 0.011463506147265434, 0.005389919504523277, 0.005407183896750212, 0.004195228684693575, -0.006059774663299322, -0.034031420946121216, -0.026628481224179268, -0.019432714208960533, -0.029584132134914398, 0.004133077338337898, -0.018686896190047264, -0.016822349280118942, -0.02520590089261532, 0.011864038184285164, -0.03231880068778992, 0.0037014693953096867, -0.02046857215464115, -0.0023185976315289736, -0.030219458043575287, 0.0034425046760588884, 0.009067218750715256, -0.026172703132033348, -0.004530156496912241, -0.02200164459645748, 0.007078369613736868, -0.0024705235846340656, -0.025150654837489128, -0.024501517415046692, 0.008134945295751095, -0.029086919501423836, 0.03720805421471596, 0.001674638595432043, -0.0156345646828413, -0.031711094081401825, 0.0013656073715537786, 0.009792320430278778, -0.014515836723148823, -0.007803470827639103, 0.01660136692225933, 0.021918775513768196, 0.0019059805199503899, -0.004716611001640558, -0.015952227637171745, 0.007879434153437614, -0.023410411551594734, 0.05077090114355087, -0.016366571187973022, 0.026006964966654778, -0.01955701783299446, -0.02872782200574875, -0.02196021005511284, 5.492210402735509e-05, -0.007610110566020012, -0.00392590556293726, 0.020123286172747612, 0.019543206319212914, 0.0213248822838068, -0.011988340876996517, 0.020109474658966064, -0.005365749355405569, -0.00036751411971636117, -0.020123286172747612, 0.007402938790619373, -0.002361758379265666, 0.0176234133541584, -0.024018116295337677, 0.020606687292456627, 0.011525657027959824, 0.022098325192928314, -0.04452812299132347, -0.014750631526112556, 0.017954887822270393, 0.014971614815294743, -0.013866698369383812, 0.0055280341766774654, 0.01538595836609602, 0.04582640156149864, -0.03577166423201561, 0.04394804313778877, 0.0007673988584429026, 0.0058008101768791676, 0.011394448578357697, 0.029142165556550026, 0.004005321301519871, 0.014695385470986366, 0.020744802430272102, 0.003485665423795581, -0.0028952257707715034, -0.013928850181400776, -0.01854878105223179, 0.02041332796216011, 0.01433628797531128, 0.006546628661453724, -0.015372146852314472, 0.01944652572274208, 0.006215153727680445, 0.05414089560508728, 0.036766085773706436, 0.029086919501423836, 0.023797133937478065, 0.03212543949484825, -0.022595535963773727, 0.014156739227473736, -0.006021793466061354, -0.006788329221308231, -0.0072233895771205425, -0.0037843380123376846, -0.056792695075273514, 0.02872782200574875, 0.001146350521594286, 0.014598705805838108, -0.009985680691897869, 0.02582741715013981, 0.006373985670506954, -0.015316900797188282, -0.0041261715814471245, 0.010593384504318237, -0.01803775690495968, 0.003114482620730996, -0.030744293704628944, 0.025965530425310135, -0.01847972348332405, 0.005541845224797726, 0.006349815521389246, -0.0019871226977556944, 0.002460164949297905, 0.0019180654780939221, -0.03823010250926018, 0.04577115550637245, 0.025634055957198143, 0.011981435120105743, -0.0298603605479002, 0.003485665423795581, -0.021090088412165642, -0.02052381820976734, -0.008148756809532642, 0.01694665290415287, 0.021186769008636475, 0.0088117066770792, 0.010172135196626186, -0.03082716278731823, -0.011567091569304466, 0.0025499395560473204, -0.002335862023755908, 0.04869918152689934, -0.0061081149615347385, 0.0038603011053055525, 0.0022529931738972664, 0.018742142245173454, 0.021918775513768196, -0.01729193888604641, -0.0013759660068899393, 0.014598705805838108, -0.0040433029644191265, 0.0016677329549565911, -0.009806131012737751, 0.003974245395511389, -0.02867257595062256, -0.0052725221030414104, 0.00612883223220706, 0.009295107796788216, 0.02383856661617756, 0.0068642920814454556, 0.014322476461529732, -0.0489201657474041, 0.04198681563138962, -0.006235870998352766, -0.04861631244421005, -0.002943565836176276, 0.005956188775599003, 0.02052381820976734, 0.043257471174001694, 0.006570798810571432, 0.02178066037595272, 0.033810436725616455, 0.06159907951951027, 0.03234642371535301, 0.0045750439167022705, 0.010109983384609222, 0.0035944306291639805, -0.03071667067706585, 0.004070925526320934, -0.03908641263842583, 0.015247844159603119, -0.014101493172347546, 0.016117965802550316, 0.028285855427384377, 0.019529394805431366, -0.01574505679309368, 0.009053407236933708, -0.006401608232408762, -0.024031927809119225, 0.01831398718059063, -0.004430023487657309, 0.024183854460716248, 0.03309224173426628, -0.003912094049155712, -0.020385704934597015, 0.012326722033321857, -0.006543175783008337, -0.01661517843604088, -0.010883424431085587, 0.01157399732619524, 0.0012231768341735005, -0.03759477287530899, -0.014198173768818378, -0.02121439203619957, 0.005048085935413837, 0.021863529458642006, -0.011484222486615181, -0.023700453341007233, 0.011021539568901062, -0.0047684041783213615, -0.01796869933605194, 0.021062465384602547, -0.004568138159811497, -0.011732828803360462, -0.0033579093869775534, -0.009060312993824482, -0.010690064169466496, -0.027319053187966347, 0.019874680787324905, 0.00016746386245358735, 0.001978490501642227, -0.02428053319454193, 0.024142419919371605, -0.0036738463677465916, -0.03787100315093994, -0.041600096970796585, 0.011353014037013054, 0.024073362350463867, -0.015620753169059753, -0.0010177313815802336, -0.005976906046271324, 0.020095663145184517, -0.003406249452382326, 0.010310249403119087, 0.007019670680165291, -0.022761274129152298, -0.011056068353354931, 0.03635174408555031, 0.0213248822838068, 0.020275212824344635, -0.03430764749646187, -0.008494043722748756, -0.004309173207730055, 0.003266408573836088, 0.003086859593167901, 0.036489859223365784, 0.01100082229822874, -0.006325645372271538, 0.0040640197694301605, -0.02092435024678707, -0.01544120442122221, -0.019405091181397438, 0.021711602807044983, -0.02251266874372959, -0.012326722033321857, -0.002499873051419854, 0.006325645372271538, 0.021766848862171173, -0.016863783821463585, -0.016062719747424126, -0.024612009525299072, -0.018811197951436043, -0.019805623218417168, -0.013051822781562805, -0.009536808356642723, 0.02292701229453087, -0.016352759674191475, -0.03952837735414505, -0.015565507113933563, -0.004046755842864513, 0.014156739227473736, -0.003756715217605233, 0.026131268590688705, 0.009295107796788216, 0.03963886946439743, -0.025951718911528587, 0.0014899104135110974, 0.01080746203660965, 0.02969462424516678, -0.003076501190662384, -0.0025430337991565466, 0.009087936021387577, -0.007195767015218735, 0.03160060569643974, -0.026573235169053078, -0.03099289909005165, 0.013756207190454006, -0.0014778254553675652, 0.02974986843764782, -0.01968131959438324, 0.024197665974497795, -0.01145660039037466, -0.023672830313444138, -0.015261655673384666, -0.011594714596867561, 0.006035604979842901, 0.01319684274494648, -0.012160983867943287, 0.001205912441946566, -0.027401922270655632, -0.0014432967873290181, -0.03212543949484825, -0.03071667067706585, 0.027567660436034203, -0.03248453512787819, -0.010510515421628952, 0.010655535385012627, 0.013956473208963871, 0.015551695600152016, -0.007119803689420223, 0.016532309353351593, -0.0024325421545654535, 0.022650782018899918, 0.029418393969535828, 0.01260295044630766, 0.00769297918304801, -0.003045425284653902, 0.01603509671986103, -0.01950177177786827, -0.007105992641299963, -0.04425189271569252, -0.0046233837492764, -0.002729488303884864, -0.011960717849433422, -0.0187697634100914, -0.008176379837095737, 0.054638106375932693, 0.010199758224189281, -0.0011687942314893007, 0.02133869379758835, -0.011318485252559185, -0.0020889821462333202, 0.016504686325788498, -0.012105738744139671, -0.0018714518519118428, 0.02632462978363037, -0.015593130141496658, -0.008991255424916744, 0.002745026256889105, 0.03941788524389267, -0.029418393969535828, -0.002339314902201295, 0.019667508080601692, 0.0027519320137798786, -0.0003470127412583679, 0.013183031231164932, -0.01168448943644762, -0.014626328833401203, -0.0025067785754799843, 0.009336542338132858, -0.004868537187576294, 0.025219712406396866, -0.005358843598514795, -0.01968131959438324, -0.021007219329476357, 0.005807715933769941, -0.010475986637175083, 0.018521158024668694, -0.017098577693104744, 0.0010401750914752483, -0.06745513528585434, -0.03491535410284996, -0.01718144677579403, -0.010103077627718449, 0.004198681563138962, 0.0010220474796369672, 0.009460845030844212, 0.02724999561905861, -0.006277305074036121, 0.008611440658569336, -0.012506270781159401, -0.001332805142737925, 0.0380919873714447, 0.009170804172754288, -0.009619676508009434, -0.020551441237330437, -0.025675490498542786, -0.022719839587807655, 0.020855294540524483, -0.025730736553668976, -0.009163899347186089, 0.025344016030430794, 0.033423714339733124, 0.008604534901678562, -0.007962302304804325, 0.016822349280118942, 0.0005770597490482032, 0.007706790696829557, -0.020800048485398293, -0.023589961230754852, 0.032788388431072235, 0.022996068000793457, -0.01847972348332405, -0.006833216175436974, 0.02167017012834549, 0.013404014520347118, 0.01609034277498722, -0.005590185523033142, 0.006408513989299536, 0.032042570412158966, 0.010386212728917599, 0.019653696566820145, -0.0023945607244968414, -0.017872020602226257, 0.003295757807791233, -0.006166813429445028, -0.013984096236526966, -0.03765001893043518, 0.007782753556966782, -0.0018403760623186827, 0.002042368520051241, 0.004333343356847763, -0.017789151519536972, -0.021794471889734268, 0.006018340587615967, 0.008666686713695526, -0.013873604126274586, 0.012913708575069904, -0.004247021861374378, -0.007499618921428919, 0.010828179307281971, 0.029335524886846542, -0.025330204516649246, 0.003573713358491659, -0.012692725285887718, 0.014184362255036831, 0.004985934589058161, 0.012692725285887718, 0.03276076540350914, 0.0038948296569287777, 0.008024454116821289, 0.0010841990588232875, 0.005072256084531546, 0.007175049744546413, 0.03422477841377258, -0.0029556509107351303, 0.016256079077720642, -0.003371720900759101, 0.013659526593983173, 0.0005882815457880497, -0.03248453512787819, -0.019253164529800415, 0.021090088412165642, 0.005054991692304611, -0.02535782754421234, -0.020454760640859604, -0.009053407236933708, -0.0057421112433075905, -0.009460845030844212, 0.015206409618258476, 0.00903959572315216, 0.0064464956521987915, 0.02371426485478878, -0.0004428297106642276, -0.014267230406403542, 0.054969582706689835, -0.010572667233645916, -0.013189936988055706, 0.0027018655091524124, -0.014350099489092827, -0.007188861258327961, -0.011422071605920792, -0.0010893783764913678, -0.00830758921802044, -0.011145842261612415, -0.010130700655281544, -0.008238531649112701, 0.019322222098708153, -0.00214595440775156, -0.03441813960671425, -0.024639632552862167, 0.01854878105223179, -0.010987010784447193, -0.0062220594845712185, -0.028589706867933273, 0.006629497278481722, -0.005061897449195385, -0.003380353096872568, -0.019087428227066994, 0.0028693294152617455, -8.864147093845531e-05, 0.010759121738374233, -0.00015861590509302914, -0.02678040601313114, 0.0022236439399421215, -0.007019670680165291, -0.009336542338132858, 0.005980358924716711, -0.020427139475941658, 0.009474656544625759, 0.009985680691897869, 0.017830586060881615, -0.016463251784443855, 0.0009598959586583078, -0.003409702330827713, 0.011649960651993752, 0.004913424141705036, -0.03544018790125847, 0.018217306584119797, -0.012609856203198433, -0.010206663981080055, -0.00041283294558525085, -0.004668271169066429, -0.025040164589881897, 0.0075341472402215, 0.015109729021787643, -0.005193106364458799, -0.005932019092142582, -0.008680498227477074, -0.009937340393662453, -0.02234693057835102, 0.02821679785847664, 0.03624125197529793, 0.036766085773706436, 0.007720602210611105, -0.019667508080601692, -0.008839329704642296, -0.0029988116584718227, -0.02110389992594719, 0.006757253315299749, -0.031932078301906586, 0.007541052997112274, -0.0005433943588286638, 0.0030661425553262234, 0.008632157929241657, -0.029390770941972733, 0.016863783821463585, 0.0020337363239377737, -0.024542951956391335, 0.0008088332251645625, 0.01043455209583044, 0.0030126231722533703, -0.03861682116985321, -0.013756207190454006, 0.002858970779925585, -0.02200164459645748, -0.006992048118263483, 0.005749017000198364, 0.020206155255436897, -0.012381967157125473, -0.02712569385766983, 0.004999746102839708, -0.017360996454954147, 0.014819689095020294, -0.01100082229822874, -0.003950075712054968, -0.007471995893865824, 0.005092973355203867, 0.013873604126274586, 0.0014735093573108315, -0.010137606412172318, -0.02537163905799389, -0.011725923046469688, 0.012927520088851452, -0.0004346291534602642, -0.017540544271469116, 0.020385704934597015, 0.0050170100294053555, 0.00830758921802044, -0.0022201910614967346, -0.0012939604930579662, -0.02900405041873455, 0.028133928775787354, 0.006850480567663908, -0.0001131891694967635, -0.013735489919781685, -0.0066087800078094006, 0.02780245430767536, 0.021532054990530014, -0.023065125569701195, 0.001285328296944499, -0.003342371666803956, 0.020275212824344635, 0.0007043841178528965, -0.005814621690660715, 0.0020026606507599354, 0.008825518190860748, -0.015413581393659115, 0.012665102258324623, 0.0054969582706689835, 0.02974986843764782, -0.0039293584413826466, -0.0032784936483949423, 0.019902303814888, 0.01248555351048708, 0.001526165520772338, 0.014971614815294743, -0.06612923741340637, -0.018894067034125328, -0.007554864510893822, -0.009405598975718021, -0.0009029236971400678, 0.002953924471512437, -0.002156313043087721, -0.015496449545025826, 0.012892991304397583, 0.03099289909005165, -0.011532562784850597, 0.008052077144384384, -0.00624277675524354, -0.014460590668022633, 8.664528286317363e-05, -0.00793467927724123, -0.009992586448788643, 0.030247081071138382, 0.008279966190457344, -0.015841735526919365, -0.004129624459892511, -0.011394448578357697, 0.017651036381721497, 0.008570006117224693, 0.006615685764700174, 0.0012533892877399921, 0.01231291051954031, -0.008259248919785023, -0.015151163563132286, 0.01683616079390049, -0.0013276259414851665, 0.014543459750711918, -0.010227380320429802, 0.003539184806868434, 0.01955701783299446, 0.017098577693104744, -0.0016737753758206964, 0.02325848676264286, -0.004751139786094427, -0.003364815143868327, 0.017305750399827957, 0.008659780956804752, 0.009488468058407307, 0.014626328833401203, 0.008169474080204964, -0.029335524886846542, -0.01401862408965826, 0.01040692999958992, -0.025799794122576714, 0.010075454600155354, -0.018673084676265717, -0.02542688511312008, -0.002406645566225052, -0.015013049356639385, 0.01143588311970234, -0.008570006117224693, 0.01504067238420248, 0.010648629628121853, -0.0035529963206499815, -0.01234053261578083, -0.0358545295894146, 0.023299921303987503, -0.01452964823693037, 0.03071667067706585, 0.01574505679309368, -1.275940849154722e-05, -0.0010807461803779006, 0.006646761670708656, -0.008114228025078773, 0.015910793095827103, -0.0032629556953907013, 0.024321967735886574, -0.0298603605479002, 0.0335618294775486, -0.01917029730975628, -0.014281041920185089, -0.021766848862171173, -0.015896981582045555, -0.00021699086937587708, 0.034031420946121216, 0.0040950956754386425, 0.028506837785243988, 0.024418648332357407, 0.006298022344708443, 0.01751292124390602, -0.024612009525299072, -0.024073362350463867, 0.009564431384205818, 0.00695061357691884, -0.009557525627315044, 0.009543714113533497, 0.005704130046069622, -0.022388365119695663, 0.009336542338132858, 0.0033354659099131823, 0.024418648332357407, -0.007865622639656067, -0.039445508271455765, -0.016877595335245132, -0.01984705775976181, -0.010814367793500423, 0.019916115328669548, 0.015675999224185944, -0.014557271264493465, 0.0068642920814454556, -0.02121439203619957, -0.033755190670490265, 0.00642577838152647, 0.0032784936483949423, -0.014419157058000565, -0.007907056249678135, -0.020233778282999992, -0.0028313477523624897, -0.0181896835565567, 0.032456912100315094, -0.006052869372069836, 0.009184615686535835, 0.005006651394069195, 0.01951558329164982, -0.016076531261205673, 0.00955061987042427, 0.0032025305554270744, 8.54583631735295e-05, 0.015026860870420933, 0.002684601116925478, -0.003887923900038004, -0.016256079077720642, -0.005458976607769728, 0.016642801463603973, 0.0010073728626593947, 0.011394448578357697, -0.009260579012334347, -0.03969411551952362, -0.008114228025078773, -0.01575886830687523, 0.019377468153834343, 0.015109729021787643, -0.011539468541741371, 0.007133615203201771, 0.026117457076907158, -0.016739480197429657, -0.003756715217605233, -0.0181896835565567, -0.007768942043185234, 0.002418730640783906, -0.00023673693067394197, -0.009985680691897869, -0.006287663709372282, 0.01700189895927906, -0.029584132134914398, 0.024321967735886574, -0.008459514938294888, -0.026186514645814896, -0.00014102787827141583, 0.015896981582045555, -0.045688286423683167, -0.015952227637171745, -0.02462582103908062, 0.02546831965446472, -0.0037152806762605906, 0.015537884086370468, -0.005334673449397087, 0.0025637508369982243, 0.011090596206486225, 0.005003198981285095, -0.0040502087213099, 0.04414140433073044, 0.0027968192007392645, -0.013238277286291122, -0.0292802806943655, 0.005645431112498045, -0.029832737520337105, -0.013328052125871181, -0.013956473208963871, 0.0042366632260382175, -0.007547958754003048, 0.012934425845742226, -0.026255572214722633, 0.024819180369377136, -0.014239607378840446, 0.014446779154241085, -0.016504686325788498, -0.02325848676264286, -0.02024758979678154, -0.0026172702200710773, 0.005227634683251381, -0.016021285206079483, -0.010855801403522491, 0.0071405209600925446, -0.00046354689402505755, 0.012209324166178703, 0.0058042630553245544, -0.03480486199259758, 0.0021321431268006563, -0.010151417925953865, -0.0032301535829901695, -0.02019234374165535, -0.009371071122586727, 0.02240217663347721, -0.01973656564950943, -0.011373731307685375, 0.009923528879880905, -0.01813443750143051, -0.0015960859600454569, 0.01767865940928459, -0.010040925815701485, 0.008956726640462875, 0.04314697906374931, -0.01899074763059616, -0.0119400005787611, -0.019294599071145058, 0.018231118097901344, -0.02287176623940468, -0.013528318144381046, -0.015344523824751377, -0.0037532623391598463, -0.019833246245980263, 0.007078369613736868, -0.015427392907440662, 0.012174795381724834, -0.004609572235494852, 0.020219966769218445, 0.02497110702097416, 0.0035909777507185936, -0.019778000190854073, -0.012437213212251663, 0.022264061495661736, -0.005003198981285095, -0.007879434153437614, -0.00830758921802044, 0.018010133877396584, -0.013003482483327389, 0.030633801594376564, 0.01660136692225933, -9.597880853107199e-05, -0.0031956247985363007, 0.007278635632246733, -0.011870943941175938, 0.019239353016018867, 0.009661111049354076, -0.013238277286291122, -0.014571082778275013, -0.0016599639784544706, 0.02878306806087494, -0.006094303447753191, -0.015662187710404396, -0.018106814473867416, 0.00537610799074173, -0.005876773037016392, -0.027609093114733696, -0.0038326780777424574, 0.014308664947748184, -0.018327798694372177, 0.0118018863722682, 0.008549288846552372, 0.02809249423444271, 0.024777745828032494, 0.010427647270262241, -0.014253418892621994, -0.005379560869187117, 0.008231625892221928, -0.007043840829282999, 0.02002660557627678, -0.016297513619065285, -0.011836415156722069, -0.02320324070751667, 0.02411479689180851, 0.005662695504724979, -0.024073362350463867, -0.01995754987001419, -0.012630573473870754, 0.025440696626901627, 0.016794726252555847, -0.0014510657638311386, -0.016352759674191475, -0.029777491465210915, 0.005738658830523491, -0.007513430435210466, -0.013673338107764721, 0.02081385999917984, 0.0236037727445364, 0.0038292251992970705, -0.0011687942314893007, -0.021766848862171173, 0.010593384504318237, -0.009592053480446339, -0.0031490111723542213, -0.017830586060881615, 0.004782215692102909, 0.012423401698470116, -0.01234053261578083, -0.02229168452322483, 0.025896474719047546, -0.0018766311695799232, -0.01336258091032505, -0.00023824756499379873, -0.011525657027959824, 0.004796026740223169, 0.005431353580206633, -0.012513176538050175, 0.014515836723148823, -0.0162008348852396, -0.027139505371451378, 0.00537610799074173, -0.00020296360889915377, 0.015234032645821571, -0.020330458879470825, 0.02252648025751114, -0.00376016809605062, 0.0011342655634507537, 0.010614101774990559, 0.00463374238461256, -0.0004717474221251905, -0.012402684427797794, -0.012195512652397156, -0.007299352902919054, -0.013700961135327816, 0.0003921157622244209, 0.04800860956311226, 0.013051822781562805, 0.012299099005758762, 0.00619788933545351, -0.005873320158571005, -0.010475986637175083, 0.004191775806248188, 0.019971361383795738, 0.021117711439728737, -0.01614558883011341, -0.018673084676265717, -0.032512158155441284, 0.007686073426157236, 0.0011437609791755676, -0.021739225834608078, 0.01798251084983349, 0.012036681175231934, 0.012727254070341587, -0.011249428614974022, 0.011788074858486652, 0.013721678406000137, 0.012644384987652302, -6.657552148681134e-05, -0.0007082685478962958, -0.004809838254004717, -0.0014726461376994848, 0.007416750304400921, 0.027429545298218727, -0.025067787617444992, 0.015952227637171745, -0.0009547166991978884, 0.014308664947748184, -0.031655848026275635, 0.0074789016507565975, 0.0018593667773529887, 0.005873320158571005, -0.0022201910614967346, 0.010172135196626186, -0.015827924013137817, 0.01813443750143051, -0.0012015963438898325, -0.021822094917297363, 0.017471488565206528, 0.023051314055919647, -0.0022305496968328953, 0.0016660065157338977, -0.0015011322684586048, 0.0036738463677465916, -0.0022495402954518795, 0.008141851052641869, -0.014211985282599926, -0.007713696453720331, -0.0002404055994702503, 0.008777177892625332, 0.0039846040308475494, -0.023299921303987503, 0.012278381735086441, -0.008459514938294888, -0.00012602951028384268, 0.007278635632246733, -0.013376392424106598, -0.023686641827225685, -0.023134183138608932, -0.030302327126264572, 0.0035305526107549667, -0.004871990066021681, 0.022167380899190903, -0.028479214757680893, 0.03814723342657089, 0.0014303486095741391, -0.0018818104872480035, 0.04640648141503334, 0.011318485252559185, -0.018576404079794884, -0.022222626954317093, 0.017872020602226257, 0.006280757952481508, 0.018562592566013336, -0.002684601116925478, 0.004474910907447338, -0.01231291051954031, -0.00388101814314723, -0.00858381763100624, -0.01129086222499609, 0.01129086222499609, 0.0025464866776019335, 0.0036393178161233664, -0.010075454600155354, -0.011995246633887291, -0.009184615686535835, -0.015496449545025826, 0.004664818290621042, 0.0016219824319705367, 0.013148503378033638, 0.002168398117646575, -0.0041261715814471245, 0.009509185329079628, -0.015496449545025826, 0.012444118969142437, -0.010793650522828102, -0.009992586448788643, 0.006049416493624449, 0.00019336033437866718, 0.014888745732605457, -0.024819180369377136, -0.017941076308488846, 0.019708942621946335, 0.022968444973230362, -0.006988595239818096, 0.017140012234449387, -0.010966293513774872, 0.004585402086377144, 0.003922452684491873, -0.008908387273550034, -0.037456661462783813, -0.00015624206571374089, 0.010883424431085587, -0.007161238230764866, -0.0187697634100914, -0.007637733593583107, 0.0027588377706706524, -0.016767103224992752, 0.012520082294940948, -0.0017497384687885642, 0.015164975076913834, 0.009633488021790981, -0.016767103224992752, -0.007216484285891056, -0.002304786117747426, 0.0017359269550070167, 0.00912937056273222, 0.0028451592661440372, -0.005258710589259863, -0.0038119610399007797, 0.01911505125463009, 0.007768942043185234, 0.022305496037006378, -0.0010082360822707415, 0.0016150767914950848, -0.011580903083086014, 0.00752033619210124, 0.016587555408477783, -0.0004959174548275769, 0.008604534901678562, 0.0024929672945290804, -0.00787252839654684, 0.00010952050070045516, -0.007541052997112274, 0.013072540052235126, 0.006508646998554468, 0.03690420091152191, -0.028865937143564224, -0.014695385470986366, -0.000981476390734315, -0.019474148750305176, 0.008072794415056705, -0.026200326159596443, 0.006909179035574198, 0.012899897061288357, -0.006936802063137293, 0.008535477332770824, -0.007299352902919054, -0.021407751366496086, 0.005469335243105888, -0.012720348313450813, 0.010862707160413265, 0.009025784209370613, 0.02679421752691269, 0.019764188677072525, -0.005345032084733248, -0.015082105994224548, 0.007665356155484915, 6.161203054944053e-05, -0.038478706032037735, 0.0003299642412457615, -0.01234053261578083, -1.2354776117717847e-05, 0.0059009431861341, -0.028810691088438034, 0.02723618410527706, 0.010627913288772106, -0.0004993703332729638, 0.019612262025475502, -0.011318485252559185, -0.020800048485398293, -0.02064812183380127, 0.010130700655281544, -0.012554610148072243, -0.005818074569106102, 0.011705205775797367, -0.029363147914409637, 0.02548213116824627, -0.011560185812413692, 0.0037429037038236856, -0.011905471794307232, 0.0038672068621963263, 0.008556194603443146, 0.010275720618665218, -0.0023444939870387316, 0.004008774179965258, -0.0030143496114760637, 0.004754592664539814, 0.0012274928158149123, 0.005963094532489777, 0.017029521986842155, 5.6378783483523875e-05, 0.00046872618258930743, -0.02121439203619957, 0.002786460565403104, 0.02121439203619957, -0.05643359571695328, -0.013500695116817951, 0.016408005729317665, -0.0038292251992970705, -0.018617838621139526, 0.03458387777209282, 0.0010850622784346342, -0.006228965241461992, 0.042511653155088425, -0.006898820865899324, 0.014612517319619656, 0.0067227245308458805, 0.03226355463266373, -0.0318492092192173, -0.005227634683251381, 0.02695995569229126, 0.0008040855173021555, 0.00022767316841054708, 0.031821586191654205, -0.02889355830848217, 0.03720805421471596, -0.014004813507199287, 0.00023716854047961533, 0.01452964823693037, 0.026877086609601974, 0.010047831572592258, 0.01729193888604641, -0.0024653442669659853, 0.00898434966802597, -0.018327798694372177, -0.013583564199507236, 0.02081385999917984, -0.022388365119695663, 0.017319561913609505, 0.009364165365695953, -0.008238531649112701, 0.009295107796788216, 0.0010876519372686744, -0.001336258021183312, -2.439933450659737e-05, 0.01643562875688076, -0.005289786495268345, -0.01574505679309368, 0.003649676451459527, 0.0014148106565698981, 0.01820349507033825, 0.020040417090058327, -0.004909971263259649, 0.012264570221304893, -0.024501517415046692, -0.005669601261615753, 0.013984096236526966, -0.005003198981285095, 0.00445074075832963, 0.01256842166185379, 0.01928078755736351, -0.026711350306868553, 0.00700931204482913, -0.01191928330808878, 0.0036289591807872057, -0.00785181112587452, -0.012554610148072243, 0.025578809902071953, 0.01157399732619524, -0.006156455259770155, -0.004840914160013199, -0.004640648141503334, 0.014405345544219017, 0.026020776480436325, 0.02825823239982128, -0.0005425311392173171, -0.019032182171940804, 0.005420995410531759, -0.027029013261198997, -0.0002293995930813253, -0.02792675793170929, -0.006667478941380978, -0.0031921719200909138, 0.0009210512507706881, -0.003691110759973526, -0.004661365412175655, 0.0042366632260382175, 0.02484680339694023, 0.010047831572592258, -0.0021425015293061733, -0.007907056249678135, 0.014653950929641724, -0.0033510036300867796, 0.002237455453723669, -0.0063636270351707935, 0.006063227541744709, 0.018327798694372177, -0.007554864510893822, -0.017153823748230934, 0.018728330731391907, -0.009647299535572529, 0.0049030655063688755, 0.005610902793705463, 0.0032336064614355564, 0.033810436725616455, 0.009198427200317383, 0.013507600873708725, -0.003281946526840329, 0.0023755698930472136, -0.007575581781566143, -0.004029491450637579, -0.016532309353351593, 0.014066964387893677, 0.005348484963178635, 0.012278381735086441, -0.0012430307688191533, 0.017761528491973877, 0.004868537187576294, 0.01405315287411213, 0.00219774735160172, 0.007002406753599644, 0.02582741715013981, 0.008908387273550034, 0.013107068836688995, -0.0072026727721095085, -0.015234032645821571, -0.009467750787734985, -0.014446779154241085, -0.02086910419166088, -0.007188861258327961, -0.003808508161455393, -0.017830586060881615, -0.015952227637171745, -0.007927773520350456, -0.006387796718627214, -0.010869612917304039, -0.004492174834012985, 0.0035909777507185936, -0.01928078755736351, -0.006626044400036335, 0.04414140433073044, 0.00955061987042427, -0.01643562875688076, 0.024197665974497795, 0.018300175666809082, 0.00347530678845942, -0.004098548553884029, -0.00208380282856524, -0.0021286902483552694, -0.027429545298218727, -0.0024049191270023584, 0.0015848642215132713, -0.009433222003281116, 0.004077831283211708, 0.007019670680165291, -0.012306004762649536, 0.03872731328010559, -0.01700189895927906, -0.0068366690538823605, 0.0003278061922173947, 0.0029487451538443565, -0.009226050227880478, 0.026034587994217873, -0.03093765489757061, 0.0021856625098735094, -0.002164945239201188, -0.02571692503988743, -0.008970538154244423, -0.018921690061688423, 0.00188008404802531, -0.0038775652647018433, 0.00642577838152647, -0.0023703905753791332, -0.007278635632246733, 0.00785181112587452, 0.035523056983947754, -0.008328305557370186, 0.010917953215539455, 0.008086605928838253, 0.009108653292059898, -0.0023669376969337463, 0.00872883852571249, 0.01134610828012228, -0.015151163563132286, -0.013017293997108936, 0.016988087445497513, 0.02530258148908615, 0.013997907750308514, -0.023797133937478065, 0.005141313187777996, -0.0038223194424062967, -0.008342117071151733, 0.014750631526112556, 0.000868826697114855, -0.008141851052641869, 0.01870070770382881, -0.00746509013697505, 0.0063636270351707935, 0.012437213212251663, -0.009709451347589493, -0.02292701229453087, 0.0029452922753989697, 0.017899643629789352, 0.019598450511693954, -0.010607196018099785, 0.027512414380908012, -0.0032974842470139265, 0.0037946966476738453, 0.01621464639902115, 0.01767865940928459, -0.01570362225174904, 0.025454508140683174, -0.009854471310973167, 0.0014959529507905245, 0.013272806070744991, 0.009177709929645061, 0.002510231453925371, 0.01979181170463562, -0.014736820012331009, -0.00671236589550972, 0.0011437609791755676, 0.03693182393908501, 0.001978490501642227, -0.004070925526320934, 0.01694665290415287, -0.0035029298160225153, -0.00907412450760603, 0.014460590668022633, 0.005666148383170366, -0.021739225834608078, 0.002798545639961958, 0.011132030747830868, -0.0292802806943655, -0.00347530678845942, 0.009958057664334774, -0.01638038270175457, -0.004502533469349146, 0.012133360840380192, 0.01544120442122221, 0.009764697402715683, 0.014571082778275013, 0.007789659313857555, 0.025399262085556984, -0.0218911524862051, -0.020109474658966064, -0.01046908088028431, 0.03433527052402496, 0.005921660456806421, 0.015662187710404396, -0.03325797989964485, -0.004571591038256884, -0.015234032645821571, 0.0021960209123790264, 0.002087255707010627, -0.014225795865058899, 0.019584640860557556, 0.014902557246387005, 0.016559932380914688, 0.010172135196626186, -0.009847565554082394, -0.017374807968735695, 0.006802140269428492, 0.006626044400036335, 0.010703875683248043, 0.0033251072745770216, -0.010627913288772106, -0.0010496703907847404, 0.010413835756480694, -0.002681148238480091, -0.038699690252542496, 0.00467862980440259, -0.026145080104470253, -0.0005913028144277632, -0.004026038572192192, -0.00173765339422971, -0.00752033619210124, -0.0105243269354105, -0.0038292251992970705, -0.0007738729473203421, 0.023534715175628662, -0.0112287113443017, -0.02115914598107338, 0.01202977541834116, 0.013321146368980408, 0.013528318144381046, 0.0013310787035152316, 0.009198427200317383, -0.026062211021780968, -0.00456468528136611, 0.004316078964620829, -0.0008511307532899082, 0.00890148151665926, 0.03104814514517784, -0.0054969582706689835, -0.007637733593583107, 0.0009158719331026077, 0.0007453868165612221, -0.014861122705042362, -0.0008614893886260688, 0.00201992504298687, 0.0012292192550376058, -0.007727507967501879, 0.013452354818582535, -0.0049341414123773575, -0.0059147546999156475, 0.017540544271469116, -0.008141851052641869, -0.014681573957204819, 0.009909717366099358, -0.029528886079788208, 0.011601620353758335, 0.0017342005157843232, 0.01893550157546997, 0.02991560660302639, 0.011249428614974022, 0.0018162060296162963, -0.016352759674191475, 0.023520903661847115, -0.005562562495470047, 0.0018628196557983756, 0.001262884703464806, 0.001249936525709927, -0.017430054023861885, 0.0018766311695799232, 0.005793904419988394, -0.002456712070852518, 0.010855801403522491, 0.009916623122990131, 0.0029366600792855024, 0.002555118640884757, 0.01763722486793995, 0.006563893053680658, -0.005027368664741516, 0.01654612086713314, -0.019529394805431366, -0.00208380282856524, 0.006373985670506954, -0.004136530216783285, -0.015151163563132286, -0.017305750399827957, -0.005286333616822958, -0.012934425845742226, 0.0013492063153535128, -0.0010332693345844746, 0.00020652437524404377, -0.015606941655278206, 0.003843036713078618, 0.03806436434388161, 0.01758197881281376, 0.03088240884244442, -0.005448617972433567, 0.0024325421545654535, -0.012126455083489418, 0.01552407257258892, 0.02019234374165535, -0.01126324012875557, -0.01705714501440525, -0.00046225206460803747, 0.015510261058807373, -0.042180176824331284, -0.006774517707526684, 0.001380282104946673, 0.005562562495470047, -0.0012050492223352194, 0.015109729021787643, -0.016449440270662308, 0.008279966190457344, -0.008376645855605602, 0.0015373873757198453, 0.003302663564682007, -0.0026742424815893173, -0.0004098117060493678, -0.004913424141705036, 0.011864038184285164, -0.005275974981486797, 0.003147284733131528, -0.02548213116824627, -0.013583564199507236, 0.026297006756067276, -0.009336542338132858, 0.02582741715013981, 0.021573489531874657, -0.015938416123390198, -0.007782753556966782, -0.013928850181400776, 0.009460845030844212, -0.008003736846148968, -0.010289532132446766, -0.014170550741255283, -0.004713158123195171, -0.01615940034389496, -0.01134610828012228, -0.002278889762237668, 2.7083395252702758e-05, -0.03115863725543022, -0.007340786978602409, -0.0036116947885602713, -0.0014312118291854858, 0.006032152101397514, -0.0012162710772827268, -0.012768687680363655, 0.006853933446109295, -0.02679421752691269, 0.002051000716164708, -0.008093511685729027, -0.007789659313857555, 0.00428155018016696, 0.004796026740223169, -0.012561515904963017, -0.0008942915592342615, 0.0029988116584718227, 0.032954126596450806, -0.02309274859726429, 0.008342117071151733, -0.005759375635534525, -0.016007473692297935, -0.017816774547100067, 0.003109303303062916, 0.012899897061288357, 0.013176125474274158, -0.014101493172347546, -0.003231880022212863, 0.005120595917105675, 0.011877849698066711, -0.018010133877396584, 0.00019508677360136062, -0.0014130842173472047, 0.008058982901275158, -0.02155967801809311, 0.005200012121349573, -0.03259502723813057, -0.026766594499349594, -0.010572667233645916, 0.006449948530644178, -0.008956726640462875, 0.0012136814184486866, -0.013038011267781258, 0.004823649767786264, 0.020371893420815468, 0.009405598975718021, -0.01796869933605194, 0.002824441995471716, -0.02626938372850418, -0.006360174156725407, 0.022540291771292686, -0.010116889141499996, 0.01006854884326458, -0.019266976043581963, 0.02013709768652916, 0.004733875393867493, -0.001288781175389886, 0.015054483897984028, -0.025095408782362938, 0.019322222098708153, -0.007444372866302729, -0.014239607378840446, -0.021048653870821, -0.005452070850878954, 0.02371426485478878, -0.0010531232692301273, -0.027899134904146194, 0.0156345646828413, -0.0031455582939088345, 0.011152748018503189, 0.00884623546153307, -0.01129086222499609, 0.014902557246387005, -0.02092435024678707, 0.003098944667726755, 0.009488468058407307, -0.006871197838336229, -0.012402684427797794, -0.0218911524862051, -0.010966293513774872, -0.04988696798682213, 0.0010928312549367547, 0.0006413693190552294, -0.00196813209913671, -0.00785181112587452, -1.1990607163170353e-05, -0.0019197919173166156, -0.009502279572188854, -0.0017013982869684696, -0.01208502147346735, 0.02991560660302639, -0.0031990776769816875, -0.02110389992594719, -0.013127786107361317, 0.013107068836688995, 0.012271475978195667, 0.00012182132923044264, -0.021711602807044983, 0.0054140896536409855, -0.0057421112433075905, -0.008749554865062237, -0.03303699567914009, 0.006370532792061567, -0.0034735803492367268, -0.008666686713695526, 0.014025529846549034, -0.014211985282599926, 0.007686073426157236, 0.014156739227473736, -0.0004229757469147444, -0.0007423656061291695, 0.015896981582045555, 0.020730990916490555, -0.006021793466061354, 0.0006495699053630233, -0.019197918474674225, -0.015482638962566853, 0.028285855427384377, -0.021407751366496086, -0.0015442930161952972, -0.009191521443426609, 0.008114228025078773, 0.014253418892621994, 0.004644101019948721, 0.008528572507202625, -0.002346220426261425, 0.0024549856316298246, -0.00830758921802044, 0.0034200609661638737, -0.01302419975399971, 0.012188606895506382, 0.0011368552222847939, 0.018410665914416313, -0.015966039150953293, 0.011691395193338394, -0.005237993318587542, 0.002931480761617422, 0.022775085642933846, -0.025951718911528587, 0.030744293704628944, 0.010496703907847404, -0.0018179324688389897, -0.01574505679309368, 0.006967877969145775, 0.014736820012331009, 0.010710781440138817, -0.015289277769625187, 0.013203748501837254, 0.008611440658569336, -0.001393230282701552, 0.00393626419827342, -0.01745767705142498, -0.012699631042778492, 0.011898566968739033, -0.012181701138615608, -0.018921690061688423, 0.009916623122990131, -0.0015201229834929109, 0.016062719747424126, 0.012009058147668839, 0.0009737074142321944, 0.002858970779925585, 0.0005265616346150637, -0.008107323199510574, 0.0009918349096551538, 0.0011938274838030338, 0.024377213791012764, 0.0033061164431273937, -0.007727507967501879, -0.0027588377706706524, 0.017278127372264862, 0.012471741996705532, -0.02234693057835102, 0.0007328701904043555, 0.00034053862327709794, 0.005082614719867706, -0.01729193888604641, 0.01145660039037466, 0.011567091569304466, -0.017416242510080338, 0.020744802430272102, 0.006025246344506741, 0.020289024338126183, -0.02479155734181404, 0.01126324012875557, 0.009467750787734985, -0.00850094947963953, 0.029307901859283447, 0.0167809147387743, 0.028023438528180122, -0.020371893420815468, 0.0035184675361961126, 0.004257380496710539, -0.016932841390371323, 6.749268504790962e-05, 0.02604839950799942, 0.008224720135331154, 0.01870070770382881, -0.018410665914416313, -0.004865084309130907, 0.006802140269428492, 0.014039341360330582, 0.02309274859726429, 0.013818358071148396, 0.007831093855202198, -0.0021045200992375612, 0.006491382606327534, -0.017664847895503044, 0.00265870476141572, -0.013555941171944141, 0.0003860732540488243, 0.010310249403119087, 0.012582233175635338, -0.03452863171696663, -0.0008148757042363286, 0.003542637685313821, 0.021076276898384094, 0.009502279572188854, -0.00769297918304801, -0.008528572507202625, 0.0118018863722682, -0.030468065291643143, 0.002396287163719535, 0.018272552639245987, -0.0036393178161233664, -0.030302327126264572, -0.00399496266618371, 0.008148756809532642, -0.011283956468105316, 0.012002152390778065, 0.006567345932126045, 0.009819942526519299, -0.004947952926158905, -0.014136021956801414, 0.02821679785847664, 0.013404014520347118, -0.00949537381529808, 0.0015347977168858051, -0.004070925526320934, 0.006394702475517988, -0.011387542821466923, 0.016504686325788498, -0.026352250948548317, -0.0007544506224803627, -0.011415165849030018, 0.0005248351953923702, -0.005082614719867706, -0.004799479618668556, 0.010317155160009861, -0.01915648579597473, -0.00023975818476174027, -0.008549288846552372, 0.011408260092139244, -0.020233778282999992, -0.01302419975399971, -0.013859792612493038, 0.016532309353351593, -0.006481023970991373, 0.015192598104476929, 0.01290680281817913, -0.01860402710735798, 0.022816520184278488, 0.005552203860133886, 0.026145080104470253, 0.008942916058003902, 0.024100985378026962, -0.026656104251742363, 0.01745767705142498, 0.009674922563135624, -0.011643054895102978, -0.011567091569304466, -0.015206409618258476, -0.013542129658162594, 0.031987324357032776, 0.009882094338536263, 0.006581157445907593, 0.015068294480443, 0.009971869178116322, 0.01040692999958992, -0.02861732989549637, 0.02223643846809864, -0.004174511414021254, -0.011677583679556847, 0.008680498227477074, 0.011318485252559185, -0.01939127966761589, -0.010911047458648682, 0.014419157058000565, -0.007416750304400921, -0.0009158719331026077, 0.025979341939091682, 0.007589393295347691, -0.006342909764498472, 0.017664847895503044, 0.002194294473156333, 0.017651036381721497, 0.002627628855407238, 0.007568676024675369, -0.008376645855605602, -0.004264286253601313, -0.005617808550596237, 0.003197351237758994, 0.010517421178519726, -0.012091927230358124, 0.009163899347186089, -0.005828433204442263, 0.0042366632260382175, -0.038810182362794876, -0.00631183385848999, 0.001566736726090312, -0.0038948296569287777, 0.0007872527930885553, -0.0021925680339336395, 0.009460845030844212, 0.013065634295344353, 0.015620753169059753, 0.003777432255446911, 0.00022983120288699865, -0.015303089283406734, -0.008355928584933281, 0.0021822096314281225, 0.007333881221711636, -0.012154078111052513, -0.010897235944867134, 0.016131777316331863, 0.00324223842471838, -0.0010332693345844746, -0.02827204391360283, 0.021573489531874657, -0.012423401698470116, -0.011732828803360462, 0.032456912100315094, 0.01098010502755642, 0.002499873051419854, 0.0042884559370577335, -0.01707095466554165, -0.016877595335245132, 0.008404268883168697, -0.005610902793705463, 0.005334673449397087, 0.019211729988455772, -0.006142643745988607, -0.004392041824758053, 0.005082614719867706, -0.021117711439728737, -0.004985934589058161, 0.0034235138446092606, 0.010766027495265007, -0.006045963615179062, 0.005103331990540028, 0.011774263344705105, -0.011960717849433422, 0.01904599368572235, 0.02343803457915783, -0.00723720109090209, 0.00403985008597374, 0.003691110759973526, -0.006992048118263483, -0.002855517901480198, 0.0012085021007806063, 0.01614558883011341, 0.003939717076718807, -0.015482638962566853, 0.016739480197429657, -0.010724592953920364, 0.008017548359930515, 0.004982481710612774, 0.009219144470989704, 0.0004657049139495939, 0.016256079077720642, -0.006104662083089352, 0.0058008101768791676, 0.012022869661450386, -0.0005567742045968771, 0.0066916486248373985, 0.023728076368570328, 0.03850632905960083, -0.024584386497735977, 0.0030281611252576113, -0.029031673446297646, -0.004523250740021467, -0.005976906046271324, -0.0022270968183875084, 0.01626989059150219, 0.009156993590295315, 0.017830586060881615, 0.006494835484772921, -0.01120799407362938, 0.009861377067863941, 0.005296692252159119, 0.0003219794889446348, -0.015786491334438324, -0.02099340781569481, -0.0031541904900223017, -0.007050746586173773, -0.018162060528993607, -0.01842447742819786, 0.007161238230764866, 0.0037394508253782988, 0.0023703905753791332, 0.0076722619123756886, 0.010441457852721214, 0.030523311346769333, -0.0006879830034449697, -0.005769734270870686, 0.005054991692304611, -0.0020112928468734026, -0.004309173207730055, 0.012464836239814758, -0.023576149716973305, 0.0006737399380654097, -0.012810122221708298, -0.0004024743684567511, -0.03433527052402496, -0.008328305557370186, -0.019943738356232643, 0.016919029876589775, 0.03276076540350914, 0.017954887822270393, -0.003808508161455393, -0.003440778236836195, 0.009087936021387577, 0.0026103644631803036, -0.022319307550787926, 0.006460307165980339, -0.01290680281817913, -0.009571337141096592, -0.000615904456935823, -0.017430054023861885, 0.008058982901275158, -0.02139393985271454, 0.010766027495265007, 0.007078369613736868, 0.023866189643740654, 0.0031455582939088345, -0.019487960264086723, 0.01256842166185379, -0.017209069803357124, 0.017319561913609505, -0.003694563638418913, 0.006460307165980339, 0.007085275370627642, 0.026421308517456055, -0.019239353016018867, -0.00433679623529315, 0.005752469878643751, -0.0028693294152617455, 0.020330458879470825, -0.0077344137243926525, 0.013093257322907448, 0.01632513664662838, -0.014094587415456772, -0.018286364153027534, -0.00694025494158268, 0.01538595836609602, 0.015841735526919365, 0.0003944896161556244, -0.006170266307890415, 0.00020576907263603061, 0.0213248822838068, 0.023424223065376282, 0.0010867887176573277, 0.016394194215536118, -0.005638525355607271, -0.016849972307682037, 0.001608171034604311, 0.019805623218417168, 0.00219774735160172, 0.015192598104476929, -0.0034718539100140333, 0.0031800870783627033, 0.0019094333983957767, 0.014792066067457199, 0.007796565070748329, 0.01330733485519886, -0.022554101422429085, -0.0032267007045447826, 0.017153823748230934, 0.002783007686957717, -0.014087681658565998, -0.0036358649376779795, 0.005234540440142155, 0.0059009431861341, 0.011366825550794601, -0.0022426345385611057, 0.0005563425947912037, -0.03212543949484825, -0.007230295334011316, 0.013555941171944141, -0.0039535281248390675, -0.022388365119695663, 0.004312626086175442, -0.008107323199510574, 0.025965530425310135, 0.024377213791012764, 0.0027053183875977993, 0.011007728055119514, 0.01134610828012228, -0.005162030458450317, 0.016877595335245132, -0.011422071605920792, -0.007983019575476646, 0.014405345544219017, 0.0038361309561878443, 0.0067227245308458805, 0.025979341939091682, 0.009978774935007095, 0.0016884501092135906, 0.006097756326198578, 0.0018783576088026166, 0.006298022344708443, 0.010248097591102123, -0.011242522858083248, -0.02280270867049694, 0.027277618646621704, 0.004374777432531118, -0.000512750179041177, 0.004682082682847977, -0.011891661211848259, 0.019708942621946335, 0.028479214757680893, -0.011691395193338394, -0.013210654258728027, 0.02088291570544243, 0.004143435973674059, 0.008362834341824055, 0.007686073426157236, 0.0040640197694301605, 0.0035340054892003536, 0.014888745732605457, 0.00723720109090209, 0.01643562875688076, 0.015786491334438324, -0.02207070216536522, 0.01092485897243023, 0.0011990066850557923, 0.007175049744546413, 0.021766848862171173, -0.010621007531881332, 0.011484222486615181, -0.01433628797531128, 0.005389919504523277, 0.015593130141496658, 0.0072233895771205425, 0.014502025209367275, 0.005479693878442049, 0.01106297317892313, 0.0014061785768717527, -0.009764697402715683, -0.02097959630191326, 0.01316922064870596, -0.004160700365900993, 0.0023686641361564398, -0.006847027689218521, -0.0015244390815496445, -0.014419157058000565, -0.02610364556312561, -0.019184106960892677, 0.023396600037813187, -0.01614558883011341, 0.021021030843257904, 0.010034020058810711, -0.01751292124390602, 0.00011880007514264435, -0.004830555524677038, 0.024584386497735977, 0.019998984411358833, 0.014363911002874374, 0.011767357587814331, -0.0005705856601707637, 0.0028192626778036356, 0.00016185296408366412, -0.024653444066643715, -0.02053762972354889, -0.012015963904559612, 0.01162924338132143, 0.0059458306059241295, 0.0005369202117435634, 0.00048642209731042385, 0.006021793466061354, -0.005193106364458799, -0.011042256839573383, -0.002532675163820386, -0.00930201355367899, 0.012402684427797794, 0.005486599635332823, 0.019598450511693954, -0.02338279038667679, -0.00179203599691391, 0.010020208545029163, 0.0068953679874539375, 0.023962870240211487, -0.0017083040438592434, -0.026642292737960815, 0.004160700365900993, 0.010144512169063091, 0.0018144795903936028, -0.008114228025078773, -0.004067472647875547, 0.015151163563132286, 0.005880225915461779, 0.001883536810055375, 0.00952990259975195, 0.026863275095820427, 0.01117346528917551, -0.014502025209367275, 0.0070921811275184155, -0.01615940034389496, -0.0050446330569684505, 0.011546374298632145, 0.0006590652628801763, 0.029031673446297646, -0.008300683461129665, -0.018783574923872948, -0.01048979815095663, 0.015247844159603119, 0.02251266874372959, -0.01871451921761036, -0.012962047941982746, 0.028230609372258186, 0.004309173207730055, 0.006650214549154043, 0.017954887822270393, 0.0022029266692698, -0.011946906335651875, 0.0017531912308186293, 0.00930201355367899, 0.020689556375145912, -0.004685535561293364, -0.016449440270662308, 0.015551695600152016, 0.011007728055119514, 0.012665102258324623, -0.016062719747424126, -0.020496195182204247, -0.0016314778476953506, 0.013438543304800987, -0.008977443911135197, 0.004243568982928991, -0.02582741715013981, -0.004675176925957203, -0.019294599071145058, 0.017499109730124474, -0.004326437599956989, -0.007893245667219162, -0.025385450571775436, -0.006325645372271538, -0.003687657881528139, -0.009426316246390343, -0.011608526110649109, 0.004430023487657309, 0.012948237359523773, -0.012941331602633, 0.011318485252559185, 0.010558855719864368, 0.028479214757680893, -0.010828179307281971, -0.00521727604791522, -0.03082716278731823, 0.0176234133541584, 0.006401608232408762, -0.011594714596867561, -0.0004665681335609406, -0.01809300296008587, 0.029722245410084724, 0.0028658765368163586, 0.0063843438401818275, -0.00884623546153307, -0.017195258289575577, 0.007040387950837612, -0.003974245395511389, -0.009426316246390343, 0.0009616223978810012, -0.001066934666596353, 0.00659842137247324, 0.00909484177827835, -0.011152748018503189, 0.01399100199341774, 0.028589706867933273, -0.02394905872642994, -0.00017782245413400233, 0.011353014037013054, 0.0007397759472951293, -0.008908387273550034, -0.018797386437654495, 0.0010936943581327796, 0.014308664947748184, 0.04168296605348587, 0.005562562495470047, 0.023686641827225685, -0.007099086884409189, -0.009847565554082394, -0.014184362255036831, 0.005707582924515009, 0.016283702105283737, -0.00595964165404439, 0.006342909764498472, -0.008970538154244423, -0.040799032896757126, 0.02495729550719261, 0.017222881317138672, -0.012064304202795029, 0.006905726157128811, 0.006260041147470474, 0.0027312147431075573, -0.0018386496230959892, 0.009502279572188854, -0.003729092190042138, -0.008314494974911213, -0.01910123974084854, -0.020233778282999992, -0.013797641731798649, 0.012665102258324623, 0.015427392907440662, -0.004119265824556351, 0.00850094947963953, -0.004927235655486584, 0.024639632552862167, -0.00010461096098879352, -0.022222626954317093, 0.00044326132046990097, 0.009371071122586727, 0.01592460460960865, 0.010172135196626186, 0.0077344137243926525, 0.003523646853864193, 0.00066467619035393, -0.009592053480446339, -0.005521128419786692, 0.015731245279312134, -0.01574505679309368, -0.008715027011930943, 0.005776640027761459, -0.005086067598313093, 0.008259248919785023, -0.0244462713599205, 0.009025784209370613, 0.005669601261615753, -0.019667508080601692, -0.0016133503522723913, -0.015427392907440662, 0.01046908088028431, -0.00015095486014615744, -0.0003824045998044312, -0.0059147546999156475, -0.023728076368570328, -0.0013164040865376592, 0.008031359873712063, 0.014122210443019867, 0.017899643629789352, 0.00364622357301414, -0.004312626086175442, -0.007768942043185234, 0.015303089283406734, -0.010766027495265007, 0.013680243864655495, -0.0027640170883387327, 0.012015963904559612, -0.013997907750308514, 0.0030436988454312086, -0.006329098250716925, 0.0019059805199503899, 0.004502533469349146, -0.04914114996790886, 0.002133869333192706, -0.020606687292456627, -0.019474148750305176, -0.01893550157546997, -0.017485300078988075, 0.023065125569701195, 0.00752033619210124, -0.008666686713695526, -0.00035089722950942814, 0.01231291051954031, -0.004195228684693575, 0.017540544271469116, 0.012948237359523773, 0.0030057174153625965, -0.005179294850677252, 0.02093816176056862, -0.0018697254126891494, -0.00300744385458529, 0.010828179307281971, -0.02774720825254917, 0.0005667011719197035, 0.010379306972026825, 0.00658461032435298, -0.015026860870420933, 0.019322222098708153, -0.0006487066857516766, 0.011691395193338394, -0.005745564121752977, -0.023921435698866844, -0.02059287577867508, -0.02269221656024456, -0.005455523729324341, -0.0027484791353344917, -0.006380890961736441, 0.003939717076718807, -0.012526988051831722, 0.024473894387483597, -0.0013733763480558991, -0.009205332957208157, 0.006377438083291054, 0.009702545590698719, 0.012761781923472881, 0.012154078111052513, 0.006636403035372496, 0.0011031897738575935, 0.023009879514575005, 0.018162060528993607, -0.035799287259578705, -0.006536270026117563, -0.005593638401478529, 0.0006124515784904361, -0.02825823239982128, 0.022153569385409355, -0.0005256984150037169, -0.007810376584529877, 0.004032944329082966, 0.03179396316409111, 0.004409306216984987, -0.0179272647947073, 0.014184362255036831, 0.009011972695589066, 0.001674638595432043, -0.0058008101768791676, -0.029528886079788208, 0.001741106272675097, -0.0017428327118977904, 0.0051896534860134125, -0.010938670486211777, 0.0037118280306458473, -0.026600858196616173, 0.009951151907444, 0.011643054895102978, 0.006843574810773134, 0.018797386437654495, 0.006201342213898897, -0.0130794458091259, 0.0013164040865376592, 0.004074378404766321, 0.01151875127106905, -0.013210654258728027, 0.022208815440535545, -0.01910123974084854, -0.006553534418344498, -0.0007449552067555487, 0.022719839587807655, 0.006857386324554682, -0.009702545590698719, 0.03704231604933739, -0.004671724047511816, -0.03226355463266373, 0.019653696566820145, -0.02433577924966812, -0.022084513679146767, 0.01574505679309368, 0.013873604126274586, -0.018286364153027534, 0.008991255424916744, 0.00901887845247984, 0.032456912100315094, 0.011567091569304466, -0.006408513989299536, -0.02798200398683548, -0.0009253673488274217, -0.006021793466061354, -0.002171850996091962, 0.02861732989549637, 0.0007976113702170551, -0.004761498421430588, 0.02752622589468956, -0.011159653775393963, 0.019778000190854073, -0.0034770332276821136, 0.005079161841422319, -0.019888492301106453, 0.007023123558610678, -0.0055280341766774654, 0.002418730640783906, -0.010337872430682182, 0.011104407720267773, 0.02155967801809311, -0.0190598051995039, -0.017153823748230934, -0.01865927316248417, 0.013970284722745419, 0.009785414673388004, -0.00201992504298687, 0.008017548359930515], "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e": [-0.014733443036675453, -0.017148761078715324, -0.013110650703310966, 0.03040282242000103, -0.023338014259934425, -0.026206206530332565, 0.03218412026762962, 0.05253317579627037, -0.018220558762550354, 0.04184539243578911, 0.02567785419523716, 0.0006028861389495432, 0.017541250213980675, -0.003864509519189596, 0.020922696217894554, 0.04519664868712425, -0.02613072656095028, -0.0035984471905976534, 0.02460605651140213, -0.04347573220729828, 0.041634052991867065, -0.015435394831001759, -0.054978687316179276, 0.000790167658124119, 0.0028832864481955767, 0.023292727768421173, -0.022160546854138374, 0.01359371468424797, -0.028636619448661804, -0.009963189251720905, 0.01514857541769743, 0.0013454079162329435, 0.017767686396837234, -0.002496458124369383, -0.0076158009469509125, -0.01992637850344181, 0.01018962450325489, 0.00880836509168148, -0.04531741514801979, -0.015775049105286598, 0.0189149621874094, 0.03266718238592148, 0.02427395060658455, -0.015835432335734367, -0.004328703507781029, 0.02786673791706562, -0.028364896774291992, -0.0006297754007391632, -0.0031455750577151775, 0.007842237129807472, -0.004204163793474436, -0.015608996152877808, -0.0018369628814980388, 0.017888452857732773, 0.023609738796949387, -0.03683360666036606, 0.01903572864830494, 0.03912815824151039, 0.013533331453800201, -0.06140947341918945, 0.006849692203104496, -0.028108268976211548, 0.02330782264471054, -0.023338014259934425, -0.0023058743681758642, 0.03943007439374924, -0.009593343362212181, -0.008529093116521835, -0.021360473707318306, 0.027096854522824287, 0.0200924314558506, 0.03450886160135269, -0.007978098466992378, 0.03580709546804428, 0.031036842614412308, 0.005381631664931774, 0.04519664868712425, 0.04054715856909752, 0.0060873571783304214, -0.025255173444747925, 0.009578247554600239, -0.01261249091476202, 0.025149503722786903, -0.006917623337358236, 0.07590138167142868, 0.03215392678976059, -0.02027357928454876, -0.04851771146059036, -0.002186995465308428, -0.020967984572052956, 0.0014322083443403244, -0.014725894667208195, -0.009057444520294666, -0.017828069627285004, 0.0037286479491740465, 0.026372259482741356, 0.03387484326958656, 0.003209731774404645, -0.009306523948907852, -0.022160546854138374, -0.006121322978287935, -0.013193677179515362, 0.024968355894088745, -0.006060939747840166, 0.04021505266427994, -0.014129613526165485, 0.012476629577577114, 0.01716385781764984, -0.031338758766651154, 0.04217749834060669, 0.017722399905323982, -0.02972351387143135, -0.027459152042865753, 0.015412751585245132, -0.03432771563529968, -0.03610901162028313, -0.04604201018810272, -0.016001485288143158, -0.014106969349086285, -0.019850898534059525, 0.03209354355931282, -0.004102267324924469, -0.011072725988924503, 0.0010491539724171162, -0.028923438861966133, 0.02415318414568901, -0.004581557121127844, 0.04598162695765495, 0.015956196933984756, 0.003472020383924246, -0.029602747410535812, -0.0016209051245823503, 0.03293890506029129, 0.008121508173644543, 0.029029108583927155, 0.02172277122735977, 0.026145823299884796, 0.03761858493089676, 0.007027067244052887, 0.011533145792782307, -0.06237560138106346, -0.012189810164272785, 0.018492281436920166, 0.019835803657770157, -0.011986018158495426, -0.012250193394720554, -0.017828069627285004, 0.02510421723127365, 0.010846289806067944, 0.004891019780188799, -0.06974232196807861, -0.038645096123218536, -0.032908715307712555, -0.0006406254833564162, 0.041301947087049484, -0.05923568457365036, 0.015269341878592968, 0.026160918176174164, 0.02258322760462761, 0.03671284019947052, 0.014937235042452812, -0.018054505810141563, 0.007702601607888937, 0.04362669214606285, 0.03511269390583038, 0.01492213923484087, 0.06340210884809494, 0.006887431722134352, -0.02184353582561016, 0.02594957873225212, 0.02499854564666748, -0.035837288945913315, 0.02945178933441639, 0.009782039560377598, -0.035324033349752426, -0.011412380263209343, 0.03888662904500961, 0.012680422514677048, 0.01604677177965641, -0.00178790173958987, -0.004475886933505535, 0.005196708720177412, -0.008627215400338173, 0.016529835760593414, 0.02382107824087143, 0.03308986499905586, 0.02516460046172142, 0.0189149621874094, -0.011525598354637623, 0.0021134037524461746, 0.003368237055838108, -0.0015303307445719838, 0.003498437814414501, -0.0032116188667714596, -0.014824016951024532, -0.006698735058307648, 0.02718742936849594, 0.0154504906386137, -0.003000278491526842, 0.024364525452256203, -0.00641946354880929, -0.0593564510345459, -0.027293099090456963, 0.020001856610178947, -0.0266288872808218, 0.028410183265805244, -0.01976032368838787, -0.007110093720257282, 0.025421226397156715, -0.033240821212530136, 0.05461638793349266, -0.03502211719751358, -0.013329538516700268, -0.01238605473190546, 0.03139914199709892, 0.009359358809888363, -0.008355492725968361, 0.03595805540680885, -0.0006335493526421487, -0.02673455700278282, -0.012257741764187813, 0.016680793836712837, 0.0023002135567367077, -0.03484096750617027, -0.034659821540117264, -0.022039780393242836, -0.031097225844860077, 0.0017841277876868844, -0.003811674425378442, -0.012929501943290234, 0.011835061013698578, -0.017767686396837234, 0.006910075433552265, -0.0105896620079875, -0.02280966378748417, 0.03040282242000103, 0.04939326271414757, -0.009872614406049252, -0.023338014259934425, 0.02460605651140213, -0.009789587929844856, 0.013186129741370678, 0.008755529299378395, -0.014688155613839626, 0.008876295760273933, 0.02341349422931671, 0.006245862692594528, 0.05362007021903992, 0.008257370442152023, 0.015775049105286598, 0.032455842941999435, 0.0015171219129115343, -0.018084697425365448, 0.008113960735499859, -0.04667602851986885, 0.04721947759389877, 0.03804126754403114, 0.031157609075307846, -0.012657778337597847, -0.029180066660046577, -0.0068836575374007225, 0.03677322342991829, -0.020681165158748627, 0.05878281220793724, 0.02691570483148098, -0.015382559970021248, 0.033301204442977905, 0.024289047345519066, -0.005377857480198145, 0.010234911926090717, 0.022885141894221306, 0.004551365971565247, 0.010801002383232117, 0.02031886763870716, 0.023941844701766968, -0.007623348850756884, 0.013865437358617783, 0.004826862830668688, 0.04012447968125343, -0.0019341417355462909, -0.006393046118319035, 0.015442942269146442, 0.021707674488425255, -0.0030550004448741674, 0.013450304977595806, 0.01948860101401806, -0.025496706366539, -0.024560770019888878, -0.046766605228185654, -0.01701289974153042, 0.00727614713832736, -0.001655814005061984, -0.012023757211863995, -0.008529093116521835, -0.005377857480198145, -0.012657778337597847, 0.01829603686928749, 0.0200471431016922, 0.01047644391655922, 0.021300090476870537, -0.006159062031656504, -0.012212454341351986, 0.0070610325783491135, -0.02262851595878601, 0.037467628717422485, -0.01994147337973118, 0.06418708711862564, 0.03318043798208237, -0.017103474587202072, 0.012197358533740044, 0.021194418892264366, -0.048004455864429474, 0.007970551028847694, -0.021375568583607674, 0.007298790384083986, 0.027957310900092125, -0.015956196933984756, -0.02561747096478939, -0.010770810768008232, -0.023730503395199776, -0.010748167522251606, 0.0057061901316046715, -0.05624672770500183, 0.044623009860515594, 0.03348235413432121, -0.04510607197880745, 0.015910910442471504, -0.014257927425205708, 0.0016190181486308575, -0.01100479532033205, -0.02842528000473976, -0.043717265129089355, -0.0037116652820259333, 0.017767686396837234, -0.05377102643251419, -0.015103288926184177, -0.03396541625261307, -0.06156042963266373, 0.0208321213722229, -0.03511269390583038, 0.0031757664401084185, 0.0026115630753338337, 0.04447205364704132, 0.013714480213820934, -0.008929130621254444, 0.010567018762230873, 0.006038296036422253, -0.006457203067839146, -0.014250379055738449, -0.001877532689832151, 0.0008529093465767801, -0.004249450750648975, 0.007804498076438904, -0.004034336656332016, -0.0031946361996233463, -0.011231230571866035, -0.017103474587202072, 0.013623906299471855, 0.021028365939855576, -0.014974975027143955, -0.012884214520454407, -0.023066291585564613, -0.0132917994633317, 0.01052927877753973, -0.0021228385157883167, -0.018794197589159012, 0.0063288891687989235, -0.01639397442340851, -0.009661274030804634, -0.018326228484511375, 0.0008585702744312584, 0.022432271391153336, -0.019609367474913597, 0.008891391567885876, -0.047611966729164124, -0.020515112206339836, 0.047159094363451004, -0.006279828026890755, 0.03266718238592148, 0.023579547181725502, 0.002511553931981325, -0.041181180626153946, -0.03598824515938759, 0.01992637850344181, 0.02522498182952404, -0.03275775536894798, 0.028953630477190018, -0.022824760526418686, -0.01902063377201557, -0.021662387996912003, -0.009117827750742435, 0.0032210536301136017, -0.013238964602351189, -0.026493024080991745, 0.009102731943130493, -0.006608160678297281, 0.011872800067067146, -0.014469267800450325, 0.00047480821376666427, -0.009449933655560017, -0.0004849506658501923, -0.0173902940005064, -0.015314629301428795, -0.016575124114751816, 0.008974418044090271, -0.008347944356501102, -0.017707303166389465, -0.009842422790825367, 0.008370588533580303, 0.03056887537240982, -0.006189253646880388, 0.006200575269758701, -0.003030469873920083, 0.031338758766651154, 0.03079531155526638, 0.01689213328063488, -0.026326971128582954, 0.04543817788362503, -0.0292857363820076, 0.014537198469042778, 0.021662387996912003, 0.002353048650547862, 0.017948836088180542, 0.00940464623272419, 0.006091131363064051, 0.024590961635112762, 0.016922324895858765, -0.0081064123660326, 0.016348687931895256, 0.010008475743234158, 0.026160918176174164, 0.027715779840946198, -0.0009887709747999907, 0.01368428859859705, -0.021919015794992447, -0.022115260362625122, -0.012174714356660843, -0.034086182713508606, 0.03384464979171753, -0.0173902940005064, -0.02066606841981411, 0.022371888160705566, -0.005038203205913305, 0.020786834880709648, -0.07258032262325287, -0.017994122579693794, -0.037980884313583374, 0.004894793964922428, -0.002596467500552535, -0.03260679915547371, 0.033633310347795486, 0.021315185353159904, -0.03647131100296974, -0.01238605473190546, 0.022990813478827477, -0.01199356559664011, 0.0017228013603016734, 0.011774677783250809, 0.05763553828001022, -0.06787045300006866, -0.008234726265072823, -0.0036286385729908943, 0.017526155337691307, -0.0056986422277987, 0.01716385781764984, -0.009714108891785145, 0.02415318414568901, 0.009638630785048008, -0.0027361030224710703, 0.01036322582513094, 0.02089250460267067, 0.0073591736145317554, 0.0029983913991600275, 0.031278375536203384, 0.021586909890174866, 0.0006760061369277537, -0.020862312987446785, -0.01492213923484087, -0.011593529023230076, 0.0028455471619963646, -0.0006495885900221765, -0.0014189996290951967, 0.023624833673238754, -0.02404751442372799, 0.0009265010594390333, 0.016016580164432526, -0.03689398989081383, 0.016137346625328064, 0.03641092777252197, 0.014484362676739693, -0.015382559970021248, -0.0033191759139299393, 0.018054505810141563, -0.002024716231971979, -0.016982708126306534, -0.02262851595878601, 0.007132737431675196, -0.015805240720510483, 0.01588071882724762, -0.05223126336932182, -0.007661088369786739, -0.01036322582513094, 0.01120858732610941, -0.02037924900650978, -0.0455891378223896, 0.03559575602412224, -0.031338758766651154, 0.04897058382630348, 0.0014878739602863789, -0.01728462241590023, -0.029648033902049065, 0.03275775536894798, -0.053801219910383224, 0.011533145792782307, 0.0008651746320538223, 0.013691836968064308, -0.003281436627730727, -0.019216878339648247, 0.04272094741463661, 0.004340025596320629, 0.014620224945247173, -0.041573669761419296, -0.03396541625261307, -0.004883471876382828, -0.02297571673989296, -0.0005401444504968822, -0.0006632690783590078, -0.03737705200910568, 0.05183877423405647, -0.01672608032822609, -0.00146711734123528, 0.03529383987188339, -0.013940916396677494, 0.0006665713153779507, 0.021994493901729584, -0.006755344104021788, 0.005019333679229021, 0.004026788752526045, 0.012310576625168324, -0.013223868794739246, -0.03728647902607918, 0.020756643265485764, -0.024590961635112762, -0.0007467674440704286, -0.015835432335734367, 0.026372259482741356, -0.008876295760273933, 0.0018199802143499255, -0.014937235042452812, 0.019911281764507294, -0.018205463886260986, 0.033361587673425674, 0.007872428745031357, -0.0026247717905789614, -0.0006076035788282752, -0.01959427073597908, 0.01864323951303959, -0.014431527815759182, -0.00997073668986559, -0.02213035523891449, -0.013661645352840424, 0.03574671223759651, 0.0014067343436181545, -0.01199356559664011, -0.00028847018256783485, -0.018431900069117546, -0.017918644472956657, 0.018658336251974106, -0.015956196933984756, 0.002347387606278062, 0.01357107050716877, -0.020620781928300858, 0.014220187440514565, -0.014839112758636475, -0.008861199952661991, 0.04398898780345917, -0.01722423918545246, 0.019503697752952576, -0.05141609162092209, -0.013865437358617783, 0.011155752465128899, 0.012944597750902176, 0.009985832497477531, 0.0048646023496985435, -0.009359358809888363, 0.011344448663294315, -0.007261051330715418, -0.00796300359070301, -0.02066606841981411, 0.0007623349083587527, 0.0034399419091641903, 0.001594487577676773, -0.02348897233605385, -0.01763182505965233, -0.0036927955225110054, 0.030674545094370842, -0.003281436627730727, 0.008030934259295464, 0.0339956060051918, 0.01205394882708788, 0.017435580492019653, 0.017345005646348, 0.02348897233605385, -0.027323290705680847, -0.04821579530835152, 0.028697002679109573, 0.02015281282365322, 0.014106969349086285, 0.006464750971645117, 0.005087264813482761, 0.010733071714639664, -0.023805983364582062, 0.04679679498076439, -0.010597209446132183, 0.009397098794579506, 0.02099817432463169, 0.011299162171781063, 0.01988109014928341, 0.008861199952661991, -0.0154504906386137, 0.03269737586379051, -0.002966312924399972, 0.02730819396674633, 0.004343799315392971, -0.0165600273758173, 0.026221301406621933, -0.005702415946871042, -0.009668821468949318, -0.01565428264439106, 0.021647291257977486, -0.04133213683962822, -0.035052310675382614, -0.0011048194719478488, -0.0100462157279253, -0.008355492725968361, -0.01494478341192007, 0.02404751442372799, -0.007340304087847471, -0.0013661645352840424, -0.006717604584991932, -0.023730503395199776, -0.020817026495933533, 0.011359544470906258, 0.03903758525848389, -0.01278609223663807, -0.0274138655513525, 0.002915364922955632, 0.007283695042133331, 0.00709499791264534, 0.0022190739400684834, 0.0081064123660326, -0.017873356118798256, -0.016575124114751816, 0.026945896446704865, -0.003039904870092869, -0.027293099090456963, 0.0005632598185911775, -0.009532960131764412, -0.004136233124881983, -0.000860928965266794, 0.04350592568516731, -0.023896558210253716, 0.02050001546740532, 0.019443314522504807, 0.022492652758955956, -0.008181891404092312, 0.004683453589677811, 0.003966405987739563, 0.029527269303798676, 0.020183004438877106, 0.0036173169501125813, -0.03789030760526657, 0.01308800745755434, 0.0030833049677312374, -0.00985751859843731, -0.005955269560217857, 0.000452400476206094, 0.014590033330023289, 0.02172277122735977, -0.02110384590923786, -0.014771182090044022, -0.02258322760462761, -0.030206577852368355, 0.03520326688885689, -0.02718742936849594, -0.005909982603043318, -0.0005995839601382613, -0.025013642385601997, -0.0067591178230941296, -0.005185387097299099, -0.021134037524461746, 0.011774677783250809, -0.021194418892264366, 0.03647131100296974, 0.009389550425112247, 0.0018831936176866293, 0.006676091346889734, -0.02444000355899334, -0.018824389204382896, -0.016877038404345512, -0.03405598923563957, -0.027262907475233078, -0.0011368979467079043, -0.012642682529985905, 0.005260865669697523, 0.015790143981575966, -0.0021530298981815577, -0.03683360666036606, 0.009359358809888363, -0.014122065156698227, 0.011918087489902973, 0.02780635468661785, 0.0008038482046686113, 0.02256813272833824, 0.0007788458606228232, 0.010906673036515713, -0.01393336895853281, 0.03885643556714058, 0.012370959855616093, 0.031731247901916504, 0.008355492725968361, 0.027353482320904732, -0.01909611187875271, -0.02241717465221882, -0.0447135828435421, -0.022477557882666588, -0.007729019038379192, 0.0024058837443590164, 0.011804869398474693, 0.011336901225149632, 0.03136894851922989, -0.012997432611882687, -0.0003726760915014893, 0.014650416560471058, 0.018884770572185516, -0.007872428745031357, -0.010310390964150429, 2.4677998226252384e-05, 0.02951217256486416, 0.004004145041108131, 0.01469570305198431, -0.028410183265805244, -0.012363411486148834, -0.03936969116330147, -0.031338758766651154, -0.009653725661337376, 0.023896558210253716, 0.02223602682352066, -0.021934110671281815, -0.0292857363820076, 0.012340768240392208, -0.038312990218400955, 0.01963955909013748, -0.017480866983532906, 5.3395284339785576e-05, 0.01953388750553131, 0.04767234995961189, 0.015110836364328861, 0.008000742644071579, 0.03873566910624504, -0.016877038404345512, 0.0184771865606308, 0.015291985124349594, -0.026674173772335052, -0.025979770347476006, -0.00828001368790865, 0.018764005973935127, 0.02646283246576786, 0.008287562057375908, 0.018386611714959145, 0.04930268973112106, 0.007955455221235752, 0.00146711734123528, 0.04613258317112923, -0.014620224945247173, -0.004649488255381584, -0.0020209422800689936, -0.03607882186770439, -0.025813715532422066, 0.004581557121127844, -0.0324256494641304, -0.030765119940042496, 0.03209354355931282, 0.003715439233928919, 0.008710241876542568, -0.03912815824151039, 0.04398898780345917, -0.0023285180795937777, 0.004038110841065645, -0.0029247996862977743, -0.0021813344210386276, -0.00502310786396265, -0.01201620977371931, -0.018084697425365448, -0.007751662749797106, -0.008136603981256485, 0.0009548055822961032, 0.009623534977436066, -0.007517678663134575, -0.009827326983213425, 0.030599066987633705, -0.010506635531783104, 0.01846209168434143, 0.02809317409992218, 0.006283602211624384, -0.027881832793354988, -0.013012528419494629, -0.016529835760593414, -0.021496335044503212, 0.029965044930577278, 0.001679401146247983, 0.0113972844555974, -0.03230488672852516, 0.032063353806734085, -0.035776905715465546, 0.0015105175552889705, 0.023519163951277733, 0.007091224193572998, 0.03034243918955326, 0.014673059806227684, -0.031338758766651154, -0.0019001764012500644, 0.027051568031311035, -0.010197172872722149, 0.0004736288683488965, 0.0007689392659813166, 0.02060568518936634, -0.006132644601166248, 0.014491911046206951, -0.004570235498249531, 0.002898382255807519, -0.01631849631667137, -0.02505892887711525, 0.025587281212210655, 0.029693322256207466, 0.002841773210093379, 0.004468339029699564, 0.006721378304064274, -0.03411637246608734, 0.018839484080672264, -0.0015548613155260682, -0.03644111752510071, -0.004162650555372238, 0.012114332057535648, 0.0005642033065669239, 0.016650602221488953, 0.03692418336868286, 0.006102452985942364, 0.02916497178375721, 0.03490135073661804, 0.013525784015655518, -0.04178500920534134, 0.030372630804777145, 0.008272466249763966, -0.012318124063313007, 0.012801188044250011, 0.02635716274380684, 0.0036173169501125813, -0.025647662580013275, -0.00805357750505209, 0.022779472172260284, 0.01948860101401806, -0.00016994502220768481, 0.0044872090220451355, -0.01182751264423132, -0.006944040767848492, -0.0016690228367224336, -0.0017850713338702917, 0.004702323116362095, -0.007932811975479126, -0.03029715083539486, 0.01249927282333374, 0.03378426656126976, 0.010695332661271095, 0.019413122907280922, -0.010174529626965523, -0.003302193246781826, 0.009525412693619728, 0.00624963641166687, -0.005170291289687157, 0.00199829856865108, 0.008770625106990337, -0.0037777090910822153, 0.0463741160929203, -0.028923438861966133, -0.012363411486148834, 0.015608996152877808, 0.009283880703151226, 0.006876109633594751, 0.015684474259614944, -0.009298976510763168, 0.016197729855775833, -0.0021360472310334444, -0.00784978549927473, -0.02551180124282837, -0.0022360566072165966, 0.020137717947363853, 0.03236526623368263, -0.024183375760912895, -0.02217564359307289, 0.007457295898348093, -0.025043834000825882, -0.008098864927887917, -0.005830729845911264, 0.04284171015024185, -0.0539521761238575, 0.02151142992079258, -0.004132458940148354, 0.03348235413432121, -0.012167166918516159, 0.0018360194517299533, -0.007872428745031357, -0.014605129137635231, -0.005015559960156679, 0.026266587898135185, 0.022205835208296776, 0.0026379807386547327, -0.036229778081178665, 0.008272466249763966, -0.01418999582529068, 0.014899495989084244, 0.01751105859875679, 0.027489343658089638, 0.0049740467220544815, -0.009661274030804634, -0.006442107260227203, -0.04981594532728195, -0.0011925635626539588, 0.00519293500110507, 0.018054505810141563, -0.010295295156538486, 0.001539765507914126, -0.01258230023086071, -0.017948836088180542, 0.027157237753272057, -0.028908343985676765, -0.02590429037809372, 0.006876109633594751, -0.011155752465128899, 0.0007340303855016828, -0.005955269560217857, 0.0020001856610178947, 0.03062925860285759, -0.024560770019888878, 0.0008019612287171185, -0.03281813859939575, 0.029406502842903137, 0.01477873045951128, -0.014522102661430836, -0.01432585809379816, 0.0069364928640425205, 0.008189438842236996, 0.0017114796210080385, -0.011238778941333294, 0.007887524552643299, 0.0014756086748093367, 0.0018029975472018123, -0.018446994945406914, -0.008295109495520592, 0.00917821004986763, 0.016122251749038696, 0.005608067847788334, -0.0001761955936672166, 0.010597209446132183, 0.002607789123430848, 0.001485986984334886, -0.023685216903686523, 0.0227945689111948, -0.03073492832481861, -0.00940464623272419, -0.008551737293601036, -0.004823089111596346, 0.015744857490062714, 0.0016397747676819563, -0.005660902708768845, -0.0077365669421851635, -0.040909457951784134, -0.006513812113553286, -0.018386611714959145, -0.015684474259614944, 0.025406131520867348, -0.027096854522824287, 0.028908343985676765, -0.02510421723127365, 0.01660531386733055, -0.025994865223765373, -0.017088377848267555, 0.032848332077264786, -0.0323350764811039, 0.014008847065269947, 0.019171589985489845, 0.0036135429982095957, -0.0006359081016853452, -0.004687227308750153, 0.01128406636416912, -0.02955746091902256, -0.007604479324072599, -0.015669379383325577, -0.009283880703151226, -0.03598824515938759, 0.006857240106910467, -0.017662016674876213, -0.017194049432873726, 0.033754076808691025, 0.03846394643187523, 0.031278375536203384, 0.02889324724674225, -0.004072076175361872, -0.041754819452762604, 0.0146428681910038, -0.027776163071393967, -0.003458811668679118, 0.015548612922430038, -0.022100163623690605, -0.01615244336426258, 0.035324033349752426, 0.022719088941812515, -0.044955115765333176, 0.014597580768167973, 0.035716522485017776, -0.017692208290100098, -0.012204905971884727, -0.016982708126306534, -0.02223602682352066, -0.010099050588905811, 0.011721842922270298, -0.007653540465980768, -0.00551749300211668, 0.01982070691883564, 0.002475701505318284, -0.03692418336868286, -0.03885643556714058, 0.013827698305249214, -0.031338758766651154, 0.022341696545481682, -0.025874098762869835, -0.00794035941362381, -0.0679912120103836, -0.013420113362371922, -0.007562966085970402, 0.021858632564544678, 0.002505892887711525, -0.02347387745976448, 0.013661645352840424, 0.0073591736145317554, -0.0033342717215418816, -0.01171429455280304, 0.0065741948783397675, -0.014990070834755898, -0.012574751861393452, 0.016710985451936722, -0.0018256411422044039, 0.009774492122232914, 0.00036347712739370763, -0.0347805880010128, 0.013872985728085041, -0.0008878182270564139, -0.011185944080352783, -0.013442756608128548, 0.02487778104841709, 0.005483527667820454, -0.036561883985996246, 0.018613047897815704, -0.0076799578964710236, -0.013412565924227238, -0.028062982484698296, -0.02217564359307289, -0.004034336656332016, -0.001698270789347589, -0.008174343965947628, -0.021254802122712135, -0.009472576901316643, 0.008264917880296707, 0.008196987211704254, -0.021315185353159904, -0.003160670632496476, -0.0010076407343149185, -0.004970272537320852, 0.00199829856865108, -0.00934426300227642, -0.0013831472024321556, 0.014793825335800648, 0.010219816118478775, 0.008121508173644543, -0.036682650446891785, 0.005940173752605915, 0.014499458484351635, 0.0017992235952988267, 0.020409440621733665, -0.028168652206659317, -0.02487778104841709, -0.0033135151024907827, 0.016137346625328064, 0.008529093116521835, -0.022930430248379707, -0.005491075571626425, -0.006762892007827759, 0.04374745488166809, 0.015359915792942047, 0.006781761534512043, -0.013842794112861156, -0.013744671829044819, 0.01689213328063488, 0.014318309724330902, 0.042871903628110886, 0.006876109633594751, 0.00230964832007885, 0.01885458081960678, 0.006117548793554306, 0.017858261242508888, 0.0014331518905237317, 0.004385312553495169, -0.019503697752952576, 0.0023322920314967632, 0.014386240392923355, 0.019911281764507294, 0.023171961307525635, -0.029406502842903137, -0.0008246048237197101, 0.009895257651805878, -0.009578247554600239, -0.01716385781764984, -0.019050825387239456, -0.00630624545738101, -0.03456924483180046, 0.0004844789218623191, 0.009366907179355621, 0.03308986499905586, -0.004902341868728399, 0.028289418667554855, 0.02223602682352066, -0.02133028209209442, 0.06962155550718307, -0.015193862840533257, 0.026598695665597916, -0.01382015086710453, -0.010936863720417023, 0.008483806625008583, -0.009389550425112247, 0.01368428859859705, 0.010650045238435268, -0.005815634038299322, -0.00743465218693018, 0.0068270484916865826, 0.0008694202988408506, -0.007502582855522633, -0.01971503719687462, -0.02157181315124035, -0.015910910442471504, -0.04217749834060669, 0.009374454617500305, -0.017073282971978188, -0.0009831101633608341, 0.02194920741021633, 0.013035171665251255, -0.009215950034558773, 0.007517678663134575, 0.007589383516460657, 0.01864323951303959, -0.007574287708848715, -0.02404751442372799, -0.0044985306449234486, 0.006370402406901121, -0.0055325888097286224, -0.010204720310866833, 0.0031550098210573196, 0.02786673791706562, -0.015729762613773346, -0.004819315392524004, -0.008257370442152023, -0.005423144903033972, 0.016137346625328064, -0.005623163189738989, 0.015239150263369083, -0.013027624227106571, 0.03287852182984352, -0.02077174000442028, 0.0005609011277556419, -0.0021624648943543434, -0.014182448387145996, 0.0081064123660326, -0.010650045238435268, 0.015790143981575966, -0.0071138679049909115, -0.03345216065645218, 0.005536362994462252, 0.007238407619297504, 0.010763263329863548, -0.004102267324924469, 0.03936969116330147, 0.01802431419491768, -0.012393603101372719, -0.02911968342959881, 0.0013029511319473386, 0.021420855075120926, -0.004857054445892572, -0.009578247554600239, -0.012069044634699821, -0.0017652581445872784, 0.011518049985170364, 0.005325022619217634, 0.012778544798493385, 0.005819408223032951, -0.02190391905605793, -0.01539765577763319, -0.0037852569948881865, -0.0009821666171774268, 0.008868747390806675, -0.024636248126626015, -0.019231973215937614, -0.027278002351522446, 0.018794197589159012, -0.028168652206659317, 0.0035399512853473425, -0.022824760526418686, 0.012921953573822975, -0.004181520082056522, -0.010370774194598198, 0.0023983358405530453, -0.007857332937419415, -0.0035305162891745567, -0.02054530382156372, 0.02139066532254219, -0.014650416560471058, 0.01432585809379816, -0.03272756561636925, -0.003173879347741604, 0.0100462157279253, 0.017435580492019653, -0.0140767777338624, 0.007449747994542122, 0.002605902263894677, 0.0037286479491740465, 0.017480866983532906, 0.007306338287889957, -0.027912024408578873, -0.007970551028847694, -0.0005736381281167269, -0.008317752741277218, 0.01539765577763319, -0.00045475919614546, -0.015684474259614944, 0.011495406739413738, -0.04112079739570618, 0.03179163113236427, -0.0037871438544243574, -0.03203316032886505, -0.002166238846257329, -0.00872533768415451, 0.011216135695576668, 0.023956939578056335, 0.010461348108947277, -0.013012528419494629, 0.004924985580146313, -0.024364525452256203, 0.00011026966967619956, -0.027791257947683334, 0.026447737589478493, -0.0038796053268015385, 0.01705818623304367, -0.010634949430823326, 0.0043475735001266, 0.02573823742568493, 0.007000649813562632, -0.06672317534685135, -0.013722028583288193, 0.012310576625168324, 0.024243758991360664, 0.0010000928305089474, -0.005932625848799944, -0.010997246950864792, -0.017722399905323982, 0.01089157722890377, 0.024364525452256203, -0.009842422790825367, 0.020198101177811623, -0.007751662749797106, -0.010438704863190651, -0.03749781847000122, -0.01864323951303959, -0.02342858910560608, 0.02347387745976448, 0.020681165158748627, -0.018054505810141563, -0.00698177982121706, 0.007721471134573221, 0.024530578404664993, -0.0038229962810873985, 0.0005241052713245153, -0.00889893900603056, -0.0040532061830163, -0.0047325147315859795, -0.017465772107243538, 0.009246140718460083, -0.01942821778357029, 0.004630618263036013, -0.01391072478145361, -0.032576609402894974, -0.0060156527906656265, 0.011125560849905014, -0.027776163071393967, 0.02027357928454876, -0.011329353787004948, -0.007487487513571978, 0.0072346339002251625, 0.01971503719687462, -0.013140842318534851, -0.012778544798493385, 0.01342766173183918, -0.02782144956290722, -0.006121322978287935, 0.003992823418229818, 0.006853466387838125, -4.702676960732788e-05, -0.029648033902049065, 0.008091316558420658, -0.0022926656529307365, -0.0162128247320652, 0.005306152626872063, -0.02640245109796524, -0.0034135242458432913, 0.007385591045022011, 0.0038135615177452564, -0.01610715501010418, -0.022477557882666588, 0.01594110205769539, 0.004706097301095724, -0.01047644391655922, 0.02825922705233097, 0.024002227932214737, -0.009525412693619728, 0.02268889732658863, 0.01235586404800415, -0.0057854424230754375, 0.0009246140834875405, 0.0031455750577151775, -0.014982522465288639, 0.008310205303132534, 0.016288304701447487, -0.03360311686992645, -0.001013301545754075, -0.0347805880010128, -0.0003302193363197148, 0.015095740556716919, -0.004687227308750153, 0.015578804537653923, 0.011502954177558422, -0.0007892241701483727, 0.013616357930004597, -0.004747610539197922, -0.02904420532286167, -0.006585516966879368, 0.021586909890174866, -5.8761350373970345e-05, -0.006460976786911488, 0.014748538844287395, -0.030448108911514282, 0.012476629577577114, 0.001478439080528915, 0.021707674488425255, 0.011910539120435715, -0.040003713220357895, -0.009827326983213425, -0.010876481421291828, 0.016424166038632393, 0.008181891404092312, -0.0042985123582184315, -0.025074025616049767, 0.021632196381688118, -0.006366628687828779, 0.01173693872988224, 0.0046192966401577, 0.003079531015828252, 0.016635505482554436, -0.00636285450309515, -0.02291533350944519, -0.0034550377167761326, 0.02730819396674633, 0.02128499373793602, -0.025375939905643463, 0.004943855106830597, -0.006166609935462475, 0.007872428745031357, -0.001809601904824376, 0.004373990930616856, 0.019609367474913597, -0.009148018434643745, 0.015850527212023735, -0.008030934259295464, -0.0005311813438311219, -0.0036739257629960775, 0.0016284530283883214, 0.03719590604305267, 0.009140470996499062, 0.030025428161025047, 0.002700250595808029, -0.03354273736476898, -0.01920178160071373, 0.008046030066907406, 0.010687784291803837, 0.027549726888537407, -0.0004891963326372206, 0.004090945702046156, 0.011495406739413738, -0.019458409398794174, 0.0025587279815226793, -0.012906857766211033, -0.005725059658288956, 0.009714108891785145, -0.012665326707065105, 0.007117641624063253, -0.01728462241590023, 0.023232344537973404, 0.01825075037777424, 0.0015680700307711959, 0.016967613250017166, -0.003658830188214779, -0.004600427113473415, 0.007744114845991135, 0.004585331305861473, -0.0274138655513525, -0.027459152042865753, -0.024394717067480087, -0.010129242204129696, 0.02111894078552723, -0.012959693558514118, -0.02217564359307289, 0.004306059796363115, -0.017435580492019653, 0.01829603686928749, 0.019684845581650734, 0.006510037928819656, 0.007347851525992155, -0.015458038076758385, 0.007223311811685562, -0.03396541625261307, -0.03142933174967766, -0.014106969349086285, 0.00046325052971951663, -0.022824760526418686, 0.0431436263024807, -0.013842794112861156, 0.02973860874772072, 0.010151885449886322, -0.0006604386726394296, 0.008400779217481613, -0.03028205595910549, -0.029331024736166, -0.014333405531942844, -0.009985832497477531, -0.01013678964227438, -0.040728308260440826, 0.010604757815599442, -0.012091687880456448, 0.016861941665410995, 0.007766758557409048, 0.0015199524350464344, -0.0012972902040928602, -0.024862684309482574, -0.02179824933409691, -0.009298976510763168, -0.03230488672852516, 0.023896558210253716, -0.02765539661049843, 0.0013661645352840424, 0.007257277145981789, -0.01598638854920864, -0.022839855402708054, 0.0015718439826741815, -0.006302471738308668, 0.00636285450309515, 0.025919387117028236, -0.028727194294333458, -0.005891112610697746, 0.016575124114751816, 0.002805920783430338, -0.02955746091902256, -0.03444847837090492, -0.004502304829657078, 0.021239707246422768, -0.02235679142177105, 0.012755900621414185, -0.018311133608222008, 0.0034474898129701614, -0.009782039560377598, 0.022039780393242836, 0.02421356737613678, 0.01761673018336296, -0.024243758991360664, 0.017752591520547867, 0.018945153802633286, 0.011752033606171608, 0.023956939578056335, -0.017707303166389465, -0.0033191759139299393, -0.022160546854138374, 0.019126303493976593, 0.0017680886667221785, -0.00363241252489388, -0.0013944690581411123, -0.0007896959432400763, -0.013223868794739246, 0.012831379659473896, 0.03218412026762962, -0.005309926811605692, -0.0008363983943127096, -0.01971503719687462, 0.006921397056430578, -0.0017869583098217845, -0.0017954496433958411, -0.012318124063313007, 0.02477210946381092, -0.03176143765449524, 0.0014331518905237317, 0.017329910770058632, 0.0006651560543105006, -0.009298976510763168, 0.004389086738228798, -0.01402394287288189, 0.01148785836994648, 0.008891391567885876, 0.010823645628988743, -0.013382374309003353, 0.025859003886580467, -0.01660531386733055, -0.004407956264913082, 0.03749781847000122, -0.0035116467624902725, 0.03801107406616211, -0.011986018158495426, 0.0033833328634500504, 0.02194920741021633, 0.0027549725491553545, 0.0075478702783584595, 0.007774306461215019, -0.00032715301495045424, 0.004826862830668688, 0.0010576453059911728, -0.004868376534432173, -0.02927064150571823, -0.0002658265584614128, -0.001500139245763421, -0.018039410933852196, -0.004766480065882206, 0.010280199348926544, -0.0015916571719571948, -0.01308800745755434, -0.018341325223445892, 0.02724781259894371, 0.015865623950958252, 0.007121415808796883, 0.004924985580146313, -0.0036531691439449787, 0.006325115449726582, -0.010801002383232117, -0.015088193118572235, 0.0133144436404109, -0.003698456333950162, -0.012846475467085838, 0.001750162453390658, -0.014182448387145996, 0.009495221078395844, 0.004913663491606712, 0.0031776532996445894, 0.017254430800676346, -0.031217992305755615, -0.014846661128103733, -0.007261051330715418, 0.0026794939767569304, 0.009148018434643745, 0.008831008337438107, 0.03804126754403114, -0.0019039502367377281, 0.003592786379158497, 0.0036531691439449787, -0.01430321391671896, -0.01868852600455284, -0.011110465042293072, 0.005174065008759499, -0.013216321356594563, 0.007355399429798126, 0.015850527212023735, 0.05268413573503494, 0.006740248296409845, 0.006370402406901121, -0.010929316282272339, 0.011080273427069187, -0.00957069918513298, 0.005491075571626425, -0.005740155465900898, 0.00472874054685235, -0.003762613283470273, 0.009993379935622215, -0.032395459711551666, -0.0012954032281413674, -0.013472948223352432, -0.018658336251974106, -0.00019140927179250866, 0.021315185353159904, 0.04003390297293663, -0.018280941992998123, 0.021919015794992447, 0.012325672432780266, 0.001783184357918799, -0.006253410596400499, 0.01683175005018711, 0.006540229544043541, 0.010929316282272339, -0.002177560469135642, 0.0026870418805629015, 0.001393525511957705, 0.00787997618317604, -0.00019777778652496636, -0.0020681165624409914, -0.007257277145981789, -0.00090951839229092, -0.01755634695291519, 0.020228292793035507, -0.008030934259295464, 0.020983079448342323, 0.003351254388689995, 0.016650602221488953, -0.008831008337438107, -0.002513440791517496, 0.02572314254939556, 0.03136894851922989, -0.008204534649848938, -0.0012793639907613397, 0.015352368354797363, -0.0004394275601953268, -0.009480125270783901, -0.001539765507914126, -0.04269075393676758, -0.009759396314620972, -0.005177839193493128, -0.007185572758316994, 0.01902063377201557, 0.005257091484963894, 0.013918273150920868, -0.008257370442152023, 0.0012586073717102408, -0.0017916756914928555, -0.003741856664419174, -0.009849971160292625, -0.013654096983373165, -0.02674965187907219, 0.0025474061258137226, -0.010355678386986256, 0.00290593015961349, -0.01244643796235323, 0.019413122907280922, 0.007279920857399702, -0.004324929788708687, 0.02314176969230175, 0.006623256020247936, -0.02128499373793602, -0.012937049381434917, 0.01695251651108265, 0.014725894667208195, 0.013759767636656761, 0.013940916396677494, -0.0029983913991600275, -0.013563523069024086, -0.00861211959272623, -0.0012737030629068613, -0.014348501339554787, 0.0015746743883937597, -0.0022266218438744545, 0.025043834000825882, -0.013752219267189503, 0.009208401665091515, -0.02961784228682518, -0.008129056543111801, 0.012552108615636826, -0.001046323566697538, 0.00895177386701107, 0.00957069918513298, -0.013133293949067593, 0.004740062635391951, -0.004426825791597366, 0.020349059253931046, -0.017027994617819786, 0.011570884846150875, 0.01755634695291519, -0.005211804527789354, 0.005151421297341585, 0.004804219584912062, -0.006611934397369623, 0.015359915792942047, 0.0011793547309935093, -0.011661459691822529, 0.005536362994462252, 0.0044872090220451355, 0.01571466587483883, -0.006060939747840166, 0.012620039284229279, -0.02427395060658455, -0.0008246048237197101, 0.01086893305182457, 0.004860828630626202, -0.007857332937419415, -0.014348501339554787, 0.008015838451683521, -0.002796486020088196, 0.0011255762074142694, 0.006091131363064051, 0.01185015682131052, -0.00052787916501984, -0.020001856610178947, -0.0032229407224804163, -0.003366350196301937, -0.013661645352840424, 0.0192621648311615, 0.003356915432959795, 0.006053391844034195, -0.027972407639026642, 0.017027994617819786, -0.0008892334881238639, -0.008023385889828205, -0.014461719430983067, 0.029089491814374924, -0.0035342902410775423, 0.0018133758567273617, 0.030312247574329376, 0.00778185436502099, 0.008400779217481613, 0.005853373557329178, 0.00833284854888916, -0.006555325351655483, -0.035444799810647964, 0.01767711155116558, -0.0006689300062134862, 0.02235679142177105, -0.030040523037314415, -0.0032323754858225584, -0.021752962842583656, 0.021420855075120926, 0.00140767777338624, -0.00805357750505209, 0.028863055631518364, 0.004985368344932795, 0.01148785836994648, 0.00399659713730216, 0.003124818205833435, -0.008083769120275974, 0.014174900017678738, 0.003583351382985711, 0.008370588533580303, 0.015608996152877808, 0.02342858910560608, 0.022160546854138374, -0.015578804537653923, 0.0034550377167761326, 0.0065024904906749725, 0.002619110979139805, -0.017858261242508888, -0.011201039887964725, -0.02264361083507538, -0.00028611146262846887, 0.02190391905605793, -0.017526155337691307, 0.014408884570002556, 0.00360410800203681, -0.007468617521226406, 0.01455229427665472, 0.021858632564544678, 0.012136975303292274, -0.018099792301654816, 0.004441921599209309, -0.019609367474913597, 0.005147647578269243, 0.006257184315472841, -0.0020492468029260635, 0.032063353806734085, -0.005562780424952507, 0.01109536923468113, -0.023005908355116844, 0.006060939747840166, 0.004917437676340342, 0.024122994393110275, 0.011480310931801796, -0.014318309724330902, -0.0022926656529307365, 0.0025492932181805372, -0.013759767636656761, 0.009057444520294666, 0.0006439276621676981, -0.017858261242508888, -0.007472391705960035, -0.015382559970021248, -0.006423237733542919, -0.010378321632742882, -0.04127175360918045, -0.01598638854920864, 0.01235586404800415, 0.00019199894450139254, -0.018794197589159012, 0.0019756550900638103, 0.022900238633155823, -0.012453986331820488, 0.02167748287320137, -0.007566739805042744, -0.010483992286026478, 0.0077894022688269615, 0.00636285450309515, -0.001941689639352262, -0.01317858137190342, 0.003415411338210106, -0.005400501191616058, 0.018779100850224495, 0.024470195174217224, -0.010574566200375557, 0.011042534373700619, 0.009480125270783901, -0.02607034333050251, 0.01829603686928749, 0.006442107260227203, 0.01224264595657587, 0.018280941992998123, -0.012514368630945683, 0.02747424878180027, -0.012552108615636826, 0.002177560469135642, 0.004124911036342382, 0.005241996143013239, 0.0015652396250516176, 0.013857889920473099, -0.004155102651566267, -0.0023889008443802595, -0.00031158552155829966, -0.003955083899199963, -2.454532113915775e-05, 0.004023015033453703, -0.01261249091476202, -0.019896186888217926, 0.013133293949067593, 0.004253224935382605, 0.017209144309163094, 0.00043801235733553767, -0.011351997032761574, 0.004883471876382828, -0.006540229544043541, 0.0004410786787047982, 0.014559841714799404, 0.015314629301428795, -0.0019473505672067404, 0.007970551028847694, 0.011080273427069187, -0.027836546301841736, 0.009502768516540527, -0.005796764511615038, 0.0076007056050002575, -0.006547777447849512, -0.010325486771762371, 0.00709499791264534, 0.010446252301335335, -0.004419277887791395, -0.007317660376429558, 0.004762706346809864, -0.0070383888669312, 0.008242274634540081, 0.019156495109200478, -0.002841773210093379, 0.0037777090910822153, 0.010174529626965523, -0.029421597719192505, -0.005306152626872063, 0.005060846917331219, -0.0037645003758370876, 0.000570335949305445, 0.0048646023496985435, -0.002834225306287408, 0.009502768516540527, -0.0059514958411455154, 0.008989513851702213, -0.0005165573675185442, -0.0021794475615024567, 0.019971664994955063, -0.00052787916501984, 0.0001892864383989945, 0.026326971128582954, 0.01598638854920864, -0.0026870418805629015, 0.00026747764786705375, -0.007970551028847694, -0.0015520307933911681, 0.02318705804646015, 0.012461533769965172, 0.01283892709761858, -0.008732886053621769, -0.010612305253744125, 0.001289742300286889, 0.0009642404038459063, 0.001249172491952777, -0.0031757664401084185, 0.006974232383072376, 0.0027927120681852102, -0.013163485564291477, 0.008227178826928139, 0.02798750251531601, -0.013857889920473099, 0.011185944080352783, -0.0016020354814827442, 0.00484195863828063, -0.02303609997034073, 0.01182751264423132, -0.01188034750521183, 0.030810406431555748, 0.010627401061356068, 0.008853651583194733, -0.0001570900494698435, -0.02031886763870716, -0.0100235715508461, -0.007510130759328604, 0.0032852105796337128, 0.010068858973681927, -0.004766480065882206, 0.01162372063845396, -0.020786834880709648, -0.006491168402135372, -0.004540043883025646, 0.017088377848267555, -0.021375568583607674, -0.006766665726900101, 0.006902527529746294, -0.0200924314558506, 0.013012528419494629, 0.005151421297341585, 0.007495035417377949, -0.013359730131924152, 0.003962631803005934, 0.014356049709022045, 0.0018907415214926004, -0.005177839193493128, 0.01986599527299404, -0.015910910442471504, 0.00033800306846387684, -0.01976032368838787, -0.011555789038538933, 0.019322548061609268, -0.015518421307206154, -0.0007425217190757394, -0.01994147337973118, 0.02093779295682907, -0.007064806763082743, -0.01711856946349144, 0.008189438842236996, 0.001861493568867445, -0.020198101177811623, 0.017299719154834747, -0.0378299243748188, 0.004936307203024626, -0.011125560849905014, -0.020032048225402832, -0.0027153464034199715, -0.0075591919012367725, -0.016861941665410995, 0.005102360155433416, -0.017495963722467422, -0.026100534945726395, 0.00450607854872942, -0.0038060136139392853, 0.0547371543943882, 0.008544188924133778, -0.014507006853818893, -0.0035286294296383858, 0.008997061289846897, -0.009132922627031803, 0.01654493249952793, 0.021541621536016464, -0.004083397798240185, 0.0019567853305488825, -0.0022662479896098375, 0.011216135695576668, -0.014635320752859116, -0.004426825791597366, 0.013004980981349945, -0.011329353787004948, -0.007159154862165451, 0.023579547181725502, 0.0039324406534433365, -0.013329538516700268, 0.02431923896074295, 0.008657407015562057, 0.004124911036342382, 0.021435951814055443, 0.01654493249952793, -0.025436323136091232, 0.02825922705233097, 0.02742896042764187, -0.0044985306449234486, -0.0019832029938697815, 0.005106134340167046, 0.010400964878499508, -0.0189149621874094, -0.000542031426448375, 0.01267287414520979, -0.0033531414810568094, 0.035324033349752426, -0.0034474898129701614, 0.01036322582513094, 0.0036531691439449787, 0.008936678059399128, 0.0017605407629162073, 0.021873727440834045, -0.01988109014928341, 0.005940173752605915, -0.004098493605852127, 0.026493024080991745, 0.016922324895858765, -0.015344819985330105, 0.005264639388769865, -0.006819500587880611, -0.004751384258270264, 0.0010170754976570606, 0.0132917994633317, -0.017209144309163094, -0.007253503426909447, 0.009865066036581993, -0.01994147337973118, 0.01348049659281969, -0.006057166028767824, -0.02128499373793602, 0.01160107646137476, 0.010182077065110207, -0.010197172872722149, 0.0027379898820072412, -0.00807622168213129, 0.0013265381567180157, 0.019745228812098503, -0.010182077065110207, -0.023051196709275246, 0.004826862830668688, 0.03891681879758835, 0.015216506086289883, -0.025481609627604485, 0.009253689087927341, -0.025240078568458557, -0.01592600718140602, 0.010453800670802593, 0.021315185353159904, -0.02786673791706562, 0.0024870233610272408, -0.003292758483439684, -0.005815634038299322, 0.010717975907027721, -0.015095740556716919, -0.01489194855093956, 0.0035701426677405834, 0.021420855075120926, -0.012620039284229279, -0.0014237170107662678, -0.017586538568139076, 0.008144152350723743, -0.006596838589757681, -0.0074271042831242085, 0.00889893900603056, 0.01677136868238449, 0.011661459691822529, 0.007751662749797106, 0.006340211257338524, -0.00726482504978776, -0.0208321213722229, -0.008408327586948872, 0.00880836509168148, 0.007834689691662788, 0.018205463886260986, 0.022447366267442703, 0.002317196223884821, 0.01790354773402214, 0.008159248158335686, 0.021375568583607674, 0.009170662611722946, -0.008740433491766453, 0.0006623255903832614, -0.00423435540869832, 0.0019454635912552476, 0.004124911036342382, -0.009329168125987053, 0.012620039284229279, -0.006800631061196327, -0.0007420500041916966, -0.005751477088779211, -0.0030550004448741674, -0.004426825791597366, 0.017480866983532906, -0.0011689764214679599, 0.0002943669387605041, -0.007857332937419415, 0.014288118109107018, 0.012159619480371475, -0.0007113867904990911, 0.021269898861646652, -2.4250482510979054e-06, -0.021466143429279327, 0.018431900069117546, -0.012423794716596603, 0.016288304701447487, 0.006630803924053907, 0.02178315445780754, 0.0053401184268295765, 0.006853466387838125, -0.012189810164272785, -0.0047438363544642925, 0.003862622659653425, 0.005075942724943161, -0.017948836088180542, 0.00878572091460228, 0.02151142992079258, 0.01627320796251297, 0.014559841714799404, -0.004106041509658098, -0.01631849631667137, -0.0023568226024508476, 0.0027455377858132124, 0.005725059658288956, -0.008302656933665276, 0.014854208566248417, 0.012778544798493385, -0.0008911204640753567, 0.037980884313583374, 0.011857704259455204, -0.00846871081739664, 0.00855928473174572, -0.015073097310960293, -0.0026323196943849325, 0.0011727503733709455, -0.021632196381688118, -0.005317474715411663, 0.015080644749104977, 0.009321619756519794, -0.0075440965592861176, -0.005072169005870819, 0.01323141623288393, 0.04350592568516731, 0.027323290705680847, 0.03384464979171753, -0.028108268976211548, -0.012031305581331253, 0.007449747994542122, 0.0014340953202918172, 0.007525226566940546, 0.0023568226024508476, -0.013691836968064308, -0.003366350196301937, 0.006781761534512043, -0.01678646355867386, -0.0039437622763216496, 0.01342766173183918, 0.0074799396097660065, -0.007230859715491533, 0.03444847837090492, -0.020786834880709648, 0.010333034209907055, -0.005996782798320055, 0.01846209168434143, 0.004019240848720074, -0.010733071714639664, -0.0034418287687003613, -0.003568255575373769, 0.014597580768167973, -0.01494478341192007, 0.0030266959220170975, -0.02945178933441639, -0.016227921470999718, -0.00045027764281257987, 0.0005972252110950649, 0.021300090476870537, 0.007362947333604097, 0.002534197410568595, 0.018839484080672264, -0.019126303493976593, 0.018884770572185516, -0.023051196709275246, -0.018507378175854683, 0.004275868646800518, -0.0002901212719734758, 0.008008290082216263, -0.006989327725023031, 0.002075664233416319, -0.025541992858052254, -0.02219073846936226, -0.00011817134509328753, 0.027323290705680847, 0.004373990930616856, 0.00489856768399477, -0.0002896495279856026, 0.004204163793474436, -0.006777987349778414, -0.03203316032886505, 0.0035607079043984413, -0.01201620977371931, 0.002081325277686119, 0.003092739963904023, 0.028002599254250526, 0.013125746510922909, -0.008831008337438107, -0.019292356446385384, 0.013057815842330456, 0.004653261974453926, 0.036743033677339554, -0.01030284259468317, -0.029029108583927155, -0.013842794112861156, -0.0005745816160924733, 0.017239335924386978, -0.01233321987092495, -0.012204905971884727, -0.017435580492019653, 0.010959507897496223, 0.007604479324072599, 0.009585794992744923, -0.013669192790985107, 0.004653261974453926, 0.004128685221076012, -0.008634763769805431, 0.018507378175854683, -0.015269341878592968, -0.02246246114373207, -0.0070383888669312, 0.014408884570002556, -0.018884770572185516, -0.00991035345941782, -0.027232715860009193, 0.0032587929163128138, 0.01902063377201557, -0.0031002876348793507, 0.015775049105286598, 0.011306709609925747, 0.011185944080352783, 0.006781761534512043, 0.016982708126306534, -0.031157609075307846, -0.01610715501010418, -0.007812045980244875, 0.012038853019475937, -0.0028832864481955767, -0.026538312435150146, 0.008944226428866386, -0.02505892887711525, 0.0016076964093372226, -0.018930058926343918, -0.00917821004986763, -0.031217992305755615, -0.0014614564133808017, 0.014665512368083, 0.008740433491766453, -0.021088749170303345, 0.023277632892131805, 0.011457666754722595, -0.009110279381275177, -0.018945153802633286, -0.015503325499594212, 0.02240207977592945, 0.0005099530098959804, 0.010491539724171162, -0.014650416560471058, -0.010959507897496223, -0.002628545742481947, -0.01047644391655922, 0.003300306387245655, -0.04404937103390694, -0.010899124667048454, 0.01862814463675022, -0.005789216607809067, -0.015669379383325577, -1.3953240340924822e-05, -0.006060939747840166, -0.011925634928047657, -0.011585980653762817, 0.006102452985942364, -0.011835061013698578, -0.04220769181847572, -0.014635320752859116, -0.0029210257343947887, -0.019005537033081055, 0.015367464162409306, 0.014929687604308128, -0.008121508173644543, 0.0010717975674197078, -0.00940464623272419, 0.0086951470002532, -0.03438809886574745, -0.012416246347129345, -0.00507971690967679, -0.009963189251720905, 0.008687598630785942, -0.008597024716436863, 0.005615615285933018, -0.012348315678536892, -0.006744022015482187, -0.008264917880296707, -0.008936678059399128, -0.002009620424360037, 0.007019519340246916, -0.012604943476617336, -0.017480866983532906, -0.022492652758955956, 0.02782144956290722, -0.03068963997066021, -0.020454728975892067, 0.011057630181312561, 0.010944412089884281, 0.012703065760433674, -0.009502768516540527, 0.001863380428403616, -0.0031550098210573196, -0.01627320796251297, -0.011699198745191097, 0.020907601341605186, -0.0040683019906282425, 0.009102731943130493, 0.017133666202425957, 0.009434837847948074, 0.0006193970912136137, 0.0032965324353426695, -0.011970922350883484, -0.0031304792501032352, 0.022220930084586143, -0.013133293949067593, 0.007287468761205673, -0.013012528419494629, 0.001187846064567566, -0.04109060764312744, -0.018175272271037102, 0.013125746510922909, 0.007653540465980768, -0.013503139838576317, -0.0025870325043797493, 0.014122065156698227, -0.027459152042865753, 0.019564079120755196, -0.016756271943449974, 0.006793083157390356, 0.015729762613773346, -0.010204720310866833, 0.0031550098210573196, -0.005713738035410643, 0.01959427073597908, -0.008883843198418617, 0.0027247811667621136, 0.017465772107243538, 0.022598324343562126, 0.019896186888217926, -0.012574751861393452, 0.021994493901729584, -0.00010967998969135806, 0.0017303492641076446, 0.005604293663054705, -0.005608067847788334, 0.010574566200375557, 0.01825075037777424, 0.008929130621254444, -0.028364896774291992, -0.006766665726900101, -0.009412194602191448, -0.006989327725023031, -0.016590218991041183, 0.004479661118239164, 0.002577597741037607, -0.010106598027050495, 0.027564821764826775, -0.0028738516848534346, 0.018733814358711243, -0.03592786192893982, 0.012378507293760777, 0.0030814181081950665, -0.006057166028767824, 0.016303399577736855, 0.011231230571866035, 0.02450038678944111, 0.004509852733463049, 0.008144152350723743, 4.7645931772422045e-05, -0.013986203819513321, -0.010438704863190651, 0.027006279677152634, 0.022371888160705566, 0.006932718679308891, -0.002017168328166008, 0.011268970556557178, -0.007634670939296484, 0.002834225306287408, 0.005766572896391153, 0.0073704952374100685, -0.017103474587202072, 0.0029965045396238565, 0.010748167522251606, 0.010876481421291828, 0.013586166314780712, 0.01885458081960678, 0.0060194265097379684, -0.0016567575512453914, 0.029965044930577278, -0.016650602221488953, 0.006596838589757681, 0.013306895270943642, 5.183264147490263e-05, -0.0015133479610085487, -0.013691836968064308, -0.005468431860208511, 0.015435394831001759, -0.02320215292274952, 0.0030625483486801386, 0.010876481421291828, 0.005174065008759499, -0.019624462351202965, -0.020681165158748627, 0.0022152999881654978, -0.0028813995886594057, -0.0006193970912136137, -0.02139066532254219, 0.003726760856807232, 0.008196987211704254, 0.00035191944334656, 0.007593157701194286, -0.0038513008039444685, 0.0076120272278785706, -0.0064534288831055164, -0.008136603981256485, -0.0012812509667128325, -0.001162372063845396, -0.0005448618903756142, -0.026432642713189125, -0.002132273279130459, 0.0006118492456153035, -0.0014180560829117894, -0.011480310931801796, -0.015608996152877808, 0.01233321987092495, -0.024394717067480087, -0.011042534373700619, 0.006215671077370644, 0.012038853019475937, -0.01201620977371931, 0.007804498076438904, -0.018960250541567802, 0.03351254388689995, -0.004117363132536411, 0.012657778337597847, 0.012770996429026127, -0.02145104669034481, 0.008974418044090271, 0.025179695338010788, 0.014182448387145996, 0.015314629301428795, 0.006774213630706072, -0.009676369838416576, 0.0019124416867271066, 0.021466143429279327, -0.014763634651899338, 0.00861211959272623, -0.012808735482394695, -0.0208321213722229, -0.019579175859689713, 0.02027357928454876, 0.0013878647005185485, 0.0014293779386207461, 0.00039815015043132007, 0.01413716096431017, -0.0006750626489520073, 0.0052835093811154366, -0.014786277897655964, 0.02370031364262104, 0.0039324406534433365, 0.007283695042133331, -0.02202468551695347, -0.005789216607809067, 0.01052927877753973, 0.005581649951636791, 0.011676555499434471, 0.021813346073031425, -0.0033984286710619926, -0.012567204423248768, 0.018764005973935127, -0.014423980377614498, 0.008989513851702213, -0.0013010641559958458, 0.00664589973166585, -0.007751662749797106, -0.005736381281167269, -0.004751384258270264, -0.011570884846150875, -0.007272372953593731, -0.01480892114341259, -0.005336344242095947, -0.017133666202425957, 0.006283602211624384, -0.030614161863923073, -0.007468617521226406, -0.007385591045022011, 0.012484177947044373, -0.01755634695291519, -0.019065920263528824, -0.006623256020247936, -0.005377857480198145, 0.01025000773370266, 0.01128406636416912, 0.015639187768101692, -0.013903177343308926, -0.014703251421451569, -0.014763634651899338, -0.003704117378219962, 0.007393138948827982, 0.0005958100082352757, 0.006630803924053907, -0.013352182693779469, 0.0011114239459857345, -0.020303770899772644, 0.013918273150920868, -0.0057854424230754375, -0.03541460633277893, 0.010197172872722149, -0.008687598630785942, 0.004717418923974037, 0.008015838451683521, -0.0027719554491341114, -0.006793083157390356, 0.0016341139562427998, -0.013284252025187016, -0.007306338287889957, 0.02448529191315174, 0.03302948176860809, 0.0014114517252892256, -0.0009156510350294411, -0.0006127927335910499, -0.0254514180123806, -0.002475701505318284, 0.012869118712842464, -0.019458409398794174, -0.003875831374898553, 0.012091687880456448, -0.004490982741117477, 3.900715819327161e-05, 0.008174343965947628, -0.009117827750742435, 0.02776106633245945, 0.01109536923468113, -0.02922535315155983, -0.014333405531942844, -0.011329353787004948, 0.00912537518888712, -0.012763448990881443, -0.013035171665251255, 0.0011916200164705515, -0.019850898534059525, 0.006879883818328381, -0.005940173752605915, -0.00787997618317604, 0.01678646355867386, -0.0044343736954033375, 0.0016812881221994758, 0.004340025596320629, 0.005102360155433416, -0.0068157268688082695, 0.02303609997034073, 0.023609738796949387, 0.02865171618759632, -0.02561747096478939, -0.016907230019569397, -0.03698456287384033, 0.018597953021526337, 0.007570513989776373, -0.024062611162662506, 0.02798750251531601, -0.0032701147720217705, 0.019775420427322388, 0.013805055059492588, -0.005921304225921631, 0.00020898165530525148, 0.012891762889921665, -0.013661645352840424, -0.025768429040908813, 0.006762892007827759, -0.02425885573029518, -0.01013678964227438, -0.00787997618317604, -0.003977727610617876, 0.005170291289687157, 0.012710613198578358, -0.017329910770058632, -0.008340396918356419, 0.0007642218843102455, 0.024062611162662506, -0.007932811975479126, 0.00997073668986559, -0.005600519943982363, -0.013004980981349945, 0.00036253363941796124, -0.016620410606265068, -0.016695888713002205, 0.0238814614713192, -0.0064496551640331745, -0.002185108372941613, -0.03384464979171753, -0.0006208123522810638, -0.005792990326881409, 0.011789773590862751, 0.018371516838669777, 0.03203316032886505, -0.0001705346949165687, 0.014854208566248417, -0.000980279641225934, 0.0030455656815320253, -0.00026393958250992, -0.01013678964227438, -0.0014303213683888316, 0.0037475177086889744, 0.014182448387145996, -0.004102267324924469, 0.011027438566088676, -0.01205394882708788, -0.005487301852554083, 0.00102745380718261, 0.008800816722214222, -0.014522102661430836, -0.020288676023483276, 0.002588919596746564, -0.036743033677339554, -0.0005453336052596569, -0.015473133884370327, 0.024349428713321686, 0.000440606934716925, 0.018220558762550354, -0.013986203819513321, 0.020620781928300858, -0.0007297847187146544, -0.006128870882093906, 0.02031886763870716, 0.00211151666007936, -0.0020133943762630224, 0.012710613198578358, -0.033421970903873444, -0.020877409726381302, 0.0028398861177265644, 0.018703622743487358, 0.01745067536830902, 0.006698735058307648, -0.01205394882708788, 0.012484177947044373, 0.018492281436920166, 0.01868852600455284, 0.006536455824971199, 0.010695332661271095, -0.00709499791264534, 0.00019235275976825505, -0.008536641485989094, 0.017526155337691307, -0.0055967457592487335, -0.003207844914868474, 0.001585052814334631, 0.006479846779257059, 0.0020945339929312468, 0.03275775536894798, 0.01393336895853281, 0.0043136077001690865, -0.0015529743395745754, -0.02827432192862034, 0.02194920741021633, 0.018884770572185516, -0.006894979625940323, 0.008257370442152023, 0.005732607562094927, 0.0024889102205634117, -0.013782410882413387, -0.004381538834422827, 0.005826955661177635, -0.021586909890174866, 0.008876295760273933, 0.0006222275551408529, -0.00778185436502099, -0.01654493249952793, 0.01908101700246334, 0.006445881444960833, -0.011585980653762817, 0.03846394643187523, -0.0064496551640331745, 0.0020133943762630224, 0.00698177982121706, 0.0048532807268202305, -0.008642311207950115, -0.002690815832465887, -0.031036842614412308, 0.01359371468424797, 0.00467213150113821, 0.0029417823534458876, 0.013397470116615295, 0.013578618876636028, -0.011110465042293072, 0.018160175532102585, -0.014914591796696186, -0.005713738035410643, 0.014507006853818893, 0.004868376534432173, 0.004585331305861473, 0.003921118564903736, 0.013608810491859913, 0.000837341882288456, 0.008038481697440147, 0.006132644601166248, 0.007796950172632933, 0.007268599234521389, -0.03118780069053173, -0.015458038076758385, 0.028983822092413902, 0.0007000649929977953, -0.013223868794739246, 0.014250379055738449, 0.003432394005358219, -0.007604479324072599, -0.004751384258270264, 0.011027438566088676, 0.012627586722373962, -0.0037512914277613163, 0.01176712941378355, 0.008566833101212978, 0.010657592676579952, 0.013971108011901379, 0.01986599527299404, 0.0030040524434298277, 0.0200471431016922, -0.0005226900102570653, 0.006234541069716215, 0.02217564359307289, 0.008438519202172756, 0.00037503481144085526, 0.011102917604148388, -0.006966684479266405, -0.003658830188214779, -0.003781483042985201, -0.010634949430823326, -0.012906857766211033, -0.012370959855616093, -0.014431527815759182, 0.006947814486920834, 0.00035710862721316516, -0.0032965324353426695, -0.00292857363820076, -0.0100462157279253, -0.0010359452571719885, -0.01038587000221014, 0.008574380539357662, 0.010219816118478775, -0.012076592072844505, 0.012265289202332497, 0.005457110237330198, 0.015608996152877808, 0.011110465042293072, -0.012944597750902176, -0.005075942724943161, 0.002075664233416319, 0.007932811975479126, -0.01320122554898262, -0.010227364487946033, -0.0020794381853193045, -0.002496458124369383, -0.002353048650547862, -0.0010331147350370884, -0.0012727596331387758, 0.005819408223032951, 0.02804788574576378, -0.022447366267442703, -0.005887338891625404, -0.013193677179515362, 0.0060873571783304214, -0.022507749497890472, 0.0072497292421758175, 0.007812045980244875, -0.02105855755507946, -0.017194049432873726, -0.0064534288831055164, 0.014657963998615742, 0.005898660514503717, -0.007449747994542122, -0.021209515631198883, -0.008091316558420658, 0.011435023508965969, 0.010355678386986256, -0.005826955661177635, -0.0030323569662868977, -0.0020869860891252756, 0.005728833377361298, 0.01235586404800415, 0.015850527212023735, 0.022281313315033913, -0.006913849152624607, -0.028923438861966133, 0.02899891696870327, 0.023715408518910408, -0.017299719154834747, 0.013442756608128548, -0.009978284128010273, 0.006343984976410866, -0.011382188647985458, -0.019911281764507294, -0.03215392678976059, 0.00563071109354496, 0.019171589985489845, -0.021254802122712135, 0.009963189251720905, 0.04190577566623688, 0.0039437622763216496, 0.014295666478574276, 0.021768057718873024, 0.016243016347289085, -0.007366721518337727, 0.015118383802473545, 0.01165391132235527, 0.00484195863828063, 0.01295214518904686, 0.008891391567885876, 0.00934426300227642, 0.0012925728224217892, 0.0069402665831148624, -0.02359464205801487, -0.01841680333018303, -0.0007245955639518797, 0.012152071110904217, 0.0002342198567930609, -0.001636944361962378, -0.00020237726857885718, 0.0051665171049535275, -0.01415980514138937, 0.011525598354637623, -0.0006694017210975289, 0.0022662479896098375, -0.017495963722467422, -0.002607789123430848, -0.016575124114751816, -0.015125932171940804, -0.00799319427460432, -0.0076799578964710236, 0.012423794716596603, -0.00439286045730114, 0.023851269856095314, 0.006623256020247936, 0.03302948176860809, -0.01594110205769539, -0.015390107408165932, -0.0026021283119916916, 0.006736474111676216, 0.0011897330405190587, -0.03056887537240982, -0.003432394005358219, 0.009140470996499062, 0.007200668100267649, 0.009865066036581993, -0.01592600718140602, 0.005472206044942141, -0.01176712941378355, -0.0023983358405530453, -0.023277632892131805, -0.027549726888537407, 0.007083676289767027, -0.004834410734474659, -0.013284252025187016, 0.01988109014928341, -0.00710632000118494, 0.0037399698048830032, 0.010408513247966766, -0.005592972040176392, 9.222554217558354e-05, 0.011616172268986702, 0.0019360287114977837, -0.015314629301428795, -0.017526155337691307, 0.013027624227106571, 0.006117548793554306, 0.05014805123209953, -0.004030562937259674, 0.03604862838983536, -0.020454728975892067, -0.005211804527789354, -0.03653169050812721, -0.002553067170083523, 0.0014039038214832544, -0.0009085749043151736, 0.006125096697360277, -0.0016209051245823503, -0.014091873541474342, 0.010582114569842815, 0.03511269390583038, -1.2795999282388948e-05, 0.0011180283036082983, 0.0046192966401577, 0.00844606664031744, -0.00846871081739664, 0.01886967569589615, 0.001941689639352262, 0.020258484408259392, -0.0154278464615345, -0.018945153802633286, 0.018718717619776726, 0.00047622344573028386, 0.016227921470999718, -0.0005373140447773039, 0.005619389470666647, 0.01503535732626915, -0.00727614713832736, 0.0031191573943942785, -0.015442942269146442, 0.02578352577984333, 0.01672608032822609, -0.0071931201964616776, 0.002551180077716708, 0.012937049381434917, 0.018145080655813217, 0.020349059253931046, -0.03263699263334274, -0.0046796794049441814, 0.014454171992838383, 0.006819500587880611, -0.0386149026453495, 0.002205864991992712, 0.007517678663134575, -0.0027795033529400826, -0.018265845254063606, 0.005494849756360054, -0.002726668259128928, 0.004777801688760519, -0.017994122579693794, 0.00287196459248662, 0.009812231175601482, 0.02522498182952404, 0.008959322236478329, 0.009676369838416576, -0.00821963045746088, -0.004706097301095724, -0.014884400181472301, 0.006857240106910467, 0.0056986422277987, 0.0189149621874094, -0.011955826543271542, 0.0049212113954126835, -0.007030840963125229, 0.010816098190844059, 0.0119407307356596, 0.0030172611586749554, 0.016680793836712837, -0.00901215709745884, -0.0011793547309935093, -0.02865171618759632, -0.015269341878592968, -0.02291533350944519, -0.028802672401070595, 0.0027889381162822247, -0.027791257947683334, 0.005819408223032951, -0.017299719154834747, -0.0014265475329011679, 0.018492281436920166, -7.087922131177038e-05, -0.008091316558420658, -0.014537198469042778, 0.017148761078715324, -0.010801002383232117, 0.021526526659727097, -0.010212268680334091, -0.03514288365840912, -6.61028316244483e-05, -0.0019548984710127115, 0.025753334164619446, 0.009872614406049252, 0.007834689691662788, -0.017918644472956657, 0.01413716096431017, 0.00648739468306303, -1.7056418073480017e-05, 0.01701289974153042, 0.0034097502939403057, -0.005849599372595549, -0.006845918484032154, -0.008083769120275974, -0.029572555795311928, -0.010612305253744125, -0.008287562057375908, -0.007510130759328604, 0.0037399698048830032, -0.004645714070647955, 0.00839323177933693, -0.005249543581157923, 0.008378135971724987, 0.01489194855093956, 0.026719460263848305, 0.011412380263209343, 0.020228292793035507, 0.014884400181472301, 0.0037852569948881865, -0.011185944080352783, 0.01841680333018303, 0.0332106277346611, -0.0006533625419251621, 0.0036286385729908943, 0.002373805269598961, 0.002234169514849782, 0.00716292904689908, -0.00586846936494112, 0.026538312435150146, -6.421586294891313e-05, -0.025496706366539, -0.002834225306287408, 0.024802301079034805, 0.010121693834662437, 0.009185758419334888, 0.014280570670962334, 0.003388993674889207, 0.024394717067480087, -0.010801002383232117, -0.01886967569589615, 0.024968355894088745, 0.003724873997271061, 0.012008661404252052, -0.0005755251040682197, 0.0036531691439449787, -0.012023757211863995, 0.010650045238435268, 0.01751105859875679, 0.005694868043065071, -0.009117827750742435, -0.006717604584991932, -0.0072912429459393024, 0.011404831893742085, -0.020469823852181435, -0.004457017406821251, 0.005600519943982363, 0.013956012204289436, -0.013020075857639313, 0.003255018964409828, 0.007955455221235752, 0.0011538807302713394, 0.008264917880296707, -0.012770996429026127, 0.0192621648311615, -0.01210678368806839, -0.010008475743234158, 0.01041606068611145, -0.018960250541567802, -0.016454357653856277, -0.009465029463171959, 0.008664955385029316, -0.0081064123660326, -0.0011387849226593971, -0.003134253202006221, 0.023579547181725502, 0.0053401184268295765, 0.01199356559664011, -0.019337642937898636, 0.0035493860486894846, 0.013586166314780712, 0.010914220474660397, 0.0339956060051918, -0.009389550425112247, 0.00799319427460432, 0.009087636135518551, -0.01562409196048975, 0.01835642009973526, 0.0002483721182215959, 0.012401150539517403, -0.010567018762230873, -0.003443715861067176, -0.007536548655480146, 0.0007595044444315135, -0.004626844543963671, 0.018824389204382896, -0.033301204442977905, -0.004970272537320852, -0.03776954114437103, -0.005638258997350931, 0.001252003014087677, 0.02617601491510868, -0.01066514104604721, 0.017541250213980675], "3a27b605-45a0-4bef-902f-c9b3c7171ebc": [-0.03271474316716194, 0.011190688237547874, -0.019832175225019455, 0.015886982902884483, -0.033564478158950806, -0.031106319278478622, 0.0017061057733371854, -0.008216620422899723, -0.003340135794132948, 0.01805683970451355, 0.020332911983132362, 0.03747932240366936, 0.0006382485735230148, 6.466652848757803e-05, -0.014574448578059673, 0.008649074472486973, 0.0015382454730570316, 0.02327663078904152, 0.026159655302762985, -0.02981654554605484, 0.07149901241064072, -0.011782466433942318, -0.017207104712724686, 0.00382380117662251, -0.0047038826160132885, -0.014673078432679176, 0.008262141607701778, -0.005033913068473339, -0.0557485930621624, -0.013170870952308178, 0.01814788207411766, 0.00237659877166152, 0.016190459951758385, -0.0034179016947746277, 0.00010266033496009186, -0.05793362110853195, -0.007761405780911446, 0.011570033617317677, 0.025021620094776154, -0.00999954342842102, -0.01635737158358097, 0.022199289873242378, -0.013436412438750267, 0.008929789997637272, -0.020727429538965225, 0.019650088623166084, -0.02262415736913681, -0.028238467872142792, 0.0004426486266311258, -0.01889139786362648, 0.01638771966099739, 0.014559274539351463, -0.031288404017686844, -0.00770071055740118, 0.04467171058058739, -0.03374656289815903, 0.05395808443427086, 0.10002578049898148, 0.005553616210818291, -0.060543518513441086, -0.015393834561109543, -0.031167013570666313, -0.006995128467679024, -0.004889761563390493, 0.007742438931018114, -0.0023898757062852383, -0.006684065330773592, 0.020606039091944695, -0.018785182386636734, 0.008884267881512642, 0.0026004123501479626, 0.01787475310266018, -0.049436286091804504, 0.05256209149956703, -0.010181629098951817, 0.011524511501193047, 0.024050496518611908, 0.0035582594573497772, 0.015811113640666008, -0.008474575355648994, -0.01438477635383606, 0.013572976924479008, 0.04846516251564026, 0.011699010618031025, 0.03787384182214737, 0.023792540654540062, -0.013580563478171825, -0.058661967515945435, -0.018421011045575142, -0.04036234691739082, 0.008482161909341812, 0.05738736689090729, -0.023989800363779068, -0.0017999936826527119, 0.008406292647123337, 0.006175742484629154, -0.0027464604936540127, -0.002996828407049179, 0.017571276053786278, -0.012397006154060364, 0.013884039595723152, 0.012738416902720928, -0.02996828407049179, -0.002185029210522771, 0.009658132679760456, -0.04102999344468117, 0.005675006657838821, 0.03760071098804474, -0.03799523040652275, 0.002955100266262889, 0.02339802123606205, -0.0580853596329689, 0.0032225388567894697, -0.009036006405949593, -0.03675097972154617, 0.0033837605733424425, -0.04187972843647003, -0.03192570433020592, -0.005595344118773937, -0.008284902200102806, 0.01700984500348568, -0.03207744285464287, 0.03244161605834961, -0.02679695561528206, -0.021076427772641182, 0.016827760264277458, -0.009673306718468666, 0.014642730355262756, 0.025264400988817215, 0.014278559014201164, -0.008565617725253105, -0.03738828003406525, 0.023413196206092834, -0.0021698554046452045, 0.0018132708501070738, 0.014377188868820667, 0.013732302002608776, 0.06360863149166107, -0.018496880307793617, 0.04327571764588356, -0.03623506799340248, -0.02169855497777462, -0.04916315898299217, 0.00999954342842102, 0.016706369817256927, -0.0017734395805746317, -0.03238091990351677, 0.03802558034658432, -0.020287388935685158, 0.02632656693458557, -0.04294189438223839, -0.016630500555038452, -0.0016141145024448633, -0.00042202172335237265, 0.036872368305921555, -0.05004324018955231, 0.0032130551990121603, 0.021561989560723305, -0.0098933270201087, 0.036963410675525665, 0.005986069794744253, -0.0467960424721241, -0.003804833861067891, 0.021030906587839127, 0.02348906360566616, 0.011661075986921787, 0.06864633411169052, 0.005238759331405163, -0.02015082538127899, 0.014642730355262756, 0.02229033224284649, -0.019543873146176338, 0.027601167559623718, 0.004555937834084034, 0.01125138346105814, -0.04373093321919441, 0.03623506799340248, 0.006596815772354603, 0.026781782507896423, -0.03617437183856964, 0.001788613386452198, -0.002069328911602497, 0.020196346566081047, -0.007951078936457634, -0.04330606758594513, 0.004650773946195841, 0.011501750908792019, 0.010120933875441551, -0.00630471995100379, 0.04127277433872223, -0.03368586674332619, -0.013459173031151295, 0.007442756090313196, 0.007332745939493179, -0.007897970266640186, -0.035112205892801285, -0.024733318015933037, -0.005045293364673853, -0.007010302040725946, 0.012275615707039833, 0.005773636512458324, -0.03453560173511505, 0.01886105164885521, 0.049861155450344086, -0.013792997226119041, 0.02145577408373356, -0.011729358695447445, -0.040726516395807266, 0.015629028901457787, -0.00015802105190232396, 0.028997158631682396, -0.034960467368364334, -2.4509266950190067e-05, 0.015765592455863953, 0.0010517350165173411, 0.0008824521210044622, -0.018360314890742302, 0.008558031171560287, -0.006949606817215681, -0.010196803137660027, 0.009718827903270721, -0.006532327271997929, 0.025658920407295227, -0.0018455152167007327, -0.04275980964303017, -0.010257498361170292, -0.026129309087991714, 0.022487591952085495, -0.01793544925749302, 0.00799660012125969, 0.0450662299990654, -0.022730372846126556, 0.027085257694125175, -0.04527866095304489, -0.00802694819867611, 0.04731195420026779, 0.04564283415675163, 0.015629028901457787, -0.0326540470123291, -0.029209593310952187, 0.022335855290293694, 0.003882599761709571, -0.02330697886645794, -0.004609046038240194, -0.024763664230704308, 0.009210505522787571, -0.004047614987939596, 0.03086353838443756, 0.002492299070581794, 0.016721542924642563, 0.020939864218235016, 0.01784440502524376, -0.015871809795498848, 0.025977570563554764, -0.018481705337762833, 0.02062121406197548, 0.05019497871398926, -0.015978027135133743, -0.013269500806927681, 0.012101116590201855, 0.018785182386636734, 0.003818111028522253, -0.0392698310315609, 0.0071013448759913445, 0.03395899757742882, -0.058328140527009964, 0.016903629526495934, -0.038844965398311615, 0.023564932867884636, 0.060300737619400024, -0.009316721931099892, 0.01274600438773632, 0.012639787048101425, 0.02972550131380558, 0.006938226521015167, -0.029437199234962463, 0.0071013448759913445, 0.03905739635229111, 0.010477518662810326, 0.021561989560723305, -0.007196181453764439, -0.03389830142259598, 0.030302107334136963, 0.010887212119996548, 0.03766140714287758, 0.012268029153347015, -0.028997158631682396, -0.0018749143928289413, -0.0030518334824591875, -0.012647374533116817, -0.009104288183152676, 0.006904085632413626, 0.0244146678596735, 0.03450525179505348, 0.0034539394546300173, 0.008383532054722309, 0.0008705976069904864, -0.015871809795498848, 9.91632477962412e-05, 0.0026250698138028383, 0.008353184908628464, -0.011183100752532482, -0.014802055433392525, -0.03966435045003891, 0.06658269464969635, -0.005883646663278341, 0.03747932240366936, 0.033139608800411224, -0.025385791435837746, 0.03966435045003891, 0.02713078074157238, -0.0062364377081394196, -0.010606496594846249, -0.009513981640338898, 0.005652245599776506, 0.013489521108567715, -0.04030165076255798, -0.03101527690887451, 0.019316265359520912, -0.047918904572725296, -0.0010868244571611285, 0.02948272041976452, -0.0875832587480545, 0.033048566430807114, 0.03933052718639374, -0.051439229398965836, 0.02012047730386257, -0.03459629788994789, -0.009195331484079361, 0.00351084116846323, -0.029300635680556297, 0.011304491199553013, -0.04002852365374565, 0.02145577408373356, -0.024611927568912506, -0.04357919469475746, -0.05611276626586914, -0.06160568445920944, 0.020848819985985756, -0.03556742146611214, -0.0010356127750128508, -0.0038484586402773857, 0.014157168567180634, -0.028450902551412582, 0.010356128215789795, -0.02172890119254589, -0.02053016982972622, 0.00010544615361141041, -0.020393606275320053, -0.0071013448759913445, 0.000927025219425559, -0.009840218350291252, 0.013178457506000996, 0.0004379067977424711, 0.044034410268068314, -0.003895876696333289, -0.016251154243946075, -0.024869881570339203, 0.005803984124213457, 0.020074956119060516, -0.024991272017359734, -0.03392864763736725, -0.0073896474204957485, -0.012268029153347015, 0.004404199775308371, 0.030696626752614975, 0.0004599562380462885, 0.0003615635505411774, -0.022426897659897804, 0.00425246125087142, -0.03210779279470444, 0.006266785319894552, 0.0053525627590715885, -0.0259927436709404, -0.0037801763974130154, -0.026994215324521065, 0.04992184787988663, 0.00048390243318863213, -0.00019145086116623133, 0.011736945249140263, 0.016933977603912354, -0.002767324447631836, -0.010409236885607243, 0.030226238071918488, 0.04324537143111229, 0.0010887212119996548, 0.009802283719182014, 0.012146638706326485, -0.012381832115352154, -0.0018825012957677245, -0.03738828003406525, 0.02339802123606205, -0.020454302430152893, 0.00799660012125969, -0.016463588923215866, -0.028754377737641335, -0.013717127963900566, 0.009385003708302975, 0.001709899166598916, -0.026539001613855362, -0.00515530351549387, 0.02244207076728344, -0.010917559266090393, 0.003368586767464876, 0.02438431978225708, -0.013770236633718014, 0.01808718591928482, -0.018876224756240845, 0.01605389639735222, 0.015257270075380802, 0.00583433173596859, 0.013747476041316986, 0.042486678808927536, 0.04021060839295387, 0.007617254741489887, 0.02142542600631714, -0.021000558510422707, 0.0450662299990654, -0.00045971915824338794, -0.0014927239390090108, 0.02370149828493595, 0.01975630596280098, -0.007806927431374788, 0.03726688772439957, -0.028450902551412582, 0.030787669122219086, -0.024050496518611908, 0.013140522874891758, -0.01808718591928482, -0.002996828407049179, 0.02178959734737873, 0.049739763140678406, -0.010530627332627773, -0.024126363918185234, 0.0037232746835798025, -0.011441055685281754, 0.020636387169361115, -0.011964552104473114, 0.03232022374868393, 0.03271474316716194, 0.005754669196903706, 0.007526211906224489, 0.020484648644924164, -0.0012973611010238528, -0.04813133925199509, -0.03228987753391266, -0.05034671723842621, 0.007875209674239159, 0.014308907091617584, 0.006748553831130266, 0.003085974371060729, 0.018284445628523827, -0.05623415485024452, -0.024718143045902252, -0.007567939814180136, -0.008497335948050022, 0.029452374204993248, -0.0021129536908119917, 0.03920913487672806, -0.035051509737968445, -0.040453389286994934, 0.013019132427871227, 0.02561339922249317, 0.005420845001935959, 0.02886059507727623, -0.03426247090101242, -0.014293733052909374, 0.009771936573088169, -0.007048236671835184, 0.035415682941675186, -0.013186044991016388, -0.0008203343604691327, -0.04002852365374565, 0.03820766508579254, -0.01163831539452076, -0.008436640724539757, -0.010462344624102116, 0.004169005434960127, -0.011888683773577213, -0.01302671991288662, -0.0022039965260773897, -0.0005064260330982506, -0.0032187453471124172, -0.0014528926694765687, 0.019119005650281906, -0.003002518555149436, -0.038420096039772034, -0.015242096036672592, 0.017267800867557526, -0.005454986356198788, 0.026872824877500534, 0.008717356249690056, -0.012245268560945988, -0.019923217594623566, -0.01475653424859047, -0.006638543680310249, 0.011835575103759766, -0.049861155450344086, -0.01972595788538456, -0.04285085201263428, 0.04694778099656105, -0.002093986375257373, 0.002088296227157116, -0.008975311182439327, -0.023549759760499, 0.03232022374868393, -0.018329966813325882, 0.040453389286994934, -0.00802694819867611, -0.0023443542886525393, -0.04172798991203308, 0.009134636260569096, -0.04336676001548767, 0.02697904221713543, 0.02339802123606205, 0.007287224289029837, -0.008057295344769955, -0.011016189120709896, 0.04473240301012993, 0.0046052527613937855, -0.021926160901784897, 0.003835181472823024, -0.02676660753786564, -0.016645673662424088, -0.03052971512079239, -0.009900913573801517, -0.01749540865421295, -0.02444501407444477, 0.016812585294246674, -0.025264400988817215, -0.020044608041644096, 0.0006207038532011211, -0.027525298297405243, 0.02083364687860012, 0.01638771966099739, 0.02142542600631714, -0.0073061916045844555, 0.010583735071122646, 0.018542401492595673, 0.012624613009393215, -0.016160111874341965, 0.03447490558028221, -0.00033524647005833685, -0.006346447858959436, 0.016554631292819977, 0.0281777735799551, 0.02169855497777462, 0.022882111370563507, -0.02737356163561344, 0.01532555278390646, -0.01544694323092699, -0.0002856944629456848, -0.017738189548254013, -0.008558031171560287, 0.007321365177631378, -0.012268029153347015, -0.015340725891292095, 0.014711013063788414, -0.01901279017329216, -0.007165833842009306, -0.0023519413080066442, 0.016858108341693878, 0.007283431012183428, 0.021926160901784897, -0.0057584624737501144, -0.012366659007966518, -0.02417188696563244, 0.05201583355665207, -0.015765592455863953, 0.00959743745625019, 0.038541488349437714, -0.017419539391994476, 0.025658920407295227, 0.02987723983824253, 0.002617483027279377, 0.014308907091617584, 0.005978482775390148, 0.02098538540303707, -0.005982276052236557, -0.03602263331413269, 0.009202918037772179, -0.010750647634267807, -6.674107135040686e-05, -0.017631972208619118, -0.010667191818356514, 0.040514085441827774, -0.027646688744425774, -0.005409464705735445, 0.0011693320702761412, 0.013800583779811859, 0.014513753354549408, 0.04458066448569298, -0.011228622868657112, 0.03823801130056381, -0.006319893524050713, 0.04482344910502434, 0.001827496220357716, 0.013254326768219471, 0.017055368050932884, -0.004628013353794813, 0.015598680824041367, 0.007689330261200666, 0.013481933623552322, 0.007419995032250881, -0.015287618152797222, 0.006695445626974106, 0.02465744875371456, 0.014733773656189442, -0.02682730369269848, 0.014217863790690899, -0.02250276692211628, -0.0071999747306108475, 0.010872038081288338, -0.00826972909271717, 0.016433240845799446, -0.018314793705940247, 0.02521887980401516, 0.02530992217361927, 0.006866151001304388, 0.01653945818543434, 0.018421011045575142, -0.03626541793346405, 0.04643187299370766, -0.039148442447185516, 0.028450902551412582, 0.003967952448874712, -0.007302398327738047, -0.003203571541234851, 0.012359071522951126, 0.03662958741188049, -0.013990256935358047, -0.02262415736913681, 0.0005391445592977107, -0.021046079695224762, -0.011418295092880726, -0.007560352794826031, -0.0017506788717582822, 0.006183329503983259, 0.008755290880799294, -0.02951306849718094, -0.0014585829339921474, -0.008611139841377735, 0.01301154587417841, 0.04178868606686592, -0.011281730607151985, 0.015469703823328018, -0.014316493645310402, 0.0062212636694312096, 0.02728251740336418, 0.020939864218235016, -0.006376795470714569, 0.005250139627605677, -0.0011086368467658758, 0.008907029405236244, 0.01204042136669159, -0.0074124084785580635, -0.003529808484017849, 0.016933977603912354, 0.03493012115359306, -0.00014450687740463763, 0.027677036821842194, -0.028420554473996162, 0.012928090058267117, 0.0029930348973721266, 0.015917330980300903, -0.005515681579709053, 0.029983457177877426, 0.011554859578609467, 0.0073137786239385605, 0.007685536984354258, -0.0006894601974636316, -0.017571276053786278, 0.0026345534715801477, -0.026569349691271782, -0.0011067400919273496, 0.0010849277023226023, 0.004624220076948404, -0.015181400813162327, 0.013959908857941628, -0.019923217594623566, -0.031561534851789474, -0.04685673862695694, -0.023534586653113365, 0.014035778120160103, -0.010219563730061054, -0.006744760554283857, -0.005083227995783091, 0.03796488419175148, -0.0300593264400959, -0.0007477845065295696, -0.004157625138759613, -0.004089342895895243, -0.019088657572865486, 0.0006045816699042916, 0.008474575355648994, -0.02453605830669403, -0.004411786329001188, -0.02957376465201378, 0.023079371079802513, -0.006475425325334072, -0.008565617725253105, -0.007139279507100582, 0.01707054115831852, -0.03614402562379837, 0.051499925553798676, 0.020211519673466682, -0.01605389639735222, -0.005913994275033474, -0.002289349213242531, 0.038662876933813095, 0.0025852385442703962, 0.000522074056789279, 0.005675006657838821, 0.02089434303343296, -0.005212204996496439, 0.020196346566081047, -0.005944341886788607, 0.018542401492595673, -0.019316265359520912, 0.023762192577123642, 0.01165348943322897, 0.009111875668168068, 0.0036967205815017223, -0.03052971512079239, -0.0006026849150657654, 0.026675565168261528, -0.03080284222960472, 0.01298119779676199, -0.02059086598455906, 0.0047949254512786865, 0.024308450520038605, -0.026220351457595825, 0.004859413951635361, 0.0009237059275619686, -0.028223294764757156, -0.007567939814180136, 0.003302201395854354, 0.014240624383091927, 0.009718827903270721, -0.01310258824378252, 0.031531184911727905, -0.00949122104793787, 0.007628635037690401, -0.04497518390417099, 0.007799340412020683, -7.52022515371209e-07, 0.04731195420026779, -0.014976554550230503, 0.0006519998423755169, 0.016402892768383026, 0.02913372404873371, -0.03669028356671333, 0.04360954090952873, 0.011183100752532482, -0.0030385563150048256, -0.002232447499409318, 0.010507866740226746, 0.019285917282104492, -0.01796579547226429, 0.045976657420396805, -0.009293961338698864, 0.012654961086809635, -0.021653033792972565, -0.013588150963187218, 0.0013760753208771348, 0.02256346121430397, 0.021273687481880188, 0.009855392388999462, 0.03383760526776314, 0.006949606817215681, 0.03398934379220009, 0.03917878866195679, 0.02635691501200199, 0.044337883591651917, -0.005944341886788607, -0.023322151973843575, 0.007860035635530949, -0.01001471746712923, -0.031349100172519684, -0.001455737859942019, -0.011820401065051556, -0.04148520901799202, 0.011016189120709896, -0.058692313730716705, 0.021212993189692497, -0.045612484216690063, 0.05459538474678993, 0.02145577408373356, -0.008095229975879192, 0.033048566430807114, 0.021243339404463768, -0.021212993189692497, -0.01999908685684204, 0.007567939814180136, 0.031713273376226425, -0.02793499268591404, 0.010219563730061054, 0.006684065330773592, -0.023564932867884636, 0.01719193160533905, 0.029422026127576828, -0.02232068032026291, 0.04382197558879852, 0.04731195420026779, 0.0019299194682389498, -0.0010081102373078465, 0.006012624129652977, -0.02188063971698284, -0.007867623120546341, -0.003184604225680232, 0.0010820826282724738, 0.005197031423449516, 0.0044079930521547794, 0.03268439695239067, -0.03228987753391266, 0.0034767002798616886, -0.0040172673761844635, -0.016038721427321434, 0.04309363290667534, -0.003053730120882392, -0.00037815989344380796, -0.0006624318193644285, 0.009900913573801517, 0.011516924947500229, 0.009802283719182014, 0.014028191566467285, 0.02435397170484066, -0.017798883840441704, 0.011031363159418106, -0.0030044151935726404, -0.00698374817147851, -0.017525754868984222, -0.019240396097302437, 0.01135759986937046, -0.031652577221393585, 0.01435442827641964, 0.01259426586329937, 0.021243339404463768, -0.00446110125631094, 0.042274247854948044, -0.013709541410207748, -0.054807815700769424, -0.0037574158050119877, -0.005686386954039335, -0.0015828184550628066, 0.006581641733646393, -0.0032661636359989643, 0.024126363918185234, 0.017601624131202698, 0.0650046169757843, 0.030302107334136963, -0.03644750267267227, -0.02608378604054451, 0.02321593649685383, -0.03741862624883652, 0.021137123927474022, -0.030074499547481537, 0.03362517058849335, -0.007806927431374788, 0.011881096288561821, 0.023913931101560593, -0.01356539037078619, -0.022806242108345032, 0.02778325416147709, -0.025598224252462387, -0.023534586653113365, 0.0014016811037436128, -0.00015422760043293238, 0.01796579547226429, 0.025476833805441856, -0.0038275946862995625, -0.01231355033814907, 0.010507866740226746, 0.013618498109281063, -0.026159655302762985, 0.0046887085773050785, -0.012935676611959934, 0.04482344910502434, -0.03195605427026749, 0.001324863638728857, -0.01531037874519825, 0.01981700211763382, -0.001096308114938438, -0.010811342857778072, -0.0206515621393919, -0.0055574094876646996, -0.010750647634267807, 0.006410936359316111, 0.013284674845635891, 0.0015941988676786423, -0.012093530036509037, 0.01208594348281622, -0.01826927252113819, -0.024642273783683777, -0.026478305459022522, -0.008869094774127007, -0.00030371337197721004, -0.01356539037078619, -0.001454789424315095, 0.022077899426221848, 0.004013474099338055, -0.030150368809700012, -0.04670500010251999, -0.014498579315841198, 0.04115138575434685, -0.04288119822740555, 0.006945813540369272, 0.0025416139978915453, 0.0013476243475452065, 0.015826288610696793, 0.028466075658798218, 0.03131875395774841, -0.010515453293919563, 0.0022741754073649645, 0.04357919469475746, 0.010439584031701088, 0.021531643345952034, -0.008246968500316143, -0.02778325416147709, -0.016493937000632286, 0.006938226521015167, 0.024794012308120728, 0.04992184787988663, -0.005781223066151142, 0.010105759836733341, 0.013527455739676952, -0.014680664986371994, -0.009119462221860886, -0.006892705336213112, 0.049891501665115356, -0.01531037874519825, 0.01355021633207798, 0.001690931967459619, -0.012010074220597744, -0.00717721413820982, 0.0062440247274935246, -0.010621669702231884, -0.010545801371335983, -0.011865923181176186, -0.01137277390807867, 0.007332745939493179, 0.0023386641405522823, 0.018436184152960777, 0.0004471533466130495, -0.02318558841943741, -0.021561989560723305, -0.006649923976510763, 4.697362328442978e-06, -0.007837275043129921, 0.02889094315469265, 0.007287224289029837, 0.026903172954916954, -0.0014339254703372717, 0.012548744678497314, 0.00246574473567307, 0.004643187392503023, -0.012525984086096287, 0.00810281652957201, 0.010856864042580128, -0.009855392388999462, -0.006024004425853491, -0.005041499622166157, 0.009331895969808102, 0.01907348446547985, -0.015075184404850006, 0.023807713761925697, 0.004646980669349432, 0.008383532054722309, -0.0007477845065295696, -0.015173814259469509, -0.005534648895263672, 0.0010678571416065097, 0.007082378026098013, 0.030757321044802666, 0.0019460417097434402, -0.0009488375508226454, -0.02993793599307537, -0.009415351785719395, -0.028314337134361267, -0.01975630596280098, 0.03186500817537308, -0.0006425161845982075, -0.03210779279470444, -0.02148612029850483, -0.011767293326556683, 0.007146866526454687, -0.025537529960274696, 0.035476379096508026, -0.01098584197461605, 0.026599695906043053, -0.0019498351030051708, -0.010067826136946678, -0.005162890534847975, -0.012571505270898342, 0.013497107662260532, -0.014050952158868313, -0.024794012308120728, -0.0192252229899168, -4.498798807617277e-05, -0.025264400988817215, -0.013610911555588245, 0.003930017817765474, -0.020302563905715942, 0.04300259053707123, 0.03474803641438484, -0.0066347504034638405, -0.006938226521015167, -0.003328755497932434, -0.00802694819867611, -0.00019287339819129556, -0.010249911807477474, 0.0011826091213151813, -0.00493148947134614, 0.002773014595732093, 0.012397006154060364, 0.017889926210045815, 0.024854708462953568, -0.018724486231803894, -0.005094608291983604, 0.026903172954916954, -0.013223978690803051, -0.01528003066778183, 0.00042178461444564164, -0.01778371073305607, -0.014589622616767883, 0.012556331232190132, 0.018102360889315605, 0.01260943990200758, 0.03183466196060181, -0.008019360713660717, 0.005477746948599815, -0.021106775850057602, 0.002956997137516737, -0.0035924005787819624, 0.012131464667618275, -0.01635737158358097, 0.0017829231219366193, -0.08721908181905746, -0.024733318015933037, -0.006126427557319403, -0.009210505522787571, 0.005599137395620346, -0.00670682592317462, 0.018967267125844955, 0.012677721679210663, -0.009111875668168068, 0.04109068959951401, -0.004863207694143057, -0.015484877862036228, 0.030969755724072456, 0.010887212119996548, -0.00515530351549387, 0.008360771462321281, 0.014362014830112457, -0.01626632921397686, 0.01208594348281622, -0.020378433167934418, -0.0208032988011837, 0.011721771210432053, 0.04109068959951401, -0.015826288610696793, -0.008004186674952507, 0.03966435045003891, -0.018496880307793617, 0.018163055181503296, -0.0022419311571866274, -0.019953565672039986, -0.005895026959478855, -0.006630956660956144, -0.014248211868107319, -0.02414153888821602, 0.005132542457431555, 0.002996828407049179, 0.013254326768219471, -0.0019536286126822233, 0.007822101004421711, 0.0071089318953454494, -0.004863207694143057, 0.010765821672976017, -0.005572583060711622, -0.0031827075872570276, 0.004969424102455378, -0.006494392640888691, -0.006471631582826376, -0.006805455777794123, 0.00203708466142416, 0.0021414044313132763, 0.0065209465101361275, 0.0008687008521519601, -0.024763664230704308, -0.015181400813162327, 0.007518624886870384, 0.01026508491486311, -0.006873738020658493, -0.014324081130325794, -0.016584979370236397, -0.0015704897232353687, 0.039087746292352676, 0.022032378241419792, -0.0030575236305594444, 0.001819909317418933, -0.012692895717918873, 0.012571505270898342, 0.010037478059530258, 0.013815757818520069, 0.009954022243618965, 0.028845420107245445, 0.022184116765856743, -0.0029399264603853226, -0.01829962059855461, 0.017631972208619118, 0.003730861470103264, 0.0037365518510341644, 0.015507638454437256, 0.0031144253443926573, 0.016615327447652817, 0.0003788711619563401, -0.022517940029501915, 0.004969424102455378, 0.020211519673466682, 0.012131464667618275, -0.022077899426221848, -0.012305963784456253, -0.008163511753082275, -0.03480872884392738, -0.018284445628523827, 0.006346447858959436, 0.027145953848958015, 0.0007956768968142569, 0.025658920407295227, 0.0011693320702761412, 0.001351417857222259, 0.03256300464272499, -0.008580791763961315, -0.012275615707039833, 0.02691834606230259, 0.002350044436752796, -0.008542857132852077, -0.03966435045003891, -0.018876224756240845, -0.023170415312051773, 0.007518624886870384, -0.01504483725875616, -0.010120933875441551, 0.028450902551412582, -0.010576148517429829, -0.006281958892941475, 0.004961837083101273, 0.028208119794726372, -0.03362517058849335, -0.006881324574351311, -0.012654961086809635, 0.012738416902720928, 0.006892705336213112, 0.016736717894673347, -0.0071089318953454494, 0.02005978301167488, 0.0030783875845372677, 0.022487591952085495, 0.011092058382928371, -0.05945100262761116, -0.004366265144199133, 0.010469932109117508, -0.006380588747560978, -0.016615327447652817, 0.00267438474111259, 0.026539001613855362, 0.007632428780198097, 0.020514996722340584, -0.012912916019558907, 0.007029269356280565, -0.019407307729125023, 0.02734321355819702, 0.026372089982032776, -0.01599320024251938, 0.015386248007416725, -0.031288404017686844, 0.012101116590201855, -0.002663004444912076, 0.013777823187410831, 0.015537985600531101, 0.0012945160269737244, 0.016311850398778915, -0.007734851911664009, -0.013057067058980465, -0.021804770454764366, 0.0031295991502702236, -0.01707054115831852, 0.006945813540369272, 0.038905661553144455, 0.024050496518611908, 0.002810948994010687, -0.036993760615587234, -0.0004170428146608174, 0.0009346121223643422, 0.0014339254703372717, 0.005174270831048489, -0.02459675259888172, -0.004939076490700245, 0.015780767425894737, -0.01904313638806343, 0.00766277639195323, -0.012305963784456253, -0.01867896504700184, -0.005807777401059866, -0.013959908857941628, 0.001377023640088737, -0.01044717151671648, -0.008413880132138729, -0.010606496594846249, 0.003120115492492914, 0.012450114823877811, -0.002609896007925272, 0.0009047386702150106, -0.009256026707589626, 0.025234052911400795, -0.01395232230424881, -0.002839399967342615, 0.031743619590997696, -0.01544694323092699, 0.006134014576673508, 0.006744760554283857, 0.0012708069989457726, -0.010469932109117508, 0.00301389885134995, -0.006281958892941475, 0.00280525884591043, 0.008125577121973038, -0.014976554550230503, -0.0028602639213204384, -0.009377417154610157, -0.007275843992829323, 0.022851765155792236, 0.020211519673466682, 0.010538213886320591, -0.02232068032026291, -0.006748553831130266, -0.0320470966398716, -0.009293961338698864, 0.006395762786269188, 0.03198640048503876, 0.00446110125631094, 0.00932430848479271, -0.004874587990343571, -0.0035924005787819624, 0.018132708966732025, -0.0259927436709404, -0.016751891002058983, -0.001716537750326097, 0.008497335948050022, -0.00630471995100379, -0.011524511501193047, -0.004233494400978088, -0.0018255995819345117, -0.017449885606765747, 0.011532098986208439, -0.008724942803382874, 0.026812130585312843, 0.004389025736600161, 0.00032931918394751847, -0.007211355026811361, 0.011471403762698174, 0.009036006405949593, 0.008755290880799294, -0.06130221113562584, -0.0031106318347156048, 0.003381863934919238, -0.014536513946950436, 0.006524740252643824, 0.009377417154610157, -0.002767324447631836, -0.0219716839492321, -0.0035620529670268297, 0.0029019920621067286, -0.009673306718468666, 0.020302563905715942, -0.0012613233411684632, -0.01913418062031269, -0.029801370576024055, -0.007852449081838131, -0.0035658462438732386, 0.030226238071918488, -0.009741588495671749, -0.013049480505287647, -0.015856636688113213, 0.012738416902720928, 0.007882796227931976, 0.012154225260019302, -0.002088296227157116, -0.003230125643312931, -0.0015363487182185054, -0.011069297790527344, -0.03052971512079239, 0.007685536984354258, -0.00850492250174284, 0.005246346350759268, -0.026432784274220467, -0.01031060703098774, 0.022426897659897804, 0.02420223318040371, -0.039148442447185516, 0.026220351457595825, -0.00250747287645936, 0.0001308741484535858, 0.013891627080738544, -0.0019280228298157454, -0.018557574599981308, 0.0023215936962515116, -0.006293339654803276, -0.019331438466906548, -0.0281777735799551, 0.02002943493425846, 0.015886982902884483, 0.007768992800265551, -0.008375945501029491, 0.002663004444912076, 0.005215998739004135, -0.016342198476195335, -0.004798718728125095, -0.007768992800265551, 0.015166227705776691, 0.008421466685831547, 0.02691834606230259, 0.008542857132852077, -0.00853527057915926, 0.03432316705584526, -0.018011316657066345, -0.004635600373148918, 0.007268256973475218, 0.018633443862199783, -0.022927632555365562, 0.005109781865030527, -0.01925557106733322, 0.01094031985849142, -0.009362243115901947, 0.008466988801956177, -0.020970210433006287, 0.019210048019886017, -0.00825455505400896, -0.004187972750514746, -0.03298787400126457, -0.031470492482185364, -0.0003015795664396137, 0.011380360461771488, -0.0034084180369973183, 0.00274266698397696, 0.0017307632369920611, 0.031136667355895042, 0.014104059897363186, -0.019407307729125023, -0.016964323818683624, 0.0012357174418866634, 0.026903172954916954, 0.018724486231803894, 0.007158246822655201, -0.007742438931018114, -0.019240396097302437, -0.013421238400042057, -0.0030157954897731543, 0.038966353982686996, -0.004237287677824497, -0.028845420107245445, -0.01175970584154129, -0.01688845455646515, -0.004176592454314232, -0.0014149581547826529, 0.0022457244340330362, -0.007040649652481079, 0.028632987290620804, 0.0045900787226855755, -0.01697949878871441, 0.002264691749587655, 0.007184801157563925, -0.01489309873431921, -0.005830537993460894, -0.023018676787614822, 0.005629485007375479, 0.004043821711093187, 0.009028419852256775, -0.011054123751819134, -0.0197866540402174, 0.012950850650668144, 0.020848819985985756, 0.016615327447652817, 0.011934204958379269, 0.035294290632009506, -0.027479777112603188, 0.007890383712947369, 0.02521887980401516, 0.00771588459610939, -0.013861279003322124, 0.002173648914322257, 0.025082314386963844, -0.008679421618580818, 0.014612383209168911, -0.03131875395774841, -0.027616342529654503, -0.021258514374494553, -0.007181007415056229, 0.016933977603912354, 0.023564932867884636, -0.02811707742512226, 0.006111253518611193, 0.029892414808273315, -0.008292489685118198, 0.006820629350841045, -0.03232022374868393, 0.015659376978874207, 0.018329966813325882, -0.018405836075544357, -0.010090586729347706, -0.019862523302435875, -0.0029930348973721266, 0.0014481509570032358, 0.007681743241846561, -0.015613854862749577, -0.021440599113702774, 0.0033913475926965475, 0.014399949461221695, -0.02886059507727623, -0.008353184908628464, -0.008087643422186375, 0.001957422122359276, -0.02315524034202099, -0.005762255750596523, -0.0034349721390753984, -0.01040164940059185, 0.003948985133320093, 0.007655189372599125, 0.0033951408695429564, 0.007499657571315765, 0.019422482699155807, 0.0075869071297347546, -0.033473435789346695, 0.0001171228796010837, -0.04115138575434685, -0.00361516117118299, -0.014020604081451893, -0.0022020998876541853, -0.008580791763961315, 0.01984734833240509, 0.0011408812133595347, 0.015689723193645477, 0.021349556744098663, 0.006942019797861576, -0.00118829938583076, -0.020241867750883102, 0.0032396093010902405, -0.018906572833657265, -0.011380360461771488, 5.6516531913075596e-05, -0.014392362907528877, -0.03274508938193321, -0.0020465680863708258, 0.02062121406197548, 0.013906801119446754, -0.015492464415729046, -0.006957193836569786, -0.00947604700922966, 0.01691880263388157, -0.017677493393421173, 0.00044928715215064585, -0.004089342895895243, -0.02089434303343296, 0.02232068032026291, 0.010978254489600658, 0.0004469162377063185, -0.011175514198839664, -0.00199535652063787, -0.0038010405842214823, -0.0024297069758176804, 0.03969469666481018, -0.014324081130325794, -0.00023768357641529292, -0.03080284222960472, -0.0013618498342111707, -0.046007003635168076, -0.027540473267436028, -0.02185029163956642, -0.002903888700529933, -0.021622685715556145, 0.01737401820719242, -0.03268439695239067, 0.02435397170484066, -0.01620563305914402, 0.007484483998268843, 0.004510416183620691, 0.0035810202825814486, -0.029118549078702927, -0.0017781814094632864, 0.008345597423613071, -0.009658132679760456, 0.01031060703098774, -0.008960137143731117, -0.005197031423449516, -0.02157716453075409, 0.02907302789390087, 0.017389191314578056, -0.00030774393235333264, -0.0068168360739946365, 0.016691194847226143, -0.013717127963900566, 0.02277589589357376, 0.043913017958402634, -0.030924232676625252, -0.013739888556301594, -0.0120555954053998, 0.006251611281186342, -0.007738645188510418, 0.0022476213052868843, 0.0007596390787512064, 0.024217408150434494, -0.014680664986371994, 0.00022037593589629978, 0.0005045293364673853, 0.0038275946862995625, -0.011736945249140263, 0.00946087297052145, -0.011122405529022217, 0.007283431012183428, 0.016751891002058983, 0.010151281952857971, -0.017480233684182167, 0.035112205892801285, -0.02086399495601654, -0.007078584283590317, 0.0038617358077317476, -0.012556331232190132, 0.009407765232026577, 0.008732530288398266, 0.00950639508664608, -6.437016418203712e-05, -0.0007980478112585843, -0.0025795483961701393, -0.011600380763411522, 0.009711241349577904, -0.0019194874912500381, -0.001232872367836535, -0.023838061839342117, -0.053320784121751785, 0.010780994780361652, 6.111016409704462e-05, -0.006558881141245365, 0.014035778120160103, 0.02429327741265297, 0.013254326768219471, 0.008717356249690056, 0.002471434883773327, 0.014635143801569939, 0.003679649904370308, 0.00944569893181324, -0.01728297397494316, -0.006308513227850199, 0.023140067234635353, -0.007169627118855715, -0.02059086598455906, -0.00850492250174284, -0.013345370069146156, -0.00999954342842102, -0.009020832367241383, -0.007829688489437103, 0.008618726395070553, -0.002767324447631836, 0.003829491324722767, 0.010902385227382183, -0.014430297538638115, -0.014346841722726822, 0.006585435476154089, 0.007234116084873676, 0.02238137647509575, -0.00999954342842102, 0.027555646374821663, 0.0023405607789754868, 0.0005125903990119696, 0.017707841470837593, 0.01041682343930006, 0.002551097422838211, -0.028359858319163322, 0.004700088873505592, 0.0005429380689747632, -0.004764577839523554, 0.0035734332632273436, 0.06986024230718613, -0.011994900181889534, 0.0006643285742029548, -0.010917559266090393, 0.0005642762407660484, -0.014711013063788414, 0.0024372939951717854, 0.029831718653440475, 0.01302671991288662, -0.014832403510808945, 0.003478596918284893, -0.02521887980401516, 0.022047551348805428, 0.001978286076337099, -0.018466532230377197, 0.010583735071122646, 0.023504238575696945, 0.0054739536717534065, -0.010249911807477474, 0.020575692877173424, 0.01438477635383606, 0.0023007295094430447, -0.014870338141918182, -0.005299454554915428, -0.003467216622084379, 0.011167927645146847, -0.002382288919761777, 0.025264400988817215, -0.010591322556138039, 0.00752241862937808, -0.005762255750596523, 0.0021812357008457184, -0.011076884344220161, 0.002382288919761777, -0.0012442527804523706, 0.023838061839342117, -0.008717356249690056, 0.009976782836019993, -0.006942019797861576, 0.01599320024251938, -0.021501295268535614, -0.014141994528472424, 0.027403907850384712, 0.024915402755141258, 0.0059405481442809105, -0.010636843740940094, 0.0010251807980239391, -0.0009568986715748906, -0.009794697165489197, -0.012412180192768574, -0.002461951458826661, -0.019027963280677795, 0.012503222562372684, 0.01650911010801792, 0.011114818975329399, -0.011478990316390991, -0.006998921744525433, -0.009946435689926147, -0.010689952410757542, 0.0008374048629775643, -0.011107232421636581, -0.004700088873505592, -0.011395534500479698, -0.0326540470123291, 0.00046612060396000743, -0.029983457177877426, -0.0018739660736173391, -0.028466075658798218, 0.004070375580340624, -0.0002849831944331527, -0.010363714769482613, 0.019862523302435875, 0.0001873017754405737, -0.019483176991343498, -0.004040027968585491, 0.017358843237161636, 0.007146866526454687, 0.003328755497932434, -0.011896270327270031, 0.0019005202921107411, 0.0033704834058880806, -0.002577651757746935, -0.014984142035245895, -0.03250230848789215, 0.01138794794678688, -0.002623173175379634, 0.016372544690966606, -0.015704898163676262, 0.009855392388999462, -0.009847805835306644, -0.01356539037078619, 0.005049086641520262, -0.01870931312441826, 0.01605389639735222, 0.015393834561109543, -0.003907257225364447, -0.018906572833657265, -0.00499977171421051, 0.010219563730061054, 0.00079662527423352, 0.0016207530861720443, 0.0262962207198143, -0.004958043806254864, 0.0030271760188043118, -0.007989013567566872, -0.0226848516613245, 0.03389830142259598, -0.0004331649688538164, -0.018663791939616203, 0.002623173175379634, -0.02737356163561344, 0.00031556791509501636, -0.0017127442406490445, -0.013982669450342655, -0.04376127943396568, 0.016933977603912354, 0.02676660753786564, 0.006008830387145281, -0.018997615203261375, -0.021091602742671967, -0.019468003883957863, 0.006661304272711277, -0.005447399336844683, -0.005477746948599815, 0.009271200746297836, 0.002996828407049179, -0.021030906587839127, -0.008209033869206905, -0.017449885606765747, 0.008853920735418797, -0.0026383469812572002, 0.015317965298891068, 0.0037365518510341644, 0.0067257932387292385, 0.010090586729347706, -0.011585207656025887, 0.006938226521015167, -0.005496714264154434, 0.024399492889642715, -0.010462344624102116, 0.01134242583066225, -0.0006235489272512496, 0.00010918033513007686, 0.009081527590751648, -0.008246968500316143, 0.015871809795498848, -0.0343838632106781, -0.007882796227931976, -0.008330424316227436, -0.0037972470745444298, 0.024429840967059135, -0.04014991223812103, 0.003000621683895588, 5.3760348237119615e-05, 0.010902385227382183, -0.0022608982399106026, -0.007401027716696262, 0.023822888731956482, -0.013239152729511261, -0.0009293961338698864, 0.012912916019558907, -0.01873966120183468, -0.004157625138759613, -0.007268256973475218, -0.009142222814261913, 0.02537061832845211, -0.013360543176531792, 0.031227709725499153, 0.013732302002608776, 0.009855392388999462, 0.0025966190733015537, -0.009885739535093307, 0.007556559517979622, -0.021304035559296608, 0.018421011045575142, 0.0022286539897322655, 0.005064260680228472, 0.0013656432274729013, -0.011858335696160793, 0.01740436442196369, 0.0020655354019254446, -0.007822101004421711, 0.022184116765856743, -0.005800190381705761, -0.013261913321912289, -0.0268576517701149, -0.00020982540445402265, -0.02590170130133629, 0.0021186438389122486, 0.02315524034202099, -0.027768079191446304, 0.027692211791872978, 0.00203708466142416, -0.010553387925028801, -0.004055202007293701, 0.012139051221311092, 0.002425913466140628, 0.009149810299277306, -0.0027843948919326067, -0.023959452286362648, 0.01165348943322897, -0.005162890534847975, 0.012123877182602882, -0.0117748798802495, -0.0041917660273611546, 0.006680271588265896, -0.005546029191464186, -0.014187516644597054, -0.0006600609049201012, -0.002425913466140628, -0.0716204047203064, -0.01873966120183468, 0.015811113640666008, 0.0013675399823114276, -0.01367160677909851, 0.007059616968035698, 0.03480872884392738, 0.026447957381606102, 0.009187744930386543, 0.0010725989704951644, 0.013064654543995857, 0.02256346121430397, 0.015022075735032558, -0.0014386672992259264, -0.004373852163553238, -0.017738189548254013, 0.009157396852970123, 0.031136667355895042, 0.01217698585242033, -0.017480233684182167, 0.02450571022927761, -0.0022039965260773897, -0.0038256978150457144, 0.01817823015153408, 0.01775336265563965, 0.015598680824041367, 0.015689723193645477, 0.01641806773841381, 0.006646130699664354, -0.017525754868984222, -0.0037934535648673773, -0.006790281739085913, -0.015644202008843422, -0.004256254993379116, 0.013337782584130764, -0.002101573161780834, 0.009536742232739925, 0.0010526833357289433, -0.028450902551412582, -2.7428446628618985e-05, -0.008057295344769955, -0.0023481477983295918, -0.009916087612509727, 0.006748553831130266, 0.02330697886645794, 0.005663626361638308, -0.005656039342284203, 0.01716158352792263, 0.017025019973516464, -0.02071225643157959, -0.008846333250403404, -0.0010820826282724738, 0.00048437659279443324, 0.0012869291240349412, -0.0010081102373078465, 0.011919030919671059, -0.020423954352736473, 0.019361786544322968, 0.009331895969808102, 0.0098933270201087, -0.016251154243946075, -0.0045976657420396805, 0.024065669625997543, 0.006593022495508194, 0.001005265163257718, -0.004540763795375824, 0.0006519998423755169, -0.025704441592097282, 0.009900913573801517, 0.011585207656025887, -0.026478305459022522, 0.015113119035959244, 0.0021774424239993095, -0.014695839025080204, -0.002186926081776619, -0.01904313638806343, -0.009870566427707672, 0.012844633311033249, -0.019528698176145554, -0.0013599530793726444, 0.015795940533280373, -0.0015515225240960717, 0.009718827903270721, -0.0035411890130490065, -0.005504301283508539, -0.004916315898299217, -0.005310834851115942, 0.01396749634295702, -0.002224860480055213, 0.0013409858802333474, -0.005299454554915428, 0.003195984521880746, 0.009453286416828632, -0.001285032369196415, 0.0010868244571611285, 0.001846463535912335, 0.004904935602098703, 0.016630500555038452, -0.0006595867453143001, 0.03292717784643173, 0.01883070357143879, 0.007002715487033129, -0.017025019973516464, 0.003334445646032691, -0.013436412438750267, -0.003535498632118106, -0.005572583060711622, 0.02247241884469986, 0.007309984881430864, 0.009642958641052246, 0.007203768473118544, 0.0192252229899168, -0.004992184694856405, 0.001846463535912335, -0.007268256973475218, 0.0032984078861773014, 0.013337782584130764, 0.009066354483366013, 0.00562569173052907, 0.004995978437364101, -0.003772589610889554, -0.00522358575835824, -0.018618270754814148, -0.016433240845799446, 0.0018644824158400297, 0.016281502321362495, -0.006805455777794123, -0.007010302040725946, -0.009468460455536842, -0.0022608982399106026, -0.012510810047388077, 0.005052879918366671, 0.007218942046165466, -0.004070375580340624, -0.010204389691352844, -0.004775958135724068, 0.020484648644924164, -0.02229033224284649, 0.014824816957116127, 0.0011826091213151813, 0.004904935602098703, 0.01623598113656044, 0.019088657572865486, 0.010841690003871918, -0.007435169070959091, -0.002575754886493087, 0.010060238651931286, -0.0046052527613937855, -0.018132708966732025, 0.006596815772354603, -0.0024904021993279457, 0.019376961514353752, -0.02465744875371456, -0.02068190835416317, 0.014119233936071396, 0.0026079993695020676, -0.01778371073305607, 0.024551231414079666, -0.030120020732283592, 0.00029731192626059055, -0.008171099238097668, -0.02972550131380558, -0.0060391779989004135, -0.013208805583417416, -0.016964323818683624, 0.006483012344688177, 0.006331273820251226, -0.012799112126231194, -0.016873281449079514, -0.0016283399891108274, 0.02969515509903431, 0.013360543176531792, -0.016903629526495934, 0.004089342895895243, 0.006835803389549255, 0.0011664869962260127, 0.017389191314578056, 0.01716158352792263, 0.007632428780198097, -0.029164070263504982, -0.005500507541000843, 0.002093986375257373, 0.006278165616095066, -0.0005799242062494159, 0.001735504949465394, 0.008770464919507504, -0.014134407974779606, 0.021288860589265823, 0.02453605830669403, -0.0018388766329735518, -0.008474575355648994, -0.02151646837592125, 0.011441055685281754, -0.0006899343570694327, -0.010652017779648304, -0.024520883336663246, -0.0032054681796580553, 0.025507181882858276, 0.018724486231803894, -0.007784166838973761, 0.011054123751819134, 0.02972550131380558, -0.007105138618499041, 0.003495667362585664, -0.007651395630091429, -0.0009232317679561675, 0.018405836075544357, 0.00407416932284832, -0.007890383712947369, -0.004616633057594299, 0.0035468791611492634, -0.006957193836569786, 0.0071999747306108475, -0.011729358695447445, 0.01436960231512785, -0.0033306521363556385, 0.01626632921397686, 0.008459401316940784, 0.0022039965260773897, 0.024869881570339203, 0.0008084797882474959, -0.003156153252348304, -0.00026980938855558634, 0.0024885055609047413, -0.009605024009943008, -0.0010735474061220884, -0.0006259198416955769, -0.022669678553938866, -0.014559274539351463, 0.007674156688153744, -0.031470492482185364, -0.0016804998740553856, 0.008429054170846939, 0.018512053415179253, 0.017146410420536995, 0.033139608800411224, 0.010606496594846249, 0.0108341034501791, -0.011441055685281754, 0.007211355026811361, 0.0029664807952940464, 0.026038264855742455, 0.012366659007966518, 0.007006508763879538, -0.03002897836267948, -0.002040877938270569, -0.004153831861913204, -0.001657739165239036, 0.024020148441195488, -0.01960456743836403, -0.0024638480972498655, 0.004510416183620691, -0.0013760753208771348, -0.00466974126175046, -0.014847577549517155, 0.0022608982399106026, -0.01032578106969595, 0.019741132855415344, -0.003979332745075226, 0.00022760721913073212, -0.0036075743846595287, -0.00569397397339344, 0.003524118335917592, -0.018466532230377197, -0.012859807349741459, 0.008140751160681248, -0.004840446636080742, 0.005546029191464186, -0.0058570923283696175, -0.003467216622084379, -0.026539001613855362, -0.0071089318953454494, -0.018345141783356667, 0.004665947984904051, 0.015219335444271564, 0.003518428187817335, 0.014855164103209972, 0.022700026631355286, 0.017707841470837593, -0.018906572833657265, 0.007958665490150452, -0.0012508913641795516, 0.010211977176368237, 0.003998300060629845, 0.011926618404686451, 0.0033913475926965475, 0.007806927431374788, 0.05356356501579285, -0.007731058169156313, -0.006615783087909222, 0.01126655749976635, -0.007829688489437103, -0.005803984124213457, 0.011175514198839664, 0.001304948003962636, 0.0023083165287971497, -0.001624546479433775, 0.009111875668168068, 0.007989013567566872, 0.010196803137660027, 0.01799614354968071, -0.008542857132852077, -0.0012252854648977518, 0.013724715448915958, -0.0008037379593588412, 0.02596239559352398, 0.0031808107160031796, 0.007943491451442242, 0.02716112695634365, 0.004021060653030872, 0.008330424316227436, -0.024278102442622185, 0.01069753896445036, 0.015598680824041367, 0.016584979370236397, -0.0072910175658762455, 0.010386476293206215, -0.0069078789092600346, 0.009771936573088169, -0.01123620942234993, 0.002101573161780834, 0.012002486735582352, 0.02074260450899601, -0.015173814259469509, 0.0022400342859327793, -0.005288074258714914, 0.014551687985658646, 0.005602931138128042, 0.02587135322391987, -0.005602931138128042, 0.007181007415056229, -0.005064260680228472, 0.02089434303343296, -0.005602931138128042, -0.016129763796925545, -0.01644841395318508, -0.01270048227161169, -0.010780994780361652, 0.0015344519633799791, 0.01355021633207798, -0.002448674291372299, 0.0038200076669454575, 0.03829870745539665, -0.004916315898299217, 0.006099873222410679, -0.013406065292656422, 0.007590700406581163, -0.002473331755027175, 0.00813316460698843, 0.020606039091944695, 0.0021774424239993095, -0.011752119287848473, 0.004533177241683006, 0.02540096454322338, -0.029740676283836365, 0.006854770705103874, 0.01913418062031269, 0.00904359295964241, 0.005959515459835529, -0.0031352892983704805, -0.006107460241764784, -0.007666569668799639, -0.0008435692288912833, -0.0004058995400555432, 0.008284902200102806, -0.001637823530472815, -0.016660848632454872, -0.004662154242396355, 0.008474575355648994, 0.005037706345319748, 0.011972139589488506, -0.005318421870470047, -0.01823892444372177, -0.01778371073305607, -0.001330553786829114, 0.01620563305914402, -0.0018834497313946486, -0.005686386954039335, 0.0030764909461140633, -0.028632987290620804, -0.00614918814972043, -0.006748553831130266, 0.008368358947336674, -0.009134636260569096, -0.0037232746835798025, -0.017889926210045815, 0.0035146346781402826, -0.0010688055772334337, 0.015674550086259842, -0.03298787400126457, -0.0032225388567894697, -0.00472284946590662, 0.002505576005205512, -0.008034534752368927, 0.020348085090517998, -0.0004554515180643648, 0.004339710809290409, -0.033443085849285126, -0.006888911593705416, -0.010082999244332314, -0.010720299556851387, -0.0021186438389122486, 0.0262962207198143, -0.015978027135133743, -0.0051704770885407925, -0.007666569668799639, 0.02462710067629814, 0.001501259277574718, 0.006957193836569786, -0.005124955903738737, -0.007014095783233643, -0.006448870990425348, 0.014915859326720238, 0.007920730859041214, 0.0016017857706174254, 0.0009417248656973243, 0.008201446384191513, -0.0020958830136805773, 0.015902157872915268, -0.01778371073305607, 0.0160235483199358, 0.0009844012092798948, 0.005682593211531639, -0.023064197972416878, 0.015219335444271564, -0.008747704327106476, -0.025051968172192574, -0.009362243115901947, 0.006782695185393095, -0.021197818219661713, 0.015492464415729046, -0.022700026631355286, 0.0008008928853087127, -0.0015164330834522843, 0.008717356249690056, -0.014498579315841198, 0.004760784097015858, -0.010826516896486282, -0.0035867104306817055, 0.01990804448723793, -0.016812585294246674, 0.010788582265377045, -0.005329802166670561, -0.001480395207181573, -0.006653717719018459, -0.005439812317490578, 0.026478305459022522, -0.021470947191119194, 0.02358010783791542, 0.013557802885770798, -0.006790281739085913, -0.021061254665255547, 0.004347297828644514, 0.021835118532180786, 0.02342836931347847, -0.016311850398778915, -0.0025226466823369265, 0.0044990358874201775, 0.002355734584853053, 0.003034762805327773, -0.00936983060091734, 0.02734321355819702, -0.03189535811543465, 0.0029475134797394276, -0.009453286416828632, 0.011949378997087479, -0.015629028901457787, -0.004620426334440708, -0.007852449081838131, -0.023716671392321587, -0.010469932109117508, 0.013110175728797913, -0.005022532306611538, 0.006433697417378426, -1.65963592735352e-05, 0.012154225260019302, 0.0036644760984927416, -0.009946435689926147, -0.005219792015850544, 0.022517940029501915, -0.027479777112603188, -0.010614083148539066, -0.019452830776572227, 0.002799568697810173, 0.010689952410757542, 0.01179005391895771, -0.030848365277051926, 0.002080709207803011, -0.020484648644924164, -0.004468688275665045, -0.03392864763736725, -0.011418295092880726, 0.015484877862036228, 0.006942019797861576, 0.002479021903127432, -0.002363321604207158, 0.02232068032026291, 0.00908911507576704, -0.0023519413080066442, 0.000398075528210029, 0.0016861901385709643, -0.001807580585591495, 0.027570821344852448, 0.012366659007966518, 0.000887193949893117, -0.03623506799340248, 0.014915859326720238, -0.00811799056828022, -0.008762877434492111, 0.0015752315521240234, -0.0016605843557044864, -0.007651395630091429, -0.008611139841377735, 0.01617528684437275, -0.006555087864398956, 0.013163283467292786, 0.008815986104309559, 0.008322836831212044, -0.02558305114507675, 0.011312078684568405, 0.0019242293201386929, -0.014597209170460701, -0.010758234187960625, 0.012799112126231194, 0.0017241246532648802, 0.0006192813161760569, 0.008307663723826408, -0.017328495159745216, 0.012078355997800827, 0.013178457506000996, -0.029315808787941933, -0.011448643170297146, 0.004040027968585491, -0.00039499334525316954, 0.009134636260569096, -0.019892871379852295, -0.007541385479271412, 0.013664019294083118, 0.017540929839015007, 0.019058311358094215, -0.014513753354549408, -0.0002617482969071716, 0.011896270327270031, -0.010090586729347706, -0.00425246125087142, -0.017267800867557526, 0.008330424316227436, 0.010120933875441551, 0.01644841395318508, 0.020044608041644096, 0.024930577725172043, 0.0225331149995327, -0.015720071271061897, 0.012139051221311092, -0.008618726395070553, 0.012738416902720928, 0.019058311358094215, 0.0030385563150048256, -0.018663791939616203, 0.0021698554046452045, 0.002312110038474202, -0.013003958389163017, 0.006483012344688177, 0.0015704897232353687, -0.01166866347193718, -0.006312306504696608, -0.0015192781575024128, 0.006577848456799984, -0.002799568697810173, 0.014824816957116127, 0.0038920834194868803, 0.00958226341754198, -0.038753923028707504, -0.01653945818543434, -0.015780767425894737, -0.01514346618205309, 0.005587757099419832, 0.008891855366528034, 0.017631972208619118, 0.006596815772354603, 0.005181857384741306, 0.02098538540303707, -0.01743471249938011, -0.004324537236243486, 0.013603324070572853, 0.0072910175658762455, 0.011107232421636581, 0.0020124271977692842, -0.022760720923542976, 0.005462572909891605, 0.016524283215403557, 0.009096701629459858, -0.0006012623780407012, -0.006441283971071243, -0.014900685288012028, 0.02691834606230259, -0.024065669625997543, 0.0006012623780407012, 0.0031827075872570276, -0.00548533396795392, 0.021182645112276077, 0.01787475310266018, -0.010492692701518536, -0.018072012811899185, 0.007951078936457634, 0.004062788560986519, 0.005633278749883175, -0.022108247503638268, -0.005508094560354948, 0.010356128215789795, -0.020317737013101578, -0.005656039342284203, 0.005049086641520262, -0.0002958893892355263, -0.031531184911727905, -0.001997253391891718, 0.0036644760984927416, -0.0037744862493127584, 0.008891855366528034, -0.00999954342842102, -0.003002518555149436, 0.011334839276969433, -0.005159096792340279, 0.013095001690089703, 0.012897741980850697, -0.030271759256720543, -0.007249289657920599, -0.014437884092330933, 0.01367160677909851, 0.016797412186861038, 0.006262992043048143, -0.020135652273893356, -0.006448870990425348, 0.005826744716614485, -0.0038484586402773857, -0.0002156341215595603, -0.01593250408768654, 0.014422710053622723, -0.014839990064501762, -0.003237712662667036, -0.0005969947669655085, 0.010409236885607243, 0.00335341296158731, 0.014931033365428448, -0.009278787299990654, 0.019452830776572227, -0.007423788774758577, -0.007636222057044506, 0.022806242108345032, -0.008322836831212044, 0.006957193836569786, 0.012601852416992188, 0.008823572658002377, 0.007943491451442242, 0.004734230227768421, -0.020697083324193954, -0.004639393649995327, 0.006877531297504902, -0.0069685741327703, -0.013170870952308178, -0.0022627951111644506, 0.0058419182896614075, 0.004051408264786005, 0.03213813900947571, 0.013269500806927681, 0.001638771966099739, -0.0004746558843180537, 0.00142349349334836, -0.00630471995100379, 0.005621897988021374, -0.020757777616381645, 0.0045900787226855755, 0.02957376465201378, 0.016660848632454872, -0.0007866674568504095, -0.014779294840991497, -0.0008473626803606749, -0.007401027716696262, -0.004916315898299217, 0.025355443358421326, -0.005800190381705761, -0.005633278749883175, 0.02447536215186119, 0.003427385352551937, 0.007105138618499041, -0.007928318344056606, 0.031409796327352524, 0.0001696385006653145, -0.01364125870168209, -0.007309984881430864, 0.005443606059998274, 0.01793544925749302, -0.006547500845044851, -0.005553616210818291, -0.014938619919121265, 0.013087415136396885, -0.038602184504270554, 5.085598604637198e-05, 0.01392197422683239, -0.00473802350461483, -0.010257498361170292, -0.0010213874047622085, 0.01174453180283308, -0.005037706345319748, 0.011198274791240692, 0.01166866347193718, 0.0037517256569117308, -0.0044914488680660725, -0.021061254665255547, -0.0009222833905369043, -0.004370058421045542, 0.009483633562922478, 0.0006373001961037517, 0.019513525068759918, 0.0029399264603853226, -0.006403349805623293, -0.0030044151935726404, -0.01626632921397686, -0.007905556820333004, 0.007287224289029837, 0.026933521032333374, 0.005568789783865213, 0.00757932011038065, 0.004942869767546654, -0.012442527338862419, -0.03268439695239067, 0.011554859578609467, -0.009551916271448135, 0.008186272345483303, 0.01697949878871441, 0.023382848128676414, -0.01041682343930006, 0.005868472624570131, -0.0028659540694206953, -0.0019033653661608696, 0.009718827903270721, -0.0050870212726294994, -0.024369144812226295, -0.006058145314455032, 0.009734001941978931, -0.022199289873242378, 0.023777367547154427, 0.01722227968275547, -0.01228320226073265, 0.003139082808047533, 0.004244874697178602, -0.009620198048651218, -0.005436019040644169, -0.02012047730386257, 0.002479021903127432, 0.0029778610914945602, -0.0061529818922281265, 0.0035525693092495203, -0.020514996722340584, 0.006346447858959436, -0.002831813180819154, 0.02966480702161789, 0.008861507289111614, -0.022335855290293694, 0.010583735071122646, -0.010583735071122646, 0.008095229975879192, -0.004775958135724068, 0.010174042545258999, 0.015553159639239311, 0.02981654554605484, -0.03917878866195679, -0.017829231917858124, -0.015378660522401333, 0.02046947553753853, 0.001115275314077735, 0.01796579547226429, 0.015386248007416725, 0.0017649042420089245, 0.007203768473118544, -0.002350044436752796, -0.014187516644597054, 0.008004186674952507, 0.022168941795825958, 0.006475425325334072, -0.010864450596272945, -0.004096929915249348, -0.0022608982399106026, -0.005917787551879883, -0.011334839276969433, -0.0015847152099013329, 0.019619742408394814, 0.018223751336336136, -0.0007942543597891927, -0.004051408264786005, 0.00813316460698843, -0.008186272345483303, -0.008618726395070553, 0.0003928595397155732, -0.0062364377081394196, -0.01716158352792263, -0.0021034700330346823, 0.013929561711847782, -0.03435351699590683, 0.013868866488337517, 0.015629028901457787, 7.260907295858487e-05, -0.025886526331305504, -0.006069525610655546, -0.004863207694143057, 0.031500838696956635, 0.020423954352736473, 0.016751891002058983, -0.00723032234236598, 0.013155696913599968, 0.008762877434492111, 0.011577620171010494, -0.0027502537705004215, -0.00892220251262188, 0.008277315646409988, 0.015720071271061897, -0.00944569893181324, -0.007814514450728893, -0.015242096036672592, -0.02558305114507675, 0.027176301926374435, 0.00604297174140811, 0.021531643345952034, -0.0012404592707753181, -0.012268029153347015, 0.013679193332791328, -0.02858746610581875, 0.02999863028526306, 0.0013144316617399454, 0.0026004123501479626, 0.00137133349198848, 0.010743060149252415, -0.0010716506512835622, 0.031409796327352524, -0.011539685539901257, -0.0069230529479682446, 0.01644841395318508, -0.007173420861363411, 0.026311393827199936, -0.00026530466857366264, -0.014779294840991497, -0.013512281700968742, 0.0005296609597280622, 0.00514012947678566, 0.009422938339412212, 0.01719193160533905, -0.0005339285708032548, 0.0035070478916168213, 0.026463132351636887, 0.023883583024144173, -0.013443998992443085, 0.012556331232190132, -0.0028299163095653057, -0.007640015333890915, 0.01232872437685728, 0.006376795470714569, -0.01996873877942562, 0.0040020933374762535, 0.010394062846899033, -0.007943491451442242, -0.0036530958022922277, 0.009210505522787571, -0.013459173031151295, 0.013944735750555992, -0.0323505736887455, -0.01784440502524376, 0.008603552356362343, 0.013580563478171825, 0.00020769158436451107, 0.013322608545422554, -0.001212956733070314, -0.021121948957443237, 0.015917330980300903, -0.0026345534715801477, 0.00675993412733078, -0.00677510816603899, -0.00407416932284832, -0.0033211687114089727, 0.002128127496689558, -0.021986857056617737, -0.005800190381705761, -0.011956965550780296, -0.011516924947500229, 0.01396749634295702, 0.015500050969421864, 0.012708069756627083, 0.0034425591584295034, 0.013261913321912289, 0.0065437075681984425, 0.0002766850229818374, -0.009680893272161484, 0.015720071271061897, 0.00385035527870059, 0.013163283467292786, 0.02312489226460457, -0.002460054587572813, 0.012874981388449669, 0.006501979194581509, -0.007241702638566494, 0.004343504551798105, -0.012882567942142487, -0.0017459370428696275, -0.01478688232600689, 0.009771936573088169, -0.00452938349917531, -0.012002486735582352, 0.005618104711174965, -0.0072910175658762455, 0.02071225643157959, 0.02889094315469265, 0.002259001601487398, 0.005845712032169104, 0.006077112630009651, 0.01162314135581255, -0.014483405277132988, 0.013557802885770798, 0.008466988801956177, -0.016615327447652817, 0.01531037874519825, -0.016630500555038452, -0.011547273024916649, 0.005815364420413971, -0.01623598113656044, 0.006092286203056574, 0.015500050969421864, 0.019589394330978394, 0.012427354231476784, -0.007351712789386511, 0.006877531297504902, -0.004756990820169449, 0.027236996218562126, 0.018345141783356667, 0.0015714381588622928, 0.018557574599981308, 0.0013011546107009053, 0.012518396601080894, 0.001807580585591495, -0.011023775674402714, -0.008057295344769955, -0.0011759706540033221, -0.012776351533830166, -0.008800812065601349, 0.0014244418125599623, -0.006005037110298872, -0.0010887212119996548, -0.016463588923215866, -0.013504695147275925, 0.0033553096000105143, -0.018542401492595673, 0.021440599113702774, 0.0018957784632220864, -0.002917165867984295, 0.005879852920770645, -0.004783545155078173, 0.013178457506000996, 0.029679980129003525, -0.013770236633718014, 0.0004756042326334864, 0.01310258824378252, 0.022760720923542976, 0.009453286416828632, -0.018375489860773087, 0.010469932109117508, -0.01596285216510296, 0.011190688237547874, -0.0025890320539474487, 0.005124955903738737, 0.0010289743077009916, 0.013155696913599968, -0.025628572329878807, -0.014195103198289871, -0.012116290628910065, -0.013307435438036919, -0.007078584283590317, 0.015469703823328018, -0.008679421618580818, -0.01162314135581255, -0.004449720960110426, -0.005959515459835529, 0.007169627118855715, 0.024854708462953568, -0.008398706093430519, -0.015765592455863953, -0.002363321604207158, 0.006562674883753061, 0.01356539037078619, -0.01123620942234993, 0.01638771966099739, 0.006866151001304388, -0.013785410672426224, 0.007374473847448826, -0.006668891292065382, 0.027054911479353905, 0.002655417425557971, -0.014126821421086788, -0.00031675337231718004, -0.011129993014037609, -0.0038598389364778996, -0.006763727869838476, 0.013588150963187218, 0.010067826136946678, -0.012541157193481922, -0.027692211791872978, -0.02046947553753853, -0.0033040980342775583, 0.020302563905715942, -0.019088657572865486, -0.0027692210860550404, 0.03659924119710922, -0.004817686043679714, 0.006266785319894552, 0.02561339922249317, 0.00630471995100379, -0.0038162143900990486, 0.0023784954100847244, 0.0007658034446649253, 0.02286693826317787, -0.01611459068953991, -0.019801827147603035, 0.03086353838443756, 0.0009616405004635453, 0.0020731224212795496, -0.006646130699664354, 0.0020067370496690273, 0.0037062042392790318, 0.024945750832557678, 0.005803984124213457, 0.015765592455863953, 0.005944341886788607, 0.0005780275096185505, -0.006168155465275049, 0.01122103538364172, 3.815680884144967e-06, 0.002427810337394476, -0.0219716839492321, -0.015735246241092682, -0.0014007327845320106, 0.003478596918284893, -0.002448674291372299, -0.00853527057915926, 0.03043867088854313, -0.007010302040725946, 0.016933977603912354, -0.00811799056828022, 0.01972595788538456, -0.005716734565794468, -0.014066126197576523, 0.002088296227157116, -0.005648452322930098, 0.004700088873505592, -0.010356128215789795, -0.01408888678997755, 0.01435442827641964, 0.02913372404873371, 0.018557574599981308, 0.007731058169156313, 0.005891233216971159, -0.008732530288398266, 0.002315903315320611, 0.0031163222156465054, -0.02083364687860012, 0.01653945818543434, 0.017328495159745216, -0.013421238400042057, 0.0013694367371499538, -0.027085257694125175, 0.0028356064576655626, 0.0052766939625144005, -0.012457701377570629, 0.005477746948599815, 0.015022075735032558, -0.010151281952857971, -0.0060391779989004135, -0.020302563905715942, -0.0108341034501791, 0.01446064468473196, 0.04488414153456688, 0.03274508938193321, 0.017616799101233482, -0.018421011045575142, 0.012374245561659336, -0.015454529784619808, 0.004354884847998619, 0.010158868506550789, -0.017677493393421173, 0.013929561711847782, 0.0024581579491496086, -0.008489749394357204, 0.015720071271061897, 0.003419798333197832, 0.005845712032169104, 0.002552994294092059, -0.004339710809290409, -0.0038332848343998194, -0.007677949965000153, 0.013443998992443085, -0.0038996702060103416, 0.012123877182602882, -0.008709769695997238, -0.003622748190537095, 0.008209033869206905, -0.0023936692159622908, 0.014172342605888844, 0.0032282290048897266, -0.005447399336844683, -0.001808529021218419, 0.025598224252462387, 0.010143694467842579, -0.03453560173511505, 0.01298119779676199, 0.01805683970451355, -0.0009014193783514202, 0.02638726308941841, 0.0002442035765852779, -0.007294811308383942, -0.016736717894673347, -0.030362801626324654, -0.016903629526495934, 0.004749403800815344, -0.007526211906224489, -0.010340954177081585, -0.010272672399878502, -0.0020048401784151793, 0.03538533300161362, -0.018754834309220314, -0.008474575355648994, 0.016645673662424088, 0.01641806773841381, -0.015826288610696793, -0.008732530288398266, 0.009635372087359428, 0.005295661278069019, -0.0002987344632856548, -0.019801827147603035, -0.017176758497953415, 0.00412727752700448, 0.007913144305348396, -0.006058145314455032, 0.014293733052909374, 0.007598287425935268, -0.0058646793477237225, 0.01449099276214838, 0.011190688237547874, 0.015553159639239311, 0.008163511753082275, -0.0029645839240401983, 0.030074499547481537, -0.0136564327403903, -0.013095001690089703, -0.020393606275320053, -0.005743288900703192, -0.012806699611246586, -0.032957524061203, -0.012852220796048641, -0.016994671896100044, -0.009605024009943008, 0.002956997137516737, -0.008709769695997238, 0.004942869767546654, -0.00569397397339344, -0.005898820236325264, 0.00850492250174284, 0.005534648895263672, 0.004370058421045542, 0.009544328786432743, 0.013254326768219471, -0.0020086336880922318, -0.006107460241764784, -0.005204618442803621, 0.013140522874891758, 0.015333139337599277, 0.012837046757340431, -0.004263842012733221, -0.00233487063087523, 0.00904359295964241, 0.00628954591229558, -0.002259001601487398, 0.011501750908792019, -0.0064450777135789394, 0.033716216683387756, 0.002812845865264535, -0.015841461718082428, -0.012488049454987049, -0.014938619919121265, 0.0027180095203220844, 0.009498807601630688, 0.0062440247274935246, 0.016493937000632286, -5.76723505218979e-05, 0.01719193160533905, -0.0031808107160031796, 0.03274508938193321, -0.0064981859177351, 0.0023481477983295918, 0.014164756052196026, 0.0015875602839514613, -0.004768371116369963, 0.009734001941978931, 0.013497107662260532, 0.006680271588265896, -0.0065209465101361275, -0.005587757099419832, 0.0025207498110830784, -0.0021319210063666105, -0.0015941988676786423, -0.0055498224683105946, -0.004339710809290409, -0.028693683445453644, -0.0035810202825814486, 0.024702969938516617, -0.014855164103209972, 0.0008317147148773074, 0.0014405639376491308, 0.005576376803219318, 0.02241172455251217, -0.004449720960110426, -0.01999908685684204, 0.02071225643157959, 0.01368678081780672, 0.004768371116369963, -0.002056051744148135, 0.0160235483199358, -0.026250699535012245, -0.004229700658470392, 0.009954022243618965, 0.00933948252350092, -0.007484483998268843, 0.007837275043129921, -0.01641806773841381, 0.01540142111480236, 0.004335917532444, 0.01626632921397686, -0.030453845858573914, 0.007693124003708363, 0.0020086336880922318, 0.008611139841377735, -0.007621048018336296, 0.010765821672976017, 0.009688480757176876, -0.013557802885770798, 0.00614918814972043, -0.004480068571865559, -0.005986069794744253, 0.016782239079475403, -0.036993760615587234, -0.01644841395318508, 0.0022684852592647076, 0.00029849738348275423, -0.01901279017329216, 0.012146638706326485, 0.004263842012733221, 0.028481248766183853, 0.002205893164500594, -0.00850492250174284, -0.01898244209587574, -0.011782466433942318, 0.0009232317679561675, -0.007268256973475218, 0.01867896504700184, 0.019452830776572227, -0.007067203987389803, 0.012427354231476784, -0.014946207404136658, 0.015780767425894737, 0.006342654582113028, -0.006782695185393095, 0.006297132931649685, 0.005803984124213457, -0.006376795470714569, -0.001285980804823339, -0.013808171264827251, 0.0129963718354702, 0.007419995032250881, -0.01229837629944086, -0.028162598609924316, 0.007063410710543394, 0.01208594348281622, 0.007469309959560633, -0.017738189548254013, 0.003398934379220009], "058bc3c5-2029-4b92-847c-c3f57e1b328c": [-0.027390696108341217, 0.016277983784675598, 0.00046994746662676334, 0.034858204424381256, 0.010293647646903992, -0.02902882546186447, 0.009828773327171803, 0.005873651243746281, 0.00785859115421772, 0.023302752524614334, 0.04084991663694382, 0.025973936542868614, -0.012256450951099396, -0.012787736020982265, -0.012057219631969929, -0.018181756138801575, 0.0021435876842588186, -0.005515771917998791, 0.005718693137168884, -0.02972244657576084, 0.0679454579949379, -0.016986364498734474, -0.050029341131448746, 0.001507152453996241, 0.0005049975006841123, -0.0033943213056772947, -0.007644601631909609, -3.2254123652819544e-05, -0.014374212361872196, -0.0030917839612811804, 0.030755501240491867, -0.008020928129553795, 0.047490980476140976, -0.00312867877073586, 0.005268577020615339, -0.05309899151325226, 0.016897816210985184, 0.012677052058279514, 0.017812807112932205, -0.025191767141222954, 0.0023834037128835917, 0.0235536377876997, 0.0011584965977817774, 0.0055858721025288105, -0.041587814688682556, 0.028792697936296463, -0.011835850775241852, -0.013658453710377216, -0.0038665744941681623, -0.008485803380608559, 0.008124234154820442, -0.006190946791321039, -0.011208638548851013, -0.014558685943484306, 0.02042495831847191, -0.04834694042801857, 0.04079088568687439, 0.11251436918973923, 0.0013282126747071743, -0.016233710572123528, -0.013592042960226536, -0.00832346547394991, -0.0051874080672860146, -0.00246088276617229, -0.00018113038095179945, -0.011769440025091171, 0.0041432855650782585, 0.007651980500668287, -0.01728152297437191, 0.011024164967238903, 0.010559290647506714, 0.038223009556531906, -0.03600931912660599, 0.04152878373861313, 0.02378976345062256, 0.02502943016588688, 0.011806334368884563, -0.009511478245258331, 0.024542417377233505, -0.00878096092492342, 0.018550703302025795, -0.0009117626468650997, 0.06841770559549332, -0.0009246758418157697, 0.048140328377485275, 0.02894027717411518, -0.009216319769620895, -0.05655234307050705, -0.030519375577569008, -0.029515836387872696, 0.035182878375053406, 0.026387156918644905, 0.01567290909588337, 0.008618623949587345, 0.01283938903361559, 0.013990506529808044, 0.015658151358366013, -0.009031846188008785, 0.017030637711286545, -0.011002028360962868, -0.013931474648416042, 0.032614998519420624, -0.02452765963971615, 0.015045697800815105, 0.01486122328788042, -0.04315215349197388, 0.01658789999783039, 0.04474600777029991, -0.029102614149451256, -0.014263528399169445, 0.03595028817653656, -0.023007594048976898, -0.028925519436597824, -0.001142816268838942, -0.03158194571733475, 0.014846465550363064, -0.026579011231660843, 0.0029995469376444817, -0.0027578859589993954, -0.030017605051398277, -0.005571114365011454, -0.04377198591828346, 0.021192369982600212, -0.024808060377836227, -0.04415569081902504, 0.046428412199020386, -0.0009265205590054393, 0.032054197043180466, 0.011437386274337769, 0.026947958394885063, 0.0011142228031530976, -0.020587295293807983, 0.03857719898223877, 0.021177612245082855, -0.0017026948044076562, -0.02147277072072029, 0.01456606574356556, 0.06953930854797363, -0.02677086368203163, 0.029161646962165833, -0.043299730867147446, -0.03524190932512283, 0.010729006491601467, -0.0015606498345732689, 0.0009113014675676823, -0.0022837878204882145, -0.0007946216501295567, -0.004073185380548239, -0.0023446641862392426, 0.034858204424381256, -0.029884783551096916, -0.037219468504190445, 0.017768533900380135, -0.01131194457411766, 0.030814534053206444, -0.036481574177742004, 0.002724680583924055, 0.009172046557068825, -0.007128074299544096, 0.00852269772440195, 0.0011169899953529239, -0.022387761622667313, 0.01124553382396698, 0.010087037459015846, 0.03414982184767723, 0.01442586537450552, 0.052980925887823105, 0.01663217321038246, -0.013105031102895737, 0.023037109524011612, 0.0421190969645977, -0.020764391869306564, 0.02857133001089096, -0.011658755131065845, -0.0035880189388990402, -0.03931509330868721, 0.014890739694237709, 0.04073185473680496, 0.0144922761246562, -0.02442435547709465, 0.001959113636985421, 0.019200051203370094, 0.007069042883813381, 0.0008753290167078376, -0.041263140738010406, -0.010360058397054672, 0.025058945640921593, 0.02046923339366913, 0.02147277072072029, 0.03831155598163605, -0.003637826768681407, -0.01189488172531128, 0.0035548135638237, -0.006342215463519096, -0.011024164967238903, -0.032467421144247055, -0.01801941730082035, -0.018978683277964592, -0.015702424570918083, 0.013488736934959888, -0.005453050602227449, -0.01481695007532835, 0.026121515780687332, 0.030814534053206444, -0.012012945488095284, 0.008825235068798065, -0.0014573443913832307, -0.028556572273373604, 0.01632225699722767, -0.008087338879704475, 0.012824631296098232, -0.022432034835219383, 0.024557175114750862, 0.010625701397657394, 0.02525079809129238, 0.007083800621330738, -0.03981686383485794, 0.0010764056351035833, -0.005445671733468771, -0.007113316562026739, 0.0027837122324854136, -0.008507939986884594, 0.020026495680212975, -0.015185898169875145, -0.04498213529586792, -0.02654949575662613, -0.014507033862173557, 0.03506481274962425, -0.009806636720895767, 0.0015920103760436177, 0.0586184523999691, -0.021531803533434868, -0.01617467775940895, -0.0679454579949379, -0.016189435496926308, 0.045188747346401215, 0.013392810709774494, 0.006670578848570585, 0.006762816105037928, -0.012285967357456684, 0.020129799842834473, 0.01710442639887333, -0.02733166515827179, -0.02678562141954899, 0.0029054651968181133, 0.022048329934477806, 0.012020324356853962, 0.006006472744047642, 0.007821696810424328, 0.03609786927700043, -0.002715456997975707, 0.019672304391860962, -0.016307499259710312, 0.0144922761246562, -0.01235237717628479, 0.007061664015054703, 0.019805125892162323, -0.00965905748307705, 0.010035384446382523, -0.02281574159860611, 0.00664844224229455, 0.024217743426561356, -0.014684128575026989, 0.04737291857600212, 0.025737809017300606, -0.04985224828124046, 0.007792180869728327, -0.06221938505768776, 0.02815810777246952, 0.02207784540951252, -0.01819651387631893, 0.001520987949334085, 0.007157590240240097, 0.005781414452940226, -0.007294101174920797, -0.012750841677188873, 0.007696254178881645, 0.025604987516999245, -0.013186199590563774, -0.004298243671655655, -0.010396953672170639, -0.028881246224045753, 0.03639302775263786, 0.024321049451828003, 0.02266816236078739, 0.005914235953241587, -0.018654009327292442, -0.017620954662561417, -0.013444463722407818, -0.014005264267325401, -0.00671854242682457, -0.006102398969233036, -0.0006677958299405873, 0.035920772701501846, -0.00894329883158207, 0.013193578459322453, 0.009304867126047611, -0.05197738856077194, -0.002359422156587243, 0.00993207935243845, 0.021443255245685577, -0.031493399292230606, -0.01189488172531128, -0.016602657735347748, 0.06499387323856354, -0.0011584965977817774, 0.05844135582447052, 0.03479916974902153, 0.0018484292086213827, 0.021074308082461357, 0.0128098726272583, -0.016602657735347748, 0.018772071227431297, -0.026106758043169975, -0.021782686933875084, 0.010655216872692108, -0.03506481274962425, -0.007770043797791004, 0.005530529655516148, -0.034504011273384094, -0.010588806122541428, 0.015082592144608498, -0.07331734150648117, 0.057260721921920776, 0.018314575776457787, -0.04070233926177025, 0.023479847237467766, -0.018078450113534927, 0.010352679528295994, -0.02392258495092392, -0.004814771004021168, -0.01481695007532835, -0.021398982033133507, 0.03184758871793747, -0.015687666833400726, -0.032054197043180466, -0.027803918346762657, -0.0458085797727108, 0.014411107636988163, -0.035655129700899124, -0.014101190492510796, 0.00206795334815979, -0.010906101204454899, -0.018683524802327156, -0.0033482026774436235, -0.004261348862200975, -0.004438444040715694, 0.002490398706868291, -0.04144023358821869, 0.001312532345764339, 0.0008167585474438965, 0.005305471830070019, 0.0198641587048769, 0.04144023358821869, 0.005681798327714205, 0.008434150367975235, -0.004176490940153599, 0.00919418316334486, 0.03727850317955017, 0.011791576631367207, -0.04926193132996559, -0.024852333590388298, 0.005515771917998791, -0.008876888081431389, 0.014226633124053478, 0.039846379309892654, 0.007659359369426966, 0.021458012983202934, 0.002951583592221141, -0.015923794358968735, -0.01884586177766323, 0.016661690548062325, 0.0018963925540447235, 0.004209696315228939, -0.02631336823105812, -0.013901959173381329, 0.05950392782688141, 0.005604319274425507, 0.006264736410230398, 0.0017460462404415011, 0.00852269772440195, -0.03009139560163021, -0.028217140585184097, 0.021738413721323013, 0.04335876554250717, -0.009688572958111763, 0.02787770703434944, 0.023199448361992836, -0.016853542998433113, -0.0020587295293807983, -0.046015188097953796, 0.021266160532832146, -0.01858021877706051, -0.030814534053206444, -0.004076874814927578, -0.010669974610209465, 0.0027966254856437445, 0.012957451865077019, 0.014728402718901634, -0.019480451941490173, -0.026077240705490112, 0.015510572120547295, 0.013319021090865135, -0.00442368583753705, 0.04816984385251999, -0.03890187293291092, 0.0035529688466340303, -0.0008960823761299253, 0.026387156918644905, 0.0007743295282125473, -0.011865366250276566, 0.010662595741450787, 0.0631638914346695, 0.042473290115594864, 0.0029036204796284437, 0.004615538753569126, -0.007615085691213608, 0.043949078768491745, -0.00364151643589139, -0.0005183718749321997, 0.05100336670875549, -0.007117005996406078, -0.011164365336298943, 0.0004925455432385206, -0.008876888081431389, 0.0520954504609108, -0.01973133720457554, 0.027110295370221138, 0.012669673189520836, -0.026652799919247627, -0.000847657909616828, 0.0421190969645977, 0.008035686798393726, -0.01297221053391695, 0.012344998307526112, -0.0277891606092453, 0.01241878792643547, -0.014005264267325401, 0.056995078921318054, 0.008293949998915195, 0.011695650406181812, 0.0225796140730381, 0.03627496212720871, 0.015407267026603222, -0.04439181834459305, -0.03479916974902153, -0.016233710572123528, -0.021649865433573723, 0.01801941730082035, 0.014293043874204159, 0.017679985612630844, 0.011976050212979317, -0.024025890976190567, -0.029810994863510132, -0.008751445449888706, 0.013783895410597324, 0.04208958148956299, 0.02585587278008461, 0.019480451941490173, -0.05112142860889435, -0.016809269785881042, 0.01407905388623476, -0.0019923190120607615, 0.008721929974853992, 0.013680590316653252, -0.01198343001306057, -0.020351169630885124, 0.009186804294586182, -0.01348135806620121, 0.0323493555188179, -0.016159920021891594, 0.02829092927277088, 0.006818158086389303, 0.050354018807411194, -0.02442435547709465, -0.004932834301143885, -0.004538059700280428, 0.05566686764359474, -0.005264887120574713, 0.02350936457514763, -0.026239579543471336, -0.038783811032772064, -0.017591439187526703, 0.005250129383057356, 0.017296280711889267, -0.008330845274031162, -0.04628083109855652, 0.012891042046248913, 0.030017605051398277, 0.010057521052658558, 0.0012488887878134847, 0.006345904897898436, 0.008884266950190067, -0.009968973696231842, -0.002754196524620056, 0.0029921678360551596, 0.027626823633909225, -0.04014153778553009, -0.005165271461009979, -0.026579011231660843, 0.046900663524866104, -0.006489794701337814, 0.00039731082506477833, -0.015864761546254158, -0.029737206175923347, 0.02774488553404808, -0.01276559941470623, 0.027848191559314728, -0.0036525847390294075, -0.007087490055710077, -0.016971606761217117, -0.00021767929138150066, -0.020070768892765045, 0.0018124568741768599, 0.014042159542441368, 0.003785406006500125, -0.01488336082547903, -0.014632475562393665, 0.020764391869306564, 0.018978683277964592, -0.018816346302628517, -0.035920772701501846, -0.04291602596640587, -0.015510572120547295, -0.006736989598721266, 0.001033976674079895, -0.01454392820596695, -0.03332338109612465, 0.02405540645122528, -0.027257874608039856, -0.01719297468662262, -0.0045601967722177505, -0.015923794358968735, 0.005120997782796621, 0.017547164112329483, 0.01664693094789982, -0.009164667688310146, 0.014138085767626762, 0.03978734835982323, -0.0013853996060788631, -0.03291015699505806, 0.04294554144144058, -0.006906705908477306, -0.03462207689881325, -0.006895637139678001, 0.03636351227760315, 0.02266816236078739, 0.015835246071219444, -0.007124384865164757, 0.023214206099510193, -0.01834409311413765, 0.002863036235794425, -0.009946837089955807, -0.00919418316334486, -0.007984033785760403, -0.015045697800815105, 0.008965435437858105, 0.0032651894725859165, -0.0018927030032500625, -0.01663217321038246, 0.0018484292086213827, 0.017960386350750923, 0.007799559738487005, 0.01778329163789749, 0.012640156783163548, -0.020985759794712067, -0.018417881801724434, 0.02787770703434944, -0.012595883570611477, 0.013009104877710342, 0.012094113975763321, -0.0028648809529840946, 0.039669282734394073, 0.016573142260313034, 0.029338741675019264, 0.010419090278446674, -0.024394838139414787, -0.005523150786757469, -0.020336411893367767, -0.007976654917001724, 0.004733602050691843, -0.027228359133005142, 0.0011400491930544376, -0.018772071227431297, -0.0072977906093001366, 0.0093343835324049, -0.03963976725935936, -0.02378976345062256, -0.011193880811333656, 0.011348838917911053, -0.009120393544435501, 0.06009424477815628, -0.03388417884707451, 0.006626305170357227, -0.01092085987329483, 0.01467674970626831, -0.005080413538962603, 0.0018705661641433835, 0.021413739770650864, 0.0057518985122442245, 0.015407267026603222, 0.023007594048976898, 0.012935315258800983, -0.01884586177766323, -0.018285060301423073, 0.018048934638500214, 0.014698886312544346, 0.0005478876992128789, -0.02585587278008461, -0.008079960010945797, -0.012330240570008755, -0.022756710648536682, 0.020129799842834473, 0.00661523686721921, 0.016351774334907532, -0.0011271360563114285, 0.017355311661958694, 0.021502286195755005, 0.01710442639887333, 0.003811232279986143, 0.012551609426736832, -0.033618539571762085, 0.027346422895789146, -0.03899041935801506, 0.0681815817952156, 0.00923845637589693, 0.012677052058279514, 0.0025328276678919792, -0.005143134389072657, 0.03335289657115936, -0.010227236896753311, -0.025191767141222954, 0.013968369923532009, -0.03054889105260372, 0.009017088450491428, 0.008965435437858105, -0.0008282881462946534, 0.010566669516265392, -0.0019664925057440996, -0.019524725154042244, 0.00979187898337841, -0.01945093646645546, 0.005043518729507923, -0.008138991892337799, -0.010455984622240067, 0.009327004663646221, -0.022919047623872757, 0.0029497388750314713, 0.01632225699722767, -0.004313001409173012, -0.006519310176372528, 0.016159920021891594, -0.013009104877710342, 0.0323493555188179, 0.000723599165212363, 0.0014453536132350564, -0.022800983861088753, 0.026947958394885063, 0.030489858239889145, 0.009327004663646221, 0.012551609426736832, -0.020823422819375992, 0.023627426475286484, -0.0029220678843557835, -0.010942996479570866, 0.007094869390130043, 0.023760247975587845, 0.0030087705235928297, 0.025590229779481888, -0.01230810396373272, 0.01589427888393402, -0.025472166016697884, 0.006172499153763056, -0.005294403061270714, 0.004028911702334881, 0.008965435437858105, 0.002724680583924055, -0.0004003085196018219, 0.009983731433749199, -0.022004056721925735, -0.048405971378088, -0.04005299136042595, -0.03406127542257309, 0.012367135845124722, 0.0016584210097789764, -0.0093343835324049, -0.0017368225380778313, 0.033854663372039795, -0.021679382771253586, -0.0284385085105896, 0.0010090726427733898, -0.0186687670648098, -0.01124553382396698, 0.018462155014276505, 0.010692112147808075, -0.029692931100726128, -0.00156433938536793, -0.03285112604498863, 0.014780054800212383, -0.01235237717628479, -0.013282126747071743, -0.00495497090741992, 0.031640976667404175, -0.03718995302915573, 0.010566669516265392, 0.009946837089955807, -0.01297221053391695, -0.0039661903865635395, -0.025752566754817963, 0.022564856335520744, -0.000360646634362638, 0.011791576631367207, 0.019377145916223526, -0.013569905422627926, 0.010847070254385471, -2.6950494884658838e-06, -0.01078065950423479, 0.03382514789700508, -0.016425563022494316, 0.026062482967972755, 0.012463062070310116, 0.042148616164922714, -0.022712435573339462, -0.03432691842317581, 0.0016270604683086276, 0.015436782501637936, -0.01700112223625183, 0.005172650329768658, -0.011304565705358982, 0.01995270512998104, 0.020720116794109344, -0.030430827289819717, 0.0004833218117710203, 0.018934408202767372, -0.006043367553502321, -0.009998489171266556, -0.008685034699738026, -0.0035548135638237, 0.021635107696056366, 0.00923845637589693, 0.027553033083677292, -0.02677086368203163, -0.0005921614938415587, -0.04359488934278488, 0.006604168564081192, 0.018506430089473724, 0.03556658327579498, -0.012713946402072906, -0.009895184077322483, 0.00029746428481303155, 0.012322861701250076, -0.032555967569351196, 0.03397272899746895, 0.009695952758193016, 0.002647201530635357, 0.0007120695663616061, 0.016883058473467827, 0.03955122083425522, -0.007578190881758928, 0.0340907908976078, -0.012359756976366043, -0.0028870177920907736, -0.022225424647331238, -0.012448304332792759, 0.025634504854679108, -0.007035837508738041, 0.016617415472865105, -0.007718391250818968, 0.008766203187406063, 0.011230776086449623, 0.037721239030361176, 0.039197031408548355, 0.03276257961988449, 0.05894312635064125, -0.007762664929032326, -0.00671854242682457, 0.003558502998203039, -0.0151416240260005, -0.035094328224658966, 0.00753391720354557, 0.003676566295325756, -0.028955034911632538, 0.010935617610812187, -0.04111555963754654, 0.013245231471955776, -0.020115042105317116, 0.03524190932512283, 0.02194502390921116, -0.01797514408826828, 0.034917235374450684, 0.0010874740546569228, -0.01788659766316414, -0.02834996022284031, 0.013835548423230648, 0.008175887167453766, -0.014890739694237709, 0.030814534053206444, -0.0024590380489826202, -0.011614481918513775, 0.0079250019043684, -0.01403478067368269, 0.006283183582127094, 0.03801639750599861, 0.002711767563596368, 0.020085526630282402, -0.02240251936018467, -0.009164667688310146, -0.020247863605618477, 0.0043646544218063354, -0.03291015699505806, 0.015835246071219444, -0.02129567600786686, 0.00041806415538303554, 0.0353894867002964, -0.015333477407693863, -0.006692715920507908, 0.003763269167393446, 0.010470743291079998, 0.023376543074846268, -0.011341460049152374, -0.0028611912857741117, -0.012182661332190037, -0.002910999348387122, 0.025280313566327095, -0.0027929360512644053, 0.03223129361867905, 0.00853007659316063, -0.02424725890159607, 0.011216017417609692, -0.0025789462961256504, -0.006515620741993189, -0.016528869047760963, 0.002951583592221141, 0.016838785260915756, -0.017945628613233566, 0.009902562946081161, 0.010079658590257168, 0.018654009327292442, -0.018447397276759148, 0.03975783288478851, -0.012330240570008755, -0.040348149836063385, -0.01198343001306057, 0.013665832579135895, 0.008279192261397839, 0.009526235982775688, -0.0022229114547371864, 0.007615085691213608, 0.02004125341773033, 0.05658185854554176, 0.01930335722863674, -0.027685854583978653, -0.004471649415791035, 0.018654009327292442, -0.025796841830015182, 0.027125053107738495, -0.026903685182332993, 0.016100889071822166, -0.03184758871793747, 0.013444463722407818, 0.02277146838605404, -0.021635107696056366, 0.0014822484226897359, 0.017724260687828064, -0.03329386189579964, -0.011120091192424297, -0.007902865298092365, -0.016115646809339523, 0.011031543835997581, 0.007013700436800718, -0.008707172237336636, -0.004412617534399033, 0.018565461039543152, 0.016764994710683823, -0.019642788916826248, 0.028172865509986877, -0.02342081628739834, 0.027036506682634354, -0.013724863529205322, -0.0023225273471325636, -0.011784197762608528, 0.027390696108341217, 0.0006631839787587523, 0.0034478185698390007, -0.027316907420754433, 0.02046923339366913, -0.00244243536144495, 0.008102097548544407, -0.028040044009685516, 0.009777121245861053, -0.012772978283464909, -0.011319323442876339, -0.016056615859270096, -0.033943213522434235, -0.03677673265337944, 0.0007069965358823538, 0.011415249668061733, -0.027730127796530724, -0.01493501290678978, 0.005810930393636227, -0.011223397217690945, -0.05129852518439293, -0.046015188097953796, -0.015436782501637936, 0.048553552478551865, -0.020720116794109344, 0.0013236007653176785, -0.01244092546403408, -0.0007503479137085378, 0.025560714304447174, 0.01495715044438839, 0.02083818055689335, -0.006914084777235985, 0.0050656553357839584, 0.06977543979883194, 0.010515016503632069, 0.00043904807535000145, -0.004338827915489674, -0.005084102973341942, -0.01032316405326128, -0.007651980500668287, 0.020439716055989265, 0.043535858392715454, 0.031316302716732025, 0.00926059391349554, 0.018373608589172363, -0.0205135066062212, -0.014706265181303024, -0.009017088450491428, 0.04734340310096741, -0.013053379021584988, 0.012994347140192986, -0.009917320683598518, -0.009142530150711536, 0.011540692299604416, -0.005774035584181547, 0.007456438150256872, 0.003785406006500125, -0.015909036621451378, -0.011083196848630905, -0.015171140432357788, -0.0063606626354157925, 0.011238154955208302, -0.010987269692122936, -0.021959781646728516, -0.032614998519420624, -0.018048934638500214, 0.002820607041940093, -0.014743160456418991, 0.024217743426561356, 0.011415249668061733, 0.03751462697982788, 0.011902261525392532, 0.015303961001336575, -0.014780054800212383, 0.007412164472043514, 0.009304867126047611, -0.002942360006272793, 0.0006290562450885773, -0.011120091192424297, 0.00023543491261079907, -0.013658453710377216, -0.003420147579163313, 0.012012945488095284, -0.028423750773072243, 0.02709553763270378, -0.03556658327579498, 0.026888927444815636, 0.010360058397054672, -0.021812202408909798, -0.04327021539211273, 0.02414395473897457, 0.03004712238907814, 0.03240839019417763, 0.0011501952540129423, 0.009636920876801014, -0.006729610729962587, 0.0030880942940711975, -0.049793217331171036, -0.01295007299631834, 0.01442586537450552, -0.021413739770650864, -0.016204195097088814, -0.005792482756078243, 0.0019757163245230913, 0.006696405354887247, -0.009858289733529091, 0.011208638548851013, -0.020661085844039917, 0.0046339863911271095, 0.02756779082119465, -0.011223397217690945, -0.005862582940608263, -0.0036267584655433893, -0.0118875028565526, -0.005593250971287489, -0.027848191559314728, -0.012396651320159435, 0.004515923094004393, -0.016248468309640884, -0.0050508975982666016, 0.005028760526329279, -0.00495497090741992, 0.019377145916223526, 0.030283248052001, -0.015126866288483143, 0.0027394385542720556, -0.011747302487492561, 0.014071675017476082, 0.03314628452062607, -0.017901355400681496, -0.014123328030109406, 0.007578190881758928, -0.005774035584181547, 0.0027043884620070457, 0.02770061232149601, 0.009858289733529091, -0.02494088187813759, 0.012138388119637966, 0.02511797659099102, -0.015584361739456654, -0.042650382965803146, 0.011415249668061733, -0.024645723402500153, 0.004722533747553825, -0.0007826308719813824, 0.005921614822000265, 0.004431065171957016, 0.021635107696056366, 0.0064639681950211525, -0.026342883706092834, -0.0023133037611842155, 0.021280918270349503, -0.021723655983805656, 0.011688271537423134, -0.015038318932056427, 0.0007429689285345376, -0.10053093731403351, -0.015097350813448429, -0.03716043755412102, 0.0034275264479219913, 0.007984033785760403, -0.01301648374646902, 0.011614481918513775, 0.015525329858064651, 0.014064296148717403, 0.019052471965551376, -0.017252005636692047, -0.01741434447467327, 0.01626322604715824, 0.0059289936907589436, 0.016027098521590233, 0.00446058064699173, -0.002746817423030734, -0.01838836632668972, -0.005456740502268076, -0.011540692299604416, -0.03350047394633293, 0.0018908582860603929, 0.03783930093050003, 0.001668567187152803, -0.00880309846252203, 0.029058340936899185, -0.003711616387590766, -0.0030050810892134905, -0.00794713944196701, -0.01005014218389988, 0.004932834301143885, 0.006770194973796606, -0.01036743726581335, -0.0030493547674268484, 0.0225796140730381, -0.0017395896138623357, -0.00777742313221097, -0.01149641815572977, -0.010352679528295994, 0.008721929974853992, 0.00644183112308383, 0.005054587032645941, -0.012086735107004642, 0.016853542998433113, 0.024306291714310646, -0.0006728688604198396, -0.012551609426736832, -0.012064598500728607, -0.002984788967296481, 0.0003894706896971911, -0.0012737928191199899, -0.010559290647506714, -0.030032362788915634, -0.01819651387631893, 0.007271964102983475, 0.008751445449888706, 0.009511478245258331, -0.0074453698471188545, -0.03249693661928177, 0.0071317641995847225, 0.024129197001457214, 0.02967817336320877, 0.01706015318632126, 0.0029276020359247923, -0.003525297623127699, 0.009172046557068825, 0.01810796558856964, 0.032555967569351196, 0.01428566500544548, 0.018093207851052284, 0.0038665744941681623, -0.00905398279428482, -0.010522395372390747, 0.021871235221624374, 0.02268292009830475, -0.009614783339202404, 0.02609200030565262, 0.0027781780809164047, 0.01773901842534542, -0.004379412159323692, -0.029810994863510132, 0.006412315648049116, 0.02470475435256958, 0.002269029850140214, -0.02498515509068966, -0.022195909172296524, 0.0069731161929667, -0.020631570369005203, -0.018270302563905716, 0.017266765236854553, 0.0035437450278550386, 0.0028999310452491045, 0.037721239030361176, -0.0028519676998257637, -0.011946534737944603, 0.042650382965803146, 0.0030751812737435102, 0.0011815557954832911, 0.005940061993896961, -0.016720721498131752, 0.006766505539417267, -0.009614783339202404, 0.00040814868407323956, -0.025221282616257668, -0.006035988684743643, 0.011400491930544376, -0.0031969340052455664, 0.038459133356809616, -0.013820790685713291, -0.010020626708865166, -0.013488736934959888, 0.022505825385451317, -0.02470475435256958, -0.008020928129553795, -0.009577888995409012, -0.0026010831352323294, 0.002743127988651395, 0.017753776162862778, 0.0004655662050936371, 0.014234011992812157, -0.011304565705358982, 0.016189435496926308, 0.012485198676586151, -0.04507068172097206, -0.019273841753602028, 0.011149607598781586, -0.02194502390921116, -0.01641080528497696, 0.008264434523880482, 0.030032362788915634, -0.005600629840046167, 0.022373003885149956, -0.01085444912314415, 0.015318718738853931, -0.008057823404669762, 0.02318468876183033, 0.024365322664380074, -0.013658453710377216, 0.015171140432357788, -0.02498515509068966, 0.009718089364469051, -0.0015837091486901045, 0.0075929490849375725, 0.0012581124901771545, 0.0012747151777148247, -0.004600781016051769, -0.016469836235046387, -0.01806369237601757, -0.01847691275179386, -0.003407234326004982, -0.011201259680092335, -0.009592646732926369, 0.02590014599263668, 0.014698886312544346, -0.01940666325390339, -0.03535997122526169, -0.006246288772672415, 0.005892098881304264, -0.0016206038417294621, -0.00878096092492342, -0.020956244319677353, -0.013245231471955776, 0.027966255322098732, -0.02364218421280384, 0.005718693137168884, -0.02226969785988331, -0.0032817921601235867, -0.0022395141422748566, -0.02880745567381382, 0.008138991892337799, 0.019982220605015755, -0.012426166795194149, -0.029294468462467194, -0.026328125968575478, 0.03335289657115936, -0.01921480894088745, 0.002221066737547517, -0.006888258270919323, 0.03119823895394802, -0.03783930093050003, -0.009991110302507877, 0.005663351155817509, 0.002285632537677884, 0.008471044711768627, 0.006098709534853697, -0.005047208163887262, 0.0014398193452507257, 0.012344998307526112, -0.018226029351353645, 0.00990994181483984, 0.01110533345490694, -0.0020624189637601376, 0.005501014180481434, 0.004043669439852238, -0.011732544749975204, 0.0123745147138834, 0.03211323171854019, 0.008138991892337799, -0.025044187903404236, -0.008352981880307198, -0.037957366555929184, -0.0265937689691782, 0.015481056645512581, 0.03276257961988449, 0.012581124901771545, 0.017532406374812126, -0.00777742313221097, 0.0170453954488039, 0.013407568447291851, -0.03595028817653656, -0.001278404612094164, -0.008537455461919308, 0.011680892668664455, 0.004360964987426996, -0.014661991968750954, -0.02548692561686039, -0.01375437993556261, -0.005054587032645941, 0.020616812631487846, -0.003442284418269992, 0.01737006939947605, -0.0011160675203427672, -0.0033223764039576054, -0.01348135806620121, 0.017222490161657333, 0.013473979197442532, 0.0060470569878816605, -0.041263140738010406, -0.013031241483986378, 0.017207732424139977, -0.022476309910416603, 0.00045588132343254983, 0.018004659563302994, 0.003695013700053096, -0.0347401387989521, 0.0010856293374672532, 0.0047372919507324696, 0.01539250835776329, 0.022653404623270035, -0.007478575222194195, -0.014765297062695026, -0.021782686933875084, -0.01454392820596695, 0.010278889909386635, 0.012322861701250076, 6.969657260924578e-05, -0.006600479129701853, -0.010751143097877502, 0.005135755520313978, 0.013097652234137058, 0.004943902604281902, -0.01089872233569622, -0.014743160456418991, 0.007607706822454929, -0.005777725018560886, -0.020292136818170547, 0.007696254178881645, -0.01131194457411766, 0.007408475037664175, -0.02761206589639187, -0.01875731348991394, 0.009548373520374298, 0.03949218988418579, -0.023199448361992836, 0.011931777000427246, -0.0005935450317338109, -0.011002028360962868, 0.013592042960226536, -0.01580573059618473, 0.0058367568999528885, -0.005667040590196848, -0.014617717824876308, -0.0048442864790558815, -0.013555147685110569, 0.012588504701852798, 0.022225424647331238, 0.015790972858667374, -0.03955122083425522, -0.017311038449406624, -0.006397557444870472, -0.005014002788811922, -0.011614481918513775, 0.0013881666818633676, 0.013769137673079967, 0.006401246879249811, 0.027523517608642578, 0.0005824766121804714, -0.02829092927277088, 0.025737809017300606, -0.002304079942405224, -0.012160524725914001, 0.003645205870270729, 0.005578493233770132, 0.0007955440087243915, 0.022432034835219383, -0.011592344380915165, -0.02525079809129238, -0.012463062070310116, 0.021959781646728516, -0.013370674103498459, 0.01710442639887333, -0.013916716910898685, 0.006600479129701853, -0.02581159956753254, -0.03527142480015755, -0.000271637924015522, 0.004508544225245714, 0.0033703395165503025, 0.016558384522795677, -0.0036341373343020678, 0.024557175114750862, 0.011156986467540264, -0.032614998519420624, -0.011186501942574978, -0.00894329883158207, 0.013370674103498459, 0.004183869808912277, 0.02157607674598694, -0.017635712400078773, -0.008862130343914032, 0.0022173773031681776, 0.01368796918541193, 0.03745559602975845, 0.001668567187152803, -0.014986665919423103, -0.01149641815572977, -0.014669370837509632, -0.006862431764602661, -0.0028741045389324427, 0.006696405354887247, -0.022195909172296524, 0.03220177814364433, -0.01990843191742897, -0.031227754428982735, -0.01085444912314415, 0.01546629797667265, -0.010706869885325432, 0.00986566860228777, -0.00403260113671422, 0.009540993720293045, 0.002376024844124913, 0.04843548685312271, -0.009703331626951694, -0.0051246872171759605, -0.012706567533314228, 0.004471649415791035, -0.011666133999824524, 0.019480451941490173, 0.038872357457876205, -0.012603262439370155, 0.026003452017903328, 0.019672304391860962, -0.0068070897832512856, -0.017133943736553192, 0.01546629797667265, 0.023656943812966347, -0.006010162178426981, -0.001743279048241675, -0.022756710648536682, -0.021310433745384216, -0.013282126747071743, -0.011127470061182976, 0.020351169630885124, 0.04170587658882141, -0.030120911076664925, 0.012071977369487286, 0.022181151434779167, -0.004047358874231577, 0.01728152297437191, -0.040495727211236954, 0.013857685029506683, 0.019200051203370094, -0.016705963760614395, -0.01917053572833538, -0.020203590393066406, 0.008544834330677986, -0.00010803257464431226, -0.004235522355884314, -0.015215413644909859, 0.0020236794371157885, -0.011503797024488449, 0.02613627351820469, -0.0349467508494854, 0.01138573419302702, -0.012086735107004642, 0.01276559941470623, -0.00767411757260561, -0.009858289733529091, -0.01686830073595047, -0.012654914520680904, 0.010455984622240067, 0.0029478941578418016, 0.0017229869263246655, 0.009799257852137089, 0.011828471906483173, -0.0008813244057819247, -0.010883964598178864, -0.023391300812363625, -0.022550098598003387, -0.00203290325589478, -0.011444765143096447, -0.011577586643397808, -0.004165422637015581, 0.015422024764120579, 0.006928842514753342, 0.009467204101383686, 0.0032965498976409435, -0.009681194089353085, -0.013149305246770382, -0.028836973011493683, -0.02055777981877327, -0.04743194952607155, 0.006091330666095018, -0.006275804713368416, -0.01467674970626831, -9.834769298322499e-05, 0.006072883494198322, 0.02787770703434944, 0.0055563561618328094, -0.017960386350750923, 0.00763722276315093, 0.011444765143096447, 0.022373003885149956, -0.009039225056767464, 0.016396047547459602, 0.016617415472865105, -0.013643695041537285, 0.010337921790778637, 0.011548071168363094, -0.016027098521590233, -0.018417881801724434, 0.012736083008348942, -0.013577285222709179, 0.0025789462961256504, 0.037632692605257034, -0.01382816955447197, 0.00940079428255558, -0.028955034911632538, -0.005921614822000265, -0.031404849141836166, -0.0421190969645977, -0.02203357219696045, -0.0012221401557326317, -0.023494604974985123, -0.0007360511808656156, -0.017709501087665558, 0.013747001066803932, -0.008286571130156517, 0.020867696031928062, -0.0013614179333671927, -0.010035384446382523, -0.039019934833049774, 0.014182358980178833, -0.011341460049152374, 0.007865970022976398, 0.022756710648536682, -0.005405087489634752, -0.004552817903459072, -0.009489341638982296, 0.021546561270952225, 0.039846379309892654, -0.0005289791151881218, 0.004014153964817524, 0.016809269785881042, -0.01255898829549551, 0.010478122159838676, 0.020218348130583763, -0.021517043933272362, -0.036894794553518295, -0.024439113214612007, -0.0008195256232284009, 0.0037817165721207857, 0.005298092495650053, 0.0059289936907589436, 0.012536851689219475, -0.01283938903361559, -0.004231832921504974, -0.007954518310725689, -0.008611245080828667, -0.00601385161280632, -0.014757918193936348, -0.011481660418212414, 0.009681194089353085, 0.02824665606021881, 0.033707085996866226, 0.0008836303604766726, 0.027936739847064018, -0.015060455538332462, -0.0005880108219571412, 0.008950677700340748, 0.008183266036212444, 0.0023834037128835917, 0.0011898571392521262, 0.03291015699505806, 0.02129567600786686, -0.013835548423230648, 0.014669370837509632, -0.011216017417609692, 0.014905497431755066, -0.002254272112622857, 0.007851212285459042, -0.012728704139590263, -0.03745559602975845, 0.01500142365694046, 0.00984353106468916, -0.0057961721904575825, 0.008751445449888706, 0.014979287050664425, 0.003840748220682144, -0.013665832579135895, -0.006869811099022627, 0.010596184991300106, 0.007530227769166231, -0.0071096271276474, -0.009282730519771576, 0.004375722724944353, 0.032467421144247055, 0.013850306160748005, -0.006393868010491133, 0.0019923190120607615, -0.007755286060273647, -0.004283485934138298, -0.004800012800842524, 0.0033039289992302656, 0.00845628697425127, -0.0041875592432916164, 0.0029644968453794718, 0.030312763527035713, -0.020336411893367767, -0.02488185092806816, 0.012477819807827473, 0.002901775762438774, 0.009186804294586182, -0.011097954586148262, 0.009371277876198292, 0.0043093119747936726, -0.0019664925057440996, 0.013510874472558498, -0.017429102212190628, -0.0001583017292432487, -0.029604384675621986, -0.001120679429732263, -0.009046603925526142, 0.002254272112622857, 0.008301328867673874, 0.06829964369535446, -0.005453050602227449, 0.012927936390042305, 0.007242448162287474, 0.005873651243746281, 0.0006719464436173439, 0.0019166846759617329, 0.00519478740170598, 0.012861525639891624, -0.021236645057797432, -0.0017875528428703547, -0.02525079809129238, 0.01097251195460558, -0.0050213816575706005, -0.025708293542265892, 0.01595330983400345, 0.012005566619336605, 0.0011612636735662818, -0.02198929898440838, 0.03243790566921234, 0.0193181149661541, -0.0018428950570523739, -0.011481660418212414, -0.030666954815387726, -0.016897816210985184, -0.014462759718298912, 0.003829679684713483, 0.005176339764147997, -0.008758824318647385, 0.009039225056767464, -0.01779804937541485, -0.0015661841025575995, -0.02216639369726181, -0.006054435856640339, -0.013562526553869247, 0.01567290909588337, -0.01163661852478981, 0.02381928078830242, -0.0032098472584038973, 0.01784232258796692, -0.012780357152223587, -0.018506430089473724, 0.01401264313608408, 0.028556572273373604, 0.007784802000969648, -0.0013724863529205322, 0.009703331626951694, -0.0017792514991015196, 0.007843833416700363, -0.00608395179733634, -0.012610641308128834, 0.004327759612351656, -0.005999093875288963, 0.01057404838502407, 0.013459221459925175, -0.012632777914404869, -0.0014315181178972125, -0.003298394614830613, -0.004899628926068544, -0.004401549231261015, -0.004774186760187149, -0.01664693094789982, -0.027685854583978653, -0.046015188097953796, 0.0020273691043257713, -0.02212211862206459, 0.004062117077410221, -0.01710442639887333, -0.00256418832577765, 0.004663502331823111, -0.018506430089473724, 0.009991110302507877, 0.0037319085095077753, -0.017635712400078773, 0.004645054694265127, 0.003558502998203039, 0.00806520227342844, 0.020395442843437195, 0.0005026916041970253, -0.0005935450317338109, -0.0039625009521842, -0.00794713944196701, 0.013510874472558498, -0.021118581295013428, -0.01309027336537838, -0.02381928078830242, 0.020115042105317116, -0.0026730280369520187, 0.001591088017448783, -0.03119823895394802, -0.01044122688472271, 0.010669974610209465, -0.021118581295013428, 0.018226029351353645, 0.03444498032331467, -0.0176947433501482, 0.0013900113990530372, -0.0070579745806753635, 0.02005601115524769, 0.012536851689219475, -0.010743764229118824, 0.016750236973166466, -0.007733148988336325, 0.029707688838243484, 0.00035026995465159416, -0.004785255063325167, 0.029486320912837982, 0.007301480043679476, -0.01810796558856964, 0.012477819807827473, -0.015244929119944572, -0.0036027769092470407, -0.010087037459015846, -0.006198325660079718, -0.036245446652173996, -0.0021214508451521397, 0.009267972782254219, 0.014912876300513744, -0.002326216781511903, -0.008795719593763351, -0.011548071168363094, -0.006408626213669777, -0.018403124064207077, 0.010633080266416073, 0.005799862090498209, 0.02677086368203163, -0.027774402871727943, 0.006216773297637701, -0.010869206860661507, 0.005327608436346054, 0.04135168716311455, 0.01658789999783039, -0.008544834330677986, 0.004028911702334881, 0.01440372783690691, -0.001881634583696723, -0.013953611254692078, -0.02945680543780327, 0.012071977369487286, -0.006061814725399017, 0.018816346302628517, 0.01011655293405056, -0.0015191432321444154, -0.013053379021584988, -0.019421420991420746, 0.008744066581130028, -0.03975783288478851, -0.02405540645122528, -0.0010625701397657394, 0.01283938903361559, 0.001611380255781114, -0.026165788993239403, 0.002138053299859166, -0.0022007746156305075, -0.011673513799905777, -0.017857080325484276, -0.014639855362474918, 0.030017605051398277, 0.014484896324574947, -0.007493332959711552, 0.010138689540326595, -0.0005621844320558012, -0.007515470031648874, 0.0048848707228899, 0.015303961001336575, 0.011142228730022907, -0.02318468876183033, 0.029235435649752617, 0.0009629541891627014, 0.01190964039415121, -0.007434301543980837, -0.008397255092859268, 0.00569286709651351, -0.01765047013759613, 0.013119789771735668, -0.013392810709774494, 0.0021712586749345064, 0.003324221121147275, -0.004183869808912277, 0.024645723402500153, 0.015259687788784504, -0.0017700277967378497, 0.030283248052001, 0.0015348234446719289, -0.00785859115421772, 0.00026679548318497837, -0.009135151281952858, -0.03350047394633293, -0.003984638024121523, 0.016794510185718536, -0.003792785108089447, 0.02378976345062256, 0.0006110700778663158, -0.01567290909588337, 0.002141742967069149, 0.019642788916826248, -0.003772492753341794, 0.010337921790778637, 0.007242448162287474, -0.00523168221116066, 0.001360495574772358, -0.0061798784881830215, 0.016720721498131752, 0.003944053780287504, -0.00012624937517102808, -0.005120997782796621, 0.011857987381517887, -0.019347630441188812, -0.0005096093518659472, -0.0024405906442552805, -0.059562958776950836, -0.020985759794712067, 0.001242432277649641, 0.005224302876740694, -0.022919047623872757, 0.005667040590196848, 0.02640191651880741, 0.03447449579834938, 0.015525329858064651, 0.009548373520374298, 0.009245836175978184, -0.0004971573944203556, 0.021782686933875084, -0.02798101305961609, -0.005087792407721281, -0.0045011648908257484, 0.01834409311413765, 0.04250280559062958, 0.013422327116131783, -0.019923189654946327, 0.01921480894088745, -0.007452748715877533, -0.017871839925646782, 0.009998489171266556, 0.019598515704274178, 0.007585570216178894, 0.010839691385626793, 0.004836907610297203, -0.013223094865679741, -0.024040648713707924, 0.00045680368202738464, 0.004870112985372543, -0.014846465550363064, 1.8519458535593003e-05, 0.016661690548062325, -0.0033832527697086334, 0.012396651320159435, 0.0018927030032500625, -0.008884266950190067, -2.6503721528570168e-05, -0.0004819382738787681, 0.0023280614987015724, -0.016440320760011673, 0.004685638938099146, 0.03568464517593384, 0.008419392630457878, 0.006891947705298662, 0.003988327458500862, -0.00502507109194994, -0.00820540264248848, 0.020572537556290627, 0.014071675017476082, -0.0046339863911271095, -0.006412315648049116, 0.01157020777463913, 0.01741434447467327, -0.022225424647331238, 0.021413739770650864, 0.004836907610297203, 0.021871235221624374, -0.019760852679610252, -0.007659359369426966, 0.010278889909386635, 0.007294101174920797, -0.004261348862200975, 0.00813161302357912, 0.003012459957972169, -0.011024164967238903, 0.011164365336298943, 0.008603866212069988, -0.01475053932517767, 0.004523301962763071, 0.01362155843526125, -0.02871890924870968, -0.017355311661958694, 2.3001599402050488e-05, -0.0235536377876997, 0.012315482832491398, -0.01756192184984684, 0.010042763315141201, 0.023258479312062263, 0.002077176934108138, 0.01636653207242489, 0.01249257754534483, -0.005866272374987602, -0.010382195934653282, -0.004914386663585901, 0.014462759718298912, 0.005250129383057356, 0.01435945462435484, -0.016750236973166466, 0.013060757890343666, -0.0072682746686041355, 0.00945244636386633, 0.02719884365797043, 0.019067229703068733, 0.011319323442876339, -0.0075486754067242146, -0.005951130762696266, 0.021398982033133507, 0.013577285222709179, 0.005445671733468771, -0.002754196524620056, 0.011002028360962868, -0.022063087671995163, 0.001495161559432745, -0.003198778722435236, 0.019967462867498398, 0.008544834330677986, 0.020380685105919838, 0.010906101204454899, 0.01760619692504406, 0.0033887869212776423, 0.011924398131668568, -0.0027689544949680567, -0.002606617286801338, 0.003837058786302805, -0.01428566500544548, 0.004298243671655655, -0.005821998696774244, -0.004401549231261015, -0.024852333590388298, -0.007865970022976398, -0.016661690548062325, -0.00028962414944544435, 0.008574350737035275, -0.027995770797133446, -0.010175584815442562, -0.008168507367372513, -0.004899628926068544, -0.027803918346762657, 0.013791274279356003, -0.002359422156587243, -0.009799257852137089, -0.019347630441188812, -0.013333778828382492, 0.01801941730082035, -0.01815223880112171, 0.007733148988336325, -0.0014536549570038915, -0.005202166270464659, -0.0028741045389324427, 0.018963925540447235, 0.014315180480480194, -0.01283938903361559, -0.0006350516923703253, 0.02018883265554905, 0.013783895410597324, -0.001033976674079895, -0.006855052895843983, -0.036481574177742004, 0.011356217786669731, -0.023612668737769127, -0.017178216949105263, 0.005951130762696266, 0.006489794701337814, -0.01977561041712761, 0.0015541933244094253, -0.03412030637264252, -0.00129039550665766, -0.003558502998203039, -0.027582548558712006, -0.0008213703986257315, -0.011171744205057621, -0.010706869885325432, -9.379348921356723e-05, 0.01149641815572977, -0.01050763763487339, -0.012713946402072906, 0.003766958601772785, 0.020174074918031693, 0.021177612245082855, -0.01295007299631834, 0.00777742313221097, 0.009673815220594406, -0.008884266950190067, 0.026579011231660843, 0.0355960987508297, 0.012263829819858074, -0.017311038449406624, -0.010219858027994633, -0.003375873900949955, -0.01375437993556261, -0.01182109210640192, 0.008950677700340748, 0.0033574264962226152, -0.011002028360962868, -0.0005921614938415587, 0.025649262592196465, -0.00965905748307705, 0.009540993720293045, -0.011747302487492561, 0.00657834205776453, -0.0020661086309701204, -0.003029062645509839, -0.016351774334907532, -0.005010313354432583, 0.012654914520680904, 0.03471062332391739, -0.009754983708262444, 0.017576681450009346, 0.005246439948678017, -0.012780357152223587, -0.004726223181933165, 0.0011750992853194475, -0.004814771004021168, 0.02133994922041893, 0.0027910913340747356, -0.0014453536132350564, 0.005294403061270714, 0.020085526630282402, 0.0034699556417763233, 0.010699491016566753, -0.02014455758035183, 0.02995857410132885, 0.014920255169272423, 0.013370674103498459, 0.011326702311635017, 0.00410270132124424, 0.006209393963217735, -0.0010201410623267293, -0.006530378945171833, -0.0013623402919620275, 0.005165271461009979, -0.007755286060273647, -0.00246088276617229, 0.014809571206569672, -0.04200103506445885, 0.009282730519771576, -0.006773884408175945, -0.02157607674598694, -0.01567290909588337, 0.01315668411552906, -0.013370674103498459, 0.01593855209648609, 0.030578406527638435, 0.010559290647506714, 0.011097954586148262, -0.010072278790175915, -0.019613273441791534, -0.0034515082370489836, 0.027434969320893288, 0.02631336823105812, 0.007954518310725689, -0.012640156783163548, 0.025191767141222954, -0.014086432754993439, 0.002519914647564292, 0.025841115042567253, -0.04368343949317932, -0.012330240570008755, -0.00040399801218882203, 0.013082894496619701, -0.00038693417445756495, -0.0029700309969484806, 0.00348471337929368, -0.009629542008042336, -0.005571114365011454, -0.013311642222106457, 0.012603262439370155, -0.011489039286971092, -0.011120091192424297, 0.007563433144241571, -0.0007120695663616061, -0.022741952911019325, 0.03420885279774666, -0.023287994787096977, 0.013459221459925175, -0.014322559349238873, 0.006168809719383717, -0.023391300812363625, -0.011075817979872227, 0.001351271872408688, -0.0031305234879255295, 0.009157287888228893, 0.00931224599480629, 0.0034349055495113134, 0.03521239385008812, 0.020587295293807983, -0.02798101305961609, 0.01801941730082035, 0.015230171382427216, -0.007888107560575008, 0.0053792609833180904, 0.005213234573602676, 0.015362992882728577, 0.002106692874804139, 0.04766807705163956, -0.014986665919423103, -0.021782686933875084, 0.007080111186951399, 0.005501014180481434, -0.011068439111113548, 0.004722533747553825, 0.006836605723947287, 0.008876888081431389, -0.013200958259403706, 0.005227992311120033, 0.015289203263819218, -0.01495715044438839, 0.014211875386536121, -0.008087338879704475, -0.0024405906442552805, 0.02654949575662613, -0.00781431794166565, 0.010529774241149426, 0.02138422429561615, 0.005102550145238638, 0.023701217025518417, 0.013562526553869247, -0.0031784866005182266, -0.030342280864715576, -0.00126456911675632, -0.002468261867761612, -0.0029958575032651424, 0.0024701065849512815, 0.013134547509253025, 0.0039772591553628445, 0.0045601967722177505, -0.01847691275179386, -0.0010607254225760698, 0.004740981385111809, 0.010337921790778637, -0.009216319769620895, 0.004973418544977903, 0.021089065819978714, 0.011356217786669731, 0.002484864555299282, 0.02668231539428234, -0.0340907908976078, -0.00442368583753705, 0.004833218175917864, 0.014661991968750954, -0.005954820197075605, -0.015200655907392502, -0.013850306160748005, -0.011865366250276566, 0.0016630329191684723, 0.0008490415057167411, 0.013304263353347778, 0.00912777241319418, 0.005327608436346054, 0.03102114424109459, 0.006065504625439644, 0.02129567600786686, 0.0024590380489826202, 0.0010044608497992158, 0.019554242491722107, 0.018978683277964592, -0.0018714885227382183, 0.010190342552959919, -0.014927634038031101, 0.0018714885227382183, 0.014042159542441368, -0.006814468652009964, 0.001364185125567019, 0.012861525639891624, 0.01110533345490694, -0.009548373520374298, -0.003220915561541915, 0.00940079428255558, -0.002556809224188328, -0.004807391669601202, 0.025914903730154037, -0.0018502740422263741, -0.009961594827473164, 0.0060765729285776615, -0.017960386350750923, 0.006231531035155058, 0.012079356238245964, 0.03226080909371376, -0.013747001066803932, -0.031965650618076324, -0.020661085844039917, 0.00357141625136137, 0.007607706822454929, 0.009489341638982296, -0.006725921295583248, 0.0016528868582099676, -0.01576145738363266, -0.010839691385626793, -0.005637524649500847, 0.007725770119577646, -0.021517043933272362, -0.0031046969816088676, -0.003464421257376671, 0.008891645818948746, -0.007474885787814856, 0.01608613133430481, -0.020941486582159996, 0.0004893172299489379, 0.0024590380489826202, -0.0058994777500629425, -0.004936523735523224, 0.018373608589172363, 0.006995253264904022, -0.000695466878823936, -0.019760852679610252, -0.01301648374646902, 0.0017239092849195004, -0.014263528399169445, 0.008198023773729801, 0.020823422819375992, 0.0006106088403612375, 0.004704086575657129, -0.010765901766717434, 0.010005868971347809, 0.0012193729635328054, 0.011061059311032295, 0.009105635806918144, -0.017945628613233566, -0.004914386663585901, 0.003637826768681407, 0.0051984768360853195, -1.1716980225173756e-05, -0.010404332540929317, 0.004899628926068544, 0.014787433668971062, 0.010928238742053509, -0.0016934711020439863, 0.01797514408826828, 0.009290109388530254, 0.022638646885752678, -0.007969276048243046, 0.009577888995409012, -0.008020928129553795, -0.01658789999783039, -0.0027744886465370655, 0.0045601967722177505, -0.011282428167760372, -0.0024664171505719423, -0.008168507367372513, 0.011260291561484337, -0.007434301543980837, -0.00031406694324687123, -0.007404785603284836, -0.013370674103498459, 0.0027486623730510473, 0.0006023075548000634, 0.006519310176372528, -0.009695952758193016, 0.007984033785760403, -0.004582333844155073, 0.008854750543832779, -0.014580823481082916, -0.016794510185718536, 0.009695952758193016, -0.03766220808029175, 0.019937947392463684, 0.0009869358036667109, -0.03054889105260372, -0.00919418316334486, -0.012942694127559662, 0.020911969244480133, 0.01085444912314415, -0.0033002395648509264, 0.01354776881635189, 0.014189738780260086, 0.0010321319568902254, -0.00763722276315093, 0.004453201778233051, 0.009961594827473164, -0.03167049214243889, 0.006338526029139757, -0.02613627351820469, -0.012743462808430195, -0.02286001481115818, -1.3720252354687545e-05, -0.012817252427339554, -0.04031863436102867, -0.004401549231261015, -0.0005944673903286457, 0.016440320760011673, -0.016986364498734474, -1.1032409020117484e-05, -0.00622046273201704, 0.009002329781651497, 0.0036599638406187296, 0.006759126670658588, 0.029383014887571335, -0.014189738780260086, -0.01593855209648609, -0.016750236973166466, 0.002523604081943631, 0.013400189578533173, 0.0019664925057440996, -0.01617467775940895, 0.004888560622930527, 0.0003242130042053759, -0.008935919962823391, -0.04453939571976662, -0.006430762819945812, 0.0011704873759299517, 0.0057629672810435295, 0.008566971868276596, -0.007644601631909609, 0.015584361739456654, 0.010190342552959919, -0.013370674103498459, -0.009799257852137089, -0.0013983127428218722, 0.0051689608953893185, 0.004250280559062958, -0.008692413568496704, -0.007696254178881645, -0.026210062205791473, 0.020380685105919838, -0.0018530411180108786, -0.010020626708865166, -0.005154203157871962, 0.027272632345557213, 0.0008836303604766726, -0.006652131676673889, 0.00307702599093318, -0.005667040590196848, 0.0015329787274822593, 0.016602657735347748, 0.009113014675676823, -0.024040648713707924, 0.003689479548484087, 0.0011898571392521262, -0.01779804937541485, 0.011481660418212414, 0.013813411816954613, 0.01599758304655552, 0.0032430526334792376, 0.011053680442273617, -0.014197117649018764, 0.013304263353347778, 0.009076119400560856, -0.019967462867498398, -0.012536851689219475, -3.4329455957049504e-05, -0.004715154878795147, 0.006386489141732454, -0.020085526630282402, 0.007190795615315437, 0.008788340725004673, 0.002785557182505727, 0.0027744886465370655, -0.032614998519420624, -0.004412617534399033, 0.004412617534399033, -0.0026176858227699995, -0.004224454052746296, -0.015746699646115303, 0.008168507367372513, 0.01190964039415121, 0.011857987381517887, 0.016809269785881042, 0.031404849141836166, 0.025870630517601967, -0.004379412159323692, 0.018240787088871002, 0.006810779217630625, 0.014831707812845707, 0.018875377252697945, -0.006962047889828682, -0.019524725154042244, 0.01475053932517767, 0.021812202408909798, -0.009341762401163578, 0.0045011648908257484, -0.007330995984375477, 0.0013448152458295226, -0.015089971013367176, 0.01903771422803402, 0.0042170751839876175, -0.0016980830114334822, 0.02166462317109108, -0.006165120285004377, 0.016145162284374237, -0.01834409311413765, -0.009732847101986408, -0.004538059700280428, -0.010064899921417236, 0.018963925540447235, 0.01190964039415121, 0.024867093190550804, -0.013820790685713291, -0.015185898169875145, 0.0010939306812360883, -0.01442586537450552, -0.010057521052658558, 0.020026495680212975, 0.023893069475889206, 0.012300725094974041, -0.0032080025412142277, -0.003014304907992482, -0.010249374434351921, 0.008507939986884594, 0.014270907267928123, -0.001611380255781114, 0.00016383595357183367, -0.01691257394850254, 0.022594373673200607, -0.019790368154644966, 5.914696885156445e-05, -0.003102852264419198, -0.001763571286574006, 0.012433546595275402, 0.005427224561572075, -0.020867696031928062, 0.003350047394633293, 0.0042908648028969765, 0.00944506749510765, 0.005183718632906675, -0.008094717748463154, -0.002708077896386385, 0.007401096168905497, -0.011599724180996418, 0.0012857835972681642, 0.0014877826906740665, -0.00498817628249526, -0.024439113214612007, 0.016248468309640884, 0.014189738780260086, -0.004859044682234526, 0.0014794813469052315, 6.658357597189024e-05, 0.01032316405326128, 0.007703633513301611, -0.018919650465250015, 0.003737442893907428, 0.00757081201300025, -0.028497539460659027, 0.0018309042789041996, -0.0065562049858272076, 0.012160524725914001, -0.0031858657021075487, -0.01816699653863907, -0.017916113138198853, -0.0018096896819770336, -0.013953611254692078, 0.002933136187493801, 0.014108570292592049, -0.0004674109513871372, 0.006087641231715679, -0.014020022004842758, -0.015584361739456654, 0.0038223008159548044, 0.004386791028082371, 0.014411107636988163, 0.021517043933272362, -0.00820540264248848, 0.02042495831847191, -0.010404332540929317, 0.0003018455463461578, 0.022107360884547234, -0.008832613937556744, 0.009149909019470215, 0.009105635806918144, 0.005715003702789545, -0.0023169931955635548, 0.013245231471955776, -0.02635764144361019, 0.018683524802327156, -0.015362992882728577, -0.008360360749065876, 0.014809571206569672, -0.017340553924441338, -0.001968337455764413, 0.01415284350514412, 0.012101492844522, 0.008013549260795116, 0.018329335376620293, 0.009880426339805126, -1.6141473224706715e-06, -0.017222490161657333, 0.008094717748463154, -0.006235220469534397, 0.012920557521283627, 0.014344696886837482, 0.008714551106095314, -0.008891645818948746, -0.01632225699722767, -0.003436750266700983, -0.010197721421718597, 0.004733602050691843, 0.01673547923564911, 0.0014305956428870559, -0.002805849304422736, 0.024867093190550804, 0.002471951302140951, 0.003776182420551777, 0.005770346149802208, 0.026003452017903328, 0.008699792437255383, -0.003763269167393446, 0.005475187674164772, 0.009902562946081161, 0.012632777914404869, 0.0006009239587001503, -0.0008213703986257315, -0.0205135066062212, 0.013724863529205322, -0.041646845638751984, -0.002586325164884329, 0.007644601631909609, 0.002920223167166114, -0.02783343382179737, 0.01092085987329483, 0.005593250971287489, 0.00654513668268919, 0.012285967357456684, -0.006607857998460531, 0.002202619332820177, -0.01899344101548195, 0.015510572120547295, 0.00153851299546659, 0.007843833416700363, 0.007954518310725689, 0.006574652623385191, 0.018683524802327156, -0.002794780768454075, -0.003067802172154188, -0.012485198676586151, 0.015377750620245934, -0.020867696031928062, -0.019642788916826248, 0.027951497584581375, -0.0034699556417763233, -0.004405238665640354, 0.011097954586148262, -0.013370674103498459, -0.029294468462467194, 0.012713946402072906, -0.020823422819375992, -0.001782018574886024, 0.03267402946949005, 0.006113467738032341, -0.002516224980354309, -0.004652433563023806, 0.006043367553502321, -0.009076119400560856, 0.0037522006314247847, -0.0168240275233984, -0.019096747040748596, -0.001729443552903831, 0.016233710572123528, -0.03252645209431648, 0.0035400555934756994, 0.0123745147138834, -0.01546629797667265, 0.0014933168422430754, -0.006589410360902548, -0.008965435437858105, -0.009504099376499653, -0.017665227875113487, -0.007792180869728327, 0.0010607254225760698, -0.007161279674619436, 0.021044790744781494, -0.01925908401608467, 0.01304600015282631, -0.009983731433749199, 0.024070164188742638, 0.0069546690210700035, 0.002147277118638158, 0.019332872703671455, 0.004213385749608278, -0.00155511568300426, -0.012219556607306004, 0.0008504250436089933, 0.011798955500125885, 0.0408204011619091, -0.03931509330868721, -0.014728402718901634, -0.011850608512759209, -0.0006368964095599949, 0.009540993720293045, 0.002750507090240717, 0.026239579543471336, -0.0015652617439627647, 0.012278587557375431, -0.00820540264248848, -0.014868603087961674, 0.005043518729507923, 0.008264434523880482, -0.0028224517591297626, -0.015126866288483143, -0.002776333363726735, 0.014226633124053478, -0.0158500038087368, -0.014802192337810993, -0.016351774334907532, -0.0009924699552357197, 0.013931474648416042, -0.0034385949838906527, -0.005718693137168884, 0.010669974610209465, 0.018772071227431297, -0.0029478941578418016, -0.005744519643485546, -0.013791274279356003, -0.024498144164681435, 0.005940061993896961, 0.008899024687707424, -0.03562561422586441, 0.007478575222194195, -0.0017137632239609957, -0.01456606574356556, -0.011016786098480225, -0.009570510126650333, -0.0014831707812845707, 0.007404785603284836, 0.002372335409745574, 0.012522093951702118, -0.01908198744058609, 0.0033998554572463036, 0.01899344101548195, 0.014573444612324238, -0.003940364345908165, -0.0013485047966241837, -0.004180180374532938, -0.011068439111113548, 0.005501014180481434, -0.000528056756593287, -0.004106390755623579, -0.013422327116131783, -0.003471800358965993, -0.007201863918453455, 0.013680590316653252, -0.001473024720326066, -0.00951885711401701, 0.006427073385566473, -0.012736083008348942, 0.009245836175978184, -0.001873333239927888, -0.0038702641613781452, 0.006253667641431093, 0.009732847101986408, -0.0029442047234624624, 0.022786226123571396, 0.01475053932517767, -0.01599758304655552, 0.002759730676189065, -0.024896608665585518, 0.028541814535856247, 0.013643695041537285, -0.025870630517601967, -0.0007240603445097804, 5.663927731802687e-05, 0.004774186760187149, 0.012640156783163548, 0.0017045395215973258, 0.0010883965296670794, 0.030725985765457153, 0.020026495680212975, 0.013134547509253025, -0.006906705908477306, 0.0046044704504311085, 0.002859346568584442, -0.016617415472865105, 0.011857987381517887, 0.00244243536144495, -0.007991412654519081, -0.009017088450491428, 0.01673547923564911, -0.000569102237932384, -0.005054587032645941, 0.02359791100025177, 0.0034349055495113134, 0.01825554482638836, -0.021000517532229424, -0.0021196058951318264, 0.007917623035609722, 0.016705963760614395, -0.0031452812254428864, 0.004689328372478485, -0.018373608589172363, -0.0217088982462883, 0.011754682287573814, 0.0026564253494143486, -0.016071373596787453, -0.016469836235046387, 3.747127630049363e-05, -0.006227841600775719, -0.0013051533605903387, -0.02216639369726181, 0.010175584815442562, -0.00799879152327776, -0.026416674256324768, 0.0073420642875134945, 1.8159156752517447e-05, 0.0010127621935680509, 0.013606800697743893, -0.0029792548157274723, 0.006445521023124456, -0.013496115803718567, -0.018137481063604355, 0.0265937689691782, -0.0031784866005182266, 8.312858699355274e-05, 0.02581159956753254, 0.019657546654343605, 0.0051689608953893185, 0.015687666833400726, -0.004515923094004393, -0.012485198676586151, -0.00958526786416769, -0.008175887167453766, -0.012640156783163548, 0.015089971013367176, -0.012470440939068794, -0.00892116129398346, -0.0019498899346217513, -0.012012945488095284, 0.03922654688358307, 0.030120911076664925, -0.001307920552790165, 0.0074896435253322124, 0.0027191464323550463, 0.00601385161280632, -0.010005868971347809, 0.005700245965272188, 0.003255965653806925, -0.00965167861431837, -0.00898757204413414, 0.02092672884464264, -0.011319323442876339, 0.007976654917001724, -0.00905398279428482, 0.018093207851052284, 0.005180029198527336, 0.018934408202767372, 0.008286571130156517, 0.006032299250364304, -0.0034699556417763233, -0.01177681889384985, 0.02479330264031887, 0.010057521052658558, 0.0031969340052455664, 0.0056891776621341705, -0.00036963974707759917, 0.014573444612324238, 0.005036139395087957, 0.0034957819152623415, -0.0008670276729390025, -0.006917774211615324, -0.01858021877706051, -0.013599421828985214, -0.005080413538962603, -0.001629827544093132, -0.004054738208651543, -0.014256148599088192, -0.019849400967359543, 0.027671096846461296, -0.017488133162260056, 0.017340553924441338, 0.00010976201883750036, 0.008699792437255383, -0.007888107560575008, -0.009991110302507877, 0.0050656553357839584, 0.005102550145238638, -0.006113467738032341, -0.001295007299631834, 0.007917623035609722, 0.014270907267928123, 0.009467204101383686, -0.006976805627346039, -0.005729761905968189, -0.007747907191514969, -0.00297187571413815, 0.013223094865679741, 0.0038481270894408226, 0.024970397353172302, 0.003695013700053096, -0.00156433938536793, 0.0021232955623418093, -0.025177009403705597, -0.004966039676219225, -0.027523517608642578, 0.016838785260915756, -0.004253969993442297, -0.00892116129398346, 0.0027560412418097258, -0.013097652234137058, -0.0008162973681464791, 0.013835548423230648, 0.0057223825715482235, -0.007054285146296024, 0.003680255962535739, 0.004025222267955542, 0.0007485031383112073, -0.0006419694400392473, 0.020616812631487846, -0.0008222927572205663, -0.0008965435554273427, 0.004301933106034994, -0.0005100705311633646, 0.0168240275233984, 0.008264434523880482, -0.020174074918031693, -0.005626456346362829, -0.0022358247078955173, -0.026667557656764984, 0.002394472248852253, 0.007478575222194195, 0.0033002395648509264, -0.004877491854131222, -0.01899344101548195, -0.0176947433501482, 0.0043831015937030315, 0.02069060131907463, -0.008020928129553795, 0.014905497431755066, 0.04728436842560768, -0.006006472744047642, -0.0013337468262761831, 0.03350047394633293, 0.013134547509253025, -0.015540087595582008, -0.0021915507968515158, -0.007821696810424328, 0.01990843191742897, -0.0014721023617312312, -0.020395442843437195, 0.00993207935243845, -0.0048553552478551865, -0.007017390336841345, -0.008994950912892818, -0.0028741045389324427, 0.001603078912012279, 0.023302752524614334, 0.004036290571093559, 0.009526235982775688, 0.007902865298092365, 0.004338827915489674, -0.005504703614860773, 0.017222490161657333, -0.00675174780189991, -0.0071944850496947765, -0.015879519283771515, -0.0011455834610387683, 0.004925455432385206, -0.0044568912126123905, -0.004165422637015581, 0.010942996479570866, 0.012632777914404869, 0.008935919962823391, 0.006035988684743643, -0.004925455432385206, 0.029619142413139343, -0.0009721778915263712, -0.025457408279180527, -0.01700112223625183, 0.0039772591553628445, 0.021487528458237648, -0.007563433144241571, 0.015525329858064651, -0.0022671851329505444, 0.03202468156814575, -0.0035695715341717005, -0.004611849319189787, 0.007725770119577646, 0.0022063087671995163, -0.012898420915007591, -0.011134848929941654, -0.030814534053206444, 0.016115646809339523, -0.015259687788784504, -0.020439716055989265, 0.005275955889374018, -0.03810494393110275, 0.01036743726581335, 0.021000517532229424, -0.01847691275179386, -0.000903922482393682, 0.002219222020357847, 0.00661523686721921, 7.079188799252734e-05, -0.021443255245685577, -0.012190040200948715, 0.014123328030109406, 0.037632692605257034, 0.031050659716129303, 0.02635764144361019, -0.012743462808430195, 0.0069731161929667, -0.019052471965551376, 0.0030382864642888308, 0.009363899007439613, -0.0016058459877967834, 0.010662595741450787, 0.008876888081431389, -0.01011655293405056, 0.013990506529808044, 0.016277983784675598, -0.008006170392036438, 0.005718693137168884, 0.0019019267056137323, 0.0027228358667343855, -0.019421420991420746, 0.016027098521590233, 0.013208337128162384, 0.0036784110125154257, 0.0025254487991333008, 0.0021657245233654976, 0.00852269772440195, -0.002556809224188328, 0.015230171382427216, 0.01064783800393343, 0.0027744886465370655, 2.232423321402166e-05, 0.015613877214491367, -0.0016943934606388211, -0.028748424723744392, 0.006161430850625038, 0.019022956490516663, 0.01244092546403408, 0.010891343466937542, -0.009223698638379574, 0.0029368256218731403, -0.020380685105919838, -0.02005601115524769, -0.012042460963129997, 0.006028609815984964, -0.007128074299544096, -0.015289203263819218, -0.009223698638379574, 0.006427073385566473, 0.006943600717931986, -0.002423988189548254, 0.03167049214243889, 0.030578406527638435, 0.008507939986884594, -0.015318718738853931, -0.005316540133208036, -0.008168507367372513, -0.013835548423230648, -0.011806334368884563, -0.009902562946081161, -0.009895184077322483, 0.012337619438767433, 0.004995555151253939, -0.02018883265554905, 0.003167418297380209, 0.011046301573514938, 0.0018724108813330531, 0.013392810709774494, 0.0076667387038469315, 0.0012525783386081457, -0.004158043302595615, 0.0011548070469871163, 0.002907309914007783, -0.002433211775496602, 0.008552213199436665, -0.023037109524011612, -0.0025143802631646395, 0.002910999348387122, -0.029279710724949837, 0.004696707706898451, 0.006722231861203909, -0.008965435437858105, 0.002003387315198779, -0.0030567338690161705, 0.009245836175978184, -0.005036139395087957, -0.006379110272973776, 0.0037226849235594273, 0.015038318932056427, -0.007770043797791004, 0.022018814459443092, -0.005135755520313978, 0.0035695715341717005, -0.008648140355944633, 0.0037263743579387665, 0.0237750057131052, -0.0029866336844861507, 0.015982825309038162, -0.006976805627346039, -0.0025918593164533377, 0.0038665744941681623, -0.007544985506683588, 0.007681496441364288, 0.01890489272773266, -0.002038437407463789, 0.02309614233672619, 0.022373003885149956, -0.01078803837299347, -0.03332338109612465, -0.03004712238907814, 0.004925455432385206, 0.005582182668149471, 0.006202015094459057, 0.00859648734331131, 0.0015588051173835993, 0.023258479312062263, -0.014728402718901634, 0.010035384446382523, 0.002872259821742773, 0.02429153397679329, 0.0011169899953529239, 0.004943902604281902, 0.005076724104583263, -0.003811232279986143, 0.006781263276934624, 0.014558685943484306, -0.004250280559062958, 0.001585553865879774, -0.004943902604281902, -0.0038333693519234657, -0.005715003702789545, 0.024365322664380074, 0.006910395342856646, -0.020380685105919838, -0.023214206099510193, 0.0379868820309639, -0.002702543744817376, 0.009113014675676823, 0.011223397217690945, 0.013053379021584988, 0.00707642175257206, -0.004180180374532938, -0.028689393773674965, 0.03152291476726532, 0.007696254178881645, -0.014669370837509632, -0.007961897179484367, 0.014824328944087029, -0.02083818055689335, -0.001152039971202612, 0.010278889909386635, -0.007161279674619436, -0.002045816509053111, 0.002839054446667433, -0.015112108550965786, 0.0265937689691782, -0.009275351651012897, -0.0034127687104046345, -0.03497626632452011, 0.003947743214666843, -0.014197117649018764, 0.019554242491722107, 0.015540087595582008, 0.011643997393548489, 0.0176947433501482, -0.015776215121150017, 0.017901355400681496, 0.0059289936907589436, -0.019288599491119385, 0.004622918087989092, -0.03175903856754303, -0.006943600717931986, -0.00892116129398346, -0.00763722276315093, -0.02461620792746544, 0.006183567922562361, 0.004504854325205088, 0.02240251936018467, -0.004659812897443771, 0.011857987381517887, -0.014868603087961674, -0.007264585234224796, 0.004416306968778372, -0.010138689540326595, 0.028364717960357666, 0.007035837508738041, 0.002304079942405224, 0.01435945462435484, -0.01440372783690691, 0.014617717824876308, -0.014949771575629711, 0.0195394828915596, -0.008648140355944633, 0.003189555136486888, -0.0038038534112274647, 0.0015440471470355988, -0.02175317145884037, 0.016292741522192955, 0.004966039676219225, -0.006707473658025265, -0.03792785108089447, 0.0164993517100811, 0.003279947442933917, -0.0012931625824421644, 0.0055563561618328094, 0.00965167861431837], "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d": [-0.033179931342601776, 0.004443212877959013, -0.010875151492655277, 0.035604845732450485, -0.014061548747122288, -0.01588023453950882, 0.010949081741273403, 0.0038776458241045475, -0.01512614544481039, 0.03261806070804596, 0.009640514850616455, 0.023864710703492165, -0.01405415590852499, 0.0031364941969513893, -0.01388411596417427, 0.007673968095332384, -0.025786899030208588, 0.007681361399590969, 0.004276869352906942, -0.028182242065668106, 0.07487663626670837, -0.01545143872499466, -0.024352651089429855, 0.001510951085947454, -0.020404770970344543, 0.002471121260896325, -1.9652183254947886e-05, -0.004509750287979841, -0.05006561800837517, -0.016131598502397537, 0.024530082941055298, 0.006254505831748247, 0.01296737976372242, 0.03421495482325554, 0.001420386484824121, -0.05636448413133621, -0.014475558884441853, -0.014933926053345203, 0.007910544984042645, 0.014216802082955837, -0.0019757880363613367, 0.02688106708228588, 0.006187968421727419, -0.006546530872583389, -0.03607800230383873, -0.006797893904149532, -0.007271047681570053, 0.003709454322233796, 0.007282137405127287, -0.005958784371614456, 0.022874044254422188, 0.018127717077732086, -0.02302190475165844, -0.007718326523900032, 0.018379079177975655, -0.039005640894174576, 0.03105073794722557, 0.0993032157421112, 0.0016421774635091424, -0.07517235726118088, -0.01627945899963379, -0.019842900335788727, 0.006882913876324892, -0.01676739938557148, 0.019813328981399536, 0.007004898507148027, 0.01221329066902399, 0.027723873034119606, -0.03105073794722557, 0.010993439704179764, 0.005337769631296396, 0.02096664160490036, -0.06517697870731354, 0.062278907746076584, -0.018009427934885025, 0.016116810962557793, 0.0006182423676364124, 0.010357638821005821, 0.011777101084589958, 0.012590334750711918, 0.008620276115834713, -0.017373627051711082, 0.05219481140375137, 0.014157658442854881, 0.041400983929634094, 0.014460772275924683, -0.010535071603953838, -0.03501340374350548, -0.022548750042915344, -0.02902504801750183, 0.028123097494244576, 0.04950374737381935, -0.00723408255726099, 0.004502356983721256, 0.007418908644467592, 0.03465854004025459, -0.016161169856786728, -0.005984660238027573, -0.00045744390808977187, -0.012302006594836712, -0.005722207482904196, 0.02458922751247883, -0.023258481174707413, 0.009204326197504997, 0.003944183234125376, -0.04373718425631523, 0.006727660074830055, 0.04276130348443985, -0.011791887693107128, -0.000809075019787997, 0.032351911067962646, -0.05621662363409996, 0.010572036728262901, 0.012619907036423683, -0.009278256446123123, 0.011503559537231922, -0.06399409472942352, -0.011858425103127956, 0.007718326523900032, -0.017551060765981674, 0.001221698708832264, -0.04163756221532822, 0.013603180646896362, -0.0511893592774868, -0.0223713181912899, -0.0035375661682337523, -0.006661122664809227, 0.040602535009384155, 0.03542741388082504, 0.011207837611436844, -0.01891137845814228, -0.03436281532049179, 0.027856947854161263, -0.02682192251086235, -0.00944090262055397, 0.025121526792645454, 0.0005045745056122541, 0.03421495482325554, -0.016442105174064636, 0.03179004043340683, -0.06085944548249245, -0.0219129491597414, -0.04917845502495766, 0.02722114697098732, 0.02710285782814026, -0.0024101287126541138, -0.03797061741352081, 0.028270957991480827, -0.021262362599372864, 0.005319287069141865, -0.05225395783782005, -0.021114502102136612, -0.025298958644270897, -0.007607430685311556, 0.022548750042915344, -0.044062476605176926, -0.00020400149514898658, 0.006029018200933933, -0.0072969235479831696, 0.06476296484470367, 0.021839018911123276, -0.03542741388082504, -0.007844007574021816, 0.01129655446857214, 0.02685149572789669, 0.024012571200728416, 0.059913139790296555, 0.017033547163009644, -0.02881804294884205, 0.013270494528114796, 0.018660014495253563, -0.009803161956369877, 0.038118477910757065, 0.015895020216703415, -0.010823399759829044, -0.03173089772462845, 0.01888180524110794, 0.02722114697098732, 0.025358103215694427, -0.024500511586666107, -0.008258017711341381, -0.00470566563308239, 0.01636817492544651, 3.01497129839845e-05, -0.020774422213435173, 0.016353389248251915, 0.0098844850435853, 0.030636727809906006, -0.003929397091269493, 0.010128455236554146, -0.03383051976561546, -0.00023045469424687326, 0.004794382024556398, 0.02359856106340885, -0.009618335403501987, -0.0255946796387434, -0.00898253545165062, 0.002053414937108755, -0.038857780396938324, 0.012442474253475666, 0.011969320476055145, -0.01262729987502098, 0.0063173468224704266, 0.03519083559513092, -0.017639776691794395, 0.024722302332520485, 0.015747159719467163, -0.03853248804807663, 0.0070381672121584415, 0.013159598223865032, 0.04116440564393997, -0.03344608098268509, 0.005995749495923519, 0.003925700671970844, -0.004365585744380951, 0.004591073375195265, -0.03258848935365677, 0.009677479974925518, -0.018275577574968338, -0.00397745193913579, -0.005910729989409447, -0.01636817492544651, 0.0010091490112245083, -0.025402460247278214, -0.05775437504053116, -0.04175585135817528, -0.014645597897469997, 0.020434342324733734, 0.013765827752649784, -0.007422605063766241, 0.03090287744998932, -0.015103965997695923, 0.02182423323392868, -0.012117180973291397, -0.010379818268120289, 0.04678311198949814, 0.019842900335788727, -0.018275577574968338, -0.0358709953725338, -0.02801959402859211, 0.02461879886686802, -0.004524535965174437, -0.02762037143111229, -0.026999356225132942, -0.01622031442821026, 0.019842900335788727, -0.014024583622813225, 0.009330007247626781, 0.00841327104717493, 0.030636727809906006, 0.003568986663594842, 0.02942427061498165, -0.0063912770710885525, 0.032263197004795074, -0.02970520593225956, 0.02059699036180973, 0.04699011892080307, 0.0037759914994239807, -0.01753627322614193, 0.0035560487303882837, 0.017861567437648773, 0.0311098825186491, -0.03507254645228386, 0.027812588959932327, 0.009773589670658112, -0.06393495202064514, 0.03297292813658714, -0.03578227758407593, 0.02696978487074375, 0.048054713755846024, 0.00731910252943635, 0.00984012708067894, 0.010298495180904865, 0.04678311198949814, -0.007910544984042645, -0.03870991989970207, 0.00040060997707769275, 0.03193790093064308, 0.03335736319422722, -0.006335829384624958, -0.01882266253232956, -0.025491178035736084, 0.042465582489967346, 0.005600222386419773, 0.03595971316099167, 0.007219296880066395, -0.011385270394384861, -0.011311340145766735, -0.01602809503674507, -0.02439700812101364, -0.01366971805691719, 0.013344424776732922, 0.008827281184494495, 0.030341006815433502, -0.014719528146088123, -0.001838092808611691, -0.006487386301159859, -0.003568986663594842, -0.003286203136667609, 0.012716016732156277, 0.008065799251198769, -0.030030500143766403, -0.0010137696517631412, -0.032233621925115585, 0.061510033905506134, -0.019236670807003975, 0.03448110446333885, 0.030370580032467842, -0.002787173492833972, 0.023716850206255913, 0.024663157761096954, -0.04007023945450783, -0.0022474820725619793, -0.018556512892246246, -0.007814436219632626, 0.004949635360389948, -0.04447648674249649, -0.03332779183983803, -0.015229647979140282, -0.02884761430323124, 0.0008164680912159383, 0.027635157108306885, -0.06718788295984268, 0.04438776895403862, 0.019916830584406853, -0.04710840433835983, 0.009721837937831879, -0.01667868159711361, -0.01916274055838585, -0.011178265325725079, -0.02188337780535221, -0.002474817680194974, -0.02316976524889469, 0.011902783066034317, -0.02470751665532589, -0.02562425285577774, -0.03755660727620125, -0.04663525149226189, 0.008775530382990837, -0.03950836881995201, -0.00789575930684805, -0.0036743374075740576, 0.034688111394643784, -0.03598928451538086, 0.0017161077121272683, -0.024870162829756737, -0.004206635523587465, -0.023805566132068634, -0.009322614409029484, 0.007178634870797396, 0.0008751502609811723, -0.011414842680096626, 0.02293318882584572, 0.003225210588425398, 0.03202661871910095, -0.01588023453950882, -0.022770540788769722, -0.004339710343629122, 0.022208670154213905, 0.012176325544714928, -0.027916092425584793, -0.026407914236187935, -0.0031364941969513893, -0.017462342977523804, 0.007925331592559814, 0.04846872389316559, 0.003848073538392782, -0.019931616261601448, -0.0242195762693882, -0.006065983325242996, -0.020582202821969986, 0.0001482072111684829, 0.015059608034789562, 0.009647907689213753, -0.006409759633243084, -0.019074024632573128, 0.05683763697743416, 0.01599852368235588, 0.002646705834195018, 0.0011847334681078792, 0.014401627704501152, 0.010357638821005821, -0.010387211106717587, 0.054146572947502136, 0.038059335201978683, -0.006557620130479336, 0.008147122338414192, 0.007903152145445347, -0.01468256302177906, -0.008893818594515324, -0.04616209864616394, 0.011148693971335888, -0.004583680536597967, 0.0009999077301472425, -0.03415581211447716, -0.036551155149936676, -0.011562703177332878, 0.00029063859255984426, 0.02305147610604763, -0.01725533790886402, 0.006760928779840469, -0.003885038895532489, -0.001318732276558876, -0.007415212225168943, 0.013100454583764076, -0.018438223749399185, 0.013728861697018147, -0.015392294153571129, 0.013078275136649609, 0.012545976787805557, -0.023317625746130943, 0.017802422866225243, 0.0367877334356308, 0.05349598452448845, 0.002722484292462468, 0.007489142473787069, -0.022504393011331558, 0.0634617954492569, 0.005493023432791233, -0.00573329720646143, 0.029941784217953682, 0.002138434676453471, 0.004960725083947182, 0.021602442488074303, -0.002678126096725464, 0.04361889511346817, -0.013070882298052311, 0.02767951600253582, 0.006849645171314478, -0.020005546510219574, 0.020981427282094955, 0.062456343322992325, -0.005237963981926441, -0.0064910827204585075, 0.004010720178484917, -0.009485261514782906, 0.016604751348495483, -0.015806304290890694, 0.026688849553465843, 0.024914521723985672, 0.002711394801735878, 0.01166620571166277, 0.005559560842812061, 0.012649479322135448, -0.05612790584564209, -0.033978380262851715, -0.017240552231669426, -0.0028592555318027735, 0.030873306095600128, 0.008568525314331055, 0.008250624872744083, 0.014283339492976665, -0.03743831813335419, -0.028729325160384178, -0.005160336848348379, -0.0008206266793422401, 0.0075926450081169605, -0.0047130584716796875, 0.028123097494244576, -0.03282506763935089, -0.029897425323724747, 0.020951855927705765, 0.028758898377418518, 0.005703724920749664, 0.022386103868484497, -0.022208670154213905, -0.00918214675039053, -0.0047574169002473354, 0.0010424175998196006, 0.041548844426870346, -0.018157288432121277, 0.0031161634251475334, -0.0017161077121272683, 0.07191942632198334, 0.027206361293792725, -0.011429629288613796, -0.02716200239956379, 0.009788375347852707, -0.02139543741941452, -0.022297387942671776, 0.005688938777893782, -0.005208391696214676, 0.007607430685311556, -0.0343332439661026, 0.01106736995279789, 0.0033028374891728163, -0.04279087483882904, 0.003247389802709222, 0.02022733725607395, 0.013159598223865032, 0.020094264298677444, 0.007703540381044149, 0.001875982154160738, -0.008768136613070965, -0.017403200268745422, -0.01790592633187771, -0.0007545514381490648, -0.05450144037604332, -0.02002033405005932, -0.04503835737705231, 0.047315411269664764, 0.008975141681730747, 0.001323352917097509, -0.009581370279192924, -0.03016357496380806, 0.04279087483882904, -0.01667868159711361, 0.06310693174600601, 0.0002846317656803876, -0.010830793529748917, -0.01759541779756546, 0.0019591536838561296, -0.04039553180336952, 0.0013085667742416263, 0.027354221791028976, 0.022977545857429504, -0.02145458199083805, -0.03276592120528221, 0.04042510315775871, 0.003870252752676606, -0.020803995430469513, -0.001581184915266931, -0.026585346087813377, -0.01636817492544651, -0.009662694297730923, 0.0042731729336082935, 0.007337585091590881, -0.026644490659236908, 0.019502820447087288, -0.031405605375766754, -0.013004344888031483, 0.025210242718458176, -0.027073286473751068, 0.02047870121896267, 0.024382222443819046, 0.020123835653066635, -0.0030995290726423264, -0.011363091878592968, 0.009707052260637283, 0.0038443771190941334, -0.008871639147400856, 0.02356898970901966, -0.027413366362452507, -0.008302375674247742, -0.009463082067668438, 0.019532393664121628, 0.03190832957625389, 0.011814066208899021, -0.018867019563913345, 0.03933093696832657, -0.005282321944832802, 0.0011052584741264582, -0.01882266253232956, -0.012449867092072964, 0.006631550379097462, 0.006073376629501581, -0.0142537672072649, 0.006842251867055893, -0.018009427934885025, -0.02750208228826523, 0.006358008366078138, 0.030459295958280563, 0.004997690208256245, 0.023672491312026978, 0.0004412716662045568, -0.004095740150660276, -0.0007268275367096066, 0.0146382050588727, -0.021188432350754738, 0.007991869002580643, 0.02654098905622959, -0.01750670187175274, 0.029098978266119957, 0.02759079821407795, 0.016841329634189606, 0.026718420907855034, -0.0018676649779081345, 0.0004329544899519533, -0.02259310893714428, -0.03782275691628456, 0.02519545704126358, -0.012435081414878368, 0.002336198464035988, -0.021558083593845367, -0.0018926163902506232, 0.04601423814892769, -0.042347293347120285, -0.011858425103127956, 0.0009213567245751619, -0.003947879653424025, 0.013470105826854706, 0.0508936382830143, -0.028315316885709763, 0.026126978918910027, -0.026807136833667755, 0.02308104932308197, 0.0012623603688552976, 0.02416043169796467, 0.02762037143111229, 0.010926902294158936, 0.027945663779973984, -0.003156824968755245, 0.01123740989714861, 0.011932355351746082, -0.018098143860697746, 0.0076222168281674385, 0.03261806070804596, 0.012176325544714928, -0.02359856106340885, -2.7016336389351636e-05, -0.02010904997587204, 0.000616394099779427, -5.925977893639356e-05, -0.004982904065400362, 0.0021402831189334393, 0.01787635311484337, 0.011407449841499329, 0.017728492617607117, 0.01151095237582922, 0.024056928232312202, 0.007193421013653278, -0.039922378957271576, 0.03184918686747551, -0.019177528098225594, 0.03542741388082504, 0.03539784252643585, -0.016501249745488167, 0.016545606777071953, 0.008117550052702427, 0.01931060291826725, -0.012775161303579807, -0.02062656171619892, 0.02182423323392868, -0.008915998041629791, -0.008354127407073975, -0.007540893740952015, -0.011932355351746082, 0.009573977440595627, 0.00500508351251483, -0.016353389248251915, 0.009056465700268745, -0.0056556700728833675, 0.00011464976705610752, 0.04270215705037117, -1.1811524927907158e-05, 0.007932724431157112, -0.01596895046532154, 0.0018685890827327967, 0.04219943284988403, 0.03530912473797798, -0.017491916194558144, 0.009603549726307392, 0.011326126754283905, 0.0033416508231312037, 0.008679420687258244, -0.016087239608168602, -0.013603180646896362, 0.019813328981399536, 0.020316055044531822, 0.006990112829953432, 0.022548750042915344, -0.011799280531704426, 0.005818316712975502, 0.007393032778054476, 0.01362536009401083, -0.01999076083302498, 0.03936050832271576, 0.0009786527371034026, 0.04524536058306694, -0.016723040491342545, 0.02602347545325756, -0.014756493270397186, 0.003506145905703306, -0.03102116659283638, -0.015407080762088299, 0.00429904880002141, 0.0017558452673256397, 0.008930783718824387, 0.004897884093225002, -0.02547639235854149, -0.024958878755569458, -0.04509750008583069, -0.020182980224490166, 0.0014776824973523617, -0.026112191379070282, -0.01031328085809946, -0.015170503407716751, 0.041548844426870346, -0.03598928451538086, 0.0008377230260521173, -0.010121062397956848, 0.007322798948734999, -0.02813788317143917, 0.02710285782814026, 0.011178265325725079, -0.031376030296087265, 0.023894282057881355, -0.017048334702849388, 0.009374366141855717, -0.031139453873038292, -0.005138157866895199, -0.01667868159711361, 0.010106275789439678, -0.025550322607159615, 0.049119312316179276, -0.003962665796279907, -0.012257648631930351, -0.017432771623134613, 0.007570465561002493, 0.028655394911766052, 0.0029664544854313135, 0.0028315316885709763, -0.013492285273969173, 0.032351911067962646, 0.019783755764365196, 0.02730986289680004, 0.0027261809445917606, 0.024958878755569458, -0.018438223749399185, 0.016382960602641106, -0.000932446273509413, 0.020656133070588112, -0.009433509781956673, -0.034865543246269226, -0.006731356494128704, 0.006224933546036482, -0.033002499490976334, -0.014290732331573963, -0.0058072274550795555, 0.01242768857628107, 0.027531655505299568, -0.021632013842463493, 0.0014832272427156568, 0.007156455889344215, -0.009330007247626781, -0.011119121685624123, 0.012021071277558804, 0.004169670399278402, 0.006187968421727419, -0.037349604070186615, 0.030607156455516815, -0.026008689776062965, 0.0395379401743412, -0.025742540135979652, -0.010335460305213928, -0.0034322154242545366, 0.05370299145579338, 0.0024323079269379377, -0.020094264298677444, 0.00607707304880023, 0.03282506763935089, -0.030400151386857033, 0.03445153310894966, 0.007969689555466175, 0.007271047681570053, -0.0004227890749461949, 0.022400889545679092, 0.01281212642788887, -0.008058405481278896, 0.04163756221532822, -0.014327697455883026, 0.004897884093225002, -0.005966177675873041, -0.016959616914391518, -0.0049718148075044155, 0.010461141355335712, 0.009470474906265736, 0.006916182115674019, 0.01842343807220459, -0.0023398948833346367, 0.05127807706594467, 0.030725445598363876, 0.030518440529704094, 0.019606323912739754, 0.010409390553832054, -0.024411793798208237, 0.010623788461089134, -0.01713705062866211, -0.013063489459455013, -0.004036596044898033, -0.034835971891880035, -0.02878846973180771, 0.014002404175698757, -0.04101654514670372, -0.004117919132113457, -0.037172168493270874, 0.02308104932308197, 0.022326959297060966, 0.013891508802771568, 0.026363555341959, 0.02382035180926323, -0.00723408255726099, -0.00513446144759655, 0.006631550379097462, 0.01599852368235588, -0.03941965103149414, 0.02424914762377739, 0.030045285820961, -0.03507254645228386, 0.0025579894427210093, 0.00440624775364995, -0.00858331099152565, 0.03090287744998932, 0.040691252797842026, 0.0037704468704760075, -0.0076591819524765015, -0.0029664544854313135, -0.010986046865582466, -0.011673598550260067, -0.008036226965487003, -0.018290363252162933, -0.01215414609760046, -0.008080584928393364, 0.02004990540444851, -0.038207195699214935, 0.005204695276916027, 0.009877092204988003, -0.021439796313643456, 0.03714259713888168, -0.00918214675039053, -0.013721468858420849, 0.007866187021136284, 0.023214124143123627, 0.004365585744380951, 0.02210516855120659, 0.001671749516390264, 0.008694206364452839, 0.005500416271388531, -0.015103965997695923, -0.012863877229392529, -0.009936235845088959, -0.01302652433514595, -0.007644395809620619, 0.011407449841499329, -0.017092691734433174, 0.011385270394384861, 0.026866281405091286, 0.026644490659236908, -0.016442105174064636, 0.03829590976238251, -0.017787637189030647, -0.06328435987234116, -0.01046853419393301, -0.003295444417744875, 0.0197689700871706, 0.013070882298052311, 0.0038517701905220747, 0.022726183757185936, 0.02305147610604763, 0.07038167119026184, 0.01155531033873558, -0.027487296611070633, -0.03090287744998932, 0.014956105500459671, -0.013647538609802723, 0.02087792567908764, -0.030725445598363876, 0.02728029154241085, -0.03622586280107498, 0.022696610540151596, 0.01642731949687004, -0.011333519592881203, -0.0098844850435853, 0.036639872938394547, -0.03838462755084038, -0.007851401343941689, 0.012545976787805557, -0.002293688477948308, 0.026038261130452156, 0.02247481979429722, 0.005792441312223673, -0.009596156887710094, 0.0045319292694330215, 0.0005554016097448766, -0.02293318882584572, 0.00798447523266077, -0.0027890217024832964, 0.03273634985089302, -0.00816930178552866, 0.0041290088556706905, -0.014305518940091133, 0.017610205337405205, -0.011303947307169437, -0.021587656810879707, -0.012568156234920025, -0.003777839709073305, -0.024811018258333206, 0.0029220962896943092, 0.0028167455457150936, 0.011141300201416016, -0.014623419381678104, 0.004313834477216005, -0.023036690428853035, -0.016604751348495483, -0.031169027090072632, 0.0229923315346241, 0.0071527594700455666, -0.028803255409002304, -0.013174384832382202, 0.02010904997587204, -0.0008663710323162377, -0.030607156455516815, -0.06979022920131683, -0.01959153637290001, 0.05949912965297699, -0.03607800230383873, -0.008701600134372711, 0.009078644216060638, 0.0014804548118263483, 0.0076222168281674385, 0.02942427061498165, 0.0334165096282959, 0.01489696092903614, -0.0033878572285175323, 0.057399507611989975, 0.022149527445435524, 0.02816745452582836, -0.008006654679775238, -0.023687276989221573, -0.01188060361891985, 0.014660384505987167, 0.01747713051736355, 0.05216524004936218, -8.288282697321847e-05, -0.01003973837941885, 0.01485260296612978, -0.025328529998660088, -0.02516588382422924, -0.008546345867216587, 0.024145646020770073, -0.009965808130800724, 0.007962296716868877, 0.0045319292694330215, -0.009337401017546654, -0.005877461284399033, 0.0005549395573325455, -0.012117180973291397, -0.00704186363145709, -0.024884948506951332, -0.01399501133710146, -0.002561685862019658, -0.012612514197826385, 0.025328529998660088, -0.01546622533351183, -0.021528512239456177, -0.029971355572342873, 0.008635062724351883, -0.007651789113879204, 0.0024452456273138523, 0.02359856106340885, 0.010623788461089134, 0.039863232523202896, -0.005189909134060144, 0.0011560855200514197, 0.003580076154321432, 0.004095740150660276, -0.0020552631467580795, 0.010217171162366867, 0.0028758898843079805, -0.004380371887236834, -0.01069771870970726, 0.0038443771190941334, -0.0127973398193717, 0.0124129019677639, -0.008553738705813885, 0.030030500143766403, -0.004258386790752411, -0.0014933926286175847, -0.004875705111771822, -0.01873394474387169, -0.02510673925280571, -0.008272803388535976, -0.002711394801735878, -0.007681361399590969, -0.017521487548947334, 0.015362722799181938, -0.033091213554143906, -0.008450236171483994, -0.030784588307142258, -0.023317625746130943, 0.030814161524176598, -0.0029239444993436337, -0.03365308418869972, -0.007755291648209095, 0.005289715249091387, 0.007829221896827221, -0.01585066318511963, 0.027975236997008324, -0.013492285273969173, 0.01956196501851082, 0.012767767533659935, 0.007067739497870207, 0.02382035180926323, -0.006258202251046896, 0.01648646406829357, -0.007917937822639942, -0.015436653047800064, -0.029542559757828712, 0.001205988461151719, -0.03359394147992134, -0.015643658116459846, 0.0030828947201371193, -0.026171335950493813, 0.01679697073996067, 0.038059335201978683, 0.012050643563270569, 0.0027187878731638193, 0.008361520245671272, -0.002668884815648198, 0.009751410223543644, -0.017639776691794395, -0.006838555447757244, 0.0007684133597649634, -0.016175955533981323, -0.009211719036102295, 0.011599668301641941, 0.021528512239456177, -0.01582108996808529, 0.02121800370514393, 0.025890400633215904, 0.006502172444015741, -0.019044453278183937, 0.0065354411490261555, -0.03516126424074173, -0.012560763396322727, 0.005234267096966505, 0.011215231381356716, 0.006576102692633867, 0.03519083559513092, -0.00984012708067894, 0.01744755730032921, -0.021779874339699745, 0.002840772969648242, -0.0030828947201371193, 0.008221052587032318, -0.021839018911123276, -1.186928329843795e-05, -0.08120507001876831, -0.018719159066677094, -0.006446724757552147, -0.017033547163009644, 0.01005452498793602, -0.0023713153786957264, 0.018689587712287903, 0.012398116290569305, -0.011303947307169437, 0.03356437012553215, -0.01968025416135788, -0.011311340145766735, 0.03761574998497963, 0.013477498665452003, 0.006136217154562473, 0.001425931230187416, -0.0010590519523248076, -0.016294244676828384, -0.0047500235959887505, -0.012294613756239414, -0.014246374368667603, 0.017698921263217926, 0.019384533166885376, -0.017181407660245895, -0.017920712009072304, 0.033091213554143906, -0.007348674815148115, 0.016013309359550476, -0.005030958913266659, -0.02439700812101364, 0.012789946980774403, -0.011717957444489002, -0.01916274055838585, -0.01707790605723858, -0.0034007951617240906, 0.018201647326350212, 0.014985677786171436, 0.0030459295958280563, 0.007311709690839052, 0.0012558915186673403, 0.009477867744863033, 0.014734314754605293, -0.011592275463044643, 0.022977545857429504, 0.006431938614696264, -0.0127973398193717, -0.020892711356282234, -0.02274096943438053, 0.013366603292524815, -0.010808614082634449, -0.003836984047666192, -0.0033250164706259966, -0.02673320658504963, -0.01710747741162777, 0.0019406711217015982, -0.003215969307348132, 0.008161908015608788, -0.01236854400485754, -0.00656870985403657, -0.009522226639091969, 0.042406436055898666, 0.015103965997695923, -0.001130209886468947, 0.006465207319706678, -0.007537196855992079, 0.01333703100681305, 0.01465299166738987, -0.00025113209267146885, 0.015924593433737755, 0.01882266253232956, 0.020670920610427856, -0.0001237177784787491, -0.008819888345897198, -0.0051455507054924965, 0.0058441925793886185, -0.004476481582969427, 0.017639776691794395, 0.017003975808620453, 0.025683395564556122, -0.008672027848660946, -0.04007023945450783, 0.008465022780001163, 0.02473708800971508, -0.004354496486485004, -0.015702802687883377, 0.009877092204988003, 0.0018288515275344253, -0.030341006815433502, -0.002480362541973591, 0.0007092690793797374, 0.03690601885318756, -0.012257648631930351, 0.02464837208390236, -0.00513446144759655, 0.008487202227115631, 0.0223713181912899, 0.004125312436372042, 0.002319564111530781, 0.024175217375159264, 0.007673968095332384, -0.005751779768615961, -0.031198598444461823, -0.011133907362818718, -0.006409759633243084, -0.00511228246614337, 0.014756493270397186, -0.008073192089796066, 0.029719991609454155, 0.0072969235479831696, -0.015052215196192265, -0.004066168330609798, 0.005104889161884785, -0.019724611192941666, -0.006080769468098879, -0.017181407660245895, 0.011215231381356716, 0.0056556700728833675, -0.0011265133507549763, -0.004927456378936768, 0.020212551578879356, -0.0031956385355442762, 0.02247481979429722, -0.009936235845088959, -0.045600228011608124, 0.006960540544241667, -0.0005456982180476189, -0.018039001151919365, -0.013344424776732922, 0.008723778650164604, 0.023288054391741753, 0.017403200268745422, 0.024382222443819046, -0.006553923711180687, 0.014978284947574139, -0.006280381698161364, 0.018290363252162933, 0.027783017605543137, -0.015096573159098625, 0.02316976524889469, -0.014453379437327385, 0.02022733725607395, 0.005411699879914522, 0.008768136613070965, 0.003535717958584428, -0.01198410615324974, -0.002661491744220257, -0.003167914692312479, -0.014815637841820717, 0.001468441216275096, 0.0008728399407118559, -0.017329270020127296, 9.206636605085805e-05, 0.03752703592181206, 0.020582202821969986, 0.009418724104762077, -0.029690420255064964, 0.00016449498070869595, 0.017314482480287552, -0.00464282464236021, -0.0008312541176564991, -0.03669901564717293, -0.004502356983721256, 0.008679420687258244, -0.013100454583764076, -0.0012937807478010654, -0.009573977440595627, -0.006151003297418356, -0.011976713314652443, 0.01648646406829357, -0.0043471031822264194, 0.012072823010385036, -0.02004990540444851, -0.009803161956369877, 0.0002871731121558696, 0.008989928290247917, -0.019872471690177917, 0.0068311626091599464, -0.0015682470984756947, 0.021173646673560143, -0.016412533819675446, -0.01361057348549366, 0.022814899682998657, -0.005722207482904196, 0.010572036728262901, 0.007910544984042645, -0.003992237616330385, -0.014933926053345203, 0.018408652395009995, 0.0039848447777330875, 0.004901580978184938, 0.0014610481448471546, -0.0021347382571548223, 0.003724240232259035, -0.010779041796922684, -0.009744017384946346, 0.015599299222230911, 0.02348027192056179, 0.012730802409350872, -0.023982997983694077, 0.008176694624125957, -0.030237505212426186, -0.009381758980453014, 0.0015553092816844583, 0.019754184409976006, 0.010682933032512665, 0.017417985945940018, -0.0010405693901702762, 0.003922003787010908, 0.032292768359184265, -0.0073708537966012955, -0.02176508866250515, -0.021439796313643456, 0.015288791619241238, -0.007807042915374041, -0.012619907036423683, -0.002663340186700225, -0.01086775865405798, -0.028270957991480827, 0.014564274810254574, -0.015333150513470173, 0.0352499820291996, 0.0020718974992632866, 0.012353758327662945, -0.009921450167894363, 0.008716385811567307, 0.015806304290890694, 0.015614085830748081, -0.09551798552274704, -0.0014601240400224924, 0.0074410876259207726, -0.0009758803644217551, 0.0030699570197612047, 0.013773220591247082, 0.0006972554256208241, -0.014549489133059978, -0.007681361399590969, 0.0255946796387434, -0.0075852517038583755, 0.024441367015242577, -0.016560394316911697, -0.008849460631608963, -0.03868034854531288, -0.012117180973291397, -0.0004438130126800388, 0.03939007967710495, -0.011828852817416191, -0.024914521723985672, 0.00701968465000391, -0.00023392018920276314, 0.002319564111530781, -0.00464282464236021, -0.003337954403832555, 0.000546622381079942, -0.013662325218319893, -0.01118565909564495, -0.006845948286354542, 0.010187599807977676, -0.01768413558602333, 0.007910544984042645, -0.010305888019502163, -0.024175217375159264, 0.017610205337405205, 0.028611037880182266, -0.02915812097489834, 0.013603180646896362, -0.005012476351112127, -0.007027077954262495, 0.020715277642011642, 0.006657426245510578, -0.01020977832376957, -0.005618704948574305, -0.010934296064078808, -0.020803995430469513, -0.024944093078374863, 0.009115609340369701, 0.00534885935485363, 0.015170503407716751, -0.02090749703347683, -0.011074763722717762, 0.0127973398193717, -0.011607062071561813, 0.005400610622018576, -0.011104335077106953, 0.005189909134060144, 0.023228909820318222, 0.022326959297060966, -0.0052527496591210365, -0.001741059240885079, 0.032174479216337204, -0.031494319438934326, 0.0027354222256690264, -0.00584049616008997, 0.01973939873278141, -0.008354127407073975, 0.01562887243926525, -0.003936789929866791, 0.010986046865582466, -0.010128455236554146, 0.029956569895148277, -0.021617228165268898, 0.020389985293149948, -0.022119954228401184, -0.0017336661694571376, -0.037231314927339554, -0.026555774733424187, -0.000270538788754493, 0.01128176786005497, -0.0026818227488547564, 0.010335460305213928, 0.012302006594836712, 0.026097405701875687, 0.012996952049434185, -0.016205528751015663, -0.014786065556108952, -0.0018048242200165987, 0.04163756221532822, 0.018955735489726067, -0.002251178491860628, -0.019147954881191254, -0.009485261514782906, 0.0014869237784296274, -0.009699659422039986, 0.04048424959182739, -0.011385270394384861, -0.01750670187175274, -0.008590703830122948, -0.028374459594488144, -0.012043250724673271, 0.006701784208416939, 0.003391553880646825, -0.009832734242081642, 0.02767951600253582, -0.010298495180904865, -0.02427872084081173, 0.006531744729727507, 0.008716385811567307, -0.01097126118838787, -0.015333150513470173, -0.029926996678113937, 0.003103225491940975, 0.009366972371935844, 0.014460772275924683, 0.008864246308803558, -0.02099621295928955, 0.012457260861992836, 0.0009158119792118669, 0.015569726936519146, 0.021750302985310555, 0.028285743668675423, -0.011377877555787563, 0.007359764073044062, 0.015924593433737755, 0.0041290088556706905, -0.01925145834684372, -0.009167361073195934, 0.022504393011331558, -0.009049071930348873, 0.007466963026672602, -0.015673229470849037, -0.03711302578449249, -0.027073286473751068, -0.001162554370239377, 0.015259220264852047, 0.01830514892935753, -0.012383329682052135, 0.005659366492182016, 0.026348769664764404, -0.012553369626402855, 0.019502820447087288, -0.013906294479966164, 0.017610205337405205, 0.018246004357933998, 0.0030847429297864437, -0.00907125137746334, -0.014224194921553135, 0.003219665726646781, -0.00594769511371851, 0.019266244024038315, -0.012205896899104118, -0.01388411596417427, 0.013617966324090958, 0.006187968421727419, -0.03329822048544884, -0.00922650471329689, -0.026777565479278564, 0.004849829711019993, -0.010446355678141117, 0.005881157703697681, -0.009951022453606129, -0.0009999077301472425, -0.011008226312696934, 0.01596895046532154, 0.0002904075663536787, 0.01054246537387371, 0.013004344888031483, -0.002373163588345051, -0.025698183104395866, -0.004657610785216093, -0.04172627627849579, -0.01242768857628107, 0.006302560679614544, 0.00526383938267827, -0.013144812546670437, 0.024811018258333206, -0.004421033896505833, 0.011902783066034317, 0.017240552231669426, 0.005034655332565308, -0.0008506608428433537, -0.025727754458785057, -0.0023879497312009335, -0.019576750695705414, -0.01959153637290001, -0.01627945899963379, -0.0062397196888923645, -0.015229647979140282, 0.00918214675039053, 0.021114502102136612, 0.018216433003544807, -0.020552631467580795, -0.015377508476376534, -0.004572590813040733, 0.019000094383955002, -0.024086501449346542, -0.0014998615952208638, 0.002110710833221674, -0.017639776691794395, 0.011865817941725254, 0.016604751348495483, -0.015865448862314224, -0.005267535801976919, -0.00723408255726099, 0.009137788787484169, 0.0032806582748889923, 0.0358709953725338, -0.011836245656013489, 0.003221514169126749, -0.025180669501423836, 0.002143979538232088, -0.04287959262728691, -0.03918307274580002, -0.013588394969701767, 0.0004495888133533299, -0.017210980877280235, 0.0075926450081169605, -0.031376030296087265, 0.02799002267420292, -0.00011840404476970434, 0.01968025416135788, -0.001066445023752749, -0.006882913876324892, -0.028744112700223923, 0.014889568090438843, 0.0029442752711474895, -0.006712873931974173, 0.014623419381678104, -0.01728491112589836, -0.004103133454918861, -0.0075926450081169605, 0.03193790093064308, 0.0205378457903862, 0.006842251867055893, -0.013174384832382202, 0.015274005942046642, -0.025860829278826714, 0.020656133070588112, 0.02764994278550148, -0.0242195762693882, -0.008509380742907524, -0.01252379734069109, -0.0005443120608106256, 0.0016477222088724375, -0.004746327176690102, -0.0006598281906917691, 0.0102689228951931, -0.004376675467938185, -0.018586084246635437, 0.009877092204988003, -0.008221052587032318, -0.005870067980140448, 0.008479808457195759, 0.0003488587390165776, 0.012959986925125122, 0.019961189478635788, 0.029897425323724747, -0.006646336521953344, 0.029350340366363525, -0.009677479974925518, -0.017728492617607117, 0.00816930178552866, -0.007141669746488333, 0.027043715119361877, 0.008184087462723255, 0.005788744892925024, -0.009315221570432186, -0.012886056676506996, -0.005666759796440601, 0.0008991776267066598, 0.005286018364131451, -0.0054412721656262875, 0.004003327339887619, -0.01452730968594551, -0.04551151022315025, 0.011074763722717762, 0.012457260861992836, 0.0029719993472099304, 0.005334073211997747, 0.021617228165268898, 0.016116810962557793, 0.0045615010894834995, -0.01085297204554081, 0.002299233339726925, -0.0012466501211747527, 0.01633860357105732, -0.02556510828435421, -0.017758065834641457, 0.023184550926089287, 0.006224933546036482, -0.02194252237677574, -0.013980225659906864, -0.01982811465859413, -0.018231218680739403, -0.006638943683356047, -0.00819887313991785, -0.007193421013653278, -0.013425747863948345, 0.0042731729336082935, 0.00788097269833088, -0.014327697455883026, -0.004790685139596462, -0.004986600484699011, -0.002033084165304899, 0.02096664160490036, -0.012058036401867867, 0.0223713181912899, 0.004639128223061562, 0.0006071528187021613, 0.014261160045862198, -0.0034858151338994503, -0.013632752932608128, -0.021173646673560143, -0.004398854449391365, -0.0018140655010938644, 0.00020088256860617548, 0.001258663833141327, 0.04678311198949814, -0.01787635311484337, -0.015835875645279884, 0.002033084165304899, 0.0014850754523649812, -0.015407080762088299, 0.011133907362818718, 0.017551060765981674, 0.019488034769892693, -0.00432122778147459, 0.010675539262592793, -0.030370580032467842, 0.012442474253475666, 0.00799926184117794, -0.010172813199460506, 0.020301267504692078, 0.024130860343575478, 0.01882266253232956, -0.013174384832382202, 0.02844838984310627, -0.00031697627855464816, 0.009204326197504997, -0.01275298185646534, 0.0019517607288435102, 0.001125589245930314, 0.014512524008750916, 0.0017345903906971216, 0.009647907689213753, -0.008553738705813885, 0.003252934431657195, -6.98872609063983e-05, 0.005322983488440514, -0.02473708800971508, -0.004077257588505745, -0.01112651452422142, 0.015643658116459846, -0.00616209302097559, 0.012183718383312225, -0.012124573811888695, 0.024633586406707764, -0.011311340145766735, -0.01959153637290001, 0.027413366362452507, 0.015688015148043633, 0.002781628631055355, -0.006272988393902779, -0.0022659646347165108, -0.0043101380579173565, 0.007507625035941601, -0.008989928290247917, -0.0179354976862669, -0.010764256119728088, 0.015362722799181938, 0.017462342977523804, 0.005714814644306898, -0.005334073211997747, 0.0059144264087080956, -0.004746327176690102, -0.006646336521953344, 0.006694391369819641, -0.006753535475581884, -0.0050013866275548935, -0.014963498339056969, -0.034835971891880035, 0.01188060361891985, -0.02504759468138218, -0.0033083821181207895, -0.029128549620509148, -0.001774327945895493, 0.007718326523900032, -0.015155717730522156, 0.01549579668790102, -0.0006787728634662926, -0.02108493074774742, -0.006956844124943018, 0.010150633752346039, -0.011052584275603294, 0.002898068865761161, -0.008028834126889706, 0.010779041796922684, -0.010231957770884037, 0.0013307458721101284, -0.010808614082634449, -0.0205378457903862, 0.005422789603471756, 0.00586267514154315, 0.009463082067668438, -0.024692729115486145, 0.007337585091590881, -0.0163977462798357, -0.012191111221909523, 0.007271047681570053, -0.010919509455561638, 0.007004898507148027, 0.03013400174677372, 0.0017891139723360538, -0.01264208648353815, 0.007566769141703844, 0.015074393711984158, 0.007285833824425936, -0.016264673322439194, 0.022179098799824715, 0.00667590880766511, 0.015096573159098625, -0.013499678112566471, -0.01916274055838585, 0.02673320658504963, 0.00879770889878273, -0.0076222168281674385, -0.006043804343789816, -0.02099621295928955, -0.006365401204675436, -0.024914521723985672, -0.011023011989891529, -0.0334165096282959, 0.013691896572709084, 0.01925145834684372, 0.007544590160250664, -0.009943629615008831, -0.017758065834641457, -0.013721468858420849, 0.009049071930348873, -0.00408465089276433, -0.0032030316069722176, 0.019783755764365196, -0.0016421774635091424, -0.024544868618249893, -0.012982165440917015, -0.007962296716868877, -0.0014296277659013867, 0.005921819247305393, 0.0012235469184815884, 0.002014601370319724, 0.005345162935554981, 0.011481380090117455, -0.0109564745798707, -0.0009537012665532529, -0.0009393772343173623, 0.009714445099234581, 0.003219665726646781, 0.009500047191977501, -0.007829221896827221, -0.000487478100694716, 0.001821458456106484, -0.000637649092823267, 0.010372425429522991, -0.02274096943438053, -0.007644395809620619, -0.00699750566855073, 0.001591350301168859, 0.025831257924437523, -0.03297292813658714, -0.0009546253713779151, -0.005644580814987421, 0.011607062071561813, -0.0037279368843883276, -0.012656872160732746, 0.021691158413887024, 0.0006718418444506824, 0.010557251051068306, 0.011074763722717762, -0.002197579015046358, -0.01491174753755331, 0.0006265595438890159, -0.004125312436372042, 0.018009427934885025, -0.0012780706165358424, 0.01885223388671875, 0.012723409570753574, 0.0047500235959887505, 0.0035375661682337523, 0.0018732097232714295, 0.006128824315965176, -0.026319196447730064, 0.007186028175055981, 0.008723778650164604, -0.004062471445649862, -0.010372425429522991, -0.013736255466938019, 0.02173551730811596, 0.0007795029086992145, -0.007278440985828638, 0.0055854362435638905, -0.0064984760247170925, -0.013595787808299065, -0.01602809503674507, -0.006021625362336636, -0.01236854400485754, -0.0006140837795101106, 0.012272434309124947, -0.020744850859045982, 0.027369007468223572, -0.01106736995279789, -0.0038406806997954845, -0.013544036075472832, 0.014741707593202591, 0.007163848727941513, 0.001254043192602694, 0.005452361889183521, -0.019325388595461845, 0.010690325871109962, 0.001049810671247542, 0.011074763722717762, -0.0057000285014510155, 0.0006394973606802523, 0.002637464553117752, -0.007052953355014324, 0.011961927637457848, -0.003958968911319971, -0.0048276507295668125, -0.05249053239822388, -0.027354221791028976, 0.013130026869475842, -0.0016967010451480746, -0.03264763206243515, 0.014076334424316883, 0.0337122306227684, 0.01551058329641819, 0.022696610540151596, 0.0168561153113842, 0.008465022780001163, 0.021114502102136612, 0.011658812873065472, -0.0045688943937420845, -0.009751410223543644, -0.011348305270075798, -0.0036484617739915848, 0.03152389079332352, 0.011547917500138283, -0.011703170835971832, 0.03356437012553215, -0.0007217448437586427, -0.011481380090117455, 0.008716385811567307, 0.00858331099152565, 0.00853895302861929, 0.022770540788769722, 0.010719898156821728, -0.005803531035780907, -0.017920712009072304, -0.0017863415414467454, -0.004631734918802977, -0.022386103868484497, -0.0009176601888611913, 0.0138693293556571, -0.006224933546036482, 0.013721468858420849, -0.006180575583130121, -0.030666301026940346, -2.6698668079916388e-05, -0.008354127407073975, -0.0017807967960834503, -0.0068311626091599464, 0.006650032941251993, 0.01768413558602333, 0.01480824500322342, 0.005918122828006744, 0.0183938667178154, 0.0005429258453659713, -0.01333703100681305, -0.007178634870797396, 0.015421866439282894, -0.006557620130479336, 0.003361981827765703, -0.0023787084501236677, 0.01043896283954382, -0.010845579206943512, 0.010453748516738415, 0.01108215656131506, 0.011651420034468174, -0.015333150513470173, -0.001757693593390286, 0.02145458199083805, 0.017122264951467514, 0.000503650342579931, 0.009551798924803734, -0.01112651452422142, -0.02639312669634819, 0.011030404828488827, 0.005762869026511908, -0.022400889545679092, 0.010572036728262901, 0.01198410615324974, -0.023805566132068634, -0.0015469921054318547, -0.012590334750711918, -0.019384533166885376, -0.00016830701497383416, -0.027664728462696075, 0.000981425167992711, 0.015673229470849037, -0.007559376303106546, 0.017728492617607117, 0.004979207646101713, -0.011599668301641941, -0.003520931815728545, -0.00483504356816411, 0.016634324565529823, 0.005685242358595133, -0.0007485445821657777, -0.017181407660245895, 0.0033786159474402666, 0.0025117830373346806, -0.014704742468893528, 0.004395158030092716, 0.005607615690678358, 0.0023158674594014883, 0.0006043804460205138, -0.0011810370488092303, 0.02170594409108162, 0.011717957444489002, 0.0076665752567350864, -0.016634324565529823, -0.002245633862912655, -0.020286481827497482, -0.010564643889665604, 0.002657795324921608, 0.014142871834337711, -0.00404768530279398, 0.0038554666098207235, 0.011326126754283905, 0.0028001111932098866, -0.0027095465920865536, 0.01719619520008564, -0.012316793203353882, 0.015643658116459846, 0.009965808130800724, 0.000991590553894639, 0.007285833824425936, 0.011518345214426517, -0.015747159719467163, -0.0062101478688418865, -0.00742630148306489, -0.01168099232017994, -0.010631181299686432, 0.004860918968915939, -0.009337401017546654, 0.006402366328984499, -0.00853895302861929, -0.008036226965487003, -0.02624526619911194, -0.0025043899659067392, -0.0021513726096600294, -0.0004953332245349884, -0.005411699879914522, 0.0021051662042737007, 0.01642731949687004, -0.023864710703492165, 0.019428890198469162, 0.014593847095966339, 0.013085667975246906, 0.017240552231669426, 0.006173182278871536, 0.012161538936197758, -0.013943260535597801, 0.0041290088556706905, 0.012442474253475666, 0.007263654842972755, -0.018497368320822716, 0.01074207667261362, -0.020375199615955353, 0.022090382874011993, -0.03536827117204666, -0.01491174753755331, -0.002434156136587262, 0.015044822357594967, -0.024692729115486145, 0.022356530651450157, -0.03791147097945213, 0.014719528146088123, -0.0016052122227847576, -0.020670920610427856, 0.008672027848660946, -0.01894094981253147, -0.009906664490699768, -0.003596710506826639, 0.010616395622491837, -0.01588023453950882, -0.0069753266870975494, 0.00832455512136221, 0.02725072018802166, 0.03335736319422722, -0.013329638168215752, -0.005873764865100384, 0.019902044907212257, 0.007607430685311556, 0.015000463463366032, 0.0015266613336279988, 0.006343222223222256, -0.03291378170251846, -0.0051085855811834335, -0.007163848727941513, -0.00470566563308239, -0.0076222168281674385, 0.005149247590452433, 0.003735329955816269, -0.018778303638100624, 0.019059238955378532, 0.01285648439079523, -0.018172074109315872, 0.00470566563308239, -0.016116810962557793, 0.011289161629974842, -0.002818593755364418, -0.003800018923357129, -0.019074024632573128, -0.0020219944417476654, 0.027058500796556473, 0.01673782616853714, 0.004036596044898033, 0.01091211661696434, 0.0036687925457954407, -0.005781351588666439, 0.00701968465000391, -0.008073192089796066, 0.010816006921231747, 0.027295077219605446, -0.010779041796922684, 0.000686165876686573, 0.0015081787714734674, 0.008827281184494495, 0.004798078443855047, 0.0179354976862669, -0.015481011010706425, 0.014505130238831043, 0.011111728847026825, 0.011791887693107128, 0.0021957308053970337, -0.002728029154241085, 0.03184918686747551, 0.004997690208256245, -0.003709454322233796, -0.0033878572285175323, 0.007208207156509161, -0.015318363904953003, -0.007644395809620619, 0.017432771623134613, -0.030045285820961, -0.0070381672121584415, 0.0076222168281674385, -0.02188337780535221, 0.004938546102494001, 0.014845210127532482, 0.011089549399912357, 0.03619628772139549, 0.03776361048221588, 0.001935126376338303, 0.020434342324733734, -0.0003038074355572462, -0.006010535638779402, -0.009854912757873535, 0.026141764596104622, 0.014298126101493835, -0.005485630594193935, -0.022046023979783058, 0.00021081695740576833, -0.005481933709233999, -0.012398116290569305, 0.03912393003702164, -0.02124757692217827, 0.005566953681409359, 0.010682933032512665, 0.004262083675712347, 0.018778303638100624, -0.011851031333208084, 0.015303578227758408, -0.02056741714477539, 0.009899270720779896, -0.006435635033994913, -0.003467332338914275, -0.006627853959798813, -0.0015017098048701882, -0.0065280478447675705, -0.010690325871109962, 0.00014843823737464845, 0.016175955533981323, -0.009108216501772404, 0.002358377445489168, 0.007452177349478006, -0.0038332876283675432, -0.01833472214639187, 0.004062471445649862, -0.030237505212426186, 0.0050087799318134785, 0.008886425755918026, -0.0012836153618991375, -0.0015728677390143275, 0.020656133070588112, 0.03501340374350548, -0.011045191437005997, 0.002448942046612501, -0.006853341590613127, 0.012915628962218761, -0.013728861697018147, -0.0032122728880494833, 0.013093061745166779, 0.006073376629501581, 0.04533407837152481, -0.01489696092903614, -0.012531191110610962, 0.010431569069623947, -0.012996952049434185, -0.0002737732429523021, 0.016811756417155266, -0.002020146232098341, 0.004103133454918861, -0.006191664841026068, 0.014238981530070305, 0.0023398948833346367, 0.010771648958325386, 0.021779874339699745, 0.00924129132181406, -0.0059144264087080956, 0.019695039838552475, -0.002192034153267741, 0.011074763722717762, 0.01296737976372242, 0.020715277642011642, 0.027916092425584793, 0.007651789113879204, 0.01302652433514595, -0.015333150513470173, 0.008834674023091793, 0.005903336685150862, 0.015200075693428516, -0.0076222168281674385, 0.004816561006009579, 0.013950653374195099, 0.008908604271709919, -0.007733112666755915, 0.001173643977381289, 0.008132336661219597, 0.018586084246635437, -0.01851215399801731, -0.010320673696696758, -0.0013094909954816103, -0.00012984014756511897, 0.005899640265852213, 0.01814250275492668, -0.013810185715556145, -0.005437575746327639, 0.0064910827204585075, 0.01982811465859413, -0.003171611111611128, -0.01999076083302498, -0.00691248569637537, -0.010512893088161945, 0.005045745056122541, -0.004957028664648533, 0.012619907036423683, -0.010024952702224255, 0.004879401531070471, 0.028330102562904358, -0.0011856576893478632, -0.004210332408547401, -0.01664911024272442, -0.007385639939457178, 0.008309769444167614, 0.02510673925280571, 0.012013678438961506, -0.0035375661682337523, -0.009581370279192924, 0.0013704834273084998, 0.01922188512980938, -0.02799002267420292, 0.007411515340209007, 0.012863877229392529, 0.02439700812101364, -0.0024323079269379377, -0.001757693593390286, 0.019887259230017662, -0.0013529249699786305, -0.007463266607373953, 0.0013048703549429774, -0.006546530872583389, -0.009603549726307392, -0.006494779605418444, -0.01636817492544651, 0.0031050739344209433, 0.0030939842108637094, 0.00744848046451807, -0.001173643977381289, -0.02316976524889469, -0.009477867744863033, -0.0005757324397563934, 0.024071715772151947, 0.009943629615008831, -0.00918214675039053, -0.013802792876958847, -0.02587561495602131, -0.014630812220275402, -0.004073561169207096, 0.009973200969398022, -0.01590980775654316, -0.0031161634251475334, -0.017861567437648773, 0.0006025321781635284, 0.0034543946385383606, 0.014224194921553135, -0.0334165096282959, 0.001986877527087927, 0.000393910042475909, -0.009263469837605953, -0.005703724920749664, 0.0015534610720351338, -0.011215231381356716, 0.001388041884638369, -0.022548750042915344, -0.004483874421566725, 0.00010252057109028101, -0.012568156234920025, -0.012501618824899197, 0.0349542610347271, -0.016161169856786728, -0.01168099232017994, -0.010505499318242073, 0.02841881848871708, -0.002068200847133994, 0.011119121685624123, 0.003973755054175854, -0.022755755111575127, -0.01362536009401083, 0.004738933872431517, 0.021868592128157616, -0.015244433656334877, 0.0021421313285827637, 0.008782923221588135, 0.003441456938162446, 0.017373627051711082, 0.0013797248248010874, 0.020345626398921013, -0.010217171162366867, -0.00462064566090703, -0.009788375347852707, 0.007696147076785564, -0.004361889325082302, -0.018098143860697746, 0.004291655495762825, 0.009500047191977501, -0.02387949638068676, 0.0124129019677639, -0.0028315316885709763, 0.0019055542070418596, -0.00440624775364995, 0.001666204771026969, -0.0011385270627215505, -0.005496719852089882, -0.003724240232259035, -0.01264208648353815, 0.02522502839565277, -0.013943260535597801, 0.01258294191211462, 0.008612883277237415, 0.020552631467580795, -0.011503559537231922, -0.015185290016233921, 0.022578323259949684, -0.02127714827656746, 0.019975975155830383, 0.012834304943680763, -0.012679051607847214, -0.027354221791028976, 0.008886425755918026, 0.015643658116459846, 0.025417247787117958, -0.014948712661862373, 0.014275946654379368, 0.014202016405761242, 0.01842343807220459, -0.002785325050354004, -0.0008418816141784191, 0.02305147610604763, -0.01931060291826725, 0.01031328085809946, -0.011200444772839546, 0.020493486896157265, -0.024500511586666107, 0.006413456052541733, -0.004908973816782236, -0.03383051976561546, -0.013558822683990002, 0.025358103215694427, -0.001468441216275096, 0.008775530382990837, -1.3587586181529332e-05, 0.003430367214605212, 0.01622031442821026, -0.011074763722717762, 0.0009130395483225584, 0.024145646020770073, -0.02231217361986637, -0.008531560190021992, -0.011577489785850048, 0.00862766895443201, 0.014800852164626122, 0.011917568743228912, -0.02835967391729355, 0.005921819247305393, -0.020744850859045982, -0.009270863607525826, -0.02739858068525791, -0.021543297916650772, 0.018526939675211906, 0.006694391369819641, 0.008960356004536152, -0.014128086157143116, 0.008302375674247742, -0.007607430685311556, -0.0033250164706259966, -0.0029461237136274576, 0.009056465700268745, 0.01409851387143135, 0.015259220264852047, -0.0004897884209640324, 0.002326957182958722, -0.027073286473751068, 0.02387949638068676, -0.02096664160490036, -0.012279828079044819, 0.014002404175698757, -0.00605489406734705, 0.0009028741624206305, -0.00010119214130099863, 0.01198410615324974, -0.0034488497767597437, 0.003944183234125376, 0.00967008713632822, 0.00838369969278574, -0.00521948141977191, -0.00049256079364568, 0.001296553178690374, -0.009721837937831879, -0.01355142891407013, 0.002437852555885911, -0.0022012756671756506, -0.015037428587675095, 0.021779874339699745, -0.01851215399801731, 0.008827281184494495, 0.0018066724296659231, -0.014379449188709259, 0.005796137731522322, -0.0002309167612111196, -0.0007702616276219487, 0.014926533214747906, -0.026526201516389847, -0.0023232605308294296, 0.007237779442220926, 0.025860829278826714, 0.007537196855992079, -0.01744755730032921, -0.01252379734069109, 0.0060585904866456985, -0.005463451147079468, -0.0021680069621652365, -0.006431938614696264, 0.02547639235854149, 0.001966546755284071, 0.004957028664648533, 0.019207099452614784, 0.018896592780947685, 0.01673782616853714, -0.009817947633564472, 0.016042880713939667, -0.009529619477689266, 0.02062656171619892, 0.005359949078410864, 0.000824785209260881, -0.004287959076464176, 0.007563072722405195, 0.008043619804084301, -0.011814066208899021, 0.014623419381678104, 0.0066426401026546955, -0.007200813852250576, -0.01913316920399666, -0.009507440030574799, 0.028551893308758736, 0.009463082067668438, 0.024234361946582794, 0.00041655119275674224, 0.0043471031822264194, -0.033800944685935974, -0.013699290342628956, -0.01344053354114294, -0.014830424450337887, 0.0176249910145998, -0.0009250532602891326, 0.02182423323392868, 0.026718420907855034, 0.0030034196097403765, 0.010498106479644775, -0.009233898483216763, 0.005382128059864044, 0.010172813199460506, 0.001098789507523179, 0.01576194539666176, 0.012124573811888695, -0.0011985955061390996, 0.004772202577441931, 0.009951022453606129, 0.011333519592881203, -0.001280842931009829, 0.008435450494289398, -0.01063857413828373, 0.012671658769249916, -0.02247481979429722, 0.0062471129931509495, 0.01361057348549366, 0.009381758980453014, 0.02890675887465477, 0.014416414313018322, -0.0208483524620533, -0.018438223749399185, 0.0066796052269637585, 0.0016218465752899647, 0.0008340265485458076, -0.009130395948886871, -0.013093061745166779, 0.02170594409108162, -0.01485260296612978, -0.003154976759105921, 0.010328066535294056, -0.01145180780440569, -0.03613714501261711, 0.0016107570845633745, 0.003580076154321432, -0.015377508476376534, 0.0006930968374945223, 0.016323816031217575, -0.010675539262592793, 0.011170872487127781, -0.010934296064078808, 0.00794011726975441, 0.0014933926286175847, -0.029039833694696426, -0.0038924317341297865, -0.007322798948734999, 0.021528512239456177, 0.0006542833871208131, 0.00693466467782855, -0.026585346087813377, -0.006513262167572975, 0.012272434309124947, -0.0036207379307597876, 0.005289715249091387, -0.006871824152767658, 0.002095924923196435, -0.014919140376150608, -0.01166620571166277, -0.013788006268441677, 0.012937807478010654, -0.003848073538392782, 0.003988541197031736, -0.00859809760004282, 0.02308104932308197, -0.009640514850616455, -0.0031013772822916508, 0.010631181299686432, -0.014046762138605118, 0.0011422235984355211, 0.015732374042272568, 0.01324092224240303, -0.00021081695740576833, 0.003973755054175854, -0.010801221244037151, 0.0012568156234920025, 0.0005752703873440623, -0.020360412076115608, -0.015133538283407688, -0.014335091225802898, 0.00537103833630681, 0.018837448209524155, 0.019961189478635788, 0.02056741714477539, 0.009559191763401031, -0.005674152635037899, 0.0011939748656004667, -0.015155717730522156, 0.0049718148075044155, -0.006990112829953432, -0.0016005915822461247, 0.040720824152231216, 0.0024286112748086452, -0.030341006815433502, -0.013189170509576797, -0.00896774884313345, 0.00014162278966978192, 0.0031605216208845377, 0.011370484717190266, -0.005389520898461342, -0.009507440030574799, 0.020803995430469513, 0.0012512708781287074, 0.019783755764365196, -0.013152205385267735, 0.028729325160384178, -0.005814620293676853, -0.0028259868267923594, -0.0036410687025636435, 0.013898901641368866, 0.014024583622813225, -0.004472784698009491, -0.015259220264852047, -0.006380187347531319, 0.014357269741594791, -0.053200263530015945, 0.015103965997695923, 0.020582202821969986, -0.012361151166260242, -0.00044774054549634457, 0.0030459295958280563, 0.013300065882503986, -0.013758433982729912, 0.009588764049112797, 0.009921450167894363, -0.0021033177617937326, -0.009899270720779896, -0.016974404454231262, -0.011473987251520157, -0.005034655332565308, 0.011961927637457848, -0.002761297859251499, 0.008738565258681774, -0.0010470382403582335, -0.002395342569798231, -0.0021033177617937326, -0.007925331592559814, -0.0007910545100457966, -0.008782923221588135, 0.012826912105083466, 0.010512893088161945, 0.0038295909762382507, 0.014941319823265076, -0.014564274810254574, -0.018290363252162933, 0.009803161956369877, -0.01383975800126791, 0.004010720178484917, 0.012058036401867867, 0.006372794508934021, -0.003476573619991541, -0.004295351915061474, -0.009906664490699768, 0.00197024317458272, -0.00042579250293783844, -0.008339340798556805, -0.02899547480046749, -0.008745958097279072, 0.012383329682052135, -0.01879308931529522, 0.026067834347486496, 0.011119121685624123, -0.005215784534811974, 0.0016745219472795725, 0.0038295909762382507, -0.02139543741941452, 0.005182516295462847, -0.010431569069623947, 0.0023010815493762493, 0.00962572917342186, -0.007222993299365044, -4.8401263484265655e-05, -0.023347197100520134, 0.015377508476376534, -0.001929581630975008, 0.023864710703492165, 0.014970892108976841, -0.01253858394920826, 0.007570465561002493, -0.008819888345897198, 0.009810554794967175, -0.016102025285363197, 0.014882175251841545, 0.009019500575959682, 0.03211533650755882, -0.03108031116425991, -0.009159968234598637, -0.004395158030092716, 0.014364662580192089, -0.0014850754523649812, 0.007977082394063473, 0.012486832216382027, 0.003862859681248665, 0.011311340145766735, 0.006579799111932516, -0.010401997715234756, 0.005274929106235504, 0.02596433088183403, 0.007770077791064978, -0.013810185715556145, -0.00011233944678679109, 0.007466963026672602, -0.010379818268120289, -0.009891877882182598, -0.004572590813040733, 0.024234361946582794, 0.02090749703347683, -0.0020663526374846697, 0.014031976461410522, 0.013285280205309391, 0.0022012756671756506, -0.0024988451041281223, -0.013699290342628956, -0.0013224288122728467, -0.02148415334522724, -0.011533130891621113, 0.007407818920910358, -0.03539784252643585, 0.012435081414878368, 0.011429629288613796, -0.007925331592559814, -0.033120788633823395, 0.005685242358595133, -0.000959246011916548, 0.04157841578125954, 0.017270125448703766, 0.006916182115674019, 0.0028500142507255077, 0.012863877229392529, 0.0060955556109547615, 0.022637465968728065, -0.0030773498583585024, 1.3479289918905124e-05, -0.0008903983980417252, 0.019902044907212257, -0.00036248963442631066, 0.0023121710401028395, -0.0024452456273138523, -0.025372888892889023, 0.02302190475165844, 0.02210516855120659, 0.018600869923830032, 0.0030255988240242004, -0.024456152692437172, 0.012915628962218761, -0.030030500143766403, 0.014076334424316883, 0.0011884300038218498, 0.005825710017234087, 0.0030163575429469347, 0.011887997388839722, -0.012205896899104118, 0.019029667600989342, -0.003800018923357129, -0.00618427200242877, 0.011303947307169437, -0.003058867296203971, 0.018290363252162933, 0.010047132149338722, -0.01446816511452198, -0.006845948286354542, 0.0031013772822916508, 0.0050383517518639565, 0.005489327013492584, 0.013544036075472832, -0.0062397196888923645, 0.0271324310451746, 0.02010904997587204, 0.017610205337405205, -0.0008806950645521283, 0.0045615010894834995, -0.014364662580192089, -0.015274005942046642, 0.011673598550260067, 0.015059608034789562, -0.009662694297730923, -0.008620276115834713, 0.016412533819675446, -0.0034174295142292976, -0.004805471282452345, 0.018127717077732086, 0.004439516458660364, 0.00832455512136221, -0.030045285820961, -0.012708623893558979, 0.0017835692269727588, 0.02339155599474907, 0.0010516588808968663, 0.010416783392429352, 0.0039146109484136105, -0.01922188512980938, 0.023184550926089287, 0.0013011738192290068, -0.001666204771026969, -0.008147122338414192, 0.005237963981926441, -0.0012928566429764032, 0.0017623142339289188, -0.011045191437005997, 0.011488772928714752, -0.01931060291826725, -0.0062101478688418865, 0.014460772275924683, 0.011688385158777237, 0.01258294191211462, 0.005016172770410776, 0.01876351796090603, 0.01830514892935753, 0.010535071603953838, 0.0019683949649333954, 0.012730802409350872, -0.005866371560841799, 0.006768321618437767, 0.019635895267128944, 0.0023325018119066954, 0.022504393011331558, 0.0011218927102163434, -0.005256446544080973, -0.0012466501211747527, -0.005249053239822388, -0.0003151280398014933, -0.005921819247305393, 0.020123835653066635, -0.0023288053926080465, -0.009123002178966999, 0.0037963225040584803, -0.005504113156348467, 0.025801684707403183, 0.025772113353013992, -0.003650309983640909, 0.006735052913427353, 0.0229923315346241, 0.005282321944832802, -0.012375936843454838, 2.9442175218719058e-05, 0.01043896283954382, -0.013861936517059803, 0.00017396730254404247, -0.016353389248251915, 0.004639128223061562, -0.0009786527371034026, -0.018216433003544807, 0.0017909621819853783, 0.014926533214747906, 0.017580632120370865, 0.006446724757552147, -0.0001621846604393795, 0.0006579799228347838, -0.0031198598444461823, 0.02419000305235386, 0.025091953575611115, -0.005881157703697681, 0.02424914762377739, -0.0003927548823412508, 0.00513446144759655, 0.009707052260637283, 0.0036484617739915848, -0.006857038009911776, 0.0057702623307704926, -0.015747159719467163, -0.024056928232312202, -0.009559191763401031, 0.009403937496244907, 0.0002624526678118855, -0.009293042123317719, -0.013802792876958847, 0.003803715342655778, -0.021779874339699745, 0.018926164135336876, 0.007799649611115456, -0.014165051281452179, -0.004624342080205679, -0.0011865817941725254, 0.015835875645279884, 0.017551060765981674, -0.019961189478635788, 0.0011237410362809896, 0.01366971805691719, 0.015274005942046642, -0.0002455873182043433, -0.015599299222230911, 0.007252565119415522, -0.021779874339699745, 0.0071527594700455666, -0.003095832420513034, -0.002243785420432687, 0.00504944147542119, 0.016161169856786728, -0.02271139621734619, -0.017403200268745422, -0.024559656158089638, -0.015954164788126945, -0.010572036728262901, 0.02350984513759613, 0.004450605716556311, -0.02002033405005932, 0.005415396764874458, -0.0017650866648182273, 0.012242862954735756, 0.020863138139247894, -0.0009329083259217441, -0.009211719036102295, -0.0008728399407118559, 0.002127345185726881, 0.02587561495602131, -0.006857038009911776, 0.018985308706760406, 0.0046058595180511475, -0.003825894556939602, 0.015407080762088299, 0.011156086809933186, 0.02510673925280571, 0.002578320214524865, -0.011584882624447346, -0.012383329682052135, -0.0058441925793886185, -0.011244802735745907, 0.008139729499816895, 0.01642731949687004, 0.0020127531606703997, -0.0010045283706858754, -0.03927179053425789, -0.015865448862314224, -0.0007892062421888113, 0.02810831181704998, -0.026407914236187935, -0.007389336358755827, 0.039035212248563766, 0.0006746142753399909, 0.0027132430113852024, 0.031553465873003006, -0.007540893740952015, 0.007836614735424519, 0.006742446217685938, -0.008745958097279072, 0.014372056350111961, -0.018068572506308556, -0.006650032941251993, 0.02862582355737686, 0.009344793856143951, 0.01042417623102665, -0.0075926450081169605, -0.005788744892925024, 0.0001122816902352497, 0.02164679951965809, -0.0009610942797735333, 0.01302652433514595, 0.0011477683437988162, 0.0017355144955217838, -0.012989559210836887, 0.006125127896666527, -0.01399501133710146, 0.0022844471968710423, -0.007688754238188267, -0.0075150178745388985, 0.0006930968374945223, -0.00410682987421751, -0.02127714827656746, -0.007337585091590881, 0.01673782616853714, -0.004132705274969339, 0.01443859376013279, -0.011008226312696934, 0.026836710050702095, -0.006010535638779402, -0.005030958913266659, -0.005452361889183521, 0.0005669532110914588, 0.005544774699956179, -0.01409851387143135, 0.0007295999093912542, 0.003751964308321476, 0.016161169856786728, 0.01679697073996067, 0.003204879816621542, 0.004291655495762825, 0.006143610458821058, 0.000562794622965157, 0.0023879497312009335, -0.023036690428853035, 0.012435081414878368, 0.018645228818058968, -0.0048941876739263535, 0.005030958913266659, -0.018955735489726067, -0.004110526293516159, 0.015200075693428516, -0.012302006594836712, 0.00504944147542119, 0.014601239934563637, -0.014593847095966339, -0.013736255466938019, -0.022016452625393867, -0.0026226784102618694, 0.015732374042272568, 0.04367803782224655, 0.02915812097489834, 0.015155717730522156, -0.006916182115674019, 0.008871639147400856, -0.02393864095211029, -0.0016634324565529823, 0.005581739824265242, -0.01624988578259945, 0.012568156234920025, 0.00492006354033947, -0.009987987577915192, 0.020242124795913696, 0.010860365815460682, 0.003295444417744875, 0.006797893904149532, -0.0029405788518488407, 0.003476573619991541, 0.003958968911319971, 0.012959986925125122, 0.0033897056709975004, 0.010512893088161945, -0.015983738005161285, -0.00039090661448426545, 0.00605489406734705, -0.0072266897186636925, 0.024870162829756737, 0.0011856576893478632, 0.003042232943698764, 0.0033952502999454737, 0.02359856106340885, 0.0038295909762382507, -0.025609465315937996, 0.009315221570432186, 0.011422235518693924, 0.00734128151088953, 0.029172908514738083, 0.004557804670184851, -0.001130209886468947, -0.013928473927080631, -0.03415581211447716, -0.009677479974925518, 0.0012762222904711962, -0.006413456052541733, -0.01630903035402298, -0.009507440030574799, -0.019354959949851036, 0.02256353572010994, -0.008487202227115631, 0.007888366468250751, 0.012398116290569305, 0.01448295172303915, -0.006014232058078051, -0.019532393664121628, -0.007326495833694935, -0.002502541756257415, 0.004953332245349884, -0.022947974503040314, -0.006069680210202932, 0.0008460402023047209, 0.005315590649843216, 0.007400426082313061, 0.007267351262271404, -0.01979854144155979, -0.010002773255109787, 0.006779411341995001, 0.010084097273647785, 0.007496535312384367, 0.008450236171483994, 0.007123187184333801, 0.025239814072847366, -0.014335091225802898, -0.012346364557743073, -0.01106736995279789, -0.007548286579549313, 0.0032399967312812805, -0.03214490786194801, -0.005899640265852213, -0.006446724757552147, -0.01830514892935753, 0.00650586886331439, -0.0021402831189334393, 0.004916367121040821, -0.00734128151088953, -0.008302375674247742, 0.019044453278183937, -0.006302560679614544, -0.0012605121592059731, 0.019724611192941666, 0.004624342080205679, 0.005603918805718422, -0.01146659441292286, 0.009004713967442513, 0.014460772275924683, 0.016589965671300888, 0.0005313742440193892, -0.0056630633771419525, -0.02382035180926323, 0.011015619151294231, 0.006942057982087135, -0.006768321618437767, 0.0015118751907721162, -0.007784863468259573, 0.02844838984310627, -0.0017512246267870069, -0.015007857233285904, -0.014941319823265076, -0.024042142555117607, 0.002256723353639245, 0.00419184984639287, 0.017063120380043983, 0.012945200316607952, -0.007681361399590969, 0.02988263964653015, -0.0050383517518639565, 0.00098512158729136, -0.0018907681806012988, 9.853526717051864e-05, 0.003312078770250082, 0.0076591819524765015, -0.004247297532856464, 0.0030145091004669666, 0.024544868618249893, 0.010993439704179764, -0.013433140702545643, -0.0034174295142292976, 0.005422789603471756, -0.010808614082634449, -0.006243416108191013, 0.001972091617062688, -0.007252565119415522, -0.02293318882584572, -0.016264673322439194, 0.029350340366363525, 0.003430367214605212, 0.00794011726975441, 0.000830792065244168, 0.001918492023833096, 0.025742540135979652, -0.0016264672158285975, -0.010949081741273403, 0.013484892435371876, 0.007171242032200098, 0.0021051662042737007, -0.011836245656013489, 0.009418724104762077, -0.018157288432121277, 0.0037704468704760075, 0.009906664490699768, -0.0004348027578089386, -0.011104335077106953, -0.013425747863948345, -0.016235100105404854, 0.006295167375355959, -0.0031475836876779795, 0.019961189478635788, -0.027975236997008324, -0.0035024492535740137, -0.009965808130800724, -0.005736993625760078, 0.00020481011597439647, 0.015274005942046642, 0.001949912402778864, -0.011030404828488827, 0.012612514197826385, -0.004938546102494001, -0.007962296716868877, 0.018985308706760406, -0.01667868159711361, -0.02050827257335186, -0.004775899462401867, -0.009795768186450005, -0.014512524008750916, 0.009189539588987827, 0.003179004183039069, 0.01768413558602333, 0.00554107828065753, 0.0037649020086973906, -0.03190832957625389, -0.01747713051736355, -0.008021440356969833, -0.0035763797350227833, 0.02379078045487404, 0.011377877555787563, -0.03184918686747551, 0.008649848401546478, -0.011170872487127781, 0.00774789834395051, 0.002927641151472926, -0.003548655891790986, 0.006979023106396198, 0.019325388595461845, -0.013802792876958847, 0.005489327013492584, -0.012265041470527649, 0.015259220264852047, 0.011059977114200592, -0.02384992502629757, -0.024352651089429855, -0.0002244478528155014, 0.011828852817416191, 0.0018454858800396323, -0.01962110958993435, 0.023376770317554474], "2cd9ecff-8914-42b5-802a-5b28162a87aa": [-0.01569249853491783, 0.004404442384839058, -0.01709825173020363, 0.02725941129028797, -0.007976128719747066, -0.005619197618216276, 0.01524937991052866, -0.005409098695963621, -0.010757077485322952, 0.05882776901125908, 0.036824654787778854, 0.003560225944966078, -0.022492071613669395, -0.007655249908566475, -0.005936256609857082, -0.005176079459488392, -0.021850313991308212, 0.007219771388918161, 0.004316582810133696, -0.009695122018456459, 0.047917891293764114, -0.01639537513256073, -0.014279103837907314, 0.0032603570725768805, 0.04098079726099968, 0.00802196841686964, -0.0007372570689767599, -0.00904572382569313, -0.06035576015710831, -0.006906532682478428, 0.04348670691251755, 0.007575029972940683, 0.03109467774629593, 0.012537190690636635, 0.02085711807012558, -0.037649769335985184, 0.0011545903980731964, 0.00964164175093174, 0.0027408392634242773, -0.009611082263290882, -0.007044052239507437, -0.00364808551967144, 0.014370783232152462, 0.01858040690422058, -0.016074497252702713, -0.014424262568354607, -0.03584674000740051, -0.01821368746459484, -0.023928385227918625, 0.011375915259122849, 0.0012825599405914545, 0.00929020345211029, 0.000781186914537102, -0.03603009879589081, 0.020887676626443863, -0.020948797464370728, 0.021254396066069603, 0.08067808300256729, 0.006853052880614996, -0.06882084906101227, -0.022828228771686554, -0.024371502920985222, 0.014004064723849297, 0.006364095024764538, -0.003430346492677927, 0.011192555539309978, -0.004075923934578896, 0.04712333530187607, -0.015623738057911396, 0.034410424530506134, 0.04015568271279335, -0.013186587952077389, -0.0351744219660759, 0.03749697282910347, -0.00021284478134475648, 0.040950238704681396, 0.03072795830667019, 0.023714466020464897, 0.02075015753507614, 0.004992720205336809, -0.009603441692888737, -0.00016927307297009975, 0.051768433302640915, -0.0001673630904406309, 0.018947124481201172, 0.02556333877146244, -0.0067269932478666306, -0.03896384686231613, 0.00458016199991107, -0.03239347040653229, 0.03606065735220909, 0.03896384686231613, -0.01210935227572918, -0.012185751460492611, -0.0255480594933033, 0.0265106949955225, -0.006169275380671024, -0.010084760375320911, 0.010023640468716621, -0.004110303707420826, -0.008969324640929699, 0.03966672345995903, -0.007387850899249315, 0.027305252850055695, -0.01989448070526123, -0.0033749565482139587, 0.02276710979640484, 0.02279767021536827, -0.019222164526581764, -0.01702185347676277, 0.020108399912714958, -0.04330334812402725, -0.003208787413313985, -0.008266447111964226, -0.025257740169763565, 0.01725105196237564, -0.06588710099458694, -0.013958225026726723, -0.008403967134654522, -0.018412327393889427, 0.014141583815217018, -0.03300466760993004, -0.016242574900388718, -0.03205731138586998, -0.016609294340014458, 0.020902957767248154, -0.022232312709093094, 0.032148994505405426, 0.030651558190584183, 0.04241711273789406, -0.02785532921552658, -0.05574122071266174, 0.03109467774629593, -0.0009296888019889593, -0.0039154845289886, 0.02071959711611271, -0.003449446288868785, 0.06454246491193771, -0.013232427649199963, 0.024692382663488388, -0.0280845295637846, -0.013553306460380554, -0.02133079618215561, 0.01842760667204857, 0.015830017626285553, -0.008480366319417953, -0.020322319120168686, 0.04956812411546707, -0.03361586853861809, 0.007777489256113768, -0.042753271758556366, -0.014103383757174015, -0.016242574900388718, 0.010520238429307938, 0.03144611418247223, -0.009282562881708145, -0.015012540854513645, 0.01344634685665369, 0.01211699191480875, 0.05066828057169914, -0.011803753674030304, -0.03245459124445915, -0.007429870776832104, 0.01271290984004736, 0.01204823236912489, 0.012483710423111916, 0.026923254132270813, 0.02013896033167839, -0.024020064622163773, 0.00506147975102067, -0.014508302323520184, -0.00028482763445936143, 0.049720924347639084, -0.027167731896042824, -0.01722049154341221, -0.038749925792217255, 0.009427722543478012, 0.024432623758912086, 0.04098079726099968, -0.018717925995588303, 0.01615089550614357, 0.004435002338141203, 0.02568557858467102, -0.0028554387390613556, -0.022018393501639366, 0.0040988437831401825, 0.030911317095160484, 0.0168843325227499, 0.027213571593165398, 0.04507582262158394, -0.012017672881484032, -0.010642478242516518, 0.008006688207387924, 0.004358602687716484, 0.014668742194771767, -0.014936140738427639, -0.025761978700757027, -0.00037841725861653686, -0.04266159236431122, 0.020643198862671852, 0.013278267346322536, -0.010879317298531532, 0.018366487696766853, 0.030941877514123917, -0.0306209996342659, 0.006173095665872097, -0.00850328616797924, -0.0419892743229866, -0.015860578045248985, -0.0024963601026684046, 0.01951248198747635, -0.017388571053743362, 0.018473446369171143, 0.007712549529969692, 0.018045607954263687, -0.0004877643077634275, -0.03926944360136986, -0.0041599636897444725, -0.016334256157279015, -0.004629821516573429, -0.01569249853491783, -0.03110995702445507, 0.01641065441071987, -0.026098135858774185, -0.049231965094804764, -0.015211179852485657, -0.0172357726842165, 0.040308479219675064, 0.015302859246730804, -0.0071662915870547295, 0.0715712383389473, -0.014546502381563187, 0.034471545368433, -0.04412846639752388, -0.010008360259234905, 0.04403678700327873, 0.058522168546915054, -0.01037507876753807, -0.005928616505116224, -0.0258078183978796, 0.016105055809020996, -0.007620869670063257, -0.04122527688741684, -0.014538862742483616, -0.025043820962309837, 0.004163783509284258, 0.005596277769654989, 0.011360635049641132, -0.0009230038267560303, 0.021361354738473892, 0.0013532296288758516, 0.037069134414196014, 0.005095859989523888, 0.02701493352651596, -0.037924811244010925, -0.0036022458225488663, 0.06497029960155487, -0.0005954401567578316, 0.008182407356798649, -0.0020188619382679462, 0.005512238014489412, -0.0007253196090459824, -0.04678717628121376, 0.03413538634777069, 0.010107680223882198, -0.06735397130250931, 0.0016674234066158533, -0.024386784061789513, 0.020215360447764397, 0.04831516742706299, 0.016059216111898422, 0.0012510450324043632, 0.017082972452044487, 0.03196563199162483, -0.001367554534226656, -0.02168223448097706, 0.011734993197023869, 0.0433950275182724, 0.005233379080891609, 0.01356858666986227, -0.024570142850279808, -0.03279075026512146, 0.02880268543958664, 0.021269675344228745, 0.042019832879304886, 0.0038505448028445244, -0.06362567096948624, -0.018519286066293716, -0.00789972860366106, -0.017327452078461647, -0.016242574900388718, 0.03318803012371063, 0.013522746041417122, 0.04192815348505974, 0.0026835394091904163, -0.005107319913804531, 0.00010976487828884274, -0.0008537666290067136, 0.026602374389767647, 0.019726401194930077, 0.013232427649199963, -0.051890674978494644, -0.003968964330852032, -0.014538862742483616, 0.05473274365067482, 0.005729977507144213, 0.036366257816553116, 0.02929164469242096, -0.011276595294475555, 0.027320532128214836, 0.019390244036912918, -0.020475119352340698, -0.019206883385777473, -0.02255319058895111, -0.023913105949759483, 0.033585306257009506, -0.013591506518423557, -0.02096407674252987, -0.009588162414729595, -0.023072708398103714, -0.024325663223862648, 0.032485149800777435, -0.08978492766618729, 0.03398258611559868, 0.027580291032791138, -0.042111512273550034, 0.005657397676259279, -0.022858789190649986, -0.0032278872095048428, 0.00019649046589620411, -0.009259643033146858, -0.020566798746585846, -0.025991177186369896, 0.026724614202976227, -0.02964308299124241, -0.015363979153335094, -0.031507235020399094, -0.04049183800816536, -0.000731049629393965, -0.030361240729689598, 0.007601770106703043, 0.007426050491631031, 0.031186357140541077, -0.03205731138586998, 0.03025428019464016, -0.031293317675590515, -0.015073660761117935, 0.011192555539309978, -0.017174651846289635, 0.009756240993738174, 0.0008222517208196223, -0.001555688795633614, 0.002383670536801219, -0.004889580421149731, 0.020230639725923538, -0.005126419942826033, -0.03227123245596886, -0.015539698302745819, -0.011910713277757168, 0.03896384686231613, -0.01879432611167431, 0.006367914844304323, 0.0067881131544709206, -0.02666349522769451, 0.0024925400502979755, 0.0351744219660759, 0.0013694645604118705, -0.0027771289460361004, -0.01844288781285286, -0.02542581968009472, -0.019726401194930077, -0.01042855903506279, -0.010459118522703648, -0.0010113409953191876, -0.0009339863318018615, -0.017816409468650818, 0.03624401614069939, 0.018351206555962563, 0.009931961074471474, 0.006734633352607489, 0.025731418281793594, -0.01761776953935623, -0.007471890654414892, 0.05595513805747032, 0.034165944904088974, -0.01236147154122591, 0.0023473806213587523, 0.01392002496868372, -0.01928328350186348, 0.000603557622525841, -0.04318111017346382, 0.014966701157391071, -0.02229343168437481, 0.00524483947083354, -0.02075015753507614, -0.022110072895884514, -0.018641525879502296, 0.005114959552884102, 0.014699301682412624, 0.012911548838019371, 0.010986276902258396, -0.0051187798380851746, -0.0075291902758181095, 0.0010676857782527804, 0.02255319058895111, -0.006115795578807592, 0.010764717124402523, 0.0018421877175569534, 0.01024519931524992, 0.015448018908500671, 0.000888623995706439, 0.005871316883713007, 0.04073631763458252, 0.0841619074344635, 0.008281727321445942, -0.008128928020596504, -0.0050882198847830296, 0.050576601177453995, 0.0018011229112744331, 0.014195064082741737, 0.03835264965891838, 0.0006217025220394135, 0.008182407356798649, 0.0472455732524395, -0.03221011161804199, 0.046023178845644, -0.033676985651254654, 0.02363806590437889, -0.030926598235964775, 0.002765669021755457, 0.006520714145153761, 0.03315746784210205, -0.015157699584960938, -0.0012176202144473791, -0.016487054526805878, -0.002209861297160387, -0.00726179126650095, -0.024768782779574394, 0.03728305175900459, 0.042600471526384354, -0.0007429870311170816, -0.021055756136775017, -0.004263103008270264, -0.012819869443774223, -0.05448826402425766, -0.03257683292031288, -0.042600471526384354, -0.021055756136775017, 0.010321599431335926, 0.003755045123398304, 0.01758721098303795, 0.000509490491822362, -0.06209767609834671, -0.027442771941423416, -0.0016884333454072475, 0.012567750178277493, 0.02918468415737152, 0.011834313161671162, 0.033432506024837494, -0.041041918098926544, -0.014355503022670746, -0.0067269932478666306, 0.014187423512339592, -0.0008189092623069882, 0.001679838402196765, -0.020811278373003006, -0.02794700860977173, -0.02927636355161667, 0.018183128908276558, 0.0390249639749527, -0.013071988709270954, 0.009779160842299461, -0.015302859246730804, 0.03572449833154678, -0.01344634685665369, -0.030086200684309006, 0.0012376750819385052, 0.005791096948087215, -0.026143977418541908, -0.0242339838296175, -0.006914172787219286, 0.010237559676170349, -0.011773193255066872, 0.005703237373381853, -0.00602793600410223, 0.0020971717312932014, -0.043089430779218674, -0.005008000414818525, 0.029352763667702675, 0.02953612245619297, 0.015830017626285553, -0.005936256609857082, 0.010482038371264935, -0.019252723082900047, -0.014416622929275036, 0.015478578396141529, 0.009511762298643589, -0.03221011161804199, 0.006276234984397888, -0.038994405418634415, 0.03364642709493637, 0.01663985475897789, -0.019955601543188095, -0.025716139003634453, -0.003972784150391817, 0.036335695534944534, -0.03777201101183891, 0.03086547739803791, -0.004117943812161684, -0.0011412204476073384, -0.015738338232040405, 0.014248543418943882, -0.04712333530187607, 0.012506630271673203, 0.027198292315006256, 0.013835985213518143, -0.025227179750800133, 0.00641757482662797, 0.025838376954197884, 0.007571210153400898, -0.019130485132336617, -0.018855445086956024, -0.043700627982616425, -0.003546855878084898, -0.014454822987318039, 0.00244097039103508, 0.013644985854625702, -0.011077956296503544, 0.03312690928578377, -0.03786369040608406, -0.0265106949955225, 0.028237327933311462, -0.008602606132626534, -0.005332699045538902, 0.01880960538983345, 0.0038849245756864548, 0.003201147308573127, -0.005229559261351824, 0.008724845014512539, 0.0009039039141498506, -0.022705990821123123, 0.030896037817001343, -0.018504006788134575, 0.0034685463178902864, 0.017510810866951942, 0.01404990442097187, 0.02955140359699726, -0.007338190916925669, -0.02507438138127327, -0.0015279939398169518, -0.02519662119448185, 0.017663609236478806, -0.011880152858793736, -0.0012596399756148458, 0.012231591157615185, 0.020673757418990135, 0.004671841394156218, 0.012323271483182907, -0.035143859684467316, -0.04376174509525299, 0.03920832648873329, 0.032974109053611755, 0.018610965460538864, 0.006990572437644005, 0.013973504304885864, -0.007777489256113768, 0.0015146239893510938, 0.012636509723961353, -0.036213457584381104, 0.01880960538983345, 0.018122008070349693, -0.015043100342154503, 0.0007950343424454331, 0.04134751483798027, 0.0070822518318891525, 0.01650233380496502, 0.005309779196977615, 0.008136567659676075, -0.006176915485411882, -0.009855560958385468, 0.025028541684150696, 0.004633641801774502, -0.019268004223704338, -0.01700657233595848, -0.025945337489247322, 0.04758173227310181, -0.053571466356515884, -0.010810556821525097, -0.007983768358826637, 0.007426050491631031, 0.005023280158638954, 0.03697745501995087, -0.02351582609117031, 0.028359567746520042, 0.002578489715233445, 0.027274692431092262, -0.019619442522525787, 0.017159372568130493, 0.03147667646408081, -0.0050805797800421715, 0.0011622303863987327, 0.016853773966431618, 0.010084760375320911, -0.002788588870316744, -0.022385111078619957, -0.0067804730497300625, 0.02159055508673191, -0.03060571849346161, -0.007384030614048243, -0.031278036534786224, -0.02831372804939747, -0.02288934960961342, 0.011620393954217434, -0.025746697559952736, 0.007338190916925669, -0.0024237805046141148, -0.0051722596399486065, -0.0048475610092282295, 0.009420082904398441, 0.008602606132626534, -0.0020188619382679462, -0.013285906985402107, 0.024891020730137825, -0.03039179928600788, 0.054304905235767365, 0.004236363340169191, 0.004499942064285278, 0.007368750870227814, 0.0024256904143840075, 0.03664129599928856, -0.004289843142032623, -0.0318433940410614, 0.015982815995812416, -0.010168800130486488, -0.02398950420320034, 0.026342615485191345, -0.02267543040215969, 0.0005238154553808272, -0.012682349421083927, -0.03386034443974495, -0.008319927379488945, -0.0037435851991176605, -0.005065300036221743, 0.052257392555475235, -0.002582309767603874, 0.0027943188324570656, -0.014034624211490154, 0.0025402898900210857, 0.04049183800816536, -0.0040377238765358925, -0.010390358977019787, -0.006142535712569952, -0.013835985213518143, 0.013606785796582699, 0.003879194613546133, -0.018748486414551735, -0.002970038214698434, 0.019099924713373184, 0.01578417792916298, 0.018381766974925995, 0.022155912593007088, -0.006501614116132259, 0.007681989576667547, 0.0061005158349871635, -0.005947716534137726, 0.00026883144164457917, 0.05027100071310997, -0.0033348468132317066, 0.02230871096253395, -0.011077956296503544, 0.026678774505853653, -0.0006899847649037838, 0.0024562503676861525, -0.000777844397816807, -0.0191610436886549, 0.001740003121085465, -0.0028516186866909266, -0.005237199366092682, 0.031660035252571106, -0.003755045123398304, -0.02050567977130413, -0.028542926535010338, -0.009840280748903751, 0.007907369174063206, -0.019436083734035492, -0.002903188578784466, -0.026434294879436493, 0.03340194746851921, -0.030697397887706757, 0.004599262028932571, 0.020093120634555817, 0.008304647170007229, -0.013400507159531116, 0.012124632485210896, 0.024860462173819542, -0.02881796658039093, 0.0016970282886177301, -0.02530357986688614, 0.011528714559972286, -0.01966528221964836, -0.025532778352499008, -0.007299991324543953, 0.028634605929255486, -0.036366257816553116, 0.04082799702882767, 0.003040707902982831, -0.011085595935583115, -0.008572045713663101, -0.014286743476986885, 0.04797900840640068, 0.0075215501710772514, 0.03835264965891838, 0.0022671609185636044, 0.025395259261131287, 0.026327336207032204, 0.02447846345603466, 0.01326298713684082, 0.04290607199072838, -0.01734273135662079, 0.018274808302521706, -0.0026529794558882713, 0.030208440497517586, -0.008656085468828678, -0.032485149800777435, 0.028848525136709213, 0.013148387894034386, -0.02507438138127327, -0.012201031669974327, -0.006566553842276335, 0.010886956937611103, 0.011742633767426014, -0.004488482140004635, -0.007697269320487976, -0.000915363896638155, -0.014019344933331013, 0.006375554949045181, -0.001320759765803814, 0.022690709680318832, -0.014599982649087906, -0.014179783873260021, 0.043822865933179855, -0.03373810648918152, 0.01109323650598526, -0.03039179928600788, 0.004335682839155197, 0.001870837644673884, 0.03251571208238602, -0.02159055508673191, -0.011345354840159416, -0.0025402898900210857, 0.03327970951795578, -0.027580291032791138, 0.019802801311016083, 0.0065398141741752625, 0.008541486226022243, 0.004354782868176699, 0.013484546914696693, 0.01641065441071987, 0.004679481498897076, 0.023775584995746613, -0.008694285526871681, 0.009496482089161873, -0.02906244434416294, -0.01758721098303795, -0.011238395236432552, -0.00837340671569109, 0.017189931124448776, 0.009557601995766163, 0.014026984572410583, -0.004583981819450855, 0.024906301870942116, 0.03975840285420418, 0.020673757418990135, 0.006868332624435425, -0.004095023963600397, -0.01870264671742916, -0.0017896628705784678, -0.019084643572568893, -0.02084183692932129, -0.030422359704971313, -0.014026984572410583, -0.048162370920181274, 0.010741797275841236, -0.03603009879589081, 0.0027771289460361004, -0.014607622288167477, 0.024891020730137825, 0.0075521101243793964, -0.0024123203475028276, 0.02264486998319626, 0.0021372814662754536, -0.014928501099348068, 0.005538978148251772, -0.010604278184473515, 0.024493742734193802, -0.021422475576400757, 0.029979242011904716, 0.0168843325227499, -0.027916450053453445, -0.006772833410650492, 0.018626246601343155, -0.014974340796470642, 0.029857002198696136, 0.03039179928600788, -0.0016215835930779576, 0.0022480611223727465, -0.012934468686580658, -0.011139076203107834, -0.02446318231523037, -0.012865709140896797, 0.005065300036221743, -0.00046388941700570285, -0.011666233651340008, 0.004923960659652948, -0.01891656592488289, -0.008465086109936237, 0.012285071425139904, -0.01748025044798851, 0.019466642290353775, 0.015050739981234074, -0.0174955315887928, 0.00010343802568968385, 0.029994521290063858, 0.017144091427326202, -0.012017672881484032, 0.02894020639359951, 0.021865593269467354, 0.004503762349486351, 0.013469266705214977, -0.010176439769566059, -0.0009506987407803535, -0.01628841646015644, -0.005840756930410862, 0.011543994769454002, -0.02846652828156948, 0.03291298821568489, 0.0318433940410614, 0.011681513860821724, 0.00015852937940508127, 0.03703857213258743, -0.024188144132494926, -0.050332121551036835, 0.00023337719903793186, -0.017984488978981972, 0.014164503663778305, -0.010535518638789654, -0.003027338068932295, 0.019023524597287178, 0.009267283603549004, 0.06182263419032097, 0.029016604647040367, -0.015860578045248985, -0.02664821408689022, 0.029016604647040367, -0.007697269320487976, 0.0033978766296058893, -0.027427490800619125, 0.045503661036491394, -0.004033904056996107, -0.012460790574550629, 0.02232399210333824, -0.007746929302811623, -0.021789193153381348, 0.03410482406616211, -0.026449576020240784, -0.021605834364891052, 0.018244247883558273, -0.018855445086956024, 0.014431903138756752, 0.026067577302455902, 0.010069480165839195, -0.0012176202144473791, 0.008732485584914684, 0.003296646988019347, -0.02424926497042179, 0.00011071987682953477, -0.020062560215592384, 0.04073631763458252, 0.0016378185246139765, 0.008006688207387924, -0.016471775248646736, 0.03303522989153862, -0.009458282962441444, -0.0022308712359517813, -0.013897105120122433, 0.007479530293494463, -0.022736549377441406, 0.02615925669670105, 0.00726179126650095, 0.019619442522525787, -0.01615089550614357, 0.0017428681021556258, -0.014065184630453587, -0.012880989350378513, -0.033096350729465485, 0.04278383031487465, -0.0030196979641914368, -0.01065775752067566, -0.0015575988218188286, 0.01031395886093378, -0.0010132510215044022, -0.032118432223796844, -0.0650925412774086, -0.00977152120321989, 0.05928616598248482, -0.03205731138586998, 0.017067693173885345, -0.02145303599536419, -0.010581358335912228, -0.004797901026904583, -0.004717681556940079, 0.03945280238986015, 0.007915008813142776, 0.001498389057815075, 0.05855272710323334, 0.014057544060051441, 0.03926944360136986, 0.0058598569594323635, -0.018458167091012, -0.0038715547416359186, -0.02131551504135132, 0.022003112360835075, 0.04098079726099968, 0.008258807472884655, -0.0030865478329360485, 0.0041561434045434, -0.02049039863049984, 0.0014706942019984126, -0.008541486226022243, 0.026434294879436493, 0.004583981819450855, 0.01613561622798443, 0.013217147439718246, -0.010925156995654106, 0.019252723082900047, -0.022721270099282265, -0.009794441051781178, -0.006165455561131239, -0.02675517462193966, -0.00569177744910121, -0.006253315135836601, 0.0013455896405503154, -0.0053517986088991165, -0.013530386611819267, -0.034410424530506134, -0.03908608481287956, 0.0022958109620958567, 0.01786224916577339, -0.04040015861392021, 0.022018393501639366, 0.010634837672114372, 0.02699965238571167, 0.006879792548716068, -0.00010266209574183449, -0.01236147154122591, 0.017633050680160522, -0.005374718923121691, 0.00482082087546587, -0.018886005505919456, 0.010191719979047775, -0.011345354840159416, 0.0002845888666342944, -0.0035850557032972574, -0.004366242792457342, -0.00032517622457817197, 0.04376174509525299, -0.001458279206417501, 0.023576946929097176, 0.01879432611167431, -0.013721385970711708, -0.027167731896042824, 0.008151847869157791, -0.0012663250090554357, 0.04990428313612938, 0.010680677369236946, -0.009924320504069328, -0.01966528221964836, -0.005722337402403355, -0.021758634597063065, -0.005554257892072201, 0.01613561622798443, -0.02133079618215561, -0.04422014579176903, -0.01977224089205265, 0.01151343435049057, 0.03227123245596886, -0.030300119891762733, 0.02761085145175457, -0.04642045497894287, 0.03318803012371063, -0.0063946545124053955, -0.0026739893946796656, -0.0006474874098785222, -0.029199965298175812, 0.008297007530927658, -0.00765906972810626, -0.006998212076723576, -0.00018729863222688437, -0.009061004035174847, -0.026357896625995636, -0.011070316657423973, -0.008541486226022243, -0.03462434187531471, 0.03110995702445507, 0.025379979982972145, -0.02328662760555744, 0.011345354840159416, 0.004526682198047638, 0.0017992128850892186, 0.018183128908276558, -0.012858069501817226, -0.004175243433564901, 0.016303695738315582, 0.0017123082652688026, -0.0010848756646737456, -0.00527921924367547, 0.009129763580858707, -0.00028888636734336615, 0.02762613072991371, 0.012605950236320496, -0.004469382110983133, -0.012162831611931324, 0.00041088712168857455, -0.02087239734828472, -0.01163567416369915, 0.009259643033146858, 0.021514154970645905, 0.012216311879456043, 0.03276019170880318, -0.016456494107842445, 0.02978060208261013, -0.024035345762968063, -0.0008026743307709694, -0.014347863383591175, 0.023118548095226288, -0.0129039091989398, 0.003275637049227953, -0.11649426072835922, -0.02762613072991371, -0.011062676087021828, -0.005661217495799065, 0.02748861163854599, -0.013362307101488113, 0.01604393683373928, -0.01144467480480671, -0.004404442384839058, 0.02568557858467102, -0.023179668933153152, -0.027076052501797676, 0.03847488760948181, 0.004591621924191713, -0.00382953486405313, 0.00407210411503911, 0.0026338796596974134, 0.0026816294994205236, -0.01858040690422058, -0.005814016796648502, -0.02591477707028389, -0.002418050542473793, 0.02388254553079605, -0.01653289422392845, -0.009870841167867184, 0.016318975016474724, -0.025593899190425873, 0.020154239609837532, 0.0018259527860209346, -0.032974109053611755, 0.017312170937657356, -0.0077698491513729095, 0.0007759344298392534, 0.004740601405501366, 0.027198292315006256, 0.004274562932550907, -0.0004512357118073851, 0.009229083545506, -0.0016502335201948881, 0.005432018544524908, -0.0061921956948935986, 0.01929856278002262, -0.023531107231974602, 0.026480134576559067, 0.020413998514413834, 0.009076284244656563, -0.019955601543188095, -0.027809489518404007, 0.006772833410650492, 0.0023244607727974653, 0.00576053699478507, -0.018228968605399132, -0.03300466760993004, -0.017082972452044487, 0.014088104479014874, -0.021651674062013626, 0.005378538742661476, -0.020597359165549278, -0.009947240352630615, -0.0033042868599295616, 0.0390249639749527, 0.003531576134264469, -0.02000144124031067, 0.01746497116982937, -0.0036862853448837996, 0.00020222044258844107, 0.030101479962468147, 0.012567750178277493, 0.023317188024520874, 0.02279767021536827, 0.019206883385777473, 0.011268955655395985, -0.01748025044798851, -0.002992958063259721, 0.011192555539309978, -0.005584817845374346, 0.020765438675880432, -0.0017247231444343925, 0.025884216651320457, -0.01625785604119301, -0.025868937373161316, 0.007372570689767599, 0.022614311426877975, -0.004201983567327261, -0.013644985854625702, 0.0036328055430203676, 0.005928616505116224, -0.009061004035174847, -0.015402179211378098, 0.0027007292956113815, 0.007601770106703043, -0.004106483887881041, 0.0407668799161911, -1.484720723965438e-05, -0.006077595986425877, 0.01709825173020363, 0.014149224385619164, -0.008037248626351357, 0.014149224385619164, -0.015478578396141529, 0.00929020345211029, -0.03263795003294945, -0.005569538101553917, -0.020337600260972977, 0.003174407407641411, -0.0003769847680814564, -0.0019033075077459216, 0.03474658355116844, -0.00527921924367547, -0.012323271483182907, 0.015478578396141529, -0.001844097743742168, -0.016196735203266144, -0.004064464010298252, -0.032485149800777435, 0.008701925165951252, 0.020658478140830994, 0.019191604107618332, -0.01786224916577339, 0.014347863383591175, 0.00225952104665339, 0.025868937373161316, 0.0021105415653437376, -0.038536008447408676, 0.010764717124402523, -0.006134895607829094, -0.0008375316974706948, 0.01210935227572918, 0.008075447753071785, 0.03014732152223587, 0.0025632099714130163, 0.022018393501639366, -0.01385890506207943, 0.010260479524731636, -0.006134895607829094, 0.01440134271979332, 0.032729629427194595, -0.01856512576341629, -0.003657635534182191, -0.03217955306172371, 0.007861528545618057, 0.018641525879502296, -0.0019329123897477984, 0.007403130643069744, 0.00989376101642847, 0.010413278825581074, -0.006383194588124752, 0.0024467003531754017, -0.004648921545594931, -0.005313599016517401, -0.0054663983173668385, -0.0010734157403931022, 0.03544946014881134, 0.011620393954217434, -0.0028306087478995323, -0.013492186553776264, -0.018259527161717415, 0.007399310823529959, -0.002454340225085616, 0.0017314081778749824, -0.031873952597379684, 0.0049010408110916615, 0.03618289530277252, -0.013706105761229992, 0.01109323650598526, -0.0013904744992032647, -0.01278166938573122, -0.022461511194705963, 0.003031158121302724, 0.011077956296503544, -0.005393818486481905, -0.026098135858774185, -0.0290471650660038, 0.012506630271673203, -0.006169275380671024, -0.02049039863049984, 0.00635645492002368, -0.007594130001962185, 0.019970880821347237, -0.020795997232198715, 0.010627198033034801, 0.02061263844370842, -0.0027370192110538483, -0.0011326255043968558, 0.0011966102756559849, 0.0018058978021144867, -0.02096407674252987, 0.003946044482290745, -0.005359438713639975, 0.021865593269467354, 0.0018565126229077578, 0.013240067288279533, 0.002009312156587839, -0.0048399209044873714, 0.001431539305485785, 0.008510926738381386, 0.01663985475897789, 0.023561667650938034, -0.01602865569293499, 0.005298318807035685, -0.05170731619000435, -0.024631261825561523, -0.00756357004866004, 0.02990284189581871, -0.01560845784842968, 0.01965000294148922, -0.018992964178323746, -0.000754447013605386, 0.01891656592488289, -0.01090223714709282, -0.011979472823441029, -0.02701493352651596, 0.011238395236432552, 0.003147667506709695, -0.01453122217208147, 0.005978276487439871, -0.020673757418990135, -0.03535778075456619, 0.0013560946099460125, -0.009718041867017746, 0.031660035252571106, 0.001646413467824459, 0.0043624225072562695, -0.025639738887548447, 0.005844576749950647, 0.015073660761117935, 0.00037268726737238467, -0.06319782882928848, -0.012277431786060333, 0.015088940039277077, -0.011971832253038883, 0.023087989538908005, 0.0209946371614933, -0.011895433068275452, 0.008969324640929699, -0.013476906344294548, -0.009656921960413456, 0.004030084237456322, 0.02482990175485611, -0.010688317939639091, 0.0037034752313047647, -0.03327970951795578, -0.02822204865515232, -0.0070516918785870075, 0.038872167468070984, -0.0024123203475028276, -0.019925041124224663, -0.013843624852597713, 0.017388571053743362, 0.012674709782004356, 0.005985916126519442, 0.00488194078207016, 0.006211295258253813, 0.01296502910554409, -0.014966701157391071, 0.0017084882128983736, 0.001421989407390356, -0.004935420583933592, -0.003961324226111174, -0.005783457309007645, -0.020689038559794426, 0.004385342821478844, 0.019680561497807503, -0.039727844297885895, 0.00795320887118578, -0.010573717765510082, -0.017908088862895966, 0.0010132510215044022, -0.007426050491631031, -0.01356858666986227, -0.01581473834812641, -0.01204823236912489, -0.013476906344294548, -0.006776653230190277, 0.008510926738381386, 0.006085236091166735, -0.0012481800513342023, -0.012017672881484032, -0.002165931509807706, 0.005046200007200241, -0.01156691461801529, -0.011666233651340008, -0.01204823236912489, 0.025104939937591553, 0.0290471650660038, 0.014920860528945923, 0.013018508441746235, -0.0022709809709340334, 0.024677101522684097, -0.008465086109936237, -0.01613561622798443, -0.012476070784032345, 0.019986160099506378, -0.006986752152442932, 0.016242574900388718, -0.0036633654963225126, 0.019206883385777473, -0.013782505877315998, 0.033707547932863235, -0.02024591900408268, 0.027534451335668564, -0.01867208629846573, -0.01284278929233551, -0.014240903779864311, -0.004717681556940079, -0.0003700610250234604, 0.031996194273233414, 0.001760057988576591, -0.0028038688469678164, 0.00287644867785275, 0.007525369990617037, 0.014745141379535198, 0.007124271709471941, -0.02832900732755661, 0.0087477657943964, 0.020887676626443863, 0.00935132335871458, -0.0002635789569467306, -0.009740961715579033, -0.027152452617883682, -0.0007601769757457078, -0.008870004676282406, 0.03713025152683258, -0.004507582169026136, -0.029077725484967232, -0.009939600713551044, -0.021850313991308212, -0.019145764410495758, -0.011910713277757168, 0.00041828834218904376, -0.006524533964693546, 0.0339520238339901, 0.009366602636873722, -0.020459838211536407, -0.0038429046981036663, 0.022140633314847946, -0.003413156606256962, 0.008075447753071785, -0.023668626323342323, 0.018015049397945404, 0.008640806190669537, 0.012804589234292507, -0.0038505448028445244, -0.00515697943046689, 0.00910684373229742, -0.020169520750641823, 0.008770685642957687, 0.033585306257009506, 0.02759557031095028, -0.009504122659564018, 0.013835985213518143, 0.018122008070349693, 0.010107680223882198, -0.010466758161783218, -0.01650233380496502, 0.03581617772579193, -0.02252263016998768, -0.0007062196964398026, -0.0145235825330019, -0.03404370695352554, -0.02794700860977173, -0.012521910481154919, 0.02071959711611271, 0.00028984135133214295, -0.029444443061947823, 0.022629590705037117, 0.01965000294148922, -0.01954304240643978, 0.01893184520304203, -0.03227123245596886, 0.006845412775874138, 0.0168843325227499, -0.0032699070870876312, -0.020795997232198715, -0.009534682147204876, -0.010413278825581074, -0.014195064082741737, 0.015402179211378098, -0.005137879867106676, -0.020413998514413834, -0.0038008850533515215, -0.008419246412813663, 0.0007086072000674903, -0.0012491350062191486, -0.022858789190649986, -0.004782621283084154, -0.022721270099282265, 0.007636149879544973, -0.0036499956622719765, 0.009328403510153294, 0.00641757482662797, 0.009664561599493027, -0.01103211659938097, 0.015325779095292091, 0.022003112360835075, -0.0013226697919890285, -0.003785605076700449, -0.007380210794508457, -0.021025197580456734, -0.0037913350388407707, 0.003798974910750985, -0.011169635690748692, -0.0032909170258790255, 0.028130369260907173, 0.015830017626285553, 0.010038920678198338, 0.010145880281925201, -0.0015881586587056518, 0.0011526804883033037, -0.027778930962085724, -0.018763765692710876, -0.02617453597486019, -0.025716139003634453, -0.006543633993715048, -0.008533846586942673, -0.009473562240600586, -0.011964192613959312, 0.01832064799964428, 0.020230639725923538, -0.024799341335892677, 0.011024476028978825, -0.012911548838019371, 0.004885760601609945, -0.022812949493527412, -0.011941272765398026, 0.001535633928142488, -0.034777142107486725, 0.023546386510133743, 0.012667070142924786, -0.002055151853710413, -0.013285906985402107, -0.012942108325660229, 0.008128928020596504, 0.009145043790340424, 0.010482038371264935, -0.01772473007440567, 0.006138715893030167, -0.02724413201212883, 0.007685809396207333, -0.042019832879304886, -0.02822204865515232, -0.012796949595212936, -0.002782858908176422, -0.003972784150391817, 0.022018393501639366, 0.0007367795915342867, 0.019390244036912918, -0.0017161282012239099, 0.013003228232264519, 0.002112451707944274, 0.015830017626285553, -0.01217811182141304, 0.0001463531662011519, 0.0016989383148029447, -0.011780833825469017, 0.003218337194994092, -0.009183243848383427, -0.003447536379098892, -0.012231591157615185, 0.0290471650660038, 0.023317188024520874, 0.002037961967289448, 0.007273251190781593, 0.013897105120122433, 0.004576341714709997, 0.02314910851418972, 0.03777201101183891, -0.02363806590437889, -0.018824884667992592, -0.010757077485322952, 0.00012194107694085687, -0.017205212265253067, 0.007399310823529959, -0.012369111180305481, 0.007147191558033228, -0.0075521101243793964, -0.014202703721821308, 0.0021009917836636305, 0.019252723082900047, -0.016487054526805878, 0.010611917823553085, -0.002664439380168915, 0.0022919909097254276, 0.026801014319062233, 0.020826557651162148, -0.013163668103516102, 0.03352418914437294, -0.016227295622229576, -0.010359798558056355, -0.006853052880614996, -0.00033711365540511906, 0.004645101726055145, -0.009756240993738174, 0.004610721953213215, 0.01278166938573122, -0.0025727597530931234, -0.0015986636281013489, -0.019726401194930077, 0.004660381469875574, 0.008167128078639507, 0.010298679582774639, -0.01809144765138626, -0.04736781120300293, 0.020230639725923538, 0.0010266209719702601, -0.01567721739411354, 0.00750245014205575, 0.00843452662229538, 0.003980424255132675, 0.005233379080891609, 0.008648445829749107, 0.0003566910745576024, -0.0039842440746724606, -0.005905696656554937, 0.0020780717022717, -0.008388686925172806, 0.020077841356396675, -0.004221083130687475, -0.004293662961572409, -0.0043929824605584145, -0.015562618151307106, -0.005764357279986143, 0.018228968605399132, 0.013156027533113956, 0.0007353471009992063, -0.007181571796536446, -0.004859020933508873, -0.011589834466576576, -0.013270627707242966, -0.025013260543346405, 0.008327567018568516, 0.006921812426298857, 0.0267704539000988, -0.015371618792414665, 0.02519662119448185, -0.009840280748903751, 0.005340338684618473, 0.007884448394179344, -0.018106728792190552, -0.004347142763435841, -0.019359683617949486, -0.007861528545618057, 0.002202221192419529, 0.0009268238209187984, 0.0029547582380473614, 0.048529088497161865, -0.008709565736353397, -0.005565717816352844, -0.004801720846444368, 0.01037507876753807, -0.00922144390642643, 0.0003316224319860339, 0.004851380828768015, 0.015570258721709251, -0.017205212265253067, -0.01625785604119301, -0.01965000294148922, 0.028160927817225456, -0.0013303097803145647, -0.005325058940798044, 0.01854984648525715, 0.023714466020464897, 0.011207835748791695, -0.018274808302521706, 0.024784062057733536, 0.007937928661704063, 0.015845296904444695, 0.005603917874395847, -0.0018020778661593795, -0.005886596627533436, -0.0008795515168458223, 0.009748601354658604, 0.015585537999868393, -0.018412327393889427, -0.008793605491518974, 0.0017753379652276635, 0.000942103797569871, -0.006895072758197784, -0.009740961715579033, -0.0166245736181736, 0.006650593597441912, -0.01283514965325594, 0.006020296365022659, -0.010879317298531532, 0.015562618151307106, -0.012407311238348484, -0.021391915157437325, 0.01686905324459076, 0.021147435531020164, -4.5720444177277386e-05, -0.007968488149344921, -0.0032030572183430195, -0.005069119855761528, 0.008480366319417953, -0.015455658547580242, -0.004641281440854073, -0.015211179852485657, 0.017770569771528244, 0.010107680223882198, 0.018504006788134575, -0.009679841808974743, 0.009496482089161873, -0.009175603277981281, -0.014829181134700775, 0.0007773669203743339, 0.005137879867106676, 0.0020074020139873028, -0.029811162501573563, -0.03520498052239418, 0.019191604107618332, -0.022935189306735992, -0.012873348779976368, -0.020291760563850403, 0.00935132335871458, 0.01579945720732212, -0.012850428931415081, 0.013201868161559105, 0.0043929824605584145, -0.026342615485191345, -0.012812228873372078, 0.018534567207098007, -0.00843452662229538, -0.0027752190362662077, -0.020093120634555817, -0.009259643033146858, -0.003218337194994092, -0.0044235424138605595, 0.0017084882128983736, -0.009962520562112331, -0.0014726042281836271, -0.011116156354546547, 0.007086072117090225, -0.005577177740633488, -0.021728074178099632, -0.014790981076657772, -0.009465922601521015, 0.0030521678272634745, -0.017510810866951942, 0.00582165690138936, 0.04354782775044441, -0.004797901026904583, 0.004110303707420826, -0.018763765692710876, -0.005019460339099169, -0.005359438713639975, 0.0026816294994205236, 0.01770945079624653, 0.014141583815217018, 0.010459118522703648, -0.0053823585622012615, -0.025578618049621582, 0.014913220889866352, 0.005542797967791557, -0.005053840111941099, -0.012346191331744194, -0.017694169655442238, -0.00521809933707118, -0.017419131472706795, -0.018228968605399132, -0.04159199446439743, 0.0044923024252057076, 0.018228968605399132, 0.004801720846444368, 0.0019959420897066593, -0.01071887742727995, -0.010581358335912228, -0.0008991289651021361, 0.0060928757302463055, 0.005814016796648502, 0.023210227489471436, 0.011467594653367996, -0.011750273406505585, -0.010237559676170349, -0.013866544701159, 0.0023817606270313263, 0.013683185912668705, 0.01807616837322712, 0.0021984013728797436, -0.0024199604522436857, -0.006700253579765558, -0.002994868205860257, -0.009840280748903751, 0.00035621359711512923, 0.005802556872367859, -0.0017151732463389635, 0.022140633314847946, 0.005221919156610966, -0.0019052174175158143, -0.017159372568130493, 0.0014095744118094444, 0.0037626849953085184, -0.027809489518404007, 0.0013159847585484385, -0.005901876837015152, -5.3778225264977664e-05, 0.021009916439652443, -0.04049183800816536, -0.004503762349486351, 0.0005257254233583808, 0.004236363340169191, 0.00033186119981110096, 0.005661217495799065, 0.024799341335892677, -0.00551987811923027, 0.0006016475963406265, 0.029261084273457527, -0.015998097136616707, -0.005905696656554937, -0.003995703998953104, -0.0026816294994205236, 0.008610245771706104, -0.01252955012023449, 0.026250936090946198, 0.003865824779495597, 0.010145880281925201, -0.008037248626351357, 0.000660379882901907, -0.003204967360943556, -0.010115319862961769, 0.0010438108583912253, 0.00629533501341939, -0.001203295192681253, -0.008541486226022243, -0.017694169655442238, 0.01734273135662079, -0.00045410069287754595, -0.007876808755099773, 0.011742633767426014, 0.016456494107842445, -0.003439896274358034, -0.020108399912714958, 0.01833592727780342, -0.03086547739803791, -0.0040377238765358925, 0.006765193305909634, -0.018274808302521706, 0.018290087580680847, 0.005011820234358311, -0.008067808113992214, -0.02207951247692108, 0.012323271483182907, 0.011834313161671162, 0.007238871417939663, 0.012040592730045319, -0.013965864665806293, 0.015104220248758793, -0.0030101481825113297, 0.007853888906538486, -0.0047558811493217945, -0.0016435484867542982, 0.004328042734414339, 0.003529665991663933, -0.01109323650598526, -0.004110303707420826, 0.007540650200098753, -0.07083780318498611, -0.030544599518179893, 0.01625785604119301, 0.0015108040533959866, -0.024050625041127205, 0.0065168943256139755, 0.030009800568223, 0.015860578045248985, 0.00518371956422925, 0.005114959552884102, 0.01761776953935623, 0.013079628348350525, 0.013270627707242966, -0.0013226697919890285, -0.005940076429396868, -0.0022996310144662857, 0.012453150935471058, 0.03627457469701767, 0.013950584456324577, -0.02374502643942833, 0.01560845784842968, 0.013148387894034386, 0.011360635049641132, -0.004702401347458363, 0.02544109895825386, 0.004106483887881041, 0.009488842450082302, 0.012414950877428055, 0.002698819385841489, -0.032607391476631165, -0.0019329123897477984, -0.000616927572991699, -0.014072824269533157, -0.003804704872891307, 0.012873348779976368, 0.0070822518318891525, 0.0064481343142688274, 0.004511401988565922, -0.023958945646882057, -2.7441219572210684e-05, -0.0036175257991999388, 0.002228961093351245, -0.01265942957252264, 0.003798974910750985, 0.013767225667834282, 0.016074497252702713, 0.0040071639232337475, 0.013347026892006397, 0.0035353959538042545, -0.009076284244656563, -0.005898056551814079, 0.003149577649310231, 0.00020747292728628963, -0.00115363544318825, 0.009114484302699566, 0.012346191331744194, -0.014286743476986885, 0.017159372568130493, -0.002822968875989318, 0.016823213547468185, -0.005894236732274294, -0.013759585097432137, 0.01880960538983345, 0.02145303599536419, 0.002819148823618889, 0.003634715685620904, -0.00030798627994954586, -0.020307039842009544, 0.007250331342220306, -0.00019637109653558582, -0.012498990632593632, 0.009129763580858707, 0.005722337402403355, -0.025624457746744156, -0.0064863343723118305, -0.012613589875400066, -0.035632818937301636, -0.0050576599314808846, -0.025746697559952736, 0.005137879867106676, 0.03233235329389572, 0.003953684587031603, -0.0011326255043968558, -0.007907369174063206, 0.0232713483273983, -0.01628841646015644, -0.0035716858692467213, 0.006929452531039715, 0.0018660626374185085, -0.001502209110185504, -0.011796113103628159, -0.0005629702936857939, 0.011971832253038883, 0.001666468451730907, 0.0140422647818923, 0.007219771388918161, -0.0002738451585173607, 0.010176439769566059, 0.0033176569268107414, 0.02376030571758747, 0.0032909170258790255, 0.026128696277737617, -0.006669693626463413, 0.003483826294541359, -0.00976388156414032, -0.002937568351626396, -0.00189089251216501, 0.013453986495733261, -0.014554142020642757, -0.0003242212114855647, 0.01746497116982937, -0.004209623206406832, -0.008533846586942673, 0.024921581149101257, -0.014813900925219059, 0.015562618151307106, 0.0051187798380851746, 0.0019577422644943, 0.0027943188324570656, 0.011887792497873306, -0.012185751460492611, 0.002024591900408268, -0.007349650841206312, -0.004293662961572409, 0.001971112098544836, 0.015845296904444695, -0.007968488149344921, 0.0023722106125205755, 0.0011689154198393226, -0.002152561442926526, -0.0200320016592741, 0.009947240352630615, 0.012010032311081886, -0.012888628989458084, 0.00024280778598040342, -0.004927780479192734, 0.013117828406393528, -0.017785849049687386, 0.013423427008092403, -0.0049010408110916615, 0.0036404456477612257, 0.018274808302521706, -0.0013255347730591893, 0.015493858605623245, 0.002800049027428031, 0.008541486226022243, 0.015264659188687801, -0.009595802053809166, -0.023546386510133743, 0.018977684900164604, -0.00726179126650095, 0.005298318807035685, -0.03340194746851921, -0.01065775752067566, -0.005626837722957134, 0.0007730694487690926, -0.02748861163854599, -0.0012042502639815211, -0.037649769335985184, 0.007250331342220306, -0.015371618792414665, -0.028053969144821167, -0.004198163282126188, -0.002032232005149126, -0.001850782660767436, 0.0051187798380851746, 0.002051331801339984, -0.013178948312997818, -0.0035621358547359705, 0.017281612381339073, 0.028053969144821167, 0.03798592835664749, -0.00020341419440228492, 0.0048093609511852264, 0.017571929842233658, 0.008220607414841652, 0.02110159583389759, 0.01746497116982937, -0.007651429623365402, -0.014279103837907314, -0.012094072066247463, -0.010077119804918766, 0.005248659290373325, -0.019344404339790344, 0.0012796949595212936, -0.0016101236687973142, -0.013713745400309563, 0.018947124481201172, 0.0239742249250412, -0.01928328350186348, 0.002280530985444784, -0.011108515784144402, 0.004328042734414339, 0.013545666821300983, -0.003352036699652672, -0.042508792132139206, -0.009634002111852169, 0.00964928139001131, 0.01615089550614357, 0.011238395236432552, 0.022247591987252235, 0.025624457746744156, -0.008839445188641548, -0.0044006225652992725, 0.0002277665917063132, -0.0029012784361839294, 0.02061263844370842, 0.006952372379601002, -0.008151847869157791, -0.0024199604522436857, -0.007303811144083738, 0.0026548895984888077, 0.02111687697470188, -0.017037132754921913, 0.011551634408533573, 0.007536830380558968, 0.016807934269309044, 0.008633165620267391, -0.012598310597240925, 0.035510580986738205, -0.00796084851026535, 0.002152561442926526, 0.00548549834638834, 0.02133079618215561, 0.008403967134654522, -0.0026014097966253757, -0.000593530130572617, -0.01928328350186348, 0.012789309024810791, 0.0007334370748139918, -0.013583865948021412, -0.012926829047501087, 0.011352995410561562, 0.01018407940864563, 0.023225508630275726, 0.0351744219660759, -6.541723996633664e-05, 0.018717925995588303, 0.0025708498433232307, 0.006264775060117245, 0.014103383757174015, 0.03404370695352554, 0.01531049981713295, -0.0007687719771638513, -0.016441214829683304, 0.01506602019071579, -0.01602865569293499, -0.002148741390556097, 0.023821426555514336, -0.03217955306172371, -0.010886956937611103, 0.006986752152442932, 0.001854602713137865, 0.02119327522814274, 0.0006646773545071483, -0.010352158918976784, -0.00970276165753603, 0.011628033593297005, -0.004828460980206728, 0.006035576108843088, -0.017648329958319664, 0.0044235424138605595, -0.008266447111964226, -0.00213919160887599, 0.0007568345172330737, 0.009542321786284447, -0.02252263016998768, 0.0012281251838430762, -0.01049731858074665, 1.107944854084053e-06, -0.024753501638770103, -0.017281612381339073, -0.009236723184585571, 0.010046560317277908, 0.028726287186145782, 0.006226575467735529, 0.018870726227760315, 0.014347863383591175, 0.004270743113011122, -0.0033673166763037443, -0.005011820234358311, 0.011375915259122849, -0.004408262670040131, -0.020184800028800964, 0.011528714559972286, 0.02328662760555744, 0.010940436273813248, 0.047184452414512634, -0.020582078024744987, 0.002534559927880764, -0.011253675445914268, -0.021407194435596466, 0.008212967775762081, 0.02988756261765957, -0.005267759319394827, 0.0009005614556372166, -0.009725681506097317, 0.008304647170007229, 0.006555093917995691, 0.007452790625393391, 0.025609178468585014, -0.013759585097432137, 0.0008060167892836034, 0.021972553804516792, -0.005023280158638954, 0.017938649281859398, 0.0031075577717274427, 0.00922144390642643, 0.023576946929097176, 0.004985080100595951, 0.007586489897221327, -0.018030328676104546, -0.001750508090481162, -0.005355618894100189, 0.010695957578718662, 0.0028554387390613556, 0.010573717765510082, 0.017755290493369102, 0.01821368746459484, 0.002410410437732935, 0.017678890377283096, 0.00951940193772316, 0.017770569771528244, -0.013690825551748276, -0.0057376171462237835, 0.009435363113880157, -0.0027102793101221323, 0.00699439225718379, 0.005030920263379812, -0.005420558620244265, -0.0017858429346233606, 0.007231231313198805, 0.01880960538983345, -0.0033902365248650312, -0.008258807472884655, 0.0037034752313047647, -0.0006145400693640113, -0.014943781308829784, 0.0005691777332685888, -0.00045386195415630937, 0.006921812426298857, -0.0040988437831401825, 0.027060773223638535, -0.008205327205359936, 0.011230755597352982, -0.00262241973541677, 0.0015232189325615764, -0.005286858882755041, 0.006566553842276335, 0.011857233010232449, -0.0016378185246139765, -0.011956552974879742, 0.013186587952077389, 0.020352879539132118, -0.014118663966655731, 0.0016101236687973142, 0.006322075147181749, -0.0002604752080515027, -0.00897696428000927, 0.012972668744623661, 0.014454822987318039, 0.003315746784210205, -0.017801130190491676, 0.011597474105656147, -0.00445792218670249, -0.012621230445802212, -0.0017619680147618055, -0.0078004091046750546, 0.01589113660156727, 0.0057070571929216385, 0.010038920678198338, -0.004152323585003614, -0.030437638983130455, -0.026785733178257942, -0.011077956296503544, 0.01807616837322712, 0.009679841808974743, -0.02470766194164753, -0.00048203434562310576, -0.018962405622005463, -0.004171423614025116, -0.006367914844304323, 0.013897105120122433, -0.004133223555982113, -0.012208671309053898, -0.021055756136775017, 0.0005949626211076975, 0.006196015514433384, 0.015631377696990967, -0.02495214156806469, -0.0003953684354200959, 0.0075291902758181095, 0.001837412710301578, -0.015952257439494133, 0.011773193255066872, -0.005779637023806572, 0.013171307742595673, -0.016670413315296173, -0.011597474105656147, -0.010894596576690674, -0.03205731138586998, 0.0057376171462237835, 0.02507438138127327, -0.001089650671929121, -0.0019080823985859752, -0.011055036447942257, 0.016334256157279015, -0.01097099669277668, 0.014668742194771767, 0.005325058940798044, -0.004774981178343296, -0.005034740082919598, 0.006165455561131239, -0.003071267856284976, -0.006662053521722555, -0.007330550812184811, 0.015860578045248985, 0.00982500147074461, 0.013331747613847256, -0.0001245076273335144, -0.00563065754249692, 0.0030101481825113297, 0.011620393954217434, -0.006612394005060196, 0.012598310597240925, 0.0023550207260996103, -0.026449576020240784, -0.009549962356686592, 0.011337715201079845, -0.010948076844215393, 0.014546502381563187, 0.002160201547667384, 0.00425164308398962, -0.0038963844999670982, 0.004614541772753, -0.003329116851091385, -0.005653577856719494, -0.002081891754642129, -0.01192599255591631, 0.023928385227918625, 0.006352634634822607, -0.00789208896458149, 0.019344404339790344, 0.01870264671742916, -0.023897824808955193, -0.022369831800460815, 0.014095744118094444, -0.014149224385619164, 0.0007329595973715186, 0.01641065441071987, -0.005794917233288288, -0.031140517443418503, 0.008938764221966267, 0.025960616767406464, 0.02939860336482525, -0.0007401220500469208, 0.00862552598118782, 0.006383194588124752, -0.0037836949340999126, 0.0078309690579772, 0.010512598790228367, 0.025257740169763565, -0.015150059945881367, 0.005619197618216276, -0.017678890377283096, -0.004194343462586403, -0.01151343435049057, 0.003684375435113907, -0.017434410750865936, -0.023240787908434868, -0.00047439438640139997, 0.008541486226022243, 0.013652626425027847, -0.0044311825186014175, -1.616032750462182e-05, -0.006467234343290329, 0.010176439769566059, -0.0066964332945644855, -0.005959176458418369, 0.019986160099506378, -0.009618721902370453, -0.0003098962770309299, -0.013751945458352566, -0.002792408922687173, 0.013851265422999859, 0.006490154191851616, -0.01616617664694786, 0.01917632482945919, -0.013285906985402107, 0.0108487568795681, -0.021850313991308212, -0.020826557651162148, 0.023897824808955193, 0.013087267987430096, 0.009496482089161873, 0.0028306087478995323, 0.01639537513256073, -0.01169679407030344, -0.00348000624217093, -0.0019338673446327448, 0.00482082087546587, 0.0036404456477612257, 0.030422359704971313, -0.0010638658422976732, -0.0078309690579772, -0.024646542966365814, 0.027060773223638535, -0.010390358977019787, -0.0062151155434548855, 0.005126419942826033, 0.0005199954612180591, -0.0026529794558882713, 0.020704317837953568, 0.002992958063259721, 0.003594605717808008, 0.007945568300783634, 0.029734762385487556, 0.021055756136775017, -0.018626246601343155, 0.011024476028978825, 0.008289366960525513, -0.006944732740521431, -0.018244247883558273, 0.01271290984004736, -0.0016855683643370867, -0.002639609621837735, 0.018901284784078598, 0.0003507223736960441, -0.001659783418290317, -0.022125352174043655, -0.011139076203107834, 0.002356930635869503, -0.017892809584736824, -0.009595802053809166, 0.011666233651340008, -0.028130369260907173, -0.00025164149701595306, 0.010336878709495068, 0.025257740169763565, 0.01676209457218647, -0.022568469867110252, -0.01604393683373928, 0.013285906985402107, -0.003961324226111174, 0.010627198033034801, -0.01164331380277872, 0.012735829688608646, 0.02155999466776848, 0.010856397449970245, 0.0036633654963225126, 0.03746641054749489, 0.02062791772186756, 0.002991048153489828, 0.019390244036912918, -0.0003242212114855647, 0.008671365678310394, 0.010856397449970245, 0.0032679971773177385, -0.014240903779864311, 0.006066136062145233, 0.013339387252926826, -0.008060168474912643, 0.0017839329084381461, -0.0005519877886399627, -0.0033577666617929935, -0.008488005958497524, -0.0037206653505563736, 0.010237559676170349, 0.0035258459392935038, 0.0124684302136302, -0.005718517582863569, 0.03312690928578377, -0.017312170937657356, -0.006043216213583946, 0.0010676857782527804, -0.01697601191699505, 0.0064557744190096855, 0.004710041452199221, 0.00455342186614871, 0.018397048115730286, -0.008778325282037258, -0.005225739441812038, -0.004396802745759487, -0.0034379863645881414, 0.009198524057865143, 0.021498875692486763, 0.0020933516789227724, 0.011437035165727139, -0.017892809584736824, -0.005833116825670004, 0.010352158918976784, -0.0011679603485390544, 0.0034647262655198574, -0.005989736411720514, -0.015226460061967373, 0.01978752203285694, -0.004782621283084154, -0.0005496003432199359, 0.010749437846243382, 0.009970160201191902, 0.011505794711411, -0.0021697513293474913, -0.01928328350186348, -0.007525369990617037, 0.014966701157391071, 0.012896268628537655, 0.01854984648525715, -0.01217047218233347, -0.02518134005367756, 0.016838492825627327, -0.01665513403713703, -0.002129641594365239, 0.012254511937499046, -0.002689269371330738, -0.04305886849761009, 0.0008509016479365528, 0.007147191558033228, 0.0028649887535721064, 0.004748241044580936, 0.01783168874680996, -0.002374120522290468, 0.01722049154341221, -0.016563454642891884, -0.0019940321799367666, -0.0032030572183430195, -0.01965000294148922, 0.0011192555539309978, -0.022950468584895134, 0.00796084851026535, -9.675305773271248e-05, 0.009213803336024284, -0.025410538539290428, -0.006669693626463413, -0.01700657233595848, 0.010031280107796192, 0.006635313853621483, -0.022094791755080223, -0.006127255968749523, -0.0034207964781671762, -0.017938649281859398, -0.010138239711523056, 0.02012368105351925, 0.005607737693935633, 0.006681153550744057, -0.015341059304773808, 0.01628841646015644, -0.006058495957404375, -0.009725681506097317, 0.017037132754921913, -0.006253315135836601, 0.0015910237561911345, 0.009572882205247879, 0.010642478242516518, -0.00011937452654819936, -0.01265178993344307, -0.014095744118094444, -0.011368274688720703, 0.0022003112826496363, -0.0028573486488312483, 0.00237985048443079, -0.008732485584914684, 0.01132243499159813, 0.003785605076700449, 0.011734993197023869, 0.01037507876753807, 0.013415787369012833, 0.004591621924191713, -0.001706578303128481, 0.0033367567230015993, -0.007028772030025721, -0.008235887624323368, 0.0036901053972542286, 0.031996194273233414, 0.00563065754249692, -0.018717925995588303, -0.005248659290373325, 0.005145519506186247, 0.0008518566028214991, -0.0031400276347994804, 0.009985440410673618, -0.0014640091685578227, -0.011841952800750732, 0.035968977957963943, 0.013247707858681679, 0.016105055809020996, 0.014324943535029888, 0.02340886741876602, -0.009534682147204876, 0.01880960538983345, -0.002664439380168915, 0.0191610436886549, 0.01343870721757412, -0.007429870776832104, -0.00796084851026535, -0.00916032399982214, 0.019680561497807503, -0.04981260374188423, 0.011528714559972286, -0.008075447753071785, -0.011337715201079845, -0.017510810866951942, 0.002249971032142639, 0.02038343995809555, -0.007246511522680521, 0.013278267346322536, -0.01650233380496502, 0.01265178993344307, -0.010443838313221931, -0.009053364396095276, -0.0020704318303614855, 0.008419246412813663, -0.005699417553842068, -0.021880872547626495, 0.010298679582774639, -0.007651429623365402, -0.010856397449970245, 0.006474874448031187, 0.0037970650009810925, -0.005794917233288288, -0.007254151161760092, 0.011215475387871265, 0.007811869028955698, 0.0020838016644120216, 0.005508418194949627, -0.011673874221742153, -0.006975292228162289, 0.008075447753071785, -0.012628870084881783, -0.0021506515331566334, 0.01037507876753807, 0.018947124481201172, -0.004381522536277771, -0.011009196750819683, -0.00593243632465601, -0.005195179488509893, 0.0033443968277424574, -0.010061840526759624, -0.03835264965891838, -0.008037248626351357, 0.0018335927743464708, -0.03508274257183075, 0.022018393501639366, 0.022705990821123123, -0.00989376101642847, -0.002494450192898512, 0.0015002990840002894, -0.026464855298399925, -0.0009363737772218883, -0.022385111078619957, -0.005477858241647482, 0.009366602636873722, 0.014164503663778305, 0.006280055269598961, -0.03269907087087631, 0.00013990694424137473, -0.010344519279897213, 0.01854984648525715, 0.0023244607727974653, -0.007758389227092266, 0.010642478242516518, -0.02363806590437889, 0.010115319862961769, -0.007013492286205292, 0.001854602713137865, 0.015279939398169518, 0.00891584437340498, -0.016548175364732742, -0.013538026250898838, -0.00814420823007822, 0.017403850331902504, 0.010000720620155334, 0.021621113643050194, -0.00040993213769979775, 0.010474398732185364, -0.008350486867129803, -0.006700253579765558, -0.01138355489820242, 0.011360635049641132, 0.01879432611167431, 0.000683777267113328, -0.015142420306801796, 4.476544927456416e-05, 0.011307155713438988, -0.010260479524731636, 0.0034360764548182487, -0.01110087614506483, 0.006906532682478428, 0.02075015753507614, -0.013622066006064415, 0.009748601354658604, 0.006795753259211779, 0.0003509611124172807, 0.009847921319305897, -0.010726517997682095, -0.01867208629846573, -0.014363143593072891, -0.0016015286091715097, 0.0017084882128983736, -0.03969728201627731, -0.003204967360943556, 0.005894236732274294, 0.007040231954306364, -0.028420686721801758, 0.007422230672091246, 0.014240903779864311, 0.009488842450082302, 0.010695957578718662, 0.008984604850411415, 0.0031266575679183006, 0.01677737385034561, 0.01065775752067566, 0.004114123526960611, -1.4668145013274625e-05, -0.004087383858859539, -0.0006751823239028454, 0.02279767021536827, -0.005432018544524908, 0.008342847228050232, -0.000355497351847589, -0.02084183692932129, 0.017281612381339073, -0.004664201755076647, 0.018244247883558273, 0.007647609803825617, -0.00200549210421741, 0.015516778454184532, -0.015532058663666248, 0.0306209996342659, -0.002236601198092103, 0.008472726680338383, 0.01059663761407137, 0.0027752190362662077, -0.000499462999869138, 0.032974109053611755, 0.0025861298199743032, -0.0002090248017339036, 0.01344634685665369, 0.0071739316917955875, 0.02787061035633087, -0.005428198724985123, -0.021789193153381348, 0.006990572437644005, -0.014202703721821308, 0.012460790574550629, -0.0017142181750386953, -0.0013198048109188676, 0.002551749814301729, 0.021483594551682472, 0.01271290984004736, 0.02927636355161667, 0.0008914889767765999, 0.008151847869157791, -0.0006393699441105127, -0.00455342186614871, -0.003195417346432805, 0.014080463908612728, -0.008121287450194359, -0.015043100342154503, 0.01868736557662487, 0.019573602825403214, -0.0041599636897444725, 0.012476070784032345, -0.010145880281925201, 0.017663609236478806, -0.04088911786675453, -0.007089891936630011, 0.0040377238765358925, 0.027824770659208298, 0.0034723663702607155, 0.019130485132336617, -0.004843740724027157, -0.026464855298399925, 0.002773309126496315, 3.611079591792077e-05, 0.01641065441071987, -0.019497202709317207, -0.009374243207275867, 0.005894236732274294, -0.010298679582774639, -0.022125352174043655, 0.0024046804755926132, -0.022812949493527412, -0.00019338673155289143, 0.006127255968749523, 0.0035850557032972574, 0.015165340155363083, -0.010550797916948795, 0.002735109068453312, 0.011719713918864727, 0.0066964332945644855, 0.0017581480788066983, 0.012476070784032345, 0.004140863660722971, 0.016074497252702713, 0.018015049397945404, 0.008717205375432968, 0.018870726227760315, 0.0009077239083126187, -0.00040372463990934193, 0.002081891754642129, 0.0006474874098785222, 0.0008337117033079267, -0.01204823236912489, 0.025593899190425873, -0.0040988437831401825, -0.005668857600539923, 0.013003228232264519, 0.005221919156610966, 0.02049039863049984, 0.03810817003250122, -0.01090987678617239, 0.012621230445802212, 0.012873348779976368, 0.0181984081864357, -0.01928328350186348, 0.01770945079624653, -0.007605589926242828, 0.005584817845374346, 0.005313599016517401, 0.0030521678272634745, 0.004897220525890589, -0.004549602046608925, -0.016212016344070435, -0.005248659290373325, 0.021254396066069603, 0.01483682170510292, 0.001435359357856214, 0.014722221530973911, 0.004538142122328281, -0.004836101084947586, 0.026449576020240784, 0.021055756136775017, 0.0057070571929216385, 0.005508418194949627, 0.008701925165951252, -0.003621345618739724, -0.011933633126318455, -0.003447536379098892, -0.013721385970711708, -0.013461627066135406, -0.009206163696944714, -0.01625785604119301, 0.0008671365794725716, -0.00491632055491209, -0.0015213090227916837, -0.009901400655508041, -0.010772357694804668, -0.008052527904510498, -0.011429394595324993, 0.03269907087087631, -0.0025441099423915148, -0.016823213547468185, -0.007846249267458916, -0.00455342186614871, 0.013866544701159, 0.01084111724048853, -0.015356339514255524, 0.0008279817411676049, 0.0011106606107205153, 0.022476790472865105, 0.01518826000392437, -0.01078763697296381, -0.00795320887118578, -0.016563454642891884, 0.012124632485210896, -0.007131911814212799, 0.003804704872891307, 0.031415555626153946, -0.012498990632593632, -0.02701493352651596, -0.015952257439494133, -0.026189817115664482, -0.003493376076221466, -0.016594015061855316, 0.017892809584736824, 0.00425164308398962, -0.007766029331833124, -0.0033654067665338516, -0.008885284885764122, 0.002131551504135132, -0.005779637023806572, 0.007716369349509478, -0.013423427008092403, 0.009985440410673618, 0.00281532877124846, 0.02049039863049984, -0.010352158918976784, 0.01722049154341221, 0.0024963601026684046, -0.005317418836057186, 0.017633050680160522, 0.002081891754642129, 0.011666233651340008, 0.013492186553776264, -0.0004271220532245934, 0.006772833410650492, -0.013423427008092403, -0.014691662043333054, 0.014156864024698734, 0.011314795352518559, 0.00538999866694212, -0.0012500900775194168, -0.0166245736181736, -0.024814622476696968, -0.0049010408110916615, 0.018106728792190552, -0.0181984081864357, -0.00578727712854743, 0.038780488073825836, -0.005283039063215256, 0.007349650841206312, 0.03318803012371063, -0.0011822853703051805, 0.0011526804883033037, -0.0022939008194953203, -0.002223231131210923, 0.030070921406149864, -0.00042497331742197275, -0.01677737385034561, 0.009588162414729595, 0.00756357004866004, 0.0242339838296175, -0.001056225853972137, 0.0029222883749753237, 0.010764717124402523, 0.01748025044798851, 0.000717679678928107, 0.012254511937499046, 0.0012090252712368965, 0.006081415805965662, -0.011650953441858292, 0.015509138815104961, -0.005905696656554937, 0.004121763631701469, -0.018733205273747444, -0.014676381833851337, -0.002326370682567358, -0.010344519279897213, -0.019604163244366646, -0.006982932332903147, 0.018183128908276558, -0.007907369174063206, 0.015547338873147964, -0.013942944817245007, 0.03172115609049797, -0.008594965562224388, -0.025410538539290428, 0.0008900564862415195, 0.01139119453728199, 0.009252003394067287, -0.003802794963121414, 0.0001845530205173418, 0.01990976184606552, 0.031247476115822792, 0.024753501638770103, 0.0007234096410684288, -0.000539572851266712, 0.0006517849396914244, -0.005397638771682978, -0.0022442410700023174, -0.02218647301197052, 0.004591621924191713, -0.005072940140962601, -0.0010715057142078876, 0.005462578497827053, -0.013071988709270954, 0.005023280158638954, 0.021407194435596466, -0.0030903678853064775, 0.004538142122328281, -0.011765553615987301, -0.010856397449970245, -0.0024276003241539, -0.012323271483182907, 0.005886596627533436, 0.0048475610092282295, 0.045748140662908554, 0.04385342821478844, 0.008174767717719078, 0.0036098856944590807, 0.021972553804516792, -0.016670413315296173, 0.004320403095334768, 0.005699417553842068, -0.007853888906538486, 0.01059663761407137, 0.006058495957404375, -0.009030444547533989, 0.01760249026119709, 0.006364095024764538, 0.013331747613847256, 0.007429870776832104, -0.0006040350999683142, -0.008816525340080261, -0.004263103008270264, 0.025288300588726997, -0.0014143494190648198, 0.01458470243960619, -0.005038559902459383, -0.004813180770725012, 0.0035449459683150053, 0.006108155939728022, 0.021177995949983597, 0.0077927689999341965, 0.022033672779798508, 0.0025402898900210857, 0.015470938757061958, 0.009679841808974743, -0.024050625041127205, 0.015707777813076973, 0.012613589875400066, -0.012025312520563602, 0.011352995410561562, 0.011612754315137863, -0.006776653230190277, -0.01477570179849863, -0.016792653128504753, -0.014508302323520184, 0.012147552333772182, -0.013117828406393528, -0.02400478534400463, 0.012705269269645214, 0.012071152217686176, 0.025655018165707588, -0.0015566438669338822, 0.007265611086040735, 0.01590641774237156, 0.018274808302521706, -0.013828345574438572, -0.012865709140896797, 0.01699129305779934, -0.0052028195932507515, 0.0014019344234839082, -0.02183503285050392, -0.018641525879502296, 0.009328403510153294, 0.0038963844999670982, -0.008640806190669537, 0.007884448394179344, -0.019130485132336617, -0.01567721739411354, 0.0005940076662227511, 0.00808308832347393, 0.008327567018568516, 0.0003953684354200959, 0.0035793257411569357, 0.023775584995746613, -0.004427362699061632, 0.0014258093433454633, -0.02230871096253395, 0.0028592587914317846, -0.0016072586877271533, -0.02638845518231392, -0.012437870725989342, -0.00726179126650095, -0.019695842638611794, -0.008778325282037258, -0.009190883487462997, 0.013881824910640717, -0.006402294617146254, 0.00213919160887599, 0.010397998616099358, 0.002009312156587839, -0.02304214797914028, 0.015287579968571663, -0.0005973501247353852, 0.0048475610092282295, -0.002578489715233445, 0.015157699584960938, 0.030468199402093887, 0.01903880387544632, 0.007189211435616016, -0.0003270861925557256, -0.015425099059939384, 0.013660266064107418, -4.6944034693297e-05, 0.0010380808962509036, 0.005225739441812038, 0.007922648452222347, 0.011857233010232449, 0.012414950877428055, -0.01170443370938301, 0.0018870725762099028, -0.012888628989458084, -0.010268119163811207, 0.013171307742595673, -8.260717004304752e-05, 0.013278267346322536, -0.013790145516395569, 0.01319422759115696, 0.007487170398235321, 0.01211699191480875, 0.008778325282037258, -0.003883014665916562, 0.012223951518535614, 0.018504006788134575, 0.009656921960413456, 0.01709825173020363, 0.014974340796470642, -0.0035392160061746836, -0.0033081069122999907, 0.003382596652954817, 0.00031490999390371144, 0.0002743226650636643, -0.005825476720929146, 0.018183128908276558, -0.011605113744735718, -0.025593899190425873, -0.0011775103630498052, 0.0194208025932312, 0.0024085005279630423, 0.009358962997794151, -0.0005682227783836424, 0.0159216970205307, 0.030345959588885307, -0.007861528545618057, -0.014737501740455627, 0.03147667646408081, 0.020826557651162148, -0.0018622425850480795, -0.018595686182379723, 0.01641065441071987, -0.021987833082675934, -0.011352995410561562, 0.006887432653456926, 0.01164331380277872, 0.0003566910745576024, 0.009840280748903751, -0.0038677346892654896, 0.0032068772707134485, 0.0030254279263317585, 0.0174955315887928, -0.029948681592941284, 0.0059133367612957954, -0.015302859246730804, -0.0012921098386868834, 0.011788473464548588, 0.012430231086909771, 0.001867972663603723, -0.002547929994761944, 0.018717925995588303, 0.0030999176669865847, -0.0012414951343089342, 0.01569249853491783, -0.009443002752959728, -0.016578733921051025, -0.006471054162830114, 0.002662529470399022, -0.014393703080713749, 0.012498990632593632, -0.0023817606270313263, 0.03914720565080643, -0.00019863921625074, 0.004862840753048658, -0.018060889095067978, -0.0039842440746724606, 0.0020608818158507347, -0.0006245675031095743, 0.022828228771686554, 0.015417459420859814, -0.0103674391284585, 0.004954520612955093, -0.00844216626137495, 0.010772357694804668, -0.0076437899842858315, 0.013713745400309563, 0.006650593597441912, 0.004568702075630426, -0.0059935562312603, 0.0006981022306717932, -0.00732291117310524, 0.011131435632705688, -0.0019577422644943, -0.019955601543188095, -0.018015049397945404, 0.0108487568795681, 0.003737855236977339, 0.008679005317389965, -0.005447298288345337, 0.012193392030894756], "30959e4d-8ce8-4b68-9863-a25703b0bf21": [-0.02434622310101986, -0.00993737019598484, -0.012820475734770298, 0.036359161138534546, -0.04316649213433266, -0.04087068885564804, 0.014028443023562431, 0.00496868509799242, -6.579351975233294e-06, 0.023825662210583687, 0.016617899760603905, 0.0392155721783638, -0.0026411782018840313, -0.005646081175655127, -0.002963191596791148, -0.02043534442782402, -0.007281175814568996, 0.006633811630308628, 0.014348788186907768, -0.006914113648235798, 0.08158120512962341, -0.026762157678604126, 0.004267930053174496, 0.012153089977800846, 0.011692593805491924, -0.029178094118833542, -0.010531343519687653, 0.0026495205238461494, -0.03462395817041397, -0.02071564644575119, 0.014615742489695549, -0.001616741414181888, -0.0013022359926253557, 0.014001747593283653, -0.006046512629836798, -0.05712819844484329, 0.0036072186194360256, 0.0034670676104724407, -0.006763951852917671, 0.0011720957700163126, 0.002254094462841749, 0.04329996928572655, -0.017311979085206985, -0.005779558327049017, -0.029658611863851547, -0.0037874127738177776, -0.012807128019630909, -0.002774655120447278, 0.0012805459555238485, -0.017432108521461487, 0.01599055714905262, 0.0024743317626416683, -0.03563838452100754, -0.012093025259673595, 0.0478648878633976, -0.009750502184033394, 0.004528210498392582, 0.08409057557582855, 0.003984291572123766, -0.061132512986660004, -0.03160737827420235, -0.0028847737703472376, 0.02015504240989685, -0.010911752469837666, 0.02072899416089058, 0.0063001192174851894, -0.020502083003520966, 0.021022643893957138, -0.028884444385766983, 0.012273219414055347, -0.011525747366249561, 0.02686893939971924, -0.046797070652246475, 0.03585194796323776, 0.021463118493556976, 0.005482571665197611, 0.011619181372225285, 0.004721752367913723, 0.021222859621047974, 0.010164281353354454, 0.01300066988915205, -0.009490221738815308, 0.06641820818185806, 0.03782740980386734, 0.02626829221844673, 0.017712410539388657, -0.0050621191039681435, -0.039429135620594025, -0.032167982310056686, -0.039562612771987915, 0.029311571270227432, 0.030512865632772446, -0.012186459265649319, -0.022490890696644783, -0.005445865448564291, 0.009303353726863861, -0.007961909286677837, -0.002037194324657321, 0.019514352083206177, -0.005926383193582296, -0.0004129447625018656, 0.0194876566529274, -0.021983677521348, 0.009930696338415146, 0.014121877029538155, -0.004327994771301746, 0.009623698890209198, 0.058890096843242645, -0.04410083219408989, -0.011158685199916363, 0.03806766867637634, -0.05910366028547287, -0.015229737386107445, -0.013694750145077705, -0.03961600363254547, 0.0006965835927985609, -0.024986913427710533, -0.027763236314058304, -0.006073208060115576, -0.02379896678030491, -0.001021099858917296, -0.03152729198336601, 0.0196077860891819, -0.013194210827350616, -0.01795266941189766, 0.030539561063051224, 0.0037073264829814434, 0.021049339324235916, 0.044207613915205, 0.009690437465906143, -0.004154474940150976, -0.034276917576789856, 0.023038147017359734, -0.01740541309118271, 0.015496691688895226, 0.0011262129992246628, 0.02112942561507225, 0.05368448793888092, -0.009770523756742477, 0.03491760790348053, -0.021623289212584496, -0.02265106327831745, -0.029845479875802994, 0.01583038456737995, 0.02351866476237774, -0.00848914310336113, -0.02241080440580845, 0.0055292886681854725, -0.03267519548535347, 0.010658146813511848, -0.04754454270005226, -0.018526621162891388, -0.006650496274232864, 0.0023475284688174725, 0.03438369929790497, -0.012606912292540073, -0.00737460982054472, 0.021449770778417587, 0.01244006585329771, 0.04244571924209595, 0.034437090158462524, -0.03222137317061424, -0.008916269987821579, 0.0036172294057905674, 0.0403100848197937, 0.012486782856285572, 0.06401561945676804, 0.018846966326236725, -0.011799375526607037, 0.00771497655659914, -0.00017862989625427872, -0.013381078839302063, 0.05493917316198349, 0.01571025513112545, 0.006406900938600302, -0.02585451491177082, 0.0580892339348793, 0.026028035208582878, 0.04575594887137413, -0.00862262025475502, 0.001531649730168283, -0.015176346525549889, 0.009043073281645775, 0.0010761590674519539, -0.0461563803255558, 0.020395301282405853, 0.006330151576548815, 0.04578264430165291, -0.0029448384884744883, 0.024533091112971306, -0.023718880489468575, -0.004184506833553314, 0.01918065920472145, 0.018806923180818558, -0.017498847097158432, -0.05275014787912369, -0.004948663525283337, 0.017285283654928207, -0.011265466921031475, 0.054885782301425934, 0.003934237640351057, -0.01315416768193245, -0.000650700880214572, 0.03828123211860657, -0.027763236314058304, 0.02237076126039028, -0.015109607949852943, -0.056968025863170624, -0.011719289235770702, 0.003098337212577462, 0.035958729684352875, -0.021463118493556976, 0.007247806526720524, 0.025801124051213264, -0.00402767164632678, 0.015176346525549889, -0.0008759434567764401, 0.020208433270454407, -0.0075014131143689156, -0.009797219187021255, -0.006647159345448017, 0.001061977120116353, 0.023251710459589958, -0.005802916828542948, -0.05867653340101242, -0.01740541309118271, -0.03868166357278824, 0.02585451491177082, -0.027189284563064575, -0.016204120591282845, 0.050267476588487625, -0.033022236078977585, 0.05216285213828087, -0.039722785353660583, 0.003663946408778429, 0.022864626720547676, 0.0322747640311718, -0.00903639942407608, -0.033155713230371475, -0.03019252046942711, 0.01656450890004635, 0.002462652511894703, -0.00709430780261755, -0.03248832747340202, -0.034009963274002075, 0.009403461590409279, -0.02433287538588047, 0.03465065360069275, 0.009997434914112091, 0.020688951015472412, -0.014655785635113716, 0.028991226106882095, -0.007741671986877918, 0.02893783524632454, -0.014562351629137993, 0.02349196933209896, 0.025694342330098152, -0.0448216088116169, 0.005235639400780201, 0.013107451610267162, -0.0016075648600235581, 0.011999591253697872, -0.03139381483197212, 0.015122955664992332, 0.031767550855875015, -0.05520612746477127, 0.056540898978710175, -0.0316607691347599, 0.04671698436141014, 0.035398125648498535, 0.009443504735827446, -0.005492582451552153, -0.008502490818500519, 0.037907496094703674, -0.010504648089408875, -0.02171672321856022, -0.004014323931187391, 0.015803689137101173, 0.03392987698316574, 0.011105294339358807, -0.011525747366249561, 0.005769547540694475, 0.011071925051510334, 0.004771806299686432, 0.03966939449310303, -0.0012354974169284105, -0.023812314495444298, -0.011091946624219418, -0.030539561063051224, -0.0071410248056054115, -0.010377844795584679, 0.0005163895548321307, 0.006440270226448774, 0.03809436410665512, -0.001585874822922051, 0.014962783083319664, -0.014589047059416771, -0.02378561906516552, -0.015817036852240562, 0.011225423775613308, 0.012820475734770298, -0.0009068100480362773, -0.018526621162891388, -0.03934904932975769, 0.049706872552633286, 0.008882900699973106, 0.04714411124587059, 0.034570567309856415, -0.00504209753125906, 0.04271267354488373, 0.022904669865965843, -0.026028035208582878, -0.009703785181045532, -0.002928153844550252, -0.01404179073870182, 0.021743418648838997, -0.05384466052055359, -0.008602598682045937, -0.011652550660073757, -0.032862063497304916, -0.007741671986877918, -0.004845218732953072, -0.08264902234077454, 0.03438369929790497, 0.03646594285964966, -0.051361989229917526, 0.02973869815468788, -0.01862005516886711, 0.006860722787678242, -0.004091073293238878, -0.014829305931925774, 0.02182350493967533, -0.030966687947511673, 0.01027773693203926, -0.01987474039196968, -0.02700241655111313, -0.05245650187134743, -0.04327327385544777, 0.018526621162891388, -0.024226093664765358, -0.0025544180534780025, 0.0017118437681347132, 0.0151629988104105, -0.01405513845384121, 0.013694750145077705, -0.012820475734770298, 0.01064479909837246, -0.00438472256064415, -0.0002561091969255358, 0.005913035478442907, 0.0008213012479245663, 0.0014065149007365108, 0.025761080905795097, 0.0007912689470686018, 0.01640433631837368, -0.005032086744904518, -0.030325997620821, -0.002869757590815425, 0.005405822303146124, 0.005208943970501423, -0.025373997166752815, -0.04813184216618538, -0.007614868693053722, -0.03892192244529724, 0.00080878782318905, 0.019007138907909393, 0.0114790303632617, 0.012693672440946102, -0.024973565712571144, -0.0012004596646875143, -0.045008476823568344, 0.013961704447865486, -0.027442891150712967, -0.022143850103020668, -0.02086247131228447, -0.009984087198972702, 0.054458655416965485, 0.0013497871113941073, -0.008175472728908062, 0.004868577234447002, 0.007948561571538448, -0.01236665342003107, -0.035131171345710754, 0.03590533882379532, 0.03299554064869881, 0.006820679642260075, 0.0074747176840901375, 0.014081833884119987, -0.026228250935673714, -0.00833564531058073, -0.031927723437547684, 0.0049853697419166565, 0.00026695418637245893, 0.0016701321583241224, -0.04911957308650017, -0.028831053525209427, -0.012386674992740154, -0.025200476869940758, 0.022611020132899284, -0.01585707999765873, -0.017432108521461487, -0.013541251420974731, 0.014121877029538155, -0.0007954401080496609, 0.01460239477455616, -0.0196077860891819, 0.021169468760490417, -0.01488269679248333, 0.001811951631680131, 0.0013339368160814047, -0.007274501956999302, 0.015883775427937508, 0.04343344643712044, 0.04543560370802879, 0.016657942906022072, 0.012960626743733883, -0.021356336772441864, 0.05734176188707352, -0.0036072186194360256, 0.01653781346976757, 0.025133738294243813, 0.030325997620821, -0.016083991155028343, 0.03211459144949913, -0.008869552984833717, 0.02378561906516552, -0.011131989769637585, 0.013387752696871758, -0.010377844795584679, 0.001499948906712234, 0.03571847081184387, 0.054031528532505035, 0.0030966687481850386, 0.005235639400780201, -0.0012221497017890215, -0.009410135447978973, 0.007327892817556858, 0.006063197273761034, 0.011886135675013065, 0.010331127792596817, 0.002606140449643135, 0.00868268497288227, 0.019834697246551514, -0.001305572921410203, -0.04773141071200371, -0.02462652511894703, -0.03571847081184387, 0.025680994614958763, 0.014415526762604713, 0.009276658296585083, -0.0061599682085216045, 0.028297144919633865, -0.06406901031732559, -0.006029827985912561, -0.009770523756742477, 0.022223936393857002, 0.002457647118717432, 0.007040916942059994, 0.012406696565449238, -0.027442891150712967, -0.03296884521842003, 0.02419939823448658, 0.029818784445524216, -0.011038555763661861, 0.005352431908249855, -0.023411883041262627, -0.02071564644575119, -0.01002413034439087, 0.005969763267785311, 0.02322501502931118, -0.03326249495148659, -0.010684842243790627, -0.021770114079117775, 0.04378048703074455, -0.005415833089500666, -0.025387344881892204, -0.004815186373889446, 0.002651188988238573, -0.01569690741598606, -0.013167515397071838, -0.005289030261337757, -0.03115355409681797, -0.00863596796989441, -0.026895634829998016, -0.005502593237906694, -0.002841393696144223, -0.049973826855421066, -0.013854922726750374, 0.02867088094353676, -0.014789262786507607, 0.029925566166639328, 0.008996356278657913, -0.013247601687908173, 0.02421274594962597, -0.020902514457702637, -0.02867088094353676, 0.014135224744677544, -0.034837521612644196, -0.008095386438071728, -0.0539514422416687, 0.040550343692302704, 0.004928641952574253, 0.007274501956999302, 0.01795266941189766, 0.007494739256799221, 0.014989478513598442, -0.022344065830111504, 0.03494430333375931, -0.0016893194988369942, -0.016804765909910202, -0.024719959124922752, 0.01502952165901661, -0.024679915979504585, 0.015670211985707283, 0.0119662219658494, 0.014722524210810661, -0.014482265338301659, 0.007327892817556858, 0.03489091247320175, 0.0025177118368446827, -0.014549003913998604, -0.022290674969553947, -0.019394222646951675, -0.0162575114518404, -0.029845479875802994, -0.0031417172867804766, -0.001716849161311984, -0.027149241417646408, 0.044207613915205, -0.044581349939107895, -0.019527699798345566, 0.011946200393140316, -0.024813393130898476, 0.01153909508138895, 0.018313057720661163, 0.012500130571424961, -0.004127779509872198, -0.00967041589319706, 0.015109607949852943, -0.003910879138857126, 0.00615329435095191, 0.020502083003520966, 0.0023341807536780834, -0.01175933238118887, 0.009363418444991112, 0.018726836889982224, 0.012086351402103901, 0.016190772876143456, -0.020889166742563248, 0.03158068284392357, -0.028457317501306534, -0.00020772372954525054, -0.014802610501646996, -0.0038608252070844173, 0.007181067951023579, 0.004828534089028835, -0.005469223950058222, 0.0007612365880049765, -0.032621804624795914, -0.018553316593170166, -0.001572527107782662, 0.013708097860217094, 0.0018736848141998053, 0.022450847551226616, -0.013814879581332207, -0.011605833657085896, -0.013014017604291439, 0.03571847081184387, -0.014989478513598442, 0.028270449489355087, 0.033155713230371475, 0.009383440017700195, 0.03256841376423836, 0.04159146547317505, 0.007448022253811359, 0.02115612104535103, 0.014508960768580437, 0.016858156770467758, -0.018299710005521774, -0.009343396872282028, 0.03059295192360878, -0.009069768711924553, 0.0017118437681347132, 0.0006381873972713947, 0.00924328900873661, 0.03099338337779045, -0.03534473478794098, -0.006443607155233622, -0.014362135902047157, 0.007748345844447613, -0.00716772023588419, 0.025560865178704262, -0.007875149138271809, 0.012206480838358402, -0.01286719273775816, 0.02585451491177082, 0.005045434460043907, 0.008849531412124634, 0.033289190381765366, 0.014909392222762108, 0.028857748955488205, -0.0069474829360842705, 0.017899278551340103, -0.021730070933699608, -0.005846296902745962, 0.0044848304241895676, 0.020261824131011963, 0.00295484927482903, -0.007100981660187244, 0.015229737386107445, -0.030913297086954117, 4.046024696435779e-05, 0.001459905761294067, 0.013975052163004875, 0.012113046832382679, -0.002682889811694622, 0.005602701101452112, 0.010471278801560402, 0.0007070114952512085, 0.03689306974411011, 0.026041382923722267, -0.04167155176401138, 0.04674367979168892, -0.04949330911040306, 0.024920174852013588, 0.01336105726659298, -0.003994302358478308, 0.0018319732043892145, -0.0020088304299861193, 0.008502490818500519, -0.013160841539502144, -0.034437090158462524, 0.021529855206608772, -0.0064169117249548435, 0.0010945121757686138, -0.018820270895957947, -0.025000261142849922, 0.0040176608599722385, -0.0020472051110118628, -0.008629294112324715, 0.013541251420974731, 0.0028480675537139177, -0.012193133123219013, 0.0615062490105629, -0.018473230302333832, 0.011145337484776974, -0.021596593782305717, -0.005022075958549976, 0.006583757698535919, 0.0040643778629601, -0.006510345730930567, 0.01891370490193367, -0.013514555990695953, 0.013507882133126259, 0.0272827185690403, -0.004224549978971481, 0.0018670109566301107, 0.015616820193827152, 0.023852357640862465, 0.01514965109527111, 0.021503159776329994, -0.03264850005507469, 0.022357413545250893, -0.010578060522675514, 0.016631247475743294, -0.009089790284633636, 0.022837931290268898, 0.005032086744904518, 0.018152885138988495, -0.0015149650862440467, 0.028991226106882095, -0.008062017150223255, -0.006553725805133581, -0.018513273447752, -0.002497690264135599, 0.005943067837506533, 0.009683763608336449, 0.0027045796159654856, 0.017432108521461487, -0.029418352991342545, -0.03184763714671135, -0.03806766867637634, -0.03953591734170914, -0.009370092302560806, -0.03657272458076477, -0.004738437011837959, -0.02363879419863224, 0.05352431535720825, -0.034009963274002075, -0.00272960658185184, 0.0055159409530460835, -0.0032635151874274015, -0.018940400332212448, 0.019380874931812286, 0.017472151666879654, -0.02712254598736763, 0.006630474701523781, -0.02225063182413578, 0.023398535326123238, -0.007835105992853642, -0.017205197364091873, -0.020809080451726913, 0.036786288022994995, -0.03772062808275223, 0.046957243233919144, 0.01336105726659298, -0.018166232854127884, -0.023265058174729347, 0.003950922284275293, 0.008435752242803574, -0.00468838308006525, -0.009817240759730339, -0.005058782175183296, 0.034410394728183746, 0.014428874477744102, 0.006136609707027674, -0.008495816960930824, 0.029284875839948654, -0.021516507491469383, 0.039562612771987915, 0.008295602165162563, 0.015883775427937508, 0.016190772876143456, -0.03278197720646858, -0.02015504240989685, 0.0161373820155859, -0.02516043372452259, 0.017445456236600876, -0.01342112198472023, 0.0029698654543608427, 0.011131989769637585, -0.027162589132785797, -0.001721854554489255, -0.004461471922695637, 0.003270189044997096, -0.022771192714571953, 0.0042912885546684265, 0.01167257223278284, -0.010124238207936287, -0.015883775427937508, 0.016017252579331398, 0.004845218732953072, 0.02253093384206295, -0.0322747640311718, 0.006200011353939772, 0.0022624367848038673, 0.024172702804207802, -0.01976795867085457, 0.0017051699105650187, 0.013334361836314201, 0.05315057933330536, -0.03174085542559624, 0.041084252297878265, 0.017085067927837372, -0.001468248083256185, 0.01077160146087408, 0.029017921537160873, -0.0014849327271804214, -0.02112942561507225, 0.049573395401239395, 0.005525951739400625, -0.01202628668397665, -0.029551830142736435, -0.002946506952866912, 0.005859644617885351, 0.001667629461735487, -0.001851994777098298, 0.015963861718773842, 0.0361722931265831, -0.0031867658253759146, 0.03542482107877731, 0.04255250096321106, 0.02641511708498001, 0.02738950029015541, 0.0033335904590785503, -0.030566256493330002, 0.012500130571424961, -0.007968583144247532, -0.034997694194316864, -0.006093229632824659, 0.004441450349986553, -0.0559002086520195, 0.025654299184679985, -0.03675959259271622, 0.021596593782305717, -0.030966687947511673, 0.020328562706708908, 0.0012546847574412823, -0.0019220702815800905, 0.016190772876143456, 0.010464604943990707, -0.008709380403161049, -0.012446739710867405, -0.0058763292618095875, 0.022904669865965843, -0.0249068271368742, 0.007254480384290218, -0.011859440244734287, -0.00916987657546997, 0.008469121530652046, -0.0013439474860206246, -0.017712410539388657, 0.05170902982354164, 0.03820114582777023, 0.013521229848265648, -0.007154372520744801, 0.016217468306422234, -0.03171415999531746, -0.017592281103134155, -0.0003925061027985066, -0.00017299882892984897, 0.014922739937901497, -0.01252682600170374, 0.027095850557088852, -0.011218749918043613, 0.00019927714311052114, 0.007448022253811359, -0.0028931160923093557, 0.037907496094703674, -0.008936291560530663, 0.003937574569135904, -0.0025177118368446827, 0.021196164190769196, 0.015923818573355675, 0.0006995034054853022, -0.0024926848709583282, 0.010431235656142235, 0.004084399435669184, 0.01153909508138895, 0.0025627603754401207, 0.012973974458873272, -0.016577856615185738, -0.0007845950894989073, 0.027763236314058304, -0.021476464346051216, 0.00952359102666378, 0.003840803634375334, 0.025761080905795097, -0.02241080440580845, 0.03961600363254547, -0.005135531537234783, -0.06155963987112045, 0.01202628668397665, -0.0013931671855971217, -0.00015120452735573053, 0.034970998764038086, 0.017565585672855377, 0.0161373820155859, 0.021035991609096527, 0.06107912212610245, 0.02904461696743965, -0.03029930219054222, -0.006343499291688204, 0.010751579888164997, -0.022077111527323723, 0.02269110642373562, -0.047651324421167374, 0.013227580115199089, -0.005582679528743029, 0.01835310086607933, 0.036385856568813324, 0.012987322174012661, -0.022010372951626778, 0.017058372497558594, -0.011766006238758564, -0.022851279005408287, 0.015243085101246834, 0.010297758504748344, 0.031634073704481125, 0.046102989464998245, 0.01021767221391201, -0.03270189091563225, 0.00939011387526989, 0.007387957535684109, -0.038468100130558014, -0.00681400578469038, 0.012807128019630909, 0.025614256039261818, -0.019781306385993958, -0.011972895823419094, -0.02363879419863224, 0.027629759162664413, 0.014442222192883492, -0.0047918278723955154, -0.0275229774415493, -0.01725858822464943, -0.014228658750653267, 0.004564916715025902, 0.00805534329265356, -0.01667129062116146, -0.014775915071368217, -0.01002413034439087, -0.011959548108279705, -0.01891370490193367, -0.027843322604894638, 0.01947430893778801, 0.0026762159541249275, -0.021182816475629807, -0.0006381873972713947, 0.028857748955488205, 0.00542250694707036, -0.030512865632772446, -0.04714411124587059, -0.004227886907756329, 0.05691463500261307, -0.04036347568035126, 0.005886340048164129, -0.009570308029651642, 0.004261256195604801, 0.016457727178931236, 0.028617490082979202, 0.039028704166412354, -0.012179785408079624, -0.013254275545477867, 0.051095034927129745, 0.03459726274013519, 0.027069155126810074, -0.021730070933699608, -0.01820627599954605, 0.005419170018285513, 0.025534169748425484, 0.004952000454068184, 0.05509934574365616, 0.0071143293753266335, -0.00786180142313242, 0.007207763381302357, -0.02379896678030491, -0.03318240866065025, -0.03958930820226669, 0.026521898806095123, -0.015456648543477058, -0.006436933297663927, 0.0031917712185531855, -0.013180863112211227, 0.0077616930939257145, 0.022090459242463112, -0.00466502457857132, -0.01779249683022499, -0.022504238411784172, -0.03368961811065674, -0.024506395682692528, -0.01656450890004635, 0.02171672321856022, -0.012079677544534206, -0.02403922565281391, -0.016938243061304092, -0.0062367175705730915, 0.012546847574412823, 0.011492378078401089, 0.00417449651286006, -0.006356847006827593, 0.04172494262456894, -0.014575699344277382, 0.020475387573242188, -8.410099690081552e-05, 0.02530725859105587, -0.004358027130365372, 0.0013114125467836857, 0.005028749816119671, 0.008916269987821579, 0.007254480384290218, -0.016310902312397957, -0.012613586150109768, 0.017565585672855377, -0.0013531240401789546, 0.03515786677598953, -0.030512865632772446, 0.007327892817556858, 0.0197279155254364, -0.013988399878144264, 0.0006995034054853022, -0.005499256309121847, 0.000944350496865809, 0.01390831358730793, 0.0011504057329148054, -0.0047284262254834175, -0.026508551090955734, -0.0050888145342469215, -0.028991226106882095, -0.005412496160715818, 0.015469996258616447, -0.009303353726863861, -0.04212537407875061, -0.010584734380245209, -0.0023792292922735214, 0.018806923180818558, -0.012740389443933964, 0.025133738294243813, -0.025080347433686256, 0.029872175306081772, 0.021783461794257164, 0.0026728790253400803, -0.0034053344279527664, -0.00805534329265356, 0.011378922499716282, -0.017725758254528046, -0.018299710005521774, -0.016778070479631424, -0.0048819249495863914, -0.014789262786507607, -0.022197240963578224, 0.010377844795584679, -0.006220032926648855, 0.03689306974411011, 0.02363879419863224, -0.007601520977914333, -0.0044447872787714005, -0.011786027811467648, 0.000605652341619134, 0.00868268497288227, -0.03409004956483841, -0.023705532774329185, 0.002430951688438654, 0.008115408010780811, -0.0008379858918488026, 0.015923818573355675, 0.039429135620594025, -0.015109607949852943, -0.014148572459816933, 0.019554395228624344, -0.02265106327831745, -0.01987474039196968, 0.011158685199916363, -0.015229737386107445, -0.010584734380245209, 0.003063299460336566, 0.0053757899440824986, 0.006577083840966225, 0.04434109106659889, 0.004181169904768467, -0.0003149225376546383, -0.024292832240462303, -0.0032017820049077272, -0.01300066988915205, 0.006276760715991259, -0.027336109429597855, 0.02042199671268463, -0.0719708502292633, -0.02366548962891102, -0.012933931313455105, 0.001671800622716546, 0.005265671759843826, 0.009296679869294167, 0.010698189958930016, 0.03072642907500267, -0.011091946624219418, 0.030833210796117783, 0.012933931313455105, -0.010838340036571026, 0.04076390713453293, 0.02072899416089058, -0.0037306849844753742, 0.005522614810615778, -0.013801531866192818, -0.014495613053441048, 0.015776993706822395, -0.022837931290268898, -0.009403461590409279, 0.023598751053214073, 0.02294471301138401, -0.006787310354411602, -0.016377640888094902, 0.03195441886782646, -0.013087430037558079, 0.013027365319430828, -0.009310027584433556, -0.0275229774415493, 0.013327687978744507, 0.013601316139101982, -0.01377483643591404, -0.003920889925211668, 0.009490221738815308, 0.01134555321186781, 0.007941887713968754, 0.004104421008378267, 0.014762567356228828, 0.012106372974812984, 0.010544691234827042, 0.020662255585193634, -0.00014390499563887715, -0.0007566483109258115, -0.0024876794777810574, -0.011312183924019337, -0.024519743397831917, -0.018593359738588333, 0.014095181599259377, 0.002734611975029111, 0.001368974451906979, -0.0012888882774859667, -0.021930286660790443, -0.014482265338301659, -0.0017151806969195604, 0.012640281580388546, 0.003520458471029997, -0.006203348282724619, -0.007441348396241665, -0.003740695770829916, 0.0414045974612236, 0.021463118493556976, -0.012873866595327854, 0.0013139152433723211, -0.0015566766960546374, 0.011225423775613308, 0.002702911151573062, 0.010384518653154373, 0.008869552984833717, 0.004685046151280403, 0.014922739937901497, 7.398593879770488e-05, 0.001002746750600636, 0.008709380403161049, 0.015269780531525612, 0.009843936190009117, 0.021783461794257164, 0.004314647056162357, -0.0026762159541249275, -0.007708302699029446, -0.021863548085093498, -0.00896298699080944, 0.023892400786280632, 0.011205402202904224, -0.010251041501760483, -0.01209969911724329, -0.004584938287734985, -0.023291753605008125, 0.00033223285572603345, 0.00793521385639906, 0.014268701896071434, 0.001441552652977407, 0.027870018035173416, 0.00660711620002985, -0.013394426554441452, 0.023825662210583687, 0.014095181599259377, -0.016791418194770813, 0.018740184605121613, 0.0034270244650542736, -0.0005472560878843069, -0.03419683128595352, -0.009543612599372864, -0.018513273447752, -0.011412291787564754, 0.0021723397076129913, -0.013487860560417175, 0.021329641342163086, -0.018112841993570328, -0.010678168386220932, -0.004888598807156086, 0.02713589370250702, -0.01119872834533453, -0.022090459242463112, -0.01064479909837246, 0.017191849648952484, -0.019367527216672897, 0.0033018896356225014, -0.01445556990802288, 0.010724885389208794, 0.007147698663175106, 0.01962113380432129, 0.002869757590815425, -0.032328154891729355, -0.0020905849523842335, 0.0003551742120180279, 0.001255518989637494, -0.005195596255362034, -0.011145337484776974, 0.021463118493556976, 0.011899483390152454, 0.02043534442782402, -0.016190772876143456, 0.003937574569135904, -0.007468043826520443, 0.01279378030449152, 0.018393144011497498, -0.014215311035513878, 0.030352693051099777, -0.013894965872168541, 0.0038107712753117085, -0.0030115770641714334, -0.010457931086421013, -0.008108734153211117, 0.0008204670157283545, 0.014535656198859215, 0.003457056824117899, -0.010524669662117958, -0.008308949880301952, -0.020114999264478683, -0.00967041589319706, 0.02055547386407852, 0.029712002724409103, 0.026388421654701233, 0.002769649727270007, -0.03603881597518921, -0.0175388902425766, 0.003937574569135904, -0.010671494528651237, -0.006967504508793354, -0.028857748955488205, 0.017485499382019043, 0.012259871698915958, -0.00601981719955802, 0.0011962885037064552, -0.027202632278203964, -0.022851279005408287, -0.0023875716142356396, -0.010938447900116444, -0.015376562252640724, 0.0048952726647257805, 0.00835566595196724, -0.02529391087591648, -0.005636070389300585, 0.011472356505692005, -0.016204120591282845, -0.006874070502817631, -0.017151806503534317, 0.021209511905908585, -0.007401305250823498, -0.014842653647065163, 0.012193133123219013, -0.014161920174956322, 0.016911547631025314, 0.0007587338914163411, -0.0030215878505259752, -0.003230145899578929, 0.008088712580502033, 0.01740541309118271, 0.0011821065563708544, 0.007421326823532581, 0.0027462912257760763, -0.014722524210810661, 0.004167822655290365, -0.016097338870167732, 0.007915192283689976, 0.029311571270227432, 0.007588173262774944, -0.0004876085149589926, 0.00393090071156621, -0.028457317501306534, -0.02700241655111313, 0.006914113648235798, 0.016577856615185738, -0.0033769705332815647, 0.004978695884346962, -0.016177425161004066, 0.005349094979465008, 0.026068078354001045, -0.0275229774415493, -0.004955337382853031, 0.009383440017700195, 0.023265058174729347, 0.003353612031787634, -0.007421326823532581, -0.005475897807627916, 0.0038474774919450283, -0.02003491297364235, 0.030112434178590775, 0.000619000056758523, 0.03601212054491043, -0.012113046832382679, -0.0008859542431309819, -0.004825197160243988, -0.00208891648799181, 0.0013998410431668162, 0.012353305704891682, -0.02087581902742386, -0.013634685426950455, 0.002838056767359376, -0.02237076126039028, 0.022477542981505394, -0.0030215878505259752, -0.007221111096441746, -0.0314205102622509, 0.0005084643489681184, 0.026748809963464737, -0.012460087426006794, 0.014081833884119987, -0.004494841210544109, -0.03267519548535347, -0.020889166742563248, -0.002656194381415844, -0.0019103910308331251, 0.03214128687977791, -0.0019187333527952433, -0.01628420688211918, 0.0002448470622766763, 0.0014223653124645352, 0.009370092302560806, 0.016043948009610176, -0.008248885162174702, -0.004271266981959343, 0.013167515397071838, -0.017445456236600876, -0.011499051935970783, 0.01740541309118271, -0.009149855002760887, 0.01404179073870182, -0.01918065920472145, -0.009343396872282028, 0.0022624367848038673, 0.02725602313876152, -0.015203041955828667, 0.031767550855875015, 0.007741671986877918, 0.0023508653976023197, 0.021609941497445107, 0.010691516101360321, 0.00545921316370368, -0.0038875204045325518, -0.004491504281759262, -0.036225683987140656, -0.022918017581105232, 0.021596593782305717, 0.0022123828530311584, 0.0016300891293212771, -0.016097338870167732, -0.010264389216899872, 0.0018953748513013124, -0.0018403155263513327, -0.005919709336012602, -0.012800454162061214, 0.010731559246778488, 0.009890653192996979, 0.01042456179857254, 0.017165154218673706, -0.0029581862036138773, 0.03505108505487442, -0.02072899416089058, 0.01655116118490696, 0.007614868693053722, 0.01070486381649971, -0.009003030136227608, 0.022837931290268898, -0.020341910421848297, 0.011519073508679867, 0.005622722674161196, 0.02126290276646614, -0.014976130798459053, 0.022731149569153786, -0.015817036852240562, -0.004658350721001625, -0.03342266380786896, -0.016177425161004066, -0.00019552309822756797, 0.018112841993570328, 0.00875609740614891, 0.010271063074469566, 0.014201963320374489, 0.004768469370901585, 0.020488735288381577, -0.013948356732726097, -0.009556960314512253, 0.017472151666879654, 0.004194517619907856, 0.006697213277220726, 0.0016117360210046172, -0.011525747366249561, -0.029578525573015213, -0.0029031268786638975, 0.0011153679806739092, 0.0470106340944767, -0.006306793075054884, -0.030966687947511673, -0.024519743397831917, -0.023411883041262627, -0.01808614656329155, 0.021796809509396553, 0.006276760715991259, 0.003401997499167919, 0.03310232236981392, -0.0005706145893782377, -0.025814471766352654, -0.002434288617223501, 0.006894092075526714, -0.008889574557542801, -0.006076544988900423, -0.007054264657199383, -0.0032601782586425543, -0.012179785408079624, 0.022424152120947838, 0.005586016457527876, 0.0006936637801118195, 0.014669133350253105, 0.010738232173025608, -0.00048594005056656897, 0.01571025513112545, 0.02015504240989685, -0.021930286660790443, 0.010678168386220932, 0.024306179955601692, -0.00015850405907258391, -0.023011451587080956, 0.010050825774669647, 0.030406083911657333, -0.0011787696275860071, 0.0013773167738690972, -0.032728586345911026, -0.025907905772328377, -0.03587864339351654, -0.014255354180932045, 0.0037473696283996105, 0.025827819481492043, -0.016858156770467758, 0.02183685265481472, 0.03657272458076477, -0.007241132669150829, 0.012493456713855267, -0.019941478967666626, -0.007694954983890057, 0.015456648543477058, -0.002299143001437187, -0.0005572668742388487, -0.008495816960930824, 0.00799527857452631, -0.01764567196369171, 0.012873866595327854, -0.010124238207936287, -0.02658863738179207, -0.000320762163028121, 0.005646081175655127, -0.031206944957375526, -0.00626341300085187, -0.02462652511894703, 0.002851404482498765, -0.017752453684806824, -0.008095386438071728, -0.004398070275783539, -0.009209919720888138, -0.004698393866419792, -0.00542250694707036, -0.0013439474860206246, 0.02309153787791729, 0.01181939709931612, 0.00965706817805767, -0.033476054668426514, -0.0026078089140355587, -0.0478648878633976, -0.0005414164625108242, -0.00784845370799303, -0.004541558213531971, 0.0006773962522856891, 0.01655116118490696, -0.00834899302572012, 0.015576777048408985, -0.0067038871347904205, 0.010678168386220932, -0.005692798178642988, -0.03766723722219467, -0.0017919300589710474, -0.0022440836764872074, -0.006166642066091299, -0.026174860075116158, -0.016070643439888954, -0.005479234736412764, -0.002739617368206382, 0.011872787959873676, 0.009717132896184921, -0.025814471766352654, -0.02030186727643013, -0.01106525119394064, 0.012219828553497791, -0.02933826670050621, -0.014589047059416771, 0.011218749918043613, -0.018473230302333832, 0.004748447798192501, 0.011645876802504063, -0.005636070389300585, 0.004988706670701504, 0.0002358790661673993, -0.00365059869363904, 0.007821758277714252, 0.04663689807057381, -0.006420248653739691, -0.015189694240689278, -0.014242006465792656, 0.009650394320487976, -0.029017921537160873, -0.027095850557088852, -0.029818784445524216, 0.006763951852917671, -0.015216389670968056, 0.022998103871941566, -0.021810157224535942, 0.018112841993570328, 0.009737154468894005, 0.01807279884815216, 0.012606912292540073, 0.008689358830451965, -0.0394558310508728, 0.019914783537387848, 0.0058763292618095875, 0.0012688667047768831, 0.006617126986384392, -0.004738437011837959, -0.009336723014712334, -0.018139537423849106, 0.035798557102680206, 0.020915862172842026, 0.0007854293216951191, -0.006753941066563129, 0.01285384502261877, -0.03529134392738342, 0.01727193593978882, 0.009396787732839584, -0.03128703311085701, -0.015403257682919502, -0.012293240986764431, 0.004271266981959343, -0.00021481470321305096, -0.018806923180818558, 0.009129833430051804, 0.013648033142089844, -0.0081287557259202, -0.010764927603304386, -0.002702911151573062, 0.007548130117356777, -0.02334514446556568, 0.017765801399946213, -0.014922739937901497, 0.019140616059303284, 0.004294625483453274, 0.0263083353638649, -0.005112173035740852, 0.0325150229036808, -0.011505725793540478, -0.024813393130898476, 0.036492638289928436, -0.015229737386107445, -0.004841881804168224, -0.024546438828110695, 0.022584324702620506, 0.017498847097158432, -0.01976795867085457, -0.012626933865249157, -0.005395811516791582, 0.03392987698316574, 0.0024426309391856194, 0.002264105249196291, -0.01683146134018898, -0.03742697834968567, 0.004935315810143948, 0.001481595798395574, -0.0033769705332815647, 0.018273014575242996, 0.018286362290382385, -0.0014432211173698306, 0.002449304796755314, -0.007568151690065861, -0.00032764457864686847, -0.012460087426006794, 0.007207763381302357, -0.015229737386107445, -0.008749423548579216, 0.030486170202493668, -0.007681607268750668, -0.03102007694542408, 0.009997434914112091, -0.018753532320261, -0.017285283654928207, -0.005429180804640055, -0.0077750408090651035, -0.0016684636939316988, -0.01300066988915205, -0.015590124763548374, 0.009410135447978973, -0.002981544705107808, -0.011078598909080029, -0.005012065172195435, -0.008175472728908062, 0.015469996258616447, -0.00361389247700572, 0.010404540225863457, -0.005672776605933905, 0.005362442694604397, 0.005122183822095394, -0.007274501956999302, 0.01112531591206789, -0.023411883041262627, -0.008582577109336853, 0.0026144827716052532, 0.0032001135405153036, -0.0036973156966269016, 0.058462969958782196, 0.004865240305662155, -0.004584938287734985, -0.003950922284275293, -0.0008826173143461347, -0.0007758356514386833, 0.011766006238758564, 0.021369684487581253, 0.02185020036995411, -0.015776993706822395, 0.0023975824005901814, -0.02349196933209896, 0.012747063301503658, -0.0019487655954435468, -0.013547925278544426, 0.012353305704891682, 0.020795732736587524, 0.015643516555428505, -0.008749423548579216, 0.013547925278544426, 0.019501004368066788, 0.002322501502931118, -0.012520152144134045, 0.012913909740746021, -0.013200884684920311, 0.005999795626848936, 0.0026578628458082676, 0.02682889625430107, -0.009710459038615227, 0.017485499382019043, 0.0008559218840673566, 0.020235128700733185, -0.023585403338074684, 0.014242006465792656, -0.008709380403161049, 0.024853436276316643, -0.00622670678421855, 0.02864418551325798, -0.020608864724636078, 0.010951795615255833, -0.0058763292618095875, -0.014655785635113716, 0.017765801399946213, 0.01807279884815216, -0.009617025032639503, -0.004014323931187391, -0.021930286660790443, 0.000636936048977077, 0.005916372407227755, -0.013521229848265648, -0.0063134669326245785, 0.0019103910308331251, -0.0043947333469986916, 0.010170955210924149, 0.0027412858325988054, -0.010931774042546749, 0.013240927830338478, 0.00023149934713728726, -0.0063268146477639675, 0.004007650073617697, -0.004851892590522766, -0.03128703311085701, -0.02142307534813881, -0.025974644348025322, 0.003717337269335985, -0.020528778433799744, 0.012566869147121906, -0.03849479556083679, 0.017031677067279816, 0.00023567050811834633, -0.0030015662778168917, 0.03481082618236542, -0.0011737642344087362, -0.012600238434970379, -0.008462447673082352, 0.018553316593170166, 0.004848555661737919, 0.01639098860323429, 0.0019304126035422087, -0.0036672833375632763, -0.007614868693053722, -0.00182529934681952, -0.012473435141146183, -0.01820627599954605, 0.004975358955562115, 0.00032827025279402733, 0.024092616513371468, -0.028297144919633865, 0.00466502457857132, 0.0005777055630460382, -0.021383032202720642, 0.01230658870190382, -0.014575699344277382, 0.021743418648838997, 0.0060565234161913395, -0.005482571665197611, -0.014535656198859215, -0.019861392676830292, 0.013881618157029152, 0.0021723397076129913, -0.008862879127264023, 0.011752658523619175, -0.007187741808593273, 0.010938447900116444, -0.013054060749709606, -0.018273014575242996, 0.02644181251525879, 0.02267775870859623, -0.016804765909910202, 0.006046512629836798, -0.006333488505333662, -0.016310902312397957, -0.0026395097374916077, -0.0260013397783041, -0.04370040073990822, 0.017432108521461487, 0.013521229848265648, -0.006380205508321524, 0.006510345730930567, -0.01807279884815216, -0.0026545259170234203, 0.0033068950287997723, -0.002102264203131199, -0.0026311674155294895, 0.0017101753037422895, 0.009770523756742477, -0.022010372951626778, -0.0033769705332815647, -0.014081833884119987, 0.004321320913732052, 0.004915294237434864, 0.010417887941002846, -0.002345860004425049, 0.00965706817805767, 0.015122955664992332, -0.009823914617300034, 0.00387750961817801, 0.0010544690303504467, 0.005295704118907452, -0.016791418194770813, 0.004571590572595596, 0.0009059758158400655, -0.0031367118936032057, 0.0130607346072793, -0.008429078385233879, -0.0051789116114377975, -0.014508960768580437, -0.01615072973072529, 0.0033052265644073486, -0.005292367190122604, 0.023718880489468575, -0.03732019662857056, 0.0017735769506543875, 0.015189694240689278, -0.005445865448564291, 0.005379126872867346, -0.017191849648952484, 0.013814879581332207, -0.00276631279848516, -0.0007883491343818605, 4.181587428320199e-05, -0.00027675641467794776, -0.010991838760674, 0.00255775498226285, -0.010751579888164997, 0.010911752469837666, 0.00577622139826417, 0.018967095762491226, 0.013921661302447319, 0.00021398047101683915, -0.012613586150109768, -0.00033786389394663274, 0.0018536632414907217, -0.019234050065279007, 0.015309823676943779, 0.015563429333269596, -0.005719493608921766, -0.005809590686112642, -0.022464195266366005, 0.01807279884815216, 0.021049339324235916, -0.008021974004805088, 0.019234050065279007, 0.003358617424964905, -0.005289030261337757, -0.016924895346164703, 0.005936393979936838, -0.02366548962891102, -0.01488269679248333, 0.021342989057302475, -0.022037068381905556, 0.01307408232241869, -0.0038508144207298756, -0.00601981719955802, -0.015950514003634453, 0.007801736239343882, 0.00091264967340976, 0.025387344881892204, 0.002128959633409977, -0.019634481519460678, 0.002511037979274988, 0.004054367076605558, 0.014936087653040886, -0.005409159231930971, 0.006156631279736757, 0.00011335125600453466, -0.012820475734770298, -0.012006265111267567, 0.002904795343056321, 0.014135224744677544, -0.0559002086520195, -0.024840088561177254, 0.010718211531639099, 0.013047386892139912, -0.02059551700949669, 0.021783461794257164, 0.012406696565449238, 0.007014221511781216, 0.042739368975162506, 0.01238000113517046, 0.021903591230511665, 0.004778480157256126, 0.010197650641202927, -0.018593359738588333, -0.017205197364091873, 0.01417526789009571, 0.010945121757686138, 0.013828227296471596, 0.01544330082833767, -0.012993996031582355, 0.03294214978814125, -0.010551365092396736, -0.004341342486441135, 0.011372248642146587, 0.014989478513598442, 0.008235537447035313, 0.010037478059530258, 0.012787106446921825, 0.005085477605462074, -0.010905078612267971, -0.009977413341403008, -0.002037194324657321, -0.020395301282405853, 0.007428000681102276, 0.007781714666634798, -0.007734998129308224, 0.01433544047176838, -0.005752862896770239, -0.015910470858216286, -2.2589434593101032e-05, 0.0076549118384718895, -0.001635094522498548, 0.0020538789685815573, -0.004121105652302504, 0.005919709336012602, 0.00805534329265356, 0.01230658870190382, 0.01474921964108944, 0.00933004915714264, -0.026815548539161682, -0.005325736477971077, 0.017752453684806824, -0.0031684127170592546, -0.002309153787791729, 7.044045196380466e-05, 0.01266030315309763, -0.03395657241344452, -0.00048468870227225125, -0.00863596796989441, 0.005112173035740852, -0.0007120168884284794, -0.006029827985912561, 0.02213050238788128, 0.018953748047351837, -0.007027569226920605, -0.0009468531934544444, 0.0040944102220237255, -0.005502593237906694, 0.01328764483332634, 0.0260013397783041, -0.011806049384176731, 0.009283332154154778, 0.010044151917099953, -0.015910470858216286, -0.003340264316648245, -0.03235485032200813, -0.008816162124276161, 0.0008329804986715317, -0.011432313360273838, -0.014575699344277382, 0.0023842346854507923, 0.004414754919707775, 0.015403257682919502, 0.003483752254396677, -0.010491300374269485, -0.012139742262661457, 0.006980852223932743, 0.01445556990802288, 0.0030332671012729406, 0.0039142160676419735, -0.015216389670968056, 0.010798296891152859, -0.008615946397185326, -0.021035991609096527, 0.016484422609210014, -0.0021806820295751095, -0.0008667669026181102, 0.009336723014712334, 0.004144464153796434, 0.0392155721783638, 0.009710459038615227, 0.009476874023675919, -0.02169002778828144, 0.004314647056162357, -0.022717801854014397, -0.0012388343457132578, -0.00019072626309935004, 0.018446534872055054, -0.007274501956999302, 0.0034236875362694263, 0.0064803133718669415, 0.007561477832496166, 0.0064703025855124, 0.014228658750653267, -0.0032835365273058414, 0.009323375299572945, 0.024279484525322914, 0.013868270441889763, 0.024826740846037865, -0.0009768855525180697, 0.01342112198472023, -0.008242211304605007, -0.028857748955488205, -0.00945017859339714, -0.0034670676104724407, 0.001495777745731175, -0.008248885162174702, -0.016164077445864677, -0.013454491272568703, -0.013294318690896034, -0.01959443837404251, -0.008001952432096004, 0.008869552984833717, -0.010017456486821175, 0.01167257223278284, 0.017979364842176437, 0.011719289235770702, -0.0062233698554337025, 0.02114277333021164, 0.009256636723876, 0.01113866362720728, 0.004731763154268265, 0.020408648997545242, 0.003335258923470974, -0.01903383433818817, 0.0072945235297083855, 0.0014090175973251462, 0.0005118012777529657, -0.009116485714912415, 0.023411883041262627, -0.022637715563178062, 0.032621804624795914, -0.01959443837404251, -0.010511321946978569, 0.012947279028594494, 0.0049086203798651695, -0.0230781901627779, 0.02379896678030491, -0.027015764266252518, -0.007234458811581135, 0.003904205048456788, -0.03339597210288048, -0.0018770217429846525, -0.011972895823419094, -0.011212076060473919, 0.006423585582524538, 0.006353510078042746, 0.0004876085149589926, -0.0129406051710248, 0.013307666406035423, 0.033449359238147736, 0.0007712473743595183, -0.008989682421088219, -0.0013406106736510992, -0.000989399035461247, 0.015002826228737831, -0.006046512629836798, 0.003920889925211668, 0.006900765933096409, -0.021796809509396553, 0.0006661341758444905, 0.007401305250823498, 0.012079677544534206, -0.018860314041376114, -0.0049987174570560455, -0.002611145842820406, -0.01892705261707306, 0.028590794652700424, 0.012767084874212742, -0.011725963093340397, -0.004541558213531971, -0.007014221511781216, 0.00863596796989441, 0.007034243084490299, -0.012887214310467243, -0.01417526789009571, -0.017285283654928207, 0.025947948917746544, 0.016577856615185738, -0.014028443023562431, 0.006089892704039812, 0.005729504395276308, 0.004047693219035864, 0.010538017377257347, 0.01125879306346178, -0.00026028035790659487, 0.01695159077644348, -0.008462447673082352, -0.0038241189904510975, 0.01780584454536438, 0.02516043372452259, 0.017885930836200714, 0.006783973425626755, -0.01328764483332634, 0.01640433631837368, 0.005956415552645922, 0.02811027690768242, 0.0010202656267210841, -0.00716772023588419, 0.024679915979504585, 0.004861903376877308, -0.017578933387994766, 0.003460393752902746, 0.007841779850423336, -0.024639872834086418, -0.014081833884119987, 0.011118642054498196, -0.03278197720646858, -0.009216593578457832, 0.0230781901627779, -0.01947430893778801, -0.01057138666510582, 0.012713694013655186, 0.016030600294470787, 0.01768571510910988, 0.0175388902425766, -0.00626341300085187, 0.014201963320374489, -0.005986447911709547, -0.0015983883058652282, -0.010591408237814903, 0.029284875839948654, 0.006623800843954086, 0.009483547881245613, -0.025787776336073875, 0.004448124207556248, -0.00730119738727808, -0.00017185175966005772, 0.03283536806702614, -0.02391909621655941, 0.014829305931925774, 0.005449202377349138, 0.01724524050951004, 0.014242006465792656, -0.017138458788394928, 0.004618307575583458, -0.0008826173143461347, 0.00024255290918517858, -0.0008150445646606386, -0.0009743827977217734, -0.01057138666510582, -0.007147698663175106, 0.02434622310101986, -0.008108734153211117, -0.019808001816272736, 0.008522512391209602, -0.02365214191377163, 0.007628216408193111, -0.002285795286297798, -0.010017456486821175, -0.02768315002322197, 0.002569434233009815, -0.01684480905532837, 0.006139946635812521, 0.024559786543250084, -0.004618307575583458, -0.011158685199916363, 0.017765801399946213, 0.008589250966906548, -0.011919504962861538, 0.005299041047692299, 0.007000873796641827, 0.0036072186194360256, -0.0036806310527026653, 0.012413370423018932, 0.0009727143333293498, -0.01348118670284748, 0.045569080859422684, -0.0074747176840901375, -0.02182350493967533, 0.011605833657085896, -0.015750298276543617, -0.012900562025606632, 0.02126290276646614, 3.850501525448635e-05, 0.008502490818500519, -0.0006215027533471584, 0.004838544875383377, 0.00784845370799303, 0.011459008790552616, 0.012813801877200603, -0.018673446029424667, -0.003920889925211668, 0.007701628841459751, -0.003627240192145109, 0.014121877029538155, -0.0012413370423018932, 0.012193133123219013, 0.029391657561063766, 0.01474921964108944, 0.00946352630853653, -0.009990761056542397, 0.008582577109336853, 0.0006169144762679935, 0.009703785181045532, 0.005445865448564291, 0.007234458811581135, -0.0067672887817025185, 0.0051789116114377975, 0.010798296891152859, -0.0039909654296934605, 0.01709841564297676, 0.004861903376877308, -0.008836183696985245, 0.000298237893730402, 0.009269984439015388, 0.013220906257629395, 0.002526054158806801, 0.026908982545137405, -0.020755689591169357, -0.00674059335142374, 0.00910981185734272, 0.013841575011610985, -0.00814210344105959, -0.017605628818273544, -0.01161250751465559, -0.018273014575242996, -0.01628420688211918, -0.0052690086886286736, 0.008062017150223255, -0.012486782856285572, 0.0023258384317159653, 0.019140616059303284, 0.0009226604597643018, 0.00995071791112423, -0.006129935849457979, 0.0029264853801578283, -0.002147312741726637, 0.014495613053441048, 0.017085067927837372, -0.006577083840966225, -0.019634481519460678, -0.004911957308650017, 0.009163202717900276, -0.03462395817041397, -0.0072945235297083855, 0.009436830878257751, 0.02016839012503624, -0.005923046264797449, 0.003957596141844988, -0.0008012797334231436, -0.007788388524204493, -0.017352022230625153, -0.007734998129308224, 0.00227745296433568, 0.006590431556105614, 6.605421731364913e-06, -0.012693672440946102, 0.012833823449909687, 0.001915396424010396, 0.0026862265076488256, -0.02366548962891102, -0.02158324606716633, -0.0018136200960725546, -0.003940911497920752, 0.02920478954911232, 0.006033164914697409, -0.0025310595519840717, -0.004601622931659222, -0.02086247131228447, 0.007988604716956615, -0.0074613699689507484, -0.004801838658750057, 0.0049853697419166565, 0.0008976334938779473, -0.0204620398581028, -0.005989784840494394, 0.0018186254892498255, 0.004581601358950138, -0.02071564644575119, 0.005519277881830931, 0.0006527864607051015, -0.0038141082040965557, 0.00042545824544504285, 0.020061608403921127, -0.003587197046726942, -0.009850610047578812, -0.033289190381765366, -0.008175472728908062, -0.011045229621231556, -0.01181939709931612, 0.00973048061132431, 0.01697828620672226, -0.008409056812524796, -0.007734998129308224, -0.002023846609517932, 0.029445048421621323, -0.0207022987306118, 0.023278405889868736, -0.011298836208879948, -0.006293445359915495, -0.014909392222762108, 0.004898609593510628, 0.008869552984833717, 0.004331331700086594, -0.005505930166691542, 0.015349866822361946, 0.009783871471881866, 0.00868268497288227, -0.022090459242463112, -0.001441552652977407, 0.011619181372225285, 0.0032368197571486235, -0.02140972763299942, 0.014909392222762108, -0.01862005516886711, -0.01890035718679428, -0.011719289235770702, -0.006003132555633783, -0.023305101320147514, 0.017458803951740265, -0.023598751053214073, -0.005549310240894556, -0.006113251205533743, 0.01027773693203926, -0.008836183696985245, 0.009723806753754616, -0.01569690741598606, -0.005525951739400625, 0.01751219481229782, -0.0015516713028773665, 0.023812314495444298, -0.011078598909080029, 0.011372248642146587, -0.00022294846712611616, 0.00024359569943044335, 0.009570308029651642, -0.03646594285964966, 0.019434265792369843, 0.009176550433039665, -0.010958469472825527, -0.020061608403921127, -0.007247806526720524, 0.018553316593170166, 0.005082140676677227, -0.015256432816386223, 0.010531343519687653, 0.006500334944576025, 0.017138458788394928, -0.0023191645741462708, -0.005589353386312723, 0.02142307534813881, -0.0294717438519001, 0.010190976783633232, -0.0058763292618095875, -0.005672776605933905, -0.01696493849158287, -0.008062017150223255, -0.0062233698554337025, -0.042205460369586945, -0.0021673343144357204, 0.0024459678679704666, -0.005372453015297651, 0.0041878437623381615, -1.6358764696633443e-05, -0.0009101469768211246, -0.016204120591282845, -0.019020486623048782, -0.014348788186907768, 0.02989887073636055, -0.025280563160777092, -0.014375483617186546, -0.008462447673082352, 0.007354588247835636, 0.007201089523732662, -0.0045348843559622765, -0.02907131239771843, -0.0031634073238819838, -0.010744906030595303, -7.04925914760679e-05, -0.027709845453500748, -0.008162125013768673, 0.020675603300333023, -0.004911957308650017, 0.005155553109943867, -0.01195287425071001, 0.00743467453867197, 0.007060938514769077, 0.0015107939252629876, -0.0071276770904660225, 0.02700241655111313, 0.028056886047124863, 0.003348606638610363, 0.008862879127264023, -0.019714567810297012, -0.018433187156915665, 0.031206944957375526, -0.010504648089408875, -0.0018786902073770761, 0.014201963320374489, 0.006640485487878323, 0.0011061914265155792, -0.005108836106956005, 0.007721650414168835, 0.008969660848379135, 0.0035037738271057606, 0.0030799841042608023, 0.01112531591206789, -0.008402382954955101, 0.0037306849844753742, 0.007361262105405331, -0.0009960728930309415, -0.02656194195151329, 0.0025377334095537663, -0.006854048930108547, -0.010891730897128582, 0.012206480838358402, -0.017752453684806824, 0.018326405435800552, 0.012446739710867405, -0.02337183989584446, -0.007868475280702114, 0.0016793087124824524, 0.009944044053554535, 0.017472151666879654, -0.03208789601922035, 0.005552647169679403, 0.0012238181661814451, 0.009817240759730339, 0.006266749929636717, -0.01779249683022499, -0.014522308483719826, 0.020101651549339294, -0.003947585355490446, -0.009483547881245613, -0.0032318143639713526, 0.012713694013655186, 0.01947430893778801, 0.0077750408090651035, 0.010317780077457428, 0.011959548108279705, -0.0012621928472071886, -0.014522308483719826, 0.012239850126206875, 0.006723908707499504, 0.01473587192595005, 0.012226502411067486, -0.006059860344976187, -0.007040916942059994, 0.013040713034570217, 0.021516507491469383, -0.014482265338301659, 0.009750502184033394, -0.00012649041309487075, 0.0074613699689507484, -0.016337597742676735, 0.0058896769769489765, 0.006093229632824659, 0.003380307462066412, 0.006423585582524538, 0.013734793290495872, 0.015670211985707283, -0.024172702804207802, -0.01252682600170374, -0.01583038456737995, -0.014095181599259377, 0.014308745041489601, 0.004057704005390406, 0.025387344881892204, 0.006089892704039812, 0.0030916633550077677, 0.0044447872787714005, -0.018179580569267273, -0.007988604716956615, 0.015963861718773842, -0.000831729150377214, 0.013581294566392899, -0.011098620481789112, -0.013314340263605118, 0.004147801082581282, 0.02322501502931118, 0.01990143582224846, -0.00013253858196549118, 0.005262334831058979, -0.008175472728908062, 0.023612098768353462, -0.020809080451726913, 0.003095000283792615, -0.00953693874180317, 0.001960444962605834, 0.021930286660790443, 0.0052690086886286736, -0.014068486168980598, -0.01404179073870182, 0.0004680040874518454, 0.018299710005521774, -0.0005038760718889534, -0.027896713465452194, -0.006466965656727552, 0.022183893248438835, -0.033315885812044144, 0.001987140392884612, 0.005222291685640812, -0.01795266941189766, -0.028564099222421646, 0.0051789116114377975, 0.014402179047465324, -0.01049797423183918, 0.01473587192595005, 0.013561272993683815, -0.015750298276543617, 0.004344679415225983, -0.02056882157921791, 0.02474665455520153, 0.009910674765706062, -0.024586481973528862, -0.005933057051151991, -0.019581090658903122, 0.020488735288381577, 0.00799527857452631, 0.011212076060473919, -0.02672211453318596, 0.0032184666488319635, -0.006563736125826836, -0.008849531412124634, 0.0033102319575846195, -0.011085272766649723, 0.01364135928452015, -0.020061608403921127, -0.02030186727643013, -0.005485908593982458, 0.013894965872168541, -0.013561272993683815, 0.0097438283264637, -0.016017252579331398, 0.008969660848379135, -0.014442222192883492, -0.0012730378657579422, 0.021596593782305717, -0.013387752696871758, 0.017031677067279816, 0.006687202490866184, 0.02294471301138401, 0.00896298699080944, 0.00835566595196724, -0.014095181599259377, 0.0005017904913984239, 0.00015547996736131608, -0.014936087653040886, -0.013114125467836857, -0.0060698711313307285, -0.018606707453727722, 0.013814879581332207, 0.007868475280702114, 0.023118233308196068, -0.002362544648349285, 0.0010152602335438132, -0.003934237640351057, -0.02043534442782402, 0.004768469370901585, -0.011826070956885815, -0.011725963093340397, 0.025120390579104424, -0.0013589636655524373, -0.01529647596180439, -0.011659224517643452, 0.004735100083053112, -0.011792701669037342, 0.0037073264829814434, 0.024586481973528862, -0.01029108464717865, -0.009770523756742477, 0.016577856615185738, -0.013207558542490005, 0.010718211531639099, -0.011786027811467648, 0.017311979085206985, 0.002354202326387167, -0.004581601358950138, -0.022597672417759895, 0.0019404232734814286, 0.015456648543477058, -0.016497770324349403, -0.014802610501646996, -0.007728324271738529, 0.0016459394246339798, -0.04404744133353233, 0.008649315685033798, 0.018326405435800552, -0.008135429583489895, 0.000262157351244241, -0.0043546902015805244, 0.013341035693883896, 0.011752658523619175, 0.020074956119060516, -0.008282254450023174, 0.005549310240894556, -0.0035171215422451496, -0.00674059335142374, 0.0009159866021946073, 0.009009703993797302, -0.0011687588412314653, -0.0114790303632617, 0.01959443837404251, -0.004678372293710709, -0.00479850172996521, -0.01712511107325554, -0.011225423775613308, -0.007768366951495409, -0.007741671986877918, 0.021916938945651054, -0.002569434233009815, 0.000957698212005198, 0.008969660848379135, -0.017979364842176437, -0.024426309391856194, -0.006436933297663927, -0.024519743397831917, 0.004428102634847164, 0.03379639983177185, -0.002782997442409396, -0.0038141082040965557, -0.003036604030057788, -0.015283128246665001, 0.007047590799629688, 0.005305714905261993, -0.002584450412541628, -0.008736075833439827, 0.002015504287555814, 0.0176590196788311, -0.0021356334909796715, 0.02323836274445057, 0.012406696565449238, -0.018953748047351837, 0.006563736125826836, 0.009757176041603088, 0.002896453021094203, -0.006840701214969158, -0.005182248540222645, -0.010865035466849804, 0.014228658750653267, -0.007454696111381054, 0.01328764483332634, -0.017565585672855377, 0.016484422609210014, -0.010411214083433151, 0.025080347433686256, -0.0024826740846037865, 0.011252119205892086, 0.01502952165901661, -0.006820679642260075, 0.012473435141146183, -0.0024609840475022793, 0.004574927501380444, 0.015109607949852943, 0.039856262505054474, -0.036092206835746765, 0.009229941293597221, -0.011499051935970783, 0.002946506952866912, -0.005172237753868103, 0.014375483617186546, 0.02808358147740364, 0.004928641952574253, 0.0055292886681854725, 0.0010553032625466585, -0.010818318463861942, 0.014135224744677544, 0.02086247131228447, 0.010184302926063538, -0.01709841564297676, -0.013514555990695953, 0.01215976383537054, -0.006874070502817631, -0.01681811362504959, -0.014909392222762108, 0.018967095762491226, 0.004705067723989487, 0.0032735259737819433, 0.011018534190952778, 0.012339957989752293, 0.006603779271245003, -0.0037440326996147633, -0.012139742262661457, 1.328253529209178e-05, -0.014375483617186546, -0.009490221738815308, 0.0011570795904845, -0.032862063497304916, 0.004338005557656288, 0.011812723241746426, 0.0028313829097896814, -0.03619898855686188, -0.004254582338035107, -0.018700141459703445, 0.042205460369586945, 0.0333692766726017, 0.014629090204834938, -0.0071410248056054115, 0.0069608306512236595, 0.0034737414680421352, 0.007701628841459751, -0.0003564255603123456, -0.008235537447035313, -0.01285384502261877, -0.005676113534718752, 0.004271266981959343, -0.01918065920472145, -0.01021767221391201, -0.03806766867637634, 0.011178706772625446, 0.005038760602474213, 0.023825662210583687, 0.004468145780265331, -0.004488167352974415, 0.00466502457857132, -0.019674524664878845, 0.029952261596918106, 0.0010678167454898357, -0.0011103625874966383, -0.006687202490866184, 0.012139742262661457, -0.012166437692940235, 0.010064173489809036, 0.00250269565731287, -0.01433544047176838, 0.018967095762491226, -0.009343396872282028, 0.005929720122367144, 0.016324250027537346, -0.005579342599958181, -0.00024359569943044335, 0.004287951625883579, 0.008929617702960968, 0.010998512618243694, 0.008642641827464104, 0.005232302471995354, 0.02601468749344349, 0.017552237957715988, 0.028724271804094315, -0.004338005557656288, 0.011045229621231556, -0.010504648089408875, -0.015923818573355675, 0.014549003913998604, 0.019941478967666626, -0.015096260234713554, 0.0010719879064708948, 0.005148879252374172, 0.01063145138323307, -0.011245445348322392, 0.028403926640748978, -0.001161250751465559, 0.0075014131143689156, -0.028991226106882095, -0.0007474717567674816, 0.010911752469837666, 0.012313262559473515, -0.008956313133239746, 0.01737871766090393, -0.006630474701523781, -0.003700652625411749, -0.008602598682045937, 0.008535860106348991, -0.01793932169675827, -0.018473230302333832, -0.014535656198859215, -0.005816264543682337, 0.0011245445348322392, -0.018539968878030777, 0.004685046151280403, -0.012153089977800846, -0.00042045285226777196, 0.020889166742563248, 0.000976051262114197, 0.008382361382246017, -0.000564774964004755, -0.011812723241746426, 0.009096464142203331, 0.00012273636821191758, 0.009296679869294167, 0.014522308483719826, 0.001038618735037744, 0.013661380857229233, 0.014201963320374489, 0.00184365245513618, 0.009116485714912415, 0.0019003802444785833, -0.011165359057486057, -0.004020997788757086, 0.006009806413203478, -0.0008951307972893119, -0.022624367848038673, 0.011532421223819256, 0.008115408010780811, -0.015376562252640724, -0.012613586150109768, -0.015483343973755836, 0.014121877029538155, 0.020809080451726913, -0.0035037738271057606, -0.0024292832240462303, 0.018006060272455215, 0.013467838987708092, -0.00246598944067955, 0.0009593666763976216, 0.0059797740541398525, -0.004327994771301746, 0.02087581902742386, -0.007561477832496166, 0.003714000340551138, 0.006577083840966225, -0.018686793744564056, 0.004154474940150976, 0.005349094979465008, 0.011565790511667728, 0.024506395682692528, 0.01583038456737995, 0.007661585696041584, 3.039732291654218e-05, 0.00636018393561244, 0.009350070729851723, 0.017071720212697983, 0.015002826228737831, -0.007034243084490299, 0.006827353499829769, 0.00014609485515393317, -0.008495816960930824, -0.009103137999773026, 0.010538017377257347, -0.008922943845391273, 0.0024159355089068413, -0.011312183924019337, 0.005609374959021807, -0.010798296891152859, -0.012933931313455105, -0.014442222192883492, 0.017992712557315826, -0.014896044507622719, 0.03043277934193611, 0.003316905815154314, -0.004031008575111628, -0.01781919226050377, -0.01155244279652834, 0.003185097360983491, 0.030245911329984665, -0.01084501389414072, 0.010911752469837666, 0.00577622139826417, 0.01833975315093994, 0.00344370910897851, -0.00987730547785759, -0.0009326712461188436, -0.024533091112971306, 0.002739617368206382, -0.004097747150808573, 0.00863596796989441, -0.002592792734503746, 0.011932852678000927, -0.023438578471541405, -0.013814879581332207, -0.011806049384176731, -0.011212076060473919, -0.004948663525283337, 0.024146007373929024, -0.0036072186194360256, -0.0275229774415493, 0.0021089380607008934, -0.005429180804640055, 0.0022223936393857002, 0.03155398741364479, -0.004097747150808573, -0.033449359238147736, -0.0011979569680988789, 0.0008375687757506967, 0.016204120591282845, -0.0258812103420496, 0.021076034754514694, 0.014402179047465324, -0.01641768403351307, -0.02488013170659542, -0.0014165256870910525, 0.0263083353638649, -0.0040810625068843365, -0.03128703311085701, -0.006880744360387325, -0.0016968275886029005, 0.0064703025855124, -0.004051030147820711, 0.006293445359915495, 0.017472151666879654, -9.306899301009253e-05, -0.023705532774329185, -0.0063268146477639675, -0.004801838658750057, 0.030085738748311996, -0.003904205048456788, -0.0030015662778168917, 0.043620314449071884, 0.008168798871338367, 0.0061466204933822155, 0.02936496213078499, 0.0030199193861335516, -5.9543301176745445e-05, 0.006029827985912561, -0.0021039326675236225, 0.015750298276543617, -0.01572360284626484, -0.0015792009653523564, 0.025814471766352654, 0.006136609707027674, 0.0005251489346846938, -0.007568151690065861, -0.002430951688438654, -0.001400675275363028, 0.01906052976846695, -0.003623903263360262, 0.01202628668397665, -0.006500334944576025, 0.008742749691009521, -0.007221111096441746, 0.007955235429108143, -0.010524669662117958, -0.0008008626173250377, -0.019234050065279007, -0.011385596357285976, -0.0043947333469986916, -0.010444583371281624, -0.001238000113517046, -0.01342112198472023, 0.0161373820155859, -0.01779249683022499, 0.012680324725806713, -0.005582679528743029, 0.024012530222535133, -0.0007387123187072575, -0.010905078612267971, -0.013681402429938316, 0.013394426554441452, 0.002285795286297798, -0.010504648089408875, -0.003587197046726942, 0.0008308949181810021, 0.029925566166639328, 0.008402382954955101, -0.005235639400780201, -0.0011712615378201008, -0.023158276453614235, 0.006176652852445841, 0.004901946522295475, -0.009610351175069809, 0.007174394093453884, -0.0081287557259202, -0.0018536632414907217, 3.7801131838932633e-05, -0.015803689137101173, 0.004504851996898651, 0.015496691688895226, -0.006537041161209345, 0.007741671986877918, 0.015203041955828667, -0.005455876234918833, -0.008455773815512657, -0.017712410539388657, -0.0027946766931563616, 0.030379388481378555, 0.03742697834968567, 0.01932748407125473, 0.013401100412011147, -0.023398535326123238, -0.005312388762831688, -0.03467734903097153, -0.012126394547522068, 0.0036072186194360256, -0.003767391201108694, 2.2745853129890747e-05, -0.00020866224076598883, -0.013868270441889763, 0.019581090658903122, 0.00671723484992981, -0.0032735259737819433, 0.013240927830338478, 0.009617025032639503, -0.001730196876451373, 0.005916372407227755, 0.00799527857452631, 0.0015241416404023767, 0.01696493849158287, -0.0196077860891819, -0.00248434254899621, -0.00959700345993042, 0.005782895255833864, 0.008936291560530663, 0.0024376255460083485, -0.0005293200956657529, 0.0055292886681854725, 0.015389909967780113, -0.006860722787678242, -0.038735054433345795, 0.00722778495401144, 0.0162575114518404, 0.01286719273775816, 0.02933826670050621, 0.0014265364734455943, -0.004281277768313885, -0.0020205096807330847, -0.01583038456737995, -0.014362135902047157, 0.006126598920673132, -0.012480108998715878, -0.006466965656727552, -0.004841881804168224, -0.003610555548220873, 0.019848044961690903, -0.016617899760603905, 0.011078598909080029, 0.016444379463791847, 0.005195596255362034, -0.018459882587194443, -0.019274093210697174, -0.00011908660235349089, 0.003243493614718318, -0.000899301958270371, -0.01962113380432129, -0.006460291799157858, -0.003278531366959214, -0.0010311106452718377, 0.0028814368415623903, 0.011992917396128178, -0.00413779029622674, -0.007968583144247532, -0.0018052777741104364, -0.0004329663352109492, 0.014402179047465324, 0.015349866822361946, -0.010257715359330177, 0.026241598650813103, -0.01697828620672226, -0.0036606094799935818, -0.0093767661601305, -0.0029248169157654047, -0.011298836208879948, -0.0403100848197937, 0.0024276147596538067, -0.0002394245530012995, -0.004558242857456207, -0.0061599682085216045, -0.01780584454536438, 0.014362135902047157, -0.0060431757010519505, -0.01251347828656435, 0.012386674992740154, 0.0069474829360842705, -0.00504209753125906, 0.02403922565281391, 0.016751375049352646, 0.0009635378373786807, -0.015283128246665001, 0.004131116438657045, 0.008082038722932339, 0.01119872834533453, 0.008215515874326229, -0.0020472051110118628, -0.007421326823532581, 0.014148572459816933, 0.011232097633183002, 0.0007954401080496609, 0.016497770324349403, -0.0024009193293750286, 0.029818784445524216, -0.004544895142316818, -0.024306179955601692, -0.015363214537501335, -0.01793932169675827, -0.01146568264812231, 0.00032868736889213324, -0.006583757698535919, 0.005656091962009668, -0.014215311035513878, 0.02435957081615925, 0.01078494917601347, 0.0026878949720412493, -0.007568151690065861, 0.010344475507736206, 0.0032017820049077272, 0.006026491057127714, 0.0029348277021199465, -0.006567073054611683, 0.016751375049352646, 0.008802814409136772, -0.021476464346051216, -0.004408081062138081, 0.007201089523732662, -0.0016692979261279106, -0.017992712557315826, -0.0036038816906511784, 3.2300416933139786e-05, -0.015403257682919502, 0.002694568829610944, 0.02349196933209896, 0.005996458698064089, -0.01862005516886711, 0.008195494301617146, -0.007941887713968754, 0.01264695543795824, -0.009176550433039665, -0.0239324439316988, 0.021943634375929832, 0.0015967198414728045, -0.008689358830451965, -0.014709176495671272, 0.0033452697098255157, -0.030005652457475662, -0.0008959650294855237, 0.010905078612267971, 0.00758149940520525, -0.0021623289212584496, -0.012520152144134045, -0.015002826228737831, -0.001387327560223639, 0.008922943845391273, 0.01793932169675827, -0.02434622310101986, 0.0008709380635991693, -0.01334770955145359, 0.0008300606859847903, -0.008242211304605007, 0.004371374845504761, 0.004748447798192501, -0.0058629815466701984, 0.016884852200746536, 0.0026712105609476566, -0.015776993706822395, 0.016924895346164703, -0.024239441379904747, -0.015283128246665001, -0.009823914617300034, 0.006653833203017712, 0.00410108407959342, 0.016791418194770813, 0.010945121757686138, 0.029685307294130325, 0.014108529314398766, -0.012493456713855267, -0.03059295192360878, -3.892213135259226e-05, 0.007174394093453884, -0.014789262786507607, 0.03772062808275223, 0.011292162351310253, -0.02546743117272854, 0.027029111981391907, -0.013247601687908173, 0.02334514446556568, 0.00138315639924258, -0.003185097360983491, -0.01078494917601347, 0.01001078262925148, -0.014842653647065163, 0.0019454286666586995, -0.020635560154914856, 0.013607989996671677, 0.00775501923635602, -0.002707916544750333, -0.036919765174388885, 0.0008479966782033443, 0.010618103668093681, 0.007808410096913576, -0.01043790951371193, 0.0015433289809152484], "23fac348-3556-4651-936d-955a32b4defa": [-0.02253558672964573, 0.0006485925987362862, -0.0114672239869833, 0.02770652249455452, -0.05971503257751465, -0.018276333808898926, -0.025356097146868706, 0.00627848319709301, -0.013639586046338081, 0.0538460947573185, 0.008190874010324478, 0.012229330837726593, 0.005819081794470549, 0.013447278179228306, -0.006652414333075285, 0.008839021436870098, -0.006068369373679161, 0.027264926582574844, -0.020185163244605064, -0.018475763499736786, 0.06843297183513641, -0.03099711611866951, -0.030170906335115433, 0.013041296042501926, 0.018304822966456413, -0.00807691365480423, -0.01116095669567585, 0.0035345403011888266, -0.05897429212927818, 0.00302884285338223, -0.011331896297633648, -0.004782758187502623, 0.01675211824476719, 0.027264926582574844, -0.009095431305468082, -0.026837576180696487, -0.00520298583433032, -0.0012998561142012477, 0.015470067970454693, 0.012044145725667477, -0.01655268855392933, 0.010790586471557617, -0.0016533101443201303, 0.0021830459591001272, -0.01934470795094967, 0.012257820926606655, -0.01713673397898674, -0.011417366564273834, -0.010142439045011997, 0.006463667843490839, 0.005537743214517832, 0.028034156188368797, -0.013767790980637074, -0.013960098847746849, 0.03638172522187233, -0.0034063351340591908, -0.0009094541310332716, 0.09834747016429901, -0.005601845681667328, -0.034330446273088455, -0.004163100849837065, -0.027763502672314644, 0.025085441768169403, -0.00010989793372573331, 0.015612518414855003, 0.003609326435253024, 0.003817659569904208, 0.059942953288555145, -0.005423783324658871, 0.028561221435666084, -0.007913096807897091, -0.00035456690238788724, -0.05780620500445366, 0.040598247200250626, -0.008133893832564354, 0.0015170923434197903, 0.00996437668800354, -0.0030982871539890766, 0.017093997448682785, -0.006794864311814308, 0.01081195380538702, -0.0043945820070803165, 0.012984315864741802, 0.03829055652022362, 0.02821934223175049, -0.00036903450381942093, -0.012371781282126904, -0.045897383242845535, -0.023290572687983513, -0.04746433347463608, 0.018917357549071312, 0.01703701727092266, -0.0014690154930576682, 0.011089731007814407, 0.013767790980637074, -0.005032045766711235, -0.020113937556743622, -0.00044938517385162413, 0.0101638063788414, -0.03136748820543289, 0.013368930667638779, 0.02591165155172348, -0.007186601869761944, 0.004679481964558363, -0.010420216247439384, -0.018361803144216537, 0.0063034119084477425, 0.02262105792760849, -0.03498571738600731, -0.02163815312087536, 0.005224353168159723, -0.045498523861169815, 0.010683748871088028, 0.009907396510243416, -0.027250681072473526, -0.011310528963804245, -0.017293427139520645, -0.019871773198246956, -0.010106826201081276, -0.03509967774152756, 0.03407403454184532, -0.043589696288108826, 0.001666664844378829, -0.009729334153234959, 0.0015972204273566604, 0.03461534529924393, -0.0041132434271276, 0.01743587851524353, 0.032450105994939804, -0.020655248314142227, -0.006545576732605696, -0.02572646737098694, 0.0007006758823990822, -0.03415950760245323, 0.017521347850561142, 0.04675208404660225, 0.007414521649479866, 0.05290592461824417, -0.002407404826954007, 0.032649535685777664, -0.017905963584780693, -0.018062658607959747, -0.036324746906757355, 0.017806248739361763, 0.019116787239909172, 0.009152411483228207, -0.020413082093000412, 0.030854666605591774, -0.04054126515984535, 0.026638146489858627, -0.046695105731487274, -0.01613958366215229, -0.0458688959479332, 0.0032460789661854506, 0.0386609248816967, -0.01653844304382801, 0.0123504139482975, 0.027179457247257233, 0.000818197091575712, 0.030541276559233665, 0.013589728623628616, -0.03108258731663227, -0.010420216247439384, 0.030142417177557945, 0.019116787239909172, 0.03276349604129791, 0.059942953288555145, 0.029544126242399216, 0.00026598083786666393, 0.02220795303583145, 0.008112526498734951, -0.001246437313966453, 0.05578341335058212, 0.0010051627177745104, 0.005199424456804991, -0.03216520696878433, 0.03216520696878433, 0.014544143341481686, 0.043019894510507584, -0.04615379497408867, -0.024287723004817963, -0.015598272904753685, 0.024544132873415947, -0.011331896297633648, -0.045697953552007675, 0.0021901684813201427, -0.014415938407182693, 0.014829043298959732, 0.017464367672801018, 0.015327618457376957, -0.017492858693003654, -0.020099692046642303, 0.014643858186900616, 0.014729328453540802, -0.012129615992307663, -0.013903118669986725, -0.0005052522756159306, -0.026581166312098503, 0.00475782947614789, 0.023062651976943016, 0.0003207350382581353, -0.015370353125035763, -0.02272077277302742, 0.05094011500477791, -0.008311956189572811, 0.017678042873740196, 0.0028400965966284275, -0.08313380926847458, 0.013554115779697895, -0.030541276559233665, 0.06643867492675781, -0.047777723520994186, 0.0446438267827034, 0.0018215791787952185, 0.006869650445878506, 0.015769213438034058, -0.036923035979270935, 0.017920207232236862, -0.01175924576818943, 0.0021171628031879663, -0.02629626728594303, -0.010042724199593067, -0.002008544746786356, -0.0059294807724654675, -0.02461535669863224, -0.022891713306307793, -0.04313385486602783, 0.015811948105692863, 0.0149002680554986, -0.026481451466679573, 0.028461506590247154, -0.0020708665251731873, 0.06096859276294708, -0.030712217092514038, -0.01210824865847826, -0.01613958366215229, 0.01286323368549347, -0.002346863504499197, -0.01351138111203909, -0.005039168056100607, -0.013219358399510384, 0.008148139342665672, -0.048689406365156174, -0.012037023901939392, -0.018490007147192955, 0.03529910743236542, -0.0013417007867246866, 0.04273499548435211, -0.008803408592939377, 0.01853274367749691, 0.0006321218097582459, 0.04256405681371689, -0.021196557208895683, 0.011552693322300911, -0.016168072819709778, 0.026623902842402458, 0.01874641701579094, -0.03957260400056839, -0.0006512635154649615, 0.012792008928954601, 6.421378202503547e-05, -0.011232181452214718, -0.01309827622026205, 0.008361813612282276, 0.024188008159399033, -0.058461472392082214, 0.028960080817341805, -0.008839021436870098, 0.00975782424211502, 0.06490021198987961, -0.0009508536313660443, -0.018589721992611885, -0.0047044106759130955, 0.04655265435576439, 0.00280448398552835, -0.006150278262794018, -0.000538193853572011, 0.030940135940909386, 0.024301966652274132, 0.016680892556905746, 0.0008008360164240003, -0.012272066436707973, 0.01773502305150032, 0.015997132286429405, 0.015299128368496895, 0.009024206548929214, -0.023091142997145653, -0.019572628661990166, -0.01594015397131443, -0.017108242958784103, -0.003092945320531726, -0.03686605766415596, 0.02152419276535511, 0.03846149519085884, 0.014237876050174236, 0.021552681922912598, -0.0007077983464114368, -0.006997855380177498, 0.017364652827382088, -0.02282048761844635, -0.004985749255865812, -0.022592566907405853, 0.016980038955807686, -0.016481462866067886, 0.03897431492805481, -0.02054128795862198, 0.013539871200919151, 0.042421605437994, -0.013739300891757011, 0.02082618698477745, 0.021495701745152473, 0.007033467758446932, -0.022364648059010506, -0.01115383394062519, -0.027065496891736984, 8.641594467917457e-05, -0.0288033876568079, 0.009643863886594772, 0.00846152938902378, -0.018518498167395592, -0.02042732760310173, 0.003799853380769491, -0.048290543258190155, 0.020683737471699715, 0.06119651347398758, -0.01914527826011181, 0.028532732278108597, -0.026809087023139, -0.043219324201345444, -0.008960103616118431, -0.06148141250014305, -0.008169506676495075, -0.017991432920098305, 0.01585468277335167, -0.011232181452214718, -0.01480055321007967, -0.05404552444815636, -0.018290577456355095, -0.006755690556019545, -0.024301966652274132, -0.03917374461889267, -0.006193012930452824, 0.02819085121154785, -0.01924499310553074, -0.027649542316794395, -0.02999996580183506, 0.005217230878770351, 0.0019391004461795092, 0.004027773160487413, -0.028960080817341805, 0.0008698352030478418, 0.010142439045011997, 0.02092590183019638, -0.022592566907405853, 0.008945859037339687, -0.02511393278837204, -0.022663792595267296, 0.00872506108134985, -0.0005640129093080759, 0.006356830708682537, -0.022977182641625404, -0.05179481580853462, -0.010626768693327904, -0.02968657575547695, -0.011239303275942802, 0.020669491961598396, 0.01793445274233818, -0.006004266906529665, 0.002622860250994563, -0.004800564609467983, -0.0446438267827034, 0.00877491943538189, 0.015911662951111794, -0.02960110642015934, -0.036125317215919495, -0.04643869400024414, 0.039914485067129135, 0.011274916119873524, 0.03948713466525078, 0.013682320713996887, 0.024159517139196396, -0.004277060739696026, -0.0566096231341362, 0.01764955371618271, 0.019686587154865265, -0.010448706336319447, 0.009451556019484997, 0.021467212587594986, -0.027663785964250565, -0.003221150254830718, 0.001190347713418305, -0.00012976303696632385, -0.02132476307451725, 0.017193712294101715, 0.014002833515405655, -0.022592566907405853, 0.019957242533564568, 0.0016631035832688212, 0.019900262355804443, -0.004732900764793158, -0.030170906335115433, -0.006228625774383545, -0.002978985197842121, 0.010284888558089733, 0.011581183411180973, -0.022791996598243713, 0.004319795873016119, -0.018903112038969994, 0.008411671966314316, 0.012991438619792461, 0.009387454017996788, 0.009686598554253578, 0.040911633521318436, -0.0013221139088273048, 0.02572646737098694, 0.0288033876568079, -0.02133900672197342, 0.07572641223669052, -0.014330468140542507, 0.002348644193261862, 0.002943372819572687, 0.0058404491282999516, -0.007019223179668188, 0.011346140876412392, -0.006210819352418184, 0.027777746319770813, -0.004269938450306654, 0.02968657575547695, 0.0006214380264282227, -0.012991438619792461, 0.046210773289203644, 0.05353270471096039, -0.006196574307978153, -0.006695149466395378, -0.012300556525588036, -0.003675209591165185, 0.035413067787885666, 0.0033814064227044582, -0.001190347713418305, -0.009935886599123478, 0.013760668225586414, 0.011730756610631943, 0.007329051848500967, 0.004262815695255995, -0.06205121427774429, -0.022279176861047745, -0.04632473364472389, 0.01575496792793274, 0.03897431492805481, -0.018603967502713203, -0.012678048573434353, 0.0008302163332700729, -0.06262101233005524, -0.034928735345602036, -0.013319073244929314, 0.0014770282432436943, 0.02301991730928421, -0.008069791831076145, 0.02054128795862198, -0.014829043298959732, -0.019871773198246956, 0.02782048098742962, 0.035242125391960144, -0.016880322247743607, 0.040512774139642715, -0.031937286257743835, -0.005787030793726444, 0.004914524499326944, 0.0020210091024637222, 0.02642447128891945, -0.020883167162537575, 0.006314095575362444, -0.015227903611958027, 0.05011390522122383, -0.001344371703453362, 0.0008137455442920327, -0.030712217092514038, -0.007692299317568541, -0.01982903853058815, -0.027150966227054596, -0.03108258731663227, 0.020056957378983498, -0.03125352784991264, -0.00981480348855257, 0.0044159493409097195, -0.00767093151807785, -0.049686554819345474, -0.0037428734358400106, 0.0070868865586817265, 0.001044336473569274, 0.03794867545366287, 0.022250687703490257, -0.031225036829710007, 0.023190857842564583, -0.02390310727059841, -0.022464362904429436, 0.0006432507070712745, -0.0209401473402977, -0.012977193109691143, -0.01404556818306446, 0.022378891706466675, -0.0005364132230170071, 0.016481462866067886, 0.001666664844378829, -0.015925908461213112, 0.019558383151888847, -0.01603986881673336, 0.029074041172862053, 0.028931591659784317, -0.006086175795644522, -0.030541276559233665, 0.00195334549061954, -0.03028486669063568, 0.03088315576314926, 0.018490007147192955, 0.0011734317522495985, -0.021680887788534164, -0.004188029561191797, 0.007275633048266172, 0.016196563839912415, -0.027165211737155914, -0.006645291578024626, -0.0368945449590683, -0.018575478345155716, 0.0010585814015939832, 0.012841866351664066, 0.009544149041175842, -0.010754973627626896, 0.029458656907081604, -0.04136747494339943, -0.010754973627626896, -0.005413099192082882, -0.025769202038645744, 0.02971506677567959, 0.031937286257743835, 0.02153843827545643, -0.02014242857694626, -0.004608257208019495, 0.012364658527076244, 0.02202276699244976, -0.009779191575944424, 0.03481477499008179, 0.024586867541074753, -0.007692299317568541, 0.004419510718435049, 0.01115383394062519, 0.02461535669863224, -0.02330481819808483, -0.03156691789627075, 0.03675209730863571, -0.020056957378983498, 0.004529909696429968, -0.01385326124727726, -0.02689455635845661, 0.008903124369680882, -0.009999988600611687, -0.037036996334791183, 0.011887450702488422, -0.005918796639889479, -0.0112179359421134, 0.030341846868395805, 0.010933035984635353, 0.012364658527076244, 0.02323359251022339, -0.0007358432048931718, -0.02621079795062542, -0.0319087952375412, 0.03247859701514244, -0.0038319046143442392, 0.010598278604447842, 0.026168061420321465, -0.005413099192082882, 0.035925887525081635, 0.025156667456030846, 0.021410232409834862, 0.009159534238278866, 0.004775635898113251, -0.0030359653756022453, -0.014643858186900616, -0.016210807487368584, 0.03957260400056839, -0.03339027613401413, 0.011417366564273834, -0.04014240577816963, -0.0008511386695317924, -0.00034098964533768594, -0.034928735345602036, -0.041709356009960175, -3.2106891012517735e-05, 0.011894573457539082, -0.01261394564062357, 0.03239312767982483, -0.003960109781473875, 0.02230766788125038, -0.017293427139520645, 0.03227916732430458, 0.004825493320822716, 0.008810531347990036, -0.008354691788554192, 0.011196568608283997, 0.018760662525892258, 0.0036965771578252316, 0.011488591320812702, -0.006474351976066828, -0.03606833517551422, 0.003545223968103528, 0.000486110569909215, 0.01754983887076378, -0.03498571738600731, -0.0021830459591001272, 0.018361803144216537, 0.01170226652175188, 0.009907396510243416, -0.022763507440686226, 0.0007977199275046587, -0.013917363248765469, 0.0030359653756022453, 0.029059797525405884, 0.01056978851556778, 0.026153817772865295, 0.011858961544930935, -0.03356121480464935, 0.023319061845541, -0.009658108465373516, 0.041395965963602066, 0.03378913551568985, -0.02690880186855793, 0.0027012077625840902, 0.00680198660120368, -0.005024923011660576, -0.003593300934880972, -0.030740706250071526, 0.011709388345479965, -0.012941581197082996, 0.005423783324658871, -0.016267787665128708, -0.010484319180250168, -0.0037499957252293825, 0.01754983887076378, 0.00014946119335945696, -0.01349713560193777, 0.013596851378679276, -0.010754973627626896, 0.021894562989473343, -0.00920939166098833, 0.021495701745152473, 0.006146716885268688, -0.014009956270456314, 0.03148144483566284, 0.02861820161342621, -0.03307688608765602, 0.01255696639418602, 0.001758366939611733, 0.009358963929116726, 0.01186608336865902, -0.03695152699947357, -0.0253133624792099, 0.03401705622673035, 0.03028486669063568, 0.0224358718842268, 0.012564088217914104, -0.02172362245619297, 0.030028456822037697, -0.012378904037177563, 0.028119627386331558, -0.011695143766701221, 0.005238598212599754, 0.01735040731728077, 0.016111092641949654, 0.008069791831076145, 0.022791996598243713, -0.012443006038665771, -0.011488591320812702, -0.010676626116037369, 0.012179473415017128, -0.0014547704486176372, 0.020883167162537575, 0.00032919301884248853, 0.011609673500061035, -0.0288033876568079, -0.027749257162213326, -0.02421649731695652, -0.017008528113365173, 0.0070156618021428585, 0.0012642436195164919, -0.017165223136544228, -0.030028456822037697, 0.015284882858395576, -0.04145294427871704, 0.026638146489858627, -0.012841866351664066, 0.005345435813069344, 0.007856116630136967, 0.03099711611866951, -0.005612529348582029, -0.019216502085328102, 0.014829043298959732, -0.02868942730128765, 0.03227916732430458, -0.011994288302958012, 0.0028543416410684586, 0.00027911292272619903, 0.01470083836466074, -0.05193726345896721, 0.04162388667464256, 0.0029380309861153364, -0.018789153546094894, 0.003657403402030468, -0.009237881749868393, 0.0153418630361557, -0.0022418065927922726, -0.018190862610936165, 0.0076638092286884785, 0.03968656435608864, 0.007183040492236614, -0.01754983887076378, -0.020655248314142227, -0.012022778391838074, -0.026253532618284225, 0.020356101915240288, -0.0006904372712597251, 0.01914527826011181, -0.002313031582161784, -0.018760662525892258, -0.021766357123851776, 0.0018981460016220808, -0.006492157932370901, -0.015925908461213112, -0.005195863079279661, 0.006773496512323618, 0.030028456822037697, -3.650280996225774e-05, -0.001804663217626512, 0.002508900361135602, -0.0025534159503877163, -0.021851828321814537, 0.029316207394003868, 0.0038069759029895067, -0.005584039259701967, -0.0076780542731285095, 0.02512817643582821, -0.008190874010324478, 0.004540593363344669, -0.03623927757143974, 0.025484303012490273, 0.005348996724933386, 0.02858971245586872, -0.005523498170077801, 0.003237175988033414, 0.013019928708672523, 0.03717944398522377, -0.011310528963804245, 0.02888885699212551, 0.026638146489858627, -0.009259249083697796, -0.02203701250255108, 0.021680887788534164, 0.010455829091370106, 0.007706544362008572, 0.045897383242845535, -0.019686587154865265, -0.008354691788554192, -0.021296272054314613, -0.010056968778371811, 0.01200853381305933, 0.012841866351664066, 0.016524197533726692, -0.004287744406610727, 0.022478606551885605, 0.010676626116037369, 0.02472931705415249, 0.036039844155311584, 0.012079758569598198, 0.014529898762702942, -0.004729339387267828, -0.04806262627243996, 0.003139241598546505, 0.003910251893103123, -0.03774924576282501, 0.012820499017834663, -0.00887463428080082, -0.060854632407426834, 0.006876773200929165, -0.033931586891412735, 0.009195146150887012, -0.03227916732430458, 0.033618196845054626, 0.0062535544857382774, 0.023490002378821373, 0.003449070267379284, 0.01655268855392933, 0.002350424649193883, -0.013019928708672523, 0.0021812652703374624, 0.035413067787885666, -0.03242161497473717, 0.04313385486602783, -0.0016390650998800993, -0.018960092216730118, -0.006638169288635254, 0.004818370565772057, -0.025655241683125496, 0.02072647213935852, 0.024259231984615326, -0.021709376946091652, -0.011787735857069492, 0.006296289153397083, -0.0188318882137537, -0.02719370275735855, -0.005594722926616669, 0.024643847718834877, 0.010648136027157307, -0.008696571923792362, 0.028561221435666084, -0.0123504139482975, 0.016980038955807686, 0.00811964925378561, -0.012870356440544128, 0.038005657494068146, -0.007841872051358223, 6.378253601724282e-06, 0.004444439429789782, 0.021495701745152473, 0.023148123174905777, -0.0006472571403719485, -0.010904545895755291, 0.024857522919774055, -0.00767093151807785, 0.023575471714138985, -0.019971488043665886, -0.004252132028341293, -0.006360391620546579, -0.0011271354742348194, 0.03136748820543289, -0.014301978051662445, 0.020783452317118645, 0.0019337584963068366, 0.0159543976187706, -0.01943017728626728, 0.045099664479494095, -0.02561250701546669, -0.03777773678302765, -0.01101138349622488, -0.03740736469626427, -0.01874641701579094, 0.014081181026995182, 0.010284888558089733, -0.001462783315218985, 0.025883162394165993, 0.05772073194384575, 0.0037286283913999796, 0.0019800548907369375, -0.028034156188368797, 0.010320501402020454, -0.026139572262763977, 0.024558376520872116, -0.013632463291287422, 0.011880328878760338, -0.036039844155311584, 0.019658097997307777, 0.053361762315034866, 0.02220795303583145, -0.017621062695980072, 0.006577628199011087, -0.017806248739361763, 0.0016452972777187824, 0.0027902391739189625, 0.016011377796530724, 0.02840452641248703, 0.020683737471699715, 0.01961536332964897, -0.020085448399186134, 0.0042948671616613865, 0.011175201274454594, -0.01854698732495308, -0.008390303701162338, 0.01544157788157463, 0.012770640663802624, -0.03079768642783165, 0.002637105295434594, -0.008810531347990036, 0.01754983887076378, -0.004900279454886913, -0.009807681664824486, -0.02353273704648018, -0.0042450097389519215, -0.01763530820608139, 0.0024465785827487707, -0.001522434176877141, 0.005957970395684242, -0.0016622132388874888, -0.013888873159885406, -0.016680892556905746, -0.022863222286105156, -0.04703698307275772, 0.023589717224240303, -0.0069800494238734245, -0.020356101915240288, -0.021595418453216553, 0.00982192624360323, 0.0023254959378391504, -0.031139565631747246, -0.052763473242521286, -0.015327618457376957, 0.03914525732398033, -0.039116766303777695, 0.00038327949005179107, -0.009572639130055904, 0.014088303782045841, 0.02253558672964573, -0.00637463666498661, 0.011282038874924183, -0.019387442618608475, 0.014095425605773926, 0.08085460960865021, 0.005046290811151266, 0.009836171753704548, -0.03347574546933174, -0.004594012163579464, -0.018660947680473328, 0.015470067970454693, 0.01695154793560505, 0.03945864737033844, 0.003707260824739933, -0.02072647213935852, 0.017193712294101715, -0.03535608574748039, -0.026139572262763977, -0.01081907656043768, 0.03549853712320328, -0.014444428496062756, -0.003365380922332406, 0.010982893407344818, -0.02203701250255108, -0.01695154793560505, -0.0057407342828810215, -0.025840427726507187, 0.003269227221608162, -0.018603967502713203, -0.018703682348132133, -0.0067770578898489475, -0.020299123600125313, 0.03923072665929794, -0.0004910072893835604, -0.0298005361109972, -0.021908806636929512, -0.007863239385187626, 0.017307672649621964, 0.004337601829320192, 0.01863245852291584, 0.015712233260273933, 0.023076897487044334, -0.01863245852291584, -0.012143861502408981, -0.0017476832726970315, 0.014729328453540802, -0.01046295091509819, -0.007649564184248447, -0.01693730242550373, -0.0028596834745258093, 0.011025629006326199, -0.005562671925872564, 0.012072635814547539, 0.01455838792026043, -0.011837593279778957, 0.020071202889084816, -0.012820499017834663, 0.019088298082351685, -0.01370368804782629, 0.010626768693327904, -0.01360397320240736, -0.002736820373684168, 0.0009820145787671208, 0.033333297818899155, 0.014772063121199608, -0.015213658101856709, -0.03686605766415596, -0.009337596595287323, -0.03897431492805481, 0.0036965771578252316, 0.025655241683125496, -0.027037007734179497, -0.03111107647418976, -0.02669512666761875, 0.023105386644601822, 0.01555553823709488, -0.002799142152070999, 0.007008539047092199, -0.02729341760277748, 0.031652387231588364, 0.015982888638973236, -0.010826198384165764, 0.033133864402770996, -0.003333329688757658, 0.0005577807314693928, 0.015313372947275639, -0.011075486429035664, -0.01575496792793274, -0.014465795829892159, 0.006139594130218029, -0.005146005656570196, 0.005957970395684242, -0.02732190676033497, 0.037321895360946655, 0.031139565631747246, -0.001636394183151424, 0.014772063121199608, 0.00996437668800354, -0.0174501221626997, 0.018717927858233452, -0.020498553290963173, -0.006752129178494215, -0.010220786556601524, 0.013796281069517136, -0.014074058271944523, 0.014843287877738476, 0.026282021775841713, -0.005491446703672409, -0.0013639585813507438, 0.03196577727794647, 0.017578328028321266, -0.027264926582574844, 0.025740712881088257, -0.023205101490020752, -0.019401688128709793, -0.0010292010847479105, 0.028333302587270737, 0.0060291956178843975, 0.010726483538746834, -0.02272077277302742, -0.01873217336833477, -0.008183751255273819, -0.008133893832564354, -0.015384598635137081, 0.0031338995322585106, -0.025584017857909203, -0.010591155849397182, -0.07458680868148804, -0.022051258012652397, 3.719836604432203e-05, -0.023789146915078163, 0.007435888983309269, -0.014772063121199608, 0.029430165886878967, 0.03202275559306145, -0.02561250701546669, 0.024886012077331543, -0.015099698677659035, -0.027578316628932953, 0.027948686853051186, 0.022165218368172646, 0.00595084810629487, 0.0038461496587842703, -0.007393154315650463, -0.010619645938277245, 0.01351138111203909, -0.019173767417669296, -0.015897417441010475, 0.007393154315650463, 0.04504268616437912, -0.02183758281171322, -0.016809098422527313, 0.0248147863894701, -0.0007941586663946509, 0.005462957080453634, 0.003078700276091695, -0.01894584856927395, 0.0197150781750679, 0.010135316289961338, -0.0016755679389461875, 0.011894573457539082, -0.006225064396858215, 0.02192305214703083, 0.01834755763411522, 0.0014752476708963513, 0.05270649492740631, 0.03247859701514244, -0.005462957080453634, 0.005847571883350611, 0.00917377881705761, -0.01735040731728077, 0.0023593278601765633, -0.011745001189410686, -0.007314806804060936, -0.02183758281171322, 0.005616090726107359, 0.013034173287451267, 0.0015909882495179772, 8.919817628338933e-05, -0.021809091791510582, -0.019672343507409096, 0.01793445274233818, 0.00014690154057461768, 0.01585468277335167, -0.0007296110270544887, 0.006595434155315161, -0.021794848144054413, 0.02940167672932148, 0.015398843213915825, 0.01210824865847826, -0.00682335440069437, -0.01605411246418953, 0.015028472989797592, 0.006360391620546579, -0.0006793083739466965, 0.020868923515081406, 0.020868923515081406, 0.011068363673985004, -0.0007705653551965952, 0.009985744021832943, -0.017905963584780693, 0.011787735857069492, -0.005534181836992502, 0.018390292301774025, -0.007165234070271254, 0.020455816760659218, -0.014686593785881996, -0.03501420468091965, -0.0035665915347635746, 0.0274216216057539, 0.017407387495040894, -0.015897417441010475, 0.004729339387267828, -0.011310528963804245, -0.027678031474351883, -0.0013799841981381178, 0.01735040731728077, 0.013376053422689438, 0.007293439004570246, 0.02502846159040928, 0.022564077749848366, 0.008803408592939377, 0.0396580770611763, 0.004351846873760223, 0.0004914524615742266, 0.009408821351826191, 0.028632447123527527, -0.0027973614633083344, -0.033247824758291245, -0.004277060739696026, -0.020584022626280785, -0.003582617035135627, -0.018561232835054398, 0.02461535669863224, 0.02401706762611866, -0.0298005361109972, -0.026837576180696487, 0.012300556525588036, 0.0011716510634869337, -0.01395297609269619, -0.00702278409153223, -0.009900273755192757, 0.013960098847746849, 0.004501419607549906, -0.003059113398194313, -0.009081186726689339, 0.010156683623790741, 0.0050569744780659676, 0.013546993024647236, -0.00627848319709301, -0.04481476545333862, 0.012086881324648857, -8.814092871034518e-05, 0.0034704378340393305, 0.0003634700260590762, 0.011388876475393772, -0.0015108601655811071, 0.006000705529004335, 0.023319061845541, -0.040826164186000824, 0.007656686473637819, -0.0016791292000561953, 0.004131049383431673, -0.009059819392859936, -0.019017072394490242, 0.019017072394490242, -0.00962249655276537, -0.0043660919182002544, 0.0015099698211997747, 0.017393143847584724, -0.005576916970312595, -0.0030039141420274973, 0.0006953339907340705, -0.028333302587270737, -0.004864667076617479, 0.008404549211263657, -0.019387442618608475, -0.011688021011650562, 0.010861811228096485, 0.035640984773635864, 0.011517081409692764, 0.02132476307451725, -0.017692288383841515, -0.014715082943439484, 0.005423783324658871, -0.009579760953783989, 0.011103976517915726, -0.03199426457285881, -0.011225058697164059, -0.0006877663545310497, -0.008611101657152176, 0.007792014162987471, -0.0066915880888700485, -0.012172351591289043, -0.029031306505203247, -0.0009633180452510715, -0.0010096142068505287, -0.004408827051520348, -0.0032514207996428013, -0.004551277030259371, 0.016566932201385498, -0.005861816927790642, -0.002167020458728075, 0.0014200482983142138, -4.952362723997794e-05, 0.029344696551561356, -0.0129629485309124, -0.001726315706036985, 0.013988588005304337, -0.0017913085175678134, 0.005309822969138622, -0.008660959079861641, -0.0066559757106006145, 0.002006764058023691, 0.015356108546257019, 0.006684465333819389, 0.014059813693165779, 0.02142447791993618, -0.015512803569436073, -0.02343302220106125, 0.015056963078677654, -0.009700844064354897, 0.019358953461050987, 0.010299134068191051, 0.024757808074355125, -0.016794852912425995, -0.006018511950969696, -0.0021225048694759607, -0.014857533387839794, 0.027977176010608673, 0.007307684049010277, -0.007343296892940998, 0.007044151891022921, -0.005434466991573572, 0.030769197270274162, 0.020384592935442924, -0.023361796513199806, -0.0030858227983117104, 0.0018500691512599587, -0.006809109356254339, -0.019202258437871933, 0.00011368176637915894, -0.005876061972230673, -0.004045579582452774, -0.01605411246418953, 0.02421649731695652, -0.007720788940787315, 0.011574061587452888, -0.025242136791348457, 0.007329051848500967, -0.0007229336770251393, 0.0007830297690816224, 0.003867516992613673, 0.02720794640481472, -0.08512811362743378, -0.008376059122383595, 0.0010710458736866713, -0.0036217907909303904, 0.0014396351762115955, 0.01339742075651884, 0.0077279116958379745, -0.02591165155172348, 0.010185173712670803, 0.021851828321814537, -0.004615379497408867, 0.0032621046993881464, -0.008582611568272114, -0.009195146150887012, -0.03088315576314926, -0.014081181026995182, 0.006456545554101467, 0.03156691789627075, -0.004326918162405491, -0.003484682645648718, -0.014195140451192856, -0.005459395702928305, 0.0038603944703936577, 0.002879270352423191, -0.012848988175392151, 0.009608251042664051, -0.004266377072781324, -0.0051281992346048355, -0.02351849153637886, 0.019857527688145638, -0.003967232070863247, 0.01186608336865902, -0.004277060739696026, -0.013675198890268803, 0.008105403743684292, 0.02641022764146328, -0.03441591560840607, 0.04017089679837227, 0.007970076985657215, -0.002234684070572257, 0.013076908886432648, 0.023589717224240303, -0.0079771988093853, -0.01285611093044281, -0.018689438700675964, -0.018703682348132133, -0.020071202889084816, -0.008447283878922462, -0.010705116204917431, 0.008048424497246742, -0.036039844155311584, 0.011502835899591446, 0.024700827896595, -0.020697982981801033, -0.007300561759620905, -0.008753551170229912, 0.012820499017834663, 0.0047542680986225605, 0.006716516800224781, -0.015697987750172615, -0.0116595309227705, 0.026339001953601837, -0.012336168438196182, -0.01544157788157463, 0.015327618457376957, 0.025584017857909203, -0.007578338962048292, 0.012535598129034042, 0.012044145725667477, 0.017663797363638878, 0.01136038638651371, 0.03447289764881134, -0.01470083836466074, 0.027863217517733574, -0.0033101814333349466, -0.010427339002490044, -0.02451564185321331, -0.008760673925280571, -0.00022324583551380783, -0.008682326413691044, 0.0035007083788514137, -0.0011271354742348194, 0.006221503019332886, 0.0336751751601696, 0.018675193190574646, -0.028148116543889046, -0.0077991364523768425, -0.0011716510634869337, 0.038034144788980484, 0.009665231220424175, -0.003402773989364505, -0.015113943256437778, -0.030427316203713417, 0.0164529737085104, -0.014423061162233353, 0.04720792546868324, 0.0029237859416753054, -0.015726478770375252, -0.022065501660108566, -0.02752133645117283, -0.003529198467731476, 0.025156667456030846, 0.0076139518059790134, -0.013169500976800919, 0.03376064449548721, -0.0183333121240139, -0.013433033600449562, -0.007044151891022921, -0.006659536622464657, -0.017863227054476738, -0.005277771968394518, -0.02423074282705784, 0.002578344661742449, 0.0013354686088860035, 0.011438733898103237, -0.008404549211263657, -0.01341166626662016, 0.006880334112793207, 0.007111815270036459, -0.0012660241918638349, 0.03814810514450073, 0.03316235542297363, -0.014914513565599918, 0.0030021334532648325, 0.01903131790459156, 0.01843302883207798, -0.030455807223916054, -0.016068357974290848, 0.014551266096532345, -0.0043304795399308205, 0.036524176597595215, -0.01330482866615057, -0.03917374461889267, -0.030769197270274162, 0.020584022626280785, 0.005320507101714611, 0.03746434673666954, -0.022848976776003838, -0.009893151000142097, 0.02752133645117283, -0.013767790980637074, -0.01954413764178753, -0.025754956528544426, -0.01180910412222147, -0.0015669497661292553, -0.012471496127545834, -0.011972920969128609, -0.0057905917055904865, -0.001976493513211608, -0.018005678430199623, -0.0014681251486763358, 0.00015580466424580663, -0.014216508716344833, 0.03615380451083183, 0.004836176987737417, -0.007528481539338827, -0.009601129218935966, 0.002738600829616189, -0.008810531347990036, -0.009394576773047447, -0.01115383394062519, 0.00986466184258461, 0.005594722926616669, -0.011737878434360027, -0.009693721309304237, -0.006371075753122568, 0.006566944066435099, 0.016908813267946243, 0.00862534623593092, -0.017307672649621964, 0.00787036120891571, -0.008938736282289028, -0.01615382730960846, -0.013668076135218143, 0.003995722159743309, -0.0018589722458273172, -0.00221687788143754, -0.02452988736331463, 0.006143155507743359, 0.018903112038969994, 0.020697982981801033, -0.007161673158407211, -0.03242161497473717, 0.005676631815731525, -0.001044336473569274, -0.005238598212599754, -0.0010487879626452923, -0.03125352784991264, -0.010890301316976547, -0.004323356784880161, 0.025940142571926117, 0.018774908035993576, -0.037122465670108795, -0.005566233303397894, -0.004120365716516972, 0.008404549211263657, -0.0023895984049886465, -0.00340099330060184, 0.008539876900613308, -0.019686587154865265, 0.0032799108885228634, 0.006591872777789831, -0.019116787239909172, 0.002434113994240761, 0.015227903611958027, -0.015783458948135376, 0.019259238615632057, 0.03407403454184532, -0.04108257591724396, -0.023048406466841698, -0.012521353550255299, -0.0025498548056930304, -0.018874622881412506, -0.020270632579922676, -0.027279172092676163, -0.017905963584780693, -0.002524925861507654, -0.0019159523071721196, -0.0067628128454089165, 0.013561238534748554, 0.01429485622793436, 0.04401704668998718, 0.02509968727827072, 0.006132471840828657, -0.01135326363146305, 0.0035754945129156113, -0.0040562632493674755, -0.01200141105800867, -0.0006477022543549538, -0.00637819804251194, -0.010947281494736671, -0.02732190676033497, 0.029458656907081604, 0.0173361636698246, 0.0026905240956693888, 0.002512461505830288, 0.007478624116629362, -0.032649535685777664, 0.021068353205919266, 0.03598286584019661, -0.013133888132870197, -0.013290583156049252, -0.009907396510243416, 0.023176612332463264, 0.012072635814547539, -0.007232897914946079, -0.015712233260273933, 0.009088308550417423, -0.008831898681819439, -0.03128201514482498, 0.019658097997307777, 0.016210807487368584, 0.0029772047419101, 0.009252126328647137, -0.0028294126968830824, 0.019316216930747032, 0.04113955423235893, 0.019686587154865265, -0.022578323259949684, 0.03219369798898697, -0.012051268480718136, -0.016623912379145622, 0.005032045766711235, -0.0346723273396492, 0.005299139302223921, -0.007111815270036459, 0.03008543699979782, -0.010690871626138687, -0.0011235742131248116, 0.002930908463895321, 0.0112179359421134, 0.016695138067007065, 0.003771363291889429, -0.006406688131392002, -0.013938730582594872, -0.040313344448804855, 0.011381753720343113, -0.00896722637116909, -0.006634607911109924, -0.000672185851726681, 0.023148123174905777, -0.0017574767116457224, 0.0019853967241942883, -0.01251423079520464, -0.014451551251113415, -0.008796286769211292, 0.009159534238278866, -0.0032460789661854506, 0.009116798639297485, 0.022364648059010506, 0.0012767079751938581, -0.01036323606967926, -0.005263526923954487, 0.0054024155251681805, -0.016410239040851593, -0.009301983751356602, -0.00552705954760313, -0.0016435167053714395, -0.017706533893942833, -0.0002457262307871133, 0.008917368948459625, -0.0008760673808865249, -0.007991444319486618, -0.01504271849989891, -0.004900279454886913, 0.00927349366247654, 0.0007153660408221185, 0.018404537811875343, 0.0032799108885228634, -0.005227914545685053, 0.004558399319648743, -0.009992866776883602, -0.0019836160354316235, -0.01480055321007967, -0.0054024155251681805, 0.0030519908759742975, -0.01564100757241249, -0.003799853380769491, 0.07413097470998764, -0.006947997957468033, 0.0021118209697306156, -0.011310528963804245, 0.0012856110697612166, -0.004145294427871704, 0.0028596834745258093, 0.02162390761077404, 0.004205835983157158, -0.011410243809223175, -0.011445856653153896, -0.023062651976943016, -0.005897429306060076, 0.009544149041175842, -0.009351841174066067, 0.015811948105692863, 0.015811948105692863, 0.025156667456030846, -0.010185173712670803, 0.00872506108134985, 0.0034775601234287024, 0.00496082054451108, 0.0023112508933991194, 0.00034477346343919635, -0.013561238534748554, 0.01440169382840395, 0.006299850530922413, 0.02699427120387554, 0.0034063351340591908, 0.020470062270760536, 0.021894562989473343, 0.006406688131392002, -0.023319061845541, -0.020968638360500336, -0.007357541471719742, 0.013782035559415817, -0.006513525731861591, 0.010085458867251873, 0.002929127775132656, 0.00876779668033123, -0.00931622926145792, -0.011182324029505253, 0.016695138067007065, 0.026851821690797806, 0.0016444070497527719, 0.010199419222772121, -0.004540593363344669, 0.0009294861229136586, 0.010113948956131935, -0.01210824865847826, -0.01306266337633133, 0.0077492790296673775, 0.006755690556019545, 0.01961536332964897, 0.008197996765375137, -0.006228625774383545, 0.014366080984473228, -0.011324773542582989, -0.015498558059334755, 0.0029184441082179546, 0.0023237152490764856, -0.008539876900613308, -0.01175924576818943, -0.028732161968946457, -0.0056089679710567, -0.010705116204917431, -0.005534181836992502, -0.026253532618284225, 0.0064814742654562, 0.018689438700675964, -0.017920207232236862, 0.030569765716791153, 0.009188024327158928, -0.013027051463723183, -0.0017663798062130809, 0.013069786131381989, 0.011004261672496796, 0.0006730761961080134, -0.002222219714894891, 0.0019034879514947534, -0.004341163206845522, -0.005146005656570196, -0.008504264056682587, -0.03059825673699379, 0.016011377796530724, 0.0006347927264869213, 0.027848972007632256, -0.012386025860905647, 0.007037029135972261, -0.012806253507733345, -0.013824771158397198, 0.01754983887076378, -0.018817642703652382, 0.008660959079861641, -0.00046429791836999357, -0.010113948956131935, -0.00498218834400177, -0.008839021436870098, 0.003967232070863247, -0.00017850763106252998, -0.002366450382396579, 0.015783458948135376, 0.00029825465753674507, 0.01056978851556778, -0.0006450313376262784, -0.009351841174066067, -0.0024323335383087397, 0.012428761459887028, -0.01460112351924181, 0.006075491663068533, -0.013133888132870197, -0.01037035882472992, -0.008333324454724789, -0.01091166865080595, -0.02789170667529106, 0.0031321190763264894, 0.0086680818349123, -0.0044159493409097195, -0.02200852334499359, -0.018774908035993576, -0.006556260399520397, 0.0023254959378391504, 0.011125343851745129, -0.006210819352418184, 0.0025142421945929527, 0.00985753908753395, -0.007240020204335451, -0.0114672239869833, -0.03350423648953438, 0.011388876475393772, 0.004950136877596378, 0.005523498170077801, -0.016096848994493484, 0.0029220052529126406, 0.0035256370902061462, 0.00016159169899765402, 0.0032781301997601986, -0.009408821351826191, -0.001392448553815484, -0.014066935516893864, 0.0066773430444300175, -0.010947281494736671, 0.00021245080279186368, 0.023390287533402443, -0.008952981792390347, -0.00583332683891058, -0.02552703768014908, -0.008034178987145424, 0.010413093492388725, -0.0010194076457992196, 0.03088315576314926, -0.038603946566581726, -0.004935891833156347, 0.011189445853233337, -0.00486110569909215, 0.012357535772025585, -0.02841877192258835, -0.0015998913440853357, 0.007393154315650463, -0.010113948956131935, 0.02024214342236519, -0.0010710458736866713, -0.028162362053990364, 0.0027475040405988693, -0.01111822109669447, -0.008347569033503532, 0.012122493237257004, 0.009380331262946129, 0.02411678247153759, 0.01007121428847313, -0.0017521347617730498, 0.003671648446470499, 0.0007514236494898796, -0.016509953886270523, 0.017065508291125298, 0.004522786941379309, 0.0033066202886402607, 0.0001926413387991488, -0.014188018627464771, 0.017621062695980072, 0.02101137302815914, -0.018518498167395592, -0.0003839472192339599, -0.025569772347807884, 0.007970076985657215, -0.02999996580183506, -0.003657403402030468, 1.8793938579619862e-05, -0.00637463666498661, 0.018475763499736786, -0.018703682348132133, 0.011004261672496796, 0.011887450702488422, -0.009188024327158928, -0.015213658101856709, 0.004736462142318487, 0.0005065877339802682, 0.0028436577413231134, 0.0027439428959041834, -0.005470079369843006, -0.0012829401530325413, 0.0007754620746709406, 0.013468646444380283, -0.005737172905355692, -0.00927349366247654, 0.00421295827254653, 0.0032888140995055437, -0.01954413764178753, -0.013326195999979973, 0.009764946065843105, -0.04871789366006851, -0.016367502510547638, 0.00995725393295288, -0.008133893832564354, -0.015612518414855003, 0.008603978902101517, 0.02343302220106125, -0.0003380961425136775, 0.03316235542297363, 0.027962932363152504, 0.01603986881673336, 0.020284878090023994, 0.0014663445763289928, -0.0025623191613703966, -0.008105403743684292, -0.000802171474788338, -0.00961537379771471, 0.015527048148214817, 0.017264937981963158, -0.012585456483066082, 0.007528481539338827, -0.0009481827146373689, -0.014672348275780678, -0.016566932201385498, 0.018703682348132133, 0.023960087448358536, 0.020256387069821358, 0.004515664651989937, -0.008739306591451168, -0.02072647213935852, -0.013874628581106663, -0.002558757783845067, -0.026965782046318054, 0.0032923752442002296, -0.0002532938669901341, -0.012364658527076244, 0.013440156355500221, 0.005313384346663952, -0.014843287877738476, -2.672328264452517e-05, 0.007898851297795773, -0.004188029561191797, 0.013311951421201229, -0.008910246193408966, 0.01994299702346325, 0.016196563839912415, -0.0027759941294789314, 0.015455823391675949, 0.015099698677659035, -0.012642435729503632, -0.008554121479392052, 0.0061146654188632965, 0.005662386771291494, -0.008675203658640385, 0.019886016845703125, 0.025142421945929527, -0.041025593876838684, -0.009850416332483292, -0.0023059090599417686, 0.03299141675233841, -0.016794852912425995, 0.008169506676495075, 0.01924499310553074, 0.01615382730960846, 0.004188029561191797, -0.008433039300143719, 0.005348996724933386, -0.024487152695655823, 0.002282761037349701, 0.008646713569760323, -0.009145288728177547, 0.012243576347827911, 0.0034918051678687334, -0.020769206807017326, -0.007386031560599804, -0.027635296806693077, -0.023945841938257217, -0.002523145405575633, -0.030512787401676178, 0.0044301943853497505, 0.001384435803629458, 0.0010692651849240065, 0.011780614033341408, 0.019999977201223373, -0.024772051721811295, -0.010968648828566074, 0.00012720338418148458, -0.0067414455115795135, -0.007154550403356552, 0.003287033410742879, -0.018076902255415916, 0.009544149041175842, 0.010990016162395477, -0.009508536197245121, 0.007421643938869238, -0.013148133642971516, 0.010434461757540703, 0.001102206762880087, -0.0134045435115695, 0.0077492790296673775, 0.024757808074355125, 0.01713673397898674, 0.00012631306890398264, -0.009358963929116726, -0.005210108123719692, -0.006944436579942703, 0.0028703671414405107, 0.007599706761538982, 0.005064096767455339, 0.008269221521914005, -0.003272788366302848, 0.026780597865581512, 0.0004629624600056559, 0.010277766734361649, 0.009237881749868393, -0.001172541407868266, 0.021196557208895683, 0.004526348318904638, 0.0019408810185268521, 0.0026264216285198927, 0.003415238345041871, 0.001310539897531271, -0.013874628581106663, -0.003739312058314681, -0.014166651293635368, 0.008269221521914005, 0.0017512445338070393, -0.005309822969138622, -0.0013666294980794191, -0.0010229689069092274, -0.016395993530750275, -0.011196568608283997, 0.000477207446238026, -0.006794864311814308, -0.016794852912425995, 0.01081195380538702, 0.011061240918934345, -0.0019925192464143038, 0.02220795303583145, 0.03948713466525078, 0.006830476690083742, -0.0013212235644459724, 0.007364664226770401, 0.002444797893986106, -0.026809087023139, -0.0011333676520735025, -0.004661675542593002, -0.0024234303273260593, 0.0014494286151602864, -0.008938736282289028, -0.01274927332997322, 0.02490025758743286, -0.012378904037177563, -0.011737878434360027, 0.010078336112201214, 0.020697982981801033, -0.009950131177902222, 0.013589728623628616, -0.008546998724341393, 0.002378914738073945, 0.0004651882336474955, -0.019658097997307777, -0.004116804338991642, -0.01811963878571987, -0.007485746871680021, 0.00038105371640995145, -0.009081186726689339, 0.0015856464160606265, 0.006121788173913956, 0.02292020246386528, 0.02034185826778412, 0.0031997826881706715, -0.00025574222672730684, 0.0051424442790448666, 0.016866078600287437, 0.0010265301680192351, -0.0032104665879160166, 0.022150972858071327, 0.0028027035295963287, -0.02908828668296337, 0.0041417330503463745, 0.0005190521478652954, 0.009102554060518742, 0.001684471033513546, 0.010961526073515415, -0.008205119520425797, -0.017179468646645546, 0.009059819392859936, 0.00896722637116909, -0.010185173712670803, 0.009095431305468082, -0.008582611568272114, -0.022806242108345032, -0.001272256369702518, -0.010968648828566074, -0.023447267711162567, 0.001926636090502143, 0.01555553823709488, 0.023076897487044334, -0.030541276559233665, 0.02223644219338894, 0.016096848994493484, 0.0022934447042644024, 0.016695138067007065, 0.00921651441603899, 0.0043945820070803165, 0.033048395067453384, -0.006994294002652168, 0.015826193615794182, -0.0040206508710980415, 0.016809098422527313, 0.010833321139216423, 0.01425924338400364, -0.015669498592615128, 0.012051268480718136, -0.005904552061110735, 0.01310539897531271, -0.003917374648153782, 0.021951543167233467, 0.026951536536216736, 0.011495714075863361, -0.01370368804782629, 0.03535608574748039, 0.006445861887186766, -0.00175658636726439, -0.013774913735687733, 0.012848988175392151, -0.017279183492064476, -0.009344719350337982, 0.019358953461050987, -0.010883178561925888, -0.0011013164184987545, 0.0031980022322386503, 0.0020299123134464025, 0.006470790598541498, 0.01635325886309147, 0.005797714460641146, 0.02172362245619297, 0.004163100849837065, -0.018504252657294273, 0.01254984363913536, 0.01524214819073677, 0.016395993530750275, 0.0063888817094266415, -0.0356694757938385, 0.000938389275688678, -0.009537026286125183, 0.012022778391838074, 0.010797709226608276, -0.02363245189189911, -0.0011440514354035258, -0.007521359249949455, 0.0229344479739666, 0.0015357888769358397, 0.000376156996935606, 0.00920939166098833, 0.0050819031894207, 0.007578338962048292, -0.007207969203591347, -0.0014547704486176372, -0.0010470073902979493, -0.006036317907273769, 0.014985738322138786, -0.011987166479229927, -0.007165234070271254, 0.0027083302848041058, -0.007856116630136967, 0.009843293577432632, -0.0035078309010714293, -0.0035202952567487955, -0.01811963878571987, 0.005722928326576948, 0.0011689801467582583, 0.0014396351762115955, 0.008340446278452873, -0.006873211823403835, -0.02220795303583145, 0.016310522332787514, 0.006185890641063452, 0.010156683623790741, 0.01101138349622488, -0.0005644580814987421, 0.005968654528260231, 0.0035541271790862083, 0.0067272004671394825, -0.0066915880888700485, 0.0011369289131835103, 0.04980051517486572, 0.0057549793273210526, -0.01231480110436678, -0.0006232186569832265, -0.022378891706466675, -0.01633901335299015, 0.006356830708682537, 0.0070299068465828896, -0.002957617864012718, -0.01091166865080595, 0.003917374648153782, 0.0008480225806124508, 0.03202275559306145, 0.01793445274233818, -0.021809091791510582, -0.008839021436870098, 0.02759256213903427, -0.014615368098020554, 0.02163815312087536, 0.013290583156049252, 0.01675211824476719, 0.0179486982524395, -0.001490382943302393, 0.017179468646645546, -0.028361791744828224, -0.0012152764247730374, -0.0010327623458579183, 0.000672185851726681, 0.013789158314466476, -0.003545223968103528, 0.00896722637116909, -0.0014173773815855384, 0.0025284872390329838, -0.031538426876068115, 0.02152419276535511, 0.011538448743522167, -0.004120365716516972, -0.008005688898265362, 0.007058396935462952, 0.015413088724017143, -0.006955120246857405, 0.01764955371618271, -0.02971506677567959, 0.005170934367924929, -0.0054380279034376144, 0.03518514707684517, -0.006271360442042351, -0.018988583236932755, -0.026623902842402458, -0.014757818542420864, -0.019658097997307777, -0.025683732703328133, -0.001150283613242209, -0.01991450786590576, 0.00658118911087513, 0.03595437481999397, -0.001692483900114894, 0.009024206548929214, -0.007970076985657215, -0.013091153465211391, -0.0040064058266580105, 0.00971508864313364, 0.008782041259109974, -0.004647430498152971, 0.0047685131430625916, 0.03031335584819317, 0.011274916119873524, -0.010655258782207966, -0.0049928720109164715, 0.008069791831076145, -0.002250709803774953, -0.013027051463723183, -0.0030252814758569, -0.005124638322740793, -0.0016194782219827175, -0.03387460485100746, -0.004305550828576088, -0.0069230692461133, 0.004690165631473064, 0.0034561927895992994, -0.01635325886309147, 0.01793445274233818, 0.0019996415358036757, 0.0028383159078657627, -0.011431611143052578, -0.012898845598101616, 0.004405265673995018, 0.007061957847326994, 0.008945859037339687, 0.011688021011650562, 0.007122499402612448, -0.002717233495786786, -0.03455836698412895, 0.011745001189410686, -0.0029914495535194874, 0.012250698171555996, -0.02612532675266266, 0.004472929518669844, -0.014715082943439484, -0.01051280926913023, -0.006385320331901312, 0.0020459378138184547, -0.02860395610332489, 0.007962954230606556, 0.012528476305305958, 0.005712244194000959, -0.007706544362008572, 0.010341868735849857, 0.0017450123559683561, 0.00975782424211502, -0.01115383394062519, -0.013240725733339787, 0.012079758569598198, 0.005569794215261936, -0.007165234070271254, 0.023390287533402443, -0.011025629006326199, 0.00248041027225554, -0.013461523689329624, 0.023290572687983513, -0.023105386644601822, 0.017179468646645546, 0.02250709757208824, -0.031680878251791, -0.021894562989473343, 0.021908806636929512, -0.018874622881412506, 0.009565516375005245, -0.013717933557927608, 0.010747850872576237, 0.018205108121037483, 0.02330481819808483, -0.019301973283290863, 0.01605411246418953, 0.001658651977777481, 0.0012909530196338892, -0.03196577727794647, 0.008205119520425797, -0.008190874010324478, -0.02471507154405117, 0.011524203233420849, -0.007528481539338827, -0.02282048761844635, 0.011830471456050873, -0.014928758144378662, -0.0049430145882070065, 0.000598289945628494, 0.012022778391838074, -0.011972920969128609, -0.00518517941236496, -0.02901706099510193, -0.0032425178214907646, -0.000732281943783164, -0.010113948956131935, -0.021809091791510582, -0.01449428591877222, 0.007970076985657215, -0.00735041918233037, 0.0017494638450443745, 0.0007825845968909562, -0.013967220671474934, 0.020868923515081406, 0.00896722637116909, -0.004604695830494165, -0.010947281494736671, -7.072419248288497e-05, 0.0034223608672618866, 0.023575471714138985, -0.02253558672964573, 0.018703682348132133, -0.00048522025463171303, 0.019700832664966583, 0.0020138865802437067, 0.0021260660141706467, 0.02552703768014908, -0.012129615992307663, 0.017065508291125298, -0.006930191535502672, -0.0059793381951749325, -0.011139588430523872, -0.014408815652132034, -0.02552703768014908, -0.03695152699947357, 0.0005484324647113681, 0.005470079369843006, -0.010519931092858315, -0.008482896722853184, -1.5149222235777415e-05, 0.012834743596613407, -0.01633901335299015, -0.00498218834400177, -0.025840427726507187, 0.019316216930747032, -0.006944436579942703, -0.014316223561763763, -0.03760679438710213, 0.014971493743360043, 0.015455823391675949, 0.009230758994817734, -0.011274916119873524, 0.016894567757844925, -0.011481468565762043, 0.006773496512323618, -0.021994277834892273, -0.01285611093044281, 0.011495714075863361, 0.005908112972974777, 0.012898845598101616, -0.006947997957468033, 0.0030056945979595184, 0.0035897395573556423, -0.0024038434494286776, 0.004853983409702778, 0.0014681251486763358, -0.00038238917477428913, 0.004558399319648743, 0.0014912732876837254, -0.013041296042501926, -0.031168056651949883, 0.008205119520425797, -0.0153418630361557, -0.007215091492980719, 0.026068346574902534, -0.01081907656043768, -0.0016550907166674733, 0.004191590938717127, 0.020954392850399017, -0.004237886983901262, 0.011189445853233337, 0.012179473415017128, 0.01275639608502388, -0.001974712824448943, 0.028447261080145836, 0.005124638322740793, 0.018874622881412506, -0.013012805953621864, 0.016381748020648956, -0.009351841174066067, -0.0004273499653209001, 0.025441566482186317, -0.012492863461375237, 0.0037820469588041306, 0.00842591654509306, -0.02790595218539238, 0.011403121054172516, 0.002494655316695571, 0.004166662227362394, -0.00390669098123908, -0.013881751336157322, -0.00692663062363863, 0.004472929518669844, 0.021068353205919266, 0.03376064449548721, -0.00022102004732005298, -0.014095425605773926, 0.021068353205919266, 0.014480040408670902, -0.004277060739696026, -0.001592768938280642, 0.008390303701162338, 0.02649569697678089, 0.014629613608121872, 0.008831898681819439, 0.012827620841562748, 0.01047007367014885, 0.008739306591451168, -0.0008840801892802119, -0.006794864311814308, 0.00821936409920454, -0.008532754145562649, -0.0023041286040097475, -0.0066274856217205524, 0.009786314330995083, 0.02131051756441593, -0.007364664226770401, 0.0054380279034376144, -0.005722928326576948, 0.0026958659291267395, -0.0011707608355209231, -0.004180906806141138, 0.012136738747358322, 0.016125338152050972, 0.0158404391258955, -0.011474345810711384, 0.008753551170229912, -0.01350425835698843, 0.004725778009742498, -0.00722933653742075, -0.013447278179228306, 0.030455807223916054, 0.009978621266782284, 0.025142421945929527, 0.0244301725178957, -0.0038960070814937353, 0.011424488388001919, -0.015085453167557716, 0.012891723774373531, 0.007407399360090494, -0.003924496937543154, 0.01135326363146305, -0.005801275372505188, -0.013361808843910694, 0.00573361199349165, 0.024273477494716644, 0.01050568651407957, 0.00821936409920454, -0.008247854188084602, -0.006577628199011087, 0.019273482263088226, -0.01813388243317604, 0.0030893839430063963, 0.006759251933544874, 0.0015936591662466526, 0.015897417441010475, -0.003059113398194313, -0.016282033175230026, -0.015427333302795887, 0.0026299827732145786, 0.0024376753717660904, 0.01613958366215229, -0.008091159164905548, -0.009301983751356602, -0.004640308208763599, -0.021153822541236877, 0.006559821777045727, 0.00712606031447649, -0.025270627811551094, -0.029316207394003868, 0.0043945820070803165, 0.010534176602959633, -0.0020494991913437843, 0.01037035882472992, 0.018162373453378677, 0.0025534159503877163, 0.004170223139226437, -0.02242162823677063, 0.015484313480556011, 0.0017200835281983018, -0.04672359302639961, -0.00856836698949337, -0.00012085990601917729, 0.00540597690269351, -0.008212241344153881, 0.002758187707513571, -0.027179457247257233, -0.004764951765537262, -0.014423061162233353, -0.009444434195756912, -0.009992866776883602, -0.005594722926616669, -0.012158106081187725, 0.002134969225153327, -0.0006530441460199654, -0.017293427139520645, 0.015227903611958027, 0.006880334112793207, -0.007264949381351471, -0.007104692980647087, 0.0013461523922160268, -0.024957237765192986, -0.0010220786789432168, -0.005192301701754332, -0.006203696597367525, 0.008233608677983284, 0.015541293658316135, 0.007257826626300812, 0.009188024327158928, 0.02421649731695652, -0.005249281879514456, -0.0038105370476841927, 0.003563030157238245, -0.0003977470623794943, -0.021096842363476753, -0.009537026286125183, -0.014287733472883701, 0.022079747170209885, 0.018190862610936165, 0.007742156740278006, -0.0016221491387113929, -0.005865378305315971, -0.003757118247449398, -0.018774908035993576, 0.004205835983157158, -0.016723627224564552, -0.018490007147192955, 0.01524214819073677, 0.014615368098020554, -0.02782048098742962, -0.0043091122061014175, 0.0017031675670295954, 0.0011315870797261596, -0.010933035984635353, 0.015883173793554306, 0.007314806804060936, -0.02044157311320305, 0.02772076614201069, 0.007343296892940998, 0.008098281919956207, 0.0030074752867221832, 0.01783473789691925, 0.00920939166098833, -0.013525625690817833, -0.008183751255273819, 0.005783469416201115, 0.005363241769373417, -0.016225052997469902, -0.014914513565599918, -0.013668076135218143, -0.027464356273412704, -0.04584040492773056, -0.00465811463072896, 0.009380331262946129, 0.009195146150887012, 0.0044800518080592155, -1.5149222235777415e-05, 0.014643858186900616, 0.011296283453702927, 0.006969365291297436, 0.012535598129034042, -0.01450140867382288, -0.01341166626662016, -0.0024537008721381426, 0.005516375415027142, 0.01046295091509819, -0.01370368804782629, -0.0041559780947864056, 0.008824776858091354, -0.007962954230606556, -0.0034739989787340164, -0.012948703952133656, -0.013240725733339787, 0.0009312667534686625, -0.0011618576245382428, 0.018974337726831436, 0.019273482263088226, 0.00735041918233037, 0.0029077602084726095, -0.00801993440836668, -0.024886012077331543, 0.013240725733339787, -0.020769206807017326, 0.015726478770375252, 0.006225064396858215, 0.018789153546094894, 0.009586883708834648, -0.006962243001908064, -0.015683744102716446, 0.014586878009140491, 0.011987166479229927, 0.008254976943135262, -0.017621062695980072, 0.004967943299561739, 0.0014253901317715645, -0.008810531347990036, 0.03031335584819317, 0.021068353205919266, -0.00318909902125597, 0.0020334734581410885, 0.009159534238278866, -0.017364652827382088, -0.006595434155315161, -0.01245725154876709, 0.01703701727092266, 0.018603967502713203, -0.0004651882336474955, 0.019957242533564568, -0.0134045435115695, -0.0006165413651615381, -0.01007121428847313, 0.01863245852291584, 0.00021267337433528155, -0.004640308208763599, 0.011787735857069492, -0.016566932201385498, -0.00862534623593092, -0.024544132873415947, -0.0030502101872116327, 0.020897412672638893, 0.036923035979270935, -0.005327629391103983, 0.021054107695817947, -0.02042732760310173, 0.015227903611958027, -0.01574072241783142, 0.0028222904074937105, 0.01941593363881111, -0.011923063546419144, 0.011189445853233337, -0.005245720501989126, -0.013831892982125282, -0.00043291441397741437, 0.024686582386493683, -0.007806259207427502, -0.010947281494736671, -0.00659899553284049, 0.009893151000142097, -0.010113948956131935, -0.002439456060528755, -0.0047898804768919945, 0.010277766734361649, 0.013803403824567795, -0.0007629977189935744, 0.005270649213343859, 0.004921646788716316, -0.008653836324810982, -0.007621074095368385, 0.0037642407696694136, -0.006570505443960428, -0.012784886173903942, -0.0010167367290705442, -0.005224353168159723, -0.02203701250255108, 0.006118226796388626, 0.010049846023321152, 0.004052701871842146, -0.04245009645819664, -0.0034704378340393305, -0.0051139541901648045, 0.04256405681371689, 0.024401681497693062, 0.028532732278108597, -0.00627492181956768, -0.006417371798306704, 0.017962943762540817, 0.004412388429045677, -0.013931608758866787, -0.001208153902553022, -0.0007759072468616068, 0.006769935600459576, -0.023319061845541, -0.0023059090599417686, -0.022193707525730133, -0.028247831389307976, 0.01350425835698843, 0.014437305741012096, 0.022749261930584908, 0.009116798639297485, -0.012378904037177563, -0.0014850411098450422, -0.011752123944461346, 0.02074071764945984, 0.003799853380769491, -0.0007910425774753094, -0.003789169481024146, -0.00992164108902216, -0.014529898762702942, 0.020199406892061234, 0.005117515567690134, 0.0027617490850389004, 0.029344696551561356, -0.007585461717098951, 0.007111815270036459, 0.012371781282126904, -0.02599712274968624, -0.018817642703652382, 0.011274916119873524, 0.014814798720180988, 0.022464362904429436, 0.010548421181738377, -0.005060535855591297, -0.008803408592939377, 0.007863239385187626, 0.010933035984635353, -0.01251423079520464, 0.022079747170209885, -0.0033938707783818245, -0.012172351591289043, -0.0025854671839624643, 0.01170226652175188, 0.018974337726831436, 0.014886023476719856, 0.003433044534176588, -0.015113943256437778, 0.006969365291297436, -0.0027938003186136484, -0.004921646788716316, 0.016111092641949654, -0.02732190676033497, -0.014244998805224895, 0.002492874627932906, 0.014095425605773926, -0.01176636852324009, 0.009601129218935966, 0.006755690556019545, 0.00921651441603899, 0.007464379072189331, 0.004287744406610727, -0.0031338995322585106, -0.020968638360500336, -0.0021919491700828075, 0.0031837571877986193, -0.0010113948956131935, -0.024444418027997017, 0.004529909696429968, -0.01803416758775711, 0.01299856137484312, 0.029059797525405884, -0.002589028561487794, 0.012599701061844826, 0.006032756995409727, -0.006022072862833738, 0.013860383071005344, -0.016965793445706367, 0.013824771158397198, -0.010961526073515415, -0.003974354360252619, 0.014216508716344833, 0.03307688608765602, -0.009280616417527199, -0.00019163974502589554, -0.0009125702199526131, -0.0064244940876960754, -0.0017298769671469927, 0.0012909530196338892, -0.0066559757106006145, -0.0017218642169609666, 0.006937314290553331, -0.005940164439380169, -0.012991438619792461, 0.006623924244195223, -0.021353252232074738, 0.01455838792026043, 0.015113943256437778, -0.02373216673731804, 0.003931619692593813, -0.0030377458315342665, 0.004017089493572712, 0.009928763844072819, -0.013368930667638779, 0.007421643938869238, -0.009800558909773827, 0.021210802718997, -0.0052813333459198475, 0.0069230692461133, 0.009558393619954586, -0.010028478689491749, -0.017877472564578056, 0.011944430880248547, 0.009871783666312695, -0.0005297358729876578, 0.020284878090023994, -0.00508546456694603, -0.007792014162987471, 0.018760662525892258, 0.0218233373016119, 0.0034544121008366346, 0.014686593785881996, 0.007133183069527149, -0.007756401784718037, 0.00020888954168185592, -0.0106054013594985, -0.006225064396858215, 0.011509958654642105, 0.003290594555437565, 0.00357371405698359, 0.006787741556763649, -0.00582976546138525, -0.01201565656810999, -0.0077991364523768425, -0.016196563839912415, 0.018304822966456413, -0.003952987026423216, 0.026851821690797806, 0.0010158465011045337, -0.0025391709059476852, -0.0016915935557335615, -0.024401681497693062, 0.023575471714138985, 0.020897412672638893, -0.013803403824567795, 0.011680898256599903, 0.02871791645884514, 0.017065508291125298, 0.014081181026995182, -0.025883162394165993, 0.02101137302815914, -0.01091166865080595, 0.0018981460016220808, -0.011602550745010376, -0.0007656686357222497, 0.009458678774535656, 0.024772051721811295, -0.008632468990981579, -0.008475773967802525, -0.0063176569528877735, -0.0020619635470211506, 0.004697288386523724, 0.006752129178494215, 0.002699427306652069, -0.02521364763379097, -1.0036881576525047e-05, 0.008482896722853184, 0.00942306686192751, 0.018960092216730118, -0.004622501786798239, 0.0014476479263976216, -0.008376059122383595, -0.02370367757976055, 0.01613958366215229, -0.008653836324810982, 0.015584028325974941, 0.007104692980647087, -0.0025178035721182823, 0.007955831475555897, -0.0026299827732145786, 0.04353271424770355, 0.014537020586431026, -0.014102548360824585, -0.0066417306661605835, -0.01429485622793436, -0.013696566224098206, -0.008254976943135262, 0.029971476644277573, 0.013276338577270508, -0.02552703768014908, -0.019159521907567978, -0.03757830709218979, -0.0017289866227656603, 0.02819085121154785, -0.013767790980637074, -0.00044649167102761567, 0.023546982556581497, 0.014572633430361748, 0.007507114205509424, 0.02431621216237545, 0.0013568360591307282, -0.0070512741804122925, 0.006844721734523773, 0.01991450786590576, 0.03401705622673035, -0.023888861760497093, -0.005099709611386061, 0.030655236914753914, 0.005804836750030518, 0.0053311907686293125, 0.0021652397699654102, 0.0002242474292870611, -0.004953698255121708, 0.011638163588941097, -0.01091166865080595, 0.007891729474067688, -0.012464373372495174, -0.008589734323322773, 0.0012179473415017128, 0.021965786814689636, -0.030370336025953293, 0.001748573500663042, 0.0016114654717966914, -0.00971508864313364, 0.003561249701306224, 0.0010852908017113805, -0.001118232379667461, -0.01156693883240223, 0.024472907185554504, -0.0024982166942209005, 0.007378909271210432, 0.0004133275360800326, 0.021752111613750458, -0.004387459717690945, -0.008653836324810982, -0.01934470795094967, 0.015014228411018848, 0.01834755763411522, -0.0022293422371149063, 0.002866805996745825, 0.00670227175578475, 0.01210824865847826, 0.005167372990399599, 0.010199419222772121, 0.01091166865080595, -0.017920207232236862, -0.005220791790634394, 0.009686598554253578, -0.017179468646645546, 0.003703699680045247, -0.005039168056100607, -0.003336890833452344, 0.001336358953267336, -0.011296283453702927, 0.011837593279778957, 0.01575496792793274, -0.005049851723015308, 0.004715094342827797, 0.0013933388981968164, -0.001994299702346325, -0.02024214342236519, -0.008888878859579563, -0.0050427294336259365, 0.00014567736070603132, 0.046381715685129166, 0.015612518414855003, 0.004063386004418135, -0.009950131177902222, 0.0023397409822791815, -0.022877467796206474, -0.004049140959978104, 0.009480046108365059, -0.01310539897531271, 0.004868227988481522, -0.008390303701162338, -0.0276922769844532, 0.01305554062128067, -0.002407404826954007, 0.005865378305315971, 0.010220786556601524, 0.01863245852291584, 0.00811964925378561, -0.0006588311516679823, 0.007656686473637819, -0.009772068820893764, 0.007898851297795773, -0.021951543167233467, -0.01201565656810999, -0.0037749246694147587, 0.010904545895755291, 0.012941581197082996, -0.0022578323259949684, -0.007528481539338827, -0.003303058911114931, 0.01101138349622488, -0.00821936409920454, -0.013839015737175941, -0.00346153462305665, 0.01924499310553074, 0.009444434195756912, 0.020299123600125313, 0.019301973283290863, -0.007898851297795773, -0.009487168863415718, -0.029430165886878967, -0.01241451594978571, 0.0173361636698246, -0.008361813612282276, -0.019458668306469917, -0.0013612876646220684, -0.00324964034371078, 0.006228625774383545, -0.011951553635299206, -0.0027475040405988693, 0.004138172138482332, 0.01047007367014885, -0.01562676392495632, 0.0006187671096995473, -0.0013043077196925879, 0.00033164137857966125, -0.0015892076771706343, -0.0007318367715924978, -0.03028486669063568, -0.016410239040851593, -0.0008052875637076795, 0.0086680818349123, 0.009123921394348145, -0.00846152938902378, -0.004483613185584545, 0.0069658043794333935, 0.012777763418853283, 0.008354691788554192, 0.00048566542682237923, -0.005747857037931681, 0.013326195999979973, -0.014672348275780678, -0.010384603403508663, -0.015512803569436073, -0.002523145405575633, -0.02343302220106125, -0.020883167162537575, -0.0004280176945030689, -0.011923063546419144, -0.02183758281171322, 0.0021652397699654102, -0.009779191575944424, 0.016481462866067886, 0.0030680166091769934, -0.006474351976066828, -0.001336358953267336, -0.0024715072941035032, -0.013226481154561043, 0.017507102340459824, 0.007300561759620905, 0.01361109595745802, 0.001956906635314226, -0.000668179476633668, 0.003641377668827772, 0.005794153083115816, 0.008675203658640385, -0.008753551170229912, -0.0016381748719140887, 0.011182324029505253, -0.0027759941294789314, 0.001068374840542674, 0.015056963078677654, -0.0005560001009143889, 0.048575446009635925, 0.0011538448743522167, -0.021495701745152473, -0.0174501221626997, -0.03826206550002098, -0.012742151506245136, 0.016980038955807686, -0.005534181836992502, 0.007806259207427502, -0.020982882007956505, 0.018803397193551064, -0.005594722926616669, 0.011232181452214718, -0.00877491943538189, 0.014216508716344833, -0.007254265248775482, 0.00433404091745615, -0.004693727008998394, 0.013447278179228306, 0.02220795303583145, 0.009245003573596478, -0.006260676775127649, -0.010876055806875229, 0.0002593034878373146, 0.010306255891919136, -0.017364652827382088, -0.007329051848500967, 0.005765662994235754, -0.008589734323322773, -0.00034321541897952557, 0.009672353975474834, -0.002751065418124199, -0.01615382730960846, 0.015455823391675949, -0.015284882858395576, 0.014772063121199608, -0.017464367672801018, -0.03527061641216278, -0.0036502808798104525, -0.00552705954760313, 0.01395297609269619, -0.0086680818349123, 0.004487174563109875, -0.008468651212751865, 0.011168078519403934, -0.0006931081879884005, 0.008197996765375137, 0.002138530369848013, -0.022165218368172646, -0.0046545532532036304, -0.0002648679364938289, 7.979424844961613e-05, 0.01941593363881111, -0.019871773198246956, 0.0033101814333349466, -0.011168078519403934, 0.000692217901814729, 0.002966520842164755, 0.012264943681657314, 0.001206373330205679, -0.011730756610631943, 0.00702634546905756, 0.009992866776883602, -0.002558757783845067, 0.02283473312854767, -0.017207957804203033, -0.01415240578353405, -0.01404556818306446, -0.011232181452214718, -0.013126766309142113, 0.012037023901939392, -0.008169506676495075, 0.02612532675266266, -1.438410981791094e-05, 0.00048744602827355266, -0.041025593876838684, -0.01675211824476719, 0.001004272373393178, 0.014024200849235058, 0.009102554060518742, -0.0018411660566926003, -0.021410232409834862, 0.003449070267379284, 0.008952981792390347, 0.026666637510061264, 0.004074069671332836, 0.012122493237257004, 0.00497862696647644, 0.008824776858091354, 0.004918085876852274, 0.009508536197245121, -0.008390303701162338, -0.006289166864007711, 0.00378560833632946, -0.002621079795062542, -0.023076897487044334, 0.01773502305150032, 0.016709383577108383, 0.009102554060518742, -0.01200853381305933, 0.024643847718834877], "36bac6f0-91af-4538-83f6-35a0f61e115f": [-0.0072205751203000546, -0.006189064588397741, -0.003586158622056246, 0.03522820398211479, -0.034238919615745544, -0.02450290508568287, -0.013475994579494, 0.0185430645942688, -0.012583225034177303, 0.04005398601293564, 0.011099296621978283, -0.01277625560760498, 0.04234623163938522, -0.012070485390722752, 0.034673240035772324, -0.010110012255609035, -0.0056129866279661655, 0.035517748445272446, -0.009639497846364975, -0.00556472921743989, 0.016588622704148293, -0.029750941321253777, -0.010266849771142006, 0.010562429204583168, 0.03563839569687843, -0.018820546567440033, -0.022705301642417908, 0.00689483480527997, -0.052118439227342606, -0.003782205982133746, -0.015575208701193333, -0.0015940158627927303, 0.02319994382560253, 0.012884835712611675, -0.0030749274883419275, -0.036265745759010315, -0.016636880114674568, -0.027072632685303688, -0.03889579698443413, 0.011274231597781181, -0.010309075005352497, 0.02256052754819393, -0.024358130991458893, -0.01894119195640087, -0.008752760477364063, -0.007944442331790924, -0.021233437582850456, 0.007437735330313444, -0.005181682761758566, -0.0013384002959355712, 0.013560445047914982, -0.01006778609007597, -0.02096801996231079, -0.0008249069796875119, 0.051056765019893646, -0.005730615463107824, -0.010984684340655804, 0.0334426648914814, 0.007793636992573738, -0.027555210515856743, -0.002400826197117567, -0.024623548611998558, 0.029871586710214615, 0.005516471341252327, 0.03959553688764572, 0.04960903152823448, -0.023573942482471466, 0.05207018181681633, 0.005205811467021704, -0.0011370746651664376, -0.007365348748862743, 0.00018869558698497713, -0.04162236303091049, 0.040102243423461914, 0.042322102934122086, 0.011678391136229038, 0.01778300479054451, 0.022729430347681046, 0.023586006835103035, -0.029582038521766663, 0.029220106080174446, -0.0206543430685997, 0.027434566989541054, 0.02620399184525013, 0.03568665310740471, 0.020943891257047653, 0.018663709983229637, -0.02960616908967495, -0.00623129028826952, -0.04430067166686058, 0.008203827776014805, 0.02907533198595047, 5.523257641470991e-05, -0.007594573311507702, -0.009102629497647285, -0.017722681164741516, -0.010743395425379276, -0.011111360974609852, 0.023586006835103035, -0.01766235940158367, -0.006207161117345095, 0.010043657384812832, 0.020630214363336563, 0.035831425338983536, 0.009856658056378365, -0.005284230690449476, 0.005700454115867615, 0.03047480806708336, -0.01939964108169079, -0.0035047235433012247, 9.34523850446567e-05, -0.030498938634991646, 0.020847374573349953, 0.01042971946299076, -0.03194667026400566, -0.00824605394154787, -0.021112792193889618, 0.0006107629160396755, -0.009072468616068363, -0.04639988765120506, 0.02897881716489792, -0.05178063362836838, 0.011099296621978283, -0.007914281450212002, 0.0019061836646869779, 0.016262883320450783, -0.016890235245227814, 0.005848243832588196, 0.022958654910326004, 0.011117394082248211, 0.00025071442360058427, -0.019616801291704178, 0.012438450939953327, -0.03544536232948303, 0.038606248795986176, 0.02620399184525013, 0.005045957397669554, 0.06316947937011719, -0.005284230690449476, 0.03961966559290886, 0.0002522224676795304, 0.02110072784125805, -0.029799198731780052, 0.01091229822486639, 0.0009749586461111903, -0.025697285309433937, -0.005594890099018812, 0.013741412200033665, -0.019098028540611267, 5.565671744989231e-05, -0.045531246811151505, 0.017421070486307144, -0.04811304062604904, -0.005999049171805382, 0.05433829873800278, 0.01746932789683342, 0.01000143215060234, 0.02319994382560253, -0.0025802848394960165, 0.05805414915084839, 0.05033290013670921, 0.00028747328906320035, 0.006101597100496292, 0.0033870951738208532, 0.04823368415236473, 0.009555047377943993, 0.019085964187979698, 0.012136840261518955, 0.00355599750764668, 0.009790304116904736, -0.0022500206250697374, 0.012486709281802177, 0.06403812021017075, 0.0011423529358580709, 0.001889594946987927, -0.02397206798195839, 0.04695485159754753, 0.020364796742796898, 0.013138189911842346, -0.005269149783998728, -0.030595453456044197, -0.03831670433282852, 0.05033290013670921, -0.001210215501487255, -0.01097865216434002, 0.009265500120818615, -0.013270898722112179, 0.020063186064362526, -0.003275498980656266, 0.011889518238604069, -0.014791019260883331, -0.0070335762575268745, 0.03513168916106224, 0.017095331102609634, -0.040753722190856934, -0.026951989158988, 0.015514886938035488, -0.004901184234768152, 0.03940250352025032, 0.021547112613916397, -0.002655687741935253, -0.008270182646811008, -0.029557909816503525, 0.07089072465896606, -0.020256217569112778, 0.018784353509545326, -0.005700454115867615, -0.03291182965040207, 0.019423769786953926, -0.04714788496494293, 0.056509897112846375, -0.02767585590481758, 0.04210494086146355, 0.0006035996484570205, 0.02386348880827427, 0.006635449361056089, -0.016142237931489944, 0.041067399084568024, 0.008740696124732494, -0.028568625450134277, -0.014549730345606804, 0.005082150921225548, -0.023127557709813118, 0.0051545375026762486, -0.009138823486864567, 0.0172642320394516, -0.01682991161942482, 0.007522186730057001, 0.015394242480397224, -0.032332733273506165, 0.015792369842529297, -0.01214287243783474, 0.06751268357038498, -0.03515581786632538, -0.00841495580971241, 0.015189146623015404, 0.02767585590481758, -0.004991667345166206, -0.011376779526472092, 0.009235339239239693, -0.01587682031095028, 0.005498374346643686, -0.02630050852894783, -0.03759283572435379, -0.03076435625553131, -0.006937060505151749, -0.0008083183784037828, 0.06736790388822556, -0.021872853860259056, -0.01144313346594572, -0.015454564243555069, 0.027868887409567833, 0.004934361204504967, 0.014175732620060444, -0.011678391136229038, 0.023501554504036903, 0.022307174280285835, -0.061818256974220276, 0.012740062549710274, 0.0039511085487902164, 0.016021594405174255, -0.015828562900424004, -0.004656878765672445, 0.004484960343688726, 0.023055169731378555, -0.023236136883497238, 0.036265745759010315, -0.003178983461111784, 0.017228038981556892, 0.02258465625345707, 0.01907389983534813, -0.03696548566222191, -0.0361933596432209, 0.059357110410928726, -0.017203910276293755, 0.01140090823173523, -0.013319156132638454, -0.0010835387511178851, 0.04058482125401497, 0.0051756505854427814, -0.0511532798409462, 0.002299786312505603, 0.005748711992055178, -0.0072688329964876175, 0.015623467043042183, 0.011310424655675888, -0.02374284341931343, -0.028061918914318085, -0.026807215064764023, 0.004647830501198769, 0.004665927495807409, -0.037544578313827515, 0.008089215494692326, 0.035300590097904205, -0.010405590757727623, 0.010158269666135311, 0.003178983461111784, 0.014103345572948456, 0.00044600776163861156, -0.03590381145477295, -0.011105328798294067, -0.018603386357426643, 0.012160968966782093, 0.004246687516570091, 0.04630337283015251, -0.008131441660225391, 0.019749509170651436, 0.04538647457957268, 0.005679341498762369, 0.029582038521766663, 0.027506953105330467, -0.009253435768187046, -0.02216240018606186, -0.008583858609199524, -0.014670374803245068, 0.02895468845963478, -0.04729265719652176, 0.00362235214561224, 0.0013580049853771925, -0.030716096982359886, -0.051491085439920425, 0.004433686379343271, -0.025431867688894272, 0.03139170631766319, 0.06263864040374756, -0.023127557709813118, 0.04294945299625397, -0.00508516700938344, -0.009675691835582256, 0.002019287785515189, -0.0436733216047287, -0.003118661232292652, -0.010194462724030018, 0.015539015643298626, -0.008547665551304817, -0.0007706169271841645, -0.04741330072283745, -0.017831262201070786, -0.012378129176795483, -0.004150171764194965, -0.011449165642261505, -0.017191845923662186, 0.022813880816102028, -0.00564918015152216, -0.019556479528546333, -0.0033961436711251736, 0.009524885565042496, 0.01746932789683342, 0.006448450032621622, 0.025842059403657913, 0.0007351776002906263, 0.024780387058854103, 0.022488141432404518, -0.007703153416514397, -0.022644978016614914, -0.03744806349277496, -0.01886880397796631, 0.027072632685303688, -0.005003732163459063, -0.016745461151003838, -0.0024460679851472378, -0.014187796972692013, -0.018917063251137733, -0.021969368681311607, -0.03448020666837692, -0.004364315886050463, 0.045096926391124725, 0.0024234470911324024, 0.00412905914708972, -0.01777094043791294, -0.04118804261088371, 0.006828480400145054, -0.02085943892598152, -0.015430435538291931, -0.04960903152823448, -0.034649111330509186, 0.024949289858341217, -0.00824605394154787, 0.0017719665775075555, 0.010791653767228127, 0.009717917069792747, 0.006979286205023527, -0.046496402472257614, 0.006689739413559437, 0.023718714714050293, 0.03194667026400566, 0.0012614893494173884, -0.012100646272301674, -0.040850237011909485, -0.008059054613113403, -0.010502106510102749, -0.029123589396476746, -0.004002382513135672, -0.022512270137667656, -0.006285580340772867, -0.009253435768187046, -0.01949615590274334, -0.028906429186463356, 0.021221373230218887, -0.006297644693404436, -0.05303533747792244, -0.01587682031095028, 0.00782379787415266, -0.00020000601944047958, -0.00042225586366839707, -0.03129519149661064, 0.003655529348179698, 0.01619049534201622, -0.005094215273857117, 0.0511532798409462, 0.012860707007348537, 0.0065751271322369576, 0.003242321778088808, 0.02470800094306469, 0.024514969438314438, 0.029051203280687332, -0.015816498547792435, 0.07899803668260574, -0.017384877428412437, 0.03182602673768997, 0.03141583502292633, -0.016335269436240196, 0.01693849265575409, 0.02216240018606186, -0.005890469066798687, 0.0068465773947536945, -0.020075250416994095, 0.006629417184740305, 0.004095881711691618, 0.006339870393276215, 0.042442746460437775, 0.0415017195045948, -0.016528300940990448, 0.02280181646347046, -0.043070096522569656, -0.020606085658073425, 0.013644896447658539, 0.009162952192127705, 0.01842241920530796, -0.023477425798773766, 0.011636164970695972, -0.0018337968504056334, -0.007154220715165138, -0.00015089991211425513, -0.03773760795593262, -0.02427368052303791, -0.012317806482315063, 0.04314248636364937, 0.011696487665176392, -0.02023208886384964, 0.0015864756423979998, 0.015599338337779045, -0.05274578928947449, -0.012655611149966717, 0.0005429004086181521, 0.02598683163523674, 0.01768648810684681, -0.0005870110471732914, 0.024466712027788162, -0.01990634761750698, 0.016467979177832603, 0.012275581248104572, 0.055979061871767044, -0.02745869569480419, -0.0031548545230180025, -0.029220106080174446, 0.006985318381339312, -0.028592754155397415, 0.012378129176795483, 0.0121971620246768, 0.010236688889563084, 0.0031548545230180025, -0.00638812780380249, 0.03660355135798454, 0.011937776580452919, -0.006261451169848442, -0.009168984368443489, -0.03119867667555809, -0.024551162496209145, -0.008131441660225391, -0.004276848863810301, -0.004153187852352858, 0.010731331072747707, -0.019001513719558716, -0.022705301642417908, 0.0018383210990577936, -0.03773760795593262, 0.017650295048952103, -0.008553697727620602, -0.018579257652163506, 0.02897881716489792, 0.01112945843487978, -0.008384794928133488, 0.05062244459986687, -0.01745726354420185, -0.01703500747680664, -0.019652994349598885, -0.019242802634835243, 0.003960156813263893, -0.019303124397993088, 0.014597988687455654, -0.033056601881980896, 0.05612383782863617, -0.02120930887758732, -0.001972538186237216, 0.010833879001438618, -0.011394876055419445, 0.008722599595785141, 0.009138823486864567, -0.02576967142522335, -0.028930557891726494, 0.02504580467939377, -0.002067545661702752, 0.017421070486307144, 0.016648946329951286, 0.01767442375421524, -7.643962453585118e-05, 0.0017945874715223908, 0.014827213250100613, -0.0037218837533146143, -0.009567111730575562, -0.01812080852687359, -0.030209390446543694, 0.009434401988983154, -0.0046327500604093075, 0.00032837933395057917, 0.013693154789507389, -0.01213080808520317, 0.04369745030999184, -0.047461558133363724, 0.0026013976894319057, -0.00127129175234586, -0.02438225969672203, -0.0026179864071309566, 0.02994397282600403, 0.006466547027230263, -0.025817930698394775, -0.008559729903936386, 0.009066436439752579, -0.019761573523283005, -0.011437101289629936, 0.014151603914797306, 0.02161950059235096, -0.004614653531461954, 0.021221373230218887, -0.00286078336648643, 0.01129836030304432, -0.023067234084010124, -0.016359398141503334, 0.038702767342329025, -0.017976034432649612, 0.024949289858341217, -0.01801222935318947, 0.0029603152070194483, 0.003191047813743353, -0.004171284846961498, -0.008776890113949776, -0.01766235940158367, 0.007992700673639774, -0.029775070026516914, 0.016359398141503334, 0.004147155676037073, 0.009518853388726711, 0.013029609806835651, -0.011370747350156307, 0.012438450939953327, -0.03004048764705658, 0.0040506403893232346, 0.014887535013258457, 0.02895468845963478, 0.0219331756234169, 0.010194462724030018, 0.04145346209406853, 0.034456077963113785, 0.0011197320418432355, 0.03525233268737793, 0.005070086568593979, 0.010719266720116138, -0.02864101156592369, 0.00711199501529336, 0.04970554634928703, 0.0017659342847764492, 0.030426550656557083, -0.007612669840455055, 0.017614101991057396, 0.003083975752815604, -0.017722681164741516, -0.02767585590481758, -0.02769998461008072, 0.014827213250100613, -0.007407574448734522, 0.0015208751428872347, 0.007974603213369846, 0.0005824868567287922, -0.025624899193644524, 0.011219941079616547, 0.018796417862176895, 0.00505802221596241, 0.005290262866765261, 0.031078031286597252, 0.04224971681833267, -0.020171765238046646, 0.008825147524476051, -0.04237036034464836, -0.026541797444224358, 0.017819197848439217, 0.006442417856305838, 0.012981351464986801, -0.005232956726104021, 0.0015186130767688155, 0.013282963074743748, 0.011624100618064404, 0.0073170908726751804, -0.02130582369863987, 0.004907216411083937, 0.0030492905061692, 0.012764191254973412, 0.025407738983631134, 0.004717200994491577, 0.03057132475078106, 0.023718714714050293, -0.02151091955602169, 0.03484214097261429, -0.011057071387767792, 0.012643546797335148, 0.01506850216537714, -0.020907698199152946, 0.007323123048990965, -0.020280346274375916, 0.012510837987065315, -0.007528218906372786, -0.012004130519926548, 0.013862056657671928, 0.011841260828077793, 0.008927695453166962, -0.03131932020187378, -0.01810874417424202, -0.001459044753573835, 0.00330264400690794, -0.007769507821649313, 0.005422971677035093, -8.28017364256084e-05, -0.02161950059235096, 0.015551079995930195, -0.009102629497647285, 0.026445280760526657, 0.0009470595978200436, -0.002225891686975956, 0.029799198731780052, 0.020787052810192108, -0.04951251670718193, 0.02363426424562931, 0.0030749274883419275, 0.01715565286576748, 0.021884918212890625, -0.0044095576740801334, -0.008626083843410015, 0.011437101289629936, 0.04442131519317627, -0.003936027642339468, 0.0115577457472682, -0.045627761632204056, 0.05216669663786888, -0.010049689561128616, 0.02247607707977295, -0.013403607532382011, 0.005036909133195877, 0.014163668267428875, 0.0004999208031222224, 0.013898249715566635, 0.01865164376795292, 0.010664976201951504, -0.014597988687455654, 0.012522902339696884, 0.008348601870238781, -0.005477261729538441, 0.009995399042963982, 0.0027250584680587053, 0.005229940637946129, -0.027072632685303688, -0.028520368039608, -0.044373057782649994, -0.020063186064362526, -0.0031427901703864336, -0.018989449366927147, -0.016866104677319527, -0.018904998898506165, 0.004310025833547115, -0.04451783373951912, 0.010942459106445312, -0.025721414014697075, 0.0029165814630687237, 0.005676325410604477, 0.02408064901828766, -0.00022790506773162633, -0.013500123284757137, 0.0009915472473949194, 0.002654179697856307, 0.01166029367595911, 0.013005480170249939, -0.01304167415946722, 0.005257085431367159, 0.01054433174431324, -0.013065802864730358, 0.03641051799058914, 0.002331455470994115, -0.0054380521178245544, -0.036579422652721405, -0.006979286205023527, -0.004095881711691618, -0.016033658757805824, -0.006973254028707743, -0.014573859050869942, 0.024563226848840714, 0.006756093818694353, -0.028279079124331474, -0.020304474979639053, 0.022958654910326004, -0.018277646973729134, 0.0564616397023201, -0.00915692001581192, 0.023610135540366173, 0.004005398601293564, -0.01939964108169079, -0.021679822355508804, 0.020183829590678215, 0.004349235445261002, -0.018169065937399864, 0.006701803766191006, 0.004626717884093523, 0.014911663718521595, -0.011829196475446224, -0.0021504887845367193, -0.0032875635661184788, 0.041694749146699905, -0.007069769781082869, 0.008390827104449272, 0.01851893588900566, 0.013439800590276718, 0.0023450281005352736, 0.005112312268465757, -0.008306375704705715, 0.03346679359674454, -0.020509570837020874, 0.011799035593867302, 0.012547031044960022, 0.031584739685058594, -0.007274865172803402, -0.010278914123773575, 0.005386778153479099, 0.03438369184732437, 0.0017553779762238264, 0.015587273985147476, 0.010634815320372581, 0.001002857694402337, 0.011262167245149612, 0.03172951191663742, 0.0054742456413805485, 0.000516886415425688, 0.03624161705374718, -0.012727998197078705, -0.0016287012258544564, -0.02044924907386303, 0.005769824609160423, -0.023187879472970963, -0.005872372537851334, 0.018458614125847816, -0.0038214155938476324, 0.015249469317495823, 0.020316539332270622, 0.018386226147413254, 0.04099501296877861, 0.012655611149966717, 0.003242321778088808, 0.021269630640745163, -0.02533535100519657, 0.011768873780965805, -0.022874202579259872, -0.014839277602732182, -0.004035559482872486, -0.008016829378902912, -0.046810079365968704, 0.034769754856824875, -0.0086321160197258, -0.00819779559969902, -0.01550282258540392, 0.033370278775691986, -0.009675691835582256, 0.0073170908726751804, 0.009651562198996544, 0.01564759574830532, 0.012691805139183998, 0.01640765555202961, 0.006508772727102041, 0.008083183318376541, -0.01176284160465002, -0.016202561557292938, -0.0040506403893232346, -0.023815231397747993, -0.031777769327163696, -0.01011604443192482, -0.011871421709656715, 0.027120890095829964, -0.00034515646984800696, 0.0032875635661184788, -0.015430435538291931, 0.02236749604344368, -0.02280181646347046, -0.04736504331231117, -0.01789158396422863, 0.038171928375959396, -0.0004750378429889679, -0.024949289858341217, 0.016986750066280365, 0.0005274428403936327, -0.009814432822167873, 0.015116759575903416, 0.0033659825567156076, 0.026565926149487495, -0.004177317023277283, 0.019725380465388298, 0.0025998896453529596, 0.012740062549710274, 0.031801898032426834, -0.0014492424670606852, -0.02426161617040634, 0.046496402472257614, 0.008469246327877045, 0.010713234543800354, -0.002605921821668744, -0.018977385014295578, -0.01202826015651226, -0.011147554963827133, 0.02929249219596386, 0.003890786087140441, 0.021872853860259056, 0.015744110569357872, 0.005929678678512573, -0.025214707478880882, 0.021655693650245667, -0.026541797444224358, -0.025528382509946823, 0.017300425097346306, -0.02278975211083889, -0.0001443021756131202, 0.011057071387767792, 0.03257402405142784, 0.006641481537371874, 0.024249551817774773, 0.05284230411052704, 0.01405508816242218, 0.0021022309083491564, 0.03684483841061592, -0.00851750373840332, -0.025624899193644524, 0.012703869491815567, -0.02151091955602169, -0.006955157499760389, -0.01745726354420185, 0.006113661453127861, 0.05163586139678955, 0.03271879628300667, -0.014296377077698708, 0.008059054613113403, -0.01342773623764515, -0.001206445274874568, 0.03066783957183361, 0.014163668267428875, 0.017288360744714737, 0.04029527306556702, 0.03884753957390785, -0.014791019260883331, 0.03218796104192734, 0.0001353480911348015, -0.0018081598682329059, -0.031367577612400055, 0.03160886839032173, -0.012703869491815567, -0.013741412200033665, 0.01049004215747118, -0.012703869491815567, 0.005685373675078154, 0.007359316572546959, -0.005130408797413111, -0.01713152416050434, 0.002189698163419962, -0.0037942705675959587, 0.0014567826874554157, -0.004997699521481991, 0.0028396707493811846, -0.01693849265575409, -0.013126124627888203, 0.006285580340772867, 0.003447417402639985, -0.022331302985548973, 0.02820669114589691, -0.01208254974335432, -0.0044095576740801334, -0.003130725584924221, 0.0050791348330676556, 0.010815782472491264, -0.01684197597205639, -0.005525519605726004, -0.020051121711730957, 0.031174547970294952, -0.04717201367020607, 0.033611565828323364, -0.04176713526248932, 0.016902299597859383, -0.002999524585902691, 0.010122076608240604, 0.029750941321253777, -0.014682439155876637, -0.016359398141503334, 0.06012923642992973, 0.02118518017232418, 0.015683788806200027, -0.02300691232085228, -0.015478693880140781, -0.018157001584768295, 0.04224971681833267, -0.024901030585169792, 0.03054719604551792, -0.02108866348862648, -0.025914445519447327, 0.0016136206686496735, -0.019254866987466812, -0.014561794698238373, -0.0121971620246768, 0.008089215494692326, -0.03057132475078106, -0.003435353050008416, 0.016636880114674568, -0.008819115348160267, -0.00047428382094949484, -0.003191047813743353, -0.019737444818019867, -0.027506953105330467, -0.027772370725870132, 0.0030613550916314125, -0.007148188538849354, -0.0319708026945591, 0.023405039682984352, 0.014730697497725487, -0.04331138730049133, -0.01198000181466341, -0.005435036029666662, 0.022451946511864662, 0.01714358851313591, -0.01769855245947838, 0.001238868571817875, -0.002875864040106535, -0.01748139224946499, -0.011268199421465397, 0.007093898486346006, 0.008010797202587128, 6.150043191155419e-05, -0.018072551116347313, -0.010019528679549694, 0.01341567188501358, 0.026879601180553436, -0.012438450939953327, -0.011304392479360104, 0.0037279159296303988, -0.016685139387845993, 0.026252249255776405, -0.022922461852431297, 0.011135490611195564, -0.027820629999041557, -0.0010058737825602293, 0.01812080852687359, 0.00033082993468269706, -0.01906183548271656, 0.021028341725468636, 0.03665180876851082, -0.016974685713648796, -0.036893099546432495, -0.011491391807794571, -0.04697898030281067, 0.013886185362935066, 0.013910314999520779, -0.022922461852431297, -0.03385285660624504, -0.03660355135798454, 0.0009463055757805705, 0.02769998461008072, -0.004487976431846619, 0.0180001650005579, -0.02683134377002716, 0.026035090908408165, 0.03981269523501396, 0.00238272943533957, 0.02579380013048649, 0.013295027427375317, -0.004729265812784433, -0.0060442909598350525, -0.006448450032621622, -0.016636880114674568, -0.019351383671164513, 0.006273515522480011, -0.019411705434322357, 0.011539649218320847, 0.0022545447573065758, 0.026493540033698082, 0.007709185592830181, -0.004575443919748068, 0.01649210788309574, 0.015949206426739693, -0.012203194200992584, 0.014199861325323582, -0.019435834139585495, -0.02236749604344368, -0.0020207958295941353, 0.011111360974609852, -0.03187428414821625, 0.018181130290031433, 0.02492516115307808, -0.00763679901137948, -0.015152953565120697, 0.007359316572546959, -0.005866340361535549, -0.010580525733530521, 0.04140520468354225, 0.004403525497764349, -0.015611402690410614, 0.00995317380875349, 0.002605921821668744, -0.014622117392718792, 0.013246770016849041, -0.016130173578858376, -0.013608703389763832, -0.015828562900424004, -0.009108662605285645, -0.02854449674487114, 0.015056437812745571, -0.02246401272714138, -0.004952458199113607, -0.06852609664201736, -0.0336356945335865, -0.010550363920629025, -0.019447898492217064, 0.009078500792384148, -0.0077634756453335285, 0.0033478857949376106, 0.028568625450134277, -0.006786254700273275, 0.003323756856843829, 0.008571794256567955, -0.032091446220874786, 0.037978898733854294, 0.01926693134009838, -0.0049796029925346375, -0.0004708906926680356, -0.013970636762678623, -0.0015155969886109233, 0.0005116082029417157, -0.0083124078810215, 0.01448940858244896, -0.0046327500604093075, 0.02118518017232418, -0.007890152744948864, -0.03788238391280174, 0.01639559119939804, -0.0007340465672314167, -0.009205177426338196, 0.004587508272379637, -0.023706650361418724, 0.0055375839583575726, 0.0243943240493536, 0.0025199626106768847, 0.024973418563604355, -0.0070456406101584435, 0.0243943240493536, 0.003068895312026143, 0.0015140888281166553, 0.042563389986753464, 0.018880870193243027, -0.0003534507704898715, 0.019435834139585495, 0.014320505782961845, -0.010417655110359192, -0.00045053192297928035, 0.0016588623402640224, -0.01917041651904583, 0.005516471341252327, 0.021462662145495415, 0.023754907771945, -0.014356699772179127, -0.00830034352838993, -0.0028713399078696966, -0.01841035485267639, 0.004340187180787325, 0.024539098143577576, 0.03035416454076767, -0.009886819869279861, -0.0008068103343248367, -0.015345984138548374, 0.021148987114429474, 0.02354981191456318, -0.008336537517607212, -0.010954523459076881, -0.0015374637441709638, -0.0008648704970255494, 0.019194545224308968, -0.006744029466062784, 0.018711967393755913, 0.018772289156913757, 0.0042014457285404205, -0.0015389717882499099, -0.0034685302525758743, -0.010164301842451096, 0.010260817594826221, 0.016335269436240196, 0.019942540675401688, 0.013560445047914982, 0.002705453662201762, 0.0014748794492334127, -0.029557909816503525, -0.02216240018606186, 0.01267974078655243, 0.018579257652163506, -0.01214287243783474, -0.005094215273857117, -0.017384877428412437, -0.03908882662653923, 0.015635531395673752, -0.0002906779118347913, -0.0076247346587479115, 0.0030779435764998198, 0.03057132475078106, 0.01585269160568714, -0.013246770016849041, 0.04492802545428276, -0.010954523459076881, -0.013500123284757137, -0.015128823928534985, 0.012559095397591591, 0.01936344802379608, -0.0297026839107275, 0.01522533968091011, -0.008408923633396626, -0.0028999929782003164, -0.01884467527270317, 0.015454564243555069, 0.012595289386808872, -0.03223621845245361, -0.009941109456121922, -0.013777605257928371, 0.01950822025537491, 0.00734725221991539, -0.0191824808716774, 0.0031216773204505444, -0.0015352016780525446, 0.005640131887048483, -0.021872853860259056, -0.008167634718120098, 0.01734868437051773, 0.004463847726583481, -0.013017545454204082, -0.022765623405575752, -0.008807050995528698, -0.007558379787951708, 0.015165017917752266, 0.00476545887067914, 0.02151091955602169, -7.870170520618558e-06, -0.0034202723763883114, 0.007238672114908695, 0.024949289858341217, -0.0297026839107275, -0.0027612517587840557, 0.011358682997524738, 0.0016603703843429685, -0.02344123274087906, 0.003402175847440958, 0.026252249255776405, -0.0017508537275716662, -0.016045723110437393, -0.016974685713648796, -0.019411705434322357, -0.023163750767707825, -0.0001658862311160192, 0.008656244724988937, -0.02832733653485775, -0.00311564514413476, 0.014935793355107307, 0.0009515837300568819, -0.009729981422424316, 0.031174547970294952, 0.02564902789890766, 0.03341853618621826, -0.0016799750737845898, -0.0334426648914814, -0.015321855433285236, 0.013222640380263329, -0.006297644693404436, 0.004026511218398809, -0.03778586909174919, 0.008746728301048279, 0.015526951290667057, 0.010351301170885563, -0.008336537517607212, -0.019568543881177902, -0.007069769781082869, -0.02630050852894783, -0.005941743031144142, -0.012317806482315063, -0.009989366866648197, -0.005130408797413111, -0.024140970781445503, 0.013874121010303497, -0.003402175847440958, -0.021161051467061043, -0.006140806712210178, -0.024020327255129814, 0.037665221840143204, 0.002604413777589798, -0.020195893943309784, 0.012203194200992584, 0.0018850708147510886, 0.010007464326918125, -0.002746171085163951, 0.008083183318376541, -0.011575843207538128, 0.005009764339774847, 0.00868037436157465, 0.013089931569993496, 0.019339319318532944, 0.009597272612154484, -0.023465361446142197, 0.017915712669491768, -0.006101597100496292, -0.00039322578231804073, 0.015599338337779045, 0.004186365287750959, 0.0017734746215865016, -0.005727599374949932, 5.6080858485074714e-05, -0.023139622062444687, 0.00788412056863308, -0.0022032707929611206, -0.01042971946299076, 0.004864990711212158, -0.0067621259950101376, 0.02533535100519657, 0.023803167045116425, -0.021329952403903008, -0.005024844780564308, -0.002338995924219489, 0.008819115348160267, -0.01123200636357069, -0.024973418563604355, 0.004370348062366247, 0.010851975530385971, -0.022512270137667656, 0.023875553160905838, -0.025407738983631134, 0.021426469087600708, -0.013029609806835651, 0.00617398414760828, 0.002480753231793642, 0.01181109994649887, -0.009048339910805225, 0.014923729002475739, -0.033394407480955124, -0.009042307734489441, -0.00900008250027895, -0.01769855245947838, 0.0062795476987957954, -0.00868037436157465, -0.007341219577938318, -0.033611565828323364, 0.014670374803245068, 0.02332058735191822, 0.010767524130642414, 0.006961189676076174, -0.00921724271029234, -0.02213827148079872, -0.022283045575022697, 0.004874038975685835, 0.007184382062405348, 0.03940250352025032, 0.0256731566041708, -0.0035409170668572187, 0.004563379567116499, -0.0037882383912801743, -0.00023714191047474742, 0.006412256974726915, 0.019544413313269615, -0.016950557008385658, 0.009494724683463573, -0.036386389285326004, -0.01660068705677986, 0.04502454027533531, -0.006285580340772867, 0.008794986642897129, -0.012486709281802177, -0.029099460691213608, -0.025311222299933434, 0.01865164376795292, -0.01575617678463459, 0.04208081215620041, 0.012740062549710274, 0.007136124186217785, 0.0004923805245198309, 0.031367577612400055, -0.00012903309834655374, -0.001525399275124073, -0.003625368233770132, -0.03047480806708336, 0.0025214706547558308, -0.021245501935482025, -0.02088356763124466, 0.0065389336086809635, -0.027651727199554443, -0.00014929761528037488, 0.014839277602732182, -0.04082610830664635, -0.011394876055419445, -0.007389477454125881, -0.005812050309032202, 0.008203827776014805, -0.0005934202927164733, 0.0036494971718639135, -0.025214707478880882, 0.035517748445272446, -0.019303124397993088, -0.009060404263436794, -0.0015125807840377092, 0.03566252440214157, 0.0025863172486424446, 0.0044457511976361275, 0.011750777252018452, -0.007335187401622534, 0.018337968736886978, 0.013717283494770527, -0.011382811702787876, 0.018494807183742523, 0.007998732849955559, -0.010550363920629025, -0.018398290500044823, -0.0007653387729078531, -0.0001059409769368358, -0.013765540905296803, 0.030933257192373276, 0.00623129028826952, 0.013186447322368622, -0.0008980477578006685, 0.013391543179750443, -0.018181130290031433, -0.025287093594670296, 0.006647513713687658, 0.0009734505438245833, 0.0046357661485672, -0.006207161117345095, -0.00995317380875349, -0.04039178788661957, 0.015321855433285236, 0.0023480441886931658, 0.03672419488430023, -0.0021007228642702103, -0.0009877771371975541, -0.02492516115307808, -0.00763679901137948, -0.0026768005918711424, 0.023573942482471466, 0.007648863364011049, -0.012366064824163914, 0.03969205170869827, 0.006273515522480011, -0.012800385244190693, -0.006424321327358484, -0.004949442110955715, -0.008113345131278038, -0.02268117293715477, -0.025311222299933434, 0.006430353503674269, 0.005935710854828358, 0.02437019534409046, -0.0006793795037083328, 0.0012961747124791145, -0.00033723918022587895, -0.0018669741693884134, -0.00197103014215827, 0.02183666080236435, -0.02174014411866665, -0.020594021305441856, 0.014658310450613499, 0.023887617513537407, 0.008662277832627296, -0.038823410868644714, -0.01357250940054655, 0.017963970080018044, 0.018398290500044823, 0.017819197848439217, -0.011002780869603157, -0.04171887785196304, -0.04208081215620041, 0.02779649943113327, -0.018229389563202858, 0.01990634761750698, -0.021438533440232277, -0.002509406302124262, 0.011334553360939026, -0.0073170908726751804, -0.020159700885415077, -0.024128906428813934, -0.00868037436157465, -0.0056974380277097225, -0.008903566747903824, 0.004991667345166206, -0.006131758447736502, 0.015949206426739693, -0.03597620129585266, 0.0007615686045028269, 0.019870154559612274, -0.010598622262477875, 0.019037706777453423, 0.0048559424467384815, -0.01234796829521656, -0.0058572920970618725, -0.013958572410047054, -0.02330852299928665, -0.021450597792863846, -0.012764191254973412, 0.0004448766994755715, 0.014260184019804, -0.013560445047914982, -0.016986750066280365, -0.014320505782961845, 0.016431786119937897, -0.023694586008787155, -0.006906899623572826, -0.0020268282387405634, 0.014151603914797306, -0.021450597792863846, -0.014018894173204899, -0.011636164970695972, 0.012607353739440441, 0.0032000963110476732, -0.004551314748823643, -0.026951989158988, 0.02586618810892105, -0.0018051437800750136, 0.03293595835566521, 0.001606080331839621, -0.03549361974000931, -0.004641798324882984, 0.005211843643337488, 0.011593939736485481, -0.0039511085487902164, -0.030064618214964867, 0.005962856113910675, -0.01204032450914383, 0.030016358941793442, 0.02748282440006733, -0.015189146623015404, 0.001907691708765924, -0.01567172445356846, -0.007039608433842659, -0.0016920395428314805, -0.03286357223987579, 0.018193194642663002, 0.004101913888007402, -0.018458614125847816, 0.0018639579648151994, -0.02416509948670864, 0.0059960330836474895, 0.004623701795935631, -0.014332570135593414, 0.011225973255932331, 0.01713152416050434, -0.02791714482009411, -0.033804599195718765, 0.01017033401876688, 0.008969920687377453, -0.02767585590481758, -0.011841260828077793, -0.03320137411355972, -0.012534966692328453, -0.006137790624052286, 0.008215893059968948, 0.0010202003177255392, -0.0007766491617076099, 0.02237956039607525, 0.00620112894102931, 0.04304596781730652, 0.01650417223572731, -0.02288626693189144, 0.010990716516971588, 0.0032181928399950266, 0.005830146837979555, -0.00942836981266737, 0.016118109226226807, -0.015032309107482433, -0.03778586909174919, 0.04000572860240936, 0.017843326553702354, 0.017203910276293755, 0.0046960883773863316, 0.0033810629975050688, -0.030330035835504532, 0.010339236818253994, 0.01830177567899227, -0.031246934086084366, -0.015345984138548374, 0.019303124397993088, 0.017396941781044006, 0.004228590987622738, 0.005676325410604477, -0.014911663718521595, 0.012945158407092094, -0.011316456831991673, -0.024213356897234917, 0.02716914936900139, 0.01865164376795292, 0.009904916398227215, 0.00921120960265398, -0.012106678448617458, 0.024780387058854103, 0.010477977804839611, 0.011473295278847218, -0.015719981864094734, 0.027555210515856743, -0.004937377292662859, -0.018277646973729134, 0.009585208259522915, -0.03566252440214157, 0.002165569458156824, -0.01990634761750698, 0.026010960340499878, 0.009392176754772663, -0.0032935957424342632, -0.011618068441748619, 0.000508215103764087, 0.014887535013258457, 0.012691805139183998, 0.012486709281802177, -0.009355983696877956, -0.027820629999041557, 0.02564902789890766, -0.0051273927092552185, -0.015080566518008709, 0.0064001926220953465, 0.007069769781082869, 7.640427611477207e-06, 0.007449799682945013, -0.005112312268465757, -0.007552347611635923, -0.027844758704304695, -0.0001779506856109947, -0.0019981751684099436, 0.0001451504504075274, 0.012191129848361015, -0.0010134141193702817, -0.01565966010093689, 0.01779506914317608, -0.0047714910469949245, 0.01640765555202961, -0.01745726354420185, -0.0009267008281312883, -0.02416509948670864, -0.018832610920071602, -0.013608703389763832, 0.005311375483870506, 0.011714584194123745, -0.015695853158831596, -0.008179699070751667, -0.0057245828211307526, -0.004554331302642822, 0.009808400645852089, 0.018132872879505157, -0.0019499172922223806, 0.0031337416730821133, 0.004729265812784433, -0.016214625909924507, 0.0036283843219280243, -0.001556314411573112, -0.007522186730057001, 0.0035499653313308954, -0.006985318381339312, -0.014658310450613499, 0.04164649173617363, -0.00772124994546175, 0.0016483059152960777, -0.0011800543870776892, 0.01724010333418846, -0.0005726845120079815, 0.0019815864507108927, 0.02044924907386303, 0.00905437208712101, 0.0047805397771298885, -0.012921029701828957, -0.0030432583298534155, 0.0008769349660724401, 0.004789588041603565, -0.015683788806200027, 0.003224225016310811, -0.0047443462535738945, 0.03245338052511215, -0.009935077279806137, 0.01809667982161045, 0.016226690262556076, 0.009482660330832005, 0.0009990875842049718, 0.014368764124810696, -0.010628783144056797, 0.0021550129167735577, 0.022319238632917404, 0.034335434436798096, 0.011618068441748619, 0.021547112613916397, 0.007401542272418737, 0.01564759574830532, -0.02352568320930004, -0.004656878765672445, -0.0006288596196100116, 0.01102691050618887, -0.007383445277810097, 0.012764191254973412, 0.018482742831110954, 0.01422399003058672, 0.0009764666901901364, -0.014018894173204899, 0.007051672786474228, 0.016636880114674568, 0.0037460126914083958, -0.000723490200471133, -0.009187080897390842, -0.004497025161981583, -0.010833879001438618, -0.014151603914797306, -0.016154302284121513, 0.010634815320372581, 0.004358283709734678, 0.005875388626009226, -0.0008490359177812934, -0.0031397738493978977, 0.027241535484790802, 0.0032181928399950266, 0.0018730063457041979, 0.0025561561342328787, -0.0003690968733280897, 0.0025561561342328787, -0.006309709046036005, -0.023296458646655083, 0.007021511904895306, -0.007853958755731583, -0.0016090964199975133, 0.0004007660609204322, 0.013777605257928371, 0.017107395455241203, 0.000968926411587745, 0.03407001495361328, 0.00798063538968563, -0.004702120553702116, -0.005311375483870506, 0.012390193529427052, 0.005076118744909763, -0.012070485390722752, 0.007600605487823486, 0.006737997289747, 0.0017840310465544462, -0.009416305460035801, 0.0015683788806200027, -0.022536398842930794, 0.010725298896431923, -0.009349951520562172, 0.03501104190945625, -0.008161602541804314, 0.01704707182943821, -0.020063186064362526, -0.022850073873996735, 0.013862056657671928, -0.004219542723149061, 0.013765540905296803, -0.0028019691817462444, -0.0051756505854427814, -0.012643546797335148, -0.007178349886089563, 0.022307174280285835, 0.0025833009276539087, 0.0074920253828167915, -0.004189381375908852, -0.004994683433324099, -0.0016814831178635359, 0.0006043537287041545, -0.008764824829995632, 0.0045965565368533134, 0.029678555205464363, -0.013934443704783916, 0.020835310220718384, 0.00638812780380249, -0.024876901879906654, -0.013958572410047054, -0.029968101531267166, -0.020195893943309784, 0.004590524360537529, 0.004189381375908852, -0.0069973827339708805, 0.0005451624747365713, -0.012933094054460526, 0.01896532066166401, -0.00473831407725811, 0.013717283494770527, 0.003987301606684923, 0.001666402560658753, 0.009723949246108532, -0.004192397464066744, -0.01502024382352829, -0.02012350782752037, 0.020811181515455246, 0.0019589655566960573, -0.01598540134727955, -0.02458735555410385, 0.012046356685459614, 0.020376861095428467, -0.00015391602937597781, -0.0059326947666704655, -0.006125726271420717, -0.002430987311527133, -0.00815557036548853, -0.0008769349660724401, 0.01076149195432663, -0.01681784726679325, 0.021776337176561356, 0.007323123048990965, -0.0056702932342886925, -0.003239305689930916, 0.0011770381825044751, 0.02820669114589691, -0.002227399731054902, 0.0065027400851249695, -0.00900008250027895, 0.0002625903580337763, -0.0004927575355395675, -0.01895325630903244, 0.0019649977330118418, -0.029002945870161057, -0.0005289508844725788, 0.010345268994569778, -0.007715217769145966, 0.00888547021895647, 0.010882136411964893, -0.023356782272458076, 0.0025516317691653967, -0.0028849123045802116, -0.0028547511901706457, 0.01059259008616209, 0.004222558811306953, 0.021655693650245667, 0.007196446415036917, -0.0031729512847959995, 0.006255418993532658, -0.013608703389763832, -0.016986750066280365, -0.0015133348060771823, 0.003290579654276371, -0.003957140725106001, 0.004144139587879181, -0.01960473693907261, 0.004068736918270588, 0.01267974078655243, -0.014332570135593414, -0.010212559252977371, -0.010073818266391754, 0.027072632685303688, -0.011793003417551517, 0.01049004215747118, 0.013801734894514084, -0.017107395455241203, 0.009090565145015717, -0.013512187637388706, -0.0005806018016301095, -0.0015125807840377092, -0.017010878771543503, -0.01745726354420185, -0.0007430948899127543, -0.01106913574039936, 0.01261941809207201, 0.011587907560169697, 0.010484009981155396, -0.009355983696877956, 0.0046960883773863316, 0.001225296058692038, -0.008493375033140182, -0.015792369842529297, -0.013162318617105484, -0.01442908588796854, -0.02043718285858631, -0.014585924334824085, 0.01682991161942482, -0.04164649173617363, -0.009512821212410927, 0.014791019260883331, 0.002287721959874034, -0.01660068705677986, -0.002826098119840026, 0.007329155225306749, -0.0219331756234169, 0.03961966559290886, 0.0012320822570472956, 0.004442735109478235, 0.019218673929572105, 0.003703787224367261, -0.012800385244190693, -0.010321139357984066, 0.010839911177754402, -0.00543201994150877, 0.0003395012463442981, 0.0092715322971344, -0.008288279175758362, 0.005269149783998728, -0.002191206207498908, -0.00856576208025217, -0.00996523816138506, 0.009929045103490353, 0.03025764785706997, 0.02673482894897461, -0.019339319318532944, -0.0011514012003317475, 0.008179699070751667, -0.0037128354888409376, 0.009434401988983154, -0.004364315886050463, 0.011105328798294067, 0.009886819869279861, -0.016021594405174255, 0.005993016995489597, 0.010616718791425228, -0.00761870201677084, -1.8532602553023025e-05, 0.03949901834130287, -0.0035348848905414343, 0.00724470429122448, -0.00775141129270196, 0.0057245828211307526, 0.008288279175758362, 0.021776337176561356, 0.019122159108519554, 0.02376697212457657, -0.0012637515319511294, -0.0012298201909288764, 0.024249551817774773, 0.003070403356105089, -0.002299786312505603, 0.02108866348862648, 0.010689105838537216, -0.03824431821703911, -0.021221373230218887, -0.012848642654716969, 0.015997465699911118, 0.0003943568153772503, 0.009205177426338196, 0.019146287813782692, 0.02405652031302452, -0.016854040324687958, 0.004056672565639019, 0.025600770488381386, -0.004310025833547115, 0.010948491282761097, 0.01876022480428219, 0.0040506403893232346, 0.008481310680508614, -0.008614019490778446, -0.012969287112355232, 0.0032332735136151314, -0.040850237011909485, -0.014573859050869942, -0.007703153416514397, -0.0029045171104371548, -0.02671070024371147, -0.003163902787491679, 0.002605921821668744, 0.03431130573153496, 0.017855390906333923, -0.017396941781044006, -0.015297726728022099, 0.0016241769772022963, 0.0037731577176600695, 0.009301693178713322, 0.012034292332828045, -0.004466863814741373, 0.011714584194123745, -0.01904977113008499, -0.015514886938035488, 0.02077498845756054, -0.005929678678512573, 0.0019649977330118418, -0.0212937593460083, 0.005790937691926956, 0.0172642320394516, -0.011491391807794571, 0.0035891749430447817, -0.006701803766191006, 0.012583225034177303, 0.0008369714487344027, -0.00798063538968563, 0.021257566288113594, 0.00267378450371325, -0.0007378167356364429, 0.0031216773204505444, 0.006297644693404436, 0.025914445519447327, -0.008396859280765057, 0.017589973285794258, 0.020171765238046646, 0.011352650821208954, 0.016528300940990448, 0.005444084294140339, 0.0021203276701271534, 0.015900949016213417, 0.013898249715566635, -0.0025078982580453157, -0.02247607707977295, 0.002322407206520438, -0.004454799462109804, 0.011256135068833828, -0.00017361501522827893, -0.02269323728978634, -0.010779588483273983, 0.0029346782248467207, -0.02427368052303791, -0.02172807976603508, 0.004768474958837032, -0.016009530052542686, 0.006689739413559437, 0.04302183911204338, 0.007057704962790012, 0.00010396165453130379, 0.018289711326360703, 0.0358072966337204, 0.010435751639306545, -0.0022500206250697374, 0.003559013595804572, -0.0009598780306987464, -0.03238099068403244, -0.004171284846961498, -0.01862751506268978, -0.0022439882159233093, 0.023911746218800545, 0.0022349399514496326, -0.0062674833461642265, 0.0325498953461647, 0.002335979836061597, -0.01745726354420185, 0.015128823928534985, 0.006424321327358484, 0.0011951349442824721, 0.019146287813782692, 0.006472579203546047, -0.00035458183265291154, -0.011666325852274895, -0.03568665310740471, 0.008801018819212914, -0.018253518268465996, -0.0065871914848685265, 0.0006073698168620467, -0.011099296621978283, 0.009711884893476963, -0.004282881040126085, 0.029220106080174446, 0.02024415321648121, -0.012341935187578201, 0.005145489238202572, 0.006327805574983358, 0.018181130290031433, 0.00957917608320713, -0.008420987986028194, 0.0072326394729316235, 0.004614653531461954, -0.003127709496766329, 0.002388761844485998, 0.011437101289629936, 0.01342773623764515, -0.0005711764679290354, 0.01378966961055994, -0.01927899569272995, -0.016118109226226807, 0.018711967393755913, 0.0016302092699334025, -0.02014763653278351, 0.013681089505553246, -0.007256768643856049, -0.018024293705821037, 0.025721414014697075, -0.010164301842451096, -0.007395509630441666, 0.005513455253094435, 0.014730697497725487, 0.012510837987065315, -0.022307174280285835, 0.015345984138548374, 0.002874355996027589, 0.015189146623015404, 0.020413054153323174, 0.0007826813962310553, -0.013367414474487305, 0.04304596781730652, -0.007962538860738277, 0.025166450068354607, 0.00045279401820153, 0.036169230937957764, 0.009723949246108532, 0.0128365783020854, -0.014513537287712097, 0.008107312954962254, 0.008101280778646469, 0.014718633145093918, -0.009337887167930603, 0.018663709983229637, 0.016781654208898544, 0.009410273283720016, -0.01734868437051773, 0.03267053887248039, 0.01693849265575409, -0.02960616908967495, -0.01715565286576748, 0.017915712669491768, -0.03119867667555809, -0.004994683433324099, 0.030643710866570473, -0.0035198042169213295, -0.019230738282203674, 0.0034685302525758743, -0.005667276680469513, -0.0042135100811719894, 0.006406224798411131, 0.001859433832578361, 0.00878292229026556, -0.0008799510542303324, -0.03421479091048241, 0.007890152744948864, 0.020931826904416084, -0.0026994214858859777, 0.0034775787498801947, -0.016250818967819214, -0.007039608433842659, -0.006436385679990053, 0.013524251990020275, 0.022632913663983345, -0.017650295048952103, 0.002459640381857753, 0.006786254700273275, 0.020907698199152946, 0.011895550414919853, -0.013403607532382011, -0.0035680620931088924, 0.023079298436641693, 0.0038696734700351954, -0.003163902787491679, -0.009989366866648197, -0.00868037436157465, -0.0007819273741915822, 0.030812613666057587, -0.00893975980579853, -0.011123426258563995, 0.0003034964029211551, -0.012559095397591591, 0.008861340582370758, -0.013886185362935066, 0.007672992069274187, 0.0017749826656654477, -0.0083124078810215, -0.0024355114437639713, 0.0013218116946518421, 0.009742045775055885, -0.011425036936998367, -0.03460085019469261, 0.002559172222390771, 0.006056355312466621, 0.021269630640745163, -0.0025848092045634985, -0.0026752925477921963, 0.004141123499721289, 0.0010036117164418101, 0.008276214823126793, -0.0059688882902264595, -0.002399318153038621, 0.04685833677649498, 0.002206286881119013, -0.02406858466565609, 0.006104613188654184, -0.027627598494291306, -0.012474644929170609, 0.023694586008787155, 0.02564902789890766, 0.007878088392317295, -0.008728631772100925, -0.0033750308211892843, 0.002144456608220935, 0.023996196687221527, 0.017843326553702354, -0.011527584865689278, 0.00045279401820153, 0.007829830050468445, -0.014139539562165737, 0.014260184019804, -0.0028004611376672983, 0.019821897149086, 0.0023616168182343245, 0.014971986413002014, 0.020376861095428467, 0.0034232886973768473, 0.01305373851209879, -0.018362097442150116, -0.01597333513200283, 0.01629907637834549, 0.006647513713687658, 0.0023631248623132706, 0.012016195803880692, 0.010689105838537216, -0.031464092433452606, 0.02014763653278351, 0.006406224798411131, 0.008776890113949776, 0.000795499887317419, -0.0048830872401595116, -0.0059688882902264595, -0.016238754615187645, 0.016214625909924507, -0.02117311581969261, -0.009434401988983154, -0.004267800133675337, 0.02885817177593708, -0.003878721734508872, -0.019568543881177902, -0.019122159108519554, -0.028472108766436577, -0.014127474278211594, -0.025817930698394775, -0.005730615463107824, -0.013065802864730358, 0.006792287342250347, 0.019339319318532944, 0.006484643556177616, 0.020388925448060036, 0.004337171092629433, -0.013801734894514084, -0.007685056887567043, 0.009144855663180351, 0.003257402451708913, -0.023815231397747993, -0.010598622262477875, 0.003860624972730875, 0.0027401389088481665, -0.013729347847402096, -0.011322489008307457, -0.0022500206250697374, 0.0013542348751798272, -0.00543201994150877, -0.00468100793659687, -0.01917041651904583, -0.0011710060061886907, -0.03387698531150818, 0.009488692507147789, -0.012263516895473003, 0.010465913452208042, 0.005606954451650381, -0.022717365995049477, 0.007516154553741217, -0.018144937232136726, -0.0016030642436817288, -0.029799198731780052, 0.00893975980579853, 0.0077996691688895226, 0.0004784309712704271, 0.021040406078100204, 0.02130582369863987, 0.014139539562165737, -0.015780305489897728, -0.02492516115307808, 0.009856658056378365, -0.017819197848439217, -0.012884835712611675, -0.02237956039607525, 0.00380935100838542, -0.005395826883614063, -0.00724470429122448, 0.0073170908726751804, -0.0003920947201550007, -0.03481801226735115, 0.005935710854828358, 0.01631114073097706, -0.0115577457472682, -0.003399159759283066, 0.006701803766191006, -0.008107312954962254, 0.015937142074108124, -0.008583858609199524, -0.008915631100535393, -0.017445199191570282, -0.012100646272301674, 0.004988651257008314, 0.0012026751646772027, -0.0035801264457404613, 0.009838561527431011, -0.003733948338776827, 0.012263516895473003, -0.01725216768682003, 0.02056989260017872, 0.013186447322368622, -0.025094062089920044, -0.025697285309433937, 0.00039322578231804073, -0.011750777252018452, -0.0028321302961558104, -0.01769855245947838, 0.003272482892498374, 0.012112710624933243, 0.010103979147970676, -0.009977302514016628, -0.0039058667607605457, 0.007365348748862743, -0.0015955239068716764, -0.02246401272714138, 0.0040627047419548035, -0.0194720271974802, -0.01737281307578087, 0.007992700673639774, -0.011491391807794571, -0.007039608433842659, -0.0016498139593750238, -0.03544536232948303, -0.004307009745389223, 0.005293278954923153, 0.009175016544759274, -0.007401542272418737, 0.01129836030304432, -0.021064534783363342, -0.011051039211452007, 0.009615369141101837, -0.005691405851393938, -0.002078101970255375, -0.025528382509946823, 0.012366064824163914, -0.013282963074743748, -0.006213193293660879, -0.012203194200992584, -0.034866269677877426, 0.017614101991057396, -0.00979633629322052, 0.006059371400624514, -0.002829114207997918, -0.012860707007348537, -0.0033780469093471766, 0.00031593788298778236, -0.015732046216726303, 0.027651727199554443, 0.01522533968091011, 0.01766235940158367, 0.006436385679990053, -0.001922772265970707, 0.015587273985147476, -0.015719981864094734, 0.017300425097346306, 0.00260742986574769, -0.02482864446938038, -0.013017545454204082, -0.011907615698873997, -0.006038258783519268, -0.03793064132332802, -0.0006906899507157505, -0.012715933844447136, -0.019568543881177902, -0.019098028540611267, -1.6447242160211317e-05, 0.004581476096063852, -0.00921724271029234, -0.01383792795240879, -0.010085882619023323, -0.0021052469965070486, -0.00346249807626009, -0.027603469789028168, -0.01639559119939804, 0.01442908588796854, 0.0033086761832237244, 0.011105328798294067, -0.005974920466542244, 0.015080566518008709, -0.012076517567038536, 0.012004130519926548, -0.014103345572948456, -0.0062674833461642265, 0.002682832768186927, -0.0009938093135133386, 0.020714666694402695, -0.003908882848918438, 0.008342569693922997, -0.00039586485945619643, 0.0052510532550513744, -0.0034685302525758743, -0.0013044689549133182, 0.01112945843487978, -0.010417655110359192, -0.0072205751203000546, -0.020907698199152946, -0.00721454294398427, 0.014658310450613499, -0.02141440473496914, 0.004162236582487822, 0.022210657596588135, -0.007099930662661791, -0.0007008693064562976, 0.00788412056863308, 0.007383445277810097, 0.0017915712669491768, -0.011262167245149612, 0.006792287342250347, 0.018036358058452606, -0.007775539997965097, 0.013379478827118874, 0.028279079124331474, 0.03182602673768997, -0.00836066622287035, -0.0068586417473852634, -0.017831262201070786, -0.009235339239239693, 0.026469409465789795, -0.008445117622613907, -0.009120726957917213, 0.011841260828077793, -0.006713868118822575, 0.007377413101494312, 0.004460831638425589, 0.013825863599777222, 0.016250818967819214, -0.021571243181824684, -0.008028893731534481, -0.005766808521002531, 0.00030971714295446873, 0.005136440973728895, 0.012438450939953327, -0.024780387058854103, 0.02608334831893444, 0.0014002305688336492, 0.0010405591456219554, 0.003384079085662961, 0.01798810064792633, 0.024309873580932617, 0.00044600776163861156, -0.007160252891480923, 0.006029210519045591, 0.0016241769772022963, -0.003100564470514655, -0.0007577984943054616, 0.008433052338659763, 0.00556472921743989, -0.016769589856266975, -0.007383445277810097, -0.010200494900345802, 0.010990716516971588, 0.011569811031222343, -0.0002742778160609305, -0.007715217769145966, 0.0043160580098629, 0.012715933844447136, -0.019978733733296394, 0.009609336964786053, -0.0023736811708658934, 0.012559095397591591, 0.03527646139264107, -0.0007246212335303426, 0.039137087762355804, 6.509385002573254e-06, 0.014634181745350361, -0.020195893943309784, -0.0017297409940510988, 0.04524169862270355, -0.005974920466542244, 0.026324637234210968, 0.0065389336086809635, 0.00792634580284357, 0.003607271471992135, -0.023598071187734604, 0.007461864501237869, 0.012281613424420357, -0.012800385244190693, 0.015382178127765656, 0.00830034352838993, -0.008505439385771751, -0.00793841015547514, 0.04000572860240936, 0.013681089505553246, 0.014984050765633583, -0.004204461816698313, -0.008469246327877045, 0.026686569675803185, -0.0006171721615828574, 0.016371462494134903, 0.007124059833586216, 0.008873404935002327, 0.011213908903300762, 0.0018036357359960675, -0.0065751271322369576, -0.003718867665156722, 0.002815541811287403, 0.010496074333786964, 0.026686569675803185, -0.013958572410047054, -0.002512422390282154, 0.002827606163918972, -0.01936344802379608, 0.0038334799464792013, 0.004581476096063852, -0.007757443469017744, -0.01885673962533474, -0.01070720236748457, -0.007570444606244564, 0.008179699070751667, -0.0001821920886868611, 0.01523740403354168, 0.0019529333803802729, -0.004490992520004511, -0.03505929931998253, 0.011895550414919853, -0.01074942760169506, -0.05124979838728905, -0.0012026751646772027, 0.009404241107404232, 0.004053656477481127, 0.0023420120123773813, 0.011425036936998367, -0.03686897084116936, -0.003384079085662961, -0.02013557218015194, -0.0061166780069470406, -0.007335187401622534, -0.006083500571548939, 0.010031593032181263, 0.0008543140720576048, -0.013705219142138958, -0.025697285309433937, 0.02736217901110649, 0.00017116442904807627, 0.0014417021302506328, -0.014839277602732182, 0.019351383671164513, -0.020485442131757736, 0.003417256288230419, -0.010731331072747707, -0.001352726831100881, 0.0024898014962673187, 0.014127474278211594, 0.020847374573349953, 0.0018835627706721425, 0.011889518238604069, -0.0072205751203000546, 0.008119377307593822, -0.00032102756085805595, -0.007956506684422493, -0.020835310220718384, -0.014344634488224983, -0.03310485929250717, 0.02579380013048649, 0.0002931285125669092, 0.006430353503674269, -0.006961189676076174, 0.003047782462090254, -0.004783555865287781, -0.03802715614438057, -0.008053022436797619, 0.0021550129167735577, -0.010182398371398449, 0.014537665992975235, -0.010942459106445312, -0.022512270137667656, 0.0060985810123384, 0.018904998898506165, 0.010200494900345802, -0.005196763202548027, 0.020787052810192108, 0.009144855663180351, -0.003625368233770132, 0.029268363490700722, -0.015514886938035488, 0.016383526846766472, 0.004059688653796911, 0.003112628823146224, 0.0026813247241079807, -0.003525836393237114, -0.013512187637388706, 0.0007924837991595268, 0.003372014733031392, -0.02492516115307808, -0.012595289386808872, -0.01617843098938465, -0.009874754585325718, -0.03756870701909065, -0.005281214602291584, -0.011696487665176392, 0.009150887839496136, 0.02130582369863987, 0.0030779435764998198, -0.00047126770368777215, 0.017288360744714737, 0.004810700658708811, -0.008957856334745884, -0.012800385244190693, -0.007262800820171833, -0.012221290729939938, -0.016793718561530113, -0.007642831187695265, -0.003068895312026143, -0.02131788805127144, 0.022005561739206314, -0.008722599595785141, -0.01948409155011177, -0.019339319318532944, -0.0095912404358387, -0.00042338689672760665, -0.0024837693199515343, -0.003353917971253395, -0.001351218787021935, -0.004837845917791128, -0.009784271940588951, -0.011437101289629936, -0.013560445047914982, 0.004677991848438978, -0.038702767342329025, 0.022439882159233093, -0.0018835627706721425, 0.019785704091191292, 0.0024898014962673187, -0.0073050265200436115, -0.015345984138548374, -0.0005236726719886065, 0.009349951520562172, 0.01585269160568714, -0.005486309994012117, 0.025745542719960213, 0.005742679815739393, 0.00905437208712101, 0.026059219613671303, -0.002512422390282154, -0.0014997622929513454, 0.002633066847920418, 0.017758874222636223, -0.002145964652299881, -0.007389477454125881, 0.005076118744909763, 0.0015110727399587631, 0.005151521414518356, -0.013222640380263329, 0.01715565286576748, -0.009368048049509525, -0.013608703389763832, -0.022934526205062866, 0.01884467527270317, 0.003016113303601742, 0.015394242480397224, -0.006750061642378569, -0.010043657384812832, -0.009856658056378365, -0.02130582369863987, 0.002590841380879283, 0.02194523997604847, 0.03621748834848404, -0.00254258350469172, 0.013270898722112179, -0.02469593659043312, 0.01485134195536375, -0.00883721187710762, -0.012921029701828957, 0.01640765555202961, -0.0002569351636338979, 0.0009025718900375068, -0.0016347334021702409, 0.0036525132600218058, -0.0021369163878262043, 0.015032309107482433, -0.015466628596186638, -0.015792369842529297, -0.002084134379401803, 0.022874202579259872, -0.012281613424420357, 0.0019484092481434345, -0.013801734894514084, 0.014706568792462349, -0.004825781099498272, 0.000650726433377713, 0.012848642654716969, 0.013922379352152348, 0.007528218906372786, 0.00029840669594705105, 0.0025395674165338278, 0.0021670775022357702, 0.0011325505329295993, -0.024140970781445503, -0.016697203740477562, -0.023791100829839706, 0.012667675502598286, -0.00025127994013018906, -0.004056672565639019, -0.049560774117708206, -0.00670783594250679, -0.01748139224946499, 0.04186365380883217, 0.012335903011262417, 0.020738795399665833, -0.004294945392757654, -0.006641481537371874, 0.012233356013894081, 0.008469246327877045, -0.030209390446543694, -0.007570444606244564, -0.007739346940070391, 0.0018971352837979794, -0.001302206888794899, -0.01609398052096367, -0.006382095627486706, -0.02586618810892105, -0.004225574899464846, -0.0004652354691643268, 0.0038244316820055246, 0.008161602541804314, -0.0011777922045439482, -0.001413049059920013, 0.0179036483168602, 0.019954605028033257, 0.01080975029617548, 0.012715933844447136, -0.008843244053423405, -0.015575208701193333, -0.014139539562165737, 0.0038726895581930876, 0.006213193293660879, 0.0008573302184231579, 0.03559013828635216, -0.006466547027230263, 0.0006390390335582197, 0.003417256288230419, -0.021909046918153763, -0.01991841197013855, 0.011702519841492176, 0.011624100618064404, 0.01522533968091011, 0.001699579879641533, 0.003372014733031392, -0.003987301606684923, 0.010405590757727623, 0.02564902789890766, -0.011099296621978283, 0.021450597792863846, -0.008252086117863655, -0.014465278945863247, 0.006750061642378569, -0.004602588713169098, 0.0019152319291606545, 0.0351075604557991, -0.008855308406054974, -0.008994050323963165, -0.013536316342651844, -0.011521552689373493, -0.011099296621978283, 0.011201844550669193, -0.012655611149966717, -0.016745461151003838, 0.015828562900424004, 0.018181130290031433, -0.005006748251616955, 0.008722599595785141, 0.016781654208898544, 0.011394876055419445, -0.02586618810892105, 0.014525601640343666, -0.006020162254571915, -0.011907615698873997, -0.005525519605726004, 0.009651562198996544, 0.008674342185258865, -0.01939964108169079, -0.0018986433278769255, -0.009621401317417622, 0.018229389563202858, 0.03291182965040207, -0.001796095515601337, 0.009729981422424316, 0.0009651562431827188, -0.022415753453969955, 0.01108120009303093, -0.04039178788661957, 0.0017267249058932066, 0.00548932608217001, 0.006020162254571915, 0.01629907637834549, 0.00355599750764668, 0.007902217097580433, 0.0031518384348601103, -0.01106913574039936, -0.009573143906891346, 0.004650846589356661, -0.002562188310548663, -0.000337993202265352, -0.002352568320930004, -0.00514247315004468, -0.0031970799900591373, -0.02278975211083889, -0.01224542036652565, -0.013825863599777222, 0.01831384003162384, 0.01123200636357069, -0.02533535100519657, -0.0023178830742836, 0.023031041026115417, -0.008294311352074146, 0.01166029367595911, -0.009464563801884651, -0.0008950316114351153, -0.00036985089536756277, 0.02671070024371147, 0.0009101121686398983, 0.027651727199554443, 0.024732129648327827, -0.007473928853869438, -0.014984050765633583, -0.007196446415036917, -0.010574493557214737, 0.008366698399186134, 0.03578316792845726, 0.00964553002268076, 0.009096597321331501, -0.0017523617716506124, 0.019640929996967316, 0.009935077279806137, 0.011907615698873997, 0.0072688329964876175, -0.007974603213369846, -0.016142237931489944, -0.003957140725106001, -0.021378211677074432, 0.012136840261518955, -0.0030146052595227957, 0.003338837530463934, -0.02330852299928665, -0.000968926411587745, -0.03460085019469261, -0.028785785660147667, -0.03230860456824303, 0.021426469087600708, 0.002014763653278351, 0.01319851167500019, 0.008221925236284733, -0.0015329396119341254, 0.02224685251712799, -0.007075801957398653, 0.02895468845963478, 0.027820629999041557, -0.00932582188397646, 0.012583225034177303, 0.010218591429293156, 0.006327805574983358, 0.0025154384784400463, -0.015177082270383835, -0.005977936554700136, -0.02076292410492897, -0.010007464326918125, -0.003670609788969159, -0.002165569458156824, 0.013234704732894897, 0.020388925448060036, -0.021474726498126984, -0.020400989800691605, -0.001523891231045127, 0.007329155225306749, -0.001129534444771707, 0.005344552919268608, 0.0026768005918711424, -0.02376697212457657, 0.0063519347459077835, 0.01240225788205862, 0.00936201587319374, 0.03192254155874252, 0.006466547027230263, -0.009138823486864567, 0.009090565145015717, -0.03194667026400566, -0.010695138014853, -0.018772289156913757, 0.005413923412561417, 0.008601955138146877, -0.006255418993532658, -0.025431867688894272, 0.004346219357103109, 0.016250818967819214, -0.00257123657502234, -0.03054719604551792, 0.009542982093989849, -0.008131441660225391, -0.005959840025752783, -0.006804351694881916, 0.01241432223469019, 0.025745542719960213, -0.01097865216434002, -0.010206527076661587, -0.025069933384656906, 0.0019408689113333821, 0.030064618214964867, -0.011654261499643326, -0.01960473693907261, 0.025094062089920044, 0.04080197960138321, 0.00154349603690207, 0.019013578072190285, -0.0036193360574543476, -0.0030327020213007927, -0.009542982093989849, 0.015888884663581848, 0.010477977804839611, -0.0006167951505631208, 0.008843244053423405, 0.023368846625089645, 0.021583307534456253, 0.0038696734700351954, -0.008969920687377453, 0.00492531294003129, -0.0013278438709676266, -0.0011664818739518523, -0.028713399544358253, -0.0037279159296303988, -0.03035416454076767, 0.0021987466607242823, -1.7813919839682057e-05, 0.03503517061471939, -0.02013557218015194, 0.0021836659871041775, -0.0040144468657672405, 0.0022952621802687645, -0.009398208931088448, -0.0015864756423979998, 0.0027401389088481665, -0.0033086761832237244, 0.010851975530385971, -0.007872055284678936, 0.0036525132600218058, 0.01028494630008936, 0.04630337283015251, 0.005498374346643686, -0.00037437505670823157, -0.026951989158988, 0.008758792653679848, 0.01876022480428219, -0.017855390906333923, 0.015092630870640278, -0.003984285518527031, 0.010188430547714233, -0.016323205083608627, -0.000250525918090716, -0.004500041250139475, -0.012631482444703579, 0.0018941191956400871, 0.006876738276332617, -0.013475994579494, 0.01821732521057129, -0.018169065937399864, 0.0012034291867166758, 0.00012300086382310838, -0.0030915162060409784, 0.01011604443192482, 0.01798810064792633, 0.0033659825567156076, 0.004424638114869595, 0.0002424201084068045, 0.0001897323818411678, 0.0008452657493762672, -0.004949442110955715, -0.00222438364289701, 0.004813716746866703, 0.029268363490700722, -0.005525519605726004, -0.019001513719558716, -0.02096801996231079, -0.005121360532939434, -0.034456077963113785, -0.009561079554259777, -0.002783872652798891, -0.014296377077698708, -0.005845227744430304, -0.015104695223271847, -0.02247607707977295, 0.01198000181466341, 0.012571160681545734, 0.010839911177754402, 0.012872771359980106, 0.007781572174280882, 0.0021731096785515547, -0.0022620849777013063, 0.014996115118265152, -0.0009025718900375068, 0.011135490611195564, -0.02278975211083889, -0.00921120960265398, -0.002532027196139097, 0.019351383671164513, 0.015333919785916805, -0.01097865216434002, 0.0015065486077219248, 0.012655611149966717, 0.004922296851873398, -0.006828480400145054, -0.015900949016213417, -0.019978733733296394, 0.01567172445356846, 0.019459962844848633, 0.008137473836541176, 0.01681784726679325, -0.017710616812109947, 0.0018398291431367397, -0.027844758704304695, -0.018144937232136726, 0.023248201236128807, 0.0001656034728512168, -0.033587437123060226, 0.005368681624531746, 0.0033448697067797184, 0.001996666891500354, -0.02066640742123127, 0.005106279626488686, -0.006321773398667574, 0.0028396707493811846, -0.01378966961055994, -0.0022304158192127943, 0.004141123499721289, 0.01725216768682003, -0.01209461409598589, -0.0032332735136151314, -0.026493540033698082, -0.03633813187479973, 0.0038998345844447613, 0.008028893731534481, 0.006744029466062784, 0.007262800820171833, -0.0006872967933304608, -0.015116759575903416, 0.00537471380084753, -0.0052389889024198055, 0.010767524130642414, -0.019423769786953926, 0.022174464538693428, 0.004261767957359552, 0.013101995922625065, -0.006816416047513485, 0.0006175491726025939, -0.012595289386808872, -0.014585924334824085, 0.019037706777453423, -0.007793636992573738, 0.002559172222390771, -0.013862056657671928, -0.01640765555202961, -0.0008173667010851204, 0.00564918015152216, 0.01172061637043953, 0.005546632222831249, 0.0017704585334286094, -0.018832610920071602, 0.006137790624052286, -0.00407175300642848, 0.00018445418390911072, -0.017433134838938713, 0.0020916745997965336, 0.00873466394841671, -0.0012939126463606954, 0.000595305347815156, -0.008252086117863655, 1.754293953126762e-05, 0.010743395425379276, 0.0030402422416955233, 0.0017357731703668833, 0.019242802634835243, -0.00692499615252018, 0.011008813977241516, -0.007552347611635923, -0.02823081985116005, 0.002826098119840026, -0.032767053693532944, -0.038196057081222534, 0.0018956272397190332, -0.030909128487110138, 0.005030876956880093, -0.04015050083398819, 0.02673482894897461, -0.003577110357582569, -0.004427654203027487, 0.00856576208025217, 0.026976117864251137, -0.006035242695361376, 0.0002399695076746866, 0.006345902569591999, 0.006713868118822575, 0.02334471605718136, -0.006798319518566132, -0.015466628596186638, -0.007872055284678936, -0.002053973264992237, 0.013379478827118874, -0.022657042369246483, -0.005441068205982447, 0.0007691088831052184, -0.015780305489897728, 0.0179036483168602, -0.001987618627026677, 0.0015713950851932168, -0.02564902789890766, 0.009090565145015717, -0.009561079554259777, 0.001812684116885066, -0.016793718561530113, -0.031029773876070976, -0.013825863599777222, -0.0036615615244954824, 0.008873404935002327, 0.012269549071788788, 0.0015035325195640326, -0.0031578706111758947, 0.008348601870238781, 0.0007038854528218508, 0.002574252663180232, -0.007196446415036917, -0.030523067340254784, -0.00583617901429534, -0.009187080897390842, -0.01692642830312252, 0.025624899193644524, -0.013138189911842346, -0.002827606163918972, -0.02429780922830105, -0.009138823486864567, 0.0046327500604093075, -0.009048339910805225, -0.005323439836502075, -0.005516471341252327, 0.010206527076661587, -0.006593223661184311, -0.01006778609007597, 0.008553697727620602, -0.01619049534201622, -0.004123026970773935, -0.013813799247145653, -0.001444718218408525, -0.005594890099018812, 0.013777605257928371, -0.003767125541344285, 0.029437266290187836, -0.0022032707929611206, 0.0008814590983092785, -0.037544578313827515, 0.0033961436711251736, 0.007528218906372786, 0.018603386357426643, 0.03143996372818947, -0.002482261275872588, -0.02289833128452301, 0.028689268976449966, 0.007479961030185223, 0.018132872879505157, -0.00036702328361570835, 0.014996115118265152, -0.008607987314462662, 0.009742045775055885, -0.012154936790466309, 0.01980983279645443, -0.013524251990020275, -0.0010699662379920483, 0.0030417502857744694, 0.021752208471298218, -0.023513618856668472, -0.0018202243372797966, 0.012317806482315063, 0.038292575627565384, -0.003546949243173003, 0.010731331072747707], "34869ab7-7f4a-4116-b78c-8912e9ac80ca": [-0.02065093256533146, 0.011758442968130112, -0.014691357500851154, 0.034846775233745575, -0.056140538305044174, -0.029784483835101128, -0.00917372852563858, 0.014008349739015102, -0.02515074796974659, 0.030775515362620354, 0.01706179603934288, 0.009937089867889881, 0.02216426283121109, -0.018856363371014595, 0.0009692680323496461, -0.011390154249966145, -0.019941139966249466, 0.006937213707715273, 0.0058725252747535706, -0.008363493718206882, 0.05876543000340462, -0.042051833122968674, -0.02132054790854454, 0.02895416133105755, 0.03701632842421532, -0.015026165172457695, -0.0223651472479105, 0.014410119503736496, -0.05346207693219185, 0.002186293713748455, -0.0020239120349287987, -0.012943661771714687, 0.018079610541462898, 0.022298187017440796, -0.01706179603934288, -0.04746232554316521, 0.011189269833266735, 0.007265325170010328, -0.016579672694206238, -0.002444095443934202, -0.008725086227059364, 0.021896416321396828, -0.03479320555925369, 0.006357996258884668, -0.017182325944304466, 0.0018481379374861717, -0.024815939366817474, 0.016244864091277122, -0.010151366703212261, 0.011403546668589115, 0.017530526965856552, 0.007593436632305384, -0.033561114221811295, -0.027400653809309006, 0.03940016031265259, -0.007593436632305384, -0.014517257921397686, 0.06262241303920746, -0.009997354820370674, -0.019927749410271645, -0.013753896579146385, -0.017543917521834373, 0.03958765044808388, 0.004911627620458603, 0.011644608341157436, 0.013084281235933304, -0.0005779616185463965, 0.06910429149866104, -0.009294259361922741, -0.0008311598794534802, 0.005467408336699009, 0.01330525428056717, -0.024789154529571533, 0.03787343576550484, 0.008169305510818958, -0.005045550409704447, -0.014289588667452335, 0.020329518243670464, 0.013874427415430546, 0.004365891218185425, 0.011524077504873276, -0.02153482474386692, 0.04215897247195244, 0.039507295936346054, 0.04290894418954849, 0.0010680363047868013, -0.017838548868894577, -0.037203822284936905, -0.02774885483086109, -0.055765554308891296, 0.022539248690009117, 0.031445130705833435, 0.01289009302854538, -0.017584094777703285, -0.003461910644546151, 0.001523374579846859, -0.03715025261044502, 0.00886570569127798, 0.014463688246905804, -0.032489728182554245, -0.0072787171229720116, 0.033695038408041, 0.0009634088492020965, 0.017316250130534172, 0.009414790198206902, -0.028605962172150612, 0.0003107433149125427, 0.04282858967781067, -0.050649695098400116, -0.024655232205986977, -0.0004164169658906758, -0.04973901808261871, -0.0021980118472129107, -0.012180300429463387, -0.026088207960128784, 0.007231844123452902, -0.029302360489964485, 0.00020444189431145787, 0.003011594293639064, -0.040605466812849045, 0.021400902420282364, -0.03029339201748371, 0.015468111261725426, 0.0013316972181200981, 0.002735378220677376, 0.03417716175317764, -0.0047542680986225605, 0.028097053989768028, 0.03026660718023777, -0.014985987916588783, 0.0049785892479121685, -0.03109692968428135, 0.007479602005332708, -0.02689174748957157, 0.04009655863046646, 0.03404323756694794, 0.022941017523407936, 0.03562352806329727, 0.001669015851803124, 0.03648063540458679, -0.021052701398730278, -0.009528624825179577, -0.013479353860020638, 0.008396974764764309, 0.011631215922534466, -0.005993056111037731, -0.00906659010797739, 0.0054339272901415825, -0.041917912662029266, 0.024159716442227364, -0.04376605153083801, -0.005058942828327417, -0.03342719003558159, -0.018173357471823692, 0.024467740207910538, -0.008309924975037575, 0.013311950489878654, 0.015360972844064236, 0.004399371799081564, 0.06385450810194016, 0.03409680724143982, -0.010405819863080978, -0.009796470403671265, 0.013291861861944199, 0.005353573709726334, 0.019084032624959946, 0.031873684376478195, 0.0327843613922596, 0.007191667333245277, 0.01900367997586727, 0.02324903942644596, 0.013499442487955093, 0.049578309059143066, -0.0038368951063603163, -0.00039005084545351565, -0.03198082372546196, 0.061068907380104065, 0.024641839787364006, 0.030373746529221535, -0.011510685086250305, -0.018066218122839928, -0.02940949983894825, 0.040819741785526276, -0.0047877486795187, -0.03556995838880539, -0.003602529875934124, -0.0014421837404370308, 0.03773951157927513, 0.02172231674194336, 0.012816434726119041, 0.00012806391168851405, -0.022713348269462585, 0.014142272993922234, 0.013271773234009743, -0.034632500261068344, -0.02981126867234707, 0.020075064152479172, -0.026489976793527603, 0.0100308358669281, 0.04815872386097908, 0.0018615302396938205, -0.009381309151649475, -0.03152548521757126, 0.04821229353547096, -0.007272020913660526, 0.03090943768620491, -0.015602034516632557, -0.04941760376095772, 0.00842375960201025, -0.048667632043361664, 0.05225677043199539, -0.031873684376478195, 0.046792712062597275, -0.011791924014687538, 0.004697350785136223, 0.007238540332764387, -0.015441326424479485, 0.03222188353538513, 0.005638159811496735, 0.002434051362797618, -0.04202505201101303, -0.018628694117069244, 0.014276196248829365, -0.0003130451077595353, -0.016030587255954742, -0.0010931468568742275, -0.03182011470198631, 0.019459018483757973, 0.017651056870818138, -0.023784732446074486, 0.025298062711954117, -0.022726740688085556, 0.07269342988729477, -0.03682883456349373, -0.02515074796974659, -0.010814285837113857, 0.0076737902127206326, -0.015950234606862068, 0.003177324077114463, -0.010666970163583755, -0.011095523834228516, -0.012367792427539825, -0.016793949529528618, -0.03090943768620491, -0.02639623172581196, 0.0033279876224696636, -0.002921196399256587, 0.04325714334845543, -0.02473558485507965, -0.006883644498884678, 0.004630389157682657, 0.028632747009396553, -0.02599446289241314, 0.02709263190627098, -0.025659654289484024, 0.023329393938183784, 0.0062240734696388245, -0.05271210893988609, -0.008343405090272427, 0.021226802840828896, 0.0023285867646336555, -0.01749034970998764, -0.00863803643733263, 0.023530278354883194, 0.027333693578839302, -0.04548026621341705, 0.03176654502749443, -0.029516639187932014, 0.041007235646247864, 0.05506915599107742, -0.001811309135518968, -0.008176001720130444, -0.01747695729136467, 0.027454223483800888, -0.024119539186358452, -0.014222626574337482, -0.000834507925901562, -0.0047442237846553326, 0.02047683298587799, 0.0035556566435843706, -0.013184723444283009, -0.01214681938290596, 0.01834745705127716, -0.012916876934468746, 0.014905634336173534, -0.02233836241066456, -0.022083910182118416, -0.026101600378751755, -0.03299863636493683, -0.009120158851146698, -0.005929442588239908, -0.02965056151151657, 0.006257554050534964, 0.04797123372554779, 0.0016623197589069605, 0.008919274434447289, 0.01021832786500454, -0.0035322201438248158, -0.0011341607896611094, -0.030132684856653214, -0.013499442487955093, -0.034418221563100815, 0.02280709333717823, -0.008912578225135803, 0.02873988449573517, -0.011021866463124752, 0.030614806339144707, 0.036346714943647385, 0.025914108380675316, 0.006143719423562288, 0.02919522300362587, 0.00017064725398086011, -0.0327843613922596, 0.0076202210038900375, -0.03543603792786598, -0.0008997954428195953, -0.047221265733242035, 0.016700202599167824, 0.003086926182731986, -0.027333693578839302, -0.017851941287517548, -0.001811309135518968, -0.02916843816637993, 0.03366825357079506, 0.05833687633275986, -0.03942694514989853, 0.014436903409659863, -0.03238259255886078, -0.018601911142468452, -0.008711693808436394, -0.033989667892456055, -0.013727111741900444, -0.025472162291407585, 0.04264109581708908, 0.0015041232109069824, -0.023115117102861404, -0.04197148233652115, -0.02387847751379013, -0.014436903409659863, -0.014865458011627197, -0.026489976793527603, 0.003081904025748372, 0.028927376493811607, 0.00202558608725667, 0.0038201548159122467, -0.012602157890796661, -0.005668292753398418, 0.004781052470207214, 0.01919117197394371, -0.007472905796021223, 0.0008763588848523796, 0.02324903942644596, 0.017825156450271606, -0.01256867777556181, -0.016579672694206238, -0.039212666451931, -0.01724928803741932, 0.005758690647780895, -0.011329889297485352, -0.01183879654854536, -0.01921795681118965, -0.049524739384651184, -0.007814409211277962, -0.04092688113451004, -0.01893671788275242, 0.00021427686442621052, 0.010037532076239586, 0.019325094297528267, -0.005099119618535042, -0.015360972844064236, -0.039105527102947235, 0.013539619743824005, -0.006391477305442095, -0.020958956331014633, -0.0434982031583786, -0.029730916023254395, 0.05204249545931816, -0.0026516763027757406, 0.016084156930446625, 0.0025328195188194513, 0.01896350271999836, 0.007794321049004793, -0.03937337547540665, 0.020530402660369873, 0.05265853926539421, 0.007754144258797169, 0.0008780329371802509, 0.019472410902380943, -0.023583848029375076, -0.001972016878426075, 0.003202434629201889, -0.007727359421551228, -2.9400292987702414e-05, -0.013291861861944199, 0.011242839507758617, -0.016887694597244263, 0.004339106380939484, -0.017651056870818138, 0.02369098551571369, 0.010024139657616615, -0.017168933525681496, -0.01659306511282921, 0.007827801629900932, -0.0015576924197375774, 0.011570950970053673, -0.024815939366817474, -0.008356797508895397, -0.028713099658489227, -0.005822304170578718, 0.028445253148674965, -0.00980316661298275, 0.017557309940457344, 0.02045004814863205, 0.020168809220194817, 0.019338486716151237, 0.02689174748957157, -0.02216426283121109, 0.09074625372886658, -0.009026412852108479, -0.005899310111999512, 0.005152688827365637, -0.003954077605158091, -0.004499814007431269, 0.005366965662688017, 0.0034518663305789232, 0.008383582346141338, -0.0008437151554971933, 0.011704874224960804, -0.0015652255387976766, 0.012059769593179226, 0.045078497380018234, 0.04221254214644432, -0.0015576924197375774, -1.0456198651809245e-05, -0.02774885483086109, -0.015454718843102455, 0.026704253628849983, 0.018240317702293396, 0.0005557805998250842, -0.01353292353451252, 0.015227049589157104, 0.017436780035495758, 0.0006465971819125116, 0.0024307032581418753, -0.028257761150598526, -0.021240193396806717, -0.04223932698369026, 0.0211330559104681, 0.035489607602357864, -0.009649154730141163, -0.032302238047122955, -0.0035657009575515985, -0.05458703264594078, -0.024789154529571533, -0.00634795194491744, 0.02453470043838024, -0.0030735337641090155, 0.0007403432973660529, 0.007051048334687948, -0.022016948089003563, 0.006187244318425655, 0.042935725301504135, 0.06144389137625694, -0.02300797775387764, 0.014838673174381256, -0.02916843816637993, 0.00205571879632771, -0.019298309460282326, 0.012709296308457851, 0.03192725405097008, -0.029570206999778748, 0.013372215442359447, -0.006217377260327339, 0.02090538665652275, 0.002886041533201933, -0.014410119503736496, -0.0179189033806324, -0.0030500972643494606, -0.025204315781593323, -0.006532096303999424, -0.025351632386446, -0.011791924014687538, -0.006548836827278137, -0.02493647113442421, -0.006820030976086855, -0.0028709752950817347, -0.04601595550775528, 0.013151242397725582, 0.012843219563364983, -0.003324639517813921, 0.027882777154445648, 0.006870252080261707, 0.0006641745567321777, 0.039212666451931, -0.03902517259120941, -0.031070144847035408, 0.012300831265747547, -0.022432109341025352, -0.0017610880313441157, -0.016164511442184448, 0.014021742157638073, -0.0086514288559556, 0.002166205085813999, -0.013686934486031532, 0.0063312118873000145, 0.011892366223037243, -0.01814657263457775, 0.01723589561879635, 0.01663324236869812, -0.010687058791518211, -0.03332005441188812, 0.00799520593136549, -0.015655603259801865, 0.026476584374904633, 0.008751871064305305, -0.00928086694329977, -0.016526103019714355, -0.0069037326611578465, 0.022458894178271294, 0.01999470964074135, -0.02283387817442417, -0.006280990783125162, -0.027668500319123268, -0.014731534756720066, -0.006712892558425665, -0.007787624839693308, 0.0057118176482617855, -0.012046377174556255, 0.05496201664209366, -0.052524615079164505, -0.015936842188239098, 0.005822304170578718, -0.037203822284936905, 0.009260778315365314, 0.02683817781507969, 0.019070640206336975, -0.03500748425722122, -0.004620344843715429, 0.022900840267539024, -0.00012251865700818598, -0.023101724684238434, 0.011738354340195656, 0.03658777475357056, -0.01873583346605301, 0.009843343868851662, -0.0012279069051146507, 0.007914851419627666, -0.01773141138255596, -0.005745298694819212, 0.04352498799562454, -0.028847023844718933, 0.008484024554491043, -0.011986112222075462, -0.004827925469726324, 0.003622618271037936, 0.0017878726357594132, -0.017744803801178932, -0.007111313287168741, -0.012876700609922409, -0.015026165172457695, 0.020999133586883545, 0.012434754520654678, 0.027989916503429413, 0.006629190407693386, -0.009508536197245121, -0.01597701944410801, -0.026985492557287216, 0.016927871853113174, -0.011477204971015453, 0.014075311832129955, 0.015026165172457695, 0.007606828585267067, 0.025043608620762825, 0.03005233034491539, 0.013338735327124596, 0.024119539186358452, 0.005219650454819202, 0.02276691608130932, -0.0032493078615516424, -0.009997354820370674, 0.04331071302294731, -0.023289216682314873, 0.01661984995007515, -0.013338735327124596, 0.0019686687737703323, -0.004580168053507805, -0.04387318715453148, -0.041917912662029266, -0.032302238047122955, 0.003733104793354869, -0.024829331785440445, 0.022030340507626534, 0.011510685086250305, -0.004516554530709982, -0.011309800669550896, 0.026798000559210777, 0.005608027335256338, -0.008169305510818958, 0.007238540332764387, 0.028472037985920906, 0.02003488689661026, -0.006666019558906555, 0.022217832505702972, -0.03289150074124336, -0.023958832025527954, -0.0017493697814643383, 0.008704997599124908, 0.018668871372938156, -0.022713348269462585, -0.006441698409616947, -0.0049149757251143456, 0.017409995198249817, 0.017530526965856552, -0.030534453690052032, 0.015347580425441265, 0.006977390497922897, -0.0010035857558250427, 0.018588518723845482, 0.011135701090097427, 0.041891127824783325, 0.009562104940414429, -0.038516268134117126, 0.044864218682050705, -0.02303476259112358, 0.03224866837263107, 0.0027973174583166838, -0.012896789237856865, 0.007821105420589447, -0.0008533408981747925, 0.0013794073602184653, -0.0022063821088522673, -0.028472037985920906, 0.01829388737678528, -0.009662547148764133, 0.010519654490053654, -0.021374117583036423, -0.012059769593179226, -0.004811185412108898, 0.019499193876981735, 0.0015317447250708938, -0.00044069052091799676, 0.0009148617973551154, -0.03131120651960373, 0.019244741648435593, -0.01076741237193346, 0.012655727565288544, 0.008912578225135803, -0.0018966851057484746, 0.03366825357079506, 0.010010747238993645, -0.04095366597175598, 0.009675939567387104, 0.0009910304797813296, 0.018441202118992805, 0.01224726252257824, -0.01053974311798811, -0.017557309940457344, 0.02219104766845703, 0.01620468869805336, 0.019967924803495407, 0.017128756269812584, -0.030775515362620354, 0.0379805751144886, -0.0033614684361964464, 0.027414046227931976, -0.010312073864042759, 0.0036527509801089764, -0.007218451704829931, 0.003008246421813965, -0.006006448529660702, 0.02233836241066456, -0.003388253040611744, -0.0189902875572443, -0.0030634894501417875, 0.017557309940457344, 4.404812352731824e-05, 0.011858885176479816, 0.01279634702950716, 0.02197677083313465, -0.020610755309462547, -0.025257885456085205, -0.018909933045506477, -0.025190923362970352, -0.01749034970998764, -0.014557434245944023, -0.019686687737703323, -0.0006913776742294431, 0.031605836004018784, -0.05343529209494591, 0.011041955091059208, -0.006910428870469332, -0.01118257362395525, 0.003786674002185464, 0.029061300680041313, 0.004154962487518787, -0.005825652275234461, 0.02857917733490467, -0.007908155210316181, 0.019459018483757973, -0.002223122399300337, -0.0033748606219887733, 0.01076741237193346, 0.02278030849993229, -0.02430703118443489, 0.04065903648734093, 0.007519778795540333, -0.018467986956238747, -0.026811392977833748, -0.020302733406424522, 0.005725210066884756, -0.010559831745922565, 0.0031756500247865915, -0.0021143099293112755, 0.04355177283287048, -0.0006294383201748133, -0.016084156930446625, -0.007633613422513008, 0.001436324673704803, -0.016901087015867233, 0.03214152902364731, 0.015079734846949577, 0.022860663011670113, 0.008001902140676975, -0.031659405678510666, -0.023731162771582603, 0.006157111842185259, -0.006652627140283585, -0.01011118944734335, -0.017651056870818138, 0.003525524167343974, -0.0018230273853987455, -0.018454594537615776, -0.016070764511823654, -0.0042420122772455215, 0.013137849979102612, -0.012736081145703793, 0.024253463372588158, 0.022070517763495445, -0.017409995198249817, -0.0022716696839779615, 0.0030835780780762434, -0.005400446709245443, 0.008296532556414604, -0.01597701944410801, 0.008725086227059364, 0.01959294080734253, 0.038060929626226425, -0.0012178627075627446, -0.009669243358075619, 0.007700575049966574, 0.025699831545352936, -0.0034920433536171913, 0.014972596429288387, 0.019271526485681534, -0.0068334233947098255, -0.005678337067365646, 0.026128385215997696, -0.011142397299408913, -0.0024089408107101917, 0.03503426909446716, -0.007426032796502113, -0.01205307338386774, -0.030186252668499947, 0.007861282676458359, -0.004298929590731859, 0.0001158225059043616, 0.0006687782006338239, 0.0086514288559556, 0.03238259255886078, 0.0016874303109943867, 0.0264230165630579, 0.051051463931798935, 0.008912578225135803, 0.014423511922359467, -0.0019134253961965442, -0.027347084134817123, -0.009809862822294235, -0.006066713947802782, -0.04435531049966812, -0.003528872039169073, -0.00040218763751909137, -0.05482809245586395, 0.026074815541505814, -0.032275453209877014, 0.024213286116719246, -0.028847023844718933, 0.026516761630773544, 0.010941512882709503, 0.018374241888523102, -0.000849574280437082, 0.01959294080734253, 0.016700202599167824, -0.017610879614949226, -0.0017343034269288182, 0.013432481326162815, -0.027373868972063065, 0.02796313166618347, -0.014369942247867584, -0.01024511270225048, -0.004941760096698999, -0.02257942408323288, -0.031418345868587494, 0.025887323543429375, 0.013218204490840435, -0.004014343023300171, -0.017530526965856552, 0.003441822249442339, -0.017584094777703285, -0.024199893698096275, 0.005976315587759018, 0.008550985716283321, 0.0055410657078027725, -0.004034431651234627, 0.024789154529571533, -0.0011500641703605652, 0.002526123309507966, 0.002720311749726534, -0.011457116343080997, 0.0327843613922596, 0.006830075290054083, -0.00533683318644762, 0.015240442007780075, 0.016673417761921883, 0.028097053989768028, -0.00468061026185751, -0.009193817153573036, 0.03173976019024849, -0.00029965280555188656, 0.016753772273659706, -0.01986078731715679, -0.004774356260895729, -0.018026040866971016, 0.006414913572371006, 0.04582846537232399, -0.013740504160523415, 0.024039186537265778, 0.004004298709332943, 0.027588145807385445, -0.011041955091059208, 0.04644450917840004, -0.01850816421210766, -0.024963254109025, -0.003388253040611744, -0.011785227805376053, 0.0007123031537048519, 0.013666846789419651, 0.02276691608130932, 0.007004174869507551, 0.021842848509550095, 0.062086720019578934, 0.012099946849048138, -0.015709172934293747, -0.0038670278154313564, -0.012314223684370518, -0.018414417281746864, 0.033962883055210114, -0.030373746529221535, 0.004375935532152653, -0.01749034970998764, 0.006274294573813677, 0.0516139417886734, 0.027414046227931976, -0.021240193396806717, 0.013740504160523415, -0.017343033105134964, -0.03214152902364731, 0.026744430884718895, -0.0031019924208521843, 0.04944438859820366, 0.028900591656565666, 0.025887323543429375, -0.029757698997855186, 0.025525731965899467, 0.012407969683408737, -0.02513735555112362, -0.03289150074124336, 0.009300955571234226, 0.0015325817512348294, -0.021266978234052658, -0.0003071859828196466, -0.0038770721293985844, 0.0016732009826228023, 0.002464184071868658, 0.007921547628939152, -0.005808911751955748, -0.004061216022819281, -0.0028073617722839117, 0.006793246138840914, -0.019231349229812622, 0.0003362723800819367, -0.016137726604938507, -0.013887818902730942, -0.007867978885769844, -0.019472410902380943, -0.02069110982120037, 0.03326648473739624, -0.018079610541462898, -0.011343281716108322, -0.010057620704174042, 0.003883768105879426, 0.008698301389813423, -0.04904261603951454, -0.03299863636493683, -0.013017319142818451, 0.037177037447690964, -0.04454280436038971, 0.01680734194815159, -0.022258009761571884, 0.011082131415605545, 0.013633365742862225, 0.018883148208260536, 0.036802053451538086, -0.020958956331014633, 0.0014480429235845804, 0.06347952038049698, 0.03972157463431358, 0.012823130935430527, -0.02300797775387764, -0.01226735021919012, -0.015936842188239098, 0.028391685336828232, 0.005012069828808308, 0.03431108221411705, 0.010184846818447113, -0.03412359207868576, -0.012367792427539825, -0.025699831545352936, -0.02900773100554943, -0.021816063672304153, 0.017101971432566643, -0.026543546468019485, -0.003421733621507883, 0.019512586295604706, -0.016084156930446625, 0.015079734846949577, -0.005795519798994064, 0.00018267940322402865, -0.01067366637289524, -0.024882901459932327, -0.028900591656565666, -0.018401026725769043, -0.020838424563407898, 0.020570579916238785, 0.0012588766403496265, -0.038650188595056534, -0.024842724204063416, -0.02279370091855526, 0.014410119503736496, 0.02492307871580124, 0.004667217843234539, 0.020409870892763138, 0.02729351632297039, -0.02619534730911255, -0.011812012642621994, -0.02046344056725502, 0.013050800189375877, -0.00822287518531084, -0.02004827931523323, -0.015294011682271957, 0.00928086694329977, 0.024789154529571533, -0.005504237022250891, -0.005962923634797335, 0.013486050069332123, -0.01980721764266491, 0.022874055430293083, -0.027427438646554947, 0.011175877414643764, -0.018682263791561127, 0.007526475004851818, -0.0050857276655733585, 0.010211631655693054, 0.010037532076239586, 0.02369098551571369, 0.0242802482098341, -0.015227049589157104, -0.034632500261068344, -0.006535444408655167, -0.041221510618925095, 0.009930393658578396, 0.013968173414468765, -0.02962377667427063, -0.03283793106675148, -0.026476584374904633, 0.026731038466095924, 0.01836084946990013, -0.0022616253700107336, 0.02323564700782299, -0.036159221082925797, 0.03468606621026993, 0.012200389057397842, -0.006023188587278128, 0.023945439606904984, -0.016740379855036736, -0.006625842303037643, -0.001411214005202055, -0.014329764991998672, -0.013834250159561634, -0.014798495918512344, 0.01683412678539753, -0.011537469923496246, 0.016231471672654152, -0.014691357500851154, 0.022458894178271294, 0.01574935019016266, -0.013593188486993313, 0.007124705705791712, 0.025940893217921257, -0.027012277394533157, 0.009240689687430859, -0.027882777154445648, -0.015200264751911163, 0.0028826934285461903, 0.02513735555112362, -0.027775637805461884, 0.029998760670423508, 0.03366825357079506, -0.02085181698203087, -0.004854710306972265, 0.01599041186273098, 0.004811185412108898, -0.024561485275626183, 0.029034515842795372, -0.020128633826971054, -0.011175877414643764, 0.006471830885857344, 0.0010454367147758603, 0.012575373984873295, 0.012200389057397842, -0.010439300909638405, -0.020316125825047493, -0.014905634336173534, -0.014061919413506985, -0.050837185233831406, 0.00991030503064394, -0.04277502000331879, -0.005172777455300093, -0.07071136683225632, -0.02347670868039131, -0.0038904643151909113, -0.03093622252345085, 0.0029228704515844584, -0.002780577167868614, 0.009542016312479973, 0.035730667412281036, -0.010901335626840591, 0.020101848989725113, -0.01596362702548504, -0.02665068581700325, 0.03945372626185417, 0.024762369692325592, -0.007526475004851818, 0.01832067221403122, -0.0061068907380104065, -0.014008349739015102, 0.020958956331014633, -0.021159840747714043, -0.014021742157638073, 0.0134391775354743, 0.034445006400346756, -0.017530526965856552, -0.01644575037062168, 0.0028659531380981207, -0.007794321049004793, 0.014972596429288387, 0.008289836347103119, -0.010439300909638405, 0.020342910662293434, 0.014865458011627197, -0.002375459996983409, 0.02346331626176834, -0.009167032316327095, 0.023744555190205574, 0.025057001039385796, 0.01289009302854538, 0.033346835523843765, 0.023530278354883194, -0.008718390017747879, 0.009809862822294235, 0.008477328345179558, -0.003515479853376746, -0.0040712603367865086, -0.004596908576786518, -0.0196063332259655, 0.007466209586709738, 0.021802671253681183, 0.013385607860982418, 0.004349150694906712, -0.006465134676545858, -0.01769123412668705, -0.019244741648435593, 0.015883272513747215, 0.015200264751911163, 0.03476642072200775, -0.021427687257528305, -0.0028944117948412895, -0.015200264751911163, 0.03353432938456535, 0.02257942408323288, 0.007037655916064978, 0.002798991510644555, 0.0007926570251584053, 0.007084528915584087, 0.010332162491977215, 0.0042955814860761166, 0.019673295319080353, 0.019914356991648674, -0.004077956546097994, 0.010700451210141182, -0.007272020913660526, -0.011135701090097427, 0.016499318182468414, 0.008068863302469254, 0.01986078731715679, 0.003917248919606209, 0.012849915772676468, -0.01098168920725584, -0.03556995838880539, -0.01341239269822836, 0.0242802482098341, 0.013238292187452316, -0.007667094003409147, 0.006210681051015854, -0.012521804310381413, -0.045721326023340225, 0.005906006321310997, 0.0036661431659013033, 0.0035221760626882315, 0.00862464401870966, 0.03045409917831421, 0.0004465496458578855, 0.0018916629487648606, 0.03626636043190956, 0.01599041186273098, 0.00023980594414751977, 0.008390278555452824, 0.015012772753834724, 0.011966023594141006, -0.036159221082925797, 0.009247385896742344, -0.013673542067408562, 0.0006947257788851857, -0.008470632135868073, 0.014731534756720066, 0.037819866091012955, -0.015481503680348396, -0.011363370344042778, 0.014463688246905804, 0.009233993478119373, -0.0022917580790817738, -0.015923449769616127, -7.449468830600381e-05, 0.009079982526600361, 0.0028877155855298042, -0.017570702359080315, 0.004784400574862957, 0.009843343868851662, 0.014262803830206394, 0.0019150994485244155, -0.015186873264610767, -0.02728012390434742, -0.012682512402534485, 0.002109288005158305, 0.008289836347103119, -0.0025629522278904915, -0.007492993958294392, -0.02212408557534218, -0.0023336089216172695, 0.018267102539539337, -0.03514140471816063, 0.010365643538534641, 0.016110941767692566, 0.0074595133773982525, -0.003177324077114463, -0.017543917521834373, 0.017409995198249817, -0.014811888337135315, -0.014664572663605213, -0.0007734055398032069, 0.00032999474206008017, -0.016968049108982086, 0.005403794813901186, 0.011122308671474457, -0.03152548521757126, 0.007258628960698843, 0.0040712603367865086, -0.020155416801571846, -0.011122308671474457, 0.014209235087037086, 0.020356303080916405, 0.011711569502949715, 0.015240442007780075, -0.025873931124806404, -0.03380217403173447, 0.011570950970053673, -0.019030464813113213, -0.0020707850344479084, -0.03353432938456535, -0.012193692848086357, 0.007472905796021223, -0.014852065593004227, 0.004201835487037897, -0.020142026245594025, -0.005303352605551481, -0.03980192914605141, 0.0019452321575954556, -0.01621808111667633, -0.0018849668558686972, -0.0012772909831255674, -0.03511461988091469, 0.02065093256533146, -0.015387757681310177, -0.024615054950118065, -0.006622494198381901, -0.013506138697266579, 0.04306964948773384, -0.014115488156676292, -0.025686439126729965, 0.003465258749201894, -0.0054874964989721775, 0.005885917693376541, 0.007385855540633202, -0.006143719423562288, -0.030213037505745888, 0.017597487196326256, 0.01682073436677456, 0.0038971605245023966, 0.016954656690359116, -0.007740751840174198, -0.02047683298587799, 0.016793949529528618, -0.00601649284362793, 0.0134391775354743, 0.015133303590118885, 0.0072251479141414165, -0.006291034631431103, 0.004031083546578884, -0.0072787171229720116, -0.030534453690052032, 0.008966147899627686, -0.007647005841135979, -0.0012747799046337605, 0.009535320103168488, -0.004677262157201767, 0.023115117102861404, 0.00978977419435978, -0.03816806524991989, -0.0072988057509064674, -0.0012521804310381413, 0.0011592713417485356, -0.009983962401747704, -0.00033480761339887977, -0.005454015918076038, 0.012662423774600029, -0.02156160958111286, 0.02300797775387764, -0.0038569835014641285, 0.03503426909446716, -0.00916033610701561, 0.016043979674577713, -0.001854834146797657, -0.0015267226845026016, -0.004965196829289198, 0.018012648448348045, -0.030802300199866295, -0.017999256029725075, 0.0007767536444589496, -0.009488447569310665, 0.016793949529528618, 0.00682672718539834, -0.018695656210184097, -0.04277502000331879, 0.004720787052065134, 0.024173108860850334, -0.004620344843715429, 0.009977266192436218, -0.002174575347453356, -0.03088265284895897, -0.023838302120566368, -0.015280619263648987, -0.005470756441354752, 0.02261960133910179, -0.0045199026353657246, -0.0016606457065790892, 0.0004892376018688083, -0.0020272601395845413, 0.0016849192325025797, 0.011872277595102787, -0.01364006195217371, 0.0015861510764807463, 0.012535196729004383, -0.018909933045506477, -0.010312073864042759, 0.01011118944734335, -0.01162451971322298, 0.008229570463299751, -0.015521680004894733, -0.014142272993922234, 0.004509858321398497, 0.030855868011713028, -0.010666970163583755, 0.04973901808261871, 0.014651180244982243, -0.016941264271736145, -0.00501541793346405, 0.010733931325376034, 0.005762038752436638, -0.02855239249765873, -0.020115241408348083, -0.038676973432302475, -0.002097569638863206, -0.011684785597026348, -0.0010948209092020988, 0.007928243838250637, -0.028873806819319725, 0.007713967002928257, 0.023275824263691902, 0.001283150166273117, -0.00883892085403204, -0.0009014694951474667, -0.0036527509801089764, 0.0014204212930053473, 0.002199685899540782, 0.0009198838961310685, -0.01878940314054489, 0.01301062386482954, -0.015615426935255527, -0.0016221428522840142, 0.010908031836152077, 0.02024916373193264, 0.005075683351606131, 0.01205307338386774, 0.017959080636501312, 0.007680486422032118, 0.01330525428056717, 0.03511461988091469, -0.01707518845796585, 0.02172231674194336, -0.030427314341068268, -0.007097921334207058, -0.031204069033265114, -0.01854834146797657, -0.00016949634300544858, 0.0018749225419014692, 0.015950234606862068, 0.007559955585747957, 0.008524201810359955, 0.014088704250752926, 0.025083785876631737, -0.004077956546097994, -0.000893099291715771, 0.0062675983645021915, 0.022472286596894264, 0.009227297268807888, 0.011885670013725758, -0.013044103980064392, -0.03626636043190956, 0.012582069262862206, 0.005698425229638815, 0.04355177283287048, -0.005162733141332865, -0.002502686809748411, -0.01192584726959467, -0.009870127774775028, -0.010405819863080978, 0.02326243184506893, 0.0051024677231907845, -0.004402719903737307, 0.033159345388412476, -0.02215087041258812, 0.002857582876458764, -0.006712892558425665, 0.002033956116065383, -0.006451742723584175, -0.006307775154709816, 0.0024156367871910334, 0.000497607805300504, -0.008021989837288857, 0.016981441527605057, -0.001423769281245768, 0.009347828105092049, 0.009963874705135822, -0.006883644498884678, 0.0033564462792128325, 0.02107948623597622, 0.004961848724633455, -0.012113339267671108, 0.007807713467627764, 0.02831133082509041, -0.005079031456261873, -0.027882777154445648, -0.03090943768620491, 0.025257885456085205, -0.008919274434447289, 0.01852155663073063, -0.015052950009703636, -0.03642706573009491, -0.03554317355155945, 0.004961848724633455, -0.008818832226097584, 0.038034144788980484, -0.021454472094774246, -0.013707023113965988, 0.035918161273002625, -0.007312198169529438, -0.004546687472611666, -0.031204069033265114, 0.002847538562491536, -0.002482598414644599, 0.0008186046034097672, -0.0026901790406554937, -0.0023620675783604383, 0.00501541793346405, -0.03133799135684967, -0.004814533516764641, 0.011878973804414272, -0.011309800669550896, 0.029971975833177567, -0.0049250200390815735, -0.012133427895605564, -0.011872277595102787, -0.006649279035627842, -0.015602034516632557, -0.014222626574337482, -0.004128177650272846, 0.0033648163080215454, 0.010827678255736828, 0.001781176426447928, -0.018253710120916367, -0.011001777835190296, -0.0012471582740545273, 0.013981565833091736, 0.0018029389902949333, -0.03026660718023777, 0.017784979194402695, 0.0002667998196557164, -0.011771835386753082, -0.008698301389813423, -0.003840243211016059, -0.0020724590867757797, -0.00495515251532197, -0.013070888817310333, 0.007385855540633202, 0.013050800189375877, 0.017557309940457344, -0.0061068907380104065, -0.030614806339144707, -0.0010395776480436325, -0.002916174242272973, -0.002336957026273012, -0.011878973804414272, -0.03417716175317764, -0.006558881141245365, -0.014624396339058876, 0.020784856751561165, 0.011283015832304955, -0.015722565352916718, -0.009649154730141163, -0.013392304070293903, 0.016110941767692566, -0.008082255721092224, -0.01940544880926609, 0.01333203911781311, -0.012595461681485176, -0.006003100425004959, -0.017316250130534172, -0.011564254760742188, -0.0007436914020217955, 0.01299723144620657, -0.016994833946228027, 0.02153482474386692, 0.042319681495428085, -0.019967924803495407, -0.04266788065433502, 0.0033514241222292185, -0.003095296211540699, -0.022673171013593674, -0.0068334233947098255, -0.04170363396406174, -0.023932047188282013, -0.011443723924458027, 0.005256479140371084, -0.00163804623298347, 0.006327863782644272, 0.02046344056725502, 0.029757698997855186, 0.025405200198292732, 0.007948332466185093, -0.023717770352959633, 0.02240532450377941, -0.005470756441354752, 0.018401026725769043, -0.0008114899392239749, 0.016485925763845444, -0.012910180725157261, -0.026489976793527603, 0.027641715481877327, 0.015253834426403046, 0.008711693808436394, 0.003816806711256504, 0.009327739477157593, -0.015481503680348396, 0.023101724684238434, 0.022298187017440796, -0.014932419173419476, -0.011416939087212086, -0.010620096698403358, 0.02474897727370262, 0.013700326904654503, -0.005909353960305452, -0.010908031836152077, 0.0036427066661417484, -0.010941512882709503, -0.027855992317199707, 0.010841069743037224, 0.010291986167430878, 0.002064088825136423, 0.004981937352567911, -0.007452817168086767, 0.012983839027583599, 0.023369571194052696, 0.012280742637813091, -0.0001023255754262209, 0.03883768245577812, -0.004409416113048792, -0.01641896553337574, 0.016552887856960297, -0.029570206999778748, -0.0022365148179233074, -0.02043665573000908, 0.041676849126815796, -0.001893337001092732, -0.021641964092850685, -0.020168809220194817, 0.0073523749597370625, 0.038891252130270004, -0.00019785037147812545, -0.0027186376973986626, -0.02106609381735325, -0.03532889857888222, 0.013820857740938663, -0.004981937352567911, 0.00037875110865570605, 0.005042202305048704, 0.014477080665528774, 0.0012496693525463343, -0.007178274914622307, 0.0017158889677375555, -0.0042955814860761166, -0.011698178015649319, 0.013753896579146385, -0.00044069052091799676, -0.008028686046600342, 0.02769528515636921, -0.004874798469245434, -0.022900840267539024, -0.006655975244939327, 0.0013442524941638112, -0.014972596429288387, -0.010265201330184937, -0.006207332946360111, -0.012193692848086357, -0.022686563432216644, -0.007727359421551228, 0.010794197209179401, 0.004165006801486015, -0.0032693962566554546, -0.009193817153573036, -0.005531021393835545, 0.006163808051496744, 0.006220725364983082, 0.015936842188239098, -0.0042955814860761166, 0.006177200470119715, 0.0017393254674971104, -0.016673417761921883, -0.0039641219191253185, -0.002141094533726573, -0.0095754973590374, 0.007727359421551228, -0.0003657773195300251, 0.001489893882535398, 0.06594370305538177, -0.009823255240917206, -0.006498615723103285, -0.009930393658578396, 0.007713967002928257, -0.006468482781201601, 0.001742673572152853, 0.02559269405901432, 0.007345678750425577, -0.011490597389638424, -0.008597859181463718, -0.00875856727361679, 0.0037732815835624933, 0.013479353860020638, -0.0058725252747535706, 0.0023587194737046957, 0.011905758641660213, 0.0320076085627079, -0.005524325650185347, 0.013666846789419651, 0.020409870892763138, 0.00016834544658195227, -0.006726284511387348, -0.004791096784174442, -0.012341008521616459, 0.012595461681485176, 0.015106518752872944, 0.037203822284936905, 0.012260654009878635, 0.009809862822294235, 0.014972596429288387, 0.017771586775779724, -0.022726740688085556, -0.018039433285593987, -0.008028686046600342, 0.016579672694206238, -0.008276443928480148, 0.023101724684238434, 0.01138345804065466, 0.012843219563364983, -0.002216426422819495, -0.017985863611102104, 0.0059897080063819885, 0.01982061006128788, 0.006639234721660614, -0.0013643410056829453, -0.01205307338386774, 0.0010337184648960829, 0.005259827245026827, -0.019874179735779762, -0.01789211854338646, 0.00978977419435978, 0.005778779275715351, 0.01045938953757286, -0.003569049062207341, -0.002875997219234705, 0.01769123412668705, -0.004175050649791956, -0.0005917724338360131, 0.007184971123933792, 0.012896789237856865, -0.014570826664566994, -0.009622370824217796, -0.03409680724143982, -0.006692803930491209, -0.021789278835058212, -0.001985409064218402, -0.01937866397202015, 0.0001348646910628304, 0.019700080156326294, 0.002064088825136423, 0.03465928137302399, 0.014838673174381256, -0.022311579436063766, -0.012012897059321404, 0.0048614065162837505, 0.017008226364850998, 0.000452827283879742, 0.005182821769267321, 0.0030852521304041147, 0.00420518359169364, -0.005755342543125153, -0.0025914108846336603, -0.03599851205945015, 0.004747571889311075, -0.0005712654674425721, 0.04052511230111122, -0.02725333906710148, 0.017356425523757935, -0.013807465322315693, -0.002141094533726573, 0.01686091162264347, -0.02430703118443489, 0.020771464332938194, -0.012983839027583599, -0.002603129018098116, -0.01770462654531002, -0.020758071914315224, 0.030320176854729652, 0.007258628960698843, 0.0004683121223933995, 0.004757616203278303, 0.001594521221704781, 0.0023084983695298433, -0.010144670493900776, -0.009729509241878986, -0.0003235078474972397, 0.02027594856917858, -0.020744679495692253, 0.013968173414468765, -0.01075401995331049, -0.01747695729136467, -0.01138345804065466, -0.024025794118642807, -0.04582846537232399, 0.010171455331146717, 0.009193817153573036, -0.004014343023300171, -0.005788823589682579, -0.013003927655518055, -0.0006340419058687985, 0.007593436632305384, 0.0029563510324805975, -0.014731534756720066, 0.003786674002185464, 0.009140247479081154, -0.010653577744960785, -0.010988385416567326, -0.02320886217057705, 0.017436780035495758, -0.0033179433085024357, 0.01044599711894989, -0.026141777634620667, 0.009274170733988285, 0.016700202599167824, -0.0050388542003929615, -0.0027822512201964855, -0.0013760592555627227, 0.0070644402876496315, -0.005875873379409313, 0.01809300296008587, -0.007713967002928257, -0.00443285284563899, 0.021789278835058212, -0.017423387616872787, -0.02833811566233635, -0.009582193568348885, -0.0023386310786008835, 0.025860538706183434, -0.014611003920435905, 0.017128756269812584, -0.022726740688085556, -0.010050924494862556, 0.00842375960201025, 0.002365415683016181, 0.004462985321879387, -0.01767784170806408, -0.011644608341157436, 0.006910428870469332, -0.0068401191383600235, 0.008658125065267086, 0.020838424563407898, -0.016258256509900093, 0.0026885049883276224, -0.006270946469157934, -0.013258380815386772, 0.009535320103168488, 0.011222750879824162, 0.020583972334861755, 0.012749473564326763, -0.007754144258797169, -0.002223122399300337, -0.00512255635112524, -0.013820857740938663, 0.0067698098719120026, 0.00970942061394453, -0.00938800536096096, 0.014530650340020657, -0.01921795681118965, 0.014102096669375896, 0.02176249399781227, -0.02276691608130932, 0.003602529875934124, 0.0010194891365244985, 0.023168686777353287, -0.018829580396413803, 0.013325342908501625, -0.010084404610097408, -0.007218451704829931, 0.021575001999735832, -0.027855992317199707, 0.0071715787053108215, 0.0034886952489614487, -0.007734055630862713, -0.004814533516764641, 0.0032643740996718407, -0.011001777835190296, -4.459741830942221e-05, 0.006006448529660702, -0.02047683298587799, 0.0034886952489614487, 0.01035225111991167, 0.0017995908856391907, -0.005099119618535042, -0.0035355682484805584, -0.014477080665528774, -0.008939363062381744, -0.025231100618839264, -0.023771340027451515, 0.007928243838250637, -0.04620344936847687, -0.023088332265615463, 0.004536643158644438, 0.00279229530133307, -0.019874179735779762, 0.0032643740996718407, 0.020570579916238785, -0.013084281235933304, 0.031846899539232254, 0.025673046708106995, 0.015227049589157104, 0.012910180725157261, 0.0010948209092020988, -0.013927996158599854, -0.011885670013725758, 0.009749596938490868, 0.0023034762125462294, 0.0058290003798902035, 0.01365345437079668, -0.01574935019016266, -0.0018682264490053058, 0.013111066073179245, -0.003485347144305706, -0.018695656210184097, -0.00682672718539834, 0.02363741584122181, 0.013573099859058857, -0.003816806711256504, -0.014383334666490555, -0.0013174678897485137, -0.012407969683408737, 0.0001222047721967101, -0.01637878827750683, 0.0026600463315844536, 0.004630389157682657, -0.018012648448348045, 0.012715992517769337, 0.006411565467715263, -0.006351300049573183, -2.3070337192621082e-05, 0.024789154529571533, -0.002171227242797613, 0.02049022540450096, -0.011082131415605545, 0.004278840962797403, 0.013265077024698257, 0.015079734846949577, 0.02196337841451168, -0.004888190887868404, -0.008236266672611237, -0.007955028675496578, 0.01809300296008587, 0.003359794383868575, -0.0050388542003929615, 0.02049022540450096, 0.023342786356806755, -0.02555251680314541, -0.013392304070293903, -0.0011843818938359618, 0.03299863636493683, -0.010271897539496422, 0.003987558651715517, 0.01811978779733181, 0.01877601072192192, -0.004603604320436716, -0.003977514337748289, 0.01311776228249073, -0.016740379855036736, 0.0048178816214203835, 0.011999504640698433, 0.013111066073179245, 0.015213657170534134, -0.004108089487999678, -0.020289340987801552, -0.0010655252262949944, -0.03353432938456535, -0.023061547428369522, -0.013968173414468765, -0.02193659357726574, -0.00564485602080822, 0.0015652255387976766, 0.010071013122797012, 0.020717894658446312, 0.02172231674194336, -0.021601786836981773, -0.0258069708943367, 5.848670480190776e-05, -0.010151366703212261, -0.002979787765070796, 0.009716116823256016, -0.014209235087037086, 0.025458769872784615, -0.002380482153967023, -0.014905634336173534, 0.0242802482098341, -0.0016832451801747084, 0.011651304550468922, -0.002875997219234705, -0.0013986587291583419, 0.00938800536096096, 0.010914728045463562, 0.012977142818272114, -0.006066713947802782, -0.009662547148764133, -0.01789211854338646, -0.003622618271037936, 0.011363370344042778, 0.004837969783693552, 0.0036627950612455606, 0.007385855540633202, 0.001339230453595519, 0.008162609301507473, 0.011430331505835056, 0.016526103019714355, 0.015695780515670776, 0.0264230165630579, 0.025030216202139854, 0.0028358204290270805, 0.013566403649747372, 0.013887818902730942, 0.01205307338386774, 0.009300955571234226, -0.012468235567212105, 0.013459265232086182, -0.02193659357726574, 0.00948175135999918, 0.010533046908676624, -0.004091348964720964, 0.0010856136213988066, 0.003615922061726451, -0.02089199423789978, -0.016485925763845444, -0.000640319543890655, -0.016097549349069595, -0.005865829065442085, 0.011416939087212086, -0.002281713765114546, -0.004168354440480471, 0.02938271500170231, 0.034391436725854874, 0.008584466762840748, -0.006475178990513086, 0.011704874224960804, 0.004991981200873852, -0.038060929626226425, 0.0028659531380981207, -0.005741950590163469, 0.012347704730927944, 0.016285041347146034, 0.010392428375780582, -0.0003454796096775681, 0.026489976793527603, -0.012019593268632889, -0.018454594537615776, 0.019874179735779762, 0.00925408210605383, -0.007580044213682413, 0.00319908675737679, 0.002141094533726573, -0.005474104080349207, -0.013459265232086182, -0.035918161273002625, 0.000635297445114702, -0.020972348749637604, -0.012863308191299438, 0.0007533170864917338, -0.011209358461201191, 0.0027722069062292576, -0.0002228563098469749, 0.025740008801221848, 0.016017194837331772, 0.0028559088241308928, 0.010640185326337814, 0.0072988057509064674, -0.00033836494549177587, 0.014302981086075306, -0.005909353960305452, 0.003230893285945058, -0.0008554334053769708, -0.03007911518216133, 0.006793246138840914, 0.010586616583168507, 0.005437275394797325, -0.008571074344217777, 0.016579672694206238, -0.00830322876572609, -0.024400778114795685, 0.010050924494862556, 0.00040197838097810745, -0.013666846789419651, 0.006585665512830019, -0.004590212367475033, -0.01118257362395525, 0.0005139296990819275, -0.010512958280742168, -0.010164759121835232, -0.00822287518531084, 0.00843715202063322, 0.018856363371014595, -0.041221510618925095, 0.0048178816214203835, 0.009314347058534622, 0.018280494958162308, 0.011631215922534466, 0.007854586467146873, -0.0063312118873000145, 0.024682017043232918, -0.008249659091234207, 0.03436465188860893, 0.01107543520629406, 0.03554317355155945, 0.01620468869805336, 0.018427809700369835, -0.02512396313250065, 0.023101724684238434, 0.011691481806337833, 0.02046344056725502, -0.006465134676545858, 0.01957954838871956, 0.019914356991648674, 0.020717894658446312, -0.03090943768620491, 0.03029339201748371, 0.01893671788275242, -0.02406597137451172, -0.008356797508895397, 0.025284670293331146, -0.013265077024698257, -0.01979382522404194, 0.035677097737789154, 0.0030969702638685703, -0.007097921334207058, -0.004948456306010485, -0.004175050649791956, 0.0008629665826447308, -0.00016960097127594054, 0.002676786854863167, 0.011497292667627335, 0.0020774812437593937, -0.011457116343080997, 0.009716116823256016, 0.014075311832129955, -0.0062776426784694195, 0.007774232421070337, -0.026114992797374725, 0.006280990783125162, -0.010332162491977215, 0.00039381743408739567, 0.023182079195976257, -0.01939205639064312, 0.01203968096524477, -0.005159385036677122, 0.02620873972773552, 0.010077708400785923, -0.011216054670512676, -0.0039741662330925465, 0.01225395780056715, 0.012642335146665573, -0.014182450249791145, -0.006565576884895563, 0.0008813810418359935, -0.0017460216768085957, 0.019512586295604706, 0.002447443548589945, -0.007379159796983004, 0.005959575530141592, -0.008510809391736984, 0.0018380937399342656, -0.003686231793835759, 0.00228673592209816, -0.012099946849048138, -0.00960228219628334, -0.00490827951580286, -0.006535444408655167, 0.014959204010665417, -0.008885793387889862, -0.029463069513440132, 0.019445626065135002, -0.002074133139103651, 0.0026315876748412848, 2.869405761884991e-05, 0.0050857276655733585, 0.014316373504698277, 0.017182325944304466, 0.0065454887226223946, -0.004258752800524235, -0.014302981086075306, 0.04033761844038963, 0.004342454485595226, -0.014396727085113525, 0.007961724884808064, -0.02836490049958229, -0.020195594057440758, 0.01290348544716835, 0.014691357500851154, -0.00468061026185751, -0.01770462654531002, -0.007104617543518543, -0.0005875873612239957, 0.014477080665528774, 0.014115488156676292, -0.021615179255604744, -0.008383582346141338, 0.019753647968173027, -0.006930517498403788, 0.013646758161485195, 0.00650531193241477, 0.00989691261202097, 0.014128880575299263, 0.008952755481004715, 0.016927871853113174, -0.015910057350993156, -0.0013643410056829453, 0.0003940266906283796, -0.009983962401747704, 0.016686810180544853, -0.00810234434902668, 0.004258752800524235, 0.011068738996982574, 0.021266978234052658, -0.026972100138664246, 0.0157761350274086, 0.007606828585267067, 0.012093250639736652, -0.0017878726357594132, 0.006578969303518534, -0.005745298694819212, -0.011798620223999023, 0.010633489117026329, -0.03473963588476181, -0.0017744803335517645, -0.009300955571234226, 0.028445253148674965, -0.010626792907714844, -0.018026040866971016, -0.01963311806321144, -0.02432042360305786, -0.033561114221811295, -0.023744555190205574, -0.000105882907519117, -0.016499318182468414, 0.00883892085403204, 0.013941388577222824, 0.005467408336699009, -0.0013760592555627227, -0.0012044704053550959, -0.009950482286512852, -0.0026834828313440084, 0.01663324236869812, 0.004094697069376707, -0.017329640686511993, -0.002867627190425992, 0.0020707850344479084, -0.009863431565463543, -0.01643235795199871, -0.007231844123452902, -0.0031471913680434227, 0.00399090675637126, -0.007700575049966574, -0.008765263482928276, -0.0017677841242402792, 0.003222523257136345, -0.027347084134817123, 0.0026014549657702446, -0.009943786077201366, 0.014369942247867584, 0.011490597389638424, -0.02706584706902504, 0.01666002720594406, -0.007834497839212418, 0.0006390640046447515, -0.022083910182118416, -0.016566280275583267, 0.0024574878625571728, -0.005099119618535042, 0.013847642578184605, 0.02449452504515648, 0.008490720763802528, -0.004449592903256416, -0.022458894178271294, 0.013727111741900444, -0.01937866397202015, -0.012983839027583599, -0.017838548868894577, 0.007332286331802607, -0.007767536211758852, -0.014450295828282833, 0.006984086707234383, 0.002785599324852228, -0.02326243184506893, 0.01578952744603157, 0.020075064152479172, -0.013365519233047962, -0.004737527575343847, 0.019967924803495407, 0.0008939363178797066, 0.014289588667452335, -0.012093250639736652, 0.0001279592834180221, 0.022003555670380592, -0.006984086707234383, -0.005808911751955748, 0.02448113262653351, -0.010312073864042759, -0.001990431221202016, -0.014463688246905804, 0.017329640686511993, -0.020088456571102142, 0.03267722204327583, 0.019124209880828857, -0.021695531904697418, -0.025539124384522438, 0.014945811592042446, -0.011564254760742188, 0.012126731686294079, -0.012622246518731117, -6.581062189070508e-05, 0.01686091162264347, 0.01205307338386774, -0.013278469443321228, 0.004821229260414839, -0.001854834146797657, 0.008564378134906292, -0.025458769872784615, 0.008684908971190453, -0.014343157410621643, -0.01897689513862133, 0.015655603259801865, -0.011155789718031883, -0.021641964092850685, 0.021186625584959984, -0.023945439606904984, -0.004677262157201767, 0.0063379080966115, 0.011966023594141006, -0.0012622246285900474, -0.0016782231396064162, -0.01362666953355074, -0.0015786178410053253, 0.0014940788969397545, -0.011798620223999023, -0.013707023113965988, -0.017530526965856552, 0.008979540318250656, -0.012608854100108147, 0.001727607217617333, -0.00019220048852730542, -0.015427934005856514, 0.01663324236869812, 0.0072251479141414165, -0.014758319593966007, -0.022043732926249504, -0.005042202305048704, 0.006592361722141504, -0.0004352498799562454, -0.020155416801571846, 0.016753772273659706, 0.0038971605245023966, 0.023597240447998047, -0.003235915442928672, 0.013593188486993313, 0.015454718843102455, -0.014343157410621643, 0.020610755309462547, -0.007071136496961117, -0.01680734194815159, -0.0007549911388196051, -0.024976646527647972, -0.014182450249791145, -0.044837433844804764, -0.00474087567999959, -0.00798181351274252, -0.010579920373857021, -0.010787500999867916, -1.8427495888317935e-05, 0.0026935271453112364, -0.007285413332283497, -0.021802671253681183, -0.017128756269812584, 0.014035134576261044, 0.0061705042608082294, -0.022231224924325943, -0.02153482474386692, 0.015401150099933147, -0.00469400268048048, 0.008986235596239567, -0.005289960186928511, 0.01959294080734253, -0.011229447089135647, 0.012535196729004383, -0.024588270112872124, -0.007660397794097662, 0.014289588667452335, -0.006890340242534876, 0.01708858087658882, 0.002161183161661029, -0.007037655916064978, 0.008376886136829853, 0.0027186376973986626, 0.007693878840655088, 0.010191543027758598, 0.026503369212150574, -0.006197288632392883, -0.0031371472869068384, -0.03881089761853218, -0.0015392779605463147, 0.017758194357156754, -0.024159716442227364, -0.011416939087212086, 0.017209110781550407, -0.013057496398687363, -0.001873248489573598, 0.014490473084151745, 0.01596362702548504, -0.005879221484065056, -0.004024387337267399, 0.008376886136829853, 0.018668871372938156, -0.003970818128436804, 0.01724928803741932, 0.025271277874708176, 0.009046501480042934, -0.011597735807299614, 0.0011257905280217528, -0.01574935019016266, -0.0134391775354743, 0.02533823996782303, -0.009535320103168488, 0.007245236542075872, 0.017369817942380905, -0.015414541587233543, -0.00016196318028960377, 0.02469540946185589, 0.0023670897353440523, 0.016686810180544853, -0.010399124585092068, -0.013024015352129936, 4.213867578073405e-05, 0.0033363576512783766, 0.02557930164039135, -0.004185094963759184, -0.01917777955532074, 0.02578018605709076, 0.010820982046425343, -0.012896789237856865, 0.010948208160698414, 0.012675816193223, 0.02149464748799801, 0.007968421094119549, 0.00443285284563899, 0.015441326424479485, -0.004523250740021467, 0.0039641219191253185, 0.0033748606219887733, 0.006689455825835466, 0.0018263754900544882, -0.0008437151554971933, 0.0037799777928739786, -0.0030551194213330746, 0.023972224444150925, 0.015026165172457695, 0.00851750560104847, 0.00894605927169323, 0.0067798541858792305, 0.018642086535692215, -0.009073286317288876, 0.00017744803335517645, -0.002199685899540782, 0.012930269353091717, 0.023530278354883194, -0.005875873379409313, 0.019914356991648674, -0.01076741237193346, 0.013044103980064392, -0.010506263002753258, -0.011691481806337833, 0.027614930644631386, -0.003776629688218236, 0.030829083174467087, 0.0034100154880434275, -0.007426032796502113, -0.001599543378688395, -0.001099842949770391, 0.01704840362071991, 0.012387881055474281, -0.0038134586066007614, 0.005149340722709894, -0.004543339367955923, -0.014088704250752926, -0.010392428375780582, 0.029891623184084892, 0.0033129211515188217, -0.0008106529130600393, 0.004988633096218109, -0.012173604220151901, 0.02922200784087181, -0.00650531193241477, 0.006963998079299927, -0.001217025681398809, -0.008229570463299751, 0.001099842949770391, -0.005527673754841089, -0.015213657170534134, -0.002321890788152814, 0.0024307032581418753, 0.015602034516632557, 0.011631215922534466, -0.024159716442227364, -0.009890216402709484, 0.006029884796589613, -0.03342719003558159, -0.0002454558270983398, 0.0004352498799562454, -0.02213747799396515, -0.02324903942644596, 0.00338323088362813, 0.014383334666490555, 0.003207456786185503, -0.0067698098719120026, 0.02728012390434742, -0.007600132375955582, -7.73719439166598e-05, -0.028659529983997345, 0.025619477033615112, 0.0024357254151254892, -0.04288215935230255, -0.0078010172583162785, 0.00833001360297203, 0.0014614352257922292, 0.0026466541457921267, 0.007760840002447367, -0.029998760670423508, -0.004399371799081564, -0.02085181698203087, -0.008356797508895397, 0.004332410171627998, -0.015481503680348396, 0.0024792503099888563, -0.00480114109814167, 1.3784656403004192e-05, -0.014570826664566994, 0.015602034516632557, 0.006200636737048626, 0.006930517498403788, -0.015280619263648987, -0.004258752800524235, -0.032489728182554245, 0.00665932334959507, 0.0024909686762839556, -0.010593312792479992, 0.013271773234009743, 0.017409995198249817, 0.014436903409659863, 0.005855784751474857, 0.020610755309462547, -0.004747571889311075, -0.0030484232120215893, -0.004141570068895817, -0.012856611981987953, -0.010633489117026329, -0.0157761350274086, -0.03597172722220421, 0.013024015352129936, 0.011765139177441597, 0.006963998079299927, -0.009120158851146698, -0.0075130825862288475, 0.00015390687622129917, -0.027239946648478508, -0.0017075188225135207, -0.019566155970096588, -0.008149216882884502, 0.014517257921397686, 0.0037297566886991262, -0.013559708371758461, 0.014557434245944023, -0.0046370853669941425, 0.0011442049872130156, 0.0004662195860873908, 0.017423387616872787, -0.008162609301507473, -0.02086520940065384, 0.027132807299494743, -0.015374365262687206, 0.011249535717070103, -0.015843095257878304, 0.01919117197394371, 0.00854429043829441, 0.0012864982709288597, -0.025833753868937492, -0.0033932749647647142, -0.0033798827789723873, -0.025887323543429375, -0.02304815500974655, -0.007144794333726168, -0.02303476259112358, -0.03937337547540665, -0.007640309631824493, 0.0004745897895190865, 0.0035958336666226387, 0.004037779755890369, -0.002054044743999839, 0.006565576884895563, 0.01793229579925537, 0.012428058311343193, -0.013084281235933304, -0.008879097178578377, -0.009595585986971855, 0.005005373619496822, -0.002845864510163665, 0.009903608821332455, -0.010278593748807907, -0.01599041186273098, 0.024641839787364006, -0.00659905793145299, -0.00044278305722400546, -0.012381184846162796, -0.024146324023604393, -0.0005557805998250842, -0.008818832226097584, 0.013834250159561634, 0.003075207816436887, 0.006378084886819124, 0.007760840002447367, 0.0030551194213330746, -0.02150803990662098, 0.004128177650272846, -0.024802546948194504, 0.015267226845026016, 0.015896664932370186, 0.008256355300545692, 0.004580168053507805, -0.009321043267846107, -0.017128756269812584, 0.003980862442404032, 0.013713719323277473, 0.008477328345179558, -0.017530526965856552, 0.00010766156628960744, 0.007486298214644194, 0.00041432440048083663, 0.032489728182554245, 0.020999133586883545, 0.0006767298909835517, -0.005554458126425743, 0.008229570463299751, -0.008463935926556587, 0.006997479125857353, 0.004248708486557007, 0.007988509722054005, 0.027025669813156128, 0.005986359901726246, 0.012983839027583599, -0.010666970163583755, 0.009428181685507298, -0.028257761150598526, 0.02176249399781227, -0.00039653776912018657, 0.017999256029725075, 0.011644608341157436, -0.007164882495999336, 0.007908155210316181, -0.023128509521484375, -0.005454015918076038, 0.013914603739976883, 0.03859661892056465, -0.006830075290054083, 0.046819496899843216, -0.02666407823562622, 0.010526350699365139, -0.01702161878347397, 0.005266523454338312, 0.021896416321396828, -0.008885793387889862, 0.006578969303518534, 0.003528872039169073, -0.006923821289092302, 0.004550035111606121, 0.020289340987801552, 0.004064564127475023, -0.013432481326162815, 0.0032509819138795137, 0.012936965562403202, -0.015294011682271957, -0.01353292353451252, -0.003893812419846654, 0.00682672718539834, 0.012341008521616459, -0.007861282676458359, 0.005484148394316435, 0.008075559511780739, -3.355923035996966e-05, -0.0021829456090927124, -0.005484148394316435, -0.007251932751387358, -0.015709172934293747, 0.0062140291556715965, -0.01919117197394371, -0.019673295319080353, 0.009307651780545712, 0.006642582826316357, -0.011704874224960804, -0.043792832642793655, -0.016271648928523064, -0.017530526965856552, 0.03602529689669609, 0.014878849498927593, 0.017610879614949226, -0.005226346664130688, 0.0024892946239560843, 0.009776381775736809, -0.006692803930491209, -0.019258134067058563, -0.0012312550097703934, -0.011497292667627335, -0.006381432991474867, -0.0039105527102947235, -0.015227049589157104, -0.014450295828282833, -0.02640962414443493, -0.005581242963671684, 0.0030266607645899057, 0.01024511270225048, 0.008631340228021145, -0.007439424749463797, 0.010847765952348709, -0.012341008521616459, 0.02302137017250061, 0.006622494198381901, 0.005202909931540489, -0.006655975244939327, -0.014624396339058876, -0.00335309817455709, 0.007446120958775282, 0.006676063407212496, -0.008765263482928276, 0.026811392977833748, -0.0032292192336171865, -0.0010931468568742275, 0.023195471614599228, -0.017409995198249817, -0.01098168920725584, 0.007600132375955582, 0.020356303080916405, -0.0020858512725681067, 0.0026048030704259872, 0.0003885860787704587, 0.00017001948435790837, 0.007305501960217953, 0.01035225111991167, -0.018240317702293396, -0.0028743231669068336, -0.01055313553661108, -0.011738354340195656, 0.00031199882505461574, 0.012649031355977058, 0.014544041827321053, 0.030534453690052032, -0.014570826664566994, 0.0028358204290270805, -0.008062167093157768, 0.006649279035627842, -0.002015541773289442, 0.013820857740938663, -0.02919522300362587, -0.013887818902730942, 0.012682512402534485, 0.023128509521484375, -0.014624396339058876, 0.023061547428369522, 0.006424957886338234, 0.0051392968744039536, -0.005839044693857431, 0.022070517763495445, -0.009079982526600361, -0.025016823783516884, -0.012079858221113682, 0.004750919993966818, 0.009997354820370674, -0.004057867918163538, -0.0017309553222730756, -0.017610879614949226, 0.009247385896742344, 0.009441574104130268, -0.009187120944261551, 0.008008597418665886, 0.014169057831168175, -0.01829388737678528, 0.008463935926556587, -0.0191509947180748, 0.013017319142818451, -0.0013861034531146288, 0.0020356301683932543, 0.017101971432566643, 0.02023577131330967, 0.0031957386527210474, -0.005668292753398418, -0.004533295053988695, -0.005561154335737228, -4.9384121666662395e-05, -0.010841069743037224, -0.015575249679386616, -0.009776381775736809, 0.006495267618447542, 0.007030959706753492, -0.015427934005856514, -0.001222047721967101, -0.01829388737678528, 0.007847890257835388, 0.004228619858622551, -0.02047683298587799, 0.0028056877199560404, 0.012836523354053497, -0.0037565412931144238, 0.008738478645682335, 0.0015836399979889393, 0.004844665993005037, -0.003070185659453273, 0.018079610541462898, -0.007338982541114092, 0.01119596604257822, 0.008711693808436394, -0.002571322489529848, -0.031605836004018784, 0.002045674482360482, -0.002054044743999839, 0.003070185659453273, 0.03310577571392059, 0.0023637416306883097, -0.012936965562403202, -0.0008378560305573046, 0.01830727979540825, 6.19394049863331e-05, 0.001043762662447989, 0.0015426260652020574, -0.014584219083189964, -0.013807465322315693, -0.015052950009703636, -0.013887818902730942, 0.007606828585267067, -0.005608027335256338, 0.004663869738578796, -0.00037038090522401035, -0.0015903360908851027, -0.018588518723845482, -0.015521680004894733, -0.006441698409616947, 0.0200616717338562, 0.001671526930294931, 0.021682139486074448, -0.0008114899392239749, 0.003569049062207341, -0.013780680485069752, -0.01794568821787834, 0.02089199423789978, 0.04456958919763565, -0.000808978860732168, 0.008035382255911827, 0.018414417281746864, 0.017825156450271606, 0.007312198169529438, -0.019124209880828857, 0.015052950009703636, -0.013298558071255684, 0.0024223329965025187, -0.013003927655518055, -0.0016120986547321081, 0.015468111261725426, 0.005792171694338322, -0.012059769593179226, -0.012876700609922409, -0.005152688827365637, -0.014704749919474125, 0.006103542633354664, 0.01790551096200943, -0.01986078731715679, -0.019338486716151237, 0.01643235795199871, -0.0004352498799562454, -0.006963998079299927, 0.024039186537265778, -0.005494192708283663, -0.007372463587671518, -0.0025244492571800947, -0.03176654502749443, 0.012407969683408737, -0.02322225458920002, 0.022458894178271294, 0.005671640858054161, -0.006796594243496656, -0.0065019638277590275, 0.002370437839999795, 0.008658125065267086, 0.012762865982949734, -0.012669119983911514, -0.011986112222075462, -0.009086678735911846, -0.005725210066884756, -0.011818707920610905, 0.02276691608130932, 0.008691605180501938, -0.013164634816348553, -0.013941388577222824, -0.03023982234299183, -0.006404869258403778, 0.025673046708106995, -0.003615922061726451, -0.005748646333813667, 0.025525731965899467, 0.017316250130534172, 0.004781052470207214, 0.025418592616915703, 0.0034200595691800117, -0.007854586467146873, 0.0044228085316717625, 0.018253710120916367, 0.02833811566233635, -0.014704749919474125, 0.006100194528698921, 0.021682139486074448, 0.0032677222043275833, 0.006418261677026749, -0.006645930930972099, 0.003806762397289276, 0.005243087187409401, 0.006726284511387348, -0.01936527155339718, 0.018896540626883507, -0.01640557311475277, -0.0009826603345572948, 0.006220725364983082, 0.007111313287168741, -0.013874427415430546, 0.011115612462162971, -0.0005888429004698992, 0.0013074236921966076, 0.0034786509349942207, -0.015133303590118885, 0.006013144738972187, -0.010733931325376034, 0.009401397779583931, 0.0012044704053550959, 0.01203968096524477, -0.003692927770316601, 0.02732030116021633, 0.011530773714184761, -0.01814657263457775, -0.022914232686161995, 0.007861282676458359, 0.021052701398730278, -0.0010429256362840533, 0.010399124585092068, 0.012561981566250324, 0.012910180725157261, -0.003840243211016059, 0.0003871212829835713, 0.005313396453857422, -0.020972348749637604, 0.0039741662330925465, 0.0041348738595843315, 0.0018782706465572119, 0.013526227325201035, -0.013901211321353912, -0.0016196317737922072, -0.01128971204161644, -0.004831273574382067, 0.002502686809748411, 0.022418716922402382, 0.005330136977136135, 0.006475178990513086, 0.002904455875977874, -0.010492870584130287, 0.0022499070037156343, -0.011899062432348728, 0.007452817168086767, 0.002526123309507966, 0.03685561940073967, 0.005701773334294558, -0.0010948209092020988, -0.013097673654556274, -0.004456289112567902, -0.04175720363855362, -0.0173028577119112, 0.014249411411583424, -0.002901107771322131, -0.004201835487037897, -0.006652627140283585, -0.02831133082509041, 0.020945563912391663, 0.010586616583168507, 0.009622370824217796, 0.013479353860020638, 0.007700575049966574, 0.013901211321353912, 0.011175877414643764, 0.004319018218666315, 0.0023436532355844975, 0.008591162972152233, -0.025190923362970352, -0.0008273932617157698, -0.013633365742862225, 0.016901087015867233, 0.011102220043540001, -0.0043257144279778, -0.00030509341740980744, 0.011852188967168331, 0.00925408210605383, -0.008678212761878967, -0.02515074796974659, 0.0030902742873877287, 0.019941139966249466, 0.015240442007780075, 0.013927996158599854, 0.019284917041659355, -0.00516942935064435, -0.00394403375685215, -0.02326243184506893, -0.02000810205936432, 0.020624147728085518, -0.005182821769267321, -0.022043732926249504, -0.0044127642177045345, -0.0016706899041309953, 0.003763237502425909, -0.015468111261725426, 0.0038770721293985844, 0.009829951450228691, 0.00037205495755188167, -0.02173570916056633, -0.007218451704829931, -0.00415831059217453, -0.0011952631175518036, -0.0050857276655733585, 0.0008432966424152255, -0.0234365314245224, -0.021173233166337013, -0.0023336089216172695, 0.005701773334294558, 0.007211755961179733, -0.0033112470991909504, -0.003743149107322097, -0.012314223684370518, -0.007492993958294392, 0.015722565352916718, 0.012233870103955269, -0.02598107047379017, 0.008296532556414604, -0.0234365314245224, 0.0032208492048084736, -0.01751713454723358, -0.003954077605158091, -0.020142026245594025, -0.02257942408323288, 0.0025395157281309366, -0.002862605033442378, -0.005698425229638815, 0.002921196399256587, 0.0007298805867321789, 0.025699831545352936, 0.003301203018054366, -0.0003919341543223709, -0.008095648139715195, 0.011885670013725758, -0.011604431085288525, 0.008678212761878967, 0.00948175135999918, 0.0030785559210926294, -0.0016095875762403011, -0.00199545337818563, 0.01637878827750683, 0.0013450895203277469, 0.011711569502949715, -0.001138345804065466, -0.0040712603367865086, 0.00958888977766037, -0.00341336359269917, -0.0030434010550379753, 0.01078080479055643, -0.024963254109025, 0.04041797295212746, -0.0024039186537265778, -0.02304815500974655, -0.005159385036677122, -0.04689984768629074, -0.02027594856917858, 0.013445873744785786, -0.01687430404126644, 0.017624272033572197, -0.0185349490493536, 0.030748730525374413, -0.0025160792283713818, 0.006287686992436647, -0.0012446473119780421, 0.02432042360305786, -0.002613173332065344, 0.009153639897704124, 0.006890340242534876, 0.0010471107671037316, 0.009595585986971855, 0.012856611981987953, -0.009689331986010075, -0.006458438467234373, -0.0007491320138797164, 0.008028686046600342, -0.025927500799298286, -0.0052631753496825695, 0.009963874705135822, -0.0005771245923824608, 0.011885670013725758, 0.012729384936392307, -0.005494192708283663, -0.017543917521834373, 0.013559708371758461, -0.014945811592042446, 0.01767784170806408, -0.01936527155339718, -0.027373868972063065, -0.01620468869805336, -0.003120406763628125, 0.004898235201835632, -0.0028542347718030214, 0.0058591328561306, -0.0034351260401308537, 0.00854429043829441, 0.007961724884808064, 0.00431232200935483, -0.0008244637283496559, -0.030989792197942734, -0.005772083066403866, 6.795547960791737e-05, -0.005731906276196241, 0.009086678735911846, -0.022271402180194855, -0.005517629440873861, -0.025659654289484024, -0.009488447569310665, -0.0006926332134753466, 0.013459265232086182, 0.0012672467855736613, -0.013553012162446976, 0.004382631741464138, 0.006257554050534964, -0.008383582346141338, 0.017651056870818138, -0.009903608821332455, -0.012662423774600029, -0.0021243542432785034, -0.007285413332283497, -0.011952631175518036, 0.016512710601091385, -0.0019435581052675843, 0.028391685336828232, 0.0020423263777047396, -0.013017319142818451, -0.04668557271361351, 0.007030959706753492, 0.013486050069332123, 0.011591039597988129, 0.015896664932370186, -0.0036427066661417484, -0.014878849498927593, 0.015427934005856514, 0.01053974311798811, 0.027454223483800888, 0.02237853966653347, 0.001150901080109179, -0.011852188967168331, 0.010506263002753258, -0.008242962881922722, 0.007506386376917362, -0.012555285356938839, -0.02000810205936432, -0.001645579352043569, -0.004717438947409391, -0.02386508509516716, 0.008142520673573017, 0.00928086694329977, 0.016552887856960297, -0.0015493221580982208, 0.013358823023736477], "655c55fe-0cc5-482b-9854-4c0d26faa928": [-0.03754749521613121, 0.01836397312581539, 0.0030903834849596024, 0.0048110573552548885, -0.04398247227072716, -0.03909553214907646, 0.031507112085819244, 0.014729119837284088, -0.0037353988736867905, 0.018288088962435722, 0.029018111526966095, 0.030126020312309265, 0.0004998870426788926, -0.025011427700519562, -0.0341782383620739, -0.010540313087403774, -0.02306879125535488, 0.028471745550632477, 0.0024472649674862623, -0.027955733239650726, 0.07976945489645004, -0.011147386394441128, -0.04240408167243004, 0.017559600993990898, -0.009356520138680935, -0.009402050636708736, -0.02381245605647564, 0.005217037629336119, -0.01910763792693615, -0.01557143498212099, 0.015002302825450897, 0.005509191658347845, 0.034087177366018295, -0.005137359257787466, -0.007808482740074396, -0.04668394848704338, -0.04528767988085747, 0.007922308519482613, -0.0004263742594048381, -0.011648221872746944, 0.005786168854683638, 0.0035817334428429604, 0.02681747078895569, 0.005869641434401274, -0.02105027250945568, 0.006928225979208946, -0.016132976859807968, -0.00899986457079649, -0.0010073625016957521, 0.001111703342758119, -0.012194588780403137, -0.007702244911342859, -0.01866750977933407, 0.007592212408781052, 0.027151361107826233, -0.042313020676374435, 0.028107501566410065, 0.07885884493589401, -0.023675864562392235, -0.03235701471567154, -0.0016115903854370117, -0.019851302728056908, 0.023402681574225426, 0.002898775739595294, -0.0017311079427599907, -0.004655494820326567, -0.013264555484056473, 0.032296307384967804, -0.013530150055885315, 0.02951894700527191, 0.025770269334316254, 0.03979366645216942, -0.048171281814575195, 0.02492036670446396, 6.061842213966884e-05, 0.01878892444074154, 0.017347125336527824, 0.006214914843440056, 0.030004605650901794, 0.0048186457715928555, -0.012991372495889664, -0.02223406545817852, 0.04146311804652214, 0.007732598576694727, 0.04771597683429718, -0.007501151412725449, -0.05081205070018768, -0.037213604897260666, -0.05017462372779846, -0.03363186866044998, 0.0251631960272789, 0.027667373418807983, -0.013772979378700256, -0.007869189605116844, 0.0043481639586389065, -0.008764623664319515, 0.009166809730231762, -0.004674465861171484, 0.016330275684595108, -0.008992276154458523, 0.014539409428834915, -0.0009428609628230333, -0.05973602831363678, -0.005429513286799192, -0.001393423299305141, -0.03763855621218681, 0.00407498050481081, 0.014827769249677658, 0.00023713806876912713, -0.008696327917277813, 0.023235736414790154, -0.028304800391197205, -0.02769772708415985, 0.018181851133704185, 0.004924883600324392, -0.00040242332033813, -0.03144640475511551, 0.0042988392524421215, 0.004602375905960798, -0.03348010033369064, 0.02666570246219635, -0.021854644641280174, 0.025026604533195496, -0.007922308519482613, -0.006719544529914856, 0.03311585634946823, 0.0071862321346998215, 0.029488593339920044, 0.014228284358978271, 0.023888342082500458, 0.014622882008552551, -0.05551686882972717, 0.01060102041810751, 0.03745643422007561, 0.01839432679116726, 0.024935543537139893, 0.02306879125535488, 0.06434978544712067, 0.0005534802912734449, 0.03505849465727806, -0.05715596675872803, -0.05891647934913635, -0.028137855231761932, 0.023949049413204193, -0.0010472016874700785, 0.008749446831643581, -0.02196088247001171, -0.0018013007938861847, -0.024161525070667267, 0.03193206340074539, -0.04911224544048309, -0.025982744991779327, -0.005023533012717962, 0.003961154259741306, 0.0412202887237072, -0.031901709735393524, -0.0021038888953626156, 0.052754685282707214, -0.030414380133152008, 0.022051943466067314, 0.011283977888524532, -0.06398554146289825, 0.00959176104515791, -0.00564578315243125, 0.03302479535341263, 0.018409503623843193, 0.03502814099192619, 0.01883445493876934, -0.03639405593276024, 0.009045395068824291, 0.014751885086297989, -0.029776953160762787, 0.01898622326552868, -0.0281682088971138, -0.00022504403023049235, -0.02674158662557602, 0.05269397795200348, 0.018621979281306267, -0.0010927323019132018, -0.0025383259635418653, -0.008309317752718925, 0.0003896178677678108, 0.00763394869863987, -0.03351045399904251, -0.030368849635124207, 0.00013516870967578143, 0.022203711792826653, 0.007550476118922234, 0.019927186891436577, 0.026180043816566467, -0.009531053714454174, -0.032023124396800995, 0.028061971068382263, 0.018864808604121208, 0.019456705078482628, -0.04780703783035278, 0.005676136817783117, 0.016482044011354446, -0.008036134764552116, 0.01716500334441662, -0.005509191658347845, -0.04483237490057945, -0.0006345814908854663, 0.05138877034187317, -0.011375038884580135, 0.04592510685324669, -0.01895586960017681, -0.011769636534154415, -0.0004754618275910616, 0.030201904475688934, 0.010198834352195263, -0.012809250503778458, 0.023508919402956963, -0.006613306701183319, -0.006685396656394005, 0.022218888625502586, -0.04267726466059685, -0.007406296208500862, -0.020124485716223717, -0.007983015850186348, -0.015950854867696762, -0.00824861042201519, 0.005122182425111532, -0.028031617403030396, -0.024222232401371002, -0.019365644082427025, -0.033965758979320526, 0.004940060433000326, 0.010373367927968502, -0.002547811483964324, 0.04604652151465416, -0.028350330889225006, 0.028304800391197205, -0.04222195968031883, -0.03235701471567154, 0.00033151902607642114, 0.02100474201142788, -0.009568995796144009, -0.008757035247981548, -0.03375328332185745, 0.03129463642835617, 0.014888476580381393, -0.015161659568548203, -0.006488097831606865, 0.007542887702584267, 0.021945705637335777, -0.04003649577498436, 0.03806350752711296, 0.03348010033369064, 0.03639405593276024, 0.01532860565930605, -0.011283977888524532, -0.007171055302023888, 0.019487058743834496, -0.02203676663339138, -0.001372555154375732, 0.01930493675172329, -0.0206556748598814, 0.001427571172825992, -0.016117800027132034, -0.027940556406974792, -0.014562174677848816, -0.023205382749438286, 0.014789827167987823, 0.031901709735393524, -0.023508919402956963, 0.02489001303911209, -0.02306879125535488, 0.021626992151141167, 0.06932779401540756, 0.006108677014708519, 0.012035232037305832, 0.028623513877391815, -0.0019919597543776035, 0.008559736423194408, -0.02250724844634533, -0.006791634485125542, 0.035392384976148605, -0.03232666105031967, -0.006913049146533012, 0.0018923617899417877, -0.03490672633051872, 0.03147675842046738, 0.03129463642835617, 0.0001332716055912897, 0.02848692238330841, -0.0027489045169204473, -0.002490898361429572, -0.011200505308806896, -0.020625321194529533, -0.0038662992883473635, -0.017893491312861443, -0.01557143498212099, 0.021535931155085564, -0.01123844739049673, 0.005786168854683638, 0.003190930001437664, -0.03575662896037102, -0.027545958757400513, 0.014030985534191132, 0.004606170114129782, -0.03517990931868553, -0.014736708253622055, -0.008673562668263912, 0.048444464802742004, -0.008165137842297554, 0.03247842937707901, 0.00446199020370841, 0.016011562198400497, 0.015616965480148792, 0.04040073975920677, -0.011868285946547985, 0.020473552867770195, -0.04759455844759941, -0.03451212868094444, 0.01903175376355648, -0.03988472744822502, 0.020033424720168114, -0.03797244653105736, -0.02757631242275238, -0.005482632201164961, 0.017969375476241112, -0.04577333852648735, 0.01617850735783577, 0.014584939926862717, -0.02560332417488098, 0.023918695747852325, 0.0035191290080547333, 0.0068978723138570786, -0.031355343759059906, -0.0022139211650937796, -0.03045991063117981, -0.04340575262904167, 0.02227959595620632, -0.0019767829217016697, -0.04449848458170891, -0.068538598716259, -0.051297709345817566, 0.030126020312309265, -0.02006377838551998, -0.020200369879603386, 0.022492071613669395, -0.009561407379806042, -0.037092190235853195, -0.007015492767095566, -0.003655720502138138, 0.01585979387164116, -0.008483851328492165, -0.012619540095329285, 0.013150729238986969, 0.0009034960530698299, 0.0001529540604678914, 0.019274583086371422, 0.0016751433722674847, -0.013628799468278885, 0.027075476944446564, -0.014372464269399643, -0.0004956185584887862, 0.009857355616986752, -0.005289127584546804, -0.02797091007232666, -0.04173630103468895, -0.007159672677516937, 0.007061023265123367, 0.004188806749880314, 0.002352409763261676, 0.03791173920035362, 0.01856127195060253, 0.0063932426273822784, 0.027196891605854034, -0.0035229232162237167, 0.024632006883621216, -0.011777224950492382, -0.0019578118808567524, 7.303852908080444e-05, -0.03478531166911125, 0.029291294515132904, 0.033722929656505585, -0.000685803301166743, 0.0011088576866313815, 0.010373367927968502, -0.01689181849360466, -0.07048123329877853, 0.01091973390430212, 0.05594182014465332, -0.0023694837000221014, 0.0008755137678235769, 0.007664302829653025, 0.0025003838818520308, -0.01198970153927803, -0.032023124396800995, 0.032539136707782745, -0.00862803217023611, -0.01585979387164116, 0.01748371683061123, -0.011223270557820797, -0.005410542245954275, 0.0005563259474001825, 0.01617850735783577, -0.0003898550057783723, -0.024540945887565613, 0.005524368491023779, 0.03517990931868553, 0.0011790505377575755, 0.04601616784930229, -0.023250913247466087, 0.015495550818741322, -0.01649722084403038, 0.018530918285250664, 0.03612087294459343, -0.01386404037475586, 0.0025876506697386503, 0.04015791043639183, 0.035544153302907944, 0.033328332006931305, 0.004742761608213186, 0.01629992201924324, 0.034876372665166855, -0.013917159289121628, -0.005198066588491201, 0.015222366899251938, 0.018303265795111656, -0.006453949958086014, 0.026407696306705475, -0.03533167764544487, 0.020200369879603386, -0.01696770265698433, 0.03672794625163078, -0.006818193942308426, -0.018500564619898796, 0.021824290975928307, 0.0432843379676342, 0.00714070163667202, -0.009257870726287365, 0.010836261324584484, -0.0006179818301461637, 0.005824110936373472, -0.030353672802448273, 0.013803333044052124, -0.019365644082427025, -0.010843849740922451, 0.04820163547992706, 0.011246035806834698, -0.0016343556344509125, -0.000875039491802454, -0.03263019770383835, -0.026893354952335358, 0.004833822604268789, 0.02029143087565899, 0.00919716339558363, -0.008210668340325356, 0.032144539058208466, 0.01060102041810751, -0.014592528343200684, -0.01425863802433014, -0.023083968088030815, 0.002401734469458461, 0.001982474233955145, -0.02215818129479885, -0.013613622635602951, -0.04006684944033623, 0.0037581641227006912, 0.02772808074951172, 0.006803017109632492, 0.013879217207431793, -0.04434671625494957, -0.02425258606672287, 0.016011562198400497, 0.0008513256907463074, 0.021733229979872704, 0.0033408012241125107, 0.039308007806539536, -0.023751748725771904, 0.025451555848121643, -0.037881385535001755, -0.007330412045121193, -0.02275007776916027, 0.01297619566321373, 0.0077212159521877766, -0.0022196124773472548, -0.013552915304899216, -0.01696770265698433, -0.03502814099192619, 0.009265459142625332, 0.003695559687912464, 0.00128813402261585, -0.023311620578169823, -0.013241790235042572, 0.009333754889667034, 0.004924883600324392, 0.009083337150514126, 0.010077419690787792, -0.002891187323257327, -0.01768101565539837, -0.021217217668890953, -0.00046811054926365614, 0.0005975879612378776, -0.03235701471567154, 0.01013053860515356, -0.018971046432852745, 0.06635312736034393, 0.0033787433058023453, -0.006928225979208946, 0.006268033757805824, 0.004492343869060278, 0.030717918649315834, -0.00047783320769667625, 0.0002888341841753572, 0.026680879294872284, 0.01329490914940834, 0.0014617190463468432, -0.01986647956073284, -0.0342692993581295, -0.01151163037866354, -0.0029575859662145376, 0.0032649170607328415, -0.028896696865558624, -0.004401282873004675, 0.021930528804659843, -0.010904557071626186, -0.00454925699159503, -0.03153746575117111, -0.014630470424890518, 0.008005781099200249, 0.01299896091222763, 0.00951587688177824, -0.04665359482169151, -0.012551244348287582, 0.016527574509382248, -0.024556122720241547, -0.018030082806944847, 0.004052215255796909, -0.013780567795038223, 0.01875857077538967, 0.007743981201201677, -0.0001226003805641085, -0.019046930596232414, 0.005277744960039854, 0.03833669051527977, -0.002065946813672781, -0.025451555848121643, 0.046896424144506454, -0.00010262150317430496, -0.023402681574225426, -0.005581281613558531, 0.035938750952482224, -0.006503274664282799, 0.0483534038066864, -0.02006377838551998, 0.007565652951598167, -0.0176506619900465, -0.001813631970435381, -0.024829305708408356, -0.015556258149445057, 0.016148153692483902, -0.019487058743834496, 0.009402050636708736, 0.01625439152121544, -0.02449541538953781, -0.025982744991779327, 0.0023144676815718412, 0.02068602852523327, -0.002562988316640258, 0.012589186429977417, 0.009485523216426373, -0.012528479099273682, -0.03184100240468979, 0.0226741936057806, -0.03706183657050133, 0.010396133176982403, 0.027879849076271057, -0.005217037629336119, 0.053270697593688965, 0.021611815318465233, -0.009971181862056255, 0.02290184609591961, -0.005687519442290068, -0.01349220797419548, -0.0070306695997715, -0.02314467541873455, 0.027045123279094696, -0.03882234916090965, 0.025891683995723724, -0.020913681015372276, -0.025269433856010437, 0.0261952206492424, -0.03181064873933792, -0.023721395060420036, -0.008954334072768688, 0.004848999436944723, 0.0008859478402882814, 0.04249514266848564, 0.012141469866037369, 0.025648854672908783, -0.01430416852235794, 0.02139933966100216, -0.023706218227744102, -0.01170892920345068, 0.011936582624912262, 0.017984552308917046, 0.008772212080657482, 0.0011145489988848567, 0.010980441235005856, -0.019654003903269768, -0.012513302266597748, -0.015503139235079288, 0.005285333376377821, 0.011230858974158764, -0.008552148006856441, -0.002940512029454112, -0.002394146053120494, -0.023584803566336632, 0.026119336485862732, -0.011283977888524532, 0.0030391616746783257, -0.00495523726567626, 0.02378210239112377, 0.019957540556788445, 0.02278043143451214, -0.014395229518413544, -0.005399159621447325, -0.03244807571172714, 0.043618228286504745, -0.04750349745154381, 0.06152689829468727, 0.0017443876713514328, 0.009576584212481976, -0.007315235212445259, 0.012983784079551697, 0.03097592480480671, 0.002820994472131133, -0.031112516298890114, 0.006317358464002609, -0.03165888041257858, 0.021262748166918755, -0.004033244214951992, -0.003703148104250431, 0.004989385139197111, -0.013651564717292786, 0.010828672908246517, 0.028623513877391815, -0.009288224391639233, -0.007869189605116844, 0.01542725507169962, -0.000391752109862864, -0.0013071050634607673, 0.0009689462021924555, -0.008332083001732826, 0.020367315039038658, -0.023402681574225426, -0.02029143087565899, 0.0027545958291739225, -0.008066488429903984, 0.00771362753584981, 0.006609512493014336, -0.020746735855937004, 0.008005781099200249, 0.021778760477900505, 0.01196693629026413, 0.00824861042201519, 0.027348659932613373, -0.009273047558963299, 0.0040787747129797935, 0.03517990931868553, 0.012270472943782806, 0.00858250167220831, 0.0312642827630043, 0.022917022928595543, 0.033965758979320526, 0.01989683322608471, 0.0022898053284734488, -0.021308278664946556, -0.0029898369684815407, -0.01768101565539837, 0.011003206484019756, 0.015692848712205887, -0.023584803566336632, 0.006457744166254997, 0.007019286975264549, -0.017969375476241112, -0.04067392274737358, -0.029564477503299713, -0.04249514266848564, -0.008362436667084694, 0.015025068074464798, -0.009978770278394222, -0.01915316842496395, 0.017984552308917046, -0.009781471453607082, -0.028972581028938293, 0.007816070690751076, 0.021095803007483482, 0.010176069103181362, 0.025269433856010437, 0.007914720103144646, -0.008195491507649422, 0.0003056709829252213, -0.03766890987753868, 0.016922172158956528, 0.0017472333274781704, -0.04106852039694786, -0.004222954623401165, 0.03575662896037102, -0.038275983184576035, 0.052876099944114685, 0.025011427700519562, -0.02152075432240963, 0.007011698558926582, 0.013606034219264984, 0.0014342110371217132, -0.00715208426117897, 0.004056009463965893, 0.011010794900357723, 0.006036587059497833, -0.005539545323699713, -0.025299787521362305, 0.0025212520267814398, 0.007876778021454811, -0.011132209561765194, 0.025056958198547363, 0.029640361666679382, 0.030050136148929596, -0.010373367927968502, -0.0236606877297163, -0.026756763458251953, 0.004040832631289959, -0.012869957834482193, -0.009242693893611431, -0.007793305907398462, 0.012475360184907913, 0.020033424720168114, -0.015366547740995884, 0.002358101075515151, 0.0070534348487854, -0.008559736423194408, -0.01824255846440792, -0.004097745753824711, -0.011815167032182217, 0.02092885784804821, -0.001196124474518001, 0.01994236372411251, -0.03290338069200516, 0.032539136707782745, -0.011010794900357723, -0.00237896922044456, 0.00544848432764411, 0.01713464967906475, -0.03706183657050133, -0.016360629349946976, 0.0008252405095845461, 0.030611678957939148, -0.015510727651417255, 0.04125064238905907, 0.007922308519482613, 0.022067120298743248, 0.003612087108194828, 0.02270454727113247, 0.008256198838353157, -0.00880256574600935, 0.0020963004790246487, -0.01677040383219719, -0.00018117348372470587, -0.01060102041810751, -0.010282306931912899, 0.0176051314920187, -0.02275007776916027, -0.0186371561139822, -0.008696327917277813, 0.04795880615711212, 0.005824110936373472, 0.03536203131079674, 0.0331462100148201, 0.021065449342131615, 0.04040073975920677, -0.010289895348250866, 0.0013497899053618312, 0.007360765710473061, 0.006867518648505211, -0.031082162633538246, -0.006070734933018684, -0.021945705637335777, -0.05739879608154297, 0.025922037661075592, -0.03751714155077934, -0.0032876823097467422, -0.0046706716530025005, 0.03311585634946823, 0.003367360681295395, -0.038124214857816696, 0.01768101565539837, -0.014349699020385742, -0.0013905776431784034, -0.023326797410845757, -0.013894394040107727, -0.0113370968028903, -0.022689370438456535, 0.029185056686401367, -0.003883373225107789, 0.0033066533505916595, 0.025724738836288452, 0.0018563168123364449, -0.01831844262778759, 0.04325398430228233, 0.01819702796638012, -0.007561858743429184, 0.0014882785035297275, -0.011200505308806896, -0.029852837324142456, 0.01713464967906475, -0.019608473405241966, -0.0005563259474001825, 0.013211436569690704, -0.013029314577579498, 0.02844139188528061, -0.008499028161168098, 0.005148741882294416, -0.013408735394477844, 0.003486878238618374, 0.04847481846809387, -0.010760377161204815, -0.0034906724467873573, 0.012179411947727203, -0.017514070495963097, 0.016542751342058182, -0.017316771671175957, 0.03387469798326492, 0.02218853496015072, -0.02247689478099346, 0.022719724103808403, 0.008521794341504574, 0.015055421739816666, 0.009204751811921597, -0.008089253678917885, 0.024586476385593414, -0.008984687738120556, -0.006070734933018684, -0.00407498050481081, 0.019168345257639885, -0.034997787326574326, 0.022567955777049065, 0.011344685219228268, -0.03809386119246483, -0.025330141186714172, 0.012209765613079071, -0.014220695942640305, 0.020822620019316673, 0.01327214390039444, 0.0003974434221163392, 0.017392655834555626, 0.07169537991285324, 0.012232530862092972, -0.030095666646957397, -0.02548190951347351, 0.009827001951634884, -0.03058132529258728, 0.034997787326574326, -0.01664898917078972, 0.014926418662071228, -0.024540945887565613, 0.017863137647509575, 0.035149555653333664, -0.012126293033361435, -0.022932199761271477, 0.009697998873889446, -0.02235548011958599, -0.030201904475688934, -0.011162563227117062, 0.01216423511505127, 0.006643660366535187, 0.005167712923139334, -0.0023770721163600683, -0.01669451966881752, 0.0060555581003427505, 0.0113370968028903, 0.0032212836667895317, 0.0073190294206142426, -0.029928721487522125, 0.03223560005426407, -0.028623513877391815, -0.01280166208744049, -0.010950087569653988, 0.02092885784804821, 0.014767061918973923, 0.04656253382563591, -0.046623241156339645, 0.009166809730231762, 0.005122182425111532, -0.02373657189309597, -0.012498125433921814, -0.025588147342205048, -0.013302497565746307, -0.0037145307287573814, -0.033601514995098114, -0.03848845884203911, -0.032417722046375275, 0.00822584517300129, 0.018227381631731987, -0.004905912559479475, 0.0014180856524035335, 0.023433035239577293, -0.009697998873889446, -0.03733501955866814, -0.036181580275297165, -0.01871304027736187, 0.038275983184576035, -0.02378210239112377, 0.001532860565930605, -0.02681747078895569, 0.013332851231098175, 0.04146311804652214, 0.041280996054410934, 0.03105180896818638, -0.007823659107089043, 0.019654003903269768, 0.05700419843196869, -0.007117936387658119, 0.010221599601209164, -0.00357035081833601, -0.011837932281196117, -0.017104296013712883, -0.0013621210819110274, 0.004446813371032476, 0.04556086286902428, 0.030004605650901794, -0.005125976633280516, -0.004359546583145857, -0.019487058743834496, -0.00981182511895895, -0.003980125300586224, 0.04058286175131798, -0.029701068997383118, 0.0014247255166992545, 0.017028411850333214, -0.005292921792715788, 0.01645169034600258, -0.01787831448018551, 0.0002473350032232702, -0.0015300149098038673, -0.01804525963962078, -0.01784796081483364, -0.006639866158366203, -0.015890147536993027, 0.024465061724185944, -0.012885134667158127, -0.008757035247981548, -0.02033696137368679, -0.0065336283296346664, 0.017119472846388817, -0.015032656490802765, 0.012095939368009567, 0.04316292330622673, 0.0452573262155056, -0.022917022928595543, 0.019168345257639885, -0.0043481639586389065, 0.014729119837284088, 0.011329508386552334, 0.0023125705774873495, -0.007121730595827103, -0.002932923613116145, -0.0014190342044457793, -0.019274583086371422, -0.0160570926964283, 0.0009025475010275841, -0.015935678035020828, -0.0013478928012773395, -0.042859386652708054, -0.0025003838818520308, 0.008794977329671383, -0.02112615667283535, -0.010062242858111858, 0.009804236702620983, 0.024465061724185944, 0.03284267336130142, 0.0018942588940262794, -0.009303401224315166, -0.011853109113872051, 0.005452278535813093, -0.021657345816493034, -0.0067574866116046906, 0.019289759919047356, -0.008278964087367058, -0.0035172319039702415, 0.005258773919194937, 0.008134784176945686, 0.022006412968039513, -0.0033787433058023453, 0.007300058379769325, -0.007288675755262375, -0.006002439185976982, 0.012422241270542145, -0.02346338890492916, -0.0015651113353669643, -0.0072355568408966064, -0.0016134874895215034, -0.03159817308187485, -0.010069831274449825, -0.025739915668964386, 0.009447581134736538, -0.02654428780078888, 0.012293238192796707, -0.012391887605190277, 0.004663083236664534, 0.00712931901216507, 0.02666570246219635, -0.0185916256159544, 0.004014273174107075, -0.0035267174243927, 0.02255277894437313, 0.022082297131419182, -0.007019286975264549, -0.02183946780860424, 0.018257735297083855, -0.011177740059792995, 0.005759609397500753, 0.01072243507951498, -0.013522561639547348, -0.035908397287130356, -0.0037069423124194145, 0.014827769249677658, -0.005729255732148886, -0.029959075152873993, 0.003185238689184189, -0.023584803566336632, -0.0018857219256460667, 0.0025364288594573736, 0.024632006883621216, 0.0012976195430383086, 0.0077288043685257435, 0.020185193046927452, -0.007288675755262375, -0.008886038325726986, 0.024024933576583862, -0.02080744318664074, 0.013818509876728058, -0.029701068997383118, 0.019729888066649437, -0.09142526239156723, -0.02753078192472458, -0.0061959438025951385, 0.03196241706609726, -0.010267130099236965, -0.02627110481262207, 0.030566148459911346, 0.01141298096626997, -0.012566421180963516, -0.003942183218896389, -0.0052322144620120525, -0.029488593339920044, 0.012323591858148575, 0.021338632330298424, -0.013757802546024323, -0.004518903326243162, -0.009500700049102306, -0.0033483896404504776, -0.0004263742594048381, -0.006332535296678543, -0.027121007442474365, -0.04079533740878105, 0.03569592162966728, -0.004575816448777914, -0.0034318622201681137, 0.04656253382563591, -0.011701340787112713, 0.015123717486858368, -0.02176358364522457, -0.0008702967315912247, 0.015442431904375553, 0.004112922586500645, -0.0020355931483209133, -0.02001824788749218, 0.02856280654668808, -0.006643660366535187, 0.01721053384244442, 0.0020336960442364216, 0.012323591858148575, 0.004097745753824711, 0.0065753646194934845, 0.008863273076713085, -0.007838835939764977, -0.001119291759096086, 0.004370929207652807, -0.006503274664282799, 0.004503726493567228, -0.000797732500359416, 0.017559600993990898, 0.012589186429977417, -0.003689868375658989, -0.006791634485125542, 0.00772501016035676, -0.03278196603059769, -0.0027697726618498564, 0.020170016214251518, 0.002953791758045554, -0.019016576930880547, -0.0068143997341394424, 0.004382311832159758, 0.02575509250164032, 0.005550927948206663, 0.019851302728056908, 0.014934007078409195, -0.010069831274449825, 0.01246018335223198, 0.005937937181442976, 0.01637580618262291, 0.013901982456445694, 0.013484619557857513, 0.001862956676632166, -0.0018155290745198727, 0.0031510908156633377, 0.007577035576105118, 0.01748371683061123, -0.01042648684233427, 0.01645169034600258, 0.004731378983706236, 0.011488865129649639, -0.00909851398319006, -0.023114321753382683, -0.00772501016035676, 0.000979854492470622, 0.0004529337165877223, -0.003505849279463291, -0.006507068872451782, -0.00554713374003768, -0.0011211888631805778, -0.007174849510192871, 0.002843759721145034, 0.006108677014708519, 0.0023277474101632833, 0.02369104139506817, -0.0008072180207818747, -0.009250282309949398, 0.028669044375419617, 0.005922760348767042, -0.009462757967412472, -0.0037638554349541664, -0.0215966384857893, 0.010282306931912899, -0.015176836401224136, -0.011101855896413326, 0.0015081982128322124, -0.011375038884580135, -0.008597678504884243, 0.009842178784310818, 0.043891411274671555, -0.012892723083496094, 0.003942183218896389, -0.01716500334441662, -0.0062528569251298904, -0.026286281645298004, -0.01602673903107643, -0.007565652951598167, 0.01657310500741005, 0.035149555653333664, 0.012907899916172028, -0.00080484664067626, 0.014592528343200684, -0.0008740909397602081, 0.010434075258672237, -0.003234563395380974, -0.057823747396469116, -0.021035095676779747, -0.01570802554488182, -0.031112516298890114, -0.015890147536993027, 0.012611951678991318, 0.015935678035020828, -0.00047641037963330746, 0.014076516032218933, -0.003014499321579933, 0.01642133668065071, -0.020837796851992607, 0.017954198643565178, 0.025542616844177246, -0.0307482723146677, -0.0032781967893242836, -0.030080489814281464, -0.0009698947542347014, 0.0029575859662145376, -0.00418501254171133, 0.0018990016542375088, 0.012862369418144226, -0.003752472810447216, -0.012695424258708954, -0.024753421545028687, -0.012596774846315384, -0.00242260261438787, 0.00714070163667202, 0.02639251947402954, 0.014638058841228485, 0.0035665566101670265, 0.0067650750279426575, -0.02326609008014202, 0.002849451033398509, 0.01733194850385189, 0.005304304417222738, 0.008916391991078854, -0.025345318019390106, -0.01161027979105711, 0.014759473502635956, -0.021019918844103813, 0.011375038884580135, -0.01368950679898262, -0.035665567964315414, 0.0021740819793194532, -0.02666570246219635, 0.0037828264757990837, 0.009090925566852093, 0.002919643884524703, -0.018303265795111656, -0.02536049485206604, 0.01871304027736187, 0.0019502235809341073, 0.0020185192115604877, -0.013127963989973068, 0.02994389832019806, -0.012232530862092972, -0.013120375573635101, 0.003737295977771282, -0.004731378983706236, 0.009075748734176159, 0.0015243235975503922, -0.014622882008552551, 0.005581281613558531, 0.004010478965938091, -0.011526807211339474, 0.002948100445792079, 0.0031814444810152054, -0.008256198838353157, -0.013545326888561249, 0.02088332735002041, -0.001091783749870956, 0.014023397117853165, 0.011488865129649639, 0.017301594838500023, -0.026316635310649872, -0.013234201818704605, -0.025390848517417908, -0.03141605108976364, 0.007174849510192871, 0.023114321753382683, 0.0021589051466435194, 0.013727448880672455, -0.01091973390430212, 0.011815167032182217, 0.005179095547646284, -0.0241311714053154, 0.004029450006783009, -0.0038530195597559214, 0.002610415918752551, 0.0008375716861337423, -0.026058629155158997, -0.028031617403030396, 0.002855142345651984, -0.004124305211007595, -0.0008494285866618156, -0.010927322320640087, 0.015040244907140732, -0.0017301593907177448, 0.005452278535813093, -0.025906860828399658, -0.003780929371714592, 0.006988933309912682, -0.011504041962325573, -0.038275983184576035, -0.007102759554982185, 0.016436513513326645, -0.024024933576583862, 0.0022423777263611555, 0.01839432679116726, -0.0025440172757953405, -0.052876099944114685, -0.010077419690787792, 0.013993043452501297, -0.0034546274691820145, 0.021414516493678093, -0.000413094530813396, -0.0271361842751503, -0.036849360913038254, -0.013150729238986969, 0.007133113220334053, 0.04698748514056206, -0.0241311714053154, -0.008961922489106655, -0.012748543173074722, -0.013507384806871414, 0.012475360184907913, 0.004830028396099806, -0.026498757302761078, -0.01784796081483364, 0.011982113122940063, -0.004059803672134876, -0.021019918844103813, 0.00014204571198206395, 0.0028741133864969015, 0.006681602448225021, 0.009644879959523678, -0.01898622326552868, 0.017225710675120354, 0.026316635310649872, -0.017104296013712883, 0.032690905034542084, -0.0008304575458168983, -0.0092958128079772, 0.005391571205109358, -0.016269568353891373, 0.00852938275784254, -0.0024605446960777044, -0.009235105477273464, -0.027029946446418762, -0.0027754639741033316, 0.009227517060935497, 0.017423009499907494, -0.0013203847920522094, -0.01784796081483364, 0.004272279795259237, -0.012528479099273682, -0.009265459142625332, 0.0036860741674900055, -0.004211571998894215, 0.012217354029417038, 0.007891954854130745, 0.02136898599565029, 0.005543339531868696, -0.009166809730231762, 0.03338903933763504, -0.0070951711386442184, 0.02646840363740921, 0.018773747608065605, 0.00725073367357254, -0.02132345549762249, 0.020473552867770195, -0.0422523133456707, -0.02006377838551998, 0.013416323810815811, 0.02001824788749218, -0.009751117788255215, 0.010828672908246517, -0.007793305907398462, -0.02420705556869507, -0.022795608267188072, -0.05062992870807648, -0.0002919169783126563, 0.015966031700372696, 0.009925651364028454, 0.017514070495963097, 0.005357423331588507, 0.012247707694768906, 0.02627110481262207, -0.022127827629446983, -0.013014137744903564, -0.01376539096236229, 0.024510592222213745, -0.0027773610781878233, -0.0018572653643786907, 0.0070306695997715, -0.008711504749953747, 0.03082415647804737, 0.030717918649315834, 0.03663688525557518, -0.028426215052604675, -0.017377479001879692, -0.02100474201142788, -0.02836550772190094, 0.023751748725771904, 0.004143276251852512, 0.005122182425111532, -0.012073174118995667, 0.022401010617613792, -0.0241311714053154, -0.022537602111697197, 0.0034394506365060806, 0.010631374083459377, -0.01974506489932537, 0.009090925566852093, 0.0006336329388432205, 0.005763403605669737, 0.013894394040107727, 0.01982094906270504, 0.004864176269620657, 0.016785580664873123, 0.0103278374299407, -0.0065260399132966995, -0.012725777924060822, 0.027090653777122498, 0.0038587108720093966, -0.0176506619900465, 0.011283977888524532, 0.029093995690345764, 0.008840507827699184, -0.024115994572639465, 0.0026559464167803526, 0.03338903933763504, -0.0130748450756073, 0.0016182302497327328, -0.02587650716304779, -0.025026604533195496, -0.00921992864459753, -0.018212204799056053, -0.005600252654403448, 0.03299444168806076, -0.019456705078482628, 0.021535931155085564, 0.0271361842751503, -0.03387469798326492, -0.0051904781721532345, -0.03873128816485405, 0.0025155607145279646, 0.01246018335223198, -0.03745643422007561, 0.0034261709079146385, -0.014266226440668106, 0.019046930596232414, -0.01950223557651043, 0.00837002508342266, -0.0043899002484977245, -0.0226286631077528, 0.0019976510666310787, -0.0022973937448114157, -0.03545309230685234, -0.00042020867113023996, 0.006510863080620766, -0.0013184876879677176, 0.009166809730231762, 0.00852938275784254, -0.010593432001769543, -0.01664898917078972, -0.00921992864459753, 0.012665070593357086, 0.009159221313893795, 0.030277788639068604, 0.005482632201164961, -0.0033559780567884445, -0.03517990931868553, 0.004056009463965893, -0.03341939300298691, 0.004188806749880314, -0.006586747244000435, 0.0004515108885243535, 0.004317810293287039, 0.021262748166918755, 0.006924431771039963, 0.03976331278681755, 0.014175165444612503, 0.0008954333607107401, -0.0031681647524237633, -0.018424680456519127, -0.013363204896450043, -0.033055149018764496, 0.005736844148486853, -0.015298251062631607, -0.0041356878355145454, -0.005782374646514654, 0.0013431500410661101, 0.02900293469429016, -0.0009163015056401491, -0.013545326888561249, -0.015442431904375553, -0.008544559590518475, 0.016785580664873123, -0.014486290514469147, 0.011359862051904202, 0.013947512954473495, -0.03156781941652298, 0.02092885784804821, 0.0017861239612102509, -0.0010756583651527762, -0.023645510897040367, -0.0012350151082500815, -0.009144044481217861, 0.011086679063737392, 0.0307027418166399, -0.023888342082500458, 0.022932199761271477, -0.025451555848121643, 0.0044809612445533276, -0.016269568353891373, -0.038913410156965256, -0.030930394306778908, 0.010411310009658337, -0.003972536884248257, -0.010115361772477627, -0.0161026231944561, 0.014364875853061676, -0.01545002032071352, 0.023645510897040367, 0.013841275125741959, -0.013112787157297134, -0.02725759893655777, 0.010760377161204815, -0.012566421180963516, -0.004188806749880314, 0.028061971068382263, 0.0004451081622391939, -0.01376539096236229, -0.023250913247466087, 0.02469271421432495, 0.04471096023917198, -0.0060441754758358, -0.004985590931028128, 0.020428022369742393, 0.0003632955194916576, 0.017939021810889244, 0.031082162633538246, -0.022067120298743248, -0.034876372665166855, -0.0019464293727651238, -0.0052398028783500195, 0.009439992718398571, 0.021884998306632042, -0.0013346130726858974, 0.029139526188373566, -0.023524096235632896, -0.011170151643455029, -0.026286281645298004, -0.009902886115014553, -0.014364875853061676, 0.002139934105798602, -0.023949049413204193, -0.00288359890691936, 0.012308415025472641, 0.03663688525557518, 0.008081665262579918, 0.02085297368466854, 0.0039877137169241905, -0.026756763458251953, 0.017104296013712883, -0.0012606260133907199, -0.009561407379806042, -0.014827769249677658, 0.03609051927924156, 0.020761912688612938, -0.00715208426117897, -0.027363836765289307, -0.008430732414126396, 0.018030082806944847, -0.013522561639547348, -0.002342924242839217, -0.016861464828252792, -0.04510555788874626, 0.014493878930807114, -0.0029101583641022444, 0.001385834882967174, 0.006613306701183319, 0.008438320830464363, -0.002065946813672781, -0.0092958128079772, -0.013833686709403992, 0.01418275386095047, -0.003424273803830147, -0.0036595147103071213, 0.014395229518413544, -0.004188806749880314, 0.022522425279021263, -0.00576719781383872, 0.00253263465128839, 0.0010386647190898657, 0.005311892833560705, -0.02733348309993744, -0.00372401624917984, 0.0042571029625833035, -0.005679931025952101, 0.016406159847974777, -0.00998635869473219, 0.0195781197398901, -0.014888476580381393, -0.014744296669960022, 0.004097745753824711, -0.0033977143466472626, 0.011564749293029308, 0.008658385835587978, 0.014326933771371841, 0.001176204881630838, -0.027409367263317108, 0.009189574979245663, -0.0061542075127363205, 0.00837002508342266, -0.010859026573598385, -0.002189258811995387, -0.007004110142588615, -0.004203983582556248, -0.0016201273538172245, 0.05163159966468811, -0.01532860565930605, -0.002610415918752551, -0.006237680092453957, 0.0002734202134888619, -0.023205382749438286, 0.007231762632727623, 0.008066488429903984, 0.013522561639547348, -0.009326166473329067, -0.014235872775316238, -0.02290184609591961, 0.0021664935629814863, 0.015950854867696762, -0.01447870209813118, 0.008316906169056892, 0.01542725507169962, 0.004420253913849592, -0.02425258606672287, 0.01141298096626997, 0.01573837921023369, 0.0018885675817728043, -0.02868422120809555, -0.017954198643565178, 0.0020545641891658306, 0.005410542245954275, 0.0019445322686806321, 0.007785717491060495, -0.008499028161168098, -0.004833822604268789, -0.001217941171489656, 0.0015717511996626854, -0.018136320635676384, -0.013514973223209381, -0.011670987121760845, 0.01163304504007101, 0.007311441004276276, 0.010805907659232616, -0.020230723544955254, 0.02001824788749218, -0.011891051195561886, 0.001546140294522047, 0.020564613863825798, 0.03433000668883324, -0.008316906169056892, 0.0032800938934087753, -0.0009556664153933525, -0.0070951711386442184, 0.031066985800862312, -0.004120511002838612, -0.02041284553706646, -0.009159221313893795, 0.0009670490981079638, 0.029458239674568176, 0.006791634485125542, -0.002638872480019927, -0.008810154162347317, -0.003676588647067547, 0.0016115903854370117, 0.002834274200722575, -0.013143140822649002, -0.02662017196416855, -0.03341939300298691, -0.04513591155409813, -5.471961048897356e-05, -0.025193549692630768, 0.002342924242839217, -0.011329508386552334, -0.0010955779580399394, -0.02469271421432495, -0.019289759919047356, 0.009075748734176159, 0.022416187450289726, -0.009857355616986752, -0.005535751115530729, -0.005808934103697538, 0.0045302859507501125, 0.013977866619825363, 0.016436513513326645, -0.012824427336454391, -0.0008171778172254562, -0.009128867648541927, 0.010001535527408123, -0.008574913255870342, 0.004697231110185385, 0.0059341429732739925, 0.011473688296973705, -0.018728217110037804, 0.008794977329671383, -0.012475360184907913, -0.00585446460172534, 0.01101838331669569, -0.021626992151141167, 0.007823659107089043, 0.005714078899472952, 0.002386557636782527, 0.008757035247981548, -0.02021554671227932, 0.002435882342979312, -0.015556258149445057, -0.0076491255313158035, 0.018743393942713737, -0.006085911765694618, 0.011253624223172665, 0.00011465625721029937, 0.007425267249345779, 0.008263787254691124, -0.006010027602314949, -0.004928677808493376, 0.01930493675172329, 0.0019274583319202065, -0.012391887605190277, -0.016800757497549057, -0.010904557071626186, -0.03791173920035362, 0.006958579644560814, 0.023129498586058617, 0.0064767152070999146, -0.010563078336417675, -0.013044491410255432, -0.006795428693294525, -0.0022556574549525976, -0.023508919402956963, 0.0050994171760976315, -0.006962373852729797, 0.006457744166254997, -0.02528461068868637, -0.007406296208500862, 0.010593432001769543, 0.002331541618332267, 0.01674005016684532, 0.02255277894437313, -0.014486290514469147, 0.002045078668743372, 0.010828672908246517, 0.00048471023910678923, 0.014615293592214584, -0.02088332735002041, 0.021854644641280174, 0.00030970232910476625, 0.015366547740995884, -0.002618004335090518, 0.004978002514690161, 0.0036727944388985634, -0.018181851133704185, 0.00013457586464937776, -0.029367178678512573, -0.030323319137096405, 0.0003407674084883183, 0.014288991689682007, 0.01563214138150215, -0.029185056686401367, -0.0046213469468057156, 0.0012008672347292304, -0.005110799800604582, -0.0017301593907177448, -0.022613486275076866, 0.0075352992862463, -0.005387776996940374, -4.2003081034636125e-05, 0.018576448783278465, 0.0009039703290909529, -0.025269433856010437, -0.00642739050090313, -0.014903653413057327, 0.01467600092291832, -0.003577939234673977, 0.021338632330298424, 0.011261212639510632, 0.01989683322608471, 0.005509191658347845, 0.009371696971356869, 0.0009376439265906811, -0.01895586960017681, 0.013279732316732407, -0.0023618952836841345, -0.02152075432240963, 0.0112915663048625, -0.01713464967906475, 0.01903175376355648, 0.02381245605647564, -0.0011382627999410033, 0.027166537940502167, 0.0038454311434179544, -0.00376764964312315, -0.020701205357909203, 0.00837002508342266, -0.02437400072813034, 0.0013137449277564883, 0.02397940307855606, -0.009819413535296917, 0.014137223362922668, 0.00623009167611599, 0.0005705542280338705, -8.809679275145754e-05, 0.001435159589163959, 0.030596502125263214, 0.0034546274691820145, 0.0018809791654348373, -0.0008214463014155626, -0.012217354029417038, 0.0009352725464850664, 0.028547629714012146, 0.002308776369318366, -0.005027327220886946, -0.0039877137169241905, -0.0046213469468057156, -0.01740783266723156, -0.012923076748847961, 0.0004965671105310321, -0.023250913247466087, -0.016208861023187637, 0.013810921460390091, -0.001728262286633253, -0.01050237100571394, 0.02326609008014202, 0.01082108449190855, 0.02199123613536358, 0.027029946446418762, 0.033965758979320526, 0.010024300776422024, 0.018181851133704185, 0.012915488332509995, -0.00485658785328269, -0.021581461653113365, -0.012331180274486542, 0.015487962402403355, 0.03524061664938927, 0.005402953829616308, -0.026377342641353607, 0.02725759893655777, -0.004272279795259237, -0.003247843123972416, 0.02085297368466854, 0.017043588683009148, 0.016633812338113785, 0.03147675842046738, -0.00020524300634860992, 0.005869641434401274, -0.016148153692483902, -0.007945073768496513, 0.028426215052604675, -0.013325262814760208, 2.826389390975237e-05, 0.002891187323257327, -0.024556122720241547, 0.006791634485125542, 0.0037278104573488235, -0.025132842361927032, -2.746355312410742e-05, -0.006374271586537361, -0.01297619566321373, -0.01578390970826149, 0.0076073892414569855, 0.011519218795001507, -0.017104296013712883, -0.014334522187709808, 0.009682822041213512, -0.008840507827699184, -0.018485387787222862, 0.012217354029417038, 0.0002127128536812961, 0.007231762632727623, -0.006780251860618591, 0.031082162633538246, 0.024040110409259796, -0.03329797834157944, 0.026802293956279755, -0.0016182302497327328, 0.018621979281306267, -0.02223406545817852, -0.008544559590518475, -0.0012795970542356372, -0.0008688739035278559, 0.00023903517285361886, -0.0007526762783527374, -0.01317349448800087, -0.018090790137648582, 0.004568228032439947, 0.010616197250783443, -0.005399159621447325, 0.0056040468625724316, 0.0013535841135308146, -0.0331462100148201, -0.013924747705459595, -0.007163466885685921, -0.023918695747852325, 0.015768732875585556, -0.004572022240608931, 0.009250282309949398, 0.022643839940428734, -0.007983015850186348, 0.009781471453607082, 0.002363792387768626, 0.008643209002912045, -0.008665974251925945, 0.0026995798107236624, 0.001181896193884313, -0.002202538540586829, 0.01716500334441662, -0.00902262981981039, 0.0017519760876893997, -0.005418130662292242, -0.005076651927083731, 0.02203676663339138, 0.004283662419766188, 0.023129498586058617, 0.011079090647399426, -0.0073190294206142426, 0.004021861590445042, 0.017559600993990898, 0.009265459142625332, -0.01113979797810316, 0.01196693629026413, -0.01705876551568508, 0.0003495415148790926, 0.01557143498212099, 0.018136320635676384, -0.0030903834849596024, 0.011025971733033657, 0.005296716000884771, -0.0032800938934087753, 0.01050237100571394, 0.003213695250451565, 0.007125524803996086, 0.004029450006783009, 0.01954776607453823, -0.009606937877833843, 0.029701068997383118, 0.009409639053046703, -0.014903653413057327, 0.0020469757728278637, -0.02041284553706646, -0.00397633109241724, 0.0021437283139675856, 0.0031510908156633377, -0.006992727518081665, 0.004651700612157583, 0.006878901273012161, -0.015814263373613358, -0.017195357009768486, -0.0010177965741604567, -0.007303852587938309, -0.014372464269399643, -0.002162699354812503, 0.00693202018737793, 0.010783142410218716, 0.0011951759224757552, 0.018971046432852745, 0.008916391991078854, -0.0011496454244479537, -0.0028589365538209677, 0.021626992151141167, 0.01713464967906475, -0.011367450468242168, -0.0014133428921923041, 0.024707891047000885, 0.005695107858628035, -0.013310085982084274, 0.019259406253695488, -0.015503139235079288, 0.029883190989494324, -0.01947188191115856, -0.018864808604121208, -0.005414336454123259, 0.005137359257787466, 0.004188806749880314, -0.0002456750371493399, -0.032812319695949554, 0.011276389472186565, 0.00664745457470417, -0.0176506619900465, 0.003276299685239792, -0.0030315732583403587, -0.000664935156237334, 0.010343014262616634, 0.0028399655129760504, 0.0020147250033915043, 0.007785717491060495, -0.00852938275784254, -0.00228031980805099, -0.003486878238618374, -0.01895586960017681, -0.00170834269374609, 0.011299154721200466, 0.004321604501456022, 0.004071186296641827, 0.0004937214544042945, -0.006324946880340576, -0.01740783266723156, -0.014364875853061676, -0.003204209730029106, -0.010684492997825146, 0.006233885884284973, 0.0026900942903012037, 0.0046213469468057156, -0.025739915668964386, 0.006332535296678543, 0.015586611814796925, -0.0024472649674862623, 0.004572022240608931, -0.0038890645373612642, 0.0015262207016348839, 0.00824861042201519, 0.006431184709072113, -0.00505388667806983, 0.014061339199543, 0.011701340787112713, 0.030520617961883545, -0.0092958128079772, 0.01930493675172329, 0.02238583378493786, -0.01418275386095047, 0.00263128406368196, 0.0034413477405905724, 0.007671891245990992, -0.006287004798650742, -0.013681918382644653, -0.0017017028294503689, 0.015025068074464798, 0.011564749293029308, -0.01060102041810751, 0.017559600993990898, 0.004613758530467749, 0.014850534498691559, 0.017073942348361015, 0.014751885086297989, -0.004203983582556248, 0.0006141876219771802, 0.019729888066649437, 0.00012722457177005708, -0.013901982456445694, 0.0038264598697423935, 0.014463525265455246, -0.026301458477973938, -0.00603279285132885, 0.01469876617193222, -0.022992907091975212, -0.010585843585431576, 0.004879353102296591, -0.014349699020385742, -0.0026066217105835676, -0.0022082298528403044, -0.012740954756736755, 0.029018111526966095, 0.03557450696825981, 0.009235105477273464, 0.022689370438456535, -0.003042955882847309, -0.019927186891436577, 0.009675233624875546, 0.02001824788749218, 0.004416459705680609, -0.0066171009093523026, -0.010654139332473278, -0.009144044481217861, -0.0066171009093523026, -0.002295496640726924, -0.004150864668190479, -0.030717918649315834, 0.01661863550543785, 0.0030315732583403587, 0.018105966970324516, -0.001722570974379778, -0.008779800496995449, -0.008567324839532375, 0.007341794669628143, 0.003014499321579933, 0.0019635031931102276, 0.01101838331669569, -0.012634716928005219, 0.017939021810889244, 0.01689181849360466, 0.0011306743836030364, -0.006784046068787575, 0.011777224950492382, -0.0037619583308696747, 0.0023960431572049856, -0.009993947111070156, 0.005706490483134985, -0.03584768995642662, -0.012763720005750656, -0.019851302728056908, 0.012794073671102524, 0.03275161236524582, 0.0014683589106425643, -0.004640317987650633, 0.01989683322608471, 0.03085451014339924, -0.006522245705127716, 0.0033901259303092957, 0.014880888164043427, -0.0016741948202252388, 0.020640498027205467, 0.004196395166218281, 0.002568679628893733, -0.01537413615733385, 0.050538867712020874, -0.01637580618262291, 0.006878901273012161, 0.013841275125741959, -0.001232169452123344, 0.002638872480019927, 0.0026350782718509436, -0.01119291689246893, 0.020640498027205467, -0.0029651743825525045, -0.009971181862056255, 0.012467771768569946, 0.00407498050481081, 0.02183946780860424, -0.00474655581638217, -0.0011420570081099868, 0.013917159289121628, -0.002065946813672781, 0.007470797747373581, 0.003035367466509342, 0.009470346383750439, 0.030490264296531677, 0.004602375905960798, 0.01708911918103695, -0.03290338069200516, -0.0014749987749382854, -0.007759158033877611, 0.01642133668065071, 0.022856315597891808, 0.00785401277244091, -0.001756718847900629, -0.012923076748847961, -0.02156628482043743, -0.015844617038965225, 0.010411310009658337, 0.0014835357433184981, -0.021945705637335777, 0.003746781498193741, 0.010054654441773891, 0.007072405889630318, 0.02385798841714859, 0.012437418103218079, -0.02789502590894699, 0.0022841140162199736, 0.004978002514690161, -0.006465332582592964, -0.02045837603509426, -0.015935678035020828, 0.00653742253780365, -0.013628799468278885, -0.003968742676079273, 0.0015167351812124252, -0.006127648055553436, -0.008377613499760628, 0.011200505308806896, 0.024358823895454407, 0.009144044481217861, 0.024905189871788025, -0.012407064437866211, 0.001407651579938829, 0.02171805314719677, 0.009083337150514126, 0.008886038325726986, 0.008787388913333416, -0.023281266912817955, 0.0015006097964942455, 0.028911873698234558, -0.00624147430062294, -0.00031041374313645065, 0.001238809316419065, 0.01891033910214901, 0.014015808701515198, -0.005535751115530729, 0.006408419460058212, 0.009758706204593182, -0.008362436667084694, 0.014448348432779312, 0.004974208306521177, -0.002771669765934348, -0.015085775405168533, 0.00704205222427845, 0.01693734899163246, 0.0050918287597596645, 0.013127963989973068, -0.014562174677848816, -0.010608608834445477, -0.013795744627714157, 0.0017396449111402035, -0.0017443876713514328, -0.006025204434990883, 0.004477167036384344, 0.011982113122940063, 0.0005070011829957366, 0.01713464967906475, -0.015723202377557755, 0.010449252091348171, 0.0008200234733521938, -0.0035532768815755844, 0.004852793645113707, 0.003325624391436577, -0.011541984044015408, -0.0061048828065395355, -0.015950854867696762, 0.02275007776916027, 0.010904557071626186, 0.007846424356102943, 0.00902262981981039, 0.028304800391197205, -0.003653823398053646, -0.0005278693279251456, -0.027955733239650726, -0.005444690119475126, 0.0030543385073542595, -0.002223406685516238, 0.015874970704317093, 0.03235701471567154, -0.012930665165185928, 0.009128867648541927, -0.0056609599851071835, 0.01415998861193657, -0.021384162828326225, 0.021095803007483482, -0.0009969284292310476, -0.007254527881741524, -0.004446813371032476, -0.0025705767329782248, 0.006188355386257172, 0.0023182618897408247, -0.01772654615342617, 0.012809250503778458, 0.0008987532928586006, 0.02772808074951172, -0.0226741936057806, 0.005236008670181036, 0.006848547607660294, 0.0056609599851071835, -0.023387504741549492, 0.018136320635676384, -0.01388680562376976, -0.0006976602016948164, -0.0074670035392045975, -0.015677671879529953, -0.005577487405389547, 0.0226741936057806, -0.0014057544758543372, 0.012103527784347534, 0.02432847023010254, 0.01089696865528822, -0.029837660491466522, 0.012490537017583847, -0.010077419690787792, 0.0076073892414569855, 0.027075476944446564, -0.008286552503705025, 0.01368950679898262, 0.01255883276462555, 0.003003116697072983, 0.00623009167611599, -0.0027261392679065466, 0.014448348432779312, -0.028107501566410065, 0.02457129955291748, 0.006620895117521286, -0.016724873334169388, -0.025269433856010437, -0.010889380238950253, 0.0017349021509289742, -0.002638872480019927, -0.013279732316732407, 0.004374723415821791, 0.015457608737051487, 0.016436513513326645, -0.004435430746525526, -0.003661411814391613, 0.011883462779223919, -0.016952525824308395, 0.01637580618262291, -0.007102759554982185, 0.009796648286283016, -0.009978770278394222, 0.005088034551590681, -0.01705876551568508, -0.025648854672908783, -0.006010027602314949, 0.010745200328528881, 0.016800757497549057, -0.010570666752755642, -1.5651112335035577e-05, 0.005683725234121084, -0.010547901503741741, -0.0018297573551535606, -0.011177740059792995, 0.010707258246839046, -0.014144811779260635, -0.014683589339256287, -0.016482044011354446, -0.0003450358926784247, -0.0025212520267814398, 0.0012350151082500815, -0.010365779511630535, 0.00048399882507510483, -0.016679342836141586, -0.01938082091510296, -0.03296408802270889, -0.004427842330187559, -0.00362536683678627, -0.0014455936616286635, 0.012247707694768906, -0.012224942445755005, 0.009880120866000652, 0.021156510338187218, -0.01255883276462555, -0.01552590448409319, 0.018546095117926598, 0.01950223557651043, -0.0034128911793231964, -0.01768101565539837, 0.0021513167303055525, -0.028122678399086, 0.01258159801363945, 0.014607705175876617, -0.019168345257639885, -0.020959211513400078, 0.03272125869989395, 0.004249514080584049, 0.010160892270505428, 0.0022632458712905645, 0.015799086540937424, -0.008096842095255852, 0.014531821012496948, 0.024707891047000885, -0.009106102399528027, 0.008681151084601879, 0.011701340787112713, -0.001518632285296917, -0.011109444312751293, 0.009045395068824291, 0.003437553532421589, 0.019289759919047356, 0.015480373986065388, -0.00993323978036642, 0.010047066025435925, 0.013348028063774109, -0.030550971627235413, -0.00772501016035676, 5.0184346036985517e-05, -0.025572970509529114, 0.004416459705680609, -0.021626992151141167, 0.0013355616247281432, 0.0004799674788955599, 0.022856315597891808, 0.002682505873963237, -0.0391562394797802, -0.0019122813828289509, 0.034360360354185104, 0.003042955882847309, -0.0013640181859955192, -0.0053308638744056225, 0.006389448419213295, -0.01376539096236229, 0.015541081316769123, 0.02097438834607601, 0.02706030011177063, 0.005220831837505102, 0.0005990107893012464, -0.007262116298079491, -0.001525272149592638, 0.001210352755151689, 0.007353177294135094, 0.02117168717086315, -0.017195357009768486, 0.03290338069200516, 0.019213875755667686, -0.0060631465166807175, -0.003667103126645088, -0.004314016085118055, -0.011124621145427227, -0.014061339199543, 0.002792537910863757, 0.010904557071626186, 0.004917295183986425, 0.011261212639510632, -0.009371696971356869, 0.002526943339034915, -0.032812319695949554, 0.011982113122940063, -0.01878892444074154, -0.01915316842496395, -0.00331803597509861, 0.02108062617480755, 0.01196693629026413, -0.0007147341384552419, -0.021232394501566887, 0.005956908222287893, -0.019441528245806694, -0.0004956185584887862, 0.0185916256159544, 0.011799990199506283, 0.010859026573598385, 0.007019286975264549, -0.00634012371301651, -0.02935200184583664, 0.01163304504007101, 0.0007493563462048769, -0.009303401224315166, 0.009766294620931149, -0.009637291543185711, 0.006939608603715897, -0.024829305708408356, 0.002094403374940157, -0.003443244844675064, -0.015047833323478699, 0.017574777826666832, 0.018546095117926598, -0.020048601552844048, 0.02575509250164032, 0.002413117093965411, 0.008544559590518475, -0.00039910338819026947, -0.007068611681461334, -0.008210668340325356, -0.0013829892268404365, -0.030763449147343636, 0.012080762535333633, -0.002274628495797515, -0.014622882008552551, -0.029503770172595978, -0.007330412045121193, 0.017240887507796288, 0.008719093166291714, -0.0023391300346702337, 0.004154658876359463, 0.016390983015298843, -0.01153439562767744, -0.0252087265253067, 0.010563078336417675, 0.005573693197220564, -0.009804236702620983, 0.0007664302829653025, -0.00674610398709774, 0.02001824788749218, -0.009781471453607082, -0.018879985436797142, -0.01705876551568508, -0.006366683170199394, 0.0010566872078925371, 0.006355300545692444, 0.024859659373760223, -0.011306743137538433, 0.017787253484129906, -0.02907881885766983, -0.02171805314719677, 0.010631374083459377, 0.015935678035020828, 0.0010936808539554477, 0.0021380370017141104, 0.002295496640726924, 0.010122950188815594, -3.082794864894822e-05, -0.0061959438025951385, 0.039065178483724594, -0.02429811656475067, 0.0070458464324474335, -0.003464112989604473, 0.008514205925166607, 0.004837616812437773, -0.00025871762773022056, -0.0014806900871917605, 0.004875558894127607, -0.0034754956141114235, -0.014956772327423096, -0.016041915863752365, -0.028927050530910492, -0.017711369320750237, 0.01891033910214901, -0.00263128406368196, 0.012543655931949615, 0.0010756583651527762, 0.008612855337560177, -0.0006255702464841306, 0.0002743687655311078, 0.006643660366535187, 0.011549572460353374, 0.00023215817054733634, 0.019562942907214165, 0.0103278374299407, -0.01903175376355648, -0.018819278106093407, 0.005881024058908224, -0.008013369515538216, -0.014311756938695908, 0.019062107428908348, -0.008590090088546276, 0.01573837921023369, 0.025588147342205048, -0.00792989693582058, -0.01123844739049673, 0.009675233624875546, 0.017559600993990898, 0.013302497565746307, -0.012179411947727203, 0.013454265892505646, 0.004188806749880314, -0.0038435340393334627, -0.0009015989489853382, -0.003302859142422676, -0.005759609397500753, 0.0037619583308696747, -0.016466867178678513, -0.007015492767095566, 0.007455620914697647, -0.006116265431046486, -0.012407064437866211, 0.007482180371880531, 0.010578255169093609, -0.0013678123941645026, 0.004852793645113707, -0.003435656428337097, 0.015814263373613358, -0.0047693210653960705, 0.007163466885685921, 0.003507746383547783, -0.008832919411361217, -0.0002603775938041508, 0.005672342609614134, 0.019213875755667686, -0.0015575229190289974, 0.0014797415351495147, -0.01856127195060253, 0.00382266566157341, 4.550086669041775e-05, -0.01661863550543785, 0.01566249504685402, -0.0056040468625724316, 0.002574370941147208, 0.007690862286835909, -0.004192600958049297, -0.015237543731927872, -0.0003402931324671954, -0.007341794669628143, 0.00222530378960073, 0.02690853178501129, 0.0009528207592666149, -0.018576448783278465, -0.013636387884616852, -0.002010930795222521, -0.009682822041213512, 0.012004878371953964, 0.0019483264768496156, -0.012748543173074722, -0.004245719872415066, 0.019608473405241966, -0.011101855896413326, 0.012027643620967865, 0.009181986562907696, -0.034481775015592575, -0.003374949097633362, 0.002365689491853118, -0.011154974810779095, 0.0093185780569911, 0.0019445322686806321, -0.006590541452169418, -0.002485207049176097, 0.001990062650293112, 0.014023397117853165, 0.008089253678917885, 0.0050918287597596645, -0.017741722986102104, 0.006780251860618591, 0.0009276841301470995, 0.00899986457079649, 0.00899986457079649, -0.0015755454078316689, 0.010380956344306469, -0.007307646796107292, 0.003703148104250431, 0.020913681015372276, 0.02227959595620632, -0.01042648684233427, -0.00347170140594244, -0.02171805314719677, -0.0035381000488996506, -0.005835493560880423, 0.000346695858752355, 0.023129498586058617, -0.005831699352711439, -0.0010737612610682845, -0.002287908224388957, -0.015002302825450897, 0.010320249013602734, 0.010714846663177013, -0.013537738472223282, -0.01684628799557686, -0.004101539961993694, 0.015935678035020828, -0.006560187786817551, -0.033085502684116364, 0.006560187786817551, -0.0017728442326188087, -0.014607705175876617, -0.010866614989936352, -0.01020642276853323, 0.008514205925166607, -0.0011781019857153296, -0.008544559590518475, -0.00017892067262437195, -0.01216423511505127, -0.020549437031149864, 0.022689370438456535, -0.0027280363719910383, -0.03842775151133537, -0.014144811779260635, 0.020625321194529533, -0.016208861023187637, -0.008544559590518475, 0.0027754639741033316, -0.013317674398422241, 0.00993323978036642, 0.016785580664873123, 0.018621979281306267, 0.0040787747129797935, 0.016831111162900925, 0.003980125300586224, 0.010593432001769543, -0.011898639611899853, -0.009948416613042355, -0.001476895879022777, -0.0007740186993032694, -0.007569447159767151, 0.0032516373321413994, -0.0054712495766580105, -0.02080744318664074, -0.006723338738083839, -0.00941722746938467, 0.012399476021528244, 0.002329644514247775, -0.018895162269473076, 0.023569626733660698, -0.02156628482043743, 0.012057997286319733, 0.0031017661094665527, 0.014858122915029526, 0.011845520697534084, -0.0068561360239982605, 0.004564433824270964, 0.0031662676483392715, -0.00961452629417181, -0.0160570926964283, 0.015146482735872269, -0.0059644971042871475, 0.017696192488074303, 0.0072279684245586395, -0.011101855896413326, 0.011716517619788647, -0.006939608603715897, 0.01780243031680584, -0.006408419460058212, -0.0028285828884691, 0.006810605525970459, 0.0052398028783500195, 0.01089696865528822, 0.014197930693626404, 0.00351533479988575, 0.0016609150916337967, -0.012687835842370987, -0.013363204896450043, 0.0036879712715744972, 0.004814851563423872, -0.007379736751317978, -0.004040832631289959, 0.01450146734714508, -0.007808482740074396, -0.007584623992443085, 0.016163330525159836, -0.011898639611899853, 0.03178029507398605, -0.015381724573671818, -0.00024140656751114875, 0.011564749293029308, 0.008309317752718925, -0.003541894257068634, 0.00045815075282007456, -0.005903789307922125, -0.027470074594020844, 0.010972852818667889, -0.0027963321190327406, -0.01060102041810751, -0.026453226804733276, -0.011519218795001507, -0.003653823398053646, 0.004002890549600124, -0.018971046432852745, -0.007023081183433533, -0.02223406545817852, -0.011640633456408978, 0.03326762467622757, 0.0036803828552365303, -0.0017026513814926147, 0.01516924798488617, -0.010593432001769543, 0.0034053027629852295, 0.002540223067626357, -0.002932923613116145, 0.025026604533195496, 0.004879353102296591, 0.010138127021491528, 0.030034959316253662, -0.0023201589938253164, -0.009326166473329067, 0.006176972761750221, -0.0025022809859365225, 0.015586611814796925, 0.016603458672761917, -0.004245719872415066, -0.022537602111697197, 0.014425583183765411, -0.0021437283139675856, -0.01161027979105711, -0.0059341429732739925, -0.0012198382755741477, 0.03290338069200516, 0.0008484800346195698, -0.009144044481217861, -0.00018069920770358294, -0.002925335196778178, -0.028274446725845337, 0.0005444690468721092, -0.00010937993647530675, 0.010312660597264767, -0.003536202944815159, -0.006518451496958733, 0.0021266541443765163, 0.007732598576694727, 0.0013697094982489944, -0.009652468375861645, -0.005918966140598059, 0.014607705175876617, 0.023599980399012566, 0.009675233624875546, 0.0029177467804402113, -0.006890283897519112, -0.02183946780860424, 0.01954776607453823, 0.007630154490470886, 0.0019767829217016697, -0.00037752382922917604, -0.004697231110185385, 0.004602375905960798, 0.02979212999343872, 0.0024169113021343946, -0.022492071613669395, 0.0006175075541250408, -0.028061971068382263, -0.005634400527924299, -0.0006013821694068611, 0.023569626733660698, 0.0160570926964283, -0.015419666655361652, -0.0020849178545176983, 0.010767965577542782, -0.005763403605669737, 0.027940556406974792, 0.0033996114507317543, -0.00554713374003768, -0.015753556042909622, -0.010859026573598385, 0.0014133428921923041, 0.005937937181442976, -0.006753692403435707, 0.00969041045755148, 0.01248294860124588, -0.0026293869595974684, 0.002680608769878745, -0.0017662043683230877, -0.02548190951347351, -0.021065449342131615, -0.008544559590518475, 0.005721667315810919, 0.0077781290747225285, 0.021035095676779747, -0.0009509236551821232, -0.00144179945345968, -0.005630606319755316, -0.013681918382644653, -0.02410081773996353, -0.022689370438456535, 0.006590541452169418, -0.009599349461495876, -0.023842811584472656, 0.0031397081911563873, -0.0017548217438161373, 0.002583856461569667, 0.02029143087565899, 0.005482632201164961, -0.0003898550057783723, 0.0012255295878276229, 0.004420253913849592, 0.007637742906808853, -0.003037264570593834, -0.007072405889630318, 0.008058900013566017, 0.009371696971356869, 0.011997289955615997, -0.0031947242096066475, 0.020822620019316673, -0.004033244214951992, -0.0050500924699008465, 0.0023467184510082006, 0.01349220797419548, -0.018181851133704185, -0.008878449909389019, 0.0019350467482581735, 0.006977550685405731, -0.001043407479301095, -0.01883445493876934, -0.0068978723138570786, -0.0005430462188087404, 0.02489001303911209, -0.00814996100962162, 0.01050237100571394, 0.050660282373428345, 0.002602827502414584, -0.003961154259741306, 0.028623513877391815, -0.005960702896118164, -0.020033424720168114, -0.00983459036797285, -0.004606170114129782, 0.02998942881822586, -0.026802293956279755, -0.00860526692122221, 0.015154071152210236, -0.007603595033288002, -0.006419802084565163, -0.0022215095814317465, -0.009090925566852093, 0.012012466788291931, 0.0069547854363918304, 0.01590532436966896, 4.022454595542513e-05, 0.017574777826666832, 0.009288224391639233, -0.012209765613079071, 0.005786168854683638, -0.018500564619898796, -0.004382311832159758, -0.03672794625163078, 0.011276389472186565, 0.0010405618231743574, -0.009576584212481976, -0.01792384497821331, 0.007478386163711548, 0.015480373986065388, -0.003507746383547783, 0.011822755448520184, -0.006123853847384453, 0.01792384497821331, 0.004116716794669628, -0.011936582624912262, -0.003896652953699231, 0.0092958128079772, 0.016755226999521255, -0.01396268978714943, -0.012118704617023468, 0.011754459701478481, 0.02290184609591961, 0.004606170114129782, 0.003773340955376625, 0.017832783982157707, 0.0056609599851071835, 0.005873435642570257, -0.005839287769049406, -0.013385970145463943, 0.009227517060935497, -0.0027602871414273977, -0.017589954659342766, 0.009310989640653133, -0.025861330330371857, 0.001764307264238596, 0.008104430511593819, -0.005805139895528555, -0.002604724606499076, -0.0017842268571257591, -0.0015290663577616215, 0.01151163037866354, -0.030368849635124207, -0.02536049485206604, 0.000938118202611804, 0.041523825377225876, 0.035119201987981796, 0.016041915863752365, 0.002680608769878745, 0.005156330298632383, -0.045864399522542953, 0.004196395166218281, 0.02117168717086315, -0.005046298261731863, 0.009235105477273464, -0.00208681495860219, -0.01657310500741005, 0.027561135590076447, 0.01622403785586357, -0.010638962499797344, -0.00536121753975749, -0.01346944272518158, -0.013901982456445694, -0.009371696971356869, 0.010456840507686138, 0.011025971733033657, 0.010221599601209164, -0.004386106040328741, -0.012710601091384888, 0.0029367178212851286, -0.003204209730029106, -0.0103050721809268, -0.007421473041176796, 9.491451783105731e-05, -0.0033920230343937874, 0.03700112923979759, -0.018090790137648582, -0.027637019753456116, 0.0016647092998027802, -0.00909851398319006, 0.015298251062631607, 0.004609964322298765, 0.00010937993647530675, 0.0008176520932465792, -0.0037012510001659393, -0.01819702796638012, -0.00892398040741682, 0.007501151412725449, -0.024677537381649017, 0.0031226342543959618, -0.005945525597780943, 0.006070734933018684, -0.0006032792734913528, -0.007569447159767151, 0.026923708617687225, -0.001259677461348474, -0.00048803017125464976, -0.026240751147270203, -0.014615293592214584, -0.00844590924680233, -0.004598581697791815, 0.014357287436723709, -0.0030752066522836685, 0.004936266224831343, -0.01190622802823782, -0.005365011747926474, -0.0025079722981899977, 0.004674465861171484, 0.028593160212039948, 0.00805131159722805, 0.015176836401224136, 0.012498125433921814, 0.004750350024551153, 0.005820316728204489, -0.00959176104515791, -0.00846867449581623, -0.00026014045579358935, -0.0034963637590408325, -0.016390983015298843, -0.009849767200648785, -0.004207777790725231, -0.03442106768488884, -0.013522561639547348, -0.017544424161314964, -0.0015973621048033237, 0.002934820717200637, 0.008134784176945686, 0.015412078239023685, 0.007364559918642044, -0.016982879489660263, -0.00971317570656538, 0.006935814395546913, 0.007664302829653025, 0.012642305344343185, -0.0027185508515685797, -0.015601788647472858, -0.015389312990009785, -0.009432404302060604, 0.022143004462122917, -0.0004254257073625922, 0.010851438157260418, 0.006939608603715897, 0.0016495324671268463, 0.007603595033288002, 0.006256651133298874, -0.014046162366867065, 0.019259406253695488, 0.014865711331367493, 0.015434843488037586, 0.022294772788882256, -0.026301458477973938, -0.014918830245733261, -0.022932199761271477, 0.002688197186216712, 0.004864176269620657, 0.012733366340398788, -0.0063932426273822784, -0.007076200097799301, 0.014296580106019974, 0.0161026231944561, 0.0141068696975708, -0.005956908222287893, 0.026559464633464813, 0.0028798046987503767, 0.002168390667065978, -0.004329192917793989, 0.007785717491060495, 0.03660653159022331, 0.014987125992774963, -0.016284745186567307, -0.0009219928178936243, 0.005319481249898672, 0.004886941518634558, -0.00991047453135252, 0.015723202377557755, 0.00022255408111959696, -0.004370929207652807, -0.024586476385593414, 0.01681593433022499, -0.0006222503143362701, 0.008476262912154198, 0.020777089521288872, 0.015321016311645508, 0.026696056127548218, 0.0060631465166807175, -0.027075476944446564, 0.0013270246563479304, 0.011944171041250229, -0.0075163282454013824, -0.011382627300918102, 0.009273047558963299, -0.02959483116865158, 0.0010718641569837928, 0.019456705078482628, -0.004651700612157583, 0.024313293397426605, 0.010191245935857296, -0.027864672243595123, 0.01297619566321373, -0.0072279684245586395, 0.0023903518449515104, -0.03235701471567154, 0.023599980399012566, -0.02405528724193573, 0.01337079331278801, -0.0005060526309534907, 0.01573837921023369, 0.006290799006819725, -0.0113370968028903, 0.016588281840085983, -0.006237680092453957, -0.004526491742581129, 0.012642305344343185, -0.03763855621218681, -0.010889380238950253, -0.014357287436723709, 0.004583404865115881, -0.003896652953699231, 0.019532589241862297, 0.00047024479135870934, 0.021535931155085564, -0.0036784857511520386, -0.008043723180890083, -0.02942788600921631, -0.025572970509529114, 0.013939924538135529, 0.020230723544955254, 0.020124485716223717, -0.0024586475919932127, -0.006913049146533012, -0.011678575538098812, -0.01728641800582409, 0.0028949815314263105, 0.030414380133152008, 0.001463616150431335, -0.018576448783278465, 0.011883462779223919, 0.0035741450265049934, -0.000300928222713992, -0.036060165613889694, -0.0009741632384248078, 0.0031529879197478294, -0.0008342517539858818, -0.029093995690345764, 0.015176836401224136, -0.007288675755262375, 0.008415555581450462, -0.0010718641569837928, 0.011617868207395077], "1c302ce2-13eb-4f5c-8197-be35d64921e4": [0.0009058448486030102, 0.010366837494075298, -0.0029966640286147594, 0.0036928001791238785, -0.04921162500977516, -0.048779673874378204, 0.03136276826262474, 0.01880531944334507, -0.019977759569883347, 0.027413498610258102, 0.016707269474864006, 0.03619137033820152, 0.003949271515011787, 0.026271911337971687, -0.04063430055975914, 0.02506861835718155, -0.026950692757964134, 0.02955782786011696, 0.002857822459191084, -0.02982008457183838, 0.057542119175195694, 0.0024547961074858904, -0.04109710454940796, 0.024698372930288315, 0.006201590411365032, -0.021397029981017113, -0.006028038449585438, -0.01327479723840952, -0.029465267434716225, -0.014578365720808506, 0.02260032296180725, 0.009209824725985527, 0.026796424761414528, -0.0014086634619161487, -0.0009019881254062057, -0.05939333885908127, -0.017586600035429, 0.005218129139393568, -0.0243127029389143, 0.022924287244677544, 0.0029889505822211504, -0.007096347399055958, 0.02710496075451374, 0.014624645933508873, -0.015951354056596756, 0.021767273545265198, 0.01266543660312891, 0.020656540989875793, 0.018990442156791687, 0.0005302976933307946, -0.014879188500344753, 0.010135434567928314, 0.011693545617163181, 0.013891871087253094, 0.02159757912158966, -0.01633702591061592, 0.009124976582825184, 0.08756275475025177, -0.004959729500114918, -0.046805039048194885, -0.00954921543598175, -0.04137478768825531, 0.008415342308580875, -0.0027421212289482355, -0.0028751776553690434, -0.0029793088324368, -0.01265001017600298, 0.018435075879096985, -0.04594113305211067, -0.012125497683882713, 0.009433513507246971, 0.03267405182123184, -0.016182756051421165, 0.04088113084435463, -0.04193015396595001, 0.009572355076670647, 0.03430929780006409, -0.00853104330599308, 0.03665417432785034, 0.025269167497754097, -0.00514870835468173, -0.035512588918209076, 0.022245505824685097, 0.01467864029109478, 0.056091997772455215, 0.019376114010810852, -0.0208108089864254, -0.045817721635103226, -0.05846773087978363, 0.006263297516852617, -0.0077866981737315655, 0.02156672440469265, -0.030236609280109406, -0.03582112491130829, 0.003831641748547554, -0.0009718910441733897, 0.025438861921429634, 0.005040720570832491, 0.015527116134762764, -0.009703483432531357, 0.030961671844124794, 0.015750804916024208, -0.07435737550258636, 0.024281848222017288, -0.012063790112733841, -0.01880531944334507, 0.029187584295868874, 0.013259370811283588, -0.03714783489704132, 0.01983891800045967, 0.025022337213158607, -0.02756776660680771, -0.006953648757189512, 0.012850559316575527, -0.04171418026089668, -0.0270586796104908, -0.019977759569883347, -0.04038747027516365, 0.012464888393878937, -0.010945344343781471, 0.027706608176231384, -0.0014443380059674382, 0.02357221394777298, -0.0020151312928646803, -0.03181014582514763, 0.006745386403053999, 0.001991990953683853, 0.0522044338285923, 0.00890128780156374, 0.006132169626653194, 0.0233562383800745, -0.02054855227470398, 0.0014703708002343774, -0.0018367583397775888, 0.03795003145933151, 0.03912246972322464, 0.01683068461716175, 0.04998296871781349, -0.008114518597722054, 0.03307515010237694, -0.06855688244104385, -0.035173200070858, -0.016938671469688416, 0.0024567246437072754, 0.009842325001955032, 0.019391540437936783, -0.0370861291885376, 0.027012400329113007, -0.029804658144712448, 0.01832708716392517, -0.06062748655676842, -0.04609540477395058, 0.013868730515241623, 0.0005201738094910979, 0.04587942734360695, -0.03542003035545349, -0.0029754519928246737, 0.04967442899942398, -0.004508494399487972, 0.0056539373472332954, 0.01757117360830307, -0.05063089355826378, -0.004026405513286591, -0.012750284746289253, 0.008947568014264107, 0.03037545084953308, 0.04316430166363716, 0.03455612435936928, -0.05340772494673729, 0.01804940402507782, 0.028200266882777214, -0.003654233179986477, 0.025685692206025124, -0.010235709138214588, 0.003696657018736005, -0.025670263916254044, 0.04871796444058418, 0.04547832906246185, 0.009919459000229836, -0.028786486014723778, 0.013606474734842777, -0.011122752912342548, 0.029681243002414703, -0.005372397601604462, -0.020394284278154373, -0.0012997114099562168, 0.03369222208857536, 0.027243802323937416, -0.006405996158719063, 0.04415162280201912, 0.001624639262445271, -0.01467092614620924, 0.0228008721023798, 0.058344315737485886, 0.01601306162774563, -0.03619137033820152, 0.017231782898306847, 0.010976198129355907, -0.0003916971618309617, 0.03151703625917435, 3.3595562854316086e-05, -0.029681243002414703, -0.010096867568790913, 0.05424077436327934, -0.0015156872104853392, 0.04282491281628609, -0.02605593577027321, -0.021227333694696426, -0.0056577944196760654, 0.02085709013044834, 0.02130446769297123, -0.023417945951223373, 0.020949650555849075, -0.012086930684745312, -0.012063790112733841, 0.004122823476791382, -0.027706608176231384, 0.013236230239272118, -0.003008234081789851, -0.0192989781498909, 0.006463846657425165, -0.009448940865695477, 0.014485804364085197, -0.041745033115148544, -0.042022716253995895, -0.007015356328338385, -0.015920501202344894, 0.014755774289369583, -0.004971299786120653, -0.009850038215517998, 0.005962474271655083, -0.0077404179610311985, 0.012187205255031586, -0.008191652595996857, -0.005175705533474684, 0.03279746696352959, 0.04134393483400345, -0.009958025999367237, -0.02958868257701397, -0.03906076401472092, 0.022631177678704262, 0.01683068461716175, -0.008268787525594234, 0.006706819403916597, 0.0038085016421973705, 0.015596536919474602, -0.05590687319636345, 0.050291504710912704, 0.03032917156815529, 0.004813174717128277, 0.0050175804644823074, 0.014593792147934437, -0.015966780483722687, 9.702036913949996e-05, -0.009603208862245083, 0.03560515120625496, 0.0032319233287125826, -0.041282229125499725, 0.0035308185033500195, -0.009865465573966503, -0.020995931699872017, 0.028971608728170395, -0.0355742983520031, -0.02133532240986824, 0.04171418026089668, -0.020702822133898735, 0.031501609832048416, -0.03446356579661369, 0.03384649008512497, 0.042794059962034225, 0.0038200716953724623, 0.001988134114071727, 0.024035019800066948, -0.019869772717356682, 0.020625688135623932, -0.02963496372103691, -0.030977098271250725, 0.01027427613735199, 0.0011734041618183255, -0.00671453308314085, -0.021628431975841522, -0.03059142641723156, 0.03276661038398743, 0.024775506928563118, 0.017154648900032043, 0.007470448035746813, -0.012819705531001091, 0.014832908287644386, -0.03434015065431595, -0.05146394297480583, -0.014616932719945908, 0.004118966870009899, 0.014894615858793259, -0.005534379277378321, 0.002026701346039772, 0.011778393760323524, 0.02732093632221222, -0.03504978492856026, -0.006699106190353632, 0.0056577944196760654, -0.013398212380707264, -0.042022716253995895, -0.03936930000782013, -0.017710015177726746, 0.01729349046945572, -0.017879709601402283, 0.01478662807494402, -0.024420689791440964, 0.0017981912242248654, 0.006803237367421389, 0.05785065516829491, -0.0346178337931633, 0.03606795519590378, -0.027444351464509964, -0.007775128353387117, -0.019962333142757416, -3.9380629459628835e-05, -0.016660988330841064, -0.02756776660680771, -0.02210666425526142, 0.016861537471413612, -0.00904784258455038, -0.052605532109737396, -0.0008451016619801521, 0.04091198369860649, -0.031964417546987534, 0.030668562278151512, -0.01368360873311758, -0.032149538397789, -0.04396649822592735, -0.030406305566430092, -0.039492715150117874, -0.05041491985321045, -0.019437819719314575, 0.004786177538335323, -0.04134393483400345, -0.06025724485516548, -0.03844368830323219, 0.01454751193523407, -0.009811471216380596, 0.011855527758598328, 0.017247209325432777, -0.0030390878673642874, -0.012858272530138493, -0.004724470432847738, -0.026673009619116783, -0.0017528749303892255, -0.023957885801792145, -0.025731971487402916, 0.026950692757964134, 0.000923682120628655, -0.011361869052052498, 0.02937270700931549, -0.011801534332334995, 0.01730891689658165, -0.002906031208112836, -0.037795763462781906, -0.022646604105830193, 0.035265758633613586, 0.017401477321982384, -0.018435075879096985, -0.03464868664741516, -0.009850038215517998, -0.012696290388703346, -0.0047167567536234856, 0.0009463403257541358, 0.026673009619116783, 0.02560855634510517, 0.023232823237776756, 0.013652754947543144, -0.04970528557896614, 0.009965740144252777, 0.02130446769297123, -0.015287999995052814, -0.001695988466963172, -0.024744654074311256, 0.030930817127227783, -0.008137659169733524, 0.007269899360835552, 0.012140924111008644, -0.002260032342746854, 0.01835794188082218, -0.044028207659721375, -0.021921541541814804, 0.01194037590175867, -0.024528678506612778, 0.01194037590175867, -0.019638368859887123, -0.01653757505118847, 5.113154475111514e-05, -0.041529059410095215, 0.03714783489704132, 0.00030540325678884983, -0.004986726678907871, 0.0010731297079473734, -0.00332834105938673, -0.01880531944334507, 0.023448798805475235, -0.0032029980793595314, 0.002495291642844677, 0.002211823360994458, -0.014593792147934437, 0.03341453894972801, 0.02762947417795658, 0.03677758947014809, -0.017617452889680862, -0.020440565422177315, -0.01469406671822071, 0.0018984656780958176, 0.012372327037155628, -0.021150199696421623, 0.004334942437708378, 0.011431289836764336, 0.042300399392843246, 0.029280144721269608, 0.001609212369658053, -0.006174593232572079, 0.050044674426317215, -0.020687393844127655, -0.028894474729895592, -0.023001421242952347, 0.021211907267570496, 0.0011039833771064878, 0.03057599999010563, -0.0208108089864254, 0.0355742983520031, 0.01066766120493412, 0.045540038496255875, -0.019761784002184868, 0.018265381455421448, 0.02378818951547146, 0.015596536919474602, 0.011346441693603992, 0.003120078705251217, -0.0004587075090967119, -0.02409672737121582, -0.0034883946646004915, -0.025022337213158607, 0.0038277851417660713, -0.0049674431793391705, 0.01530342735350132, 0.07219761610031128, -0.021011358126997948, -0.007605432998389006, -0.016923245042562485, -0.02533087320625782, -0.03788832202553749, 0.021273614838719368, 0.018203673884272575, 0.03464868664741516, 0.0053415438160300255, -0.0005934513173997402, -0.003116222098469734, -0.005183418747037649, 0.025161178782582283, -0.03538917377591133, 0.008068238385021687, 0.00019753589003812522, -0.003526961663737893, -0.011385009624063969, -0.03643820062279701, -0.013930438086390495, 0.04936589300632477, -0.02131989598274231, 0.015511689707636833, -0.03754893317818642, -0.0013382785255089402, -0.0024143008049577475, 0.008592750877141953, 0.005214272532612085, -0.01266543660312891, 0.018018551170825958, -0.04297918081283569, -0.010220282711088657, -0.011724399402737617, -0.024652093648910522, -0.021366175264120102, -0.0007795376004651189, 0.0008060524705797434, -0.01355248037725687, 0.018450502306222916, -0.03606795519590378, -0.05297577381134033, -0.021273614838719368, 0.017231782898306847, -0.012819705531001091, 0.0031297204550355673, -0.02557770349085331, -0.001695988466963172, -0.015982208773493767, 0.0019360686419531703, 0.002751762978732586, -0.00039724117959849536, -0.0005351185682229698, 0.0009492328390479088, 0.0011917235096916556, 0.0014009500155225396, -0.037271250039339066, -0.016614709049463272, -0.020255442708730698, 0.029974352568387985, 0.009796044789254665, 0.0005958617548458278, 0.0033360545057803392, 0.0010981983505189419, 0.010721654631197453, -0.01566595770418644, 0.01267315074801445, 0.01443952415138483, 0.014755774289369583, 0.019406966865062714, 0.001447230577468872, -0.011955802328884602, 0.011377295479178429, 0.0014125201851129532, -0.01809568516910076, -0.026225630193948746, -0.005102427676320076, 0.03381563723087311, -0.020116601139307022, 0.008183939382433891, -0.02961953543126583, -0.03912246972322464, 0.03427844122052193, -0.003413188736885786, -0.0064561334438622, -0.025762826204299927, -0.024235568940639496, -0.00421152776107192, -0.016244463622570038, -0.007458877749741077, 0.01605934277176857, -0.01366046816110611, 0.021690139546990395, -0.00463190907612443, -0.020872516557574272, -0.038011737167835236, 0.0062478710897266865, 0.010960770770907402, 0.031933560967445374, -0.028909901157021523, 0.04381223022937775, -0.0043426561169326305, -0.010590527206659317, -0.0008663135813549161, 0.020625688135623932, -0.018188245594501495, 0.037518080323934555, -0.0023911604657769203, 0.009117263369262218, -0.01834251545369625, 0.011115039698779583, -0.04245466738939285, -0.003839355194941163, 0.010359124280512333, -0.033784784376621246, -0.012002082541584969, -0.005495812278240919, -0.03890649601817131, -0.014539798721671104, 0.0023275248240679502, 0.007991104386746883, -0.0011975085362792015, 0.01733976975083351, 0.0021578294690698385, 0.001606319914571941, -0.03006691485643387, 0.04137478768825531, -0.034031614661216736, 0.0038721372839063406, 0.02003946714103222, -0.007813694886863232, 0.052605532109737396, 0.0180648323148489, 0.0014539798721671104, 0.025685692206025124, -0.012850559316575527, -0.001999704400077462, 0.009148117154836655, -0.02008574828505516, 0.04214613139629364, -0.016445012763142586, 0.010629094205796719, -0.028045998886227608, -0.0016709198243916035, 0.023155689239501953, -0.04282491281628609, -0.030190329998731613, -0.017941417172551155, 0.017694586887955666, -0.011099612340331078, 0.04970528557896614, 0.01581251248717308, 0.014817481860518456, -0.01230290625244379, 0.029187584295868874, -0.025438861921429634, -0.0025897810701280832, 0.02329453080892563, 0.012943120673298836, 0.021427882835268974, 0.020641114562749863, 0.011616411618888378, -0.01831166073679924, -0.005121711641550064, -0.008739305660128593, 0.013051108457148075, 0.02361849509179592, -0.010104581713676453, 0.0055575198493897915, -0.0065255542285740376, -0.009217537939548492, 0.010953057557344437, -0.00733932014554739, 0.0027112674433737993, 0.0007019212935119867, 0.007420310750603676, 0.017679160460829735, 0.005584516562521458, -0.029264718294143677, -0.0008667956572026014, -0.040294911712408066, 0.017756294459104538, -0.01653757505118847, 0.033229418098926544, 0.008785586804151535, 0.013583334162831306, -0.025222886353731155, 0.0020517699886113405, 0.004153677262365818, 0.002315954538062215, -0.016460441052913666, -0.0037005136255174875, -0.040294911712408066, 0.03316770866513252, -0.031486183404922485, -0.007952536456286907, -0.005071574356406927, -0.005403251387178898, -0.013675895519554615, 0.012364613823592663, 0.01755574531853199, -0.0009005418978631496, 0.0331060029566288, -0.012326046824455261, 0.006448419764637947, 0.004736040253192186, -0.0025627841241657734, 0.03619137033820152, -0.027953436598181725, -0.012719430960714817, -0.00816079881042242, 0.011647265404462814, 0.012009796686470509, 0.00914040394127369, -0.020440565422177315, 0.005503525957465172, -0.004624195862561464, -0.01467092614620924, -0.01456293836236, 0.01757117360830307, -0.02357221394777298, 0.0025704975705593824, 0.04239296168088913, 0.034772101789712906, 0.014925469644367695, 0.01215635146945715, 0.0075745792128145695, 0.03289002552628517, 0.010073727928102016, -0.015905072912573814, -0.027722034603357315, -0.01126930769532919, -0.011439003050327301, 0.005800492595881224, -0.015403701923787594, -0.0012669293209910393, -0.00652941083535552, 0.007242902182042599, 0.008021957240998745, -0.014508944936096668, -0.02332538552582264, -0.032242100685834885, 0.015018030069768429, 0.031054232269525528, -0.009333238936960697, -0.01331336423754692, 0.028678499162197113, 0.0018531493842601776, -0.028508802875876427, 0.010443971492350101, 0.00244515435770154, -0.009479794651269913, 0.0021366176661103964, 0.004261665046215057, -0.005233556032180786, 0.023726481944322586, -0.026503313332796097, 0.02253861539065838, -0.03134734183549881, -0.059794437140226364, -0.04516979306936264, 0.009194397367537022, -0.024960629642009735, 0.03381563723087311, 0.03504978492856026, -0.018620198592543602, -0.0004427985695656389, 0.01709294132888317, -0.006332718301564455, -0.00022115823230706155, -0.002637990051880479, 0.002879034262150526, 0.019715502858161926, 0.021628431975841522, -6.707060674671084e-05, 0.0018184389919042587, 0.00715419789776206, -0.022677456960082054, 0.01193266175687313, 0.004180673975497484, 0.019499527290463448, 0.0025685690343379974, -0.023433372378349304, -0.027907157316803932, -0.024451544508337975, -0.006814807187765837, 0.0035308185033500195, -0.005337687209248543, 0.004473784007132053, 0.00829192716628313, 0.0009434478124603629, -0.005437961779534817, 0.0011637624120339751, -0.0049635861068964005, -0.0233562383800745, -0.020425138995051384, 0.0010104581015184522, -0.0009448940400034189, -0.029696669429540634, -0.006062748841941357, -0.02838538959622383, 0.022646604105830193, -0.034494418650865555, -0.0018878597766160965, 0.0011599056888371706, 0.013891871087253094, -0.026441607624292374, -0.011824673973023891, 0.03909161686897278, 0.03847454488277435, -0.01627531833946705, 0.04140564426779747, 0.0022446054499596357, -0.005349257495254278, -0.005414821673184633, 0.034772101789712906, -0.000488355930428952, -0.019885199144482613, 0.045262355357408524, -0.03943100571632385, 0.007697993889451027, -0.004882595501840115, 0.0015127946389839053, 0.008762446232140064, -0.03313685581088066, -0.0361296646296978, 0.02360306866466999, 0.0315941721200943, 0.0011155535466969013, 0.03390819951891899, 0.02358764037489891, 0.008469335734844208, 0.030267463997006416, -0.015858793631196022, 0.009464367292821407, -0.004057259298861027, -0.00351346330717206, -0.006124455947428942, -0.02181355468928814, -0.022939713671803474, -0.05785065516829491, 0.00788311567157507, -0.03202612325549126, 0.010420831851661205, -0.03108508698642254, 0.03890649601817131, -0.0055575198493897915, -0.013120529241859913, 0.001638137735426426, -0.016738124191761017, 0.002209895057603717, -0.014262115582823753, 0.004477640613913536, -0.015264860354363918, -0.018172819167375565, -0.0026765570510178804, -0.02286257967352867, -0.021936969831585884, 0.02229178696870804, 0.015527116134762764, -0.02102678455412388, 0.04658906161785126, 0.04205356910824776, 0.0009395910892635584, -0.00614373991265893, -0.01656842790544033, -0.02355678752064705, 0.013992145657539368, 0.008453909307718277, -0.015326566994190216, 0.0028057568706572056, -0.006109029520303011, 0.025917094200849533, -0.033507101237773895, 0.0008007495198398829, -0.02053312584757805, 0.013853304088115692, 0.02483721449971199, 0.01754031889140606, -0.009063269942998886, 0.02256947010755539, -0.017494037747383118, -0.005167991854250431, -0.03338368609547615, 0.02482178807258606, 0.04736040532588959, -0.007886973209679127, 0.02462123893201351, 0.015395987778902054, 0.008708451874554157, -0.020502272993326187, -0.02003946714103222, 0.016475867480039597, -0.02027086913585663, 0.007057779934257269, -0.03983210399746895, 0.004485354293137789, -0.011354155838489532, 0.028925327584147453, 0.0005621155723929405, -0.04813174530863762, -0.007420310750603676, 0.0036291645374149084, 0.0016342810122296214, 0.023387091234326363, 0.021505016833543777, -0.0011820817599073052, 0.024420689791440964, 0.04140564426779747, 0.0331060029566288, -0.02131989598274231, -0.018882453441619873, 0.03483380749821663, -0.016506720334291458, 0.03995551913976669, -0.032458074390888214, -0.007273755967617035, -0.02036343142390251, -0.007775128353387117, 0.03742551803588867, 0.014076992869377136, -0.013629614375531673, 0.003062227973714471, -0.006602688226848841, -0.015048883855342865, -0.02181355468928814, 0.0007877331227064133, 0.0026649869978427887, 0.0023217396810650826, 0.005480385385453701, 0.01630617119371891, 0.017416903749108315, 0.03446356579661369, -0.019622942432761192, -0.0071657681837677956, -0.029002461582422256, 0.022615749388933182, -0.014886902645230293, 0.004169104155153036, 0.01903672330081463, 0.03933844715356827, 0.010058300569653511, 0.01676897704601288, -0.01602848805487156, 0.003056443063542247, 0.012256626039743423, -0.008338208310306072, -0.00954921543598175, -0.01392272487282753, 0.002585924230515957, -0.005476528778672218, -0.002211823360994458, 0.005140995141118765, -0.023649347946047783, 0.005862199701368809, 0.035173200070858, 0.012495742179453373, 0.01554254349321127, 0.031717587262392044, 0.008369062095880508, -0.05143309012055397, -0.024667520076036453, -0.016645561903715134, 0.02587081305682659, -0.038783080875873566, 0.02985093928873539, 0.004909592214971781, 0.016753550618886948, 0.029958926141262054, 0.02588624134659767, 0.022152945399284363, -0.014130987226963043, -0.0018589344108477235, 0.037518080323934555, -0.014871475286781788, -0.01331336423754692, -0.0012698218924924731, -0.003191427793353796, -0.006683679297566414, 0.0013267083559185266, 0.020240016281604767, 0.027644900605082512, 0.0005963438306935132, 0.0007014392176643014, -0.015905072912573814, -0.02178269997239113, -0.0036214510910212994, 0.002907959744334221, 0.023896178230643272, -0.052327848970890045, 0.019977759569883347, -0.0014549440238624811, -0.018219100311398506, 0.04794662445783615, 0.00702692661434412, -0.0023583783768117428, -0.006444563157856464, -0.041004545986652374, -0.037734054028987885, -0.031239354982972145, 0.004886452108621597, 0.02735179103910923, -0.01652214676141739, -0.008731592446565628, -0.017108367756009102, -0.0027305509429425, 0.02304770238697529, -0.004724470432847738, 0.00902470201253891, 0.03014404885470867, 0.02537715435028076, -0.01852763630449772, 0.0065718344412744045, 0.014832908287644386, 0.005310690496116877, -3.666888005682267e-05, 0.002310169627889991, -4.420151890371926e-05, 0.00559223024174571, -0.007674853783100843, -0.014400957152247429, -0.026981545612215996, 0.0038277851417660713, -0.01652214676141739, -0.010567386634647846, -0.03643820062279701, 0.01230290625244379, 0.014817481860518456, -0.014393243007361889, -0.0017779434565454721, -0.011523851193487644, 0.011115039698779583, 0.021011358126997948, -0.0006257512723095715, -0.0003068495134357363, -0.027428925037384033, -0.0020806952379643917, -0.01180924754589796, -0.006579548120498657, 0.02158215083181858, -0.00431951554492116, -0.01530342735350132, -0.00764785660430789, 0.016151903197169304, -0.006417565979063511, -0.013344218023121357, 0.01809568516910076, -0.01403071265667677, 0.0005510274786502123, 0.013174522668123245, -0.013097388669848442, -0.005800492595881224, -0.003968555014580488, 0.027182094752788544, -0.011408149264752865, -0.006479273550212383, -0.029449841007590294, 0.0022716023959219456, -0.03893734887242317, -0.007998817600309849, 0.00965720321983099, 0.004608768969774246, 0.018635625019669533, 0.018990442156791687, 0.020887942984700203, 0.0006609437405131757, 0.014231261797249317, 0.009934886358678341, -0.010251136496663094, 0.0021424025762826204, -0.026904411613941193, -0.008045097813010216, -0.008438482880592346, 0.024281848222017288, 0.026996973901987076, 0.00036156660644337535, -0.0537162646651268, 0.0023448800202459097, 0.022507762536406517, 0.003823928302153945, -0.016383305191993713, -0.014956323429942131, -0.006540981121361256, -0.025006910786032677, 0.0008364240638911724, 0.019391540437936783, -0.0007588077569380403, 0.02634904533624649, 0.006618115119636059, -0.007566865999251604, -0.020887942984700203, 0.009850038215517998, -0.0031258638482540846, -0.005947047378867865, -0.038258567452430725, 0.008045097813010216, -0.06436078250408173, -0.025917094200849533, 0.012002082541584969, 0.009680342860519886, -0.003972411621361971, -0.01113817933946848, 0.01885160058736801, -0.008970708586275578, -0.009996592998504639, -0.012534309178590775, -0.0011743683135136962, -0.03542003035545349, 0.019221844151616096, 0.03964698314666748, -0.010143148712813854, 0.012056076899170876, -0.003775719553232193, -0.011840101331472397, 0.005113997962325811, -0.0165530014783144, -0.017200928181409836, -0.00764785660430789, 0.048316869884729385, -0.00457791518419981, 0.0032801323104649782, 0.07515957206487656, -0.017154648900032043, 0.02588624134659767, -0.02588624134659767, 0.0018087972421199083, 0.008978421799838543, -0.006876514758914709, -0.01340592559427023, -0.0018280807416886091, 0.022631177678704262, -0.009040129370987415, 0.01467092614620924, 0.022384347394108772, 0.04109710454940796, 0.002880962798371911, 0.004404363222420216, 0.01278113853186369, -0.0033302693627774715, -0.012626869603991508, 0.007578435819596052, -0.00291567319072783, 0.0010683088330551982, -0.015033457428216934, 0.022631177678704262, 0.03032917156815529, 0.008970708586275578, 0.002792258281260729, 0.022461481392383575, -0.022662030532956123, 0.01042854506522417, 0.011192173697054386, -0.0013459919719025493, -0.03218039125204086, -0.00520270224660635, -0.008507903665304184, 0.06096687912940979, 0.015951354056596756, 0.005692504812031984, 0.005680934526026249, -0.003455612575635314, 0.0047013298608362675, 0.00432337261736393, 0.033753931522369385, 0.01880531944334507, -0.0025550706777721643, 0.016984952613711357, 0.011539277620613575, 0.006818664260208607, 0.03059142641723156, 0.0238344706594944, 0.0003348106693010777, 0.02485264278948307, -0.009078696370124817, 0.01707751303911209, -0.0026958405505865812, -0.020517699420452118, -0.004219241440296173, -0.008021957240998745, -0.006024181842803955, 0.003584812395274639, -0.001510866335593164, -0.006965219043195248, 0.0028115420136600733, 0.0047514671459794044, 0.009225251153111458, 0.022461481392383575, 0.0038798507302999496, 0.04439844936132431, 0.004720613360404968, -0.015118304640054703, 0.041498202830553055, -0.0028327538166195154, -0.009788330644369125, -0.003390048397704959, 0.008608177304267883, -0.009464367292821407, -0.017663734033703804, -0.014462663792073727, -0.018172819167375565, -0.00021392690541688353, 0.002906031208112836, 0.007370173465460539, 0.03958527743816376, -0.014184980653226376, -0.004107396584004164, -0.034494418650865555, -0.01632159762084484, -0.018404223024845123, -0.02384989708662033, -0.022137517109513283, -0.0072004785761237144, 0.009533788077533245, -0.0038875641766935587, -0.01052110642194748, 0.024004165083169937, -0.005302976816892624, 0.014871475286781788, -0.015735378488898277, -0.060812611132860184, -0.015966780483722687, -0.015935927629470825, -0.026688436046242714, -0.026642154902219772, -0.012827418744564056, 0.029249291867017746, 0.002558927284553647, 0.009865465573966503, 0.00891671422868967, 0.006776240188628435, -0.014948609285056591, -0.0015301498351618648, 0.02587081305682659, -0.024914348497986794, -0.017740868031978607, -0.019129283726215363, -0.0015407558530569077, 0.008808726444840431, 0.000942001526709646, 0.0034459708258509636, 0.005785065703094006, 0.01167811919003725, -0.0077789849601686, -0.020702822133898735, -0.007798268459737301, -0.012403180822730064, -0.0019254627404734492, -0.00038205538294278085, 0.018990442156791687, 0.002871320815756917, -0.00801424402743578, -0.014994890429079533, 0.004003265406936407, 0.029156731441617012, 0.0023930887691676617, 0.001428911229595542, -0.024991484358906746, -0.0087933000177145, 0.011631838977336884, -0.005434105172753334, 0.030159475281834602, -0.008523330092430115, -0.03211868554353714, -0.00665668211877346, -0.022446054965257645, -0.015889646485447884, -0.0005249946843832731, 0.010629094205796719, 0.0071503412909805775, -0.0016082482179626822, 0.027660327032208443, -0.0036928001791238785, 0.00041772995609790087, -0.006594975013285875, 0.017247209325432777, -0.027290083467960358, -0.014038425870239735, 0.005534379277378321, -0.00040374937816523015, 0.020178308710455894, -0.01658385433256626, 0.00040254415944218636, 0.015210865996778011, 0.0073624602518975735, -0.01906757615506649, -0.003384263487532735, 0.010760222561657429, 0.005630797240883112, -0.013621901161968708, 0.018465928733348846, -0.00838448852300644, 0.021505016833543777, 0.014316109009087086, -0.0027556195855140686, -0.03514234721660614, -0.005025293678045273, -0.005804349202662706, -0.02161300554871559, -0.0019514955347403884, 0.017586600035429, 0.0010538460919633508, 0.023001421242952347, 0.0002933510404545814, 0.017478611320257187, 0.026966119185090065, -0.02503776364028454, -0.013783883303403854, 0.011199886910617352, 0.009448940865695477, -0.005113997962325811, -0.013668181374669075, -0.02408129908144474, 0.006259440910071135, 0.007431881036609411, -0.000578024482820183, -0.009202111512422562, 0.012642296962440014, 0.003924202639609575, 0.0010470969136804342, -0.022230079397559166, -0.016182756051421165, 0.0012032936792820692, 0.017185501754283905, -0.027922583743929863, -0.00772499106824398, -0.0008238897426053882, -0.010937631130218506, 0.002346808323636651, 0.005761925596743822, -0.0008528151083737612, -0.0056577944196760654, -0.010497965849936008, 0.03390819951891899, -0.028894474729895592, 0.011693545617163181, -0.011886381544172764, -0.02207581140100956, -0.03566685691475868, -0.023402519524097443, 0.023988738656044006, 0.033445391803979874, -0.0020749103277921677, -0.004358083009719849, -0.015087450854480267, 0.005812062416225672, 0.009580068290233612, 0.004874881822615862, -0.013992145657539368, -0.01215635146945715, 0.00991174578666687, -0.002003561006858945, 0.009117263369262218, 0.014454950578510761, 0.00161403336096555, -0.0036310928408056498, 0.006432992871850729, -0.016707269474864006, 0.024466970935463905, 0.025238312780857086, -0.02759861946105957, 0.04091198369860649, -0.0028616790659725666, -0.003037159563973546, -0.007347033359110355, -0.016907818615436554, -0.021890688687562943, -0.02355678752064705, -0.027752887457609177, -0.027444351464509964, -0.009101836942136288, 0.002857822459191084, 0.038011737167835236, -0.005634653847664595, -0.00608588894829154, 0.027783742174506187, -0.006880371365696192, -0.00789082981646061, 0.021181054413318634, -0.019144710153341293, 0.017987698316574097, -0.00645227637141943, -0.005815919488668442, 0.017879709601402283, 0.009988879784941673, 0.023633921518921852, -0.008492476306855679, 0.03671588376164436, 0.006695249117910862, 0.014948609285056591, -0.00015053222887217999, 0.006220873910933733, -0.031038805842399597, 0.0024567246437072754, 0.01278113853186369, 0.010320557281374931, 0.005588373634964228, 0.007709564175456762, -0.0039145611226558685, -0.027197521179914474, -0.024266421794891357, -0.042022716253995895, -0.0003338464885018766, 0.005923907272517681, 0.022723738104104996, -0.00707706343382597, 0.007300752680748701, 0.01029741670936346, 0.023479653522372246, -0.011863240972161293, -0.020193735137581825, -0.005171848461031914, 0.023988738656044006, -0.014956323429942131, -0.009857751429080963, 0.009772904217243195, -0.02886362001299858, 0.028956182301044464, 0.017154648900032043, 0.02312483638525009, -0.009001562371850014, -0.01633702591061592, -0.020995931699872017, -0.0170312337577343, 0.0032666337210685015, 0.011477570049464703, -0.0006908332579769194, -0.015519402921199799, 0.008808726444840431, 0.0012486099731177092, 0.028200266882777214, 0.015102878212928772, 0.0040649729780852795, 0.008045097813010216, -0.020240016281604767, 0.008693025447428226, -0.000244177965214476, -5.989953569951467e-05, 0.018388794735074043, -0.0010490252170711756, 0.0043927934020757675, 0.018759040161967278, -0.0031393622048199177, 0.009356379508972168, 0.013066534884274006, 0.017463184893131256, -0.024143006652593613, 0.007840692065656185, 0.03031374327838421, 0.015033457428216934, -0.015966780483722687, -0.006486986763775349, 0.018944161012768745, -0.007682566996663809, -0.0006845660973340273, -0.022245505824685097, -0.03363051638007164, -0.01028199028223753, -0.011199886910617352, 0.019360685721039772, 0.03032917156815529, -0.009587782435119152, 0.036283932626247406, 0.04498467221856117, -0.03409332036972046, 0.005630797240883112, -0.023927031084895134, 0.009502934291958809, -0.0010461327619850636, -0.03168673440814018, -0.0038123582489788532, -0.001999704400077462, 0.016398733481764793, -0.013081962242722511, 0.0049828700721263885, -0.01217177789658308, -0.03136276826262474, 0.004242381546646357, -0.00039796429337002337, -0.019175564870238304, -0.01154699083417654, -0.0068842279724776745, 0.008021957240998745, -0.0008658315055072308, 0.0019322119187563658, 0.001912928419187665, -0.019453248009085655, -0.005893053486943245, 0.0026958405505865812, 0.02906416915357113, -0.00045364556717686355, 0.0071503412909805775, -0.012364613823592663, -0.03384649008512497, 0.007084777113050222, -0.03014404885470867, 0.0016728481277823448, -0.007605432998389006, 0.004415933508425951, 0.002240748843178153, 0.017386050894856453, -0.00890128780156374, 0.009726624004542828, -0.00046545674558728933, 0.004658906254917383, -0.008893574588000774, -0.011508423835039139, -0.023695629090070724, -0.016938671469688416, 0.029048742726445198, -0.011608698405325413, -0.008021957240998745, -0.0018425433663651347, 0.0160747691988945, 0.022214652970433235, -0.0040148356929421425, 0.008307354524731636, -0.0018222957151010633, -0.003633021144196391, 0.006567977834492922, -0.01517229899764061, -0.0034864661283791065, 0.01932983286678791, -0.005611513741314411, 0.005214272532612085, 0.004959729500114918, 0.015511689707636833, -0.009742050431668758, -0.00020862392557319254, -0.015257146209478378, -0.006965219043195248, 0.06368200480937958, -0.024652093648910522, 0.01953038200736046, -0.01659928262233734, 0.0190984308719635, -0.01141586247831583, -0.034525271505117416, -0.03616051748394966, 0.011685832403600216, 0.0053454008884727955, -0.0180648323148489, -0.014817481860518456, 0.01443952415138483, -0.007347033359110355, 0.02357221394777298, 0.02513032592833042, 0.01090677734464407, -0.007088633719831705, 0.015249432995915413, -0.005939334165304899, -0.003548173699527979, 0.032458074390888214, 0.004770750645548105, -0.012811992317438126, -0.007370173465460539, 0.017586600035429, 0.016460441052913666, -0.024744654074311256, -0.004107396584004164, 0.01706208661198616, 0.0020440565422177315, 0.021890688687562943, 0.011647265404462814, -0.031748440116643906, -0.011762966401875019, -0.009101836942136288, -0.006155309733003378, 0.014200408011674881, -0.0006884228205308318, -0.0019283551955595613, 0.030298316851258278, -0.02256947010755539, -0.009942599572241306, 0.010251136496663094, 0.0033939052373170853, -0.02054855227470398, 0.017447758466005325, -0.004034119192510843, -0.01051339227706194, 0.008839580230414867, 0.0296041090041399, -0.004886452108621597, 0.004828601609915495, -0.007408740930259228, -0.006001041270792484, 0.016722695901989937, -0.0233562383800745, 0.0004280948487576097, -0.009410373866558075, 0.007408740930259228, 0.032272953540086746, -0.018126539885997772, -0.01808025874197483, 0.006880371365696192, 0.028462523594498634, 0.001169547438621521, -0.0029407416004687548, -0.021474163979291916, -0.04890308901667595, 0.006899654865264893, -0.015735378488898277, -0.0022716023959219456, -0.0018464000895619392, 0.0067723835818469524, -0.013135955668985844, -0.007250615395605564, -0.0025049333926290274, 0.005866056773811579, -0.011716686189174652, 0.002260032342746854, -0.00432337261736393, -0.016938671469688416, 0.009734337218105793, -0.020949650555849075, -0.004562488291412592, -0.014609219506382942, -0.00978061743080616, -0.01381473708897829, 0.0013373143738135695, 0.002628348069265485, -0.007451164536178112, 0.025392580777406693, -0.00904784258455038, 0.00432337261736393, -0.01604391448199749, -0.010929916985332966, 0.00514870835468173, -0.001219684723764658, 0.02159757912158966, 0.004975156392902136, 0.01051339227706194, 0.001988134114071727, -0.007937110029160976, 0.01931440643966198, -0.006726102903485298, -0.0018560418393462896, -0.017694586887955666, 0.007547582499682903, -0.012333760038018227, -0.021443309262394905, -0.0009636955219320953, 0.0601646825671196, -0.005083144176751375, 0.009340953081846237, 0.017756294459104538, 0.00941808708012104, -0.022739164531230927, 0.011793820187449455, 0.011708972975611687, 0.026966119185090065, -0.01852763630449772, -0.006240157410502434, -0.026888985186815262, 0.017154648900032043, 0.020872516557574272, -0.0027768316213041544, -0.00400712201371789, 0.011385009624063969, 0.011600985191762447, 1.987109862966463e-05, 0.01659928262233734, 0.013128242455422878, 0.008106805384159088, -0.014169554226100445, 0.009333238936960697, -0.00043797766556963325, 0.013290224596858025, -0.004284805152565241, 0.005318403709679842, -0.0030178758315742016, 0.01757117360830307, -0.005765782203525305, 0.001973671605810523, 0.0009381448035128415, -0.014393243007361889, -0.013398212380707264, 0.017586600035429, 0.009533788077533245, 0.02159757912158966, -0.017416903749108315, 0.005889196880161762, -0.0022523188963532448, -0.008939854800701141, 0.02787630259990692, 0.02156672440469265, -0.022214652970433235, 0.0019939192570745945, -0.006186163518577814, -0.008893574588000774, -0.0008050883188843727, -0.020440565422177315, -0.011130466125905514, -0.01327479723840952, 0.002190611558035016, 0.023896178230643272, 0.01882074773311615, -0.009842325001955032, -0.0005249946843832731, -0.009055555798113346, -0.0015021887375041842, 0.008438482880592346, -0.01292769331485033, -0.022152945399284363, -0.0028539656195789576, -0.027737461030483246, -0.011840101331472397, -0.013444492593407631, -0.01392272487282753, -0.015488549135625362, -0.0019678864628076553, -0.01602848805487156, -0.011816960759460926, 0.010459398850798607, 0.01001973357051611, -0.006845660973340273, -0.008631317876279354, -6.59256475046277e-05, 0.006699106190353632, 0.028786486014723778, 0.023232823237776756, -0.01541141513735056, 0.012588302604854107, -5.3843294153921306e-05, 0.008091378025710583, -0.018234526738524437, -0.0028771059587597847, 0.018759040161967278, 0.007736561354249716, -0.027212949469685555, 0.011315588839352131, 0.0020575551316142082, -0.010266562923789024, 0.009009275585412979, -0.004018692299723625, 0.012642296962440014, 0.004412076901644468, 0.005542092956602573, -0.006213160697370768, -0.03313685581088066, 0.0012630727142095566, -0.025253739207983017, 0.0022716023959219456, 0.005360827315598726, -0.0007559152436442673, 0.0003552994458004832, 0.007628573104739189, -0.0003601203497964889, 0.02031715027987957, -0.01366046816110611, 0.002211823360994458, 0.011724399402737617, -0.0037988596595823765, -0.009749763645231724, -0.019700076431035995, -0.01178610697388649, -0.026904411613941193, 0.014964036643505096, 0.000995031325146556, 0.0008383524254895747, -0.012966260313987732, -0.020980505272746086, -0.0024008022155612707, -0.0006807093741372228, -0.02031715027987957, 0.0025762824807316065, -0.00476303743198514, -0.003135505598038435, -0.029496122151613235, -0.007458877749741077, -0.005777352023869753, -0.01368360873311758, 0.006556407548487186, 0.018620198592543602, -0.006614258512854576, -0.009626349434256554, 0.017401477321982384, -0.009248391725122929, 0.0048170313239097595, 0.004346512723714113, 0.020440565422177315, -0.009988879784941673, 0.012757997959852219, -0.00042954113450832665, 0.010721654631197453, 0.0018637552857398987, -0.015773946419358253, -0.02059483341872692, -0.0007824301137588918, -0.02054855227470398, -0.00047533956239931285, -0.0023352382704615593, 0.01783342845737934, -0.02283172495663166, 0.01051339227706194, 0.006286438088864088, 0.0003405957540962845, -0.018219100311398506, -0.01167811919003725, 0.013591047376394272, -0.015025744214653969, 0.010821929201483727, 0.0119172353297472, 0.0043426561169326305, -0.020209163427352905, -0.0009622492361813784, -0.005862199701368809, 0.012194918468594551, 0.003428615629673004, 0.013197663240134716, 0.01902129501104355, 0.020162882283329964, 0.016167329624295235, 0.019391540437936783, -0.0030101623851805925, -0.024420689791440964, -0.005206558853387833, 0.00941808708012104, -0.018512209877371788, -0.011832387186586857, -0.000389045657357201, 0.01355248037725687, 0.00032468681456521153, -0.014917755499482155, 0.026163924485445023, 0.0016304242890328169, -0.018604770302772522, -0.034000758081674576, 0.01676897704601288, -0.029465267434716225, -0.00014812179142609239, 0.024790935218334198, -0.006432992871850729, 0.021412456408143044, 0.006348145194351673, 0.006899654865264893, -0.004909592214971781, -0.020024040713906288, 0.019391540437936783, -0.004886452108621597, -0.0016940600471571088, -0.015118304640054703, -0.004149820655584335, 0.0032666337210685015, 0.013336504809558392, 0.010366837494075298, 0.003704370465129614, -0.01505659706890583, -0.010243423283100128, -0.014447237364947796, -0.003172144293785095, -0.018450502306222916, -0.03662332147359848, -0.002331381430849433, 0.007809838745743036, 0.017154648900032043, -0.00017692659457679838, 0.02485264278948307, 0.02509947121143341, 0.001685382449068129, 0.01732434332370758, 0.033753931522369385, -0.0011107325553894043, 0.0021636146120727062, -0.00034469348611310124, -0.017895136028528214, -0.018712759017944336, -0.016707269474864006, 0.015750804916024208, 0.005218129139393568, 0.009634062647819519, -0.031007951125502586, 0.024636665359139442, 0.002090336987748742, -0.007308466359972954, 0.01780257560312748, 0.03059142641723156, 0.02380361594259739, 0.010482538491487503, 0.0036870152689516544, 0.004188387654721737, -0.023279104381799698, -0.010575099848210812, 0.004234667867422104, -0.011492997407913208, -0.004045689012855291, -0.002796115120872855, -0.014501230791211128, 0.005692504812031984, -0.002204109914600849, -0.030421731993556023, -2.7162690457771532e-05, -0.007852262817323208, -0.0027131957467645407, -0.006606544833630323, 0.007096347399055958, 0.0008947568130679429, 0.01066766120493412, -0.0011338728945702314, 0.00829192716628313, 0.0022311070933938026, -0.015311140567064285, -0.009464367292821407, -0.0011608698405325413, 0.006043465342372656, -0.007929396815598011, 0.016259891912341118, 0.0243127029389143, -0.03125477954745293, 0.026966119185090065, -0.010837356559932232, 0.0027421212289482355, -0.017108367756009102, -0.003341839648783207, 0.011462143622338772, 0.009256104938685894, -0.0007438629982061684, 0.005511239171028137, -0.0003080547321587801, -0.019700076431035995, -0.006298007909208536, 0.018882453441619873, 0.005083144176751375, 0.011793820187449455, 0.01783342845737934, -0.029789231717586517, 0.0014327679527923465, -0.020872516557574272, -0.006332718301564455, 0.018450502306222916, 0.006980645935982466, -0.0014250545063987374, 0.017463184893131256, -0.011439003050327301, -0.0018435076344758272, -0.004913449287414551, -0.010968484915792942, 0.0004893201403319836, 0.01202522311359644, -0.0055575198493897915, 0.01658385433256626, 0.005052290856838226, -0.014856048859655857, 0.01004287414252758, -0.0037352240178734064, -0.03242722153663635, 0.01604391448199749, 0.005815919488668442, 0.022878006100654602, 0.005248982924968004, -0.030421731993556023, 0.008214793168008327, 0.003791146446019411, 0.013452205806970596, -0.022384347394108772, 0.006278724409639835, -0.02687355875968933, -0.006151453126221895, 0.017432332038879395, 0.03415502607822418, -0.023140262812376022, 0.002724766032770276, -0.0008253360283561051, 0.00965720321983099, 0.008831867016851902, 0.012588302604854107, 0.010305129922926426, -0.018604770302772522, 0.022739164531230927, 0.012063790112733841, 0.01652214676141739, 0.013267084024846554, -0.01835794188082218, -0.004223098047077656, -0.016954099759459496, -0.009256104938685894, 0.005927763879299164, 0.008461622521281242, 0.007547582499682903, -0.0038856358733028173, 0.006483130156993866, -0.002310169627889991, -0.009603208862245083, -0.004531634971499443, 0.011948089115321636, -0.009325525723397732, 0.0010644521098583937, 0.007019212935119867, 0.005360827315598726, 0.011469856835901737, 0.0165530014783144, 0.0035732421092689037, -0.013930438086390495, 0.011223027482628822, 0.01829623430967331, 0.016445012763142586, -0.013675895519554615, 0.000600682629738003, 0.024436118081212044, 0.002929171547293663, 0.006363572087138891, 0.018620198592543602, -0.00015462998999282718, 0.013544767163693905, -0.019854344427585602, -0.020764529705047607, 0.004801604431122541, 0.00514870835468173, 0.0024470826610922813, 0.01467864029109478, -0.05195760354399681, 0.012395467609167099, -0.014470377936959267, -0.02309398166835308, -0.002688127104192972, -0.02084166370332241, -0.002339094877243042, 0.002040199702605605, 0.009641775861382484, -0.008469335734844208, -0.007470448035746813, -0.013074248097836971, -0.0052296994253993034, -0.0014385529793798923, -0.0031528607942163944, -0.01729349046945572, 0.004828601609915495, 0.02256947010755539, 0.014485804364085197, 0.0019495671149343252, -0.006413709372282028, -0.024451544508337975, -0.01678440347313881, -0.008970708586275578, -0.003999408800154924, -0.0024432260543107986, -0.010621380992233753, 0.0055575198493897915, -0.02863221801817417, 0.01016628835350275, 0.0054418183863162994, -0.007123344112187624, 0.0017393764574080706, 0.00023562090063933283, 0.0027691181749105453, 0.019376114010810852, 0.021196480840444565, -0.030483439564704895, -0.006683679297566414, 0.024528678506612778, 0.014115559868514538, -0.013999858871102333, 0.02036343142390251, 0.003926131408661604, -0.0035944541450589895, 7.134914631024003e-05, 0.007046210113912821, 0.004955872893333435, -0.0020382713992148638, -0.0021019072737544775, 0.0020691251847893, 0.01959208957850933, 0.003199141239747405, 0.0069845025427639484, 0.017000379040837288, 0.0032087829895317554, 0.0059316204860806465, 0.02007032185792923, 0.020887942984700203, -0.0014269828097894788, -0.004496924579143524, 0.008484763093292713, -0.0013614187482744455, -0.012919980101287365, -0.0015918571734800935, 0.007042353041470051, -0.016660988330841064, -0.01757117360830307, 0.020903371274471283, -0.013444492593407631, 0.0010162432445213199, 0.014262115582823753, -0.011739826761186123, -0.0020884086843580008, 0.0037005136255174875, 0.015118304640054703, 0.031177647411823273, 0.025670263916254044, -0.002233035396784544, 0.0280922781676054, -0.005565233062952757, -0.01052110642194748, -0.003270490560680628, 0.03012862242758274, 0.010413117706775665, -0.02233806625008583, -0.005761925596743822, -0.0027131957467645407, 0.008932141587138176, -0.00864674523472786, 0.01165497861802578, -0.029033316299319267, 0.02408129908144474, 0.009078696370124817, 0.003193356329575181, -0.007960250601172447, -0.007277612574398518, -0.0035501020029187202, -0.01584336720407009, 0.01627531833946705, -0.0005409036530181766, 0.007096347399055958, -0.013259370811283588, 0.022476907819509506, 0.01809568516910076, 0.01052110642194748, 0.0025994228199124336, -0.009101836942136288, -0.014123274013400078, 0.007701850961893797, -0.006043465342372656, -0.016136476770043373, -0.03535832092165947, -0.012233485467731953, -0.007674853783100843, 0.0040148356929421425, 0.027521485462784767, 0.015997635200619698, -0.0004673851071856916, 0.007983390241861343, 0.020965076982975006, -0.01832708716392517, -0.0020729817915707827, 0.006695249117910862, -0.0029310998506844044, -0.0015243648085743189, 0.011439003050327301, -0.004894165322184563, -0.0021076921839267015, 0.03258148953318596, 0.0010335984406992793, 0.012572876177728176, 0.022214652970433235, -0.003698585322126746, -0.0027035539969801903, -0.0034883946646004915, -0.010305129922926426, 0.007057779934257269, -0.015287999995052814, 1.8967180949402973e-05, 0.005306833423674107, 0.007937110029160976, 0.011007051914930344, -0.00902470201253891, -0.006136026233434677, 0.018219100311398506, 0.004693616647273302, 0.02460581250488758, -0.005056147463619709, 0.0092715322971344, 0.031748440116643906, -0.0032801323104649782, 0.009124976582825184, -0.012395467609167099, 0.010698514990508556, -0.013930438086390495, 0.01042854506522417, 0.025438861921429634, 0.017478611320257187, 0.007127200718969107, -0.006776240188628435, -0.018481357023119926, -0.011708972975611687, 0.0024567246437072754, 0.001592821441590786, -0.016876965761184692, 0.004234667867422104, 0.003241565078496933, 0.0037622209638357162, 0.012842846103012562, 0.019761784002184868, -0.0011049475288018584, -0.0009762298432178795, 0.0033032724168151617, -0.008700738660991192, -0.005615370348095894, -0.016198184341192245, 0.0016313885571435094, 0.005376254208385944, -0.012079217471182346, 0.003314842702820897, -0.004562488291412592, -0.009834611788392067, 0.013228517025709152, 0.019514955580234528, 0.0007183123379945755, 0.033445391803979874, -0.02758319303393364, -0.005422534886747599, -0.004940446000546217, 0.0025338586419820786, 0.015079737640917301, 0.013074248097836971, -0.007053923327475786, -0.010590527206659317, 0.008808726444840431, -0.026703862473368645, -0.0030487296171486378, 0.009749763645231724, 0.02233806625008583, -0.00728146918118, 0.001394200837239623, 0.004678189754486084, -0.0028539656195789576, -0.01267315074801445, -0.003756436053663492, 0.00040808817720972, -0.008546470664441586, -0.015743091702461243, -0.009132690727710724, 0.0016005347715690732, 0.010251136496663094, 0.011539277620613575, -0.02159757912158966, -0.008415342308580875, -0.008878147229552269, 0.0034729677718132734, -0.006008754950016737, -0.01683068461716175, 0.010305129922926426, 0.002788401674479246, -0.01960751600563526, 0.01566595770418644, -0.02102678455412388, -0.0038277851417660713, 0.003775719553232193, 0.007408740930259228, 0.004458357114344835, -0.006756956689059734, 0.012272052466869354, -0.00527983671054244, -0.013969005085527897, 0.01679982990026474, 0.01804940402507782, 0.0036928001791238785, 0.0013498486950993538, 0.014100133441388607, -0.0005775424069724977, -0.01979263871908188, -0.02057940699160099, -0.014632359147071838, -0.0006267154240049422, -0.01601306162774563, -0.0018078329740092158, 0.028909901157021523, -0.005110141355544329, 0.019237272441387177, -0.016676416620612144, 0.017956843599677086, -0.012811992317438126, 0.032519783824682236, 0.00025140930665656924, -0.010312844067811966, -0.010112294927239418, -0.001312245731242001, 0.006371285766363144, -0.011261594481766224, 0.0036735166795551777, -0.005187275353819132, -0.0010837356094270945, 0.03292088210582733, -0.022461481392383575, -0.0038798507302999496, -0.007983390241861343, -0.001148335519246757, -0.02386532351374626, -0.0017470897873863578, -0.002209895057603717, -0.012596015818417072, 0.006058892235159874, -0.017756294459104538, -0.016630135476589203, 0.024420689791440964, -0.0032801323104649782, 0.0004946230910718441, 0.010351411066949368, 0.015365133993327618, -0.01204064954072237, 0.019622942432761192, 0.00338233495131135, 0.0005944154690951109, 0.02309398166835308, -0.014539798721671104, 0.0006349109462462366, -0.00803738459944725, 0.009101836942136288, -0.007697993889451027, 0.001984277507290244, 0.023988738656044006, -0.012295193038880825, 0.0032299950253218412, 0.001198472804389894, -0.019190991297364235, -0.021921541541814804, -0.0012341473484411836, 0.012372327037155628, -0.012218059040606022, -0.0036098810378462076, -0.006517840549349785, 0.014323822222650051, -0.005326116923242807, 0.00013727479381486773, 0.0020228445064276457, 0.01957666128873825, -0.020949650555849075, 0.024220140650868416, 0.002373805269598961, 0.009163543581962585, 0.0016603138064965606, -0.009580068290233612, -0.0011213385732844472, -0.027891729027032852, 0.00733546307310462, 0.023387091234326363, -0.014130987226963043, -0.007227475289255381, -1.749078364809975e-05, 0.00702692661434412, -0.00939494650810957, -0.02682727761566639, -0.022183798253536224, -0.008885860443115234, -0.028153985738754272, -0.0025145751424133778, -0.008700738660991192, -0.018203673884272575, 0.01979263871908188, -0.0009675522451288998, 0.010806502774357796, -0.012387753464281559, -0.022214652970433235, -0.0006223766249604523, -0.025716545060276985, -0.011099612340331078, 0.013699035160243511, -0.0032936306670308113, 0.019221844151616096, -0.03292088210582733, 0.02332538552582264, 0.005221985746175051, -0.0036793018225580454, -0.015982208773493767, 0.021474163979291916, 0.003002449171617627, 0.0049635861068964005, 0.009718909859657288, -0.005553663242608309, -0.019406966865062714, -0.0013633471680805087, -0.0017056302167475224, -0.017432332038879395, 0.0049828700721263885, 0.027691181749105453, 0.0038200716953724623, 0.004003265406936407, -0.008507903665304184, 0.0038489969447255135, -0.00892442837357521, 0.002717052586376667, 0.02786087617278099, 0.002526145428419113, 0.0150411706417799, 0.004682046361267567, -0.0065255542285740376, -0.027691181749105453, 0.01755574531853199, 0.0046511925756931305, 0.00772499106824398, 0.0135293398052454, -0.017478611320257187, 0.01204064954072237, 0.010490252636373043, -0.02380361594259739, -0.01584336720407009, -0.005727215204387903, -0.00965720321983099, 0.01902129501104355, -0.005792778916656971, -0.016367878764867783, 0.002053698292002082, 0.0029195297975093126, 0.0071657681837677956, -0.012187205255031586, -0.0011512280907481909, 0.023541361093521118, 0.01193266175687313, 0.00165934965480119, 0.014640072360634804, 0.01541141513735056, -0.009302385151386261, 0.02105763927102089, 0.015149158425629139, 0.01001973357051611, 0.00502143707126379, -0.022507762536406517, -0.008623604662716389, -0.0027324792463332415, 0.008446196094155312, 0.0029696670826524496, 0.0012389682233333588, -0.00538782449439168, 0.023155689239501953, -0.0017557673854753375, -0.0008754732552915812, -0.00770570756867528, -0.01609019562602043, -0.009055555798113346, -0.011361869052052498, -0.0054071079939603806, 0.002267745789140463, -0.0037930747494101524, 0.019206417724490166, -0.00470904354006052, 0.0032473502214998007, -0.04291747510433197, -0.0041266800835728645, -0.03412417322397232, 0.0027671896386891603, -0.005410964600741863, 0.016753550618886948, -0.0038085016421973705, 0.004697473254054785, 0.008947568014264107, -0.0061938767321407795, -0.0013421352487057447, 0.013760742731392384, 0.028153985738754272, 0.012395467609167099, 0.004855598323047161, -0.013591047376394272, -0.013135955668985844, -0.010845069773495197, 0.008176226168870926, 0.0012997114099562168, -0.004300232045352459, 0.0026611301582306623, -0.012680863961577415, -0.0033726932015269995, -0.015380561351776123, 0.0015966781647875905, 0.0025704975705593824, -0.01581251248717308, 0.012842846103012562, 0.022214652970433235, -0.004234667867422104, -0.000942001526709646, -0.00026828242698684335, -0.00772499106824398, -0.011577844619750977, -0.010999337770044804, -0.0008701703045517206, 0.01228747982531786, -0.03659246861934662, 0.010181715711951256, 0.008847293443977833, -0.013876443728804588, -0.03142447769641876, -0.002516503445804119, 0.008754733018577099, -0.003158645937219262, 0.005630797240883112, 0.009371805936098099, -0.01478662807494402, -0.0012563234195113182, -0.012765711173415184, -0.0013884158106520772, 0.008006530813872814, 0.0009487507632002234, -0.0006623900262638927, -0.010096867568790913, 0.010096867568790913, -0.0016902033239603043, -0.005596086848527193, -0.01707751303911209, 0.020764529705047607, -0.0011888309381902218, 0.002958096796646714, 0.011454430408775806, -0.0032396367751061916, 0.0190984308719635, -0.024667520076036453, -0.010104581713676453, 0.013344218023121357, 0.002574354177340865, -0.01416184101253748, 0.010883636772632599, -0.0022908858954906464, 0.00790625624358654, -0.008932141587138176, -0.002516503445804119, 0.020764529705047607, -0.02079538255929947, 0.01752489246428013, 0.0005804349202662706, 0.024960629642009735, -0.0041768173687160015, 0.01576623134315014, -0.007543725427240133, -0.008083664812147617, 0.011948089115321636, -0.012472601607441902, -0.009857751429080963, -0.021736420691013336, -0.010829643346369267, -0.001230290625244379, 0.003027517581358552, 0.017170075327157974, 0.006166880019009113, 0.01029741670936346, -0.0005577767733484507, -0.005715644918382168, 0.009464367292821407, -0.004689760040491819, 0.010629094205796719, 0.022152945399284363, 0.0087933000177145, -0.03427844122052193, -0.004847885109484196, 0.02255404181778431, -0.001275606919080019, -0.003683158429339528, 0.00814537238329649, 0.00048594552208669484, 0.005815919488668442, 0.014354676008224487, -0.020903371274471283, -0.01017400249838829, -0.009695770218968391, 0.01835794188082218, 0.017247209325432777, -0.016352452337741852, 0.011639552190899849, -5.9086007240694016e-05, 0.005927763879299164, -0.007331606466323137, 0.007273755967617035, -0.01118446048349142, -0.0068842279724776745, -0.017879709601402283, 0.0028211837634444237, 0.0007848405512049794, -0.007921683602035046, -0.010320557281374931, -0.0020517699886113405, 0.006699106190353632, 0.0027189808897674084, -0.001518579781986773, 0.00671067601069808, 0.018126539885997772, 0.011508423835039139, 0.0013315292308107018, -0.00770570756867528, -0.013336504809558392, 0.017247209325432777, 0.02082623541355133, 0.018188245594501495, -0.005785065703094006, 0.023016847670078278, -0.01366046816110611, 0.005356970708817244, -0.01017400249838829, -0.015596536919474602, 0.004234667867422104, -0.00632500508800149, 0.0015012245858088136, 0.007601576391607523, -0.017648307606577873, -0.010335983708500862, -0.010220282711088657, -0.012233485467731953, 0.0037217256613075733, 0.02810770645737648, 0.014493517577648163, -0.008484763093292713, -0.006891941651701927, -0.011878668330609798, -0.01052110642194748, -0.00671067601069808, 0.0015079737640917301, -0.013436779379844666, 0.01066766120493412, 0.01292769331485033, -0.012973973527550697, 0.01632159762084484, 0.005534379277378321, -0.02235349453985691, 0.006938221864402294, 0.006267154589295387, -0.004331085830926895, -0.005854486487805843, -0.015180012211203575, 0.005329973995685577, -0.00538782449439168, -0.004940446000546217, 0.005565233062952757, -0.0030872966162860394, 0.011901807971298695, -0.002701625693589449, 0.0059316204860806465, -0.025022337213158607, -0.014393243007361889, 0.013220803812146187, 0.013945864513516426, -0.0045393481850624084, -0.012989400885999203, 0.0033167710062116385, 0.019700076431035995, 0.011901807971298695, -0.016707269474864006, -0.006564121227711439, -0.026148496195673943, 0.007582292892038822, -0.015357420779764652, 0.005923907272517681, 0.013521626591682434, -0.0119172353297472, 0.010220282711088657, 0.012742571532726288, 0.00803738459944725, 0.008955281227827072, 0.0020864803809672594, 0.0036503763403743505, -0.0073123229667544365, -0.011847814545035362, 0.026996973901987076, -0.002076838631182909, -0.009163543581962585, -0.0050291502848267555, 0.004369652830064297, 0.006209303624927998, -0.009340953081846237, 0.007570722606033087, 0.011392722837626934, 0.003241565078496933, -0.005723358131945133, -0.00364073459059, 0.0021385459695011377, -0.0129122668877244, 0.011855527758598328, 0.01126930769532919, -0.017756294459104538, -0.007628573104739189, 0.020394284278154373, -0.009433513507246971, -0.01834251545369625, -0.009556928649544716, -0.02455953136086464, 0.010744795203208923, 0.01880531944334507, 0.029696669429540634, 0.014886902645230293, 0.0129122668877244, 0.01566595770418644, 0.024760080501437187, 0.00570021802559495, -0.015527116134762764, 0.007991104386746883, 0.0025338586419820786, -0.0026052079629153013, -0.006340431980788708, 0.004091969691216946, -0.03295173496007919, 0.0025068616960197687, -0.0005857378710061312, 0.010821929201483727, -0.010829643346369267, -0.01230290625244379, 0.015935927629470825, -0.009502934291958809, 0.021443309262394905, 0.009757477790117264, 0.018882453441619873, 0.004898022394627333, 0.003995552193373442, -0.004832458216696978, 0.0046511925756931305, -0.017247209325432777, -0.018604770302772522, 0.013359645381569862, -0.01601306162774563, 0.018265381455421448, -0.005090857855975628, -0.01255744881927967, -0.003390048397704959, -0.008237933740019798, 0.011277020908892155, 0.019746357575058937, 0.018018551170825958, 0.0019495671149343252, 0.0031412907410413027, 0.011924948543310165, 0.023001421242952347, 0.0018849672051146626, 0.003912632819265127, -0.005299120210111141, -0.014169554226100445, -0.008191652595996857, 0.002799971727654338, -0.003818143391981721, -0.0006252691964618862, -0.003596382448449731, -0.010806502774357796, -0.007320036180317402, 0.025392580777406693, -0.022955140098929405, 0.012819705531001091, 0.010050587356090546, -0.0016207825392484665, 0.013652754947543144, 0.01194037590175867, -0.011315588839352131, 0.001698880922049284, -0.0019486029632389545, -0.01928355172276497, 0.01477891393005848, 0.001312245731242001, -0.019468674436211586, -0.01228747982531786, 0.015619677491486073, -0.013783883303403854, -0.006483130156993866, -0.02482178807258606, -0.00980375800281763, -0.006448419764637947, -0.004747610539197922, 0.0233562383800745, 0.019252698868513107, -0.01683068461716175, 0.01506431121379137, -0.002098050434142351, -0.012773425318300724, 0.008484763093292713, -0.006186163518577814, 0.024636665359139442, -0.0015947497449815273, 0.0034806812182068825, 0.02654959447681904, -0.003397761844098568, 0.0065101273357868195, -0.019854344427585602, -0.007285325787961483, -0.016383305191993713, 0.015010316856205463, -0.0014327679527923465, -0.014663212932646275, 0.010251136496663094, -0.0016892391722649336, -0.00954921543598175, -0.009194397367537022, 0.01340592559427023, 0.014169554226100445, -0.001198472804389894, -0.00421152776107192, -0.0028963894583284855, -0.0024567246437072754, -0.005368540994822979, -0.015935927629470825, -0.012757997959852219, -0.0068340906873345375, -0.0020729817915707827, 0.023371664807200432, -0.008183939382433891, -0.006321148481220007, -0.010351411066949368, -0.021936969831585884, -0.0053916811011731625, 0.033013440668582916, 0.019175564870238304, -0.006587261334061623, 0.0058197760954499245, -0.001878218026831746, -0.0197772104293108, 0.01602848805487156, -0.0008484763093292713, 0.012819705531001091, 0.012017509900033474, -0.0009188612457364798, 0.008114518597722054, 0.01584336720407009, -0.0037853613030165434, -0.008962995372712612, 0.0010779505828395486, -0.01114589348435402, -0.004624195862561464, 0.0076401433907449245, 0.004103539977222681, 0.03014404885470867, -0.001386487390846014, -0.0016632063779979944, 0.012194918468594551, -0.002304384484887123, 0.025454288348555565, -0.009626349434256554, -0.013259370811283588, -0.02454410493373871, 0.008199366740882397, 0.00551895285025239, 0.030791975557804108, -0.010721654631197453, 0.0018608628306537867, 0.003947343211621046, 0.01368360873311758, 0.014717207290232182, -0.010212569497525692, -0.02557770349085331, -0.022430628538131714, -0.007053923327475786, -0.004566345363855362, 0.004801604431122541, 0.01079878956079483, -0.004874881822615862, -0.0028636076021939516, -0.0035096064675599337, -0.029218439012765884, -0.01632159762084484, -0.018018551170825958, -0.007867689244449139, -0.01329793781042099, -0.015126017853617668, -0.010945344343781471, 0.00608588894829154, 0.007061637006700039, 0.006741529796272516, -0.008870434015989304, -0.0380425900220871, -0.0021462594158947468, 0.009487507864832878, 0.02102678455412388, -0.009333238936960697, -0.010227995924651623, 0.0065216971561312675, -0.0037429374642670155, 0.0034151170402765274, -0.005002153571695089, 0.01902129501104355, -0.016491293907165527, -0.007138771004974842, -0.007088633719831705, 0.0016284959856420755, -0.009919459000229836, 0.008461622521281242, 0.005117854569107294, 0.00891671422868967, 0.012464888393878937, -0.02533087320625782, -0.012372327037155628, 0.0035636003594845533, 0.034710392355918884, -0.005866056773811579, -0.004172960761934519, 0.04072686284780502, 0.0009357343660667539, -0.0003466218477115035, 0.02406587265431881, -0.005584516562521458, -0.02030172385275364, 0.016707269474864006, -0.0020594834350049496, 0.008461622521281242, -0.02513032592833042, -0.002892532851547003, 0.01629074476659298, 0.007879259064793587, -0.009580068290233612, -0.012248911894857883, 0.005815919488668442, 0.013159096240997314, 0.004805461037904024, -0.009340953081846237, 0.010690801776945591, 0.020903371274471283, 0.0059817577712237835, -0.003000520635396242, 0.010968484915792942, -0.005866056773811579, 0.0027787599246948957, -0.019669223576784134, -0.003590597305446863, -0.004377366509288549, -0.01465549971908331, -0.005611513741314411, -0.009518361650407314, 0.01809568516910076, -0.008993849158287048, 0.013251656666398048, 0.0056693642400205135, 0.014748061075806618, 0.006155309733003378, -0.011215314269065857, -0.015596536919474602, 0.012056076899170876, 0.00507543096318841, 0.005426391493529081, -0.013976718299090862, 0.01584336720407009, 0.0057195015251636505, 0.020394284278154373, -0.005499668885022402, 0.012125497683882713, -0.014586078934371471, 0.0038875641766935587, -0.006062748841941357, -0.009572355076670647, 0.010320557281374931, -0.003928059712052345, -0.011091899126768112, -0.0038162150885909796, -0.03165587782859802, -0.011130466125905514, 0.008685312233865261, 0.001862791134044528, 0.004122823476791382, 0.008824153803288937, -0.011948089115321636, 0.011701259762048721, -0.013899584300816059, -0.0082765007391572, 0.008878147229552269, 0.05269809067249298, 0.032519783824682236, 0.009117263369262218, -0.014424096792936325, 0.0010885564843192697, -0.054086506366729736, -0.003746794071048498, 0.017864283174276352, -0.020641114562749863, -0.009788330644369125, 0.010251136496663094, -0.012642296962440014, 0.035173200070858, 0.013591047376394272, -0.0019138925708830357, 0.0031239355448633432, -0.017447758466005325, -0.020147455856204033, -0.007566865999251604, 0.014123274013400078, 0.009826898574829102, 0.022723738104104996, -0.006861087866127491, -0.005484242457896471, 0.006548694334924221, 0.00853104330599308, -0.008415342308580875, -0.024636665359139442, -0.0006363572319969535, -0.01678440347313881, 0.020440565422177315, -0.02360306866466999, -0.02181355468928814, 0.020162882283329964, 0.0052412692457437515, 0.01954580843448639, 0.015982208773493767, 0.008909001015126705, 0.002580139320343733, -0.0010374551638960838, -0.0280922781676054, -0.010899064131081104, 0.0067723835818469524, -0.022214652970433235, -0.005318403709679842, 0.003526961663737893, 0.005322260316461325, -0.0002269433025503531, -0.023711055517196655, 0.010914490558207035, 0.0071002040058374405, 0.034988075494766235, -0.016630135476589203, -0.00564622413367033, -0.002248462289571762, -0.003995552193373442, 0.002624491462484002, 0.0018666478572413325, 0.010999337770044804, 3.2872430892894045e-05, 0.003854782087728381, -0.004913449287414551, 0.007697993889451027, 0.008222506381571293, -0.006089745555073023, 0.011755253188312054, -0.0032974875066429377, 0.016429586336016655, 0.0017499823588877916, -0.019730931147933006, -0.006564121227711439, -0.017401477321982384, -0.012596015818417072, -0.017200928181409836, -0.019962333142757416, -0.018419649451971054, -0.02658044919371605, -0.01193266175687313, -0.03316770866513252, 0.002273530699312687, 0.012233485467731953, -0.001481940969824791, -0.013837876729667187, 0.0015012245858088136, -0.018126539885997772, -0.007011499721556902, 0.016475867480039597, 0.009186684153974056, 0.0006064677145332098, 0.020687393844127655, -0.012310619466006756, -0.001251502544619143, -0.006259440910071135, -0.00463190907612443, 0.013776170089840889, 0.008731592446565628, -0.014640072360634804, 0.0017017734935507178, 0.002140474272891879, 0.0032280667219311, -0.0006619079504162073, 0.023464227095246315, 0.025701118633151054, -0.0031297204550355673, -0.014532084576785564, -0.018450502306222916, -0.00041146279545500875, -0.01406927965581417, 0.0067878104746341705, 0.015095164999365807, -0.008191652595996857, -0.003164430847391486, -0.007447307929396629, 0.01658385433256626, 0.012480314821004868, 0.021736420691013336, -0.0039646984077990055, 0.025932520627975464, 0.016923245042562485, 0.010227995924651623, -0.01835794188082218, 0.0006768527091480792, 0.0440899133682251, 0.023001421242952347, 0.0033090575598180294, 0.001399985863827169, 0.001661278074607253, 0.006024181842803955, -0.011408149264752865, 0.006043465342372656, -0.003420902183279395, -0.00903241615742445, -0.014771200716495514, 0.013012541458010674, -0.012341473251581192, -0.0017779434565454721, 0.014647786505520344, 0.009472080506384373, 0.040017228573560715, 0.0024335843045264482, -0.030545147135853767, 0.022615749388933182, -0.002987022278830409, -0.0021886832546442747, -0.015858793631196022, 0.003334126202389598, -0.015218579210340977, 0.0017866210546344519, 0.022770019248127937, -0.008808726444840431, 0.011747539974749088, 0.008569610305130482, -0.008839580230414867, 0.011115039698779583, 0.0014096276136115193, -0.005742641631513834, -0.022430628538131714, 0.02284715324640274, -0.014277542009949684, 0.0038085016421973705, -0.006945935543626547, 0.02206038311123848, -0.00018753253971226513, -0.008129945956170559, 0.011600985191762447, -0.010143148712813854, -0.006136026233434677, 0.010181715711951256, -0.040665153414011, -0.0114004360511899, -0.01659928262233734, 0.013945864513516426, 0.005013723392039537, 0.017895136028528214, 0.002545428927987814, 0.026487886905670166, -0.00494815967977047, -0.008469335734844208, -0.03862881287932396, -0.02161300554871559, 0.009703483432531357, 0.024405263364315033, 0.013783883303403854, 0.00614373991265893, -0.0026225631590932608, 0.007960250601172447, -0.013205376453697681, 0.01679982990026474, 0.01542684156447649, 0.014701779931783676, -0.015349707566201687, 0.02909502387046814, -0.012387753464281559, 0.00019524597155395895, -0.024497823789715767, 0.004315658938139677, 0.009163543581962585, -0.025747397914528847, -0.01265001017600298, -0.002736336085945368, -0.011562418192625046, 0.008021957240998745, -0.014092420227825642, 0.0003430061915423721], "f8eee05a-466d-4169-85ef-032419f8c5db": [-0.013079162687063217, 0.01969979889690876, -0.009065279737114906, 0.007081034127622843, -0.053743232041597366, -0.027597876265645027, 0.02855757623910904, 0.005433980375528336, -0.0004206795711070299, 0.019712768495082855, 0.028739141300320625, 0.027571938931941986, 0.028713203966617584, 0.008799416944384575, -0.03740238398313522, -0.0028418160509318113, 0.007787840440869331, 0.0493856742978096, 0.023175472393631935, -0.006286687217652798, 0.06380712240934372, -0.007288536988198757, -0.024653930217027664, 0.012780877761542797, -0.0011834145989269018, -0.014628949575126171, -0.01254743617027998, -0.005006005521863699, -0.028972582891583443, -0.008559491485357285, 0.0273903738707304, 0.0006075131823308766, 0.03242231532931328, -0.013500653207302094, -0.01414909865707159, -0.05273165553808212, -0.03659830987453461, -0.002543530659750104, 0.031047610566020012, -0.00042149011278524995, 0.005148664116859436, -0.0032260206062346697, 0.023006876930594444, -0.0025289407931268215, -0.04357559233903885, 0.017443206161260605, -0.012573374435305595, -0.013876751996576786, 0.018208373337984085, 0.010952258482575417, -0.0032600639387965202, -0.021009661257267, -0.020711375400424004, 0.016755852848291397, 0.041941508650779724, -0.009331142529845238, 0.009441378526389599, 0.07023970782756805, -0.02478361874818802, -0.05758203566074371, -0.021580293774604797, -0.05810079351067543, 0.028401950374245644, 0.004143571946769953, 0.0006524991476908326, -0.02404439076781273, -0.01413612999022007, 0.032292626798152924, -0.02027043327689171, 0.0005985970492474735, 0.004720689263194799, 0.048607535660266876, -0.042252764105796814, 0.03340795636177063, -0.017961964011192322, 0.013001348823308945, 0.016392722725868225, -0.013785969465970993, 0.0329151377081871, 0.020672468468546867, 0.0069318911992013454, -0.01253446750342846, 0.03470484912395477, -0.0023668291978538036, 0.028376011177897453, -0.013902689330279827, -0.0437052845954895, -0.04020367190241814, -0.025017060339450836, -0.025756288319826126, 0.0029520520474761724, 0.03250012919306755, -0.018299154937267303, -0.036235179752111435, 0.0015651873545721173, -0.03309670090675354, -0.003731808625161648, -0.005378862377256155, 0.0072236922569572926, -0.0231365654617548, 0.009486770257353783, 0.014395508915185928, -0.03841396048665047, 0.016561320051550865, 0.01864931732416153, -0.04033336043357849, -0.012326965108513832, 0.028505701571702957, -0.00651364354416728, 0.007515492849051952, 0.03522360324859619, -0.04069649055600166, -0.014667856507003307, 0.005031943786889315, -0.005006005521863699, 0.012754939496517181, -0.020542779937386513, -0.0468437634408474, 0.015614587813615799, -0.04238245263695717, 0.03011384792625904, -0.004234354477375746, 0.03631299361586571, 0.008468708954751492, -0.01998511701822281, 0.031721994280815125, 0.005317260045558214, 0.04308277368545532, -0.004529397469013929, 0.02148951217532158, 0.007431195117533207, -0.00901340413838625, 0.0276756901293993, 0.04269370809197426, 0.016107406467199326, 0.04842597246170044, 0.024848463013768196, 0.04777752608060837, -0.020166680216789246, 0.02051684260368347, -0.05452136695384979, -0.055818259716033936, -0.03999616950750351, 0.029257899150252342, -0.005408042576164007, -0.005349682178348303, -0.012703063897788525, 0.02977665513753891, -0.00835847295820713, 0.01356549747288227, -0.05275759473443031, -0.046765949577093124, 0.008617851883172989, 0.005907346028834581, 0.044976238161325455, -0.03997023403644562, 0.01141265593469143, 0.03426390513777733, -0.008001827634871006, 0.035664547234773636, 0.0403074249625206, -0.05742640793323517, -0.005553943105041981, 0.014460353180766106, 0.04502811282873154, 0.021813735365867615, 0.028090694919228554, -0.00017041980754584074, -0.03799895569682121, 0.021645138040184975, 0.027909129858016968, -0.026404734700918198, 0.008747541345655918, -0.007165331859141588, 0.013383932411670685, -0.029672903940081596, 0.06733466684818268, -0.008935590274631977, -0.020879972726106644, -0.038076769560575485, 0.0071134562604129314, -0.015277395956218243, 0.02327922359108925, -0.01301431842148304, -0.005022217053920031, 0.014719732105731964, 0.020698407664895058, 0.013915657997131348, 0.032085124403238297, 0.03460109606385231, -0.01612037606537342, -0.028791017830371857, 0.018662285059690475, 0.017378361895680428, -0.012579859234392643, -0.0519535206258297, 0.016820697113871574, 0.00980450864881277, -0.004607211332768202, 0.00444834167137742, -0.008397379890084267, -0.05348385497927666, 0.00081339490134269, 0.06956532597541809, 0.0031287535093724728, 0.022565932944417, -0.0074960398487746716, -0.02060762420296669, -0.019660893827676773, 0.024200016632676125, 0.009279266931116581, -0.0190124474465847, 0.020413091406226158, -0.027156932279467583, -0.005732265766710043, 0.016872573643922806, -0.00874105654656887, 0.013370963744819164, 0.0028791017830371857, -0.016016624867916107, -0.0039879451505839825, -0.020374184474349022, 0.04549499601125717, -0.0271050576120615, -0.02586003951728344, -0.03068448044359684, -0.03452328220009804, 0.0009669956052675843, -0.008196361362934113, 0.019855426624417305, -0.0069513446651399136, -0.03641674667596817, 0.017041169106960297, -0.04624719172716141, -0.008624336682260036, 0.0061569977551698685, 0.03488641232252121, -0.011853598989546299, -0.022241709753870964, -0.03169605880975723, 0.03273357078433037, 0.01355252880603075, -0.002812636084854603, -0.012074070982635021, 0.031125424429774284, -0.0032811383716762066, -0.03758395090699196, 0.040463052690029144, 0.0158999040722847, 0.019349638372659683, 0.036883626133203506, -0.01779336668550968, -0.007697057910263538, 0.018234310671687126, -0.028765078634023666, -0.014641918241977692, 0.02591191604733467, -0.03314857557415962, 0.0109976502135396, -0.023966576904058456, -0.0012158368481323123, -0.006085668690502644, -0.017689615488052368, 0.023201409727334976, 0.02920602262020111, -0.017754461616277695, 0.030347289517521858, -0.04336808994412422, 0.011172730475664139, 0.07936982810497284, 0.016366785392165184, 0.013105100020766258, 0.012852206826210022, 0.016626164317131042, 0.0068475934676826, -0.01879197545349598, -0.019764645025134087, 0.009227391332387924, -0.0007039695628918707, -0.009629428386688232, -0.009441378526389599, -0.037168942391872406, 0.03304482623934746, 0.015121768228709698, 0.01680772937834263, 0.018597440794110298, -0.00043081154581159353, -0.0023473757319152355, -0.014525198377668858, -0.029880406334996223, -0.0069513446651399136, -0.009318173862993717, -0.0012093523982912302, 0.02540612779557705, -0.018117589876055717, -0.01077069342136383, 0.012002741917967796, -0.05013787001371384, -0.022345460951328278, 0.0034400078002363443, -0.007729480508714914, -0.011911959387362003, -0.030243536457419395, -0.017443206161260605, 0.035301417112350464, 0.01649647392332554, 0.023797981441020966, 0.02222874015569687, 0.026586299762129784, -0.001274197013117373, 0.024913309141993523, -0.023434851318597794, 0.030269475653767586, -0.045624684542417526, -0.007813778705894947, 0.03288919851183891, -0.02713099494576454, -0.011004134081304073, -0.026638176292181015, -0.020049961283802986, 0.010446470230817795, 0.0035632126964628696, -0.07148472219705582, 0.02318844012916088, -0.017378361895680428, -0.007217207923531532, 0.02163217030465603, -0.005288079846650362, 0.01385081373155117, -0.016626164317131042, -0.02713099494576454, 0.008436286821961403, -0.0400221087038517, -0.005054639186710119, -0.014045347459614277, -0.04188963398337364, -0.08979684859514236, -0.04723283275961876, 0.02889476902782917, -0.015290364623069763, -0.013526590541005135, 0.01024545170366764, -0.016587257385253906, -0.022047175094485283, -0.022695621475577354, -0.012398294173181057, -0.03794708102941513, -0.012112977914512157, 0.002906660782173276, 0.01893463358283043, 0.0006958639714866877, 0.0014954793732613325, 0.007457132916897535, -0.014525198377668858, -0.004383497405797243, 0.008053703233599663, -0.012845722027122974, -0.02075028233230114, 0.017637740820646286, -0.015251457691192627, -0.001108032651245594, -0.027312560006976128, -0.03270763158798218, 0.0013730850769206882, -0.014849421568214893, 0.008267690427601337, 0.022786404937505722, 0.01104304101318121, 0.007256114389747381, 0.038673341274261475, -0.009642397053539753, 0.003417312167584896, -0.017676647752523422, -0.018351031467318535, 0.011516407132148743, 0.0008073156932368875, 0.06743841618299484, 0.01547192968428135, -0.012599312700331211, -0.007340412586927414, 0.0074960398487746716, -0.02091887965798378, -0.07770980894565582, 0.002908281749114394, -0.004659086931496859, -0.004840651992708445, 0.004710962530225515, -0.003731808625161648, -0.014304726384580135, 0.01728757843375206, -0.01172390952706337, 0.026067541912198067, 0.030632605776190758, -0.002678083488717675, 0.027520062401890755, -0.010524284094572067, -0.012599312700331211, -0.014875358901917934, 0.014797545038163662, 0.018688224256038666, -0.04038523882627487, 0.020218556746840477, 0.011970319785177708, 0.00806018803268671, 0.021476542577147484, -0.03286325931549072, 0.01907729171216488, -0.017391331493854523, 0.017222734168171883, 0.05825641751289368, -0.017378361895680428, 0.013798938132822514, 0.015069892629981041, 0.014071285724639893, 0.03543110936880112, -0.01385081373155117, -0.0013025666121393442, 0.07760605961084366, 0.01575724594295025, -0.012476107105612755, -0.0002445858553983271, 0.012313995510339737, 0.001625979202799499, 0.03218887746334076, -0.013007833622395992, 0.014797545038163662, -0.007307990454137325, 0.021982330828905106, -0.027156932279467583, 0.0027494125533849, 0.021956393495202065, 0.050656627863645554, 0.019907303154468536, -0.01592584140598774, 0.00015370204346254468, -0.019596047699451447, -0.0005710380501113832, -0.021839672699570656, 0.017443206161260605, -0.032681696116924286, -0.01881791278719902, 0.06427399814128876, 0.008572460152208805, 0.009350595995783806, -0.012910566292703152, -0.04609156399965286, -0.050371311604976654, 0.024122204631567, 0.006419618614017963, -0.0015019638231024146, -0.005077335052192211, 0.022202802821993828, -0.005015732254832983, -0.006886499933898449, -4.594850179273635e-05, -0.031436678022146225, 0.027027243748307228, 0.010044434107840061, -0.01566646434366703, -0.005096788052469492, 0.0043186526745557785, -0.009999042376875877, 0.03706519305706024, -0.005145421717315912, 0.03828427195549011, -0.030451040714979172, -0.03937366232275963, -0.01850665919482708, 0.004480764269828796, 0.015381147153675556, -0.009642397053539753, -0.007560884114354849, -0.011879537254571915, 0.0380248948931694, -0.031410738825798035, -0.011652580462396145, -0.01180820818990469, -0.01158125139772892, -0.007210723124444485, -0.015030985698103905, 0.01652241311967373, -0.033848900347948074, -0.02418704889714718, -0.004539124201983213, -0.005038428120315075, -0.022501088678836823, -0.007249630056321621, 0.002569468691945076, 0.008922621607780457, -0.03607955574989319, 0.015043955296278, 0.0028483006171882153, 0.028531638905405998, -0.030528852716088295, -0.010530768893659115, 0.021269040182232857, 0.0014922370901331306, -0.03187762200832367, 0.004143571946769953, -0.004072242882102728, 0.048555660992860794, 0.009285751730203629, -0.023006876930594444, -0.003971733618527651, 0.016483506187796593, -0.0018561776960268617, -0.012443684972822666, 0.0012515013804659247, 0.013734093867242336, 0.0013706533936783671, -0.017326485365629196, -0.0021722952369600534, -0.033226389437913895, -0.002673220122233033, 0.022669684141874313, 0.0001675828534644097, -0.03465297073125839, 0.005249172914773226, 0.009830446913838387, 0.005421011243015528, 0.0010577781358733773, -0.012508530169725418, -0.017676647752523422, 0.019168073311448097, 0.02375907450914383, 0.011944381520152092, -0.05504012480378151, -0.008222299627959728, -0.008287143893539906, -0.019907303154468536, -0.006717904005199671, -0.0009726695134304464, -0.027001306414604187, 0.01196383498609066, -0.0032795174047350883, -0.015938811004161835, -0.034730784595012665, 0.006821655668318272, 0.03618330508470535, 0.00902637280523777, -0.013902689330279827, 0.05514387786388397, 0.002655387856066227, -0.024225955829024315, 0.016003655269742012, 0.026871616020798683, 0.0061732092872262, 0.045572809875011444, -0.026715988293290138, 0.022864216938614845, -0.016950387507677078, 0.004312168341130018, -0.02855757623910904, -0.016016624867916107, 0.01822134293615818, -0.02049090340733528, 0.008079641498625278, 0.005800352431833744, -0.011224606074392796, -0.0306585431098938, -0.012482591904699802, 0.01519958209246397, 0.017443206161260605, 0.016003655269742012, -0.00458451546728611, -0.0009297099313698709, -0.02282531186938286, 0.023862825706601143, -0.04157837852835655, 0.020140742883086205, 0.0112829664722085, 0.009428409859538078, 0.06448150426149368, 0.020387152209877968, -0.02920602262020111, -0.00011418735084589571, 0.0020734071731567383, -0.018493689596652985, 0.0038744667544960976, -0.016820697113871574, 0.03283732384443283, -0.03428984060883522, 0.018947601318359375, -0.007470101583749056, -0.003185492707416415, 0.013053224422037601, -0.02557472325861454, -0.011386717669665813, -0.021735921502113342, 0.007768386974930763, 0.014019410125911236, 0.01316994521766901, -0.0008940453990362585, 0.018402906134724617, -0.0024122204631567, 0.03366733342409134, -0.04188963398337364, 0.010018495842814445, 0.01141265593469143, 0.011490468867123127, 0.018117589876055717, -0.002138251904398203, 0.04360153153538704, -0.01182117685675621, -0.010316780768334866, -0.005346440244466066, 0.0246928371489048, 0.006082426756620407, -0.0171708595007658, 0.0003536058939062059, -0.022604839876294136, -0.012236182577908039, 0.025652537122368813, -0.006763295270502567, 0.007359866052865982, -0.003514579264447093, 0.013137523084878922, 0.03877709060907364, 0.011393202468752861, -0.002144736237823963, 0.005041670054197311, -0.01399347186088562, 0.024653930217027664, -0.04064461588859558, 0.05021568387746811, 0.012962441891431808, 0.019232917577028275, -0.011081947945058346, -0.0030120331794023514, 0.03467890992760658, 0.0025791951920837164, -0.02335703745484352, -0.0006723577971570194, -0.01383784506469965, 0.02622316963970661, 0.0007408499368466437, -0.01924588717520237, 0.0168855432420969, 0.017067108303308487, 0.022099051624536514, 0.010342719033360481, -0.008838323876261711, -0.007055096328258514, 0.043471843004226685, -0.008851292543113232, 0.0017475628992542624, -0.008228784427046776, -0.01413612999022007, 0.030840108171105385, -0.030451040714979172, -0.016327878460288048, -0.006263991817831993, -0.024705804884433746, 0.01626303419470787, 0.017067108303308487, -0.016483506187796593, 0.00598840182647109, 0.006666028406471014, 0.010919836349785328, 0.019621986895799637, 0.016392722725868225, -0.013092131353914738, -0.017611801624298096, 0.030606666579842567, 0.006653059273958206, 0.0234218817204237, 0.03130698949098587, 0.021878579631447792, 0.010543737560510635, 0.029361650347709656, 0.008008312433958054, -0.018156496807932854, -0.01145156193524599, -0.0020393638405948877, 0.004526155535131693, 0.007729480508714914, -0.004749869462102652, -0.006672512739896774, 0.0061732092872262, -0.021437635645270348, -0.03270763158798218, -0.0195830799639225, -0.05291322246193886, -0.013202367350459099, -0.0077165113762021065, -0.008131517097353935, -0.030217599123716354, 0.031436678022146225, -0.004075485281646252, -0.04098180681467056, 0.003394616534933448, -0.00040649480069987476, 0.025704413652420044, 0.0055960919708013535, 0.002207959769293666, -0.0011145171010866761, -0.0041370876133441925, -0.004552093334496021, 0.006004612892866135, -0.002914766315370798, -0.015043955296278, -0.007878622971475124, 0.010102793574333191, -0.03135886415839195, 0.027805378660559654, 0.04129306226968765, -0.01490129716694355, 0.013448776677250862, 0.017235703766345978, 0.01719679683446884, -0.0050124903209507465, -0.0005317259929142892, 0.002417083829641342, -0.003323287470266223, -0.008053703233599663, -0.013578466139733791, 0.019621986895799637, 0.020789189264178276, -0.028427887707948685, 0.005391831509768963, 0.037168942391872406, 0.02213795855641365, -0.0008972876239567995, -0.013734093867242336, -0.0204390287399292, 0.021217163652181625, -0.008300113491714, -0.012832753360271454, 0.0028401948511600494, -0.007859169505536556, 0.0049703409895300865, 5.445936039905064e-05, 0.002128525171428919, 0.005673905368894339, -0.0068411086685955524, -0.006231569219380617, 0.004474279936403036, 0.004169509746134281, 0.015225520357489586, -9.074448826140724e-06, 0.006552550010383129, -0.0258341021835804, 0.00670493533834815, -0.04360153153538704, 0.005894377361983061, 0.0136951869353652, 0.027312560006976128, -0.017391331493854523, -0.0015570818213745952, 0.0010456197196617723, 0.011613673530519009, -0.00942192506045103, 0.03937366232275963, -0.010945774614810944, 0.006098637823015451, -0.006646574940532446, 0.03457515686750412, -0.004156541079282761, -0.0073533812537789345, 0.03641674667596817, -0.01248907670378685, 0.001372274593450129, -0.022060144692659378, -0.014226912520825863, 0.0013009454123675823, -0.03307076171040535, -0.022838279604911804, -0.005557185038924217, 0.03646862134337425, -0.0015554606216028333, 0.012508530169725418, 0.044353730976581573, 0.03135886415839195, 0.024887369945645332, 0.0024576117284595966, 0.029361650347709656, 0.012028679251670837, 0.00477580726146698, -0.04150056466460228, 0.00885777734220028, -0.025989729911088943, -0.0405927412211895, 0.03511985391378403, -0.04090399667620659, 0.0003497557481750846, -0.009901775978505611, 0.033252328634262085, -0.0068022022023797035, -0.02361641637980938, 0.015018017031252384, 0.007930498570203781, 0.004801745060831308, -0.02154138684272766, -0.012229697778820992, -0.007431195117533207, -0.013967534527182579, -0.010926321148872375, -0.011613673530519009, -0.016989294439554214, 0.016016624867916107, 0.008792932145297527, -0.006296413950622082, 0.04725876823067665, 0.02211201936006546, 0.005994886159896851, -0.00035846923128701746, 0.0037026286590844393, -0.02407032810151577, 0.01075772475451231, -0.027805378660559654, -0.005946252960711718, 0.016846636310219765, -0.021697014570236206, 0.034471407532691956, -0.022073112428188324, 0.023979544639587402, -0.007930498570203781, 0.003835560055449605, 0.029257899150252342, -0.0017232461832463741, 0.016483506187796593, 0.007256114389747381, -0.03698737919330597, 0.014343633316457272, -0.015082862228155136, 0.0036215728614479303, 0.02679380215704441, -0.01085499208420515, 0.02633989043533802, 0.018039777874946594, 0.0255487859249115, -0.010731786489486694, -0.01115327700972557, 0.022721558809280396, -0.02123013325035572, -0.0011607189662754536, -0.01643162965774536, 0.014045347459614277, -0.011049525812268257, 0.024537209421396255, 0.013474714942276478, -0.02046496607363224, -0.019764645025134087, 0.007502524182200432, -0.001877252128906548, 0.008053703233599663, 0.027883192524313927, -0.000513893726747483, 0.005119483917951584, 0.05758203566074371, 0.0026861890219151974, -0.0337710864841938, -0.0056966012343764305, 0.004571546800434589, -0.010893898084759712, 0.01824728026986122, -0.035716425627470016, 0.004195448011159897, -0.0231365654617548, -0.010829053819179535, 0.0454171821475029, 0.005930041894316673, 0.007178300991654396, 0.004636391531676054, -0.018273217603564262, -0.030217599123716354, 0.011730394326150417, 0.010919836349785328, -0.00016667097224853933, 0.01714492030441761, 0.001621115836314857, -0.0074765863828361034, 0.025198625400662422, 0.025172686204314232, -0.004662329331040382, 0.01743023842573166, -0.011924928054213524, 0.020763251930475235, -0.0006614152807742357, -0.028350073844194412, -0.011250544339418411, 0.03190356120467186, -0.006526612211018801, 0.02160623110830784, -0.041111499071121216, -0.018753068521618843, 0.011788754723966122, -0.01652241311967373, 0.008138001896440983, -0.010284358635544777, 0.011924928054213524, 0.0056641786359250546, -0.015990687534213066, -0.038076769560575485, -0.024796588346362114, -0.0006622258224524558, 0.03159230574965477, 0.001108843251131475, 0.008319566957652569, 0.022332491353154182, 0.012398294173181057, -0.025652537122368813, -0.015770215541124344, -0.031410738825798035, 0.02242327481508255, -0.023292193189263344, 0.0043186526745557785, -0.026638176292181015, 0.018740098923444748, 0.03154043108224869, 0.013669248670339584, 0.014058317057788372, 0.005534489639103413, 0.03371920809149742, 0.05540325492620468, 0.010342719033360481, 0.01743023842573166, -0.0217099841684103, -0.009104186668992043, -0.0292319618165493, 0.015549743548035622, 0.00496709905564785, 0.05140882730484009, 0.027545999735593796, -0.01938854530453682, -0.011801723390817642, -0.01141265593469143, -0.028479762375354767, 0.007606275379657745, 0.018013838678598404, -0.04583218693733215, 0.0023522390983998775, 0.001357684493996203, -0.02086700312793255, 0.04686970263719559, -0.006176451221108437, -0.005041670054197311, -0.017987901344895363, -0.024965183809399605, -0.008390896022319794, 0.011341326870024204, -0.0073533812537789345, 0.020049961283802986, -0.009019888937473297, 0.0009321416146121919, -0.027260683476924896, -0.0028791017830371857, 0.006046762224286795, -0.020075898617506027, 0.009318173862993717, 0.023551570251584053, 0.03722082078456879, -0.010679910890758038, -0.0006075131823308766, 0.00794995203614235, -0.0010358929866924882, 0.0009734800551086664, 0.0014095602091401815, -0.00035684811882674694, 0.0020118048414587975, 0.0036345417611300945, 0.004856863059103489, 0.02089294046163559, 0.006614152807742357, -0.029880406334996223, -0.012067586183547974, -0.03159230574965477, 0.0032308839727193117, 0.015420054085552692, -0.020503873005509377, 0.00902637280523777, 0.00409493874758482, -0.004425646271556616, 0.023032814264297485, 0.010277874767780304, -0.011049525812268257, -0.03247419372200966, -0.003342740936204791, -0.012365872040390968, -0.013293149881064892, -0.013001348823308945, 0.024174079298973083, -0.018208373337984085, -0.01239180937409401, 0.004059274215251207, 0.0252634696662426, 0.0015911251539364457, 0.011659065261483192, -0.006730873137712479, 0.0107123339548707, 0.023240316659212112, -0.019116198644042015, -0.011672033928334713, 0.007800809573382139, -0.008611367084085941, -0.046765949577093124, -0.007936983369290829, -0.021554356440901756, -0.013033770956099033, -0.019764645025134087, -0.012515014037489891, 0.003962007351219654, 0.007891591638326645, 0.008481678552925587, 0.023655323311686516, 0.01580912247300148, 0.015510836616158485, 0.013001348823308945, 0.017508050426840782, 0.006546065676957369, -0.004736900329589844, -0.027753503993153572, -0.012067586183547974, 0.0008940453990362585, 0.008689180947840214, 0.019764645025134087, 0.009447863325476646, -0.03125511482357979, 0.005725780967622995, 0.013221820816397667, -0.01114030834287405, -0.02614535577595234, -0.012813299894332886, -0.012780877761542797, 0.002141494071111083, 0.0008324430091306567, 0.017780398949980736, -0.01195086631923914, 0.030606666579842567, 0.014953172765672207, -0.006912437733262777, -0.014369570650160313, 0.010433501563966274, -0.013144006952643394, -6.134909926913679e-05, -0.02705318108201027, 0.0010902003850787878, -0.07745043188333511, 0.0060273087583482265, -0.008099094964563847, 0.016509443521499634, -0.02029637061059475, -0.00931168906390667, 0.040488988161087036, 0.009817477315664291, -0.016768822446465492, 0.0028483006171882153, 0.004623422399163246, -0.02764975093305111, 0.016781792044639587, 0.011762816458940506, -0.0006480410811491311, -0.02051684260368347, 0.019142135977745056, -0.002031258074566722, -0.0009742905967868865, -0.012605796568095684, -0.010816085152328014, -0.009032857604324818, 0.04609156399965286, -0.00042392179602757096, 0.015796152874827385, 0.055870138108730316, -0.005848986096680164, -0.0009499738807789981, -0.001118569984100759, 0.004017124883830547, 0.01383784506469965, -0.012612281367182732, -0.001608957420103252, -0.001190709532238543, 0.019972147420048714, -0.014849421568214893, 0.012897597625851631, 0.015873966738581657, -0.0017264883499592543, 0.00020284211495891213, -0.009616458788514137, -0.0033054552040994167, -0.011166245676577091, -0.010180607438087463, -0.006202389020472765, -0.00023303540365304798, 0.0019420967437326908, -0.0038939202204346657, 0.01060209795832634, 0.0011696350993588567, -0.0026910523883998394, -0.007262599188834429, 0.006101880222558975, -0.017248673364520073, -0.009324658662080765, 0.02569144405424595, -0.005421011243015528, -0.028816955164074898, -0.01549786701798439, -0.0042181434109807014, 0.05169414356350899, -0.0062575070187449455, 0.00901340413838625, 0.0066789970733225346, 0.02239733561873436, 0.0061569977551698685, 0.0034400078002363443, 0.01666507124900818, 0.0007983995601534843, 0.02259187027812004, -0.005819805897772312, 0.007515492849051952, -0.00026647091726772487, 0.024900339543819427, 0.009577552787959576, 0.005858712829649448, 0.006254265084862709, 0.003488641232252121, -0.00035806396044790745, 0.004779049661010504, -0.02077622152864933, -0.010057402774691582, -0.007800809573382139, 0.018882757052779198, 0.00737931951880455, 0.003773957723751664, -0.0074960398487746716, -0.005138937383890152, 0.004503459669649601, -0.006653059273958206, 0.0071329097263514996, -0.008546522818505764, 0.01654835045337677, 0.0034205543342977762, -0.002467338228598237, 0.025561755523085594, 0.013247759081423283, -0.010861475951969624, -0.003485399065539241, 0.001363358460366726, 0.0028612695168703794, -0.014045347459614277, -0.011094916611909866, -0.0009207937982864678, -0.007521977648139, -0.010589128360152245, 0.02001105435192585, 0.022695621475577354, -0.02733849734067917, 0.0039555225521326065, -0.020451998338103294, -0.002216065302491188, -0.003394616534933448, -0.01666507124900818, -0.00818987749516964, 0.014395508915185928, 0.023175472393631935, -0.00376423099078238, 0.006050004158169031, 0.013656280003488064, 0.00796292070299387, 0.018260248005390167, -0.006358016282320023, -0.06292523443698883, -0.01105600968003273, 0.007794324774295092, -0.007509008515626192, -0.02251405641436577, 0.0048211985267698765, 0.004600726533681154, 0.0052329618483781815, 0.009810993447899818, 0.009921228513121605, 0.022215772420167923, -0.005716054234653711, 0.022578900679945946, 0.019829489290714264, -0.026119418442249298, -0.004882800858467817, -0.045520931482315063, 0.004000913817435503, -0.015731308609247208, -0.00902637280523777, 0.015394115820527077, 0.008656758815050125, 0.004130603279918432, 0.011354295536875725, -0.021956393495202065, -0.01771555468440056, -0.010122247040271759, 0.004234354477375746, 0.010200060904026031, 0.008410348556935787, 0.02225467748939991, -0.0126317348331213, -0.015796152874827385, -0.0005159201100468636, 0.02423892356455326, 0.012417747639119625, 0.008455740287899971, -0.004406192805618048, -0.00835847295820713, 0.02168404497206211, -0.0025256983935832977, 0.0020247737411409616, -0.025107841938734055, -0.02588597871363163, -0.005780898965895176, -0.01534224022179842, -0.015277395956218243, 0.01910322904586792, -0.009733179584145546, -0.008650274015963078, -0.0006861372967250645, 0.0306585431098938, -0.009473800659179688, -0.0003323287528473884, -0.015420054085552692, 0.016470536589622498, -0.02213795855641365, -0.0056447251699864864, 0.00020324740034993738, -0.015938811004161835, 0.014836451970040798, -0.008494647219777107, -0.0016008518869057298, 0.01521255075931549, 0.01612037606537342, -0.008987465873360634, -0.014265819452702999, -0.0061991470865905285, -0.018260248005390167, -0.003313560737296939, 0.0065298546105623245, -0.001357684493996203, 0.01580912247300148, 0.0011445077834650874, -0.004892527591437101, -0.03693550452589989, -0.017326485365629196, -0.029621029272675514, -0.017819305881857872, 0.014382539317011833, 0.0036442684940993786, -0.0052329618483781815, 0.017054138705134392, 0.0026991579215973616, 0.02514674887061119, 0.009220906533300877, -0.0030979523435235023, -0.010919836349785328, 0.007217207923531532, 0.020854033529758453, 0.005738750100135803, -0.02798694372177124, -0.034212030470371246, 0.0035956348292529583, 0.014330663718283176, 0.0028612695168703794, -0.008669727481901646, 0.005900861695408821, 0.0063482895493507385, 0.004396466072648764, -0.030632605776190758, 0.006066215690225363, -0.005080576986074448, -0.027027243748307228, -0.015420054085552692, -0.0069837672635912895, 0.020309340208768845, -0.03270763158798218, 0.0153292715549469, 0.030165724456310272, 0.00824823696166277, -0.05457324534654617, -0.011509922333061695, 0.008520584553480148, -0.030217599123716354, 0.007366350386291742, 0.005638240836560726, -0.027234746143221855, -0.03524954244494438, -0.0177414920181036, 0.02416110970079899, 0.029257899150252342, -0.022384367883205414, -0.012301026843488216, -0.01442144624888897, 0.00700322026386857, 0.023292193189263344, -0.005858712829649448, -0.00931168906390667, -0.01007685624063015, 0.007703542709350586, -0.010595613159239292, -0.0015668084379285574, 0.00796292070299387, 0.007126425392925739, 0.00859839841723442, 0.002065301639959216, -0.022021237760782242, 0.025367220863699913, 0.03543110936880112, -0.02514674887061119, 0.0303732268512249, -0.00737931951880455, 0.011490468867123127, 0.00013475526066031307, -0.021282007917761803, -0.008825354278087616, -0.02416110970079899, -0.007651666644960642, -0.014110192656517029, -0.022916093468666077, 0.0010585886193439364, 0.015290364623069763, 0.010401079431176186, -0.011639611795544624, 0.005978675093501806, 0.005670663435012102, -0.011626643128693104, -0.004013882949948311, -0.0035307903308421373, 0.02509487234055996, 0.010543737560510635, 0.0044904910027980804, 0.0008235268760472536, -0.0039879451505839825, 0.02225467748939991, 0.0004283798625692725, 0.023382974788546562, -0.0007027537212707102, 0.03226669132709503, 0.004334863740950823, 0.004980067722499371, -0.03340795636177063, -0.008877230808138847, 0.0192977637052536, 0.017183827236294746, 0.0009240360232070088, -0.0012547436635941267, 0.0071329097263514996, -0.03408233821392059, -0.018299154937267303, -0.04323840141296387, -0.00027883192524313927, 0.01924588717520237, -0.004312168341130018, 0.002211201936006546, 0.006546065676957369, 0.00631586741656065, 0.0158999040722847, -0.02287718653678894, -0.02282531186938286, -0.013785969465970993, 0.032941073179244995, -0.007573853246867657, 0.005028701387345791, 0.018325094133615494, -0.01370815560221672, 0.013435808010399342, 0.02915414795279503, 0.0366242490708828, -0.03400452435016632, -0.005871681496500969, -0.02230655401945114, -0.02679380215704441, 0.006880015600472689, 0.00685407780110836, -0.011730394326150417, -0.005038428120315075, 0.02123013325035572, -0.021243102848529816, 0.008993950672447681, 0.01119866780936718, 0.011049525812268257, 0.000595760066062212, -0.016937417909502983, -0.01024545170366764, -0.006536338943988085, 0.001784848514944315, 0.04183775931596756, -0.007515492849051952, -0.002107450505718589, 0.002130146138370037, -0.016055531799793243, -0.0006743841804563999, 0.027312560006976128, -0.005148664116859436, -0.032007310539484024, 0.01062803529202938, 0.016989294439554214, 0.004195448011159897, -0.007068064995110035, 0.011432108469307423, 0.024744711816310883, -0.010835538618266582, -0.007249630056321621, -0.025522848591208458, -0.023772042244672775, -0.016392722725868225, -0.009973105043172836, -0.012281573377549648, 0.017080076038837433, -0.024005483835935593, 0.008455740287899971, 0.02588597871363163, -0.033511705696582794, 0.007197754457592964, -0.017728522419929504, -0.011017103679478168, 0.006549308076500893, -0.018714161589741707, -0.006808686535805464, -0.020400121808052063, 0.011892505921423435, -0.0006269665318541229, 0.0032908651046454906, 0.009823962114751339, -0.02010183595120907, 0.0008843186660669744, 0.004908738657832146, -0.0033557098358869553, 0.007703542709350586, -0.0010512935696169734, 0.015108799561858177, -0.0036539952270686626, 0.010264905169606209, -0.020568717271089554, -0.024200016632676125, -0.0006472304812632501, 0.014447384513914585, -0.005365893244743347, 0.02770162746310234, -0.009499738924205303, 0.007541431114077568, -0.02301984466612339, 0.016937417909502983, -0.02409626543521881, -0.004989794455468655, -0.021619200706481934, 0.012242666445672512, -0.006828140001744032, 0.009739664383232594, 0.01884385012090206, 0.025665506720542908, 0.033278267830610275, 0.0032114305067807436, 0.00632235174998641, 0.005446949042379856, 0.004026851616799831, -0.02918008528649807, -0.0013820012100040913, -0.0006427724147215486, -0.019647924229502678, 0.009869352914392948, 0.005771172232925892, 0.03452328220009804, -0.0040787276811897755, -0.0025791951920837164, -0.013747062534093857, 0.0017556684324517846, 0.0037123553920537233, -0.02359047718346119, -0.004007398150861263, -0.0012142157647758722, -0.014460353180766106, 0.022721558809280396, -0.00356969702988863, 0.006743841804563999, -0.030891982838511467, 0.009921228513121605, 0.014603011310100555, 0.006442314479500055, 0.028505701571702957, -0.011924928054213524, 0.019038384780287743, -0.0014662992907688022, 0.0032649273052811623, -0.028401950374245644, -0.045910000801086426, -0.03620924428105354, 0.013772999867796898, 0.001523848855867982, 0.005343197844922543, -0.005612303037196398, 0.012670641764998436, -0.02191748656332493, 0.024913309141993523, 0.019479328766465187, 0.015549743548035622, -0.010906867682933807, -0.0038679824210703373, -0.009227391332387924, -0.004675297997891903, 0.013721124269068241, -0.010044434107840061, -0.013578466139733791, -0.03301888704299927, 0.02347375825047493, 0.035353295505046844, -0.007055096328258514, 0.01036217249929905, 0.0054826135747134686, -0.00109668483491987, 0.011133823543787003, 0.015005048364400864, -0.041085559874773026, -0.030321350321173668, 0.013357994146645069, -0.013760031200945377, 0.02321437932550907, 0.014628949575126171, 0.0055053094401955605, 0.02920602262020111, -0.009661850519478321, -0.0029504308477044106, 0.0041370876133441925, 0.00022067439567763358, -0.04004804417490959, 0.014213943853974342, -0.011613673530519009, 0.008086125366389751, 0.006079184357076883, 0.024290800094604492, 0.013118069618940353, 0.007606275379657745, -0.010595613159239292, -0.012398294173181057, 0.014706762507557869, -0.009752633050084114, 0.018753068521618843, -0.015731308609247208, 0.02333110012114048, 0.015964748337864876, 0.0004762027820106596, -0.017054138705134392, 0.010161153972148895, 0.012190790846943855, 0.003673448460176587, 0.0012231318978592753, -0.01757289655506611, -0.042875271290540695, 0.013721124269068241, -0.008021281100809574, 0.005618787370622158, 0.0015068271895870566, 0.007651666644960642, 0.004753111861646175, -0.0006545255309902132, -0.009233876131474972, 0.019142135977745056, -0.011769301258027554, -0.0030979523435235023, 0.007081034127622843, -0.007398772519081831, 0.02764975093305111, -0.017378361895680428, -0.011464531533420086, 0.01088741421699524, -0.01836400106549263, -0.023849856108427048, -0.008455740287899971, -0.00612457562237978, 0.0033070764038711786, 0.008980982005596161, -0.011218121275305748, 0.0037771998904645443, -0.008112063631415367, -0.02407032810151577, -0.009149577468633652, -0.008955043740570545, 0.004062516149133444, 0.023486725986003876, 0.01519958209246397, -0.008397379890084267, -0.020205587148666382, 0.018091652542352676, -0.007697057910263538, 0.004477521870285273, -0.008423318155109882, -0.008968012407422066, -0.006335320882499218, -0.0037382931914180517, -0.0031125424429774284, 0.04661032184958458, -0.0077165113762021065, -0.0008263638010248542, -0.013280181214213371, 0.0014987215399742126, -0.03138480335474014, 0.016185220330953598, 0.009992558509111404, 0.013208852149546146, -0.006079184357076883, -0.013747062534093857, -0.029698843136429787, 0.016198189929127693, 0.01461598090827465, 0.013915657997131348, 0.0023700713645666838, 0.005962464027106762, -0.0009532161056995392, -0.015043955296278, 0.010679910890758038, 0.01927182450890541, 0.00032868122798390687, -0.028427887707948685, -0.015030985698103905, 0.0057452344335615635, 6.524991476908326e-05, 0.0004190584586467594, 0.005729023367166519, -0.010180607438087463, 0.016107406467199326, 0.00222092866897583, 0.0017751218983903527, -0.011101401410996914, 0.01051779929548502, -0.01771555468440056, 0.029413525015115738, 0.011192183941602707, 0.01090038288384676, -0.02089294046163559, 0.02321437932550907, -0.006182936020195484, 0.008935590274631977, 0.02416110970079899, 0.02982853166759014, -0.01881791278719902, 0.0014768365072086453, -0.0038582556881010532, -0.013306118547916412, 0.004432130604982376, 0.0037674731574952602, -0.01047240849584341, -0.011328357271850109, -0.0016130103031173348, 0.0171708595007658, 0.005780898965895176, -0.015886934474110603, 0.0018740099621936679, -0.004302441608160734, -0.0009791540214791894, 0.00559933390468359, -0.014447384513914585, -0.01491426583379507, -0.019829489290714264, -0.04806284233927727, -0.005722539033740759, -0.013643311336636543, -0.015407085418701172, -0.004493732936680317, 0.010044434107840061, -0.019777612760663033, -0.011068979278206825, 0.012955958023667336, 0.030010096728801727, -0.020685438066720963, 0.0040560318157076836, 0.009006919339299202, 0.0120611023157835, 0.01167851872742176, 0.0074765863828361034, -0.007463617250323296, 0.010024980641901493, -0.01145156193524599, 0.009182000532746315, -0.0028531639836728573, 0.0023700713645666838, -0.0024235681630671024, -0.007787840440869331, -0.014486291445791721, 0.02032230794429779, -0.001208541914820671, -0.012540952302515507, 0.023772042244672775, -0.0030509401112794876, 0.020503873005509377, -0.0038096222560852766, 0.024796588346362114, 0.017676647752523422, -0.04489842429757118, 0.01564052514731884, -0.0050935461185872555, -0.010524284094572067, 0.005557185038924217, 0.0008146106847561896, 0.017080076038837433, -0.008403864689171314, 0.006873531267046928, 0.014525198377668858, 0.00512272585183382, -0.00016373269318137318, 0.010420532897114754, 0.008754025213420391, -0.009752633050084114, -0.0010958743514493108, -0.029646966606378555, -0.03872521594166756, 0.010024980641901493, 0.026184262707829475, -0.006254265084862709, -0.016652101650834084, -0.022047175094485283, -0.0024462637957185507, -0.00020142363791819662, -0.02631395310163498, 0.0057841413654387, -0.016613194718956947, -0.010511315427720547, -0.029958220198750496, -0.0039879451505839825, 0.006604426074773073, -0.006666028406471014, 0.004065758548676968, 0.0021787798032164574, -0.028220385313034058, 0.015160675160586834, 0.008799416944384575, 0.0004405382205732167, 0.008721603080630302, -0.008222299627959728, 0.023629384115338326, -0.0102195143699646, 0.009843415580689907, 0.0023619658313691616, -0.002715368987992406, 0.0036961440928280354, -0.008429802022874355, -0.011717425659298897, -0.02239733561873436, -0.04448341950774193, 0.003589150495827198, 0.012430716305971146, 0.004892527591437101, -0.021645138040184975, 0.021048568189144135, -0.00457803113386035, 0.0003347604360897094, -0.025509878993034363, -0.023979544639587402, -0.0008762131328694522, -0.002966641914099455, 0.008565976284444332, 0.0109976502135396, 0.015536773949861526, -0.01905135251581669, -0.007372834719717503, -0.036572374403476715, 0.00833253562450409, 0.013033770956099033, 0.02156732603907585, 0.012832753360271454, 0.016029592603445053, -0.007126425392925739, 0.004928192123770714, 5.719499313272536e-05, -0.016924450173974037, 0.017780398949980736, -0.000932952156290412, -0.027027243748307228, 0.012171337381005287, -0.0011274861171841621, 0.018286187201738358, 0.015510836616158485, 0.005265384446829557, 0.04009992256760597, 0.01293001975864172, -0.013526590541005135, -0.03006197139620781, 0.008766994811594486, -0.02381094917654991, -0.01142562460154295, 0.030217599123716354, -0.013260727748274803, 0.02165810763835907, 0.003170902607962489, -0.005006005521863699, -0.007878622971475124, 0.005080576986074448, 0.020075898617506027, 0.0019258856773376465, -0.0069318911992013454, 0.008514100685715675, -0.009901775978505611, 0.007217207923531532, 0.031747933477163315, 0.0026651143562048674, 0.004325137007981539, -0.007165331859141588, -0.013020802289247513, -0.021385760977864265, -0.008611367084085941, -0.012087039649486542, -0.04461310803890228, -0.021269040182232857, 0.008689180947840214, 0.002477064961567521, -0.020815126597881317, 0.036546435207128525, 0.0041370876133441925, 0.021528419107198715, 0.023266253992915154, 0.02392766997218132, 0.00806018803268671, 0.019323701038956642, 0.008390896022319794, -0.010206545703113079, -0.021748889237642288, -0.02318844012916088, 0.017974931746721268, 0.021385760977864265, 0.006153755821287632, -0.03441953286528587, 0.015588649548590183, -0.0054988251067698, -0.0038874358870089054, 0.006821655668318272, 0.02540612779557705, 0.01535520888864994, 0.01685960404574871, 0.0060175820253789425, -0.01090038288384676, -0.0174561757594347, 0.006828140001744032, 0.0306585431098938, -0.006575245875865221, 0.0016292213695123792, -0.0005994075909256935, -0.030866045504808426, 0.0002196612040279433, -0.0007534135947935283, -0.01274197082966566, -1.626181801839266e-05, -0.008779963478446007, -0.013163460418581963, -0.009305205196142197, -0.0005414526676759124, -0.003096331376582384, -0.006964313797652721, -0.005385346710681915, -0.0010561569361016154, 0.000810963218100369, -0.007593306712806225, 0.006572003476321697, -0.0009888806380331516, 0.004620179999619722, -0.012670641764998436, 0.037194881588220596, -0.007619244512170553, -0.020996691659092903, 0.013221820816397667, -0.015407085418701172, 0.024316737428307533, -0.01637975499033928, -0.0004875505983363837, 0.0048309252597391605, -0.013195882551372051, 0.0009880701545625925, -5.255961696093436e-06, -0.0015279017388820648, -0.003608603961765766, 0.001885357778519392, 0.028350073844194412, 0.0020863760728389025, 0.013721124269068241, -0.0010423774365335703, -0.022410305216908455, -0.008527069352567196, 0.0026861890219151974, -0.007599791046231985, 0.010070371441543102, 0.004224627744406462, 0.008578944951295853, 0.00796292070299387, -0.014654886908829212, -0.004338106140494347, 0.00632883608341217, 0.004231112543493509, 0.0120611023157835, -0.006455283146351576, -0.004338106140494347, 0.007178300991654396, 0.009629428386688232, -0.016587257385253906, 0.00014823078527115285, -0.004072242882102728, -0.009558099322021008, 0.02492627687752247, 0.004847136326134205, 0.009609974920749664, 0.012022195383906364, -0.0057355077005922794, 0.0034464923664927483, 0.0025516364257782698, 0.0071134562604129314, -0.0234218817204237, 0.017987901344895363, -0.007541431114077568, -0.0063904388807713985, 0.021982330828905106, 0.02034824527800083, -0.01385081373155117, 0.006351531948894262, 0.01302728708833456, 0.009363564662635326, 0.006497432477772236, 0.0007254493539221585, 0.011341326870024204, 0.0033751633018255234, 0.019881363958120346, 0.016781792044639587, 0.007554399780929089, 0.00564796756953001, -0.012022195383906364, 0.005771172232925892, -0.02347375825047493, -0.009136608801782131, -0.0009070142987184227, -0.0036248150281608105, 0.01657428778707981, 0.00516487518325448, 0.012780877761542797, -0.008021281100809574, -0.031047610566020012, 0.0005722538917325437, 0.007839716039597988, -0.009622943587601185, -0.014512228779494762, 0.00850113108754158, -0.008948559872806072, -0.0037869266234338284, 0.0031401014421135187, -0.0020815127063542604, 0.0030282444786280394, 0.006169966887682676, 0.041396815329790115, 0.013941596262156963, -0.005395073443651199, 0.0015246594557538629, 0.0383102111518383, 0.007145878858864307, -0.008760510012507439, 0.014927234500646591, 0.021165288984775543, 0.011639611795544624, -0.010083340108394623, -0.024679867550730705, 0.004795260727405548, 0.00289855501614511, 0.011717425659298897, 0.004620179999619722, -0.032967012375593185, 0.006160240154713392, 0.002734822453930974, -0.026093481108546257, -0.005349682178348303, -0.01853259652853012, -0.01490129716694355, 0.0013179671950638294, -0.00767112011089921, -0.011075463145971298, -0.001614631386473775, -0.01583505980670452, -0.011717425659298897, -0.007236660923808813, -0.02373313531279564, -0.02086700312793255, 0.010381625965237617, 0.005502067040652037, 0.01355252880603075, 0.007651666644960642, -0.007068064995110035, -0.008792932145297527, -0.011795238591730595, -0.0031401014421135187, 9.670969302533194e-05, -0.002986095380038023, 0.0015060165897011757, -0.0017410784494131804, -0.022812342271208763, 0.026236139237880707, 0.010550222359597683, -0.0036215728614479303, 0.015160675160586834, 0.001622736919671297, 0.008027765899896622, 0.017248673364520073, 0.01702820137143135, -0.0030541822779923677, 0.01876603625714779, 0.02273452840745449, 0.02509487234055996, -0.011367264203727245, 0.016224127262830734, 0.02060762420296669, -0.015912873670458794, -0.002031258074566722, 0.002887207316234708, 0.006516885478049517, 0.004062516149133444, -0.00848816242069006, -0.0017735006986185908, 0.01356549747288227, 0.019206980243325233, 0.0037804420571774244, 0.00983693078160286, -0.001617063069716096, 0.010647488757967949, 0.012035164050757885, 0.012430716305971146, -0.0026051332242786884, -0.011477500200271606, 0.013163460418581963, -0.013319088146090508, -0.015653494745492935, -0.0038874358870089054, 0.022916093468666077, -0.026352860033512115, -0.002631071023643017, -0.002990958746522665, -0.010589128360152245, 0.001625168602913618, 0.012184306979179382, -0.016107406467199326, -0.007256114389747381, -0.0013876751763746142, -0.0071134562604129314, 0.03737644851207733, 0.0292319618165493, 0.009285751730203629, 0.012281573377549648, -0.0022338975686579943, -0.0010577781358733773, 0.004364043939858675, 0.015679432079195976, -0.011237574741244316, -0.0035113368649035692, -0.013798938132822514, -0.01924588717520237, -0.015523805283010006, -0.004616938065737486, 0.006776264403015375, -0.005800352431833744, 0.023966576904058456, 0.005083819385617971, 0.013131038285791874, -0.0008608124917373061, -0.01652241311967373, -0.016327878460288048, 0.012190790846943855, 0.015627557411789894, 0.0030444555450230837, 0.003488641232252121, -0.010303812101483345, 0.016470536589622498, 0.022150926291942596, 0.007068064995110035, 0.006795717403292656, 0.006426103413105011, 0.020218556746840477, 0.012813299894332886, -0.009668335318565369, -0.009032857604324818, -0.01833806186914444, -0.008948559872806072, -0.01969979889690876, -0.007872138172388077, 0.02920602262020111, 0.018519626930356026, -0.005489098373800516, 0.001872388762421906, 0.038647402077913284, -0.0020150470081716776, 0.01711898297071457, 0.0065298546105623245, 0.007236660923808813, 0.009973105043172836, -0.0038096222560852766, 2.3050240542943357e-06, -0.0134098706766963, 0.037454258650541306, -0.0020831339061260223, 0.0009086354402825236, 0.030606666579842567, -0.004464553203433752, 0.010589128360152245, -0.010686395689845085, -0.005952737294137478, 0.014213943853974342, -0.0002407357096672058, -0.020763251930475235, 0.01702820137143135, 0.009720210917294025, 0.005391831509768963, -0.003641026094555855, -0.004714204929769039, 0.009039342403411865, -0.0029471886809915304, 0.0071329097263514996, -0.00945434719324112, 0.016301941126585007, 0.04393872246146202, 0.003679933026432991, 0.008436286821961403, -0.030632605776190758, -0.005943010561168194, -0.009940681979060173, 0.023175472393631935, 0.013461746275424957, 0.011315388604998589, -0.005168117117136717, -0.00699025159701705, -0.03493828698992729, -0.01006388757377863, 0.005226477514952421, 0.008280660025775433, -0.010478892363607883, -0.0014630570076406002, 0.0049703409895300865, 0.00026647091726772487, 0.019647924229502678, 0.020140742883086205, -0.028531638905405998, 0.003670206293463707, 0.004020367283374071, 0.002718611154705286, -0.012651188299059868, -0.02387579344213009, -0.007191269658505917, -0.011120854876935482, -0.006724388338625431, -0.016003655269742012, 0.00953864585608244, -0.003063909010961652, 0.01549786701798439, 0.012949473224580288, 0.00871511921286583, 0.0337710864841938, -0.0058684395626187325, -0.0069318911992013454, 0.008475193753838539, 0.007606275379657745, -0.012813299894332886, 0.017222734168171883, -0.017845243215560913, -0.005281595513224602, 0.02736443467438221, -0.031410738825798035, -0.001026976853609085, 0.00424408121034503, 0.01700226217508316, 0.008235268294811249, -0.002796424785628915, 0.01771555468440056, 0.003936069086194038, -0.003579423762857914, 0.005622029770165682, 0.009227391332387924, -0.0042862300761044025, -0.016989294439554214, -0.00255812075920403, 0.01575724594295025, 0.004999521188437939, 0.007489555049687624, -0.01915510557591915, -0.008326050825417042, -0.007619244512170553, 0.0011663928162306547, 0.013422839343547821, 0.0006715472554787993, -1.1620108125498518e-05, 0.01938854530453682, -0.002986095380038023, 0.01119866780936718, -0.006698450539261103, 0.013889720663428307, -0.006575245875865221, 0.008131517097353935, 0.015277395956218243, 0.004338106140494347, 0.012041648849844933, -0.01645756885409355, -0.00579062569886446, 0.008436286821961403, 0.014097223058342934, 0.0051032728515565395, -9.42273618420586e-05, 0.037117067724466324, 0.005625272169709206, 0.008416833356022835, -0.018299154937267303, -0.0075349463149905205, -0.001804301980882883, -0.006442314479500055, 0.01505692396312952, 0.008702149614691734, -0.006468252278864384, 0.010880929417908192, 0.01197680365294218, 0.0042862300761044025, -0.016703978180885315, 0.024342674762010574, -0.0026715989224612713, -0.005385346710681915, -0.001536007272079587, -0.00650715921074152, 0.021191226318478584, -0.003352467669174075, -0.021269040182232857, 0.0004790397360920906, -0.005245930980890989, 0.020996691659092903, -0.03133292868733406, -0.0030282444786280394, 0.00530104897916317, 0.008922621607780457, -0.018013838678598404, 0.017845243215560913, -0.01649647392332554, -0.003333014203235507, -0.008624336682260036, -0.02543206512928009, -0.01645756885409355, 0.03299294784665108, -0.018921663984656334, 0.002567847492173314, 0.0057776570320129395, 0.01045943982899189, -0.04663626104593277, 0.025159718468785286, -0.019505266100168228, 0.005495582707226276, 0.028090694919228554, -0.01776742935180664, 0.00516487518325448, -0.002966641914099455, 0.001526280539110303, 0.008494647219777107, -0.0018480720464140177, 0.010991165414452553, 0.004153298679739237, 0.028635390102863312, 0.004305683542042971, -0.007411741651594639, -0.023888763040304184, -0.017209766432642937, 0.013954564929008484, -0.019764645025134087, -0.0007311232620850205, 0.004182478878647089, 0.005978675093501806, -0.007541431114077568, -0.011860083788633347, -0.0018140285974368453, 0.022189833223819733, -0.01805274561047554, 0.009467316791415215, -0.007184785325080156, -0.004331621341407299, -0.010452955029904842, 0.0039976718835532665, -0.0032584427390247583, -0.032967012375593185, -0.021009661257267, 0.013357994146645069, -0.00032706011552363634, -0.00162678980268538, -1.7186361219501123e-05, 0.014291757717728615, -0.01975167542695999, 0.004496975336223841, -0.013760031200945377, 0.0016827182844281197, -0.01700226217508316, -0.004338106140494347, -0.009687787853181362, 0.000816637126263231, 0.004989794455468655, 0.008792932145297527, -0.0027802137192338705, -0.004257050342857838, -0.008112063631415367, -0.012074070982635021, -0.04868534952402115, -0.013669248670339584, 0.011101401410996914, -0.010906867682933807, 0.001979382475838065, -0.02449830248951912, 0.0073858038522303104, 0.001523848855867982, -0.011068979278206825, -0.003397858701646328, 0.024135172367095947, 0.016392722725868225, -0.0013220199616625905, -0.027468187734484673, 0.011704456061124802, -0.019025415182113647, 0.01740429922938347, -0.015679432079195976, -0.010984680615365505, -0.0025224562268704176, 0.022488119080662727, -0.005453433841466904, -0.0016105786198750138, 0.002045848174020648, 0.006776264403015375, -0.004347832873463631, 0.0072236922569572926, 0.025795195251703262, -0.009713726118206978, 0.015407085418701172, 0.0038582556881010532, -0.0003949443344026804, -0.01400644052773714, 0.0025937852915376425, 0.00034691879409365356, 0.0069318911992013454, 0.007055096328258514, -0.0015603239880874753, 0.010790146887302399, 0.017080076038837433, -0.024290800094604492, -0.012048132717609406, 0.010167638771235943, -0.03218887746334076, 0.0022646987345069647, -0.007275567855685949, -0.0096488818526268, -0.0056641786359250546, 0.003576181596145034, -0.004866589792072773, -0.023292193189263344, 0.007301505655050278, 0.02366829104721546, 2.6697751309257e-05, -0.0063807121478021145, 8.602046000305563e-05, 0.014771607704460621, -0.006114848889410496, 0.0076257288455963135, 0.02347375825047493, 0.02576925791800022, 0.010621551424264908, -0.021904516965150833, -0.009914744645357132, -0.007074549328535795, 0.007398772519081831, 0.002736443653702736, 0.007450648583471775, -0.016444599255919456, 0.028116634115576744, 0.005511793773621321, 0.003005548845976591, 0.011081947945058346, -0.0071134562604129314, -0.012651188299059868, -0.014265819452702999, -0.002901797415688634, 0.006977282464504242, -0.017650708556175232, 0.0002715369046200067, -0.0007380130118690431, 0.014434415847063065, -0.017676647752523422, -0.022267647087574005, -0.026560362428426743, -0.02359047718346119, -0.007418225985020399, 0.0010942531516775489, 0.01762477122247219, -0.011691487394273281, 0.006717904005199671, 0.007074549328535795, -0.006215358152985573, -0.0032795174047350883, 0.027494125068187714, 0.004759596195071936, 0.022501088678836823, 0.0022420031018555164, -0.015173644758760929, -0.016081469133496284, 0.013941596262156963, 0.005395073443651199, -0.019907303154468536, 0.0022679411340504885, -0.02106153778731823, 0.02213795855641365, -0.030139785259962082, -0.0008065051515586674, -0.004853620659559965, -0.012177822180092335, 0.013020802289247513, 0.030243536457419395, -0.014213943853974342, 0.0024397792294621468, 0.012923535890877247, 0.005411284510046244, -0.00782026257365942, -0.014823483303189278, -0.009823962114751339, 0.005638240836560726, -0.04565062373876572, -0.006251022685319185, 0.005359408911317587, -0.001120191067457199, -0.017858212813735008, 0.0041370876133441925, 0.02132091484963894, 0.0018594198627397418, 0.005411284510046244, 0.011146792210638523, -0.0004940350772812963, -0.008663242682814598, -0.01580912247300148, 0.011393202468752861, -0.006562276743352413, -0.01793602481484413, -0.0004158162046223879, -0.0030995735432952642, 0.019349638372659683, 0.006361258681863546, -0.019349638372659683, -0.021126382052898407, 0.011172730475664139, 0.010381625965237617, 0.005100030452013016, 0.007119940593838692, -0.016444599255919456, 0.02707911841571331, -0.008792932145297527, -0.005703085567802191, 0.006672512739896774, 0.009810993447899818, -0.005579880904406309, 0.008339019492268562, -0.011120854876935482, 0.013876751996576786, -0.003731808625161648, 0.005041670054197311, 0.029621029272675514, -0.0017816063482314348, 0.01824728026986122, 0.009713726118206978, 0.02051684260368347, 0.0004968720022588968, -0.0005495582590810955, 0.005917072761803865, -0.003517821431159973, 0.003271411871537566, -0.020841065794229507, -0.01008982490748167, -0.02259187027812004, -0.010349203832447529, -0.008591913618147373, 0.006455283146351576, 0.022604839876294136, 0.000235872357734479, 0.009188484400510788, -0.004195448011159897, 0.004085212014615536, 0.0029601575806736946, 0.007171816658228636, -0.0029747476801276207, 0.02347375825047493, -0.0023441335652023554, -0.003248716238886118, 0.003897162387147546, 0.009953651577234268, -0.012067586183547974, 0.006938375998288393, 0.009220906533300877, -0.010439986363053322, 0.014188005588948727, 0.025393158197402954, -0.014551135711371899, -0.01356549747288227, -0.008903168141841888, 0.017650708556175232, 0.006225084885954857, -0.011652580462396145, -0.00020091704209335148, 0.0021528417710214853, 0.0015895040705800056, -0.00752846198156476, -0.019375575706362724, -0.016963357105851173, -0.0037771998904645443, -0.024109235033392906, -0.011762816458940506, 0.0030168965458869934, 0.005459918174892664, -0.007418225985020399, -0.0003037565911654383, 0.010984680615365505, 0.00044783324119634926, 0.009480285458266735, 0.004607211332768202, 0.0329151377081871, 0.0010893899016082287, -0.0020879972726106644, -0.012638218700885773, -0.0180268082767725, -0.010206545703113079, 0.011873052455484867, 0.00850113108754158, -0.00844277162104845, 0.010699364356696606, -0.009240359999239445, -0.005138937383890152, 0.011704456061124802, -0.014706762507557869, 0.007431195117533207, 0.0134098706766963, 0.00969427265226841, -0.005813321564346552, -0.003968491684645414, -0.022721558809280396, 0.00010790552187245339, -0.004928192123770714, 0.0011266755172982812, 0.025639567524194717, -0.0072950213216245174, -0.015796152874827385, -0.006795717403292656, -0.006497432477772236, -0.00956458318978548, 0.009285751730203629, 0.0020944816060364246, -0.020049961283802986, -0.0025111085269600153, 0.01583505980670452, -0.0028628904838114977, 0.03314857557415962, -0.0030282444786280394, -0.03211106359958649, -0.0008632441749796271, -0.0017345939995720983, -0.013383932411670685, 0.006474736612290144, -0.0069513446651399136, -0.014330663718283176, -0.010867960751056671, 0.0032195360399782658, 0.01941448263823986, 0.009240359999239445, 0.016937417909502983, -0.004652602598071098, 0.013370963744819164, -0.0109976502135396, -0.014667856507003307, 0.006905953399837017, 0.010984680615365505, 0.005609060637652874, -0.021593263372778893, -0.0005807647248730063, 0.003504852531477809, 0.02478361874818802, -0.017157889902591705, -0.008955043740570545, -0.020555749535560608, 0.013221820816397667, -0.0072236922569572926, 0.001791332964785397, 0.01711898297071457, -0.014200975187122822, 0.0037771998904645443, 0.009357080794870853, -0.0017151405336335301, 0.007366350386291742, 0.014239881187677383, -0.00850113108754158, -2.028927883657161e-05, 0.009318173862993717, 0.012236182577908039, 0.007191269658505917, -0.020828096196055412, 0.010790146887302399, 0.004681782331317663, 0.0016892027342692018, 0.006487705744802952, -0.006332078482955694, 0.014512228779494762, 0.0006058920407667756, -0.0019420967437326908, 0.001195572898723185, 0.012352902442216873, -0.01955714076757431, 0.014499260112643242, 0.002896934049203992, -0.03096979670226574, -0.001531954505480826, 0.03371920809149742, -0.011496953666210175, 0.003679933026432991, -0.013345025479793549, -0.04461310803890228, 0.009914744645357132, 0.011613673530519009, 0.02557472325861454, -0.0029455674812197685, 0.02418704889714718, 0.011004134081304073, 0.015005048364400864, -0.002405735896900296, -0.015848029404878616, -0.026638176292181015, -0.003414070000872016, -0.002331164665520191, -0.013020802289247513, 0.0035470013972371817, -0.022786404937505722, 0.00154492340516299, 4.8937436076812446e-05, 0.016652101650834084, 0.003744777524843812, -0.007748933508992195, 0.02387579344213009, -0.03317451477050781, -0.0006411513313651085, 0.0006610099808312953, 0.011548829264938831, -0.00047296055709011853, 0.008423318155109882, -0.024316737428307533, 0.0015043955063447356, -0.00912364013493061, -0.010498345829546452, 0.016898510977625847, 0.00205395370721817, 0.011464531533420086, -0.006834624335169792, -0.0005596902337856591, 0.0007906992686912417, -0.02077622152864933, 0.018882757052779198, -0.00046363912406377494, 0.015822090208530426, -0.009960135444998741, -0.005249172914773226, 0.022099051624536514, 0.017054138705134392, -0.016081469133496284, -0.0003823807055596262, -0.0045910002663731575, -0.01838993839919567, 0.010971711948513985, 0.0014200974255800247, -0.0035632126964628696, 0.00564148323610425, -0.003323287470266223, 0.01114030834287405, -0.021839672699570656, 0.03244825452566147, -0.0057452344335615635, 0.03841396048665047, -0.02211201936006546, -0.005660936702042818, 0.011516407132148743, 0.0055960919708013535, -0.002979610813781619, -0.003641026094555855, -0.005388589110225439, -0.029076334089040756, 0.014071285724639893, 0.010511315427720547, -0.01114030834287405, -0.03582017496228218, 0.003326529636979103, -0.0023344068322330713, -0.011321873404085636, -0.009078248403966427, -0.011639611795544624, -0.014265819452702999, -0.016418661922216415, 0.02216389589011669, 0.004678540397435427, -0.007171816658228636, 0.007178300991654396, -0.008565976284444332, -0.02803882025182247, -0.00931168906390667, 0.002535425126552582, 0.018688224256038666, -0.004396466072648764, 0.01905135251581669, 0.019829489290714264, -0.005716054234653711, 0.0007955625769682229, 0.009921228513121605, -0.01118569914251566, -0.004743385128676891, 0.017948994413018227, 0.0034237967338413, -0.034782662987709045, -0.0003933232219424099, 0.008617851883172989, -0.03099573403596878, -0.01535520888864994, -0.002206338569521904, 0.017585864290595055, 1.7262351320823655e-05, 0.0028726172167807817, -0.008073156699538231, -0.004315410275012255, -0.0246928371489048, 0.0033913743682205677, -0.006085668690502644, 0.012223213911056519, -0.007936983369290829, 0.01771555468440056, -0.008222299627959728, 0.009785055182874203, -0.003576181596145034, -0.0051097571849823, -0.009759116917848587, 0.035016100853681564, 0.004779049661010504, 0.012365872040390968, 0.005200539715588093, 0.00219336966983974, -0.01969979889690876, 0.007521977648139, 0.006584972608834505, 0.00737931951880455, 0.0038874358870089054, 0.0010820948518812656, 0.01172390952706337, 0.01609443873167038, -0.00516487518325448, -0.013066194020211697, 0.008455740287899971, -0.028765078634023666, -0.004198689945042133, 0.01196383498609066, 0.03395264968276024, 0.007787840440869331, -0.018947601318359375, -0.016872573643922806, 0.015005048364400864, 0.01383784506469965, 0.030243536457419395, 0.0007635455694980919, -0.022617807611823082, -0.0031109212432056665, -0.005638240836560726, 0.0026764622889459133, 0.016781792044639587, -0.00984989944845438, 0.0008292007260024548, -0.004704478196799755, 0.01166555006057024, 0.008993950672447681, -0.00970724131911993, -0.0025921643245965242, -0.029880406334996223, 0.00395228061825037, 0.008948559872806072, 0.013293149881064892, 0.025509878993034363, 0.007735964842140675, -0.005780898965895176, 0.0041468143463134766, -0.020970754325389862, -0.01870119199156761, -0.02330516092479229, -0.00034833725658245385, -0.0034724301658570766, -0.012709547765552998, -0.004694751463830471, -0.009415441192686558, 0.01399347186088562, 0.02605457417666912, 0.0022598356008529663, -0.01307267788797617, -0.0022906367667019367, -0.005427496042102575, 0.01302728708833456, -0.006276960484683514, -0.0043672858737409115, 0.00737931951880455, 0.0030444555450230837, -0.01674288511276245, -0.0037285664584487677, 0.02949133887887001, -0.013163460418581963, -0.0016575909685343504, 0.0019404756603762507, 0.010589128360152245, 0.004659086931496859, -0.01989433355629444, 0.011898990720510483, 0.009661850519478321, 0.0069513446651399136, -0.015121768228709698, -0.011218121275305748, 0.003994429484009743, 0.017508050426840782, -0.02648254856467247, 0.005660936702042818, 0.0465584471821785, -0.00535616697743535, -0.001454951474443078, 0.027027243748307228, -0.00912364013493061, -0.021619200706481934, -0.013682217337191105, 0.002031258074566722, 0.010303812101483345, -0.04987849295139313, 0.006905953399837017, 0.0317998081445694, -0.012839237228035927, -0.015523805283010006, 0.0030201387125998735, 0.003670206293463707, 0.026664113625884056, 0.009642397053539753, 0.010465923696756363, -0.0016924449009820819, 0.012923535890877247, 0.003978218417614698, -0.008676212280988693, 0.013079162687063217, -0.008351989090442657, -0.010991165414452553, -0.03317451477050781, 0.011853598989546299, -0.006111606955528259, -0.026326920837163925, -0.013526590541005135, 0.00438673933967948, 0.01355252880603075, -0.005874923896044493, 0.005625272169709206, -0.0008206898928619921, 0.0134098706766963, 0.005511793773621321, -0.004980067722499371, 0.0034464923664927483, 0.0032146726734936237, 0.016133345663547516, -0.017041169106960297, -0.0026051332242786884, 0.0074441637843847275, 0.01848071999847889, -0.0016016624867916107, -0.005670663435012102, 0.012326965108513832, 0.001015629037283361, 0.009603490121662617, -0.011373749002814293, -0.002733201254159212, 0.010122247040271759, 0.007606275379657745, -0.015848029404878616, -0.0044094352051615715, -0.016055531799793243, -0.0052751111797988415, 0.00429919920861721, 0.0029261140152812004, 0.0031984616070985794, 0.006056488957256079, 0.002212823135778308, 0.014473321847617626, -0.026041604578495026, -0.01580912247300148, 0.008624336682260036, 0.03317451477050781, 0.029932282865047455, 0.009415441192686558, -0.018636347725987434, -0.002673220122233033, -0.04323840141296387, -0.0012685231631621718, 0.015770215541124344, -0.004552093334496021, 0.008241753093898296, -0.0042375968769192696, 0.004347832873463631, 0.0204390287399292, 0.003329772036522627, 0.004496975336223841, 0.008287143893539906, 0.0010780420852825046, -0.023084688931703568, -0.012339933775365353, 0.01921994984149933, 0.016301941126585007, 0.020879972726106644, -0.010310296900570393, 0.010141700506210327, 0.00848816242069006, -0.008241753093898296, -0.012677125632762909, -0.011496953666210175, 0.009590521454811096, -0.013772999867796898, 0.028635390102863312, -0.017819305881857872, -0.02168404497206211, -0.0020993449725210667, -0.0043186526745557785, 0.00859839841723442, 0.011957350187003613, 0.0011396444169804454, 0.0020993449725210667, -0.0003254390030633658, -0.01836400106549263, -0.00011965861631324515, 0.007722995709627867, -0.020879972726106644, 0.0020150470081716776, 0.007865654304623604, 0.010984680615365505, 0.012372355908155441, -0.008176907896995544, 0.01355252880603075, 0.012981895357370377, 0.010122247040271759, -0.028376011177897453, -0.005158390384167433, -0.005362651310861111, 0.011289450339972973, 0.003336256369948387, -0.0011850356822833419, 0.004574788734316826, -0.0014906160067766905, -0.006050004158169031, 0.008754025213420391, 0.00889668334275484, 0.023707197979092598, -0.0032195360399782658, -0.0015092588728293777, 0.0023668291978538036, 0.0153292715549469, 0.013345025479793549, -0.01612037606537342, 0.0010942531516775489, 0.0018334820633754134, -0.017183827236294746, -0.012955958023667336, -6.697234493913129e-05, -0.014628949575126171, -0.03812864422798157, -0.006001370958983898, -0.016794759780168533, 0.0018156497972086072, 0.0069318911992013454, 0.008553007617592812, 0.011775785125792027, 0.010323265567421913, -0.013118069618940353, -0.004117634147405624, 0.013928627595305443, -0.004013882949948311, 0.010277874767780304, 0.007346896920353174, -0.020205587148666382, -0.013059709221124649, -0.009817477315664291, 0.018065715208649635, 0.0016081469366326928, 0.007463617250323296, 0.006964313797652721, 0.006050004158169031, 0.00627371808513999, -0.001281492062844336, 0.009629428386688232, 0.02154138684272766, 0.0015676190378144383, 0.012592827901244164, 0.017508050426840782, -0.013682217337191105, -0.004629906732589006, -0.02125607058405876, 0.022410305216908455, 0.005145421717315912, 0.003962007351219654, -0.0015846407040953636, -0.0041468143463134766, 0.00834550429135561, -0.007573853246867657, 0.002645661123096943, -0.008436286821961403, 0.03496422618627548, 0.032396379858255386, -0.0033589520025998354, 0.0032130517065525055, 0.0005625272169709206, 0.0385955274105072, 0.005751719232648611, -0.03211106359958649, -0.002736443653702736, -0.0054988251067698, 0.011030072346329689, 0.002754275919869542, 0.011555314064025879, -0.005557185038924217, -0.002990958746522665, 0.004364043939858675, 0.024770651012659073, -0.005236204247921705, -0.007087518461048603, 0.017131952568888664, 0.01119866780936718, 0.02213795855641365, 0.007437679450958967, -0.034497346729040146, 0.026249106973409653, 0.011211637407541275, -0.004007398150861263, -0.023979544639587402, 0.017780398949980736, -0.022345460951328278, -0.011743362993001938, 0.004425646271556616, -0.014499260112643242, 0.02387579344213009, -0.00931168906390667, -0.02426486276090145, 0.010835538618266582, -0.003527548164129257, -0.003517821431159973, -0.03465297073125839, 0.01583505980670452, -0.018117589876055717, -0.014680825173854828, -0.006325594149529934, 0.014097223058342934, 0.014836451970040798, -0.014732700772583485, 0.01158125139772892, -0.0015538395382463932, -0.007094002794474363, 0.015420054085552692, -0.03659830987453461, -0.018545566126704216, -0.0050935461185872555, -0.0017378361662849784, -0.0074052573181688786, 0.019544173032045364, 0.006218600552529097, 0.030139785259962082, 0.0035664548631757498, -0.016729915514588356, -0.024303767830133438, -0.017183827236294746, 0.022189833223819733, 0.00463314913213253, 0.006160240154713392, -0.010653973557054996, -0.01414909865707159, -0.011717425659298897, -0.006594699341803789, 0.009337627328932285, 0.021307947114109993, 0.0005418579676188529, -0.02466689795255661, 0.01091335155069828, -0.008553007617592812, 0.010692880488932133, -0.02418704889714718, 0.009973105043172836, 0.004043062683194876, -0.010414048098027706, -0.01898650825023651, 0.0006042709574103355, 0.010264905169606209, 0.0032924863044172525, -0.020361214876174927, 0.00632235174998641], "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd": [-0.026331234723329544, 0.01191595010459423, 0.0026169512420892715, -0.016010450199246407, -0.03110937587916851, -0.03943069279193878, 0.02962447702884674, 0.03210911154747009, -0.017245415598154068, 0.011886545456945896, 0.02136196754872799, 0.015481178648769855, -0.00023798820620868355, -0.03969532996416092, -0.03822513297200203, -0.015319456346333027, -0.025022760033607483, 0.028051365166902542, -0.0005857817595824599, -0.03128580003976822, 0.060278091579675674, -0.0054654586128890514, -0.07498006522655487, 0.029492158442735672, -0.00993853434920311, -0.004487777594476938, -0.02130316011607647, -0.0014674407429993153, -0.002245726529508829, -0.010475155897438526, 0.009365157224237919, 0.008277211338281631, 0.037313610315322876, -0.01812753453850746, -0.007141483947634697, -0.030756529420614243, -0.03396156057715416, 0.006840093061327934, -0.003175626276060939, -0.014040385372936726, -0.001222101622261107, 0.006821715738624334, 0.03534354642033577, 0.025052163749933243, -0.025728454813361168, 0.01415800116956234, 0.002949583576992154, -0.00046104472130537033, -0.008218402974307537, 0.005145690869539976, -0.0003473341348581016, -0.008255158551037312, -0.020876802504062653, 0.016392700374126434, 0.02850712649524212, -0.03660791367292404, 0.02252342365682125, 0.061454251408576965, -0.02106792852282524, -0.03399096429347992, -0.00029243144672363997, -0.019377201795578003, 0.015951640903949738, -0.003028606530278921, 0.000419235962908715, -0.009196084924042225, -0.008438932709395885, 0.01060012262314558, -0.037225399166345596, 0.026581168174743652, 0.023243820294737816, 0.05210379511117935, -0.03572579473257065, 0.0075715165585279465, -0.004910459276288748, 0.022361701354384422, 0.029065802693367004, 0.0035780929028987885, 0.031962089240550995, 0.010232573375105858, 0.0009565471555106342, -0.02536090463399887, 0.030638912692666054, 0.010872109793126583, 0.057425908744335175, 0.0006280499510467052, -0.05936656892299652, -0.041694797575473785, -0.05927835777401924, -0.017715878784656525, 0.010394295677542686, 0.012334955856204033, -0.01837746798992157, -0.006821715738624334, 0.0076523772440850735, -0.003298755269497633, 0.0054544322192668915, 0.004072446841746569, 0.019230181351304054, -0.01337879616767168, 0.00711575523018837, -0.0013939308701083064, -0.06068974733352661, -0.00046104472130537033, -0.013467008247971535, -0.03848976641893387, -0.000776447996031493, 0.007549463305622339, -0.004465724341571331, 0.004557611886411905, 0.014297669753432274, -0.01342290174216032, -0.02983030490577221, 0.0013580948580056429, -0.0015170598635450006, 0.00993118342012167, -0.016583826392889023, 1.8197999906988116e-06, -0.00425989693030715, -0.047516778111457825, 0.04384128749370575, -0.020171107724308968, 0.027286862954497337, -0.008027277886867523, -0.005719067994505167, 0.030874144285917282, 0.01056336797773838, 0.039930559694767, 0.037548840045928955, 0.02399362064898014, 0.026051897555589676, -0.03922486677765846, 0.026463553309440613, 0.03701956942677498, 0.007843502797186375, 0.026037195697426796, 0.028933484107255936, 0.05951359122991562, 0.017230713739991188, 0.022229384630918503, -0.0708635151386261, -0.058925509452819824, -0.0142609141767025, 0.033285267651081085, -0.01334204152226448, 0.01568700559437275, -0.02272925153374672, 0.005355193745344877, 0.00018745016132015735, 0.02108263038098812, -0.04919280484318733, -0.02124435268342495, -0.002958772238343954, 0.010614825412631035, 0.031932685524225235, -0.04528208076953888, 0.0076597281731665134, 0.04369426518678665, -0.04945743829011917, 0.015804622322320938, 0.01687786541879177, -0.04704631492495537, 0.0033244837541133165, -0.009850322268903255, 0.04078327491879463, 0.02411123737692833, 0.027522094547748566, 0.021744219586253166, -0.03951890394091606, 0.007056947331875563, 0.03143281862139702, -0.028639445081353188, 0.018906738609075546, -0.019333096221089363, -0.007622973527759314, 0.000483786832774058, 0.06568841636180878, 0.015422370284795761, -0.007821450009942055, 0.0014444689732044935, -0.006876848172396421, 0.004539234563708305, 0.0017963973805308342, -0.03404977172613144, -0.024816932156682014, -0.006266716402024031, 0.01958302967250347, 0.01708369329571724, 0.014996013604104519, 0.01708369329571724, 0.006454166490584612, -0.044429365545511246, 0.020715080201625824, 0.01814223639667034, 0.012996545061469078, -0.04492923244833946, 0.015363562852144241, 0.011210255324840546, -0.0015391128836199641, 0.01048250775784254, -0.01335674338042736, -0.033226460218429565, -0.02389070764183998, 0.051545120775699615, -0.0012643696973100305, 0.05563226714730263, -0.03534354642033577, 0.0012708018766716123, 0.0029220173601061106, 0.0105486661195755, 0.013812504708766937, -0.015047470107674599, 0.007909662090241909, -0.01337879616767168, -0.01674554869532585, 0.02531679905951023, -0.04648764058947563, -0.006343901623040438, -0.023199714720249176, -0.014356477186083794, -0.021641304716467857, -0.007843502797186375, 0.0076597281731665134, -0.03387334570288658, -0.028521828353405, -0.012606942094862461, -0.022067662328481674, 0.010475155897438526, -0.0105486661195755, 0.004432645160704851, 0.025052163749933243, -0.035961028188467026, 0.0038151622284203768, -0.038842614740133286, -0.031873878091573715, 0.004160658456385136, 0.033285267651081085, -0.008777078241109848, 0.006112345494329929, -0.02400832250714302, 0.01997998170554638, -0.001995792845264077, -0.012871578335762024, 0.010364891961216927, 0.01281276997178793, 0.02825719304382801, -0.05333876237273216, 0.03687255084514618, 0.026066599413752556, 0.039019037038087845, 0.016451507806777954, -0.024493487551808357, -0.0002001995308091864, 0.03266778588294983, -0.02278805896639824, -0.014988662675023079, 0.010938268154859543, -0.02114143781363964, 0.019068459048867226, -0.026522360742092133, -0.015319456346333027, -0.002914666198194027, -0.016275085508823395, -0.00012645994138438255, 0.02827189490199089, -0.021597199141979218, 0.029242224991321564, -0.027228055521845818, 0.016245681792497635, 0.047222740948200226, 0.02122965082526207, 0.019156672060489655, 0.019450711086392403, -0.009570985101163387, 0.020082896575331688, -0.003032281994819641, 0.0009243866079486907, 0.001095297047868371, -0.03496129438281059, -0.007792046293616295, 0.008233105763792992, -0.03252076730132103, 0.03281480446457863, 0.024919845163822174, -0.017657071352005005, 0.044458769261837006, 0.004197413567453623, -0.0045943669974803925, -0.017642367631196976, -0.030903548002243042, -0.006020458415150642, 0.0009133600979112089, -0.0183186586946249, 0.015863429754972458, -0.00666734529659152, 0.014643166214227676, 0.010056150145828724, -0.04116552695631981, -0.026507658883929253, -0.0012680452782660723, -0.008777078241109848, -0.03490248695015907, -0.028036663308739662, -0.0014628464123234153, 0.041812412440776825, -0.003804135601967573, 0.034461427479982376, -0.0032656758558005095, 0.02284686639904976, 0.006336550693958998, 0.03425559774041176, -0.0003349293256178498, 0.02952156402170658, -0.05207439139485359, -0.02127375639975071, 0.01562819816172123, -0.027463287115097046, 0.018054023385047913, -0.031579840928316116, -0.020038791000843048, 0.009203435853123665, -0.006579133216291666, -0.024934547021985054, 0.01686316356062889, 0.005480160936713219, -0.01975945197045803, 0.0134376036003232, -0.004881055094301701, 0.023802494630217552, -0.050045520067214966, -0.00711207976564765, -0.04242989793419838, -0.051603928208351135, 0.009651845321059227, -0.011173499748110771, -0.03554937243461609, -0.06368894875049591, -0.034608446061611176, 0.02561083808541298, -0.02678699605166912, -0.015554687939584255, 0.014701973646879196, -0.003227083245292306, -0.03399096429347992, -0.010930917225778103, 0.00042980301077477634, 0.012886280193924904, -0.001933309598825872, -0.023199714720249176, 0.013077405281364918, 0.0008853345061652362, 0.004134930204600096, 0.012173234485089779, 0.003162762150168419, -0.009335753507912159, 0.010975023731589317, -0.023155609145760536, 0.006909927818924189, 0.014996013604104519, -0.002576520899310708, -0.013231776654720306, -0.0391954630613327, -0.0037673807237297297, 0.008659462444484234, -0.008409528993070126, 0.002078491495922208, 0.02827189490199089, 0.018936142325401306, 0.0027400804683566093, 0.025757858529686928, -0.006053537596017122, 0.021891238167881966, -0.028992291539907455, -0.013841908425092697, -0.010989725589752197, -0.03416738659143448, 0.010703036561608315, 0.02096501551568508, -0.0033832916524261236, 0.008894694037735462, -0.0037673807237297297, 0.00030759285436943173, -0.05957239866256714, -0.0021703788079321384, 0.04398830607533455, -0.0005021643009968102, 0.013319987803697586, -0.011651313863694668, -0.00022994805476628244, -0.020862100645899773, -0.040489234030246735, 0.025184480473399162, -0.007413470186293125, -0.02981560304760933, 0.017951110377907753, -0.0005954299122095108, -0.0066820471547544, 0.01837746798992157, 0.017907004803419113, 0.0069393315352499485, -0.01567230373620987, 0.0028025638312101364, 0.034461427479982376, -0.004318704828619957, 0.04057744890451431, -0.026198917999863625, 0.010916215367615223, -0.01337144523859024, 0.018950844183564186, 0.0450468473136425, -0.002582034096121788, 0.008821183815598488, 0.020523956045508385, 0.014628464356064796, 0.03816632553935051, -0.000450937106506899, 0.012415817007422447, 0.013599325902760029, -0.02546381764113903, -0.014312371611595154, 0.019009651616215706, 0.030697721987962723, -0.004006288014352322, 0.025875473394989967, -0.025213884189724922, 0.018054023385047913, -0.01337144523859024, 0.03207970783114433, 0.0031351959332823753, -0.033255863934755325, 0.0039033740758895874, 0.02427295781672001, 0.014040385372936726, -0.015525284223258495, 0.02114143781363964, 0.0020913558546453714, -0.009049064479768276, -0.041812412440776825, 0.010129660367965698, -0.028977589681744576, -0.017627665773034096, 0.06227755919098854, 0.005917544476687908, 0.009291647002100945, 0.009335753507912159, -0.03263838216662407, -0.03704897314310074, 0.0016888892278075218, 0.02393481321632862, 0.012577538378536701, 0.008835886605083942, 0.01977415382862091, 0.0014931692276149988, -0.00424519507214427, 0.003493556519970298, -0.015363562852144241, 0.003552364418283105, 0.006590159609913826, -0.013863961212337017, -0.020229915156960487, -0.03278540074825287, 0.0030819012317806482, 0.03140341490507126, 0.011460188776254654, -0.012129127979278564, -0.03787228465080261, -0.03234434127807617, 0.010813301429152489, 0.004873704165220261, 0.011144096031785011, 0.012232041917741299, 0.029168715700507164, -0.008688866160809994, 0.030065536499023438, -0.03566698729991913, -0.011790983378887177, -0.01717190444469452, -0.001030975952744484, -0.0007282071164809167, 0.005226551555097103, -0.003416371066123247, -0.027477988973259926, -0.032991230487823486, 0.013121511787176132, -0.004513505846261978, -0.012040916830301285, -0.013165617361664772, -0.02694871835410595, 0.008056681603193283, 0.007273801602423191, 0.009254892356693745, -0.009460720233619213, -0.022346999496221542, -0.012158532626926899, -0.01416535209864378, -0.003620360977947712, 0.0055352929048240185, -0.033108845353126526, 0.018745016306638718, -0.024905143305659294, 0.05795517936348915, -0.010342838242650032, 0.009769461117684841, -0.005127313546836376, 0.013636080548167229, 0.035902220755815506, 0.00858595222234726, 0.01281276997178793, 0.024611104279756546, 0.006413735914975405, 0.003274864749982953, -0.024493487551808357, -0.027419181540608406, -0.005050127860158682, 0.0020987067837268114, 0.005053803324699402, -0.021744219586253166, 0.00020582762954290956, 0.013481710106134415, -0.022964483126997948, -0.004197413567453623, -0.027625009417533875, -0.006027809344232082, 0.024302363395690918, 0.001551058259792626, 0.01054131519049406, -0.05798458307981491, -0.033344075083732605, 0.01335674338042736, -0.018671507015824318, 0.0029256928246468306, 0.005358869209885597, -0.025875473394989967, 0.01479018572717905, 0.01134257297962904, -0.00711943069472909, -0.0183186586946249, 0.00854919757694006, 0.04663465917110443, 0.008424230851233006, -0.026257725432515144, 0.05624975264072418, 0.0007392336265183985, -0.023523157462477684, -0.0014463067054748535, 0.042959168553352356, -0.01965653896331787, 0.03357930853962898, -0.01273926068097353, 0.018112830817699432, -0.00912992563098669, -0.013716941699385643, -0.02533150091767311, -0.008181648328900337, 0.0038592680357396603, -0.03105056844651699, 0.019230181351304054, 0.012040916830301285, -0.02809547260403633, -0.021508987993001938, 0.000575674173887819, 0.020362233743071556, 0.004061420448124409, 0.016407402232289314, 0.010159064084291458, 0.0033171328250318766, -0.036490298807621, 0.013886013999581337, -0.03775466978549957, 0.01565760187804699, 0.030609508976340294, -0.01962713524699211, 0.0480460487306118, 0.01481223851442337, -0.012099724262952805, 0.02564024180173874, -0.012658399529755116, -0.008284562267363071, 0.0016319190617650747, -0.010857407934963703, 0.030521297827363014, -0.044635191559791565, 0.014452040195465088, -0.012026214972138405, -0.017480647191405296, 0.016039853915572166, -0.016377998515963554, -0.02269984781742096, -0.015466476790606976, 0.01141608227044344, 0.0017127799801528454, 0.044429365545511246, 0.022199980914592743, 0.01482694037258625, -0.012364359572529793, 0.013187670148909092, -0.012445220723748207, -0.010026746429502964, 0.009431316517293453, 0.017230713739991188, 0.0010456779273226857, -0.006042511202394962, 0.011570453643798828, -0.02553732879459858, -0.012893631123006344, -0.008696217089891434, 0.006446815561503172, 0.016142766922712326, -0.004329731222242117, 0.005910193547606468, 0.004575989209115505, -0.029418649151921272, 0.03222672641277313, -0.0040356917306780815, 0.016186872497200966, 0.0014518199022859335, 0.021685412153601646, 0.01573111116886139, 0.023670177906751633, -0.023655476048588753, -0.007850853726267815, -0.01853918842971325, 0.042959168553352356, -0.030462490394711494, 0.04140075668692589, -0.004961916245520115, 0.009615090675652027, -0.0013911742717027664, 0.010342838242650032, 0.02125905454158783, 0.003721437184140086, -0.01674554869532585, 0.0006551567348651588, -0.04525267705321312, 0.02120024524629116, -0.01997998170554638, -0.007953767664730549, 0.00788025837391615, -0.02255282737314701, 0.0026665704790502787, 0.02553732879459858, -0.008997607976198196, -0.007306880783289671, 0.011122043244540691, -0.0037012218963354826, -0.01201151218265295, -0.010739792138338089, -0.020479848608374596, 0.022861570119857788, -0.033344075083732605, -0.013746345415711403, -0.0011945354053750634, -0.00283196778036654, 0.005583074409514666, 0.0012064806651324034, -0.0183186586946249, -0.0018184504006057978, 0.02268514595925808, 0.016686739400029182, 0.0021060577128082514, 0.01962713524699211, -0.01479753665626049, 0.013812504708766937, 0.034608446061611176, 0.020700378343462944, 0.010210520587861538, 0.025110971182584763, 0.013150915503501892, 0.004859002307057381, 0.02824249118566513, 0.006615888327360153, -0.021979451179504395, 0.009321051649749279, -0.009276945143938065, 0.027977855876088142, 0.011166148819029331, -0.021817728877067566, 0.016201574355363846, 0.009732706472277641, -0.004421618767082691, -0.044399961829185486, -0.023332031443715096, -0.054544322192668915, -0.005538968835026026, 0.027477988973259926, -0.005844034720212221, -0.0015887320041656494, 0.008343369700014591, 0.0018166126683354378, -0.015378264710307121, 0.0019498493056744337, 0.01961243338882923, -0.0007622054545208812, 0.03093295358121395, 0.005042776931077242, -0.003614847781136632, 0.004432645160704851, -0.0284483190625906, 0.006700424477458, 0.006362278945744038, -0.04357665032148361, -0.010916215367615223, 0.03375573083758354, -0.033344075083732605, 0.03840155526995659, 0.02809547260403633, -0.02711043879389763, -0.006571782287210226, 0.01839216984808445, -0.001741265063174069, -0.0012956114951521158, 0.0022236735094338655, 0.025948984548449516, -7.109782745828852e-05, -0.006531351711601019, -0.02841891534626484, 0.0013636080548167229, 0.0024772826582193375, -0.012026214972138405, 0.02125905454158783, 0.03369692340493202, 0.044517576694488525, -0.03372632712125778, -0.019230181351304054, -0.029212821274995804, 0.006318173371255398, -0.022817462682724, -0.010431050322949886, 0.001223020488396287, 0.009548932313919067, 0.02838951162993908, -0.009762110188603401, 0.0037618675269186497, 0.00528903491795063, -0.002969798631966114, -0.03199149668216705, -0.015481178648769855, -0.013797801919281483, 0.01702488586306572, 0.007288503460586071, 0.0017532103229314089, -0.04769320413470268, 0.022097066044807434, -0.019318394362926483, -0.0023247497156262398, 0.011452837847173214, 0.006351252552121878, -0.03366751968860626, -0.012026214972138405, -0.007163536734879017, 0.02112673595547676, 0.002072978299111128, 0.05051598325371742, 0.006957708857953548, 0.017833493649959564, -0.010975023731589317, 0.01684846170246601, -0.005950623657554388, -0.009019660763442516, -0.006527676247060299, -0.02830129861831665, 0.0141874048858881, 0.0001311691739829257, -0.008438932709395885, 0.023185012862086296, -0.02853653021156788, -0.02562553994357586, -0.004164333920925856, 0.03701956942677498, 0.012195287272334099, 0.024611104279756546, 0.03840155526995659, 0.00849774107336998, 0.030668316408991814, -0.01559879444539547, 0.016245681792497635, 0.010122308507561684, -0.0005067586316727102, -0.023170311003923416, -0.01974475011229515, -0.03390275314450264, -0.057484716176986694, 0.018597997725009918, -0.008688866160809994, -0.019127268344163895, -0.010408997535705566, 0.03816632553935051, 8.287089440273121e-05, -0.029992027208209038, 0.01486369501799345, -0.028874676674604416, -0.0028705603908747435, -0.023449648171663284, -0.006641616579145193, -0.026463553309440613, -0.015834026038646698, 0.025728454813361168, -0.012357008643448353, 0.01995057798922062, 0.023567263036966324, 0.015348860993981361, -0.03419679030776024, 0.056132134050130844, 0.027639711275696754, -0.00014070248289499432, -0.006762907840311527, -0.01338614709675312, -0.011835088953375816, 0.021729517728090286, -0.019274286925792694, -0.007615622598677874, 0.003616685513406992, -0.01196005567908287, 0.01839216984808445, -0.015775218605995178, -0.002300858963280916, -0.01420210674405098, 0.0066820471547544, 0.03143281862139702, -0.0068584708496928215, -0.0014674407429993153, 0.023214416578412056, -0.021523689851164818, 0.035931624472141266, -0.011305817402899265, 0.03234434127807617, 0.02247931808233261, -0.020759187638759613, 0.03513771668076515, 0.01196005567908287, 0.004094499628990889, 0.005230227019637823, -0.009879725985229015, 0.03346169367432594, 0.018877334892749786, -0.013099458999931812, -0.014716675505042076, 0.00854919757694006, -0.020523956045508385, 0.025757858529686928, 0.00993118342012167, -0.03343228995800018, -0.03922486677765846, 0.009563634172081947, 0.0030359576921910048, 0.0296538807451725, 0.02139137126505375, -0.004914134740829468, 0.02711043879389763, 0.061807096004486084, 0.008211052045226097, -0.017862897366285324, -0.006207908503711224, 0.010908864438533783, -0.03931307792663574, 0.031844474375247955, -0.0003360779373906553, 0.007600920274853706, -0.029256928712129593, -0.004377512726932764, 0.030609508976340294, -0.013084756210446358, -0.02824249118566513, -0.00847568828612566, -0.01277601532638073, -0.039019037038087845, -0.01573111116886139, 0.013239127583801746, 0.002503011142835021, 0.004844300448894501, 0.0036993841640651226, -0.018833229318261147, 0.024699315428733826, 0.013952173292636871, 0.01201886311173439, -0.015804622322320938, -0.041459567844867706, 0.027742624282836914, -0.03690195456147194, -0.01480488758534193, -0.002712514251470566, 0.023037992417812347, 0.0030690371058881283, 0.057514119893312454, -0.041841816157102585, 0.0002832427271641791, 0.00990177970379591, -0.023067396134138107, -0.023523157462477684, -0.03769586235284805, -0.026419447734951973, -0.021670708432793617, -0.03534354642033577, -0.032991230487823486, -0.015892833471298218, 0.0012432356597855687, 0.019068459048867226, 0.00669674901291728, 0.003550526686012745, 0.012371710501611233, -0.0038261886220425367, -0.04207704961299896, -0.023596668615937233, -0.01689256727695465, 0.035843413323163986, -0.0169660784304142, 0.015922237187623978, -0.021538391709327698, 0.00993853434920311, 0.04342963173985481, 0.027669114992022514, 0.017421839758753777, 0.0038151622284203768, 0.030609508976340294, 0.050016116350889206, -0.0016328379279002547, 0.009593037888407707, 0.0062997955828905106, -0.007843502797186375, -0.025934280827641487, 0.012731908820569515, 0.006601186003535986, 0.04513505846261978, 0.02841891534626484, -0.0011247009970247746, 0.00034595580655150115, -0.00907111819833517, 0.00853449571877718, -0.001802829559892416, 0.04140075668692589, -0.025081567466259003, 0.012261446565389633, 0.01561349630355835, 0.010879460722208023, 0.03504950553178787, -0.007295854389667511, -0.011099990457296371, 0.0010015720035880804, -0.02813957817852497, -0.010798599570989609, 0.004414267838001251, -0.011063234880566597, 0.021744219586253166, -0.011886545456945896, -0.008799131028354168, -0.028698252514004707, -0.0053662206046283245, -0.002958772238343954, 0.0053735715337097645, 0.002242051064968109, 0.046046581119298935, 0.024464083835482597, -0.02259693294763565, 0.012511380016803741, 0.0010061663342639804, 0.006807013880461454, 0.015481178648769855, 0.005395624320954084, 0.002503011142835021, -0.009688600897789001, -0.0014371179277077317, -0.014356477186083794, -0.03434380888938904, -0.004072446841746569, -0.019406605511903763, -0.01417270302772522, -0.038636788725852966, -0.0010263815056532621, 0.001616298221051693, -0.019053757190704346, -0.006454166490584612, 8.327289833687246e-06, 0.02399362064898014, 0.031638648360967636, -0.004980293568223715, -0.012893631123006344, -0.022244086489081383, -0.005017048679292202, -0.00998263992369175, -0.006310822442173958, 0.017671773210167885, -0.024787528440356255, 0.02412593923509121, 0.020244617015123367, 0.004531883634626865, 0.031668052077293396, 0.003227083245292306, 0.016289787366986275, -0.0020343856886029243, -0.012305552139878273, 0.016069257631897926, -0.016525018960237503, -0.01053396426141262, -0.003892347449436784, -0.00142149708699435, -0.02564024180173874, -0.005726418923586607, -0.03140341490507126, 0.004763439297676086, -0.013481710106134415, 0.02264104038476944, -0.0013029624242335558, 0.0040540690533816814, 0.022949781268835068, 0.02393481321632862, -0.010203169658780098, 0.010041448287665844, 0.004502479452639818, 0.017730580642819405, 0.022082364186644554, 0.00027336482889950275, -0.010261978022754192, 0.0169660784304142, -0.010475155897438526, 0.005307412706315517, 0.0312269926071167, -0.02414064109325409, -0.030374277383089066, -0.01142343319952488, 0.008688866160809994, 0.012085022404789925, -0.017201310023665428, -0.0026757591404020786, -0.015907535329461098, -0.0028668849263340235, 0.0016649984754621983, 0.01814223639667034, -0.007292178925126791, 0.01280541904270649, 0.021876536309719086, -0.012459922581911087, -0.0053809224627912045, 0.017774686217308044, -0.012717206962406635, 0.010453103110194206, -0.03807811066508293, 0.01695137657225132, -0.07639145851135254, -0.015245947055518627, -0.008130191825330257, 0.0396365225315094, -0.010445752181112766, -0.02697812207043171, 0.033197056502103806, -2.380456317041535e-05, -0.016495615243911743, -0.005061154253780842, -0.005079532042145729, -0.034579042345285416, 0.02250872179865837, 0.01973004825413227, -0.017848195508122444, 0.0015032768715173006, -0.00910052191466093, -0.00427827425301075, 0.007472278084605932, 0.011768929660320282, -0.02136196754872799, -0.040283408015966415, 0.03431440517306328, -0.005858736578375101, -0.007549463305622339, 0.038724999874830246, -0.0020398988854140043, 0.010320785455405712, -0.02130316011607647, -0.010982374660670757, 0.019259585067629814, 0.004406916443258524, 0.007185589522123337, -0.026566466316580772, 0.024934547021985054, -0.010710387490689754, 0.020259320735931396, 0.009747408330440521, 0.006821715738624334, 0.011070585809648037, 0.015525284223258495, 0.008284562267363071, -0.004399565514177084, -0.006759232375770807, 0.02816898189485073, -0.00017952488269656897, 0.015032768249511719, 0.00010532586020417511, 0.017862897366285324, 0.01714250072836876, 0.013165617361664772, -0.002973474096506834, 0.013231776654720306, -0.034520234912633896, -0.0047340355813503265, 0.010151713155210018, 0.0011311330599710345, -0.013569922186434269, -0.008769727312028408, 0.007336284965276718, 0.02677229419350624, 0.016157468780875206, 0.027566200122237206, 0.01567230373620987, -0.024816932156682014, -0.0017247252399101853, 0.0008733891299925745, 0.02568434737622738, 0.01836276613175869, 0.0015988396480679512, -0.00994588527828455, -0.000904630811419338, 0.005421353038400412, 0.011533698067069054, 0.020171107724308968, -0.01484164223074913, 0.0038592680357396603, 0.0170395877212286, 0.010217871516942978, 0.0024350143503397703, -0.01821574568748474, -0.014937205240130424, 0.0023780441842973232, 0.0018928791396319866, -0.014312371611595154, -0.012673101387917995, -0.008644760586321354, 0.00569701474159956, -0.00017757227760739625, 0.005910193547606468, 0.013121511787176132, -0.0060902927070856094, 0.016113363206386566, -0.0004449644184205681, -0.008152244612574577, 0.03119758889079094, 0.0013305286411195993, -0.0005021643009968102, -0.0061601269990205765, -0.011827738024294376, 0.003399831475690007, -0.016010450199246407, -0.0053037372417747974, -0.0008421474485658109, -0.008990257047116756, -0.010960321873426437, 0.011202904395759106, 0.037313610315322876, -0.005803604144603014, 0.009541581384837627, -0.020832696929574013, -0.01671614497900009, -0.03675493597984314, -0.017774686217308044, -0.00788025837391615, 0.010328136384487152, 0.027625009417533875, 0.006770258769392967, 0.0013048001565039158, 0.006410060450434685, 0.003227083245292306, 0.014099192805588245, -0.0018983923364430666, -0.03828394040465355, -0.01827455312013626, -0.020715080201625824, -0.03969532996416092, -0.006829066667705774, 0.009475422091782093, 0.024331767112016678, -0.006270391866564751, 0.0011384841054677963, -0.004002612549811602, 0.017627665773034096, -0.0038225131575018167, 0.015113629400730133, 0.02562553994357586, -0.03640208765864372, -0.0008352558943443, -0.025846069678664207, -0.0008177972631528974, 0.003888671984896064, -0.009343104436993599, -0.0009436829132027924, -0.00010595758794806898, -0.006053537596017122, -0.014716675505042076, -0.025052163749933243, -0.0105119114741683, -0.0034218844957649708, 0.0199652798473835, 0.020332830026745796, 0.011438135989010334, -0.001742183929309249, -0.005469134077429771, -0.008828535676002502, -0.0028429941739887, 0.013128862716257572, 0.003295079804956913, 0.0007612865883857012, -0.008453634567558765, -0.014319722540676594, 0.017568858340382576, -0.013694888912141323, 0.0040430426597595215, -0.007417145650833845, -0.030286066234111786, 0.00911522377282381, -0.020465146750211716, 0.004329731222242117, 0.005149366334080696, -0.0022163225803524256, -0.015084224753081799, -0.034549638628959656, 0.013716941699385643, 0.006108670029789209, 0.010776546783745289, -0.022935079410672188, 0.02536090463399887, 0.008674164302647114, -0.014599059708416462, 0.013849259354174137, -0.000707073078956455, 0.015231245197355747, 0.004219466354697943, -0.013540517538785934, 0.005924895405769348, 0.0022861568722873926, -0.016186872497200966, -0.009210786782205105, 0.007406119257211685, -0.0076523772440850735, -0.007755291182547808, 0.014687271788716316, 0.004366486333310604, 0.007747940253466368, 0.025081567466259003, 0.015245947055518627, -0.024905143305659294, -0.020803293213248253, -0.01820104382932186, -0.029286332428455353, 0.0012781528057530522, 0.01842157356441021, -0.0032105434220284224, 0.012261446565389633, -0.020435743033885956, 0.010416348464787006, -0.006906252354383469, -0.02400832250714302, 0.004094499628990889, -0.00525595573708415, 0.0037894337438046932, 0.0031186561100184917, -0.02534620277583599, -0.014599059708416462, 0.004564962815493345, -0.0023321006447076797, -0.01481958944350481, -0.008777078241109848, 0.02697812207043171, 0.006189531181007624, 0.010710387490689754, -0.017304223030805588, -0.001997630577534437, 0.0076303244568407536, -0.013724292628467083, -0.05348578095436096, 0.005123638082295656, 0.022067662328481674, -0.027977855876088142, -0.003554202150553465, 0.019186075776815414, 0.0012533433036878705, -0.03928367421030998, -0.008093436248600483, 0.024331767112016678, -0.01141608227044344, 0.01837746798992157, 0.00283013004809618, -0.023332031443715096, -0.0337851345539093, -0.02265574224293232, 0.0075568147003650665, 0.04698750749230385, -0.027639711275696754, -0.008674164302647114, -0.009460720233619213, -0.007439198903739452, 0.017524752765893936, 0.010872109793126583, -0.01999468356370926, -0.025228586047887802, 0.025831367820501328, 0.001742183929309249, -0.00915197841823101, -0.005976352375000715, -0.006189531181007624, 0.0002970258065033704, 0.008762376382946968, -0.020920908078551292, 0.01999468356370926, 0.019186075776815414, -0.030050834640860558, 0.03837215155363083, -0.00909317098557949, -0.0011752389837056398, 0.0021005445159971714, -0.011820387095212936, -0.00034549637348391116, -0.010431050322949886, -0.010798599570989609, -0.03848976641893387, -0.006601186003535986, 0.0021758920047432184, 0.010945619083940983, -0.009835620410740376, -0.013650782406330109, 0.004197413567453623, -0.007431847508996725, -0.000776907429099083, 0.0031866529025137424, -0.008336018770933151, -0.001352581544779241, 0.003892347449436784, 0.024758124724030495, -0.004561287350952625, -0.01980355940759182, 0.021567795425653458, -0.005741120781749487, 0.024464083835482597, 0.01858329400420189, 0.0026757591404020786, -0.012717206962406635, 0.02543441392481327, -0.0339321568608284, -0.026228321716189384, 0.015525284223258495, 0.011518996208906174, -0.0048259226605296135, 0.0055941008031368256, 0.010225222446024418, -0.031609244644641876, -0.02000938542187214, -0.04792843386530876, -0.0002772700390778482, 0.010188467800617218, 0.02693401649594307, 0.01997998170554638, 0.0047597638331353664, -0.0021648656111210585, 0.02249401994049549, -0.029006993398070335, -0.013643431477248669, -0.028786465525627136, 0.028742358088493347, -0.006648967508226633, -0.015378264710307121, 0.006123371887952089, -0.017539454624056816, 0.031697455793619156, 0.025713752955198288, 0.01705428957939148, -0.02708103507757187, -0.017759984359145164, -0.008100787177681923, -0.02111203409731388, 0.028933484107255936, 0.001988441916182637, 0.006906252354383469, -0.020127002149820328, 0.015495880506932735, -0.020244617015123367, 0.0009519528248347342, -0.0006482651806436479, 0.018906738609075546, -0.013871312141418457, -0.007391417399048805, 0.013018597848713398, 0.004520856775343418, 0.02390540950000286, 0.008306615054607391, -0.0033299969509243965, 0.01970064453780651, 0.012592240236699581, -0.007505357731133699, -0.01419475581496954, 0.027919048443436623, 0.003600145922973752, -0.013106809929013252, 0.004994995426386595, 0.02980090118944645, 0.0019719023257493973, -0.0141874048858881, 0.0028044015634804964, 0.0142241595312953, -0.013275882229208946, 0.014106543734669685, -0.02977149747312069, -0.015466476790606976, 0.007534761447459459, -0.017833493649959564, -0.010159064084291458, 0.030403681099414825, -0.006527676247060299, 0.019524220377206802, 0.010857407934963703, -0.026169512420892715, 0.0018138560699298978, -0.033079441636800766, 0.00712310615926981, -0.0004915972240269184, -0.026125406846404076, -0.011460188776254654, -0.013158266432583332, 0.01197475753724575, -0.01335674338042736, 0.010732441209256649, -0.0035689042415469885, -0.01689256727695465, 0.0068474444560706615, 0.004344433080404997, -0.043076783418655396, -0.0055941008031368256, -0.0010833516716957092, 0.004175360780209303, 0.007376715540885925, -0.0023762064520269632, -0.021979451179504395, -0.023552561178803444, -0.010769195854663849, 0.019509518519043922, 0.016348594799637794, 0.025037461891770363, 0.005770524498075247, -0.008850588463246822, -0.033138249069452286, 0.003921751398593187, -0.03954830765724182, 0.004223141819238663, -0.011063234880566597, 0.013503762893378735, 0.016275085508823395, 0.013827206566929817, 0.0039695329032838345, 0.0448998287320137, 0.02247931808233261, 0.011643962934613228, -0.008791780099272728, -0.02244991436600685, -0.020053492859005928, -0.02381719835102558, 0.022111767902970314, -0.024346468970179558, -0.017877599224448204, 0.0070128412917256355, 0.00992383249104023, 0.013136213645339012, -0.010151713155210018, -0.00915932934731245, -0.017186608165502548, 0.0025967361871153116, 0.016319191083312035, -0.011526347137987614, 0.010703036561608315, 0.017421839758753777, -0.0295803714543581, 0.02525799162685871, 0.011438135989010334, 0.014091841876506805, -0.025831367820501328, 0.009262243285775185, -0.012878929264843464, 0.011864492669701576, 0.020141704007983208, -0.034784868359565735, 0.023802494630217552, -0.0240230243653059, 0.005722743459045887, -0.010173765942454338, -0.036019835621118546, -0.030844740569591522, 0.015348860993981361, -0.0031535732559859753, -0.015789920464158058, -0.008343369700014591, 0.007534761447459459, -0.019421307370066643, 0.010666281916201115, 0.016613230109214783, -0.0068547953851521015, -0.017363030463457108, 0.01417270302772522, -0.003804135601967573, 0.005976352375000715, 0.038989633321762085, 0.006825391203165054, -0.013452306389808655, -0.014290318824350834, 0.019259585067629814, 0.036196257919073105, -0.016142766922712326, -0.005752147175371647, 0.014606410637497902, 0.00424887053668499, 0.015187138691544533, 0.023581966757774353, -0.0019498493056744337, -0.03096235729753971, -0.002793374937027693, -0.014106543734669685, 0.01048250775784254, 0.022861570119857788, 0.00424151960760355, 0.02699282392859459, -0.016363296657800674, -0.007358337752521038, -0.0267281886190176, 0.00030552540556527674, -0.02396421693265438, 0.01702488586306572, -0.019053757190704346, -0.009438667446374893, 0.02711043879389763, 0.026272427290678024, 0.014679920859634876, -0.00022994805476628244, 0.0018156938022002578, -0.019039055332541466, 0.03205030411481857, 0.007909662090241909, -0.010217871516942978, 0.0026647327467799187, 0.027404479682445526, 0.020626869052648544, -0.003991585690528154, -0.026184216141700745, -0.002069302834570408, 0.014091841876506805, -0.01693667285144329, 0.007975820451974869, -0.015003364533185959, -0.04063625633716583, 0.011085288599133492, -0.0022291867062449455, 0.0022861568722873926, 0.00016987671551760286, 0.010453103110194206, 0.010085553862154484, -0.011055883951485157, -0.015216542407870293, 0.01201151218265295, -0.0028595339972525835, -0.007240721955895424, 0.009394560940563679, -0.011504294350743294, 0.004219466354697943, -0.006490921601653099, -0.01341555081307888, 0.0011743201175704598, 0.013996278867125511, -0.02853653021156788, -0.004682578612118959, 0.011864492669701576, -0.011136745102703571, 0.021832430735230446, -0.0030047157779335976, 0.01992117427289486, -0.013871312141418457, -0.008835886605083942, 0.006884199101477861, -0.009438667446374893, -0.0015244109090417624, 0.0105486661195755, 0.003296917537227273, 0.015098926611244678, -0.027316266670823097, 0.01054131519049406, -0.021450180560350418, 0.006373305805027485, 0.0007645026198588312, -0.0036938709672540426, -0.01284217368811369, -0.010151713155210018, -0.007843502797186375, 0.04701691120862961, -0.007310556247830391, -0.002063789637759328, -0.007858204655349255, -0.002063789637759328, -0.02384660206735134, -0.0014481444377452135, 0.003736139042302966, 0.010137011297047138, -0.005549995228648186, -0.008218402974307537, -0.020920908078551292, -0.0015363562852144241, 0.008600655011832714, -0.008902044966816902, 0.004855326842516661, 0.01558409258723259, 0.007806748151779175, -0.006130723282694817, 0.02131786197423935, 0.0067886365577578545, 0.006413735914975405, -0.029462754726409912, -0.012533432804048061, -0.004686254076659679, 0.0030561727471649647, 0.003420046530663967, 0.0021556769497692585, -0.002572845434769988, 0.00711943069472909, -0.009607739746570587, -0.003541338024660945, -0.01856859214603901, -0.00907111819833517, -0.023508455604314804, 0.0133273396641016, 0.017436541616916656, 0.014532901346683502, -0.016657335683703423, 0.01485634408891201, -0.014334424398839474, 0.005759498104453087, 0.008174297399818897, 0.030109642073512077, -0.008166946470737457, 0.00041854681330733, 0.0040283408015966415, -0.0032031924929469824, 0.025875473394989967, -0.010151713155210018, -0.02996262162923813, -0.01057806983590126, 0.0007231533527374268, 0.020421041175723076, 0.009512176737189293, -0.004116552881896496, -0.005083207506686449, 0.000903711945284158, 0.015069522894918919, -2.5929457478923723e-05, -0.005344167351722717, -0.024596402421593666, -0.02412593923509121, -0.038666192442178726, -0.012533432804048061, -0.02136196754872799, -0.005777875892817974, -0.005399299785494804, 0.003611172316595912, -0.023508455604314804, -0.015834026038646698, 0.015032768249511719, 0.01284952461719513, -0.009806216694414616, -0.0046568503603339195, 0.0045906915329396725, 0.012643697671592236, 0.014672569930553436, 0.03554937243461609, -0.011136745102703571, -3.867882696795277e-05, -0.007450225297361612, 0.011746876873075962, -0.005862412042915821, -0.009232839569449425, 0.01670144312083721, 0.013599325902760029, -0.01971534639596939, 0.011504294350743294, -0.015481178648769855, -0.004101850558072329, 0.004370161797851324, -0.01571640931069851, 0.01420210674405098, 0.001294692512601614, 0.007828800939023495, 0.014701973646879196, -0.021685412153601646, 0.00914462748914957, -0.02239110693335533, -0.002523226197808981, 0.011408731341362, -0.005020724143832922, 0.010247276164591312, 0.005752147175371647, 0.005744796246290207, -6.742233381373808e-05, 0.0013461494818329811, -0.0028779113199561834, 0.007667079102247953, 0.006101319100707769, -0.018112830817699432, -0.01573111116886139, -0.0034384240861982107, -0.022273490205407143, 0.0009859511628746986, 0.02702222764492035, -0.0013296097749844193, -0.010195818729698658, 0.009585686959326267, -0.005505889188498259, -0.003910725004971027, -0.020847398787736893, 0.009504825808107853, -0.00996793806552887, 0.010070852003991604, -0.024640507996082306, -0.0069503579288721085, 0.009835620410740376, -0.007924363948404789, 0.016186872497200966, 0.002242051064968109, -0.011651313863694668, 0.008431581780314445, 0.017333626747131348, 0.0009887077612802386, 0.008784429170191288, -0.033344075083732605, 0.015451774001121521, -0.007056947331875563, 0.01686316356062889, -0.003914400469511747, 0.004212115425616503, 0.010725090280175209, -0.011798334307968616, -0.0027180274482816458, -0.023185012862086296, -0.03534354642033577, -0.0009096846333704889, 0.024611104279756546, 0.012533432804048061, -0.02408183366060257, -0.0008793618180789053, -0.0046678767539560795, 0.0025563056115061045, -0.013180319219827652, -0.022920377552509308, 0.012540783733129501, 0.0020380611531436443, 0.0011982108699157834, 0.01276866439729929, 0.008056681603193283, -0.018671507015824318, -0.006432113703340292, -0.01677495241165161, 0.009776812978088856, -0.0027988883666694164, 0.017730580642819405, 0.009034362621605396, 0.010129660367965698, 0.007740589324384928, 0.015128331258893013, -0.0012119939783588052, -0.02103852480649948, 0.0066636698320508, -0.008769727312028408, -0.028904080390930176, 0.01705428957939148, -0.011114692315459251, 0.020097598433494568, 0.0240230243653059, 0.012445220723748207, 0.031697455793619156, 0.011739525943994522, -0.0017357517499476671, -0.01993587613105774, 0.005792577750980854, -0.020097598433494568, 0.0015400317497551441, 0.013768398202955723, -0.012312903068959713, 0.027845539152622223, 0.0035247982013970613, -0.0017697501461952925, -0.002955096773803234, 0.0035358245950192213, 0.022346999496221542, 0.009865024127066135, 0.004800194408744574, 0.006450491026043892, -0.007435523439198732, 0.00566393556073308, 0.03260897845029831, 0.00853449571877718, -0.007549463305622339, -0.004932512063533068, -0.007681781426072121, -0.021950047463178635, -0.019494816660881042, 0.0025342528242617846, -0.020185809582471848, -0.005491187330335379, 0.011901247315108776, -0.010085553862154484, 0.0035927947610616684, 0.0054544322192668915, 0.013658133335411549, 0.011717473156750202, 0.025140374898910522, 0.02703692950308323, 0.004425294231623411, 0.012489326298236847, -0.0008802806842140853, -0.0027290538419038057, -0.004792843479663134, -0.005833007860928774, 0.02534620277583599, 0.026110704988241196, 0.02142077498137951, -0.03140341490507126, 0.02966858260333538, -0.003223407780751586, -0.002784186275675893, 0.026110704988241196, 0.013224425725638866, 0.01559879444539547, 0.02125905454158783, 0.004502479452639818, 0.01418005395680666, -0.022273490205407143, -0.0013029624242335558, 0.02813957817852497, -0.012695154175162315, 0.0035927947610616684, 0.004535559099167585, -0.026140108704566956, 0.00010165036655962467, 0.008755025453865528, -0.009247541427612305, -2.3833277737139724e-05, -0.0004114255425520241, -0.011563102714717388, -0.014554954133927822, 0.006024133879691362, 0.007909662090241909, -0.013930120505392551, -0.029256928712129593, 0.007872906513512135, -0.009401911869645119, -0.020553359761834145, 0.010666281916201115, -0.001990279648452997, -0.001807423890568316, -0.00021134087000973523, 0.04260632023215294, 0.015775218605995178, -0.02825719304382801, 0.027727922424674034, -0.008409528993070126, 0.017451243475079536, -0.01132787112146616, 0.00042176287388429046, -0.013687537983059883, -0.0019516870379447937, 0.0006841011927463114, 0.007674430496990681, -0.02100912109017372, -0.023773090913891792, -0.0039585065096616745, 0.01198945939540863, 0.01199681032449007, 0.0031094674486666918, -0.001094378181733191, -0.043135590851306915, -0.017245415598154068, 0.0015602469211444259, -0.014033033512532711, 0.011408731341362, 0.01051926240324974, 0.012930385768413544, 0.013680186122655869, -0.014047736302018166, 0.013731643557548523, -0.0034512884449213743, 0.009813567623496056, 0.0023284251801669598, 0.007902311161160469, -0.010247276164591312, -0.00911522377282381, 0.017407136037945747, 0.0021483260206878185, 0.010048799216747284, -0.007843502797186375, -0.011533698067069054, 0.026243023574352264, 0.01567230373620987, 0.025228586047887802, -0.00022190791787579656, -0.015878131613135338, 0.011026480235159397, 0.016319191083312035, 0.008291913196444511, -0.007475953549146652, 0.017421839758753777, -0.013511113822460175, 0.012305552139878273, 0.01852448657155037, 0.012665750458836555, -0.004087148699909449, 0.013489061035215855, -0.0033171328250318766, -0.0020251967944204807, 0.019288988783955574, 0.012923034839332104, 0.005322114564478397, 0.004723009187728167, 0.015510582365095615, -0.005226551555097103, 0.029359841719269753, -0.002626140136271715, -0.01965653896331787, -0.010232573375105858, -0.02114143781363964, -0.012312903068959713, 0.0016980780055746436, 0.010151713155210018, -0.010916215367615223, -0.004774466156959534, 0.0035799306351691484, -0.012232041917741299, -0.013996278867125511, 0.007516384124755859, -0.010225222446024418, -0.01699548214673996, 0.01134257297962904, 0.0033061064314097166, 0.007534761447459459, 0.0047340355813503265, 0.033079441636800766, 0.020553359761834145, 0.006399034056812525, -0.0031113051809370518, 0.025728454813361168, 0.0076597281731665134, -0.008313965983688831, 0.0040283408015966415, 0.021905940026044846, 0.010144362226128578, -0.00428930064663291, 0.015143033117055893, -0.008990257047116756, 0.00915197841823101, -0.016539720818400383, -0.018024619668722153, 0.00029840413480997086, 0.003793109208345413, 0.008424230851233006, -0.012187936343252659, -0.04692870005965233, 0.015128331258893013, 0.009188733994960785, -0.00912257470190525, -0.0033281592186540365, 0.002302696695551276, 0.007281152531504631, 0.0007493412122130394, 0.005208174232393503, 0.0030414708890020847, 0.004300327505916357, -0.012209989130496979, -0.009468071162700653, -0.009600388817489147, -0.025772560387849808, -0.0011770768323913217, 0.013525815680623055, 0.001805586158297956, 0.004895757418125868, -0.0009611415443941951, -0.008277211338281631, -0.004711982794106007, -0.014378529973328114, -0.006818040274083614, -0.015878131613135338, 0.009423965588212013, 0.002446040976792574, 0.013290584087371826, -0.020817995071411133, 0.007975820451974869, 0.012952438555657864, -0.013121511787176132, 0.005204498767852783, -0.009188733994960785, 0.004697280470281839, 0.01698078028857708, 0.020185809582471848, -0.005347842816263437, 0.02103852480649948, 0.0032123811542987823, 0.02846302092075348, -0.013944822363555431, 0.011857141740620136, 0.022023556753993034, -0.021611901000142097, -0.0027272161096334457, -0.0011991297360509634, 0.007975820451974869, -0.011526347137987614, -0.006277742795646191, -5.6568140280433e-05, 0.004943538457155228, 0.008666813373565674, -0.004980293568223715, 0.014665219001471996, 0.011180850677192211, 0.008799131028354168, 0.014481443911790848, 0.017848195508122444, -0.006976086646318436, 0.004348108544945717, 0.019333096221089363, -0.009519527666270733, -0.00850509200245142, 0.001157780410721898, 0.011798334307968616, -0.033373478800058365, -0.0076303244568407536, 0.02278805896639824, -0.026301831007003784, -0.011504294350743294, -0.0001085993426386267, -0.011188201606273651, -0.008608005940914154, -0.005917544476687908, -0.01277601532638073, 0.02666938118636608, 0.0334910973906517, 0.0053772469982504845, 0.014650517143309116, -0.006472543813288212, -0.017804089933633804, 0.008975555188953876, 0.010997076518833637, 0.0008756862953305244, -0.010394295677542686, -0.0062997955828905106, -0.010276679880917072, -0.0019737400580197573, 0.007997874170541763, -0.014951907098293304, -0.025904877111315727, 0.022993886843323708, 0.0047524129040539265, 0.01574581302702427, -0.011269062757492065, -0.01828925497829914, -0.00993853434920311, 0.004939862992614508, 0.007961118593811989, -0.0032711890526115894, 0.006549729499965906, -0.016010450199246407, 0.013886013999581337, 0.015892833471298218, 0.00710472883656621, -0.007953767664730549, 0.012533432804048061, 0.004480426665395498, 0.012129127979278564, -0.003412695601582527, 0.002457067370414734, -0.02688991092145443, -0.007152510341256857, -0.01999468356370926, 0.019259585067629814, 0.040195196866989136, 0.005013373214751482, -0.016554422676563263, 0.02703692950308323, 0.03528473526239395, 0.011666015721857548, -0.006656318437308073, 0.010835354216396809, 0.0013874988071620464, 0.007450225297361612, 0.0016539720818400383, 0.00912992563098669, -0.019303690642118454, 0.031726859509944916, -0.011489592492580414, 0.015275350771844387, 0.020597465336322784, 0.0022824814077466726, -0.004454697947949171, -0.003725112648680806, 0.0018947168719023466, 0.015907535329461098, -0.006130723282694817, -0.004557611886411905, 0.010798599570989609, -0.0007171806646510959, 0.009379859082400799, -0.006388007663190365, -0.010394295677542686, 0.022302893921732903, 0.003094765590503812, 0.00709737790748477, 0.015422370284795761, -0.0006266716518439353, 0.020274022594094276, -0.010445752181112766, 0.009041713550686836, -0.020391637459397316, -0.0013029624242335558, -0.013959524221718311, 0.015040119178593159, 0.026301831007003784, 0.010739792138338089, -9.95254740701057e-05, -0.013003895990550518, -0.015966342762112617, -0.02262633852660656, 0.008990257047116756, -0.00667102076113224, -0.012283499352633953, 0.0008517956011928618, 0.008696217089891434, 0.007431847508996725, 0.015334158204495907, 0.01970064453780651, -0.02243521250784397, 0.005575723480433226, 0.010019395500421524, -0.009512176737189293, -0.02255282737314701, -0.01670144312083721, 0.0084830392152071, -0.014709324575960636, -0.0019682266283780336, -0.0005563778104260564, -0.006825391203165054, -0.014988662675023079, 0.010886811651289463, 0.03504950553178787, 0.01715720258653164, 0.03260897845029831, -0.013158266432583332, 0.009482773020863533, 0.0133273396641016, -0.002449716441333294, 0.009357806295156479, 0.007428172044456005, -0.017245415598154068, -0.004072446841746569, 0.02381719835102558, -0.0034402618184685707, 0.00013714184751734138, 0.0014904126292094588, 0.010989725589752197, 0.012526081874966621, 0.0005485673900693655, 0.001942498260177672, 0.015348860993981361, 6.5182575781364e-05, 0.023493753746151924, 0.011585155501961708, -0.0047597638331353664, -0.011099990457296371, 0.011224957183003426, 0.01820104382932186, 0.0012000486021861434, 0.02390540950000286, -0.007420821115374565, -7.195927173597738e-05, -0.01052661333233118, 0.002396421739831567, -0.0021152463741600513, 0.0054397303611040115, 0.011202904395759106, 0.023052694275975227, 0.00713413255289197, 0.011754227802157402, -0.013275882229208946, 0.006524000782519579, -0.0038335395511239767, 0.004892081953585148, 0.008247807621955872, 0.007233371026813984, -0.012974492274224758, -0.011776280589401722, -0.013136213645339012, 0.018833229318261147, 0.015481178648769855, 0.003223407780751586, 0.003976883832365274, 0.025846069678664207, -0.0026812725700438023, -0.007240721955895424, -0.02114143781363964, -0.01558409258723259, 0.0006243744282983243, -0.007163536734879017, 0.019406605511903763, 0.02418474666774273, -0.006983437575399876, 0.01978885754942894, -0.006263040937483311, 0.014297669753432274, -0.006906252354383469, 0.01995057798922062, 0.004370161797851324, -0.01415800116956234, -0.004866353236138821, -0.015804622322320938, 0.0033832916524261236, 0.0077111851423978806, -0.021700114011764526, 0.013209723867475986, -0.004116552881896496, 0.02962447702884674, -0.02540501020848751, -0.002389070810750127, 0.011548399925231934, 0.0026849480345845222, -0.016010450199246407, 0.0198182612657547, -0.013452306389808655, 0.007468602620065212, -0.010886811651289463, -0.023346735164523125, -0.013915417715907097, 0.034784868359565735, 0.0046642012894153595, 0.004212115425616503, 0.019333096221089363, 0.005991054233163595, -0.0315210334956646, 0.014363828115165234, -0.013959524221718311, 0.003418208798393607, 0.020435743033885956, -0.005744796246290207, 0.01702488586306572, 0.0028191034216433764, 0.005935921799391508, 0.011526347137987614, 0.004520856775343418, 0.0025397660210728645, -0.025919578969478607, 0.016304489225149155, -0.0008545521995984018, -0.007424496579915285, -0.02427295781672001, -0.011408731341362, 0.004307678434997797, 0.002306372160091996, -0.010857407934963703, 0.013716941699385643, 0.019141970202326775, 0.00428562518209219, -0.009497474879026413, 0.003796784672886133, 0.005075856577605009, -0.02103852480649948, 0.02836010791361332, -0.0045943669974803925, 0.0020490875467658043, -0.010210520587861538, -0.002905477536842227, -0.01827455312013626, -0.01483429130166769, -0.011217606253921986, 0.011798334307968616, 0.011445486918091774, -0.02256752923130989, -1.5577774320263416e-05, 0.006204233039170504, -0.009666548110544682, -0.009490123949944973, -0.016275085508823395, 0.004844300448894501, -0.013966875150799751, -0.014400583691895008, -0.00567496195435524, 0.008637409657239914, 0.0039511555805802345, 0.0036313876044005156, 4.8183421313297004e-05, -0.0017982351128011942, -0.015834026038646698, -0.01992117427289486, -0.03116818517446518, -0.016083959490060806, -0.0008311209385283291, -0.010923566296696663, 0.01420210674405098, -0.024743421003222466, 0.004587015602737665, 0.0199652798473835, -0.02121494896709919, -0.014937205240130424, 0.01671614497900009, 0.011232308112084866, -0.004770790692418814, -0.010034097358584404, -0.0016218115342780948, -0.025184480473399162, 0.013128862716257572, 0.0226704441010952, -0.01476078201085329, -0.028918782249093056, 0.02681639976799488, -0.0007667998434044421, 0.001042002346366644, -0.005814630538225174, 0.00713045708835125, -0.01057071890681982, 0.00668939808383584, 0.027375075966119766, -0.003976883832365274, -0.009181383065879345, 0.01573111116886139, -0.00428930064663291, -0.01192330103367567, 0.007218669168651104, 0.006814364809542894, 0.011033831164240837, 0.019362499937415123, 0.0006234555621631444, 0.009835620410740376, 0.002896288875490427, -0.023670177906751633, -0.014540252275764942, -0.0020564384758472443, -0.028551233932375908, 0.006659993901848793, -0.017348328605294228, 0.005494862794876099, 0.003295079804956913, 0.013128862716257572, -0.008946151472628117, -0.037490032613277435, -0.0006298876833170652, 0.032961826771497726, 0.0014040385140106082, -0.023052694275975227, -0.0020215213298797607, 0.012077671475708485, -0.025963686406612396, 0.01192330103367567, 0.0141874048858881, 0.008946151472628117, -0.00429297611117363, 0.0009556282893754542, -0.012584889307618141, 0.0026831103023141623, -0.012996545061469078, -0.006575457751750946, 0.01837746798992157, -0.012099724262952805, 0.0337851345539093, 0.028845272958278656, -0.011592506431043148, -0.009387210011482239, -0.007226020097732544, -0.020626869052648544, -0.016613230109214783, 0.002646355191245675, 0.013886013999581337, 0.007755291182547808, 0.010394295677542686, -0.013511113822460175, 0.003811486763879657, -0.030727125704288483, 0.01057806983590126, -0.023390840739011765, -0.01690726913511753, 0.0037894337438046932, 0.01476813293993473, 0.013915417715907097, 0.00016930240963120013, -0.017818791791796684, -0.005193472374230623, -0.0211708415299654, 0.006549729499965906, 0.03105056844651699, 0.020729783922433853, 0.006134398747235537, 0.004156982991844416, -0.0037784073501825333, -0.013988927938044071, 0.013738994486629963, -0.0036516026593744755, -0.00524492934346199, 0.000515487976372242, 0.0015391128836199641, -0.0005324871162883937, -0.020641570910811424, 0.016083959490060806, -0.006553404964506626, -0.012643697671592236, 0.027522094547748566, 0.026345936581492424, -0.02537560649216175, 0.03781347721815109, 0.0022677795495837927, 0.016583826392889023, -0.0027474313974380493, -0.0031958415638655424, -0.001935147331096232, -0.0023431270383298397, -0.023464350029826164, 0.01050456054508686, 0.011621910147368908, -0.006755556911230087, -0.020215213298797607, -0.006795987486839294, 0.012658399529755116, 0.01192330103367567, -0.0035762551706284285, 0.00424151960760355, 0.01840687170624733, -0.002078491495922208, -0.012437869794666767, 0.01962713524699211, -0.00528168398886919, 0.006104994565248489, 0.009806216694414616, 0.002639004262164235, 0.021714815869927406, -0.017201310023665428, -0.021656006574630737, -0.025052163749933243, -0.012364359572529793, -0.0045906915329396725, 0.018994949758052826, 0.0198917705565691, -0.012643697671592236, 0.020700378343462944, -0.021817728877067566, -0.01687786541879177, 0.01812753453850746, 0.01961243338882923, 0.012496678158640862, 0.006332875229418278, 0.0008430663147009909, 0.012489326298236847, 0.007968469522893429, 0.004234168212860823, 0.03287361189723015, -0.01702488586306572, 0.01690726913511753, 0.004789168015122414, 0.008696217089891434, 0.005902842618525028, 0.010114957578480244, 0.0003480232844594866, 0.0074980068020522594, -0.009247541427612305, -0.005204498767852783, -0.0048222471959888935, -0.0370783768594265, -0.011835088953375816, 0.010916215367615223, 0.0034549639094620943, 0.014077140018343925, 0.0012046429328620434, 0.012349657714366913, 0.011033831164240837, -0.008306615054607391, 0.0009804378496482968, 0.005855061113834381, 0.0040356917306780815, 0.011460188776254654, -0.0003544554056134075, -0.029154013842344284, -0.023508455604314804, 0.00990913063287735, -0.003609334584325552, -0.015995748341083527, 0.013562571257352829, 0.0027492691297084093, 0.020788591355085373, 0.02115613967180252, -0.004373837262392044, -0.02697812207043171, 0.0028705603908747435, 0.017789388075470924, 0.021685412153601646, -0.01132052019238472, 0.0046605258248746395, -0.0014968446921557188, -0.014731377363204956, -0.0008899288368411362, -0.0012634508311748505, -0.001548301661387086, -0.016128065064549446, -0.016466211527585983, -0.010622176341712475, -0.002135461661964655, -0.011599857360124588, -0.020112300291657448, 0.012232041917741299, 0.005851385649293661, 0.0007373958942480385, 0.0053625451400876045, -0.010137011297047138, 0.016260383650660515, 0.003550526686012745, -0.0019020678009837866, -0.0033263214863836765, -0.023434946313500404, 0.0015188977122306824, 0.013033299706876278, 0.0077258870005607605, 0.011739525943994522, -0.008269860409200191, -0.01968594267964363, 0.014150649309158325, -0.007821450009942055, -0.01568700559437275, 0.01275396253913641, -0.007681781426072121, 0.008100787177681923, -0.004723009187728167, -0.011563102714717388, -0.010372242890298367, 0.0019222830887883902, -0.011805685237050056, 0.0030488218180835247, 0.030433084815740585, -0.0046568503603339195, -0.026140108704566956, -0.015966342762112617, -7.75299413362518e-05, -0.016436805948615074, 0.007946416735649109, 0.004553936421871185, -0.009027011692523956, 0.006388007663190365, 0.01201886311173439, -0.008666813373565674, 0.009313700720667839, 0.0062299612909555435, -0.03275599703192711, -0.003881321055814624, -0.005097909364849329, -0.01055601704865694, 0.008931448683142662, 0.004972942639142275, -0.009842971339821815, -0.023082097992300987, -0.0003154032747261226, 0.007983171381056309, 0.022920377552509308, 0.01855389028787613, -0.017862897366285324, 0.0016300813294947147, -0.0024956599809229374, 0.009460720233619213, 0.0033961560111492872, 0.0069319806061685085, 0.0035780929028987885, -0.013716941699385643, 0.005222876090556383, 0.02128845825791359, 0.023096799850463867, -0.014488794840872288, 0.0011127556208521128, -0.02711043879389763, -0.007001814898103476, 0.0019204453565180302, -0.00853449571877718, 0.020391637459397316, -0.016392700374126434, 0.005226551555097103, -0.006343901623040438, -0.004079797770828009, 0.009254892356693745, 0.012592240236699581, -0.016025152057409286, -0.007961118593811989, -0.009387210011482239, 0.010967672802507877, -0.009394560940563679, -0.03116818517446518, 0.004844300448894501, 0.0014904126292094588, -0.01478283479809761, -0.012687803246080875, -0.0024258256889879704, 0.013268531300127506, 0.0024111235979944468, -0.015172436833381653, -0.0037673807237297297, -0.01273926068097353, -0.017495349049568176, 0.024625806137919426, -0.01992117427289486, -0.030785933136940002, -0.008732972666621208, 0.023008588701486588, -0.013070054352283478, -0.00528903491795063, 0.00335572543554008, -0.010019395500421524, 0.018936142325401306, 0.016377998515963554, 0.02239110693335533, 0.008446283638477325, 0.006994463969022036, 0.01282012090086937, 0.008225753903388977, -0.0017210497753694654, -0.01984766498208046, -0.007328934036195278, -0.008747674524784088, -0.007461251690983772, 0.006292444653809071, -0.0016411078395321965, -0.022185279056429863, -0.01574581302702427, -0.010151713155210018, 0.007968469522893429, -6.248339195735753e-05, -0.01845097728073597, 0.015481178648769855, -0.015143033117055893, 0.008968204259872437, 0.01057071890681982, 0.028521828353405, 0.0046678767539560795, -0.01970064453780651, 0.010034097358584404, 0.008078734390437603, -0.009269594214856625, -0.027316266670823097, 0.01281276997178793, -0.006546054035425186, 0.012187936343252659, 0.0055352929048240185, -0.017715878784656525, 0.013467008247971535, -0.011129394173622131, 0.018098128959536552, 0.004506154917180538, 0.006759232375770807, 0.0036350630689412355, 0.007457576226443052, 0.008284562267363071, 0.018700910732150078, 0.007398768328130245, 0.0031351959332823753, -0.009828269481658936, -0.0198917705565691, -0.003491718787699938, -0.008005225099623203, -3.750151881831698e-05, -0.003157248953357339, 0.010379593819379807, -0.010291381739079952, -0.012437869794666767, 0.017715878784656525, -0.0031168183777481318, 0.02983030490577221, -0.004351784009486437, 0.01134257297962904, 0.01830395683646202, 0.011599857360124588, -0.002238375600427389, -0.009247541427612305, 0.0040503935888409615, -0.02397891879081726, 0.010930917225778103, -0.004057744983583689, -0.01194535382091999, -0.024302363395690918, -0.002565494505688548, -0.002583871828392148, 0.010695685632526875, -0.01812753453850746, 0.0009276026394218206, -0.013319987803697586, -0.008593304082751274, 0.041488971561193466, -0.004958240780979395, -0.00994588527828455, 0.009232839569449425, -0.006961384788155556, -0.006465192884206772, -0.006285093724727631, -0.01049720961600542, 0.018112830817699432, 0.004976618103682995, 0.009534229524433613, 0.017995215952396393, -0.002642679726704955, -0.006310822442173958, 0.006421086844056845, -0.012952438555657864, 0.002582034096121788, 0.009188733994960785, -0.0055279419757425785, -0.014415285550057888, 0.012915683910250664, 0.007600920274853706, -0.013253829441964626, -0.01141608227044344, 0.003274864749982953, 0.02283216454088688, -0.0019296340178698301, -0.007325258571654558, -0.002464418299496174, -0.008982906118035316, -0.03402036800980568, 0.001544626080431044, -0.0047487374395132065, 0.003618523245677352, 0.0030433086212724447, -0.012224690988659859, -0.0011853466276079416, 0.012342306785285473, -0.004609068855643272, -0.008174297399818897, -0.007769993040710688, 0.017348328605294228, 0.018039321526885033, 0.014062438160181046, 0.007262775208801031, -0.004439996089786291, -0.024596402421593666, 0.014981310814619064, 0.011688069440424442, 0.011511645279824734, -0.011092639528214931, -0.0046715522184967995, 0.008365423418581486, 0.0393424816429615, -0.0036405762657523155, -0.014996013604104519, -0.005402975250035524, -0.023214416578412056, -0.0014646841445937753, 0.008299264125525951, 0.030315469950437546, 0.030580105260014534, -0.004057744983583689, 0.013444955460727215, 0.0012450733920559287, -0.006424762308597565, 0.02985970862209797, 0.01057071890681982, -0.007402443792670965, -0.020729783922433853, -0.0040430426597595215, -0.005858736578375101, 0.00026096004876308143, -0.005388273391872644, 0.008328667841851711, 0.007814099080860615, 0.0026573818176984787, 0.0036479271948337555, -0.005031750537455082, -0.03240314871072769, -0.016128065064549446, -0.012989194132387638, 0.012709856033325195, 0.012085022404789925, 0.010636878199875355, 0.0002439608797430992, -0.0008747674291953444, -0.012511380016803741, -0.013195021077990532, -0.021758921444416046, -0.0198917705565691, 0.0014683596091344953, -0.0013874988071620464, -0.01999468356370926, -0.0013930120039731264, 0.006347577087581158, 0.009379859082400799, 0.011871843598783016, 0.014951907098293304, -0.0013406362850219011, -0.002300858963280916, 0.008769727312028408, 0.0035229604691267014, -0.009600388817489147, -0.010901513509452343, 0.005175094585865736, 0.013900715857744217, 0.004950889851897955, -0.014334424398839474, 0.013106809929013252, 0.0054581076838076115, 0.00335388770326972, 0.007266450673341751, 0.020200511440634727, -0.011144096031785011, -0.007214993704110384, 0.002390908543020487, 0.004399565514177084, 0.0010658930987119675, -0.029286332428455353, -0.016348594799637794, -0.0009427640470676124, 0.03246195986866951, -0.002085842425003648, 0.022935079410672188, 0.04348843917250633, -0.0017118611140176654, -0.010335487313568592, 0.01717190444469452, -0.006053537596017122, -0.030638912692666054, 0.000486083998112008, 0.003998937085270882, 0.020832696929574013, -0.029036398977041245, 0.0011311330599710345, 0.012143830768764019, -0.0028264543507248163, -0.017392434179782867, -0.002085842425003648, -0.010298732668161392, 0.007681781426072121, -0.004182711709290743, 0.012312903068959713, -0.00857860129326582, 0.017333626747131348, 0.00850509200245142, -0.013819855637848377, 0.007703834213316441, -0.0014306858647614717, -0.003671817947179079, -0.02683110162615776, 0.012864227406680584, 0.004616419784724712, -0.017495349049568176, -0.02268514595925808, 0.00428930064663291, 0.014055087231099606, 0.0076376753859221935, 0.007542112376540899, 0.0007475034799426794, 0.0074980068020522594, 0.003556039882823825, -0.01284217368811369, -0.005127313546836376, 0.006880523636937141, 0.023684879764914513, -0.008019926957786083, -0.0056859883479774, 0.006336550693958998, 0.018774420022964478, -0.003228920977562666, -0.0026628950145095587, 0.011893896386027336, 0.0011283764615654945, 0.010291381739079952, -0.005810955073684454, -0.017730580642819405, 0.009460720233619213, 0.0007833395502530038, -0.024963950738310814, 0.0067812856286764145, -0.030491894111037254, -0.0037820828147232533, 0.007542112376540899, -0.006490921601653099, -0.0016466210363432765, -0.011768929660320282, -0.0016925646923482418, 0.019303690642118454, -0.025875473394989967, -0.00917403120547533, -0.005138339940458536, 0.040459830313920975, 0.027816133573651314, 0.016157468780875206, -0.004855326842516661, 0.005814630538225174, -0.038872018456459045, 0.0033649143297225237, 0.011563102714717388, -0.012327604927122593, -0.005050127860158682, -0.008056681603193283, -0.023067396134138107, 0.03096235729753971, 0.018950844183564186, -0.01686316356062889, 0.003155411221086979, -0.016304489225149155, -0.013856610283255577, -0.001480304985307157, 0.01282012090086937, 0.014290318824350834, 0.013128862716257572, -0.008725621737539768, -0.011283764615654945, -0.0011164310853928328, -0.0005963488365523517, -0.01674554869532585, -0.00997528899461031, 0.002120759803801775, -0.01818634197115898, 0.023596668615937233, -0.016054555773735046, -0.02558143436908722, 0.008718270808458328, -0.014150649309158325, 0.028933484107255936, -0.003622198710218072, -0.004693605005741119, 0.0038188376929610968, -0.005410326179116964, -0.012584889307618141, -0.012555485591292381, 0.007608271203935146, -0.020950311794877052, 0.010423699393868446, -0.0017366706160828471, 0.017480647191405296, -0.005491187330335379, -0.01191595010459423, 0.02703692950308323, -0.013459657318890095, -0.010188467800617218, -0.02828659676015377, -0.005935921799391508, -0.018745016306638718, -0.012246743775904179, 0.014643166214227676, 0.004844300448894501, 0.002947745844721794, -0.013297935016453266, -0.0157605167478323, 0.0027639709878712893, 0.00788025837391615, 0.040401022881269455, 0.013055352494120598, 0.021479584276676178, 0.009534229524433613, 0.0030598482117056847, 0.00333918584510684, -0.00917403120547533, -0.002572845434769988, 0.005605127662420273, -0.007516384124755859, -0.02103852480649948, -0.008041979745030403, -0.006332875229418278, -0.03290301561355591, -0.01814223639667034, -0.03146222233772278, -0.0002641760802362114, -0.0010199494427070022, 0.02284686639904976, 0.010041448287665844, 0.01049720961600542, -0.005164068192243576, -0.01717190444469452, 0.01687786541879177, 0.009688600897789001, 0.013937471434473991, -0.013055352494120598, -0.010607474483549595, -0.015128331258893013, -0.011643962934613228, 0.023140907287597656, -0.007181914057582617, 0.009703302755951881, 0.006766583304852247, -0.0060719153843820095, -0.0013342041056603193, 0.001938822795636952, -0.008453634567558765, 0.01677495241165161, 0.01836276613175869, 0.013893364928662777, 0.017495349049568176, -0.03266778588294983, -0.013937471434473991, -0.02271454967558384, 0.003300593001767993, 0.014091841876506805, 0.0027198651805520058, -0.0025379282888025045, -0.0015749488957226276, 0.011107341386377811, 0.018671507015824318, 0.016128065064549446, 0.008718270808458328, 0.030315469950437546, 0.0017789388075470924, -0.007141483947634697, 0.016010450199246407, 0.007148834876716137, 0.04845770448446274, 0.01195270475000143, -0.011099990457296371, -0.004627446178346872, 0.005568372551351786, 0.015084224753081799, -0.011673367582261562, 0.013834557496011257, 0.003565228544175625, 0.0025011731777340174, -0.020670974627137184, 0.0060792663134634495, -0.008277211338281631, 0.005891815759241581, 0.022155875340104103, 0.008681515231728554, 0.022111767902970314, 0.007689132355153561, -0.028580637648701668, 0.018847931176424026, 0.005807279609143734, -0.013070054352283478, -0.0003229839785490185, 0.004223141819238663, -0.03293242305517197, 0.007740589324384928, 0.018068725243210793, -0.013202372007071972, 0.026434149593114853, 0.013834557496011257, -0.023684879764914513, 0.00427459878847003, -0.01340819988399744, 0.0014665218768641353, -0.029242224991321564, 0.034755464643239975, -0.03710778057575226, 0.010379593819379807, 0.00426724785938859, 0.01815693825483322, -0.008857939392328262, -0.017451243475079536, 0.014062438160181046, -0.0061527760699391365, -0.009041713550686836, 0.021758921444416046, -0.038813211023807526, 0.004881055094301701, -0.021670708432793617, 0.008233105763792992, 0.0006354009383358061, 0.013930120505392551, 0.0005917544476687908, 0.015392966568470001, -0.011474890634417534, -0.021994153037667274, -0.033197056502103806, -0.023434946313500404, 0.019127268344163895, 0.03343228995800018, 0.013533166609704494, -0.004065095912665129, -0.014554954133927822, -0.015201840549707413, -0.021641304716467857, 0.0011862654937431216, 0.029006993398070335, 0.013092108070850372, -0.01980355940759182, 0.016466211527585983, -0.0039585065096616745, 0.0007870150147937238, -0.03228553384542465, -0.01140138041228056, 0.008203701116144657, 0.0010282192379236221, -0.03202090039849281, 0.002503011142835021, -0.007523735053837299, 0.016054555773735046, 0.0027474313974380493, 0.007226020097732544], "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec": [-0.0031105310190469027, 0.018355082720518112, -0.004700212273746729, 0.006624218542128801, -0.02957790531218052, -0.025697117671370506, 0.01853863336145878, 0.011412928812205791, -0.01806664653122425, 0.0025336570106446743, 0.010383732616901398, 0.041639816015958786, 0.004585493355989456, -0.010141183622181416, -0.027453960850834846, 0.013923642225563526, -0.028712594881653786, 0.033196479082107544, 0.0076108044013381, -0.02346828579902649, 0.04693657159805298, -0.018669741228222847, -0.028791259974241257, -0.0028155387844890356, 0.016624461859464645, -0.014972503297030926, 0.0108557203784585, 0.014474294148385525, -0.012396236881613731, 0.00043675265624187887, 0.015903368592262268, -0.01166858896613121, 0.025356236845254898, -0.010409954003989697, -0.0069749318063259125, -0.05204977095127106, -0.013313991017639637, -0.0010382094187662005, -0.00023906676506157964, -0.00836467370390892, 0.029210804030299187, -0.011373596265912056, 0.00214852811768651, 0.0008743247599340975, -0.008200788870453835, 0.014395629987120628, 0.01882707141339779, -0.004736267030239105, 0.006280060857534409, 0.010442730970680714, 0.005608133506029844, -0.01342543214559555, -0.036867495626211166, 0.02150166966021061, 0.03133475035429001, -0.002713930094614625, -0.014356297440826893, 0.054645705968141556, -0.025212017819285393, -0.056953202933073044, -0.0160213652998209, -0.015837814658880234, 0.0351368747651577, 0.0019338391721248627, -0.011852139607071877, 0.002838482614606619, -0.028345493599772453, 0.02740151807665825, -0.03280315548181534, -0.004136449191719294, 0.02965657040476799, 0.05375417321920395, -0.029892563819885254, 0.02597244270145893, -0.010613171383738518, -0.005804795306175947, -0.009007101878523827, 0.04316066578030586, 0.05926069617271423, 0.018984399735927582, -0.007368254940956831, -0.03120364248752594, 0.02698197215795517, -0.01861729845404625, 0.05753007531166077, -0.037129711359739304, -0.02379605546593666, -0.029184581711888313, -0.039804309606552124, -0.027506403625011444, -0.0009234901517629623, 0.02099034935235977, -0.02824060618877411, -0.036867495626211166, 0.02755884639918804, -0.00577201833948493, -0.011301486752927303, 0.004257723689079285, 0.012881334871053696, -0.001672443118877709, 0.0010275569511577487, 0.027375295758247375, -0.04722500592470169, 0.021645886823534966, -0.007387921214103699, -0.026103550568223, 0.013543429784476757, 0.02589377760887146, -0.03196406736969948, 0.02224898338317871, 0.021147677674889565, -0.02673286758363247, -0.01789620704948902, -0.0035595751833170652, -0.024753140285611153, 0.00713226106017828, -0.020465917885303497, -0.014775842428207397, 0.01388430967926979, -0.04195447638630867, 0.017293110489845276, -0.016283581033349037, 0.019272837787866592, -0.003844734514132142, -0.014592290855944157, 0.011098270304501057, 0.010423065163195133, 0.045704156160354614, 0.029551684856414795, 0.002918786136433482, 0.018210865557193756, -0.010691836476325989, 0.010285401716828346, 0.03901766240596771, 0.02606421895325184, 0.05978512763977051, 0.02782106213271618, 0.03183295950293541, 0.00871866475790739, 0.0152478301897645, -0.059837572276592255, -0.025749560445547104, -0.03290804103016853, 0.006365280598402023, -0.003821790684014559, 0.005011593457311392, -0.016637571156024933, -0.007741911802440882, 0.01096060685813427, -0.0027942336164414883, -0.047539666295051575, -0.04108916595578194, -0.018040424212813377, -0.002984339836984873, 0.023560060188174248, -0.010908164083957672, -0.01802731491625309, 0.04538949951529503, 0.009964188560843468, 0.01661135070025921, 0.027506403625011444, -0.04822142794728279, 0.019600607454776764, 0.003661183640360832, 0.02860770933330059, 0.020046373829245567, 0.03901766240596771, -0.0065127769485116005, -0.052469316869974136, 0.020715022459626198, 0.02079368755221367, -0.009138209745287895, 0.013150106184184551, -0.02213098667562008, -0.028896145522594452, -0.007060151547193527, 0.040643397718667984, -0.002679514465853572, 0.011596479453146458, -0.009695417247712612, 0.008463004603981972, 0.00039434750215150416, 0.04780188202857971, -0.01928594894707203, -0.024569589644670486, -0.016676904633641243, 0.019849712029099464, 0.02304873988032341, 0.025067798793315887, 0.03807368874549866, 0.00048059181426651776, -0.023363398388028145, 0.030600545927882195, 0.03196406736969948, 0.00932831596583128, -0.03521553799510002, 0.020007040351629257, 0.004126616287976503, -0.005214810371398926, 0.037496812641620636, 0.015719817951321602, -0.051761336624622345, -0.02839793637394905, 0.051551561802625656, 0.0029171472415328026, 0.046123702079057693, -0.022943854331970215, -0.01047550793737173, -0.012101244181394577, 0.04116782918572426, -0.0008702276390977204, 0.010442730970680714, -0.0008522003190591931, -0.026051107794046402, -0.004696934949606657, 0.012356904335319996, 0.0019977542106062174, -0.00015149089449550956, -0.00970197282731533, -0.036159515380859375, 0.00025074355653487146, 0.0006248102872632444, 0.008698998019099236, -0.03655283898115158, -0.03036455251276493, -0.011137602850794792, -0.03689371794462204, 0.029420576989650726, -0.011183490045368671, -0.0062833381816744804, 0.01634913496673107, -0.033904459327459335, 0.029499242082238197, -0.033484917134046555, -0.0001452427968615666, -0.0011160545982420444, 0.03484843671321869, -0.032226283103227615, -0.02463514357805252, -0.03592352196574211, 0.027427738532423973, 0.0005477844970300794, 0.025448011234402657, 0.0049460395239293575, -0.001884673722088337, 0.015405159443616867, -0.03927987813949585, 0.018840182572603226, 0.020295478403568268, 0.021645886823534966, 0.0419282540678978, -0.0013561457162722945, -0.020216813310980797, 0.011976691894233227, -0.028581487014889717, 0.005844127386808395, 0.009479089640080929, -0.030312109738588333, 0.01844685897231102, -0.02698197215795517, 0.01022640336304903, -0.006611107848584652, -0.028057055547833443, 0.0005998178967274725, 0.024189377203583717, -0.004732989240437746, 0.03185918182134628, -0.05821183696389198, 0.0005305766244418919, 0.04434063658118248, 0.021737663075327873, 0.0061948406510055065, 0.025461122393608093, 0.006250561214983463, 0.010285401716828346, -0.020007040351629257, -0.015588710084557533, 0.019207283854484558, -0.02167210914194584, 0.00029417299083434045, 0.009662640281021595, -0.026470651850104332, 0.031177420169115067, 0.031308528035879135, 0.02137056179344654, 0.020426586270332336, -0.02375672198832035, -0.00518858851864934, -0.014566069468855858, -0.019312169402837753, -0.004762488417327404, -0.024018937721848488, -0.029971228912472725, 0.03351113945245743, -0.024700697511434555, 0.018761517480015755, 0.006758603733032942, -0.0578971765935421, -0.027427738532423973, 0.01630980335175991, -0.008679332211613655, -0.025985553860664368, -0.03778525069355965, 0.004496995359659195, 0.018669741228222847, -0.009937966242432594, 0.057949621230363846, 0.01031162403523922, 0.00886943843215704, 7.50284516470856e-06, 0.02371739037334919, -0.009865857660770416, 0.024910470470786095, -0.05031915009021759, -0.008141790516674519, 0.018512412905693054, -0.04124649614095688, -0.0063390592113137245, -0.014657844789326191, -0.01672934740781784, 0.026837754994630814, 0.006293171551078558, -0.038886554539203644, 0.02656242810189724, -0.0006436570547521114, -0.034402672201395035, 0.01585092581808567, -0.02083301916718483, 0.0021518056746572256, -0.03374713286757469, -0.043422881513834, -0.007663247175514698, -0.06356102973222733, 0.012920667417347431, -0.001301244250498712, -0.0361332930624485, -0.0460188165307045, -0.053649287670850754, 0.02748018130660057, -0.01882707141339779, 0.0320427305996418, 0.012330682948231697, -0.013438543304800987, -0.012002913281321526, -0.00492637325078249, -0.01794864982366562, -0.019023733213543892, -0.018551744520664215, -0.010160849429666996, 0.0008038543164730072, 0.0007067526457831264, 0.008292564190924168, 0.0033694689627736807, -0.00959708634763956, 0.003128558397293091, -0.04420952871441841, -0.034271564334630966, -0.02079368755221367, -0.0005822003004141152, -0.004539605230093002, -0.004388831555843353, -0.019089287146925926, 0.005591745022684336, -0.012009468860924244, -0.001768315676599741, -0.015431380830705166, 0.020177481696009636, 0.03652661666274071, 0.013543429784476757, 0.02852904424071312, -0.0021190287079662085, 0.019417056813836098, -0.010219847783446312, -0.038755446672439575, 0.0015741123352199793, 0.005136145744472742, 0.018591077998280525, -0.01748977228999138, -0.015706706792116165, 0.004503550939261913, -0.020675690844655037, -0.01970549300312996, -0.07541316747665405, -0.013077996671199799, 0.01970549300312996, -0.02209165319800377, 0.012684674002230167, 0.005313141271471977, 0.028555264696478844, 0.008443338796496391, -0.034271564334630966, -0.0015487101627513766, -0.012481456622481346, -0.009492199867963791, 0.023389620706439018, -0.02095101587474346, -0.004418330732733011, 0.006001456640660763, 0.01451362669467926, -0.0027909560594707727, 0.005529468879103661, 0.0030253110453486443, 0.014356297440826893, 0.00380540220066905, 0.02818816341459751, -0.034035567194223404, -0.007682913448661566, -0.03681505471467972, 0.008731774985790253, 0.03393068164587021, -0.02986634336411953, 0.005054203327745199, -0.001402033376507461, 0.05333462730050087, 0.019639939069747925, 0.018459970131516457, -0.01317632757127285, 0.05003071203827858, -0.0012668285053223372, -0.02367805689573288, -0.011399817653000355, 0.01882707141339779, 0.00796479545533657, 0.03212139755487442, -0.007827132008969784, 0.022996297106146812, -0.014316964894533157, 0.028083277866244316, -0.0212132316082716, -0.00702737458050251, 0.005598300602287054, 0.033537358045578, 0.024831805378198624, 0.0028122609946876764, 4.645106309908442e-05, -0.03086276166141033, -0.006486555561423302, -0.025133352726697922, 0.018512412905693054, -0.011157268658280373, 0.007591138128191233, 0.05438349023461342, -0.020767465233802795, -0.006955265533179045, 0.016663793474435806, -0.029709013178944588, -0.04004030302166939, 0.02602488547563553, 0.032567162066698074, 0.02518579736351967, 0.001122610061429441, 0.013897419907152653, 0.005142700858414173, -0.0071191503666341305, 0.009433201514184475, 0.0002359939244342968, -0.00824012141674757, -0.0017568436451256275, 0.0003357587265782058, -0.012370015494525433, -0.011976691894233227, 0.006961821112781763, 0.05045025795698166, -0.014251410961151123, 0.031229862943291664, -0.0022583308164030313, -0.023992715403437614, -0.019469499588012695, 0.007224036380648613, 0.006804491858929396, -0.00957742054015398, 0.0022484976798295975, -0.038467008620500565, -0.0009267678251489997, -0.019312169402837753, -0.023953383788466454, -0.02910591848194599, 0.019666161388158798, -0.01355654001235962, 0.018604187294840813, 0.015064279548823833, -0.03288182243704796, -0.020361032336950302, -0.001960060792043805, -0.0027286799158900976, -0.003103975672274828, -0.008207344450056553, -0.0020157815888524055, -0.012225796468555927, -0.01789620704948902, -0.002336995443329215, 0.010829498991370201, 0.005473748315125704, -0.02755884639918804, -0.007663247175514698, 0.002466464415192604, -0.020177481696009636, -0.008653110824525356, 0.01083605457097292, 0.037208374589681625, 0.039253655821084976, -0.0033088314812630415, -0.01313044037669897, -0.012907557189464569, 0.0026041273958981037, 0.00993141159415245, -0.03560886159539223, 0.019731715321540833, -0.0001322344469372183, 0.018722185865044594, 0.0022435812279582024, -0.014723398722708225, -0.00997729878872633, 0.021658997982740402, 0.011806251481175423, -0.016794901341199875, -0.029184581711888313, 0.0015396964736282825, 0.03107253462076187, -0.019666161388158798, 0.001946949865669012, 0.005998178850859404, -0.008397450670599937, 0.036369286477565765, -0.004093839321285486, 0.004834597930312157, -0.038545675575733185, -0.026877086609601974, 0.0022534143645316362, 0.005306585691869259, -0.018892625346779823, 0.0006788922473788261, -0.022970076650381088, 0.012153686955571175, -0.03372091054916382, 0.011648922227323055, -0.03581863269209862, -0.009459422901272774, 0.038755446672439575, 0.010488619096577168, -0.010678725317120552, 0.0703786313533783, 0.027296630665659904, -0.004346221685409546, 0.016716236248612404, 0.015785371884703636, -0.009518422186374664, 0.027532625943422318, -0.014657844789326191, 0.0013528679264709353, 0.003002367215231061, -0.015798483043909073, -0.02534312568604946, 0.0018486190820112824, 0.006162063684314489, -0.007827132008969784, -0.0036513505037873983, -0.01340576633810997, -0.03078409656882286, -0.028424156829714775, -0.00650294404476881, 0.007197814993560314, 0.013608983717858791, -0.004565827082842588, 0.006643884815275669, 0.013648315332829952, -0.013648315332829952, 0.01953505352139473, -0.020636357367038727, 0.0023435507901012897, 0.022642306983470917, -0.00985274650156498, 0.046071261167526245, 0.017974870279431343, -0.03836212307214737, 0.014395629987120628, -0.0063095600344240665, 0.008141790516674519, 0.014775842428207397, -0.020937906578183174, 0.0470152348279953, -0.020465917885303497, 0.008482670411467552, -0.028266828507184982, -0.004139726981520653, 0.01560182124376297, -0.028660152107477188, -0.023900941014289856, -0.029813900589942932, 0.029341911897063255, -0.019521942362189293, 0.014579180628061295, 0.009892079047858715, 0.00034968892578035593, -0.001479059224948287, 0.025985553860664368, -0.01869596354663372, 0.004198725335299969, 0.03778525069355965, 0.014330076053738594, 0.04772321507334709, -0.0002849544689524919, 0.029210804030299187, -0.006538998335599899, -0.0049460395239293575, -0.007977905683219433, -0.0017617602134123445, 0.004215113818645477, -0.006942154839634895, 0.014631623402237892, -0.023782944306731224, -0.012396236881613731, 0.02384849824011326, -0.04316066578030586, 0.008862882852554321, 0.027008194476366043, 0.008404006250202656, 0.04200692102313042, 0.015759149566292763, -0.0003267450665589422, 0.001860090997070074, -0.023900941014289856, 0.029761455953121185, -0.054698146879673004, 0.028266828507184982, -0.017791319638490677, 0.006362002808600664, -0.016965340822935104, 0.014736509881913662, 0.029079696163535118, 0.010783611796796322, -0.018223974853754044, -0.012592898681759834, -0.009688861668109894, 0.04352777078747749, -0.032645825296640396, -0.02873881720006466, 0.023022519424557686, -0.011183490045368671, 0.012789559550583363, -0.0122782401740551, 0.001459393068216741, -0.0004404400533530861, 0.02241942286491394, -0.011911137960851192, 0.0003744764835573733, -0.005516358185559511, -0.006706160958856344, 0.01569359563291073, -0.026549316942691803, -0.02627399004995823, -0.014946281909942627, -0.023704279214143753, -0.001508558401837945, 0.005676965229213238, -0.010619726963341236, 0.03977808728814125, 0.013818755745887756, 0.01503805723041296, 0.007197814993560314, 0.014605402015149593, -0.0035005765967071056, -0.0025451290421187878, 0.0336422473192215, 0.024936692789196968, 0.004126616287976503, 0.018302639946341515, 0.015575598925352097, 0.02789972722530365, 0.031177420169115067, -0.0010726251639425755, -0.03518931567668915, -0.03909632936120033, -0.017135782167315483, 0.02049214020371437, -0.006237450521439314, -0.009105432778596878, 0.003628406673669815, -0.007315811701118946, -0.012304461561143398, -0.018171532079577446, -0.0250546894967556, -0.055327463895082474, -0.004736267030239105, 0.0010677085956558585, -0.008535114116966724, 0.011183490045368671, 0.025579119101166725, -0.018748406320810318, -0.034192897379398346, -0.0007698482368141413, -0.01145881600677967, 0.00790579617023468, 0.009905189275741577, -0.009059544652700424, -0.009465978480875492, 0.005047647748142481, -0.01810597814619541, 0.003339969553053379, -0.008279453963041306, -0.02522512897849083, -0.029892563819885254, 0.025552898645401, -0.026457542553544044, 0.043029557913541794, 0.03568752482533455, -0.008390895090997219, 0.009780636988580227, 0.012002913281321526, -0.012592898681759834, -0.01091471966356039, 0.0037234597839415073, -0.00034538694308139384, 0.02074124477803707, 0.0025844613555818796, 0.004555993713438511, 0.004054506774991751, 0.025880668312311172, -0.01743732951581478, 0.014566069468855858, 0.024228710681200027, 0.025120243430137634, -0.0038283460307866335, -0.008030349388718605, -0.006811046972870827, -0.0020108649041503668, -0.03125608339905739, 0.016414688900113106, -0.0033956903498619795, 0.003523520426824689, 0.01819775439798832, -0.014985614456236362, -0.00015353945491369814, -0.002282913541421294, -0.001204552361741662, -0.048378754407167435, -0.0034186341799795628, -0.0007169954478740692, -0.02024303562939167, -0.026339543983340263, -0.009800303727388382, -0.04087939113378525, 0.01769954524934292, -0.036028407514095306, -0.013713869266211987, 0.010600060224533081, 0.013766312971711159, -0.04150870814919472, -9.822837455431e-05, 0.011432594619691372, 0.013543429784476757, 0.006457055918872356, 0.027873504906892776, -0.009793748147785664, 0.0008235204732045531, -0.033825796097517014, 0.03518931567668915, 0.00962330773472786, -0.026929529383778572, 0.041849590837955475, 0.00909887719899416, -0.006096509750932455, -0.01848619058728218, 0.00020864568068645895, 0.006335781421512365, -0.04785432294011116, -0.017424218356609344, 0.02514646388590336, 0.03206895291805267, 0.0035071319434791803, 0.034114234149456024, 0.029918786138296127, 0.009492199867963791, 0.04169226065278053, -0.015365826897323132, 0.018499301746487617, -0.023730501532554626, 0.0010349317453801632, -0.020728133618831635, 0.00034723064163699746, -0.03261960670351982, -0.05346573516726494, 0.032567162066698074, -0.015706706792116165, 0.005952291190624237, -0.031806737184524536, 0.04216424748301506, 0.0004062291409354657, -0.013648315332829952, 0.01739799603819847, -0.021396782249212265, -0.010927829891443253, -0.00884321704506874, -0.002789317164570093, 0.000228823977522552, -0.005814628209918737, -0.00638822466135025, -0.04376376420259476, 0.008705553598701954, 0.02810949832201004, -0.0041036722250282764, -0.01949572004377842, 0.056533657014369965, 0.019757935777306557, -0.0020715021528303623, 0.000843186629936099, -0.003330136649310589, -0.017450440675020218, 0.014710288494825363, 0.007296145427972078, -0.02400582656264305, 0.013372989371418953, -0.016218027099967003, 0.013792534358799458, -0.015103611163794994, 0.026929529383778572, -0.03185918182134628, 0.013268102891743183, 0.0209641270339489, 0.007158482447266579, -0.013543429784476757, 0.03358980268239975, -0.04004030302166939, -0.001459393068216741, 0.0024697419721633196, 0.016113141551613808, 0.03416667506098747, 0.0009382397402077913, 0.023350289091467857, -0.011884916573762894, 0.01752910390496254, -0.008423672057688236, 0.009020212106406689, 0.022537419572472572, -0.011799696832895279, -7.799886225257069e-05, -0.029604127630591393, 0.0028515933081507683, 0.01377942319959402, 0.030521880835294724, 0.03220006078481674, -0.02350761741399765, -0.04630725458264351, -0.007322367280721664, -0.005752352066338062, 0.044576629996299744, 0.027244187891483307, 0.005086980294436216, 0.01924661546945572, 0.06135842204093933, 0.01290100160986185, -0.033065371215343475, -0.0069749318063259125, 0.010462397709488869, -0.029263246804475784, 0.012658452615141869, -0.0081352349370718, -0.0047723217867314816, 0.0018764794804155827, -0.007873020134866238, 0.035739969462156296, 0.0078861303627491, -0.020190590992569923, -0.001874840701930225, 0.007676357869058847, -0.04533705487847328, 0.005319696385413408, 0.009813413955271244, 0.018630409613251686, 0.009125098586082458, -0.007079817820340395, 0.004611714743077755, 0.039673201739788055, 0.03395690396428108, -0.004818209446966648, 0.0024156600702553988, -0.02601177617907524, 0.03458622097969055, -0.02459581196308136, -0.012966555543243885, 0.003392412792891264, 0.02614288218319416, 0.00974786002188921, 0.027165522798895836, 0.00030195750878192484, -0.00874488614499569, 0.015549377538263798, -0.012474901042878628, 0.008967769332230091, -0.025198906660079956, -0.013569651171565056, -0.03217383846640587, -0.021593444049358368, -0.009105432778596878, -0.012973111122846603, -0.012887890450656414, 0.008987435139715672, 0.014133414253592491, 0.023992715403437614, 0.043475326150655746, 0.01928594894707203, -0.026588648557662964, -0.0336422473192215, -0.014906950294971466, 0.016283581033349037, 0.005457359831780195, 0.018761517480015755, 0.001204552361741662, 0.011753808706998825, 0.02727041020989418, 0.02003326267004013, 0.03542530909180641, 0.0034153566230088472, 0.018289528787136078, 0.02488424815237522, 0.017214445397257805, 0.0027450681664049625, 0.004356054589152336, -0.023035630583763123, -0.010927829891443253, 0.017725765705108643, 0.008128679357469082, 0.031046312302350998, 0.026929529383778572, -0.0010234598303213716, -0.0214623361825943, -0.01415963564068079, -0.006968376226723194, 0.004641213919967413, 0.03838834539055824, -0.029813900589942932, 0.012579787522554398, 0.000722731405403465, 0.010285401716828346, 0.045022398233413696, -0.011406373232603073, 0.007722245994955301, -0.02509402111172676, -0.0007284673629328609, -0.04048607125878334, 0.0046576024033129215, 0.015077389776706696, 0.017974870279431343, -0.019849712029099464, -0.022471865639090538, -0.029682792723178864, -0.010724613443017006, 0.022773414850234985, -0.006381669081747532, 0.010344401001930237, 0.027585068717598915, 0.051892444491386414, 0.008646555244922638, 0.022747192531824112, -0.004375720862299204, -0.004146282095462084, 0.01703089475631714, 0.021305007860064507, 0.0007792716496624053, 0.020885461941361427, -0.012678118422627449, -0.02803083509206772, -0.022445645183324814, 0.009026767686009407, -0.01686045527458191, 0.009387314319610596, -0.03136097267270088, -0.003372746519744396, 0.00713226106017828, -0.025526676326990128, 0.010069074109196663, 0.005713019520044327, 0.01476273126900196, 0.018709074705839157, 0.004932928830385208, -0.0015618209727108479, -0.0253037940710783, -0.0033547193743288517, -0.010875387117266655, -0.029210804030299187, -0.0059064035303890705, -0.007486251648515463, -0.0060735661536455154, -0.004592048469930887, 0.020806798711419106, 0.01790931634604931, -2.5338107661809772e-05, 0.005572078749537468, 0.01949572004377842, 0.027008194476366043, 0.003536631353199482, -0.003002367215231061, -0.012376570142805576, -0.008181123062968254, 0.017673322930932045, -0.02673286758363247, -0.017620880156755447, -0.028214385733008385, 0.014421851374208927, -0.020098816603422165, -0.0036349620204418898, -0.020465917885303497, 0.006948709953576326, 0.012127465568482876, -0.008908770978450775, -0.0025484065990895033, 0.009964188560843468, 0.0008718664757907391, 0.015339605510234833, 0.005152534227818251, -0.0061653414741158485, -0.021803217008709908, 0.000843186629936099, 0.0006629134877584875, 0.02054458297789097, 0.0209641270339489, 0.0027352352626621723, -0.06382324546575546, -0.006670106202363968, 0.03726081922650337, 0.0036546282935887575, 0.004372443072497845, -0.02522512897849083, -0.01056072860956192, -0.01945638842880726, 0.01790931634604931, 0.023232290521264076, -0.005945736076682806, 0.03539909049868584, 0.016663793474435806, -0.007892685942351818, -0.015352715738117695, 1.1235062629566528e-05, -0.005814628209918737, 0.005483581218868494, -0.03416667506098747, 0.019731715321540833, -0.06282682716846466, -0.00220588780939579, 0.013353323563933372, 0.011196601204574108, -0.03070543147623539, -0.020308589562773705, 0.0050279819406569, 0.0016486798413097858, -0.024818694218993187, 0.002550045493990183, 0.013818755745887756, -0.02342895232141018, 0.019797269254922867, 0.009898634627461433, -0.008417116478085518, 6.664216471108375e-06, -0.0026237936690449715, -0.019141729921102524, 0.012389681302011013, -0.023599393665790558, -0.01794864982366562, -0.015431380830705166, 0.03162318468093872, -0.011576813645660877, -0.0009898634161800146, 0.039463430643081665, -0.02810949832201004, 0.025749560445547104, -0.0005989985074847937, 0.012868224643170834, 0.02272097021341324, -0.0033366919960826635, -0.013353323563933372, -0.02100346051156521, 0.0010013353312388062, -0.021724551916122437, 0.050345372408628464, 0.03880789130926132, 3.090762402280234e-05, 0.032855600118637085, 0.013569651171565056, 0.010908164083957672, -0.0071191503666341305, -0.016834232956171036, 0.006040789186954498, -0.009964188560843468, -0.005257420241832733, -0.019482610747218132, 0.03799502179026604, 0.007210925687104464, 0.0036087404005229473, -0.00702737458050251, 0.011203155852854252, -0.014723398722708225, -0.0006797116948291659, 0.027637511491775513, -0.005450804252177477, -0.043422881513834, -0.005598300602287054, -0.010291957296431065, 0.0429246723651886, -0.001748649519868195, 0.011203155852854252, 0.026090439409017563, -0.0013405766803771257, 0.011072048917412758, 0.019377723336219788, 0.03317025676369667, 0.007086373399943113, 0.005375417415052652, -0.0076108044013381, 0.00035296662827022374, -0.006086676847189665, 0.017476661130785942, 0.019731715321540833, -0.0005023065023124218, -0.0026827920228242874, -0.002920424798503518, 0.004457663279026747, 0.007283034734427929, -0.013962973840534687, -0.012724005617201328, 0.014736509881913662, -0.007551805581897497, -0.004136449191719294, 0.00036935508251190186, -0.001989559968933463, -0.006178452167659998, 0.02213098667562008, 0.006955265533179045, 0.01073116809129715, 0.009531532414257526, 0.021029680967330933, -0.011445705778896809, -0.00036484826705418527, 0.012002913281321526, 0.022904522716999054, -0.003671016776934266, 0.012238907627761364, 0.007033930160105228, 0.001503641833551228, -0.03576619178056717, -0.02789972722530365, -0.00011891881877090782, 0.003122003050521016, -0.007322367280721664, 0.008023793809115887, 0.020269256085157394, -0.0023730499669909477, 0.009859302081167698, -0.016126252710819244, -0.011222822591662407, -0.006365280598402023, -0.03212139755487442, -0.004759211093187332, 0.006601274479180574, 0.015457602217793465, 0.019049953669309616, 0.013608983717858791, 0.023494506254792213, -0.001647860393859446, 0.005457359831780195, -0.00796479545533657, -0.04937517270445824, -0.02167210914194584, -0.010409954003989697, -0.0160213652998209, -0.01915484108030796, -0.010908164083957672, 0.008875994011759758, 0.00113735964987427, 0.006679939106106758, 0.0055819121189415455, 0.024477815255522728, 0.0027729286812245846, 0.0005305766244418919, 0.02669353596866131, -0.017201336100697517, 0.002420576522126794, -0.025592230260372162, -0.010232958942651749, -0.009603641927242279, 0.0014659484149888158, -0.011629256419837475, 0.01769954524934292, 0.01899751089513302, -0.007643581368029118, -0.021763885393738747, -0.020020151510834694, -0.012389681302011013, -0.008482670411467552, -0.0001961494708666578, 0.005342640448361635, -0.011406373232603073, 0.004982094280421734, -0.006843823939561844, 0.0033629133831709623, 0.03781147301197052, -0.003903732867911458, 0.0036120181903243065, -0.0199152659624815, -0.01294688880443573, 0.015824703499674797, -0.006856934633105993, 0.012828892096877098, 0.00554257957264781, -0.033563580363988876, -0.004909984767436981, -0.021711440756917, -0.013648315332829952, 0.018892625346779823, 0.01594270020723343, 0.0021124733611941338, -0.016965340822935104, 0.017922427505254745, 0.0010644309222698212, 0.01865663193166256, -0.016362246125936508, 0.020688802003860474, -0.015824703499674797, -0.010547617450356483, 0.008967769332230091, -0.015995144844055176, -0.0016019727336242795, -0.009111987426877022, -0.01340576633810997, 0.008653110824525356, -0.005162367131561041, -0.019836600869894028, -0.023494506254792213, -0.013222215697169304, -0.016585128381848335, -0.006086676847189665, 0.01436940860003233, -0.0152478301897645, 0.008548224344849586, 0.003936510067433119, 0.009610197506844997, -0.029289469122886658, 0.0012315933126956224, -0.04352777078747749, -0.03537286818027496, 0.01781754195690155, 0.003870955901220441, -0.006988042499870062, 0.016296692192554474, -0.0021649166010320187, 0.012206130661070347, -0.001055417349562049, -0.018682852387428284, -0.025290682911872864, 0.003461244283244014, 0.02442537248134613, 0.004605159163475037, -0.03532042354345322, -0.002133778529241681, -0.005224643275141716, -0.010344401001930237, -0.01630980335175991, 0.009675751440227032, 0.0009284066618420184, 0.013713869266211987, -0.005634354893118143, -0.009170986711978912, -0.007728801108896732, -0.011399817653000355, -0.008089347742497921, -0.007158482447266579, 0.009918300434947014, 0.019797269254922867, -0.018512412905693054, 0.015667375177145004, 0.012029134668409824, -0.005113201681524515, -0.03975186496973038, -0.010829498991370201, 0.01581159234046936, -0.019259726628661156, -0.004018452018499374, 0.0029368132818490267, -0.02463514357805252, -0.04352777078747749, 0.005591745022684336, 0.015955811366438866, 0.046490803360939026, -0.013713869266211987, -0.005067314021289349, 0.005037814844399691, 0.007505917921662331, 0.018079757690429688, 0.00033411988988518715, -0.01640157774090767, -0.011511259712278843, 0.030495660379529, -0.0060211229138076305, 0.007709134835749865, 0.003697238164022565, -0.005326251965016127, 0.0027073747478425503, 0.0020370865240693092, -0.019692381843924522, 0.010947496630251408, 0.021816328167915344, -0.028843702748417854, 0.04344910383224487, 0.004578937776386738, -0.00702737458050251, -0.010698391124606133, -0.005123035050928593, -0.009878967888653278, -0.029473019763827324, -0.024700697511434555, -0.026037996634840965, -0.013962973840534687, 0.004523216746747494, 0.01710955984890461, -0.0005539301782846451, -0.009406980127096176, 0.008784218691289425, 0.011786585673689842, 0.012488012202084064, 0.020977238193154335, 0.004241335205733776, 0.018604187294840813, 0.005729408003389835, -0.0015159331960603595, -0.003949620760977268, -0.0065979971550405025, -0.00394306518137455, -0.00012373292702250183, 0.02789972722530365, 0.002627071226015687, 0.013687647879123688, 0.012474901042878628, 0.007741911802440882, -0.01634913496673107, 0.009164431132376194, 0.009288983419537544, 0.018604187294840813, -0.0014176024124026299, 0.012494567781686783, 0.006955265533179045, -0.036159515380859375, -0.02150166966021061, -0.034035567194223404, -0.0002736874157562852, 0.02894858829677105, 0.007899241521954536, 0.012029134668409824, 0.0031744460575282574, -0.0072699240408837795, 0.03993541747331619, -0.016965340822935104, -0.01781754195690155, -0.004480606876313686, 0.029079696163535118, -0.0017945371801033616, 0.0003937329165637493, -0.0010332928504794836, -0.009551199153065681, 0.011426039040088654, 0.028476601466536522, 0.014749621041119099, -0.03141341358423233, -0.01802731491625309, -0.025172686204314232, -0.023389620706439018, 0.016204915940761566, 0.014500515535473824, 0.0035300757735967636, -0.021658997982740402, 0.0071257054805755615, -0.010527951642870903, 0.0027696508914232254, 0.020728133618831635, 0.017293110489845276, 0.007715690415352583, -0.0016265553422272205, 0.013038665056228638, 0.0020698634907603264, 0.00016542109369765967, 0.015064279548823833, -0.011426039040088654, 0.013595872558653355, -0.0036415173672139645, -0.0011930804466828704, -0.023599393665790558, 0.00886943843215704, -0.02020370215177536, -0.028293050825595856, -0.006856934633105993, 0.024110713973641396, 0.0004125796549487859, -0.010547617450356483, 0.007204370107501745, 0.020557694137096405, -0.03400934860110283, -0.007676357869058847, -0.02497602440416813, -0.018630409613251686, -0.04014518857002258, -0.020059483125805855, -0.0037759027909487486, 0.03007611446082592, -0.020557694137096405, 0.017332442104816437, 0.04517972841858864, -0.021593444049358368, 0.018250197172164917, -0.03476977348327637, 0.0020026706624776125, 0.005690075922757387, -0.022262094542384148, 0.0004515022737905383, -0.008377784863114357, 0.009774082340300083, -0.0026090440806001425, 0.004611714743077755, 0.011989803053438663, -0.033065371215343475, -0.0004023368819616735, 0.009642974473536015, -0.0012938694562762976, -0.01363520510494709, -0.001996115315705538, 0.02451714687049389, 0.017122671008110046, 0.011327709071338177, -0.015378938056528568, -0.016244249418377876, 0.005024704150855541, 0.03765414282679558, 0.011871805414557457, 0.020308589562773705, 0.009433201514184475, -0.01726689003407955, -0.04848363995552063, 0.006961821112781763, -0.028633929789066315, 0.020715022459626198, -0.015798483043909073, 0.013936752453446388, -0.006129286717623472, 0.014198968186974525, 0.015378938056528568, 0.04027629643678665, 0.017450440675020218, -0.0022861910983920097, -0.00894810352474451, -0.0022239149548113346, -0.020007040351629257, -0.028843702748417854, 0.013353323563933372, -0.012120909988880157, -0.012606008909642696, -0.00215999991632998, -0.0034415782429277897, 0.0037267375737428665, -0.0152478301897645, -0.009361092932522297, -0.036998603492975235, -0.01802731491625309, 0.009859302081167698, -0.017673322930932045, -0.004651046823710203, 0.023035630583763123, -0.02782106213271618, -0.008371229283511639, -0.004342943895608187, 0.017122671008110046, -0.01606069877743721, 0.014605402015149593, 0.0028810924850404263, 0.001325826975516975, 0.033983126282691956, -0.029473019763827324, 0.004959150217473507, -0.014421851374208927, 0.007446919567883015, -0.03880789130926132, -0.027925947681069374, -0.031518299132585526, 0.00024562215548940003, -0.005768740549683571, -0.012874780222773552, -0.01957438513636589, 0.009420091286301613, 0.010468953289091587, 0.02137056179344654, 0.021776994690299034, 0.03261960670351982, -0.003739848267287016, 0.022393202409148216, -0.010770500637590885, -0.01957438513636589, 0.01886640302836895, -0.014644734561443329, -0.0030040061101317406, -0.015746040269732475, 0.022144097834825516, 0.03212139755487442, -0.0018010925268754363, 0.0009095599525608122, 0.011098270304501057, -0.006037511397153139, 0.013923642225563526, 0.0064013353548944, -0.02656242810189724, -0.018787739798426628, 0.027742397040128708, -0.004923095460981131, 0.024241819977760315, 0.018459970131516457, -0.00993141159415245, 0.02266852743923664, -0.024163156747817993, -0.0051787556149065495, -0.004752655513584614, 0.002356661483645439, -0.034324005246162415, 0.045940153300762177, -0.01882707141339779, 0.004467496182769537, -0.0004977997159585357, 0.019587496295571327, 0.0045723821967840195, -0.010501730255782604, -0.002250136574730277, -0.00505092553794384, 0.026116661727428436, -0.002448437036946416, -0.005336084868758917, -0.012094688601791859, 0.026955751702189445, 0.023206070065498352, -0.007335477974265814, 0.009629863314330578, 0.016113141551613808, 0.015182276256382465, 0.006181729957461357, -0.0021813050843775272, -0.02099034935235977, -0.03862433880567551, 0.01168825477361679, -0.020518360659480095, 0.0076108044013381, -0.004159392789006233, 0.00375951430760324, -0.01752910390496254, -0.008168011903762817, 0.004270834382623434, 0.016034476459026337, 0.0010005158837884665, 0.009492199867963791, 0.0037791805807501078, -0.007977905683219433, 0.019443277269601822, -0.033353809267282486, -0.011242488399147987, -0.008154901675879955, 0.010298512876033783, -0.010468953289091587, -0.010527951642870903, 0.0006338239763863385, 0.0011398178758099675, -0.0037660698872059584, -0.008830105885863304, 0.01313044037669897, -0.014107192866504192, -0.011235932819545269, 0.013897419907152653, -0.01857796683907509, 0.009184096939861774, 0.0012307738652452826, 0.006417723838239908, -0.004464218392968178, -0.01610003039240837, 0.011707921512424946, 0.0004793626721948385, 0.006473444402217865, -0.009393869899213314, 0.012920667417347431, -0.0014077693922445178, 0.0027778451330959797, 0.0018584522185847163, 0.03634306415915489, -0.016952229663729668, 0.00836467370390892, 0.006293171551078558, 0.007859908975660801, -0.04053851217031479, 0.011196601204574108, 0.007958239875733852, 0.007420698180794716, -0.015824703499674797, -0.003464522073045373, -0.0392274335026741, 0.022065432742238045, 0.023651836439967155, 0.017175113782286644, -0.0033137481659650803, 0.01689978688955307, -0.012959999963641167, -0.014500515535473824, 0.014920060522854328, 0.013844977132976055, 0.005388528108596802, -0.02824060618877411, -0.0025713504292070866, 0.010390288196504116, 0.009157875552773476, 0.005962124560028315, 0.010121517814695835, -0.0067717148922383785, -0.010154294781386852, 0.00982652511447668, 0.021711440756917, -0.001233232207596302, -0.004011896904557943, -0.024451592937111855, 0.01068528089672327, 0.0128026707097888, 0.013222215697169304, -0.0154969347640872, 0.01623113825917244, -0.006250561214983463, -0.00178306526504457, 0.024294264614582062, 0.023900941014289856, -0.008430227637290955, -0.0023583003785461187, -0.008168011903762817, -0.0072699240408837795, 0.004228224512189627, -0.003389135003089905, -0.01894506812095642, -0.006037511397153139, -0.010672169737517834, 0.019181061536073685, 0.00017945372383110225, -0.019010622054338455, -0.011117936111986637, -0.0026041273958981037, 0.010744279250502586, 0.0028745371382683516, -0.007283034734427929, -0.025080909952521324, -0.014592290855944157, -0.03747059032320976, -0.018184643238782883, -0.0036415173672139645, -0.007800910621881485, -0.0026434597093611956, -0.012520789168775082, -0.02782106213271618, -0.015562488697469234, 0.019639939069747925, 0.013136995024979115, -0.019272837787866592, -0.015326494351029396, 0.015208497643470764, 0.015378938056528568, 0.02184254862368107, 0.02782106213271618, -0.0019649772439152002, 0.004293778445571661, -0.00196661613881588, -0.00468382379040122, -0.009636418893933296, 0.0010054324520751834, -0.0005313960718922317, -0.008757997304201126, -0.021475447341799736, 0.020400363951921463, -0.001986282179132104, -0.012789559550583363, 0.004552716389298439, -0.0081352349370718, 0.029473019763827324, -0.0032973596826195717, 0.012638785876333714, 0.011911137960851192, -0.03240983188152313, 0.00848922599107027, -0.011176934465765953, -0.014120303094387054, -0.004533050116151571, -0.008882549591362476, -0.012311016209423542, -0.006909377872943878, -0.013687647879123688, 0.007846797816455364, -0.012265129014849663, 0.01615247316658497, 0.00589657062664628, -0.005273808725178242, -0.017673322930932045, -0.008830105885863304, -0.03296048566699028, -0.035661306232213974, 0.019548164680600166, 0.005624521989375353, 0.002322245854884386, -0.006384946871548891, -0.015667375177145004, 0.00047690438805148005, 0.0007751745288260281, -0.034953322261571884, -0.0002392716269241646, -0.019797269254922867, 0.004359332378953695, -0.03057432547211647, 0.004867374897003174, 0.0023681335151195526, -0.005319696385413408, -0.011930803768336773, 0.017083337530493736, -0.01873529516160488, 0.004451107699424028, 0.005208254791796207, 0.0019076175522059202, 0.008161456324160099, -0.009033323265612125, 0.026470651850104332, -0.005208254791796207, 0.03007611446082592, 0.002795872511342168, 0.004405220039188862, 0.003372746519744396, -0.01995459757745266, -0.02234075777232647, -0.01789620704948902, -0.025238240137696266, -0.006532443221658468, 0.0038545674178749323, 0.023560060188174248, -0.012717450968921185, -0.00700770877301693, 0.0064898328855633736, -0.002133778529241681, -0.01957438513636589, -0.0046576024033129215, 0.005752352066338062, -0.010613171383738518, 0.00970197282731533, 0.010160849429666996, 0.007106039207428694, -0.016781790181994438, 0.0032498331274837255, -0.012796115130186081, 0.02438603900372982, -0.00035726858186535537, 0.006316115148365498, 0.004113505128771067, 0.02547423355281353, -0.001590500702150166, 0.015536267310380936, -0.00013202958507463336, -0.01564115285873413, -0.0008948103059083223, 0.008862882852554321, -0.028083277866244316, 0.012887890450656414, -0.0030236721504479647, 0.03146585822105408, 0.024753140285611153, 0.010521396063268185, 0.02100346051156521, 0.0105803944170475, -0.018053535372018814, -0.0029138694517314434, 0.02087235264480114, -0.027322852984070778, 0.0026205158792436123, 0.035031989216804504, -0.0066274963319301605, 0.010160849429666996, 0.010370622389018536, 0.007951684296131134, -0.006076843477785587, -0.0032498331274837255, 0.007997572422027588, 0.005319696385413408, -0.003834901377558708, -0.00811556912958622, -0.006856934633105993, 0.0028647040016949177, 0.017162002623081207, -0.0008898937958292663, 0.010718057863414288, -0.005578634329140186, -0.014067860320210457, -0.02886992320418358, -0.014251410961151123, 0.0007063429220579565, -0.028424156829714775, -0.00909887719899416, 0.008299119770526886, 0.001450379379093647, 0.00039537178236059844, 0.031439635902643204, 0.014500515535473824, -0.008069681003689766, 0.03374713286757469, 0.03927987813949585, 0.004700212273746729, 0.002322245854884386, 0.019849712029099464, -0.004759211093187332, 0.00987241230905056, -0.003556297393515706, 0.016834232956171036, 0.010180516168475151, 0.004965705797076225, -0.026877086609601974, 0.01882707141339779, 0.009511866606771946, -0.00888910423964262, 0.0007255994132719934, 0.009688861668109894, 0.02719174511730671, 0.009734749794006348, -0.008351562544703484, -0.005326251965016127, -0.025959331542253494, 0.004025007598102093, 0.033773355185985565, 0.01585092581808567, -0.0032072230242192745, -0.010501730255782604, -0.018931956961750984, -0.0016667071031406522, 0.011904582381248474, -0.004726434126496315, -1.9115610484732315e-05, -0.0014970864867791533, 0.012966555543243885, -0.0031416690908372402, 0.009216873906552792, -0.0031498633325099945, -0.00751902861520648, -0.012914111837744713, 0.0058769043534994125, -0.007958239875733852, -0.025356236845254898, -0.006443945225328207, -0.006257116794586182, 0.017620880156755447, -0.0020633081439882517, 0.019692381843924522, 0.01096060685813427, -0.02012503705918789, 0.01911550760269165, -0.009918300434947014, 0.009551199153065681, -0.013261547312140465, -0.0012692868476733565, 0.0074993628077209, 0.00541802728548646, 0.0012815780937671661, 0.0076173595152795315, 0.004342943895608187, -0.009675751440227032, 0.000313224591081962, 0.03631684184074402, 0.008685887791216373, 0.015470713376998901, 0.006234173197299242, -0.0362381786108017, -0.014684067107737064, 0.008089347742497921, 0.0020977237727493048, 0.00846956018358469, 0.003389135003089905, -0.003425189759582281, 0.005624521989375353, -0.008154901675879955, 0.0051197572611272335, 0.0040217298083007336, -0.00030052350484766066, -0.00959708634763956, 0.005496691912412643, -0.017620880156755447, 0.016676904633641243, 0.011281820945441723, 0.010514840483665466, 0.00799101684242487, -0.00010253034997731447, -0.017306221649050713, 0.028083277866244316, 0.00987241230905056, 0.01294688880443573, 0.016414688900113106, -0.014303854666650295, 0.007197814993560314, 0.012284794822335243, 0.01581159234046936, -0.024831805378198624, -0.0034579664934426546, -0.016755569726228714, 0.0023107738234102726, 0.012337238527834415, 0.02727041020989418, 0.006063732784241438, 0.027637511491775513, 0.007348588667809963, 0.002818816341459751, 0.004280667752027512, 0.016755569726228714, 0.006089954636991024, -0.009387314319610596, 0.015182276256382465, 0.018787739798426628, 0.023664947599172592, 0.0013405766803771257, -0.016257358714938164, 0.000949711655266583, -0.018682852387428284, -0.007827132008969784, -0.006581608671694994, -0.0018420637352392077, 0.005447526462376118, 0.004149559885263443, 0.02308807335793972, -0.00690282229334116, -0.022262094542384148, -0.013346767984330654, -0.005621244199573994, -0.0149987256154418, 0.027349073439836502, -0.003526798216626048, -0.0050279819406569, -0.0007755841943435371, 0.02426804229617119, -0.001595417270436883, 0.0019830046221613884, 0.012409347109496593, 0.0204134751111269, 0.01890573650598526, -0.01204880140721798, -0.002774567576125264, 0.028922367841005325, -0.002073141047731042, -0.001184886205010116, 0.02810949832201004, -0.004939483944326639, 0.008463004603981972, -0.010973718017339706, -0.020898573100566864, 0.01119004562497139, 0.0035071319434791803, -0.006362002808600664, 0.0017601214349269867, -0.029892563819885254, 0.010010075755417347, -0.00042732927249744534, -0.020098816603422165, -0.001180789084173739, -0.003228527959436178, -0.012966555543243885, 0.0036513505037873983, -0.0030515326652675867, -8.440060628345236e-05, -0.0122782401740551, -0.019797269254922867, -0.014959393069148064, -0.009518422186374664, -0.014880727976560593, -0.005077147390693426, -0.0028942034114152193, 0.008154901675879955, 0.008168011903762817, -0.002972868038341403, 0.008023793809115887, -0.03747059032320976, -0.00846956018358469, -0.004870652686804533, -0.0030662822537124157, -0.006843823939561844, -0.007053596433252096, 0.017162002623081207, -0.018931956961750984, 0.02952546253800392, 0.01974482461810112, -0.02526446059346199, 0.014802063815295696, -0.007604248821735382, 0.005985068157315254, 0.004923095460981131, 0.013504097238183022, -0.007204370107501745, 0.008430227637290955, 0.017581548541784286, 0.030181001871824265, -0.01045584212988615, 0.013399210758507252, 0.037575479596853256, -0.0035431866999715567, -0.0027975114062428474, 0.00822045560926199, -0.008227010257542133, -0.006709438748657703, -0.010691836476325989, 0.002232109196484089, 0.013844977132976055, 0.007342033553868532, -0.009774082340300083, 0.01045584212988615, 0.006316115148365498, 0.008076236583292484, 0.010554173029959202, 0.028581487014889717, -0.000828846707008779, 0.0017847040435299277, 0.010141183622181416, 0.0005629438674077392, -0.024281153455376625, -0.014959393069148064, 0.010514840483665466, -0.030521880835294724, -0.00252546276897192, 0.022983185946941376, -0.017411107197403908, -0.00441177561879158, 0.021567223593592644, 0.0009169347467832267, 0.005168922711163759, 0.007859908975660801, -0.01106549333781004, 0.035110652446746826, 0.03416667506098747, 0.0010521395597606897, 0.01680801250040531, -0.012874780222773552, -0.006083399057388306, 0.007033930160105228, 0.03455999866127968, 3.7488618545467034e-05, -0.005981790367513895, -0.0010349317453801632, -0.010842610150575638, 0.007637025788426399, -0.01844685897231102, 0.006601274479180574, -0.01857796683907509, 0.030469438061118126, 0.005001760087907314, 0.01192424912005663, -0.003444855799898505, -0.020256144925951958, -0.022104764357209206, 0.003598907496780157, 0.011622700840234756, 0.0007210925687104464, -0.0160213652998209, 0.0008317147148773074, 0.015916479751467705, 0.004005341324955225, 0.0050902580842375755, 0.001971532590687275, -0.008122124709188938, -0.009282427839934826, 0.020924795418977737, -0.008102457970380783, 0.0072633689269423485, -0.014880727976560593, -0.01202258002012968, -0.011799696832895279, 0.0029040363151580095, 0.025448011234402657, 0.025959331542253494, -0.0004019271582365036, 0.0036087404005229473, 0.033825796097517014, -0.02220965176820755, -0.002087890636175871, 0.01726689003407955, -0.0014921699184924364, 0.005824461113661528, 0.011301486752927303, 0.002984339836984873, -0.023206070065498352, 0.0248055849224329, -0.008934992365539074, 0.011078603565692902, 0.027375295758247375, -0.0007817298755981028, -0.0028663428965955973, 0.0028057056479156017, -0.0009857662953436375, 0.015536267310380936, -0.01345165353268385, 0.0005359028582461178, 0.00859411247074604, 0.005204977001994848, 0.01756843738257885, -0.00040561455534771085, 0.009524976834654808, 0.03138719126582146, -0.003233444644138217, 0.02593311108648777, -0.0006719271768815815, 0.0064537785947322845, 0.03754925727844238, 0.0007022458012215793, 0.01773887686431408, -0.008351562544703484, -0.0009505311027169228, -0.015077389776706696, 0.011694810353219509, 0.019089287146925926, 0.029892563819885254, -0.009649529121816158, -0.0029958118684589863, -0.027794839814305305, -0.008738330565392971, 0.004595326259732246, 0.004719878546893597, -0.01865663193166256, -0.005968679673969746, -0.01743732951581478, 0.010193626396358013, 0.023494506254792213, 0.005801517516374588, -0.018001092597842216, 0.004447829909622669, 0.006234173197299242, -0.028004612773656845, -0.0063980575650930405, -0.01760776899755001, 0.010370622389018536, -0.017096448689699173, -0.015995144844055176, -0.00949875544756651, -0.008279453963041306, -0.014382518827915192, 0.0160213652998209, -0.005804795306175947, 0.017633991315960884, 0.0304432176053524, -0.02300940826535225, 0.0023058573715388775, 0.011812807060778141, -0.005070591811090708, 0.017306221649050713, 0.005316418595612049, -0.019128618761897087, -0.011367040686309338, 0.0018076479900628328, -0.027794839814305305, -0.0016347495838999748, 0.017004674300551414, 0.014605402015149593, 0.018722185865044594, -0.005214810371398926, -0.013222215697169304, 0.0013962973607704043, -0.012429013848304749, -0.0037136266473680735, 0.011635811999440193, -0.006948709953576326, -0.009315204806625843, -0.0017420940566807985, 0.008082792162895203, -0.006014567334204912, 0.01098027266561985, -0.0029515628702938557, -0.003049893770366907, -0.013018998317420483, -0.00015190060366876423, 0.011622700840234756, -0.0054671927355229855, 0.0021272229496389627, 0.023992715403437614, 0.0051263123750686646, 0.006053899880498648, -0.020465917885303497, 0.002572989324107766, -0.0010529590072110295, 0.009433201514184475, -0.0040676174685359, -0.003338330890983343, 0.002813899889588356, -0.001922367257066071, -0.004555993713438511, 0.012586343102157116, 0.011642367579042912, 0.01564115285873413, 0.013962973840534687, 0.027742397040128708, -0.009892079047858715, 0.010232958942651749, -0.01640157774090767, -0.01317632757127285, -0.001296327798627317, -0.00801068264991045, 0.015129833482205868, 0.031098755076527596, -0.013261547312140465, 0.018630409613251686, -0.006384946871548891, 0.014684067107737064, 0.0007727162446826696, 0.0304432176053524, -0.005722852889448404, 0.0008235204732045531, -0.009793748147785664, -0.014880727976560593, 0.017502883449196815, 0.005378694739192724, -0.01610003039240837, -0.00790579617023468, -0.003444855799898505, 0.029971228912472725, -0.008757997304201126, -0.008653110824525356, -0.00443471921607852, 0.00739447632804513, -0.0077550229616463184, 0.012134021148085594, -0.01166858896613121, -0.019102398306131363, -0.015169165097177029, -0.029892563819885254, -0.010200181975960732, 0.04045984894037247, 0.0009988771053031087, -0.0011742337374016643, -0.00040725342114456, 0.010141183622181416, -0.0020403640810400248, 0.02776861935853958, -0.017424218356609344, -0.00049165403470397, 0.01965305022895336, 0.0006538998568430543, 0.016794901341199875, -0.01789620704948902, 0.014002306386828423, 0.013490986078977585, 0.002672959119081497, 0.013136995024979115, 0.0001776100107235834, 0.011052382178604603, 0.002954840660095215, -0.0019240060355514288, -0.02952546253800392, -0.015169165097177029, 0.014972503297030926, -0.006719271652400494, -0.004313444718718529, 0.0058474051766097546, 0.013274658471345901, -0.006758603733032942, 0.009688861668109894, -0.004231502301990986, -0.0008989074267446995, -0.01269778423011303, 0.024477815255522728, 0.008318785578012466, 0.006434112321585417, 0.005526191089302301, 0.002602488500997424, -0.005555690266191959, -0.017175113782286644, -0.009334870614111423, 0.019980819895863533, 0.0002761456707958132, -0.005801517516374588, -1.8872344298870303e-05, 0.018604187294840813, -0.014972503297030926, 0.006060454994440079, -0.01827641949057579, -0.013595872558653355, -0.0269033070653677, -0.013622093945741653, -0.01957438513636589, 0.006699605379253626, 0.008954658173024654, 0.008607222698628902, -0.002105918014422059, -0.012094688601791859, -0.013438543304800987, -0.004418330732733011, -0.03120364248752594, -0.00579496193677187, -0.0016667071031406522, -0.0037464036140590906, 0.004395387135446072, -0.00934798177331686, -0.004611714743077755, 0.005555690266191959, -0.0055884672328829765, -0.017096448689699173, 0.02881748043000698, 0.01119004562497139, -0.006234173197299242, 0.0016494992887601256, -0.010128072462975979, -0.0028155387844890356, 0.017175113782286644, -0.011511259712278843, -0.01585092581808567, -0.010927829891443253, 0.01760776899755001, 0.0009341426193714142, 0.02459581196308136, 0.003533353563398123, 0.010954051278531551, -0.006689772475510836, -0.0002644688938744366, 0.021593444049358368, -0.004598604049533606, 0.01171447616070509, -0.0036021850537508726, -0.0040151746943593025, -0.01391053106635809, 0.015995144844055176, -6.130310794105753e-05, 0.0201643705368042, 0.006558664608746767, -0.0031236419454216957, 0.006578330881893635, 0.02341584302484989, -0.025277571752667427, -0.02434670738875866, 0.019482610747218132, -0.020387252792716026, 0.0005027162260375917, -0.01183902844786644, -0.0015101972967386246, -0.0019879210740327835, 0.023914052173495293, 0.01345165353268385, -0.005575356539338827, 0.00962330773472786, 0.021632777526974678, 0.004939483944326639, -0.01731933280825615, 0.0052639758214354515, -0.011367040686309338, -0.004493717569857836, 0.026300212368369102, 0.02818816341459751, 0.03694615885615349, -0.01294688880443573, -0.00699459807947278, -0.0008104097214527428, 0.023101182654500008, 0.012016024440526962, -0.002178027294576168, 0.008069681003689766, -0.002038725418969989, 0.0263526551425457, 0.006922488566488028, 0.0010324734030291438, -0.007361699361354113, 0.007879574783146381, -0.00848922599107027, -0.0029286190401762724, -0.00540491659194231, 0.012225796468555927, -0.00491326255723834, 0.021724551916122437, -0.013622093945741653, 0.005903125740587711, -0.026195326820015907, -0.0025271016638725996, -0.018853291869163513, -0.009780636988580227, -0.01569359563291073, 0.014723398722708225, 0.008436783216893673, -0.0020518361125141382, 0.012009468860924244, -0.00848922599107027, 0.00029232929227873683, -0.013195994310081005, 0.04434063658118248, 0.01978415809571743, 0.010777056217193604, 0.010062518529593945, -0.0021272229496389627, -0.0056409104727208614, 0.009505311027169228, 0.014251410961151123, -0.009420091286301613, 0.0033121092710644007, -0.01219301950186491, 0.011957026086747646, -0.015431380830705166, 0.0016167223220691085, 0.005722852889448404, -0.0075583611615002155, 0.026785310357809067, 0.03579241409897804, -0.017515994608402252, 0.005339362658560276, 0.0034186341799795628, 0.006948709953576326, -0.00431999983265996, -0.0024467981420457363, -0.008213900029659271, 0.003720181994140148, -0.03836212307214737, 0.01342543214559555, -0.0046871015802025795, 0.004470773972570896, -0.01714889146387577, -0.006968376226723194, 0.023730501532554626, -0.005686798132956028, 0.005827738903462887, 0.02986634336411953, 0.0011103186989203095, -0.02045280672609806, -0.010934385471045971, 0.018420636653900146, 0.0010545979021117091, -0.0017338998150080442, -0.0038873443845659494, -0.0006030955701135099, 0.007637025788426399, 0.009590530768036842, -0.007630470208823681, -0.03070543147623539, 0.014631623402237892, 0.006876600906252861, 0.003536631353199482, 0.002612321637570858, -0.010547617450356483, 0.024202488362789154, -0.002738512819632888, -0.008548224344849586, 0.011216267012059689, 0.007184704300016165, -0.002076418837532401, 0.00796479545533657, -0.01300588808953762, 0.013359878212213516, -0.01623113825917244, 0.009400424547493458, 0.021908102557063103, 0.003444855799898505, 0.02468758635222912, -0.010147739201784134, 0.02668042480945587, 0.019508831202983856, 0.00884321704506874, -0.006719271652400494, 0.0025303794536739588, 0.003995508421212435, -0.01269778423011303, -0.026077330112457275, -0.026785310357809067, -0.029499242082238197, -0.012134021148085594, 0.003516965080052614, 0.013543429784476757, 0.000153027314809151, 0.005473748315125704, -0.0035071319434791803, 0.006463611498475075, 0.0033416084479540586, -0.008535114116966724, 0.003421911969780922, 0.021147677674889565, 0.012101244181394577, -0.01707022823393345, -0.017712654545903206, 0.004713322967290878, 0.0025271016638725996, -0.0014274355489760637, 0.010678725317120552, -0.004329833202064037, 0.014172746799886227, 0.03167562931776047, -0.025657784193754196, -0.008954658173024654, -0.01564115285873413, 0.0103312898427248, 0.012986221350729465, -0.008797328919172287, -0.011727587319910526, 0.009885523468255997, -0.00144546281080693, -0.021095234900712967, -0.004097116645425558, -0.00110867980401963, -0.003533353563398123, -0.024202488362789154, -0.01292722299695015, 0.0050279819406569, -0.02501535601913929, 0.00529019720852375, -0.0038480120711028576, -0.007912351749837399, 0.008731774985790253, 0.013976084999740124, 0.019299058243632317, 0.012461790814995766, 0.017017783597111702, 0.006824157666414976, 0.0022861910983920097, 0.0055524129420518875, 0.0028499544132500887, 0.015614931471645832, 0.02986634336411953, 0.00578185124322772, 0.007643581368029118, -0.014212078414857388, 0.004385553766041994, 0.006103065330535173, -0.022104764357209206, 0.01777820847928524, 0.0011332625290378928, -0.0025746282190084457, -0.007505917921662331, -0.003893899731338024, -0.045363277196884155, -0.013372989371418953, -0.007315811701118946, -0.0010873747523874044, 0.021305007860064507, 0.003412078833207488, -0.011858695186674595, -0.01752910390496254, 0.004110227804630995, -0.02192121371626854, 0.0081352349370718, 0.009682306088507175, -0.010986828245222569, -0.0047460999339818954, 0.0021698330529034138, 0.0036644611973315477, 0.012514233589172363, 0.003161335363984108, -0.024504035711288452, 0.010547617450356483, -0.015300272963941097, -0.010344401001930237, 0.002371411304920912, -0.017096448689699173, -0.01129493210464716, -0.017004674300551414, -0.014802063815295696, 0.007302701007574797, 0.01714889146387577, 0.021305007860064507, -0.006968376226723194, 0.014277632348239422, -0.00491326255723834, 0.0007546889246441424, 0.0165720172226429, 0.0066569955088198185, -0.007689469028264284, -0.0027647344395518303, 0.0005932624917477369, 0.01206846721470356, 0.022747192531824112, -0.0008759635966271162, -0.0268508642911911, -0.022353868931531906, 0.016427800059318542, -0.017253778874874115, 0.014631623402237892, 0.011072048917412758, -0.0062833381816744804, 0.011989803053438663, 0.006929044146090746, -0.0013233687495812774, 0.004998482298105955, 0.005981790367513895, 0.01045584212988615, -0.011091714724898338, 0.006234173197299242, 0.014723398722708225, -0.007322367280721664, -0.025998665019869804, -0.009459422901272774, 0.005378694739192724, 0.00430688913911581, -0.014657844789326191, -0.0055524129420518875, 0.022852078080177307, -0.01573292911052704, -0.02095101587474346, 0.01630980335175991, 0.001123429392464459, -0.011380151845514774, 0.020924795418977737, 0.00016583080287091434, -0.02463514357805252, -0.00628661597147584, 0.02698197215795517, -0.012134021148085594, -0.005539301782846451, -0.00295975711196661, -0.029079696163535118, 0.02220965176820755, 0.011780030094087124, 0.026090439409017563, 0.0027073747478425503, 0.008502337150275707, 0.00970197282731533, 0.021803217008709908, 0.012035690248012543, 0.0040151746943593025, 0.000843186629936099, -0.02873881720006466, 0.017424218356609344, 0.002910591894760728, -0.009905189275741577, -0.014959393069148064, 0.0040217298083007336, 0.0022714415099471807, 0.009275872260332108, 0.016703125089406967, -0.014421851374208927, 0.02601177617907524, -0.04038118198513985, 0.005329529754817486, 0.00338257965631783, 0.0204134751111269, -0.0009488922660239041, -0.003230166854336858, -0.016244249418377876, -0.011983247473835945, -0.010147739201784134, -0.03345869481563568, 0.004624825436621904, -0.007466585841029882, -0.00517547782510519, -0.014028527773916721, -0.011347374878823757, 0.01244212407618761, -0.013045219704508781, 0.011013049632310867, 0.012868224643170834, 0.018394416198134422, -0.0031678907107561827, -0.003638239810243249, 0.025238240137696266, 0.02564467303454876, 0.0030105614569038153, -0.008587556891143322, -0.0062538390047848225, -0.02405826933681965, -0.010023186914622784, -0.010626282542943954, -0.007846797816455364, -0.0009792109485715628, -0.0020420029759407043, -0.013418877497315407, -0.024792473763227463, 0.027244187891483307, -0.008646555244922638, 0.023979606106877327, -0.002371411304920912, -0.004356054589152336, 0.01802731491625309, 0.012619120068848133, -0.00338257965631783, -0.0056409104727208614, -0.0010726251639425755, -0.014657844789326191, 0.009039878845214844, 0.02488424815237522, -0.012488012202084064, -0.021737663075327873, -0.0008841578382998705, 0.007092928513884544, -0.01560182124376297, -0.011032716371119022, -0.0054671927355229855, -0.017830653116106987, -0.011406373232603073, 0.02308807335793972, 0.00962330773472786, -0.0025828224606812, 0.011904582381248474, 0.00031588770798407495, -0.013182883150875568, -0.013792534358799458, -0.009754415601491928, 0.01217335369437933, -0.005614689085632563, 0.018040424212813377, 0.01478895265609026, 0.002751623746007681, 0.0019371168455109, 0.006634051445871592, -0.013241881504654884, 0.0014274355489760637, 0.01777820847928524, -0.004464218392968178, -0.0397256463766098, 0.005716297309845686, 0.005522913299500942, -0.03015477955341339, -0.003841456724330783, 0.002781122922897339, 0.01073116809129715, -0.010547617450356483, -0.0061948406510055065, -0.00909887719899416, 0.01141948439180851, -0.01380564458668232, -0.008810440078377724, -0.010029741562902927, 0.0026287101209163666, -0.017096448689699173, 0.01707022823393345, -0.012842003256082535, -0.0025631561875343323, 0.0017535659717395902, -0.019521942362189293, -0.006870045326650143, 0.03078409656882286, 0.0038676783442497253, 0.016047587618231773, 0.00884977262467146, 0.006653717719018459, -0.01726689003407955, 0.010036297142505646, 0.020269256085157394, 0.014461183920502663, -0.008063126355409622, 0.0029368132818490267, 0.013333656825125217, 0.010691836476325989, -0.010954051278531551, -0.017017783597111702, -0.0031236419454216957, -0.00909887719899416, 0.009026767686009407, 0.02007259428501129, 0.04200692102313042, 0.01726689003407955, 0.0009841275168582797, 0.010737723670899868, 0.021855659782886505, -0.019889043644070625, 0.020518360659480095, -0.005339362658560276, -0.00492637325078249, -0.02748018130660057, -0.01363520510494709, 0.0026090440806001425, 0.0212132316082716, -0.01098027266561985, -0.0042478907853364944, 8.982928557088599e-05, 0.011170378886163235, 0.010357511229813099, -0.02371739037334919, -0.013661426492035389, -0.03311781585216522, -0.0017666767816990614, 0.005831016693264246, 0.0029712291434407234, 0.014684067107737064, 0.006001456640660763, -0.0162704698741436, -0.00356613053008914, -0.033537358045578, -0.028896145522594452, -0.02396649494767189, 0.01819775439798832, 0.008921881206333637, -0.01722755655646324, 0.00041893019806593657, -0.011144157499074936, 0.01815842092037201, 0.023743610829114914, -0.007532139774411917, -0.015182276256382465, 0.002182943746447563, 0.015667375177145004, 0.016073808073997498, -0.01999392919242382, -0.001224218518473208, 0.021029680967330933, 0.0036415173672139645, -0.005411471705883741, 0.01377942319959402, 0.011111380532383919, -0.009924856014549732, -0.01640157774090767, -0.019181061536073685, 0.00025361153529956937, 0.008875994011759758, -0.017201336100697517, -0.0032219726126641035, -0.01192424912005663, -0.01094094105064869, -0.02058391459286213, -0.018591077998280525, -0.003575963666662574, 0.02698197215795517, -0.012632230296730995, -0.0031154477037489414, 0.044576629996299744, 0.01760776899755001, 0.0019830046221613884, 0.015274051576852798, -0.016244249418377876, -0.026103550568223, 0.014474294148385525, 0.004972260911017656, 0.00957742054015398, -0.03136097267270088, -0.012219240888953209, 0.015287162736058235, 0.008109013549983501, -0.0054442486725747585, -0.0015700152143836021, 0.0022484976798295975, 0.0012979665771126747, 0.00098330806940794, 0.0041888924315571785, 0.003979119937866926, 0.03248849883675575, -0.0012496205745264888, -0.012533899396657944, 0.02803083509206772, -0.006057177670300007, -0.012887890450656414, -0.030469438061118126, 0.015405159443616867, 0.0021813050843775272, -0.0002779893693514168, -0.009819969534873962, 0.006591441575437784, 0.009970743209123611, -0.0023746888618916273, 0.00848922599107027, 0.00187975715380162, 0.008548224344849586, 0.0072699240408837795, -0.0036644611973315477, -0.0012012746883556247, 0.010600060224533081, 0.010173960588872433, -0.006634051445871592, -0.013110773637890816, 0.009806858375668526, -0.005064036231487989, 0.006506221368908882, -0.001619180548004806, 0.008987435139715672, -0.0045133838430047035, 0.0026811533607542515, -0.010495174676179886, -0.004582215566188097, 0.018682852387428284, -0.004546160809695721, -0.011373596265912056, -0.004762488417327404, -0.020256144925951958, -0.008292564190924168, 0.0157722607254982, -0.005568801425397396, 0.00301711680367589, 0.016991563141345978, -0.010750834830105305, 0.01714889146387577, -0.02329784445464611, -0.0012602731585502625, 0.007551805581897497, 0.03849323093891144, 0.046490803360939026, -0.00022923368669580668, -0.007073262706398964, 0.00044781487667933106, -0.0392274335026741, 0.004283945541828871, 0.014080971479415894, -0.019849712029099464, -0.002428770763799548, 0.003292442997917533, -0.013766312971711159, 0.025487344712018967, 0.00040602427907288074, -0.0072699240408837795, 0.0032793323043733835, -0.00568024255335331, -0.017096448689699173, -0.013700759038329124, 0.005113201681524515, 0.029971228912472725, 0.0018060090951621532, -0.009538087993860245, 0.00010473254951648414, 0.016834232956171036, -0.005250865127891302, -0.01353031862527132, -0.0214098934084177, 0.0030728376004844904, -0.010541061870753765, 0.0050050378777086735, -0.024608923122286797, -0.019521942362189293, -0.0008022154797799885, 0.00093987857690081, 0.021776994690299034, 0.01585092581808567, 0.0064275567419826984, -0.002477936213836074, 0.0066504399292171, -0.007040485739707947, -0.011530925519764423, 0.0016994840698316693, -0.006922488566488028, 0.007912351749837399, 0.010757389478385448, 0.0045363279059529305, 0.009892079047858715, -0.023350289091467857, 0.01785687357187271, -0.0016060698544606566, 0.00861377827823162, -0.03324892371892929, -0.010383732616901398, -0.01461851317435503, 0.004093839321285486, 0.008417116478085518, 0.015759149566292763, -0.000833763275295496, -0.016257358714938164, -0.02125256508588791, 0.0008546585449948907, 0.004169226158410311, 0.008423672057688236, -0.006725826766341925, 0.012868224643170834, 0.0025238238740712404, 0.0209641270339489, 0.030128559097647667, -0.003657905850559473, -0.00395289808511734, 0.005499969702214003, -0.0033661911729723215, -0.01766021177172661, 0.006191562861204147, -0.004011896904557943, -0.03036455251276493, -0.022576753050088882, -0.023704279214143753, 0.0037857359275221825, 0.010180516168475151, -0.01133426371961832, 0.011124491691589355, 0.004660880193114281, -0.010947496630251408, 0.0029908951837569475, 0.030626768246293068, -0.004070895258337259, 0.00010483498044777662, -0.0012873141095042229, -0.020780576393008232, 0.0054376935586333275, -0.009767526760697365, 0.012520789168775082, 0.0074141426011919975, 0.014028527773916721, 0.0021813050843775272, 0.011675144545733929, -0.0006346434238366783, 0.006407890934497118, -0.0010496813338249922, 0.011694810353219509, 0.01707022823393345, -0.007224036380648613, -0.0015888619236648083, 0.006856934633105993, 0.0017191502265632153, -0.017135782167315483, 0.012219240888953209, -0.0009021851001307368, 0.007584582548588514, 0.007158482447266579, -0.004818209446966648, 0.030128559097647667, 0.025749560445547104, 0.0031547800172120333, -0.01486761774867773, 0.025710226967930794, 0.026378877460956573, 0.011019605211913586, 0.026824643835425377, 0.007800910621881485, 0.023481395095586777, 0.013123884797096252, -0.011399817653000355, 0.008174567483365536, 0.006594719365239143, 0.00144546281080693, -0.02045280672609806, -0.0007030652486719191, 0.005011593457311392, -0.007466585841029882, 0.0009775720536708832, 0.008371229283511639, -0.01831575110554695, -0.013379544951021671, 0.013353323563933372, 0.0021239453926682472, 0.022891411557793617, 0.015024947002530098, -0.008390895090997219, 0.022930743172764778, 0.01303210947662592, -0.019128618761897087, -0.006053899880498648, 0.01192424912005663, -0.022262094542384148, -0.02024303562939167, 0.00982652511447668, 2.7169005988980643e-05, 0.030679211020469666, 0.015719817951321602, -0.022734081372618675, 0.0162704698741436, 0.002009226009249687, -0.004385553766041994, -0.037339482456445694, 0.019128618761897087, -0.008102457970380783, 0.003185918089002371, -0.0026565706357359886, 0.007230591960251331, 0.0028892867267131805, -0.028791259974241257, 0.013582761399447918, -0.017135782167315483, -0.008587556891143322, 0.017293110489845276, -0.03120364248752594, -0.01451362669467926, -0.008816995657980442, 0.0045428830198943615, -0.016362246125936508, 0.03282937780022621, 0.018813960254192352, 0.023730501532554626, 0.002699180506169796, -0.017122671008110046, -0.03445511311292648, -0.016873566433787346, 0.02589377760887146, 0.004847708623856306, 0.026037996634840965, 0.001334840664640069, -0.00982652511447668, -0.0044838846661150455, 0.0009947799844667315, 0.004441274795681238, 0.0201119277626276, -0.004808376077562571, -0.015405159443616867, 0.016834232956171036, -0.01489383913576603, -0.014316964894533157, -0.029394354671239853, -0.0038283460307866335, -0.000544506823644042, -0.00518858851864934, -0.02978767827153206, -0.015916479751467705, -0.012147132307291031, 0.017017783597111702, -0.01899751089513302, 0.004896874073892832], "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2": [-0.0041382270865142345, 0.008987974375486374, -0.008424128405749798, -0.013545729219913483, -0.04030156508088112, -0.037374936044216156, 0.032917868345975876, 0.03020603582262993, -0.0009498120634816587, 0.015680288895964622, 0.0005688803503289819, 0.03694533929228783, 0.030367136001586914, -0.0005483234417624772, -0.028595048934221268, 0.01519699301570654, -0.020875727757811546, 0.0374554842710495, 0.013022158294916153, -0.03125317767262459, 0.058801084756851196, -0.004675223026424646, -0.052545078098773956, 0.0025524101220071316, 0.013612854294478893, -0.013706828467547894, -0.013948476873338223, 0.006729233544319868, -0.031870726495981216, -0.028809847310185432, 0.02573554404079914, -0.00649429764598608, 0.008887287229299545, -0.003342801472172141, 0.002703440375626087, -0.05090723931789398, -0.02280891314148903, -0.024446751922369003, -0.01943926326930523, -0.008236179128289223, 0.01696908101439476, -0.0225672647356987, 0.038180429488420486, -0.003869728883728385, -0.009209484793245792, 0.012807359918951988, 0.0006725038401782513, -0.009048386476933956, 0.0220973938703537, 0.0036582867614924908, 0.00846440251916647, 0.008357003331184387, -0.020607229322195053, 0.021063676103949547, 0.03058193437755108, -0.0225672647356987, 0.009947855025529861, 0.07088349759578705, -0.02133217453956604, -0.051551636308431625, 0.011934740468859673, -0.016364959999918938, 0.026890084147453308, 0.004527549259364605, -0.003926784731447697, -0.011391032487154007, -0.02545361965894699, 0.01867404393851757, -0.030823582783341408, 0.000939743360504508, 0.0037186986301094294, 0.03506585210561752, -0.02114422619342804, 0.031038381159305573, -0.012203238904476166, -0.0008256316650658846, 0.020499831065535545, 0.0297764390707016, 0.03622039407491684, 0.02584294229745865, -0.006521147675812244, -0.029024645686149597, 0.04218105226755142, -0.011337332427501678, 0.045537278056144714, -0.027413656935095787, -0.02569526806473732, -0.028890395537018776, -0.050235994160175323, -0.02431250363588333, 0.003059200244024396, 0.04822225868701935, -0.027091458439826965, -0.028272850438952446, 0.0029165607411414385, -0.018553219735622406, 0.0027688867412507534, 0.0043899440206587315, 0.010988284833729267, 0.010001554153859615, 0.006537928711622953, 0.017787998542189598, -0.046477023512125015, 0.009558532387018204, 0.013210106641054153, -0.020701203495264053, 0.0033914665691554546, 0.018687468022108078, -0.02157382294535637, 0.013418192975223064, 0.005517635960131884, -0.036811091005802155, -0.024581002071499825, -0.005124957766383886, -0.004000621847808361, -0.011330620385706425, -0.022782064974308014, -0.03579079732298851, 0.005799558945000172, -0.02560129389166832, 0.03213922306895256, 0.007437397260218859, 0.02829970046877861, 0.004863171838223934, -0.024487027898430824, 0.01691538095474243, 0.0037153426092118025, 0.04459753632545471, 0.00988072995096445, 0.01114267110824585, 0.014337798580527306, -0.02792380191385746, 0.008437552489340305, 0.012740234844386578, 0.04722881689667702, 0.043684642761945724, 0.03549544885754585, 0.04545672982931137, 0.011632679961621761, 0.012686535716056824, -0.06567463278770447, -0.0391470231115818, -0.026903510093688965, 0.01820417121052742, -0.013210106641054153, 0.0054706488735973835, -0.0132033945992589, 0.00411137705668807, -0.01635153405368328, -0.00769247068092227, -0.04322819411754608, -0.033965010195970535, -0.016848256811499596, -0.0020875728223472834, 0.026004040613770485, 0.00044931480078957975, -0.01178035419434309, 0.049135152250528336, 0.011679667048156261, 0.018284721300005913, 0.03498530387878418, -0.04655757173895836, -0.0028981014620512724, -0.006024426314979792, 0.01692880503833294, 0.016391810029745102, 0.03460940718650818, 0.00950483325868845, -0.038180429488420486, 0.01631125994026661, 0.03815358132123947, -0.013706828467547894, -0.002196650020778179, -0.01977488584816456, 0.00919605977833271, -0.01631125994026661, 0.06336554884910583, 0.0008336026803590357, 0.003956990782171488, -0.023547284305095673, 0.017089903354644775, -0.009820317849516869, 0.014780820347368717, -0.01730470359325409, -0.037616584450006485, -0.0005118245026096702, 0.001949967467226088, 0.021265050396323204, 0.023439884185791016, 0.029561640694737434, 0.024151405319571495, -0.001397868269123137, 0.02365468256175518, 0.03608614578843117, 0.002794058294966817, -0.054639365524053574, 0.015264117158949375, 0.015666864812374115, 0.014512322843074799, 0.040596913546323776, 0.009632369503378868, -0.04422163590788841, -0.004158364608883858, 0.048383358865976334, 0.0062929242849349976, 0.06358034908771515, -0.03471680358052254, 0.012015290558338165, -0.013740390539169312, 0.030313435941934586, 0.02787010371685028, -0.008833587169647217, 0.00855837669223547, -0.015465490520000458, 0.01256571151316166, 0.018700892105698586, 0.004285900853574276, 0.01012237835675478, 0.0132503816857934, -0.004906802903860807, 0.007054787594825029, 0.017949098721146584, 0.03168277442455292, -0.035629697144031525, -0.042449548840522766, -0.013062432408332825, -0.04140240699052811, 0.021842321380972862, -0.017291277647018433, -0.015331241302192211, 0.013411480002105236, -0.031548526138067245, 0.022016843780875206, -0.023829206824302673, -0.00792069360613823, 0.0063264863565564156, 0.02399030514061451, -0.020311880856752396, -0.014216974377632141, -0.035951897501945496, 0.03385761007666588, 0.008430840447545052, 0.010733211413025856, 0.007464247290045023, -0.004410081543028355, 0.006715808995068073, -0.04787321016192436, 0.044248487800359726, 0.019788309931755066, 0.018418969586491585, 0.01839211955666542, 0.0038126730360090733, -0.015519190579652786, 0.0148882195353508, -0.017814848572015762, -0.013492030091583729, 0.003112899838015437, -0.0372675359249115, 0.007195749320089817, -0.008699338883161545, -0.01023649051785469, 0.009652506560087204, -0.029561640694737434, -0.006886976305395365, 0.045483577996492386, -0.016754280775785446, 0.025816092267632484, -0.036999039351940155, 0.020137358456850052, 0.05085353925824165, 0.018043072894215584, 0.00701451301574707, 0.03826098144054413, 0.010458000935614109, 0.016378384083509445, -0.0147942453622818, -0.011881041340529919, 0.01023649051785469, -0.01606961153447628, -0.011411169543862343, 0.012438174337148666, -0.014015601016581059, 0.025963766500353813, 0.03095783106982708, 0.012814071960747242, 0.004272475838661194, -0.019895710051059723, 0.005111532751470804, -0.01730470359325409, -0.040408965200185776, -0.0030759815126657486, -0.020929427817463875, -0.00249535427428782, 0.015277542173862457, -0.0038596601225435734, 0.0008885608986020088, 0.01529096718877554, -0.0468260683119297, -0.01895596645772457, 0.01606961153447628, 0.0007916498580016196, -0.016995929181575775, -0.03170962631702423, -0.020889151841402054, 0.0017737655434757471, -0.006913826335221529, 0.04140240699052811, -0.022526990622282028, 0.02854134887456894, -0.007880419492721558, 0.03342801332473755, -0.029024645686149597, 0.04792691022157669, -0.06486914306879044, -0.01597563736140728, 0.008524814620614052, -0.03893222659826279, -0.01962721161544323, -0.02100997604429722, -0.027896953746676445, 0.007517946884036064, -0.0062694307416677475, -0.029642190784215927, 0.00612846901640296, 0.00924304686486721, -0.028380248695611954, 0.0312800295650959, -0.006685602944344282, -0.00696752592921257, -0.03992566838860512, -0.005051120650023222, -0.030313435941934586, -0.048088010400533676, -0.007296436000615358, -0.0049638585187494755, -0.05826408788561821, -0.049886949360370636, -0.06680233031511307, 0.023359334096312523, -0.010290189646184444, -0.0024517232086509466, 0.028433948755264282, -0.0052457815036177635, -0.008632213808596134, -0.011572267860174179, -0.0073098610155284405, -0.010048541240394115, -0.018553219735622406, -0.012176388874650002, 0.012216663919389248, 0.0007689953781664371, -0.0010765095939859748, 0.0006452344823628664, -0.028514498844742775, 0.010256627574563026, -0.014619722031056881, -0.02569526806473732, -0.017009355127811432, 0.010014979168772697, -0.01730470359325409, -0.0196674857288599, -0.04279859736561775, -0.015116442926228046, 0.003983840811997652, 0.00969278160482645, -0.025990616530179977, 0.040596913546323776, 0.012693247757852077, 0.016942230984568596, 0.02574896812438965, -0.017009355127811432, 0.0057122972793877125, -0.008357003331184387, -0.024473601952195168, 0.009370584040880203, -0.020593805238604546, 0.017694024369120598, -0.00027311290614306927, -0.012767084874212742, -0.0006326486472971737, -0.01612331159412861, -0.0005307032843120396, -0.07002430409193039, -0.033777061849832535, 0.030420834198594093, -0.021251624450087547, 0.012075702659785748, -0.002320830477401614, 0.016566332429647446, -0.020446131005883217, -0.022916313260793686, 0.01284763403236866, 0.001797259203158319, -0.010558688081800938, 0.01464657112956047, -0.019211038947105408, -0.02047298103570938, -0.017103329300880432, 0.005910314619541168, 0.01052512601017952, -0.022634390741586685, -0.0035273937974125147, 0.029695890843868256, 0.01216296385973692, 0.020499831065535545, -0.00817576702684164, -0.017935672774910927, -0.02507772296667099, 0.015854813158512115, 0.04408738762140274, -0.01872774213552475, 8.043143679969944e-06, 0.009095373563468456, 0.057190097868442535, 0.04051636531949043, 0.01872774213552475, -0.007558221463114023, 0.0395229198038578, -0.004910158924758434, -0.023963455110788345, -0.008095217868685722, 0.030447684228420258, -0.010115666314959526, 0.04167090728878975, -0.015223842114210129, 0.010686224326491356, 0.0011083937715739012, 0.03530750051140785, -0.019640635699033737, 0.01294160820543766, 0.01294160820543766, 0.029212594032287598, 0.012713384814560413, 0.012881196103990078, -0.0147942453622818, -0.03133372962474823, 0.01294160820543766, -0.0299643874168396, 0.0033847542945295572, -0.0363277941942215, 0.0194795373827219, 0.06809111684560776, -0.017626900225877762, 0.027601605281233788, 0.026004040613770485, -0.031011531129479408, -0.051551636308431625, 0.017291277647018433, 0.028595048934221268, 0.02735995687544346, -0.005339756142348051, 0.005249137990176678, 0.02208396978676319, 0.005759284365922213, 0.012109264731407166, -0.003430063370615244, 0.018741168081760406, 0.007504521869122982, -0.005843190010637045, -0.0017888685688376427, -0.04559097811579704, 0.009921004995703697, 0.041456107050180435, -0.011793779209256172, 0.016364959999918938, -0.02432592771947384, -0.018177321180701256, -0.01026333961635828, -0.0038596601225435734, 0.010981572791934013, -0.01801622286438942, 0.01154541876167059, -0.04806116223335266, 0.010088816285133362, -0.008403990417718887, -0.03324006497859955, -0.028702447190880775, 0.008068367838859558, -0.010981572791934013, 0.006380185950547457, 0.02024475671350956, -0.02232561819255352, -0.039791420102119446, -0.0220034196972847, 0.00041407442768104374, -0.006198950111865997, -0.015613164752721786, -0.02313111163675785, 0.00265477504581213, -0.007370273116976023, 0.014190124347805977, 0.015801113098859787, 0.0006234190077520907, -0.0038663726300001144, -0.01816389709711075, -0.008383853361010551, -0.00832344125956297, -0.027521055191755295, -0.002236924832686782, 0.007323285564780235, 0.02432592771947384, 0.009498120285570621, -0.011867616325616837, 0.006413748487830162, 0.002013735705986619, 0.01557288970798254, -0.030501384288072586, 0.0038093167822808027, 0.011995152570307255, 0.017573200166225433, -0.005853258538991213, 0.007128624711185694, -0.005514279939234257, 0.013854501768946648, -0.005047764163464308, -0.0015564499190077186, -0.021533546969294548, 0.0007069051498547196, 0.027091458439826965, -0.01895596645772457, 0.00983374286442995, -0.024581002071499825, -0.01839211955666542, 0.039173875004053116, 0.008249604143202305, 0.004185214173048735, -0.04116075858473778, -0.017143603414297104, 0.016714006662368774, -0.00955182034522295, -0.019560087472200394, 0.003997265361249447, -0.03345486521720886, 0.012699960730969906, -0.026621587574481964, 0.006870195269584656, -0.038475777953863144, -0.015801113098859787, 0.03479735553264618, 0.018512943759560585, -0.02280891314148903, 0.05106833949685097, 0.019949408248066902, -0.0036515742540359497, 0.012263651005923748, 0.030125487595796585, -0.015264117158949375, 0.047900062054395676, -0.012169676832854748, 0.019600361585617065, -0.028595048934221268, 0.003435097634792328, -0.02848764881491661, -0.02266124077141285, 0.003253861330449581, -0.024057429283857346, 0.0020422637462615967, -0.01835184544324875, -0.015183568000793457, -0.01225693803280592, -0.004037540405988693, 0.006796358153223991, 0.01711675338447094, 0.010558688081800938, 0.007511234376579523, 0.0009011467336677015, -0.022862613201141357, 0.031306877732276917, -0.03654259070754051, 0.010364026762545109, 0.013377917930483818, -0.0016109886346384883, 0.04542987793684006, 0.010511700995266438, -0.03740178421139717, 0.02166779711842537, -0.00647080410271883, 0.0073971226811409, 0.03200497478246689, -0.017989372834563255, 0.04459753632545471, -0.02484949864447117, 0.011753504164516926, -0.028407098725438118, -0.018902266398072243, 0.014619722031056881, -0.030850432813167572, -0.011109109036624432, -0.02280891314148903, 0.03119947947561741, 0.002191615756601095, 0.012666397728025913, 0.02498374879360199, 0.002924951259046793, -0.008746325969696045, 0.030232885852456093, -0.03076988272368908, 0.004225488752126694, 0.032112374901771545, 0.022365892305970192, 0.021882595494389534, 0.0062761432491242886, 0.018096772953867912, -0.029507940635085106, -0.017479225993156433, -0.016096461564302444, 0.02601746656000614, 0.013975325971841812, -0.009733056649565697, 0.026138290762901306, -0.014257249422371387, -0.004473849665373564, 0.04561782628297806, -0.015559464693069458, 0.00558140454813838, 0.009840455837547779, -0.0021093881223350763, 0.03409925848245621, 0.012015290558338165, 0.01962721161544323, 0.004212064202874899, -0.028326550498604774, 0.027078034356236458, -0.029400542378425598, 0.040408965200185776, -0.00957866944372654, 0.023453310132026672, -0.023238511756062508, 0.01090102270245552, 0.021466422826051712, 0.007329998072236776, -0.02616514079272747, -0.008618788793683052, -0.02797750197350979, 0.014995618723332882, -0.015358091332018375, 0.0018710962031036615, 0.023023711517453194, -0.019935984164476395, 0.017331551760435104, 0.025963766500353813, 0.005091395229101181, 0.0005344790406525135, 0.035951897501945496, -0.008001243695616722, 0.002574225654825568, -0.007323285564780235, -0.007497809361666441, 0.018781442195177078, -0.020835453644394875, -0.0046315924264490604, -0.002641350030899048, -0.005826408974826336, 0.004497343208640814, 0.010484850965440273, -0.015935363247990608, 0.029695890843868256, 0.02412455528974533, 0.0021949720103293657, 0.0011855869088321924, 0.009900867938995361, -0.014780820347368717, 0.0026765905786305666, 0.03869057819247246, 0.024768950417637825, -0.002617856487631798, 0.008142204955220222, 0.018741168081760406, 0.025856368243694305, 0.027896953746676445, -0.007880419492721558, -0.04787321016192436, -0.011706517077982426, -0.022352466359734535, 0.02479580044746399, -0.0017234222032129765, -0.01564001478254795, 0.004269119817763567, 0.006863482762128115, -0.01057211309671402, -0.012861059047281742, -0.020258182659745216, -0.047201965004205704, -0.010202927514910698, 0.006554709747433662, -0.012236800976097584, -0.001416327548213303, 0.01711675338447094, -0.006947388406842947, -0.027709003537893295, 0.006816495675593615, 0.006833276711404324, -0.005792846437543631, -0.0037489046808332205, 0.006658752914518118, -0.0015044284518808126, 0.016203859820961952, -0.01872774213552475, 0.018700892105698586, -0.01972118578851223, -0.025587869808077812, -0.015707138925790787, 0.021681221202015877, -0.028621897101402283, 0.046530719846487045, 0.031736474484205246, -0.012632835656404495, -0.009014823473989964, 0.029239444062113762, -0.017814848572015762, -0.01554604060947895, -0.0005751732969656587, 0.003248827066272497, 0.034206658601760864, -0.005571335554122925, 0.0032169430050998926, 0.006608409341424704, 0.017371827736496925, -0.01135075744241476, 0.01943926326930523, 0.02972274087369442, 0.0017737655434757471, -0.004000621847808361, -0.018459243699908257, -0.027145158499479294, -0.015801113098859787, -0.02522539719939232, -0.007853569462895393, 0.003648218000307679, 0.003987196832895279, 0.0019633923657238483, 0.005098107736557722, -0.0025708694010972977, 0.002960191573947668, -0.007685758173465729, -0.02573554404079914, -0.01682140678167343, 0.003967059310525656, 0.0068030706606805325, -0.027413656935095787, -0.00027793747722171247, -0.024003731086850166, 0.025480469688773155, -0.03533434867858887, -0.005692159757018089, 0.006940675899386406, 0.008826875127851963, -0.04070431366562843, -0.012780509889125824, 0.014257249422371387, 0.032219771295785904, -0.017076479271054268, 0.04639647156000137, 0.011270208284258842, 0.0020875728223472834, -0.017626900225877762, 0.031360577791929245, 0.0018006154568865895, -0.016794556751847267, 0.036757390946149826, 0.004054321441799402, -0.0005835638730786741, -0.023386184126138687, 0.012263651005923748, 0.019694335758686066, -0.032219771295785904, -0.030501384288072586, 0.014257249422371387, 0.049940645694732666, -0.013948476873338223, 0.039281271398067474, 0.03267621994018555, 0.010390876792371273, 0.04094596207141876, -0.0193855632096529, 0.020634079352021217, -0.013505454175174236, -0.0022771996445953846, -0.022728364914655685, -0.010961434803903103, -0.02829970046877861, -0.0657283365726471, 0.019680911675095558, -0.017371827736496925, 0.013075857423245907, -0.036139845848083496, 0.03850262984633446, -0.0006091550458222628, -0.019331863150000572, 0.0007262034923769534, -0.021936295554041862, 0.011041984893381596, -0.017975948750972748, 0.008800025098025799, -0.003641505492851138, -0.00542701780796051, -0.001320675015449524, -0.019586937502026558, -0.01569371484220028, 0.019331863150000572, 0.006484229117631912, -0.020231332629919052, 0.04134870693087578, 0.032783620059490204, 0.011867616325616837, 0.0057861339300870895, -0.017089903354644775, -0.012243513949215412, 0.026728985831141472, 0.005027627106755972, -0.01706305518746376, 0.007477672304958105, -0.008873862214386463, 0.03015233762562275, -0.035575997084379196, 0.014485472813248634, -0.026057740673422813, 0.03332061320543289, 0.03973772004246712, 0.014673421159386635, -0.0063029928132891655, 0.0147942453622818, -0.012720097787678242, -0.0007161347893998027, -0.016364959999918938, 0.03243457153439522, 0.028621897101402283, -0.0013307437766343355, 0.020634079352021217, 0.00988744292408228, 0.015035893768072128, -0.014257249422371387, -0.00973976869136095, 0.04078486189246178, -0.008256317116320133, -0.010699649341404438, -0.027601605281233788, 0.0028410456143319607, 0.0009338699746876955, 0.03299841657280922, 0.01396190095692873, -0.0370795875787735, -0.03219292312860489, 0.0028595048934221268, -0.0018073278479278088, 0.03920072317123413, 0.027319682762026787, -0.009350446052849293, 0.015760838985443115, 0.06503023952245712, 0.01139774452894926, -0.00565188517794013, -0.014351223595440388, 0.017385251820087433, -0.010491563007235527, 0.0191976148635149, -0.018271295353770256, 0.0012199882185086608, -0.012632835656404495, -0.019640635699033737, 0.05002119764685631, 0.01777457445859909, -0.018311571329832077, -0.004829609766602516, -0.021063676103949547, -0.016526058316230774, -0.008826875127851963, 0.02455415204167366, 0.0011881041573360562, 0.01986886002123356, 0.005614966619759798, 0.024970322847366333, 0.019842009991407394, 0.028890395537018776, 0.008860437199473381, 0.0013575935736298561, -0.036247242242097855, 0.025628143921494484, -0.027319682762026787, -0.018271295353770256, 0.0031783462036401033, 0.022634390741586685, 0.03200497478246689, 0.0382072813808918, -0.03584449738264084, 0.002072469796985388, 0.014713696204125881, -0.01653948239982128, 0.010773486457765102, -0.030984681099653244, 0.006591628305613995, -0.0003897417918778956, -0.02915889397263527, -0.022151093930006027, -0.023198235780000687, -0.005517635960131884, 0.02389633096754551, 0.0132503816857934, 0.011800491251051426, 0.04338929429650307, 0.014378073625266552, -0.020983126014471054, -0.020365580916404724, -0.025950342416763306, 0.028138602152466774, -0.025091147050261497, 0.009518257342278957, -0.009545107372105122, 0.014431772753596306, 0.04478548467159271, 0.02475552447140217, 0.011572267860174179, -0.021842321380972862, 0.0018576713046059012, 0.02423195354640484, 0.008940987288951874, 0.004306038375943899, -0.0004795208224095404, -0.01495534460991621, -0.019224464893341064, 0.011229933239519596, 0.019600361585617065, 0.03963031992316246, 0.002601075451821089, -0.014592872001230717, -0.02161409705877304, -0.02185574546456337, -0.01396190095692873, 0.0019013021374121308, 0.033723361790180206, -0.035763949155807495, -0.0015044284518808126, -0.0014624756295233965, -0.018311571329832077, 0.04099966213107109, -0.005044408142566681, 0.007524659391492605, -0.0008453495102003217, -0.010196215473115444, -0.03119947947561741, -0.008981261402368546, 0.020137358456850052, 0.0382072813808918, -0.02189601957798004, -0.0017603406449779868, -0.021654371172189713, -0.009296746924519539, 0.02745393104851246, 0.009780043736100197, 0.028595048934221268, 0.03511955216526985, 0.023345910012722015, -0.028944095596671104, 0.007450822275131941, 0.009927717037498951, 0.015411791391670704, 0.004581248853355646, 0.01758662611246109, -0.003124646609649062, 0.011270208284258842, -0.024205103516578674, -0.012934896163642406, -0.01696908101439476, 0.011619255878031254, -0.014055876061320305, 0.004470493644475937, -0.04341614246368408, 0.00272525567561388, -0.01318325661122799, -0.015089593827724457, 0.010927872732281685, 0.00164455093909055, 0.023359334096312523, 0.00959880743175745, 0.009276609867811203, -0.018459243699908257, -0.016002487391233444, -0.004292613361030817, 0.003943565767258406, -0.013465180061757565, 0.016177011653780937, 0.012995308265089989, -0.002643028274178505, -0.004500699229538441, 0.00860536377876997, 0.01953323744237423, 0.003034028457477689, 0.009780043736100197, 0.006319774314761162, 0.018244445323944092, 0.01962721161544323, -0.027427081018686295, -0.011156096123158932, 0.001160415238700807, 0.027628455311059952, -0.02702433429658413, -0.017291277647018433, -0.01504931878298521, 0.009538395330309868, -0.025426769629120827, 0.00028590852161869407, 0.004893377888947725, 0.01592193730175495, 0.014163275249302387, 2.5066814487217925e-05, 0.00642381701618433, 0.015103017911314964, 0.004604742396622896, 0.0023745300713926554, -0.005732434336096048, -0.0014146494213491678, -0.009236334823071957, 0.005272631533443928, 0.0006834116065874696, 0.04247640073299408, 0.030850432813167572, -0.002231890568509698, -0.04172460362315178, -0.004000621847808361, 0.029803289100527763, -0.0023577490355819464, -0.01538494136184454, -0.012377762235701084, -0.003624724457040429, -0.01386792678385973, 0.012169676832854748, 0.014257249422371387, -0.010639237239956856, 0.0376434326171875, 0.00558140454813838, -0.00538003072142601, -0.019372137263417244, 0.0027789552696049213, -0.0024416546802967787, 0.005682091228663921, -0.03455570712685585, 0.02655446156859398, -0.059660278260707855, -0.007215886376798153, 0.0011553808581084013, 0.009263184852898121, -0.019090214744210243, -0.026863235980272293, 0.013800802640616894, 0.012377762235701084, -0.01574741303920746, -0.000434631307143718, 0.010498275980353355, -0.02792380191385746, 0.035441748797893524, 0.02768215537071228, -0.006933963391929865, 0.00018039716815110296, 0.006108331959694624, -0.003799248253926635, -0.0017485938733443618, -0.023882906883955002, -0.026984060183167458, -0.019372137263417244, 0.025426769629120827, -0.002819230081513524, -0.005128313787281513, 0.05751229450106621, -0.018647193908691406, 0.023251935839653015, -0.007638771086931229, 0.008779888041317463, 0.020365580916404724, 0.0008893999620340765, -0.012887909077107906, -0.014673421159386635, 0.019184188917279243, -0.010894310660660267, 0.03836837783455849, 0.026044316589832306, 0.014700271189212799, 0.009464558213949203, 0.003980484325438738, 0.009229621849954128, -0.019318439066410065, -0.018700892105698586, -0.014123000204563141, -0.008336866274476051, 0.01393505185842514, -0.00499070854857564, 0.025574443861842155, 0.017130179330706596, 0.028272850438952446, -0.013612854294478893, 0.00876646302640438, -0.017841698601841927, -0.005927095655351877, 0.024903198704123497, -0.0023577490355819464, -0.03307896479964256, -0.009034961462020874, 0.004044252913445234, 0.05200808122754097, -0.0018241090001538396, -0.003980484325438738, 0.012861059047281742, 3.615809328039177e-05, 0.005836477503180504, 0.0027487492188811302, 0.028246000409126282, 0.00036876535159535706, 0.006954100914299488, -0.0022402810864150524, 0.0074910968542099, 0.006907113827764988, 0.021399298682808876, 0.022339042276144028, 0.012451599352061749, 0.001127692055888474, -0.0035676686093211174, 0.0015245657414197922, 0.0017754436703398824, -0.02526567131280899, -0.03028658591210842, 0.011652817949652672, 0.010303614661097527, 0.00846440251916647, -0.0027755992487072945, 8.003813491086476e-06, 0.004561111330986023, 0.017331551760435104, 0.004759128671139479, 0.00019612947653513402, 0.013062432408332825, 0.018405545502901077, -0.005937164183706045, -0.013149694539606571, 0.018808292225003242, 0.01402902603149414, 0.0006326486472971737, -6.408294575521722e-05, -0.009330308996140957, 0.008860437199473381, -0.011310482397675514, -0.007336710579693317, 0.006477516610175371, 0.009343734011054039, -0.001141955959610641, 0.025332795456051826, 0.03855632618069649, -0.028219150379300117, 0.002349358517676592, -0.029615340754389763, -0.013471892103552818, -0.01002840418368578, -0.016767706722021103, -0.013948476873338223, 0.014257249422371387, 0.014337798580527306, 0.00841741543263197, -0.002871251665055752, 0.01896939054131508, 0.004416793584823608, 0.011216508224606514, -0.017975948750972748, -0.054585665464401245, -0.035253800451755524, -0.0009347090381197631, -0.018029646947979927, -0.03195127472281456, -0.019358713179826736, 0.02479580044746399, -0.008108642883598804, 0.005547842010855675, 0.0018878772389143705, 0.006641971878707409, -0.001160415238700807, 0.0054706488735973835, 0.0265947375446558, -0.0272525567561388, -0.006373473908752203, -0.03364281356334686, -0.0027470712084323168, -0.013881351798772812, -0.0024517232086509466, 0.004054321441799402, 0.003765685949474573, 0.006688958965241909, -0.003195127472281456, -0.015438640490174294, -0.018244445323944092, -0.014485472813248634, -0.012203238904476166, 0.007497809361666441, 0.021265050396323204, 0.013304080814123154, 0.006933963391929865, -0.0033209859393537045, -0.0005411914899013937, 0.04014046490192413, -0.004658441990613937, 0.009921004995703697, -0.0057861339300870895, -0.007766307797282934, 0.004745704121887684, -0.01768060028553009, 0.03740178421139717, -0.014941919595003128, -0.03452885523438454, -0.0012183100916445255, -0.01674085669219494, -0.020446131005883217, 0.001832499518059194, 0.011807204224169254, -0.003136393381282687, 0.00948469527065754, 0.010431150905787945, -0.00647080410271883, 0.007001088000833988, -0.012042139656841755, 0.03407241031527519, -0.015948787331581116, 0.0005823052488267422, -0.003799248253926635, -0.016364959999918938, -0.0010488206753507257, -0.017385251820087433, -0.012243513949215412, -0.0038563041016459465, 0.009384009055793285, -0.010894310660660267, -0.017908822745084763, -0.0024852855131030083, -0.026675285771489143, -0.01953323744237423, 0.02526567131280899, -0.016673732548952103, 0.007564933970570564, 0.002513813553377986, 0.0036582867614924908, -0.04038211330771446, -0.004490630701184273, -0.026755835860967636, -0.031172629445791245, 0.012686535716056824, 0.001268653548322618, 0.00024185805523302406, 0.017975948750972748, -0.014257249422371387, 0.003070947015658021, 0.010317039676010609, -0.019613785669207573, -0.017237577587366104, 0.0047121415846049786, 0.013988750986754894, 0.005145094823092222, -0.04035526514053345, -0.01323024369776249, 0.005138382315635681, 0.0022889464162290096, -0.004235557746142149, -0.011323907412588596, 0.009967992082238197, -0.0009061811142601073, 0.0015128189697861671, -0.032407719641923904, -0.012169676832854748, -0.010538550093770027, -0.004749060142785311, -0.0118474792689085, 0.004262407310307026, 0.015331241302192211, -0.00983374286442995, 0.012632835656404495, 0.009994842112064362, -0.0031330373603850603, -0.031924422830343246, 0.001106715644709766, 0.022876039147377014, -0.030071787536144257, 0.0005940520786680281, 0.000954007322434336, -0.034018710255622864, -0.02948109246790409, -0.004326175898313522, 0.01914391480386257, 0.0320318229496479, -0.007356848102062941, -0.012854347005486488, -0.014753970317542553, 0.010270052589476109, 0.015223842114210129, 0.0028796421829611063, -0.01588166318833828, -0.01833842135965824, 0.02114422619342804, -0.0049537899903953075, -0.007887131534516811, 0.008001243695616722, 0.0014146494213491678, -0.004866528324782848, 0.018942540511488914, -0.018499519675970078, 0.019184188917279243, 0.027480781078338623, -0.02208396978676319, 0.031360577791929245, -0.013270518742501736, -0.004829609766602516, -0.004641660954803228, -0.010451288893818855, -0.007296436000615358, -0.018311571329832077, -0.007820007391273975, -0.028568198904395103, -0.006880263797938824, 0.013055720366537571, 0.03243457153439522, -0.007168899290263653, -0.0031112218275666237, 0.02080860361456871, -0.011115821078419685, -0.007632058579474688, 0.01621728576719761, -0.006611765827983618, 0.011203083209693432, -0.007054787594825029, 0.004675223026424646, 0.003102831309661269, -0.00019854176207445562, 0.004483918193727732, -0.010303614661097527, 0.03460940718650818, 0.019130490720272064, 0.008450977504253387, 0.0020422637462615967, 0.009229621849954128, -0.014874794520437717, -0.002636315766721964, 0.01843239553272724, 0.00921619776636362, 0.0002307405520696193, 0.012176388874650002, 0.013908201828598976, -0.04416793957352638, -0.03009863756597042, -0.03949607163667679, -0.00026786880334839225, 0.026205414906144142, 0.007954256609082222, 0.005823052488267422, 0.001689020893536508, -0.003524037543684244, 0.020311880856752396, -0.01246502436697483, -0.02166779711842537, -0.006688958965241909, 0.035253800451755524, -0.015371516346931458, -0.0034082478377968073, 0.02393660508096218, -0.009726343676447868, 0.017720874398946762, 0.029132043942809105, 0.02066092938184738, -0.0382072813808918, -0.025037448853254318, -0.0310920812189579, -0.037616584450006485, 0.00778644485399127, 0.008471115492284298, 0.006873551290482283, -0.004483918193727732, 0.001136921695433557, -0.013129557482898235, 0.0073501355946063995, 0.0220973938703537, 0.01557288970798254, 0.007934118621051311, 0.010377451777458191, 0.008551664650440216, -0.0018190746195614338, -0.0005911153275519609, 0.027655305340886116, -0.010625812225043774, 0.014485472813248634, 0.004843034315854311, -0.013095995411276817, -0.007960968650877476, 0.015626588836312294, -0.00011578980775084347, -0.020607229322195053, 0.0011738401371985674, 0.019922560080885887, 0.008437552489340305, -0.012008577585220337, 0.004322819411754608, 0.028407098725438118, -0.009068523533642292, 0.00012722195242531598, -0.024956898763775826, -0.03509270027279854, -0.036488890647888184, -0.01867404393851757, 0.00026367351529188454, 0.021546972915530205, -0.02142614871263504, 0.021936295554041862, 0.049940645694732666, -0.016485784202814102, 0.017895398661494255, -0.03205867484211922, -0.009867304936051369, 0.008793313056230545, -0.043201345950365067, -0.005920383147895336, -0.00076605862705037, 0.006541285198181868, -0.010753349401056767, 0.0073971226811409, 0.010800336487591267, -0.03286416828632355, 0.01631125994026661, 0.0005185369518585503, -0.01977488584816456, 0.006460735574364662, -0.0013475248124450445, 0.0051719448529183865, -0.004782622680068016, 0.007833432406187057, -0.01573398895561695, -0.016002487391233444, -0.004514124244451523, 0.01835184544324875, 0.008477827534079552, 0.016942230984568596, 0.006994375493377447, -0.0012946643400937319, -0.04736306518316269, 0.0038563041016459465, -0.03546860069036484, 0.006933963391929865, -0.010880885645747185, 0.013035583309829235, -0.004628235939890146, 0.019801735877990723, 0.003282389370724559, 0.035951897501945496, 0.010914447717368603, 0.002377886325120926, -0.0009875695686787367, -0.002131203655153513, -0.012760371901094913, -0.016244135797023773, 0.019023090600967407, -0.010041829198598862, -0.023493584245443344, -0.0022587403655052185, -0.0001886828540591523, 0.022245068103075027, -0.015599739737808704, -0.0033495137467980385, -0.030367136001586914, -0.008430840447545052, 0.010793623514473438, -0.018848566338419914, -0.0007291401852853596, 0.019935984164476395, -0.02217794395983219, 0.0037186986301094294, 0.0008935952791944146, 0.0118474792689085, -0.016391810029745102, 0.001914727152325213, 0.015452065505087376, -0.0068433452397584915, 0.041080210357904434, -0.027480781078338623, 0.002025482477620244, -0.026608161628246307, 0.0019751391373574734, -0.027413656935095787, -0.019224464893341064, -0.02787010371685028, 0.005088039208203554, -0.013411480002105236, -0.01678113080561161, -0.013089282438158989, 0.016284409910440445, -0.0004159623058512807, 0.013827652670443058, 0.02498374879360199, 0.01163939293473959, 0.005541129503399134, 0.024299077689647675, -0.012861059047281742, -0.008236179128289223, 0.02607116661965847, 0.02037900686264038, -0.021882595494389534, -0.024876348674297333, 0.028756147250533104, 0.022674664855003357, -0.030474534258246422, -0.003294136142358184, 0.011075546965003014, -0.007524659391492605, 0.01644550822675228, 0.015814539045095444, -0.026393363252282143, -0.01196830254048109, -0.005564623046666384, -0.006860126741230488, 0.005027627106755972, 0.0034804067108780146, 0.0012627801625058055, 0.04057006165385246, -0.03683793917298317, -0.010753349401056767, 0.010585538111627102, 0.01125678326934576, -0.031172629445791245, 0.01972118578851223, -0.01445862278342247, 0.008860437199473381, 0.002025482477620244, 0.02787010371685028, 0.002262096619233489, -0.0019130490254610777, -0.0004929457209073007, -0.006198950111865997, 0.025158273056149483, -0.008538239635527134, 0.01601591147482395, 0.0023308992385864258, 0.025158273056149483, 0.022070543840527534, -0.025185121223330498, -0.0034434881526976824, 0.01692880503833294, 0.01692880503833294, -0.0023510365281254053, -0.0007748687639832497, -0.02309083752334118, -0.04483918473124504, 0.008283166214823723, -0.011820629239082336, 0.008108642883598804, -0.007820007391273975, -0.0030138911679387093, -0.010001554153859615, -0.007994530722498894, -0.0032270115334540606, 0.028756147250533104, -0.007021225523203611, -0.002241959096863866, 0.012290501035749912, -0.027333106845617294, 0.01876801811158657, -0.02934684231877327, -0.004816184751689434, -0.00692053884267807, -0.00010236490197712556, -0.02147984877228737, -0.006467448081821203, -0.005943876691162586, 0.002436620183289051, 0.015250692144036293, 0.004822897259145975, 0.006735946051776409, -0.015626588836312294, 0.00025486343656666577, 0.007779732346534729, -0.011907890439033508, 0.014928494580090046, 0.008873862214386463, 0.010719786398112774, -0.000991764827631414, -0.02792380191385746, 0.018378695473074913, -0.0063097053207457066, 0.006564778741449118, -0.0009363871067762375, 0.002805805066600442, -0.003446844406425953, -0.0027286119293421507, 0.0015681966906413436, 0.04792691022157669, -0.016660306602716446, 0.003428385127335787, -0.004426862578839064, 0.010431150905787945, -0.03901277482509613, -0.001491842558607459, 0.008410703390836716, 0.001188943162560463, -0.012176388874650002, 0.006752727087587118, -0.029642190784215927, 0.007054787594825029, 0.010746636427938938, 0.012082414701581001, -0.000860032974742353, 0.016190435737371445, -0.017814848572015762, -0.009122222661972046, 0.018002796918153763, 0.014257249422371387, 0.008336866274476051, -0.025775818154215813, 0.001931508188135922, 0.0012426427565515041, 0.006856770254671574, -0.0010706362081691623, 0.01225693803280592, -0.002783989766612649, 0.008491252548992634, -0.0002659809251781553, -0.0031514964066445827, -0.004598029889166355, -0.0017821561777964234, -0.012921471148729324, 0.019707761704921722, 0.019600361585617065, 0.011156096123158932, -0.026527613401412964, 0.007833432406187057, -0.004796047229319811, -0.007142049726098776, 0.012270363047719002, 0.014592872001230717, -0.013478605076670647, -0.008424128405749798, -0.0193855632096529, -0.006339911371469498, 0.0019415769493207335, -0.007236023899167776, -0.015116442926228046, -0.017613476142287254, 0.0010731533402577043, 0.03407241031527519, 0.0031665994320064783, -0.01839211955666542, -0.011364182457327843, -0.012713384814560413, 0.0036582867614924908, 0.010974859818816185, -0.00969278160482645, -0.02829970046877861, -0.02370838262140751, -0.02966904081404209, -0.021466422826051712, -0.02582951821386814, -0.016606608405709267, -0.011773642152547836, 0.005692159757018089, -0.03289101645350456, -0.020889151841402054, 0.020916001871228218, 0.00851138960570097, -0.016083035618066788, -0.006101619452238083, 0.011491718702018261, 0.014659996144473553, 0.019519811496138573, 0.024540726095438004, -0.010310327634215355, 0.010746636427938938, -0.0073501355946063995, 0.001132726320065558, -0.007189036812633276, -0.008591939695179462, 0.0031968054827302694, 0.006772864609956741, -0.029803289100527763, 0.006349980365484953, 0.0005386742996051908, -0.0019449330866336823, 0.007887131534516811, -0.00860536377876997, 0.02039243094623089, -0.0039032911881804466, 0.0052122194319963455, 0.006457379553467035, -0.03753603622317314, 0.010632525198161602, -0.018324995413422585, 0.0022117530461400747, 0.0148882195353508, -0.010941297747194767, 0.006141894031316042, 0.000294928380753845, 0.009410858154296875, 0.003624724457040429, -0.01128363236784935, -0.000693060748744756, 0.01135075744241476, 0.0001679161941865459, -0.011021846905350685, -0.0015874950913712382, -0.029937539249658585, -0.019412413239479065, 0.007860282436013222, 0.012297213077545166, -0.003371329279616475, -0.011719942092895508, -0.02526567131280899, -0.009377296082675457, -0.003782466985285282, -0.02966904081404209, -0.010310327634215355, -0.01182734128087759, -0.0010739924618974328, -0.02593691647052765, -0.0023862768430262804, 0.002671556081622839, -0.00855837669223547, -0.0023057274520397186, 0.005010846070945263, -0.0134383300319314, 0.005074614193290472, 0.004890021868050098, -0.004745704121887684, 0.011659529991447926, -0.01816389709711075, 0.02039243094623089, -0.007833432406187057, 0.02664843760430813, 0.010793623514473438, -0.000776546832639724, 0.016901955008506775, -0.011860903352499008, -0.02797750197350979, -0.018606917932629585, -0.031038381159305573, 0.011344044469296932, -0.0010815439745783806, 0.019935984164476395, -0.021157650277018547, -0.005148451309651136, -0.004030827898532152, -0.004322819411754608, -0.012746947817504406, -0.012518724426627159, -0.011773642152547836, -0.004759128671139479, 0.006886976305395365, 0.019398987293243408, 0.01396190095692873, -0.02835340052843094, -0.017787998542189598, -0.017143603414297104, 0.018096772953867912, 0.0012233444722369313, 0.0035609561018645763, 0.005030983127653599, 0.014901644550263882, -0.001106715644709766, 0.01934528909623623, 0.004900090396404266, -0.02607116661965847, -0.008444265462458134, 0.004903446417301893, -0.03262251988053322, 0.006074769422411919, 0.0004434413858689368, 0.021654371172189713, 0.011384319514036179, 0.0011688057566061616, 0.028084902092814445, 0.007497809361666441, -0.010632525198161602, -0.023345910012722015, 0.011297057382762432, -0.018942540511488914, -0.01061910018324852, 0.02891724556684494, -0.011008421890437603, 0.019640635699033737, 0.013592716306447983, 0.013223531655967236, -0.015948787331581116, -0.012639548629522324, 0.0194795373827219, 0.016982505097985268, -0.005292769055813551, -0.010088816285133362, -0.014069301076233387, -0.002943410538136959, 0.004769197665154934, -0.0009472948731854558, 0.008565089665353298, -0.005685447249561548, -0.007329998072236776, -0.0299643874168396, -0.0012627801625058055, -0.02592349238693714, -0.022956587374210358, -0.01886199228465557, 0.011417881585657597, 0.005621679127216339, -0.0024970322847366333, 0.026245689019560814, 0.01116280909627676, 0.003624724457040429, 0.03251511976122856, 0.022030269727110863, 0.010632525198161602, 0.007209173869341612, 0.01644550822675228, -0.0033881105482578278, -0.013176544569432735, 0.0023409677669405937, 0.01734497770667076, 0.013136269524693489, 0.01286777202039957, -0.021654371172189713, 0.024688400328159332, 0.004977283533662558, -0.010612387210130692, 0.015170142985880375, 0.014149850234389305, 0.020889151841402054, 0.023668108507990837, 0.004400012549012899, 0.008330153301358223, -0.015371516346931458, -0.01256571151316166, 0.02346673421561718, 0.0014649927616119385, -0.013236956670880318, -0.0073971226811409, -0.027239132672548294, -0.0019164051627740264, 0.004386587534099817, -0.0075917840003967285, -1.9508064724504948e-05, -0.008021380752325058, -0.0012946643400937319, -0.01187432836741209, 0.011431306600570679, 0.004785978700965643, -0.016378384083509445, -0.01825787127017975, 0.0034736942034214735, -0.00306423450820148, -0.028648747131228447, -0.00983374286442995, -0.004587961360812187, 0.018808292225003242, 0.008940987288951874, 0.022339042276144028, 0.015089593827724457, -0.03597874566912651, 0.030743032693862915, -0.017519501969218254, 0.0017804780509322882, -0.02039243094623089, -0.013559154234826565, -0.0029383760411292315, 0.001007706974633038, -0.0015186923556029797, 0.009330308996140957, -0.0006099941092543304, -0.009900867938995361, -0.011263495311141014, 0.024258803576231003, 0.0015421860152855515, 0.010491563007235527, 0.00510817626491189, -0.03740178421139717, -0.01706305518746376, -0.009001398459076881, 0.0014347867108881474, 0.004782622680068016, 0.009827030822634697, -0.010256627574563026, 0.0009212841396220028, -0.009142360650002956, -0.011250070296227932, -0.0003251344314776361, -0.011693092063069344, 0.0022335685789585114, 0.015210417099297047, -0.018083347007632256, 0.010981572791934013, 0.004020758904516697, 0.005682091228663921, 0.0026866591069847345, -0.0025389851070940495, -0.017479225993156433, 0.024943474680185318, 0.013881351798772812, 0.029373692348599434, 0.003594518406316638, -0.00660169729962945, 0.010639237239956856, 0.006782933138310909, 0.009665931575000286, -0.02929314225912094, 0.005420305300503969, -0.01625755988061428, 0.006514435168355703, 0.011941453441977501, 0.022151093930006027, -0.011021846905350685, 0.004255694802850485, 0.005185369402170181, -0.004205351695418358, 0.0033092391677200794, 0.016109885647892952, 0.0024483671877533197, -0.007021225523203611, 0.025292521342635155, 0.019237888976931572, 0.022030269727110863, 0.017626900225877762, -0.01668715663254261, -0.00041134748607873917, -0.024003731086850166, -0.0010488206753507257, 0.0038965786807239056, -0.011652817949652672, 0.005346468649804592, 0.006880263797938824, 0.005520992446690798, -0.011276920326054096, -0.01882171630859375, -0.015962211415171623, 0.0073165735229849815, 3.253966133343056e-05, 0.008692625910043716, 0.017519501969218254, -0.008524814620614052, 0.0026933716144412756, 0.02915889397263527, 0.0029585135634988546, -0.000764800061006099, 0.015814539045095444, 0.021775195375084877, 0.010082104243338108, -0.014498897828161716, -0.0031045093201100826, 0.02612486481666565, -0.005088039208203554, -0.003936853259801865, 0.02597719058394432, 0.0017435596091672778, 0.017130179330706596, -0.010585538111627102, -0.02318481169641018, 0.0037019175942987204, -0.003728767391294241, 0.0014901644317433238, 0.0021765127312391996, -0.04159035533666611, 0.010531838051974773, -0.003705273848026991, -0.021399298682808876, -0.006198950111865997, -0.011464868672192097, -0.0039133597165346146, 0.0026379937771707773, -0.004232201259583235, -0.006333198864012957, -0.009363871067762375, -0.014042451046407223, -0.012350913137197495, -0.0035911621525883675, -0.012022002600133419, -0.004020758904516697, -0.0035173252690583467, 0.011605830863118172, 0.01745237596333027, 0.0073098610155284405, -0.004225488752126694, -0.031736474484205246, -0.002960191573947668, 0.018472669646143913, -0.0001714821846690029, -0.00998141709715128, -0.013700115494430065, 0.00408788351342082, -0.021882595494389534, 0.018029646947979927, 0.00759849650785327, -0.012310638092458248, 0.010444575920701027, -0.0017368471017107368, 0.0010320396395400167, 0.017881974577903748, 0.011807204224169254, -0.012310638092458248, 0.013988750986754894, 0.019855434074997902, 0.03224662318825722, -0.006574847269803286, 0.010343889705836773, 0.02929314225912094, -0.005329687148332596, -0.00784685742110014, 0.009706206619739532, -0.0005235712742432952, -0.01396190095692873, -0.011062121950089931, 0.006420460995286703, 0.032917868345975876, 0.010162653401494026, -0.003206874243915081, 0.01154541876167059, 0.015452065505087376, 0.005863327533006668, 0.009034961462020874, 0.02399030514061451, 7.860911136958748e-05, 0.009652506560087204, 0.010531838051974773, -0.009491408243775368, -0.027709003537893295, -0.01644550822675228, 0.017412101849913597, -0.03640834242105484, -0.011102396994829178, 0.017506076022982597, -0.017949098721146584, -0.005158519838005304, 0.014834520407021046, -0.0007878741016611457, 0.00012774635979440063, 0.004859815817326307, -0.0010379130253568292, 0.03691848739981651, 0.02966904081404209, 0.0032102304976433516, 0.022339042276144028, -0.006433886010199785, -0.005776065401732922, 0.0018593493150547147, 0.026098014786839485, -0.0043731629848480225, -0.023574134334921837, 0.00408788351342082, -0.012773796916007996, 0.0018576713046059012, -0.01538494136184454, -0.0057861339300870895, -0.016512634232640266, 0.021077100187540054, 0.01052512601017952, 0.010847323574125767, -0.005064545664936304, -0.020781753584742546, -0.012746947817504406, 0.0012543895281851292, 0.008800025098025799, -0.00924304686486721, 0.0013634669594466686, -0.006356692407280207, 0.016888530924916267, 0.022258492186665535, 0.005057833157479763, 0.01949296146631241, -0.0070346505381166935, -0.009001398459076881, 0.001216632081195712, -0.011934740468859673, 0.006685602944344282, -0.01672743260860443, -0.0132973687723279, -0.011297057382762432, 0.017318127676844597, 0.027333106845617294, 0.008739612996578217, -0.008216042071580887, 0.004725566599518061, 0.023117687553167343, -0.004957146011292934, -0.0033881105482578278, 0.019224464893341064, 0.001221666345372796, 0.014485472813248634, -0.0015673576854169369, -0.002971938345581293, -0.03015233762562275, 0.028246000409126282, -0.003433419391512871, 0.006427173502743244, 0.023923180997371674, -0.001991920405998826, 0.007605208549648523, -0.0018761304672807455, -0.0016747568733990192, 0.01436464861035347, -0.011129246093332767, -0.005621679127216339, 0.014767395332455635, 0.006772864609956741, 0.021251624450087547, -0.0059774392284452915, -0.007571646478027105, 0.015519190579652786, 0.010726499371230602, 0.019801735877990723, 0.0012728488072752953, 0.009229621849954128, 0.04132185876369476, 0.0009733056067489088, 0.018137047067284584, -0.00916921067982912, 0.006172100082039833, -0.004400012549012899, 0.033723361790180206, 0.019211038947105408, 0.020217906683683395, 0.0036079431883990765, -0.009343734011054039, -0.014686846174299717, -0.01782827451825142, -0.0028981014620512724, -0.013673265464603901, -0.02067435346543789, -0.0031095435842871666, -0.003305882913991809, 0.004420150071382523, 0.02005680836737156, 0.007121912203729153, -0.01012237835675478, -0.0039032911881804466, 0.0035475310869514942, -0.023171385750174522, -0.022258492186665535, -0.01895596645772457, 0.013377917930483818, -0.003211908508092165, -0.016244135797023773, -0.0067862896248698235, -0.013854501768946648, -0.015613164752721786, 0.011766929179430008, 0.011250070296227932, 0.011881041340529919, 0.017506076022982597, -0.028433948755264282, 0.002659809309989214, 0.001656297710724175, -0.00101022410672158, 0.008142204955220222, 0.007658908609300852, -0.020607229322195053, -0.018660617992281914, 0.018942540511488914, -0.030823582783341408, -0.0008969514747150242, 0.010377451777458191, 0.024017155170440674, 0.0005458063096739352, -0.0051887258887290955, 0.0016101495129987597, 0.00789384450763464, -0.011357469484210014, -0.007954256609082222, 0.008330153301358223, -0.009048386476933956, -0.024111129343509674, 0.004248982295393944, 0.0015136580914258957, 0.007611921057105064, 0.0030105349142104387, -0.011860903352499008, -0.004299325868487358, -0.0006787967868149281, 0.0018945897463709116, 0.006537928711622953, -0.010364026762545109, 0.0009263184620067477, 0.02037900686264038, -0.009471270255744457, 0.025198547169566154, -0.009954567067325115, -0.004218776244670153, 0.00630634929984808, 0.01216296385973692, -0.0010471425484865904, -0.003876441391184926, -0.0008994686650112271, -0.013062432408332825, -0.02028503082692623, 0.028246000409126282, 0.011766929179430008, 0.022298768162727356, -0.0008130458300001919, 0.026769261807203293, -0.009343734011054039, -0.0012384474975988269, -0.021815471351146698, -0.01159240584820509, 0.015156717970967293, -0.0009993163403123617, 0.0004040057538077235, 0.036193545907735825, -0.013827652670443058, 0.011391032487154007, -0.007638771086931229, 0.01839211955666542, -0.011693092063069344, 0.03426035866141319, -0.006749371066689491, 0.0046718670055270195, -0.01574741303920746, -0.0018643836956471205, 0.015626588836312294, 0.0008642282919026911, -0.01455259695649147, 0.003990552853792906, -0.004876596853137016, 0.0295884907245636, -0.027239132672548294, -0.005870039574801922, -0.004245626274496317, 0.010303614661097527, -0.009189347736537457, 0.017761150375008583, -0.00822275411337614, 0.0016747568733990192, -0.01144473161548376, -0.022526990622282028, -0.0062929242849349976, 0.036999039351940155, -0.012102551758289337, 0.0033696512691676617, 0.014310948550701141, 0.012545573525130749, -0.016096461564302444, 0.03573709726333618, -0.0062862117774784565, 0.0018442462896928191, 0.018888842314481735, -0.019855434074997902, 0.021318748593330383, -0.000599086401052773, 0.005893533583730459, 0.01109568402171135, 0.005906958132982254, 0.021265050396323204, -0.0007664781878702343, 0.016418658196926117, -0.0026262470055371523, -0.00021186178491916507, -0.026487337425351143, -0.008934274315834045, 0.009894154965877533, -0.017170453444123268, -0.004873240366578102, 0.006853414233773947, 0.007464247290045023, -0.0018140403553843498, 0.009175922721624374, -0.0052122194319963455, 0.0015346345026046038, -0.016606608405709267, 0.0295884907245636, -0.0073098610155284405, 0.0010228099999949336, -0.005343112163245678, -0.01100170984864235, -0.0005353181040845811, -0.019882284104824066, -0.003634792985394597, 0.016888530924916267, -0.001195655670017004, -0.006017713807523251, -1.817081829358358e-05, 0.02526567131280899, -0.01792224869132042, -0.010800336487591267, -0.018365269526839256, -0.005725721828639507, -0.03788508102297783, -0.012787221930921078, -0.01691538095474243, 0.0004971410380676389, -0.002819230081513524, 0.0010513379238545895, -0.01094800978899002, -0.013814227655529976, -0.028944095596671104, -0.0023241867311298847, -0.03490475192666054, -0.011901178397238255, 0.014391498640179634, -0.0016193791525438428, 0.009276609867811203, -0.028138602152466774, 0.00408788351342082, 0.00041575252544134855, -5.014674115955131e-07, -0.014243824407458305, 0.028192300349473953, 0.006209018640220165, -0.007632058579474688, 0.0073434230871498585, 0.0023392897564917803, -0.019640635699033737, 0.002978650853037834, -0.005601541604846716, -0.01644550822675228, -0.008450977504253387, 0.025963766500353813, 0.007538084406405687, 0.008236179128289223, 0.001991920405998826, -0.0008101091370917857, -0.01853979378938675, -0.001277883187867701, 0.02180204540491104, -0.000469871680252254, 0.01018950343132019, 0.015317817218601704, 0.003483762964606285, -0.013539017178118229, 0.004873240366578102, -0.00027248362312093377, 0.009545107372105122, 0.006484229117631912, -0.01021635252982378, 0.015962211415171623, 0.00592373963445425, -0.03189757466316223, -0.03388446196913719, 0.009524970315396786, -0.020083658397197723, 0.009128935635089874, -0.0019164051627740264, -0.010102241300046444, 0.005275987554341555, 0.010780198499560356, -0.00496721500530839, -0.020258182659745216, 0.0024601139593869448, 0.03039398603141308, 0.002297336934134364, -0.019788309931755066, 0.010585538111627102, 0.004685292020440102, -0.015774263069033623, 0.006521147675812244, 0.02189601957798004, 0.028836695477366447, -0.009954567067325115, -0.0019684266299009323, -0.009357159025967121, 0.012532149441540241, 0.009081948548555374, 0.0014700271422043443, 0.005208863411098719, -0.004228845238685608, 0.03664999082684517, 0.012397900223731995, -0.00494372146204114, -0.010632525198161602, 0.0019096927717328072, -0.015170142985880375, -0.006209018640220165, -0.006225799676030874, 0.0060445633716881275, -0.000989247695542872, 0.024956898763775826, -0.007840144447982311, 0.00969278160482645, -0.031306877732276917, -0.006665465421974659, -0.02129190042614937, -0.013082570396363735, -0.0191036406904459, 0.013015445321798325, -0.0043899440206587315, -0.01216296385973692, 0.01033046469092369, 0.003705273848026991, 0.00530955009162426, 0.001849280670285225, 0.0318438746035099, 0.019425837323069572, 0.012592560611665249, -0.005242425482720137, -0.010498275980353355, -0.0028695734217762947, 0.006151963025331497, 0.0021865814924240112, -0.016995929181575775, 0.006994375493377447, -0.007732745260000229, 0.00803480576723814, -0.014203549362719059, 0.0038026042748242617, 0.006168744061142206, -0.020446131005883217, 0.01796252280473709, 0.027896953746676445, -0.014404923655092716, 0.01584138721227646, 0.00669567147269845, 0.007759595289826393, -0.0031867369543761015, 0.0028175520710647106, -0.002819230081513524, 0.0024114486295729876, -0.04760471358895302, 0.007833432406187057, -0.0020540105178952217, -0.0040979525074362755, -0.025493895635008812, 0.00068131391890347, 0.012780509889125824, 0.0052122194319963455, 0.006484229117631912, 0.01867404393851757, 0.0006687280838377774, -0.005551198497414589, -0.013518879190087318, 0.01055197510868311, 0.0011176234111189842, -0.0010521769290789962, -2.9399755021586316e-06, 0.003493831492960453, 0.0076186335645616055, 0.014216974377632141, -0.009632369503378868, -0.009800180792808533, 0.016096461564302444, 0.003711986355483532, 0.011276920326054096, 0.007323285564780235, -0.00013697598478756845, 0.02370838262140751, -0.02365468256175518, -0.005208863411098719, 0.004067746456712484, 0.011216508224606514, -0.00562839163467288, 0.012397900223731995, -0.008477827534079552, 0.022204793989658356, -0.0026799465995281935, 0.005913670640438795, 0.030501384288072586, -0.02517169713973999, 0.017291277647018433, -0.0023225084878504276, 0.03119947947561741, 0.01833842135965824, 0.008350291289389133, 0.002490320010110736, -0.003950278274714947, 0.01085403561592102, -0.014740546233952045, -0.011451443657279015, -0.03157537803053856, -0.025910066440701485, -0.0030105349142104387, 0.015519190579652786, 0.01094800978899002, -0.007954256609082222, 0.0057458593510091305, -0.0028343331068754196, -0.004124802071601152, 0.01384107768535614, 0.0002557024999987334, 0.002243637340143323, 0.016109885647892952, 0.018982816487550735, -0.022782064974308014, -0.00764548359438777, 0.0037489046808332205, 0.0022335685789585114, -0.003507256507873535, 0.018982816487550735, -0.015183568000793457, 0.0222853422164917, 0.02891724556684494, -0.024070855230093002, -0.014069301076233387, -0.006980950478464365, 0.022862613201141357, 0.0021228131372481585, -0.02114422619342804, 0.006806427147239447, 0.0038663726300001144, -0.0029450885485857725, -0.020298456773161888, 0.008806738071143627, 0.00029325028299354017, -0.003973771817982197, -0.02582951821386814, -0.0065446412190794945, 0.0015170142287388444, -0.02350700832903385, -0.009175922721624374, 0.0049537899903953075, 0.006960813421756029, 0.012666397728025913, 0.006796358153223991, 0.0010236490052193403, 0.02033873088657856, 0.01061910018324852, 0.0039066472090780735, -0.0044469996355473995, 0.0019365425687283278, 0.0023359335027635098, 0.009592094458639622, 0.02787010371685028, -0.006900401320308447, 0.014096150174736977, -0.015814539045095444, 0.0035374625585973263, -0.010209640488028526, -0.008880575187504292, 0.012505299411714077, 0.006091550923883915, 0.0010857392335310578, -0.01144473161548376, -0.004816184751689434, -0.020728053525090218, -0.003940209746360779, -0.009565245360136032, 0.0027470712084323168, 0.027051184326410294, 0.009417571127414703, -0.01280064694583416, -0.016606608405709267, -0.004497343208640814, -0.024285653606057167, 0.0012585849035531282, 0.003758973442018032, -0.021130800247192383, -0.0017066410509869456, 0.013659841381013393, -0.003752260934561491, 0.01402902603149414, 0.006356692407280207, -0.024688400328159332, 0.000904502987395972, 0.003587805898860097, -0.0066721779294312, 0.012189813889563084, 0.003112899838015437, -0.0065177916549146175, -0.016190435737371445, -0.013223531655967236, 0.014807670377194881, 0.00929003395140171, 0.017787998542189598, 0.004745704121887684, 0.014230399392545223, -0.016579758375883102, -0.010384163819253445, 0.006256005726754665, 0.010538550093770027, 0.0022218218073248863, 0.004460424650460482, -0.004749060142785311, 0.026675285771489143, 0.019586937502026558, -0.001949967467226088, -0.01154541876167059, -0.02554759383201599, 0.011115821078419685, -0.022862613201141357, 0.004500699229538441, 0.026608161628246307, 0.00024185805523302406, 0.012881196103990078, 0.007652196101844311, -0.0012862737057730556, 0.002050654264166951, 0.0004526710254140198, 0.0023124399594962597, -0.006675533950328827, -0.011659529991447926, 0.006487585604190826, -0.00022255975636653602, -0.01735840179026127, -0.006833276711404324, 0.010444575920701027, -0.0006066379137337208, -0.01033046469092369, -0.00635333638638258, 0.008880575187504292, -0.010639237239956856, -0.008410703390836716, 0.0037958920001983643, 0.007182324305176735, -0.013062432408332825, 0.033777061849832535, 0.008155629970133305, -0.03020603582262993, -0.008108642883598804, 0.021533546969294548, -0.022580690681934357, -0.0034971877466887236, -0.010706362314522266, -0.04215420037508011, 0.009135647676885128, 0.017935672774910927, 0.02811175212264061, 0.004950433969497681, 0.016579758375883102, 0.011129246093332767, 0.007773020304739475, 0.006108331959694624, -0.004980640020221472, 0.000835280807223171, -0.008806738071143627, 0.002072469796985388, -0.004799403715878725, -0.009377296082675457, -0.03302526846528053, -0.0023006931878626347, -0.010639237239956856, 0.0006204823148436844, 0.0019013021374121308, -0.006829920690506697, 0.01726442761719227, -0.021211350336670876, 0.01996283419430256, -0.002554088132455945, 0.019560087472200394, 0.011424594558775425, 0.0041482956148684025, -0.012975171208381653, 0.011995152570307255, -0.007403835188597441, -0.020083658397197723, 0.015774263069033623, -0.006168744061142206, 0.0030575222335755825, -0.0037556171882897615, 0.0030323504470288754, 0.00202044821344316, -0.0076186335645616055, 0.014619722031056881, 0.004393300041556358, 0.008994686417281628, -0.0001386540970997885, -0.009068523533642292, 0.012981883250176907, 0.024017155170440674, -0.0021899377461522818, 0.003378041787073016, 0.00012103391054552048, -0.017479225993156433, -0.008155629970133305, 0.012921471148729324, -0.00530955009162426, 0.003705273848026991, -7.131980964913964e-05, -0.00535653717815876, -0.02099655196070671, 0.018472669646143913, -0.010209640488028526, 0.032837316393852234, 0.006846701726317406, 0.0003312175686005503, 0.01436464861035347, 0.0033965010661631823, -0.009753193706274033, -0.012840921990573406, -0.002050654264166951, -0.02464812621474266, 0.013700115494430065, 0.013471892103552818, -0.021546972915530205, -0.02735995687544346, 0.0015732310712337494, -0.0035039002541452646, -0.010364026762545109, -0.015210417099297047, -0.02271493896842003, -0.014874794520437717, -0.006443954538553953, 0.01782827451825142, 0.009384009055793285, -0.0038898661732673645, 0.011907890439033508, 0.005400168243795633, -0.02118450030684471, -0.0009741446701809764, -0.004514124244451523, 0.01080704852938652, -0.002443332690745592, 0.012344200164079666, 0.005708940792828798, -0.006054632365703583, 0.00789384450763464, -0.0014910035533830523, -0.012297213077545166, 0.008363716304302216, 0.021063676103949547, 0.007638771086931229, -0.02161409705877304, 0.004735635127872229, -0.000991764827631414, -0.0192915890365839, -0.0035777371376752853, 0.002507101045921445, 0.01644550822675228, -0.014606297016143799, -0.006732590030878782, -0.007162186782807112, 0.013451755046844482, -0.0131564075127244, -0.007356848102062941, -0.008954411372542381, -0.001585816964507103, -0.004228845238685608, 0.02052667923271656, -0.012498586438596249, -0.0006280338275246322, 0.005343112163245678, -0.025654993951320648, -0.00247186073102057, 0.016767706722021103, 0.008383853361010551, 0.005312906112521887, 0.010927872732281685, -0.003206874243915081, -0.022406166419386864, 0.01895596645772457, 0.013505454175174236, 0.014767395332455635, -0.00792069360613823, 0.00929003395140171, 0.00959880743175745, 0.025668418034911156, -0.004030827898532152, -0.002695049624890089, 0.007497809361666441, -0.01327723078429699, 0.007021225523203611, 0.008115354925394058, 0.035575997084379196, 0.01372696552425623, -0.001985207898542285, 0.0031900929752737284, 0.023574134334921837, -0.0052055069245398045, 0.021399298682808876, 0.0008701016777195036, -0.016673732548952103, -0.010471425950527191, -0.0041382270865142345, -0.0007929084822535515, 0.025896642357110977, -0.008860437199473381, -0.0038126730360090733, 0.007524659391492605, 0.012236800976097584, 0.005836477503180504, -0.014498897828161716, -0.0016177010256797075, -0.037052739411592484, -0.003839522833004594, 0.0038026042748242617, 0.007927406579256058, 0.004322819411754608, 0.017197303473949432, -0.018512943759560585, -0.006182168610394001, -0.017318127676844597, -0.02271493896842003, -0.015425216406583786, -0.002121135126799345, -0.00832344125956297, -0.015358091332018375, -0.007907269522547722, -0.005145094823092222, 0.024017155170440674, 0.017881974577903748, -0.004228845238685608, -0.02327878586947918, -0.0015690358122810721, 0.012471737340092659, 0.00846440251916647, -0.005896889604628086, -0.012102551758289337, 0.014391498640179634, -0.002929985523223877, -0.006833276711404324, 0.0034971877466887236, 0.02266124077141285, -0.022258492186665535, -0.018418969586491585, 0.0003261832462158054, 0.013129557482898235, 0.006239224690943956, -0.009511545300483704, 0.012122689746320248, 0.009813605807721615, 0.002953479066491127, -0.009128935635089874, -0.021721497178077698, 0.004175145644694567, 0.025467045605182648, -0.012505299411714077, -0.0021177788730710745, 0.04242270067334175, 0.009867304936051369, 0.0036717115435749292, 0.02119792439043522, -0.004104664549231529, -0.01858006790280342, 0.005279344040900469, 0.000375897332560271, 0.005631747655570507, -0.03423350676894188, -0.007799869868904352, 0.017291277647018433, 0.0009347090381197631, -0.00542701780796051, -0.010229777544736862, 0.007960968650877476, 0.02037900686264038, -0.006799714639782906, 0.009565245360136032, 0.004342956934124231, 0.025681843981146812, 0.017009355127811432, -0.012525436468422413, 0.020419280976057053, -0.0067862896248698235, -0.005524348467588425, -0.023480158299207687, 0.01055197510868311, 0.006175456568598747, -0.020741477608680725, 0.00249535427428782, 0.001778799924068153, 0.022057119756937027, -0.01071307435631752, -0.0019818516448140144, -0.005611610133200884, 0.0009548463858664036, 0.0028343331068754196, -0.016861680895090103, -0.0017351689748466015, 0.010155940428376198, 0.020231332629919052, 0.013263806700706482, -0.025775818154215813, -0.0014414992183446884, 0.0003215684264432639, 0.006007645279169083, 0.005081326700747013, 0.016083035618066788, -0.0006897044950164855, 0.017170453444123268, -0.014659996144473553, -0.011229933239519596, 0.01753292605280876, 0.002414804883301258, -0.01906336471438408, -0.014230399392545223, -0.024661550298333168, 0.005541129503399134, 0.0018039715941995382, 0.0012208273401483893, 0.00016351115482393652, 0.005802915431559086, -0.009853880852460861, 0.009088660590350628, -0.02502402290701866, -0.001670561614446342, 0.006735946051776409, 0.03713328763842583, 0.0312800295650959, 0.017559776082634926, -0.01557288970798254, -0.007007800508290529, -0.0382072813808918, -0.0041650766506791115, 0.01949296146631241, -0.006356692407280207, -0.009679356589913368, -0.004591317381709814, 0.005601541604846716, 0.021963145583868027, 0.011840766295790672, -0.004544330295175314, 0.0021899377461522818, -0.0002919916878454387, -0.019654061645269394, -0.013028870336711407, 0.005833121482282877, 0.013894776813685894, 0.006155319046229124, -0.011068833991885185, -0.009726343676447868, 0.01018950343132019, -0.0009137326269410551, -0.016203859820961952, -0.01659318245947361, -0.00523906946182251, -0.006450667046010494, 0.026205414906144142, -0.031011531129479408, -0.030474534258246422, 0.017425527796149254, 0.0035341063048690557, 0.011605830863118172, 0.009726343676447868, 0.008061655797064304, -0.0014045806601643562, 0.0007115199696272612, -0.005812983959913254, -0.018244445323944092, 0.005611610133200884, -0.015317817218601704, 0.0020120576955378056, 0.010645950213074684, 0.0020942850969731808, 0.0006628546980209649, -0.021654371172189713, 0.011438019573688507, 0.0012090805685147643, 0.018190747126936913, -0.015344666317105293, 0.00026136613450944424, -0.018217597156763077, 0.007712608203291893, 0.00215637544170022, 0.0013836042489856482, -0.0013525591930374503, -0.014740546233952045, -0.01996283419430256, 0.005524348467588425, 0.0021882595028728247, 0.028433948755264282, -0.012082414701581001, -0.0031498183961957693, 0.0062761432491242886, 0.007947543635964394, 0.011881041340529919, -0.01735840179026127, -0.009236334823071957, -0.009061810560524464, -0.013921626843512058, -0.008524814620614052, -0.015089593827724457, -0.01298859529197216, -0.027373380959033966, -0.030877280980348587, -0.03162907809019089, 0.005611610133200884, 0.01033046469092369, 0.0038965786807239056, 0.012827496975660324, 0.008182479999959469, -0.014901644550263882, -0.0024584357161074877, 0.023359334096312523, 0.004322819411754608, -0.001902980264276266, 0.009706206619739532, -0.019654061645269394, -0.015317817218601704, -0.01452574785798788, 0.009652506560087204, 0.008303304202854633, 0.006396967452019453, 0.0059472331777215, 0.008934274315834045, 0.005661953706294298, 0.008216042071580887, -0.0004155427741352469, 0.03506585210561752, 0.007544796913862228, -0.0019130490254610777, 0.009665931575000286, -0.018566643819212914, -0.00023262843023985624, -0.010082104243338108, 0.008524814620614052, 0.00017001383821479976, 0.00028276207740418613, -0.01294160820543766, -0.00022486716625280678, 0.014203549362719059, 0.015210417099297047, 0.02663501165807247, -0.012981883250176907, 0.036757390946149826, 0.013686690479516983, 0.003107865573838353, 0.0149821937084198, 0.010585538111627102, 0.044248487800359726, 0.01554604060947895, -0.01182734128087759, -0.008450977504253387, -0.0006515274289995432, 0.012250225991010666, -0.018137047067284584, 0.015707138925790787, -0.007242736406624317, -0.011485006660223007, -0.008061655797064304, -0.004806116223335266, -0.020781753584742546, 0.001456602243706584, 0.010310327634215355, 0.0013617888325825334, 0.028890395537018776, 0.011719942092895508, -0.024876348674297333, 0.029212594032287598, 0.004275832325220108, -0.014995618723332882, -0.007296436000615358, 0.0010270052589476109, -0.024446751922369003, -0.0073836976662278175, 0.012471737340092659, -0.006390254944562912, 0.028514498844742775, 0.018405545502901077, -0.016673732548952103, 0.0068030706606805325, 0.0019331863150000572, 0.0013659840915352106, -0.03256881982088089, 0.031924422830343246, -0.019680911675095558, 0.01182734128087759, -0.015170142985880375, 0.013102707453072071, 0.005507567431777716, -0.012948321178555489, 0.006188881117850542, -0.018687468022108078, -6.76489362376742e-05, 0.007632058579474688, -0.04148295521736145, -0.004020758904516697, -0.00988744292408228, 0.014337798580527306, -0.005259206518530846, 0.02356070838868618, 0.012666397728025913, 0.02488977462053299, -0.0003144364454783499, -0.014472047798335552, -0.045966874808073044, -0.027145158499479294, 0.007209173869341612, 0.017103329300880432, 0.006209018640220165, 0.0002898940583691001, 0.00017074801144190133, -0.004668510984629393, -0.0027521054726094007, 0.004248982295393944, 0.02280891314148903, 0.0029148824978619814, -0.009961280040442944, 0.016096461564302444, -0.002450045198202133, -0.0019751391373574734, -0.030367136001586914, 0.00435973796993494, 0.009182634763419628, -0.003183380700647831, -0.016995929181575775, 0.007752882782369852, -0.008095217868685722, 0.00832344125956297, -0.014928494580090046, 0.004235557746142149], "d95791c3-d879-4147-aeb6-a448e2e56a23": [-0.017509032040834427, 0.03533302620053291, -0.01364358700811863, 0.014595632441341877, -0.052312348037958145, -0.017222702503204346, 0.014745955355465412, -1.8035385664916248e-06, -0.012798916548490524, 0.02131721004843712, 0.017795361578464508, 0.026141857728362083, 0.009713718667626381, -0.0004048874252475798, -0.027673719450831413, 0.0034735314548015594, -0.023922806605696678, 0.030522694811224937, 0.009162534959614277, -0.017537664622068405, 0.08097390085458755, -0.03610611334443092, -0.04289211705327034, 0.022276412695646286, -0.006385141517966986, -0.03235520049929619, -0.0006451355293393135, -0.0022351574152708054, -0.03507532924413681, 0.008797465823590755, 0.03135304898023605, -0.0225197933614254, 0.030064567923545837, 0.010551231913268566, -0.020630020648241043, -0.048761866986751556, -0.04077327996492386, 0.0425485223531723, -0.016635727137327194, -0.01463142316788435, 0.001768082962371409, 0.017337234690785408, 0.010214795358479023, 0.005583419930189848, -0.019384488463401794, 0.029635073617100716, 0.01041522528976202, -0.004667166154831648, 0.006843268405646086, 0.009685086086392403, 0.0014808588894084096, -0.01762356422841549, -0.009355807676911354, 0.02907673269510269, 0.004183985758572817, -0.013142511248588562, 0.012763124890625477, 0.07026518881320953, -0.015834005549550056, -0.044667359441518784, -0.013915600255131721, -0.04272032156586647, 0.012340789660811424, -0.010901984758675098, 0.01493206899613142, -0.012390896677970886, -0.013500423170626163, 0.017866943031549454, -0.03281332924962044, -0.006607046816498041, 0.022620009258389473, 0.04369384050369263, -0.0318111777305603, 0.03753776103258133, -0.02037232369184494, 0.003078039037063718, 0.02621344104409218, 0.01041522528976202, 0.03183981031179428, 0.035934317857027054, -0.03080902434885502, -0.00550825847312808, 0.016163283959031105, -0.01117399800568819, 0.05677908658981323, -0.0066321007907390594, -0.06287790089845657, -0.039742495864629745, -0.04406606778502464, -0.03994292765855789, 0.006639258936047554, 0.030551327392458916, -0.0033178399316966534, -0.013743802905082703, -0.003940606024116278, -0.01576242409646511, 0.019169742241501808, 0.004663587082177401, 0.011302846483886242, -0.021045198664069176, -0.010808927938342094, 0.01547609455883503, -0.039885662496089935, 0.005357935559004545, -0.014917752705514431, -0.008668617345392704, 0.009477497078478336, 0.02004304528236389, -0.056578654795885086, 0.015146816149353981, 0.037280064076185226, -0.024839060381054878, -0.005801745690405369, 0.01447394210845232, -0.027229908853769302, -0.010350801050662994, -0.027000846341252327, -0.04461009427905083, 0.0016374452970921993, -0.02744465507566929, 0.030207732692360878, 0.021703755483031273, 0.014817536808550358, 0.0030690913554280996, -0.029950037598609924, 0.006728736683726311, 0.014151821844279766, 0.0447818897664547, -0.000936833443120122, 0.042061761021614075, 0.010622814297676086, -0.005783850327134132, -0.01020047813653946, 0.0171511210501194, 0.027759617194533348, 0.025955744087696075, 0.012526903301477432, 0.04332160949707031, -0.00972803495824337, 0.029205581173300743, -0.048160575330257416, -0.041260041296482086, -0.042376723140478134, 0.018310753628611565, -0.027544870972633362, 0.01898362673819065, -0.028575656935572624, 0.022176198661327362, -0.003861865494400263, -0.0010862614726647735, -0.031209886074066162, -0.03166801109910011, 0.013572005555033684, 0.019212691113352776, 0.029219897463917732, -0.020916350185871124, -0.027530554682016373, 0.020157577469944954, -0.0015506517374888062, -0.01639234833419323, 0.027086744084954262, -0.054774779826402664, 0.003190781222656369, 0.0014343304792419076, 0.01530429720878601, 0.009770984761416912, 0.050794802606105804, 0.0030565643683075905, -0.05520427227020264, 0.010300694033503532, -0.00294740148819983, -0.024567047134041786, 0.011696549132466316, 0.006896954961121082, 0.004484631586819887, -0.0003335287910886109, 0.03080902434885502, -0.010615656152367592, 0.018582766875624657, -0.03825358301401138, 0.013450315222144127, -0.00941307283937931, 0.011267054826021194, -0.008196174167096615, -0.00038475487963296473, 0.0331282913684845, 0.02635660581290722, 0.03842538222670555, 0.00513603026047349, 0.03003593534231186, 0.019627869129180908, -0.0211454126983881, 0.036535609513521194, 0.044638726860284805, 0.0008997000986710191, -0.031009454280138016, -0.016435297206044197, -0.005433097016066313, -0.010622814297676086, 0.023507628589868546, -0.0002187734207836911, -0.04546907916665077, -0.01425919495522976, 0.04675756022334099, 0.012577011249959469, 0.025955744087696075, -0.03656424209475517, -0.0019953567534685135, -0.002677178243175149, -0.010000048205256462, 0.012483954429626465, -0.02239094488322735, 0.009019370190799236, -0.0056585813872516155, -0.022591374814510345, 0.004996445029973984, 0.013135353103280067, 0.0006384247099049389, 0.008310705423355103, -0.003287417348474264, -0.026871997863054276, -0.00810311734676361, 0.04498232156038284, -0.04200449585914612, -0.03358641639351845, -0.010744503699243069, -0.03659287467598915, 0.01853981800377369, -0.06236250326037407, -0.022877704352140427, 0.03951343148946762, -0.007788154762238264, 0.006549781188368797, -0.03756639361381531, -0.0009681506780907512, -0.005622790195047855, 0.03856854513287544, 0.008833256550133228, 0.003976397216320038, -0.043121181428432465, 0.022577058523893356, 0.03788135573267937, -0.006374404300004244, -0.0006505041965283453, 0.03204023838043213, 0.04014335572719574, -0.03710826858878136, 0.06253430247306824, 0.02861860580742359, 0.012662909924983978, 0.015433144755661488, 0.00941307283937931, -0.0031514109577983618, -0.016148967668414116, -0.016621410846710205, 0.032870594412088394, 0.01302082184702158, -0.006646417081356049, -0.01095925085246563, -0.0012831127969548106, 0.0066321007907390594, 0.016435297206044197, -0.04506821930408478, 0.005755217280238867, 0.04289211705327034, -0.02619912475347519, 0.03750912845134735, -0.03049406222999096, 0.01763788051903248, 0.030665859580039978, -0.016492562368512154, -0.006854005623608828, 0.0019345118198543787, -0.004634954500943422, 0.001275954651646316, 0.005322144366800785, -0.0024731687735766172, -0.006997170392423868, 0.013750961050391197, 0.020572755485773087, 0.008668617345392704, -0.04040105268359184, 0.01249111257493496, 0.02989277057349682, -0.011896979063749313, 0.005619211122393608, -0.003167517017573118, -0.0006871901568956673, -0.02725854143500328, -0.016936372965574265, -0.007616357412189245, -0.005143188871443272, 0.00035746413050219417, 0.029320111498236656, -0.003237309865653515, 0.008310705423355103, 0.014495416544377804, -0.03244110196828842, -0.039742495864629745, -0.010286377742886543, -0.000969045446254313, -0.035161226987838745, -0.016506880521774292, -0.03330008685588837, 0.02330719865858555, -0.02529718726873398, 0.012441004626452923, 0.0031764646992087364, 0.0008397499332204461, -0.01947038620710373, 0.04773108288645744, -0.0069327461533248425, 0.011288529261946678, 0.00312277814373374, 0.004062295891344547, 0.014903436414897442, -0.0017671881942078471, -0.003006456885486841, 0.0021456796675920486, -0.018883412703871727, 0.03367231786251068, 0.004631374962627888, -0.06379415094852448, 0.014116031117737293, -0.007372977677732706, -0.02372237667441368, 0.003264153143391013, 0.0062562935054302216, -0.019942831248044968, -0.017580613493919373, -0.016177600249648094, -0.009112427942454815, -0.04246262460947037, 0.00911958608776331, 0.005604894366115332, -0.03825358301401138, -0.06642837822437286, -0.06184711307287216, 0.041260041296482086, -0.009906991384923458, -0.011453168466687202, 0.002023989800363779, -0.013357258401811123, -0.027043795213103294, 0.004541897214949131, -0.004538318142294884, -0.009141060523688793, -0.006607046816498041, 0.014688689261674881, 7.415479194605723e-05, 0.000890752300620079, 0.011746656149625778, 0.011854030191898346, -0.00444526132196188, 0.005125293042510748, -0.017494715750217438, 0.0031979396007955074, -0.0039978716522455215, 0.0010737346019595861, 0.006957800127565861, -0.008969263173639774, -0.031639378517866135, -0.02851838991045952, -0.02375100925564766, -0.02496790885925293, 0.0038726027123630047, -0.0019667239394038916, 0.017838310450315475, 0.03015046752989292, 0.02556919865310192, -0.04681482911109924, 0.01929858885705471, 0.018940677866339684, -0.03158211335539818, -0.020343691110610962, -0.013049454428255558, 0.04352204129099846, -0.014201929792761803, -0.012970713898539543, -0.00700790761038661, -0.0011506855953484774, -0.007315711583942175, -0.049849916249513626, -0.01959923468530178, 0.009298541583120823, -0.00795995257794857, -0.00501434039324522, -0.016020119190216064, 0.016005802899599075, 0.010859035886824131, -0.025927111506462097, 0.041575003415346146, -0.0017421343363821507, 0.009040845558047295, 0.004183985758572817, 0.016750259324908257, -0.008053009398281574, -0.0032212038058787584, 0.009083794429898262, 0.01554767694324255, -0.00016933689767029136, -0.00501434039324522, -0.012297839857637882, -0.010214795358479023, -0.0003995187289547175, -0.0318111777305603, 0.009792459197342396, -0.016950689256191254, 0.013958550058305264, 0.04856143519282341, -0.01653551310300827, 0.010193319991230965, -0.0025733839720487595, 0.01699363999068737, 0.05191148817539215, 0.00624555628746748, 0.0018486130284145474, 0.08034397661685944, -0.010357959195971489, -0.02083045057952404, -0.009126744233071804, 0.029806872829794884, -0.0021868394687771797, 0.036392442882061005, -0.020343691110610962, 0.017351550981402397, 0.02848975732922554, 0.012755966745316982, -0.03143895044922829, -0.011782447807490826, 0.024452514946460724, 0.030064567923545837, -0.006914850790053606, -0.013478947803378105, -0.010207637213170528, -0.024839060381054878, 0.0038439698982983828, -0.017394499853253365, 0.0016741311410441995, -0.01073018740862608, 0.010386592708528042, 0.06654290854930878, -0.024008706212043762, 0.0034610044676810503, 0.0017233439721167088, -0.032870594412088394, -0.04704388976097107, 0.03504669666290283, 0.009849725291132927, 0.029663708060979843, -0.008038693107664585, -0.001929143094457686, -0.03716553375124931, -0.007523300126194954, 0.009978573769330978, -0.014917752705514431, 0.01686479151248932, -0.017050905153155327, -0.0037544919177889824, 0.00848966185003519, -0.017967158928513527, -0.01493206899613142, 0.03370095044374466, 0.02986413799226284, 0.012140358798205853, -0.04486778751015663, -0.009864041581749916, 0.008239123038947582, -0.0021331526804715395, -0.01042954158037901, -0.049993082880973816, 0.009556237608194351, -0.023206982761621475, 0.0029438224155455828, -0.03871171176433563, -0.016965005546808243, -0.001794926356524229, -0.006979275029152632, 0.005869749002158642, 0.0036524871829897165, 0.005057289730757475, -0.018582766875624657, -0.05377262830734253, -0.0012616381281986833, 0.0018235592870041728, -0.009456022642552853, 0.012469637207686901, 0.002562646521255374, 0.011181156150996685, -0.0333859883248806, 0.025368768721818924, 0.026141857728362083, -0.006034388206899166, 0.0062097650952637196, 0.01156054250895977, 0.010601339861750603, -0.021818287670612335, -0.0331282913684845, -0.007709414232522249, -0.01637803204357624, 0.04352204129099846, -0.015189765021204948, -0.005075185559689999, 0.0019541969522833824, 0.024409566074609756, 0.011145365424454212, -0.024724528193473816, -0.0098855160176754, 0.026413870975375175, 0.010930618271231651, -0.022476844489574432, 0.007859737612307072, -0.033615048974752426, -0.0033035234082490206, -0.0006952431285753846, -0.008239123038947582, -0.03241246938705444, 0.005583419930189848, 0.020114628598093987, -0.01324272621423006, -0.009126744233071804, 0.0008692776318639517, -0.013536213897168636, 0.02284907177090645, -0.019040893763303757, 0.004137457348406315, -0.04369384050369263, 0.016506880521774292, -0.0038081787060946226, 0.017695145681500435, -0.0008835940971039236, 0.012870498932898045, -0.02588416263461113, 0.014466783963143826, 0.006624942179769278, -0.0005176295526325703, -0.018926361575722694, -0.008289230987429619, 0.019885564222931862, 0.0331282913684845, -0.02940601110458374, 0.05886928737163544, -0.014516891911625862, -0.023006552830338478, 0.013987182639539242, 0.05073753744363785, -0.0315534807741642, 0.03281332924962044, -0.008539768867194653, -0.00432357145473361, -0.024753160774707794, -0.004631374962627888, -0.021646488457918167, -0.01508955005556345, 0.025511933490633965, -0.04796014353632927, 0.021947134286165237, 0.02511107362806797, -0.029019467532634735, -0.023092452436685562, 0.017265651375055313, 0.014874802902340889, 0.016621410846710205, -0.008110275492072105, -0.019942831248044968, 0.01958491839468479, -0.03788135573267937, 0.03656424209475517, -0.01656414568424225, 0.008854730986058712, 0.036993734538555145, -0.008253440260887146, 0.04154637083411217, -0.009212642908096313, -0.02694357931613922, 0.024123236536979675, 8.06978641776368e-05, -0.004248409997671843, -0.014652897603809834, -0.03567662090063095, 0.009420230984687805, -0.03922710195183754, 0.005286353174597025, -0.02294928766787052, -0.006453144829720259, 0.0006692945607937872, -0.042061761021614075, -0.016134651377797127, -0.038539912551641464, 0.035447556525468826, -0.01523271482437849, 0.03381548076868057, 0.0162348672747612, 0.01103083323687315, 0.005504679400473833, 0.015891272574663162, -0.02432366833090782, 0.009599187411367893, 0.005662160459905863, -0.018410969525575638, 0.024452514946460724, 0.025497617200016975, 0.030837656930088997, -0.033930011093616486, -0.007680781185626984, 0.005869749002158642, 0.010493965819478035, 0.005927015095949173, -0.012956397607922554, -0.0037580709904432297, -0.0010173635091632605, 0.0030046673491597176, 0.034674469381570816, -0.018024424090981483, 0.029205581173300743, 0.009685086086392403, 0.008410921320319176, 0.048189207911491394, 0.0024874850641936064, -0.01064428873360157, 0.007866895757615566, -0.027473289519548416, 0.032870594412088394, -0.015862638130784035, 0.033443253487348557, 0.009241275489330292, 0.01991419680416584, -0.01524703111499548, 0.010078788734972477, 0.018597083166241646, 0.009262749925255775, -0.002360426587983966, -0.024710211902856827, -0.021231312304735184, 0.043092548847198486, -0.028403859585523605, -0.01821053773164749, 0.0021653648000210524, -0.010193319991230965, 0.02280612289905548, -0.012942081317305565, 0.010293535888195038, 0.022276412695646286, 0.0462135374546051, -0.016449613496661186, 0.005540470592677593, -0.0085755605250597, 0.0019255640218034387, 0.023063817992806435, -0.012448162771761417, -0.010708712972700596, -0.012670068070292473, 0.002530434401705861, 0.002575173508375883, -0.008604193106293678, -0.014037290588021278, -0.013901283964514732, 0.0070938062854111195, 0.009599187411367893, 0.012054460123181343, 0.0009905201150104403, 0.003427002811804414, -0.0005449202726595104, 0.02848975732922554, 0.03232656791806221, 0.01713680475950241, 0.01885478012263775, 0.038539912551641464, 0.0318111777305603, 0.026829048991203308, -0.01216183416545391, -0.013564846478402615, 0.0180673748254776, -0.005651423241943121, -0.004337887745350599, -0.003348262282088399, -0.001713501405902207, -0.021202679723501205, 0.013686536811292171, -0.01500365138053894, -0.04546907916665077, -0.026886314153671265, -0.029162630438804626, -0.016778891906142235, -0.009005053900182247, -0.007147493306547403, -0.010508282110095024, 0.03490353375673294, -0.01564789190888405, -0.019813982769846916, 0.018353702500462532, 0.010579864494502544, -0.008367971517145634, -0.006982854101806879, -0.010930618271231651, 0.007244129199534655, -0.008718724362552166, -0.00379386218264699, 0.02544035203754902, -0.016936372965574265, -0.043436143547296524, -0.02559783309698105, 0.01216183416545391, -0.01493206899613142, 0.026084592565894127, 0.03335735574364662, -0.02390849031507969, -0.01776672899723053, -0.004881913308054209, 0.012698700651526451, -0.013493265025317669, 0.006750211585313082, -0.021632172167301178, 0.013894125819206238, 0.004563372116535902, -0.013987182639539242, 0.005458150990307331, 0.01186118833720684, -0.036850571632385254, 0.024853376671671867, 0.016435297206044197, 0.041746798902750015, -0.008790306746959686, -0.03624927997589111, -0.031152619048953056, 0.01101651694625616, -0.004173248540610075, -0.04183270037174225, -0.010451016947627068, 0.0027165485080331564, 0.01868298090994358, -0.01762356422841549, -0.005186138208955526, 0.0038189159240573645, -0.010250586085021496, -0.02402302250266075, 0.003450267016887665, -0.007838262245059013, 0.009785301052033901, -0.024423882365226746, 0.007845420390367508, -0.023063817992806435, 0.029348745942115784, -0.026070276275277138, 0.01639234833419323, -0.006957800127565861, 0.013808227144181728, -0.034244973212480545, 0.013729486614465714, 0.020873399451375008, 0.024595679715275764, -0.0006236608605831861, 0.04498232156038284, 0.006914850790053606, -0.0010495755122974515, -0.007637831848114729, 0.007408768404275179, 0.0001668762561166659, -0.007652148604393005, 0.050479840487241745, -0.010837561450898647, -0.013865492306649685, -0.01656414568424225, -0.00795995257794857, 0.012577011249959469, -0.02909104898571968, -0.03722279891371727, 0.006263451650738716, 0.0322120375931263, -0.009613503701984882, 0.01272017601877451, 0.017551980912685394, 0.01124558039009571, 0.03736596181988716, -0.02143174223601818, 0.0035504824481904507, -0.0007507194532081485, 0.025669414550065994, -0.01333578396588564, 0.00041204565786756575, -0.03367231786251068, -0.05700814723968506, 0.03278469666838646, -0.025769630447030067, 0.018582766875624657, -0.02432366833090782, 0.04750201851129532, -0.013572005555033684, -0.012992188334465027, 0.010229111649096012, -0.0297209732234478, -0.009706560522317886, -0.038053154945373535, 0.003278469666838646, 0.0043736789375543594, -0.0003619380295276642, 0.008475344628095627, -0.022419577464461327, -0.02479611150920391, 0.006259872578084469, 0.017680829390883446, -0.025698047131299973, 0.05317133665084839, 0.019556285813450813, -0.000637977325823158, -0.010300694033503532, -0.01699363999068737, -0.02005736157298088, 0.003541534533724189, 0.018038740381598473, -0.036506976932287216, 0.008146066218614578, -0.024896325543522835, 0.022133249789476395, -0.022748855873942375, 0.011460327543318272, -0.003444898407906294, -0.0035970108583569527, 0.012727334164083004, -0.0070007494650781155, -0.015991486608982086, -0.0028722400311380625, -0.009112427942454815, 0.01332862488925457, -0.03527576103806496, 0.017866943031549454, 0.02296360395848751, -0.016807524487376213, 0.019413121044635773, 0.014366568997502327, 0.0343022421002388, -0.0051324511878192425, 0.0012661120854318142, 0.03172527626156807, -0.003384053474292159, 0.003747333772480488, -0.0008482503471896052, 0.008840414695441723, -0.006968537345528603, 0.03433087468147278, 0.00950613059103489, -0.027802567929029465, -0.018310753628611565, -0.0004375468415673822, -0.0009681506780907512, 0.01554767694324255, 0.022562742233276367, 0.01370085310190916, 0.004914125427603722, 0.05234098061919212, -0.00018566660583019257, -0.043407510966062546, -0.02866155467927456, 0.017551980912685394, -0.015676524490118027, 0.0032748905941843987, -0.010365118272602558, 0.005150347016751766, -0.020773185417056084, 0.02236231230199337, 0.0358770526945591, -0.013851176016032696, -0.01606306992471218, 0.018325069919228554, -0.008396604098379612, -0.013457473367452621, -0.01332862488925457, 0.02511107362806797, 0.02711537666618824, 0.01901226118206978, 0.010143212974071503, -0.004073033109307289, 0.018453918397426605, 0.03556209057569504, -0.02695789560675621, -0.01778104528784752, -0.026084592565894127, 0.021374477073550224, -0.052770476788282394, -0.03553345799446106, 0.006871901452541351, 0.013192619197070599, 0.009012212045490742, 0.011503276415169239, -0.042348090559244156, 0.00559415714815259, 0.017122486606240273, -0.02329288236796856, 0.0027380231767892838, -0.009742352180182934, -0.005425938870757818, -0.025941427797079086, -0.01073018740862608, -0.03218340501189232, -0.026986530050635338, -0.010357959195971489, 0.030436797067523003, -0.003246257547289133, 0.018325069919228554, 0.0162348672747612, 0.005193296354264021, -0.02969234064221382, -0.024080287665128708, -9.154705912806094e-05, 0.032555632293224335, -0.0283465925604105, 0.011846871115267277, 0.00628134747967124, -0.00896210502833128, 0.05179695785045624, 0.02037232369184494, 0.028833352029323578, -0.00036954364622943103, 0.020787501707673073, 0.052598677575588226, -0.009864041581749916, 0.018897728994488716, 0.018024424090981483, -0.0009278856450691819, -0.01670731045305729, 0.004824647214263678, 0.024237768724560738, 0.04856143519282341, 0.031782545149326324, -0.0038690236397087574, -0.006070179399102926, 0.002015041885897517, -0.002594858640804887, 0.02188986912369728, 0.024853376671671867, -0.037909988313913345, 0.00112026312854141, 8.640207670396194e-05, -0.006696524564176798, 0.05677908658981323, -0.001212425297126174, 0.01156054250895977, -0.007190442644059658, -0.03676467388868332, -0.02373669296503067, -0.009813934564590454, -0.006539043504744768, 0.02588416263461113, -0.020558437332510948, -0.0011417377972975373, -0.007262025028467178, -0.028532706201076508, 0.027816884219646454, -0.008410921320319176, -0.0003820705460384488, 0.030866289511322975, 0.05405895784497261, -0.011982877738773823, 0.0009234117460437119, -0.023665109649300575, 0.017351550981402397, -0.01210456807166338, 0.027072427794337273, 0.003954922314733267, 0.014989335089921951, -0.012140358798205853, -0.021202679723501205, -0.01748039945960045, 0.00028476337320171297, -0.02831795997917652, 0.0012267418205738068, -0.026227757334709167, 0.014524050056934357, 0.010136054828763008, -0.01821053773164749, -0.016191918402910233, -0.011302846483886242, 0.002199366455897689, 0.01593422144651413, -0.019327223300933838, 0.004595584236085415, -0.046957992017269135, -0.0019184057600796223, -0.015504727140069008, -0.004359362181276083, -0.0033178399316966534, -0.008367971517145634, -0.016965005546808243, -0.019699450582265854, -0.003076249500736594, 0.03149621561169624, -0.015590625815093517, 0.007967110723257065, -0.004985707812011242, 0.007931319065392017, 0.013070928864181042, -0.027015162631869316, 0.006105970591306686, 0.004491789732128382, 0.0038368115201592445, -0.030379530042409897, 0.00035746413050219417, -0.024839060381054878, -0.014745955355465412, -0.019656501710414886, 0.00356479873880744, -0.018568450585007668, -0.012426688335835934, 0.03149621561169624, 0.0031746751628816128, -0.0023908489383757114, 0.002333583077415824, 0.000629029527772218, 0.0024910641368478537, -0.003915552049875259, -0.017237018793821335, -0.027072427794337273, 0.016134651377797127, -0.013657904230058193, 0.029520543292164803, 0.023922806605696678, 0.01944175362586975, -0.03015046752989292, -0.01508955005556345, 0.02356489561498165, -0.011818238534033298, -0.021088147535920143, -0.017580613493919373, 0.0044202073477208614, -0.00547246728092432, -0.002627070527523756, -0.005075185559689999, -0.005118134897202253, 0.028747454285621643, 0.009584871120750904, -0.0031013034749776125, 0.003521849401295185, -0.003475320991128683, -0.017237018793821335, -0.0004274805833119899, -0.01530429720878601, 0.005075185559689999, -0.08011491596698761, -0.01790989376604557, 0.013822543434798717, 0.01500365138053894, -0.01610601879656315, -0.005486783571541309, 0.024466831237077713, 0.004037241917103529, -0.010672921314835548, -0.005157505162060261, -0.01310672052204609, -0.036506976932287216, 0.013235568068921566, 0.02327856607735157, -0.010823244228959084, -0.010765979066491127, 0.006614204961806536, -0.0016383400652557611, 0.03267016261816025, -0.02605595998466015, -0.011045149527490139, -0.036821939051151276, 0.03676467388868332, -0.0035146912559866905, 0.004559793043881655, 0.058439794927835464, -0.03381548076868057, 0.0310953538864851, -0.018869096413254738, 0.0010066261747851968, 0.004366520792245865, -0.005350777413696051, -0.023192666471004486, -7.890830602264032e-05, 0.006603467743843794, -0.026542719453573227, 0.025927111506462097, 0.022548425942659378, 0.005801745690405369, 0.006646417081356049, 0.014080239459872246, 0.003548692911863327, 0.003894077381119132, -0.019355855882167816, -0.011131048202514648, -0.009248433634638786, -0.014495416544377804, -0.020286425948143005, 0.019685134291648865, 0.01991419680416584, 0.010307852178812027, -0.0015542308101430535, 0.02161785587668419, -0.01148896012455225, -0.0009618872427381575, 0.022176198661327362, -0.008904838934540749, -0.029176948592066765, -0.010816086083650589, -0.008267756551504135, 0.05148199573159218, 0.0065175690688192844, 0.01287765707820654, 0.01944175362586975, 0.005082343704998493, 0.01516113243997097, -0.0013564847176894546, 0.04091644659638405, 0.014874802902340889, 0.01729428581893444, -0.0016284974990412593, -0.01700795628130436, -0.0081174336373806, -0.006539043504744768, 0.014817536808550358, -0.00941307283937931, 0.016950689256191254, 0.01762356422841549, 0.007508983835577965, 0.006782423239201307, -0.032240670174360275, -0.010078788734972477, 0.00690053403377533, 0.0003066854551434517, -0.0035379554610699415, -0.002618122845888138, -0.00795995257794857, -0.003489637514576316, -0.01302082184702158, -0.006653575226664543, 0.007040119729936123, 0.0007941161748021841, 0.014216246083378792, 0.0036721723154187202, 0.009828250855207443, 0.03894077241420746, 0.0054080430418252945, 0.00746603449806571, -0.02330719865858555, -0.010901984758675098, -0.014180454425513744, -0.017838310450315475, -0.001445962581783533, -0.00601649284362793, 0.0006643732776865363, 0.005322144366800785, 0.01670731045305729, 0.01287765707820654, -0.012211941182613373, -0.014674372971057892, -0.014094555750489235, -0.005833957809954882, -0.02084476687014103, -0.043121181428432465, -0.00532930251210928, 0.018897728994488716, -0.004699378274381161, 0.001565862912684679, -0.012269207276403904, 0.002548329997807741, -0.0030368792358785868, 0.012040143832564354, -0.014831854030489922, -0.04798877611756325, -0.02589847892522812, 0.002843606984242797, -0.024581363424658775, -0.02141742594540119, 0.0006813740474171937, 0.010665763169527054, -0.016478246077895164, 0.00393702695146203, 0.008718724362552166, 0.018325069919228554, -0.005211191717535257, 0.008174699731171131, 0.017967158928513527, -0.02528287097811699, 0.003976397216320038, -0.039570700377225876, 0.001611496671102941, 0.002641387050971389, -0.006521148141473532, 0.010622814297676086, 0.009005053900182247, -0.0017483978299424052, 0.0033500518184155226, -0.026728833094239235, -0.003994292579591274, -0.027015162631869316, 0.00048273318680003285, 0.026771781966090202, 0.01103083323687315, -0.001973882084712386, -0.003199729137122631, -0.00818901602178812, 0.0012517955619841814, 0.008969263173639774, 0.002161785727366805, -0.010515440255403519, -0.01855413429439068, -0.009828250855207443, 0.01463142316788435, -0.014574157074093819, 0.012677226215600967, -0.010651446878910065, -0.03811042010784149, 0.004545476287603378, -0.021245628595352173, -0.012226257473230362, -0.00753761688247323, -0.005769534036517143, -0.004634954500943422, 0.005060868803411722, 0.032841961830854416, -0.011410219594836235, 0.009842567145824432, -0.025010857731103897, 0.02757350355386734, 0.010637130588293076, -0.01853981800377369, 0.011517592705786228, -0.007988585159182549, 0.014688689261674881, -0.02115972898900509, 0.002999298507347703, 0.01652119681239128, 0.019713766872882843, -0.022605692967772484, -0.013264201581478119, -0.013049454428255558, 0.003233730560168624, -0.018511183559894562, 0.020601388067007065, 0.010064472444355488, 0.0038869192358106375, 0.021832603961229324, -0.01101651694625616, -0.03327145427465439, 0.011982877738773823, -0.027043795213103294, -0.02728717401623726, -0.008933471515774727, -0.0028346593026071787, -0.018267804756760597, 0.006893375888466835, 0.0009252012823708355, 0.032383836805820465, 0.003761650063097477, -0.015662208199501038, 0.0020562016870826483, 0.01685047522187233, 0.005418780725449324, 0.0013931706780567765, -0.01637803204357624, -0.000941307342145592, 0.005082343704998493, -0.0043199919164180756, -0.0015273874159902334, 0.00880462396889925, -0.010894826613366604, 0.001010205247439444, -0.014273512177169323, -0.012168992310762405, 0.01231931522488594, -0.012083093635737896, -0.013894125819206238, -0.025082439184188843, -0.015504727140069008, 0.03032226487994194, -0.002088413806632161, 0.004906967282295227, 0.004484631586819887, -0.005884065292775631, -0.028675870969891548, -0.0010477859759703279, 0.004148194566369057, -0.0010406277142465115, -0.0003301733813714236, 0.0018557712901383638, -0.03828221559524536, -0.03816768527030945, 0.0047638025134801865, 0.020916350185871124, 0.05191148817539215, -0.010830402374267578, 0.0012598485918715596, -0.018611399456858635, 0.006288505624979734, -0.004377258010208607, 0.013507581315934658, -0.023393098264932632, -0.006496094167232513, 0.025927111506462097, 0.010243427939713001, 0.006617784034460783, -0.010350801050662994, 0.01501796767115593, 0.007423085160553455, -0.009255591779947281, -0.020601388067007065, -0.0007789049413986504, 0.016506880521774292, -0.030236365273594856, 0.03032226487994194, -0.002043674932792783, -0.0022620009258389473, 0.012863339856266975, 0.003192570758983493, -0.02927716262638569, -0.021030880510807037, -0.020787501707673073, -0.026442503556609154, 0.003679330460727215, -0.002177891554310918, 0.02406597137451172, 0.0009359386749565601, -0.008511136285960674, 0.012727334164083004, -0.006914850790053606, 0.004416628275066614, 0.0028364488389343023, -0.0007466929382644594, 0.006431669928133488, 0.009906991384923458, -0.006138182710856199, 0.0014209087239578366, 0.013228409923613071, 0.021345842629671097, 0.010952092707157135, 0.03527576103806496, -0.006764527875930071, 0.01759493164718151, 0.010665763169527054, 0.007083069067448378, -0.025511933490633965, -0.0053149862214922905, -0.006370825227349997, 0.005669318605214357, 0.01523271482437849, 0.015719475224614143, -0.013908442109823227, -0.04120277613401413, -0.023679425939917564, -0.0379672534763813, -0.0002843159600161016, 0.011453168466687202, 0.004738748539239168, -0.0027845515869557858, 0.007673623040318489, -0.0046957992017269135, 0.03372958302497864, -0.015132499858736992, -0.02466726303100586, -0.0007681676070205867, 0.025168338790535927, 0.003146042348816991, 0.01563357561826706, 0.011524750851094723, -0.008024376817047596, 0.007018645294010639, 0.023192666471004486, 0.035791151225566864, -0.03000730276107788, -0.009083794429898262, -0.01524703111499548, -0.013736644759774208, 0.01622055098414421, 0.008375129662454128, -0.01477458793669939, -0.020286425948143005, 0.029606441035866737, -0.019255639985203743, 0.01670731045305729, 0.009269909001886845, 0.016435297206044197, 0.004105245228856802, -0.008582718670368195, 0.019098158925771713, -0.005533312447369099, -0.010214795358479023, 0.023851225152611732, 0.012541219592094421, 0.01713680475950241, 0.013493265025317669, -0.0028221323154866695, -0.005579840857535601, 0.005236245691776276, 0.011896979063749313, -0.028146162629127502, 0.017351550981402397, 0.015519043430685997, 0.014989335089921951, -0.0016875528963282704, -0.0077809966169297695, 0.027158327400684357, -0.0025429613888263702, 0.0026431765872985125, -0.04105960950255394, -0.03768092393875122, -0.02267727442085743, -0.020443907007575035, -0.00979961734265089, 0.02724422514438629, -0.0011837923666462302, 0.021259944885969162, 0.035590723156929016, -0.028547024354338646, 0.01124558039009571, -0.025397401303052902, 0.0043271505273878574, 0.0037187007255852222, -0.030751759186387062, -0.011539068073034286, -0.007337186485528946, -0.010587022639811039, 0.009520446881651878, 0.017279967665672302, 0.00019092342699877918, -0.010522599332034588, 0.0011104205623269081, 0.004964232910424471, -0.0090336874127388, -0.01667867787182331, 0.0057051097974181175, -0.005715847015380859, -0.008389445953071117, 0.00505013158544898, 0.006535464432090521, -0.031925708055496216, 0.0003541087207850069, 0.021202679723501205, 0.012555536814033985, 0.0023944280110299587, 0.0037222797982394695, 0.0018879832932725549, -0.030723124742507935, 0.020300742238759995, -0.03968523070216179, 0.003190781222656369, -0.02161785587668419, -0.001630287035368383, 0.0019899881444871426, 0.017852626740932465, -0.0016150757437571883, 0.036707405000925064, 0.012168992310762405, 0.002709390362724662, 0.006685787346214056, -0.014817536808550358, -0.010894826613366604, -0.025554882362484932, 0.010608498007059097, -0.029377378523349762, -0.006528306286782026, 0.003571957116946578, 0.016177600249648094, 0.008797465823590755, 0.0028865565545856953, 0.00208304519765079, -0.017981475219130516, -0.00987119972705841, -0.0032731008250266314, -0.02250547707080841, 0.007133176550269127, 0.019413121044635773, -0.013221251778304577, 0.003783124964684248, -0.008231964893639088, 0.008983579464256763, -0.022877704352140427, 0.005254141055047512, 0.007387293968349695, -0.009520446881651878, 0.02831795997917652, -0.014645739458501339, 0.01808169111609459, -0.005214770790189505, 0.0074588763527572155, -0.013314308598637581, -0.0336436852812767, -0.044925056397914886, 0.00459200469776988, -0.00014819773787166923, 0.006750211585313082, -0.016435297206044197, -0.0015399144031107426, -0.012118884362280369, 0.035304393619298935, 0.032383836805820465, 0.014516891911625862, -0.014831854030489922, 0.03736596181988716, 0.0007874053553678095, 0.013135353103280067, 0.026227757334709167, -0.00333394599147141, 0.0019828297663480043, -0.02269159071147442, 0.01364358700811863, 0.01991419680416584, -0.029320111498236656, -0.0023908489383757114, 0.013779593631625175, 0.009320016019046307, 0.01579105667769909, 0.015991486608982086, -0.04014335572719574, -0.02097361534833908, 0.005343619268387556, -0.013600638136267662, 0.009742352180182934, 0.003768808441236615, -0.011295687407255173, 0.014509733766317368, -0.017566297203302383, 0.005311407148838043, -0.006091654300689697, -0.002333583077415824, -0.024080287665128708, 0.01823917217552662, -0.012849023565649986, 0.007473192643374205, 0.011818238534033298, 0.02850407361984253, 0.005343619268387556, 0.005372251849621534, 0.011037991382181644, -0.010379434563219547, 0.008783148601651192, -0.01793852634727955, -0.0003968343953602016, -0.01332862488925457, 0.009670769795775414, 0.018883412703871727, -0.03447403758764267, -0.025196971371769905, 0.021975768730044365, 0.020171893760561943, 0.002052622614428401, -0.010551231913268566, -0.018153272569179535, -0.0238941740244627, 0.008611351251602173, -0.014123189263045788, -0.011582016944885254, 0.009828250855207443, 0.009484655223786831, -0.00444526132196188, -0.0007771154050715268, -0.000762351555749774, 0.017981475219130516, 0.007226233836263418, 0.0026431765872985125, 0.009527605026960373, 0.0009350438485853374, 0.018740247935056686, -0.022419577464461327, -0.019026577472686768, 0.009105268865823746, 0.00023734007845632732, -0.0171511210501194, -0.0013860124163329601, 0.006292084697633982, -0.011037991382181644, 0.008475344628095627, 0.003085197415202856, -0.0032247828785330057, -0.016764575615525246, -0.011531908996403217, 0.003167517017573118, -0.006148919928818941, 0.007516141980886459, -0.00199356721714139, 0.012591327540576458, -0.006063021253794432, -0.017222702503204346, 0.011925612576305866, -0.0012347947340458632, 0.009019370190799236, -0.01593422144651413, 0.01524703111499548, -0.013844017870724201, -0.023078136146068573, -0.0045812674798071384, 0.07020792365074158, -0.014294986613094807, 0.0016723416047170758, -0.0012365843867883086, 0.008897680789232254, -0.03092355653643608, 0.0005525259184651077, 0.012004353106021881, 0.014588474296033382, -0.025826895609498024, -0.016449613496661186, -0.005655002314597368, 0.018940677866339684, 0.007015065755695105, -0.00887620635330677, 0.006424511782824993, 0.01868298090994358, 0.0028292906936258078, 0.0017322917701676488, -0.005433097016066313, 0.013886967673897743, 0.009856883436441422, -0.035590723156929016, 0.0033393146004527807, 0.013421682640910149, 0.030236365273594856, 0.007058015558868647, 0.003113830229267478, -0.009613503701984882, 0.009162534959614277, -0.004312833771109581, -0.004141036421060562, -0.0006361877312883735, -0.00841807946562767, -0.0037867040373384953, 0.0252685546875, -0.00398713443428278, 0.024695895612239838, -0.0041589317843317986, 0.018568450585007668, -0.009892675094306469, 0.0014683320187032223, 0.027029478922486305, 0.02513970620930195, -0.016420980915427208, 0.010078788734972477, -0.00666789198294282, -0.006750211585313082, -0.0025232762563973665, 0.0023353726137429476, -0.0022620009258389473, -0.00964213628321886, 0.00482106814160943, 0.02373669296503067, 0.013249884359538555, -0.012455320917069912, 0.0017886628629639745, -0.010680080391466618, 0.007380135823041201, 0.018611399456858635, -0.002916978904977441, -0.01899794302880764, -0.008811782114207745, -0.02541171759366989, -0.011338637210428715, -0.018439602106809616, 0.005164663307368755, -0.004169669467955828, -0.0070938062854111195, -0.02021484263241291, -0.010758820921182632, 0.008339338935911655, 0.02711537666618824, -0.02602732554078102, -0.011675073765218258, 0.020787501707673073, 0.007616357412189245, 0.021846920251846313, 0.02774530090391636, -0.0015085970517247915, -0.01317114382982254, 0.0032319410238415003, 0.005794587545096874, -0.009685086086392403, -0.005579840857535601, 0.0051324511878192425, -0.004237672314047813, -0.020787501707673073, 0.011503276415169239, 0.00291161029599607, -0.023693742230534554, 0.006213344167917967, 0.007075910922139883, 0.03046542964875698, -0.019069526344537735, 0.017967158928513527, 0.005236245691776276, -0.030236365273594856, 0.0041589317843317986, -0.007823945954442024, -0.007054436020553112, 0.002976034302264452, -0.01279175840318203, 0.00987119972705841, 0.0007457981701008976, 0.015060917474329472, 0.0032981547992676497, -0.0037401753943413496, 0.005157505162060261, 0.0134861059486866, -0.0044882106594741344, -0.0065640974789857864, -0.010214795358479023, -0.022863388061523438, -0.03186844289302826, -0.0025286448653787374, 0.02221914753317833, -0.011882662773132324, -0.020014412701129913, -0.017237018793821335, -0.0036005899310112, -0.0006397668621502817, -0.030064567923545837, 0.0010164687409996986, -0.01666436158120632, -0.002668230328708887, -0.03707963600754738, 0.0037222797982394695, -0.0012849023332819343, 0.0007542985258623958, 0.009141060523688793, 0.020730236545205116, -0.010773137211799622, 0.005504679400473833, 0.012197624891996384, 0.0020096732769161463, 0.013070928864181042, 0.00746603449806571, 0.024609996005892754, -0.019413121044635773, 0.013271359726786613, 0.008926313370466232, -0.0013627480948343873, 0.019026577472686768, -0.017666513100266457, -0.00919116847217083, -0.007244129199534655, -0.024123236536979675, 0.0022620009258389473, 0.003554061520844698, 0.020730236545205116, -0.032068874686956406, 0.008883364498615265, 0.0026914947666227818, 0.00463853357359767, -0.011002200655639172, -0.006134603638201952, 0.019484704360365868, -0.011796764098107815, 0.009391598403453827, 0.008060167543590069, 0.007559091318398714, -0.016292132437229156, 0.0039513432420790195, -0.02449546568095684, 0.02727285772562027, -0.00016609331942163408, 0.011002200655639172, 0.011037991382181644, 0.0016374452970921993, -0.004219776950776577, 0.02085908316075802, 0.010379434563219547, -0.020687285810709, -0.007609199266880751, 0.009391598403453827, -0.009305699728429317, 0.0019810402300208807, -0.002797078574076295, 0.019427437335252762, 0.01610601879656315, -0.005493942182511091, 0.022634325549006462, 0.0071152811869978905, -0.009541921317577362, -0.0180673748254776, 0.01929858885705471, -0.013099562376737595, -0.010071630589663982, 0.027917100116610527, -0.013736644759774208, 0.019413121044635773, 0.010665763169527054, -0.008167540654540062, -0.007032961584627628, -0.0002257079613627866, 0.02359352819621563, -0.0012687963899224997, 0.004434523638337851, -0.005755217280238867, 0.004155352711677551, -0.0007829314563423395, 0.04000019282102585, 0.01463142316788435, -0.0006469250656664371, -0.019499020650982857, -0.009971415624022484, -0.0075519331730902195, 0.0005650528473779559, -0.009935623966157436, -0.027473289519548416, -0.01717975363135338, 0.00866145920008421, -0.004720853175967932, 0.0008026165887713432, 0.029033783823251724, 0.022290730848908424, 0.0014611737569794059, 0.014445309527218342, 0.02038663998246193, 0.02038663998246193, -0.004187564831227064, 0.006811056286096573, -0.02405165508389473, -0.01263427734375, -0.009785301052033901, 0.021045198664069176, 0.019513336941599846, 0.002571594435721636, -0.0315534807741642, 0.00690053403377533, -0.0060487049631774426, -0.008153224363923073, -0.0035809047985821962, 0.017838310450315475, 0.01471732184290886, 0.019499020650982857, 0.0011900558602064848, 0.01590558886528015, -0.014652897603809834, -0.025010857731103897, 0.015375879593193531, -0.007219075690954924, -0.002492853906005621, -0.008754516020417213, -0.017423132434487343, 0.008181857876479626, 0.017394499853253365, -0.0017206596676260233, -2.188013786508236e-05, 0.0021098884753882885, 0.0017412395682185888, -0.014660055749118328, -0.015146816149353981, 0.013092403300106525, -0.005264878738671541, -0.024080287665128708, 0.0031710960902273655, 0.0006030809017829597, -0.02342173084616661, -0.0020633600652217865, 0.006191869266331196, 0.000996783608570695, -0.0011623176978901029, 0.016048753634095192, 0.02340741455554962, -0.028690187260508537, 0.009835409000515938, -0.01002868078649044, 0.016320765018463135, -0.010987884365022182, -0.0035325868520885706, 0.008367971517145634, 0.000367306696716696, -0.008210490457713604, -0.005214770790189505, 0.001611496671102941, -0.012312156148254871, 0.012505428865551949, 0.025970060378313065, -0.00972803495824337, 0.019255639985203743, 0.009992890059947968, -0.026299338787794113, -0.00382965337485075, -0.0117180235683918, 0.004853280261158943, 0.011854030191898346, 0.001988198608160019, 0.005182559136301279, -0.005601315293461084, -0.01484617032110691, -0.012061618268489838, -0.010551231913268566, 0.005372251849621534, 0.006757369730621576, 0.012240574695169926, -0.03015046752989292, -0.0012195835588499904, -0.0014146453468129039, -0.00090909528080374, -0.0021385212894529104, 0.0008205121848732233, -0.022777490317821503, 0.012577011249959469, 0.0031245676800608635, 0.009699402377009392, 0.006871901452541351, -0.02176102064549923, 0.023822590708732605, 0.008976421318948269, 0.004294938407838345, -0.0292628463357687, 0.0008621193701401353, -0.024781793355941772, -0.0005010761669836938, 0.02940601110458374, 0.03908393904566765, 0.0043736789375543594, 0.0032122558914124966, -0.0032945757266134024, 0.0011506855953484774, 0.004939178936183453, 0.017566297203302383, 0.012398055754601955, -0.011725181713700294, 0.025855528190732002, 0.010379434563219547, 0.005862590856850147, -0.0008688302477821708, -0.026413870975375175, 0.005114555824548006, -0.022104615345597267, -0.0072298129089176655, -0.023206982761621475, 0.018325069919228554, 0.012441004626452923, -0.008783148601651192, 0.000831249519251287, -0.011088099330663681, -0.0011175787076354027, 8.690539107192308e-05, -0.010737345553934574, -0.003768808441236615, 0.008525452576577663, 0.004509685095399618, 0.008947787806391716, -0.009234117344021797, 0.019484704360365868, -0.010171845555305481, -0.02452409826219082, 0.02040095627307892, 0.029749605804681778, 0.012942081317305565, -0.0025769630447030067, -0.007197600789368153, 0.02432366833090782, 0.018482550978660583, -0.00011565016029635444, -0.0017430291045457125, 0.01048680767416954, 0.0148604866117239, -0.01027206052094698, -0.019685134291648865, 0.014581315219402313, -0.003002877812832594, 0.00388334016315639, 0.00413029920309782, -0.04950632154941559, 0.006481777876615524, 0.008833256550133228, -0.027544870972633362, -0.009219801053404808, -0.00797426886856556, -0.013879808597266674, 0.008632825687527657, 0.003035089699551463, -0.013908442109823227, -0.015862638130784035, -0.024695895612239838, -0.016349399462342262, -0.007924160920083523, 0.01180392224341631, -0.03808178752660751, 0.004269884433597326, 0.006911271717399359, 0.019370172172784805, -0.0036721723154187202, 0.0015085970517247915, -0.014252036809921265, -0.008239123038947582, -0.008983579464256763, -0.007372977677732706, -0.0025894897989928722, -0.003462794004008174, 0.014273512177169323, -0.023335831239819527, 0.0112598966807127, 0.021059514954686165, 0.0012088462244719267, -0.0017188701312988997, 0.003969239071011543, 0.006549781188368797, -0.0007444559596478939, 0.01186118833720684, -0.01591990515589714, -0.0032677322160452604, 0.008840414695441723, 0.03295649215579033, -0.014552682638168335, -0.002920557977631688, 0.02452409826219082, -0.01974239945411682, -0.004413049202412367, 0.014166138134896755, 0.004398732911795378, -0.005586999002844095, 0.010014364495873451, 0.006317138671875, 0.003468162612989545, 0.017695145681500435, -0.00474948575720191, 0.018568450585007668, -0.012942081317305565, -0.0016293922672048211, 0.00843239575624466, 0.02433798462152481, 0.004348624963313341, 0.0040587168186903, -0.002999298507347703, -0.00700790761038661, -0.023679425939917564, -0.011667915619909763, 0.025554882362484932, -0.01852549985051155, -0.008711566217243671, 0.013793909922242165, 0.0077595217153429985, 0.0038511280436068773, -0.0024051654618233442, -0.012705858796834946, 0.00889052264392376, 0.0012741649989038706, 0.0058446950279176235, 0.026242073625326157, 0.013364416547119617, -0.0006764527643099427, 0.018954994156956673, -0.004917704500257969, -0.004541897214949131, -0.012526903301477432, 0.019527653232216835, -0.008754516020417213, -0.004710115492343903, 0.00677884416654706, -0.009105268865823746, 0.00797426886856556, -0.01852549985051155, 0.004889071453362703, -0.017666513100266457, 0.027673719450831413, 0.006342192180454731, 0.005862590856850147, -0.006624942179769278, -0.013665062375366688, -0.001335904817096889, 0.0058446950279176235, 0.005690793506801128, 0.003700805129483342, 0.002856133971363306, 0.005991438869386911, 0.029835505411028862, 0.005078764632344246, -0.005300669930875301, 0.0018020845018327236, 0.010336484760046005, -0.005304249003529549, 0.023822590708732605, -0.007444559596478939, -0.0045168437063694, -0.014037290588021278, -0.00776668032631278, -0.01332862488925457, -0.008933471515774727, 0.038224950432777405, 0.01702227257192135, -0.00735866092145443, 0.02588416263461113, 0.025225603953003883, -0.01103083323687315, 0.0025000120513141155, 0.005418780725449324, 0.00023890595184639096, 0.0066571542993187904, 0.013056612573564053, 0.0004151773755438626, 0.00021933266543783247, 0.023650793358683586, -0.005264878738671541, 0.013450315222144127, 0.021489007398486137, -0.013657904230058193, 0.0020007253624498844, -0.008375129662454128, 0.002630649833008647, 0.0017618194688111544, -0.005551207810640335, 0.005236245691776276, -0.008482502773404121, -0.00693632522597909, 0.012455320917069912, -0.021245628595352173, -0.012899131514132023, 0.014609948731958866, -0.007523300126194954, 0.02191850170493126, -0.0056371064856648445, 0.005783850327134132, 0.027186959981918335, 0.02131721004843712, 0.012140358798205853, -0.02667156793177128, -0.0039728181436657906, -0.0018074532272294164, 0.011939928866922855, 0.018124639987945557, 0.020587071776390076, -0.004817489068955183, -0.008217648603022099, -0.028604289516806602, -0.014975018799304962, 0.009248433634638786, -0.0022834755945950747, -0.011811080388724804, 0.004939178936183453, 0.005608473438769579, -0.0023300040047615767, 0.008181857876479626, 0.01776672899723053, -0.02851838991045952, 0.017065221443772316, 0.024309350177645683, -0.029635073617100716, -0.017809677869081497, -0.016292132437229156, -0.004770960658788681, -0.012419530190527439, -0.007516141980886459, -0.0032766801305115223, -0.005007182247936726, -0.011438852176070213, 0.0042734635062515736, 0.011388745158910751, 0.01378675177693367, 0.037022367119789124, -0.014652897603809834, 0.011023675091564655, 0.010336484760046005, 0.003530797315761447, 0.006199027877300978, 0.023665109649300575, -0.004595584236085415, -0.02095929905772209, 0.003215834964066744, -0.02433798462152481, 0.005379410460591316, 0.005572682712227106, 0.007902686484158039, 0.017337234690785408, 0.004770960658788681, -0.0024159029126167297, -0.006030809134244919, -0.01048680767416954, -0.00730855343863368, 0.002106309402734041, -0.015103866346180439, -0.025812579318881035, -0.0011238422011956573, 0.0008348286501131952, -0.002236946951597929, 0.0008903049165382981, -0.010143212974071503, -0.0029133998323231936, -0.012304998002946377, 0.015576309524476528, 0.020000096410512924, -0.0010343643371015787, 0.01461710687726736, 0.02386554144322872, -0.018582766875624657, 0.02084476687014103, -0.0036435392685234547, -0.012047301977872849, -0.002040095627307892, 0.024266401305794716, 0.01118831429630518, -0.0034359507262706757, -0.01263427734375, -0.024123236536979675, -0.018768880516290665, 0.012040143832564354, 0.02284907177090645, -0.0005104712909087539, 0.010400908999145031, 0.02313540130853653, 0.008174699731171131, -0.007086648140102625, -0.02711537666618824, -0.007924160920083523, 0.011424535885453224, -0.005214770790189505, 0.0038904983084648848, 0.03687920421361923, -0.005776692181825638, 0.010350801050662994, -0.004370099864900112, 0.01508955005556345, -0.027373073622584343, 0.030723124742507935, -0.0034323716536164284, -0.00697211641818285, -0.0016812894027680159, -0.011238422244787216, 0.018468234688043594, -0.002328214468434453, -0.005010761320590973, 0.006148919928818941, -0.005239824764430523, 0.027487605810165405, -0.01606306992471218, 0.0007426664233207703, 0.007508983835577965, 0.0030834078788757324, -0.011918453499674797, 0.010365118272602558, -0.021689439192414284, -0.012655751779675484, 0.0031335153616964817, -0.017795361578464508, -0.012111726216971874, 0.021388793364167213, -0.00381175777874887, 0.0032534156925976276, 0.006403037346899509, 0.005282774101942778, -0.01809600740671158, 0.009470338933169842, -0.0017421343363821507, 0.013049454428255558, 0.006879059597849846, 0.0007869579712860286, 0.022562742233276367, -0.012970713898539543, 0.009012212045490742, 0.011510434560477734, 0.013113878667354584, -0.00941307283937931, -0.031181251630187035, 0.014416676014661789, -0.005690793506801128, -0.025340136140584946, -0.034874897450208664, -0.010672921314835548, 0.018625715747475624, -0.01866866461932659, -0.0020740972831845284, -0.014960701577365398, 0.020687285810709, 0.002938453573733568, -0.005615632049739361, 0.010579864494502544, 0.007981427013874054, 0.002727285958826542, 0.02664293348789215, 0.0025536988396197557, 0.012727334164083004, 0.011753814294934273, -0.006646417081356049, 0.000960097648203373, -0.018110323697328568, -0.01702227257192135, 0.003480689600110054, -0.00848966185003519, -0.007061594631522894, -1.865054582594894e-05, 0.006277768407016993, 0.0030279315542429686, 0.0049928659573197365, -0.018124639987945557, 0.004985707812011242, -0.011159681715071201, -0.006571255624294281, 0.002433798275887966, -0.01961355097591877, 0.00964213628321886, 0.005923435557633638, 0.012469637207686901, -0.012526903301477432, -0.02144605852663517, -0.022090299054980278, -0.02418050356209278, -0.008174699731171131, 0.02144605852663517, -0.012147516943514347, -0.004728011321276426, -0.028446808457374573, 0.0009225169778801501, 0.000693453592248261, -0.013987182639539242, 0.0036149064544588327, 0.025683730840682983, 0.0009520446765236557, -0.0004008609103038907, -0.006775265093892813, -0.002832869766280055, -0.0229779202491045, -0.018468234688043594, 0.00804585125297308, -0.01540451217442751, -0.00934149045497179, 0.01606306992471218, -0.0001832059642765671, -0.007158230524510145, 0.0030637227464467287, 0.0005198664730414748, 0.00934149045497179, -0.0006182921933941543, 0.006478198803961277, -0.0009878358105197549, 0.005143188871443272, 0.018711615353822708, -0.005898382049053907, -0.006614204961806536, 0.009849725291132927, -0.017981475219130516, 0.007222654763609171, 0.001882614684291184, 0.01088766846805811, 0.005723005160689354, 0.03352915123105049, -0.010093105025589466, -0.016048753634095192, 0.007680781185626984, -0.02418050356209278, -0.005572682712227106, -0.011274212971329689, -0.01455984078347683, 0.010544073767960072, 0.0038726027123630047, 0.005547628737986088, -0.025927111506462097, 0.003958501387387514, 0.03201160579919815, 0.004663587082177401, 0.006560518406331539, -0.009083794429898262, 0.021360160782933235, -0.0013940654462203383, 0.02236231230199337, 0.017809677869081497, 0.029749605804681778, 0.007215496618300676, -0.025196971371769905, -0.005504679400473833, 0.008246281184256077, 0.016492562368512154, -0.003983555361628532, 0.008239123038947582, -0.015046600252389908, 0.058296628296375275, -0.0016794998664408922, 0.0012338999658823013, -0.010221953503787518, -0.015447461977601051, -0.00949897151440382, -0.009262749925255775, -0.015275663696229458, 0.008325021713972092, -0.009434548206627369, 0.006682208273559809, 0.010214795358479023, 0.006689366418868303, -0.020028728991746902, -0.0037115425802767277, -0.012419530190527439, -0.0022655799984931946, -0.01716543734073639, 0.01507523376494646, 0.0034878477454185486, -0.0020454644691199064, 0.010307852178812027, 0.0013019031612202525, -0.011288529261946678, -0.0011658967705443501, 0.03321418911218643, 0.007244129199534655, 0.008095959201455116, -0.008403762243688107, -0.013049454428255558, -0.033471886068582535, -0.002328214468434453, 0.013765277341008186, -0.014903436414897442, -0.010880510322749615, -0.019227007403969765, 0.010708712972700596, -0.031753912568092346, -0.0008634615805931389, 0.0038081787060946226, -0.008747357875108719, 0.023636477068066597, 0.013443157076835632, -0.02589847892522812, -0.011274212971329689, 0.006449565757066011, 0.003530797315761447, -0.006077337544411421, -0.0038904983084648848, -0.0008755410672165453, 1.0338889296690468e-05, -0.025082439184188843, 0.0006321612163446844, 0.01493206899613142, -0.015146816149353981, -0.020171893760561943, 0.010221953503787518, 0.01524703111499548, 0.02020052634179592, -0.01501796767115593, -0.000597264850512147, -0.011725181713700294, 0.0031388842035084963, -0.005733742844313383, 0.010207637213170528, 0.02296360395848751, -0.018425285816192627, 0.01478890422731638, 0.00016900134505704045, 0.008396604098379612, 0.007938478142023087, -0.0077595217153429985, -0.01775241270661354, -2.495593980711419e-05, 0.002480326918885112, 0.0013117457274347544, 0.011045149527490139, -0.00337152648717165, 0.012763124890625477, -0.02143174223601818, -0.020902033895254135, 0.0038869192358106375, 0.014502574689686298, 0.009620661847293377, 0.001005731406621635, -0.004284201189875603, 0.007380135823041201, 0.0003934789856430143, -0.01470300555229187, 0.020315058529376984, 0.0030708808917552233, 0.028461124747991562, 0.005182559136301279, -0.008267756551504135, 0.010286377742886543, 0.013493265025317669, 0.009520446881651878, -0.006138182710856199, 0.009420230984687805, -0.005114555824548006, -0.012483954429626465, -0.03032226487994194, -0.015576309524476528, -7.600027311127633e-05, -0.0007686149911023676, 0.005687213968485594, -0.009992890059947968, -0.004874755162745714, 0.01463142316788435, 0.0013394838897511363, 0.006556939333677292, -0.01959923468530178, 0.012297839857637882, 0.016349399462342262, 0.011846871115267277, -0.017065221443772316, 0.008790306746959686, 0.0248104277998209, -0.013765277341008186, -0.01425919495522976, 0.010400908999145031, -0.012519745156168938, 0.012534061446785927, 0.02463863044977188, -0.02420913614332676, -0.009427390061318874, -0.017365867272019386, 0.018468234688043594, -0.0016401296015828848, -0.03095218911767006, 0.004219776950776577, 0.0009341490804217756, -0.005089501850306988, -0.01540451217442751, -0.0034091072157025337, -0.011753814294934273, -0.012240574695169926, -0.025368768721818924, -0.010372276417911053, -0.0035379554610699415, -0.00957055389881134, -0.007523300126194954, -0.0038224952295422554, 0.0021635752636939287, -0.010737345553934574, 0.009599187411367893, -0.005586999002844095, 0.011360111646354198, 0.009105268865823746, 0.00746603449806571, -0.004337887745350599, -0.006832531187683344, 0.0002487485180608928, 0.038224950432777405, 0.02618480660021305, -0.0066571542993187904, 0.004362941719591618, -0.004355783108621836, -0.0057981666177511215, 0.0025608569849282503, -0.020343691110610962, 0.0193129051476717, 0.023235617205500603, -0.0022566320840269327, -0.006084496155381203, -0.0056120529770851135, -0.0060487049631774426, -0.012283523567020893, -0.004244830925017595, 0.011324320919811726, 0.020758869126439095, -0.0014898066874593496, -0.0038189159240573645, -0.009112427942454815, 0.01020047813653946, -0.019083842635154724, 0.005622790195047855, 0.009864041581749916, 0.0024176924489438534, -0.003679330460727215, -0.001152475131675601, -0.009613503701984882, 0.01209025178104639, 0.0014074870850890875, -0.006059442181140184, 0.019942831248044968, -0.002891925163567066, -0.0064710406586527824, -0.006020071916282177, -0.02237662859261036, -0.001074629370123148, -0.012441004626452923, -0.011582016944885254, 0.005901961121708155, 0.007523300126194954, 0.01852549985051155, -0.007544775027781725, 0.008919155225157738, -0.023206982761621475, -0.009692244231700897, 0.0018360861577093601, 0.008883364498615265, 0.018597083166241646, 0.0005856327479705215, 0.003668593242764473, 0.013163985684514046, 0.011252738535404205, -0.02542603574693203, 0.004366520792245865, -0.02511107362806797, 0.013192619197070599, -0.016148967668414116, 0.009327174164354801, 0.02801731415092945, -0.013808227144181728, 0.0072083380073308945, 0.014688689261674881, 0.0071152811869978905, 0.019355855882167816, 0.026127541437745094, -0.0023532682098448277, -0.017194069921970367, -0.01324272621423006, 0.007995743304491043, 0.0038045996334403753, -0.02098793163895607, -0.0004737853887490928, -0.002730865031480789, 0.0008406447013840079, -0.013056612573564053, -0.006156078074127436, 0.012383738532662392, 0.00776668032631278, -0.0014352252474054694, -0.004123140592128038, 0.0027702352963387966, -0.02482474409043789, 0.029663708060979843, 0.0034287923481315374, -0.02770235203206539, -0.005007182247936726, 0.01855413429439068, -0.006320717744529247, -0.006832531187683344, 0.01620623469352722, -0.031925708055496216, 0.013808227144181728, 0.009384440258145332, 0.017208386212587357, -0.009835409000515938, 0.02529718726873398, 0.01317114382982254, 0.01387265045195818, 0.007147493306547403, -0.01563357561826706, -0.017695145681500435, -0.01610601879656315, -0.007215496618300676, -0.019499020650982857, 0.0019506178796291351, -0.02402302250266075, 0.00559415714815259, 2.3026574126561172e-05, 0.007516141980886459, -0.0009269908769056201, -0.005780271254479885, 0.005182559136301279, -0.01622055098414421, -0.0022781069856137037, 0.006542622577399015, 0.012526903301477432, -0.006513989996165037, -0.0010934197343885899, -0.009685086086392403, 0.0015971801476553082, -0.018654348328709602, -0.013965708203613758, 0.020930666476488113, 0.004098087083548307, 0.012920605950057507, 3.2911084417719394e-05, -0.01792421005666256, 0.01041522528976202, -0.022305047139525414, 0.03753776103258133, 0.0006540833273902535, 0.0033858430106192827, -0.005093080922961235, -0.007054436020553112, 0.01699363999068737, 0.01853981800377369, 0.006063021253794432, -0.004513264168053865, 0.006925588008016348, -0.004677903838455677, 0.004352204035967588, -0.0008920945110730827, -0.018954994156956673, 0.003486058209091425, -0.0075519331730902195, 0.011918453499674797, -0.016621410846710205, 0.03782409057021141, -0.0032212038058787584, 0.02528287097811699, -0.004205460660159588, 0.013529055751860142, 0.004037241917103529, 0.015118182636797428, -0.012605643831193447, 0.006134603638201952, 5.855209019500762e-05, -0.018940677866339684, 0.011610649526119232, 0.008174699731171131, -0.009255591779947281, -0.011324320919811726, 0.005672897677868605, -0.003700805129483342, 0.003008246421813965, -0.02111678011715412, -0.021660804748535156, -0.010708712972700596, -0.012891973368823528, 0.028747454285621643, -0.007795312907546759, 0.0011515803635120392, 0.009327174164354801, -0.015218398533761501, -0.0035844838712364435, 0.001070155412890017, 0.0014173296513035893, 0.0033518413547426462, -0.0021331526804715395, 0.0049033877439796925, 0.01057270634919405, 0.00615965761244297, -0.006739473901689053, -0.006671471055597067, -0.016793208196759224, -0.013994340784847736, 0.009627819992601871, -0.004570530261844397, -0.026914946734905243, 0.0057981666177511215, -0.01087335217744112, -0.01898362673819065, -0.0058446950279176235, -0.008775990456342697, -5.8608013205230236e-05, -0.002236946951597929, -0.0010826824000105262, -0.008783148601651192, -0.01685047522187233, -0.02403733879327774, -0.0032623636070638895, -0.011796764098107815, -0.0071832844987511635, -0.004617058672010899, 0.010472491383552551, -0.0011238422011956573, 0.004448840394616127, 0.007917002774775028, -0.01730860210955143, 0.003554061520844698, 0.025168338790535927, 0.022892020642757416, 0.008761674165725708, 0.00810311734676361, 0.004652849864214659, -0.02420913614332676, 0.008654301054775715, 0.0022333678789436817, -0.00208304519765079, -0.004974970128387213, -0.00820333231240511, 0.0008755410672165453, 0.014309302903711796, -0.00716538866981864, -0.016764575615525246, 0.01224773284047842, -0.022462528198957443, 0.001083577168174088, 0.04063011705875397, 0.013414524495601654, 0.01278459932655096, 0.002526855329051614, 0.013128194957971573, 0.02357921190559864, 0.01193277072161436, 0.0292628463357687, 0.008554085157811642, -0.021045198664069176, -0.0180673748254776, -0.012254890985786915, -0.001785978558473289, 0.026385238394141197, -0.0134861059486866, -0.004713695030659437, 1.1757952961488627e-05, 0.0054008848965168, -0.00036328021087683737, -0.013879808597266674, -0.014309302903711796, -0.03138168156147003, -0.0050859227776527405, 0.01670731045305729, 0.011975719593465328, 0.019427437335252762, -0.010400908999145031, -0.01547609455883503, 0.0014763850485906005, -0.027330124750733376, -0.014917752705514431, -0.02098793163895607, 0.007337186485528946, -0.007494667544960976, 0.016191918402910233, -0.03201160579919815, -0.0033464727457612753, 0.015834005549550056, 0.018725931644439697, -0.017652196809649467, -0.021818287670612335, -0.004566951189190149, 0.008754516020417213, 0.02024347521364689, -0.008210490457713604, -0.0171511210501194, -0.000316751713398844, 0.005379410460591316, -0.01670731045305729, 0.004838963970541954, 0.029320111498236656, -0.013543372042477131, -0.0035683780442923307, 0.0011166839394718409, 0.007637831848114729, 0.00693632522597909, 0.002061570296064019, -0.0029456119518727064, -0.005354356486350298, 0.009892675094306469, -0.007351502776145935, -0.020887717604637146, 0.004470314830541611, 0.016764575615525246, -0.007652148604393005, 0.00681463535875082, 0.02969234064221382, -0.0014951754128560424, 0.002671809634193778, 0.009914149530231953, -0.008582718670368195, -0.020787501707673073, 0.011854030191898346, -0.007487509399652481, 0.014917752705514431, -0.03630654513835907, 0.002167154336348176, 0.0322120375931263, -0.01868298090994358, -0.019327223300933838, -0.011832554824650288, -0.0056371064856648445, 0.009906991384923458, -0.006478198803961277, 0.009856883436441422, 0.00011833450116682798, 0.007831104099750519, -0.009176851250231266, -0.0061632366850972176, 0.013435998931527138, -0.00038363641942851245, 0.002185049932450056, -0.015862638130784035, 0.00850397814065218, -0.006986433174461126, -0.029320111498236656, -0.0012097409926354885, 0.0036936469841748476, 0.008453870192170143, -0.011725181713700294, 0.01699363999068737, -0.002958138706162572, 0.00157928466796875, -0.007097385823726654, -0.018496867269277573, 0.002585910726338625, 0.011653599329292774, 0.005275615956634283, -0.007083069067448378, -0.012462479062378407, 0.014660055749118328, 0.017795361578464508, -0.010816086083650589, -0.009076636284589767, 0.01477458793669939, -0.008253440260887146, 0.01639234833419323, -0.005715847015380859, 0.004681482911109924, 0.026285022497177124, 0.011338637210428715, -0.02741602249443531, -0.013564846478402615, -0.02422345243394375, -0.020558437332510948, 0.0024284296669065952, 0.001318009220995009, 0.004541897214949131, -0.014366568997502327, -0.012347947806119919, 0.0035093226470053196, -0.018167588859796524, -0.00333394599147141, 0.01699363999068737, 0.04260578751564026, 0.04091644659638405, 0.010436699725687504, 0.001115789171308279, 0.011166839860379696, -0.049420423805713654, 0.00482106814160943, 0.008446712046861649, -0.010923460125923157, -0.019055210053920746, 0.0011336847674101591, -0.010121737606823444, 0.025039490312337875, 0.022419577464461327, -0.009699402377009392, 0.006066600326448679, -0.019541969522833824, -0.022333679720759392, -0.0070222243666648865, 0.002920557977631688, 0.014817536808550358, 0.019398804754018784, -0.004191143903881311, -0.0019989358261227608, 0.014273512177169323, 0.002847186289727688, -0.01134579535573721, -0.011073783040046692, 0.005726584233343601, 0.004341466818004847, 0.023178350180387497, -0.018196221441030502, -0.01652119681239128, 0.0033822639379650354, -0.006395879201591015, 0.011367269791662693, 0.011231264099478722, 0.005443834234029055, 0.008940629661083221, -0.0039048148319125175, -0.008468186482787132, -0.004799593705683947, 0.003954922314733267, -0.02188986912369728, -0.003319629468023777, 0.010164687409996986, 0.002791709965094924, -0.006227660458534956, -0.015447461977601051, 0.0148604866117239, 0.00032860750798135996, 0.0033321562223136425, -0.012097409926354885, -0.005257720127701759, -0.010164687409996986, 0.015418828465044498, 0.00011922927660634741, -0.0031585693359375, 0.008153224363923073, -0.0028525548987090588, 0.005730163771659136, 0.007372977677732706, 0.021474691107869148, 0.022305047139525414, 0.0011909506283700466, 0.01378675177693367, 0.00902652833610773, 0.0002883424749597907, 0.014280670322477818, -0.029520543292164803, -0.00292950589209795, -0.011324320919811726, -0.01746608316898346, -0.01899794302880764, -0.005028657149523497, -0.0049928659573197365, -0.034874897450208664, -0.015690840780735016, -0.03049406222999096, 0.004921283572912216, 0.008002901449799538, -0.0002231354737887159, 0.015719475224614143, 0.004219776950776577, -0.014803220517933369, -0.002797078574076295, 0.015189765021204948, -0.00889052264392376, -0.005443834234029055, 0.01915542408823967, -0.025497617200016975, 0.0005194190889596939, 0.0008509346516802907, 0.0027398127131164074, 0.005003603175282478, -0.005995017942041159, -0.0068396893329918385, 0.00510023906826973, 0.004588425625115633, 0.005880486220121384, -0.010179003700613976, 0.029835505411028862, 0.00904800370335579, 0.008754516020417213, 0.0020544121507555246, -0.025168338790535927, 0.008546927012503147, -0.015676524490118027, 0.021846920251846313, 0.010171845555305481, -0.012641435489058495, 0.005007182247936726, -0.005848274566233158, 0.009928465820848942, 0.020587071776390076, 0.01699363999068737, 0.001395854982547462, 0.03169664368033409, 0.02649976871907711, 0.014223404228687286, -0.019083842635154724, -0.0016043384093791246, 0.019499020650982857, 0.010207637213170528, -0.006406616419553757, 0.002687915461137891, 0.008396604098379612, 0.009856883436441422, -0.006352929398417473, 0.005998597014695406, 0.009019370190799236, -0.017509032040834427, -0.0041338782757520676, 0.02144605852663517, -0.016449613496661186, 0.0011462116381153464, 0.02648545242846012, -0.0025358032435178757, 0.02847544103860855, 0.007480350788682699, -0.030694492161273956, 0.03332872316241264, -0.0013967497507110238, -0.016950689256191254, -0.029148314148187637, 0.0014271722175180912, -0.030694492161273956, -0.020157577469944954, 0.011109573766589165, 0.002457062713801861, 0.01866866461932659, -0.00038028100971132517, -0.01945606991648674, 0.0012795337243005633, -0.003656066255643964, -0.0017985054291784763, -0.019083842635154724, 0.039914295077323914, -0.009069478139281273, -0.01226204913109541, -0.008067325688898563, 0.011080941185355186, 0.012863339856266975, -0.0012965345522388816, 0.013951390981674194, -0.005719426088035107, -0.011202630586922169, 0.010522599332034588, -0.041116874665021896, -0.012899131514132023, -0.004334308672696352, 0.007967110723257065, -0.0001554678165121004, 0.014065923169255257, 0.006066600326448679, 0.018768880516290665, 0.0008903049165382981, -0.013965708203613758, -0.020415274426341057, -0.012025827541947365, 0.024581363424658775, 0.0134861059486866, 0.01264859363436699, 0.0036721723154187202, 0.00356479873880744, -0.008060167543590069, -0.005561945028603077, 0.00995709840208292, 0.01729428581893444, 0.000960097648203373, -0.017723778262734413, 0.00950613059103489, 0.002176102017983794, -0.0019506178796291351, -0.01186118833720684, -0.0029223475139588118, 0.005762375425547361, -0.002768445760011673, -0.025239920243620872, 0.007451718207448721, -0.009556237608194351, 0.005869749002158642, -0.0018432444194331765, 0.0005816062330268323], "6c2e3648-7641-41c1-83cf-2ef654b3e3c4": [0.010133755393326283, -0.0025750016793608665, -0.008826417848467827, 0.017395902425050735, -0.0278848297894001, -0.031557466834783554, 0.034338392317295074, 0.01815158873796463, -0.017123855650424957, 0.02782437577843666, 0.028716085478663445, 0.045159824192523956, -0.013715709559619427, -0.011773594655096531, -0.03600090369582176, 0.025995614007115364, -0.026176977902650833, 0.038509782403707504, -0.008176526986062527, -0.024846971035003662, 0.0756291002035141, -0.006540466099977493, -0.038509782403707504, 0.03373384475708008, 0.016111236065626144, -0.024635378271341324, -0.005444720853120089, 0.008002719841897488, -0.021809110417962074, -0.0045341188088059425, 0.03246428817510605, 0.002223607385531068, 0.025799134746193886, 0.02817199006676674, -0.0019364465260878205, -0.03923524171113968, -0.016186803579330444, 0.023365825414657593, -0.004016473423689604, 0.006238191854208708, -0.029683364555239677, 0.024423785507678986, 0.024514468386769295, -0.019874554127454758, -0.02768835239112377, -0.0012704977998510003, -0.006714274175465107, -0.018620114773511887, 0.005977479740977287, -0.03470112010836601, 0.0005285082152113318, -0.03727045655250549, 0.004076928365975618, -0.000298732309602201, 0.02638857066631317, -0.017350560054183006, 0.0031625477131456137, 0.06426357477903366, -0.024544695392251015, -0.06024332344532013, -0.02114410698413849, -0.02644902653992176, 0.02117433398962021, -0.00382755184546113, 0.021446380764245987, -0.00983903743326664, 0.0069900997914373875, -0.004273406695574522, -0.046943243592977524, 0.030333254486322403, 0.011614901013672352, 0.05147736147046089, -0.0091286925598979, 0.03454998508095741, -0.012151437811553478, 0.022927526384592056, 0.031345874071121216, -0.009778582490980625, 0.026826869696378708, 0.009642559103667736, 0.0029188389889895916, -0.014531850814819336, 0.045401640236377716, 0.018620114773511887, 0.06758859753608704, 0.009476307779550552, -0.02523992769420147, -0.03678681701421738, -0.021914906799793243, -0.03101337142288685, 0.012960022315382957, 0.014373156242072582, -0.009604774415493011, -0.02400060184299946, -0.017365675419569016, -0.011834049597382545, 0.01660998910665512, -0.022851958870887756, 0.024257535114884377, -0.022761275991797447, 0.015869416296482086, 0.015748506411910057, -0.046822331845760345, 0.02075115032494068, 0.008509029634296894, 0.008123629726469517, 0.018786365166306496, 0.021627746522426605, -0.02950199879705906, 0.02501322142779827, 0.03470112010836601, -0.0389631949365139, -0.016307713463902473, 0.02226252295076847, -0.020373307168483734, -0.023244915530085564, -0.041411615908145905, -0.03733091056346893, 0.007987605407834053, 0.011403308250010014, 0.00833522155880928, -0.0508728101849556, 0.0005275636212900281, 0.0002463065611664206, -0.028821881860494614, 0.022761275991797447, -0.0019874554127454758, 0.024862084537744522, 0.03458021208643913, 0.05359328165650368, -0.007791127543896437, -0.016217030584812164, 0.017184309661388397, 0.0029509556479752064, 0.0368170440196991, 0.01824227161705494, 0.021431267261505127, 0.05298873409628868, 0.0005884908023290336, 0.029638022184371948, -0.042681172490119934, -0.04727574437856674, -0.044041406363248825, 0.042711399495601654, 0.01843874901533127, 0.007058111485093832, -0.03754250332713127, 0.0067822858691215515, -0.02510390430688858, 0.007231919560581446, -0.04803143069148064, -0.015884529799222946, 0.0207813773304224, 0.0278848297894001, 0.02232297696173191, 0.00015208189142867923, -0.01122194342315197, 0.00695987232029438, 0.02073603682219982, 0.02374366857111454, 0.019980350509285927, -0.06994634121656418, 0.006408221088349819, -0.004262071568518877, 0.042892761528491974, 0.02534572407603264, 0.03176905959844589, 0.02647925354540348, -0.03869114816188812, 0.012181665748357773, 0.018650341778993607, -0.016035666689276695, 0.04386004060506821, -0.009748355485498905, -0.002705357503145933, -0.01934557408094406, 0.05903422459959984, 0.0417138934135437, 0.0032154459040611982, -0.03385475277900696, 0.004061814863234758, -0.0045303404331207275, -0.0002966069441754371, 0.00104190269485116, -0.03258519992232323, 0.007220583967864513, 0.005482505075633526, 0.00911357905715704, -0.021340586245059967, 0.014184234663844109, -0.006733166519552469, -0.0050895484164357185, -0.0004158637020736933, 0.05613239109516144, 0.02678152732551098, -0.04083729535341263, 0.028700971975922585, 0.022882185876369476, -0.010912111960351467, 0.013745936565101147, -0.0033212420530617237, -0.020388420671224594, -0.007447289768606424, 0.05350260064005852, -0.05845990404486656, 0.006838962435722351, -0.02530038170516491, -0.009438524022698402, 0.02380412258207798, -0.003578175324946642, 0.04083729535341263, -0.014501622878015041, -0.0017069068271666765, 0.019300231710076332, -0.004658807069063187, 0.005165116861462593, -0.014494066126644611, 0.02656993642449379, -0.003835108829662204, -0.03080178052186966, 0.00456434627994895, -0.0025579987559467554, -0.003334466367959976, -0.022776389494538307, -0.03781455010175705, -0.014305144548416138, -0.012136324308812618, 0.014426054432988167, -0.02653970755636692, -0.013526787050068378, 0.04911961778998375, -0.015060830861330032, 0.03270610794425011, -0.02520970068871975, -0.004734375514090061, 0.012461269274353981, 0.027053574100136757, -0.009098464623093605, -0.00455678952857852, -0.049724169075489044, 0.017713289707899094, 0.008917099796235561, -0.019133981317281723, -0.02527015469968319, -0.010677849873900414, 0.008168970234692097, -0.028187105432152748, 0.03473135083913803, 0.040988434106111526, 0.01543867401778698, -0.02959268167614937, 0.005142446141690016, -0.02114410698413849, -0.014509179629385471, -0.023139119148254395, 0.03920501470565796, 0.0475175641477108, -0.025738680735230446, 0.0005233128904365003, -0.009566990658640862, -0.0033930321224033833, 0.03204110637307167, 0.022655479609966278, -0.0133680934086442, 0.019164208322763443, -0.030287912115454674, 0.05353282764554024, -0.048243023455142975, 0.02369832806289196, 0.05359328165650368, -0.00904556643217802, 0.0005610971711575985, 0.00736416457220912, 0.027643010020256042, 0.017970222979784012, -0.024877198040485382, 0.0070014349184930325, 0.005920803174376488, -0.000666893320158124, -0.019270004704594612, 0.0018911053193733096, -0.011773594655096531, 0.0168820358812809, 0.011486434377729893, 0.0392654687166214, 0.0007386835059151053, -0.018907275050878525, 0.007050554733723402, -0.04775938391685486, -0.02224740944802761, 0.006396885961294174, 0.015151513740420341, 0.015166627243161201, 0.006143731065094471, -0.00973324105143547, 0.013050705194473267, -0.02099297009408474, -0.03182951360940933, -0.02236831933259964, 0.027658123522996902, 0.019300231710076332, -0.033461794257164, -0.016201917082071304, -0.027068689465522766, 0.04361822083592415, -0.004352753981947899, 0.02947177179157734, 0.005286026746034622, -0.021506836637854576, 0.041260480880737305, 0.02776391990482807, -0.00026165644521825016, 0.009884378872811794, -0.012166552245616913, -0.0091286925598979, 0.009279829449951649, -0.010813873261213303, -0.017274992540478706, -0.027053574100136757, 0.0019969013519585133, 0.03766341134905815, 0.016337940469384193, -0.09497467428445816, 0.014796340838074684, 0.04307412728667259, -0.024892311543226242, 0.020660467445850372, -0.019149094820022583, -0.009665229357779026, -0.031224964186549187, -0.03334088623523712, -0.004367867484688759, -0.05468147248029709, 0.03216201439499855, -0.003309906693175435, -0.026252547279000282, -0.03352225199341774, -0.027189599350094795, 0.014909693971276283, -0.01976875774562359, -0.01664021611213684, -0.03083200752735138, -0.005029093474149704, -0.028670743107795715, 0.042802080512046814, -0.019965235143899918, 0.012423485517501831, 0.016171690076589584, -0.002841381123289466, 0.027597669512033463, 0.0009063514298759401, -0.007949821650981903, 0.03089246153831482, 0.0051008835434913635, -0.0008071676129475236, -0.011327739804983139, -0.039900243282318115, -0.006559358444064856, 0.027114029973745346, 0.011456206440925598, -0.015657823532819748, -0.0366659052670002, -0.0026354563888162374, -0.018559658899903297, -0.0011826492846012115, 0.023562302812933922, 0.017562152817845345, 0.0036631901748478413, 0.005985036492347717, 0.003806770546361804, -0.01039824541658163, 0.026071183383464813, -0.020388420671224594, -0.01459986250847578, 0.001184538472443819, -0.02533061057329178, 0.014426054432988167, 0.0071261231787502766, -0.035728856921195984, 0.025708453729748726, 0.018846821039915085, 0.027038460597395897, 0.012121210806071758, -0.0039938027039170265, 0.02082671783864498, -0.0028054858557879925, -0.02105342410504818, -0.014562077820301056, -0.0182573851197958, -0.004401873797178268, -0.04029320180416107, 0.019209548830986023, -0.01697271689772606, 0.018997957929968834, -0.012755987234413624, 0.028927678242325783, -0.02103831060230732, -0.00594725226983428, 0.021370813250541687, -0.005380487535148859, -0.004870399367064238, -0.020207054913043976, 0.024801628664135933, -0.009317614138126373, 0.02675130032002926, -0.029003245756030083, -0.004265849944204092, 0.0022765053436160088, 0.009226931259036064, -0.008614826016128063, -0.01268041878938675, -0.009891935624182224, 0.02534572407603264, 0.025587543845176697, 0.017758632078766823, 0.019889667630195618, -0.024786515161395073, 0.03521499037742615, -0.005301140248775482, 0.005335146561264992, 0.02217184007167816, 0.031708601862192154, -0.0022481672931462526, 0.03627295047044754, -0.0110405795276165, 0.024106398224830627, -0.014970148913562298, 0.01654953323304653, -0.007481296081095934, 0.0003428927157074213, 0.030212344601750374, 0.04089774936437607, 0.001966673880815506, -0.015023047104477882, -0.004447214771062136, -0.021793996915221214, -0.0052520208992064, -0.014932364225387573, 0.006381771992892027, 0.004689034540206194, -0.006506460253149271, 0.01671578362584114, -0.016262372955679893, 0.00844857469201088, -0.009982617571949959, -0.05135644972324371, -0.023441392928361893, 0.0009290220332331955, 0.013783721253275871, 0.021809110417962074, -0.014932364225387573, -0.0033287988044321537, -0.05755307897925377, -0.007503966335207224, -0.010579610243439674, -0.024710947647690773, -0.010851657018065453, 0.0011061360128223896, 0.008932214230298996, -0.01809113286435604, -0.05177963525056839, 0.006389328744262457, 0.015612482093274593, 0.013179171830415726, 0.012302575632929802, -0.04355776682496071, -0.04842438921332359, -0.002182044554501772, 0.017698176205158234, 0.012219449505209923, 0.006661375984549522, -0.012385700829327106, -0.038630690425634384, 0.0239854883402586, -0.02226252295076847, -0.03204110637307167, -0.012907125055789948, -0.01110103353857994, 0.023003095760941505, -0.018877048045396805, 0.029154382646083832, -0.029940297827124596, -0.025829363614320755, 0.0017361895879730582, 0.03252474591135979, 0.01327741052955389, -0.0024219751358032227, -0.01257462240755558, 0.0395677424967289, -0.016247259452939034, 0.004092042334377766, 0.010949896648526192, -0.0022349427454173565, 0.02675130032002926, -0.010473813861608505, -0.03270610794425011, -0.007919593714177608, -0.04364844784140587, 0.0210836511105299, -0.038509782403707504, 0.03687749803066254, 0.018695682287216187, -0.0017390234861522913, 0.032796792685985565, 0.014939920976758003, 0.015567140653729439, -0.013451218605041504, -0.01394997164607048, 0.014108666218817234, 0.0005450388416647911, -0.027114029973745346, -0.03724022954702377, -0.03213178738951683, -0.006846519187092781, 0.006831405684351921, 0.0058641270734369755, -0.011305069550871849, 0.004126048181205988, 0.015113729052245617, -0.01818181574344635, -0.005270912777632475, -0.04775938391685486, -0.011924732476472855, -0.004462328273802996, -0.04153252765536308, -0.01184916403144598, -0.00031691600452177227, -0.017350560054183006, 0.022897299379110336, -0.03693795204162598, -0.012378144077956676, 0.007628654595464468, -0.001878825481981039, 0.000646111904643476, 0.034005891531705856, 0.0069863214157521725, -0.017078513279557228, 0.015196854248642921, 0.004836393520236015, 0.011493991129100323, -0.014698101207613945, 0.012914681807160378, 0.010118641890585423, -0.01692737638950348, -0.0084788016974926, 0.027250053361058235, -0.005818785633891821, 0.026282774284482002, -0.0013158390065655112, 0.017184309661388397, -0.03249451890587807, 0.0058792405761778355, -0.014985262416303158, 0.0009021006990224123, 0.020222170278429985, -0.018922388553619385, 0.02241365984082222, -0.0008964330772869289, -0.03872137516736984, -0.03938637673854828, 0.01337565016001463, 0.009302500635385513, 0.0368170440196991, 0.013821505010128021, -0.004137383308261633, -0.0037085311487317085, -0.028655629605054855, 0.005588301457464695, -0.006181515287607908, 0.03312929347157478, 0.028549835085868835, -0.019980350509285927, 0.04177434742450714, 0.03947706148028374, -0.014017983339726925, 0.023154232650995255, 0.00043192203156650066, 0.003421370405703783, -0.031194737181067467, -0.025527087971568108, 0.03210156038403511, -0.011713139712810516, 0.0007037330069579184, -0.010118641890585423, -0.007250811439007521, 0.019919894635677338, -0.049421895295381546, -0.018846821039915085, -0.017305219545960426, 0.015219525434076786, 0.004636136349290609, 0.024136625230312347, 0.0012865561293438077, 0.014562077820301056, -0.016081007197499275, 0.02076626382768154, -0.012400814332067966, 0.012136324308812618, 0.04340662807226181, -0.0030340810772031546, 0.01982921175658703, -0.011788709089159966, -0.001875991583801806, 0.004394316580146551, -0.002165041631087661, 0.0051084402948617935, 0.024393558502197266, 0.008244539611041546, 0.006718052551150322, -0.0006513072876259685, -0.008425903506577015, -0.022685706615447998, 0.029743818566203117, 0.017259879037737846, 0.002187712350860238, -0.008274766616523266, 0.015015489421784878, 0.014426054432988167, 0.01255195215344429, -0.0041902814991772175, -0.010020402260124683, -0.03228292614221573, 0.04322526603937149, -0.038328416645526886, 0.038267962634563446, 0.017365675419569016, -0.0005327589460648596, -0.0253608375787735, 0.001563326339237392, 0.012755987234413624, -0.016413509845733643, -0.02666061744093895, -0.0009611386922188103, -0.015491572208702564, 0.012597293592989445, -0.025451520457863808, -0.014327814802527428, -0.006702939048409462, -0.015733391046524048, -0.033975664526224136, 0.011425979435443878, 0.014486509375274181, 0.013700595125555992, 0.04225798696279526, -0.006045491434633732, 0.005969922989606857, -0.03784477710723877, 0.010043072514235973, 0.03657522425055504, 0.005682762246578932, -0.020494217053055763, 0.0054560559801757336, 0.012514167465269566, 0.016413509845733643, 0.012899567373096943, 0.006468676030635834, 0.006472454406321049, 0.010269778780639172, 0.008297436870634556, -0.010745861567556858, 0.0476687029004097, -0.006128617096692324, 0.007462403737008572, 0.018574772402644157, 0.006668932735919952, 0.011803822591900826, 0.021673087030649185, 0.031104054301977158, 0.0443134531378746, 0.0051046619191765785, 0.014501622878015041, -0.00348749291151762, 0.01806090585887432, -0.0050857700407505035, 0.013451218605041504, 0.0034988282714039087, -0.027627896517515182, 0.0019421142060309649, -0.003914455883204937, -3.2116673537530005e-05, -0.03370361402630806, -0.03192019462585449, -0.014259803108870983, 0.0067822858691215515, -0.018861934542655945, -0.0064422269351780415, -0.02248922921717167, 0.02537595108151436, -0.018514318391680717, -0.007745786104351282, 0.045220278203487396, -0.0030888684559613466, -0.013572128489613533, -0.01828761212527752, 0.015227082185447216, 0.018665455281734467, -0.005731881596148014, -0.01804579235613346, 0.018620114773511887, -0.0011033022310584784, -0.053925786167383194, -0.03173883259296417, 0.004356532357633114, 0.004466107115149498, 0.042802080512046814, 0.004681477788835764, -0.017290106043219566, -0.024484241381287575, 0.010995238088071346, 0.004723040387034416, -0.012423485517501831, -0.009189147502183914, 0.01339076366275549, 0.024816742166876793, 0.020463990047574043, 0.0065706935711205006, -0.011962516233325005, 0.006321317050606012, 0.0024710947182029486, 0.042560260742902756, -0.008561927825212479, 0.029819387942552567, 0.013753493316471577, -0.01813647523522377, -0.029894955456256866, 0.02114410698413849, 0.01818181574344635, 0.016443736851215363, 0.0045303404331207275, 0.0017909768503159285, 0.017305219545960426, 0.0051046619191765785, 0.0045341188088059425, -0.005845234729349613, 0.0070052132941782475, -0.028534719720482826, 0.00024170159304048866, 0.02523992769420147, 0.013164058327674866, -0.034126799553632736, 0.016005439683794975, -0.012468826025724411, 0.020584898069500923, 0.0014660317683592439, -0.02221718244254589, 0.009385625831782818, 0.030242571607232094, -0.0022462778724730015, -0.009884378872811794, -0.008131186477839947, 0.04785006493330002, -0.03204110637307167, 0.03204110637307167, 0.013216955587267876, 0.0006697271019220352, 0.026176977902650833, 0.03334088623523712, -0.007454846985638142, -0.009657672606408596, 0.028504492715001106, -0.021401040256023407, 0.0045530106872320175, 0.009876822121441364, 0.011138818226754665, -0.001976120052859187, -0.007194134872406721, -0.004046700894832611, -0.004825057927519083, 0.02211138606071472, -0.01391974464058876, 0.0643240287899971, 0.050933267921209335, 0.024680718779563904, 0.029033472761511803, -0.0030794222839176655, -0.014169121161103249, 0.010813873261213303, 0.0064346701838076115, -0.024892311543226242, -0.00598881533369422, -0.016398396342992783, -0.04162320867180824, 0.02242877334356308, -0.03264565393328667, 0.011033021844923496, -0.00843346118927002, 0.02256479673087597, -0.008788633160293102, -0.02120456099510193, -0.016987832263112068, -0.010677849873900414, -0.0017135189846158028, -0.0012903346214443445, -0.007114788051694632, 0.02956245467066765, -0.01689714938402176, -0.001354567939415574, -0.017002945765852928, -0.015264865942299366, 0.02523992769420147, 0.002335071098059416, -0.03198065236210823, 0.05304918810725212, 0.056404437869787216, 0.007734450977295637, 0.014562077820301056, -0.007760900072753429, -0.0042016166262328625, -0.004741932265460491, -0.009612332098186016, -0.008085845038294792, 0.0023671877570450306, -0.0033968104980885983, 0.015778733417391777, -0.031648147851228714, -0.011773594655096531, -0.011713139712810516, 0.0223834328353405, 0.045250505208969116, 0.017380788922309875, -0.022987982258200645, 0.01198518741875887, -0.010050630196928978, 0.02365298569202423, -0.021612633019685745, 0.020433761179447174, 0.02236831933259964, -0.003122874302789569, -0.01459986250847578, 0.013179171830415726, 0.019058411940932274, -0.013073375448584557, 0.006589585915207863, 0.034247711300849915, 0.0006276920321397483, -0.005992593709379435, 0.006940979976207018, 0.009378069080412388, -0.020584898069500923, 0.03083200752735138, -0.02369832806289196, -0.04382981359958649, -0.014826567843556404, -0.0009975060820579529, 0.011773594655096531, 0.013662811368703842, 0.003536612493917346, 0.0019987907726317644, 0.003247562563046813, 0.04875688999891281, 0.027008233591914177, -0.03953751549124718, -0.011297512799501419, 0.01531776413321495, -0.013103603385388851, 0.0415627546608448, -0.04748733714222908, 0.017547039315104485, -0.0038218842819333076, 0.008199198171496391, 0.02377389557659626, 0.0012903346214443445, -0.03087734803557396, 0.013655254617333412, -0.010730748064815998, -0.024831857532262802, -0.008599711582064629, 0.0069825430400669575, 0.01845386251807213, 0.04361822083592415, 0.005735659971833229, -0.032857246696949005, 0.002057356294244528, -0.01258973591029644, -0.02508879080414772, -0.005769666284322739, -0.01837829500436783, 0.010458700358867645, -0.035789310932159424, -0.012854226864874363, -0.015347992070019245, 0.018574772402644157, 0.02814176306128502, 0.006377993617206812, -0.03198065236210823, -0.010798759758472443, -0.024544695392251015, 0.002616564277559519, -0.0031115389429032803, -0.03869114816188812, -0.010617394931614399, 0.009952390566468239, 0.014879466034471989, 0.002775258384644985, -0.027673237025737762, 0.022836845368146896, 0.014652760699391365, 0.009438524022698402, 0.004560567904263735, 0.005588301457464695, -0.01037557516247034, -0.04334617406129837, -0.05147736147046089, -0.021416153758764267, 0.045341186225414276, -0.019194435328245163, 0.02501322142779827, -0.0060152639634907246, 0.010760975070297718, 0.01391974464058876, 0.008796189911663532, 0.02096274308860302, -0.0034988282714039087, -0.0333106592297554, 0.01651930622756481, 0.01339832041412592, 0.016292599961161613, -0.003959796857088804, -0.012136324308812618, 0.012166552245616913, 0.028821881860494614, 0.026902437210083008, 0.01837829500436783, 0.007046776358038187, -0.009189147502183914, -0.00968790054321289, -0.022685706615447998, -0.01476611290127039, -0.009453637525439262, 0.0237587820738554, -0.01660998910665512, -0.010156425647437572, 0.01650419272482395, -0.005115997511893511, 0.042499806731939316, 0.003164437133818865, 0.004915740340948105, -0.005973701365292072, -0.034036118537187576, -0.04068616032600403, 0.004832614678889513, 0.010934783145785332, 0.020615126937627792, -0.04086752235889435, -0.013889516703784466, -0.028957905247807503, -0.004609687253832817, 0.014131336472928524, -0.01828761212527752, 0.012393257580697536, 0.011728254146873951, 0.03101337142288685, -0.014342929236590862, -0.0009757801308296621, 0.014675430953502655, 0.022715935483574867, -0.005346481688320637, 0.014509179629385471, -0.01258973591029644, 0.0018523763865232468, 0.005792336538434029, -0.005391822662204504, -0.03318974748253822, 0.004016473423689604, -0.03727045655250549, 0.022020703181624413, -0.03524521738290787, -0.017577266320586205, 0.0118793910369277, -0.01659487374126911, -0.016337940469384193, 0.00277148000895977, -0.028564948588609695, 0.03663567826151848, -0.023562302812933922, -0.018922388553619385, -0.017939995974302292, -0.0025693338830024004, -0.02218695357441902, -0.016201917082071304, 0.03965842351317406, -0.030484391376376152, -0.017879541963338852, 0.010556939989328384, -0.003546058665961027, 0.008652609772980213, 0.01109347678720951, 0.009340284392237663, -0.025496860966086388, 0.04509936645627022, 0.023154232650995255, -0.005025315098464489, -0.0110405795276165, 0.0013394542038440704, 0.008599711582064629, -0.028821881860494614, -0.005856569856405258, -0.031466782093048096, 0.004462328273802996, -0.039688654243946075, 0.016489079222083092, 0.008977554738521576, -0.0073490506038069725, 0.022882185876369476, 0.019209548830986023, -0.0032362272031605244, -0.00347993616014719, -0.03084712103009224, 0.003793545998632908, 0.0003306128201074898, 0.004054257646203041, -0.01809113286435604, 0.001014509005472064, -0.021476609632372856, 0.003519609570503235, 0.007511523552238941, 0.02919972501695156, -0.030030978843569756, -0.0025957829784601927, 0.02640368416905403, 0.0027563662733882666, -0.0042394008487463, -0.0010192320914939046, -0.016171690076589584, -0.01201541442424059, -0.0038048813585191965, -0.0005252020782791078, 0.0053200325928628445, 0.019149094820022583, 0.017894655466079712, -0.008954884484410286, -0.015159070491790771, -0.009929720312356949, -0.0037557617761194706, -0.007148793898522854, -0.018846821039915085, 0.016368169337511063, -0.08645053207874298, -0.023169346153736115, -0.011501547880470753, 0.02120456099510193, 0.005270912777632475, 0.005792336538434029, 0.014826567843556404, -0.011471319943666458, -0.0056752050295472145, -0.006718052551150322, -0.02392503246665001, -0.017108742147684097, 0.032947927713394165, 0.011713139712810516, -0.019300231710076332, 0.0036971960216760635, -0.021854452788829803, -0.016232144087553024, 0.00032541746622882783, -0.003359026275575161, -0.0023747447412461042, 0.0023709661327302456, 0.03808659687638283, -0.003632962703704834, 0.017501698806881905, 0.049784623086452484, -0.02102319709956646, 0.006759615149348974, -0.015143956057727337, -0.006189072038978338, 0.0166553296148777, 0.00156993861310184, -0.029819387942552567, -0.023396052420139313, 0.03884228318929672, 0.005512732546776533, 0.02929040603339672, 0.014214462600648403, 0.018484091386198997, 0.0035970674362033606, 0.011410865001380444, -0.0028187104035168886, -0.004779716953635216, -0.03352225199341774, 0.004503891337662935, -0.01393485814332962, 0.0009852262446656823, -0.019028184935450554, 0.00553540326654911, 0.012083426117897034, 0.014887022785842419, 0.011025465093553066, -0.005913246423006058, -0.029048588126897812, -0.002852716250345111, 0.004666363820433617, 0.0027072466909885406, -0.014486509375274181, -0.006680268328636885, 0.008501472882926464, 0.04292299225926399, 0.02649436704814434, 0.009869265370070934, 0.011486434377729893, -0.02505856193602085, 0.006275976076722145, 0.011637571267783642, 0.03394543379545212, 0.03476157784461975, -0.010451143607497215, 0.004428322426974773, 0.0038426655810326338, -0.012438599020242691, 0.03069598414003849, 0.0029717369470745325, 0.019179321825504303, 0.04334617406129837, 0.005682762246578932, 0.02220206707715988, -0.005365374032407999, -0.026932666078209877, -0.000531342055182904, 0.024272648617625237, 0.002643013373017311, -0.004360310733318329, -0.015060830861330032, -0.001968563301488757, -0.014879466034471989, 0.014161564409732819, -0.004832614678889513, 0.011116147972643375, 0.007163907401263714, 0.04165343567728996, -0.0007759955478832126, 0.0019874554127454758, 0.017652835696935654, 0.013496560044586658, -0.01694248989224434, 0.01964784786105156, -0.005686540622264147, -0.014327814802527428, -0.03213178738951683, 0.006385550368577242, -0.0026071183383464813, -0.03201087936758995, 0.004673920571804047, 0.0023596310056746006, 0.03370361402630806, -0.015098615549504757, -0.0014320258051156998, -0.00520290108397603, -0.003608402796089649, -0.03684727102518082, -0.019133981317281723, -0.010760975070297718, 0.026857096701860428, -0.01809113286435604, -0.016111236065626144, -0.01460741925984621, -0.0008137798286043108, 0.0006942869513295591, 0.016035666689276695, -0.013481446541845798, -0.027234939858317375, -0.0041827242821455, -0.019889667630195618, -0.022579912096261978, -0.004390538204461336, -0.024197081103920937, 0.028398696333169937, -0.001590720028616488, 0.01392730139195919, -0.00900022592395544, -0.001802312210202217, -0.01691226288676262, 0.005626085679978132, 0.026857096701860428, -0.01951182447373867, 0.007658882066607475, -0.01981409825384617, 0.011342853307723999, 0.004998866003006697, -0.008093401789665222, -0.015189297497272491, 0.007175242993980646, -0.009582104161381721, -0.014796340838074684, -0.010851657018065453, -0.008607268333435059, -0.016020553186535835, -0.0003504495834931731, 0.013730823062360287, 0.02942643128335476, 0.004655028693377972, -0.009657672606408596, -0.007723115384578705, 0.0018212043214589357, 0.008055618032813072, 0.0015293204924091697, -0.007205470465123653, -0.032887473702430725, 0.020705807954072952, 0.0003598956682253629, -0.002170709427446127, 0.009317614138126373, -0.02392503246665001, -0.0090153394266963, -0.011116147972643375, 0.004012695048004389, 0.011342853307723999, 0.003136098850518465, 0.017199423164129257, -0.0417138934135437, -0.0022916190791875124, 0.02254968322813511, -0.016171690076589584, -0.0023294035345315933, -3.5164512155461125e-06, 0.006937201600521803, -0.012113654054701328, -0.006143731065094471, 0.014169121161103249, -0.003963575232774019, 0.041260480880737305, -0.011924732476472855, -0.008660166524350643, -0.014819011092185974, 0.01394997164607048, -0.010179096832871437, -0.0012317688670009375, 0.012370587326586246, 0.020690694451332092, -0.015612482093274593, 0.02675130032002926, -0.00451522646471858, 0.0025750016793608665, 0.03388497978448868, -0.001091022277250886, -0.02374366857111454, 0.008161413483321667, -0.041320934891700745, -0.03231315314769745, 0.007806241046637297, 0.01976875774562359, -0.006189072038978338, 0.005255799274891615, -0.015733391046524048, 0.011002794839441776, 0.02647925354540348, -0.014796340838074684, -0.003944683354347944, 0.020539557561278343, 0.02667573094367981, -0.014237132854759693, 0.008796189911663532, 0.009574547410011292, 0.004813722800463438, -0.038237735629081726, -0.014365599490702152, -0.005807450506836176, 0.018982844427227974, 0.004088263493031263, 0.011758481152355671, -0.011410865001380444, -0.005818785633891821, 0.011146374978125095, 0.01834806613624096, -0.04494823142886162, -0.018529431894421577, 0.0032003321684896946, -0.002136703347787261, -0.0013035591691732407, -0.016730897128582, -0.004416987299919128, -0.00843346118927002, -0.003549837041646242, 0.019889667630195618, -0.011698026210069656, 0.009997732006013393, -0.00831255130469799, -0.00832010805606842, -0.022610139101743698, 0.0028470486868172884, -0.004107155837118626, 0.035879991948604584, 0.008856644853949547, -0.009755912236869335, -0.003831330221146345, 0.017667949199676514, 0.00904556643217802, 0.0009304389241151512, -0.005338924936950207, 0.00848635844886303, 0.029985638335347176, -0.013436105102300644, 0.0035630615893751383, 0.008063174784183502, 0.004707926418632269, 0.009514092467725277, -0.004647471476346254, -0.016489079222083092, -0.000517645210493356, 0.02789994329214096, -0.012166552245616913, 0.02655482105910778, -0.004987530410289764, 0.010043072514235973, 0.005716768093407154, -0.0016341719310730696, -0.020494217053055763, 0.01048892829567194, -0.01403309777379036, -0.04056524857878685, 0.008569484576582909, 0.010791202075779438, 0.006895639002323151, -0.001934557338245213, -0.014516736380755901, 0.017335446551442146, -0.011773594655096531, -0.0038955637719482183, 0.006366658490151167, -0.02081160433590412, 0.024151738733053207, 0.02227763645350933, 0.004046700894832611, 0.038298189640045166, 0.015688050538301468, 0.030212344601750374, 0.0047721597366034985, 0.05066122114658356, 0.02103831060230732, 0.018831705674529076, -0.02495276741683483, 0.015597368590533733, -0.023124005645513535, 0.005697875749319792, 0.0053238109685480595, 0.030348367989063263, -0.01473588589578867, 0.003156880149617791, -0.006396885961294174, -0.0265094805508852, -0.015657823532819748, -0.013141387142241001, -0.0003018022689502686, 0.03328043222427368, 0.01689714938402176, 0.0019969013519585133, 0.004715483635663986, 0.00899266917258501, 0.026010727509856224, -0.0064233350567519665, -0.015536913648247719, 0.008531699888408184, 0.0058867973275482655, 0.0006446950137615204, -0.016201917082071304, 0.009347841143608093, -0.03185974061489105, 0.017305219545960426, -0.014819011092185974, 0.027582556009292603, 0.007590870372951031, -0.030076321214437485, -0.014388269744813442, -0.0013923522783443332, -0.007828911766409874, 0.009347841143608093, -7.02552279108204e-05, -0.0010324566392228007, 0.018756138160824776, 0.002962291007861495, -0.0027733691968023777, 0.010549383237957954, 0.005293583497405052, -0.008131186477839947, -0.010828986763954163, 0.015929870307445526, 0.006876746658235788, 0.0019270004704594612, 0.004360310733318329, -0.00553540326654911, 0.006903195753693581, 0.019315345212817192, 0.014274917542934418, 0.008161413483321667, -0.0003695779014378786, 0.019285118207335472, 0.00037807939224876463, 0.0012789993779733777, 0.03724022954702377, -0.007409505546092987, 0.004416987299919128, -0.00903800968080759, 0.009385625831782818, 0.013730823062360287, 0.006744501646608114, -0.01952693797647953, -0.013511673547327518, -0.00524446414783597, -0.019254891201853752, 0.01689714938402176, 0.02947177179157734, 0.0004522311210166663, 0.022836845368146896, 0.01697271689772606, -0.03757273033261299, 0.013897073455154896, -0.015332878567278385, 0.009264715947210789, -0.0013555125333368778, -3.5599918192019686e-05, -0.003483714535832405, -0.016020553186535835, 0.015393332578241825, 0.0012034307001158595, 0.029003245756030083, -0.006744501646608114, -0.0146300895139575, -0.005372930783778429, -0.0221567265689373, -0.013451218605041504, -0.01324718352407217, -0.0025957829784601927, -0.002915060380473733, 0.007587091997265816, -0.003430816577747464, -0.007813798263669014, -0.02253456972539425, -0.01270308904349804, 0.004798608832061291, 0.018695682287216187, 0.026222320273518562, 0.0037085311487317085, -0.0030038536060601473, -0.02106853760778904, 0.020539557561278343, -0.04854529723525047, -0.006079497281461954, -0.029033472761511803, -0.01819692924618721, -0.007228140719234943, 0.022685706615447998, -0.02672107331454754, 0.011818936094641685, -0.0012459380086511374, 0.00737172132357955, -0.002758255461230874, -0.015567140653729439, -0.0005157560226507485, -0.0023879692889750004, 0.014154007658362389, -0.020433761179447174, 0.0035139420069754124, 0.0003159714106004685, 0.016458850353956223, 0.016005439683794975, -0.006736944895237684, -0.02112899348139763, -0.01190206129103899, -0.01685180701315403, 0.014667874202132225, -0.028474265709519386, -0.020358193665742874, 0.03742159157991409, -0.011493991129100323, 0.008947327733039856, 0.004061814863234758, 0.005414493381977081, -0.004447214771062136, 0.008856644853949547, -0.017622608691453934, 0.013284968212246895, 0.05997127667069435, -0.012612407095730305, 0.018665455281734467, -0.017849313095211983, 0.017637722194194794, -0.024680718779563904, -0.03328043222427368, -0.0183329526335001, 0.0016625102143734694, 0.002042242558673024, 0.015121285803616047, -0.006506460253149271, 0.021249903365969658, 0.010065743699669838, 0.026086296886205673, 0.0028187104035168886, -0.023093778640031815, -0.03458021208643913, 0.0076853311620652676, 0.00455678952857852, -0.0002173779357690364, -0.005425828509032726, 0.0010674070799723268, -0.0010655178921297193, 0.010874328203499317, 0.023320483043789864, 0.030469277873635292, -0.014244689606130123, -0.014305144548416138, 0.01819692924618721, 0.0028073752764612436, 0.016096120700240135, 0.019935008138418198, -0.015340435318648815, -0.034096572548151016, 0.004443436395376921, 0.02090228721499443, -0.012264790944755077, -0.001896772999316454, -0.009876822121441364, 0.0030076319817453623, -0.004870399367064238, -0.029260179027915, -0.00973324105143547, -0.011713139712810516, -0.035819537937641144, 0.019194435328245163, 0.0031247634906321764, -0.009521649219095707, 0.0069825430400669575, 0.02403082884848118, -0.005463613197207451, 0.01267286203801632, 0.012264790944755077, -0.015332878567278385, 0.03630317747592926, -0.01653441973030567, 0.0033816967625170946, -0.03225269913673401, 0.010451143607497215, 0.0013866845984011889, -0.035789310932159424, -0.011146374978125095, -0.02093251422047615, 0.030046094208955765, 0.011569559574127197, 0.008252096362411976, -0.007598427124321461, -0.03506385162472725, 0.006922088097780943, 0.00033084896858781576, -0.0064271134324371815, 0.013753493316471577, 0.00915891956537962, -0.011667799204587936, 0.014169121161103249, -0.0003074699197895825, 0.011660241521894932, -0.022867072373628616, -0.014433611184358597, -0.020055918022990227, -0.003823773469775915, -0.004700369667261839, -0.0010296227410435677, -0.008629939518868923, 0.0041902814991772175, 0.004662585444748402, -0.04174412041902542, 0.010798759758472443, 0.0016606210265308619, 0.009657672606408596, 0.01683669351041317, -0.015582255087792873, 0.0017172974767163396, -0.02520970068871975, -0.02806619554758072, 0.01326229702681303, 0.004870399367064238, 0.007190356496721506, 0.0002094668452627957, 0.01039824541658163, -0.004095820710062981, 0.00450011296197772, -0.005686540622264147, -0.008244539611041546, 0.011939845979213715, -0.0011760370107367635, -0.0014716993318870664, -0.014138893224298954, 0.004292299039661884, -0.0009701125090941787, 0.06468676030635834, 0.003963575232774019, 0.005365374032407999, 0.004813722800463438, -0.005905689671635628, -0.023169346153736115, 0.013133830390870571, 0.010322676971554756, 0.03264565393328667, -0.0019496710738167167, -0.007443511392921209, -0.015340435318648815, 0.017728405073285103, 0.020584898069500923, -0.013330308720469475, 0.005021536257117987, 0.027401190251111984, 0.0016917930915951729, -0.002236831933259964, 0.02232297696173191, -0.004039144143462181, 0.031527239829301834, -0.024287762120366096, 0.011803822591900826, -0.007265925407409668, 0.02667573094367981, -0.015824073925614357, 0.008901986293494701, -0.01051159854978323, 0.02663039043545723, -0.006313760299235582, 0.007141237147152424, -0.02394014596939087, 0.004129826556891203, -0.006529130972921848, 0.007957378402352333, 0.016292599961161613, 0.017244765534996986, -0.022685706615447998, 0.01323207002133131, 0.005021536257117987, -0.003041638061404228, 0.04440413415431976, 0.023456508293747902, -0.007175242993980646, -0.0005365373799577355, 0.0012204336235299706, -0.005792336538434029, 0.0004926131223328412, -0.012264790944755077, -0.009249602444469929, -0.00844857469201088, 0.00559963658452034, 0.013216955587267876, 0.010443586856126785, 0.002525881864130497, 0.002476762281730771, -0.006049270275980234, -0.00846368819475174, 0.00835033506155014, -0.014138893224298954, -0.011410865001380444, -0.009393182583153248, -0.007492631208151579, -0.008773519657552242, -0.015219525434076786, -0.007526637054979801, -0.013526787050068378, -0.002074359217658639, -0.00633643101900816, -0.013768606819212437, 0.032796792685985565, 0.01461497601121664, -0.03065064176917076, -0.021960249170660973, 0.015506685711443424, -0.0014953145291656256, 0.021567290648818016, 0.012468826025724411, 0.0015066498890519142, 0.004296077415347099, 0.005055542569607496, -0.007658882066607475, -0.024212194606661797, 0.010889441706240177, 0.010949896648526192, -0.002410639775916934, -0.022020703181624413, 0.0024956543929874897, -0.007522858679294586, -0.021930020302534103, 0.002004458336159587, 0.011380637995898724, 0.010708076879382133, 0.00833522155880928, -0.007383056450635195, -0.008826417848467827, -0.019859440624713898, 0.00766266044229269, 0.00983148068189621, -0.005962366238236427, 0.0069900997914373875, -0.010466257110238075, -0.0007618264062330127, -0.008645053021609783, -0.0038048813585191965, 0.006064383778721094, 0.017033172771334648, -0.029033472761511803, 0.016065893694758415, -0.020600013434886932, -0.022912412881851196, 0.013005363754928112, -0.008841531351208687, -0.033975664526224136, 0.005467391572892666, 0.007987605407834053, -0.012922238558530807, -0.0027318065986037254, -0.028444038704037666, 0.011002794839441776, 0.0021234790328890085, -0.009098464623093605, -0.010095970705151558, 0.014698101207613945, 0.012914681807160378, -0.01265774853527546, -0.0067898426204919815, -0.011690469458699226, -0.0254364050924778, 0.006396885961294174, -0.003956018481403589, 0.0031833292450755835, -0.006517795845866203, 0.015703164041042328, -0.00832010805606842, -0.0026316780131310225, 0.009884378872811794, 0.029169496148824692, -0.025663111358880997, 0.005482505075633526, 0.008191641420125961, 0.01197763066738844, 0.017365675419569016, 0.00010715398093452677, 0.0073339371010661125, -0.020524444058537483, -0.0210080835968256, -0.00846368819475174, -0.005229350179433823, 0.021385926753282547, -0.015808960422873497, -0.0010995237389579415, -0.0005167006165720522, -0.010738304816186428, 0.0012043752940371633, -0.017683062702417374, 0.016307713463902473, -0.017290106043219566, -0.004602130502462387, 0.01531776413321495, 0.0023596310056746006, -0.017879541963338852, -0.003744426416233182, -0.011682912707328796, 0.0028697194065898657, 0.012483940459787846, 0.027068689465522766, 0.004450993146747351, -0.008826417848467827, -0.0005965199670754373, 0.010919669643044472, 0.014939920976758003, -0.024605151265859604, 0.0090153394266963, -0.0021234790328890085, -0.0025334388483315706, 0.0042091733776032925, -0.017184309661388397, 0.023214688524603844, 0.010760975070297718, -0.008697951212525368, 0.028383582830429077, 0.007507744710892439, -0.012771100737154484, -0.01806090585887432, 0.02400060184299946, -0.015824073925614357, -0.001976120052859187, 0.008554371073842049, -0.014191791415214539, 0.009226931259036064, -0.00024181966728065163, -0.012612407095730305, -0.008373006246984005, -0.011274841614067554, 0.02226252295076847, 0.02087206020951271, -0.013541901484131813, -0.007469960488379002, -0.004605908878147602, -0.009869265370070934, 0.017728405073285103, -0.00968034379184246, -0.0039786892011761665, -0.019224664196372032, -0.005369152408093214, -0.006238191854208708, 0.0002414654300082475, 0.015378219075500965, -0.03938637673854828, -0.027053574100136757, 0.0007977214991115034, -0.004987530410289764, -0.026101410388946533, 0.02362275868654251, 0.017441242933273315, 0.019133981317281723, 0.023305369541049004, 0.021869566291570663, 0.017395902425050735, -0.004503891337662935, 0.019028184935450554, -0.010564496740698814, -0.023063549771904945, -0.001869379309937358, 0.031164510175585747, 0.004787273705005646, -0.005849013105034828, -0.02542129158973694, 0.03660545125603676, -0.015642710030078888, 0.005025315098464489, 0.011320183053612709, 0.011630014516413212, 0.04319503903388977, 0.01834806613624096, 0.011373081244528294, 0.017849313095211983, -0.012242120690643787, -0.009891935624182224, -0.00737927807494998, -0.016307713463902473, 0.0009006838081404567, 0.004828836303204298, -0.014184234663844109, 0.008773519657552242, 0.007428397890180349, -0.018922388553619385, -2.7349355150363408e-05, 0.002858384046703577, -0.006347766146063805, -0.011320183053612709, 0.005728103220462799, -0.00732260150834918, 0.019103754311800003, 0.005497619044035673, -0.0002611841191537678, -0.005512732546776533, -0.024529581889510155, 0.014101109467446804, 0.008652609772980213, -0.017819086089730263, -0.013670368120074272, 0.004877956118434668, 0.022035816684365273, -0.031648147851228714, 0.022655479609966278, -0.0006262751412577927, 0.013829061761498451, -0.005694097373634577, -0.002796039916574955, 0.02539106458425522, 0.015960097312927246, -0.005429607350379229, -0.009740798734128475, -0.017577266320586205, -0.0132547402754426, 0.005773444660007954, 0.03270610794425011, 0.009106021374464035, 0.006593364290893078, -0.005467391572892666, -0.024151738733053207, 0.00421673059463501, -0.02117433398962021, 0.003595178248360753, 0.013534344732761383, 0.0036027352325618267, -0.008697951212525368, 0.01671578362584114, -0.013020477257668972, 0.02522481419146061, -0.013844176195561886, 3.778432437684387e-05, 0.000193644649698399, 0.0090153394266963, 0.007443511392921209, 0.004673920571804047, 0.002522103488445282, 0.002482430078089237, -0.007492631208151579, -0.0030926468316465616, -0.029093928635120392, 0.023063549771904945, -0.004024030175060034, 0.023441392928361893, 0.015824073925614357, -0.015763619914650917, 0.0032664546743035316, 0.010247108526527882, 0.015121285803616047, -0.014947477728128433, -0.0022708377800881863, -0.034157026559114456, -0.00916647631675005, 0.013655254617333412, 0.011766037903726101, -0.02363787218928337, -0.0018627671524882317, 0.004519004840403795, -0.002132924972102046, 0.010050630196928978, 0.011418422684073448, 0.0042016166262328625, -0.004265849944204092, 0.00629486795514822, 0.0067936209961771965, 0.007451068609952927, -0.008886872790753841, 4.628579699783586e-05, 0.007658882066607475, -0.01819692924618721, -0.00900778267532587, -0.010035515762865543, 0.016232144087553024, -0.01116904616355896, -0.016096120700240135, -0.011002794839441776, -0.001059850212186575, -0.017320333048701286, -0.017426129430532455, -0.005690318997949362, -0.002903725253418088, 0.009211817756295204, 0.014146449975669384, 0.0168820358812809, -0.008040503598749638, 0.028776539489626884, 0.002915060380473733, 0.0002800762886181474, -0.004632357973605394, 0.0005596802802756429, 0.019224664196372032, -0.02805108018219471, 0.02221718244254589, 0.013791278004646301, 0.008871759288012981, -0.0038880067877471447, 0.01946648210287094, -0.015778733417391777, 0.017426129430532455, -0.00972568430006504, -0.011153931729495525, 0.008176526986062527, -0.006914530880749226, -0.013171615079045296, 0.03325020521879196, -0.04470641165971756, -0.011463763192296028, 0.008214311674237251, -0.03321997821331024, -0.024423785507678986, -0.01189450453966856, -0.0029717369470745325, 0.01978387124836445, 0.005270912777632475, -0.010111085139214993, -0.003910677507519722, -0.0036650793626904488, 0.0133680934086442, -0.003181440057232976, -0.014373156242072582, -0.019013071432709694, -0.00969545729458332, 0.015196854248642921, 0.03182951360940933, -0.010262222029268742, -0.002029018010944128, -0.01188694778829813, 0.006204185541719198, -0.008765962906181812, -0.0019874554127454758, 0.00048789006541483104, 0.009635002352297306, -0.0012393257347866893, -0.009196704253554344, 0.026857096701860428, 0.007462403737008572, 0.00022092020662967116, -0.0017900322563946247, -0.004836393520236015, 0.017320333048701286, 0.012363030575215816, -0.0017409126739948988, -0.023003095760941505, -0.017320333048701286, 0.01842363551259041, 0.02806619554758072, -0.001712574390694499, 0.023335598409175873, 0.002195269102230668, -0.023275142535567284, -0.0015368773601949215, 0.011554446071386337, 0.0053275893442332745, 0.011599786579608917, -0.0103906886652112, 0.0011665909551084042, 0.0035668399650603533, -0.003011410590261221, 0.010111085139214993, 0.028685858473181725, -0.00167479005176574, 0.00900022592395544, 0.013164058327674866, 0.021325470879673958, -0.0037141989450901747, 0.0004996976931579411, -0.009559433907270432, -0.0009786139708012342, -0.010927226394414902, -0.00555051676928997, -0.005346481688320637, -0.01842363551259041, -0.01545378752052784, 0.032766565680503845, -0.01812136173248291, 0.01475855614989996, 0.00020970299374312162, -0.001520819030702114, -0.0033287988044321537, 0.0056449780240654945, 0.04292299225926399, 0.021355699747800827, 0.03727045655250549, 0.010640065185725689, 0.024106398224830627, -0.017592379823327065, -0.002174487803131342, -0.02932063490152359, 0.017486585304141045, -0.008002719841897488, -0.010655178688466549, -0.007609762717038393, 0.0011165267787873745, 0.001785309286788106, -0.006521574221551418, 0.009430967271327972, -0.018574772402644157, 0.02525504119694233, 0.014773670583963394, -0.007027884013950825, 0.01973853074014187, -0.01200785767287016, -0.003532834118232131, 0.009181590750813484, 0.009748355485498905, 0.002924506552517414, 0.0036178489681333303, -0.009378069080412388, 0.00737927807494998, 0.018710795789957047, 0.012227007187902927, -0.034308165311813354, -0.0005200067535042763, -0.015491572208702564, -0.001545378821901977, -0.003649965627118945, -0.001243104226887226, -0.02796039916574955, -0.007462403737008572, -0.020131487399339676, 0.020131487399339676, 0.03899342194199562, -0.019844327121973038, -0.01952693797647953, 0.024136625230312347, 0.016322826966643333, -0.005860348232090473, 0.006147509440779686, 0.015393332578241825, 0.002302954439073801, -0.015536913648247719, 0.014418497681617737, -0.0008695117430761456, 0.0007150683086365461, 0.041320934891700745, -0.0008969053742475808, 0.0024503134191036224, 0.00485528539866209, -0.01650419272482395, 0.0010324566392228007, 0.02366809919476509, -0.005044206976890564, 0.017562152817845345, -0.01258973591029644, 0.02120456099510193, -0.011418422684073448, 0.007836468517780304, 0.006113503593951464, -0.01824227161705494, -0.010957453399896622, 0.01981409825384617, 0.0039824675768613815, 0.02947177179157734, 0.00046451101661659777, 0.017123855650424957, 0.02241365984082222, -0.000493085419293493, 0.008085845038294792, -0.01407843828201294, 0.011826492846012115, 0.006650040857493877, 0.0034232595935463905, 0.004639914724975824, -0.0016521194484084845, -0.004462328273802996, -0.0015255420003086329, -0.014350485987961292, -0.020071031525731087, 0.011259728111326694, -0.002231164136901498, -0.01656464673578739, 0.01106324978172779, 0.013473889790475368, 0.008259653113782406, 0.021385926753282547, 0.015824073925614357, -0.028882335871458054, 0.008697951212525368, 0.012952465564012527, -0.002236831933259964, -0.008055618032813072, -0.007995163090527058, 0.007311266381293535, -0.002000679960474372, 0.01110103353857994, 0.008667723275721073, 0.0008869869634509087, 0.002191490726545453, 0.0020327966194599867, 0.024801628664135933, 0.017622608691453934, 0.021703314036130905, -0.0147434426471591, 0.002204715274274349, -0.010965010151267052, 0.0014348597032949328, 0.0010466257808730006, 0.006404442712664604, -0.021431267261505127, -0.0032248918432742357, 0.011826492846012115, -0.04207662120461464, 0.0003511580580379814, 0.0009077683789655566, 0.008735734969377518, 0.0005195344565436244, 0.01659487374126911, -0.008168970234692097, -0.004137383308261633, -0.010307563468813896, -0.0034591546282172203, -0.007621097844094038, 0.013028034009039402, -0.011652684770524502, -0.0035063850227743387, 0.011562002822756767, 0.012415928766131401, 0.011577116325497627, -0.0004940300132147968, -0.010080857202410698, 0.010043072514235973, 0.0067898426204919815, 0.007405727170407772, 0.01660998910665512, 0.006608477793633938, 0.014448724687099457, -0.007534193806350231, 0.0030435272492468357, -0.019194435328245163, 0.004915740340948105, 0.010451143607497215, -0.0030832006596028805, -0.0002360339422011748, -0.0015482126036658883, 0.017637722194194794, -0.01122194342315197, -0.009536762721836567, 0.004250736441463232, 0.011539332568645477, 0.006914530880749226, 0.002518325112760067, -0.002261391608044505, 0.005029093474149704, 0.003636741079390049, -0.024741174653172493, -0.012461269274353981, -0.01821204274892807, -0.01798533834517002, 0.011698026210069656, 0.021416153758764267, 0.000559207983314991, -0.0033117958810180426, -0.02384946495294571, 0.017683062702417374, -0.008289880119264126, 0.01656464673578739, -0.011161488480865955, 0.0002956623211503029, -0.008660166524350643, -0.008267209865152836, 0.024363331496715546, 0.0002195033011958003, -0.01269553229212761, 0.006733166519552469, 0.009249602444469929, 0.020207054913043976, -0.015899643301963806, 0.0023634093813598156, 0.01110103353857994, 0.0035026066470891237, -0.013511673547327518, -0.0005355927860364318, -0.012068312615156174, -0.018801478669047356, 0.0022141612134873867, -0.0021140328608453274, -0.0139046311378479, 0.01827249862253666, -0.0039031205233186483, -0.001917554414831102, 0.007715558633208275, 0.00968034379184246, -0.016171690076589584, 0.016232144087553024, -0.004432101268321276, 0.0019184990087524056, 0.018937502056360245, 4.640387123799883e-05, -0.0014480841346085072, -0.005199122708290815, 0.021914906799793243, 0.0032815684098750353, 0.0033533587120473385, 0.009959947317838669, -0.015839187428355217, 0.025980500504374504, 0.017456356436014175, -0.015506685711443424, -0.03672636300325394, 0.004367867484688759, 0.010609838180243969, 0.0034780469723045826, -0.0239854883402586, -0.010980124585330486, 0.012982693500816822, 0.01268041878938675, -0.014682987704873085, 0.0026996899396181107, 0.012997807003557682, -0.023124005645513535, 0.015793846920132637, -0.005452277604490519, -0.002365298569202423, -0.004484998993575573, -0.004307413008064032, -0.0027525878977030516, -0.02640368416905403, -0.0028697194065898657, 0.0075417510233819485, 0.004394316580146551, -0.013043148443102837, -1.6722515283618122e-05, -0.003922012634575367, 0.005354038439691067, -0.017864428460597992, -0.020237283781170845, 0.014222019352018833, -0.023229802027344704, -0.00225005648098886, -0.010821430012583733, -0.013889516703784466, 0.015657823532819748, -0.006022821180522442, -0.020509330555796623, 0.008758406154811382, -0.009959947317838669, -0.021506836637854576, -0.011705582961440086, -0.0008114183438010514, 0.012295018881559372, -0.0026524595450609922, 0.015128842554986477, -0.022882185876369476, 0.007912036962807178, 0.013572128489613533, -0.004651250317692757, 0.0033080175053328276, 0.025829363614320755, 0.0039673540741205215, 0.017773745581507683, 0.0091286925598979, -0.014290031045675278, -0.022670593112707138, 0.017365675419569016, -0.0004557733773253858, -0.0015548248775303364, -0.010692963376641273, -0.0014915361534804106, 0.016035666689276695, 0.009060680866241455, -0.009627445600926876, -0.003529055742546916, -0.00702410563826561, -0.0014613086823374033, 0.021370813250541687, -0.008705507963895798, -0.00044963342952542007, 0.010050630196928978, -0.017229652032256126, -0.01831783913075924, 0.01952693797647953, 0.0005412604077719152, 0.011826492846012115, 0.020433761179447174, -0.003751983167603612, 0.01818181574344635, 0.010027959011495113, -0.021899793297052383, -0.012075869366526604, -0.00903045292943716, 0.003330687992274761, 0.007760900072753429, -0.007099674083292484, 0.009053124114871025, 0.01336053665727377, 0.006820070091634989, 0.0017484695417806506, -0.023456508293747902, -0.013647696934640408, 0.02372855506837368, -0.004979973658919334, 0.011924732476472855, 0.010012845508754253, 0.01816670224070549, 0.007821355015039444, 0.010141312144696712, 0.004700369667261839, 0.016443736851215363, -4.737799827125855e-05, -0.017335446551442146, -0.010730748064815998, 0.005153781734406948, 0.029048588126897812, 0.004148718435317278, -0.014410940930247307, -0.010209323838353157, 0.0196327343583107, 0.019209548830986023, -0.01830272562801838, 0.016987832263112068, -0.008569484576582909, -0.0050895484164357185, -0.006411999464035034, -0.009990175254642963, 0.007700445130467415, 0.004141161683946848, 0.010587166994810104, 0.004991308785974979, 0.00835033506155014, -0.037089090794324875, -0.014448724687099457, -0.006736944895237684, -0.002013904508203268, 0.014584748074412346, 0.0011070806067436934, 0.014237132854759693, -0.0004959192592650652, -0.007912036962807178, 0.026116523891687393, -0.024741174653172493, 0.01694248989224434, 0.018846821039915085, 0.022020703181624413, 0.00633643101900816, -0.007949821650981903, -0.014463839121162891, -0.0056676482781767845, 0.030212344601750374, 0.02097785659134388, -0.009083351120352745, 0.005569409113377333, -0.005240685772150755, 0.009294942952692509, -0.01653441973030567, 0.007821355015039444, -0.0053124758414924145, 0.004469885490834713, 0.03204110637307167, 0.014909693971276283, -0.017002945765852928, -0.001878825481981039, -0.00902289617806673, 0.012990250252187252, -0.0007755231927148998, -0.007821355015039444, -0.002879165345802903, 0.015975210815668106, -0.022685706615447998, 0.007760900072753429, -0.0014235243434086442, -0.014494066126644611, -0.026056068018078804, 5.9097041230415925e-05, 0.0183329526335001, -0.006929644849151373, 0.010783645324409008, 0.016353053972125053, 0.006559358444064856, 0.005278469994664192, -0.004035365767776966, 0.01689714938402176, -0.001194929238408804, -0.003831330221146345, 0.01531020738184452, -0.009566990658640862, 0.002871608594432473, 0.009937277063727379, 0.017652835696935654, -0.022020703181624413, 0.006498903501778841, -0.010088413953781128, 0.008040503598749638, 2.1179883333388716e-05, -0.019859440624713898, 0.015748506411910057, -0.019133981317281723, -0.017803972586989403, 0.005943473894149065, 0.0110405795276165, -0.01268041878938675, 0.0032211134675890207, 0.014554521068930626, 0.0014499733224511147, -0.005448499228805304, -0.023063549771904945, 0.023063549771904945, -0.017426129430532455, 0.01657976023852825, 0.004889291245490313, 0.01958739198744297, -0.0053200325928628445, 0.005837677977979183, -0.0017664170591160655, 0.01676112599670887, 0.01939091458916664, -0.022035816684365273, 0.01109347678720951, -0.021446380764245987, -0.006275976076722145, 0.012619963847100735, 0.004364089109003544, 0.007980048656463623, 0.016126349568367004, 0.003483714535832405, 0.012446155771613121, -0.001347955665551126, 0.0254364050924778, 0.007594648748636246, 0.012967579066753387, 0.015733391046524048, 0.007942264899611473, -0.004454771522432566, -0.005565630737692118, 0.02672107331454754, -0.014184234663844109, -0.001167535549029708, 0.008765962906181812, -0.0028886115178465843, -0.005391822662204504, 0.021657973527908325, -0.012227007187902927, -0.003300460521131754, -0.0070089916698634624, 0.016096120700240135, -0.010330233722925186, 0.0035347233060747385, -0.009521649219095707, -0.02091740071773529, 0.0022141612134873867, -0.012899567373096943, 0.005146224517375231, -0.015159070491790771, 0.0016171690076589584, -0.03965842351317406, -0.00972568430006504, -0.0034610440488904715, 0.009378069080412388, -0.00696742907166481, 0.0029339527245610952, 0.01190961804240942, 0.0033835861831903458, 0.0051953443326056, -0.003814327297732234, 0.022700820118188858, -0.00156993861310184, -0.0006692548049613833, 0.006034156307578087, -0.014267359860241413, 0.004972416907548904, 0.003094536019489169, -0.0009342173580080271, 0.003757650963962078, 0.009559433907270432, -0.02389480546116829, 0.004923297092318535, -0.011607344262301922, -0.017607495188713074, 0.02212649956345558, -0.005225571803748608, 0.0028394919354468584, 0.011531774885952473, -0.02094762772321701, -0.0024503134191036224, -0.002046021167188883, 0.004802387207746506, -0.002435199683532119, 0.03890273720026016, 0.0002812570601236075, -0.017320333048701286, -0.017108742147684097, -0.011788709089159966, -0.017169196158647537, 0.0010192320914939046, 0.0091286925598979, -0.0026146750897169113, 0.008410790003836155, -0.0003929569502361119, -0.0006853131344541907, 0.009521649219095707, 0.034277938306331635, -0.022836845368146896, 0.009574547410011292, 0.007700445130467415, -0.004859063774347305, -0.014305144548416138, -0.011645128019154072, -0.004092042334377766, -0.0002663794730324298, -0.01475099939852953, 0.02403082884848118, -0.021657973527908325, 0.007447289768606424, -0.00667648995295167, 0.008388119749724865, -0.008078288286924362, 0.005391822662204504, -0.008954884484410286, 0.010420916602015495, 0.007515301927924156, -0.011924732476472855, 0.010473813861608505, 0.009242045693099499, 0.0363636314868927, -0.02368321269750595, -0.0067936209961771965, -0.007511523552238941, 0.003049194812774658, -0.004874177742749453, -0.001462253276258707, 0.0030265243258327246, 0.0039031205233186483, 0.009060680866241455, 0.006309981923550367, 0.009597217664122581, 0.0045530106872320175, -0.0013366204220801592, 0.010058186948299408, -0.015703164041042328, -0.028610289096832275, 0.013443661853671074, 0.008614826016128063, -0.01190961804240942, -0.010179096832871437, -0.0016823469195514917, -0.007413283921778202, 0.004817501176148653, 0.012982693500816822, 0.01966296136379242, 0.012385700829327106, 0.009514092467725277, -0.01846897602081299, 0.0026071183383464813, -0.017290106043219566, -0.0038804500363767147, -0.0015198743203654885, -0.022897299379110336, -0.007194134872406721, 0.005985036492347717, -0.006582029163837433, -0.010163982398808002, -0.009264715947210789, -0.026993120089173317, 0.031708601862192154, 0.024212194606661797, 0.020524444058537483, 0.010791202075779438, 0.016111236065626144, 0.00485528539866209, 0.015393332578241825, -0.012914681807160378, -0.0071299015544354916, -0.007995163090527058, 0.0013300081482157111, -0.005429607350379229, -0.013670368120074272, 0.005032871849834919, -0.028852108865976334, -0.0012799439718946815, -0.0004654556105379015, 0.0069825430400669575, 0.01801556535065174, -0.004462328273802996, 0.0060152639634907246, -0.019254891201853752, 0.00915891956537962, 0.007413283921778202, -0.001517985132522881, 0.004519004840403795, -0.010904555208981037, 0.002559887943789363, -0.012272347696125507, -0.005361595191061497, -0.02227763645350933, 0.02663039043545723, 0.0034723791759461164, 0.0022254965733736753, -0.0019024406792595983, -0.01942114159464836, 0.0032154459040611982, -0.006302425172179937, 0.007859138771891594, 0.018756138160824776, 0.011025465093553066, 0.007760900072753429, 0.02655482105910778, 0.0006735055358149111, 0.02530038170516491, -0.0062192995101213455, 0.027567442506551743, -0.017683062702417374, -0.013995313085615635, 0.004673920571804047, -0.0035592832136899233, 0.004519004840403795, -0.017939995974302292, -0.004821279551833868, 0.008229425176978111, -0.026207206770777702, 0.02796039916574955, -0.004220508970320225, 0.009574547410011292, -0.010352903977036476, -0.0058716838248074055, 0.01339076366275549, 0.02120456099510193, -0.009574547410011292, 0.014887022785842419, -0.004103377461433411, -0.007708001881837845, -0.0010277335532009602, -0.007481296081095934, -0.009415852837264538, -0.01685180701315403, 0.0053313677199184895, 0.0033193526323884726, -0.019708301872015, -0.01189450453966856, -0.003910677507519722, -0.0002744086377788335, 0.01809113286435604, 0.008985111489892006, 0.0037425372283905745, 0.0010305674513801932, 0.0003091229882556945, -0.0221567265689373, 0.004333861637860537, 0.0033287988044321537, -0.0032702330499887466, 0.010337790474295616, 0.009287386201322079, 0.0024484239984303713, 0.01683669351041317, 0.002928284928202629, 0.004110934212803841, -1.738669197948184e-05, -0.002712914254516363, -0.002074359217658639, 0.011123704724013805, -0.008252096362411976, -0.020222170278429985, 0.013065818697214127, 0.0006130506517365575, 0.0037916568107903004, -0.017622608691453934, 0.006718052551150322, 0.02806619554758072, 0.004137383308261633, -0.011569559574127197, -0.0011920953402295709, 0.011811379343271255, 0.01459230575710535, 0.0033779183868318796, -0.0017050175229087472, -0.004447214771062136, -0.0016105567337945104, -0.0025296604726463556, 0.0017692509572952986, 0.000253627251368016, -0.0036839714739471674, -0.011954959481954575, 0.019073525443673134, 0.02539106458425522, 0.007881809957325459, 0.021733542904257774, -0.0003159714106004685, 0.010980124585330486, -0.011962516233325005, 0.005935917142778635, 1.8833123249351047e-05, 0.012755987234413624, 0.006544244475662708, 0.00037996858009137213, -0.0105040417984128, 0.01268797554075718, -0.01201541442424059, -0.0011108590988442302, 0.01532532088458538, 0.0003188052214682102, 0.002191490726545453, 0.0038369980175048113, 0.009952390566468239, 0.012990250252187252, 0.010330233722925186, -0.013164058327674866, 0.004621022846549749, -0.011811379343271255, 0.0505705364048481, 0.005637420807033777, -0.021310357376933098, -0.028670743107795715, 0.010587166994810104, 0.010307563468813896, 0.023396052420139313, -0.009294942952692509, 0.011954959481954575, 0.008607268333435059, 0.005576965864747763, -0.009612332098186016, -0.006593364290893078, -0.023003095760941505, -0.020569784566760063, -0.003005742793902755, -0.0023728555534034967, 0.0005162283196114004, 0.008932214230298996, 0.004794830456376076, -0.010088413953781128, 0.0012582179624587297, -0.023335598409175873, -0.01839340850710869, -0.006480011157691479, 0.004851507022976875, -0.011365524493157864, -0.02397037483751774, 0.011305069550871849, 0.0194060280919075, 0.02770346589386463, 0.03182951360940933, -0.0035139420069754124, -0.016247259452939034, -0.00015786761650815606, 0.005210458301007748, 0.017244765534996986, -0.024076171219348907, -0.017048286274075508, 0.009400739334523678, 0.0050857700407505035, -0.008116072043776512, -0.009234488010406494, 0.008259653113782406, 0.010881884954869747, -6.72442838549614e-05, 0.004058036021888256, -0.007964935153722763, -0.00046451101661659777, 0.008735734969377518, 0.0011609232751652598, -0.004341418854892254, 0.023471621796488762, -0.029940297827124596, 0.008833974599838257, 0.0023501848336309195, 0.022081159055233, -8.471953333355486e-05, -0.028957905247807503, 0.042439352720975876, -0.017819086089730263, -0.002916949801146984, 0.020282624289393425, -0.00455678952857852, -0.010617394931614399, 0.02505856193602085, -0.010216880589723587, 0.012090982869267464, -0.0056676482781767845, -0.010564496740698814, 0.005686540622264147, 0.003130431054159999, -0.0064271134324371815, -0.012846670113503933, -0.019224664196372032, -0.002161263255402446, 0.022851958870887756, 0.007167685776948929, 0.017320333048701286, -0.017184309661388397, 0.007980048656463623, -0.009423410519957542, 0.011584673076868057, -0.006872968282550573, -0.006827627308666706, -0.03188996762037277, 0.0026807975955307484, -0.007806241046637297, -0.021642860025167465, 0.0012270458973944187, -0.010141312144696712, 0.025527087971568108, -0.009181590750813484, 0.0016587317222729325, 0.008637496270239353, 0.016232144087553024, 0.0017513033235445619, -0.01106324978172779, -0.024862084537744522, 0.013451218605041504, 0.005263356026262045, -0.0010683516738936305, -0.005055542569607496, 0.013519230298697948, 0.021219676360487938, 0.001389518496580422, -0.004401873797178268, -0.00029613461811095476, -0.02944154478609562, 0.014184234663844109, 0.0037803214509040117, 0.0037293126806616783, 0.008645053021609783, -0.00026496255304664373, -0.015733391046524048, -0.0021763769909739494, -0.019874554127454758, -0.004636136349290609, 0.01036801841109991, -0.009106021374464035, 0.004877956118434668, 0.0017106852028518915, -0.013806391507387161, -0.010677849873900414, 0.005210458301007748, 0.01109347678720951, 0.009907049126923084, 0.05035894364118576, 0.03690772503614426, 0.008116072043776512, 0.0004394788993522525, -0.0007665494340471923, -0.03730068355798721, 0.008221868425607681, -0.00634398777037859, 0.00416761077940464, -0.01184916403144598, 0.007099674083292484, -0.022942639887332916, 0.023124005645513535, 0.021990476176142693, -0.011509104631841183, -0.010949896648526192, -0.012325245887041092, 0.014456281438469887, 0.002420085947960615, 0.014977705664932728, 0.0019458925817161798, 0.0015160959446802735, -0.006827627308666706, -0.01271064579486847, -0.004035365767776966, 0.013028034009039402, 0.0034723791759461164, -0.004008916672319174, 0.008229425176978111, -0.004998866003006697, 0.024061055853962898, -0.003823773469775915, -0.01270308904349804, 0.021673087030649185, -0.006151287816464901, 0.003657522378489375, 0.0006697271019220352, 0.013632583431899548, 0.0017409126739948988, -0.017108742147684097, -0.028640516102313995, -0.010572053492069244, 0.017577266320586205, -0.026025841012597084, -0.0030378594528883696, 0.006332652643322945, 0.00900778267532587, -0.009498978964984417, -0.01845386251807213, 0.005150003358721733, -0.00014818538329564035, 0.017229652032256126, -0.0023747447412461042, -0.014698101207613945, 0.00122987967915833, -0.0016719562700018287, 0.009959947317838669, -0.005565630737692118, 0.0018816592637449503, -0.009771025739610195, -0.010352903977036476, 0.008524143137037754, 0.012385700829327106, 0.014781227335333824, -0.0013328419299796224, 0.009332727640867233, 0.0020441317465156317, 0.020146600902080536, -0.00702410563826561, -0.012068312615156174, 0.0023993044160306454, -0.022927526384592056, -0.01255195215344429, -0.011342853307723999, 4.2566400225041434e-05, -0.0031342096626758575, -0.021446380764245987, -0.008516586385667324, -0.013209398835897446, 0.0009984506759792566, 0.00276392325758934, -0.02076626382768154, 0.001267664018087089, 0.0031342096626758575, -0.013028034009039402, 0.023033322766423225, -0.011463763192296028, 0.004126048181205988, 0.020116373896598816, 0.016987832263112068, -0.017320333048701286, -0.013874403201043606, 0.002178266178816557, -3.6574045225279406e-05, 0.010640065185725689, 0.005293583497405052, -0.016201917082071304, -0.008856644853949547, 0.010972566902637482, 0.017531925812363625, -0.0069825430400669575, 0.00772689376026392, 0.010473813861608505, 0.00695987232029438, -0.01255950890481472, -0.032978158444166183, 0.0047646029852330685, -0.011244614608585835, 0.00484017189592123, -0.018574772402644157, -0.014947477728128433, 0.005399379879236221, -0.010254665277898312, 0.01394241489470005, 0.024317989125847816, -0.0027525878977030516, -0.006321317050606012, 0.010934783145785332, 0.010284892283380032, 0.010889441706240177, -0.009944833815097809, 0.0028243781998753548, 0.013186728581786156, 0.03388497978448868, 0.0027979291044175625, 0.012446155771613121, 0.008894429542124271, 0.011637571267783642, -0.01946648210287094, 0.009748355485498905, 0.00593969551846385, -0.007111009676009417, -0.015808960422873497, 0.005917024798691273, 0.009340284392237663, 0.001715408288873732, 0.019179321825504303, -0.0052520208992064, 0.03312929347157478, -0.0006848408374935389, -0.015552027150988579, 0.015098615549504757, -0.006298646796494722, -0.003937126602977514, -0.020055918022990227, 0.007296152878552675, -0.038509782403707504, -0.003940904978662729, 0.0005629864172078669, -0.008614826016128063, -0.0017843646928668022, 0.010088413953781128, -0.007171464618295431, 0.0253608375787735, -1.8272261513629928e-05, 0.00011583256127778441, -0.013519230298697948, 0.02392503246665001, -0.02224740944802761, -0.0012619963381439447, -0.007262147031724453, 0.004979973658919334, 0.013640140183269978, -0.003615959780290723, 0.027068689465522766, -0.004107155837118626, -0.011493991129100323, 0.012181665748357773, -0.0239854883402586, -0.019013071432709694, -0.015159070491790771, 0.011403308250010014, -0.0007618264062330127, 0.017894655466079712, 0.007859138771891594, 0.03198065236210823, -0.003438373329117894, 0.005176451988518238, -0.01541600376367569, -0.011456206440925598, 0.021899793297052383, 0.009635002352297306, 0.022579912096261978, 0.006302425172179937, -0.018771251663565636, 0.022761275991797447, -0.012181665748357773, 0.004103377461433411, 0.012839112430810928, 0.003260787110775709, -0.003049194812774658, 0.011425979435443878, -0.0014745332300662994, -0.003823773469775915, -0.02782437577843666, 0.006045491434633732, 0.0058830189518630505, -0.005792336538434029, -0.03542657941579819, -0.0011458095395937562, -0.001968563301488757, -0.003578175324946642, -0.006895639002323151, -0.010844100266695023], "47cdf033-1dfa-4a68-b87b-c3dfae5533f8": [-0.0022176867350935936, 0.006415515672415495, -0.012642445974051952, 0.00828323233872652, -0.017814025282859802, -0.02119404822587967, 0.04102448374032974, 0.005690188612788916, -0.02960783988237381, -0.014361470006406307, 0.038587383925914764, 0.04412888363003731, -0.018191196024417877, -0.022093454375863075, -0.0015540126478299499, 0.029448267072439194, -0.01749488152563572, 0.02466111071407795, -0.006158024538308382, 0.001931182574480772, 0.07172030955553055, -0.02837478369474411, -0.02593768574297428, 0.028708433732390404, 0.024022823199629784, -0.016160281375050545, 0.009037571959197521, 0.016929127275943756, -0.03942876309156418, 0.0005653015687130392, 0.032407600432634354, 0.008711175061762333, 0.037397850304841995, 0.011126512661576271, 0.014782159589231014, -0.03478667140007019, 0.011924372054636478, 0.03612127527594566, 0.005284005776047707, -0.0036828466691076756, -0.013411292806267738, 0.019583823159337044, 0.01183733344078064, -0.015855643898248672, -0.03211747109889984, 0.027968600392341614, -0.014673360623419285, -0.038094162940979004, -0.012569913640618324, -0.04488322138786316, -0.007217001635581255, -0.04586966708302498, 0.02592317946255207, -0.0022267531603574753, 0.02516883984208107, -0.02692412957549095, -0.0017507575685158372, 0.05381924659013748, -0.00911010429263115, -0.07763897627592087, -0.009661353193223476, -0.019366225227713585, 0.025313904508948326, 9.508580842521042e-05, 0.010480972006917, -0.0009311382891610265, 0.01723376475274563, -0.005222352687269449, -0.0214406605809927, 0.039138633757829666, 0.03626633808016777, 0.05068583786487579, 0.0020164083689451218, 0.039138633757829666, -0.001260255347006023, 0.03748488798737526, 0.03313292935490608, -0.0020182218868285418, 0.018162183463573456, -0.008123660460114479, -0.004435373470187187, -0.002263019559904933, 0.05109201744198799, 0.005030141212046146, 0.06870295107364655, 0.03403233364224434, 0.008834480307996273, -0.034699633717536926, 0.012294288724660873, -0.06052126735448837, -0.008421043865382671, 0.0059585594572126865, 0.0221950002014637, 0.0014533735811710358, -0.01925017312169075, 0.015144823119044304, 0.010212601162493229, -0.003927644342184067, -0.004478892777115107, -0.027460873126983643, -0.010618784464895725, 0.025096306577324867, -0.023297496140003204, 0.05312293395400047, 0.0036901000421494246, 0.0014533735811710358, 0.013084894977509975, 0.02934672124683857, -0.038094162940979004, 0.018582873046398163, 0.02688061073422432, -0.041604746133089066, -0.06609177589416504, 0.021107010543346405, -0.04148869216442108, -0.0048234229907393456, -0.03771699219942093, 0.0066621266305446625, 0.020367177203297615, 0.024008316919207573, 0.0044027334079146385, -0.04543447121977806, -0.005806241184473038, -0.02019309811294079, -0.01901806890964508, 0.005265872459858656, -0.00948727410286665, 0.021861350163817406, 0.028070146217942238, 0.07897358387708664, -0.011844586580991745, -0.006219677161425352, 0.03229155018925667, -0.008457310497760773, 0.014201898127794266, 0.02296384610235691, -0.017364323139190674, 0.05277477577328682, 0.001931182574480772, 0.04572460055351257, -0.05033767968416214, -0.05025063827633858, -0.019453264772892, 0.02563304826617241, 0.010306893847882748, 0.0038986315485090017, -0.014252671040594578, 0.01124256569892168, -0.004322947468608618, -0.009197143837809563, -0.028984058648347855, -0.010132815688848495, 0.007090069353580475, 0.028432810679078102, 0.02270272932946682, 0.03852935880422592, -0.010872649028897285, 0.0016981713706627488, 0.03826824203133583, 0.012555406428873539, 0.01681307516992092, -0.055618058890104294, 0.015667058527469635, -0.007964088581502438, 0.03583114221692085, 0.049496300518512726, 0.03423542529344559, 0.03298786282539368, -0.012976096011698246, 0.01210570428520441, 0.03234957531094551, 0.009494527243077755, 0.043258488178253174, -0.00549435056746006, -0.003974790684878826, -0.02862139604985714, 0.029941489920020103, 0.020091552287340164, 0.016232812777161598, -0.02170177735388279, -0.008254218846559525, -0.011300591751933098, 0.009153624065220356, 0.01848132722079754, -0.012671459466218948, 0.016406891867518425, 0.002038168255239725, 0.006020212545990944, -0.001160522922873497, 0.018655404448509216, -0.0012620686320587993, 0.0009982310002669692, -0.016624489799141884, 0.04073435440659523, 0.030927933752536774, 0.0028813607059419155, 0.035395946353673935, -0.0074781193397939205, -0.039602842181921005, 0.030550764873623848, 0.01949678361415863, -0.05431247130036354, -0.020091552287340164, 0.024777162820100784, -0.05332602560520172, -0.00020150485215708613, -0.038123175501823425, -0.007383826654404402, 0.035889171063899994, 0.008109153248369694, 0.045492496341466904, 0.008667655289173126, -0.01380296889692545, 0.0047617703676223755, -0.016131266951560974, -0.006857964675873518, -0.0017897438956424594, 0.01652294397354126, -0.006665753200650215, -0.03777502104640007, -0.0017326243687421083, 0.01582663133740425, -0.00728953443467617, -0.00420326879248023, -0.026561466977000237, -0.0249367356300354, -0.005421817768365145, 0.0409664586186409, -0.04511532559990883, -0.005574136506766081, 0.024530552327632904, -0.030724842101335526, 0.0017299044411629438, -0.04140165448188782, -0.022905820980668068, 0.01896004192531109, 0.0502796545624733, -0.012047678232192993, 0.0012058557476848364, -0.009059331379830837, 0.033190954476594925, 0.0144194969907403, -0.00914637092500925, -0.03818120062351227, -0.002088941168040037, -0.015449460595846176, 0.010031269863247871, 0.0010952434968203306, 0.038877516984939575, 0.015463966876268387, -0.038877516984939575, -0.016131266951560974, -0.01798810437321663, -0.033423058688640594, -0.057387854903936386, 0.055182863026857376, 0.05872245877981186, 0.006796312052756548, 0.014499282464385033, -0.022398091852664948, 0.022093454375863075, 0.03635337948799133, 0.02962234616279602, 0.009857190772891045, -0.018191196024417877, -0.030898921191692352, 0.018350766971707344, -0.0513821505010128, 0.01700166054069996, 0.04064731299877167, -0.03484470024704933, 0.010234360583126545, -0.010945181362330914, 0.01898905448615551, 0.022340064868330956, -0.006096371449530125, 0.023253977298736572, -0.007615931332111359, 0.0221950002014637, -0.023790718987584114, -0.012961589731276035, -0.012120210565626621, -0.01344030536711216, 0.011387630365788937, 0.04090842977166176, -0.022412598133087158, -0.0443900004029274, -0.00898679904639721, -0.029419254511594772, -0.011481923051178455, 0.010705823078751564, 0.03635337948799133, -0.007652197498828173, -0.003574047703295946, 0.0008572455844841897, -0.006201543845236301, -0.013752195984125137, -0.00714446883648634, 0.005033767782151699, 0.02341354824602604, 0.014970744960010052, -0.022760754451155663, -0.020367177203297615, -0.03745587542653084, 0.05080188810825348, -0.025821633636951447, 0.05474766716361046, 0.023805225268006325, -0.0010444705840200186, 0.05381924659013748, 0.002607549773529172, -0.009175383485853672, -0.01626182720065117, -0.0032385841477662325, -0.024370979517698288, -0.0016401452012360096, 0.005708321928977966, -0.027257781475782394, -0.031131025403738022, 0.044941246509552, 0.030521750450134277, 0.039602842181921005, -0.09243564307689667, 0.035686079412698746, 0.034409504383802414, -0.021048983559012413, -0.012424848042428493, -0.027968600392341614, -0.02464660443365574, -0.03037668578326702, -0.05820022150874138, -0.016102254390716553, -0.032900821417570114, 0.03600522130727768, -0.010132815688848495, -0.028200706467032433, -0.015870150178670883, -0.01803162321448326, -0.011090246960520744, -0.02174529805779457, 0.001498706522397697, -0.02788156270980835, 0.009683112613856792, -0.027823535725474358, 0.040067050606012344, -0.022847793996334076, 0.005102674011141062, 0.039138633757829666, 0.012134716846048832, 0.056662529706954956, 0.0008984985761344433, -0.0024098982103168964, 0.0001454053563065827, 0.011902612634003162, 0.02664850652217865, -0.020961944013834, 0.022470623254776, -0.00646991515532136, 0.02709820866584778, 0.010415692813694477, -0.021542206406593323, -0.0033238099422305822, 0.024994760751724243, -0.05831627547740936, 0.014136618934571743, -0.0031769312918186188, 0.011822826229035854, -0.00468923756852746, -0.009733885526657104, -0.01975790224969387, 0.0040364437736570835, 0.04360664635896683, -0.02464660443365574, 0.0005376485059969127, 0.03406134620308876, -0.0330168753862381, 0.0458986796438694, -0.0001011490894597955, -0.04711722955107689, 0.021803323179483414, 0.012598926201462746, 0.014970744960010052, 0.01848132722079754, 0.00038351654075086117, 0.009429248049855232, 0.0043555875308811665, -0.023312002420425415, 0.011880853213369846, 0.016682516783475876, -0.007376573514193296, -0.04224303364753723, -0.006397382356226444, -0.04125658795237541, 0.0009229783318005502, 0.027431858703494072, 0.010053029283881187, 0.03481568768620491, -0.027968600392341614, 0.03371318802237511, -0.03963185474276543, 0.013933527283370495, -0.021281087771058083, 0.0004095829790458083, -0.03873245045542717, 0.02071533352136612, -0.013498331420123577, -0.005657549016177654, -0.010335906408727169, 0.023863252252340317, -0.008819974027574062, 0.011300591751933098, -0.006183410994708538, 0.005396431311964989, 0.03559903800487518, 0.015115810558199883, 0.0022140599321573973, -0.01111200638115406, 0.03533792123198509, -0.010872649028897285, 0.014281684532761574, 0.03667252138257027, 0.012054931372404099, -0.006219677161425352, 0.02737383358180523, 0.007804516237229109, 0.01778501272201538, -0.009226156398653984, 0.015391434542834759, -0.015609032474458218, -0.02245611697435379, 0.015696071088314056, 0.03498976305127144, -0.0044317469000816345, -0.002531390404328704, -0.025270385667681694, -0.03162424638867378, -0.006999403703957796, -0.005138940177857876, 0.019206654280424118, 0.009726632386446, -0.008493577130138874, -0.024051835760474205, -0.009654099121689796, -0.002545897150412202, -0.01872793771326542, -0.05054077133536339, -0.013991553336381912, 0.009690365754067898, 0.04351960867643356, 0.023863252252340317, 0.005345658399164677, -0.01531890220940113, -0.06963137537240982, -0.03298786282539368, -0.0019094228046014905, -0.013462064787745476, 0.0033020502887666225, 0.012424848042428493, 0.020642800256609917, -0.04436098784208298, -0.03925468772649765, -0.006408262066543102, 0.020077046006917953, 0.025734594091773033, 0.020120564848184586, -0.03472864627838135, -0.05225254222750664, -0.003579487791284919, 0.008304991759359837, 0.011431150138378143, 0.009907963685691357, -0.009030318818986416, -0.011909865774214268, 0.011779307387769222, -0.0256910752505064, -0.009842684492468834, -0.0019329958595335484, 0.0026256830897182226, 0.033916279673576355, -0.0008422857499681413, 0.020207604393363, -0.035366933792829514, -0.03612127527594566, 0.0067237792536616325, 0.017190244048833847, 0.016363373026251793, -0.006832578219473362, 0.008812720887362957, 0.012185489758849144, -0.00268370914272964, -0.0032059443183243275, -0.011235311627388, 0.010647797025740147, 0.005672055296599865, 0.00950903445482254, -0.03551200032234192, -0.012207250110805035, -0.030202606692910194, 0.011373124085366726, -0.026271335780620575, 0.035453975200653076, 0.021048983559012413, 0.0027798148803412914, 0.014970744960010052, 0.0011251631658524275, 0.021048983559012413, -0.00281064142473042, -0.012410341762006283, -0.012018664740025997, 0.015028771013021469, -0.026967650279402733, -0.04758143797516823, -0.037368837743997574, 0.02663400024175644, 0.020874904468655586, 0.0023990182671695948, -0.007869795896112919, 0.005099047441035509, 0.022528650239109993, -0.00936396885663271, -0.004910462535917759, -0.022020921111106873, -0.029535306617617607, -0.010082042776048183, -0.039370737969875336, -0.005679308902472258, 0.022572169080376625, -0.012656952254474163, 0.019090600311756134, -0.03719475865364075, 0.0017589174676686525, 0.027997614815831184, -0.0016002522315829992, -0.012156477198004723, 0.01806063763797283, -0.012272529304027557, -0.001780677237547934, 0.03896455466747284, 0.025560516864061356, 0.003240397432819009, -0.01969987526535988, 0.01087990216910839, 0.0005294885486364365, 0.010872649028897285, 0.002892240649089217, 0.011866346001625061, 0.012033171020448208, 0.022992858663201332, 0.009596073068678379, 0.013084894977509975, -0.022282039746642113, 0.013977047055959702, 0.011793813668191433, -0.007173481862992048, 0.026097258552908897, 0.007322174031287432, 0.026285842061042786, -0.013084894977509975, -0.018336260691285133, -0.033974308520555496, 0.016856594011187553, 0.024762656539678574, 0.03458357974886894, 0.0006736472714692354, -0.015420448035001755, -0.00295933336019516, -0.025313904508948326, -0.006731032393872738, -0.007964088581502438, 0.014999758452177048, 0.014245417900383472, -0.04099547117948532, 0.02814267948269844, 0.035686079412698746, 0.0007071936270222068, 0.034670621156692505, 0.0011695894645527005, 0.009044825099408627, -0.01797359809279442, -0.007253267802298069, 0.007235134951770306, 0.0017344376537948847, -0.009523540735244751, 0.022107960656285286, -0.01800261065363884, -0.005864267237484455, -0.02985445037484169, -0.0010807368671521544, -0.02364565245807171, 0.03127609193325043, -0.01161973550915718, 0.020062539726495743, -0.017422350123524666, 0.0018876629183068871, 0.004156122449785471, 0.022804275155067444, -0.016479425132274628, -0.007213375065475702, 0.02640189602971077, 0.003934897948056459, -0.0022648328449577093, 0.004631211515516043, 0.006052852142602205, -0.02439999394118786, -0.0029738398734480143, 0.019337212666869164, 0.03655647113919258, 0.01923566684126854, -0.0004986621788702905, -0.008696667850017548, -0.021817829459905624, -0.022572169080376625, 0.032204508781433105, -0.0020145950838923454, 0.00874744076281786, 0.0034326091408729553, -0.003978417254984379, 0.003202317748218775, 0.004188762046396732, -0.01206943765282631, -0.01778501272201538, -0.030724842101335526, 0.05251365900039673, -0.042533162981271744, 0.03783304616808891, 0.0070936959236860275, 0.004435373470187187, -0.026082752272486687, -8.023927512113005e-05, 0.017349816858768463, -0.019366225227713585, -0.04543447121977806, -0.0070066568441689014, 0.0031624247785657644, 0.004246788565069437, -0.020802373066544533, -0.00041162295383401215, 0.019308198243379593, -0.012388581410050392, -0.0341193713247776, -0.010219854302704334, 0.0029575200751423836, 0.023776212707161903, 0.008181686513125896, 0.003974790684878826, 0.02099095657467842, -0.05039570480585098, 0.04705920070409775, 0.027997614815831184, 0.012330555357038975, -0.011786560527980328, 0.01679856888949871, -0.0065932204015553, 0.028795473277568817, 0.005719201639294624, 0.005628535989671946, 0.005088167265057564, -0.013244466856122017, -0.003329250030219555, -0.015202849172055721, 0.030782869085669518, -0.015623538754880428, -0.005726455245167017, 0.011235311627388, -0.012163730338215828, 0.005639415699988604, 0.026779064908623695, 0.033190954476594925, 0.03446752950549126, 0.0038079656660556793, 0.03133411705493927, -0.013295239768922329, 0.02218049392104149, 0.0008626855560578406, 0.010132815688848495, 0.018698925152420998, -0.010756595991551876, 0.015231862664222717, -0.005418191198259592, 0.0008427390712313354, -0.024980254471302032, -0.02464660443365574, 0.00876920111477375, 0.012330555357038975, -0.02464660443365574, -0.00826147198677063, -0.0038406052626669407, 0.006509807892143726, -0.02663400024175644, -0.01969987526535988, 0.039834946393966675, -0.005508856847882271, -0.011307844892144203, 0.002152407309040427, 0.0019656356889754534, 0.026024725288152695, -0.011844586580991745, -0.0058969068340957165, -0.014397736638784409, 0.0015703324461355805, -0.03252365440130234, -0.00160569220315665, 0.00697401724755764, 0.013324253261089325, 0.01058977097272873, 0.005189713090658188, -0.007010283414274454, -0.01775600016117096, -0.01432520430535078, -0.006741912569850683, 0.004000177141278982, 0.017654454335570335, 0.02413887530565262, 0.006970390677452087, 0.02641640231013298, 0.022267531603574753, -0.0051316870376467705, 0.01798810437321663, 0.011525442823767662, 0.010553505271673203, -0.005798987578600645, 0.013578117825090885, 0.0009116451255977154, -0.01370867621153593, 0.011061233468353748, -0.00369916670024395, 0.03429345041513443, 0.028505342081189156, 0.0007071936270222068, 0.0025622169487178326, 0.011626988649368286, 0.008297738619148731, 0.017857545986771584, 0.0026474427431821823, -0.009334955364465714, -0.0038043390959501266, 0.004703744314610958, 0.02146967314183712, 0.01293983031064272, -0.040589287877082825, 0.021542206406593323, 0.0037064198404550552, -0.0014977998798713088, -0.007090069353580475, -0.02862139604985714, 0.01827823556959629, 0.038645412772893906, 0.011452910490334034, -0.013512837700545788, -0.01800261065363884, 0.019656356424093246, -0.02566206268966198, 0.014245417900383472, -0.006230557337403297, 0.009675859473645687, 0.020671812817454338, 0.02196289598941803, -0.026474427431821823, -0.014774906449019909, 0.015275382436811924, -0.0007579664816148579, 0.01650843769311905, -0.009806417860090733, 0.027533404529094696, 0.0070175365544855595, 0.0029738398734480143, 0.025371931493282318, -0.0003955297579523176, 0.0019003561465069652, -0.003392716171219945, 0.06150771304965019, 0.05602424219250679, 0.02366016060113907, 0.011373124085366726, -0.016580970957875252, -0.03255266696214676, -0.012635192833840847, -0.008051127195358276, -0.009298689663410187, -0.0066621266305446625, -0.00488144950941205, -0.0015395061345770955, 0.028055639937520027, -0.01729178987443447, -0.009936977177858353, -0.025371931493282318, 0.03681758791208267, 0.008464563637971878, -0.033423058688640594, 0.0011360431089997292, -0.00019289158808533102, -0.006850711535662413, -0.014956238679587841, -0.010415692813694477, 0.030463725328445435, -0.013599877245724201, -0.012664205394685268, -0.007126335520297289, -0.013781209476292133, -0.003967537544667721, -0.015986202284693718, -0.02939024195075035, 0.04563756287097931, 0.050424717366695404, 0.008022114634513855, 0.006248690187931061, 0.005534243304282427, 0.004116229712963104, 0.016348866745829582, -0.013860994949936867, 0.005425444338470697, -0.03324897959828377, -0.004116229712963104, 0.00425041513517499, -0.0390515960752964, -0.024559564888477325, 0.0014696933794766665, 0.013969793915748596, 0.037397850304841995, 0.008413790725171566, -0.01977240853011608, -0.0019982752855867147, 0.0020726213697344065, 0.01827823556959629, -0.019583823159337044, 0.0288389939814806, 0.018321754410862923, 0.016914620995521545, -0.025052787736058235, 0.016174787655472755, 0.005247739143669605, -0.022165987640619278, 0.022049933671951294, 0.02345706894993782, 0.0006976737058721483, 0.0055414969101548195, 0.017610933631658554, 0.008580615743994713, -0.0058570136316120625, 0.0044535063207149506, -0.021600231528282166, -0.022992858663201332, -0.007543398533016443, -0.0030862654093652964, -0.000927964982111007, -0.006023839116096497, -0.016160281375050545, -0.0047617703676223755, 0.004769023507833481, 0.06144968420267105, 0.04369368404150009, -0.03255266696214676, 0.00047372907283715904, -0.004025563597679138, -0.0013491078279912472, 0.016595477238297462, -0.006085491739213467, 0.012910816818475723, 6.470566859206883e-06, -0.0074781193397939205, 0.014042326249182224, -0.010285133495926857, -0.018321754410862923, 0.008036620914936066, -0.0033455698285251856, -0.025560516864061356, 0.011322351172566414, -0.004769023507833481, 0.02660498581826687, 0.03966086730360985, -0.005559629760682583, -0.031711287796497345, 0.004283054731786251, -0.01307764183729887, -0.023253977298736572, -0.0067237792536616325, -0.01518834289163351, 0.019641850143671036, -0.017103206366300583, 0.010568011552095413, -0.0074781193397939205, -0.004584065172821283, 0.006245063617825508, -0.006694766227155924, -0.032929837703704834, 0.012649699114263058, -0.020178591832518578, 0.018075143918395042, -0.001379934255965054, -0.012758498080074787, -0.012613432481884956, 0.00500475475564599, 0.013309746980667114, -0.005439951084554195, -0.029303202405571938, -0.00329661020077765, -0.0009234316530637443, 0.017843039706349373, 0.0014397737104445696, -0.022514143958687782, -0.0018096903804689646, -0.0315081961452961, -0.05846133828163147, -0.020686320960521698, 0.030463725328445435, -0.01147466991096735, 0.02071533352136612, -0.0006781805423088372, -0.0015005198074504733, 0.017378829419612885, -0.03472864627838135, 0.016392385587096214, -0.009081091731786728, -0.008936026133596897, 0.02194838784635067, 0.014049580320715904, 0.022775260731577873, 0.006110878195613623, 0.008914266712963581, 0.006346609443426132, 0.017726987600326538, 0.03496075049042702, 0.0354829877614975, -0.003586740931496024, -0.0197288878262043, -0.024124369025230408, -0.030666816979646683, -0.0016147587448358536, 0.0034199159126728773, 0.01652294397354126, 0.0043302010744810104, -0.02393578365445137, 0.010067535564303398, 0.006538820918649435, 0.01367240957915783, -0.01354910433292389, -0.009922470897436142, 0.014673360623419285, -0.045753613114356995, -0.015333408489823341, 0.013730436563491821, 0.029535306617617607, 0.0033763961400836706, -0.033887267112731934, -0.011510936543345451, -0.039370737969875336, -0.01540594082325697, 0.01674054190516472, -0.011967891827225685, 0.029448267072439194, 0.031247077509760857, 0.03339404612779617, -0.000219524692511186, -0.004671104717999697, 0.003222264349460602, 0.01724827103316784, 0.010800115764141083, 0.0017398776253685355, -0.010705823078751564, 0.004040070343762636, 0.012374075129628181, -0.008399284444749355, -0.0056031495332717896, 0.014085846021771431, -0.03725278377532959, 0.011909865774214268, -0.008080140687525272, -0.007942328229546547, -0.024022823199629784, -0.0175384022295475, -0.01969987526535988, -0.0009447381598874927, -0.03922567144036293, 0.06237810477614403, -0.02051224187016487, -0.027083702385425568, 0.019206654280424118, 0.00011253898264840245, -0.017843039706349373, -0.008384778164327145, 0.011133765801787376, -0.04369368404150009, -0.02635837532579899, 0.0029611466452479362, 0.012374075129628181, 0.014970744960010052, 0.009973243810236454, 0.0038297255523502827, -0.03287180885672569, 0.028026627376675606, -0.0038406052626669407, -4.921455547446385e-05, -0.0013844674685969949, -0.016203800216317177, 0.006284956820309162, 0.01975790224969387, -0.015115810558199883, -0.012054931372404099, 0.002841467736288905, -0.03478667140007019, 0.0032005044631659985, -0.002212246647104621, -0.009835431352257729, 0.013650650158524513, 0.04073435440659523, 0.00851533655077219, -0.009646845981478691, -0.032436612993478775, -0.011859092861413956, 0.002859600819647312, -0.007862542755901814, -0.020961944013834, 0.005008381325751543, -0.024849696084856987, 0.0063284761272370815, 0.0030373060144484043, 0.0044571333564817905, -0.004079963080585003, 0.009458261542022228, 0.036179300397634506, 0.01060427725315094, -0.006654873490333557, -0.03298786282539368, -0.02043970860540867, -0.009639592841267586, 0.005298512056469917, -0.005338405258953571, 0.008000354282557964, 0.026721039786934853, -0.006005705799907446, 0.00788430217653513, -0.020787864923477173, -0.018582873046398163, 0.006361115723848343, -0.013969793915748596, -0.01852484606206417, 0.01806063763797283, -0.06249415501952171, -0.03696265444159508, -0.011438403278589249, 0.015362421050667763, 0.006527941208332777, 0.004982994869351387, 0.030202606692910194, -0.019351718947291374, 0.011438403278589249, -0.0036937266122549772, -0.037862058728933334, -0.003292983630672097, 0.02467561699450016, -0.006945004221051931, -0.019424252212047577, 0.014100353233516216, -0.008936026133596897, -0.009197143837809563, 0.012366821989417076, 0.016711529344320297, -0.01295433659106493, -0.00648442143574357, 0.035395946353673935, 0.0005186086636967957, -0.008000354282557964, 0.029941489920020103, -0.004170629195868969, -0.010343160480260849, -0.010002256371080875, -0.02866491489112377, 0.009675859473645687, 0.004580438602715731, -0.020323656499385834, -0.031218064948916435, 0.044302958995103836, 0.0014515602961182594, 0.0182202085852623, 0.012461114674806595, -0.008159926161170006, -8.420590893365443e-05, 0.004518785979598761, -0.0005711948615498841, -0.015376928262412548, -0.01653745025396347, 0.011053980328142643, -0.003942151088267565, 0.003287543775513768, -0.015231862664222717, 0.007927821949124336, 0.022107960656285286, 0.01197514496743679, -0.011772054247558117, -0.008573362603783607, -0.022122466936707497, 0.008348511531949043, 0.0009293249459005892, 0.010575264692306519, -0.0010136441560462117, 0.009697618894279003, 0.0019148627761751413, 0.04633387550711632, 0.003844232065603137, 0.020207604393363, 0.010560758411884308, -0.019844941794872284, -0.0006573274149559438, 0.008790960535407066, 0.02271723560988903, 0.044941246509552, -0.012656952254474163, 0.011300591751933098, 0.006096371449530125, -0.0020726213697344065, 0.02715623565018177, -0.014658854342997074, 0.025604035705327988, 0.03925468772649765, 0.00813816674053669, 0.01801711693406105, 0.02119404822587967, -0.025981206446886063, 0.000890338618773967, 0.01432520430535078, -0.0009198050247505307, 0.0018541165627539158, -0.030550764873623848, 0.009538047015666962, -0.03844232112169266, 0.0013391346437856555, -0.00494310213252902, 0.009117357432842255, 0.013462064787745476, 0.02612627111375332, 0.004181508906185627, -0.0034398622810840607, 0.020149577409029007, 0.0005036487709730864, -0.02815718576312065, 0.005186086520552635, 0.00249512423761189, -0.010974193923175335, -0.01749488152563572, 0.013106655329465866, -0.013860994949936867, -0.026750052347779274, -0.0007194335339590907, -0.0004809823294635862, 0.01801711693406105, -0.011663254350423813, -0.013012362644076347, 0.0023881385568529367, -0.0007593265036121011, -0.047726504504680634, -0.00623418390750885, 0.0035323414485901594, 0.027301300317049026, 0.010785609483718872, -0.0012901750160381198, 0.0009057518327608705, -0.0034634354524314404, 0.014390483498573303, -0.00295933336019516, 0.026764558628201485, -0.017843039706349373, 8.847003300616052e-06, -0.019090600311756134, -0.01011830847710371, 0.007746490184217691, -0.014078592881560326, 0.02586515247821808, -0.00425041513517499, 0.010038523003458977, 0.009770152159035206, -0.004671104717999697, -0.011793813668191433, 0.006981270387768745, 0.029259683564305305, -0.001027244026772678, 0.012693218886852264, -0.02048322930932045, 0.027315806597471237, 0.008348511531949043, -0.007282280828803778, -0.021614737808704376, 0.004192389082163572, 0.0015957189025357366, -0.0063030896708369255, 0.0051208073273301125, -0.008936026133596897, 0.006633113604038954, -0.020396189764142036, -0.005798987578600645, 0.03281378373503685, 0.007275027688592672, -0.015231862664222717, -0.008268725126981735, 0.012047678232192993, 0.013781209476292133, 0.008225205354392529, -0.01727728359401226, -0.01798810437321663, -0.002569470088928938, 0.011336857452988625, 0.008087393827736378, 0.006419142242521048, -0.004319320898503065, -0.017697973176836967, -0.024240421131253242, 0.00414161616936326, 0.006981270387768745, -0.019670862704515457, 0.014165632426738739, -0.03185635432600975, -0.009472767822444439, 0.025023775175213814, -0.02936122938990593, 0.006502554751932621, -0.024733643978834152, -0.0019511290593072772, -0.011699520982801914, -0.004703744314610958, -0.0016764116007834673, -0.003040932584553957, 0.04346157982945442, -0.010074788704514503, -0.007753743324428797, -0.020207604393363, -0.00450065266340971, -0.014484776183962822, -0.0067382859997451305, 0.005149820353835821, 0.020599281415343285, -0.014999758452177048, 0.02318144403398037, 0.016885608434677124, 0.008790960535407066, 0.01880047097802162, -0.006923244334757328, -0.013643397018313408, 0.014477523043751717, -0.03797810897231102, -0.03359713777899742, 0.006110878195613623, 0.02174529805779457, -0.009189890697598457, 0.025241373106837273, -0.021643752232193947, 0.00720974849537015, 0.012018664740025997, -0.014528295956552029, -0.006799938622862101, -0.00044992926996201277, 0.021353621035814285, -0.0030771989841014147, 0.015086797066032887, -0.000526315241586417, 0.02043970860540867, -0.03530890867114067, -0.02072983980178833, -0.017088700085878372, 0.026532454416155815, 0.007681210525333881, 0.00420326879248023, -0.011714027263224125, 0.0021959268487989902, 0.01367240957915783, 0.018394287675619125, -0.01852484606206417, -0.022470623254776, 0.003632073989138007, 0.022093454375863075, -0.0008042060653679073, -0.003632073989138007, -0.01652294397354126, 0.010669557377696037, 0.0059984526596963406, 0.015899162739515305, -0.014622587710618973, 0.012497380375862122, 0.0030572523828595877, -0.030231621116399765, -0.03336503356695175, -0.01407133974134922, -0.003686473472043872, 0.02070082724094391, 0.01581212319433689, -0.021803323179483414, -0.002148780506104231, 0.010292387567460537, -0.012258023023605347, -0.009668606333434582, 0.002475177636370063, 0.006564207375049591, 0.04311342537403107, -0.017364323139190674, 0.00665850006043911, 0.0182927418500185, -0.01283103134483099, 0.00045854251948185265, -0.014470269903540611, -0.015580019913613796, 0.007666704244911671, 0.010038523003458977, -0.015855643898248672, 0.01949678361415863, -0.004083589650690556, 0.003895004978403449, 0.02323947101831436, 0.013657903298735619, -0.02956431917846203, -0.015420448035001755, -0.026256829500198364, -0.01977240853011608, 0.005911413114517927, 0.005345658399164677, -0.004105349536985159, 0.011257071979343891, -0.002834214363247156, 0.02467561699450016, -0.004594945348799229, -0.009675859473645687, -0.004928595386445522, -0.01853935234248638, 0.01878596469759941, 0.015115810558199883, -0.013890008442103863, 0.028316758573055267, 0.010807368904352188, 0.018582873046398163, 0.00974113866686821, 0.02988346293568611, 0.010459212586283684, 0.01777050644159317, -0.004935848992317915, 0.007956834509968758, -0.0054762172512710094, 0.007376573514193296, 0.003691913327202201, 0.03423542529344559, -0.009385728277266026, 0.005410938058048487, 0.008348511531949043, -0.030985960736870766, -0.011307844892144203, 0.018466820940375328, -0.0003422635782044381, 0.024370979517698288, 0.0003900898154824972, -0.005327525082975626, 0.008754693903028965, 0.003661087015643716, 0.02100546471774578, -0.010945181362330914, -0.015362421050667763, -0.01331700012087822, 0.0022340065333992243, 3.0373059416888282e-05, -0.004210521932691336, 0.001994648715481162, -0.04763946309685707, 0.0012013225350528955, -0.014680614694952965, 0.013266227208077908, 0.01196063868701458, -0.03258167952299118, 0.0005730081466026604, -0.009451008401811123, -0.018466820940375328, 0.0008459123782813549, 0.008653149008750916, -0.002496937522664666, 0.04337454214692116, 0.004758143797516823, 0.008718428201973438, -0.005711948499083519, 0.008674908429384232, -0.014869199134409428, 0.003942151088267565, 0.0043410807847976685, 0.006872471421957016, 2.6222263841191307e-05, -0.01320820115506649, -0.003942151088267565, 0.0005974879604764283, -0.01383923552930355, 0.01730629801750183, 0.01221450325101614, 0.02364565245807171, 0.008457310497760773, -0.0027036555111408234, 0.004384600557386875, 0.015275382436811924, -0.013897261582314968, 0.01124256569892168, -0.002150594023987651, 0.01727728359401226, 0.021353621035814285, 0.022369077429175377, -0.014999758452177048, -0.0043156943283975124, -0.012729485519230366, -0.020178591832518578, 0.006488048005849123, 0.025023775175213814, 0.0031134651508182287, -0.010263374075293541, -0.0128455376252532, -0.020062539726495743, 0.0038913781754672527, -0.024109862744808197, 0.009944230318069458, -0.0013173747574910522, 0.013744942843914032, 0.011612482368946075, -0.02612627111375332, 0.005363791715353727, 0.01518834289163351, 0.016943633556365967, 0.00950903445482254, 0.00323314405977726, 0.009661353193223476, -0.012352315708994865, -0.026953143998980522, -6.017945634084754e-05, 0.006201543845236301, -0.023805225268006325, -0.0007316733826883137, -0.006535194348543882, -0.0012938017025589943, -0.0034833818208426237, -0.012207250110805035, 0.012330555357038975, 0.003924017772078514, 0.03760094195604324, 0.007688464131206274, -0.0051063005812466145, -0.02618429623544216, 0.014847439713776112, -0.01755290850996971, -0.008239712566137314, -0.01087990216910839, -0.03554101288318634, -0.00431206775829196, 0.030202606692910194, -0.010408439673483372, 0.04116955026984215, -0.0009873510571196675, 0.010945181362330914, -0.007507132366299629, -0.009073838591575623, -0.0034181023947894573, 0.003236770862713456, 0.0016981713706627488, -9.009918721858412e-05, -0.014441256411373615, -0.0037100466433912516, 0.00635748915374279, 0.017190244048833847, 0.012656952254474163, -0.019931979477405548, -0.011249818839132786, -0.028737448155879974, 0.0002763041702564806, -0.02809916064143181, -0.010756595991551876, 0.020294643938541412, -0.019583823159337044, 0.013215454295277596, 0.008464563637971878, 0.00801486149430275, -0.005048274528235197, 0.005740961525589228, -0.028461823239922523, 0.010205348022282124, 0.042068954557180405, -0.011148273013532162, 0.011003207415342331, -0.015841137617826462, 0.008972292765974998, -0.024820683524012566, -0.01553650014102459, 0.010074788704514503, 0.00889250636100769, -0.004848809447139502, 0.009820925071835518, -0.020874904468655586, 0.009683112613856792, 0.0023029125295579433, 0.013411292806267738, 0.02072983980178833, -0.01515933033078909, -0.04563756287097931, -0.0031442916952073574, 0.003209571121260524, 0.0051425667479634285, -0.012047678232192993, -0.006876097992062569, 0.006216050591319799, 0.012141970917582512, 0.03580212965607643, 0.024501539766788483, -0.012867297045886517, 0.002045421628281474, 0.016145775094628334, 0.005574136506766081, 0.033452071249485016, 0.026750052347779274, -0.019090600311756134, -0.03255266696214676, -0.014680614694952965, 0.007644944358617067, -0.004649344831705093, 0.01087990216910839, -0.009168130345642567, -0.0040582031942903996, -0.027330312877893448, -0.01874244399368763, -0.010582517832517624, 0.007666704244911671, -0.027504391968250275, 0.029042085632681847, -0.0018468633061274886, -0.007362066768109798, -0.0063284761272370815, 0.006727405823767185, -0.025270385667681694, 0.02265920862555504, 0.01333150640130043, 0.004003803711384535, 0.02711271494626999, 0.008312244899570942, 0.02541545033454895, -0.025575023144483566, 0.01774149388074875, 0.013150175102055073, -0.02985445037484169, 0.0036465805023908615, -0.018669910728931427, 0.02982543781399727, 0.016871100291609764, 0.005936799570918083, -0.004065456800162792, -0.029259683564305305, 0.00926967617124319, -7.68393074395135e-05, -0.0003737699589692056, 0.006118131335824728, -0.005244112573564053, -0.015057784505188465, 0.016247320920228958, -0.003543221391737461, 1.2402804713929072e-05, -0.020135071128606796, -0.01801711693406105, -0.014404989778995514, -0.00026293096016161144, -0.008827227167785168, 0.008848986588418484, 0.0015630791895091534, 0.0018568366067484021, 0.023573121055960655, -0.01823471486568451, 0.012461114674806595, -8.301592060888652e-06, 0.002857787534594536, -0.007644944358617067, -0.007615931332111359, -0.0147966668009758, -0.03339404612779617, -0.013665156438946724, -0.002288406016305089, 6.97560390108265e-05, 0.008232459425926208, -0.0029702133033424616, 0.004634838085621595, -0.007304040715098381, 0.002901307074353099, -0.005001128185540438, -0.005657549016177654, 0.01345481164753437, -0.008210699073970318, 0.0001354321138933301, -0.003811592236161232, 0.007891555316746235, -0.018147677183151245, 0.06702019274234772, 0.0031025854405015707, 0.0024679244961589575, 0.001867716433480382, 0.011532695963978767, -0.01257716678082943, 0.011409390717744827, 0.013273480348289013, 0.02470463141798973, 0.008450057357549667, -0.006767299026250839, -0.0007479932392016053, 0.018466820940375328, 0.015841137617826462, -0.029027577489614487, 0.016116760671138763, 0.027069196105003357, 0.004504279233515263, 0.017567414790391922, 0.022586675360798836, -0.011931626126170158, 0.027939587831497192, -0.01922116056084633, 0.021034477278590202, 0.004489772953093052, 0.020120564848184586, 0.00363570055924356, -0.0058860271237790585, -0.013715929351747036, 0.009646845981478691, -0.01974339596927166, 0.008537095971405506, -0.004243161529302597, 0.007046549580991268, -0.02019309811294079, 0.014825679361820221, 0.0075288922525942326, 0.025546008720993996, -0.010908914729952812, 0.017146725207567215, 0.010306893847882748, -0.004460759926587343, 0.026111764833331108, 0.014898212626576424, -0.005309392232447863, -0.009784658439457417, 0.019453264772892, -0.0043773469515144825, -0.004235908389091492, -0.010618784464895725, -0.0062777032144367695, -0.005280379205942154, 0.005389178171753883, -0.005722828209400177, 0.006654873490333557, -0.002212246647104621, 0.005806241184473038, -0.020599281415343285, -0.013309746980667114, 0.005610402673482895, 0.006654873490333557, -0.0131864408031106, -0.019308198243379593, 0.004040070343762636, -0.006020212545990944, -0.0155510064214468, -0.0009674046305008233, -0.015347914770245552, 0.002079874509945512, 0.009654099121689796, 0.004424493294209242, 0.03008655458688736, 0.012330555357038975, -0.020613787695765495, -0.01849583350121975, 0.013940781354904175, 0.0042649214155972, 0.023761706426739693, 0.008812720887362957, -0.0008758321055211127, -0.0014470269670709968, -0.0004320227599237114, -0.013106655329465866, -0.015304394997656345, 0.010335906408727169, 0.008580615743994713, 0.007760996464639902, -0.015449460595846176, 0.00287229404784739, -0.023341016843914986, -0.004384600557386875, 0.00566480215638876, 0.006825325079262257, 0.007630437612533569, 0.009059331379830837, -0.006172530818730593, 0.008000354282557964, -0.014970744960010052, 0.009044825099408627, 0.017668960615992546, -0.004119856283068657, 0.014383230358362198, -0.001486013294197619, -0.004007430747151375, -0.0012684152461588383, -0.001529532833956182, -0.002081687794998288, 0.013360519893467426, -0.025952192023396492, 0.00021929801732767373, -0.02094743773341179, -0.011924372054636478, 0.003053625812754035, -0.02218049392104149, -0.03377121686935425, 0.0007312200614251196, -0.01926467940211296, -0.017886558547616005, 0.002145153935998678, -0.01419464498758316, 0.0018767830915749073, 0.005639415699988604, 0.011779307387769222, -0.017712479457259178, 0.01049547828733921, 0.01221450325101614, -0.006451781839132309, -0.007826276123523712, -0.003198691178113222, -0.01518834289163351, 0.006607727147638798, -0.0131864408031106, 0.020309150218963623, -0.005385551601648331, 0.006426395382732153, -0.0062777032144367695, -0.012098451144993305, -0.01575409807264805, 0.024080850183963776, -0.023282989859580994, 0.017726987600326538, 0.020178591832518578, 0.0058715203776955605, 0.014383230358362198, 0.011010460555553436, 0.022398091852664948, -0.03252365440130234, -0.014985251240432262, -0.011300591751933098, -0.005066407844424248, 0.035628050565719604, -0.016189293935894966, -0.013512837700545788, -0.016856594011187553, -0.00703566987067461, -0.004874195903539658, -0.01726277731359005, 0.028070146217942238, 0.004558678716421127, -0.02515433356165886, 0.013483825139701366, 0.004167002625763416, 0.008203445933759212, 0.0055161104537546635, 0.005472590681165457, -0.015971696004271507, -0.001473320065997541, 0.0303476732224226, 0.006390129216015339, -0.02022211067378521, -0.021716283634305, 0.00287229404784739, 0.017422350123524666, -0.013810222037136555, 0.010488225147128105, 0.0029683997854590416, 0.0027489885687828064, -0.00342354248277843, -0.01244660746306181, 0.02512531913816929, 0.000689967127982527, 0.014042326249182224, 0.019308198243379593, 0.010263374075293541, -0.01579761691391468, -0.012794764712452888, 0.024240421131253242, -0.014651601202785969, 0.006680259946733713, 0.004116229712963104, -0.007177108433097601, 0.013346012681722641, 0.00283240107819438, -0.006002079229801893, -0.006604100577533245, -0.01073483657091856, 0.002859600819647312, 0.012743991799652576, -0.0015376928495243192, -0.0038043390959501266, -0.0014742267085239291, -0.003280290402472019, 0.006382875610142946, -0.003953030798584223, -0.01896004192531109, -0.029245175421237946, -0.011532695963978767, -0.002515070606023073, -0.010669557377696037, 0.015449460595846176, -0.04659499228000641, -0.04044422134757042, -0.004765396937727928, 0.001455186866223812, -0.027069196105003357, -0.00017339843907393515, 0.0182202085852623, 0.03742686286568642, 0.0008345791138708591, -0.0032258909195661545, 0.022354571148753166, -0.005635789129883051, 0.007702970411628485, -0.01405683346092701, -0.009973243810236454, 0.014521042816340923, 0.028708433732390404, 0.008479069918394089, -0.0009111918043345213, -0.01996099390089512, 0.027997614815831184, -0.004286681301891804, -0.001799717079848051, 0.005780854728072882, -0.003198691178113222, 0.0375429131090641, 0.019409744068980217, 0.017074191942811012, 0.026213310658931732, -0.009226156398653984, 0.005769974552094936, -0.0063175964169204235, 0.0015123063931241632, -0.011322351172566414, -0.0023881385568529367, -0.0055886427871882915, -0.00511355372145772, -9.304582636104897e-05, -0.006934124045073986, -1.6730682546040043e-05, -0.0022738995030522346, 0.008413790725171566, -0.019134121015667915, 0.010350413620471954, -0.007985848002135754, 0.019076094031333923, 0.00025613102479837835, -0.01222900953143835, -0.0048016635701060295, -0.01629083976149559, 0.013534598052501678, 0.011547202244400978, -0.019569316878914833, -0.0015712392050772905, -0.009066584520041943, 0.026532454416155815, -0.008696667850017548, 0.006034718826413155, 0.007358440198004246, -0.0030554390978068113, 0.002351872157305479, -0.0027435484807938337, 0.023993810638785362, 0.002395391697064042, 0.005001128185540438, -0.006876097992062569, -0.003167864866554737, -0.008421043865382671, 0.019090600311756134, 0.018873002380132675, 0.006411888636648655, 0.016450410708785057, -0.010792862623929977, -0.027214260771870613, -0.0029702133033424616, -0.008239712566137314, 0.009799164719879627, 0.009639592841267586, -0.003461622167378664, -0.0036937266122549772, 0.022253025323152542, -0.013744942843914032, 0.03234957531094551, -0.012243515811860561, -7.207934686448425e-05, 0.016464918851852417, 0.014361470006406307, 0.0023972049821168184, 0.016348866745829582, -0.007739237044006586, 0.0004905022215098143, -0.012316049076616764, -0.007485372480005026, -0.017683466896414757, 0.012236262671649456, 0.003913138061761856, 0.003474315395578742, 0.013150175102055073, -0.017146725207567215, 0.006727405823767185, 0.00801486149430275, -0.00034385023172944784, -0.003934897948056459, 0.010865394957363605, -0.022340064868330956, -0.005407311022281647, -0.010408439673483372, 0.02866491489112377, -0.020309150218963623, -0.006897857878357172, 0.020889410749077797, 0.005077287554740906, 0.006194290705025196, 0.01381747517734766, -0.0032947969157248735, 0.025067294016480446, 0.002772561740130186, 0.0035504745319485664, -0.01798810437321663, -0.021368127316236496, -0.009168130345642567, 0.004301188047975302, -0.004279428161680698, -0.0012947083450853825, -0.014006060548126698, 0.024820683524012566, -0.004108976107090712, -0.021585725247859955, -0.024574071168899536, -0.004885076079517603, -0.015347914770245552, 0.008159926161170006, -0.01405683346092701, -0.005276752635836601, 0.008210699073970318, 0.023834237828850746, 0.007184362038969994, -0.01540594082325697, 0.021556712687015533, -0.026953143998980522, 0.010676810517907143, 0.02837478369474411, -0.0062777032144367695, 0.014383230358362198, -0.007329427171498537, 0.01407133974134922, 0.01320820115506649, 0.0008622322347946465, 0.0010136441560462117, 0.005534243304282427, -0.0018278234638273716, 0.0063175964169204235, -0.012983349151909351, -0.002870480762794614, 0.019815927371382713, -0.018191196024417877, -0.026532454416155815, 0.020033525303006172, -0.04195290058851242, -0.011402137577533722, 0.011293337680399418, -0.03127609193325043, -0.01977240853011608, 0.0003132504934910685, -0.022905820980668068, 0.014622587710618973, 0.016334358602762222, -0.008479069918394089, 0.003793459152802825, -0.00418513547629118, 0.016653502359986305, -0.00801486149430275, -0.00450065266340971, -0.019902966916561127, 0.0029357601888477802, 0.0018414233345538378, 0.03406134620308876, -0.006633113604038954, 0.011670508421957493, -0.022833287715911865, -0.0040110573172569275, -0.008609629236161709, -0.0060455990023911, -0.0007198868552222848, 0.016392385587096214, -0.0015657992335036397, -0.01774149388074875, 0.018408793956041336, 0.002908560447394848, 0.009646845981478691, 0.023573121055960655, 0.0022394463885575533, 0.016609983518719673, 0.02814267948269844, -0.000915725075174123, -0.010850888676941395, -0.01969987526535988, 0.019105108454823494, 0.017915571108460426, -0.015028771013021469, 0.006778178736567497, 0.0006546074291691184, -0.03971889615058899, 0.0009837244870141149, -0.0019475024892017245, -0.010205348022282124, 0.0006799938855692744, -0.010756595991551876, -0.011039474047720432, -0.010872649028897285, 0.006263196934014559, 0.008297738619148731, 0.028548862785100937, -0.02635837532579899, 0.010161828249692917, -0.00828323233872652, 0.012170983478426933, -0.0015141196781769395, -0.00837027095258236, -0.00788430217653513, -0.00839203130453825, -0.002295659389346838, 0.007615931332111359, 0.0010317773558199406, -0.014608081430196762, -0.012011411599814892, 0.038616396486759186, -0.011003207415342331, 0.00975564494729042, -0.017175737768411636, -0.006070985458791256, -0.009596073068678379, -0.0007198868552222848, 0.03214648365974426, 0.002852347679436207, 0.02612627111375332, 0.008928772993385792, 0.019670862704515457, 0.0026673893444240093, 0.005211472976952791, -0.020584775134921074, 0.0039022581186145544, -0.007148095406591892, 0.004094469826668501, -0.0077972630970180035, -0.0003737699589692056, -0.003109838580712676, -0.009182637557387352, 0.006890604738146067, -0.018089650198817253, 0.011148273013532162, 0.013193693943321705, -0.00348700862377882, 0.03060878999531269, -5.8309473388362676e-05, -0.012649699114263058, 0.028563369065523148, 0.010509985499083996, -0.010655050165951252, 0.00940023548901081, 0.007260521408170462, 0.012207250110805035, 0.00295933336019516, 0.022006414830684662, -0.04729130491614342, -0.005294885486364365, 0.003735432866960764, -0.014223658479750156, -0.0008422857499681413, -0.005175206810235977, -0.016464918851852417, -0.005508856847882271, -0.0005811681039631367, 0.011184538714587688, 0.026329362764954567, -0.023137925192713737, -0.013302492909133434, 0.015115810558199883, 0.015681564807891846, -0.0004660224658437073, 0.008994052186608315, 0.009668606333434582, -0.016668010503053665, -0.018887510523200035, 0.011554455384612083, 0.006245063617825508, 0.012482874095439911, 0.026111764833331108, 0.00336007634177804, 0.003982044290751219, -0.006988523527979851, 0.004638464655727148, 0.008101900108158588, 0.018597379326820374, 0.0005974879604764283, 0.010821876116096973, -0.02988346293568611, 0.03263970464468002, -0.0011641494929790497, 0.0128092709928751, 0.0031388516072183847, -0.011148273013532162, 0.013396785594522953, 0.01430344395339489, 0.00574458809569478, 0.02265920862555504, 0.009958736598491669, 0.013411292806267738, 0.0013137481873854995, 0.007811769377440214, -0.006825325079262257, -0.01134411059319973, -0.003668340155854821, 0.010698569938540459, -0.0029230669606477022, -0.0038079656660556793, -0.010328653268516064, 0.0021705403923988342, 0.006629487033933401, -0.01208394393324852, -0.009421994909644127, 0.018945535644888878, 0.01221450325101614, 0.010560758411884308, 0.016653502359986305, 0.014941731467843056, -0.009349462576210499, 0.0017525708535686135, 0.009842684492468834, -0.02395028993487358, 0.01681307516992092, -0.0030518125277012587, -0.014223658479750156, 0.004105349536985159, -0.01878596469759941, -0.004997501615434885, 0.007659451104700565, 0.00863864179700613, 0.013498331420123577, 0.009770152159035206, -0.006807191763073206, 0.0028614141047000885, 0.017828533425927162, 0.007220628205686808, 0.016943633556365967, -0.01949678361415863, 0.00401468388736248, -0.018089650198817253, 0.015971696004271507, -0.0009964177152141929, 0.004069083370268345, -0.011133765801787376, 0.014201898127794266, 0.011394883506000042, -0.034148383885622025, -0.0003084905620198697, -0.006821698509156704, 0.0019728888291865587, -0.0008672188268974423, 0.012388581410050392, -0.006430021952837706, -0.004148869309574366, 0.00924066361039877, -0.004478892777115107, 0.00026746426010504365, 0.010060282424092293, 0.0031261583790183067, -0.014201898127794266, 0.014064086601138115, 0.022789767012000084, 0.008885253220796585, 0.0063030896708369255, -0.0018260101787745953, -0.009081091731786728, 0.005160700064152479, 0.002933946903795004, 0.025009267032146454, 0.0029829065315425396, 0.01679856888949871, -0.008130913600325584, -0.01221450325101614, -0.034902725368738174, 0.0022104333620518446, 0.003686473472043872, 0.007267774548381567, 0.007710224017500877, 0.00045491589116863906, 0.007111829239875078, -0.0007257801480591297, 0.003334689885377884, -0.010459212586283684, 0.010952434502542019, -0.010466465726494789, -0.008863493800163269, -0.0005167953204363585, 0.0002313112490810454, 0.010887155309319496, -0.016842087730765343, -0.021310100331902504, -0.028012121096253395, -0.02840379625558853, -0.013969793915748596, 0.001755290781147778, -0.0011006833519786596, -0.009878951124846935, -0.030463725328445435, 0.01949678361415863, 0.01653745025396347, 0.021034477278590202, -3.442469096626155e-05, 0.0014878265792503953, -0.0009873510571196675, 0.0029121870175004005, 0.012316049076616764, -0.02512531913816929, 0.005759094841778278, 0.0012865484459325671, 0.013882754370570183, 0.007833529263734818, 0.0007865262450650334, -0.0006940470775589347, 0.005878773517906666, 0.001065323711372912, -0.00936396885663271, -0.00022745794558431953, 0.007140842266380787, -0.040125079452991486, 0.01148917619138956, -0.00323314405977726, -0.021774310618638992, 0.003525088308379054, -0.0070429230108857155, -0.01896004192531109, -0.019656356424093246, 0.015492980368435383, -0.0007801796309649944, 0.01073483657091856, 0.003247650805860758, 0.002819707849994302, 0.012649699114263058, 0.005215099547058344, -0.021339114755392075, -0.017567414790391922, 0.022644702345132828, 0.008036620914936066, -0.02094743773341179, 0.0014007873833179474, 0.0009198050247505307, 0.01553650014102459, 0.00863864179700613, -0.024849696084856987, -0.022020921111106873, 0.001504146377556026, 0.004591318778693676, 0.01296884287148714, -0.012221756391227245, 0.008943279273808002, -0.008051127195358276, 0.012802017852663994, -0.032494641840457916, -0.013715929351747036, 0.010553505271673203, -0.009835431352257729, 0.006676632910966873, -0.0006228743586689234, -0.013715929351747036, -0.00789880845695734, 0.0026311229448765516, -0.009465514682233334, -0.031131025403738022, 0.003909511491656303, 0.0022485130466520786, 0.00354866124689579, -0.013005109503865242, -1.8869830455514602e-05, -0.010669557377696037, 0.01700166054069996, -0.008580615743994713, -0.004979368299245834, 0.006832578219473362, -0.01578311063349247, -0.008841733448207378, -0.003262157319113612, -0.024254927411675453, 0.014883705414831638, -0.004145242739468813, -0.015086797066032887, -0.0005467150476761162, -0.0027435484807938337, -0.020410696044564247, -0.010096549056470394, 0.0002552243531681597, 0.0013708675978705287, -0.0017942771082744002, 0.01431069802492857, -0.0014062273548915982, 0.027997614815831184, 3.822132202913053e-05, -0.023631146177649498, 0.0007683930452913046, 0.012519140727818012, 0.011438403278589249, 0.03208845853805542, 0.013977047055959702, -0.005766347981989384, -0.020048031583428383, 0.019366225227713585, -0.01331700012087822, -0.0017661707242950797, -0.006361115723848343, -0.005606776103377342, 0.01124256569892168, 0.0059984526596963406, -0.003836978692561388, -0.0132227074354887, 0.00709732249379158, 0.005073660984635353, 0.018133169040083885, -0.01704517938196659, 0.006575087551027536, 0.011017713695764542, -0.018307248130440712, 0.003724553156644106, 0.030463725328445435, 0.01578311063349247, -0.0028614141047000885, 0.021571218967437744, 0.0028505343943834305, -0.007173481862992048, 0.001874969806522131, 0.003053625812754035, -0.014020566828548908, -0.017088700085878372, 0.015231862664222717, 0.006136264652013779, -0.019438758492469788, 0.011996905319392681, 0.0163053460419178, -0.021092502400279045, 0.015565512701869011, -0.014695120975375175, -0.013360519893467426, 0.009494527243077755, -0.012947083450853825, 0.022572169080376625, 0.015478474088013172, 0.01752389594912529, 0.027431858703494072, -0.009690365754067898, 0.010995954275131226, 0.03380022943019867, 0.010451959446072578, -0.007322174031287432, -0.004228655248880386, -0.015144823119044304, 0.02693863771855831, 0.012366821989417076, -0.004576812032610178, 0.00323314405977726, 0.004993875045329332, 0.010676810517907143, -0.01779951900243759, 0.009936977177858353, -0.013338759541511536, -0.002063554711639881, -0.02519785240292549, 0.003717299783602357, 0.0026474427431821823, -0.01481117308139801, 0.020570266991853714, -0.0028632276225835085, 0.009226156398653984, -0.023877758532762527, -0.014912718906998634, -0.0011378563940525055, -0.00414161616936326, 0.017610933631658554, -0.01531890220940113, 0.017378829419612885, -0.003630260704085231, 0.023137925192713737, 0.024225914850831032, -0.022876806557178497, 0.0062269303016364574, 0.009276929311454296, 0.01901806890964508, -0.006897857878357172, 0.00487782247364521, -0.011822826229035854, -0.00887800008058548, 0.027765508741140366, 0.008907012641429901, 0.013229960575699806, 0.008363017812371254, -0.013266227208077908, 0.01457906886935234, -0.011924372054636478, 0.005396431311964989, -0.0013953474117442966, 0.016218306496739388, 0.015347914770245552, 0.00975564494729042, -0.02048322930932045, -0.007920568808913231, 8.851253369357437e-05, 0.013882754370570183, 0.0027381086256355047, -0.00014019207446835935, -0.018307248130440712, 0.011772054247558117, 0.0003932631225325167, 0.01111200638115406, 0.0044535063207149506, 0.005407311022281647, -0.012018664740025997, -0.009922470897436142, 0.02439999394118786, -0.0040582031942903996, 0.005545123480260372, 0.004866942763328552, 0.021034477278590202, 0.003525088308379054, 0.0030862654093652964, 0.012272529304027557, -0.015434954315423965, 0.007572411559522152, 0.008022114634513855, 0.002301099244505167, -0.000695860362611711, 0.0197288878262043, 0.02963685244321823, -0.02345706894993782, 0.008870746940374374, -0.027765508741140366, 0.002803388051688671, -0.009828178212046623, -0.008000354282557964, 0.009008558467030525, -0.014847439713776112, -0.008819974027574062, 0.005954932887107134, 0.005030141212046146, -0.010473718866705894, 0.006114504765719175, -0.008457310497760773, -0.002870480762794614, -0.020773358643054962, -0.028229719027876854, 0.002041794825345278, 0.01136587094515562, 0.03481568768620491, 0.015565512701869011, 0.016087748110294342, -0.014941731467843056, 0.017959091812372208, 0.0004186495498288423, 0.029709385707974434, -0.007166228722780943, -0.026851598173379898, 0.024994760751724243, -0.0051933396607637405, 0.019670862704515457, -0.009610580280423164, 0.022165987640619278, -0.003198691178113222, 0.009073838591575623, 0.007935075089335442, 0.006052852142602205, -0.009342209435999393, 0.009574313648045063, -0.007565158419311047, 0.012758498080074787, 0.008907012641429901, 0.00574458809569478, -0.001272948575206101, 0.0034307956229895353, 0.016697023063898087, 0.0008994052186608315, -0.0016818514559417963, 0.004917715676128864, 0.003599434159696102, -0.007039296440780163, 0.01727728359401226, -0.0001563985861139372, -0.0031134651508182287, 0.005026514641940594, 0.013657903298735619, -0.022847793996334076, 0.014869199134409428, 0.00023346455418504775, -0.007673957385122776, -0.005008381325751543, -0.012729485519230366, -0.0015159329632297158, -0.016174787655472755, -0.002263019559904933, -0.041372641921043396, -0.007300414144992828, -0.02145516686141491, 0.00511355372145772, -0.02043970860540867, -0.012961589731276035, 0.005606776103377342, -0.006165277678519487, 0.017639948055148125, -0.0013563610846176744, 0.027025675401091576, -0.0038659917190670967, -0.01653745025396347, 0.0038768716622143984, -0.017451362684369087, 0.013164681382477283, 0.009719379246234894, -0.008116406388580799, -0.006121757905930281, -0.017364323139190674, -0.015986202284693718, 0.019801421090960503, 0.009066584520041943, -0.019119614735245705, 0.005276752635836601, -0.0043302010744810104, 0.008450057357549667, 0.022311052307486534, 0.004692864138633013, -0.0009447381598874927, 6.097278310335241e-05, 0.016406891867518425, -0.008413790725171566, 0.034206412732601166, 0.011431150138378143, -0.004246788565069437, -0.019409744068980217, 0.013353265821933746, -0.013164681382477283, -0.010916167870163918, 0.0023536854423582554, -0.013266227208077908, -0.005309392232447863, -0.0024661109782755375, -0.010437452234327793, -0.012272529304027557, 0.019395237788558006, -0.017175737768411636, 0.014840186573565006, -0.012482874095439911, 0.0008246058714576066, -0.019206654280424118, -0.013055882416665554, 0.003606687532737851, -0.011786560527980328, -0.008674908429384232, 0.01727728359401226, -0.008080140687525272, 0.012388581410050392, -0.012802017852663994, 0.011199045926332474, -0.01146016363054514, 0.010488225147128105, 0.014470269903540611, 0.007028416730463505, 0.004243161529302597, -0.002828774508088827, 0.014651601202785969, 0.022746248170733452, 0.026024725288152695, -0.03832626715302467, -0.019047081470489502, 0.006883351132273674, -0.009059331379830837, 0.005595896393060684, -0.0002404911647317931, -0.012185489758849144, 0.009153624065220356, 0.010219854302704334, 0.007013909984380007, -0.0007824462954886258, -0.0005974879604764283, 0.0034598088823258877, 0.01576860435307026, -0.0311020128428936, -0.0002840107772499323, 0.012221756391227245, 0.016392385587096214, 0.0017598241101950407, -0.011402137577533722, 0.023021873086690903, 0.01060427725315094, 0.009603327140212059, 0.0031950646080076694, 0.022253025323152542, 0.019192146137356758, 0.006676632910966873, -0.003285730257630348, -0.008304991759359837, -0.005824374035000801, 0.0027072823140770197, -0.005624909419566393, -0.022586675360798836, 0.005258619319647551, 0.000170905128470622, -0.004681984428316355, -0.00936396885663271, -0.007557905279099941, -0.018626391887664795, 0.030463725328445435, -0.007760996464639902, 0.023486081510782242, 0.0002865040733013302, 0.012417594902217388, 0.0002027515001827851, 0.01309940218925476, -0.00255677686072886, -0.001535879448056221, -0.003347383113577962, 0.014941731467843056, 0.013164681382477283, -0.014404989778995514, 0.0031388516072183847, -0.01282377727329731, -0.013520091772079468, -0.008421043865382671, 0.006161651108413935, 0.00530213862657547, -0.01049547828733921, 0.0013318812707439065, -0.036643508821725845, 0.009857190772891045, -0.010314146988093853, -0.01197514496743679, -0.01579761691391468, -0.01823471486568451, -0.007122708950191736, 0.01136587094515562, -0.02000451274216175, -0.018626391887664795, 0.028316758573055267, 0.019859448075294495, -0.0025966698303818703, -0.010205348022282124, -0.029013071209192276, -0.004895955789834261, -0.0039856708608567715, -3.8051322917453945e-05, 0.03939975053071976, 0.013795715756714344, 0.009168130345642567, 0.026735546067357063, 0.015115810558199883, 0.019873954355716705, -0.005124433897435665, 0.013113908469676971, -0.012287035584449768, -0.013396785594522953, 0.023616639897227287, -0.007166228722780943, -0.008994052186608315, -0.012395834550261497, 0.0022358198184520006, 0.024327460676431656, -0.021136023104190826, 0.012656952254474163, 0.004529665689915419, 0.01196063868701458, -0.0221950002014637, -0.0014189205830916762, 0.007760996464639902, 0.022093454375863075, -0.0021796070504933596, -0.005229606293141842, 0.010771103203296661, -0.009516287595033646, -0.006419142242521048, -0.011162779293954372, -0.012497380375862122, -0.014027819968760014, 0.01600070856511593, -0.002056301338598132, -0.022020921111106873, -0.014426750130951405, 0.009581566788256168, -0.007833529263734818, 0.01605873554944992, -0.003657460445538163, 0.001039937254972756, 0.0013645209837704897, -0.009407488629221916, 0.0018967295764014125, -0.005109927151352167, -0.0020037153735756874, -0.03252365440130234, 0.004623958375304937, 0.0030953320674598217, 0.0008019394590519369, 0.005849760491400957, 0.016726035624742508, 0.0005575949908234179, 0.011003207415342331, -0.010923421010375023, -0.0030626924708485603, 0.010901661589741707, -0.006067358423024416, -0.008435550145804882, 0.00672015268355608, 0.007140842266380787, -0.006430021952837706, -0.001492359908297658, -9.610580309526995e-05, 0.004152495879679918, 0.02048322930932045, -0.00487782247364521, 0.0010218041716143489, 0.029796425253152847, 0.04166277125477791, -0.001429800409823656, 0.009356715716421604, -0.0034833818208426237, 0.004206895362585783, -0.010053029283881187, 0.0016401452012360096, 0.011322351172566414, -0.008174433372914791, 0.016900114715099335, 0.011989652179181576, 0.01946777105331421, 0.02397930435836315, 0.01700166054069996, 0.008145419880747795, 0.0054617105051875114, 0.00876920111477375, -0.007409213110804558, 0.0060455990023911, 0.005458083935081959, -0.004304814618080854, 0.00646991515532136, -0.008957785554230213, -0.007790009956806898, -0.014238164760172367, 0.010205348022282124, 0.014470269903540611, -0.0022231265902519226, -0.002852347679436207, -1.634818545426242e-05, -0.010517238639295101, 0.002841467736288905, 0.028722940012812614, -0.01383198145776987, -0.014354216866195202, -0.027939587831497192, 0.02933221496641636, -0.0024425380397588015, -0.0043156943283975124, -0.02545897103846073, 0.015115810558199883, 0.013084894977509975, 0.005581389646977186, -0.016232812777161598, 0.0011931625194847584, -0.009538047015666962, 0.00839203130453825, -0.004863316193223, -0.009356715716421604, -0.008674908429384232, -0.01185183972120285, -0.014731386676430702, -0.004246788565069437, -0.003963910974562168, 0.01062603760510683, 0.025342918932437897, -0.01540594082325697, -0.020033525303006172, -0.01923566684126854, -0.015289888717234135, -0.005534243304282427, 0.0033763961400836706, -0.003818845609202981, -0.011750293895602226, 0.002803388051688671, 0.008384778164327145, 0.017901064828038216, 0.0458986796438694, -0.0002520510461181402, -0.0010199907701462507, -0.014898212626576424, -0.00562128284946084, 0.017204752191901207, -0.005711948499083519, -0.014782159589231014, 0.01096694078296423, 0.022136973217129707, -0.008457310497760773, -0.015333408489823341, 0.00937847513705492, 0.0066730063408613205, 0.004707370884716511, 0.018843989819288254, -0.0015032397350296378, -0.0241823960095644, 0.016203800216317177, 0.002175980480387807, -0.024356473237276077, 0.00813816674053669, -0.009429248049855232, -0.014187391847372055, -0.0016029721591621637, 0.017915571108460426, -0.01024886779487133, -0.004504279233515263, 0.040821392089128494, -0.011024966835975647, 0.012598926201462746, 0.023587627336382866, -0.010364919900894165, -0.008312244899570942, 0.02957882732152939, -0.02022211067378521, 0.006995776668190956, 0.0006822604918852448, -0.0101038021966815, 0.005153446923941374, 0.007021163124591112, 0.0016555583570152521, -0.011228058487176895, -0.011162779293954372, -0.0070936959236860275, 0.02344256266951561, -0.0007810862734913826, 0.016900114715099335, -0.004301188047975302, -0.002852347679436207, -0.023892264813184738, 0.008159926161170006, 0.010328653268516064, 0.005316645372658968, -0.02125207521021366, 0.002846907591447234, -0.029665865004062653, -0.01922116056084633, 0.004130735993385315, -0.019337212666869164, 0.02120855450630188, -0.012395834550261497, 0.010234360583126545, 0.013229960575699806, 0.011699520982801914, 0.011126512661576271, -0.02149868570268154, -0.016131266951560974, 0.006219677161425352, 0.007731983438134193, -0.01827823556959629, -0.002150594023987651, 0.016726035624742508, 0.016885608434677124, -0.005951306317001581, -0.01024886779487133, -0.0008658588631078601, -0.02619880437850952, 0.008051127195358276, -0.013882754370570183, -0.0003649300488177687, 0.026793571189045906, -0.006760045886039734, -0.028926031664013863, -0.011721281334757805, -0.014999758452177048, -0.016624489799141884, 0.023558614775538445, -0.023587627336382866, 0.0062414370477199554, 0.01676955632865429, -0.0037064198404550552, -0.022296546027064323, 0.011148273013532162, 0.0326106920838356, -0.010901661589741707, 0.043809738010168076, 0.024806175380945206, 0.007304040715098381, -0.0066476198844611645, -0.0022847794461995363, -0.025575023144483566, -0.007536145392805338, -0.0006586873787455261, 0.01161973550915718, 0.011003207415342331, -0.008928772993385792, -0.010183588601648808, 0.010277880355715752, 0.016102254390716553, -0.013367773033678532, -0.0004521959344856441, 0.0012239889474585652, 0.008936026133596897, -0.010212601162493229, 0.020831385627388954, 0.008167179301381111, 0.0005344751989468932, 0.0007416466251015663, -0.00733305374160409, 0.0015213729348033667, 0.010836382396519184, 0.015521992929279804, 0.010597024112939835, 0.012569913640618324, -0.003079012269154191, 0.008696667850017548, 0.02023661695420742, -0.005759094841778278, 0.019815927371382713, 0.004395480267703533, 0.005795361008495092, 0.003742686240002513, 0.010981447994709015, 0.007557905279099941, -0.017117712646722794, -0.043026383966207504, -0.01848132722079754, 0.0040872166864573956, 0.009661353193223476, -0.017436856403946877, 0.0074128396809101105, 0.013491078279912472, 0.003428982337936759, -6.182277866173536e-05, 0.012141970917582512, 0.00963233970105648, 0.008667655289173126, -0.016189293935894966, 0.004928595386445522, -0.00033886361052282155, -0.0058715203776955605, 0.007391079794615507, 0.0020853145979344845, -0.018945535644888878, 0.015521992929279804, -0.015594526194036007, 0.008609629236161709, 0.00876920111477375, 0.010872649028897285, -0.0011015901109203696, 0.004174255765974522, -0.0004977555363439023, 0.01700166054069996, 0.001022710814140737, -0.012773004360496998, 0.0016192920738831162, -0.026024725288152695, 0.009646845981478691, -0.024559564888477325, 0.006876097992062569, 0.0030119195580482483, 0.0018532099202275276, -0.0014125739689916372, -0.012308795936405659, -0.006016585510224104, 0.008457310497760773, -0.024022823199629784, 0.0040328167378902435, 0.0006922337342984974, -0.005055527668446302, 0.04320046305656433, -0.018814977258443832, -0.016348866745829582, 0.025749100372195244, 0.007238761521875858, -0.027301300317049026, -0.014390483498573303, 0.020671812817454338, 0.022847793996334076, 0.010676810517907143, 0.003258530516177416, -0.029999516904354095, -0.0023536854423582554, 0.018553858622908592, 0.009654099121689796, 0.006002079229801893, 0.0034199159126728773, -0.007155349012464285, -0.01331700012087822, -0.003963910974562168, -0.005048274528235197, 0.011191792786121368, -0.019859448075294495, 0.00011078233364969492, -0.03287180885672569, -0.011438403278589249, 0.01975790224969387, -0.01676955632865429, 0.018408793956041336, 0.022775260731577873, -0.009429248049855232, 0.004217775072902441, -0.0029557065572589636, 0.020555760711431503, 0.00874744076281786, -0.008812720887362957, -0.009298689663410187, 0.00228115264326334, 0.01060427725315094, -0.007053803186863661, 0.007365693338215351, -0.0017425976693630219, -0.0004145696002524346, -0.0066730063408613205, 0.011416643857955933, 0.03223352134227753, -0.013411292806267738, -0.0024552312679588795, -0.0017217444255948067, 0.009951483458280563, -0.0018323567928746343, 0.012475620955228806, -0.01749488152563572, 0.01649393141269684, 0.000883992004673928, 0.004939475562423468, 0.024516046047210693, 0.0012511886889114976, -0.0059222932904958725, -0.015957189723849297, 0.008790960535407066, -0.010024015791714191, -0.02490772120654583, -0.005545123480260372, -0.00019833154510706663, -0.023732692003250122, 0.003053625812754035, -0.0058606406673789024, 0.03844232112169266, -0.002652882831171155, 0.001831450150348246, -0.004674731288105249, 0.015609032474458218, -0.023819731548428535, -0.009291436523199081, 0.002426218008622527, -0.0048379297368228436, 0.012221756391227245, 0.00228296616114676, 0.012141970917582512, -0.005969439633190632, -0.01872793771326542, 0.017074191942811012, -0.005273125600069761, -0.015463966876268387, -0.017683466896414757, -0.004246788565069437, -0.024806175380945206, 0.0013318812707439065, -0.009929724037647247, 0.02786705456674099, -0.00889250636100769, 0.015202849172055721, -0.0016510251443833113, -0.0014823866076767445, 0.030898921191692352, -0.000871752155944705, 0.02618429623544216, -0.006426395382732153, 0.006085491739213467, 0.01392627414315939, -0.007003030274063349, 0.00598031934350729, -0.00665850006043911, 0.013005109503865242, 0.0008223392651416361, -0.002645629458129406, 0.0066730063408613205, -0.0022158734500408173, -0.02812817320227623, 0.01196063868701458, -0.006096371449530125, -0.0006129011162556708, -0.040415208786726, -0.0017045179847627878, -0.002803388051688671, -0.003492448478937149, -0.004899582359939814, -0.006451781839132309], "9feb8655-b758-44b2-a591-e72e6e041b9e": [-0.019135398790240288, 0.00013397079601418227, -0.009258589707314968, 0.021166695281863213, -0.036151185631752014, -0.04515954479575157, 0.02671596221625805, 0.01397620141506195, -0.020519036799669266, 0.016942188143730164, 0.04830952361226082, 0.053137533366680145, -0.02315383404493332, -0.011201568879187107, -0.029424356296658516, 0.010244798846542835, -0.0234335046261549, 0.014668019488453865, -0.013983561657369137, -0.025818070396780968, 0.0780724287033081, -0.0052769542671740055, -0.022079307585954666, 0.042009562253952026, 0.021137256175279617, -0.021755477413535118, -0.013645011931657791, 0.012379131279885769, -0.012680882588028908, -0.006171166431158781, 0.026848437264561653, -0.008920039981603622, 0.012452729046344757, 0.01385844498872757, 0.01138556282967329, -0.04354039207100868, 0.0026329574175179005, 0.030646078288555145, -0.004577776417136192, -0.0114076416939497, -0.004522578325122595, 0.04380534589290619, 0.014704818837344646, 0.011473880149424076, -0.028982771560549736, -0.003900677664205432, -0.0032051794696599245, -0.02371317520737648, 0.0012428810587152839, -0.01029631681740284, -0.0004238767141941935, -0.04568944498896599, -0.007543763145804405, 0.003157340921461582, 0.03149981051683426, -0.0062742033042013645, 0.005615503992885351, 0.06117440015077591, -0.026141900569200516, -0.054638925939798355, -0.024699384346604347, -0.005188637413084507, 0.03173532336950302, 0.0036964439786970615, 0.0032419783528894186, -0.010774701833724976, 0.010811501182615757, 0.012452729046344757, -0.04142078012228012, 0.01932675391435623, 0.016898030415177345, 0.07206685841083527, 0.0025519998744130135, 0.022741686552762985, -0.0036026069428771734, 0.03579791635274887, 0.009810572490096092, -0.01982721872627735, 0.032206349074840546, 0.008772844448685646, -0.0007470165728591383, -0.001752545009367168, 0.0406259261071682, 0.019606424495577812, 0.06553138047456741, 0.03797641023993492, -0.04780906066298485, -0.036386698484420776, -0.01920899748802185, -0.05572817102074623, 0.016942188143730164, 0.006502355914562941, -0.0021876913961023092, -0.03400213271379471, -0.01975362002849579, 0.013902603648602962, 0.006487636361271143, -0.026480449363589287, 0.024802422150969505, -0.019238436594605446, 0.016574200242757797, 0.03144093230366707, -0.06458933651447296, 0.01377748791128397, -0.004029473755508661, -0.00021768816804978997, 0.005545585881918669, 0.01680971309542656, -0.03603342920541763, 0.0328245684504509, 0.04430580884218216, -0.04722027853131294, -0.023256869986653328, -0.0031591809820383787, -0.014623860828578472, -0.016059016808867455, -0.02181435562670231, -0.010877738706767559, 0.007341369520872831, -0.0055198268964886665, 0.004463700111955404, -0.022241221740841866, 0.0011315644951537251, -0.00036936841206625104, -0.010127042420208454, 0.03347222879528999, -0.010421433486044407, 0.00784551352262497, 0.041567977517843246, 0.0484272800385952, -0.014690099284052849, -0.017192421481013298, 0.010730543173849583, -0.017221860587596893, 0.0218732338398695, 0.012379131279885769, 0.02333046868443489, 0.04816232994198799, 0.009751694276928902, 0.03238298371434212, -0.058083295822143555, -0.04836840182542801, -0.03541520982980728, 0.02260921150445938, -0.010082883760333061, 0.010701104067265987, -0.04198012128472328, -0.0007796755526214838, -0.017177700996398926, -0.01216569822281599, -0.03297176584601402, 0.008287100121378899, 0.020739829167723656, 0.041450221091508865, 0.03061663918197155, -0.005181277636438608, -0.01993025466799736, 0.0024379235692322254, -0.004820648580789566, 0.02310967445373535, 0.03553296625614166, -0.05505107343196869, -0.0023440865334123373, -0.0026881557423621416, 0.03394325450062752, 0.02643628977239132, 0.039271727204322815, 0.021799635142087936, -0.014388348907232285, 0.010178560391068459, 0.03382549807429314, -0.014277951791882515, 0.04792681708931923, -0.006517075467854738, -0.008677167817950249, -0.020386559888720512, 0.0568762943148613, 0.039889950305223465, -0.00031922999187372625, -0.01307830959558487, 0.01099549513310194, -0.01864965446293354, 0.022682808339595795, 1.8600665498524904e-05, -0.04580720141530037, 0.023124394938349724, 0.004743371158838272, 0.02288888208568096, -0.024198921397328377, 0.0007019379991106689, -0.020342402160167694, -0.008588850498199463, 0.004353303462266922, 0.051076795905828476, 0.01775176264345646, -0.02355126105248928, 0.01836998388171196, 0.01608845591545105, 0.005747979506850243, 0.01998913288116455, 0.0051665580831468105, -0.02365429699420929, -0.029527394101023674, 0.05260762944817543, -0.06488372385501862, 0.010487671010196209, -0.02393396943807602, -0.016235651448369026, 0.019282594323158264, -0.0033542148303240538, 0.028261512517929077, -0.0009724094998091459, -0.003915396984666586, 0.013784847222268581, -0.015308319590985775, 0.006101248785853386, -0.011547477915883064, 0.010193279944360256, -0.004080991726368666, -0.03323671594262123, -0.0174868106842041, 0.0114076416939497, 0.0031536610331386328, -0.019694741815328598, -0.03099934756755829, -0.014631221070885658, -0.018782131373882294, 0.016162052750587463, -0.028909172862768173, -0.008272380568087101, 0.0462193489074707, -0.02121085487306118, 0.03017505258321762, -0.03079327382147312, -0.008449015207588673, 0.011091171763837337, 0.02182907424867153, -0.006907143164426088, -0.016883309930562973, -0.03994882479310036, 0.015955979004502296, 0.013299102894961834, -0.010325755923986435, -0.007319290190935135, -0.00807366706430912, 0.0022852083202451468, -0.031647007912397385, 0.050075870007276535, 0.035827357321977615, 0.009560340084135532, -0.03329559415578842, -0.003637565765529871, 0.002012896817177534, -0.01569102704524994, -0.04315768554806709, 0.0446590781211853, 0.05893703177571297, -0.01903236284852028, -0.013070950284600258, -0.0008380936924368143, -0.01563214883208275, 0.015249441377818584, 0.007786635775119066, -0.0030230251140892506, 0.01686859130859375, -0.0281143169850111, 0.03559184446930885, -0.03300120308995247, 0.01299735251814127, 0.050016991794109344, -0.03712267428636551, 0.008007428608834743, -0.0018914606189355254, 0.026421571150422096, 0.003164700698107481, -0.011827148497104645, -0.004125150386244059, -0.009862090460956097, -0.0011628435458987951, -0.03238298371434212, 0.0012097620638087392, -0.0012079221196472645, 0.018605496734380722, 0.008051587268710136, 0.0174868106842041, -0.012423289939761162, -0.00743336696177721, -0.020224645733833313, -0.04671981558203697, -0.020254084840416908, -0.008927400223910809, 0.015911821275949478, 0.01620621234178543, 0.015161124058067799, 0.003091102931648493, -0.007985349744558334, -0.024920178577303886, -0.030852152034640312, -0.026789559051394463, 0.02767273224890232, 0.01814918965101242, -0.01208474114537239, 0.005556625779718161, -0.01853189803659916, 0.0512239933013916, -0.02783464640378952, 0.020106889307498932, 0.014035079628229141, -0.012526326812803745, 0.041391342878341675, 0.03350166976451874, 0.000741036725230515, -0.006535475142300129, -0.025759192183613777, -0.01642700470983982, 0.014439866878092289, -0.014292671345174313, -0.02182907424867153, -0.021004781126976013, 0.014432507567107677, 0.04727915674448013, 0.018899887800216675, -0.08178175240755081, 0.041273586452007294, 0.04692588746547699, -0.033531107008457184, 0.008559411391615868, -0.004934725351631641, -0.01029631681740284, -0.0328245684504509, -0.02821735478937626, -0.003510609967634082, -0.0465431809425354, 0.03512081876397133, 0.003988994751125574, -0.03017505258321762, -0.03641613572835922, -0.02533232606947422, -0.006921862717717886, -0.020195206627249718, -0.025788631290197372, -0.0415385365486145, -0.012820717878639698, -0.008920039981603622, 0.04198012128472328, -0.00708377780392766, -0.0012189617846161127, 0.012114180251955986, -0.003981634974479675, 0.019238436594605446, 0.000915371289011091, -0.0027709531132131815, 0.0387418232858181, 0.0021674518939107656, 0.016765553504228592, -0.005280634388327599, -0.032029714435338974, -0.0045704166404902935, 0.008978918194770813, -0.004305465146899223, -0.010840940289199352, -0.027864085510373116, -0.012622004374861717, -0.03844743221998215, 0.007742477115243673, 0.002402964513748884, 0.02020992524921894, 0.008721326477825642, 0.02053375542163849, -0.023742614313960075, -0.0052438355050981045, 0.03647501394152641, -0.014601781964302063, -0.026980914175510406, -0.012342332862317562, -0.021917391568422318, 0.01925315521657467, 0.01708938367664814, -0.03132317587733269, 0.026097740978002548, 0.020960621535778046, 0.020798707380890846, -0.022064587101340294, -0.02093118242919445, 0.03579791635274887, 0.0004284765454940498, -0.025420641526579857, -0.007260411977767944, 0.0019264195580035448, 0.0010837259469553828, -0.034149330109357834, -0.0072236135601997375, -0.019061801955103874, -0.004180348943918943, -0.014682739041745663, 0.02843814715743065, -0.01455762330442667, -0.02411060407757759, 0.039212848991155624, -0.013843725435435772, 0.0015611910494044423, -0.005898854695260525, 0.016294529661536217, 0.010178560391068459, 0.024979056790471077, -0.011105891317129135, 0.00957505963742733, -0.003992674872279167, -0.0021343331318348646, -0.010266877710819244, -0.017383774742484093, 0.004485779441893101, 0.018605496734380722, 0.03673996776342392, 0.01864965446293354, 0.0052107167430222034, -0.02489073947072029, 0.01563214883208275, -0.02093118242919445, 0.0048464080318808556, 0.0018951405072584748, 0.03141149505972862, -0.012651443481445312, 0.03591567277908325, -0.019356193020939827, 0.010009285993874073, 0.014439866878092289, 0.014874093234539032, 0.014594421721994877, -0.029762906953692436, 0.009854731149971485, 0.038211919367313385, 0.0067893872037529945, 0.004669773392379284, -0.017560409381985664, -0.026465728878974915, 0.017943117767572403, -0.014351549558341503, 0.0017102262936532497, -0.01502864807844162, 0.004272345919162035, 0.01792839728295803, -0.0020423359237611294, -0.004901606123894453, -0.007830793969333172, -0.04618991166353226, -0.02521456964313984, -0.008493173867464066, 0.017854800447821617, 0.010333116166293621, -0.025567837059497833, -0.013696529902517796, -0.05561041459441185, 0.00469185272231698, -0.010517110116779804, 0.002064415253698826, -0.011194208636879921, -0.004474739544093609, -0.015205282717943192, -0.011260447092354298, -0.051901090890169144, 0.021740758791565895, 0.024669945240020752, 0.005269594490528107, 0.021107817068696022, -0.048633355647325516, -0.03500306233763695, -0.012393850833177567, 0.011871307156980038, -0.0012723200488835573, -0.021358050405979156, -0.00315182120539248, -0.04415861517190933, 0.038270797580480576, -0.03429652377963066, -0.0390656553208828, 0.001734145567752421, -0.006336761172860861, 0.020121607929468155, -0.01405715849250555, 0.015882382169365883, -0.03700491786003113, -0.03350166976451874, -0.02065151184797287, 0.014292671345174313, 0.02721642516553402, 0.002132493071258068, -0.0039411564357578754, 0.044511884450912476, -0.016353406012058258, -0.0028206314891576767, 0.020975342020392418, -0.010774701833724976, 0.007315610535442829, 0.005446229130029678, -0.03800584748387337, 0.0005662422627210617, -0.03223579004406929, 0.014439866878092289, -0.043775904923677444, 0.021902672946453094, 0.02477298304438591, 0.008434295654296875, 0.039889950305223465, 0.02026880346238613, 0.022962478920817375, -0.0007539163343608379, -0.017604567110538483, 0.006682670209556818, -0.004618254955857992, -0.021166695281863213, -0.005126079078763723, -0.04362871125340462, 0.0013983561657369137, -0.005321112927049398, 0.0016035096487030387, -0.008750765584409237, -0.010730543173849583, 0.021166695281863213, -0.005560305435210466, -0.013085669837892056, -0.038094162940979004, 0.006535475142300129, -0.011098532006144524, -0.04618991166353226, -0.005155518185347319, -0.004029473755508661, -0.0038896379992365837, 0.04230395331978798, -0.044776834547519684, -0.004290745593607426, 0.022020429372787476, -0.00769831845536828, 0.006494996137917042, 0.02399284765124321, 0.021402208134531975, -0.007897032424807549, 0.011606356129050255, -0.0016301888972520828, 0.0032677375711500645, -0.0021858513355255127, 0.004747051279991865, 0.023139113560318947, -0.015264160931110382, -0.006163806654512882, 0.03232410550117493, -0.0009057116112671793, 0.0318530797958374, 0.01533775869756937, 0.014601781964302063, -0.02649516798555851, 0.00887588132172823, -0.003405733034014702, 0.0048096091486513615, 0.01260728482156992, 0.00024287238193210214, 0.004618254955857992, -0.003648605430498719, -0.04636654630303383, -0.03830023854970932, 0.011959624476730824, 0.0008436135249212384, 0.018001995980739594, 0.014086597599089146, -0.01580878347158432, -0.011613715440034866, -0.03247130289673805, 0.010929256677627563, -0.000975169416051358, 0.02549424022436142, 0.033707741647958755, -0.019061801955103874, 0.036769405007362366, 0.037446506321430206, -0.002844550646841526, 0.01937091164290905, 0.003838119562715292, 0.014910892583429813, -0.010848299600183964, -0.012452729046344757, 0.04386422410607338, -0.013792207464575768, 0.004080991726368666, 0.011010214686393738, -0.0002828911237884313, 0.0016679076943546534, -0.042833857238292694, -0.023242151364684105, -0.021961551159620285, 0.02661292441189289, -0.0022741686552762985, 0.013181346468627453, 0.03517969697713852, 0.008250300772488117, -0.019841937348246574, 0.023006638512015343, -0.003863878780975938, 0.010649586096405983, 0.03709323704242706, 0.00724937254562974, 0.027039792388677597, -0.006373560056090355, 0.0025759192649275064, -0.010060803964734077, -0.011974344030022621, 0.003654125379398465, 0.03429652377963066, 0.0025593596510589123, -0.0013900763588026166, 0.0028003922197967768, 0.00022757785336580127, -0.002231850055977702, 0.029689308255910873, 0.011944904923439026, 0.001349597703665495, 0.007690958678722382, -0.007867593318223953, 0.0356212817132473, 0.009052515961229801, 0.00724937254562974, 0.0004280165594536811, -0.020975342020392418, 0.04230395331978798, -0.05396182835102081, 0.027245864272117615, 0.006575953681021929, -0.0097664138302207, -0.01831110566854477, -0.007359769195318222, 0.012224576435983181, 0.0021085739135742188, -0.05204828828573227, -0.004474739544093609, -0.02777576819062233, 0.02549424022436142, -0.01648588292300701, -0.014130756258964539, 0.008456374518573284, -0.016839152202010155, -0.022800564765930176, -0.002233689883723855, 0.020901743322610855, -0.006141727324575186, 0.04742635041475296, -0.01307830959558487, 0.0039779553189873695, -0.04548337310552597, 0.014763697050511837, 0.02054847590625286, 0.0019484988879412413, -0.022977199405431747, 0.01898820511996746, 0.008669807575643063, 0.012136259116232395, 0.01002400554716587, -0.005328472703695297, 0.009523540735244751, 0.0006807786412537098, 0.011672593653202057, -0.0013587974244728684, 0.04610159248113632, -0.025582557544112206, -0.0015243921661749482, 0.009641297161579132, 0.01377748791128397, 0.0038712385576218367, 0.025450080633163452, 0.039389483630657196, 0.04012545943260193, 0.008044227957725525, 0.010487671010196209, -0.0039411564357578754, 0.020062729716300964, -0.011782990768551826, 0.00724937254562974, 0.017059944570064545, -0.0113266846165061, -0.016662517562508583, -0.016765553504228592, -0.0034517317544668913, -0.02805544063448906, -0.019915536046028137, -0.0018068233039230108, 0.0037718815729022026, -0.014564982615411282, -0.01424851268529892, -0.016073735430836678, 0.047455791383981705, -0.003692764090374112, -0.011216288432478905, 0.040272656828165054, 0.0017819841159507632, -0.002077294746413827, 0.00572222052142024, 0.009508822113275528, 0.014314751140773296, 0.0016347886994481087, -0.006230044644325972, 0.01502864807844162, 0.006851945072412491, -0.05284314230084419, -0.030822712928056717, 0.0008206142811104655, -0.008390136994421482, 0.02883557602763176, 0.01305623073130846, -0.01769288443028927, -0.019223716109991074, 0.019562266767024994, -0.003992674872279167, -0.012702961452305317, 0.007529043592512608, 0.023669017478823662, 0.03903621435165405, 0.023065516725182533, -0.002088334411382675, 0.0004254866507835686, 0.003718523308634758, -0.009258589707314968, 0.037387628108263016, -0.011356123723089695, 0.013541975058615208, 0.016780273988842964, -0.028982771560549736, -0.03688716143369675, -0.004504178650677204, 0.021387489512562752, 0.006929222494363785, -0.014211714267730713, -0.003201499581336975, 0.005884135607630014, -0.005659662652760744, -0.016353406012058258, -0.008831722661852837, -0.00031991995638236403, -0.013770127668976784, 0.002612717915326357, 0.02315383404493332, -0.0038896379992365837, -0.037210993468761444, 0.007201534230262041, -0.00010378424485679716, 0.029807064682245255, -0.002805911935865879, 0.00019261895795352757, 0.0048427279107272625, 0.036210063844919205, 0.0019429790554568172, -0.018737971782684326, 0.0014425147091969848, 0.04942820966243744, -0.027687450870871544, 0.032206349074840546, 0.003100302768871188, -0.006851945072412491, 0.01424851268529892, 0.047338034957647324, -0.018178628757596016, 0.0014885133132338524, 0.03830023854970932, -0.019223716109991074, 0.01455762330442667, 0.005368951708078384, 0.0059540532529354095, 0.008920039981603622, -0.008029508404433727, -0.004791209474205971, -0.00977377314120531, 0.021196134388446808, -0.01853189803659916, 0.05384407192468643, 0.053019776940345764, 0.018855728209018707, 0.021623002365231514, 0.007580562029033899, -0.012231936678290367, 0.009950407780706882, 0.006020291242748499, -0.027319462969899178, 0.0003868478524964303, 0.0008394736796617508, -0.04742635041475296, 0.025126252323389053, -0.012239295989274979, 0.010759982280433178, -0.007558482699096203, 0.02060735411942005, -0.005232795607298613, -0.014645940624177456, -0.0019521787762641907, -0.001425035297870636, -0.018737971782684326, -0.014277951791882515, -0.020283523947000504, 0.037711456418037415, -0.00673418864607811, 0.0052438355050981045, -0.028261512517929077, -0.018796849995851517, 0.01260728482156992, -0.003322935663163662, -0.041774049401283264, 0.05281370133161545, 0.04963428154587746, 0.0020809746347367764, 0.0024213639553636312, 0.008279739879071712, 0.0004576856445055455, 0.0022925680968910456, -0.005144478753209114, -0.007161055225878954, 0.015455515123903751, -0.011311965063214302, 0.017059944570064545, -0.0325007401406765, -0.025906387716531754, -0.015072806738317013, 0.04268665984272957, 0.03161756694316864, 0.01564686931669712, -0.01664779707789421, 0.006951301824301481, -0.017957836389541626, 0.0334133505821228, -0.010421433486044407, 0.026083022356033325, 0.02415476180613041, 0.007668879348784685, -0.013093029148876667, 0.008861161768436432, 0.010178560391068459, -0.0038160402327775955, 0.011238367296755314, 0.030042577534914017, 0.013343261554837227, -0.003937476314604282, 0.007278811652213335, 0.004069952294230461, -0.028688380494713783, 0.03641613572835922, -0.013438938185572624, -0.05396182835102081, -0.015352478250861168, 0.0037663618568331003, -0.0017277058213949203, 0.014793136157095432, 0.015190563164651394, -0.0011499639367684722, 0.004154589492827654, 0.04507122561335564, 0.027201706543564796, -0.031529251486063004, -0.01680971309542656, -0.0029917461797595024, -0.010863019153475761, 0.030852152034640312, -0.03647501394152641, 0.005803178064525127, -0.006844585295766592, 0.029762906953692436, 0.0031426213681697845, -0.01747209206223488, -0.013645011931657791, 0.003617326496168971, 0.008802283555269241, -0.030410565435886383, 0.0060313306748867035, -0.0031481413170695305, 0.034590914845466614, 0.04866279289126396, -0.004912646021693945, -0.05337304621934891, 0.022447295486927032, -0.003201499581336975, -0.030027857050299644, -0.012011143378913403, -0.004552016966044903, 0.018737971782684326, -0.028644220903515816, -0.0026955155190080404, -0.021667160093784332, 0.0242136400192976, 0.026539327576756477, -0.0018049833597615361, -0.03865350782871246, -0.019400350749492645, -0.02305079624056816, -0.0007217173697426915, 0.01216569822281599, -0.03044000454246998, -0.018001995980739594, -0.009832651354372501, 0.0035768477246165276, 0.0021527325734496117, -0.030822712928056717, 0.007072737906128168, 0.015367197804152966, 0.005589744541794062, -0.00971489492803812, -0.010973415337502956, -0.004095711279660463, -0.043893661350011826, -0.04209787771105766, -0.010634866543114185, 0.034708671271800995, -0.021137256175279617, 0.01060542743653059, -0.013232864439487457, -0.0039043575525283813, 0.021019499748945236, -0.010737903416156769, 0.032088592648506165, -0.017560409381985664, -0.023006638512015343, 0.018620215356349945, 0.01697162725031376, 0.01669195666909218, 0.005442549008876085, -0.014726897701621056, 0.030381126329302788, 0.016559479758143425, 0.0312642976641655, 0.0312642976641655, 0.0011048853630200028, -0.019164837896823883, -0.0041361902840435505, -0.009817931801080704, -0.01742793247103691, -0.0007612761110067368, 0.025567837059497833, -0.007676239125430584, -0.019223716109991074, 0.011503319256007671, 0.0064324382692575455, 0.034208208322525024, -0.005935653578490019, -0.0009944888297468424, -0.01015648152679205, -0.03647501394152641, -0.03485586494207382, -0.01126780640333891, 0.010752622969448566, 0.016294529661536217, -0.038771264255046844, -0.015823503956198692, -0.027098670601844788, -0.014263232238590717, -0.011150049977004528, -0.01798727549612522, 0.01965058408677578, 0.01602957770228386, 0.02927716076374054, -0.01332854200154543, -0.002138013020157814, 0.006932902615517378, 0.028541184961795807, 0.002426883904263377, -0.0009724094998091459, -0.007330330088734627, 0.0002884109562728554, 0.00475809071213007, -0.011731471866369247, -0.03244186192750931, 0.0046844929456710815, -0.04106751084327698, 0.03267737478017807, -0.046072155237197876, -0.01074526272714138, 0.01508752629160881, -0.013593493960797787, 0.006572274025529623, -0.017192421481013298, -0.027864085510373116, 0.039889950305223465, -0.012423289939761162, -0.012342332862317562, -0.013821646571159363, -0.007168415002524853, -0.013733329251408577, -0.011922826059162617, 0.01647116243839264, -0.023860370740294456, -0.0195328276604414, 0.008169343695044518, 0.015676308423280716, 0.022358978167176247, 0.018693814054131508, 0.01919427700340748, -0.028305672109127045, 0.029910102486610413, 0.02537648379802704, -0.007065378129482269, 0.014285312034189701, -0.021284451708197594, 0.013851085677742958, -0.01563214883208275, -0.0038785983342677355, -0.03538576886057854, -0.001900660339742899, -0.03273625299334526, 0.014623860828578472, 0.00442690122872591, -0.001992657547816634, 0.006042370572686195, 0.027510816231369972, -0.022079307585954666, 0.0135861337184906, -0.02321271225810051, -0.009700175374746323, -0.001609949511475861, -0.009943048469722271, -0.008507893420755863, 0.013203425332903862, -0.02053375542163849, -0.011922826059162617, 0.01163579523563385, 0.029910102486610413, -0.033266156911849976, -0.008117825724184513, 0.03135261684656143, -0.01099549513310194, -0.005781098734587431, -0.01522000227123499, -0.01558799110352993, -0.008382776752114296, -0.00644347770139575, 0.002813271712511778, 0.004264986142516136, 0.036769405007362366, 0.015823503956198692, -0.013438938185572624, -0.01686859130859375, -0.004640334285795689, 0.0002571319346316159, -0.015735186636447906, -0.030587200075387955, 0.00769831845536828, -0.06694445759057999, -0.03149981051683426, -0.009030437096953392, 0.015470234677195549, 0.003573167836293578, -0.006542834918946028, 0.021299172192811966, -0.01842886209487915, 0.002818791661411524, 0.005773738957941532, -0.021784916520118713, -0.018384702503681183, 0.021387489512562752, 0.00630364241078496, -0.021976269781589508, 0.007661519572138786, -0.022800564765930176, -0.01704522594809532, 0.013983561657369137, 0.00035303892218507826, 0.0038675586692988873, 0.0027028752956539392, 0.02693675458431244, -1.2469921557567432e-06, 0.005494067445397377, 0.042892735451459885, -0.02649516798555851, 0.005586064886301756, -0.01997441239655018, 0.00025207208818756044, 0.019841937348246574, 0.015897100791335106, -0.019606424495577812, -0.016397565603256226, 0.025126252323389053, 0.012239295989274979, 0.03697548061609268, 0.011172129772603512, 0.008426935411989689, -0.0006674390751868486, 0.007006500381976366, -0.0024066444020718336, -0.0005372631712816656, -0.02883557602763176, -0.0005676221917383373, -0.016044296324253082, -0.0066716307774186134, -0.02527344785630703, 0.012857516296207905, 0.016456443816423416, 0.014594421721994877, 0.010502390563488007, 0.00751432403922081, -0.02589166723191738, 0.001453554374165833, 0.0028739897534251213, -0.0003893777902703732, -0.01527888048440218, 0.002951267408207059, -0.012842796742916107, 0.061704304069280624, 0.016456443816423416, 0.016794992610812187, 0.01229817420244217, -0.01636812649667263, 0.00938370544463396, -0.006748908199369907, 0.027407780289649963, 0.033266156911849976, -0.016014857217669487, 0.006049730349332094, -0.005435189697891474, -0.011930185370147228, 0.010009285993874073, -0.016839152202010155, 0.010472951456904411, 0.03656333312392235, 0.013394779525697231, 0.016059016808867455, 0.0031426213681697845, -0.02383093163371086, 0.0054057505913078785, 0.020622072741389275, -0.0035308492369949818, -0.0011067253071814775, -0.02416948229074478, 0.011311965063214302, -0.022977199405431747, 0.001830742578022182, -0.001708386349491775, 0.005310073494911194, 0.0025814389809966087, 0.03400213271379471, 0.005048801656812429, -0.007948550395667553, 0.01836998388171196, 0.007838154211640358, -0.012658802792429924, 0.024581627920269966, 0.0031352615915238857, -0.010178560391068459, -0.03712267428636551, 0.008169343695044518, 0.005862056277692318, -0.02288888208568096, 0.01714826188981533, -0.00951618142426014, 0.03629837930202484, -0.0037277231458574533, -0.001957698492333293, -0.003221738850697875, -0.0024968015495687723, -0.03818248212337494, -0.01981249824166298, -0.008581491187214851, 0.022785844281315804, -0.023286309093236923, -0.007518004160374403, -0.00959713850170374, -0.0015538312727585435, 0.004894246347248554, 0.010266877710819244, -0.009523540735244751, -0.035326890647411346, -0.014874093234539032, -0.01926787570118904, -0.018737971782684326, -0.0019098600605502725, -0.019135398790240288, 0.01332854200154543, 0.00015881001309026033, 0.01004608441144228, -0.01664779707789421, -0.002126973355188966, -0.002272328594699502, 0.015411356464028358, 0.021843794733285904, -0.013306462205946445, 0.000772315775975585, -0.02337462641298771, 0.017118822783231735, 0.0038160402327775955, -0.018914606422185898, -0.012511607259511948, 0.008478454314172268, -0.005229115951806307, -0.005034082103520632, -0.006811466068029404, -0.010259518399834633, -0.02099006064236164, -0.004945764783769846, 0.004364342894405127, 0.028011281043291092, 0.009847370907664299, -0.01294583361595869, -0.012342332862317562, -0.002391924848780036, -0.008640368469059467, -0.016721395775675774, -0.0014204353792592883, -0.03356054797768593, 0.021578842774033546, 0.007345049642026424, -0.003606286831200123, 0.00247104256413877, -0.028820855543017387, -0.010708464309573174, -0.018634935840964317, 0.0034646112471818924, -0.005328472703695297, -0.01041407324373722, 0.008500533178448677, -0.03880070149898529, 0.009067235514521599, 0.016279809176921844, -0.02137276902794838, -0.005475668236613274, -0.002785672666504979, 0.012776559218764305, 0.0034498916938900948, -0.014138116501271725, 0.007587921805679798, -0.014071878045797348, 0.024522749707102776, 0.002912628697231412, -0.008515252731740475, 0.003304536221548915, 0.001695506856776774, -0.012732400558888912, 0.0029917461797595024, 0.015234721824526787, 0.01954754628241062, -0.02955683320760727, 0.03188252076506615, 0.002769113052636385, 0.00957505963742733, 0.020622072741389275, -0.015941260382533073, -0.0006669790600426495, 0.022903600707650185, -0.0375053845345974, -0.041832927614450455, 0.006811466068029404, 0.012467448599636555, -0.006645871326327324, 0.012099460698664188, -0.00685930484905839, 0.012658802792429924, 0.015426076017320156, -0.01720714010298252, -0.011834508739411831, 0.003637565765529871, 0.012430650182068348, -0.005115039646625519, 0.01447666622698307, 0.0010110483272001147, 0.009582418948411942, -0.03141149505972862, -0.012408570386469364, -0.0013606372522190213, 0.009332187473773956, -0.0027525536715984344, 0.009817931801080704, -0.011098532006144524, -0.01586766168475151, -0.0001958388602361083, 0.011760910972952843, -0.03417876735329628, -0.02026880346238613, 0.007558482699096203, 0.002813271712511778, 0.0019595385529100895, -0.014196994714438915, -0.012379131279885769, -5.542825965676457e-05, 0.006355160381644964, 0.020283523947000504, -0.03188252076506615, -0.0003541889018379152, -0.021755477413535118, -0.025759192183613777, -0.02315383404493332, 0.007551122922450304, -0.011238367296755314, 0.03579791635274887, 0.004471059888601303, -0.0240517258644104, 0.007043298799544573, 0.01494769100099802, 0.0034811708610504866, -0.00041490697185508907, -0.008088386617600918, 0.011319325305521488, 0.01758984848856926, -0.018958766013383865, -0.011562197469174862, 0.015499673783779144, 0.003429652424529195, 0.004191388376057148, -0.03117598220705986, -0.015234721824526787, 0.0034259725362062454, 0.01332854200154543, -0.011495959013700485, 0.030940469354391098, -0.002793032443150878, 0.011032293550670147, 0.011812428943812847, 0.004526257980614901, -0.0043753827922046185, -0.002875829814001918, -0.008868522010743618, -0.04130302369594574, 0.008883241564035416, 0.005906214471906424, 0.007838154211640358, 0.0121068200096488, -0.01266616303473711, 0.014410427771508694, -0.00708377780392766, -0.006774667650461197, -0.005287994164973497, -0.024861300364136696, 0.009560340084135532, 0.023978127166628838, -0.0030543042812496424, 0.032589059323072433, 0.009501461870968342, 0.012371771968901157, -0.004033153411000967, 0.020842866972088814, -0.0020552154164761305, 0.017457371577620506, -0.013357981108129025, 0.012364411726593971, -0.009199711494147778, 0.007690958678722382, 0.015411356464028358, 0.037711456418037415, -0.0067857070825994015, 0.002290728036314249, -0.026024144142866135, -0.00718313455581665, -0.014447227120399475, -0.013026791624724865, -0.00027231144485995173, 0.0240517258644104, 0.014734257943928242, 0.011481239460408688, 0.004390102345496416, 0.003008305560797453, 0.031146543100476265, -0.005843656603246927, -0.012813357636332512, 0.0031591809820383787, 0.007617360912263393, 0.0009250309667550027, -0.0030414245557039976, 0.009604498744010925, -0.0421861968934536, 0.028129037469625473, -0.020121607929468155, 0.007043298799544573, -0.0019668983295559883, -0.02511153183877468, -0.011341404169797897, -0.003000945784151554, -0.021240293979644775, 0.024758262559771538, 0.006134367547929287, 0.013895244337618351, 0.015897100791335106, 0.002025776542723179, -0.005976132582873106, -0.006200605537742376, 0.010575988329946995, -0.020298242568969727, -0.013865805231034756, 0.01648588292300701, -0.003107662545517087, -0.0043753827922046185, 0.016073735430836678, -0.0012419610284268856, 0.00840485654771328, 0.03679884597659111, 0.033766619861125946, 0.005943013355135918, 0.005541906226426363, 0.023521821945905685, -0.01260728482156992, 0.006697389762848616, 0.0318530797958374, -0.010679025202989578, 0.01313718780875206, -0.0136670907959342, 0.015455515123903751, 0.014587062411010265, -0.0025078412145376205, -0.029365478083491325, -0.0007295371033251286, -0.01105437334626913, -0.022255942225456238, 0.010311036370694637, 0.02465522661805153, 0.0029181484133005142, 0.00015133524721022695, 0.036533892154693604, -0.021387489512562752, 0.004868487361818552, -0.0038712385576218367, 0.0026163978036493063, 0.004772810265421867, 0.007278811652213335, -0.01692746952176094, -0.00899363774806261, 0.0037479624152183533, -0.005523506551980972, 0.017192421481013298, -0.00912611372768879, -0.008905320428311825, -0.00045676567242480814, -0.002693675458431244, -0.02861478179693222, -0.022977199405431747, 0.0038234000094234943, -0.0019356192788109183, -0.0026715961284935474, -0.01049503032118082, -0.001375356805510819, -0.014204354025423527, 0.0020036972127854824, 0.012114180251955986, 0.020519036799669266, 0.02243257686495781, 0.016059016808867455, -0.0005570425419136882, -0.017192421481013298, 0.007816074416041374, -0.04533617943525314, -0.01658891886472702, -0.02271224744617939, -0.01664779707789421, -0.00813254527747631, 0.020298242568969727, -0.016574200242757797, 0.004901606123894453, -0.0071426560170948505, 0.008287100121378899, -0.006807786412537098, -0.018222788348793983, -0.002590638818219304, 0.012798638083040714, 0.008375417441129684, -0.022138185799121857, 0.0011058052768930793, 0.0012548406375572085, 0.009869450703263283, 0.022182343527674675, -0.00823558121919632, -0.014668019488453865, -0.00998720619827509, -0.01892932690680027, 0.01049503032118082, -0.03335447236895561, -0.02271224744617939, 0.028290951624512672, -0.011150049977004528, 0.014219073578715324, 0.006163806654512882, 0.006380919832736254, -0.0008339538471773267, 0.01552911289036274, -0.01430739089846611, 0.01274712011218071, 0.044453006237745285, -0.016794992610812187, 0.024081164970993996, -0.013703890144824982, 0.02617133967578411, -0.027643293142318726, -0.023507103323936462, -0.02287416160106659, 0.005751659628003836, 0.009876810014247894, 0.012702961452305317, -0.011724112555384636, 0.009214431047439575, 0.014336830005049706, 0.010767342522740364, 0.013843725435435772, -0.015779344365000725, -0.04147965833544731, 0.02215290442109108, 0.02783464640378952, -0.001437914907000959, 0.010973415337502956, 0.002351446310058236, 0.003523489460349083, 0.006355160381644964, 0.0240517258644104, 0.0321769118309021, -0.011930185370147228, -0.015852943062782288, 0.01333590131253004, 0.00205889530479908, 0.027348902076482773, 0.010929256677627563, -0.00424290681257844, -0.03235354647040367, 0.004040513187646866, 0.0017773841973394156, -0.007403927855193615, -0.018723253160715103, -0.01079678162932396, 0.010207999497652054, -0.006520755589008331, -0.04486515372991562, -0.0228152833878994, -0.011378202587366104, -0.052077725529670715, 0.016338687390089035, -0.0013440778711810708, -0.009192351251840591, 0.007757196668535471, 0.021887952461838722, -0.009736974723637104, 0.008897961117327213, 0.0068335453979671, -0.01208474114537239, 0.03623950481414795, -0.014991849660873413, 0.002787512494251132, -0.021078377962112427, 0.015838222578167915, 0.015234721824526787, -0.02817319519817829, -0.011613715440034866, 0.0011913626221939921, 0.0503113828599453, 0.017781201750040054, 0.006252123974263668, -0.013181346468627453, -0.03423764556646347, 0.008036867715418339, -0.00885380245745182, 0.010988134890794754, 0.019576985388994217, 0.007396568078547716, -0.0159265398979187, 0.015852943062782288, -0.005177597515285015, 0.008081026375293732, -0.016765553504228592, -0.009133473038673401, -0.01770760491490364, -0.005479347892105579, -0.010679025202989578, -0.00044503604294732213, -0.00937634613364935, 0.0042981053702533245, 0.02299191802740097, -0.02449331060051918, 0.006373560056090355, -0.0010542869567871094, -0.0060129314661026, 0.004323864355683327, -0.01708938367664814, 0.011613715440034866, -0.02661292441189289, -0.02305079624056816, 0.0004680353158619255, 0.004504178650677204, -0.00010631416080286726, 0.0033762941602617502, 0.0074922447092831135, 0.001822462771087885, -0.0013587974244728684, -0.00481696892529726, -0.008088386617600918, 0.019135398790240288, -0.0025409602094441652, 0.018046153709292412, -0.003966915421187878, 0.008176703006029129, -0.0012392011703923345, 0.07141920179128647, 0.008051587268710136, -0.002483922056853771, -0.0018399422988295555, -0.005479347892105579, -0.011150049977004528, 0.000733216991648078, 0.02399284765124321, 0.01864965446293354, -0.003959555644541979, -0.010929256677627563, -0.009111394174396992, 0.01954754628241062, 0.018414141610264778, -0.014285312034189701, -0.004364342894405127, 0.03603342920541763, -0.0028537504840642214, 0.015234721824526787, 0.011753551661968231, -0.001034967484883964, 0.021019499748945236, -0.03017505258321762, -0.0007980749360285699, 0.0013679970288649201, 0.026465728878974915, -0.00813254527747631, 0.013541975058615208, -0.021416928619146347, 0.01959170587360859, -0.0034572514705359936, 0.023286309093236923, -0.021534685045480728, 0.011863947845995426, -0.009935688227415085, 0.0187526922672987, 0.0048096091486513615, 0.02489073947072029, -0.013284383341670036, 0.0018647814868018031, -0.0007391967810690403, -0.004434261005371809, 0.03724043071269989, 0.028600063174962997, -0.014351549558341503, -0.0011508838506415486, -0.01085565984249115, -0.005674381740391254, 0.003672524821013212, -0.0054388693533837795, -0.006506036035716534, -0.007256732322275639, -5.97406251472421e-05, 0.012195137329399586, 0.008861161768436432, -0.004276026040315628, 0.012989992275834084, -0.00656859390437603, -0.013409499078989029, 0.001781064085662365, -0.008890600875020027, -0.014528184197843075, -0.006491316482424736, -0.008883241564035416, -0.012371771968901157, -0.01864965446293354, 0.0010855658911168575, -0.03155868873000145, 0.009847370907664299, -0.0018105031922459602, -0.0031665407586842775, 0.029291881248354912, 0.018664374947547913, -0.021475806832313538, -0.016000138595700264, 0.00813254527747631, 5.010967652196996e-05, 0.01825222745537758, 0.01641228422522545, 0.0018988203955814242, 0.00784551352262497, 0.0018325825221836567, -0.008927400223910809, -0.03067551739513874, 0.007911751978099346, 0.009317467920482159, 0.0029733467381447554, -0.031823642551898956, -8.877721120370552e-05, -0.0013606372522190213, -0.021578842774033546, 0.0007980749360285699, 0.014542903751134872, 0.03005729615688324, -0.0025648795999586582, -0.007216253783553839, 0.001380876637995243, -0.02899749018251896, 0.018399422988295555, -0.005254874937236309, -0.0003256697964388877, -0.0029347080271691084, -0.007275131531059742, -0.009943048469722271, -0.014712178148329258, -0.006748908199369907, 0.015308319590985775, 0.012254015542566776, -0.015411356464028358, 0.01204794179648161, -0.007742477115243673, -0.022726966068148613, 0.020195206627249718, -0.01636812649667263, -0.041391342878341675, 0.012408570386469364, -0.0038785983342677355, -0.015440795570611954, -0.003177580190822482, -0.023168552666902542, 0.009560340084135532, -0.0019889776594936848, -0.013438938185572624, -0.011392922140657902, 0.0013955961912870407, 0.015764625743031502, -0.022241221740841866, -0.004934725351631641, -0.004677133169025183, -0.009251229465007782, -0.0017875039484351873, -0.008920039981603622, 0.005379991140216589, -0.001632948755286634, 0.016294529661536217, -0.011032293550670147, -0.005880455486476421, 0.01043615210801363, 0.026907315477728844, -0.028084879741072655, 0.012791278772056103, -0.013887884095311165, 0.020342402160167694, 0.01266616303473711, -0.011098532006144524, -0.011518038809299469, -0.008397496305406094, -0.021078377962112427, -0.003052464220672846, -0.0028850294183939695, 0.03644557669758797, -0.027069231495261192, -0.002189531223848462, -0.002309127477928996, 0.006185885984450579, -0.004305465146899223, -0.014336830005049706, 0.01243800949305296, -0.01152539812028408, 0.0024305637925863266, 0.012850156985223293, -0.004434261005371809, -0.02309495583176613, 0.004268666263669729, -0.008000069297850132, -0.00862564891576767, 0.0210930984467268, 0.022403137758374214, 0.013343261554837227, -0.011024934239685535, 0.0003916777204722166, 0.00652811536565423, 0.016294529661536217, -0.015146404504776001, 0.020283523947000504, 0.009744334034621716, 0.005287994164973497, -0.0002987606276292354, -0.01570574752986431, 0.02037184126675129, 0.014601781964302063, -0.003037744667381048, 0.020519036799669266, 0.016662517562508583, -0.008375417441129684, -0.01563214883208275, 0.023757334798574448, -0.016323966905474663, -0.00695866160094738, 0.02143164724111557, -0.01854661852121353, -0.00022562291997019202, 0.0010312875965610147, -0.012960553169250488, -0.005913574248552322, -0.017634006217122078, 0.023197991773486137, 0.013792207464575768, -0.004011074081063271, -0.013048870489001274, -0.006586993113160133, -2.4177990781026892e-05, 0.013203425332903862, -0.00708377780392766, 0.0015676307957619429, -0.015852943062782288, -0.01915011927485466, -0.017059944570064545, -0.00782343465834856, 0.017678165808320045, -0.03456147387623787, -0.03968387469649315, 0.0013578773941844702, 0.003955875989049673, -0.02727530337870121, 0.025700313970446587, 0.004047872964292765, 0.016456443816423416, 0.018782131373882294, 0.009663376957178116, 0.017413213849067688, -0.00013339582073967904, 0.011481239460408688, -0.024905458092689514, -0.007326649967581034, -0.00809574592858553, 0.032706812024116516, 0.004003714304417372, -0.007175774779170752, -0.01352725550532341, 0.03662221133708954, -0.009214431047439575, 0.0015142725314944983, 0.011120610870420933, 0.004338583908975124, 0.024316677823662758, 0.01539663691073656, -0.0018013034714385867, 0.006182205863296986, -0.011569556780159473, -0.01842886209487915, -0.019841937348246574, -0.00520703662186861, 0.0017249458469450474, 0.004231867380440235, -0.01029631681740284, 0.0030469445046037436, 0.01614733412861824, -0.016235651448369026, -2.6521043764660135e-05, 0.013262303546071053, -0.0016771074151620269, -0.011944904923439026, 0.007080097682774067, -0.010369914583861828, 0.012158338911831379, 0.007054338697344065, -0.004850087687373161, -0.0017323056235909462, -0.0371815524995327, 0.015161124058067799, 0.0005506027373485267, -0.02059263363480568, -0.010325755923986435, 0.0008367137634195387, 0.02315383404493332, -0.040213778614997864, 0.008044227957725525, -0.010759982280433178, 0.021402208134531975, 0.004482099320739508, 0.004794889595359564, 0.02973346784710884, 0.010244798846542835, -0.0026016784831881523, 0.00537263136357069, 0.00044089616858400404, -0.018414141610264778, 0.016073735430836678, 0.03762314096093178, -4.841347981709987e-05, 0.011392922140657902, -0.0019963374361395836, -0.027687450870871544, -0.007322970312088728, -0.03191195800900459, 0.013093029148876667, 0.009413144551217556, -0.008375417441129684, -0.009641297161579132, 0.005946693476289511, -0.009354266338050365, 0.024125322699546814, -0.014241153374314308, -0.006881384178996086, 0.014042439870536327, 0.01580878347158432, 0.001289799576625228, -0.0008472934132441878, 0.00537263136357069, -0.004014754202216864, -0.013865805231034756, -0.010502390563488007, -0.025582557544112206, 0.028423428535461426, 0.0008104945882223547, 0.017339615151286125, 0.0027525536715984344, -0.013438938185572624, 0.01405715849250555, 0.01781064085662365, 0.0037534821312874556, -0.01975362002849579, -0.00043905622442252934, -0.023948688060045242, 0.001807743334211409, 0.009538260288536549, 0.0054719881154596806, -0.014189634472131729, 0.016500601544976234, 0.007742477115243673, -0.007102177012711763, 0.008500533178448677, 0.013622932136058807, 0.014020360074937344, -0.00549774756655097, 0.014675379730761051, 0.007808715105056763, 0.010723183862864971, -0.016794992610812187, 0.0013265983434394002, 0.009523540735244751, -0.012938474304974079, -0.006800426635891199, -0.010281597264111042, 0.01040671393275261, -0.009332187473773956, -0.016456443816423416, -0.009081955067813396, -0.01235705241560936, -0.00959713850170374, -0.011643154546618462, -0.013932042755186558, -0.0066605908796191216, 0.00807366706430912, 0.016117895022034645, 0.013505176641047001, -0.006329401396214962, 0.01658891886472702, 0.012909035198390484, 0.007985349744558334, 0.0029935860075056553, 0.010112322866916656, 0.022726966068148613, -0.02677484042942524, 0.019635863602161407, 0.0051628779619932175, 0.0006338601233437657, 0.01346837729215622, 0.01488881278783083, -0.013372700661420822, 0.021799635142087936, -0.002743353834375739, -0.005343192256987095, 0.009803212247788906, -0.0005427829455584288, -0.011098532006144524, 0.016500601544976234, -0.031705886125564575, -0.0041693090461194515, -0.005685421638190746, -0.02945379540324211, -0.01383636612445116, -0.010421433486044407, -0.010127042420208454, 0.006410358939319849, 0.011348763480782509, 0.0047323317267000675, 0.012121539562940598, -0.0005400230293162167, 0.015205282717943192, -0.016103174537420273, -0.009339546784758568, -0.00537263136357069, -0.018266946077346802, 0.006988100707530975, 0.022079307585954666, -0.015264160931110382, 0.002130653243511915, -0.008368057198822498, 0.008927400223910809, -0.010266877710819244, -9.561949991621077e-05, 0.003208859357982874, -0.0044085015542805195, 0.0038086804561316967, -0.01932675391435623, 0.026539327576756477, 0.00039926747558638453, 0.005906214471906424, 0.012901674956083298, -0.002415844239294529, 0.011687313206493855, 0.018384702503681183, -0.011591636575758457, -0.012953193858265877, -0.01798727549612522, 0.01758984848856926, 0.021137256175279617, -0.01887044869363308, 0.02527344785630703, 0.0012622004142031074, -0.011010214686393738, -0.005409430246800184, 0.0015740706585347652, 0.0022060908377170563, 0.008176703006029129, -0.011415001936256886, -0.00044158613309264183, 0.009081955067813396, 0.0054057505913078785, 0.023301029577851295, 0.03055776096880436, -0.011032293550670147, 0.005284314043819904, 0.013497816398739815, 0.02871781960129738, -0.009538260288536549, 0.0004839048197027296, 0.003219899022951722, 0.0051297591999173164, -0.015852943062782288, -0.0021085739135742188, -0.00052530353423208, -0.02349238283932209, -0.01704522594809532, 0.03662221133708954, -0.01926787570118904, 0.007882312871515751, -0.0017534650396555662, -0.008331258781254292, -0.007948550395667553, 0.009707535617053509, 0.04298105090856552, 0.018060874193906784, 0.02511153183877468, 0.006561234127730131, 0.027525536715984344, -0.026009423658251762, -0.0009503301698714495, -0.034208208322525024, 0.008029508404433727, -0.013247583992779255, 0.003782921237871051, -0.012121539562940598, 0.010958695784211159, -0.005115039646625519, -0.013954122550785542, 0.002804072108119726, -0.02377205342054367, 0.03347222879528999, 0.01533775869756937, -0.0044894590973854065, 0.017913678660988808, -0.020695671439170837, 0.011540117673575878, 0.005254874937236309, 0.0034130928106606007, 0.008250300772488117, -0.002566719427704811, -0.009236509911715984, 0.008809643797576427, 0.02204986847937107, 0.015573271550238132, -0.02973346784710884, 0.006936582271009684, -0.018355263397097588, 0.0024508030619472265, -0.002399284625425935, -0.00481696892529726, -0.025140970945358276, -0.0030947828199714422, -0.01987137645483017, 0.014741617254912853, 0.03644557669758797, -0.02789352461695671, -0.023683736100792885, 0.022138185799121857, 0.009177631698548794, -0.013269663788378239, 0.012033222243189812, 0.011944904923439026, -0.0024692025035619736, -0.010193279944360256, 0.018178628757596016, -0.009648657403886318, -0.009207070805132389, 0.04174460843205452, -0.004110430832952261, 0.0007244772859849036, 0.008279739879071712, -0.01831110566854477, -0.008772844448685646, 0.01416755560785532, -0.0019779379945248365, 0.020121607929468155, -0.012518967501819134, 0.026480449363589287, -0.018620215356349945, 0.00971489492803812, 0.008964198641479015, -0.017177700996398926, 0.00036936841206625104, 0.008176703006029129, -0.004103071056306362, 0.028305672109127045, -0.0015381916891783476, 0.022358978167176247, 0.023404065519571304, 0.005232795607298613, 0.02048959769308567, -0.019959693774580956, 0.010693744756281376, 0.009155552834272385, -0.008529972285032272, -0.0026697563007473946, -0.0016890669940039515, -0.016397565603256226, -0.003543728729709983, 0.0033321355003863573, -0.012040582485496998, 0.019606424495577812, -0.008198782801628113, -0.017339615151286125, 0.008191422559320927, 0.02199099026620388, 0.0045704166404902935, 0.012283454649150372, 0.008287100121378899, -0.02665708400309086, 0.007054338697344065, 0.011069092899560928, -0.009015717543661594, -0.013122468255460262, -0.012040582485496998, 0.009008357301354408, -0.011554837226867676, 0.0002842710819095373, 0.004099391400814056, 0.009258589707314968, -0.010333116166293621, 0.01720714010298252, 0.013070950284600258, 0.023580700159072876, 0.022785844281315804, -0.010369914583861828, 0.0012622004142031074, -0.018796849995851517, 0.00809574592858553, 0.008250300772488117, 0.01105437334626913, -0.013129828497767448, 0.008691887371242046, 0.0011002854444086552, -0.05204828828573227, -0.0028960690833628178, 0.008279739879071712, -0.0031536610331386328, -0.00868452712893486, 0.010826220735907555, -0.011208928190171719, -0.012254015542566776, -0.007488565053790808, 0.00488320691511035, -0.005541906226426363, 0.01608845591545105, -0.008978918194770813, -0.007345049642026424, 0.01648588292300701, 0.003468291135504842, 0.009744334034621716, -0.004794889595359564, -0.007926471531391144, 0.021181415766477585, 0.0061122882179915905, 0.008942119777202606, 0.020666232332587242, 0.0052769542671740055, 0.018355263397097588, -0.0061932457610964775, -3.941501199733466e-05, -0.03423764556646347, -0.008250300772488117, 0.012055302038788795, -0.004323864355683327, 0.004831688478589058, 0.0019282595021650195, 0.017015786841511726, -0.01680971309542656, -0.015175843611359596, 0.006399319041520357, 0.003845479339361191, 0.00021251333237159997, 0.0040883515030145645, 0.008338618092238903, 0.0009098514565266669, 0.00708377780392766, -0.02349238283932209, -0.01975362002849579, 0.00039696754538454115, -0.014822575263679028, 0.013549335300922394, 0.023006638512015343, -0.01563214883208275, 0.0007916351896710694, -0.013748048804700375, 0.014940331690013409, -0.005225435830652714, 0.02761385403573513, -0.004018433857709169, 0.006329401396214962, -0.005457268562167883, -0.007039619144052267, 0.021284451708197594, 0.013431578874588013, -0.013372700661420822, -0.0015611910494044423, 0.02103422023355961, 0.026524607092142105, -0.008220861665904522, -0.003966915421187878, 0.014285312034189701, 0.00033877938403747976, -0.025685593485832214, 0.011672593653202057, -0.004069952294230461, -0.0121068200096488, 0.012070021592080593, 0.006391959264874458, -0.025464801117777824, 0.013556694611907005, -0.013865805231034756, 0.0008767325198277831, 0.002528080716729164, 0.00025345204630866647, -0.004287065472453833, 0.010899817571043968, -0.007363448850810528, 0.003435172140598297, 0.021181415766477585, -0.0015455514658242464, 0.0009208911214955151, -0.012548406608402729, 0.018340544775128365, 0.004618254955857992, -0.0007548363064415753, -0.00294390763156116, -0.0003967375378124416, 0.021843794733285904, 0.009840011596679688, -0.017516249790787697, -0.03603342920541763, -0.00848581362515688, 0.005751659628003836, -0.003037744667381048, -0.025788631290197372, -0.0066274721175432205, 0.008493173867464066, 0.017118822783231735, -0.012504247948527336, -0.0029402277432382107, 0.011378202587366104, -0.017575128003954887, 0.009788492694497108, 0.004736011382192373, -0.011024934239685535, 0.00029669070499949157, -0.016574200242757797, -0.0036099667195230722, -0.02765801176428795, -0.0022281701676547527, -0.0050009628757834435, 0.0012759999372065067, -0.011996423825621605, -1.7939437384484336e-05, 0.0010524470126256347, 0.0027985521592199802, -0.010627506300807, -0.018266946077346802, 0.0023680056910961866, -0.023639578372240067, -0.02099006064236164, -0.0016366286436095834, -0.0033560546580702066, 0.011643154546618462, -0.0027470337226986885, -0.019002923741936684, 0.006517075467854738, -0.011547477915883064, -0.012776559218764305, -0.003391013713553548, 0.010053444653749466, 0.006763627752661705, -0.006101248785853386, 0.006391959264874458, -0.007326649967581034, 0.008478454314172268, 0.005070880986750126, 0.0017037865472957492, 0.002612717915326357, 0.0265540461987257, 0.013357981108129025, 0.0128869554027915, 0.011024934239685535, -0.02048959769308567, -0.021358050405979156, 0.014910892583429813, 0.006425078492611647, -0.0027764728292822838, -0.010966056026518345, 0.004025793634355068, 0.01726601831614971, 0.005744299851357937, -0.004334903787821531, -0.0057553392834961414, -0.014432507567107677, -0.0032750973477959633, 0.03367830440402031, -0.00640299916267395, -0.00617852620780468, 0.016883309930562973, 0.0009770093020051718, -0.00924387015402317, 0.0235954187810421, 0.0013514376478269696, 0.0025023214984685183, 0.0174868106842041, -0.0009356106165796518, 0.002239209832623601, 0.021564124152064323, -0.016235651448369026, -0.022520894184708595, -0.008478454314172268, -0.0002849610464181751, 0.011238367296755314, -0.004356983117759228, 0.004047872964292765, 0.016898030415177345, 0.005902534816414118, 0.00868452712893486, -0.0234335046261549, -0.010649586096405983, 0.01697162725031376, 0.009501461870968342, 0.01522000227123499, 0.011628434993326664, 0.01847301982343197, 0.014609141275286674, 0.006973381154239178, 0.011289886198937893, 0.017501531168818474, -0.007370808627456427, -0.02461106702685356, -0.006498676259070635, 0.007429686840623617, 0.036592770367860794, 0.005229115951806307, -0.010009285993874073, -0.009589779190719128, 0.01770760491490364, 0.011334044858813286, -0.027864085510373116, 0.008662448264658451, -0.007985349744558334, 0.0009889689972624183, 0.0013992760796099901, -0.009346907027065754, 0.0009351506596431136, -0.005155518185347319, 0.00963393785059452, 0.011120610870420933, 0.004287065472453833, -0.03453203663229942, -0.007017539814114571, -0.002837190870195627, -0.006086529232561588, 0.029659869149327278, 0.0025759192649275064, 0.022800564765930176, 0.012864876538515091, 0.001789343892596662, 0.023168552666902542, -0.020121607929468155, 0.014432507567107677, 0.01113533042371273, 0.014793136157095432, 0.0017691045068204403, -0.000860632979311049, -0.012761839665472507, -0.014086597599089146, 0.03700491786003113, 0.009545620530843735, 0.0040589128620922565, 0.008537332527339458, -0.007359769195318222, 0.0058730957098305225, -0.011437080800533295, 0.016279809176921844, -0.000780135509558022, -0.005674381740391254, 0.02271224744617939, 0.012349692173302174, -0.0055971043184399605, 0.00442690122872591, -0.006829865742474794, 0.019135398790240288, -0.012261374853551388, -0.010656945407390594, -0.0015059927245602012, 0.016853870823979378, -0.015838222578167915, 0.019518107175827026, 0.005567665211856365, -0.017722323536872864, -0.0256119966506958, 0.008721326477825642, 0.02081342786550522, -0.008088386617600918, 0.022623930126428604, 0.005368951708078384, -0.002684475854039192, -0.006377239711582661, -0.008279739879071712, 0.022726966068148613, 0.007970630191266537, -0.006862984504550695, 0.015323039144277573, 0.0012530006933957338, 0.021475806832313538, 0.01455762330442667, 0.014233793132007122, -0.021078377962112427, 0.015411356464028358, -0.028526464477181435, 0.020754549652338028, 0.0051665580831468105, -0.012504247948527336, 0.013343261554837227, -0.03291288763284683, -0.012136259116232395, -0.003725883085280657, 0.00769831845536828, -0.015602710656821728, -0.0035934073384851217, 0.012541046366095543, -0.007705678232014179, -0.016279809176921844, -0.024728823453187943, 0.014910892583429813, -0.01138556282967329, 0.030528321862220764, 0.011937545612454414, 0.00790439173579216, -0.00018019934941548854, 0.011510678566992283, -0.0014774736482650042, 0.009869450703263283, 0.005560305435210466, -0.016883309930562973, 0.0033321355003863573, -0.008780204690992832, -0.01626509055495262, 0.0025575198233127594, 0.0015308319125324488, 0.011297245509922504, 0.004750730935484171, -0.002730474341660738, 0.002649516798555851, -0.009052515961229801, 0.020136328414082527, -0.0008767325198277831, 0.0009176711901091039, 0.006564914248883724, -0.004437940660864115, 0.006255803629755974, -0.018958766013383865, 0.012460089288651943, -0.011908106505870819, 0.0032548578456044197, 0.005254874937236309, -0.009280668571591377, -0.006439798045903444, 0.006064449902623892, -0.0038417994510382414, 0.003725883085280657, -0.00022550793073605746, 0.02121085487306118, -0.014049799181520939, 0.007926471531391144, -0.004471059888601303, -0.01029631681740284, -0.0022944079246371984, -0.019282594323158264, -0.01282807718962431, -0.011392922140657902, -0.009479383006691933, -0.03044000454246998, 0.004025793634355068, -0.004805929027497768, 0.004934725351631641, -0.004518898203969002, -0.00834597833454609, 0.01564686931669712, 0.005137118976563215, 0.007565842475742102, -0.0071868146769702435, 0.018340544775128365, 0.004993603099137545, -0.002465522615239024, 0.006778347305953503, -0.01680971309542656, 0.001560271019116044, 3.470016235951334e-05, 0.006539154797792435, 0.008198782801628113, 0.007238333113491535, -0.02693675458431244, -0.0013955961912870407, -0.005681741517037153, -0.012283454649150372, 0.014542903751134872, -0.0070580183528363705, 0.011981704272329807, 0.006815146189182997, -0.014211714267730713, -0.001862021628767252, -0.007190494332462549, -0.0046476940624415874, -0.007477525621652603, 0.03959555923938751, -0.01041407324373722, -0.01522000227123499, -0.023845652118325233, -0.007713038008660078, -0.0010184081038460135, -0.012923754751682281, 0.020136328414082527, -0.01887044869363308, 0.011341404169797897, 0.002196891000494361, 0.008331258781254292, 0.008360697887837887, 0.031705886125564575, -0.012033222243189812, -0.00296414690092206, 0.0010524470126256347, 0.0010837259469553828, -0.013438938185572624, -0.006726828869432211, -0.0018040634458884597, -0.005924614146351814, -0.003882278222590685, 0.019415071234107018, -0.014116036705672741, -0.0032566979061812162, -0.011275166645646095, 0.011142690666019917, -0.0038785983342677355, -0.0014443546533584595, -0.001323838485404849, 0.0062705231830477715, 0.02137276902794838, -0.0003178500337526202, 0.019444510340690613, 0.010163840837776661, 0.027245864272117615, -0.037711456418037415, 0.008956839330494404, -0.01675083488225937, 0.0005013842601329088, -0.015573271550238132, 0.0050009628757834435, -0.0007401167531497777, -0.00971489492803812, 0.014182275161147118, 0.001620069146156311, 0.0028206314891576767, 0.00823558121919632, -0.004397462122142315, 0.017663445323705673, -0.020857585594058037, -0.012239295989274979, 0.008441654965281487, 0.004555697087198496, -0.01725129783153534, -0.00510767986997962, 0.001138924271799624, -0.0021472126245498657, 0.006414038594812155, 0.017854800447821617, 0.01680971309542656, 0.013262303546071053, 0.0022557692136615515, -0.008147264830768108, 0.00014972529606893659, -0.015661587938666344, 0.007838154211640358, -0.004279705695807934, -0.00885380245745182, -0.004868487361818552, -0.00022263301070779562, 0.0017258658772334456, -0.02771688997745514, -0.010362555272877216, -0.03141149505972862, 0.03803528845310211, 0.009943048469722271, 0.03517969697713852, 0.004805929027497768, 0.01563214883208275, -0.0010736063122749329, 0.012761839665472507, -0.005869416054338217, -0.012158338911831379, -0.012452729046344757, -0.010921897366642952, -0.005556625779718161, -0.03273625299334526, -0.0029291880782693624, -0.020224645733833313, -0.003554768394678831, 0.0016623878618702292, 0.014152836054563522, -0.0006444397731684148, -0.001274159993045032, 0.0021858513355255127, -0.03441428020596504, 0.00790439173579216, 0.00028818094870075583, -0.0014839133946225047, -0.0037590020801872015, -0.011473880149424076, -0.0012658803025260568, -0.016559479758143425, -0.010303677059710026, -0.023669017478823662, 0.020077450200915337, 0.010112322866916656, 0.006844585295766592, -0.0013891564449295402, -0.01527888048440218, 0.005302713718265295, -0.00024333236797247082, 0.015470234677195549, 0.020386559888720512, 0.015794064849615097, 0.004320184234529734, 0.01948866806924343, 0.0032364584039896727, 0.03409045189619064, 0.006230044644325972, 0.024625787511467934, -0.010001925751566887, -0.021578842774033546, -0.0005138038541190326, 0.0034020531456917524, -0.0005455428618006408, -0.00488320691511035, 0.0014415947953239083, 0.010863019153475761, -0.015426076017320156, 0.02699563279747963, -0.007955910637974739, 0.008883241564035416, -0.003208859357982874, 0.004235547035932541, 0.009788492694497108, 0.012982632964849472, -0.016633078455924988, 0.01614733412861824, -0.0021987310610711575, 0.012283454649150372, -0.004047872964292765, -0.0003564888029359281, -0.023801492527127266, -0.01319606602191925, -8.745475497562438e-05, -0.002498641610145569, -0.011621075682342052, -0.013593493960797787, -0.004496818874031305, 0.0018187828827649355, 0.021225573495030403, 0.007933830842375755, 0.005641262978315353, -0.006995460484176874, 0.0024305637925863266, -0.015381917357444763, -0.002259449101984501, -0.0004967843997292221, -0.011621075682342052, 0.006439798045903444, 0.005402070470154285, 0.007595281582325697, 0.01770760491490364, 0.010399353690445423, -0.0030119854491204023, -0.0038601988926529884, -0.020018571987748146, 0.0035216493997722864, 0.01260728482156992, -0.01402772031724453, -0.027510816231369972, 0.01580878347158432, 0.001362477196380496, -0.00033716941834427416, -0.0067084296606481075, 0.0042171478271484375, 0.028909172862768173, 0.00912611372768879, -0.0026439970824867487, -0.001245640916749835, 0.013203425332903862, 0.0038896379992365837, 0.0037663618568331003, -0.0014627540949732065, -0.0006246604025363922, -0.004397462122142315, 0.016073735430836678, 0.005814217496663332, 0.0014701138716191053, -0.006542834918946028, 0.0008578730630688369, 0.010244798846542835, 0.017545688897371292, 0.012798638083040714, 0.04041985049843788, 0.000691818306222558, 0.009089314378798008, -0.02003329060971737, 0.0033266155514866114, 0.0002371225564274937, 0.006837225519120693, 0.00963393785059452, -0.003429652424529195, -0.010656945407390594, 0.02009216882288456, -0.01598541811108589, 0.0024747224524617195, 0.010899817571043968, -0.00627788295969367, 0.002982546342536807, -0.004504178650677204, 0.009795852936804295, -0.000528063450474292, 0.021240293979644775, -0.00763944024220109, 0.006590673234313726, -0.005335832480341196, 0.03994882479310036, 0.007466485723853111, -0.01177563052624464, -0.0418623648583889, 0.006796746980398893, -0.005810537841171026, 0.012754479423165321, -0.006686350330710411, 0.009626577608287334, 0.00615276675671339, -0.004853767808526754, -0.009133473038673401, -0.005876775830984116, -0.004710252396762371, -0.018693814054131508, -0.007948550395667553, 0.0019908174872398376, 0.004485779441893101, 0.01035519503057003, 0.0032180589623749256, -0.011974344030022621, -0.008978918194770813, -0.02355126105248928, -0.022506173700094223, -0.0002260829060105607, 0.006009251344949007, -0.006907143164426088, -0.03235354647040367, 0.015617430210113525, 0.005048801656812429, 0.022064587101340294, 0.03612174838781357, -0.003900677664205432, -0.01385844498872757, -0.0049236854538321495, 0.0010450872359797359, 0.0263921320438385, -0.031588129699230194, -0.008610930293798447, 0.011819789186120033, 0.008978918194770813, -0.017236579209566116, -0.010362555272877216, 0.012239295989274979, 0.01792839728295803, 0.0056780618615448475, 0.006690029986202717, -0.015367197804152966, 0.00763944024220109, 0.013034150935709476, 0.013093029148876667, -0.010671664960682392, 0.019385632127523422, -0.02193211205303669, 0.011334044858813286, 0.0030230251140892506, 0.015897100791335106, 0.001422275323420763, -0.02489073947072029, 0.04047872871160507, -0.010752622969448566, -0.0005059841205365956, 0.019856657832860947, 0.0021067338529974222, -0.01118684932589531, 0.029600990936160088, 0.0020662550814449787, 0.008839082904160023, -0.0021674518939107656, 0.0033321355003863573, 0.020960621535778046, 0.014042439870536327, -0.003460931358858943, -0.01360821258276701, -0.013394779525697231, 0.001321078510954976, 0.01461650151759386, 0.009133473038673401, 0.01260728482156992, -0.010988134890794754, -0.0022944079246371984, -0.013004711829125881, 0.0051628779619932175, -0.0028795097023248672, 0.0051996768452227116, -0.03061663918197155, 0.008206142112612724, -0.01274712011218071, -0.030852152034640312, -0.004095711279660463, -0.008633009158074856, 0.016132613644003868, -0.010399353690445423, 0.002447123173624277, 0.005891495384275913, 0.017354335635900497, 0.0027083950117230415, -0.00782343465834856, -0.013461017981171608, 0.016883309930562973, 0.008147264830768108, -0.0005050641484558582, 0.0040552327409386635, 0.013512535952031612, 0.021240293979644775, -0.002384565072134137, -0.01268824189901352, 0.0120258629322052, -0.041509099304676056, 0.019473949447274208, -0.0067893872037529945, 0.010480310767889023, 0.016942188143730164, -0.006023970898240805, -0.010487671010196209, -0.005126079078763723, -0.020622072741389275, 0.010465591214597225, 0.018576057627797127, 0.00036154864937998354, 0.006068129558116198, 0.004839048255234957, 0.0022668088786303997, -0.005777418613433838, 0.017074665054678917, 0.007146335672587156, 0.0066605908796191216, 0.04760298505425453, 0.028644220903515816, 0.011142690666019917, -0.005214396398514509, -0.009030437096953392, -0.0375053845345974, 0.0015538312727585435, -0.003091102931648493, 0.0060350107960402966, -0.005725900176912546, 0.0030671837739646435, -0.016353406012058258, 0.02677484042942524, 0.02771688997745514, -0.0009356106165796518, 0.0014783935621380806, 0.003466451307758689, 0.009663376957178116, 0.002132493071258068, 0.004986243788152933, -0.002220810391008854, 0.007010180037468672, -0.01430739089846611, 0.0017065464053303003, -0.01079678162932396, 0.002528080716729164, 0.001208842033520341, 0.00592829380184412, 0.012379131279885769, 0.001836262410506606, 0.01704522594809532, -0.0014047959120944142, -0.0030929429922252893, 0.020474877208471298, -0.005707500968128443, 0.00807366706430912, -0.006009251344949007, 0.014623860828578472, 0.0027580733876675367, -0.013924683444201946, -0.023227430880069733, -0.009280668571591377, 0.012975272722542286, -0.023477664217352867, -0.0017231059027835727, 0.006811466068029404, 0.008375417441129684, 0.0020239364821463823, -0.018958766013383865, 0.011849228292703629, 0.015499673783779144, 0.022138185799121857, -0.009118753485381603, -0.008750765584409237, 0.0045704166404902935, -0.015043367631733418, 0.0073340097442269325, -0.016338687390089035, -0.005269594490528107, -0.009736974723637104, -0.015323039144277573, 0.011613715440034866, 0.006649551447480917, 0.004886886570602655, -0.005976132582873106, 0.007860233075916767, -0.004802249372005463, 0.01282807718962431, 0.0003318795934319496, -0.010583347640931606, -0.0007028579711914062, -0.022962478920817375, -0.016059016808867455, -0.014712178148329258, 0.005188637413084507, -0.013247583992779255, -0.03797641023993492, -0.014035079628229141, -0.0056007844395935535, 0.004158269613981247, 0.005214396398514509, -0.012960553169250488, 0.015205282717943192, 0.006782027427107096, -0.011547477915883064, 0.019444510340690613, -0.0034738110844045877, 0.00205889530479908, 0.009707535617053509, 0.015764625743031502, -0.0195328276604414, -0.00893475953489542, -0.004051553085446358, 4.4014868763042614e-05, 0.014285312034189701, 0.006999140605330467, -0.020003851503133774, -0.0017654246184974909, 0.0003245198167860508, 0.01847301982343197, -0.0060129314661026, 0.010929256677627563, 0.007933830842375755, 0.010340475477278233, -0.007477525621652603, -0.023860370740294456, -0.007742477115243673, -0.012658802792429924, -0.01002400554716587, -0.014380988664925098, -0.017619287595152855, 0.022344259545207024, -0.012408570386469364, 0.011253086850047112, 0.01598541811108589, -0.001755304983817041, -0.012276094406843185, 0.010288957506418228, 0.012364411726593971, 0.005567665211856365, -0.0069807409308850765, -0.00852261297404766, 0.007043298799544573, 0.03129373863339424, -0.008500533178448677, -0.005070880986750126, 0.010524469427764416, 0.011319325305521488, -0.019400350749492645, 0.003282457124441862, 0.011702032759785652, 0.0016090294811874628, -0.010642225854098797, 0.011091171763837337, 0.014035079628229141, -0.0070580183528363705, 0.019047081470489502, -0.01163579523563385, 0.028070159256458282, -0.010178560391068459, -0.014756336808204651, 0.023301029577851295, 0.0016062696231529117, -0.014116036705672741, -0.02165244147181511, 0.0055529456585645676, -0.01664779707789421, 0.00017617447883822024, 0.01027423795312643, -0.009611858054995537, -0.0015078326687216759, 0.008088386617600918, -0.006988100707530975, 0.015676308423280716, -0.0014747136738151312, 0.005126079078763723, -0.0008068146998994052, 0.005714860744774342, -0.027186987921595573, 0.003523489460349083, -0.011606356129050255, 0.013321181759238243, 0.009192351251840591, -0.00026771161356009543, 0.024728823453187943, -0.011760910972952843, -0.015264160931110382, 0.025185130536556244, -0.013306462205946445, -0.013247583992779255, -0.013762768357992172, 0.012599924579262733, 0.003045104444026947, 0.019738901406526566, 0.006730508990585804, 0.0312642976641655, 0.00566334230825305, -0.009346907027065754, -0.024905458092689514, 0.0048096091486513615, 0.025582557544112206, 0.0008955919183790684, 0.028261512517929077, 0.00848581362515688, -0.028658941388130188, 0.02689259685575962, -0.011554837226867676, 0.0028224715497344732, 0.0248318612575531, 0.0028482305351644754, -0.010244798846542835, 0.012430650182068348, -0.01088509801775217, -0.0013863964704796672, -0.021887952461838722, 0.0114076416939497, 0.011709393002092838, 0.008669807575643063, -0.04486515372991562, -0.0004457260074559599, 0.008036867715418339, -0.002610878087580204, -0.016279809176921844, -0.008331258781254292], "92b6dc3c-4165-4d1c-94c8-c1f6f072408e": [-0.024414973333477974, -0.0019488753750920296, -0.0011887021828442812, 0.029393361881375313, -0.038306765258312225, -0.04146670177578926, -0.019839029759168625, 0.018333587795495987, -0.04778657108545303, 0.001565062440931797, 0.011350428685545921, 0.047518275678157806, -0.02687435783445835, 0.013981224037706852, -0.017707563936710358, 0.005365928169339895, -0.025920415297150612, 0.015091673471033573, -0.022730669006705284, -0.010262337513267994, 0.08370848000049591, -0.004143688827753067, -0.03195708245038986, 0.0325532965362072, -0.005142347887158394, -0.02954241633415222, -0.011633630841970444, 0.0164555124938488, 0.007448951713740826, 0.027783583849668503, 0.0028096595779061317, -0.003935013897716999, 0.020435243844985962, 0.02896110713481903, 0.0321955680847168, -0.03276197239756584, -0.021970495581626892, 0.039886731654405594, -0.005302580539137125, -0.0072626350447535515, -0.02282010018825531, 0.04194367304444313, -0.034282319247722626, -0.00032093096524477005, -0.04513341933488846, 0.006539725232869387, 0.0028376071713864803, -0.004557312466204166, 0.0051945168524980545, -0.0052019692957401276, -0.0007326914346776903, -0.03213594853878021, -0.0025693108327686787, 0.01784171164035797, 0.020494865253567696, -0.013362651690840721, 0.031032951548695564, 0.042987048625946045, -0.007344614248722792, -0.04966464638710022, -0.014733945019543171, -0.02513043023645878, 0.01067968737334013, 0.007434046361595392, -0.0007741469307802618, -0.0068825483322143555, 0.02815621718764305, 0.018005670979619026, -0.02513043023645878, 0.04823373258113861, 0.0021873610094189644, 0.04921748489141464, 0.007407961878925562, 0.03258311003446579, -0.009852440096437931, 0.023893285542726517, 0.022462371736764908, -0.031211815774440765, 0.029572226107120514, 0.036369070410728455, 0.00277425954118371, 0.011857210658490658, 0.03577285632491112, 0.009889704175293446, 0.07619617879390717, 0.027187369763851166, -0.029408268630504608, -0.033656295388936996, -0.020062608644366264, -0.021240131929516792, 0.010239980183541775, 0.009286036714911461, -0.000592953700106591, -0.0369354709982872, -0.010716951452195644, 0.0164555124938488, 0.020465053617954254, -0.012423614040017128, 0.038962602615356445, -0.02779848873615265, 0.003653675550594926, 0.03672679886221886, -0.05207931622862816, 0.033000458031892776, 0.0033984212204813957, 0.019958272576332092, -0.007352067157626152, 0.003465495305135846, -0.011074679903686047, 0.041556134819984436, 0.05675959587097168, -0.05210912600159645, -0.006286333780735731, 0.0023475936613976955, -0.008332094177603722, -0.026248332113027573, -0.020181851461529732, -0.015933826565742493, -0.0032195569947361946, -0.020778067409992218, 0.021344469860196114, 0.008764349855482578, -2.9592372811748646e-05, 0.007240276783704758, 0.00251900521107018, 0.04301685839891434, -0.023282166570425034, -0.014174994081258774, 0.017051728442311287, 0.01784171164035797, -0.02168729342520237, 0.003979729954153299, 0.02118051052093506, -0.003424505703151226, -0.009755555540323257, -0.013444631360471249, 0.020673729479312897, 0.03788941726088524, -0.012677005492150784, 0.05914445221424103, -0.019332246854901314, -0.03610077127814293, -0.023714421316981316, 0.002686690539121628, 0.002192950574681163, -0.011246091686189175, -0.03225519135594368, 0.01985393464565277, -0.011566556058824062, 0.003875392721965909, -0.025622308254241943, -0.01192428544163704, 0.029497699812054634, 0.009591597132384777, 0.025517970323562622, -0.02091221511363983, -0.005842899437993765, 0.002392309717833996, 0.011790136806666851, -0.002936355071142316, 0.022000305354595184, -0.03371591493487358, -0.0014495458453893661, 0.010061115026473999, 0.055090196430683136, 0.029095254838466644, 0.04417947679758072, 0.032344624400138855, -0.01977940835058689, 0.020897310227155685, 0.025368915870785713, 0.0173647403717041, 0.04820392280817032, -0.008898497559130192, 0.005034284200519323, -0.03148011118173599, 0.04951559379696846, 0.041079163551330566, 0.005183337721973658, -0.019794313237071037, 0.0041138781234622, -0.005738561972975731, -0.0020606655161827803, 0.006495009176433086, -0.033328376710414886, 0.017931142821907997, -0.013966319151222706, 0.015695340931415558, 0.0001866662933025509, 0.011529292911291122, 0.0014132141368463635, -0.011253544129431248, -0.01029214821755886, 0.04432852938771248, 0.006535998545587063, -0.010068568401038647, -0.004874051548540592, 0.005399465095251799, 0.02538382075726986, 0.012684457935392857, -0.020748255774378777, -0.012371446006000042, -0.020688634365797043, 0.030555980280041695, -0.08114475756883621, -0.02380385436117649, -0.03243405371904373, -0.04993294179439545, -0.0057236566208302975, -0.027813395485281944, 0.044775690883398056, -0.017782090231776237, -0.0030369663145393133, 0.02687435783445835, 0.002256298204883933, -0.013690569438040257, -0.03696528449654579, 0.025622308254241943, 0.0073669725097715855, -0.032821595668792725, -0.00659189373254776, 0.00031930068507790565, -0.005164706148207188, -0.033000458031892776, -0.07410942763090134, -0.024638554081320763, -0.027187369763851166, -7.289650966413319e-05, -0.04835297539830208, -0.03243405371904373, 0.026457007974386215, 0.009412732906639576, 0.03374572470784187, -0.036220014095306396, -0.0570577047765255, -0.01117156445980072, 0.02428082562983036, -0.011022510938346386, -0.0024724260438233614, -0.012170223519206047, 0.014011034741997719, 0.03794903680682182, 0.006237891502678394, -0.01839320920407772, -0.035385314375162125, 0.010649876669049263, -0.001123491209000349, 0.002004770329222083, -0.013757644221186638, -0.013571326620876789, 0.004296469036489725, 0.0027463119477033615, -0.00021065460168756545, -0.031062763184309006, -0.037352822721004486, 0.05985990911722183, 0.044775690883398056, -0.012908038683235645, -0.011357881128787994, -0.014875545166432858, -0.017528699710965157, 0.007523478474467993, 0.021672388538718224, -0.0035195271484553814, 0.04513341933488846, -0.02501118741929531, 0.024310635402798653, -0.04724998027086258, 0.03061560168862343, 0.018586978316307068, -0.02767924591898918, 0.005716204177588224, 0.008019081316888332, 0.011812495067715645, -0.02186615765094757, -0.0007485283422283828, 0.003221420105546713, 0.036041151732206345, 0.013347746804356575, -0.014182446524500847, -0.02223879098892212, 0.004132510162889957, 0.010336864739656448, 0.05333136394619942, 0.03407364338636398, 0.0004429685650393367, 0.016172312200069427, -0.01468177605420351, -0.046355657279491425, -0.0191980991512537, 0.014145183376967907, -0.0004970004665665329, 0.03505739942193031, 0.015427043661475182, 0.01605306938290596, -0.013988676480948925, -0.0232225451618433, 0.004419438075274229, -0.0005533613730221987, 0.03672679886221886, -0.020852593705058098, -0.03097333014011383, 0.03064541332423687, -0.033596672117710114, 0.04978388920426369, -0.01927262544631958, 0.030913708731532097, 0.008771802298724651, -0.027455667033791542, 0.019004330039024353, 0.024668363854289055, -0.023923097178339958, -0.010381580330431461, -0.025354010984301567, -0.018736032769083977, 0.0005608140490949154, -0.01358623243868351, 0.009315847419202328, -0.013437178917229176, -0.008302283473312855, 0.039916545152664185, 0.017677752301096916, -0.058935780078172684, 0.013884339481592178, 0.019242815673351288, -0.030436737462878227, -0.005041736643761396, -0.01186466310173273, -0.01949620619416237, -0.03481891378760338, -0.029244309291243553, 0.0028599651996046305, -0.040900297462940216, 0.009755555540323257, -0.01120882760733366, 0.010985247790813446, -0.03854525089263916, -0.03434194251894951, -0.007445225492119789, -0.017394550144672394, -0.015605907887220383, -0.009390374645590782, -0.001268818392418325, -0.012736626900732517, 0.016872862353920937, -0.009807724505662918, 0.0025040998589247465, 0.030153535306453705, 0.022283507511019707, 0.00277425954118371, 0.000844481575768441, -0.028141312301158905, 0.02840960957109928, 0.020181851461529732, -0.0009502164321020246, -0.0230436809360981, -0.03869430348277092, 0.006763305515050888, -0.00850350596010685, 0.01670890487730503, -0.02158295549452305, -0.015277990140020847, -0.027709057554602623, -0.03094352036714554, 0.009271131828427315, 0.03335818648338318, 0.01029214821755886, -0.016843052580952644, 0.027202274650335312, -0.04301685839891434, 0.0022730669006705284, 0.010709498077630997, 0.027694152668118477, -0.014622154645621777, -0.021717103198170662, -0.014219709672033787, 0.0015408411854878068, 0.018110007047653198, -0.02981071174144745, 0.03496796637773514, 0.010523181408643723, 0.02143390290439129, -0.027619624510407448, -0.033924590796232224, 0.05017142742872238, 0.009554333053529263, -0.022387845441699028, 0.0051945168524980545, 0.007676258683204651, 0.02179163135588169, -0.01861678995192051, 0.0018538536969572306, -0.02387838065624237, -0.02687435783445835, -0.027768678963184357, 0.031390681862831116, 0.00015429372433573008, -0.025875698775053024, 0.032344624400138855, -0.00863020122051239, 0.00959904957562685, -0.008339546620845795, 0.01605306938290596, -0.00615218561142683, 0.03559399023652077, -0.0016144363908097148, 0.004743629600852728, 0.012073338963091373, -0.00901774037629366, -0.009852440096437931, -0.02483232319355011, -0.0008193288231268525, 0.04981369897723198, -0.003361157840117812, 0.015665529295802116, -0.028513945639133453, -0.020360715687274933, -0.0014961251290515065, -0.04924729838967323, -0.009248773567378521, 0.028916390612721443, 0.042957235127687454, 0.01366075873374939, 0.05076764151453972, -0.012170223519206047, 0.04501417651772499, 0.03624982759356499, 0.009427637793123722, 0.026978693902492523, -0.04599792882800102, 0.0008533316431567073, 0.038783736526966095, -0.005105084739625454, -0.006539725232869387, 0.0013675664085894823, -0.033298566937446594, 0.02413177117705345, -0.014905355870723724, 0.013466989621520042, 0.00405798340216279, 0.022551804780960083, 0.020614108070731163, 0.020375622436404228, 0.003853034693747759, -0.02501118741929531, -0.031867653131484985, -0.020360715687274933, -0.013951413333415985, 0.01957073248922825, -0.009375468827784061, -0.020390527322888374, 0.011052321642637253, -0.05607394874095917, -0.0024165308568626642, 0.02226860262453556, 0.013705475255846977, 0.001742995111271739, -0.03806827962398529, -0.023386504501104355, -0.02867790497839451, -0.03812790289521217, 0.028946202248334885, 0.016664188355207443, 0.015225821174681187, 0.0010238116374239326, -0.037024904042482376, -0.01594873145222664, 0.001354524283669889, 0.007720974739640951, 0.009643765166401863, -0.012878227978944778, 0.006927264388650656, -0.04116859287023544, 0.01411537267267704, -0.050052184611558914, -0.022030116990208626, -0.0017662846948951483, 0.003994635306298733, 0.0028990916907787323, -0.009748103097081184, 0.023505747318267822, -0.041526321321725845, -0.025503065437078476, -0.022074831649661064, -0.0023047407157719135, 0.0007280334830284119, 0.023535557091236115, 0.00034538505133241415, 0.05294382572174072, -0.029169782996177673, 0.018199440091848373, -0.010500823147594929, 0.015225821174681187, 0.01952601596713066, -0.005045462865382433, -0.04045313596725464, 0.013817265629768372, -0.008600390516221523, 0.004646744579076767, -0.03204651549458504, 0.029229404404759407, 0.005440454930067062, -0.0009003766463138163, 0.05198988318443298, 0.016485324129462242, -0.004806977231055498, -0.01521091628819704, 0.01003875769674778, 0.010560444556176662, -0.00915934145450592, -0.022000305354595184, -0.009882250800728798, -0.04775676131248474, -0.010403938591480255, -0.016246838495135307, 0.014525270089507103, 0.018080197274684906, -0.025503065437078476, 0.003135714214295149, -0.0014672459801658988, -0.013385009951889515, -0.028618283569812775, -0.011954096145927906, -0.009055003523826599, -0.020435243844985962, -0.011164112016558647, 0.001070390921086073, 0.02219407632946968, 0.038038469851017, -0.05213893577456474, -0.00857803225517273, 0.015963636338710785, -0.0032624099403619766, -0.0018454694654792547, 0.03660755604505539, 0.01758832111954689, 0.0012734764022752643, 0.002489194506779313, 0.0005924879224039614, 0.042510077357292175, 0.003282904624938965, 0.01989865116775036, 0.007352067157626152, 0.00045321599463932216, -0.03240424394607544, 0.021150700747966766, -0.0016116416081786156, 0.015695340931415558, -0.0040542567148804665, 0.005794457159936428, 0.002090476220473647, 0.002006633672863245, -0.013325388543307781, 0.02644210122525692, 0.01222984492778778, 0.00605157483369112, 0.00508272647857666, -0.008071250282227993, -0.0030854088254272938, -0.0022302139550447464, 0.014249520376324654, 0.0063012391328811646, 0.03517664223909378, 0.035415127873420715, -0.02289462648332119, -0.021344469860196114, -0.023938002064824104, 0.005470265634357929, -0.03222538158297539, 0.020390527322888374, 0.016947390511631966, -0.01942167989909649, 0.047488465905189514, 0.024951566010713577, 0.008689822629094124, 0.032314810901880264, 0.00019470122060738504, -0.0005198242724873126, -0.013973771594464779, 0.0025581317022442818, 0.03517664223909378, -0.013489346951246262, 0.006137280259281397, 0.0021389187313616276, 0.003379789413884282, -0.005731109529733658, -0.041556134819984436, -0.04868089407682419, -0.014212257228791714, 0.03323894366621971, -0.020867498591542244, 0.01623193360865116, 0.00906990934163332, -0.003253093920648098, 0.0014616565313190222, 0.016366081312298775, -0.006506187841296196, 0.005734835751354694, 0.03791922703385353, -0.006666420493274927, 0.015039504505693913, -0.0031934725120663643, -0.009822629392147064, 0.004866598639637232, -0.020494865253567696, 0.012982564978301525, -0.0032922206446528435, 0.005824267864227295, -0.017782090231776237, 0.0011458492372184992, 0.0007857917225919664, -0.00329594686627388, 0.01427933108061552, -0.006934716831892729, 0.002077433979138732, 0.009643765166401863, -0.00875689648091793, 0.03478910028934479, 0.01813981868326664, 0.016693998128175735, 0.017707563936710358, -0.009785366244614124, 0.01670890487730503, -0.04677300900220871, 0.013996129855513573, 0.022030116990208626, 0.005254138261079788, -0.012602478265762329, -0.0077656907960772514, 0.02428082562983036, -0.00327358883805573, -0.011052321642637253, 3.58660145138856e-05, -0.018124913796782494, 0.022253697738051414, -0.018855275586247444, 0.0052019692957401276, 0.019332246854901314, -0.021225227043032646, -0.043136101216077805, -0.0232225451618433, 0.012162771075963974, -0.016649283468723297, 0.02991504967212677, -0.00906990934163332, 0.00503801042214036, -0.023162923753261566, 0.014368763193488121, 0.02578626573085785, 0.009666123427450657, -0.038157712668180466, -0.0012147865490987897, 0.012870775535702705, 0.010873457416892052, 0.01331048272550106, -0.014197351410984993, -0.009964230470359325, 0.003508348250761628, 0.00701297027990222, 0.00450887018814683, 0.02417648769915104, -0.01249068882316351, -0.0015715834451839328, 0.015844393521547318, 0.011752873659133911, -0.014726491644978523, 0.006729768123477697, 0.016902673989534378, 0.030854087322950363, 0.004799524787813425, 0.007109854836016893, -0.00449023861438036, 0.02516024187207222, 0.0029419446364045143, -0.024877039715647697, 0.0082277562469244, -0.009368016384541988, -0.028871674090623856, -0.006442840211093426, 0.00025478843599557877, -0.02797735296189785, -0.014309141784906387, -0.021076174452900887, 0.015203462913632393, -0.01173796784132719, -0.007922196760773659, -0.030049197375774384, 0.04084067791700363, -0.010351769626140594, -0.013653306290507317, 0.018512452021241188, 0.0033742000814527273, -0.02863318845629692, 0.010754214599728584, 0.008443884551525116, 0.013765096664428711, -0.025219863280653954, -0.008645107038319111, 0.012870775535702705, -0.006938443519175053, -0.046057552099227905, -0.01205098070204258, 0.0008896634681150317, -0.022208981215953827, 0.022313319146633148, 0.02226860262453556, -0.018736032769083977, -0.006401850376278162, 0.018736032769083977, 0.006677599623799324, -0.01177523098886013, 0.01693248376250267, 0.043285153806209564, 0.033477429300546646, 0.006867642980068922, -0.019704880192875862, -0.0065881675109267235, 0.00047790296957828104, -0.021076174452900887, 0.01579967699944973, -0.02460874244570732, 0.031182006001472473, 0.018706222996115685, -0.021955588832497597, -0.03791922703385353, -0.0070800441317260265, 0.050737831741571426, 0.017782090231776237, 0.011156659573316574, 0.008525864221155643, 0.006480103824287653, -0.00456103915348649, -0.002962439553812146, -0.007538383826613426, 0.024489499628543854, -0.025115525349974632, -0.0006525751086883247, 0.012721721082925797, 0.01912357285618782, -0.02903563342988491, -0.003126398427411914, 0.009136983193457127, 0.05014161765575409, 0.000661425176076591, 0.0012343497946858406, 0.005138621665537357, 0.018601885065436363, 0.004221942275762558, -0.00859293807297945, 0.010612613521516323, 0.0416753776371479, -0.030585790053009987, 0.04593830928206444, 0.019481301307678223, 0.014957524836063385, 0.008108513429760933, 0.03243405371904373, 0.004315100610256195, -0.0018771432805806398, 0.03812790289521217, -0.007199286948889494, 0.01763303577899933, 0.0014495458453893661, -0.017752278596162796, 0.009442543610930443, 0.006711136549711227, -0.004065435845404863, 0.0170070119202137, 0.008935760706663132, -0.020435243844985962, 0.03967805951833725, 0.0343717522919178, 0.03553437069058418, 0.013340293429791927, 0.013504252769052982, 0.0010443065548315644, 0.019004330039024353, 0.005641677416861057, -0.028513945639133453, -0.004542407114058733, -0.004650471266359091, -0.033924590796232224, 0.012080791406333447, -0.00224511930719018, 0.017454171553254128, 0.00894321408122778, 0.01095543708652258, 0.011797589249908924, -0.009256226010620594, -0.00151103048119694, 0.00915934145450592, 0.0035940539091825485, -0.005846626125276089, -0.0006791253108531237, 0.009807724505662918, -0.023267261683940887, 0.007065138779580593, -0.049605026841163635, 0.0015231410507112741, 0.007296171970665455, 0.01715606451034546, -0.035087209194898605, 0.050081998109817505, 0.04063200205564499, 0.0013303030282258987, 0.0034189161378890276, 0.014055751264095306, -0.007024148944765329, -0.0171858761459589, 0.01916828751564026, -0.008876139298081398, 0.014383669011294842, -0.01420480478554964, 0.012766437605023384, -0.022477276623249054, -0.028111502528190613, 0.0007951075676828623, 0.01781190000474453, 0.02168729342520237, 0.027768678963184357, 0.0055075292475521564, 0.013385009951889515, 0.005451634060591459, 0.019391868263483047, -0.03252348676323891, -0.013869433663785458, 0.019213004037737846, 0.007653900422155857, 0.007929649204015732, 0.011797589249908924, 0.015441949479281902, 0.00036564702168107033, 0.001879938063211739, 0.01159636676311493, -0.007493667770177126, -0.000813739316072315, 0.009643765166401863, -0.025026092305779457, -0.023490840569138527, 0.03526607155799866, -0.03678641840815544, -0.04844240844249725, -0.001501714694313705, 0.023505747318267822, 0.006457745563238859, -0.006927264388650656, 0.013370104134082794, -0.018959613516926765, 0.022835005074739456, 0.011529292911291122, -0.00034119290648959577, -0.015441949479281902, 0.01934715174138546, -0.0008323710062541068, -0.015151294879615307, 0.019183194264769554, -0.03952900320291519, 0.02691907249391079, -0.005239232908934355, 0.025249673053622246, -0.004736177157610655, 0.0027668068651109934, -0.0031040403991937637, 0.0014150772476568818, -0.008078702725470066, -0.023923097178339958, -0.007005517370998859, -0.006711136549711227, 0.03306008130311966, 0.011342976242303848, -0.012155317701399326, -0.02135937474668026, -0.00013123700045980513, -0.004084067419171333, -0.04140707850456238, -0.004218215588480234, -0.013399914838373661, 0.026322858408093452, -0.028946202248334885, -0.02420629933476448, -0.020778067409992218, 0.035415127873420715, 0.015844393521547318, -0.009703386574983597, -0.05562679097056389, 0.005034284200519323, -0.014547627419233322, -0.01836339943110943, 0.005276496056467295, -0.00032279413426294923, 0.002310330281034112, -0.008130871690809727, 0.030764656141400337, -0.025100620463490486, -0.026859451085329056, 0.009338205680251122, 0.008294831030070782, -0.0080488920211792, -0.027589814737439156, -0.027947543188929558, -0.005872710142284632, -0.02292443811893463, -0.047637518495321274, -0.004318826831877232, -0.0003505087806843221, -0.02369951643049717, -0.016217026859521866, 0.0009921378223225474, 0.010008946992456913, 0.017170971259474754, -0.009151889011263847, 0.007378151174634695, -0.030123725533485413, -0.032016705721616745, 0.0033760631922632456, 0.0032065147534012794, 0.025771360844373703, -0.0017299528699368238, -0.015814583748579025, 0.016693998128175735, -0.015918919816613197, 0.01985393464565277, 0.017290214076638222, -0.008414073847234249, 0.011052321642637253, 0.0023774043656885624, -0.013876887038350105, 0.010947983711957932, 0.029467890039086342, 0.02058429643511772, 0.007631542161107063, -0.01192428544163704, 0.018020575866103172, -6.963596388231963e-05, 0.0276047196239233, -0.019317341968417168, 0.007653900422155857, 0.0019358331337571144, -0.05148310214281082, -0.023669704794883728, -0.006040395703166723, -0.016887769103050232, 0.018706222996115685, -0.03150992467999458, 0.015814583748579025, -0.017066633328795433, -0.018750937655568123, -0.007825312204658985, -0.014182446524500847, -0.021523334085941315, 0.009554333053529263, 0.047846194356679916, 0.01051572896540165, -0.011812495067715645, 0.012252203188836575, 0.024996282532811165, -0.0022749300114810467, -0.014301689341664314, -0.004482785705476999, 0.004460427910089493, -0.014093014411628246, -0.01556119229644537, -0.014495459385216236, 0.02191087417304516, -0.03317932412028313, 0.020509770140051842, -0.03016844019293785, -0.005757194012403488, 0.021150700747966766, -0.005708751268684864, -0.015367422252893448, -0.03258311003446579, -0.021985400468111038, 0.02128484845161438, 0.0007620363612659276, -0.0049187676049768925, -0.02618871070444584, -0.011395145207643509, -0.019540922716259956, 0.005079000256955624, 0.018229249864816666, -0.021448807790875435, 0.006219259928911924, 0.005787004716694355, 0.004493964836001396, 0.037173956632614136, -0.002561858156695962, -0.007273813709616661, -0.016738714650273323, 0.031092572957277298, 0.030675223097205162, -0.010858551599085331, 0.00026177530526183546, -0.03207632526755333, 0.03082427754998207, -0.01152184046804905, 0.006372039671987295, -0.030108818784356117, 0.0050231050699949265, -0.04191386327147484, -0.007788048591464758, 0.004512596409767866, -0.03094352036714554, 0.01715606451034546, 0.02563721314072609, -0.005153527017682791, 0.018780749291181564, -0.014353858307003975, -0.01675361953675747, 0.04385155811905861, -0.023431219160556793, 0.01056789793074131, 0.015292895026504993, -0.01363840140402317, -0.023982718586921692, 0.015427043661475182, 0.024966470897197723, -0.04871070384979248, 0.00013123700045980513, 0.02563721314072609, 0.004557312466204166, -0.021091079339385033, -0.009449996054172516, -0.017066633328795433, -0.0018389483448117971, -0.00039988275966607034, 0.010083473287522793, -0.0071769291535019875, 0.031003141775727272, 0.02596512995660305, -0.02805188111960888, 0.005462813191115856, -0.006718589458614588, -0.009524522349238396, 0.0037971395067870617, -0.010925626382231712, -0.0022171717137098312, -0.06898199021816254, -0.026382479816675186, -0.01208824384957552, 0.01861678995192051, 0.013690569438040257, 0.008794160559773445, -0.0009595323354005814, -0.004657923709601164, 0.029631847515702248, -0.0016302732983604074, -0.03210613876581192, 0.0024314362090080976, 0.03484872356057167, 0.0019973176531493664, -0.021657481789588928, 0.01788642816245556, -0.024817418307065964, -1.880636773421429e-05, -0.001048964448273182, 0.008607842959463596, 0.00661797821521759, 0.004870325326919556, 0.0372931994497776, 0.00710240239277482, 0.021478617563843727, 0.022551804780960083, -0.01575496233999729, -0.001984275644645095, -0.026278143748641014, -0.020539581775665283, 0.03857506066560745, 0.0007834627758711576, -0.010001493617892265, -0.01431659422814846, 0.03094352036714554, 0.012244749814271927, 0.014011034741997719, -0.010187811218202114, 0.005425549577921629, -0.012863322161138058, 0.009040098637342453, 0.012378898449242115, 0.009844987653195858, -0.019153382629156113, -0.014957524836063385, -0.01982412301003933, -0.00450887018814683, -0.020420338958501816, -0.003335073357447982, 0.016038162633776665, 0.006662694271653891, 0.0033499787095934153, -0.005831720773130655, -0.027083031833171844, 0.0053249383345246315, -0.00514607410877943, 0.016872862353920937, 0.0034841271117329597, -0.011626177467405796, -0.009524522349238396, 0.04143689200282097, 0.03678641840815544, -0.016649283468723297, 0.012185128405690193, -0.016693998128175735, -0.0006502461619675159, 0.006800568662583828, 0.02893129736185074, 0.04230140149593353, -0.0015464307507500052, -0.005168432369828224, 0.0027481750585138798, 0.007870027795433998, 0.02347593568265438, 0.00715829711407423, 0.0018110007513314486, 0.04066181182861328, 0.004915041383355856, 0.021672388538718224, -0.015218368731439114, -0.03741244599223137, 0.015076767653226852, 0.03407364338636398, -0.01056789793074131, -0.01992846094071865, -0.04385155811905861, -0.011588914319872856, -0.026501722633838654, 0.005906247533857822, 0.007150844670832157, 0.02223879098892212, -0.006875095423310995, 0.02651662938296795, 0.011857210658490658, 0.002414667746052146, 0.027962448075413704, -0.0028525125235319138, -0.009263678453862667, -0.0036890755873173475, -0.006856463849544525, -0.01773737370967865, -0.020942024886608124, -0.0041213310323655605, 0.001954464940354228, -0.010970341973006725, -0.0014877408975735307, 0.008272472769021988, 0.019511111080646515, -0.013832170516252518, -0.014197351410984993, -0.004382174927741289, 0.010217621922492981, -0.025681929662823677, -0.012758985161781311, -0.018303778022527695, 0.0010666645830497146, -0.023058585822582245, -0.023416314274072647, -0.013884339481592178, -0.0041138781234622, -0.0016209575114771724, 0.015054409392178059, -0.01047846581786871, -0.04382174834609032, -0.0023792674764990807, 0.009912061505019665, -0.007456404622644186, -0.008868686854839325, -0.01029214821755886, 0.020420338958501816, 0.018736032769083977, 0.006372039671987295, -0.008935760706663132, 0.010031304322183132, 0.009740650653839111, 0.027873016893863678, 0.022149359807372093, -0.006457745563238859, -0.00030788875301368535, -0.020539581775665283, 0.015397232957184315, 0.00608883798122406, -0.022283507511019707, -0.007989270612597466, 0.006234165281057358, -0.0015659939963370562, -0.007083770353347063, -0.0071769291535019875, -0.012714268639683723, -0.040572378784418106, 0.0015520201995968819, 0.01274407934397459, 0.02347593568265438, 0.010441201739013195, -0.0020532128401100636, -0.002552542369812727, -0.01166344154626131, -0.02453421615064144, 0.004702639766037464, -0.010970341973006725, -0.04704130440950394, 0.005637951195240021, 0.003705844283103943, 0.0005105084273964167, 0.004512596409767866, -0.008488600142300129, -0.001355455839075148, -0.01675361953675747, -0.006416755728423595, 0.0003050939994864166, -0.00022928630642127246, 0.0038679400458931923, -0.023341787979006767, 0.01301982905715704, 0.01708153821527958, -0.024787606671452522, -0.013705475255846977, 0.004836787935346365, 0.02362499013543129, 0.014651965349912643, -0.02113579586148262, -0.01012818980962038, -0.019734691828489304, 0.029378456994891167, 0.002453794237226248, -0.007966913282871246, -0.013876887038350105, 0.017349835485219955, -0.014107919298112392, 0.010046210139989853, 0.009882250800728798, 0.02508571371436119, -0.01869131624698639, 0.03159935399889946, 0.008794160559773445, -0.003351842053234577, 0.00910717248916626, -0.006789389532059431, -0.01166344154626131, 0.003998361993581057, -0.020166946575045586, -0.006055301055312157, 0.016291555017232895, 0.0023233722895383835, -0.0023121933918446302, 0.0274258553981781, -0.0016293417429551482, 0.01989865116775036, 0.02563721314072609, -0.02186615765094757, -0.008272472769021988, -0.0026811009738594294, 0.014689228497445583, -0.016798336058855057, 0.01788642816245556, -0.016813240945339203, -0.005440454930067062, -0.003526979824528098, -0.008324641734361649, -0.015240726992487907, 0.02332688309252262, 0.0045722178183496, 0.006222986150532961, 0.0013526610564440489, 0.006237891502678394, -0.00253763678483665, 0.020107325166463852, -0.07434791326522827, -0.01410046685487032, -0.014517816714942455, 0.005015652161091566, 0.02091221511363983, -0.025354010984301567, 0.0026307953521609306, 0.010836194269359112, 0.0031971989665180445, 0.010374127887189388, -0.0064651984721422195, 0.021329564973711967, -0.021046362817287445, -0.027381138876080513, -0.015456854365766048, 0.01111939549446106, -0.0024109412916004658, 0.02453421615064144, 0.018586978316307068, -0.02815621718764305, 0.01047846581786871, -0.005097631830722094, 0.007586826104670763, -0.012036074884235859, -0.027336424216628075, 0.0005924879224039614, 0.009889704175293446, 0.002362499013543129, 0.0005626772181130946, -0.0035735592246055603, -0.007236550562083721, 0.029274119064211845, -0.02739604562520981, -0.003841855563223362, 0.02490684948861599, 0.0072030131705105305, -0.006938443519175053, 0.017305118963122368, -0.012773890048265457, 0.024310635402798653, 0.01016545295715332, -0.012438519857823849, -0.003920108545571566, -0.004154867958277464, -0.01594873145222664, -0.03771055117249489, 0.015591003000736237, -0.009464900940656662, 0.01051572896540165, 0.01258012093603611, -0.004221942275762558, 0.0029028181452304125, 0.0002158947754651308, -0.0025040998589247465, -0.02435535192489624, 0.002427709987387061, -0.015546286478638649, 0.016992105171084404, 0.0008095471421256661, 0.020792972296476364, 0.01012818980962038, 0.01945148967206478, 0.008585485629737377, 0.021523334085941315, 1.6826750652398914e-05, 0.01916828751564026, -0.005097631830722094, 0.026978693902492523, 0.009703386574983597, 0.0037971395067870617, 0.007180655375123024, 0.054285306483507156, -0.01942167989909649, -0.0013004923239350319, -0.020435243844985962, -0.006815474014729261, -0.013765096664428711, -0.01897451840341091, -0.00029764132341369987, 0.020643917843699455, -0.0006772621418349445, 0.008816517889499664, -0.006878822110593319, 0.0032512308098375797, 0.02472798526287079, -0.002099792007356882, -0.03338799625635147, -0.0017923690611496568, 0.008831423707306385, -0.0052019692957401276, 0.0003097519220318645, 0.0032493676990270615, -0.054613225162029266, 0.025845887139439583, -0.01521091628819704, 0.003703980939462781, 0.010284695774316788, -0.0037617392372339964, -0.0031450302340090275, -0.006446566432714462, -0.028797147795557976, 0.036667175590991974, -0.00898047722876072, 0.0043300059624016285, 0.010918173007667065, -0.023669704794883728, 0.01212550699710846, -0.016291555017232895, 0.01214041281491518, -0.007445225492119789, -0.008607842959463596, 0.024474594742059708, -0.007411688566207886, 0.00866746436804533, 0.02249218337237835, -0.004356090445071459, -0.00010876252054003999, 0.021881062537431717, 0.02498137764632702, 0.015099125914275646, -0.004177226219326258, 0.04948578402400017, -0.002919586608186364, 0.006774484179913998, 0.022581614553928375, -0.018482642248272896, 0.01415263582020998, -0.01708153821527958, 0.030347304418683052, -0.002781712217256427, 0.00906990934163332, -0.019183194264769554, -0.0052206008695065975, 0.0041138781234622, -0.007150844670832157, 0.006368313450366259, 0.008123419247567654, 0.0011700704926624894, 0.0050044734962284565, 0.028066786006093025, -0.020181851461529732, -0.0050305575132369995, -0.021851252764463425, -0.0049262200482189655, 0.016544945538043976, 0.003746833885088563, 0.013362651690840721, -0.012132960371673107, -0.003698391607031226, 0.005984500516206026, 0.012065885588526726, -0.015427043661475182, -0.02372932620346546, 0.0005272769485600293, 0.013936508446931839, -0.026486817747354507, -0.024549121037125587, -0.00609629089012742, 0.0002978742413688451, 0.012401256710290909, -0.006781937088817358, 0.018020575866103172, 0.0005873641930520535, 0.013452083803713322, 0.0024314362090080976, 0.00020261968893464655, 0.005596961360424757, 0.011730515398085117, -0.008004176430404186, -0.007042780984193087, 0.02352065220475197, -0.029229404404759407, -0.0034804006572812796, -0.014957524836063385, -0.0101505471393466, 0.0029251761734485626, 0.029154876247048378, -0.012684457935392857, 0.016813240945339203, 0.00164983666036278, 0.011328070424497128, -0.007232824340462685, -0.0034710848703980446, -0.0043300059624016285, -0.011857210658490658, 0.030153535306453705, -0.028215838596224785, 0.01067968737334013, 0.009390374645590782, 0.00759800523519516, 0.02639738656580448, -0.02928902581334114, -0.019078856334090233, -0.01269191037863493, -0.00023138236429076642, 0.001617231173440814, -0.012699363753199577, -0.015546286478638649, 0.005250411573797464, -0.025354010984301567, 0.0010657330276444554, -0.005190790165215731, 0.018586978316307068, -0.015337611548602581, 0.030406925827264786, -0.01879565417766571, 0.026382479816675186, 0.03908184543251991, -0.030526168644428253, 0.03616039454936981, -0.0038828453980386257, 0.01148457732051611, -0.013765096664428711, -0.037352822721004486, -0.019466394558548927, -0.007884933613240719, 0.026158900931477547, 0.02767924591898918, -0.0030891350470483303, 0.005939784459769726, -0.0009357769158668816, 0.01967507041990757, 0.031837839633226395, -0.003286631079390645, -0.008376809768378735, 0.013824718073010445, 0.01751379296183586, 0.006141006946563721, -0.0052206008695065975, -0.011402597650885582, 0.017170971259474754, 0.0024836049415171146, 0.030705034732818604, 0.036547932773828506, -0.016962295398116112, -0.0024314362090080976, 0.01208824384957552, 0.008950666524469852, 0.015859298408031464, 0.010083473287522793, 0.006480103824287653, -0.019138477742671967, -0.00604412192478776, -0.010105831548571587, 0.011380239389836788, -0.004523775540292263, -0.0017616268014535308, -0.004106425680220127, -0.019332246854901314, -0.03252348676323891, -0.012065885588526726, -0.01471903920173645, -0.015859298408031464, 0.02080787718296051, 0.011290807276964188, -0.014882998540997505, 0.006129827816039324, 0.014473101124167442, 0.002625205786898732, -0.0024314362090080976, 0.025368915870785713, 0.0017476530047133565, 0.017320023849606514, 0.00329967332072556, 0.028364893049001694, -0.011477123945951462, 0.017796995118260384, -0.004933672957122326, -0.033477429300546646, -0.005228053778409958, -0.0030909981578588486, 0.04632584750652313, 0.03273216262459755, -0.0012576393783092499, -0.028767338022589684, -0.03303026780486107, -0.008533316664397717, -0.014651965349912643, 0.0016824420308694243, 0.011275902390480042, 0.018303778022527695, -0.0016162996180355549, 0.005760920234024525, -0.0013629085151478648, -0.011477123945951462, 0.0023345514200627804, -0.012468330562114716, -0.009368016384541988, 0.005205695517361164, -0.0059807742945849895, 0.012572667561471462, -0.005041736643761396, -0.005995679646730423, 0.03133105859160423, -0.012207486666738987, 0.007743332535028458, -0.01406320370733738, -0.0040244460105896, 8.0756755778566e-05, -0.023013869300484657, 0.01620212197303772, -0.009218962863087654, -0.023923097178339958, -0.02000298723578453, 0.013526611030101776, 0.003361157840117812, -0.002731406595557928, 0.014301689341664314, -0.0016824420308694243, -0.0018016849644482136, -0.010798930190503597, 0.002971755340695381, 0.0041399626061320305, -0.01623193360865116, 0.010210169479250908, -0.004199584014713764, -0.008332094177603722, -0.008645107038319111, 0.058279942721128464, 0.0027351328171789646, 0.0019973176531493664, -0.0006702752434648573, -0.009531975723803043, -0.007355793379247189, -0.005626772064715624, 0.024966470897197723, 0.021404091268777847, -0.003504621796309948, -0.009718292392790318, -0.0028618283104151487, 0.010433749295771122, -8.774363959673792e-05, -0.017051728442311287, -0.0027034590020775795, 0.034252509474754333, 0.001438366831280291, -0.007825312204658985, 0.020822782069444656, 0.012132960371673107, 3.8318703445838764e-06, -0.005682667251676321, -0.008786707185208797, 0.0037486969958990812, 0.03577285632491112, -0.0038493082392960787, 0.013414820656180382, -0.017200781032443047, 0.017469078302383423, -0.002591668860986829, 0.008913403376936913, -0.01208824384957552, 0.006435387767851353, 0.010784025304019451, 0.002140781842172146, -0.0035847381222993135, 0.023386504501104355, -0.01108213234692812, -0.0025581317022442818, 0.012483235448598862, -0.014659417793154716, 0.02284991182386875, 0.017215685918927193, -0.010359223000705242, 0.0022413928527384996, -0.01266955304890871, -0.0033965581096708775, -0.007884933613240719, -0.017871521413326263, -0.0017765321535989642, -0.007299898192286491, 0.008384263142943382, 0.01594873145222664, -0.0027966175694018602, -0.013817265629768372, 0.0015184831572696567, 0.00038194976514205337, -0.017528699710965157, 0.013466989621520042, -0.029125066474080086, 0.0036052330397069454, -0.0032158305402845144, -0.022551804780960083, -0.009427637793123722, -0.013817265629768372, -0.005675214342772961, -0.03243405371904373, 0.02352065220475197, -0.009062456898391247, -0.019213004037737846, 0.009867345914244652, 0.01967507041990757, -0.02040543220937252, -0.008838876150548458, 0.015188558027148247, 0.01265464723110199, 0.025726644322276115, 0.02113579586148262, 0.007396783214062452, -0.004292742814868689, -0.010709498077630997, -0.001795163843780756, -0.029646754264831543, 0.024713080376386642, 0.010374127887189388, 0.008831423707306385, -0.03577285632491112, 0.003808318404480815, -0.023237450048327446, -0.013303030282258987, 0.01064242422580719, 0.01226710807532072, 0.011469671502709389, -0.00558578222990036, 0.007929649204015732, -0.003560516983270645, -0.01362349558621645, 0.020017893984913826, -0.0017513793427497149, 0.0006488487706519663, -0.00976300798356533, -0.009390374645590782, -0.0039312876760959625, -0.007109854836016893, -0.00035213903174735606, 0.019242815673351288, 0.013727833516895771, -0.004221942275762558, 0.025860793888568878, -0.0012241023359820247, -0.014689228497445583, 0.01064242422580719, -0.0033742000814527273, -0.03923089802265167, 0.001667536678723991, 0.0038902980741113424, -0.008086156100034714, -0.013765096664428711, -0.027634531259536743, 0.017469078302383423, -0.005503802560269833, -0.005746014881879091, -0.00963631272315979, 0.011730515398085117, 0.015501570887863636, -0.02219407632946968, -0.003845582017675042, -0.020032798871397972, -0.005041736643761396, 0.014406026341021061, 0.0061708176508545876, 0.0024500680156052113, 0.0016107100527733564, 0.027947543188929558, -0.009427637793123722, -0.011029963381588459, 0.013191239908337593, 0.023535557091236115, -0.030347304418683052, 0.015061862766742706, -0.0034319583792239428, 0.010471012443304062, -0.003135714214295149, -0.016619471833109856, 0.010217621922492981, 0.007750785443931818, -0.02420629933476448, 0.010344317182898521, -0.016917578876018524, 0.03791922703385353, -0.022626331076025963, 5.694311767001636e-05, -0.01904904469847679, -0.013914150185883045, -0.006964527536183596, -0.025696834549307823, 0.03294083848595619, -0.021001646295189857, -0.0009949324885383248, 0.014733945019543171, 0.0008878002990968525, -0.016619471833109856, 0.008637653663754463, 0.005384559743106365, -0.0047287242487072945, 0.023088397458195686, 0.02581607736647129, 0.011879568919539452, -0.017722468823194504, 0.007817859761416912, -0.0043225535191595554, 0.018661506474018097, -0.019958272576332092, 0.007191834505647421, 0.0013629085151478648, 0.010798930190503597, 0.00041059599607251585, -0.028171123936772346, 0.01301982905715704, -0.006990612018853426, -0.0016190942842513323, 0.008741991594433784, 0.012453424744307995, -0.019257720559835434, -0.010471012443304062, 0.032642729580402374, -0.021970495581626892, 0.00015638979675713927, 0.002528320997953415, -0.013101807795464993, -0.002530184108763933, -0.008771802298724651, -0.016366081312298775, -0.021404091268777847, 0.0016861683689057827, 0.016559850424528122, 0.00023825280368328094, 0.016172312200069427, -0.01249068882316351, 0.0035530643071979284, -0.005414370447397232, 0.011588914319872856, -0.00396855128929019, -0.015546286478638649, -0.009397827088832855, -0.016693998128175735, -0.021672388538718224, -6.876260158605874e-05, 0.008183040656149387, -0.02091221511363983, -0.03386496752500534, -0.0075644683092832565, 0.0036965282633900642, -0.030228061601519585, 0.008533316664397717, 0.006211807020008564, 0.01605306938290596, 0.007493667770177126, -0.0010061115026474, 0.01708153821527958, 0.009576691314578056, 0.011328070424497128, -0.00615218561142683, -0.009353111498057842, 0.0009287900174967945, 0.026084372773766518, 5.9796097048092633e-05, -0.001814727089367807, -0.017901333048939705, 0.022984059527516365, 0.004341185092926025, 0.009129530750215054, -0.0009940009331330657, 0.003905203426256776, 0.021702198311686516, 0.014830829575657845, -0.010143094696104527, 0.007899838499724865, -0.014249520376324654, -0.04164556413888931, -0.009740650653839111, -0.011805041693150997, 0.008078702725470066, 0.014286783523857594, -0.023967813700437546, -0.01711134985089302, 0.015933826565742493, -0.012535404413938522, -2.7481750294100493e-05, 0.010277243331074715, -0.0008314393926411867, -0.021627672016620636, -0.0034617690835148096, -0.003556790528818965, 0.010702045634388924, -0.000488616235088557, -0.0007257045363076031, -0.012736626900732517, -0.04626622423529625, 0.0041213310323655605, 0.0028431967366486788, -0.02651662938296795, -0.01177523098886013, 0.0021799083333462477, 0.01459234394133091, -0.025696834549307823, 0.008361904881894588, -0.011372786946594715, 0.01912357285618782, 0.017826806753873825, -0.010933078825473785, 0.018423020839691162, 0.008846328593790531, -0.002982934471219778, 0.013370104134082794, -0.019213004037737846, -0.015240726992487907, 0.008406620472669601, 0.03294083848595619, -0.0028804601170122623, 0.0070800441317260265, 0.008496052585542202, -0.028364893049001694, 0.0019116118783131242, -0.021240131929516792, 0.01269191037863493, -0.005436728708446026, -0.0028636916540563107, 0.0250559039413929, 0.0182888712733984, -0.010329412296414375, 0.02863318845629692, -0.01064242422580719, -0.007981818169355392, 0.026486817747354507, 0.01431659422814846, -0.005742288660258055, 0.006707410328090191, 0.0018594431458041072, -0.02146371267735958, -0.004136236384510994, -0.008346999064087868, -0.01556119229644537, 0.025368915870785713, -0.012460878118872643, 0.01982412301003933, 0.0012436656979843974, -0.00554106617346406, 0.01301982905715704, -0.0014569985214620829, 0.0023569094482809305, -0.00959904957562685, -0.00030183346825651824, -0.019242815673351288, -0.003182293614372611, -0.0027481750585138798, 4.02037039748393e-05, -0.02208973839879036, 0.026889262720942497, -0.005574603099375963, -0.002077433979138732, 0.009345658123493195, 0.000682851648889482, 0.011641083285212517, -0.004296469036489725, 0.010828740894794464, 0.002791028004139662, -0.007124760188162327, -0.02621852234005928, 0.007609184365719557, 0.010314506478607655, -0.0021389187313616276, -0.021851252764463425, 0.0035362958442419767, 0.009904609061777592, -0.023714421316981316, -0.007691164035350084, 0.001091817393898964, -0.006334776524454355, 0.007862575352191925, -0.00755328917875886, -0.019078856334090233, -0.001984275644645095, -0.0011365334503352642, 0.016559850424528122, 0.010910720564424992, -0.006819200702011585, 0.005708751268684864, 0.017245497554540634, 0.0006549041136167943, -0.0018967065261676908, 0.017782090231776237, 0.008645107038319111, -0.025100620463490486, 0.005183337721973658, 0.014443290419876575, 0.007870027795433998, 0.0029903871472924948, 0.011976453475654125, -0.018423020839691162, 0.02417648769915104, -0.0012622973881661892, -0.017975859344005585, -0.0031636618077754974, 0.001889253850094974, -0.01210314966738224, 0.016142500564455986, -0.04158594459295273, -0.000598077429458499, -0.007676258683204651, -0.016410797834396362, -0.014406026341021061, -0.01109703816473484, -0.0024947840720415115, 0.0038865716196596622, 0.012788795866072178, -0.010724403895437717, 0.0003148756513837725, 0.010232526808977127, 0.019108666107058525, -0.0005133032100275159, -0.023341787979006767, -0.002668058732524514, -0.012960207648575306, 0.0016749893547967076, 0.013370104134082794, 0.0075644683092832565, -0.005172158591449261, -0.00014567656035069376, 0.010016399435698986, -0.00558578222990036, 0.005466539412736893, -0.0027351328171789646, 0.00503801042214036, 0.01059025526046753, -0.011439860798418522, 0.007504846900701523, 0.002845059847459197, 0.017230592668056488, 0.001932106795720756, -0.002759353956207633, 0.013556421734392643, 0.019839029759168625, -0.011156659573316574, -0.023028776049613953, -0.015263084322214127, 0.021568050608038902, 0.01575496233999729, -0.007706069387495518, 0.011335523799061775, -0.01208824384957552, -0.01594873145222664, -0.002226487500593066, 0.016664188355207443, -0.01371292769908905, 0.010970341973006725, -0.010724403895437717, 0.0014011034509167075, 0.013787454925477505, 0.0012418024707585573, 0.03195708245038986, 0.03177822008728981, -0.0021184238139539957, -0.0007839285535737872, 0.006506187841296196, 0.026889262720942497, -0.012505593709647655, 0.0033928316552191973, -0.001480288221500814, 0.0014355721650645137, 0.01168579887598753, -0.01148457732051611, -0.0031040403991937637, -0.0034096003510057926, -0.017126254737377167, 0.02490684948861599, -0.008481147699058056, 0.011946642771363258, 0.0003584272344596684, -0.011626177467405796, -0.005149800796061754, -0.008995382115244865, 0.03932033106684685, 0.013362651690840721, 0.008950666524469852, 0.0020737077575176954, 0.01942167989909649, -0.016261743381619453, -0.03049635887145996, -0.04823373258113861, 0.02252199314534664, -0.010344317182898521, 0.011812495067715645, -0.02647191286087036, 0.00030998483998700976, -0.0031468933448195457, -0.006487556267529726, -0.00657326215878129, -0.006375766359269619, 0.016157405450940132, 0.0033425260335206985, -0.006614251993596554, 0.02106126770377159, -0.004423164296895266, 0.022313319146633148, 0.002205992816016078, -0.0013144661206752062, -0.0021799083333462477, 0.012878227978944778, -0.019630353897809982, 0.007750785443931818, 0.010247432626783848, 0.00608883798122406, -0.032344624400138855, 0.01016545295715332, -0.022700857371091843, -0.012960207648575306, -0.008078702725470066, 0.012155317701399326, -0.015531381592154503, -0.00377664458937943, -0.000666548905428499, 0.013168882578611374, 0.027783583849668503, -0.032791782170534134, -0.016410797834396362, 0.014704134315252304, -0.016470419242978096, -0.00709494948387146, 0.0321955680847168, 0.020211663097143173, -0.011894473806023598, -0.024787606671452522, 0.015128936618566513, -0.018154723569750786, 0.010180357843637466, 0.03210613876581192, -0.010135642252862453, -0.0030500085558742285, 0.016515133902430534, -0.014413479715585709, -0.012185128405690193, -0.000855660589877516, 0.005805636290460825, 0.01431659422814846, 0.001226897118613124, 0.011320617981255054, -0.019883744418621063, -0.006998064927756786, -0.0015715834451839328, -0.01831868290901184, -0.001995454542338848, 0.017647942528128624, -0.012997470796108246, 0.009263678453862667, 0.00499329436570406, 0.021493524312973022, 0.006446566432714462, -0.008399168029427528, 0.007467583287507296, -0.03422269970178604, 0.016798336058855057, 0.01067968737334013, -0.013906697742640972, -0.015516475774347782, -0.002081160433590412, -0.0014635196421295404, -0.021269943565130234, -0.0016116416081786156, -0.008041439577937126, 0.020524675026535988, 0.0028953654691576958, -0.020852593705058098, -0.0028189755976200104, 0.01836339943110943, 0.0017485845601186156, 0.002328961854800582, 0.0160977840423584, -0.006763305515050888, 0.007016696501523256, 0.0019712334033101797, -0.0021445080637931824, -0.012550310231745243, -0.0022413928527384996, -0.007333435118198395, -0.001636794419027865, 0.010851099155843258, -0.00032023226958699524, 0.017856616526842117, -0.008816517889499664, -0.0009893430396914482, 0.025681929662823677, 0.028215838596224785, 0.026382479816675186, -0.019391868263483047, 0.012796248309314251, -0.011395145207643509, 0.019406773149967194, 0.00855567492544651, 7.708863995503634e-05, 0.0003481798048596829, 0.008533316664397717, 0.009964230470359325, -0.04692206159234047, 0.005269043613225222, 0.015017146244645119, -0.011238638311624527, -0.0031934725120663643, 0.018586978316307068, -0.014286783523857594, -0.021374281495809555, -0.012431067414581776, -0.0005859668017365038, 0.002865554764866829, -0.008332094177603722, -0.010105831548571587, -0.012147865258157253, 0.017275307327508926, -0.011969001032412052, 0.0076017314568161964, -0.010471012443304062, -0.02113579586148262, 0.01992846094071865, -0.0041585941798985004, 0.022045021876692772, 0.02442987821996212, -0.006290060468018055, 0.021851252764463425, -0.025622308254241943, 0.001680578920058906, -0.031688787043094635, -0.009449996054172516, -0.0006045984919182956, -0.006532272323966026, 0.016738714650273323, 0.006625430658459663, 0.016977200284600258, -0.016559850424528122, -0.009278584271669388, -0.018497547134757042, 0.003979729954153299, -0.00859293807297945, 0.008913403376936913, -0.007914744317531586, -0.016992105171084404, -0.006819200702011585, -0.01310926117002964, -0.004065435845404863, -0.007206739857792854, -0.0010443065548315644, -0.004009540658444166, 0.015225821174681187, -0.013437178917229176, 0.00903264619410038, 0.003938740584999323, 0.010314506478607655, -0.010910720564424992, 0.013727833516895771, 0.008279925212264061, -0.007959459908306599, 0.0070986757054924965, 0.0006395329255610704, 0.017901333048939705, -0.0003050939994864166, -0.014420932158827782, 0.011350428685545921, 0.010880909860134125, 0.015009693801403046, -0.0025655843783169985, 0.0021053815726190805, 0.013519157655537128, -0.001976822968572378, -0.02483232319355011, 0.002097928896546364, -0.008294831030070782, -0.006092564202845097, -0.008346999064087868, 0.013593684881925583, -0.01763303577899933, 0.009718292392790318, -0.009189152158796787, -0.0006889069336466491, 0.0037132969591766596, -0.0009199399501085281, -0.010411391034722328, 0.008205398917198181, 0.008570579811930656, 0.004736177157610655, 0.040870487689971924, -0.00012774356582667679, 0.010254885070025921, -0.011462219059467316, 0.022730669006705284, -0.0015184831572696567, 0.0019153383327648044, -0.002709048567339778, -0.01854226365685463, 0.04322553426027298, -0.0032325992360711098, -0.02702341042459011, -0.03452080488204956, -0.0059807742945849895, 0.01521091628819704, 6.229973223526031e-05, -0.01670890487730503, 0.00405798340216279, 0.0051088109612464905, 0.007817859761416912, -0.007180655375123024, 0.0012678868370130658, 0.021091079339385033, -0.018899992108345032, 0.004851693287491798, 0.011231185868382454, 0.004039351362735033, 0.007884933613240719, -0.003023924073204398, -0.01331048272550106, -0.03323894366621971, -0.0008901292458176613, -0.011089584790170193, -0.006923538167029619, -0.022030116990208626, -1.480346418247791e-05, 0.01575496233999729, 0.011335523799061775, 0.00400581443682313, -0.026307953521609306, 0.0029028181452304125, -0.01353406347334385, -0.023863475769758224, -0.016544945538043976, -0.0004201447300147265, 0.0009669850114732981, 0.007109854836016893, -0.028215838596224785, -0.0020830235444009304, 0.0016777841374278069, -0.015665529295802116, -0.021732009947299957, 0.012468330562114716, -0.001313534565269947, 0.0053249383345246315, 0.003961098380386829, -0.0012371445773169398, 0.015844393521547318, 0.02211954817175865, 0.0017225001938641071, 0.0036350437439978123, 0.022790290415287018, 0.012952754274010658, 0.005675214342772961, -0.0005435796920210123, -0.011328070424497128, -0.03222538158297539, 0.00457967072725296, 0.002580489730462432, 0.0004029104020446539, -0.008078702725470066, 0.00611492246389389, 0.015046956948935986, 0.016723809763789177, -0.0030723665840923786, -0.021553145721554756, -0.016515133902430534, -0.0019880018662661314, 0.030004482716321945, -0.006211807020008564, -0.0004136236384510994, 0.018348492681980133, -0.003159935586154461, -0.011447313241660595, 0.0409599207341671, 0.0037300654221326113, 0.0018873907392844558, 0.029348647221922874, -0.01521091628819704, 0.010888362303376198, 0.0068825483322143555, -0.002573037054389715, -0.010903268121182919, -0.007728427182883024, 0.010962889529764652, -9.339137614006177e-05, -0.008205398917198181, 0.00998658873140812, 0.010381580330431461, 0.004956030752509832, 0.01067968737334013, -0.006908632814884186, -0.0003849774075206369, 0.011238638311624527, -0.008786707185208797, 0.0040691620670259, 0.016887769103050232, 0.018706222996115685, 0.0010974068427458405, -0.006468924693763256, 0.015784772112965584, -0.004117604810744524, -0.0021146973595023155, -0.00801162887364626, -0.005734835751354694, -0.005332391243427992, 0.021642576903104782, 0.007683711126446724, -0.01095543708652258, -0.008868686854839325, 0.02131466008722782, 0.00610746955499053, -0.01579967699944973, 0.012185128405690193, -0.018840370699763298, 0.00046509370440617204, -0.0006218328489921987, -0.00959904957562685, 1.3609871530206874e-05, -0.0054031917825341225, 0.009733197279274464, 0.002845059847459197, 0.010262337513267994, -0.02274557389318943, -0.008846328593790531, 0.002202266361564398, -0.0032847679685801268, 0.024966470897197723, 0.006316144485026598, 0.03195708245038986, 0.006841558497399092, 1.553126458020415e-05, 0.01821434497833252, -0.028022069483995438, 0.017424361780285835, -0.008868686854839325, 0.02405724488198757, 0.013452083803713322, -0.013869433663785458, -0.007448951713740826, -0.007441499270498753, 0.03777017444372177, -0.011029963381588459, 0.012483235448598862, -0.003335073357447982, -0.018899992108345032, 0.011492029763758183, -0.006919811479747295, 0.005820541642606258, 0.008197945542633533, -0.003370473627001047, 0.023982718586921692, -0.0026736482977867126, -0.009211510419845581, 0.002215308602899313, -0.01967507041990757, 0.007691164035350084, 0.01612759567797184, -0.019213004037737846, -0.018929801881313324, 0.01715606451034546, -0.012110602110624313, 0.00906990934163332, 0.023356692865490913, -0.017394550144672394, -0.04128783568739891, 0.015412138774991035, 0.024161582812666893, -0.0060180374421179295, 0.010947983711957932, -0.0011430544545874, -0.0051162634044885635, -0.00510135805234313, 0.0043970802798867226, -0.004650471266359091, 0.014256972819566727, -0.016798336058855057, 0.011506934650242329, 0.000411993358284235, 0.025368915870785713, 0.011939190328121185, -0.0005147006013430655, -0.024877039715647697, 0.005433002486824989, -0.0003509745583869517, 0.01256521511822939, 0.0023345514200627804, -0.0065695359371602535, -0.0017942322883754969, -0.01916828751564026, -0.010351769626140594, 0.020196758210659027, 0.007381877861917019, -0.0013610452879220247, -0.010262337513267994, -0.00912207830697298, -0.0006050643278285861, -0.01477120816707611, -0.0325532965362072, 0.014927714131772518, -0.01051572896540165, 0.018631694838404655, 0.03222538158297539, -0.010977794416248798, -0.030854087322950363, 0.02508571371436119, -0.02131466008722782, 0.0016619472298771143, -0.003379789413884282, -0.012736626900732517, 0.00048069775220938027, -0.022775383666157722, -0.010068568401038647, 0.013317936100065708, -0.014450742863118649, 0.006237891502678394, 0.00352511671371758, 0.0006311486940830946, 0.0006171748973429203, -0.02083768881857395, 0.009815176948904991, -0.01186466310173273, -0.012572667561471462, 0.01477120816707611, 0.015993447974324226, -0.0029456710908561945, -0.0232225451618433, 0.029274119064211845, 0.005216874647885561, 0.004739903379231691, 0.021329564973711967, -0.014964977279305458, -0.014614702202379704, 0.0037915499415248632, 0.006878822110593319, 0.01095543708652258, 0.0029233130626380444, 0.010575350373983383, -0.00018165902292821556, -0.0008025603019632399, 0.004248026292771101, -0.0008244524942710996, 0.003515800926834345, -0.009502165019512177, -0.0008500710828229785, -0.012058433145284653, 0.003420779248699546, -0.04161575436592102, -0.001437435275875032, -0.005455360282212496, 0.033119700849056244, -0.016261743381619453, -0.0036052330397069454, 0.011872116476297379, -0.0005165637703612447, -0.003253093920648098, 0.013243408873677254, 0.0016666051233187318, 0.0049001360312104225, 0.004948578309267759, 0.010910720564424992, -0.016813240945339203, -0.007117307744920254, 0.002181771444156766, -0.0072626350447535515, 0.01942167989909649, 0.00912207830697298, -0.018914896994829178, -0.011238638311624527, -0.011305713094770908, -0.015039504505693913, 0.019257720559835434, -0.00894321408122778, 0.0012855869717895985, -0.006543451454490423, -0.0031562091317027807, 0.015918919816613197, 0.010090925730764866, -0.0009427637560293078, -0.009092267602682114, 0.022730669006705284, -0.008831423707306385, -0.014331500045955181, -0.023982718586921692, -0.024772701784968376, -0.0043113743886351585, -0.002727680141106248, 0.006457745563238859, -0.01164853572845459, 0.004262932110577822, -0.0008216577698476613, -0.003452453063800931, 0.016321364790201187, 0.023341787979006767, -0.003979729954153299, 0.00657326215878129, 0.0030369663145393133, -0.011976453475654125, -0.001576241455040872, -0.005701298825442791, 0.011290807276964188, -0.002791028004139662, -0.008212851360440254, 0.020927120000123978, -0.02299896441400051, 0.006580714602023363, -0.012349087744951248, -0.0050305575132369995, -0.003674170235171914, -0.01367566455155611, -0.012326729483902454, 0.005377107299864292, 0.015486665070056915, -0.015017146244645119, 0.007966913282871246, 0.00352511671371758, 0.021165605634450912, -0.04945597052574158, 0.016038162633776665, -0.005965868942439556, 0.0061894492246210575, -0.013116713613271713, 0.004915041383355856, -0.01047846581786871, -0.004098972771316767, 0.01510657835751772, -0.013526611030101776, 0.004423164296895266, 0.007832764647901058, -0.02128484845161438, 0.008831423707306385, -0.024221204221248627, -0.015441949479281902, 0.006338502746075392, 0.0002536239626351744, -0.013101807795464993, 0.011410050094127655, -0.00600685877725482, -0.00329594686627388, -0.008883592672646046, 0.006100017111748457, 0.007788048591464758, 0.03207632526755333, -0.0011374650057405233, -0.013392462395131588, 0.008965571410953999, 0.0014215983683243394, 0.004341185092926025, 0.01547176018357277, -0.009405279532074928, -0.0009232005104422569, 0.005857804790139198, -0.0017672162503004074, -0.03884335979819298, -0.007586826104670763, -0.022328224033117294, 0.03663736581802368, 0.02674020826816559, 0.013027281500399113, -0.015516475774347782, 0.005678940564393997, 0.004695187322795391, 0.01934715174138546, -0.006834106054157019, 0.009092267602682114, -0.01064242422580719, 0.011104490607976913, -0.0010228800820186734, -0.015263084322214127, -0.012721721082925797, 0.0012753395130857825, -0.01977940835058689, 0.009844987653195858, 0.013906697742640972, -0.004915041383355856, -0.0031413037795573473, -0.0005007268046028912, -0.015054409392178059, -0.00554106617346406, 0.005775825586169958, 0.00505664199590683, 0.006774484179913998, -0.0026587429456412792, -0.011834852397441864, -0.013936508446931839, -0.004594576079398394, -0.026352670043706894, 0.02387838065624237, 0.0008752238936722279, 0.01111939549446106, -0.00797436572611332, -0.009613954462110996, 0.001804479630663991, -0.009822629392147064, 0.006159638520330191, 0.020092420279979706, 0.011022510938346386, -0.011000152677297592, 0.0059994058683514595, 0.008056345395743847, 0.03565361350774765, 0.003905203426256776, 0.036667175590991974, 0.007206739857792854, -0.021895967423915863, -0.011887021362781525, 0.0032978099770843983, -0.004676555749028921, -0.019868839532136917, -0.012632288970053196, 0.015322706662118435, 0.005902520846575499, 0.02372932620346546, 0.00011015989730367437, 0.012908038683235645, -0.010620065964758396, 0.01450291182845831, -0.0008682369953021407, 0.005090178921818733, -0.012893132865428925, -0.0008211919921450317, 0.009092267602682114, 0.01177523098886013, 0.009807724505662918, 0.007434046361595392, -0.010441201739013195, -0.01623193360865116, 0.00459830230101943, -0.0018659642664715648, -0.008041439577937126, -0.01590401493012905, 0.007020422723144293, 0.007899838499724865, 0.006245344411581755, 0.01212550699710846, -0.012453424744307995, 0.002099792007356882, 0.005533613730221987, 0.0017290213145315647, 0.0016256154049187899, -0.01007602084428072, -0.019078856334090233, 0.012036074884235859, 0.00019621504179667681, -0.01319869328290224, 0.0065881675109267235, 0.007169476244598627, 0.004192131571471691, -0.005973321385681629, -0.010143094696104527, -0.013153976760804653, 0.01148457732051611, 0.0006781936972402036, -0.02498137764632702, 0.021240131929516792, 0.016559850424528122, -0.008406620472669601, -0.004784619435667992, -0.0026512902695685625, 0.030451642349362373, 0.015456854365766048, -0.011983906850218773, 0.002962439553812146, 0.005138621665537357, 0.007527204696089029, -0.005395738873630762, 0.0028282913845032454, 0.007627815939486027, -0.015084220096468925, 0.015620813705027103, 0.022775383666157722, -0.008741991594433784, -0.010463560000061989, -0.025115525349974632, -0.006204354576766491, 0.009494711644947529, 0.01126099657267332, 0.025980036705732346, -0.0050044734962284565, 0.003035103203728795, -0.015017146244645119, 0.017677752301096916, -0.001576241455040872, 0.01477120816707611, 0.013765096664428711, -0.0017066632863134146, -0.017215685918927193, 0.020316001027822495, -0.008354452438652515, 0.008801613003015518, 0.0074713099747896194, -0.011201375164091587, -0.0061708176508545876, 0.00302206096239388, -0.013824718073010445, 0.0022618877701461315, 0.017275307327508926, -0.027232086285948753, 0.023997623473405838, 0.005216874647885561, 0.03174841031432152, 0.005813088733702898, -0.0004797661677002907, -0.03917127475142479, 0.005529887042939663, -0.011395145207643509, 0.007255182135850191, -0.013452083803713322, 0.007404235657304525, 0.0006870437646284699, -0.005444181151688099, 0.002532047452405095, -0.02438516356050968, -0.002627069130539894, -0.0013880613259971142, 0.0020662550814449787, 0.0171858761459589, 0.0045386808924376965, 0.018914896994829178, 0.008123419247567654, -0.007646447513252497, -0.003504621796309948, -0.02548815868794918, -0.01217767596244812, 0.002571173943579197, 0.007065138779580593, 0.01113430131226778, -0.03484872356057167, 0.009025192819535732, 0.02574155107140541, 0.012632288970053196, 0.029199592769145966, -0.009897156618535519, -0.015635719522833824, -0.005272769834846258, 0.009658670984208584, 0.008898497559130192, -0.01803548075258732, 0.006424208637326956, 0.004426890984177589, 0.013161429204046726, 0.019004330039024353, -0.007463857065886259, 0.003953645937144756, 0.03294083848595619, -0.009666123427450657, 0.013116713613271713, -0.018572073429822922, -0.00021007236500736326, 0.02384857088327408, -0.004266658332198858, -0.0026009846478700638, 0.025577591732144356, -0.013459536246955395, 0.004002088215202093, -0.004747355822473764, 0.012572667561471462, 0.016813240945339203, -0.01766284741461277, 0.023744232952594757, 0.0022823826875537634, -0.00894321408122778, 0.030079009011387825, -0.0101505471393466, -0.008600390516221523, 0.016172312200069427, -0.0010033168364316225, 0.020897310227155685, 0.0022525719832628965, -0.01166344154626131, 0.007258908357471228, 0.014815923757851124, -0.008145777508616447, -0.01945148967206478, -0.009218962863087654, -0.009904609061777592, 0.014160088263452053, -0.0025264578871428967, 0.02080787718296051, -0.023982718586921692, 0.0032102412078529596, -0.002375541254878044, 0.0053063067607581615, -0.01462960708886385, 1.3813655641570222e-05, -0.030153535306453705, 0.009815176948904991, -0.003433821490034461, -0.020509770140051842, -0.024221204221248627, -0.003504621796309948, 0.019615449011325836, 0.005764646455645561, 0.02191087417304516, -0.0014318458270281553, 0.02143390290439129, 0.0016666051233187318, -0.005373381078243256, -0.01620212197303772, 0.005313759669661522, 0.0077656907960772514, -0.007966913282871246, 0.005380833521485329, 0.0035400220658630133, 0.0213891863822937, -0.005190790165215731, -0.008935760706663132, 0.010925626382231712, -0.041049350053071976, 0.02289462648332119, 0.0017653531394898891, -0.0021053815726190805, 0.006439113989472389, -0.0026904167607426643, -0.015203462913632393, 0.0026177531108260155, -0.013042186386883259, 0.023252354934811592, 0.009166793897747993, -0.004907588474452496, 0.004352364223450422, 0.005373381078243256, -0.004754808731377125, -0.02153823897242546, -0.009397827088832855, 0.014942619949579239, 0.0038865716196596622, 0.047160547226667404, 0.02699360065162182, 0.01989865116775036, 0.0003591259301174432, 0.00797436572611332, -0.018765844404697418, 0.013414820656180382, -0.014130277559161186, -0.0008747581159695983, -0.013556421734392643, 0.008510958403348923, -0.010344317182898521, 0.028394702821969986, 0.02823074534535408, -0.018631694838404655, 0.015486665070056915, 0.004922493826597929, 0.01120882760733366, 0.005354749038815498, 0.01806529238820076, -0.004341185092926025, -0.011723062954843044, -0.022372940555214882, -0.004285289905965328, -0.0023215091787278652, 0.0013414820423349738, -0.006658968050032854, 0.003012745175510645, -0.006476377137005329, -0.01249068882316351, 0.035564180463552475, 0.0035102113615721464, -0.011335523799061775, 0.006819200702011585, 5.8951849496224895e-05, 0.009964230470359325, 0.02384857088327408, 0.01055299211293459, 0.016768526285886765, 0.007728427182883024, -0.016887769103050232, -0.01582948863506317, 0.024951566010713577, -0.026158900931477547, -0.01605306938290596, 0.013474442064762115, 0.014212257228791714, 0.0026512902695685625, -0.004441796336323023, 0.006662694271653891, 0.021091079339385033, 0.01547176018357277, 0.00451632309705019, -0.019153382629156113, -0.01129825972020626, -0.011387691833078861, 0.014912809245288372, -0.018959613516926765, -0.0034151896834373474, -0.015039504505693913, -0.015740055590867996, 0.014301689341664314, 0.015046956948935986, 0.027858110144734383, -0.005198243074119091, 0.017498888075351715, 0.010158000513911247, 0.00277425954118371, 0.0019069539848715067, -0.011283354833722115, 0.012677005492150784, -0.026904167607426643, -0.0014402300585061312, -0.002949397312477231, 0.010381580330431461, -0.02113579586148262, -0.04236102104187012, 0.013690569438040257, -0.00912207830697298, 0.007009243592619896, -0.011790136806666851, 0.007698616478592157, 0.015173652209341526, 0.004866598639637232, -0.022656140848994255, -0.006621704436838627, -0.0021370553877204657, 0.00023988308385014534, 0.005183337721973658, 0.0072626350447535515, -0.03082427754998207, -0.003653675550594926, 0.008823971264064312, -0.004266658332198858, 0.020420338958501816, -0.003221420105546713, -0.007240276783704758, -0.000977232470177114, 0.005552245303988457, 0.01660456694662571, -0.004326279740780592, 0.00401326734572649, -0.0023047407157719135, 0.025324199348688126, -0.007855122908949852, -0.025219863280653954, -0.00596214272081852, -0.014897903427481651, -0.012252203188836575, 0.005488897208124399, -0.02827546000480652, 0.00017374055460095406, -0.002444478450343013, -0.006718589458614588, 0.0040691620670259, 0.01056789793074131, -0.0014020351227372885, -0.011007605120539665, 0.009837535209953785, 0.008220303803682327, -0.016947390511631966, 0.00017711755936034024, 0.009099720045924187, 0.023133112117648125, -0.004862872418016195, -0.023058585822582245, -0.000829110445920378, 0.00563049828633666, -0.03452080488204956, 0.000954874383751303, -0.0006609593983739614, 0.003938740584999323, -0.00554106617346406, 0.010448655113577843, 0.0032847679685801268, -0.0057907309383153915, 0.025204956531524658, -0.00950961746275425, 0.016142500564455986, -0.01703682169318199, -0.02395290695130825, 0.018825465813279152, -0.0057236566208302975, -0.006532272323966026, -0.014950072392821312, -0.005574603099375963, -0.012557762674987316, 0.010359223000705242, 0.013392462395131588, -0.005343570373952389, 0.007683711126446724, -0.0016041889321058989, -0.001984275644645095, 0.0008999108686111867, 0.0004904794041067362, 0.013489346951246262, 0.0014234614791348577, 0.01927262544631958, -0.01934715174138546, -0.008183040656149387, 0.0006278881337493658, 0.0071657500229775906, 0.011954096145927906, 0.018437925726175308, 0.025681929662823677, -0.004061709623783827, -0.012781343422830105, 0.022775383666157722, 0.002979208016768098, -0.016440607607364655, 0.011059774085879326, -0.004400806501507759, 0.00011604052997427061, 0.001920927781611681, -0.0026009846478700638, 0.021404091268777847, 0.0017374055460095406, -0.010023851878941059, -0.015009693801403046, 0.010426296852529049, 0.020688634365797043, 0.023252354934811592, 0.0292592141777277, 0.017320023849606514, -0.028066786006093025, 0.027619624510407448, 0.00012052377860527486, 0.011387691833078861, 0.011439860798418522, 0.016813240945339203, -0.014338952489197254, 0.019466394558548927, -0.014428384602069855, -0.015784772112965584, -0.016172312200069427, 0.01579967699944973, 0.00456103915348649, 0.004493964836001396, -0.020435243844985962, -0.009040098637342453, 0.010210169479250908, -0.0021016551181674004, 0.004162320867180824, -0.005406918004155159], "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0": [-0.013032162562012672, -0.006665064953267574, 0.0006268101278692484, -0.00973883643746376, -0.01594126783311367, -0.04391101747751236, 0.031427741050720215, 0.005018401890993118, -0.022520078346133232, 0.01048375479876995, 0.029545839875936508, 0.034062404185533524, -0.006026003044098616, -0.029545839875936508, -0.05717841535806656, 0.01910129189491272, -0.01311841607093811, 0.018317166715860367, 0.004261720925569534, -0.015086570754647255, 0.07922802120447159, 0.007213952485471964, -0.05024674907326698, 0.04588701203465462, 0.01302432082593441, -0.001077192137017846, -0.010193628259003162, -0.016952788457274437, -0.030690664425492287, 0.008625377900898457, 0.02887149341404438, 0.011471753008663654, 0.021030239760875702, 0.004740037489682436, 0.0044146254658699036, -0.04190365597605705, -0.023617854341864586, 0.006171065848320723, -0.0033050880301743746, -0.010060327127575874, 0.01176972035318613, 0.028244193643331528, 0.012773401103913784, 0.005512400530278683, 0.0007890260894782841, -0.008037284016609192, -0.019242433831095695, -0.006759159732609987, 0.013322288170456886, -0.010334771126508713, -0.004877259489148855, -0.022959187626838684, -0.015415903180837631, 0.03895534574985504, 0.01872491091489792, -0.01814465969800949, 0.03820258378982544, 0.12100621312856674, 0.0035128812305629253, -0.0403040386736393, 0.001990698045119643, -0.04682796075940132, -0.011118896305561066, 0.005253639537841082, -0.029843809083104134, -0.0016437226440757513, -0.024919502437114716, 0.0403040386736393, -0.028604891151189804, 0.017219390720129013, 0.030580885708332062, 0.042311400175094604, -0.03591293841600418, 0.028118733316659927, -0.01894446648657322, 0.0023504155687987804, 0.021688904613256454, -0.012428386136889458, 0.037073444575071335, 0.009025282226502895, 0.012052006088197231, -0.0007615817012265325, 0.004794925916939974, -0.012836131267249584, 0.027773717418313026, 0.0020779320038855076, -0.047957103699445724, -0.03842213749885559, -0.022410301491618156, -0.01615298166871071, 0.004810608457773924, 0.036822523921728134, -0.01524339523166418, -0.011228674091398716, -0.013565367087721825, 0.006649382412433624, -0.02716209925711155, 0.008005918934941292, 0.013079210184514523, 0.02487245388329029, 0.01783100888133049, 0.02833828702569008, -0.04127635434269905, 0.025389976799488068, -0.025374293327331543, -0.029075365513563156, 0.03911216929554939, 0.02208096720278263, 0.009338932111859322, 0.0016113774618133903, 0.010334771126508713, -0.012020641006529331, -0.020998874679207802, 0.01300863828510046, -0.03487789258360863, 0.002944390522316098, -0.019665861502289772, -0.040209945291280746, 0.0033697783946990967, -0.010656262747943401, 0.010844452306628227, -0.0061044152826070786, 0.027946224436163902, -0.02139093726873398, -0.006590573117136955, 0.031553201377391815, -0.03305872157216072, 0.028197145089507103, 0.01310273353010416, 0.01167562510818243, 0.008797885850071907, -0.03032996691763401, 0.018771959468722343, 0.005786844529211521, 0.019885417073965073, 0.02325715683400631, 0.04071178659796715, 0.06774842739105225, 0.022676903754472733, 0.029451746493577957, -0.03318418189883232, -0.050591763108968735, -0.019869735464453697, 0.003971594385802746, 0.019430624321103096, -0.009048805572092533, -0.04638885334134102, 0.018489673733711243, -0.04842757806181908, 0.002468034392222762, -0.048176657408475876, -0.03374875336885452, 0.016356853768229485, -0.0006439628778025508, 0.039394453167915344, -0.05739796906709671, 0.002583692781627178, 0.05241093412041664, -0.033842846751213074, 0.022692585363984108, 0.02775803580880165, -0.06044037640094757, -0.0036501032300293446, -0.007108095567673445, 0.011581530794501305, 0.02474699355661869, 0.008915504440665245, 0.00812353752553463, -0.042468223720788956, 0.012428386136889458, 0.03578747808933258, 0.018693547695875168, 0.019242433831095695, -0.018521038815379143, -0.02474699355661869, -0.039645373821258545, 0.03512881323695183, 0.03600703179836273, 0.02012065425515175, 0.006261240225285292, 0.011503118090331554, 0.014592571184039116, 0.017188025638461113, -0.011361975222826004, -0.028604891151189804, -0.0025856532156467438, 0.0411195307970047, 0.0399903878569603, 0.021845730021595955, 0.008868456818163395, -0.0011477633379399776, -0.02043430507183075, 0.02179868333041668, 0.03603839874267578, 0.008766520768404007, -0.055986545979976654, 0.027773717418313026, 0.008970392867922783, -0.02142230235040188, -0.00177114293910563, 0.004987036809325218, -0.042687781155109406, 0.008688108064234257, 0.06574106216430664, -0.014412222430109978, 0.02360217086970806, -0.008029443211853504, -0.01758008822798729, 0.008068649098277092, 0.020544081926345825, 0.037010714411735535, -0.014318128116428852, -0.00727276224642992, -0.009150741621851921, -0.02353944070637226, 0.025876134634017944, -0.02998495101928711, -0.018630817532539368, -0.020136337727308273, -0.020732272416353226, -0.01071115117520094, -0.03349783271551132, 0.006935588084161282, -0.04896078258752823, -0.03798303008079529, -0.005100734997540712, 0.0038245711475610733, 0.0024503914173692465, -0.008350933901965618, 0.02198687382042408, 0.031615931540727615, -0.0043558161705732346, 0.00953496340662241, -0.023978551849722862, -0.008225474506616592, 0.02595454640686512, 0.045165617018938065, 0.0036912697833031416, -0.028855809941887856, -0.036634333431720734, 0.019085610285401344, -0.0010134819895029068, -0.030769076198339462, -0.01100911945104599, 0.012044164352118969, 0.006053447257727385, -0.048019833862781525, -0.00486941821873188, 0.027742352336645126, 0.029106730595231056, 0.02220642752945423, 0.018411261960864067, 0.010311247780919075, 0.01069546863436699, -0.02363353595137596, -0.006563128437846899, 0.034564241766929626, 0.0076334597542881966, -0.017125295475125313, -0.03296462818980217, -0.02614273689687252, -0.02440197952091694, -0.013941747136414051, -0.02034020982682705, -0.0012800844851881266, -0.011134578846395016, 0.025374293327331543, -0.01767418347299099, 0.01761145330965519, 0.04416193440556526, -0.006696430034935474, 0.0003788305330090225, 0.012585210613906384, 0.007382539566606283, 0.0008135300013236701, -0.004297006409615278, -0.01817602477967739, -0.001604516408406198, -0.019697226583957672, -0.006335732527077198, 0.029389016330242157, -0.06680747121572495, 0.04604383558034897, 0.017125295475125313, -0.017658501863479614, 0.03763801231980324, 0.007903982885181904, 0.006586652249097824, 0.012757718563079834, -0.04152727499604225, -0.007931427098810673, 0.02440197952091694, 0.017156660556793213, 0.01624707505106926, -0.01521203014999628, -0.007429587189108133, 0.019665861502289772, -0.06417281180620193, -0.005194830242544413, -0.006331811659038067, -0.03641477972269058, -0.017344851046800613, -0.02167322300374508, -0.017156660556793213, 0.05746069923043251, 0.0004312689125072211, 0.022347571328282356, -0.01684301160275936, 0.018332848325371742, 0.01082092896103859, 0.03287053108215332, -0.013424225151538849, 0.025421341881155968, -0.030596569180488586, -0.02043430507183075, -0.003028683830052614, -0.013675144873559475, -0.02617410197854042, -0.04356599971652031, -0.03650887310504913, 0.017438946291804314, 0.014075049199163914, -0.042813241481781006, 0.04425603151321411, 0.0408058799803257, -0.015313967131078243, -0.00413234019652009, -0.018991515040397644, 0.010248517617583275, -0.04369146004319191, -0.02347671054303646, -0.022990552708506584, -0.053006868809461594, -0.005810368340462446, -0.012177465483546257, -0.021532081067562103, -0.05153271555900574, -0.06599198281764984, 0.01426323875784874, 0.007598173804581165, 0.009895660914480686, 0.037010714411735535, -0.039676740765571594, -0.03550519421696663, 0.004512641113251448, -0.05234820395708084, -0.01941494271159172, -0.017360534518957138, -0.03835940733551979, 0.03509744629263878, 0.0008532263454981148, 0.0007155142957344651, 0.0014839570503681898, 0.037292998284101486, -0.005747638177126646, 0.008884139358997345, -0.03848486766219139, -0.028244193643331528, 0.029969267547130585, -0.00959769356995821, -0.0400531180202961, -0.00548103591427207, 0.0028836207929998636, 0.0023268917575478554, -0.0022249554749578238, -0.003185509005561471, 0.036822523921728134, 0.03296462818980217, 0.016200028359889984, 0.00945655070245266, -0.0022210348397493362, 0.031333647668361664, 0.0014016239438205957, 0.00016209340537898242, 0.004983116406947374, -0.01684301160275936, 0.023210108280181885, 0.01175403781235218, -0.013753557577729225, 0.01169130764901638, -0.0052889250218868256, 0.014718031510710716, -0.06373370438814163, -0.016921423375606537, 0.05833892151713371, -0.03293326124548912, 0.024072647094726562, 0.010170104913413525, 0.01071115117520094, 0.005857415962964296, -0.030972948297858238, 0.03249415010213852, 0.02868330292403698, -0.011652101762592793, 0.03559928759932518, 0.011612895876169205, -0.008703790605068207, -0.009291884489357471, 0.007958871312439442, 0.022394618019461632, -0.021092969924211502, 0.011165943928062916, 0.014576888643205166, 0.015008158050477505, 0.045071519911289215, -0.017360534518957138, 0.00780596723780036, -0.0020446067210286856, 0.017093930393457413, 0.015337490476667881, 0.006198510527610779, -0.0013163503026589751, -0.009511440061032772, 0.02331988513469696, 0.03782620280981064, -0.01820738986134529, 0.006174986716359854, 0.0005015951464883983, -0.017250755801796913, -0.012938067317008972, 0.00424211798235774, 0.015439426526427269, -0.009331091307103634, 0.00235629640519619, -0.02763257548213005, 0.02167322300374508, -0.02564089745283127, 0.04679659754037857, 0.009864295832812786, 0.002115177921950817, -0.0019848172087222338, 0.01811329461634159, 0.021312525495886803, 0.012483274564146996, 0.00020203477470204234, 0.0011056166840717196, -0.008539124391973019, -0.0009267380810342729, 0.010397501289844513, 0.010428866371512413, -0.010021121241152287, 0.051030874252319336, 0.005927986931055784, 0.015839330852031708, -0.010381818749010563, -0.02204960212111473, -0.02626819722354412, -0.039645373821258545, 0.017046883702278137, 0.017940785735845566, -0.00013526160910259932, 0.044946059584617615, 0.002495478605851531, 0.008617537096142769, 0.010969912633299828, -0.03641477972269058, 0.02363353595137596, -0.014796444214880466, -0.02369626611471176, -0.02763257548213005, -0.036791156977415085, -0.004065689630806446, 0.02300623618066311, 0.0413077212870121, 0.04177819564938545, -0.014412222430109978, -0.01801919937133789, -0.011636419221758842, 0.02595454640686512, 0.03575611487030983, 0.0023268917575478554, 0.022723950445652008, -0.0416840985417366, 0.02077932097017765, -0.023915821686387062, -0.017595771700143814, -0.01612161658704281, 0.003095334628596902, 0.0015417863614857197, 0.008429346606135368, 0.03399967402219772, 0.0078020463697612286, -0.04369146004319191, 6.62830934743397e-05, -0.019493354484438896, -0.002532724756747484, 0.0004930187715217471, -0.00826468039304018, 0.024135375395417213, 0.014749396592378616, -0.004532244056463242, -0.00034697543014772236, -0.013871176168322563, -0.017046883702278137, 0.00835877563804388, 0.014623936265707016, 0.03798303008079529, -0.02043430507183075, 0.003540325677022338, -0.014459270052611828, 0.03541109710931778, 0.007010079920291901, -0.030031997710466385, 0.02040293999016285, 0.019650179892778397, 0.011016960255801678, 0.003924547228962183, 0.009142900817096233, -0.008891981095075607, -0.0026797482278198004, 0.02849511243402958, -0.016639137640595436, -0.03011041134595871, -0.019807005301117897, 0.0015711910091340542, -0.010954230092465878, -0.02830692194402218, -0.0007860856130719185, 0.015870695933699608, 0.004685148596763611, -0.002797367051243782, -0.012789083644747734, -0.02877739816904068, 0.015313967131078243, -0.003828491782769561, 0.003769682254642248, -0.04366009682416916, -0.001333993161097169, -0.015862854197621346, -0.008891981095075607, -0.015117935836315155, -0.003987276926636696, 0.011471753008663654, -0.01085229404270649, -0.008931186981499195, 0.005065449513494968, -0.03541109710931778, 0.01314978115260601, 0.023931503295898438, -0.0012536202557384968, -0.017188025638461113, 0.03832804411649704, 0.0012114736018702388, -0.019650179892778397, 0.0208106841892004, 0.01646663062274456, 0.0033109690994024277, 0.03801439329981804, -0.030674980953335762, 0.000757661066018045, 0.024794042110443115, -0.03594430163502693, -0.025813404470682144, -0.03327827528119087, 0.02161049284040928, -0.013722192496061325, 0.005563369020819664, -0.0021622255444526672, -0.03207072243094444, -0.0209675095975399, 0.007378619164228439, 0.01289886049926281, -0.005900542717427015, 0.019791321828961372, 0.006418065633624792, -0.0024797962978482246, -0.025750674307346344, 0.030471108853816986, -0.028887175023555756, 0.01518066506832838, 0.010813087224960327, 0.0005175226833671331, 0.03001631610095501, 0.019571766257286072, -0.01181676797568798, -0.0027699226047843695, -0.02281804569065571, -0.02586045116186142, -0.005916225258260965, -0.008052966557443142, 0.028071684762835503, -0.04140181466937065, 0.0045832120813429356, -0.015729553997516632, -0.0036442221608012915, 0.02294350601732731, -0.028275558724999428, -0.02477835863828659, -0.016294123604893684, -0.013675144873559475, 0.015039523132145405, 0.04883532226085663, 0.01891310140490532, 0.013612414710223675, -0.008852774277329445, 0.023461028933525085, -0.02452743984758854, -0.021845730021595955, 0.03287053108215332, -0.00031781577854417264, 0.003928467631340027, 0.01885037124156952, 0.012883178889751434, 0.003853975795209408, -0.020387256518006325, -0.005194830242544413, -0.0024562724865972996, 0.025970229879021645, -0.019775640219449997, -0.0021837889216840267, -0.01432596892118454, -0.01656072586774826, 0.017188025638461113, -0.01551783923059702, -0.0007052226574160159, -0.0067434776574373245, 0.00488510075956583, 0.002887541428208351, 0.01321251131594181, -0.024166740477085114, -0.011236514896154404, -0.02179868333041668, 0.021563446149230003, -0.05253639444708824, 0.04284460470080376, 0.0024170661345124245, 0.024605851620435715, -0.03349783271551132, 0.02030884474515915, 0.03904943913221359, 0.009189948439598083, -0.023461028933525085, -0.026566164568066597, -0.012820448726415634, 0.04369146004319191, -0.009166424162685871, 0.0068454137071967125, -0.003703031688928604, -0.0006660164217464626, -0.018552403897047043, 0.034595608711242676, 0.008758679032325745, -0.026754355058073997, -0.01602752134203911, -0.0030188823584467173, 0.0014271080726757646, -0.013879017904400826, 0.01881900615990162, 0.015706028789281845, -0.027428703382611275, -0.014122096821665764, -0.0009502618340775371, -0.015125776641070843, 0.015149300917983055, 0.019179703667759895, -0.00304632680490613, 0.006418065633624792, 0.010671945288777351, 0.007198269944638014, -0.003242358099669218, -0.0022602411918342113, -0.03346646577119827, -0.005528083071112633, 0.02979676052927971, 0.01795646920800209, 0.005210512317717075, 0.015321807935833931, -0.0015917742857709527, 0.03189821541309357, 0.012059846892952919, -0.0008164704777300358, -0.025719309225678444, 0.003940229769796133, -0.02303760126233101, 0.018223071470856667, 0.004512641113251448, -0.020732272416353226, -0.007441348861902952, 0.0019152259919792414, -0.002560168970376253, -0.013973112218081951, -0.021877095103263855, -0.03813985362648964, 0.006057367660105228, 0.00846855342388153, -0.0028189304284751415, -0.01656072586774826, 0.03274507075548172, 0.0026111372280865908, -0.02167322300374508, 0.014647460542619228, 0.00031683561974205077, 0.0052026710473001, 0.019054245203733444, 0.017501676455140114, -0.017423264682292938, 0.004418545868247747, -0.02725619450211525, 0.02074795588850975, -0.014255397953093052, -0.050466302782297134, -0.0013575168559327722, 0.03503471612930298, -0.039959024637937546, 0.03848486766219139, 0.021234111860394478, -0.010428866371512413, -0.0009360495605506003, 0.022567125037312508, 0.01627844013273716, -0.025719309225678444, 0.01594126783311367, 0.03387421369552612, -0.00047341565368697047, 0.017203709110617638, -0.012608734890818596, 0.03230596333742142, 0.008147061802446842, -0.021249795332551003, 0.010060327127575874, 0.036602966487407684, -0.002483716933056712, 0.012420544400811195, -0.03261961042881012, -0.029718348756432533, 0.01415346097201109, -0.0014790563145652413, -0.006002479232847691, -0.01427892129868269, 0.008774361573159695, -0.010240675881505013, -0.0044263871386647224, -0.0015506077324971557, 0.0017260557506233454, -0.014098572544753551, -0.0033756594639271498, -0.003314889734610915, 0.018630817532539368, 0.01779964379966259, -0.007319809403270483, -0.009558487683534622, -0.04685932770371437, 0.026252513751387596, -0.02211233228445053, -0.01811329461634159, -0.0006527843070216477, 0.024605851620435715, -0.03134932741522789, -0.02582908608019352, -0.010413183830678463, 0.025076325982809067, -0.004783164244145155, 0.042060479521751404, 0.010954230092465878, 0.016105933114886284, 0.0016652860213071108, 0.039927657693624496, 0.012773401103913784, -0.010687627829611301, 0.020324528217315674, -0.025938864797353745, 0.01181676797568798, -0.027710987254977226, 0.0013761399313807487, 0.03197662904858589, -0.024794042110443115, -0.014686666429042816, -0.003820650512352586, 0.03754391893744469, -0.015282602049410343, 0.027334608137607574, 0.04215457662940025, -0.011032642796635628, 0.011683466844260693, -0.006198510527610779, 0.010272040963172913, 0.013126256875693798, -0.0008473453926853836, -0.01434165146201849, -0.0016829288797453046, -0.04629475623369217, -0.0409940704703331, 0.006351414602249861, -0.03359192609786987, -0.004238197114318609, -0.031176822260022163, 0.02341398037970066, 0.006653303280472755, -0.012397021055221558, 0.014553365297615528, -0.004736116621643305, -0.021281160414218903, -0.009934867732226849, -0.010209310799837112, -0.0028444144409149885, 0.0030835727229714394, 0.003999039065092802, -0.030894536525011063, 0.01630980521440506, 0.029624253511428833, 0.0016927304677665234, -0.03004768118262291, 0.02960857003927231, 0.026127055287361145, -0.019430624321103096, 0.00016625906573608518, -0.01950903795659542, -0.024072647094726562, 0.00592406652867794, -0.019885417073965073, -0.0008002978865988553, 0.02747575007379055, -0.0004177917435299605, 0.02440197952091694, -0.042719144374132156, 0.007539364509284496, -0.025546802207827568, 0.017438946291804314, 0.02716209925711155, 0.02046567015349865, -0.010718992911279202, 0.006414144765585661, -0.01783100888133049, 0.019932465627789497, -0.007108095567673445, 0.017266439273953438, 0.05523378401994705, -0.027365973219275475, 0.01080524642020464, -0.0051713064312934875, 0.00951928086578846, -0.009103694930672646, -0.00939382053911686, 0.02360217086970806, -0.012459751218557358, -0.0034952384885400534, -0.0011967711616307497, 0.016733232885599136, 0.0025993753224611282, 0.036979347467422485, 0.0006792485364712775, -0.03147478774189949, -0.026503434404730797, 0.013063527643680573, 0.005167385563254356, -0.0024895977694541216, 0.016019679605960846, -0.005688828881829977, 0.012938067317008972, 0.03782620280981064, 0.029561523348093033, -0.03343510255217552, -0.03553655743598938, 0.013667304068803787, -0.009127218276262283, 0.02778940089046955, -0.04569882154464722, -0.021077288314700127, -0.022582808509469032, 0.005931907799094915, 0.017344851046800613, -0.0005532983923330903, 0.010428866371512413, -0.012451909482479095, -0.015313967131078243, -0.03255688026547432, -0.014098572544753551, -0.00951928086578846, 0.009158583357930183, -0.008790044113993645, -0.0015711910091340542, -0.0031149378046393394, 0.02865193784236908, -0.009887820109724998, 0.006280843634158373, -0.00592406652867794, -0.04961944743990898, 0.015125776641070843, -0.02030884474515915, -0.0020798922050744295, 0.013016480021178722, 0.03252551704645157, 0.00815490260720253, 0.040021754801273346, -0.03337237238883972, -0.004700831137597561, 0.007986316457390785, -0.01169130764901638, -0.007515840698033571, -0.015447268262505531, 0.013385018333792686, -0.01627844013273716, 0.015862854197621346, -0.010036803781986237, -0.03365465626120567, 0.01770554855465889, 0.028824444860219955, 0.006759159732609987, 0.0037324363365769386, 0.006767001003026962, 0.012342131696641445, -0.04892941936850548, -0.019603131338953972, -0.034250590950250626, 0.025452706962823868, -0.006704271305352449, 0.005630019586533308, -0.0012163743376731873, 0.0075864121317863464, 0.03644614294171333, 0.02049703523516655, 0.02043430507183075, -0.0021916301921010017, 0.004700831137597561, 0.047925736755132675, 0.006049526389688253, 0.008633219636976719, -0.004673386923968792, -0.006708191707730293, -0.017078248783946037, -0.015125776641070843, 0.03125523403286934, 0.02871466800570488, 0.017015518620610237, -0.023210108280181885, 0.003493278054520488, -0.01820738986134529, -0.005673146340996027, 0.011840292252600193, 0.014867015182971954, -0.02430788427591324, 0.008147061802446842, 0.017391899600625038, 0.0013143899850547314, 0.039927657693624496, -0.02328852005302906, 0.009652581997215748, -0.0009919184958562255, -0.01932084746658802, -0.0022680824622511864, -0.01304000336676836, -0.0018466149922460318, 0.02623683214187622, -0.021171383559703827, 0.0020602892618626356, -0.027209147810935974, 0.0019485513912513852, 0.010938547551631927, -0.026879815384745598, -0.01181676797568798, -0.0012987075606361032, 0.03261961042881012, -0.023461028933525085, 0.02344534546136856, 0.018677864223718643, 0.007386459968984127, 0.009817248210310936, 0.02183004841208458, 0.023084647953510284, -0.013361494988203049, 0.0037324363365769386, 0.008546965196728706, -0.006672906223684549, -0.0009458511485718191, -0.053602803498506546, 0.0013731993967667222, -0.011126738041639328, 0.003944150172173977, 0.011918704025447369, -0.012357814237475395, -0.0004373948904685676, -0.0021994714625179768, 0.017235074192285538, -0.0014947388553991914, -0.004014721605926752, -0.0033599769230931997, -0.0009781962726265192, -0.0018946427153423429, 0.011957910843193531, -0.011416864581406116, 0.02608000673353672, 0.006610176060348749, 0.012655782513320446, 0.004528323654085398, 0.01916402205824852, 0.024637216702103615, 0.02059113048017025, -0.007198269944638014, -0.01300863828510046, 0.022865094244480133, -0.0027365973219275475, -0.03547382727265358, 0.01210689451545477, -0.030157458037137985, 0.00725707970559597, -0.023272838443517685, -0.01590990275144577, -0.013879017904400826, 0.009315408766269684, -0.03045542538166046, -0.002420986769720912, -0.009848613291978836, -0.0013153702020645142, -0.004908624105155468, 0.01438869908452034, -0.019712910056114197, -0.012459751218557358, -0.0033795798663049936, 0.018285801634192467, 0.01875627599656582, 0.02623683214187622, -0.005312448833137751, -0.00020411761943250895, -0.01761145330965519, 0.008366616442799568, 0.010052486322820187, -0.015855012461543083, -0.03792029991745949, 0.004022562876343727, 0.025342930108308792, 0.0005665305070579052, -0.024668581783771515, -0.026770036667585373, -0.01827012002468109, -0.01418482605367899, 0.008609695360064507, 0.010060327127575874, -0.005947590339928865, 0.016576409339904785, 0.02722482942044735, 0.008335251361131668, -0.01630980521440506, 0.01646663062274456, -0.036853887140750885, 0.003599134972319007, -0.03293326124548912, 0.018458308652043343, -0.07496237754821777, -0.004622418433427811, 0.0009154662839137018, 0.02059113048017025, 0.0006032863748259842, -0.017172344028949738, 0.036697063595056534, -0.016262758523225784, -0.003940229769796133, -0.006531763821840286, -0.0035618890542536974, -0.01587853766977787, 0.013667304068803787, 0.00937813799828291, -0.017752597108483315, -0.003236477030441165, -0.008633219636976719, 0.004191149491816759, -0.01429460383951664, -0.014075049199163914, -0.005790765397250652, -0.018442627042531967, 0.034532878547906876, -0.008735155686736107, 0.03125523403286934, 0.06009536236524582, -0.017266439273953438, 0.011134578846395016, -0.030612250789999962, -0.0029894777107983828, 0.0024405899457633495, 0.0006081871688365936, -0.01795646920800209, -0.01294590812176466, 0.03908080607652664, -0.023084647953510284, 0.00801768060773611, -0.002154384274035692, -0.003810848807916045, -0.006402383092790842, -0.010232835076749325, 0.0009061548043973744, -0.02518610469996929, -0.02059113048017025, 0.01805056445300579, -0.002724835416302085, -0.0005508480244316161, -0.0026640656869858503, 0.017203709110617638, 0.012028481811285019, 0.01649799570441246, -0.020010877400636673, -0.006194589659571648, -0.03054952062666416, -0.00843718834221363, 0.0037892854306846857, 0.014835650101304054, -0.011824609711766243, -0.02012065425515175, 0.0031090567354112864, 0.05921714007854462, 0.015361014753580093, 0.02960857003927231, 0.013094892725348473, -0.0002168596547562629, -0.017093930393457413, 0.012428386136889458, 0.02713073417544365, 0.025970229879021645, 0.01659209094941616, -0.004673386923968792, 0.012052006088197231, 0.00015400710981339216, 0.0014712150441482663, 0.01220098976045847, -0.00777460215613246, 0.01684301160275936, -0.006049526389688253, 0.009997596964240074, -0.012891019694507122, -0.016984153538942337, -0.0002771392755676061, -0.0043244510889053345, -0.004998798482120037, 0.007394301239401102, 0.008009839802980423, 0.0007091432926245034, -0.007127698976546526, 0.004461673088371754, 0.013447748497128487, 0.008397981524467468, -0.007206111215054989, 0.008303887210786343, -0.01684301160275936, -0.005731955636292696, 0.017501676455140114, 0.004418545868247747, -0.006637620739638805, 0.020732272416353226, 0.013032162562012672, -0.015604092739522457, -0.03632068261504173, 0.012475432828068733, 0.005504559725522995, -0.003934348467737436, -0.005186988972127438, 0.020889097824692726, 0.03817122057080269, -0.010766040533781052, -0.005535924341529608, -0.020575447008013725, -0.017940785735845566, -0.009927025996148586, 0.0012065727496519685, -0.009966232813894749, 0.030690664425492287, 0.02338261529803276, -0.004916465375572443, -0.003334492677822709, -0.011212991550564766, 0.011918704025447369, 0.02379036135971546, -0.005751559045165777, -0.042813241481781006, -0.009832930751144886, -0.009080170653760433, -0.009072329849004745, -0.023492394015192986, -0.013933906331658363, 0.006359255872666836, 0.018803324550390244, 0.0208734143525362, 0.0043558161705732346, 0.017564406618475914, -0.014176985248923302, -0.002887541428208351, 0.030863171443343163, -0.007186508271843195, 0.011338451877236366, -0.02849511243402958, -0.005124258808791637, -0.00436365744099021, -0.008986075408756733, 0.028181463479995728, 0.017972150817513466, -0.0028502955101430416, -0.0005459472304210067, -0.01581580750644207, -0.02620546706020832, -0.025437023490667343, 0.012530322186648846, 0.0005817229393869638, 0.013753557577729225, 0.01947767287492752, 0.006955191493034363, -0.025076325982809067, 0.013486955314874649, 0.015494315885007381, 0.013220352120697498, 0.008272522129118443, -0.02008928917348385, -0.013777080923318863, 0.026879815384745598, 4.802767216460779e-05, 0.005735876504331827, -0.010475913994014263, -0.02963993512094021, -0.020042242482304573, -0.011134578846395016, -0.012742036022245884, -0.012577369809150696, 0.007139460649341345, -0.005645702127367258, 4.585295027936809e-05, 0.03647750988602638, 0.013588891364634037, 0.0038892615120857954, 0.005022322293370962, 0.01801919937133789, -0.007754999212920666, -0.030706346035003662, -0.002652303781360388, 0.010601374320685863, 0.01165994256734848, -0.010750357992947102, -0.017595771700143814, -0.01779964379966259, 0.005563369020819664, -0.0075942534022033215, -0.019493354484438896, 0.008052966557443142, 0.00719434954226017, -0.014122096821665764, 0.028793079778552055, -0.013871176168322563, 0.02148503251373768, 0.003877499606460333, 0.010687627829611301, -0.028730349615216255, -0.02744438499212265, -0.03500335291028023, -0.01795646920800209, 0.024605851620435715, -0.01178540289402008, -0.014819967560470104, 0.04221730679273605, 0.017329169437289238, 0.011228674091398716, 0.024041282013058662, -0.024229470640420914, 0.003759880783036351, -0.01900719664990902, 0.009589851833879948, 0.009229154326021671, -0.01919538713991642, -0.033905576914548874, -0.005755479447543621, 0.008225474506616592, -0.02639365755021572, -0.009205630980432034, 0.018740594387054443, 0.012397021055221558, -0.01925811730325222, -0.031051361933350563, -0.007641301024705172, 0.01916402205824852, -0.005735876504331827, -0.037010714411735535, -0.01891310140490532, 0.006516081281006336, -0.006480795331299305, 0.011189468204975128, 0.009527122601866722, -0.005826050881296396, -0.007441348861902952, 0.002164185745641589, 0.02062249556183815, -0.017595771700143814, 0.0015074808616191149, -0.006892461329698563, -0.01823875494301319, -0.028291240334510803, -0.0039892373606562614, 0.017093930393457413, 0.02963993512094021, -0.031804122030735016, 0.001876019756309688, 0.0004067650006618351, -0.001811329391784966, 0.021751634776592255, -0.007453111000359058, -0.01291454304009676, -0.009879978373646736, 0.004453831817954779, 0.0001591529289726168, -0.006135780364274979, 0.007057127542793751, -0.0013928025728091598, -0.0007013020804151893, -0.007366857025772333, -0.03352919593453407, 0.03854759782552719, 0.04482060298323631, -0.020418621599674225, 0.028008954599499702, -0.0022327967453747988, -0.006680747494101524, -0.01100911945104599, -0.03475243225693703, -0.01083661150187254, -0.00413234019652009, -0.022723950445652008, -0.01325955893844366, -0.01313409861177206, -0.01811329461634159, 0.003216874087229371, 0.0007635420188307762, -0.009205630980432034, 0.011385499499738216, 0.005747638177126646, -0.014906222000718117, -0.014082890003919601, 0.0051399413496255875, 0.0069787148386240005, 0.014224032871425152, 0.028793079778552055, 0.009605534374713898, -0.003908864688128233, 0.02433924935758114, 0.012161782942712307, 0.007221793755888939, 0.01561193447560072, 0.009699629619717598, 0.006084812339395285, 0.008429346606135368, -0.042436860501766205, -0.0052144331857562065, 0.00970747135579586, 0.017015518620610237, -0.014522000215947628, -0.03321554884314537, -0.011526641435921192, -0.013988794758915901, -0.02421378903090954, -0.036697063595056534, -0.00037343965959735215, 0.01578444242477417, 0.0005949550541117787, 0.015933426097035408, -0.0012644020607694983, -0.0004248978802934289, 0.03258824720978737, -0.02592318132519722, -0.02499791420996189, -0.00544967083260417, 0.012632258236408234, 0.0001652789069339633, 0.006621938198804855, 0.005492797587066889, -0.019838370382785797, 0.039833564311265945, 0.01678028143942356, 0.02608000673353672, -0.00424211798235774, 0.0013771200319752097, -0.04673386737704277, -0.00961337611079216, 0.039331723004579544, 0.022159380838274956, -0.009605534374713898, -0.011016960255801678, 0.0008150002104230225, -0.0031561043579131365, 0.007433507591485977, -0.0025150817818939686, 0.00324431830085814, 0.00408529257401824, -0.016952788457274437, 0.024668581783771515, 0.0026150578632950783, 0.0051987506449222565, 0.01172267273068428, 0.013659462332725525, 0.006225954741239548, 0.006359255872666836, -0.00835877563804388, 0.007413904648274183, 0.0005586892948485911, 0.02493518404662609, -0.022159380838274956, 0.0009806466987356544, 0.03857896476984024, -0.0077197132632136345, -0.020387256518006325, -0.023586489260196686, 0.031459107995033264, -0.014004477299749851, -0.013737875036895275, -0.016701867803931236, -0.02195550873875618, 0.006253398954868317, -0.004665545653551817, 0.010593532584607601, 0.021218430250883102, -0.02769530564546585, 0.01913265697658062, 0.026911180466413498, -0.030643615871667862, -0.00973883643746376, -0.02437061443924904, 0.008225474506616592, -0.010366136208176613, -0.01900719664990902, -0.012647940777242184, 0.0012320568785071373, 0.01652936078608036, -0.016074568033218384, -0.00652000168338418, -0.019336529076099396, -0.015070888213813305, -0.005120337940752506, -0.004108816385269165, -0.006265161093324423, -0.0050811320543289185, 0.017909420654177666, 0.013361494988203049, -0.004653783515095711, -0.00840582326054573, -0.015964791178703308, -0.022253476083278656, -0.007555047050118446, 0.0043244510889053345, -0.0009811368072405457, 0.014663143083453178, -0.004253879655152559, -0.004724354948848486, -0.03352919593453407, -0.026785720139741898, -0.02372763119637966, -0.00939382053911686, -0.019524719566106796, 0.0013888819376006722, -0.0035618890542536974, 0.006041685119271278, 0.0052497186698019505, 0.022567125037312508, 0.030000632628798485, -0.0035030797589570284, -0.009699629619717598, -0.0035697303246706724, -0.005653543397784233, -0.01424755621701479, 0.034564241766929626, -0.010985595174133778, -0.021375255659222603, 0.005775082856416702, -0.010860134847462177, 0.030282918363809586, -0.0029835966415703297, -0.008272522129118443, -0.01668618619441986, -0.01885037124156952, 0.012530322186648846, -0.008664584718644619, -0.00835877563804388, -0.006253398954868317, -0.01643526554107666, -0.0005253639537841082, 0.007994157262146473, -0.004975275136530399, -0.014772919937968254, 0.0038382932543754578, 0.009464392438530922, 0.007837331853806973, 0.0208420492708683, -0.008570489473640919, 0.04685932770371437, -0.02313169650733471, 0.005653543397784233, -0.00708457175642252, -0.024731311947107315, -0.030643615871667862, 0.01299295574426651, -0.004496958572417498, -0.0027287560515105724, 0.013777080923318863, 0.0022112333681434393, -0.0009076250134967268, 0.024088328704237938, 0.01097775436937809, 0.020795002579689026, -0.009778042323887348, 0.0012869456550106406, 0.006963032763451338, 0.002454312052577734, 0.023492394015192986, 0.018066246062517166, -0.004645942244678736, -0.01897583156824112, 0.03462697193026543, 0.03795166313648224, -0.026597529649734497, 0.01082092896103859, 0.01082092896103859, -0.0011977513786405325, 0.036665696650743484, 0.015666823834180832, -0.01888173632323742, -0.025327246636152267, -0.01527476031333208, 0.0039892373606562614, -0.010891499929130077, 0.002758160699158907, 0.009346773847937584, 0.01630980521440506, -0.03150615468621254, -0.004618498031049967, -0.00939382053911686, -0.007378619164228439, -0.024323565885424614, -0.03054952062666416, 0.008711632341146469, -0.010475913994014263, 0.0012712631141766906, 0.021908460184931755, -0.023147378116846085, 0.015235554426908493, -0.010389660485088825, -0.004222514573484659, 0.02068522572517395, -0.012875337153673172, -0.0009728054283186793, -0.020857732743024826, 0.031302280724048615, 0.01783100888133049, -0.00477532297372818, -0.02195550873875618, -0.0012830250198021531, 0.01950903795659542, 0.0005611396627500653, -0.0061553833074867725, -0.022128015756607056, -0.04064905643463135, 0.017031202092766762, -0.007284523919224739, -0.011126738041639328, -0.00843718834221363, 0.008962552063167095, 0.0024307884741574526, -0.0015741315437480807, 0.0010820928728207946, 0.008962552063167095, 0.002446470782160759, -0.007754999212920666, 0.0075668091885745525, -0.0006121078040450811, 0.002477835863828659, -0.02437061443924904, -0.007903982885181904, -0.00040872531826607883, 0.030816122889518738, -0.0402413085103035, 0.003581492230296135, 0.006723874248564243, 0.0052301157265901566, -0.0016966511029750109, -0.007570729590952396, 0.011730514466762543, -0.0005361456423997879, -0.02642502263188362, 0.0068375724367797375, 0.011064007878303528, 0.011126738041639328, 0.01078956387937069, 0.019556084647774696, 0.009385979734361172, -0.021092969924211502, 0.009276201948523521, -0.02230052277445793, -0.002050487557426095, -0.0011987314792349935, 0.009778042323887348, -0.006959111895412207, -0.003507000394165516, -0.005873098503798246, 0.06756023317575455, -0.0003359486872795969, 0.015604092739522457, -0.0020387256518006325, -0.011158103123307228, -0.031741391867399216, 0.01170699018985033, 0.006998318247497082, 0.015745235607028008, -0.005477115046232939, -0.010021121241152287, -0.010687627829611301, 0.011032642796635628, 0.015149300917983055, 0.010922865010797977, 0.012020641006529331, 0.016576409339904785, 0.009911343455314636, -0.010907182469964027, 0.026534799486398697, 0.03183548524975777, -0.000835583487059921, -0.023649219423532486, -0.030706346035003662, 0.007527602836489677, -0.015682505443692207, -0.0017074327915906906, 0.011016960255801678, 0.00845287088304758, 0.03039269521832466, -0.0068689375184476376, 0.008774361573159695, -0.015807965770363808, -0.025107691064476967, -0.012295084074139595, 0.03271370753645897, 0.0016084370436146855, 0.00818626768887043, -0.007233555894345045, 0.011573689058423042, -0.007370777893811464, 0.01795646920800209, 0.006763080600649118, 0.01888173632323742, 0.004430308006703854, 0.0031247392762452364, -0.0026248593349009752, -0.006982635706663132, 0.02778940089046955, -0.01319682877510786, -0.010138739831745625, 0.004936068784445524, 0.00046336904051713645, 0.024151058867573738, -0.006618017330765724, -0.01448279432952404, -0.022378936409950256, -0.00832741055637598, 0.004285244736820459, 0.0022131935693323612, -0.006406303495168686, -0.019085610285401344, -0.02319442667067051, -0.03563065454363823, -0.014710190705955029, -0.017878057435154915, -0.015988314524292946, -0.008617537096142769, -0.004273482598364353, -0.014075049199163914, -0.01527476031333208, 0.0029914379119873047, 0.02836965210735798, -0.016105933114886284, -0.012373496778309345, -0.000576332095079124, -0.00812353752553463, 0.009001757949590683, 0.023947186768054962, 0.012530322186648846, 0.01212257705628872, 0.0014143659500405192, 0.008586172014474869, -0.02176731824874878, 0.007284523919224739, 0.01324387639760971, -0.0051713064312934875, -0.00842150580137968, 0.01519634760916233, -0.005085052456706762, -0.0076765865087509155, 0.009974073618650436, -0.013455590233206749, 0.004006880335509777, 0.006747398059815168, 0.009236996062099934, 0.0067121125757694244, -0.04171546548604965, -0.0007895161397755146, -0.01612161658704281, -0.005441829562187195, 0.007143381517380476, -0.018223071470856667, 0.008648902177810669, -0.014098572544753551, -0.0016907701501622796, 0.0032541200052946806, -0.01550215668976307, 0.008915504440665245, 0.01618434675037861, -0.006116177421063185, -0.014741555787622929, -0.0024170661345124245, -0.0006562148337252438, -0.03166297823190689, 0.014906222000718117, 0.015384538099169731, 0.009832930751144886, -0.010664103552699089, -0.02633092738687992, -0.0050732907839119434, 0.00026194684323854744, -0.005563369020819664, -0.007413904648274183, -0.018630817532539368, 0.01164426002651453, -0.03051815554499626, -0.005077211186289787, 0.00606128852814436, -0.020920462906360626, -0.00422643544152379, 0.022033920511603355, -0.02034020982682705, -0.009879978373646736, -0.005677067209035158, 0.007045365869998932, 0.0035344448406249285, -0.018285801634192467, 0.034501511603593826, -0.01891310140490532, 0.006327891256660223, -0.004700831137597561, 0.006418065633624792, 0.0016848891973495483, -0.006041685119271278, -0.0024739152286201715, -0.016419583931565285, -0.010091692209243774, 0.007053207140415907, 0.021296842023730278, 0.031176822260022163, -0.016670502722263336, -0.012663623318076134, 0.01216962467879057, -0.002307288581505418, -0.013063527643680573, -0.013596732169389725, -0.014780761674046516, -0.013643779791891575, 0.01916402205824852, 0.011354134418070316, 0.02164185792207718, -0.01659209094941616, -0.01291454304009676, -0.009276201948523521, -0.0058966223150491714, 0.006371018011122942, 0.015870695933699608, 0.02487245388329029, -0.009832930751144886, 0.008531282655894756, -0.008656742982566357, -0.00035775714786723256, -0.014851332642138004, -0.005626098718494177, 0.007876538671553135, -0.023461028933525085, 0.009605534374713898, 0.0017093931091949344, -0.001943650539033115, 0.017721232026815414, -0.006257319822907448, 0.02297487109899521, 0.018223071470856667, -0.02518610469996929, -0.028479430824518204, 0.025437023490667343, -0.01215394213795662, 0.004802767187356949, 0.02198687382042408, 0.008703790605068207, 0.01783100888133049, 0.0033050880301743746, -0.005414384882897139, -0.012099052779376507, -0.004187229089438915, 0.01699983701109886, 0.003922586794942617, -0.017470311373472214, -0.001202652114443481, -0.013933906331658363, -0.009793724864721298, 0.025264516472816467, 0.0010379859013482928, -0.0052065919153392315, -0.001341834431514144, 0.00724139716476202, -0.017203709110617638, -0.008860616013407707, -0.0013281122082844377, -0.042342767119407654, -0.019571766257286072, 0.004206832032650709, -0.006990476977080107, -0.014788602478802204, 0.004540085326880217, 0.006865016650408506, 0.021720269694924355, 0.00030213326681405306, 0.02719346433877945, -0.007472713943570852, 0.006398462224751711, -0.005277163349092007, -0.008162744343280792, 0.005731955636292696, -0.00835877563804388, 0.016513679176568985, 0.026221148669719696, -0.007331571541726589, -0.042875971645116806, 0.012789083644747734, 0.0021445825695991516, 0.0021426223684102297, -0.0009928985964506865, 0.018662182614207268, 0.021124335005879402, 0.008978234604001045, -0.008750838227570057, 0.00823331531137228, -0.029530158266425133, -0.013494796119630337, 0.014631778001785278, -0.0037089125253260136, -0.011252197436988354, -0.0034462306648492813, -0.028730349615216255, 0.001374179613776505, 0.022770998999476433, -0.021092969924211502, -2.896056503232103e-05, 0.0023739393800497055, -0.01045238971710205, 0.005065449513494968, 0.01316546369343996, -0.0016407821094617248, -0.0007429586839862168, -0.013879017904400826, 0.0028346129693090916, -0.023900138214230537, -0.019681544974446297, 0.003571690758690238, 4.4934055040357634e-05, 0.010687627829611301, -0.01758008822798729, 0.030000632628798485, 0.011158103123307228, -0.02201823890209198, 0.024056963622570038, -0.0035187622997909784, 0.019493354484438896, -0.020998874679207802, 0.001670186873525381, 0.020481351763010025, -0.005959352012723684, 0.006120097823441029, 0.014937587082386017, -0.02896558865904808, -0.031741391867399216, -0.010985595174133778, 0.005837812554091215, -0.0036912697833031416, 0.008923346176743507, 0.0014604333555325866, -0.027303243055939674, 0.003348215017467737, -0.00041950703598558903, -0.018066246062517166, 0.016890058293938637, -0.015635458752512932, 0.01448279432952404, 0.028604891151189804, -0.01919538713991642, 0.017046883702278137, 0.0019710948690772057, 0.011299245059490204, -0.012851813808083534, 0.016827328130602837, -0.005179147701710463, 0.017721232026815414, 0.018521038815379143, 0.008397981524467468, 0.003820650512352586, -0.005528083071112633, -0.00413234019652009, 0.03792029991745949, -0.006026003044098616, 0.03770074248313904, 0.00177114293910563, -0.01518066506832838, -0.0009071349631994963, 0.006939508952200413, 0.008601854555308819, -0.01581580750644207, 0.01454552449285984, -0.025593848899006844, -0.0016476432792842388, 0.016921423375606537, 0.009911343455314636, -0.011636419221758842, 0.0037912458647042513, 0.011024801060557365, -0.005759400315582752, 0.012577369809150696, 0.008805726654827595, 0.003160024993121624, -0.010609215125441551, 0.016670502722263336, 0.005696670152246952, 0.010954230092465878, -0.007884379476308823, 0.002454312052577734, -0.00034109450643882155, -0.01875627599656582, 0.0002594964753370732, 0.00826468039304018, 0.012938067317008972, -0.010311247780919075, 0.013612414710223675, 0.008641060441732407, -0.017188025638461113, -0.021124335005879402, -0.0021249796263873577, -0.003720674430951476, -0.030863171443343163, -0.0026366212405264378, 0.013753557577729225, -0.008742996491491795, 0.012059846892952919, 5.0998773076571524e-05, 0.005814289208501577, 0.003940229769796133, -0.00713161937892437, 0.013980953954160213, 0.00813922006636858, -0.005343813914805651, 0.006676826626062393, 0.021971190348267555, -0.007464872673153877, -0.013424225151538849, 0.022598490118980408, 0.0069277468137443066, 0.025593848899006844, -0.01922675222158432, -0.007782443426549435, 0.007088492624461651, -0.002634661039337516, 0.003252159571275115, -0.011479593813419342, -0.019697226583957672, 0.010146581567823887, -0.006069129798561335, -0.024762677028775215, -0.002726795617491007, -0.01823875494301319, 0.003924547228962183, -0.0005136020481586456, 0.004089213442057371, -0.003548166947439313, 0.004402863327413797, -0.0074844760820269585, -0.005375178996473551, -0.01693710684776306, -0.013722192496061325, 0.00479100551456213, -0.0022602411918342113, 0.014584730379283428, 0.00939382053911686, 0.0003011531080119312, -0.0038971027825027704, -0.0032305961940437555, -0.020983193069696426, -0.006198510527610779, 0.0016878297319635749, -0.0034619132056832314, 0.007692269049584866, 0.00951928086578846, -0.01789373904466629, 0.01518066506832838, 0.013730033300817013, -0.012585210613906384, -0.0042578005231916904, 0.010115216486155987, 0.01094638928771019, 0.001351635903120041, 0.007025762461125851, -0.02297487109899521, 0.009056647308170795, 0.02858920767903328, 0.009715312160551548, -0.01891310140490532, 0.021375255659222603, 0.009448709897696972, -0.03205504268407822, 0.012373496778309345, 0.020920462906360626, 0.009621216915547848, -3.084430500166491e-05, -0.004183308221399784, -0.006276922766119242, 0.007739316672086716, 0.003820650512352586, -0.01042102463543415, 0.022645538672804832, -0.005751559045165777, 0.00823331531137228, 0.020857732743024826, 0.0208734143525362, -0.01527476031333208, -0.01223235484212637, 0.005347734317183495, 0.005700591020286083, -0.0013379137963056564, 0.0023033679462969303, 0.019085610285401344, -0.019571766257286072, -0.009291884489357471, 0.01454552449285984, -0.003677547676488757, -0.0011722672497853637, 0.02043430507183075, -0.008005918934941292, -0.0003114447754342109, -0.009205630980432034, -0.002699351403862238, 0.026785720139741898, 0.037292998284101486, -0.00485373567789793, 0.024574486538767815, -0.012640099972486496, 0.01814465969800949, -0.005982875823974609, 0.01578444242477417, -0.004889021161943674, -0.004861576948314905, -0.013479113578796387, -0.012459751218557358, -0.013871176168322563, -0.003999039065092802, -0.02034020982682705, -0.010797405615448952, 0.00959769356995821, 0.013283082284033298, -0.000933599192649126, 0.0027209147810935974, -0.0034717146772891283, -0.001661365502513945, 0.022410301491618156, 0.023680584505200386, -0.004947830457240343, -0.0059867966920137405, -0.010585691779851913, 0.029341967776417732, 0.022096650674939156, -0.00044646134483627975, -0.007460952270776033, 0.011581530794501305, 0.00848423596471548, -0.006606255657970905, -0.008805726654827595, -0.011158103123307228, -0.025970229879021645, -0.018834689632058144, -0.028024638071656227, 0.007096333894878626, 0.022065285593271255, 0.01078956387937069, 0.0045165615156292915, 0.017721232026815414, 0.01612161658704281, -0.007672666106373072, 0.007962792180478573, 0.013745715841650963, 0.020324528217315674, 0.011683466844260693, -0.0006885600159876049, -0.004187229089438915, -0.01906992681324482, 0.03857896476984024, -0.009668264538049698, 0.005712352693080902, 0.028008954599499702, 0.011307086795568466, 0.006010320503264666, -0.012616575695574284, -0.014569047838449478, 0.019179703667759895, 0.004387180786579847, -0.011855973862111568, -0.007876538671553135, -0.01296159066259861, 0.019116975367069244, -0.02002655901014805, 0.00612401869148016, 0.0067434776574373245, 0.0012457791017368436, 0.020104972645640373, 0.000629750604275614, 0.02366490103304386, 0.03302735835313797, 0.010201469995081425, -0.002642502309754491, -0.01089934166520834, -0.006237716414034367, 0.003993158228695393, 0.02217506244778633, 0.02763257548213005, 0.004289165139198303, 0.010138739831745625, -0.01612161658704281, -0.017282120883464813, -0.01438869908452034, -0.0020367654506117105, 0.00722571462392807, -0.02626819722354412, 0.008993917144834995, 0.010326930321753025, 0.0050889733247458935, 0.03166297823190689, 0.004814529325813055, -0.012585210613906384, 0.0036108968779444695, 0.0019642338156700134, -0.0029581126291304827, -0.018536722287535667, -0.01221667230129242, 0.0016005957731977105, -0.005108576267957687, -0.011111055500805378, -0.007425666321069002, -0.002483716933056712, -0.017297804355621338, 0.015776600688695908, 0.023978551849722862, 0.019634496420621872, 0.03503471612930298, -0.004453831817954779, -0.009315408766269684, 0.01558056939393282, 0.021939825266599655, -0.001745658926665783, 0.008100014179944992, -0.026440704241394997, 0.0002168596547562629, 0.03490925952792168, -0.025687944144010544, 0.014506317675113678, 0.004214673303067684, 0.002181828720495105, -0.015572728589177132, 0.0009370297193527222, 0.000670917215757072, 0.014718031510710716, -0.007370777893811464, 0.008719473145902157, 0.015063046477735043, 0.0030188823584467173, -0.005900542717427015, -0.001169326831586659, 0.004269562195986509, 0.005575130693614483, 0.01096207182854414, 0.003120818641036749, -0.015949107706546783, -0.007562888320535421, 0.0035520875826478004, -0.01681164652109146, -0.0003234516771044582, -0.008225474506616592, 0.006618017330765724, 0.0067787631414830685, -0.0007140440866351128, -0.02071659080684185, 0.012004958465695381, 0.011377657763659954, -0.01426323875784874, 0.0014800365315750241, 0.006461192388087511, 0.0037167537957429886, -0.01665482111275196, -0.027773717418313026, 0.014114255085587502, 0.025452706962823868, -0.013063527643680573, -0.0015035602264106274, 0.016795963048934937, 0.0026875894982367754, -0.008774361573159695, 0.0026660258881747723, -0.004097054712474346, -0.00210537645034492, 0.009887820109724998, 0.00016674914513714612, 0.034031037241220474, 0.008884139358997345, 0.02992222085595131, -0.007335491944104433, 0.01082092896103859, 0.00411665765568614, -0.0011163983726873994, 0.026095690205693245, -0.005186988972127438, 0.004653783515095711, -0.0010869937250390649, 0.010060327127575874, 0.0016692066565155983, -0.021751634776592255, -0.0007659923867322505, -0.006704271305352449, 0.017627136781811714, -0.00656704930588603, 0.01296159066259861, -0.0032698025461286306, 0.0016250996850430965, 0.00013048334221821278, 0.021265476942062378, 0.00586133636534214, -0.007935347966849804, 0.006406303495168686, -0.013016480021178722, 0.0020387256518006325, 0.03054952062666416, -0.021155700087547302, 0.005398702807724476, 0.02313169650733471, 0.009558487683534622, -0.028573526069521904, 0.01329092402011156, -0.000873319513630122, 0.003973554819822311, 0.017015518620610237, -0.02198687382042408, 0.006410224363207817, 0.013432065956294537, 0.0010585691779851913, 0.007151222787797451, 0.0026464229449629784, 0.0021779080852866173, -0.0018573967972770333, 0.020293163135647774, -0.016419583931565285, -0.009323249571025372, -0.039896294474601746, 4.958979843650013e-05, 0.017846692353487015, 0.015823647379875183, 0.0014114255318418145, 0.0077353958040475845, 0.005143861752003431, 0.0008718493045307696, -0.01042102463543415, -0.002446470782160759, -0.0069199055433273315, -0.015980472788214684, 0.005406543612480164, -0.00024320135707966983, 0.011981434188783169, -0.00046434919931925833, -0.0035834526643157005, -0.008766520768404007, -0.024825407192111015, 0.0022131935693323612, 0.011369816958904266, 0.007378619164228439, -0.02211233228445053, -1.609600985830184e-05, 0.008303887210786343, -0.003203151747584343, 0.0028757795225828886, -0.014623936265707016, 0.008876298554241657, -0.00829604547470808, -0.010044644586741924, -0.02642502263188362, -0.01449847687035799, -0.004814529325813055, -0.011997116729617119, -0.009746677242219448, 0.006602334789931774, -0.01075819879770279, -0.013933906331658363, -0.02995358593761921, 0.0027150337118655443, 0.0015829529147595167, -0.0005400662776082754, 0.00969178881496191, -0.02499791420996189, -0.0007414884748868644, 0.008429346606135368, -0.012624417431652546, 0.0035128812305629253, 0.006716032978147268, 0.020167702808976173, 0.006276922766119242, -0.02148503251373768, 0.002279844367876649, -0.020638177171349525, 0.01671755127608776, 0.01452984195202589, -0.007990236394107342, -0.010389660485088825, 0.026911180466413498, -0.008852774277329445, 0.015760919079184532, 0.01097775436937809, -0.00038814201252534986, -0.010671945288777351, 0.002824811264872551, 0.022661220282316208, -0.005269322078675032, 0.0030992552638053894, 0.015361014753580093, -0.021296842023730278, -0.007253158837556839, 0.02046567015349865, 0.006574890576303005, 0.011558006517589092, 0.024072647094726562, -0.01681164652109146, -0.008288204669952393, -0.005900542717427015, -0.02350807562470436, -0.005673146340996027, -0.004202911630272865, -0.026283878833055496, 0.012467592023313046, -0.017078248783946037, -0.002667986322194338, 0.00422643544152379, 0.03365465626120567, -0.009872137568891048, 0.002032844815403223, 0.007880459539592266, 0.016482314094901085, 0.009527122601866722, -0.007276682648807764, -0.0005189929506741464, 0.005673146340996027, -0.006841493304818869, 0.0016123575624078512, 0.003130620112642646, 0.018254436552524567, 0.0030424061696976423, 0.009064488112926483, -0.019901100546121597, 0.019932465627789497, 0.021814364939928055, 0.009135060012340546, 0.024260835722088814, -0.01928948238492012, 0.039457183331251144, 0.024637216702103615, 0.0003305578138679266, -0.010272040963172913, -0.010256358422338963, -0.006363176740705967, -0.01423187367618084, -0.002887541428208351, 0.007096333894878626, -0.012012799270451069, 0.011244356632232666, -0.010389660485088825, 0.0025542881339788437, -0.031145457178354263, -0.01761145330965519, -0.005865257233381271, -0.016921423375606537, -0.008601854555308819, 0.0006836592219769955, 0.01640390045940876, -0.021234111860394478, -0.0011507038725540042, 0.008954710327088833, -0.009683947078883648, 0.009448709897696972, 0.011032642796635628, 0.01223235484212637, 0.010287723504006863, -0.010703310370445251, -0.011855973862111568, -0.034250590950250626, 0.006947350222617388, -0.008594012819230556, -0.019634496420621872, -0.0019769759383052588, -0.0020700907334685326, 0.015204189345240593, -0.017031202092766762, 0.002920866711065173, -0.024323565885424614, -0.013753557577729225, 0.014122096821665764, 0.010624897666275501, -0.02236325293779373, 0.0036736270412802696, 0.006857175845652819, 0.01894446648657322, -0.006692509166896343, -0.008837091736495495, -0.00016674914513714612, -0.01091502420604229, -0.02167322300374508, -0.009119377471506596, -0.004249959252774715, -0.0024484312161803246, -0.02284941077232361, -0.010021121241152287, 0.01954040303826332, 0.005626098718494177, 0.005673146340996027, -0.005010560620576143, -0.0020681305322796106, -0.011777562089264393, -0.0026130974292755127, 0.012953749857842922, 0.000407255080062896, 0.005300687160342932, -0.0008497957605868578, 0.0007356075220741332, 0.013541843742132187, -0.00181819056160748, -0.00843718834221363, -0.024668581783771515, 0.005657463800162077, -0.002797367051243782, 0.0052889250218868256, 0.007915744557976723, -0.014459270052611828, 0.014686666429042816, -0.02738165482878685, -0.0077353958040475845, 0.009958391077816486, 0.010366136208176613, -0.005641781259328127, -0.006002479232847691, -0.001136981649324298, 0.016294123604893684, -0.004547926597297192, 0.0020857732743024826, 0.025280199944972992, -0.011652101762592793, -0.0059789554215967655, 0.011903021484613419, 0.021092969924211502, -0.00419507035985589, 0.0011977513786405325, 0.0023249315563589334, 0.0045165615156292915, -0.0032815642189234495, -0.031114092096686363, 0.0032796040177345276, -0.01603536121547222, -0.0104053420946002, 0.011244356632232666, 0.0013575168559327722, 0.015023840591311455, 0.001811329391784966, -0.00037245950079523027, 0.01919538713991642, -0.001333993161097169, -0.0038010473363101482, -0.001547667314298451, 0.0076334597542881966, 0.023398298770189285, 0.009142900817096233, -0.02608000673353672, -0.023900138214230537, 0.015682505443692207, -0.005426147021353245, 0.0006317109218798578, 0.004277403466403484, 0.00034575024619698524, 0.02589181624352932, 0.022096650674939156, -0.0004881179775111377, -0.01894446648657322, -0.011260039173066616, 0.011550165712833405, 0.008562647737562656, -0.0015907941851764917, -0.004971354268491268, 0.002895382698625326, -0.019697226583957672, -0.001926987897604704, -0.01221667230129242, -0.006143621634691954, 0.015063046477735043, -0.02620546706020832, 0.0016662662383168936, -0.0007380579481832683, 0.0010350453667342663, -0.016701867803931236, 0.0025895738508552313, 0.007794205565005541, 0.015117935836315155, 0.012906702235341072, -0.001614317880012095, 0.01181676797568798, -0.01094638928771019, -0.003138461383059621, 0.0022347571793943644, -0.022551443427801132, -0.0005675106658600271, 0.00041926198173314333, 0.002315129851922393, -0.007092413026839495, 0.001918166526593268, -0.029404697939753532, -0.009683947078883648, 0.002330812392756343, -0.023147378116846085, 0.01662345603108406, 0.0026797482278198004, 0.012459751218557358, 7.681977149331942e-05, -0.024025598540902138, -0.001291846390813589, -0.002066170098260045, 0.0007983375689946115, -0.0016888098325580359, 0.03356056287884712, 0.004618498031049967, -0.009934867732226849, -0.0104053420946002, -0.02306896634399891, -0.011918704025447369, 0.002289645839482546, -0.0035442463122308254, -0.020763637498021126, -0.0024895977694541216, 0.026283878833055496, -0.00037343965959735215, 0.0036324604880064726, -0.006414144765585661, -0.027334608137607574, 0.004422466736286879, 0.00762169761583209, 0.007680507376790047, -0.0040127611719071865, 0.0033717388287186623, -0.007300206460058689, -0.0011056166840717196, -0.00016760677681304514, 0.024449026212096214, 0.011064007878303528, 0.0024229472037404776, -0.01421619113534689, 0.006033843848854303, 0.006892461329698563, -0.010209310799837112, -0.0018936626147478819, 0.0016554845497012138, -0.0009169364930130541, -0.006484716199338436, 0.009480074979364872, 0.023680584505200386, 0.01075819879770279, -0.0209675095975399, -0.012812606990337372, -0.008891981095075607, 0.007304126862436533, -0.012318608351051807, -0.00612401869148016, -0.005763320717960596, -0.00045969345956109464, 0.003697150619700551, 0.006998318247497082, -0.01448279432952404, 0.009989756159484386, -0.0023112092167139053, -0.015094411559402943, -0.01652936078608036, -0.012514639645814896, 0.019728591665625572, -0.0034952384885400534, -0.014427904970943928, 0.007351174484938383, -0.009189948439598083, 0.0027699226047843695, -0.0024895977694541216, -0.009150741621851921, 0.018928784877061844, -0.0015535482671111822, 0.01083661150187254, -0.009182106703519821, -0.010624897666275501, -0.015117935836315155, 0.012773401103913784, -0.00039206264773383737, -0.02040293999016285, -0.018411261960864067, 0.01324387639760971, -0.0019612933974713087, -0.017266439273953438, -0.0034050641115754843, 0.0007507999544031918, 0.012208830565214157, 0.006915985140949488, 0.014647460542619228, 0.013314447365701199, 0.013682986609637737, 0.013996636494994164, 0.013910382986068726, -0.0027228749822825193, -0.013957429677248001, 0.0025052803102880716, 0.0016496035968884826, -0.007896142080426216, -0.0020779320038855076, -0.006257319822907448, -0.013682986609637737, -0.015635458752512932, 0.01681164652109146, 0.01187949813902378, -0.00419507035985589, -0.0020798922050744295, 0.009958391077816486, -0.023900138214230537, -0.004579291678965092, 0.008076490834355354, 0.02151639759540558, 0.012483274564146996, -0.017752597108483315, -0.008546965196728706, -0.012671465054154396, -0.007170825731009245, -0.02865193784236908, 0.02043430507183075, -0.006935588084161282, 0.012475432828068733, -0.012404861859977245, -0.006131859961897135, 0.012828289531171322, -0.010099533945322037, 0.022802364081144333, -0.0006782683776691556, -0.005649622529745102, -0.005775082856416702, 0.02002655901014805, 0.00762169761583209, 0.04409920424222946, -0.006406303495168686, 0.017125295475125313, -0.01220098976045847, 0.0002545956813264638, -0.007880459539592266, 0.008319568820297718, -0.007127698976546526, -0.009911343455314636, 0.003948071040213108, -0.0030482870060950518, -0.03100431337952614, 0.02034020982682705, -0.01089934166520834, 0.018097611144185066, -0.0037755633238703012, 0.008844933472573757, 0.007300206460058689, 0.0036089366767555475, -0.00828036293387413, -0.001876999856904149, -0.007900062017142773, -0.03810849040746689, 0.008319568820297718, -0.00029527218430303037, -0.014537682756781578, -0.015682505443692207, -0.006131859961897135, -0.012663623318076134, -0.0053085279650986195, -0.006994397379457951, -0.02288077585399151, -0.0067356363870203495, -0.012193148024380207, 0.02154776267707348, 0.0014124056324362755, -0.0025131215807050467, 0.005841733422130346, 0.00047905155224725604, -0.010624897666275501, -0.006849334575235844, -0.011291404254734516, 0.0009933887049555779, 0.006461192388087511, 0.0034560321364551783, 0.026675941422581673, 0.0069199055433273315, 0.0040049199014902115, 0.00592406652867794, 0.00653568422421813, -0.0006371017661876976, 0.0016309806378558278, 0.007217873353511095, -0.014106414280831814, -0.005245798267424107, -0.01302432082593441, -0.005085052456706762, 0.007413904648274183, 0.007315889000892639, 0.013926065526902676, -0.006947350222617388, -0.024009916931390762, -0.0010389660019427538, 0.0014947388553991914, -0.03340373560786247, -0.013298764824867249, 0.008076490834355354, 0.011111055500805378, 0.0013526161201298237, 0.003628539852797985, -0.011267879977822304, 0.005873098503798246, -0.002172027016058564, -0.018928784877061844, -0.005367337726056576, 0.02973403036594391, 0.0031835485715419054, 0.011361975222826004, -0.005755479447543621, -0.00023462498211301863, -0.0030169219244271517, 0.023711947724223137, 0.0014094652142375708, 0.016450949013233185, 0.0052222744561731815, -0.005367337726056576, 0.006986556109040976, 0.02074795588850975, -0.00017103733262047172, -0.004924306645989418, -0.0015300244558602571, -0.021751634776592255, -0.0076334597542881966, -0.005614337045699358, 0.004963512998074293, 0.013016480021178722, 0.003918665926903486, 0.004218594171106815, -0.005755479447543621, 0.0008316629100590944, 0.037261635065078735, -0.00727276224642992, -0.019618814811110497, -0.01671755127608776, -0.005661384668201208, -0.017501676455140114, -0.0013104693498462439, 0.006821889895945787, -0.00477532297372818, 0.009621216915547848, 0.012781241908669472, 0.005579051561653614, -0.00824899785220623, 0.00031463027698919177, -0.01085229404270649, -0.0039617931470274925, -0.004202911630272865, -2.703088102862239e-05, 0.009903502650558949, -0.00817058514803648, -0.006708191707730293, 0.004026483278721571, -0.024009916931390762, -0.02049703523516655, -0.0037716426886618137, -0.004928227514028549, -0.006249478552490473, -0.006347494199872017, 0.014114255085587502, 0.004218594171106815, -0.006480795331299305, 0.03125523403286934, 0.008586172014474869, -0.009887820109724998, -0.008891981095075607, 0.019932465627789497, 0.02836965210735798, -0.01075819879770279, -0.006402383092790842, 0.013706509955227375, -7.767741044517606e-05, 0.014365174807608128, -0.0008939028484746814, 0.021657539531588554, 0.011479593813419342, 0.006225954741239548, 0.0043675778433680534, 0.019822686910629272, 0.009127218276262283, -0.007057127542793751, -0.014710190705955029, -0.015015998855233192, 0.0008561668219044805, -0.021265476942062378, -0.010475913994014263, -0.0006219093920662999, 0.024449026212096214, -0.003987276926636696, 0.009244836866855621, 0.04306416213512421, 0.0035854128655046225, -0.013416383415460587, 0.03309008851647377, -0.006018161773681641, -0.012036323547363281, -0.0009698649519123137, -0.006492557469755411, 0.020544081926345825, -0.009864295832812786, -0.002609176794067025, 0.00721003208309412, 0.005406543612480164, -0.0034011434763669968, 0.005884860176593065, -0.008107855916023254, 0.005590813234448433, -0.0016329409554600716, -0.0028208906296640635, 0.004751799162477255, 0.0020446067210286856, 0.019854051992297173, -0.0001993393525481224, 0.013635938987135887, -0.0052497186698019505, -0.010052486322820187, -0.04419330134987831, 0.018897419795393944, -0.005398702807724476, -0.012922384776175022, -0.021845730021595955, 0.017783962190151215, 0.015423743985593319, -0.007104175165295601, 0.0074766348116099834, 0.0008370537543669343, 0.004304847680032253, 0.018646499142050743, -0.01919538713991642, -0.020010877400636673, -0.004818449728190899, 0.013565367087721825, 0.003122778842225671, 0.01293022558093071, 0.013549684546887875, 0.019681544974446297, 0.011965751647949219, -0.013722192496061325, 0.01164426002651453, 0.007853014394640923, 0.0051987506449222565, -4.435208757058717e-05, -0.0011242396431043744, 0.0007346273632720113, 0.004673386923968792, -0.006876778788864613, 0.0035854128655046225, -0.021877095103263855, -0.004504799842834473, 0.005473194643855095, 0.022394618019461632, 0.0028130493592470884, -0.007927506230771542, -0.018317166715860367, 0.027899177744984627, -0.025593848899006844, -0.02716209925711155, -0.003501119324937463, 0.04833348095417023, 0.026534799486398697, 0.0029326286166906357, -0.006057367660105228, 0.006418065633624792, -0.047612085938453674, 0.015400220640003681, 0.005226194858551025, -0.011440387926995754, 0.02985949069261551, -0.012851813808083534, -0.026503434404730797, 0.024292200803756714, 0.022739633917808533, 0.00537125812843442, -0.003728515701368451, -0.011071848683059216, -0.010444548912346363, -0.006476874928921461, 0.019728591665625572, 0.005794685799628496, 0.0034540719352662563, -0.00818626768887043, -0.007523681968450546, 0.0024641137570142746, -0.00018145149806514382, -0.03271370753645897, 0.00020571037020999938, 0.012310766614973545, 0.001185009372420609, 0.033780116587877274, -0.02319442667067051, -0.01795646920800209, 0.012467592023313046, -0.0060456059873104095, 0.023743312805891037, 0.007692269049584866, -0.0006870898068882525, -0.002064209897071123, -0.006167145445942879, -0.003957872278988361, -0.021688904613256454, 0.006127939093858004, -0.005669225938618183, -0.010005438700318336, -0.002503319876268506, 0.003934348467737436, -0.0075942534022033215, -0.01308705098927021, 0.020230432972311974, 0.011424705386161804, 0.02059113048017025, -0.001589813968166709, -0.021155700087547302, -0.0033560562878847122, -0.0003658434434328228, 0.0009830971248447895, -0.0024817564990371466, 0.007355095352977514, 0.014137779362499714, -0.018066246062517166, -0.009793724864721298, -0.0024170661345124245, 0.011926545761525631, 0.003120818641036749, 0.012208830565214157, -0.0043558161705732346, 0.024182423949241638, 0.0067513189278542995, -0.0001907629775814712, -0.003138461383059621, -0.004810608457773924, 0.004214673303067684, -0.011628578417003155, -0.018395578488707542, -0.0022602411918342113, -0.014090731739997864, 0.00260133552365005, -0.018834689632058144, 0.002385701285675168, 0.015698188915848732, 0.002742478158324957, 0.008805726654827595, 0.006672906223684549, -0.018254436552524567, -6.073907934478484e-05, 0.009119377471506596, 0.005888781044632196, 0.00017115984519477934, -0.00939382053911686, 0.0016505836974829435, -0.004344054032117128, 0.00332273100502789, 0.02052840031683445, 0.00538694066926837, 0.015768758952617645, 0.006410224363207817, 0.0004457262111827731, 0.012412703596055508, -0.00828036293387413, 0.005194830242544413, -0.0001423677458660677, 0.0012310766614973545, 0.009746677242219448, 0.022473029792308807, -0.008703790605068207, -0.01885037124156952, -0.01311841607093811, 0.004536164924502373, -0.0007787344511598349, 0.007362936623394489, -0.011369816958904266, -0.010554326698184013, 0.006308287847787142, 0.009832930751144886, 0.010279882699251175, -0.010718992911279202, 0.010515119880437851, 0.023743312805891037, -0.011542323976755142, -0.0009110555402003229, -0.008578330278396606, 0.019901100546121597, 0.021187065169215202, -0.026675941422581673, -0.009715312160551548, 0.011142420582473278, 0.016858693212270737, -0.009652581997215748, 0.01448279432952404, 0.009864295832812786, 7.510450086556375e-05, -0.005488877184689045, 0.004763561300933361, -0.003916705958545208, 0.022959187626838684, 0.01627844013273716, 0.013541843742132187, 0.027522796764969826, -8.502858690917492e-05, -0.022253476083278656, 0.016513679176568985, 0.005582971964031458, -0.009942708536982536, -0.009966232813894749, 0.006900302600115538, -0.015525680966675282, 0.0020289241801947355, 0.014906222000718117, -0.017564406618475914, 0.02021474950015545, 0.020355893298983574, -0.022802364081144333, 0.026503434404730797, -0.0044577522203326225, -0.004104895982891321, -0.04284460470080376, 0.013894700445234776, -0.013949588872492313, -0.00015425214951392263, -0.013957429677248001, 0.014396539889276028, -0.0036599047016352415, -0.009840772487223148, 0.01643526554107666, -0.007923586294054985, -0.014161302708089352, 0.005320290103554726, -0.021296842023730278, -0.01293022558093071, -0.00355796841904521, -0.008100014179944992, -0.012012799270451069, 0.015047363936901093, 0.0016486233798786998, 0.025970229879021645, -0.006041685119271278, -0.011424705386161804, -0.014827809296548367, -0.004642021842300892, 0.01437301654368639, 0.023461028933525085, 0.014914062805473804, 0.013745715841650963, -0.009072329849004745, -0.011903021484613419, -0.003154143923893571, 0.01597263291478157, 0.034187860786914825, 0.010099533945322037, -0.01950903795659542, 0.03185116872191429, -0.012404861859977245, -0.0026150578632950783, -0.02496654912829399, 0.014145620167255402, 0.00468122772872448, -0.0005415365449152887, -0.03166297823190689, 0.013439907692372799, -0.016482314094901085, 0.025076325982809067, -0.008821409195661545, -0.010460231453180313], "c8e2752f-412f-40b8-ac12-0c82676020a0": [-0.014437759295105934, 0.011277290061116219, 0.002472872845828533, -0.01708208955824375, -0.018892113119363785, -0.05308457463979721, 0.05625211447477341, 0.03238243982195854, -0.02330404333770275, 0.01706794835627079, 0.022512158378958702, 0.031958214938640594, -0.017449749633669853, -0.012776215560734272, -0.02862098440527916, 0.02231418713927269, 0.014635730534791946, 0.02355857752263546, 0.022172778844833374, -0.04202646389603615, 0.06617895513772964, -0.04304460436105728, -0.036681242287158966, 0.007339076604694128, -0.000658431148622185, -0.014649871736764908, -0.007119894027709961, -0.003149863798171282, -0.03176024183630943, 0.001519252429716289, 0.036313582211732864, 0.012818637304008007, -0.006769909057766199, -0.014444829896092415, -0.01329235453158617, -0.015569023787975311, 0.005281589925289154, -0.012811567634344101, -0.018877971917390823, -0.0200092364102602, -0.022384891286492348, 0.04703230783343315, 0.01715279370546341, 0.002674379386007786, -0.0033655110746622086, -0.023869674652814865, 0.0035811583511531353, 0.010775291360914707, -0.02132433094084263, -0.00268852012231946, -0.009757153689861298, -0.0027698297053575516, -0.01408423949033022, 0.03354198485612869, 0.006366896443068981, -0.013652944937348366, 0.062106404453516006, 0.0987028032541275, 0.009311718866229057, -0.04346882551908493, 0.054724905639886856, -0.0034203066024929285, 0.002073395298793912, -0.012733792886137962, -0.015540742315351963, 0.019075943157076836, -0.011319712735712528, 0.016049811616539955, -0.04177192971110344, -0.009615745395421982, 0.017294201999902725, 0.0010199054377153516, -0.02268184721469879, 0.022611143067479134, 0.01841132529079914, 0.0041786073707044125, -0.00039859386743046343, -0.001330119208432734, 0.05017156898975372, -0.011906555853784084, -0.0033442997373640537, -0.007883497513830662, -0.010209659114480019, -0.012125737965106964, 0.06583957374095917, 0.017025526612997055, -0.014932687394320965, -0.020504163578152657, -0.04765450581908226, -0.005171998403966427, 0.0030897653196007013, 0.018086086958646774, -0.0037508478853851557, -0.008555185981094837, -0.0018312339670956135, 0.01231663953512907, -0.02418077178299427, 0.010556109249591827, 0.014395336620509624, 0.0035245949402451515, 0.02381311170756817, 0.03699234127998352, -0.034446995705366135, 0.021112218499183655, -0.012648947536945343, -0.02187582105398178, 0.036483269184827805, 0.032325875014066696, -2.4263075829367153e-05, 0.011758076958358288, 0.011496472172439098, -0.02365756221115589, -0.014692293480038643, -0.007932989858090878, -0.023968661203980446, 0.0019231491023674607, 6.970973481656983e-05, -0.014204435981810093, 0.024463588371872902, -0.06764960289001465, -0.017534594982862473, -0.04027300700545311, 0.007876426912844181, -0.006119432393461466, 0.0023367677349597216, 0.0009960427414625883, -0.02773011475801468, 0.002605442889034748, 0.01257824432104826, -0.008590538054704666, 0.005730560049414635, -0.029808811843395233, 0.008682453073561192, 0.005080083385109901, 0.030515851452946663, 0.04327085614204407, 0.020405178889632225, 0.08133789896965027, 0.007777441293001175, 0.03300463408231735, -0.02170613221824169, -0.018722422420978546, -0.020376896485686302, 0.013638803735375404, 0.018170930445194244, 0.013582240790128708, -0.03198649734258652, 0.028210900723934174, -0.04143255203962326, 0.004553338512778282, -0.043440546840429306, -0.03048757091164589, 0.0012700208462774754, -0.02560899406671524, 0.051953308284282684, -0.047597941011190414, -0.005917925853282213, 0.030063346028327942, -0.030911793932318687, 0.01457916758954525, 0.008760226890444756, -0.05206643417477608, -0.015781136229634285, -0.011680303141474724, 0.018651718273758888, 0.02862098440527916, 0.037218593060970306, 0.01328528393059969, -0.0431860126554966, 0.012161090038716793, 0.007883497513830662, 0.016205359250307083, 0.010117744095623493, -0.0021193528082221746, -0.02106979675590992, -0.003153399098664522, 0.037727661430835724, 0.020815260708332062, 0.029101772233843803, 0.0011286127846688032, -0.00028259510872885585, -0.025213051587343216, 0.021112218499183655, -0.03645499050617218, -0.03246728330850601, 0.0027468509506434202, 0.015385192818939686, 0.04301632195711136, -0.0033301590010523796, 0.014070098288357258, -0.004984633065760136, -6.479360308730975e-05, 0.026019077748060226, 0.03744484484195709, 0.01018137764185667, -0.060862015932798386, 0.040951766073703766, 0.02303536795079708, -0.00462404265999794, 0.0028316958341747522, -0.014239788055419922, -0.052405815571546555, -0.016558879986405373, 0.0862588956952095, -0.017195215448737144, 0.014678153209388256, 0.017478032037615776, -0.03458840399980545, 0.012585313990712166, 0.029384586960077286, 0.007777441293001175, -0.004560408648103476, -0.006214882712811232, 0.008880424313247204, -0.0030402725096791983, 0.018807267770171165, -0.019599152728915215, -0.002596604870632291, 0.005274519324302673, -0.015201362781226635, 0.001519252429716289, -0.012125737965106964, 0.0012081548338755965, -0.0563652403652668, -0.08150758594274521, -0.008731945417821407, -0.015173081308603287, -0.011722725816071033, -0.015851840376853943, 0.012825707904994488, 0.03775594383478165, -0.006144178565591574, -0.01071165781468153, -0.022554580122232437, -0.0006637339247390628, 0.014374125748872757, 0.049012020230293274, 0.020334474742412567, -0.0173224825412035, -0.023077789694070816, 0.013348917476832867, 0.00844205915927887, -0.011970189400017262, -0.009078395552933216, 0.010633883997797966, -0.013568100519478321, -0.045307133346796036, -0.024223195388913155, 0.011927766725420952, 0.012648947536945343, 0.0045462679117918015, 0.013610522262752056, 0.02142331562936306, 0.012507540173828602, -0.0062360940501093864, 0.01026622299104929, 0.05226440727710724, -0.013617592863738537, -0.027404874563217163, -0.03484293818473816, 0.012429765425622463, -0.007020908407866955, 0.019245631992816925, -0.033372294157743454, 0.03410761430859566, 0.009545042179524899, 0.016756851226091385, -0.006395177915692329, 0.011765147559344769, 0.034814655780792236, -0.01805780455470085, -0.013363058678805828, 0.008293581195175648, -0.012394413352012634, -0.008420848287642002, 0.0006168925319798291, 0.015851840376853943, -0.003662467934191227, 0.010428842157125473, 0.0044225361198186874, 0.007013838272541761, -0.056930869817733765, 0.02737659402191639, 0.020560726523399353, 0.03340057656168938, 0.019429462030529976, 0.013525677844882011, -0.01671442948281765, -0.032410718500614166, -0.058712612837553024, -0.020942527800798416, 0.005797728896141052, 0.005536124110221863, 0.04451524838805199, -0.01868000067770481, -0.0006734557100571692, -0.006158319767564535, -0.029016926884651184, 0.006904246751219034, 0.01992439106106758, -0.010322785936295986, -0.01769014447927475, -0.026259470731019974, -0.015144799835979939, 0.05602585896849632, 0.004408395383507013, 0.023417169228196144, -0.0139993941411376, -0.016049811616539955, 0.04578791931271553, 0.04375164210796356, -0.016318487003445625, 0.011666161939501762, -0.02862098440527916, -0.031081484630703926, -0.021225344389677048, -0.0120479641482234, -0.016516458243131638, 0.0036235805600881577, -0.029469432309269905, 0.004542732611298561, 0.01534277107566595, -0.053225982934236526, 0.015950825065374374, 0.06301141530275345, 0.008604678325355053, 0.011708584614098072, -0.020292051136493683, -0.014678153209388256, -0.01856687292456627, -0.025043360888957977, -0.02471812255680561, -0.007671385537832975, 0.006593149155378342, -0.01759115792810917, -0.03815188631415367, -0.02898864448070526, -0.06385986506938934, 0.03243900090456009, -0.0017755544977262616, -0.0004262126167304814, 0.018284058198332787, -0.014918547123670578, -0.0009165007504634559, 0.017223497852683067, -0.027687691152095795, 0.009502619504928589, -0.0019850151147693396, -0.04986046999692917, 0.04691918194293976, 0.0007719994173385203, 0.006384572479873896, -0.010407630354166031, 0.015894262120127678, 0.009891491383314133, 0.016488175839185715, -0.041573960334062576, -0.0009712963947094977, 0.026810960844159126, 0.018269916996359825, -0.0007640452240593731, -0.03939627483487129, -0.016474034637212753, 0.001715456135571003, -0.014918547123670578, -0.010280363261699677, 0.04047097638249397, 0.009226873517036438, 0.0009642259683459997, -0.013044890016317368, -0.006702740211039782, 0.007240090984851122, 0.006996162235736847, 0.0005245354259386659, -0.008576396852731705, -0.056054141372442245, -0.002773365005850792, 0.0052497731521725655, -0.009043043479323387, 0.021027373149991035, -0.01743561029434204, 0.004974027164280415, -0.038802362978458405, -0.018538592383265495, 0.03670952469110489, -0.03119461052119732, 0.02170613221824169, 0.02009407989680767, 0.029299743473529816, 0.018368901684880257, -0.05820354446768761, 0.03153399005532265, 0.019585011526942253, -0.02478882670402527, 0.008739016018807888, 0.01653059758245945, -0.003761453554034233, 0.025043360888957977, -0.016148796305060387, -0.011234867386519909, -0.015158940106630325, 0.01964157447218895, 0.015144799835979939, -0.02986537478864193, 0.05200987309217453, -0.027065496891736984, 0.00848448183387518, -0.007551188580691814, 0.008703663945198059, 0.0006257304921746254, 0.020292051136493683, 0.012125737965106964, 0.004256381653249264, 0.02524133212864399, 0.022186920046806335, -0.021918244659900665, 0.017902256920933723, 0.0023544435389339924, -0.04963421821594238, 0.01534277107566595, -0.01093791052699089, -0.009573323652148247, 0.002835230901837349, -0.011333853006362915, 0.011609598994255066, 0.0250716432929039, -0.011545965448021889, 0.030431007966399193, 0.03156227245926857, 0.025029221549630165, -0.011864133179187775, 0.0013115594629198313, 0.03571966663002968, 0.022158637642860413, -0.0009880885481834412, -0.018722422420978546, 0.0039382134564220905, -0.038802362978458405, 0.0030208290554583073, 0.006837077904492617, 0.0060805450193583965, 0.004825548734515905, 0.005857827607542276, 0.02285153791308403, -0.025990795344114304, -0.020037516951560974, -0.028465434908866882, -0.0033160182647407055, 0.002380957594141364, 0.009502619504928589, -0.0034839401487261057, 0.05017156898975372, 0.015314489603042603, 0.00947433803230524, 0.037275154143571854, -0.025552431121468544, 0.024732263758778572, -0.002142331562936306, 0.0013124432880431414, -0.021013231948018074, -0.022809114307165146, 0.02090010605752468, 0.01177928876131773, 0.03597420081496239, 0.04960593581199646, -0.012111597694456577, -0.006264375522732735, 0.01777498982846737, 0.01901938021183014, 0.01767600327730179, 0.008251158520579338, 0.026202907785773277, -0.049379684031009674, 0.0112843606621027, 0.007222414948046207, -0.014664012007415295, -0.015441756695508957, 0.0007936525507830083, 0.003361975774168968, 0.011722725816071033, 0.022625284269452095, -0.0178739745169878, -0.02720690332353115, -0.014119591563940048, -0.010478334501385689, 0.019146647304296494, -0.012868130579590797, -0.037303436547517776, 0.004871506709605455, 0.009120817296206951, 0.011496472172439098, 0.0002261423651361838, -0.01435291487723589, -0.01252875104546547, 0.015017532743513584, 0.0032470817677676678, 0.006925458088517189, -0.006296192295849323, -0.01626192219555378, -0.019627433270215988, 0.008159243501722813, -0.0017843925161287189, -0.015413475222885609, 0.017407327890396118, -0.011100529693067074, 0.03670952469110489, -0.02497265674173832, 0.0027751324232667685, -0.007558259181678295, 0.036228734999895096, 0.008696593344211578, -0.006748698186129332, -0.029469432309269905, 0.005097759421914816, -0.007353217341005802, 0.0033301590010523796, -0.0026213512755930424, 0.018453747034072876, 0.02944115176796913, -0.006098221056163311, 0.004698281642049551, -0.000546630413737148, -0.014890264719724655, 0.012210583314299583, -0.021819258108735085, 0.02792808599770069, 2.752209002210293e-05, -0.01839718408882618, 0.011340923607349396, -0.03173195943236351, -0.0014936223160475492, 0.0025718584656715393, 0.009332929737865925, -0.01026622299104929, -0.010294504463672638, -0.0020185995381325483, -0.02497265674173832, -0.0007569748559035361, 0.02683924324810505, -0.0006350104231387377, -0.008074398152530193, 0.024392884224653244, 0.0073461467400193214, -0.003522827522829175, -0.020843543112277985, 0.018298199400305748, 0.010768220759928226, 0.04143255203962326, -0.023176776245236397, 0.012769144959747791, 0.02747557871043682, -0.02027791179716587, -0.02560899406671524, -0.015385192818939686, 0.0020663246978074312, 0.005698743276298046, -0.003347835037857294, -0.0051649282686412334, -0.011892414651811123, -0.021013231948018074, -6.993069109739736e-05, 0.002085768384858966, -0.013186298310756683, 0.004673535469919443, 0.013631734065711498, 0.004129114560782909, -0.027616987004876137, 0.013872127048671246, -0.03308947756886482, 0.02986537478864193, 0.02070213481783867, -0.01053489837795496, 0.04737168923020363, 0.031336016952991486, -0.004708887077867985, 0.023233339190483093, -0.0139993941411376, -0.009113747626543045, -0.015201362781226635, 0.0011657323921099305, 0.0423375628888607, -0.015682149678468704, 0.0060805450193583965, 0.0009324091952294111, 0.013681226409971714, 0.009530900977551937, -0.029554277658462524, -0.018340621143579483, -0.018340621143579483, 0.0033142506144940853, 0.009919772855937481, 0.05398958548903465, 0.002465802477672696, 0.0034980811178684235, -0.0322127491235733, 0.025905949994921684, -0.0023897956125438213, 0.0005514912772923708, 0.010407630354166031, 0.02853613905608654, 0.025538289919495583, 0.007989553734660149, 0.018991097807884216, -0.017831552773714066, -0.01231663953512907, -0.015455896966159344, 0.01245097629725933, 0.02046174183487892, -0.018467888236045837, -0.003360208123922348, -0.015455896966159344, 0.008654171600937843, 0.00867538247257471, 0.004673535469919443, -0.013419621624052525, 0.01868000067770481, -0.0019991560839116573, -0.0060805450193583965, 0.007848145440220833, -0.02142331562936306, -0.021112218499183655, -0.01688411831855774, 0.02170613221824169, -0.013942831195890903, 0.020518304780125618, -0.01705380715429783, 0.018651718273758888, -0.01507409568876028, 0.008859212510287762, 0.004514451138675213, -0.02345959097146988, -0.012076245620846748, -0.01178635936230421, -0.013695367611944675, 0.04799388349056244, -0.015682149678468704, 0.010322785936295986, 0.0044366768561303616, -0.006306798197329044, -0.026344316080212593, 0.02773011475801468, -0.0023827252443879843, -0.031788524240255356, -0.01404888741672039, -0.012111597694456577, -0.006504769437015057, -0.0051790690049529076, 0.013002468273043633, 0.01350446604192257, -0.019090084359049797, -0.029356306418776512, -0.00752997724339366, -0.007126964628696442, 0.021805116906762123, 0.019754700362682343, -0.005090688820928335, 0.014649871736764908, 0.001205503474920988, 0.030261317268013954, 0.002002691151574254, 0.00327713112346828, -0.04109317064285278, -0.0006663853419013321, 0.02995022013783455, 0.030996639281511307, 0.0067840502597391605, 0.024647418409585953, -0.009262225590646267, 0.04986046999692917, -0.022257624194025993, 0.0042174942791461945, -0.04810700938105583, 0.01735076494514942, -0.005843686871230602, 0.006663853302598, 0.00027685039094649255, 0.0081733837723732, 0.0025718584656715393, 0.0018294663168489933, 0.009622815996408463, -0.01972641982138157, -0.01910422369837761, -0.02524133212864399, 0.022611143067479134, -0.00715878140181303, -0.008767297491431236, 0.0015687452396377921, 0.03439043089747429, -0.007713807746767998, -0.01947188563644886, 0.01892039366066456, -0.0140913100913167, -0.01559730526059866, -0.003130420111119747, 0.03334401175379753, -0.0016067486722022295, 0.011418698355555534, -0.010987403802573681, 0.04100832715630531, -0.024675700813531876, -0.028861377388238907, -0.01957087032496929, 0.02125362679362297, -0.010775291360914707, 0.028734110295772552, 0.008852142840623856, -0.019528448581695557, 0.00875315722078085, 0.05181189998984337, -0.0024534291587769985, 0.0068229371681809425, 0.03628529980778694, 0.013652944937348366, 0.03767109662294388, 0.013172158040106297, 0.01377314142882824, -0.003863974241539836, 0.010365208610892296, -0.015130658634006977, 0.030289599671959877, 0.011828781105577946, 0.006335079669952393, -0.010556109249591827, -0.029016926884651184, -0.01377314142882824, 0.004277592990547419, -0.0032735958229750395, 0.005405321717262268, -0.0038851855788379908, 0.012125737965106964, -0.0054901666007936, -0.005235631950199604, -0.00526391388848424, -0.005186139140278101, -0.01351860724389553, -0.009297577664256096, 0.005592687521129847, 0.01821335405111313, 0.042903196066617966, -0.013214579783380032, -0.019867828115820885, -0.014989250339567661, 0.01911836490035057, -0.030063346028327942, -0.01992439106106758, -0.009849068708717823, 0.023756548762321472, -0.01435998547822237, 0.0003502058098092675, 0.003924072720110416, 0.024463588371872902, -0.03065725974738598, 0.05396130308508873, -0.008307721465826035, 0.0326935350894928, -0.005748236086219549, 0.03433386981487274, 0.013454973697662354, 0.0009978103917092085, 0.04558994621038437, -0.011072248220443726, 0.005705813877284527, 0.004825548734515905, 0.0035758554004132748, 0.025396881625056267, -0.027433156967163086, -0.003927608020603657, 0.02675439789891243, 0.029214898124337196, -0.009622815996408463, 0.06731022149324417, 0.0275745652616024, 0.014791279099881649, 0.012344921007752419, -0.03289150819182396, 0.012295427732169628, 0.024039365351200104, -0.007735019084066153, 0.00586489774286747, -0.023162635043263435, -0.020928388461470604, -0.03866095468401909, -0.006239629350602627, -0.005762377288192511, 0.0055431947112083435, -0.03475809469819069, 0.026287751272320747, -0.0031887509394437075, -0.03094007633626461, 0.025015080347657204, -0.0023933309130370617, -0.008123891428112984, -0.025213051587343216, -0.004249311052262783, 0.008944057859480381, -0.0168982595205307, -0.009771294891834259, -0.006646177265793085, 0.00393467815592885, 0.021083936095237732, -0.00012196442548884079, -0.0069784861989319324, 0.034984346479177475, 0.04052754119038582, -0.014296351000666618, -0.01937289908528328, -0.004235170315951109, -0.017181076109409332, 0.02408178709447384, -0.0043518319725990295, 0.018821408972144127, 0.03566310554742813, -0.019683998078107834, 0.02676853910088539, -0.026612991467118263, 0.012203512713313103, -0.0017251778626814485, 0.029582558199763298, 0.01324286125600338, 0.017577018588781357, -0.016318487003445625, 0.01382263470441103, -0.01892039366066456, 0.01883554831147194, -0.0015705128898844123, -0.0054583498276770115, 0.04595761001110077, -0.020433459430933, 4.501857256400399e-05, -0.0024198447354137897, 0.025269614532589912, 0.00043306208681315184, -0.0011772217694669962, 0.03897205367684364, -0.003856903873383999, 0.009375352412462234, -0.02517062798142433, 0.007756230421364307, -0.02097081020474434, 0.024053504690527916, -0.0019514308078214526, -0.048418108373880386, -0.04052754119038582, 0.016601301729679108, -0.006989091634750366, 0.0011754542356356978, 0.026188766583800316, 0.0009209197596646845, 0.012740863487124443, 0.04952109232544899, 0.025750402361154556, -0.04335569962859154, -0.010952051728963852, 0.012330779805779457, -0.005073012784123421, 0.03580451384186745, -0.023403028026223183, -0.02517062798142433, -0.011079318821430206, -0.012769144959747791, 0.029667403548955917, 0.012896412052214146, -0.01892039366066456, -0.009361211210489273, 0.009940984658896923, -0.00037009132211096585, -0.0025029219686985016, -0.016035670414566994, 0.010655094869434834, -0.011560105718672276, 0.010499546304345131, 0.02285153791308403, 0.03300463408231735, 0.009863209910690784, 0.005921461153775454, -0.024293899536132812, -0.035238880664110184, 0.040499258786439896, -0.003941748756915331, -0.014706434682011604, 0.013080242089927197, 0.033372294157743454, 0.0163467675447464, 0.036228734999895096, -0.028140196576714516, -0.018722422420978546, -0.0014794814633205533, 0.005147252231836319, -0.015964966267347336, -0.0020185995381325483, -0.010506615974009037, 0.0032241030130535364, 0.0012558799935504794, -0.026004936546087265, -0.04499603435397148, 0.007360287941992283, 0.04971906170248985, 0.01565386913716793, 0.014466040767729282, 0.020659713074564934, 0.019514307379722595, -0.036766085773706436, 0.0017614137614145875, -0.03300463408231735, 0.018722422420978546, -0.04584448039531708, 0.02648572251200676, -0.033287450671195984, 0.017577018588781357, 0.03597420081496239, 0.015795277431607246, 0.0021458668634295464, -0.029893657192587852, -0.01505995448678732, 0.03048757091164589, -0.01770428568124771, -0.0022855072747915983, -0.0014184992760419846, -0.008350144140422344, -0.0064446707256138325, 0.01921735145151615, -0.0014184992760419846, 0.016940681263804436, -0.0027486186008900404, -0.027079636231064796, -0.005366434808820486, -0.01999509520828724, -0.022597001865506172, -0.0004829967801924795, 0.04824841767549515, -0.0163467675447464, 0.00011511496995808557, 0.014260999858379364, -0.0006778747192583978, 0.047880757600069046, 0.001958501059561968, -0.022427313029766083, -0.008208735845983028, -0.04106489196419716, -0.014473111368715763, -0.009615745395421982, -0.011100529693067074, 0.011213656514883041, -0.015017532743513584, -0.017718425020575523, -0.006218418013304472, -0.0018701211083680391, 0.013150946237146854, -0.0007202971610240638, -0.017548736184835434, 0.03102492168545723, 0.027616987004876137, -0.030600696802139282, 0.03475809469819069, 0.03308947756886482, 0.0031198146753013134, 0.0052144210785627365, 0.022271763533353806, 0.02106979675590992, -0.018368901684880257, 0.0033496026881039143, -0.01172979548573494, -0.02932802401483059, 0.0071517108008265495, -0.011333853006362915, -0.010252081789076328, -0.007756230421364307, 0.006381037179380655, -0.007763300556689501, -0.007947131060063839, 0.004606366623193026, -0.012882270850241184, 0.016162937507033348, 0.005391180980950594, 0.01696896366775036, 0.011362134478986263, -0.017265919595956802, -0.02088596485555172, -0.008244087919592857, -0.022724268957972527, 0.022073792293667793, 0.017379047349095345, -0.005889644380658865, -0.007862286642193794, 0.005242702551186085, 0.019047660753130913, 0.023855533450841904, 0.01735076494514942, -0.03139258176088333, 0.01760529913008213, -0.022441454231739044, -0.0017419700743630528, -0.00016427635273430496, -0.026711976155638695, 0.017845692113041878, -0.026429159566760063, -0.026004936546087265, -0.027885662391781807, 0.01177221816033125, -0.03651155158877373, 0.006292656995356083, 0.005256843287497759, 0.0412345789372921, 0.0011215424165129662, 0.009233944118022919, -0.01992439106106758, -0.024293899536132812, -0.030798668041825294, 0.015625586733222008, 0.038265012204647064, -0.0005700510810129344, -0.023247480392456055, -0.016205359250307083, -0.018114367499947548, -0.013059031218290329, 0.004362437408417463, 0.03119461052119732, -0.054640062153339386, -0.02863512560725212, 0.02579282410442829, -0.0038003406953066587, -0.029045209288597107, -0.03953768312931061, -0.021649569272994995, -0.019330477342009544, 0.016770992428064346, -0.0013884500367566943, 0.004616972059011459, -0.002073395298793912, 0.017577018588781357, 0.006568402983248234, -0.026627130806446075, 0.022257624194025993, -0.02009407989680767, -0.01306610181927681, -0.03023303672671318, 0.02505750209093094, -0.06810210645198822, -0.0026019075885415077, -0.008413777686655521, 0.016912400722503662, -0.002561252797022462, -0.013539818115532398, 0.028154337778687477, -0.016742710024118423, -0.008809720166027546, 0.011588388122618198, -0.002456964459270239, -0.030883513391017914, 0.003073856933042407, -0.00280164647847414, -0.0038356927689164877, -0.00871073454618454, -0.004044269677251577, 0.00844205915927887, 0.012698440812528133, 0.008845072239637375, -0.0012762073893100023, -0.024194912984967232, 0.021974807605147362, -0.009276366792619228, -0.004673535469919443, 0.04765450581908226, -0.013398410752415657, -0.0005647483048960567, -0.008703663945198059, 0.012026752345263958, -0.00014483275299426168, 0.01070458721369505, -0.009106677025556564, -0.006883035879582167, 0.021479878574609756, -0.0035192922223359346, 0.0025029219686985016, 0.0030897653196007013, 0.015540742315351963, 0.017265919595956802, -0.005903785116970539, -0.004189212806522846, -0.013652944937348366, -0.036059048026800156, 0.012938834726810455, -0.01045005302876234, 0.01920321024954319, 0.0015572558622807264, 0.030091628432273865, 0.016728568822145462, 0.03784078732132912, -0.019683998078107834, -0.008413777686655521, -0.026598850265145302, -0.011878274381160736, 0.004486169666051865, 0.011934837326407433, -0.016869977116584778, 0.006087615620344877, -0.008845072239637375, 0.0380670391023159, -0.0023067183792591095, 0.031166328117251396, -0.010556109249591827, -0.005196745041757822, 0.01102275587618351, -0.0015722805401310325, 0.019160786643624306, 0.026683693751692772, 0.018425466492772102, -0.011609598994255066, 0.01275500375777483, 0.0036377215292304754, -0.0035316655412316322, 0.006589613854885101, 0.007247161120176315, 0.009976335801184177, 0.007848145440220833, 0.029186615720391273, -7.434968574671075e-05, -0.01306610181927681, -0.005504307337105274, -0.0027132665272802114, -0.0007755346596240997, -0.0002401726960670203, -0.00839963648468256, 0.028324028477072716, -0.015795277431607246, 0.010032899677753448, -0.003393792547285557, 0.007551188580691814, -0.0018153255805373192, 0.021451598033308983, -0.008102679625153542, -0.013363058678805828, 0.03786906972527504, -0.001905473181977868, -0.006752233020961285, 0.0022360144648700953, -0.005659856367856264, -0.006787585094571114, -0.03571966663002968, 0.012472188100218773, -0.02292224019765854, -0.013723649084568024, -0.003941748756915331, 0.0100046182051301, 0.015498319640755653, -0.001786160166375339, -0.02143745683133602, -0.022597001865506172, -0.007742089219391346, -0.019514307379722595, -0.0035952990874648094, -0.023487873375415802, 0.03682265058159828, 0.0011462888214737177, 0.0017260616878047585, 0.010853066109120846, -0.004988167900592089, -0.0006884803296998143, 0.017478032037615776, 0.004899788182228804, -0.03608732670545578, -0.021734412759542465, 0.009389492683112621, 0.001931987120769918, -0.018001241609454155, -0.009608675725758076, 0.019811265170574188, 0.029582558199763298, 0.01600738801062107, -0.01534277107566595, 0.00753704784438014, -0.0008024905691854656, 0.0036447918973863125, 0.0194577444344759, -0.003241779049858451, 0.00742392148822546, -0.02454843372106552, -0.0025471120607107878, -0.01671442948281765, -0.0037296367809176445, 0.011899485252797604, 0.024124208837747574, 0.00010285224561812356, -0.024661559611558914, -0.01858101412653923, -0.004694746341556311, -0.0285502802580595, 0.008731945417821407, -0.01249339897185564, 0.0029801742639392614, 0.006547191645950079, -0.01821335405111313, -0.01875070482492447, -0.0033672787249088287, 0.030346162617206573, 0.03159055486321449, 0.02116878144443035, -0.025227192789316177, -0.0019567336421459913, 0.0122600756585598, -0.006992626935243607, 0.017223497852683067, -0.0076006813906133175, -0.02773011475801468, -0.021649569272994995, -0.016488175839185715, -0.02132433094084263, -0.004100832622498274, 0.026598850265145302, -0.026556426659226418, -0.017718425020575523, 0.009233944118022919, -0.016926540061831474, 0.012465117499232292, -0.0064941635355353355, 0.003052645828574896, -0.027942225337028503, -0.018609296530485153, -0.007544117979705334, -0.01173686608672142, 0.010287433862686157, -0.0019726420287042856, -0.0075158365070819855, 0.001764948945492506, -0.004758379887789488, -0.018524451181292534, -0.012111597694456577, 0.005695208441466093, 0.01974056102335453, -0.0004456562455743551, 0.019627433270215988, -0.010379348881542683, 0.033994488418102264, 0.0004474238376133144, 0.004026593640446663, -0.018199212849140167, 0.00017830668366514146, -0.020122362300753593, -0.013278213329613209, 0.006487093400210142, 0.005560870748013258, 0.012097456492483616, 0.03014819137752056, -0.006437600590288639, 0.028592702001333237, 0.0024817108642309904, -0.029186615720391273, -0.0056174336932599545, 0.010605601593852043, 0.011256079189479351, 0.012670159339904785, -0.009361211210489273, -0.02132433094084263, -0.002600140171125531, 0.014664012007415295, -0.02152230218052864, -0.02631603367626667, 0.015031673014163971, 0.017039667814970016, -0.013850916177034378, -0.039622530341148376, 0.0018683535745367408, 0.006490628235042095, -0.005564406048506498, -0.01716693490743637, 0.0004719492862932384, -0.017817411571741104, 0.0019302195869386196, 0.029299743473529816, 0.008703663945198059, -0.015781136229634285, -0.0021034444216638803, 0.008463270030915737, 0.03190165013074875, -0.017308343201875687, -0.003892255946993828, 0.009587463922798634, -0.01386505737900734, -0.022908100858330727, 0.0007326703635044396, 0.009347070939838886, 0.036143891513347626, -0.007445132359862328, -0.016162937507033348, 0.010789432562887669, 0.018694141879677773, 0.014367055147886276, -0.011927766725420952, -0.013751930557191372, -0.009177381172776222, -0.0005687254015356302, -0.0009589231922291219, -0.0070668659172952175, 0.013306495733559132, -0.005027055274695158, -0.00035064772237092257, -0.01505995448678732, -0.028027070686221123, 0.026796821504831314, 0.02791394479572773, -0.012203512713313103, 0.022328326478600502, -0.007692596409469843, 0.008392566815018654, 0.01102982647716999, -0.011178304441273212, -0.016770992428064346, -0.005430068355053663, 0.02560899406671524, -0.01052782777696848, 0.015201362781226635, -0.006766374222934246, 0.03509747236967087, 0.0021511695813387632, -0.0028670476749539375, 0.020645571872591972, -0.010640953667461872, -0.03077038563787937, -0.007360287941992283, -0.018439605832099915, -0.0120479641482234, 0.002004458801820874, 0.014593307860195637, -0.005567940883338451, 0.01254289224743843, 0.027065496891736984, -0.011807570233941078, -0.0028811886440962553, 0.005027055274695158, 0.013214579783380032, 0.014861983247101307, 0.007968341931700706, -0.004981097765266895, 0.0028741180431097746, 0.03156227245926857, 0.0004825548967346549, 0.0041079032234847546, -0.01725177839398384, -0.009615745395421982, -0.029497714713215828, -0.015088235959410667, -0.02478882670402527, -0.0002819322398863733, 0.0028246252331882715, 0.012033822946250439, -0.0010402328334748745, 0.005320476833730936, 0.009375352412462234, 0.010358138009905815, -0.007402710150927305, -0.020405178889632225, -0.00867538247257471, 0.00818045437335968, -0.016940681263804436, -0.0025259009562432766, 0.0016394492704421282, -0.026188766583800316, 0.037218593060970306, 0.011524754576385021, 0.03085523098707199, -0.011722725816071033, -0.014395336620509624, -0.03385308012366295, -0.02470398135483265, 0.0256796982139349, 0.036228734999895096, 0.015484178438782692, -0.002260760869830847, 0.012677229940891266, 0.01280449703335762, 0.008286510594189167, -0.007727948483079672, 0.0035175245720893145, -0.0009403633885085583, 0.005695208441466093, 0.01093791052699089, 0.006603755056858063, 0.017195215448737144, 0.01356102991849184, 0.009495548903942108, 0.002078698016703129, 0.017364906147122383, 0.009488478302955627, 0.00790470838546753, 0.019358757883310318, 0.016756851226091385, -0.026443300768733025, 0.0064941635355353355, 0.03371167182922363, -0.00764310359954834, -0.002520598005503416, 0.0003793712239712477, 0.030515851452946663, 0.0031958213075995445, -0.002198894741013646, -0.02283739671111107, -0.01301660854369402, -0.006384572479873896, 0.021211203187704086, -0.00409022718667984, 0.015512460842728615, -0.033909644931554794, 0.028465434908866882, 0.006151249166578054, -0.03504090756177902, -0.007059795781970024, -0.009530900977551937, 0.012656018137931824, -0.004571014549583197, -0.013264073058962822, 0.0008568442426621914, -0.005316941998898983, 0.030006783083081245, 0.0018524451879784465, 0.0010490708518773317, -0.01785983331501484, -0.025976654142141342, 0.0074309916235506535, 1.1427259778429288e-05, -0.028748251497745514, -0.026174625381827354, 0.003459193743765354, -0.00041759558371268213, 0.01172979548573494, -0.002882956061512232, -0.007416850887238979, -0.019542589783668518, -0.014480181969702244, -0.003261222504079342, -0.00537704024463892, 0.047060590237379074, 0.001519252429716289, 0.006840613204985857, -0.02712205983698368, -0.01076115109026432, -0.02890380099415779, -0.010025829076766968, -0.01177221816033125, 0.014338773675262928, -0.0011931302724406123, 0.04366679862141609, 0.004645253531634808, 0.029582558199763298, -0.006533050909638405, 0.005575011484324932, -0.01662958413362503, -0.021550582721829414, -0.007254231721162796, -0.005387645680457354, 0.03023303672671318, -0.028295746073126793, -0.03566310554742813, 0.004694746341556311, -0.009410704486072063, 0.02070213481783867, 0.00236858450807631, 0.01795881986618042, -0.03348542004823685, -0.015243785455822945, 0.002319091698154807, -0.00484322477132082, -0.012846918776631355, 0.006950204260647297, -0.022356608882546425, -0.01688411831855774, 0.0026867524720728397, 0.017223497852683067, 0.00013334334653336555, -0.0011648485669866204, -0.020207207649946213, 0.010541968047618866, 0.036398425698280334, -0.014367055147886276, 0.02621704898774624, -0.009523830376565456, 0.008343073539435863, -0.009092535823583603, -0.003662467934191227, -0.004047804977744818, 0.01965571567416191, -0.023417169228196144, -0.02071627601981163, -0.01222472358494997, 0.013935760594904423, -0.005196745041757822, 0.034192461520433426, 0.03040272556245327, -0.005080083385109901, -0.024930234998464584, 0.012670159339904785, -0.002905935049057007, 0.0023632815573364496, 0.019754700362682343, 0.004189212806522846, -0.012458046898245811, -0.02747557871043682, 0.040301285684108734, 0.02764526940882206, -0.011347994208335876, 0.018001241609454155, 0.013808493502438068, -0.012387342751026154, 0.025707978755235672, 0.0069996970705688, -0.03656811639666557, -0.011093460023403168, -0.01507409568876028, 0.012146949768066406, -0.005090688820928335, 0.004150325432419777, 0.004723028279840946, 0.004334155935794115, -0.030459288507699966, 0.016502317041158676, -0.00015820022963453084, 0.013935760594904423, -0.009014762006700039, -0.011298500932753086, 0.010725799016654491, 0.01559730526059866, -0.009403633885085583, 0.03591763973236084, -0.014367055147886276, 0.03430558741092682, -0.01715279370546341, -0.002557717729359865, 0.016290204599499702, -0.021296048536896706, 0.009537971578538418, -0.0256796982139349, 0.02355857752263546, 0.014395336620509624, -0.016247782856225967, -0.017209356650710106, 0.008866283111274242, 0.007508766371756792, -0.0018117902800440788, 0.0036377215292304754, -0.022172778844833374, -0.03905689716339111, 0.0048750415444374084, -0.0003818016848526895, -0.00011003312101820484, 0.00030292250448837876, 0.009226873517036438, -0.018807267770171165, 0.002182986354455352, -0.007897638715803623, 0.013935760594904423, 0.0022536905016750097, -0.006851218640804291, -0.0036447918973863125, 0.0002534296945668757, 0.0011082853889092803, -0.019174927845597267, -0.0072365556843578815, 0.0028935617301613092, 0.015470038168132305, 0.0033142506144940853, 0.01120658591389656, 0.021748553961515427, -0.003565249964594841, 0.014063028618693352, 0.003719031112268567, 0.013193368911743164, -0.014508463442325592, -0.00938242208212614, 0.009679378941655159, -0.00034269349998794496, 0.028861377388238907, 0.02276669256389141, 0.005366434808820486, 0.020475883036851883, -0.010096533223986626, 0.0006217533955350518, -0.012344921007752419, -0.012995397672057152, -0.010082392022013664, 0.008505692705512047, 0.007296653930097818, 0.012132808566093445, -0.0031180470250546932, 0.04293147847056389, -0.00040500142495147884, 0.0037154958117753267, 0.013928690925240517, -0.003116279374808073, -0.024689842015504837, 0.006727486848831177, 0.017760848626494408, -0.002276669256389141, -0.012401483952999115, -0.008541044779121876, 0.0003250175213906914, 0.007275443058460951, 0.018609296530485153, -0.004295269027352333, 0.009311718866229057, 0.008300650864839554, 0.0250716432929039, 0.002974871313199401, 0.02862098440527916, 0.03144914656877518, 0.019344618543982506, -0.019174927845597267, -0.009573323652148247, -0.0003725217829924077, 0.0007057144539430737, -0.014550886116921902, 0.028380591422319412, 0.005811870098114014, 0.0337965190410614, -0.013667086139321327, 0.013200439512729645, -0.005171998403966427, -0.01565386913716793, -0.011305571533739567, 0.01868000067770481, 0.0035528766456991434, 0.004938675090670586, 0.00026491910102777183, 0.0005236516008153558, -0.008993550203740597, 0.005525518674403429, 0.017902256920933723, 0.01752045378088951, -0.013122664764523506, -0.015526601113379002, -0.0027645269874483347, -0.010061181150376797, 0.024138350039720535, -0.02026377059519291, -0.031222892925143242, -0.005352293606847525, 0.007572399917989969, 0.02292224019765854, -0.004362437408417463, -0.004076086450368166, -0.010640953667461872, -0.0139993941411376, -0.001197549165226519, 0.0001966455311048776, 0.004433141555637121, -0.00764310359954834, -0.01918906904757023, -0.026089780032634735, 0.0032718281727284193, -0.017308343201875687, -0.015399334020912647, -0.011715655215084553, 0.015187221579253674, -0.01580941677093506, -0.021366752684116364, 0.003149863798171282, 0.01805780455470085, -0.0024905488826334476, -0.012302498333156109, 0.010499546304345131, -0.0035599470138549805, 0.024067645892500877, 0.045024316757917404, 0.00038975587813183665, -0.002198894741013646, -0.006787585094571114, -0.00947433803230524, -0.02631603367626667, -0.002184754004701972, 0.026019077748060226, 0.02106979675590992, -0.021310189738869667, 0.014649871736764908, -0.019698137417435646, -0.006501234136521816, 0.010930840857326984, -0.012995397672057152, -0.003669538302347064, 0.00753704784438014, -0.007657244801521301, -0.012924693524837494, -0.01892039366066456, 0.02213035523891449, -0.017562877386808395, 0.00972887221723795, 0.014565026387572289, -0.0011957816313952208, -0.008965268731117249, -0.002541809342801571, 0.006310333032160997, -0.00586843304336071, -0.0021882893051952124, 0.0215930063277483, 0.006868894677609205, 0.004648788832128048, -0.023346465080976486, -0.012896412052214146, -0.00301022338680923, -0.004411930218338966, 0.005967418663203716, 0.01053489837795496, 0.0076360334642231464, -0.01770428568124771, -0.018453747034072876, -0.03554997965693474, 0.0018736562924459577, -0.01563972793519497, 0.010867206379771233, -0.0045957607217133045, 0.011800499632954597, -0.018538592383265495, -0.011072248220443726, -0.00268852012231946, 0.0004768101789522916, 0.01377314142882824, 0.019146647304296494, -0.011807570233941078, -0.028111916035413742, 0.013617592863738537, 0.01610637456178665, 0.010054110549390316, -0.013469114899635315, 0.016940681263804436, -0.021451598033308983, 0.0140913100913167, 0.003544038627296686, 0.004744239151477814, -0.00046885598567314446, -0.021847540512681007, 0.0027486186008900404, -0.008364284411072731, -0.019358757883310318, 0.015936683863401413, -0.011256079189479351, 0.0389154888689518, -0.01688411831855774, -0.004783126525580883, 0.018609296530485153, -0.0032859689090400934, -0.01921735145151615, 0.003634186228737235, -0.016855835914611816, -0.003627115860581398, 0.01427514012902975, 0.01752045378088951, 0.0043871840462088585, -0.01841132529079914, -0.00597802409902215, -0.0063704317435622215, -0.01590840332210064, 0.01276207435876131, -0.01778912916779518, 0.011362134478986263, -0.008477411232888699, 0.004097297787666321, -0.010845995508134365, -0.001505111693404615, -0.011637880466878414, 0.007445132359862328, -0.004341226536780596, -0.019259773194789886, 0.00014892032777424902, -0.014960968866944313, 0.014989250339567661, 0.021098077297210693, -0.011644951067864895, 0.02258286252617836, 0.008145102299749851, -0.010959122329950333, -0.022978805005550385, 0.018071945756673813, -0.003998312167823315, 0.0005073013016954064, 0.023671703413128853, 0.012076245620846748, 0.015031673014163971, 0.0059568132273852825, -0.015045814216136932, -0.01572457328438759, -0.02222934179008007, 0.01196311879903078, -0.009283436462283134, 0.011185375042259693, -0.02320505678653717, -0.013483255170285702, -0.012825707904994488, 0.015880120918154716, 0.004698281642049551, 0.005030590575188398, -0.0020256699062883854, -0.006434065289795399, -0.01249339897185564, -0.013589311391115189, -0.005069477949291468, -0.02194652520120144, -0.024463588371872902, 0.0089369872584939, -0.0007110172300599515, -0.02435046248137951, 0.008265298791229725, 0.0050093792378902435, 0.007261302322149277, 0.003863974241539836, 0.028592702001333237, 0.0069784861989319324, 0.018467888236045837, -0.024958517402410507, -0.00650830427184701, -0.005695208441466093, -0.008767297491431236, 0.017817411571741104, 0.007713807746767998, -0.014190295711159706, -0.034644965082407, 0.03495606407523155, 0.002612513257190585, -0.019005239009857178, 0.01199847087264061, 0.005080083385109901, 0.032863225787878036, 0.013702437281608582, 0.0036235805600881577, -0.005401786416769028, -0.0285502802580595, -0.01274793315678835, -0.012557032518088818, -0.013483255170285702, -0.0066992053762078285, 0.008533974178135395, -0.019938532263040543, -0.006819401867687702, 0.031081484630703926, -0.008640030398964882, -2.328261143702548e-05, 0.0017446215497329831, -0.008760226890444756, 0.006639106664806604, 0.011602528393268585, 0.012443906627595425, -0.003994776867330074, -0.01245097629725933, 0.007201203610748053, -0.021988948807120323, -0.02248387597501278, -0.006480022799223661, -0.005939137190580368, 0.0077208783477544785, -0.0024551968090236187, 0.03023303672671318, 0.019782982766628265, -0.04259209707379341, 0.04380820691585541, -0.0009933913825079799, 0.005419462453573942, -0.0037473125848919153, 0.00014880984963383526, 0.02345959097146988, 0.008682453073561192, -0.0055785467848181725, 0.004687676206231117, -0.014437759295105934, -0.03761453554034233, -0.011213656514883041, -0.0031693074852228165, -0.0003718589141499251, 0.01386505737900734, 0.011687373742461205, -0.021847540512681007, 0.0010791199747473001, -0.01048540510237217, -0.012330779805779457, 0.017463890835642815, -0.016318487003445625, -0.0017499242676422, 0.015045814216136932, -0.008640030398964882, 0.016120515763759613, 0.015752853825688362, -0.022469734773039818, -0.017760848626494408, 0.00526391388848424, -0.006600219756364822, 0.02932802401483059, 0.010888418182730675, 0.011595457792282104, 0.01377314142882824, 0.0006778747192583978, -0.02657056786119938, 0.031788524240255356, 0.005681067239493132, 0.026641272008419037, -0.013667086139321327, -0.012861059978604317, 0.0077703711576759815, 0.01580941677093506, 0.011849992908537388, -0.02524133212864399, 0.004348296672105789, -0.03167539834976196, -0.006317403633147478, 0.013306495733559132, 0.012146949768066406, -0.025000939145684242, 0.01528620719909668, 0.012465117499232292, -0.005256843287497759, 0.007296653930097818, 0.012712582014501095, 0.0007278094417415559, -0.013150946237146854, 0.011411627754569054, 0.013454973697662354, 0.022695988416671753, 0.012231794185936451, 0.011121741496026516, -0.012896412052214146, -0.016869977116584778, -0.007692596409469843, 0.001120658591389656, 0.029045209288597107, -0.0019072407158091664, -0.016997244209051132, -0.011213656514883041, -0.0020433459430933, -0.026612991467118263, -0.011093460023403168, 0.004563943948596716, -0.003492778167128563, 0.002967800945043564, 0.005384110379964113, -0.008081468753516674, 0.0042174942791461945, 0.0081733837723732, -0.002780435374006629, 0.02133847028017044, -0.0030420401599258184, -3.651199585874565e-05, 0.005193209741264582, 2.4207838578149676e-05, -0.009608675725758076, 0.018595155328512192, 0.0009394795633852482, 0.0007927687256596982, 0.02382725290954113, -0.011835851706564426, 0.01662958413362503, -0.01619121991097927, -0.018354762345552444, 0.012960045598447323, -0.0007507882546633482, 0.008166313171386719, 0.0033990954980254173, -0.018863830715417862, 0.009615745395421982, -0.005857827607542276, -0.02488781325519085, -0.003072089282795787, 0.015045814216136932, -0.0036377215292304754, -0.003856903873383999, -0.005727025214582682, -0.005394716281443834, -0.014466040767729282, 0.0018789591267704964, -0.011637880466878414, -0.019061801955103874, -0.00915616936981678, -0.009184450842440128, 0.019160786643624306, 0.003095068270340562, 0.009368281811475754, 0.012740863487124443, 0.0041821422055363655, 0.0022360144648700953, -0.0010685144225135446, -0.02016478404402733, -0.009757153689861298, -0.0007675804663449526, 0.01698310486972332, 0.007010302972048521, -0.021267767995595932, 0.01026622299104929, -0.0008095609373413026, -0.008371355012059212, 0.0078057232312858105, -0.00968644954264164, 0.0028953293804079294, 0.011793429031968117, -0.0012841615825891495, -0.025891808792948723, 0.02170613221824169, 0.026386737823486328, 0.0027963437605649233, -0.010068251751363277, 0.010633883997797966, -0.010287433862686157, -0.021805116906762123, 0.0022077327594161034, 0.01003997027873993, 0.019839545711874962, 0.0024463587906211615, -0.0005192325916141272, -0.007678455673158169, 0.020433459430933, 0.005104829557240009, -0.007134034764021635, 0.02114049904048443, -0.012514610774815083, 0.003151631448417902, 0.010930840857326984, 0.024774685502052307, -0.010648024268448353, -0.0043023391626775265, 0.01079650316387415, -0.01590840332210064, -0.0011860597878694534, -0.013702437281608582, 0.01901938021183014, -0.03136429935693741, -0.021451598033308983, 0.009594534523785114, -0.011383346281945705, -0.01182171143591404, 0.022554580122232437, -0.011878274381160736, -0.013716578483581543, -0.0007158781518228352, 0.0147629976272583, 0.023502014577388763, 0.0392831489443779, -0.00022327002079691738, 0.018425466492772102, -0.018453747034072876, -0.022427313029766083, -0.020023375749588013, 0.02658470906317234, -0.0027751324232667685, -0.009297577664256096, -0.012776215560734272, -0.009403633885085583, 0.0025453444104641676, -0.014402407221496105, -0.022653566673398018, -0.03424902260303497, 0.013886268250644207, 0.008604678325355053, -0.010209659114480019, 0.008017835207283497, -0.01303074974566698, 0.010018758475780487, 0.006472952198237181, 0.024166632443666458, -0.018269916996359825, -0.0003977100714109838, -0.024958517402410507, 0.01999509520828724, 0.01654473878443241, 0.0021052120719105005, 0.006331544369459152, 0.009898561984300613, -0.004334155935794115, 0.0017128046602010727, -0.007678455673158169, -0.00473716901615262, -0.02835230901837349, -0.01910422369837761, -0.008328932337462902, 0.011680303141474724, 0.020207207649946213, -0.0032276383135467768, 0.023714125156402588, 0.011687373742461205, 0.014190295711159706, -0.027150340378284454, -0.01875070482492447, -0.0019655716605484486, 0.0030296670738607645, -0.006748698186129332, -0.00920566264539957, 0.0023986336309462786, -0.01723763905465603, 0.03866095468401909, 0.0016854068962857127, 0.016431612893939018, 0.014218577183783054, 0.011814640834927559, -0.0019143112003803253, 0.0005802147788926959, -0.004001847002655268, 0.017294201999902725, 0.008781438693404198, -0.0015581396874040365, -0.004309409763664007, -0.003948819357901812, 0.01948602683842182, 0.006950204260647297, -0.014112520962953568, 0.03470152989029884, 0.00350161618553102, 0.023615140467882156, 0.015158940106630325, 0.01716693490743637, 0.02870582975447178, 0.009149099700152874, -0.0012682531960308552, -0.020560726523399353, -0.0023862605448812246, 0.005727025214582682, 0.021197063848376274, 0.019514307379722595, 0.020560726523399353, 0.012677229940891266, -0.003683679038658738, -0.0024251476861536503, -0.012139879167079926, 0.005921461153775454, -0.0068936413154006, -0.012168160639703274, -0.008597607724368572, -0.017577018588781357, 0.013921620324254036, 0.02471812255680561, 0.020843543112277985, -0.003683679038658738, 0.0031480961479246616, 0.0031127440743148327, -0.00813803169876337, -0.013638803735375404, -0.002976638963446021, -0.0021688456181436777, -0.013709507882595062, -0.019174927845597267, 0.007756230421364307, -0.008095609955489635, -0.017661862075328827, 0.009212733246386051, 0.02249801717698574, 0.014819561503827572, 0.018425466492772102, -0.025099923834204674, -0.009552111849188805, 0.012458046898245811, 0.019585011526942253, 0.0018542127218097448, 0.002660238416865468, -0.006229023449122906, -0.0050942241214215755, 0.017025526612997055, -0.03340057656168938, 0.0007715575629845262, -0.00018990655371453613, 0.013857986778020859, -0.020235488191246986, -0.0048396894708275795, -0.0009483175817877054, 0.004641718231141567, -0.018114367499947548, 0.0055431947112083435, 0.0070279790088534355, 0.005794194061309099, -0.011340923607349396, 0.0005930298939347267, 0.00499877380207181, 0.012514610774815083, 0.006356291007250547, -0.03014819137752056, -0.016290204599499702, -0.0018577479058876634, 0.017011385411024094, -0.007211809512227774, -0.017831552773714066, -0.010259152390062809, -0.01279742643237114, 0.0005762376822531223, 0.021083936095237732, -0.028210900723934174, -0.02105565555393696, 0.0004032338329125196, -0.011984330601990223, 0.003409700933843851, -0.0016208895249292254, 0.004906858317553997, -0.006098221056163311, -0.0353802889585495, 0.023516153916716576, 0.013497396372258663, -0.017039667814970016, -0.0019867827650159597, 0.021635428071022034, -0.011680303141474724, -0.0008745202794671059, -0.014861983247101307, -0.0012355525977909565, -0.002960730576887727, 0.011934837326407433, -0.0018038360867649317, 0.026655413210392, 0.01565386913716793, 0.017746707424521446, -0.012465117499232292, 0.021267767995595932, -0.01400646474212408, 0.016502317041158676, -0.007727948483079672, 0.0027892733924090862, 0.008597607724368572, -0.010301575064659119, 0.019542589783668518, -0.00424224091693759, -0.010867206379771233, -0.00047018169425427914, 0.002674379386007786, 0.022823255509138107, -0.0006531283142976463, -0.0012010844657197595, 0.001042884192429483, 0.005794194061309099, -0.012974186800420284, 0.00306678656488657, 0.018467888236045837, -0.018722422420978546, 0.00628912216052413, 0.00469121104106307, -0.005405321717262268, 0.012585313990712166, -0.015611446462571621, 0.00995512492954731, 0.0073956395499408245, -0.003114511724561453, -0.0015687452396377921, 0.02221520058810711, 0.003959424793720245, -0.006522445008158684, 0.013115594163537025, -0.015583164058625698, -0.0010490708518773317, -0.0017702517798170447, 0.023586858063936234, -5.6673685321584344e-05, -0.003704890375956893, 0.016162937507033348, -0.022003088146448135, 0.004252846352756023, -0.0035687850322574377, -0.020306192338466644, -0.03297635167837143, -0.0028741180431097746, 0.0036518622655421495, 0.002225408796221018, -0.00036721897777169943, 0.009304648265242577, -0.007791582029312849, 0.009375352412462234, 0.00033142504980787635, -0.012790355831384659, 0.0021458668634295464, -0.011538894847035408, 0.014183225110173225, 0.0025806964840739965, 0.0039028616156429052, -0.004832619335502386, -0.009332929737865925, -0.014833701774477959, -0.029639123007655144, -0.004168001469224691, 0.019047660753130913, -0.0049209995195269585, -0.018623437732458115, -1.4361752619151957e-05, 0.010237941518425941, -0.00974301341921091, -0.016643725335597992, -0.0071022179909050465, 0.011588388122618198, -0.022158637642860413, -0.022992944344878197, -0.029497714713215828, -0.03255212679505348, 0.005854292307049036, -0.006055798847228289, -0.01359638199210167, -0.010068251751363277, 0.006536586210131645, -0.021621286869049072, -0.008915776386857033, 0.0030703218653798103, 0.0006292657344602048, 0.01017430704087019, 0.024590855464339256, -0.016997244209051132, 0.012189371511340141, 0.011687373742461205, 0.008505692705512047, -0.0130236791446805, 0.016162937507033348, 0.01626192219555378, 0.004822013899683952, -0.003909931983798742, 0.007883497513830662, -0.019358757883310318, 0.01453674491494894, -0.0019638040103018284, -0.00688657071441412, 0.003614742774516344, 0.018015382811427116, -0.012967116199433804, 0.01894867606461048, 0.001028743339702487, 0.022384891286492348, -0.025481726974248886, -0.006006306037306786, 0.015682149678468704, 0.010803572833538055, 0.009919772855937481, 0.0035599470138549805, -0.01177928876131773, -0.022526297718286514, 0.014819561503827572, -0.0009209197596646845, 0.013002468273043633, 0.021465739235281944, -0.011277290061116219, 0.013631734065711498, -0.002205965109169483, -0.04143255203962326, -0.0011038663797080517, -0.005401786416769028, -0.009849068708717823, 0.023784829303622246, -0.02524133212864399, -0.008852142840623856, -0.01532862987369299, 0.011121741496026516, 0.005928531289100647, 0.004744239151477814, 0.0015873051015660167, 0.00655426224693656, 0.0043518319725990295, 0.007607751991599798, 0.01172979548573494, 0.009778364561498165, -0.00511190015822649, 0.0028564422391355038, 0.0013787283096462488, 0.028663406148552895, -0.004175072070211172, 0.00628912216052413, -0.01644575409591198, 0.01876484416425228, 0.02017892524600029, -0.01301660854369402, 0.018623437732458115, -0.021380893886089325, 0.027235185727477074, 0.00968644954264164, -0.004440212156623602, -0.004373043309897184, -0.006310333032160997, -0.0012991862604394555, -0.009269296191632748, 0.008314792066812515, -0.00484676007181406, -4.399667523102835e-05, 0.01484784297645092, -0.0054583498276770115, 0.00011853969772346318, -0.03176024183630943, -0.005076548084616661, -0.028946222737431526, -0.0010579087538644671, -0.0025029219686985016, 0.013730719685554504, 0.016516458243131638, -0.00764310359954834, 0.011652021668851376, -0.007388569414615631, 0.00662143062800169, 0.0025170629378408194, 0.00338848982937634, 0.036483269184827805, 0.008081468753516674, -0.0025241333059966564, -0.0010729334317147732, -0.033032916486263275, 0.026047358289361, -0.007254231721162796, -0.016657864674925804, -0.007678455673158169, -0.005228561814874411, 0.001140102162025869, -0.010252081789076328, 0.01743561029434204, -0.011072248220443726, -0.02088596485555172, 0.010464194230735302, 0.014960968866944313, -0.019005239009857178, 0.013476184569299221, -0.009290507063269615, 0.011305571533739567, -0.018185071647167206, 0.0028034141287207603, -0.0034892430994659662, -0.007544117979705334, -0.026160484179854393, 0.0022572255693376064, -0.008074398152530193, -0.0010826551588252187, -0.027051355689764023, -0.009820787236094475, 0.010400560684502125, -0.0042174942791461945, 0.016021529212594032, 0.01534277107566595, 0.0014998088590800762, -0.0054229977540671825, -0.01017430704087019, 0.029299743473529816, -0.0016924772644415498, -0.008088539354503155, 0.006925458088517189, -0.008074398152530193, 0.007749159820377827, -0.003485707798972726, 0.008731945417821407, -0.021027373149991035, 0.01972641982138157, 0.010457123629748821, 0.016643725335597992, 0.008802649565041065, -0.018340621143579483, 0.014692293480038643, -0.02214449644088745, -0.0030915329698473215, 0.007367358077317476, 0.008456200361251831, -0.0008670079405419528, -0.013306495733559132, -0.005843686871230602, 0.025552431121468544, -0.012033822946250439, 0.01770428568124771, 0.020376896485686302, -0.006419924553483725, 0.007254231721162796, 0.004482634365558624, 0.025722119957208633, -0.02123948559165001, 0.01839718408882618, -0.016148796305060387, -0.004008917603641748, 0.009905632585287094, -0.018510309979319572, -0.012210583314299583, -0.007925920188426971, -0.023261619731783867, 0.011828781105577946, 0.006653247866779566, 0.01723763905465603, -0.014550886116921902, -0.003772058989852667, 0.007628962863236666, -0.005069477949291468, 0.006183065939694643, -0.0074804844334721565, 0.015964966267347336, 0.02836645022034645, 0.004814943298697472, -0.03931143134832382, -0.02436460368335247, 0.003087997669354081, 0.009071324951946735, -0.005914390552788973, 0.010895488783717155, 0.0004997890209779143, -0.005677532404661179, 0.022172778844833374, -0.0015634425217285752, -0.0032647578045725822, -0.0060416581109166145, -0.003722566179931164, 0.014147873036563396, 0.002464034827426076, -0.0020256699062883854, -0.005136646330356598, -0.014692293480038643, 0.006996162235736847, -0.006833543069660664, -0.013483255170285702, -0.005058872047811747, -0.030515851452946663, 0.012055033817887306, -0.008152172900736332, -0.015300348401069641, -0.01875070482492447, 0.011899485252797604, 0.0021547048818320036, 0.014890264719724655, -0.008555185981094837, 0.004867971409112215, 0.018651718273758888, -0.01883554831147194, 0.0003714170306921005, 0.0015696290647611022, -0.016233641654253006, -0.0009165007504634559, 0.00017189912614412606, 0.0054937019012868404, -0.006013376172631979, 0.007706737611442804, -0.033457137644290924, -0.003103906288743019, -0.011015685275197029, -0.015356911346316338, 0.0250716432929039, -0.013419621624052525, 0.011256079189479351, 0.00844912976026535, -0.020815260708332062, -0.00715878140181303, -0.01599324867129326, -0.010068251751363277, 0.006253770086914301, 0.03413589671254158, 0.01155303604900837, -0.01511651836335659, 0.011107600294053555, -0.025821106508374214, -0.02685338445007801, -0.018086086958646774, 0.0014547350583598018, -0.0064093186520040035, -0.0010110674193128943, 0.017308343201875687, 0.006561332382261753, 0.00446495832875371, -0.006027516908943653, -0.01831233873963356, 0.0032895042095333338, -0.008724874816834927, 0.0007172038313001394, 0.011503542773425579, -0.00047725209151394665, 0.0013972880551591516, -0.012337850406765938, -0.005985094700008631, 0.02044760063290596, 0.004334155935794115, 0.025467585772275925, -0.0005921461270190775, 0.0014573864173144102, 0.004069015849381685, -0.007466343697160482, 0.004616972059011459, -0.0020910711027681828, -0.017930537462234497, 0.010541968047618866, 0.011680303141474724, 0.036681242287158966, 0.013059031218290329, -0.026641272008419037, -0.028041211888194084, -0.0028122521471232176, -0.0029872446320950985, -0.001001345575787127, 0.00919859204441309, 0.013037820346653461, 0.013398410752415657, 0.01583769917488098, 0.00726837245747447, 0.0006606405950151384, 0.016134655103087425, -0.007126964628696442, -0.0024976192507892847, 0.0006155667942948639, -0.015950825065374374, 0.04010331630706787, 0.017718425020575523, -0.008364284411072731, -0.020518304780125618, 0.003151631448417902, 0.013688297010958195, -0.004284663125872612, -0.0008829163853079081, 0.02887551859021187, 0.00424577621743083, -0.002598372520878911, -0.006218418013304472, 0.009212733246386051, -0.008703663945198059, 0.007982483133673668, -0.005369969643652439, -0.012076245620846748, -0.012083316221833229, 0.0017269455129280686, -0.006218418013304472, -0.031336016952991486, -0.020815260708332062, -0.008024905808269978, -0.0008709850371815264, 0.0029377518221735954, 0.013440832495689392, 0.014388266950845718, 0.014013535343110561, 0.0009624583763070405, 0.01102982647716999, 0.007409780751913786, -0.009849068708717823, 0.004100832622498274, 0.0035086865536868572, -0.004857365507632494, 0.0019567336421459913, -0.01274793315678835, -0.013836774975061417, -0.018976956605911255, -0.0013698902912437916, 0.019330477342009544, -0.0159225445240736, -0.022512158378958702, 0.01253582164645195, -0.025312036275863647, 0.009764224290847778, 0.012359061278402805, 0.017718425020575523, 0.022809114307165146, -0.00897940993309021, -0.010598531924188137, -0.0033089478965848684, 0.0055431947112083435, -0.027942225337028503, 0.021762695163488388, -0.0077703711576759815, 0.0035811583511531353, 0.005596222821623087, -0.014444829896092415, 0.013405480422079563, 0.0011754542356356978, 0.025905949994921684, 0.0003170632990077138, 0.005893179681152105, 0.002007993869483471, 0.028380591422319412, 0.01856687292456627, 0.033994488418102264, -0.012436836026608944, 0.02054658532142639, 0.004867971409112215, -0.012585313990712166, -0.009587463922798634, 0.01715279370546341, -0.02719276398420334, 0.00020294261048547924, 0.017025526612997055, 0.012394413352012634, -0.02312021143734455, -0.007031514309346676, -0.011715655215084553, 0.012210583314299583, -0.007282513193786144, 0.004288198426365852, 0.011970189400017262, -0.003690749406814575, -0.006716881413012743, -0.019528448581695557, -0.005631574429571629, -0.025227192789316177, 0.0007410664111375809, 0.004627577494829893, -0.03736000135540962, 0.0007901173667050898, -0.0003479963052086532, -0.009219802916049957, -0.022342467680573463, -0.011659091338515282, -0.024209054186940193, -0.019500166177749634, -0.013766071759164333, 0.02177683636546135, 0.007855216041207314, -0.003310715314000845, 0.004171536769717932, 0.008548115380108356, -0.001456502708606422, -0.00871073454618454, -0.02470398135483265, 0.014395336620509624, -0.005521983373910189, 0.02384139411151409, 0.018453747034072876, 0.012790355831384659, 0.015526601113379002, -0.0017684841295704246, 0.004376578610390425, 0.009877350181341171, 0.020122362300753593, 0.018821408972144127, -0.011164163239300251, -0.0073461467400193214, -0.003144561080262065, -0.015752853825688362, 0.005939137190580368, 0.0027450833003968, 0.008046116679906845, -0.002660238416865468, -0.0229363813996315, -0.01053489837795496, 0.002513527637347579, -0.007332006003707647, -0.008541044779121876, 0.014607449062168598, -0.0015784670831635594, -0.0035051514860242605, 0.022158637642860413, -0.018114367499947548, 0.014055958017706871, 0.00844205915927887, -0.03798219561576843, 0.00538057554513216, 0.0295259952545166, 0.009799576364457607, 0.017987100407481194, 0.004751309752464294, -0.0018577479058876634, -0.0052497731521725655, 0.0200092364102602, -0.004532127175480127, 0.02194652520120144, 0.005359364207834005, 0.00598155939951539, -0.008237017318606377, 0.016459893435239792, 0.009983406402170658, -0.002683217404410243, 0.002704428508877754, -0.006677994038909674, -0.000721622840501368, -0.0357479490339756, 0.01226714625954628, -0.00526391388848424, 0.013264073058962822, 0.004185677506029606, 0.010259152390062809, 0.010315715335309505, 0.032863225787878036, -0.008244087919592857, -0.013857986778020859, -0.007501695770770311, -0.012691370211541653, -0.015526601113379002, -0.009983406402170658, -0.007897638715803623, -4.6316650696098804e-05, 0.025750402361154556, 0.0040937624871730804, -0.010259152390062809, -0.0017119209514930844, 0.009120817296206951, -0.01705380715429783, -0.007487555034458637, -0.003810946363955736, -0.0033283913508057594, 0.01893453486263752, 0.0022112680599093437, -0.020023375749588013, -0.0032895042095333338, -0.03897205367684364, 0.0020327402744442225, -0.020023375749588013, -0.016502317041158676, -0.008321862667798996, -0.025354459881782532, 0.022271763533353806, 0.011051037348806858, -0.005826010834425688, 0.02399694174528122, -0.017463890835642815, -0.008258229121565819, 0.008922846056520939, 0.013702437281608582, 0.030911793932318687, -0.019669856876134872, -0.0006076126010157168, 0.004571014549583197, -0.015512460842728615, -0.0022519228514283895, -0.013850916177034378, 0.011100529693067074, -0.011871203780174255, -0.008548115380108356, -0.018185071647167206, 0.009849068708717823, 0.007261302322149277, 0.004991703201085329, -0.003436214989051223, -0.009658168070018291, 0.003300109878182411, -0.022003088146448135, -0.01462159026414156, 0.0010110674193128943, 0.029384586960077286, -0.013370129279792309, 0.016488175839185715, 0.042988039553165436, 0.014720575883984566, -0.005415927618741989, 0.03040272556245327, -0.002971336245536804, -0.02160714566707611, 0.02579282410442829, -0.02073041722178459, 0.011362134478986263, -0.009431915357708931, -0.01821335405111313, 0.013179227709770203, 0.007020908407866955, -0.004966957028955221, 0.0035334329586476088, -0.002723872195929289, -0.0034415179397910833, -0.0018524451879784465, -0.003871044609695673, 0.00866831187158823, 0.023219197988510132, 0.02551000751554966, 0.0042281001806259155, 0.019174927845597267, -0.0011745704105123878, -0.007038584444671869, -0.0250716432929039, -0.0031357230618596077, -1.9788838471868075e-05, -0.023982800543308258, 0.0050942241214215755, -0.006741627585142851, 0.01505995448678732, -0.021112218499183655, -0.011036896146833897, 0.0017985333688557148, 0.0041786073707044125, 0.00942484475672245, -0.020744556561112404, -0.02248387597501278, 0.004298803862184286, 0.011913626454770565, -0.009014762006700039, 0.015385192818939686, 0.009304648265242577, 0.006830007769167423, 0.011425768956542015, -0.0137872826308012, 0.009290507063269615, -0.0032665254548192024, 0.005256843287497759, 4.706235995399766e-05, -0.02034861408174038, 0.01129143126308918, -0.006543656345456839, -0.013214579783380032, 0.002317324047908187, -0.040216442197561264, -0.00924808531999588, -0.0010676305973902345, 0.0011109368642792106, 0.002361514139920473, 0.0013964042300358415, 0.0009765991708263755, 0.02657056786119938, -0.019500166177749634, -0.017025526612997055, 0.011588388122618198, 0.037642817944288254, 0.007367358077317476, -0.007579470053315163, -0.005553800147026777, -0.007862286642193794, -0.03795391321182251, 0.009912702254951, 0.004553338512778282, -0.027715973556041718, 0.017195215448737144, -0.006091150920838118, 0.0021458668634295464, 0.025481726974248886, 0.01249339897185564, 0.00938242208212614, 0.0031905185896903276, 0.009255154989659786, -0.01760529913008213, -0.020108221098780632, 0.006865359842777252, 0.003492778167128563, 0.012726722285151482, -0.006731022149324417, -0.0012134576682001352, -0.006960810162127018, -0.013426692225039005, -0.0009986942168325186, 0.0061158970929682255, 0.0010473032016307116, -0.0063704317435622215, 0.017449749633669853, -0.02401108294725418, -0.01507409568876028, 0.0016783365281298757, 0.006752233020961285, 0.011369205079972744, 0.019316336140036583, 0.005387645680457354, -0.010054110549390316, -0.00027817609952762723, -0.024590855464339256, -0.015229644253849983, -0.016233641654253006, -0.003572320332750678, -0.023855533450841904, 0.006193671375513077, 0.004160931333899498, -0.004935140255838633, -0.014975110068917274, 0.007247161120176315, 0.007339076604694128, 0.021225344389677048, -0.021833399310708046, -0.0035511089954525232, 0.0031958213075995445, 0.01814264990389347, 0.004493239801377058, -0.007289583794772625, 0.004687676206231117, 0.00597802409902215, -0.009537971578538418, -0.012988327071070671, -0.01723763905465603, 0.011892414651811123, -0.00030778339714743197, 0.007826934568583965, -0.005465420428663492, 0.014147873036563396, 0.010944981127977371, 0.0015378122916445136, 0.022992944344878197, -0.00752997724339366, 0.0017843925161287189, -0.005942672491073608, -0.018877971917390823, -0.0016588929574936628, -0.01480542030185461, 0.0018718887586146593, -0.016785133630037308, 0.009636957198381424, -0.0015024603344500065, 0.0008745202794671059, -0.003565249964594841, 0.004341226536780596, -0.030346162617206573, 0.005019985139369965, 0.004574549850076437, 0.019839545711874962, 0.011432838626205921, 0.001099447370506823, -0.025439303368330002, -0.004974027164280415, 0.0015166010707616806, 0.025707978755235672, 0.0037013550754636526, -0.0001570954773342237, 0.004723028279840946, 0.006451741326600313, 0.0037897350266575813, 0.006239629350602627, -0.010047039948403835, 0.0029006320983171463, -0.012832778505980968, 0.0014618054265156388, 0.006801725830882788, -0.0016067486722022295, -0.035069189965724945, -0.01044298242777586, -0.01071165781468153, -0.0011100530391559005, -0.013850916177034378, -0.007049189880490303, -0.008498622104525566, 0.016558879986405373, -0.0026779144536703825, 0.005398251581937075, -0.008314792066812515, 0.017025526612997055, 0.02204551175236702, -0.016587162390351295, -0.008208735845983028, 0.0010313948150724173, 0.029016926884651184, 0.021621286869049072, -0.01804366335272789, -0.010110673494637012, 0.010103603824973106, 3.778245809371583e-05, -0.02330404333770275, 0.0070173731073737144, 0.01572457328438759, -0.01534277107566595, -0.028408871963620186, -0.014777138829231262, -0.004553338512778282, 0.023445451632142067, 0.004567479249089956, -0.001967339077964425, 0.01901938021183014, 0.009764224290847778, -0.015130658634006977, -0.005840151570737362, 0.008541044779121876, -0.00047769397497177124, -0.006356291007250547, -0.00047857780009508133, -0.010909629054367542, 0.011800499632954597, 0.017732566222548485, -0.01462159026414156, 0.010343996807932854, 0.010195518843829632, -0.005468955263495445, 0.03750140964984894, -0.005415927618741989, 0.005483095999807119, -0.028748251497745514, 0.008597607724368572, -0.025227192789316177, -0.007876426912844181, -0.009545042179524899, 0.01600738801062107, 0.001820628298446536, -0.0038745799101889133, 0.004221029579639435, -0.004807872697710991, -0.006193671375513077, 0.008541044779121876, -0.018722422420978546, 0.010584390722215176, -0.019627433270215988, -0.0013548656133934855, -0.001352214254438877, 0.012825707904994488, -0.0009819020051509142, 0.02773011475801468, -0.0024622671771794558, -0.0029872446320950985, -0.01957087032496929, 0.0031251173932105303, -0.004443747457116842, 0.02106979675590992, 0.0076855262741446495, 0.004369508009403944, 0.00012859291746281087, 0.005157857667654753, -0.013129735365509987, 0.017902256920933723, 0.019514307379722595, 0.014918547123670578, -0.010676305741071701, 0.0229363813996315, -0.005295730661600828, -0.007742089219391346, -0.02470398135483265, 0.012825707904994488, -0.010421771556138992, -0.0026142809074372053, -0.04570307582616806, 0.0038356927689164877, -0.020433459430933, 0.013051960617303848, -0.0037861999589949846, 0.004323550499975681], "1a7de58f-df68-474a-b536-a5204aea831b": [-0.0057716043666005135, -0.018691621720790863, -0.007821365259587765, 0.009915760718286037, 0.005569031927734613, -0.0408441461622715, 0.02759108506143093, 0.021026356145739555, -0.0007562140817753971, 0.021960251033306122, -0.01084965467453003, 0.0504302941262722, -0.020202333107590675, -0.03856434300541878, -0.03815232962369919, 0.02169930934906006, 0.0016574908513575792, 0.00230726832523942, 0.03603733703494072, -0.012744911015033722, 0.047820884734392166, -0.023759370669722557, -0.04092654585838318, 0.02321002073585987, 0.030928384512662888, -0.006207650527358055, 0.005215387791395187, -0.013610136695206165, -0.03076357953250408, -0.007821365259587765, 0.02726147510111332, -0.0009433362865820527, -0.00824711099267006, 0.020298467949032784, -0.0027072636876255274, -0.05018308758735657, -0.02114996127784252, -0.005551864393055439, 0.00509521784260869, -0.03046143613755703, -0.03208201751112938, 0.031367864459753036, 0.006252285558730364, 0.02038087137043476, -0.005345858633518219, 0.00900933425873518, -0.04254712909460068, 0.017441850155591965, 0.013012719340622425, 0.025531023740768433, -0.029033128172159195, -0.03208201751112938, -0.03394980728626251, 0.039470769464969635, 0.037877656519412994, -0.015422990545630455, 0.02565462701022625, 0.09168644994497299, 0.007416219916194677, -0.04004758596420288, 0.025764496996998787, -0.03452662378549576, 0.02568209543824196, 0.014475362375378609, -0.023745637387037277, 0.019845254719257355, -0.018719088286161423, 0.003570772474631667, -0.018925094977021217, 0.001382816000841558, 0.0061527155339717865, 0.03551545366644859, -0.025338752195239067, 0.02077914960682392, 0.01800493337213993, -0.0017991199856624007, -0.00661966297775507, -0.0035364381037652493, 0.026615988463163376, -0.030571306124329567, 0.013740607537329197, -0.007965569384396076, 0.014846173115074635, -0.026313846930861473, 0.026904398575425148, -0.003145026508718729, 0.00030064015300013125, -0.017895063385367393, -0.01844441331923008, -0.02088901959359646, 0.014159486629068851, 0.03329058736562729, -0.0019158568466082215, -0.010053098201751709, -0.012827313505113125, 0.005520963575690985, -0.024171384051442146, 0.013397264294326305, 0.021053824573755264, 0.015546594746410847, 0.021122492849826813, 0.023745637387037277, 0.0025270082987844944, 0.042244985699653625, -0.00701450789347291, -0.0138230100274086, 0.027494948357343674, 0.005496929865330458, 0.0008047113660722971, 0.01543672475963831, 0.005160452798008919, -0.02928033471107483, -0.026149041950702667, 0.01845814660191536, -0.03480129688978195, 0.010087432339787483, -0.01678263023495674, -0.02480313554406166, 0.018980029970407486, -0.047463808208703995, -0.01959804818034172, -0.027000533416867256, -0.0031003919430077076, -0.015477925539016724, 0.0020137096289545298, -0.002357053104788065, -0.025379952043294907, 0.022578269243240356, 0.018622951582074165, -0.0006652280571870506, 0.0018386045703664422, -0.02840137481689453, 0.008363847620785236, -0.010149233974516392, 0.02090275287628174, 0.0003242450184188783, 0.008288312703371048, 0.05100711062550545, 0.01180415041744709, 0.03090091608464718, -0.0021802312694489956, -0.02084781788289547, 0.01102819386869669, 0.010554379783570766, 0.01968044973909855, -0.015835002064704895, -0.04449731856584549, 0.007471154909580946, -0.019913922995328903, 0.0005446286522783339, -0.057846516370773315, -0.033757533878088, -0.0009278858196921647, -0.030351566150784492, 0.022907879203557968, -0.024542193859815598, -0.01421442162245512, 0.0305163711309433, -0.015793802216649055, 0.008288312703371048, 0.00824024435132742, -0.021905316039919853, 0.016549156978726387, -0.014104551635682583, -0.004494366701692343, 0.02601170539855957, 0.005795638542622328, 0.010059964843094349, -0.03392234072089195, 0.009847091510891914, 0.014324291609227657, 0.00721021369099617, -0.005284056533128023, -0.02848377823829651, -0.003996518440544605, -0.013177524320781231, 0.030653709545731544, 0.019337106496095657, 0.03153266757726669, 0.007684027776122093, 0.005222254898399115, 0.003972484264522791, 0.034609027206897736, -0.004439431708306074, -0.03232922405004501, -0.004480632953345776, 0.04002011939883232, 0.04337115213274956, -0.003965617623180151, -0.012140627019107342, -0.010705450549721718, -0.026712125167250633, -0.002545892260968685, 0.03894888982176781, -0.0029355869628489017, -0.049029454588890076, 0.01762038841843605, -0.009524349123239517, -0.0014686519280076027, -0.0004909812123514712, -0.007217080798000097, -0.03655921667814255, 0.017716525122523308, 0.046749651432037354, -0.015409257262945175, -0.0013390396488830447, -0.027371345087885857, 0.006080613471567631, 0.0013673655921593308, -0.01837574504315853, 0.017743993550539017, -0.004690072499215603, -0.01849934831261635, -0.006118381395936012, -0.0010446226224303246, 0.012532038614153862, -0.015944872051477432, 0.02123236283659935, 0.00672266585752368, -0.03875661641359329, 0.008096040226519108, -0.012868515215814114, -0.007052275817841291, -0.03570772707462311, -0.058285996317863464, -0.016178347170352936, -0.014722569845616817, -0.0012944050831720233, -0.005514096934348345, -0.008851395919919014, 0.03606480360031128, 0.0159998070448637, 0.018622951582074165, -0.01675516366958618, -0.0014901108806952834, 0.017428116872906685, 0.07212960720062256, 0.007903767749667168, -0.005383626092225313, -0.033015910536050797, 0.002995672170072794, 0.009050535038113594, 0.011096862144768238, -0.006533827167004347, 0.009668553248047829, -0.028621114790439606, -0.03600986674427986, -0.002272933954373002, 0.02042207308113575, 0.006314087193459272, -0.008576720952987671, 3.6426601582206786e-05, 0.020724214613437653, -0.013108855113387108, -0.04295913875102997, 0.006585328374058008, 0.03208201751112938, 0.007272015791386366, -0.0057647377252578735, -0.022179991006851196, 0.001793969888240099, -0.005043716169893742, -0.005318391136825085, -0.01762038841843605, 0.018197206780314445, -0.004854877479374409, -0.015574061311781406, -0.025764496996998787, 0.009325210005044937, -0.011728614568710327, -0.03603733703494072, -0.023416027426719666, 0.0172495786100626, -0.025846900418400764, -0.033894870430231094, 0.009709754958748817, -0.004480632953345776, 0.015079647302627563, 0.017483051866292953, -0.0007308925269171596, 0.006461725104600191, -0.05276503041386604, -0.005500363186001778, 0.027508681640028954, 0.016521690413355827, 0.023814305663108826, -0.021328499540686607, 0.004659171681851149, -0.002913269679993391, -0.022125056013464928, -0.013026452623307705, -0.015697665512561798, 0.03043396957218647, 0.03334552049636841, -0.026931865140795708, -0.014571499079465866, 0.009325210005044937, -0.04078920930624008, -0.01602727547287941, 0.022701872512698174, -0.012463369406759739, -0.016164612025022507, -0.04757367819547653, 0.0013673655921593308, 0.08295179158449173, -0.02770095504820347, 0.03403221070766449, -0.02801682986319065, 0.029967021197080612, 0.025874366983771324, 0.014942309819161892, -0.025901835411787033, -0.016576625406742096, -0.022674405947327614, -0.014763770624995232, -0.01440669409930706, 0.0032051117159426212, -0.021726777777075768, -0.0007390468963421881, -0.04131109267473221, 0.028181634843349457, 0.01142647210508585, -0.0520508773624897, 0.05325944721698761, 0.026162775233387947, 0.002338169375434518, -0.02330615743994713, -0.017524253576993942, 0.009332076646387577, -0.03557038679718971, -0.034224480390548706, -0.00858358759433031, -0.03573519363999367, -0.00804110523313284, -0.0038111130706965923, -0.05075990408658981, -0.03079104609787464, -0.06531766802072525, 0.014516564086079597, 0.029005659744143486, -0.0016222981503233314, 0.005905508529394865, -0.009098603390157223, 0.009771556593477726, -0.004724406637251377, -0.0369986966252327, -0.010114899836480618, -0.005939842667430639, -0.045101605355739594, 0.012078824453055859, 0.000724454817827791, 0.009119203314185143, 0.026588521897792816, 0.014544031582772732, -0.015216984786093235, -0.0022489000111818314, -0.019488178193569183, -0.027371345087885857, -0.007903767749667168, -0.01643928699195385, -0.024926738813519478, -0.003011122578755021, -0.0038935153279453516, -0.004628270398825407, 0.0018403212307021022, 0.0012429035268723965, 0.03010435961186886, 0.029088063165545464, 0.002532158512622118, -0.003570772474631667, -0.010746652260422707, 0.016672760248184204, 0.0027896659448742867, 0.00021823772112838924, -0.023910442367196083, -0.0023004014510661364, 0.02645118348300457, -0.007519222795963287, -0.01757918857038021, 0.001644615433178842, -0.023498430848121643, 0.013170656748116016, -0.07916127890348434, -0.03007689118385315, 0.028950724750757217, -0.03892141953110695, 0.015148315578699112, 0.019735384732484818, 0.012367233633995056, 0.019144834950566292, -0.025366218760609627, 0.04403037205338478, 0.03801499307155609, -0.02878591977059841, 0.011392137967050076, -0.0030008223839104176, -0.002647178480401635, -0.02238599769771099, 0.01837574504315853, 0.009593017399311066, -0.00839131511747837, 0.013987815007567406, -0.002075511496514082, 0.006145848892629147, 0.05658300966024399, -0.037410710006952286, -0.01965298317372799, -0.01362387090921402, -0.0031673440244048834, -0.013706273399293423, 0.0021476137917488813, -0.004720973316580057, -0.007718362379819155, 0.031450264155864716, 0.02164437435567379, -0.006842836271971464, 0.027357611805200577, -0.005332124885171652, -0.0216718427836895, -0.00652009341865778, 0.01963924989104271, 0.01877402327954769, -0.004175057169049978, 0.011392137967050076, 0.011838484555482864, 0.026519853621721268, -0.036202140152454376, 0.041008949279785156, 0.01163247786462307, 0.019611781463027, -0.03697123005986214, 0.03727337345480919, 0.036641620099544525, 0.020545676350593567, -0.012332898564636707, -0.014042750000953674, 0.003424851456657052, 0.0148187056183815, 0.018293341621756554, 0.008006771095097065, -0.012456502765417099, 0.015464192256331444, 0.024665797129273415, 0.03120305761694908, -0.00740248616784811, -0.04284926876425743, -0.020683012902736664, -0.04534881189465523, 0.023457229137420654, 0.010368973948061466, 0.015862470492720604, 0.030653709545731544, 0.014530297368764877, -0.01163247786462307, 0.01925470493733883, 0.0019330240320414305, 0.002523574745282531, -0.003817979944869876, -0.011934620328247547, -0.015793802216649055, -0.015917405486106873, 0.0021424635779112577, 0.0025441753678023815, 0.05081484094262123, 0.07240428030490875, 0.010307172313332558, 0.013884811662137508, -0.02201518602669239, 0.020271001383662224, 0.04845263808965683, 0.009112336672842503, 0.005582765676081181, -0.023127619177103043, 0.0072994832880795, 0.006163015961647034, -0.024926738813519478, -0.02289414592087269, 0.04537627846002579, -0.018307076767086983, -0.0022780841682106256, 0.022331062704324722, -0.016961170360445976, -0.01727704517543316, 0.009132937528192997, -0.010822187177836895, 0.02127356454730034, -0.0037115432787686586, -0.005829972680658102, -0.006877170410007238, 0.0024274387396872044, 0.01718091033399105, -0.0006802493589930236, -0.011502007953822613, -0.031065721064805984, -0.003469486255198717, 0.00010241293057333678, 0.041036415845155716, 0.007587891537696123, -0.04565095528960228, -0.0172495786100626, 0.04089907929301262, 0.01874655671417713, -0.03351032733917236, 0.03400474041700363, 0.03004942461848259, 0.03441675379872322, -0.0232237558811903, 0.014049616642296314, -0.019543113186955452, 0.012758645229041576, -0.0014386093243956566, 0.019034964963793755, -0.023759370669722557, 0.019721651449799538, 0.001908989972434938, -0.008700324222445488, -0.03856434300541878, 0.018224673345685005, 0.02169930934906006, 0.007910634391009808, 0.0056686014868319035, -0.018114803358912468, -0.021932784467935562, 0.02283921092748642, 0.010533778928220272, 0.00520165404304862, -0.027151605114340782, -0.018087336793541908, 0.01202388945966959, 0.0012952634133398533, -0.018224673345685005, -0.00012961217726115137, 0.01683756522834301, -0.014653901569545269, -0.039937715977430344, -0.005644567310810089, -0.039882782846689224, -0.0036806424614042044, 0.02407524734735489, -0.008528652600944042, 0.0011982688447460532, 0.04974360764026642, 0.0027381645049899817, 0.005836839787662029, 0.027343876659870148, 0.023155085742473602, -0.01480497233569622, 0.05531950667500496, -0.010897723026573658, 0.0015012695221230388, 0.0305163711309433, -0.03202708438038826, -0.02001005969941616, -0.03326312080025673, 0.01564273051917553, -0.01084278803318739, 0.02636878192424774, -0.021548239514231682, -0.00844625011086464, 0.003308114828541875, 0.007615359034389257, 0.0062316847033798695, -0.01602727547287941, 0.009668553248047829, 0.005874607712030411, -3.961862239520997e-05, -0.021919049322605133, 0.005476329009979963, -0.025091543793678284, 0.013129455968737602, 0.02686319686472416, -0.007169012445956469, 0.02158943936228752, -0.003975918050855398, 0.0028943857178092003, 0.007189613301306963, -0.02804429829120636, -0.010616181418299675, -0.013795542530715466, 0.006190483458340168, 0.03268630430102348, -0.018622951582074165, -0.008288312703371048, -0.0010102882515639067, 0.0014471928589046001, 0.03117559105157852, -0.009860825724899769, -0.041008949279785156, -0.007004207465797663, 0.023896709084510803, -0.00022403163893613964, 0.03831713646650314, 0.015944872051477432, -0.0022986847907304764, -0.01796373352408409, 0.037108566612005234, 0.0019690750632435083, -0.007773297373205423, 0.04169563576579094, 0.00048454353236593306, 0.01558779552578926, 0.011337202973663807, -0.0016489072004333138, 0.0031347263138741255, -0.03485623374581337, 0.007780164014548063, -0.004164756741374731, 0.01440669409930706, -0.03048890456557274, -0.02889578975737095, -0.03535064682364464, -0.005527830682694912, 0.024500994011759758, -0.006949272938072681, 0.00999816320836544, -0.0019210069440305233, 0.016659026965498924, -0.004147589672356844, -0.005524397362023592, -0.022688139230012894, -0.020916486158967018, -0.014077084138989449, 0.028950724750757217, -0.03249403089284897, 0.026203976944088936, -0.02282547764480114, 0.043481022119522095, -0.01799120008945465, 0.013342329300940037, 0.032576434314250946, 0.017400648444890976, -0.014392959885299206, -0.01598607376217842, -0.004628270398825407, 0.04977107420563698, -0.01635688543319702, 0.01968044973909855, -0.02007872797548771, -0.021328499540686607, -0.019309639930725098, 0.0020634944085031748, 0.002288384595885873, -0.002846317831426859, -0.02402031235396862, -0.01078785303980112, 0.026986800134181976, -0.03675149008631706, 0.04853503778576851, 0.009860825724899769, 0.01480497233569622, -0.00539735984057188, -0.016178347170352936, -0.03881154954433441, 0.017689058557152748, 0.021932784467935562, -0.004229992162436247, 0.026547320187091827, -0.014283089898526669, 0.0013570652808994055, 0.03600986674427986, -0.0006240268121473491, -0.016727695241570473, 0.00780076440423727, 0.011048794724047184, 0.03782271966338158, -0.0027450313791632652, 0.020147398114204407, -0.022935345768928528, 0.02881338819861412, 0.0017853862373158336, 0.0023141351994127035, -0.04257459565997124, 0.015835002064704895, -0.029582476243376732, 0.006702065467834473, -0.009345810860395432, -0.013877945020794868, -0.02360830083489418, -0.014901108108460903, 0.01044450979679823, 8.851825259625912e-05, -0.016535423696041107, -0.05045776441693306, 0.01722211018204689, 0.0037081099580973387, -0.001515003270469606, -0.024198850616812706, 0.0352407768368721, -0.033867403864860535, -0.028154168277978897, 0.029939554631710052, 0.006492625921964645, -0.022234926000237465, 0.023045215755701065, 0.009744089096784592, -0.015477925539016724, -0.0038385805673897266, -0.01402214914560318, 0.018568016588687897, -0.013150056824088097, -0.04433251544833183, -0.011508874595165253, 0.011776682920753956, -0.033839937299489975, 0.0220426544547081, 0.043810632079839706, -0.0052050878293812275, -0.017386915162205696, 0.012875381857156754, -0.0019158568466082215, -0.013699405826628208, 0.027467481791973114, 0.014626434072852135, -0.0032566131558269262, 0.005555298179388046, 0.022646937519311905, 0.0012652208097279072, 0.03562532365322113, -0.039498236030340195, 0.016919968649744987, 0.025160212069749832, 0.008329513482749462, 0.010341506451368332, -0.03804245963692665, -0.01968044973909855, 0.0014823856763541698, -0.006489192601293325, 0.0001678091357462108, -0.015546594746410847, 0.005074616987258196, -0.014379226602613926, -0.015368055552244186, -0.023828038945794106, -0.004834276624023914, -0.014653901569545269, -0.016233282163739204, -0.023512164130806923, 0.02840137481689453, 0.028703518211841583, -0.02480313554406166, -0.02770095504820347, -0.028264038264751434, 0.03241162747144699, -0.013726873323321342, -0.008061706088483334, -0.017867596819996834, 0.036229606717824936, -0.027069201692938805, -0.019529379904270172, -0.03447168692946434, 0.011062528006732464, -0.008466850966215134, 0.039415836334228516, 0.01919976994395256, 0.0065097929909825325, -0.013946613296866417, 0.05900014936923981, 0.02121862955391407, -0.003605106845498085, 0.0449642650783062, -0.022701872512698174, -0.014338024891912937, -0.019735384732484818, -0.00269696325995028, 0.02570956200361252, -0.02606664039194584, -0.017689058557152748, 0.0263962484896183, 0.030131826177239418, -0.007423086557537317, 0.02679452858865261, 0.027810825034976006, -0.00043046692735515535, 0.016233282163739204, -0.005696068983525038, 0.03276870399713516, 0.002866918221116066, 0.0005557872937060893, 0.01141960546374321, -0.013575802557170391, -0.01279984600841999, -0.026904398575425148, 0.009373278357088566, -0.039470769464969635, 0.013994681648910046, -0.034636493772268295, 0.020586876198649406, -0.0026643455494195223, -0.022907879203557968, 0.024240052327513695, -0.004229992162436247, -0.03609227016568184, -0.009311475791037083, -0.004092654678970575, 0.0007781022577546537, 0.006104647647589445, 0.0038111130706965923, -0.024706998839974403, 0.011982688680291176, 0.020243532955646515, -0.003570772474631667, -0.0038866486866027117, 0.03405967727303505, 0.023127619177103043, -0.014750037342309952, -0.00032081158133223653, -0.012662508524954319, -0.02330615743994713, -0.01604100875556469, -0.0033029646147042513, 0.015848737210035324, 0.00842565018683672, -0.023759370669722557, 0.007175879552960396, -0.02723400667309761, -0.007903767749667168, 0.007656560279428959, 0.03040650114417076, -0.00471410620957613, 0.015821268782019615, -0.016672760248184204, -0.018156005069613457, -0.0012832463253289461, -0.002633444732055068, 0.0031244258861988783, -0.004545867908746004, 0.07916127890348434, -0.013781808316707611, 0.0142281549051404, 0.007436820305883884, 0.004957880359143019, -0.016672760248184204, -0.017386915162205696, 0.034306883811950684, -0.015107114799320698, 0.0042059579864144325, -0.02520141378045082, 0.002616277663037181, -0.023882973939180374, 0.024926738813519478, -0.005153586156666279, -0.02444605901837349, -0.020751681178808212, -0.012895982712507248, 0.011062528006732464, 0.0051261186599731445, 0.029362738132476807, -0.008810194209218025, 0.0074299536645412445, 0.040706805884838104, 0.0003257471544202417, -0.0284563098102808, -0.0263962484896183, 0.013843610882759094, -0.009723488241434097, 0.014434161596000195, -0.019872723147273064, -0.02808550000190735, -0.029802216216921806, -0.005963876843452454, 0.03570772707462311, 0.007780164014548063, -0.008981866762042046, -0.01887015998363495, 0.01567019708454609, -0.0008849679143168032, 0.007615359034389257, -0.014640167355537415, 0.012552638538181782, 0.0024909572675824165, 0.006743266712874174, 0.01925470493733883, 0.03491116687655449, 0.009174138307571411, -0.00451496709138155, 0.002271217294037342, -0.05325944721698761, 0.02881338819861412, -0.03397727385163307, -0.007773297373205423, 0.012552638538181782, 0.03414208069443703, -0.003141593188047409, 0.004916679114103317, -0.028264038264751434, -0.016576625406742096, 0.018320810049772263, 0.0046076700091362, -0.012319165281951427, -0.008013637736439705, -0.019144834950566292, -0.03765791654586792, 0.04326128214597702, -0.009977562353014946, -0.005702935624867678, 0.01807360164821148, 0.03447168692946434, 0.00979902409017086, 0.00034999579656869173, -0.0008115782402455807, 0.020353402942419052, -0.03084598109126091, -0.01799120008945465, -0.006729532964527607, 0.016906235367059708, -0.032658834010362625, 0.031120656058192253, 0.0046660383231937885, 0.006097781006246805, -0.0034471689723432064, 0.03881154954433441, -0.005325257778167725, -0.011089995503425598, 0.02125983126461506, 0.04812302812933922, -0.017826395109295845, 0.0006047137430869043, 0.031120656058192253, -0.0048480103723704815, 0.004683205392211676, -0.018636686727404594, 0.024569662287831306, 0.0384819395840168, 0.0003356182714924216, -0.004631704185158014, 0.0047450074926018715, -0.040184926241636276, 0.00981275737285614, 0.006849702913314104, 0.036229606717824936, -0.027082936838269234, 0.01767532341182232, 0.003907249309122562, -0.011261667124927044, 0.010959524661302567, -0.01038270816206932, 0.007931235246360302, 0.016645293682813644, -0.02561342529952526, -0.01891135983169079, -0.0263962484896183, 0.009098603390157223, 0.03458155691623688, -0.012669376097619534, -0.013788675889372826, -0.002005126094445586, -0.01649422198534012, 0.015944872051477432, 0.002533875172957778, 0.00200855964794755, -0.007876300252974033, 0.03367513045668602, -0.002861768240109086, 0.03441675379872322, -0.0005609374493360519, 0.006568161305040121, 0.0038729149382561445, 0.021877849474549294, 0.03554292023181915, -0.006835969164967537, -0.012236762791872025, -0.002981938421726227, -0.019076164811849594, 0.005661734379827976, -0.051831137388944626, -0.005301224067807198, 0.011666812933981419, -0.00779389776289463, 0.01723584346473217, -0.0098058907315135, 0.009572417475283146, 0.011323468759655952, 0.02160317450761795, -0.022537067532539368, -0.00798617023974657, 0.023800572380423546, -0.012895982712507248, -0.00642052385956049, -0.0024772235192358494, -0.009352677501738071, 0.023882973939180374, 0.00883766170591116, -0.008562987670302391, 0.001232603215612471, 0.008906330913305283, 0.054275743663311005, 0.0058677406050264835, 0.007677161134779453, 9.254180622519925e-05, 0.03606480360031128, -0.005544997751712799, -0.023319890722632408, -0.013410997577011585, -0.039910249412059784, 0.017016105353832245, -0.033043380826711655, -0.03966304287314415, -0.02724774181842804, 0.00652696006000042, -0.012538905255496502, -0.018595485016703606, -0.00819904264062643, 0.009647952392697334, -0.010959524661302567, 0.007663427386432886, 0.009476280771195889, -0.032658834010362625, 0.0010154384654015303, 0.015477925539016724, 0.008047971874475479, 0.005637700669467449, -0.0033029646147042513, -0.0017381765646860003, -0.019611781463027, 0.015917405486106873, -0.010087432339787483, 0.007677161134779453, -0.044991735368967056, -0.010815320536494255, 0.028978193178772926, 0.004178490489721298, -0.006550994236022234, -0.024967940524220467, 0.011907152831554413, -0.02084781788289547, 0.019831521436572075, 0.002125296276062727, -0.014983510598540306, 0.01727704517543316, 0.022976547479629517, 0.0042093913070857525, -0.01957057975232601, 0.006396489683538675, -0.02406151406466961, 0.00015654318849556148, -0.04438744857907295, 0.02606664039194584, -0.049798544496297836, 0.010719184763729572, -0.019076164811849594, -0.024281254038214684, 0.01319125760346651, -0.008013637736439705, 0.02605290524661541, 0.005682335235178471, -0.007278882432729006, 0.002223149174824357, 0.0014669351512566209, -0.028291504830121994, 0.0064102234318852425, -0.00032059699879027903, -0.0033458825200796127, -0.012552638538181782, 1.0763014870462939e-05, 0.004741573706269264, -0.007278882432729006, -0.010684849694371223, -0.005232555326074362, -0.03084598109126091, 0.019089899957180023, -0.007155278697609901, 0.0207928828895092, 0.04078920930624008, -0.012147493660449982, 0.01325305923819542, -0.0228529442101717, 0.014942309819161892, 0.01918603479862213, 0.007725229021161795, -0.009682287462055683, -0.019872723147273064, 0.02242719754576683, -0.01919976994395256, 0.005438561085611582, -0.0006926955538801849, -0.005606799386441708, -0.0031381596345454454, -0.0035364381037652493, 0.002235166262835264, -0.011907152831554413, -0.009757822379469872, 0.013294260948896408, -0.029939554631710052, -0.016329417005181313, -0.009544949978590012, 0.03007689118385315, 0.005737270228564739, 0.008590455166995525, -0.016700228676199913, -0.02088901959359646, -0.02525634877383709, -0.034279417246580124, 0.012078824453055859, 0.015889937058091164, -0.022097589448094368, -0.016178347170352936, -0.014598966576159, 0.016576625406742096, 0.015368055552244186, -0.00431926129385829, 0.025874366983771324, -0.013005852699279785, 0.002981938421726227, 0.0009596451418474317, 0.021836647763848305, 0.020119929686188698, 0.0065132263116538525, 0.00817157607525587, 0.02602543868124485, 0.002976788207888603, 0.012319165281951427, 0.012147493660449982, 0.00220426544547081, 0.00240512122400105, 0.00012306719145271927, 0.020216066390275955, -0.0017750859260559082, -0.008597321808338165, -0.009050535038113594, -0.008521785959601402, -0.005833406466990709, 0.0051055182702839375, 0.002714130561798811, 0.019749118015170097, 0.01065738219767809, 0.014544031582772732, 0.0005394784966483712, 0.011783549562096596, 0.002700396813452244, 0.018087336793541908, -0.01123419962823391, -0.018952561542391777, 0.02529755048453808, 0.0031209925655275583, 0.01043764315545559, 0.011502007953822613, 0.003409401047974825, -0.009627352468669415, -0.028758453205227852, 0.016645293682813644, -0.0021304464899003506, 0.0007978444918990135, 0.008205910213291645, -0.002583659952506423, 0.017373181879520416, 0.010739784687757492, -0.019419509917497635, -0.019488178193569183, -0.0020961121190339327, -0.002997388830408454, 0.0022763675078749657, -0.03004942461848259, 0.015889937058091164, 0.0024926739279180765, -0.001218011137098074, -0.012312298640608788, -0.031038254499435425, 0.0060462793335318565, 0.02928033471107483, -0.01799120008945465, -0.012360366061329842, -0.016315683722496033, -0.00460423668846488, 0.004168190062046051, -0.013603270053863525, -0.014447894878685474, 0.014447894878685474, 0.009235940873622894, 0.025901835411787033, -0.01045137643814087, 0.008281445130705833, -0.0025527591351419687, 0.0030866581946611404, 0.03167000412940979, -0.004734707064926624, 0.015876203775405884, -0.02723400667309761, 0.004374196287244558, 0.020202333107590675, -0.00750548904761672, 0.022921612486243248, 0.021548239514231682, -0.007134678307920694, 0.014791238121688366, -0.01845814660191536, -0.02925286814570427, -0.028676049783825874, 0.013541468419134617, -0.01323932595551014, 0.01524445228278637, 0.031038254499435425, 0.0035639056004583836, -0.02399284392595291, -0.0038420138880610466, 0.01723584346473217, 0.01760665513575077, 0.0040068188682198524, -0.028923258185386658, 0.006200783886015415, 0.023910442367196083, -0.006344988010823727, -0.015835002064704895, -0.008762126788496971, -0.024720732122659683, -0.016137145459651947, -0.014392959885299206, -0.031862277537584305, -0.00863165594637394, 0.005761303938925266, -0.00750548904761672, -0.007841966114938259, 0.023416027426719666, -0.0032188454642891884, 0.006417090073227882, 0.004460032097995281, 0.019144834950566292, -0.021465836092829704, -0.014585232362151146, -0.013912279158830643, 0.007134678307920694, 0.010458243079483509, -3.897485294146463e-05, -0.027920695021748543, -0.022509600967168808, -0.0032806473318487406, 0.013994681648910046, -0.02046327292919159, -0.0012471952941268682, 0.0017313096905127168, -0.013617003336548805, 0.02487180382013321, -0.011605010367929935, 0.010533778928220272, 0.005716669373214245, 0.020957687869668007, -0.00981275737285614, -0.020257268100976944, -0.048699844628572464, -0.02164437435567379, 0.02201518602669239, -0.018966294825077057, -0.012772378511726856, 0.047436341643333435, 0.029197933152318, 0.01847188174724579, 0.01848561502993107, -0.014351759105920792, -0.010774119757115841, -0.011701147072017193, 0.02076541632413864, 0.010568113066256046, 0.0005338991759344935, -0.01918603479862213, -0.0011871102033182979, 0.008528652600944042, -0.023718170821666718, -0.0006858286797069013, 0.02281174249947071, 0.020669279620051384, -0.0043810633942484856, -0.025462355464696884, 0.007457421161234379, 0.009332076646387577, -0.015134582296013832, 0.013871078379452229, -0.02809923328459263, -0.0035845062229782343, -0.009064268320798874, 0.01762038841843605, 0.015368055552244186, 0.006643697153776884, -0.0037939457688480616, 0.0031227092258632183, 0.023731904104351997, -0.013596403412520885, 0.0172495786100626, 0.0024909572675824165, -0.029390204697847366, -0.0132324593141675, -0.0013029886176809669, 0.017139708623290062, 0.000970803783275187, -0.005232555326074362, -0.007896901108324528, 0.010959524661302567, 0.028154168277978897, -0.009270275011658669, -0.007491755299270153, -0.002647178480401635, -0.005809372290968895, 0.011048794724047184, -0.00883766170591116, -0.00471067288890481, 0.01564273051917553, -0.02768722176551819, 0.009826491586863995, -0.02485807053744793, -0.023374825716018677, 0.014104551635682583, 0.03521331027150154, -0.0199825931340456, 0.018265875056385994, -0.017414383590221405, -0.004264326300472021, -0.002336452715098858, -0.02601170539855957, -0.02084781788289547, -0.013369796797633171, -0.0066093625500798225, -0.018705355003476143, -0.006255718879401684, -0.01678263023495674, 0.009126070886850357, -0.002537308493629098, 0.002762198681011796, 0.00760162528604269, -0.02200145274400711, -0.01403588242828846, -0.013603270053863525, -0.005119252018630505, 0.01079471968114376, 0.009853959083557129, 0.01884269155561924, -0.0031484600622206926, 0.004161323420703411, 0.00959988497197628, 0.0213010311126709, 0.00043583166552707553, 0.008274578489363194, 0.014736304059624672, 0.03732830658555031, 0.024308720603585243, -0.02840137481689453, 0.0009905460756272078, 0.013699405826628208, 0.020586876198649406, 0.001842038007453084, -0.028538713231682777, -0.014104551635682583, -0.014722569845616817, -0.021328499540686607, -0.02437738887965679, -0.0002731726854108274, 0.018554283306002617, -0.013788675889372826, 0.005908941850066185, 0.005541564431041479, -0.0009193022851832211, 0.02355336584150791, -0.009716621600091457, -0.0033046812750399113, -0.0059501430951058865, -0.0036943762097507715, -0.017867596819996834, 0.0033458825200796127, 0.004672905430197716, -0.01284104771912098, 0.032631367444992065, 0.009064268320798874, 0.016535423696041107, 0.004260892979800701, -0.012429035268723965, -0.02601170539855957, -0.011790416203439236, 0.024610862135887146, 0.029307803139090538, -0.006561294663697481, -0.013809275813400745, -0.0011235916754230857, 0.010726051405072212, 0.02286667749285698, -0.007896901108324528, 0.006825669202953577, 0.002630011411383748, 0.0138230100274086, 0.021946517750620842, 0.007869433611631393, -0.012497703544795513, 0.00470723956823349, 0.014585232362151146, -0.002235166262835264, 0.0006210225983522832, -0.004405097104609013, 0.006348421331495047, -0.008144108578562737, 0.03241162747144699, -0.028566179797053337, 0.019515644758939743, 0.011350936256349087, 0.002085811924189329, -0.00979215744882822, -0.025915568694472313, 0.039498236030340195, 0.01019730232656002, -0.014118284918367863, -0.006842836271971464, 0.0013029886176809669, -0.009744089096784592, 0.003903815755620599, 0.010684849694371223, -0.013864210806787014, -0.041036415845155716, 0.01057498063892126, 0.012930316850543022, -0.008686590939760208, 0.003157043596729636, -0.020518207922577858, 0.007196479942649603, 0.003373350016772747, -0.008920064195990562, 0.006341554690152407, -0.003666908713057637, 0.00881706178188324, -0.026286378502845764, 0.0006390481139533222, -0.009270275011658669, -0.020600611343979836, 0.007972436025738716, 0.019858988001942635, -0.029967021197080612, -0.0401025228202343, -0.011371537111699581, 0.013067654334008694, 0.005218821577727795, -0.0040171192958951, 0.005009382031857967, -0.004542434588074684, 0.012937183491885662, -0.0007922651711851358, -0.01258697360754013, 0.02279800921678543, 0.02518768049776554, 0.003917549271136522, -0.032301757484674454, -0.03208201751112938, -0.040212392807006836, 0.00046394290984608233, -0.02083408460021019, 0.014598966576159, -0.007677161134779453, 0.014708836562931538, 0.005599932745099068, 0.015162049792706966, -0.007134678307920694, -0.008940665051341057, -0.018210940062999725, -0.016988636925816536, -0.004954447038471699, -0.020573142915964127, 0.013362929224967957, -0.008267711848020554, -0.03892141953110695, 0.0037596113979816437, -0.0020943954586982727, 0.0036463080905377865, 0.005280623212456703, -0.012772378511726856, -0.020600611343979836, -0.014475362375378609, -0.0015999807510524988, 0.005074616987258196, -0.023786839097738266, 0.0008042822009883821, -0.013108855113387108, -0.011996421962976456, 0.00539735984057188, -0.0029544709250330925, 0.003194811288267374, 0.0025888101663440466, 0.007512356154620647, 0.010568113066256046, 0.016713961958885193, 0.016150878742337227, 0.03279617056250572, -0.024322453886270523, 0.015368055552244186, -0.012758645229041576, -0.012875381857156754, -0.029582476243376732, 0.02007872797548771, -0.021053824573755264, -0.015725132077932358, -0.0031982448417693377, -0.000970803783275187, -0.014681369066238403, 0.033043380826711655, 0.028538713231682777, 0.025901835411787033, -0.010980125516653061, 0.028291504830121994, 0.009139804169535637, 0.005009382031857967, 0.01045137643814087, 0.00479994248598814, -0.011151797138154507, -0.023045215755701065, 0.024748200550675392, 0.03977291285991669, -0.0014695102581754327, 0.01678263023495674, 0.01840321160852909, -0.020229799672961235, 0.022715607658028603, 0.022303594276309013, -0.03548798710107803, -0.01221616193652153, -0.020531941205263138, 0.02643745020031929, -0.014090817421674728, 0.004830843303352594, 0.009277141653001308, 0.016700228676199913, -0.024981673806905746, 0.0015064196195453405, -0.004439431708306074, 0.014914842322468758, -0.011948354542255402, -0.015326854772865772, -0.0028394509572535753, 0.01608221046626568, 0.014132019132375717, 0.0352407768368721, -0.028730984777212143, 0.021108759567141533, -0.014132019132375717, -0.013417864218354225, 0.013170656748116016, -0.03815232962369919, 0.0017338847974315286, -0.028538713231682777, 0.028264038264751434, 0.010890856385231018, -0.026135308668017387, -0.004837709944695234, -0.009853959083557129, 0.003155326936393976, 0.008535520173609257, 0.003996518440544605, -0.053863730281591415, -0.034663960337638855, 0.014255622401833534, -0.02084781788289547, 0.009064268320798874, -0.007663427386432886, 0.01889762654900551, -0.0029046861454844475, 0.0006489192601293325, 0.00470037292689085, -0.002911553019657731, 0.018348276615142822, 0.009132937528192997, 0.010094298981130123, -0.01887015998363495, 0.030543839558959007, -0.0259567704051733, -0.000280039559584111, -0.0044840662740170956, 0.02999448962509632, 0.000591838383115828, 0.00842565018683672, 0.0012798130046576262, 0.0036291410215198994, -0.0033304321113973856, -0.0048445770516991615, 0.003817979944869876, -0.012909715995192528, -0.015354322269558907, -0.00042832104372791946, -0.0023347358219325542, 0.014956043101847172, -0.001117583131417632, 0.0032360125333070755, 0.0027862326242029667, 0.0015536294085904956, -0.013410997577011585, -0.010265970602631569, -0.012827313505113125, 0.0023776537273079157, 0.019405774772167206, 0.004559601657092571, -0.003083224641159177, -0.005895208101719618, 0.05194100737571716, 0.009181005880236626, 0.01635688543319702, -0.011659945361316204, 0.009304609149694443, -0.04262952879071236, 0.016727695241570473, 0.019337106496095657, 0.006636830046772957, -0.011550075374543667, -0.007285749539732933, -0.008350114338099957, 0.011199865490198135, -0.006695198360830545, -0.0013424730859696865, 0.0020308769308030605, 0.00730634992942214, 0.02157570607960224, -0.01200328953564167, 0.014832439832389355, 0.025407420471310616, 0.008556120097637177, -0.02326495572924614, -0.02645118348300457, 0.01019043568521738, -0.007835098542273045, 0.019804053008556366, 0.010966392233967781, 0.010375840589404106, 0.01882895827293396, -0.007821365259587765, 0.025146478787064552, 0.009977562353014946, -0.011605010367929935, -0.016631560400128365, 0.014296824112534523, 0.0007231672643683851, 0.0071140774525702, -0.009345810860395432, -0.009661686606705189, -0.005606799386441708, 0.01141960546374321, 0.020353402942419052, 0.012902849353849888, -0.009194739162921906, 0.00632438762113452, 0.0042849271558225155, -0.0063312542624771595, 0.015422990545630455, -0.00844625011086464, 0.0030626242514699697, 0.000970803783275187, 0.002650612033903599, 0.03677895665168762, 0.002221432514488697, -0.01598607376217842, -0.01402214914560318, -0.013342329300940037, -0.003979351371526718, -0.01562899723649025, -0.019378308206796646, -0.023347359150648117, -0.02610784024000168, -0.030131826177239418, -0.006478892173618078, -0.029802216216921806, -0.0010780986631289124, -0.009242807514965534, -0.0038729149382561445, -0.029637411236763, -0.011151797138154507, -0.007677161134779453, 0.017689058557152748, -0.00979215744882822, -0.008693457581102848, 0.009105470031499863, -0.009476280771195889, 0.013809275813400745, 0.022344795987010002, 0.009318343363702297, 0.0042883604764938354, -0.001747618429362774, -0.0228529442101717, -0.011495140381157398, 0.0041853575967252254, 0.00431582797318697, -0.004446298349648714, -0.012147493660449982, 0.04164070263504982, 0.002748464932665229, -0.02156197279691696, -0.002061777748167515, -0.013871078379452229, 0.011756082065403461, 0.006163015961647034, -0.005273756571114063, 0.012944050133228302, -0.028154168277978897, 0.00839131511747837, -0.023951644077897072, -0.004092654678970575, 0.01965298317372799, -0.00402055261656642, 0.007883166894316673, -0.004672905430197716, 0.014042750000953674, 0.029472608119249344, 0.0030145561322569847, 0.029637411236763, 0.02851124480366707, -0.00900933425873518, -0.02565462701022625, 0.002336452715098858, -0.014598966576159, -0.03730084002017975, 0.011062528006732464, 0.02080661617219448, 0.0029922386165708303, -0.005991344340145588, -0.014873640611767769, 0.005541564431041479, -0.004302094224840403, -0.006485758814960718, 0.012497703544795513, -0.02367696911096573, 0.021081291139125824, -0.03296097740530968, -0.0021304464899003506, 0.00470037292689085, -0.021946517750620842, -0.005476329009979963, 0.025462355464696884, -0.025489822030067444, -0.00470380624756217, 0.004782774951308966, 0.009132937528192997, 0.016878766939044, -0.019350839778780937, 0.04045959934592247, -0.034306883811950684, 0.020174864679574966, 0.005472895689308643, 0.009936361573636532, 0.012147493660449982, -0.02881338819861412, -0.015134582296013832, -0.014351759105920792, -0.0031673440244048834, 0.006365588866174221, 0.01079471968114376, 0.03763044998049736, -0.02797563001513481, -0.010677983053028584, 0.03134039416909218, -0.012181827798485756, -0.027934428304433823, -0.031065721064805984, -0.012367233633995056, -0.0038729149382561445, 0.01874655671417713, 0.011536342091858387, 0.02765975333750248, -0.019350839778780937, -3.141056731692515e-05, -0.0021149960812181234, -0.01260070689022541, 0.0011441922979429364, 0.002037743804976344, 0.011062528006732464, -0.009352677501738071, 0.0056651681661605835, -0.022633204236626625, -0.01239470113068819, -0.00671923253685236, -0.02485807053744793, 0.006561294663697481, -0.008782726712524891, 0.013692539185285568, -0.018581751734018326, 0.009764689952135086, 0.018307076767086983, 0.0029716379940509796, 0.018183471634984016, 0.012930316850543022, -0.020545676350593567, -0.017716525122523308, 0.027893226593732834, -0.010904589667916298, -0.0014394676545634866, 0.018719088286161423, 0.009771556593477726, 0.015148315578699112, 0.0014420427614822984, -0.002535591833293438, -0.007313217036426067, -0.011982688680291176, 0.020943954586982727, 0.0035742060281336308, -0.003969050943851471, -0.009496881626546383, -0.01104192715138197, -0.007347551174461842, 0.022619470953941345, -0.013005852699279785, 0.003158760257065296, -0.02370443567633629, -0.012621307745575905, -0.02124609611928463, -0.02158943936228752, -0.007217080798000097, -0.014159486629068851, -0.017702791839838028, 0.0020686446223407984, -0.008556120097637177, -0.016233282163739204, 0.005428261123597622, 0.0014557765098288655, 0.00017049151938408613, 0.006647130474448204, 0.018622951582074165, -0.013163790106773376, -0.005280623212456703, -0.005235988646745682, -0.01635688543319702, 0.011659945361316204, -0.00033347238786518574, 0.030269164592027664, 0.015711398795247078, -0.016219547018408775, -0.02441859059035778, -0.007471154909580946, 0.0094007458537817, 0.00883079506456852, -0.009325210005044937, 0.0043810633942484856, 0.025860633701086044, 0.008068572729825974, 0.006276319269090891, 0.01162561122328043, -0.02480313554406166, -0.004099521320313215, 0.008075439371168613, -0.004130422603338957, -0.006660864222794771, 0.0004446298407856375, 0.0007557849166914821, -0.0037424443289637566, 0.027508681640028954, -0.012312298640608788, -2.3148862965172157e-05, -0.0027965328190475702, -0.025077810510993004, 0.006025678478181362, 0.01124106626957655, 0.00942821241915226, -0.004377629607915878, -0.00837758183479309, -0.0005549289635382593, -0.022344795987010002, -0.01608221046626568, 0.0011296001030132174, 0.00134762329980731, 0.006990473717451096, -0.002825717208907008, 0.012944050133228302, 0.013843610882759094, -0.038701679557561874, 0.03370260074734688, 0.0060462793335318565, 0.02724774181842804, -0.02156197279691696, -0.003369916696101427, 0.020531941205263138, 0.022921612486243248, 0.005706369411200285, 0.009071135893464088, -0.022729340940713882, -0.021493304520845413, -0.00883766170591116, 0.004470332525670528, -0.015752600505948067, 0.011968954466283321, 0.012346632778644562, -0.030186761170625687, 0.00470380624756217, -0.0026282945182174444, -0.008466850966215134, 0.014104551635682583, -0.020930221304297447, -0.008576720952987671, 0.024706998839974403, -0.000774239597376436, 0.005716669373214245, 0.00220941542647779, -0.007972436025738716, -0.027069201692938805, 0.01925470493733883, -0.008130374364554882, 0.019131099805235863, -0.004085788037627935, 0.011941486969590187, 0.01461269985884428, -0.0027227140963077545, -0.0075329565443098545, 0.04559601843357086, -0.003615407273173332, 0.029033128172159195, 0.007457421161234379, -0.009084869176149368, 0.016700228676199913, 0.003388800425454974, 0.0036566085182130337, -0.014887374825775623, -0.0030506071634590626, -0.018993763253092766, -0.005682335235178471, 0.008920064195990562, 0.017345713451504707, -0.020339669659733772, 0.013974080793559551, 0.0284563098102808, 0.0011802433291450143, -0.0020549108739942312, 0.019790319725871086, -0.00460423668846488, -0.009634219110012054, 0.004923545755445957, 0.009654819965362549, 0.023855507373809814, -0.007347551174461842, 0.0010823904303833842, -0.004130422603338957, -0.03298844397068024, 0.006084047257900238, 0.005338991526514292, 0.013582669198513031, -0.022317327558994293, 0.010430775582790375, 0.009730354882776737, -0.0031330096535384655, -0.007883166894316673, -0.011852217838168144, 0.010039363987743855, -0.024706998839974403, -0.006993907503783703, 0.009654819965362549, -0.003272063797339797, 0.0013699405826628208, -0.00019495474407449365, 0.004552735015749931, -0.0020789450500160456, 0.007649693638086319, -0.0009999879403039813, 0.01539552304893732, 0.01084278803318739, 0.0001310070074396208, 0.007127811200916767, -0.010417042300105095, -0.015560328029096127, 0.01604100875556469, 0.00959988497197628, 0.017331980168819427, -0.012154360301792622, -0.01161874458193779, 0.016933701932430267, 0.007155278697609901, 0.0015888221096247435, 0.00691837165504694, -0.008542386814951897, -0.010808453895151615, -0.006736399605870247, -0.02557222545146942, -0.0042059579864144325, -0.010719184763729572, -0.015821268782019615, -0.003157043596729636, -0.011138063855469227, 0.0019862421322613955, -0.017153441905975342, -0.004617970436811447, 0.001449767965823412, -0.02321002073585987, -0.003210261929780245, -0.003189661307260394, -0.0033664831425994635, 0.015876203775405884, 0.012339766137301922, 0.012154360301792622, -0.0032497462816536427, -0.01141960546374321, -0.005957009736448526, -0.021960251033306122, 0.0038385805673897266, -0.019707918167114258, 0.02200145274400711, 0.01084965467453003, -0.01639808528125286, 0.005977610591799021, 0.029967021197080612, -0.012360366061329842, 0.014640167355537415, 0.0126419086009264, 0.0030712077859789133, 0.0027124136686325073, -0.0020943954586982727, -0.028209103271365166, 0.0021647808607667685, 0.02316882088780403, 0.001085823867470026, -0.009538082405924797, 0.012092558667063713, -0.011934620328247547, -0.027948161587119102, 0.012861647643148899, 0.02397911064326763, -0.004271193407475948, 0.0034351518843322992, 0.010877122171223164, -0.0009167271782644093, 0.019790319725871086, 0.005991344340145588, -0.015175783075392246, 0.0216718427836895, -0.022509600967168808, 0.008336380124092102, 0.0062316847033798695, 0.026203976944088936, -0.016645293682813644, -0.010877122171223164, 0.008995600044727325, 0.01122046634554863, -0.0026763626374304295, -0.005057449918240309, 0.028758453205227852, -0.0321369543671608, -0.016645293682813644, 0.02202891930937767, -0.008988733403384686, 0.00671236589550972, 0.0032463129609823227, -0.0010351806413382292, -0.0020789450500160456, 0.0010463393991813064, -0.0011768098920583725, 0.029857151210308075, 0.0393608994781971, -0.011680546216666698, 0.016137145459651947, -0.017881330102682114, 0.020106196403503418, -0.029417673125863075, 0.03721843659877777, -0.005744136869907379, -0.026725858449935913, -0.004971614107489586, -0.011982688680291176, 0.0021287298295646906, -0.0030660575721412897, 0.004738140385597944, -0.017469318583607674, 0.002485807053744793, 0.002267783973366022, -0.004762174561619759, 0.01442042738199234, -0.013507134281098843, -0.006073746830224991, 0.01685130037367344, 0.01759292185306549, -0.01757918857038021, -0.015162049792706966, -0.009139804169535637, 0.021452102810144424, 0.02001005969941616, -0.003800812643021345, -0.002219715854153037, -0.00035578972892835736, -0.020216066390275955, 0.0103964414447546, -0.002717563882470131, -0.0015613546129316092, -0.009098603390157223, -0.011948354542255402, -0.018252141773700714, 0.005606799386441708, 0.01608221046626568, 0.019474444910883904, 0.01969418302178383, 0.012902849353849888, 0.014502829872071743, -0.010025630705058575, -0.004089221358299255, -0.007066009566187859, 0.0024617728777229786, -0.004250592552125454, 0.00021362403640523553, -0.0026128441095352173, -0.0057716043666005135, 0.04559601843357086, -0.008494318462908268, -0.0017888196744024754, 0.017908798530697823, 0.014118284918367863, -0.007457421161234379, 0.008205910213291645, 0.0020205765031278133, 0.022605737671256065, 0.0004995648050680757, -0.001811137073673308, -0.009963829070329666, -0.02529755048453808, 0.011893419548869133, -0.007388752419501543, 0.006664297543466091, 0.01683756522834301, 0.005648000631481409, 0.03040650114417076, 0.0009493448305875063, 0.012250497005879879, 0.034663960337638855, 0.021328499540686607, -0.010039363987743855, -0.005802505183964968, 0.002319285413250327, 0.01723584346473217, -0.000758359965402633, 0.02318255417048931, 0.01836201176047325, 0.014077084138989449, 0.005215387791395187, -0.011955221183598042, -0.004157890100032091, 0.0028428842779248953, -0.012937183491885662, -0.0005450578173622489, 0.006945839151740074, -0.004298660904169083, 0.007333817426115274, 0.015340588055551052, 0.01963924989104271, 0.00044720491860061884, 0.0018471881048753858, 0.00819217599928379, -0.01565646380186081, -0.019103633239865303, -0.004628270398825407, -0.01608221046626568, 0.001527878688648343, -0.005826539359986782, -0.003725277027115226, -0.006159582640975714, -0.03721843659877777, 0.0057681710459291935, 0.00022574835747946054, 0.013259926810860634, 0.03642188012599945, -0.02484433725476265, -0.012044490315020084, 0.019062431529164314, 0.028291504830121994, 0.0008446250576525927, 0.002763915341347456, -0.01063678227365017, 0.0020034094341099262, 0.02003752812743187, -0.007745829876512289, 0.015807535499334335, 0.01364447083324194, 0.01402214914560318, -0.022633204236626625, 0.002370786853134632, -0.013074520975351334, 0.003673775587230921, -0.0312579944729805, 0.00249954080209136, -0.0011871102033182979, 0.007028241641819477, -0.002866918221116066, 0.012113159522414207, -0.014077084138989449, 0.01847188174724579, 0.00819904264062643, -0.014956043101847172, -0.020229799672961235, -0.012312298640608788, -0.005908941850066185, -0.007292616181075573, -0.0024961072485893965, -0.01567019708454609, 0.015107114799320698, 0.005878041032701731, 0.013912279158830643, -0.036641620099544525, -0.025503555312752724, 0.005637700669467449, -0.0008489168249070644, -0.015326854772865772, 0.0017630689544603229, 0.01382987666875124, -0.015917405486106873, -0.04282180219888687, 0.01885642483830452, 0.01505217980593443, 0.01084278803318739, 0.004175057169049978, 0.019776586443185806, -0.013095121830701828, -0.01363073755055666, 0.007237681187689304, 0.009565549902617931, -0.003673775587230921, -0.011117463000118732, 0.0023759370669722557, 0.036257073283195496, 0.012312298640608788, 0.0369986966252327, 0.006111514754593372, 0.017881330102682114, 0.006935539189726114, 0.008899464271962643, -0.004068620502948761, 0.010114899836480618, -0.007876300252974033, -0.00922220665961504, 0.016686495393514633, 0.007635959889739752, 0.0018059868598356843, 0.0022282993886619806, -0.007738962769508362, 0.011742347851395607, -0.0065887621603906155, -0.006156149320304394, 0.003690942656248808, -0.006753567140549421, -0.010368973948061466, 0.01601354219019413, 0.0036600418388843536, -0.005994777660816908, 0.020998889580368996, -0.010279704816639423, -0.008652256801724434, 0.007000774145126343, -0.018087336793541908, 0.013671938329935074, 0.01605474203824997, 0.009943228214979172, -0.004133855924010277, 0.023347359150648117, 0.0030385900754481554, -0.014695102348923683, 0.02682199515402317, -0.007031674962490797, 0.019392041489481926, 0.0016720829298719764, -0.003208545036613941, -0.0019467576639726758, -0.0033493160735815763, 0.01726331189274788, -0.009194739162921906, -0.0007330384105443954, -0.01018356904387474, -0.016741430386900902, -0.04375569894909859, 0.004631704185158014, 0.003739010775461793, 0.010025630705058575, 0.008322646841406822, 0.014777504839003086, 0.004041153006255627, -0.010087432339787483, 0.003986218012869358, -0.008439383469522, 0.005369892343878746, -0.02480313554406166, 0.007903767749667168, -0.006674597971141338, -0.010362107306718826, 0.015931138768792152, -0.011550075374543667, -0.015697665512561798, -0.04177803918719292, -0.010616181418299675, 0.001018013572320342, -0.013074520975351334, -0.023416027426719666, -1.574551970406901e-05, 0.016260748729109764, -0.00817157607525587, -0.005692635662853718, 0.0009725205018185079, 0.0042059579864144325, -0.0023278689477592707, -0.012477103620767593, -0.025434887036681175, -0.02969234623014927, 0.011268533766269684, 0.003028289880603552, -0.02999448962509632, -0.014750037342309952, -0.0023828039411455393, 0.002351903123781085, -0.03232922405004501, 0.012264230288565159, -0.0008918347884900868, 0.020985156297683716, 0.007938101887702942, -0.000889259681571275, 0.014475362375378609, 0.0219739843159914, -0.019364574924111366, -0.008054838515818119, 0.007896901108324528, 0.026561053469777107, -0.010176701471209526, -0.014516564086079597, -0.01221616193652153, -0.0038076795171946287, 0.019062431529164314, 0.005057449918240309, -0.005579331889748573, -9.366840095026419e-05, 0.00040578912012279034, -0.011659945361316204, 0.016576625406742096, -0.004662605002522469, 0.00529435696080327, -0.015354322269558907, -0.005888341460376978, 0.01882895827293396, -0.015038445591926575, 0.0030179894529283047, 0.010726051405072212, -0.01102819386869669, -0.0103964414447546, 0.00460423668846488, 0.003438585205003619, 0.02478940226137638, 0.013850477524101734, -0.003081507980823517, -0.00903680082410574, 0.003411117708310485, -0.030214229598641396, -0.008913197554647923, -0.01059558056294918, 0.0007540681981481612, 0.015532860532402992, -0.018252141773700714, -0.00797930359840393, 2.369874891883228e-05, 0.01958431489765644, -0.0016892501153051853, 0.029582476243376732, 0.012710576876997948, 0.014489096589386463, -0.011879685334861279, -0.012731177732348442, -0.007175879552960396, 0.015354322269558907, -0.02157570607960224, -0.009483147412538528, -0.005991344340145588, 0.03194468095898628, -0.010272838175296783, 0.004267760086804628, -0.006784467957913876, 0.023731904104351997, 0.021012622863054276, 0.007704628631472588, 0.014173219911754131, -0.0025664926506578922, 0.019144834950566292, 0.01962551474571228, -0.0055930656380951405, -0.007162145804613829, -0.0037561780773103237, -0.005174186546355486, -0.017524253576993942, 0.005651434417814016, -0.0023948210291564465, -0.014379226602613926, 0.02245466597378254, -0.006259152200073004, -0.005939842667430639, -0.031477734446525574, 0.0038420138880610466, -0.01965298317372799, 0.007944968529045582, -0.012298564426600933, -0.0054110935889184475, 0.011962087824940681, -0.021836647763848305, 0.0070728762075304985, -0.013342329300940037, -0.016700228676199913, -0.0007128669531084597, 0.011886551976203918, 0.0036463080905377865, 0.018114803358912468, -0.008405049331486225, -0.006259152200073004, -0.02610784024000168, 0.019419509917497635, 0.004350162111222744, -0.0244048573076725, -0.006214517634361982, -0.018925094977021217, 0.00799990352243185, -0.005751003976911306, 0.01838947832584381, -0.019433243200182915, -0.009819624945521355, 0.008851395919919014, 0.01260757353156805, -0.006767300423234701, -0.0022798008285462856, -0.001989675685763359, 0.010032497346401215, 0.006434257607907057, -0.02160317450761795, -0.00345403584651649, -0.0019845254719257355, -0.027055468410253525, -0.006897771265357733, -0.00040750583866611123, -0.0017055588541552424, -0.02522888220846653, -0.00019001917098648846, 0.020930221304297447, 0.0032497462816536427, 0.023127619177103043, -0.013946613296866417, 0.006640263367444277, 0.00028154169558547437, -0.011144930496811867, 0.029115529730916023, 0.012861647643148899, -0.004690072499215603, 0.014269356615841389, -0.0022248660679906607, 0.014901108108460903, -0.0032960977405309677, 0.0039278496988117695, -0.00750548904761672, 0.0073269507847726345, 0.012092558667063713, 0.022152522578835487, 0.013953479938209057, -0.0180598683655262, 0.01567019708454609, -0.004751874133944511, -0.002961337799206376, -0.001860921853221953, 0.007732096128165722, -0.021067557856440544, -0.0029870886355638504, -0.00036609001108445227, 0.026725858449935913, -0.01024537067860365, -0.0008995599928312004, 0.015134582296013832, -0.018265875056385994, 0.00047467241529375315, 0.013974080793559551, 0.03210948407649994, -0.0025785097386687994, 0.004813676234334707, -0.0077114952728152275, 0.00903680082410574, -0.0015862470027059317, -0.01343159843236208, -0.003213695250451565, 1.0065597962238826e-05, -0.007752696517854929, -0.0024617728777229786, 0.013349195942282677, 0.007086609955877066, -0.0016763746971264482, 0.01538178976625204, 0.004923545755445957, -0.01608221046626568, -0.0005742420325987041, 0.014200687408447266, 0.0052050878293812275, 0.013843610882759094, -0.0014823856763541698, -0.03452662378549576, -0.01601354219019413, 0.011117463000118732, 0.006365588866174221, -0.003787078894674778, 0.007951836101710796, -0.011247933842241764, 0.025338752195239067, 0.02239973098039627, -0.0015029861824586987, 0.002369070192798972, -0.021355966106057167, 0.011934620328247547, 0.012291697785258293, -0.0017733692657202482, -0.008569854311645031, 0.004154456313699484, -0.021493304520845413, -0.008308912627398968, -0.019817788153886795, 0.007134678307920694, 0.009936361573636532, -0.04941399767994881, 0.01078098639845848, 0.009284008294343948, -0.008295179344713688, -0.011474540457129478, -0.006399923004209995, -0.0029167032334953547, 0.009819624945521355, 0.013074520975351334, -0.0010283137671649456, 0.011914019472897053, -0.019831521436572075, 0.0024926739279180765, 0.005345858633518219, -0.0023845206014811993, -0.0006991332047618926, -0.009112336672842503, 0.026341313496232033, -0.0132324593141675, 0.006156149320304394, -0.028154168277978897, -0.014832439832389355, -0.005555298179388046, -0.019886456429958344, 0.024212583899497986, -0.0003869052161462605, 0.02397911064326763, 0.009888293221592903, -0.027797091752290726, -0.0007429094985127449, -0.025022875517606735, -0.010046231560409069, -0.006221384275704622, 0.03958063945174217, 0.01325305923819542, -0.017867596819996834, 0.0035261379089206457, 0.004199091345071793, -0.023800572380423546, 0.003277213778346777, 0.011048794724047184, -0.011769815348088741, 0.006485758814960718, 0.008054838515818119, -0.008535520173609257, -0.004762174561619759, 0.0007231672643683851, -0.014159486629068851, 0.0006171599379740655, 0.00779389776289463, 0.008775860071182251, 0.0022265827283263206, 0.007553557399660349, -0.014846173115074635, -0.009778423234820366, -0.002039460465312004, 0.016288217157125473, -0.0013519150670617819, 0.005987911019474268, -0.005737270228564739, 0.021452102810144424, 0.026767060160636902, -0.013877945020794868, 0.0018557716393843293, -0.006540693808346987, -0.005987911019474268, 0.000609434733632952, 0.008528652600944042, 0.03491116687655449, 0.007368152029812336, -0.02889578975737095, -0.03216442093253136, 0.008810194209218025, -0.0018695053877308965, -0.013349195942282677, 0.007745829876512289, -0.002221432514488697, 0.008096040226519108, 0.010719184763729572, -0.017455583438277245, -0.0003328286111354828, 0.015766333788633347, 0.01605474203824997, 0.008020504377782345, -0.026341313496232033, -0.009778423234820366, 0.0138230100274086, 0.006300353445112705, -0.022578269243240356, -0.009057401679456234, -0.007944968529045582, 0.01877402327954769, -2.8084426958230324e-05, 0.003157043596729636, 0.02443232387304306, 0.007278882432729006, 0.006073746830224991, -0.029197933152318, -0.011666812933981419, 0.009551816619932652, 0.018279608339071274, 0.004878911189734936, -0.0048480103723704815, -0.028593648225069046, 0.018142271786928177, 0.00823337770998478, -0.012964650988578796, -0.009270275011658669, -0.0003083653864450753, 0.011886551976203918, 0.008755259215831757, -0.002635161392390728, 0.009201605804264545, 0.014722569845616817, 0.01679636538028717, 0.010664249770343304, 0.004061753861606121, -0.0026557620149105787, 0.013459065929055214, -0.006653997115790844, -0.002537308493629098, -0.022729340940713882, -0.0043844967149198055, -0.01648048870265484, -0.021548239514231682, 0.0007845399086363614, 0.02367696911096573, -0.013850477524101734, -0.0034523189533501863, 0.0017802361398935318, -0.026918131858110428, 0.00057552958605811, 0.01520325057208538, 0.029033128172159195, 0.011323468759655952, -0.012236762791872025, -0.02770095504820347, -0.008494318462908268, -0.004827409982681274, -0.020683012902736664, 0.005150152835994959, -0.014681369066238403, 0.011556942947208881, -0.023086417466402054, -0.007031674962490797, -0.0007909776177257299, 0.004178490489721298, 0.02359456568956375, 0.006276319269090891, 0.01638435199856758, 0.006066879723221064, 0.010279704816639423, 0.005617099814116955, 0.05960443243384361, 0.0038248468190431595, 0.015862470492720604, -0.001479810569435358, -0.0015047029592096806, -0.01718091033399105, 0.011666812933981419, -0.018952561542391777, -0.010018764063715935, 0.0207928828895092, 0.005809372290968895, -0.026313846930861473, 0.020216066390275955, -0.012147493660449982, 0.013946613296866417, 0.004336428362876177, 0.0032360125333070755, 0.006942405831068754, -0.003472919575870037, -0.02036713808774948, 0.0005193070392124355, 0.014283089898526669, -0.03331805393099785, 0.022221192717552185, 0.004432564601302147, -0.02123236283659935, -0.0035364381037652493, -0.007395619060844183, -0.004933846183121204, -0.010883989743888378, 0.0012094274861738086, -0.02722027339041233, -0.009064268320798874, -0.017922531813383102, 0.01719464361667633, 3.1035033316584304e-05, -0.015780067071318626, 0.021383434534072876, -0.0036291410215198994, -0.006629963405430317, -0.015354322269558907, -0.012683109380304813, -0.003519271034747362, 0.002439455594867468, 0.028703518211841583, 0.0066917650401592255, 0.0090299341827631, 0.029857151210308075, 0.008137241005897522, -0.001384532661177218, 0.00014688665396533906, 0.012058224529027939, 0.015134582296013832, -0.004171623848378658, -0.002880651969462633, -0.004357029218226671, -0.004357029218226671, 0.0019347406923770905, -0.005915808957070112, 0.005551864393055439, -0.019707918167114258, -0.014750037342309952, -0.0010609314776957035, 0.01681009866297245, -0.023910442367196083, -0.008981866762042046, 0.007093477062880993, 0.012374100275337696, 0.0031175590120255947, 0.017895063385367393, 0.008508052676916122, 0.018307076767086983, 0.0013750907965004444, -0.03977291285991669, -0.0013218725798651576, 0.01525818556547165, 0.005963876843452454, 0.017441850155591965, 0.012168094515800476, 0.01285478100180626, -0.000624456035438925, 0.031395331025123596, -0.015216984786093235, 0.01560152880847454, 0.009682287462055683, 0.007258282043039799, -0.007855699397623539, 0.023855507373809814, 0.0012635041493922472, -0.012161226943135262, 0.006674597971141338, -0.018279608339071274, 0.004573335405439138, -0.014104551635682583, 0.00021212191495578736, 0.0060462793335318565, 0.0184306800365448, 0.020147398114204407, -0.0007647976744920015, -0.002944170730188489, 0.02355336584150791, -0.014379226602613926, -0.014159486629068851, 0.002466923091560602, -0.006180183030664921, -0.02360830083489418, -0.0020205765031278133, -0.00690807169303298, -0.005472895689308643, 0.011790416203439236, -0.005222254898399115, -0.009325210005044937, -0.003543304977938533, -0.0036806424614042044, -0.021369699388742447, -0.013294260948896408, 0.006358721759170294, 0.0002435593050904572, 0.014544031582772732, -0.022605737671256065, -0.018279608339071274, 0.013452199287712574, -0.04087161272764206, -0.012511437758803368, -0.005562164820730686, -0.0021544804330915213, 0.013610136695206165, -0.019968857988715172, 0.01762038841843605, -0.0031639104709029198, -0.003670342266559601, 0.0343618206679821, -0.015477925539016724, -0.024267518892884254, -0.008405049331486225, 0.019474444910883904, 0.02076541632413864, -0.014338024891912937, 0.006403356324881315, 0.007965569384396076, -0.02120489627122879, -0.006605929229408503, 0.002341602696105838, 0.008453117683529854, -0.007642826531082392, -0.017016105353832245, -0.016192080453038216, 0.00057552958605811, 0.009929494000971317, 0.004470332525670528, 0.0021905316971242428, -0.022550802677869797, -0.014667634852230549, -0.024720732122659683, 0.008288312703371048, 0.006362155079841614, 0.021905316039919853, 0.020614344626665115, 4.310570511734113e-05, 0.043508488684892654, 0.016192080453038216, -0.006351855117827654, 0.03749311342835426, -0.01078098639845848, -0.025750763714313507, 0.017318246886134148, -0.00863852258771658, 0.013321728445589542, 0.005345858633518219, 0.00044377148151397705, 0.014791238121688366, -0.007361284922808409, 0.005716669373214245, -0.0064102234318852425, -0.01038957480341196, 0.018677886575460434, -0.023718170821666718, -0.01520325057208538, 0.0011939770774915814, 0.011316602118313313, 0.002825717208907008, -0.00760162528604269, 0.02323748916387558, -0.00043711921898648143, -0.002535591833293438, -0.03856434300541878, 0.0061492822133004665, -0.0014952609781175852, -0.021493304520845413, -0.013356062583625317, -0.001168226357549429, 0.01318439096212387, -0.013095121830701828, 0.0020205765031278133, 0.0038763482589274645, 0.026918131858110428, 0.02123236283659935, -0.019749118015170097, -0.010423908941447735, 0.013788675889372826, 0.0022420331370085478, -0.0038042461965233088, 0.00014366779942065477, 0.02077914960682392, -0.0021476137917488813, 0.004672905430197716, -0.017441850155591965, -0.006159582640975714, -0.005163886584341526, 0.005781904794275761, -0.008418782614171505, -0.008295179344713688, 0.007120944559574127, -0.01634315215051174, -0.019405774772167206, -0.014887374825775623, -0.03090091608464718, -0.004528700839728117, 0.012463369406759739, 0.01558779552578926, 0.004151022993028164, 0.007388752419501543, 0.0006699490477330983, 0.024597128853201866, -0.006832535844296217, -0.005277189891785383, 0.014159486629068851, 0.03779525309801102, 0.007642826531082392, -0.009668553248047829, -0.006417090073227882, -0.001924440381117165, -0.04850757122039795, 0.01501097809523344, 0.008006771095097065, -0.005472895689308643, 0.020353402942419052, -0.00838444847613573, -0.028126699849963188, 0.01891135983169079, 0.024954207241535187, 0.010602448135614395, 0.006502926349639893, 0.006362155079841614, -0.042272452265024185, -0.010705450549721718, 0.008974999189376831, 0.0006270310841500759, 0.009689154103398323, 0.0021029789932072163, -0.004834276624023914, 0.009476280771195889, -0.0007081460207700729, -0.010053098201751709, 0.013788675889372826, 0.006839402951300144, 0.0011716597946360707, 0.02044953964650631, -0.03123052604496479, -0.006502926349639893, 0.015120848082005978, 0.010018764063715935, 0.023924175649881363, 0.009160405024886131, -0.0016523406375199556, -0.008988733403384686, 0.0053870598785579205, 0.0021682141814380884, -0.021012622863054276, -0.006581895053386688, 0.014502829872071743, -0.022949080914258957, 0.0019948258996009827, 0.019886456429958344, 0.01567019708454609, -0.008734659291803837, 0.016590358689427376, 0.0012798130046576262, 0.0126419086009264, -0.013321728445589542, -0.023017749190330505, -0.004638570826500654, 0.001200843951664865, -0.005043716169893742, -0.006757000461220741, 0.0033510327339172363, 0.009483147412538528, -0.023347359150648117, -0.011762948706746101, -0.00529092364013195, 0.016205813735723495, -0.0035330047830939293, 0.010162968188524246, -0.00187637226190418, 0.012113159522414207, 0.03167000412940979, -0.028538713231682777, 0.023869240656495094, -0.012188694439828396, 0.004957880359143019, -0.010471977293491364, -0.007629092782735825, -0.006159582640975714, -0.019501911476254463, -0.003505537286400795, -0.011275401338934898, -0.0017072756309062243, -0.0077114952728152275, -0.008315780200064182, -0.007718362379819155, -0.00325833004899323, -0.0075329565443098545, -0.003321848576888442, -0.0008690882823430002, -0.0007901192875579, 0.003972484264522791, -0.005301224067807198, -0.016507955268025398, -0.010815320536494255, 0.0006759575335308909, 0.013108855113387108, 0.0009193022851832211, 0.010430775582790375, -0.004181923810392618, 0.00901620090007782, 0.007443687412887812, -0.007670294027775526, 0.009538082405924797, 0.005761303938925266, 0.008686590939760208, 0.001727017923258245, -0.0033819335512816906, -0.004178490489721298, -0.005754437297582626, -0.012243629433214664, 0.004343295469880104, -0.0020428940188139677, -0.006987040396779776, -0.009853959083557129, -0.01079471968114376, 0.020133662968873978, -0.0031192759051918983, 0.026698391884565353, 0.0012145777000114322, 0.016219547018408775, 0.021136226132512093, -0.015752600505948067, -8.004195842659101e-05, -0.015326854772865772, 0.01726331189274788, 0.0031244258861988783, 0.004051453433930874, -0.006375888828188181, 0.010870255529880524, 0.013685672543942928, -0.01926843822002411, 0.0063072205521166325, 0.00661622965708375, -0.011000726372003555, -0.002370786853134632, -0.0013604987179860473, 0.004490933381021023, 0.013596403412520885, 0.011907152831554413, 0.015711398795247078, 0.019309639930725098, -0.006437690928578377, -0.009881426580250263, 0.01845814660191536, 0.0130470534786582, -0.025421153753995895, -0.019117366522550583, -0.004233425483107567, -0.001809420296922326, 0.012380966916680336, 0.007546690292656422, -0.006983607076108456, 0.02241346426308155, 0.027728421613574028, -0.03004942461848259, 0.008947531692683697, -0.0036291410215198994, 0.0035982399713248014, -0.015574061311781406, -0.0066093625500798225, -0.028154168277978897, 0.007443687412887812, -0.01929590478539467, 0.0004390505200717598, 0.01299898512661457, -0.009757822379469872, 0.030296631157398224, -0.016233282163739204, -0.026684658601880074, 0.009483147412538528, -0.012449636124074459, -0.007000774145126343, -0.0038866486866027117, -0.007718362379819155, -0.0039209830574691296, 0.010046231560409069, 0.011996421962976456, 0.003290947526693344, -0.0008334663580171764, -0.008659123443067074, -0.018664153292775154, 0.007587891537696123, 0.006976739969104528, 0.009737222455441952, 0.017345713451504707, 0.009531215764582157, -0.011975822038948536, -0.00838444847613573, -0.0006484900368377566, 0.028154168277978897, 0.028730984777212143, 0.025819431990385056, -0.019337106496095657, 0.03128546103835106, 0.002860051579773426, -0.0036634753923863173, -0.015148315578699112, 0.010815320536494255, 0.003787078894674778, -0.01681009866297245, -0.009675419889390469, -0.0023261522874236107, -0.011845351196825504, 0.025531023740768433, -0.0002467781596351415, -0.004195657558739185], "cd1d59b9-b560-4f69-b868-c136d63e29b0": [-0.0007207826129160821, 0.010673345997929573, -0.00530873192474246, -0.005486853886395693, 0.005448435433208942, -0.06348125636577606, 0.04844916611909866, 0.024531930685043335, -0.015227679163217545, 0.015115915797650814, 0.016582801938056946, 0.044425707310438156, -0.01796586625277996, -0.01838497817516327, -0.022338585928082466, 0.004355255980044603, -0.0031171338632702827, 0.002842965768650174, 0.027004681527614594, -0.0043098521418869495, 0.04205074533820152, -0.02379150129854679, -0.03576409071683884, 0.026306165382266045, 0.022059179842472076, -0.0031782540027052164, -0.011518551968038082, -0.008584778755903244, -0.03621114045381546, -0.023400332778692245, 0.012908601202070713, 0.005319209769368172, -0.015409293584525585, 0.02507677488029003, -0.02342827245593071, -0.0402066595852375, 0.005993279162794352, -0.003155552316457033, -0.023903265595436096, -0.011302011087536812, -0.021681979298591614, 0.0316847488284111, -0.0040863268077373505, 0.004480989184230566, 0.0160379596054554, -0.019795982167124748, -0.024168701842427254, 0.013746822252869606, -0.010484745725989342, -0.0021374633070081472, -0.01405416987836361, -0.014850479550659657, -0.03486998751759529, 0.009995783679187298, 0.04730359837412834, -0.025761321187019348, 0.0501256063580513, 0.10198353976011276, 0.015101945959031582, -0.026725275442004204, 0.029086263850331306, -0.043056610971689224, 0.001908698701299727, -0.006174893584102392, -0.02314886637032032, 0.007411269471049309, -0.01178398821502924, -0.00798405334353447, -0.010820033960044384, -0.000650057743769139, -0.0020571337081491947, 0.028373776003718376, -0.017197497189044952, 0.0028534436132758856, -0.004662603605538607, 0.02243637852370739, -0.0018877432448789477, 0.007837365381419659, 0.037244945764541626, 0.0026369031984359026, 0.016135752201080322, 0.0024727515410631895, -0.021039344370365143, -0.010142472572624683, 0.032495029270648956, 0.012189128436148167, -0.008207579143345356, -0.014696805737912655, -0.036099378019571304, -0.03523321822285652, -0.0062063271179795265, 0.04495657980442047, -0.0038662937004119158, -0.017211468890309334, -0.02391723543405533, 0.027451733127236366, -0.022268734872341156, 0.028569361194968224, 0.015074005350470543, -0.009884021244943142, 0.04450952634215355, 0.025300299748778343, -0.041436050087213516, 0.023623857647180557, 0.011637299321591854, -0.03707730397582054, 0.020326856523752213, 0.004037430509924889, 0.01001673936843872, -0.00748810637742281, -0.018790118396282196, -0.023973116651177406, -0.011749062687158585, -0.0350935123860836, -0.027298059314489365, 0.010624449700117111, -0.025817202404141426, -0.029170086607336998, 0.025719409808516502, -0.009751303121447563, 0.004177134018391371, -0.0028831304516643286, 0.0213047806173563, -0.016093840822577477, -0.00018161452317144722, 0.0022562111262232065, -0.028457598760724068, 0.029337730258703232, 0.015744581818580627, 0.007446195464581251, 0.02108125388622284, -0.033277370035648346, 0.03257885202765465, -0.018510710448026657, 0.012363757938146591, 0.02043861895799637, -0.0027329493314027786, 0.08767790347337723, 0.013788733631372452, 0.037105243653059006, -0.02599881775677204, -0.015241649001836777, -0.0014616476837545633, 0.00738332886248827, 0.013642044737935066, -0.0070759812369942665, -0.0450124591588974, 0.011944646947085857, -0.015660759061574936, 0.012356773018836975, -0.037021420896053314, -0.030092129483819008, -0.00039488059701398015, -0.016345307230949402, 0.04219045117497444, -0.04624184966087341, -0.02122095786035061, 0.036183200776576996, -0.007949127815663815, 0.004994399379938841, 0.005853575654327869, -0.02534221112728119, 0.01149759627878666, 0.014075125567615032, 0.005326195154339075, 0.023316510021686554, 0.010128501802682877, 0.008577793836593628, -0.045683037489652634, 0.010372983291745186, 0.018440859392285347, 0.000819011649582535, 0.013607118278741837, -0.028597300872206688, 0.011057530529797077, -0.03431117534637451, 0.04906386137008667, 0.032495029270648956, 0.025188537314534187, -0.0015349918976426125, 0.03123769722878933, 0.007599869277328253, 0.028667153790593147, -0.009115652181208134, -0.03352883458137512, -0.0004444316728040576, 0.04677272588014603, 0.03386412188410759, 0.0006129490211606026, 0.009339177049696445, -0.02662748284637928, -0.027745110914111137, 0.0007116146152839065, 0.039368439465761185, 0.00399551959708333, -0.028513479977846146, 0.026515720412135124, 0.02180771343410015, 0.007872290909290314, 0.02422458305954933, -0.015604878775775433, -0.032550908625125885, 0.013250874355435371, 0.07516047358512878, -0.00912263710051775, 0.0054239872843027115, -0.01662471331655979, -0.0058256350457668304, 0.0008404037216678262, 0.01107150036841631, 0.020815817639231682, -0.010023724287748337, -0.013341682031750679, 0.014333576895296574, 0.005598616786301136, 0.019055554643273354, -0.008535882458090782, -0.0007657496607862413, 0.007739572785794735, -0.013669985346496105, 0.006199341733008623, -0.04062576964497566, -0.005235387943685055, -0.05202557519078255, -0.072981096804142, 0.021318750455975533, -0.01846879906952381, 0.003985041752457619, 0.005909456871449947, -0.007865305989980698, 0.024252522736787796, 0.002483229385688901, 0.02897450141608715, 0.007313476875424385, 0.002270181430503726, 0.044900696724653244, 0.07421048730611801, -0.018273215740919113, 0.010582538321614265, -0.03716112673282623, 0.007236639969050884, 0.010212324559688568, 0.016233544796705246, -0.027018653228878975, 0.01953054592013359, -0.05437259376049042, -0.05828429013490677, -0.013334697112441063, 0.02008935995399952, 0.013879540376365185, -0.002677067881450057, -0.00023662277089897543, 0.03202003613114357, -0.012461550533771515, -0.032774437218904495, -0.0025006921496242285, 0.02819216251373291, -0.020620232447981834, -0.017644548788666725, -0.008661615662276745, -0.0049594733864068985, -0.017518816515803337, -0.01753278635442257, -0.029645077884197235, 0.028946559876203537, -0.015535026788711548, -0.01149759627878666, -0.014668865129351616, 0.04744330048561096, 0.009059770032763481, -0.015437234193086624, -0.03520527482032776, 0.0402066595852375, -0.00035122327972203493, -0.054847586899995804, 0.0036043496802449226, -0.004131730180233717, -0.010163428261876106, 0.017421023920178413, 0.0003451112424954772, 0.004425107501447201, -0.046046264469623566, -0.004285403992980719, 0.028024516999721527, 0.04286102578043938, 0.013837628997862339, -0.0015280067455023527, -0.0025722903665155172, -0.018287185579538345, -0.016163691878318787, -0.008067876100540161, -0.01370491087436676, 0.05085206404328346, 0.035400860011577606, -0.018077630549669266, -0.023847384378314018, 0.018049689009785652, -0.0354846827685833, -0.008242505602538586, 0.01832909695804119, -0.008654630742967129, -0.022170942276716232, -0.03869786486029625, -0.03601555526256561, 0.043056610971689224, -0.034394994378089905, 0.02775908075273037, -0.03285825625061989, 0.007516046985983849, 0.047108013182878494, 0.038530219346284866, -0.018161451444029808, 0.019614368677139282, -0.008158682845532894, -0.0064822412095963955, -0.013222933746874332, 0.007243625354021788, -0.03847433626651764, -0.00806089024990797, -0.041212525218725204, 0.029477434232831, 0.009080725722014904, -0.051718227565288544, 0.017085734754800797, 0.024769427254796028, 0.002195090986788273, -0.018832027912139893, -0.026823068037629128, -0.030064187943935394, -0.04283308610320091, -0.03774787858128548, -0.007620824500918388, -0.01874820701777935, -0.016163691878318787, -0.012761912308633327, -0.04951091110706329, -0.026166461408138275, -0.0695723295211792, 0.020117301493883133, 0.012245009653270245, 0.001760263810865581, -0.02805245853960514, 0.003992026671767235, -0.0018301155650988221, -0.003303987206891179, -0.03193621337413788, 0.008151697926223278, 0.008507941849529743, -0.02925390750169754, 0.02520250715315342, 0.0008063510176725686, -0.009143592789769173, 0.034534700214862823, 0.011169292964041233, -0.029645077884197235, 0.029645077884197235, -0.029868602752685547, -0.00785133522003889, 0.0009002143051475286, -0.005284284241497517, -0.04151987284421921, -0.020201122388243675, -0.006768633611500263, 0.004641647916287184, 0.006318089552223682, -0.031014172360301018, 0.020061418414115906, 0.040430184453725815, 0.0038662937004119158, -0.009555717930197716, -0.015493115410208702, 0.005319209769368172, 0.015381352975964546, -0.008948007598519325, -0.0024937069974839687, -0.0029582211282104254, 0.0474153608083725, 0.014920331537723541, -0.0008609226788394153, 0.008116772398352623, -0.010198353789746761, 0.03456263989210129, -0.0549314059317112, -0.033696480095386505, 0.0243642870336771, -0.03118181601166725, -0.0019191765459254384, 0.0018039211863651872, 0.029002441093325615, 0.01554899662733078, -0.019726131111383438, 0.029281849041581154, 0.020997432991862297, -0.031014172360301018, -0.007613839581608772, 0.02038273774087429, -0.03263473138213158, 0.0059897867031395435, -0.005403032060712576, 0.0048127849586308, -0.016512950882315636, 0.0019453709246590734, 0.007802439387887716, -0.02869509346783161, 0.06130188703536987, -0.014075125567615032, -0.010477760806679726, -0.016987942159175873, 0.012168172746896744, -0.023204747587442398, 0.015576938167214394, 0.023693710565567017, -0.010610478930175304, 0.011581418104469776, 0.016219573095440865, -0.006307612173259258, 0.0006072735413908958, -0.018845999613404274, -0.029477434232831, -0.006988666485995054, 0.0035240203142166138, -0.013250874355435371, 0.02627822384238243, 0.010519672185182571, -0.014431369490921497, 0.01958642713725567, -0.022604022175073624, 0.05199763551354408, 0.005780231207609177, 0.002001252258196473, -0.0416036956012249, 0.03693759813904762, 0.026823068037629128, 0.01399130281060934, 0.010687315836548805, -0.020913610234856606, 0.0196003969758749, -0.02074596658349037, 0.011315981857478619, 0.006489226594567299, 0.011825899593532085, 0.041436050087213516, 0.019139375537633896, 0.032914139330387115, 0.006635915022343397, -0.029700959101319313, -0.005458913277834654, -0.01512988656759262, 0.007285536266863346, 0.017379112541675568, 0.003543229540809989, 0.026166461408138275, 0.013055290095508099, 0.00304378941655159, 0.04149193316698074, -0.014962241984903812, 0.026948800310492516, -0.016862209886312485, -0.011106426827609539, -0.006520659662783146, -0.03797140344977379, -0.010009754449129105, 0.007096936460584402, 0.05817252770066261, 0.03565232828259468, 0.0015786492731422186, 0.007110906764864922, -0.0160379596054554, 0.02264593355357647, 0.04657714068889618, -0.01323690451681614, 0.04096106067299843, -0.04822564125061035, 0.0004463962686713785, -0.020075390115380287, -0.027088504284620285, -0.012140232138335705, 0.009283295832574368, -0.008948007598519325, 0.008074861019849777, 0.0005714745493605733, -0.0213047806173563, -0.0498182587325573, -0.010610478930175304, -0.0038453382439911366, 0.009527777321636677, -0.005720857530832291, -0.01675044745206833, 0.00940902903676033, 0.015437234193086624, 0.009849094785749912, -0.0030245801899582148, -0.031042112037539482, -0.002411631168797612, 0.012943526729941368, 0.010198353789746761, 0.0264179278165102, -0.004341285675764084, -0.04146399348974228, -0.035596445202827454, 0.0036811865866184235, 0.014612983912229538, -0.01480856817215681, 0.009611599147319794, 0.0026910381857305765, 0.029281849041581154, -0.015353412367403507, 0.008619704283773899, -0.02259005233645439, -0.006290148943662643, -0.017015883699059486, -0.0066394079476594925, -0.037244945764541626, 0.005703394301235676, -0.015060034580528736, -0.008843230083584785, -0.02050847001373768, 0.0013420265167951584, 0.027242178097367287, -0.015562967397272587, -0.0077605280093848705, -0.001060000155121088, -0.01107150036841631, 0.024545900523662567, -0.006821022368967533, -0.004240000620484352, -0.0192511398345232, -0.029505373910069466, 0.014221813529729843, -0.0012590775731950998, -0.009143592789769173, 0.00011634680413408205, 0.004390181973576546, -0.005277298856526613, -0.03302590176463127, 0.0035083035472780466, -0.03813904896378517, 0.01974010095000267, 0.029924483969807625, -0.006380956154316664, 0.0036986495833843946, 0.03685377910733223, 0.012985438108444214, 0.0066149597987532616, -0.0009194235317409039, 0.024196641519665718, -0.007781483698636293, 0.04487275704741478, -0.01392145175486803, -0.008466030471026897, 0.012433609925210476, -0.0035048110876232386, 0.0024954534601420164, -0.03562438488006592, 0.0313774012029171, 0.008535882458090782, 0.01455710269510746, -0.007187743671238422, -0.007599869277328253, 0.006828007288277149, -0.009129622019827366, 0.0007635668152943254, -0.01810557022690773, 0.01480856817215681, 0.014864450320601463, -0.0028324879240244627, -0.014277695678174496, -0.007065503392368555, -0.043419841676950455, 0.02207314968109131, 0.008948007598519325, -0.017351171001791954, 0.02805245853960514, 0.017337201163172722, 0.008752422407269478, 0.022548140957951546, -0.006901351734995842, -0.007571928668767214, -0.01033107191324234, -0.002163657685741782, 0.02186359465122223, -0.007044547703117132, -0.011022604070603848, -0.011804943904280663, -0.004872158635407686, 0.031628865748643875, -0.026082638651132584, -0.03025977313518524, -0.04551539197564125, 0.02010332979261875, -0.007620824500918388, 0.04819769784808159, 0.01916731707751751, 0.013376607559621334, -0.015381352975964546, 0.03934049978852272, -0.01462695375084877, -0.017560727894306183, 0.0204525887966156, 0.014361517503857613, 0.003518781391903758, 0.0233584214001894, 0.017351171001791954, -0.010847974568605423, -0.015940167009830475, -0.011218189261853695, -0.005088699050247669, 0.04297278821468353, -0.028946559876203537, -0.030343595892190933, -0.03143328055739403, -0.0041177598759531975, 0.02527235820889473, -0.007550972979515791, 0.021346691995859146, -0.0022492259740829468, 0.036518488079309464, -0.012552357278764248, 0.018426889553666115, -0.009569687768816948, -0.014103066176176071, 0.0011062768753618002, 0.02358194626867771, -0.03866992145776749, 0.013481386005878448, 0.009562702849507332, 0.005535750184208155, 0.0006339045357890427, 0.0147387171164155, 0.011350907385349274, 0.011036574840545654, -0.021570216864347458, -0.004390181973576546, -0.01661074347794056, 0.032830316573381424, -0.012929556891322136, 0.00506075844168663, -0.0117560476064682, -0.012307876721024513, -0.03911697492003441, 0.014682835899293423, 0.006876903586089611, -0.0013184515992179513, -0.007963098585605621, -0.00961858406662941, 0.009807184338569641, -0.011127381585538387, 0.029365671798586845, 0.01309720054268837, -0.01413100678473711, -0.0011647777864709496, 0.01725338026881218, 0.0009220429346896708, 0.01740705408155918, 0.013160067610442638, 0.003590379375964403, 0.012035454623401165, -0.00294599705375731, 0.015730611979961395, 0.008263460360467434, -0.00527031347155571, -0.017700430005788803, -0.005675453692674637, 0.012880660593509674, 0.036518488079309464, -0.010093576274812222, 0.010428864508867264, -0.0012582044582813978, 0.025314269587397575, -0.01455710269510746, -0.010519672185182571, -0.04414629936218262, 0.020494500175118446, -0.018287185579538345, 0.011853840202093124, 0.01117627788335085, 0.006248238030821085, -0.02720026671886444, 0.01323690451681614, 0.029505373910069466, -0.007037562783807516, -0.02605469897389412, -0.03380824252963066, 0.027563495561480522, 0.002581021748483181, -0.006353015545755625, 0.005315717309713364, 0.021849622949957848, -0.02038273774087429, -0.02549588494002819, 0.007516046985983849, -0.005329687613993883, -0.03593173250555992, 0.014599013142287731, 0.013201978988945484, -0.0182452742010355, -0.004068863578140736, 0.012356773018836975, 0.04087723791599274, -0.023763561621308327, -0.033417072147130966, -0.00862669013440609, 0.020913610234856606, -0.033752359449863434, 0.021919475868344307, 0.01341851893812418, -0.011944646947085857, -0.003978056367486715, 0.04132428765296936, 0.00838220864534378, -0.023973116651177406, 0.03299796208739281, 0.011385833844542503, 0.01918128691613674, 0.009101681411266327, 0.006398419383913279, 0.007068995852023363, 0.026376016438007355, -0.04543156921863556, 0.0028796379920095205, 0.03464646264910698, 0.002270181430503726, 0.018412917852401733, -0.05610491707921028, -0.025537796318531036, 0.0075370026752352715, -0.006932785268872976, -0.005315717309713364, -0.00012737028009723872, 0.006796574220061302, 0.003234135452657938, -0.0010495224269106984, -0.019684219732880592, -0.006876903586089611, -0.015744581818580627, 0.02584514394402504, -0.010840989649295807, 0.0013638552045449615, 0.03299796208739281, -0.006164415739476681, -0.01584237441420555, -0.02414076030254364, 0.0484212264418602, -0.028248043730854988, -0.022604022175073624, -0.007516046985983849, 0.03045535832643509, -0.04336395859718323, -0.011867810040712357, -0.014752686955034733, 0.005200461950153112, 0.0036532459780573845, 0.047666825354099274, 0.026110580191016197, 0.019614368677139282, 0.0028569360729306936, 0.0613577663898468, 0.012964482419192791, 0.008794333785772324, 0.0337802991271019, -0.035037633031606674, 0.008794333785772324, -0.006101549137383699, 0.0023051074240356684, 0.02627822384238243, 0.006000264547765255, -0.014585043303668499, 0.0002914127253461629, 0.00791420228779316, -0.01149759627878666, 0.04062576964497566, 0.031153876334428787, 0.008934037759900093, 0.0340876467525959, -0.020620232447981834, 0.032774437218904495, -0.014822538942098618, -0.003356375964358449, 0.02080184780061245, -0.017309261485934258, -0.010296146385371685, -0.016289426013827324, -0.007243625354021788, -0.01462695375084877, 0.005567183718085289, -0.0262642540037632, 0.019614368677139282, 0.004002504516392946, -0.029700959101319313, 0.0262642540037632, -0.008961978368461132, -0.031908273696899414, -0.009192489087581635, -0.001037298352457583, -0.008193609304726124, 0.005025832448154688, 0.005249358247965574, -0.00799103919416666, -0.013090215623378754, 0.02798260562121868, 0.014668865129351616, 0.0018755191704258323, 0.026795126497745514, 0.031042112037539482, -0.008989918977022171, -0.010219309478998184, -0.00046626036055386066, -0.014228799380362034, -0.00559163186699152, -0.006580033805221319, -0.003040296956896782, 0.018971731886267662, -0.02080184780061245, 0.020550381392240524, -0.016177663579583168, 0.0012643164955079556, 0.013774762861430645, 0.01951657608151436, 0.017574697732925415, 0.012559342198073864, -0.009045800194144249, -0.0035327516961842775, -0.004907084628939629, 0.013432489708065987, -0.009255355224013329, -0.030203891918063164, 0.05526669695973396, -0.01939084194600582, 0.006220297422260046, -0.00014352348807733506, 0.010428864508867264, -0.004180626478046179, -0.008954992517828941, 0.025118684396147728, -0.0038697863928973675, 0.0023714664857834578, -0.02989654429256916, 0.005954860709607601, -0.010785108432173729, 0.008130742236971855, -0.012901616282761097, -0.02299519255757332, -0.013034334406256676, -0.0010032455902546644, -0.01554899662733078, 0.024336345493793488, 0.02520250715315342, 0.00530873192474246, 0.0075370026752352715, 0.04596244543790817, 0.003407018491998315, -0.0034576610196381807, -0.027800992131233215, 0.0011717629386112094, -0.0038697863928973675, 0.012803823687136173, -0.01916731707751751, 0.009003888815641403, -0.03500968962907791, -0.0077535430900752544, 0.016177663579583168, -0.0034611537121236324, -0.017784252762794495, -0.015730611979961395, 0.005210939794778824, 0.018371006473898888, -0.0011150083737447858, -0.022813577204942703, 0.006475256290286779, 0.002581021748483181, 0.01697397232055664, 0.02740982174873352, 0.028345836326479912, 0.014473279938101768, -0.0047464254312217236, 0.007942142896354198, -0.04288896918296814, 0.019362902268767357, -0.024448107928037643, -0.023875324055552483, -0.0007500330684706569, 0.02775908075273037, 0.003207941073924303, 0.01939084194600582, -0.024671634659171104, -0.007690676487982273, -0.005354135762900114, 0.013215948827564716, 0.010868930257856846, -0.014263724908232689, -0.015311500988900661, -0.018971731886267662, 0.025328241288661957, -0.013802703469991684, -0.023190777748823166, -0.0012442340375855565, 0.04026254266500473, 0.015674730762839317, 0.0056125870905816555, 0.003974563907831907, 0.020215092226862907, -0.03243914619088173, -0.015213708393275738, -0.019698189571499825, 0.00848698616027832, -0.04414629936218262, 0.01278286799788475, -0.011867810040712357, 0.016359277069568634, 0.0284715685993433, 0.032690614461898804, 0.0028831304516643286, -0.03428323194384575, 0.003153806086629629, 0.04537568986415863, -0.0005933031789027154, 0.01391446590423584, 0.021681979298591614, -0.01033805776387453, 0.007977068424224854, 0.0026927844155579805, 0.005822142586112022, 0.03403176739811897, -0.004369226284325123, -0.029449492692947388, 0.020829789340496063, -0.01033107191324234, -0.0255657359957695, 0.001807413762435317, 0.020536411553621292, -0.025188537314534187, -0.006380956154316664, 0.00608757883310318, -0.013439474627375603, 0.036490548402071, -0.000277878949418664, -0.00785133522003889, 0.004599737003445625, -0.04417423903942108, -0.011839869432151318, -0.00891308207064867, 0.00332843535579741, 0.034199412912130356, -0.012419639155268669, -0.015115915797650814, -0.0014406921109184623, -0.02215697057545185, 0.010624449700117111, -0.007121384609490633, 0.005724349990487099, 0.038809627294540405, 0.055574044585227966, -0.01918128691613674, 0.023414302617311478, 0.007376343477517366, -0.006768633611500263, -0.0003477306745480746, 0.01904158480465412, 0.01655486226081848, -0.011630314402282238, 0.0024256017059087753, -0.008319342508912086, -0.04411835968494415, 0.012482505291700363, -0.05127117782831192, 0.007313476875424385, -0.003719605039805174, 0.016806328669190407, 0.008319342508912086, -0.018804088234901428, -0.01239169854670763, 0.012342802248895168, 0.008647644892334938, -0.01044283527880907, 0.006405404303222895, 0.009339177049696445, -0.0388934463262558, -0.021709920838475227, -0.0013786987401545048, -0.0026700827293097973, 0.029449492692947388, 0.002968698972836137, 0.004187611863017082, 0.005937397945672274, 0.0002085729211103171, 0.06398419290781021, -0.009611599147319794, 0.014305636286735535, -0.007068995852023363, 0.035400860011577606, 0.011232159100472927, -0.026571601629257202, -0.015185767784714699, -0.02407090924680233, 0.0073204622603952885, -0.024727515876293182, -0.03727288916707039, -0.023246658965945244, 0.012636179104447365, -0.02166800945997238, -0.034115590155124664, -0.020424649119377136, 0.023037103936076164, 0.006600989494472742, 0.00222652405500412, -0.008445074781775475, -0.028317894786596298, -0.0007347529754042625, 0.018203362822532654, 0.04073753580451012, 0.016233544796705246, -0.012957497499883175, -0.004428600426763296, -0.013676970265805721, 0.0053611211478710175, 0.0013629820896312594, 0.023023132234811783, -0.04755506291985512, -0.01033805776387453, 0.014270709827542305, 0.011951632797718048, -0.049538854509592056, -0.0051480731926858425, -0.0023540034890174866, -0.025761321187019348, 0.019055554643273354, -0.006150445435196161, -0.012321846559643745, 0.015325471758842468, 0.018217332661151886, 0.008333312347531319, -0.024741485714912415, 0.0018877432448789477, -0.015493115410208702, 0.0010250742780044675, -0.036797896027565, 0.032355327159166336, -0.04878445342183113, 0.008885141462087631, -0.019782012328505516, 0.0009639539639465511, 0.01402622926980257, -0.014543131925165653, 0.029561255127191544, -0.009422999806702137, -0.0137328514829278, -0.001473871641792357, -0.0031485671643167734, -0.03713318333029747, 0.021849622949957848, 0.010107546113431454, 0.010896870866417885, -0.011567448265850544, -0.004557826090604067, 0.02344224415719509, 0.0034908405505120754, -0.00029556016670539975, -0.01696000248193741, -0.014033214189112186, 0.028317894786596298, -0.021765802055597305, 0.0017227184725925326, 0.04545951262116432, 0.001973311649635434, -0.007872290909290314, -0.023260628804564476, 0.01494827214628458, 0.013970348052680492, 0.0002634720294736326, -0.004599737003445625, -0.009248370304703712, 0.03380824252963066, 0.0017951896879822016, 1.124176378652919e-05, -0.001065238961018622, 0.018510710448026657, 0.0055532134138047695, 0.002340033184736967, 0.00919947400689125, -0.017071764916181564, -0.01753278635442257, 0.010987678542733192, -0.020704055204987526, -0.00255657359957695, 0.005713872145861387, 0.018301155418157578, -0.001854563714005053, 0.026781156659126282, -0.0264179278165102, 0.02286945842206478, -0.025663528591394424, -0.01575855165719986, -0.006188863888382912, -0.010079605504870415, -0.02671130560338497, -0.015716640278697014, -0.0009264086838811636, 0.0272701196372509, 0.016233544796705246, 0.007149325218051672, 0.007257595658302307, 0.0019191765459254384, 0.01373983733355999, -0.004952488467097282, 0.013048305176198483, 0.014640924520790577, 0.008710511960089207, -0.024476049467921257, 0.026236312463879585, 0.010128501802682877, 0.00848698616027832, 0.006810544524341822, 0.008193609304726124, 0.020257003605365753, 0.01118326373398304, 0.014103066176176071, 0.0004889621632173657, -0.016862209886312485, 0.004634662996977568, -0.004921054933220148, -0.004372718743979931, 0.0022771665826439857, 0.002078089164569974, 0.00890609622001648, 0.009541747160255909, 0.01004467997699976, 0.012545372359454632, 0.014878420159220695, 0.02342827245593071, 0.010806064121425152, -4.6522349293809384e-05, -0.022394467145204544, 0.032690614461898804, 0.007404284086078405, 0.015562967397272587, 0.008221549913287163, -0.00637047877535224, 0.005626557394862175, -0.023344451561570168, 0.029477434232831, -0.01128804124891758, -0.0008543740841560066, -0.001762883272022009, -0.0020431634038686752, 0.012657134793698788, -0.006768633611500263, -0.02279960736632347, -0.0440065935254097, 0.0016572325257584453, -0.01476665772497654, 0.01441739872097969, -0.017085734754800797, 0.015996048226952553, 0.0009726854623295367, -0.0020134763326495886, -0.0007347529754042625, -0.023540036752820015, 0.013963362202048302, 0.01852468028664589, -0.014962241984903812, -0.010952753014862537, -0.009457925334572792, -0.0017882045358419418, 0.010379968211054802, -0.008996903896331787, -0.010421879589557648, 0.021388601511716843, 0.028485538437962532, 0.04179928079247475, 0.00047368209925480187, 0.014096081256866455, -0.004603229463100433, 0.005898979492485523, 0.014990183524787426, -0.01846879906952381, 0.014487250708043575, -0.020690085366368294, -4.0601324144518e-05, 0.0068559483624994755, -0.029645077884197235, -0.010400923900306225, 0.020187152549624443, -0.00799103919416666, -0.007306491956114769, -0.02022906392812729, -0.03266267478466034, -0.04965061694383621, 0.0013690941268578172, -0.01267809048295021, 0.019893774762749672, 0.019474664703011513, 0.004107282031327486, 0.008961978368461132, 0.0009831632487475872, 0.017295289784669876, 0.018804088234901428, 0.015395322814583778, -0.04836534336209297, -0.012747942470014095, 0.020257003605365753, -0.012594268657267094, 0.01310418639332056, 0.009101681411266327, -0.03294207900762558, -0.020201122388243675, -0.011553477495908737, -0.022282704710960388, -0.016526920720934868, 0.003190478077158332, -0.007208699360489845, 0.022198881953954697, 0.010882901027798653, -0.010931797325611115, 0.013167052529752254, -0.005521779879927635, -0.00043264421401545405, -0.026669394224882126, -0.02925390750169754, -0.01441739872097969, -0.004212060011923313, -0.0012835257221013308, -0.008954992517828941, -0.013139111921191216, -0.010917826555669308, -0.009688436053693295, -0.001617067726328969, -0.006517167203128338, -0.0010774630354717374, 0.011322966776788235, -0.002001252258196473, 0.02286945842206478, -0.008158682845532894, 0.02003347873687744, -0.00048765246174298227, 0.012028469704091549, -0.002149687148630619, -0.006132982671260834, -0.020634204149246216, -0.0006247364799492061, 0.024657662957906723, -0.009506821632385254, -0.0053611211478710175, 0.04652125760912895, 0.01831512525677681, 0.00909469649195671, 0.011385833844542503, 0.00010532332817092538, -0.009087711572647095, -0.0026613513473421335, 0.02022906392812729, 0.012335817329585552, 0.0003590816049836576, -0.02449001930654049, -0.002025700407102704, 0.01662471331655979, -0.03179651126265526, -0.012699046172201633, 0.013390578329563141, 0.022101089358329773, -0.023526065051555634, -0.029700959101319313, -0.0033860630355775356, -0.010400923900306225, 0.008584778755903244, 0.0009176772437058389, -0.011015619151294231, -0.0027137401048094034, -0.006363493390381336, 0.0340876467525959, 0.005413509905338287, 0.007072488311678171, -0.009911961853504181, -0.009045800194144249, 0.012950512580573559, 0.010917826555669308, 0.0033179575111716986, 0.009276310913264751, -0.02186359465122223, -0.0131321270018816, -0.006394926458597183, 0.003305733436718583, 0.013586163520812988, -0.0051725213415920734, -0.008584778755903244, -0.008081845939159393, 0.017239408567547798, -0.00785133522003889, -0.003111894940957427, -0.008556838147342205, -0.011162308044731617, 0.017630578950047493, -0.01711367629468441, -0.016778387129306793, 0.016359277069568634, -0.011239144951105118, 0.007222669664770365, -0.023623857647180557, -0.027381882071495056, 0.016233544796705246, 0.02067611552774906, -0.03053917922079563, 0.015604878775775433, -0.014473279938101768, -0.0029529822058975697, 0.008333312347531319, -0.03637878596782684, -0.006946755573153496, -0.020047448575496674, 0.004749918356537819, -0.016010018065571785, 0.008822274394333363, -0.003831367939710617, 0.04414629936218262, 0.005598616786301136, 0.009660495445132256, 0.026292193681001663, -0.023134896531701088, -0.020201122388243675, -0.003379077883437276, -0.018859969452023506, -0.0057697538286447525, 0.01360013335943222, 0.005340165458619595, -0.00883624516427517, 0.009849094785749912, 0.010296146385371685, 0.021765802055597305, 0.014906360767781734, 0.005399539601057768, 0.008724481798708439, 0.022617993876338005, -0.002780099166557193, -0.012328831478953362, 0.0023941684048622847, 0.005710379686206579, 0.016848240047693253, -0.005134102888405323, -0.014585043303668499, -0.01697397232055664, -0.021402573212981224, -0.007676706183701754, -0.015255619771778584, -0.0002966515894513577, 0.0011726360535249114, -0.006922307424247265, 0.003901219693943858, 0.003978056367486715, 0.017798222601413727, 0.017630578950047493, -0.0272701196372509, -0.003817397402599454, -0.00019121913646813482, 0.007152818143367767, -0.020201122388243675, 0.00880131870508194, 0.004599737003445625, -0.002780099166557193, 0.03140534088015556, 0.005703394301235676, 0.02697674185037613, -0.02165403962135315, -0.014151962473988533, -0.02108125388622284, -0.003033311804756522, 0.020117301493883133, 0.03392000496387482, -0.01186082512140274, -0.007942142896354198, 0.01033107191324234, 0.007187743671238422, 0.02598484605550766, 0.006300626788288355, 0.011672225780785084, 0.008445074781775475, 0.025831172242760658, 0.02201726846396923, 0.0033406594302505255, -0.0053925542160868645, 0.00424349308013916, 0.010582538321614265, -0.012838749215006828, -0.0009124383213929832, -0.013404549099504948, 0.016568832099437714, 0.009925931692123413, 0.014878420159220695, -0.026725275442004204, 0.006548600271344185, 0.023274598643183708, 0.00651367474347353, -0.012964482419192791, -0.015926197171211243, 0.034394994378089905, 0.003953608218580484, -0.004935025237500668, -0.015604878775775433, -0.01249647606164217, -0.003312718588858843, 0.005954860709607601, 0.010135487653315067, -0.011616344563663006, -0.033752359449863434, -0.0010442835045978427, 0.01725338026881218, -0.022324616089463234, -0.014612983912229538, -0.012685075402259827, -0.010882901027798653, -0.0080189798027277, -0.02817819081246853, 0.011728106997907162, -0.008675585500895977, 0.006115519907325506, -0.011770018376410007, 0.005224910099059343, -0.01732323132455349, -0.029365671798586845, 0.016806328669190407, 0.007585898973047733, -0.019698189571499825, -0.032271504402160645, -0.013656014576554298, -0.0020641188602894545, 0.019334960728883743, -0.005864053498953581, -0.01267809048295021, -0.012258980423212051, 0.0014441846869885921, -0.00516553595662117, -0.003214926226064563, 0.03025977313518524, 0.007655750494450331, 0.0016738222911953926, -0.023330479860305786, -0.015954136848449707, -0.054847586899995804, -0.016862209886312485, -0.019348932430148125, -0.0010399178136140108, 0.0006229901919141412, 0.020480530336499214, 0.005776738747954369, 0.008130742236971855, 0.003110148711130023, 0.005898979492485523, -0.01760263741016388, -0.018217332661151886, -0.013509326614439487, -0.029477434232831, 0.022422408685088158, -0.007481120992451906, -0.041855160146951675, 0.007030577398836613, 0.0009569688118062913, 0.014403428882360458, 0.016876179724931717, 0.002250972203910351, -0.04537568986415863, 0.003372092731297016, 0.004872158635407686, 0.0058046793565154076, -0.01866438426077366, -0.0028901156038045883, -0.008165668696165085, -0.008493971079587936, 0.014019244350492954, 0.0045229000970721245, 0.01157443318516016, -0.002528632991015911, -0.005462405737489462, 0.014529162086546421, 0.030902409926056862, -0.008242505602538586, 0.026515720412135124, -0.022813577204942703, 0.018720265477895737, -0.004620692692697048, -0.016443099826574326, -0.03182445093989372, 0.021248899400234222, 0.005437958054244518, -0.0194467231631279, 0.007788469083607197, 0.0022736741229891777, -0.0316847488284111, 0.04003901779651642, 0.024336345493793488, -0.009667480364441872, -0.021206988021731377, 0.011825899593532085, 0.005710379686206579, 0.01310418639332056, 0.029728900641202927, -0.0013105932157486677, -0.01753278635442257, -0.007299506571143866, 0.023344451561570168, 0.02201726846396923, -0.01399130281060934, 0.009136607870459557, 0.017155587673187256, 0.0008080973057076335, 0.028569361194968224, 0.016345307230949402, -0.038586098700761795, -0.017588667571544647, -0.008074861019849777, 0.028778916224837303, -0.005626557394862175, -0.014291665516793728, -0.011770018376410007, 0.02563558891415596, -0.02692086063325405, -0.004868666175752878, 0.003138089319691062, 0.008249490521848202, -0.02989654429256916, -0.025118684396147728, -0.007830379530787468, 0.0043482705950737, 0.01626148447394371, 0.031908273696899414, -0.03294207900762558, 0.028569361194968224, -0.02605469897389412, 0.003157298546284437, 0.017784252762794495, -0.016498981043696404, -0.001182240666821599, -0.03263473138213158, 0.008109786547720432, 0.0255657359957695, -0.013690941035747528, -0.02257608249783516, -0.007648765575140715, 0.021975357085466385, 0.00593041256070137, 0.005169028881937265, -0.03928461670875549, -0.03690965846180916, 0.006070116069167852, -0.013376607559621334, -0.006321582477539778, -0.01648501120507717, 0.01494827214628458, -0.011811928823590279, -0.003908204846084118, -0.0006295387865975499, 0.006531137507408857, 0.008989918977022171, -0.006538122892379761, 0.005249358247965574, -0.00887815561145544, 0.03017595037817955, -0.011553477495908737, 0.017490874975919724, -0.013593148440122604, 0.019851863384246826, -0.0017454202752560377, 0.0002698023454286158, 0.016457069665193558, -0.018007777631282806, 4.0492181142326444e-05, -0.0020204614847898483, -0.005011862143874168, -0.018845999613404274, -0.004299374297261238, 0.0015498354332521558, -0.008074861019849777, 0.028150251135230064, 0.006646392866969109, 0.007648765575140715, -0.006318089552223682, -0.01217515766620636, 0.0013699672417715192, -0.0031241190154105425, -0.016806328669190407, -0.01281779445707798, 0.01044283527880907, 0.011029589921236038, -0.004935025237500668, -0.006443822756409645, 0.03735670819878578, 0.010631434619426727, 0.005657990928739309, -0.0014118782710283995, 0.007460165768861771, -0.03297002241015434, 0.014571072533726692, 0.009870050475001335, 0.01302734948694706, -0.012419639155268669, -0.025649558752775192, 0.0022562111262232065, 0.014543131925165653, -0.0018615488661453128, 0.01402622926980257, -0.005525272339582443, 0.011972587555646896, 0.007788469083607197, -0.00525634316727519, 0.01563281938433647, 0.015143857337534428, 0.0068315002135932446, -0.008745437487959862, -0.008249490521848202, 0.013607118278741837, -0.0009377595852129161, 0.002165403915569186, 0.0066429004073143005, 0.010729227215051651, 0.028220102190971375, -0.012258980423212051, 0.02606866881251335, 0.00951380655169487, 0.0008137727272696793, -0.013858584687113762, 0.01668059453368187, 0.0009805437875911593, 0.01288764551281929, -0.01178398821502924, -0.006366985850036144, 0.0025181551463901997, 0.014585043303668499, 0.026809098199009895, 0.025817202404141426, 0.00022057868773117661, -0.014075125567615032, 0.0018842506688088179, -0.0071353549137711525, 0.0062657007947564125, -0.006531137507408857, -0.0023941684048622847, 0.0009578419849276543, 0.008361252956092358, 0.03218768164515495, 0.003621812677010894, -0.0183989480137825, -0.0023976608645170927, -0.004935025237500668, 0.0017436740454286337, -0.008570807985961437, -0.010666360147297382, -0.0194467231631279, -0.02775908075273037, -0.02159815840423107, -0.013851599767804146, -0.016862209886312485, 0.0015236410545185208, -0.006101549137383699, 0.004837233107537031, -0.02775908075273037, -0.013530281372368336, 0.005514794960618019, 0.0013140857918187976, -0.008137727156281471, -0.008892126381397247, 0.006786096375435591, -0.005762768443673849, 0.018426889553666115, 0.019334960728883743, -0.006028205156326294, 0.007557957898825407, 0.015060034580528736, -0.007893246598541737, -0.0330817848443985, 0.010219309478998184, 0.007858320139348507, 0.006751170381903648, -0.027814961969852448, 0.03003624826669693, -0.00757891358807683, -0.024587811902165413, 0.013041319325566292, -0.019572457298636436, 0.005637035239487886, -0.014075125567615032, -0.012943526729941368, -0.001372586702927947, -0.027577467262744904, 0.005472883582115173, -0.012189128436148167, 0.009611599147319794, 0.0011403296375647187, 0.004194596782326698, -0.0027853380888700485, 0.001299242372624576, 0.009416013956069946, 0.006562571041285992, -0.008710511960089207, 0.013160067610442638, 0.028946559876203537, 0.007977068424224854, -0.030064187943935394, -0.005947875324636698, -0.030231831595301628, -0.03470234200358391, 0.0043028672225773335, 0.03017595037817955, 0.01547914557158947, -0.03246708959341049, -0.014585043303668499, -0.00010674219083739445, -0.016652654856443405, -0.005933905020356178, 0.015283560380339622, -0.02300916239619255, 0.011315981857478619, -0.01341851893812418, -0.010477760806679726, 0.012754927389323711, -0.012203098274767399, 0.0015961122699081898, 0.021779771894216537, -0.00943696964532137, -0.008431104943156242, 0.02591499499976635, 0.008312356658279896, 0.019279079511761665, -0.02655763179063797, 0.032914139330387115, -0.008647644892334938, 0.0013813180848956108, 0.007149325218051672, 0.010023724287748337, 0.011511566117405891, -0.023889293894171715, -0.006311104632914066, -0.0026823068037629128, -0.009611599147319794, 0.025649558752775192, -0.002001252258196473, 0.050377074629068375, -0.030902409926056862, -0.00909469649195671, 0.012971468269824982, -0.011246129870414734, -0.020690085366368294, -0.016387218609452248, -0.0041457004845142365, 0.003544975770637393, -0.0016781879821792245, 0.015730611979961395, 0.025314269587397575, -0.02535618096590042, -0.004732455126941204, -0.012433609925210476, -0.001854563714005053, 0.010645405389368534, -7.061574433464557e-05, 0.012608238495886326, -0.014473279938101768, 0.011169292964041233, -0.011127381585538387, -0.004875651560723782, -0.020969491451978683, -0.003447183407843113, -0.005836112890392542, -0.003649753285571933, 0.008605734445154667, -0.020983463153243065, 0.026948800310492516, 0.014529162086546421, -0.00859176367521286, 0.02875097468495369, 0.011190248653292656, -0.019754070788621902, -0.017295289784669876, 0.02514662593603134, -0.013292785733938217, -0.007362373173236847, 0.03364059701561928, 0.0020379244815558195, 0.020787877961993217, -0.0013848106609657407, -0.0051795062609016895, -0.008780363947153091, -0.01221008412539959, 0.02186359465122223, -0.0027067549526691437, 0.002078089164569974, -0.018273215740919113, -0.0025687976740300655, 0.0014529161853715777, 0.014179903082549572, -0.006150445435196161, -0.008612719364464283, -0.004575288854539394, -0.01054062694311142, -0.0070759812369942665, -0.027605406939983368, -0.009576673619449139, -0.013334697112441063, -0.01887393929064274, -0.005389061756432056, -0.0025443495251238346, -0.012950512580573559, -0.015465174801647663, 0.01004467997699976, -0.008123757317662239, 0.006199341733008623, 0.027074534446001053, -0.014242769218981266, 0.007072488311678171, -0.010352027602493763, -0.013488370925188065, -0.010009754449129105, -0.011532521806657314, 0.015381352975964546, 0.010889885947108269, -0.004753410816192627, -0.0330817848443985, 0.0211511068046093, 0.006936277728527784, 0.0015480892034247518, 0.00564402062445879, -0.006335552781820297, 0.02671130560338497, 0.018776146695017815, 0.007121384609490633, 0.0036776941269636154, -0.016135752201080322, -0.0058291275054216385, -0.006660363171249628, -0.01953054592013359, -0.00952079240232706, 0.010463790036737919, 0.00787927582859993, -0.005741812754422426, 0.01610781066119671, -0.013502340763807297, -2.0000517906737514e-05, 0.0025199013762176037, -0.02122095786035061, 0.002579275518655777, 0.02001950889825821, -0.007942142896354198, -0.010275190696120262, -0.013355652801692486, -0.00429588183760643, -0.020480530336499214, -0.007096936460584402, -0.0005024959682486951, 0.009073740802705288, 0.003813904942944646, 0.00930425152182579, 0.02208711951971054, 0.039787549525499344, -0.029868602752685547, 0.03302590176463127, -0.003424481488764286, 0.012363757938146591, -0.01669456623494625, -0.007062010932713747, 0.019823923707008362, 0.006985174026340246, 0.009171533398330212, 0.007900231517851353, -0.003108402481302619, -0.02222682349383831, -0.0034367055632174015, 0.0011141352588310838, -0.019851863384246826, 0.011106426827609539, 0.0016092094592750072, -0.003083954332396388, -0.00323064299300313, -0.011770018376410007, -0.01853865198791027, 0.015521056018769741, -0.007921187207102776, 0.006628930103033781, 0.020857729017734528, -0.00420507462695241, 0.0035589460749179125, 0.007641780190169811, -0.02180771343410015, -0.019977597519755363, 0.022254763171076775, -0.009311236441135406, 0.0131321270018816, 0.0064822412095963955, -0.003967578522861004, 0.012119276449084282, 0.00016087728727143258, 0.007016607094556093, 0.04135223105549812, -0.006160923279821873, 0.01761660911142826, -0.002940758131444454, -0.014529162086546421, 0.007634794805198908, 0.01043584942817688, -0.007166788447648287, -0.013188008219003677, 0.002509423764422536, -0.011588403023779392, -0.000649621186312288, 0.004330807831138372, 0.028569361194968224, -0.016652654856443405, 0.01859453320503235, 0.01838497817516327, -0.004872158635407686, -0.0015821418492123485, 0.021318750455975533, -0.000602034677285701, -0.00530873192474246, 0.026864979416131973, 0.018971731886267662, 0.02782893180847168, 0.007809424307197332, -0.0031485671643167734, 0.007418254856020212, -0.02279960736632347, -0.006538122892379761, 0.014186888001859188, 0.016233544796705246, 0.002093805931508541, 0.0071004293859004974, -0.00969542097300291, -0.01796586625277996, -0.019348932430148125, -0.022953281179070473, -0.00727855134755373, -0.018776146695017815, -0.004673081450164318, 0.012056410312652588, -0.0058570681139826775, 0.013439474627375603, -0.000986655824817717, -0.004253970924764872, 0.0040479083545506, 0.006000264547765255, 0.006290148943662643, 0.008570807985961437, -0.02050847001373768, 0.012552357278764248, 0.008934037759900093, -0.01302734948694706, 0.011483625508844852, 0.026166461408138275, -0.00048546958714723587, 0.02889067865908146, -0.013879540376365185, -0.019823923707008362, 0.01683426834642887, 0.018832027912139893, -0.01612178049981594, 0.0026159475091844797, -0.008934037759900093, -0.009003888815641403, -0.003985041752457619, -0.047108013182878494, -0.012028469704091549, -0.011693181470036507, -0.010310116223990917, 0.005951368249952793, -0.004620692692697048, 0.0016144482651725411, -0.009213444776833057, -0.0036078423727303743, -0.010324086993932724, -0.028443627059459686, -0.009318222291767597, -0.013851599767804146, 0.02214300073683262, 0.015018124133348465, 0.032411206513643265, 0.015423263423144817, 0.0022998685017228127, -0.008934037759900093, -0.003017595037817955, -0.007072488311678171, -0.0018912358209490776, -0.003092685714364052, 0.006101549137383699, 0.015954136848449707, -0.027367910370230675, 0.014515191316604614, 0.012224053964018822, -0.011749062687158585, 0.013460430316627026, 0.005455420818179846, 0.010715256445109844, 0.011825899593532085, 0.011022604070603848, -0.023092985153198242, 0.01904158480465412, 0.028289953246712685, 0.007697661407291889, -0.011008634231984615, 0.007313476875424385, -0.01132995169609785, -0.014571072533726692, -0.008109786547720432, 0.02003347873687744, 0.0005614333203993738, 0.011413774453103542, 0.010065635666251183, 0.001155173173174262, 0.02407090924680233, -0.0005382949602790177, -0.014459310099482536, 0.02370768040418625, -0.006328567396849394, 0.0049035921692848206, 0.020857729017734528, 0.01838497817516327, -0.01257331296801567, 0.00738332886248827, 0.001447677263058722, -0.003544975770637393, -0.0066149597987532616, -0.008500956930220127, 0.02094155177474022, -0.01682029850780964, -0.016443099826574326, 0.02342827245593071, -0.011972587555646896, -0.0036986495833843946, 0.010764152742922306, -0.00583960535004735, -0.011504581198096275, -0.005305239465087652, 0.010750182904303074, 0.03836257383227348, 0.03243914619088173, -0.010100561194121838, 0.0024465571623295546, -0.009471896104514599, -0.003448929637670517, -0.027814961969852448, 0.04124046489596367, -0.024657662957906723, -0.0048127849586308, -0.0013551237061619759, 0.003232389222830534, -0.0024710053112357855, -0.008815289475023746, 0.003468138864263892, -0.0122799351811409, 0.008032949641346931, 0.006307612173259258, -0.0017672489630058408, 0.005993279162794352, -0.010589523240923882, -0.0016030974220484495, 0.011672225780785084, 0.02911420539021492, -0.01423578429967165, -0.0034856018610298634, -0.024811336770653725, 0.027158355340361595, 0.015213708393275738, -0.003279539057984948, 0.002631664276123047, 0.013257860206067562, -0.017267350107431412, 0.00507472874596715, -0.008605734445154667, -0.013565207831561565, -0.010310116223990917, -0.018915850669145584, -0.00820059422403574, -0.004166656173765659, 0.025090744718909264, 0.002718979027122259, 0.03229944407939911, 0.0211511068046093, 0.002294629579409957, -0.024517960846424103, -0.00870352704077959, -0.01930702105164528, 0.02328857034444809, -0.005919934716075659, -0.0013891764683648944, -0.008647644892334938, -0.0004125618434045464, 0.05135499686002731, -0.0034209887962788343, -0.0013804449699819088, 0.014375487342476845, -0.0040479083545506, -0.007439210079610348, 0.012377727776765823, -0.013774762861430645, 0.022841518744826317, 0.0011752555146813393, 0.0026805605739355087, -0.00883624516427517, -0.01331374142318964, 0.009115652181208134, -0.00933219213038683, 0.006922307424247265, 0.02647380903363228, 0.0022824055049568415, 0.025607647374272346, -0.008989918977022171, 0.02143051289021969, 0.027451733127236366, 0.006600989494472742, 0.005196969490498304, -0.002387183252722025, 0.0004239127447362989, -0.00415268586948514, 0.008961978368461132, 0.015060034580528736, 0.017658518627285957, 0.017979837954044342, -0.014612983912229538, -0.010519672185182571, -0.026376016438007355, -0.002746919635683298, -0.013453444465994835, -0.004128237720578909, 0.0022614500485360622, -0.0023278091102838516, 0.0023033611942082644, 0.016065899282693863, 0.02179374173283577, 0.0005959226400591433, -5.034236528445035e-05, 0.0008264333591796458, -0.017015883699059486, -0.022450348362326622, -0.002312092576175928, -0.0007120511727407575, 0.0037021420430392027, -0.012293905951082706, 0.014850479550659657, 0.0009657003101892769, -0.02122095786035061, -0.001685173250734806, 0.02457384206354618, 0.01570267044007778, 0.030511239543557167, -0.02542603202164173, -0.008668600581586361, -0.002416870091110468, 0.026851007714867592, 0.02017318271100521, 0.018217332661151886, -0.022129030898213387, 0.0002746046520769596, 0.03053917922079563, -0.029198026284575462, -0.0017969359178096056, 0.010065635666251183, 0.020466558635234833, -0.014096081256866455, -0.005647513084113598, 0.008319342508912086, 0.009856080636382103, -0.012629194185137749, 0.002727710409089923, 0.00727855134755373, -0.004260955844074488, -0.0075439875945448875, 0.0006828007171861827, 0.005305239465087652, 0.017225438728928566, 0.0062342677265405655, -0.020005537196993828, -0.020564351230859756, -0.013355652801692486, 0.01598207838833332, -0.02102537266910076, -0.018552621826529503, -0.018077630549669266, 0.016233544796705246, -0.0006657743942923844, 0.013837628997862339, -0.03498174995183945, -0.018985701724886894, 0.011874795891344547, 0.0009534762357361615, -0.007606854196637869, 0.012203098274767399, 0.005843097809702158, -0.01902761310338974, -0.05157852545380592, 0.02095552161335945, 0.0012747942237183452, 0.0036986495833843946, -0.0042749266140162945, 0.03380824252963066, -0.011846855282783508, 0.004477496258914471, -0.0017445471603423357, 0.000771861698012799, -0.002048402326181531, 0.00025976114557124674, 0.009143592789769173, 0.035317037254571915, -0.0009115652064792812, 0.02542603202164173, -0.003164283698424697, 0.01675044745206833, -0.009660495445132256, 0.019921716302633286, -0.025607647374272346, 0.0073484028689563274, 0.0045263925567269325, -0.004536870401352644, 0.024406196549534798, 0.0035310054663568735, 0.008193609304726124, -0.005780231207609177, 0.008794333785772324, 0.0025949920527637005, -0.0021881056018173695, -0.007844350300729275, -0.016722505912184715, 0.00768369110301137, -0.018343066796660423, 0.009569687768816948, 0.008829259313642979, -0.014117036014795303, 0.0182452742010355, 0.006377463694661856, -0.008745437487959862, 0.01675044745206833, -0.01682029850780964, 0.01054062694311142, 0.004240000620484352, 0.004096804652363062, -0.003925667610019445, 0.006028205156326294, 0.009066755883395672, -0.003918682690709829, 0.0013690941268578172, -0.019055554643273354, 0.009646524675190449, 0.004012982361018658, 0.004030445124953985, -0.003431466640904546, -0.002797562163323164, 0.01444533932954073, -0.021206988021731377, -0.009318222291767597, -0.0014267218066379428, -0.028639212250709534, -0.04112870246171951, 0.00612599728628993, 0.010666360147297382, -0.004798814654350281, 0.0025722903665155172, 0.012964482419192791, 0.0026176939718425274, 0.003129357937723398, 0.003974563907831907, -0.0035414830781519413, -0.0018493247916921973, -0.02521647699177265, 0.016987942159175873, 0.008542867377400398, -0.006129490211606026, 0.00299838581122458, -0.014654894359409809, 0.00012158568279119208, -0.01904158480465412, -0.005916442256420851, 0.0036742014344781637, -0.010317102074623108, -0.02861127257347107, -1.7462934920331463e-05, 0.010624449700117111, 0.01117627788335085, -0.010722242295742035, -0.008291400969028473, 0.003719605039805174, -0.008312356658279896, -0.015884285792708397, -0.00026565490406937897, -0.0426095612347126, 0.008480001240968704, -6.608629337279126e-05, -0.009870050475001335, -0.012552357278764248, 0.001617940841242671, -0.021486394107341766, -0.013250874355435371, 0.016722505912184715, 0.005968831013888121, 0.008710511960089207, -0.0009988798992708325, -0.022841518744826317, 1.70945750141982e-05, 0.017840133979916573, -0.015996048226952553, -0.0060177273117005825, 0.02321871742606163, 0.036322902888059616, -0.002189852064475417, -0.0018371007172390819, -0.005169028881937265, -0.0071318624541163445, 0.01788204535841942, 0.00284121953882277, -0.0075370026752352715, -0.002006491180509329, 0.020340826362371445, -0.0077256024815142155, 0.00637047877535224, -0.004030445124953985, 0.006527645047754049, -0.005909456871449947, -0.004966458771377802, 0.01958642713725567, -0.001691285171546042, 0.001638896414078772, -0.0033476445823907852, -0.012957497499883175, -0.0018388470634818077, 0.0032952558249235153, -0.000748286722227931, 0.010379968211054802, 0.003939637914299965, -0.009157562628388405, -0.005399539601057768, -0.004163163714110851, -0.03774787858128548, -0.009360132738947868, -0.01577252335846424, -0.007142340298742056, 0.011155322194099426, -0.015227679163217545, -0.020550381392240524, -0.0024290941655635834, 0.02008935995399952, -0.011951632797718048, 0.00838220864534378, 0.009660495445132256, 0.0018493247916921973, -0.011972587555646896, 0.005455420818179846, 0.0047394405119121075, 0.02193344570696354, -0.0175467561930418, 0.015143857337534428, 0.003887249156832695, 0.03400382772088051, -0.006939770188182592, -0.014375487342476845, -0.023190777748823166, 0.011749062687158585, 0.016065899282693863, -0.005853575654327869, 0.016582801938056946, -0.02671130560338497, 0.023330479860305786, 0.013062275014817715, -0.002537364372983575, -0.01696000248193741, -0.015087975189089775, -0.014696805737912655, 0.0020309393294155598, -0.006174893584102392, -0.0009133114945143461, -0.002118254080414772, 0.00768369110301137, 0.001425848575308919, -0.0004963839310221374, -0.023120924830436707, -0.007718617096543312, -0.02725614793598652, -0.005067743826657534, -0.019921716302633286, -0.0026980233378708363, 0.002846458461135626, -0.018287185579538345, 0.014822538942098618, -0.006174893584102392, -0.008186623454093933, -0.01853865198791027, 0.007236639969050884, 0.02278563752770424, 0.01631736569106579, -0.01096672285348177, -0.0010556343477219343, -0.032914139330387115, 0.03129357844591141, 0.00512711750343442, -0.016876179724931717, 0.0009639539639465511, -0.01974010095000267, 0.015604878775775433, -0.01781219244003296, 0.015940167009830475, -0.010072620585560799, -0.02854141965508461, 0.010002768598496914, 0.025579705834388733, 0.0018720265943557024, 0.008340297266840935, 0.009080725722014904, -0.004896606784313917, -0.010198353789746761, -0.00021064665634185076, 0.0009002143051475286, 0.006171401124447584, -0.01675044745206833, -0.011420759372413158, -0.010743197053670883, 0.001424102345481515, -0.02214300073683262, -0.002266688970848918, 0.010037695057690144, 0.00016960875655058771, 0.024476049467921257, -0.0006146953091956675, 0.018832027912139893, -0.007928172126412392, -0.0029145637527108192, 0.013642044737935066, -0.0018475784454494715, -0.002457035006955266, 0.022282704710960388, -0.006160923279821873, 0.014459310099482536, -0.006328567396849394, -0.016303395852446556, -0.02379150129854679, 0.018426889553666115, 0.017169557511806488, 0.016247514635324478, 0.019544515758752823, -0.019502606242895126, 0.022813577204942703, -0.013579177670180798, -0.003978056367486715, 0.02038273774087429, 0.01725338026881218, -0.007460165768861771, 0.004163163714110851, -0.008521911688148975, 0.029086263850331306, -0.018412917852401733, 0.002343525877222419, 0.015143857337534428, -0.01373983733355999, 0.01577252335846424, 0.005818649660795927, 0.033277370035648346, -0.014005273580551147, -0.00690484419465065, -0.010233279317617416, 0.01796586625277996, 0.0005033690831623971, 0.003015848807990551, -0.013118156231939793, 0.004753410816192627, -0.024098848924040794, 0.0025775290559977293, 0.011022604070603848, 0.01004467997699976, -0.007949127815663815, 0.014612983912229538, -0.008403164334595203, -0.02180771343410015, 0.007159803062677383, 0.004054893273860216, -0.0006356508238241076, 0.023526065051555634, 0.010030709207057953, -0.026096610352396965, -0.012433609925210476, 0.01845482923090458, -0.013984317891299725, -0.0012023230083286762, 0.004435585346072912, -0.011770018376410007, 0.017239408567547798, 0.017658518627285957, -0.005790709052234888, -0.007690676487982273, -0.010128501802682877, 0.023176806047558784, 0.018971731886267662, -0.008619704283773899, 0.0051201325841248035, -0.006059638224542141, -0.025761321187019348, 0.008948007598519325, -0.0004514168540481478, -0.007159803062677383, -0.005455420818179846, -0.03587585315108299, 0.0066394079476594925, -0.006597496569156647, 0.0028551898431032896, 0.003450675867497921, 0.0031415820121765137, -0.006897859275341034, 0.009395059198141098, -0.0008268699748441577, -0.0022073148284107447, 0.007425239775329828, -0.00318523938767612, -0.010296146385371685, 0.009569687768816948, -0.010799079202115536, -0.012475520372390747, 0.0034838553983718157, 0.01605192944407463, 0.0077325874008238316, 0.009283295832574368, -0.020829789340496063, -0.006328567396849394, -0.010030709207057953, -0.0022317629773169756, 0.037803761661052704, -0.010568568482995033, 0.006115519907325506, 0.011553477495908737, -0.02292534150183201, -0.0020379244815558195, -0.011846855282783508, -0.0011735091684386134, -0.004921054933220148, 0.02365179918706417, 0.011958617717027664, -0.005280791316181421, -0.009031829424202442, -0.008738452568650246, -0.017211468890309334, 0.0017262110486626625, 0.008193609304726124, -0.017141615971922874, 0.0027329493314027786, 0.016932060942053795, -0.005123625043779612, 0.0030769691802561283, -0.005259836092591286, -0.0077256024815142155, -0.006862933281809092, 0.004023460205644369, 0.0025495884474366903, 0.014347546733915806, 0.003286524210125208, 0.0050153546035289764, -0.01302734948694706, -0.0009665734251029789, 0.01867835409939289, 0.004645140841603279, 0.02208711951971054, -0.0038034270983189344, 0.011630314402282238, 0.00922741461545229, -0.010715256445109844, -0.011099440976977348, 0.00013741146540269256, -0.021570216864347458, 0.014347546733915806, 0.011721122078597546, 0.01689014956355095, 0.024881189689040184, -0.026809098199009895, -0.025747351348400116, -0.005898979492485523, -0.0007194728823378682, -0.010212324559688568, 0.003183492925018072, 0.008535882458090782, 0.009988798759877682, 0.020117301493883133, 0.0023417796473950148, -0.0018283692188560963, 0.013076245784759521, 0.007495091762393713, -0.0062098195776343346, -0.021765802055597305, -0.007585898973047733, 0.010135487653315067, 0.003555453382432461, -0.030846526846289635, -0.01455710269510746, -0.004023460205644369, 0.009660495445132256, -0.0009115652064792812, 0.00041408982360735536, 0.014277695678174496, 0.010994663462042809, 0.01360013335943222, -0.02903038263320923, 0.0016764417523518205, -0.005469391122460365, 0.026096610352396965, 0.01610781066119671, -0.009402044117450714, -0.02024303376674652, -0.0015716641210019588, -0.012021483853459358, -0.021472424268722534, -0.007648765575140715, -0.015814432874321938, 0.011057530529797077, 0.0006919687730260193, 0.0051725213415920734, 0.013062275014817715, 0.011378847993910313, 0.024056939408183098, 0.006066623609513044, -0.007648765575140715, -0.0008050412870943546, 0.004833740182220936, 0.000385712570277974, -0.021137136965990067, -0.007606854196637869, -0.006471763364970684, -0.02094155177474022, -0.0033336742781102657, 0.012950512580573559, 0.029589196667075157, -0.006038683000952005, -0.004260955844074488, 0.013292785733938217, -0.029225967824459076, 0.01967024989426136, 0.0005413509788922966, 0.029505373910069466, 0.01096672285348177, -0.005106162279844284, -0.006153938360512257, -0.01696000248193741, -0.00944395549595356, -0.023051073774695396, 0.006105042062699795, -0.021695949137210846, 0.0020291930995881557, 0.001785585074685514, -0.01796586625277996, -0.006807052064687014, 0.00527031347155571, 0.02293931134045124, -0.006534629967063665, 0.004648633301258087, -0.013264845125377178, 0.02640395797789097, -0.0012870182981714606, 0.047191835939884186, -0.006468270905315876, 0.017281319946050644, 0.002319077728316188, -0.00940902903676033, -0.019125405699014664, 0.011169292964041233, -0.028429657220840454, -0.00608757883310318, 0.007690676487982273, 0.004460033494979143, -0.024406196549534798, 0.017141615971922874, -0.018133511766791344, 0.007921187207102776, -0.00445304811000824, 0.010065635666251183, 0.0012669359566643834, -0.0025722903665155172, -0.008556838147342205, 0.0016319112619385123, 0.008954992517828941, -0.03520527482032776, 0.027605406939983368, -0.010882901027798653, -0.027521584182977676, -0.01953054592013359, -0.0012651896104216576, 0.0022614500485360622, -0.010128501802682877, -0.004418122582137585, -0.013474400155246258, -0.035037633031606674, -0.0010966722620651126, 0.019614368677139282, 0.0035152886994183064, -0.011811928823590279, 0.011218189261853695, 0.016303395852446556, 0.002746919635683298, 0.008507941849529743, -0.02166800945997238, 0.007935157045722008, 0.0008107167668640614, 0.02775908075273037, 0.008570807985961437, 0.002512916224077344, 0.01932099089026451, 0.004236508160829544, -0.0045263925567269325, 0.006290148943662643, 0.012196113355457783, 0.01612178049981594, -0.00685245543718338, 0.020466558635234833, 0.0101494574919343, -0.014515191316604614, -0.01128804124891758, 0.0036637235898524523, 0.005651005543768406, -0.02173786051571369, -0.004128237720578909, 0.005301747005432844, 0.014878420159220695, -0.020550381392240524, -0.011525536887347698, 0.00020824548846576363, 0.0005203954642638564, -0.010107546113431454, 0.018622472882270813, -2.1787738660350442e-05, 0.014158947393298149, 0.010882901027798653, -0.03366853669285774, -0.003859308548271656, 0.014906360767781734, 0.007341417949646711, 0.0037230977322906256, 0.008158682845532894, 0.006003757007420063, -0.004756903275847435, 0.021835653111338615, -0.0016624713316559792, 0.016345307230949402, -0.006468270905315876, 0.004809292033314705, -0.005092191975563765, 0.020704055204987526, 0.010393938980996609, -0.008563823066651821, 0.011951632797718048, -0.0070480406284332275, -0.013886525295674801, -0.03280237689614296, 0.013076245784759521, 0.00660448195412755, 0.023260628804564476, 0.013327711261808872, 0.018007777631282806, 0.00032153629581443965, 0.02229667454957962, -0.020606262609362602, -0.025537796318531036, -0.0027137401048094034, -0.009206458926200867, -0.024266494438052177, -0.014117036014795303, -0.013055290095508099, -0.0019645800348371267, 0.011504581198096275, 0.0016004779608920217, 0.0037021420430392027, -0.01001673936843872, -0.013663000427186489, -0.009981813840568066, 0.0013603626284748316, 0.01086194533854723, 0.00015421953867189586, 0.01740705408155918, 0.0067267222329974174, -0.01675044745206833, -0.007523032370954752, -0.030902409926056862, -0.0010687316535040736, 0.006555585656315088, 0.0057732462882995605, -0.00848698616027832, -0.020047448575496674, 0.018273215740919113, 0.013201978988945484, 0.014780627563595772, 0.024098848924040794, -0.005783724132925272, -0.012056410312652588, -0.012580297887325287, 0.030846526846289635, 0.0272701196372509, -0.01302734948694706, 0.004575288854539394, 0.014501220546662807, -0.01257331296801567, -0.0006373971118591726, 0.01270603109151125, 0.001763756386935711, 0.002823756542056799, 0.005657990928739309, -0.012056410312652588, 0.011839869432151318, 0.0007295141112990677, 0.003546722000464797, -0.01349535584449768, -0.003354629734531045, 0.008815289475023746, -0.011986558325588703, -0.011378847993910313, 0.00026194402016699314, 0.014487250708043575, -0.0017951896879822016, -0.0036986495833843946, 0.025118684396147728, -0.0005352389416657388, -0.028723035007715225, 0.03693759813904762, 0.001663344562985003, -0.016652654856443405, 0.02578926272690296, -0.015004153363406658, 0.011050544679164886, 0.0021601649932563305, 0.008850215002894402, 0.008235519751906395, -0.0024797366932034492, -0.010051664896309376, -0.001302734948694706, 0.006960725877434015, 0.017993807792663574, -0.021626098081469536, -0.002851697150617838, 0.0011848601279780269, 0.018901880830526352, 0.0036462608259171247, 0.00670925946906209, 0.008431104943156242, -0.006199341733008623, -0.006318089552223682, -0.03685377910733223, 0.02272975631058216, 0.002603723667562008, -0.032830316573381424, -0.011197233572602272, -0.008088831789791584, 0.03210385888814926, -0.0027661288622766733, -0.008689556270837784, 0.0023295555729418993, 0.012726986780762672, 0.019223198294639587, -0.03129357844591141, -0.027884814888238907, 0.004823262337595224, 0.004184118937700987, -0.0062063271179795265, 0.005975816398859024, 0.027004681527614594, 0.01054761279374361, 0.0017916971119120717, -0.012692061252892017, 0.0027102474123239517, -0.010868930257856846, 0.005940890405327082, -0.010596509091556072, -0.0034873480908572674, 0.010065635666251183, -0.007257595658302307, -0.01631736569106579, -0.005633542779833078, -0.01575855165719986, 0.004026952665299177, -0.008039935491979122, 0.014515191316604614, 0.0057732462882995605, -0.002436079317703843, -0.002748665865510702, 0.028443627059459686, 0.0008744564256630838, -0.014585043303668499, 0.009143592789769173, 0.032411206513643265, 0.015744581818580627, -0.00736935855820775, -0.003042043186724186, -0.0027085011824965477, -0.03998313471674919, 0.005263328552246094, -0.00891308207064867, -0.018231304362416267, 0.014920331537723541, -0.00413871556520462, -0.002694530878216028, 0.0073484028689563274, 0.025719409808516502, 0.012161187827587128, 0.013167052529752254, 0.001469505950808525, -0.027032623067498207, -0.011001648381352425, 0.000843896297737956, -0.0022352556698024273, 0.0010722242295742035, 0.0021811204496771097, 0.007523032370954752, 0.004669588524848223, -0.010519672185182571, -0.0038732788525521755, 0.011874795891344547, 0.00993990246206522, -0.006988666485995054, 0.03939637914299965, -0.02903038263320923, -0.016806328669190407, 0.009066755883395672, 0.0013463922077789903, 0.02961713634431362, 0.012482505291700363, 0.007802439387887716, -0.004756903275847435, -0.010743197053670883, 0.005525272339582443, -0.016876179724931717, -0.0008032949990592897, -0.00909469649195671, -0.02187756448984146, 0.006754663307219744, 0.01584237441420555, 0.013725866563618183, -0.016652654856443405, -0.001856309943832457, -0.004805799573659897, 0.0022562111262232065, -0.019279079511761665, -0.0022771665826439857, -0.006590511649847031, -0.002340033184736967, -0.0032952558249235153, -0.008375223726034164, -0.0038767715450376272, 0.005926920101046562, 0.0034436907153576612, -0.0049594733864068985, -0.016708536073565483, 0.004893114324659109, -0.0034297204110771418, 0.021109195426106453, -0.012468535453081131, 0.02059229277074337, 0.025803232565522194, -0.0034821091685444117, 0.023386362940073013, -0.024252522736787796, 0.007271565962582827, -0.008954992517828941, -0.018063658848404884, -0.010324086993932724, -0.015618848614394665, -0.013565207831561565, -0.012824779376387596, -0.0023085998836904764, -0.010449820198118687, 0.011644285172224045, -0.006583526264876127, 0.017225438728928566, -0.009471896104514599, 0.003765008645132184, 0.002581021748483181, 0.0012485998449847102, -0.005214432254433632, 0.008466030471026897, -0.026739245280623436, -0.014794598333537579, 0.0030769691802561283, 0.0008914828067645431, -0.009611599147319794, 0.018301155418157578, 0.005654498469084501, 0.0035868866834789515, 0.007145832758396864, -1.6412430341006257e-05, -0.0138096883893013, 0.008459045551717281, -0.0008801319054327905, -0.0016519936034455895, -0.003015848807990551, 0.001469505950808525, -0.03182445093989372, -0.005811664741486311, 0.005951368249952793, 0.007970083504915237, -0.01405416987836361, -0.01033107191324234, -0.006227282341569662, 0.02789878472685814, 0.0011464416747912765, 0.015409293584525585, -0.0007316969567909837, 0.02101140283048153, 0.03520527482032776, -0.008850215002894402, -0.0030315653420984745, -0.016457069665193558, 0.02562161721289158, -0.0013201978290453553, -0.01881805807352066, 0.0005474630161188543, -0.003057759953662753, 0.016806328669190407, -0.01923716813325882, -0.0013420265167951584, 0.010079605504870415, -0.016652654856443405, -0.005312224850058556, -0.006132982671260834, 0.006269193720072508, 0.02784290350973606, 0.003164283698424697, 0.01257331296801567, 0.027856873348355293, 0.01568870060145855, -0.01598207838833332, 0.02278563752770424, 0.019195258617401123, -0.011106426827609539, -0.016345307230949402, -0.0047464254312217236, -0.0068315002135932446, 0.006828007288277149, 0.014892390929162502, -0.00016251443594228476, 0.013865570537745953, 0.022198881953954697, -0.020606262609362602, 0.00830537173897028, -0.00894102267920971, -0.005437958054244518, -0.008738452568650246, -0.0020239541772753, -0.03271855413913727, -0.006464778445661068, -0.02252020128071308, 0.009688436053693295, 0.012643164955079556, -0.004344778135418892, 0.02407090924680233, 0.004446063190698624, -0.009737332351505756, 0.008291400969028473, -0.013984317891299725, -0.010889885947108269, -0.004795321729034185, 0.0007172900368459523, -0.004187611863017082, 0.010421879589557648, 0.019125405699014664, 0.011672225780785084, 0.0019628338050097227, 0.00014297777670435607, -0.02165403962135315, 0.0077256024815142155, 0.002409884938970208, 0.02038273774087429, 0.01676441729068756, 0.013271830044686794, 0.017714401707053185, -0.006733707617968321, -0.003452422097325325, 0.017798222601413727, 0.027158355340361595, 0.01584237441420555, -0.025691470131278038, 0.028778916224837303, -0.016065899282693863, -0.012936541810631752, -0.017239408567547798, 0.012699046172201633, 0.0034646461717784405, -0.013348666951060295, -0.02499295212328434, 0.008752422407269478, -0.0043098521418869495, 0.005535750184208155, 0.00343321287073195, 0.0037545310333371162], "7eb61bf6-a6fb-406f-9b98-866c97063e09": [0.010997680015861988, 0.006682215724140406, -0.0044408757239580154, -0.009704969823360443, 0.010110147297382355, -0.06606325507164001, 0.03578426316380501, 0.026175763458013535, -0.017339032143354416, 0.0002267065574415028, 0.004585582297295332, 0.05209427326917648, -0.0038684820756316185, -0.02989310771226883, -0.0531490221619606, -0.004588798154145479, -0.0018377701053395867, 0.015371025539934635, 0.032877273857593536, 0.0015772987389937043, 0.055670127272605896, -0.018586721271276474, -0.04813253507018089, -0.009859323501586914, -0.008380102925002575, -0.002725302241742611, -0.013904668390750885, -0.0011962387943640351, -0.027037570253014565, -0.016014164313673973, 0.016271421685814857, 0.007351080421358347, -0.01569259539246559, 0.020336059853434563, -0.022226888686418533, -0.04164969176054001, -0.01879252679646015, 0.003910285886377096, -0.001340945134870708, -0.0011681015603244305, -0.010656815953552723, 0.031179387122392654, 0.018239427357912064, 0.014805063605308533, 0.014354865998029709, 0.008315789513289928, -0.026831766590476036, -0.0051033091731369495, 0.009608498774468899, -0.012033133767545223, -0.02587991952896118, -0.025146741420030594, -0.01708177663385868, 0.018573859706521034, 0.014792201109230518, -0.022329792380332947, 0.03089640475809574, 0.0978086069226265, 0.007582610938698053, -0.0324399396777153, 0.014560670591890812, -0.03488386794924736, 0.006772255524992943, 0.015409613959491253, -0.03501249477267265, 0.007222452666610479, -0.028941262513399124, 0.007531159557402134, -0.0269346684217453, -0.012168193235993385, 0.006650059018284082, 0.0369933657348156, -0.0410580039024353, 0.012213212437927723, -0.003945658914744854, 0.022329792380332947, 0.0005032563931308687, -0.015499654226005077, 0.03210550546646118, -0.006228802725672722, 0.008521594107151031, -0.0276549831032753, -0.011132738552987576, -0.011949525214731693, 0.026651686057448387, 0.024915210902690887, 0.007724101189523935, -0.01000724546611309, -0.04555997997522354, -0.03933439031243324, -0.025686977431178093, 0.02816949598491192, -0.006084096617996693, -0.03712199255824089, -0.007820571772754192, 0.006080880761146545, -0.014149061404168606, 0.02572556585073471, 0.012843488715589046, 0.00773053290322423, 0.03645312786102295, 0.011602230370044708, -0.008155004121363163, 0.020606178790330887, 0.006412097252905369, -0.028066592290997505, 0.03197687864303589, -0.005997272673994303, 0.011750152334570885, 0.007087393663823605, 0.0011954349465668201, -0.007190295960754156, -0.026986118406057358, 0.007743395399302244, -0.043116047978401184, 0.01781495474278927, -0.024040542542934418, -0.023616069927811623, 0.027372002601623535, -0.025249643251299858, -0.0025034192949533463, -0.015654006972908974, 0.011679407209157944, -0.010759717784821987, -0.015949850901961327, 0.022008221596479416, -0.027732159942388535, 0.02919851802289486, 0.01655440218746662, -0.002368360059335828, 0.020657630637288094, -0.025635527446866035, 0.008444417268037796, -0.014316277578473091, -0.012991410680115223, 0.017043188214302063, 0.03560418263077736, 0.08587194234132767, 0.010592501610517502, 0.021185003221035004, -0.028606830164790154, -0.017544835805892944, 0.008309357799589634, 0.023590344935655594, 0.0009510420495644212, 0.002911812625825405, -0.02419489435851574, -0.0019519273191690445, -0.005949037149548531, 0.029635852202773094, -0.04612594097852707, -0.04337330535054207, 0.01380176655948162, -0.00863092765212059, 0.05325192213058472, -0.04450523108243942, -0.005016485694795847, 0.0542294941842556, -0.013158626854419708, 0.017068913206458092, 0.0212493184953928, -0.05356062948703766, 0.005289819557219744, 0.01268913596868515, 0.011016974225640297, 0.003923148848116398, 0.020516138523817062, 0.0137374522164464, -0.0445309542119503, 0.0009550616377964616, 0.017068913206458092, 0.004556640982627869, 0.000889943796209991, -0.01640004850924015, 0.012103878892958164, -0.026806039735674858, 0.043964993208646774, 0.02073480747640133, 0.04211275279521942, 0.0015274555189535022, 0.019114095717668533, -0.0011311209527775645, 0.030973581597208977, -0.010682541877031326, -0.031127935275435448, -0.008155004121363163, 0.048106808215379715, 0.056030284613370895, 0.010090853087604046, 0.0066050393506884575, -0.01398184522986412, -0.01087548304349184, -0.012682704254984856, 0.032928723841905594, 0.011499328538775444, -0.058962997049093246, 0.007029511034488678, 0.005530996713787317, 0.015525379218161106, 0.002148084808140993, -0.004164326004683971, -0.03336605802178383, -0.0010507286060601473, 0.03485814109444618, -0.0098464610055089, 0.022136850282549858, -0.020619042217731476, -0.0077048069797456264, -0.008167867548763752, 0.003259107703343034, 0.007035942282527685, -0.003296088194474578, -0.005678918678313494, -0.015666870400309563, -0.0226256363093853, 0.017068913206458092, -0.0011817682534456253, 0.007846297696232796, 0.0036562462337315083, -0.020117392763495445, 0.002706008031964302, -0.02004021592438221, -0.009171164594590664, -0.04702633619308472, -0.0456114299595356, 0.015139495953917503, -0.014496357180178165, 0.008180730044841766, -0.003127264091745019, -0.0021818496752530336, 0.008013513870537281, -0.015846949070692062, 0.0005928939208388329, 0.002950400812551379, 0.002148084808140993, 0.014149061404168606, 0.06709227710962296, -0.001629553851671517, -0.008907477371394634, -0.03367476537823677, 0.006733667105436325, 0.006322057917714119, 0.00582362525165081, -0.02226547710597515, 0.02069621905684471, -0.025455448776483536, -0.05994056910276413, 0.0033925590105354786, 0.01778922975063324, 0.008315789513289928, -0.018187975510954857, 0.0038491878658533096, 0.005997272673994303, -0.004881426226347685, -0.03367476537823677, 0.01555110514163971, 0.02383473701775074, -0.0003115205327048898, 0.008045670576393604, -0.01948711648583412, -0.005514918360859156, -0.020824845880270004, 0.0012677881168201566, -0.036324501037597656, 0.025121016427874565, -0.016978874802589417, -0.006219155620783567, -0.01832946576178074, 0.032054055482149124, 0.006158057600259781, -0.023075833916664124, -0.02434924803674221, 0.02227834053337574, -0.029815930873155594, -0.02901843935251236, 0.027191923931241035, -0.008682378567755222, -0.005212642718106508, 0.005383074749261141, 0.013454471714794636, 0.023526029661297798, -0.0553099662065506, 0.012637684121727943, 0.040672119706869125, 0.02780933678150177, 0.02055472694337368, 0.0016319656278938055, -0.00600048853084445, -0.013878943398594856, -0.02778361178934574, -0.00940912589430809, -0.011923800222575665, 0.011164896190166473, 0.026368705555796623, -0.026394430547952652, -0.014110472984611988, 0.025622664019465446, -0.03761077672243118, 0.0018490251386538148, -0.009312654845416546, -0.01948711648583412, -0.02123645506799221, -0.03557845950126648, -0.033211708068847656, 0.05163121223449707, -0.025133877992630005, 0.012875646352767944, -0.037224896252155304, 0.01468929834663868, 0.013917531818151474, 0.03166817128658295, -0.0068815890699625015, 0.006087312009185553, -0.011087719351053238, -0.006553587969392538, 0.0044376603327691555, 0.0001316425477853045, -0.043090324848890305, -0.03848544880747795, -0.03954019397497177, 0.019988765940070152, -0.008302927017211914, -0.04486538842320442, 0.015769772231578827, 0.007537590805441141, 0.012116741389036179, -0.01302356831729412, -0.020297471433877945, -0.016695892438292503, -0.05230007693171501, -0.05289176478981972, -0.0302275400608778, -0.011499328538775444, -0.013505922630429268, -0.0031417347490787506, -0.047566574066877365, -0.027860788628458977, -0.06127829849720001, 0.01167297549545765, 0.025262506678700447, 0.008598770946264267, 0.0016705539310351014, 0.003752717049792409, -0.020078804343938828, -0.01233540941029787, -0.05263450741767883, -0.015834085643291473, 0.009505596943199635, -0.034626614302396774, 0.015100907534360886, 0.0006712764734402299, 0.009994382970035076, 0.02468368038535118, 0.024747995659708977, -0.008000651374459267, 0.020078804343938828, -0.049161557108163834, -0.010020107962191105, 0.026021409779787064, -0.02207253687083721, -0.03303162753582001, -0.0300474613904953, -0.017827818170189857, -0.012528350576758385, 0.011878780089318752, -0.00155318109318614, 0.015666870400309563, 0.03331460803747177, 0.010123010724782944, -0.005412016063928604, -0.031179387122392654, 0.011853055097162724, -0.018702486529946327, -0.007318923715502024, -0.015268123708665371, -0.006971628405153751, 0.041160907596349716, 0.002535576233640313, -0.011325680650770664, 0.0015314751071855426, -0.011685838922858238, 0.025815606117248535, -0.06657776236534119, -0.023950502276420593, 0.04352765902876854, -0.04306459799408913, 0.010090853087604046, 0.0135573735460639, 0.030844954773783684, 0.01164725050330162, -0.02816949598491192, 0.032414212822914124, 0.022239752113819122, -0.03354613855481148, 0.008856026455760002, -0.0034054219722747803, 0.0077048069797456264, -0.013776040636003017, 0.004807465244084597, 0.020143117755651474, -0.021017787978053093, -0.015152358449995518, 0.03141091763973236, -0.006540725473314524, 0.059837669134140015, -0.025146741420030594, -0.013698863796889782, 0.0003233784227631986, 0.027526356279850006, -0.02714047208428383, 0.005064720753580332, -0.0021094963885843754, -0.02486376091837883, 0.0472835898399353, 0.03210550546646118, -0.007286766543984413, 0.01966719515621662, -0.017390482127666473, -0.021841006353497505, -0.005270525347441435, 0.0044119348749518394, -0.0033925590105354786, 0.028015142306685448, 0.011724427342414856, -0.006720804143697023, 0.009222615510225296, -0.04849269241094589, 0.051219601184129715, 0.026214351877570152, 0.0171203650534153, -0.032877273857593536, 0.012110310606658459, 0.04831261560320854, 0.02248414419591427, 0.022689949721097946, -0.02488948591053486, 0.02055472694337368, 0.025121016427874565, 0.02506956458091736, -0.010991248302161694, -0.008624495938420296, 0.04574005678296089, 0.011750152334570885, 0.024040542542934418, 0.01053461991250515, -0.011158464476466179, -0.005222289822995663, -0.032722920179367065, -0.009557047858834267, 0.012419017031788826, -0.006068017799407244, 0.03002173639833927, 0.005244799889624119, 0.014483493752777576, 0.017699189484119415, 0.004817112348973751, 0.01466357335448265, -0.004794602282345295, -0.012084584683179855, -0.011634387075901031, -0.04664045199751854, -0.015075181610882282, 0.009621362201869488, 0.04383636638522148, 0.03143664076924324, -0.012303251773118973, -0.011171326972544193, -0.012123173102736473, 0.02419489435851574, 0.028246672824025154, -0.016966011375188828, 0.04399072006344795, -0.04592013731598854, -0.006289901211857796, 0.007113119121640921, -0.03712199255824089, -0.02002735435962677, 0.005016485694795847, 0.0019374567782506347, 0.014573533087968826, 0.029275694862008095, -0.015666870400309563, -0.04298742115497589, -0.020811982452869415, 1.303236103922245e-06, 0.012052427977323532, -0.012772743590176105, -0.025095289573073387, 0.0151137700304389, 0.011158464476466179, 0.015190946869552135, 0.013364431448280811, -0.0018876134417951107, -0.011769446544349194, -0.012065290473401546, 0.016811657696962357, 0.04748939722776413, -0.015821224078536034, -0.03107648342847824, -0.02834957465529442, 0.019770096987485886, 0.026034273207187653, -0.02451646514236927, 0.004797818139195442, 0.025648389011621475, 0.023255912587046623, -0.0030163226183503866, -0.0007625218713656068, -0.020297471433877945, 0.02488948591053486, -0.001302356831729412, 0.0214293971657753, -0.03159099444746971, -0.003575853770598769, -0.008611633442342281, -0.013210078701376915, -0.030973581597208977, -0.008405828848481178, 0.04617739096283913, 0.010946228168904781, -0.005109740421175957, -0.00958277378231287, -0.0030404403805732727, 0.026291528716683388, 0.02105637639760971, 0.019101232290267944, -0.03192542865872383, -0.03107648342847824, 0.008463711477816105, -0.0014551023487001657, -0.014573533087968826, -0.021455122157931328, 0.0032462449744343758, -0.0022670654579997063, -0.038768429309129715, -0.0200530793517828, -0.016284283250570297, -0.0010169638553634286, 0.03449798375368118, 0.0027960475999861956, -0.00992363691329956, 0.04005470871925354, 0.0217895545065403, -0.01251548808068037, 0.015615418553352356, 0.016798794269561768, -0.016695892438292503, 0.05037065967917442, -0.02608572505414486, 0.002561301691457629, 0.02919851802289486, -0.008669516071677208, -0.029584402218461037, -0.011087719351053238, 0.042575813829898834, -0.0059908414259552956, 0.024040542542934418, -0.009351243264973164, 0.0008690417744219303, -0.011158464476466179, 0.006508568301796913, -0.012656978331506252, -0.018869703635573387, 0.021635200828313828, 0.004109659232199192, 0.0015684555983170867, -0.012747018598020077, -0.005196564365178347, -0.03372621908783913, 0.028761183843016624, 0.026703137904405594, -0.005170838907361031, 0.038948506116867065, 0.0018779663369059563, -0.002305653877556324, -0.006084096617996693, -0.003913501743227243, -0.016695892438292503, -0.0029584402218461037, -0.015821224078536034, 0.030973581597208977, -0.028375299647450447, -0.008862457238137722, -0.012592664919793606, 0.010618227533996105, 0.040492042899131775, -0.00931908655911684, -0.032877273857593536, -0.05204281955957413, 0.010168029926717281, 0.0036787560675293207, 0.05685350298881531, 0.0228057149797678, 0.010335246101021767, -0.020503276959061623, 0.021699516102671623, -0.010110147297382355, -0.014792201109230518, 0.041726868599653244, 0.003514755517244339, 0.02437497489154339, 0.026471607387065887, 0.019307037815451622, -0.009563479572534561, -0.04252436012029648, -0.0012943175388500094, 0.0074668456800282, 0.03364904224872589, -0.0338805727660656, -0.03727634623646736, -0.003685187315568328, -0.013686001300811768, 0.019281312823295593, -0.0048975045792758465, 0.03933439031243324, 0.023011518642306328, 0.011389994993805885, -0.012991410680115223, 0.011505759321153164, -0.022574184462428093, -0.0029664793983101845, -0.013010704889893532, 0.017030324786901474, -0.047746650874614716, 0.03629877418279648, -0.010759717784821987, 0.02432352304458618, -0.03156527131795883, 0.02002735435962677, 0.03611869364976883, 0.005183701869100332, -0.017043188214302063, -0.02726910077035427, -0.011068425141274929, 0.05371498316526413, -0.019551429897546768, 0.007640493102371693, -0.013711727224290371, -0.01131281815469265, -0.02760353311896324, 0.0342407301068306, -0.0001266180188395083, -0.010933365672826767, -0.0183166041970253, -0.006759392563253641, 0.019409939646720886, -0.025841331109404564, 0.022008221596479416, 0.008444417268037796, -0.008013513870537281, -0.0224455576390028, 0.005900801625102758, -0.01762201264500618, 0.010984816588461399, 0.015178084373474121, 0.0029487931169569492, 0.01937135122716427, 0.011525053530931473, -0.007093824911862612, 0.0054216631688177586, 0.004328326787799597, -0.018406642600893974, -0.01053461991250515, 0.019628606736660004, 0.02829812280833721, -0.026188626885414124, 0.009904342703521252, -0.003001851961016655, 0.03537265211343765, 0.005029348190873861, 0.02593137137591839, -0.04090365022420883, 0.02760353311896324, -0.022921480238437653, 0.022008221596479416, -0.011396425776183605, 0.010264500975608826, -0.014882240444421768, 0.00448268000036478, -1.6518124539288692e-05, 0.0017654170515015721, -0.013673138804733753, -0.042241379618644714, 0.0253782719373703, 0.006305979564785957, -0.004977897275239229, -0.017030324786901474, 0.04077502340078354, -0.008907477371394634, -0.03174534812569618, 0.014573533087968826, -0.001993731362745166, -0.01811079867184162, 0.0061066062189638615, 0.027706434950232506, 0.006206293124705553, 0.012129604816436768, -0.004649896174669266, 0.04265299066901207, -0.014380591921508312, -0.06024927645921707, -0.003688403172418475, 0.02177669294178486, -0.026986118406057358, 0.030304716899991035, 0.04458240792155266, -0.008939634077250957, -0.018445231020450592, 0.009859323501586914, 0.000711070722900331, -0.017544835805892944, 0.027423454448580742, 0.010727561078965664, 0.017660601064562798, 0.02778361178934574, -0.0010547481942921877, -0.0022220457904040813, 0.038948506116867065, -0.02644588239490986, 0.012219644151628017, 0.022046810016036034, 0.002783184638246894, 0.008200024254620075, -0.03277437016367912, -0.0300474613904953, 0.004424797371029854, -0.01709463819861412, 0.005688565783202648, -0.023873325437307358, 0.00159739691298455, -0.005884723272174597, -0.009659950621426105, -0.022008221596479416, -0.00949916522949934, -0.0045084054581820965, -0.021172141656279564, -0.030253266915678978, 0.01209101639688015, 0.015049456618726254, -0.03611869364976883, -0.023011518642306328, -0.02488948591053486, 0.042550086975097656, -0.0375850535929203, -0.007736964151263237, 0.007293198257684708, 0.027886513620615005, -0.02311442233622074, -0.03130801394581795, -0.005659624468535185, 0.018895428627729416, 0.007074530702084303, 0.02092774771153927, 0.014277689158916473, 0.026497334241867065, -0.00985289178788662, 0.050190579146146774, 0.027732159942388535, -0.006363862194120884, 0.023757560178637505, -0.031873978674411774, -0.007241746876388788, -0.014406316913664341, -0.008380102925002575, 0.03959164768457413, -0.033057354390621185, -0.024091992527246475, 0.01061179582029581, 0.030947856605052948, -0.016361460089683533, 0.028220945969223976, 0.03058769926428795, 0.0011319249169901013, 0.023050107061862946, -0.022394105792045593, 0.03470378741621971, -0.0025227132719010115, -0.014470631256699562, 0.01745479740202427, -0.012496193870902061, -0.016155656427145004, -0.034137826412916183, -0.004543778020888567, -0.022754263132810593, 0.013776040636003017, -0.027423454448580742, 0.018342329189181328, 0.003466519992798567, -0.021339356899261475, 0.017403345555067062, 0.0021963203325867653, -0.020683355629444122, -0.008566613309085369, -0.029095616191625595, -0.0005217466386966407, 0.014277689158916473, -0.003620873438194394, -0.02212398685514927, 0.014998005703091621, 0.017673464491963387, -0.005543859675526619, -0.0034922456834465265, 0.039488743990659714, 0.03223413601517677, -0.007698375731706619, -0.014895102940499783, 0.0042350715957582, -0.019551429897546768, -0.005026132334023714, -0.004720641300082207, 0.01677306927740574, 0.03562990948557854, -0.020979199558496475, 0.0249023474752903, -0.027191923931241035, -0.008219318464398384, -0.0033314607571810484, 0.004691699985414743, 0.017866406589746475, 0.001948711695149541, -0.01724899187684059, 0.00010883120557991788, -0.011602230370044708, 0.0070616682060062885, -0.024426424875855446, -0.010251638479530811, 0.05284031480550766, 0.001190611394122243, 0.030664876103401184, -0.020837709307670593, 0.009769284166395664, -0.014033296145498753, -0.015563967637717724, 0.01311360765248537, -0.014534944668412209, 0.0001869123225333169, -0.02329450100660324, 0.0010812777327373624, -0.014239100739359856, 0.017171815037727356, -0.0020821630023419857, -0.029224243015050888, -0.031488094478845596, -0.002154516289010644, 0.013338706456124783, -0.0004073884629178792, 0.03835681825876236, -0.0149336913600564, 0.017686326056718826, 0.013126470148563385, 0.01466357335448265, -0.03748214989900589, -0.023873325437307358, 0.004829975310713053, -0.014251964166760445, 0.01949997991323471, -0.015988439321517944, 0.0012420625425875187, -0.03534692898392677, -0.018560996279120445, 0.008425123058259487, -0.02243269421160221, 0.006077664904296398, -0.026394430547952652, -0.001992123667150736, 0.003312166780233383, 0.010142304934561253, -0.01832946576178074, 0.010637521743774414, 0.007415394764393568, 0.0043701305985450745, 0.026471607387065887, 0.037044815719127655, 0.01398184522986412, -0.019409939646720886, 0.001440631691366434, -0.033571865409612656, 0.01811079867184162, -0.02276712656021118, 0.0055342125706374645, -0.008778849616646767, 0.0435791090130806, -0.000902002677321434, 0.046048764139413834, -0.02778361178934574, -0.011872349306941032, 0.0025725567247718573, 0.00034146668622270226, -0.014329140074551105, -0.012637684121727943, -0.014432042837142944, -0.012328977696597576, 0.03920576348900795, -0.01919127255678177, -0.013711727224290371, 0.0226256363093853, 0.03730207309126854, 0.02642015740275383, 0.016335735097527504, 0.016104204580187798, 0.022136850282549858, -0.048955753445625305, -0.019911589100956917, -0.024233482778072357, 0.017158953472971916, -0.040003255009651184, 0.0075890421867370605, -0.003997109830379486, 0.008682378567755222, 0.02829812280833721, 0.028915537521243095, 0.005112956278026104, -0.04144388809800148, 0.016541538760066032, 0.028555378317832947, 0.010933365672826767, 0.010547482408583164, 0.03159099444746971, 0.0020082020200788975, -0.005386290606111288, -0.010367403738200665, 0.005749664269387722, 0.021853867918252945, 0.011589367873966694, -0.0338805727660656, 0.01018089335411787, -0.014715024270117283, -0.007923474535346031, 0.001466357265599072, 0.023796148598194122, -0.029584402218461037, 0.006534293759614229, -0.0018216916359961033, -0.012476899661123753, 0.010553913190960884, 0.0022188301663845778, -0.007608336396515369, 0.012123173102736473, -0.03493531793355942, -0.0073382179252803326, -0.012894940562546253, 0.014805063605308533, 0.030664876103401184, 0.008360808715224266, -0.010322383604943752, -0.022419830784201622, -0.006129116285592318, 0.014007571153342724, -0.017068913206458092, 0.023886188864707947, 0.027217648923397064, 0.02553262561559677, -0.020246021449565887, 0.029224243015050888, 0.009093987755477428, 0.0015708673745393753, 0.007936337031424046, 0.027423454448580742, 0.02108210138976574, 0.0004968250286765397, 0.007949200458824635, -0.010457443073391914, -0.04455668106675148, 0.005849350709468126, -0.0466919019818306, 0.015666870400309563, -0.004772092681378126, 0.010386697016656399, 0.012856352142989635, -0.013763178139925003, -0.004881426226347685, 0.00017455198394600302, 0.023397402837872505, 0.002225261414423585, 0.004209345672279596, 0.011454308405518532, -0.02536540850996971, -0.010650384239852428, 0.0276549831032753, -0.0233459509909153, 0.03961737081408501, -0.01535816304385662, 0.012843488715589046, -0.002693145303055644, 0.01760915108025074, 0.013904668390750885, 0.011537916958332062, -0.0006909726653248072, -0.01606561616063118, 0.03056197240948677, 0.0033796962816268206, -0.02312728390097618, -0.011274229735136032, -0.024645091965794563, 0.007936337031424046, -0.04144388809800148, -0.036195870488882065, -0.017519110813736916, 0.013390157371759415, -0.020310334861278534, -0.016798794269561768, -0.017133226618170738, 0.0271147470921278, 0.004434444475919008, -0.006727235857397318, 0.005678918678313494, -0.04018333554267883, 0.012560508213937283, 0.01380176655948162, 0.01638718508183956, 0.021673789247870445, -0.00474958261474967, 0.010058696381747723, -0.012882077135145664, 0.02708902209997177, 0.0008127671317197382, 0.02572556585073471, -0.0298673827201128, -0.030613424256443977, 0.022857164964079857, 0.007035942282527685, -0.022561321035027504, -0.017210403457283974, -0.01138356328010559, -0.015409613959491253, 0.00820645596832037, -0.012650547549128532, -0.020310334861278534, 0.016322871670126915, 0.019963039085268974, 0.005231936927884817, -0.022715674713253975, 0.0077048069797456264, -0.013505922630429268, -0.003627304919064045, -0.034112099558115005, 0.022406969219446182, -0.03871697932481766, 0.0035533439368009567, -0.021133553236722946, -0.0010828855447471142, 0.015139495953917503, -0.027217648923397064, 0.0005868644802831113, -0.004501974210143089, -0.004167541861534119, -0.008534456603229046, -0.010367403738200665, -0.0342407301068306, 0.009659950621426105, 0.007055236492305994, 0.010933365672826767, -0.006029429845511913, -0.005675703287124634, 0.02248414419591427, -0.013338706456124783, -0.005653193220496178, -0.024992387741804123, -0.02626580372452736, 0.028401024639606476, -0.012586233206093311, 0.019641470164060593, 0.04854414239525795, 0.0009622969664633274, -0.00448268000036478, -0.029610127210617065, 0.0053123296238482, 0.017313307151198387, 0.01313290186226368, -0.017519110813736916, -6.557004962814972e-05, 0.025519762188196182, -0.019782960414886475, -0.0005088838515803218, -0.004022835288196802, 0.01728758029639721, 0.0030549110379070044, -0.008502299897372723, 0.005309113766998053, -0.023255912587046623, -0.012367566116154194, 0.015975575894117355, -0.010065128095448017, -0.01063109003007412, -0.001935848849825561, 0.023718971759080887, 0.01741620898246765, 0.025275368243455887, -0.016129929572343826, 0.01814938709139824, -0.01934562623500824, -0.013184352777898312, -0.004608091898262501, 0.00916473288089037, -0.023423127830028534, -0.013010704889893532, -0.02644588239490986, 0.028941262513399124, 0.018895428627729416, 0.01827801577746868, 0.01570545881986618, 0.01398184522986412, -0.004733504261821508, -0.007138844579458237, 0.02281857840716839, 0.02726910077035427, 0.01096552237868309, 0.002236516447737813, 0.01728758029639721, 0.007479708641767502, 0.00600048853084445, 0.009434851817786694, -0.003162636887282133, 0.009261203929781914, -0.0068815890699625015, 0.005302682518959045, -0.003119224915280938, -0.019384214654564857, -0.0001019476039800793, -0.012618389911949635, -0.00578825268894434, 0.006875157821923494, -0.006772255524992943, -0.0005772173753939569, 0.011152032762765884, -0.004016404040157795, -0.0019245939329266548, -0.00543774152174592, -0.0022670654579997063, 0.015846949070692062, -0.00037101091584190726, -0.018741074949502945, 0.022021085023880005, -0.012856352142989635, 0.0037687954027205706, 0.0058107622899115086, -0.01061179582029581, -0.0045759351924061775, -0.02540399692952633, 0.030124638229608536, -0.023191597312688828, 0.0007006197120063007, -4.710492066806182e-05, -0.0017027109861373901, 0.02276712656021118, -0.011248503811657429, -0.01113917026668787, -0.04278161749243736, -0.005325192119926214, -0.0001677186373854056, 0.0041868360713124275, -0.017184678465127945, 0.009428420104086399, 0.011094150133430958, 0.0057914680801332, -0.01637432351708412, -0.024040542542934418, 0.012168193235993385, 0.006347783375531435, -0.007486139889806509, -0.013673138804733753, -0.006482842843979597, -0.012226075865328312, 0.013145764358341694, -0.0043958560563623905, 7.988994184415787e-05, 0.021532298997044563, 0.021107826381921768, 0.021326495334506035, 0.0035436968319118023, 0.012875646352767944, -0.0015604164218530059, -0.007293198257684708, 0.02678031474351883, -0.007891317829489708, 0.02330736257135868, -0.020644767209887505, -0.007698375731706619, 0.01589840091764927, -0.012232506647706032, 0.00457271933555603, 0.017840679734945297, -0.010508893989026546, 0.007949200458824635, -0.014290552586317062, -0.0253782719373703, -0.02105637639760971, 0.0021705946419388056, -0.020837709307670593, 0.02690894342958927, 0.014187649823725224, 0.024284934625029564, -0.00047833475400693715, -0.0015137888258323073, 0.020078804343938828, 0.023281637579202652, 0.011158464476466179, -0.037559326738119125, -0.009216183796525002, 0.01398184522986412, -0.00388456042855978, -0.013068587519228458, -0.012464037165045738, -0.02989310771226883, -0.01727471873164177, -0.00907469354569912, -0.021197866648435593, -0.02953295037150383, 0.007190295960754156, -0.010155167430639267, 0.010013677179813385, 0.011955956928431988, -0.00522550567984581, 0.012573370710015297, -0.018560996279120445, 0.0037334228400141, -0.02814376913011074, -0.03164244815707207, -0.005209427326917648, -0.00561460480093956, 0.015641143545508385, -0.0017187894554808736, -0.017673464491963387, -0.019641470164060593, -0.00863092765212059, -0.008155004121363163, -0.01477933768182993, 0.012528350576758385, -0.0010370619129389524, -0.01625855825841427, 0.027372002601623535, -0.010881914757192135, 0.029069889336824417, 0.01638718508183956, 0.0022381243761628866, -0.014882240444421768, -0.010579639114439487, -0.036530304700136185, -0.014213375747203827, 0.014444905333220959, -0.029069889336824417, -0.005440957378596067, 0.04702633619308472, 0.022226888686418533, 0.005463466979563236, 0.01988586224615574, -0.019628606736660004, -0.009730695746839046, -0.009782146662473679, 0.02104351297020912, 0.018728211522102356, -0.007010216824710369, -0.015769772231578827, -0.003858834970742464, 0.003275186289101839, -0.034652337431907654, -0.002730125794187188, 0.020155981183052063, 0.022702813148498535, -0.021673789247870445, -0.026201490312814713, 0.007023079786449671, 0.00462417071685195, 0.0018811820773407817, 0.025944232940673828, -0.016888834536075592, -0.006399234756827354, 0.0033378922380506992, 0.011943094432353973, 0.006650059018284082, -0.01156364195048809, -0.0068108439445495605, -0.01606561616063118, 0.02449074015021324, -0.009730695746839046, 0.00958277378231287, 0.01224537007510662, -0.0245421901345253, -0.0369933657348156, -0.007138844579458237, 0.009807872585952282, 0.026806039735674858, -0.008508730679750443, -0.008245044387876987, 0.001221964368596673, 0.021622339263558388, -0.012502625584602356, 0.005595310591161251, -0.008508730679750443, -0.01060536503791809, 0.0017123579746112227, -0.008701672777533531, -0.008309357799589634, 0.01251548808068037, -0.010939797386527061, -0.0037334228400141, -0.03655603155493736, -0.00162874988745898, 0.03076777793467045, 0.047052059322595596, -0.023448854684829712, 0.032568566501140594, -0.018908292055130005, -0.010315951891243458, 0.008238612674176693, -0.034086376428604126, 0.0013956120237708092, -0.011846623383462429, -0.0073124924674630165, -0.012232506647706032, -0.007698375731706619, -0.019782960414886475, 0.019641470164060593, 0.011197052896022797, 0.011512191034853458, 0.020065942779183388, -0.01484365202486515, -0.029224243015050888, -0.0012774351052939892, -0.01710750162601471, 0.001402847352437675, 0.012058859691023827, 0.0125990966334939, -0.005842919461429119, 0.011904506012797356, 0.02571270428597927, 0.01322294119745493, 0.028040867298841476, 0.017043188214302063, 0.014483493752777576, 0.035809990018606186, 0.012708430178463459, -0.011602230370044708, 0.0013353177346289158, 0.0034633043687790632, 0.020940611138939857, -0.0027590671088546515, -0.013505922630429268, -0.008103553205728531, -0.0198730006814003, -0.017133226618170738, -0.019963039085268974, -0.00023092715127859265, 0.0023892619647085667, -0.018432367593050003, 0.012033133767545223, 0.008920339867472649, 0.005778605584055185, 0.03228558599948883, -0.02248414419591427, -0.01468929834663868, 0.00552456546574831, -0.0004260796995367855, -0.011344974860548973, 0.00958920456469059, 0.0042833066545426846, -0.013853217475116253, 0.03442080691456795, 0.010258069261908531, 0.026137175038456917, -0.028092319145798683, -0.02467081882059574, -0.04139243811368942, 0.003296088194474578, 0.036041516810655594, 0.04988187178969383, -0.006617901846766472, -0.0125990966334939, 0.019126959145069122, 0.020336059853434563, 0.01813652366399765, -0.006016566883772612, 0.009454146027565002, 0.02557121217250824, 0.01793072000145912, 0.01302999909967184, 0.007023079786449671, -0.015975575894117355, 0.0030790288001298904, -0.002017849124968052, -0.010586070828139782, 0.0007733748643659055, -0.01131281815469265, 0.0015588084934279323, -0.01724899187684059, 0.014727886766195297, -0.007601904682815075, 0.007010216824710369, 0.01780209131538868, 0.003559775184839964, -0.024104855954647064, -0.018766799941658974, 0.02901843935251236, 0.003138519125059247, -0.016785932704806328, -0.014946553856134415, -0.015666870400309563, 0.0006117861485108733, -0.006830137688666582, 0.015936989337205887, -0.003186754649505019, -0.040646396577358246, 0.010013677179813385, 0.017544835805892944, -0.014380591921508312, -0.012888508848845959, -0.021197866648435593, -0.015486790798604488, -0.013300118036568165, -0.022162575274705887, -0.01555110514163971, -0.003056518966332078, 0.015602556057274342, -0.02386046200990677, -0.00922904722392559, -0.0031240484677255154, -0.02225261554121971, 0.0038202465511858463, 0.007306060753762722, -0.04694915935397148, -0.01897260546684265, -0.0048010339960455894, -0.0034311474300920963, 0.019731508567929268, -0.016785932704806328, 0.00474958261474967, -0.016322871670126915, 0.013904668390750885, -0.0008593947277404368, 0.011711563915014267, 0.010399560444056988, 0.0006367077585309744, 0.0006543940980918705, -0.030664876103401184, -0.030536247417330742, -0.04625456780195236, -0.0026658119168132544, -0.011055562645196915, 0.0137374522164464, 0.0015081613091751933, 0.012644115835428238, 0.025789881125092506, 0.022226888686418533, 0.0023763992357999086, -0.014123336412012577, -0.0320797823369503, -0.030973581597208977, -0.007724101189523935, -0.01850954443216324, 0.02022029459476471, -0.007614767644554377, -0.027577808126807213, 0.004707778804004192, 0.004910367541015148, -9.189855336444452e-05, 0.004981112666428089, -0.01416192390024662, -0.03210550546646118, -0.008528024889528751, 0.011036268435418606, 0.007318923715502024, -0.022329792380332947, -5.5269771110033616e-05, -0.012393292039632797, -0.007749827113002539, 0.01898546889424324, 0.0007034334703348577, -0.016001302748918533, 0.009872185997664928, -0.0010740424040704966, 0.0014165140455588698, 0.019435664638876915, 0.013325843028724194, 0.019564293324947357, -0.019911589100956917, 0.024117719382047653, -0.03164244815707207, -0.02760353311896324, -0.022381242364645004, 0.018355192616581917, -0.006084096617996693, -0.023950502276420593, -0.006254528183490038, 0.0058107622899115086, -0.0304076187312603, 0.029455773532390594, 0.011685838922858238, 0.013608824461698532, -0.00013455677253659815, 0.012920665554702282, -0.0011898074299097061, -0.0007162962574511766, 0.03717344254255295, 0.016142792999744415, -0.01087548304349184, -0.007164570037275553, 0.02109496481716633, 0.02227834053337574, -0.016670167446136475, 0.01209101639688015, 0.01149289682507515, -0.00931908655911684, 0.010071558877825737, 0.025249643251299858, -0.03223413601517677, -0.015576830133795738, -0.008534456603229046, 0.01793072000145912, -0.00922904722392559, -0.008849594742059708, -0.012663410045206547, 0.007640493102371693, -0.02312728390097618, -0.0045502097345888615, 0.00250663491897285, 0.020619042217731476, -0.02989310771226883, -0.0214293971657753, 0.0008344730595126748, 0.004009972792118788, -0.006135547533631325, 0.02505670115351677, -0.028632555156946182, 0.021442260593175888, -0.017377620562911034, 0.018753938376903534, 0.037404973059892654, -0.024812309071421623, 0.004013188183307648, -0.01417478732764721, 0.01625855825841427, 0.0262786652892828, -0.019448528066277504, -0.008090690709650517, -0.011055562645196915, 0.024735132232308388, 0.016014164313673973, -0.005170838907361031, -0.033057354390621185, -0.017171815037727356, 0.00043612875742837787, -0.004402287770062685, 0.013660275377333164, -0.006624333560466766, 0.009505596943199635, 0.006579313427209854, -0.005971547216176987, 0.0035983636043965816, 0.005186917260289192, 0.0010788659565150738, 0.00019756430992856622, 0.004862132016569376, -0.010129441507160664, 0.018355192616581917, -0.03076777793467045, -0.0028233809862285852, 0.007209590170532465, 0.017043188214302063, -0.011846623383462429, 0.012946391478180885, 0.0074539827182888985, -0.004013188183307648, 0.011261366307735443, -0.014483493752777576, 0.005376643501222134, -0.025622664019465446, -0.006849431898444891, 0.008952497504651546, -0.0073382179252803326, 0.011904506012797356, 0.008946065790951252, 0.00699092261493206, 0.013763178139925003, -0.0068815890699625015, 0.004563072230666876, -0.018380917608737946, -0.004916798789054155, -0.005209427326917648, 0.013673138804733753, 0.002033927710726857, 0.003952090162783861, -0.007820571772754192, 0.032362762838602066, 0.002694752998650074, -0.006598607636988163, -0.0071581387892365456, 0.009975088760256767, -0.012052427977323532, 0.020091667771339417, 0.015962714329361916, 0.010740423575043678, -0.015512516722083092, -0.018187975510954857, -0.010373834520578384, 0.015139495953917503, -0.0017284364439547062, 0.008097122423350811, -0.011389994993805885, 0.016670167446136475, 0.00209181010723114, -0.013943256810307503, 0.022677086293697357, 0.025095289573073387, 0.015975575894117355, -0.031025033444166183, -0.008907477371394634, 0.01416192390024662, -0.01468929834663868, -0.004045345354825258, 0.016104204580187798, 0.009904342703521252, 0.03395774960517883, -0.005955468863248825, 0.008489437401294708, 0.0108047379180789, -0.010380266234278679, -0.025301095098257065, 0.020117392763495445, -0.008380102925002575, 0.005199780222028494, -0.01623283326625824, -0.010418854653835297, -0.002908596768975258, -0.0005707860109396279, 0.026008548215031624, 0.022548459470272064, -0.0004936092882417142, 0.017313307151198387, -0.0021127122454345226, -0.00665649026632309, 0.020143117755651474, -0.004180404357612133, 0.003919932991266251, -0.0025580860674381256, 0.006958765909075737, 0.029918834567070007, -0.0016657303785905242, -0.01793072000145912, -0.0055084871128201485, 0.0063574304804205894, -0.0007118746871128678, -0.006248096935451031, -0.003296088194474578, -0.024040542542934418, -0.025957096368074417, -0.025416860356926918, -0.012747018598020077, -0.027423454448580742, 0.001654475461691618, -0.011248503811657429, 0.006598607636988163, -0.015293849632143974, -0.0021255749743431807, 0.0024776936043053865, 0.01155721116811037, -0.008714535273611546, -0.014830789528787136, 0.007762689609080553, -0.008232180960476398, 0.01209101639688015, 0.02487662248313427, 0.00025283408467657864, 0.0005530996713787317, 0.012316115200519562, -0.009955794550478458, -0.004543778020888567, 0.0018281231168657541, 0.001860280055552721, 0.00767908152192831, -0.008219318464398384, 0.019795823842287064, -0.010476737283170223, -0.0071581387892365456, 0.0031417347490787506, -0.002299222396686673, 0.003916717600077391, -0.0073124924674630165, 0.0018843977013602853, 0.00612268503755331, -0.03218268230557442, 0.004100012127310038, -0.018020758405327797, -0.008315789513289928, 0.0023458499927073717, -0.001615887158550322, 0.0006744922138750553, -0.0029777344316244125, 0.01760915108025074, 0.007814140990376472, -0.005865429062396288, 0.014985142275691032, 0.02886408567428589, 0.004344405140727758, -0.009454146027565002, -0.014534944668412209, -0.014200512319803238, -0.04643464833498001, 0.011975251138210297, 0.004254365339875221, 0.00495860306546092, -0.019911589100956917, -0.012155329808592796, -0.010592501610517502, 0.009788578376173973, -0.01468929834663868, 0.014895102940499783, -0.018908292055130005, 0.0007777964347042143, -0.027912240475416183, -0.0045084054581820965, 0.013480196706950665, -0.0017236130079254508, 0.0022767125628888607, 0.025648389011621475, -0.022136850282549858, -0.002431066008284688, 0.012798469513654709, 0.019731508567929268, 0.016875971108675003, -0.02176382951438427, 0.015306712128221989, -0.022406969219446182, 0.023050107061862946, 0.013480196706950665, 0.013403019867837429, -0.00699092261493206, -0.018869703635573387, -0.010077990591526031, -0.0008786888793110847, -0.008200024254620075, 0.009370537474751472, 0.01086905226111412, 0.045482803136110306, -0.021648064255714417, -0.01811079867184162, 0.03925721347332001, -0.0010081205982714891, -0.010637521743774414, -0.01966719515621662, -0.01450921967625618, 0.0029182438738644123, 0.014136198908090591, 0.0051451134495437145, 0.018702486529946327, -0.0302275400608778, -0.01621996983885765, -0.005949037149548531, -0.0013932002475485206, 0.0012099056039005518, -0.0044408757239580154, 0.012965685687959194, -0.015255261212587357, 0.009962225332856178, 0.0054216631688177586, -0.009312654845416546, -0.01623283326625824, -0.015949850901961327, 0.015319574624300003, -0.005936174653470516, 0.01260552741587162, -0.01086905226111412, 0.011660112999379635, 0.028786908835172653, -0.0051451134495437145, 0.03624732419848442, 0.010206618346273899, -0.020516138523817062, -0.0183166041970253, 0.023268774151802063, -0.022046810016036034, -0.0069523341953754425, 0.03138519078493118, 0.004009972792118788, 0.015190946869552135, -0.0004393444396555424, -0.0033057352993637323, -0.01863817311823368, -0.012798469513654709, 0.015152358449995518, -0.013840354979038239, 0.0069523341953754425, -0.008675946854054928, -0.003833109512925148, 0.000554305559489876, 0.0003125254297628999, -0.010380266234278679, 0.00016580930969212204, -0.019821548834443092, -0.00046828569611534476, -0.019126959145069122, -0.004874994978308678, -0.01234184019267559, -0.011711563915014267, -0.010553913190960884, 0.008007082156836987, -0.0038942075334489346, -0.006707941647619009, 0.008290063589811325, 0.0015949851367622614, -0.0015234359307214618, 0.002730125794187188, 0.02312728390097618, -0.002826596610248089, -0.0004996387287974358, -0.01486937701702118, -0.021660927683115005, 0.005833272356539965, -0.0006813255604356527, 0.020271746441721916, 0.007595473434776068, -0.009421988390386105, -0.029275694862008095, 0.017184678465127945, 0.005267309956252575, -0.010174461640417576, -0.004260797053575516, 0.010045833885669708, 0.023230185732245445, 0.016438636928796768, 0.0073124924674630165, 0.012290389277040958, -0.02265136130154133, -0.015486790798604488, 0.008913909085094929, -0.011499328538775444, 0.00405820831656456, -0.004350836388766766, -0.006367077585309744, -0.004347620531916618, 0.020657630637288094, -0.015178084373474121, -2.0424693502718583e-05, -0.0012999450555071235, -0.018059346824884415, -0.010817600414156914, 0.020284609869122505, -0.0052866037003695965, -0.0016641225665807724, -0.010708266869187355, 0.005415231920778751, -0.019551429897546768, -0.00854731909930706, -0.0016930638812482357, 0.01018089335411787, 0.005752879660576582, 0.002374791307374835, 0.0241820327937603, 0.021442260593175888, -0.03259429335594177, 0.02886408567428589, -0.0023104774300009012, 0.010676110163331032, -0.025326820090413094, 0.005386290606111288, 0.011447876691818237, 0.015962714329361916, 0.010991248302161694, 0.009910774417221546, -0.028015142306685448, -0.02816949598491192, -0.007839865982532501, 0.008579476736485958, -0.003653030376881361, 0.015525379218161106, 0.002837851643562317, -0.020155981183052063, 0.011409289203584194, -0.010412422940135002, -0.015795497223734856, 0.005576016381382942, 0.007389668840914965, 0.008733829483389854, 0.018265152350068092, -0.007293198257684708, 0.0047592297196388245, -0.00737680634483695, -0.013094313442707062, -0.02091488614678383, 0.016027027741074562, -0.0018023975426331162, 0.024966662749648094, 0.00916473288089037, 0.018445231020450592, 0.021648064255714417, -0.007807709276676178, 0.004315463826060295, 0.024992387741804123, -0.003328245133161545, 0.029764480888843536, 0.010296657681465149, -0.019268449395895004, 0.011949525214731693, -0.0003424716123845428, -0.010952659882605076, -0.001710750162601471, -0.00247930153273046, -0.01417478732764721, -0.0077048069797456264, 0.002561301691457629, 0.028092319145798683, -0.02259990945458412, 0.017146090045571327, 0.02176382951438427, -0.004154678899794817, 0.004637033212929964, 0.025159604847431183, 0.0054216631688177586, -0.014586396515369415, 0.022033948451280594, -0.00026589783374220133, 0.036684658378362656, -0.005817193537950516, -0.005801115185022354, 0.002588635077700019, -0.02696039341390133, -0.005084014963358641, 0.006013351026922464, 0.006617901846766472, 0.0001182773121399805, 0.015126633457839489, -0.011833760887384415, -0.010650384239852428, -0.015499654226005077, -0.01708177663385868, -0.00704237399622798, -0.029224243015050888, -0.0024905563332140446, 0.021841006353497505, -0.0023715756833553314, 0.009306224063038826, -0.0019583588000386953, 0.010045833885669708, 0.010650384239852428, 0.015975575894117355, 0.0015893576201051474, 0.008946065790951252, 0.004402287770062685, 0.013094313442707062, 0.019641470164060593, -0.006486058235168457, 0.017223266884684563, 0.019114095717668533, 0.00958277378231287, 0.026137175038456917, -0.021467985585331917, -0.012348271906375885, 0.013544511049985886, 0.009177596308290958, -0.008174298331141472, -0.008489437401294708, -0.015962714329361916, -0.0031208328437060118, -0.007151707541197538, -0.03128228709101677, -0.009364105761051178, -0.0028491064440459013, -0.000617011624854058, -0.0056049576960504055, -0.008759555406868458, 0.002644909778609872, -0.0100265396758914, -0.01742907054722309, -0.008650221861898899, -0.024966662749648094, -0.013274392113089561, -0.0031931858975440264, 0.004948955960571766, 0.015499654226005077, 0.022522732615470886, 0.01656726561486721, 0.0012484939070418477, -0.003263931255787611, -0.020323198288679123, -0.018059346824884415, -0.0022879675962030888, -0.005289819557219744, 0.0010129441507160664, 0.014149061404168606, -0.021532298997044563, 0.003720560111105442, 0.008437985554337502, -0.005183701869100332, 0.010824032127857208, 0.014432042837142944, 0.008759555406868458, 1.2360330401861575e-05, -0.005196564365178347, -0.026883216574788094, 0.005801115185022354, 0.019744371995329857, 0.0003555353614501655, -0.011164896190166473, 0.009614930488169193, -0.013197215273976326, -0.0241820327937603, 0.007074530702084303, 0.020799120888113976, 0.0039810314774513245, -0.010309521108865738, 0.0015813184436410666, 0.0038749135565012693, 0.013454471714794636, 0.01104913093149662, -0.012708430178463459, 0.016168517991900444, 0.0003284029371570796, -0.0019020840991288424, 0.007904180325567722, 0.025635527446866035, -0.011634387075901031, -0.0013891805429011583, 0.010566776618361473, 0.0008465319406241179, -0.0092483414337039, -0.005350918043404818, 0.011865917593240738, -0.036041516810655594, -0.021802417933940887, 0.023178735747933388, 0.000504462281242013, 0.002952008740976453, 0.001441435655578971, -0.00872096698731184, -0.01658012717962265, 0.0034568728879094124, -0.0075890421867370605, 0.028220945969223976, 0.030870679765939713, -0.005058289505541325, 0.005209427326917648, -0.010123010724782944, 0.010065128095448017, -0.018355192616581917, 0.033057354390621185, -0.013917531818151474, -0.0276549831032753, 0.001672161859460175, -0.008380102925002575, 0.0073832375928759575, -0.013403019867837429, 0.004682052880525589, -0.012843488715589046, -0.003395774867385626, 0.007949200458824635, 0.00155318109318614, 0.014303415082395077, -0.008759555406868458, 0.017326168715953827, 0.01570545881986618, 0.028040867298841476, -0.00803280808031559, -0.009312654845416546, -0.018432367593050003, 0.026471607387065887, 0.016695892438292503, 0.0014952985802665353, 0.0045084054581820965, 0.0009180811466649175, -0.0026465177070349455, -0.0014486709842458367, -0.005694997496902943, -0.017544835805892944, -0.017403345555067062, -0.012882077135145664, -0.02109496481716633, 0.0001542529062135145, 0.021442260593175888, 0.018059346824884415, 0.021455122157931328, 0.019397076219320297, 0.011936662718653679, -0.0032478526700288057, -0.0015210241544991732, -0.007756258361041546, 0.014046159572899342, 0.005302682518959045, -0.0018876134417951107, 0.00013204451533965766, -0.0114028574898839, 0.0300474613904953, 0.0031947938259691, 0.007331786677241325, 0.024812309071421623, 0.0032044409308582544, -0.001804005354642868, -0.004604876507073641, -0.0007705611060373485, 0.014187649823725224, 0.007023079786449671, 0.002080555073916912, -0.005341270938515663, -0.01625855825841427, 0.014985142275691032, -0.013351568952202797, 0.0018892212538048625, 0.019088370725512505, 0.005756095517426729, 0.0257384292781353, -0.006550372578203678, 0.018097935244441032, 0.03457516059279442, 0.00621272437274456, -0.006843000650405884, -0.0014583180891349912, 5.235554635873996e-05, -0.0010105323744937778, 0.008444417268037796, 0.016721617430448532, 0.020657630637288094, 0.011537916958332062, -0.008071396499872208, -0.01692742295563221, -0.023050107061862946, 0.001691455952823162, -0.016824521124362946, -0.004775308072566986, 0.0001581720425747335, 0.002004986396059394, -0.009930068626999855, 0.017544835805892944, 0.021172141656279564, -0.0044633857905864716, 0.01587267406284809, -0.009003948420286179, -0.0240019541233778, -0.0183166041970253, -0.007261041086167097, 0.005720722954720259, 0.0002648929366841912, -0.004106443375349045, 0.0009140615584328771, -0.0014333963626995683, -0.020979199558496475, 0.01546106580644846, 0.011357837356626987, 0.021879594773054123, 0.03853689879179001, -0.02296006865799427, -0.005132250487804413, 0.0026722431648522615, 0.03660748153924942, 0.015422477386891842, 0.008688810281455517, -0.009479871019721031, 0.0034279318060725927, 0.032542843371629715, -0.014393454417586327, 0.009717832319438457, 0.007396100554615259, 0.015744047239422798, -0.02277998998761177, -0.021545162424445152, 0.003588716499507427, 0.023088695481419563, -0.008238612674176693, -0.0012050820514559746, 0.005186917260289192, 0.0008923555724322796, -0.007048805244266987, -0.005608173552900553, 0.0075633167289197445, -0.0023651442024856806, 0.005254446994513273, -0.017737777903676033, -0.023410266265273094, -0.018097935244441032, 0.011570073664188385, -0.01131924893707037, -0.014792201109230518, -0.017647739499807358, 0.00647641159594059, 0.01165368128567934, 0.002035535406321287, -0.03159099444746971, -0.015216672793030739, 0.007074530702084303, -0.0025178897194564342, -0.00836724042892456, 0.00677868677303195, 0.004460169933736324, -0.019075507298111916, -0.029661579057574272, 0.010573207400739193, 0.009454146027565002, 0.00388456042855978, 0.0033153824042528868, 0.019628606736660004, -0.012708430178463459, -0.012644115835428238, 0.0076340618543326855, 0.006309194955974817, -0.007569747976958752, -0.00027293217135593295, -0.001860280055552721, 0.014239100739359856, 0.011287092231214046, 0.030459070578217506, 0.004000325687229633, 0.0226256363093853, -0.015306712128221989, 0.01917840912938118, -0.006791549734771252, 0.0005205407505854964, -0.011435014195740223, 0.0015017299447208643, 0.024735132232308388, 0.007537590805441141, 0.004476248752325773, 0.008077828213572502, 0.0017782797804102302, 0.010727561078965664, -0.010791875422000885, -0.007216021418571472, -0.003415068844333291, 0.002061261096969247, -0.012502625584602356, 0.017544835805892944, 0.005887939129024744, -0.008251475170254707, 0.021969633176922798, -0.005749664269387722, -0.007177432999014854, 0.015088045038282871, -0.019937314093112946, 0.0023587129544466734, 0.008283632807433605, -0.0023313795682042837, 9.853093069978058e-05, 0.023744698613882065, 0.003164244582876563, -0.007145276293158531, 0.006939471699297428, -0.006997353862971067, 0.00021906927577219903, 0.0036562462337315083, -0.003501892788335681, -0.011235641315579414, -0.007685512769967318, 0.023384539410471916, -0.022381242364645004, -0.003659461857751012, -0.006720804143697023, -0.019911589100956917, -0.03714771941304207, -0.0004305012698750943, 0.007415394764393568, 0.003199617378413677, 0.0108047379180789, 0.003685187315568328, 0.013763178139925003, -0.003620873438194394, 0.011801603250205517, -0.00128386658616364, 0.0032092644833028316, -0.023050107061862946, 0.021107826381921768, -0.0056467619724571705, 0.004466601647436619, 0.010290226899087429, 0.0015572006814181805, -0.0034729514736682177, -0.03624732419848442, -0.00582684064283967, -0.0028040867764502764, -0.010901208966970444, -0.029224243015050888, -1.550065826450009e-05, 0.013621687889099121, -0.0072031584568321705, -0.018445231020450592, -0.007839865982532501, 0.0011045915307477117, -0.009878617711365223, -0.011570073664188385, -0.0033057352993637323, -0.04134098440408707, 0.01621996983885765, -0.01096552237868309, -0.008798143826425076, -0.002519497647881508, -0.0012726116692647338, -0.00548919290304184, -0.02368038333952427, 0.003968168515712023, -0.0028523223008960485, 0.0038170309271663427, 0.005235152784734964, -0.028529653325676918, 0.016438636928796768, 0.024940935894846916, -0.014483493752777576, 0.002381222788244486, 0.025969959795475006, 0.016477225348353386, -0.003878129180520773, -0.0030034598894417286, -0.009274066425859928, -0.008933203294873238, 0.02760353311896324, 0.0017589855706319213, -0.008013513870537281, -0.013107175938785076, 0.0064924899488687515, -0.020426100119948387, 0.013634550385177135, -0.0036980502773076296, -0.00218024174682796, -0.01149289682507515, -0.003146558301523328, 0.023731835186481476, 0.004691699985414743, 0.0028844792395830154, 0.011846623383462429, -0.013621687889099121, -0.006441038567572832, 0.013570236042141914, 0.00263043912127614, 0.006016566883772612, 0.022921480238437653, -0.011235641315579414, -0.003325029509142041, 0.0035051084123551846, -0.023423127830028534, -0.011036268435418606, -0.0036112263333052397, -0.006280254106968641, 0.018355192616581917, -0.014882240444421768, -0.021493710577487946, -0.012084584683179855, 0.02245841920375824, 0.0011576504912227392, 0.00540236895903945, 0.014534944668412209, -0.00011164494208060205, 0.006087312009185553, -0.010952659882605076, 0.003826678032055497, 0.013686001300811768, 0.0027092236559838057, 0.003296088194474578, -0.004376561846584082, 0.02386046200990677, 0.0015845340676605701, -0.01656726561486721, -0.011602230370044708, 0.03390629589557648, 0.010920503176748753, 0.00923547800630331, 0.015808360651135445, -0.018869703635573387, 0.02604713663458824, 0.012849920429289341, -0.003826678032055497, -0.019924450665712357, -0.0055342125706374645, 0.004199698567390442, -0.011164896190166473, -0.00504864240065217, -0.0009936500573530793, -0.006920177489519119, 0.031127935275435448, -0.009820735082030296, 0.005981194321066141, -0.029584402218461037, -0.004907151684165001, -0.02312728390097618, 0.007273904047906399, -0.01570545881986618, 0.008052102290093899, 0.0006905706832185388, -0.022509871050715446, -0.00313369557261467, -0.009016810916364193, -0.006289901211857796, -0.009402694180607796, 0.01147360261529684, 0.01621996983885765, 0.011949525214731693, -0.011023405008018017, -0.006521431263536215, -0.026201490312814713, 0.015268123708665371, -0.0054666828364133835, -0.015499654226005077, 0.01587267406284809, -0.007010216824710369, -0.0011455916101112962, -0.018766799941658974, 0.020850570872426033, -0.026806039735674858, -0.013621687889099121, 0.005830056499689817, 0.014251964166760445, -0.0057175070978701115, 0.009795009158551693, 0.014380591921508312, 0.003127264091745019, -0.002511458471417427, 0.008444417268037796, 0.001427768962457776, -0.003489030059427023, -0.021185003221035004, -0.005858997814357281, 0.01573118381202221, -0.0007826199871487916, -0.042755890637636185, -0.012213212437927723, 0.024400699883699417, 0.004501974210143089, 0.012978548184037209, 0.012727724388241768, 0.006074449513107538, 0.009126144461333752, -0.01304929330945015, 0.015306712128221989, -0.005945821758359671, -0.007537590805441141, 0.022368380799889565, -0.006016566883772612, 0.006556803826242685, -0.007511865347623825, 0.0025146740954369307, -0.018522407859563828, 0.017056049779057503, 0.011042699217796326, 0.02604713663458824, 0.006997353862971067, -0.0135573735460639, 0.008444417268037796, -0.027423454448580742, 0.00067971769021824, 0.0011496111983433366, 0.004167541861534119, -0.006289901211857796, -0.00976285245269537, -0.0033539708238095045, 0.017673464491963387, -0.03524402529001236, 0.010637521743774414, 0.03092213161289692, -0.014200512319803238, 0.016644440591335297, 0.005141897592693567, 0.025121016427874565, -0.008109984919428825, 0.010155167430639267, -0.0010861012851819396, 0.017724914476275444, -0.01104913093149662, -0.014277689158916473, 0.0008481397526338696, -0.006502137053757906, -0.0183166041970253, 0.011126307770609856, 0.005984409712255001, 0.008978222496807575, 0.009068261831998825, 0.003095107153058052, -0.0038556193467229605, -0.015795497223734856, 0.0007878454634919763, 0.0061998614110052586, 0.017210403457283974, 0.01793072000145912, -0.010058696381747723, -0.01637432351708412, -0.020824845880270004, 0.015782635658979416, 0.008026376366615295, -0.005202995613217354, 0.005891154520213604, 0.00159739691298455, 0.008778849616646767, 0.015563967637717724, -0.009608498774468899, -0.01796930842101574, 0.003714128630235791, 0.013968982733786106, 0.007164570037275553, -0.0129592539742589, 0.0076340618543326855, -0.005974762607365847, -0.020477550104260445, 0.010772581212222576, -0.027217648923397064, 0.011537916958332062, 0.0034761670976877213, -0.03570708632469177, 0.011435014195740223, 0.004707778804004192, -0.011840191669762135, 0.0067465296015143394, -0.006360646337270737, 0.005228721536695957, 0.009891480207443237, 0.008585907518863678, -0.02157088741660118, 0.014830789528787136, 0.0004393444396555424, -0.009274066425859928, 0.00856018252670765, -0.010907639749348164, 0.002511458471417427, -0.006624333560466766, 0.01811079867184162, -0.016811657696962357, -0.004566288087517023, -0.028426751494407654, 0.003968168515712023, 0.0012074938276782632, -0.01933276280760765, 0.028452476486563683, -0.014444905333220959, 0.018355192616581917, -0.0007512669544667006, -0.02259990945458412, -0.009563479572534561, -0.008495868183672428, 0.014239100739359856, -0.005669271573424339, 0.021866731345653534, 0.010238775052130222, -0.012193918228149414, -0.003064558142796159, -0.004781739786267281, -0.026548784226179123, 0.006010135635733604, -0.009216183796525002, -0.016785932704806328, 0.013165058568120003, 0.007936337031424046, 0.0031079701147973537, -0.002442321041598916, 0.0012758272932842374, -0.024079130962491035, 0.005238368641585112, 0.007023079786449671, -0.0065600196830928326, -0.005749664269387722, 0.0030999307055026293, -0.01624569483101368, -0.006135547533631325, 0.00028901066980324686, 0.017068913206458092, 0.013878943398594856, -0.003363617928698659, 0.0021898888517171144, 0.020940611138939857, 0.014534944668412209, -0.00914543867111206, 1.6204091934923781e-06, -0.005733585450798273, -0.016117068007588387, 0.011750152334570885, 0.01086905226111412, 0.028889810666441917, 0.038768429309129715, -0.0216094758361578, -0.019577156752347946, -0.013686001300811768, 0.0013634549686685205, -0.005357349291443825, -0.00019465008517727256, 0.01677306927740574, 0.003653030376881361, 0.00958277378231287, -0.003220519283786416, -0.004820328205823898, 0.00164161273278296, 0.027166198939085007, -0.014020433649420738, -0.02364179491996765, -0.022046810016036034, 0.01848381944000721, 0.0019438881427049637, -0.015499654226005077, -0.01544820237904787, 0.002839459339156747, 0.009814303368330002, -0.009196889586746693, 0.000964708742685616, 0.013840354979038239, 0.0004208541940897703, 0.001003297045826912, -0.022008221596479416, -0.0053991531021893024, -1.4382701465365244e-06, 0.01724899187684059, -0.012258232571184635, 0.0018152602715417743, -0.02780933678150177, 0.013994707725942135, 0.010135873220860958, -0.025519762188196182, -0.011878780089318752, -0.001916554756462574, 0.013274392113089561, 0.001610259641893208, 0.0171203650534153, 0.006228802725672722, 0.017583424225449562, 0.01417478732764721, 0.009872185997664928, 0.0024407131131738424, 0.0037044815253466368, 0.022149711847305298, -0.012219644151628017, -0.009737126529216766, -0.02333308942615986, -0.01642577350139618, -0.019937314093112946, -0.01226466428488493, -0.0039392272010445595, 0.02608572505414486, -0.011460740119218826, 0.01191093772649765, 0.002786400495097041, -0.03213123232126236, 0.004106443375349045, 0.012817763723433018, 0.03874270245432854, 0.0123611344024539, -0.001164885819889605, -0.00915830209851265, -0.01063109003007412, 0.0011616700794547796, -0.015473928302526474, 0.01484365202486515, -0.011878780089318752, 0.011679407209157944, 0.0048524849116802216, -0.0019969469867646694, 0.0029294989071786404, -0.01027736347168684, 0.021969633176922798, 0.015049456618726254, 0.018702486529946327, -0.008200024254620075, 0.01096552237868309, 0.005582448095083237, 0.04149533808231354, 0.002443928737193346, 0.014830789528787136, -0.011904506012797356, -0.006129116285592318, -0.01916554756462574, 0.0034054219722747803, -0.029610127210617065, -0.00140365120023489, 0.009087556041777134, 0.007807709276676178, -0.028092319145798683, 0.024992387741804123, -0.008875320665538311, 0.014432042837142944, 0.006386371795088053, 0.0030404403805732727, 0.013055725023150444, -0.004125737585127354, -0.01346733421087265, -0.004054992459714413, 0.0071066878736019135, -0.03295445069670677, 0.035501282662153244, -0.005801115185022354, -0.022046810016036034, -0.01104913093149662, 0.006556803826242685, -0.0020451825112104416, -0.0133772948756814, -0.013184352777898312, -0.01104913093149662, -0.0011890035821124911, -0.01063109003007412, 0.03475524112582207, -0.004476248752325773, -0.011113444343209267, 0.018908292055130005, 0.007048805244266987, -0.005656409077346325, 0.004546993877738714, -0.010412422940135002, 0.0043701305985450745, -0.0016496519092470407, 0.03732779622077942, 0.012431880459189415, 0.0024326739367097616, 0.01520380936563015, 0.0006986099178902805, 0.00011204690235899761, -0.0029262832831591368, -0.008778849616646767, 0.022844303399324417, -0.005408800207078457, -0.0011126307072117925, -0.006457117386162281, -0.00829649530351162, 0.0005860605742782354, 0.002636870602145791, 0.015216672793030739, -0.01829087734222412, -0.002730125794187188, 0.004540562629699707, 0.015821224078536034, -0.02126218006014824, -0.012026702053844929, 0.014624984934926033, -0.004781739786267281, 0.0073382179252803326, 0.021352220326662064, -0.002193104475736618, 0.028915537521243095, 3.841249053948559e-05, -0.03573281317949295, -0.004032482393085957, 0.007878454402089119, -0.006418528966605663, 0.011679407209157944, 0.013904668390750885, -0.0025162820238620043, 0.0018956527346745133, 0.020786257460713387, -0.010920503176748753, 0.020168844610452652, -0.0030163226183503866, 0.004817112348973751, 0.006740098353475332, 0.03511539846658707, 0.0005876683862879872, -0.016721617430448532, 0.012148899026215076, -0.018020758405327797, -0.007949200458824635, -0.01948711648583412, 0.012013839557766914, 0.019808685407042503, 0.012965685687959194, 0.014457768760621548, -0.00046949158422648907, -0.00949916522949934, 0.026471607387065887, -0.023268774151802063, -0.021866731345653534, -0.004479464143514633, -0.005556722171604633, -0.02523677982389927, 0.0037687954027205706, -0.0056049576960504055, 0.0007476492901332676, -0.0034407945349812508, -0.00397138437256217, -0.0039392272010445595, 0.004154678899794817, -0.00495860306546092, -0.011518622748553753, -0.003450441639870405, 0.0037269913591444492, -0.0022509871050715446, 0.013634550385177135, -0.00513868173584342, -0.01607847958803177, 0.0013425529468804598, -0.035295478999614716, 3.647804987849668e-05, -0.011441445909440517, -0.002842675196006894, 0.007884886115789413, -0.017917856574058533, 0.015332438051700592, 0.002681890269741416, 0.01570545881986618, 0.03753359988331795, 0.0031433426775038242, -0.022419830784201622, -0.01605275273323059, 0.012438311241567135, 0.02989310771226883, -0.016811657696962357, -0.0032092644833028316, 0.019911589100956917, -0.013197215273976326, -0.0006966001237742603, 0.002230084966868162, 0.0018876134417951107, -0.006759392563253641, -0.0029745185747742653, -0.0048975045792758465, -0.0003927168436348438, -0.010103716515004635, 0.01553824171423912, -0.0035726381465792656, -0.0032993038184940815, 0.0013441608753055334, -0.010290226899087429, -0.01441918034106493, 0.003714128630235791, 0.005588879343122244, -0.012232506647706032, 0.0037880896124988794, 0.036530304700136185, 0.012020271271467209, -0.016142792999744415, 0.03264574334025383, -0.007164570037275553, -0.009537753649055958, 0.012972116470336914, -0.0075633167289197445, 0.000996061833575368, -0.0005969135090708733, 0.008174298331141472, -0.0013232588535174727, -0.012045996263623238, -0.005428094416856766, -0.021133553236722946, -0.002017849124968052, 0.010496031492948532, -0.03233703598380089, -0.003125656396150589, 0.007807709276676178, 0.02760353311896324, 0.002284751972183585, 0.004588798154145479, -0.002619184320792556, -0.003312166780233383, 0.002423026831820607, -0.030278991907835007, 0.012547644786536694, 0.00012360331311356276, -0.01621996983885765, -0.01609134115278721, 0.004399071913212538, 0.027217648923397064, -0.005003622733056545, -0.0010547481942921877, 0.0031481662299484015, 0.0114028574898839, 0.026728862896561623, -0.013956120237708092, -0.027912240475416183, 0.005389505997300148, -0.008830300532281399, -0.0125990966334939, 0.00985289178788662, 0.015988439321517944, 0.0062448810786008835, 0.01009728480130434, -0.010418854653835297, -0.007775552570819855, -0.006238449830561876, 0.005846134852617979, -0.019268449395895004, -0.008129279129207134, 0.0032285586930811405, -0.016528677195310593, -0.0037109130062162876, -0.0068815890699625015, -0.02834957465529442, -0.011820897459983826, 0.0011576504912227392, 0.008566613309085369, 0.005961900111287832, -0.0073575121350586414, -0.004813896492123604, 0.030484795570373535, -0.005801115185022354, -0.0035372653510421515, 0.0034407945349812508, 0.02626580372452736, 0.023243049159646034, -0.0021014572121202946, -0.00811641663312912, -0.0003768393653444946, -0.04491683840751648, 0.0071066878736019135, 0.006363862194120884, -0.01416192390024662, 0.013165058568120003, -0.014136198908090591, -0.024297798052430153, 0.011132738552987576, 0.02798941545188427, 0.012328977696597576, -0.0020580452401190996, -0.005678918678313494, -0.025969959795475006, -0.005167623050510883, 0.018059346824884415, 0.010528188198804855, 0.004849269054830074, 0.008958928287029266, -0.0011576504912227392, 0.005804331041872501, -0.007068099454045296, -0.006727235857397318, -0.003527618246152997, 0.010412422940135002, -0.004694915842264891, 0.03874270245432854, -0.03673610836267471, -0.018355192616581917, 0.00265777250751853, 0.0017284364439547062, 0.02778361178934574, 0.006135547533631325, -0.002228477271273732, -0.0059908414259552956, -0.015332438051700592, -0.005193348508328199, -0.025249643251299858, -0.005801115185022354, -0.009968657046556473, -0.0114028574898839, 0.006238449830561876, 0.023243049159646034, 0.014470631256699562, -0.010418854653835297, 0.00889461487531662, -0.007691944483667612, 0.019924450665712357, -0.02315301075577736, -0.005074367858469486, -0.0018618878675624728, -0.007473276928067207, 0.006232018582522869, -0.009216183796525002, 0.0037237757351249456, 0.002935930388048291, -0.02088915929198265, -0.0061033908277750015, -0.009241909720003605, -0.0014333963626995683, 3.3350281682942295e-06, 0.01131281815469265, -0.002537183929234743, 0.021712377667427063, 0.03249138966202736, -0.01795644499361515, 0.01304286252707243, -0.0240019541233778, -0.00042567774653434753, -0.014907965436577797, -0.022522732615470886, 0.006765823811292648, -0.033211708068847656, -0.0056113894097507, -0.019911589100956917, 0.011750152334570885, -0.010508893989026546, -0.0021786338184028864, -0.008573045022785664, 0.0066757844761013985, -0.006196646019816399, 0.0019213781924918294, 0.011016974225640297, 0.0014269649982452393, -0.005514918360859156, 6.08469927101396e-05, -0.012489762157201767, -0.015062319114804268, 0.00690088327974081, 0.000547874195035547, 0.0015756909269839525, -0.00023092715127859265, 0.01027093268930912, 0.005116172134876251, 0.002837851643562317, 0.0009751597535796463, -0.0022156143095344305, 0.006039076950401068, 0.014573533087968826, -0.0016866324003785849, 0.0025709487963467836, -0.009724264033138752, -0.028040867298841476, -0.01331298053264618, 0.0023796148598194122, -0.008270769380033016, -0.013904668390750885, -0.0012018663110211492, -0.010328815318644047, 0.02177669294178486, -0.0024696544278413057, 0.01486937701702118, -0.004469817038625479, 0.012656978331506252, 0.014277689158916473, -0.017892131581902504, -0.004106443375349045, -0.020091667771339417, 0.012669841758906841, -0.0019036919111385942, -0.009614930488169193, -0.008418691344559193, 0.006502137053757906, 0.016335735097527504, -0.014187649823725224, -0.002693145303055644, 0.008534456603229046, -0.0022333008237183094, 0.0066050393506884575, 0.0073832375928759575, -0.00504864240065217, 0.016528677195310593, 0.02176382951438427, 0.008142141625285149, 0.031333740800619125, 0.012457605451345444, -0.012894940562546253, 0.011081287637352943, 0.009325518272817135, -0.021467985585331917, -0.010856188833713531, -0.008920339867472649, -0.0010941404616460204, -0.008264338597655296, 0.00847657397389412, -0.0021287905983626842, 0.011029836721718311, 0.021532298997044563, -0.03303162753582001, 0.024246346205472946, -0.0048942891880869865, -0.004280091263353825, -0.01328725554049015, 0.005084014963358641, -0.021365083754062653, -0.008315789513289928, -0.025635527446866035, 0.01346733421087265, 0.0020934180356562138, -0.01589840091764927, 0.012129604816436768, -0.0004867759416811168, -0.02832384780049324, 0.0021641633938997984, -0.020631903782486916, -0.015165221877396107, -0.003119224915280938, -0.00325589207932353, -0.004682052880525589, -0.00030930974753573537, 0.02193104475736618, 0.021480847150087357, -0.0031545974779874086, 0.004521268419921398, -0.01641291193664074, 0.005325192119926214, -0.0027976552955806255, 0.012528350576758385, -0.0037752268835902214, 0.0046209548600018024, 0.0031369111966341734, -0.013776040636003017, -0.008643790148198605, 0.024400699883699417, 0.01676020585000515, 0.019435664638876915, -0.0267545897513628, 0.029610127210617065, -0.009177596308290958, -0.005730370059609413, -0.017377620562911034, -0.0008095514494925737, -0.01087548304349184, 0.0017686326755210757, -0.013724589720368385, -0.0030967150814831257, -0.015306712128221989, 0.011975251138210297, -0.0014229454100131989, 0.00018259123316965997], "864076b7-ed58-4051-b8b8-ae83d361d1ff": [-0.04266916215419769, 2.1118319637025706e-05, -0.007983262650668621, 0.01636415906250477, -0.03869282454252243, -0.023292163386940956, -0.008296781219542027, 0.025769727304577827, -0.040038660168647766, 0.03578703850507736, 0.010078486986458302, 0.028155529871582985, 0.010277303867042065, 0.005467464216053486, -0.009344393387436867, 0.009489682503044605, -0.011669022031128407, 0.02093694731593132, -0.015966525301337242, -0.039763376116752625, 0.07267522066831589, -0.04533024877309799, -0.021120470017194748, 0.0043166205286979675, -0.022389840334653854, -0.01071317121386528, -0.009933197870850563, 0.009841435588896275, -0.028094355016946793, -0.015477130189538002, 0.020355790853500366, 0.0015589919639751315, 0.006759773939847946, 0.023506272584199905, -0.0036169379018247128, -0.030082523822784424, -0.018275858834385872, 0.005341291893273592, 0.023689797148108482, 0.016211222857236862, -0.025494441390037537, 0.0013190736062824726, 0.012525463476777077, 0.008296781219542027, -0.03089308552443981, 0.020738130435347557, 0.0027872598730027676, -0.020462846383452415, 0.023093346506357193, -0.0019250827608630061, 0.002487122779712081, 0.0342576801776886, -0.018811136484146118, -0.005949212703853846, 0.0338294580578804, -0.024729762226343155, 0.03777520731091499, 0.08338074386119843, -0.01537772174924612, -0.06778126209974289, -0.0030893085058778524, -0.05239589512348175, -0.00857971329241991, -0.006897416431456804, 0.006044798064976931, -0.027146151289343834, 0.002622853498905897, -0.02115105837583542, -0.016685323789715767, 0.024179192259907722, -0.010529648512601852, -0.0011929012835025787, -0.07310343533754349, 0.0040528057143092155, -0.004232505802065134, -0.0009716219501569867, 0.026167361065745354, -0.023200400173664093, 0.001714795595034957, -0.010040252469480038, -0.006289495620876551, -0.0033454764634370804, -0.009902610443532467, 0.0012932656100019813, 0.03551175445318222, 0.01537772174924612, -0.014238347299396992, -0.049337174743413925, -0.03263655677437782, -0.0338294580578804, -0.021487517282366753, -0.004278386477380991, -0.0135119017213583, 0.022695712745189667, 0.02615206688642502, 0.00017934142670128495, 0.01807704195380211, 0.013152501545846462, 0.03132130578160286, -0.005245706997811794, 0.0053986432030797005, 0.016975903883576393, -0.015370074659585953, -0.029975468292832375, -0.006515076383948326, -0.022909821942448616, -0.011378442868590355, 0.03453296422958374, -0.023368630558252335, 0.006216851063072681, 0.026274416595697403, -0.05416995286941528, 0.03471648693084717, 0.015568891540169716, -0.02879786118865013, -0.040528059005737305, -0.026549700647592545, -0.029057852923870087, 0.00160104944370687, -0.004056629259139299, 0.03398239240050316, -0.012456642463803291, 0.014712449163198471, -0.017694702371954918, 0.00636214017868042, 0.005930095911026001, -0.011921366676688194, 0.005176885984838009, 0.025892075151205063, 0.02139575593173504, -0.02188515104353428, -0.012311353348195553, 0.014337755739688873, 0.02023344114422798, -0.004890130832791328, 0.02275688573718071, 0.020891066640615463, 0.043923236429691315, -0.041506849229335785, 0.027604959905147552, -0.03728581219911575, -0.015484776347875595, -0.02352156676352024, 0.011401383206248283, 0.029516659677028656, 0.015752414241433144, -0.031596589833498, 0.04581964388489723, -0.04462674260139465, 0.04753252863883972, -0.05157003924250603, -0.009122636169195175, -0.0018667757976800203, 0.014895972795784473, 0.05364997312426567, -0.02879786118865013, -0.0014548043254762888, 0.04704313352704048, -0.00418662466108799, 0.014850092120468616, 0.004328090697526932, -0.05921684578061104, -0.012884863652288914, 0.0040375120006501675, 0.01272428035736084, 0.03121425025165081, 0.06120501458644867, 0.013045446015894413, -0.005215120036154985, 0.02352156676352024, 0.0007178436499089003, -0.011646081693470478, 0.028859036043286324, -0.00777679868042469, 0.0026400587521493435, -0.04490203037858009, 0.03048015758395195, -0.01046847365796566, 0.03801990672945976, -0.053527623414993286, -0.031902462244033813, 0.0022118377964943647, -0.00030491629149764776, -0.01494185347110033, -0.014383637346327305, 0.022833354771137238, -0.02401096187531948, 0.017006490379571915, 0.013030152767896652, 0.021518103778362274, -0.005910979118198156, -0.0010629056487232447, 0.030113110318779945, -0.010445533320307732, -0.006863005924969912, -0.0156377125531435, -0.015102436766028404, 0.038539886474609375, 0.008962053805589676, 0.012747220695018768, -0.02020285464823246, -0.03566468879580498, 0.0052762944251298904, 0.03768344596028328, -0.031229544430971146, 0.0053795259445905685, -0.02254277653992176, -0.07175759971141815, 0.0197899267077446, -0.01256369799375534, 0.05673928186297417, -0.03306477889418602, 0.016700617969036102, 0.014483045786619186, -0.015752414241433144, 0.0026438822969794273, -0.03100014105439186, 0.009107342921197414, -0.020998122170567513, -0.001655532862059772, -0.02170162834227085, 0.010208481922745705, -0.02419448457658291, -0.015454188920557499, -0.053221751004457474, -0.02814023569226265, -0.032208334654569626, 0.0197899267077446, -0.015178904868662357, 0.004633962642401457, -0.0004690835776273161, -0.00025306138559244573, 0.017557060346007347, -0.0034238561056554317, -0.017190013080835342, 0.03593997657299042, 0.03312595188617706, -0.007807386107742786, -0.011087864637374878, -0.021609865128993988, 0.003131365869194269, 0.025570910423994064, -0.03450237587094307, -0.0020761070773005486, 0.009810848161578178, 0.03679641708731651, -0.008189726620912552, 0.041262149810791016, -0.002418301533907652, 0.010231423191726208, 0.023200400173664093, 0.027039095759391785, -0.02887432835996151, 0.005314528476446867, -0.0019958156626671553, 0.0014519367832690477, 0.039059869945049286, 0.002974606351926923, -0.028186116367578506, -0.002552120480686426, 0.004006925038993359, -0.006866829469799995, -0.021411048248410225, -0.0018275859765708447, 0.04355619102716446, -0.04676784947514534, 0.021028708666563034, -0.0044236755929887295, 0.009902610443532467, 0.0393657423555851, -0.04214917868375778, -0.007845619693398476, 0.010866107419133186, 0.011340209282934666, 0.02082989178597927, -0.016226517036557198, -0.006912710145115852, 0.03630702197551727, 0.040986865758895874, 0.004282210022211075, -0.027864951640367508, -0.0070503526367247105, 0.012487229891121387, 0.03471648693084717, 0.03044957108795643, 0.013152501545846462, -0.026901453733444214, 0.007432692684233189, -0.0078035625629127026, -0.0027509373612701893, 0.00615950021892786, -0.009092048741877079, 0.013206029310822487, 0.030786029994487762, 0.01615004800260067, -0.002349480288103223, -0.0007207111921161413, 0.006388904061168432, 0.012777808122336864, -0.006186263635754585, 0.005085124168545008, 0.001846703002229333, -0.003980161156505346, -0.037805795669555664, 0.04545259848237038, -0.01642533391714096, 0.041476260870695114, 0.028354346752166748, -0.05380290746688843, 0.0293637253344059, 0.05493463575839996, -0.001401276676915586, -0.023429805412888527, 0.0014815680915489793, 0.0013630426255986094, 0.000576377788092941, -0.006515076383948326, -0.011003749445080757, -0.006809478159993887, -0.035572927445173264, -0.005146298557519913, 0.00676359748467803, -0.054017018526792526, -0.0057656895369291306, 0.025953250005841255, -0.05184532701969147, 0.016654737293720245, -0.020646369084715843, -0.03817284107208252, -0.016899434849619865, -0.020218146964907646, -0.010483766905963421, 0.003829136723652482, 0.0045880819670856, -0.0415986105799675, 0.005448347423225641, -0.05774865671992302, -0.038111668080091476, 0.007795915938913822, -0.02115105837583542, -0.013343671336770058, -0.0009415126405656338, 0.0644778460264206, -0.019376998767256737, -0.014230701141059399, -0.02632029727101326, 0.03823401778936386, 0.006507429759949446, -0.0008110390626825392, -0.01709825173020363, 0.0009505932102911174, -0.030357809737324715, 0.04401499778032303, 0.003574880538508296, 0.033462412655353546, -0.011730195954442024, -0.017281774431467056, -0.011386089958250523, 0.005910979118198156, 0.0006303833215497434, -0.024775642901659012, -0.05071359872817993, -0.005020126234740019, -0.01824527233839035, -0.007272109854966402, 0.04013042524456978, 0.0021544867195189, -0.02180868200957775, -0.0040986863896250725, -0.01106492429971695, -0.028889622539281845, 0.005543932318687439, 0.021976912394165993, -0.010307890363037586, -0.01919347606599331, -0.0609603151679039, 0.042944446206092834, -0.008671474643051624, 0.031749527901411057, 0.014903619885444641, 0.0318107008934021, 0.006637425161898136, -0.00978790782392025, 0.012754867784678936, 0.0030376925133168697, 0.012242532335221767, -0.0036838473752141, -0.014184820465743542, -0.015010674484074116, -0.017557060346007347, -0.02746731787919998, 0.02226749062538147, -0.03704111650586128, 0.006824771873652935, -0.01625710353255272, -0.021411048248410225, 0.009428508579730988, 0.010491413995623589, -0.02205338142812252, -0.026366177946329117, 0.013641896657645702, -0.011684315279126167, 0.007952675223350525, -0.005429230164736509, 0.02691674791276455, -0.0030740147922188044, 0.011072571389377117, -0.00716505479067564, 0.009566150605678558, 0.019759340211749077, 0.010208481922745705, 0.026733223348855972, 0.047593701630830765, -0.0037144345697015524, 0.03499177098274231, 0.003762227250263095, 0.006996824871748686, 0.05903331935405731, -0.009061462245881557, -0.017985280603170395, 0.033462412655353546, 0.030388396233320236, -0.002418301533907652, 0.03376828134059906, -0.01566065289080143, 0.03471648693084717, -0.0009673206368461251, 0.02604501135647297, -0.002041696570813656, -0.038111668080091476, 0.0102390693500638, 0.03716346248984337, -0.0060295043513178825, -0.02107458934187889, 0.018260566517710686, 0.008182079531252384, 0.018780548125505447, -0.029516659677028656, -0.008939112536609173, 0.002278747269883752, 0.01426128763705492, 0.030770735815167427, 0.0007030279957689345, -0.022833354771137238, -0.0487254299223423, -0.005375702865421772, -0.02904255874454975, -0.018795842304825783, 0.03688817843794823, -0.02034049667418003, -0.004561318084597588, 0.031688351184129715, -0.00857971329241991, -0.021655747666954994, -0.011929012835025787, -0.02341451123356819, -0.0005782895023003221, -0.021961618214845657, 0.038325779139995575, -0.04291386157274246, -0.02933313697576523, 0.028935503214597702, 0.03722463920712471, -0.007830326445400715, 0.019698165357112885, -0.04597258195281029, -0.011929012835025787, 0.027803776785731316, -0.006251261569559574, 0.004408381879329681, -0.001911700819619, 0.015347134321928024, -0.024913284927606583, 0.03948809206485748, 0.004144567530602217, 0.006893593352288008, -0.010934928432106972, -0.0018667757976800203, -0.00812855176627636, -0.02341451123356819, -0.012938391417264938, -0.002794906497001648, -0.0030472511425614357, -0.004075746051967144, 0.02139575593173504, -0.0050124796107411385, -0.030587213113904, -0.03866223618388176, 0.011493145488202572, -0.006037150975316763, 0.06300965696573257, 0.001602005329914391, -0.017006490379571915, 0.005608930252492428, -0.006767421029508114, -0.013466020114719868, 0.009076755493879318, -0.017633527517318726, -0.0364905446767807, -0.031046021729707718, 0.04432087019085884, 0.0039304569363594055, 0.010109073482453823, -0.0066794827580451965, -0.02841552160680294, 0.03896810859441757, -0.029195494949817657, 0.027237912639975548, 0.02792612463235855, -0.04065040498971939, -0.026993215084075928, 0.02079930528998375, -0.03887634724378586, 0.010109073482453823, 0.03386004641652107, 0.013022505678236485, -0.020982827991247177, -0.012334293685853481, 0.037622272968292236, 0.012502523139119148, -0.01764882169663906, 0.002666822634637356, -0.019805220887064934, -0.015400662086904049, 0.0016775174299255013, 0.005169238895177841, 0.005949212703853846, -0.01680767349898815, 0.009497329592704773, -0.01740412414073944, -0.0160124059766531, 0.00938262790441513, -0.02716144546866417, 0.025708552449941635, 0.036368194967508316, 0.005685398355126381, 0.0030281341169029474, -0.007432692684233189, 0.0009329100139439106, 0.035603515803813934, -0.0041598607785999775, 0.004633962642401457, -0.011974893510341644, -0.016104167327284813, -0.025005046278238297, 0.02205338142812252, -0.0013668660540133715, 0.006924180313944817, -0.028017887845635414, 0.013748952187597752, -0.020921653136610985, 0.026993215084075928, -0.03410474210977554, 0.01412364561110735, -0.002685939660295844, -0.007860913872718811, -0.023858025670051575, 0.0006839109701104462, -0.022558068856596947, -0.005325998645275831, 0.0023953611962497234, 0.009122636169195175, 0.012081949040293694, 0.02376626431941986, 0.0011661375174298882, -0.00954321026802063, -0.0318107008934021, 0.034624725580215454, -0.029791945591568947, 0.003376063657924533, 0.03817284107208252, -0.02240513265132904, 0.03410474210977554, 0.021411048248410225, 0.017327656969428062, 0.025402680039405823, 0.00588039169088006, -0.00868676882237196, -0.039793964475393295, -0.02974606491625309, 0.02003462426364422, -0.026748517528176308, 0.012341940775513649, -0.02684027887880802, -0.012273118831217289, 0.02107458934187889, -0.039549265056848526, -0.02020285464823246, 0.010407298803329468, 0.0021869856864213943, 0.012938391417264938, 0.03379886969923973, -0.024439183995127678, 0.03121425025165081, -0.0160124059766531, 0.03740816190838814, 0.009703793562948704, 0.012143123894929886, -0.008357956074178219, -0.006713893264532089, 0.028094355016946793, 0.03753051161766052, -0.009336746297776699, 0.006966237910091877, -0.03020487353205681, 0.007505337242037058, 0.00713064381852746, 0.025326212868094444, -0.04040570929646492, 0.018031161278486252, 0.020508727058768272, 0.0005156812840141356, 0.030541332438588142, -0.01293074432760477, 0.021625159308314323, -0.003712523030117154, 0.02017226628959179, 0.043984413146972656, 0.019422879442572594, -0.007539748214185238, 0.019759340211749077, -0.03309536352753639, 0.03554234281182289, 0.0015274489996954799, 0.023032171651721, 0.01772529073059559, -0.0195758156478405, 0.00255976733751595, 0.009390274062752724, 0.030220165848731995, -0.012028421275317669, -0.004744841251522303, -0.011661374941468239, -0.012800748459994793, -0.022940410301089287, -0.03285066783428192, 0.010323184542357922, -0.009237337857484818, 0.0140165900811553, 0.018688786774873734, -0.009466742165386677, 0.02544856071472168, 0.015110082924365997, 0.02876727469265461, -0.0060906787402927876, 0.01660885661840439, 0.00628184899687767, 0.014223054051399231, 0.02925666980445385, 0.03069426864385605, -0.03434944152832031, 0.007922087796032429, 0.022236904129385948, 0.0060906787402927876, 0.0021353696938604116, -0.0336153469979763, -0.016593562439084053, 0.01936170645058155, 0.01636415906250477, 0.002439330331981182, 0.018780548125505447, -0.012999565340578556, 0.008396189659833908, 0.021334581077098846, 0.004396911710500717, -0.005865097977221012, 0.017694702371954918, 0.02142634242773056, 0.009099695831537247, -0.01445245835930109, -0.00384443043731153, -0.016731206327676773, 0.024316834285855293, -0.016715912148356438, -0.0002650095266290009, -0.022313371300697327, 0.007153584621846676, -0.008243253454566002, 0.014773624017834663, -0.0068477122113108635, -0.026243828237056732, -0.03410474210977554, -0.03352358564734459, 0.00680565508082509, -0.02705438993871212, 0.004305150359869003, -0.047379594296216965, 0.022879235446453094, -0.020875772461295128, 0.0030357809737324715, -0.015981819480657578, 0.03428826481103897, -0.024561531841754913, 0.025662671774625778, -0.004293680191040039, -0.024056842550635338, 0.008029143325984478, -0.051294755190610886, 0.060348570346832275, -0.019866395741701126, -0.009367333725094795, -0.012219591997563839, 0.013259557075798512, -0.02164045348763466, 0.0270238034427166, 0.01908642053604126, -0.018015868961811066, 0.006270378828048706, 0.0019862570334225893, 0.0206922497600317, 0.021793389692902565, -0.0030300458893179893, -0.002156398491933942, 0.02321569435298443, -0.0037373751401901245, 0.011332562193274498, -0.01656297594308853, 0.009474389255046844, -0.020921653136610985, 0.014460104517638683, -0.026274416595697403, 0.01130962185561657, -0.024454476311802864, -0.01772529073059559, -0.03300360217690468, 0.020371083170175552, -0.0015446542529389262, -0.005333645269274712, -0.009719086810946465, 0.007023588754236698, 0.024454476311802864, -0.018933484330773354, 0.025708552449941635, 0.012739574536681175, -0.005578342825174332, -0.021120470017194748, 0.003117983927950263, -0.004905424080789089, 0.018933484330773354, -0.026259122416377068, 0.006855359300971031, 0.0048098391853272915, 0.015056555159389973, -0.03590938821434975, 2.300014966749586e-05, -0.008633241057395935, 0.02953195385634899, -0.010866107419133186, -0.006369787268340588, 0.03072485513985157, 0.04172096028923988, -0.022206315770745277, 0.03321771323680878, 0.01992756873369217, 0.005830687470734119, -0.012678399682044983, 0.022955702617764473, 0.029654303565621376, 0.00047242906293831766, 0.03386004641652107, -0.0086179468780756, -0.0015752414474263787, 0.0019260385306552052, -0.011217860504984856, 0.006224497687071562, 0.03257538005709648, 0.012540757656097412, -0.010996103286743164, 0.03422709181904793, 0.004297503270208836, 0.022206315770745277, 0.003052986226975918, 0.013121914118528366, 0.037132877856492996, -0.01786293275654316, -0.035358816385269165, 0.003204010659828782, 0.00394192710518837, -0.03753051161766052, -0.0067406571470201015, -0.020019330084323883, -0.04505496472120285, 0.0008344574016518891, -0.02009579911828041, 0.025632085278630257, -0.03064838796854019, 0.042730335146188736, 0.019881688058376312, -0.016838259994983673, 0.02034049667418003, 0.0147353895008564, 0.010024959221482277, -0.007750035263597965, -0.0010571705643087626, 0.0318107008934021, -0.030816616490483284, 0.004859543405473232, 0.00398398470133543, -0.01433010958135128, -0.005375702865421772, 0.03153541684150696, -0.01212782971560955, 0.028079060837626457, 0.03948809206485748, 0.005421583540737629, -0.00463013956323266, 0.015370074659585953, -0.013833067379891872, -0.013603663071990013, 0.00893146637827158, -0.02254277653992176, -0.00019750259525608271, 0.01108021754771471, 0.023154519498348236, -0.010552588850259781, 0.02275688573718071, 0.0005558269913308322, -0.03997748717665672, 0.0303731020539999, 0.0064003742299973965, -0.01715942658483982, 0.00857971329241991, 0.031260132789611816, 0.022802766412496567, -6.583419599337503e-05, -0.0024603588972240686, 0.01737353764474392, -0.0031084255315363407, 0.02020285464823246, -0.020080504938960075, 0.013519547879695892, -0.013290143571794033, -0.0008162962622009218, -0.004523084033280611, -0.019973449409008026, 0.024347420781850815, 0.014788917265832424, -0.002945930929854512, -0.0338294580578804, 0.041231561452150345, -0.020753424614667892, -0.06625190377235413, -0.006220674607902765, -0.011095511727035046, -0.01688414067029953, -0.013970709405839443, 0.009986724704504013, 0.017709996551275253, 0.03398239240050316, 0.05918625742197037, 0.007646803278476, -0.017664115875959396, -0.005930095911026001, 0.02384273335337639, -0.018321741372346878, 0.018994659185409546, -0.017465298995375633, 0.036857590079307556, -0.003507971065118909, 0.011301974765956402, 0.011561966501176357, -0.0253720935434103, -0.020508727058768272, 0.019025245681405067, -0.022558068856596947, -0.0013582634273916483, -0.01884172298014164, 0.0001023357326630503, 0.031902462244033813, -0.0031543064396828413, -0.010950222611427307, -0.005792453419417143, -0.021625159308314323, 0.015209491364657879, -0.005322175100445747, 0.0071268207393586636, -0.0007417399319820106, 0.028339052572846413, -0.011959600262343884, -0.0020799303892999887, -0.013466020114719868, 0.033890631049871445, -0.0027375556528568268, 0.006488312501460314, -0.042455051094293594, 0.010055546648800373, -0.00356532190926373, -0.007845619693398476, 0.007516807410866022, -0.0018036897527053952, -0.016792379319667816, 0.0023093344643712044, -0.039824552834033966, -0.03985513746738434, -0.03909045830368996, -0.00013656711962539703, -0.005815393757075071, -0.01775587722659111, -0.011057277210056782, 0.018719375133514404, 0.00042344172834418714, -0.030296634882688522, -0.041506849229335785, -0.035358816385269165, 0.012273118831217289, -0.0560663603246212, -0.00370487617328763, -0.008755589835345745, 0.028996678069233894, 0.02879786118865013, 0.00926027912646532, 0.02512739598751068, -0.013810127042233944, 0.009764967486262321, 0.06686364859342575, -0.0032881253864616156, -0.00042702615610323846, -0.037316400557756424, -0.027727307751774788, 0.004286033101379871, -0.01518655102699995, -0.006350670009851456, 0.037622272968292236, -0.010055546648800373, 0.016195928677916527, 0.01796998828649521, -0.01900995336472988, -0.017939399927854538, 0.015813589096069336, 0.029103733599185944, -0.0010667290771380067, 0.00587274506688118, 0.022711005061864853, -0.033890631049871445, 0.004817485809326172, -0.010651997290551662, -0.02194632589817047, -0.012594284489750862, -0.008977347053587437, -0.008755589835345745, -0.010200835764408112, -0.02684027887880802, 0.0415986105799675, -0.006098325364291668, -0.006794184446334839, -0.01094257552176714, 0.0015121552860364318, 0.01566065289080143, -0.009573797695338726, -0.002930637449026108, -0.0039304569363594055, 0.016272397711873055, 0.0034888540394604206, 0.002223307965323329, -0.002418301533907652, 0.0007493867306038737, -0.014322462491691113, -0.0038559006061404943, -0.0172358937561512, 0.0011680491734296083, 0.009535563178360462, -0.0056280470453202724, -0.007142114453017712, 0.01758764684200287, -0.015783002600073814, 0.009275572374463081, 0.003140924498438835, 0.03817284107208252, -0.0011814311146736145, -0.01256369799375534, -0.021135764196515083, -0.009795554913580418, 0.023934494704008102, 0.02401096187531948, -0.012816042639315128, -0.0013190736062824726, -0.04211859405040741, -0.011539026163518429, -0.027360262349247932, 0.0020111091434955597, 0.060562681406736374, -0.011118452064692974, -0.021686334162950516, -0.02873668633401394, -0.010927282273769379, 0.023965081200003624, -0.019881688058376312, 0.022665124386548996, -0.013833067379891872, 0.00882441084831953, -0.0006776979425922036, -0.015783002600073814, 0.01618063636124134, 0.006652718875557184, 0.016960609704256058, -0.0011938571697100997, -0.009780261665582657, -0.030816616490483284, -0.011607847176492214, -0.031718939542770386, -0.022206315770745277, -0.011462558060884476, -0.049581870436668396, 0.03814225271344185, 0.022955702617764473, 0.010529648512601852, -0.001596270129084587, 0.0078991474583745, 0.010751405730843544, 0.027849657461047173, -0.02254277653992176, 0.0043625012040138245, -0.0023456569761037827, -0.018122924491763115, -0.014406577683985233, 0.013947769068181515, 0.028599044308066368, -0.01628769002854824, -0.011737843044102192, 0.043709129095077515, -0.01688414067029953, -0.026014424860477448, -0.009604385122656822, -0.04006924852728844, -0.013573075644671917, 0.006962414365261793, 0.029929587617516518, 0.014429518021643162, 0.0028254936914891005, -0.004140743985772133, -0.018719375133514404, -0.014161879196763039, 0.008885585702955723, 0.015844175592064857, 0.003896046197041869, -0.00547893438488245, -0.00231506978161633, -0.06680247187614441, -0.004263092763721943, -0.0036207614466547966, 0.021212231367826462, 0.012586638331413269, -0.017281774431467056, 0.016302984207868576, 0.02635088376700878, -0.013817773200571537, 0.022741593420505524, -0.01038435846567154, -0.01631827838718891, 0.037836384028196335, 0.02020285464823246, 0.015370074659585953, 0.01688414067029953, -0.00740975234657526, -0.01680767349898815, 0.01127138826996088, -0.008549125865101814, -0.022986290976405144, -0.0109578687697649, 0.04435145854949951, -0.0077615054324269295, -0.014850092120468616, 0.03593997657299042, -0.013366611674427986, 0.012464289553463459, -0.0291496142745018, -0.03300360217690468, 0.019285237416625023, -0.0034085626248270273, -0.010629056952893734, -0.006782714277505875, 0.010965515859425068, 0.015140670351684093, 0.016104167327284813, 0.004741018172353506, 0.040283359587192535, 0.01366483699530363, -0.004920717794448137, 0.013573075644671917, 0.0043166205286979675, -0.0019260385306552052, 0.0069088866002857685, -0.006297142244875431, 0.016685323789715767, -0.022496895864605904, -0.020753424614667892, -0.004091039765626192, 0.0005515256780199707, 0.006469195708632469, -0.00012665017857216299, -0.015844175592064857, 0.017419418320059776, -0.00788385421037674, 0.00833501573652029, -0.008388543501496315, -0.005066007375717163, 0.0005333645385690033, 0.02052401937544346, 0.023536860942840576, -0.003509882604703307, -0.012043715454638004, -0.0063391998410224915, -0.001844791229814291, -0.0057045151479542255, 0.01954522915184498, -0.002857992658391595, -0.0008602653397247195, 0.02153339795768261, -0.02618265338242054, 0.01758764684200287, 0.015461836010217667, -0.0026553524658083916, -0.014796564355492592, 0.020539313554763794, 0.0006083987536840141, 0.021196939051151276, -0.01960640400648117, -0.025402680039405823, 0.015056555159389973, 0.01946876011788845, 0.01420776080340147, -0.022818060591816902, -0.012395467609167099, -0.019514642655849457, -0.01685355417430401, -0.011301974765956402, 0.0034257678780704737, 0.016654737293720245, -0.0008812940795905888, 0.03704111650586128, 0.022711005061864853, -0.018994659185409546, 0.05784041807055473, -0.0006107884109951556, -0.029271962121129036, 0.0009080579038709402, -0.005616576876491308, -0.006266555283218622, -0.022282784804701805, -0.022099262103438377, -0.021518103778362274, 0.0017434711335226893, -0.019239356741309166, 0.010154955089092255, 0.020386377349495888, -0.0011068747844547033, -0.015981819480657578, -0.017251187935471535, 0.01667003147304058, -0.0192546509206295, 0.009657912887632847, -0.007440339773893356, 0.01082022674381733, 0.0042210351675748825, 0.006690952926874161, -0.019942862913012505, 0.002548297168686986, -0.0031103373039513826, 0.014865385368466377, -0.025953250005841255, -0.05493463575839996, -0.006905063521116972, -0.011592553928494453, -0.00950497668236494, -0.009550857357680798, 0.013137208297848701, 0.021548692137002945, -0.004576611798256636, 0.0045460243709385395, -0.011829604394733906, 0.009527917020022869, -0.014437164179980755, 0.012418408878147602, 0.015094789676368237, -0.03230009600520134, 0.020462846383452415, -0.036062322556972504, 0.031091902405023575, -0.0008239430608227849, 0.021992206573486328, 0.01569123938679695, -0.0077423881739377975, -0.005161592271178961, -0.021365167573094368, -0.013779539614915848, -0.002280659042298794, 3.4500226320233196e-05, -0.013886595144867897, 0.027604959905147552, 0.030250754207372665, 0.00014708147500641644, 0.00926027912646532, -0.026549700647592545, -0.011485498398542404, 0.004561318084597588, 0.009719086810946465, -0.009925550781190395, -0.02463800087571144, -0.0007240566774271429, 0.0011651816312223673, -0.02156398445367813, 0.007180348038673401, -0.014880679547786713, -0.016333572566509247, -0.008480304852128029, -0.006863005924969912, 0.016058286651968956, -0.0008631329401396215, -0.0004898733459413052, -0.0122348852455616, 0.012823688797652721, 0.007891501300036907, -0.004530731122940779, -0.01307603344321251, -0.025769727304577827, 0.025647377595305443, 0.010009665042161942, -0.004328090697526932, 0.03023546002805233, -0.006063914857804775, 0.012158417142927647, 0.0001106994241126813, -0.009405568242073059, -0.005280117504298687, -0.0010447445092722774, -0.009535563178360462, 0.0210134144872427, 0.015056555159389973, -0.003498412435874343, -0.009948491118848324, -0.0115160858258605, -0.011210213415324688, 0.008610300719738007, 0.018122924491763115, 0.020264029502868652, -0.01424599438905716, -0.011240800842642784, 0.007084763143211603, 0.004848073236644268, 0.008113258518278599, 0.008350308984518051, -0.020952241495251656, 0.004737194627523422, -0.006190087180584669, 0.0210134144872427, 0.019881688058376312, -0.009145576506853104, -0.0022538951598107815, -0.02289452962577343, 0.0020091976039111614, -0.01783234439790249, 0.014880679547786713, -0.025876782834529877, 0.010353771969676018, -0.006113619077950716, 0.010690230876207352, -0.017557060346007347, 0.013098973780870438, -0.006209204439073801, 0.017679408192634583, -0.01120256632566452, 0.019346412271261215, 0.009696146473288536, 0.01754176616668701, -0.0823407769203186, 0.01663944311439991, 0.013290143571794033, 0.005838334094733, -0.003305330639705062, 0.010629056952893734, -0.0026591757778078318, 0.005807747133076191, -0.004190448205918074, 0.005455994047224522, -0.0010552587918937206, 0.011386089958250523, -0.022496895864605904, -0.01291545107960701, -0.02768142707645893, -0.016195928677916527, -0.013748952187597752, 0.038081079721450806, -0.004435145761817694, -0.009803202003240585, -0.020875772461295128, -0.0031695999205112457, 0.0021181644406169653, -0.0004970422014594078, -0.014146585948765278, -0.01317544188350439, -0.008870291523635387, -0.007914441637694836, -0.012976625002920628, -0.002116252901032567, -0.004534554202109575, 0.001222532708197832, -0.006950944196432829, 0.010858460329473019, 0.03676582872867584, 0.028813155367970467, -0.019025245681405067, 0.020875772461295128, -0.00687829963862896, -0.015041261911392212, 0.026748517528176308, 0.01303779985755682, -0.012754867784678936, 0.021716920658946037, -0.010086133144795895, -0.024760348722338676, -0.0033091541845351458, -0.012242532335221767, 0.004427499137818813, 0.009573797695338726, -0.021548692137002945, 0.0011890778550878167, 0.025632085278630257, -0.031229544430971146, -0.01862761192023754, -0.013251909986138344, 0.01998874358832836, 0.002307422924786806, 0.010208481922745705, -0.010873754508793354, -0.004851896781474352, 0.02963900938630104, -0.0036264965310692787, -0.007642979733645916, 0.015408308245241642, 0.03630702197551727, -0.007662096992135048, 0.004985715728253126, -0.027100270614027977, 0.0020818421617150307, 0.004335737321525812, 0.028706099838018417, -0.008396189659833908, 0.024133311584591866, -0.011569613590836525, -0.006132736336439848, -0.02775789611041546, -0.012227238155901432, -0.00023083787527866662, 0.004614845849573612, -0.018015868961811066, -0.0050545367412269115, 0.019315825775265694, 0.023368630558252335, 0.015178904868662357, -0.01709825173020363, -0.02153339795768261, -0.0007168878219090402, 0.019529934972524643, -2.658459015947301e-05, -0.015844175592064857, -0.030143698677420616, -0.028920209035277367, 0.012823688797652721, -0.019132301211357117, 0.04086451604962349, -0.008541478775441647, -0.054475825279951096, -0.022007498890161514, -0.004893953911960125, -0.017450004816055298, 0.007019765209406614, 0.0008841616217978299, -0.028461402282118797, 0.01615004800260067, -0.013068386353552341, -0.01894877851009369, 0.009780261665582657, -0.011416677385568619, -0.01796998828649521, -0.0024832994677126408, -0.022940410301089287, 0.007035058923065662, 0.015706533566117287, 0.0026591757778078318, -0.001797954668290913, -0.019621696323156357, 0.021854564547538757, 0.015285959467291832, 0.019422879442572594, 0.04474909231066704, 0.02586148865520954, -0.012900156900286674, 0.022099262103438377, 0.00394957372918725, 0.011240800842642784, -0.012831335887312889, -0.004897777456790209, 0.024806229397654533, 0.0018629524856805801, 0.015523010864853859, -0.014873032458126545, -0.033370647579431534, -0.005215120036154985, 0.0020130209159106016, 0.017801757901906967, 0.0031772467773407698, -0.005211296491324902, -0.002288305899128318, 0.02778848260641098, -0.021334581077098846, 0.0005300190532580018, -0.024026256054639816, 0.006560957059264183, 0.003314889268949628, -0.01702178455889225, 0.0009505932102911174, -0.008939112536609173, 0.0023743323981761932, 0.0010466561652719975, 0.01615004800260067, -0.018658200278878212, -0.011424324475228786, 0.020432258024811745, 0.019346412271261215, -0.03419650346040726, -0.009841435588896275, -0.010621409863233566, 0.010613762773573399, -0.022527482360601425, 0.008832057937979698, 0.023032171651721, -0.009267925284802914, -0.02072283625602722, 0.011906072497367859, -0.003588262479752302, 0.014184820465743542, 0.01199018768966198, 0.01518655102699995, -0.010667290538549423, 0.0037775207310914993, -0.0564945824444294, 0.0053795259445905685, -0.0013104708632454276, 0.012204297818243504, -0.004821309354156256, 0.023720383644104004, -0.014666568487882614, 0.025188568979501724, 0.021579278632998466, 0.010132014751434326, -0.004431322682648897, -0.055668726563453674, -0.018566438928246498, -0.010407298803329468, -0.0271308571100235, -0.016930023208260536, -0.009367333725094795, -0.004450439475476742, 0.005245706997811794, 0.01740412414073944, 0.007860913872718811, -0.033431824296712875, -0.007153584621846676, -0.0072529930621385574, -0.0006533237756229937, -0.0147353895008564, -0.003773697419092059, 0.005008656065911055, -0.023750970140099525, 0.009359687566757202, 0.006037150975316763, 0.00203213794156909, -0.01082022674381733, 0.006201557349413633, -0.005888038314878941, -0.00203596125356853, 0.05407819151878357, -0.03551175445318222, 0.018168805167078972, -0.016593562439084053, -0.0025980013888329268, -0.03697993978857994, -0.025647377595305443, -0.012189004570245743, 0.006105972453951836, -0.015018321573734283, 0.01057552918791771, -0.028323758393526077, 0.03407415375113487, -0.02107458934187889, 0.04823603481054306, 0.02027932181954384, -0.014850092120468616, -0.00938262790441513, -0.004458086099475622, -0.0016058286419138312, -0.0028885798528790474, 0.0022194846533238888, -0.01949934847652912, 0.007398282177746296, -0.011447264812886715, 0.027528490871191025, 0.016593562439084053, 0.0016803849721327424, 0.010032606311142445, 0.01354248821735382, -0.006388904061168432, 0.018260566517710686, 0.043464429676532745, -0.023338044062256813, -0.00814384501427412, 0.0007575114723294973, 0.007237699348479509, -0.005410113371908665, -0.0024431536439806223, -0.006381257437169552, 0.006545663345605135, -0.002670645946636796, -0.010086133144795895, 0.000802436436060816, -0.003775609191507101, 0.00781885627657175, 0.021548692137002945, 0.0013764245668426156, -0.005823040846735239, 0.0011929012835025787, 0.008243253454566002, -0.009826142340898514, 0.024668587371706963, -0.02052401937544346, -0.021059297025203705, -0.013863653875887394, -0.011370796710252762, 0.004928364884108305, 0.013519547879695892, 0.0035634103696793318, -0.0014366431860253215, -0.006629778537899256, 0.003127542557194829, -0.012869569472968578, 0.015614772215485573, -0.010682583786547184, -0.009589090943336487, -0.027834363281726837, -0.03275890648365021, 0.0015857558464631438, 0.011898425407707691, -0.0008803382515907288, 0.015240078791975975, 0.01656297594308853, 0.010269656777381897, -0.009566150605678558, -0.017572354525327682, 0.004335737321525812, -0.00684388866648078, -0.009573797695338726, -0.016165342181921005, 0.010812579654157162, 0.017312362790107727, 0.011103157885372639, -0.016792379319667816, 0.007142114453017712, -0.010392005555331707, -0.012104889377951622, -0.004209564998745918, -0.014291875064373016, 0.007922087796032429, 0.007585628889501095, 0.010323184542357922, 0.009680853225290775, -0.008595006540417671, -0.012785455211997032, -0.014360696077346802, 0.004144567530602217, 0.002370509086176753, 0.004645432811230421, 0.025249743834137917, 0.00974967423826456, -0.009329100139439106, -0.0033454764634370804, 0.012311353348195553, 0.009030874818563461, -0.03618467226624489, 0.016104167327284813, -0.001720530679449439, -0.011110804975032806, 0.004672196693718433, 0.057687483727931976, -0.00648448895663023, -0.010369065217673779, -0.001976698637008667, -0.01050670724362135, -0.019453467801213264, -0.0009740115492604673, 0.01845938339829445, 0.027528490871191025, -0.011355502530932426, 0.008013850077986717, -0.019239356741309166, 0.008747942745685577, -0.002934460761025548, -0.02482152357697487, 0.031688351184129715, 0.021931031718850136, 0.021518103778362274, -0.008916172198951244, 0.0005481801927089691, 0.008426777087152004, 0.007845619693398476, -0.0098949633538723, 0.01106492429971695, -0.007837973535060883, 0.013458373956382275, 0.004232505802065134, 0.023567447438836098, -0.01699119620025158, 0.012525463476777077, 0.01702178455889225, -0.009589090943336487, -0.024806229397654533, -0.008572066202759743, -0.0037392866797745228, 0.0031485711224377155, -0.004324267152696848, 0.004886307287961245, -0.016104167327284813, 0.01319838222116232, -0.01043024007230997, -0.018337033689022064, 0.007226229179650545, 0.018933484330773354, -0.013068386353552341, -0.0046416097320616245, 0.008029143325984478, -0.004840426612645388, 0.00026692121173255146, 0.0036398782394826412, -0.009290865622460842, -0.013596015982329845, 0.02433212846517563, 0.012923097237944603, 0.018229978159070015, -0.0035997326485812664, 0.0038750176317989826, -0.002546385396271944, -0.009948491118848324, 0.004435145761817694, -0.021242819726467133, -0.009160870686173439, -0.010445533320307732, -0.030051937326788902, 0.011301974765956402, -0.01412364561110735, -0.013550135307013988, -0.022175729274749756, 0.009306159801781178, -0.0033492997754365206, -0.01537772174924612, 0.015584184788167477, 0.0053030578419566154, -0.005150122102349997, 0.0018686875700950623, 0.020921653136610985, -0.0011862103128805757, 0.010369065217673779, 0.004576611798256636, -0.00651889992877841, -0.00600274046882987, -0.001212018309161067, -0.006996824871748686, -0.025509735569357872, 0.022359251976013184, 0.0031504828948527575, 0.023934494704008102, -0.015530657023191452, 0.0098949633538723, -0.02352156676352024, -0.008113258518278599, -4.280417488189414e-05, -0.010781992226839066, 0.009879670105874538, 0.008977347053587437, -0.002871374599635601, -0.0018734667683020234, 0.009153223596513271, -0.006297142244875431, -0.011714902706444263, -0.0070312353782355785, 0.021594572812318802, 0.012640166096389294, 0.012426055036485195, 0.011577259749174118, -0.008854998275637627, 0.02950136736035347, -0.005360409151762724, -0.022940410301089287, -0.0068477122113108635, -0.0020837539341300726, -0.0005969285848550498, -0.008105611428618431, 0.010996103286743164, -0.02041696384549141, 0.0007288359338417649, 0.026412058621644974, -0.0038023728411644697, -0.023322749882936478, -0.01562241930514574, -0.00648448895663023, 0.009000287391245365, 0.01307603344321251, -0.0038023728411644697, 0.015209491364657879, -0.009092048741877079, -0.02534150518476963, -0.007413575891405344, -0.006629778537899256, -0.001990080578252673, 0.006094502285122871, 0.026243828237056732, 0.014062470756471157, 0.0033990039955824614, 0.019667578861117363, -0.00020180392311885953, 0.006534193176776171, 0.002085665473714471, -0.006128912791609764, -0.006698599550873041, 0.025463854894042015, -0.02006521262228489, 0.007317990530282259, 0.01740412414073944, 0.002624765271320939, 0.015025968663394451, -0.01919347606599331, -0.006396550685167313, -0.005448347423225641, -0.012196650728583336, 0.03370710834860802, -0.025433268398046494, 0.010866107419133186, 0.0020569900516420603, 0.013083680532872677, 0.006809478159993887, -0.02792612463235855, 0.024668587371706963, 0.0004325222980696708, -0.004775428678840399, 0.022909821942448616, -0.02289452962577343, -0.011485498398542404, -0.006924180313944817, -0.00384443043731153, 0.022038087248802185, -0.0025330036878585815, 0.03118366375565529, 0.02086048014461994, 0.010651997290551662, 0.012028421275317669, -0.00535658560693264, -0.002114341128617525, -0.023261575028300285, 0.013450726866722107, 0.018581731244921684, -0.0032613615039736032, -0.003498412435874343, -0.006140382960438728, 0.0043777949176728725, -0.002569325966760516, -0.009443801827728748, 0.0071727014146745205, -0.022986290976405144, -0.019407587125897408, -0.009283219464123249, -0.009252632036805153, -0.0060906787402927876, -0.006465372163802385, 0.0033015073277056217, -0.016211222857236862, 0.022206315770745277, -0.004890130832791328, 0.0026075600180774927, -0.016715912148356438, -0.0005080344853922725, 0.00987202301621437, 0.0070656463503837585, 0.0036532601807266474, -0.003896046197041869, -0.004656902980059385, 0.0008822499075904489, 0.011485498398542404, -0.0015781089896336198, -0.010024959221482277, 0.004985715728253126, -0.012609578669071198, -0.007161231245845556, -0.009742027148604393, 0.011156685650348663, -0.04068099334836006, -0.0022711006458848715, 0.005310704931616783, -0.008411483839154243, -0.025249743834137917, 0.018122924491763115, 0.032177746295928955, 0.00013632816262543201, 0.007363871671259403, 0.008793823421001434, 0.017419418320059776, 0.009000287391245365, 0.0026629993226379156, 0.006033327896147966, -0.021900445222854614, -0.0019097891636192799, -0.01034612488001585, 0.008510892279446125, 0.027987299486994743, -0.01810763031244278, 0.023582741618156433, -0.0022080144844949245, -0.024378009140491486, 0.0020569900516420603, 0.01200548093765974, 0.0012884862953796983, 0.023123933002352715, 0.004916894715279341, 0.02827787771821022, -0.027008509263396263, -0.01130962185561657, 0.006897416431456804, -0.009757321327924728, 0.0027604959905147552, 0.009114989079535007, -0.004783075302839279, -0.0018294976325705647, -0.010522001422941685, -0.022588657215237617, -3.0378119845408946e-05, -0.014811857603490353, -0.002246248535811901, -0.030006056651473045, -0.008197372779250145, 0.03630702197551727, 0.018306447193026543, 0.012364881113171577, 0.017358243465423584, 0.027727307751774788, -0.01685355417430401, -0.012020775116980076, -0.013328378088772297, -0.011737843044102192, -0.002672557719051838, -0.004767781589180231, 0.024102723225951195, -0.007035058923065662, 0.003175335004925728, 0.010063192807137966, 0.001963316695764661, -0.0035844389349222183, 0.005203649401664734, -0.0017415594775229692, 0.0009262190433219075, -0.0005022994009777904, -0.010040252469480038, -0.006427138112485409, -0.029164908453822136, -0.00028078106697648764, 0.004209564998745918, -0.016822967678308487, 0.012961331754922867, 0.020371083170175552, -0.015997111797332764, -0.00435103103518486, -0.0075588650070130825, -0.013863653875887394, 0.0065571339800953865, -0.0209063608199358, 0.018061749637126923, 0.02009579911828041, -0.013137208297848701, -0.0022749239578843117, 0.009214397519826889, -0.0002996590919792652, 0.013901888392865658, -0.008832057937979698, -0.0005453126505017281, 0.00776915205642581, 0.00849559810012579, -0.02205338142812252, -0.02180868200957775, -0.005203649401664734, -0.009283219464123249, -0.0062933191657066345, 0.006350670009851456, 0.009275572374463081, 0.00599509384483099, -0.007570335175842047, 0.02275688573718071, 0.011561966501176357, 0.0017750142142176628, -0.0018897162517532706, -0.0014939941465854645, -0.008816763758659363, -0.006690952926874161, 0.006040974520146847, 0.021747509017586708, -0.0019289060728624463, 0.015393014997243881, -0.00016787122876849025, 0.013924828730523586, -0.0010514354798942804, -0.00011249164526816458, -0.009795554913580418, -0.005360409151762724, -0.0025846194475889206, 0.022986290976405144, 0.007092410232871771, 0.0013592193135991693, 0.00825090054422617, -0.0027681428473442793, -0.012150770053267479, -0.013955416157841682, -0.00870206207036972, 0.00991025660187006, 0.0034257678780704737, -0.004129273816943169, -0.012311353348195553, -0.012533110566437244, 0.002857992658391595, -0.008725002408027649, 0.0019862570334225893, -0.01663944311439991, 0.008816763758659363, 0.011011396534740925, 0.027390848845243454, -0.008984994143247604, 0.012204297818243504, 0.014345402829349041, -0.006759773939847946, 0.0012426055036485195, 0.007562688551843166, 0.002494769636541605, -0.0008397146011702716, -0.021441636607050896, -0.00880911760032177, -0.002489034552127123, -0.020187560468912125, 0.0011986363679170609, -0.009092048741877079, 0.020141679793596268, -0.01949934847652912, -0.022252198308706284, -0.01960640400648117, 0.010705524124205112, 0.0037220814265310764, 0.016104167327284813, -0.021028708666563034, 0.01036141812801361, -0.002932548988610506, -0.014444811269640923, -0.005956859793514013, -0.009114989079535007, 0.0017520737601444125, 0.009267925284802914, 0.0018199391197413206, -0.0066794827580451965, -1.7369593479088508e-05, -0.010414945892989635, 0.024760348722338676, 0.0171288400888443, -0.008671474643051624, -0.0001653621147852391, 0.014177173376083374, -0.006270378828048706, 0.007512984331697226, 0.010827873833477497, -0.007291227113455534, -0.019621696323156357, -0.005505698267370462, 0.004503967240452766, 0.0027509373612701893, 0.0043089734390378, -0.008847351185977459, 0.008342661894857883, -0.0011173890670761466, 0.003995454870164394, 0.017037076875567436, 0.00231506978161633, 0.00253491522744298, -0.02547914907336235, 0.000507556542288512, 0.01235723402351141, -0.004760134965181351, -0.03798931837081909, 0.0031543064396828413, 0.014544219709932804, 0.025142688304185867, -0.009726733900606632, 0.01800057478249073, 0.009092048741877079, -0.012013128027319908, 0.014605394564568996, 0.005536285694688559, 0.0069891782477498055, 0.009512622840702534, -0.003196363802999258, -0.013496607542037964, -0.010659643448889256, 0.012877216562628746, -0.005085124168545008, 0.018321741372346878, 0.013144854456186295, 0.004836603067815304, -0.004798369016498327, 0.014253641478717327, -0.005046890117228031, -0.004400735255330801, 0.026014424860477448, -0.012150770053267479, 0.011921366676688194, 0.017358243465423584, -0.002550208941102028, -0.003576792310923338, -0.00028556029428727925, 0.0009845258900895715, -0.012257825583219528, -0.022359251976013184, 0.004924541339278221, -0.011676668189466, 0.0008301560883410275, -0.005039243493229151, 0.011730195954442024, 0.010881400667130947, 0.03153541684150696, 0.006067738402634859, 0.018749961629509926, -0.005131004843860865, -0.011279034428298473, 0.00010406821093056351, 0.02642735280096531, 0.00680565508082509, -0.003184893634170294, -0.027880243957042694, 0.00012951773533131927, 0.007719447836279869, 0.008801470510661602, 0.015255372039973736, -0.03477765992283821, -0.0027662310749292374, -0.0019996389746665955, 0.006381257437169552, -0.014850092120468616, -0.006893593352288008, 0.015920644626021385, -0.00849559810012579, 0.015890056267380714, -0.010659643448889256, 0.0009749674354679883, -0.016486506909132004, -0.0021583102643489838, 0.0009376892703585327, -0.014345402829349041, -0.015125377103686333, 0.028400227427482605, 0.009092048741877079, -0.003934280481189489, -0.0007388723897747695, -0.0029076968785375357, -0.016088873147964478, -0.004958951845765114, -0.021747509017586708, 0.00499718589708209, 0.018428795039653778, -0.010728465393185616, 0.0009405568125657737, 0.025754433125257492, 0.01162314135581255, 0.0018811136251315475, 0.009940844029188156, -0.004148390609771013, 0.009589090943336487, -0.01650180108845234, 0.00837324932217598, 0.005647164303809404, 0.01356542855501175, 0.03771403431892395, -0.0018103807233273983, 0.006748303771018982, 0.013328378088772297, -0.015201845206320286, -0.010208481922745705, 0.004553671460598707, 0.0042401524260640144, -0.007119173649698496, -0.014169526286423206, 0.028430813923478127, 0.018015868961811066, 0.016027700155973434, 0.011194920167326927, 0.00519217923283577, -0.01933111809194088, 0.027987299486994743, -0.004075746051967144, 0.006297142244875431, 0.0006232144660316408, 0.01674649864435196, 0.008304428309202194, 1.2351379155006725e-05, 0.013618956319987774, -0.0320248119533062, 0.005654810927808285, 0.0015150229446589947, -0.0027910831850022078, 0.0018237625481560826, 0.003829136723652482, 0.016731206327676773, -0.0017778817564249039, -0.010682583786547184, -0.01291545107960701, 0.012938391417264938, 0.01211253646761179, -0.015783002600073814, -0.011041983962059021, -0.0005109020275995135, 0.015370074659585953, 0.0005128137418068945, 0.028966091573238373, -0.01377189252525568, 0.010392005555331707, 0.001022759941406548, 0.015270666219294071, -0.009229691699147224, -0.010399652644991875, -0.006882122717797756, 0.00494748167693615, -0.010162601247429848, -0.013435433618724346, 0.0006963370251469314, -0.00857971329241991, -0.008036790415644646, 0.032177746295928955, -0.011929012835025787, 0.00833501573652029, -0.011898425407707691, -0.001717663137242198, -0.005272470880299807, 0.00394957372918725, 0.03089308552443981, -0.0019327295012772083, 0.0007512984448112547, 0.01504890900105238, 0.01537772174924612, -0.0029229905921965837, 0.009711439721286297, 0.01249487604945898, 0.005987446755170822, 0.005333645269274712, 0.0027088799979537725, 0.006901239976286888, -0.0011135657550767064, -0.02082989178597927, -0.005673928186297417, 0.02009579911828041, -0.007539748214185238, -0.021273406222462654, 0.00965026579797268, 0.009520269930362701, -0.0020665486808866262, 0.004140743985772133, -0.023154519498348236, -0.015951231122016907, 0.0041598607785999775, 0.010193188674747944, 0.017082957550883293, -0.002370509086176753, 0.0053183515556156635, 0.012487229891121387, -0.03410474210977554, 0.003567233681678772, -0.01677708700299263, 0.00943615473806858, -0.01911700889468193, 0.0018715551123023033, 0.005532462149858475, 6.051727905287407e-05, -0.0104531804099679, -0.008725002408027649, -0.01848996989428997, 0.007195641752332449, 0.008082671090960503, -0.002225219737738371, 5.81873937335331e-05, 0.0021544867195189, -0.009780261665582657, 0.0013267203466966748, -0.02370508946478367, -0.005272470880299807, -0.008556772954761982, -0.008640887215733528, 0.0018056014087051153, 0.026305003091692924, -0.01449069194495678, -0.016761792823672295, 0.002477564150467515, 0.025280332192778587, -0.021028708666563034, 0.008717355318367481, 0.005964506417512894, -0.023995667695999146, -0.015102436766028404, 0.006549486890435219, 0.02020285464823246, -0.01356542855501175, -0.013519547879695892, 0.021059297025203705, 0.00965026579797268, 0.010674937628209591, -0.015530657023191452, 0.027941418811678886, 0.005180709064006805, -0.017358243465423584, -0.023506272584199905, 0.011401383206248283, -0.004695137031376362, -0.024485064670443535, 0.006625954993069172, 0.02058519423007965, -0.005153945181518793, 0.010124367661774158, -0.005249530542641878, -0.003521353006362915, 0.005964506417512894, 0.0005314528243616223, -0.012380174361169338, 0.017190013080835342, -0.00856442004442215, -0.00680565508082509, 0.013496607542037964, -0.02044755220413208, -0.012464289553463459, -0.00015305554552469403, 0.002684027887880802, -0.0091761639341712, -0.019591109827160835, 0.01685355417430401, -0.030250754207372665, 0.011126099154353142, -0.012854276224970818, 0.0017520737601444125, -0.023475686088204384, 0.013228969648480415, 0.01761823520064354, 0.009252632036805153, -0.016134755685925484, 0.006442431826144457, 0.010613762773573399, 0.019912276417016983, -0.02066166326403618, -0.009673206135630608, 0.02645793929696083, -0.01506420224905014, 0.00648448895663023, 0.0027146150823682547, 0.010996103286743164, -0.019636990502476692, -0.002727997023612261, -0.02107458934187889, -0.02996017597615719, -0.014727743342518806, 0.017924107611179352, -0.00825090054422617, 0.007753858342766762, -1.177637568616774e-05, 0.01618063636124134, 0.0022137495689094067, -0.009849082678556442, -0.00471043074503541, 0.015278313308954239, -0.013481314294040203, -0.017144132405519485, -0.015079496428370476, 0.005987446755170822, 0.0265955813229084, 0.011500791646540165, -0.028231997042894363, 0.004412205424159765, -0.0320248119533062, -0.02642735280096531, -0.02632029727101326, -0.011034336872398853, 0.011753136292099953, 0.0050124796107411385, 0.004075746051967144, 0.0004707563202828169, 0.021625159308314323, 0.010216129012405872, 0.008396189659833908, 0.0038654590025544167, 0.003825313411653042, -0.00011010201706085354, 0.0056433407589793205, 0.003511794377118349, -0.005819217301905155, -0.04967363551259041, 0.006266555283218622, -0.007711801212280989, -0.0023360983468592167, 0.008380896411836147, 0.00446573318913579, -0.011019043624401093, -0.0041139801032841206, 0.02082989178597927, 0.01120256632566452, 0.006442431826144457, 0.0019403763581067324, 0.02830846607685089, -0.011569613590836525, 0.015408308245241642, 0.0009615854942239821, 0.008602653630077839, -0.011256094090640545, 0.024439183995127678, -0.0030740147922188044, -0.0021315463818609715, 0.016134755685925484, -0.009764967486262321, 0.024790935218334198, 0.008977347053587437, -0.0336153469979763, -0.01611946150660515, 0.0020550782792270184, 0.003645613556727767, -0.014169526286423206, -0.003896046197041869, -0.009183811023831367, 0.01010142732411623, 0.022955702617764473, 0.020982827991247177, -0.024897990748286247, -0.00370487617328763, 0.012280765920877457, -0.007474750280380249, 0.005062183830887079, -0.019881688058376312, 0.006010387558490038, 4.662757783080451e-05, 0.025677965953946114, 0.029088439419865608, 0.0032823903020471334, 0.04325031861662865, -0.012693692930042744, 0.012533110566437244, -0.03572586551308632, 0.011592553928494453, 0.017633527517318726, -0.01469715591520071, -0.014054824598133564, 0.01884172298014164, 0.0029841649811714888, -0.027696721255779266, -0.0007039838237687945, 0.005410113371908665, -0.009183811023831367, -0.01562241930514574, -0.0019375088158994913, 0.019392292946577072, 0.00905381515622139, 0.014987734146416187, -0.004584258422255516, -0.004798369016498327, -0.03645995631814003, -0.003117983927950263, -0.015155963599681854, -0.012770161032676697, 0.019132301211357117, 0.008013850077986717, -0.0008573977975174785, 0.026610875502228737, 0.003697229316458106, 0.009267925284802914, -0.02003462426364422, -0.0006289495504461229, 0.010598469525575638, -0.0016278132097795606, 0.014008943922817707, -0.010736111551523209, -0.01562241930514574, 0.0029076968785375357, 0.020264029502868652, -0.004091039765626192, 0.01127138826996088, -0.012785455211997032, -0.005708338692784309, 0.004339560866355896, -0.013167794793844223, -0.0016364158364012837, 0.005498051643371582, 0.0050277733244001865, 0.02509680762887001, 0.02082989178597927, -0.0015035526594147086, -0.013488960452377796, 0.007616215851157904, 0.0026515289209783077, 0.011600200086832047, -0.007837973535060883, 0.0011183449532836676, 0.01340484619140625, -0.019147595390677452, -0.014437164179980755, 0.017037076875567436, -0.02082989178597927, -0.04456556960940361, -0.012556050904095173, -0.00612508924677968, -0.001146064605563879, 0.006262731738388538, -0.008862645365297794, -0.0064615486189723015, 0.013550135307013988, 0.00017623491294216365, 0.0045460243709385395, 0.006794184446334839, -0.032667145133018494, 0.014582454226911068, -0.019728751853108406, 0.005295411217957735, -0.0011613582028076053, 0.010674937628209591, -0.016547681763768196, -0.000305633177049458, 0.010193188674747944, -0.015331840142607689, 0.020493432879447937, -0.005467464216053486, -0.006193910725414753, -0.01033083163201809, -0.014391283504664898, -0.009833789430558681, 0.018535850569605827, 0.007344754412770271, 0.005972153507173061, -0.016379453241825104, 0.012089596129953861, -0.022389840334653854, -0.006148029584437609, 0.020156973972916603, 0.010170248337090015, -0.004435145761817694, 0.020049918442964554, 0.020998122170567513, -0.01518655102699995, 0.010690230876207352, -0.029057852923870087, -0.014788917265832424, -0.0018543497426435351, -0.010032606311142445, -0.008839704096317291, -0.01582888327538967, 0.0031447478104382753, -0.0013181177200749516, 0.020814597606658936, 0.013466020114719868, 0.007914441637694836, -0.004848073236644268, 0.004591905511915684, -0.02411801740527153, -0.004683666862547398, -0.02237454615533352, -0.010705524124205112, 0.0271308571100235, 0.014934206381440163, -0.0028885798528790474, 6.081598257878795e-05, -0.0030357809737324715, 0.010904341004788876, -0.0009711440070532262, 0.02373567782342434, 0.010919635184109211, -0.02205338142812252, 0.020462846383452415, -0.0063544935546815395, -0.008289135061204433, 0.0032078339718282223, 0.011454910971224308, 0.004251622594892979, -0.020753424614667892, 0.014865385368466377, 0.0065571339800953865, 0.01611946150660515, 0.005654810927808285, -0.002156398491933942, -0.01810763031244278, -0.009917903691530228, -0.05413936823606491, -0.002877109684050083, 0.0012005481403321028, 0.005570696201175451, -0.01344307977706194, -0.02251218818128109, 0.012257825583219528, -0.012334293685853481, 0.018275858834385872, 0.02034049667418003, 0.018826428800821304, -0.007692683953791857, -0.015324193984270096, 0.0036475250963121653, 0.005937742535024881, -0.00788385421037674, 0.013863653875887394, 0.008533832617104053, -0.005803923588246107, -0.008572066202759743, -0.002682116348296404, 0.0013066475512459874, -0.00704270601272583, -0.00716505479067564, 0.01387894805520773, 0.005368055775761604, 0.006981531158089638, 0.01543124858289957, -0.01356542855501175, -0.019453467801213264, -0.005100417882204056, -0.0035289996303617954, 0.00506983045488596, -0.0003916597052011639, 0.019147595390677452, -0.01225017849355936, 0.012120183557271957, -0.012670752592384815, -0.015102436766028404, 0.020111093297600746, -0.007015942130237818, -0.011821958236396313, -0.009726733900606632, -0.002550208941102028, -0.01186783891171217, 0.017878225073218346, -0.005199826322495937, -0.014758329838514328, 0.010980809107422829, 0.0020053740590810776, -0.005930095911026001, -0.007914441637694836, -0.018902897834777832, 0.009497329592704773, 0.0004499665810726583, -0.0004480548668652773, 0.0060906787402927876, -0.022068673744797707, 0.0044848499819636345, 0.010002018883824348, 0.006752127315849066, 0.0031428360380232334, -0.010246716439723969, 0.011898425407707691, -0.006973884534090757, -0.000895631848834455, -0.001456715981476009, 0.012395467609167099, 0.004756311420351267, 0.020325202494859695, -0.033156540244817734, -0.003509882604703307, -0.019071126356720924, 0.02268041856586933, -0.011676668189466, -0.0025215332861989737, 0.028262585401535034, 0.0021105175837874413, -0.0011862103128805757, 0.003106513759121299, -0.004370147828012705, 0.0025922663044184446, 0.00560128316283226, -0.0008339794585481286, -0.013412493281066418, -0.008602653630077839, 0.010047899559140205, -0.0069432975724339485, -0.006820948328822851, -0.002747114049270749, 0.0061977338045835495, 0.014597747474908829, -0.0025674141943454742, 0.002794906497001648, 0.004591905511915684, -0.00011404490214772522, -0.009482036344707012, 0.00704270601272583, 0.011997833847999573, -0.018688786774873734, 0.0018228067783638835, -0.0036016444209963083, -0.017388829961419106, 0.001982433721423149, 0.024806229397654533, -0.0086179468780756, -0.031963638961315155, 0.008289135061204433, -0.012143123894929886, 0.032391857355833054, 0.029761359095573425, 0.02052401937544346, 0.001997727435082197, -0.0004999097436666489, 0.005215120036154985, -0.005215120036154985, 0.006966237910091877, -0.010682583786547184, -0.0029765181243419647, 0.015201845206320286, -0.011248447932302952, 0.007073292974382639, -0.009604385122656822, -0.009283219464123249, 0.015981819480657578, 0.007543571293354034, 0.010996103286743164, -0.0017358243931084871, -0.020111093297600746, -0.0017616322729736567, -0.01272428035736084, 0.019422879442572594, -0.000927652814425528, -0.0009071020176634192, 0.01919347606599331, 0.0022653655614703894, 0.0024584473576396704, 0.028369640931487083, 0.0005620400188490748, 0.0018304535187780857, 0.013221322558820248, -0.02188515104353428, 0.033676519989967346, 0.007990909740328789, -0.03150482848286629, -0.024485064670443535, -0.010866107419133186, 0.0036035559605807066, 0.01069787796586752, 0.013129561208188534, -0.004882483743131161, -0.017679408192634583, 0.01469715591520071, 0.006889769807457924, 0.004282210022211075, -0.0052418834529817104, 0.003756492165848613, -0.008327368646860123, -0.0018208950059488416, 0.007853266783058643, -0.005467464216053486, -0.005001009441912174, 0.007268286310136318, -0.004010748118162155, 0.01569123938679695, -0.0011173890670761466, 0.011737843044102192, 0.008877938613295555, -0.022252198308706284, -0.0026362354401499033, 0.006966237910091877, -0.00010090196155942976, -0.01553830411285162, 0.017709996551275253, -0.003270920133218169, -0.013213676400482655, 0.006163323298096657, -0.0016345041804015636, 0.0022538951598107815, -0.02139575593173504, 0.011003749445080757, -0.008159139193594456, 0.010705524124205112, -0.018551144748926163, 0.004664550069719553, -0.015178904868662357, -0.006040974520146847, 0.018321741372346878, 0.028476694598793983, 0.005876568146049976, -0.008151492103934288, -0.0018266300903633237, 0.016104167327284813, -0.0016115637263283134, -0.003125630784779787, -0.0037450219970196486, -0.010973162949085236, -0.014047177508473396, 0.02719203196465969, 0.0033454764634370804, 0.014651275239884853, 0.0021200762130320072, -0.013588368892669678, 0.006702423095703125, -0.0017320009646937251, -0.007298873737454414, -0.010193188674747944, 0.0033454764634370804, -0.0013190736062824726, -0.012265472672879696, 0.005077477544546127, -0.005345115438103676, 0.02471446804702282, 0.026167361065745354, -0.001398409134708345, 0.01106492429971695, 0.014972440898418427, 0.017679408192634583, -0.0035289996303617954, -0.0086179468780756, 0.009902610443532467, -0.012364881113171577, 0.017954694107174873, -0.027237912639975548, 0.0036551719531416893, -0.010437886230647564, -0.016333572566509247, -0.010491413995623589, 0.004270739387720823, 0.009214397519826889, -0.0006514120614156127, 0.004278386477380991, -0.0015991376712918282, 0.0026381472125649452, 0.0232462827116251, 0.016899434849619865, -0.009642618708312511, 0.012204297818243504, -0.000167393300216645, 0.009252632036805153, 0.009130283258855343, 0.0010103338863700628, -0.00013226580631453544, 0.019866395741701126, -0.005008656065911055, -0.019759340211749077, 0.0021984558552503586, 0.015484776347875595, 0.013603663071990013, 0.0005563049344345927, -0.0046416097320616245, -0.0008913304773159325, -0.0140165900811553, 0.04043629392981529, 0.0028618162032216787, -0.001276060240343213, 0.012624871917068958, -0.002995635150000453, 0.029562542214989662, 0.016027700155973434, -0.019728751853108406, 0.0063544935546815395, 0.020646369084715843, -0.012861923314630985, 0.003326359437778592, -0.02670263685286045, 0.004618668928742409, -0.0011374619789421558, 0.011646081693470478, -0.005490404553711414, -0.0024412418715655804, -0.0005663413903675973, 0.018994659185409546, -0.021242819726467133, 0.0019193475600332022, -0.006560957059264183, -0.00740975234657526, -0.008220313116908073, -0.00024051585933193564, 0.00370105286128819, -0.005081300623714924, -0.018260566517710686, 0.0023858025670051575, 0.024240367114543915, -0.006507429759949446, -0.01424599438905716, -0.014353049919009209, -0.01212782971560955, 0.0020283146295696497, 0.011600200086832047, -0.004297503270208836, -0.0013706894824281335, 0.004003101494163275, -0.004500143695622683, 0.013764245435595512, 0.0011929012835025787, 0.029271962121129036, -0.001849570544436574, -0.016654737293720245, -0.004198094829916954, -0.012448995374143124, 0.003305330639705062, 0.005960683338344097, -0.006270378828048706, 0.011753136292099953, -0.01611946150660515, -0.019453467801213264, -0.022221609950065613, -0.010911988094449043, 0.01677708700299263, -0.016134755685925484, -0.015438895672559738, 0.032911840826272964, 0.008992640301585197, 0.01235723402351141, 0.02457682602107525, 0.002682116348296404, -0.003402827540412545, 0.0037909026723355055, -0.0005070786573924124, 0.014758329838514328, -0.016899434849619865, -0.0005214163684286177, 0.022741593420505524, 0.004565141629427671, 0.0022481600753962994, -0.0036092910449951887, -0.0023743323981761932, -0.001345837372355163, 0.012647812254726887, 0.0032862136140465736, 0.02006521262228489, 0.006499782670289278, -0.013909535482525826, -0.007807386107742786, -0.002500504720956087, -0.01211253646761179, 0.005800100043416023, -0.019055834040045738, -0.016578270122408867, -0.007516807410866022, 0.0005524815060198307, 8.5727833720739e-06, -0.01946876011788845, 0.02670263685286045, -0.0022080144844949245, 0.02131928689777851, -0.012433702126145363, 0.02153339795768261, -0.007528277579694986, -0.007176524959504604, 0.002726085251197219, 0.006882122717797756, 0.004400735255330801, -0.0047639585100114346, -0.019728751853108406, -0.0008903746493160725, 0.005394819658249617, 0.006817125249654055, 0.0024431536439806223, 0.024408595636487007, -0.0010676848469302058, 0.001399365020915866, 0.0013487049145624042, -0.03373769670724869, 0.003429591190069914, 0.01933111809194088, -0.02034049667418003, 0.01280839554965496, -0.022527482360601425, -0.006018034182488918, -0.009818495251238346, -0.006824771873652935, 0.00519217923283577, 0.023919200524687767, -0.002596089616417885, -0.020432258024811745, -0.02338392473757267, 0.005543932318687439, -0.01237252727150917, 0.04841955751180649, 0.023032171651721, 0.022695712745189667, -0.01332073099911213, 0.024347420781850815, -0.009344393387436867, 0.007230052258819342, 0.015362427569925785, 0.003622672986239195, -0.006553310435265303, 0.009742027148604393, -0.012487229891121387, 0.027620254084467888, 0.027176737785339355, -0.001855305628851056, 0.013435433618724346, -0.007757681887596846, -0.003945750650018454, -0.006190087180584669, 0.01796998828649521, -0.013106620870530605, 0.0011250359239056706, -0.016333572566509247, -0.02394978702068329, 0.013313084840774536, 0.011844898574054241, 0.01368777733296156, -0.007230052258819342, -0.01674649864435196, -0.024485064670443535, 0.026060305535793304, 0.0009596737800166011, -0.02359803393483162, 0.003964867442846298, 0.011003749445080757, 0.00471807736903429, 0.02716144546866417, 0.008205019868910313, 0.004102509934455156, -0.005830687470734119, -0.033156540244817734, -0.006690952926874161, -0.0010724641615524888, -0.010040252469480038, -0.015859469771385193, -0.01059082243591547, -0.003072103252634406, 0.023475686088204384, -0.002427859930321574, 0.007600922603160143, 0.003953397274017334, 0.006553310435265303, -0.006958590820431709, -0.0010896694147959352, 0.01748059131205082, 0.006052444688975811, 0.010996103286743164, -0.016410039737820625, -0.011951953172683716, 0.0006724407430738211, 0.011814311146736145, 0.003720169886946678, 0.0032173923682421446, 0.01800057478249073, -0.013381905853748322, 0.021120470017194748, 0.010873754508793354, -0.0067406571470201015, -0.012211944907903671, 0.00031901506008580327, 0.020921653136610985, -0.008166786283254623, -0.014620687812566757, -0.020539313554763794, -0.00880911760032177, 0.0034735603258013725, -0.026717931032180786, -0.002232866594567895, -0.0294707790017128, -0.018199391663074493, 0.004928364884108305, 0.003167688148096204, 0.019392292946577072, -0.0015083319740369916, -0.028231997042894363, -0.010988456197082996, -0.010414945892989635, 0.00029631363577209413, 0.009290865622460842, 0.015324193984270096, -0.004783075302839279, -0.004328090697526932, -0.01050670724362135, -0.0014825239777565002, 0.0055821663700044155, 0.005123358219861984, -0.0065227230079472065, -0.011126099154353142, 0.013779539614915848, 0.003173423232510686, -0.012349586933851242, 0.004828956443816423, -0.002993723377585411, 0.019728751853108406, 0.0018247184343636036, -0.028461402282118797, -0.018321741372346878, -0.01364954374730587, 0.0037144345697015524, 0.015591831877827644, -0.0012837070971727371, 0.006950944196432829, -0.010766698978841305, 0.007184171583503485, 0.01235723402351141, 0.03156600520014763, 0.010193188674747944, -0.011906072497367859, 0.021380461752414703, -0.0016211222391575575, -0.010759051889181137, 0.006683305837213993, 0.00954321026802063, 0.008327368646860123, 0.0005916713853366673, 0.008847351185977459, 0.0102390693500638, -0.0010351859964430332, 4.9853573727887124e-05, 0.0016947227995842695, -0.0014337756438180804, -0.014536572620272636, -0.02139575593173504, 0.026763811707496643, -0.005341291893273592, -0.002489034552127123, 0.022527482360601425, -0.001718619023449719, 0.022986290976405144, -0.0048098391853272915, -0.029593128710985184, 0.0017759701004251838, 0.00495512830093503, 0.006905063521116972, -0.010980809107422829, 0.0027929949574172497, -0.013940121978521347, 0.0015159787144511938, 0.02251218818128109, 0.012288413010537624, -0.009428508579730988, -0.013389552012085915, -0.005169238895177841, -0.006717716809362173, 7.861869380576536e-05, 0.0011862103128805757, -0.01663944311439991, 0.013726011849939823, 0.008747942745685577, -0.005608930252492428, 0.003628408070653677, 0.021303994581103325, -0.00039189867675304413, 0.013473667204380035, 0.012517817318439484, 0.010315537452697754, -0.014345402829349041, 0.026932040229439735, -0.025005046278238297, -0.019025245681405067, -0.011592553928494453, 0.003173423232510686, -0.015859469771385193, 0.00716505479067564, -0.000892764306627214, 0.019162889569997787, 0.004393088631331921, -0.004182801581919193, -0.010040252469480038, -0.008059730753302574, 0.0008406704291701317, 0.009038520976901054, -0.003314889268949628, -0.0007092410232871771, -0.002609471557661891, 0.0059683299623429775, -0.011561966501176357, 0.023338044062256813, 0.0018189833499491215, -0.006905063521116972, 0.004664550069719553, 0.011615494266152382, -0.018321741372346878, -0.004637786187231541, -0.007998555898666382, 0.018321741372346878, -0.00038711942033842206, -0.007249169517308474, -0.026901453733444214, 0.008174432441592216, 0.013121914118528366, -0.004867190029472113, -0.019896982237696648, 0.005620400421321392], "9de99182-6404-45f5-9277-1bca0948ae98": [-0.01767423190176487, -0.015182709321379662, -0.0004444511141628027, 0.01901082880795002, -0.035037022083997726, -0.02255346067249775, 0.01020615454763174, 0.025810606777668, -0.020957330241799355, 0.002640753285959363, 0.018919991329312325, 0.04341995343565941, 0.0183749720454216, -0.02267025038599968, 0.015416289679706097, 0.0013625508872792125, 0.00359129486605525, 0.027925804257392883, 0.0075524249114096165, -0.019568825140595436, 0.026420509442687035, -0.04970066621899605, 0.0018329552840441465, 0.04079866409301758, 0.011133987456560135, -0.028963938355445862, -0.001896216650493443, 0.014481969177722931, -0.05481347441673279, -0.0023504002019762993, 0.020490169525146484, 0.008558116853237152, 0.0055669937282800674, -0.008648953400552273, -0.0043893600814044476, -0.015948332846164703, -0.014624712988734245, -0.002747810911387205, -0.019036782905459404, 0.009317252784967422, 0.016960514709353447, -0.0008702482446096838, 0.01020615454763174, 0.00021188476239331067, -0.039500996470451355, 0.04232991486787796, 7.692227882216685e-06, -0.015740705654025078, 0.030858533456921577, -0.004048722330480814, 0.011503822170197964, -0.007124194409698248, 0.0016204622806981206, -0.02209927700459957, 0.04772821068763733, -0.011679007671773434, 0.012645769864320755, 0.04765034839510918, 0.00378594477660954, -0.06187278404831886, 0.011497333645820618, -0.040383413434028625, 0.00881116185337305, -0.010887430049479008, 0.01497508306056261, 0.0036367131397128105, -0.004350430332124233, -0.034154608845710754, -0.014040762558579445, -0.008681395091116428, -0.016065122559666634, 0.019218456000089645, -0.06638866662979126, 0.01441708579659462, 0.04204442724585533, -0.009550832211971283, 0.010420270264148712, 0.019114641472697258, 0.01744065061211586, -0.05063498392701149, -0.009570297785103321, -0.025745723396539688, 0.0017404964892193675, -0.020451240241527557, 0.09919369965791702, 0.02226797491312027, 0.03768426552414894, -0.038800258189439774, -0.014520899392664433, -0.027069343253970146, -0.025953350588679314, -0.010095853358507156, 0.002092488808557391, -0.0066278367303311825, 0.0011305927764624357, -0.0017778044566512108, 0.011270241811871529, -0.0069360327906906605, 0.028756311163306236, -0.014287319034337997, 0.03000207245349884, 0.017816973850131035, 0.0016277616377919912, -0.016350610181689262, 0.0477801151573658, -0.022657273337244987, 0.014598758891224861, 0.03783998265862465, -0.03789189085364342, 0.025499166920781136, 0.031144019216299057, -0.035140834748744965, 0.03931932523846626, 0.013236207887530327, -0.040902480483055115, -0.03885216265916824, -0.018712365999817848, -0.009025277569890022, 0.012425166554749012, -0.02268322743475437, 0.03010588511824608, -0.011270241811871529, 0.011257265694439411, 0.0030495186801999807, -0.01162710040807724, -0.0050317058339715, 0.01593535579741001, 0.013061023317277431, 0.012061819434165955, 0.011419474147260189, -0.01511782594025135, -0.013262161985039711, 0.014313272200524807, 0.02704339101910591, 0.030028024688363075, -0.003455039579421282, 0.007954701781272888, 0.03960481286048889, -0.035037022083997726, 0.035789668560028076, -0.02191760390996933, -0.03610111027956009, -0.032908845692873, -0.020087892189621925, 0.02138555981218815, -0.00020752541604451835, -0.020723748952150345, 0.02559000253677368, -0.04007197171449661, 0.005969270598143339, -0.07090455293655396, 0.008525675162672997, -0.0071631246246397495, -0.005956293549388647, 0.08616512268781662, 0.01049812976270914, -0.01640251651406288, 0.03633468970656395, -0.0019984079990535975, 0.013716345652937889, 0.032467640936374664, -0.0634818896651268, -0.003987083211541176, 0.012191586196422577, 0.021839743480086327, 0.03389507532119751, 0.05699355527758598, 0.03215619921684265, -0.009615715593099594, 0.027718177065253258, 0.003708084812387824, -0.01511782594025135, 0.031014252454042435, -0.003915711771696806, 0.019101664423942566, -0.050609033554792404, 0.0302356518805027, -0.005505354143679142, 0.046015288680791855, -0.025719769299030304, -0.013872065581381321, 0.008635977283120155, 0.027302924543619156, 0.009615715593099594, -0.020788632333278656, 0.009661134332418442, -0.03394697979092598, 0.01258737500756979, -0.003141977358609438, 0.013742298819124699, -0.016298703849315643, -0.0004282302688807249, 0.04541836306452751, -0.01715516485273838, -0.01605214737355709, -0.025628933683037758, 0.010705756954848766, 0.03838500380516052, 0.008149351924657822, 0.019101664423942566, 0.005664318334311247, -0.04033150523900986, -0.00011101139534730464, 0.0427711196243763, -0.026783857494592667, -0.00329931965097785, -0.017051350325345993, -0.06773824244737625, 0.0016950780991464853, -0.030676858499646187, 0.022812994197010994, -0.04108415171504021, -0.0012619816698133945, 0.012944233603775501, 0.003480992978438735, -0.005683783441781998, -0.019737523049116135, 0.030495185405015945, 0.01394992507994175, -0.03981243818998337, -0.029924212023615837, 0.028652498498558998, -0.025044983252882957, -0.025213679298758507, -0.07708144932985306, 0.020373379811644554, -0.015156756155192852, -0.0025499165058135986, -0.027458643540740013, -0.02860059216618538, 0.01581856608390808, -0.015234616585075855, 0.0097714364528656, 0.02244964800775051, -0.010952313430607319, 0.06810159236192703, 0.045781709253787994, 0.020334448665380478, -0.0494411326944828, -0.017310883849859238, 0.009576786309480667, 0.024863308295607567, -0.0036172480322420597, -0.00036415792419575155, 0.009758459404110909, 0.011523286812007427, -0.012470584362745285, 0.05917363613843918, -0.003682131413370371, -0.006949009373784065, 0.00043755726073868573, 0.026705997064709663, -0.016649072989821434, -0.005382075905799866, 0.0012060196604579687, 0.02051612362265587, 0.024461032822728157, -0.027770083397626877, -0.007837911136448383, 0.026070140302181244, 0.011004220694303513, 0.0008726813830435276, -0.011958005838096142, -0.0024428591132164, 0.060315582901239395, -0.024915216490626335, 0.01755744032561779, -0.012853396125137806, 0.013768251985311508, 0.036490410566329956, -0.02883417159318924, -0.012308375909924507, -0.011412985622882843, 0.01947798952460289, 0.004726754035800695, -0.0012108859373256564, 0.010588966310024261, -0.011023685336112976, 0.05683783441781998, 0.005190670024603605, -0.02808152511715889, -0.0160391703248024, 0.002768897917121649, 0.024499962106347084, 0.03633468970656395, 0.01514377910643816, -0.035737764090299606, -0.004223907832056284, -0.03057304583489895, -0.0045515685342252254, -0.015766659751534462, -0.009855784475803375, 0.02011384628713131, 0.030028024688363075, 0.010186689905822277, -0.0017794265877455473, -0.016298703849315643, 0.004184977617114782, -0.0019902975764125586, -0.0032474128529429436, 0.012606839649379253, 0.0010032592108473182, -0.0049506016075611115, -0.016233820468187332, 0.059744611382484436, -0.030650906264781952, 0.04658626392483711, 0.013417881913483143, -0.04204442724585533, 0.04157726466655731, 0.05470966175198555, -0.01311292964965105, -0.021956533193588257, 0.0247205663472414, 0.0031663086265325546, 0.018751295283436775, -0.007312356494367123, -0.016545260325074196, -0.025070935487747192, -0.03267526626586914, -0.002968414453789592, -0.005307460203766823, -0.0409284308552742, -0.007098241243511438, 0.020386356860399246, -0.06483146548271179, 0.03506297618150711, -0.02285192348062992, -0.015481173060834408, -0.025888467207551003, -0.03867049142718315, -0.014027785509824753, 0.007117706350982189, -0.0003862588491756469, -0.03983839228749275, -0.012652258388698101, -0.03238977864384651, -0.04912969097495079, 0.025447258725762367, -0.02559000253677368, 0.01133512519299984, -0.026147998869419098, 0.04855871573090553, 0.0005794896278530359, -0.005262041464447975, -0.01690860651433468, 0.02382517419755459, 0.023760290816426277, -0.0016350609948858619, -0.010446223430335522, 0.000730748986825347, -0.012775536626577377, 0.048870157450437546, -0.01563689298927784, 0.024396149441599846, -0.0031306229066103697, -0.02559000253677368, -0.009862273000180721, -0.011127498932182789, 0.0036529339849948883, -0.005732445977628231, -0.03493320941925049, -0.0018313332693651319, -0.032701220363378525, -0.010128295049071312, 0.014131599105894566, -0.012405700981616974, 0.009284811094403267, 0.013547648675739765, 0.004772172309458256, -0.03789189085364342, -0.012204562313854694, 0.018647482618689537, -0.015714753419160843, -0.015234616585075855, -0.0566302090883255, 0.03768426552414894, -0.0204642154276371, 0.011354590766131878, 0.012198074720799923, 0.02691362425684929, -0.002184947719797492, -0.02976849116384983, 0.0012165632797405124, 0.004535347688943148, 0.04087652638554573, 0.0013763385359197855, -0.0033869121689349413, 0.010420270264148712, -0.023643501102924347, -0.044561900198459625, -0.0002907586167566478, -0.027873897925019264, 0.011289707385003567, -0.024396149441599846, -0.011036662384867668, -0.006452651694417, -0.022397741675376892, -0.023578617721796036, -0.03428437560796738, 0.002987879328429699, -0.018504738807678223, 0.03028755821287632, 0.004486685153096914, 0.037476636469364166, -0.022916806861758232, 0.009485949762165546, 0.0005977380787953734, 0.01825818233191967, 0.0031744190491735935, 0.009447019547224045, 0.0100244814530015, 0.010465688072144985, 0.011834727600216866, 0.013729321770370007, 0.028185337781906128, -0.0038378515746444464, 0.056370675563812256, -0.022774064913392067, 0.007305867969989777, 0.049856383353471756, 0.021320676431059837, 7.63900316087529e-05, 0.025213679298758507, -0.024486985057592392, 0.023526711389422417, 0.0030203210189938545, 0.004668358713388443, 0.005904387217015028, -0.013099953532218933, -0.01142596174031496, 0.014365179464221, -0.0011687118094414473, -0.008584070019423962, -0.01092636026442051, -0.017765067517757416, 0.007876841351389885, -0.018180321902036667, -0.012243492528796196, -0.01128321886062622, 0.015014012344181538, 0.02616097591817379, -0.0028516242746263742, -0.018621528521180153, -0.03726901113986969, -0.008499721996486187, -0.01651930622756481, 0.018803201615810394, -0.0013001005863770843, -0.010829035192728043, -0.010627896524965763, 0.023176340386271477, -0.0033901561982929707, -0.0126133281737566, 0.010251573286950588, -0.005294483155012131, -0.02145044319331646, -0.017453627660870552, 0.024603774771094322, -0.06586959958076477, -0.02198248729109764, -0.007351286243647337, 0.02233285829424858, -0.02278704009950161, 0.0012765803840011358, -0.041888706386089325, 0.001509349443949759, 0.021437466144561768, 0.008480257354676723, -0.004791636951267719, 0.006147699896246195, 0.01860855147242546, -0.022748110815882683, 0.007169612683355808, 0.002999234013259411, -0.030028024688363075, -0.030624952167272568, -0.012133191339671612, -0.0025953350123018026, -0.007111217826604843, -0.02849677763879299, -0.03104020655155182, -0.003171175019815564, -0.017596371471881866, -0.00581355020403862, -0.018647482618689537, -0.028989892452955246, -0.020905423909425735, -0.010173712857067585, -0.02343587391078472, 0.048688482493162155, 0.009518391452729702, 0.017687207087874413, 0.011075591668486595, 0.029508957639336586, -0.013820158317685127, 0.0164544228464365, -0.016843723133206367, -0.03553013503551483, -0.0025385620538145304, 0.01568879932165146, -0.005865457002073526, 0.002999234013259411, -0.0032279479783028364, -0.004003304056823254, 0.02662813663482666, -0.022579414770007133, 0.011374055407941341, 0.005356122739613056, -0.010050434619188309, -0.020321473479270935, 0.04513287544250488, -0.031247833743691444, 0.03771021589636803, 0.0379178449511528, -0.0023195806425064802, -0.022540483623743057, 0.0076886797323822975, 0.053931061178445816, 0.018400924280285835, -0.002478544833138585, 0.004905182868242264, -0.019581802189350128, -0.002871089382097125, -0.0074680764228105545, -0.020425286144018173, 0.0018718853825703263, -0.024902239441871643, 0.00691656768321991, -0.011056127026677132, -0.005956293549388647, 0.004999264143407345, -0.02325420081615448, 0.00017376578762196004, 0.021437466144561768, -0.035140834748744965, -0.004983043298125267, -0.001268469961360097, -0.005060903262346983, 0.013846112415194511, -0.023565640673041344, 0.024902239441871643, -0.004305012058466673, 0.00188161781989038, -0.004963578190654516, 0.011685495264828205, -0.03568585589528084, 0.008700860664248466, -0.015221639536321163, 0.011004220694303513, -0.03296075388789177, 0.02935323864221573, -0.024461032822728157, 0.001643982483074069, 0.0018410657066851854, -0.0023147144820541143, 0.005206890869885683, -0.011348102241754532, -0.03192261978983879, -0.018361994996666908, -0.006579174194484949, -0.015169733203947544, 0.012684700079262257, 0.006296931300312281, -0.006884125992655754, 0.013067511841654778, -0.042407773435115814, 0.020438263192772865, -0.0009440531139262021, 0.023098481819033623, 0.030728766694664955, 0.008947417140007019, 0.056422583758831024, 0.031195925548672676, 0.020723748952150345, 0.029898257926106453, 0.019374174997210503, 0.008674907498061657, -0.039215512573719025, -0.012477072887122631, 0.018556645140051842, -0.013975879177451134, 0.018102461472153664, -0.0038832698483020067, 0.023877082392573357, 0.01801162399351597, -0.028912032023072243, -0.010095853358507156, -0.0024071731604635715, 0.017765067517757416, 0.018530691042542458, 0.023708384484052658, -0.018790224567055702, 0.0011378921335563064, -0.001935146632604301, 0.029690632596611977, 0.016765864565968513, 0.005609167739748955, -0.006037397775799036, 0.010193178430199623, 0.021696999669075012, 0.040616992861032486, 0.017103256657719612, -0.0379178449511528, -0.0417589396238327, 0.0025807362981140614, 0.006452651694417, 0.0382552370429039, -0.03604920208454132, 0.0026375092566013336, -0.002436370588839054, 0.004921403713524342, 0.012769048102200031, -0.02517475001513958, 0.017713161185383797, -0.006657034158706665, 0.018452832475304604, 0.030780673027038574, 0.02407173253595829, -0.017116233706474304, 0.006154187954962254, -0.024564845487475395, 0.037424731999635696, -0.007234496064484119, 0.025538096204400063, 0.011296194978058338, -0.007507006172090769, -0.012314864434301853, -0.010971779003739357, 0.03046923317015171, -0.029976118355989456, -0.0060114446096122265, -0.0033674470614641905, -0.010906895622611046, -0.014949128963053226, -0.04438022896647453, -0.007928748615086079, 0.01331406831741333, -0.014027785509824753, -0.014170529320836067, -0.01441708579659462, 0.029405144974589348, 0.009142067283391953, 0.03913765028119087, -0.00964815728366375, 0.0347515344619751, -0.012327841483056545, 0.019387152045965195, 0.019153572618961334, 0.026939576491713524, -0.01999705657362938, 0.0030235652811825275, -0.007130682934075594, 0.017401721328496933, 0.014624712988734245, -0.009693576022982597, -0.012230516411364079, -0.005437226966023445, 0.003990327473729849, -0.0164544228464365, 0.045262642204761505, -0.033635541796684265, 0.0017048106528818607, 0.010978266596794128, 0.01657121442258358, 0.0037599916104227304, 0.012490049935877323, 0.009615715593099594, 0.006793289445340633, -0.007117706350982189, -0.006073083728551865, -0.026939576491713524, 0.009654645808041096, -0.013677415437996387, 0.0026342649944126606, 0.0034128655679523945, -0.0009691953891888261, -0.016882654279470444, -0.031299740076065063, 0.0018102461472153664, -0.007662726566195488, -0.026939576491713524, -0.026420509442687035, 0.021787837147712708, -0.0359194353222847, -0.004927892237901688, -0.011419474147260189, -0.015208662487566471, -0.021424490958452225, -0.029872305691242218, -0.016713956370949745, 0.0204642154276371, -0.013729321770370007, 0.04014983028173447, -0.0042563495226204395, -0.008006608113646507, -0.007111217826604843, -0.03620492294430733, 0.047883931547403336, -0.004428290296345949, -0.023111457005143166, -0.03233787417411804, 0.006063351407647133, -0.016700981184840202, 0.03690566495060921, 0.041707031428813934, -0.01685670018196106, -0.00476568378508091, -0.0015653114533051848, -0.00571298087015748, 0.011763355694711208, -0.0015296255005523562, -0.006747870706021786, 0.02318931743502617, 0.014235412701964378, 0.01633763313293457, -0.04139559343457222, 0.012451119720935822, -0.021424490958452225, 0.03952695056796074, -0.023163365200161934, 0.015961309894919395, -0.020256590098142624, -0.02552511915564537, -0.029690632596611977, 0.010861476883292198, 0.008194769732654095, -0.0037145731039345264, -0.012451119720935822, 0.006287198979407549, 0.006871149409562349, -0.04354972019791603, 0.015948332846164703, 0.009570297785103321, 0.008791697211563587, -0.012541956268250942, -0.005907631013542414, 0.012379747815430164, 0.04194061458110809, -0.016415493562817574, -0.013690391555428505, 0.012762559577822685, 0.03604920208454132, -0.045314546674489975, -0.00268779369071126, 0.0016950780991464853, 0.038333095610141754, -0.02930133230984211, -0.007370751351118088, 0.026316696777939796, 0.055021099746227264, -0.015221639536321163, 0.03571180999279022, 0.013794205151498318, -0.009842807427048683, -0.02766627073287964, 0.0267319492995739, 0.03542632237076759, -0.004801369737833738, 0.03451795503497124, 0.008863069117069244, -0.005661074537783861, 0.0072474731132388115, -0.0038475841283798218, -0.002408795291557908, -0.007325333077460527, 0.020139798521995544, 0.005901142954826355, 0.02597930282354355, 0.00026135833468288183, 0.017803998664021492, -0.0040292576886713505, 0.017310883849859238, 0.04951899126172066, -0.011205358430743217, -0.030028024688363075, -0.015974286943674088, -0.018997851759195328, -0.020801609382033348, -0.014793409034609795, -0.016117030754685402, -0.0432642325758934, 0.032363828271627426, 0.0006184196681715548, 0.029457051306962967, -0.022540483623743057, 0.05455394089221954, -0.010511106811463833, -0.0379178449511528, -0.003455039579421282, 0.013521695509552956, 0.0041622682474553585, 0.002444481011480093, -0.011477869004011154, 0.015416289679706097, -0.009025277569890022, -0.0192963145673275, -0.008798185735940933, -0.01807650737464428, -0.005044682417064905, 0.010199666023254395, -0.0030008561443537474, 0.03275312855839729, 0.027225064113736153, 0.012827442958950996, -0.009583273902535439, 0.014430062845349312, -0.0038443398661911488, -0.011808774434030056, 0.02255346067249775, 0.0038832698483020067, -0.01209426112473011, -0.011886633932590485, 0.018803201615810394, -0.005320436786860228, 0.014780432917177677, 0.01650633104145527, 0.004921403713524342, 0.010848499834537506, 0.009265345521271229, -0.007623796351253986, 0.001287934952415526, 0.03877430409193039, 0.018206274136900902, -0.021658070385456085, 0.0014404108515009284, 0.03275312855839729, 0.008824138902127743, 0.03633468970656395, 0.005323681049048901, 0.011023685336112976, -0.022761087864637375, -0.010978266596794128, 0.008824138902127743, -0.0083115603774786, 0.031481411308050156, -0.009090160951018333, -0.03454390913248062, -0.047416768968105316, 0.026355626061558723, -0.017829950898885727, -0.03934527933597565, 0.018452832475304604, -0.007961190305650234, -0.004366651177406311, -0.0002915696531999856, 0.026472415775060654, 0.03433628007769585, 0.040720805525779724, 0.05720118433237076, 0.014105645939707756, -0.021839743480086327, 0.009894714690744877, 0.009434042498469353, -0.022761087864637375, 0.00197732076048851, -0.01936119794845581, 0.015377359464764595, 0.027354830875992775, -7.988765719346702e-05, 0.02267025038599968, -0.014235412701964378, -0.01568879932165146, 0.010322945192456245, 0.006228804122656584, -0.007013892754912376, -0.004003304056823254, 0.008467280305922031, 0.025719769299030304, 0.007682191673666239, -0.011400008574128151, 0.016700981184840202, 0.008966882713139057, 0.030131839215755463, -0.005041438154876232, -0.0007777894497849047, 0.009680598974227905, 0.01313888281583786, -0.013885041698813438, -0.009427553974092007, -0.013975879177451134, 0.024902239441871643, 0.010413781739771366, 0.006283954717218876, -0.01714218780398369, 0.012431654147803783, 0.022942760959267616, -0.0010770639637485147, -0.007714633364230394, 0.014430062845349312, -0.019620731472969055, -0.0010876075830310583, -0.02041230909526348, -0.010167224332690239, -0.030417324975132942, -0.030365418642759323, -0.003171175019815564, -0.019049758091568947, 0.012035866267979145, 0.012827442958950996, 0.009044742211699486, -0.010439734905958176, -0.025538096204400063, -0.022410716861486435, 0.008953905664384365, -0.05190670117735863, 0.019049758091568947, -0.0067673358134925365, 0.013586578890681267, 0.044432133436203, 0.0309883002191782, 0.012204562313854694, -0.03244168683886528, -0.005982247181236744, 0.05112810060381889, 0.004149291664361954, 0.007409681100398302, -0.030131839215755463, -0.02074970304965973, 0.0223847646266222, 0.014027785509824753, -0.017401721328496933, 0.021411513909697533, -0.015597962774336338, 0.008551628328859806, 0.008168816566467285, -0.027121249586343765, -0.014430062845349312, 0.00047405416262336075, 0.03623087704181671, -0.012431654147803783, 0.012684700079262257, 0.011743891052901745, -0.027225064113736153, 0.024681635200977325, -0.025434283539652824, -0.029664678499102592, -0.041551314294338226, -0.031533319503068924, -0.006793289445340633, -0.0039416649378836155, -0.05761643499135971, 0.02686171606183052, -0.0037015965208411217, -0.0223847646266222, -0.009537856094539165, 0.006806266028434038, 0.022371787577867508, 0.007636772934347391, -0.004901939071714878, -0.0023114702198654413, 0.008415373973548412, 0.028574638068675995, 0.003811898175626993, -0.007740586530417204, 0.019620731472969055, -0.002841891720890999, -0.018206274136900902, 0.001727519789710641, 0.003682131413370371, 0.01680479384958744, -0.015429266728460789, -0.010971779003739357, 0.01394992507994175, -0.00555077288299799, 0.012198074720799923, -0.016895631328225136, 0.02686171606183052, -0.021476397290825844, -0.01563689298927784, 0.004567789379507303, -0.030339466407895088, 0.012691187672317028, 0.006280710455030203, -0.012801489792764187, 0.0027202353812754154, -0.03342791274189949, -0.01969859190285206, -0.042226098477840424, -0.006248268764466047, 0.03202643245458603, -0.01722004823386669, -0.032908845692873, -0.005320436786860228, -0.011854192242026329, 0.033116474747657776, -0.014066715724766254, 0.009687087498605251, -0.003523167222738266, 0.0170383732765913, 0.005180937238037586, -0.011906099505722523, 0.0014128354378044605, 0.00950541440397501, 0.01444303896278143, -0.016895631328225136, -0.01784292794764042, -0.034621767699718475, -0.004321232903748751, -0.02657623030245304, -0.017661254853010178, -0.02559000253677368, -0.033168379217386246, 0.0382552370429039, 0.004087652545422316, 0.015883449465036392, -0.0048630088567733765, -0.0069360327906906605, 0.018465807661414146, -5.718481133953901e-06, -0.04308256134390831, -0.019140595570206642, 0.012639281339943409, -0.006877637468278408, -0.009057719260454178, 0.0032668779604136944, 0.011406497098505497, -0.024266382679343224, -0.016597166657447815, 0.014897222630679607, -0.012626304291188717, -0.03254549950361252, -0.0032668779604136944, -0.019205478951334953, -0.010718733072280884, 0.01563689298927784, 0.011387032456696033, -0.007669214624911547, 0.002397440606728196, 0.014858292415738106, -0.02255346067249775, -0.017985671758651733, -0.006721917539834976, 0.0019319024868309498, -0.001310644205659628, -0.018297111615538597, 0.01180228590965271, -0.050609033554792404, -0.01020615454763174, 0.010225620120763779, 0.0298203993588686, 0.008661930449306965, -0.014001832343637943, -0.013599555008113384, 0.031766898930072784, 0.0024428591132164, 0.019153572618961334, -0.008052026852965355, -0.025654885917901993, 0.021554257720708847, 0.026005256921052933, 0.02081458643078804, 0.00745509983971715, -0.022488577291369438, -0.008642465807497501, 0.0176223237067461, 0.010978266596794128, -0.004324476700276136, -0.02273513376712799, 0.04297874867916107, 0.00251585291698575, -0.02151532657444477, 0.027873897925019264, -0.032182153314352036, 0.015130802989006042, -0.028912032023072243, -0.022306904196739197, 0.010199666023254395, 0.0047851488925516605, -0.006481849122792482, -0.00422715162858367, -0.009057719260454178, 0.014806386083364487, 0.007046334445476532, -0.004622940439730883, 0.03433628007769585, 0.013249184936285019, -0.0011695228749886155, 0.030728766694664955, 0.013093465007841587, -0.001044622273184359, -0.0018264669924974442, -0.00923939235508442, 0.0011184271425008774, -0.007513494696468115, -0.008681395091116428, 0.005875189322978258, 0.00039477477548643947, -0.004603475332260132, 0.013820158317685127, -0.010893918573856354, 0.0021541279274970293, 0.0030073444359004498, -0.0062385364435613155, -0.013988855294883251, -0.0027040145359933376, -0.028989892452955246, 0.031533319503068924, 0.02836701087653637, -0.02425340563058853, -0.00028001231839880347, 0.019750498235225677, 0.0049506016075611115, -0.006799777504056692, 0.02181379124522209, 0.0038443398661911488, -0.001795647433027625, 0.025836559012532234, -0.018452832475304604, 0.004350430332124233, 0.015766659751534462, -0.006877637468278408, 0.0021752151660621166, 0.011704960837960243, -0.012431654147803783, 0.010082876309752464, 0.0016675026854500175, -0.0235526654869318, 0.004914915654808283, 0.009667622856795788, -0.0027040145359933376, -0.008246676996350288, -0.020308496430516243, -0.01221105083823204, -0.012950721196830273, 0.0009992039995267987, 0.012399212457239628, 0.0034647721331566572, 0.015766659751534462, 0.013080487959086895, 0.02069779671728611, -0.015974286943674088, 0.08009203523397446, -0.007117706350982189, -0.034803442656993866, -0.004285546950995922, -0.009310764260590076, 0.023864105343818665, -0.02128174714744091, 0.003403133014217019, -0.020074915140867233, 0.0032603894360363483, 0.0011305927764624357, -0.005592946894466877, 0.004901939071714878, -0.014456016011536121, -0.018984874710440636, -0.042122285813093185, 0.019672639667987823, 0.00945350807160139, 0.012217539362609386, -0.02418852224946022, -0.0019902975764125586, 0.0041687567718327045, -0.0007368318038061261, -0.03327219560742378, -0.011250777170062065, -0.012100749649107456, 0.01795971766114235, -0.012035866267979145, -0.03861858323216438, -0.01831008866429329, 0.009485949762165546, -0.0063131521455943584, -0.016532283276319504, 0.01680479384958744, 0.028522731736302376, 0.0024266382679343224, 0.013794205151498318, -0.01072522159665823, -0.004149291664361954, 0.015208662487566471, 0.007169612683355808, 0.01439113263040781, -0.0014387888368219137, 0.021645093336701393, -0.008382932282984257, 0.01930929161608219, 0.002632642863318324, 0.005359366536140442, -0.008506210520863533, 0.003870293265208602, 0.01238623633980751, -0.016480376943945885, 0.0043309652246534824, -0.006968474481254816, -0.01890701614320278, -0.012249981053173542, 0.02719911001622677, 0.03939718380570412, 0.019854312762618065, -0.012580886483192444, -0.02841891720890999, -0.025369400158524513, 0.0032555232755839825, 0.01981538161635399, -0.008733302354812622, -0.034102700650691986, 0.026991482824087143, 0.031247833743691444, -0.00700740423053503, 0.012535467743873596, -0.029327284544706345, -0.03028755821287632, -0.014261365868151188, -0.007344798184931278, -0.011023685336112976, 0.001988675445318222, 0.011490845121443272, -0.01270416472107172, -0.0068581728264689445, 0.0009570297552272677, -0.01847878471016884, -0.013560624793171883, -0.0340767465531826, 0.014949128963053226, 0.02313741110265255, -0.00667001074180007, 0.01380718220025301, -0.009447019547224045, 0.01832306571304798, 0.013651462271809578, 0.008389419876039028, 0.0021070875227451324, -0.020360402762889862, -0.0067673358134925365, 0.018050555139780045, -0.011140475049614906, 0.004460731986910105, -0.00828560721129179, 0.00224658683873713, 0.011568705551326275, -0.007954701781272888, 0.021255793049931526, 0.004668358713388443, -0.012801489792764187, -0.009498925879597664, -0.013158348388969898, -0.013151859864592552, -0.0034680163953453302, 0.015260569751262665, -0.009070695377886295, -0.0009424309828318655, -0.0005669184611178935, 0.023007644340395927, 0.025706792250275612, -0.012775536626577377, -0.011121010407805443, -0.012639281339943409, 0.004405580926686525, -0.013482765294611454, 0.003769723931327462, -0.013742298819124699, -6.645476969424635e-05, -0.0035361438058316708, 0.02303359843790531, -0.020373379811644554, 0.020425286144018173, 0.00295705976895988, -1.155101472249953e-05, -0.005820038728415966, 0.015273545868694782, 0.003503702115267515, 0.0047883931547403336, -0.0007822501938790083, -0.007902794517576694, 0.022774064913392067, -0.004953845404088497, 0.016960514709353447, -0.0114843575283885, -0.01568879932165146, -0.008039049804210663, 0.006472116801887751, 0.011140475049614906, -0.008785208687186241, 0.011231312528252602, -0.00872032530605793, -0.02691362425684929, -0.026550276204943657, -0.005991979502141476, -0.00046107746311463416, 0.04412069544196129, 0.03882621228694916, -0.01906273514032364, -0.017920788377523422, -0.0026618405245244503, 0.002193058142438531, 0.010809570550918579, 0.0016837235307320952, -0.01581856608390808, 0.0004870308330282569, -0.03213024511933327, -0.012574397958815098, 0.0042466167360544205, -0.0019124374957755208, 0.009129091165959835, -0.01651930622756481, 0.007727609947323799, 0.004681335296481848, 0.016843723133206367, -0.0023925744462758303, 0.023695407435297966, -0.013612532056868076, -0.002872711280360818, 0.01725897751748562, 0.029457051306962967, -0.009550832211971283, 0.016233820468187332, 0.005589702632278204, -0.025187725201249123, 0.007513494696468115, 0.011789308860898018, 0.004418557975441217, -0.0035977831576019526, -0.019984079524874687, 0.008045538328588009, 0.0014606869081035256, -0.01331406831741333, 0.00639750063419342, -0.023448850959539413, 0.015104849822819233, 0.0008013096521608531, 0.0031095356680452824, -0.006838707718998194, -0.005693516228348017, 0.0335836336016655, -0.005956293549388647, 0.00041059008799493313, 0.0222160667181015, 0.037061382085084915, -0.0029895014595240355, 0.02039933204650879, -0.01760934852063656, 0.0006167975952848792, -0.001321998774074018, 0.012522491626441479, -0.0027380783576518297, 0.0320783406496048, -0.0038216307293623686, -0.024279357865452766, -0.028444871306419373, -0.005440470762550831, -0.00020904612028971314, 0.01401480846107006, 0.003077093977481127, 0.007591354660689831, 0.0022692959755659103, 0.003772968193516135, 0.0071631246246397495, -8.434838673565537e-05, -0.02220309153199196, 0.0006760036339983344, -0.004259593319147825, -0.012944233603775501, 0.00285649043507874, -0.0059335846453905106, -0.02151532657444477, 0.013625508174300194, 0.011146963573992252, 0.029690632596611977, -0.016934560611844063, -0.04988233745098114, -0.025252608582377434, 0.0015863984590396285, 0.015234616585075855, 0.023267177864909172, -0.009369159117341042, -0.025304516777396202, 0.01191907562315464, 0.016584189608693123, 0.003484237240627408, 0.012516003102064133, -0.01627274975180626, -0.01969859190285206, -0.0041687567718327045, -0.004794881213456392, 0.0029473272152245045, 0.0047786603681743145, 0.026991482824087143, -0.020944353193044662, -0.005433982703834772, 0.023111457005143166, -0.001055976958014071, 0.018971899524331093, 0.03238977864384651, 0.0019529896089807153, -0.025499166920781136, 0.015390336513519287, -0.003922199830412865, 0.016324656084179878, -0.009064207784831524, 0.021774860098958015, 0.029508957639336586, 0.025330469012260437, 0.01952989585697651, -0.03075471892952919, -0.031195925548672676, -0.03163713216781616, 0.006517535075545311, 0.004590498749166727, -0.00945350807160139, -0.007409681100398302, 0.006825731135904789, 0.021476397290825844, -0.011698472313582897, 0.0059335846453905106, -0.02051612362265587, -0.01153626386076212, 0.023228248581290245, -0.017570417374372482, 0.0014866403071209788, 0.0026537301018834114, 0.023877082392573357, -0.008058515377342701, 0.03135164454579353, -0.003964374307543039, -0.012535467743873596, 0.007351286243647337, 0.017077304422855377, -0.03807356581091881, -0.005245820619165897, -0.0126133281737566, 0.005949805490672588, -0.03205238655209541, 0.014066715724766254, 0.010465688072144985, -0.004136315081268549, 0.009219927713274956, 1.851457273005508e-05, 0.001904327073134482, 0.024279357865452766, -0.013268649578094482, 0.010861476883292198, -0.01976347528398037, 0.012366770766675472, -0.06275519728660583, 0.007195566315203905, -0.006514290813356638, 0.021787837147712708, 0.007669214624911547, 0.011328636668622494, -0.010342409834265709, 0.04783202335238457, -0.011445427313446999, 0.01942608132958412, -0.007117706350982189, -0.046248868107795715, -0.027225064113736153, -0.0063163964077830315, -0.0032295698765665293, 0.0001464944944018498, -0.014559829607605934, -0.0005673239938914776, 0.0021671047434210777, 0.004960333928465843, -0.0020730237010866404, -0.002678061369806528, -0.026965530589222908, -0.012639281339943409, -0.021826766431331635, -0.02407173253595829, -0.025966325774788857, 0.01029050350189209, -0.006449407432228327, 0.005362610798329115, 0.0029197519179433584, -0.0016447935486212373, 0.002377975732088089, 0.025602979585528374, -0.008168816566467285, -0.0023601327557116747, 0.0566302090883255, -0.04669007658958435, 0.015039966441690922, -0.01982835866510868, 0.012652258388698101, -0.02860059216618538, -0.0149101996794343, -0.018452832475304604, 0.010854988358914852, -0.027873897925019264, -0.010997732169926167, -0.038229282945394516, 0.02307252772152424, -0.024318289011716843, 0.01680479384958744, 0.05237386003136635, -0.003996815998107195, -0.02006193995475769, 0.00909664947539568, -0.0016204622806981206, 0.007610819768160582, -0.0011200492735952139, -0.010764151811599731, -0.006864660885185003, -0.012691187672317028, 0.04178489372134209, 0.002038960112258792, -0.01275607105344534, 0.009349694475531578, 0.011322149075567722, -0.011172916740179062, 0.012444631196558475, 0.032986707985401154, -0.0397605299949646, -0.0057908413000404835, 0.0034874812699854374, 0.012736606411635876, -0.0029976118821650743, -0.004340697545558214, -0.021437466144561768, 0.0054047852754592896, -0.03856667876243591, -0.0005620522424578667, 0.005651341751217842, 0.023877082392573357, -0.012269445694983006, 0.02826319821178913, -0.015779636800289154, -0.014611735939979553, 0.0045937430113554, -0.009109625592827797, -0.0008937685051932931, 0.01110803335905075, -0.02006193995475769, -0.020853515714406967, -0.011010708287358284, 0.00964815728366375, -0.003727549919858575, -0.028003664687275887, -0.009447019547224045, 0.010472176596522331, -0.001862152828834951, -0.011666030623018742, -0.016233820468187332, 0.01130917202681303, -0.0049506016075611115, -0.004541836213320494, -0.024603774771094322, -0.02645944058895111, 0.005537795834243298, 0.012399212457239628, -0.0026894158218055964, 0.019971102476119995, 0.02260536700487137, -0.0011719559552147985, -0.0029278623405843973, 0.0048597645945847034, 0.017894834280014038, -0.003808654146268964, 0.0022336102556437254, -0.007299379445612431, 0.0010170468594878912, 0.026939576491713524, -0.012924768030643463, -0.010783616453409195, 0.013210254721343517, -0.01843985542654991, 0.002744566649198532, -0.009116114117205143, -0.007046334445476532, -0.005664318334311247, 0.014209458604454994, 0.0032393024303019047, 0.009609228000044823, -0.003750259056687355, -0.01380718220025301, -0.008973370306193829, 0.0021249304991215467, -0.0037437707651406527, 0.001352818333543837, 0.019465012475848198, -0.0032036167103797197, -0.011581682600080967, 0.005865457002073526, 0.011614124290645123, 0.019218456000089645, -0.03983839228749275, 0.022475600242614746, -0.005605923477560282, -0.006741382647305727, 0.006416965741664171, 0.05081665888428688, 0.0123213529586792, 0.008525675162672997, -0.010329432785511017, -0.006047130562365055, -0.016467399895191193, -0.008318048901855946, 0.011964494362473488, 0.028107477352023125, -0.010076387785375118, -0.014027785509824753, -0.0117763327434659, 0.00909664947539568, 0.006193118169903755, -0.027484597638249397, 0.018413901329040527, -0.0032603894360363483, 0.022475600242614746, -0.030313512310385704, 0.009583273902535439, 0.03547823056578636, 0.004094141069799662, -0.009667622856795788, 0.017998648807406425, 0.008162328042089939, -0.0014331114944070578, 0.0033934004604816437, 0.019802406430244446, -0.012477072887122631, 0.022306904196739197, 0.01772613823413849, -0.003262011567130685, -0.007831423543393612, 0.018167344853281975, 0.018997851759195328, 0.0023487780708819628, -0.0018637749599292874, 0.01832306571304798, -0.016895631328225136, 0.020542075857520103, -0.015429266728460789, -0.019257385283708572, 0.0009821720886975527, 0.015714753419160843, -0.0170383732765913, -0.002598579041659832, 0.006209339015185833, -0.004846788011491299, -0.0170383732765913, 0.007922260090708733, -0.001988675445318222, -0.021424490958452225, 0.006812754087150097, 0.009434042498469353, -0.006394256372004747, -0.016843723133206367, 0.019958125427365303, 0.0017388744745403528, -0.005459935870021582, 0.010472176596522331, -0.018297111615538597, -0.00745509983971715, -0.006533755920827389, -0.028003664687275887, 0.005524819251149893, -0.009155044332146645, -9.618453077564482e-06, -0.008493233472108841, 0.0031208903528749943, -0.009064207784831524, -0.00962220411747694, 0.0034323304425925016, 0.007656238041818142, -0.007831423543393612, 0.003928688354790211, 0.03028755821287632, 0.0023195806425064802, 0.02948300540447235, 0.01942608132958412, -0.006657034158706665, -0.004833811428397894, -0.004233640152961016, -0.0120683079585433, -0.020139798521995544, 0.0071631246246397495, -0.0009229659917764366, 0.027225064113736153, -0.01128321886062622, 0.022968715056777, -0.010556524619460106, -0.012872861698269844, 0.002864600857719779, -0.0008483501151204109, 0.021476397290825844, 0.0026034454349428415, -0.008480257354676723, 0.00752647127956152, -0.012762559577822685, 0.01209426112473011, -0.0137812290340662, -0.0018459319835528731, 0.009336717426776886, 0.010978266596794128, 0.002778630470857024, 0.013086976483464241, 0.008603535592556, 0.0390857458114624, 0.001304966863244772, -0.02377326786518097, 0.005359366536140442, -0.005599435418844223, -0.00188161781989038, -0.0183749720454216, -0.002259563421830535, -0.029742538928985596, 0.005060903262346983, 0.028211291879415512, -0.015961309894919395, 2.1543307582305715e-07, -0.01209426112473011, 0.0017745603108778596, -0.004746218677610159, 0.0035815623123198748, -0.0048630088567733765, 0.016986466944217682, 0.010251573286950588, -0.02826319821178913, 0.006663522683084011, 0.004755951464176178, 0.008065002970397472, 0.0005823282990604639, 0.0016301947180181742, 0.00691656768321991, -0.004126582760363817, 0.016415493562817574, 0.00378594477660954, 0.01773911528289318, 0.000803742790594697, 0.0016123518580570817, -0.0154941501095891, 0.002554782899096608, 0.002567759482190013, 0.008253165520727634, 0.01340490486472845, 7.689693302381784e-05, 0.015481173060834408, -0.007876841351389885, -0.019452035427093506, -0.0014890733873471618, -0.003588050603866577, 0.027692224830389023, -0.022709181532263756, 0.016817770898342133, 0.0039384206756949425, 0.010303479619324207, 0.017207071185112, -0.037762124091386795, 0.023332061246037483, 0.010043946094810963, -0.013054534792900085, 0.031766898930072784, -0.00971304066479206, -0.0120683079585433, -0.003970862366259098, -0.005589702632278204, 0.01160114724189043, 0.004892206285148859, 0.027173157781362534, 0.006650545634329319, 0.0031403552275151014, -0.010245084762573242, 0.00207789009436965, -0.002624532440677285, -0.017479581758379936, 0.0020373379811644554, 0.010595454834401608, -0.006037397775799036, 0.008331025019288063, -0.027770083397626877, 0.010952313430607319, 0.008026073686778545, 0.0010786860948428512, 0.009031766094267368, -0.011614124290645123, 0.002355266595259309, -0.004947357345372438, 0.004184977617114782, -0.013742298819124699, -0.014468992128968239, 0.0036496897228062153, -0.014183505438268185, 0.026498369872570038, 0.002131418790668249, -0.0063066640868783, -0.021658070385456085, -0.01563689298927784, 0.010653849691152573, 0.027588410302996635, 0.013586578890681267, -0.0007372373365797102, 0.0032555232755839825, -0.006416965741664171, 0.005099833011627197, 0.015597962774336338, 0.00020053017942700535, -0.010809570550918579, -0.026316696777939796, -0.0160391703248024, -0.004438022617250681, -0.0010608431184664369, -0.02738078311085701, -0.004837055690586567, 0.008610024116933346, 0.008551628328859806, -0.01790781132876873, 0.026835763826966286, 0.014559829607605934, -0.009563809260725975, 0.013547648675739765, -0.012606839649379253, 0.0003150898846797645, 0.00035949444281868637, 0.006562953349202871, -0.02488926239311695, -0.02546023577451706, 0.018582599237561226, -0.0070722876116633415, 0.007435634732246399, 0.008266141638159752, -0.012580886483192444, 0.015597962774336338, 0.0054761567153036594, -0.01568879932165146, 0.01807650737464428, 0.013391928747296333, 0.016415493562817574, 0.021904626861214638, 0.014053738676011562, 0.04014983028173447, -0.00754593638703227, -0.015377359464764595, 0.014754478819668293, 0.008979858830571175, 0.01069926843047142, 0.010368363000452518, 0.017414698377251625, 0.0034063770435750484, -0.007026869338005781, -0.006910079158842564, -2.0782956198672764e-05, 0.00664405757561326, -0.011860680766403675, -0.03384316712617874, 0.004596987273544073, 0.031481411308050156, 0.0065986393019557, 0.022761087864637375, 0.008032561279833317, 0.020217658951878548, -0.018349017947912216, -0.011490845121443272, -0.007584866601973772, -0.007532959803938866, 0.004282302688807249, 0.009245880879461765, 0.004506150260567665, -0.018647482618689537, -0.007325333077460527, 0.010167224332690239, -0.011575194075703621, 0.009226416237652302, -0.00750051811337471, 0.0035685854963958263, 0.0016772352391853929, 0.008765744045376778, -0.014988059177994728, 0.005638365168124437, -0.0007931992295198143, 0.019452035427093506, 0.013988855294883251, -0.002867845119908452, 0.025265585631132126, 0.009064207784831524, -0.016246797516942024, -0.013216743245720863, -0.02233285829424858, -0.0005705681978724897, 0.01282095443457365, -0.004269326105713844, -0.0011216712882742286, 0.012464095838367939, -0.00696198595687747, 0.010614920407533646, 0.01500103622674942, -0.01680479384958744, -0.0029473272152245045, 0.0010551658924669027, 0.002828915137797594, 0.020736726000905037, 0.009180997498333454, -0.0039416649378836155, -0.002716991351917386, -0.015104849822819233, -0.014962106011807919, 0.004363406915217638, 0.009810365736484528, 0.022657273337244987, 0.005219867452979088, -0.009057719260454178, 0.023708384484052658, -0.006488337647169828, -0.011607635766267776, -0.01389801874756813, 0.004181733354926109, 0.0025109865237027407, -0.020269565284252167, 0.014261365868151188, 0.0390857458114624, -0.01610405370593071, 0.011146963573992252, -0.005119298119097948, 0.01628572680056095, 0.013028581626713276, 0.008551628328859806, 0.00012155494914622977, -0.006131479050964117, 0.005664318334311247, 0.015260569751262665, 0.028860125690698624, -0.01679181680083275, 0.021022213622927666, -0.010971779003739357, -0.012490049935877323, -0.007318844553083181, -0.008610024116933346, 0.013573601841926575, 0.008778720162808895, -0.015468196012079716, -0.00933022890239954, -0.005041438154876232, 0.009920667856931686, -0.00938862469047308, -0.0007181778200902045, -0.006277466658502817, 0.008798185735940933, 0.024551868438720703, 0.010167224332690239, -0.0020843783859163523, 0.008545140735805035, 0.011445427313446999, -0.005845991894602776, 0.012159144505858421, 0.0033544704783707857, -0.010854988358914852, -0.008817650377750397, -0.027951758354902267, 0.008914975449442863, 0.00022344212629832327, -0.010913383215665817, 0.010329432785511017, -0.005982247181236744, 0.032234061509370804, -0.007033357862383127, -0.0164544228464365, -0.002880821703001857, -0.0012984785716980696, -0.0015604451764374971, 0.026070140302181244, -0.009375647641718388, -0.012178609147667885, -0.011912587098777294, -0.02599227987229824, -0.017752090469002724, -0.008713836781680584, -0.005849236156791449, 0.0009318874799646437, -0.001800513593479991, 0.0003335411020088941, -0.011503822170197964, -0.004038990009576082, 0.029898257926106453, -0.0012944233603775501, -0.0013747165212407708, -0.004285546950995922, 0.010595454834401608, -0.012957209721207619, 0.007734098006039858, 0.00222387770190835, 0.005064147524535656, -0.01209426112473011, 0.007189077790826559, 0.011205358430743217, 0.01067331526428461, -0.010757663287222385, -0.006838707718998194, 0.007266937755048275, -0.014352202415466309, 0.011763355694711208, 0.01072522159665823, 0.004285546950995922, 0.0048662531189620495, -0.007734098006039858, 0.005294483155012131, 0.016259772703051567, 0.010322945192456245, -0.027406737208366394, 0.01628572680056095, 0.01497508306056261, 0.00515822833403945, -0.015623916871845722, 0.015649870038032532, 0.0016529039712622762, -0.0010965290712192655, 0.004379627760499716, 0.0040097925812006, -0.008597047068178654, 0.0250579584389925, 0.013794205151498318, -0.0004359351587481797, 0.004996019881218672, 0.029223471879959106, -0.01075117476284504, 0.011925564147531986, 0.010284014977514744, -0.010043946094810963, -0.002254697261378169, 0.01790781132876873, 0.010919871740043163, 0.0003300941607449204, 0.025200702250003815, -0.01749255694448948, 0.005515086930245161, 0.0065467325039207935, 0.00044323454494588077, -0.01714218780398369, -0.014222435653209686, 0.009764947928488255, -0.028392964974045753, -0.013768251985311508, 0.01045919954776764, -0.01627274975180626, -0.011808774434030056, 0.0009432420483790338, 0.01340490486472845, 0.007448611315339804, 0.02366945520043373, -0.0028240487445145845, 0.01882915571331978, -0.018063532188534737, -0.02260536700487137, -0.020957330241799355, 0.024058755487203598, -0.0006703263497911394, 0.0007489974377676845, -0.017414698377251625, -0.011704960837960243, -0.005051170475780964, 0.008279118686914444, 0.038748349994421005, -0.026939576491713524, 0.0042563495226204395, 0.0008499721880070865, 0.010952313430607319, -0.005771376192569733, -0.012425166554749012, 0.021904626861214638, 0.0012757693184539676, 0.00808446854352951, -0.0006764091667719185, -0.0024266382679343224, -0.00892146397382021, 0.011841216124594212, 0.017894834280014038, -0.02342289872467518, -0.01511782594025135, 0.024837356060743332, -0.014624712988734245, -0.005070635583251715, 0.008149351924657822, 0.0018297111382707953, 0.004875985439866781, -0.0014809629647061229, -0.00451912684366107, 0.004412069451063871, 0.028211291879415512, -0.008538652211427689, 0.0192963145673275, 0.007954701781272888, 0.0020600471179932356, 0.0038248749915510416, 0.005774620454758406, 0.009563809260725975, -0.01847878471016884, 0.016298703849315643, 0.012898814864456654, 0.010712245479226112, 0.008927952498197556, 0.04199251905083656, -0.00422715162858367, 0.001896216650493443, 0.0072409845888614655, -0.012262958101928234, -0.002092488808557391, -0.004528859630227089, 0.011497333645820618, -0.011030173860490322, -0.004087652545422316, 0.0154941501095891, 0.01952989585697651, 0.01616893708705902, 0.014988059177994728, 0.002554782899096608, -0.00571298087015748, 0.020217658951878548, -0.010556524619460106, 0.012340817600488663, -0.011523286812007427, 0.010530571453273296, 0.02028254233300686, 0.005583214573562145, 0.0033934004604816437, -0.017765067517757416, -0.0013260539853945374, -0.0012303509283810854, -0.003711329074576497, 0.00757188955321908, 0.002789985155686736, 0.0015288145514205098, 0.013236207887530327, -0.019452035427093506, -0.009362670592963696, 0.013268649578094482, -0.01439113263040781, -0.002937594661489129, -0.011912587098777294, 0.00034428740036673844, 0.0022563193924725056, -0.005518331192433834, 0.027406737208366394, -0.012379747815430164, 0.014650666154921055, 0.02091839909553528, 0.008013096638023853, -0.00188161781989038, -0.009816854260861874, -0.028392964974045753, 0.004898694809526205, -0.013625508174300194, -0.011529775336384773, -0.002382841892540455, -0.011471380479633808, 0.00023074149794410914, 0.013151859864592552, -0.01136107835918665, 0.014157552272081375, -0.009206950664520264, 0.008700860664248466, -0.016986466944217682, 0.017933765426278114, 0.02662813663482666, -0.010848499834537506, -0.010880941525101662, 0.0025531607680022717, 0.005437226966023445, -0.007442122790962458, -0.0016066745156422257, 0.011503822170197964, 0.009466484189033508, 0.011445427313446999, 0.001176011166535318, -0.0032084828708320856, -0.016013216227293015, -0.026018233969807625, -0.002215767279267311, 0.0011889878660440445, -0.00466511445119977, -0.0054761567153036594, 0.0006723539554513991, 0.007039845921099186, 0.010030969977378845, 0.005599435418844223, -0.020710773766040802, -0.0017696940340101719, -0.004107117652893066, 0.007928748615086079, 0.02215118333697319, -0.00410062912851572, 0.01160114724189043, -0.0054826452396810055, -0.028107477352023125, 0.016298703849315643, -0.02034742571413517, -0.014066715724766254, -0.005446959286928177, 0.01575368270277977, 0.0009197218460030854, -0.004084408283233643, 0.0022222555708140135, -0.014689596369862556, -0.02557702548801899, -0.006196362432092428, 0.005531307775527239, 0.006923056207597256, 0.005489133298397064, -0.0100244814530015, -0.011575194075703621, 0.0015596341108903289, -0.030728766694664955, -0.00901230052113533, -0.02023063600063324, -0.010186689905822277, -0.0028743334114551544, 0.029612772166728973, -0.015104849822819233, -0.0034647721331566572, -0.0067673358134925365, 0.012892326340079308, -0.023007644340395927, 0.011354590766131878, -0.015572009608149529, -0.03127378597855568, -0.00023074149794410914, 0.002131418790668249, 0.020490169525146484, -0.009680598974227905, 0.007273426279425621, 0.0068451957777142525, 0.020736726000905037, 0.012872861698269844, -0.012957209721207619, -0.005044682417064905, 0.0035588531754910946, -0.014715549536049366, -0.014793409034609795, 0.00510307727381587, -0.009738994762301445, -0.03760640323162079, -0.0019610999152064323, 0.012580886483192444, -0.009297787211835384, -0.00559619115665555, -0.02029551938176155, -0.003685375675559044, -0.0019237920641899109, 0.003276610281318426, -0.011438938789069653, 0.025019029155373573, 0.004149291664361954, -0.0003329328028485179, 0.01755744032561779, -0.02091839909553528, 0.010108829475939274, -0.01755744032561779, -0.008220723830163479, -0.019088689237833023, -0.012866373173892498, 0.0022271217312663794, -0.0314035527408123, 0.026381580159068108, -0.01831008866429329, -0.014494946226477623, -0.027458643540740013, -0.013015604577958584, 0.012081284075975418, -0.006520778872072697, -0.01715516485273838, 0.01686967723071575, 0.008558116853237152, 0.008318048901855946, -0.005722713656723499, 0.0012116970028728247, 0.01999705657362938, -0.017544465139508247, 0.006747870706021786, 0.010666826739907265, -0.0009878493146970868, -0.008071491494774818, -0.008752766996622086, -0.0158704724162817, -0.038047611713409424, -0.011400008574128151, -0.01075117476284504, -0.009829831309616566, -0.001596131012775004, -1.543514554214198e-05, 0.007597843185067177, 0.004717021249234676, -0.01514377910643816, -0.0032717441208660603, 0.0019124374957755208, -0.015740705654025078, -0.016233820468187332, -0.015857497230172157, -0.01795971766114235, 0.037061382085084915, 0.015961309894919395, -0.017816973850131035, -0.017920788377523422, -0.01223700400441885, -0.021203886717557907, -0.0164544228464365, -0.007273426279425621, 0.01884213276207447, -0.00015906564658507705, 0.007721121422946453, 0.0027964734472334385, 0.014274341985583305, 0.010186689905822277, 0.0049506016075611115, -0.014806386083364487, 0.009570297785103321, 0.01023210771381855, -0.009135578759014606, -0.000744942226447165, -0.002455835696309805, -0.029508957639336586, 0.009103137068450451, -0.0028613568283617496, -4.673630610341206e-05, 0.008272630162537098, 0.002691037952899933, -0.0031095356680452824, -0.006708940956741571, 0.016350610181689262, 0.022812994197010994, -0.008149351924657822, -0.016584189608693123, 0.026835763826966286, 0.0010292124934494495, 0.013151859864592552, 0.0031127799302339554, 0.015286522917449474, -0.023578617721796036, 0.012509514577686787, -0.005833015311509371, -0.010348898358643055, 0.009472972713410854, 0.005544284358620644, 0.01116642914712429, 0.019893242046236992, -0.0233061071485281, -0.02953491173684597, -0.000526366347912699, -0.0014631201047450304, -0.0016066745156422257, -0.011322149075567722, -0.013988855294883251, -0.00022506419918499887, -0.0063228849321603775, 0.025745723396539688, -0.014624712988734245, -0.008097444660961628, 0.01709028147161007, -0.011497333645820618, 0.0007068232516758144, -0.00020681574824266136, 0.007630284875631332, -0.00023297186999116093, 0.022709181532263756, 0.013729321770370007, 0.020438263192772865, 0.030598999932408333, -0.017414698377251625, 0.005064147524535656, -0.014040762558579445, 0.007507006172090769, 0.009855784475803375, -0.01673991046845913, -0.017881857231259346, 0.020477192476391792, -0.0053139482624828815, -0.02714720368385315, -0.01099124364554882, 0.0015109715750440955, -0.0007416980806738138, -0.01011531800031662, 0.016091076657176018, -0.01250302605330944, 0.005038193892687559, 0.025797629728913307, 0.0005304215592332184, 0.0024493474047631025, -0.04458785429596901, -0.0059238518588244915, -0.017025398090481758, -0.0007279103738255799, 0.03179285302758217, -0.005135518964380026, 0.0018572865519672632, 0.014183505438268185, 0.020736726000905037, -0.005278262309730053, -0.032000478357076645, 0.0009026899351738393, 0.02477247267961502, -0.008214235305786133, 0.020204681903123856, 0.006394256372004747, -0.004220663569867611, 0.0002767681435216218, 0.009687087498605251, -0.004804614000022411, 0.010271037928760052, -0.013872065581381321, -0.0065986393019557, 0.01502698939293623, -0.01243814267218113, 0.00422715162858367, 0.0008734924485906959, -7.760660082567483e-05, 0.01340490486472845, 0.003026809310540557, 0.0001406144438078627, -0.008785208687186241, 0.004324476700276136, 0.010361874476075172, 0.01128321886062622, -0.009018789045512676, -0.0009610849665477872, 0.01331406831741333, -0.02953491173684597, 0.0014801520155742764, 0.011419474147260189, -0.013742298819124699, -0.03830714523792267, -0.012081284075975418, -0.002228743862360716, 0.006115258205682039, 0.00549562182277441, -0.016480376943945885, -0.008369955234229565, 0.016597166657447815, -0.0014493323396891356, 0.007617308292537928, 0.004308255854994059, -0.027017436921596527, 0.015727730467915535, -0.013378951698541641, 0.003769723931327462, 0.0014858292415738106, 0.001815112424083054, -0.017816973850131035, 0.006283954717218876, 0.010472176596522331, -0.016065122559666634, 0.00639750063419342, -0.00031772576039656997, 0.013119418174028397, -0.017077304422855377, -0.02365647815167904, -0.0018167344387620687, 0.0080195851624012, -0.011471380479633808, 0.00606010714545846, -0.014741502702236176, 0.01580558903515339, -0.021878674626350403, -0.00534963421523571, 0.01627274975180626, -0.009168020449578762, 0.008421861566603184, 0.021722953766584396, 0.02400684915482998, -0.010848499834537506, 0.018517715856432915, -0.0335836336016655, -0.005670806858688593, 0.0017453627660870552, 0.004590498749166727, -0.01976347528398037, -0.01785590499639511, -0.002618044149130583, 0.007364262826740742, 0.011315660551190376, 0.0035945388954132795, 0.008447815664112568, 0.01322323177009821, 0.003724305657669902, -0.015974286943674088, -0.011581682600080967, -0.03145546093583107, -0.004428290296345949, 0.022968715056777, 0.02074970304965973, -0.00276078749448061, 0.00026723838527686894, 0.00971304066479206, 0.011056127026677132, 0.008863069117069244, 0.02268322743475437, 0.015078895725309849, -0.013391928747296333, 0.027977710589766502, -0.01616893708705902, -0.00048743633669801056, 0.0052587976679205894, 0.011406497098505497, 0.0091874860227108, -0.01760934852063656, 0.013716345652937889, 0.011367566883563995, 0.005969270598143339, -0.005557260941714048, -0.001854042406193912, -0.022060347720980644, -0.009083672426640987, -0.03244168683886528, -0.012736606411635876, -0.009726017713546753, 0.014754478819668293, 0.001904327073134482, -0.025680840015411377, -0.0068581728264689445, -0.007000916171818972, 0.01287935022264719, -0.00022202279069460928, 0.025602979585528374, -0.008830627426505089, -0.021787837147712708, -0.027536503970623016, 0.013936948962509632, 0.0072409845888614655, -0.00750051811337471, 0.013495741412043571, -0.007046334445476532, -0.007896306924521923, -0.006215827073901892, -0.010011504404246807, -0.0001708257623249665, -0.006468872539699078, -0.006196362432092428, 0.0017696940340101719, -0.002116820076480508, 0.014676619321107864, -0.014040762558579445, -0.02378624491393566, -0.020957330241799355, -0.010653849691152573, 0.017687207087874413, 0.004879229702055454, 0.02039933204650879, -0.019348222762346268, -0.006773824337869883, -0.0018297111382707953, -0.026602182537317276, 0.003172796918079257, -0.005894654430449009, -0.006974962539970875, 0.0016723689623177052, 0.010530571453273296, -2.724594742176123e-05, 0.0040292576886713505, -0.01223700400441885, -0.006949009373784065, 0.005193914286792278, 0.009758459404110909, 0.002313092350959778, -0.02597930282354355, -0.013106441125273705, 0.008369955234229565, -0.007286402862519026, -0.012301887385547161, 0.013508718460798264, -0.0033204066567122936, 0.005609167739748955, -0.00591411953791976, 0.012256469577550888, 0.007558912970125675, -0.013255673460662365, 0.004746218677610159, -0.0032506571151316166, 0.007176101207733154, -9.524676715955138e-05, -0.0017340081976726651, 0.016376564279198647, 0.022631321102380753, -0.03511488065123558, -0.004207686986774206, -0.029664678499102592, 0.023708384484052658, -0.019893242046236992, -0.0009700064547359943, 0.014598758891224861, 0.0028159385547041893, 0.005200402345508337, 0.013229720294475555, -0.008142863400280476, 0.008415373973548412, 0.017985671758651733, 0.0011086947051808238, -0.004996019881218672, -0.009777924045920372, -0.008973370306193829, 0.003399888752028346, -0.007519983220845461, -0.014378155581653118, 0.015740705654025078, 0.019867289811372757, -0.012457608245313168, 0.005408029071986675, 0.01568879932165146, 0.026251813396811485, -0.01511782594025135, 0.012249981053173542, -0.0017340081976726651, 0.0109004070982337, -0.0037567473482340574, -0.0033869121689349413, -0.0004456676833797246, 0.012022889219224453, 0.014767455868422985, -0.005557260941714048, -0.03353172913193703, -0.013534671626985073, -0.022864900529384613, 0.0154941501095891, 0.021022213622927666, 0.02093137614428997, -0.018634505569934845, 0.014313272200524807, 0.004584010224789381, 0.013093465007841587, -0.000397613417590037, -0.010705756954848766, -0.004269326105713844, 0.01331406831741333, -0.004064943175762892, -0.01171793695539236, 0.002001652028411627, -0.01615596003830433, 0.0018556645372882485, -0.010043946094810963, -0.0020048962906003, -0.016675027087330818, -0.020074915140867233, -0.004175245296210051, 0.0004987909342162311, 0.026887670159339905, 0.01302209310233593, 7.461587665602565e-05, 0.00285649043507874, 0.016142982989549637, 0.002694282215088606, 0.023916011676192284, -0.005502110347151756, -0.0034128655679523945, 0.014611735939979553, -0.02372136153280735, 0.027821991592645645, 0.010173712857067585, -0.023332061246037483, -0.020892446860671043, -0.005437226966023445, 0.009278322570025921, 0.022021416574716568, 0.018673434853553772, -0.010082876309752464, -0.011348102241754532, 0.025434283539652824, 0.015662847086787224, 0.005352878477424383, 0.00025527551770210266, 0.009375647641718388, -0.016532283276319504, 0.006258001551032066, -0.0038638049736618996, -0.0016293837688863277, 0.004937624558806419, 0.012230516411364079, 0.0216321162879467, -0.0006354515207931399, -0.0066213482059538364, -0.003503702115267515, 0.00745509983971715, -0.025135818868875504, 0.0005417761858552694, 0.012846908532083035, 0.004019524902105331, -0.016194889321923256, 0.017194094136357307, 0.010803082026541233, -0.017051350325345993, -0.02499307505786419, -0.006994427647441626, -0.014793409034609795, -0.024512939155101776, 0.014663642272353172, 0.007065799552947283, -0.00018015273963101208, -0.01744065061211586, 0.012172120623290539, 0.00840239692479372, -0.003721061395481229, 0.03093639202415943, 0.018971899524331093, 6.43257808405906e-05, 0.007539447862654924, -0.018932968378067017, 0.004590498749166727, -0.007883329875767231, -0.003549120621755719, 0.012288911268115044, -0.006069839466363192, -0.021359607577323914, 0.015623916871845722, 0.011886633932590485, 0.01692158356308937, -0.007701656315475702, 0.008233699947595596, 0.0038897583726793528, 0.0030462744180113077, -0.00664405757561326, -0.016662050038576126, 0.013352998532354832, 0.0002542617148719728, -0.011153452098369598, 0.0034712604247033596, -0.02133365347981453, 0.013171324506402016, 0.02727697044610977, 0.0039416649378836155, -0.0023893301840871572, 0.017868882045149803, 0.01877724938094616, -0.00808446854352951, 0.0012287289137020707, 0.01313888281583786, -0.005365855060517788, 0.03272717446088791, -0.011419474147260189, -0.0016918339533731341, -0.003562097204849124, 0.0014712305273860693, -0.008551628328859806, -0.00029116414953023195, 0.0076886797323822975, 0.002470434410497546, -0.005242576822638512, 0.011834727600216866, 0.015974286943674088, 0.0016918339533731341, 0.005953049752861261, 0.006682987324893475, 0.004908427130430937, 0.011737402528524399, 0.005099833011627197, -0.0050901006907224655, -0.0016456046141684055, -0.006760847754776478, 0.012282422743737698, -0.015883449465036392, -0.004704044666141272, -0.00921343918889761, 0.009044742211699486, -0.0004184977733530104, -0.0007202054257504642, -0.006082816515117884, 0.009155044332146645, 0.0011995313689112663, 0.0204642154276371, 0.00039578857831656933, -0.01651930622756481, 0.002880821703001857, -0.0034874812699854374, 0.018868084996938705, 0.03135164454579353, -0.0051712049171328545, -0.0032165932934731245, 0.014378155581653118, -0.016778839752078056, -0.0007550802547484636, -0.021359607577323914, -0.01389801874756813, -0.015844520181417465, 0.011815262027084827, 0.01191907562315464, -7.035790622467175e-05, -0.015247592702507973, -0.0035296555142849684, -0.030443279072642326, -9.18505247682333e-05, -0.018816178664565086, 0.0005912497290410101, -0.02727697044610977, -0.002421771874651313, 0.008324536494910717, -0.032000478357076645, -0.019387152045965195, 0.020853515714406967, 0.025719769299030304, 0.0094794612377882, -0.015662847086787224, -0.023799221962690353, -0.013106441125273705, 0.00752647127956152, 0.011451915837824345, -0.01151031069457531, 0.0026764392387121916, 0.008850092068314552, -0.015714753419160843, -0.017765067517757416, 0.008344002068042755, 0.018115438520908356, -0.01023210771381855, -0.03187071159482002, -0.013391928747296333, -0.005255553405731916, 0.0177910216152668, 0.004983043298125267, 0.0024428591132164, 0.009758459404110909, 0.0014501434052363038, -0.02181379124522209, -0.024902239441871643, -0.005385320167988539, 0.01020615454763174, -0.01622084341943264, -0.01797269470989704, 0.027225064113736153, 0.008759255520999432, 0.0020989771001040936, 0.012840420007705688, 0.005145251750946045, -0.014157552272081375, 0.023695407435297966, -0.012081284075975418, 0.001321998774074018, -0.019633708521723747, -0.005200402345508337, 0.027432691305875778, -0.0029667923226952553, 0.018102461472153664, -0.016778839752078056, 0.010011504404246807, 0.0051679606549441814, 0.008298583328723907, -0.006030909717082977, 0.008415373973548412, 0.007987143471837044, -0.017570417374372482, -0.007429146207869053, 0.005557260941714048, -0.0016983223613351583, 0.003189017763361335, -0.024902239441871643, -0.021307699382305145, -0.013988855294883251, 0.00033901561982929707, 0.0014988059410825372, -0.013677415437996387, 0.01901082880795002, -0.010744687169790268, 0.010043946094810963, -0.003604271449148655, 0.03303861245512962, 0.0060990373603999615, -0.0065986393019557, -0.017116233706474304, 0.007481053005903959, 0.009745482355356216, -0.023383967578411102, -0.016000239178538322, -0.007896306924521923, 0.008460791781544685, 0.013132395222783089, -0.0035588531754910946, 0.01628572680056095, 0.006283954717218876, 0.008486744947731495, -0.02307252772152424, -0.03000207245349884, 0.03052113950252533, -0.00696198595687747, -0.02971658483147621, 0.0037956773303449154, -0.02273513376712799, -0.008953905664384365, -0.004992775619029999, -0.00485652033239603, 0.004541836213320494, 0.028522731736302376, 0.00752647127956152, -0.008045538328588009, -0.0013325422769412398, 0.005112810060381889, 0.00808446854352951, 0.03599729761481285, 0.013716345652937889, 0.009589762426912785, -0.013508718460798264, -0.003506946377456188, -0.02634264901280403, 0.002898664679378271, 0.013534671626985073, -0.00437313923612237, -0.001123293419368565, 0.007390216458588839, 0.007967677898705006, 0.007727609947323799, 0.020555052906274796, -0.00667001074180007, 0.02011384628713131, -0.004353674594312906, -0.015533079393208027, -0.021411513909697533, 0.006608371622860432, -0.004207686986774206, 0.0009132334962487221, -0.013158348388969898, -0.0019497453467920423, 0.0020259832963347435, -0.0012465717736631632, 0.005206890869885683, -0.017025398090481758, -0.004596987273544073, -0.010965290479362011, 0.02220309153199196, -0.0030154548585414886, -0.0158704724162817, 0.0076043312437832355, 0.014261365868151188, 0.014832339249551296, 0.01773911528289318, 0.00874627847224474, -0.0042531052604317665, 0.008960394188761711, -0.019439058378338814, -0.012743094936013222, 0.005998468026518822, 0.0028094500303268433, -0.02854868397116661, 0.0014501434052363038, 0.008616511709988117, 0.025966325774788857, -0.007435634732246399, 0.018361994996666908, 0.0032863428350538015, 0.008934441022574902, -0.0160391703248024, -0.0002865006390493363, 0.013936948962509632, 0.02390303462743759, 0.008506210520863533, -0.005554016679525375, -0.011990447528660297, -0.010556524619460106, 0.01936119794845581, -0.012671723030507565, 0.006209339015185833, 0.01965966261923313, -0.009927156381309032, 0.0094794612377882, 0.00491167139261961, -0.014715549536049366, 0.0037599916104227304, -0.0065467325039207935, 0.016986466944217682, -0.009356182999908924, 0.0012481939047574997, -0.014780432917177677, -0.005064147524535656, 0.006832219194620848, -0.03534846380352974, -0.008006608113646507, -0.023111457005143166, -0.0010373229160904884, -0.0033706913236528635, -0.009602739475667477, 0.022916806861758232, -0.0030478965491056442, -0.013327045366168022, -0.008947417140007019, -0.009557320736348629, -0.008668418973684311, 0.00034266532748006284, 0.013015604577958584, -0.015597962774336338, -0.005528063513338566, -0.009362670592963696, -0.004450999666005373, 0.0003343521384522319, 0.009790901094675064, 0.002231988124549389, 0.01917952485382557, 0.0028921763878315687, 0.014754478819668293, -0.0016423603519797325, 0.020386356860399246, -0.0042531052604317665, -0.00930427573621273, -0.017700184136629105, -0.02168402448296547, -0.012717141769826412, 0.003727549919858575, 0.006884125992655754, 0.02442210167646408, -0.01795971766114235, 0.014780432917177677, -0.014637689106166363, 0.018180321902036667, 0.0027802526019513607, 0.01052408292889595, 0.019906219094991684, 0.011685495264828205, 0.024629728868603706, 0.0025077424943447113, 0.00520364660769701, -0.0008378065540455282, 0.00982334278523922, 0.0036983522586524487, 0.004376383498311043, -0.0002931917551904917, -0.0027737643104046583, -0.01238623633980751, -0.00046594373998232186, -0.0022173894103616476, 0.0028013396076858044, -0.006475360598415136, -0.019672639667987823, 0.019672639667987823, -0.004107117652893066, -0.017998648807406425, 0.01860855147242546, 0.000865382025949657, 0.012165633030235767, -0.006799777504056692, -0.0263945572078228, 0.007331821136176586, 0.02260536700487137, 0.01331406831741333, -0.002249831100925803, 0.010660338215529919, -0.013962902128696442, -0.006923056207597256, 0.03116997331380844, 0.02435721829533577, -0.016194889321923256, -0.003044652286916971, -0.0010648983297869563, -0.0032474128529429436, -0.005119298119097948, 0.0021525060292333364, -0.012249981053173542, 0.009907690808176994, 0.00019363632600288838, -0.012035866267979145, -0.007189077790826559, 0.006183385383337736, 0.017881857231259346, 0.010225620120763779, 0.020386356860399246, 0.0019416349241510034, -0.009959598071873188, 0.02378624491393566, -0.04220014810562134, -0.008421861566603184, -0.013255673460662365, 0.007701656315475702, -0.004986287094652653, 0.0003185368259437382, 0.0036594222765415907, 0.014845316298305988, 0.007176101207733154, -0.004405580926686525, -0.018037578091025352, 0.002841891720890999, -0.0039351764135062695, -0.004259593319147825, 0.016428470611572266, 0.005018728785216808, 0.008914975449442863, 0.015169733203947544, -0.01153626386076212, 0.016078099608421326, -0.008233699947595596, -0.009576786309480667, -0.005216623190790415, 0.005599435418844223, -0.03075471892952919, -0.0176223237067461, -0.006358570884913206, 0.026303719729185104, 0.004801369737833738, -0.01592238061130047, -0.0309883002191782, -0.00559619115665555, -0.011555728502571583, 0.012710653245449066, -0.012717141769826412, -0.0011387031991034746], "15df1912-ef86-400e-8613-63812935df4c": [-0.01311817578971386, -0.018918242305517197, -0.0018196814926341176, 0.027854641899466515, -0.012795950286090374, 0.004145973827689886, 0.009366033598780632, 0.022255070507526398, -0.06249751150608063, 0.03227987885475159, 0.027267474681138992, 0.018459966406226158, 0.010425799526274204, -0.009466282092034817, -0.01825946941971779, 0.0245894193649292, -0.0007809503586031497, 0.01466486044228077, -0.0011179449502378702, -0.00979566853493452, 0.06484618037939072, -0.03820883482694626, -0.02448917180299759, -0.003025343408808112, 0.001752551062963903, -0.007898115552961826, -0.023057056590914726, 0.00979566853493452, -0.04144541546702385, -0.0012853234075009823, 0.014679181389510632, 0.012681380845606327, 0.007235762197524309, 9.040227450896055e-05, -0.019218986853957176, -0.019290592521429062, 0.011528528295457363, -0.02310001850128174, -0.0015959134325385094, 0.017342915758490562, -0.001868910389021039, 0.01244508195668459, 0.02085159905254841, -0.025019053369760513, -0.06484618037939072, 0.022670384496450424, -0.022670384496450424, 0.012645578011870384, 0.03236580640077591, -0.010218142531812191, 0.0010168018052354455, 0.02204025350511074, -0.017271310091018677, 0.012344833463430405, 0.04399457946419716, -0.04092985391616821, 0.013626576401293278, 0.031334683299064636, -0.01950540952384472, -0.04668695852160454, 0.009852953255176544, -0.018216505646705627, -0.007432678248733282, -0.029100582003593445, -0.021567655727267265, -0.027066979557275772, 0.010719383135437965, -0.03485768660902977, -0.028986012563109398, -0.009480603039264679, -0.03230851888656616, 0.002731759799644351, -0.044051866978406906, -0.005495742429047823, 0.013239906169474125, -0.004665115382522345, 0.05997698754072189, 0.00880034826695919, 0.017357237637043, -0.026150424033403397, -0.02384471893310547, -0.030045777559280396, 0.00039427922456525266, -0.015610056929290295, 0.07040278613567352, 0.001313965767621994, 0.04837685450911522, -0.02852773666381836, -0.003992021549493074, -0.015309312380850315, -0.008814669214189053, -0.0221405029296875, -0.009580851532518864, -0.012609775178134441, -0.014722145162522793, 0.012072731740772724, -0.014192262664437294, 0.0008516610250808299, 0.01910441741347313, -0.030847763642668724, 0.0031989875715225935, 0.00033296679612249136, -0.0019279852276667953, -0.02658005990087986, 0.026837840676307678, 0.00628340570256114, -0.028198350220918655, 0.02772575244307518, -0.012402118183672428, 0.039268601685762405, -0.01483671460300684, -0.03975551947951317, 0.034628547728061676, 0.007661816664040089, -0.04259110987186432, -0.013239906169474125, -0.026150424033403397, -0.02334347926080227, 0.01984911784529686, -0.0415026992559433, 0.010461602360010147, 0.03230851888656616, -0.016526609659194946, 0.007153415586799383, -0.017285631969571114, 0.010977163910865784, 0.017987368628382683, 0.0006350536132231355, 0.021725188940763474, -0.02095184661448002, -0.01326854806393385, 0.01685599610209465, 0.02188272215425968, 0.04843413829803467, 0.005366852041333914, 0.02049356885254383, 0.029587501659989357, 0.006304887589067221, -0.04052886366844177, 0.04279160499572754, -0.03795105591416359, -0.027109941467642784, -0.022512851282954216, 0.018817994743585587, 0.008965041488409042, 0.00026941669057123363, -0.06054983288049698, 0.03903946280479431, -0.04556990787386894, 0.03185024484992027, -0.04419507831335068, -0.026522774249315262, 0.011156178079545498, -0.003125591669231653, 0.0734388679265976, -0.003045035060495138, -0.02613610401749611, 0.019018491730093956, 0.0073181092739105225, 0.034743115305900574, 0.038867607712745667, -0.04204690456390381, -0.007135514169931412, 0.04253382235765457, -0.01974887028336525, 0.02698105201125145, 0.05633941665291786, 0.025563256815075874, -0.011184819974005222, 0.030303558334708214, -0.025749431923031807, -0.006924277171492577, 0.03734956681728363, -0.0014455413911491632, 0.0254773311316967, -0.022727670148015022, 0.042218759655952454, 0.029358362779021263, 0.032995935529470444, -0.013870036229491234, -0.02867094799876213, -0.005209319293498993, 0.0009711531456559896, 0.010798148810863495, 0.024317316710948944, 0.010103573091328144, -0.01960565894842148, 0.01316113956272602, 0.004375112242996693, -0.004980180878192186, 0.015266348607838154, 0.0051914178766310215, 0.017586374655365944, 8.917155355447903e-05, -0.02499041147530079, 0.001910083694383502, 0.026866482570767403, 0.030790477991104126, -0.006269084755331278, 0.008571210317313671, -0.03216530755162239, -0.026093140244483948, -0.020121220499277115, 0.025162264704704285, -0.018230827525258064, -0.011184819974005222, -0.018374038860201836, -0.05719868466258049, 0.004683016799390316, -0.03434212505817413, 0.030103063210844994, -0.016927601769566536, 0.007156996056437492, 0.0029197249095886946, 0.0009568320238031447, -0.021209627389907837, -0.002237680135294795, 0.0013918370241299272, 0.0027944149915128946, -0.018130579963326454, -0.03517274931073189, 0.032594945281744, -0.02589264325797558, -0.017042171210050583, -0.06902795284986496, -0.007683298550546169, -0.005087589379400015, 0.0007429097895510495, -0.03147789463400841, -0.0046185716055333614, -0.036375727504491806, 0.014722145162522793, -0.022670384496450424, 0.016727106645703316, -0.02234099805355072, 0.05536557734012604, 0.013633737340569496, 0.0016997418133541942, -0.007926758378744125, -0.007805028464645147, 0.008155896328389645, 0.014679181389510632, -0.021166663616895676, -0.0007442524074576795, 0.025262514129281044, 0.005348950624465942, 0.02139580249786377, 0.05656855180859566, -0.011628775857388973, -0.026150424033403397, -0.035373248159885406, 0.03700586035847664, -0.018144899979233742, -0.012480884790420532, -0.011779148131608963, 0.021753830835223198, 0.0335974246263504, -0.014750787056982517, 0.011936680413782597, -0.0016102346125990152, 0.02752525545656681, 0.03096233308315277, -0.004668695852160454, 0.014793750829994678, 0.03379791975021362, -0.0298739243298769, 0.005442038178443909, -0.017271310091018677, 0.03425619751214981, 0.029444290325045586, -0.021123699843883514, -0.03156382218003273, -0.0005263023776933551, -0.000683835067320615, 0.00320972828194499, -0.02722451090812683, 0.02613610401749611, -0.011428279802203178, 0.05055366829037666, -0.020235788077116013, -0.01661253720521927, 0.006394394673407078, 0.015724625438451767, 0.022169144824147224, 0.05788609758019447, -0.017085134983062744, -0.06971537321805954, 0.005252282600849867, -0.06003427132964134, -0.012803110294044018, -0.004027824383229017, -0.010132215917110443, 0.012774468399584293, 0.03918267413973808, 0.020822955295443535, -0.013196942396461964, 0.014170780777931213, -0.003517633071169257, -0.007948239333927631, -0.0015547401271760464, 0.018889600411057472, 0.007128353696316481, 0.00025196277420036495, -0.011349513195455074, 0.0462859645485878, -0.013827073387801647, 0.05865944176912308, -0.014765108935534954, -0.04004194214940071, 0.016741426661610603, 0.049092911183834076, 0.002361200051382184, -0.05147022381424904, 0.033740635961294174, -0.005918216425925493, 0.019978007301688194, -0.030733194202184677, 0.019276272505521774, -0.03554509952664375, -0.0125453295186162, 0.013512007892131805, -0.008442319929599762, -0.05301690846681595, -0.013211263343691826, 0.004099430050700903, -0.04164591059088707, 0.036776721477508545, -0.03755006194114685, -0.0018492188537493348, -0.05012403428554535, -0.02557757869362831, -0.018832316622138023, -0.010690740309655666, -0.017643660306930542, -0.04072935879230499, -0.023902004584670067, -0.054133959114551544, -0.004292765632271767, -0.002115950221195817, -0.03903946280479431, -0.004264123272150755, -0.015294991433620453, 0.01979183219373226, -0.011127535253763199, 0.007124773692339659, -0.022870881482958794, 0.03586016595363617, 0.028198350220918655, -0.02828427590429783, -0.0037270800676196814, 0.0009062604513019323, -0.008055648766458035, 0.06914252787828445, -0.03525867685675621, 0.018631819635629654, -0.008163057267665863, -0.004980180878192186, -0.009702580980956554, -0.016827354207634926, -0.016583895310759544, 0.008922077715396881, -0.041073065251111984, 0.015065852552652359, -0.007253664080053568, 0.0020013810135424137, 0.03081911988556385, -0.050095390528440475, -0.029444290325045586, 0.010690740309655666, -0.0327095128595829, -0.04178912192583084, -0.011428279802203178, 0.040872570127248764, -0.015252027660608292, -0.022426925599575043, -0.04058614745736122, 0.04078664258122444, -0.019834795966744423, -0.016039691865444183, 0.010232463479042053, 0.02887144312262535, 0.01815922185778618, -0.014170780777931213, 0.013318671844899654, 0.018932564184069633, 0.04307802766561508, -0.00835639238357544, 0.013103854842483997, 0.02204025350511074, 0.003963379189372063, -0.020035292953252792, 0.01770094409584999, -0.024217069149017334, -0.006233281921595335, -0.03007442131638527, -0.00965245719999075, 0.008793187327682972, 0.004969439934939146, -0.023902004584670067, 0.007898115552961826, 0.03540188819169998, -0.02627931535243988, -0.006405135616660118, 0.0067022996954619884, 0.008198860101401806, 0.00557450857013464, -0.02123826928436756, 0.008406517095863819, 0.02204025350511074, -0.012982125394046307, 0.02188272215425968, -7.72559069446288e-05, 0.02593560703098774, 0.017128098756074905, 0.010561849921941757, 0.028055138885974884, -0.02463238313794136, 0.05780017375946045, -0.003333248198032379, -0.04362223297357559, 0.03732092306017876, 0.03955502435564995, -0.015022888779640198, 0.010611974634230137, 0.01979183219373226, 0.016383398324251175, 0.010776667855679989, 0.018560213968157768, 0.015123137272894382, -0.040758002549409866, 0.00171137775760144, 0.009093931876122952, -0.016197223216295242, -0.008155896328389645, 0.01934787817299366, 0.018674783408641815, 0.010375674813985825, 0.0010705061722546816, -0.007461320608854294, -0.00907961092889309, -0.012215943075716496, 0.040414292365312576, -0.012609775178134441, -0.020135540515184402, -0.039526380598545074, -0.011729024350643158, -0.011521367356181145, 0.019877759739756584, 0.016598215326666832, -0.014600414782762527, 0.007840830832719803, 0.004138813354074955, -0.01147124357521534, -0.008091451600193977, -0.004435976967215538, 0.002873181365430355, -0.01301792822778225, -0.03101961687207222, 0.014349794946610928, -0.06994450837373734, -0.015624377876520157, 0.02708129957318306, 0.02274199016392231, 0.012008287012577057, 0.01800168864428997, -0.015667341649532318, 0.012230264022946358, 0.0374927781522274, 0.010733704082667828, -0.0017256989376619458, -0.00383448856882751, 0.014464364387094975, 0.01699920743703842, 0.012459402903914452, 0.014593254774808884, -0.01860317774116993, -0.009709741920232773, -0.010246784426271915, 0.018187863752245903, -0.018087616190314293, 0.012781628407537937, -0.0462859645485878, 0.011786309070885181, -0.0020711966790258884, 0.00027903870795853436, -0.022326678037643433, 0.03391249105334282, -0.01805897429585457, -0.005828709341585636, -0.03225123509764671, 0.03686264902353287, 0.02254149504005909, 0.0073682330548763275, 0.016841676086187363, 0.014464364387094975, -0.03520139306783676, 0.014213744550943375, -0.01212285552173853, -0.003025343408808112, -0.007182057946920395, 0.009695420041680336, -0.025806717574596405, -0.008657136932015419, -0.022627420723438263, 0.01689895987510681, 0.019376520067453384, -0.034685831516981125, 0.006591310724616051, 0.021710867062211037, -0.04110170900821686, -0.054334454238414764, 0.07200675457715988, -0.05267319828271866, 0.009451961144804955, 0.03809426724910736, -0.014013247564435005, -0.02961614355444908, -0.011098893359303474, 0.04534076899290085, 0.019877759739756584, -0.0008364448440261185, -0.008936399593949318, -0.0029268856160342693, 0.01770094409584999, -0.0008279416360892355, -0.012201622128486633, -0.0062189605087041855, -0.026164745911955833, -2.246071380795911e-05, -0.011263586580753326, -0.004160294774919748, 0.02423139102756977, -0.03955502435564995, 0.0006175996968522668, 0.03588880971074104, -0.015166101045906544, 0.012158658355474472, 0.01705649308860302, -0.0026386724784970284, 0.028713911771774292, -0.03339692950248718, -0.006279825698584318, -0.030188990756869316, 0.0027836740482598543, -0.022899523377418518, 0.02194000594317913, -0.020321715623140335, 0.01665550097823143, -0.004801166243851185, 0.02318594604730606, -0.032136667519807816, 0.03107690066099167, -0.04880648851394653, 0.016583895310759544, 0.008392195217311382, 0.0033923231530934572, -0.01890392228960991, 0.009043808095157146, -0.014851035550236702, -0.018989847972989082, -0.03096233308315277, 0.016268828883767128, 0.004700918216258287, 0.011507046408951283, -0.005141293630003929, 0.009430479258298874, -0.003156024031341076, 0.011220622807741165, -0.009144055657088757, 0.013304350897669792, -0.001357824308797717, -0.007805028464645147, 0.03654758259654045, 0.011929520405828953, -0.004976600408554077, 0.00994604080915451, 0.011413958854973316, -0.005424136761575937, -0.044109150767326355, -0.006193898618221283, 0.016641179099678993, -0.009036647155880928, -0.003805846441537142, -0.012917679734528065, 0.013769788667559624, 0.017815513536334038, -0.01760069653391838, -0.034284841269254684, -0.007361072581261396, 0.016526609659194946, 0.017529090866446495, 0.005954019259661436, -0.031449250876903534, 0.012652738019824028, -0.013648058287799358, 0.01142111886292696, -0.0008503184653818607, 0.044166434556245804, -0.0015565302455797791, 0.007310948334634304, 0.021266911178827286, 0.034485336393117905, 0.011979644186794758, -0.0017051122849807143, -0.0367194339632988, 0.020622460171580315, -0.020808635279536247, 0.00897220242768526, -0.01854589208960533, 0.006183157674968243, 0.0015601105988025665, -0.0062726647593081, 0.023902004584670067, -0.019376520067453384, 0.026150424033403397, -0.004310667049139738, 0.0030199731700122356, 0.009996164590120316, 0.006451679393649101, 0.01149272546172142, 0.011643096804618835, -0.027740072458982468, 0.0616382397711277, 0.012079892680048943, 0.024073857814073563, 0.010017646476626396, -0.005320308264344931, 0.004031404387205839, -0.0016102346125990152, 0.05619620159268379, -0.025749431923031807, -0.014170780777931213, -0.007547247689217329, -0.010862594470381737, -0.005878833122551441, -0.008069969713687897, -0.0025223130360245705, 0.017715265974402428, -0.01745748519897461, 0.0056425342336297035, 0.00025688568712212145, 0.02748229168355465, -0.015982406213879585, 0.05748510733246803, -0.014979925937950611, 0.03285272419452667, -0.025520294904708862, 0.04399457946419716, 0.014392758719623089, 0.021309874951839447, -0.022111859172582626, -0.004031404387205839, -0.0016791551606729627, 0.018975527957081795, 0.013784109614789486, -0.023271873593330383, -0.01356213167309761, -0.011807790026068687, -0.016168581321835518, 0.013032249175012112, 0.03520139306783676, -0.005578089039772749, 0.004085108637809753, 0.009494923986494541, -0.004031404387205839, 0.021968647837638855, 0.014063372276723385, -0.014679181389510632, 0.027353402227163315, 0.009265786036849022, -0.008363553322851658, -0.02543436735868454, 0.026150424033403397, -0.004385853186249733, -0.01695624552667141, -0.005502902902662754, 0.006476741284132004, -0.007353912107646465, -0.013834233395755291, 0.010125054977834225, 0.009280106984078884, -0.006290566176176071, -0.01669846475124359, -0.0035230035427957773, -0.03944045305252075, 0.004307086579501629, -0.036032021045684814, 0.013490526005625725, -0.019677264615893364, -0.010783827863633633, -0.016870317980647087, 0.012631257064640522, -0.02378743514418602, 0.018760710954666138, -0.022426925599575043, -0.008112933486700058, -0.0015941233141347766, -0.018130579963326454, 0.03245173394680023, 0.006487482227385044, -0.04551262408494949, -0.026694629341363907, 0.003866711165755987, -0.006526865530759096, -0.0013443982461467385, 0.009480603039264679, -0.03021763265132904, -0.008922077715396881, -0.011242104694247246, 0.005782165564596653, 0.02149605005979538, 0.009129734709858894, -0.019218986853957176, 0.0022215687204152346, -0.014328313060104847, 0.03262358531355858, -0.035373248159885406, -0.009824310429394245, 0.0021517532877624035, 0.02693808823823929, -0.01974887028336525, 0.02647981233894825, -0.020622460171580315, -0.03895353525876999, -0.025520294904708862, -0.008284786716103554, -0.0060148839838802814, 0.010876915417611599, -0.016369078308343887, -0.0004045725509058684, 0.0017776130698621273, -0.00937319453805685, 0.014099175110459328, 0.002468608785420656, 0.001694371341727674, -0.03654758259654045, -0.01999232918024063, 0.021968647837638855, 0.04345037788152695, -0.033683352172374725, -0.024260032922029495, 0.03245173394680023, 0.030704552307724953, -0.02493312768638134, -0.001604864140972495, -0.013726824894547462, 0.04966575652360916, -0.0008216761634685099, -0.03339692950248718, -0.004056466743350029, 0.05287369713187218, -0.019677264615893364, 0.04359358921647072, 0.02075134962797165, -0.015796231105923653, -0.016984887421131134, 0.03216530755162239, 0.020765671506524086, -0.026895124465227127, 0.02085159905254841, -0.0008834361215122044, -0.008012684993445873, -0.013905839063227177, -0.01565301977097988, -0.006068588700145483, 0.005578089039772749, 0.011979644186794758, 0.007307368330657482, 0.027911927551031113, -0.014106335118412971, 0.02897169254720211, -0.012710022740066051, 0.04886377230286598, 0.02758254110813141, -0.028040817007422447, -0.0025760172866284847, -0.0010051658609881997, -0.006186738144606352, -0.03689128905534744, -0.011786309070885181, -0.03694857284426689, -0.034685831516981125, 0.003963379189372063, -6.880866567371413e-05, 0.040271081030368805, -0.03881032392382622, 0.022111859172582626, 0.0005307777319103479, -0.025420045480132103, 0.000522274523973465, 0.02816970832645893, 0.0187463890761137, 0.018016010522842407, 0.001542209181934595, 0.008091451600193977, -0.012810271233320236, -0.0053167277947068214, -0.0017802983056753874, -0.008721581660211086, -0.00907961092889309, -0.016397720202803612, -0.0010722962906584144, 0.018932564184069633, 0.04373680055141449, 0.022899523377418518, -0.01605401188135147, -0.009609493426978588, 0.018817994743585587, -0.014736466109752655, 0.026651665568351746, -0.026093140244483948, -0.012681380845606327, 0.002382681705057621, -0.012638417072594166, -0.031535178422927856, 0.001372145488858223, 0.019763190299272537, -0.01019666064530611, 0.011736184358596802, 0.022570136934518814, -0.02802649512887001, -0.007049587555229664, 0.0014867146965116262, 0.010755185969173908, -0.012552490457892418, 0.0023576198145747185, 0.017987368628382683, 0.02732476033270359, 0.027668466791510582, -0.018989847972989082, 0.021424444392323494, 0.01022530347108841, 0.002586758229881525, 0.040614787489175797, -0.00015260977670550346, 0.01231619156897068, -0.00574636273086071, -0.034485336393117905, -0.022899523377418518, 0.03396977484226227, -0.03445669263601303, -0.03379791975021362, -0.021424444392323494, -0.0009496714337728918, -0.00905096810311079, -0.024174105376005173, 0.007396875414997339, 0.02103777416050434, 0.0432785227894783, 0.05631077289581299, -0.001609339495189488, -0.017572054639458656, 0.015194742940366268, -0.006032785400748253, 0.01057617086917162, 0.007035266142338514, -0.014349794946610928, 0.0021678644698113203, 0.005327468737959862, -0.006985142361372709, 0.00962381437420845, -0.008385035209357738, -0.007890955545008183, 0.00967393908649683, -0.004414495546370745, -0.021811116486787796, -0.0073682330548763275, 0.002278853440657258, 0.020464926958084106, 0.002346878871321678, -0.04287753254175186, 0.01671278476715088, 0.002642252715304494, 0.03236580640077591, 0.009265786036849022, 0.0034281259868294, 0.008607013151049614, -6.959184975130484e-05, -0.010168018750846386, -0.004768943879753351, 0.012710022740066051, 0.02448917180299759, 0.0009899496799334884, 0.00025934711447916925, -0.021266911178827286, -0.007003043778240681, 0.017228346318006516, -0.011435440741479397, -0.0013998927315697074, 0.03941181302070618, -0.013282869011163712, 0.0005670281243510544, -0.019476767629384995, -0.024345960468053818, -0.011965323239564896, -0.015409559942781925, -0.001936935936100781, 0.001265631872229278, 0.016526609659194946, -0.010697901248931885, -0.011077411472797394, -0.020006651058793068, 0.007264404557645321, 0.002654783660545945, 0.022054575383663177, -0.04044293612241745, 0.005817968398332596, -0.007525765802711248, 0.008299107663333416, 0.029787996783852577, 0.017786871641874313, 0.020020971074700356, -0.010060610249638557, -0.0052308011800050735, 0.03594609349966049, 0.038609828799963, 0.015395238995552063, -0.019161703065037727, 0.0022663224954158068, 0.022412603721022606, 0.02467534691095352, -0.004808327183127403, 0.0006753318593837321, 0.006508964113891125, -0.01104876957833767, -0.0005979081033729017, -0.018087616190314293, -0.021653583273291588, 0.005753523204475641, 0.023615580052137375, -0.017514768987894058, 0.01914738118648529, 0.03331100195646286, -0.026021534577012062, 0.017486127093434334, -0.02219778671860695, 0.007432678248733282, -0.03348285332322121, -0.017786871641874313, -0.0005401759990490973, -0.011242104694247246, -0.016941923648118973, 0.029931209981441498, -0.004264123272150755, -0.012559651397168636, 0.001568166189827025, -0.01157149113714695, 0.032537657767534256, -0.012960643507540226, -0.017314273864030838, 7.871039997553453e-05, -0.004922896157950163, -0.002874971367418766, 0.001881441450677812, -0.027310438454151154, -0.007049587555229664, -0.004439557436853647, -0.021109379827976227, 0.016827354207634926, 0.01964862085878849, -0.001861749798990786, -0.007078229915350676, -0.014922641217708588, 0.008735903538763523, -0.03007442131638527, -0.01174334529787302, -0.0057642641477286816, 0.019476767629384995, -0.0032956553623080254, -0.01800168864428997, -0.02075134962797165, -0.019877759739756584, 0.032193951308727264, 0.003612510859966278, -0.008299107663333416, 0.0026386724784970284, -0.028742553666234016, -0.017328595742583275, -0.051498863846063614, 0.019290592521429062, 0.01316113956272602, -0.01076950691640377, -0.01860317774116993, -0.025591900572180748, -0.021080736070871353, 0.015294991433620453, -0.03047541342675686, -0.007196379359811544, -0.014621896669268608, 0.0001398550084559247, -0.01944812573492527, -0.026408204808831215, -0.0029859603382647038, 0.00047886354150250554, 0.026465490460395813, -0.012172980234026909, 0.0015260978834703565, -0.020106898620724678, -0.008864793926477432, -0.025849681347608566, -0.03242309018969536, -0.0367194339632988, -0.04476792365312576, 0.010168018750846386, 0.004393013659864664, 0.0048620314337313175, -0.012874715961515903, 0.00448610121384263, 0.012674219906330109, 0.02342940680682659, -0.03405570238828659, 0.0031327521428465843, 0.006566248368471861, 0.006831190083175898, -0.02549165114760399, 0.016770070418715477, -0.0029054039623588324, -0.0338265635073185, -0.000947881315369159, 0.023157304152846336, -0.004432396963238716, -0.018918242305517197, -0.0024399664252996445, -0.044853851199150085, 6.774576468160376e-05, 0.01611129753291607, -0.0074899629689753056, 0.007049587555229664, 0.00488709332421422, 0.010203821584582329, -0.01575326733291149, 0.00026427002740092576, 0.0053990744054317474, 0.01356213167309761, 0.015094495378434658, -0.0012280388036742806, -0.0007840830949135125, -0.06427333503961563, -0.002259161788970232, 0.0039025142323225737, 0.03265222907066345, -0.01691328175365925, -0.0031739254482090473, 0.00021929264767095447, 0.015882158651947975, -0.005302406847476959, 0.01705649308860302, 0.007189218886196613, -0.003488990943878889, -0.002012121956795454, 0.03087640553712845, 0.014228065498173237, 0.02004961296916008, -0.033941131085157394, 0.002078357385471463, -0.002914354670792818, 0.008012684993445873, -0.014979925937950611, -0.022355319932103157, 0.027353402227163315, 0.003177505685016513, -0.010010485537350178, 0.013168299570679665, -0.019390840083360672, 0.014220904558897018, -0.012788789346814156, -0.008334910497069359, 0.023300515487790108, 0.010454441420733929, 0.009788507595658302, -0.010833951644599438, -0.005649694707244635, 0.008757384493947029, 0.01004628837108612, 0.005409815348684788, 0.007189218886196613, -0.006233281921595335, 0.0062189605087041855, 0.021624941378831863, 0.012516687624156475, 0.007969721220433712, -0.004879932850599289, -0.03923995792865753, 0.00034393143141642213, -0.028542056679725647, -0.013247066177427769, -0.01398460566997528, 0.011027287691831589, -0.024360280483961105, -0.00458992924541235, -0.020264431834220886, 0.01451448816806078, 0.004034984856843948, -0.012552490457892418, -0.030790477991104126, 7.110228762030602e-05, -0.01671278476715088, 0.03557374328374863, 0.015022888779640198, -0.009767025709152222, 0.0027138583827763796, -0.02083727717399597, 0.0004094954638276249, 0.010669258423149586, 0.011635936796665192, 0.0007245608139783144, -0.0013443982461467385, 0.003970539662986994, -0.02583535946905613, -0.001970948651432991, 0.027052657678723335, 0.004457458853721619, 0.020779993385076523, -0.0033636807929724455, 0.014493006281554699, 0.014979925937950611, 0.016139939427375793, -0.02832723967730999, 0.011385316029191017, 0.00795540027320385, 0.001313965767621994, -0.011707542464137077, -0.01493696216493845, -0.015352276153862476, -0.008334910497069359, 0.01651228964328766, -0.0033851624466478825, 0.008957881480455399, 0.003304606070742011, 0.03918267413973808, 0.011335192248225212, -0.018073294311761856, 0.02533411979675293, 0.007998364046216011, -0.016884639859199524, -0.036289799958467484, -0.024274354800581932, 0.013189781457185745, -0.013461883179843426, -0.0028015754651278257, -0.03402705863118172, 0.011757666245102882, -0.010970002971589565, 0.008900596760213375, 0.004926476627588272, -0.004393013659864664, -0.03205073997378349, -0.028398845344781876, 0.029587501659989357, 0.009638136252760887, 0.02364422380924225, -0.006530445534735918, 0.007056748028844595, -0.006573409307748079, -0.00025106771499849856, -0.013454723171889782, -0.0030360843520611525, -0.009294427931308746, 0.021968647837638855, -0.03417026996612549, -0.03505818173289299, 0.003952638246119022, -0.0034281259868294, -0.02075134962797165, -0.006641434505581856, 0.003723499597981572, 0.01994936540722847, 0.00797688215970993, -0.018187863752245903, 0.007797867525368929, 0.008692939765751362, -0.0038846125826239586, 0.02269902639091015, 0.029315399006009102, -0.018130579963326454, 0.014313992112874985, -0.008041326887905598, 0.021954327821731567, -0.0006551927654072642, 0.02239828370511532, -0.007525765802711248, -0.006000563036650419, -0.004375112242996693, 0.0003099186869803816, -0.00990307703614235, -0.0033242974895983934, -0.01086975447833538, 0.0015851726057007909, 0.020121220499277115, 0.00837787427008152, -0.0068669929169118404, -0.002756821922957897, -0.034886326640844345, -0.026594379916787148, -0.008478122763335705, 0.007353912107646465, -0.028814159333705902, -0.003641152987256646, 0.016340434551239014, 0.020235788077116013, 0.004353630356490612, 0.010146536864340305, -0.0028499094769358635, -0.0019279852276667953, -0.014600414782762527, -0.0016361917369067669, 0.009380355477333069, 0.01979183219373226, -0.011120375245809555, -0.011793469078838825, -0.004425236023962498, 0.009616654366254807, -0.018388360738754272, -0.027611183002591133, -0.03445669263601303, 0.03399841487407684, 0.03600337728857994, -0.007085390388965607, 0.040414292365312576, -0.01834539696574211, 0.016283150762319565, 0.014679181389510632, 0.00557450857013464, -0.0034245457500219345, -0.0020837276242673397, -0.017328595742583275, 0.020264431834220886, 0.0005330154090188444, 0.0004432844289112836, -0.01336879562586546, -0.0357169546186924, 0.02424571104347706, 0.007171317469328642, 0.02342940680682659, 0.019018491730093956, -0.01750044897198677, 0.009172698482871056, 0.0007742373272776604, -0.011514206416904926, 0.010654937475919724, -0.0061473548412323, -0.02583535946905613, 0.0022340998984873295, 0.014041890390217304, 0.023572618141770363, 0.0052737644873559475, -0.024159785360097885, -0.0006753318593837321, -0.0048620314337313175, 0.011800630018115044, -0.008864793926477432, -0.003374421503394842, -0.014142137952148914, 0.014657699503004551, -0.036633510142564774, 0.012215943075716496, -0.016197223216295242, 0.03414162993431091, 0.005817968398332596, 0.012710022740066051, -0.011600133962929249, 0.0235296543687582, 0.010203821584582329, 0.012029767967760563, -0.03001713566482067, -0.0016012839041650295, 0.025906965136528015, 0.007046007085591555, 0.0017149579944089055, -0.015839194878935814, -0.03342556953430176, 0.02529115602374077, 0.014550291001796722, 0.022255070507526398, -0.02234099805355072, 0.013196942396461964, 0.0053059873171150684, -0.01575326733291149, 0.00104454904794693, -0.008342071436345577, 0.01159297302365303, 0.03316779062151909, 0.01625450886785984, -0.015008567832410336, -0.0017418102361261845, 0.002217988483607769, 0.005499322433024645, 0.010232463479042053, -0.008621334098279476, -0.02029307372868061, -0.013039409182965755, -0.006068588700145483, -0.005105490796267986, 0.014485846273601055, -0.0023504591081291437, 0.030504055321216583, -0.003122011199593544, -0.01298928540199995, 0.010454441420733929, 0.021166663616895676, 0.007583050522953272, 0.0019673684146255255, 0.001793724368326366, -0.012359154410660267, 0.010676419362425804, 0.015595735050737858, -0.01745748519897461, 0.010783827863633633, 0.008714421652257442, -0.024174105376005173, -0.008291947655379772, -0.011478403583168983, -0.012087052688002586, -0.002565276576206088, -0.014693502336740494, -0.021381480619311333, 0.023558296263217926, -0.030990974977612495, -0.0008834361215122044, -0.02139580249786377, 0.002688796492293477, 0.0010347033385187387, 0.005177096929401159, -0.001728384173475206, -0.016669820994138718, 0.008614173159003258, -0.006150935310870409, 0.023672865703701973, 0.020235788077116013, 0.025821037590503693, 0.020565174520015717, 0.01944812573492527, 0.004231900442391634, -0.002176815178245306, -0.011456922627985477, 0.00741835730150342, 0.015552772209048271, 0.02344372682273388, -0.02688080444931984, -0.02009257674217224, 0.0022358899004757404, 0.0028499094769358635, -0.00016323875752277672, 0.001457177335396409, -0.009065289981663227, 0.003580288263037801, 0.0016898959875106812, 0.006150935310870409, -0.022727670148015022, 0.005338209681212902, -0.02837020345032215, 0.004135232884436846, -0.003546275431290269, -0.0005061632255092263, 0.002649413188919425, -0.004489681217819452, -0.046400535851716995, 0.0037270800676196814, -0.005263023544102907, 0.030188990756869316, -0.022455567494034767, -0.053990744054317474, -0.01880367286503315, 0.01162161584943533, -0.010855433531105518, 0.012101373635232449, -0.028255634009838104, -0.027253152802586555, 0.021682225167751312, -0.022770632058382034, -0.01651228964328766, -0.0016890009865164757, -0.007754904218018055, -0.0011197351850569248, 0.004919316153973341, -0.0030897886026650667, 0.0010821421165019274, 0.0010051658609881997, 0.024088179692626, -0.0003602665092330426, -0.005198578350245953, 0.014371276833117008, 0.01621154509484768, 0.008764545433223248, 0.023128662258386612, 0.021209627389907837, -0.022083217278122902, 0.015481166541576385, -0.016025369986891747, 0.033941131085157394, 0.00967393908649683, 0.002115950221195817, 0.03276679664850235, 0.03007442131638527, 0.00629772711545229, -0.010203821584582329, -0.022627420723438263, -0.0178584773093462, 0.0007438048487529159, 0.006190318148583174, -0.0049049947410821915, 0.007396875414997339, 0.00433930940926075, 0.00431424705311656, -0.012029767967760563, 0.007228601723909378, -0.03122011385858059, 0.012101373635232449, 0.0005656855064444244, -0.009824310429394245, 0.006816868670284748, -0.001694371341727674, -0.012108534574508667, 0.00017118253163062036, 0.027453649789094925, 0.015538450330495834, -0.0052308011800050735, -0.007042427081614733, 0.016583895310759544, -0.05883129686117172, -0.01019666064530611, -0.016096975654363632, 0.01144260074943304, -0.020379001274704933, 0.017443163320422173, 0.016526609659194946, -0.005556607153266668, 0.00912257470190525, 0.0007093445747159421, -0.012760147452354431, 0.02358693815767765, 0.010110734030604362, 0.024861522018909454, -0.044166434556245804, 0.010132215917110443, -0.055823855102062225, 0.012538169510662556, -0.0006507173529826105, 0.013855715282261372, 0.003456768346950412, 0.043307166546583176, -0.0193049143999815, 0.011564331129193306, -0.004768943879753351, 0.02523387037217617, 0.008728742599487305, -0.05075416713953018, -0.018374038860201836, 0.014056211337447166, -0.01581055298447609, -0.012559651397168636, 0.002366570523008704, 0.01470782421529293, -0.005084009375423193, -0.004994501825422049, 0.00038644735468551517, -0.0012906938791275024, -0.006824029143899679, 0.01017517875880003, -0.01057617086917162, -0.03437076508998871, -0.019978007301688194, 0.0074899629689753056, -0.028098100796341896, 0.02115234173834324, 0.0008480807882733643, -0.006405135616660118, 0.011836432851850986, 0.014077693223953247, 0.009043808095157146, 0.011406797915697098, 0.039870090782642365, -0.02932972088456154, 0.005810807924717665, -0.021381480619311333, 0.0065447669476270676, -0.026150424033403397, -0.005954019259661436, -0.017629338428378105, -0.002345088869333267, -0.03185024484992027, -0.011370995081961155, -0.017715265974402428, 0.03331100195646286, -0.04267703369259834, 0.011012966744601727, 0.04204690456390381, 0.00015607818204443902, -0.0034209652803838253, 0.010182339698076248, -0.005885993596166372, 0.011063090525567532, -0.007711940910667181, -0.014607575722038746, 0.020436285063624382, -0.005366852041333914, 0.04267703369259834, -0.0018196814926341176, -0.008879114873707294, 0.015022888779640198, 0.018817994743585587, 0.004947958048433065, 0.011829271912574768, 0.029200829565525055, -0.038924891501665115, 0.006150935310870409, -0.005080428905785084, 0.037234995514154434, -0.008320589549839497, -0.010683580301702023, 0.006469580810517073, -0.009086771868169308, -0.020479248836636543, -0.00041866995161399245, 0.009573690593242645, -0.00599698256701231, -0.010805309750139713, 0.028900086879730225, 0.004554126411676407, -0.020436285063624382, 0.01959133706986904, 0.005936117842793465, 0.012638417072594166, 0.002756821922957897, -0.03302457928657532, -0.0042891851626336575, 0.005259443540126085, 0.007182057946920395, 0.009337391704320908, -0.0027263895608484745, -0.013626576401293278, -0.004715239629149437, -0.027439327910542488, -0.002717438619583845, -0.011800630018115044, -0.00010931067663477734, 9.129734826274216e-05, -0.0240308940410614, -0.04147405922412872, -0.012344833463430405, 0.008270465768873692, 0.015767589211463928, -0.018961206078529358, 0.012223104014992714, -0.0007254558731801808, -0.008485282771289349, -0.0024471268989145756, 0.0015574253629893064, -0.0004596195067279041, -0.00793391838669777, 0.012488044798374176, 0.009401836432516575, -0.01480807177722454, 0.015552772209048271, 0.0014929801691323519, -0.022212108597159386, -0.006666496396064758, -0.014994246885180473, 0.008814669214189053, 0.00011714255379047245, 0.009072449989616871, -0.014013247564435005, 0.0031739254482090473, -3.2809984986670315e-05, -0.006437357980757952, 0.0029805898666381836, -0.015438202768564224, -0.011700381524860859, -0.0035605966113507748, -0.008900596760213375, 0.008621334098279476, 0.015423881821334362, 0.0031094802543520927, 0.01286755595356226, -0.02678055502474308, -0.005775004625320435, 0.008943559601902962, -0.029043298214673996, 0.012860395014286041, -0.009480603039264679, -0.010440120473504066, 0.005015983711928129, 0.05464952066540718, 0.015123137272894382, 0.00954504869878292, 0.008671457879245281, -0.009093931876122952, -0.04178912192583084, -0.011900877580046654, 0.013476205058395863, 0.029301078990101814, -0.01107025146484375, -0.007339590694755316, -0.012960643507540226, 0.022183464840054512, 0.01144260074943304, -0.01586783677339554, 0.025305476039648056, 0.03256630152463913, 0.01520906388759613, -0.022770632058382034, 0.009437639266252518, 0.010712222196161747, 0.006766744889318943, -0.03027491644024849, 0.023415084928274155, -0.001783878542482853, 0.00377720408141613, 0.00822750199586153, 0.010182339698076248, 0.015738947317004204, 0.021180985495448112, 0.012130016461014748, -0.02388768270611763, 0.00030007289024069905, 0.012831753119826317, 0.014220904558897018, 0.014063372276723385, -0.009172698482871056, 0.014893998391926289, -0.009860113263130188, 0.019376520067453384, 0.010626295581459999, -0.002688796492293477, -0.0007191904005594552, 0.0011376366019248962, -0.00935171265155077, -0.023400763049721718, -0.008041326887905598, -0.00755440816283226, -0.004443137440830469, 0.005592409987002611, -0.016526609659194946, -0.005757103208452463, 0.010891236364841461, 0.023400763049721718, -0.009265786036849022, -0.020063934847712517, 0.016583895310759544, -0.012795950286090374, -0.006924277171492577, 0.004729560576379299, -0.01689895987510681, 0.005087589379400015, -0.022312356159090996, -0.01795872487127781, -0.010654937475919724, -0.0022878041490912437, -0.007339590694755316, -0.01884663663804531, 0.0031918268650770187, -0.007375393528491259, -0.013870036229491234, 0.012509526684880257, 0.003621461568400264, -0.029387004673480988, 0.012029767967760563, 0.029143545776605606, -0.010862594470381737, 0.025864001363515854, 0.0001348202204098925, 0.0012164028594270349, -0.006337109953165054, 0.013913000002503395, -0.00979566853493452, -0.009215662255883217, -0.00656982883810997, 0.008936399593949318, 0.024088179692626, 0.011965323239564896, 0.010182339698076248, -0.006942178588360548, -0.00822750199586153, -0.014471524395048618, -0.0004410467518027872, 0.019018491730093956, 0.0012280388036742806, -0.006806127727031708, 0.013948802836239338, 0.0034334964584559202, 0.014099175110459328, -0.018187863752245903, 0.011120375245809555, 0.017314273864030838, 0.023357799276709557, 0.008470961824059486, 0.0153809180483222, 0.01212285552173853, 0.022956807166337967, 0.0019888500683009624, -0.010948521085083485, -0.027740072458982468, -0.01019666064530611, -0.011929520405828953, -0.01032555103302002, 0.0025491651613265276, -0.034743115305900574, 0.00854972843080759, 0.002814106410369277, -0.0192476287484169, -0.0025169425643980503, 0.008055648766458035, 0.005628212820738554, 0.006634274031966925, 0.012266067788004875, -0.017486127093434334, 0.0159108005464077, -0.011886556632816792, -0.028885765001177788, 0.00947344209998846, -0.004335728939622641, 0.014851035550236702, 0.002950157504528761, 0.003941897302865982, 0.012724344618618488, 0.014170780777931213, 0.007446999195963144, -0.012187301181256771, 0.008578370325267315, 0.013669540174305439, 0.0013998927315697074, -0.014127817004919052, 0.023730149492621422, -0.002232309663668275, 0.02344372682273388, 0.022971129044890404, 0.002751451451331377, 0.004267703741788864, 0.0018510089721530676, -0.009394676424562931, 0.009681099094450474, 0.000940720725338906, 0.04024244099855423, -0.02209753915667534, 0.012208783067762852, -0.0008306268719024956, 0.015008567832410336, 0.020278751850128174, -0.015552772209048271, 0.036375727504491806, 0.006616372615098953, 0.0004025586531497538, 0.007919597439467907, -0.023801755160093307, -0.021123699843883514, -0.003166764974594116, 0.007114032749086618, 0.01086975447833538, -0.005502902902662754, 0.027310438454151154, 0.023329157382249832, -0.019161703065037727, -0.014779429882764816, -0.0076546561904251575, 0.001752551062963903, -0.023615580052137375, -0.010934200137853622, 0.015624377876520157, -0.0021463828161358833, 0.022111859172582626, -0.01804465241730213, 0.00031797433621250093, 0.005424136761575937, -0.001563690835610032, 0.018732067197561264, 0.00994604080915451, -0.0005849295994266868, 0.00925146508961916, -0.002490090439096093, -0.012187301181256771, -0.012351994402706623, -0.01339027751237154, -0.01411349605768919, 0.005187837406992912, -0.0030020717531442642, 0.003988441079854965, -0.03600337728857994, -0.03826611861586571, 0.013483365066349506, 0.032594945281744, 0.010547528974711895, 0.00011904458369826898, 0.002252001315355301, 0.013096693903207779, 0.017486127093434334, 0.0027532416861504316, -0.009996164590120316, -0.017185382544994354, -0.012473723851144314, -0.010776667855679989, -0.01719970442354679, 0.004801166243851185, -0.023758793249726295, -0.007396875414997339, 0.0016836305148899555, -0.0016308212652802467, -0.023916324600577354, 0.003952638246119022, 0.0068669929169118404, -0.0015090914675965905, 0.010282587260007858, -0.0125453295186162, 0.014249547384679317, 0.0011251055402681231, 0.01904713362455368, -0.0007957190391607583, -0.0328240804374218, 0.0013631947804242373, -0.009015165269374847, -0.00032670129439793527, 0.016440683975815773, -0.012939161621034145, 0.015610056929290295, 0.016569573432207108, -0.008521085605025291, 0.01147124357521534, 0.0021481728181242943, -0.008055648766458035, 0.02519090846180916, 0.009530726820230484, 0.033683352172374725, -0.02109505794942379, -0.008170217275619507, 0.01866046153008938, 0.00962381437420845, -0.0005106385797262192, 0.01174334529787302, 0.0017686623614281416, -0.0007281411089934409, -0.01298928540199995, -0.000947881315369159, -2.9509406886063516e-05, -0.016096975654363632, -0.0014258497394621372, -0.05691226199269295, -0.0036769560538232327, 0.021066416054964066, 0.00925146508961916, 0.02632227912545204, 0.01142111886292696, 0.000930874899495393, -0.01970590651035309, -0.007221441250294447, 0.01061913464218378, -0.01453597005456686, 0.0027192288544028997, 0.007053167559206486, 0.015681661665439606, 0.004135232884436846, 0.008764545433223248, 0.015824873000383377, -0.018961206078529358, 0.009043808095157146, -0.001704217167571187, -0.0074828024953603745, 0.014127817004919052, -0.004786845296621323, -0.02014986239373684, 0.016970565542578697, -0.0037807843182235956, -0.0020031712483614683, 0.009323070757091045, 0.0005450988537631929, 0.020264431834220886, 0.0024668185506016016, -0.027195869013667107, 0.0003421412839088589, -0.021710867062211037, -0.002703117672353983, 0.017615018412470818, -0.008034166879951954, 0.02877119556069374, 0.019218986853957176, -0.022727670148015022, 0.007819348946213722, -0.0005853770999237895, -0.010640616528689861, 0.013433241285383701, -0.01493696216493845, -0.0014598624547943473, 0.014349794946610928, 0.00021806193399243057, -0.006430197507143021, -0.009588011540472507, -0.013325832784175873, -0.0034513978753238916, -0.0030575660057365894, -0.0065053836442530155, 0.017743907868862152, 0.013125336728990078, 0.0008109352784231305, 0.017042171210050583, -0.009301588870584965, -0.003992021549493074, -0.0032401608768850565, -0.022870881482958794, -0.018975527957081795, -0.006412296090275049, 0.013354474678635597, 0.01369102206081152, -0.01601104810833931, 0.007156996056437492, 0.0031524437945336103, -0.0009255044860765338, 0.005742782261222601, 0.01854589208960533, -0.0067524234764277935, 0.021324196830391884, 0.00136229966301471, 0.02698105201125145, 0.013554970733821392, -0.02149605005979538, 0.0027138583827763796, 0.0038416492752730846, 0.010790988802909851, 0.011285068467259407, -0.021911364048719406, 0.005302406847476959, -0.01354064978659153, -0.00529882637783885, -0.005263023544102907, 0.0030754676554352045, -0.0029322560876607895, 0.011256425641477108, 0.008213181048631668, -0.013261387124657631, 0.0033511498477309942, 0.019319234415888786, -0.002642252715304494, -0.0005437562940642238, 0.003037874586880207, 0.0366048663854599, -0.005664016120135784, 0.014994246885180473, 0.00174539047293365, -0.000814515573438257, -0.01104876957833767, -0.01341175939887762, 0.00307367742061615, 0.01256681140512228, -0.004665115382522345, 0.008936399593949318, -0.000522274523973465, 0.018087616190314293, -0.012788789346814156, -0.005370432510972023, -0.007361072581261396, 0.001539523946121335, 0.000872695236466825, 0.01119914185255766, -0.015552772209048271, 0.009731222875416279, 0.00877886638045311, -0.01296780351549387, -0.018073294311761856, -0.011055929586291313, -0.021166663616895676, 0.005116231739521027, -0.0028015754651278257, -0.0023092858027666807, 0.0003099186869803816, -0.007604531943798065, 0.026952410116791725, 0.011729024350643158, -0.0006945758941583335, -0.014951283112168312, 0.014922641217708588, 0.004665115382522345, 0.005008823238313198, 0.00035198708064854145, -0.00462573254480958, 0.001868910389021039, -0.008155896328389645, -0.00011272313713561743, 0.003866711165755987, -0.004879932850599289, 0.01339027751237154, 0.007805028464645147, -0.002160703996196389, -0.00967393908649683, 0.025706470012664795, 0.00489783426746726, 0.01296780351549387, -0.0074111963622272015, 0.00727872597053647, 0.0052737644873559475, 0.00377720408141613, -0.03786512836813927, -0.012215943075716496, 0.00244354666210711, 0.005667596124112606, -0.020908882841467857, 0.009444800205528736, 0.008986523374915123, -0.01187223568558693, 0.011435440741479397, 0.005481421016156673, -0.006068588700145483, 0.011335192248225212, -0.011184819974005222, -0.004428816493600607, 0.0023236069828271866, 0.03365470841526985, -0.002160703996196389, 0.014750787056982517, 0.0018044651951640844, -0.005563767626881599, -0.0011922359699383378, 0.015524129383265972, 0.011528528295457363, -0.012573972344398499, 0.0073682330548763275, -0.03336828574538231, -0.0017588165355846286, 0.00854972843080759, 0.009731222875416279, -0.01381275150924921, -0.00448610121384263, 0.006841930560767651, 0.007124773692339659, 0.009215662255883217, -0.0035230035427957773, -0.0025491651613265276, 0.007468481082469225, -0.02268470637500286, 0.022269392386078835, 0.012903358787298203, 0.03457126393914223, -0.002457867842167616, 0.01174334529787302, -0.005488581955432892, -0.006609212141484022, -0.017572054639458656, 0.02199728973209858, -0.004428816493600607, -0.0066199530847370625, -0.0193049143999815, -0.010261106304824352, -0.001279953052289784, -0.0037951054982841015, 0.01760069653391838, -0.028556378558278084, -0.01351916790008545, 0.0005625527701340616, -0.009394676424562931, -0.007912436500191689, 0.004256962798535824, 0.024961769580841064, 0.008692939765751362, 0.016483645886182785, -0.010311230085790157, 0.004582768771797419, -0.009996164590120316, -0.0034943611826747656, 0.008034166879951954, -0.00586093170568347, -0.015123137272894382, 0.01974887028336525, 0.011736184358596802, -0.011535688303411007, -4.9480702728033066e-05, -0.00793391838669777, 0.008986523374915123, 0.01004628837108612, 0.0049837613478302956, -0.007275145500898361, 0.0053561110980808735, 0.005366852041333914, 0.013683861121535301, 0.01086975447833538, 0.0014365906827151775, 0.010189500637352467, 0.011184819974005222, 0.008091451600193977, 0.00016346253687515855, 0.020565174520015717, 0.00529882637783885, -0.002298545092344284, 0.005664016120135784, 0.02378743514418602, 0.0035337444860488176, 0.016684142872691154, 0.0025437946897000074, -0.0307618360966444, -0.0024542876053601503, 0.003012812463566661, 0.011456922627985477, -0.009759865701198578, -0.024073857814073563, 0.038523901253938675, 0.025305476039648056, 0.012001126073300838, 0.01595376431941986, 0.02478991448879242, -0.02852773666381836, 0.02563486434519291, -0.008306268602609634, 0.00460067018866539, 0.010117894038558006, 0.01709945686161518, 0.0029608982149511576, 0.005241542123258114, 0.0005920901312492788, -0.028785517439246178, -0.009358873590826988, -7.345184712903574e-05, -0.0015090914675965905, -0.022713348269462585, -0.014621896669268608, 0.025505973026156425, 0.026694629341363907, -0.01336879562586546, 0.019935045391321182, 0.012982125394046307, -0.004128072410821915, 0.0003173030272591859, -0.002695956965908408, 0.00587167264893651, -0.001987059833481908, 0.01094136107712984, 0.017142420634627342, -0.00018651063146535307, 0.01800168864428997, 0.0032884946558624506, -0.0015377338277176023, -0.00785515271127224, -0.004396593663841486, -0.02702401578426361, 0.0005227220826782286, -0.016841676086187363, -0.027467971667647362, -0.0032365804072469473, -0.015266348607838154, -0.009280106984078884, 0.017271310091018677, -0.012860395014286041, -0.0016585685079917312, -0.012509526684880257, 0.009358873590826988, -0.00238626217469573, 0.008692939765751362, 0.0048226481303572655, -0.00032356855808757246, -0.009358873590826988, -0.010554689913988113, -0.004711659159511328, 0.0035552261397242546, -0.0024757692590355873, -0.0013372376561164856, 0.002361200051382184, 0.0075329262763261795, 0.016096975654363632, -0.008449479937553406, -0.023859040811657906, -0.016068333759903908, 0.021009130403399467, -0.013304350897669792, -0.004489681217819452, -0.015137458220124245, -0.00517351645976305, -0.003012812463566661, -0.010697901248931885, 0.0006372912903316319, -0.015638697892427444, -0.007805028464645147, 0.005857351701706648, 0.007439838722348213, 0.035831525921821594, 0.004958698991686106, -0.0023629902862012386, 0.011922359466552734, -0.03399841487407684, 0.016139939427375793, -0.028255634009838104, -0.002840958768501878, -0.01625450886785984, 0.018488608300685883, 0.010060610249638557, 0.002176815178245306, 0.008871953934431076, -0.028642306104302406, -0.01244508195668459, -0.006652175448834896, 0.0035767077933996916, -0.007783546578139067, 0.009759865701198578, 0.0004173273337073624, -0.015309312380850315, 0.021624941378831863, -0.022827917709946632, 0.00021157265291549265, -0.006204639561474323, -0.013347314670681953, -0.0005943278665654361, 0.027496613562107086, -0.002482929965481162, 0.005961179733276367, -0.0019602077081799507, 0.013648058287799358, -0.014392758719623089, 0.008821830153465271, -0.014543130993843079, -0.010318390093743801, -0.0035641768481582403, 0.0032115185167640448, 0.025448689237236977, -0.013655219227075577, 0.015996728092432022, 0.022527173161506653, 0.01605401188135147, 0.018130579963326454, -0.0053990744054317474, 0.0033994836267083883, 0.010425799526274204, -0.020278751850128174, -0.015567093156278133, 0.01804465241730213, 0.002253791317343712, -0.018775030970573425, -0.0026243512984365225, 0.027768714353442192, -0.011005805805325508, -0.002477559493854642, -0.01675574854016304, -0.005445618182420731, 4.3830557842738926e-05, 0.004819068126380444, -0.023615580052137375, 0.014908320270478725, -0.0006842825678177178, -0.00020295758440624923, 0.02318594604730606, -0.020608138293027878, -0.0042891851626336575, -0.018388360738754272, 0.0010722962906584144, -0.03944045305252075, -0.006935018114745617, 0.018474286422133446, -0.03520139306783676, 0.02358693815767765, -0.011850753799080849, -0.024102499708533287, -0.02877119556069374, -0.029444290325045586, 0.022555815055966377, 0.00037414010148495436, 0.00501240324229002, 0.014335473999381065, 0.00572130037471652, 0.0013685651356354356, -0.017185382544994354, -0.0014661280438303947, 0.021367160603404045, -0.008198860101401806, 0.00014365906827151775, -0.007568729110062122, -0.004128072410821915, 4.838983295485377e-05, 0.003805846441537142, -0.009043808095157146, -0.012359154410660267, -0.024718308821320534, -0.0013981024967506528, -0.0038702916353940964, -0.015223385766148567, -1.2999523278267588e-05, 0.008248983882367611, 0.009337391704320908, -0.008385035209357738, 0.0001135622660513036, -0.003265222767367959, -0.010339871980249882, 0.013998926617205143, -0.005896734539419413, -0.024546455591917038, 0.026909446343779564, 0.01493696216493845, -0.0036447334568947554, -0.012674219906330109, -0.013597934506833553, -0.006881313864141703, -0.01510881632566452, -0.014614736661314964, 0.01944812573492527, 0.011220622807741165, -0.009136895649135113, -0.0014723935164511204, 0.022613100707530975, 0.006602051202207804, 0.01493696216493845, 0.011514206416904926, -0.002731759799644351, -0.0037664631381630898, 0.0034102245699614286, 0.001755236298777163, -0.009731222875416279, -0.028642306104302406, 0.010812470689415932, -0.008134414441883564, -0.0036250418052077293, 0.02354397438466549, -0.00215712352655828, 0.009695420041680336, -0.01256681140512228, 0.020006651058793068, 0.012330512516200542, -0.020121220499277115, -0.002278853440657258, 0.025849681347608566, -0.000295821315376088, 0.01129938941448927, 0.012115695513784885, 0.0022484210785478354, -0.01575326733291149, 0.020364679396152496, -0.00655908789485693, -0.0022340998984873295, -0.007225021719932556, 0.0012960643507540226, 0.007525765802711248, 0.016583895310759544, -0.001701531931757927, -0.032738156616687775, -0.025305476039648056, -0.005255863070487976, 0.0014079483225941658, 0.0076546561904251575, -0.011098893359303474, 0.010719383135437965, -0.019534051418304443, 0.03021763265132904, -0.01645500399172306, -0.0029394165612757206, 0.016268828883767128, -0.0012298290384933352, 0.009960361756384373, 0.0036518939305096865, 0.0004739406576845795, 0.009366033598780632, 0.008585531264543533, 0.027854641899466515, 0.0018313174368813634, 0.02055085450410843, 0.009960361756384373, 0.022126181051135063, -0.023973610252141953, 0.010117894038558006, 0.016197223216295242, -0.029787996783852577, -0.014822392724454403, 0.007389714941382408, -0.001793724368326366, -0.02318594604730606, 0.00037100736517459154, -0.0021875561214983463, -0.008657136932015419, -0.002785464283078909, 0.0023182365112006664, -0.012208783067762852, 0.0019745288882404566, 0.009573690593242645, -0.003163184504956007, -0.0025079918559640646, -0.020321715623140335, -0.012896197848021984, -0.010218142531812191, 0.012094213627278805, 0.015968086197972298, 0.013297189958393574, -0.002388052176684141, 0.029358362779021263, 0.034743115305900574, -0.019319234415888786, -0.019562695175409317, 0.001922614756040275, 0.009874435141682625, 0.001447331509552896, 0.018817994743585587, 0.010039128363132477, -0.0067094601690769196, -0.011664578691124916, 0.016727106645703316, -0.00912257470190525, -0.0024345959536731243, -0.004045725800096989, 0.01533795427531004, 0.0067953867837786674, -0.01273866556584835, 0.027854641899466515, 0.01470782421529293, -0.008120093494653702, 0.006104391533881426, 0.000128778483485803, -0.010268266312777996, -0.005463519599288702, 0.0025384242180734873, 0.007214280776679516, 0.020479248836636543, 0.0015207274118438363, 0.00018986716168001294, 0.009430479258298874, -0.0035892389714717865, -0.007396875414997339, 0.021567655727267265, -0.00726798502728343, -0.018459966406226158, -0.002327187219634652, 0.004432396963238716, -0.00023361379862762988, -0.0009630974964238703, 0.0030307138804346323, -0.008771706372499466, 0.026952410116791725, -0.002627931535243988, 0.015180421993136406, -0.0015090914675965905, -0.022269392386078835, 0.014679181389510632, -0.0011922359699383378, -0.0006730941822752357, -0.012616935186088085, -0.0013157558860257268, -0.006526865530759096, -0.008585531264543533, 0.024904483929276466, -0.005363271571695805, -0.0025957089383155107, -0.007540086749941111, 0.008707260712981224, -0.012960643507540226, -0.018316755071282387, -0.004070787690579891, -0.002710278145968914, 0.012380636297166348, 0.010003325529396534, -0.03222259506583214, 0.020020971074700356, -0.009323070757091045, -0.006018464453518391, 0.011005805805325508, -0.014335473999381065, 0.01550980843603611, 0.015581414103507996, 0.014070532284677029, -0.007020945195108652, 0.020679743960499763, -0.03376927971839905, -0.0009496714337728918, -0.0004320960433688015, -0.015280669555068016, -0.00418893713504076, -0.005413395818322897, -0.0021069995127618313, -0.011313710361719131, 0.014041890390217304, 0.007339590694755316, 0.018717747181653976, 0.010697901248931885, -0.0017829835414886475, -0.02204025350511074, 0.0001545118138892576, -0.013877197168767452, 0.011965323239564896, 0.004393013659864664, 0.0007822929765097797, -0.020379001274704933, 0.00907961092889309, -0.007339590694755316, -0.0037414012476801872, 0.01840268075466156, 0.016297472640872, 0.010790988802909851, -0.024517813697457314, 0.016540931537747383, -0.034685831516981125, 0.003429915988817811, -0.010067770257592201, 0.023228909820318222, -0.005341790150851011, 0.006516124587506056, 0.02428867481648922, -0.0034818302374333143, 0.006935018114745617, 0.0018742808606475592, 0.007611692883074284, -0.007733422331511974, 0.002921515144407749, -0.03815155103802681, 0.0019333555828779936, -0.009416158311069012, 0.025004733353853226, 0.0027228090912103653, -0.0068347700871527195, -0.006154515314847231, -0.017371557652950287, 0.0033099765423685312, 0.006043526344001293, 0.02788328379392624, -0.021925684064626694, -0.007547247689217329, -0.01709945686161518, 0.0030217631720006466, 0.009086771868169308, -0.007969721220433712, 0.0014741836348548532, -0.005775004625320435, -0.006129453424364328, -0.0041996780782938, -0.010454441420733929, -0.008320589549839497, -0.010654937475919724, 0.006018464453518391, -0.01162161584943533, -0.004819068126380444, 0.019233308732509613, -0.027253152802586555, 0.001345293247140944, -0.026694629341363907, 0.006605631671845913, 0.012309030629694462, -0.013784109614789486, 0.0374927781522274, -0.003838069038465619, -0.012831753119826317, -0.0010463391663506627, -0.02199728973209858, 0.01601104810833931, -0.006476741284132004, -0.0022340998984873295, -0.00405288627371192, -0.005667596124112606, -0.008284786716103554, -0.003053985768929124, 0.0060220449231565, -0.0012620516354218125, 0.0030002815183252096, -0.012516687624156475, -0.01313965767621994, -0.022813595831394196, -0.026264993473887444, 0.0032526918221265078, -0.001444646273739636, -0.0033547300845384598, 0.0010311229852959514, -0.02083727717399597, 0.016770070418715477, 0.0011447971919551492, -0.00023249496007338166, -0.007074649445712566, -0.012309030629694462, -0.0014661280438303947, 0.005084009375423193, 0.022111859172582626, 0.0032365804072469473, 0.004428816493600607, 0.011098893359303474, 0.026837840676307678, -0.025047695264220238, -0.009294427931308746, 0.004221159964799881, 0.01944812573492527, -0.012359154410660267, -0.003641152987256646, 0.018130579963326454, 0.00812725443392992, -0.007590210996568203, 0.01715674065053463, 0.007153415586799383, 0.0038631309289485216, 0.015080173499882221, -0.00040434880065731704, -0.01940516196191311, -0.0023916324134916067, -0.00384522951208055, 0.005334629211574793, -0.004414495546370745, 0.0012539959279820323, 0.0017928293673321605, 0.013375956565141678, -0.006115132011473179, 0.022154822945594788, 0.009530726820230484, 0.02229803428053856, -0.017815513536334038, 0.0013354475377127528, 0.027109941467642784, 0.02014986239373684, -0.008470961824059486, 0.006655755918473005, -0.005331049207597971, 0.00897220242768526, 0.003483620472252369, -0.035688310861587524, -0.02523387037217617, 0.0172999519854784, -0.019276272505521774, -0.007561568636447191, 0.024460528045892715, 0.0055601876229047775, 0.0021624939981848, -0.0028964532539248466, -0.005617472343146801, 0.021281233057379723, -0.0020908883307129145, -0.010962842032313347, -0.010755185969173908, 0.013375956565141678, -0.013089533895254135, -0.021381480619311333, 0.012108534574508667, -0.016240186989307404, 0.012287548743188381, -0.004564867354929447, -0.020522212609648705, -0.005957599729299545, -0.01825946941971779, -0.018832316622138023, -0.006881313864141703, 0.01671278476715088, 0.002409534063190222, -0.0012548910453915596, 0.004425236023962498, 0.004006342496722937, 0.0008172007510438561, -0.0005303301732055843, -0.00935171265155077, 0.015309312380850315, 0.01974887028336525, -0.016941923648118973, 0.010991484858095646, 0.018016010522842407, -0.02304273471236229, -0.02443188615143299, 0.00547068053856492, 0.015982406213879585, 0.0071211932227015495, 0.014177940785884857, -0.011242104694247246, -0.016641179099678993, 0.011814950965344906, 0.02643684856593609, -0.002900033490732312, -0.008349232375621796, 0.004024243913590908, -0.015495487488806248, 0.009323070757091045, -0.008857632987201214, -0.008635655045509338, -0.014979925937950611, -0.005778585094958544, 0.030303558334708214, -0.0006229701684787869, -0.0011188400676473975, 0.01571030542254448, -0.009967522695660591, -0.04287753254175186, 0.0022681124974042177, -0.0030575660057365894, -0.0030575660057365894, -0.02493312768638134, 0.020235788077116013, -0.0032330001704394817, -0.0054778410121798515, -0.0014688132796436548, 0.0013748306082561612, -0.014041890390217304, -0.013297189958393574, 0.011098893359303474, 0.02083727717399597, 0.008492443710565567, -0.016784390434622765, 0.011106054298579693, -0.0028713911306113005, -0.0011814951431006193, 0.022255070507526398, 0.016684142872691154, -0.00656982883810997, 0.0030217631720006466, -0.009559369646012783, 0.006766744889318943, -0.003945477772504091, 0.01655525341629982, 0.029200829565525055, -0.013103854842483997, -0.007597371470183134, 0.004794005770236254, 0.023973610252141953, 0.015610056929290295, -0.016626859083771706, -0.01044728048145771, -0.0034281259868294, -0.001539523946121335, 0.00022041148622520268, -0.015395238995552063, 0.013848554342985153, 0.005810807924717665, -0.010511726140975952, 0.01950540952384472, 0.0007719996501691639, 0.004403754603117704, 0.0018492188537493348, 0.005789326038211584, 0.005839449819177389, 0.004937217570841312, 0.02847045101225376, -0.003941897302865982, 0.009910237975418568, 0.013998926617205143, -0.010239624418318272, 0.015681661665439606, -0.010848273523151875, 0.008900596760213375, 0.007454160135239363, -0.008836151100695133, 0.005409815348684788, 0.00795540027320385, 0.005868092179298401, 0.017342915758490562, -0.002108789747580886, 0.018030330538749695, -0.003737820778042078, 0.007719101384282112, 0.007139094639569521, 0.008521085605025291, 0.002176815178245306, 0.012523847632110119, 0.0005688183009624481, -0.002058665733784437, 0.016569573432207108, 0.012803110294044018, 0.010375674813985825, -0.010855433531105518, -0.013762627728283405, 0.006068588700145483, 0.016583895310759544, 0.006730941589921713, 0.020865919068455696, 0.0004141945973969996, 0.008979362435638905, -0.005370432510972023, 0.00795540027320385, 0.006082909647375345, 0.0007415671716444194, 0.002072986913844943, 0.014485846273601055, 0.03061862476170063, 0.0338265635073185, 0.0044932616874575615, 0.008069969713687897, 0.007185638416558504, -0.0307618360966444, -0.01283891312777996, -0.01870342530310154, 0.0002141459845006466, 0.0022269391920417547, 0.014328313060104847, 0.0011242105392739177, -0.006329949479550123, -0.02304273471236229, -0.012280388735234737, -0.0038094266783446074, 0.0034728795289993286, -0.028456130996346474, -0.011378156021237373, -0.012774468399584293, -0.004353630356490612, 0.01212285552173853, -0.024761272594332695, -0.007114032749086618, 0.014722145162522793, 0.015022888779640198, -0.009115413762629032, -0.015151779167354107, -0.02394496649503708, -0.009573690593242645, -0.00615809578448534, 0.01493696216493845, -0.010927039198577404, -0.004940797574818134, -0.015481166541576385, 0.012831753119826317, -0.029845282435417175, -0.012079892680048943, 0.009437639266252518, -0.022827917709946632, -0.03494361415505409, -0.00920134037733078, 0.005617472343146801, -0.0023164465092122555, 0.010790988802909851, 0.0024721890222281218, -0.005331049207597971, 0.0010722962906584144, -0.028040817007422447, -0.012437921017408371, -0.002314656274393201, 0.015294991433620453, -0.007253664080053568, -0.030446771532297134, 0.027711430564522743, 0.009258625097572803, 0.0031864563934504986, 0.011428279802203178, -0.006938598584383726, -0.004754622932523489, 0.013683861121535301, 0.007178477942943573, -0.0004432844289112836, -0.022827917709946632, 0.0036107206251472235, 0.020808635279536247, 0.0010928829433396459, 0.0034872007090598345, 0.008836151100695133, -0.0010579751105979085, 0.005194998346269131, 0.005538705736398697, -0.0031524437945336103, 0.03680536150932312, 0.003442447166889906, -0.01004628837108612, -0.020379001274704933, -0.005681917537003756, -3.236244810977951e-05, -0.0036375727504491806, -0.018173543736338615, -0.020135540515184402, -0.004747461993247271, -0.01914738118648529, 0.00215712352655828, -0.025463009253144264, 0.014693502336740494, -0.004085108637809753, 0.02698105201125145, -0.012215943075716496, 0.02907194010913372, -0.005499322433024645, -0.01381275150924921, -0.016626859083771706, 0.015266348607838154, 0.003881032345816493, -0.019161703065037727, -0.003224049462005496, -0.00391325494274497, 0.010862594470381737, 0.01760069653391838, -0.0076546561904251575, 0.031535178422927856, 0.0020443445537239313, 0.014657699503004551, -0.019562695175409317, -0.015939442440867424, 0.018961206078529358, 0.0159108005464077, -0.025720790028572083, -0.004088689107447863, -0.008957881480455399, -0.00448610121384263, -0.01441424060612917, -0.006326369009912014, 0.008427998051047325, 0.010253945365548134, 0.015022888779640198, -0.0019727388862520456, -0.01595376431941986, 0.03439940884709358, 0.003326087724417448, 0.04153134301304817, 0.013719663955271244, 0.031048258766531944, -0.0044109150767326355, -0.015194742940366268, -0.009337391704320908, 0.0004896044265478849, 0.01326854806393385, 0.017915762960910797, -0.00947344209998846, 0.010110734030604362, -0.005058947019279003, 0.015037210658192635, 0.024546455591917038, 0.0010221722768619657, 0.0002218659792561084, 0.013569292612373829, -0.014063372276723385, -0.013748306781053543, 0.017629338428378105, -0.010654937475919724, -0.012022607959806919, -0.0083993561565876, 0.0017820884240791202, 0.011578652076423168, 0.018932564184069633, 0.004335728939622641, -0.009938879869878292, 0.006534026004374027, -0.012359154410660267, 0.011313710361719131, -0.0002875418867915869, -0.01241643913090229, 0.01860317774116993, 0.0060113039799034595, 0.005843030288815498, 0.006809708196669817, 0.014693502336740494, 0.015624377876520157, 0.017414521425962448, -0.017314273864030838, -0.009437639266252518, 0.0193049143999815, 0.00557450857013464, -0.003599979681894183, 0.005531545262783766, -0.004879932850599289, 0.01850293017923832, 0.001825051847845316, 0.015223385766148567, 0.007225021719932556, 0.0015851726057007909, -0.01595376431941986, 0.018789352849125862, -0.0026923767291009426, 0.014392758719623089, -0.0016925812233239412, -0.012273227795958519, -0.002900033490732312, -0.013025088235735893, 0.015982406213879585, -0.004564867354929447, -0.004009922966361046, 0.02099481038749218, -0.0044610388576984406, 0.01283891312777996, -0.008965041488409042, -0.0069565000012516975, -0.0017722425982356071, -0.022756312042474747, 0.014120656996965408, -0.0066199530847370625, -0.017371557652950287, -0.01894688419997692, -0.01157149113714695, -0.008535407483577728, -0.03081911988556385, -0.021753830835223198, -0.028957370668649673, -0.007883794605731964, 0.022212108597159386, 0.01022530347108841, 0.020035292953252792, -0.015008567832410336, -0.025992892682552338, -0.019577015191316605, -0.012309030629694462, -0.0029859603382647038, 0.005341790150851011, 0.0007205330184660852, -0.006691558752208948, -0.010540368035435677, 0.005911055952310562, -0.00139362714253366, -0.003680536290630698, -0.006050686817616224, -0.002592128701508045, -0.008871953934431076, 0.01520906388759613, 0.005116231739521027, -0.0018635400338098407, 0.01271718367934227, -0.005538705736398697, 0.0014213743852451444, -0.0027532416861504316, -0.02298545092344284, 0.010927039198577404, -0.0008829885628074408, 0.005839449819177389, 0.007497123442590237, -0.02049356885254383, 0.007182057946920395, -0.008914917707443237, -0.00022544627427123487, 0.01970590651035309, 0.02268470637500286, 0.010841112583875656, -0.00023249496007338166, 0.030790477991104126, 0.01044728048145771, -0.0011913408525288105, 0.012351994402706623, 0.017185382544994354, 0.0052737644873559475, 0.020507890731096268, 0.015395238995552063, 0.015223385766148567, -0.006161675788462162, -0.006118712481111288, 0.016941923648118973, -0.0060041435062885284, -0.0044610388576984406, -0.004919316153973341, 0.018961206078529358, -0.0009174488368444145, -0.0059289573691785336, 0.021123699843883514, 0.0019798993598669767, -0.00314707332290709, -0.0027693528681993484, -0.009093931876122952, 0.026809198781847954, 0.02284223772585392, 0.012917679734528065, 0.007160576526075602, 0.019963687285780907, -0.007740583270788193, 0.008979362435638905, 0.014500167220830917, 0.011793469078838825, -0.02668030746281147, 0.012896197848021984, -0.01298928540199995, 0.014306831173598766, 0.00044619341497309506, -0.0026512034237384796, -0.005653275176882744, 0.012996446341276169, -0.013927320949733257, -0.0032688030041754246, 0.007912436500191689, 0.0017874588957056403, 0.008034166879951954, 0.01470782421529293, -0.00922282226383686, 0.025305476039648056, -0.027854641899466515, 0.021982969716191292, -0.008098611608147621, -0.009852953255176544, -0.005789326038211584, -0.010569010861217976, -0.004711659159511328, -0.0037879447918385267, -0.006591310724616051, 0.0067524234764277935, 0.007271565496921539, -0.005259443540126085, -0.00785515271127224, -0.001806255429983139, 0.014621896669268608, -0.002663734368979931, -0.004998082295060158, 0.001512671704404056, 0.01970590651035309, -0.005671176593750715, -0.014650539495050907, 0.00418893713504076, -0.008485282771289349, -0.011807790026068687, -0.006448098924010992, 0.007898115552961826, -0.011908038519322872, -0.015695983543992043, -0.011900877580046654, 0.008134414441883564, 0.004668695852160454, -0.0182451494038105, -0.012452241964638233, -0.011242104694247246, -0.0015932281967252493, -0.003906094469130039, -0.017385879531502724, 0.0015171471750363708], "68d47fad-bb4a-44a7-8c63-58050f005f87": [-0.022025052458047867, 0.0063234856352210045, -0.013714808039367199, 0.020688438788056374, -0.038006290793418884, -0.017361436039209366, 0.023942800238728523, -0.007750900462269783, -0.02532299794256687, 0.021284103393554688, 0.03193341940641403, 0.043120287358760834, -0.00368839711882174, 0.00296742538921535, -0.009850254282355309, 0.0021048018243163824, -0.01788445934653282, 0.003904507029801607, -0.015356517396867275, -0.015981238335371017, 0.0799643024802208, -0.03286323696374893, -0.009298174642026424, -0.006541411392390728, 0.01274140551686287, -0.02690659463405609, 0.0008771520806476474, -0.0158068984746933, -0.062123432755470276, -0.020034661516547203, 0.02568620815873146, -0.00846279226243496, 0.019133901223540306, 0.014542927034199238, -0.0100100664421916, -0.04901881515979767, 0.0015835954109206796, 0.001554538612253964, 0.0181459691375494, -0.02205410972237587, 0.011651775799691677, 0.02504695951938629, 0.01177526731044054, 0.0081431670114398, -0.042103298008441925, 0.015777841210365295, -0.023463362827897072, -0.0014891608152538538, 0.00032598094549030066, 0.0026114797219634056, 0.005241119768470526, 0.023986386135220528, -0.026761310175061226, -0.030277183279395103, 0.0464908741414547, -0.02818509377539158, 0.015618028119206429, 0.10309351235628128, 0.007078962400555611, -0.048524852842092514, -0.027981694787740707, -0.0004002119821961969, 0.01590859703719616, -0.01869804970920086, -0.004561916925013065, -0.0362628810107708, -0.005197534803301096, 0.009930160827934742, -0.014935193583369255, 0.00855722650885582, -0.00402799854055047, -0.007859863340854645, -0.07392048835754395, 0.04689767211675644, -0.004078847821801901, 0.014855287037789822, 0.008121374994516373, -0.0006578640313819051, 0.020790139213204384, -0.02420431189239025, 0.0047072009183466434, 0.0017978893592953682, 0.045357659459114075, -0.005607961677014828, 0.029376421123743057, 0.013525938615202904, -0.009334496222436428, -0.040534231811761856, -0.03338626027107239, -0.03861648216843605, 0.018857860937714577, 0.02811245061457157, -0.02029617317020893, -0.0012385459849610925, 0.017695588991045952, 0.020223530009388924, -0.014085282571613789, 0.004147857893258333, 0.019787678495049477, 0.010031859390437603, -0.0022573499009013176, 0.037454210221767426, -0.030364353209733963, -0.00567697174847126, -0.005451781675219536, -0.030829261988401413, -0.002800348913297057, 0.03472287207841873, -0.047507863491773605, 0.011186867021024227, 0.02270788699388504, -0.06264645606279373, 0.0032289365772157907, -0.012545271776616573, -0.046113137155771255, -0.001203133026137948, -0.011034318245947361, -0.03515872359275818, 0.008179488591849804, -0.03826780244708061, 0.01657690294086933, 0.0011277669109404087, 0.014114338904619217, 0.004213235806673765, -0.03216587379574776, 0.02894056960940361, 0.010249785147607327, 0.037367042154073715, 0.02020900323987007, 0.005030457861721516, -0.0036575242411345243, -0.01834936812520027, 0.03542023524641991, 0.0181459691375494, -0.016678601503372192, 0.016024824231863022, 0.025657150894403458, 0.04925126954913139, -0.030102841556072235, 0.040621403604745865, -0.03231116011738777, -0.02568620815873146, -0.007729107979685068, -0.0002091862406814471, 0.002050320152193308, 0.007496653590351343, -0.05006486177444458, 0.03173002228140831, -0.02811245061457157, 0.02597677707672119, -0.021095234900712967, -0.026732252910733223, 0.006574100349098444, -0.013605845160782337, 0.048989761620759964, -0.020121831446886063, -0.024959789589047432, 0.017913514748215675, -0.006835611537098885, 0.0409700833261013, 0.013576788827776909, -0.028272263705730438, -0.013736600987613201, 0.027284331619739532, 0.00897855032235384, 0.03655344992876053, 0.07054990530014038, 0.03481004387140274, -0.0237103458493948, 0.017332378774881363, 0.007670994382351637, -0.00897128600627184, 0.04951278120279312, -0.004990505054593086, 0.004471114836633205, -0.011651775799691677, 0.0362919382750988, 0.013177257031202316, 0.03704741597175598, -0.03980781137943268, 0.017288794741034508, 0.01377292163670063, -0.006621317472308874, -0.005306497681885958, -0.037541382014751434, 0.016765771433711052, 0.024727335199713707, 0.01766653172671795, 0.021269574761390686, 0.027676599100232124, -0.0004161024116910994, -0.017274266108870506, -0.0058149914257228374, 0.004801635630428791, -0.0005411828169599175, -0.01833483949303627, -0.012363667599856853, 0.020354285836219788, 0.0005121260765008628, 0.03379305452108383, -0.005095835775136948, -0.028490189462900162, 0.005637018475681543, 0.05730000510811806, -0.006065606605261564, 0.011615454219281673, -0.015588971786201, -0.05721283331513405, -0.011782531626522541, -0.0200201328843832, 0.024422237649559975, -0.01759389042854309, 0.005542584229260683, 0.008288451470434666, -0.007108019199222326, 0.010801863856613636, 0.012494422495365143, 0.01692558452486992, 0.0036738687194883823, 0.007787221577018499, -0.02307109721004963, -0.021865239366889, 0.008404678665101528, 0.006152777001261711, -0.0632275938987732, -0.03402550891041756, -0.03236927092075348, 0.03173002228140831, -0.02726980485022068, -0.004220499657094479, 0.03844214230775833, -0.02448035217821598, 0.0013329805806279182, -0.02763301320374012, 0.0015817794483155012, 0.05535319820046425, 0.019482582807540894, 0.009748555719852448, -0.03109077364206314, -0.027298860251903534, 0.006846508011221886, -0.005695132073014975, -0.004060687497258186, 0.011382999829947948, -0.006526883225888014, 0.03881987929344177, -0.006842875853180885, 0.0381806306540966, 0.017913514748215675, 0.016823885962367058, -0.0006124628125689924, 0.02020900323987007, -0.014535662718117237, 0.03155568242073059, -0.0021847079042345285, 0.01712898164987564, 0.047391634434461594, -0.008114110678434372, 0.0037483267951756716, 0.010438654571771622, 0.016635015606880188, 0.012022249400615692, -0.023565063253045082, 0.024814505130052567, 0.03588514402508736, -0.030829261988401413, 0.025918662548065186, -0.01135394349694252, 0.03730892762541771, 0.027095463126897812, -0.018116913735866547, 0.009806669317185879, 0.004630926996469498, 0.017913514748215675, -0.03544929251074791, -0.019119372591376305, 0.02167637087404728, 0.01139752846211195, 0.030742092058062553, 0.011470170691609383, -0.02661602571606636, -0.028446603566408157, 0.04160933196544647, 0.02699376456439495, 0.03463570028543472, 0.01675124280154705, -0.05872378870844841, -0.024916203692555428, -0.015225761570036411, -0.012225647456943989, -0.02289675548672676, 0.0001848965766839683, -0.0007059893687255681, 0.060438137501478195, -0.005368243437260389, 0.005132156889885664, 0.0018569108797237277, -0.009748555719852448, 0.007787221577018499, -0.007198821287602186, -0.009712234139442444, 0.0010551249142736197, -0.015225761570036411, -0.025453753769397736, 0.056428298354148865, -0.002340888138860464, 0.046868614852428436, 0.025846021249890327, -0.021051649004220963, 0.011048846878111362, 0.014346793293952942, -0.012167533859610558, -0.017826344817876816, 0.0061927298083901405, -0.01627180725336075, 0.03277606889605522, -0.048437681049108505, 0.00614188052713871, -0.010968941263854504, -0.0418999008834362, 0.021995995193719864, 0.019133901223540306, -0.06084493175148964, 0.035972315818071365, 0.023753931745886803, -0.048815418034791946, 0.01368575170636177, -0.047856543213129044, -0.025090543553233147, -0.016867469996213913, 0.00029442706727422774, 0.006795658264309168, -0.01316272933036089, 0.0035449292045086622, -0.030073784291744232, -0.02288222685456276, -0.053464505821466446, -0.06258834153413773, 0.0024244266096502542, -0.026005832478404045, -0.0024171622935682535, -0.0062254187650978565, 0.011099696159362793, -0.01335159782320261, 0.004155122209340334, -0.03181719407439232, 0.013024709187448025, 0.0023790253326296806, -0.024175254628062248, 0.007246038876473904, 0.0009116569999605417, -0.012610649690032005, 0.030771147459745407, -0.0021520189475268126, 0.03356060013175011, -0.0052810730412602425, -0.010191671550273895, -0.01974409446120262, 0.007355001755058765, -0.0010033674770966172, -0.014782645739614964, -0.03329908847808838, -0.018538236618041992, -0.009566950611770153, 0.011223187670111656, 0.04102819785475731, -0.014877079986035824, 0.014513869769871235, -0.00855722650885582, -0.023477891460061073, -0.04120253771543503, 0.0034504947252571583, 0.010366012342274189, -0.018494650721549988, -0.03899422287940979, -0.01739049330353737, 0.07525710761547089, -0.0029946661088615656, -0.0172016229480505, 0.0011876965872943401, 0.0146591542288661, -0.010184407234191895, -0.04477652534842491, 0.02196693792939186, 0.025933191180229187, 0.02418978326022625, 0.02706640586256981, -0.0031236056238412857, -0.002340888138860464, -0.009414401836693287, -0.014840759336948395, 0.025628095492720604, 0.008179488591849804, 0.0071225473657250404, -0.0316137969493866, -0.04701389744877815, -0.010402332991361618, 0.006828347221016884, -0.009654120542109013, -0.008288451470434666, -0.0006701223901472986, 0.004689040593802929, 0.010119029320776463, 0.009283646941184998, 0.01778275892138481, -0.019656922668218613, 0.010133557952940464, -0.018262196332216263, 0.018305782228708267, -0.003791911993175745, 0.013278956525027752, 0.013460561633110046, 0.0353621207177639, 0.0418999008834362, 0.0029565291479229927, 0.009748555719852448, 0.005143052898347378, 0.07670994102954865, 0.009726762771606445, -0.04869919270277023, 0.04105725511908531, 0.03143945336341858, -0.009247325360774994, -0.0015527226496487856, -0.025337526574730873, 0.04596785455942154, -0.0036593403201550245, 0.02158920094370842, -0.0127922547981143, -0.029623404145240784, 0.013395183719694614, 0.045822568237781525, -0.013177257031202316, -0.013809243217110634, 0.011833380907773972, 0.006330749485641718, 0.013039237819612026, -0.011651775799691677, 0.011128753423690796, -0.00953789334744215, -0.010743750259280205, 0.0325436145067215, 0.019206542521715164, 0.008244866505265236, -0.061193615198135376, -0.03547834977507591, -0.03600137308239937, 0.012901217676699162, 0.031671907752752304, 0.013467825017869473, 0.02987038716673851, 0.014542927034199238, -0.031032659113407135, -0.012450837530195713, -0.017143510282039642, -0.009225533343851566, -0.004776210989803076, 0.008637133054435253, 0.03245644271373749, -0.0409700833261013, -0.01927918568253517, 0.02148750051856041, 0.021937882527709007, -0.01776823215186596, 0.030596807599067688, -0.009559686295688152, -0.0005498090758919716, 0.023884687572717667, 0.006494194269180298, 0.01548727322369814, -0.029812274500727654, 0.014179716818034649, -0.0010160799138247967, 0.0181459691375494, 0.010162615217268467, -0.014978778548538685, -0.012617914006114006, 0.026645082980394363, -0.01685294322669506, -0.004856117069721222, -0.002949264831840992, -0.015937652438879013, -0.019308241084218025, -0.016358977183699608, 0.027589429169893265, -0.0020339759066700935, -0.0199910756200552, -0.015429159626364708, 0.0022882227785885334, -0.0035558254458010197, 0.041173480451107025, 0.008215809240937233, -0.006995423696935177, -0.005880369339138269, -0.0030273550655692816, -0.008259394206106663, 0.0199910756200552, -0.015981238335371017, -0.011760738678276539, -0.020891837775707245, 0.02594771981239319, -0.0011441113892942667, 0.0007641029660589993, -0.011077904142439365, -0.0020012869499623775, 0.02353600598871708, -0.039778754115104675, 0.03460664674639702, -0.00018444255692884326, -0.02009277604520321, -0.026281872764229774, 0.012123948894441128, -0.028635473921895027, 0.011702625080943108, 0.029361894354224205, -0.00804146844893694, -0.020121831446886063, 0.0020176314283162355, 0.04800182953476906, 0.02987038716673851, -0.011789795011281967, -0.009632328525185585, -0.023376192897558212, -0.00011917827214347199, -0.013569524511694908, -0.01139026414602995, -0.018291253596544266, -0.0227950569242239, 0.008244866505265236, -0.030015671625733376, -0.017535777762532234, -0.001074193511158228, -0.024683749303221703, 0.0049977689050138, 0.011092431843280792, 0.03823874518275261, -0.00614188052713871, -0.011455642059445381, 0.01177526731044054, 0.020979007706046104, -0.010910827666521072, 0.021153347566723824, -0.00774363661184907, -0.003608491038903594, -0.0049977689050138, 0.011412057094275951, -0.0034250698518007994, 0.032514557242393494, -0.011971400119364262, 0.011165074072778225, -0.02987038716673851, 0.013322541490197182, -0.013700279407203197, -0.009174684062600136, 0.007779957260936499, -0.012668763287365437, -0.0353621207177639, -0.00990836787968874, -0.0325436145067215, -0.017840873450040817, -0.015501800924539566, 0.015472744591534138, 0.0005584353348240256, 0.019889377057552338, 0.002030343748629093, -0.006806554738432169, -0.009930160827934742, 0.02596224844455719, -0.01469547487795353, 0.007431275676935911, 0.021531086415052414, -0.01611199416220188, 0.025918662548065186, 0.029260193929076195, 0.00039226675289683044, 0.021327689290046692, 0.018770691007375717, -0.012007721699774265, -0.018000686541199684, -0.010133557952940464, 0.01418698113411665, -0.021255046129226685, -0.012538008391857147, -0.01701275445520878, 0.0037083737552165985, 0.044427841901779175, -0.03759949654340744, -0.02401544339954853, -0.001298475661315024, -0.0014455756172537804, -0.015661614015698433, 0.03449041768908501, -0.021981466561555862, 0.0023536004591733217, -0.03489721193909645, 0.02009277604520321, -0.004452954046428204, 0.021095234900712967, 0.019685979932546616, -0.0051503172144293785, 0.03146851062774658, 0.04718823730945587, 0.020891837775707245, -0.018494650721549988, -0.035507407039403915, 0.0060256533324718475, 0.001418334897607565, -0.004009838216006756, -0.026557913050055504, -0.011746210046112537, -0.022940341383218765, -0.002517045009881258, 0.0010133557952940464, -0.008847794495522976, 0.031410396099090576, 0.0020575844682753086, 0.012022249400615692, 0.010438654571771622, 0.00841920729726553, 0.009080248884856701, 0.024218840524554253, -0.042103298008441925, 0.051401473581790924, -0.02911491133272648, 0.03385116904973984, 0.01843653805553913, -0.007271463517099619, 0.008731567300856113, 0.008230337873101234, 0.05666075274348259, -0.016794828698039055, -0.014513869769871235, 0.0057496135123074055, -0.01627180725336075, -0.021356746554374695, -0.006170937325805426, -0.019874848425388336, 0.0022010523825883865, -0.010119029320776463, -0.00020600814605131745, 0.003919035661965609, 0.0023826572578400373, -0.006407023873180151, 0.03989498317241669, -0.022548073902726173, 0.02819962240755558, -0.021865239366889, 0.009290911257266998, 0.027981694787740707, -0.0014519317774102092, -0.0019141165539622307, 0.0012539824238047004, 0.007060801610350609, 0.011230451986193657, 0.0014446675777435303, -0.016983697190880775, -0.012044042348861694, 0.017187096178531647, 0.01455745566636324, 0.01888691820204258, 0.016809357330203056, -0.023216381669044495, 0.0023935537319630384, 0.008273922838270664, 0.0061600408516824245, 0.00711528304964304, 0.02260618843138218, -0.005132156889885664, 0.04073762893676758, 0.011629982851445675, 0.010140822269022465, -0.02401544339954853, 0.02670319564640522, -0.03617571294307709, 0.004841588903218508, 0.0074675967916846275, 0.003593962639570236, -0.027197161689400673, 0.011121489107608795, -0.02176354080438614, -0.02113882079720497, -0.02942000702023506, -0.004416632931679487, -0.00711891520768404, -0.023332608863711357, -0.000745942466892302, -0.011579133570194244, 0.052621860057115555, -0.012850368395447731, -0.013642165809869766, 0.008077790029346943, -0.006584996823221445, -0.029202081263065338, 0.028635473921895027, 0.0028838871512562037, -0.013881884515285492, 0.008891379460692406, -0.020877309143543243, 0.033357203006744385, -0.020325230434536934, -0.007787221577018499, -0.015269346535205841, 0.016620488837361336, -0.017535777762532234, 0.02045598439872265, 0.013852828182280064, -0.013511410914361477, -0.012864897027611732, -0.00737316207960248, 0.03478098660707474, 0.011797059327363968, 0.001795165240764618, 0.01512406300753355, 0.023797517642378807, 0.01190602220594883, 0.026165645569562912, 0.0014219670556485653, 0.037367042154073715, -0.012269232422113419, 0.016765771433711052, 0.0034450464881956577, 0.037250813096761703, -0.010438654571771622, -0.03852931410074234, -0.029056796804070473, 0.008339300751686096, -0.027676599100232124, -0.004253188613802195, -0.016620488837361336, 0.003087284741923213, 0.017710117623209953, -0.03576891869306564, 0.0020575844682753086, 0.004554653074592352, 0.0007995159248821437, -0.03864553943276405, -0.011738945730030537, 0.004322198685258627, 0.020543156191706657, -0.013366126455366611, 0.01797162927687168, -0.005110364407300949, 0.015312932431697845, -0.04904787242412567, 0.026093004271388054, -0.006178201641887426, 0.0465199314057827, -0.02336166426539421, -0.0055825370363891125, 0.021472973749041557, 0.019598810002207756, -0.03565268963575363, 0.04251009225845337, 0.017187096178531647, -0.012153005227446556, -0.009305438958108425, 0.016867469996213913, 0.016024824231863022, -0.0172161515802145, 0.045938797295093536, -0.01227649673819542, 0.010591202415525913, -0.03835497051477432, -0.01927918568253517, 0.010119029320776463, 0.030916431918740273, 0.0008971286006271839, 0.003922667820006609, 0.028548303991556168, -0.021647313609719276, 0.02551186829805374, 0.03193341940641403, 0.021705428138375282, 0.04073762893676758, -0.020339757204055786, -0.04622936248779297, 0.00707169808447361, -0.00804146844893694, -0.03844214230775833, -0.01964239403605461, -0.020354285836219788, -0.03236927092075348, 0.014310472644865513, -0.024640163406729698, 0.026281872764229774, -0.04570634290575981, 0.022199392318725586, 0.018915975466370583, 0.005477206315845251, 0.015676142647862434, 0.023100154474377632, -0.014477549120783806, -0.005568008869886398, -0.00031009051599539816, 0.02048504166305065, -0.010533088818192482, 0.026543384417891502, 0.0045728133991360664, -0.006421552039682865, 0.0031217895448207855, -0.0022755104582756758, -0.0063924952410161495, 0.03565268963575363, 0.03556551784276962, 0.00841920729726553, 0.0028421180322766304, -0.012726876884698868, 0.001813325798138976, -0.013743865303695202, 0.0015200336929410696, -0.02940547838807106, -0.02856283076107502, 0.007612880785018206, 0.01945352554321289, -0.01144111342728138, -0.0028584625106304884, 0.014855287037789822, -0.01685294322669506, 0.028170565143227577, -0.007496653590351343, -0.003167190821841359, -0.011993193067610264, 0.02028164453804493, 0.020877309143543243, -0.021051649004220963, 0.008855058811604977, 0.0050813076086342335, 0.0019667819142341614, 0.02504695951938629, -0.015981238335371017, -0.0016135602490976453, -0.03263078257441521, 0.01088903471827507, 0.007271463517099619, -0.023797517642378807, 0.0037664873525500298, -0.004035262856632471, -0.010634787380695343, -0.02167637087404728, 0.04541577398777008, -0.02578790672123432, -0.0577067993581295, -0.0059275864623487, -0.019656922668218613, 0.020601268857717514, -0.014739060774445534, 0.02520677074790001, 0.01423783041536808, 0.041086312383413315, 0.04997768998146057, 0.010801863856613636, -0.010148086585104465, -0.01731785014271736, 0.019482582807540894, -0.019497111439704895, -0.0013093719026073813, -0.02763301320374012, 0.003463207045570016, -0.015182176604866982, 0.009501572698354721, 0.018073327839374542, -0.0015018732519820333, -0.014535662718117237, 0.021908825263381004, -0.0162863340228796, -0.022533545270562172, -0.010743750259280205, -0.007976090535521507, 0.019773149862885475, 0.0265288557857275, 0.004253188613802195, 0.0034922638442367315, 0.027938110753893852, 0.028679057955741882, -0.034287020564079285, 0.029100382700562477, -0.008898643776774406, 0.023477891460061073, -0.007198821287602186, 0.0012231095461174846, -0.007627409417182207, 0.025439225137233734, 0.006367070600390434, 0.0007513905875384808, -0.014223301783204079, 0.0017007306450977921, 0.01270508486777544, 0.001626272569410503, -0.026688668876886368, 0.0199910756200552, -0.022925812751054764, -0.02196693792939186, -0.029986614361405373, -0.03544929251074791, -0.026572441682219505, 0.002998298266902566, 0.00732957711443305, -0.017361436039209366, -0.020325230434536934, -0.00099519535433501, -0.004089744295924902, -0.045008979737758636, -0.036989301443099976, -0.03611759841442108, 0.03571080416440964, -0.040330834686756134, 0.016344448551535606, 0.0014973330544307828, 0.012690556235611439, 0.036437224596738815, 0.013431504368782043, 0.03771572187542915, -0.007809014059603214, -0.008332036435604095, 0.08118469268083572, 0.03481004387140274, 0.018363894894719124, -0.005920322611927986, -0.017521249130368233, -0.0032198564149439335, -0.00644697668030858, 0.005586169194430113, 0.022170336917042732, 0.02065938338637352, -0.009763083420693874, 0.010039123706519604, -0.008724302984774113, -0.040243662893772125, -0.014063489623367786, 0.03292135149240494, -0.015429159626364708, 0.012051306664943695, 0.012131213210523129, -0.00799788348376751, 0.013533202931284904, -0.01564708538353443, 0.0029547130689024925, -0.02904226817190647, -0.02641262859106064, -0.033822111785411835, -0.020238058641552925, -0.016765771433711052, 0.0335024856030941, -0.024436766281723976, -0.01739049330353737, -0.034403245896101, -0.011840645223855972, 0.013373390771448612, 0.008753360249102116, 0.005778670310974121, 0.014332265593111515, 0.04910598695278168, 0.0015309300506487489, 0.013743865303695202, -0.028083395212888718, 0.013663958758115768, -0.01936635561287403, -0.00402073422446847, 0.0009370816987939179, 0.0011904207058250904, -0.0066903275437653065, 0.00809231773018837, -0.0034359663259238005, 0.014034433290362358, -0.014433964155614376, 0.03675684705376625, -0.028911512345075607, 0.02365223318338394, 0.008186752907931805, 0.0032343848142772913, -0.017797287553548813, 0.0067230165004730225, 0.026398099958896637, 0.020063718780875206, -0.003857289906591177, 0.013373390771448612, -0.003593962639570236, -0.004391208291053772, -0.0246692206710577, -0.007177028805017471, 0.0015400102129206061, -0.013017444871366024, -0.023753931745886803, -0.015109534375369549, 0.007605616468936205, 0.010874506086111069, -0.024073556065559387, 0.03664062172174454, -0.02138580195605755, 0.0137293366715312, -0.001795165240764618, -0.01869804970920086, -0.002299119019880891, -0.0199910756200552, 0.009465252049267292, -0.00894222967326641, -0.008687982335686684, -0.013322541490197182, -0.016896527260541916, -0.015952181071043015, -0.006893725134432316, 0.013024709187448025, -0.017898986116051674, 0.028722643852233887, 0.024523936212062836, 0.0011686281068250537, 0.007206085603684187, -0.004086112137883902, 0.024029972031712532, 0.013061029836535454, -0.03393833711743355, -0.016707658767700195, 0.0045837098732590675, -0.004158753901720047, -0.008717038668692112, 0.006744808983057737, 0.03283417969942093, -0.028867928311228752, -0.009232797659933567, 0.026863008737564087, -0.02429148182272911, -0.021153347566723824, -0.00562975462526083, -0.03414173796772957, 0.005244751926511526, 0.00018478307174518704, 0.0015590788098052144, 0.007779957260936499, 0.0390813909471035, 0.008920436725020409, -0.013990847393870354, -0.001868715276941657, 0.01335159782320261, -0.006439712829887867, 0.006076502613723278, -0.019700508564710617, 0.009799405001103878, -0.07246765494346619, -0.015676142647862434, -0.015530858188867569, 0.015676142647862434, 0.002902047708630562, -0.002716810442507267, 0.013969055376946926, 0.009930160827934742, -0.01131035853177309, 0.040534231811761856, -0.010177142918109894, -0.01730332337319851, 0.010235256515443325, 0.025337526574730873, 0.008586283773183823, 0.0005030457978136837, -0.01608293689787388, -0.005876737181097269, 0.00036661504418589175, -0.0109326196834445, -0.017637476325035095, 0.003294314257800579, 0.03173002228140831, -0.008135903626680374, -0.020034661516547203, 0.027211690321564674, -0.024073556065559387, 0.008361093699932098, -0.02456752210855484, -0.03934290260076523, 0.017695588991045952, -0.010177142918109894, -0.011201395653188229, 0.003479551523923874, 0.005459045525640249, 0.007801750209182501, 0.015007835812866688, 0.026848480105400085, 0.018160497769713402, 0.0064578731544315815, 0.011462906375527382, 0.013387919403612614, -0.0035449292045086622, 0.004808899946510792, 0.00397714925929904, -0.0010079076746478677, -0.008528170175850391, -0.029637932777404785, 0.005284705199301243, 0.009508837014436722, 0.015341988764703274, -0.004129697103053331, -0.0034250698518007994, -0.018828803673386574, 0.014513869769871235, 0.011935079470276833, -0.005578904878348112, -0.027691127732396126, 0.004801635630428791, -0.028156036511063576, 0.05265091732144356, 0.02103712037205696, -0.011128753423690796, 0.0035249528009444475, -0.022301090881228447, -0.0022954868618398905, 0.030683977529406548, 0.010692900978028774, 0.008440999314188957, -0.0018632671562954783, 0.014128867536783218, -0.014368586242198944, 0.00035072461469098926, 0.01548727322369814, 0.024509407579898834, 0.0011631798697635531, 0.0038681861478835344, -0.007605616468936205, 0.014964250847697258, 0.009116570465266705, -0.018378423526883125, 0.007315048482269049, 0.021749012172222137, 0.00567333959043026, -0.015356517396867275, -0.020412400364875793, 0.0011768002295866609, -0.020078247413039207, -0.012821312062442303, 0.0009270934388041496, 0.016068408265709877, 0.00448564300313592, 0.053173936903476715, 0.009370816871523857, -0.010649316012859344, 0.00727872783318162, 0.015952181071043015, -0.012719612568616867, 0.015748783946037292, 0.0016017559682950377, -0.008194017224013805, -0.025366583839058876, -0.00402436638250947, -0.031003601849079132, 0.009240061044692993, 0.011629982851445675, 0.004478378687053919, 0.0158068984746933, 0.0040425267070531845, -0.02408808469772339, -0.018581822514533997, 0.011433850042521954, 0.007427643518894911, -0.005429988726973534, -0.012349138967692852, 0.0009997354354709387, -0.0006728464504703879, 0.029187552630901337, -0.007867127656936646, 0.0046163988299667835, -0.011506491340696812, 0.03510060906410217, -0.0066576385870575905, -0.04910598695278168, 0.007649201899766922, -0.00027149944799020886, -0.002678673481568694, -0.015588971786201, 0.00588400149717927, 0.029899444431066513, 0.0008290267433039844, 0.007656466215848923, 0.0006115547730587423, 0.015472744591534138, -0.005368243437260389, 0.021923353895545006, 0.03199153393507004, -0.004097008612006903, 0.029361894354224205, -0.02625281549990177, 0.013199049979448318, -0.0018632671562954783, 0.005967539735138416, 0.021632784977555275, -0.005328290164470673, 0.0008835082408040762, 0.006265372037887573, -0.02503243088722229, -0.006839243695139885, -0.02353600598871708, -0.013903677463531494, 0.01502236444503069, 0.0390813909471035, 0.016504261642694473, -0.01134667918086052, -0.02734244614839554, -0.024683749303221703, 0.010162615217268467, -3.1638992368243635e-05, -0.004943287465721369, -0.0008966745808720589, -0.008106846362352371, 0.010060915723443031, -0.020891837775707245, 0.015501800924539566, -0.029899444431066513, -0.02716810442507267, -0.012167533859610558, -0.012610649690032005, -0.01888691820204258, 0.013315277174115181, -0.003995309583842754, -0.023782989010214806, -0.008063261397182941, 0.017274266108870506, -0.020702967420220375, -0.011884230189025402, -0.017245208844542503, 0.03524589538574219, -0.004209603648632765, -0.017753703519701958, 0.02539564110338688, -0.009363552555441856, 0.006770233623683453, 0.004144225735217333, -0.010017330758273602, -0.014877079986035824, 0.005971171893179417, -0.01046771090477705, 0.014339528977870941, 0.013068294152617455, -0.024727335199713707, -0.0146518899127841, -0.007888920605182648, 0.003630283521488309, 0.02336166426539421, 0.01181885227560997, 0.01362763810902834, -0.016417089849710464, 0.00894222967326641, -0.019003145396709442, -0.018945030868053436, 0.005593433510512114, 0.017245208844542503, -0.020601268857717514, 0.008179488591849804, 0.0013429687824100256, 0.014078018255531788, 0.01232734601944685, -0.03315380588173866, -0.010031859390437603, -0.0027386031579226255, 0.008586283773183823, -0.003704741597175598, 0.002331807976588607, -0.01227649673819542, -0.017346907407045364, -0.01046044658869505, 0.018087856471538544, -0.02141485922038555, 0.023855630308389664, -0.010031859390437603, 0.011027054861187935, -0.013845563866198063, 0.009668649174273014, 0.006897357292473316, 0.0015808714088052511, -0.04291689023375511, -0.009683177806437016, 0.02401544339954853, -0.024306010454893112, 0.012516215443611145, 0.011622718535363674, -0.010060915723443031, -0.004649087321013212, 0.0037337983958423138, 0.026761310175061226, -0.008637133054435253, 0.024509407579898834, -0.007362266071140766, -0.0061927298083901405, -0.016417089849710464, 0.0015036892145872116, 0.015574443154036999, 0.031148886308073997, -0.009806669317185879, -0.019962020218372345, 0.0010405965149402618, -0.005360979121178389, 0.015835953876376152, 0.007990619167685509, -0.019395412877202034, -0.015109534375369549, 0.006341645959764719, -0.00025379296857863665, -0.003158110659569502, 0.007296888157725334, -0.009305438958108425, 0.00216473126783967, -0.010445918887853622, -0.024073556065559387, 0.01218932680785656, 0.039226677268743515, -0.030131898820400238, 0.002780372276902199, 0.005121260415762663, -0.005103100091218948, 0.023521477356553078, 0.0007323221070691943, -0.017811816185712814, -0.003181719221174717, -0.012676027603447437, -0.01852370798587799, -0.027473201975226402, 0.009850254282355309, 0.007035376969724894, 0.007238774560391903, -0.012014986015856266, -0.012472630478441715, 0.0004980516387149692, -0.022548073902726173, -0.023884687572717667, -0.0001355227141175419, 0.013293484225869179, 0.00681381905451417, 0.012102155946195126, 0.008782416582107544, -0.01750672049820423, 0.01475358847528696, -0.01047497522085905, -0.004452954046428204, -0.010148086585104465, 0.031410396099090576, 0.0023299918975681067, 0.02391374483704567, -0.006156408693641424, 0.00661042146384716, -0.009901103563606739, 0.02923113852739334, 0.0043730479665100574, 0.035391177982091904, -0.025381112471222878, -0.010046388022601604, -0.016620488837361336, -0.015501800924539566, -0.00025288492906838655, 0.018480122089385986, -0.001354773179627955, -0.00939260981976986, -0.004438425879925489, 0.0033524278551340103, 0.016344448551535606, -0.022301090881228447, -0.00026741332840174437, 0.007496653590351343, 0.02074655331671238, -0.0024716437328606844, 0.02615111693739891, -0.010968941263854504, -0.04512520506978035, 0.005371875129640102, 0.008731567300856113, 0.036611564457416534, -0.020819194614887238, -0.018102385103702545, -0.020136360079050064, -0.02632545866072178, -0.01852370798587799, 0.011637247167527676, -0.01237819530069828, -0.01423783041536808, 0.03239832818508148, -0.02010730281472206, -0.01321357861161232, 0.009726762771606445, 0.0109326196834445, -0.005742349661886692, 0.003056411864235997, 0.0015599868493154645, -0.0019831263925880194, -0.000160379902808927, 0.035216838121414185, 0.0035848822444677353, 0.0011295829899609089, 0.017840873450040817, 0.0026568807661533356, 0.0013184521812945604, 0.03556551784276962, 0.030829261988401413, -0.022068636491894722, 0.018029741942882538, 0.008818738162517548, 0.005662443116307259, -0.017259737476706505, 0.017652004957199097, 0.022359205409884453, -0.004285877570509911, 0.002061216626316309, -0.016809357330203056, -0.024538464844226837, -0.027051877230405807, -0.009457987733185291, 0.014782645739614964, 0.00852090585976839, -0.02074655331671238, 0.0059602754190564156, 0.03762855380773544, -0.02401544339954853, 0.01843653805553913, -0.013540467247366905, -0.009094777517020702, 0.021749012172222137, -0.0023681288585066795, -0.00912383385002613, -0.0020031030289828777, -0.01740502193570137, -0.012814047746360302, 0.024436766281723976, -0.008411942981183529, -0.023971857503056526, -0.007787221577018499, 0.01512406300753355, -0.02539564110338688, -0.00852090585976839, -0.04102819785475731, 0.007006320171058178, -0.0028657265938818455, -0.004115168936550617, -0.0030981809832155704, -0.02270788699388504, 0.01548727322369814, 0.015109534375369549, 0.0017143510049208999, -0.00184329051990062, 0.013780185952782631, -0.002887519309297204, -0.0274586733430624, -0.018363894894719124, -0.06020568311214447, 0.008738831616938114, -0.0037555911112576723, 0.007670994382351637, -0.0017461319221183658, 0.04422444477677345, -0.006214522290974855, -0.004812532104551792, 0.0005779578350484371, 0.02205410972237587, -0.0022192129399627447, -0.05622490122914314, -0.01766653172671795, -0.02587507851421833, -0.00944345910102129, -0.0008353829034604132, -0.010620259679853916, 0.009566950611770153, 0.00270954635925591, 0.032136816531419754, 0.007169764488935471, -0.013017444871366024, -0.017608419060707092, 0.0033542439341545105, 0.014891608618199825, -0.025293942540884018, 0.006403391715139151, 0.00939260981976986, -0.01805879920721054, 0.005644282791763544, 0.0039008751045912504, -0.0007482125074602664, -0.0015263898530974984, -0.001507321372628212, -0.0060147568583488464, -0.02158920094370842, 0.046461816877126694, -0.01140479277819395, 0.018204083666205406, -0.018538236618041992, -2.3126258383854292e-06, -0.035391177982091904, -0.032514557242393494, -0.044050104916095734, -0.007147972006350756, -0.022272035479545593, 0.005756877828389406, -0.019584281370043755, 0.02968151867389679, -0.022998454049229622, 0.02718263305723667, 0.020586740225553513, 0.014114338904619217, -0.020121831446886063, 0.019293712452054024, -0.008818738162517548, 0.002444403013214469, 0.0018187739187851548, -0.004017102066427469, 0.00846279226243496, -0.009763083420693874, 0.017986157909035683, 0.015153119340538979, -0.018683521077036858, 0.004271348938345909, 0.014680947177112103, -0.027676599100232124, 0.007187925279140472, 0.013293484225869179, -0.024247897788882256, -0.010954412631690502, -0.005938482936471701, 0.0006610421114601195, -0.009378081187605858, -0.011688096448779106, 0.00516847800463438, 0.0021138819865882397, -0.011056111194193363, -0.00030328030698001385, 0.0019014041172340512, 0.012116684578359127, -0.02048504166305065, 0.017928043380379677, 0.005851312540471554, 0.011114224791526794, -0.00389724294655025, 0.01367848739027977, 0.003655708394944668, 0.013068294152617455, -0.020223530009388924, -0.009116570465266705, 0.01228376105427742, 0.008593548089265823, 0.0006219970528036356, -0.005357346963137388, 0.005284705199301243, 0.008964021690189838, -0.022388262674212456, -0.0018814275972545147, -0.014891608618199825, 0.02735697478055954, -0.01098346896469593, -0.005339186638593674, -0.022867700085043907, -0.03739609941840172, 0.008746095933020115, 0.0008839622605592012, -0.016780300065875053, 0.0036502601578831673, 0.013809243217110634, 0.0070571694523096085, -0.017840873450040817, 0.001739775761961937, -0.010562146082520485, 0.009014870971441269, 0.01041686162352562, -0.0036702367942780256, -0.013547731563448906, 0.024683749303221703, 0.0022573499009013176, -0.02009277604520321, -0.00737316207960248, -0.012298289686441422, 0.0006696683703921735, 0.013925470411777496, -0.0013120960211381316, -0.012472630478441715, -0.005288336891680956, 0.006454240996390581, 0.001426507136784494, -0.012908481992781162, -0.01879974827170372, -0.009036663919687271, -0.011753474362194538, 0.012944802641868591, 0.0012539824238047004, 0.025163186714053154, 0.0038863467052578926, -0.005400931928306818, -0.00237176101654768, 0.00011622718739090487, 0.004118801094591618, -0.038848936557769775, -0.006363438442349434, -0.0004907874390482903, 0.001002459554001689, 0.014005376026034355, 0.0828118696808815, -0.0068900929763913155, -0.005284705199301243, 0.0014710003742948174, -0.001955885672941804, -0.013939998112618923, -0.01005365140736103, 0.02203958109021187, 0.01786993071436882, -0.02959434874355793, 0.00516484584659338, -0.02597677707672119, 0.023899216204881668, -0.010104501619935036, -0.024029972031712532, 0.016823885962367058, 0.023477891460061073, 0.007271463517099619, -0.02362317591905594, 0.014223301783204079, 0.014528398402035236, 0.003937195986509323, -0.020630326122045517, 0.0009734026971273124, -0.010169878602027893, -0.0044057369232177734, 0.008237602189183235, 0.010649316012859344, -0.009763083420693874, 0.005811359267681837, -0.006272635888308287, -0.002636904362589121, -0.013453297317028046, 0.00774363661184907, -0.0007037193281576037, 0.025381112471222878, -0.0037628551945090294, 0.025889605283737183, -0.012123948894441128, 0.007111650891602039, 0.004227763973176479, -0.009734027087688446, 0.019874848425388336, 0.01270508486777544, 0.0012285576667636633, -0.003919035661965609, -0.0021356744691729546, -0.007427643518894911, 0.009160155430436134, -0.006530514918267727, -0.001306647900491953, -0.00038454856257885695, 0.0035794342402368784, 0.03071303479373455, 0.006944574415683746, -0.015356517396867275, -0.004216867499053478, -0.004060687497258186, -0.00940713845193386, 0.00939987413585186, -0.018930504098534584, -0.01367848739027977, -0.01981673575937748, -0.033734939992427826, 0.006831979379057884, -0.01964239403605461, 0.00856449082493782, -0.03463570028543472, 0.0023844733368605375, -0.004162386059761047, -0.024799976497888565, 0.01592312566936016, -0.0015599868493154645, -0.0099955378100276, 0.006054710131138563, 0.015879539772868156, 0.0012703269021585584, 0.012494422495365143, -0.006795658264309168, -0.009465252049267292, 0.0013856460573151708, -0.003577618161216378, -0.010714693926274776, -0.015835953876376152, -0.012581593357026577, -0.0007009952096268535, 0.015225761570036411, -0.011332150548696518, -0.0010996181517839432, -0.010162615217268467, -0.020412400364875793, 0.013090087100863457, -0.017085395753383636, 0.010605731047689915, 0.02076108194887638, -0.0037265343125909567, 0.007968826219439507, -0.023666761815547943, 0.009799405001103878, -0.0024516673292964697, 0.005618858151137829, 0.016257278621196747, 0.014855287037789822, 0.006334381643682718, 0.0012167533859610558, 0.008085053414106369, 0.03292135149240494, 0.002389921573922038, -0.007830807007849216, 0.006799290422350168, -0.017143510282039642, 0.005299233365803957, -0.012087627314031124, -0.017172567546367645, -0.043033115565776825, 0.005429988726973534, 0.005404564086347818, -0.010482239536941051, 0.003948092460632324, -0.007670994382351637, -0.0013320725411176682, 0.0017570281634107232, -0.007424011826515198, -0.00665400642901659, 0.004561916925013065, 0.004133329261094332, -0.026921123266220093, 0.0044747465290129185, -0.006886460818350315, -0.005484470631927252, 0.017652004957199097, 0.0316428504884243, 0.0005961183342151344, 0.011288565583527088, 0.0036938453558832407, -0.008615340106189251, 0.002460747491568327, -0.008317507803440094, 0.01512406300753355, -0.0055171591229736805, 0.018756162375211716, -0.0017679245211184025, -0.003871818305924535, 0.002767659956589341, -0.006508722435683012, -0.000200446491362527, -0.014325001277029514, -0.007416747510433197, 0.0040388950146734715, -0.008949493058025837, 0.026586968451738358, -0.04009838029742241, 0.005520791281014681, 0.0060910312458872795, 0.009770347736775875, -0.0009071168606169522, -0.011317622847855091, 0.03146851062774658, 0.007809014059603214, 0.0026568807661533356, 0.0018668991979211569, -0.01330801285803318, -0.013024709187448025, -0.015676142647862434, -0.0035322168841958046, 0.00809958204627037, -0.015865011140704155, 0.02327449433505535, 0.0033560600131750107, 0.020819194614887238, 0.007859863340854645, -0.01502236444503069, -0.005731453187763691, -0.008826002478599548, 0.003737430553883314, 0.016998225823044777, -0.011491963639855385, -0.006515986751765013, -0.023942800238728523, 0.011412057094275951, 0.019860321655869484, -0.009792140685021877, 0.016678601503372192, -0.005371875129640102, -0.008070525713264942, -0.018770691007375717, 0.002695017959922552, -0.019613338634371758, -0.010315163061022758, 0.014506606385111809, -0.029754159972071648, 0.02131316065788269, -0.0020412399899214506, -0.02334713563323021, -0.003737430553883314, 0.0025697106029838324, 0.014869815669953823, 0.01502236444503069, 0.0012249256251379848, -0.008593548089265823, 0.005244751926511526, 0.011688096448779106, 0.015850482508540154, 0.009421666152775288, -0.005978436209261417, 0.005956643261015415, -0.003448678646236658, -0.012436308898031712, -0.00639612739905715, 0.01512406300753355, -0.058578502386808395, -0.02940547838807106, -0.0005034998175688088, 0.00940713845193386, -0.03300852328538895, 0.0127922547981143, 0.02020900323987007, 0.01423056609928608, 0.008891379460692406, 0.011782531626522541, 0.023303551599383354, 0.00033211009576916695, 0.0023372562136501074, -0.014739060774445534, -0.013315277174115181, 0.007881656289100647, 0.018189555034041405, 0.023594118654727936, 0.031875304877758026, -0.011027054861187935, 0.005291969049721956, 0.00665037427097559, -0.009232797659933567, 0.014005376026034355, 0.008913172408938408, 0.003806440392509103, 0.016635015606880188, 0.012320081703364849, 0.0044747465290129185, -0.026572441682219505, -0.016446147114038467, 0.008201280608773232, -0.006163673009723425, -0.00958874262869358, 0.007220614235848188, -0.0004215505614411086, -9.768361451278906e-06, 0.007344105280935764, -0.017332378774881363, -2.5992212613346055e-05, 0.002789452439174056, 0.0003037343267351389, -0.025177715346217155, 0.010358748026192188, 0.031323228031396866, 0.014005376026034355, 0.022286564111709595, 0.008477320894598961, -0.001050584833137691, -0.010780071839690208, -0.008063261397182941, -0.0016299047274515033, -0.003285234095528722, -0.01027884241193533, -0.006388863082975149, 0.014949722215533257, -0.024698277935385704, 0.005753245670348406, 0.0047180973924696445, 0.013482353650033474, -0.0015590788098052144, -0.00841920729726553, 0.013932733796536922, 0.0024879882112145424, 0.003552193520590663, 0.004870645701885223, 0.014782645739614964, -0.00758382398635149, 0.006000228691846132, 0.01582142524421215, -0.016053879633545876, 0.01983126439154148, 0.022925812751054764, -0.028984155505895615, -0.009225533343851566, -0.005204798653721809, -0.027662070468068123, 0.007939769886434078, -0.02324543707072735, 0.019845793023705482, 0.032514557242393494, -0.009436194784939289, 6.713709444738925e-05, 0.00897855032235384, 0.01130309421569109, -0.008361093699932098, 0.0002919300168287009, 0.006043813657015562, 0.02067391201853752, 0.016489733010530472, -0.019206542521715164, 0.0016734899254515767, 0.0014292312553152442, -0.006937310099601746, 0.009690442122519016, 0.0016453411662951112, 0.010707429610192776, 0.004892438184469938, -0.006003860849887133, 0.02904226817190647, -0.007627409417182207, 0.001724339323118329, -0.031671907752752304, -0.007925241254270077, -0.020354285836219788, 0.011477435007691383, 0.009654120542109013, 0.023579590022563934, -0.00949430838227272, 0.01144837774336338, 0.0030436995439231396, 0.0030255389865487814, 0.012734141200780869, 0.020267115905880928, -0.0005139420973137021, 0.010656580328941345, 0.009421666152775288, 0.01859634928405285, 0.008956757374107838, -0.0042749810963869095, 0.01414339616894722, -0.0006669443100690842, -0.020790139213204384, -0.003268889617174864, -0.0074022188782691956, 0.0050813076086342335, -7.440129411406815e-05, 0.005157581530511379, -0.013525938615202904, -0.0048851738683879375, -0.012007721699774265, 0.00865892507135868, 0.0033705884125083685, -0.0023935537319630384, -0.012000457383692265, -0.00041655643144622445, -0.003232568735256791, -0.017245208844542503, -0.0006206350517459214, 0.016213692724704742, -0.008913172408938408, 0.015559914521872997, 0.02057221159338951, -0.000453331449534744, -0.011056111194193363, -0.00022632520995102823, 0.002477091969922185, 0.0035866983234882355, 0.001500057172961533, 5.516251258086413e-05, -0.009792140685021877, 0.015225761570036411, -0.021153347566723824, -0.020906366407871246, -0.006410656031221151, 0.0008998526609502733, -0.020136360079050064, 0.01140479277819395, -0.03332814574241638, 0.004638191312551498, -0.007460332475602627, -0.03881987929344177, 0.0032035119365900755, -0.011521019972860813, -0.016504261642694473, 0.00894222967326641, -0.007758164778351784, -0.010896299034357071, -0.0006914609693922102, 0.011244980618357658, 0.018741633743047714, 0.023768460378050804, -0.0003952178522013128, -0.0045183319598436356, 0.005459045525640249, 0.010874506086111069, 0.002902047708630562, 0.009356288239359856, -0.008542697876691818, -0.018727105110883713, -0.0008026940049603581, 0.005357346963137388, 0.00804146844893694, -0.002764027798548341, 0.00842647161334753, 0.014906137250363827, -0.006541411392390728, 0.012901217676699162, 0.022765999659895897, -0.022838642820715904, 0.004547388758510351, -0.008324772119522095, -0.0031617428176105022, 0.0033451637718826532, -0.011281301267445087, -0.03042246587574482, -0.009901103563606739, 0.008491848595440388, 0.024712806567549706, -0.016126522794365883, 0.00995195284485817, 0.005651547107845545, -0.004086112137883902, 0.006701224017888308, 0.005920322611927986, 0.0048851738683879375, 0.021603727713227272, 0.0019195646746084094, -0.013540467247366905, 0.004227763973176479, 0.010562146082520485, 0.00893496535718441, 0.008826002478599548, -0.01084544975310564, 0.029928501695394516, 0.004169650375843048, 0.021879767999053, 0.017230680212378502, -0.010082708671689034, 0.019685979932546616, -0.013337070122361183, -0.01228376105427742, 0.0032906823325902224, 0.020993536338210106, -0.010780071839690208, -0.006468769628554583, 0.016780300065875053, -0.012690556235611439, 0.0072569348849356174, 0.015414630994200706, -0.006312589161098003, -0.005811359267681837, 0.004438425879925489, -0.004267717245966196, 0.025061488151550293, 0.012109420262277126, -0.0023281758185476065, 0.022678829729557037, -0.007028112653642893, -0.0014691842952743173, -0.01618463546037674, 0.022838642820715904, 0.010707429610192776, -0.003272521775215864, -0.014593776315450668, 0.00912383385002613, -0.005637018475681543, -0.006937310099601746, 0.023899216204881668, -0.028533775359392166, 0.003087284741923213, 0.007017216645181179, 0.01701275445520878, 0.006530514918267727, -0.0014973330544307828, 0.030742092058062553, -0.01418698113411665, 0.010046388022601604, -0.009312703274190426, 0.016823885962367058, -0.012770461849868298, 0.00112231879029423, 0.01619916409254074, -0.003383300732821226, -0.0072351424023509026, 0.018741633743047714, -0.018538236618041992, 0.007220614235848188, -0.002061216626316309, -0.004343991167843342, -0.009152891114354134, 0.005695132073014975, -0.014397642575204372, -0.012915746308863163, 0.02939094975590706, 0.004859749227762222, -0.008549962192773819, 0.03283417969942093, 0.019409939646720886, -0.011143282055854797, 0.00888411607593298, 0.004576445557177067, -0.003165374742820859, -0.0037301662378013134, 0.0023699449375271797, -0.00035322169424034655, 0.013315277174115181, 0.04541577398777008, -0.010947148315608501, -0.013002916239202023, 0.006465137470513582, -0.01627180725336075, -0.006730280816555023, 0.004009838216006756, 0.001675306004472077, -0.0026841217186301947, -0.015153119340538979, 0.010206200182437897, 0.01666407287120819, 0.0007395863067358732, 0.012625178322196007, -0.005146685056388378, -0.005153949372470379, 0.02157467231154442, -0.004867013543844223, 0.015952181071043015, 0.005778670310974121, 0.021269574761390686, 0.03579797223210335, 0.00490696681663394, 0.0001247399195563048, -0.02048504166305065, -0.004772578831762075, 0.009385345503687859, 0.011920550838112831, -0.0013502329820767045, 0.004936023615300655, 0.009922896511852741, 0.0009979193564504385, 0.0036920292768627405, 0.010721958242356777, 0.01177526731044054, 0.011942343786358833, -0.01134667918086052, 0.0017388677224516869, -0.004387576133012772, 0.010525824502110481, 0.005335554480552673, 0.011237716302275658, -0.023434307426214218, 0.013286220841109753, 0.009174684062600136, 0.016504261642694473, -0.007318680640310049, -0.011731681413948536, -0.02203958109021187, -0.003521320642903447, -0.009305438958108425, -0.012123948894441128, 0.0025388377252966166, -0.027705656364560127, -0.007968826219439507, 0.030916431918740273, -0.007006320171058178, 0.0025533661246299744, -0.010249785147607327, 0.005963907577097416, -0.003101813141256571, 0.013554995879530907, 0.017056340351700783, 0.0090729845687747, -0.0137220723554492, -0.005742349661886692, 0.010656580328941345, -0.011034318245947361, 0.004910598509013653, 0.023666761815547943, 0.010104501619935036, 0.006468769628554583, 0.009254589676856995, -0.0012875793036073446, -0.01654784567654133, -0.02690659463405609, 0.008840530179440975, 0.007801750209182501, -0.008397414349019527, -0.007736372295767069, -0.014005376026034355, 0.002046688226982951, 0.0030418834649026394, 0.007859863340854645, -0.011753474362194538, -0.03437419235706329, -0.020877309143543243, 0.00023994558432605118, 0.016693130135536194, 0.00042858775123022497, -0.010366012342274189, 0.019685979932546616, -0.029085854068398476, 0.0007323221070691943, -0.004819796420633793, 0.011324886232614517, -0.0036992935929447412, 0.004118801094591618, 0.00258423900231719, 0.0016734899254515767, -0.0021447548642754555, 0.00045265041990205646, -0.03483910113573074, -0.01084544975310564, 0.007721843663603067, 0.007809014059603214, -0.00402799854055047, 0.012073099613189697, 0.005727821029722691, 0.0013847380178049207, -0.029565291479229927, -0.00958874262869358, 0.003791911993175745, -0.005364611279219389, -0.005528055597096682, 0.025802435353398323, -0.008201280608773232, 2.8460905014071614e-05, -0.00165078928694129, 0.0209354218095541, -0.00990836787968874, 0.019613338634371758, 0.011579133570194244, -0.01335886213928461, -0.011964135803282261, 0.010184407234191895, 0.010148086585104465, -0.017448605969548225, 0.01005365140736103, 0.00727872783318162, 0.002573342528194189, 0.012182062491774559, -0.0073005203157663345, -0.0030600440222769976, 0.00799788348376751, 0.005353714805096388, -0.02327449433505535, 0.01861087791621685, -0.006617685314267874, -0.007260567042976618, -0.006450608838349581, -0.002486172132194042, -0.012567064724862576, 0.021167876198887825, -0.0200201328843832, 0.007511182222515345, -0.008063261397182941, 0.011927815154194832, -0.011622718535363674, 0.01377292163670063, -0.0007831715047359467, 0.010801863856613636, 0.014332265593111515, -0.0077944858931005, 0.010816392488777637, -0.009610535576939583, 0.012538008391857147, -0.021545615047216415, -0.022678829729557037, 0.020732024684548378, -0.031584739685058594, 0.034432303160429, 0.003127237781882286, -0.016053879633545876, -0.030393410474061966, -0.012632442638278008, 0.024625634774565697, 0.0034977118484675884, -0.008477320894598961, 0.0146591542288661, 0.0001396088337060064, 0.014571983367204666, -0.013104615733027458, 0.009617799893021584, 0.021167876198887825, -0.024320539087057114, 0.0118624372407794, -0.0020902734249830246, -0.015225761570036411, -0.006548675708472729, -0.009327231906354427, 5.8851364883594215e-05, -0.0409410260617733, -0.019032202661037445, 0.005266544409096241, -0.0012049491051584482, -0.011288565583527088, -1.672752114245668e-05, -0.007547502871602774, -0.0028439341112971306, -0.00939260981976986, -0.004972344264388084, 0.021937882527709007, -0.023201853036880493, 0.002339072059839964, -0.018029741942882538, -0.004347623325884342, 0.026209231466054916, 0.0020920895040035248, -0.02308562584221363, 0.002260982058942318, -0.010504032485187054, -0.00032507290598005056, -0.03765760734677315, -0.013569524511694908, 0.02400091476738453, -0.0007690971251577139, -0.006040181498974562, 0.0031453983392566442, 0.017143510282039642, -0.004837956745177507, -0.0001592448679730296, 0.0021048018243163824, 0.00774363661184907, 0.0023281758185476065, 0.01330074854195118, -0.0021520189475268126, -0.0011640879092738032, -0.037744779139757156, 0.024698277935385704, -0.005586169194430113, -0.0018160498002544045, 0.001354773179627955, 0.013366126455366611, -0.011048846878111362, -0.005113996099680662, 0.015414630994200706, 0.002782188355922699, -0.006726648658514023, -0.005840416066348553, 0.022170336917042732, -0.01367848739027977, 0.016504261642694473, 0.008026939816772938, -0.01638803444802761, -0.022083165124058723, 0.017913514748215675, 0.004921494983136654, -0.008106846362352371, 0.010576673783361912, -0.022286564111709595, 0.02036881446838379, -0.0035104244016110897, -0.012734141200780869, -0.007859863340854645, 0.0026586968451738358, -0.0036012267228215933, 0.006977263372391462, -0.002495252527296543, -0.005233855452388525, 0.0025043326895684004, 0.006715752184391022, 0.015182176604866982, -0.03861648216843605, 0.0028984155505895615, 0.012000457383692265, 0.026557913050055504, 0.009835725650191307, 0.0025279412511736155, 0.01414339616894722, 0.009734027087688446, 0.01926465705037117, 0.027938110753893852, 0.027429616078734398, 0.016518788412213326, 0.0037810157518833876, 0.00737316207960248, -0.003143582260236144, 0.011956872418522835, 0.035042498260736465, -0.01675124280154705, -0.01832031086087227, 0.026296401396393776, 0.017375964671373367, -0.018872389569878578, 0.01428867969661951, 0.0008689798414707184, -0.0037991763092577457, -0.017085395753383636, -0.008869587443768978, 0.0004867013485636562, 0.009625064209103584, 0.009981010109186172, -0.00018580460164230317, 0.019148429855704308, -0.018857860937714577, -0.015501800924539566, -0.021443916484713554, -0.013838299550116062, 0.016358977183699608, -0.002486172132194042, 0.012814047746360302, 0.01037327665835619, 0.01712898164987564, -0.008709775283932686, -0.018276724964380264, -0.0032834180165082216, 0.0016044799704104662, 0.0005411828169599175, 0.0020067349541932344, 0.007852599024772644, -0.019947491586208344, -0.004867013543844223, 0.014136131852865219, -0.0034305180888623, -0.00865892507135868, -0.018683521077036858, -0.00888411607593298, 0.016911055892705917, -0.02697923593223095, 0.0019758623093366623, -0.00546630984172225, -0.0024898042902350426, 0.014426699839532375, -0.0018632671562954783, -0.021705428138375282, -0.0038863467052578926, -0.006203626282513142, 0.015414630994200706, 0.014811702072620392, -0.029376421123743057, 0.002179259667173028, 0.01321357861161232, -0.02773471362888813, -0.0010169879533350468, 0.0043839444406330585, -0.0024661957286298275, -0.0316428504884243, 0.019584281370043755, 0.007896184921264648, -0.012937539257109165, 0.010896299034357071, 0.004311302211135626, -0.0033869328908622265, 0.004892438184469938, -0.009232797659933567, 0.008026939816772938, 0.013605845160782337, -0.028504718095064163, -0.0043403590098023415, -0.014303208328783512, 0.009276382625102997, -0.016998225823044777, 0.004311302211135626, -0.027705656364560127, -0.004943287465721369, -0.013329805806279182, -0.004659983795136213, 0.011041582562029362, -0.00754023902118206, 0.01270508486777544, -0.009646856226027012, -0.01456471998244524, -0.008353829383850098, 0.01367122307419777, 0.018000686541199684, 0.0246692206710577, -0.016678601503372192, 0.023797517642378807, -0.013184521347284317, -0.0077000511810183525, 0.021255046129226685, 0.0016762139275670052, 0.00490696681663394, 0.01750672049820423, 0.014724532142281532, 0.0001570883032400161, 0.018857860937714577, -0.022954870015382767, -0.004874277859926224, -0.01638803444802761, -0.012646971270442009, -0.014768117107450962, -0.014637361280620098, -0.0017288794042542577, 0.011230451986193657, 0.02567167952656746, 0.014477549120783806, 0.011579133570194244, 0.005949379410594702, -0.008542697876691818, -0.026267344132065773, -0.00046717881923541427, -0.02408808469772339, 0.00377011951059103, 0.020993536338210106, 0.006683063227683306, -0.01042412593960762, -0.0015191256534308195, -0.007525710389018059, -0.005637018475681543, 0.003390565048903227, 0.004627294838428497, -0.007968826219439507, -0.011615454219281673, 0.0209499504417181, -0.006766601465642452, 0.006407023873180151, -0.0049832407385110855, 0.018567293882369995, 0.0061237202025949955, -0.0033487959299236536, 0.00953062903136015, 0.012901217676699162, 0.0026187438052147627, 0.0020884573459625244, -0.02336166426539421, -0.011797059327363968, 0.013961791060864925, -0.04059234634041786, -0.0011413872707635164, 0.004710833076387644, -0.0031944315414875746, -0.00842647161334753, -0.00800514779984951, 0.01548727322369814, -0.011659040115773678, 0.014862551353871822, 0.002484356053173542, 0.022635245695710182, -0.0055498480796813965, -0.012305554002523422, -0.0003225758555345237, 0.007917976938188076, 0.004634559154510498, -0.006338013801723719, 0.017332378774881363, -0.014034433290362358, 0.004198707174509764, 0.00047171892947517335, -0.009211004711687565, -0.011753474362194538, -0.008637133054435253, 0.0035721699241548777, -0.0027549476362764835, 0.0014092546189203858, 0.012116684578359127, -0.02222844958305359, -0.013475089333951473, -0.003366956254467368, -0.0056152259930968285, 0.0014156107790768147, 0.017550304532051086, 0.006628581788390875, -0.01228376105427742, -0.0014900688547641039, -0.002700465964153409, 0.0031127093825489283, 0.01711445301771164, -0.026354514062404633, -0.018567293882369995, -0.011223187670111656, 0.007627409417182207, -0.020150888711214066, 0.02513412944972515, 0.01232734601944685, -0.008455527946352959, 0.002084825187921524, 0.0018614510772749782, -0.017550304532051086, -0.010997997596859932, -0.024218840524554253, -0.01701275445520878, 0.0008376530022360384, -0.008310244418680668, 0.004391208291053772, -0.02596224844455719, 0.02336166426539421, -0.011266772635281086, 0.012029513716697693, -0.0001951118465512991, -0.003590330481529236, 0.0073985871858894825, 0.005974804051220417, 0.016693130135536194, -0.009080248884856701, 0.001089629833586514, 0.013446033000946045, 0.022068636491894722, -0.02270788699388504, -0.0045401244424283504, 0.000906662899069488, 0.010060915723443031, -0.0007609248859807849, 0.002636904362589121, 0.024959789589047432, 0.007060801610350609, -0.008491848595440388, 0.003319739131256938, -0.01571972668170929, 0.024509407579898834, 0.02243184670805931, 0.008637133054435253, -0.007231510244309902, -0.016780300065875053, 0.01326442789286375, -0.013881884515285492, -0.025090543553233147, -0.013889148831367493, 0.014390379190444946, 0.0172016229480505, -0.0032598094549030066, -0.0036775008775293827, 0.0031308699399232864, 0.013533202931284904, -0.004496539477258921, -0.009007606655359268, 0.008586283773183823, -0.01284310407936573, 0.012421781197190285, 0.008302980102598667, -0.026005832478404045, 0.009893839247524738, 0.012254703789949417, -0.0027912685181945562, -0.037367042154073715, -0.0010914459126070142, -0.017913514748215675, 0.011571869254112244, 0.007729107979685068, 0.015618028119206429, -0.01916295848786831, 0.017753703519701958, 0.008237602189183235, 0.021153347566723824, 0.005807727109640837, -0.012087627314031124, -0.004899702500551939, -0.0033633243292570114, -0.018756162375211716, -0.008302980102598667, 0.0005343726370483637, -0.023942800238728523, 0.011557340621948242, 0.0072569348849356174, 0.005179374013096094, 0.001275775022804737, -0.012196590192615986, 0.005277440883219242, -0.02224297821521759, 0.03759949654340744, -0.001419242937117815, 0.005226591601967812, 0.003969884943217039, 0.00737316207960248, -0.01097620464861393, 0.024596579372882843, 0.00897128600627184, -0.00490696681663394, 0.010148086585104465, -0.013249899260699749, 0.025540923699736595, 0.010242520831525326, -0.017463134601712227, -0.00618546549230814, 0.008440999314188957, 0.007670994382351637, 0.004471114836633205, 0.015676142647862434, -0.0007922517252154648, 0.003991677425801754, 0.0016771219670772552, 0.02942000702023506, 0.008302980102598667, 0.000736862188205123, 0.0020248955115675926, -0.02317279577255249, 0.013663958758115768, 0.006781130097806454, -0.01330801285803318, -0.005854944698512554, -0.008019676432013512, 0.0200056042522192, -0.005905793979763985, 0.01766653172671795, -0.0007754532853141427, 0.011709889397025108, -0.036814961582422256, 0.007264199201017618, 0.011361207813024521, 0.0190903153270483, -0.014906137250363827, 0.022126751020550728, -0.006330749485641718, -0.013191785663366318, 0.002043056068941951, 0.0038500255905091763, -0.0023772092536091805, -0.019802207127213478, -0.001475540455430746, -0.01711445301771164, -0.010082708671689034, -0.016039352864027023, 0.012581593357026577, -0.01455745566636324, -0.013017444871366024, 0.023521477356553078, 0.010249785147607327, 0.005426357034593821, 0.013736600987613201, -0.009675913490355015, -0.008019676432013512, 0.0013874620199203491, 0.0053827716037631035, 0.01563255675137043, -0.0036030428018420935, 0.0026750413235276937, 0.014433964155614376, 0.015109534375369549, 0.01363490242511034, -0.008528170175850391, -0.015138591639697552, -0.015894068405032158, -0.0069227819330990314, -0.007968826219439507, -0.023390721529722214, 0.0038609218318015337, -0.0027367870789021254, -0.021734483540058136, -0.001974046230316162, -0.010830921120941639, 0.0199910756200552, 0.02141485922038555, 0.005495366640388966, 0.014775381423532963, 0.023201853036880493, 0.0052810730412602425, -0.01916295848786831, 0.0027386031579226255, 0.008070525713264942, -0.013547731563448906, 0.005829520057886839, -0.008833265863358974, -0.005099467933177948, 0.012392723932862282, -0.0030455156229436398, 0.008491848595440388, 0.01228376105427742, 0.022765999659895897, 0.013983584009110928, 0.009167419746518135, 0.01471000351011753, 0.011622718535363674, 0.01740502193570137, 0.009370816871523857, 0.002446219092234969, 0.010504032485187054, -0.0034523108042776585, 0.014848023653030396, 0.012261968106031418, 0.009523365646600723, 0.0032016958575695753, 0.015501800924539566, -0.019046731293201447, -0.008281187154352665, 0.002747683320194483, 0.02325996570289135, 0.00016911963757593185, -0.015458215959370136, -0.015385573729872704, 0.007511182222515345, -0.008404678665101528, 0.03527495265007019, 0.0034523108042776585, 0.014216038398444653, -0.023971857503056526, -0.006417919881641865, 0.010119029320776463, 0.018959559500217438, 0.002495252527296543, -0.0022173968609422445, 0.003613939043134451, 0.003501344006508589, -0.0028511981945484877, -0.009211004711687565, 0.0028439341112971306, -0.013271692208945751, 0.014404906891286373, 0.002059400547295809, 0.0023081994149833918, 0.019293712452054024, 0.0005729637341573834, -0.01878521963953972, -0.011165074072778225, -0.021734483540058136, -0.007155236322432756, -0.01991843432188034, 0.009930160827934742, -0.002981953788548708, -0.013693016022443771, -0.0058585768565535545, -0.012065835297107697, 0.004166018217802048, 0.01041686162352562, -0.021894296631217003, -0.026223760098218918, -0.003697477513924241, 0.00041564839193597436, 0.021095234900712967, -0.01685294322669506, 0.01564708538353443, -0.00953789334744215, -0.0031363179441541433, -0.008891379460692406, -0.00805599708110094, 0.022751472890377045, -0.0006306233117356896, -0.023216381669044495, -0.01079460047185421, -0.00796156283468008, 0.0009352656779810786, 0.00296379323117435, -0.0055498480796813965, 0.0033960130531340837, 0.004787107463926077, -0.02532299794256687, -0.01776823215186596, -0.0061273518949747086, 0.028272263705730438, -0.007231510244309902, -0.005037722177803516, 0.02987038716673851, 0.002531573409214616, 0.00423139613121748, 0.026267344132065773, 0.0118697015568614, -0.003535849042236805, 0.002486172132194042, 4.670653288485482e-05, 0.01005365140736103, -0.020630326122045517, 0.007888920605182648, 0.024988844990730286, 0.0036829491145908833, 0.008687982335686684, -0.004293141886591911, 0.00613824836909771, 0.005920322611927986, 0.013475089333951473, 0.005368243437260389, 0.022911284118890762, 0.008702510967850685, 0.006210890598595142, -0.010743750259280205, 0.006112823728471994, -0.000489425437990576, 0.0007818094454705715, -0.016605960205197334, -0.02045598439872265, 0.002437138929963112, -0.005978436209261417, -0.01032969169318676, -0.003810072550550103, 0.02410261332988739, -0.0057931989431381226, 0.017550304532051086, -0.020601268857717514, 0.026543384417891502, 0.012051306664943695, -0.019046731293201447, 0.003839129349216819, -0.0047834753058850765, 0.00681745121255517, -0.013068294152617455, 0.009254589676856995, -0.006530514918267727, 0.01582142524421215, 0.0013729336205869913, -0.009668649174273014, 0.016228221356868744, -0.0006070146337151527, 0.014869815669953823, -0.016794828698039055, -0.020252587273716927, 0.017710117623209953, -0.001885059755295515, -0.005862209014594555, 0.00860081147402525, -0.016170106828212738, 0.009886574931442738, 0.019017674028873444, 0.0010923539521172643, 0.006999055854976177, 0.0022319252602756023, -0.0013111879816278815, 0.004634559154510498, -0.02036881446838379, -0.007304152473807335, 0.021937882527709007, 0.04602596536278725, 0.04065046086907387, 0.00490696681663394, -0.002108433749526739, 0.011165074072778225, -0.02866453118622303, -0.004946919623762369, 0.004318566527217627, -0.011586397886276245, -0.013293484225869179, 0.010947148315608501, 0.006029285490512848, 0.022954870015382767, 0.01134667918086052, -0.002876622835174203, 0.004845221061259508, 0.014906137250363827, 0.0005470850155688822, -0.005869472865015268, 0.014811702072620392, 0.0029946661088615656, 0.0016553293680772185, -0.007046273443847895, 0.0032289365772157907, -0.0015926756896078587, -0.0005652455147355795, 0.005811359267681837, -0.0090729845687747, -0.0003670690639410168, -0.004180546849966049, 0.013562260195612907, -0.013446033000946045, -0.03451947495341301, -0.000713253568392247, 0.011157809756696224, 0.012610649690032005, 0.012821312062442303, -0.001434679375961423, 0.004358519334346056, -0.0118697015568614, -0.022765999659895897, -0.008571755141019821, 0.006752073299139738, -2.314044650120195e-05, -0.01363490242511034, -0.0030182749032974243, -0.015559914521872997, 0.033444374799728394, -0.003341531613841653, 0.021661842241883278, 0.022736944258213043, 0.004420265089720488, -0.030393410474061966, -0.003446862567216158, -0.0118697015568614, -0.007355001755058765, -0.004972344264388084, -0.016605960205197334, 0.005128524731844664, -0.00011208432260900736, 0.00898581463843584, -0.012952066957950592, 0.0035957787185907364, 0.0012340059038251638, -0.01590859703719616, 0.0006238131318241358, -0.0026986501179635525, 0.002749499399214983, 0.006287164520472288, 0.003000114345923066, 0.013002916239202023, -0.014492077752947807, 0.0017833609599620104, -0.022460903972387314, -0.002660512924194336, -0.008070525713264942, -0.04538671672344208, 0.0034014612901955843, -0.019104843959212303, -0.009828461334109306, 0.005426357034593821, -0.00043721398105844855, 0.02697923593223095, -0.0034922638442367315, -0.018567293882369995, -0.003105445299297571, 0.012559800408780575, -0.0013801978202536702, 0.020397871732711792, 0.016242749989032745, -0.011368472129106522, -0.017099924385547638, 0.007801750209182501, 0.011557340621948242, 0.008876851759850979, -0.0038863467052578926, 0.0006165489321574569, -0.0007818094454705715, 0.014085282571613789, 0.00846279226243496, 0.00034209838486276567, 0.00707533024251461, 0.00014006283890921623, 0.019380884245038033, 0.009639592841267586, -0.02176354080438614, -0.017739174887537956, -0.023797517642378807, 0.006715752184391022, 0.01335886213928461, -0.005894897505640984, 0.02029617317020893, -0.0020884573459625244, 0.015618028119206429, 0.006806554738432169, 0.022083165124058723, -0.0013366126222535968, 0.0023844733368605375, 0.016053879633545876, 0.021080706268548965, 0.006501458119601011, -0.0019359091529622674, 0.014252359047532082, 0.00237357709556818, 0.00322348834015429, -0.00754023902118206, -0.001885059755295515, 0.0019922065548598766, -0.0034250698518007994, 0.009930160827934742, -0.0004126973217353225, -0.0020975375082343817, -0.008760624565184116, 0.039226677268743515, -0.012174798175692558, -0.013707543723285198, 0.016228221356868744, -0.0012766830623149872, 0.02029617317020893, 0.003465023124590516, -0.016983697190880775, 0.012545271776616573, 0.011237716302275658, -0.01037327665835619, -0.0099955378100276, 0.012676027603447437, -0.0040715835057199, 0.00541909271851182, 0.015095005743205547, 0.01289395336061716, 0.0007790853851474822, -0.000521206296980381, -0.007151604164391756, 0.004162386059761047, 0.008440999314188957, -0.003948092460632324, -0.02148750051856041, 0.0034178057685494423, -0.01428867969661951, -0.0017579362029209733, -0.0010160799138247967, 0.011324886232614517, 0.005157581530511379, -0.0017661084420979023, 0.010591202415525913, 0.009414401836693287, -0.02084825187921524, 0.01637350581586361, -0.014266887679696083, -0.025381112471222878, -0.007845335640013218, -0.007169764488935471, -0.017361436039209366, 0.008026939816772938, 0.004115168936550617, 0.02020900323987007, 0.011731681413948536, 0.004758050665259361, -0.026688668876886368, -0.00939260981976986, -0.0011432033497840166, -0.007852599024772644, 0.022213920950889587, 0.004304037895053625, 0.001096894033253193, 0.009596006944775581, -0.013598580844700336, 0.008651661686599255, -0.010104501619935036, -0.011324886232614517, -0.0018650831189006567, 0.0158068984746933, -0.023986386135220528, -0.0009824829176068306, -0.020150888711214066, 0.007304152473807335, 0.014775381423532963, -0.018262196332216263, -0.024059027433395386, 0.0019922065548598766, 0.0036575242411345243, 0.006959103047847748, -0.015196705237030983, 0.019133901223540306], "6162dc0c-8118-4b94-93ed-b8b693e3f908": [-0.012290182523429394, -0.01666157692670822, -0.011165909469127655, 0.035027019679546356, -0.04282011091709137, -0.03086511604487896, -0.012820894829928875, 0.01970618963241577, -0.039160989224910736, 0.029161250218749046, 0.022569244727492332, 0.03985929489135742, 0.03589291870594025, 0.0023358329199254513, 0.021437987685203552, 0.013749641366302967, -8.139626879710704e-05, 0.023323414847254753, -0.01516720186918974, -0.01631242409348488, 0.02759704552590847, -0.05315503850579262, -0.03650742769241333, 0.022303886711597443, 0.015614117495715618, -0.03444044291973114, -0.0018854256486520171, 0.009455060586333275, -0.05781972035765648, -0.00495447963476181, 0.0020425445400178432, 0.0006324031855911016, 0.0026570535264909267, 0.015851542353630066, 0.0033152068499475718, -0.010516485199332237, -0.0074439398013055325, 0.02248544804751873, -0.013756624422967434, 0.029971284791827202, 0.0029939862433820963, -0.012220351956784725, 0.008428551256656647, 0.005003361031413078, -0.03944031149148941, 0.03273657709360123, -0.041451431810855865, -0.0048497337847948074, 0.02553006075322628, 0.006522176321595907, 0.012569504790008068, 0.029859555885195732, -0.008519330993294716, -0.00023742397024761885, 0.029859555885195732, -0.019971545785665512, 0.008540280163288116, 0.05631138011813164, 0.01884029060602188, -0.05726107582449913, 0.01842130720615387, -0.04580886289477348, 0.014182590879499912, -0.016228627413511276, 0.003154596546664834, 0.002002391964197159, -0.016452085226774216, -0.0137217091396451, -0.01777886599302292, -0.002173476852476597, -0.027192028239369392, 0.02082347869873047, -0.06686976552009583, -0.0003386783064343035, 0.020711749792099, 0.008568212389945984, 0.019748087972402573, 0.021256428211927414, 0.03868614137172699, -0.04932832345366478, -0.008980212733149529, -0.010390790179371834, -0.0013905013911426067, -0.004217767156660557, 0.07781919836997986, 0.012073707766830921, 0.016787271946668625, -0.03871407359838486, -0.020781580358743668, -0.024636229500174522, -0.029580233618617058, -0.014126726426184177, -0.013637912459671497, 0.007042414043098688, 0.004018750041723251, -0.010341908782720566, 0.014196556992828846, 0.0016026118537411094, 0.022094395011663437, -0.02763894386589527, 0.018253713846206665, 0.012325097806751728, -0.0073461770080029964, -0.0023724939674139023, 0.012953572906553745, -0.02361670322716236, -0.00043884155456908047, 0.022890465334057808, -0.021591614931821823, 0.014580625109374523, 0.018784426152706146, -0.057875584810972214, 0.04175868630409241, 0.02180110663175583, -0.04474743828177452, -0.0427083820104599, -0.0170665942132473, 0.002667528111487627, -0.0035194612573832273, -0.011626792140305042, 0.03779231011867523, 0.007457905914634466, 0.024342941120266914, 0.016340356320142746, -0.010006722062826157, 0.012332080863416195, 0.0010326197370886803, 0.026535620912909508, 0.015837576240301132, 0.02064191922545433, -0.014440963976085186, -0.006612956058233976, 0.019943613559007645, 0.02173127606511116, 0.007084312383085489, 0.017317984253168106, 0.013959133066236973, 0.07122719287872314, -0.03273657709360123, 0.016563814133405685, -0.037540920078754425, -0.018965985625982285, -0.04228939861059189, 0.010251129046082497, -0.0022991718724370003, -0.0012717894278466702, -0.025208840146660805, 0.04890934005379677, -0.061450909823179245, 0.010348891839385033, -0.05052940919995308, 0.005464242771267891, -0.02715012989938259, 0.0112985884770751, 0.09133840352296829, 0.018100086599588394, -0.0250831451267004, 0.04474743828177452, 0.0024091550149023533, 0.01846320554614067, 0.01387533638626337, -0.09346125274896622, 0.0022380701266229153, 0.013910251669585705, 0.03924478590488434, 0.028295351192355156, 0.05583653226494789, 0.03508288413286209, -0.009566789492964745, 0.03136789798736572, 0.022122327238321304, -0.011829300783574581, 0.02131229266524315, -0.016493983566761017, 0.026381993666291237, -0.02537643350660801, 0.04228939861059189, 0.0005782844964414835, 0.036982275545597076, -0.03192654252052307, -0.02511107735335827, 0.010006722062826157, 0.03762471675872803, -0.005345530807971954, -0.012513640336692333, 0.03033440373837948, -0.02346307598054409, 0.0070214648731052876, 0.012960555963218212, 0.005373463034629822, -0.021787140518426895, -0.0011164164170622826, 0.0464792363345623, -0.011605842970311642, -0.012234318070113659, -0.023923957720398903, 0.01606103405356407, 0.002765290904790163, 0.029161250218749046, 0.02222009003162384, -0.010446654632687569, -0.05237293615937233, -0.027960164472460747, 0.04659096524119377, -0.022038530558347702, -0.0045878691598773, -0.01797439157962799, -0.07402041554450989, 0.029468504711985588, -0.023113923147320747, 0.05226120725274086, -0.03469183295965195, 0.019301172345876694, -0.007834991440176964, -0.008994178846478462, 0.012373979203402996, -0.004252682439982891, 0.03625603765249252, 0.002281714230775833, -0.029971284791827202, -0.005415361374616623, 0.013044352643191814, -0.029580233618617058, -0.02568368799984455, -0.06150677427649498, 0.01554428692907095, -0.021144699305295944, 0.023435143753886223, -0.02297426201403141, -0.040026888251304626, 0.019315138459205627, -0.003791800467297435, 0.00589370122179389, 0.019608426839113235, 0.0011583147570490837, 0.034915290772914886, 0.03692641109228134, 0.022038530558347702, -0.019147545099258423, -0.022960295900702477, -0.0024562906473875046, 0.027052367106080055, -0.025767484679818153, 0.011445232667028904, -0.0024370872415602207, 0.041032448410987854, -0.0025069178082048893, 0.08256767690181732, 0.002232832834124565, 0.013512217439711094, -0.012150521390140057, 0.001073645194992423, -0.009825162589550018, 0.004629767499864101, -0.002807189477607608, 0.036339834332466125, 0.024091551080346107, -0.021060902625322342, -0.021787140518426895, 0.019426867365837097, 0.00868692435324192, 0.0006983057828620076, 0.0041584111750125885, -0.011179876513779163, 0.06396481394767761, -0.035054951906204224, 0.023658601567149162, 0.0011757723987102509, 0.00031183718238025904, 0.04332289099693298, -0.005928616505116224, -0.030697522684931755, -0.014776150695979595, 0.01797439157962799, 0.0020093750208616257, 0.0001915976608870551, 0.010635197162628174, 0.002959070960059762, 0.036339834332466125, 0.002946850610896945, -0.015921372920274734, -0.019091680645942688, 0.004151428118348122, 0.020767614245414734, 0.01928720623254776, 0.021270394325256348, -0.029077453538775444, -0.00613810820505023, -0.022164225578308105, -0.00186796800699085, -0.0026395958848297596, -0.013288759626448154, 0.0124996742233634, 0.03234552592039108, 0.019343070685863495, -0.0040850890800356865, -0.02786240167915821, 0.004263157024979591, 0.008030517026782036, -0.005956548731774092, 0.0002740850322879851, 0.006990041118115187, -0.012115606106817722, -0.023923957720398903, 0.028323283419013023, -0.033965595066547394, 0.035920850932598114, 0.021745242178440094, -0.03195447474718094, 0.023379279300570488, 0.055026497691869736, 0.0024929516948759556, -0.02030673250555992, 0.018979951739311218, 0.008714856579899788, 0.01263235229998827, -0.002831630175933242, -0.021102800965309143, -0.01532082911580801, -0.021549716591835022, -0.017387814819812775, 0.004926547408103943, -0.025069179013371468, -0.023058058694005013, 0.028993656858801842, -0.05092046037316322, 0.03315556049346924, -0.021046936511993408, -0.045892659574747086, -0.029300911352038383, -0.044188790023326874, -0.019007883965969086, 0.008784687146544456, -0.018114052712917328, -0.04726133868098259, -0.002917172620072961, -0.039272718131542206, -0.028993656858801842, -0.0021280869841575623, -0.021717309951782227, -0.019524630159139633, -0.029580233618617058, 0.0330158993601799, -0.006445362698286772, -0.0262423325330019, -0.021368157118558884, 0.02668924815952778, 0.026228366419672966, 0.016005169600248337, -0.014063878916203976, 0.0008213822147808969, -0.014385099522769451, 0.0610598586499691, -0.02999921701848507, 0.027904300019145012, -0.01921737566590309, -0.02113073319196701, -0.005083666183054447, -0.0019919173792004585, 0.0029259014409035444, -0.009657569229602814, -0.05642310902476311, -0.015111337415874004, -0.04301563650369644, -0.017848696559667587, 0.022764770314097404, -0.020921241492033005, -0.005865768995136023, -0.007185566704720259, -0.0030847659800201654, -0.03899339586496353, -0.005090649239718914, 0.009692484512925148, -0.03516668081283569, -0.011124011129140854, -0.06050121411681175, 0.035585664212703705, -0.007290312554687262, 0.008107330650091171, 0.016899000853300095, 0.019762054085731506, 0.019971545785665512, -0.03337901830673218, -0.004657699726521969, 0.0032802915666252375, 0.023058058694005013, 0.0006009794306010008, -0.018100086599588394, -0.0182676799595356, -0.013707743026316166, -0.03097684495151043, 0.008672958239912987, -0.03170308470726013, 0.018211815506219864, -0.004214275628328323, -0.011179876513779163, 0.008714856579899788, -0.029971284791827202, -0.017764899879693985, -0.012304148636758327, 0.007758177351206541, -0.003900037845596671, 0.007318244781345129, 0.014014997519552708, 0.013149098493158817, -0.024315008893609047, 0.014664421789348125, -0.000753297412302345, 0.020125173032283783, 0.009692484512925148, 0.014091811142861843, -0.0003022354794666171, -0.005844819825142622, 0.018114052712917328, 0.01879839226603508, 0.033630408346652985, -5.897410665056668e-05, 0.057652126997709274, -0.03064165823161602, 0.007513770367950201, 0.04256872087717056, 0.02184300497174263, 0.003875597147271037, 0.030390268191695213, -0.03142376244068146, 0.02786240167915821, 0.0044272588565945625, -0.0031947491224855185, 0.006846888456493616, -0.01657778024673462, 0.015628084540367126, 0.010293027386069298, -0.009790247306227684, 0.008351737633347511, -0.01564205065369606, -0.007897838950157166, 0.012269233353435993, -0.017583340406417847, -0.023491008207201958, -0.018547002226114273, 0.01763920485973358, 0.02826741896569729, -0.025474196299910545, -0.03466390073299408, -0.03332315385341644, 0.001012543449178338, -0.021829038858413696, 0.024650195613503456, 0.008002584800124168, -0.022471481934189796, -0.006183498073369265, 0.03594878315925598, -0.023588771000504494, -0.0023724939674139023, 0.014217506162822247, -0.01744367927312851, -0.004504072479903698, -0.012373979203402996, 0.008938314393162727, -0.06044534966349602, -0.0015196880558505654, -0.00531061552464962, 0.03714986890554428, -0.019762054085731506, 0.010104484856128693, -0.03999895602464676, -0.0023393244482576847, 0.03826715797185898, 0.0007402041810564697, 0.0015615863958373666, 0.0037987835239619017, 0.0036835630889981985, -0.029943352565169334, 0.006686278153210878, 0.014664421789348125, -0.00819811038672924, -0.03740125894546509, -0.016186729073524475, 0.0038302072789520025, -0.024119483307003975, -0.02421724610030651, -0.010774858295917511, -0.010306993499398232, 0.014594591222703457, 0.00771627901121974, -0.010041637346148491, -0.02635406143963337, -0.028183622285723686, -0.035585664212703705, 0.003142376197502017, 0.045361947268247604, 0.007381092291325331, 0.01766713708639145, 0.007974652573466301, 0.023379279300570488, -0.0091547891497612, 0.021982666105031967, -0.014056895859539509, -0.026982536539435387, -0.002817664062604308, 0.003142376197502017, 0.00517793744802475, 0.01064218021929264, 0.006574549246579409, -0.015153235755860806, 0.041116245090961456, -0.01075390912592411, -0.005017327144742012, 0.019803952425718307, -0.016675543040037155, -0.027946198359131813, 0.038742005825042725, -0.03159135580062866, 0.023141855373978615, 0.02546023018658161, -0.006152074318379164, -0.026535620912909508, 0.00939919613301754, 0.030278539285063744, 0.021382123231887817, -0.002183951437473297, -0.0032314101699739695, -0.01766713708639145, 0.002674511168152094, -0.010970383882522583, -0.01815595105290413, 0.0012010859791189432, -0.028281385079026222, 0.004277123138308525, -0.013938183896243572, -0.013700759969651699, 0.004032716155052185, -0.0219547338783741, 0.007332210894674063, 0.026647349819540977, -0.01143126655369997, -0.009126856923103333, -0.0009156534797511995, -0.005530581809580326, 0.014845981262624264, -0.026940638199448586, 0.0487976111471653, -0.0014751710696145892, 0.008617093786597252, -0.012150521390140057, 0.006612956058233976, -0.020502258092164993, 0.0043294960632920265, -0.022136293351650238, 0.015460490249097347, -0.03759678453207016, 0.025362467393279076, -0.04516642168164253, -0.003840681863948703, -0.009182721376419067, -0.013861370272934437, -0.005303632467985153, -0.004706581123173237, -0.02026483416557312, -0.022680973634123802, -0.01336557324975729, -0.014901845715939999, 0.018183883279561996, 0.014580625109374523, -0.006029870826750994, 0.005788955371826887, -0.05854595825076103, 0.024077584967017174, 0.0032174440566450357, 0.023058058694005013, 0.01729005202651024, 0.00483227614313364, 0.05642310902476311, 0.009489975869655609, 0.005146513693034649, 0.013700759969651699, 0.010718993842601776, 0.005691192578524351, -0.04161902517080307, 0.010090518742799759, 0.010670112445950508, -0.007632482331246138, 0.027359621599316597, -0.028435012325644493, 0.017471611499786377, 0.009929908439517021, -0.029412640258669853, -0.03192654252052307, -0.012772013433277607, 0.02721996046602726, 0.012290182523429394, 0.04117210954427719, -0.022736838087439537, -0.0024318499490618706, -0.011235740967094898, 0.03469183295965195, 0.015334795229136944, -0.016410186886787415, -0.01300943735986948, 0.0012630606070160866, 0.020809512585401535, 0.03125616908073425, -0.019762054085731506, -0.03876993805170059, -0.04619991406798363, 0.02248544804751873, -0.008973229676485062, 0.01981791853904724, -0.05346229299902916, 0.0021874429658055305, 0.02726185880601406, 0.004165394231677055, 0.019943613559007645, -0.02142402157187462, 0.02157764881849289, -0.0022415616549551487, 0.027192028239369392, 0.05092046037316322, 0.019943613559007645, -0.02815569005906582, 0.0237982627004385, -0.007206515874713659, 0.0415910929441452, 0.002245053183287382, 0.01383343804627657, 0.029468504711985588, -0.019343070685863495, -0.00014107959577813745, -0.013323674909770489, 0.03206620365381241, -0.010907536372542381, -0.010907536372542381, -0.016005169600248337, -0.014259404502809048, 0.01777886599302292, -0.04044587165117264, 0.01050950214266777, 0.009517908096313477, -0.011005299165844917, 0.001689900062046945, -0.011892148293554783, 0.025809383019804955, 0.022499414160847664, 0.04723340645432472, -0.012066724710166454, 0.026326129212975502, -0.001073645194992423, 0.012192419730126858, 0.03011094592511654, 0.020320698618888855, -0.0354180708527565, 0.009608687832951546, -0.018770460039377213, 0.015725847333669662, -0.007485838141292334, -0.006735159549862146, -0.02646579034626484, -0.006553600076586008, 0.004612309858202934, -0.019496697932481766, 0.028560707345604897, -0.03823922574520111, -0.0008702636114321649, 0.02703840099275112, 0.01864476501941681, 0.004992886446416378, -0.0044761402532458305, 0.021563682705163956, -0.013749641366302967, 0.026591485366225243, 0.0034862917382270098, -0.03650742769241333, -0.0013451115228235722, 0.006365057546645403, 0.0018382900161668658, -0.011270656250417233, 0.02206646278500557, -0.01680123805999756, -0.01917547732591629, 0.0024388330057263374, -0.00614858279004693, -0.029691962525248528, -0.02608870528638363, 0.027583079412579536, -0.020739682018756866, -0.01303038652986288, -0.019007883965969086, -0.007855940610170364, -0.029747826978564262, -0.0330158993601799, -0.007199532818049192, 0.015963271260261536, -0.017415747046470642, 0.03522254526615143, -0.0001707575866021216, -0.0030795286875218153, -0.005879735108464956, -0.03379800170660019, 0.04170282185077667, -0.0033605967182666063, -0.018141984939575195, -0.012304148636758327, 0.0038441733922809362, -0.011857233010232449, 0.028658470138907433, 0.03128410130739212, -0.01879839226603508, -0.0053629884496331215, 0.016926933079957962, -0.003362342482432723, 0.008679941296577454, -0.014105777256190777, 0.0030096981208771467, 0.01178740244358778, 0.02410551719367504, 0.0003454431425780058, -0.037094004452228546, 0.0006983057828620076, -0.020544156432151794, 0.02244354970753193, -0.024384839460253716, 0.008358720690011978, -0.017080560326576233, -0.02022293582558632, -0.02608870528638363, 0.02004137635231018, 0.000897322956006974, -0.00986706092953682, 0.006012413185089827, 0.00986706092953682, 0.027569113299250603, -0.026787010952830315, 0.020781580358743668, 0.0076883467845618725, 0.011780419386923313, -0.03519461303949356, 0.001068407902494073, 0.0003351867781020701, 0.04885347560048103, 0.011640758253633976, 0.00011069238098571077, 0.004580886103212833, 0.02606077305972576, -0.04494296386837959, 0.0050697000697255135, 0.016410186886787415, 0.02763894386589527, -0.023882059380412102, -0.01624259352684021, 0.04376980662345886, 0.0329321026802063, -0.024035686627030373, 0.01661967858672142, 0.0018400357803329825, 0.008917365223169327, -0.0074928211979568005, 0.02541833184659481, 0.016926933079957962, 0.0124996742233634, 0.03583705425262451, -0.015879474580287933, 0.008219059556722641, -0.01425242144614458, -0.006550108548253775, 0.004395835101604462, 0.007562651764601469, 0.022778736427426338, -0.01086563803255558, 0.03315556049346924, 0.016033101826906204, 0.0250831451267004, 0.016563814133405685, 0.000921763654332608, 0.0367029532790184, -0.015334795229136944, -0.04203800857067108, -0.027485316619277, -0.008386652916669846, -0.0012778996024280787, -0.022080428898334503, -0.015558253042399883, -0.044607773423194885, 0.050250086933374405, 0.012457775883376598, 0.023658601567149162, -0.026228366419672966, 0.03843475133180618, -0.00471007265150547, -0.031032709404826164, -0.003550885012373328, 0.020558122545480728, -0.007702312897890806, -0.0014027218567207456, -0.0002673201961442828, 0.0328483060002327, -0.005237293429672718, -0.006169531960040331, -0.016605712473392487, -0.014804082922637463, -0.018072154372930527, 0.01289770845323801, -0.014140692539513111, 0.03527840971946716, 0.038099564611911774, 0.004999869503080845, -0.018030256032943726, 0.024636229500174522, -0.007063363213092089, -0.03382593393325806, 0.022150259464979172, 0.004270140081644058, 0.0050697000697255135, -0.0003786126908380538, 0.023882059380412102, -0.006955125834792852, 0.0025540534406900406, 0.0049719372764229774, 0.01639622077345848, 0.03628396987915039, -0.0004927420523017645, 0.00699353264644742, 0.004193326458334923, 0.038406819105148315, 0.018183883279561996, -0.008435534313321114, -0.0061171590350568295, 0.014203540049493313, 0.0035718341823667288, 0.03564152866601944, 0.005335056222975254, -0.0008528059697709978, -0.020613986998796463, -0.020781580358743668, 0.01737384870648384, -0.004434241913259029, 0.02530660293996334, -0.014315268956124783, -0.03022267483174801, -0.05075286701321602, 0.026717180386185646, -0.016214661300182343, -0.04469157010316849, 0.008100347593426704, -0.011054180562496185, 0.00433298759162426, 0.004751970991492271, 0.029077453538775444, 0.00760455010458827, 0.03768058121204376, 0.05642310902476311, 0.031339965760707855, -0.013463336043059826, 0.00722746504470706, 0.01631242409348488, -0.02184300497174263, 0.009964823722839355, -0.007918788120150566, 0.02301616035401821, 0.008784687146544456, -0.0076394653879106045, 0.021326258778572083, -0.03086511604487896, -0.009936891496181488, -0.004758954048156738, -0.0006856489926576614, 0.01383343804627657, -0.004762445576488972, 0.006571057718247175, 0.026605451479554176, 0.00986706092953682, -0.0029922404792159796, 0.0207536481320858, 0.012227335013449192, 0.028113791719079018, -0.010963400825858116, -0.013149098493158817, 0.008882449939846992, 0.01060028187930584, -0.015963271260261536, -0.002667528111487627, 0.0011233994737267494, 0.017611272633075714, 0.012339063920080662, 0.0006293480983003974, -0.0171084925532341, 0.02353290654718876, 0.031786881387233734, -0.013414454646408558, -0.010041637346148491, 0.012674250639975071, -0.01650794968008995, -0.02022293582558632, -0.03452423959970474, -0.01891012117266655, -0.02890986017882824, -0.011396351270377636, -0.018002323806285858, -0.0009409670601598918, 0.004273631609976292, 0.030697522684931755, 0.007213498931378126, -0.025362467393279076, -0.0343007817864418, -0.04061346501111984, 0.004717055708169937, -0.04304356873035431, 0.012234318070113659, 0.001058806199580431, 0.024035686627030373, 0.030390268191695213, 0.014140692539513111, 0.0019028832903131843, -0.032010339200496674, -0.0017806797986850142, 0.05793144926428795, -0.003479308681562543, 0.0009592975839041173, -0.02703840099275112, -0.014468896202743053, 0.010795807465910912, -5.160916407476179e-05, -0.018477171659469604, 0.015656016767024994, -0.003980343230068684, -0.026340095326304436, 0.008624076843261719, -0.026521654799580574, -0.005156988278031349, -0.013114183209836483, 0.03075338713824749, -0.015195134095847607, -0.001806866261176765, 0.011340486817061901, -0.030250607058405876, 0.014070861972868443, -0.02606077305972576, -0.03608844429254532, -0.03564152866601944, -0.042540788650512695, 0.007464888971298933, 0.0016087220283225179, -0.028658470138907433, 0.03120030276477337, 0.008973229676485062, -0.03432871401309967, -0.011864216066896915, -0.0031074609141796827, 0.023854127153754234, 0.005282683297991753, -0.009231602773070335, -0.0010107976850122213, 0.01935703679919243, 0.0034269357565790415, -0.0021507819183170795, 0.002964308252558112, 0.007262380328029394, -0.010097501799464226, -0.01631242409348488, -0.026814943179488182, 0.0031319016125053167, 0.007409024517983198, -0.009629637002944946, 0.014482862316071987, 0.00988801009953022, -0.019594460725784302, 0.022010598331689835, -0.014636489562690258, 0.02019500359892845, -0.026605451479554176, -0.005897192750126123, -0.011326520703732967, -0.035138748586177826, 0.008267940953373909, 0.02323961816728115, -0.012723132036626339, -0.016047067940235138, -0.016787271946668625, -0.020851410925388336, -0.027904300019145012, -0.01680123805999756, 0.034608036279678345, -0.024803822860121727, -0.01688503473997116, -0.022317852824926376, 0.012206385843455791, 0.03270864486694336, -0.018169917166233063, -0.003062071045860648, -0.0034705798607319593, -0.0002845596172846854, 0.002557544969022274, -0.022639075294137, 0.009280484169721603, -0.0027251383289694786, 0.001616577967070043, -0.0020181038416922092, -0.011026248335838318, -0.04983110353350639, -0.007660414557904005, -0.02673114649951458, -0.018281646072864532, -0.015600151382386684, -0.029831623658537865, 0.040026888251304626, 0.025292636826634407, -0.0008824839605949819, 0.007709295954555273, -0.005359496921300888, 0.019901715219020844, 0.008805636316537857, -0.03969170153141022, -0.010656146332621574, 0.0003958521119784564, 0.0010378570295870304, -0.013400488533079624, 0.015949305146932602, 0.02082347869873047, -0.013959133066236973, -0.017206255346536636, 0.00853329710662365, -0.009846111759543419, -0.029943352565169334, -0.008561229333281517, -0.03890959918498993, -0.011382385157048702, 0.010460620746016502, 0.019273240119218826, -0.011689639650285244, -0.0075905839912593365, 0.003564851125702262, -0.026228366419672966, -0.02410551719367504, -0.009364280849695206, 0.0016715695383027196, -0.008023533970117569, -0.02097710594534874, 0.01152204629033804, -0.059048738330602646, -0.021675411611795425, 0.011061163619160652, 0.0219128355383873, 0.004661191254854202, -0.019301172345876694, 0.005062717013061047, 0.019762054085731506, -0.00855424627661705, 0.013728692196309566, -0.005925124976783991, -0.022429583594202995, -0.0021577649749815464, 0.022192157804965973, 0.00928746722638607, -0.006647871341556311, -0.01857493445277214, -0.0219966322183609, 0.007325227838009596, -0.003306478029116988, -0.011773436330258846, -0.015195134095847607, 0.04368600994348526, -0.008037500083446503, -0.020069308578968048, 0.04195421189069748, -0.013749641366302967, 0.004842750728130341, -0.02448260225355625, -0.011815334670245647, 0.018896155059337616, -0.0030847659800201654, 0.004930038936436176, 0.003753393655642867, -0.020181037485599518, 0.030697522684931755, 0.015963271260261536, -0.002606426365673542, 0.04988696798682213, 0.03075338713824749, 0.0041828518733382225, 0.010677095502614975, 0.004950988106429577, -0.024035686627030373, -0.007478855084627867, -0.0006035980768501759, 0.022876499220728874, -0.0195106640458107, 0.0007061617798171937, 0.015404625795781612, 0.0065815323032438755, -0.0002570638316683471, 0.01962239295244217, -0.014999608509242535, -0.0027129179798066616, 0.009029094129800797, 0.0017431458691135049, -0.012003877200186253, 0.005083666183054447, -0.013945166952908039, 0.047847915440797806, 0.012311131693422794, -0.031144438311457634, -0.018882188946008682, 0.0052407849580049515, 0.0032663254532963037, -0.0063126846216619015, 0.014189573936164379, 0.009329365566372871, 0.010453637689352036, 0.01425242144614458, -0.02044639363884926, 0.011424283497035503, 0.019971545785665512, -0.00042334789759479463, 0.006742142606526613, 0.01808612048625946, 0.006225396413356066, 0.01842130720615387, -0.006501227151602507, -0.017317984253168106, 0.0024458160623908043, 0.004308546893298626, -0.005450276657938957, -0.01165472436696291, -0.010383807122707367, -0.018924087285995483, -0.0006214921595528722, 2.5859137167572044e-05, 0.012890725396573544, -0.0016209423774853349, 0.01973412185907364, 0.01505547296255827, 0.028658470138907433, -0.02559989131987095, 0.08513744175434113, -0.00955282337963581, -0.03128410130739212, -0.010879604145884514, -0.0011757723987102509, 0.0036486478056758642, -0.021745242178440094, 0.0014935015933588147, -0.008617093786597252, -0.002423121128231287, 0.0006389498012140393, 0.007869906723499298, 0.010481569916009903, -0.01099831610918045, -0.020292766392230988, -0.023058058694005013, 0.015516354702413082, -0.012073707766830921, 0.0005058352835476398, -0.022625109180808067, -0.007548685651272535, -0.005820379126816988, -0.0028578166384249926, -0.01467838790267706, -0.0012194165028631687, -0.008107330650091171, 0.009008144959807396, -0.021186597645282745, -0.0427083820104599, -0.008770721033215523, 0.00942014530301094, -0.009126856923103333, -0.012017843313515186, 0.0015423829900100827, 0.019748087972402573, -0.0012578233145177364, 0.0028822573367506266, 0.00047353861737065017, -0.003920987248420715, 0.017359882593154907, -0.00017904998094309121, -0.0038302072789520025, -0.017248153686523438, 0.019482731819152832, -0.015237032435834408, 0.00840061902999878, 0.006145091261714697, 0.006424413528293371, -0.002613409422338009, -0.0011146706528961658, -0.003203477943316102, -0.01846320554614067, 0.0025907144881784916, -0.0026902230456471443, -0.008163195103406906, -0.0035072409082204103, 0.02041846141219139, 0.023295482620596886, 0.037317462265491486, -0.010781841352581978, -0.018211815506219864, -0.016326390206813812, 0.003557868069037795, 0.007597567047923803, -0.008547263219952583, -0.008763737976551056, 0.006099701393395662, 0.0053629884496331215, -0.003767359768971801, 0.03226172924041748, -0.01558618526905775, -0.022164225578308105, -0.018225781619548798, -0.012758047319948673, -0.0033221899066120386, 0.012157504446804523, 0.01360998023301363, -0.007632482331246138, 0.013309708796441555, 0.004050173796713352, -0.025055212900042534, -0.013679810799658298, -0.004978920333087444, 0.018058188259601593, 0.01187818218022585, -0.018742527812719345, 0.01108909584581852, -0.008414585143327713, 0.011822317726910114, 0.007429973687976599, 0.01668950915336609, 0.008470449596643448, -0.001421052380464971, -0.018100086599588394, 0.013602997176349163, 0.01520910020917654, -0.006012413185089827, -0.018882188946008682, 0.010872621089220047, 0.004989394918084145, 0.009853094816207886, 0.021228495985269547, 0.012318114750087261, -0.004678648896515369, -0.0036486478056758642, 0.00600543012842536, -0.010272078216075897, -0.001049204496666789, 0.004472648724913597, -0.0038197326939553022, 4.577176514430903e-05, -0.0036591223906725645, 0.023030126467347145, 0.028881927952170372, -0.019831884652376175, -0.018658731132745743, -0.024943483993411064, 0.003550885012373328, -0.018491137772798538, 0.0031074609141796827, -0.01445493008941412, 0.0091757383197546, -0.00532109010964632, 0.01351920049637556, -0.0366191565990448, 0.005548039451241493, -0.007478855084627867, 0.019007883965969086, -0.010048620402812958, 0.013882319442927837, -0.0036975292023271322, 0.012108623050153255, -0.031786881387233734, -0.00532109010964632, 0.009524891152977943, -0.009489975869655609, -0.005080174654722214, -0.0012403656728565693, -0.0007720643770880997, -0.011068146675825119, 0.002369002439081669, 0.0170665942132473, -0.010739943012595177, 0.009161772206425667, -0.01423147227615118, -0.026493722572922707, -0.018924087285995483, -0.014929777942597866, 0.0008798653143458068, 0.04410499334335327, 0.022792702540755272, -0.01229716558009386, -0.02417534776031971, 0.0015301626408472657, -0.002135070040822029, 0.017415747046470642, 0.003694037673994899, -0.01608896628022194, 0.0010893570724874735, -0.021926801651716232, -0.017541442066431046, 0.01786266267299652, -0.0009235094184987247, 0.0001704302558209747, -0.0038930547889322042, -0.007925771176815033, 0.01812801882624626, 0.022680973634123802, -0.01631242409348488, 0.029077453538775444, -0.018281646072864532, -0.0009374755318276584, 0.021437987685203552, 0.04192627966403961, -0.007422990631312132, 0.011256690137088299, 0.0026081721298396587, -0.01766713708639145, -0.001699501764960587, -0.0042317332699894905, -0.010425705462694168, 0.0030166811775416136, -0.012332080863416195, 0.016675543040037155, 0.006913227494806051, -0.032987967133522034, -0.004584377631545067, -0.02237371914088726, 0.019231341779232025, -0.002922409912571311, 0.01120780874043703, -0.010202247649431229, -0.017345916479825974, 0.03008301369845867, 0.0058168875984847546, 0.013791539706289768, 0.030613726004958153, 0.0330996960401535, -0.0010011959820985794, 0.01777886599302292, -0.016605712473392487, -5.507341484189965e-05, 0.006246345583349466, 0.023295482620596886, -0.007869906723499298, 0.03203827142715454, 0.0091757383197546, -0.02330944873392582, -0.013672827742993832, -0.002873528515920043, -0.0001707575866021216, 0.005778480786830187, -0.011375402100384235, 0.0035718341823667288, -0.0006642633816227317, 0.012730115093290806, 0.0005250386893749237, -0.0125415725633502, -0.02206646278500557, 0.003742919070646167, 0.010523468255996704, -0.0007764287875033915, -0.0025051720440387726, -8.00869456725195e-05, -0.02902158908545971, 0.011591876856982708, 0.010649163275957108, 0.017429713159799576, -0.012101639993488789, -0.0367029532790184, -0.024859687313437462, 0.004001292400062084, 0.0029555794317275286, 0.012401911430060863, -0.0077861095778644085, -0.031116506084799767, -0.005687701050192118, 0.0017771882703527808, -0.009469026699662209, 0.00733919395133853, -0.021717309951782227, -0.012932623736560345, -0.005129056051373482, -0.00531061552464962, -0.003093494800850749, 0.010041637346148491, 0.031451694667339325, -0.02275080420076847, 0.00736014312133193, 0.017248153686523438, 0.00864502601325512, 0.01815595105290413, 0.03578118979930878, 0.005090649239718914, -0.008260957896709442, 0.030027149245142937, -0.001782425562851131, 0.01717832311987877, -0.012555538676679134, 0.0035788172390311956, 0.020432427525520325, 0.009894993156194687, 0.01910564675927162, -0.02830931730568409, -0.04041793942451477, -0.018547002226114273, -0.0007742465822957456, 0.017904561012983322, -0.0002081824204651639, -0.001988425850868225, -0.004580886103212833, 0.029580233618617058, -0.025390399619936943, 0.0033955120015889406, 0.002403917722404003, -0.011892148293554783, 0.0008480051183141768, -0.017527475953102112, 0.004263157024979591, 0.008770721033215523, 0.025236772373318672, -0.030585793778300285, 0.03251311928033829, -0.005038276314735413, -0.023323414847254753, 0.013281776569783688, 0.014552692882716656, -0.02428707666695118, -0.0026954603381454945, -0.01729005202651024, 0.0020041377283632755, -0.03273657709360123, 0.015558253042399883, 0.014266387559473515, -0.0020425445400178432, 0.000518492073751986, -0.010083535686135292, 0.0047205472365021706, 0.013023403473198414, -0.0019552563317120075, 0.00855424627661705, -0.017429713159799576, 0.008512347936630249, -0.04483123496174812, 0.005722616333514452, -0.010202247649431229, 0.018281646072864532, 0.0055096326395869255, 0.008170178160071373, -0.02301616035401821, 0.034049391746520996, -0.007485838141292334, 0.026423892006278038, -0.004039699211716652, -0.028393113985657692, -0.021158665418624878, 0.0006079624872654676, -0.00028106808895245194, -0.012534589506685734, -0.022764770314097404, -0.0033588509541004896, 0.003526444314047694, 0.008470449596643448, -0.004113021306693554, -0.0033832916524261236, -0.023002194240689278, -0.006892278324812651, -0.02177317440509796, -0.021102800965309143, -0.02315582148730755, 0.013791539706289768, -0.0018854256486520171, -0.0016785525949671865, -0.007283329498022795, -0.017429713159799576, 0.0079327542334795, 0.019524630159139633, -0.00396637711673975, 0.0013067047111690044, 0.04706581309437752, -0.03843475133180618, 0.02101900428533554, 0.006225396413356066, 0.020767614245414734, -0.004518038593232632, 0.0005861404351890087, -0.0330158993601799, -0.0023393244482576847, -0.004964954219758511, -0.01868666335940361, -0.029580233618617058, 0.015404625795781612, -0.01571188122034073, 0.029496436938643456, 0.04692615196108818, 0.0038721056189388037, -0.006965600419789553, -0.0020303241908550262, 0.002606426365673542, 0.005876243580132723, 0.0025435788556933403, -0.01048855297267437, 0.013170047663152218, -0.016787271946668625, 0.04284804314374924, 0.01642415300011635, 0.002765290904790163, 0.014664421789348125, 0.012716148979961872, -0.017569374293088913, 0.016759339720010757, 0.0328483060002327, -0.027722740545868874, -0.005586446262896061, 0.004891632124781609, 0.020697783678770065, -0.009364280849695206, -0.01064218021929264, -0.023449109867215157, 0.0018121035536751151, -0.0464792363345623, -0.01227621641010046, 0.01143126655369997, 0.026828909292817116, -0.01176645327359438, 0.025921111926436424, 0.0018644764786586165, 0.001616577967070043, 0.006354582961648703, -0.002711172215640545, -0.002716409508138895, 0.003044613404199481, -0.005254751071333885, -0.011801368556916714, 0.005527090281248093, -0.009364280849695206, 0.009329365566372871, -0.007625499274581671, -0.015013574622571468, 0.008191127330064774, -0.0032069694716483355, -0.013540149666368961, -0.020544156432151794, 0.006462820339947939, 0.00602637929841876, -0.004657699726521969, -0.021437987685203552, -0.032876238226890564, -0.0013241623528301716, -0.0060927183367311954, -0.014315268956124783, 0.008135262876749039, 0.0158236101269722, 0.004235224798321724, -0.008435534313321114, -0.0032191898208111525, 0.010572349652647972, -0.0068992613814771175, 0.0024335957132279873, -0.024189313873648643, -0.0027076806873083115, 0.016340356320142746, -0.012080690823495388, 0.00034173339372500777, 0.014329235069453716, -0.003540410427376628, -0.0068503799848258495, -0.0008576068212278187, -0.01456665899604559, -0.0025784941390156746, 0.0072484142147004604, 0.016563814133405685, -0.002630867063999176, -0.011214791797101498, -0.014859947375953197, -0.027652909979224205, -0.0103977732360363, -0.005356005392968655, 0.0027810027822852135, 0.013980082236230373, -0.0027740197256207466, -0.002849087817594409, 0.0016322898445650935, 0.008512347936630249, 0.0032488678116351366, -0.02913331799209118, 0.01214353833347559, -0.008316822350025177, -0.012716148979961872, 0.0010727723129093647, 0.05092046037316322, 0.0005154369864612818, 0.005132547579705715, -0.002643087413161993, 0.0005136912222951651, -0.0194687657058239, -0.004161902703344822, 0.02217819169163704, 0.015292896889150143, -0.011829300783574581, -0.00482180155813694, -0.01639622077345848, 0.005911158863455057, -0.009182721376419067, -0.041898347437381744, 0.009015128016471863, -0.0056946841068565845, 0.01812801882624626, -0.010558383539319038, 0.01167567353695631, 0.040362074971199036, 0.005918141920119524, -0.005869260523468256, 0.022359753027558327, 0.001305831829085946, 0.0012403656728565693, 0.00020239957666490227, 0.01229716558009386, -0.01886822283267975, 0.013561098836362362, 0.024720026180148125, 0.0006070896051824093, -0.017848696559667587, -0.011214791797101498, 0.00891038216650486, 0.007814042270183563, 0.003631190164014697, 0.0061660404317080975, -0.014001031406223774, 0.024147415533661842, -0.009182721376419067, -0.015488422475755215, 0.004762445576488972, 0.00999973900616169, -0.011179876513779163, 0.00986706092953682, 0.005635328125208616, -0.0005080174887552857, -0.011996894143521786, -0.006253328640013933, -0.011480147950351238, -0.012883742339909077, 0.004538987763226032, 0.009992755949497223, 0.0016244339058175683, -0.010013705119490623, 0.0054607512429356575, -0.008847534656524658, -0.011494114063680172, 0.00893133133649826, -0.025809383019804955, -0.002910189563408494, -0.016326390206813812, -0.03256898373365402, 0.009252551943063736, -0.0037883089389652014, -0.006647871341556311, -0.012737098149955273, 0.0037394275423139334, 0.00011358380288584158, -0.0017195780528709292, 0.0171084925532341, 0.0036486478056758642, -0.0023899516090750694, 0.001141729997470975, 0.02804396115243435, 0.010921502485871315, 0.018714595586061478, 0.010279061272740364, -0.004350445233285427, 0.005356005392968655, -0.0023899516090750694, -0.006330142263323069, -0.014776150695979595, 0.023812228813767433, 0.0015781711554154754, 0.022694939747452736, -0.010928485542535782, 0.016982797533273697, -0.02902158908545971, -0.006640888284891844, 0.007625499274581671, -0.0034950205590575933, 0.015334795229136944, 0.0040117669850587845, -0.004793869331479073, -0.004137462005019188, -0.012213368900120258, -0.005059225484728813, -0.014804082922637463, 0.0055096326395869255, 0.012339063920080662, 0.013170047663152218, -0.0019325612811371684, 0.01770903542637825, 0.0004909962881356478, 0.042317330837249756, 0.004360919818282127, -0.02910538576543331, 0.00468912348151207, 0.00385813950560987, -0.014399065636098385, -0.02548816241323948, 0.00253834156319499, -0.02335134707391262, 0.023518940433859825, 0.012702182866632938, -0.01842130720615387, -0.017471611499786377, -0.015446524135768414, 0.0053629884496331215, 0.009804213419556618, 0.015292896889150143, 0.002686731517314911, 0.0005224200431257486, 0.0031650711316615343, -0.025557992979884148, -0.00046219115029089153, -0.008393635973334312, -0.0031580880749970675, 0.0004931784933432937, 0.0037149868439882994, 0.018505103886127472, 0.005869260523468256, 0.006330142263323069, 0.004542479291558266, 0.01895201951265335, 0.001799883204512298, 0.009538857266306877, -0.017988357692956924, 0.0037638682406395674, 0.007653431501239538, 0.00518841203302145, 0.016717441380023956, -0.012751064263284206, 0.0068014985881745815, -0.0019447816302999854, -0.02497141622006893, 0.004483123309910297, 0.005457259714603424, 0.035138748586177826, -0.013924217782914639, 0.01073295995593071, -0.006735159549862146, 0.013107200153172016, 0.0008580432622693479, -0.03849061578512192, 0.012457775883376598, -0.005132547579705715, -0.028071893379092216, 0.024803822860121727, -0.013135132379829884, -0.025893179699778557, -0.0023236125707626343, -0.018169917166233063, 0.01763920485973358, 0.006668820511549711, 0.02808585949242115, 0.015111337415874004, 0.008672958239912987, -0.0009374755318276584, 0.006794515531510115, -0.001711722114123404, -0.015530320815742016, -0.0018627307144924998, 0.0125415725633502, -0.00027844944270327687, 0.002915426855906844, -0.031144438311457634, 0.007904822006821632, 0.009832145646214485, -0.00028281385311856866, 0.015069439075887203, -0.0063615660183131695, 0.010369841009378433, -0.015893440693616867, 0.010942451655864716, -0.0041339704766869545, -0.009482992812991142, 0.009427128359675407, -0.01642415300011635, 0.018965985625982285, -0.00020239957666490227, 0.006717701908200979, -0.014426997862756252, -0.009678518399596214, 0.009559806436300278, 0.01673140749335289, 0.0007170728058554232, 0.011040214449167252, 0.0024335957132279873, 0.0007358397706411779, 0.008952280506491661, 0.009273501113057137, -0.008714856579899788, -0.017164357006549835, -0.0311723705381155, -0.02846294455230236, -0.004765937104821205, 0.0015109592350199819, -0.02680097706615925, -0.012918657623231411, 0.00928746722638607, 0.007653431501239538, -0.01924530789256096, 0.02237371914088726, 0.012813911773264408, -0.023812228813767433, 0.025767484679818153, -0.010167332366108894, 0.0012560775503516197, 0.01516720186918974, 0.010027671232819557, -0.01999947801232338, -0.010139400139451027, 0.01520910020917654, -0.005530581809580326, -0.0013101962395012379, 0.019161511212587357, -0.00804448314011097, 0.02308599092066288, 0.009210653603076935, -0.023323414847254753, 0.0020355614833533764, 0.017848696559667587, 0.02184300497174263, 0.022471481934189796, -0.006232379470020533, 0.026870807632803917, -0.004856716841459274, -0.014238455332815647, 0.012758047319948673, -0.001205450389534235, 0.010202247649431229, 0.00564929423853755, 0.004245699383318424, -0.002746087498962879, -0.01977602019906044, -0.016493983566761017, -2.902333471865859e-05, 0.01300943735986948, -0.011619809083640575, -0.020097240805625916, 0.005527090281248093, 0.03474769741296768, 0.011361435987055302, 0.018365442752838135, -0.0035596138332039118, 0.017946459352970123, -0.0023759854957461357, -0.0017492560436949134, -0.01460855733603239, 0.003900037845596671, 0.00288574886508286, 0.014804082922637463, 0.010725976899266243, -0.012101639993488789, 0.0024824771098792553, -0.0020338157191872597, -0.004448208026587963, 0.006885295268148184, -0.003945427946746349, 0.012597437016665936, 0.0012263995595276356, 0.009608687832951546, -0.01120780874043703, 0.010725976899266243, 0.006169531960040331, 0.013575064949691296, 0.01601913571357727, -0.0057435655035078526, 0.012695199809968472, 0.0005586446495726705, -0.011640758253633976, 0.0014297812012955546, -0.023714466020464897, -0.007946720346808434, -0.0016061033820733428, -0.008023533970117569, -0.0028159182984381914, 0.00324712204746902, -0.01289770845323801, 0.013707743026316166, 0.018002323806285858, -0.005897192750126123, 0.0031895118299871683, 0.01026509515941143, -0.00017381267389282584, 0.01571188122034073, -0.004545970819890499, -0.017806798219680786, -0.0023724939674139023, -0.014790116809308529, -0.022234056144952774, 0.003945427946746349, 0.004165394231677055, 0.018924087285995483, -0.0013093233574181795, -0.004238716326653957, 0.01726211979985237, 0.006466311868280172, -0.006553600076586008, -0.01323289517313242, 0.006784040946513414, 0.0027268840931355953, -0.02357480488717556, 0.006358074489980936, 0.034943222999572754, -0.008009567856788635, 0.004326004534959793, -0.0042561739683151245, 0.011249707080423832, 0.01180835161358118, 0.008142245933413506, 0.004235224798321724, 0.0034740713890641928, 0.00844251736998558, 0.021675411611795425, 0.027722740545868874, -0.006745634134858847, 0.012457775883376598, -0.005802921485155821, -0.012150521390140057, 0.0005734836449846625, -0.01216448750346899, 0.010327942669391632, 0.006103192921727896, -0.008428551256656647, -0.02030673250555992, -0.0029136810917407274, 0.008253974840044975, -0.015614117495715618, 0.006490752566605806, -0.007765160407871008, 0.0048497337847948074, 0.025781450793147087, 0.0159074068069458, 0.0016820441232994199, -0.006186989601701498, 0.02492951788008213, 0.0007258016266860068, 0.002398680429905653, 0.016535881906747818, -0.01597723737359047, -0.013616963289678097, -0.015558253042399883, -0.001880188356153667, -0.005617870483547449, -0.012569504790008068, 0.0023044091649353504, -0.011117028072476387, 0.024315008893609047, -0.011864216066896915, -0.01999947801232338, 0.00028936046874150634, 0.010006722062826157, -0.00614858279004693, 0.022429583594202995, -0.00020436356135178357, 0.00613810820505023, -0.0035491392482072115, -0.026368027552962303, -0.020963139832019806, -0.01597723737359047, -0.003105715150013566, -0.004905598238110542, 0.0033413933124393225, 0.013372556306421757, 0.0018644764786586165, 7.424954674206674e-05, 0.01654984802007675, -0.008351737633347511, -0.009252551943063736, -0.0010989587754011154, 0.012869776226580143, 0.0021088835783302784, 0.007381092291325331, 0.016116898506879807, -0.008407602086663246, -0.006822447758167982, 0.006832922343164682, 0.01853303611278534, 0.008512347936630249, -0.010272078216075897, -0.005404886789619923, 0.008770721033215523, -0.010837705805897713, -0.0017623492749407887, 0.0023463075049221516, -0.002428358420729637, 0.01558618526905775, 0.001626179669983685, -0.005614378955215216, 0.015223066322505474, 0.007974652573466301, -0.03125616908073425, 0.024370873346924782, 0.027583079412579536, 0.019412901252508163, -0.01411974336951971, 0.016256559640169144, -0.0035858002956956625, -0.006930685136467218, 0.0031284100841730833, 0.0077861095778644085, -0.009608687832951546, 0.023058058694005013, 0.010362857952713966, 0.004835767671465874, 0.012283199466764927, 0.0310885738581419, 0.0074718720279634, 0.02439880557358265, 0.0007362762116827071, -0.0033274271991103888, -0.00013289632624946535, 0.02421724610030651, -0.0006939413724467158, 0.0007650813204236329, 0.0250412467867136, -0.02579541690647602, 0.003900037845596671, 0.024077584967017174, 0.004940513521432877, -0.011061163619160652, -0.005642311181873083, 0.005858785938471556, -0.027792571112513542, -0.020655885338783264, 0.025320569053292274, 0.003533427370712161, -0.002246798947453499, 0.008784687146544456, 0.006892278324812651, 0.00866597518324852, 0.02546023018658161, 0.0014385100221261382, 0.01921737566590309, -0.011054180562496185, -0.030474064871668816, -0.017792832106351852, 0.025013314560055733, 0.0014716795412823558, 0.013177030719816685, -0.03097684495151043, -0.009476009756326675, -0.01445493008941412, -2.6077357688336633e-05, 0.02361670322716236, -0.02924504689872265, 0.004032716155052185, 0.0018487646011635661, 0.009650586172938347, -0.006867837626487017, -0.001672442420385778, 0.02395188994705677, -0.000982865458354354, 0.011975944973528385, -8.161448931787163e-05, 0.008009567856788635, -0.011501097120344639, 0.01861683279275894, 0.0194687657058239, -0.016214661300182343, -0.022764770314097404, 0.021074868738651276, 0.0013826454523950815, -0.008295873180031776, 0.0030428676400333643, -0.006934176664799452, 0.004807835444808006, -0.002007629256695509, -0.0026535619981586933, 0.0014847727725282311, 0.030278539285063744, -0.006818956229835749, -0.0037813258823007345, 0.018505103886127472, 0.0030481049325317144, 0.00590417580679059, -0.010614247992634773, -0.0013905013911426067, -0.00482180155813694, 0.019384969025850296, -0.0005656277062371373, 0.0064837695099413395, 0.012464758940041065, 0.04779205098748207, -0.005048750899732113, 0.010746926069259644, 0.009517908096313477, -0.008547263219952583, -0.009168755263090134, -0.003269816981628537, 0.011794385500252247, -0.012960555963218212, -0.00469959806650877, 0.01910564675927162, 0.020320698618888855, 0.01323289517313242, 0.02424517832696438, -0.0032855288591235876, -0.010097501799464226, 0.012862793169915676, -0.010851671919226646, 0.007388075347989798, -0.0008763737860135734, 0.020292766392230988, 0.012904691509902477, 0.004895123653113842, 0.003411223879083991, -0.021535750478506088, 0.010439671576023102, 0.0010282553266733885, 0.0014812812441959977, 0.004151428118348122, 0.0037149868439882994, 0.013197979889810085, -0.008582178503274918, -0.004504072479903698, -0.011906114406883717, 0.015502388589084148, -0.009238585829734802, -0.0021036462858319283, -0.012290182523429394, 0.014692354016005993, 0.012087673880159855, -0.011885165236890316, 0.0219547338783741, -0.01358903106302023, 0.0010745180770754814, 0.012332080863416195, 0.007702312897890806, -0.01695486530661583, -0.013204962946474552, -0.02812775783240795, -0.004029224626719952, -0.01558618526905775, -0.012569504790008068, -0.009364280849695206, -0.01932910457253456, -0.0009846112225204706, 0.01868666335940361, 0.002417883835732937, 0.012157504446804523, -0.016829170286655426, 0.006592006888240576, -0.01691296696662903, 0.007388075347989798, 0.02139608934521675, -0.008107330650091171, -0.010306993499398232, 0.0029084437992423773, 0.0079118050634861, -0.011417300440371037, -0.003515969729050994, 0.010258112102746964, -0.010320959612727165, -0.000255536288022995, 0.01143126655369997, -0.002484222874045372, -0.007681363727897406, -0.03566946089267731, -0.014594591222703457, 0.016298457980155945, 0.00011249270028201863, -0.006242854055017233, -0.00736014312133193, 0.01620069518685341, 0.0038197326939553022, 0.0006555345607921481, -0.03379800170660019, -0.00035962750553153455, 0.002110629342496395, 0.005376954562962055, 0.01192008052021265, -0.005642311181873083, 0.013568081893026829, 0.005202378146350384, -0.031451694667339325, 0.024692093953490257, -0.014329235069453716, -0.0038546479772776365, -0.010537434369325638, 0.023770330473780632, -9.841747669270262e-05, -0.004364411346614361, -0.009168755263090134, -0.025320569053292274, -0.014790116809308529, -0.0042561739683151245, 0.00030747277196496725, 0.003411223879083991, 0.0039628855884075165, -0.00988801009953022, -0.005733090918511152, -0.0011129248887300491, -0.018030256032943726, -0.01145221572369337, -0.005163971334695816, -0.001440255786292255, -0.0008462593541480601, 0.019049782305955887, -0.020250868052244186, -0.005980989430099726, -0.019608426839113235, 0.01875649392604828, -0.013959133066236973, 0.020362596958875656, 0.00266054505482316, -0.03248518705368042, -0.018072154372930527, 0.00879865325987339, 0.009615670889616013, -0.0031406304333359003, -0.0010727723129093647, 0.0037708512973040342, 0.028253452852368355, 0.022094395011663437, -0.0091547891497612, -0.007087803911417723, -0.0003124918439425528, 0.0018138493178412318, -0.023281516507267952, -0.001738781458698213, -0.019482731819152832, -0.02999921701848507, 0.0034810544457286596, 0.010663129389286041, -0.008246991783380508, 0.0019814427942037582, -0.017136424779891968, -0.015516354702413082, 0.006644379813224077, 0.0054118698462843895, -0.019007883965969086, 0.025502128526568413, -0.004542479291558266, -0.005729599390178919, 0.022722871974110603, -0.02022293582558632, 0.009860077872872353, -0.02842104621231556, 0.0018540018936619163, -0.020991072058677673, -0.010537434369325638, 0.005960040260106325, -0.02068381756544113, 0.013994048349559307, -0.022038530558347702, -0.0004152737383265048, -0.03575325757265091, -0.009762315079569817, 0.020055342465639114, -0.005275700241327286, -0.011263673193752766, 0.02323961816728115, -0.0039628855884075165, 0.010460620746016502, -0.004064139910042286, -0.013204962946474552, 0.02777860499918461, -0.027010468766093254, 0.004538987763226032, 0.015879474580287933, -0.0029939862433820963, -0.014650455676019192, -0.022345785051584244, -0.014706320129334927, -0.03589291870594025, -0.0010273824445903301, -0.012604420073330402, -0.017946459352970123, -0.0274434182792902, -1.2329462151683401e-05, 0.00866597518324852, -0.0006930684903636575, -0.007995601743459702, -0.0183514766395092, -3.3796910429373384e-05, -0.015250998549163342, -0.02913331799209118, -0.011780419386923313, -0.015628084540367126, 0.02830931730568409, 0.013225912116467953, -0.01141031738370657, -0.009825162589550018, -0.0034391561057418585, -0.016745373606681824, -0.013204962946474552, -0.01240889448672533, 0.005726107861846685, -9.967224468709901e-05, 0.0091338399797678, -0.010446654632687569, 0.01763920485973358, 0.004594852216541767, 0.00866597518324852, -0.004682140424847603, 0.004748479463160038, -0.0020460360683500767, -0.015991203486919403, -0.000440150877693668, -0.0034566137474030256, -0.023449109867215157, 0.0027810027822852135, -0.005062717013061047, -0.0022607650607824326, 0.0018086120253428817, 0.0022799684666097164, -0.0014140693238005042, -0.004912581294775009, 0.014385099522769451, 0.015991203486919403, -0.013407471589744091, -0.011508080177009106, 0.032010339200496674, 0.0020774598233401775, 0.009811196476221085, 0.006644379813224077, 0.0051674628630280495, -0.021032970398664474, 0.01472028624266386, -0.008428551256656647, -0.01654984802007675, -0.0005979243433102965, 0.0008785559912212193, 0.01407784502953291, 0.01642415300011635, -0.011989911086857319, -0.012841843999922276, -0.0009697721689008176, 0.007464888971298933, 0.008770721033215523, -0.004116512835025787, -0.005614378955215216, 0.005237293429672718, 0.0040362076833844185, 0.016605712473392487, -0.01717832311987877, -0.008672958239912987, 0.024077584967017174, -0.0006145091028884053, 0.006413938943296671, 0.002222358249127865, 0.004245699383318424, -0.0008305474766530097, 0.021940767765045166, 0.022778736427426338, 0.004556445404887199, 0.020809512585401535, -0.01236699614673853, 0.005862277466803789, -0.02184300497174263, 0.0031092066783457994, 0.008749771863222122, -0.0103558748960495, -0.015348761342465878, 0.020083274692296982, -0.004552953876554966, -0.0067281764931976795, -0.019384969025850296, 0.0031633253674954176, 0.006040345411747694, -0.009894993156194687, 0.006567566189914942, -0.010935468599200249, -0.008233025670051575, 0.03097684495151043, -0.002386460080742836, 0.018965985625982285, -0.04120004177093506, 0.01349825132638216, -0.009657569229602814, -0.011305571533739567, 0.043630145490169525, 0.0037080037873238325, 0.015781711786985397, 0.018812358379364014, 0.014748218469321728, -0.01227621641010046, -0.03368627279996872, 0.001220289384946227, 0.015334795229136944, 0.003161579603329301, 0.02222009003162384, 0.003538664663210511, -0.007185566704720259, -0.00518841203302145, 0.014035946689546108, -0.0021630022674798965, 0.006089226808398962, -0.007925771176815033, -0.0023218668065965176, 0.002800206420943141, -0.015460490249097347, -0.0038302072789520025, -0.006242854055017233, 0.0068992613814771175, 0.006780549418181181, 0.010656146332621574, -0.0018243239028379321, 0.0005573353264480829, 0.015725847333669662, -0.007052888628095388, 0.005610887426882982, -0.002220612484961748, -0.007213498931378126, 0.005073191598057747, -0.02402172051370144, -0.006022887770086527, 0.01846320554614067, -0.023560838773846626, -0.03245725482702255, -0.017429713159799576, -0.010705027729272842, 0.0016427644295617938, -0.0018417815444990993, -0.010809773579239845, 0.00011762088251998648, 0.013756624422967434, 0.009050043299794197, 0.01026509515941143, -0.006619939114898443, -0.02715012989938259, 0.011724554933607578, 0.0015790440374985337, 0.0019971546716988087, -0.008693907409906387, -0.0007816660800017416, -0.019762054085731506, 0.0103977732360363, 0.006853871513158083, -0.018896155059337616, -0.0009374755318276584, -0.002503426279872656, 0.013679810799658298, -0.00879865325987339, -0.012737098149955273, -0.004734513349831104, 0.003941936418414116, -0.0020181038416922092, -0.005918141920119524, -0.010502519086003304, 0.009245568886399269, -0.016926933079957962, -0.007667397614568472, 0.0059460741467773914, -0.01509737130254507, 0.013952150009572506, 0.016647610813379288, 0.03955204039812088, -0.013596014119684696, 0.015572219155728817, -0.020544156432151794, -0.012262250296771526, -0.011082112789154053, 0.014070861972868443, -0.016926933079957962, -0.0077861095778644085, -0.008840551599860191, -0.005949565675109625, 0.010523468255996704, 0.0069481427781283855, 0.007618516217917204, 0.011605842970311642, -0.007269363384693861, -0.03226172924041748, -0.0079118050634861, -0.02590714581310749, -0.006811973173171282, 0.016647610813379288, 0.01509737130254507, -0.012185436673462391, -0.001785044209100306, 0.011794385500252247, 0.009455060586333275, 0.00337456283159554, 0.01944083347916603, 0.010216213762760162, -0.007171600591391325, 0.021340224891901016, -0.008274924010038376, 0.00760455010458827, 0.014538726769387722, 0.00016519296332262456, 0.008994178846478462, -0.022806668654084206, 0.014371133409440517, 0.014413031749427319, 0.00016148321446962655, -0.007751194294542074, -0.009189704433083534, -0.02782050333917141, -0.024831755086779594, -0.03508288413286209, -0.020348630845546722, -0.00481132697314024, 0.009559806436300278, -0.006284752395004034, -0.024273110553622246, 0.001342492876574397, -0.005251259543001652, 0.0009924671612679958, 0.008379669860005379, 0.009727399796247482, -0.009587738662958145, -0.008170178160071373, -0.023002194240689278, 0.008617093786597252, 0.005932108033448458, 0.004867191426455975, 0.01763920485973358, -0.011235740967094898, -0.007751194294542074, -0.01532082911580801, 0.002369002439081669, -0.0034828002098947763, -0.008428551256656647, 0.00506620854139328, -0.0018714595353230834, 0.0012290182057768106, 0.002618646714836359, -0.014357167296111584, -0.013819471932947636, -0.012688216753304005, -0.012904691509902477, 0.010425705462694168, -0.006574549246579409, 0.026647349819540977, -0.015390659682452679, -0.01088658720254898, -0.009462043642997742, -0.016270525753498077, 0.006305701564997435, 0.0016052304999902844, -0.009587738662958145, -0.002503426279872656, 0.0029992235358804464, 0.006682786624878645, 0.006564074661582708, -0.00997878983616829, -0.011424283497035503, 0.003479308681562543, 0.011927063576877117, -0.0008379669743590057, -0.02022293582558632, -0.016871068626642227, -0.005408378317952156, -0.004147936590015888, -0.002868291223421693, 0.02019500359892845, -0.013707743026316166, -0.0020111207850277424, -0.0052896663546562195, 0.006298718508332968, 0.0012770267203450203, -0.007028447929769754, 0.00014271624968387187, 0.007653431501239538, 0.010963400825858116, -0.0018697137711569667, 0.008267940953373909, 0.036982275545597076, 0.038965463638305664, -0.0341331884264946, 0.007869906723499298, -0.03793197125196457, 0.017359882593154907, -0.01868666335940361, 0.007869906723499298, 0.023784296587109566, -0.0024021719582378864, 0.002789731603115797, 0.019496697932481766, 0.005764514673501253, 0.0010692807845771313, -0.0011583147570490837, -0.006001938600093126, 0.0008218186558224261, 0.002330595627427101, -0.004008275456726551, 0.00024811679031699896, -0.009741365909576416, -0.018505103886127472, 0.013798522762954235, 0.020125173032283783, -0.009126856923103333, 0.004483123309910297, 0.02015310525894165, 0.02522280625998974, -0.020879343152046204, 0.010202247649431229, 0.005244276486337185, 0.011780419386923313, -0.010530451312661171, 0.0035107324365526438, -0.0022241040132939816, 0.01729005202651024, 0.009441094473004341, -0.0073950584046542645, -0.024538466706871986, -0.013079267926514149, -0.02568368799984455, 0.007988618686795235, 0.024566398933529854, 0.02228992059826851, -0.0003746847214642912, 0.01575377956032753, 0.007416007574647665, 0.013358590193092823, -0.002369002439081669, -0.016675543040037155, -0.016926933079957962, 0.021116767078638077, -0.011815334670245647, -0.02124246209859848, 0.0002599006984382868, -0.020181037485599518, 0.00012209441047161818, -0.0008899034583009779, -0.0025680195540189743, -0.0207955464720726, -0.025432297959923744, 0.0021525276824831963, -0.007422990631312132, 0.021675411611795425, -0.004556445404887199, 0.0009043060126714408, 0.00902211107313633, -0.0038197326939553022, 0.0019116121111437678, 0.017304018139839172, -0.008638042956590652, -0.004905598238110542, 0.01891012117266655, -0.016787271946668625, 0.033965595066547394, 0.012178453616797924, -0.018938053399324417, -0.017583340406417847, 0.010083535686135292, 0.007199532818049192, 0.021968699991703033, 0.014440963976085186, -0.00114434864372015, -0.019901715219020844, 0.025879213586449623, 0.02248544804751873, 0.0022625108249485493, 0.010830722749233246, 0.00842156819999218, -0.02613060362637043, -0.0032191898208111525, -0.0007646448793821037, 0.005932108033448458, 0.013393505476415157, 0.004462174139916897, 0.012443809770047665, 0.007388075347989798, 0.0006232379237189889, -0.0005616997368633747, -0.0038546479772776365, -0.019147545099258423, -0.005373463034629822, 0.01456665899604559, -0.0042806146666407585, -0.011843266896903515, -0.0004298945132177323, 0.009168755263090134, -0.013302725739777088, -0.011200825683772564, -0.012806928716599941, -0.0074928211979568005, -0.0330996960401535, 0.022429583594202995, 0.005247768014669418, -0.00469959806650877, -0.01571188122034073, 0.0005520980339497328, -0.014734252355992794, 0.002988748950883746, 0.022429583594202995, 0.010670112445950508, 0.0026081721298396587, 0.005802921485155821, -0.00663739675655961, 0.013379539363086224, -0.014147675596177578, -0.013093234039843082, 0.009671535342931747, -0.00942014530301094, -0.015083405189216137, 0.027722740545868874, 0.0041339704766869545, 0.0074718720279634, -0.009489975869655609, 0.00784197449684143, -0.006180006545037031, 0.0030585795175284147, -0.012688216753304005, -0.017848696559667587, 0.0034339188132435083, -0.010872621089220047, -0.01274408120661974, -0.011040214449167252, -0.0007515516481362283, 0.01176645327359438, 0.02184300497174263, 0.002477239817380905, -0.0032488678116351366, 0.006902752909809351, 0.003704512258991599, -0.006298718508332968, -0.003393766237422824, 0.012401911430060863, -0.012080690823495388, 0.03469183295965195, -0.010816756635904312, 0.00842156819999218, 0.0010142892133444548, -0.0009444585884921253, -0.013079267926514149, 0.00808638148009777, -0.0017963916761800647, -0.009343331679701805, -0.00144287443254143, -0.0031528507824987173, 0.014301302842795849, 0.006804990116506815, 0.013623946346342564, 0.008393635973334312, 0.004214275628328323, 0.0003895237168762833, 0.006302210036665201, -9.912669338518754e-05, 0.0004591360630001873, -0.0005987972253933549, 0.014105777256190777, -0.012841843999922276, -0.009301433339715004, 0.011570927686989307, 0.011598859913647175, -0.005275700241327286, 0.00019814427650999278, -0.015767745673656464, 0.0042561739683151245, -0.00844251736998558, 0.03458010405302048, 0.005474717356264591, -0.01815595105290413, 0.005967023316770792, 0.010635197162628174, 0.030166810378432274, 0.038853734731674194, 0.009350314736366272, 0.0012499673757702112, 0.007597567047923803, -0.02286253310739994, 0.00241613807156682, -0.034384578466415405, -0.0018382900161668658, 0.00519888661801815, 0.007946720346808434, 0.008784687146544456, 0.0024074092507362366, -0.008652009069919586, 0.0030830202158540487, -0.030138878151774406, -0.0062882439233362675, -0.026116637513041496, 0.009371263906359673, -0.02323961816728115, 0.002966054016724229, 0.009455060586333275, -0.019203409552574158, -0.0195525623857975, 0.016144830733537674, 0.012583470903337002, 0.004521530121564865, -0.010830722749233246, -0.0171084925532341, -0.010327942669391632, -0.00964360311627388, 0.006647871341556311, 0.004469157196581364, 0.003606749465689063, 0.015125303529202938, -0.005230310373008251, -0.03268071264028549, 0.0016645864816382527, 0.034719765186309814, -0.007667397614568472, -0.028881927952170372, -0.009280484169721603, 0.0008641534368507564, 0.006578040774911642, 0.004392343573272228, 0.006438379641622305, 0.012360013090074062, -0.0076394653879106045, -0.012869776226580143, -0.030669590458273888, -0.0038721056189388037, 0.0195525623857975, -0.013016420416533947, -0.008568212389945984, 0.013218929059803486, 0.013784556649625301, 0.012604420073330402, 0.02335134707391262, 0.0040606483817100525, -0.012262250296771526, 0.021717309951782227, 0.005404886789619923, 5.641001553158276e-05, -0.0207955464720726, 0.0042317332699894905, 0.02913331799209118, 0.0012508402578532696, 0.01770903542637825, -0.011438249610364437, 0.001916849403642118, 0.0034007492940872908, 0.0052896663546562195, -0.01227621641010046, 0.019789986312389374, 0.013819471932947636, -0.011172892525792122, -0.007077329326421022, 0.004050173796713352, -0.020013444125652313, 0.00842156819999218, -0.019901715219020844, -0.010460620746016502, -0.01460855733603239, -0.01988774910569191, 0.0053874291479587555, -0.026828909292817116, 0.021451953798532486, -0.007178583648055792, 7.386766083072871e-05, -0.009357297793030739, 0.030920980498194695, -0.007024956401437521, -0.003927970305085182, -0.012569504790008068, 0.01726211979985237, 0.012806928716599941, -0.02717806212604046, -0.018770460039377213, -0.006050819996744394, -0.0027391044422984123, 0.0009872298687696457, -0.008624076843261719, 0.01995757967233658, -0.0044761402532458305, 0.012192419730126858, -0.03354661166667938, -0.019985511898994446, 0.017359882593154907, 0.0015319084050133824, -0.0035561223048716784, 0.0024126465432345867, -0.018965985625982285, -0.005017327144742012, -0.0073950584046542645, -0.00955282337963581, 0.007157634478062391, 0.02342117764055729, 0.003020172705873847, -0.01895201951265335, -0.012925640679895878, 0.019496697932481766, 0.012890725396573544, 0.04357428103685379, -0.0021891887299716473, 0.019720155745744705, -0.011144960299134254, -0.012360013090074062, -0.0316472202539444, 0.0074439398013055325, 0.011193842627108097, -0.009008144959807396, 0.0030673083383589983, -0.005471225827932358, -0.014859947375953197, 0.010523468255996704, 0.014399065636098385, -0.0041095297783613205, 0.020572088658809662, -0.009057026356458664, -0.0074439398013055325, -0.011850249953567982, 0.01639622077345848, -0.002550561912357807, -0.004364411346614361, -0.023113923147320747, -0.011605842970311642, 0.008994178846478462, 0.003056833753362298, 0.004053665325045586, -0.018700629472732544, -0.005914650391787291, -0.012290182523429394, 0.01108909584581852, -0.010530451312661171, -0.010125434026122093, -0.001782425562851131, 0.00564929423853755, 0.01740178093314171, 0.0014411286683753133, 0.009168755263090134, -0.001726561109535396, 0.007960686460137367, -0.01737384870648384, -0.0077861095778644085, 0.01062123104929924, 0.005548039451241493, -0.018365442752838135, 0.0012944843620061874, 0.008163195103406906, 0.014105777256190777, -0.02202456444501877, 0.014371133409440517, -0.004235224798321724, 0.0012456029653549194, -0.00015100862947292626, 0.00020861886150669307, 0.01962239295244217, 0.0021403073333203793, 0.012862793169915676, -0.009126856923103333, -0.012192419730126858, -0.010006722062826157, 0.00576102314516902, 0.00928746722638607, 0.013679810799658298, 0.023560838773846626, -0.0056458027102053165, 0.013281776569783688, 0.011340486817061901, -0.002124595455825329, 0.0008427678258158267, 0.0028874946292489767, 0.001965730916708708, -0.014664421789348125, 0.0011530774645507336, -0.014971676282584667, -0.010537434369325638, 0.011857233010232449, -0.022513380274176598, -0.004270140081644058, -0.027624977752566338, -0.009091941639780998, 0.0022485447116196156, -0.006857363041490316, 0.016926933079957962, 0.015725847333669662, -0.011487131007015705, -0.0033658340107649565, -0.005041767843067646, -0.0029241556767374277, -0.0062393625266849995, 0.023826194927096367, -0.022960295900702477, -0.0076883467845618725, -0.010167332366108894, -0.00784197449684143, 0.0009654077584855258, 0.009252551943063736, -0.02346307598054409, 0.018714595586061478, 0.006791024003177881, 0.011179876513779163, 0.0019063748186454177, 0.023518940433859825, 0.00025684561114758253, -0.00494400504976511, -0.006633905228227377, -0.017806798219680786, -0.007098278496414423, -0.0008833568426780403, -0.003508986672386527, 0.020055342465639114, -0.0171084925532341, 0.009957840666174889, -0.024608297273516655, 0.014496828429400921, 0.0064348881132900715, 0.012981505133211613, 0.022848566994071007, 0.00700400723144412, 0.028183622285723686, 0.009280484169721603, -0.010139400139451027, 0.013561098836362362, 0.025767484679818153, 0.01684313639998436, 0.011340486817061901, 0.001153950346633792, -0.006330142263323069, 0.01118685957044363, 0.005111598409712315, -0.006176515016704798, 0.00675960024818778, -0.004175868816673756, 0.0014254167908802629, 0.01554428692907095, -0.01875649392604828, -0.009371263906359673, 0.019943613559007645, -0.016857102513313293, 0.007527736481279135, -0.01387533638626337, -0.030278539285063744, 0.023449109867215157, 0.024259144440293312, 0.008142245933413506, 0.003809258108958602, 0.008526314049959183, -0.007255397271364927, 0.004860208369791508, 0.015502388589084148, 0.013470319099724293, 0.007939737290143967, -0.0005555895622819662, 0.005366479977965355, 0.005935599561780691, -0.008561229333281517, 0.001098085893318057, -0.009587738662958145, 0.010125434026122093, -0.004423767328262329, -0.006885295268148184, -0.010949434712529182, 0.014524760656058788, 0.004277123138308525, 0.0103768240660429, 0.0225971769541502, -0.007548685651272535, -0.015697915107011795, 0.01564205065369606, -0.026535620912909508, -0.012401911430060863, -0.011598859913647175, -0.0023358329199254513, -0.007904822006821632, 0.003969868645071983, -0.004556445404887199, 0.02019500359892845, 0.010760892182588577, 0.008875466883182526, -0.009839128702878952, 0.0010387299116700888, 0.0037568851839751005, 0.008002584800124168, 0.005129056051373482, -0.007133193779736757, -0.002503426279872656, 0.014804082922637463, -0.0045983437448740005, 0.017206255346536636, -0.007059871684759855, -0.001843527308665216, -0.0024807313457131386, 0.01385438721626997, -0.01935703679919243, -0.009217636659741402, -0.015460490249097347, 0.024356907233595848, 0.009894993156194687, -0.011710588820278645, -0.02568368799984455, -0.000443860626546666, 0.0010273824445903301, 0.014049912802875042, -0.003920987248420715, 0.011724554933607578], "05c70ffb-3451-4aac-9fff-dca65871b819": [-0.03586586192250252, -0.013429624028503895, -0.00858505629003048, -0.014747828245162964, -0.04831185191869736, -0.03728443756699562, 0.0005578948184847832, 0.010840055532753468, -0.026698654517531395, 0.026002749800682068, 0.010666078887879848, 0.038060639053583145, -0.004339367616921663, 0.0005160736036486924, 0.01411883719265461, -0.02398194931447506, -0.02007417567074299, 0.012472754344344139, 0.027809426188468933, -0.02695292793214321, 0.06247083470225334, -0.040175117552280426, -0.029575953260064125, 0.011643022298812866, 0.011034105904400349, -0.03332313150167465, -0.01878942921757698, 0.011107711121439934, -0.04694680497050285, -0.010418497025966644, 0.02853209525346756, 0.023941799998283386, -0.0021094612311571836, -0.0026029516011476517, -0.01530990470200777, -0.01199097465723753, 0.011950826272368431, 0.010853437706828117, -0.023473402485251427, 0.0013290777569636703, -0.031369246542453766, -0.024530643597245216, 0.003543092170730233, 0.00986311212182045, -0.050854578614234924, 0.028746219351887703, 0.033858444541692734, -0.006938973441720009, 0.050238970667123795, 0.010960499756038189, 0.0022549990098923445, 0.005443447269499302, 0.003653499996289611, -0.031396012753248215, -0.002873952966183424, -0.028103847056627274, 0.00826386921107769, 0.07644246518611908, 0.0042858365923166275, -0.0531296543776989, -0.0011475736973807216, -0.020770080387592316, 0.008391005918383598, 0.0012604909716174006, -0.02407562918961048, -0.02641761675477028, -0.0036936483811587095, -0.007400679402053356, -0.033858444541692734, -0.009588764980435371, 0.0009200664353556931, 0.030512748286128044, -0.05695712938904762, 0.009528541937470436, 0.009153824299573898, 0.011014031246304512, -0.00028187487623654306, 0.0004282490990590304, -0.0017631817609071732, -0.009301034733653069, -0.04451113939285278, -0.030111264437437057, -0.00813004095107317, -0.017651891335844994, 0.06627154350280762, 0.025400524958968163, 0.00557058397680521, -0.028103847056627274, -0.013483154587447643, -0.04911481589078903, -0.011596182361245155, 0.010224446654319763, -0.028344737365841866, -0.011315143667161465, -0.007728558033704758, -0.01581845059990883, -0.024905361235141754, 0.0166481826454401, 0.011060871183872223, -0.005764634348452091, 0.030539512634277344, 0.029870374128222466, -0.03369785100221634, 0.007922608405351639, -0.030807169154286385, -0.0012454353272914886, 0.012827398255467415, 0.017518064007163048, 0.007701792288571596, 0.019471950829029083, 0.023620614781975746, -0.04876686632633209, 0.041995175182819366, 0.01787940040230751, -0.030566278845071793, -0.03921155631542206, -0.03356402367353439, -0.009749358519911766, 0.025092720985412598, -0.0189901702105999, 0.001665320247411728, -0.007487667724490166, 0.026163343340158463, 0.021479368209838867, -0.02081022970378399, 0.0012245246907696128, 0.0010137459030374885, 0.0009326127474196255, 0.016045957803726196, -0.019418420270085335, 0.004121897276490927, -0.04006805643439293, -0.013837798498570919, 0.011736701242625713, 0.015952277928590775, 0.005925227887928486, 0.03875654190778732, 0.04207547381520271, -0.039318621158599854, -0.005430064629763365, -0.026484530419111252, -0.02553435228765011, -0.013757501728832722, 0.01999387890100479, 0.01650097221136093, 0.01469429675489664, -0.036588530987501144, -0.016300231218338013, -0.05733184888958931, 0.024343283846974373, -0.043520815670490265, 0.03302871063351631, -0.028023550286889076, 0.050479862838983536, 0.04852597415447235, 0.011428897269070148, -0.006865368224680424, 0.04279814288020134, -0.009655678644776344, 0.004028217867016792, 0.0005746232927776873, -0.0760142132639885, -0.018856342881917953, 0.007741940673440695, 0.02818414382636547, -0.0037538709584623575, 0.07258822023868561, -0.001501381048001349, 0.007654952351003885, 0.012064579874277115, 0.019364887848496437, -0.018294265493750572, 0.012031123042106628, -0.01820058561861515, 0.023874886333942413, -0.035651735961437225, 0.04314609616994858, 0.024236222729086876, 0.04582265391945839, -0.026993075385689735, -0.013663822785019875, 0.007989522069692612, 0.01635376177728176, -0.00658432999625802, -0.012345618568360806, 0.0035598205868154764, -0.017076432704925537, -0.003287146333605051, -0.0009853075025603175, -0.00216131960041821, -0.014654148370027542, -0.0025209819432348013, 0.020622869953513145, -0.01638052798807621, -0.005563892424106598, -0.014506937935948372, 0.011201390065252781, 0.008692118339240551, 0.019150763750076294, 0.04071043059229851, 0.004965012893080711, -0.04159369319677353, -0.021974531933665276, 0.04253048822283745, -0.02307192049920559, 0.004342713393270969, -0.0349290668964386, -0.041352804750204086, 0.004724122583866119, -0.04774977266788483, 0.043547578155994415, -0.0348220057785511, 0.05096164345741272, 0.028291204944252968, 0.020770080387592316, 0.003124880138784647, -0.026551444083452225, 0.013081671670079231, -0.008812563493847847, -0.03848888725042343, -0.006524107418954372, 0.01931135728955269, -0.0028204217087477446, -0.018869725987315178, -0.08420448005199432, -0.01426604762673378, 0.02034183219075203, 0.01987343467772007, -0.053209949284791946, -0.02368752844631672, -0.015149311162531376, -0.02225556969642639, 0.01165640540421009, 0.004433047026395798, -0.008859403431415558, 0.034099332988262177, -0.0033875172957777977, 0.013877946883440018, -0.027782659977674484, 0.0028354774694889784, 0.009173898957669735, 0.05339730903506279, -0.020823612809181213, 0.0317707285284996, 0.003566511906683445, 0.03605322167277336, -0.0019354851683601737, 0.020823612809181213, 0.022616904228925705, -0.004469850100576878, -0.0013098400086164474, 0.03273428976535797, -0.00902668759226799, -0.005249396897852421, 0.003420974127948284, 0.04483232647180557, 0.02764883264899254, -0.047160930931568146, -0.013757501728832722, 0.007046035956591368, -0.011214773170650005, 0.013161968439817429, 0.03243986889719963, 0.024677854031324387, 0.07997551560401917, -0.04180781915783882, -0.004349404945969582, 0.019418420270085335, 0.04424348473548889, -0.010358274914324284, -0.003166701178997755, -0.026016132906079292, 0.011683170683681965, -0.007373914122581482, -0.01611287146806717, -0.030271857976913452, -0.006841948255896568, -0.007079492788761854, 0.001199432066641748, 0.021037736907601357, -0.004643826279789209, -0.021211713552474976, 0.012673496268689632, 0.030485982075333595, 0.024851830676198006, 0.02589568682014942, -0.02818414382636547, 0.023058537393808365, -0.04344051703810692, 0.0062363771721720695, -0.0011659751180559397, -0.009434862993657589, 0.02445034682750702, 0.029227999970316887, 0.042878441512584686, 0.014854890294373035, 0.0004788527439814061, 0.001516436692327261, -0.013730736449360847, 0.0056006950326263905, -0.0010028723627328873, 0.0057947454042732716, 0.012586508877575397, 0.010150841437280178, 0.04940924048423767, -0.0018568612867966294, 0.031021293252706528, 0.016032574698328972, -0.02204144559800625, 0.00329216499812901, 0.057492438703775406, 0.03425992652773857, -0.013496537692844868, 0.020381979644298553, 0.006912208162248135, 0.010813289321959019, 0.02506595477461815, -0.005500324070453644, -0.020703166723251343, -0.029522420838475227, -0.003820784855633974, 0.0012705280678346753, -0.048418913036584854, -0.011883912608027458, 0.013148585334420204, -0.03632087633013725, 0.03755209222435951, -0.024557407945394516, -0.02671203762292862, -0.027782659977674484, -0.011970899999141693, -0.0015189460245892406, 0.012064579874277115, -0.031128356233239174, -0.023580465465784073, -0.014158985577523708, -0.03364431858062744, -0.035919394344091415, 0.0016318631824105978, -0.01605934090912342, 0.009816272184252739, -0.017303939908742905, 0.03423316031694412, -0.013349327258765697, 0.00019520045316312462, 0.01105417963117361, 0.020716549828648567, 0.012118111364543438, 0.005396607797592878, 0.0022081593051552773, 0.0007251796196214855, -0.007849003188312054, 0.031743962317705154, -0.018334414809942245, 0.05468205735087395, 0.020890526473522186, -0.021894235163927078, -0.011716627515852451, 0.010552325285971165, -0.019592395052313805, 0.0007067782571539283, -0.047776538878679276, -0.007306999992579222, 0.0033406775910407305, -0.00796944834291935, 0.06214964762330055, -0.02072993293404579, 0.0016134618781507015, -0.010351583361625671, 0.02230910025537014, -0.04183458164334297, -0.005637497641146183, 0.01488165557384491, -0.02762206643819809, -0.024999041110277176, -0.056528881192207336, 0.021144798025488853, -0.034447286278009415, -0.013202116824686527, 0.014627383090555668, 0.036240577697753906, 0.007233394775539637, -0.037177372723817825, 0.0031867753714323044, 0.007226703222841024, 0.01185714639723301, 0.002668192610144615, 0.002427302533760667, 0.006885442417114973, -0.04028217867016792, -0.0317707285284996, 0.02565479651093483, -0.0009175571613013744, 0.0011433915933594108, -0.010732992552220821, -0.02105112001299858, 0.007768705952912569, -0.007193246390670538, -0.03886360675096512, -0.05395938456058502, 0.040201883763074875, -0.02105112001299858, 0.005925227887928486, 0.0026096429210156202, 0.03134248033165932, -0.03516995534300804, -0.0016025884542614222, -0.025587882846593857, 0.010726301930844784, -0.014172368682920933, 0.002780273323878646, -0.0091136759147048, 0.04376170411705971, 0.04927540943026543, 0.028050314635038376, 0.0500783771276474, 0.013744119554758072, 0.03859594836831093, -0.00035736215068027377, -0.019485333934426308, 0.016487589105963707, 0.06327380239963531, -0.004988432861864567, 0.014225899241864681, -0.010204372927546501, 0.042021941393613815, 0.04833861440420151, 0.0021864124573767185, 0.045929715037345886, -0.018147055059671402, -0.004259070847183466, 0.029361829161643982, -0.03257369622588158, 0.013637056574225426, 0.010063854046165943, -0.011930751614272594, 0.009046762250363827, -0.007808854337781668, 0.018508389592170715, -0.008277252316474915, 0.011970899999141693, 0.025989366695284843, -0.021599814295768738, 0.0012972935801371932, -0.03265399485826492, 0.0003153318539261818, -0.010378348641097546, 0.017477916553616524, 0.033403430134058, -0.0098764942958951, -0.016487589105963707, 0.027314262464642525, 0.01009731087833643, -0.002591241616755724, -0.02022138610482216, 0.005818165373057127, -0.023741059005260468, -0.02172025851905346, -0.0001979188236873597, -0.033216070383787155, -0.028023550286889076, 0.027367793023586273, 0.017156729474663734, -0.0038308219518512487, -0.02028830163180828, -0.025092720985412598, -0.0014035195345059037, 0.03152984008193016, 0.013670514337718487, 0.0030412375926971436, -0.016862308606505394, 0.0002816657943185419, -0.042021941393613815, 0.00016833032714203, 0.0364547036588192, 0.005052001215517521, -0.018441475927829742, -0.010920352302491665, 0.0008464611019007862, -0.028398267924785614, -0.03238633647561073, -0.03372461721301079, -0.023848121985793114, -0.019391654059290886, -0.008805871941149235, -0.0022416163701564074, -0.03915802761912346, -0.0500783771276474, -0.014172368682920933, -0.0364547036588192, 0.051737844944000244, -0.005246051587164402, 0.009361257776618004, 0.008511451072990894, 0.014279430732131004, -0.022657053545117378, 0.020248152315616608, -0.017076432704925537, -0.04194164648652077, -0.03364431858062744, 0.0212518610060215, -0.007741940673440695, 0.00968913547694683, -0.019123999401926994, -0.027702363207936287, 0.01564447395503521, -0.030994528904557228, 0.02850533090531826, 0.024905361235141754, -0.021171564236283302, -0.017665274441242218, 0.022938091307878494, -0.04207547381520271, 0.02629717066884041, 0.013757501728832722, -0.004436392802745104, -0.018802812322974205, -0.01160956546664238, 0.048980988562107086, 0.03819446638226509, -0.010190989822149277, 0.02550758607685566, -0.021880852058529854, 0.0062965997494757175, -0.029361829161643982, -0.005553855560719967, 0.004423010163009167, -0.045046452432870865, 0.034447286278009415, -0.008109967224299908, -0.0121381850913167, 0.01787940040230751, -0.016741862520575523, 0.0235135518014431, 0.004262416623532772, -0.010632622055709362, -0.004780999850481749, -0.018160438165068626, 0.0016343725146725774, 0.014185750856995583, -0.013242265209555626, 0.030111264437437057, 0.006266488693654537, -0.006199574563652277, -0.009575381875038147, 0.026190107688307762, -0.019217677414417267, 0.01143558882176876, -0.038729775696992874, 0.01755821332335472, -0.010880203917622566, 0.025293461978435516, -0.05481588467955589, -0.004874679259955883, 0.009093602187931538, -0.00926088634878397, -0.009595456533133984, -0.017036283388733864, -0.0235135518014431, 0.01160956546664238, -0.024517260491847992, -0.017076432704925537, 0.009147132746875286, 0.015778303146362305, -0.006320019718259573, -0.00926088634878397, -0.02093067392706871, 0.02656482718884945, -0.01999387890100479, 0.023446638137102127, 0.042048707604408264, 0.0030579662416130304, 0.04512674733996391, 0.02257675677537918, 0.004971704445779324, 0.01533667091280222, -0.01564447395503521, -0.0008682081243023276, -0.0317707285284996, -0.0031031330581754446, 0.0044163186103105545, -0.027140285819768906, 0.007373914122581482, 0.007594729773700237, 0.010719610378146172, 0.014627383090555668, -0.02506595477461815, 0.0042155771516263485, -0.021639961749315262, 0.006373550742864609, 0.004382861778140068, 0.02853209525346756, -0.012098036706447601, -0.014828125014901161, -0.02218865603208542, 0.011877221055328846, -0.01717011258006096, 0.010605856776237488, 0.0030830588657408953, 0.0032486708369106054, 0.04303903505206108, 0.04223606735467911, 0.010017014108598232, -0.04700033739209175, -0.05122929811477661, 0.01881619356572628, -0.00470404839143157, 0.008692118339240551, -0.052032265812158585, -0.004730814136564732, -0.00873226672410965, 0.019471950829029083, 0.02671203762292862, -0.016755245625972748, 0.020114324986934662, 0.00019122744561173022, -0.0007469266420230269, 0.016420675441622734, 0.008317400701344013, -0.016420675441622734, -0.0004366133362054825, -0.02756853587925434, 0.0500248484313488, -0.01623331755399704, 0.013623674400150776, 0.007454210892319679, -0.008745649829506874, -0.006132660899311304, 0.008464611135423183, 0.027046605944633484, -0.019123999401926994, -0.008919625543057919, -0.005788054317235947, -0.016032574698328972, 0.0021981222089380026, -0.03578556329011917, 0.024196073412895203, 0.026404233649373055, -0.012017739936709404, -0.0028053661808371544, -0.0031064788345247507, 0.018535155802965164, -0.015283139422535896, 0.006082475185394287, -0.020448893308639526, 0.03265399485826492, 0.01165640540421009, 0.013443006202578545, 0.031690433621406555, 0.01605934090912342, -0.03134248033165932, -0.0022315792739391327, 0.013770884834229946, 0.014172368682920933, 0.01861545257270336, -0.03541084751486778, -0.01114116795361042, -0.005557200871407986, 0.0044765411876142025, -0.02181393839418888, 0.01758497767150402, -0.02309868484735489, -0.01486827339977026, 0.010766449384391308, 0.017451150342822075, 0.00992333423346281, 0.006540835835039616, 0.009019996039569378, 0.012439297512173653, -0.021747024729847908, -0.002945885295048356, -0.024932127445936203, 0.019779754802584648, -0.012412532232701778, -0.0017113235080614686, -0.0030997872818261385, -0.005573929753154516, 0.008150115609169006, -0.026042897254228592, -0.0012713645119220018, 0.016487589105963707, -0.012680187821388245, -0.019739607349038124, 0.015042249113321304, -0.029843607917428017, -0.006239722948521376, 0.007126332726329565, 0.0318242609500885, -0.02333957515656948, -0.0027953290846198797, -0.006627823691815138, 0.02697969228029251, -0.02083699405193329, 0.0003230687871109694, -0.0038843529764562845, 0.007514433469623327, 0.021894235163927078, -0.02850533090531826, 0.029790077358484268, -0.03677589073777199, -0.033537257462739944, -0.004018181003630161, 0.01180361583828926, -0.017103198915719986, 0.016166403889656067, 0.01138874888420105, -0.03332313150167465, -0.007728558033704758, 0.006473921705037355, -0.013228882104158401, 0.004944938700646162, -0.004831185098737478, 0.007353839930146933, 0.03123541735112667, 0.0273008793592453, 0.028880048543214798, -0.032600462436676025, 0.029040642082691193, 0.0010455299634486437, 0.018909873440861702, -0.0349290668964386, 0.004459812771528959, -0.017076432704925537, -0.051122236996889114, -0.043279923498630524, 0.005637497641146183, -0.0028187488205730915, 0.014359727501869202, -0.004617060534656048, 0.005527089815586805, 0.023754442110657692, -0.0318242609500885, 0.0074809761717915535, -0.004456466995179653, 0.001821731450036168, -0.015042249113321304, -0.019886817783117294, 0.0008974829688668251, 0.033858444541692734, -0.026752185076475143, -0.001968942116945982, 0.01199097465723753, 0.006005524192005396, -0.04368140920996666, -0.0026246984489262104, -0.0013884638901799917, 0.018187204375863075, 0.010037087835371494, -0.011107711121439934, 0.034982599318027496, 0.03907772898674011, -0.025909069925546646, 0.0500783771276474, 0.007226703222841024, -0.00417542876675725, 0.003804056439548731, -0.002587895840406418, 0.004871333483606577, -0.011114401742815971, 0.037525326013565063, -0.004807765129953623, 0.0219879150390625, -0.011683170683681965, -0.012325543910264969, -0.0012621638597920537, -0.0020040718372911215, -0.00026054607587866485, 0.016474207863211632, 0.026725420728325844, 0.0032520166132599115, 0.015898747369647026, 0.01591213047504425, 0.01987343467772007, 0.012619965709745884, -0.011080944910645485, -0.03570526838302612, 0.029575953260064125, 0.0046672457829117775, -0.019190913066267967, -0.02154628187417984, -0.023419871926307678, -0.034714940935373306, 0.023473402485251427, -0.013095053844153881, 0.013529994525015354, -0.018588686361908913, 0.028023550286889076, 0.009046762250363827, -0.015965661033988, -0.0031466272193938494, 0.007079492788761854, 0.014025157317519188, -0.00926088634878397, -0.011382058262825012, 0.028880048543214798, -0.00996348261833191, 0.026484530419111252, -0.010826672427356243, 0.015577560290694237, 0.008016287349164486, -0.015751536935567856, -0.013289104215800762, 0.031021293252706528, 0.04336022213101387, -0.00789584219455719, 0.004734159912914038, 0.01393147837370634, -0.03337666392326355, 0.00858505629003048, 0.021532898768782616, 0.0083508575335145, -0.013985009863972664, -0.012921078130602837, 0.013904713094234467, -0.00839769747108221, 0.0022683818824589252, -0.01086012925952673, -0.0037371425423771143, 0.010498793795704842, 0.0020626215264201164, 0.02720719948410988, -0.003713722573593259, 0.03674912452697754, 0.03484876826405525, -0.04223606735467911, 0.020381979644298553, 0.01591213047504425, 0.004289182368665934, 0.01931135728955269, -0.00813004095107317, 0.01039173174649477, -0.0037572167348116636, 0.00940809678286314, -0.006821874063462019, -0.004222268238663673, 0.011355292052030563, 0.013262338936328888, -0.041352804750204086, -0.050801049917936325, 0.02703322470188141, -0.014854890294373035, -0.04552823305130005, -0.007414062507450581, -0.003312238957732916, -0.014199133962392807, -0.0011450644815340638, 0.03252016380429268, -0.00858505629003048, 0.0499713160097599, 0.06632507592439651, 0.03035215474665165, -0.039960991591215134, 0.003262053709477186, 0.007179863750934601, -0.0052192858420312405, 0.02636408433318138, 0.007902533747255802, 0.003686957061290741, 0.028317971155047417, 0.011254921555519104, 0.028933579102158546, -0.006146043539047241, -0.05395938456058502, 0.015390201471745968, 0.011047488078474998, 0.006383588071912527, -0.00046588818076997995, 0.0075813471339643, 0.014533703215420246, 0.02336634136736393, -0.01708981581032276, -0.006483959034085274, -0.029013875871896744, 0.032680757343769073, 0.0010480392957106233, 0.001748126232996583, 0.006172809284180403, 0.037123844027519226, -0.026993075385689735, 0.0032804550137370825, -0.005259434226900339, 0.01820058561861515, 0.016447441652417183, 0.02612319402396679, -0.029067406430840492, 0.007507741916924715, 0.01684892550110817, -0.005195865873247385, -0.006938973441720009, 0.004182119853794575, -0.020248152315616608, -0.0009459955617785454, -0.0167284794151783, -0.014828125014901161, -0.029683014377951622, 0.004148663021624088, 0.005627460777759552, -0.00968913547694683, 0.005256088450551033, 0.023272661492228508, 0.01067277044057846, -0.030887465924024582, -0.03527702018618584, 0.0031650285236537457, 0.013837798498570919, -0.052942294627428055, 0.02533360943198204, -0.014654148370027542, 0.03458111360669136, 0.02063625305891037, 0.011770159006118774, 0.019485333934426308, -0.030245091766119003, -0.012265321798622608, 0.05422704294323921, 0.01071291882544756, 0.0030562933534383774, -0.03439375385642052, -0.017477916553616524, 0.010438571684062481, 0.013998392038047314, 0.00523936003446579, 0.02853209525346756, -0.004125243052840233, 0.0014252664986997843, 0.0019421764882281423, -0.014440024271607399, -0.037177372723817825, -0.004065020475536585, 0.021439220756292343, -0.02697969228029251, -0.00102211011108011, 0.011455663479864597, -0.01260658260434866, 0.03607998415827751, -0.02521316520869732, 0.0037705993745476007, -0.020127708092331886, -0.023446638137102127, -0.015002100728452206, -0.027434706687927246, -0.014680914580821991, 0.02855886146426201, -0.0009585419320501387, -0.02627040445804596, 0.0032168866600841284, -0.00939471460878849, -0.011877221055328846, -0.011107711121439934, 0.018066758289933205, -0.010418497025966644, 0.039559509605169296, 0.012412532232701778, -0.0022683818824589252, 0.0021847395692020655, 0.01425266545265913, -0.0024891977664083242, -0.01001032255589962, -0.006366859655827284, -0.0009050107910297811, 0.01350322924554348, -0.007628187071532011, 0.005246051587164402, 0.01441325806081295, 0.0020793501753360033, 0.005406644660979509, -0.041111912578344345, 0.030245091766119003, 0.01034489180892706, -0.011776849627494812, -0.024209456518292427, -0.01205119676887989, 0.02477153390645981, 0.007233394775539637, -0.012486137449741364, -0.0052895452827215195, -0.018387945368885994, -0.0009459955617785454, -0.0009593783179298043, -0.013657131232321262, 0.02656482718884945, -0.014761210419237614, -0.007982830516994, -0.042664315551519394, 0.0011291723931208253, 0.025467438623309135, -0.00930772628635168, 0.011616257019340992, 0.00020220549777150154, 0.01378426793962717, 0.00025469111278653145, -0.022657053545117378, 0.007333765737712383, -0.0002007417642744258, 0.0029960707761347294, -0.027220582589507103, -0.009843037463724613, -0.016594652086496353, 0.011422206647694111, -0.023888269439339638, 0.015095780603587627, -0.02095744013786316, -0.02371429279446602, 0.031128356233239174, 0.007106258533895016, -0.015470498241484165, -0.006798454560339451, 0.009916642680764198, 0.02154628187417984, 0.007266851607710123, -0.012499520555138588, 0.0057813627645373344, 0.0034694867208600044, -0.01714334636926651, -0.015229607932269573, 0.008919625543057919, 0.03211868181824684, -0.04983748868107796, -0.03190455585718155, 0.02997743710875511, 0.006938973441720009, -0.007547890301793814, -0.015550795011222363, -0.018602069467306137, -0.017129963263869286, 0.017009519040584564, 0.011964209377765656, 0.000961887591984123, 0.010257904417812824, 0.012104728259146214, -0.028398267924785614, -0.00892631709575653, -0.0012763830600306392, -0.0031867753714323044, 0.007079492788761854, -0.0189901702105999, 0.01711658015847206, -0.023526934906840324, -0.02445034682750702, -0.012927769683301449, 0.028077080845832825, 0.0007812200346961617, -0.022964857518672943, -0.0035497834905982018, 0.009133750572800636, -0.019043702632188797, 0.026083046570420265, 0.012486137449741364, -0.03369785100221634, 0.026029516011476517, 0.032359570264816284, -0.00523936003446579, 0.019097233191132545, -0.017076432704925537, -0.0151626942679286, 0.01708981581032276, -0.026136577129364014, -0.0091136759147048, -0.005232668481767178, 0.024477113038301468, -0.0012772195041179657, -0.0038843529764562845, 0.023915035650134087, -0.012479445897042751, 0.021010970696806908, -0.022509843111038208, -0.019177529960870743, -0.006313328631222248, 0.005179137457162142, -0.01454708632081747, 0.01773218810558319, 0.003302202094346285, -0.006082475185394287, 0.017009519040584564, -0.004546801093965769, 0.03458111360669136, -0.009943408891558647, 0.010893586091697216, 0.034420520067214966, -0.018628835678100586, -0.015256374143064022, -0.003599968971684575, -0.025561118498444557, 0.007106258533895016, -0.030111264437437057, 0.02976331114768982, 0.012793941423296928, -0.0002618007129058242, 0.0008849365985952318, 0.004014835227280855, -0.008230412378907204, -0.004694011528044939, 0.004944938700646162, -0.00367357418872416, -0.029254766181111336, -0.002681575482711196, -0.031717199832201004, 0.02483844757080078, 0.0159388966858387, -0.00896646548062563, -0.004202194046229124, -0.005848276428878307, 0.005808128509670496, 0.0026849210262298584, -0.0021194983273744583, 0.0033942086156457663, -0.0031884482596069574, 0.003064657561480999, -0.008477993309497833, 0.0054702130146324635, 0.013396167196333408, 0.007213320583105087, -0.007715174928307533, 0.01067277044057846, -0.026203490793704987, 0.028050314635038376, -0.0083508575335145, -0.019391654059290886, 0.0005210921517573297, 0.029656250029802322, -0.017237026244401932, -0.0022148508578538895, -0.016193168237805367, -0.005968721583485603, -0.006912208162248135, 0.019645927473902702, 0.012686879374086857, 0.01640729419887066, 0.007982830516994, 0.014761210419237614, 0.011783541180193424, -0.007092875428497791, 0.058402471244335175, 0.030512748286128044, -0.011930751614272594, 0.007775397505611181, -0.0020040718372911215, 0.011194698512554169, -0.004921518731862307, 0.0021780480165034533, -0.019619161263108253, 0.0034561040811240673, 0.01115455012768507, 0.028344737365841866, 0.02582877315580845, -0.010779832489788532, -0.02855886146426201, -0.006544181611388922, -0.004834530875086784, -0.0031031330581754446, -0.01717011258006096, -0.013516612350940704, 0.015831833705306053, 0.012057888321578503, 0.005185829009860754, -0.017049666494131088, 0.005520398262888193, -0.010231138207018375, 0.016621418297290802, -0.013998392038047314, -0.03484876826405525, -0.0250124242156744, 0.014025157317519188, 0.01940503716468811, 0.011837072670459747, -0.0025377103593200445, 0.01564447395503521, 0.01265342254191637, -0.007768705952912569, -0.010124076157808304, 0.004804419353604317, 0.012586508877575397, 0.005888424813747406, 0.024209456518292427, -0.037471797317266464, -0.0016611380269750953, -0.018240734934806824, 0.019297974184155464, -0.003981378395110369, 0.0058449311181902885, 0.00474085146561265, 0.0012395803350955248, -0.010612547397613525, -0.01999387890100479, 0.008002905175089836, -0.0058549679815769196, -0.02548082172870636, 0.012874238193035126, 0.013309178873896599, 0.03522348776459694, -0.0013324234168976545, -0.0197529885917902, -0.010579090565443039, -0.015831833705306053, 0.0037371425423771143, -0.00864527840167284, 0.0070393444038927555, -0.005624115001410246, 0.004329330753535032, 0.0029207926709204912, -0.019512100145220757, 0.03589262813329697, 0.004583603702485561, -0.016688331961631775, -0.015189459547400475, 0.00881925504654646, -0.033831678330898285, 0.002930829767137766, 0.022991623729467392, -0.02855886146426201, 0.016688331961631775, 0.012399149127304554, -0.028451798483729362, -0.01472106296569109, -0.03286811709403992, 0.020716549828648567, -0.015470498241484165, -0.006828565616160631, 0.024624323472380638, -0.030539512634277344, 0.02720719948410988, -0.013335944153368473, -0.0007695101085118949, 0.01355006918311119, 0.01652773842215538, -0.011569417081773281, -0.0031784111633896828, 0.022616904228925705, -0.00813004095107317, 0.00214626407250762, 0.001938830828294158, -0.01785263419151306, -0.0002178884606109932, 0.024784917011857033, -0.0017631817609071732, -0.02093067392706871, -0.007059418596327305, -0.020529190078377724, -0.028103847056627274, 0.015965661033988, 0.0037806364707648754, -0.017531447112560272, -0.0015791684854775667, -0.0031282256823033094, 0.007260160520672798, 0.007454210892319679, -0.02196114882826805, 0.006353476550430059, -0.02400871552526951, 0.00734714837744832, 0.007293617352843285, 0.01638052798807621, -0.014520321041345596, -0.0054702130146324635, -0.014078688807785511, -0.012011048384010792, -0.015403584577143192, 0.005433410406112671, 0.0005374024040065706, -0.0029525768477469683, -0.015323287807404995, 0.0018903182353824377, 0.017049666494131088, 0.006139351986348629, -0.033510491251945496, 0.0034460669849067926, 0.012860855087637901, -0.009622221812605858, 0.012807324528694153, 0.0008029670570977032, -0.008524833247065544, 0.0098764942958951, 0.007561272941529751, 0.02248307690024376, -0.013663822785019875, 0.015751536935567856, 0.0042155771516263485, -0.008391005918383598, -0.018628835678100586, -0.021144798025488853, 0.008953082375228405, 0.031743962317705154, 0.008009596727788448, -0.020060792565345764, -0.007842311635613441, 0.02095744013786316, 0.004878025036305189, 0.00021684292005375028, -0.005691029131412506, -0.022523226216435432, -0.005630806554108858, 0.008993230760097504, 0.008993230760097504, -0.009033379144966602, 0.010378348641097546, 0.01077314093708992, 0.014172368682920933, -0.0033373318146914244, 0.0197529885917902, 0.018923256546258926, -0.0001157401711679995, 0.024758150801062584, -0.005222631618380547, -0.0182273518294096, 0.01115455012768507, -0.008518141694366932, -0.017129963263869286, -0.0035598205868154764, -0.01943180337548256, -0.04614384099841118, -0.03302871063351631, -0.004479886963963509, 0.001318204216659069, -0.005513707175850868, -0.01726379059255123, 0.02063625305891037, -0.02204144559800625, -0.029067406430840492, 0.0013458061730489135, -0.03704354539513588, 0.037123844027519226, -0.016782011836767197, 0.018441475927829742, 0.0007389805978164077, -0.002499234862625599, 0.015577560290694237, -0.016072724014520645, 0.006089166738092899, 0.01987343467772007, 0.034714940935373306, 0.011469045653939247, 0.005858313757926226, 0.00696573918685317, -0.0014528684550896287, -0.010050470940768719, 0.013469772413372993, 0.0009418134577572346, 0.004871333483606577, 0.011783541180193424, -0.0242763701826334, -0.023272661492228508, -0.010124076157808304, -0.0002063876308966428, -0.016045957803726196, 0.004262416623532772, 0.005125606432557106, 0.009147132746875286, 0.004242342431098223, 0.00322525086812675, 0.005828202702105045, -0.009983557276427746, -0.015443732962012291, -0.019953731447458267, 0.0064772674813866615, 0.018240734934806824, -0.013851181603968143, -0.003954612649977207, 0.005048655439168215, 0.017009519040584564, 0.010472028516232967, -0.006413699127733707, -0.05042633041739464, -0.0083508575335145, 0.006504033226519823, 0.0040951319970190525, 0.01717011258006096, -0.011783541180193424, -0.005413336213678122, 0.0024540680460631847, 0.010050470940768719, -0.018655601888895035, 0.015283139422535896, 0.001910392427816987, -0.0010003631468862295, -0.004041600972414017, 0.014506937935948372, 0.006808491423726082, 0.006243068724870682, 0.00930772628635168, -0.025373758748173714, 0.011315143667161465, 0.003599968971684575, -0.005587312392890453, 0.02589568682014942, 0.024825064465403557, 0.045019686222076416, 0.012733719311654568, -0.0011760120978578925, 0.027073372155427933, 0.014319579117000103, -0.021158181130886078, 0.02186746895313263, 0.023005004972219467, -0.0024590864777565002, 0.020823612809181213, -0.03155660629272461, -0.02521316520869732, -0.008330782875418663, -0.0227774977684021, 0.006892133969813585, -0.010050470940768719, -0.017518064007163048, 0.02230910025537014, 0.035384081304073334, -0.017076432704925537, -0.012660114094614983, -0.018976787105202675, -0.0033824986312538385, 0.010117384605109692, -0.014600617811083794, 0.009240812622010708, 0.0002963032166007906, 0.04057660326361656, -0.006326711270958185, 0.008431154303252697, -0.010813289321959019, -0.011837072670459747, 0.0025996058247983456, 0.00043954080319963396, -0.049650128930807114, -0.014225899241864681, -0.007628187071532011, -0.020408745855093002, -0.017678657546639442, 0.004339367616921663, -0.0015958970179781318, -0.01530990470200777, 0.031743962317705154, 0.0001157401711679995, 0.013483154587447643, 0.009849729016423225, 0.02324589528143406, 0.011328526772558689, -0.022068211808800697, 0.010063854046165943, -0.060811370611190796, 0.022202039137482643, -0.010371658019721508, 0.005008507054299116, 0.011509194038808346, 0.013697279617190361, -0.0006206266116350889, 0.018883109092712402, -0.004934901837259531, -0.008210337720811367, -0.00836423970758915, -0.03479523956775665, -0.016447441652417183, -0.001058076391927898, 0.008109967224299908, -0.0012713645119220018, -0.008337474428117275, 0.000599716033320874, -0.005597349256277084, -0.0010597491636872292, -0.00603898148983717, -0.0052828541956841946, -0.011422206647694111, 0.0051590632647275925, -0.045314107090234756, -0.010090619325637817, -0.025119485333561897, 0.017076432704925537, -0.016915839165449142, -0.014828125014901161, -7.276888936758041e-05, 0.004543455317616463, -0.018950022757053375, 0.012379075400531292, -0.008692118339240551, 0.0005645861965604126, 0.05219285935163498, -0.020770080387592316, 0.01981990411877632, -0.02560126595199108, 0.015871981158852577, -0.008538216352462769, 0.005644189193844795, -0.008036362007260323, -0.0055304355919361115, -0.018508389592170715, -0.02356708236038685, -0.026631740853190422, 0.02912093885242939, 0.00015829324547667056, 0.01726379059255123, 0.024410197511315346, 0.025373758748173714, 0.0007465084199793637, 0.011248230002820492, -0.005286199506372213, -0.003094768850132823, 0.02976331114768982, -0.022228803485631943, 0.0020609486382454634, -0.00689882505685091, 0.033510491251945496, 0.03126218542456627, 0.009193972684442997, 0.00820364709943533, 0.013001374900341034, -0.02606966346502304, 0.026190107688307762, 0.03158336877822876, -0.03452758118510246, -0.0002095242089126259, -0.019538864493370056, -0.0040951319970190525, -0.013068288564682007, -0.023125451058149338, -0.017384236678481102, -0.0011492465855553746, -0.03155660629272461, -0.009388023056089878, -0.017692040652036667, 0.005443447269499302, -0.0014762884238734841, 0.013958243653178215, -0.014921803958714008, -0.003760562278330326, -0.005306273698806763, -0.0008698809542693198, 0.003569857683032751, 0.034447286278009415, -0.00642039068043232, -0.028291204944252968, 0.021639961749315262, 0.0031633556354790926, -0.0077218664810061455, -0.00493824714794755, -0.021144798025488853, -0.001646082499064505, -0.016139637678861618, -0.03302871063351631, 0.007086184341460466, 0.026645123958587646, 0.011562725529074669, -0.004061675164848566, -0.02263028733432293, -0.017772337421774864, -0.011194698512554169, -0.00397134106606245, -0.022268952801823616, 0.028398267924785614, 0.0024490493815392256, 0.0043560960330069065, -0.007728558033704758, -0.004479886963963509, 0.020475659519433975, -0.0036367715802043676, 0.0022081593051552773, -0.006885442417114973, -0.0036802657414227724, 0.00996348261833191, -0.027809426188468933, -0.00010387340444140136, -0.0016168076545000076, 0.008150115609169006, -0.004255725536495447, 0.00734714837744832, -0.002159646712243557, 0.00015735226043034345, -0.010492103174328804, -0.007240086328238249, 0.017049666494131088, -0.005701065994799137, -0.011274995282292366, -0.010318126529455185, 0.00964229553937912, 0.006554218474775553, -0.0036702286452054977, 0.011121093295514584, -0.0020375289022922516, -0.0011367002734914422, -0.012860855087637901, 0.016514355316758156, -0.001689576543867588, -0.054789118468761444, -0.008685426786541939, 0.008504759520292282, -0.0004458139883354306, -0.0013123492244631052, 0.03913126140832901, 0.006353476550430059, 0.0019890163093805313, 0.014747828245162964, -0.011535960249602795, -0.0159388966858387, -0.016126254573464394, 0.018602069467306137, 0.01256643421947956, -0.022402780130505562, 0.004128588829189539, -0.011763467453420162, 0.00666462630033493, -0.010545633733272552, -0.021332157775759697, -0.007447519339621067, 0.002427302533760667, 0.015149311162531376, -0.0023771170526742935, 0.01011069305241108, 0.03217221423983574, -0.019003553315997124, -0.020703166723251343, 0.02786295674741268, -0.005496978759765625, -0.000166448371601291, 0.024316519498825073, 0.0036969941575080156, -0.005329693667590618, -0.001731397700496018, 0.01382441632449627, 0.0038743161130696535, -0.021760407835245132, -0.006189537700265646, -0.008959773927927017, 0.0189634058624506, 0.004891407676041126, 0.016634801402688026, -0.010699535720050335, 0.01564447395503521, -0.0037505251821130514, -0.012452680617570877, 0.006423736456781626, 0.013489846140146255, -0.0033557331189513206, 0.009735975414514542, -0.005179137457162142, -0.0064070080406963825, -0.02022138610482216, 0.0035297092981636524, -0.0037538709584623575, -0.00796944834291935, -0.007306999992579222, 0.019190913066267967, -0.003402572823688388, -0.010411806404590607, 0.016072724014520645, 0.003957958426326513, -0.0009903260506689548, -0.009106984362006187, -0.028103847056627274, -0.023995332419872284, -0.022657053545117378, -0.011863837949931622, -0.02186746895313263, -0.017651891335844994, 0.008417771197855473, -0.01990020088851452, 0.01378426793962717, -0.00796944834291935, -0.014961952343583107, 0.004423010163009167, 0.014841507188975811, 0.005938610527664423, -0.007327074185013771, 0.029335062950849533, -0.0006833584047853947, 0.011917369440197945, 0.012004357762634754, -0.01717011258006096, -0.00689882505685091, 0.013376092538237572, 0.0020525844302028418, -0.018280882388353348, 0.011535960249602795, -0.009060144424438477, 0.01981990411877632, -0.030726872384548187, -0.002196449553593993, -0.02218865603208542, 0.01808014139533043, 0.016313614323735237, -0.006473921705037355, 0.007507741916924715, 0.015069015324115753, -0.013302487321197987, 0.0012454353272914886, 0.005443447269499302, -0.0016996136400848627, -0.030780402943491936, 0.011335218325257301, -0.0005750415148213506, -0.009227429516613483, 0.012700262479484081, 4.923792857880471e-06, -0.0034561040811240673, 0.04188811406493187, -0.011281686834990978, -0.01793293096125126, -0.009648987092077732, 0.0017447804566472769, 0.004677283111959696, 0.021452603861689568, 0.010298052802681923, -0.03985393047332764, 0.009535233490169048, -0.0006386097520589828, -0.01714334636926651, -0.01635376177728176, -0.009662370197474957, 0.011047488078474998, -0.0032453250605612993, 0.005707757547497749, -0.0007297799456864595, 0.004553492181003094, 0.012967918068170547, -0.0055906581692397594, 0.00995010044425726, -0.010813289321959019, -0.01284078136086464, -0.0016134618781507015, 0.02471800148487091, 0.01564447395503521, -0.006316673941910267, 0.010927042923867702, -0.001012909458950162, 0.00788246002048254, 0.020355215296149254, 0.023874886333942413, -0.007654952351003885, 0.017946314066648483, 0.0013566797133535147, 0.011040796525776386, 0.008049744181334972, -0.012814016081392765, 0.005543818231672049, -0.02119833044707775, -0.026912778615951538, 0.0002657737350091338, -0.023848121985793114, 0.026176726445555687, -0.032975178211927414, 0.0013173677725717425, 0.021599814295768738, 0.006704774685204029, 0.00443973857909441, -0.02818414382636547, 0.0009577054879628122, 6.477058195741847e-05, 0.0014436678029596806, 0.013837798498570919, -0.004677283111959696, -0.0022600176744163036, -0.0028438416775316, -0.002845514565706253, 0.018334414809942245, 0.008083201944828033, 0.012352310121059418, 0.0018535156268626451, -0.003934538457542658, -0.006651243660598993, -0.0057111033238470554, -0.0014553777873516083, -0.011014031246304512, -0.005751251243054867, -0.004372824914753437, -0.016688331961631775, 0.011663096025586128, -0.036829423159360886, 0.00162935396656394, -0.004212231375277042, -0.013811033219099045, 0.01650097221136093, -0.017986461520195007, 0.008504759520292282, -0.007634878158569336, -0.01166978757828474, -0.006380242295563221, -0.015229607932269573, 0.011395440436899662, -0.017718806862831116, 0.007447519339621067, 0.00022311610518954694, -0.01280063297599554, -0.020395362749695778, -0.024062246084213257, 0.011515885591506958, 0.025253314524888992, 0.011629639193415642, -0.020984206348657608, -0.0010053816949948668, -0.00027079228311777115, -0.011970899999141693, -0.002249980578199029, 0.005068729631602764, -0.005627460777759552, -0.023553699254989624, -0.011121093295514584, 0.0022098321933299303, -0.0025745132006704807, -0.00839769747108221, -0.000518582877703011, -0.00580478273332119, 0.015042249113321304, -0.007414062507450581, 0.0033072205260396004, 0.00538657046854496, -0.0009535233839415014, 0.02228233590722084, -0.0014997082762420177, 0.01379765011370182, -0.015898747369647026, -0.005118914879858494, -0.005617423448711634, -0.027702363207936287, 0.006219648756086826, -0.004068366251885891, 0.004493269603699446, 0.018428092822432518, -0.010083927772939205, 0.015189459547400475, 0.015564178116619587, -0.021318774670362473, 0.004834530875086784, 0.008678735233843327, 0.018923256546258926, 0.000592188211157918, -0.003820784855633974, 0.02245631255209446, -0.01114116795361042, -0.013730736449360847, 0.017036283388733864, -0.0053999535739421844, 0.002619680017232895, 0.003630080260336399, -0.007594729773700237, -0.017009519040584564, -0.018481625244021416, 0.002445703838020563, -2.6752499252324924e-05, -0.0008318236796185374, -0.002338641555979848, -0.011917369440197945, 0.0029258111026138067, 0.04028217867016792, 0.021385688334703445, -0.004038255196064711, 0.010164224542677402, 0.009341183118522167, -0.02331281080842018, -0.006430427543818951, -0.0083508575335145, 0.010746375657618046, -0.00901330541819334, 0.007206629030406475, 0.018066758289933205, -0.0287997517734766, 0.029897140339016914, 0.0167284794151783, -0.01884295977652073, -0.014654148370027542, -0.006507379002869129, 0.002989379456266761, 0.02289794385433197, 0.017665274441242218, -0.0037505251821130514, 0.006992504931986332, -0.01260658260434866, 0.0033808257430791855, -0.00014417858619708568, 0.009428171440958977, 0.02090390957891941, 0.017518064007163048, -0.009843037463724613, -0.016567885875701904, -0.013309178873896599, 0.014921803958714008, 0.0021529553923755884, -0.01441325806081295, 0.003978032618761063, 0.026029516011476517, -0.004958321340382099, 0.006022253073751926, -0.0024657780304551125, -0.009615530259907246, -0.008531524799764156, -5.3374307753983885e-05, 0.00023754441644996405, -0.0009393041837029159, 0.006052364129573107, -0.026765568181872368, 0.006246414501219988, -0.02166672796010971, -0.018039992079138756, -0.005778016988188028, 0.006259797140955925, 0.026029516011476517, 0.010826672427356243, 0.0011308452812954783, 0.03886360675096512, -0.0014495227951556444, -0.014319579117000103, -0.004419664386659861, -0.0189634058624506, -0.02095744013786316, -0.009970174171030521, 0.0036769199650734663, 0.02759530022740364, -0.020984206348657608, 0.01579168438911438, -0.004898098763078451, 0.01241922378540039, 0.012767176143825054, 0.012626657262444496, 0.0031733927316963673, 0.00813004095107317, 0.01679539494216442, 0.0204890426248312, 0.03361755236983299, -0.015176077373325825, 0.016126254573464394, 0.0055337813682854176, -0.010485411621630192, -0.012258630245923996, -0.004238996654748917, 0.009401406161487103, 0.008959773927927017, -0.016367144882678986, -0.013422932475805283, 0.0030579662416130304, -0.008725575171411037, -0.01635376177728176, -0.0028354774694889784, -0.0049181729555130005, -0.007681718096137047, 0.027782659977674484, 0.011408823542296886, 0.010819980874657631, 0.0013073306763544679, 0.0159388966858387, 0.003787327790632844, 0.009093602187931538, 0.0070393444038927555, -0.016340378671884537, -0.01473444513976574, -0.005861659534275532, 0.009193972684442997, -0.009428171440958977, -0.0029525768477469683, 0.01638052798807621, -0.015510646626353264, 0.019485333934426308, -0.0043560960330069065, -0.014078688807785511, -0.002634735545143485, -0.00858505629003048, -0.007253468967974186, 0.005249396897852421, -0.022790880873799324, -0.012131493538618088, 0.005788054317235947, -0.021639961749315262, -0.014306196011602879, -0.018950022757053375, -0.015537411905825138, 0.006313328631222248, -0.009655678644776344, -0.009214046411216259, 0.0052795084193348885, 0.002974323695525527, 0.01852177269756794, 0.0052895452827215195, -0.01684892550110817, -0.011174624785780907, 0.01640729419887066, -0.009996939450502396, 0.00743413669988513, 0.001621826202608645, -0.010371658019721508, -0.003512980882078409, -0.020770080387592316, 0.005714448634535074, 0.011810307390987873, -0.01852177269756794, -0.0025092719588428736, -0.008872785605490208, -0.015055632218718529, -0.004152008797973394, 0.004279145039618015, 0.021131416782736778, 0.012292087078094482, -0.004218922462314367, 0.019793137907981873, 0.008665353059768677, -0.004831185098737478, -0.01576492004096508, 0.006999196019023657, 0.00764826126396656, 0.015537411905825138, -0.023727675899863243, 0.014707679860293865, 0.017651891335844994, -0.003934538457542658, 0.0038977358490228653, 0.008872785605490208, 0.015242991037666798, 0.01773218810558319, -0.0067783803679049015, -0.011629639193415642, 0.008685426786541939, 0.014440024271607399, -0.0047776540741324425, 0.02031506597995758, 0.0010028723627328873, -0.0027886375319212675, 0.008170189335942268, 0.03388521075248718, 0.024262987077236176, 0.011348600499331951, 0.03249340131878853, -0.008899551816284657, -0.011348600499331951, 0.001340787741355598, -0.0026615012902766466, -0.014440024271607399, 0.0018234043382108212, 0.026136577129364014, -0.009970174171030521, 0.0013416240690276027, -0.0045267269015312195, -0.01039173174649477, -0.009080219082534313, -0.01165640540421009, 0.004081749357283115, 0.008979848586022854, 0.029522420838475227, -0.004336021840572357, 0.02732764557003975, -0.0034995980095118284, -0.018535155802965164, -0.016982752829790115, 0.02415592595934868, -0.0006202083895914257, 0.013904713094234467, -0.019619161263108253, -0.016982752829790115, -0.008564981631934643, -0.010599165223538876, 0.028023550286889076, -0.038943901658058167, -0.0033390047028660774, 0.0008866094285622239, -0.006594366859644651, -0.008210337720811367, -0.01397162675857544, 0.033858444541692734, 0.004041600972414017, 0.0008974829688668251, -0.0006887951749376953, 0.01260658260434866, -0.019016936421394348, 0.0020609486382454634, 0.02422283962368965, 0.0038007106631994247, -0.011201390065252781, 0.006350131239742041, -0.009722592309117317, 0.01611287146806717, 0.018039992079138756, -0.005761288572102785, -0.023138834163546562, 0.003683611284941435, 0.007313691545277834, 0.009742666967213154, 0.044805560261011124, -0.018387945368885994, 0.012238556519150734, 0.01893663965165615, 0.0017882745014503598, -0.023941799998283386, 0.008464611135423183, -0.002778600435703993, -0.011796924285590649, 0.008618513122200966, -0.009060144424438477, 0.0016669930191710591, 0.005353113636374474, 0.02823767438530922, -0.0094817029312253, 0.0006427918560802937, 0.015524029731750488, -0.015952277928590775, 0.0028304588049650192, -0.0002129744680132717, 0.009796197526156902, -0.0030479291453957558, 0.010431880131363869, 0.02970978058874607, 0.026323936879634857, 5.614495967165567e-05, 0.008919625543057919, -0.009321109391748905, -0.022790880873799324, 0.020863760262727737, -0.01053894218057394, 0.004091786220669746, 0.014132220298051834, -0.0047776540741324425, 0.016621418297290802, 0.008718883618712425, 0.008310709148645401, -0.023178981617093086, 0.0024222838692367077, -0.0009610512061044574, 0.014895038679242134, -0.0030847317539155483, -0.00036907210596837103, -0.0064505017362535, 0.02036859653890133, -0.004944938700646162, 0.0012479446595534682, 0.010358274914324284, -0.0011358638294041157, -0.0015565850771963596, -0.0033590788953006268, 0.006326711270958185, -0.0044163186103105545, -0.003593277418985963, 0.028880048543214798, -0.0057847085408866405, 0.008270560763776302, 0.018856342881917953, -0.011188007891178131, -0.021358923986554146, -0.013095053844153881, -0.009321109391748905, 0.013998392038047314, -0.019244443625211716, 0.020087558776140213, -0.003061311785131693, -0.015805067494511604, -0.009849729016423225, 0.009669061750173569, 0.006611095275729895, 0.02218865603208542, -0.026056280359625816, 0.006825219839811325, -0.007875768467783928, 0.00474085146561265, 0.025239931419491768, -0.008210337720811367, -0.008839328773319721, 0.0063467854633927345, -0.010960499756038189, -0.010619238950312138, -0.0044765411876142025, 0.01960577815771103, -0.0024339938536286354, -0.0055304355919361115, 0.005008507054299116, 0.004694011528044939, -0.010605856776237488, -0.027488239109516144, 0.0019572321325540543, 0.007695100735872984, 0.0008707173983566463, 0.007982830516994, -0.018160438165068626, -0.003004434984177351, 0.013295795768499374, 0.002024146029725671, -0.005741214379668236, -0.01923106051981449, -0.012064579874277115, -0.0020492388866841793, 0.007554581854492426, -0.015028866939246655, -0.008692118339240551, 0.01009731087833643, -0.028987109661102295, 0.03281458839774132, -0.02014108933508396, -0.016126254573464394, 0.007106258533895016, 0.01472106296569109, -0.0007097057532519102, -0.001220342586748302, -0.0079426821321249, -0.014948570169508457, -0.023326192051172256, -0.006570946890860796, -0.0008648624061606824, 0.00018014482338912785, 0.014961952343583107, 0.006289908662438393, -0.013717353343963623, -0.006524107418954372, -0.008310709148645401, 0.0002572003868408501, 0.007126332726329565, 0.003543092170730233, 0.00174645334482193, 0.034714940935373306, -0.0008004577830433846, 0.0037572167348116636, -0.0014486863510683179, 0.02068978361785412, 0.004379516001790762, 0.020475659519433975, -0.006028944160789251, -0.019565630704164505, -0.0011291723931208253, -0.005704411771148443, -0.007507741916924715, -0.005369842052459717, -0.007066110149025917, -0.0018401328707113862, 0.01775895431637764, 0.0189634058624506, -0.00990995205938816, -0.004479886963963509, 0.005500324070453644, -0.022094976156949997, -0.02407562918961048, 0.017277173697948456, 0.0023754441644996405, -0.012553051114082336, 0.008899551816284657, -0.010458645410835743, -0.024490494281053543, 0.003109824378043413, -0.005995487328618765, 0.011221464723348618, -0.0006766670267097652, 0.010498793795704842, -0.018039992079138756, 0.016166403889656067, 0.026457764208316803, 0.0007958574569784105, 0.012967918068170547, -0.0036468086764216423, 0.009006613865494728, -0.011937443166971207, -0.011361983604729176, -0.020622869953513145, 0.0023453328758478165, 0.018535155802965164, -0.029227999970316887, 0.03907772898674011, -0.00019760517170652747, -0.014707679860293865, -0.0317707285284996, -0.01908385008573532, 0.001154265133664012, -0.010498793795704842, -0.00642039068043232, 0.02633731998503208, -0.0029408668633550406, 0.008999922312796116, 0.014359727501869202, 0.006152735091745853, 0.021934382617473602, -0.03337666392326355, 0.004325984977185726, 0.0013591890456154943, 0.007654952351003885, -0.011970899999141693, -0.02521316520869732, -0.007019270211458206, -0.03343019634485245, -0.008685426786541939, 0.0167284794151783, -0.0159388966858387, -0.011950826272368431, -1.475504268455552e-05, 0.019485333934426308, -0.004951630253344774, -0.019860051572322845, -0.0037705993745476007, -0.015831833705306053, -0.02582877315580845, 0.009943408891558647, -0.026029516011476517, -0.030459215864539146, 0.008825945667922497, 0.01090696919709444, -0.016166403889656067, -0.008678735233843327, -0.014025157317519188, 0.006336748134344816, -0.005249396897852421, 0.007454210892319679, 0.0067181577906012535, 0.00116346578579396, 0.008451228030025959, -0.018307648599147797, 0.019070466980338097, 0.002500907750800252, 0.004366133362054825, -0.022523226216435432, 0.016246700659394264, 0.005680991802364588, -0.011596182361245155, 0.009970174171030521, 0.004801073577255011, -0.023741059005260468, 0.014132220298051834, 0.007253468967974186, 0.004332676529884338, 0.012733719311654568, 0.018187204375863075, -0.00630329130217433, -0.011703244410455227, -0.00043744975118897855, 0.017223643139004707, -0.001043020747601986, -0.012265321798622608, 0.030833935365080833, -0.004449775908142328, 0.008979848586022854, 0.003981378395110369, 0.0006319183157756925, -0.0023185673635452986, 0.019324740394949913, -0.020448893308639526, -0.02700645849108696, 0.007360531482845545, 0.013188733719289303, 0.021305391564965248, 0.007066110149025917, -0.030218327417969704, -0.037471797317266464, -0.01062593050301075, 0.001955559244379401, 0.01884295977652073, -0.010063854046165943, -0.01923106051981449, 0.004131934605538845, -0.011107711121439934, 0.025226548314094543, 0.0020208004862070084, 0.003315584734082222, 0.01266680471599102, 0.009401406161487103, -0.007989522069692612, 0.0037505251821130514, 0.0005248560919426382, 0.006343439687043428, 0.02363399602472782, 0.005774671211838722, 0.029629483819007874, 0.01925782673060894, 0.013382784090936184, 0.014212517067790031, 0.002972650807350874, -0.0007398170419037342, 0.014988718554377556, -0.019244443625211716, -0.019779754802584648, 0.025092720985412598, 0.009615530259907246, -0.01758497767150402, -0.014707679860293865, 0.015684623271226883, -0.0017514718929305673, -0.005865005310624838, -0.012593199498951435, -0.0016661565750837326, -0.008036362007260323, 0.018267501145601273, 0.004168737214058638, 6.419554119929671e-05, -0.038703013211488724, -0.014373109675943851, -0.013088363222777843, 0.003036219161003828, 0.013670514337718487, 0.00839769747108221, -0.009106984362006187, 0.017718806862831116, 0.009608838707208633, 0.0014838161878287792, -0.01632699742913246, -0.0054802498780190945, 0.011101019568741322, 0.0017431076848879457, 0.0113753667101264, 0.004392899107187986, -0.003820784855633974, 0.010124076157808304, 0.02058272249996662, 0.004600332118570805, -0.0018903182353824377, 0.001865225494839251, -0.013683896511793137, 0.00954192504286766, -0.004135280381888151, 0.01775895431637764, -0.007594729773700237, -0.013891329988837242, 0.01332925260066986, 0.011040796525776386, -0.006688046269118786, 0.00183678709436208, 0.010552325285971165, 0.00964229553937912, 0.011087636463344097, -0.003660191548988223, 0.008150115609169006, 0.025494202971458435, -0.015189459547400475, -0.0009393041837029159, 0.002873952966183424, -0.027461472898721695, -0.019619161263108253, 0.005483595654368401, 0.0009551962139084935, -0.011709935963153839, 0.007949373684823513, -0.002249980578199029, -0.011890603229403496, 0.010940426029264927, 0.0020793501753360033, 0.01488165557384491, -0.0037070312537252903, -0.010512176901102066, 0.030164794996380806, -0.010030396282672882, 0.01425266545265913, 0.0018468241905793548, 0.012057888321578503, -0.010786524042487144, -0.004513343796133995, 0.002868934301659465, -0.005523744039237499, 0.006306637078523636, -0.0059151905588805676, -0.006343439687043428, -0.009294343180954456, -0.020676402375102043, -0.00021642471256200224, 0.0038442048244178295, -0.012405840680003166, 0.016768628731369972, 0.017491299659013748, -0.005691029131412506, -0.02439681626856327, 0.008170189335942268, 0.025561118498444557, -0.01861545257270336, 0.011663096025586128, 0.019190913066267967, 0.02412915974855423, -0.009019996039569378, 0.02794325351715088, -0.03434022516012192, -0.013744119554758072, -0.006182846147567034, 0.01001032255589962, -0.01684892550110817, 0.007628187071532011, -0.012198408134281635, 0.00044121366227045655, 0.023888269439339638, 0.01846824213862419, -0.0052293227054178715, -0.004018181003630161, 0.0037237596698105335, -0.02941535972058773, -0.0013399512972682714, -0.013877946883440018, -0.005824856925755739, 0.008477993309497833, 0.018254118040204048, -0.012573125772178173, -0.012124801985919476, -0.00033122391323558986, 0.00887947715818882, 0.008692118339240551, 0.014158985577523708, 0.00394123001024127, -0.03460787981748581, 0.019030319526791573, -0.007802163250744343, 0.004744196776300669, 0.018722515553236008, 0.008832637220621109, 0.010492103174328804, 0.0008623531321063638, 0.007614803966134787, 0.013282413594424725, 0.008196955546736717, -0.0013533340534195304, 0.0026531368494033813, 0.0007005051011219621, -0.007092875428497791, -0.03757885843515396, -0.02031506597995758, -0.007273543160408735, -0.00670142937451601, -0.012258630245923996, -0.005179137457162142, -0.007072801236063242, 0.002634735545143485, -0.0003699085209518671, -0.006945664994418621, 0.01667494885623455, -0.006413699127733707, -0.008578364737331867, -0.011101019568741322, 0.004162045661360025, 0.010231138207018375, 0.014426641166210175, 0.014520321041345596, -0.009735975414514542, -0.002547747455537319, -0.0025962600484490395, -0.002164665376767516, -0.009956791065633297, -0.01166978757828474, 0.007146406918764114, -0.011355292052030563, -0.0006950683309696615, -0.004048292059451342, -0.008906242437660694, -0.025708328932523727, -0.018387945368885994, -0.017076432704925537, -0.003931192681193352, 0.0006954865530133247, 0.011529268696904182, -0.026484530419111252, -0.0024540680460631847, -0.004637134727090597, -0.02912093885242939, -0.007179863750934601, -0.024503877386450768, -0.0033891901839524508, -0.008002905175089836, 0.020555956289172173, 0.005640843417495489, -5.896789298276417e-05, 0.002485852222889662, -0.011830381117761135, -0.008538216352462769, -0.0030847317539155483, -0.00027079228311777115, -0.024878595024347305, -0.01729055680334568, -0.005272816866636276, -0.0007030143751762807, -0.002485852222889662, 0.0016996136400848627, -0.007527816109359264, -0.015457116067409515, -0.014600617811083794, 0.011415515094995499, 0.011883912608027458, 0.0020174547098577023, -0.0003768090100493282, 0.0019773063249886036, 0.014078688807785511, 0.00764826126396656, 0.017049666494131088, 0.044430844485759735, 0.01564447395503521, -0.02043551206588745, -0.011402131989598274, -0.019244443625211716, 0.0017564904410392046, -0.020529190078377724, -0.002845514565706253, 0.017866017296910286, -0.003847550367936492, 0.02319236472249031, 0.00191206531599164, 0.0010137459030374885, 0.012854164466261864, -0.0025075990706682205, 0.0015741499373689294, -0.011261613108217716, -0.008210337720811367, 0.005192520096898079, -0.015684623271226883, -0.013509920798242092, -0.02818414382636547, 0.0008238776354119182, 0.015028866939246655, -0.009287652559578419, -0.0020208004862070084, 0.006865368224680424, -0.014359727501869202, -0.030432451516389847, 0.001303148572333157, 0.02592245303094387, -4.0409733628621325e-05, 0.00012399985280353576, -0.008123350329697132, -0.0009953445987775922, 0.004459812771528959, 0.012084653601050377, -0.009843037463724613, -0.021452603861689568, -0.0030429104808717966, -0.008377622812986374, -0.0033105663023889065, 0.020676402375102043, 0.022228803485631943, -0.008103275671601295, 0.019177529960870743, -0.004804419353604317, 0.013877946883440018, 0.002885662717744708, -0.006534144282341003, -0.01655450463294983, -0.015617708675563335, 0.006771688815206289, -0.016808776184916496, -0.010277978144586086, -0.010532251559197903, 0.009220737963914871, 0.0007276888936758041, 0.0039646499790251255, -0.011977591551840305, -0.022523226216435432, -0.02127862721681595, 0.0034862153697758913, 0.004677283111959696, 0.01379765011370182, 0.01849500834941864, 0.008986539207398891, 0.00968913547694683, 0.015858599916100502, 0.020114324986934662, -0.011696552857756615, -0.004336021840572357, 0.0121381850913167, -0.00854490790516138, 0.02469123713672161, -0.0005001815734431148, -0.0029408668633550406, -0.016608035191893578, -0.004914827644824982, 0.011750084348022938, 0.005507015623152256, 0.010150841437280178, -0.001037165755406022, -0.003717068349942565, 0.0003586167877074331, 0.03238633647561073, 0.012265321798622608, 0.007822236977517605, 0.005567238200455904, 0.00538657046854496, -0.005179137457162142, -0.0015800049295648932, -0.014051923528313637, -0.0018618798349052668, 0.008979848586022854, 0.011569417081773281, 0.005085458047688007, 0.004864641930907965, -0.006647897884249687, 0.005908499006181955, -0.0159388966858387, 0.0034293383359909058, 0.006363513879477978, -0.0025979329366236925, -0.024048862978816032, 0.008431154303252697, 0.007186554837971926, -0.009006613865494728, 0.005112223327159882, -0.005875042174011469, -0.017451150342822075, -0.007414062507450581, 0.014279430732131004, 0.0026129886973649263, -0.005553855560719967, -0.003961304202675819, 0.009588764980435371, -4.87739744130522e-05, -0.00971590168774128, 0.034474052488803864, 0.021613195538520813, -0.009976865723729134, 0.002206486416980624, -0.008484684862196445, -0.004342713393270969, 0.0018602069467306137, 0.002698303898796439, 0.0019020282197743654, -0.0042256140150129795, -0.010251212865114212, 0.011261613108217716, -0.003877661656588316, 0.020208004862070084, 0.0011534286895766854, 0.007447519339621067, -0.00901330541819334, 0.004305910784751177, 0.0022131779696792364, -0.0318242609500885, -0.0143998758867383, -0.0151626942679286, 0.01297460962086916, -0.0012546359794214368, 0.00408844044432044, 0.029361829161643982, -0.001983997644856572, -0.0065475269220769405, -0.010311434976756573, 0.013068288564682007, 0.007487667724490166, -0.010793215595185757, -0.00580478273332119, 0.00545348459854722, 0.007728558033704758, 0.040523070842027664, -0.011047488078474998, 0.00606909254565835, 0.006427082233130932, -0.01360359974205494, -0.011074254289269447, 0.013195425271987915, -0.007681718096137047, -0.017919547855854034, 0.006330057047307491, 0.00832409132272005, 0.013985009863972664, 0.0060423268005251884, -0.0028605700936168432, 0.014212517067790031, -0.0019170838641002774, -0.004178774543106556, 0.0121381850913167, 0.0043560960330069065, 0.007226703222841024, -0.014426641166210175, -0.002991052344441414, -0.007119641173630953, -0.005068729631602764, -0.013757501728832722, 0.00920066423714161, 0.011950826272368431, 0.02075669728219509, 0.001325732097029686, 0.01147573720663786, -0.01937827095389366, 0.009033379144966602, 0.007802163250744343, 0.010920352302491665, -0.00573786860331893, 0.019512100145220757, 0.004841221962124109, 0.026631740853190422, 0.000151079089846462, 0.012626657262444496, 0.029575953260064125, -0.027541769668459892, -0.007260160520672798, -0.012713644653558731, 0.012633347883820534, -0.004499961156398058, 0.010726301930844784, 0.022469693794846535, -0.0007548726862296462, -0.016661565750837326, -0.007494359277188778, -0.028264440596103668, 0.004222268238663673, -0.011924060992896557, -0.008959773927927017, -0.02762206643819809, -0.009809580631554127, -0.007701792288571596, -0.01817382127046585, -0.0020090905018150806, 0.005142334848642349, 0.00545348459854722, 0.02295147441327572, -0.02656482718884945, -0.016032574698328972, -0.013228882104158401, -0.0010112365707755089, 0.0053497678600251675, -0.027086755260825157, -0.014038540422916412, 0.0041051688604056835, -0.003154991427436471, -0.0037705993745476007, 0.003613351611420512, 0.021158181130886078, 0.012914386577904224, -0.022991623729467392, -0.015524029731750488, -0.004961667116731405, -0.004924864508211613, -0.006249760277569294, 0.012238556519150734, 0.00349290668964386, -0.0004918173071928322, -0.018013227730989456, -0.01667494885623455, -0.007393988315016031, 0.021265244111418724, -0.008712192066013813, -0.005607386585325003, 0.021894235163927078, 0.009046762250363827, 0.006611095275729895, 0.03209191560745239, 0.007802163250744343, -0.011268304660916328, 0.01726379059255123, -0.011060871183872223, -0.004981741309165955, -0.009287652559578419, -0.014051923528313637, 0.024704620242118835, -0.003804056439548731, 0.006326711270958185, -0.011649713851511478, 0.01638052798807621, -0.002370425732806325, -0.009173898957669735, -0.02248307690024376, 0.005667609162628651, 0.016032574698328972, -0.009655678644776344, -0.0021094612311571836, -0.010311434976756573, -0.006892133969813585, -0.0034142828080803156, -0.011469045653939247, -0.02437005005776882, -0.0013039850164204836, -0.027140285819768906, 0.00382413063198328, -0.02307192049920559, 0.02336634136736393, -0.011415515094995499, -0.006125969346612692, -0.017973078414797783, 0.02944212593138218, -0.007454210892319679, -0.030807169154286385, -0.019485333934426308, 0.01643405854701996, 0.0035865860991179943, -0.015109163708984852, -0.014895038679242134, 0.0018484970787540078, 0.006691392045468092, 0.016902456060051918, -0.00023775352747179568, 0.01846824213862419, 0.00470404839143157, 0.00314160855486989, -0.011355292052030563, -0.007313691545277834, -0.006550872698426247, 0.00713302381336689, -0.012345618568360806, 0.005640843417495489, -0.02506595477461815, 0.013556760735809803, -0.01047872006893158, 0.00219477666541934, 0.0013792632380500436, 0.01999387890100479, 0.002218196401372552, 0.0005859149969182909, -0.005771325435489416, 0.0038442048244178295, -0.001644409610889852, 0.03923832252621651, 0.012338927015662193, -0.009983557276427746, -0.01014415081590414, 0.0012328890152275562, -0.01564447395503521, -0.00016205715655814856, 0.021747024729847908, -0.020716549828648567, 0.0006030616932548583, -0.011542650870978832, -0.011188007891178131, 0.015684623271226883, 0.02818414382636547, -0.027755893766880035, 0.011924060992896557, -0.0013366055209189653, -0.018454859033226967, -0.006320019718259573, 0.005677646026015282, -0.0005123097216710448, -0.00091839354718104, -0.005483595654368401, 0.011663096025586128, 0.013683896511793137, 0.0026012787129729986, 0.003094768850132823, 0.010130767710506916, 0.0059854499995708466, 0.004249033983796835, 0.01923106051981449, -0.00901330541819334, -0.034420520067214966, 0.004168737214058638, 0.0025694945361465216, 0.028585627675056458, 0.007527816109359264, 0.01628684811294079, 0.008812563493847847, 0.00896646548062563, 0.00613600667566061, 0.009889877401292324, -0.0013039850164204836, 0.013536686077713966, -0.02821090817451477, -0.02022138610482216, 0.023473402485251427, 0.029897140339016914, -0.00996348261833191, 0.00902668759226799, 0.010652695782482624, -0.016019193455576897, -0.02976331114768982, -0.015069015324115753, -0.006008869968354702, 0.0024607593659311533, 0.018602069467306137, 0.00789584219455719, -0.00962891336530447, -0.014373109675943851, -0.0028756256215274334, -0.001555748633109033, 0.007266851607710123, 0.01790616475045681, -0.010204372927546501, 0.0043560960330069065, -0.0066579352132976055, -0.0011868856381624937, -0.00039040090632624924, 0.0037705993745476007, -0.000547021278180182, -0.01605934090912342, -0.010766449384391308, -0.007628187071532011, -0.031931322067976, 0.011348600499331951, -0.01717011258006096, -0.014199133962392807, -0.01009731087833643, -0.0006565928342752159, 0.00036196247674524784, -0.01015753298997879, 0.0016552831511944532, -0.006085820961743593, -0.01911061629652977, 0.00037722723209299147, -0.02213512547314167, 0.00640031648799777, 0.004533417988568544, 0.028665924444794655, -0.010806597769260406, -0.006507379002869129, -0.011582799255847931, 0.004663900472223759, 0.010083927772939205, 0.005249396897852421, 0.0065374900586903095, 0.00035903500975109637, 0.00990995205938816, 0.013362710364162922, -0.006744923070073128, 0.010806597769260406, 0.012706953100860119, -0.0002028328162850812, -0.008076510392129421, -0.01318204216659069, -0.02016785554587841, -0.015283139422535896, 0.00042302143992856145, 0.013837798498570919, -0.015109163708984852, 0.014359727501869202, -0.009441554546356201, 0.014158985577523708, 0.0049081360921263695, 0.018735898658633232, 0.013322561979293823, 0.0094817029312253, 0.007139715366065502, -0.0035631663631647825, -0.0067884172312915325, -0.008036362007260323, 0.00526947109028697, 0.001118298852816224, 0.0046572089195251465, -0.0016101162182167172, 0.0033942086156457663, -0.004861296154558659, 0.0005077093956060708, -9.514323028270155e-05, 0.002162992488592863, 0.0022265606094151735, -0.02392841875553131, 0.0076014213263988495, -0.0009945081546902657, 0.011703244410455227, 0.016460824757814407, -0.0018167129019275308, 0.012834089808166027, -0.014921803958714008, -0.012559742666780949, 0.010967191308736801, 0.011295069940388203, 0.016929222270846367, 0.02260352298617363, 0.002335295779630542, -0.011067562736570835, 0.016688331961631775, -0.014466789551079273, 0.02422283962368965, -0.012057888321578503, -0.006005524192005396, 0.0026598284021019936, -0.001531492336653173, 0.004834530875086784, 0.018762663006782532, -0.023406488820910454, 0.014908421784639359, -0.006383588071912527, -0.001058076391927898, 0.006323365494608879, 0.0031466272193938494, 0.021506134420633316, 0.008933008648455143, 0.019445184618234634, -0.004901444539427757, -0.014975335448980331, 0.013289104215800762, -0.03466141223907471, 0.014988718554377556, -0.0035464377142488956, -0.009214046411216259, -0.01734408736228943, -0.003138262778520584, 0.009321109391748905, 0.015028866939246655, -0.0010739684803411365, 0.009608838707208633, -0.01162294764071703, 0.002962613943964243, 0.0008983193547464907, -2.2923244614503346e-05, 0.0048378766514360905, -0.007427445147186518, -0.001851842738687992, 0.014667531475424767, -0.011883912608027458, 0.0011576107935979962, -0.004911481868475676, -0.01945856772363186, -0.015269756317138672, 0.03367108479142189, 0.00046254246262833476, -0.012118111364543438, -0.0220146793872118, 0.010083927772939205, -0.002025818917900324, -0.015925513580441475, -0.031422775238752365, 0.004349404945969582, 0.005992141552269459, 0.006825219839811325, -0.024196073412895203, -0.009843037463724613], "89fbf4b9-69e8-4842-9a4f-b22c18d93601": [-0.032857123762369156, -0.004832371603697538, -0.004325085319578648, 0.0109573844820261, -0.04169517755508423, -0.04310806468129158, 0.003083173418417573, 0.018337460234761238, -0.031774912029504776, 0.028122449293732643, 0.015977639704942703, 0.02516140043735504, 0.019660163670778275, 0.00638805003836751, 0.0006383353029377759, -0.0013414904242381454, -0.013399873860180378, 0.02223041281104088, 0.018893597647547722, -0.01820218376815319, 0.07641610503196716, -0.04903016239404678, -0.03318779915571213, -0.0016242555575445294, -0.026153428480029106, -0.013828248716890812, 0.0022301808930933475, 0.012505547143518925, -0.05651545152068138, -0.0027675286401063204, 0.022546058520674706, -0.011889288201928139, -0.004573092330247164, 0.024409865960478783, -0.01668408326804638, -0.014497115276753902, -0.0009525709319859743, 0.015308773145079613, 0.015992671251296997, -0.011881772428750992, -0.010130695067346096, 0.00899587757885456, -0.005854459945112467, 0.0028501974884420633, -0.03808780759572983, 0.012317663058638573, -0.00183844321873039, -0.002136239083483815, 0.02238072082400322, 0.012836222536861897, 0.010822108015418053, 0.030843008309602737, -0.006579691544175148, 0.00428750878199935, 0.004757218062877655, -0.021884707733988762, 0.028843924403190613, 0.05669582262635231, -0.005350931081920862, -0.04674549400806427, -0.013865825720131397, -0.014624876901507378, 0.006692421622574329, -0.024890847504138947, 0.006989277899265289, 0.0014532813802361488, -0.0006993975257501006, -0.008830539882183075, -0.0461442656815052, -0.013159383088350296, -0.03339822590351105, 0.01751077175140381, -0.0626479834318161, 0.027085332199931145, -0.0005486207664944232, -0.015842363238334656, 0.0039192563854157925, 0.0030756581109017134, 0.03439025580883026, -0.03339822590351105, -0.029926134273409843, -0.03213564679026604, 0.004828614182770252, -0.006760059855878353, 0.04163505509495735, 0.0019088996341452003, 0.024635326117277145, -0.037426456809043884, -0.005786821711808443, -0.02072734199464321, -0.002156906295567751, 0.024274589493870735, -0.0017294705612584949, 0.006418111268430948, 0.025927966460585594, 0.002938502933830023, -0.045933835208415985, -0.0030080198775976896, 0.011295575648546219, -0.003359362715855241, 0.007936212234199047, 0.0037727071903645992, -0.019119057804346085, -0.0043589044362306595, 0.0031695999205112457, 0.004129686392843723, 0.003064385149627924, 0.0034890025854110718, -0.01964513212442398, 0.041394561529159546, 0.050623416900634766, -0.0412442572414875, 0.02349299192428589, 0.00798130501061678, -0.03913995623588562, -0.032706815749406815, 0.005809367634356022, 0.004092109389603138, 0.01246797014027834, -0.024485019966959953, -0.0033311801962554455, -0.017029790207743645, 0.046625249087810516, -0.007165888790041208, 0.00996535737067461, -0.008732839487493038, 0.006117497105151415, 0.04713629186153412, 0.02652919478714466, 0.024485019966959953, 0.015511687844991684, -0.03529209643602371, 0.02702520787715912, 0.008221795782446861, -0.003699432360008359, 0.028347911313176155, 0.03375896438956261, 0.07924187928438187, -0.04037247598171234, 0.03745651990175247, -0.0428074486553669, -0.020982865244150162, -0.03547246381640434, 0.04292769357562065, 0.02725066989660263, 0.03213564679026604, -0.02292182669043541, 0.03439025580883026, -0.03282706066966057, 0.014684999361634254, -0.03117368370294571, 0.022155260667204857, -0.027130423113703728, 0.0075454143807291985, 0.07130566984415054, 0.004471634980291128, -0.013181928545236588, -0.002726194215938449, 0.0049638906493783, 0.01156612765043974, 0.007342499680817127, -0.04524242505431175, -0.016368437558412552, 0.021749431267380714, 0.01877335086464882, 0.050623416900634766, 0.08284924924373627, -0.022786550223827362, -0.005354688968509436, 0.016924574971199036, 0.029174599796533585, -0.006823940202593803, 0.026108335703611374, 0.01335478201508522, 0.019960777834057808, -0.02588287554681301, 0.05359949544072151, -0.009627167135477066, 0.041063886135816574, -0.07124554365873337, -0.030076442286372185, -0.0005913643399253488, -0.000964783423114568, -0.006857759319245815, -0.010250940918922424, 0.021358633413910866, -0.012956468388438225, 0.009867657907307148, 0.027160484343767166, -0.0007120796944946051, -0.044340580701828, -0.02047182060778141, 0.007481533568352461, -0.0015040099387988448, -0.00823682639747858, -0.018367521464824677, -0.011889288201928139, 0.02663441002368927, 0.004328843206167221, 0.029565397650003433, -0.006399322766810656, -0.03339822590351105, -0.03267675265669823, 0.02562735229730606, -0.027085332199931145, 0.020426729694008827, 0.01221996359527111, -0.05663570016622543, 0.03189515694975853, -0.010784531012177467, 0.04999212548136711, -0.05269765481352806, -0.0006730937748216093, 0.0015218589687719941, 0.0015613145660609007, 0.026574287563562393, -0.02443992719054222, 0.005955916829407215, 0.005805610213428736, -0.028994230553507805, -0.0028614704497158527, 0.020697280764579773, -0.04506205394864082, -0.007936212234199047, -0.06072404980659485, 0.017570894211530685, -0.019509855657815933, 0.03544240444898605, -0.035081665962934494, -0.029685642570257187, -0.010716892778873444, -0.03766694664955139, -0.0024593991693109274, -0.018217215314507484, 0.016353407874703407, 0.02165924571454525, 0.034510500729084015, 0.003889195155352354, -0.007684448268264532, -0.031624604016542435, -0.015631934627890587, 0.06553387641906738, -0.01956997811794281, 0.001927688019350171, 0.012032079510390759, 0.020562004297971725, 0.010017964988946915, 0.052276793867349625, 0.014001102186739445, 0.01820218376815319, -0.026544226333498955, 0.021599123254418373, -0.040673088282346725, 0.018863534554839134, -0.0029140780679881573, 0.022080106660723686, 0.03538228198885918, -0.02637888863682747, -0.04818844050168991, 0.020171206444501877, 0.0077257826924324036, 0.021073048934340477, -0.03856879100203514, -0.01881844364106655, 0.057687848806381226, -0.027987172827124596, 0.019870592281222343, -0.01246797014027834, 0.012610762380063534, 0.028633493930101395, 0.0012616398744285107, -0.010799561627209187, -0.015451565384864807, 0.011889288201928139, 0.008943269960582256, 0.010604162700474262, -0.001134818303398788, 0.0024049128405749798, 0.045753467828035355, 0.01131812110543251, -0.013550180941820145, 0.0003698962682392448, 0.007710752077400684, 0.029400059953331947, 0.034901298582553864, 0.03820805251598358, -0.03733627125620842, 0.013557696714997292, -0.02465035766363144, -0.007000551093369722, 0.002938502933830023, -0.021358633413910866, -0.010115664452314377, 0.05976208671927452, 0.01567702554166317, 0.0033368165604770184, -0.02256108820438385, 0.010250940918922424, 0.0003034323744941503, -0.011964441277086735, 0.01686445064842701, -0.0023090920876711607, -0.011663827113807201, -0.018683167174458504, 0.009454313665628433, -0.019960777834057808, 0.02588287554681301, 0.04154486954212189, -0.01567702554166317, 0.019344517961144447, 0.05020255595445633, -0.0036712498404085636, -0.012084687128663063, -0.002882137894630432, 0.005452388431876898, -8.172946400009096e-05, -0.005042801611125469, -0.04307800158858299, -0.00899587757885456, -0.03598351031541824, -0.0054260846227407455, 0.0011676979484036565, -0.05089396983385086, -0.016233161091804504, 0.01751077175140381, -0.038839343935251236, 0.02887398563325405, -0.026859870180487633, -0.037787195295095444, -0.006767575163394213, -0.0608442947268486, -0.00308129470795393, 0.004242416471242905, -0.03141417354345322, -0.03917001932859421, -0.002528916113078594, -0.021103110164403915, -0.025687476620078087, 0.03460068255662918, -0.028949139639735222, -0.005290808156132698, -0.021103110164403915, 0.03968106210231781, -0.015421504154801369, -0.015661995857954025, -0.02660434879362583, 0.007413895335048437, 0.02108808048069477, -0.019554948434233665, -0.000584318651817739, 0.0009826323948800564, -0.023958943784236908, 0.037967562675476074, -0.005298323463648558, 0.0760553702712059, -0.0011460912646725774, -0.05077372491359711, -0.019900653511285782, -0.002557098865509033, -0.004411512054502964, -0.001417583436705172, -0.04890991747379303, -0.019449733197689056, -0.009176245890557766, -0.017646048218011856, 0.04887985438108444, -0.015556780621409416, -0.010964899323880672, 0.029174599796533585, -0.007703236769884825, -0.02356814593076706, -0.0032672996167093515, -0.0012118506710976362, -0.03138411417603493, -0.026769686490297318, -0.0544111542403698, 0.015496657229959965, -0.029715705662965775, 0.013505089096724987, 0.016353407874703407, 0.009123638272285461, -0.002141875447705388, 0.00404701754450798, 0.00800385046750307, 0.021674277260899544, 0.03210558742284775, -0.007436441723257303, -0.012986529618501663, -0.012731007300317287, -0.0015227983240038157, -0.045392729341983795, 0.017856478691101074, -0.022410782054066658, -0.01210723351687193, -0.020050961524248123, -0.0330074280500412, -0.010761985555291176, 0.008627625182271004, -0.017495742067694664, -0.04545285180211067, -0.009649712592363358, 0.018367521464824677, 0.021328570321202278, 0.007289892062544823, 0.011182844638824463, -0.015188528224825859, 0.018397582694888115, -0.022591151297092438, 0.0012823070865124464, 0.020276421681046486, 0.03730621188879013, -0.00758674880489707, 0.031083498150110245, 0.012483000755310059, 0.021208325400948524, 0.019810469821095467, 0.002237696200609207, 0.030512332916259766, -0.01255815476179123, -0.03625406324863434, 0.004922556225210428, 0.024996062740683556, -0.030692700296640396, 0.037757132202386856, 0.004869948606938124, 0.008883146569132805, 0.03258657082915306, -0.006846486125141382, -0.005136743653565645, -0.035592712461948395, 0.007421410642564297, 0.026439011096954346, 0.007447714451700449, -0.0005382871604524553, -0.008898178115487099, 0.004328843206167221, 0.01755586452782154, -0.013692972250282764, -0.018172122538089752, 0.003210934577509761, 0.001793351024389267, 0.003163963556289673, -0.019900653511285782, -0.03974118456244469, -0.016669051721692085, 0.004080836661159992, -0.04749703034758568, -0.00951443612575531, 0.030722761526703835, -0.038147930055856705, -0.03309761360287666, 0.005925855599343777, -0.01884850487112999, 0.002322243992239237, 0.0013574606273323298, -0.014331777580082417, -0.023733483627438545, -0.01418147049844265, 0.03240619972348213, -0.057717908173799515, -0.008943269960582256, 0.019043903797864914, 0.02591293677687645, -0.026874901726841927, 0.02807735837996006, -0.02338777855038643, -0.019735315814614296, 0.019990839064121246, 0.0006444415193982422, 0.0012419120175763965, -0.005955916829407215, 0.010777016170322895, -0.043949782848358154, 0.026859870180487633, 0.025386862456798553, 0.0043589044362306595, -0.04061296582221985, -0.012385301291942596, -0.006128770299255848, -0.02021629922091961, -0.029610490426421165, -0.009108607657253742, -0.009334067814052105, -0.012933922000229359, 0.012430393137037754, -0.006778848357498646, -0.018863534554839134, -0.0412442572414875, 0.0047609759494662285, -0.000964783423114568, 0.0577479712665081, 0.01306168269366026, 0.023057103157043457, 0.006203923840075731, 0.027912020683288574, -0.007669417653232813, 0.01838255301117897, -0.016804328188300133, -0.038689035922288895, -0.024274589493870735, 0.018878566101193428, -0.012768584303557873, 0.008785447105765343, -0.004907525144517422, -0.014963067136704922, 0.008071488700807095, -0.04187554493546486, 0.017781324684619904, 0.02317734807729721, -0.011746495962142944, -0.017315372824668884, 0.034330129623413086, -0.04668537154793739, 0.03550252690911293, 0.021313540637493134, 0.006132527720183134, -0.028603432700037956, -0.0001526556006865576, 0.03129392862319946, 0.0174055565148592, -0.003584823338314891, 0.02598808892071247, 0.012588215991854668, 0.0010258456459268928, -0.01371551863849163, 0.00765062915161252, -0.01117532979696989, -0.031263869255781174, -0.001141394255682826, -0.023989006876945496, -0.019434701651334763, 0.01639849878847599, -0.02753625251352787, 0.02165924571454525, 0.018217215314507484, 0.008357072249054909, -0.002970443107187748, -0.005362204276025295, 0.017255250364542007, 0.02782183513045311, -0.020742373540997505, 0.0165037140250206, 0.00042978423880413175, -0.00937164481729269, 0.004655761178582907, 0.01351260393857956, 0.002498854883015156, 0.009439283050596714, -0.0075454143807291985, 0.038839343935251236, -0.01993071474134922, 0.024124281480908394, -0.037216026335954666, -0.012633307836949825, 0.007428926415741444, -0.03096325322985649, -0.020772434771060944, -0.003162084612995386, -0.007665659766644239, -0.030256809666752815, -0.019374579191207886, 0.013347266241908073, 0.025041155517101288, 0.01975034736096859, -0.010296033695340157, -0.018172122538089752, -0.015466595999896526, 0.03348841145634651, -0.01403867918998003, 0.019194211810827255, 0.012498031370341778, -0.013775642029941082, 0.034540560096502304, 0.006361746229231358, 0.011821649968624115, 0.027731651440262794, 0.0053772348910570145, 0.009980388917028904, -0.012257540598511696, -0.028423063457012177, 0.0012710340088233352, -0.003746403381228447, 0.0030944463796913624, -0.02266630344092846, 0.010220879688858986, -0.007334984373301268, -0.009319037199020386, -0.02302704006433487, 0.005745487287640572, -0.0008731900597922504, 0.013971040956676006, 0.05564367026090622, -0.012565669603645802, 0.008214280940592289, -0.010949868708848953, 0.03484117612242699, 0.014008617959916592, 0.014452023431658745, 0.007132069673389196, 0.0010014207800850272, 0.008447256870567799, 0.021854646503925323, 0.0006740331882610917, -0.025537168607115746, -0.027866927906870842, 0.025416923686861992, 0.018427645787596703, 0.026033181697130203, -0.03538228198885918, -0.0008215219713747501, -0.0010587252909317613, 0.019780408591032028, 0.020877650007605553, -0.031955279409885406, 0.0171500351279974, 0.011227937415242195, 0.03258657082915306, 0.02779177390038967, 0.01162625104188919, 0.015556780621409416, 0.021358633413910866, -0.035262033343315125, 0.027836866676807404, 0.0001757887948770076, 0.04235652834177017, 0.026980116963386536, -0.007579233031719923, -0.01935954950749874, -0.01704481989145279, 0.015496657229959965, -0.018683167174458504, 0.0047609759494662285, -0.018938688561320305, -0.01799175515770912, -0.0026848597917705774, -0.025356799364089966, 0.018683167174458504, 0.0016524381935596466, -0.006519568618386984, -0.01618807017803192, 0.003421364352107048, 0.0212684478610754, 0.03423994779586792, 0.03586326166987419, -0.01928439550101757, 0.01938961073756218, 0.01281367614865303, 0.019915685057640076, 0.011686373502016068, 0.02454514242708683, -0.023417839780449867, 0.0038854372687637806, -0.002470672130584717, 0.00040559418266639113, 0.009687289595603943, -0.01596261002123356, -0.0014016132336109877, 0.00726358825340867, 0.01530125830322504, 0.007635598536580801, 0.02313225530087948, -0.018006784841418266, -0.008695263415575027, -0.004520484711974859, 0.0064444150775671005, -0.02843809500336647, 0.015556780621409416, 0.033037491142749786, 0.004152232315391302, 0.008131612092256546, 0.0022132713347673416, -0.045753467828035355, 0.024274589493870735, -0.01486536767333746, -0.0025120065547525883, -0.01647365279495716, 0.019960777834057808, -0.02068225108087063, -0.009183760732412338, -0.027776744216680527, -0.0012531850952655077, -0.020967833697795868, -0.02516140043735504, 0.02483072504401207, -0.04785776510834694, 0.00023872987367212772, -0.008732839487493038, 0.02529667690396309, -0.0358332023024559, 0.0011667584767565131, -0.041574932634830475, 0.011475943960249424, -0.010491432622075081, 0.03601356968283653, 0.003699432360008359, 0.0165037140250206, 0.01751077175140381, -0.03354853391647339, 0.03664486110210419, 0.01522610429674387, -0.016924574971199036, -0.015218589454889297, 0.03156448155641556, -0.02008102275431156, 0.0106342239305377, 0.03267675265669823, -0.022290537133812904, -0.006778848357498646, 0.00027759833028540015, 0.013677941635251045, 0.0330074280500412, -0.011348182335495949, 0.002040418330579996, 0.02717551589012146, 0.0016552564920857549, 0.04352892190217972, -0.0317147895693779, 0.016593899577856064, -0.005493722856044769, 0.017435617744922638, -0.027325822040438652, 0.006324169225990772, -0.01722518913447857, -0.02552213706076145, -0.019885623827576637, -0.004005683120340109, -0.022140229120850563, -0.004663276486098766, 0.010401248000562191, 0.012137294746935368, 0.03751664236187935, -0.0004807477234862745, 0.008507379330694675, 0.00607240479439497, -0.011836680583655834, -0.0256574135273695, 0.0008487651357427239, -0.008950784802436829, 0.035803139209747314, -0.0020873891189694405, 0.0038516183849424124, 0.002143754390999675, 0.02162918448448181, -0.042146097868680954, -0.00039338174974545836, -0.02245587483048439, 0.044310521334409714, 0.0012522456236183643, -0.012062140740454197, 0.05074366182088852, 0.03844854608178139, 0.002271515317261219, 0.03457062318921089, 0.006711210124194622, -0.002690496388822794, -0.01110017579048872, 0.006436899770051241, 0.01766107976436615, -0.014406931586563587, 0.04043259844183922, 0.014609845355153084, 0.0103787025436759, -0.010769500397145748, -0.02691999264061451, 0.0023447901476174593, 0.03607369214296341, -0.007958758622407913, 0.015233620069921017, 0.03907983377575874, 0.015451565384864807, 0.02465035766363144, 0.007898636162281036, 0.023598207160830498, 0.012340209446847439, -0.02702520787715912, -0.009860143065452576, -0.0012447303161025047, 0.002162542659789324, -0.023523055016994476, -0.01500815898180008, -0.02552213706076145, -0.05657557398080826, 0.00703812763094902, -0.008184218779206276, 0.019073965027928352, -0.016383469104766846, 0.041755300015211105, -0.0013527635019272566, -0.03267675265669823, -0.000717246497515589, 0.016924574971199036, -0.013662911020219326, 0.005689122248440981, -0.011378244496881962, 0.025897905230522156, -0.021073048934340477, -0.0055914223194122314, -0.004884979221969843, -0.01019833330065012, -0.012941437773406506, 0.01931445673108101, -0.029565397650003433, 0.02068225108087063, 0.03165466710925102, -0.014046194031834602, -0.011145268566906452, 0.034901298582553864, -0.021253418177366257, -0.005523784086108208, 0.021779492497444153, -0.0032823302317410707, 0.0029760797042399645, -0.00015899668505880982, 0.024770602583885193, -0.022515997290611267, 0.007815967313945293, -0.006985520478338003, -0.0034100913908332586, 0.027310792356729507, 0.005418569315224886, 0.0002599842264316976, 0.006376776844263077, 0.015203558839857578, 0.02018623799085617, -0.008830539882183075, 0.020562004297971725, 0.035592712461948395, 0.004306297283619642, 0.007643113844096661, -0.006222711876034737, 0.006654845084995031, -0.011896803043782711, 0.011055083945393562, 0.00017989875050261617, -0.009544498287141323, 0.019840531051158905, 0.026935024186968803, -0.024695448577404022, -0.0322258323431015, 0.0456332229077816, -0.005880763754248619, -0.03514178842306137, -0.02201998420059681, -0.017315372824668884, 0.0035773077979683876, 0.010025480762124062, 0.0085750175639987, 0.005433599930256605, 0.04220622032880783, 0.06036331504583359, 0.023297592997550964, -0.03237614035606384, 0.008229311555624008, 0.02717551589012146, -0.014512145891785622, -0.004659518599510193, -0.024620296433568, 0.026799747720360756, 0.0032165709417313337, 0.01277610007673502, 0.034690868109464645, -0.034690868109464645, -0.042657140642404556, 0.0038516183849424124, -0.007958758622407913, 0.01827733777463436, -0.0027074057143181562, 0.0018281096126884222, 0.03772706910967827, -0.00037388878990896046, -0.007560444995760918, 0.003199661383405328, 0.007413895335048437, 0.005482449661940336, -0.013745579868555069, 0.010912292636930943, 0.018322430551052094, 0.014730091206729412, 0.001232517883181572, -0.009236368350684643, -0.007898636162281036, 0.045573100447654724, 0.02804729714989662, -0.013114290311932564, -0.021343601867556572, 0.01913408748805523, 0.03246632218360901, 0.0017698656301945448, -0.00172759173437953, 0.01259573083370924, -0.02601815201342106, 0.0004960132646374404, -0.026679502800107002, -0.035081665962934494, -0.01931445673108101, 0.012753553688526154, -0.011814134195446968, -0.015481626614928246, -0.018683167174458504, 0.026469072327017784, 0.011986987665295601, -0.008747871033847332, -0.03622400015592575, -0.04028229042887688, 0.017420588061213493, -0.046835679560899734, 0.0171500351279974, 0.00382907222956419, 0.022470904514193535, 0.04328843206167221, 0.01416643988341093, -0.004310054704546928, -0.014752637594938278, -0.018352491781115532, 0.06312896311283112, 0.010581616312265396, -0.0006538357120007277, -0.02959545888006687, -0.015165981836616993, 0.016263224184513092, 0.018502797931432724, 0.009131154045462608, 0.011513520032167435, 0.003162084612995386, -0.02147887833416462, 0.020231328904628754, 0.005399780813604593, -0.010904776863753796, 0.017210157588124275, 0.03856879100203514, -0.001967143500223756, -0.0047158836387097836, 0.0038516183849424124, -0.006823940202593803, 0.007226011715829372, 0.01629328541457653, -0.021689308807253838, -0.022861702367663383, -0.03484117612242699, -0.016428561881184578, -0.007710752077400684, -0.0021982407197356224, 0.016894513741135597, 0.0002628024958539754, -0.008665202185511589, -0.01499312836676836, -0.005343415774405003, -0.00411841319873929, 0.0010032996069639921, -0.018367521464824677, 0.010002934373915195, 0.0057041528634727, 0.011528551578521729, -0.008191734552383423, 0.009845112450420856, 0.009597105905413628, -0.01232517883181572, 0.0032879668287932873, -0.025071216747164726, 0.010393733158707619, 0.005692879669368267, -0.017390526831150055, -0.008965815417468548, 0.01845770701766014, -0.006331684533506632, 0.016097886487841606, -0.005726698786020279, 0.03228595480322838, -0.004512969404459, -0.01848776824772358, 0.0034025758504867554, -0.011686373502016068, 0.007094493135809898, 0.025281647220253944, 0.0010014207800850272, -0.01335478201508522, -0.007383834104984999, -0.020486852154135704, -0.029475213959813118, -0.005226927809417248, 0.04058290645480156, 0.014286685734987259, -0.04313812404870987, -0.0050315288826823235, -0.027310792356729507, 0.004610668867826462, -0.036885350942611694, -8.214045374188572e-05, -0.01812703162431717, -0.005343415774405003, -0.010761985555291176, -0.04734672233462334, 0.0060423435643315315, 0.007492806762456894, 0.025146370753645897, -0.024740541353821754, -0.0003377211687620729, -0.05308845266699791, -0.0027205576188862324, -0.04001173749566078, -0.021058019250631332, -0.00982256606221199, -0.032887183129787445, 0.03192522004246712, -0.008184218779206276, 0.010536524467170238, -0.004302539397031069, 0.0022320598363876343, 0.002466914476826787, -0.007733297999948263, -0.035412341356277466, -0.002673586830496788, -0.014827790670096874, 0.012881314381957054, -0.013114290311932564, 0.026408949866890907, 0.03276693820953369, -0.02147887833416462, -0.02410925179719925, 0.023763544857501984, -0.019149119034409523, -0.007173404097557068, -0.00337815098464489, -0.011145268566906452, -0.014782698825001717, 0.027521220967173576, 0.012407847680151463, 0.006121254991739988, 0.006489506922662258, -0.012979013845324516, -0.020411698147654533, -0.01791660115122795, -0.012032079510390759, 0.004982678685337305, -0.005125470459461212, -0.013527634553611279, -0.0016186190769076347, -0.04328843206167221, -0.0011320000048726797, 0.0006406838074326515, 0.022365689277648926, -0.002564614173024893, -0.010754469782114029, 0.022606180980801582, 0.0019079601624980569, -0.028453124687075615, 0.03535221889615059, 0.0062302276492118835, -0.01665402203798294, 0.010250940918922424, 0.019960777834057808, 0.021283479407429695, 0.011581158265471458, -0.002282788511365652, -0.006016039755195379, 0.014061224646866322, -0.023432869464159012, -0.008875631727278233, -3.396587271708995e-05, 0.02743103727698326, -0.0004044199304189533, -0.01967519335448742, 0.0438295379281044, -0.04166511446237564, 0.011881772428750992, -0.02583778277039528, -0.018623044714331627, 0.005313354544341564, 0.018577951937913895, -0.005272020120173693, 0.009619651362299919, -0.005238201003521681, 0.015196043066680431, 0.0051179551519453526, -0.010814592242240906, 0.05272771418094635, 0.03156448155641556, 0.0003177585022058338, 0.007000551093369722, -0.0026322524063289165, -0.010746954008936882, -0.017210157588124275, -0.0012522456236183643, 0.030933191999793053, -0.006474476307630539, 0.012332693673670292, 0.025131339207291603, 0.000351107883034274, 0.005343415774405003, 0.023237470537424088, -0.014482084661722183, 0.005140501074492931, 0.0007440199260599911, 0.013069198466837406, -0.0085750175639987, 0.0047722491435706615, -0.008830539882183075, 0.04788782820105553, 0.015353865921497345, 0.012986529618501663, 0.004933828953653574, 0.0019821743480861187, 0.006696179509162903, 0.006666117813438177, -0.008266887627542019, -0.0006561842164956033, 0.030647609382867813, 0.030933191999793053, -0.020922742784023285, 0.003440152620896697, 0.01956997811794281, -0.015887456014752388, 0.00428750878199935, 0.009040969423949718, -0.0059220981784164906, 0.003911741077899933, 0.002985473955050111, -0.024500049650669098, 0.00486619072034955, 0.011205391027033329, 0.005730456672608852, -0.01064925454556942, -0.015053251758217812, -0.023147286847233772, -0.01964513212442398, -0.00749656418338418, 0.001478645601309836, 0.006354230921715498, 0.019149119034409523, 0.008762901648879051, 0.02807735837996006, -0.017886539921164513, 0.04948108270764351, 0.013933463953435421, -0.043769415467977524, 0.010423794388771057, 0.012881314381957054, -0.0038854372687637806, -0.024049129337072372, 0.0035397312603890896, -0.03192522004246712, -0.010844654403626919, -0.007383834104984999, -0.009649712592363358, 0.028197603300213814, 0.003994409926235676, -0.006718725431710482, 0.0009638440096750855, 0.021539000794291496, -0.009424252435564995, 0.01975034736096859, -0.019224273040890694, 0.001736046513542533, -0.021133171394467354, -0.004437815863639116, -0.03427000716328621, 0.01708991266787052, -0.018157092854380608, 0.00922885350883007, -0.005523784086108208, -0.06210687384009361, -0.01701475866138935, -0.0036430673208087683, -0.00217193691059947, -0.015526718460023403, -0.007913666777312756, 0.03427000716328621, -0.0016317709814757109, 0.004009440541267395, -0.002282788511365652, 0.007056916132569313, 0.0012184265069663525, 0.015271197073161602, 0.0207574050873518, -0.03213564679026604, -0.0036280364729464054, -0.0017745626391842961, 0.039049774408340454, -0.017180096358060837, 0.013332235626876354, -0.009597105905413628, -0.004501696210354567, 0.0015866789035499096, -0.008905692957341671, -0.00834204163402319, 0.011355698108673096, 0.0018281096126884222, 0.0035284580662846565, 0.028393002226948738, 0.0317147895693779, -0.002583402441814542, 0.00592961348593235, -0.026574287563562393, -0.01360278856009245, 0.01928439550101757, -0.0038628913462162018, 0.0014119469560682774, 0.002726194215938449, 0.006820182781666517, -0.005054074805229902, -0.01787150837481022, 0.01570708677172661, -0.008259372785687447, -0.0021963617764413357, -0.020787466317415237, -0.02263624221086502, 0.019975807517766953, 0.005178078077733517, 0.017285311594605446, -0.01223499421030283, 0.011633765883743763, -0.021073048934340477, -0.02818257361650467, -0.00606488948687911, -0.0335184745490551, 0.017360465601086617, -0.0003123568603768945, -0.0009807535680010915, 0.03258657082915306, -0.006098708603531122, 0.03189515694975853, 0.003994409926235676, 0.0371258407831192, 0.017450649291276932, 0.0017351070418953896, -0.011956926435232162, 0.03141417354345322, 0.008116580545902252, 0.0020686008501797915, 0.004636972676962614, -0.012114748358726501, -0.004783521872013807, 0.011836680583655834, 0.005226927809417248, 0.0016111037693917751, -0.027596374973654747, 0.003949318081140518, -0.021508939564228058, -0.018397582694888115, 0.018532859161496162, -0.00531711196526885, -0.001389400800690055, 0.01585739478468895, -0.007195950485765934, 0.0036580979358404875, 0.010220879688858986, -0.0212684478610754, 0.00030249296105466783, -0.022470904514193535, 0.001005178433842957, 0.000547211617231369, 0.01259573083370924, 0.006639814004302025, 0.0012109111994504929, -0.009183760732412338, 0.017330404371023178, -0.01928439550101757, 0.01360278856009245, -0.018112000077962875, 0.030151594430208206, -0.015631934627890587, -0.0034608198329806328, 0.0026998904068022966, 0.010731923393905163, -0.04797801375389099, 0.0042273858562111855, -0.005467419046908617, 0.006034828256815672, -0.009379160590469837, 0.005095409229397774, -0.007338741794228554, 0.016097886487841606, 0.0007698539411649108, 0.009867657907307148, -0.014647422358393669, 0.0017003485700115561, -0.008785447105765343, -0.011205391027033329, -0.021493908017873764, -0.023417839780449867, -0.004960132762789726, 0.02302704006433487, 0.0005533178336918354, -0.013091744855046272, -0.00578306382521987, -0.010356156155467033, -0.015158466063439846, 0.012941437773406506, -0.01928439550101757, -0.022546058520674706, -0.004933828953653574, -0.011400789953768253, -0.007793420925736427, 0.015053251758217812, 0.0035322157200425863, 0.009326552972197533, -0.0009516315185464919, 0.024019068107008934, 0.02050188183784485, 0.020456790924072266, 0.011085145175457, 0.024635326117277145, -0.028393002226948738, -0.008913208730518818, 0.03390927240252495, 0.024635326117277145, -0.014963067136704922, -0.0016336498083546758, -0.008830539882183075, 0.0012776099611073732, -0.026153428480029106, 0.014226562343537807, 0.014684999361634254, -0.003633673069998622, -0.018172122538089752, 0.01773623190820217, -0.00951443612575531, -0.0035247004125267267, -0.0009102970943786204, -0.022470904514193535, 0.017961693927645683, 0.0016900149639695883, 0.01881844364106655, -0.008139126934111118, 0.012370270676910877, 0.022140229120850563, -0.0032672996167093515, -0.00946182943880558, 0.011979471892118454, 0.046294573694467545, 0.00022651742619927973, 0.003956833388656378, 0.009431767277419567, -0.002904683817178011, 0.01708991266787052, 0.02000586874783039, -0.015977639704942703, 0.0348111130297184, 0.0029140780679881573, -0.022110167890787125, -0.023688392713665962, 0.005343415774405003, -0.00024706721887923777, 0.0105064632371068, -0.013204474933445454, 0.0030888100154697895, 0.02003592997789383, -0.010190818458795547, -0.022621212527155876, -0.00938667543232441, -0.034510500729084015, 0.0009304946288466454, 9.229792340192944e-05, 0.00555008789524436, 0.011040053330361843, -0.021328570321202278, -0.03070773184299469, 0.000938009936362505, 0.005042801611125469, 0.027521220967173576, -0.0024387319572269917, -0.0536295585334301, -0.022170290350914, -0.0237184539437294, -0.009364129975438118, 0.0036449460312724113, -0.003998167812824249, -0.0290092620998621, -0.0044415732845664024, 0.0055200266651809216, -0.008432225324213505, 0.006207681261003017, 0.0033311801962554455, -0.008627625182271004, 0.008311980403959751, -0.00502025568857789, -0.003389424178749323, 0.025431953370571136, 0.015872424468398094, -0.011761527508497238, -0.018472736701369286, 0.005320869851857424, 0.028062326833605766, 0.020111083984375, 0.018833473324775696, 0.025597291067242622, -5.207170488574775e-06, 0.022936856374144554, 0.0038328298833221197, 0.008980846963822842, 0.01693960465490818, 0.006177620030939579, 0.02014114521443844, -0.009108607657253742, -0.0039004681166261435, -0.0412442572414875, -0.024485019966959953, -0.012858768925070763, -0.008266887627542019, 0.0105064632371068, 0.002724315272644162, 0.005084136035293341, 0.006177620030939579, 0.014497115276753902, -0.018833473324775696, 0.022215383127331734, -0.019690224900841713, -0.011513520032167435, 1.0913408004853409e-05, -0.007613052148371935, 0.005132985766977072, 0.014098801650106907, 0.01277610007673502, -0.003554761875420809, 0.014497115276753902, -0.018397582694888115, -0.018758321180939674, 0.009198791347444057, 0.003729493822902441, -0.04055284336209297, -0.016999727115035057, -0.022966917604207993, 0.008582532405853271, -0.025507107377052307, 0.020156176760792732, 0.017285311594605446, -0.01629328541457653, -0.007162131369113922, 0.014016132801771164, -0.002857712795957923, 0.005290808156132698, 0.007383834104984999, 0.025492075830698013, -0.014835306443274021, -0.002557098865509033, -0.03078288398683071, 0.003659976879134774, 0.007214738521724939, 0.01629328541457653, -0.003083173418417573, -0.0025401893071830273, -0.030933191999793053, 0.04626451060175896, -0.004486665595322847, 0.007861059159040451, -0.012302632443606853, -0.03147429600358009, -0.01052149385213852, 0.005933370906859636, -0.016563838347792625, -0.004888737108558416, -0.029580429196357727, 0.002818257315084338, -0.012332693673670292, 0.01600770093500614, -0.003926771692931652, -0.005121713038533926, -0.013580242171883583, -0.01758592575788498, -0.017495742067694664, -0.019434701651334763, -0.006906609050929546, 0.009890204295516014, -0.029535336419939995, 0.01477518305182457, -0.007936212234199047, 0.002744982484728098, -0.02122335694730282, 0.010123180225491524, 0.009198791347444057, -0.022395750507712364, 0.05308845266699791, -0.035803139209747314, 0.006899093743413687, -0.016789298504590988, 0.003257905365899205, -0.013377327471971512, -0.011588674038648605, -0.01209220290184021, -0.0074514723382890224, -0.0066698757000267506, -0.025792689993977547, -0.019299425184726715, 0.015917517244815826, -0.022621212527155876, 0.029670612886548042, 0.03496142104268074, 0.0038177992682904005, 0.010243426077067852, 0.002239575143903494, 0.02274145744740963, -0.019119057804346085, 0.008807993493974209, -0.02050188183784485, 0.016623960807919502, -0.011919349431991577, 0.05257740616798401, 0.0013527635019272566, 0.0007675053784623742, 0.011370728723704815, 0.01593254692852497, -0.01708991266787052, 0.025567229837179184, 0.03565283492207527, -0.057868216186761856, 0.013001560233533382, 0.00026820413768291473, 0.002645404078066349, 0.004911283031105995, -0.007154615595936775, -0.0022621210664510727, 0.0041071404702961445, -0.04079333320260048, -0.007301165256649256, -0.0054711769334971905, 0.010912292636930943, -0.015323804691433907, 0.019479794427752495, 0.010874715633690357, 0.0019314456731081009, -1.028223596222233e-05, -0.0115360664203763, -0.010138210840523243, 0.006636056583374739, -0.01052149385213852, -0.013978555798530579, 0.0043701776303350925, -0.026589317247271538, 0.004163505509495735, 0.003975621424615383, -0.0008191734668798745, -0.0069216396659612656, -0.012137294746935368, 0.0020535702351480722, 0.004077078774571419, 0.010153241455554962, 0.01949482411146164, -0.0066586025059223175, -0.021343601867556572, -0.03129392862319946, -0.0034326373133808374, 0.0007961576920934021, -0.004787279758602381, 0.0030549908988177776, -0.0013537028571590781, -0.002258363412693143, -0.011310606263577938, -0.0005744547815993428, 0.007376318797469139, -0.01812703162431717, 0.00576803321018815, -0.016052793711423874, -0.006260288879275322, 0.025612322613596916, -0.010822108015418053, -0.008868115954101086, -0.007605536840856075, -0.004122171085327864, 0.004663276486098766, 0.0013574606273323298, 0.011656312271952629, -0.00405453285202384, -0.00010092883894685656, 0.010303548537194729, 0.0003238647186663002, -0.024815695360302925, 0.0026886174455285072, -0.00015981867909431458, -0.016203099861741066, 0.018157092854380608, -0.006989277899265289, 0.010566585697233677, 0.013257082551717758, 0.005140501074492931, -0.0043513891287148, 0.018172122538089752, -0.01041627861559391, -0.035622771829366684, 0.007244800217449665, 0.0048098256811499596, -0.014835306443274021, 0.0013865826185792685, 0.05438109114766121, 0.00018753153563011438, 0.0028896532021462917, -0.01300907600671053, -0.014910459518432617, -0.014700029976665974, -0.008838054724037647, 0.03186509385704994, 0.008552471175789833, -0.009657228365540504, 0.008680232800543308, -0.026694532483816147, 0.0024030341301113367, 0.005144258961081505, -0.026544226333498955, 0.011776558123528957, -0.002947897184640169, 0.009724866598844528, 0.0026867385022342205, 0.01675923727452755, 0.023508023470640182, 0.011393275111913681, -0.008259372785687447, 0.007278619334101677, -0.008364588022232056, 0.005474934354424477, -0.006775090470910072, 0.0029591701459139585, -0.011648796498775482, 0.016909543424844742, 0.01931445673108101, -0.003036202397197485, -0.023508023470640182, -0.010401248000562191, -0.0053396583534777164, 0.008988361805677414, 0.008890662342309952, 0.02508624829351902, -0.005057832226157188, 0.02054697461426258, -0.007733297999948263, -0.034119702875614166, 0.03460068255662918, 0.0015782241243869066, -0.01960003934800625, -0.008898178115487099, 0.019810469821095467, -0.0010230273474007845, 0.0014570390339940786, -0.0049864365719258785, -0.02018623799085617, -0.013903402723371983, 0.012588215991854668, 0.016533775255084038, 0.015887456014752388, -0.00765062915161252, 0.01859298348426819, -0.0033011187333613634, 0.0006388049805536866, 0.007613052148371935, -0.01964513212442398, -0.013850795105099678, -0.024875817820429802, -0.0036242788191884756, -0.005512511357665062, 0.0087027782574296, 3.144118454656564e-05, -0.030497301369905472, 0.007011824287474155, -0.013076714240014553, -0.0014448266010731459, 0.012490516528487206, 0.009334067814052105, -0.007598021533340216, -0.013978555798530579, 0.014767668209969997, 0.01877335086464882, 0.022966917604207993, 0.013317205011844635, -0.012167355976998806, -0.008417194709181786, -0.0005857278010807931, -0.02310219407081604, -0.00555008789524436, 0.028633493930101395, -0.0013649759348481894, 0.029400059953331947, -0.012708461843430996, 0.00742516852915287, -0.02003592997789383, -0.012302632443606853, 0.006786363665014505, -0.01007057260721922, -0.005861975252628326, 0.0034983966033905745, 0.0016204979037865996, -0.01647365279495716, -0.009251398965716362, 0.005347173660993576, 0.0015763452975079417, 0.009807535447180271, 0.023237470537424088, 0.010243426077067852, -0.003165842266753316, 0.014677483588457108, -0.014031163416802883, 0.034901298582553864, -0.0014654938131570816, -0.01668408326804638, -0.014677483588457108, -0.0038102837279438972, -0.020892681553959846, 0.0016947120893746614, 0.00651581073179841, -0.0069216396659612656, -0.0013010954717174172, 0.011145268566906452, -0.00879296287894249, -0.007214738521724939, -0.012933922000229359, -0.009717350825667381, 0.011040053330361843, -0.0001678037369856611, -0.011348182335495949, 0.019630100578069687, 0.010326094925403595, -0.013798187486827374, 0.0023072133772075176, -0.007515352685004473, -0.004903767723590136, 0.012227479368448257, 0.006166346836835146, 0.017646048218011856, -0.0026228581555187702, -0.0029948679730296135, -0.0018985660281032324, 0.016082854941487312, 0.0010643618879839778, 0.0015199801418930292, -0.02529667690396309, 0.017240218818187714, 0.009334067814052105, -0.002282788511365652, 0.021854646503925323, -0.022546058520674706, 0.0012757311342284083, -0.007071946747601032, -0.008221795782446861, 0.012024564668536186, -0.028919076547026634, 0.04289763420820236, -0.03586326166987419, -0.0189537201076746, 0.019404640421271324, -2.0579149349941872e-05, 0.002483824035152793, -0.00893575418740511, 0.017600955441594124, 0.00010274896339979023, 0.0017435618210583925, 0.018623044714331627, -0.0044415732845664024, -0.011182844638824463, -0.003098204266279936, -0.012415362522006035, 0.016458623111248016, 0.0035115485079586506, 0.019224273040890694, 0.017435617744922638, 0.004648245871067047, 0.001538768527098, -0.007113281171768904, -0.006590964272618294, -0.016804328188300133, 0.019975807517766953, 0.002367336070165038, -0.007823482155799866, 0.004558061249554157, -0.010386217385530472, 0.02155403234064579, -0.011746495962142944, 0.003209055634215474, 0.00879296287894249, -0.008965815417468548, -0.005005225073546171, -0.006767575163394213, -0.0021756945643574, 0.006718725431710482, -0.015241134911775589, 0.009664743207395077, -0.0069291554391384125, 0.013392359018325806, -0.015353865921497345, 0.0012080929009243846, -0.01766107976436615, -0.014970582909882069, 0.00899587757885456, 0.013234536163508892, 0.016233161091804504, 0.0035322157200425863, 0.0002717269817367196, 0.00427247816696763, 0.00668490631505847, 0.004246174357831478, -0.010529009625315666, -0.01358775794506073, -0.02050188183784485, -0.01967519335448742, -0.010363670997321606, 0.004092109389603138, -0.035773079842329025, 0.003731372533366084, 0.007316195871680975, 0.013347266241908073, -0.0198555625975132, 0.001177092082798481, 0.017270280048251152, 0.011393275111913681, 0.021644216030836105, 0.00232036504894495, 0.009288975968956947, 0.0094768600538373, 0.0012343967100605369, 0.00024518839200027287, -0.0005349991843104362, 0.0006900033331476152, -0.005707910284399986, 0.007928697392344475, 0.01614297740161419, -0.012054625898599625, 0.034510500729084015, -0.0016101642977446318, -0.023267531767487526, 0.016488684341311455, -0.006947943475097418, 0.02147887833416462, 0.01485033705830574, 0.0010906655807048082, 0.009506921283900738, -0.006519568618386984, -0.01585739478468895, 0.020516913384199142, -0.0002733709698077291, 0.009987903758883476, 0.014196501113474369, -0.008161673322319984, 0.011814134195446968, -0.0044152699410915375, -0.0026003120001405478, -2.5980809368775226e-05, -0.011761527508497238, -0.011986987665295601, -0.029324905946850777, 0.008229311555624008, 0.04097370430827141, 0.002275272971019149, 0.00823682639747858, 0.01212977897375822, 0.017886539921164513, -0.021508939564228058, -0.007203465793281794, -0.009273945353925228, -0.014429477043449879, 0.025386862456798553, -0.002453762572258711, 0.0230721328407526, 0.0009182821377180517, 0.0031339020933955908, 0.020201267674565315, -0.004231143742799759, 0.01167885772883892, 0.00571166817098856, 0.010919807478785515, 0.012174871750175953, -0.0020479336380958557, 0.0004138141230214387, -0.010544040240347385, -0.0068727899342775345, 0.011212905868887901, 0.009724866598844528, -0.01097241509705782, 0.018608013167977333, -0.0036261577624827623, -0.01701475866138935, -0.01672917604446411, -0.03024177998304367, -0.007733297999948263, -0.019585009664297104, -0.011167814023792744, -0.010731923393905163, -0.0007045643287710845, -0.001217487151734531, -0.010581616312265396, 0.008281919173896313, -0.008732839487493038, -0.005745487287640572, 2.7712863811757416e-05, -0.0033067550975829363, 0.021794522181153297, -0.015737148001790047, -0.005114197731018066, -0.022861702367663383, -0.005798094440251589, -0.010446340776979923, -0.014429477043449879, -0.0033349378500133753, 0.0174055565148592, 0.008447256870567799, -0.017029790207743645, 0.021644216030836105, 0.015271197073161602, -0.010852169245481491, 0.001432614168152213, -0.01730034127831459, 0.0009845112217590213, -0.018006784841418266, 0.009168730117380619, 0.018397582694888115, -0.0058995517902076244, -0.0022564847022295, 0.007943728007376194, 0.015203558839857578, 0.012655854225158691, 0.022050045430660248, 0.0014241593889892101, 0.002773165237158537, 0.016488684341311455, 0.017901569604873657, 0.02180955372750759, 0.00645944569259882, 0.007068189326673746, -0.0011489095631986856, 0.004031986929476261, 1.5104097656148952e-05, -0.005903309676796198, 0.020516913384199142, -0.00846980232745409, 0.000452095438959077, -0.025822751224040985, 0.0045467885211110115, -0.023267531767487526, 0.003686280455440283, 0.0046783071011304855, 0.007177161984145641, -0.007673175074160099, 0.006850244011729956, 0.022215383127331734, -0.007695720996707678, 0.009815050289034843, 0.005061590112745762, 0.0038365875370800495, -0.001636468106880784, 0.017826417461037636, 0.004208597354590893, 0.0024932182859629393, 0.0014974339865148067, -0.002434974303469062, -0.01360278856009245, -0.0027468614280223846, 0.00571166817098856, -0.015353865921497345, 0.020336544141173363, -0.020772434771060944, -0.02158409357070923, -0.01111520640552044, 0.005644029937684536, -0.002382366918027401, 0.02083255723118782, -0.023042071610689163, -0.003030566032975912, -0.0056402720510959625, -0.018608013167977333, -0.010401248000562191, -0.014128862880170345, -0.0020686008501797915, 0.0011723950738087296, 0.005365961696952581, 0.00010662406566552818, -0.0030268083792179823, 0.0004478680493775755, 0.028843924403190613, 0.0033142706379294395, -0.029941165819764137, 0.009792504832148552, 0.003017414128407836, 0.010656770318746567, 0.003534094663336873, 0.02021629922091961, -0.011896803043782711, -0.01964513212442398, 0.00029427302069962025, 0.0017454406479373574, -0.0008252796833403409, -0.008725324645638466, -0.0003295012575108558, 0.002643525367602706, -0.023147286847233772, 0.012498031370341778, 0.007778390310704708, -0.011506005190312862, 0.007083219941705465, -0.008838054724037647, 0.001119787571951747, 0.015436534769833088, -0.011400789953768253, -0.024710480123758316, 0.0014382506487891078, 0.00719970790669322, 0.015120889991521835, -0.0066698757000267506, 0.01142333634197712, 0.0015134041896089911, -0.0067525445483624935, 0.002288424875587225, -0.007541656494140625, -0.0014241593889892101, 0.02039666660130024, 0.008605078794062138, 0.008379618637263775, -0.0020009626168757677, 0.024485019966959953, 0.005598937626928091, 0.03243626281619072, 0.01841261424124241, 0.005610210821032524, -0.006602237466722727, 0.022966917604207993, 0.004171020817011595, -0.0063504730351269245, 0.023973975330591202, -0.017495742067694664, -0.009356614202260971, 0.0015782241243869066, 0.009078546427190304, -0.011235452257096767, -0.014715060591697693, 0.007417653221637011, -0.001976537751033902, -0.013039137236773968, 0.016052793711423874, -0.024049129337072372, -0.005512511357665062, -0.0030850523617118597, 0.0330074280500412, 0.02129850909113884, 0.019615070894360542, 0.013557696714997292, 0.01430923119187355, 0.007327469065785408, -0.003938044887036085, 0.0025683718267828226, 0.03135405108332634, 0.024996062740683556, -0.00040113195427693427, -0.03019668720662594, -0.02782183513045311, -0.003635551780462265, 0.008890662342309952, 0.019058935344219208, -0.03910989686846733, 0.009845112450420856, -0.0045467885211110115, 0.008980846963822842, 0.008800477720797062, -0.0029591701459139585, 0.009957842528820038, 0.01162625104188919, 0.01232517883181572, -0.015692057088017464, 0.009582074359059334, -0.01758592575788498, -0.004242416471242905, 0.007000551093369722, -0.020892681553959846, -0.000535468861926347, 0.0011639402946457267, -0.017856478691101074, -0.009852627292275429, 0.011588674038648605, -5.231390241533518e-05, 0.001338672242127359, 0.006252773571759462, -0.011130237020552158, 0.005328385159373283, 0.023838698863983154, -0.015812302008271217, 0.000587606627959758, 0.014391900971531868, 0.0025458256714046, 0.0031526905950158834, 0.001230639056302607, -0.010822108015418053, -0.0031019619200378656, 0.0019840530585497618, -0.014564753510057926, -0.0015040099387988448, 0.0020385393872857094, 0.041184134781360626, -0.013159383088350296, 0.011611220426857471, 0.009905234910547733, -0.0015105858910828829, -0.015812302008271217, -0.005801852326840162, -0.002158785006031394, -0.004336358513683081, 0.0007515352917835116, 0.025597291067242622, 0.013422420248389244, 0.01910402625799179, 0.011122722178697586, 0.025747599080204964, -0.015421504154801369, 0.02367336116731167, 0.016699112951755524, 0.009334067814052105, 0.0061362856067717075, -0.0008215219713747501, 0.025717537850141525, -0.0007167767616920173, -0.0037407667841762304, -0.027130423113703728, -0.0014467054279521108, 0.015947578474879265, -0.006797636393457651, -0.004960132762789726, 0.009191276505589485, 0.005982220638543367, -0.011829164810478687, -0.00021923692838754505, 0.0011056963121518493, 0.0016242555575445294, -0.008725324645638466, -0.007853543385863304, -0.003195903729647398, 0.014061224646866322, -0.000564121175557375, 0.011573643423616886, 0.03571295738220215, 0.0035265793558210135, 0.023583177477121353, -0.0004894373705610633, 0.011205391027033329, -0.035081665962934494, -0.023342685773968697, -0.02137366309762001, 0.009146184660494328, -0.02325250208377838, 0.005606452934443951, -0.008056458085775375, -0.004129686392843723, -0.012189902365207672, 0.023583177477121353, 0.004419027362018824, 0.015616903081536293, -0.030767854303121567, 0.006857759319245815, -0.009739897213876247, -0.005880763754248619, 0.026363857090473175, -0.007004308979958296, -0.010002934373915195, 0.0003508730442263186, 0.007575475610792637, -0.010446340776979923, -0.001476766774430871, 0.032887183129787445, 0.011055083945393562, -0.013444965705275536, -0.004618184175342321, 0.008868115954101086, -0.019434701651334763, -0.026619380339980125, 0.0013424298958852887, 0.022395750507712364, 0.0045843650586903095, -0.019780408591032028, -0.01201704889535904, 0.006775090470910072, 0.013956010341644287, 0.0057041528634727, -0.003177115460857749, -0.010799561627209187, -0.005215654615312815, -0.0010587252909317613, 0.02634882740676403, 0.0034025758504867554, 0.002275272971019149, -0.0006575933657586575, -0.03550252690911293, 0.002143754390999675, -0.019795438274741173, -0.01064925454556942, -0.0009826323948800564, 0.005501238163560629, -0.0016392862889915705, -0.0009826323948800564, -0.004084594082087278, -0.00834204163402319, -0.020531943067908287, 0.008304464630782604, -0.0006810788181610405, 0.0038384664803743362, -0.011686373502016068, 0.006865274626761675, -0.012956468388438225, 0.008913208730518818, -0.02047182060778141, -0.003130144439637661, 0.015233620069921017, 0.0057793064042925835, -0.0009957841830328107, 0.016789298504590988, -0.015045735985040665, -0.00798130501061678, -0.002884016605094075, 0.01540647353976965, -0.03168472647666931, 0.005380992777645588, -0.0007557626813650131, -0.011212905868887901, -0.006057374179363251, 0.016533775255084038, 0.015338835306465626, -0.0006834273808635771, -0.012250024825334549, -0.001538768527098, 0.005895794369280338, 0.02887398563325405, -0.0033180282916873693, 0.009416736662387848, 0.005441115237772465, -0.014730091206729412, -0.026574287563562393, -0.007567960303276777, 0.004520484711974859, -0.027806805446743965, 0.011971957050263882, -0.0018722622189670801, -0.017450649291276932, -0.005884521175175905, -0.018758321180939674, -0.005350931081920862, -0.002496975939720869, 0.0042762355878949165, -0.0050803786143660545, 0.004798552952706814, -0.010709377937018871, -0.011438366957008839, 0.015391441993415356, -0.004644487984478474, -0.009236368350684643, -0.012933922000229359, 0.007327469065785408, -0.0047722491435706615, -0.003915498964488506, 0.027596374973654747, -0.014098801650106907, 0.014715060591697693, 0.0009004332241602242, -0.010559070855379105, -0.020441759377717972, -0.009161215275526047, 0.009364129975438118, 0.0030850523617118597, -0.007928697392344475, 0.02591293677687645, 0.0025702505372464657, 0.0047609759494662285, 0.007800936233252287, -0.0030437179375439882, 0.029475213959813118, -0.026829808950424194, 0.01838255301117897, 0.0027975901030004025, 0.0002790074795484543, -0.015105859376490116, -0.004392723552882671, -0.011400789953768253, -0.026408949866890907, 0.011506005190312862, -0.0003248041612096131, -0.01200201828032732, -0.0030737791676074266, -1.5676556358812377e-05, 0.01582733355462551, 0.0034420315641909838, 0.0037257361691445112, -0.004204839933663607, 0.00727110356092453, -0.025462014600634575, -0.023297592997550964, -0.007045643404126167, -0.002496975939720869, 0.027881959453225136, 0.012603246606886387, -0.010281002148985863, -0.009334067814052105, -0.028994230553507805, -0.0042386590503156185, -0.013858310878276825, -0.0165037140250206, 7.157199434004724e-05, 0.004009440541267395, -0.002448126208037138, -0.010228395462036133, 0.025401892140507698, -0.009123638272285461, 0.016533775255084038, 0.0025721294805407524, 0.021539000794291496, 0.00150213111191988, -0.006726240739226341, -0.002431216649711132, -0.004174778237938881, -0.03781725466251373, 0.010513978078961372, 0.009168730117380619, 0.006403080653399229, 0.017315372824668884, 0.009454313665628433, -0.020997894927859306, -0.008199249394237995, 0.01784144714474678, -0.002271515317261219, -0.009401706047356129, 0.0036374307237565517, 0.016458623111248016, 0.01200201828032732, -0.008762901648879051, 0.014211531728506088, 0.004069563467055559, -0.015661995857954025, 0.012565669603645802, 0.004140959586948156, -0.03321785852313042, 0.011400789953768253, -0.01611291617155075, 0.010761985555291176, 0.006857759319245815, -0.013956010341644287, -0.023598207160830498, -0.0007783087203279138, 0.007417653221637011, 0.008334525860846043, -0.007169646676629782, -0.02299697883427143, 0.004734672140330076, -0.006027312949299812, 0.025612322613596916, -0.010979929938912392, 0.005181835498660803, 0.011460913345217705, -0.0005054074572399259, 0.007703236769884825, -0.008762901648879051, -0.0007877029129303992, 0.006365503650158644, 0.009191276505589485, 0.021027956157922745, 0.011836680583655834, 0.022591151297092438, -0.0010756348492577672, 0.017360465601086617, -0.010401248000562191, 0.007673175074160099, 0.0035716714337468147, -0.02591293677687645, 0.011926865205168724, 0.019885623827576637, 0.01938961073756218, -0.011017506942152977, -0.003481487277895212, 0.002093025716021657, -0.005809367634356022, 0.0017989876214414835, -0.007184677291661501, -0.0029911103192716837, 0.015526718460023403, 0.025071216747164726, -0.00713582755997777, -0.010100633837282658, -0.0531185120344162, -0.003938044887036085, -0.02065218985080719, -0.0030850523617118597, 0.0054260846227407455, 0.0065383571200072765, 0.017886539921164513, 0.030662639066576958, 0.013099259696900845, -0.002416185801848769, -0.020967833697795868, 0.0006275319610722363, 0.003964348696172237, 0.017706170678138733, -0.0023260016459971666, 0.00010726991604315117, -0.013377327471971512, 0.014737606979906559, 0.005700394976884127, 0.0013405510690063238, 0.025582261383533478, -0.009867657907307148, 0.008732839487493038, 0.008041427470743656, -0.015661995857954025, 0.003975621424615383, -0.0027957111597061157, 0.004362662322819233, 0.015120889991521835, 0.020562004297971725, -0.002269636606797576, -0.005565118510276079, -0.0022170289885252714, 0.0103787025436759, -0.006572175770998001, 0.0025420680176466703, 0.0033950605429708958, 0.0028332879301160574, -0.02756631374359131, -0.02083255723118782, 0.010874715633690357, -0.026078274473547935, -0.024740541353821754, 0.0010239668190479279, -0.003682522801682353, -0.011941895820200443, 0.011348182335495949, 0.0014542207354679704, -0.01394849456846714, 0.0286184623837471, 0.0006214257446117699, 0.018036846071481705, 0.0085750175639987, -0.01632334664463997, 0.0008158854907378554, -0.0033668780233711004, 0.013895886950194836, 0.011122722178697586, 0.027115393429994583, -0.032346077263355255, -0.020952804014086723, 0.0018281096126884222, 0.0009187518735416234, -0.003261663019657135, -0.005553845781832933, -0.00018377386732026935, -0.010656770318746567, -0.00787608977407217, -0.0070494008250534534, 0.01603776216506958, 0.0033274225424975157, 0.015631934627890587, -0.013971040956676006, 0.015421504154801369, -0.023237470537424088, 0.0048924945294857025, 0.009319037199020386, 0.009852627292275429, 0.01593254692852497, 0.01027348730713129, 0.029385028406977654, -0.0185629203915596, 0.03336816653609276, -0.018938688561320305, -0.0023579418193548918, 0.006425626575946808, -0.0015359502285718918, -0.013069198466837406, -0.011242968030273914, -0.006207681261003017, -0.005238201003521681, 0.01967519335448742, 0.019735315814614296, 0.014745121821761131, -0.004960132762789726, -0.008289434015750885, -0.019975807517766953, 0.0020366606768220663, -0.03210558742284775, -0.0027487403713166714, 0.007673175074160099, 0.006331684533506632, -0.005955916829407215, 0.012265055440366268, 0.014752637594938278, 0.0008205825579352677, -0.004381450824439526, 0.028377972543239594, 0.008439741097390652, -0.008642655797302723, 0.010604162700474262, -0.023042071610689163, 0.005384750198572874, -0.010731923393905163, 0.015286227688193321, 0.016894513741135597, -0.0037858588621020317, 0.014669968746602535, 0.011964441277086735, 0.021974891424179077, -0.006605994887650013, -0.00010703506268328056, -0.018878566101193428, -0.01639849878847599, -0.04028229042887688, 0.0021493909880518913, 0.0009079485316760838, 0.015692057088017464, -0.005820640828460455, -0.00526074692606926, 0.004828614182770252, 0.003994409926235676, 0.024199435487389565, 0.007703236769884825, 0.01665402203798294, -0.019149119034409523, -0.01178407296538353, -0.0002258128661196679, -0.003265420673415065, 0.015571811236441135, 0.005279535427689552, 0.00937164481729269, -0.00017790248966775835, 0.005933370906859636, -0.003177115460857749, -0.004434057977050543, -0.005422327201813459, -0.006605994887650013, 0.014444507658481598, 0.001409128657542169, -0.0004473983426578343, 0.004035744350403547, -0.01258070021867752, -0.013174413703382015, -0.010483916848897934, 0.00046430790098384023, 0.01073943916708231, -0.002756255678832531, 0.03312767669558525, -0.03099331445991993, -0.0072861346416175365, -0.014031163416802883, -0.008372102864086628, 0.0060047670267522335, -0.020742373540997505, -0.004099624697118998, -0.018217215314507484, 0.005358446389436722, -0.005008982494473457, -0.00645944569259882, 0.005813125520944595, 0.002495097229257226, 0.0022621210664510727, -0.0033988181967288256, -0.007244800217449665, -0.015278711915016174, -0.012483000755310059, 0.00855998694896698, 0.0061738621443510056, -0.007173404097557068, 0.0015040099387988448, -0.011581158265471458, 0.0015246771508827806, 0.018247276544570923, 0.015692057088017464, -0.004313812591135502, -0.007654386572539806, 0.0019258091924712062, 0.014519661664962769, 0.008537440560758114, 0.01306168269366026, 0.015902485698461533, 0.02756631374359131, 0.022185321897268295, -0.04800807312130928, -0.009454313665628433, -0.013783156871795654, 0.012137294746935368, -0.005753002595156431, 0.014204016886651516, 0.004806068260222673, -0.010566585697233677, -0.001134818303398788, 0.022861702367663383, 0.0024857029784470797, -0.008680232800543308, 0.008462287485599518, 0.006932912860065699, 4.999470911570825e-05, -0.00832701101899147, 0.0061738621443510056, -0.000535468861926347, -0.009769958443939686, -0.016623960807919502, 0.024094220250844955, 0.011145268566906452, -0.01902887225151062, 0.0038309511728584766, 0.017931630834937096, 0.0015584962675347924, -0.02490587905049324, 0.003714463207870722, 0.02753625251352787, 0.006846486125141382, -0.014113832265138626, -0.006545872427523136, -0.00024330955056939274, 0.00892072357237339, 0.029490243643522263, 0.006057374179363251, -0.016233161091804504, 0.00012306390271987766, 0.0011226058704778552, 0.012265055440366268, 0.018833473324775696, 0.015601872466504574, -0.008680232800543308, 0.026514165103435516, -0.015090828761458397, 0.013429935090243816, 0.014654938131570816, -0.008184218779206276, -0.019524887204170227, 0.010844654403626919, -0.015586841851472855, -0.016022732481360435, -0.010333609767258167, -0.010318579152226448, 0.0018685045652091503, -0.0013170655583962798, -0.005249473731964827, -0.018758321180939674, -0.02317734807729721, -0.004392723552882671, -0.022591151297092438, 0.021328570321202278, -0.00032503900001756847, 0.002237696200609207, 0.006354230921715498, 0.0008187037310563028, 0.01711997389793396, 0.03417982533574104, -0.013956010341644287, 0.00040183652890846133, 0.015692057088017464, -0.010476402007043362, 0.031804971396923065, 0.021238386631011963, -0.010799561627209187, -0.0228166114538908, 0.0015528597868978977, -0.004659518599510193, 0.012513061985373497, 0.02761140652000904, -0.00191265728790313, -0.01073943916708231, 0.03366877883672714, 0.007252315524965525, 0.0058657326735556126, 0.010446340776979923, 0.014700029976665974, -0.013873341493308544, -0.003325543599203229, -0.0036844017449766397, -0.010709377937018871, 0.008372102864086628, 0.013550180941820145, 0.009394191205501556, 0.011799103580415249, 0.002451883861795068, 0.014805245213210583, 0.01668408326804638, -0.01133315172046423, -0.015181012451648712, -0.009860143065452576, 0.017059851437807083, 0.0028032264672219753, -0.008199249394237995, 0.007770874537527561, -0.006793878972530365, -0.006264046300202608, 0.00526074692606926, -0.030001288279891014, -0.030933191999793053, 0.026950055733323097, 0.003357483772560954, -3.8486825360450894e-05, -0.010303548537194729, -0.0094768600538373, -0.012881314381957054, -0.0008121277787722647, 0.014143893495202065, 0.024815695360302925, -0.002108056331053376, 0.012310148216784, 0.0023560631088912487, 0.0019333244999870658, 0.0006524265627376735, -0.0046783071011304855, -0.0007040945929475129, -0.01696966588497162, -0.015038221143186092, 0.010731923393905163, -0.0012193659786134958, 0.023117225617170334, -0.007293649949133396, -0.0034363949671387672, 0.011250482872128487, -0.0024406109005212784, -0.005223170388489962, -0.022215383127331734, 0.004884979221969843, -0.00855998694896698, -0.010566585697233677, -0.005580149590969086, 0.011829164810478687, 0.017886539921164513, 0.02140372432768345, -0.012979013845324516, 0.006932912860065699, -0.00044810291728936136, 0.020997894927859306, 0.0028633493930101395, -0.002451883861795068, 0.006534599233418703, -0.014384385198354721, 0.012272571213543415, -0.02356814593076706, 0.001725712907500565, -0.003759555285796523, -0.021313540637493134, -0.007440199144184589, 0.01237778551876545, 0.0033142706379294395, 0.0033518474083393812, -0.012212447822093964, 0.012535608373582363, 0.015722118318080902, 0.0028163783717900515, 0.01086719986051321, 0.0023410324938595295, 0.001035239896737039, 0.0022151502780616283, 0.006666117813438177, 0.004960132762789726, 0.012287601828575134, 0.0007524747052229941, 0.023523055016994476, 0.004625699482858181, -0.0009375402587465942, 0.004246174357831478, 0.024500049650669098, 0.004494180902838707, 0.0007322771707549691, -0.014970582909882069, 0.002483824035152793, -0.019164148718118668, 0.014827790670096874, -0.001217487151734531, 0.0029084414709359407, -0.007053158711642027, -0.01654880680143833, 0.02083255723118782, 0.026213550940155983, 0.0007106705452315509, 0.009206307120621204, 0.01405370980501175, -0.020276421681046486, -0.00029732612892985344, -0.027761712670326233, 0.010814592242240906, -0.0030625062063336372, 0.008281919173896313, -0.004787279758602381, 0.005888279061764479, -0.019840531051158905, 0.006196408532559872, -0.024920910596847534, -0.009567043744027615, -0.011603704653680325, -0.0022076349705457687, -0.011919349431991577, -0.003274814924225211, 0.017886539921164513, -0.02547704614698887, -0.011145268566906452, -0.004092109389603138, -0.0029403818771243095, 0.0023072133772075176, -0.02018623799085617, -0.03499148413538933, -0.017330404371023178, -0.004700853023678064, 0.01859298348426819, -0.005136743653565645, 0.008199249394237995, 0.003195903729647398, -0.001028663944453001, -0.0272055771201849, -0.02292182669043541, 0.03781725466251373, -0.0292647834867239, -0.026003120467066765, 0.009491890668869019, -0.005305839236825705, -0.00405453285202384, 0.012302632443606853, 0.017165064811706543, -0.006478234194219112, -0.003246632404625416, -0.013580242171883583, -0.014158925041556358, -0.008447256870567799, 0.011806619353592396, -0.014639907516539097, -0.019404640421271324, 0.008657686412334442, 0.012948952615261078, 0.01255815476179123, 0.021208325400948524, -0.0025026125367730856, -0.011941895820200443, 0.023853730410337448, 0.012122264131903648, -0.0006881245062686503, -0.006185135338455439, -0.0011338788317516446, 0.0272055771201849, 0.009304006583988667, 0.01004051137715578, -0.011829164810478687, 0.009251398965716362, -0.007590506225824356, 0.008672717027366161, -0.0027675286401063204, 0.009379160590469837, 0.022050045430660248, -0.008079004473984241, -0.009544498287141323, 0.003485244931653142, -0.00983759667724371, -0.005001467186957598, -0.006346715614199638, -0.025612322613596916, -0.0030192930717021227, -0.0290092620998621, 0.009852627292275429, -0.0265592560172081, 0.021027956157922745, -0.01730034127831459, 0.0069554587826132774, -0.0012682158267125487, 0.022681334987282753, -0.013956010341644287, -0.018983781337738037, 0.0035134274512529373, 0.007308680564165115, 0.015353865921497345, -0.016909543424844742, -0.002123087178915739, 0.0037896165158599615, 0.005504996050149202, 0.005474934354424477, -0.012355240061879158, 0.018983781337738037, -0.018427645787596703, 0.015992671251296997, -0.009409221820533276, -0.029385028406977654, 0.0036261577624827623, 0.010130695067346096, -0.025537168607115746, -0.0037088266108185053, 0.0013630971079692245, 0.010341125540435314, -0.019960777834057808, -0.018788382411003113, 0.00623398507013917, 0.017931630834937096, -0.013242051936686039, -0.008965815417468548, -0.0062189544551074505, 0.013685457408428192, -0.00798130501061678, 0.04851911589503288, 0.016984697431325912, 0.006260288879275322, 0.005918340291827917, 0.0044152699410915375, -0.014241593889892101, -0.0048436447978019714, 0.020637158304452896, 0.010513978078961372, -0.010326094925403595, 0.0065759336575865746, 0.002891531912609935, 0.017721202224493027, 0.011460913345217705, 0.0006505477358587086, 0.011430851183831692, -0.020321514457464218, 0.00690285163000226, -0.0055200266651809216, 0.00787608977407217, -0.008890662342309952, -0.009394191205501556, -0.010754469782114029, 0.007413895335048437, 0.004396481439471245, -0.005474934354424477, 0.009221337735652924, -0.008898178115487099, -0.024244528263807297, 0.014354323968291283, 0.014279169961810112, -0.00014302655472420156, -0.008898178115487099, 0.009409221820533276, 0.013302174396812916, 0.018352491781115532, 0.01472257636487484, 0.008424710482358932, 0.008221795782446861, 0.007913666777312756, -0.02864852547645569, -0.00974741205573082, -0.004058290272951126, 0.0020122358109802008, -0.008672717027366161, 0.006203923840075731, 0.008146642707288265, 0.024454958736896515, -0.01737549528479576, -0.0038027684204280376, -0.0019596281927078962, 0.009349098429083824, -0.002237696200609207, 0.0010014207800850272, 0.01863807439804077, 0.01593254692852497, 0.004993951879441738, -0.003960590809583664, -0.012948952615261078, 0.006365503650158644, 0.012032079510390759, 0.011122722178697586, -0.002057327888906002, 0.005666575860232115, 0.002825772622600198, 0.00622646976262331, 0.011611220426857471, 0.012189902365207672, -0.002218907931819558, 0.001030542771331966, 0.005384750198572874, -0.006117497105151415, 0.00038210873026400805, -0.007778390310704708, 0.0071433428674936295, 0.0019727800972759724, -0.020772434771060944, -0.01935954950749874, -0.013813218101859093, -0.004869948606938124, -0.0013461875496432185, -0.026303734630346298, 0.018683167174458504, -0.0007322771707549691, -0.02710036188364029, -0.0019389609806239605, -0.007898636162281036, -0.0010333609534427524, 0.007056916132569313, 0.02421446703374386, -0.004249931778758764, -0.0016552564920857549, -0.007455229759216309, 0.008635140024125576, 0.004982678685337305, 0.010746954008936882, -0.01596261002123356, -0.005054074805229902, 0.00938667543232441, 0.00041663236333988607, -0.010784531012177467, 0.0031414174009114504, -0.005114197731018066, 0.0030268083792179823, 0.01097241509705782, -0.017525803297758102, -0.01799175515770912, -0.014497115276753902, 0.01450463104993105, 0.009086061269044876, -0.007830997928977013, 0.0020385393872857094, -0.009101091884076595, 0.014910459518432617, 0.005625241436064243, 0.001436371821910143, 0.003293603425845504, 0.00382531457580626, 0.015361380763351917, -0.008462287485599518, -0.005403538700193167, -0.005407296121120453, 0.010822108015418053, 0.0027074057143181562, -0.011941895820200443, -0.004400238860398531, -0.006320411805063486, -0.009439283050596714, -0.0024067917838692665, 0.0020084779243916273, 0.019224273040890694, -0.02609330415725708, -0.0052118971943855286, 0.012407847680151463, -0.004167262930423021, -0.008507379330694675, -0.019239302724599838, -0.016413530334830284, 0.0016017095185816288, 0.005756760016083717, -0.008800477720797062, 0.004719641525298357, 0.02176446095108986, 0.0165037140250206, 0.010250940918922424, -0.005546330474317074, -0.012565669603645802, -0.0033762722741812468, 0.012933922000229359, 0.015661995857954025, -0.002692375099286437, -0.00411841319873929, -0.003199661383405328, 0.011130237020552158, 0.005888279061764479, 0.0118592269718647, -0.0043513891287148, 0.001799926976673305, 0.004704610910266638, 0.007830997928977013, -0.016699112951755524, 0.018863534554839134, 0.007883604615926743, 0.018081938847899437, 0.0014297958696261048, -0.0016862573102116585, -0.00946182943880558, 0.024860786274075508, -0.027551284059882164, 0.0011827286798506975, -0.013550180941820145, -0.006222711876034737, -0.013144351541996002, -0.0011254240525886416, 0.006327927112579346, 0.02111814171075821, 0.0019333244999870658, 0.006406838074326515, -0.01530125830322504, -0.0076318406499922276, -0.0035153061617165804, -0.01133315172046423, -0.010859685018658638, -0.004306297283619642, -0.0317147895693779, -0.00202350877225399, -0.0002933336072601378, 0.01773623190820217, -0.003635551780462265, -0.006970489863306284, 0.007090735249221325, 0.0003177585022058338, 0.002998625859618187, -0.015353865921497345, -0.002201998373493552, 0.030301902443170547, 0.020592067390680313, -0.01647365279495716, -0.029279815033078194, 0.012565669603645802, 0.007041885517537594, -0.0007609294843859971, -0.0056139687076210976, 0.011017506942152977], "12b52d4e-62a9-485c-9295-ac3c7b7712e4": [-0.02709745056927204, 0.03216445446014404, 0.003463894361630082, 0.022974610328674316, -0.001466401619836688, -0.029866991564631462, -0.004657865967601538, 0.04689338058233261, -0.015468521043658257, 0.04667307808995247, -0.005216495133936405, 0.002466623205691576, 0.02198323979973793, -0.01471319142729044, -0.0021204305812716484, 0.013178928755223751, -0.020740091800689697, -0.01101522333920002, -0.0024784253910183907, -0.029678160324692726, 0.06451773643493652, -0.013595933094620705, -0.06646900624036789, -0.01306090783327818, -0.004181851167231798, -0.019024865701794624, -0.031692370772361755, -0.008953803218901157, -0.04834109544754028, -0.01287994347512722, -0.002167638624086976, -0.00617639347910881, -0.003969414625316858, 0.002411547116935253, 0.006361291743814945, -0.062188807874917984, 0.0035720798186957836, 0.013139588758349419, -0.015098724514245987, -0.010739843361079693, 0.008576138876378536, 0.027018770575523376, 0.007049743086099625, -0.010771315544843674, -0.05013500526547432, 0.018662936985492706, -0.022266488522291183, 0.00688058091327548, 0.005743652582168579, 0.010196950286626816, 0.017687302082777023, -0.010787051171064377, -0.012557354755699635, 0.005995429120957851, 0.015680957585573196, -0.045697443187236786, 0.02544516697525978, 0.11103345453739166, 0.023289330303668976, -0.027805572375655174, 0.01952841877937317, -0.026169024407863617, 0.01082639116793871, -0.01328121218830347, 0.013053040020167828, 0.00033734121825546026, -0.05281012877821922, 0.027899987995624542, 0.00880431104451418, 0.023021817207336426, 0.019449738785624504, 0.002387943211942911, -0.026279177516698837, 0.000989403109997511, 0.04195226728916168, 0.0191507525742054, 0.021810142323374748, 0.030748210847377777, 0.024925878271460533, -0.02756953053176403, 0.01804923079907894, -0.01894618570804596, 0.025822831317782402, 0.0039064702577888966, 0.05790860578417778, 0.014705323614180088, -0.018285270780324936, -0.06842027604579926, -0.041008103638887405, -0.017954815179109573, 0.01311598438769579, 0.030559377744793892, -0.0287339985370636, 0.020724356174468994, 0.023131970316171646, 0.00637309392914176, 0.004689338151365519, 0.0018204624066129327, 0.00653045391663909, -0.050166476517915726, -0.005078805144876242, 0.017529942095279694, -0.0034599604550749063, -0.0023761410266160965, 0.005161419045180082, -0.015287556685507298, 0.009913701564073563, -0.002604313660413027, 0.010975883342325687, -0.0037215719930827618, 0.01691623590886593, -0.01434339489787817, -0.0049017746932804585, -0.019308114424347878, -0.029741104692220688, -0.012856340035796165, -0.018348215147852898, 0.03386394679546356, -0.026845673099160194, -0.026751257479190826, 0.0532192662358284, -0.01899339258670807, 0.01899339258670807, -0.005090606864541769, -0.027333490550518036, 0.026861410588026047, -0.01022055372595787, 0.020346691831946373, 0.01932385005056858, 0.021479686722159386, -0.020677149295806885, 0.006325885653495789, 0.0303390733897686, 0.03827003389596939, 0.005216495133936405, -0.011062432080507278, 0.016585780307650566, 0.09548625349998474, -0.029709631577134132, 0.0008723663631826639, -0.026688313111662865, -0.0016552340239286423, -0.028970038518309593, 0.010393650270998478, -0.029977144673466682, -0.017466997727751732, -0.018505575135350227, 0.029583744704723358, -0.011424360796809196, 0.033549223095178604, -0.04041013494133949, -0.027396434918045998, -0.03145633265376091, 0.02406039647758007, 0.05759388580918312, -0.02944212034344673, -0.0026574227958917618, 0.022093391045928, -0.008851518854498863, 0.016695931553840637, -0.01107029989361763, -0.022502528503537178, 0.00784834660589695, 0.04777459800243378, 0.05067002773284912, -0.014854815788567066, 0.05123652517795563, 0.024768518283963203, -0.0361928790807724, 0.027821308001875877, 0.010629691183567047, -0.028073083609342575, 0.036004044115543365, 0.0040953028947114944, 0.006243271287530661, 0.012769791297614574, 0.032919783145189285, 0.03874211385846138, -0.004728678148239851, -0.010134005919098854, -0.006990733090788126, 0.005916748661547899, 0.023666994646191597, -0.003985150717198849, 0.017262428998947144, 0.030417753383517265, 0.01778171770274639, 0.017152277752757072, 0.004307739436626434, 0.00944948848336935, -0.01831674389541149, -0.021353797987103462, 0.01311598438769579, -0.006813702639192343, -0.013651009649038315, -0.014036541804671288, -0.0035760137252509594, -0.01027563028037548, 0.0009377692476846278, 0.009189844131469727, -0.040693383663892746, -0.013808369636535645, 0.004406089428812265, 0.021353797987103462, -0.0011644664919003844, 0.019182225689291954, -0.008961671032011509, -0.02884414978325367, 0.016743140295147896, -0.0015549168456345797, 0.04875023290514946, -0.013540857471525669, 0.023352274671196938, -0.010126138105988503, 0.03383247181773186, 0.014201770536601543, -0.01926090568304062, -0.008796443231403828, -0.010393650270998478, -0.011054564267396927, 0.020488316193223, -0.016585780307650566, -0.02267562411725521, -0.04327409341931343, -0.032290343195199966, -0.02064567618072033, -0.029520800337195396, 0.0024587553925812244, 0.0069986009038984776, -0.003507168497890234, -0.004268398974090815, -0.007207103539258242, -0.014524359256029129, -0.029127398505806923, -0.024249227717518806, 0.045540083199739456, 0.040630441159009933, 0.01570456102490425, -0.016105830669403076, 0.02671978622674942, 0.002051585353910923, 0.03241622820496559, -0.026782730594277382, -0.023604050278663635, -0.0024489203933626413, 0.025948720052838326, 0.007734260521829128, 0.04368323087692261, -0.014138826169073582, 0.02347816340625286, 0.003410785458981991, -0.014776135794818401, -0.007631976623088121, 0.005767256487160921, -0.018757352605462074, 0.025791360065340996, 0.014902024529874325, -0.0011664335615932941, 0.009197711944580078, -0.04179490730166435, -0.019009128212928772, 0.018489839509129524, -0.03789237141609192, 0.013430705294013023, 0.015625881031155586, -0.0271446593105793, 0.02155836671590805, 0.00941801629960537, 0.008206341415643692, 0.025854304432868958, 0.034241609275341034, -0.01686902903020382, -0.00594822084531188, 0.019024865701794624, -0.0067664943635463715, -0.02399745211005211, 0.0018735715420916677, 0.021888822317123413, -0.017152277752757072, 0.00594822084531188, -0.016255322843790054, -0.02889135852456093, 0.02734922617673874, -0.000355536030838266, -0.001201839535497129, 0.018489839509129524, -0.012864207848906517, -0.031424861401319504, -0.006259007379412651, 0.006573728285729885, 0.00026529969181865454, 0.005271571222692728, 0.00795456487685442, 0.03170811012387276, 0.009536036290228367, 0.00480342423543334, 0.012683243490755558, -0.03943450003862381, 0.011274868622422218, 0.004956850782036781, 0.01022055372595787, -0.021054813638329506, -0.028183236718177795, 0.004091368988156319, 0.009315731935203075, -0.016617251560091972, 0.03748323395848274, 0.020409636199474335, 0.013045172207057476, 0.03490252420306206, 0.025476638227701187, -0.012659639120101929, 0.005173221230506897, -0.02314770594239235, 0.005759388208389282, 0.0183639507740736, -0.03417866677045822, 5.2832503570243716e-05, -0.011794157326221466, -0.02033095620572567, 0.008080453611910343, 0.0008241747855208814, -0.06291266530752182, 0.052936017513275146, 0.03751470521092415, -0.016223851591348648, 0.014854815788567066, 0.004272333346307278, -0.013564460910856724, -0.012179690413177013, -0.01682182028889656, -0.02944212034344673, 0.012384259141981602, 0.014477151446044445, -0.01575176976621151, -0.05775124579668045, -0.03285684064030647, -0.021306589245796204, 0.008898727595806122, -0.03263653442263603, -0.002136166673153639, 0.0013405133504420519, 0.00862334668636322, -0.021526893600821495, -0.040000997483730316, -0.0024705573450773954, 0.007415606174618006, 0.030638057738542557, -0.01830100826919079, -0.025098973885178566, 0.0009077724535018206, -0.00960684847086668, 0.05690149962902069, 9.472354577155784e-05, 0.017262428998947144, -0.030165977776050568, -0.04283348470926285, 0.04267612472176552, -0.005346317309886217, 0.0023505701683461666, -0.023194914683699608, -0.0479004867374897, 0.01707359589636326, 0.014241110533475876, -0.0017909574089571834, 0.029520800337195396, 0.006463576108217239, -0.005511546041816473, -0.025586791336536407, 0.008261417970061302, -0.0036586278583854437, 0.019339585676789284, -0.027978667989373207, -0.0018155449070036411, -0.0351228266954422, -0.0660284012556076, 0.03704262524843216, -0.012856340035796165, 0.020787300541996956, 0.006707484368234873, -3.93400841858238e-05, 0.014028673991560936, -0.04635835438966751, 0.0356578528881073, 0.05007205903530121, -0.022927401587367058, 0.039938054978847504, -0.04072485491633415, -0.043714702129364014, 0.01370608527213335, -0.04805784672498703, -0.008426645770668983, -0.0016424485947936773, -0.006628804374486208, 0.012156086042523384, -0.03952891752123833, 0.01608222723007202, -0.01644415594637394, 0.014673851430416107, -0.003345874138176441, -0.01585405506193638, 0.004103170707821846, 0.004732612054795027, -0.015979941934347153, 0.006286545656621456, -0.038553282618522644, -0.013462177477777004, 0.0036527267657220364, -0.0029052651952952147, -0.00017715331341605633, 0.012038066051900387, -0.016365475952625275, 0.0007371348328888416, 0.028859885409474373, 0.006215733475983143, 0.018442632630467415, -0.009913701564073563, 0.018175119534134865, -0.06008017808198929, -0.004398221615701914, 0.03395836055278778, 0.011880706064403057, 0.01644415594637394, 0.0183639507740736, -0.004185785073786974, 0.011487305164337158, -0.021212173625826836, -0.0005758404731750488, 0.007136291358619928, -0.0020889583975076675, -0.0015627848915755749, -0.0004976521013304591, -0.013485780917108059, 0.012580959126353264, 0.02725481055676937, -0.017168013378977776, 0.014241110533475876, 0.0220776554197073, 0.007195301353931427, -0.011715477332472801, 0.0023190979845821857, 0.03842739388346672, 0.011487305164337158, -0.004764084238559008, -0.024390852078795433, -0.02513044700026512, -0.03038628213107586, -0.0102441580966115, 0.0014309955295175314, -0.005723982118070126, -0.006003296934068203, 0.016680195927619934, -0.05705885961651802, -0.03713703900575638, 0.010983752086758614, -0.010535274632275105, 0.02645227313041687, 0.022486792877316475, 0.014178166165947914, -0.05041825398802757, -0.006353423930704594, 0.01522461324930191, 0.002785278018563986, 0.015625881031155586, -0.01394212618470192, -0.018002022057771683, 0.001221509650349617, 0.016727404668927193, -0.018426895141601562, 0.02694009058177471, 0.012148218229413033, 0.003147206734865904, 0.08082026988267899, 0.04412383958697319, -0.002987879328429699, -0.001891274587251246, -0.020724356174468994, 0.02756953053176403, 0.006180327385663986, 0.012140350416302681, -0.007923092693090439, -0.013910654000937939, -0.013855577446520329, 0.024674100801348686, 0.025901511311531067, 0.0033557091373950243, -0.025209126994013786, 0.014705323614180088, 0.018647199496626854, 0.031645163893699646, -0.00535025168210268, 0.001370018464513123, 0.0139735983684659, 0.008316493593156338, -0.004272333346307278, -0.011455832980573177, 0.004488703794777393, -0.02372993901371956, -0.016271058470010757, -0.00941801629960537, 0.004500505514442921, -0.005771190393716097, 0.020614204928278923, 0.01957562565803528, -0.06816849857568741, 0.04607510566711426, -0.017010653391480446, 0.041228409856557846, -0.008269285783171654, -0.004390353336930275, 0.005535149946808815, 0.01247867476195097, -0.02464262954890728, 0.0029269023798406124, -0.007218905724585056, 0.004378551617264748, -0.017970550805330276, -0.00819847360253334, 0.02272283285856247, 0.018599992617964745, 0.008898727595806122, -0.04110252112150192, -0.03666495904326439, -0.0003643875243142247, -0.022927401587367058, -0.013383496552705765, -0.017655830830335617, -0.03575227037072182, 0.01208527386188507, -0.0367279015481472, -0.014618775807321072, 0.007340859621763229, -0.007812940515577793, 0.01519314106553793, -0.006868778727948666, 0.015610145404934883, 0.004933246411383152, 0.03285684064030647, 0.02388729900121689, -0.014933495782315731, -0.05243246629834175, 0.05051266774535179, 0.005173221230506897, -0.025885775685310364, -0.006825504824519157, 0.03071673773229122, 0.017057860270142555, -0.0010425122454762459, -0.01272258348762989, 0.01883603259921074, -0.026751257479190826, -0.012179690413177013, -0.025555318221449852, -0.0038199222180992365, -0.008214210160076618, -0.02783704362809658, 0.029741104692220688, -0.0027774099726229906, -0.008308625780045986, -0.034398969262838364, -0.01131420861929655, 0.007631976623088121, -0.01745126210153103, 0.015452785417437553, 0.007710656616836786, -0.0029682093299925327, -0.05457256734371185, 0.02549237571656704, 0.0007032040157355368, 0.018599992617964745, 0.011558117344975471, -0.007722458802163601, 0.04443855956196785, -0.009693397209048271, 0.01535050105303526, 0.016011415049433708, -0.0220776554197073, -0.013296948745846748, -0.04815226420760155, 0.030055824667215347, -0.008261417970061302, -0.019512681290507317, 0.006904184818267822, -0.029001509770751, 0.02155836671590805, -0.005645302124321461, 0.008914463222026825, -0.04349439963698387, -0.007919158786535263, 0.03162942826747894, -0.016318267211318016, 0.031125875189900398, -0.02075582928955555, 0.014138826169073582, -0.011148979887366295, 0.01655430719256401, 0.0034068513195961714, -0.02629491314291954, 0.03745175898075104, 0.01413095835596323, 0.02012638747692108, 0.010747711174190044, 0.016058621928095818, -0.02102334052324295, -0.03263653442263603, 0.024359380826354027, -0.023289330303668976, 0.020362427458167076, -0.0017073596827685833, -0.002677092794328928, 0.03452485799789429, -0.02406039647758007, 0.029080191627144814, -0.005275505594909191, 0.004492637701332569, 0.007891621440649033, 0.022282224148511887, 0.03414719179272652, 0.01941826567053795, -0.013588065281510353, 0.029206078499555588, -0.001551966299302876, 0.030937042087316513, -0.008450250141322613, 0.009150504134595394, 0.013241872191429138, -0.031755317002534866, -0.0008364685345441103, -0.017765982076525688, 0.015940602868795395, -0.009111163206398487, -0.00550761166960001, -0.0030429556500166655, -0.03594110161066055, 0.01778171770274639, -0.01149517297744751, 0.016459891572594643, 0.011975121684372425, -0.012187558226287365, -0.022093391045928, -0.005771190393716097, -0.005586292129009962, 0.008875123225152493, 0.021463951095938683, -0.00746281398460269, -0.005291241221129894, 0.0032337550073862076, -0.011849233880639076, 0.026751257479190826, -0.012911415658891201, 0.004563449881970882, 0.010236290283501148, -0.013934258371591568, 0.018599992617964745, -0.014665983617305756, -0.01207740604877472, -0.020504051819443703, -0.005173221230506897, 0.017309637740254402, 0.01535050105303526, 0.00878070667386055, -0.04588627442717552, 0.031377650797367096, 0.008104057051241398, 0.015437048859894276, 0.029630951583385468, 0.014248978346586227, 0.014618775807321072, 0.0026318517047911882, 0.019245170056819916, 0.02138526923954487, -0.05444667860865593, 0.010897203348577023, 0.012101010419428349, 0.0019502846989780664, -0.0010651327902451158, 0.006542256101965904, 0.007655580528080463, -0.0033498082775622606, -0.027931461110711098, -0.025397958233952522, -0.05419490113854408, -0.04299084469676018, 0.025838566944003105, -0.00282658520154655, -0.017325373366475105, -0.020897453650832176, -0.012895680032670498, -0.027333490550518036, -0.018662936985492706, -0.0191507525742054, 0.019182225689291954, -0.011156847700476646, 0.0500405877828598, -0.0032317880541086197, 0.0015686858678236604, 0.0020633875392377377, -0.002858057152479887, 0.0046381959691643715, 0.0035268384963274, -0.030480697751045227, -0.015145932324230671, -0.014595171436667442, -0.031487803906202316, 0.002092892536893487, 0.006829438731074333, -0.019449738785624504, -0.020047707483172417, -0.010181213729083538, 0.029127398505806923, -0.013509385287761688, -0.005291241221129894, 0.015468521043658257, -0.01131420861929655, 0.008898727595806122, -0.021102022379636765, -0.006388829555362463, 0.005928550846874714, -0.01831674389541149, 0.022392375394701958, 0.009410148486495018, 0.046169523149728775, -0.04544566571712494, -0.0090482197701931, 0.0011979056289419532, -0.010944411158561707, -0.00758476834744215, -0.00637309392914176, 0.025901511311531067, 0.0139735983684659, 0.02985125593841076, -0.017042124643921852, 0.0029347704257816076, 0.015035780146718025, -0.003155074780806899, -0.036916736513376236, -0.013485780917108059, -0.012407862581312656, 0.04560302570462227, 0.03011876903474331, 0.04330556467175484, 0.0005453519406728446, -0.0011280769249424338, -0.03732587397098541, -0.004339211154729128, -0.002679059747606516, 0.005519413854926825, 0.001433946075849235, -0.016271058470010757, 0.00046200011274777353, -0.007498220074921846, -0.026845673099160194, 0.000711072061676532, -0.002144034719094634, 0.03587815910577774, 0.008796443231403828, 0.02772689238190651, 0.01762435771524906, 0.013855577446520329, 0.034241609275341034, -0.02044110745191574, 0.025885775685310364, -0.000392909103538841, -0.0028246180154383183, 0.024280700832605362, 0.014949232339859009, 0.012494411319494247, -0.012124613858759403, 0.011156847700476646, 0.049253787845373154, 0.04003246873617172, 0.04226698726415634, -0.009134767577052116, 0.0564294159412384, 0.00688058091327548, -0.03044922649860382, 0.0038297572173178196, -0.03150353953242302, 0.0026082475669682026, -0.022329432889819145, -0.01272258348762989, -0.007329057902097702, 0.014878420159220695, 0.027207601815462112, 0.005535149946808815, -0.03896242007613182, 0.02234516851603985, 0.006605200469493866, -0.015562937594950199, 0.030464962124824524, 0.011510908603668213, -0.03631876781582832, -0.007030073087662458, 0.015499993227422237, -0.00034152111038565636, -0.012840603478252888, 0.008584006689488888, -0.005952154751867056, 0.002212879713624716, -0.010157610289752483, 0.009221316315233707, 0.007427407894283533, 0.04535124823451042, 0.03679084777832031, 0.031125875189900398, -0.015130196698009968, -0.008898727595806122, -0.013603800907731056, -0.02122790925204754, -0.01735684461891651, 0.028922829777002335, 0.011935781687498093, -0.006003296934068203, 0.04922231286764145, -0.007738194894045591, -0.02395024336874485, 0.03241622820496559, 0.02278577722609043, 0.02587004005908966, -0.021212173625826836, 0.002572841476649046, -0.007100885268300772, -0.0012510146480053663, 0.02363552339375019, 0.02623196877539158, -0.0006023950409144163, 0.006046570837497711, -0.018379688262939453, 0.0029583743307739496, 0.0049253785982728004, -0.029898464679718018, -0.025256333872675896, -0.029206078499555588, 0.004689338151365519, 0.005358119495213032, 0.021778671070933342, -0.00584200257435441, 0.00793489534407854, -0.0266096331179142, 0.014304054901003838, 0.008096189238131046, -0.05158272013068199, 0.001073000836186111, 0.005484007764607668, -0.005196825135499239, 0.01538197323679924, 0.013690349645912647, -0.024139076471328735, 0.04176343232393265, 0.03716851398348808, 0.0250202938914299, 0.016774611547589302, 0.018599992617964745, 0.0018037428380921483, -0.020000498741865158, 0.01585405506193638, 0.029048718512058258, 0.020252276211977005, -0.039780694991350174, -0.004032358527183533, 0.007553296163678169, -0.01820659078657627, -0.011558117344975471, -0.009717000648379326, -0.012840603478252888, -0.007809006609022617, 0.008733498863875866, 0.008607610128819942, -0.008277153596282005, 0.019119281321763992, -0.01553933322429657, -0.005554819945245981, 0.03713703900575638, 0.02176293544471264, -0.0030468895565718412, -0.013627405278384686, -0.013430705294013023, 0.005605962127447128, -0.025791360065340996, 0.001965037314221263, -0.004453297704458237, 0.017388317734003067, -0.02107054926455021, 0.03000861592590809, -0.005413195583969355, 0.004677535966038704, 0.030905570834875107, -0.007718524429947138, -0.023556843400001526, 0.004685404244810343, -0.013981466181576252, 0.005342383403331041, 0.0028737932443618774, -0.0007499203784391284, -0.00853679794818163, 0.0070576113648712635, 0.00947309285402298, -0.0048191603273153305, -3.571341949282214e-05, 0.00880431104451418, -0.007923092693090439, -0.05328221246600151, -0.03657054156064987, -0.0075729661621153355, 0.030842626467347145, -0.028356332331895828, -0.007336925715208054, -0.005574489943683147, -0.0005246984073892236, -0.01085786335170269, 0.014540095813572407, 0.002696762792766094, 0.01043299026787281, 0.018190855160355568, 0.0835268646478653, 0.007340859621763229, 0.0012460971483960748, -0.00297411042265594, 0.01798628643155098, -0.039308611303567886, -0.013525120913982391, -0.009929437190294266, 0.0012775692157447338, -0.0022050116676837206, -0.04103957489132881, 0.0004966685664840043, -0.025885775685310364, -0.02314770594239235, -0.043242622166872025, 0.032762423157691956, -0.014854815788567066, 0.008127661421895027, 0.00846598669886589, -0.012777659110724926, -0.010763446800410748, -0.028749734163284302, -0.025775624439120293, -0.007152027450501919, -0.04261317849159241, 0.011660400778055191, 0.016349738463759422, -0.01608222723007202, 0.029080191627144814, -0.0038218891713768244, -0.008017509244382381, -0.007970301434397697, -0.0034894654527306557, 0.03022892028093338, -0.003945810720324516, -0.0036822319962084293, 0.030354809015989304, 0.05913601443171501, -0.0020987936295568943, 0.014256847091019154, -0.004937180783599615, 0.005680708214640617, -0.0022895929869264364, -0.01376116182655096, -0.010661163367331028, -0.017466997727751732, 0.008764971047639847, -0.0014368966221809387, -0.010259893722832203, -0.0013828040100634098, -0.01789187081158161, 0.014429942704737186, -0.01745126210153103, 0.016145171597599983, -0.025995928794145584, -0.024831460788846016, -0.033706583082675934, 0.0011880705133080482, 0.0236827302724123, 0.01256522350013256, 0.006617002189159393, -0.010495934635400772, -0.03266800567507744, -0.0030468895565718412, -0.056870028376579285, -0.030795417726039886, 0.002783311065286398, -0.05029236525297165, 0.006030835211277008, -0.017152277752757072, 0.01943400129675865, 0.016223851591348648, -0.008182737976312637, -0.008332230150699615, 0.00535025168210268, -0.0008271252736449242, 0.019355321303009987, -0.016837555915117264, 0.025193389505147934, 0.004217257257550955, -0.006687814369797707, -0.01061395462602377, 0.0021833747159689665, -0.023761412128806114, -0.0074195400811731815, -0.019890347495675087, -0.011628929525613785, -0.03332892060279846, -0.02533501386642456, 0.03534313291311264, 0.008088321425020695, 0.014178166165947914, 0.0228801928460598, 0.007734260521829128, 0.0009058054420165718, 0.037703536450862885, -0.010606086812913418, -0.012187558226287365, 0.009008879773318768, -0.009040351957082748, -0.01492562796920538, 0.029819784685969353, 0.025854304432868958, -0.01608222723007202, 0.004114972893148661, 0.022471057251095772, -0.0038533613551408052, -0.005904946941882372, -0.009032483212649822, -0.023808619007468224, -0.0007287750486284494, 0.020047707483172417, 0.001094637904316187, -0.013721821829676628, 0.016632987186312675, -0.0067428904585540295, -0.037011150270700455, -0.011967253871262074, -0.00016817885625641793, 0.004905708599835634, -0.0076241083443164825, -0.006152789108455181, -0.0009761258261278272, -0.09391265362501144, -0.009543905034661293, -0.014705323614180088, -0.0139735983684659, -0.015932735055685043, -0.02830912545323372, 0.014862683601677418, 0.010637558996677399, -0.022754305973649025, 0.0008620396256446838, -0.013108116574585438, 0.003867130260914564, 0.0018204624066129327, 0.014516491442918777, -0.007773600984364748, -0.009040351957082748, -0.019544154405593872, -0.007647712714970112, -0.006672078277915716, -0.006640606094151735, -0.036004044115543365, -0.006872712634503841, 0.02118070237338543, -0.010039589367806911, -0.03128323704004288, 0.018127910792827606, 0.02852942980825901, 0.005956088658422232, -0.015208876691758633, -0.015885526314377785, -0.0061213173903524876, -0.010338574647903442, -0.0073959361761808395, -0.01872587949037552, -0.010259893722832203, 0.005373855587095022, 0.0073683978989720345, -0.006156723480671644, 0.027915723621845245, 0.013289080932736397, 0.013139588758349419, 0.013470045290887356, -0.006451773922890425, 0.005267637316137552, 0.01878882385790348, -0.0023033618927001953, -0.007734260521829128, -0.025319278240203857, 0.009953041560947895, 0.007694920524954796, 0.014603039249777794, -0.0012726517161354423, -0.00843451451510191, -0.015397708863019943, -0.006034769117832184, 0.014933495782315731, 0.016058621928095818, -0.0011733180144801736, -0.00594822084531188, 0.009740605019032955, 0.02852942980825901, 0.014516491442918777, -0.0016552340239286423, -0.0019906084053218365, -0.021810142323374748, -0.007152027450501919, 0.016097962856292725, 0.015279688872396946, 0.017734510824084282, 0.002157803624868393, 0.0007656564121134579, -0.014610907062888145, 0.002323032123968005, 0.0041464450769126415, 0.04078780114650726, -0.026483744382858276, 0.01649136282503605, 0.03054364211857319, 0.009370808489620686, 0.008088321425020695, -0.01713654026389122, -0.003302600234746933, 0.018127910792827606, 0.0009087559883482754, -0.03199135512113571, -0.01841115951538086, -0.010936543345451355, -0.004166115075349808, -0.02011065185070038, -0.00513781514018774, 0.01639694720506668, 0.01820659078657627, 0.02442232519388199, 0.020661411806941032, -0.019921818748116493, 0.05992281809449196, -0.019040601328015327, 0.007502153981477022, -0.029945673421025276, -0.007557230070233345, 0.02937917597591877, 0.0003307025763206184, -0.0183639507740736, -0.00944948848336935, -0.0141073539853096, -0.01926090568304062, -0.0030429556500166655, 0.016475627198815346, -0.020094916224479675, -0.008576138876378536, -0.0102441580966115, 0.0012146250810474157, -0.006624870467931032, 0.006522586103528738, -0.004775886423885822, -0.0019030766561627388, 0.015444917604327202, 0.007435276173055172, 0.0025551384314894676, 0.023131970316171646, -0.0020476514473557472, 0.02187308669090271, 0.0001483858795836568, -0.030622322112321854, -0.0036723969969898462, -0.0020161792635917664, -0.022801512852311134, -0.015901261940598488, -0.01351725310087204, 0.015618013218045235, -0.01272258348762989, 0.0036822319962084293, -0.014610907062888145, 0.014571567066013813, 0.006593398284167051, -0.018662936985492706, 0.025775624439120293, -0.024721309542655945, 0.029835520312190056, -0.023619787767529488, -0.006302281748503447, 0.01170760951936245, -0.01003172155469656, -0.011581720784306526, -0.007923092693090439, -0.007974235340952873, -0.026247704401612282, -0.02017359621822834, 0.0043510133400559425, 0.018961921334266663, 0.0009731753380037844, 0.025350751355290413, 0.046232469379901886, 0.012329182587563992, -0.014839080162346363, -0.0218258798122406, -0.008001773618161678, -0.013171060010790825, 0.0002805439871735871, 0.012738319113850594, -0.013367760926485062, 0.002206978853791952, 0.0250202938914299, -0.015082988888025284, 0.024563949555158615, -0.0014624675968661904, -0.006656342186033726, -0.003656660905107856, -0.023855827748775482, 0.008277153596282005, 0.02399745211005211, -0.010724106803536415, 0.003802219172939658, -0.01937105692923069, 0.02410760335624218, -0.0139735983684659, 0.0002734135778155178, 0.01660151593387127, 0.018694408237934113, -0.014288319274783134, -0.008930198848247528, 0.0035838817711919546, 0.009103295393288136, -0.0022954938467592, 0.003050823463127017, 0.024296436458826065, 0.018914712592959404, -0.009276391938328743, -0.013769029639661312, 0.004657865967601538, 0.01168400514870882, -0.0075257583521306515, 0.0007553296163678169, 0.008127661421895027, -0.0028777271509170532, 0.016042886301875114, 0.03468221798539162, 0.02911166287958622, -0.007852280512452126, -0.0473654605448246, -0.014020806178450584, -0.014288319274783134, 0.017954815179109573, 0.0016650691395625472, 0.013989333994686604, -0.005790860392153263, -0.03186547011137009, 0.04805784672498703, 0.0226284172385931, -0.02171572670340538, -0.002293526893481612, -0.009252787567675114, 0.008505326695740223, -0.009850757196545601, -0.01101522333920002, -0.011849233880639076, -0.006904184818267822, -0.024501005187630653, 0.007002535276114941, -0.025303542613983154, 0.013430705294013023, -0.012573091313242912, 0.009071823209524155, 0.01354872528463602, 0.011542380787432194, 0.010464462451636791, 0.023084761574864388, -0.054478149861097336, -0.018033495172858238, 0.0015568839153274894, -0.010314970277249813, -0.014028673991560936, 0.010173345915973186, 0.0008241747855208814, -0.04865581542253494, -0.001816528383642435, 0.01495710015296936, 0.017309637740254402, 0.02442232519388199, 0.00023985157895367593, -0.023273594677448273, -0.014461414888501167, -0.006353423930704594, 0.01131420861929655, 0.03257359191775322, 0.0035111026372760534, 0.006062306929379702, 0.007734260521829128, 0.003664528951048851, 0.024815725162625313, 0.00746281398460269, 0.0018480004509910941, -0.021998975425958633, 8.525734301656485e-05, 0.007506088353693485, -0.038773588836193085, 0.0004487228288780898, -0.006990733090788126, -0.002582676475867629, -0.0013336288975551724, -0.047554295510053635, -0.005775124300271273, 0.010920807719230652, -0.01608222723007202, 0.0050827390514314175, -0.0038907343987375498, -0.01431192271411419, 0.0266096331179142, 0.0018489840440452099, -0.011904309503734112, -0.004528043791651726, 0.01048806682229042, -0.014862683601677418, -0.008363702334463596, 0.003843526355922222, -5.089623300591484e-05, 0.0008861353853717446, -0.0356578528881073, 0.0048191603273153305, -0.0008512210915796459, -0.02852942980825901, -0.022329432889819145, 0.012966492213308811, -0.004709008149802685, 0.012392126955091953, 0.02325785905122757, -0.010566746816039085, -0.055485256016254425, 0.013202532194554806, -0.002572841476649046, -0.00397728243842721, -0.00929212849587202, -0.011597457341849804, 0.006467510014772415, 0.01830100826919079, -0.0029937804210931063, -0.03071673773229122, 0.0212908536195755, -0.004677535966038704, 0.00782080926001072, 0.009087559767067432, 0.010440858080983162, 0.0025531714782118797, 0.005901012569665909, -0.01697918027639389, -0.00026480795349925756, -0.001943400246091187, -0.006388829555362463, -0.0001486317632952705, 0.01045659463852644, 0.01943400129675865, 0.006990733090788126, -0.04210962727665901, -0.031959883868694305, -0.015562937594950199, 0.02251826412975788, -0.01617664285004139, -0.0025354684330523014, 0.007722458802163601, -0.003536673728376627, 0.007832610979676247, 0.004606723785400391, 0.022596944123506546, 0.0008020459790714085, -0.02841927669942379, 0.009512432850897312, -0.02011065185070038, 0.009724869392812252, 0.007742128800600767, -0.0015913064125925303, -0.03849034011363983, 0.019607098773121834, -0.016318267211318016, -0.030826890841126442, -0.029929935932159424, 0.0029583743307739496, -0.017105069011449814, -0.0006176393362693489, -0.010354310274124146, 0.006679946556687355, 0.024249227717518806, 0.053093377500772476, 0.0015047582564875484, 0.009803549386560917, -0.017372582107782364, 0.005173221230506897, -0.006982865277677774, 0.025036029517650604, 0.01207740604877472, -0.005924616940319538, 0.014909892342984676, -0.000616655801422894, -0.01251014694571495, -0.021904559805989265, -0.01957562565803528, 0.023163441568613052, -0.005432865582406521, -0.004059896804392338, -0.024579685181379318, -0.03128323704004288, -0.00795456487685442, 0.00480342423543334, 0.009158371947705746, 0.041228409856557846, -0.021479686722159386, -0.0024508873466402292, 0.004913576412945986, -0.01815938390791416, 0.015295425429940224, -0.007852280512452126, 0.009921569377183914, -0.019465474411845207, -0.013509385287761688, -0.01910354569554329, -0.022707097232341766, 0.015531465411186218, -0.008072585798799992, 0.009071823209524155, 0.00513781514018774, 0.004362815525382757, -0.01256522350013256, 0.014461414888501167, -0.061716724187135696, -0.022927401587367058, 0.004240861162543297, -0.0038317241705954075, -0.02075582928955555, 0.0024882603902369738, -0.01693197339773178, -0.011141112074255943, -0.0018765220884233713, -0.02841927669942379, 0.01122765988111496, 0.020079178735613823, -0.002199110807850957, -0.0011202088790014386, -0.007218905724585056, -0.015413445420563221, -0.05624058470129967, -0.02240811288356781, -0.014382734894752502, 0.004492637701332569, 0.009913701564073563, 0.040158357471227646, -0.004488703794777393, 0.016271058470010757, 0.009748472832143307, 0.016058621928095818, -0.009803549386560917, -0.02969389595091343, -0.019197961315512657, -0.014193902723491192, 0.0025787425693124533, -0.0141073539853096, -0.03650759905576706, 0.0028226510621607304, -0.013784765265882015, 0.03197561949491501, -0.0030429556500166655, -0.004559515975415707, -0.02176293544471264, -0.000828600546810776, -0.007486418355256319, -0.008497457951307297, -0.0047719525173306465, 0.01439847145229578, -0.023556843400001526, 0.00939441192895174, 0.008426645770668983, -0.025822831317782402, -0.022014711052179337, 0.016522835940122604, 0.004272333346307278, 0.00735659571364522, 0.022282224148511887, -0.027380699291825294, 0.010716238990426064, 0.008961671032011509, -0.00378451612778008, -0.004516241606324911, -0.025995928794145584, -0.021196437999606133, -0.006644540466368198, -0.005680708214640617, -0.0145007548853755, -0.03151927515864372, 0.014359130524098873, -0.029882729053497314, 0.029505062848329544, 0.008914463222026825, 0.03716851398348808, -0.009071823209524155, -0.004343145526945591, -0.005267637316137552, 0.013013700023293495, 0.013635273091495037, -0.0021951766684651375, -0.006797966547310352, -0.009803549386560917, 0.03427308052778244, 0.030370544642210007, 0.028608109802007675, 0.005381723400205374, 0.015728166326880455, -0.01018908154219389, -0.0075769005343317986, 0.022691361606121063, -0.010338574647903442, -0.023965978994965553, 0.00318654696457088, 0.008859386667609215, 0.019622834399342537, 0.004150378983467817, -0.006172459106892347, 0.018615728244185448, -0.02756953053176403, 0.00947309285402298, 0.006109515205025673, 0.004807358141988516, -0.0013473979197442532, 0.0021263316739350557, 0.0020653544925153255, 0.017199484631419182, 0.025209126994013786, 0.008064717054367065, -0.014256847091019154, 0.018395423889160156, -0.00408350070938468, 0.005739718209952116, 0.01831674389541149, -0.01066903118044138, 0.013249740935862064, -0.00779720488935709, 0.0014624675968661904, 0.015043648891150951, 0.0004998649237677455, -0.005849870387464762, -0.02081877365708351, 0.009937305003404617, 0.008922331035137177, -0.010920807719230652, -0.012242634780704975, -0.023556843400001526, -0.002443019300699234, 0.0022148466669023037, -0.014642379246652126, 0.007710656616836786, 0.018961921334266663, 0.010739843361079693, -0.014422074891626835, 0.0019601196981966496, 0.005598093848675489, -0.00148705521132797, 0.006443906109780073, -0.000786801683716476, -0.02155836671590805, 0.02303755283355713, 0.0012805197620764375, -0.013588065281510353, 0.013375628739595413, 0.004897840786725283, -0.009709132835268974, -0.002899364335462451, -0.004897840786725283, -0.005767256487160921, 0.004921444691717625, 0.006809768732637167, 0.00936293974518776, 0.0006437021656893194, 0.006015099119395018, 0.004779820330440998, -0.0012274106265977025, -0.005779058672487736, -0.0033537421841174364, 0.005074870772659779, 0.0006240321090444922, 0.007234641816467047, -0.0009421950089745224, 0.00544073386117816, 0.00654619000852108, -0.0018647200195118785, 0.0014801706420257688, -0.01453222706913948, -0.001944383722729981, -0.0034265213180333376, 0.0702456533908844, 0.004724744241684675, 0.012588826939463615, 0.004791622515767813, 0.006943524815142155, -0.01131420861929655, -0.018851768225431442, 0.016428420320153236, 0.0012185591040179133, -0.010149741545319557, 0.0037687800358980894, -0.01040151808410883, -0.005633499938994646, -0.012203293852508068, -0.027050241827964783, 0.014264714904129505, -0.0007513955933973193, 0.028010141104459763, 0.007486418355256319, 0.012628166936337948, 0.006856977008283138, 0.0030232854187488556, -0.006691748276352882, -0.0015283622778952122, 0.010952279902994633, 0.0065619261004030704, -0.0020220803562551737, 0.012911415658891201, 0.006786164827644825, 0.005098475143313408, -0.015555069781839848, -0.016050754114985466, -0.03524871543049812, -0.021054813638329506, -0.010842127725481987, 0.020991869270801544, -0.020425371825695038, 0.015633748844265938, 0.004366749431937933, 0.021526893600821495, -0.015523597598075867, -0.01474466361105442, -0.0010651327902451158, 0.011778421700000763, 0.0020968264434486628, 0.0011231594253331423, 0.007226773537695408, 0.007616240531206131, -0.010228422470390797, -0.009244919754564762, -0.018773088231682777, -0.005192891228944063, 0.0028914962895214558, 0.011927913874387741, 0.0022895929869264364, -0.011597457341849804, -0.00963045284152031, -0.0051299468614161015, -0.014005070552229881, -0.007030073087662458, 0.007407737895846367, -0.0004688846238423139, -0.028073083609342575, -0.03735734522342682, -0.0006879597203806043, -0.007679184433072805, 0.008316493593156338, -0.006290479563176632, 0.006522586103528738, 0.027742628008127213, -0.015421313233673573, 0.013375628739595413, 0.006550123915076256, -0.008615478873252869, 0.006428170017898083, 0.004354947246611118, 0.0072621796280145645, 0.006337687838822603, 0.01101522333920002, 0.009142635390162468, 0.0004268399206921458, -0.012769791297614574, -0.0067704287357628345, -0.02533501386642456, 0.008426645770668983, -0.018269535154104233, 0.03336039185523987, 0.011432228609919548, 0.007907357066869736, -0.0044847698882222176, -0.014248978346586227, -0.005716114304959774, 6.097713048802689e-05, 0.02044110745191574, 0.0051299468614161015, -0.01782892644405365, 0.001998476218432188, 0.012604563497006893, 0.016774611547589302, -0.018458368256688118, -0.0141073539853096, 0.00800964143127203, -0.005365987773984671, 0.00880431104451418, 0.02017359621822834, 0.0019463506760075688, 0.01852131262421608, 0.009614716283977032, -0.010582482442259789, 0.018914712592959404, -0.014241110533475876, -0.00409923680126667, -0.020519787445664406, 0.009905833750963211, -0.019921818748116493, -3.144133370369673e-05, 0.009488828480243683, 0.01979593001306057, -0.019182225689291954, -0.01585405506193638, 0.01413095835596323, -0.017655830830335617, 0.011062432080507278, 0.001754567725583911, -0.002112562535330653, -0.006833372637629509, -0.021149229258298874, -0.009126899763941765, -0.012494411319494247, -0.00048142430023290217, 0.03767206519842148, 0.005523347761482, -0.001989624695852399, 0.0068176365457475185, 0.018442632630467415, -0.005094540771096945, 0.01328121218830347, -0.03537460416555405, 0.005169287323951721, -0.005007992964237928, -0.002338767983019352, 0.032290343195199966, 0.007749996613711119, -0.0015893394593149424, -0.007836544886231422, 0.005971824750304222, -0.023383745923638344, -0.014005070552229881, 0.008096189238131046, 0.026908617466688156, 0.011408624239265919, -0.011597457341849804, 0.01852131262421608, -0.006416367832571268, -0.0025138314813375473, 0.001453616190701723, -0.020425371825695038, 0.01564948633313179, 0.008332230150699615, -0.015555069781839848, 0.005853804759681225, 0.00859187450259924, -0.007868017069995403, 0.00429593725129962, 0.010684766806662083, 0.008938067592680454, 0.005999363027513027, 0.013249740935862064, 0.019544154405593872, -0.01256522350013256, -0.00843451451510191, 0.02634212002158165, 0.014469283632934093, -0.024390852078795433, 0.0051338812336325645, -0.0011772520374506712, 0.0019050436094403267, -0.006908118724822998, -0.014146694913506508, 0.012927152216434479, -0.006211799569427967, 0.01501217670738697, 0.021998975425958633, 0.009244919754564762, 0.005739718209952116, -0.001252981717698276, 0.0037451761309057474, -0.009378676302731037, 8.654818520881236e-05, -0.008631214499473572, 0.00020973182108718902, 0.002464656252413988, 0.01251014694571495, -0.008670554496347904, -0.0073920018039643764, 0.00463032815605402, -0.009016747586429119, 0.007997838780283928, 0.0055430177599191666, 0.015004307962954044, -0.014949232339859009, -0.0025787425693124533, 0.016223851591348648, 0.012698979116976261, -0.02064567618072033, -0.015082988888025284, -0.004185785073786974, -0.016727404668927193, -0.019701514393091202, -0.0033065341413021088, -0.06303855031728745, -0.01083425898104906, 0.015932735055685043, 0.0017014587065204978, 0.0051063429564237595, 0.016090095043182373, 0.001009073224849999, -0.0071048191748559475, 0.03402130678296089, 0.014382734894752502, -0.0072621796280145645, 0.007840478792786598, 0.011345680803060532, -0.005204693414270878, 0.0023190979845821857, 0.007360530085861683, 0.004933246411383152, 0.010102533735334873, 0.022061919793486595, -0.003731406992301345, 0.016208114102482796, -0.006471443921327591, -0.023619787767529488, 0.018820296972990036, 0.01878882385790348, 0.016790349036455154, 0.031535010784864426, -0.03326597437262535, 0.029929935932159424, -0.021511157974600792, -0.013312684372067451, -0.004685404244810343, 0.002604313660413027, 0.004453297704458237, 0.011935781687498093, -0.001191021059639752, -0.0051063429564237595, -0.014296187087893486, -0.006672078277915716, -3.193308293703012e-05, 0.02634212002158165, 0.008631214499473572, -0.013273344375193119, 0.0053148455917835236, 0.030055824667215347, 0.008985275402665138, 0.0020633875392377377, -0.006884514819830656, 0.011337812058627605, -0.002814783016219735, 0.00321211782284081, 0.019245170056819916, 0.0006609134143218398, 0.0034815974067896605, 0.017923342064023018, 0.022046184167265892, -0.021259382367134094, 0.012769791297614574, -0.011951517313718796, 0.009480960667133331, -0.010409386828541756, -0.003550442634150386, 0.009001011028885841, 0.008048981428146362, -0.009441620670258999, 0.00843451451510191, 0.010464462451636791, 0.015846185386180878, 0.011385020799934864, 0.020205067470669746, 0.0011123409494757652, -0.0007189400494098663, -0.003945810720324516, -0.02868678979575634, 0.0012824867153540254, 0.0035524095874279737, -0.008127661421895027, 0.012864207848906517, -0.0015450818464159966, 0.014060146175324917, 0.007683118339627981, -0.014595171436667442, 0.021731462329626083, 0.007895555347204208, -0.012156086042523384, 0.004421825520694256, -0.0031629428267478943, 0.0026416867040097713, 0.00469720596447587, -0.012061670422554016, -0.01734110899269581, 0.0059403530322015285, -0.012101010419428349, -0.01825379952788353, 0.02102334052324295, 0.011746949516236782, 0.01213248260319233, -0.012777659110724926, 0.004673602059483528, -0.003027219558134675, 0.022486792877316475, -0.013580197468400002, 0.016695931553840637, 0.007120555266737938, 0.0007002535276114941, -0.007769666612148285, -0.012234766036272049, 0.023777147755026817, 0.015531465411186218, 0.014091618359088898, -0.002773476066067815, 0.023352274671196938, -0.004685404244810343, 0.016223851591348648, -0.002389910165220499, 0.0034245543647557497, -0.00018096438725478947, 0.0024371182080358267, 0.0025000623427331448, -0.003200315870344639, -0.0048191603273153305, -0.023981716483831406, -0.004716875962913036, -0.005641368217766285, 0.004728678148239851, -0.0014939396642148495, -0.020315220579504967, -0.021149229258298874, -0.03543754667043686, 0.002978044329211116, -0.019937554374337196, -0.00920557975769043, -0.005019794683903456, -0.012171822600066662, -0.015256084501743317, 0.010566746816039085, 0.02080303616821766, -0.025586791336536407, -0.0008669571252539754, 0.022439584136009216, 0.0066366721875965595, -0.014752531424164772, 0.0017142442520707846, -0.0073959361761808395, -0.003780582221224904, -0.011416492983698845, -0.011345680803060532, 0.0017378482734784484, -0.0051574851386249065, -0.012439334765076637, -0.030842626467347145, 0.013289080932736397, -0.019764458760619164, -0.023446690291166306, -0.0065855300053954124, 0.006471443921327591, -0.019182225689291954, -0.010543142445385456, -0.022817248478531837, 0.01606648974120617, -0.007773600984364748, -0.01458730362355709, 0.01006319373846054, -0.013509385287761688, -0.0065855300053954124, -0.01208527386188507, 0.02022080309689045, 0.010157610289752483, 0.00032799795735627413, 0.012305578216910362, 0.02283298596739769, -0.010071061551570892, -0.011479436419904232, 0.009268524125218391, 0.031110139563679695, 0.0053384494967758656, 0.012549486942589283, 0.025854304432868958, -0.0031727778259664774, 0.014618775807321072, -0.0015844219597056508, 0.0053384494967758656, -0.01858425699174404, -0.00725037744268775, 0.015885526314377785, 0.005814464762806892, -0.019339585676789284, 0.0021223975345492363, 0.003157041734084487, -0.017954815179109573, 0.019040601328015327, -0.010543142445385456, -0.009850757196545601, 0.0029052651952952147, 0.021243644878268242, -0.005767256487160921, 0.008013575337827206, 0.0172939021140337, 0.017734510824084282, 0.003615353722125292, 0.01048806682229042, 0.008851518854498863, -0.028497956693172455, 0.015075120143592358, 0.015633748844265938, -0.008088321425020695, 0.023226385936141014, -0.002441052347421646, 0.005224363412708044, -0.001370018464513123, 0.010023853741586208, -0.009724869392812252, 0.005960023030638695, -0.013949993997812271, 0.01959136314690113, 0.03367511183023453, 0.0258070956915617, -0.005078805144876242, 0.006239337380975485, 0.011676137335598469, -0.005664972122758627, -0.01760862208902836, 0.019449738785624504, 0.004968652501702309, -0.018694408237934113, 0.0028246180154383183, 0.03251064568758011, -0.03383247181773186, -0.013965730555355549, 0.00429593725129962, -0.017687302082777023, -0.02059846930205822, -0.0017565347952768207, -0.018820296972990036, 1.955478865056648e-06, 0.00864695105701685, -0.003688132856041193, 0.015846185386180878, -0.009709132835268974, -0.026420801877975464, 0.004008754622191191, 0.0258070956915617, 0.020031971856951714, 0.02037816308438778, -0.020047707483172417, 0.007899489253759384, -0.01376116182655096, 0.012069538235664368, 0.010039589367806911, -0.015271821059286594, -0.009001011028885841, -0.005330581683665514, 0.016994915902614594, -0.0032317880541086197, 0.003452092409133911, -0.020928924903273582, 0.005114211235195398, 0.010739843361079693, -0.010267762467265129, -0.00033414483186788857, -0.003570112632587552, 0.004441495519131422, 0.0018489840440452099, -0.013477913103997707, -0.027538059279322624, 0.015688825398683548, -0.006113449111580849, 0.009103295393288136, 0.005299109499901533, -0.020991869270801544, 7.259475387400016e-05, 0.004002853762358427, 0.01863146387040615, 0.009937305003404617, 0.01979593001306057, 0.003961546346545219, -0.01771877333521843, 0.029772575944662094, 0.023446690291166306, 0.018190855160355568, 0.005692510399967432, 0.02245531976222992, -0.0071048191748559475, 0.01253375131636858, -0.009150504134595394, 0.01266750693321228, -0.0026416867040097713, 0.046232469379901886, -0.0009810433257371187, -0.010590351186692715, -0.002431217348203063, 0.007317255716770887, 0.012801263481378555, 0.021322326734662056, 0.020504051819443703, -0.003251458052545786, 0.0006850092322565615, -0.004988322965800762, 0.013769029639661312, -0.013564460910856724, 0.010259893722832203, -0.0005969858029857278, -0.008473854511976242, 0.024343645200133324, -0.001828330452553928, -0.006790098734200001, 0.018017759546637535, 0.02278577722609043, -0.0032475239131599665, -0.00883578322827816, 0.00041995540959760547, -0.026593897491693497, 0.006192129570990801, -0.0038415591698139906, -0.004834896419197321, 0.004024490714073181, 0.015924867242574692, 0.019890347495675087, -0.01814364641904831, -0.0060701752081513405, -0.03609846159815788, 0.00605443911626935, 0.00728971790522337, -0.004500505514442921, 0.0016808051150292158, 0.003994985483586788, 0.007580834440886974, -0.014689587987959385, 0.01798628643155098, -0.010252025909721851, -0.009897965006530285, -0.0030331206507980824, 0.02544516697525978, 0.009299996308982372, -0.00044282182352617383, -0.015987809747457504, -0.023179177194833755, 0.016900500282645226, 0.002848222153261304, -0.005397459492087364, 0.0019040601328015327, 0.0005719065084122121, 0.02926902286708355, 0.019386794418096542, 0.011809893883764744, -0.028859885409474373, -0.018238063901662827, 0.025822831317782402, 0.015067252330482006, 0.016790349036455154, 0.008709894493222237, -0.009386544115841389, -0.016695931553840637, 0.0026318517047911882, -0.0005763322697021067, 0.0015686858678236604, 0.010283498093485832, -0.003497333498671651, -0.011880706064403057, 0.01628679595887661, -0.0056020282208919525, 0.01498070452362299, -0.0032042500097304583, 0.0016168775036931038, 0.014547963626682758, -0.0008561385911889374, 0.012785527855157852, -0.01660151593387127, -0.0028777271509170532, -0.03987510874867439, 0.020315220579504967, -0.01963857002556324, -0.022282224148511887, -0.0077303266152739525, 0.001678838161751628, 0.004535911604762077, -0.016680195927619934, 0.01122765988111496, 0.01735684461891651, 0.0022994279861450195, 0.01984313875436783, -0.003048856509849429, -0.004052028525620699, -0.004760150332003832, 0.0023663060273975134, 0.0017358812037855387, -0.0057082464918494225, -0.023493899032473564, -0.01471319142729044, -0.005684642121195793, 0.004811292514204979, 0.015098724514245987, 0.0012067571515217423, -0.0025984125677496195, 0.001967004267498851, 0.01173908170312643, 0.004889972507953644, -0.02975684031844139, 0.0010248092003166676, 0.003111800644546747, -0.00014924645074643195, -0.008308625780045986, -0.005920682568103075, 0.0015686858678236604, 0.003556343726813793, -0.00856827013194561, 0.002751838881522417, 0.00782867707312107, 0.01830100826919079, 0.007612306624650955, -0.020142123103141785, -0.006400631740689278, 0.0070812152698636055, -0.014272582717239857, -0.0018155449070036411, -0.016806084662675858, 0.007423473987728357, 0.007907357066869736, 0.023430954664945602, -0.011589588597416878, -0.0001842837082222104, 0.0015027911867946386, 0.008938067592680454, -0.00562956603243947, 0.0062275356613099575, -0.023556843400001526, -0.007207103539258242, -0.0028777271509170532, 0.010519539006054401, -0.015342633239924908, -0.009913701564073563, 0.002323032123968005, -0.003979249391704798, 0.008694158867001534, 0.0027164327912032604, -0.01789187081158161, -0.003536673728376627, -0.015523597598075867, -0.003135404782369733, 0.0035543767735362053, -0.014477151446044445, 0.0027361027896404266, -0.001827346975915134, 0.0003513561387080699, -0.0049489825032651424, -0.0015470487996935844, 0.0012342951958999038, -0.04009541496634483, -0.010716238990426064, -0.005519413854926825, -0.02384009212255478, -0.014146694913506508, -0.0004686387546826154, 0.02107054926455021, 0.006475377827882767, -0.015743901953101158, 0.02347816340625286, 0.02176293544471264, 0.002264021895825863, 0.004006787668913603, 0.0011949550826102495, 0.010787051171064377, -0.007997838780283928, 0.015932735055685043, -0.0083794379606843, -0.011518776416778564, -0.015673089772462845, -0.017498468980193138, -0.007026139181107283, -0.044092368334531784, -0.0031590089201927185, 0.015311161056160927, -0.01391852181404829, -0.022801512852311134, -9.020558536576573e-06, 0.01557080540806055, 0.010574614629149437, 0.013603800907731056, -0.006022966932505369, 0.0012923218309879303, -0.00584200257435441, -0.02011065185070038, 0.005004058592021465, -0.016680195927619934, 0.01306090783327818, -0.009945173747837543, -0.019512681290507317, 0.0027144658379256725, -0.010307102464139462, 0.003666495904326439, -0.03087409771978855, -0.015429181046783924, -0.016003547236323357, -0.0025256334338337183, 0.0022915599402040243, -0.025476638227701187, 0.010495934635400772, 0.009410148486495018, -0.006597332190722227, -0.007277915719896555, 0.0015342632541432977, -0.01391852181404829, -0.00728971790522337, 0.009622585028409958, 0.00926065631210804, -0.012557354755699635, 0.018190855160355568, 0.009307864122092724, -0.0003538148885127157, -0.00550761166960001, 0.01293502002954483, -4.8898495151661336e-05, 0.00037889418308623135, -0.011023092083632946, -0.005594159942120314, -0.004685404244810343, -0.0026613567024469376, -0.01045659463852644, -0.019135016947984695, -0.003556343726813793, -0.008560402318835258, -0.00032750621903687716, 0.006255073472857475, -0.009095427580177784, 0.01005532592535019, 0.014642379246652126, 0.00359174981713295, -0.012769791297614574, 0.026798466220498085, 0.022439584136009216, 0.010181213729083538, -0.01439847145229578, -0.008277153596282005, -0.0008374520693905652, 0.006959260907024145, -0.022738568484783173, 0.003367511322721839, -0.001658184570260346, 0.011298472061753273, 0.002563006477430463, -0.016365475952625275, 0.0010297266999259591, 0.008654818870127201, -0.016947709023952484, 0.00963045284152031, -0.00981928501278162, 0.005657104309648275, -0.013178928755223751, 0.009378676302731037, 0.0033085010945796967, 0.014791872352361679, 0.020425371825695038, -0.008788574486970901, 0.0003139830660074949, -0.0014693521661683917, 0.004052028525620699, 0.0023564710281789303, -0.01581471413373947, -0.0074431439861655235, 0.014068013988435268, 0.021353797987103462, -0.006140987388789654, -0.006731088738888502, -0.0016276959795504808, -0.015075120143592358, -0.013651009649038315, 0.009268524125218391, -0.0007622141274623573, 0.002433184301480651, 0.03170811012387276, -0.013800501823425293, 0.012801263481378555, -0.01029923465102911, 0.03241622820496559, -0.025161918252706528, -0.008316493593156338, 0.03757764771580696, 0.030213184654712677, 0.009772077202796936, -0.0032278539147228003, 0.0071834996342659, -0.007427407894283533, -0.0045319776982069016, -0.015098724514245987, 0.015728166326880455, 0.012651771306991577, 0.006262941285967827, -0.008702026680111885, -0.00021083826140966266, -0.011455832980573177, 0.006853042636066675, 0.005621698219329119, 0.016042886301875114, 0.0030980317387729883, 0.004693272057920694, 0.01825379952788353, -0.014146694913506508, 0.02017359621822834, 0.012754055671393871, 0.01501217670738697, -0.006557992193847895, 0.02256547287106514, -0.020582731813192368, 0.010212685912847519, 0.005161419045180082, -0.014248978346586227, -0.007801138795912266, 0.006377027835696936, -0.012234766036272049, 0.008473854511976242, 0.004575252067297697, 0.01125913206487894, 0.013879181817173958, -0.004775886423885822, -0.027176130563020706, -0.0008345015230588615, -0.004441495519131422, -0.0053384494967758656, -0.005326647311449051, -0.008237813599407673, 0.01878882385790348, -0.007612306624650955, -0.002454821253195405, 0.011951517313718796, -0.017970550805330276, -0.015995677560567856, 0.015736034139990807, 0.015248216688632965, 0.0008172902744263411, -0.024768518283963203, -0.01538197323679924, -0.01957562565803528, -0.007175631355494261, 0.01022055372595787, -0.0017437492497265339, -0.005259769503027201, 0.002582676475867629, 0.012659639120101929, -0.019921818748116493, -0.009276391938328743, 0.004724744241684675, 0.008796443231403828, 0.02245531976222992, -0.0012460971483960748, -0.00044896872714161873, 0.013580197468400002, 0.016192378476262093, 0.0012421631254255772, 0.009921569377183914, -0.025901511311531067, -0.0021263316739350557, 0.021479686722159386, -0.0003538148885127157, 0.0018716045888140798, 0.0052637034095823765, -0.00489390641450882, 0.01247867476195097, 0.0011605324689298868, 0.01082639116793871, -0.000626490858849138, -0.0055430177599191666, 0.012399994768202305, 0.0113063408061862, 0.03657054156064987, -0.009063955396413803, 0.012895680032670498, 0.01103882770985365, 0.0051574851386249065, -0.021102022379636765, 0.006314083468168974, -0.011235528625547886, 0.01006319373846054, -0.0032258869614452124, -0.0004964226973243058, -0.02214059978723526, -0.014335527084767818, 0.0072110374458134174, 0.01029923465102911, -0.011573852971196175, 0.0005679724854417145, 0.01522461324930191, 0.012392126955091953, 0.019402530044317245, -0.007734260521829128, 0.010047458112239838, 0.01693197339773178, 0.020881716161966324, 0.0006348506431095302, -0.0009043302270583808, 0.0077067227102816105, 0.00819847360253334, 0.0039890846237540245, 0.007596570532768965, -0.012407862581312656, -0.02959948033094406, -0.01990608312189579, -0.03858475387096405, -0.020897453650832176, 0.002466623205691576, -0.0016080259811133146, -0.005641368217766285, 0.015319028869271278, -0.0019178291549906135, -0.005944286938756704, 0.0009613733272999525, -0.0022364838514477015, -0.027207601815462112, -0.022659888491034508, -0.0038710644003003836, -0.007919158786535263, 0.004209388978779316, 0.0057829925790429115, 0.011581720784306526, -0.003609452862292528, -0.008505326695740223, -0.01932385005056858, -0.023226385936141014, 0.021841615438461304, -0.004764084238559008, -0.014138826169073582, 0.01793907955288887, 0.005901012569665909, -0.0045083737932145596, -0.0008620396256446838, -0.02357257902622223, -0.013399233110249043, 0.01990608312189579, -0.028324861079454422, 0.0010346441995352507, 0.001573603367432952, 0.01952841877937317, 0.002899364335462451, -0.00825355015695095, -0.015248216688632965, -0.013296948745846748, 0.019969027489423752, -0.0004187260346952826, -0.01070050336420536, 0.013218268752098083, 0.005110276862978935, -0.012887812219560146, -0.004386419430375099, -0.011385020799934864, -0.003497333498671651, -0.005641368217766285, -0.0009717001230455935, 0.00010246862802887335, -0.0002530059136915952, -0.009772077202796936, 0.010684766806662083, 0.00960684847086668, -0.010897203348577023, 0.020928924903273582, -0.013375628739595413, -0.0024292501620948315, 0.0010257926769554615, -0.00045511560165323317, 0.020488316193223, -0.012793395668268204, 0.013139588758349419, -0.0027144658379256725, -0.0042526633478701115, -0.0045319776982069016, 0.02330506592988968, 0.03433602675795555, 0.04966292157769203, -0.03468221798539162, -0.010511670261621475, -0.02198323979973793, 0.016412682831287384, 0.014917760156095028, 0.009496696293354034, 0.020504051819443703, -0.009937305003404617, 0.009803549386560917, 0.0044336277060210705, -0.017435526475310326, -0.008418777957558632, 0.013509385287761688, -0.01856851950287819, 0.002665290841832757, -0.00282658520154655, -0.006459641736000776, -0.021747199818491936, 0.0071834996342659, -0.0236827302724123, 0.012093141674995422, 0.013981466181576252, 0.005672840401530266, 0.008159133605659008, 0.0074195400811731815, 0.013391365297138691, -0.01008679810911417, 0.01649136282503605, 0.0003048856451641768, -0.010802787728607655, -0.017230957746505737, -0.003926140256226063, -0.028985774144530296, 0.005306977313011885, -0.015232481062412262, -0.016011415049433708, -0.030260393396019936, -0.0005901012918911874, -0.004744414240121841, -0.0004738021525554359, 0.010071061551570892, 0.014784003607928753, -0.006404565647244453, 0.004783754236996174, 0.010708371177315712, 0.017860397696495056, -0.00666814437136054, -0.006892382632941008, 0.0009166239760816097, -0.0008423695689998567, -0.006762560456991196, -0.012942887842655182, -0.003099998692050576, -0.016963444650173187, -0.008387305773794651, 0.004410023335367441, 0.0024095801636576653, -0.010716238990426064, -0.022958872839808464, 0.0141073539853096, -0.016412682831287384, 0.007313321810215712, -0.008670554496347904, 0.010810655541718006, 0.016695931553840637, -0.0038631963543593884, -0.0109129399061203, 0.009323599748313427, -0.0017280132742598653, -0.012738319113850594, 0.025256333872675896, -0.02442232519388199, 0.0035130695905536413, 0.014917760156095028, -0.031267497688531876, -0.03162942826747894, 0.014839080162346363, 0.01409948617219925, -0.0011870870366692543, 0.0032947321888059378, -0.0006073125405237079, -0.006825504824519157, 0.02080303616821766, 0.029095927253365517, 0.005751520395278931, 0.015625881031155586, -0.0090482197701931, -0.022313695400953293, 0.012470806948840618, -0.0007690986385568976, 0.005582358222454786, 0.01184136513620615, 0.005019794683903456, -0.0073959361761808395, -0.006058373022824526, 0.014736795797944069, -0.0009780928958207369, 0.024280700832605362, -0.01760862208902836, -0.014020806178450584, 0.018395423889160156, 0.0044808355160057545, 0.0046381959691643715, -0.008827915415167809, 0.00853679794818163, -0.004465099424123764, 0.010346442461013794, -0.007919158786535263, -0.0018843900179490447, -0.016381211578845978, 0.019009128212928772, 0.009355071932077408, -0.006231469567865133, -0.02736496366560459, 0.0024174482095986605, -0.021574102342128754, -0.004827028606086969, 0.012305578216910362, -0.02039390057325363, 0.0016178609803318977, 0.007950630970299244, 0.011542380787432194, 0.01559440977871418, -0.01767156645655632, -0.022770041599869728, 0.013981466181576252, 0.008285021409392357, 0.00022239441750571132, 0.013588065281510353, 0.014886287972331047, 0.003099998692050576, 0.0019315981771796942, -0.0037589450366795063, -0.01767156645655632, -0.01332842092961073, 0.0018637365428730845, -0.01061395462602377, 0.026326384395360947, -0.00573578430339694, -0.018112175166606903, -0.004158246796578169, -0.0029937804210931063, 0.02837206982076168, 0.007580834440886974, 0.0006958277663215995, -0.00431167334318161, -0.0029682093299925327, -0.027852779254317284, -0.014461414888501167, 0.016459891572594643, 0.0008748251129873097, -0.0011231594253331423, -0.011510908603668213, 0.016475627198815346, 0.0044847698882222176, 0.016105830669403076, -0.011164716444909573, 0.009378676302731037, 0.0036920669954270124, 0.014728927984833717, -0.004779820330440998, 0.004319541156291962, -0.006683880463242531, -0.001540164346806705, 0.026373593136668205, 0.008882991038262844, 0.01458730362355709, 0.0016847391379997134, -0.007030073087662458, -0.005059134680777788, -0.01660151593387127, 0.014658115804195404, -0.007970301434397697, -0.012250502593815327, -0.006400631740689278, -0.01707359589636326, 0.0010066144168376923, 0.026688313111662865, -0.017042124643921852, -0.012698979116976261, -0.03625582158565521, 0.014815475791692734, -0.007061545271426439, 0.019276641309261322, 0.0077539305202662945, -0.013753294013440609, 0.019969027489423752, 0.0007391018443740904, 0.011967253871262074, 0.022707097232341766, 0.0058302003890275955, -0.001891274587251246, 0.005397459492087364, -0.0036507598124444485, -0.006050505209714174, -0.004292003344744444, 0.004280201159417629, -0.008930198848247528, -0.011518776416778564, 0.005381723400205374, 0.009142635390162468, 0.015090856701135635, 0.031802523881196976, -0.017120804637670517, -0.004512307699769735, -0.028088821098208427, 0.009126899763941765, -0.012187558226287365, 0.01697918027639389, 0.029945673421025276, -0.00737233180552721, -0.006679946556687355, 0.00032898146309889853, 0.006447840016335249, 0.009732737205922604, 0.004166115075349808, -0.0030645926017314196, -0.0007986036944203079, 0.0033557091373950243, -0.0018824230646714568, 0.006506850011646748, -0.005657104309648275, 0.009701265022158623, 0.00044011720456182957, 0.010676898993551731, 0.00016104847600217909, 0.01713654026389122, 0.0002566940675023943, -0.019827403128147125, -0.0013257608516141772, -0.0064085000194609165, -0.02229795977473259, -0.009150504134595394, -0.01173908170312643, 0.007946697063744068, -0.009835021570324898, -0.017325373366475105, -0.01974872313439846, 0.006762560456991196, 0.027160394936800003, -0.008473854511976242, 0.007124489173293114, 0.01290354784578085, -0.017262428998947144, 0.001466401619836688, 0.018033495172858238, 0.015035780146718025, -0.020000498741865158, -0.006148855201900005, 0.0016749041387811303, 0.018127910792827606, -0.01458730362355709, 0.0015559003222733736, 0.022203544154763222, 0.009583245031535625, 0.001924713607877493, -0.009355071932077408, -0.019496945664286613, -0.0024508873466402292, -0.007230707444250584, -0.012258370406925678, -0.013139588758349419, -0.009504564106464386, 0.0016316300025209785, -0.011298472061753273, 0.0180964395403862, -0.011329944245517254, -0.001073000836186111, -0.03043348900973797, 0.002730201929807663, -0.005118145141750574, -0.009701265022158623, -0.011715477332472801, 0.004398221615701914, 0.005716114304959774, -0.002018146449699998, 0.0041189067997038364, -0.01335989311337471, 0.02122790925204754, -0.000999729847535491, -0.007596570532768965, -0.008576138876378536, 0.013800501823425293, 0.010873599909245968, -0.010000249370932579, 0.015846185386180878, -0.03156648576259613, 0.01000811718404293, -0.01064542680978775, -0.023981716483831406, 0.019402530044317245, -0.0018952086102217436, -0.009063955396413803, -0.010173345915973186, -0.022581208497285843, 0.015610145404934883, -0.005869540851563215, 0.011762685142457485, 0.005822332575917244, -0.022817248478531837, 0.00021858334366697818, 0.016743140295147896, -0.03279389441013336, -0.001338546397164464, 0.008843651041388512, 0.014634511433541775, 0.007749996613711119, -0.02037816308438778, 0.014705323614180088, 0.00715989526361227, 0.046798963099718094, 0.0035425745882093906, 0.023871563374996185, -0.016538571566343307, 5.587521445704624e-05, -0.02155836671590805, 0.016963444650173187, -0.00920557975769043, -0.02081877365708351, 0.03018171340227127, -0.008324362337589264, -0.025571055710315704, 0.002157803624868393, 0.019308114424347878, -0.008827915415167809, -0.0009662908269092441, 0.006207865197211504, -0.007875884883105755, -0.01778171770274639, 0.023588314652442932, 0.008670554496347904, 0.0016827721847221255, -0.0062747434712946415, -0.01959136314690113, 0.009551772847771645, 0.02575988695025444, 0.01905633695423603, 0.003920239396393299, -0.011951517313718796, -0.002909199334681034, 0.007864083163440228, -0.004846698604524136, -0.026908617466688156, -0.007588702253997326, 0.017325373366475105, 0.021039078012108803, 0.0038179552648216486, 0.0012067571515217423, 2.0807216060347855e-05, -0.018961921334266663, -0.023509634658694267, -0.0175614133477211, 0.0031373717356473207, 0.01814364641904831, -0.016318267211318016, 0.0004993731854483485, 0.0018352149054408073, -0.007486418355256319, -0.016695931553840637, 0.01309238001704216, 0.002106661442667246, -0.0034481585025787354, -0.024076132103800774, -0.001699491636827588, 0.0060111647471785545, -0.01606648974120617, 0.005515479948371649, -0.0033183360937982798, -0.010495934635400772, 0.016806084662675858, -0.010708371177315712, -0.006990733090788126, 0.012754055671393871, 0.006302281748503447, -0.0012401961721479893, 0.019339585676789284, 0.006302281748503447, 0.0006328836316242814, 0.010566746816039085, 0.022581208497285843, 0.004587053786963224, -0.0018735715420916677, 0.018348215147852898, -0.019229432567954063, -0.004575252067297697, 0.0006004280294291675, -0.02640506438910961, 0.002020113402977586, -0.006628804374486208, -0.03065379336476326, -0.014964967966079712, 0.004390353336930275, -0.007816874422132969, -0.001816528383642435, -0.003040988463908434, -0.01232131477445364, 0.02944212034344673, -0.012525882571935654, 0.0006510784151032567, -0.017703037708997726, -0.007742128800600767, -0.024091867730021477, 0.012651771306991577, 0.004272333346307278, -0.002856090199202299, 0.0008571221260353923, -0.01149517297744751, 0.0006225568358786404, -0.004988322965800762, -0.014359130524098873, -0.013446440920233727, 0.02187308669090271, -0.004331343341618776, -0.008631214499473572, 0.005267637316137552, 0.004520175978541374, -0.01492562796920538, -0.02037816308438778, -0.007667382713407278, -0.00021907509653829038, 0.00726611353456974, 0.003099998692050576, -0.010228422470390797, 0.020991869270801544, -0.0035288056824356318, 0.007738194894045591, 0.015484257601201534, 0.014422074891626835, -0.008945935405790806, -0.004768018145114183, -0.0009918619180098176, -0.0023072960320860147, 0.04374617338180542, -0.0017309637041762471, -0.016853291541337967, -0.006105581298470497, -0.01006319373846054, 0.006388829555362463, 0.01633400283753872, 0.016853291541337967, -0.013525120913982391, -0.0013090412830933928, 0.003823856357485056, 0.023021817207336426, -0.016790349036455154, 0.0028639582451432943, 0.0061173830181360245, -0.014964967966079712, 0.0036507598124444485, -0.0037038689479231834, -0.030748210847377777, 0.05570555850863457, 0.013556593097746372, -0.011510908603668213, 0.02544516697525978, 0.013532988727092743, -0.020236538723111153, -0.012030198238790035, 0.007124489173293114, 0.004260531160980463, 0.017640093341469765, -0.011990858241915703, 0.0005124046001583338, 0.019890347495675087, -0.023383745923638344, 0.02395024336874485, -0.01762435771524906, 0.03310861438512802, -0.013076644390821457, 0.017419788986444473, -0.0054682716727256775, 0.022109128534793854, -0.013320553116500378, -0.00011494680802570656, 0.013407100923359394, -0.0019384826300665736, -0.008867255412042141, 0.010495934635400772, -0.00240171211771667, 0.005141749046742916, -0.018190855160355568, -0.0133048165589571, -0.006384895648807287, 0.009016747586429119, 0.008174869231879711, -0.0005114211235195398, -0.001220526173710823, 0.013776897452771664, -0.0032966991420835257, -0.006837306544184685, 0.016145171597599983, 0.023352274671196938, 0.03402130678296089, -0.0008635148406028748, 0.01008679810911417, 0.007793270982801914, -0.019670043140649796, 0.024626893922686577, -0.006908118724822998, -0.0038513944018632174, 0.010141873732209206, 0.007388067897409201, -0.0012195425806567073, -0.0024194151628762484, -0.004272333346307278, 0.004913576412945986, 0.0004440511984284967, -0.010102533735334873, -0.02734922617673874, 0.004830962512642145, 0.010739843361079693, 0.009968777187168598, 0.011589588597416878, 0.007340859621763229], "0e310153-ee47-45f3-913e-57ba9f58ad5d": [0.0012055410770699382, 0.02112499438226223, 0.007071321364492178, 0.037125326693058014, -0.0039538186974823475, -0.015302808955311775, 0.026306597515940666, 0.048883579671382904, -0.017480790615081787, 0.04313256964087486, -0.012064307928085327, -0.008939688093960285, -0.00209257029928267, -0.02328873984515667, 0.002601477550342679, 0.025495192036032677, -0.01524586882442236, 0.004936045501381159, 0.011288491077721119, -0.03368041664361954, 0.06377356499433517, -0.026463184505701065, -0.056798335164785385, 0.005886243190616369, -0.008377398364245892, 0.00689338194206357, -0.013544765301048756, 0.009843621402978897, -0.001880822004750371, -0.004733194597065449, 0.01597186177968979, -0.007128261961042881, 0.042819395661354065, 0.0008033975027501583, 0.0026601976715028286, -0.022947097197175026, 0.003352382918819785, 0.0296945683658123, -0.0017562642460688949, -0.009003746323287487, -0.013929115608334541, 0.04706147685647011, 0.005985889583826065, 0.00785069726407528, -0.034050531685352325, -0.010655025951564312, 0.02214992605149746, 0.0018149843672290444, 0.011651488021016121, -0.00012255592446308583, -0.004569489974528551, -0.029552215710282326, 0.0011574974050745368, -0.018562663346529007, -0.003686909331008792, -0.04122505709528923, 0.02236345410346985, 0.03385123610496521, -0.015146222896873951, -0.0300077423453331, 0.005252778064459562, -0.023103684186935425, 0.02513931319117546, -0.03584416210651398, 0.04025706648826599, 0.020399000495672226, -0.03553098812699318, 0.010491321794688702, -0.010519791394472122, 0.06126817688345909, 0.03282630443572998, 0.013744058087468147, -0.038434963673353195, 0.011587429791688919, 0.028626929968595505, -0.014071467332541943, 0.02518201805651188, -0.0043168156407773495, 0.003992965444922447, -0.023858146741986275, 0.035986512899398804, -0.05659904330968857, 0.03114655427634716, 0.016370447352528572, 0.10602355748414993, 0.026349302381277084, -0.018377605825662613, -0.06383050978183746, -0.031715963035821915, -0.015744099393486977, -0.0004479630442801863, -0.0013950468273833394, 0.0021103641483932734, -0.010854317806661129, 0.003729614894837141, -0.005505452398210764, -0.008078459650278091, 0.0028541518840938807, 0.009174567647278309, -0.047858648002147675, -0.016555504873394966, 0.0010916597675532103, 0.0045872838236391544, -0.030150093138217926, -0.02096840739250183, -0.016071507707238197, 0.02508237212896347, -0.005288366228342056, 0.00928844977170229, 0.01689714938402176, 0.003686909331008792, -0.03197219595313072, -0.020996877923607826, 0.014776107855141163, -0.029751507565379143, 0.0041709053330123425, -0.022676628082990646, -0.011437959969043732, -0.012968241237103939, -0.028100227937102318, 0.03806484863162041, -0.042990218847990036, 0.01400740910321474, 0.0016023465432226658, -0.03234231099486351, 0.02176557667553425, -0.004366639070212841, 0.035018522292375565, 0.010242206044495106, -0.013010947033762932, -0.010576732456684113, 0.006238563917577267, 0.02778705395758152, 0.04523937404155731, 0.024854609742760658, -0.0018968365620821714, 0.004487637896090746, 0.04247775301337242, 0.005669157020747662, -0.009793798439204693, -0.05167367309331894, -0.006822206079959869, -0.016384681686758995, 0.04028553515672684, -0.0016041258350014687, 0.017907844856381416, 0.0024021852295845747, 0.005348865874111652, 0.003234942676499486, 0.025979187339544296, -0.09531870484352112, -0.033993590623140335, -0.023046743124723434, 0.020327825099229813, 0.049965452402830124, -0.04962380602955818, 0.016996795311570168, 0.008811570703983307, -0.01172978151589632, 0.015018105506896973, 0.04367350786924362, -0.010384557768702507, 0.010569615289568901, 0.015630219131708145, 0.055061642080545425, -0.004932486917823553, 0.042648572474718094, 0.024740727618336678, -0.029552215710282326, 0.03527475520968437, 0.02394355833530426, -0.005829302594065666, 0.019160540774464607, 0.003754526376724243, -0.039573777467012405, 0.0033986472990363836, 0.029779978096485138, 0.0273030586540699, -0.0053381891921162605, 0.0012918418506160378, -0.006135358940809965, 0.041680581867694855, 0.008199458941817284, 0.024512965232133865, -0.0035196461249142885, 0.0202566497027874, 0.024783434346318245, 0.021922163665294647, 0.012377481907606125, 0.00045352368033491075, 0.0051566907204687595, -0.03666980192065239, -0.0023577003739774227, -0.006964557804167271, 0.004964516032487154, -0.011381019838154316, -0.013003828935325146, -0.0025854629930108786, -0.021310051903128624, -0.005811508744955063, -0.01370847038924694, -0.023388387635350227, 0.001053402666002512, 0.03752391040325165, -0.021167699247598648, 0.01863383874297142, -0.017110675573349, -0.001065858406946063, 0.012171071954071522, -0.032740894705057144, 0.04686218500137329, -0.010605202987790108, 0.011587429791688919, -0.021907929331064224, 0.03476228937506676, 0.003715379862114787, -0.04355962574481964, 0.03023550473153591, -0.001053402666002512, -0.02122464030981064, 0.005295483861118555, 0.015260104089975357, 0.007235025987029076, -0.02616424486041069, -0.026662476360797882, -0.00931691937148571, -0.01851995848119259, 0.012142601422965527, 0.01820678450167179, -0.016697855666279793, 0.009886326268315315, -0.009437918663024902, 0.007046409882605076, -0.008028636686503887, -0.004067700356245041, 0.025537896901369095, 0.04014318436384201, -0.026733651757240295, -0.01440599374473095, 0.026833297684788704, 0.010932611301541328, 0.01662668026983738, -0.010192383080720901, -0.02004312165081501, 0.01624233089387417, 0.0362996868789196, -0.015687158331274986, 0.05916137248277664, 0.0066656190901994705, 0.006220770068466663, -0.02091146633028984, -0.0018630280392244458, -0.006348886527121067, -0.0083987507969141, -0.034961581230163574, 0.007423642091453075, 0.009501976892352104, -0.008711924776434898, 0.011260020546615124, -0.036328159272670746, -0.033452652394771576, 0.03698297590017319, -0.029495274648070335, 0.05415059253573418, 0.03126043826341629, -0.022719332948327065, 0.021310051903128624, 0.006274151615798473, 0.02280474454164505, 0.017210321500897408, 0.030890321359038353, 0.0033452652860432863, 0.010064266622066498, 0.011850779876112938, 0.005914713721722364, -0.028100227937102318, 0.008356045931577682, -0.007049968466162682, -0.0043524038046598434, -0.01297535840421915, -0.024071674793958664, -0.03476228937506676, 0.03592957183718681, 0.003621071809902787, -0.005729656666517258, 0.027274588122963905, -0.01716761663556099, -0.035730279982089996, -0.0021779811941087246, -0.024726493284106255, 0.014057232066988945, 0.011366784572601318, -0.010733319446444511, 0.023160623386502266, -0.022733569145202637, 0.02734576351940632, 0.013679999858140945, -0.022733569145202637, -0.03863425552845001, 0.019302893429994583, -0.00023310093092732131, -0.010405910201370716, -0.018391842022538185, 0.0007709235069341958, 0.012989593669772148, -0.015914922580122948, 0.04310410097241402, 0.02344532683491707, 0.006565972696989775, 0.04523937404155731, 0.04466996714472771, -0.014334817416965961, 0.010306264273822308, -0.01863383874297142, 0.012683537788689137, 0.020897231996059418, -0.015559042803943157, -0.0255094263702631, -6.57264536130242e-05, -0.007743933238089085, 0.015772569924592972, 0.00616382947191596, -0.0534103624522686, 0.029381394386291504, 0.0294098649173975, -0.02577989548444748, -0.004697606433182955, 0.00837028119713068, -0.00599656580016017, -0.02643471397459507, -0.01411417219787836, -0.034477584064006805, -0.023032506927847862, 0.026477418839931488, -0.02410014532506466, -0.03815025836229324, -0.018818896263837814, -0.03325336053967476, 0.015160457231104374, -0.010541144758462906, -0.007277731318026781, -0.02139546349644661, 0.020541353151202202, -0.018434546887874603, -0.008441456593573093, 0.00659444322809577, 0.014591050334274769, 0.04022859409451485, -0.018349135294556618, 0.0035570135805755854, 0.0007598022930324078, -0.007170967757701874, 0.028342226520180702, 0.021594755351543427, -0.004156670067459345, -0.028199873864650726, -0.0642290934920311, 0.03834955021739006, 0.00709623284637928, 0.029779978096485138, -0.012249365448951721, -0.03108961507678032, -0.0005307049723342061, 0.0019733505323529243, -0.009003746323287487, 0.025367075577378273, 0.0099717378616333, 0.007715463172644377, 0.026448948308825493, -0.003943142481148243, 0.003879084251821041, 0.0075375232845544815, -0.006647825241088867, -0.012526950798928738, -0.026093069463968277, -0.036328159272670746, 0.020811820402741432, 0.024142850190401077, 0.002193995751440525, 0.018534192815423012, 0.006477002985775471, -0.04355962574481964, -0.03840649127960205, 0.044129032641649246, 0.036214277148246765, -0.028683871030807495, 0.02935292385518551, -0.006512591149657965, -0.04597960412502289, -0.005783038213849068, -0.029779978096485138, -0.007423642091453075, -0.00590403750538826, -0.03871966525912285, -0.010505556128919125, -0.023587679490447044, -0.014662226662039757, -0.01500387117266655, 0.029922330752015114, -0.012783183716237545, -0.03487617149949074, -0.022790510207414627, 0.021950634196400642, -0.024085910990834236, 0.02767317369580269, -0.04350268468260765, 0.010313381440937519, -0.010441497899591923, 0.016939854249358177, 0.019957710057497025, -0.0025925806257873774, 0.00341822043992579, 0.0014519875403493643, 0.025922248139977455, 0.03097573295235634, 0.03769473358988762, -0.009366743266582489, 0.02643471397459507, -0.05321107059717178, 0.0006926300702616572, 0.040171653032302856, 0.0055552758276462555, 0.011687075719237328, 0.00042460847180336714, 0.011203080415725708, 0.024840373545885086, 0.023473797366023064, 0.02767317369580269, 0.01604303903877735, -0.017082205042243004, -0.008918334729969501, 0.0014101716224104166, -0.0001314529072260484, 0.005694068502634764, 0.013993173837661743, -0.03436370566487312, 0.0038968781009316444, -0.006694089621305466, 0.042876336723566055, -0.010875671170651913, -0.027118001133203506, 0.014904224313795567, 0.033822767436504364, 0.008676337078213692, -0.03251313045620918, -0.03308253735303879, -0.020669469609856606, 0.011480665765702724, 0.020868761464953423, -0.010434380732476711, 0.015502101741731167, 0.023160623386502266, -0.03331030160188675, -0.040484827011823654, -0.004925369285047054, -0.01749502494931221, -0.0084770442917943, 0.02351650409400463, -0.0018069770885631442, -0.06115429848432541, -0.016270801424980164, -0.021253110840916634, 0.018833132460713387, 0.04224998876452446, -0.011630134657025337, -0.019032424315810204, 0.004676254000514746, -0.01797902211546898, -0.011943308636546135, 0.0027687407564371824, 0.012790301814675331, -0.00778663856908679, 0.05244237184524536, 0.05753856152296066, -0.00844857469201088, 0.008213694207370281, -0.018562663346529007, 0.02355920895934105, 0.007743933238089085, 0.014398875646293163, -0.00011165712930960581, -0.007366701029241085, 0.0057937148958444595, -0.011551842093467712, -0.004505431745201349, 0.01205007266253233, -0.028911633417010307, 0.015672923997044563, 0.02875504642724991, 0.016398917883634567, 0.011644369922578335, -0.001016035326756537, 0.033452652394771576, 0.009295566938817501, -0.005662039387971163, -0.023160623386502266, 0.006537502631545067, -0.011786721646785736, 0.015117752365767956, -0.024498730897903442, 0.02724611759185791, -0.0024555670097470284, 0.002526742871850729, 0.004950280766934156, -0.05033556744456291, 0.0320860780775547, 0.012206659652292728, 0.041851405054330826, -0.016982559114694595, 0.004629989620298147, 0.004252757411450148, 0.014042996801435947, -0.034961581230163574, 0.010897023603320122, 0.01059096772223711, 0.01961606554687023, -0.013466471806168556, -0.006249240133911371, 0.0053737773559987545, 0.0030890321359038353, 0.008996628224849701, -0.03424982354044914, -0.038862019777297974, -0.012220894917845726, 0.006032153964042664, -0.008363163098692894, -0.00184879289008677, -0.0576239749789238, 0.019630301743745804, -0.01189348567277193, -0.003715379862114787, 0.022178396582603455, -0.0003365283482708037, 0.0010792039101943374, 0.017238792032003403, -0.002064099768176675, -0.001401274697855115, 0.011096316389739513, 0.024797668680548668, -0.007815109565854073, -0.06485544145107269, 0.0177085530012846, -0.027772819623351097, -0.026577064767479897, -0.022733569145202637, 0.011907720938324928, -0.014633756130933762, 0.0012678200146183372, 0.00013467806275002658, 0.03148819878697395, -0.030349384993314743, 0.003133517224341631, -0.013139063492417336, 0.002243818948045373, -0.01674056239426136, -0.006000124849379063, 0.0040499065071344376, -0.005466305650770664, -0.03331030160188675, -0.032911717891693115, -0.008932569995522499, 0.014384640380740166, -0.026463184505701065, -0.001100556692108512, 0.015103517100214958, -0.01167284045368433, -0.037239208817481995, 0.01272624358534813, -0.010733319446444511, 0.03803637996315956, 0.014833048917353153, -0.0063382103107869625, 0.04723230004310608, 0.02378697134554386, 9.959059389075264e-05, 0.035189345479011536, -0.037239208817481995, -0.022448865696787834, -0.0732257217168808, -0.009124744683504105, 0.013516295701265335, -0.011309843510389328, -0.006377356592565775, -0.015744099393486977, 0.0052848076447844505, -0.014747637324035168, -0.004729635547846556, -0.03797943890094757, 0.0028505930677056313, 0.0034199999645352364, 0.006719001103192568, 0.03644203767180443, -0.002772299572825432, -0.0012482466408982873, -0.021310051903128624, 0.0009439698187634349, 0.0004728746134787798, 0.017623141407966614, 0.04022859409451485, 0.008647866547107697, -0.005256337113678455, -0.007110468111932278, 0.03575875237584114, -0.023801207542419434, -0.055175524204969406, 0.010227970778942108, 0.015103517100214958, 0.017324203625321388, -0.003434235230088234, -0.012804537080228329, 0.012804537080228329, -0.028299521654844284, 0.018989719450473785, -0.008299104869365692, 0.01602880284190178, 3.339148679515347e-05, 0.050022393465042114, 0.017850905656814575, 0.012455775402486324, -0.004210052080452442, 0.01658397540450096, 0.004512549377977848, 0.011736898683011532, -0.007978813722729683, 0.016968324780464172, 0.027046825736761093, -0.01809290237724781, -0.00861227884888649, -0.028313755989074707, 0.00640582712367177, -0.011203080415725708, -0.009893444366753101, 0.01884736679494381, -0.02562330849468708, 0.011359666474163532, -0.0003670005244202912, 0.009082039818167686, 0.020726408809423447, -0.003761644009500742, -0.024740727618336678, 0.005854214075952768, -0.005473423283547163, -0.0067545888014137745, 0.028285285457968712, -0.012370363809168339, -0.022021809592843056, 0.01107496302574873, -0.017694318667054176, 0.046121954917907715, 0.008469927124679089, -0.0035125284921377897, 0.012704890221357346, 0.008640749379992485, 0.016712091863155365, -0.01408570259809494, -0.0015916700940579176, -0.03444911539554596, 0.02106805332005024, 0.02264815755188465, 0.011679958552122116, 0.024228261783719063, -0.024626847356557846, 0.014014526270329952, -0.000575189886149019, 0.020498646423220634, 0.007637169677764177, 0.02741694077849388, 0.01189348567277193, 0.026890238747000694, 0.023488033562898636, 0.04911134019494057, -0.04159517213702202, -0.0012019822606816888, 0.004220728296786547, -0.00472607696428895, -0.003836378687992692, -0.0038719666190445423, 0.005071280058473349, -0.010526909492909908, -0.031231965869665146, -0.007423642091453075, -0.045097023248672485, -0.03416441008448601, 0.0038577315863221884, -0.02290439046919346, -0.00545562943443656, -0.00423852214589715, 0.005220748949795961, -0.027858231216669083, -0.0066086784936487675, -0.025267429649829865, 0.016911383718252182, 0.00016570629668422043, 0.04367350786924362, 0.002087231958284974, -0.03194372355937958, 0.005872008390724659, 0.002211789833381772, -0.011651488021016121, 0.003279427532106638, -0.02915363200008869, -0.019815359264612198, -0.005313277710229158, -0.04324645176529884, 0.000490668579004705, -0.007146056275814772, -0.021495109423995018, -0.02156628482043743, -0.029808448627591133, 0.012583891861140728, 0.003854172769933939, 0.010548261925578117, -0.0009270655573345721, 0.011644369922578335, 0.018021726980805397, -0.005494776181876659, -0.014904224313795567, 0.015772569924592972, -0.002044526394456625, 0.040712591260671616, -0.016398917883634567, 0.040114711970090866, -0.035559456795454025, -0.008505514822900295, -0.027758585289120674, -0.013046534731984138, -0.01007138378918171, -0.014092819765210152, 0.008953922428190708, 0.006170946639031172, 0.02827105112373829, -0.027046825736761093, 0.01143084280192852, 0.00785781443119049, 0.028584225103259087, -0.03590110316872597, -0.01712491177022457, -0.02183675393462181, 0.01787937618792057, 0.015801040455698967, 0.0378086157143116, -0.019416773691773415, -0.013793881051242352, -0.03877660632133484, 0.0001601456751814112, 0.03424982354044914, 0.018406076356768608, 0.025765661150217056, -0.004879104904830456, -0.02074064500629902, 0.006288386881351471, -0.03131737560033798, 0.01749502494931221, 0.01961606554687023, 0.0032883246894925833, 0.007423642091453075, 0.03017856366932392, -0.006626472342759371, 0.010918376967310905, 0.047858648002147675, -0.01191483810544014, 0.010662143118679523, 0.0059716543182730675, -0.009494859725236893, 0.031715963035821915, -0.011829427443444729, 0.017737023532390594, 0.01411417219787836, 0.0167975015938282, 0.022605452686548233, 0.05702609568834305, 0.026505889371037483, 0.023701559752225876, 0.04546713829040527, 0.000803842325694859, -0.01820678450167179, 0.004057023674249649, -0.03815025836229324, -0.0097510926425457, -0.0016841987380757928, 0.0009332934278063476, -0.02101111225783825, 0.023317210376262665, 0.016441622748970985, -0.009622976183891296, -0.029609156772494316, 0.017409615218639374, -0.003610395360738039, -0.016825972124934196, 0.04318951070308685, 0.0033452652860432863, 0.005658480804413557, -0.02155205048620701, -0.0001088768185582012, -0.025253193452954292, -0.009501976892352104, 0.0279009360820055, 0.005658480804413557, -0.01674056239426136, 0.018605368211865425, 0.005405806470662355, 0.0011245785281062126, 0.027886701747775078, 0.016939854249358177, 0.034591466188430786, -0.03516087308526039, -0.03245618939399719, -0.009480624459683895, -0.0173953790217638, 0.0008710145484656096, 0.020669469609856606, -0.006491238251328468, -0.041196584701538086, 0.05249931290745735, -5.6996290368260816e-05, 0.001209989539347589, 0.024028969928622246, 0.03424982354044914, 0.005950301885604858, 0.008818688802421093, -0.008498397655785084, 0.00131675333250314, -0.005323953926563263, 0.02708953060209751, 0.030463267117738724, 0.0280575230717659, 0.007516170386224985, -0.004113964736461639, 0.014562580734491348, -0.013281415216624737, -0.010868553072214127, -0.01587221585214138, -0.03174443170428276, 0.02735999971628189, 0.014306346885859966, 0.004259875044226646, 0.025936482474207878, 0.00037723203422501683, -0.00575456814840436, -0.003309677354991436, -0.009907679632306099, -0.029552215710282326, -0.00487554632127285, 0.004637107253074646, -0.0005738553591072559, 0.02286168560385704, 0.013203121721744537, -0.024413319304585457, 0.04620736837387085, 0.05286942794919014, 0.03874813765287399, -0.00793610792607069, 0.027445411309599876, -0.028612693771719933, -0.004573049023747444, 0.020242413505911827, 0.013800999149680138, 0.046008072793483734, -0.040000833570957184, 0.023815441876649857, -0.008170988410711288, 0.005049927160143852, -0.00545562943443656, 0.002665535779669881, -0.007338230963796377, -0.01327429711818695, 0.014605285599827766, 0.002005379879847169, -0.016882913187146187, -0.008797336369752884, -0.009445035830140114, -0.007309760432690382, 0.03299712762236595, 0.024441789835691452, 0.003428896889090538, 0.01121019758284092, 0.0084770442917943, -0.005562393460422754, -0.009359625168144703, -0.0007495707250200212, -0.011331196874380112, -0.005505452398210764, 0.0010498438496142626, 0.023573443293571472, -0.03114655427634716, 0.014092819765210152, 0.037410032004117966, -0.015203163027763367, -0.027217647060751915, -0.00814963597804308, 0.005797273479402065, 0.001642382936552167, 0.004694047849625349, -0.003277648240327835, -0.0016148022841662169, 0.0184630174189806, -0.007064203731715679, 0.005548158194869757, -0.002179760718718171, -0.0052812485955655575, -0.0006628251867368817, -0.023587679490447044, -0.037353090941905975, -0.0175519660115242, 0.05870584771037102, -0.03974459692835808, 0.004085494205355644, -0.001257143565453589, 0.0003965829673688859, 0.008754630573093891, -0.0038399375043809414, -0.0017002132954075933, 0.0017286835936829448, 0.027858231216669083, 0.03926060348749161, 0.0006592663703486323, 0.003133517224341631, -0.0003670005244202912, 0.015672923997044563, -0.020242413505911827, 0.015744099393486977, 0.008135400712490082, 0.014555462636053562, 0.021737106144428253, -0.01264795009046793, 0.0034253380727022886, -0.031829845160245895, -0.010697731748223305, -0.019302893429994583, 0.05150284990668297, -0.009160333313047886, 0.018434546887874603, -0.0265485942363739, -0.009879209101200104, 0.04615042731165886, -0.02014276757836342, -0.010484203696250916, 0.002626389032229781, -0.03760932385921478, 0.007092674262821674, 0.004580166656523943, -0.01629927195608616, 0.008306222967803478, -0.0259507168084383, 0.004363080020993948, -0.02313215285539627, 0.01787937618792057, 0.02373003028333187, -0.004444932099431753, -0.037239208817481995, 0.018890071660280228, 0.04523937404155731, -0.005224307999014854, 0.0031993547454476357, -0.006825764663517475, 0.017580436542630196, 0.017253028228878975, 0.017637377604842186, 0.008270634338259697, -0.006270593032240868, 0.019032424315810204, -0.0022100103087723255, -0.02529590018093586, 0.004857752472162247, -0.00556595204398036, -0.0018719250801950693, -0.02405744045972824, 0.007235025987029076, -0.03877660632133484, -0.03043479658663273, -0.016982559114694595, -0.007487700320780277, 0.023317210376262665, -0.014761872589588165, -0.02529590018093586, 0.002218907466158271, -0.032683953642845154, -0.01037032250314951, -0.03991542011499405, -0.041709054261446, -0.0032616336829960346, -0.03840649127960205, -0.0018826014129444957, -0.009872091002762318, 0.0018950571538880467, -0.018491487950086594, -0.015630219131708145, 0.008790218271315098, -0.02513931319117546, -0.01524586882442236, 0.019160540774464607, -0.006825764663517475, 0.021950634196400642, -0.005017898045480251, -0.0030872528441250324, -0.03960224613547325, 0.0010898803593590856, -0.017637377604842186, 0.0025285223964601755, -0.020811820402741432, -0.015914922580122948, -0.004804370459169149, -0.025338605046272278, 0.047488532960414886, 0.01316753402352333, 0.01397182047367096, 0.038548845797777176, -0.018135609105229378, 0.00685423519462347, 0.026776358485221863, -0.010099854320287704, -0.00616382947191596, -0.004992986563593149, -0.009687034413218498, -0.02983691915869713, 0.02031358890235424, 0.02270509861409664, -0.041851405054330826, 0.019274422898888588, 0.01940253935754299, 0.002758064540103078, -0.008790218271315098, -0.008469927124679089, -0.050136275589466095, -0.001376363099552691, 0.008896982297301292, -0.0014306347584351897, -0.0029182101134210825, 0.0288119874894619, -0.01940253935754299, -0.049538396298885345, -0.013936232775449753, 0.022021809592843056, -0.006078418344259262, -0.005811508744955063, -0.016598209738731384, -0.012904183007776737, -0.05825032293796539, -0.020982643589377403, -0.009900561533868313, 0.011651488021016121, -0.018235255032777786, -0.02886892855167389, 0.02313215285539627, -0.003580145537853241, -0.03222842887043953, -0.007644287310540676, -0.014555462636053562, -0.0084770442917943, 0.011701310984790325, -0.001642382936552167, -0.02187945879995823, -0.005245660897344351, -0.01088990643620491, -0.01819254830479622, -0.010192383080720901, 0.0024964932817965746, 0.002012497279793024, 0.0016841987380757928, 0.02535284124314785, -0.0008701248443685472, -0.02160898968577385, 0.020669469609856606, 0.007256378885358572, 0.0008638969738967717, -0.01424940675497055, -0.0008839151705615222, 0.002989385975524783, -0.0011539385886862874, -0.00429546320810914, 0.0017758376197889447, -0.0068115293979644775, 0.016996795311570168, -0.013388179242610931, -0.01624233089387417, 0.018591133877635002, 0.011822310276329517, 0.025908011943101883, 0.012370363809168339, -0.02605036459863186, 0.016598209738731384, 0.023915087804198265, -0.000420604832470417, 0.001105894916690886, -0.020057355985045433, 0.007644287310540676, -0.01326717995107174, 0.00034698229865171015, 0.012128366157412529, -0.005003662779927254, -0.02676212228834629, -0.007729697972536087, 0.02280474454164505, 0.025110842660069466, -0.006772382650524378, -0.004092611838132143, 0.007142497226595879, 0.026349302381277084, 0.011381019838154316, 0.010035796090960503, 0.0036691154818981886, -0.009494859725236893, 0.020342059433460236, 0.026947179809212685, 0.022491570562124252, 0.01851995848119259, 0.02388661727309227, 0.013139063492417336, 0.00663358997553587, -0.004516107961535454, -0.01716761663556099, 0.020071592181921005, -0.026235420256853104, -0.006452091503888369, 0.02128158137202263, 0.009594505652785301, -0.0069360872730612755, -0.040000833570957184, 0.009082039818167686, -0.008185223676264286, 0.02172287181019783, -0.018761955201625824, -0.015601747669279575, 0.014918459579348564, 0.00036677808384411037, -0.01400740910321474, 0.002793652471154928, 0.012220894917845726, 0.021964870393276215, 0.03097573295235634, 0.008306222967803478, -0.0025730072520673275, 0.048997461795806885, -0.025580603629350662, 0.017594672739505768, -0.02052711695432663, 0.00931691937148571, 0.01787937618792057, -0.0017153382068499923, -0.017352674156427383, 0.0063951509073376656, 0.004113964736461639, -0.006284828297793865, -0.001122799119912088, 0.00891121756285429, 0.014000291004776955, -9.964619675884023e-05, -0.025537896901369095, -0.011943308636546135, -0.026292361319065094, -0.00201783562079072, 0.0022794068790972233, -0.0189043078571558, 0.014263642020523548, -0.0010881009511649609, -0.011715546250343323, -0.001751815783791244, -0.001520494231954217, 0.010541144758462906, -0.009836503304541111, -0.03444911539554596, -0.0028683871496468782, -0.019032424315810204, -0.004252757411450148, -0.009281331673264503, 0.005512570030987263, 0.014961165376007557, -0.0268617682158947, -0.010477086529135704, -0.012548303231596947, 0.010142560116946697, 0.0094521539285779, -0.017480790615081787, 0.020826056599617004, -0.02318909391760826, 0.037780143320560455, -0.009195921011269093, 0.011587429791688919, 0.004530343227088451, 0.0015436264220625162, -0.016000332310795784, -0.01053402666002512, 0.00020307362137828022, -0.025936482474207878, -0.03575875237584114, 0.008904099464416504, -0.01340953167527914, 0.011238668113946915, 0.007928990758955479, 0.048285700380802155, -0.010847200639545918, -0.022292278707027435, -0.03450605645775795, 0.007815109565854073, 0.006373798009008169, -0.003654880216345191, 0.010562497191131115, 2.894299541367218e-05, 0.00869057234376669, -0.0017251248937100172, -0.020185472443699837, 0.0023701561149209738, 0.0019733505323529243, -0.004690488800406456, -0.012875712476670742, -0.015801040455698967, 0.02405744045972824, 0.025979187339544296, -0.017039500176906586, -0.029381394386291504, -0.02633506804704666, 0.014804578386247158, -0.017737023532390594, 0.0012171071721240878, 0.0011761810164898634, 0.019915005192160606, -0.006679854355752468, -0.00043417271808721125, -0.01705373451113701, 0.015345514751970768, 0.012057189829647541, 0.00016848660015966743, 0.011124786920845509, 0.016655150800943375, -0.00016715205856598914, -0.0036050572525709867, -0.01234901137650013, 0.014526992104947567, 0.024171320721507072, 0.0064485324546694756, 0.01988653466105461, 0.01159454695880413, 0.013800999149680138, 0.037353090941905975, 0.017366908490657806, -0.036043453961610794, -0.03353806585073471, -0.022676628082990646, -0.01933136209845543, 0.017025265842676163, -0.00345380837097764, 0.006565972696989775, 0.002656638855114579, -0.014477169141173363, 0.055545639246702194, -0.00403567124158144, -0.000984006212092936, -0.00021842091518919915, 0.0017358012264594436, 0.019217481836676598, 0.002119261072948575, -0.021964870393276215, -0.009957502596080303, -0.017950551584362984, -0.017110675573349, -0.00019551118020899594, -0.0008483272395096719, 0.02600765787065029, 0.0063951509073376656, 0.031175024807453156, -0.0094521539285779, 0.024299437180161476, 0.02340262196958065, -0.011843662708997726, -0.04256316274404526, -0.016697855666279793, -5.613439861917868e-05, 0.00012222229270264506, -0.004234963562339544, 0.025495192036032677, 0.006598001811653376, -0.03254160284996033, -0.00943080149590969, 0.030691029503941536, 0.016811737790703773, 0.01602880284190178, 0.00035543442936614156, -0.003932466264814138, 0.0044983141124248505, -0.008434339426457882, 0.0009395212982781231, 0.0096727991476655, 0.0075375232845544815, -0.028029052540659904, 0.014676461927592754, 0.009985973127186298, 0.014833048917353153, 0.0031441934406757355, -0.013751175254583359, -0.014398875646293163, 0.0010596305364742875, -0.00476522371172905, -0.018918542191386223, 0.003907554782927036, -0.008363163098692894, -0.0091532152146101, -0.012377481907606125, -0.028897397220134735, -0.015402455814182758, 0.01188636850565672, -0.013345473445951939, 0.02523895911872387, -0.013302767649292946, -0.004939604550600052, 0.02512507699429989, -0.0013149739243090153, -0.006110447458922863, -0.00192352756857872, -0.014989635907113552, -0.025979187339544296, 0.0034680436365306377, 0.019858064129948616, 0.016754796728491783, -0.014526992104947567, -0.04686218500137329, 0.007021498400717974, -0.007872049696743488, -0.02220686711370945, -0.00801440142095089, -0.008327575400471687, 0.00046976064913906157, 0.016156919300556183, 0.008170988410711288, -0.011957543902099133, -0.02464108169078827, 0.008306222967803478, -0.00019528875418473035, -0.007060645148158073, -0.0027135794516652822, 0.0062421225011348724, -0.020071592181921005, 0.02318909391760826, 0.008299104869365692, -0.024840373545885086, 0.0070250569842755795, -0.012761831283569336, 0.0018096461426466703, 0.000588980212341994, 0.013060769997537136, -0.0062136524356901646, -0.010704848915338516, -0.015217398293316364, -0.0003158428589813411, -0.00151337671559304, -0.025011196732521057, 0.013744058087468147, 0.00366199784912169, -0.001692206016741693, 0.014228054322302341, -0.05318260192871094, -0.018733486533164978, -0.02784399501979351, 0.025011196732521057, 0.010697731748223305, 0.006046389229595661, 0.00013067442341707647, -0.012989593669772148, 0.023488033562898636, 0.005633569322526455, 0.029609156772494316, 0.013516295701265335, -0.040057770907878876, -0.009309802204370499, -0.012071425095200539, 0.023957794532179832, 0.010519791394472122, 0.002313215285539627, -0.041737522929906845, 0.03006468154489994, -0.025708720088005066, 0.0036833505146205425, -0.02037052996456623, 0.014448698610067368, 0.00177405821159482, 0.007074880413711071, -0.0202566497027874, 0.00377232045866549, 0.033338770270347595, 0.028199873864650726, 0.0035641309805214405, 0.01232765894383192, -0.018349135294556618, -0.004032112192362547, -0.006868470460176468, 0.02556636743247509, 0.024840373545885086, -0.014470051974058151, 0.02123887650668621, -0.006035712547600269, -0.0067581478506326675, 0.0030925909522920847, -0.018534192815423012, 0.04034247621893883, -0.001886160229332745, 0.003747408976778388, -0.020270884037017822, -0.022776274010539055, -0.018320666626095772, 0.005291924811899662, 0.022776274010539055, 0.028854692354798317, 0.004448491148650646, -0.0008705697255209088, 0.003403985407203436, -0.022932861000299454, -0.0038826430682092905, -0.006548178847879171, 0.008526867255568504, 0.0003781217383220792, -0.010270676575601101, -0.007779521401971579, -0.018947012722492218, 0.00659444322809577, -0.02324603497982025, 0.020085826516151428, -0.005537481512874365, -0.00943080149590969, 0.009622976183891296, 0.008327575400471687, -0.027744349092245102, -0.007459229789674282, 0.0023470239248126745, 0.002733152825385332, -0.00969415158033371, 0.007558876182883978, -0.013238709419965744, -0.0014172892551869154, -0.010021560825407505, -0.012142601422965527, 0.015559042803943157, 0.04318951070308685, 0.0027367116417735815, 0.0010881009511649609, -0.005590863525867462, -0.0006081087049096823, -0.042705513536930084, 0.014519874937832355, -0.019189011305570602, 0.011324078775942326, 0.007928990758955479, 0.04447067528963089, -0.014633756130933762, 0.04111117497086525, 0.008099813014268875, -0.00014313020801637322, -0.005263454746454954, -0.01454834546893835, 0.006530384998768568, -0.0029804890509694815, -0.003039209172129631, -0.006722559686750174, -0.03322489187121391, 0.024797668680548668, -0.018918542191386223, 0.03803637996315956, -0.020769115537405014, -0.0014297449961304665, -0.020399000495672226, -0.00203740899451077, -0.017466556280851364, -0.005811508744955063, -0.005242101848125458, 0.04583725333213806, -0.036812152713537216, 0.0008016180945560336, 0.003170884447172284, -0.007402289193123579, -0.018975483253598213, 0.01842031255364418, 0.011722663417458534, 0.023203330114483833, 0.013765410520136356, -0.02226380817592144, -0.005925389938056469, -0.006779500283300877, -0.006057065445929766, -0.010583849623799324, -0.02373003028333187, -0.013288532383739948, -0.011124786920845509, 0.00993614923208952, -0.012320540845394135, -0.03205760568380356, 0.010163912549614906, -0.0374954417347908, 0.009665681049227715, 0.018733486533164978, 0.01305365189909935, -0.02794364094734192, 0.005277690012007952, -0.02410014532506466, 0.020882995799183846, 0.026577064767479897, 0.003943142481148243, -0.005928948987275362, 0.0003654435568023473, 0.017253028228878975, 0.022334983572363853, 0.013466471806168556, -0.02118193544447422, 0.006864911410957575, -0.007615816779434681, -0.0005565062165260315, 0.015075046569108963, -0.0010916597675532103, -0.022790510207414627, -0.009900561533868313, 0.03564487025141716, 0.009551799856126308, 0.00839163362979889, -0.01210701372474432, 0.018107138574123383, -0.025210488587617874, -0.010477086529135704, -0.02377273701131344, -0.011224432848393917, -0.01971571333706379, -0.008163871243596077, 0.022875919938087463, -0.0012865036260336637, 0.014747637324035168, 0.014975400641560555, -0.01619962602853775, 0.013836586847901344, -0.00014857960923109204, -0.004889781586825848, 0.014690697193145752, 0.018164079636335373, 0.02345956303179264, -0.018534192815423012, 0.024840373545885086, 0.022448865696787834, 0.016555504873394966, -0.0020213944371789694, -0.008099813014268875, -0.00799304898828268, 0.004886222537606955, 0.01218530721962452, -0.006526825949549675, -0.031061144545674324, -0.0029858271591365337, 0.017623141407966614, 0.001645051990635693, 0.0011139021953567863, 0.014619520865380764, 0.018705016002058983, -0.020242413505911827, -0.01940253935754299, 0.0015400676056742668, 0.009758209809660912, 0.008569573052227497, 0.001953777391463518, 0.0041032880544662476, 0.009267096407711506, -0.0012171071721240878, 0.0050997501239180565, 0.01879042573273182, 0.0037687616422772408, -0.01281165424734354, 0.00869057234376669, -0.009046451188623905, -0.003138855332508683, 0.016541268676519394, -0.018107138574123383, -0.003704703412950039, -0.012918418273329735, -0.0008389854338020086, 0.00194310094229877, -0.03294018656015396, 0.008861394599080086, 0.0007090894505381584, 0.010398793034255505, 0.01243442203849554, -0.00070953433169052, 0.0023399062920361757, -0.002820343244820833, -0.002564110327512026, -0.010541144758462906, 0.0010382778709754348, -0.015502101741731167, 0.0075944638811051846, 0.008861394599080086, 0.030377855524420738, -0.009423683397471905, 0.020270884037017822, -0.017950551584362984, 0.008583808317780495, -0.0090749217197299, -0.010953964665532112, 0.0092315087094903, 0.005964536685496569, -0.004904016386717558, -0.005110426340252161, -0.02573719061911106, -0.025167783722281456, 0.006580207962542772, -0.0374954417347908, 0.009857856668531895, 0.00037345083546824753, 0.03245618939399719, -0.005217190366238356, 0.011857897974550724, 0.012697773054242134, 0.004868428688496351, -0.00762293441221118, 0.011146139353513718, -0.008925452828407288, 0.011167491786181927, -0.02118193544447422, 0.00502501567825675, 0.016598209738731384, 0.013281415216624737, -0.01917477510869503, -0.015559042803943157, -0.024512965232133865, -0.003138855332508683, -0.018164079636335373, 0.014263642020523548, -0.01243442203849554, 0.015060811303555965, -0.008128282614052296, 0.012989593669772148, -0.008996628224849701, -0.006512591149657965, 0.01570139452815056, 0.028669634833931923, -0.015174692496657372, 0.00629550451412797, -0.0010356087004765868, -0.0018505722982808948, -0.00047420914052054286, 0.007509052753448486, -0.026847533881664276, 0.0032954420894384384, -0.005815067328512669, 0.009566035121679306, 0.01484728418290615, -0.006220770068466663, -0.005573069676756859, 0.011025140061974525, -0.0038007907569408417, -0.007316878065466881, 0.0032580748666077852, 0.01712491177022457, -0.020626762881875038, -0.01782243512570858, 0.00369758578017354, -0.02313215285539627, -0.00434884475544095, 0.008498397655785084, 0.0035392194986343384, 0.0036584390327334404, -0.015516337007284164, 0.005501893814653158, 0.009017981588840485, -0.010185264982283115, -0.0070286160334944725, 0.00517448503524065, 0.011010904796421528, 0.024726493284106255, 0.02340262196958065, -0.007217232137918472, -0.014178230427205563, -0.011722663417458534, 0.005085514858365059, 0.003227825043722987, 0.0020249532535672188, -0.01234901137650013, 0.02562330849468708, -0.001880822004750371, 0.01793631538748741, -0.032427720725536346, -0.008996628224849701, -0.02118193544447422, 6.522599869640544e-05, -0.0053737773559987545, 0.01705373451113701, -0.006825764663517475, 0.0019075130112469196, 0.004750988446176052, 0.011445078067481518, -0.007743933238089085, 0.010099854320287704, -0.0001263371523236856, -3.325247234897688e-05, 0.026178481057286263, 0.026235420256853104, 0.00769411027431488, 0.005768803413957357, -0.004847075790166855, -0.009822268038988113, 7.15094938641414e-05, 0.0044983141124248505, -0.01608574390411377, -0.02079758606851101, 0.014149760827422142, -0.01977265253663063, -0.014534110203385353, 0.01091125886887312, 0.011416607536375523, -0.01234901137650013, -0.002049864735454321, 0.0013176430948078632, -0.00030650102416984737, -0.002149510895833373, 0.007565993815660477, 0.004263433627784252, 0.01227071788161993, -0.021480873227119446, -0.0034306764136999846, -0.020228179171681404, -0.010135442018508911, 0.0184630174189806, -0.00476522371172905, -0.009032215923070908, 0.006694089621305466, 0.02817140519618988, 0.003126399591565132, 0.007829343900084496, -0.010711966082453728, 0.016612445935606956, 0.008441456593573093, -0.0031513110734522343, 0.019530655816197395, 0.01115325652062893, 0.001376363099552691, 0.007259937468916178, 0.026463184505701065, -0.015359750017523766, -0.03319641947746277, 0.008726160041987896, 0.032143015414476395, 0.023060977458953857, -0.013559000566601753, 0.0187477208673954, -0.02427096664905548, -0.009302684105932713, 0.0038897607009857893, -0.013644412159919739, 0.0284988135099411, 0.015117752365767956, -0.0030801352113485336, 0.001980468165129423, 0.0273030586540699, -0.015060811303555965, 0.034534525126218796, -0.0037758792750537395, -0.007950343191623688, 0.017694318667054176, 0.006537502631545067, 0.012583891861140728, -0.01652703434228897, 0.006046389229595661, 0.02854151837527752, 0.0101283248513937, -0.021480873227119446, 0.0026228304486721754, -0.015217398293316364, -0.007238584570586681, -0.006800853181630373, -0.019032424315810204, 0.03103267401456833, 0.00044996486394666135, 0.018548429012298584, 0.010135442018508911, 0.017366908490657806, 0.02037052996456623, -0.018434546887874603, -0.0101283248513937, -0.006327533628791571, -0.007242143619805574, -0.002124599413946271, -0.004701165482401848, 0.019516419619321823, -0.0016806399216875434, -0.014747637324035168, -0.018377605825662613, -0.02193639986217022, -0.0030570030212402344, 0.020228179171681404, 0.005654921755194664, 0.010847200639545918, 0.001046285149641335, -0.004252757411450148, 0.01432770024985075, 0.014761872589588165, -0.014719167724251747, -0.01940253935754299, -0.002512507839128375, -0.01372982282191515, -0.022135691717267036, 0.00977244507521391, -0.054577648639678955, -0.010519791394472122, 0.020925702527165413, 0.0003262968093622476, 0.0004924479871988297, 0.0049218107014894485, 0.027004120871424675, 0.00961585808545351, 0.029751507565379143, 0.018662309274077415, 0.0031815608963370323, 0.002864828333258629, 0.002320332918316126, 0.0070855566300451756, 0.0005244771018624306, 0.0032509572338312864, 0.00384705513715744, 0.014356170780956745, 0.019032424315810204, 0.006896940525621176, 0.00248403730802238, -0.010163912549614906, -0.006637148559093475, 0.027374234050512314, 0.022975565865635872, 0.014555462636053562, 0.02734576351940632, -0.01624233089387417, 0.01424940675497055, -0.03103267401456833, -0.015359750017523766, 0.00399652449414134, 0.005014338996261358, -0.004263433627784252, 0.018733486533164978, 0.004729635547846556, 0.017480790615081787, -0.018761955201625824, 0.018818896263837814, -2.1352756448322907e-05, 0.036157336086034775, -0.004270551260560751, 0.00021108090004418045, 0.01944524422287941, 0.015772569924592972, 0.011082081124186516, -0.009003746323287487, -0.010932611301541328, -0.004768782295286655, -0.015288574621081352, 0.01820678450167179, 0.020114297047257423, -0.0009635431924834847, -0.009188802912831306, 0.022890156134963036, 0.0261073037981987, -0.018975483253598213, 0.007964578457176685, 0.0004933376330882311, 0.010939729399979115, 0.013993173837661743, -0.010868553072214127, -0.0011806294787675142, 0.01121019758284092, -0.010270676575601101, -0.012996711768209934, 0.0005849765730090439, 0.00468693021684885, -0.0029626949690282345, 0.01971571333706379, 0.002758064540103078, -0.007658522110432386, -0.01602880284190178, -0.019744182005524635, -0.013032299466431141, 0.0024466700851917267, -0.010284911841154099, 0.001953777391463518, -0.0022794068790972233, -0.0050997501239180565, 0.02150934375822544, -0.022833215072751045, 0.006647825241088867, -0.0011352549772709608, 0.002889739815145731, 0.008206576108932495, -0.004416462033987045, 0.006580207962542772, 0.014961165376007557, 0.02929598279297352, -0.004775899928063154, 0.02290439046919346, -0.01500387117266655, -0.013046534731984138, 0.01928865723311901, 0.020754879340529442, 0.004889781586825848, -0.013388179242610931, 0.006363121792674065, -0.0038648489862680435, 0.004790135193616152, -0.010961081832647324, 0.02512507699429989, 0.009708386845886707, 0.005573069676756859, -0.01378676388412714, -0.005914713721722364, 0.005487658549100161, 0.008541102521121502, 0.03385123610496521, -0.008704807609319687, 0.007224349305033684, 0.0029698126018047333, 0.0206979401409626, -0.008078459650278091, 0.018534192815423012, -0.0006450312212109566, -0.0013496722094714642, 0.005199396517127752, 0.0031317376997321844, 0.011772486381232738, -0.008861394599080086, 0.007380936294794083, 0.0008114047814160585, 0.017850905656814575, -0.004936045501381159, -0.016228094696998596, -0.01115325652062893, -0.012477127835154533, 0.022676628082990646, -0.03473381698131561, 0.015345514751970768, 0.0073595838621258736, -0.006089094560593367, -0.0028861809987574816, -0.000360327772796154, 0.01229207031428814, -0.017537731677293777, 7.401176844723523e-05, 0.013082122430205345, 0.0004888891708105803, -0.02469802275300026, 0.015772569924592972, -0.008356045931577682, 0.006238563917577267, 0.007092674262821674, -0.008035753853619099, 0.014719167724251747, -0.009089156985282898, -0.0052848076447844505, -0.02718917839229107, 0.0167975015938282, -0.008121165446937084, -0.029666097834706306, -0.008825805969536304, 0.00039591570384800434, -0.009445035830140114, 0.0008180775330401957, -0.03524628281593323, 0.005818626377731562, -0.006049947813153267, -0.009601622819900513, -0.008242164738476276, -0.006797294598072767, -0.018007492646574974, -0.013822351582348347, 0.007224349305033684, 0.0075375232845544815, 0.013046534731984138, 0.00040547995013184845, 0.040484827011823654, 0.0006401378777809441, -0.021594755351543427, 0.012904183007776737, 0.02486884407699108, 0.0012117689475417137, 0.018562663346529007, 0.04079800099134445, -0.006882705260068178, 0.002201113384217024, -0.002281186170876026, -0.003686909331008792, -0.025822600349783897, -0.028071757405996323, -0.0038826430682092905, -0.014149760827422142, -0.02160898968577385, 0.012519833631813526, -0.010462851263582706, -0.011701310984790325, 0.02210722118616104, -0.011117668822407722, 0.0031068262178450823, 0.017480790615081787, 0.0190608948469162, -0.01172978151589632, 0.0031121643260121346, 0.021751342341303825, 0.000551612873096019, 0.0070855566300451756, 0.013886409811675549, -0.0010640791151672602, -0.0092315087094903, -0.00022020030883140862, 0.0051353382878005505, 0.006010801065713167, 0.02832799032330513, 0.0016592871397733688, 0.014498522505164146, -0.009886326268315315, 0.00859092641621828, 0.0011850780574604869, 0.019843829795718193, 0.009793798439204693, 0.02848457731306553, 0.021110760048031807, 0.0025356400292366743, -0.005469864699989557, -0.005683392286300659, 0.005772361997514963, -2.5842953618848696e-05, -0.01847725175321102, 0.0032829863484948874, -0.00586489075794816, -0.02373003028333187, -0.005452070850878954, 0.037837084382772446, -0.02410014532506466, -0.003145972965285182, 0.008377398364245892, -0.03476228937506676, -0.002807887503877282, 0.016697855666279793, -0.018121372908353806, 0.007509052753448486, 0.012640831992030144, 0.0014866857090964913, 0.01602880284190178, -0.005548158194869757, -0.026036128401756287, -0.003718938445672393, 0.022776274010539055, 0.004459167364984751, 0.00373673252761364, 0.0012784963473677635, 0.003172663738951087, -0.019132070243358612, 0.03163054957985878, 0.010555380024015903, -0.021737106144428253, 0.01722455769777298, -0.01565868780016899, 0.016811737790703773, 0.020413236692547798, 0.005256337113678455, -0.036043453961610794, 0.007060645148158073, -0.0030231946147978306, -0.012391717173159122, -0.008640749379992485, -0.020413236692547798, 0.0027562850154936314, 0.0044662849977612495, -0.00943080149590969, -0.006726118735969067, 0.01091125886887312, -0.0005062383133918047, 0.01631350629031658, 0.009843621402978897, -0.003352382918819785, -0.014121290296316147, 0.009964619763195515, 0.023374151438474655, 0.022249573841691017, 0.02481190301477909, 0.0032740894239395857, 0.0035748074296861887, 0.02415708638727665, 0.02687600441277027, 0.011260020546615124, 0.007149614859372377, 0.022605452686548233, -0.0030000624246895313, -0.0076300520449876785, 4.2177256545983255e-05, 0.01402876153588295, -0.007185203023254871, 0.03797943890094757, 0.005302601493895054, -0.0027118001598864794, -0.001058740890584886, 0.006868470460176468, 0.0098293861374259, 0.0034627055283635855, -0.0040819356217980385, 0.0009377419482916594, -0.0076300520449876785, 0.009110509417951107, 0.020071592181921005, -0.01395046804100275, 0.012441540136933327, 0.026192715391516685, -0.012697773054242134, 0.009886326268315315, -0.0175519660115242, 0.010562497191131115, 0.023573443293571472, -0.003761644009500742, -0.0045588137581944466, 0.0023897294886410236, -0.0004866649105679244, -0.035730279982089996, -0.011566076427698135, -0.013046534731984138, -0.0206979401409626, 0.021423932164907455, 0.016925618052482605, 0.014277877286076546, 0.002984047867357731, -0.00785069726407528, -0.007743933238089085, 0.006818647030740976, 0.005170925986021757, 0.005185161251574755, 0.006911175791174173, 0.01658397540450096, 0.006612237077206373, -0.006437856238335371, 0.043360333889722824, -0.016939854249358177, 0.006487679202109575, -0.002106805332005024, 0.02296133153140545, 0.0025979187339544296, -0.009793798439204693, -0.014932694844901562, -0.026249656453728676, 0.021409697830677032, 0.002532081212848425, -0.01656973920762539, -0.0029929447919130325, 0.0024964932817965746, 0.0294098649173975, 0.010171029716730118, 0.010263558477163315, -0.027431175112724304, -0.011224432848393917, 0.008918334729969501, 0.002188657643273473, 0.013843704015016556, 0.004167346283793449, -0.0058826846070587635, -0.0015836628153920174, 0.015160457231104374, -0.0007233246578834951, -0.0005320395575836301, 2.9582466595456935e-05, 0.01570139452815056, 0.0015373985515907407, 0.0031993547454476357, -0.015188927762210369, 0.003686909331008792, -0.011245785281062126, 0.030634088441729546, 0.01256965659558773, -0.011722663417458534, 0.013502060435712337, -0.013978938572108746, 0.008576691150665283, -0.017950551584362984, 0.02296133153140545, -0.008576691150665283, -0.009046451188623905, -0.006071300711482763, -0.0060641830787062645, 0.004448491148650646, 0.010377439670264721, 0.0010453953873366117, 0.017509261146187782, 0.002590801101177931, -0.0003445356269367039, -0.02264815755188465, -0.014306346885859966, 0.0004163787525612861, -0.01205007266253233, -0.002087231958284974, -0.005516129080206156, -0.0014244068879634142, -0.001460884464904666, -0.023302976042032242, 0.00683644087985158, 0.0004328381910454482, 0.012114130891859531, 0.009423683397471905, -0.018235255032777786, 0.013252944685518742, 0.010028677992522717, -0.011843662708997726, 0.007373818662017584, -0.008035753853619099, 0.006316857412457466, -0.002500052098184824, -0.003573028137907386, -0.01297535840421915, 0.01570139452815056, -0.003033870831131935, 0.007637169677764177, -0.0008701248443685472, 0.010462851263582706, 0.003523204941302538, -0.02935292385518551, -0.014377523213624954, -0.023915087804198265, 0.014299229718744755, -0.0011343652149662375, -0.019260186702013016, -0.0032260457519441843, -0.00950909499078989, 0.02600765787065029, -0.007743933238089085, -0.0018576899310573936, 0.009907679632306099, -0.00014168444613460451, -0.016825972124934196, -0.0016023465432226658, -0.023687325417995453, -0.009338272735476494, 0.006900499574840069, 0.019587596878409386, 0.002129937522113323, -0.015103517100214958, -0.0017900727689266205, 0.0036797919310629368, -0.0044662849977612495, 0.009416566230356693, -0.01053402666002512, -0.003039209172129631, -0.021053818985819817, -0.0035178668331354856, 0.0059716543182730675, -0.001987585797905922, -0.001348782447166741, -0.008078459650278091, 0.018947012722492218, -0.00556595204398036, -0.01557327713817358, 0.004323933273553848, -0.04250622168183327, 0.0016067950055003166, 0.002813225844874978, -0.02166593074798584, -0.01982959359884262, -0.011651488021016121, 0.01096819993108511, 0.00785069726407528, -0.013438002206385136, 0.030377855524420738, 0.024128615856170654, -0.0084770442917943, 7.31776817701757e-05, 0.010868553072214127, 0.018277959898114204, 0.0064841206185519695, 0.026634005829691887, -0.023103684186935425, -0.011089198291301727, -0.008213694207370281, -0.006989469286054373, -0.011381019838154316, -0.03439217433333397, 0.0012936212588101625, 0.01091125886887312, 0.004569489974528551, -0.016000332310795784, -1.476343004469527e-05, -0.0010373881086707115, -0.008128282614052296, -0.0014128407929092646, -0.0009697710629552603, -0.012391717173159122, -0.008868511766195297, -0.010562497191131115, 0.00012655957834795117, -0.011601665057241917, -0.0013745836913585663, 0.009701269678771496, -0.0103489700704813, 0.004028553608804941, -0.0011984234442934394, -0.003265192499384284, -0.02599342353641987, -0.004412902984768152, -0.024897314608097076, -0.011281372979283333, 0.00502501567825675, -0.02269086241722107, 0.012128366157412529, 0.013544765301048756, -0.01772278919816017, 0.014562580734491348, 0.00571542140096426, -0.02378697134554386, 0.003597939619794488, 0.0004492976004257798, 0.0031246200669556856, -0.014042996801435947, 0.03108961507678032, 0.0012260040966793895, -0.019217481836676598, 0.010192383080720901, 0.011423724703490734, 0.01115325652062893, 0.0016148022841662169, -0.014747637324035168, -0.01604303903877735, -0.005619334056973457, 0.005185161251574755, 0.0017384702805429697, -0.01007138378918171, -0.0029484599363058805, 0.0013674661749973893, 0.014263642020523548, -0.00683644087985158, -0.0034075442235916853, 0.0014849063009023666, 0.01718185283243656, 0.02464108169078827, -0.018619604408740997, 0.015274339355528355, 0.011665723286569118, -0.004024994559586048, -0.033452652394771576, -0.005804391112178564, 0.0016290374333038926, 0.01971571333706379, -0.026150010526180267, 0.010099854320287704, 0.001266930252313614, -0.00739517156034708, -0.015672923997044563, -0.014142642728984356, -0.0034235587809234858, 0.01571562886238098, -0.01432770024985075, -0.0041709053330123425, -0.0050107804127037525, 0.01842031255364418, -0.017409615218639374, 0.01820678450167179, 0.00552680529654026, 0.017737023532390594, 0.0279009360820055, -0.010256441310048103, 0.008811570703983307, 0.004121082369238138, 0.009032215923070908, -0.02068370394408703, -0.030320914462208748, -0.00898951105773449, 0.01367288175970316, 0.014377523213624954, -0.009067804552614689, -0.019146306440234184, -0.004911134019494057, 0.004690488800406456, -0.029865389689803123, -0.0033434859942644835, 0.0028932986315339804, -0.0024217586033046246, 0.02757352776825428, -0.020498646423220634, -0.007829343900084496, -0.02854151837527752, 0.014932694844901562, -0.018377605825662613, 0.008633631281554699, 0.023858146741986275, 0.03308253735303879, 0.015886452049016953, 0.016726326197385788, -0.007249261252582073, 0.012156836688518524, -0.017737023532390594, -0.009701269678771496, 0.029666097834706306, 0.014961165376007557, 0.018619604408740997, -0.014747637324035168, -0.004060582723468542, -0.016000332310795784, 0.010320499539375305, 0.00601436011493206, 0.026890238747000694, 0.0029609156772494316, 0.011252903379499912, 0.020285120233893394, -0.00700370455160737, 0.015416691079735756, 0.009003746323287487, 0.01652703434228897, 0.0021868781186640263, 0.01652703434228897, -0.037068385630846024, 0.0054627470672130585, -0.005146014504134655, -0.020712174475193024, -0.006943204905837774, -0.023317210376262665, -0.009274214506149292, 0.014633756130933762, 0.00438799150288105, 0.016911383718252182, 0.006459209136664867, -0.0015765452990308404, -0.02627812698483467, 0.006960998754948378, 0.0062421225011348724, -0.007743933238089085, 0.0040499065071344376, 0.01410705503076315, 0.014904224313795567, 0.013594589196145535, -0.00014780111087020487, 0.028783516958355904, -0.012740478850901127, 0.004274110309779644, 0.0006770603358745575, 0.010797377675771713, 0.009188802912831306, -0.007416524458676577, -0.011665723286569118, 0.0027224766090512276, -0.007416524458676577, 0.003879084251821041, -0.00724570220336318, 0.0034022058825939894, -0.005299042444676161, 0.011324078775942326, -0.015188927762210369, -0.008619396016001701, 0.005501893814653158, 0.011865015141665936, 0.005533922929316759, 0.008562455885112286, -0.012776066549122334, 0.01624233089387417, 0.011288491077721119, 0.0018843808211386204, 0.009850738570094109, -0.01797902211546898, 0.007530405651777983, 0.020455941557884216, 0.01597186177968979, 0.025381309911608696, -0.004327492322772741, -0.0022829656954854727, 0.02210722118616104, 0.0004706503532361239, -0.025167783722281456, 0.0012936212588101625, -0.008064224384725094, 0.0005823074607178569, 0.012683537788689137, 0.004569489974528551, -0.009864973835647106, 0.00506416242569685, 0.020712174475193024, 0.03570181131362915, -0.017993256449699402, 0.01656973920762539, -0.010555380024015903, 0.028797751292586327, -0.002608595183119178, 0.004121082369238138, -0.013808116316795349, -0.011003787629306316, 0.0005195837584324181, -0.0007282180013135076, 0.011316961608827114, -0.0012277835048735142, 0.009679916314780712, 0.011437959969043732, 0.013203121721744537, 0.0002904864668380469, -0.0013905983651056886, -0.006925411056727171, 0.02562330849468708, -0.002300759544596076, 0.007256378885358572, -0.01503234077244997, 0.01571562886238098, 0.0013212019111961126, 0.0026584183797240257, -0.006341768894344568, -0.027174942195415497, -0.002313215285539627, -0.011523371562361717, -0.011758252047002316, 0.0001101557572837919, -0.0036157334689050913, -0.016341976821422577, -0.002882622182369232, 0.006708324421197176, -0.006099770776927471, 0.01652703434228897, -0.0010400571627542377, 0.002683329861611128, -0.009644328616559505, -0.016555504873394966, -0.006669177673757076, -0.014904224313795567, 0.013210238888859749, 0.016156919300556183, -0.006519708316773176, -0.01007138378918171, 0.010797377675771713, -0.004455608781427145, 0.015459395945072174, -0.004637107253074646, -0.024142850190401077, 0.004117523320019245, -0.004398668184876442, -0.0020338501781225204, 0.008598043583333492, -0.020185472443699837, -0.009082039818167686, -0.00015369536413345486, -0.012776066549122334, -0.003893319284543395, 0.020185472443699837, 0.014776107855141163, 0.0025836837012320757, -0.008049989119172096, 0.009224391542375088, -0.024683786556124687, 0.00403567124158144, 0.007416524458676577, 0.0073595838621258736, -0.002989385975524783, 0.012633714824914932, -0.00567627465352416, -0.007099791895598173, 0.018733486533164978, -0.0001776060089468956, 0.018178313970565796, -0.0022420394234359264, -0.005163808353245258, -0.006879146676510572, -0.014761872589588165, 0.009437918663024902, 0.0015560821630060673, -0.010932611301541328, 0.01592915691435337, -0.016427388414740562, 0.01847725175321102, -0.0005089073674753308, -0.0030747971031814814, 0.01678326725959778, -0.0035498959477990866, -0.00778663856908679, -0.0030623413622379303, -0.0074449945241212845, -0.02230651304125786, 0.018391842022538185, 0.018534192815423012, 0.02469802275300026, -0.03023550473153591, 0.0038185848388820887, -0.006569531746208668, 0.013751175254583359, 0.015857981517910957, -0.010939729399979115, 0.0025303016882389784, -0.02004312165081501, -0.013217356987297535, -0.0010622997069731355, -0.0030249739065766335, -0.0062421225011348724, 0.02963762730360031, -0.0167975015938282, -0.0025943599175661802, 0.0074449945241212845, -0.008206576108932495, -0.010413028299808502, -0.02236345410346985, -0.019189011305570602, -0.0024093028623610735, 0.0016032361891120672, 0.005274130962789059, 0.02172287181019783, -0.004964516032487154, 0.005391571205109358, -0.011679958552122116, -0.005541040562093258, -0.019032424315810204, -0.03504699096083641, -0.012370363809168339, -0.01554480753839016, -0.019416773691773415, 0.008719042874872684, -0.019858064129948616, -0.016669385135173798, -0.006412944756448269, -0.008142517879605293, -0.004768782295286655, 0.021167699247598648, 0.01652703434228897, 0.014206700958311558, -0.005886243190616369, 0.012918418273329735, 0.01575833559036255, 0.009017981588840485, -0.011089198291301727, -0.0014911341713741422, -0.007099791895598173, -0.02232074923813343, 0.01143084280192852, -0.011082081124186516, -0.009815150871872902, -0.005352424457669258, -0.0046833716332912445, 0.005089073907583952, 0.011174609884619713, -0.0034520290791988373, -0.016640914604067802, 0.005053485743701458, -0.02801481820642948, 0.013509177602827549, 0.00705708609893918, 0.006224328652024269, 0.010178147815167904, -0.0018950571538880467, -0.0059716543182730675, 0.004950280766934156, 0.006953881122171879, -0.03641356900334358, 0.01015679445117712, -0.012776066549122334, 0.013537648133933544, 0.021381227299571037, -0.03012162260711193, -0.009715504944324493, -0.004420020617544651, 0.01928865723311901, 0.010042913258075714, 0.010918376967310905, -0.012626596726477146, 0.0256660133600235, -0.00837028119713068, 0.011160374619066715, 0.019459478557109833, 0.00526701333001256, -0.022833215072751045, -0.02871234156191349, -8.074011566350237e-05, -0.010982435196638107, -0.0019964827224612236, -0.003578366246074438, 0.01059096772223711, -0.0002533415681682527, 0.003968053963035345, 0.0177085530012846, 0.006227887701243162, 0.018619604408740997, -0.0023612589575350285, -0.010519791394472122, 0.009053569287061691, -0.002169084269553423, 0.006551737897098064, -0.0031317376997321844, 0.0012019822606816888, -0.01464799139648676, 0.011665723286569118, 0.0023808323312550783, -0.003914671950042248, -0.01907512918114662, 0.007295525167137384, -0.0031210612505674362, -0.004879104904830456, -0.018705016002058983, -0.002405744045972824, -0.015502101741731167, -0.0005680723115801811, 0.029922330752015114, -0.010840083472430706, 3.778437167056836e-05, 0.013153298757970333, -0.008064224384725094, 0.014391758479177952, -0.006181623321026564, -0.016213860362768173, 0.00272781471721828, 0.019900768995285034, 0.00472607696428895, 0.008192340843379498, 0.017594672739505768, 0.007213673088699579, 0.009943267330527306, -0.023260269314050674, -0.01229207031428814, 0.010555380024015903, 0.019032424315810204, 0.004992986563593149, 0.02983691915869713, 0.018591133877635002, -0.016996795311570168, -0.004708283115178347, -0.007665639743208885, 0.03148819878697395, 0.00629550451412797, -0.008526867255568504, -0.0030107388738542795, 0.008882747031748295, -0.0029253277461975813, -0.015075046569108963, -0.004783017560839653, 0.005893360823392868, 0.0002046305889962241, -0.010953964665532112, 0.012263599783182144, 0.008064224384725094, 0.0012393495999276638, -0.0021459520794451237, 0.013836586847901344, 0.00629550451412797, 0.0019893653225153685, -0.003233163384720683, 0.0017331321723759174, 0.006384474225342274, 0.001823881291784346, 0.022790510207414627, 0.028199873864650726, 0.014619520865380764, 0.014605285599827766, -0.0020961291156709194, -0.00048710976261645555, -0.0035445576068013906, 0.014961165376007557, -0.014975400641560555, -0.02106805332005024, 0.007765286136418581, 0.002395067596808076, 0.015729865059256554, 0.026206951588392258, -0.010185264982283115, 0.008057107217609882, -0.02296133153140545, 0.016057273373007774, -0.025580603629350662, 0.011494901031255722, 0.002832799218595028, -0.015174692496657372, 0.009046451188623905, -0.007530405651777983, 0.003190457820892334, 0.011608782224357128, -0.016612445935606956, -0.009309802204370499, -0.013978938572108746, -0.01554480753839016, -0.015801040455698967, -0.005768803413957357, 0.002738491166383028, -0.010256441310048103, -0.01324582751840353, -0.004313257057219744, 0.003128178883343935, 0.018064431846141815, 0.009445035830140114, 0.001259812619537115, -0.0011948647443205118, -0.026989884674549103, 0.01045573316514492, -0.03980153799057007, 0.016655150800943375, 0.0081781055778265, -0.029125161468982697, -0.004178022965788841, -0.006918293423950672, 0.013452237471938133, -0.005395129788666964, 0.0034520290791988373, -0.010263558477163315, 0.010904141701757908, 0.0018541311146691442, -0.0010080280480906367, -0.01389352697879076, 0.0187477208673954, -0.010519791394472122, -0.005968095734715462, 0.008114047348499298, -0.005530364345759153, 0.002199334092438221, -0.0025303016882389784, -0.02377273701131344, 0.014420229010283947, -0.0050997501239180565, -0.029552215710282326, -0.010633673518896103, 0.0016761914594098926, 0.0006143366335891187, 0.012825889512896538, -0.018064431846141815, -0.014341935515403748, 0.004092611838132143, 0.03564487025141716, -0.004163787700235844, 0.003039209172129631, 0.021580519154667854, -0.0036442040000110865, -0.0004030332784168422, 0.01340953167527914, 0.0057901558466255665, -0.01842031255364418, 0.008192340843379498, -0.008562455885112286, 0.022078750655055046, -0.01335259061306715, 0.0006690530572086573, -0.0012268938589841127, -5.6078792113112286e-05, 0.01175113394856453, -0.015018105506896973, -0.008662101812660694, -0.0021726430859416723, -0.0034306764136999846, -0.012171071954071522, 0.0002260945620946586, 0.0009679916547611356, 0.011096316389739513, -0.001441311091184616, 0.006306181196123362, 2.1589083189610392e-05, -0.0033755151089280844, -0.025480957701802254, 0.005160249769687653, -0.02676212228834629, -0.020100062713027, -0.0097510926425457, 0.010526909492909908, 0.003147752257063985, -0.0021228198893368244, 0.01500387117266655, -0.005679833237081766, 0.007103350479155779, 0.0010845421347767115, -0.005053485743701458, -0.0031441934406757355, 0.012854360044002533, 0.022947097197175026, -0.02210722118616104, 0.028199873864650726, -0.00785069726407528, -0.0091532152146101, 0.013452237471938133, -0.008733278140425682, 0.013808116316795349, -0.018505722284317017, -0.009758209809660912, -0.025808366015553474, -0.017110675573349, 0.009637211449444294, 0.005893360823392868, -0.012790301814675331, 0.024413319304585457, -0.0006939645973034203, -0.0027438292745500803, 0.005035691894590855, -0.02437061443924904, -0.0041032880544662476, 0.00030027315369807184, 0.000814963539596647, 0.00098133715800941, -0.003503631567582488, -0.0004924479871988297, 0.008441456593573093, 0.04461302608251572, 0.012690654955804348, 0.0018897190457209945, -0.02394355833530426, -0.012847241945564747, -0.03174443170428276, 0.0002933779906015843, 0.004327492322772741, 0.0019448803504928946, 0.011110551655292511, 0.003327471436932683, -0.01765161193907261, -0.007679875008761883, 0.018078668043017387, -0.01776549406349659, 0.0015320603270083666, 0.005331071559339762, -0.00503925047814846, -0.01251271553337574, 0.023260269314050674, 0.020726408809423447, 0.010320499539375305, -0.000706865219399333, -0.011843662708997726, -0.0038079083897173405, 0.018548429012298584, 0.010171029716730118, 0.0018256606999784708, 0.007900520227849483, 0.002964474493637681, 0.0074449945241212845, -0.0014279655879363418, -0.03066255897283554, 0.008085577748715878, 0.01172978151589632, 0.01933136209845543, 0.0053381891921162605, 0.003320353804156184, -0.0033755151089280844, -0.015430926345288754, -0.0007313319365493953, -0.0040819356217980385, 0.0019786888733506203, 0.015317044220864773, -0.014818813651800156, -0.0017776170279830694, 0.021950634196400642, -0.01470493245869875, -0.008768865838646889, 0.017295733094215393, -0.0018612486310303211, -0.01205007266253233, -0.02876928076148033, -0.014804578386247158, -0.020399000495672226, 0.004822164308279753, 0.017324203625321388, -0.0059716543182730675, -0.01917477510869503, 0.01629927195608616, -0.020939936861395836, -0.018505722284317017, 0.001739360042847693, 0.009032215923070908, -0.012228012084960938, 0.023374151438474655, 0.004857752472162247, -0.004341727122664452, -0.0005040140240453184, -0.005815067328512669, 0.0005845317500643432, 0.008968157693743706, 0.027915170416235924, -0.012462892569601536, -0.01938830316066742, -0.01326717995107174, -0.02855575457215309, -0.004629989620298147, -0.00909627415239811, -0.015231633558869362, -0.011010904796421528, 0.00268866796977818, 0.0027918729465454817, -0.004541019909083843, 0.0003309677413199097, -0.01105361059308052, 0.009665681049227715, 0.00909627415239811, 0.007558876182883978, -0.012519833631813526, 0.0023274505510926247, -0.008405868895351887, 0.009566035121679306, 0.027331529185175896, 0.005263454746454954, -0.009879209101200104, -0.0081781055778265, 0.0019519978668540716, 0.015530572272837162, -0.014448698610067368, 0.008626514114439487, 0.017907844856381416, -0.007170967757701874, -0.015587512403726578, -0.004288345575332642, -0.004156670067459345, -0.008576691150665283, -0.02182251773774624, -0.006719001103192568, 0.014690697193145752, -0.0009448595228604972, -0.0025961394421756268, 0.0034306764136999846, 0.008462809026241302, -0.011822310276329517, 0.013594589196145535, 0.03316795080900192, 0.03396511822938919, -0.004960957448929548, -0.010562497191131115, -0.0062456815503537655, 0.010925494134426117, 0.0315166711807251, 0.010327616706490517, -0.003985847812145948, 0.015146222896873951, 0.001063189352862537, 0.011644369922578335, -0.005946742836385965, 0.02064099907875061, -0.011658605188131332, -0.010526909492909908, -0.014747637324035168, 0.02697565034031868, 0.008875629864633083, 0.0017482569674029946, -0.00364242447540164, -0.01023508794605732, 0.007736815605312586, 0.004274110309779644, -0.020897231996059418, 0.004551696125417948, 0.013153298757970333, -0.007601581513881683, 0.02112499438226223, 0.00869057234376669, -0.026676710695028305, 0.014719167724251747, 0.025594837963581085, -0.009651446714997292, 0.013872174546122551, -0.009964619763195515, -0.003928907215595245, 0.011423724703490734, -0.02264815755188465, 0.018947012722492218, -0.018833132460713387, 0.012548303231596947, -0.036100395023822784, 0.0033043392468243837, 0.0033132361713796854, 0.007089115213602781, 0.012057189829647541, -0.006825764663517475, 0.025310134515166283, -0.009224391542375088, -0.02344532683491707, 0.010035796090960503, -0.018505722284317017, 0.009950384497642517, -0.0017509261379018426, -0.015402455814182758, 0.0017580436542630196, -0.0022206867579370737, 0.0017527055460959673, 0.0011699531460180879, -0.0014866857090964913, -0.001341664930805564, -0.005441394168883562, -0.006057065445929766, 0.004402226768434048, 0.02079758606851101, 0.031061144545674324, 0.005836420226842165, -0.0051353382878005505, 0.006612237077206373, -0.019786888733506203, 0.011530488729476929, -0.006548178847879171, 0.012605244293808937, 0.005583745893090963, 0.021310051903128624, -0.006398709490895271, 0.0004813267441932112, -0.002437773160636425, 0.010420145466923714, -0.020925702527165413, -0.007277731318026781, -0.05486235022544861, 0.001823881291784346, 0.013217356987297535, 0.009808032773435116, 0.008356045931577682, 0.0069040581583976746], "83762a91-2b61-4ed1-a937-20c8d4fe6cae": [-0.00583849148824811, -0.00031856849091127515, 0.0013181287795305252, 0.04962055757641792, -0.04342460632324219, -0.018203912302851677, 0.005742507055401802, 0.03164171054959297, -0.01879967749118805, 0.06116514652967453, 0.0066824909299612045, 0.005752436351031065, 0.012352182529866695, -0.002429394982755184, 0.00414056284353137, 0.011081218719482422, -0.0035017707850784063, 0.020692884922027588, 0.0032105082646012306, 0.005921236239373684, 0.04612540453672409, -0.02586941607296467, -0.01928952895104885, -0.0012974424753338099, 0.01307371910661459, -0.012855272740125656, -0.020507534965872765, 0.009750678203999996, -0.042312514036893845, -0.00726170651614666, -0.006536859553307295, 0.009201250970363617, -0.011518112383782864, 0.03352167829871178, 0.007923667319118977, -0.02524717152118683, -0.005970883648842573, -0.028543734923005104, -0.06079445034265518, 0.012722880579531193, -0.008380419574677944, 0.04315982386469841, 0.00867830216884613, -0.018985025584697723, -0.05287740379571915, -0.004355699755251408, -0.012504433281719685, -0.0009151603444479406, 0.00556377787142992, 0.01755519211292267, 0.011445296928286552, 0.001143536763265729, 0.0028050574474036694, 0.005921236239373684, 0.03312450274825096, -0.022030044347047806, 0.005044138990342617, 0.01770082302391529, -0.005570397246629, -0.04758171737194061, -0.015754658728837967, -0.001239520963281393, 0.015105937607586384, -0.024135079234838486, 0.035030949860811234, 0.008095776662230492, -0.029205696657299995, 0.02342016063630581, -0.003217127872630954, 0.014841154217720032, -0.023274529725313187, 0.016601968556642532, -0.046522583812475204, 0.005394977983087301, 0.04223307967185974, -0.005500891711562872, 0.012027821503579617, 0.023022985085844994, 0.04172998666763306, -0.024783799424767494, 0.02528689056634903, -0.03863201290369034, 0.037758223712444305, 0.01742279902100563, 0.03473968431353569, 0.02238750271499157, -0.006470663473010063, -0.034236595034599304, -0.01866728439927101, -0.031244534999132156, 0.019686704501509666, 0.023446639999747276, -0.008360560983419418, 0.026226874440908432, 0.008883509784936905, -0.010379539802670479, -0.0021232382860034704, -0.021553432568907738, 0.021513715386390686, -0.00941969733685255, 0.007605925668030977, 0.011921907775104046, 0.017925890162587166, 0.00363085325807333, 0.005057378206402063, -0.015609027817845345, 0.012067539617419243, 0.006490522529929876, 0.018534893169999123, -0.005960953887552023, 0.0002625086926855147, -0.04604597017168999, 0.02259933017194271, 0.018640806898474693, -0.015476635657250881, -0.014616087079048157, -0.03087383694946766, 0.00857238844037056, -0.013782016932964325, -0.022586090490221977, 0.01452341303229332, -0.07456322759389877, 0.003941974602639675, -0.012888370081782341, -0.012166833505034447, 0.018879111856222153, -0.0031972690485417843, 0.022652287036180496, 0.03142988309264183, 0.014867632649838924, -0.008559148758649826, -0.0036838101223111153, 0.014470456168055534, -0.0036109944339841604, 0.028199516236782074, -0.001287513063289225, -0.01360990758985281, 0.09489865601062775, -0.009254207834601402, -0.0062323580496013165, -0.03259493410587311, 0.0018750029848888516, -0.056928601115942, 0.037069786339998245, 0.01112755574285984, -0.014073279686272144, -0.026571093127131462, 0.0472639761865139, -0.042312514036893845, 0.013371601700782776, -0.03563995286822319, -0.004855480045080185, -0.04067085310816765, 0.01139895897358656, 0.06105923280119896, -0.0001742817839840427, -0.004289503674954176, 0.01866728439927101, -0.0021712302695959806, 0.03495151177048683, 0.006804953794926405, -0.04670793190598488, 0.0035547276493161917, 0.0499647781252861, 0.05862322077155113, -0.00331145734526217, 0.039002712815999985, 0.0031625160481780767, 0.011994724161922932, 0.020057402551174164, -0.01526480820029974, -0.01105474028736353, 0.05353936180472374, 0.0055372994393110275, 0.010180952027440071, -0.004534429404884577, 0.02477056160569191, 0.018707003444433212, -0.010339822620153427, -0.013702581636607647, -0.015622267499566078, -0.017912650480866432, 0.0359576940536499, -0.012636825442314148, -0.0033147670328617096, 0.03691091760993004, -0.01701238378882408, 0.035375166684389114, -0.011729939840734005, -0.0035381787456572056, -0.021023863926529884, -0.0018534893169999123, 0.009611666202545166, -0.003839370794594288, 0.010856151580810547, -0.013821735046803951, -0.011862332001328468, 0.0008001447422429919, -0.0023714734707027674, 0.013086958788335323, -0.024293949827551842, -0.030609052628278732, -0.017859693616628647, 0.040935635566711426, -0.039797063916921616, 0.012583868578076363, 0.01804504171013832, -0.03601064905524254, 0.008334082551300526, 0.0062356675043702126, 0.07631080597639084, -0.013278926722705364, 0.03336280956864357, 0.014258628711104393, 0.005997362080961466, 0.014483694918453693, -0.018587850034236908, 0.021884413436055183, 0.0068512908183038235, -0.04143872484564781, 0.010597987100481987, -0.008069298230111599, -0.02849077805876732, -0.028782041743397713, -0.046628497540950775, -0.004494711756706238, -0.028067123144865036, -0.011081218719482422, 0.014311585575342178, -0.023340726271271706, 0.03839370608329773, -0.0037135982420295477, 0.036725565791130066, -0.003809582442045212, -0.00018586608348414302, 0.022281588986516, 0.0560283325612545, -0.02004416286945343, -0.018097998574376106, 0.0060238405130803585, 0.008228168822824955, 0.013537091203033924, -0.03005300462245941, -0.024439580738544464, -0.03619599714875221, 0.01959403045475483, 0.01948811672627926, 0.059735313057899475, 0.004819072317332029, 0.028384864330291748, -0.02404240518808365, 0.0214607585221529, 0.009492512792348862, 0.0035812060814350843, -0.01360990758985281, 0.01942192018032074, 0.027590513229370117, -0.0258429367095232, -0.018958548083901405, -0.024863235652446747, -0.013159774243831635, 0.017753779888153076, -0.027881775051355362, -0.0017144776647910476, 0.019567551091313362, -0.04646962508559227, 0.05502215400338173, 0.02618715539574623, -0.009360120631754398, 0.042524341493844986, 0.018548132851719856, -0.02870260551571846, -0.027828818187117577, 0.06640787422657013, -0.020653165876865387, 0.002646187087520957, -0.003799653146415949, 0.008042819797992706, 0.013186252675950527, 0.002217567525804043, -0.07127990573644638, -0.026796160265803337, 0.007691980805248022, -0.0029076614882797003, 0.0063382713124156, 0.019607268273830414, -0.026107721030712128, -0.01572818122804165, -0.02635926567018032, 0.0253530852496624, 0.010809814557433128, -0.0035481080412864685, -0.0019610580056905746, 0.029761742800474167, -0.004163731355220079, 0.018336305394768715, -0.024373384192585945, 0.025485478341579437, -0.010525171644985676, 0.013887930661439896, -0.004349080380052328, 0.004564217291772366, -0.03156227618455887, 0.002796783111989498, 0.01047221478074789, -0.03447490185499191, 0.01738308183848858, 0.031376928091049194, -0.0155428322032094, 0.0498059056699276, 0.029894134029746056, -0.02156667225062847, -0.025551674887537956, -0.005689550191164017, -0.012014582753181458, 0.02655785344541073, -0.0253530852496624, -0.013874691911041737, -0.010525171644985676, 0.0007806996582075953, -0.033415764570236206, 0.008274505846202374, -0.06688448786735535, 0.02049429714679718, 0.05036195367574692, -0.005643213167786598, 0.03323041647672653, 0.02459845133125782, -0.02473084256052971, -0.016443097963929176, -0.04257729649543762, -0.014616087079048157, 0.015026502311229706, 0.00865844264626503, -0.013993844389915466, -0.027246292680501938, -0.0385790579020977, -0.018190674483776093, 0.0005812840536236763, -0.013384840451180935, -0.011074598878622055, -0.023605510592460632, 0.025313368067145348, -0.03293915465474129, -0.01946163736283779, -0.014933828264474869, 0.015714941546320915, 0.036857958883047104, -0.005633283406496048, 0.0038294412661343813, 0.0008630309603177011, 0.0258429367095232, 0.04795241728425026, -0.003521629609167576, -0.002040493069216609, -0.024797039106488228, -0.05412188917398453, 0.023896772414445877, -0.007063118275254965, 0.013093577697873116, -0.008367180824279785, -0.030264832079410553, -0.0074073378928005695, -0.010220670141279697, -0.03233014792203903, 0.015794377774000168, 0.034554336220026016, -0.03839370608329773, -0.026134198531508446, -0.011571069248020649, -0.013146534562110901, 0.002953998511657119, -0.028067123144865036, -0.02653137594461441, -0.02487647533416748, -0.03336280956864357, 0.02466464787721634, 0.01371582131832838, 6.929898518137634e-05, 0.011015022173523903, 0.01095544546842575, -0.006265455856919289, -0.022413982078433037, 0.011293045245110989, 0.02152695506811142, 0.005517440382391214, 0.01772730052471161, -0.024135079234838486, -0.020931189879775047, -0.005888138432055712, -0.025776740163564682, -0.007705220021307468, -0.01307371910661459, 0.015635507181286812, 0.009909547865390778, -0.01594000868499279, -0.001823701080866158, -0.03778470307588577, -0.007413957267999649, -0.00890336837619543, -0.024995626881718636, -0.012484574690461159, 0.01321273110806942, 0.008241407573223114, -0.014285107143223286, -0.03646078333258629, 0.017052100971341133, 0.010756857693195343, -0.011551210656762123, 0.009624904952943325, 0.010842912830412388, -0.006407777313143015, 0.00026685281773097813, 0.011908669024705887, 0.0350574254989624, 0.028093602508306503, -0.03439546748995781, 0.04225955531001091, -0.04684032127261162, 0.027696426957845688, 0.03238310664892197, 0.012338942848145962, 0.015781138092279434, 0.04247138276696205, -0.02541928179562092, -0.006818193010985851, 0.012166833505034447, 0.0060238405130803585, 0.021712303161621094, -0.003776484401896596, 0.031959451735019684, 0.0411209836602211, -0.008612105622887611, 0.015913529321551323, -0.01793912798166275, -0.013133295811712742, 0.0013156464556232095, 0.008334082551300526, -0.00660636555403471, 0.003561347257345915, -0.0018054972169920802, -0.0012618621112778783, 0.011306284926831722, -0.01980585791170597, -0.04705214872956276, -0.017515474930405617, -0.024399863556027412, -0.0043921079486608505, 0.005970883648842573, -0.009002662263810635, -0.016469577327370644, 0.006672561634331942, -0.06804953515529633, -0.043927695602178574, 0.007744937669485807, -0.010346442461013794, 0.008234788663685322, 0.003352829720824957, 0.008651823736727238, -0.05729929730296135, 0.0029308299999684095, -0.0027885085437446833, 0.032647889107465744, 0.0030830809846520424, 0.014099758118391037, -0.02245369926095009, -0.016032682731747627, -0.013265687972307205, 0.0024840065743774176, 0.007109455298632383, 0.01406004000455141, -0.020520774647593498, 0.0209709070622921, 0.05819956585764885, 0.00785085093230009, -0.011094457469880581, -0.02387029491364956, -0.009141674265265465, -0.02208300121128559, -0.00828112568706274, 0.0019627127330750227, -0.017568431794643402, -0.016257749870419502, 0.003773174714297056, -0.001879967749118805, 0.006662632338702679, -0.03770526871085167, -0.0034455042332410812, -0.0014943757560104132, 0.014165953733026981, 0.018534893169999123, -0.0009226074325852096, -0.006904247682541609, 0.02721981517970562, 0.022506656125187874, -0.03031778894364834, -0.00981687381863594, -0.014152714982628822, -0.011491633951663971, -0.03860553354024887, 0.018336305394768715, -0.012385280802845955, 0.050176605582237244, 0.024744082242250443, -0.028676128014922142, 0.026849117130041122, 0.018640806898474693, 0.03383941948413849, 0.0051004053093492985, -0.01462932676076889, -0.008923226967453957, 0.030105961486697197, -0.03881736099720001, 0.02880851924419403, 0.012789076194167137, 0.03029131144285202, 0.010511931963264942, -8.869235898600891e-05, 0.03622247651219368, 0.01590028963983059, -0.0004613037162926048, -0.026173917576670647, -0.018256869167089462, -0.025922372937202454, -0.028040645644068718, 0.0028530496638268232, -0.0012659993954002857, -0.020070642232894897, 0.012186692096292973, -0.05094447731971741, -0.014483694918453693, 0.023234812542796135, -0.015516353771090508, -0.0008353113662451506, 0.018018564209342003, -0.004885268397629261, 0.007784655317664146, -0.0017657795688137412, -0.00490843690931797, -0.022268351167440414, -0.01587381213903427, 0.05123573914170265, 0.006215808913111687, 0.0035712767858058214, -0.01124670822173357, 0.020441340282559395, 0.02187117375433445, -0.021063582971692085, -0.028040645644068718, 0.03421011567115784, -0.02414831891655922, 0.029417524114251137, -0.02139456197619438, -0.010220670141279697, -0.007347761187702417, -0.008598866872489452, 0.0103001045063138, -0.00802296120673418, -0.028993869200348854, -0.03198593109846115, 0.0033693788573145866, 0.007877329364418983, -0.009307164698839188, 0.025882653892040253, -0.009492512792348862, 0.0096050463616848, -0.028993869200348854, 0.020308947190642357, 0.018018564209342003, 0.024002686142921448, 0.03879088535904884, -0.0010061799548566341, 0.033680547028779984, 0.028517257422208786, 0.017740540206432343, 0.026398982852697372, 0.006047009024769068, -0.014179193414747715, -0.06518986821174622, 0.003521629609167576, 0.02455873414874077, 0.0008721329504624009, 0.00959180761128664, -0.014496934600174427, 0.037652309983968735, 0.0018766579451039433, -0.005795463919639587, -0.0188393946737051, -0.023446639999747276, 0.02176526002585888, 0.013199491426348686, 0.01714477688074112, -0.01738308183848858, 0.005633283406496048, -0.010121375322341919, 0.01669464260339737, 0.025922372937202454, -0.00824802741408348, 0.011346002109348774, 0.01555607095360756, 0.018230391666293144, 0.00785085093230009, 0.024519015103578568, -0.019991206005215645, -0.011147414334118366, 0.022758200764656067, -0.010161093436181545, 0.025088302791118622, -0.016747599467635155, 0.0015473326202481985, 0.03733456879854202, -0.007526490371674299, 0.0232215728610754, -0.01928952895104885, -0.011650504544377327, -0.00031070769182406366, 0.02139456197619438, 0.03209184482693672, 0.013067099265754223, 0.011154034174978733, 0.035269252955913544, 0.001975951949134469, 0.04715806245803833, -0.012716260738670826, 0.0022374263498932123, 0.03722865879535675, -0.02756403386592865, 0.003374343505129218, -0.004666821099817753, -0.01485439296811819, -0.02470436505973339, -0.017846453934907913, 0.010981923900544643, 0.005613424815237522, 0.0037069786339998245, -0.027166858315467834, -0.0008274505962617695, 0.017541952431201935, 0.004219998139888048, -0.024240992963314056, 0.019090939313173294, 0.02270524390041828, -0.009379980154335499, 0.04069732874631882, -0.0035315591376274824, 0.02691531367599964, -0.019752901047468185, -0.02152695506811142, 0.024135079234838486, 0.03328337147831917, -0.0196602251380682, 0.008744497783482075, -0.00532878190279007, 0.006030459888279438, -0.009664623066782951, -0.02835838682949543, -0.016747599467635155, -0.0009863211307674646, 0.03847314417362213, 0.005570397246629, 0.002328445902094245, -0.021778499707579613, 0.02245369926095009, -0.012914848513901234, 0.01787293329834938, 0.00044351350516080856, 0.003468672977760434, 0.01503974199295044, 0.006053628399968147, 0.015992965549230576, 0.036857958883047104, -0.03897623345255852, 0.008651823736727238, 0.01525156944990158, -0.018468696624040604, -0.010750237852334976, 0.012583868578076363, -0.017634626477956772, -0.004868719261139631, -0.03278028219938278, -0.022069761529564857, -0.05364527553319931, -0.03304506838321686, -0.0014099758118391037, -0.03916158154606819, -0.011081218719482422, -0.036407824605703354, -0.00032973906490951777, -0.035004470497369766, 0.011769657023251057, -0.016032682731747627, 0.016059160232543945, 0.014298345893621445, 0.0384201854467392, 0.005414836574345827, -0.01219331193715334, 0.010703900828957558, -0.01869376376271248, 0.0289144329726696, 0.0012329013552516699, -0.043662913143634796, -0.021103300154209137, -0.010478834621608257, -0.04774058982729912, 0.01566198468208313, 0.0018915520049631596, -0.012166833505034447, -0.009876450523734093, -0.0023714734707027674, 0.0011402269592508674, -0.0009135054424405098, -0.015754658728837967, -0.0206002090126276, 0.013133295811712742, 0.026372505351901054, -0.0017558501567691565, -0.003000335767865181, 0.010240528732538223, -0.034554336220026016, 0.027378685772418976, 0.00227217935025692, 0.023618750274181366, -0.012504433281719685, -0.011670363135635853, -0.010253767482936382, 0.012511053122580051, -0.010379539802670479, -0.03619599714875221, 0.02210948057472706, 0.006877769250422716, 0.036275435239076614, -0.011332763358950615, 0.012180072255432606, 0.003119488712400198, 0.023989448323845863, -0.010637705214321613, 0.0026329478714615107, -0.00035766552900895476, 0.018124477937817574, -0.011346002109348774, 0.025988567620515823, 0.011114316061139107, 0.017502235248684883, -0.035004470497369766, 0.001967677613720298, -0.005977503024041653, 0.033998288214206696, 0.016429858282208443, -0.025128019973635674, -0.005351950414478779, 0.0525067038834095, -0.035586994141340256, 0.029523437842726707, 0.018680524080991745, 0.013345123268663883, 0.021129777655005455, 0.02618715539574623, -0.011312904767692089, 0.020692884922027588, 0.04792593792080879, -0.020097119733691216, 0.006027149967849255, -0.012391899712383747, 0.007427196484059095, 0.03442194312810898, 0.0196999441832304, 0.018587850034236908, 0.006778475362807512, 0.016893230378627777, 0.036963872611522675, 0.04895859584212303, 0.02128864824771881, 0.007592686451971531, 0.02083851583302021, 0.00763240410014987, -0.04056493937969208, 0.02000444568693638, -4.217412060825154e-05, 0.007301424164324999, -0.007149172946810722, 0.010121375322341919, -0.03974410519003868, 0.03701683133840561, 0.014443977735936642, -7.457398169208318e-05, -0.025445761159062386, 0.03352167829871178, 3.682155147544108e-05, -0.00867830216884613, 0.010121375322341919, 0.014165953733026981, -0.01834954507648945, -0.0016499364282935858, 0.014841154217720032, 0.01372906006872654, -0.003177410224452615, 0.0028977319598197937, 0.011392340064048767, 0.0047727348282933235, -0.01931600645184517, 0.0232215728610754, -0.020719362422823906, 0.04797889664769173, 0.03246254101395607, 0.014880871400237083, -0.012689782306551933, 0.014549891464412212, -0.03590473532676697, -0.027378685772418976, 0.019752901047468185, 0.024373384192585945, 0.01105474028736353, -0.02356579340994358, 0.02970878593623638, -0.02373790182173252, -0.01649605482816696, 0.022824397310614586, 0.008347321301698685, 0.017303647473454475, -0.01914389617741108, 0.006060248240828514, -0.020878233015537262, 0.04154463857412338, -0.002151371445506811, 0.023658467456698418, -0.013993844389915466, 0.00762578472495079, 0.01952783390879631, -0.016429858282208443, 0.009770536795258522, -0.015211851336061954, -0.01515889447182417, -0.03301858901977539, 0.015860572457313538, -0.0098499720916152, 0.021328367292881012, 0.0058649699203670025, 0.007361000403761864, -0.02973526529967785, 0.012716260738670826, -0.017992084845900536, -0.07361000776290894, 0.00503751914948225, -0.016469577327370644, -0.007705220021307468, 0.026094481348991394, 0.011981484480202198, -0.023777620866894722, 0.02401592582464218, 0.05375118926167488, 0.02790825441479683, 0.00726170651614666, 0.019501356407999992, 0.014205671846866608, -0.025035345926880836, 0.016985906288027763, -0.006513691041618586, 0.024571971967816353, -0.02949695847928524, 0.03778470307588577, 0.023962968960404396, -0.021540192887187004, -0.03299210965633392, 0.005917926784604788, -0.026240112259984016, -0.0012610347475856543, 0.031615231186151505, 0.017753779888153076, 0.013305405154824257, 0.031482841819524765, 0.014867632649838924, -0.019435159862041473, 0.021434281021356583, 0.0063382713124156, -0.014549891464412212, -0.030688486993312836, 0.0026743202470242977, 0.004299433436244726, -0.030953271314501762, 0.008605485782027245, -0.01866728439927101, 0.006027149967849255, 0.010597987100481987, -0.005636593326926231, -0.0162180308252573, 0.0074073378928005695, 0.0029639280401170254, -0.015622267499566078, 0.018892351537942886, 0.006176091264933348, -0.005242726765573025, -0.010498693212866783, 0.0018518344732001424, 0.00020282882906030864, -0.031827058643102646, 0.02777586132287979, -0.003324696561321616, -0.011729939840734005, 0.01065756380558014, -0.004385488107800484, 0.008056058548390865, -0.0157678984105587, -0.05420132353901863, -0.013550330884754658, 0.038658492267131805, -0.039691150188446045, 0.005292374175041914, -0.019064461812376976, 0.006675871554762125, -0.01755519211292267, 0.0019461638294160366, 0.02391001209616661, -0.0016846894286572933, 0.002623018343001604, 0.05544580891728401, -0.00414718221873045, 0.00948589388281107, -0.024240992963314056, -0.022572852671146393, -0.013636386021971703, -0.011842472478747368, -0.01270964089781046, 0.04535753279924393, -0.025895893573760986, -0.029867656528949738, 0.0012353836791589856, -0.016999144107103348, -0.026716724038124084, -0.028411343693733215, 0.03007948398590088, -0.019130658358335495, -0.017290407791733742, -0.010531791485846043, -0.013755538500845432, -0.015119177289307117, -0.021950609982013702, -0.035692907869815826, -0.022347785532474518, -0.03209184482693672, 0.008413517847657204, -0.009042380377650261, -0.029417524114251137, 0.018309826031327248, -0.0003485635679680854, -0.032621413469314575, 0.0012751013273373246, 0.011670363135635853, 0.03998241201043129, -0.011359241791069508, 0.0001904170640045777, 0.00763240410014987, 0.04673440754413605, -0.013556950725615025, -0.004405347164720297, 0.013742299750447273, 0.010776716284453869, -0.00879745464771986, -0.0008870270103216171, -0.010677422396838665, -0.005759056191891432, 0.002310242038220167, -0.029311610385775566, -0.0009168152464553714, 0.007142553571611643, -0.004306052811443806, 0.02880851924419403, -0.01690647006034851, 0.009856591001152992, -0.028623171150684357, -0.02105034328997135, -0.0061132051050662994, 0.0007380859460681677, -0.023446639999747276, 0.017475755885243416, 0.019673464819788933, -0.006043699104338884, -0.031376928091049194, -0.005663071759045124, -0.0310856644064188, -0.03074144385755062, 0.022956788539886475, -0.025141259655356407, -0.025141259655356407, -0.031165098771452904, 0.001031003426760435, 0.015714941546320915, -0.0020917952060699463, -0.004332531243562698, -0.025167737156152725, 0.01306048035621643, 0.023645227774977684, -0.006629534065723419, 0.02345987968146801, 0.014695522375404835, 0.007102835923433304, -0.0116107864305377, -0.0011079562827944756, -0.030211875215172768, -0.006282004993408918, -0.024373384192585945, -0.015529592521488667, 0.0029887515120208263, -0.03219775855541229, 0.03873792663216591, 0.027881775051355362, 0.01594000868499279, 0.004167041275650263, -0.008340702392160892, 0.02042810060083866, 0.03270084783434868, -0.015953246504068375, -0.031588755548000336, -0.003845990402624011, 0.0037897236179560423, -0.026968270540237427, 0.012689782306551933, 0.03778470307588577, 0.0055372994393110275, -0.011941767297685146, 0.0155428322032094, -0.004699919372797012, 0.00890336837619543, 0.02608124352991581, -0.018892351537942886, -0.01787293329834938, 0.011921907775104046, 0.01281555462628603, -0.011564449407160282, 0.02790825441479683, -0.027616990730166435, -0.01797884702682495, -0.027272772043943405, -0.0030582572799175978, 0.01680055633187294, 0.005633283406496048, -0.021301887929439545, -0.009320403449237347, -0.07297452539205551, -0.021950609982013702, -0.026796160265803337, -0.0126765426248312, 0.0015580895124003291, -0.013570189476013184, 0.01383497379720211, 0.014827914535999298, -0.015225091017782688, 0.003932045307010412, -0.007877329364418983, -0.011690221726894379, 0.034792643040418625, 0.02114301733672619, 0.007665502373129129, -0.019157135859131813, -0.023618750274181366, -0.012206550687551498, 0.007076357491314411, -0.0032254024408757687, -0.006394538097083569, 0.005097095854580402, 0.016482815146446228, -0.007016780786216259, -0.03439546748995781, 0.02425423078238964, 0.018720241263508797, -0.0006818192778155208, -0.029020346701145172, -0.005265895742923021, 0.02518097683787346, 0.009221109561622143, -0.0006425153696909547, 0.006543479394167662, -0.004044578410685062, 0.03352167829871178, 0.0066924202255904675, 0.002694179071113467, 0.033548157662153244, 0.010372920893132687, 0.008996042422950268, 0.02418803609907627, 0.0008630309603177011, -0.0219108909368515, 0.001431489479728043, 0.00507061742246151, -0.01435130275785923, -0.031827058643102646, 0.01928952895104885, 0.01903798244893551, -0.012716260738670826, -0.0060767969116568565, -0.015013263560831547, -0.013550330884754658, 0.013755538500845432, -0.012729499489068985, 0.009015901945531368, 0.00582194235175848, 0.006702349986881018, -0.008334082551300526, 0.0037963432259857655, -0.0006892663659527898, -0.012233029119670391, -0.00021555088460445404, -0.011491633951663971, 0.01628422737121582, 0.0027785790152847767, 0.006334961857646704, 0.020507534965872765, 0.012146974913775921, 0.010353061370551586, -0.011855712160468102, 0.009823493659496307, 0.016059160232543945, 0.016787318512797356, -0.005514130927622318, 0.013543711043894291, 0.027511077001690865, -0.0019395442213863134, -0.006070177536457777, -0.024068882688879967, -0.0126765426248312, 0.002664390951395035, 0.004597315564751625, -0.012616966851055622, -0.010425877757370472, -0.011829233728349209, -0.01701238378882408, 0.00518315052613616, 0.009512372314929962, 0.0030499829445034266, 0.002335065510123968, 0.036513738334178925, 0.03283324092626572, -0.022811157628893852, 0.04819072410464287, -0.028411343693733215, -0.015979725867509842, -0.008380419574677944, 0.004938225261867046, 0.015741420909762383, -0.045172180980443954, 0.0025237242225557566, 0.005249346606433392, -0.01811123825609684, -0.008075918070971966, -0.007175651378929615, -0.0002786439727060497, -0.016641685739159584, -0.00855252891778946, -0.017515474930405617, 0.00620918907225132, -0.010280245915055275, -0.002654461422935128, 0.013364981859922409, 0.01179613545536995, 0.002215912565588951, 0.0014132856158539653, -0.008387039415538311, 0.006619604770094156, -0.003998241387307644, 0.006910867523401976, -0.004031339194625616, -0.020706122741103172, -0.005322162061929703, -0.008737877942621708, -0.013219350948929787, 0.0003740076790563762, -0.010022081434726715, 0.002247355878353119, -0.004464923404157162, 0.0031079044565558434, -0.006010601297020912, -0.0007558761280961335, 0.00019610578601714224, 0.001969332341104746, 0.004699919372797012, -0.03219775855541229, 0.03540164604783058, -0.007268325891345739, 0.007466914132237434, 0.0036341629456728697, -0.005596875678747892, -0.014404259622097015, -0.003528249217197299, 0.0085392901673913, -0.026451939716935158, -0.015132416039705276, 0.021275410428643227, -0.010531791485846043, -0.02004416286945343, 0.038552578538656235, 0.03664613142609596, 0.04702567309141159, -0.00922772940248251, -0.029576394706964493, -0.0004164145211689174, -0.0008547564502805471, -0.0010177642107009888, 0.003088045632466674, -0.02401592582464218, 0.01869376376271248, 0.0054677934385836124, 0.006421016529202461, 0.008188450708985329, -0.005818632431328297, -0.015992965549230576, -0.011438677087426186, -0.007936906069517136, 0.0013826698996126652, 0.003961833659559488, -0.002710728207603097, 0.00016497296746820211, -0.0040743667632341385, 0.011822613887488842, -0.014205671846866608, 0.005332091823220253, 0.009221109561622143, 0.024121839553117752, -0.0056928601115942, -0.005325471982359886, -0.005206319037824869, -0.019792618229985237, 0.01897178776562214, -0.0032336770091205835, 0.017965607345104218, 0.005315542686730623, 0.014933828264474869, -0.003647402161732316, 0.008784215897321701, 0.020851755514740944, 0.014655805192887783, -0.011544590815901756, 0.021778499707579613, -0.004395417403429747, -0.003392547369003296, 0.028993869200348854, 0.020017685368657112, -0.006983682978898287, -0.022413982078433037, -0.0023416851181536913, -0.01153797097504139, 0.02290383167564869, -0.013768778182566166, -0.006838051602244377, 0.004355699755251408, -0.0015150620602071285, 0.03738752752542496, 0.04360995441675186, 0.0031889944802969694, -0.011253328062593937, -0.005308922845870256, 0.015317765064537525, -0.008711399510502815, -0.004627103917300701, -0.010690662078559399, -0.004084296058863401, -0.023195095360279083, 0.03121805563569069, -0.02094442956149578, 0.015397200360894203, -0.02373790182173252, 0.012623585760593414, -0.00824802741408348, 0.0033462101127952337, 0.009340262040495872, 0.01639014109969139, -0.06503099948167801, -0.025511955842375755, -0.02086499333381653, 0.0015647091204300523, -0.00902252085506916, -0.004167041275650263, -0.008923226967453957, -0.012199931778013706, -0.00033615180291235447, 0.0350574254989624, 0.013146534562110901, 0.013285546563565731, -0.0064607341773808, -0.03225071355700493, -0.01193514745682478, -0.013417938724160194, 0.0022192224860191345, 0.04575470834970474, 0.017118297517299652, -0.02342016063630581, 0.008976183831691742, 0.004776044748723507, 0.020150076597929, -0.003063222160562873, 0.017197733744978905, -0.008704780600965023, 0.003733457066118717, -0.021434281021356583, -0.015688464045524597, 0.030476659536361694, 0.007824372500181198, -0.0009416387765668333, 0.00507061742246151, -0.026028286665678024, -0.009479274041950703, -0.002045457949861884, -0.007784655317664146, 0.022546373307704926, -0.006205879617482424, 0.008890128694474697, 0.03929397463798523, 0.028729084879159927, 0.0012858582194894552, 0.0015249914722517133, 0.005894757807254791, -0.014338064007461071, -0.0054181464947760105, 0.008532670326530933, -0.006169471424072981, 0.0025650968309491873, -0.011994724161922932, 0.00893646664917469, 0.011425437405705452, -0.04599301517009735, 0.0025319987908005714, -0.008466474711894989, 0.0011302975472062826, 0.011518112383782864, 0.007758176885545254, -0.008420136757194996, -0.018031803891062737, 0.03201240673661232, -0.010637705214321613, 0.0013868071837350726, -0.014841154217720032, 0.005593566223978996, -0.01062446553260088, 0.020997386425733566, 0.0004455821472220123, 0.0038592296186834574, 0.01639014109969139, 0.005156672094017267, 0.000824140792246908, 0.015847334638237953, 0.010412638075649738, -0.017502235248684883, -0.014298345893621445, 0.006924106739461422, -0.00015090630040504038, -0.0016127012204378843, 0.0012304190313443542, 0.009598426520824432, 0.017952367663383484, 0.009135054424405098, 0.0024509085342288017, -0.026094481348991394, -0.015503114089369774, 0.0022407362703233957, 0.014960306696593761, -0.00021430970809888095, -0.011491633951663971, 0.0029242103919386864, -0.029073303565382957, 0.012822174467146397, -0.0142321502789855, 0.03439546748995781, 6.216222391230986e-05, -0.017965607345104218, -0.013424558565020561, -0.02270524390041828, -0.006689110770821571, 0.02135484479367733, -0.0047330171801149845, -0.019263049587607384, 0.03452785685658455, 0.009293925017118454, -0.03460729494690895, -0.017541952431201935, -0.003422335721552372, -0.015860572457313538, -0.013364981859922409, -0.03238310664892197, 0.0012684817193076015, 0.024823518469929695, 0.025511955842375755, 0.017647866159677505, 0.00580539321526885, -0.0063151028007268906, -0.004368938971310854, 0.011710080318152905, 0.046072449535131454, 0.0036838101223111153, 0.003142657456919551, 0.023274529725313187, -0.011882190592586994, -0.009598426520824432, -0.023658467456698418, -0.02790825441479683, 0.039108626544475555, 0.030794400721788406, 0.012378660961985588, -0.02925865352153778, -0.04964703693985939, -0.0249029528349638, 0.024333667010068893, 0.0066824909299612045, 0.004537738859653473, -0.010736999101936817, -0.012789076194167137, 0.013808495365083218, -0.020891472697257996, 0.004749566316604614, -0.003271739697083831, -0.01980585791170597, 0.008082536980509758, 0.012001343071460724, -0.0022026735823601484, -0.012762597762048244, 0.025710545480251312, -0.030105961486697197, 0.03518981859087944, -0.004954773932695389, -0.015979725867509842, 0.015092698857188225, 0.007341141812503338, 0.00031360378488898277, -0.013755538500845432, -0.005514130927622318, -0.0034521238412708044, -0.01611211709678173, -0.0018783127889037132, 0.0012031131191179156, -0.0021546813659369946, -0.024916192516684532, -0.00974405836313963, -0.009128434583544731, 0.03797005116939545, 0.0018352854531258345, 0.004302742891013622, -0.018190674483776093, -0.010558269917964935, -0.043345171958208084, -0.007910427637398243, 0.0030996298883110285, 0.01086939126253128, 0.003428955329582095, 0.023208335041999817, -0.01000222284346819, 0.02835838682949543, -0.008857031352818012, 0.0314563624560833, -0.005543918814510107, -0.04747580364346504, -0.0013785327319055796, 0.006295244209468365, 0.0007405682699754834, -0.013874691911041737, -0.030450182035565376, 0.013967365957796574, 0.0007711839280091226, 0.023433400318026543, 8.384401553485077e-06, -0.03484559804201126, -0.017965607345104218, -0.005229487549513578, -0.011048120446503162, -0.0024906261824071407, -0.0054677934385836124, 0.021023863926529884, -0.01997796632349491, 0.007440435700118542, 0.0009581877966411412, -0.03540164604783058, -0.0029722026083618402, 0.00867830216884613, 0.003895637346431613, 0.004216688219457865, 0.033256895840168, -0.02273172326385975, -0.015463396906852722, -0.00840027816593647, 0.0144572164863348, -0.016231270506978035, -0.018362782895565033, -0.014377781189978123, -0.008605485782027245, -0.0009573603165335953, 0.01645633764564991, -0.01735660433769226, -0.0027934731915593147, -0.02870260551571846, 0.022639047354459763, 0.033309850841760635, 0.009631524793803692, -0.03050313889980316, 0.012775837443768978, 0.01141881849616766, -0.009664623066782951, -0.004729707725346088, -0.0001347710203845054, 0.0036672609858214855, -0.02021627314388752, 0.04578118771314621, 0.015992965549230576, 0.026438701897859573, -0.004219998139888048, 0.006447494961321354, -0.03029131144285202, 0.002128202933818102, 0.02700798772275448, -0.018759960308670998, -0.010419257916510105, 0.01255739014595747, 0.014496934600174427, -0.0022357713896781206, -0.02270524390041828, -0.013040621764957905, 0.0188393946737051, -0.035269252955913544, -0.023843815550208092, 0.008234788663685322, -0.002493936102837324, -0.012087398208677769, 0.013239209540188313, -0.0015423678560182452, 0.014788197353482246, 0.020123599097132683, 0.020825276151299477, -0.03720217943191528, 0.01860108971595764, -0.003088045632466674, -0.0064607341773808, 0.0223213080316782, -0.018958548083901405, 0.003334625856950879, -0.003640782553702593, -0.0010624465066939592, 0.002326791174709797, -0.01948811672627926, -0.02618715539574623, -0.015211851336061954, 0.01153797097504139, 0.01515889447182417, 0.006990302819758654, -0.018018564209342003, -0.035004470497369766, 0.01098854374140501, 0.0066924202255904675, -0.003640782553702593, -0.002440979238599539, 0.024373384192585945, 0.0064044673927128315, 0.005136813037097454, -0.02032218687236309, -0.010783336125314236, -0.022188914939761162, 0.007744937669485807, -0.029788222163915634, -0.006291934289038181, 0.017793497070670128, -0.009035760536789894, -0.0014017012435942888, 0.01845545880496502, -0.0011319523910060525, -0.00375993549823761, -0.01139895897358656, -0.0066427732817828655, -0.02073260210454464, 0.00017459207447245717, -0.013702581636607647, 0.0036109944339841604, -0.0007624957361258566, -0.015992965549230576, -0.005146742798388004, -0.0033147670328617096, 0.011226849630475044, 0.0036507120821624994, 0.026571093127131462, 0.0034918414894491434, 0.01914389617741108, 0.009015901945531368, -0.011015022173523903, -0.0017906030407175422, 0.002358234254643321, -0.005073926877230406, -0.0027769242879003286, -0.009095337241888046, -0.0021331675816327333, 0.01645633764564991, -0.0008729603723622859, -0.0014596228720620275, -0.005673001054674387, -0.00012184210208943114, -0.014443977735936642, -0.0018452148651704192, 0.03518981859087944, 0.005514130927622318, 0.0027487908955663443, 0.0002310655836481601, 0.0024823518469929695, -0.018428979441523552, -0.006550098769366741, -0.022850874811410904, 0.009942646138370037, 0.0021629559341818094, 0.018481936305761337, 0.008943085558712482, 0.01849517598748207, 0.011134175583720207, 0.017886171117424965, 0.0016466266242787242, 0.02745812013745308, -0.0029473789036273956, 0.021990327164530754, -0.0036507120821624994, 0.011571069248020649, -0.016310706734657288, 0.022506656125187874, -0.008585627190768719, 0.0006656839977949858, -0.046628497540950775, 0.003925425466150045, -0.0028017477598041296, 0.014470456168055534, -0.003938664682209492, 0.018124477937817574, -0.0025799910072237253, 0.017886171117424965, -0.003720217850059271, -0.0051798406057059765, 0.011617406271398067, 0.015675224363803864, -0.010306724347174168, 0.007460294757038355, 0.00035787236993201077, 0.0043921079486608505, -0.002073591109365225, -0.003511700313538313, -0.025644348934292793, 0.0013777052517980337, -0.00048281741328537464, 0.01879967749118805, 0.009015901945531368, 0.0012568974634632468, 0.02000444568693638, -0.0012651719152927399, -0.017674345523118973, 0.008585627190768719, -0.011101077310740948, 0.0043523903004825115, -0.009168152697384357, -0.019673464819788933, 0.0014364542439579964, -0.022678766399621964, 0.0031972690485417843, -0.002889457391574979, 0.019607268273830414, -0.00567631097510457, 0.0017889481969177723, 0.028199516236782074, 0.00865844264626503, -0.003948594443500042, 0.0019097559852525592, 0.01804504171013832, 0.0006818192778155208, -0.0018783127889037132, 0.015185372903943062, -0.0007612545159645379, -0.015172134153544903, -0.011557829566299915, 0.0018501795129850507, -0.019713182002305984, 0.017171254381537437, 0.0020967598538845778, 0.022678766399621964, -0.010776716284453869, 0.02122245356440544, -0.013047240674495697, -0.017952367663383484, -0.004299433436244726, -0.004597315564751625, 0.01086939126253128, -0.0066129849292337894, -0.014470456168055534, 8.701160368218552e-06, 0.006943965330719948, 0.010604606941342354, -0.0067619262263178825, -0.0021232382860034704, -0.002758720191195607, 0.007433816324919462, 0.024466058239340782, 0.008605485782027245, -0.008684921078383923, 0.009889689274132252, 0.024571971967816353, -0.005494271870702505, 0.0049713230691850185, 0.008810694329440594, -0.014814675785601139, -0.01639014109969139, -0.004296123515814543, -0.03349519893527031, 0.01216021366417408, 0.014894111081957817, 0.0069307261146605015, -0.013848213478922844, -0.015648745000362396, 0.005659761838614941, 0.005431385710835457, 0.012153593823313713, 0.00569947948679328, 0.007824372500181198, -0.0074470555409789085, -0.015304526314139366, -0.02208300121128559, -0.02455873414874077, 0.0017227521166205406, 0.003198924008756876, -0.011451915837824345, 0.003806272754445672, 0.01645633764564991, 0.0027769242879003286, 0.0007207094458863139, 0.01804504171013832, -0.009671242907643318, 0.006497141905128956, -0.02376438118517399, -0.006937345955520868, 0.01452341303229332, 0.011723319999873638, 0.011339383199810982, 0.0014612777158617973, 0.012391899712383747, 0.0011236779391765594, -0.020150076597929, 0.005878209136426449, 0.014007083140313625, 0.02391001209616661, -0.015582549385726452, 0.002823261311277747, 0.006424326449632645, -0.014377781189978123, -0.0019097559852525592, -0.027987688779830933, 0.0038195119705051184, 0.005762366112321615, -0.013543711043894291, 0.0012990974355489016, -0.0013487444957718253, -0.011332763358950615, 0.004150492139160633, -0.013967365957796574, 0.019752901047468185, 0.03193297237157822, 0.0030417083762586117, 0.027246292680501938, -0.010306724347174168, 0.0055472287349402905, 0.030476659536361694, 0.011253328062593937, -0.02077231928706169, -0.005831871647387743, -0.010856151580810547, -0.013914409093558788, -0.005610114894807339, -0.025895893573760986, 0.019752901047468185, 0.011921907775104046, -0.004623793996870518, 0.007036639843136072, -0.004057817626744509, 0.022639047354459763, -0.010445736348628998, -0.0020206342451274395, 0.0018286658450961113, -0.012610347010195255, 0.00278188893571496, -0.005878209136426449, 0.007572827860713005, -0.005884828511625528, -0.013404699973762035, -0.02438662387430668, -0.011432057246565819, 0.0035481080412864685, 0.013086958788335323, -0.007672121748328209, 0.010445736348628998, -0.005669691599905491, 0.004977942910045385, 0.013782016932964325, 0.001969332341104746, -0.015754658728837967, -0.017131537199020386, -0.014218910597264767, -0.0037069786339998245, -0.007592686451971531, 0.014867632649838924, -0.0323566272854805, -0.012722880579531193, 0.01821715198457241, 0.006596436258405447, -0.01690647006034851, 0.01503974199295044, 0.002560132183134556, -0.018203912302851677, 0.03773174807429314, 0.003023504512384534, 0.00220763823017478, 0.010134615004062653, 0.004259715788066387, -0.008823933079838753, -0.006553408689796925, 0.02304946444928646, -0.0023201715666800737, 0.008446615189313889, 0.013927648775279522, -0.011240088380873203, 0.024783799424767494, -0.02079879865050316, -0.021725542843341827, -0.0006135546136647463, 0.012742739170789719, 0.025723783299326897, 0.03304506838321686, -0.02032218687236309, 0.007830992341041565, -0.014073279686272144, -0.021434281021356583, -0.001904791221022606, -0.006490522529929876, 0.016270987689495087, 0.010207430459558964, 0.010088277980685234, 0.011034880764782429, -0.0004654409713111818, -0.026743203401565552, -2.044061511696782e-05, 0.025922372937202454, -0.00272065750323236, -0.007063118275254965, 0.003478602273389697, 0.026068003848195076, 0.010796574875712395, 0.009426317177712917, -0.005454554222524166, 0.019435159862041473, -0.0018369402969256043, 0.006669251713901758, 0.017065340653061867, -0.012292605824768543, 0.012060919776558876, 0.0067222085781395435, 0.014324824325740337, -0.020825276151299477, -0.005960953887552023, -0.004829001612961292, 0.00225563021376729, -0.005345331039279699, -0.004117394331842661, 0.004719777964055538, 0.025710545480251312, -0.015622267499566078, 0.0005022624973207712, 0.015026502311229706, 0.012199931778013706, 0.004726397804915905, 0.022639047354459763, -0.0036573316901922226, -0.004385488107800484, 0.0013446072116494179, -0.029655829071998596, -0.0011485014110803604, -0.02780234068632126, -0.010531791485846043, -0.008479713462293148, -0.012888370081782341, -0.0025220694951713085, 0.01680055633187294, -0.008923226967453957, 0.021129777655005455, -0.0056961700320243835, -0.020136836916208267, 0.002182814758270979, -0.007804513908922672, 0.006308483425527811, 0.002249010605737567, 0.01233232393860817, -0.007188890594989061, 0.00142486987169832, -0.008155353367328644, -0.028040645644068718, 0.0096050463616848, 0.004709848668426275, 0.0162180308252573, -0.015331004746258259, -0.003849300090223551, 0.0038658492267131805, 0.00905561912804842, -0.002249010605737567, 0.009327023290097713, 0.004359009675681591, 0.002810022095218301, -0.017515474930405617, -0.003208853304386139, 0.011696841567754745, -0.010876010172069073, 0.007665502373129129, -0.007175651378929615, 0.024744082242250443, -0.003271739697083831, 0.008612105622887611, 2.989165295730345e-05, 0.014099758118391037, 0.013484135270118713, 0.012511053122580051, 0.007082976866513491, -0.0021215833257883787, 0.01890559121966362, -0.010650943964719772, -0.011299665085971355, -0.020547252148389816, 0.006169471424072981, 0.0037036689464002848, 0.005487652495503426, -0.017025623470544815, -0.01983233541250229, 0.005673001054674387, -0.02339368313550949, -0.008823933079838753, 0.004762805532664061, -0.01596648618578911, 0.017753779888153076, 0.028517257422208786, 0.00931378360837698, -0.012087398208677769, 0.02169906347990036, 0.01731688529253006, 0.002287073526531458, 0.0020322187338024378, 0.009512372314929962, -0.005540609359741211, -0.009274066425859928, 0.00028815967380069196, -0.020931189879775047, 0.0022274970542639494, -0.017118297517299652, 0.008592247031629086, -0.02287735417485237, 0.024691125378012657, -0.018654046580195427, -0.022864114493131638, -0.008439996279776096, 0.0018203912768512964, -0.019263049587607384, 0.033892374485731125, 0.0023234812542796135, 0.009909547865390778, -0.003961833659559488, -0.028331907466053963, 0.006884389091283083, -0.018720241263508797, -0.005229487549513578, -0.014549891464412212, 0.015648745000362396, 0.010928967036306858, 0.005881518591195345, 0.03007948398590088, 0.036487262696027756, -0.017753779888153076, -0.004845550749450922, 0.0009217799524776638, 0.01635042391717434, 0.006871149875223637, 0.008883509784936905, 0.012722880579531193, 0.00010415534052299336, 0.001984226517379284, 0.004345770459622145, 0.007274945732206106, 0.01069728098809719, -0.015887051820755005, -0.004918366204947233, -0.013887930661439896, -0.012511053122580051, 0.007930286228656769, 0.003799653146415949, -0.0165887288749218, 0.01611211709678173, -6.14899254287593e-05, -0.008347321301698685, 0.011895429342985153, -0.0028447750955820084, -0.004203449003398418, 0.012206550687551498, 0.03436898812651634, 0.017541952431201935, 0.005252656526863575, 0.02594885043799877, -0.0005696997395716608, -0.007016780786216259, 0.00038104099803604186, 0.0026726655196398497, -0.015595789067447186, 0.03746696189045906, 0.0046006254851818085, 0.004256405867636204, 0.004517880268394947, 0.005917926784604788, 0.015450157225131989, -0.0055372994393110275, -0.0034885318018496037, 0.0023631989024579525, 0.011789515614509583, 0.01849517598748207, -0.004954773932695389, -0.007155792787671089, 0.014496934600174427, -0.021037103608250618, -0.020745841786265373, 0.02418803609907627, 0.008387039415538311, -0.029232174158096313, -0.015503114089369774, 0.0192100927233696, -0.03828779235482216, -0.004984562285244465, 0.018164195120334625, -0.020242750644683838, -0.013861452229321003, 0.019541073590517044, 0.025445761159062386, 0.005808703135699034, 0.016429858282208443, -0.003152586752548814, 0.020017685368657112, -0.009532230906188488, -0.03293915465474129, -0.0008200035081245005, 0.03248902037739754, -0.0038261315785348415, 0.01742279902100563, -0.02349959686398506, -0.0013843248598277569, -0.0025717164389789104, 0.020057402551174164, 0.03132396936416626, -0.007466914132237434, 0.017131537199020386, 0.001798877608962357, -2.603883513074834e-05, 0.017237450927495956, -0.008387039415538311, -0.009611666202545166, -0.0022589401341974735, 0.008684921078383923, 0.014311585575342178, -0.003422335721552372, -0.010339822620153427, -0.001352881663478911, 0.014907349832355976, -0.0227714404463768, -0.029073303565382957, 0.0002767822297755629, -0.0020173245575278997, -0.006447494961321354, 0.007427196484059095, -0.0059841228649020195, 0.003303182777017355, 0.011829233728349209, 0.004163731355220079, 0.024929432198405266, 0.03654021769762039, -0.011081218719482422, -0.026226874440908432, 0.012722880579531193, 0.02131512761116028, -0.006060248240828514, 0.004028029274195433, 0.0010525170946493745, -0.007394098676741123, -0.01474847923964262, 0.003852610010653734, 0.004769425373524427, 0.0006185193196870387, 0.04088268056511879, -0.0009416387765668333, -0.008711399510502815, 0.008261267095804214, -0.0032220925204455853, 0.01596648618578911, 0.011822613887488842, 0.004885268397629261, 0.005778914783149958, -0.005315542686730623, 0.016747599467635155, 0.006182710640132427, 0.005242726765573025, 0.00606355769559741, 0.004838930908590555, -0.0033296612091362476, 0.018203912302851677, -0.01383497379720211, 0.008711399510502815, -0.0017889481969177723, 0.020507534965872765, -0.007354381028562784, -0.0008746152743697166, -0.00031153514282777905, -0.0024111911188811064, 0.002073591109365225, -0.01347089558839798, -0.00762578472495079, 0.0024194654542952776, 0.007400718051940203, 0.01748899556696415, -0.00580539321526885, 0.011140794493258, -0.023433400318026543, 0.023618750274181366, 0.002901041880249977, -0.008155353367328644, -0.018137717619538307, -0.002389677334576845, 0.016654925420880318, -0.0058153229765594006, 0.0331774577498436, -0.017303647473454475, -0.0008022133260965347, 0.014655805192887783, 0.03839370608329773, -0.006705659441649914, -0.01074361801147461, -0.01701238378882408, -0.03132396936416626, 0.0036043748259544373, -0.009413077495992184, -0.003260155441239476, -0.003422335721552372, 0.002854704624041915, 0.030026527121663094, 0.007870710454881191, 0.024002686142921448, -0.02077231928706169, -0.0069704437628388405, 0.00018855530652217567, 0.0037003590259701014, 0.006924106739461422, -0.005116954445838928, -0.01652253419160843, 0.006136373616755009, -0.0032518808729946613, -0.03394533321261406, 0.005272515118122101, 0.016549011692404747, 0.011637264862656593, -0.02049429714679718, 0.0045609078370034695, -0.009737438522279263, -0.0005072272033430636, -0.02034866437315941, -0.0005241899634711444, -0.007903807796537876, 0.008823933079838753, -0.005232797469943762, 0.0035447983536869287, 0.004008170682936907, -0.019064461812376976, 0.001990846125409007, -0.017780257388949394, -0.014192432165145874, 0.013146534562110901, -0.005236107390373945, 0.022162437438964844, -0.01022728905081749, 0.001102991634979844, -0.012021202594041824, -0.01485439296811819, 0.012643445283174515, -0.011478394269943237, -0.0007327074999921024, -0.006344891153275967, 0.014602848328649998, -0.00850619189441204, -0.008790834806859493, -0.008989423513412476, -0.00556377787142992, -0.021434281021356583, 0.0010649289470165968, 0.006831432227045298, -0.004862099885940552, -0.005159982014447451, -0.007142553571611643, -0.0066129849292337894, 0.013689342886209488, -0.020097119733691216, -0.004689990077167749, -0.012424997985363007, -0.015992965549230576, 0.0027338967192918062, -0.0021298578940331936, -0.00426964508369565, 0.007149172946810722, 0.0013669483596459031, 0.03346872329711914, -0.022519895806908607, 0.01333188358694315, 0.003839370794594288, -0.0206002090126276, -0.020957669243216515, -0.0012204896192997694, -0.0026180536951869726, 0.005004421342164278, -0.017634626477956772, 0.012259507551789284, 0.0011625681072473526, 0.024029165506362915, -0.011862332001328468, -0.008042819797992706, 0.015675224363803864, -0.006417706608772278, -0.027987688779830933, 0.008221548981964588, -0.030158918350934982, -0.0020189795177429914, 0.001311509171500802, 0.009141674265265465, -0.007526490371674299, -0.008565768599510193, 0.003415716113522649, -0.006361440289765596, 0.005600185599178076, 0.010948826558887959, -0.011134175583720207, 0.010942206718027592, -0.017171254381537437, -0.021672585979104042, 0.012537531554698944, -0.005725957918912172, 0.004332531243562698, -0.011233469471335411, 0.028861476108431816, -0.01141881849616766, -0.013596667908132076, 0.0022208774462342262, -0.033098023384809494, 0.005504201166331768, -0.0010591367026790977, -0.006133063696324825, -0.016032682731747627, -0.016482815146446228, 0.011789515614509583, -0.0015481601003557444, -0.02410859987139702, 0.02169906347990036, 0.007705220021307468, 0.013378221541643143, -0.00010849945829249918, -0.023102421313524246, 0.02148723602294922, -0.01676083914935589, 0.010180952027440071, 0.014470456168055534, -0.01852165348827839, -0.011776276864111423, -0.022506656125187874, -0.013702581636607647, -0.04204772785305977, 0.005520750302821398, -0.0010127995628863573, -0.018071521073579788, -0.01266330387443304, -1.5294906916096807e-05, 0.0044814725406467915, -0.007135933730751276, -0.00013735679385717958, -0.011471775360405445, 0.013292166404426098, -0.012107256799936295, -0.025233933702111244, 0.0011948386672884226, 0.001287513063289225, 0.018256869167089462, 0.00595102459192276, -0.022056523710489273, -0.0026511517353355885, -0.0070895967073738575, -0.006497141905128956, -0.0170785803347826, -0.007096216082572937, 0.0025717164389789104, 0.010995163582265377, 0.009413077495992184, -0.009082097560167313, 0.005514130927622318, -0.003601064905524254, -0.011710080318152905, -0.003384272800758481, 0.00820831023156643, 0.00621911883354187, -0.0061132051050662994, -0.004968013148754835, -0.012305845506489277, -0.024889713153243065, 0.023142138496041298, -0.000984666170552373, -0.0006983682978898287, -0.0004319292202126235, -0.0005204664194025099, 0.01205429993569851, -0.0011600857833400369, 0.007983243092894554, 0.010445736348628998, -0.004359009675681591, -0.015066220425069332, -0.0028762181755155325, -0.012027821503579617, -0.006742067635059357, 0.007241847459226847, 0.01061122678220272, -0.019157135859131813, 0.006550098769366741, -0.0126964021474123, 0.00042262038914486766, 0.018402501940727234, -0.020070642232894897, 0.014020322822034359, 0.0025237242225557566, 0.00712269451469183, 0.00478597404435277, -0.010280245915055275, 0.01240513939410448, 0.016204793006181717, -0.01890559121966362, 0.006871149875223637, 0.0014687248039990664, 0.005636593326926231, 0.00686453003436327, -0.007135933730751276, -0.009644764475524426, 0.026226874440908432, 0.0017459207447245717, -0.008625345304608345, 0.010419257916510105, 0.020070642232894897, 0.0034752925857901573, 0.015013263560831547, 0.00017055825446732342, 0.006725518498569727, 0.007943525910377502, -0.01474847923964262, 0.0036606413777917624, -0.005931166000664234, 0.017065340653061867, -0.007433816324919462, -0.010022081434726715, -0.0002407881256658584, 0.004766115453094244, 0.02273172326385975, -0.02152695506811142, 0.000911850540433079, 0.009168152697384357, 0.010346442461013794, -0.01690647006034851, 0.007797894533723593, 0.002671010559424758, 0.012034441344439983, 0.03193297237157822, -0.0006123134517110884, 0.013676103204488754, -0.011392340064048767, 0.013887930661439896, -0.022784680128097534, -0.00930054485797882, 0.04872028902173042, 0.020825276151299477, 0.016323944553732872, 0.023301009088754654, 0.01928952895104885, 0.00490843690931797, -0.018058281391859055, 0.005884828511625528, 0.010915728285908699, -0.0065236203372478485, 0.028729084879159927, -0.007824372500181198, -0.012742739170789719, -0.008817313238978386, 0.031032707542181015, 0.015489875338971615, 0.012352182529866695, 0.0023052773904055357, 0.006103275343775749, 0.020401621237397194, 0.00025713027571327984, 0.020203033462166786, 0.005368499550968409, 0.020150076597929, 0.003438884625211358, 0.0018898971611633897, -0.017436038702726364, 0.0033875827211886644, -0.006248906720429659, 0.005408217199146748, 0.010121375322341919, 0.004752876237034798, -0.0196999441832304, 0.0113857202231884, -0.008049439638853073, 0.018812917172908783, 0.01669464260339737, -0.02049429714679718, -0.01371582131832838, -0.006543479394167662, -0.0043523903004825115, -0.009658003225922585, -0.0017657795688137412, -0.00016859306197147816, 0.001959403045475483, -0.005855040159076452, -0.016098879277706146, 0.02939104475080967, -0.006384608801454306, -0.03481912240386009, 0.006099965889006853, -0.002560132183134556, 0.0010326583869755268, -0.0026114340871572495, 0.004206758923828602, -0.021407801657915115, 0.010419257916510105, -0.004842240829020739, 0.00033573806285858154, -0.005643213167786598, -0.004090915899723768, 0.005232797469943762, -0.011955006048083305, -0.012411759234964848, -0.011120935901999474, 0.018720241263508797, -0.009148294106125832, 0.0016441443003714085, -0.010750237852334976, 0.015953246504068375, -0.0024244303349405527, -0.0014604502357542515, 0.002904351567849517, -0.008883509784936905, 0.006166161969304085, 0.0008055231301113963, 0.023830577731132507, -0.004501331131905317, -0.0013768777716904879, -0.020083880051970482, 0.007936906069517136, -0.005778914783149958, 0.008201690390706062, -0.01112755574285984, 0.00034421944292262197, -0.02094442956149578, 0.018468696624040604, 0.015635507181286812, 0.0013694306835532188, 0.010372920893132687, 0.01205429993569851, 0.00037255961797200143, -0.027696426957845688, 0.006311792880296707, -0.010770096443593502, -0.007480153348296881, 0.01570170186460018, 0.0009747368167154491, -0.029338087886571884, -0.022374264895915985, 0.028543734923005104, 0.011074598878622055, -0.0033263512887060642, 0.006791714578866959, 0.012285985983908176, 0.011498253792524338, 0.01331864483654499, -0.009141674265265465, 0.008056058548390865, 0.003248570952564478, 0.010439116507768631, 0.0010450701229274273, -0.015741420909762383, -0.012941326946020126, 0.010439116507768631, -0.00011511906632222235, -0.0012444857275113463, -0.019779378548264503, -0.019302766770124435, -0.015648745000362396, -0.04570174962282181, -0.0009962505428120494, 0.0062720756977796555, 0.011286426335573196, 0.011981484480202198, 0.0011956661473959684, 0.021037103608250618, 0.008420136757194996, 0.0008597211563028395, -0.001304062083363533, -0.0017078580567613244, -0.014947067014873028, -0.024783799424767494, -0.007989862933754921, -0.011465155519545078, -0.002368163550272584, -0.015622267499566078, -0.0046006254851818085, -0.018256869167089462, -0.0020901402458548546, -0.0068115731701254845, -0.0073279025964438915, -6.547202792717144e-05, -0.005444624926894903, 0.015595789067447186, 0.005808703135699034, -0.0056266640312969685, 0.014086518436670303, -0.016019443050026894, -0.010220670141279697, 0.007830992341041565, -0.03463377058506012, 0.006285314913839102, 0.010028701275587082, 0.013649624772369862, 0.0020835206378251314, -0.016032682731747627, -0.0210106261074543, -0.012153593823313713, 0.014827914535999298, 0.007586067076772451, -0.004994491580873728, -0.0011650504311546683, 0.007043259218335152, 0.01639014109969139, 0.008770976215600967, 0.0032866336405277252, -0.01832306571304798, -0.0015481601003557444, 0.004249786026775837, -0.006027149967849255, 0.000776148634031415, -0.000487782119307667, 0.009717579931020737, -0.007241847459226847, -0.01641662046313286, 0.019196853041648865, -0.016615208238363266, -0.006831432227045298, 0.004345770459622145, 0.0011170583311468363, 0.016827035695314407, -0.0034090965054929256, -0.008956325240433216, 0.0016011168481782079, -0.014073279686272144, 0.004534429404884577, 0.020308947190642357, 0.03336280956864357, 0.03635486960411072, -0.04249786213040352, 0.0009333642665296793, -0.02245369926095009, 0.02221539430320263, -0.003845990402624011, -0.0036043748259544373, 0.01879967749118805, 0.002391332294791937, 0.005755746271461248, 0.0074470555409789085, -0.009664623066782951, -0.004339151084423065, 0.00542476586997509, -0.008817313238978386, 0.0058153229765594006, -0.013219350948929787, -0.00022279107361100614, -0.008486333303153515, 0.006579887121915817, -0.023473117500543594, 0.012669923715293407, 0.01298766490072012, -0.006583197042346001, 0.01746251806616783, 0.020083880051970482, 0.006351510528475046, 0.007711839396506548, -0.0065732672810554504, 0.0004600625252351165, -0.005533989518880844, -0.029576394706964493, -0.003192304400727153, -0.01596648618578911, 0.011769657023251057, -0.010670802555978298, 0.005689550191164017, -0.04098859429359436, -0.0004062782390974462, -0.008559148758649826, 0.02193737030029297, 0.010240528732538223, 0.015503114089369774, -0.002138132229447365, -0.007579447235912085, 0.006017220672219992, 0.020573731511831284, -0.009982364252209663, -0.009770536795258522, -0.005874899215996265, 0.0018849323969334364, -0.011061359196901321, -0.016257749870419502, 0.002821606583893299, -0.034686729311943054, 0.0026494967751204967, -0.003223747480660677, 0.017568431794643402, -0.010306724347174168, -0.007241847459226847, 0.006775165442377329, -0.022202154621481895, 0.014841154217720032, 0.005097095854580402, -0.0029771672561764717, 0.0011799444910138845, 0.003351174993440509, -0.008459854871034622, 0.0008092466741800308, 0.003574586473405361, 0.008777596056461334, 0.02631954848766327, -0.008406898006796837, -0.0002879528037738055, 0.012239648960530758, -0.016257749870419502, -0.036169521510601044, 0.01600620336830616, 0.02148723602294922, 0.03129749000072479, 0.013093577697873116, -0.007718459237366915, 0.004206758923828602, 0.018084760755300522, 0.024240992963314056, 0.015489875338971615, 0.003902256954461336, -0.01776701956987381, -0.03450138121843338, 0.0015895325923338532, 0.003126108320429921, 0.0031939593609422445, 0.013312024995684624, 0.006334961857646704, -0.005583636462688446, -5.373257226892747e-05, -7.88663874118356e-06, 0.0006578232278116047, 0.017515474930405617, -0.018998265266418457, 0.0009937681024894118, 0.008181831799447536, -0.0007389133679680526, -0.006798333954066038, -0.011564449407160282, 0.025710545480251312, 0.005752436351031065, -0.004610554780811071, 0.0009234348544850945, -0.005193079821765423, -0.02691531367599964, 0.0035050807055085897, 0.01976613886654377, -0.01317963283509016, -0.02518097683787346, -0.008684921078383923, -0.008737877942621708, 0.017197733744978905, 0.026372505351901054, 0.002177849877625704, 0.012477954849600792, -0.0050904760137200356, 0.007182271219789982, 0.03291267529129982, -0.006818193010985851, -0.009287305176258087, 0.00802296120673418, -0.0007215369259938598, 0.009247587993741035, 0.018640806898474693, 0.007413957267999649, 0.010545030236244202, -0.008704780600965023, -0.012610347010195255, -0.007460294757038355, 0.013139915652573109, 0.008929846808314323, -0.007539729587733746, 0.013371601700782776, 0.0008046957082115114, -0.019329246133565903, -0.0024244303349405527, -0.014033561572432518, 0.019064461812376976, 0.019501356407999992, -0.01139895897358656, 0.0024012615904212, 0.020229512825608253, -0.004703229293227196, 0.001759159960784018, -0.001999120693653822, 0.008909988217055798, -0.005024279933422804, 0.001215524971485138, 0.005517440382391214, 0.011041500605642796, 0.015383961610496044, -0.011624026112258434, 0.0036738805938512087, 0.0012585523072630167, 0.006636153906583786, 0.016032682731747627, 0.008996042422950268, 0.0058649699203670025, 0.01673436164855957, 0.005557158030569553, 0.012908229604363441, 0.017992084845900536, 0.021169496700167656, -0.0002687145897652954, -0.0038261315785348415, -0.010545030236244202, -0.0018021874129772186, -0.01866728439927101, -0.001479481696151197, 0.013702581636607647, -0.004084296058863401, -0.030238354578614235, 0.010889249853789806, -0.03611656278371811, -0.000855583930388093, -0.01959403045475483, -0.0025816457346081734, -0.0017426109407097101, 0.02597532980144024, -2.808160388667602e-05, -0.019170375540852547, 0.013120056129992008, 0.011167272925376892, 0.01566198468208313, 0.012643445283174515, -0.01890559121966362, 0.003079771064221859, -0.00726170651614666, 0.00164745410438627, -0.016879992559552193, -0.0103001045063138, -0.0062753851525485516, -0.007109455298632383, -0.002295347861945629, 0.00018214256851933897, 0.004375558812171221, 0.004094225354492664, 0.02107682079076767, -0.026716724038124084, -0.01735660433769226, -0.014576369896531105, -0.0006834741798229516, -0.009929407387971878, 0.008585627190768719, 0.024995626881718636, -0.025260411202907562, -0.0077714161016047, 0.01240513939410448, 0.018376022577285767, 0.02034866437315941, -0.013768778182566166, -0.0030499829445034266, 0.007109455298632383, -0.009141674265265465, 0.008360560983419418, -0.0196602251380682, 0.01497354544699192, 0.014563130214810371, 0.011173892766237259, -0.015635507181286812, 0.0039452845230698586, 0.037175700068473816, -0.00955870933830738, -0.01515889447182417, 0.012842033058404922, 0.006553408689796925, -0.0065335496328771114, -0.004385488107800484, -0.0014356267638504505, 0.009386599063873291, -0.016125356778502464, -0.01645633764564991, -0.018640806898474693, 0.008618725463747978, 0.03643430396914482, -0.028729084879159927, -0.0010938897030428052, 0.01555607095360756, 0.018256869167089462, 0.006679181009531021, 0.007453674916177988, -0.002007395029067993, -0.005994052160531282, 0.004501331131905317, 0.007036639843136072, 0.010684042237699032, -0.019302766770124435, -0.010783336125314236, 0.022533133625984192, 0.027934731915593147, 0.0142321502789855, -0.014443977735936642, -0.011015022173523903, -0.014616087079048157, 0.0028282261919230223, -0.021897653117775917, -0.003852610010653734, -0.03042370267212391, -0.006649393122643232, -0.011226849630475044, 0.030370745807886124, -0.014655805192887783, -0.0021364775020629168, -0.01901150494813919, -0.006616294849663973, -0.00919463112950325, -0.017224211245775223, -0.0055372994393110275, -0.022625809535384178, 0.014033561572432518, -0.011835853569209576, 0.008486333303153515, -0.005411526653915644, 0.031482841819524765, -0.009750678203999996, -0.008234788663685322, -0.011577689088881016, 0.018376022577285767, 0.0017740540206432343, -0.020706122741103172, 0.011895429342985153, -0.017171254381537437, 0.006990302819758654, 0.007645643316209316, -0.005265895742923021, 0.002249010605737567, -0.020573731511831284, 0.004749566316604614, -0.00026188811170868576, -0.02915273979306221, 0.009353501722216606, 0.0030036456882953644, 0.013007523491978645, 0.009916167706251144, -0.02049429714679718, 0.012934708036482334, 0.017647866159677505, -0.013292166404426098, 0.0034488141536712646, 0.0036209237296134233, 0.0003965556970797479, -0.02225511148571968, -0.012279367074370384, 0.003428955329582095, 0.0051500522531569, 0.03540164604783058, -0.002558477222919464, 0.009790395386517048, -0.01742279902100563, -0.019157135859131813, -0.036857958883047104, 0.012325704097747803, -0.012259507551789284, -0.014788197353482246, 0.029099782928824425, -0.018534893169999123, -0.019845575094223022, 0.003710288554430008, 0.022784680128097534, 0.0019577480852603912, 0.0050904760137200356, 0.006672561634331942, -0.007691980805248022, 0.001088924938812852, 0.01587381213903427, 0.002368163550272584, 0.0015225090319290757, -0.01543691847473383, -0.020653165876865387, -0.010147853754460812, 0.014669043943285942, 0.012795696035027504, 0.006513691041618586, -0.008459854871034622, -0.0033793081529438496, 0.018442219123244286, -0.007877329364418983, -0.009578567929565907, -0.016999144107103348, 0.00971096009016037, 0.010412638075649738, 0.00019558864005375654, 0.0019130657892674208, -0.009148294106125832, -0.009757297113537788, -0.019263049587607384, -0.013967365957796574, 0.012021202594041824, 0.009035760536789894, -0.02086499333381653, -0.0014513483038172126, 0.0022374263498932123, -0.005454554222524166, -0.01787293329834938, 0.005368499550968409, -0.011140794493258, -0.0011377445189282298, -0.015529592521488667, -0.008876889944076538, 0.015979725867509842, 0.00478597404435277, 0.007817753590643406, -0.012716260738670826, -0.009856591001152992, -0.006748687010258436, -0.004607244860380888, 0.0051004053093492985, 0.016774078831076622, -0.0016979286447167397, -0.011617406271398067, 0.00014532101340591908, 0.0024178107269108295, -0.005229487549513578, 0.007890569046139717, -0.005401597358286381, 0.018137717619538307, -0.0034355749376118183, 0.009512372314929962, 0.007460294757038355, 0.0013826698996126652, -0.007586067076772451, -0.013702581636607647, 0.024519015103578568, -0.012153593823313713, -0.02894091233611107, -0.014179193414747715, -0.012345562689006329, -0.007294804323464632, 0.0072286082431674, -0.0011385719990357757, -0.0035944452974945307, 0.002704108599573374, -0.01010813657194376, 0.016774078831076622, 0.008883509784936905, 0.005600185599178076, -0.017965607345104218, 0.0068910084664821625, 0.005510821007192135, 0.0006131408736109734, 0.005438005086034536, -0.02915273979306221, -0.010889249853789806, 0.013940887525677681, 0.004137252923101187, -0.0129214683547616, 0.022718483582139015, -0.0013719131238758564, -0.008115635253489017, -0.0062753851525485516, -0.007811133749783039, -0.005279134958982468, -0.024519015103578568, -0.014165953733026981, 0.003958523739129305, -0.020639928057789803, 0.0007289839559234679, -0.03050313889980316, 0.02563110925257206, 0.00748677272349596, -0.010684042237699032, 0.010902488604187965, 0.014073279686272144, -0.009618286043405533, -0.004911746829748154, -0.0021861244458705187, 0.007235228084027767, 0.045516401529312134, 0.0005783879896625876, -0.02849077805876732, -0.0014116306556388736, -0.0009987328667193651, 0.017158014699816704, -0.0001098440625355579, -0.00028774593374691904, -0.009624904952943325, -0.010604606941342354, 0.0025866106152534485, 0.005335401277989149, -0.018243631348013878, -0.023062702268362045, 0.011670363135635853, -0.011286426335573196, 0.006133063696324825, -0.01587381213903427, -0.027537556365132332, -0.011895429342985153, 0.012100637890398502, 0.005831871647387743, 0.011233469471335411, 0.008314223960042, -0.0044450643472373486, 0.007394098676741123, 0.009459415450692177, 0.0005341193755157292, 0.011346002109348774, -0.02193737030029297, -0.008128874935209751, -0.005097095854580402, -0.016615208238363266, 0.03484559804201126, -0.003640782553702593, 0.0019329246133565903, -0.029073303565382957, 0.008069298230111599, -0.0002459597017150372, 0.00763240410014987, -0.0033478650730103254, 0.01607239991426468, 0.021897653117775917, -0.010915728285908699, -0.013808495365083218, 0.013358362019062042, -0.02242721989750862, -0.001969332341104746, -0.01021405030041933, 0.009353501722216606, 0.01952783390879631, 0.003364414209499955, -0.003048327984288335, 0.017952367663383484, 0.011041500605642796, 0.003303182777017355, -0.01186895091086626, -0.010220670141279697, 0.00010141441453015432, 0.007943525910377502, 0.025617869570851326, -0.002704108599573374, -0.020878233015537262, 0.028967389836907387, -0.012736119329929352, 0.017608148977160454, -0.014033561572432518, -0.0018485246691852808, 0.005371809005737305, 0.011485014110803604, -0.0034124061930924654, 0.006003981456160545, 0.0032518808729946613, 0.0103001045063138, -0.0016515913885086775, -0.0003334625798743218, -0.04371586814522743, -0.006599745713174343, 0.0245322547852993, 0.014020322822034359, 0.0009863211307674646, 0.0098499720916152], "7932423f-0047-496c-86f0-5c4a705fc98a": [-0.025107454508543015, -0.022950008511543274, -0.010968221351504326, 0.01754915527999401, -0.007004458457231522, -0.020488493144512177, 0.004770995583385229, 0.02539704367518425, -0.01138088759034872, 0.05154702067375183, -0.003978242632001638, 0.016825178638100624, 0.01381344348192215, 0.008535665459930897, 0.01637631468474865, 0.029581619426608086, -0.004318511113524437, 0.016115684062242508, -3.286167702754028e-05, -0.031565312296152115, 0.03173906356096268, -0.01736092008650303, -0.017809785902500153, 0.007884087972342968, 0.01543514709919691, -0.025035055354237556, -0.02820606715977192, -0.0009764613350853324, -0.060582228004932404, -0.0056795841082930565, -0.015768175944685936, 0.023543667048215866, -0.012915714643895626, 0.01779530569911003, 0.023471269756555557, -0.0327526293694973, -0.004915790166705847, 0.006280483212321997, -0.03440329432487488, 0.0052451989613473415, 0.005429812707006931, 0.024513794109225273, -0.0028235025238245726, -0.018982624635100365, -0.014255068264901638, -0.00421715434640646, -0.012626124545931816, 0.012517527677118778, 0.018186252564191818, -0.046710867434740067, 0.022805213928222656, 0.03179698437452316, -0.021733731031417847, 0.03440329432487488, 0.04117969796061516, -0.027279378846287727, 0.010932022705674171, 0.054385002702474594, 0.00304069509729743, -0.05684651806950569, -0.005643385462462902, -0.0552537739276886, 0.0001876679016277194, -0.018331047147512436, 0.017433319240808487, 0.012459609657526016, -0.017274044454097748, -0.0014687642687931657, -0.006019852124154568, 0.03938424214720726, -0.03405578434467316, 0.007344726473093033, -0.060929737985134125, -0.02365950308740139, 0.05085200443863869, 0.013487654738128185, 0.03034903295338154, -0.0019402530742809176, 0.027076665312051773, -0.0470004566013813, 0.04117969796061516, -0.007308527827262878, 0.023514708504080772, 0.0022153635509312153, 0.048766955733299255, 0.028727328404784203, -0.03257887437939644, -0.0445389449596405, -0.04789818823337555, -0.020778082311153412, 0.010316643863916397, 0.014450541697442532, -0.0008122095023281872, 0.006584553048014641, 0.014674973674118519, 0.007120294496417046, 0.00835467129945755, 0.008275034837424755, -0.014276787638664246, -0.046710867434740067, -0.018837830051779747, 0.010577275417745113, -0.0029447684064507484, -0.004018061328679323, 0.02407940849661827, -0.012054184451699257, 0.0035854862071573734, 0.03315805643796921, 0.0019547324627637863, 0.012988111935555935, -0.025701113045215607, -0.02888660319149494, 0.03515622764825821, 0.005017146933823824, -0.011359168216586113, -0.022110197693109512, -0.03706752136349678, 0.012314815074205399, -0.020951837301254272, -0.0241662859916687, 0.05201036483049393, -0.02613549865782261, 0.029349947348237038, -0.01918533816933632, -0.006418038625270128, 0.00017974941874854267, 0.010678631253540516, 0.018924707546830177, 0.03981862589716911, 0.023152722045779228, 0.002075998345389962, 0.0019456829177215695, 0.022718336433172226, 0.00765241589397192, -0.006443377584218979, 0.019141899421811104, 0.008564624935388565, 0.08890413492918015, -0.008752858266234398, -0.0024832342751324177, -0.025179851800203323, 0.011438805609941483, -0.02085048146545887, 0.02803231216967106, 0.012220698408782482, 0.0027420553378760815, -0.03011736087501049, 0.06498400121927261, -0.03078341856598854, 0.0052705383859574795, -0.036024998873472214, 0.009875019080936909, -0.036285627633333206, -0.008477747440338135, 0.044133517891168594, -0.023963572457432747, -0.0035818663891404867, 0.04540771245956421, 0.013248742558062077, 0.051575981080532074, 0.02961057797074318, -0.03978966549038887, 0.002584590809419751, 0.01581161469221115, 0.028104709461331367, 0.02888660319149494, 0.044220395386219025, 0.029335467144846916, -0.015522024594247341, 0.020647767931222916, 0.01216278038918972, -0.019923793151974678, 0.04225118085741997, 0.021357262507081032, -0.017143728211522102, 0.012959152460098267, 0.035706449300050735, 0.01009221188724041, 0.018504802137613297, 0.007351966109126806, -0.029827771708369255, 0.013914800249040127, 0.0430041179060936, 0.027684804052114487, 0.021038714796304703, 0.05626733973622322, 0.009838820435106754, 0.02142965979874134, -0.019576285034418106, -0.029002439230680466, -0.0017330151749774814, 0.017737388610839844, 0.01928669400513172, 0.008999009616672993, -0.031565312296152115, -0.019909312948584557, 0.006743827369064093, 0.013284941203892231, -0.008028882555663586, 0.03110196627676487, -0.025860387831926346, -0.04002133756875992, -0.03144947439432144, 0.03179698437452316, -0.024702027440071106, 0.029885688796639442, 0.005172801669687033, -0.025932785123586655, 0.04285931959748268, 0.013357339426875114, 0.07436671108007431, -0.030175277963280678, 0.01853376068174839, -0.0049809482879936695, -0.0013321139849722385, 0.005104023963212967, 0.009071406908333302, 0.033621400594711304, -0.026859473437070847, -0.022052278742194176, -0.0030551746021956205, 0.0023167200852185488, -0.0160432867705822, -0.005458771716803312, -0.05386374145746231, 0.023645024746656418, -0.02448483556509018, 0.019214296713471413, -0.0170423723757267, -0.030146319419145584, -0.006848803721368313, 0.0027492952067404985, 0.028741808608174324, -0.00250314362347126, -0.00044275596155785024, 0.03918152675032616, 0.020980795845389366, -0.016506630927324295, -0.014928365126252174, 0.011540161445736885, 0.0026063101831823587, 0.031478434801101685, -0.01895366609096527, -0.019417010247707367, -0.011496723629534245, 0.01886678859591484, -0.003352004336193204, 0.07691510766744614, 0.009903978556394577, 0.004028921015560627, -0.02971193566918373, -0.004477785434573889, -0.00873113889247179, 0.01754915527999401, -0.02397805266082287, 0.027815120294690132, 0.03472184017300606, -0.026700198650360107, -0.012973632663488388, -0.012756439857184887, 0.0038768863305449486, 0.00411579804494977, 0.00038348051020875573, 0.00461172079667449, 0.027945436537265778, 0.0053610350005328655, 0.017085811123251915, 0.009614388458430767, -0.008658741600811481, 0.015623381361365318, 0.019315654411911964, -0.023138241842389107, -0.03547477722167969, 0.046044811606407166, -0.00529587734490633, -0.021284865215420723, -0.01653558947145939, -0.0013375438284128904, 0.028408780694007874, -0.012669563293457031, -0.03260783478617668, -0.004086839035153389, 0.029581619426608086, -0.010903064161539078, 0.01796906068921089, 0.005701303482055664, -0.01788218319416046, -0.018562719225883484, -0.02795991487801075, 0.021444140002131462, 0.010425240732729435, -0.01644871197640896, -0.0051293629221618176, 0.03926840424537659, 0.010598993860185146, -0.0013628830201923847, 0.001459714607335627, -0.005849718116223812, 0.026873953640460968, 0.025599757209420204, -0.006591792684048414, 0.00873113889247179, 0.004180955700576305, -0.016810700297355652, 0.025831429287791252, -0.04639231786131859, 0.01653558947145939, 0.01853376068174839, -0.021125590428709984, 0.06579484790563583, 0.03918152675032616, -0.003299516160041094, -0.023876696825027466, -0.003694082610309124, -0.008195397444069386, 0.035619571805000305, -0.02976985275745392, -0.027235940098762512, -0.01702789217233658, -0.013646929524838924, -0.0430041179060936, -0.005842478480190039, -0.04940405488014221, 0.017317483201622963, 0.054240208119153976, -0.05351623520255089, 0.02367398329079151, -0.01895366609096527, 0.0016135593177750707, -0.017418839037418365, -0.030146319419145584, -0.011576361022889614, 0.005697683431208134, 0.006237044930458069, -0.04080323129892349, -0.01323426328599453, -0.04401767998933792, -0.03422953933477402, -0.021284865215420723, -0.026092059910297394, -0.0237319003790617, -0.006490435916930437, 0.001815367373637855, -0.006805364973843098, -0.03564852848649025, -0.013480414636433125, 0.029306508600711823, 0.010367322713136673, -0.01877991296350956, 0.003353814361616969, 0.0008185442420653999, 0.012416171841323376, 0.05667276307940483, -0.03978966549038887, 0.00910036638379097, -0.026873953640460968, -0.01902606338262558, 0.03538789972662926, 0.018331047147512436, 0.0047492762096226215, -0.03692272678017616, -0.041990552097558975, 0.004861492197960615, -0.01009945198893547, -0.008332952857017517, 0.01257544569671154, 0.008101280778646469, -0.03645938262343407, -0.051431186497211456, 0.01088134478777647, -0.020662246271967888, 0.007333866786211729, 0.0027257660403847694, -0.0006728442967869341, 0.0035004192031919956, -0.061103492975234985, 0.006269623525440693, 0.0004278239794075489, -0.012633363716304302, 0.03289742395281792, -0.013465935364365578, 0.02166133187711239, -0.0019004343776032329, 0.010577275417745113, 0.027004268020391464, 0.0036452142521739006, -0.003259697463363409, -0.05047553777694702, -0.03822588175535202, -0.0266278013586998, -0.021284865215420723, -0.004582761786878109, -0.03811004385352135, 0.009360997006297112, -0.02985673025250435, -0.02118350937962532, 0.0012506667990237474, -0.03990550339221954, -0.00697187939658761, -0.018258649855852127, -0.000569225347135216, 0.006617131642997265, -0.018635116517543793, -0.007826169952750206, -0.02258802019059658, -0.04682670533657074, 0.010570035316050053, 0.01372656598687172, 0.02599070407450199, 0.01928669400513172, 0.03199969604611397, -0.009585428982973099, 0.0022968107368797064, 0.014110272750258446, 0.04031093046069145, 0.020213382318615913, -0.02813366986811161, 0.04607377201318741, -0.020778082311153412, 0.0069610197097063065, 0.035793326795101166, 0.04042676463723183, 0.02167581208050251, 0.021559976041316986, 0.00012284950935281813, 0.000330766080878675, 0.006921201013028622, 0.015217955224215984, 0.01662246696650982, -0.008101280778646469, 0.003133001970127225, 0.03863130882382393, -0.012843316420912743, -0.0010198998497799039, -0.000562438101042062, 0.006432517897337675, 0.017520194873213768, 0.01885231025516987, -0.016202561557292938, -0.007058756425976753, -0.007855129428207874, 0.008050601929426193, -0.006323921959847212, -0.024426916614174843, -0.03906569257378578, -0.039992380887269974, -0.023616064339876175, 0.023427831009030342, 0.008115760050714016, -0.0020542792044579983, 0.005549268331378698, 0.0280612725764513, -0.05484834685921669, -0.002474184613674879, 0.005578227341175079, -0.008427069522440434, 0.03327389061450958, 0.01977899670600891, 0.004839772824198008, -0.05053345486521721, -0.000923520652577281, 0.01195282768458128, 0.05403749644756317, 0.008832495659589767, -0.0028995198663324118, -0.03550373390316963, 0.0002726218372117728, -0.007203551474958658, -0.004358329810202122, 0.010656911879777908, 0.0108017073944211, -0.0009465973125770688, -0.015073159709572792, 0.03779149428009987, 0.008448788896203041, -0.0038298277650028467, -0.01911294087767601, -0.04407560080289841, 0.016014328226447105, -0.004354709759354591, -0.012770919129252434, -0.027018748223781586, 0.022110197693109512, 0.008180918172001839, 0.012763679958879948, -0.002023510169237852, -0.016839658841490746, -0.005806279834359884, 0.005498590413480997, 0.0225011445581913, 0.021559976041316986, -0.008955570869147778, -0.018837830051779747, 0.03393995016813278, 0.02309480309486389, -0.027757203206419945, -0.006052431184798479, -0.032376162707805634, -0.0027474851813167334, -0.03034903295338154, 0.016825178638100624, -0.040919069200754166, 0.04097698628902435, -0.020575370639562607, -0.02911827526986599, 0.03344764560461044, 0.012474089860916138, 0.028162628412246704, 0.009426155127584934, -0.020647767931222916, -0.027568968012928963, 0.03333181142807007, -0.034548088908195496, -0.0020108406897634268, 0.014124752953648567, 0.011677716858685017, -0.012980871833860874, -1.77882920979755e-05, 0.028003353625535965, 0.0017981729470193386, 0.005020766984671354, -0.023181680589914322, -0.0055058300495147705, 0.005371894687414169, -0.02985673025250435, 0.013567292131483555, -0.008260554634034634, -0.018721994012594223, 0.031883858144283295, -0.019156379625201225, -0.01059175468981266, -0.0070478967390954494, -0.02739521488547325, 0.01605776511132717, 0.028568053618073463, 0.00694654043763876, -0.007761012297123671, 0.020242340862751007, 0.005266918335109949, -0.020662246271967888, -0.0015321121318265796, 0.02797439508140087, -0.022530103102326393, 0.001014470006339252, -0.011735634878277779, 0.011844231747090816, -0.0012271376326680183, -0.007616217248141766, 0.0001430981938028708, 0.0164776723831892, -0.011996266432106495, 0.02590382657945156, -0.01986587420105934, -0.003270557150244713, -0.00558184739202261, -0.020242340862751007, -0.0054768710397183895, -0.0018045076867565513, -0.010939262807369232, -0.02142965979874134, -0.01969212107360363, -0.008868694305419922, 0.0038805061485618353, 0.032636795192956924, -0.009252401068806648, 0.01595640927553177, -0.06243560463190079, -0.008629782125353813, 0.0015619761543348432, 0.03822588175535202, 0.03750190511345863, -0.007294048555195332, 0.03425849974155426, 0.01117093488574028, 0.00864426139742136, 0.041237618774175644, 0.013270461931824684, 0.002104957355186343, -0.04060051962733269, 0.02051745168864727, 0.023963572457432747, -0.006512155290693045, 0.03489559516310692, -0.012546487152576447, 0.024441396817564964, 0.01050487719476223, 0.0029990666080266237, -0.019894832745194435, -0.015000762417912483, 0.0380810871720314, 0.01497180387377739, 0.01993827149271965, -0.01481252908706665, 0.011757354252040386, -0.023297516629099846, 0.014153711497783661, 0.0216034147888422, 0.0041954354383051395, 0.011590840294957161, 0.01452293898910284, 0.028235025703907013, 0.0011547401081770658, -0.010975461453199387, -0.03266575187444687, -0.052647463977336884, 0.03283950686454773, -0.01778082735836506, 0.03906569257378578, -0.0019167239079251885, 0.0211690291762352, 0.041237618774175644, -0.004083218984305859, 0.025759031996130943, -0.002874180907383561, 0.015493065118789673, 0.011127496138215065, -0.0002923049032688141, 0.04590001702308655, 0.00636736024171114, 0.002249752404168248, 0.024267641827464104, -0.012640603817999363, 0.04659503325819969, 0.0026045001577585936, -0.010439720004796982, 0.02299344725906849, -0.053747907280921936, 0.004485025070607662, -0.004318511113524437, -0.004618960432708263, -0.02092287875711918, -0.005639765411615372, -0.034779760986566544, -0.00959266908466816, 0.00011809842544607818, -0.04731900617480278, 0.011634279042482376, 0.008665980771183968, -0.0044271070510149, -0.017317483201622963, 0.016028806567192078, 0.01530483178794384, -0.0021809746976941824, 0.019721079617738724, -0.017172686755657196, 0.02019890397787094, 0.0014171811053529382, -0.0004416247538756579, 0.02869836986064911, 0.033389728516340256, -0.010280445218086243, 0.02134278416633606, 0.014870447106659412, 0.025281207635998726, 0.0012823407305404544, -0.015608901157975197, -0.01853376068174839, 4.898143379250541e-05, 0.009875019080936909, -0.024340040981769562, 0.005520309321582317, -0.031159885227680206, 0.02348574995994568, -0.0007624361896887422, 0.03179698437452316, 0.0024578950833529234, -0.0029447684064507484, 0.009404435753822327, 0.012090383097529411, 0.04540771245956421, 0.02895900048315525, -0.013299421407282352, -0.002030750038102269, 0.006258763838559389, 0.0063492609187960625, -0.011771833524107933, 0.026743637397885323, 0.017766347154974937, -0.007435223553329706, -0.0012244227109476924, -0.04888279363512993, -0.05757049471139908, -0.02224051207304001, 0.02258802019059658, -0.0372123159468174, -0.020546410232782364, -0.0018714754842221737, 0.0006918486324138939, -0.03307117894291878, -0.007323007564991713, -0.018012499436736107, 0.03695168346166611, -0.003985482268035412, 0.037530865520238876, -0.012647843919694424, 0.0028832305688410997, 0.012437891215085983, -0.010360082611441612, 0.0041375174187123775, 0.002358348574489355, -0.010027053765952587, -0.026425087824463844, 0.011648758314549923, -0.01886678859591484, 0.01877991296350956, 0.004669638816267252, -0.014913885854184628, -0.025744551792740822, 0.001112206606194377, -0.013060509227216244, 0.0005393613828346133, -0.031565312296152115, -0.016593506559729576, -0.0027022368740290403, 0.012720241211354733, -0.009027968160808086, -0.03260783478617668, 0.019141899421811104, -0.01001257449388504, 0.039094652980566025, -0.026323731988668442, 0.027409695088863373, -0.025353604927659035, -0.020227862522006035, 0.0008814395987428725, 0.035358939319849014, 0.00589677644893527, -0.02630925178527832, 0.006392699666321278, 0.0024144568014889956, 0.02604862116277218, -0.02383325807750225, -0.004991807974874973, 0.0037320912815630436, 0.0190405435860157, -0.024108368903398514, 0.005542028695344925, 0.013277702033519745, 0.043814968317747116, 0.03182594105601311, 0.012025224976241589, -0.012061423622071743, 0.0354168564081192, -0.020054107531905174, -0.006012612488120794, -0.023051364347338676, 0.006070530507713556, 0.002790923696011305, -0.015319311060011387, 0.010048773139715195, 0.02748209238052368, -0.026005182415246964, 0.01753467507660389, 0.012524767778813839, -0.0001438900362700224, 0.0080216433852911, 0.03217345103621483, -0.013509374111890793, -0.001797267934307456, 0.05085200443863869, -0.023210639134049416, 0.012524767778813839, 0.0036271149292588234, 0.010309404693543911, 0.013668647967278957, 0.03269471228122711, 0.041643042117357254, -0.012459609657526016, 0.02555631846189499, 0.04338058456778526, 0.05403749644756317, 0.0028759906999766827, 0.01138088759034872, 0.02871285006403923, -0.013299421407282352, -0.07251333445310593, -0.0009153759456239641, 0.008014403283596039, 0.037443988025188446, -0.011308489367365837, -0.03483767807483673, -0.05681756138801575, 0.04146929085254669, 0.00043574246228672564, 0.015203475020825863, -0.016810700297355652, 0.048680081963539124, 2.477352063579019e-05, 0.0035800563637167215, 0.012959152460098267, 0.00548049109056592, -0.005339315626770258, 0.0022099337074905634, 0.023934613913297653, 0.010888583958148956, 0.003837067633867264, -0.002745675155892968, 0.01067139208316803, -0.023558147251605988, -0.010273205116391182, 0.009404435753822327, -0.02638164907693863, 0.033621400594711304, 0.031478434801101685, 0.005458771716803312, 0.0018280369695276022, 0.014189910143613815, -0.016246000304818153, -0.028350861743092537, 0.004061500076204538, 0.013856882229447365, 0.012249656952917576, -0.0006022567395120859, 0.029335467144846916, -0.032405123114585876, -0.028828686103224754, 0.005733882077038288, 0.0206043291836977, 0.021038714796304703, 0.006374599877744913, -0.01167047768831253, -0.009563709609210491, 0.026931870728731155, 0.012307574972510338, 0.02697530947625637, 0.0009520271560177207, -0.0028759906999766827, 0.009838820435106754, -0.013914800249040127, -0.020459534600377083, -0.006986359134316444, -0.036777932196855545, -0.03483767807483673, 0.024340040981769562, -0.007004458457231522, 0.032636795192956924, -0.006396319251507521, 0.010700350627303123, -0.05064929276704788, 0.03703856095671654, -0.005353795364499092, -0.047695472836494446, -0.010685871355235577, -0.00432575074955821, -0.002121246885508299, 0.006037951447069645, 0.007666895631700754, 0.003051554784178734, 0.007192691788077354, 0.042888280004262924, 0.035619571805000305, -0.009976375848054886, 0.039413198828697205, -0.008419829420745373, -0.00844154879450798, 0.005176421254873276, -0.004054259974509478, -0.002030750038102269, -0.017636030912399292, 0.009976375848054886, 0.015536503866314888, -0.013190824538469315, -0.009628867730498314, 0.005140222609043121, -0.02489026077091694, -0.0019909313414245844, 0.015116598457098007, 0.018345527350902557, 0.015203475020825863, 0.01389308087527752, 0.01581161469221115, -0.012314815074205399, 0.03738607093691826, -0.002347489120438695, 0.0020778083708137274, -0.03003048337996006, 0.031130926683545113, 0.006986359134316444, -0.03159426897764206, 0.01655006967484951, -0.021907484158873558, -0.006023472175002098, 0.001314919674769044, -0.0059402151964604855, -0.006722107995301485, 0.009889498353004456, 0.019460448995232582, 0.0038587867747992277, 0.012278616428375244, 0.006964639760553837, -0.006229804828763008, 0.014457780867815018, -0.01187319029122591, -0.024137327447533607, -0.011779073625802994, -0.0022063138894736767, 0.006443377584218979, 0.004133897367864847, 0.0013665028382092714, 0.01571025885641575, 0.01753467507660389, -0.026280293241143227, -0.023688463494181633, -0.009672306478023529, 0.04410455748438835, -0.033563483506441116, 0.012206219136714935, -0.009397195652127266, 0.02044505439698696, -0.012481329031288624, 0.019315654411911964, 0.026367170736193657, 0.003923944663256407, -0.026511965319514275, 0.041816797107458115, 0.008861454203724861, 0.014783569611608982, -0.0322892852127552, 0.0007886802777647972, -0.02671467885375023, 0.009295838885009289, -0.006302202586084604, 0.04534979537129402, -0.009607148356735706, -0.03480871766805649, 0.014769090339541435, -0.03165218606591225, -0.023427831009030342, -0.02557079866528511, 0.019141899421811104, -0.007746532559394836, 0.0009429774363525212, 0.01203246507793665, -0.013017070479691029, -0.00539723364636302, -0.025715593248605728, -0.051662858575582504, -0.02350022830069065, -0.03199969604611397, 0.0005597231793217361, -0.00979538168758154, -0.009715745225548744, 0.01995275169610977, 0.0009547420777380466, -0.01959076337516308, -0.006066910456866026, -0.0024904741439968348, 0.011967306956648827, -0.0018823350546881557, -0.006247904617339373, -0.0021755448542535305, 0.02945130318403244, 0.002063328865915537, 0.010541076771914959, 0.04888279363512993, -0.007022557780146599, -0.003254267619922757, -0.01944596879184246, 0.013046029955148697, -0.009382716380059719, -0.015203475020825863, -0.005610806401818991, 0.002392737427726388, 0.015420667827129364, 0.0008072321652434766, 0.02232738956809044, -0.005259678699076176, 0.004304031375795603, -0.02199436165392399, -0.027655845507979393, -0.010446959175169468, -0.006747447419911623, -0.017505716532468796, -0.011033379472792149, -0.03524310514330864, -0.01374104619026184, -0.028524616733193398, -0.0007651511114090681, -0.043235789984464645, 0.00725784944370389, 0.013096707873046398, -0.020285779610276222, -0.020401615649461746, -0.008977290242910385, 0.007703094277530909, -0.003399062668904662, 0.003207209287211299, 0.01530483178794384, -0.019214296713471413, -0.015927450731396675, 0.005060585215687752, -0.026323731988668442, 0.014855967834591866, 0.01895366609096527, -0.0027836840599775314, -0.008419829420745373, -0.025006096810102463, -0.03417162224650383, 0.0033085658214986324, -0.025252249091863632, -0.019373571500182152, 0.006559213623404503, -0.02299344725906849, 0.03530102223157883, 0.01927221566438675, 0.022645939141511917, 0.009636107832193375, -0.016260478645563126, 0.007420743815600872, 0.018664076924324036, -0.027120104059576988, -0.027351776137948036, -0.012358253821730614, -0.0030008764006197453, -0.033563483506441116, 0.013907560147345066, 0.029972566291689873, -0.005089544225484133, 0.007294048555195332, 0.03764669969677925, -0.009295838885009289, -0.01559442188590765, 0.0022569920402020216, -0.012922953814268112, -0.020966317504644394, 0.005317596718668938, -0.007529340218752623, -0.02127038687467575, 0.024687549099326134, -0.017071330919861794, -0.024586191400885582, -0.02292104996740818, -0.0033610539976507425, 8.18431144580245e-05, -0.011192654259502888, -0.003357434179633856, 0.015927450731396675, -0.05823655053973198, -0.034374333918094635, -0.013386297971010208, -0.0059402151964604855, 0.007782731670886278, 0.009114845655858517, 0.014255068264901638, 0.011786313727498055, -0.01918533816933632, 0.008412589319050312, 0.015985367819666862, -0.002474184613674879, 0.01744779758155346, 0.003996341954916716, -0.0029719173908233643, 0.003963763359934092, -0.007826169952750206, -0.007507620844990015, 0.007199931424111128, -0.01895366609096527, -0.005694063380360603, -0.0012705761473625898, 0.022139156237244606, -0.011033379472792149, -0.029219631105661392, 0.028017833828926086, 0.018070416525006294, -0.006374599877744913, -0.0062913428992033005, -0.02894452214241028, -0.002371018286794424, 0.016260478645563126, 0.00048370580771006644, -0.023934613913297653, -0.00432575074955821, 0.026598842814564705, -0.002352918731048703, -0.013965478166937828, 0.04485749080777168, 0.004126657731831074, 0.006979119032621384, 0.012770919129252434, 0.0049230302684009075, -0.007485901936888695, 0.009694025851786137, -0.02034369856119156, 0.008202636614441872, -0.03680688887834549, 0.0012968202354386449, 0.007833410054445267, -0.0018171772826462984, 0.01663694530725479, 0.0064361379481852055, -0.015536503866314888, 0.0008615302504040301, -0.007170972414314747, 0.02109663188457489, 0.0021230566781014204, 0.020560890436172485, 0.009817101061344147, 0.022356348112225533, 0.009368237107992172, 0.005936595145612955, -0.004926649853587151, -0.024600671604275703, -0.0006094964919611812, -0.0010769128566607833, 0.02415180578827858, 0.022153636440634727, 0.00372123159468174, 0.01459533628076315, -0.012025224976241589, 0.003833447815850377, 0.030754458159208298, 0.0015429718187078834, 0.025179851800203323, 0.015826093032956123, 0.01497180387377739, -0.012198979035019875, -0.004944749176502228, -0.024340040981769562, -0.01401615608483553, -0.005017146933823824, 0.00647595664486289, -0.01869303546845913, -0.027163542807102203, -0.006164647173136473, -0.013842402026057243, 0.005697683431208134, 0.005114883650094271, 0.028727328404784203, 0.028090231120586395, 0.01559442188590765, 0.010142889805138111, -0.03978966549038887, 0.06318853795528412, -0.0177084282040596, -0.015333791263401508, -0.0006357405800372362, 0.006736587733030319, 0.00440176809206605, -0.017722908407449722, 0.011590840294957161, -0.013379058800637722, -0.011923868209123611, 0.0032741769682615995, -0.0006221660296432674, -0.003844307269901037, -0.013972718268632889, -0.020908398553729057, -0.027815120294690132, 0.01571025885641575, -0.02224051207304001, 0.007351966109126806, -0.0024470356293022633, 0.0042823124676942825, -0.011482243426144123, -0.02257354184985161, -0.003520328551530838, 0.003241598140448332, -0.002553821774199605, 0.008094040676951408, -0.015029721893370152, 0.001000895514152944, -0.011967306956648827, 0.0005280493060126901, -0.019373571500182152, 0.0056795841082930565, -0.018490321934223175, 0.008173678070306778, -0.009954656474292278, -0.005726642441004515, -0.011655997484922409, -2.5706769520184025e-05, 0.004151996690779924, -0.003415352199226618, -0.015217955224215984, -0.013328379951417446, 0.03538789972662926, -0.013777244836091995, -0.0035167087335139513, -0.005140222609043121, -0.006606271956115961, -0.007109434809535742, -0.022211553528904915, 0.01418267097324133, -0.019923793151974678, -0.004709457512944937, 0.010142889805138111, 0.01017184928059578, -0.007616217248141766, 0.007142013404518366, 0.02292104996740818, 0.049433015286922455, -0.012937434017658234, -0.02267489768564701, -0.013632449321448803, -0.0013827922521159053, -0.007435223553329706, -0.013987197540700436, -0.004676878452301025, 0.01546410657465458, 0.017476756125688553, -0.0033556241542100906, 0.0018352767219766974, -0.011475004255771637, -0.0019221536349505186, -0.004141137003898621, -0.00421715434640646, -0.014913885854184628, -0.00038529044832102954, 0.004123037680983543, -0.005259678699076176, -0.014378143474459648, 0.0067003886215388775, -0.00558184739202261, -0.012474089860916138, -0.013132906518876553, 0.009071406908333302, 0.014761850237846375, -0.03194177895784378, 0.018070416525006294, -0.0006710343295708299, -0.0002219435991719365, 0.01108405739068985, 0.01372656598687172, 0.001011755084618926, -0.002758344868198037, -0.00500628724694252, 0.014957323670387268, 0.024426916614174843, -0.004159236326813698, -0.01943149045109749, 0.012553727254271507, -0.010229767300188541, 0.0023728280793875456, 0.03159426897764206, 0.023702941834926605, 0.00935375690460205, -0.0034370713401585817, -0.005965554155409336, -0.0016814320115372539, 0.005104023963212967, 0.005513069685548544, 0.0006565548246726394, -0.010620713233947754, -0.030667582526803017, 0.02053193189203739, 0.03657521679997444, -0.03509831055998802, -0.008369151502847672, 0.0012968202354386449, 0.010656911879777908, -0.004919410217553377, -0.014617055654525757, -0.021864045411348343, 0.007250609807670116, -0.011489483527839184, 0.010816186666488647, -0.02704770676791668, 0.016738303005695343, -0.014827008359134197, 0.016998933628201485, 0.008970050141215324, 0.023847736418247223, 0.01344421599060297, 0.018808871507644653, -0.02325407788157463, 0.012618884444236755, -0.005842478480190039, -0.017418839037418365, 0.008767337538301945, -0.010555556043982506, -0.000866960093844682, -0.005900396499782801, -0.003583676414564252, 0.03101509064435959, -3.611391002777964e-05, 0.02390565536916256, -0.003046124940738082, -0.015000762417912483, -0.007420743815600872, -0.004742036573588848, -0.008760097436606884, 0.030667582526803017, 0.018186252564191818, -0.02581694908440113, -0.010244246572256088, -0.00023483940458390862, 0.00626600394025445, 0.004933889955282211, 0.02423868328332901, -0.0022696617525070906, -0.003934804350137711, -0.01736092008650303, -0.011098536662757397, 0.04731900617480278, -0.008086800575256348, 0.008159198798239231, -0.013762765564024448, -0.019257735460996628, -0.011207133531570435, 0.011496723629534245, -0.027163542807102203, 0.020285779610276222, 0.002394547453150153, -0.00038891032454557717, 0.02027130126953125, 0.03376619517803192, -0.0027818740345537663, 0.0060017528012394905, 0.012112102471292019, -0.01109129749238491, 0.005759221501648426, 0.00822435598820448, -0.009056927636265755, 0.00814471859484911, -0.013922039419412613, 0.00637098029255867, -0.007008078042417765, -0.03886298090219498, -0.0051547023467719555, -0.008188157342374325, 0.01488492637872696, 0.018229691311717033, 0.007529340218752623, 0.005820759106427431, -0.03805212676525116, 0.0425407737493515, -0.02292104996740818, 0.009875019080936909, 0.020951837301254272, 0.01307498849928379, 0.01393651869148016, 0.013422496616840363, -0.028669411316514015, 0.001794553129002452, 0.011967306956648827, 0.007674135267734528, 0.004687738139182329, 0.006993598770350218, 0.007963725365698338, -0.01303155068308115, -0.005437052343040705, 0.011590840294957161, -0.00029253115644678473, 0.0010850575054064393, 0.0036108253989368677, 0.0016117494087666273, 0.001014470006339252, 0.001826226944103837, -0.0021773548796772957, -0.019243255257606506, -0.018244169652462006, -0.0023456790950149298, 0.020068587735295296, 0.016173601150512695, -0.006747447419911623, -0.008188157342374325, -0.04931717738509178, 0.004843392875045538, -0.01187319029122591, 0.025266727432608604, 0.005867817439138889, -0.030841335654258728, -0.017751866951584816, 0.009961896575987339, -0.0031402416061609983, 0.007891328074038029, 0.0045176041312515736, -0.02746761217713356, 0.01597088947892189, 0.0010099451756104827, -0.026859473437070847, -0.0008099470287561417, -0.013299421407282352, -0.006023472175002098, -0.013979957439005375, -0.023036886006593704, 0.0025049536488950253, 0.02913275547325611, 0.0008687700028531253, 0.006533874664455652, 0.014218869619071484, 0.0021882145665585995, 0.01563785970211029, 0.011779073625802994, 0.03929736465215683, 0.0020488493610173464, 0.004065119661390781, 0.01836000569164753, 0.002103147329762578, 0.006653330288827419, -0.027901997789740562, -0.0003027120546903461, 0.02218259498476982, 0.024542752653360367, 0.003543857717886567, -0.022689377889037132, -0.015927450731396675, -0.025918304920196533, 0.012843316420912743, 0.015145557001233101, 0.023210639134049416, 0.0004509006976149976, -8.53498640935868e-05, 0.0026443188544362783, -0.025339126586914062, 0.018808871507644653, -0.003295896342024207, -0.0025755411479622126, -0.013502134010195732, -0.01497180387377739, 0.0049230302684009075, -0.0041375174187123775, 0.026569882407784462, -0.013929279521107674, 0.0180414579808712, 0.006570073310285807, -0.008970050141215324, 0.004854252561926842, 0.028423259034752846, -0.0425407737493515, -0.032231368124485016, -0.027409695088863373, 9.00443919817917e-05, -0.02390565536916256, 0.006888622418045998, -0.019489407539367676, -0.005567368119955063, -0.03324493393301964, -0.013914800249040127, 0.0021302965469658375, 0.03515622764825821, -0.005335696041584015, 0.0019855014979839325, -0.013299421407282352, -0.00382620794698596, -0.058207590132951736, -0.010446959175169468, -0.024021491408348083, 0.0076306965202093124, -0.0020379896741360426, 0.012039704248309135, -0.014284026809036732, 0.027930956333875656, 0.011677716858685017, 0.03133364021778107, 0.0008402634994126856, -0.046276483684778214, 0.012843316420912743, 0.0064940559677779675, 0.014479500241577625, -0.022312909364700317, -0.03087029419839382, -0.0018144623609259725, -0.007109434809535742, 0.04161408543586731, -0.008796296082437038, -0.02169029228389263, -0.027728242799639702, -0.00036492865183390677, -0.01728852279484272, -0.011127496138215065, -0.03480871766805649, 0.0007099480135366321, -0.008028882555663586, -0.0008348337141796947, 0.013907560147345066, -0.0398765429854393, 0.006501295603811741, 0.025092974305152893, -0.010570035316050053, 0.015695778653025627, 0.02532464638352394, -0.021907484158873558, 0.004343850072473288, 0.02690291218459606, -0.011757354252040386, -0.027264898642897606, -0.03837067633867264, -0.017476756125688553, -0.005820759106427431, -0.0034533608704805374, 0.012640603817999363, -0.026526445522904396, 0.010562795214354992, -0.015941929072141647, 0.006490435916930437, 0.021719250828027725, 0.006237044930458069, -0.026743637397885323, 0.0008257839945144951, 0.01662246696650982, 0.021864045411348343, -0.013929279521107674, 0.004600861109793186, -0.000507235003169626, -0.018837830051779747, 0.046305444091558456, 0.0257300715893507, 0.004687738139182329, 0.004999047610908747, 0.007413504179567099, -0.04847736656665802, 0.013487654738128185, 0.02415180578827858, -0.017100289463996887, -0.007348346523940563, -0.01452293898910284, 0.03990550339221954, -0.02449931390583515, -0.01630391739308834, -0.010968221351504326, 0.02109663188457489, -0.029147233814001083, 0.0053031169809401035, 0.021125590428709984, -0.00013359601143747568, -0.01919981837272644, 0.012807117775082588, 0.010345603339374065, 0.01977899670600891, 0.007116674445569515, 0.01374104619026184, -0.011257811449468136, 0.017230605706572533, -0.0037610502913594246, -0.007797210942953825, 0.037936292588710785, -0.012691281735897064, 0.01208314299583435, 0.004622580483555794, -0.00018597109010443091, 0.024542752653360367, 0.0016235139919444919, -0.008665980771183968, -0.015623381361365318, -0.00569044379517436, 0.0041375174187123775, 8.39358544908464e-05, -0.006910341791808605, -0.01653558947145939, 0.006023472175002098, 0.020314740017056465, -0.009107605554163456, -0.0017782635986804962, 0.011105776764452457, 0.012799878604710102, 0.0022461325861513615, -0.007286808453500271, 0.011286770924925804, -0.012379973195493221, -0.0022407027427107096, -0.030291114002466202, -0.01501524168998003, -0.01096098218113184, 0.005994513165205717, -0.02283417247235775, 0.005925735458731651, -0.006222565192729235, -0.012474089860916138, -0.00029434109455905855, 0.0006633421289734542, -0.004416247829794884, 0.011894909664988518, 0.006928441114723682, -0.011062338016927242, -0.0022461325861513615, -0.0027601546607911587, -0.007344726473093033, -0.00500628724694252, 0.022718336433172226, 0.019996190443634987, 0.006848803721368313, -0.007920286618173122, 0.0013076799223199487, 0.014341944828629494, -0.007297668140381575, 0.006037951447069645, 0.0009520271560177207, -0.0029429583810269833, -0.015203475020825863, -0.008955570869147778, -0.007420743815600872, 0.058873649686574936, 0.0055637480691075325, 0.0047203171998262405, 0.002242512535303831, 0.00744246318936348, -0.019793476909399033, -0.0012579065514728427, 0.0322892852127552, 0.02141518145799637, 0.0024633249267935753, 0.007674135267734528, -0.005567368119955063, -0.00560718635097146, -0.014624295756220818, -0.019069502130150795, 0.02655540406703949, 0.0034497410524636507, 0.026077579706907272, -0.0006805364973843098, 0.015999848023056984, 0.020459534600377083, 0.003075083950534463, -0.01050487719476223, 0.015160037204623222, 0.002866941038519144, 0.03092821314930916, -0.0050388663075864315, 0.008296753279864788, 0.0016488530673086643, 0.0135310934856534, -0.0057990397326648235, -0.006591792684048414, -0.012503048405051231, -0.007992683909833431, 0.009990855120122433, 0.018895747140049934, -0.007963725365698338, 0.01480528898537159, -0.005831618793308735, 0.01572473719716072, -0.004944749176502228, 0.006602652370929718, 0.005542028695344925, 0.003386393189430237, 0.0037320912815630436, 0.0021755448542535305, -0.004698597826063633, 0.003945664037019014, 0.007789971306920052, -0.009455113671720028, -0.022732814773917198, -0.0010045153321698308, -0.005064205266535282, 0.012510288506746292, 0.0020126504823565483, -0.003167390823364258, 0.01967764087021351, 0.00723613053560257, 0.007055136375129223, 0.0031420516315847635, -0.02166133187711239, 0.015753695741295815, -0.025020577013492584, -0.022805213928222656, 0.0032796068117022514, -0.013922039419412613, -0.008325712755322456, 0.0052415793761610985, 0.008694940246641636, 0.014986283145844936, -0.007999924011528492, 0.023717422038316727, 0.0051004039123654366, -0.00489769084379077, -0.0022407027427107096, 0.010627953335642815, -0.01286503579467535, -5.687163138645701e-05, 0.019576285034418106, 0.0010054203448817134, -0.004738416522741318, 0.00558184739202261, -0.017737388610839844, -0.015362749807536602, 0.011699436232447624, 0.004289552103728056, 0.03466392308473587, -0.014363664202392101, 0.014131992124021053, -0.025845907628536224, -0.028973480686545372, -0.007797210942953825, 0.0011981786228716373, 0.022124676033854485, -0.0014208009233698249, 0.0018750953022390604, -0.015406188555061817, 0.01854824088513851, 0.01473289169371128, 0.0013321139849722385, -0.012879515998065472, 0.013502134010195732, -0.009751943871378899, 0.008919372223317623, 0.016028806567192078, -0.013306660577654839, 0.016854139044880867, 0.015188995748758316, -0.02431108057498932, 0.009252401068806648, 0.007956485264003277, -0.020821521058678627, -0.013538332656025887, -0.004857872612774372, -0.0143129862844944, 0.01712924987077713, 0.02058984898030758, -0.010237006470561028, -0.03298430144786835, -0.018895747140049934, 0.023355433717370033, -0.001141165615990758, 0.017433319240808487, 0.01224241778254509, -0.00269861682318151, 0.001647043158300221, -0.009339277632534504, -0.02051745168864727, -0.012988111935555935, 0.003833447815850377, 0.01530483178794384, -0.010410760529339314, 0.005849718116223812, 0.021212467923760414, 0.014363664202392101, -0.012061423622071743, 0.007138393819332123, -0.024441396817564964, 0.02455723285675049, -0.012966392561793327, -0.010758268646895885, 0.012691281735897064, -0.0007343821343965828, 0.01961972378194332, 0.01145328488200903, 0.021053193137049675, 0.0050135268829762936, -0.005028006620705128, 0.008253315463662148, 0.009628867730498314, 0.01696997508406639, -0.017838744446635246, -0.005730262491852045, -0.014855967834591866, 0.00284522189758718, 0.006935680750757456, -0.0240649301558733, 0.0021520156878978014, -0.01517451647669077, -0.02208123728632927, 0.009129324927926064, 0.006707628723233938, -0.0028054032009094954, 0.001765594119206071, -0.0066135115921497345, 0.016651425510644913, 0.02532464638352394, 0.02323959767818451, 0.01802697777748108, -0.014045115560293198, 0.002953818067908287, 0.018055936321616173, 0.011822512373328209, -0.018403444439172745, 0.0108017073944211, 0.0031583409290760756, -0.000627143366727978, 0.00022307480685412884, -0.03034903295338154, 0.0059402151964604855, 0.01282159797847271, -0.0015927450731396675, -0.00025339124840684235, 0.0016841469332575798, 0.003670553443953395, -0.012198979035019875, -0.0040216813795268536, 0.01009221188724041, -0.009867779910564423, 0.004445206839591265, 0.005520309321582317, 0.015145557001233101, 0.003913084976375103, -0.0008542904979549348, -0.01365416869521141, 0.004275072365999222, 0.014088554307818413, 0.020227862522006035, 0.0056216660887002945, 0.0010153750190511346, -0.00019083528604824096, 0.005172801669687033, 0.002394547453150153, -0.009549230337142944, -0.01985139586031437, -0.0026949970051646233, -0.023152722045779228, -0.01836000569164753, -0.017737388610839844, 0.002300430554896593, -0.05890260636806488, -0.02381877787411213, 0.013567292131483555, -0.0020995275117456913, -0.011286770924925804, 0.008043362759053707, 0.005132982973009348, -0.01712924987077713, 0.03582228347659111, 0.0011176364496350288, -0.007963725365698338, 0.00822435598820448, 0.00893385149538517, -0.008094040676951408, -0.006704008672386408, 0.012437891215085983, 0.005726642441004515, -0.0009049687650986016, 0.01695549488067627, -0.005545648746192455, 0.03431641682982445, -0.021545495837926865, 0.00034049450187012553, 0.0038515471387654543, 0.007580018602311611, 0.01588401198387146, 0.021212467923760414, -0.015782656148076057, 0.028350861743092537, -0.011648758314549923, -0.005415332969278097, 0.00844154879450798, 0.0017583543667569757, 0.0017610692884773016, 0.015826093032956123, -0.0020397996995598078, 0.005219860002398491, -0.0015945549821481109, -0.004065119661390781, -2.3896831407910213e-05, 0.0211690291762352, -0.0060560512356460094, 0.008412589319050312, 0.0053031169809401035, 0.019721079617738724, 0.004083218984305859, 0.006885002367198467, 0.0033375248312950134, 0.02845221757888794, -0.00723613053560257, 0.02001066878437996, 0.015855053439736366, -0.018562719225883484, 0.0008954665972851217, 0.017085811123251915, 0.013103947974741459, -0.006711248308420181, 0.001211753231473267, -0.019127419218420982, -0.009730224497616291, 0.01630391739308834, 0.011265051551163197, 0.004564662463963032, 0.005589087028056383, 0.0031076627783477306, -0.002729385858401656, 0.01382068358361721, -0.007768251933157444, 0.014117512851953506, 0.016173601150512695, -0.004376429133117199, 0.00440176809206605, 0.005961934104561806, -0.015319311060011387, 0.004760135896503925, -0.024803385138511658, -0.0024669449776411057, 0.0047782352194190025, -0.0033936328254640102, 0.004159236326813698, -4.4371750846039504e-05, -0.018490321934223175, 0.02787303738296032, 0.009730224497616291, -0.016651425510644913, 0.004430727101862431, -0.0003866479091811925, 0.014117512851953506, 0.009990855120122433, -0.004919410217553377, -0.009259640239179134, -0.0030262155923992395, -0.007073236163705587, -0.026193415746092796, 0.020488493144512177, 0.007833410054445267, -0.0003375533560756594, -0.016665905714035034, 0.006718488410115242, 0.02787303738296032, 0.01372656598687172, -0.006917581427842379, -0.011055098846554756, 0.016086725518107414, -0.005266918335109949, -0.017389880493283272, 0.002137536182999611, 0.006823464762419462, -0.008984530344605446, -0.012017985805869102, -0.00539723364636302, -0.002624409506097436, -0.007301288191229105, 0.016014328226447105, -0.0055347890593111515, 0.006631611380726099, 0.015695778653025627, 0.02127038687467575, 0.009563709609210491, -0.004557422827929258, 0.004890451207756996, -0.014045115560293198, -0.004680498503148556, -0.011018900200724602, 0.01216278038918972, 0.01315462589263916, -0.010932022705674171, -0.0029664875473827124, -0.012148301117122173, 0.0049519892781972885, -0.004803574178367853, -0.010823426768183708, 0.005838858429342508, -0.003704942064359784, 0.014124752953648567, 0.03417162224650383, 0.023384392261505127, -0.01374104619026184, 0.007127534132450819, 0.020966317504644394, 0.008253315463662148, -0.012930193915963173, 0.028582533821463585, -0.009976375848054886, -0.018157294020056725, -0.012097622267901897, -0.014841487631201744, 0.0009900358272716403, -0.017592592164874077, 0.009201722219586372, -0.01721612550318241, 0.017418839037418365, -0.003739330917596817, -0.0027999733574688435, -0.007435223553329706, 0.01452293898910284, -0.007688614539802074, 0.031044049188494682, 0.0009266880224458873, 0.0033682938665151596, 0.003971002995967865, -0.01662246696650982, 0.011156454682350159, -0.011945587582886219, 0.00930307898670435, -0.004133897367864847, 0.012401692569255829, 0.009918457828462124, 0.0015031531220301986, 0.01451569888740778, 0.03625666722655296, -0.010425240732729435, -0.01893918588757515, 0.003779149614274502, 0.0125320078805089, 0.012604405172169209, 0.011750114150345325, 0.0023547287564724684, 0.006381839979439974, 0.011011660099029541, -0.0034225918352603912, 0.02722145989537239, 0.0069610197097063065, 0.00979538168758154, -0.0016162742394953966, 0.00161808414850384, -0.015550983138382435, 0.0143129862844944, -0.00053755147382617, -0.023702941834926605, 0.003833447815850377, 0.0030189757235348225, -0.00647595664486289, 0.00844154879450798, -0.0012126581277698278, -0.0076306965202093124, 0.0031130926217883825, 0.030899254605174065, 0.02200883999466896, -0.0009189957636408508, 0.004550183191895485, 0.009940177202224731, -0.010331123135983944, 0.00284522189758718, -0.005531169008463621, -0.018736474215984344, 0.030551746487617493, -0.021140070632100105, 0.004944749176502228, 0.00705151678994298, 0.02109663188457489, -0.0012217079056426883, 0.010577275417745113, 0.0003642499214038253, 0.0002563323942013085, 0.014928365126252174, 0.016897577792406082, 0.0068741426803171635, -0.010164609178900719, 0.0076306965202093124, -0.017071330919861794, -0.011648758314549923, 0.032723672688007355, 0.007681374903768301, -0.021212467923760414, -0.009281359612941742, 0.03382411226630211, -0.03550373390316963, -0.015522024594247341, 0.030638622120022774, 0.0013158245710656047, -0.017505716532468796, 0.006895862054079771, 0.013979957439005375, 0.010150129906833172, 0.015362749807536602, 0.004590001422911882, 0.016101203858852386, -0.008086800575256348, -0.031565312296152115, -0.010258725844323635, 0.022892089560627937, 0.0028759906999766827, 0.007493141572922468, -0.01769394986331463, -0.01315462589263916, -0.0023601585999131203, 0.03498247265815735, 0.01828760839998722, -0.012300335802137852, 0.010613474063575268, 0.00210857717320323, -0.009875019080936909, 0.010903064161539078, -0.016839658841490746, 0.0037357110995799303, 0.0029176194220781326, -0.008492226712405682, -0.0019076741300523281, 0.0002090477937599644, 0.00011798530613305047, -0.004246113356202841, 0.003513088682666421, -0.010859625414013863, -0.011511202901601791, 0.0032397881150245667, -0.0007085905526764691, -0.0029737274162471294, 0.011257811449468136, -0.0012977252481505275, -0.005715782754123211, -0.006678669713437557, -0.007192691788077354, 0.015753695741295815, 0.026656759902834892, -0.005462391301989555, -0.026251334697008133, 0.02127038687467575, 0.02027130126953125, 0.014218869619071484, -0.001855185953900218, -0.005408093333244324, 0.0041954354383051395, -0.006439757999032736, 0.006725728046149015, -0.0018569959793239832, -2.736116584856063e-05, 0.03614083305001259, 0.004130277317017317, 0.005458771716803312, -0.0007158303051255643, -0.006856043357402086, -0.002693186979740858, 0.02058984898030758, 0.013270461931824684, 0.006063290871679783, -0.008694940246641636, 0.016839658841490746, 0.014580857008695602, 0.011836991645395756, 0.012025224976241589, 0.011815272271633148, 0.0057085431180894375, 0.004767375532537699, -0.02125590667128563, 0.0176070723682642, 0.0007045181700959802, 0.02654092386364937, -0.0027474851813167334, 0.0098026217892766, 0.013400777243077755, 0.005523929372429848, -0.006783646065741777, -0.011366407386958599, -0.010627953335642815, 0.011779073625802994, 0.01451569888740778, 0.0021013375371694565, -0.0007384545169770718, 0.005458771716803312, -0.03695168346166611, 0.010446959175169468, -0.0028017833828926086, 0.00814471859484911, -0.02034369856119156, 0.005733882077038288, 0.009332038462162018, -0.015478585846722126, 0.026569882407784462, -0.0005144747556187212, 0.002785493852570653, -0.00694654043763876, 0.037675660103559494, -0.012908474542200565, -0.009107605554163456, -0.01928669400513172, -0.025874868035316467, 0.007073236163705587, -0.0038008687552064657, -0.0018045076867565513, -0.015116598457098007, 0.006751067005097866, 0.015478585846722126, 0.015203475020825863, 0.014486740343272686, -0.008195397444069386, -0.020416095852851868, -0.005719402804970741, 0.003704942064359784, 0.015029721893370152, -0.011127496138215065, -0.025179851800203323, -0.007178212516009808, 0.016941014677286148, -0.0028054032009094954, 0.006034331861883402, 0.001873285393230617, -0.003942043986171484, -0.008050601929426193, 0.020908398553729057, -0.006302202586084604, 0.00017465896962676197, -0.011569120921194553, 0.00382620794698596, 0.008904892951250076, 0.002184594515711069, 0.007761012297123671, 0.005665104370564222, 0.011525682173669338, -0.007207171525806189, 0.007040657103061676, -0.01712924987077713, 0.005657864734530449, 0.009151044301688671, 0.019344612956047058, 0.023949094116687775, -0.02308032289147377, 0.012582685798406601, -0.015826093032956123, -0.030725499615073204, 0.006823464762419462, -0.0036090153735131025, -0.01902606338262558, -0.0023492989130318165, 0.0035818663891404867, -0.0062913428992033005, -0.009527510963380337, -0.014588097110390663, -0.017172686755657196, -0.022950008511543274, -0.0016606176504865289, -0.00822435598820448, -0.012423411011695862, 0.01394375879317522, -0.01079446729272604, -0.006957400124520063, 0.007228890433907509, -0.01744779758155346, 0.0060017528012394905, -0.027178023010492325, -0.008267794735729694, 0.015348270535469055, 0.014609815552830696, -0.006841564085334539, -0.005031626205891371, -0.0022624218836426735, 0.016665905714035034, 0.01702789217233658, 0.012351013720035553, -0.010816186666488647, -0.015681298449635506, -0.02341335266828537, -0.010331123135983944, -0.0021248667035251856, -0.006924821063876152, -0.013994436711072922, 0.009607148356735706, 0.007142013404518366, 0.015536503866314888, -0.0059112561866641045, -0.008962810970842838, -0.0048071942292153835, 6.866450712550431e-05, -0.027583448216319084, 0.01273472048342228, -0.016897577792406082, -0.019706599414348602, 0.003100423142313957, 0.005064205266535282, -0.02053193189203739, -0.005234339274466038, -0.006016232538968325, -0.0031692006159573793, 0.007471422199159861, 0.006627991329878569, -0.010570035316050053, 0.010917543433606625, -0.01352385338395834, -0.00793476589024067, 0.00510764354839921, -0.01762155257165432, 0.011076818220317364, -0.006229804828763008, 0.012553727254271507, -0.0014135611709207296, 0.005205380264669657, 0.006103109568357468, -0.0320865735411644, -0.007094955071806908, -0.010598993860185146, 0.005842478480190039, -0.030320074409246445, 0.004637060221284628, 0.004409007728099823, 0.01001257449388504, -0.008390870876610279, 0.013082228600978851, 0.0123654929921031, 0.013205304741859436, -0.021950922906398773, -0.011330208741128445, 0.006834323983639479, -0.010150129906833172, -0.01345145609229803, 0.00993293710052967, -0.02044505439698696, -0.014407102949917316, -0.02638164907693863, 0.007037037052214146, -0.04949093237519264, 0.008079561404883862, 0.005328455939888954, -0.02764136716723442, -0.0009981805924326181, -1.4281538824434392e-05, 0.014899405650794506, -0.004513984080404043, -0.022732814773917198, -0.009085886180400848, -0.006200846284627914, -0.027742723003029823, -0.01919981837272644, 0.011409846134483814, 0.0005710353143513203, 0.003348384518176317, 0.01630391739308834, -0.021053193137049675, -0.004666019231081009, -0.004361949395388365, -0.015449627302587032, -0.008094040676951408, -0.018403444439172745, 0.0005615331465378404, -0.007710333913564682, 0.008608062751591206, -0.01539170928299427, 0.034287456423044205, 0.0017728338716551661, 0.014986283145844936, -0.004452446475625038, -0.001459714607335627, -6.758985546184704e-05, -0.005473250988870859, -0.00844154879450798, -0.018895747140049934, -0.010208047926425934, 0.026787076145410538, -0.004347470123320818, -0.0019800716545432806, -0.0011773643782362342, -0.006323921959847212, 0.007113054394721985, -0.005473250988870859, 0.004173716064542532, 0.025759031996130943, -0.006794505752623081, -0.007069616112858057, 0.016347356140613556, -0.010490397922694683, 0.004959228914231062, 0.012973632663488388, 0.0032633175142109394, 0.0008058747043833137, -0.0032053994946181774, -0.01352385338395834, -0.0015692159067839384, 0.008086800575256348, -0.00696825934574008, -0.0022551822476089, 0.01586953178048134, 0.00045022196718491614, -0.021719250828027725, 0.0005610806401818991, 0.0028126430697739124, 0.021082153543829918, -0.010613474063575268, -0.006675049662590027, 0.013987197540700436, -0.009462353773415089, -0.001818082295358181, -0.004412627778947353, -0.01613016426563263, 0.020387137308716774, -0.01581161469221115, -0.006168267223984003, -0.009875019080936909, 0.01179355289787054, 0.0014416152844205499, 0.007500381208956242, 0.0033791533205658197, 0.00023370818234980106, 0.009940177202224731, -0.011648758314549923, 0.00039207772351801395, -0.01501524168998003, -0.00558546744287014, -0.009440634399652481, 0.007674135267734528, 0.000310178060317412, 0.0047492762096226215, 0.021067673340439796, -0.014363664202392101, -0.023225119337439537, 0.0017230605008080602, 0.0012796258088201284, -0.023456791415810585, 0.010490397922694683, 0.007395404856652021, -0.006099489517509937, 0.025527359917759895, -0.0019583525136113167, 0.011272290721535683, -0.042309101670980453, -0.0018823350546881557, -0.013473175466060638, -0.007094955071806908, 0.04749276116490364, -0.0022334628738462925, 0.02035817690193653, 0.002658798359334469, 0.01315462589263916, 0.001578265568241477, -0.027250420302152634, -0.013914800249040127, 0.01951836608350277, -0.00016821107419673353, 0.02483234368264675, 0.005317596718668938, -0.0034425011835992336, 0.0023456790950149298, 0.012300335802137852, 0.02076360397040844, 0.009411674924194813, 0.007449702825397253, 0.00015305283886846155, 0.0011692196130752563, -0.008571864105761051, 0.02035817690193653, 0.019344612956047058, 0.015652339905500412, 0.03011736087501049, 0.0070189377292990685, -0.019257735460996628, 0.008166437968611717, 0.003006306244060397, 0.002023510169237852, -0.000865602632984519, 0.0017330151749774814, -0.015044201165437698, 0.004933889955282211, -0.013284941203892231, 0.006063290871679783, 0.0015474966494366527, -0.0017122009303420782, -0.020502973347902298, -0.010555556043982506, -0.014855967834591866, -0.010541076771914959, 0.0036850329488515854, 0.0037863892503082752, 0.0009149234392680228, -0.009541991166770458, -0.0029918267391622066, 0.02035817690193653, -0.015275873243808746, -0.006714868359267712, 0.0007615312351845205, 0.0024253162555396557, 0.002474184613674879, -0.0046623991802334785, 0.0030244055669754744, -0.034374333918094635, 0.01944596879184246, 0.013922039419412613, -0.01373380608856678, 0.008390870876610279, -0.00814471859484911, 0.009969135746359825, -0.006751067005097866, -0.018258649855852127, -0.008615302853286266, 0.020908398553729057, -0.012893995270133018, -0.006541114300489426, -0.006273243576288223, 0.026787076145410538, 0.0047782352194190025, -0.003728471463546157, 0.003923944663256407, -0.013096707873046398, 0.0035565271973609924, 0.0021357263904064894, 0.01497180387377739, -0.0031891099642962217, 0.0035691969096660614, -0.023529188707470894, 0.004503124859184027, 0.012191738933324814, 0.0006665094988420606, -0.014262308366596699, 0.00363073474727571, -0.021053193137049675, -0.002785493852570653, 0.02208123728632927, 0.011728395707905293, 0.0022569920402020216, 0.011590840294957161, 0.007710333913564682, -0.04340954124927521, -0.012141061015427113, -0.0030533645767718554, 0.009665066376328468, 0.006356500554829836, -0.00560718635097146, -0.01885231025516987, -0.024021491408348083, 0.012046944350004196, -0.0028017833828926086, -0.0057085431180894375, 0.02614997699856758, 0.016318397596478462, 0.0012551917461678386, 0.016202561557292938, -0.008883173577487469, 0.005252438597381115, -0.011344688944518566, 0.011228852905333042, -0.0019619723316282034, -0.015333791263401508, -0.015116598457098007, 0.004666019231081009, -0.023876696825027466, -0.005516689736396074, -0.014566377736628056, -0.02490474097430706, -0.003243408165872097, -0.04117969796061516, -0.001396366860717535, -0.009194483049213886, -0.0027130963280797005, -0.0017818835331127048, -0.003266937332227826, 0.008774577639997005, 0.0017266804352402687, 0.00012443320883903652, 0.003974623046815395, -0.005838858429342508, -0.014754611067473888, -0.024209724739193916, -0.017433319240808487, -0.00852118618786335, 0.007645176257938147, 0.010953742079436779, 0.005951074883341789, -0.014740131795406342, -0.008535665459930897, -0.023355433717370033, 0.007645176257938147, 0.015927450731396675, -0.008897652849555016, 0.011149215511977673, -0.0009719364461489022, -0.002582780783995986, 0.010736549273133278, -0.0267291571944952, -0.0066098920069634914, 0.005661484785377979, -0.023196158930659294, 0.005093164276331663, 0.007507620844990015, 0.027858559042215347, 0.0025918306782841682, -0.012336534447968006, -0.019257735460996628, -0.015232434496283531, 0.003109472803771496, 0.006743827369064093, -0.007587258238345385, 0.018186252564191818, 0.027684804052114487, 0.018229691311717033, -0.008687700144946575, -0.007149253506213427, -0.0088542141020298, 0.0012787209125235677, 0.000990940839983523, -0.00736282579600811, -0.015449627302587032, 0.0016316587571054697, 0.0028868503868579865, -0.004141137003898621, 8.382273517781869e-05, 0.014711172319948673, -0.003927564714103937, -0.0020904778502881527, -0.006751067005097866, 0.011272290721535683, -0.0018986244685947895, -0.0008067796588875353, -0.009165523573756218, 0.007471422199159861, -0.003923944663256407, -0.0049230302684009075, 0.031391557306051254, 0.02292104996740818, 0.033882029354572296, -0.02738073468208313, -0.0015701208030804992, -0.016680384054780006, 0.004369189031422138, -0.01539170928299427, -0.022703856229782104, 0.017274044454097748, 0.002195454202592373, 0.0038696464616805315, 0.022385308519005775, -0.004463306162506342, -0.0022099337074905634, -0.000657459837384522, 0.005252438597381115, -0.016767261549830437, -0.0021483958698809147, -0.0007122104289010167, 0.007514860946685076, 0.00510764354839921, -0.029393386095762253, 0.024803385138511658, 0.0007334771798923612, 0.0049809482879936695, 0.014783569611608982, 0.001976451836526394, 0.01613016426563263, -0.007695854641497135, 0.015116598457098007, 0.0004651539493352175, 0.0007094955071806908, -0.014551897533237934, -0.00453208340331912, -0.022863131016492844, 0.015840573236346245, -0.008760097436606884, -0.004590001422911882, -0.04459686204791069, -0.0024379859678447247, -0.0014778140466660261, 0.021053193137049675, 0.013176345266401768, 0.02541152387857437, 0.010063252411782742, 0.027511050924658775, -0.007109434809535742, 0.0016823369078338146, -0.00843430869281292, -0.008332952857017517, 0.0032904664985835552, 0.019822435453534126, 0.0029049497097730637, -0.010490397922694683, 0.010410760529339314, -0.035185184329748154, -0.0007294048555195332, 0.0012687662383541465, 0.0015266822883859277, -0.013103947974741459, -0.00988225918263197, 0.0036144452169537544, -0.006924821063876152, 0.027337295934557915, -0.0082388361915946, -0.007301288191229105, 0.007587258238345385, -0.0024904741439968348, -0.00815195869654417, 0.001352023333311081, -0.009491312317550182, -0.014718412421643734, 0.009614388458430767, -0.011257811449468136, -0.00011436542990850285, -0.002977347234264016, -0.01944596879184246, -0.025006096810102463, 0.007254229858517647, 0.005574607755988836, 0.020068587735295296, 0.01196006778627634, 0.007608977612107992, 0.00597641384229064, 0.007978204637765884, 0.03738607093691826, 0.004238873720169067, 0.010932022705674171, 0.001760164275765419, -0.009585428982973099, 0.0051257433369755745, 0.011489483527839184, -0.008325712755322456, 0.013589011505246162, 0.008709419518709183, -0.00686690304428339, -0.02266041748225689, 0.00489769084379077, 0.004770995583385229, 0.003549287561327219, -0.005205380264669657, 0.0013312090886756778, 0.02118350937962532, -0.0004637964884750545, -0.006740207318216562, 0.021299345418810844, 0.010041533969342709, -0.002980967052280903, -0.010027053765952587, 0.000632573151960969, 0.007192691788077354, -0.019793476909399033, 0.014255068264901638, 0.002664227969944477, 0.0004081409133505076, -0.0196052435785532, 0.013560052029788494, -0.015695778653025627, 0.013299421407282352, 0.02985673025250435, -0.00432575074955821, 0.0006520299939438701, 0.006823464762419462, 0.009527510963380337, 0.011880430392920971, -0.01812833361327648, -0.01257544569671154, 0.016593506559729576, 0.0006122113554738462, -0.002722145989537239, 0.009875019080936909, 0.009418915025889874, 0.007724813651293516, -0.005513069685548544, -0.02622237615287304, 0.004285932052880526, 0.0004264665476512164, 0.008593583479523659, 0.012785399332642555, 0.0088542141020298, 0.007449702825397253, -0.017274044454097748, -0.0035348080564290285, -0.0028470316901803017, 0.011272290721535683, 0.011721155606210232, -0.011800792999565601, -0.011699436232447624, 0.028568053618073463, -0.020647767931222916, 0.00025406997883692384, -0.0029701075982302427, -0.004886831622570753, -0.009107605554163456, 0.0027601546607911587, -0.001409941352903843, 0.009237920865416527, 0.012379973195493221, 0.011409846134483814, 0.007033417467027903, -0.0076017375104129314, -0.016941014677286148, 0.008825255557894707, 0.009853299707174301, -0.007536579854786396, 0.023760860785841942, -0.002613549819216132, 0.012647843919694424, 0.012966392561793327, 0.010541076771914959, -0.008702179417014122, -0.006819844711571932, -0.007753772661089897, 0.0024578950833529234, 0.004503124859184027, 0.0010443339124321938, -0.007565538864582777, -0.009056927636265755, -0.02276177518069744, 0.005744741763919592, -0.019967231899499893, -0.004452446475625038, -0.02837982028722763, 0.00393118429929018, -0.02257354184985161, 0.036517299711704254, 0.022139156237244606, -0.008796296082437038, 0.02407940849661827, 0.009954656474292278, 0.013176345266401768, 0.02118350937962532, -0.012546487152576447, 0.007170972414314747, 0.01418267097324133, -0.016173601150512695, -0.016028806567192078, -0.015058680437505245, 0.0034081123303622007, -0.007616217248141766, -0.013458695262670517, -0.0009027063497342169, 0.0009090411476790905, -0.011301250196993351, 0.014711172319948673, -0.04393080249428749, -0.023123761638998985, -0.011815272271633148, -0.0009375476511195302, -0.015348270535469055, 0.0029103795532137156, 0.015623381361365318, -0.008781816810369492, -0.01811385527253151, 0.021965401247143745, 0.00016006635269150138, 0.016752781346440315, -0.0015058680437505245, 0.0017746437806636095, -0.0030533645767718554, -0.0064940559677779675, 0.010237006470561028, -0.009107605554163456, 0.0024361759424209595, 0.02167581208050251, -0.008340192027390003, -0.016767261549830437, 0.018084896728396416, 0.0329553447663784, -0.0133645785972476, -0.02946578338742256, 0.006747447419911623, 0.022226033732295036, -0.009462353773415089, -0.0030768937431275845, 0.010034293867647648, 0.009136565029621124, -0.00694654043763876, -0.009476833045482635, -0.02058984898030758, 0.004557422827929258, 0.024340040981769562, -0.012720241211354733, -0.016593506559729576, 0.010019814595580101, 0.021067673340439796, 0.0011655997950583696, 0.010743789374828339, 0.002103147329762578, -0.008499466814100742, 0.004184575751423836, 0.01497180387377739, -0.008542905561625957, -0.01730300299823284, 0.010331123135983944, 0.014197150245308876, 0.007869608700275421, 0.013118427246809006, -0.004564662463963032, -0.0009619818301871419, -0.025614235550165176, 0.0035040390212088823, -0.002387307584285736, 0.004854252561926842, -0.01150396279990673, 0.009397195652127266, -0.012713001109659672, 0.02225499227643013, -0.012749199755489826, 0.005748361814767122, -0.021400701254606247, -0.00831123348325491, -0.00587143748998642, -0.00843430869281292, 0.013871361501514912, -0.01721612550318241, 0.012177259661257267, -0.004789094906300306, 0.007623456884175539, -0.004933889955282211, 0.027670325711369514, -0.024774424731731415, 0.010656911879777908, -0.00347327021881938, 0.01961972378194332, 0.009817101061344147, -0.024007011204957962, 0.026019662618637085, 0.0014904835261404514, 0.01730300299823284, -0.015188995748758316, 0.0025809709914028645, 0.0059691742062568665, -0.005118503235280514, -0.004231634084135294, -0.008912132121622562, -0.01672382280230522, 0.020155465230345726, -0.011207133531570435, 0.016825178638100624, 0.006599032320082188, -0.022312909364700317, 0.0056216660887002945, -0.006334781646728516, -0.001011755084618926, 0.0009873209055513144, 0.0036162552423775196, 0.008347432129085064, -0.017245085909962654, -0.004600861109793186, 0.008984530344605446, 0.0011113017098978162, 0.04491541162133217, -0.013082228600978851, 0.02092287875711918, -0.031044049188494682, -0.00910036638379097, -0.014052354730665684, 0.0061139692552387714, -0.013248742558062077, -0.020908398553729057, 0.0010841526091098785, -0.004376429133117199, -0.007493141572922468, 0.0160432867705822, 0.021328303962945938, 0.007402644492685795, 0.0050135268829762936, -2.7559126465348527e-05, -0.0023221499286592007, 0.00034841298474930227, 0.024368999525904655, 0.005161941982805729, -0.0018750953022390604, -0.02432556077837944, -0.021067673340439796, 0.01820073276758194, 0.018157294020056725, 0.012727481313049793, -0.00831123348325491, 0.0025755411479622126, 0.017911141738295555, -0.0022696617525070906, 0.002711286535486579, -0.014501219615340233, -0.006805364973843098, 0.016912056133151054, 0.013009831309318542, 0.012329294346272945, 0.007992683909833431, 0.0007370970561169088, -0.008484987542033195, -0.03069654107093811, 0.003346574492752552, 0.003046124940738082, 0.018302088603377342, -0.010027053765952587, -0.007080475799739361, -0.004832533188164234, -0.006736587733030319, -0.03249200060963631, 0.007065996062010527, -0.0028253125492483377, -0.017751866951584816, -0.017274044454097748, -0.014827008359134197, 0.01985139586031437, 0.005194520577788353, 0.0023782579228281975, -0.00831123348325491, -0.01009945198893547, -0.0167093425989151, -0.009636107832193375, 0.004130277317017317, 0.010837906040251255, 0.003299516160041094, -0.009759183041751385, -0.0019746418111026287, -0.0075438194908201694, -0.010830665938556194, 0.007522100582718849, -0.0051004039123654366, 0.007196311838924885, 0.002352918731048703, 0.006877762731164694, -0.01597088947892189, -0.008260554634034634, -0.009418915025889874, -0.017100289463996887, 0.020807042717933655, -0.026671240106225014, -0.02199436165392399, -0.006979119032621384, -0.011547401547431946, -0.012597165070474148, -0.0016307537443935871, -0.010526596568524837, 0.005466011352837086, 0.010034293867647648, 0.014341944828629494, 0.001799982856027782, -0.004365569446235895, -0.003971002995967865, -0.0280612725764513, -0.0002959247794933617, 0.011728395707905293, 0.017636030912399292, -0.007608977612107992, -0.019503887742757797, -0.004553802777081728, -0.0001309942308580503, 0.019228776916861534, 0.002334819408133626, 0.015319311060011387, -0.02299344725906849, -0.004810813814401627, 0.009527510963380337, -0.0018533760448917747, -0.02184956520795822, -0.0070768557488918304, -0.020778082311153412, 0.0017004363471642137, -0.019228776916861534, 0.0006262384122237563, -0.03243407979607582, 0.03582228347659111, 0.004582761786878109, -0.0005782750668004155, 0.025512879714369774, 0.0177084282040596, 0.008962810970842838, 0.012828837148845196, -0.004857872612774372, 0.00951303169131279, 0.05603566765785217, 0.005516689736396074, -0.022370828315615654, 0.003075083950534463, 0.008861454203724861, 0.0177084282040596, -0.011221612803637981, 0.007225270848721266, -0.0004063309752382338, -0.01977899670600891, 0.005147462245076895, 0.007891328074038029, -0.01686861738562584, -0.01174287497997284, 0.004658779129385948, -0.012488569132983685, 0.01071482989937067, 0.00142261094879359, -0.013885840773582458, 0.014624295756220818, 0.013668647967278957, -0.012792638503015041, 0.01418267097324133, 0.0088035361841321, -0.011858711019158363, -0.00205970904789865, 0.015058680437505245, 0.011692196130752563, -0.008347432129085064, -0.030899254605174065, -0.026946350932121277, 0.009382716380059719, -0.014986283145844936, 0.03199969604611397, -0.00873113889247179, 0.0017565443413332105, -0.011684956960380077, 0.00026447713025845587, -0.004003582056611776, 0.0048651122488081455, 0.003728471463546157, 0.004068739712238312, 0.00411579804494977, -0.0133139006793499, -0.005237959325313568, 0.00482167350128293, 0.0068741426803171635, -0.012148301117122173, -0.016173601150512695, -0.011728395707905293, 0.002190024359151721, 0.002993636764585972, -0.004014441277831793, 0.016521109268069267, 0.0028271223418414593, 0.005628905724734068, -0.006602652370929718, -0.0004341587773524225, 0.015073159709572792, 0.009925697930157185, 0.028321903198957443, 0.01096098218113184, -0.009078647010028362, 0.013567292131483555, -0.015855053439736366, 0.025136413052678108, -0.001649758080020547, 0.01637631468474865, 0.01422610878944397, 0.02067672647535801, -0.026787076145410538, 0.011634279042482376, -0.013835162855684757, 0.019257735460996628, 0.0041085584089159966, 0.0009375476511195302, -0.03133364021778107, -0.022631458938121796, 0.010729310102760792, 0.02894452214241028, -0.009476833045482635, -0.00166514259763062], "49e57753-554b-4cf6-9f91-eef9976e20a8": [-0.012459968216717243, -0.03198104351758957, -0.003606109879910946, 0.023065365850925446, -0.027516335248947144, -0.01846328191459179, -0.007548789959400892, 0.02934342995285988, 0.010138319805264473, 0.03511320427060127, 0.011972284875810146, 0.0015128488885238767, 0.029068678617477417, 0.009327803738415241, 0.04027852788567543, 0.01294765155762434, -0.003449845127761364, 0.0143832266330719, -0.015180004760622978, -0.030360009521245956, 0.022570813074707985, -0.028848879039287567, -0.004715417977422476, 0.006497866474092007, 0.008895071223378181, -0.028216950595378876, -0.02432922087609768, 0.013744429685175419, -0.03656938672065735, -0.013586447574198246, -0.007789196912199259, 0.011161768808960915, -0.0019198241643607616, 0.027997149154543877, 0.007177875842899084, -0.015688294544816017, 0.0005413457402028143, -0.00840738695114851, -0.029947882518172264, 0.01219895388931036, -0.001427847775630653, 0.022502124309539795, 0.0022392224054783583, -0.018133580684661865, -0.018064891919493675, 0.007789196912199259, -0.02747512236237526, -0.006940902676433325, 0.007940310053527355, -0.020015627145767212, 0.010543578304350376, 0.019905725494027138, -0.008833251893520355, 0.02575792744755745, 0.05338416248559952, -0.04365796968340874, 0.006971812341362238, 0.03305257111787796, 0.009849831461906433, -0.05648885294795036, -0.00798152294009924, -0.009520130231976509, 0.02059260383248329, -0.019589761272072792, 0.026128841564059258, 0.0002339678321732208, -0.023697292432188988, 0.0055877529084682465, -0.004711983259767294, 0.027131682261824608, -0.020194215700030327, 0.001303351134993136, -0.03629463538527489, -0.011003786697983742, 0.05349406227469444, -0.0013969382271170616, 0.03104688785970211, 0.02617005445063114, 0.03854759782552719, -0.04184461012482643, 0.035882510244846344, 0.004389150533825159, 0.03461865335702896, 0.029645657166838646, 0.04176218435168266, 0.035662706941366196, -0.037668392062187195, -0.04352059215307236, -0.03797061741352081, -0.02746138535439968, 0.010715297423303127, 0.025936516001820564, -0.00477380258962512, 0.03255802020430565, 0.008489812724292278, -0.018009942024946213, 0.019837038591504097, 0.005189363844692707, -0.005718259606510401, -0.03225579485297203, -0.0033416617661714554, -0.0011419347720220685, 0.008627188391983509, 0.015908095985651016, 0.023092839866876602, 0.0074320207349956036, 0.011608239263296127, 0.013936755247414112, 0.002081240527331829, 0.005584318656474352, -0.013923018239438534, -0.03533300757408142, 0.015413543209433556, 0.0052443137392401695, -0.007363332901149988, -0.023450016975402832, -0.051763128489255905, 0.016924675554037094, -0.02824442647397518, -0.012782800942659378, 0.030277583748102188, -0.030167683959007263, 0.006185336969792843, 0.002230636542662978, -0.022268585860729218, 0.02123826928436756, -0.00036941160215064883, 0.039454273879528046, 0.02788724936544895, 0.017213163897395134, 0.001971340039744973, -0.003365702461451292, 0.018229743465781212, -0.006848174147307873, 0.003901467425748706, 0.020235426723957062, -0.019424911588430405, 0.09566837549209595, -0.002606702269986272, 0.014740402810275555, -0.03203599154949188, 0.0022890211548656225, -0.03211841732263565, 0.02553812600672245, 0.005120676010847092, -0.020578866824507713, -0.03275034576654434, 0.06429178267717361, -0.01902652159333229, 0.003952983301132917, -0.05967596545815468, 0.011676927097141743, -0.04613073170185089, -0.011443388648331165, 0.02904120460152626, -0.0039495485834777355, 0.007734247017651796, 0.026554705575108528, -0.010797723196446896, 0.04085550829768181, 0.023724768310785294, -0.032008517533540726, 0.013387253507971764, 0.011621976271271706, 0.054400742053985596, 0.0031201436650007963, 0.05157080292701721, 0.03467360511422157, -0.00386368902400136, 0.005288960877805948, -0.003448127768933773, -0.0009513261029496789, 0.037888191640377045, -0.009520130231976509, 0.007905966602265835, 0.004069752525538206, 0.04920794442296028, 0.0067279706709086895, 0.016224060207605362, 0.011718139983713627, -0.021430594846606255, 0.00915608461946249, 0.0470648854970932, 0.003448127768933773, 0.014190900139510632, 0.05764280632138252, 0.007562527433037758, 0.0283268503844738, -0.016210321336984634, 0.0002882741391658783, -0.018971571698784828, 0.0005009917076677084, 0.021664133295416832, 0.01480909064412117, -0.019191373139619827, -0.015550918877124786, 0.007555658463388681, 0.003997630439698696, -0.024796297773718834, 0.020702503621578217, -0.009217903017997742, -0.06390713155269623, -0.01129914354532957, 0.0347835049033165, -0.026527229696512222, 0.009863568469882011, 0.006662717089056969, -0.018188530579209328, 0.0020262901671230793, -0.012027234770357609, 0.05030694976449013, -0.03846517205238342, 0.022776875644922256, -0.010344383306801319, 0.021993834525346756, 0.025373274460434914, 0.0013608771841973066, 0.03376692533493042, -0.0023353854194283485, -0.03593745827674866, 0.014369488693773746, 0.01710326410830021, -0.008180717937648296, -0.02781856060028076, -0.04816389083862305, 0.002536297310143709, -0.019411174580454826, 0.018930358812212944, -0.018902884796261787, -0.04519657418131828, 0.011587632820010185, -0.01101752370595932, 0.006662717089056969, -0.010887017473578453, -0.00471885222941637, 0.021334432065486908, 0.05517004430294037, -0.005261485930532217, -0.014300800859928131, -0.011573894880712032, 3.415608443901874e-05, 0.02939837984740734, -0.02031785249710083, -0.03464612737298012, -0.022419700399041176, 0.008867595344781876, -0.020551390945911407, 0.07830409705638885, 0.003661060007289052, 0.04541637748479843, -0.0109831802546978, 0.006113214883953333, -0.0014939598040655255, -0.0025929645635187626, -0.0150563670322299, 0.03854759782552719, 0.03725626692175865, -0.022859301418066025, 8.671835530549288e-05, -0.016072945669293404, 0.008785170502960682, 0.01351775974035263, -0.017048314213752747, -0.002182554919272661, 0.047751761972904205, -0.012885832227766514, 0.028656551614403725, 0.021348169073462486, -0.017831353470683098, 0.034288953989744186, 0.016072945669293404, -0.031431540846824646, -0.04577355459332466, 0.03939932584762573, -0.008112030103802681, -0.004433797672390938, -0.005979273468255997, -0.006041092332452536, 0.007631215266883373, -0.004729155451059341, -0.03612978383898735, 0.015317380428314209, 0.0002721754426602274, -0.01241188682615757, 0.014616765081882477, 0.01689719967544079, -0.030305059626698494, -0.03728374093770981, -0.03371197357773781, 0.026238741353154182, 0.009842962957918644, -0.01637517288327217, -0.02038654126226902, 0.029728082939982414, -0.014190900139510632, 0.0003964574134442955, -0.015825670212507248, 0.005931192077696323, 0.008173848502337933, 0.008627188391983509, 0.0020640685688704252, -0.010117713361978531, -0.022653238847851753, 0.00026723850169219077, 0.02560681290924549, -0.0430535152554512, 0.032365694642066956, 0.0061990744434297085, -0.018559444695711136, 0.03563523292541504, 0.021650396287441254, -0.016828512772917747, -0.005924323108047247, -0.01596304588019848, 0.006624938920140266, 0.03181619197130203, -0.03571765869855881, -0.029920408502221107, -0.011099949479103088, 0.01412221323698759, -0.02404073253273964, -0.001330826198682189, -0.035745132714509964, 0.007967785000801086, 0.03112931363284588, -0.03343722224235535, 0.025125999003648758, 0.007322120014578104, -0.02266697585582733, -0.016498811542987823, -0.02504357323050499, -0.018009942024946213, 0.003266105195507407, 0.019905725494027138, -0.035580284893512726, -0.01632022298872471, -0.028381800279021263, -0.04893319308757782, -0.007274038624018431, -0.022076260298490524, -0.02681571990251541, -0.01975461281836033, 0.0151662677526474, 0.008331830613315105, -0.04294361546635628, 0.006710798479616642, 0.025002360343933105, 0.0277636107057333, -0.0009144063806161284, -0.00464673014357686, 0.0008538753027096391, 0.0223097987473011, 0.03764091804623604, -0.02195262350142002, 0.017652766779065132, -0.015001417137682438, -0.04176218435168266, 0.02732400968670845, 0.01686972565948963, -0.01112742442637682, -0.027736136689782143, -0.027530072256922722, 0.009066790342330933, -0.022268585860729218, -0.007857885211706161, 0.015413543209433556, 0.020015627145767212, -0.020372802391648293, -0.05945616587996483, -0.005677047185599804, 0.002277000807225704, 0.010495496913790703, -0.017130738124251366, -0.003970155026763678, -0.019053997471928596, -0.06039031967520714, 0.02424679510295391, 0.0037057071458548307, 0.011189243756234646, 0.006776052061468363, 0.015578393824398518, 0.011725008487701416, -0.04354806989431381, 0.006858477368950844, 0.027296533808112144, 0.0204002782702446, 0.02446659654378891, -0.02562055177986622, -0.03192609176039696, -0.016759824007749557, 0.002950141206383705, 0.00660089822486043, -0.016759824007749557, -0.002596399048343301, -0.007212219759821892, -0.020633816719055176, 0.00039130583172664046, -0.03505825623869896, 0.009211034514009953, -0.01686972565948963, -0.017913779243826866, -0.010605396702885628, 0.004959259647876024, -0.01037185825407505, -0.022158686071634293, -0.030167683959007263, 0.02419184520840645, 0.02103220671415329, 0.010392464697360992, 0.012528656050562859, 0.03286024555563927, -0.021416857838630676, -0.009643767960369587, 0.02890382893383503, 0.030662236735224724, 0.015427281148731709, -0.042971089482307434, 0.04376786947250366, -0.041679758578538895, 0.015042629092931747, 0.003374288324266672, 0.020414015278220177, 0.02882140316069126, 0.025277111679315567, -0.004502485506236553, -0.005357648711651564, -0.004251775331795216, -0.005567146465182304, 0.016787299886345863, 0.004035408608615398, 0.022502124309539795, 0.040608230978250504, -0.00427238130941987, 0.030305059626698494, -0.017501652240753174, -0.005999879911541939, 0.00025908180396072567, 0.012734719552099705, -0.011031261645257473, -0.00588311068713665, 0.024233058094978333, 0.007157269399613142, -0.006549382116645575, -0.013497153297066689, -0.04558122903108597, -0.04063570499420166, -0.038877297192811966, -0.002486498560756445, -0.008833251893520355, -0.020757455378770828, -0.011395307257771492, 0.012487443163990974, -0.04857601597905159, -0.025304587557911873, 0.023147789761424065, 0.002847109455615282, 0.02970060706138611, 0.008379912003874779, -0.005831594578921795, -0.03305257111787796, -0.002589530311524868, -0.0015128488885238767, 0.02926100417971611, 0.0012733001494780183, 0.016691137105226517, -0.0303325355052948, -0.005910585634410381, 0.002256394363939762, 0.010461152531206608, 0.009897912852466106, 0.032722871750593185, -0.010571053251624107, 0.01534485537558794, 0.05560964718461037, 0.026664605364203453, -0.013016339391469955, -0.014177163131535053, -0.034591179341077805, 0.010522971861064434, 0.0017532561905682087, -0.007377070374786854, -0.010426809079945087, -0.007713640574365854, 0.022982940077781677, -0.0033227726817131042, 0.02125200629234314, -0.016540024429559708, 0.008469206281006336, -0.003571765962988138, 0.027955936267971992, -0.0037228791043162346, -0.0027629670221358538, -0.007617477793246508, 0.02246091142296791, 0.04222926124930382, -0.03453622758388519, 0.0015703749377280474, -0.03264044597744942, -0.019122684374451637, -0.0343439020216465, 0.031211739405989647, -0.040470853447914124, 0.0399213507771492, 0.0025397315621376038, -0.04722973331809044, 0.03832779452204704, 0.012253904715180397, 0.009396491572260857, 0.0009925387566909194, -0.012865225784480572, -0.02654096856713295, 0.051186151802539825, -0.031156787648797035, 0.020990993827581406, 0.009066790342330933, 0.014644240029156208, -0.008242536336183548, -0.006885952316224575, 0.02582661435008049, -0.01255613099783659, 0.0014819394564256072, -0.01873803324997425, -0.017405489459633827, -0.00010313903476344422, -0.03112931363284588, -0.005793816410005093, 0.002653066534548998, -0.0227494016289711, 0.03338227421045303, -0.04129510745406151, -0.005247748456895351, 0.01902652159333229, -0.03373945131897926, -0.006624938920140266, 0.0009178408072330058, -0.021636659279465675, 0.01724063977599144, -0.015193742699921131, -0.0018373987404629588, -0.02726905792951584, -0.005299264099448919, 0.03104688785970211, -0.007301513571292162, -0.003494492033496499, 0.0027492293156683445, 0.011285406537353992, -0.011099949479103088, -0.024590235203504562, -0.020221689715981483, 0.010454284027218819, -0.01737801544368267, 0.010138319805264473, -0.025785401463508606, -0.015193742699921131, -0.01309189572930336, -0.0035168156027793884, 0.010564184747636318, -0.008915676735341549, -0.00010018760076491162, -0.02518094889819622, -0.013936755247414112, -0.0009083962067961693, 0.007157269399613142, 0.029425855726003647, -0.014190900139510632, 0.00022946020180825144, -0.042036935687065125, 0.0069031245075166225, 0.00597240449860692, 0.017776403576135635, 0.03797061741352081, 0.012940782122313976, 0.02410941943526268, 0.003247216111049056, 0.0043754130601882935, 0.05242253467440605, -0.00029406967223621905, -0.0017309327377006412, -0.047477010637521744, 0.011340356431901455, 0.026939356699585915, 0.00905305240303278, 0.0269805695861578, -0.003327924059703946, 0.03711888939142227, -0.005354214459657669, 0.008496681228280067, -0.013167452067136765, -0.01987825147807598, 0.040525805205106735, 0.015399806201457977, 0.02939837984740734, -0.00016109437274280936, -0.011745614930987358, -0.033299848437309265, 0.019727136939764023, 0.018339643254876137, -0.014877778477966785, 0.034508753567934036, 0.018009942024946213, 0.029590707272291183, -0.003908336162567139, 0.0013591599417850375, -0.022625762969255447, -0.045306477695703506, 0.008256274275481701, -0.009108003228902817, 0.0350307822227478, -0.003753788536414504, 0.01441070158034563, 0.03291519731283188, 0.003106405958533287, 0.039948828518390656, -0.007452626712620258, 0.0063845315016806126, 0.00786475371569395, 0.005821291357278824, 0.03291519731283188, 0.006686757784336805, 0.010756510309875011, 0.02890382893383503, 0.006796658504754305, 0.045663654804229736, -0.001839115982875228, -0.014630502089858055, 0.027942199259996414, -0.030991937965154648, 0.006662717089056969, -0.007651821710169315, -0.002771552884951234, -0.029315955936908722, -0.016072945669293404, -0.021993834525346756, -0.020070577040314674, 0.022447174414992332, -0.0602254681289196, 0.0043032909743487835, 0.001623608055524528, -0.0016270424239337444, -0.007023327983915806, 0.0025843787007033825, 0.0027200370095670223, -0.009540735743939877, 0.019919464364647865, -0.007363332901149988, 0.023051626980304718, -7.276614633155987e-05, -0.018147317692637444, 0.012384410947561264, 0.042971089482307434, -0.021664133295416832, 0.006319277919828892, 0.006065133027732372, 0.014781615696847439, -0.015399806201457977, -0.019562287256121635, -0.0141634251922369, -0.004966128151863813, 0.034948356449604034, 0.0043135941959917545, 0.014836565591394901, -0.028601601719856262, 0.01946612447500229, -0.019122684374451637, 0.020235426723957062, 0.005378255154937506, -0.014575552195310593, 0.015028892084956169, -0.005234010983258486, 0.013751298189163208, 0.009911649860441685, -0.02939837984740734, 0.0007293786038644612, 0.002220333321020007, -0.005721694324165583, -0.0038430828135460615, 0.011106817983090878, -0.008063948713243008, -0.020441491156816483, -0.023147789761424065, -0.03626716136932373, -0.04986734688282013, -0.005405730102211237, 0.019438648596405983, -0.04069065675139427, -0.008531025610864162, -0.0027681186329573393, -0.0004730872460640967, -0.029590707272291183, -0.006909993011504412, -0.028093311935663223, 0.03687161207199097, -0.0007834702846594155, 0.032805297523736954, 0.003233478404581547, -0.007521314546465874, -0.0031665079295635223, -0.00980175007134676, 0.009492654353380203, -0.019589761272072792, -0.031651340425014496, -0.02726905792951584, -0.0032592364586889744, -0.02417810820043087, 0.01033064629882574, 0.017117001116275787, -0.007590002380311489, -0.02934342995285988, 0.017982468008995056, -0.0031544873490929604, 0.005639269016683102, -0.0339042991399765, -0.021444333717226982, 0.007013024762272835, 0.004828752484172583, 0.0016528003616258502, -0.027530072256922722, 0.018696820363402367, -0.0141634251922369, 0.05041684955358505, -0.012212691828608513, 0.024658922106027603, -0.02647227980196476, -0.01952107436954975, -0.010577921755611897, 0.02926100417971611, 0.009966600686311722, -0.035305533558130264, 0.0221861619502306, -0.0018975005950778723, 0.021650396287441254, -0.021073419600725174, 0.014644240029156208, 0.0016090117860585451, 0.00811889860779047, -0.02762623503804207, 0.0022958898916840553, 0.00016474341100547463, 0.03714636340737343, -0.0022340707946568727, 0.018477018922567368, 0.003468734212219715, 0.016443859785795212, -0.03582755848765373, 0.0015781023539602757, -0.001978208776563406, 0.023134052753448486, 0.011649452149868011, -0.02067502960562706, -0.008970627561211586, 0.039014674723148346, -0.03612978383898735, 0.02116958238184452, 0.009630030021071434, 0.004660467617213726, -0.001678558299317956, 0.020771192386746407, -0.0014312821440398693, 0.01567455753684044, 0.02160918340086937, -0.0050897663459181786, 0.015756983309984207, -4.810829341295175e-05, 0.02111463062465191, 0.011546419933438301, 0.046240631490945816, 0.029370905831456184, -0.013023207895457745, 0.020001888275146484, 0.0530819371342659, 0.05879675969481468, 0.025057312101125717, 0.023930830880999565, 0.020853618159890175, 0.0012690072180703282, -0.06583039462566376, 0.012480574660003185, -0.00969184935092926, 0.00980175007134676, -0.0042929877527058125, -0.02453528344631195, -0.05181808024644852, 0.04942774400115013, 0.02689814381301403, 0.01608668453991413, -0.010845804587006569, 0.05074654892086983, -0.01284461934119463, -0.012144003994762897, -0.011450257152318954, 0.020304115489125252, -0.027598761022090912, -0.0035082297399640083, 0.02926100417971611, 0.02439790777862072, 0.0031046888325363398, 0.008558500558137894, 0.0051721916534006596, -0.013146845623850822, -0.017419228330254555, 0.006178468000143766, -0.04143248498439789, 0.021375644952058792, 0.0350307822227478, -0.004571173340082169, -0.009334673173725605, 0.0004799560410901904, 0.009719324298202991, -0.022735662758350372, 0.016333959996700287, 0.03203599154949188, 0.025716714560985565, -0.009808618575334549, 0.02890382893383503, -0.02575792744755745, -0.017281852662563324, 0.017185688018798828, 0.027241583913564682, 0.02810705080628395, -0.003911770414561033, 0.002728623105213046, -0.018779246136546135, 0.020798668265342712, 0.005481286905705929, 0.020496441051363945, -0.0018082064343616366, 0.01127166859805584, 0.016279010102152824, -0.011615107767283916, -0.012734719552099705, -0.010207007639110088, -0.03335479646921158, -0.03126668930053711, 0.016045471653342247, 0.011079343035817146, 0.03126668930053711, 0.014850303530693054, 0.018119843676686287, -0.05775270611047745, 0.029370905831456184, -0.011958546936511993, -0.05956606566905975, 0.00328155979514122, -0.0116563206538558, 0.0028127655386924744, 0.02983798272907734, 0.018367119133472443, -0.01127166859805584, 0.026362380012869835, 0.07011651247739792, 0.03700898960232735, 0.00876456405967474, 0.024356694892048836, 0.012865225784480572, -0.013476547785103321, 0.005642703268676996, 0.0017876001074910164, -0.0003831491630990058, -0.01574324443936348, 0.01773519068956375, 0.03338227421045303, 0.0061063459143042564, -0.011340356431901455, -0.02310657687485218, -0.021705346181988716, 0.006793223787099123, 0.00800899788737297, 0.027667447924613953, -0.0008972344803623855, 0.013916149735450745, 0.0033897431567311287, -0.001294765155762434, 0.023917093873023987, 0.012920176610350609, -0.0017652766546234488, -0.04852106422185898, 0.03448127955198288, 0.015770720317959785, -0.031376589089632034, 0.018930358812212944, -0.008318093605339527, -0.01259047444909811, 0.003867123508825898, -0.0007452626596204937, -0.012123397551476955, 0.008386781439185143, 0.012604212388396263, -0.0034361074212938547, 0.00608230521902442, 0.01480909064412117, -0.003503078129142523, 0.001478504971601069, -0.003891164204105735, -0.0041281371377408504, -0.019218847155570984, 0.02761249803006649, 0.005666743963956833, 0.001026882673613727, 0.005460680462419987, 0.021581707522273064, 0.018422069028019905, -0.008318093605339527, -0.026431066915392876, -0.02538701333105564, 0.03821789473295212, -0.04250401258468628, 0.013016339391469955, -0.010248220525681973, 0.022337274625897408, -0.0043754130601882935, -0.006442916113883257, 0.006762314587831497, -0.014603027142584324, -0.014657977968454361, 0.031074363738298416, 0.0030840823892503977, 0.024810034781694412, -0.031156787648797035, 0.004049146082252264, -0.01058479119092226, 0.02239222452044487, 0.0007873339927755296, 0.04687255993485451, -0.023559916764497757, -0.022227372974157333, 0.011079343035817146, -0.0269805695861578, -0.01298199500888586, -0.04093793034553528, 0.015770720317959785, -0.015276167541742325, -0.010667216032743454, -0.012102791108191013, -0.012075316160917282, -0.00523744523525238, -0.024645185098052025, -0.0323382169008255, -0.008778301067650318, -0.022776875644922256, 0.014328275807201862, -0.014032918959856033, -0.019205110147595406, 0.026705818250775337, 0.008187586441636086, -0.027227846905589104, 0.006254024803638458, 0.015482231043279171, 0.0038396483287215233, -0.011834909208118916, 0.007699903100728989, 0.006782920565456152, 0.020784929394721985, -0.009149216115474701, 0.002515690866857767, 0.03684413805603981, -0.007535052020102739, 0.00017408066196367145, -0.007541920989751816, -0.0065390788950026035, -0.0141634251922369, -0.0019129554275423288, -0.020427754148840904, -0.0022718491964042187, 0.012363804504275322, -0.005711391102522612, 0.024026993662118912, -0.011484600603580475, 0.028738977387547493, -0.028601601719856262, -0.022776875644922256, -0.01632022298872471, -0.012514918111264706, -0.03362954780459404, 0.01022761408239603, -0.014836565591394901, -0.005666743963956833, -0.03275034576654434, -0.003911770414561033, -0.03349217399954796, -0.02176029607653618, 0.031733766198158264, -0.028491701930761337, -0.015125054866075516, -0.01924632303416729, 0.017927518114447594, 0.012205823324620724, -0.0071366629563272, 0.0072328257374465466, -0.009643767960369587, 0.0011307729873806238, 0.0175153911113739, -0.015083841979503632, 0.015495968982577324, 0.013524629175662994, 0.014548077248036861, -0.008977496065199375, -0.024150632321834564, -0.03525058180093765, -0.0011754201259464025, -0.015702031552791595, -0.015702031552791595, -0.005694218911230564, -0.007198481820523739, 0.040168628096580505, 0.013497153297066689, 0.004519657697528601, 0.004334200639277697, -0.008434862829744816, 0.013552104122936726, 0.024810034781694412, -0.028793927282094955, -0.02625247836112976, -0.010969442315399647, -0.009478917345404625, -0.008146373555064201, 0.022282324731349945, 0.0250985249876976, 0.007947179488837719, 0.0014913839986547828, 0.01917763613164425, 0.0023250821977853775, -0.01781761646270752, 0.0005752603756263852, -0.007088581565767527, -0.0217465590685606, 0.011429650709033012, 0.01574324443936348, -0.03126668930053711, 0.0025105392560362816, -0.023120315745472908, -0.025496913120150566, -0.023202741518616676, 0.0020640685688704252, -0.006889387033879757, 0.000811804027762264, -0.011470863595604897, 0.008462337777018547, -0.057697758078575134, -0.018916621804237366, -0.023999519646167755, -0.014726665802299976, -0.003430955810472369, -0.006741708144545555, 0.015798194333910942, 0.00529239559546113, -0.01630648411810398, 0.005457246210426092, 0.012123397551476955, -0.010145189240574837, 0.03019515983760357, 0.0151662677526474, 0.013188058510422707, -0.007225957233458757, -0.019864512607455254, -0.0201804768294096, 0.007219088263809681, -0.02467265911400318, -0.013545235618948936, 0.00393581110984087, 0.008221929892897606, -0.005391992628574371, -0.03942679986357689, 0.03373945131897926, 0.01824348047375679, -0.011003786697983742, -0.022996677085757256, -0.019946938380599022, 0.012219560332596302, 0.009815487079322338, 0.002077806042507291, -0.013977968133985996, -0.01952107436954975, 0.031239213421940804, 0.007500708568841219, -0.023573655635118484, 0.030387485399842262, 0.030140208080410957, 0.007397676818072796, 0.029535755515098572, 0.012466836720705032, -0.016292747110128403, 0.005673612933605909, 0.004248340614140034, -0.003283277153968811, -0.025881564244627953, 0.020551390945911407, 0.0019833603873848915, 0.02125200629234314, 0.005148150958120823, -0.008173848502337933, -0.010935098864138126, -0.002582661574706435, 0.008943152613937855, 0.013607054017484188, -0.0019215414067730308, 0.00798152294009924, -2.1317368009476922e-05, 0.026733294129371643, 0.003365702461451292, -0.008702744729816914, -0.0030153945554047823, -0.020839879289269447, 0.02009805105626583, 0.0033966118935495615, 0.020578866824507713, 0.029590707272291183, 0.000398603908251971, 0.006161296274513006, -0.004636426921933889, 0.0014398681232705712, 0.02567550167441368, 0.02295546419918537, 0.020936043933033943, 0.010708428919315338, 0.02531832456588745, -0.017693977802991867, 0.0046432954259216785, -0.022639499977231026, -0.02360112965106964, 0.005989576689898968, 0.006934034172445536, -0.007809803355485201, -0.020345328375697136, -0.0061166491359472275, -0.008846988901495934, -0.006951205898076296, 0.001497394172474742, 0.0024624578654766083, 0.021059680730104446, 0.00783041026443243, 0.01982329972088337, -0.04033347964286804, 0.066434845328331, -0.03082708641886711, -0.004588345531374216, -0.005814422853291035, 0.0022289191838353872, 0.005962101276963949, -0.014740402810275555, 0.006425744388252497, -0.007761721964925528, -0.015193742699921131, -0.011608239263296127, 0.00848294422030449, -0.010564184747636318, -0.006988984066992998, -0.013977968133985996, -0.032090943306684494, 0.010213877074420452, 0.002419527852907777, -0.014616765081882477, -0.011759351938962936, 0.003298731753602624, -0.01230198610574007, -0.00464673014357686, -0.007260301150381565, 0.012068447656929493, 0.005628965795040131, 0.010687822476029396, -0.007370201405137777, -0.019713399931788445, -0.012940782122313976, 0.013078157790005207, -0.004392585251480341, -0.019067734479904175, -0.009334673173725605, 0.012082184664905071, -0.008915676735341549, 0.002895191079005599, -0.00837304349988699, -0.01989198848605156, 0.00245043751783669, -0.0028883221093565226, 0.002088109264150262, -0.036157261580228806, 0.034948356449604034, -0.006724535953253508, 0.002692562062293291, 0.004828752484172583, -0.003928942605853081, -0.018353382125496864, -0.010811460204422474, 0.016855986788868904, -0.014850303530693054, -0.0030566074419766665, 0.00901870895177126, 0.0037194446194916964, -0.021938884630799294, 0.013565841130912304, 0.03536048159003258, 0.05159828066825867, -0.01323613990098238, -0.023724768310785294, -0.004141874611377716, -0.0006319278036244214, -0.006394834723323584, 0.005209969822317362, -0.01659497432410717, 0.017845092341303825, 0.004351372364908457, 0.010969442315399647, 0.015234955586493015, -0.014836565591394901, -0.0151662677526474, -0.000938447134103626, -0.004076621029525995, -0.016265273094177246, 0.003606109879910946, -0.004567739088088274, -0.010062763467431068, -0.0075762649066746235, 0.004203693475574255, -0.006058264523744583, -0.012913307175040245, -0.017062051221728325, 0.01989198848605156, 0.007816672325134277, -0.003034283872693777, 0.008166979998350143, 0.002821351634338498, 0.009135478176176548, 0.0014175445539876819, 0.02390335686504841, 0.0005237445002421737, 0.0013600185047835112, -0.01534485537558794, 0.00822879932820797, 0.013744429685175419, 0.001978208776563406, -0.026705818250775337, 0.007631215266883373, -0.011937940493226051, -0.008050210773944855, 0.01294765155762434, 0.016979625448584557, -0.0015952743124216795, -0.011422782205045223, 0.004090358968824148, -0.010392464697360992, 0.01022761408239603, -0.0002046681911451742, 0.0016476487508043647, -0.011979153379797935, -0.010007813572883606, 0.025799140334129333, 0.030662236735224724, -0.020414015278220177, -0.002077806042507291, -0.012762194499373436, 0.024933673441410065, -0.004169349558651447, 0.0030291322618722916, -0.026417329907417297, 0.004753196146339178, -0.006834436673671007, 0.022364748641848564, -0.02983798272907734, 0.015495968982577324, -0.02812078781425953, 0.019933201372623444, 0.012789669446647167, 0.01832590624690056, -0.004341069143265486, 0.026499755680561066, -0.015853146091103554, -0.020922305062413216, -0.010028420016169548, -0.0006916003185324371, 0.0031939828768372536, -0.01384746190160513, -0.00018438382539898157, -0.016787299886345863, -0.011882990598678589, 0.03711888939142227, -0.0031355982646346092, 0.008895071223378181, 0.002587812952697277, -0.034014202654361725, -0.0204002782702446, -0.0011427933350205421, 0.004186521749943495, 0.04277876392006874, 0.022790614515542984, -0.018490757793188095, 0.003819041885435581, 0.010138319805264473, 0.015839407220482826, 0.006686757784336805, 0.014081000350415707, -0.0011170353973284364, -0.009513260796666145, -0.02404073253273964, -0.012672900222241879, 0.044894348829984665, 0.005323304794728756, 0.005391992628574371, 0.004866531118750572, -0.016759824007749557, -0.0002554327656980604, 0.010777116753160954, -0.020729979500174522, 0.03489340469241142, -0.007322120014578104, 0.014657977968454361, 0.03417905047535896, 0.04412504658102989, -0.005543105769902468, -0.01320179644972086, 0.013428466394543648, -0.017611553892493248, -0.003987327218055725, 0.005484721157699823, -0.006508169695734978, 0.012824012897908688, 0.000674857699777931, 0.016979625448584557, -0.007995260879397392, -0.03662433847784996, -0.0028831707313656807, -0.022625762969255447, 0.008063948713243008, 0.020276639610528946, -0.008558500558137894, -0.007404545322060585, -0.027310270816087723, 0.031651340425014496, -0.016485072672367096, 0.02181524783372879, 0.020056840032339096, 0.0017412358429282904, 0.010605396702885628, 0.016636187210679054, -0.009183559566736221, -0.003183679888024926, 0.009176691062748432, 0.010605396702885628, 0.002137908013537526, 0.024796297773718834, 0.02103220671415329, -0.029370905831456184, -0.010296301916241646, 0.014232113026082516, -0.00021325417037587613, 0.0032180235721170902, 0.0013479981571435928, 0.004983300343155861, 0.013861198909580708, 0.012775931507349014, 0.006731404922902584, -0.005742300301790237, -0.02154049649834633, 0.0030102431774139404, 0.003932376857846975, -0.002292455406859517, 0.004849358927458525, 0.001737801474519074, -0.048328738659620285, 0.015042629092931747, 0.005106938537210226, 0.025799140334129333, 0.0048321872018277645, -0.02031785249710083, -0.024095682427287102, -0.009204166010022163, -0.011649452149868011, 0.022653238847851753, 0.0141634251922369, -0.01888914592564106, 0.009911649860441685, 0.0025483176577836275, -0.023917093873023987, -0.0029157972894608974, -0.014108475297689438, -0.007184744346886873, -0.005790382158011198, -0.014177163131535053, -0.0008817797061055899, 0.03327237442135811, 0.008950021117925644, 0.025812877342104912, 0.01744670234620571, 0.004966128151863813, 0.0074320207349956036, 0.004207128193229437, 0.02718663401901722, 0.004804711788892746, -0.009492654353380203, 0.012920176610350609, -0.002347405767068267, -0.015358593314886093, -0.02261202596127987, 0.0050073410384356976, 0.01674608699977398, 0.02824442647397518, 0.014190900139510632, -0.028876353055238724, -0.03640453517436981, -0.032310742884874344, 0.01398483756929636, 0.011992890387773514, 0.009382754564285278, 0.0016296182293444872, 0.02103220671415329, 0.007061106618493795, -0.007198481820523739, 0.004835621453821659, 0.0035339875612407923, -0.027598761022090912, -0.010893885977566242, -0.005398861598223448, 0.006813830230385065, 0.008242536336183548, 0.026637131348252296, -0.025936516001820564, 0.010378727689385414, 0.0028969082050025463, -0.012432492338120937, 0.0039495485834777355, 0.025057312101125717, -0.031156787648797035, -0.016279010102152824, -0.006501300726085901, -0.002182554919272661, -0.03525058180093765, 0.012508049607276917, -0.013943624682724476, -0.0060548302717506886, -0.018270956352353096, -0.013421596959233284, -0.01295452006161213, 0.03398672491312027, -0.009121740236878395, 0.001998815219849348, -0.008221929892897606, 0.0006907417555339634, -0.04571860283613205, -0.010103976354002953, -0.02281808853149414, 0.018435806035995483, 0.0017549734329804778, 0.021925147622823715, -0.015578393824398518, 0.046460431069135666, -0.008160111494362354, 0.025771664455533028, -0.010440546087920666, -0.0439327210187912, 0.0016905786469578743, 0.012885832227766514, 0.009204166010022163, -0.020414015278220177, -0.04651538282632828, 0.0027062995359301567, -0.006463522557169199, 0.01975461281836033, 0.0032489332370460033, -0.02094978094100952, -0.023271428421139717, -0.01348341628909111, -0.009348410181701183, -0.014575552195310593, -0.021155843511223793, 0.005893413908779621, -0.005313001573085785, -0.004104096442461014, -0.004873399622738361, -0.037091415375471115, -0.017611553892493248, 0.021870197728276253, -0.012006628327071667, 0.007002721540629864, 0.015715770423412323, -0.022282324731349945, -0.0010955705074593425, 0.009128609672188759, 0.006916861981153488, -0.017927518114447594, -0.020345328375697136, -0.015262430533766747, -0.013284221291542053, -0.008895071223378181, 0.0034361074212938547, -0.011869252659380436, -0.008469206281006336, -0.026225004345178604, 0.017982468008995056, 0.040608230978250504, 0.011972284875810146, -0.0323382169008255, 0.005460680462419987, 0.023202741518616676, 0.0008358447230421007, -8.891851030057296e-05, 0.0030222635250538588, 0.014795353636145592, -0.02490619756281376, 0.042449064552783966, 0.02366981841623783, 0.006971812341362238, -0.005306133069097996, 0.0028058968018740416, -0.04330079257488251, 0.019548550248146057, 0.03500330448150635, -0.018641870468854904, -0.0074732331559062, -0.0028866049833595753, 0.023793455213308334, -0.0039049016777426004, -0.019012784585356712, -0.021004730835556984, 0.015921832993626595, -0.04255896434187889, -0.02103220671415329, 0.025016099214553833, 0.0044681415893137455, -0.025304587557911873, 0.015427281148731709, 0.002172251930460334, 0.012755325064063072, 0.0043754130601882935, 0.004121268168091774, -0.03362954780459404, -0.005766341462731361, -0.00239548715762794, -0.008297487162053585, 0.04222926124930382, -0.02740643359720707, -0.0018064893083646894, -0.014987679198384285, 0.006394834723323584, 0.021224532276391983, -0.010124582797288895, -0.020839879289269447, -0.012775931507349014, 0.0032781255431473255, 0.011683795601129532, 0.0035374220460653305, -0.013565841130912304, -0.023092839866876602, 0.002541448688134551, 0.011539551429450512, -0.0012441078433766961, -0.0005653864936903119, 0.007947179488837719, 0.009616293013095856, -0.0032746910583227873, -0.021554233506321907, 0.0052683549001812935, -0.02432922087609768, 0.0016588105354458094, -0.024095682427287102, -0.007095450069755316, -6.128240056568757e-05, -0.004241472110152245, -0.011333487927913666, 0.020551390945911407, -0.007280907593667507, -0.010117713361978531, -0.0016854270361363888, 0.00012063296162523329, -0.009004971012473106, 0.0048940060660243034, 0.004876834340393543, 0.003911770414561033, -0.017268113791942596, -0.005694218911230564, -0.011470863595604897, 0.001136783161200583, 0.009595686569809914, 0.0038259108550846577, 0.006439481861889362, -0.003997630439698696, 0.002821351634338498, 0.009506392292678356, -0.0027938764542341232, 0.0016244666185230017, -0.008105160668492317, -0.012741588056087494, -0.005999879911541939, -0.004677639342844486, 0.0015360310208052397, 0.04687255993485451, -0.00020101915288250893, -0.0027320573572069407, -0.001433857949450612, -0.004337634891271591, -0.003180245403200388, -0.0018167924135923386, 0.035085730254650116, 0.012782800942659378, 0.0003389313933439553, -0.003206003224477172, -0.022845564410090446, -0.005560277961194515, -0.015756983309984207, -0.029096154496073723, 0.011443388648331165, -0.0041281371377408504, 0.016471335664391518, 0.007438889238983393, 0.008634056895971298, 0.008675269782543182, 0.010131451301276684, -0.012363804504275322, 0.01909521035850048, -0.0013660286786034703, 0.009094265289604664, 0.0026307429652661085, 0.021334432065486908, -0.02011178992688656, 0.01737801544368267, -0.0070473686791956425, 0.004519657697528601, -0.03181619197130203, -0.012082184664905071, 0.0058350288309156895, 0.016224060207605362, -0.003994195722043514, 0.0023989216424524784, -0.0019112381851300597, 0.022296061739325523, -0.00470168050378561, -0.011113686487078667, 0.013188058510422707, 0.01875177025794983, -0.003939245827496052, 0.0027629670221358538, 0.004001064691692591, 0.0018013376975432038, -0.002867715898901224, -0.0009186993702314794, -0.015125054866075516, -0.0011814302997663617, -0.004636426921933889, 0.0015180004993453622, 0.0066352421417832375, -0.010632872581481934, 0.02526337467133999, 0.005872807465493679, 0.007002721540629864, -0.004347938112914562, -0.01780387945473194, -0.005745735019445419, -0.03176124021410942, -0.025441963225603104, -0.012542393058538437, -0.009272853843867779, -0.009478917345404625, -0.006370794028043747, 0.0186143945902586, 0.009341541677713394, 0.012027234770357609, 0.02818947471678257, 0.01298199500888586, -0.008105160668492317, -0.00972619280219078, 0.023147789761424065, -0.007899097166955471, 0.0044578383676707745, 0.019727136939764023, -0.005416033323854208, -0.013552104122936726, -0.0018631566781550646, -0.010014682076871395, -0.01023448258638382, 0.01255613099783659, -0.0060445270501077175, 0.01931500993669033, -0.011450257152318954, 0.020510178059339523, -0.026719557121396065, -0.022227372974157333, 0.015015154145658016, 0.008881333284080029, -0.0008895070641301572, 0.0006375086959451437, -0.0015746679855510592, -0.010117713361978531, 0.007768590934574604, 0.009870437905192375, -0.010461152531206608, -0.011855515651404858, 0.002532862825319171, -0.005965535994619131, 0.0031390327494591475, 0.014259587973356247, -0.008029604330658913, 0.014767877757549286, 0.018696820363402367, -0.006068567745387554, 0.007342726457864046, 0.006628373172134161, -0.004536829423159361, -0.0069649433717131615, -0.00017193416715599597, -0.015427281148731709, 0.004076621029525995, 0.010845804587006569, -0.011759351938962936, -0.027021782472729683, -0.01975461281836033, 0.02052391692996025, -0.011841777712106705, 0.02482377365231514, 0.012047841213643551, -0.015647081658244133, 0.006257459055632353, -5.052310007158667e-05, -0.010900754481554031, -0.004114399664103985, 0.007679296657443047, 0.005213404539972544, -0.010007813572883606, 0.008311224170029163, 0.014932729303836823, -0.002532862825319171, 0.008970627561211586, 0.016004258766770363, -0.018408332020044327, 0.007644952740520239, -0.021059680730104446, -0.006934034172445536, 0.027159158140420914, 0.004591779783368111, 0.01581193320453167, 0.007665559183806181, 0.0099803376942873, 0.003219740930944681, -0.011752483434975147, 0.0033880260307341814, 0.01062600314617157, 0.012988864444196224, -0.008956889621913433, 0.0003037288843188435, -0.004578042309731245, -0.001739518716931343, 0.011951678432524204, -0.024658922106027603, 0.003997630439698696, 0.009039315395057201, -0.02948080562055111, -0.006504734978079796, -0.009101133793592453, -0.007686165627092123, -0.006806961726397276, -0.021732822060585022, 0.012542393058538437, 0.03090951219201088, 0.017900042235851288, 0.029783032834529877, -0.010248220525681973, -0.010653479024767876, 0.03942679986357689, 0.0018013376975432038, -0.0287664532661438, 0.0002498519024811685, -0.012782800942659378, -0.004121268168091774, -0.005021078512072563, -0.032090943306684494, 0.008173848502337933, 0.005182494875043631, -0.005728562828153372, 0.017762666568160057, -9.975830471375957e-05, 0.022062523290514946, -0.008682138286530972, -0.0009727910510264337, 0.0070473686791956425, -0.005398861598223448, 0.008070817217230797, -0.005903716664761305, 0.009671242907643318, -0.009286590851843357, -0.0044784448109567165, -0.02868402749300003, 0.007686165627092123, 0.004797843284904957, 0.01608668453991413, -0.0019198241643607616, 0.004849358927458525, -0.0034601481165736914, 0.009794880636036396, -0.0024933672975748777, 7.705912867095321e-05, 0.0038877297192811966, -0.01441070158034563, -0.011086211539804935, -0.018147317692637444, -0.013064420782029629, 0.0021980097517371178, -0.04978492110967636, -0.009588818065822124, 0.016443859785795212, 0.004100662190467119, -0.011395307257771492, 0.017721453681588173, -0.003873992245644331, -0.022639499977231026, 0.042091887444257736, -0.0037778292316943407, -0.010062763467431068, -0.0010509233688935637, 0.015276167541742325, -0.016210321336984634, -0.0011719856411218643, 0.019933201372623444, 0.014850303530693054, 0.004337634891271591, 0.021513020619750023, -0.010413071140646935, 0.037805769592523575, -0.013064420782029629, -0.009540735743939877, -0.0014433024916797876, 0.005920888856053352, 0.009540735743939877, 0.02710420824587345, -0.01402604952454567, 0.020688766613602638, -0.008709614165127277, -0.012116529047489166, 0.0061063459143042564, 0.006463522557169199, 0.02159544639289379, 0.011546419933438301, 0.0017223467584699392, 0.0025191253516823053, -0.0015875468961894512, -0.0026736727450042963, -2.1639341866830364e-05, 0.03769586607813835, -0.002144776750355959, -0.007802934851497412, 0.019053997471928596, 0.011051868088543415, 0.003726313356310129, 0.007356463931500912, -0.008215061388909817, 0.031294163316488266, -0.00615442730486393, 0.0022031613625586033, 0.015798194333910942, -0.007445758208632469, 0.013105633668601513, -0.0005009917076677084, 0.018545707687735558, -0.023587392643094063, -0.0041281371377408504, -0.02638985402882099, 0.0015789609169587493, -0.0013711802894249558, 0.0019369961228221655, 0.011697533540427685, 0.022557076066732407, 0.0037469197995960712, 0.0019524508388713002, -0.004725721199065447, 0.013751298189163208, 0.013819986023008823, 0.016979625448584557, -0.0015377482632175088, -0.0038224763702601194, -0.002920948900282383, -0.021155843511223793, -0.001659669098444283, -0.03134911507368088, -0.008036472834646702, -0.005113807041198015, -0.008139505051076412, -0.014204638078808784, 0.002714885398745537, 0.004650164395570755, 0.03475603088736534, 0.0027045824099332094, -0.02125200629234314, 0.006422309670597315, 0.0025912474375218153, 0.003152770223096013, 0.00890193972736597, -0.0009032446541823447, 0.008427993394434452, 0.0066455453634262085, -0.004564304836094379, -0.02840927615761757, 0.012233298271894455, -0.00021314685000106692, 0.012872094288468361, -0.016649924218654633, 0.012233298271894455, 0.023944569751620293, 0.00800899788737297, 0.0010328928474336863, -0.005395426880568266, 0.0011041564866900444, 0.013929886743426323, -0.002254677237942815, -0.0035339875612407923, 0.02053765393793583, 0.0031390327494591475, 0.005130979232490063, -0.011882990598678589, 0.02268071286380291, -0.004629557952284813, 0.008160111494362354, 0.010756510309875011, 0.01588062010705471, 0.016718611121177673, 0.024947410449385643, 0.009719324298202991, -0.008750826120376587, -0.0031750937923789024, -0.010694690980017185, -0.011615107767283916, -0.0038224763702601194, 0.008915676735341549, 0.007679296657443047, -0.011038130149245262, -0.008730219677090645, -0.025057312101125717, -0.00708171259611845, -0.005038250703364611, -0.007693034131079912, -0.008345568552613258, -0.015111316926777363, 0.020235426723957062, 0.04475697502493858, 0.01824348047375679, -0.013861198909580708, 0.009135478176176548, 0.021004730835556984, 0.016485072672367096, -0.00465359864756465, 0.010310039855539799, -0.014067262411117554, -0.023573655635118484, -0.004186521749943495, -0.007205350790172815, -0.0029982225969433784, -0.017858829349279404, 0.0006615494494326413, -0.01931500993669033, 0.021210793405771255, 0.0045608701184391975, -0.003764091758057475, 0.005896848160773516, 0.005275223404169083, -0.012604212388396263, 0.03742111474275589, -0.002737208968028426, 0.005663309711962938, -0.003547725034877658, -0.02468639798462391, 0.0016382042085751891, -0.020990993827581406, 0.008778301067650318, -0.007720509544014931, 0.009231640957295895, 0.0037331823259592056, -0.006837870925664902, 0.016842249780893326, 0.032805297523736954, -0.008867595344781876, -0.01817479357123375, 0.007143531925976276, 0.016347697004675865, 0.0008551632054150105, 0.010935098864138126, 0.010509233921766281, -0.004636426921933889, 0.005010775290429592, -0.004135006107389927, 0.02066129259765148, 0.0023525573778897524, -0.004632992669939995, 0.0005585176986642182, -0.0016339111607521772, -0.0150563670322299, 0.0043857162818312645, 0.005282092373818159, -0.019081471487879753, 0.009272853843867779, 0.006511603947728872, -0.010097107850015163, 0.009355278685688972, -0.009362148120999336, -0.00848294422030449, 0.015331118367612362, 0.032805297523736954, 0.019658450037240982, 0.0013694631634280086, 0.022433437407016754, 0.00502794748172164, -0.0066901920363307, 0.02081240527331829, -0.003606109879910946, -0.01895783469080925, 0.03376692533493042, -0.02082614228129387, 0.01660871133208275, 0.01388180535286665, 0.019576024264097214, -0.005852201022207737, 0.017762666568160057, -0.003932376857846975, 0.003190548624843359, 0.008970627561211586, 0.019782088696956635, 0.00017966153973247856, 0.0020228559151291847, -0.003856820287182927, -0.021513020619750023, -0.015495968982577324, 0.022625762969255447, 0.01129914354532957, -0.026225004345178604, -0.0010174381313845515, 0.02439790777862072, -0.03676171228289604, -0.012370673939585686, 0.022941727191209793, -0.014603027142584324, -0.01083893608301878, 0.009657504968345165, 0.007569395937025547, 0.0044681415893137455, 0.01824348047375679, 0.0073152510449290276, 0.012405017390847206, -0.015070104040205479, -0.03132164105772972, -0.01373756118118763, 0.034151576459407806, 0.005498458631336689, 0.0026376117020845413, -0.012494311667978764, -0.0066901920363307, -0.009636899456381798, 0.02324395254254341, 0.026911882683634758, -0.009080528281629086, 0.019205110147595406, -0.004938653204590082, -0.0019919462502002716, 0.0073152510449290276, -0.008929414674639702, -0.017542865127325058, -7.389305392280221e-05, 0.007521314546465874, 0.0047497618943452835, 0.004351372364908457, -0.002355991629883647, 0.000132331348140724, 0.006240287330001593, -0.011848646216094494, -0.02361486665904522, 0.009382754564285278, -0.014424439519643784, 0.0012741588288918138, 0.010495496913790703, -0.013613923452794552, -0.0052546169608831406, -0.001967905554920435, 0.0032214580569416285, 0.018861671909689903, 0.030634760856628418, -0.0027870077174156904, -0.02347749099135399, 0.01909521035850048, 0.01245309878140688, 0.02726905792951584, -0.010694690980017185, -0.009245378896594048, -0.009320935234427452, -0.011745614930987358, 0.005800685379654169, 0.004447535611689091, -0.0053404769860208035, 0.03335479646921158, -0.008558500558137894, -0.005927757825702429, -0.015441019088029861, -0.00013812688121106476, 0.01882045902311802, 0.0014827980194240808, 0.0032111548352986574, -0.0012698657810688019, 0.001923258532769978, 0.007260301150381565, 0.01759781502187252, 0.007988391444087029, 0.017501652240753174, 0.007383938878774643, 0.006102911662310362, 0.006841305643320084, -0.009959732182323933, 0.0142733259126544, 0.002891756594181061, 0.020867355167865753, 0.00011140303104184568, 0.003891164204105735, 0.006295237224549055, 7.23368430044502e-05, 0.0010698125697672367, -0.01115489937365055, -0.01581193320453167, -0.00851728767156601, 0.013971099629998207, -0.003836213843896985, 0.008194454945623875, 0.008393649943172932, -0.03755849227309227, 0.006185336969792843, 0.001214915537275374, 0.005474417936056852, -0.016842249780893326, 0.0035168156027793884, 0.006841305643320084, -0.008846988901495934, 0.027488859370350838, -0.007960916496813297, -0.015441019088029861, 0.0013136542402207851, 0.018985308706760406, -0.006250590085983276, -0.00969871785491705, -0.027488859370350838, -0.03286024555563927, 0.01873803324997425, -0.005725128576159477, -0.003394894767552614, -0.019548550248146057, 0.011244193650782108, 0.024480333551764488, 0.013607054017484188, 0.018270956352353096, -0.011704402044415474, -0.009870437905192375, 0.0018236612668260932, -0.004794409032911062, -0.006017051637172699, -0.010062763467431068, -0.02395830675959587, -0.00667302031069994, 0.01710326410830021, -0.01667739823460579, -0.007988391444087029, -0.004196824971586466, -0.00019500897906254977, -0.009252247400581837, 0.013435334898531437, -0.009197297506034374, 0.002043462125584483, -0.02081240527331829, 0.00027432190836407244, 0.015386068262159824, 0.010495496913790703, 0.008304355666041374, 0.001105015049688518, 0.006566554307937622, -0.003911770414561033, -0.003606109879910946, -0.03876739740371704, -0.0003990332188550383, 0.014603027142584324, -0.00036597720463760197, 0.027008045464754105, -0.008489812724292278, 0.017213163897395134, -0.008221929892897606, -0.0157295074313879, 0.014850303530693054, -0.017405489459633827, -0.023134052753448486, 0.002422962337732315, 0.005106938537210226, -0.008180717937648296, -0.012398148886859417, -0.018133580684661865, -0.01860065758228302, -0.030222633853554726, -0.0006907417555339634, 0.008668401278555393, -0.008682138286530972, 0.0028333719819784164, -0.011896727606654167, -0.004488748032599688, 0.011367831379175186, -0.012652293778955936, -0.004584910813719034, -0.018490757793188095, -0.013139977119863033, 0.01151207648217678, 0.015152529813349247, 0.005347345490008593, 0.00010045591625384986, 0.0073289889842271805, 0.022199898958206177, 0.007377070374786854, 0.02961818128824234, 0.002479629823938012, -0.023724768310785294, -0.011168637312948704, -0.007239694707095623, 0.006573422811925411, 0.005313001573085785, -0.002254677237942815, 0.006120083387941122, 0.006611201446503401, 0.01480909064412117, -0.004176218528300524, -0.016773562878370285, -0.007603739853948355, 0.011031261645257473, -0.026843193918466568, 0.01931500993669033, -0.018916621804237366, -0.011292275041341782, 0.0010019834153354168, 0.0052683549001812935, -0.008194454945623875, -0.002536297310143709, -0.002735491842031479, 0.0027784216217696667, 0.002266697585582733, 0.006130386609584093, 0.0037022726610302925, 0.0076586902141571045, -0.013902411796152592, -0.020867355167865753, 0.00536451768130064, -0.024370433762669563, 0.01452060230076313, -0.002448720159009099, 0.016828512772917747, -0.0014226961648091674, -0.014177163131535053, -0.001668255077674985, -0.0223097987473011, -0.006494432222098112, -0.013696348294615746, 0.006477260030806065, -0.020565129816532135, 0.0024538717698305845, 0.0023542745038866997, -0.001887197489850223, -0.015070104040205479, 0.02325769141316414, 0.002771552884951234, 0.0026668040081858635, -0.007569395937025547, -0.017542865127325058, 0.008881333284080029, -0.01384746190160513, 0.0026479149237275124, 0.010207007639110088, -0.033876825124025345, -0.01873803324997425, -0.018971571698784828, -0.017474178224802017, -0.05613167583942413, 0.009973469190299511, 0.002568923868238926, -0.028271900489926338, -0.0055053276009857655, -1.6179197700694203e-05, 0.012769063003361225, -0.007638083770871162, -0.006343318615108728, -0.0043135941959917545, 0.0054435087367892265, -0.015234955586493015, -0.03961912542581558, 0.00602735485881567, -0.008723351173102856, 0.01294765155762434, 0.0007654397049918771, -0.01895783469080925, -0.007342726457864046, 0.003671363228932023, -0.012892700731754303, -0.007116056513041258, -0.012858357280492783, 0.0029793335124850273, -0.004619254730641842, 0.008846988901495934, -0.022570813074707985, 0.02088109217584133, 0.0017463874537497759, 0.006724535953253508, -0.010248220525681973, 0.010832066647708416, 0.01191046554595232, -0.013545235618948936, -0.0012011779472231865, -0.012233298271894455, -0.015028892084956169, 0.018422069028019905, -0.008551632054150105, -0.0022581114899367094, -0.005299264099448919, -0.005632400047034025, 0.007624346297234297, -0.014135950244963169, 0.009087396785616875, 0.016485072672367096, -0.016045471653342247, -0.021375644952058792, 0.008915676735341549, -0.009094265289604664, 0.002608419395983219, 0.011690664105117321, -0.0002807613927870989, -0.010749641805887222, 0.0009212751756422222, -0.01233632955700159, 0.0043754130601882935, 0.008421124890446663, -0.010152057744562626, -0.0020966953597962856, 0.006391400471329689, 0.002771552884951234, -0.0100902384147048, -0.008160111494362354, 0.0027526638004928827, 0.013050682842731476, -0.017419228330254555, -0.0023044757544994354, 0.015866883099079132, -0.02266697585582733, 0.002477912465110421, -0.0012406734749674797, -0.02325769141316414, 0.008778301067650318, 0.0044681415893137455, -0.003206003224477172, 0.004011367913335562, 0.012830882333219051, 0.005446942988783121, 0.0108732795342803, 0.006329581141471863, 0.009863568469882011, 0.009973469190299511, -0.014740402810275555, 0.0009281439706683159, -0.009636899456381798, 0.00851728767156601, -0.006487563252449036, 0.00014284916687756777, -0.003216306446120143, 0.01681477390229702, 0.016141634434461594, -0.011196112260222435, -0.014905253425240517, 0.008427993394434452, -0.002828220371156931, -0.021664133295416832, 0.01216461043804884, -0.0003007237974088639, -0.003764091758057475, 0.012617949396371841, -0.0034172183368355036, 0.02725532092154026, -0.015715770423412323, 0.004945522174239159, -0.014046655967831612, -0.007500708568841219, 0.04448222368955612, 0.009684980846941471, 0.026142578572034836, -0.007500708568841219, 0.016059208661317825, 0.008427993394434452, -0.01625153422355652, -0.0024624578654766083, 0.01858692057430744, 0.003994195722043514, 0.015262430533766747, -0.002821351634338498, -0.0016321939183399081, -0.00199538073502481, 0.0015094145201146603, 0.02130695804953575, 0.016072945669293404, 0.003942680079489946, 0.00980175007134676, 0.01295452006161213, 0.0013213816564530134, 0.021705346181988716, 0.010715297423303127, 0.012384410947561264, 0.008476074784994125, 0.011347225867211819, -0.017075788229703903, 0.00901870895177126, 0.0019301273860037327, 0.0056083593517541885, 0.009781143628060818, 0.011306012980639935, -0.013057551346719265, 0.010955705307424068, -0.016004258766770363, 0.008173848502337933, 0.013352909125387669, 0.003106405958533287, -0.012521786615252495, -0.015798194333910942, -0.005852201022207737, -0.009320935234427452, -0.0049867345951497555, -0.010756510309875011, 0.013716954737901688, -0.0033588337246328592, -0.01058479119092226, 0.03046991117298603, -0.008579107001423836, -0.014822828583419323, -0.004993603564798832, 0.01295452006161213, -0.0006156144663691521, 0.0036164128687232733, 0.007885360158979893, -0.03228326886892319, 0.016924675554037094, -0.006587160751223564, -0.017762666568160057, -0.01308502722531557, 0.003983892500400543, 0.009458310902118683, -0.02317526564002037, -0.01688346266746521, -0.007095450069755316, 0.014149688184261322, -0.02203504741191864, -0.006604332476854324, -0.01960350014269352, 0.024150632321834564, 0.00901870895177126, -0.0018700255313888192, 0.0054332055151462555, -0.014012312516570091, 0.006542513612657785, 0.007912835106253624, 0.026128841564059258, 0.003329641418531537, 0.009616293013095856, -0.02347749099135399, 0.01588062010705471, 0.0019215414067730308, 0.0001874962472356856, -0.014094737358391285, -0.004808146506547928, -0.02318900264799595, 0.005189363844692707, 0.023436279967427254, 0.0055877529084682465, 0.0006967519293539226, 0.02346375398337841, 0.0007594295311719179, -0.041817136108875275, 0.0054435087367892265, -0.012494311667978764, 0.013510891236364841, -0.0024092248640954494, -0.0008770574349910021, -0.026637131348252296, -0.021636659279465675, 0.02890382893383503, 0.002678824355825782, -0.009767405688762665, 0.017185688018798828, 0.02004310116171837, 0.01401918102055788, 0.009169821627438068, -0.003484188811853528, 0.015083841979503632, 0.007061106618493795, 0.002422962337732315, -0.003915205132216215, -0.015839407220482826, -0.0013102198718115687, 0.006648979615420103, 0.01441070158034563, -0.017295589670538902, -0.00887446478009224, -0.018477018922567368, -0.009588818065822124, -0.03167881444096565, -0.0008160969591699541, -0.017872566357254982, 0.018930358812212944, 0.0010002661729231477, -0.012638555839657784, 0.006405137944966555, 0.003558028256520629, 0.0055980561301112175, -0.0023456886410713196, -0.00042715229210443795, -0.023518703877925873, -0.02640359289944172, -0.028162000700831413, -0.0068000927567481995, 0.0013256745878607035, -0.0013780491426587105, -0.0014115343801677227, -0.012617949396371841, -0.004069752525538206, -0.02983798272907734, 0.021416857838630676, 0.0064566535875201225, 0.001585829653777182, 0.009396491572260857, 0.020221689715981483, -0.0008723351056687534, 0.015221217647194862, -0.027846036478877068, -0.012040972709655762, 0.011086211539804935, -0.028629077598452568, 0.002625591354444623, -0.0010526406113058329, 0.013181190006434917, -0.011525813490152359, 0.007720509544014931, -0.024494070559740067, -0.024494070559740067, 0.000531471916474402, 0.010680953972041607, -0.01674608699977398, 0.020798668265342712, 0.020867355167865753, 0.0204002782702446, -0.0041487435810267925, -0.011141162365674973, -0.002136190654709935, 0.00866153184324503, 0.005924323108047247, -0.00028505438240244985, -0.024164369329810143, 0.0016622449038550258, 0.0020400278735905886, -0.007892228662967682, -0.011882990598678589, 0.02818947471678257, -0.009066790342330933, -0.014369488693773746, -0.0019146725535392761, 0.012178347446024418, -0.0005718260072171688, -0.004554001614451408, -0.014795353636145592, 0.005986142437905073, -0.0005834170733578503, 0.005962101276963949, 0.03596493601799011, 0.03492087870836258, 0.0233126413077116, -0.04132258519530296, -0.0028694330248981714, -0.0283268503844738, 0.011312881484627724, -0.01322927139699459, -0.009506392292678356, 0.02497488632798195, 0.01281027588993311, -0.005999879911541939, 0.00837304349988699, 0.0003715580969583243, 0.00015948449436109513, 0.005742300301790237, -0.012130266055464745, -0.011876121163368225, -0.007768590934574604, 0.0026582181453704834, 0.0009564777137711644, 0.0008341275388374925, -0.023711031302809715, 0.0318986177444458, 0.005848766770213842, -0.010790853761136532, 0.013435334898531437, 0.0009135478176176548, 0.017776403576135635, 0.0052580516785383224, 0.013943624682724476, 0.0030583245679736137, 0.004018236417323351, -0.01294765155762434, 0.004722286481410265, -0.01710326410830021, 0.011099949479103088, -0.017831353470683098, -0.002465892117470503, -0.042668864130973816, -0.004251775331795216, -0.021567970514297485, 0.02446659654378891, 0.011189243756234646, 0.025702977553009987, -0.006831002421677113, 0.007016459479928017, -0.014190900139510632, 0.008826383389532566, -0.015413543209433556, -0.008015867322683334, -0.007349594961851835, 0.010804591700434685, -0.011828039772808552, -0.028299376368522644, 0.0027578154113143682, -0.03220084309577942, -0.008338699117302895, -0.015756983309984207, 0.007061106618493795, -0.021787771955132484, -0.01659497432410717, 0.001942147733643651, -0.01322927139699459, 0.013291090726852417, -0.0016313353553414345, -0.0016115875914692879, 0.01180056482553482, -0.0012921893503516912, -0.013916149735450745, -0.005278657656162977, -0.012329461053013802, 0.00491804676130414, 0.01632022298872471, -0.013950493186712265, 0.00641887541860342, 0.015083841979503632, -0.017474178224802017, -0.025455700233578682, 0.009664374403655529, 0.023491229861974716, 0.03134911507368088, 0.010770248249173164, -0.004121268168091774, -0.0022821524180471897, 0.02762623503804207, 0.024150632321834564, 0.005038250703364611, 0.001985077513381839, -0.009588818065822124, -0.00815324205905199, 0.003688535187393427, 0.009176691062748432, -0.011429650709033012, 0.014905253425240517, 0.006642110645771027, 0.005467549432069063, -0.010557315312325954, 0.0005078604444861412, 0.012405017390847206, 0.015358593314886093, -0.010818329639732838, -0.007171006873250008, 0.015358593314886093, -0.0005014209891669452, 0.006559685338288546, -0.013146845623850822, 0.019685925915837288, 0.009231640957295895, -0.006494432222098112, 0.004859662149101496, -0.002199726877734065, -0.023408804088830948, 0.015633344650268555, 0.00484592467546463, -0.015853146091103554, -0.023340115323662758, 0.0036164128687232733, -0.010907623916864395, 0.009891044348478317, 0.028986254706978798, 0.00502794748172164, 0.003255801973864436, -0.004152177833020687, 0.006834436673671007, 0.024081945419311523, -0.014932729303836823, -0.02474134787917137, 0.012171478942036629, -0.00798152294009924, 0.005646137520670891, 0.0026582181453704834, 0.011642582714557648, 0.007171006873250008, -0.0016115875914692879, -0.0008341275388374925, 0.016636187210679054, 0.016333959996700287, -0.0068206992000341415, 0.0058556352742016315, 0.00733585748821497, -0.009032445959746838, -0.0063845315016806126, -0.0056907846592366695, -0.00511724129319191, 0.012686637230217457, 0.026801981031894684, -0.011354094371199608, -0.00042801088420674205, 0.0199606753885746, -0.01388180535286665, -0.005721694324165583, -0.00020112647325731814, 0.01989198848605156, 0.0014819394564256072, 0.017639027908444405, -0.0050794631242752075, 0.028958778828382492, 0.014451914466917515, -0.010502365417778492, 0.012652293778955936, 0.0037160103674978018, -0.0017541148699820042, -0.00010775399277918041, 0.005862504243850708, 0.003915205132216215, 0.0285466518253088, -0.004533395171165466, 0.03242064267396927, 0.019136423245072365, 0.0028866049833595753, -0.007720509544014931, 0.014287063851952553, -0.010749641805887222, -0.004691377282142639, 0.007947179488837719, 0.00221861619502306, 0.005409164819866419, -0.017130738124251366, -0.007322120014578104, 0.002017704304307699, -0.028876353055238724, -0.004423494450747967, -0.02016673982143402, -0.006257459055632353, -0.014850303530693054, 0.016155371442437172, 0.021993834525346756, -0.02474134787917137, 0.016182847321033478, 0.012796537950634956, 0.018559444695711136, 0.019548550248146057, 0.002838523592799902, 0.011024393141269684, 0.002077806042507291, -0.006909993011504412, -0.030167683959007263, -0.017350539565086365, -0.006308974698185921, 0.007088581565767527, -0.01322927139699459, 0.011038130149245262, 0.006834436673671007, -0.009897912852466106, 0.036734238266944885, -0.03898719698190689, -0.020702503621578217, -0.014493127353489399, -0.002125887665897608, 0.012329461053013802, 0.006329581141471863, 0.020716242492198944, -0.008723351173102856, -0.009973469190299511, 0.0045608701184391975, 0.0029827679973095655, 0.018298432230949402, -0.014245850965380669, 0.002180837793275714, 0.0009830942144617438, -0.0003176810860168189, 0.017831353470683098, -0.006092608440667391, -5.470876203617081e-05, 0.019342485815286636, 0.007109188009053469, -0.024026993662118912, 0.017062051221728325, 0.0372287891805172, -0.020716242492198944, -0.035442907363176346, 0.013916149735450745, 0.02247465029358864, -0.01216461043804884, 0.004746327176690102, -0.00767242768779397, 0.012281379662454128, 0.0005516489618457854, -0.020510178059339523, -0.023765981197357178, 0.003667928744107485, 0.014575552195310593, -0.016498811542987823, -0.01768024079501629, 0.011058736592531204, 0.013057551346719265, 0.008524157106876373, 0.018710557371377945, 0.002747512189671397, -0.018834196031093597, 0.018435806035995483, 0.015784457325935364, 0.008592844009399414, -0.004873399622738361, 0.004433797672390938, 0.016540024429559708, 0.0186143945902586, 0.010378727689385414, -0.02468639798462391, -0.005872807465493679, -0.019479861482977867, -0.0021121499594300985, -0.01952107436954975, -0.005357648711651564, -0.032448120415210724, 0.0037160103674978018, -0.010158926248550415, 0.02111463062465191, -0.015866883099079132, 0.0005447801668196917, -0.015193742699921131, -0.0014209789223968983, -0.01666366122663021, -0.01312623918056488, 0.010103976354002953, -0.020441491156816483, 0.003245498752221465, -0.00693746842443943, -0.0027595325373113155, -0.006659282837063074, 0.03025010973215103, -0.008929414674639702, -0.004413191694766283, -0.014438176527619362, 0.020990993827581406, 0.00904618389904499, -0.03810799494385719, 0.012968258000910282, -0.01061913464218378, 0.0072465636767446995, -0.0016064360970631242, -0.015028892084956169, 0.0037675260100513697, -0.01975461281836033, -0.0018442675936967134, -0.024494070559740067, -0.018628133460879326, 0.022268585860729218, -0.008826383389532566, 0.019218847155570984, 0.0002044535503955558, -0.016924675554037094, 0.004687942564487457, 0.00826314277946949, -0.002136190654709935, 0.0037675260100513697, 0.01980956271290779, 0.007480102125555277, -0.024095682427287102, -0.004238037392497063, 0.0020365933887660503, 0.000771879218518734, 0.03643201291561127, -0.023779718205332756, 0.026362380012869835, -0.04198198765516281, -0.01768024079501629, -0.02295546419918537, 0.0001429565018042922, 0.0016862855991348624, -0.005532802548259497, 0.006185336969792843, -0.012377542443573475, -0.014960204251110554, 0.02225484885275364, 0.023559916764497757, 0.003219740930944681, 0.0034412590321153402, -0.00523744523525238, 0.0011290557449683547, 0.005326739512383938, 0.01724063977599144, 0.0004359529120847583, -0.007507577072829008, -0.03283277153968811, -0.017075788229703903, -0.00028805946931242943, 0.011498338542878628, 0.019369961693882942, 0.004049146082252264, 0.0024366998113691807, 0.010522971861064434, -0.0016356284031644464, 8.99917577044107e-05, 0.0004346650093793869, 0.0006100335740484297, 0.011402175761759281, 0.019053997471928596, 0.012824012897908688, 0.005790382158011198, -0.00291408016346395, -0.0035082297399640083, -0.006831002421677113, -0.005968970246613026, -0.0012372391065582633, 0.018573181703686714, -0.0159493088722229, -0.0025929645635187626, 0.0018751771422103047, 0.00012664313544519246, -0.027062995359301567, 0.005707956850528717, -0.00783727876842022, -0.012769063003361225, -0.018792983144521713, -0.0017352256691083312, 0.023779718205332756, 0.017268113791942596, 0.0157295074313879, -0.0004808146331924945, -0.019150160253047943, -0.011202980764210224, -0.005577449686825275, 0.013806249015033245, 0.01674608699977398, 0.008091423660516739, -0.006573422811925411, -0.013297959230840206, 0.0007195047801360488, -0.0017893173499032855, 0.01219895388931036, 0.005041684955358505, 0.010207007639110088, -0.006934034172445536, 0.0077411155216395855, -0.02195262350142002, -0.011670057661831379, -0.006515038199722767, -0.039014674723148346, 0.019479861482977867, -0.027667447924613953, -0.031871140003204346, -0.019589761272072792, -0.012686637230217457, 0.009794880636036396, 0.011546419933438301, -0.0142733259126544, -0.006089173723012209, 0.005989576689898968, 0.012150872498750687, -0.0010698125697672367, 0.0009315783390775323, -0.012281379662454128, -0.023917093873023987, -0.0007225098670460284, 0.010165794752538204, 0.00027131682145409286, -0.010598528198897839, -0.03483845666050911, 0.005357648711651564, 0.006971812341362238, 0.013723823241889477, 0.000695893308147788, 0.022433437407016754, 0.0020692201796919107, -0.01312623918056488, -0.015413543209433556, -0.011477732099592686, -0.02088109217584133, -0.0099803376942873, -0.00826314277946949, 0.010832066647708416, -0.0267607681453228, -0.006432612892240286, -0.04005872830748558, 0.02762623503804207, -0.0007620053365826607, -0.0030651933047920465, 0.024095682427287102, 0.011148030869662762, -0.00016034310101531446, -0.00445440411567688, -0.008558500558137894, 9.530432726023719e-05, 0.049098044633865356, 0.007548789959400892, -0.024068206548690796, 0.002903776941820979, 0.0036404537968337536, 0.005704522132873535, -0.004371978808194399, -0.002783573232591152, 0.006951205898076296, -0.016045471653342247, 0.018147317692637444, -0.0020846747793257236, -0.016292747110128403, -0.008881333284080029, 0.004578042309731245, -0.0013127956772223115, -0.00111360102891922, -0.019012784585356712, -0.024095682427287102, 0.002512256382033229, 0.013799380511045456, 0.004238037392497063, 0.018779246136546135, 0.009602555073797703, -0.0033674195874482393, -0.003255801973864436, 0.022845564410090446, 0.010419939644634724, 0.01019327063113451, -0.02290051430463791, -0.007349594961851835, 0.0016991646261885762, -0.016691137105226517, 0.023738505318760872, 0.0015866883331909776, 0.006267762277275324, 0.0008105161250568926, 0.0028522610664367676, -0.007706771604716778, 0.003190548624843359, -0.00887446478009224, -0.0022392224054783583, 0.009279722347855568, -0.015262430533766747, -0.01491899136453867, 0.011642582714557648, -0.013744429685175419, -0.003454996505752206, -0.006497866474092007, -0.0067382738925516605, -0.003808738896623254, 0.006171599496155977, 0.00013190205208957195, 0.01412221323698759, 0.0034464106429368258, 0.004251775331795216, -0.011463995091617107, 0.013792511075735092, 0.01441070158034563, -0.0011290557449683547, 0.024768821895122528, -0.009932256303727627, -0.018078630790114403, 0.021581707522273064, -0.007960916496813297, 0.026568442583084106, -0.011498338542878628, 0.0186143945902586, -0.011086211539804935, 0.012343198992311954, -0.016540024429559708, -0.00039001795812509954, -0.004797843284904957, 0.016691137105226517, 0.019479861482977867, -0.012212691828608513, -0.038602545857429504, -0.008462337777018547, 0.016622448340058327, 0.02747512236237526, -0.003180245403200388, 0.011587632820010185], "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c": [-0.007687075529247522, -0.023435503244400024, -0.009939935989677906, 0.04200540482997894, -0.02150653675198555, -0.023809781298041344, 0.012423120439052582, 0.016295447945594788, -0.0008511205087415874, 0.053176138550043106, 0.0064526810310781, -0.0024795858189463615, 0.0165401678532362, 0.019879871979355812, 0.03630487620830536, 0.04237968102097511, -0.014589608646929264, 0.009126602672040462, 0.0003454865363892168, -0.004876398481428623, 0.030805883929133415, -0.0152733838185668, -0.025378866121172905, -0.010537339374423027, 0.01035739853978157, -0.012315155938267708, -0.023176388815045357, -0.003328906837850809, -0.04445260018110275, -0.011775333434343338, 0.005131914746016264, -9.407535253558308e-05, 0.024759868159890175, 0.048339325934648514, 0.02051326259970665, -0.03987490385770798, -0.018094858154654503, -0.01112754549831152, -0.049203041940927505, 0.0002825072151608765, 0.026631254702806473, 0.03754287213087082, -0.006618226412683725, -0.013956217095255852, -0.032216619700193405, -0.0062943329103291035, -0.049634899944067, -0.0020351316779851913, -0.003843537764623761, 0.003926310688257217, 0.011904890649020672, 0.02503337897360325, -0.009119405411183834, 0.029654260724782944, 0.04845448583364487, -0.032043877989053726, 0.009846366010606289, 0.051477495580911636, 0.005085130222141743, -0.048713602125644684, -0.01773497648537159, -0.028790544718503952, 0.01363232359290123, 0.0029528304003179073, 0.01632423885166645, 0.0038327414076775312, -0.025537213310599327, 0.019735919311642647, -0.01340199913829565, 0.017101584002375603, -0.028992079198360443, 0.023924943059682846, -0.04007643833756447, 0.03601697087287903, 0.031727179884910583, -0.004365366417914629, 0.02929437905550003, 0.04096894711256027, 0.03189992532134056, -0.03351219370961189, 0.03711101412773132, -0.03446228429675102, 0.040421925485134125, 0.011336277239024639, 0.039471838623285294, 0.03218783065676689, -0.007780645042657852, -0.0333106592297554, -0.013668311759829521, -0.025450842455029488, 0.017519047483801842, 0.03270605951547623, -0.007435158360749483, 0.0228309016674757, 0.02589709497988224, -0.004185425583273172, 0.0027027123142033815, -0.011775333434343338, -0.00037697621155530214, -0.015086245723068714, -0.00021604154608212411, 0.029222402721643448, 0.02262936905026436, 0.02366582863032818, 0.0015528900548815727, -0.026328952983021736, -0.004300587810575962, 0.026256976649165154, 0.0004300587752368301, 0.007014096714556217, -0.007651087362319231, -0.04246605560183525, 0.011249905452132225, 0.010364596731960773, -0.025393260642886162, -0.009126602672040462, -0.0416887104511261, 0.017346303910017014, -0.014783944934606552, -0.021391374990344048, 0.0014593207743018866, -0.019750313833355904, 0.0001745426852721721, -0.012711025774478912, -0.034375909715890884, 0.037600450217723846, -0.0175334420055151, 0.04163112863898277, 0.021952791139483452, 0.026760810986161232, -0.007456751074641943, 0.007838225923478603, 0.019980639219284058, 0.009695216082036495, 0.0008254789281636477, 0.006920527201145887, 0.014308900572359562, 0.06236032024025917, -0.007730261422693729, 0.02121863141655922, -0.0639725923538208, 0.0017931110924109817, -0.03535478934645653, 0.02953909896314144, -0.0018030079081654549, -0.03233178332448006, -0.02867538295686245, 0.055249057710170746, -0.019318455830216408, -0.013373208232223988, -0.015690846368670464, -0.02274453081190586, -0.013553149066865444, -0.013452381826937199, 0.053147345781326294, -0.0039694965817034245, 0.005995631217956543, 0.015489313751459122, 0.013416393660008907, 0.054298967123031616, 0.024270430207252502, -0.027379808947443962, 0.009270555339753628, 0.043905582278966904, 0.06990344077348709, 0.008637163788080215, 0.04681342467665672, 0.01744707114994526, -0.01031421311199665, 0.016137100756168365, 0.014639992266893387, -0.029769424349069595, 0.04350251331925392, 0.0030122108291834593, 0.010213445872068405, -0.0034278742969036102, 0.04442381113767624, 0.023147597908973694, -0.00929934624582529, 0.0034152783919125795, -0.0018326981225982308, -0.008133329451084137, 0.040537089109420776, -0.008529199287295341, 0.007186839822679758, 0.03141048550605774, 0.020196568220853806, 0.025206122547388077, -0.012689433060586452, -0.0032137446105480194, -0.018296390771865845, -0.020527658984065056, 0.017375094816088676, 0.0175334420055151, 0.0005965041345916688, -0.00924176536500454, 0.007946190424263477, 0.0076654828153550625, -0.006963713094592094, 0.03218783065676689, -0.014157750643789768, -0.04603608325123787, -0.017763765528798103, 0.05182298272848129, -0.022327067330479622, 0.0379459373652935, 0.003339703194797039, -0.016439400613307953, 0.01641061156988144, -0.012307957746088505, 0.05547938123345375, -0.026588069275021553, 0.02357945591211319, -0.004235808737576008, 0.006999701261520386, 0.014539225026965141, 0.017044002190232277, 0.015676451846957207, 0.022197511047124863, -0.040249183773994446, 0.028560221195220947, 0.013186070136725903, -0.005031147971749306, -0.02971184253692627, -0.04810900241136551, -0.01645379699766636, -0.011818518862128258, -0.005819289013743401, -0.009680820629000664, -0.04643914848566055, 0.038723282516002655, -0.02461591549217701, 0.014647189527750015, -0.005358640104532242, 0.0032065468840301037, 0.023709014058113098, 0.04142959415912628, 0.002880853833630681, -0.008522001095116138, 0.015618870966136456, -0.0005375734763219953, 0.015762822702527046, 0.0018147040391340852, -0.024385591968894005, -0.028401872143149376, 0.014042587950825691, 0.02357945591211319, 0.05743713676929474, 0.013186070136725903, 0.03169839084148407, -0.017288722097873688, -0.023349132388830185, 0.01872824877500534, 0.0011138342088088393, -0.06270580738782883, 0.03886723518371582, 0.027754085138440132, -0.01106276735663414, -0.0034980513155460358, -0.010364596731960773, 0.0033145116176456213, 0.020585238933563232, -0.052773069590330124, 0.011429846286773682, 0.018051672726869583, -0.021520933136343956, 0.035901810973882675, 0.009428903460502625, 0.0011309286346659064, 0.03498051315546036, 0.025997862219810486, 0.0012730818707495928, -0.018656272441148758, 0.06564244627952576, -0.02311880700290203, -0.00747834425419569, 0.0001675699750194326, -0.0033504997845739126, 0.026199396699666977, 0.0024543940089643, -0.03526841849088669, -0.004322180524468422, 0.03549874201416969, -0.013769078068435192, -0.0211754459887743, 0.04047950729727745, -0.009436100721359253, -0.03276364132761955, -0.021434560418128967, 0.025018984451889992, -0.003789555514231324, 0.002574954414740205, -0.0067369877360761166, 0.02942393720149994, -0.020498868077993393, -0.015316570177674294, -0.027336623519659042, 0.009133800864219666, 0.013337220065295696, 0.019692732021212578, -0.018958574160933495, 0.02201037108898163, -0.038521748036146164, -0.014827130362391472, 0.026588069275021553, -0.037226174026727676, 0.011696158908307552, 0.017806952819228172, 0.004426546394824982, 0.01707279309630394, -0.011278696358203888, -0.021305004134774208, -0.015633266419172287, -0.016353029757738113, 0.0011138342088088393, 0.03414558619260788, -0.03434712067246437, -0.025925885885953903, -0.03189992532134056, 0.008961057290434837, -0.006988904904574156, 0.0175334420055151, -0.039011187851428986, 0.02668883465230465, 0.036189716309309006, -0.02710629813373089, 0.03290759399533272, 0.004235808737576008, -0.0061323861591517925, -0.01711597852408886, -0.04214935749769211, -0.01972152292728424, 0.0013585538836196065, 0.006179170683026314, -0.0039982870221138, -0.012559874914586544, -0.030057329684495926, -0.03017249144613743, 0.021535327658057213, -0.03475018963217735, -0.00986076146364212, -0.03676552698016167, 0.003607815131545067, 0.012998931109905243, -0.05000917613506317, -0.02867538295686245, -0.01320046465843916, 0.02009580098092556, 0.00604961346834898, 0.004192623309791088, 0.0009788785828277469, 0.013819461688399315, 0.04715891182422638, -0.01687125861644745, 0.0006878240965306759, -0.029395146295428276, -0.03642003983259201, 0.01495668850839138, 0.019649546593427658, 0.0024417981039732695, -0.011926483362913132, -0.029107240960001945, 0.0027602934278547764, -0.024011313915252686, -0.031151369214057922, -0.0002196403656853363, 0.0258107241243124, -0.01209922693669796, -0.04661189392209053, -0.009623239748179913, -0.0013621526304632425, 0.011026779189705849, -0.014200936071574688, -0.015172617509961128, -0.016972025856375694, -0.034289538860321045, 0.04557543247938156, 0.020484473556280136, 0.015762822702527046, 0.011041173711419106, -0.0191888976842165, 0.012415922246873379, -0.035412371158599854, 0.03377131000161171, 0.0330803357064724, -0.005970439407974482, 0.02249981090426445, -0.042610008269548416, -0.006614627782255411, -0.020412497222423553, -0.01831078715622425, -0.001950559439137578, -0.0018371966434642673, 0.008255688473582268, -0.011991262435913086, -0.036851897835731506, 0.018958574160933495, -0.018915388733148575, 0.02717827446758747, -0.0074063679203391075, -0.004063065629452467, -0.008277282118797302, 0.013063710182905197, 0.030114909633994102, -0.03742770850658417, -0.019836686551570892, -0.00738477474078536, -0.013617928139865398, 0.012192795984447002, 0.019275270402431488, 0.00016003494965843856, -0.011141940951347351, -0.029222402721643448, 0.011465834453701973, 0.022067952901124954, 0.0029474319890141487, -0.04845448583364487, 0.05700527876615524, -0.026127420365810394, 0.018008485436439514, 0.03178476169705391, 0.012128016911447048, 0.02093072608113289, 0.028977682814002037, -0.016381820663809776, 0.0067369877360761166, -0.006416692864149809, 0.012207191437482834, 0.019001759588718414, 0.02225509099662304, 0.040134020149707794, 0.05113200843334198, 0.002049526898190379, 0.027192670851945877, -0.026991136372089386, -0.008313270285725594, 0.0033594968263059855, -0.003492652904242277, 0.010702884756028652, -0.02717827446758747, -0.00503474660217762, 0.028747359290719032, 0.009659227915108204, -0.006902533117681742, -0.05936610326170921, -0.034289538860321045, -0.0299997478723526, 0.03451986238360405, 0.004052269272506237, 0.001342359115369618, 0.010753268375992775, 0.04065224900841713, -0.05015312880277634, -0.020124591886997223, 0.03423195704817772, -0.0169864222407341, 0.010443770326673985, 0.021333793178200722, 0.03046039678156376, -0.07163087278604507, 0.008507605642080307, -0.007017695344984531, 0.04157354682683945, -0.011386660858988762, 0.01956317573785782, -0.010947604663670063, -0.013006128370761871, -0.009990319609642029, 0.006531855091452599, 0.027955619618296623, -0.004045071545988321, -0.027955619618296623, 0.02763892337679863, 0.06092079356312752, 0.009227369911968708, -0.016813678666949272, -0.016252262517809868, -0.0196351520717144, -0.022514205425977707, 0.010724478401243687, 0.026674440130591393, -0.010004714131355286, -0.02192400023341179, -0.010616513900458813, 0.0028934497386217117, 0.00853639654815197, -0.01427291240543127, 0.015057454816997051, -0.007140055298805237, 0.015215802937746048, -0.005103124305605888, -0.0035610306076705456, -0.005963241681456566, 0.01363232359290123, 0.02523491345345974, -0.03359856456518173, 0.02373780496418476, -0.025594795122742653, 0.013027722015976906, -0.028747359290719032, 0.0035520335659384727, -0.039759743958711624, 0.039385464042425156, 0.004070263355970383, -0.037686824798583984, 0.006369908340275288, -0.005380233284085989, 0.0357290655374527, 0.010573327541351318, -0.02221190556883812, -0.030978627502918243, 0.05478840693831444, -0.03518204763531685, 0.02556600421667099, 0.02565237507224083, 0.024932611733675003, -0.0005461206310428679, -0.0027494970709085464, 0.023852966725826263, 0.00934253167361021, 0.002567756688222289, -0.023924943059682846, -0.022643763571977615, -0.01749025657773018, -0.0228309016674757, 0.017058398574590683, -0.005660940892994404, -0.022845298051834106, 0.026012256741523743, -0.04393437132239342, -0.010911616496741772, 0.010191853158175945, -0.019318455830216408, -0.012336748652160168, 0.0009329936001449823, 0.018080461770296097, 0.0035214435774832964, 0.005606958642601967, -0.004548906348645687, -0.016856864094734192, -0.022067952901124954, 0.022528601810336113, -0.016511376947164536, -0.008392443880438805, -0.00878111645579338, 0.005463005974888802, 0.021031493321061134, -0.008356455713510513, -0.018210019916296005, 0.013819461688399315, -0.018958574160933495, 0.019217688590288162, -0.00738477474078536, 0.009472089819610119, -0.004944776184856892, -0.014697573147714138, 0.014028193429112434, -0.009212974458932877, -0.019419223070144653, -0.03670794516801834, -0.016209077090024948, 0.008629965595901012, 0.006010026205331087, 0.026487302035093307, -0.016799282282590866, 0.016957631334662437, -0.02378099039196968, 0.009536867961287498, 0.00585167808458209, 0.015316570177674294, 0.02121863141655922, -0.0032983168493956327, 0.04865602031350136, 0.010537339374423027, -0.0016770492075011134, 0.020729193463921547, 0.011473032645881176, -0.01232955139130354, -0.057868994772434235, 0.005790498573333025, 0.014316098764538765, 0.013596335425972939, 0.030633140355348587, 0.008572384715080261, 0.0344047024846077, 0.011739344336092472, 0.004523714538663626, -0.009414508007466793, -0.029351960867643356, 0.03898239880800247, 0.00983916874974966, 0.01769178919494152, -0.01392022892832756, -0.013891438022255898, -0.016712911427021027, 0.0299997478723526, 0.006398698780685663, -0.0015375950606539845, 0.027768481522798538, 0.008154922164976597, 0.02311880700290203, 0.006189967039972544, 0.006020822562277317, -0.02689036913216114, -0.03492293134331703, 0.011760937981307507, 0.0006788270547986031, 0.010918814688920975, 0.009652030654251575, -0.00036280584754422307, 0.01786453276872635, -0.016640935093164444, 0.030892254784703255, -0.019246479496359825, 0.014783944934606552, -0.0013189668534323573, -0.0025317685212939978, 0.03423195704817772, 0.016050728037953377, 0.014128959737718105, 0.034375909715890884, 0.014085774309933186, 0.03808989003300667, -0.018296390771865845, -0.0022744531743228436, 0.03912635147571564, -0.02432801015675068, -0.0032641279976814985, -0.0027962815947830677, 0.015921171754598618, -0.02962547168135643, -0.027163879945874214, -0.015460522845387459, 0.00016858213348314166, 0.014049786143004894, -0.049087878316640854, -0.0024381992407143116, 0.006297931540757418, -0.003229939378798008, -0.020729193463921547, 0.021348189562559128, 0.016712911427021027, -0.004822416231036186, 0.046180035918951035, -0.006369908340275288, 0.0352972075343132, -0.01313568651676178, -0.012653444893658161, 0.02113226056098938, 0.020585238933563232, -0.014683177694678307, 0.017591023817658424, -0.014496039599180222, 0.008090143091976643, -0.0001968103606486693, -0.017087189480662346, -0.009472089819610119, -0.01063090842217207, 0.03711101412773132, -0.0018344975542277098, -0.00298342015594244, -0.03299396485090256, 0.02237025275826454, -0.006575040984898806, 0.022341463714838028, 0.011365068145096302, 0.007399170193821192, -0.0010940406937152147, 0.011940878815948963, 0.027754085138440132, 0.015316570177674294, -0.05055619776248932, 0.008622768335044384, 0.006812562700361013, -0.006506663281470537, 0.005837283097207546, 0.013056511990725994, 0.006269141100347042, -0.0012838783441111445, -0.02655927836894989, -0.03345461189746857, -0.06800326704978943, -0.018843412399291992, 0.01475515402853489, -0.03256210684776306, -0.013351615518331528, 0.0018731848103925586, -0.016813678666949272, -0.024140872061252594, -0.011300289072096348, -0.027912434190511703, 0.025393260642886162, 0.01450323686003685, 0.032130248844623566, 0.008522001095116138, -0.0024076092522591352, 0.005696929059922695, 0.0011552206706255674, 0.0036815910134464502, -0.008097341284155846, -0.027120692655444145, -0.009983121417462826, 0.00593445124104619, -0.012739816680550575, 0.023752199485898018, 0.017763765528798103, -0.013927426189184189, -0.03454865515232086, 0.005891265347599983, 0.02311880700290203, -0.009385718032717705, -0.02490382082760334, -0.015978751704096794, -0.0009626838727854192, 0.011098755523562431, -0.019404826685786247, -0.004847608041018248, 0.012574270367622375, -0.027322227135300636, 0.027005530893802643, 0.010890023782849312, 0.041084107011556625, -0.016640935093164444, -0.029150426387786865, -0.006459878757596016, 0.004617283586412668, -0.015302174724638462, -0.03924151137471199, 0.02059963531792164, 0.008903476409614086, 0.0119120879098773, -0.013639520853757858, 0.014265715144574642, 0.010285422205924988, 0.013078104704618454, -0.027998805046081543, -0.006121589802205563, 0.005844480823725462, 0.03725496679544449, 0.0014764152001589537, 0.016396215185523033, 0.0002067071181954816, 0.02329155057668686, -0.036477621644735336, 0.006369908340275288, 0.003186753485351801, 0.020484473556280136, 0.02005261555314064, -0.037312544882297516, 0.00853639654815197, 0.011343474499881268, -0.04943336546421051, 0.02722145989537239, -0.021909605711698532, 0.019044945016503334, 0.0100910859182477, 0.043243397027254105, -0.017101584002375603, -0.003843537764623761, 0.03955820947885513, -0.02461591549217701, 0.012113621458411217, -0.011753739789128304, 0.0008650659001432359, -0.001085043651983142, 0.02199597656726837, 0.02199597656726837, -0.011473032645881176, 0.011516218073666096, 0.026156209409236908, 0.036160923540592194, 0.03066193126142025, -0.01212081965059042, 0.03233178332448006, 0.007391972467303276, -0.027898037806153297, 0.0013549550203606486, -0.006362710613757372, 0.013034919276833534, -0.028229130432009697, -0.015316570177674294, -0.031727179884910583, 0.055796075612306595, 0.010479758493602276, 0.00031062299967743456, -0.013085302896797657, 0.017331907525658607, -0.012898163869976997, 0.0026829189155250788, 0.01570524275302887, 0.011321881785988808, -0.025465236976742744, -0.010688490234315395, 0.013337220065295696, 0.01844034343957901, -0.0035232428926974535, 0.004239407833665609, 0.0088243018835783, -0.026256976649165154, -0.026991136372089386, 0.011796926148235798, -0.0008884582202881575, 0.02278771623969078, 0.022283881902694702, 0.00542701780796051, -0.020642820745706558, -0.011818518862128258, -0.009580054320394993, -0.020786773413419724, 0.02523491345345974, 0.009961528703570366, 0.010774861089885235, -0.008752325549721718, 0.02419845387339592, -0.02298925071954727, -0.019865475594997406, 0.028948893770575523, 0.011005185544490814, 0.034001633524894714, 0.003323508659377694, -0.014344888739287853, -0.02743738889694214, 0.013725892640650272, 0.007024893071502447, 0.017994090914726257, -0.0326484777033329, 0.01645379699766636, 0.008255688473582268, -0.003983891569077969, 0.010055097751319408, -0.019836686551570892, -0.04350251331925392, -0.03207266703248024, 0.014157750643789768, -0.012747013941407204, 0.021060284227132797, 0.02303243614733219, 0.02042689174413681, -0.030863463878631592, 0.02830110676586628, -0.0009671823936514556, -0.043905582278966904, 0.017792556434869766, -0.00952967070043087, 0.030028538778424263, 0.012667840346693993, 0.044193487614393234, -0.00901144091039896, 0.00592365488409996, 0.03305154666304588, 0.02159290947020054, -0.0029438333585858345, 0.04569059610366821, 0.012063238769769669, -0.028531430289149284, -0.011206720024347305, 0.003710381453856826, -0.001952358870767057, -0.009522472508251667, 0.025090960785746574, 0.02614181488752365, 0.017432674765586853, -0.018541110679507256, -0.0036797914654016495, -0.028416268527507782, 0.0015600876649841666, 0.03489414229989052, 0.008090143091976643, 0.006247548386454582, 0.04318581894040108, 0.01495668850839138, 0.003793154377490282, 0.040594667196273804, -0.010515746660530567, 0.000693672220222652, -0.029193613678216934, 0.0165401678532362, 0.008010969497263432, -0.019951848313212395, 0.014913502149283886, -0.009767192415893078, 0.0046532717533409595, 0.004077461082488298, -0.005434215534478426, -0.008198107592761517, 0.006513861007988453, 0.004743242170661688, -0.008507605642080307, 0.003078788984566927, 0.013877042569220066, 0.009313741698861122, 0.0027045118622481823, -0.01394182164222002, 0.0051715015433728695, -0.007485541980713606, 0.023896152153611183, 0.02514854073524475, -0.012790199369192123, 0.004052269272506237, 0.017101584002375603, 0.019275270402431488, -0.012854978442192078, -0.025709956884384155, -0.02291727438569069, 0.04399195313453674, -0.022154323756694794, 0.0043257796205580235, -0.017475860193371773, 0.020858749747276306, -0.004862003494054079, -0.006247548386454582, 0.01394182164222002, -0.01189049519598484, -0.010148666799068451, 0.04600729048252106, 0.004192623309791088, 0.017418280243873596, -0.011235509999096394, -0.0057221208699047565, -0.021607303991913795, 0.002830470446497202, -0.012934152036905289, 0.031064998358488083, -0.02142016589641571, -0.04445260018110275, 0.0021916802506893873, -0.02817154861986637, -0.029654260724782944, -0.022557392716407776, 0.011919286102056503, -0.02444317378103733, -0.015014269389212132, -0.007240822073072195, -0.003742770990356803, -0.00015486164193134755, -0.029351960867643356, -0.05052740499377251, -0.00439055822789669, -0.0390399806201458, 0.0020765180233865976, 0.007420762907713652, -0.00957285612821579, 0.016640935093164444, -0.005711324512958527, -0.020829958841204643, -0.01466878317296505, 0.019044945016503334, 0.018325181677937508, 0.032590895891189575, -0.0060784039087593555, 0.016626540571451187, 0.022341463714838028, -0.015921171754598618, -0.005506191868335009, 0.01652577333152294, 5.90431118325796e-05, -0.005358640104532242, -0.029409542679786682, -0.0023446299601346254, -0.0066506159491837025, -0.012919757515192032, 0.006880940403789282, -0.0023734206333756447, 0.013646718114614487, 0.00035605806624516845, 0.02709190361201763, -0.012279167771339417, -0.0012074034893885255, -0.027480576187372208, -0.039471838623285294, -0.010450967587530613, -0.009184183552861214, -0.0436752587556839, 0.0036330069415271282, 0.016626540571451187, -0.020167777314782143, -0.03218783065676689, -0.00872353557497263, -0.014308900572359562, -0.027365412563085556, -0.00439055822789669, -0.028488244861364365, -0.02329155057668686, -0.013625125400722027, 0.016425006091594696, 0.008126131258904934, -0.006179170683026314, 0.012962942942976952, -0.011825716122984886, 0.011559403501451015, 0.02726464718580246, -0.011113150045275688, 0.03066193126142025, 0.019419223070144653, 0.010522943921387196, -0.010774861089885235, -0.006038816645741463, -0.01943361759185791, -0.00707527669146657, -0.02059963531792164, -0.02858901210129261, 0.008809906430542469, 0.006758580449968576, 0.031928714364767075, 0.015719637274742126, 0.022686948999762535, 0.031554438173770905, 0.014798340387642384, 0.0064994655549526215, 0.0029114438220858574, -0.0206284262239933, -0.013567544519901276, -0.0032101457472890615, -0.006315925624221563, 0.010235038585960865, 0.005405424628406763, 0.04643914848566055, 0.0020729191601276398, -0.0032785232178866863, 0.006387902423739433, -0.012113621458411217, -0.0044481391087174416, -0.02307562157511711, -0.0159931480884552, -0.015734033659100533, 0.018670668825507164, 0.005203891079872847, -0.016295447945594788, 0.03348340466618538, -0.01757662743330002, -0.016842469573020935, -0.02362264320254326, 0.0034278742969036102, 0.0032533316407352686, -0.008543594740331173, 0.00030769893783144653, 0.009371322579681873, -0.08147723972797394, -0.022053558379411697, -0.013596335425972939, -0.020369309931993484, -0.00452731316909194, -0.0011795125901699066, 0.023924943059682846, 0.006175572052598, -0.00876672100275755, 0.018166834488511086, 0.014683177694678307, -0.007924597710371017, -0.005481000058352947, 0.031151369214057922, 0.01079645473510027, -0.018080461770296097, -0.009234567172825336, -0.01320046465843916, 0.008968254551291466, -0.009738401509821415, 0.009061824530363083, 0.0014719166792929173, 0.023723408579826355, -0.0017877129139378667, -0.0489727184176445, 0.02486063539981842, 0.025335680693387985, -0.014409667812287807, -0.027293436229228973, -0.016425006091594696, 0.01757662743330002, -0.0017148368060588837, -0.010983592830598354, -0.013913030736148357, -0.01959196664392948, 0.0330803357064724, 0.01398500707000494, 0.001469217473641038, 0.038176264613866806, 0.02552281878888607, 0.016108309850096703, 0.007427960634231567, 0.006218757946044207, -0.019534384831786156, 0.011991262435913086, 0.00901144091039896, -0.01934724673628807, -0.02304683066904545, 0.02300364524126053, 0.018843412399291992, 0.004225012380629778, 0.004646074026823044, 0.0035556324291974306, -0.01923208497464657, 0.00297262379899621, 0.011048371903598309, -0.0013162677641957998, -0.005700528156012297, 0.009983121417462826, -0.011134743690490723, 0.042120568454265594, -0.0012146010994911194, -0.026962345466017723, -0.004800823517143726, -0.015028664842247963, 0.01266064215451479, 0.007931794971227646, 0.02576753869652748, 0.01890099234879017, -0.007867016829550266, 0.01342359185218811, 0.002733302302658558, 0.011069964617490768, 0.020441286265850067, 0.03650641068816185, 0.02095951698720455, 0.030431605875492096, 0.03112258017063141, -0.001894777757115662, 0.01475515402853489, -0.022327067330479622, -0.004779230337589979, 0.004969967994838953, 0.012588665820658207, -0.00950807798653841, -0.003636605804786086, -0.023939337581396103, -0.016669725999236107, -0.010753268375992775, -0.0007089671562425792, 0.01960636116564274, 0.01645379699766636, 0.0399324856698513, 0.021204236894845963, -0.014344888739287853, 0.03676552698016167, -0.032302990555763245, 0.009738401509821415, -0.01313568651676178, -0.002511975122615695, 0.006287135183811188, -0.009565658867359161, -0.0019379635341465473, 0.010954802855849266, -0.006207961123436689, -0.0022762524895370007, -0.003291119122877717, 0.004163832403719425, -0.019073735922574997, -0.02188081480562687, -0.011242708191275597, 0.009421706199645996, 0.0018407955067232251, -0.00037247769068926573, -0.0073631820268929005, -0.01284778118133545, -0.006902533117681742, 0.014798340387642384, -0.0020747187081724405, 0.010206248611211777, -0.006330321077257395, 0.026300163939595222, -0.000665781379211694, -0.016626540571451187, 0.007795040030032396, 0.011192324571311474, -0.010962000116705894, -0.011753739789128304, -0.002731502987444401, 0.01645379699766636, -0.015402941964566708, -0.0020315328147262335, 0.006531855091452599, -0.002873656339943409, 0.01443845871835947, -0.009256159886717796, 0.0059380498714745045, -0.0030194083228707314, 0.02858901210129261, -0.01132907997816801, -0.001312668900936842, 0.006643418222665787, -0.02896328829228878, 0.004088257439434528, -0.00021907805057708174, 0.007643889635801315, -0.008529199287295341, -0.009155393578112125, -0.008334862999618053, -0.014128959737718105, -0.00878831371665001, 0.025134146213531494, 0.03964458033442497, 0.07330072671175003, -0.013574741780757904, -0.02402571029961109, -0.005549377761781216, 0.011674566194415092, -0.005488197784870863, 0.0027980811428278685, -0.009889552369713783, 0.015777219086885452, 0.006492267828434706, 0.016885655000805855, 0.00988235417753458, -0.021031493321061134, -0.008932266384363174, -0.018037276342511177, -0.0403643436729908, -0.0149998739361763, 0.0159931480884552, -0.004725248087197542, -0.009191381745040417, -0.008183712139725685, 0.02424163930118084, -0.02229827642440796, -0.0012991733383387327, -0.0028880515601485968, 0.016137100756168365, -0.0058732712641358376, -0.024227242916822433, -0.015921171754598618, 0.0014584210002794862, 0.005113920662552118, -0.01081804744899273, 0.026875974610447884, 0.003604216268286109, 0.006225955206900835, -0.01336601097136736, 0.008298874832689762, -0.0007503535598516464, 0.0010364595800638199, -0.004577696789056063, -0.002884452696889639, -0.008025364018976688, -0.005866073537617922, -0.006261943373829126, 0.020786773413419724, 0.00853639654815197, -0.0027027123142033815, -0.006038816645741463, -0.009097812697291374, 0.012092028744518757, -0.0037823577877134085, -0.007485541980713606, -0.0016797484131529927, -0.03443349152803421, 0.041285641491413116, 0.03368493914604187, -0.013006128370761871, -0.01369710173457861, -0.0195199903100729, 0.020354915410280228, -0.014927897602319717, 0.002664924832060933, -0.03224541246891022, -0.01427291240543127, -0.014884712174534798, 0.0019235683139413595, -0.02300364524126053, 0.01727432757616043, -0.014056983403861523, 0.01623786799609661, 0.012603061273694038, 0.009695216082036495, -0.01802288182079792, 0.02067161165177822, -0.03552753105759621, -0.026904763653874397, -0.010127074085175991, -0.003510646987706423, 0.005632150452584028, -0.013862647116184235, -0.0064454833045601845, -0.021405769512057304, 0.004311384167522192, 0.04019160196185112, 0.0013252648059278727, 0.008234095759689808, -0.009270555339753628, -0.02386736124753952, -0.0016104711685329676, 0.0010184654965996742, 0.018210019916296005, 0.03472139686346054, 0.0021916802506893873, -0.01495668850839138, 0.011825716122984886, -0.011177929118275642, 0.02461591549217701, 0.003598818089812994, 0.02991337701678276, -0.016799282282590866, -0.012487898580729961, -0.020326124504208565, -0.010393386706709862, 0.04629519581794739, -0.013581939972937107, 0.0019973439630120993, 0.00035830732667818666, -0.026458511129021645, -0.006852149963378906, 0.008874685503542423, -0.023349132388830185, 0.006517459638416767, -7.506909605581313e-05, 0.030517978593707085, 0.036362458020448685, 0.032504525035619736, -0.001954158302396536, -0.015532499179244041, 0.005315454211086035, -0.025090960785746574, -0.020282939076423645, 0.014416865073144436, -0.01985108107328415, 0.02576753869652748, -0.012804594822227955, -0.0001926492404891178, 0.012984535656869411, -0.05677495524287224, 0.009544066153466702, -0.0059812357649207115, 0.005714923143386841, 0.020210962742567062, -0.0056681386195123196, -0.012480701319873333, -0.019203294068574905, 0.017591023817658424, -0.024385591968894005, 0.013776276260614395, -0.014582411386072636, -0.0019379635341465473, 0.01369710173457861, 0.022931668907403946, -0.0017337306635454297, -0.00043680655653588474, 0.009637635201215744, 0.004318581894040108, 0.00303560309112072, 0.01570524275302887, 0.016353029757738113, -0.023392317816615105, -0.013956217095255852, -0.0035466353874653578, -0.00024944308097474277, 0.027293436229228973, 0.0011201321613043547, -0.004397755954414606, 0.011509020812809467, -0.010400584898889065, 0.0030176090076565742, -0.02830110676586628, -0.01844034343957901, 0.011940878815948963, 0.02399691939353943, 0.008363652974367142, 0.004660469479858875, 0.027480576187372208, -0.028517035767436028, 0.009990319609642029, -0.005373035557568073, 0.014625596813857555, 0.0013234653742983937, 0.0014701172476634383, -0.019750313833355904, -0.02576753869652748, -0.007507134694606066, 0.010177457705140114, -0.0075575183145701885, -0.025969071313738823, 0.016640935093164444, -0.013617928139865398, -0.024212848395109177, 0.004012682009488344, 0.018296390771865845, 0.007449553348124027, -0.02585390955209732, -0.026760810986161232, -0.008032562211155891, 0.02192400023341179, 0.021650489419698715, 0.0008664154447615147, 0.0030661930795758963, -0.006934922654181719, 0.010918814688920975, 0.0005380233051255345, 0.0456618033349514, 0.003652800340205431, 0.0009167989483103156, 0.038147471845149994, -0.024644706398248672, -0.00934253167361021, -0.024543939158320427, -0.001307270722463727, 0.031727179884910583, 0.00797498133033514, -0.012106424197554588, -0.03169839084148407, -0.04914546012878418, -0.03394405171275139, 0.0031903523486107588, 0.014344888739287853, 0.012271969579160213, -0.008759523741900921, -0.008975452743470669, -0.00343867065384984, -0.022845298051834106, 0.006333920173346996, -0.003242535050958395, -0.02344989962875843, -0.0055817668326199055, 0.011710554361343384, -0.005502592772245407, -0.0058408817276358604, 0.018281996250152588, -0.0201821718364954, 0.02743738889694214, 0.015690846368670464, -0.02311880700290203, 0.009536867961287498, 0.015014269389212132, -0.014812735840678215, -0.014308900572359562, -0.019217688590288162, -0.0066938018426299095, -0.008673151955008507, 0.009623239748179913, -0.008838697336614132, -0.014359284192323685, -0.017519047483801842, -0.014496039599180222, -0.02307562157511711, 0.02858901210129261, -0.006341117434203625, -0.012516689486801624, -0.008471617475152016, -0.00824849121272564, -0.04753319174051285, -0.016712911427021027, -0.013617928139865398, 0.022197511047124863, -0.016137100756168365, 0.03446228429675102, -0.026861578226089478, 0.026343349367380142, -0.018411554396152496, 0.01872824877500534, -0.00828447937965393, -0.01877143606543541, -0.007312798406928778, 0.00462088268250227, 0.007845423184335232, -0.010407782159745693, -0.034663815051317215, 0.014496039599180222, -0.013186070136725903, 0.0330803357064724, 0.019404826685786247, -0.026156209409236908, -0.01872824877500534, -0.017303118482232094, -0.01855550706386566, -0.013222058303654194, -0.008457222953438759, 0.008298874832689762, -0.00851480383425951, -0.002157491398975253, 0.0049231830053031445, -0.043070655316114426, -0.008500408381223679, 0.0001641960843699053, -0.002619939623400569, 0.0009500879677943885, 0.011840111576020718, -0.013956217095255852, 0.007982178591191769, 0.020829958841204643, 0.015388546511530876, -0.013294034637510777, -0.02726464718580246, -0.02552281878888607, -0.005822887644171715, -0.003947903402149677, 0.014445655979216099, -0.024054501205682755, -0.0077734473161399364, -0.00828447937965393, 0.03236057236790657, 0.026256976649165154, 0.021520933136343956, -0.03273484855890274, 0.014517632313072681, 0.017389489337801933, 0.0005308256950229406, -0.0031093789730221033, -0.010789256542921066, 0.0013819461455568671, -0.02805638685822487, 0.03339703381061554, 0.018281996250152588, 0.008529199287295341, 0.001894777757115662, 0.004584894515573978, -0.029193613678216934, 0.010364596731960773, 0.015215802937746048, -0.012293563224375248, -0.02208234742283821, 0.012588665820658207, 0.0005947047029621899, -0.004682062193751335, -0.02979821339249611, -0.01749025657773018, 0.04122805967926979, -0.023723408579826355, -0.0032047475688159466, 0.003602416953071952, 0.014301703311502934, -0.0022996447514742613, 0.020412497222423553, 0.017806952819228172, 0.026242582127451897, 0.004646074026823044, -0.00034166278783231974, -0.034088004380464554, 0.01137226540595293, 0.0039694965817034245, -0.008860290050506592, 0.02706311270594597, -0.02971184253692627, 0.014294506050646305, -0.005750911310315132, 0.0031417682766914368, 0.010040702298283577, -0.018497925251722336, -0.0264729056507349, -0.0012622855138033628, 0.004628079943358898, 0.009061824530363083, -0.0014017396606504917, -0.014884712174534798, -0.029078450053930283, 0.004534510895609856, -0.0017049401067197323, -0.016770493239164352, -0.0068989344872534275, 0.012804594822227955, 0.0033594968263059855, 0.004847608041018248, -0.016468191519379616, -0.003951502498239279, -0.021938394755125046, 0.012128016911447048, -0.03233178332448006, -0.0186418779194355, 0.020023824647068977, -0.007874214090406895, 0.005265071056783199, 0.00012865774624515325, -0.00980318058282137, -0.00014968834875617176, -0.01645379699766636, 0.0004934879252687097, -0.020815564319491386, -0.004163832403719425, -0.008421234786510468, 0.006794568616896868, -0.0037211780436336994, -0.017475860193371773, -0.010472561232745647, 0.0003029755025636405, 0.008889080956578255, -0.0015807808376848698, 0.02249981090426445, -0.002924039727076888, 0.0072552175261080265, 0.022341463714838028, -0.007658285088837147, -0.012725421227514744, 0.0006446383194997907, -0.006369908340275288, -0.0012739816447719932, -0.010098284110426903, -0.009731204248964787, 0.057034071534872055, -0.004246605560183525, -1.7038155419868417e-05, 0.007323594763875008, 0.008003771305084229, -0.008529199287295341, -0.009169789031147957, 0.038061100989580154, -0.003136370098218322, -0.006765778176486492, 0.005059938412159681, -0.016266658902168274, -0.005470203701406717, -0.012423120439052582, -0.014510435052216053, 0.007571913301944733, 0.004073861986398697, 0.013711497187614441, 0.011854507029056549, 0.013913030736148357, 0.018238810822367668, 0.015431731939315796, 0.0034062813501805067, 0.025422051548957825, 0.001613170257769525, 0.004732445813715458, 0.002574954414740205, 0.004203419666737318, -0.0016761495498940349, 0.017806952819228172, -0.009472089819610119, 0.024385591968894005, -0.021938394755125046, 0.0005807592533528805, -0.00032456842018291354, 0.02274453081190586, -0.0029582285787910223, 0.021981582045555115, 0.014899106696248055, 0.027279041707515717, -0.008414036594331264, -0.011249905452132225, 0.014740759506821632, -0.0059380498714745045, 0.00012832036009058356, -0.0048584043979644775, 0.0060244216583669186, 0.0014827130362391472, 0.005355041474103928, -0.0012730818707495928, -0.024184057489037514, -0.012840582989156246, -0.004268198274075985, 0.005340646021068096, -0.000719763629604131, -0.01340199913829565, 0.009191381745040417, -0.004063065629452467, 0.0020261346362531185, 0.005193094722926617, -0.011199521832168102, -0.003393685445189476, -0.03385768085718155, -0.022571787238121033, 0.016309844329953194, -0.015100641176104546, 0.0010958401253446937, 0.0010499551426619291, 0.02113226056098938, 0.010962000116705894, 0.0005204790504649282, 0.03290759399533272, 0.012725421227514744, -0.010522943921387196, 0.00021019346604589373, 0.01831078715622425, 0.0011309286346659064, -0.012595863081514835, 0.005869672168046236, 0.004365366417914629, -0.025738747790455818, -0.008486012928187847, -0.009875156916677952, -0.02126181684434414, -6.191091961227357e-05, 0.006575040984898806, 0.013934623450040817, -0.004894392564892769, 0.021333793178200722, -0.00849321112036705, -0.012545480392873287, 0.002884452696889639, 0.015014269389212132, 0.01819562539458275, -0.0012110023526474833, -0.00010267877951264381, -0.005254274699836969, -0.013913030736148357, 0.015302174724638462, -0.005221885163336992, -0.005509790498763323, -0.00043590684072114527, -0.0024076092522591352, -0.003283921629190445, -0.0008749626576900482, -0.00849321112036705, 0.017950905486941338, 0.026717625558376312, 0.00039856910007074475, 0.019779104739427567, 0.0026037448551505804, 0.0034188772551715374, -0.018382763490080833, -0.0201821718364954, -0.023766595870256424, 0.016439400613307953, 0.01744707114994526, 0.0016806480707600713, -0.025350075215101242, -0.019663942977786064, 0.012581468559801579, -0.023435503244400024, 0.018411554396152496, 0.0032569305039942265, -0.018382763490080833, -0.006409495137631893, -0.018656272441148758, -0.011753739789128304, -0.017475860193371773, -0.007651087362319231, 0.01619468256831169, -0.005736516322940588, 0.012667840346693993, 0.005124717019498348, 0.004991560708731413, -0.0022312672808766365, -0.0014818133786320686, -0.012739816680550575, 0.01943361759185791, -0.018670668825507164, -0.012603061273694038, 0.020167777314782143, -0.007600703742355108, -0.00015137529408093542, 0.005016752518713474, 0.0043257796205580235, 0.008075747638940811, -0.008817104622721672, 0.012379934079945087, 0.019707128405570984, 0.018670668825507164, -0.01214241236448288, -0.0008758623735047877, -0.005898463074117899, 0.0003870978835038841, -0.007543122861534357, -0.018368367105722427, 0.0007989376317709684, 0.002369821770116687, -0.012135215103626251, -0.0041206469759345055, 0.006272740196436644, -0.005815689917653799, -0.0050635370425879955, -0.005409023724496365, 0.011530613526701927, 0.011825716122984886, 0.019088132306933403, 0.018253205344080925, 0.00349085358902812, -0.010954802855849266, 0.02651609294116497, -0.0007098668720573187, -0.012149609625339508, -0.008961057290434837, -0.013833857141435146, 0.005167902912944555, 0.004638876765966415, -0.03169839084148407, 0.009767192415893078, 0.01011267863214016, 0.010947604663670063, 0.01238713227212429, 0.006366309244185686, 0.009270555339753628, -0.006254746112972498, 0.008450024761259556, -0.01831078715622425, -0.003023007186129689, 0.020542053505778313, -0.010666896589100361, 0.010307014919817448, -0.007035689428448677, -0.009428903460502625, -0.010688490234315395, 0.0009500879677943885, 0.0015438930131495, 0.013689904473721981, -0.01238713227212429, 0.013020523823797703, -0.0026865177787840366, 0.011192324571311474, 0.003085986478254199, 0.00493038073182106, -0.011242708191275597, -0.017706185579299927, -0.016309844329953194, -0.01106276735663414, -0.01769178919494152, 0.006754981819540262, -0.06115111708641052, -0.013308429159224033, 0.022355858236551285, 0.007723063696175814, -0.026991136372089386, 0.031093789264559746, 0.004037873819470406, -0.020585238933563232, 0.027912434190511703, 0.002731502987444401, -0.003937107045203447, 0.007140055298805237, 0.020873146131634712, -0.020642820745706558, 0.0033469009213149548, 0.01890099234879017, 0.002101709833368659, 0.012250376865267754, 0.020081404596567154, -0.0026829189155250788, 0.03405921533703804, -0.01450323686003685, -0.019275270402431488, -0.0009779788088053465, 0.014107367023825645, 0.023924943059682846, 0.023521875962615013, -0.027480576187372208, 0.0052794660441577435, -0.008010969497263432, -0.006603831425309181, 0.008939464576542377, 0.0024381992407143116, 0.01344518456608057, 0.015345360152423382, 0.012020052410662174, 0.004714451730251312, -0.0004208367899991572, -0.013387603685259819, -1.952640013769269e-05, 0.0165401678532362, -0.0022996447514742613, -0.01320046465843916, 0.015345360152423382, 0.019951848313212395, 0.004879997577518225, -0.004167431499809027, -0.020916331559419632, 0.01645379699766636, -0.003764363704249263, -0.0041206469759345055, 0.013567544519901276, -0.0008277281885966659, 0.0003610064450185746, 0.016266658902168274, 0.011365068145096302, -0.0009914743714034557, 0.0012874772073701024, -0.016021938994526863, -0.002819674089550972, 0.003955101128667593, -0.0034062813501805067, 0.011069964617490768, 0.016799282282590866, -0.008910673670470715, 0.007809435483068228, 0.014625596813857555, 0.010515746660530567, 0.009292148053646088, 0.0366215743124485, -0.0072984034195542336, -0.004671265836805105, -0.0024328010622411966, -0.034001633524894714, 0.0016869460232555866, -0.02428482472896576, -0.024256033822894096, -0.007186839822679758, -0.005319053307175636, -0.011221114546060562, 0.008363652974367142, -0.009263358078897, 0.025335680693387985, 0.010602118447422981, -0.010098284110426903, 0.00826288666576147, 0.009025836363434792, 0.006179170683026314, 0.014661584980785847, 0.014431260526180267, -0.00412424560636282, -0.0023734206333756447, -0.00932093895971775, -0.025796327739953995, 0.00957285612821579, 0.003444069065153599, 0.0009527871152386069, -0.014841525815427303, 0.009709611535072327, 0.00959444884210825, 0.008457222953438759, -0.0023896151687949896, -0.009867959655821323, 0.010436573065817356, 0.0079965740442276, -0.006521058268845081, -0.006312326993793249, 0.004613684955984354, -0.010904419235885143, -0.00657863961532712, -0.0019055742304772139, 0.016021938994526863, -0.003391886129975319, 0.007938993163406849, 0.011012383736670017, 0.014575213193893433, 0.025494027882814407, 0.03233178332448006, 0.00043478221050463617, -0.007183241192251444, -0.004005484748631716, 0.007377577014267445, -0.00502395024523139, -0.02188081480562687, 0.007852621376514435, 0.009349729865789413, -0.0057221208699047565, -0.00304639944806695, -0.017432674765586853, 0.003510646987706423, -0.019448013976216316, -0.0009037532145157456, 0.003535838797688484, -0.009659227915108204, 0.0015744828851893544, 0.03405921533703804, 0.012113621458411217, -0.012898163869976997, 0.006841353140771389, 0.011616985313594341, 0.008457222953438759, 0.004671265836805105, 0.01419373881071806, -0.004559702705591917, -0.007823830470442772, -0.009047429077327251, -0.008773918263614178, 0.0016230669571086764, -0.004595690872520208, 0.008608372882008553, -0.021679280325770378, 0.020369309931993484, -0.015590080060064793, -0.019995033740997314, 0.009306543506681919, -0.0006504863849841058, -0.01570524275302887, 0.03037402592599392, -0.0176486037671566, 0.0121855977922678, 0.0028142756782472134, -0.024385591968894005, 0.01749025657773018, -0.017979696393013, -0.0035754258278757334, -0.021031493321061134, 0.009083417244255543, -0.009004242718219757, 0.0036725939717143774, 0.00491958437487483, 0.03745649755001068, 0.001722934190183878, -0.00975999515503645, -0.008759523741900921, 0.02527809888124466, 0.0066398195922374725, 0.010962000116705894, -0.00513911247253418, 0.0006356412777677178, 0.018339578062295914, 0.011732147075235844, 0.014164947904646397, 0.010882826521992683, -0.006636220496147871, 0.0019829487428069115, -0.006945719011127949, -0.0030931842047721148, 0.0012379934778437018, 0.0034098802134394646, -0.014812735840678215, 0.005211088806390762, 0.007021293975412846, -0.0022888483945280313, 0.021146655082702637, -0.0073631820268929005, 0.005995631217956543, 0.020614029839634895, 0.040508296340703964, 0.015935566276311874, 0.00959444884210825, 0.0035178447142243385, 0.010839640162885189, -0.017173560336232185, -0.006409495137631893, -0.004512918181717396, -0.012077633291482925, 0.03587301820516586, -0.00045547541230916977, 0.010962000116705894, 0.011897692456841469, 0.00462088268250227, 0.00876672100275755, 0.008104538545012474, -0.01897296868264675, 0.009061824530363083, 0.022773321717977524, 0.020210962742567062, 0.0031651605386286974, -0.008298874832689762, 0.019951848313212395, -0.015690846368670464, -0.03046039678156376, 0.015561290085315704, 0.006718993652611971, -0.026285767555236816, -0.005869672168046236, 0.017058398574590683, -0.02938075177371502, 0.0038687295746058226, 0.028243524953722954, -0.013862647116184235, -0.007471146527677774, 0.00826288666576147, 0.01245191041380167, 0.003847136627882719, 0.0012973739067092538, -0.0076654828153550625, 0.017432674765586853, -0.0050203511491417885, -0.022514205425977707, -0.011660170741379261, 0.030892254784703255, 0.008637163788080215, 0.010645303875207901, -0.002556960331276059, 0.00439055822789669, -0.011300289072096348, -0.0006050512893125415, 0.007262415252625942, -0.013805066235363483, 0.024083290249109268, 0.016425006091594696, 0.005632150452584028, 0.008154922164976597, 0.0017346303211525083, -0.00462088268250227, 0.0060244216583669186, 0.008183712139725685, 0.000982477329671383, 0.003613213310018182, -0.015964357182383537, 0.0024328010622411966, 0.018958574160933495, -0.009306543506681919, -0.011494625359773636, 0.017101584002375603, 0.003041001269593835, -0.0018281996017321944, 0.010767663829028606, -0.022672554478049278, 0.0015169018879532814, -0.00564654590561986, 0.015935566276311874, 0.005423419177532196, 0.020167777314782143, 0.006204362493008375, -0.01923208497464657, 0.01856990158557892, 0.021247422322630882, 0.020700402557849884, -0.004117047879844904, -0.0023410310968756676, -0.0032029482536017895, -0.005700528156012297, -0.005628551356494427, 0.005905660800635815, 0.004041472915560007, 0.036103345453739166, -0.009335334412753582, 0.0021340991370379925, -0.00010031705460278317, -0.0020819162018597126, -0.00924176536500454, 0.0037751602940261364, 0.0058408817276358604, 0.004109850153326988, -0.002292447257786989, -0.0006702799000777304, 0.002105308696627617, -0.00851480383425951, 0.004520115442574024, -0.004800823517143726, -0.0007058182382024825, 0.0074063679203391075, -0.01523019839078188, 0.006477872841060162, 0.007017695344984531, 0.02452954463660717, 0.015402941964566708, 0.000490338949020952, 0.003647402161732316, 0.006571441888809204, 0.0018380964174866676, -0.008709140121936798, -0.0031093789730221033, 0.00017859134823083878, 0.019217688590288162, 0.004879997577518225, -0.005383831914514303, 0.003246133914217353, -0.022773321717977524, 0.018785830587148666, -0.004581295419484377, -0.00872353557497263, -0.01790771819651127, -0.004646074026823044, 0.014258517883718014, -0.008342060260474682, 0.022111138328909874, 0.002576753729954362, -0.0007786942878738046, 0.005545778665691614, 0.010386189445853233, 0.006999701261520386, -0.0176486037671566, -0.016597749665379524, -0.02311880700290203, 0.00024831845075823367, -0.004743242170661688, -0.0013864446664229035, -0.018469134345650673, 0.00797498133033514, 0.026256976649165154, 0.021060284227132797, 0.021362584084272385, -0.017634209245443344, -0.008968254551291466, -0.0052254837937653065, 0.003753567347303033, -0.015719637274742126, -0.0023302347399294376, -0.019879871979355812, -0.005290262866765261, 0.005304657854139805, -0.030057329684495926, 0.0017247336218133569, 0.008320467546582222, 0.0026505296118557453, -0.015014269389212132, 0.01819562539458275, 0.0041746292263269424, -0.0007984878029674292, -0.009867959655821323, 0.003746369620785117, -0.002047727582976222, 0.010343003086745739, 0.013977809809148312, -0.00668300548568368, -0.0010679493425413966, -0.015647660940885544, 0.0007085173274390399, -0.023924943059682846, -0.018757039681077003, 0.013337220065295696, -0.004541708622127771, 0.014798340387642384, -0.005315454211086035, 0.005257873330265284, -0.0016977424966171384, -0.01422972697764635, 0.01236553955823183, -0.010717280209064484, -0.003343302058055997, -0.008219700306653976, 0.004635277669876814, 0.0011606188490986824, -0.009831971488893032, -0.006945719011127949, -0.011724949814379215, -0.023061227053403854, -0.00030837373924441636, 0.012034447863698006, -0.005135513376444578, 0.010990791022777557, 0.0017571229254826903, -0.0006873742677271366, 0.008997045457363129, -0.018829016014933586, -0.007823830470442772, -0.012890966609120369, -0.002609143266454339, 0.010271026752889156, -0.003510646987706423, -0.0038867236580699682, 0.004995159804821014, -0.002067520981654525, 0.013171674683690071, 0.004178227856755257, 0.04142959415912628, -0.007766249589622021, -0.007319996133446693, -0.01905934140086174, -0.008507605642080307, 0.006783772259950638, -0.003735573263838887, 0.0007026692619547248, -0.014942293055355549, 0.0016014741268008947, 0.010307014919817448, -0.017144769430160522, -0.020311729982495308, 0.0012092029210180044, 0.019174503162503242, -0.02113226056098938, 0.008687547408044338, -0.029395146295428276, -0.013934623450040817, -0.0013009727699682117, 0.010782059282064438, -0.010602118447422981, 0.008874685503542423, -0.015921171754598618, 0.0011795125901699066, 0.005556575022637844, 0.0028574615716934204, -0.0017715182621032, 0.017288722097873688, -0.01261745672672987, -0.010623711161315441, 0.013294034637510777, -0.011545008979737759, 0.009867959655821323, -0.007240822073072195, 0.02241344004869461, 0.003922711592167616, -0.0026415325701236725, -0.006384303327649832, -0.03356977552175522, 0.003919112961739302, -0.015316570177674294, 0.004484127275645733, -0.024875031784176826, -0.018497925251722336, 0.013387603685259819, -0.011048371903598309, -0.0169864222407341, 0.029683051630854607, 0.003386487951502204, 0.008212503045797348, 0.005650144536048174, -0.018829016014933586, 0.009544066153466702, -0.00711846211925149, 0.005988433491438627, 0.004595690872520208, -0.02660246379673481, -0.0033127120696008205, -0.009421706199645996, 0.0007544022519141436, -0.04312823712825775, 0.0013198665110394359, -0.007874214090406895, -0.03538357838988304, -0.027235856279730797, -1.7951917470782064e-05, 0.004264599643647671, 0.001959556480869651, 0.0034062813501805067, -0.010249434038996696, -0.00450572045519948, -0.021607303991913795, -0.025263702496886253, 0.00828447937965393, 0.003435072023421526, 0.011984064243733883, 0.010623711161315441, -0.021808838471770287, -0.01419373881071806, -0.013545951806008816, -0.00042511039646342397, -0.024428777396678925, -0.0059380498714745045, -0.006535453721880913, -0.011948076076805592, 0.009292148053646088, -0.025537213310599327, -0.0004831413389183581, -0.011365068145096302, -0.00013765478797722608, -0.0032623286824673414, 0.01033580582588911, 0.0051283156499266624, -0.015172617509961128, -0.0029366356320679188, -0.008104538545012474, -0.00907621905207634, 0.027710899710655212, -0.01189049519598484, -0.00504554295912385, -0.0023446299601346254, -9.649331332184374e-05, 0.001695043290965259, -0.01029981765896082, -0.0038867236580699682, 0.00979598332196474, -0.012732618488371372, -0.012732618488371372, 0.016972025856375694, -0.012588665820658207, 0.0015303974505513906, 0.013617928139865398, 0.0016860462492331862, 0.012307957746088505, 0.0010580525267869234, -8.558439731132239e-05, -0.005790498573333025, 0.020210962742567062, -0.0012146010994911194, 0.008097341284155846, 0.008399641141295433, 0.017346303910017014, 0.0015501909656450152, -0.006139583885669708, 0.013603532686829567, 0.02772529423236847, -0.009407310746610165, -0.0068449522368609905, 0.009472089819610119, -0.01744707114994526, 0.0031939512118697166, -0.006762179080396891, -0.012192795984447002, 0.01980789564549923, 0.006956515368074179, 0.004721649456769228, -0.00220067729242146, 0.01815243810415268, 0.0020279339514672756, 0.005941648967564106, 0.0034134790766984224, 0.01271822303533554, -0.00037697621155530214, -0.005153507459908724, 0.00878831371665001, -0.017087189480662346, 0.008853092789649963, -0.000512831611558795, -0.009407310746610165, 0.005768905393779278, 4.2623501940397546e-05, 0.012588665820658207, -0.026156209409236908, -0.005196693353354931, 0.011408253572881222, 0.004358168691396713, -0.01132907997816801, -0.008082945831120014, -0.001462019863538444, 0.006711795926094055, 0.031064998358488083, -0.0012676836922764778, 0.029740633442997932, -0.023651432245969772, 0.012646246701478958, -0.025177331641316414, -0.01782134734094143, 0.04142959415912628, 0.004264599643647671, 0.0293375663459301, -0.005488197784870863, 0.026746416464447975, -0.002153892768546939, -0.013898635283112526, -0.00542701780796051, 0.021074678748846054, 0.0063483151607215405, 0.010450967587530613, -0.0009833771036937833, -0.010177457705140114, -0.0021233027800917625, 0.010782059282064438, 0.011213917285203934, 0.012783002108335495, -0.007701470982283354, 0.0004451288259588182, 0.03244694322347641, -0.013769078068435192, 0.009716808795928955, 0.016180286183953285, 0.005729318596422672, 0.0015052056405693293, 0.0165401678532362, -0.013826658949255943, 0.019865475594997406, 0.01002630777657032, 0.008759523741900921, 0.0001313568645855412, -0.010551734827458858, -0.005736516322940588, 0.014654387719929218, -0.008234095759689808, 0.014042587950825691, 0.012286365032196045, -0.0077734473161399364, -0.011674566194415092, -0.007492739241570234, -0.013114092871546745, -0.013869845308363438, 0.005686132702976465, 0.0024525944609194994, 0.00139094318728894, -0.006657813675701618, -0.007550320588052273, 0.026285767555236816, -0.007931794971227646, -0.021765653043985367, -0.00063204241450876, 0.001260486082173884, -0.004685661289840937, -0.007345187943428755, -0.0021197039168328047, -0.025206122547388077, 0.010105481371283531, -0.005509790498763323, -0.007391972467303276, -0.014726364053785801, 0.010573327541351318, 0.0049087880179286, -0.013841054402291775, -0.015532499179244041, -0.009169789031147957, 0.008867488242685795, -0.007276810240000486, 0.0038291425444185734, -0.023852966725826263, 0.02175125665962696, 0.00024921816657297313, 0.004822416231036186, 0.0047072540037333965, -0.004937578458338976, -0.003976693842560053, -0.0016140699153766036, 0.028790544718503952, 0.010429374873638153, 0.009443298913538456, -0.007867016829550266, 0.016712911427021027, 0.003026606049388647, -0.0016635536449030042, -0.004462534561753273, -0.005369436461478472, -0.015129431150853634, -0.010508549399673939, 0.027538156136870384, 0.01245191041380167, 0.004250204190611839, 0.01645379699766636, 0.003280322765931487, -0.022773321717977524, 0.003129172371700406, -0.016885655000805855, -0.0010355599224567413, 0.02108907513320446, 0.004901590291410685, -0.020815564319491386, -0.014208134263753891, 0.034203168004751205, 0.005750911310315132, -0.006740586366504431, 0.00441215094178915, -0.003080588299781084, 0.008932266384363174, 0.008234095759689808, -0.0119120879098773, 0.01711597852408886, -0.014294506050646305, -0.0025443644262850285, 0.009623239748179913, -0.012962942942976952, -0.011516218073666096, 0.00025574100436642766, -0.0006405896274372935, -0.0082700839266181, -0.019750313833355904, -0.03719738498330116, -0.0073523856699466705, -0.04171749949455261, -0.002502978080883622, -0.0023248365614563227, 0.01375468261539936, 0.007787842303514481, 0.008212503045797348, 0.008010969497263432, 0.00759350648149848, 0.0010904419468715787, 0.015100641176104546, 0.005347843747586012, -0.004156635142862797, -0.028416268527507782, -0.027710899710655212, -0.004512918181717396, 0.004012682009488344, -0.017835741862654686, -0.0027494970709085464, -0.0258107241243124, -0.011904890649020672, -0.012264772318303585, 0.00826288666576147, 0.009637635201215744, -0.008903476409614086, 0.01186890248209238, 0.002979821525514126, -0.01181132160127163, 0.004581295419484377, -0.012336748652160168, -0.014596806839108467, 0.009421706199645996, -0.035786647349596024, 0.0065534478053450584, 0.010486955754458904, 0.02664564922451973, 0.0029690249357372522, -0.006690202746540308, -0.021319398656487465, -0.014128959737718105, 0.008111735805869102, 0.0024561933241784573, -0.012070436030626297, 0.023219574242830276, 0.012459108605980873, 0.0076654828153550625, 0.013524358160793781, 0.0008421234670095146, -0.006254746112972498, -0.0006194465677253902, 0.007348786573857069, -0.0013603533152490854, -0.012689433060586452, 0.005218286532908678, 0.010616513900458813, 0.0022330665960907936, -0.012135215103626251, 0.012401527725160122, 0.0013045716332271695, -0.013855449855327606, -0.009659227915108204, 0.0006585837109014392, 0.0048152185045182705, -0.004286192357540131, -0.008421234786510468, 0.011091557331383228, 0.0010265628807246685, -0.0010058697080239654, 0.018138043582439423, 0.033627357333898544, 0.030805883929133415, -0.019260874018073082, -0.009652030654251575, -0.0284594539552927, 0.0057761031202971935, -0.002877255203202367, -0.014359284192323685, 0.028646592050790787, 0.0034746588207781315, 0.007888609543442726, 0.02324836514890194, -0.0008515703375451267, 0.0014071378391236067, 0.011652973480522633, -0.005671737249940634, -0.0035142458509653807, -0.0019415623974055052, 0.007982178591191769, -0.013473975472152233, -0.0035772251430898905, -0.017792556434869766, 0.023637037724256516, 0.01943361759185791, 0.005520586855709553, 0.01731751300394535, 0.009918343275785446, 0.021362584084272385, 0.008010969497263432, 0.021780047565698624, 0.006967311725020409, -0.008198107592761517, -0.017044002190232277, 0.0030176090076565742, -0.018613087013363838, 0.017878929153084755, -0.012523886747658253, 0.008025364018976688, -0.04623761400580406, -0.01369710173457861, -0.0176486037671566, 0.0140065997838974, 0.011948076076805592, 0.01612270623445511, -0.0013324624160304666, 0.012343945913016796, 0.00256955623626709, 0.013394800946116447, -0.012955745682120323, -0.006744184996932745, -0.0003553832939360291, -0.0009761794353835285, 0.004840410314500332, -0.02812836319208145, 0.016684120520949364, -0.028041990473866463, 0.004833212587982416, 0.0060244216583669186, 0.02203916199505329, -0.011113150045275688, -0.012567073106765747, 0.016511376947164536, -0.02651609294116497, 0.01687125861644745, -0.009688018821179867, -3.7253391838021344e-06, 0.010926011949777603, 0.014855921268463135, -0.022240696474909782, 0.008140526711940765, 0.004944776184856892, -0.000589306466281414, 0.017706185579299927, -0.002360824728384614, 0.006031619384884834, 0.006193566136062145, -0.01678488776087761, -0.030863463878631592, 0.004386959131807089, 0.01819562539458275, 0.03342582285404205, 0.005995631217956543, -2.827040407282766e-05, -0.0140065997838974, 0.022471019998192787, 0.02560918964445591, 0.006546250078827143, 0.005855277180671692, -0.010537339374423027, -0.0337425172328949, 0.004592091776430607, -0.002047727582976222, -0.006168374326080084, 0.025508422404527664, -0.0038219448179006577, -0.008500408381223679, -0.0169864222407341, 0.025162937119603157, 0.007586308754980564, 0.0038183459546417, -0.007845423184335232, 0.004491325002163649, 0.022197511047124863, 0.001103937509469688, -0.0071472530253231525, -0.0033738920465111732, 0.010191853158175945, 0.01184730976819992, -0.005977637134492397, 0.00035943195689469576, 0.0067045981995761395, -0.030863463878631592, 0.011170731857419014, 0.009889552369713783, -0.016727305948734283, -0.027984410524368286, -0.008817104622721672, -0.02201037108898163, 0.008414036594331264, 0.01756223291158676, -0.010990791022777557, 0.00660023232921958, 0.004606487229466438, 0.009313741698861122, 0.017346303910017014, -0.016396215185523033, -0.004991560708731413, 0.020829958841204643, 0.00033109125797636807, 0.013805066235363483, 0.013416393660008907, 0.01972152292728424, 0.0006963713094592094, -0.00596684031188488, -0.023090017959475517, 0.0015285980189219117, 0.007931794971227646, -0.005394628271460533, -0.0030392019543796778, 0.008687547408044338, 0.000422411278123036, -0.01656895875930786, -0.01985108107328415, 0.0025641578249633312, 0.01547491829842329, 0.018944179639220238, -0.004764835350215435, -0.011264300905168056, 0.033828891813755035, -0.030057329684495926, -0.00030185087234713137, -0.0025371666997671127, 0.002668523695319891, -0.011357869952917099, 0.0069097308441996574, -0.004484127275645733, 0.01574842818081379, 0.01396341435611248, -0.0031057801097631454, 0.017144769430160522, 0.016396215185523033, 0.0075143324211239815, 0.017015211284160614, 0.003588021732866764, 0.009234567172825336, 0.02710629813373089, 0.006017223931849003, 0.022139929234981537, 0.0175334420055151, 0.010753268375992775, -0.019692732021212578, 0.01628105342388153, -0.006711795926094055, 0.0011084360303357244, -0.006974509451538324, -0.0012002058792859316, -0.006661412306129932, -0.01427291240543127, -0.0025101755745708942, 0.025350075215101242, -0.04569059610366821, -0.01715916581451893, -0.02920800819993019, -0.0008038859814405441, 0.004772033076733351, 0.014200936071574688, 0.019217688590288162, -0.023147597908973694, 0.011487427167594433, 0.006819760426878929, 0.015719637274742126, 0.020067010074853897, 0.0005222784820944071, -0.011739344336092472, -0.004548906348645687, 0.0021143057383596897, -0.02055644989013672, -0.01135067269206047, -0.003015809692442417, -0.007485541980713606, 0.0011714153224602342, 0.005466604605317116, 0.007766249589622021, 0.010191853158175945, 0.02075798250734806, -0.03552753105759621, -0.01819562539458275, -0.01769178919494152, 0.002864659298211336, -0.0089898481965065, 0.017979696393013, 0.02100270241498947, -0.007859818637371063, -0.005409023724496365, 0.006625424139201641, 0.002670323010534048, 0.012437515892088413, -0.013639520853757858, -0.016928840428590775, 0.007456751074641943, -0.006690202746540308, 0.0019721523858606815, -0.010508549399673939, 0.017187954857945442, 0.016554564237594604, 0.00018342725525144488, -0.030517978593707085, 0.01448164414614439, 0.034491073340177536, -0.01669851690530777, -0.0273510180413723, 0.00928495079278946, 0.01475515402853489, -0.008507605642080307, -0.004667667206376791, -0.007222827989608049, 0.014841525815427303, 0.002256459090858698, -0.023104412481188774, -0.008291676640510559, 0.008277282118797302, 0.02909284643828869, -0.03521083667874336, -0.004081059712916613, 0.007751854136586189, 0.008111735805869102, 0.0027908834163099527, 0.016381820663809776, 0.008550792001187801, -0.00017251833924092352, 0.007492739241570234, 0.0061971647664904594, 0.006481471471488476, -0.009688018821179867, 0.008392443880438805, 0.02378099039196968, 0.02432801015675068, 0.006074804812669754, -0.02523491345345974, -0.015215802937746048, -0.010450967587530613, -9.497506107436493e-05, -0.019116921350359917, -0.003397284308448434, -0.018584296107292175, -0.006798167712986469, -0.012840582989156246, 0.03765803202986717, -0.0006855748360976577, -0.012106424197554588, -0.02605544403195381, 0.0020315328147262335, -0.005099525209516287, -0.013409196399152279, -0.0035124465357512236, 0.0030607949011027813, 0.009025836363434792, -0.015014269389212132, 0.0045561036095023155, -0.008572384715080261, 0.02991337701678276, 0.0008943062857724726, 0.0018228014232590795, -0.015806009992957115, 0.008111735805869102, 4.8190424422500655e-05, -0.03811868280172348, 0.021434560418128967, -0.010083888657391071, 0.004354570060968399, 0.0011525214649736881, -0.007435158360749483, -0.00036055658711120486, -0.020354915410280228, 0.008176514878869057, -0.009695216082036495, -0.007262415252625942, 0.03215903788805008, -0.003143567591905594, 0.02201037108898163, 0.004181826487183571, 0.00036820408422499895, 0.014388075098395348, 0.013502765446901321, -0.002195279113948345, 0.006416692864149809, 0.012207191437482834, 0.005236280616372824, -0.015546894632279873, -0.004239407833665609, 0.008709140121936798, 0.010710082948207855, 0.042782749980688095, -0.023305946961045265, 0.011724949814379215, -0.021722465753555298, -0.010515746660530567, -0.035239625722169876, -0.003645602846518159, -0.004268198274075985, -0.01184730976819992, 0.007910202257335186, -0.01782134734094143, -0.015590080060064793, 0.015590080060064793, 0.007143653929233551, -0.006848550867289305, 0.00493038073182106, 0.018281996250152588, 0.002047727582976222, -0.0020333323627710342, 0.009616042487323284, 0.010501351207494736, -0.0007449553813785315, -0.02473107911646366, -0.004077461082488298, 0.009947133250534534, 0.004548906348645687, 0.008975452743470669, -0.002981620840728283, -0.003753567347303033, 0.0024957803543657064, -0.006481471471488476, 0.0006783772259950638, -0.00450572045519948, -0.012034447863698006, 0.013668311759829521, 0.01616589166224003, 0.015590080060064793, -0.002306842477992177, 0.009428903460502625, -0.0017319312319159508, -0.01819562539458275, -0.00803975947201252, 0.013740288093686104, 0.012811793014407158, -0.019750313833355904, -0.0036653962451964617, -0.0030104112811386585, 0.005621354095637798, -0.03475018963217735, -0.010717280209064484, -0.010364596731960773, 0.006711795926094055, -0.008795511908829212, 0.008917870931327343, 0.005988433491438627, 0.010580525733530521, 0.012509492225944996, -0.0032101457472890615, -0.004361767787486315, 0.013387603685259819, -0.0027944822795689106, 0.011300289072096348, 0.015978751704096794, 0.007463948801159859, 7.147027645260096e-05, -0.014409667812287807, -0.0058840676210820675, -0.011595391668379307, 0.021564118564128876, -0.011343474499881268, 0.011451439000666142, 0.0017121377168223262, 0.013416393660008907, -0.002260057721287012, -0.004933979827910662, -0.00928495079278946, -0.020815564319491386, 0.02640092931687832, -0.023680223152041435, -0.014675980433821678, -0.013761880807578564, -0.011861704289913177, -0.003426074981689453, 0.004318581894040108, -0.0032767239026725292, -0.007291205693036318, 0.028992079198360443, -0.005930852144956589, 0.016770493239164352, 0.004077461082488298, -0.014078577049076557, -0.01856990158557892, 0.014841525815427303, 0.0007539524231106043, 0.011437044478952885, -0.007938993163406849, -0.04574817791581154, 0.006477872841060162, 0.0016455595614388585, 0.0036294080782681704, 0.0036204110365360975, 0.013999402523040771, -0.006758580449968576, -0.013373208232223988, 0.003181355306878686, -0.007924597710371017, -0.015258989296853542, -0.01363232359290123, -0.00759350648149848, -0.012149609625339508, -0.004797224421054125, 0.0056789349764585495, -0.022355858236551285, 0.02547963336110115, 0.012804594822227955, -0.006038816645741463, 0.01214241236448288, 0.01769178919494152, 0.006834155879914761, -0.003235337557271123, 0.0014575213426724076, 0.0011939079267904162, 0.0549323596060276, 0.0025947478134185076, -0.022399043664336205, -0.004775631707161665, -0.008709140121936798, 0.021952791139483452, -0.004509319085627794, 0.010738872922956944, -0.02005261555314064, -0.012941350229084492, 0.024270430207252502, 0.01139385811984539, -0.019879871979355812, -0.017303118482232094, 0.015014269389212132, -0.012912559323012829, -0.0025785532779991627, -0.0050095547921955585, -0.023133203387260437, 0.020916331559419632, 0.011026779189705849, -0.004196221940219402, 0.015316570177674294, 0.006150380242615938, -0.0016581554664298892, -0.004628079943358898, -0.010386189445853233, 0.00979598332196474, 0.02606983855366707, -0.016180286183953285, -0.011876099742949009, -0.005005956161767244, -0.0165401678532362, 0.01183291431516409, 0.0036833903286606073, -0.0031201753299683332, -0.001950559439137578, 0.008665953762829304, -0.002560559194535017, 0.006031619384884834, -0.0025479632895439863, -0.010343003086745739, 0.01054453756660223, -0.011696158908307552, -0.014632795006036758, 0.006913329474627972, -0.007535925135016441, -0.014452853240072727, -0.0008421234670095146, -0.01054453756660223, -0.002654128475114703, 0.0009986719815060496, 0.0055277845822274685, 0.02307562157511711, 0.014409667812287807, -0.0005560173885896802, -0.009975924156606197, 0.005211088806390762, 0.0026829189155250788, -0.013790670782327652, 0.04393437132239342, -0.011156336404383183, -0.0026271373499184847, 0.02221190556883812, -0.0028070781845599413, 0.005477401427924633, -0.006531855091452599, 0.010558932088315487, 0.0023914147168397903, 0.011566601693630219, -0.02201037108898163, 0.008550792001187801, -0.0016536569455638528, 0.018281996250152588, 0.017634209245443344, -0.012739816680550575, -0.02278771623969078, -0.019779104739427567, 0.019923057407140732, 0.03443349152803421, -0.010256631299853325, 0.01967833749949932], "1f364fe1-4df5-46a1-95b2-00ea557d74ca": [-0.004529150202870369, -0.01282319612801075, -0.004901881329715252, 0.03583228215575218, -0.0573817640542984, -0.03956585377454758, -0.005569037981331348, 0.021123506128787994, -0.0035487739369273186, 0.04688265547156334, 0.009546922519803047, 0.028365135192871094, 0.021574541926383972, 0.011795836500823498, 0.004851765930652618, 0.0020453217439353466, -8.794609311735258e-05, 0.023165695369243622, -0.0085446210578084, -0.0012607075041159987, 0.05136795714497566, -0.01901867240667343, -0.0046325125731527805, 0.015635903924703598, 0.023153167217969894, -0.03635849058628082, -0.01977039873600006, 0.0032057990320026875, -0.04172080382704735, -0.02529558539390564, -0.005262083373963833, 0.011883538216352463, -0.0031133992597460747, 0.02022143453359604, -0.004839237313717604, -0.030570197850465775, -0.0068595013581216335, 0.007962033152580261, -0.02374201826751232, 0.01845487765967846, -0.021161092445254326, 0.03059525601565838, -0.009177323430776596, -0.003110266989096999, -0.02265201508998871, -0.02069752663373947, -0.03249963000416756, -0.014633603394031525, 0.014959351159632206, -0.005916711408644915, 0.021775001659989357, 0.031221693381667137, -0.008362953551113605, -0.004663834348320961, 0.04916289076209068, 0.0035080555826425552, 0.0070035820826888084, 0.04775967076420784, 0.00915853027254343, -0.06560064107179642, -0.008369218558073044, -0.027312718331813812, 0.020334193482995033, -0.011394916102290154, 0.022852476686239243, -0.005049094092100859, -0.01428279746323824, 0.02613501437008381, -0.010286119766533375, 0.02828996255993843, -0.015247512608766556, 0.01985809952020645, -0.044301729649305344, 0.024343399330973625, 0.046331390738487244, -0.010217211209237576, 0.027162373065948486, 0.007410767488181591, 0.03548147529363632, -0.0188432689756155, 0.013681416399776936, -0.026109956204891205, 0.025496046990156174, 0.027914099395275116, 0.024619031697511673, 0.026109956204891205, -0.022614428773522377, -0.023516500368714333, -0.010956409387290478, -0.043950922787189484, 0.023328568786382675, 0.013881877064704895, -0.00619234424084425, 0.004128229804337025, 0.008914219215512276, -0.01995833031833172, -0.014508315362036228, -0.009665945544838905, 0.0069284094497561455, -0.026385588571429253, -0.013919463381171227, 0.02590949647128582, 0.0078993896022439, 0.0013288325862959027, 0.014821534976363182, -0.01207146979868412, 0.019006144255399704, 0.015059581026434898, -0.005735044367611408, -0.03031962178647518, 0.009221174754202366, -0.05953671410679817, 0.020735112950205803, 0.006339557468891144, -0.010204683057963848, -0.022363854572176933, -0.020271549001336098, 0.007097547873854637, -0.01836717687547207, -0.02004603110253811, 0.015234983526170254, -0.030820773914456367, 0.005196307320147753, -0.0031635144259780645, -0.008438126184046268, 0.02277730405330658, -0.0035080555826425552, 0.015836365520954132, 0.03447917476296425, 0.007204042747616768, -0.022276151925325394, -0.026285359635949135, 0.015911538153886795, -0.006092114374041557, 0.016838666051626205, 0.01770315133035183, -0.01321785245090723, 0.08940529823303223, -0.016212228685617447, 0.0065149604342877865, -0.010799799114465714, 0.01032997015863657, -0.053873710334300995, 0.0057914238423109055, 0.014733833260834217, -0.013894405215978622, -0.028440307825803757, 0.038688842207193375, -0.042572759091854095, 0.0050584906712174416, -0.040893904864788055, -0.00401547085493803, -0.039791371673345566, 0.008638586848974228, 0.054926127195358276, 0.009077093563973904, -0.013944520615041256, 0.038112517446279526, -0.008889161981642246, 0.034980323165655136, 0.022927649319171906, -0.05733165144920349, 0.007160191889852285, 0.019920744001865387, 0.06745489686727524, 0.0037742918357253075, 0.05477578192949295, 0.03906470537185669, 0.0030397926457226276, 0.01011071726679802, 0.0018495596013963223, 0.002352276584133506, 0.04625621810555458, -0.013831761665642262, 0.03134698048233986, -0.02555868960916996, 0.0339028500020504, 0.005913579370826483, 0.0275382362306118, -0.014458199962973595, -0.021687300875782967, -0.013343139551579952, 0.029943758621811867, 0.0017790852580219507, -0.02723754569888115, 0.03801228851079941, -0.023904891684651375, 0.0347798652946949, -0.015184869058430195, 0.015447973273694515, -0.040543098002672195, -0.010580546222627163, 0.029693184420466423, 0.0023616731632500887, -0.01602429710328579, -0.03788699954748154, 0.018066486343741417, -0.005265215411782265, -0.011551525443792343, 0.031321924179792404, -0.005966826342046261, -0.037987228482961655, -0.021311437711119652, 0.03791205585002899, -0.030269507318735123, 0.015523145906627178, 0.002710912609472871, -0.048486337065696716, -0.0047891223803162575, -0.0023146902676671743, 0.05176887661218643, -0.024393513798713684, 0.0150721101090312, 0.018730510026216507, 0.0021987990476191044, 0.014633603394031525, -0.011683077551424503, 0.03395296633243561, -0.008820253424346447, -0.03583228215575218, -0.010073130950331688, -0.014483258128166199, -0.009716060943901539, -0.020647412165999413, -0.05307186767458916, -0.015047051943838596, -0.02552110329270363, 0.00010923521040240303, 0.006477374117821455, -0.04109436273574829, 0.05993763357400894, -0.02060982584953308, 0.04199643433094025, -0.008362953551113605, 0.009083357639610767, 0.017465105280280113, 0.03545641899108887, -0.003210497321560979, -0.011626698076725006, -0.0022207244765013456, 0.004140758421272039, 0.011326007544994354, -0.02666122280061245, -0.03460446000099182, -0.027312718331813812, 0.026811566203832626, -0.009058300405740738, 0.048135533928871155, 0.009045771323144436, 0.028365135192871094, -0.0030053385999053717, 0.009108415804803371, 0.009665945544838905, 0.020910516381263733, -0.020183848217129707, 0.012641528621315956, 0.027438005432486534, -0.038914360105991364, 0.0006769450847059488, 0.0009983862983062863, -0.01183342281728983, -0.006483638193458319, -0.025082597509026527, -0.010455258190631866, 0.061290740966796875, -0.06063924357295036, 0.032725147902965546, -0.009089622646570206, 0.005030300933867693, 0.07046180218458176, 0.011582847684621811, -0.025458460673689842, -0.008037205785512924, 0.04237229749560356, -0.014107394963502884, -0.010148303583264351, -7.497685874113813e-05, 0.016876252368092537, 0.009609566070139408, 0.005312198307365179, -0.027488119900226593, -0.0028408984653651714, 0.02524547092616558, 0.008369218558073044, 0.011789572425186634, 0.027087200433015823, -0.026210187003016472, -0.02069752663373947, -0.02008361741900444, -0.007592434529215097, -0.011432502418756485, -0.004002941772341728, 0.011156869120895863, 0.036834582686424255, 0.006878294516354799, 0.006552546750754118, -0.038563553243875504, -0.01147635281085968, -0.015698548406362534, 0.0006573688588105142, -0.0009232137235812843, 0.012917161919176579, -0.015047051943838596, -0.017001541331410408, 0.03264997527003288, -0.024080295115709305, 0.03530607372522354, 0.021349024027585983, -0.01761545054614544, 0.05602865666151047, 0.04252264276146889, -0.029467666521668434, -0.01668832078576088, -0.007604963146150112, -0.010837385430932045, 0.04803530126810074, -0.04009206220507622, 0.0009396577370353043, -0.019006144255399704, -0.0008535224478691816, -0.03262491524219513, -0.0020061691757291555, -0.04773461073637009, 0.0195574089884758, 0.05322221294045448, -0.03262491524219513, 0.03610791265964508, -0.003379635512828827, -0.01105663925409317, -0.012716701254248619, -0.03049502521753311, -0.007843010127544403, -0.00036470466875471175, 0.0163751021027565, -0.01698901131749153, -0.015184869058430195, -0.04823576286435127, -0.049689099192619324, 0.006355218589305878, -0.023203281685709953, -0.019306834787130356, -0.007630020845681429, 0.03848838061094284, -0.018680395558476448, -0.01744004711508751, -0.00889542605727911, 0.010962673462927341, 0.021699829027056694, 0.008481977507472038, 0.000462781434180215, 0.0007497685728594661, 0.028841227293014526, 0.045354146510362625, -0.015209926292300224, 0.012196756899356842, -0.014408085495233536, -0.03470469266176224, 0.020597297698259354, -0.0019231660990044475, 0.018730510026216507, -0.012854517437517643, -0.037185389548540115, -0.01938200742006302, -0.05322221294045448, -0.012090262956917286, 0.020472008734941483, 0.012322044931352139, -0.008557150140404701, -0.045128628611564636, -0.003999809734523296, -0.029542839154601097, -0.001359371468424797, -0.012134113349020481, -0.017690623179078102, -0.001494055730290711, -0.041871149092912674, 0.03523090109229088, 0.01066198293119669, 0.0064397878013551235, 0.00929008238017559, 0.01154526136815548, 0.005327859427779913, -0.06184200569987297, 0.009697267785668373, 0.0281145591288805, 0.01782843843102455, -0.005096076987683773, -0.007072490639984608, -0.01871798187494278, -0.012472390197217464, -0.03583228215575218, 0.013944520615041256, -0.01770315133035183, -0.00291920336894691, -0.00531846284866333, -0.023253396153450012, -0.010511637665331364, -0.04046792536973953, 0.021023275330662727, -0.00037547157262451947, -0.01660062000155449, 0.0006362266140058637, 0.008788932114839554, -0.0010665114969015121, 0.0022551785223186016, -0.023779604583978653, 0.028139617294073105, 0.006182947661727667, 0.01779085211455822, 0.0055063944309949875, 0.02335362695157528, -0.004905013367533684, 0.016212228685617447, 0.030570197850465775, 0.029893644154071808, 0.018830740824341774, -0.015134753659367561, 0.03292560577392578, -0.018329590559005737, 0.037360791116952896, 0.021825116127729416, 0.009734854102134705, 0.007417031563818455, 0.03264997527003288, -0.01408233679831028, 0.0002997116534970701, 0.0018746171845123172, 0.016738437116146088, 0.007880596444010735, -3.9690752601018175e-05, 0.034804921597242355, 0.05262083187699318, -0.002635739976540208, 0.021699829027056694, -0.034629520028829575, -0.011564054526388645, 0.011889802291989326, 0.018379705026745796, 0.004557339940220118, -0.01090002991259098, 0.011463824659585953, 0.005894786212593317, -0.00283620017580688, -0.006198608782142401, -0.05262083187699318, -0.02851548045873642, -0.02480696327984333, 0.01658809185028076, 0.0001468215195927769, -0.0070035820826888084, -0.018680395558476448, 0.03615802899003029, -0.06003786250948906, -0.01765303686261177, -0.003511187620460987, 0.005941769108176231, 0.026160070672631264, 0.011075432412326336, -0.005067887250334024, -0.03623320162296295, -0.006627719383686781, -0.0026341737248003483, 0.023140637204051018, 0.0007940107607282698, -0.0037085157819092274, -0.0341784842312336, -0.015836365520954132, 0.007454617880284786, 0.006004412658512592, 0.0170892421156168, -0.008413068950176239, 0.005700590088963509, -0.028941458091139793, 0.04004194959998131, 0.0022724056616425514, -0.01845487765967846, -0.013280496001243591, -0.015372800640761852, 0.0012982937041670084, -0.012109056115150452, -0.005453146994113922, -0.005694326013326645, -0.01593659445643425, 0.009440427646040916, -0.011300950311124325, 0.00867617316544056, -0.0478348433971405, 0.0059198434464633465, -0.0004972355673089623, 0.01929430477321148, 0.026811566203832626, 0.008619793690741062, -0.017465105280280113, 0.02344132773578167, 0.011751986108720303, -0.019620053470134735, 0.02190028876066208, -0.021825116127729416, -0.01632498763501644, -0.04139505326747894, 0.02979341521859169, -0.010323706082999706, 0.018154187127947807, 0.025445930659770966, -0.02595961093902588, 0.029693184420466423, 0.012040147557854652, 0.02206316404044628, 0.015034523792564869, 0.014295326545834541, -0.016763493418693542, 0.03267503157258034, -0.036308374255895615, 0.01854257844388485, 0.019444650039076805, -0.005960562266409397, -0.023240868002176285, 0.004438316449522972, 0.028440307825803757, 0.002311557997018099, -0.0045667365193367004, -0.031046291813254356, -0.02921709045767784, -0.027287660166621208, -0.012829460203647614, -0.008795196190476418, -0.002375768031924963, -0.019143959507346153, 0.035732049494981766, -0.020271549001336098, -0.029317321255803108, -0.005174381658434868, -0.027663523331284523, -0.004629380535334349, 0.013117621652781963, -0.007053697481751442, -0.006721684709191322, -0.01791614107787609, -0.005287140607833862, -0.01871798187494278, 0.007097547873854637, 0.03843826428055763, 0.017490161582827568, 0.010931351222097874, 0.012578885070979595, 0.008206344209611416, 0.015447973273694515, -0.00887036882340908, -0.034629520028829575, 0.02996881678700447, -0.03668423742055893, 0.015184869058430195, -0.036483775824308395, -0.027262602001428604, 0.0012802836718037724, -0.008651115000247955, -0.000225322088226676, 0.00792444683611393, -0.019807985052466393, -0.024005122482776642, 0.0035080555826425552, -0.012109056115150452, 0.009828819893300533, 0.027463063597679138, -0.029141917824745178, -0.004178344737738371, -0.03169778734445572, 0.03530607372522354, 0.01251624058932066, 0.03490515053272247, 0.033752504736185074, 0.012296987697482109, 0.06189212203025818, 0.031321924179792404, 0.005064755212515593, 0.009991694241762161, 0.012146642431616783, 0.0001932171144289896, -0.04821070656180382, 0.01938200742006302, 0.03435388579964638, -0.007147663272917271, 0.014445671811699867, -0.02431834116578102, 0.038162633776664734, 0.011751986108720303, -0.027738695964217186, -0.01893097162246704, -0.02295270562171936, 0.02450627274811268, 0.012729230336844921, 0.036834582686424255, 0.003583228215575218, 0.008694966323673725, -0.007254157681018114, 0.033301468938589096, 0.022413969039916992, -0.009064564481377602, 0.002010867465287447, 0.030870888382196426, 0.03382767736911774, -0.0039215050637722015, -0.0014306289376690984, -0.034053195267915726, -0.023190753534436226, 0.006380275823175907, 1.7777638277038932e-05, 0.010668247006833553, -0.015222455374896526, 0.00290197622962296, 0.006251856219023466, -0.006897087674587965, 0.004723346326500177, -0.006991053465753794, -0.0064335232600569725, -0.012403481639921665, 0.0060607921332120895, 0.031096406280994415, 0.023328568786382675, 0.011075432412326336, 0.02211327850818634, -0.005603492259979248, 0.041821032762527466, -0.03249963000416756, 0.01906878687441349, 0.030269507318735123, -0.016086939722299576, 0.004851765930652618, -0.0028377664275467396, 0.0020030371379107237, -0.02022143453359604, -0.027613408863544464, 0.005468808114528656, -0.006029470358043909, 0.016963955014944077, -0.040944017469882965, -0.004654437769204378, 0.013455898500978947, -0.0065901330672204494, -0.0049300710670650005, 0.01099399570375681, 0.016625678166747093, -0.021349024027585983, 0.04613092914223671, -0.010906293988227844, 0.03751113638281822, -0.02180005982518196, -0.022877532988786697, 0.015498087741434574, 0.0359325110912323, -0.027688581496477127, 0.0281145591288805, -0.009120943956077099, 0.009872670285403728, 0.004165816120803356, -0.022927649319171906, -0.0017712548142299056, 0.015811307355761528, 0.027838926762342453, 0.0022551785223186016, 0.025859380140900612, -0.03803734481334686, 0.008494505658745766, -0.007047432940453291, 0.023992594331502914, -0.0208729300647974, -0.0029489591252058744, 0.013054978102445602, 0.00946548581123352, 0.02176247350871563, 0.031672731041908264, -0.014032222330570221, -0.015222455374896526, 0.0024493744131177664, -0.008951805531978607, 0.001910637365654111, 0.01046152226626873, -0.009427899494767189, -0.0075109973549842834, -0.025257999077439308, -0.034980323165655136, -0.03139709681272507, -0.03367733210325241, 0.012992334552109241, -0.04249758645892143, -0.014170038513839245, -0.028615709394216537, 0.017953727394342422, -0.047433920204639435, -0.015322685241699219, -0.004475902765989304, 0.024481216445565224, -0.009772440418601036, 0.006145361345261335, 0.020860401913523674, -0.0065086958929896355, -0.004350615199655294, -0.028766054660081863, 0.02440604381263256, -0.01871798187494278, -0.03563182055950165, -0.01982051320374012, -0.00037155632162466645, -0.05146818608045578, 0.04675737023353577, 0.011639227159321308, -0.017640506848692894, -0.014408085495233536, 0.006496167276054621, -0.008613529615104198, -0.007410767488181591, -0.023904891684651375, -0.0009600169723853469, 0.012603942304849625, 0.01633751578629017, -0.0043349540792405605, -0.021123506128787994, 0.010674512013792992, -0.0275382362306118, 0.04006700590252876, -0.012942219153046608, 0.0075360550545156, -0.004002941772341728, -0.02401765063405037, -0.002400825498625636, 0.023428799584507942, -0.019369477406144142, -0.016350043937563896, 0.012967276386916637, -0.001967016840353608, 0.014733833260834217, 0.0006659824284724891, 0.014357970096170902, -0.0014321949565783143, 0.005390502978116274, -0.01632498763501644, 0.009014450013637543, 0.0012395652011036873, 0.0068532368168234825, -0.010179625824093819, 0.02874099835753441, 0.015723606571555138, 0.02454385906457901, -0.03192330524325371, 0.013142679817974567, 0.012190492823719978, 0.021649714559316635, -0.01147635281085968, -0.017051655799150467, 0.018855798989534378, 0.03853849694132805, -0.0356568768620491, 0.03415342792868614, 0.0065086958929896355, 0.008300310000777245, 0.019256718456745148, 0.02979341521859169, 0.004879955668002367, 0.003136890707537532, 0.03510561212897301, -0.014758890494704247, 0.0034892624244093895, -0.03089594654738903, -0.010561753064393997, 0.011513939127326012, 0.0050584906712174416, 0.025859380140900612, 0.002150250133126974, 0.036082856357097626, 0.024067766964435577, 0.042447470128536224, 0.028039386495947838, 0.020158790051937103, 0.018642809242010117, 0.015247512608766556, -0.052420374006032944, 0.013192794285714626, 0.002941128797829151, -0.0009380916017107666, -0.00308364350348711, 0.011708135716617107, -0.05382359400391579, 0.04713322967290878, -0.006602661684155464, 0.009120943956077099, -0.0037836884148418903, 0.02909180335700512, 0.0008605698822066188, -9.117616718867794e-05, 0.000479225447634235, 0.010048073716461658, -0.02798927202820778, -0.005885389633476734, 0.0013946086401119828, 0.033526986837387085, -0.002411788096651435, 0.005293405149132013, -0.0016052486607804894, -0.02020890638232231, -0.013581186532974243, 0.019143959507346153, -0.03801228851079941, 0.0533224456012249, 0.03327641263604164, -0.011263363994657993, -0.014144981279969215, 0.03094606101512909, -0.024393513798713684, -0.027463063597679138, 0.00867617316544056, 0.023027878254652023, 0.03495526686310768, -0.021035803481936455, 0.031171578913927078, -0.016362573951482773, 0.0011581281432881951, 0.004942599684000015, 0.007974562235176563, 0.0341784842312336, -0.01756533421576023, 0.01800384186208248, 0.002452506683766842, 0.03227411210536957, 0.00495512830093503, 0.014107394963502884, -0.00033122935565188527, 0.024067766964435577, 0.005067887250334024, -0.0007227534078992903, 0.007761572953313589, 0.0053560491651296616, -0.027287660166621208, -0.02237638272345066, 0.01854257844388485, -0.02004603110253811, 0.021599598228931427, -0.008362953551113605, 0.010962673462927341, -0.03836309164762497, 0.03307595103979111, -0.013706473633646965, -0.05547739192843437, 0.02626030147075653, -0.01207146979868412, -0.0017039126250892878, 0.0229025911539793, 0.014971879310905933, 0.007298008538782597, 0.015473030507564545, 0.05262083187699318, 0.03134698048233986, -0.0024384118150919676, -0.0033921643625944853, 0.015836365520954132, -0.029868585988879204, 0.007636284921318293, -0.04334954172372818, -0.0038181424606591463, -0.00988519936800003, 0.02979341521859169, 0.04603070020675659, -0.004867427051067352, -0.018041428178548813, 0.007348123472183943, -0.02307799458503723, -0.0005692759878002107, 0.015009465627372265, 0.02171235717833042, 0.022839946672320366, 0.04177091643214226, 0.014796476811170578, -0.02265201508998871, 0.018968557938933372, 0.005155588500201702, -0.030344679951667786, -0.026285359635949135, 0.011244570836424828, 0.027513178065419197, -0.029868585988879204, 0.002324086846783757, -0.014884178526699543, 0.0017446312122046947, 0.022013047710061073, -0.021211206912994385, -0.02083534374833107, 0.0028283698484301567, -0.005973090883344412, -0.017452575266361237, 0.00690961629152298, -0.006458580959588289, -0.0064397878013551235, -0.000181373514351435, -0.013142679817974567, -0.002576228231191635, -0.02926720678806305, 0.02034672163426876, -0.0002474432112649083, -0.013681416399776936, 0.00185112573672086, 0.02626030147075653, 0.01686372421681881, -0.022301210090517998, -0.03036973811686039, -0.03465457633137703, 0.028415249660611153, -0.036433663219213486, 0.0064335232600569725, -0.018166715279221535, -0.0011698738671839237, 0.009177323430776596, 0.010705833323299885, 0.024218112230300903, -0.010079395025968552, 0.003777424106374383, 0.0431741401553154, 0.0026404382660984993, 0.01641268841922283, -0.029542839154601097, -0.020534653216600418, -0.02578420750796795, 0.007185249589383602, -0.008099849335849285, 0.043449774384498596, -0.005271479953080416, -0.02926720678806305, 0.0022974631283432245, -0.025445930659770966, -0.012459861114621162, -0.04342471435666084, 0.02533317171037197, -0.0065024313516914845, -0.009139737114310265, -0.007022375240921974, -0.023453857749700546, 0.0030382266268134117, -0.005913579370826483, -0.02547098882496357, -0.014383027330040932, -0.015134753659367561, -0.004742139484733343, -0.00829404592514038, -0.03685963898897171, 0.020008444786071777, 0.0028816170524805784, -0.035381246358156204, -0.02846536412835121, -0.0006456231349147856, 0.03377756476402283, -0.009684738703072071, 0.008657380007207394, 0.015435444191098213, 0.048711854964494705, -0.006226798519492149, 0.011113018728792667, 0.007460882421582937, 0.0214492529630661, 0.002759461523965001, -0.00991025660187006, -0.03194836154580116, -0.002710912609472871, -0.0007806989597156644, -0.010843650437891483, -0.005280876532196999, 0.006220533978193998, -0.0042879716493189335, 0.052420374006032944, -0.0286908820271492, 0.012854517437517643, -0.004447713028639555, -0.012528769671916962, 0.012635264545679092, -0.012791873887181282, -0.00845065526664257, 0.014307854697108269, 0.013180266134440899, -0.014683717861771584, -0.0443267859518528, -0.007266686297953129, -0.03560676425695419, -0.02366684563457966, 0.032900549471378326, -0.022175922989845276, -0.04101919010281563, -0.020008444786071777, 0.0035487739369273186, 0.04064333066344261, -0.010561753064393997, -0.004670098889619112, -0.011632963083684444, 0.017853496596217155, 0.015285098925232887, -0.007078754715621471, 0.009083357639610767, 0.012603942304849625, 0.000617041892837733, -0.011313479393720627, -0.0024994895793497562, -0.03392791002988815, -0.006173551082611084, -0.020760171115398407, -0.013443369418382645, -0.0016318722628057003, -0.00358636025339365, 0.042171839624643326, 0.032023534178733826, 0.0020030371379107237, 0.00013634824426844716, 0.011927388608455658, 0.016500389203429222, 0.025621334090828896, -0.022839946672320366, -0.021825116127729416, -0.006627719383686781, -0.0010837385198101401, -0.014032222330570221, 0.007354388013482094, 0.033251356333494186, 0.009133473038673401, -0.00181823770981282, 0.01425774022936821, -0.006947202607989311, -0.015184869058430195, 0.019582467153668404, -0.013493484817445278, -0.021161092445254326, 0.008200080133974552, 0.011576583608984947, -0.0070912837982177734, 0.030845830217003822, -0.024744320660829544, -0.015610846690833569, -0.016625678166747093, 0.0069409385323524475, 0.0015355573268607259, 0.012309515848755836, -0.015084638260304928, 0.010887500829994678, -0.06309488415718079, -0.024067766964435577, -0.006803121883422136, -0.019169017672538757, 0.011714399792253971, -0.0078993896022439, 0.004168948158621788, 0.023328568786382675, -0.006565075367689133, 0.013205323368310928, 0.00858220737427473, -0.001893410342745483, 0.03227411210536957, 0.005240157712250948, 0.008651115000247955, -0.012146642431616783, -0.012967276386916637, -0.0037586309481412172, -0.003968487959355116, -0.010192153975367546, -0.004645041190087795, 0.0027062143199145794, 0.026686279103159904, -0.005719383247196674, -0.017665565013885498, 0.01999591663479805, 0.005262083373963833, -0.00515245646238327, -0.015172339975833893, -0.016675792634487152, 0.03157249838113785, 0.015197397209703922, 0.007579905446618795, -0.000189693397260271, -0.012453597038984299, 0.029542839154601097, 0.015034523792564869, -0.005443750414997339, 0.04207160696387291, 0.022326268255710602, 0.0065149604342877865, 0.02074764296412468, 0.0031384567264467478, -0.018429819494485855, -0.015698548406362534, -0.00785553827881813, -0.010987730696797371, -0.021775001659989357, 0.01515981089323759, 0.007047432940453291, 0.008958070538938046, -0.006959731690585613, -0.007354388013482094, -0.01827947422862053, -0.0003026480844710022, 0.010812328197062016, 0.00876387394964695, 0.005938636604696512, -0.009039507247507572, -0.008005883544683456, 0.014934292994439602, 0.012503712438046932, -0.01324290968477726, -0.0030037725809961557, -0.005462543573230505, 0.018392233178019524, -0.000442030664999038, -0.0034234863705933094, 0.018254417926073074, 0.008175021968781948, 0.0027829529717564583, -0.005036565475165844, 0.013944520615041256, 0.0241930540651083, 0.022977763786911964, 0.010073130950331688, 0.01330555323511362, 0.01193991769105196, 0.0022645751014351845, -0.0008292479324154556, -0.024694204330444336, -0.01814165897667408, 0.021975461393594742, 0.0045667365193367004, -0.008218873292207718, -0.007298008538782597, -0.02149936929345131, 0.0032480836380273104, -0.02436845749616623, 0.00401547085493803, -0.0055408482439816, 0.010248533450067043, 0.015397857874631882, 0.017377402633428574, -0.00821260828524828, 0.04728357493877411, -0.02004603110253811, -0.02798927202820778, 0.005603492259979248, 0.004253517370671034, 0.012497447431087494, -0.027087200433015823, -0.0007544668624177575, -0.010060601867735386, -0.002095436677336693, -0.003495526732876897, 0.003934033680707216, 0.008845311589539051, -0.022564314305782318, -0.015523145906627178, -0.017314760014414787, 0.023817190900444984, -0.005443750414997339, -0.009114679880440235, -0.015222455374896526, 0.006029470358043909, -0.0063646151684224606, 0.001358588458970189, -0.002125192666426301, 0.00860726460814476, -0.001367985038086772, 0.011852215975522995, -0.0007666040910407901, -0.033000778406858444, -0.008268987759947777, 0.0006511044921353459, -0.025621334090828896, 0.0007435041479766369, -0.01147635281085968, 0.00430363230407238, 0.00010453692084411159, 0.0018542578909546137, -0.021223735064268112, -0.005644210614264011, 0.014646131545305252, 0.008569678291678429, -0.003627078840509057, -0.02613501437008381, 0.03345181420445442, -0.004062453750520945, 0.004679495468735695, 0.009609566070139408, -0.007323065772652626, -0.013167737051844597, -0.007085019256919622, 0.005782027263194323, -0.017552806064486504, 0.0018918442074209452, 0.003852596739307046, -0.00955945160239935, -0.015635903924703598, 0.02578420750796795, 0.034804921597242355, 0.048937372863292694, 0.003661532886326313, -0.03019433468580246, -0.01004180870950222, 0.0031870058737695217, -0.0009263459360226989, 0.006314499769359827, -0.02839019149541855, 0.022877532988786697, 0.008074792101979256, -0.005985619500279427, 0.010467787273228168, -0.0189810860902071, -0.012140377424657345, 0.00041814768337644637, -0.01324290968477726, -0.011382387019693851, -0.0009467051713727415, 0.0014635169645771384, -0.011595376767218113, -3.82714752049651e-05, -4.0155686292564496e-05, -0.010198418982326984, -0.01138865202665329, -0.00135232403408736, 0.015473030507564545, -0.007260422222316265, -0.01428279746323824, 0.0038995796348899603, -0.01800384186208248, 0.009578244760632515, -0.0009138171444647014, 0.014896707609295845, 0.016788551583886147, 0.0035017910413444042, -0.00018000318959821016, 0.017465105280280113, 0.01906878687441349, -0.00955945160239935, -0.026185128837823868, 0.012867046520113945, 0.0012951615499332547, 0.007604963146150112, 0.022175922989845276, 0.011770779266953468, -0.0036208145320415497, 0.00028052699053660035, -0.008732552640140057, -0.011432502418756485, 0.017903611063957214, 0.018830740824341774, -0.006828179582953453, -0.010004222393035889, 0.0026654957327991724, 0.0275382362306118, 0.04084378853440285, -0.009672210551798344, -0.01509716734290123, -0.012441067956387997, 0.007573641370981932, -0.00027308802236802876, -0.012566355988383293, -0.013029920868575573, 0.0018652206053957343, -0.020472008734941483, 0.02688673883676529, -0.015723606571555138, 0.02039683796465397, -0.009659681469202042, 0.002026528585702181, -0.011269628070294857, 0.007993355393409729, 0.0018965424969792366, 0.017252115532755852, -0.012240608222782612, -0.027137314900755882, -0.008419333025813103, -0.010549223981797695, 0.007335594855248928, -0.007943239994347095, 0.0031400229781866074, -0.016801079735159874, -0.008958070538938046, 0.01950729452073574, -0.018166715279221535, 0.0069346739910542965, -0.015836365520954132, -0.0408688448369503, -0.02440604381263256, -0.004585529677569866, 0.0023835983593016863, 0.051668647676706314, 0.009020714089274406, -0.012365895323455334, -0.007830481044948101, -0.00900192093104124, 0.009415370412170887, 0.01269164402037859, 0.003061718074604869, -0.00831910315901041, 0.00032731410465203226, -0.024180525913834572, -0.018517522141337395, 0.02211327850818634, 0.0007826565997675061, 0.0014486389700323343, -0.010236004367470741, -0.013468427583575249, 0.007147663272917271, 0.014821534976363182, -0.009935314767062664, 0.02466914802789688, -0.005569037981331348, 0.009133473038673401, 0.024130409583449364, 0.02153695560991764, 0.007059961557388306, 0.006117171607911587, 0.01008566003292799, -0.03217387944459915, -0.010148303583264351, 0.013618772849440575, -0.01800384186208248, 0.008068528026342392, -0.004134493879973888, 0.01512222457677126, 0.009365255013108253, -0.03500538319349289, 0.001826068153604865, -0.006446051876991987, 0.006615190301090479, 0.009722325019538403, -0.0010210947366431355, 0.004018602892756462, -0.017953727394342422, 0.036183085292577744, -0.024167995899915695, 0.019707754254341125, 0.01538532879203558, 0.0014188832137733698, -0.011238306760787964, 0.017001541331410408, -0.022564314305782318, 0.013418312184512615, 0.005092944949865341, 0.020020974799990654, -0.003551906207576394, 0.024882135912775993, -0.005882257595658302, -0.00858220737427473, -0.030845830217003822, 0.0035581705160439014, -0.00016669135948177427, 0.011538997292518616, 0.009177323430776596, 0.0044852993451058865, 3.42828243447002e-05, 0.021574541926383972, 0.021549483761191368, -0.02106086164712906, -0.021136034280061722, 0.009214909747242928, 0.008444391191005707, 0.004945731721818447, -0.005988752003759146, 0.0018213698640465736, -0.026385588571429253, 0.0015457369154319167, 0.01782843843102455, 0.039490681141614914, -0.009127208963036537, -0.023729490116238594, -0.02468167617917061, -0.021261321380734444, -0.0013546731788665056, 0.012121584266424179, -0.007410767488181591, -0.009302611462771893, 0.009052036330103874, 0.0011416841298341751, -0.02798927202820778, -3.6674791772384197e-06, 0.0067780641838908195, -0.00955945160239935, -0.014157509431242943, -0.02190028876066208, -0.0039841486141085625, 0.00915853027254343, 0.022175922989845276, 0.00808105617761612, 0.003962223418056965, -0.0034923944622278214, 0.004532282240688801, -0.0013241342967376113, 0.03853849694132805, -0.0008582207374274731, -0.01118819136172533, 0.008945541456341743, -0.0025041878689080477, 0.0006628502160310745, -0.025809265673160553, -0.01655050553381443, 0.025621334090828896, 0.01756533421576023, 0.014959351159632206, -0.02904168888926506, -0.03989160433411598, -0.03748608008027077, -0.002651400864124298, 0.013656359165906906, 0.0002658448356669396, -0.0044915638864040375, 0.013706473633646965, 0.018079014495015144, -0.010649453848600388, 0.0029301659669727087, -0.010624396614730358, -0.011770779266953468, 0.007843010127544403, -0.00028679135721176863, 0.006702891550958157, -0.00505535863339901, 0.020634884014725685, -0.03382767736911774, 0.014846592210233212, -0.0070161111652851105, -0.02828996255993843, -0.004745271522551775, 0.01321785245090723, -0.014332912862300873, -0.010824857279658318, -0.010849914513528347, -0.003027264028787613, -0.017577864229679108, 0.004385069478303194, 0.005697458051145077, 0.006552546750754118, -0.018241887912154198, -0.00014231899695005268, -0.005171249620616436, 0.03813757374882698, -0.005428089294582605, 0.004150155000388622, -0.023779604583978653, -0.007229099981486797, -0.041520342230796814, -0.013180266134440899, -0.017277173697948456, 0.012002561241388321, 0.007185249589383602, 0.018066486343741417, -0.011513939127326012, 0.03924010694026947, -0.006815650500357151, 0.03209870681166649, -0.01641268841922283, -0.03134698048233986, 0.0021565144415944815, -0.002410222077742219, -0.008669908158481121, -0.015197397209703922, -0.017778323963284492, -0.0022081956267356873, 0.014107394963502884, 0.014383027330040932, -0.0033389171585440636, -0.04567989334464073, -0.026586050167679787, -0.008651115000247955, -0.00560662429779768, -0.01350601390004158, -0.013606243766844273, 0.010486580431461334, 0.002084474079310894, 0.006771800108253956, 0.0032198939006775618, -0.027387890964746475, -0.00887036882340908, 0.012246872298419476, -0.0010187455918639898, 0.011582847684621811, 0.029542839154601097, -0.03432882949709892, -0.0013828629162162542, -0.009058300405740738, 0.015573260374367237, -0.029417552053928375, -0.015084638260304928, -0.015573260374367237, 0.0007991006132215261, -0.005572170484811068, 0.0006428824854083359, -0.021775001659989357, -0.0038745219353586435, -0.010480315424501896, 0.015986710786819458, 0.03510561212897301, 0.005534584168344736, -0.02365431748330593, 0.015635903924703598, 0.011470088735222816, -0.014433142729103565, 0.009459220804274082, 0.0034234863705933094, 0.009659681469202042, -0.011294686235487461, 0.03803734481334686, 0.02512018382549286, 0.0022536125034093857, 0.0009976032888516784, 0.004360011778771877, -0.03337664157152176, 0.015535674057900906, 0.01782843843102455, -0.019394535571336746, -0.011175662279129028, -0.0046011907979846, 0.012315780855715275, 0.002844030736014247, -0.019093845039606094, -0.010693305172026157, 0.026410646736621857, -0.019745340570807457, -0.018392233178019524, 0.011012788861989975, 0.00829404592514038, -0.025019953027367592, 0.020246492698788643, -0.010116981342434883, 0.012503712438046932, 0.011582847684621811, 0.021073389798402786, -0.02781386859714985, 0.023290982469916344, -0.005315330345183611, -0.01251624058932066, 0.02529558539390564, -0.01831706054508686, -0.008801460266113281, -0.012879575602710247, 0.0184047631919384, 0.010236004367470741, -0.008813989348709583, -0.023716960102319717, -0.01827947422862053, 0.008106114342808723, 0.015184869058430195, 0.006038866937160492, -0.020446952432394028, -0.039741259068250656, 0.011902331374585629, -0.003379635512828827, -0.010029280558228493, 0.012522505596280098, 0.02141166664659977, -0.0009153832215815783, -0.0027203091885894537, -0.01863028109073639, -0.002551170764490962, -0.011946181766688824, 0.015786249190568924, -0.02335362695157528, 0.0043412186205387115, 0.0188432689756155, -0.01432038377970457, -0.013443369418382645, 0.022739717736840248, -0.010091924108564854, -0.01576119288802147, -0.004588661715388298, -0.011495145969092846, -0.01990821585059166, -0.014671189710497856, -0.002093870658427477, 0.0008323801448568702, -0.0012708870926871896, -0.016450274735689163, -0.002142419572919607, -0.0017336684977635741, 0.012572620064020157, -0.008839046582579613, 0.020271549001336098, -0.002150250133126974, -0.0010633793426677585, 0.004253517370671034, -0.01001675147563219, -0.007429560646414757, -0.012503712438046932, -0.003771159565076232, -0.000566926843021065, -0.006984788924455643, 0.00730427261441946, 0.029592953622341156, 0.00352058419957757, -0.004905013367533684, -0.001985809998586774, 0.0032480836380273104, 0.0008746647508814931, -0.003152551595121622, 0.023378685116767883, 0.009058300405740738, -0.002602851949632168, -0.005456279031932354, -0.028139617294073105, 0.0037648952566087246, -0.010298648849129677, -0.011770779266953468, 0.017866024747490883, 0.0014948388561606407, 0.013130150735378265, -0.005631681997328997, 0.01791614107787609, 0.026460761204361916, 0.011701870709657669, -0.008619793690741062, 0.017452575266361237, 0.0030977383721619844, 0.004024867434054613, 0.0019231660990044475, 0.02552110329270363, -0.015748662874102592, 0.013581186532974243, 0.01196497492492199, 0.012597678229212761, -0.036609064787626266, -0.005039697512984276, 0.0105053735896945, 0.01889338530600071, -0.013668887317180634, 0.01880568265914917, -0.005243290215730667, 0.015422915108501911, -0.020998217165470123, -0.009615831077098846, 0.00969100371003151, 0.021486839279532433, -0.010981466621160507, 0.010198418982326984, -0.0022489142138510942, 0.002378900069743395, 0.0006898653809912503, -0.004541678819805384, -0.009302611462771893, -0.008250194601714611, -0.0026576651725918055, 0.02281489036977291, -0.003152551595121622, -0.006342689506709576, 0.019219132140278816, -1.2614415936695877e-05, -0.016450274735689163, 0.014884178526699543, -0.010336235165596008, -0.007059961557388306, -0.024418571963906288, -0.03558170422911644, 0.019582467153668404, -0.015197397209703922, 0.01125709991902113, -0.008832782506942749, 0.020359251648187637, 0.010956409387290478, 0.0034642047248780727, 0.034228600561618805, 0.011376122944056988, -0.006161022465676069, -0.00135232403408736, 0.02613501437008381, -0.012171699665486813, 0.0026560991536825895, 0.008532091975212097, -0.0019732811488211155, -0.02392994984984398, -0.012791873887181282, -0.0049175419844686985, -0.020359251648187637, 0.014884178526699543, -0.0047765932977199554, 0.023629259318113327, -0.01350601390004158, 0.020020974799990654, -0.013430841267108917, -0.02613501437008381, 0.005941769108176231, 0.0015989842358976603, 0.025621334090828896, -0.001167524722404778, 0.0012035449035465717, -0.008243930526077747, -0.010142039507627487, 0.011532732285559177, -0.00821260828524828, -0.010762212797999382, 0.005547112785279751, -0.004663834348320961, 0.00488935224711895, 0.004366276320070028, -0.0062988391146063805, 0.021035803481936455, 0.02547098882496357, -0.01079353503882885, 0.010574281215667725, -0.0035644350573420525, -0.016750965267419815, -0.00401547085493803, -0.027889041230082512, -0.03813757374882698, 0.02701202780008316, 0.010486580431461334, -0.00756111228838563, -0.00991025660187006, -0.009891463443636894, 0.00714139873161912, 0.0015081505989655852, 0.013556128367781639, -0.0003676410997286439, 0.00515245646238327, 6.499299342976883e-05, -0.023366155102849007, -0.012221815064549446, -0.007066226098686457, -0.0012802836718037724, -0.00962209515273571, -0.008720023557543755, 0.0036396076902747154, 0.014433142729103565, -0.006201740819960833, -0.0015191133134067059, 0.012259401381015778, -0.005042830016463995, 0.00876387394964695, -0.018429819494485855, -0.0009028544882312417, 0.022614428773522377, 0.0019529219716787338, 0.014232682064175606, -0.008200080133974552, -0.002887881360948086, -0.005775762721896172, -0.027563292533159256, 0.011426238343119621, 0.014157509431242943, 0.022150864824652672, -0.01295474823564291, 0.02114856243133545, -2.897277954616584e-05, -0.0074420892633497715, 0.0030820772517472506, -0.023140637204051018, -0.005844671279191971, 0.002909806789830327, -0.01090002991259098, 0.015748662874102592, -0.0052777440287172794, -0.014420613646507263, 0.00038232322549447417, -0.027488119900226593, 0.005756969563663006, 0.02864076755940914, 7.360651943599805e-05, 0.018204301595687866, 0.01118819136172533, -0.010148303583264351, 0.023290982469916344, 0.011175662279129028, -0.03397802263498306, 0.01536027155816555, -0.005550244823098183, 0.0012951615499332547, -0.0030147351790219545, -0.03292560577392578, 0.019093845039606094, 0.02387983538210392, -0.011382387019693851, 0.020847871899604797, -0.009302611462771893, 0.011488881893455982, -0.020847871899604797, 0.004576133098453283, 0.0020907383877784014, -0.008832782506942749, 0.008826518431305885, -0.022927649319171906, 0.020020974799990654, -0.006828179582953453, -0.008268987759947777, -0.025019953027367592, 0.007780366111546755, 0.002051586052402854, 0.022088220342993736, -0.003802481573075056, 0.005897918250411749, -0.003035094356164336, 0.0020813418086618185, 0.006546282209455967, -0.007974562235176563, 0.0011808365816250443, -0.011745722033083439, -0.019569939002394676, -0.019970858469605446, -0.0009615830495022237, 0.012102791108191013, -0.04690771549940109, -0.015635903924703598, 0.011238306760787964, -0.0030883417930454016, -0.01454590167850256, 0.023992594331502914, -0.003326388308778405, -0.017953727394342422, 0.040142178535461426, 0.017991313710808754, 0.014746362343430519, 0.016826137900352478, 0.010755948722362518, -0.008613529615104198, -0.01726464368402958, 0.016487861052155495, 0.003517452161759138, 0.004641909152269363, 0.02008361741900444, -0.009891463443636894, 0.04545437544584274, -0.016124526038765907, -0.005233893636614084, -0.005158721003681421, 0.0368095263838768, 0.015598318539559841, 0.02996881678700447, -0.0008856274071149528, 0.012917161919176579, -0.006978524848818779, -0.02149936929345131, 0.004688892047852278, -0.014996937476098537, 0.017377402633428574, 0.0014314119471237063, 0.003934033680707216, 0.010311177000403404, -0.006170419044792652, -0.016400160267949104, -1.9502791474224068e-05, 0.02718742936849594, -0.0065149604342877865, -0.0065024313516914845, 0.00013576095807366073, 0.017891082912683487, 0.0003494352276902646, 0.00044398827594704926, -4.333681863499805e-05, 0.032900549471378326, -0.012284458614885807, -0.004767196718603373, 0.010217211209237576, -0.0025464724749326706, 0.008839046582579613, 0.015811307355761528, 0.01698901131749153, -0.028615709394216537, -0.0014650829834863544, -0.020672470331192017, 0.004710817243903875, -0.004159551579505205, -0.004826708696782589, 0.021825116127729416, 0.016926368698477745, 0.0011964974692091346, 0.0047076852060854435, 0.003202666761353612, 0.008463184349238873, 0.015535674057900906, 0.021511897444725037, -0.006204873323440552, -0.0032057990320026875, -0.00038741304888390005, -0.024731790646910667, -0.002051586052402854, -0.03991666063666344, -0.015635903924703598, 0.0023835983593016863, -0.007028639782220125, -0.025257999077439308, -0.0008942409185692668, -0.002527679316699505, 0.023403741419315338, 0.015422915108501911, -0.010035544633865356, -0.009052036330103874, 0.006411598064005375, 0.009052036330103874, 0.0008989392081275582, -0.013017391785979271, -0.016011767089366913, 0.006471109576523304, -0.012140377424657345, -0.02423064038157463, 0.009991694241762161, -0.005008375737816095, 0.017452575266361237, -0.00858220737427473, 0.006132832728326321, 0.02069752663373947, 0.016262343153357506, -0.00013840374595019966, -0.021461782976984978, 0.004729610402137041, -0.007918182760477066, -0.018204301595687866, -0.009446692653000355, 0.025859380140900612, -0.004219063092023134, 0.0067780641838908195, -0.003226158209145069, 0.027287660166621208, 0.01235963124781847, 0.006577603984624147, 0.004814179614186287, 0.009108415804803371, 0.017991313710808754, 0.012541298754513264, 0.028590653091669083, 0.0011197588173672557, 0.013405783101916313, -0.011595376767218113, -0.023980064317584038, 0.0006902568857185543, -0.001041454030200839, 0.002761027542874217, -0.016262343153357506, -0.016938896849751472, -0.010323706082999706, -0.011620434001088142, -0.013330611400306225, -0.011244570836424828, 0.0049989791586995125, -0.015047051943838596, 0.00727295083925128, 0.031722843647003174, 0.022263623774051666, -0.012109056115150452, 0.01536027155816555, 0.018567636609077454, 0.0016036825254559517, 0.006984788924455643, 0.010774741880595684, -0.0038964473642408848, -0.023579144850373268, -0.0033483137376606464, -0.012660321779549122, -0.010004222393035889, -0.017452575266361237, 0.010799799114465714, -0.007592434529215097, 0.028941458091139793, -0.01256009191274643, -0.013806704431772232, 0.008933012373745441, 0.0024556389544159174, -0.007642549462616444, 0.03447917476296425, -0.0070912837982177734, 0.0073606520891189575, -0.0004279357963241637, -0.032023534178733826, 0.0015371234621852636, -0.025759151205420494, -0.006571339908987284, -0.00625812029466033, 0.002162778750061989, 0.005124266725033522, -0.004262913949787617, 0.022100750356912613, 0.030169276520609856, -0.020284079015254974, -0.0018370308680459857, 0.0037085157819092274, 0.006452316418290138, 0.003827539039775729, 0.007661342620849609, -0.004203402437269688, 0.0013303987216204405, -0.0005316896713338792, 0.008907955139875412, 0.01866786740720272, 0.014696246944367886, -0.020472008734941483, -0.008093585260212421, -0.007354388013482094, -0.01619969867169857, 0.006972260307520628, -0.003027264028787613, -0.008995656855404377, 0.009052036330103874, 0.001775953103788197, -0.015635903924703598, 0.023378685116767883, -0.015473030507564545, -0.009603301994502544, 0.014508315362036228, 0.03234928473830223, 0.018354646861553192, -0.0004248035838827491, 0.03412836790084839, 0.011488881893455982, 0.0004020952037535608, 0.0013891273410990834, 0.00922743882983923, -0.008813989348709583, 0.03836309164762497, -0.013693945482373238, -0.0006464062025770545, 0.012829460203647614, 0.0214492529630661, 0.011589111760258675, 0.009396577253937721, -0.004594926256686449, -0.0037053837440907955, 0.006076453253626823, 0.024080295115709305, 0.00094200688181445, -0.002128324704244733, 0.02153695560991764, -0.013493484817445278, -0.012422274798154831, 0.03089594654738903, 0.0045730010606348515, -0.02114856243133545, -0.010762212797999382, 0.0008323801448568702, -0.03350193053483963, -0.00991025660187006, 0.03222399577498436, -0.018442349508404732, -0.01235963124781847, 0.01655050553381443, 0.018705453723669052, 0.0067843287251889706, 0.021023275330662727, -0.0002396127238171175, 0.013944520615041256, -0.011495145969092846, -0.03310101106762886, -0.007066226098686457, 0.02485707961022854, -0.009214909747242928, 0.012854517437517643, -0.026210187003016472, 0.0028706544544547796, -0.003746102098375559, 0.011463824659585953, 0.01871798187494278, -0.012340838089585304, 0.02317822352051735, -0.006176683586090803, 0.01103158202022314, 0.014132452197372913, -0.005014640279114246, -0.0021439858246594667, 0.004986450541764498, 0.01632498763501644, 0.014934292994439602, 0.0016099469503387809, -0.006571339908987284, 0.00016395069542340934, 0.03452928736805916, -0.010762212797999382, -0.026636164635419846, 0.016525447368621826, -0.01536027155816555, -0.0028816170524805784, -0.0034140897914767265, -0.00296775228343904, -0.014921764843165874, -0.001534774317406118, -0.0048642950132489204, 0.006305103190243244, 0.02225109562277794, -0.005929240025579929, -0.01533521432429552, 0.004654437769204378, 0.006132832728326321, 0.007843010127544403, -0.002468167571350932, 0.007298008538782597, -0.010367556475102901, -0.0011972805950790644, 0.008193815127015114, 2.982923797389958e-05, 0.0032512156758457422, 0.055677853524684906, -0.007254157681018114, -0.013518542051315308, 0.0040499246679246426, -0.002917637350037694, 0.0017164414748549461, 0.008200080133974552, 0.005114870145916939, 0.005531451664865017, 0.010599339380860329, 0.010511637665331364, 0.006446051876991987, 0.007504732813686132, 0.010837385430932045, -0.009678474627435207, 0.00909588672220707, 0.015523145906627178, -0.007072490639984608, 0.02671133726835251, -0.012904632836580276, 0.02374201826751232, 0.021461782976984978, 0.00938404817134142, 0.010035544633865356, -0.010605603456497192, 0.007623756304383278, 0.001567662344314158, 0.0037241769023239613, 0.01063692569732666, 0.0032292904797941446, 0.007103812415152788, -0.007348123472183943, 0.003367106895893812, -0.020559711381793022, 0.02109844796359539, 0.007611227687448263, -0.007485939655452967, -0.01597418077290058, 0.011200720444321632, 0.012040147557854652, -0.002717176917940378, 0.024606503546237946, -0.01968269795179367, -0.01515981089323759, 0.013393254950642586, 0.020071089267730713, -0.009835083968937397, -0.026560992002487183, -0.009196116589009762, -0.02939249388873577, -0.009916521608829498, 0.0008699664613232017, -0.007548583671450615, -0.020634884014725685, 0.010160832665860653, 0.011432502418756485, 0.014207624830305576, 0.025195356458425522, -0.006878294516354799, -0.0035894925240427256, -0.014495786279439926, 0.008149964734911919, 0.013906934298574924, -0.011275893077254295, -0.026586050167679787, 0.0018558240262791514, 0.004779725801199675, -0.02839019149541855, -0.007705193478614092, 0.005616020876914263, 0.004413259215652943, -0.008813989348709583, 0.01081859227269888, -0.003677194006741047, 0.008250194601714611, -0.019281776621937752, -0.018555108457803726, -0.005697458051145077, 0.008438126184046268, 0.003930901642888784, -0.008419333025813103, 0.009797497652471066, -5.329621126293205e-05, -0.0010571149177849293, -0.026285359635949135, -0.015823835507035255, 0.009214909747242928, -0.007648814003914595, 0.032750204205513, -0.002060982631519437, 0.005766366142779589, -0.012278194539248943, -0.022927649319171906, 0.018241887912154198, -0.00295209139585495, 0.010536694899201393, -0.006947202607989311, 0.0007474194280803204, -0.008532091975212097, -0.00540929613634944, -0.007680135779082775, -0.009271289221942425, -0.027889041230082512, -0.00962209515273571, 0.0057914238423109055, -0.0016710245981812477, -0.0058571998961269855, 0.00792444683611393, -0.011106754653155804, 0.01819177344441414, -0.02723754569888115, -0.006411598064005375, -0.015460501424968243, -0.016738437116146088, 0.014846592210233212, 0.018342118710279465, -0.013856818899512291, -0.005916711408644915, -0.0019560542423278093, 0.030269507318735123, -0.024330871179699898, 0.018517522141337395, 0.009553186595439911, -0.018918441608548164, -0.010154567658901215, 0.0064335232600569725, 0.002402391517534852, 0.008682437241077423, -0.011225777678191662, 0.01633751578629017, 0.014984408393502235, 0.02065994031727314, -0.02123626507818699, -0.009609566070139408, 0.014846592210233212, 0.01297980546951294, -0.03488009423017502, 0.007110076956450939, -0.03001893125474453, -0.023779604583978653, -0.0023632391821593046, -0.007047432940453291, -0.004898748826235533, 0.004591794218868017, -0.0017086109146475792, 0.0015488691860809922, 0.0005195524427108467, 0.004845501855015755, -0.01321785245090723, 0.020296607166528702, -0.036533892154693604, -0.012854517437517643, 0.017978783696889877, -0.011889802291989326, 0.02202557772397995, -0.00880772527307272, 0.011708135716617107, 0.0017477633664384484, -0.008331632241606712, -0.003152551595121622, -0.01099399570375681, 0.012766816653311253, -0.01030491292476654, -0.0014517712406814098, -0.027488119900226593, -0.007260422222316265, 0.005885389633476734, -0.004867427051067352, -0.01791614107787609, 0.025257999077439308, 0.003670929465442896, 0.008876632899045944, 0.013693945482373238, -0.024218112230300903, 0.013054978102445602, -0.021085919812321663, 0.010029280558228493, 0.01735234633088112, -0.013343139551579952, -0.024518802762031555, -0.01611199788749218, -0.018166715279221535, -0.04718334600329399, 0.00453541474416852, -0.007385709788650274, -0.01805395632982254, -0.0032324225176125765, -1.7471760656917468e-05, 0.003052321495488286, -0.011983768083155155, 0.0037993493024259806, -0.016350043937563896, 0.020008444786071777, -0.007843010127544403, -0.030444910749793053, -0.0016741568688303232, 0.0034892624244093895, 0.01938200742006302, 0.006414730101823807, -0.03212376683950424, -0.006815650500357151, -0.003445411566644907, -0.002126758685335517, -0.017891082912683487, -0.00876387394964695, 0.007836745120584965, -0.0006099944585002959, 0.02277730405330658, -0.02401765063405037, 0.004745271522551775, 0.008989391848444939, 0.0006565858493559062, -0.007586169987916946, 0.02206316404044628, 0.019670167937874794, -0.010392614640295506, 0.0014658661093562841, -0.004234724212437868, -0.023203281685709953, 0.014583487994968891, -0.004532282240688801, -0.003855728777125478, -0.0018135394202545285, -0.0009232137235812843, 0.009716060943901539, 0.0004772678075823933, 0.009452956728637218, 0.01655050553381443, 0.0017368006519973278, -0.0017649903893470764, 0.010135774500668049, -0.01999591663479805, 0.004056189209222794, 0.013280496001243591, 0.012591413222253323, -0.03077065758407116, 0.010185889899730682, -0.006690362934023142, -0.002560567343607545, 0.020359251648187637, -0.008907955139875412, 0.01606188341975212, 0.006633983459323645, 0.0008355122990906239, -0.004319293424487114, -7.713023660471663e-05, 0.0012215550523251295, 0.011300950311124325, -0.028239846229553223, -0.0018229359993711114, 0.0051273987628519535, 0.0036239465698599815, 0.0044915638864040375, -0.005390502978116274, -0.013831761665642262, 0.03580722212791443, 0.00024372372718062252, -0.0044915638864040375, -0.004385069478303194, 0.00858220737427473, 0.009941578842699528, 0.014859121292829514, 0.016400160267949104, 0.021574541926383972, 0.004513489082455635, -0.01483406312763691, 0.0005771064315922558, -0.00907082948833704, 0.005901050288230181, 6.474828842328861e-05, -0.0005195524427108467, -0.005991884041577578, 0.006154757924377918, 0.008550885133445263, -0.006834443658590317, 0.0008409936563111842, 0.0015942859463393688, 0.02335362695157528, -0.01215917058289051, 0.0033733712043613195, -0.0025715299416333437, -0.0014909235760569572, 0.03267503157258034, 0.0038056138437241316, 0.031622614711523056, -0.032023534178733826, 0.013280496001243591, -0.013105093501508236, -0.018855798989534378, 0.033752504736185074, 0.020847871899604797, 0.019043730571866035, 0.00119962973985821, 0.01686372421681881, 0.0038306713104248047, -0.03024444915354252, 0.0008049734751693904, 0.010680776089429855, -0.006483638193458319, 0.02529558539390564, -0.0035644350573420525, -0.014821534976363182, 0.0009615830495022237, 0.022789832204580307, 0.009133473038673401, 0.014996937476098537, 0.0009600169723853469, -0.008713759481906891, 0.02321580983698368, -0.02106086164712906, 0.007066226098686457, 0.003711648052558303, 0.012528769671916962, -0.0032731411047279835, 0.015648433938622475, -0.013105093501508236, -0.0024384118150919676, 0.0011111452477052808, 0.009139737114310265, 0.0025370758958160877, -0.010749684646725655, -0.018392233178019524, 0.009810026735067368, -0.022739717736840248, 0.009609566070139408, 0.02507006749510765, -0.009352726861834526, -0.02881617099046707, -0.007034904323518276, -0.008494505658745766, -0.004043660592287779, 0.012760551646351814, 0.0037492343690246344, 0.0017555938102304935, 0.0002736753085628152, -0.025546161457896233, 0.02736283279955387, 0.0008394275791943073, -0.03693481162190437, 0.004785989876836538, -0.010023015551269054, 0.0038839185144752264, 0.003442279528826475, 0.004538546781986952, -0.01716441474854946, 0.009866406209766865, -0.012184228748083115, -0.007655078079551458, -0.0024321475066244602, 0.0030554537661373615, 0.00821260828524828, -0.018780626356601715, -0.013468427583575249, -0.017452575266361237, 0.00942163448780775, -0.01924419030547142, -0.014934292994439602, -0.018730510026216507, 0.007755308412015438, -0.01571107655763626, 0.0010735589312389493, 0.018680395558476448, -0.016876252368092537, 0.010574281215667725, 0.00851956382393837, 0.024255698546767235, 0.00756111228838563, 0.004854898434132338, -0.01350601390004158, 0.002609116258099675, -0.0021878364495933056, 0.0011401179945096374, -0.017765795812010765, -0.0015003201551735401, -0.005675532855093479, 0.016963955014944077, 0.014094865880906582, 0.005913579370826483, 5.393243918661028e-05, 0.012591413222253323, -0.005572170484811068, -0.034053195267915726, 0.008638586848974228, -0.00433808658272028, -0.017139356583356857, 0.02109844796359539, -0.0012348669115453959, -0.015811307355761528, -0.015723606571555138, 0.015999238938093185, 0.007636284921318293, -0.005036565475165844, 0.022890063002705574, 0.004779725801199675, 0.0027704241219908, 0.018880855292081833, -0.005453146994113922, 0.016537975519895554, 0.01616211235523224, 0.0021909684874117374, 0.0007027856772765517, -0.014383027330040932, -0.0118083655834198, 0.005033433437347412, 0.014733833260834217, -0.013493484817445278, -0.018705453723669052, -0.01703912764787674, -0.01321785245090723, -0.05412428453564644, -0.0034892624244093895, 0.013969577848911285, 0.004936335142701864, 0.008776403032243252, -0.0019247322343289852, 0.012522505596280098, 0.006345822010189295, 0.00896433461457491, -5.784156201116275e-06, 0.0009764609858393669, -0.010442729108035564, -0.011369858868420124, -0.01738993264734745, 0.0077928947284817696, -0.009196116589009762, -0.0157987792044878, 0.028440307825803757, -0.013643830083310604, -0.0074420892633497715, -0.023416271433234215, 0.0027484989259392023, 0.002551170764490962, -0.00955945160239935, 0.021436724811792374, 0.0031556838657706976, -0.0020970029290765524, -0.0019122035009786487, -0.010730891488492489, -0.02263948693871498, -0.0023945611901581287, -0.02816467359662056, 0.006796857342123985, 0.003902711672708392, 7.869633554946631e-05, -0.012397217564284801, -0.011720663867890835, -0.016475332900881767, -0.003846332198008895, 0.01262273546308279, -0.000475310196634382, -0.019494766369462013, 0.01845487765967846, 0.008851575665175915, 0.006665305700153112, 0.01863028109073639, 0.0019732811488211155, -0.014483258128166199, -0.002095436677336693, 0.018329590559005737, -0.0104364650323987, -0.019093845039606094, 0.0006785111618228257, 0.00401547085493803, -0.002626343397423625, -0.008193815127015114, 0.026059841737151146, -0.010968937538564205, 0.0018777493387460709, -0.008745080791413784, 0.006991053465753794, 0.009847613051533699, 0.003118097549304366, 0.00560662429779768, -0.006671569775789976, 0.01379417534917593, 0.0035675670951604843, 0.0130424490198493, 0.03693481162190437, 0.031146520748734474, -0.03510561212897301, 0.002028094604611397, -0.02529558539390564, 0.01256009191274643, -0.005760102067142725, 0.003752366406843066, 0.015723606571555138, 0.013430841267108917, -0.014182567596435547, 0.007999619469046593, -0.00995410792529583, 0.00370225147344172, 0.017427518963813782, -0.012434803880751133, 0.00021788313461001962, -0.004829840734601021, 0.009014450013637543, -0.005484468769282103, -0.006659041158854961, -0.018504992127418518, 0.023767076432704926, 0.0024149203673005104, -0.005688061472028494, 0.01167681347578764, 0.011745722033083439, 0.011595376767218113, 0.0040718503296375275, -0.0001409486576449126, -0.005312198307365179, -0.013719002716243267, -0.029943758621811867, 0.0023914289195090532, -0.027112256735563278, -0.0032418190967291594, -0.0055815670639276505, 0.007943239994347095, -0.04212172329425812, -0.005393635481595993, -0.019895685836672783, 0.02568397857248783, 0.028615709394216537, 0.013318082317709923, -0.0013828629162162542, -0.004121965263038874, 0.010718362405896187, 0.014583487994968891, -0.01801637001335621, -0.0018981086323037744, -0.014144981279969215, 0.008613529615104198, -0.0024634692817926407, -0.02891639992594719, 0.0013139547081664205, -0.025533633306622505, 0.008720023557543755, -0.007761572953313589, 0.012904632836580276, 0.001543387770652771, -0.01655050553381443, 0.012766816653311253, -0.006696627475321293, 0.02886628545820713, 0.0038713898975402117, 0.0011275892611593008, 0.009239967912435532, 0.005067887250334024, -0.018166715279221535, 0.008575943298637867, -0.0026717600412666798, -0.004244120791554451, 0.017728209495544434, -0.00889542605727911, 0.022301210090517998, 0.012760551646351814, -0.010568017140030861, -0.01588647998869419, 0.011501410976052284, 0.02401765063405037, 0.02718742936849594, 0.010223476216197014, 0.0006162588833831251, 0.003981016576290131, 0.022363854572176933, 0.025546161457896233, 0.0035581705160439014, 0.014846592210233212, -0.00018421206914354116, -0.03041985258460045, -0.00026310415705665946, 0.014094865880906582, -0.0007160974782891572, 0.020096147432923317, 0.007460882421582937, 0.011244570836424828, -0.0006957382429391146, -0.005841538775712252, -0.0074483538046479225, 0.013480955734848976, -0.020597297698259354, -0.005669268313795328, 0.009847613051533699, -0.009659681469202042, 0.0029975080396980047, 0.0023820323403924704, 0.015823835507035255, 0.004522885661572218, -0.015836365520954132, 0.007429560646414757, -0.005678664892911911, -0.022150864824652672, -0.00469202408567071, 0.0033639746252447367, -0.011169398203492165, -0.033251356333494186, 0.00223481934517622, -0.014558430761098862, 0.01037382148206234, 0.02062235400080681, 0.0048423693515360355, 0.005024036858230829, -0.004253517370671034, -0.010405142791569233, 0.024205582216382027, -0.005631681997328997, -0.008788932114839554, 0.010054337792098522, -0.0068595013581216335, 0.005719383247196674, 0.03227411210536957, 0.005033433437347412, 0.007817951962351799, -0.008488241583108902, -0.003692854894325137, 0.0031478533055633307, 0.010273590683937073, 0.005099209491163492, -0.016124526038765907, 0.021198678761720657, 0.0038150104228407145, -0.02312810905277729, -0.00812490750104189, -0.010154567658901215, 0.015811307355761528, 0.026961911469697952, 0.0058634644374251366, 0.007586169987916946, 0.027513178065419197, -0.00893927738070488, -0.006327028851956129, 0.003235554788261652, -0.0022958971094340086, 0.004234724212437868, 0.02595961093902588, 0.0058634644374251366, 0.010630660690367222, 0.008876632899045944, -0.009784969501197338, -0.009052036330103874, 0.004215931054204702, 0.011106754653155804, 0.0162372849881649, 0.007723986636847258, 0.001768122659996152, 0.009672210551798344, -0.006608926225453615, 0.021524425595998764, 0.024468686431646347, 0.028440307825803757, -0.0017978784162551165, 0.005243290215730667, -0.008200080133974552, -0.002073511481285095, -0.011019052937626839, 0.006333292927592993, 0.004262913949787617, -0.0014134017983451486, -0.01030491292476654, 0.0013969577848911285, -0.01567349024116993, -0.010448994114995003, -0.02445615828037262, 0.005196307320147753, -0.013405783101916313, 0.03918999060988426, 0.004244120791554451, -0.02255178615450859, 0.0022238565143197775, 0.009803762659430504, 0.015861421823501587, 0.0321488231420517, -0.011006523855030537, 0.00975364726036787, -0.0038933150935918093, 0.006370879244059324, -0.01053043082356453, -0.01854257844388485, -0.000833163212519139, -0.009684738703072071, 0.00011363985686330125, 0.0014212323585525155, 0.00665277661755681, -0.0023742017801851034, 0.015598318539559841, -0.0301442202180624, -0.01721452921628952, -0.008626057766377926, -0.004905013367533684, 0.0005528319743461907, 0.008337896317243576, 0.014157509431242943, -0.022702131420373917, 0.001142467139288783, 0.009402841329574585, 0.003279405413195491, 0.029467666521668434, -0.001284198835492134, -0.008832782506942749, 0.0010884368093684316, 0.0021909684874117374, 0.005305933766067028, -0.017239587381482124, 0.00191690179053694, 0.02678650990128517, 0.0014149679336696863, -0.02335362695157528, 0.0011048808228224516, 0.04302379488945007, -0.013405783101916313, -0.02485707961022854, -0.002652966883033514, -0.0005774979945272207, -0.0015449539059773088, 0.004522885661572218, 0.0014055713545531034, 0.01982051320374012, -0.013493484817445278, -0.024869607761502266, -0.023554086685180664, 0.008701230399310589, 0.02449374459683895, -0.016537975519895554, -0.004554207902401686, 0.02961801178753376, 0.017690623179078102, 0.0050584906712174416, 0.02678650990128517, -0.009302611462771893, -0.013982106931507587, 0.003069548634812236, 0.005653607193380594, 0.017151886597275734, -0.029868585988879204, -0.009277554228901863, 0.022363854572176933, 0.002596587408334017, 0.00512113468721509, -0.015422915108501911, -0.008106114342808723, -5.961565420875559e-06, 0.007085019256919622, -0.009609566070139408, 0.0011573451338335872, -0.01738993264734745, -0.0029160710982978344, -0.005916711408644915, 0.020196376368403435, -0.017577864229679108, 0.005324726924300194, -0.025433402508497238, -0.007066226098686457, -0.007066226098686457, -0.019356949254870415, -0.003442279528826475, -0.02008361741900444, 0.0028377664275467396, -0.0049238065257668495, 0.012854517437517643, -0.008776403032243252, 0.04162057116627693, -0.01081859227269888, -0.00365213630720973, -0.01774073764681816, 0.0104364650323987, 0.010048073716461658, -0.019895685836672783, 0.005578434560447931, -0.013543600216507912, 0.015498087741434574, -0.0005097643006592989, -0.002378900069743395, -0.002649834845215082, -0.009659681469202042, 0.009346461854875088, -0.0033044631127268076, -0.013180266134440899, 0.01726464368402958, -0.010474051348865032, 0.012760551646351814, 0.0038244070019572973, -0.018329590559005737, 0.005816481541842222, 0.01880568265914917, -0.011100489646196365, 0.006633983459323645, 0.010417671874165535, 0.005703722592443228, -0.014245211146771908, -0.023491444066166878, -0.005164985079318285, 0.019056258723139763, 0.03139709681272507, -0.0053497846238315105, 0.005782027263194323, -0.029718242585659027, -0.01432038377970457, -0.03137204051017761, 0.004046792630106211, -0.0023146902676671743, -0.012134113349020481, 0.019620053470134735, -0.015084638260304928, -0.02798927202820778, 0.017490161582827568, 0.016963955014944077, 0.005359181202948093, 0.008488241583108902, 0.009841348975896835, -0.002252046251669526, -0.012904632836580276, 0.008720023557543755, 0.004547943361103535, -7.282347360160202e-05, -0.020472008734941483, -0.011037846095860004, -0.00015523929323535413, 0.014408085495233536, 0.0024211846757680178, 0.011244570836424828, 0.00808105617761612, -0.012121584266424179, 0.009440427646040916, -0.008350425399839878, -0.01154526136815548, -0.01405727956444025, 0.012115320190787315, 0.024130409583449364, 0.015184869058430195, 0.005221364554017782, -0.009603301994502544, -0.009853877127170563, -0.012892103753983974, -0.011369858868420124, 0.010574281215667725, 0.0014807439874857664, -0.0069284094497561455, -0.01039887871593237, -0.006452316418290138, 0.011751986108720303, -0.0260848980396986, -4.930755949317245e-06, 0.0020374911837279797, 0.0006362266140058637, -0.015498087741434574, -0.010743419639766216, 0.013944520615041256, 0.012666585855185986, 0.013117621652781963, -0.01538532879203558, -0.018655337393283844, -0.012328309006989002, 0.0055001298896968365, 0.011908595450222492, 0.01747763343155384, 0.004739006981253624, -0.007066226098686457, -0.00033710221759974957, 0.020960630849003792, -0.004259781911969185, 0.013781646266579628, -0.008206344209611416, 0.015548203140497208, -0.004576133098453283, 0.0005031084292568266, -0.008250194601714611, -0.0024963573087006807, -0.010248533450067043, -0.03726056218147278, 0.019870629534125328, -0.01588647998869419, -0.02206316404044628, -0.011758250184357166, -0.022739717736840248, 0.0130424490198493, 0.014044750481843948, 0.0037492343690246344, 0.01017336081713438, 0.010699569247663021, -0.005118002183735371, 0.01432038377970457, -0.00019644718850031495, -0.004118833225220442, -0.007241629064083099, 0.006483638193458319, 0.0032480836380273104, -0.0097787044942379, 0.00740450294688344, -0.02167477086186409, 0.01134480070322752, 0.006220533978193998, 0.009929049760103226, -0.01125709991902113, 0.021298907697200775, 0.009678474627435207, 0.005590963643044233, 0.005847803317010403, -0.01593659445643425, -0.009578244760632515, -0.007291743997484446, -0.019720284268260002, 0.007254157681018114, -0.010599339380860329, -0.0029379965271800756, -0.03826286271214485, 0.029292263090610504, 0.002082908060401678, -0.013368196785449982, 0.005302801728248596, 0.003611417952924967, 0.0005156371626071632, -0.003965355455875397, -0.005017772316932678, 0.0025997196789830923, 0.037060100585222244, 0.013418312184512615, -0.017327288165688515, -0.004660702310502529, 0.001801010686904192, 0.014683717861771584, -0.010298648849129677, -0.0002920769329648465, -0.003827539039775729, -0.014696246944367886, 0.014032222330570221, 0.012616471387445927, -0.007849274203181267, -0.01810407266020775, 0.01712682843208313, -0.004594926256686449, 0.007385709788650274, -0.027287660166621208, -0.03315112367272377, -0.0032574802171438932, 0.01571107655763626, 0.00291920336894691, -0.006208005361258984, 0.017728209495544434, -0.01209652703255415, 0.007742779795080423, 0.007955769076943398, -0.003802481573075056, 0.01624981500208378, -0.005393635481595993, -0.010411407798528671, -0.006878294516354799, -0.003077378962188959, 0.02793915569782257, -0.02052212506532669, -0.0015606149099767208, -0.012322044931352139, -0.005265215411782265, -0.009214909747242928, 0.014182567596435547, 0.006289442535489798, 0.0004087511042598635, 0.024518802762031555, -0.00525268679484725, -0.014007164165377617, 0.012591413222253323, -0.029141917824745178, -0.008770138956606388, -0.010893764905631542, -0.004735874943435192, 0.00540929613634944, 0.025984669104218483, 0.0027641598135232925, 0.017665565013885498, 0.008513298816978931, -0.02057223953306675, -0.020183848217129707, 0.003918372560292482, -0.0013022089842706919, -0.01584889367222786, 0.027613408863544464, 0.009471749886870384, -0.027513178065419197, 0.02149936929345131, 0.0006558027816936374, 0.02590949647128582, 0.004322425462305546, 0.0010132642928510904, -0.003918372560292482, 0.00907082948833704, -0.005027168896049261, 0.006110907532274723, -0.007742779795080423, 0.013330611400306225, 0.013029920868575573, -0.013468427583575249, -0.023629259318113327, -0.003930901642888784, 0.010198418982326984, 0.007905653677880764, -0.008419333025813103, 0.003930901642888784], "2e4d3c45-624f-4149-9374-fca2ed641f58": [-0.04574413225054741, -0.024164190515875816, -0.00810918677598238, 0.05403154343366623, -0.027966300025582314, -0.008354244753718376, -0.02682269550859928, -0.0036350248847156763, -0.012594488449394703, 0.052754271775484085, 0.011280087754130363, 0.022797806188464165, -0.006534876301884651, -0.02138686738908291, 0.011985557153820992, 0.010396393947303295, -0.03383283689618111, 0.006594283971935511, -7.982944953255355e-05, -0.008896342478692532, 0.07247772067785263, -0.04114001616835594, -0.02486223354935646, 0.004841749090701342, -0.0014675623970106244, -0.006757656112313271, -0.009171104989945889, -0.005610339809209108, -0.059437669813632965, -0.020763084292411804, 0.008331967517733574, -0.008354244753718376, 0.024461230263113976, 0.02878315933048725, 0.002348471200093627, -0.05400184169411659, 0.0159213338047266, 0.0033843975979834795, -0.006371504161506891, 0.01920362375676632, -0.000453449843917042, 0.03401105850934982, 0.01586192660033703, -0.011918722651898861, -0.047793708741664886, 0.018297653645277023, -0.028382156044244766, -0.011488014832139015, 0.004370198585093021, 0.014666341245174408, -0.0036164599005132914, 0.02668902836740017, 0.005383846815675497, 0.002383744576945901, 0.03745672106742859, -0.019738296046853065, 0.015832222998142242, 0.07099251449108124, 0.03294171765446663, -0.06374474614858627, -0.02137201465666294, -0.01142118126153946, -0.0025563989765942097, -0.01076026726514101, 0.025649389252066612, -0.003850378794595599, -0.004886304959654808, 0.011220679618418217, 0.0028441562317311764, 0.027892040088772774, 0.001954893348738551, 0.01577281393110752, -0.0463976189494133, 0.026570212095975876, 0.031248589977622032, -0.00039798696525394917, 0.02732766419649124, 0.027357367798686028, 0.0304762851446867, -0.01272815652191639, 0.020332375541329384, -0.028114819899201393, 0.039951857179403305, 0.03169414773583412, 0.01087165717035532, 0.021698759868741035, -0.01373809203505516, -0.05468503013253212, -0.008807230740785599, -0.032110005617141724, 0.025575129315257072, 0.02588701993227005, -0.003766836365684867, 0.0033398414961993694, 0.02094130776822567, 0.01000281609594822, -0.003924638498574495, 0.00825770664960146, 0.02202550321817398, -0.024847380816936493, 0.0012754147173836827, 0.03891221806406975, -0.019901668652892113, 0.016262929886579514, -0.0007922609220258892, -0.0159213338047266, 0.022381950169801712, 0.04363514855504036, 0.011874167248606682, 0.030045578256249428, 0.013285106047987938, -0.05664549395442009, -0.005550931673496962, -0.015876779332756996, -0.056823719292879105, -0.010336985811591148, -0.02545631304383278, 0.0006572006386704743, -0.024906789883971214, -0.029258422553539276, -0.007463125512003899, -0.03454573079943657, -0.004856600891798735, -0.008591877296566963, -0.017629314213991165, 0.04601147025823593, 0.0021052698139101267, 0.03424869105219841, 0.026510804891586304, 0.01414652168750763, 0.006575718987733126, -0.009757758118212223, 0.039149850606918335, -0.013842055574059486, 0.002404166152700782, 0.002274211263284087, 0.0062935310415923595, 0.05765543133020401, 0.01614411361515522, -0.0110201770439744, -0.03323875740170479, -0.021921539679169655, -0.014681193046271801, 0.0019827408250421286, 0.013604423962533474, 0.005034824833273888, -0.04164498299360275, 0.05833861976861954, -0.03920925781130791, 0.02333247847855091, -0.07930963486433029, -0.03852606564760208, -0.028099967166781425, 0.0019214763306081295, 0.057180166244506836, -0.023362182080745697, 0.0019437543815001845, 0.0387042872607708, 0.00851019099354744, 0.045476797968149185, -0.0021906686015427113, -0.05106114596128464, 0.0019214763306081295, 0.026347432285547256, 0.03840724751353264, 0.0007523461827076972, 0.06065553054213524, 0.029332682490348816, -0.033714018762111664, 0.03519921749830246, 0.013433625921607018, -0.02982279844582081, 0.02269384264945984, -0.01206724252551794, 0.006542302202433348, -0.027802927419543266, 0.004444458521902561, 0.01700552925467491, 0.01105730701237917, -0.002775465836748481, -0.01116127148270607, -0.01825309731066227, 0.012119225226342678, 0.0038132488261908293, -0.02114923484623432, 0.01511932723224163, 0.01644115336239338, 0.011614257469773293, 0.016099559143185616, 0.03822902590036392, -0.0162926334887743, 0.003868943778797984, 0.011614257469773293, 0.011428607627749443, -0.011391477659344673, -0.00548781082034111, -0.01942640356719494, -0.02042148821055889, 0.0054284026846289635, 0.013329662382602692, 0.022946326062083244, -0.032614972442388535, -0.01707978919148445, 0.047942228615283966, -0.008888917043805122, 0.02581275999546051, 0.0076264976523816586, -0.04541739076375961, 0.008911194279789925, -0.01519358716905117, 0.0429222546517849, -0.0510314404964447, 0.02465430460870266, 0.006783646997064352, 0.000512857805006206, 0.007069547660648823, -0.019173920154571533, 0.01709464192390442, -0.016767898574471474, -0.0027327663265168667, -0.014101965352892876, -0.011332069523632526, -0.020169004797935486, -0.024446377530694008, -0.033119939267635345, -0.018995696678757668, -0.013983150012791157, 0.0084359310567379, -0.0030817880760878325, -0.016886714845895767, 0.06279421597719193, 0.008940898813307285, 0.013099456205964088, -0.026585064828395844, -0.0387042872607708, 0.05459592118859291, 0.047734301537275314, -0.01985711231827736, -0.03401105850934982, -0.006999000906944275, -0.016678785905241966, -0.002658506389707327, -0.03787257894873619, -0.01984225958585739, -0.010381542146205902, 0.04425893351435661, -0.0060856034979224205, 0.030446581542491913, 0.008346819318830967, 0.024342413991689682, -0.004682090133428574, -0.0012911949306726456, -0.0014527103630825877, 0.015460922382771969, -0.03917955234646797, 0.01912936381995678, 0.04289254918694496, -0.02618405967950821, -0.00963151641190052, -0.004760063253343105, -0.0005035753129050136, 0.013270254246890545, -0.044674791395664215, 0.028827715665102005, 0.029837651178240776, -0.04835808277130127, 0.027208847925066948, 0.0048900181427598, 0.006326948292553425, 0.04791252315044403, 0.01767386868596077, -0.0012846972094848752, -0.02247106283903122, 0.004919722210615873, -0.013166289776563644, -0.010500357486307621, 0.021178940311074257, 0.04464508593082428, 0.009393884800374508, 0.012059817090630531, -0.028040559962391853, -0.009260216727852821, 0.026659324765205383, -0.008406227454543114, 0.030743621289730072, 0.025174124166369438, -0.015668850392103195, -0.028174227103590965, -0.016738194972276688, -0.009579534642398357, -0.00480090593919158, 0.015980742871761322, -0.007444560527801514, 0.04820956289768219, -0.021535387262701988, 0.010292429476976395, -0.0067762210965156555, -0.016322338953614235, -0.007470551412552595, 0.0008043281268328428, -0.007184650748968124, -0.024015670642256737, -0.013507885858416557, -0.024891937151551247, 0.042001429945230484, -0.017465941607952118, 0.026733584702014923, 0.030713917687535286, 0.005183344706892967, 0.00621927110478282, 0.03273378685116768, -0.011755350977182388, -0.005666034761816263, -0.015832222998142242, -0.018282800912857056, 0.0193521436303854, -0.03053569421172142, -0.007425995543599129, 0.016055002808570862, -0.018668953329324722, 0.0024784260895103216, 0.02086704783141613, -0.05126907303929329, 0.0501997284591198, 0.03496158868074417, -0.053259238600730896, 0.023317625746130943, 0.003805822692811489, -0.01862439699470997, -0.020748231559991837, -0.02071852795779705, -0.006523737218230963, -0.024936493486166, 0.017569905146956444, -0.029793094843626022, -0.03540714830160141, -0.042862847447395325, -0.04488271847367287, 0.00814631674438715, -0.017555054277181625, 0.005755146499723196, -0.000306322326650843, 0.02807026356458664, -0.015965890139341354, -0.0256790928542614, -0.02123834751546383, 0.015141605399549007, 0.013604423962533474, -0.0005017188377678394, -0.029392089694738388, 0.0008962248684838414, -0.002801456954330206, 0.02864949032664299, 0.025263236835598946, 0.0034141014330089092, 0.008346819318830967, -0.03323875740170479, -0.013916315510869026, 0.018579840660095215, 0.024342413991689682, -0.029035642743110657, -0.026451395824551582, -0.014710897579789162, -0.029689131304621696, -0.01086423173546791, 0.028174227103590965, 0.01578766666352749, -0.010151335969567299, -0.004433319438248873, -0.025471165776252747, -0.0016810597153380513, 0.013084604404866695, 0.03172385320067406, 0.002066283253952861, -0.053259238600730896, -0.0314268134534359, 0.0725371241569519, 0.003531060880050063, -0.0018490728689357638, 0.008732970803976059, -0.018594693392515182, -0.012572210282087326, -0.037545833736658096, 0.03157533332705498, 0.03534773737192154, 0.006820776965469122, 0.025768205523490906, -0.010285004042088985, -0.016708489507436752, -0.028694046661257744, -0.04806104302406311, -0.008732970803976059, -0.008265133015811443, 0.004849174991250038, -0.01963433250784874, -0.03359520435333252, 0.009958259761333466, -0.008012649603188038, 0.03309023752808571, -0.0038763696793466806, 0.022441359236836433, -0.001655068714171648, 0.02116408757865429, 0.003958055749535561, 0.00937903206795454, -0.031812965869903564, -0.003924638498574495, -0.008487912826240063, 0.0013571006711572409, 0.018060021102428436, -0.019574925303459167, 0.01344847772270441, 0.017688721418380737, 0.04734814912080765, 0.02755044400691986, 0.01636689342558384, 0.005097946152091026, 0.03353579714894295, -0.023807741701602936, -0.009883999824523926, 0.02340673841536045, -1.385847463097889e-05, 0.010916213504970074, 0.007633923552930355, -0.0007936533074826002, 0.028382156044244766, -0.00020259043958503753, 0.04179350286722183, -0.011443459428846836, -0.017777834087610245, 0.04479360580444336, 0.036625009030103683, -0.020555155351758003, -0.004592978395521641, 0.0001558298827148974, -0.005302160978317261, 0.0054135508835315704, -0.004696942400187254, 0.051150258630514145, 0.008851787075400352, -0.02820393070578575, 0.014480691403150558, 0.013299957849085331, -0.0030632230918854475, -0.06356652081012726, -0.03888251259922981, -0.026703881099820137, 0.00020351869170553982, 0.007596793584525585, 0.0096760718151927, 0.026555359363555908, 0.038288433104753494, -0.036832939833402634, -0.03947659209370613, 0.004904869943857193, -0.003410388482734561, 0.0064049214124679565, -0.00985429622232914, 0.027520740404725075, -0.031812965869903564, -0.029213866218924522, 0.015683703124523163, 0.01991651952266693, 0.011242957785725594, 0.0066351271234452724, -0.017391681671142578, -0.008086909539997578, 0.021683907136321068, 0.008309689350426197, 0.016916418448090553, -0.017985761165618896, -0.01651541329920292, 0.012980639934539795, 0.036238860338926315, -0.011599404737353325, -0.02900593914091587, -0.020302671939134598, 0.02218887396156788, -0.005933370441198349, -0.01231972686946392, 0.006274966057389975, 0.009720628149807453, -0.027297960594296455, -0.0037761188577860594, 0.023302774876356125, 0.02269384264945984, -0.04734814912080765, 0.008272559382021427, -0.002662219339981675, -0.005320725962519646, 0.011517719365656376, -0.005736581515520811, 0.02137201465666294, -0.010775119997560978, -0.00959438644349575, 0.000394506030716002, 0.016634229570627213, -0.022218579426407814, -0.006698247976601124, -0.02958516590297222, 0.038288433104753494, 0.008948324248194695, 0.014361875131726265, 0.014324745163321495, -0.016545118764042854, 0.0270454753190279, -0.016693638637661934, 0.0564078614115715, -0.0023763186763972044, -0.014124243520200253, -0.0220403540879488, 0.031961485743522644, -0.034426916390657425, 0.025916725397109985, 0.020748231559991837, 0.008458209224045277, -0.0011287513189017773, -0.02698606811463833, 0.03730820119380951, 0.0031504787039011717, -0.02146112732589245, -0.02857523038983345, -0.022961178794503212, -0.014428709633648396, -0.01614411361515522, 0.0007597721996717155, -0.005784850567579269, -0.0096760718151927, 0.025768205523490906, -0.031010957434773445, -0.022367099300026894, 0.013077178038656712, -0.02123834751546383, 0.011762777343392372, -0.004240243695676327, 0.02333247847855091, -0.01130979135632515, -0.01803031750023365, -0.01119840145111084, -0.011926149018108845, -0.036179449409246445, 0.0609525702893734, -0.004448171239346266, 0.0025879594031721354, -0.0046858033165335655, 0.01571340672671795, 0.011042455211281776, -0.011391477659344673, -0.010782545432448387, 0.01621837355196476, 0.0027680399361997843, 0.00865871086716652, -0.012705878354609013, -0.013010344468057156, -0.005821980535984039, -0.019827408716082573, -0.01745108887553215, -0.0022370810620486736, -0.024906789883971214, -0.03582300245761871, 0.003393680090084672, 0.029986171051859856, -0.015653999522328377, 0.015208438970148563, -0.012995492666959763, 8.905393042368814e-05, -0.014874269254505634, 0.016084706410765648, -0.01731742173433304, 0.011079585179686546, 0.018119430169463158, -0.021357163786888123, 0.02945149876177311, 0.02465430460870266, 0.002938837744295597, 0.0031022096518427134, -0.0033398414961993694, -0.014814861118793488, -0.04158557578921318, -0.000630745489615947, 0.025990985333919525, -0.00421796552836895, -0.0020867048297077417, -0.019604628905653954, -0.0128395464271307, 0.03243674710392952, -0.02624346874654293, -0.03344668447971344, -0.008896342478692532, 0.005461819935590029, -0.001990166725590825, 0.052902791649103165, -0.0050422511994838715, 0.011190975084900856, -0.022203726693987846, 0.01651541329920292, -0.0009793031495064497, -0.008057205006480217, 0.013218272477388382, 0.01599559374153614, 0.02232254296541214, 0.0074668386951088905, 0.011658812873065472, -0.013032622635364532, -0.043367814272642136, 0.026228616014122963, -0.001855570706538856, 0.014851991087198257, -0.013418774120509624, 0.0073405965231359005, 0.012386560440063477, -0.011480589397251606, 0.010032519698143005, -0.007470551412552595, 0.012186058796942234, -0.020911604166030884, 0.011777629144489765, 0.020837344229221344, 0.024594897404313087, 0.01853528432548046, 0.008606729097664356, -0.025708796456456184, 0.029852502048015594, -0.04164498299360275, 0.026124652475118637, 0.0341595783829689, -0.027802927419543266, 0.003412245074287057, -0.003293429035693407, 0.019693739712238312, -0.031010957434773445, -0.022233430296182632, 0.004812045022845268, -0.01709464192390442, 0.010396393947303295, 0.0004989340668544173, 0.0020941307302564383, 0.006505172234028578, -0.0011668095830827951, -0.012943509966135025, 0.0033843975979834795, -0.018505580723285675, 0.005116511136293411, 0.040248896926641464, -0.0027958874125033617, -0.003256299067288637, 0.004663525149226189, -0.002506273565813899, 0.05213049054145813, 0.024624601006507874, -0.010589470155537128, -0.004485301207751036, 0.00621927110478282, 0.008205724880099297, 0.01516388263553381, -0.025827612727880478, -0.00347165297716856, 0.0212977547198534, 0.02318395860493183, 0.017183754593133926, 0.005261317826807499, -0.010693433694541454, 0.007336883805692196, 0.007671053521335125, 0.009423588402569294, 0.004711794201284647, 0.01578766666352749, -0.002743905410170555, 0.03597152233123779, 0.0020402923692017794, 0.028471266850829124, -0.03917955234646797, -0.011814759112894535, 0.0017813106533139944, -0.0073257447220385075, 0.001934471889398992, 0.006022482644766569, -0.008636432699859142, 0.019470959901809692, -0.023510701954364777, -0.011554849334061146, -0.03974393010139465, -0.025768205523490906, 0.032466452568769455, -0.01229002233594656, -0.004117714706808329, -0.014740601181983948, 0.009765184484422207, -0.03727849945425987, -0.011695942841470242, -0.0014267193619161844, 0.021045271307229996, -0.011591979302465916, 0.04515005275607109, 0.006690822076052427, -0.013203419744968414, 0.008042353205382824, -0.04414011910557747, 0.003393680090084672, -0.023956261575222015, -0.01378264743834734, -0.009646368212997913, 0.011799907311797142, -0.03098125383257866, 0.0047043683007359505, -0.009386458434164524, -0.010990473441779613, -0.02195124328136444, -0.003128200536593795, 0.020614564418792725, 0.0022964891977608204, -0.022649286314845085, -0.009237938560545444, 0.023079995065927505, 0.016708489507436752, -0.0004362772451713681, 0.001359885442070663, 0.02114923484623432, -0.03009013459086418, 0.027684111148118973, 0.00625640107318759, 0.03145651891827583, -0.024891937151551247, -0.02486223354935646, -0.01399800181388855, 0.009104270488023758, -0.012735582888126373, 0.0005736581515520811, 0.0007620928226970136, 0.014785157516598701, 0.027817780151963234, -0.022010650485754013, 0.010099354200065136, 0.004269947297871113, 0.015728259459137917, -0.0041696964763104916, 0.004975417163223028, 0.0037389888893812895, 0.013040048070251942, -0.0035236349795013666, 0.03721908852458, -0.0283673033118248, 0.015208438970148563, -0.05082351341843605, 0.014621784910559654, 0.023510701954364777, 0.03600122779607773, -0.01232715230435133, -0.028456415981054306, 0.01976799964904785, 0.020169004797935486, -0.035585369914770126, 0.02820393070578575, 0.002446865662932396, 0.01752534881234169, 0.0032228820491582155, 0.03288230672478676, 0.009646368212997913, -0.0165005624294281, 0.03671412169933319, -0.03736760839819908, 0.006338087376207113, -0.013158864341676235, -0.017762981355190277, 0.003887508763000369, -0.0008140747668221593, 0.03742701932787895, 0.008718119002878666, 0.02625831961631775, 0.0008177877753041685, 0.0245651938021183, 0.020777935162186623, 0.011302364990115166, 0.03380313143134117, -0.015223290771245956, -0.041763801127672195, -0.021119531244039536, -0.00934190209954977, -0.008124039508402348, -0.004711794201284647, -0.013262827880680561, -0.0437539666891098, 0.0060670385137200356, -0.02159479446709156, 0.012921232730150223, -0.03793198615312576, 0.03089214116334915, 0.004214252345263958, 0.012869250029325485, 0.03932807222008705, 0.018579840660095215, -0.025263236835598946, 0.01407226175069809, -0.013879185542464256, -0.008294837549328804, -0.013582145795226097, 0.02057000808417797, 0.009683498181402683, -0.006174715235829353, -0.012460820376873016, 0.004117714706808329, -0.01541636697947979, 0.04535797983407974, 0.02536720037460327, -0.017406534403562546, -0.03309023752808571, -0.013285106047987938, -0.02850097045302391, -0.017540201544761658, 0.013842055574059486, 0.007633923552930355, -0.01422078162431717, 0.006713100243359804, 0.009772609919309616, -0.010292429476976395, -0.0012197197647765279, 0.014324745163321495, 0.024386970326304436, 0.02146112732589245, 0.019604628905653954, -0.014577229507267475, -0.009074566885828972, -0.005610339809209108, 0.02080763876438141, 0.025129569694399834, -0.01976799964904785, 0.025545425713062286, 0.005833119619637728, 0.006482894066721201, -0.01869865693151951, -0.03885280713438988, -0.029139606282114983, -0.015141605399549007, 0.01584707386791706, -0.013463330455124378, 0.022664139047265053, 0.012609340250492096, 0.01195585262030363, -0.041763801127672195, 0.014012853614985943, -0.02181757427752018, -0.05147700011730194, -0.00807205680757761, -0.019589776173233986, 0.0216690544039011, 0.013545015826821327, 0.022931475192308426, -0.0038912217132747173, 0.04390248656272888, 0.0414370559155941, 0.027223700657486916, -0.005840545520186424, -0.007277475669980049, 0.022649286314845085, -0.034278396517038345, 0.01531240250915289, -0.0050571030005812645, 0.02465430460870266, -0.02253047004342079, 0.03513981029391289, 0.021698759868741035, -0.008124039508402348, -0.01636689342558384, 0.023020585998892784, -0.026080096140503883, -0.023362182080745697, 0.006364078260958195, -0.009252790361642838, 0.016456006094813347, 0.02648109942674637, -0.0007797295111231506, 0.0026733584236353636, 0.028560379520058632, 0.024624601006507874, -0.01883232407271862, 0.007953241467475891, -0.000789940299000591, 0.006746517028659582, -0.024921640753746033, 0.019396699965000153, -0.01868380419909954, 0.0003408995980862528, -0.00817602127790451, 0.019010549411177635, -0.020451191812753677, 0.01883232407271862, 0.020198708400130272, -0.005602913908660412, -0.01497823279350996, 0.03285260498523712, -0.01578766666352749, -0.005981639493256807, -0.0245651938021183, -0.009869148023426533, -0.032822899520397186, 0.028263339772820473, -0.008383949287235737, -0.006074464414268732, -0.005454393569380045, -0.00952755194157362, -0.0003759410174097866, -0.04898186773061752, -0.04304106906056404, -0.008888917043805122, 0.06921027600765228, -0.054863255470991135, 0.009460718370974064, -0.014354449696838856, 0.012267745099961758, -0.011629109270870686, 0.0133370878174901, 0.020094744861125946, -0.028397006914019585, 0.0023614666424691677, 0.07521048188209534, 0.004158557392656803, -0.00043024361366406083, 0.004162270575761795, -0.01240141224116087, -0.02034722827374935, -0.029926761984825134, 0.007247771602123976, 0.03243674710392952, 0.0059259445406496525, -0.0031876086723059416, -0.0023763186763972044, -0.04604117199778557, -0.023362182080745697, 0.005305873695760965, 0.03840724751353264, -0.021624499931931496, 0.0064383381977677345, -0.01853528432548046, -0.004945713095366955, -0.007700757589191198, -0.008339392952620983, -0.02172846347093582, -0.008688414469361305, -0.04188261553645134, -0.014094539918005466, -0.021921539679169655, -0.014688619412481785, 0.05067499354481697, -0.011725647374987602, -0.0322585254907608, 0.001693126978352666, 0.014710897579789162, 0.021327460184693336, -0.021119531244039536, 0.0017710999818518758, 0.006501459050923586, 0.0429222546517849, 0.00026942440308630466, -0.0013264684239402413, -0.004485301207751036, 0.008866638876497746, -0.01752534881234169, -0.0014619928551837802, -0.03118918091058731, -0.0057625724002718925, -0.020525451749563217, -0.002914703218266368, 0.014235633425414562, 0.005513801705092192, -0.013144012540578842, 0.03579329699277878, -0.022946326062083244, -0.010708285495638847, -0.008005223236978054, -0.004102862440049648, -0.01679760217666626, -0.00492714811116457, 0.021000714972615242, 0.009898852556943893, 0.007570802699774504, 0.00945329200476408, -0.04345692694187164, -0.003898647613823414, -0.012527654878795147, -0.01578766666352749, 0.01832735724747181, -0.041199423372745514, -0.011517719365656376, -0.03656560182571411, 0.011614257469773293, 0.012520228512585163, -0.03475365787744522, 0.005751433782279491, -0.02327306941151619, 0.0018472163937985897, 0.011658812873065472, -0.005755146499723196, 0.021342311054468155, -0.001436001854017377, -0.00025874952552840114, -0.0161292627453804, 0.015550035052001476, -0.009030010551214218, -0.00016905742813833058, -0.020673971623182297, -0.012683600187301636, 0.0141836516559124, -0.03314964473247528, 0.05382361635565758, 0.025322645902633667, -0.0019994492176920176, 0.01254250667989254, -0.006768795195966959, 0.018223393708467484, 0.020466044545173645, -0.01228259690105915, 0.0028682907577604055, 0.011933575384318829, -0.005844258703291416, -0.007567089516669512, -0.0017497502267360687, 0.026065245270729065, -0.0005003264523111284, 0.013968297280371189, 0.01942640356719494, -0.0015724545810371637, -0.002758757444098592, 0.006642553023993969, 0.003031662665307522, -0.009163678623735905, 0.008703267201781273, 0.008086909539997578, -0.009846869856119156, 0.02174331434071064, -0.010730563662946224, -0.008970602415502071, -0.021268051117658615, 0.006516311317682266, -0.007812147494405508, 0.01556488685309887, -0.03671412169933319, 0.003568190848454833, -0.10241933166980743, -0.02196609415113926, -0.012743008323013783, -0.012134077027440071, -0.005706877447664738, -0.02159479446709156, 0.028382156044244766, 0.021654203534126282, -0.010492932051420212, -0.0018165841465815902, -0.006059612613171339, -0.007570802699774504, 0.010812249965965748, 0.02850097045302391, 0.0015028358902782202, -0.01504506729543209, 0.010247874073684216, -0.0073591615073382854, 0.015371810644865036, -0.015223290771245956, -0.013648980297148228, -0.0036535898689180613, 0.02960001863539219, -0.0330011248588562, -0.024446377530694008, 0.031367406249046326, 0.009794888086616993, -0.009995389729738235, -0.0222482830286026, -0.01531240250915289, 0.011718221008777618, 9.236081677954644e-05, -0.004812045022845268, 0.01123553141951561, 0.014450987800955772, 0.030298061668872833, 0.009171104989945889, 0.0037594102323055267, 0.02342158928513527, 0.019649185240268707, 0.0006817991961725056, 0.004437032155692577, -0.008881490677595139, 0.005320725962519646, 0.021832427009940147, 0.0012067243224009871, 0.0002582854067441076, -0.05055617913603783, 0.00756337633356452, 0.0011760920751839876, -0.009549830108880997, 0.013084604404866695, 0.00418083555996418, -0.019664036110043526, -0.006390069145709276, -0.010136484168469906, 0.014391579665243626, 0.0016309343045577407, 0.011190975084900856, -0.027446480467915535, 0.04013007879257202, 0.015208438970148563, 0.0018110147211700678, -0.00429222546517849, -0.016753045842051506, 0.025248385965824127, 0.014302467927336693, 0.01337421778589487, 0.01479258295148611, 0.017569905146956444, 0.00612273346632719, 0.00212754774838686, 0.009579534642398357, 0.012468246743083, 0.031218886375427246, -0.01494110282510519, 0.007916111499071121, 0.010916213504970074, 0.03730820119380951, -0.018995696678757668, -0.01853528432548046, 0.0034995004534721375, 0.024164190515875816, -0.011591979302465916, -0.01109443698078394, -0.004039741586893797, -0.009022585116326809, -0.024446377530694008, -0.01716890186071396, 0.004225391428917646, 0.004474162124097347, 0.017480794340372086, 0.031961485743522644, 0.011035029776394367, -0.014985659159719944, 0.049991801381111145, -0.008331967517733574, 0.008911194279789925, 0.017569905146956444, -0.00031235592905431986, -0.0019437543815001845, -0.03401105850934982, 0.004555848427116871, 0.003932064864784479, -0.0001416740706190467, -0.01621837355196476, -0.01868380419909954, 0.019173920154571533, -0.007515107747167349, -0.01370096206665039, -0.00784927699714899, -0.015743110328912735, -0.0022816371638327837, 0.006319522392004728, -0.011591979302465916, -0.016158966347575188, -0.0002684961655177176, 0.0015733827603980899, -0.009690924547612667, 0.009304772131145, -0.0023781750351190567, 0.02028781920671463, -0.0023206237237900496, -0.04455597326159477, 0.0016587817808613181, -0.003880082629621029, -0.02749103493988514, -0.0015251138247549534, 0.008161169476807117, -0.0025081299245357513, -0.00014921609545126557, 0.003649876918643713, -0.014844565652310848, 0.0037891143001616, -0.002092274371534586, 0.020480895414948463, 0.016975825652480125, -0.022575026378035545, 0.02058485895395279, -0.026273172348737717, 0.005818267352879047, 0.008695840835571289, 0.004904869943857193, 0.011673664674162865, -0.013225697912275791, 0.0038466656114906073, -0.009304772131145, -0.030654510483145714, 0.009935982525348663, 0.0014285759534686804, -0.014681193046271801, 0.019961075857281685, 0.0325852669775486, 0.04116971790790558, -0.007537385448813438, -0.021698759868741035, -0.017852094024419785, 0.002483995631337166, -0.007496542762964964, 0.007938389666378498, -0.03314964473247528, -0.00010390592069597915, 0.008851787075400352, -0.015579738654196262, 0.007370300590991974, -0.013767795637249947, -0.019233329221606255, -0.018000613898038864, -0.006783646997064352, -0.006612848956137896, 0.006000204477459192, -0.009549830108880997, -0.01773327775299549, -0.010054797865450382, 0.014309893362224102, -0.02674843557178974, -0.0028144523967057467, 0.0064049214124679565, 0.029644574970006943, -0.026362285017967224, -0.02392655797302723, -0.013752943836152554, -0.0069730100221931934, 0.009987964294850826, -0.007303466554731131, 0.010247874073684216, -0.011532571166753769, -0.00102664390578866, -0.018802620470523834, 0.007076974026858807, 0.024936493486166, -0.020258115604519844, 0.0022556462790817022, 0.011569701135158539, 0.00311706168577075, 0.00937903206795454, 0.010782545432448387, 0.004607830196619034, -0.020852195098996162, -0.008859212510287762, -0.011257809586822987, -0.0029741113539785147, 0.00825028121471405, 0.005814554635435343, -0.009401310235261917, 0.0007481690845452249, 0.005621478892862797, 0.02885741926729679, 0.026288025081157684, -0.027075180783867836, -0.02763955481350422, -0.0015214008744806051, 0.013307384215295315, -0.007366587407886982, -0.0035960383247584105, -0.015609443187713623, -0.004500153474509716, -0.02325821854174137, 0.00966864638030529, 0.0005820124060846865, 0.021104680374264717, -0.0168718621134758, 0.015371810644865036, -0.022589879110455513, -0.00825770664960146, 0.007210641633719206, 0.01494110282510519, -0.08406227082014084, -0.018149133771657944, 0.0009036508272401989, -0.021401720121502876, 0.013656405732035637, 0.006408634129911661, 0.010114206001162529, -0.02370377816259861, 0.003909786697477102, 0.02812967076897621, 0.007611645385622978, 0.012631618417799473, -0.007177224848419428, -0.007229206617921591, -0.017183754593133926, -0.01280241645872593, 0.008911194279789925, 0.036743827164173126, -0.002658506389707327, -0.028099967166781425, -0.00949042197316885, 0.0014898403314873576, 0.022886918857693672, -0.003906073747202754, 0.0007755524129606783, -0.004830610007047653, 0.007277475669980049, 0.007826999761164188, -0.017050085589289665, 0.017911501228809357, -0.004767489153891802, 0.007470551412552595, -0.008458209224045277, -0.027758371084928513, 0.012260318733751774, 0.02551572024822235, -0.030595101416110992, 0.033179350197315216, -0.012007835321128368, 0.010017667897045612, 0.022560175508260727, -0.004808332305401564, -0.0026566500309854746, -0.0025712510105222464, -0.0028645778074860573, -0.0245651938021183, -0.020480895414948463, 0.004659812431782484, -0.007236632518470287, 0.001420221640728414, -0.028515823185443878, 0.0005170349613763392, -0.002402309561148286, -0.03992215171456337, 0.00283673033118248, -0.010663730092346668, -0.0028831427916884422, 0.00992855615913868, 0.00959438644349575, -0.0030112413223832846, -0.0272534042596817, 0.023867150768637657, 0.0008976171957328916, 0.0030502276495099068, -0.017064938321709633, 0.008517617359757423, 0.013441052287817001, 0.018238244578242302, 0.005469245836138725, -0.006950731854885817, -0.019366996362805367, 0.022381950169801712, -0.012787564657628536, -0.00483803590759635, -0.00788640696555376, -0.022664139047265053, -0.02232254296541214, -0.009973112493753433, -0.0002259127068100497, 0.022782955318689346, -0.002805169904604554, 0.01737682893872261, -0.0002659434685483575, 0.021045271307229996, 0.01272815652191639, -0.03484277054667473, -0.015520330518484116, 0.0017803824739530683, 0.02587216906249523, -0.011569701135158539, 0.006252688355743885, 0.010374115779995918, -0.03199118748307228, 0.0165005624294281, -0.010329559445381165, 0.036476489156484604, 0.004696942400187254, -0.03040202520787716, -0.02429785765707493, -0.01093849167227745, 0.01722830906510353, -0.0008720903424546123, 0.0018100864253938198, -0.02122349478304386, 0.03701116144657135, -0.004938287194818258, -0.01104988157749176, -0.021060124039649963, -0.004191974643617868, -0.011591979302465916, -0.0022519330959767103, -0.02625831961631775, 0.0009625946986488998, -0.004295938648283482, 0.01875806413590908, 0.004589265212416649, -0.005625191610306501, -0.005628904793411493, -0.015297550708055496, -0.010218169540166855, 0.05147700011730194, 0.014584654942154884, -0.02400081790983677, 0.029109902679920197, -0.00472664600238204, 0.0071623725816607475, -0.037545833736658096, -0.0003627134719863534, 0.0216690544039011, 0.011970705352723598, 0.009252790361642838, -0.01700552925467491, -0.04761548340320587, -0.017703574150800705, 0.01362670212984085, 0.01500793732702732, 0.03062480501830578, -0.026659324765205383, -0.006211845204234123, 0.029184162616729736, -0.02640683948993683, 0.024921640753746033, -0.010507783852517605, 0.0017284004716202617, 0.003629455342888832, -0.013478182256221771, -0.010589470155537128, -0.011220679618418217, -0.003724136855453253, -0.02342158928513527, 0.011488014832139015, -0.018995696678757668, -0.0017738847527652979, 0.0193521436303854, 0.024401821196079254, -0.03329816460609436, -0.011220679618418217, -0.024386970326304436, 0.015000510960817337, -0.0022036642767488956, 0.005387559998780489, -0.0006910816882736981, 0.001932615297846496, -0.0038169617764651775, -0.006586858071386814, 0.024995900690555573, 0.01388661190867424, 0.0161292627453804, -0.014599507674574852, -0.008354244753718376, 0.005688312463462353, -0.043011367321014404, -0.006746517028659582, -0.02080763876438141, 0.005558357574045658, -0.013507885858416557, 0.03205059841275215, -0.004295938648283482, 0.0028107394464313984, -0.013062326237559319, 0.011228105053305626, -0.018045170232653618, -0.03496158868074417, -0.00405459338799119, -0.03303082659840584, -0.016559969633817673, -0.0013552441960200667, -0.02566424012184143, 0.007723035290837288, -0.004139992408454418, 0.02924356982111931, 0.008629007264971733, -0.019619479775428772, -0.015683703124523163, -0.006163576152175665, 0.006958157755434513, -0.014636637642979622, 0.004177122376859188, 0.011651387438178062, -0.00788640696555376, -0.0001557138457428664, 0.010893935337662697, -0.015252995304763317, 0.0011575270909816027, -0.00015873066149652004, -0.0025712510105222464, -0.010240447707474232, 0.02967427857220173, -0.017391681671142578, 0.007671053521335125, -0.01563914678990841, -0.00021140881290193647, -0.030357470735907555, -0.03534773737192154, -0.04479360580444336, -0.011978130787611008, -0.00799779687076807, 0.01109443698078394, -0.01504506729543209, 0.024936493486166, -0.008376522921025753, 0.0038466656114906073, 0.010470653884112835, 0.02385229803621769, -0.034486323595047, -0.008903768844902515, 0.012022687122225761, -0.01752534881234169, 0.01765901781618595, 0.005331865046173334, 0.0010572761530056596, -0.00756337633356452, 0.03463484346866608, 0.0272534042596817, 0.005528653506189585, -0.012705878354609013, 0.013686110265552998, -0.02515927329659462, 0.0245651938021183, 0.03240704536437988, 0.007058409042656422, -0.017911501228809357, -0.0050719548016786575, 0.0031820391304790974, -0.00952012650668621, -0.014042558148503304, 0.0026176634710282087, 0.004481588490307331, -0.022797806188464165, -0.006338087376207113, 0.018862029537558556, 0.013188567943871021, -0.008784952573478222, -0.003961768466979265, 0.012661322951316833, 0.007199502550065517, 0.0029796806629747152, 0.013210846111178398, -0.007262623868882656, 0.02036207914352417, -0.00481575820595026, -0.006193280220031738, 0.0106488773599267, -0.008970602415502071, 0.01526784710586071, -0.015460922382771969, -0.004533570259809494, -0.003865230595692992, -0.022946326062083244, -0.010403819382190704, -0.008079483173787594, 0.004262521397322416, 0.0005258533055894077, -0.005963074509054422, -0.02049574814736843, -0.043961893767118454, 0.0032414470333606005, -0.0023577536921948195, -0.014703471213579178, 0.001066558645106852, 0.016693638637661934, 0.010656303726136684, -0.008680989034473896, -0.005777424667030573, -0.006360365077853203, 0.003607177408412099, 0.01362670212984085, -0.016040150076150894, -0.006757656112313271, 0.012973214499652386, -0.003428953466936946, 0.003623885801061988, -0.0017413959139958024, 0.006687108892947435, -0.01526784710586071, 0.0029926763381808996, -0.004637534264475107, -0.00803492683917284, -0.0017822389490902424, -0.006557154003530741, 0.007125242613255978, -0.012535080313682556, -0.017258014529943466, -0.011703369207680225, -0.005016259849071503, 0.013574720360338688, -0.0038095356430858374, 0.033119939267635345, -0.008992880582809448, -0.0038355267606675625, 0.019173920154571533, -0.015906482934951782, -0.005420976784080267, -0.009185956791043282, 0.005491523537784815, -0.010240447707474232, 0.0018388621974736452, -0.0013571006711572409, 0.05349687114357948, -0.011733072809875011, 0.012186058796942234, 0.00394320348277688, 0.007789869327098131, -0.005617765709757805, -0.012668748386204243, 0.019470959901809692, 0.01098304707556963, -0.008636432699859142, -0.004024889785796404, -0.04485301300883293, 0.010329559445381165, -0.011361773125827312, -0.026703881099820137, 0.019975928589701653, 0.01765901781618595, 0.021342311054468155, -0.017495645210146904, 0.027030624449253082, 0.003287859493866563, 0.007381439674645662, -0.007084399927407503, 0.018995696678757668, 0.0005555573152378201, 0.006895036902278662, 0.015401515178382397, 0.0022519330959767103, -0.010997899807989597, 0.011562274768948555, -0.0010192178888246417, 0.006475468166172504, -0.008309689350426197, -0.005632617510855198, -0.01352273765951395, 0.014332171529531479, -0.025070160627365112, 0.0283673033118248, 0.00019493237778078765, -0.005224187858402729, -0.007901259697973728, 0.005628904793411493, 0.013619275763630867, 0.008643859066069126, 0.01393116731196642, -0.005279882811009884, 0.0015808087773621082, -0.0022203726693987846, -0.0027847483288496733, -0.00817602127790451, -0.021357163786888123, -0.0015167596284300089, -0.005469245836138725, 0.016456006094813347, 0.011851889081299305, 3.9943734009284526e-05, -0.0019066244130954146, 0.002071852795779705, -0.009735479950904846, 0.0064569031819701195, -0.004466736223548651, -0.001321827177889645, -0.02960001863539219, -0.03626856207847595, 0.006096742581576109, -0.0349021777510643, 0.002329906215891242, -0.018223393708467484, -0.002935124794021249, -0.0028255912475287914, 0.001164953107945621, 0.019975928589701653, 0.0073591615073382854, -0.007069547660648823, -0.0005193555844016373, 0.01730256900191307, -0.0017441806849092245, 0.00792353693395853, -0.006861620116978884, -0.0033082810696214437, -0.005584348924458027, -0.007366587407886982, 0.0012076525017619133, -0.022723546251654625, -0.0010377828730270267, -0.0027717528864741325, 0.008391374722123146, -0.023733481764793396, -0.0033584064804017544, -0.014658914878964424, -0.01195585262030363, 0.003562621306627989, -0.01702038198709488, 0.010656303726136684, 0.019233329221606255, -0.020332375541329384, -0.009282494895160198, -0.014547524973750114, 0.005031112115830183, 0.00272534042596817, -0.012148928828537464, 0.011532571166753769, 0.01941155269742012, 0.007444560527801514, -0.0064049214124679565, -0.006999000906944275, 0.006546014919877052, -0.003172756638377905, -0.006341800093650818, 0.013641553930938244, -0.008725544437766075, 0.00425509549677372, -0.007448273710906506, -0.010225595906376839, -0.036179449409246445, 0.020971011370420456, 0.018876880407333374, 0.004867739975452423, -0.01926303282380104, -0.019545219838619232, 0.0009101486066356301, 0.008636432699859142, -0.00532443867996335, 0.020985864102840424, 0.013225697912275791, 0.009178530424833298, -0.026302875950932503, -0.009022585116326809, -0.02377803809940815, 0.0013144012773409486, 0.01948581263422966, 0.030208950862288475, 0.00607075123116374, 0.004459310322999954, 0.009104270488023758, 6.6971747401112225e-06, -0.001006222446449101, -0.011599404737353325, 0.009921129792928696, -0.011814759112894535, -0.0035403433721512556, 0.0007523461827076972, 0.010522635653614998, -0.007154946681112051, -0.007210641633719206, 0.0002506273449398577, -0.007671053521335125, -0.016708489507436752, -0.008844360709190369, 0.011688517406582832, 0.025723649188876152, -0.02706032805144787, 0.005283595994114876, -0.006590571254491806, 0.018772916868329048, -0.011985557153820992, -0.012809842824935913, 0.02960001863539219, 0.0015993737615644932, -0.008569599129259586, -0.0024153050035238266, -0.015141605399549007, -0.019649185240268707, -0.0006632342119701207, 0.0038392397109419107, 0.024104781448841095, 0.001677346765063703, 0.007834425196051598, 0.018357060849666595, 0.003932064864784479, 0.0030335192568600178, 0.01269102655351162, 0.0019289023475721478, -0.009987964294850826, 0.00865871086716652, 0.00375198433175683, -0.010522635653614998, -0.001004365854896605, -0.02495134435594082, 0.011718221008777618, 0.010671155527234077, -0.020703675225377083, 0.022738398984074593, -0.006378930062055588, 0.005019973032176495, -0.024773120880126953, 0.010856805369257927, -0.016010446473956108, 0.006895036902278662, 0.028812862932682037, -0.026807844638824463, 0.009178530424833298, -0.00023461504315491766, -0.008851787075400352, -0.002424587495625019, 0.009401310235261917, -0.003906073747202754, 0.014896547421813011, 0.0036368812434375286, 0.009289920330047607, -0.0068282028660178185, -0.005502662621438503, 0.010737990029156208, 0.009586960077285767, 0.00047410340630449355, 0.007080686744302511, -0.00012020830035908148, -0.014049983583390713, -0.01337421778589487, 0.016812454909086227, -0.05866536498069763, -0.016381746158003807, 0.010485505685210228, 0.006204419303685427, -0.020243264734745026, 0.005688312463462353, 0.017941204831004143, 0.004622682463377714, 0.03016439452767372, 0.011294939555227757, 0.0015464635798707604, 0.018074873834848404, 0.011250383220613003, -0.011643961071968079, -0.02152053453028202, 0.007760165259242058, 0.003213599557057023, 0.02174331434071064, 0.022367099300026894, -0.012631618417799473, 0.02094130776822567, -0.012022687122225761, -0.02260472998023033, 0.002443152479827404, 0.00689132371917367, -0.0030279497150331736, 0.01889173313975334, -0.006753942929208279, 0.010552340187132359, -0.01868380419909954, -0.019366996362805367, 0.004099149722605944, -0.0162926334887743, -0.01707978919148445, 0.0057143038138747215, 0.0014666341012343764, -0.00610788119956851, 0.001655997009947896, -0.02013929933309555, -2.950092857645359e-05, 0.008680989034473896, 0.006171002518385649, 0.004611543379724026, 0.005651182495057583, 0.01904025301337242, 0.012349430471658707, 0.0064420513808727264, -0.000966307648923248, -0.0048454622738063335, 0.0015269702998921275, -0.006605423055589199, 0.019797705113887787, -0.005658608861267567, -0.011176123283803463, 0.018208540976047516, 0.0043664854019880295, -0.010077076032757759, 0.0026325155049562454, 0.0006720526143908501, 0.018371913582086563, -0.01479258295148611, 0.00023577535466756672, 0.0199313722550869, 0.017332274466753006, 0.004600404296070337, 0.010017667897045612, 0.02114923484623432, -0.0045447093434631824, 0.01679760217666626, 0.029436646029353142, -0.005317012779414654, 4.463574441615492e-06, -0.0004669094632845372, -0.020317524671554565, -0.012371708638966084, -0.019530368968844414, -0.02114923484623432, 0.004979129880666733, -0.028679195791482925, 0.003705571871250868, 0.024669157341122627, -0.006694535259157419, 0.01578766666352749, -0.0030409451574087143, -0.0005899025127291679, -0.003371401922777295, 0.008458209224045277, 0.004385050386190414, 0.013619275763630867, 0.014176225289702415, -0.02310969866812229, 0.007173511665314436, -0.0004713186644949019, -0.025708796456456184, 0.02400081790983677, 0.01367125753313303, 0.004073158372193575, -0.006000204477459192, 0.005859110504388809, 0.010411245748400688, 0.011480589397251606, 0.010084502398967743, -0.009111696854233742, 0.009624090045690536, -0.005079381167888641, -0.0050236862152814865, -0.013262827880680561, 0.006248975172638893, 0.004622682463377714, 0.007262623868882656, -0.01269102655351162, 0.018446173518896103, -0.009059715084731579, 0.01373809203505516, -0.006623988039791584, -0.002578676911070943, 0.011354347690939903, 0.0010164331179112196, 0.018817473202943802, -0.0050756679847836494, 0.010700860060751438, -0.009371606633067131, -0.014681193046271801, -0.021639350801706314, -0.0061041684821248055, 0.01341134775429964, 0.003157904604449868, 0.005643756594508886, 0.00461525609716773, 0.004986556246876717, -0.02422359772026539, -0.007812147494405508, 0.013418774120509624, -0.017629314213991165, -0.011146419681608677, 0.003532917471602559, 0.011562274768948555, -0.019871965050697327, 0.005328151863068342, 0.017614461481571198, -0.007459412794560194, 0.001221576239913702, 0.01569855399429798, 0.000965379411354661, -0.007444560527801514, -0.0007936533074826002, -0.010604321956634521, -0.007789869327098131, -0.011302364990115166, -0.000769518781453371, -0.025471165776252747, 0.025114716961979866, -0.0195600725710392, -0.022485915571451187, 0.014176225289702415, 0.011280087754130363, -0.010923639871180058, 0.021074974909424782, -0.025545425713062286, 0.0020050187595188618, -0.021475980058312416, -0.036238860338926315, -0.011450884863734245, -0.022070059552788734, -0.01377522200345993, -0.011903870850801468, 0.011190975084900856, -0.0015594590222463012, 0.0020551441702991724, 0.013299957849085331, 0.0414370559155941, 0.003490217961370945, 0.0012206480605527759, -0.009653794579207897, 0.03127829357981682, 0.006861620116978884, 0.013983150012791157, 0.036179449409246445, -0.008918620645999908, 0.004730359185487032, 0.011035029776394367, 0.0008887988515198231, -0.0016522840596735477, -0.019753148779273033, 0.0005360640352591872, 0.002144256141036749, -0.011265235021710396, 0.01606985367834568, 0.003664728719741106, -0.01644115336239338, 0.00814631674438715, 0.005855397321283817, -0.00851019099354744, -0.0022556462790817022, 0.0035384870134294033, -0.02740192413330078, -3.3765074476832524e-05, 0.019574925303459167, 0.010062224231660366, -0.0080646313726902, 0.01745108887553215, 0.0019456108566373587, 0.006226697470992804, -0.003920925781130791, -0.0021962381433695555, -0.005034824833273888, 0.03852606564760208, 0.002738335868343711, 0.0037556972820311785, 0.017258014529943466, 0.0024283004458993673, 0.00042861918336711824, 0.007893833331763744, -0.010678581893444061, 0.019946224987506866, 0.02900593914091587, 0.020243264734745026, -0.008963176980614662, -0.009386458434164524, 0.0027531879022717476, -0.006735377945005894, -0.015460922382771969, 0.012520228512585163, 0.010069649666547775, -0.010426097549498081, -0.015980742871761322, 0.0159213338047266, -0.03935777768492699, 0.01104988157749176, 0.028842566534876823, -0.026421692222356796, 0.0029871067963540554, 0.014131669886410236, -0.015386662445962429, 0.02502560429275036, 0.01920362375676632, -0.0019289023475721478, 0.01976799964904785, -0.003768692724406719, -0.011027603410184383, 0.0189808439463377, 0.030803030356764793, 0.01838676445186138, -0.00042676267912611365, -0.021995799615979195, 0.016233226284384727, -0.0016086562536656857, 0.0029054207261651754, 0.02930297888815403, -0.027877187356352806, -0.01109443698078394, 0.006171002518385649, 0.016381746158003807, 0.018282800912857056, -0.005951935425400734, 0.0014035131316632032, 3.605668825912289e-05, 0.0084359310567379, 0.0032618686091154814, -0.000808041135314852, -0.010567191988229752, -0.00043488485971465707, 0.0168718621134758, -0.012809842824935913, -0.006512598134577274, 0.0062341233715415, -0.011681091040372849, 0.0191887728869915, -0.0043813372030854225, -0.003920925781130791, -0.008874064311385155, 8.394855831284076e-05, -0.0033175635617226362, 0.0022834937553852797, 0.03695175424218178, 0.005584348924458027, -0.01765901781618595, 0.014970807358622551, 0.009067140519618988, -0.0062601142562925816, 0.010500357486307621, 0.00937903206795454, 0.005899953655898571, -0.011458311229944229, 0.007555950433015823, 0.015609443187713623, -0.004860314074903727, 0.04167468845844269, -0.01123553141951561, -0.010634025558829308, 0.010715711861848831, -0.011398903094232082, -0.008153743110597134, 0.016916418448090553, -0.0047006551176309586, 0.0035811862908303738, -0.00992855615913868, -0.009728054516017437, 0.004262521397322416, 0.003946916665881872, 0.025396905839443207, -0.0006567364907823503, -0.002229655161499977, 0.01549062691628933, -0.022055206820368767, 0.004229104612022638, 0.0007268193294294178, 0.014176225289702415, 0.01911451295018196, -0.00934190209954977, -0.002920272760093212, -0.00425509549677372, 0.00607075123116374, 0.003729706397280097, 0.009913704358041286, 0.0065979971550405025, 0.01280241645872593, 0.014777731150388718, -0.004581839311867952, -0.010069649666547775, -0.002465430647134781, 0.009260216727852821, 0.0080646313726902, 0.0062341233715415, 0.0003998434403911233, 0.003770549315959215, 0.008012649603188038, -0.015609443187713623, 0.02553057298064232, -0.012609340250492096, -0.0023373321164399385, 0.0030483712907880545, 0.025471165776252747, 0.012379135005176067, -0.019827408716082573, -0.031248589977622032, -0.005224187858402729, 0.009156252257525921, 0.0010331416269764304, 0.004485301207751036, -0.01890658400952816, -0.0017070507165044546, 0.033268459141254425, 0.016753045842051506, 0.025901872664690018, -0.010277577675879002, -0.011480589397251606, -0.0037129977717995644, 0.016307486221194267, 0.007589367683976889, -0.0033584064804017544, -0.01210437249392271, 0.001934471889398992, 0.01076026726514101, -0.020169004797935486, 0.0055360798723995686, 0.0159213338047266, 0.00851019099354744, -0.002420874545350671, 0.011488014832139015, 0.006731665227562189, 0.011488014832139015, -0.007715609390288591, 0.007151233963668346, 0.008614154532551765, 0.0024580045137554407, -0.01341134775429964, -0.0035199220292270184, 0.004002611618489027, -0.015327255241572857, 0.010789971798658371, -0.01846102438867092, -0.03460513800382614, -0.008294837549328804, -0.002385601168498397, 0.008844360709190369, 0.0008980813436210155, 0.004819470923393965, 0.006078177597373724, -0.027283107861876488, 0.009037436917424202, -0.0008558459812775254, 0.009349328465759754, -0.01094591710716486, 0.0022519330959767103, -0.011391477659344673, 0.0007811218965798616, -0.001986453775316477, -0.004269947297871113, -0.032912012189626694, 0.0048825922422111034, 0.0009087562211789191, 0.0036034644581377506, -0.00862158089876175, 0.010463227517902851, -0.007589367683976889, 0.007336883805692196, -0.021193791180849075, -0.004440745338797569, 0.0032488731667399406, 0.00157709582708776, 0.014450987800955772, 0.011376624926924706, -0.008926047012209892, 5.2678155043395236e-05, 0.006895036902278662, 0.021253200247883797, 0.004463023506104946, 0.010819675400853157, 0.01774812862277031, -0.011502867564558983, -0.023763185366988182, 0.008562172763049603, -0.012661322951316833, -0.014161373488605022, -0.01352273765951395, 0.011064733378589153, -0.0011009038425981998, 0.0243572648614645, -0.014205929823219776, 0.013270254246890545, -0.011079585179686546, 0.009987964294850826, -0.02726825512945652, 0.0035032134037464857, -0.01751049794256687, -0.02668902836740017, 0.010923639871180058, 0.005298447795212269, -0.029911911115050316, 0.017495645210146904, -0.009861722588539124, 0.00683191604912281, 0.00750396866351366, 0.011146419681608677, -0.01700552925467491, -0.0005295663140714169, -0.005101658869534731, -0.001362670212984085, 0.019723445177078247, -0.0138123519718647, -0.017792684957385063, 0.00547295855358243, 0.010099354200065136, -0.015460922382771969, -0.018371913582086563, 0.014822287485003471, -0.035585369914770126, 0.025693945586681366, -0.0017219027504324913, -0.016693638637661934, -0.028307896107435226, -0.009000306949019432, 0.027030624449253082, 0.007050982676446438, -0.02480282448232174, 0.021060124039649963, 0.005847971420735121, -0.0007931891595944762, -0.01344847772270441, 0.0006813351064920425, 0.012958362698554993, -0.01976799964904785, 0.013678683899343014, 0.00425509549677372, 0.009089418686926365, -0.0008999378187581897, -0.0062601142562925816, -0.010351837612688541, -0.041347943246364594, -0.014636637642979622, 0.004633821081370115, 0.009289920330047607, -0.024520637467503548, -1.2132510164519772e-05, -0.0043813372030854225, 0.0015446071047335863, -0.00567346066236496, -0.015668850392103195, 0.02835245057940483, -0.006642553023993969, -0.01664908230304718, -0.010047372430562973, 0.004997694864869118, 0.005153641104698181, 0.0034382359590381384, -0.0216690544039011, 0.012304875068366528, -0.025545425713062286, -0.005209336057305336, -0.017213458195328712, -0.007782443426549435, 0.0036220294423401356, -0.00619699340313673, 0.0055694966576993465, 0.005120223853737116, 0.01890658400952816, 0.0073405965231359005, -0.009393884800374508, -8.725545194465667e-05, -0.001438786624930799, -0.012312300503253937, -0.011480589397251606, 0.010812249965965748, -0.01373809203505516, -0.01767386868596077, 0.02909504994750023, -0.011458311229944229, -0.009549830108880997, 6.486142956418917e-05, 0.02276810258626938, -0.002274211263284087, -0.0011408185819163918, 0.014881695620715618, 0.00010988152644131333, 0.0021015568636357784, -0.005758859682828188, 0.0005309586995281279, -0.011465737596154213, 0.015965890139341354, 0.0050756679847836494, -0.016456006094813347, -0.016322338953614235, 0.011502867564558983, -0.014116818085312843, 0.009720628149807453, 0.011658812873065472, -0.025783056393265724, 0.03023865446448326, -0.0037204239051789045, -0.008896342478692532, -0.011725647374987602, -0.005513801705092192, -0.005343003664165735, 0.015832222998142242, 0.0009588816901668906, -0.0030298063065856695, 0.004151131492108107, 0.014465839602053165, 0.01599559374153614, -0.006059612613171339, 0.0010953343007713556, 0.015067345462739468, 0.012832120060920715, 0.000728675804566592, 0.013389070518314838, 0.006642553023993969, 0.007715609390288591, 0.012624192982912064, 0.021282903850078583, 0.0168718621134758, 0.007422282826155424, -0.007812147494405508, 0.008651284500956535, -0.006534876301884651, 0.007188363932073116, 0.02683754824101925, -0.00010529829887673259, -0.017911501228809357, 0.0018806334119290113, 0.009883999824523926, -0.01348560769110918, -0.0017924497369676828, -0.01486684288829565, 0.0003603928489610553, -0.022738398984074593, 0.007826999761164188, 0.007982945069670677, -0.005628904793411493, 0.015832222998142242, -5.775452154921368e-05, 0.0250998642295599, -0.02937723882496357, 0.005164779722690582, -0.03386253863573074, -0.0243572648614645, 0.04182320833206177, 0.008265133015811443, 0.01651541329920292, 0.005257605109363794, -0.004318216349929571, 0.0026696454733610153, -0.028114819899201393, -0.009208234958350658, 0.004708081018179655, -0.002069996204227209, 0.01057461742311716, -0.01679760217666626, -0.009185956791043282, -0.010693433694541454, 0.00960181187838316, -0.007767591625452042, 0.011547422967851162, 0.0008869423763826489, -0.003917212598025799, 0.01490397285670042, -0.005190771073102951, 0.004039741586893797, -0.014049983583390713, -0.0061190202832221985, 0.013144012540578842, 0.011844462715089321, -0.01644115336239338, 0.005870249588042498, 0.01097562164068222, 0.0011770202545449138, 0.012683600187301636, -0.019723445177078247, -0.011532571166753769, 0.016827305778861046, -0.011591979302465916, 0.008643859066069126, 0.003551482455804944, -0.005205622874200344, -0.05198197066783905, -0.0005174990510568023, 0.007270049769431353, -0.001833292655646801, 0.005439541768282652, -0.0016680642729625106, -0.007381439674645662, -0.007366587407886982, -0.015223290771245956, 0.023451294749975204, -0.0062601142562925816, -0.026198912411928177, -0.020748231559991837, -0.002227798569947481, 0.014547524973750114, -0.005313300061970949, 0.004693229217082262, -0.021862130612134933, -0.00461525609716773, -0.0007778730359859765, -0.00634551327675581, 0.012260318733751774, 0.0022946326062083244, -0.006757656112313271, -0.014257911592721939, -0.014926251024007797, -0.0039023607969284058, 0.012913806363940239, 0.008732970803976059, 0.0037389888893812895, -0.007429708726704121, 0.01362670212984085, -0.0007180009270086884, -0.005443254951387644, 0.010329559445381165, -0.018431320786476135, -0.00959438644349575, 0.00614501116797328, 0.015832222998142242, 0.007400004658848047, -0.006052186246961355, 0.002303915098309517, 0.0007662699208594859, -0.013426200486719608, -0.001046137185767293, -0.007043556775897741, -0.014651489444077015, -0.005610339809209108, 0.03234763815999031, 0.010247874073684216, 0.009297346696257591, 0.005294735077768564, 0.021431423723697662, -0.008614154532551765, -0.01621837355196476, -0.006479181349277496, -0.0069841486401855946, -0.0073591615073382854, 0.021654203534126282, 0.013916315510869026, 0.0003350980405230075, -0.013292532414197922, 0.0012150785187259316, 0.03062480501830578, -0.003932064864784479, -0.0008646643836982548, -0.002095987321808934, -0.009683498181402683, 0.01526784710586071, -0.001912193838506937, 0.016262929886579514, -0.0004281550645828247, 0.012059817090630531, 0.009252790361642838, -0.004563274327665567, -0.004533570259809494, 0.009913704358041286, -0.012928658165037632, -0.010879083536565304, -0.0027847483288496733, -0.017287718132138252, 0.009757758118212223, -0.05201167240738869, 0.0021553952246904373, 0.02807026356458664, 0.0031263441778719425, -0.0019827408250421286, -0.004648673348128796, -0.0057997023686766624, 0.007789869327098131, 0.009534978307783604, 0.006430912297219038, -0.008279984816908836, -0.0037148543633520603, -0.007533672731369734, 0.001814727671444416, -0.001655068714171648, 0.0084359310567379, -0.013723240233957767, 0.020629415288567543, -0.014577229507267475, -0.0011890875175595284, -0.013797500170767307, -0.007656201254576445, -0.0199313722550869, -0.01511932723224163, 0.00342709687538445, 0.005521227605640888, -0.0073405965231359005, 0.01942640356719494, -0.015520330518484116, -0.01104988157749176, 0.005120223853737116, -0.027684111148118973, -0.005168492905795574, 0.021505683660507202, 0.032912012189626694, 0.0008943683351390064, -0.005981639493256807, 0.005317012779414654, -0.011287513189017773, 0.0137083875015378, 0.0035180654376745224, -0.014443561434745789, 0.0028070262633264065, 0.0057625724002718925, -0.02122349478304386, 0.01563914678990841, 0.01134692132472992, -0.006133872549980879, -0.006958157755434513, 0.012156355194747448, -0.00963894184678793, -0.008354244753718376, -0.009468144737184048, 0.005933370441198349, 0.0016058715991675854, 0.0007384224445559084, 0.02640683948993683, -0.01635204255580902, -0.00981716625392437, -0.0030595101416110992, 0.003998898435384035, 0.004886304959654808, -0.017555054277181625, 0.006761368829756975, 0.00046342852874659, 0.01715404912829399, -0.014087113551795483, 0.01664908230304718, 0.022857215255498886, 0.023451294749975204, -0.0216690544039011, -0.009995389729738235, -0.02057000808417797, 0.021119531244039536, -0.0002161660959245637, -0.0033639760222285986, 0.017213458195328712, -0.0033639760222285986, 0.01593618653714657, 0.008302262984216213, -0.0018500011647120118, 0.00548781082034111, 0.02995646558701992, -0.004841749090701342, 0.00847306102514267, 0.008369097486138344, 0.006026195362210274, -0.010188465937972069, -0.012379135005176067, -0.00788640696555376, 0.00839880108833313, 0.02146112732589245, 0.001342248753644526, 0.0036443073768168688, 0.002088561188429594, 0.012468246743083, -0.006976722739636898, 0.016634229570627213, -0.008614154532551765, -0.00970577634871006, -0.008792378939688206, -0.000729139952454716, -0.03555566817522049, 0.015951039269566536, -0.0005810841685160995, 0.00539869861677289, -0.04051623120903969, -0.0004710865905508399, -0.007173511665314436, 0.009185956791043282, 0.017777834087610245, 0.024164190515875816, -0.01232715230435133, 0.0061190202832221985, 0.027684111148118973, 0.0036164599005132914, -0.0161292627453804, -0.00017659945297054946, 0.0021034132223576307, 0.007429708726704121, -0.004574413411319256, -0.008822082541882992, 0.006713100243359804, -0.028099967166781425, 0.005105372052639723, 0.014837139286100864, 0.011339494958519936, -0.019069956615567207, -0.01217863243073225, 0.0195600725710392, -0.029199015349149704, 0.029555462300777435, -0.007953241467475891, 0.011294939555227757, 0.01479258295148611, 0.0013635983923450112, -0.02545631304383278, 0.015431218780577183, -0.00014550310152117163, -0.0047043683007359505, 0.008443357422947884, 0.004500153474509716, 0.02937723882496357, 0.008992880582809448, -0.012171206995844841, -0.026302875950932503, -0.006330661475658417, 0.01210437249392271, 0.01767386868596077, 0.01123553141951561, 0.005179631989449263, 0.007760165259242058, 0.015653999522328377, 0.028901975601911545, 0.001992023317143321, 0.01399800181388855, -0.006991575006395578, -0.020332375541329384, -0.0037928272504359484, 0.0015251138247549534, -0.005550931673496962, -0.004919722210615873, 0.007648775354027748, -0.005068242084234953, -0.014547524973750114, 0.008770100772380829, 0.0008711621048860252, 0.014153948053717613, -0.030001021921634674, -0.0011946570593863726, 0.012304875068366528, 0.014584654942154884, 0.004184548743069172, -0.0007430636906065047, 0.004429606255143881, -0.0065979971550405025, 0.005458106752485037, -0.0020013058092445135, -0.007206928916275501, -0.005866536404937506, -0.00818344671279192, 0.001280055963434279, -0.020480895414948463, -0.019099660217761993, -0.010448375716805458, -0.004062019754201174, -0.0057328687980771065, 0.010960769839584827, -0.0050051212310791016, 0.0073071797378361225, 0.025040457025170326, -0.010099354200065136, 0.02123834751546383, -0.005695738829672337, -0.008302262984216213, 0.005784850567579269, 0.007533672731369734, -0.006865332834422588, 0.032110005617141724, 0.010069649666547775, -0.007348022423684597, 0.01774812862277031, -0.01113156694918871, -0.008413652889430523, 0.004570700228214264, -0.006835628766566515, -0.015980742871761322, 0.009921129792928696, -0.006572006270289421, -0.015030215494334698, -0.001282840734347701, -0.019530368968844414, 0.023466145619750023, 0.023065142333507538, -0.010418672114610672, -0.011035029776394367, 0.018193690106272697, -0.016782749444246292, -0.01948581263422966, 0.0008289267425425351, -2.2698599423165433e-05, -0.0016986965201795101, 0.010804823599755764, 0.014265337958931923, 0.006211845204234123, 0.018416469916701317, -0.016559969633817673, -0.011926149018108845, 0.0052316137589514256, 0.007218067534267902, 0.0011872310424223542, 0.004626395180821419, -0.0003729242307599634, 0.0011398902861401439, 0.028174227103590965, 0.00625640107318759, -0.0008261420298367739, 0.015594590455293655, 0.001616082270629704, 0.005840545520186424, 0.006557154003530741, 0.0022222292609512806, -0.01920362375676632, -0.0018277231138199568, -0.021119531244039536, -0.006074464414268732, -0.0029276986606419086, 0.0014127956237643957, -0.014205929823219776, -0.007385152857750654, -0.016262929886579514, 0.0029871067963540554, -0.009913704358041286, 0.0322585254907608, -0.009015158750116825, -0.004258808679878712, -0.0066165621392428875, 0.004782340954989195, 0.014465839602053165, 0.00944586656987667, -0.0010535630863159895, -0.004481588490307331, 0.0029054207261651754, 0.012163780629634857, 0.003375115105882287, -0.014436135068535805, 0.014926251024007797, -0.00971320178359747, -0.001500979415141046, 0.005740294698625803, -0.00102664390578866, 0.029124755412340164, 0.009096845053136349, -0.020748231559991837, -0.009661220014095306, -0.03460513800382614, 0.0035199220292270184, -0.02792174369096756, 0.019574925303459167, 0.016158966347575188, -0.02290176972746849, -0.007158659864217043, -0.009973112493753433, -0.0010025093797594309, 0.005847971420735121, -0.0009412449435330927, 0.00048733095172792673, 0.00698043592274189, -0.0007797295111231506, 0.002181386109441519, -0.01737682893872261, 0.011889019049704075, 0.0038763696793466806, -0.006497746333479881, 0.00748911639675498, 0.007251484785228968, 0.03612004220485687, -0.005279882811009884, -0.024119634181261063, 0.006274966057389975, -0.003932064864784479, -0.012639044784009457, 0.000286364956991747, 0.0013747374759986997, 0.0189808439463377, -0.010114206001162529, -0.01832735724747181, -0.016708489507436752, 0.0008525971206836402, 0.03665471449494362, -0.016084706410765648, 0.007143807597458363, 0.023733481764793396, 0.007604219485074282, 0.010663730092346668, 0.02676328830420971, 0.005792276468127966, -0.003924638498574495, 0.013136586174368858, 0.0035589083563536406, 0.030951550230383873, -0.01362670212984085, -0.010270152240991592, 0.02211461402475834, 0.010047372430562973, 0.010886509902775288, -0.014911399222910404, 0.0022556462790817022, -0.006939592771232128, 0.012044965289533138, -0.009995389729738235, 0.009297346696257591, 0.0009978681337088346, -0.010336985811591148, -0.006523737218230963, 0.010292429476976395, -0.003189465031027794, -0.009832018055021763, -0.02042148821055889, -0.013114308007061481, -0.0068282028660178185, -0.006041047628968954, -0.008747822605073452, 0.009408736601471901, 0.024089930579066277, 0.001182589796371758, 0.02196609415113926, -0.007277475669980049, 0.030743621289730072, -0.016916418448090553, -0.011532571166753769, -0.005131362937390804, -0.011213253252208233, -0.00038708001375198364, -0.019233329221606255, 0.004953138995915651, -0.002095987321808934, 0.010091927833855152, 0.01722830906510353, -0.01730256900191307, 0.00028125959215685725, -0.014651489444077015, 0.0006005773902870715, -0.018490729853510857, -0.01541636697947979, 0.0034382359590381384, -0.0011157558765262365, -0.005640043877065182, 0.02407507784664631, -0.025753352791070938, 0.008562172763049603, 0.020466044545173645, -0.0062452624551951885, 0.005795989651232958, -0.007775017526000738, 0.011785054579377174, -0.01086423173546791, -0.017629314213991165, -0.008614154532551765, 0.02551572024822235, 0.04428863897919655, 0.00956468190997839, 0.021475980058312416, 0.0022556462790817022, -0.0011101863346993923, -0.04116971790790558, 0.006664831191301346, -0.0007430636906065047, -0.006531163118779659, 0.010010242462158203, 0.00022881348559167236, -0.022857215255498886, 0.018297653645277023, 0.007106677629053593, -0.007199502550065517, 0.005862823687493801, 0.006449477281421423, -0.0068541937507689, -0.0007388865342363715, 0.013641553930938244, 0.007789869327098131, 0.006252688355743885, -0.017495645210146904, -0.010336985811591148, 0.010344412177801132, -5.114074156153947e-05, 0.0003221025690436363, -0.014658914878964424, 0.007812147494405508, -0.005814554635435343, 0.02786233462393284, -0.009334476664662361, -0.019753148779273033, 0.008554747328162193, 0.00472664600238204, -0.003642450785264373, 0.004062019754201174, 0.008406227454543114, -0.013233124278485775, -0.005699451547116041, -0.02174331434071064, -0.01569855399429798, 0.014911399222910404, 0.006315809208899736, -0.014213355258107185, -0.006612848956137896, 0.005183344706892967, 0.010374115779995918, -0.022218579426407814, -1.4257331713452004e-05, -0.0012122937478125095, 0.003785401349887252, -0.012780138291418552, -0.011250383220613003, 0.0007996868807822466, -0.017406534403562546, 0.00618214113637805, -0.023287922143936157, -0.016396598890423775, -0.007656201254576445, -0.0010145766427740455, -0.018847176805138588, 0.0034809354692697525, 0.002133117290213704, -0.006029908545315266, 0.013455904088914394, -0.003291572444140911, -0.0021999510936439037, 0.008443357422947884, -0.0025285515002906322, 0.010775119997560978, -0.012809842824935913, 0.006653692107647657, -0.034426916390657425, -0.004236530512571335, -0.004893731325864792, -0.02820393070578575, -0.0016689925687387586, -0.012163780629634857, -0.028664343059062958, -0.01896599307656288, 0.0002742977230809629, -0.001362670212984085, -0.008317114785313606, -0.011792480945587158, 0.0030056717805564404, 0.017198605462908745, -0.005224187858402729, 0.005539792589843273, 0.005476671736687422, -0.0039766207337379456, 0.003588612424209714, 0.0006028980133123696, 0.023154255002737045, 0.005424689967185259, -0.0026547934394329786, -0.01113156694918871, 0.005658608861267567, 0.007106677629053593, 0.006750230211764574, 0.0035551954060792923, 0.015371810644865036, 0.0006966512301005423, 0.008242854848504066, 0.005718016531318426, -0.017629314213991165, -0.021980946883559227, -0.029570315033197403, -0.007192076649516821, 0.013129159808158875, -0.005677173845469952, 0.011799907311797142, -0.02049574814736843, 0.02683754824101925, 0.009935982525348663, 0.016099559143185616, 0.0019140503136441112, 0.008317114785313606, 0.006746517028659582, 0.0025526860263198614, 0.00839880108833313, 0.0021721036173403263, 0.030104985460639, 0.007723035290837288, -0.007433421444147825, -0.0045409961603581905, -0.005220475140959024, 0.011903870850801468, 0.005012547131627798, -0.00022637684014625847, -0.014480691403150558, -0.006839341949671507, 0.0018843463622033596, 0.03270408511161804, -0.014421283267438412, 0.0013181142276152968, 0.02086704783141613, 0.0016235082875937223, 0.005911092273890972, -0.005175918806344271, -0.014413857832551003, 0.007841851562261581, 0.0161292627453804, 0.002922129351645708, -0.0008512047352269292, 0.009119122289121151, -0.00483803590759635, 0.014391579665243626, -0.000986729166470468, 0.0043813372030854225, 0.011673664674162865, -0.006497746333479881, -0.010270152240991592, 0.008836934342980385, -0.006289818324148655, 0.005669747479259968, -0.007552237715572119, 0.010596895590424538, -0.025144420564174652, 0.0064234863966703415, -0.011963278986513615, 0.02000563219189644, 0.011168697848916054, -0.019292736425995827, -0.0027476183604449034, -0.0067947860807180405, -0.024906789883971214, 0.016322338953614235, 0.001380306901410222, -0.013574720360338688, -0.0006019697757437825, -0.00010030895646195859, -0.00963894184678793, 0.007893833331763744, -0.0015483200550079346, 0.02400081790983677, 0.006720526143908501, -0.0007741600275039673, -0.03344668447971344, -0.006531163118779659, 0.0008001510286703706, 0.009757758118212223, 0.02916930988430977, 0.00536156864836812, 0.0014471409376710653, 0.02080763876438141, -0.013968297280371189, -0.003529204521328211, 7.675462984479964e-05, 0.011146419681608677, 0.003258155658841133, 0.02064426802098751, -0.01276528649032116, 0.0060670385137200356, -0.009534978307783604, 0.010091927833855152, -0.008926047012209892, -0.031010957434773445, -0.027179144322872162, 0.0005263174534775317, 0.013307384215295315, 0.023035438731312752, 0.0024487220216542482, 0.0330011248588562], "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b": [-0.024606991559267044, -0.0017043144907802343, -0.014661496505141258, 0.059348657727241516, -0.012202148325741291, -0.0365118570625782, -0.0016131023876369, 0.009979276917874813, -0.026269078254699707, 0.015229037962853909, 0.02245843969285488, 0.025093454867601395, 0.0002827152202371508, 0.0013470671838149428, -0.001316663227044046, -0.03005268983542919, -0.03207962587475777, -0.007046977523714304, -0.014783112332224846, -0.007796943187713623, 0.09534702450037003, -0.007310478948056698, -0.03370117396116257, 0.020728789269924164, 0.01951262727379799, -0.00030108430655673146, -0.0009729288285598159, 0.014580419287085533, -0.036890216171741486, -0.0030285788234323263, 0.023836756125092506, -0.009121207520365715, 0.030214844271540642, 0.03180936723947525, 0.002939055673778057, -0.05210574343800545, 0.010722486302256584, 0.019918015226721764, 0.02001260407269001, 0.01708030514419079, 0.00024090967781376094, 0.025444790720939636, -0.030890488997101784, 0.01299265306442976, -0.036890216171741486, -0.021282818168401718, -0.017958644777536392, 0.0039221192710101604, -0.03264716640114784, -0.01708030514419079, 0.014458803460001945, -0.017715411260724068, -0.028782477602362633, -0.012702126055955887, 0.046916790306568146, -0.02989053539931774, 0.005699065513908863, 0.056592024862766266, -0.03324173390865326, -0.04667355865240097, -0.02889057993888855, -0.024012424051761627, -0.0014712170232087374, 0.011621094308793545, 0.007952341809868813, -0.011796761304140091, 0.004732893314212561, 0.027971703559160233, -0.053051646798849106, 0.007492903154343367, -0.012553484179079533, 0.04183593764901161, -0.001738096820190549, 0.0506463497877121, 0.015323628671467304, 0.00674293702468276, 0.025958281010389328, 0.0032380286138504744, 0.02294490486383438, -0.007276696618646383, 0.05037609115242958, -0.030025664716959, 0.060483742505311966, 0.031890444457530975, 0.018688341602683067, -0.0019357228884473443, 0.003550514578819275, -0.02485022321343422, -0.009175258688628674, -0.0378090925514698, 0.03634970262646675, 0.05059229955077171, -0.013945313170552254, -0.007850995287299156, -0.026687977835536003, 0.03921443596482277, -0.011350835673511028, 0.007411825470626354, 0.013425066135823727, -0.009702262468636036, -0.0044389874674379826, 0.03353901952505112, -0.014066928997635841, 0.011681902222335339, 0.01937749795615673, -0.016877612099051476, 0.006219312082976103, 0.008033419027924538, -0.011168411932885647, 0.0005413605831563473, 0.02601233310997486, -0.07291560620069504, -0.040917061269283295, 0.007398312911391258, -0.031241824850440025, -0.0029018952045589685, -0.04359261691570282, -0.017999183386564255, -0.024742120876908302, -0.018985625356435776, 0.014039902947843075, -0.0306742824614048, 0.025269122794270515, -0.04970044642686844, -0.025066429749131203, 0.026390694081783295, -0.024242142215371132, -0.006503083277493715, 0.013945313170552254, -0.013702080585062504, -0.006023375317454338, -0.03329578414559364, 0.011621094308793545, -0.03505246341228485, -0.014850676991045475, 0.005959189031273127, 0.03426871448755264, 0.0319715216755867, -0.008688794448971748, 0.020715275779366493, -0.04153865575790405, -0.03251203894615173, -0.012080532498657703, -0.004330884665250778, 0.011965673416852951, -0.025755587965250015, -0.01599927432835102, 0.010898154228925705, -0.02241790108382702, 0.024471862241625786, -0.030214844271540642, -0.03564703091979027, -0.009391465224325657, 0.005587584339082241, 0.049970705062150955, -0.0014957091771066189, -0.024606991559267044, 0.005070715676993132, 0.027525776997208595, 0.04434933885931969, 0.01233727764338255, -0.03734965622425079, -0.010310342535376549, 0.03805232793092728, 0.04361964017152786, 0.0050200424157083035, 0.03113372251391411, 0.011465695686638355, -0.03675508871674538, 0.02085040509700775, 0.02726903185248375, -0.038511764258146286, 0.05210574343800545, -0.0034897064324468374, -0.01760730892419815, -0.01872888021171093, 0.019742347300052643, 0.035917289555072784, 0.03634970262646675, -0.005259896162897348, 0.0011494411155581474, -0.005465968046337366, -0.008918514475226402, 0.009330657310783863, -0.02647177129983902, 0.006685507483780384, 0.020215298980474472, 0.03807935118675232, 0.014242596924304962, 0.026742029935121536, -0.006732802372425795, -0.013607490807771683, -0.008857705630362034, 0.027417674660682678, -0.026215026155114174, -0.0158236064016819, 0.005587584339082241, 0.01122921984642744, -0.034295741468667984, 0.0496734194457531, 0.028782477602362633, -0.03362009674310684, 0.009283361956477165, 0.02035042829811573, -0.036268625408411026, 0.00710102915763855, -0.021390920504927635, -0.03680913895368576, 0.007587493397295475, -0.016391146928071976, 0.019472088664770126, -0.03167423605918884, 0.019890988245606422, 0.012452137656509876, -0.03307957947254181, 0.012789960019290447, 0.0007081603980623186, 0.0012651452561840415, 0.013810183852910995, -0.04940316081047058, -0.018999136984348297, 0.003422142006456852, 0.04034952074289322, -0.01713435724377632, -0.0645916610956192, 4.18649187849951e-06, -0.0006279275985434651, 0.00897256564348936, -0.0048984261229634285, -0.03902525454759598, 0.04086301103234291, -0.0154182193800807, 0.0355389267206192, -0.04910587891936302, -0.0014450357994064689, 0.02859329618513584, 0.026106923818588257, 0.006702398415654898, -0.008844193071126938, -0.041565679013729095, -0.00016289378982037306, 0.0016080350615084171, -0.015391193330287933, -0.026701491326093674, -0.00588824599981308, -0.0153371412307024, 0.0051180110312998295, 0.031214799731969833, 0.018999136984348297, 0.017823515459895134, -0.0015776311047375202, -0.004216024652123451, -0.012438624165952206, -0.015120935626327991, -0.027363622561097145, -0.005854464136064053, 0.0189045462757349, -0.033836301416158676, 0.01631006971001625, 0.027890626341104507, 0.010269803926348686, -0.0018597128801047802, -0.034457895904779434, 0.038322582840919495, 0.027728470042347908, -0.07632085680961609, 0.03410656005144119, -0.02225574664771557, 0.035755135118961334, 0.02483670972287655, 0.005317326169461012, -0.001175622339360416, -0.0033613338600844145, 0.051592253148555756, -0.027025800198316574, -0.01660735346376896, -0.0034626806154847145, 0.014499342069029808, 0.013242642395198345, 0.0030995213892310858, -0.013823696412146091, -0.026593387126922607, 0.013512900099158287, -0.004060626495629549, 0.014175032265484333, 0.013472361490130424, 0.006597673520445824, -0.008594204671680927, -0.02372865192592144, -0.017539745196700096, 0.0034069400280714035, 0.024458348751068115, 0.021512536332011223, 0.02891760692000389, -0.00019498691835906357, 0.01694517582654953, -0.025052916258573532, -0.016107376664876938, -0.018796443939208984, 0.020228810608386993, -0.009540107101202011, -0.025120481848716736, -0.0013867613160982728, -0.010560331866145134, 0.07026708126068115, 0.010452228598296642, 0.029133813455700874, 0.03694427013397217, -0.011560286395251751, 0.03840366378426552, -0.0033883596770465374, -0.03545784950256348, -0.04159270599484444, -0.027350109070539474, -0.015147960744798183, 0.023958371952176094, -0.059294603765010834, -0.006128100212663412, -0.037673965096473694, -0.01743164099752903, -0.007472633849829435, 0.02682310715317726, -0.04486282914876938, 0.018634289503097534, 0.034782204777002335, -0.057078488171100616, 0.006084183230996132, -0.012485919520258904, 0.019945040345191956, -0.04164675623178482, -0.0358632355928421, 0.008749602362513542, -0.024471862241625786, 0.007364530581980944, -0.02194494940340519, -0.020255837589502335, -0.029836483299732208, -0.04372774437069893, 0.017850540578365326, -0.029674328863620758, -0.008553666062653065, -0.016242505982518196, 0.024579964578151703, -0.01395882572978735, -0.0002774367167148739, -0.011803518049418926, -0.011060308665037155, -0.007236158009618521, 0.01499931886792183, 0.023634063079953194, 0.0007571447058580816, 0.024431323632597923, 0.0535651370882988, 0.027214981615543365, -0.006550378166139126, -0.04537631943821907, -0.038187455385923386, 0.008040175773203373, 0.0023478663060814142, 0.0006321503315120935, -0.03516056761145592, -0.03532272204756737, -0.013600734062492847, -0.056105561554431915, -0.0034373439848423004, 0.02341785654425621, 0.038971204310655594, -0.0068577965721488, -0.033836301416158676, -0.033674146980047226, -0.003803881350904703, -0.006925361230969429, -0.024174578487873077, -0.013012922368943691, 0.0011333945440128446, -0.00455722538754344, 0.04418718442320824, 0.024093501269817352, -0.01794513128697872, 0.0037194257602095604, 0.010722486302256584, -0.011587311513721943, -0.03126884996891022, 0.040592752397060394, 0.02471509389579296, 0.000835688435472548, -0.017647847533226013, 0.01839105784893036, 0.003351199207827449, -0.004347775597125292, -0.042241327464580536, 0.0019036297453567386, -0.014431777410209179, -0.026188001036643982, -0.022823289036750793, -0.0021603750064969063, -0.014783112332224846, -0.021593613550066948, 0.035430822521448135, -0.004729514941573143, -0.004168729763478041, -0.0034660587552934885, 0.0033039040863513947, -0.0009535040007904172, 0.016823559999465942, 0.003091075923293829, -1.2470401088648941e-05, -0.01902616396546364, -0.0010666745947673917, 0.024755632504820824, -0.0036079443525522947, 0.01644519902765751, 0.026377180591225624, 0.03516056761145592, -0.00516192801296711, 0.0070875161327421665, -0.028836527839303017, 0.04210619628429413, -0.012303495779633522, 0.014472316019237041, 0.018620776012539864, 0.032376907765865326, 0.01339804008603096, 0.02343136817216873, -0.011648119427263737, 0.008296920917928219, 0.015512809157371521, 0.005438942462205887, 0.005655148532241583, -0.0271068774163723, 0.039971157908439636, 0.046268168836832047, 0.01789107918739319, -0.004391692578792572, -0.00992522481828928, -0.012681856751441956, 0.018850496038794518, 0.005965945310890675, 0.03999818488955498, -0.0064524095505476, -0.021742256358265877, -0.0052159796468913555, 0.04051167517900467, 0.007648301310837269, -0.05386241897940636, -0.02517453208565712, -0.05183548480272293, -0.004381557926535606, -0.0133912842720747, 0.03826853260397911, 0.011938647367060184, 0.028836527839303017, -0.04021438956260681, -0.020228810608386993, 0.016337096691131592, 0.028458166867494583, 0.010337368585169315, -0.008783385157585144, 0.0005054669454693794, -0.05332190543413162, -0.0298635084182024, -0.0031333037186414003, 0.03407953307032585, -0.002587720286101103, -0.021904410794377327, -0.027012286707758904, -0.035430822521448135, -0.03983603045344353, 0.010337368585169315, 0.02552586793899536, -0.011013013310730457, 0.009486055932939053, 0.020404478535056114, 0.03951172158122063, -0.0149317542091012, -0.010026572272181511, -0.005969323683530092, 0.0032650544308125973, 0.00091887719463557, 0.0010937002953141928, 0.009060399606823921, -0.03713344782590866, 0.0005818992503918707, -0.014891215600073338, -0.025147506967186928, -0.00245934771373868, -0.04632222279906273, 0.0057632518000900745, 0.018499160185456276, 0.00036020323750562966, 0.0038511764723807573, 0.005854464136064053, 0.01041844580322504, 0.034809231758117676, 0.010236022062599659, 0.0017532987985759974, 0.02907976135611534, -0.033322811126708984, 0.025755587965250015, -0.04121434688568115, 0.010053597390651703, 0.011425157077610493, -0.007479390129446983, 0.01664789207279682, 0.003449167823418975, 0.007864507846534252, -0.019620731472969055, 0.03451194614171982, -0.005834194831550121, -0.029268940910696983, -0.03405250981450081, 0.012026481330394745, -0.045943859964609146, 0.009310388006269932, 0.037998273968696594, 0.01242511160671711, -0.02340434305369854, -0.0072969659231603146, 0.00798612367361784, 0.0057868994772434235, -0.03562000393867493, -0.012080532498657703, -0.026742029935121536, -0.0036147008650004864, -0.01793161779642105, -0.005172062665224075, -0.023823242634534836, -0.011377861723303795, 0.014485828578472137, -0.048700492829084396, -0.02228277176618576, 0.02970135398209095, -0.028296012431383133, 0.007391556166112423, 0.009641454555094242, 0.019782885909080505, -0.00673955911770463, -0.0013251088093966246, 0.022985443472862244, -0.00367550877854228, 0.0027245385572314262, 0.023620549589395523, -0.006803745403885841, -0.03440384194254875, 0.014093955047428608, 0.011918378062546253, 0.01886400766670704, 0.0014627714408561587, -0.02518804557621479, 0.027971703559160233, -0.03524164482951164, -0.009121207520365715, -0.0006925361230969429, 0.008486101403832436, 0.0064186276867985725, -0.00951983779668808, 0.006803745403885841, 0.01920183189213276, -0.010783294215798378, -0.04534929245710373, 0.027971703559160233, 0.01276293396949768, 0.030133767053484917, 0.022715184837579727, -0.023120572790503502, -0.004651815630495548, -0.022647621110081673, 0.01874239183962345, -0.029809458181262016, 0.0287284255027771, 0.01476959977298975, -0.011168411932885647, 0.03448491916060448, 0.03667401149868965, 0.004574116785079241, -0.0002561116707511246, 0.009614428505301476, 0.01712084375321865, -0.013904774561524391, -0.0365118570625782, 0.02179630845785141, -0.002989729167893529, 0.009783339686691761, 0.003302214900031686, 0.005036933347582817, 0.006611186545342207, -0.04826807975769043, -0.019404524937272072, -0.014553393237292767, 0.020431505516171455, -0.004611277021467686, 0.027336597442626953, -0.013438578695058823, 0.014877703040838242, 0.006465922575443983, 0.03275527060031891, -0.0002825040719471872, 0.007479390129446983, 0.05380836874246597, 0.0161479152739048, 0.0142020583152771, -0.012330520898103714, 0.010317099280655384, -0.0003711824829224497, -0.006435518618673086, 0.018134312704205513, 0.0025421143509447575, -0.007202375680208206, -0.00038680675788782537, -0.012634561397135258, -0.03759288787841797, 0.005114632658660412, -0.0030539154540747404, -0.008472587913274765, 0.023688113316893578, -0.009931981563568115, -0.011438669636845589, -0.0013090622378513217, 0.0055369106121361256, 0.059348657727241516, 0.024134039878845215, -0.02501237764954567, 0.017566770315170288, -0.03405250981450081, 0.024485375732183456, 0.010046841576695442, -0.0004729515057988465, -0.0027802791446447372, 0.0137155931442976, 0.015945222228765488, -0.03486328199505806, 0.0033072822261601686, 0.028647348284721375, -0.0022211829200387, 0.003033646149560809, -0.0262961033731699, -0.01920183189213276, 0.015472270548343658, -0.011695414781570435, -0.024093501269817352, -0.005428807809948921, 0.02035042829811573, -0.011479208245873451, 0.04051167517900467, -0.002655284944921732, 0.01840456947684288, -0.007040220778435469, 0.0007588337757624686, -0.006266607437282801, 0.02276923693716526, -0.011580555699765682, 0.01074951235204935, -0.01598576083779335, 0.011817031539976597, 0.02875545062124729, -0.0161479152739048, -1.675916246313136e-05, 0.030485102906823158, -0.00011095358058810234, 0.00816179160028696, -0.0038714457768946886, -0.005087607074528933, -0.001227984786964953, 0.011837300844490528, -0.005226114299148321, -0.013634515926241875, 0.019093727692961693, 0.012837255373597145, 0.009709018282592297, -0.006709154695272446, 0.009236067533493042, -0.02502589114010334, 0.002655284944921732, -0.0005489615723490715, 0.00115028559230268, 0.010202239267528057, 0.002354622818529606, -0.006435518618673086, 0.003526866901665926, -0.02745821326971054, -0.027377136051654816, -0.02583666518330574, -0.020890943706035614, 0.001188290654681623, -0.00832394603639841, -0.01300616655498743, -0.03324173390865326, 0.014985806308686733, -0.03967387601733208, -0.0025100212078541517, -0.027404161170125008, -0.0029475013725459576, -0.013404796831309795, 0.01855321228504181, 0.012708882801234722, -0.042403481900691986, -0.0017482314724475145, -0.021120663732290268, 0.00629025511443615, -0.010148188099265099, -0.019174804911017418, -0.016377635300159454, 0.030431050807237625, -0.020863918587565422, 0.06053779274225235, -0.013242642395198345, -0.010918423533439636, -0.012465650215744972, -0.014891215600073338, 0.023647574707865715, -0.016053324565291405, 0.007742891553789377, 0.004185620695352554, 0.03470112755894661, 0.009161746129393578, -0.0042531853541731834, -0.0009230999858118594, 0.013769645243883133, -0.023809729143977165, 0.027160929515957832, 0.01676950976252556, 0.005645013879984617, 0.025579920038580894, -0.020607173442840576, 0.00920228473842144, 0.022336823865771294, -0.004499795846641064, 0.009398221969604492, 0.004776810295879841, 0.01380342710763216, 0.01824241504073143, -0.017647847533226013, 0.008627986535429955, 0.00040813180385157466, -0.0023073276970535517, -0.01936398632824421, -0.0010793429100885987, 0.012046750634908676, 0.009398221969604492, -0.03499840945005417, 0.010006302036345005, 0.00735101755708456, 0.00714832404628396, -0.032025571912527084, -0.024931300431489944, 0.028782477602362633, 0.02698526158928871, -0.014756087213754654, -0.02633664198219776, 0.006242959760129452, 0.028323039412498474, -0.0311607476323843, 0.03743073344230652, 0.006371332332491875, 0.019728833809494972, 0.013864235021173954, 0.04488985240459442, -0.005023420788347721, -0.011202193796634674, 0.034971386194229126, 0.01307373121380806, 0.003469437127932906, -0.020620685070753098, -0.030944541096687317, 0.016242505982518196, 0.0028985170647501945, 0.008756359107792377, -0.008377998135983944, 0.023120572790503502, -0.01918831840157509, 0.04551144689321518, 0.03194449469447136, 0.01791810616850853, 0.00840502418577671, 0.0339173786342144, -0.0023968506138771772, 0.0016595530323684216, -0.0013014611322432756, -0.029268940910696983, 0.003455924103036523, 0.0004062315565533936, -0.042403481900691986, 0.020553121343255043, -0.00983739085495472, -0.008742846548557281, -0.02162064053118229, 0.0169586893171072, 0.014458803460001945, -0.004337640944868326, 0.0007736135157756507, 0.02148551121354103, -0.004040357191115618, 0.011006257496774197, -0.0166343804448843, 0.0043579102493822575, -0.03410656005144119, 0.01617494225502014, 0.0070604900829494, -0.00735101755708456, 0.01274266466498375, -0.006313902325928211, -0.0154182193800807, 0.04424123466014862, 0.02148551121354103, 0.007344261277467012, -0.034133587032556534, -0.010472497902810574, -0.023931346833705902, -0.018201876431703568, -0.01921534352004528, 0.01644519902765751, -0.006428762339055538, -0.005212601274251938, 0.02649879641830921, -0.009438760578632355, -0.011249489150941372, -0.01226971298456192, -0.010877884924411774, 0.02422863058745861, -0.005925406701862812, -0.014499342069029808, -0.011972429230809212, 0.00921579822897911, -0.0004944877000525594, -0.03426871448755264, -0.009729287587106228, 0.0202017854899168, 0.014783112332224846, 0.009337414056062698, -0.01697220280766487, -0.00944551732391119, -0.014499342069029808, 0.006601051893085241, 0.013850722461938858, -0.03405250981450081, 0.04029546678066254, 0.04426826164126396, 0.018147824332118034, -0.025309661403298378, 0.06788881123065948, -0.027404161170125008, -0.03905228152871132, 0.009945494122803211, -0.002371513983234763, 0.035106513649225235, 0.01853969879448414, -0.006465922575443983, 0.0025252231862396, 0.03537677228450775, 0.04159270599484444, 0.02341785654425621, -0.009742801077663898, -0.007850995287299156, -0.005178818944841623, -0.016526276245713234, 0.006226068828254938, -0.045430369675159454, 0.010560331866145134, -0.020282862707972527, 0.02599881961941719, 0.020377453416585922, 0.019823424518108368, -0.016418173909187317, 0.03129587695002556, -0.03272824361920357, -0.013499387539923191, 0.03329578414559364, -0.019323447719216347, 0.023444881662726402, 0.03305255249142647, 0.004955856129527092, -0.0342416875064373, 0.02180982008576393, -0.02099904604256153, -0.018647802993655205, 0.004753162618726492, 0.0022600325755774975, 0.006668616086244583, -0.012526458129286766, 0.008006392978131771, -0.021836847066879272, 0.016499251127243042, -0.0012043372262269258, -0.011094090528786182, -0.03434979170560837, -0.0011004568077623844, 0.001316663227044046, -0.009702262468636036, 0.029187863692641258, -0.012810229323804379, 0.004591007716953754, -0.009945494122803211, 0.003042091615498066, -0.008283407427370548, -0.01499931886792183, 0.04324128106236458, 0.008871219120919704, -0.0303499735891819, -0.016026299446821213, 0.000417844217736274, 0.0008382220985367894, -0.033674146980047226, -0.06210528686642647, -0.020458530634641647, 0.021999001502990723, -0.008776628412306309, 0.0028799367137253284, -0.012154853902757168, -0.008168548345565796, -0.0005253140116110444, 0.003018443938344717, 0.020769327878952026, -0.015053370967507362, -0.0004911094438284636, 0.04034952074289322, 0.029322993010282516, 0.02402593567967415, -0.007567224092781544, -0.015039857476949692, 0.01743164099752903, -0.010985988192260265, 0.013229128904640675, 0.02245843969285488, 0.007965854369103909, 0.000931545568164438, 0.0008225977653637528, -0.0031147233676165342, -0.0292148906737566, -0.013188590295612812, 0.03951172158122063, 0.00037646095734089613, -0.009411734528839588, 0.005783521104604006, 0.006810501683503389, 0.015229037962853909, -0.02082337811589241, -0.01347911823540926, -0.013587220571935177, -0.03064725734293461, -0.02162064053118229, -0.0017566770548000932, -0.013215616345405579, 0.011168411932885647, -0.019728833809494972, -0.022188181057572365, -0.02682310715317726, 0.011114360764622688, 0.0013107513077557087, 0.008249625563621521, 0.02179630845785141, 0.020877430215477943, 0.025769099593162537, -0.019742347300052643, -0.015512809157371521, -0.004161973018199205, 0.02375567890703678, 0.001457704114727676, -0.027674419805407524, 0.011033282615244389, -0.004053870216012001, 0.015688477084040642, -0.01332371961325407, -0.023769190534949303, 0.015715502202510834, -0.0018107285723090172, 0.042214300483465195, -0.014026390388607979, 0.013316962867975235, 0.01856672391295433, -0.008350972086191177, -0.0008306210511364043, 0.00439844885841012, -0.0067868540063500404, 0.01628304459154606, 0.00496261240914464, -0.0016418173909187317, -0.006486191879957914, 0.002709336578845978, -0.031187772750854492, -0.02999863773584366, 0.010837346315383911, -0.022228721529245377, -0.03448491916060448, 0.0014011188177391887, 0.005476102698594332, 0.013161564245820045, -0.027674419805407524, 0.012506188824772835, -0.030133767053484917, 0.02322867512702942, 0.024188091978430748, 0.0008918513776734471, 0.016242505982518196, -0.022634107619524002, 0.0015185121446847916, -0.016080351546406746, 0.017837028950452805, -0.020445017144083977, -0.007513172458857298, -0.007736135274171829, -0.01806674711406231, 0.002913719043135643, -0.0004957545315846801, 0.032376907765865326, 0.0223097987473011, 0.009742801077663898, 0.022188181057572365, -0.014391238801181316, -0.013337232172489166, 0.001722050248645246, -0.019985578954219818, -0.009803608991205692, 0.04199809208512306, 0.006979412864893675, -0.00204044790007174, 0.004307236988097429, 0.03280932083725929, -0.012938601896166801, -0.0070942724123597145, 0.004638303071260452, -0.012012967839837074, -0.01644519902765751, -0.009209041483700275, -0.01681004837155342, -0.004401827231049538, -0.0023123950231820345, 0.0056517706252634525, 0.002555627143010497, 0.033322811126708984, 0.0010616072686389089, 0.0004805524949915707, -0.019147779792547226, 0.00019815401174128056, -0.024931300431489944, 0.008533396758139133, -0.022161155939102173, -0.0006786009762436152, -0.08507721871137619, -0.03234988451004028, -0.004057248122990131, -0.010046841576695442, 0.017147870734333992, 0.009398221969604492, -0.015958735719323158, 0.020242324098944664, -0.01147245243191719, 0.026201512664556503, -0.00726318359375, 0.005280165933072567, 0.044295284897089005, 0.004313993267714977, -0.00480383588001132, 0.0007368753431364894, -0.016661405563354492, -0.0029339883476495743, 0.014458803460001945, -0.007688839919865131, -0.007175350096076727, 0.03486328199505806, 0.026552848517894745, -0.0016502629732713103, 0.013053461909294128, 0.018823469057679176, -0.005192331969738007, 0.013303450308740139, -0.006364576052874327, -0.028025755658745766, 0.0282419603317976, -0.0017583661247044802, -0.013262911699712276, -0.018364030867815018, 0.009634697809815407, 0.016999227926135063, 0.006036887876689434, -0.00109961221460253, 0.011404887773096561, 0.01902616396546364, -0.003604565979912877, 0.01147245243191719, 0.001123259775340557, 0.005472724325954914, 0.013931799679994583, -0.0142020583152771, -0.03418763726949692, -0.011675145477056503, 0.004709245637059212, 0.007337504532188177, -0.0193910114467144, 0.0031839769799262285, -0.02633664198219776, -0.024458348751068115, 0.02274220995604992, 0.00694563053548336, 0.004574116785079241, 0.02083689160645008, -0.01808026060461998, -0.010458984412252903, 0.007695596665143967, 0.015864145010709763, -0.011708928272128105, 0.021093636751174927, -0.0010556953493505716, -0.014310161583125591, 0.004604520741850138, 0.021512536332011223, 0.026552848517894745, 0.0003281100944150239, 0.0020809865090996027, -0.013931799679994583, -0.008945539593696594, 0.00726318359375, 0.024809684604406357, 0.007411825470626354, 0.024269169196486473, 0.008472587913274765, 0.012134584598243237, 0.006226068828254938, -0.02080986648797989, -0.004523443523794413, 0.026877157390117645, 0.02014773339033127, -0.007202375680208206, 0.0020353805739432573, 0.00669564213603735, -0.0026687977369874716, -0.021431459113955498, 0.009729287587106228, 0.022890852764248848, -0.0025133993476629257, 0.03097156621515751, -0.0013572019524872303, 0.00985766015946865, 0.01413449365645647, 0.010371150448918343, -0.015039857476949692, 0.011925133876502514, -0.005141658708453178, 0.0022127374541014433, -0.02455293945968151, 0.006259851157665253, -0.0058848680928349495, -0.0010261358693242073, 0.008026662282645702, -0.014634470455348492, 0.02762036770582199, 0.0009442138834856451, -0.02989053539931774, -0.00019393123511690646, 0.0047869449481368065, 0.008465832099318504, -0.0019644377753138542, -0.014080441556870937, 0.0020353805739432573, 0.001123259775340557, 0.014012877829372883, -0.023539472371339798, 0.015053370967507362, -0.0010540061630308628, 0.013100756332278252, 0.019985578954219818, -0.032214753329753876, 0.004746406339108944, 0.003295458620414138, -0.0031265472061932087, -0.01453988067805767, 0.000542627414688468, 0.0033089714124798775, 0.01809377409517765, 0.02225574664771557, -0.013296693563461304, 0.02355298399925232, -0.0022634107153862715, 0.0013538236962631345, 0.01097923144698143, -0.0011181924492120743, 0.010134674608707428, -0.009742801077663898, -0.0096955057233572, -0.00993873830884695, -0.022890852764248848, -0.022228721529245377, -0.0001635272055864334, 0.010992744006216526, -0.01789107918739319, -0.004911939147859812, -0.023850267753005028, -0.02452591434121132, -0.03129587695002556, 0.014066928997635841, 0.0271068774163723, 0.01806674711406231, 0.01389126107096672, -0.02241790108382702, -0.004935586825013161, 0.0064186276867985725, -0.016391146928071976, -0.006628077477216721, -0.022174669429659843, 0.006060535553842783, 0.003726182272657752, 0.008350972086191177, -0.014877703040838242, -0.023823242634534836, 0.02693120948970318, -0.0007111163577064872, -0.025742074474692345, -0.008006392978131771, 0.010952205397188663, -0.004013331141322851, -0.03305255249142647, -0.004273454658687115, 0.009796852245926857, -0.024485375732183456, -0.018012695014476776, -0.010263047181069851, 0.010236022062599659, -0.02613394893705845, -0.029512174427509308, -0.008918514475226402, -0.024107012897729874, 0.01871536672115326, -0.00025906763039529324, -0.008695551194250584, -0.012465650215744972, 0.015066883526742458, 0.027012286707758904, -0.0014973982470110059, -0.015864145010709763, 0.010877884924411774, 0.007229401730000973, 0.005506506655365229, -0.010208996012806892, -0.0008462453843094409, 0.024323219433426857, 0.011006257496774197, 0.002266789088025689, -0.0020134220831096172, -0.008540152572095394, -0.019607217982411385, 0.0223097987473011, 0.012958871200680733, -0.0037160476204007864, 0.0023596901446580887, -0.004540334455668926, 0.008783385157585144, 0.04064680263400078, -0.007371286861598492, 0.008492858149111271, -0.02114768885076046, 0.03778206929564476, 0.0004159439413342625, -0.00789828971028328, 0.00029306102078408003, -0.003170464187860489, -0.020228810608386993, 0.017377588897943497, -0.0015362477861344814, 0.027255520224571228, 0.0005717645981349051, -0.011114360764622688, 0.016985716298222542, 0.007195619400590658, -0.01001305878162384, 0.003116412553936243, -0.07259129732847214, -0.023944858461618423, 0.007411825470626354, -0.011188681237399578, 0.031214799731969833, 0.005905137397348881, -0.008871219120919704, -0.01395882572978735, -0.008310433477163315, -0.0013968960847705603, 0.003604565979912877, 0.008155034855008125, -0.006394980009645224, -0.004776810295879841, -0.00953335128724575, 0.005155171267688274, -0.00912796426564455, 0.034133587032556534, 0.013722349889576435, -0.016526276245713234, 0.004449122119694948, -0.0029170974157750607, 0.01057384442538023, 0.014593931846320629, 0.007155080791562796, 0.0016950244316831231, 0.0004518376081250608, -0.013722349889576435, 0.0023478663060814142, -0.005340973846614361, 0.015607399865984917, 0.020944995805621147, -0.007945585064589977, -0.019809911027550697, 0.007276696618646383, 0.032863374799489975, 0.010425202548503876, 0.02243141457438469, -0.007675327360630035, 0.011715684086084366, 0.012310251593589783, -0.013607490807771683, 0.01219539251178503, 0.0036653741262853146, -0.007344261277467012, -0.02937704510986805, -0.020526094362139702, 0.012215661816298962, -0.020904457196593285, 0.020742300897836685, -0.00993873830884695, -0.0210125595331192, -0.00035027970443479717, -0.007857751101255417, 0.016728971153497696, 0.015783067792654037, -0.008452318608760834, 0.010999500751495361, -0.002420498291030526, 0.006938874255865812, -0.014566906727850437, 0.023782704025506973, -0.03921443596482277, 0.024471862241625786, 0.006030131597071886, 0.0024965081829577684, -0.0012448759516701102, 0.025147506967186928, -0.006188908126205206, 0.01563442498445511, 0.005047067999839783, 0.033647119998931885, -0.03151208162307739, 0.03545784950256348, -0.02310705929994583, -0.005371377803385258, -0.020715275779366493, -0.027363622561097145, -0.0001960426161531359, -0.007445607800036669, 0.0068848226219415665, 0.012154853902757168, 0.004057248122990131, 0.0005569848581217229, 0.020215298980474472, -0.01612089015543461, -0.02209359221160412, 0.009844147600233555, 0.018918059766292572, 0.0004260786226950586, 0.014810138382017612, 0.001300616655498743, -0.0345660001039505, -3.795224620262161e-05, -0.0017169829225167632, 0.028539244085550308, -0.005624744575470686, -0.023174623027443886, -0.01697220280766487, -0.01436421275138855, -0.006736180745065212, 0.010148188099265099, 0.004168729763478041, -0.02601233310997486, 0.025282636284828186, -0.014810138382017612, -0.009796852245926857, -0.003016754984855652, 0.022498978301882744, 0.00031987568945623934, -0.029485147446393967, -0.03051212802529335, -0.0022026028018444777, -0.02599881961941719, 0.009526594541966915, 0.0027988594956696033, 0.001075964653864503, -0.01120895054191351, -0.017053280025720596, -0.007945585064589977, 0.02374216541647911, 0.008452318608760834, 0.01660735346376896, 0.0018681584624573588, 0.011188681237399578, 0.009425248019397259, -0.004942343104630709, -0.012046750634908676, 0.015215525403618813, 0.004040357191115618, -0.011438669636845589, -0.003263365477323532, -0.019945040345191956, 0.0013360879383981228, -0.007006438914686441, 0.009796852245926857, 0.009256336838006973, -0.03129587695002556, 0.010154944844543934, 0.018850496038794518, -0.012006212025880814, 0.016742482781410217, -0.023201650008559227, -0.017364077270030975, 0.00480045797303319, -0.003580918535590172, -0.013688568025827408, -0.006641590502113104, 0.006577404215931892, -0.03678211569786072, 0.005371377803385258, -0.014175032265484333, -0.030566180124878883, -0.0182559285312891, -0.0009349237661808729, -0.04186296463012695, 0.006175395101308823, -0.03540379926562309, 0.006509839557111263, -0.0030708066187798977, 0.0031839769799262285, 0.00735101755708456, 0.0043275062926113605, 0.011769736185669899, 0.002856289269402623, 0.0013251088093966246, 0.010837346315383911, 0.016728971153497696, -0.006783475633710623, -0.024458348751068115, 0.004280210938304663, -0.026242051273584366, -0.01563442498445511, 0.006604429800063372, -0.005263274535536766, -0.009627941064536572, 0.005465968046337366, -0.017161382362246513, 0.011519746854901314, -0.009290118701756, 0.006803745403885841, -0.005114632658660412, -0.02229628525674343, -0.0026519065722823143, -0.0024914408568292856, -0.010134674608707428, -0.008114496245980263, -0.0075469547882676125, 0.009121207520365715, -0.01082383282482624, 0.03151208162307739, -0.01048601046204567, -0.03894417732954025, 0.004655194003134966, -0.009871173650026321, -0.0030995213892310858, -0.013931799679994583, -0.0050132861360907555, 0.03524164482951164, -0.024620503187179565, -0.019336959347128868, -0.0072969659231603146, -0.02387729473412037, -0.02455293945968151, 0.029322993010282516, -0.004591007716953754, 0.006188908126205206, 0.03291742503643036, -0.024336732923984528, 0.0008943850989453495, -0.027701444923877716, -0.003138371044769883, -0.007317235227674246, -0.027377136051654816, -0.024296194314956665, -0.013735863380134106, -0.00993873830884695, 0.012404842302203178, -0.0066517251543700695, 0.01413449365645647, 0.0028056157752871513, 0.019445063546299934, 0.012006212025880814, 0.016877612099051476, -0.024012424051761627, -0.0068848226219415665, 0.005807168781757355, -0.0019644377753138542, -0.004895048215985298, -0.006577404215931892, 0.0007791031384840608, -0.012492676265537739, 0.038809049874544144, 0.01710733212530613, 0.011904864571988583, 0.003423830959945917, 0.0069658998399972916, -0.00306742824614048, 0.006587538868188858, 0.006050400901585817, -0.0003331774496473372, -0.016877612099051476, 0.0043511539697647095, -0.00814152229577303, -0.00131328497081995, -0.0021046341862529516, -0.009472543373703957, -0.003342753741890192, 0.0009053642861545086, -0.038349609822034836, -0.022336823865771294, 0.010567087680101395, -0.015215525403618813, 0.013114269822835922, 0.017458666115999222, 0.010148188099265099, 0.016337096691131592, 0.00895229633897543, 0.015080396085977554, 0.005060581024736166, -0.000835688435472548, -0.012222418561577797, 0.010769781656563282, -0.0039964402094483376, 0.00629025511443615, -0.023525958880782127, 0.025417765602469444, 0.006459166295826435, -0.014620957896113396, -0.024890761822462082, -0.0077631608583033085, 0.022971929982304573, 0.008438806049525738, 0.009594159200787544, -0.008877974934875965, -0.04288994520902634, 0.01886400766670704, -0.01724245958030224, -0.009391465224325657, 0.03416061028838158, 0.022026026621460915, 0.0072226449847221375, 0.00046112772542983294, 0.006661859806627035, -0.005134901963174343, -0.006638212129473686, -0.01760730892419815, -0.015256064012646675, 0.005476102698594332, 0.012256200425326824, 0.008607717230916023, -0.014783112332224846, -0.005266652908176184, 0.0022279394324868917, -0.008060445077717304, -0.0045606037601828575, -0.006310524418950081, -0.007857751101255417, -0.006732802372425795, -0.012438624165952206, -0.0021569966338574886, -0.003364712232723832, -0.016999227926135063, -0.0022684780415147543, -0.005945676006376743, 0.015080396085977554, -0.019728833809494972, 0.022971929982304573, -0.00556731503456831, 0.005945676006376743, 0.010985988192260265, 0.01581009291112423, -0.019620731472969055, -0.013141294941306114, -0.014729061163961887, 0.010654921643435955, 0.005378134083002806, -0.0223097987473011, 0.0326201394200325, 0.0066551030613482, -0.013431822881102562, -0.008526640012860298, -0.0027971703093498945, -0.018918059766292572, -0.00027680330094881356, 0.00770910969004035, 0.021904410794377327, -0.015215525403618813, -0.0046889763325452805, -0.031566135585308075, 0.025458304211497307, 0.00881041120737791, -0.006219312082976103, 0.017877567559480667, 0.00013776823470834643, 0.0007639011600986123, -0.026917697861790657, 0.03305255249142647, 0.012134584598243237, 0.01759379543364048, 0.01203999388962984, -0.0003344442811794579, 0.0004011642304249108, 0.0014661496970802546, 0.0022583433892577887, 0.03226880356669426, -0.013492630794644356, 0.0011637985007837415, 0.010877884924411774, 0.01429664809256792, -0.0374847836792469, -0.007837481796741486, 0.005361243151128292, 0.014661496505141258, -0.0010143120307475328, 0.03443086892366409, -0.005138280335813761, 0.015512809157371521, -0.009249580092728138, -0.011925133876502514, 0.015566861256957054, 0.01122921984642744, -0.0008656701538711786, 0.005438942462205887, -0.016418173909187317, 0.0011173479724675417, 0.006915226578712463, 0.0034863282926380634, -0.00881041120737791, 0.002138416515663266, 0.017999183386564255, -0.0007816368015483022, 0.008114496245980263, -0.018269440159201622, 0.003631591796875, 0.007114541716873646, -0.019012650474905968, 0.012303495779633522, -0.0029508795123547316, -0.02243141457438469, -0.029782431200146675, -0.025120481848716736, -0.0040369788184762, -0.013384527526795864, 0.01805323362350464, -0.01935047283768654, 0.0329444520175457, -0.013742619194090366, 0.0004117211792618036, 0.03405250981450081, 0.027066338807344437, -0.024498887360095978, -0.023323265835642815, 0.015107422135770321, 0.020553121343255043, 0.012026481330394745, -0.0198774766176939, 0.01920183189213276, -0.006807123310863972, -0.008209086954593658, -0.0022144264075905085, -0.020539607852697372, -0.00548285897821188, 0.005168684292584658, 0.0007769917719997466, -0.014458803460001945, -0.005354486871510744, -0.015742529183626175, -0.004574116785079241, 0.005063959397375584, -0.0008297765161842108, 0.012100801803171635, 0.0019576814956963062, 0.012783203274011612, 0.011060308665037155, -0.022998955100774765, 0.01840456947684288, 0.01177649199962616, -0.00186646927613765, 0.010708973743021488, -0.004111299756914377, 0.016985716298222542, -0.019769372418522835, -0.02875545062124729, 0.01581009291112423, 0.012073775753378868, -0.007655058056116104, 0.024269169196486473, -0.007242914289236069, -0.010350881144404411, -0.00689833564683795, -0.018026208505034447, -0.057240646332502365, 0.01951262727379799, 0.010945448651909828, -0.002636704593896866, -0.009796852245926857, -0.012539971619844437, -0.020782839506864548, -0.02483670972287655, 0.008925270289182663, -0.008452318608760834, 0.0037329385522753, 0.022012514993548393, -0.0308364387601614, -0.00043367964099161327, 0.003678887151181698, 0.004685597959905863, 0.003908606246113777, -0.0015928330831229687, -0.014229083433747292, 0.011479208245873451, 0.004922073800116777, -0.0016789778601378202, -0.01648573763668537, 0.003580918535590172, 0.01598576083779335, -0.012087289243936539, 0.011492721736431122, 0.008932027034461498, -0.016242505982518196, 0.0017566770548000932, -0.008614473976194859, 0.002244830597192049, -0.010195483453571796, -0.00870906375348568, 0.00013787380885332823, 8.46667680889368e-05, 0.0202017854899168, -0.04386287182569504, -0.01114138588309288, 0.006736180745065212, -0.014310161583125591, -0.007601006422191858, -0.0238637812435627, 0.006050400901585817, -0.0005185575573705137, -0.006317280698567629, 0.004908560775220394, 0.003373157698661089, -0.023796217516064644, -0.003217759309336543, -0.01983693800866604, -0.004263320006430149, -0.008465832099318504, 0.020863918587565422, 0.012850767932832241, 0.010763024911284447, -0.01598576083779335, 0.010877884924411774, 0.00814152229577303, -0.02518804557621479, 0.0026519065722823143, -0.01274266466498375, -0.011033282615244389, 0.008871219120919704, -0.019336959347128868, 0.004324127919971943, 0.01558037381619215, 0.00266204122453928, 0.013296693563461304, 0.004212646745145321, -0.03340388834476471, -0.011263002641499043, -0.002251586876809597, -0.017539745196700096, -0.00993873830884695, 0.013175077736377716, -0.02843114174902439, 0.029620276764035225, -0.011425157077610493, -0.006516595836728811, -0.029782431200146675, 0.02098553441464901, 0.002962703350931406, -0.0072158887051045895, 0.009013104252517223, -0.012431868351995945, 0.008594204671680927, 0.007269940339028835, 0.0035403799265623093, 0.010688703507184982, 0.0006807123427279294, -0.00011633762187557295, -0.008465832099318504, -0.008107740432024002, 0.004496417474001646, 0.021215252578258514, -0.07345612347126007, -0.0303499735891819, 0.01725597307085991, 0.003604565979912877, -0.028485193848609924, 0.016512764617800713, 0.011087334714829922, 0.0025860313326120377, 0.028350064530968666, 0.005199088249355555, 0.020242324098944664, 0.006310524418950081, 0.02486373670399189, -0.015850631520152092, 0.0009298564400523901, 0.01453988067805767, 0.01921534352004528, 0.005736226215958595, 0.021863872185349464, -0.03005268983542919, 0.020566634833812714, -0.00920228473842144, 0.007229401730000973, 0.015134448185563087, 0.02144497260451317, 0.004952477756887674, 0.015904683619737625, 0.004466013517230749, -0.00496261240914464, -0.008763115853071213, -0.0002573785313870758, 0.00856717862188816, -0.010040084831416607, 0.011121116578578949, 0.015499296598136425, -0.004452500492334366, 0.0026755542494356632, 0.009168502874672413, -0.012695369310677052, -2.5890927645377815e-05, 0.0031552622094750404, -0.017526231706142426, -0.0030049311462789774, 0.0014644605107605457, -0.005168684292584658, 0.013850722461938858, 0.011661632917821407, 0.007182106375694275, 0.004148460458964109, -0.01314805168658495, 0.004807214252650738, 0.023701626807451248, -0.010769781656563282, -0.0010041773784905672, 0.015729015693068504, 0.0062159341759979725, -0.012560240924358368, 0.009161746129393578, -0.014418263919651508, 0.02032340131700039, -0.008898244239389896, -0.005239626858383417, 0.01728300005197525, 0.010161700658500195, -0.0013521345099434257, 0.011195437982678413, -0.008986078202724457, -0.0018005939200520515, 0.010796806775033474, 0.024485375732183456, 0.0029035843908786774, -0.004276833031326532, 0.030106741935014725, -0.025971794500947, -0.01413449365645647, -0.013864235021173954, -0.018445108085870743, -0.004834239836782217, -0.0013352434616535902, -0.002325907815247774, 0.0022583433892577887, 0.0010033327853307128, 0.023485420271754265, 0.015945222228765488, 0.0033866704907268286, -0.00572946947067976, 0.013512900099158287, 0.018512673676013947, -0.013918287120759487, 0.015742529183626175, -0.01645871251821518, 0.012931845150887966, -0.0021333491895347834, -0.022485464811325073, 0.007736135274171829, -0.001711071003228426, -0.0067496937699615955, 0.009154989384114742, 0.0027684553060680628, 0.026228539645671844, 0.02036393992602825, 0.02048555575311184, 0.002967770677059889, 0.00047379606985487044, -0.01772892475128174, -0.008236113004386425, -0.014661496505141258, -0.001530335983261466, -0.010783294215798378, 0.0074185822159051895, 0.002434011083096266, 0.00993873830884695, -0.0031079670879989862, 0.019080214202404022, 0.004942343104630709, 0.003884958801791072, 0.01558037381619215, 0.006503083277493715, 0.008573935367166996, -0.0014653051039204001, 0.009688748978078365, -0.009337414056062698, -0.014661496505141258, -0.021742256358265877, -0.002937366720288992, -0.011121116578578949, -0.0029812834691256285, -0.007236158009618521, 0.0029914183542132378, -0.010452228598296642, -0.011276515200734138, 0.00034500123001635075, 0.00017028365982696414, -0.016742482781410217, -0.002521845046430826, 0.0311607476323843, 0.0015286467969417572, -0.00053544866386801, 0.019269395619630814, -0.005827438086271286, 0.016904637217521667, 0.008296920917928219, 0.01276293396949768, 0.006351063027977943, -0.025255609303712845, 0.009033373557031155, 0.013222373090684414, -0.007249671034514904, -0.003143438370898366, 0.01921534352004528, -0.009688748978078365, 0.020782839506864548, -0.029052734375, -0.014256109483540058, 0.005168684292584658, -0.0067564500495791435, -0.011972429230809212, 0.02129632979631424, -0.0133912842720747, -0.007236158009618521, -0.006023375317454338, -0.015566861256957054, -0.0036214571446180344, -0.01064816489815712, -0.013053461909294128, -0.010918423533439636, 0.006465922575443983, -0.013634515926241875, -0.009830635040998459, 0.020593659952282906, 0.02775549702346325, 0.013688568025827408, 0.006709154695272446, 0.0023208404891192913, 0.010310342535376549, 0.008648255839943886, 0.002499886555597186, -0.009006347507238388, -0.0011747777462005615, -0.016904637217521667, 0.018836982548236847, 0.005915272049605846, 0.004780188202857971, -0.019620731472969055, 0.005290300585329533, -0.004482904449105263, -0.01662086695432663, 0.03426871448755264, -0.0024221872445195913, 0.014729061163961887, 0.02160712704062462, -0.0002599121944513172, 0.004040357191115618, 0.009614428505301476, -0.02225574664771557, 0.006445653270930052, -0.014837164431810379, 0.02213413082063198, 0.02195846289396286, -0.015364167280495167, 0.027336597442626953, -0.002869802061468363, -0.0024880627170205116, 0.007438851520419121, 8.350549614988267e-05, -1.7102263882406987e-05, 0.030106741935014725, -0.0034052508417516947, -0.014148006215691566, 0.012438624165952206, 0.018945086747407913, 0.006388223730027676, 0.02729605883359909, -0.026255564764142036, 0.009148233570158482, 0.007310478948056698, 0.03680913895368576, -0.0023951614275574684, -0.0032819455955177546, 0.02682310715317726, -0.0009703951072879136, -0.023498933762311935, 0.011357592418789864, 0.010931936092674732, -0.004506552126258612, 0.014148006215691566, 0.011168411932885647, -0.018647802993655205, -0.0023157731629908085, 0.02036393992602825, -0.005452455021440983, 0.005415294785052538, 0.000522780348546803, 0.013026435859501362, 0.02537722699344158, 0.025431277230381966, 0.008418536745011806, 0.013242642395198345, 0.003631591796875, -0.011729197576642036, -0.010384663939476013, 0.03486328199505806, -0.003935632295906544, 0.023634063079953194, -0.04340343549847603, 0.005516641307622194, -0.024417810142040253, 0.0026671085506677628, 0.002050582552328706, -0.015026344917714596, 0.012722395360469818, 0.014850676991045475, 0.014647983945906162, 0.01064816489815712, -0.009992789477109909, -0.027160929515957832, 0.008803654462099075, 0.013999364338815212, 0.006972656585276127, -0.006790232378989458, 0.0017583661247044802, 0.00013840165047440678, 0.01824241504073143, -0.003266743617132306, -0.02225574664771557, 0.0012364303693175316, -0.00714832404628396, -0.011729197576642036, -0.023634063079953194, -7.379310409305617e-05, -0.01920183189213276, -0.008094226941466331, -0.004472769796848297, 0.010269803926348686, 0.006209177430719137, -0.015783067792654037, -0.024782659485936165, 0.016728971153497696, 0.023471906781196594, 0.021107150241732597, 0.015229037962853909, 0.00041678850539028645, -0.008202330209314823, 0.0032110027968883514, 0.0003270544111728668, 0.0028241961263120174, 0.0004754851688630879, 0.04159270599484444, -0.011715684086084366, -0.01859375089406967, -0.007107785437256098, -0.004526821430772543, -0.02079635299742222, 0.0035133541096001863, -0.006361197680234909, -0.00029707266367040575, -0.0015793201746419072, 0.004678841680288315, -0.018985625356435776, -0.009404978714883327, 0.0032549197785556316, -0.0020860538352280855, -0.0032768782693892717, 0.02180982008576393, -0.011837300844490528, 0.011127873323857784, 0.002653595758602023, 0.013681811280548573, 0.03183639422059059, 0.013141294941306114, 0.010431959293782711, -0.018309978768229485, 0.016553303226828575, -0.012202148325741291, 0.01316832099109888, -0.007817212492227554, 0.011580555699765682, 0.006104452535510063, -0.008905000984668732, 0.015215525403618813, 0.001123259775340557, 0.017161382362246513, -0.0012702125823125243, 0.002957636024802923, 0.012114315293729305, 0.005395025480538607, -0.0070942724123597145, 0.0042227813974022865, 0.020093683153390884, -0.03305255249142647, 0.006307146046310663, -0.004790322855114937, 0.010411689057946205, 0.0005092674400657415, -0.017634334042668343, -0.01185757014900446, -0.020242324098944664, -0.01579657942056656, -0.011269758455455303, 0.0004345242050476372, -0.004188999067991972, 0.005310569889843464, 0.01872888021171093, 0.0001113758553401567, 0.005374756176024675, 0.0021333491895347834, 0.01355343870818615, -0.010249534621834755, 0.007114541716873646, 0.00577338645234704, -0.02324218861758709, -0.02259356901049614, -0.010350881144404411, 0.014229083433747292, -0.04132244735956192, -0.0034593024756759405, 0.009769827127456665, 0.02197197638452053, -0.01599927432835102, -0.006918604951351881, 0.004216024652123451, 0.015769554302096367, -0.000906208879314363, 0.01955316588282585, 0.007168593350797892, -0.007688839919865131, 0.001492330920882523, -0.008573935367166996, 0.02209359221160412, -0.008026662282645702, 0.005087607074528933, -0.007972611114382744, -0.01774243824183941, 0.03005268983542919, -0.006351063027977943, 0.025579920038580894, 0.026350155472755432, 0.003217759309336543, -0.011317053809762001, -0.010384663939476013, 0.014729061163961887, -0.012850767932832241, -0.007053733803331852, -0.0004645059525500983, -0.013033191673457623, -0.006077426951378584, -0.010763024911284447, 0.010830589570105076, 0.011127873323857784, -0.023688113316893578, -0.007026708219200373, 0.0021046341862529516, -0.024404296651482582, -0.009222554042935371, 0.018836982548236847, -0.01039817649871111, 0.011195437982678413, -0.02614746242761612, -0.0012220728676766157, 0.0080739576369524, -0.01470203511416912, -0.000779525435063988, 0.011290027759969234, -0.01034412533044815, -0.006202421151101589, 0.015472270548343658, 0.017985669896006584, -0.02049906924366951, 0.0009771515615284443, 0.012121071107685566, -0.012506188824772835, -0.011438669636845589, 0.009844147600233555, -0.0008031729958020151, 0.010513036511838436, -0.01617494225502014, 8.519460971001536e-05, 0.018134312704205513, 0.009121207520365715, -0.028296012431383133, 0.012289982289075851, 0.003194111865013838, 0.002781968330964446, -0.020269349217414856, -1.967552088899538e-05, -0.011310297064483166, -0.017796488478779793, 0.006506461184471846, 0.003800503211095929, -0.002096188720315695, 0.019945040345191956, -0.020377453416585922, 0.015526321716606617, 0.016391146928071976, 0.004648437723517418, -0.018201876431703568, -0.0037768555339425802, -0.0013259532861411572, 0.00030868532485328615, 0.02664743922650814, -0.01631006971001625, -0.007378043606877327, -0.013060217723250389, 0.01599927432835102, -0.014783112332224846, -0.007317235227674246, 0.007438851520419121, -0.02278275042772293, 0.019472088664770126, 0.009776582941412926, -0.025079943239688873, -0.009945494122803211, -0.017147870734333992, 0.01395882572978735, 0.014796625822782516, -0.02937704510986805, 0.007317235227674246, -0.0009121207403950393, 0.007459120824933052, 0.005452455021440983, -0.01558037381619215, 0.010783294215798378, -0.01064816489815712, 0.016066838055849075, 0.025417765602469444, -0.008202330209314823, -0.014404751360416412, 0.004493039101362228, -0.001651107450015843, -0.03245798498392105, 0.008769872598350048, -0.0007774140103720129, -0.004692354705184698, -0.003167086048051715, -1.3921981917519588e-05, -0.010600870475172997, 0.0015202012145891786, 0.0006971812108531594, -0.004533578176051378, 0.016026299446821213, -0.002200913615524769, -0.01710733212530613, -0.005361243151128292, 0.020066656172275543, 0.021917924284934998, -0.0006676217308267951, -0.027309570461511612, -0.010621139779686928, -0.019782885909080505, -0.003959279507398605, -0.03307957947254181, 0.0004387469671200961, 0.005965945310890675, -0.0004036978934891522, 0.0003027734055649489, 0.006047022994607687, 0.00219922442920506, 0.015850631520152092, -0.014837164431810379, -0.012553484179079533, 0.011202193796634674, 0.02308003418147564, -0.00274142948910594, -0.01429664809256792, -0.01759379543364048, -0.02066122367978096, 0.025904228910803795, -0.016093863174319267, -0.0004303014138713479, -0.0019492357969284058, 0.012607535347342491, 0.005631501320749521, 0.011344079859554768, 0.01824241504073143, -0.007168593350797892, -0.009053642861545086, 0.023336779326200485, 0.015620912425220013, -0.010114405304193497, -0.004901804495602846, 0.005874733440577984, -0.004418718162924051, -0.001701780827715993, 0.0197153203189373, -0.007601006422191858, -0.0034626806154847145, 0.0125805102288723, -0.0197153203189373, 0.019566679373383522, 0.01251294557005167, -0.00038575107464566827, -0.010607626289129257, 0.009952250868082047, 0.0001494864554842934, 0.00673955911770463, -0.016201967373490334, 0.011323810555040836, 0.0003739272942766547, 0.016039812937378883, -0.0012110936222597957, -0.029106786474585533, -0.011512991040945053, 0.013208859600126743, 0.001790459267795086, -0.02682310715317726, 0.01564793847501278, 0.011661632917821407, 0.016701944172382355, 0.015377679839730263, -0.0037971248384565115, -0.00209787767380476, -0.00431061489507556, -0.0013960514916107059, 0.015485783107578754, -0.0037633427418768406, 0.013850722461938858, 0.0004079206846654415, -0.005999727640300989, 0.002810683101415634, 0.013573708012700081, 0.0319715216755867, -0.017066793516278267, -0.0005341818323358893, 0.002954257884994149, -0.003249852452427149, -0.0075537110678851604, -0.01154677290469408, 0.010810320265591145, -0.013492630794644356, 0.02807980589568615, 0.008026662282645702, 0.010357637889683247, -0.023350290954113007, 0.008519883267581463, 0.002092810347676277, -0.005851085763424635, 0.02194494940340519, 0.005874733440577984, 0.025309661403298378, -0.004628168419003487, 0.00113930634688586, -0.0044389874674379826, -0.013593977317214012, -0.0013343988684937358, 0.011019770056009293, 0.005851085763424635, 0.02114768885076046, -0.002069162903353572, -0.018350517377257347, -0.004205889999866486, 0.025904228910803795, 0.009742801077663898, 0.008729333057999611, -0.0024897519033402205, -0.010567087680101395, 0.010695460252463818, -0.01597224734723568, 0.01564793847501278, -0.011648119427263737, 0.000933234638068825, 0.009749557822942734, 0.0010421824408695102, -0.020904457196593285, -0.022066565230488777, 0.008276651613414288, 0.01985044963657856, 0.022012514993548393, -0.01985044963657856, -0.0058679766952991486, 0.02322867512702942, -0.011898108758032322, -0.007107785437256098, 0.0057868994772434235, -0.0002977060794364661, -0.033511992543935776, 0.004134947434067726, 0.01644519902765751, -0.011222463101148605, 0.0031569511629641056, 0.026769055053591728, -0.020593659952282906, -0.0010827211663126945, -0.006952387280762196, 0.0088847316801548, 0.016242505982518196, -0.016418173909187317, -0.00649632653221488, -0.010127918794751167, 0.015215525403618813, -0.0043207500129938126, 0.017161382362246513, -0.0274311862885952, -0.002682310761883855, -0.010458984412252903, 0.018485646694898605, 0.006938874255865812, -0.012398085556924343, -0.007925315760076046, -0.013776401989161968, -0.004976125434041023, 0.0032515416387468576, 0.0038917153142392635, -0.00235800095833838, 0.007857751101255417, -0.027012286707758904, 0.014310161583125591, -0.013452092185616493, -0.0061247218400239944, 0.00419237744063139, -0.013343988917768002, 0.014783112332224846, 0.011762979440391064, 0.02471509389579296, -0.00294412299990654, 0.009945494122803211, -0.00881041120737791, 0.015283090062439442, -0.0023444881662726402, -0.019309934228658676, -0.0040336004458367825, -0.01713435724377632, -0.013364258222281933, 0.019647756591439247, -0.0020353805739432573, 0.011026526801288128, 0.01535065472126007, 0.016891125589609146, 0.008776628412306309, -0.020701762288808823, 0.007486146409064531, -0.004168729763478041, -0.005074094049632549, 0.01824241504073143, 0.009904955513775349, -0.02098553441464901, -0.0088847316801548, 0.015026344917714596, -0.004976125434041023, 0.005016664043068886, 0.017377588897943497, 0.000412354595027864, 0.006519974209368229, 0.026877157390117645, 0.0017955265939235687, 0.016755996271967888, -0.02778252214193344, 0.007405069191008806, 0.005648392252624035, 0.011073821224272251, -0.00945227313786745, 0.006999682169407606, 0.01839105784893036, -0.014661496505141258, -0.010675190947949886, -0.017864054068922997, 0.013972338289022446, -0.051754407584667206, -0.0008107739849947393, -0.0030708066187798977, -0.0028292634524405003, -0.004911939147859812, 0.013823696412146091, 0.0026941343676298857, 0.011073821224272251, 0.007134811021387577, 0.001761744380928576, -0.00014769176777917892, -0.016337096691131592, -0.007864507846534252, 0.005955810658633709, -0.0012930156663060188, -0.011310297064483166, 0.002584342146292329, 0.011898108758032322, -0.004205889999866486, -0.0004239672271069139, -0.010864371433854103, 0.0022161155939102173, -0.01048601046204567, -0.008459075354039669, 0.025728560984134674, 0.005435564089566469, 0.014377725310623646, 0.008121252991259098, -0.004449122119694948, -0.02422863058745861, -0.00022085146338213235, -0.010526549071073532, 0.002781968330964446, 0.015134448185563087, -0.01612089015543461, -0.005604475270956755, -0.007445607800036669, -0.0149317542091012, 0.0012524769408628345, 0.022377362474799156, 0.011884595267474651, -0.01762082241475582, 0.005192331969738007, 0.00296608149074018, -0.011121116578578949, 0.020769327878952026, 0.03389035165309906, 0.0011426846031099558, -0.014431777410209179, 0.0020522717386484146, 0.006732802372425795, -0.004520065151154995, -0.01887752115726471, 0.0024677934125065804, 0.014391238801181316, -0.005938919726759195, 0.018039721995592117, -0.0034086289815604687, 0.017012741416692734, -0.013249398209154606, 0.012202148325741291, 0.002354622818529606, -0.00649294862523675, -0.0011384618701413274, 0.0074253384955227375, 0.008330702781677246, -0.015931708738207817, 0.0003946188953705132, -0.0011511301854625344, 0.036430779844522476, -0.023593522608280182, 0.0036923999432474375, -0.028836527839303017, 0.001582698430866003, -0.00135297910310328, 0.0129858972504735, 0.008013149723410606, 0.0015176675515249372, 0.014012877829372883, 0.010445471853017807, -0.004300480242818594, 0.012965627945959568, 0.01612089015543461, 0.010634652338922024, -0.009019860997796059, -0.007121298462152481, 0.01937749795615673, -0.014039902947843075, -0.009094181470572948, -0.011431913822889328, 0.008344215340912342, 0.011681902222335339, 0.01494526769965887, 0.024458348751068115, 0.004722758661955595, 0.02245843969285488, 0.011310297064483166, -0.0010024883085861802, 0.0052159796468913555, -0.00012224951933603734, 0.0036451048217713833, -0.004178864415735006, -0.03375522419810295, 0.003945766948163509, 0.004466013517230749, -0.010553575120866299, -0.0339173786342144, -0.0068611749447882175, -0.015080396085977554, 0.03791719675064087, 0.01794513128697872, 0.007992880418896675, -0.011965673416852951, 0.002454280387610197, 0.01429664809256792, 0.017701899632811546, -0.005965945310890675, 0.001633371808566153, -0.0019796397536993027, -0.008688794448971748, -0.007526685483753681, -0.02194494940340519, -0.008134765550494194, -0.006155125796794891, 0.00832394603639841, 0.004405205603688955, 0.014053416438400745, 0.011445426382124424, -0.005668661557137966, 0.010269803926348686, -0.0275933425873518, 0.015499296598136425, -0.0013766266638413072, 0.010236022062599659, 0.005563936661928892, 0.019769372418522835, -0.011323810555040836, -0.00026307927328161895, 0.010181969963014126, -0.005239626858383417, 0.027809549123048782, -0.0004885757807642221, 0.022471953183412552, 0.006837527267634869, -0.015066883526742458, -0.01628304459154606, -0.022336823865771294, 0.006638212129473686, 0.015931708738207817, 0.0024880627170205116, -0.0048477528616786, 0.015120935626327991, 0.017377588897943497, 0.01986396312713623, -0.000217473236261867, 0.016066838055849075, -0.02197197638452053, -0.03859284147620201, 0.012060263194143772, 0.009168502874672413, -0.0009129653335548937, -0.0009746178984642029, -0.0035336234141141176, 0.020228810608386993, -0.0028005484491586685, 0.028296012431383133, 0.00561460992321372, 0.01808026060461998, -0.0387820228934288, 0.0030826302245259285, 0.01678302139043808, 0.007128054741770029, -0.011600825004279613, 0.018134312704205513, -0.0002584342146292329, -0.003966036252677441, 0.013533169403672218, 0.019809911027550697, 0.008918514475226402, -0.037890173494815826, -0.006148369517177343, 0.01470203511416912, 0.0009340792312286794, -0.01579657942056656, 0.013614246621727943, -0.012506188824772835, 0.020228810608386993, 0.009303631260991096, -0.004391692578792572, 0.00993873830884695, 0.020377453416585922, 0.008945539593696594, 0.011310297064483166, -0.0001709170755930245, 0.0076685706153512, 0.008411779999732971, 0.0038207725156098604, -0.0023444881662726402, 0.018769418820738792, 0.026052871719002724, 0.004418718162924051, 0.0009636387112550437, 0.0005362931988202035, -0.003116412553936243, -0.0037734773941338062, -0.013918287120759487, -0.010296829976141453, 0.02130984328687191, 0.010019815526902676, -0.01806674711406231, -0.0025100212078541517, -0.018309978768229485, 0.024904275313019753, 0.037052370607852936, -0.011519746854901314, 0.003065739292651415, 0.0072969659231603146, 0.011344079859554768, -0.003932253923267126, -0.01008062344044447, 0.006144991144537926, -0.016674919053912163, 0.01114138588309288, 0.0008631364908069372, 0.020728789269924164, 0.0065470002591609955, -0.008905000984668732, 0.012506188824772835, 0.018472135066986084, 0.015918197110295296, 0.0007875487208366394, 0.003631591796875, 0.006905091926455498, -0.010290073230862617, 0.010985988192260265, 0.004216024652123451, 0.0076212757267057896, 0.02290436625480652, 0.003151883836835623, 0.0005375600303523242, 0.00230057118460536, -0.021863872185349464, -0.024336732923984528, 0.010371150448918343, -0.015364167280495167, 0.013289936818182468, -0.019485602155327797, 0.009898199699819088, -0.013580464757978916, -0.019404524937272072, -0.017188409343361855, 0.008168548345565796, -5.6321343436138704e-05, 0.019823424518108368, 0.013931799679994583, -0.014796625822782516, -0.013931799679994583, -0.019728833809494972, 0.017310025170445442, 0.019120752811431885, 0.0028546000830829144, 0.001700091757811606, 0.004199133720248938, -0.0021046341862529516, 0.005303813144564629, -0.023377317935228348, -0.001521045807749033, -0.02649879641830921, -0.0016257708193734288, -0.006796988658607006, -0.0031248582527041435, 0.013668298721313477, 0.002677243435755372, -0.013627760112285614, -0.0037160476204007864, -0.007459120824933052, 0.0010084001114591956, 0.005935541354119778, 0.005172062665224075, 0.021377407014369965, -0.023296238854527473, 0.007695596665143967, -0.011364349164068699, -0.0011646430939435959, 0.028836527839303017, 0.004857887513935566, -0.01307373121380806, 0.008128009736537933, 0.007817212492227554, 0.017512718215584755, -0.016837073490023613, 0.029431097209453583, 0.020309889689087868, -0.012127827852964401, 0.0010320477886125445, 0.007884777151048183, 0.010911666788160801, 0.005297056864947081, -0.009100938215851784, -0.0037903685588389635, -0.00872257724404335, -0.009249580092728138, -0.0013318652054294944, -0.008506370708346367, 0.01348587404936552, 0.015715502202510834, -0.03256608918309212, -0.0029525686986744404, 0.004668707028031349, 0.02033691480755806, -0.03467410057783127, -0.020120708271861076, 0.03097156621515751, 0.0036653741262853146, -0.006719289347529411, 0.02422863058745861, 0.0018326870631426573, -0.002650217618793249, 0.006357819307595491, 0.00026687976787798107, 0.017228947952389717, -0.014566906727850437, -0.02226926013827324, 0.02843114174902439, 0.0007406758377328515, 0.023525958880782127, -0.007580737117677927, -0.006604429800063372, 6.112475966801867e-05, 0.02032340131700039, -0.018485646694898605, 0.01266834419220686, -0.004064004868268967, 0.0009611049899831414, -0.01499931886792183, 0.021053098142147064, -0.009641454555094242, -0.02343136817216873, -0.023053007200360298, 0.004303858615458012, -0.0036619959864765406, -0.00654024351388216, -0.015458757989108562, 0.001314974040724337, 0.014634470455348492, 0.0029525686986744404, 0.01708030514419079, 0.004155216738581657, 0.032214753329753876, -0.009898199699819088, -0.015026344917714596, -0.010202239267528057, 0.021431459113955498, 0.013026435859501362, -0.0035370015539228916, 0.020242324098944664, 0.017161382362246513, 0.03729560598731041, 0.030214844271540642, 0.004064004868268967, -0.011222463101148605, -0.020580146461725235, 0.0029491903260350227, 0.0129858972504735, 0.00028567115077748895, -0.002251586876809597, -0.0013107513077557087, 0.012695369310677052, 0.004128191154450178, -0.01251294557005167, 0.016715457662940025, 0.020228810608386993, -0.020620685070753098, 0.005381512455642223, -0.005962566938251257, -0.004982881713658571, -0.007074003107845783, -0.025539381429553032, -0.00172542838845402, 0.021215252578258514, 0.03702534735202789, 0.024742120876908302, 0.01613440178334713, -2.1483399905264378e-05, -0.009979276917874813, -0.020120708271861076, -0.015620912425220013, 0.004030222538858652, 0.0020353805739432573, -0.0016232371563091874, -0.00911445077508688, -0.010019815526902676, 0.02421511709690094, 0.007013195194303989, -0.013972338289022446, 0.010857615619897842, 0.013539926148951054, 0.0003946188953705132, -0.02097202092409134, 0.015147960744798183, -0.0028782477602362633, -0.002373203169554472, -0.02003963105380535, -3.539218596415594e-05, -0.020607173442840576, 0.000880872190464288, 0.008249625563621521, 0.0011426846031099558, 0.01187783945351839, -0.011708928272128105, 0.023161111399531364, 0.0021198361646384, -0.022890852764248848, -0.005202466621994972, 0.010350881144404411, 0.011992698535323143, 0.018026208505034447, 0.0011536638485267758, 0.009236067533493042, -0.009425248019397259, 0.0214990247040987, -0.023931346833705902, 0.022850314155220985, -0.01563442498445511, -0.020404478535056114, 0.010911666788160801, 0.0023867159616202116, 0.018958598375320435, -0.01242511160671711, 0.010911666788160801, 0.012546727433800697, -7.06260179867968e-05, -0.0007698130211792886, -0.013675054535269737, 0.013675054535269737, -0.001543004298582673, 0.015620912425220013, -0.013458848930895329, -0.005273409187793732, 0.009438760578632355, -0.00897256564348936, 0.01713435724377632, 0.008175304159522057, -0.011594068259000778, -0.0037092911079525948, -0.013850722461938858, 0.010127918794751167, -0.007884777151048183, 0.007128054741770029, -0.013175077736377716, 0.012506188824772835, -0.020863918587565422, 0.020917968824505806, -0.009384709410369396, 0.006384845357388258, -0.0016232371563091874, -0.036214571446180344, 0.007830725982785225, 0.007959098555147648, -0.025944767519831657, -0.016526276245713234, -0.02387729473412037, 0.01274266466498375, 0.014445289969444275, -0.006668616086244583, 0.007209131959825754, 0.012864280492067337, -0.013316962867975235, 0.006121343933045864, 0.000460283161373809, 0.011087334714829922, 0.00028546000248752534, 0.02294490486383438, -0.003884958801791072, 0.007803699932992458, 0.013175077736377716, -0.0029289210215210915, -0.00475654099136591, 0.002962703350931406, -0.002378270495682955, -0.007074003107845783, 0.0246745552867651, -0.01251294557005167, 0.019728833809494972, 0.0038140160031616688, -0.03226880356669426, -0.018107285723090172, -0.028863554820418358, -0.011519746854901314, 0.0016249262262135744, -0.013614246621727943, 0.00791180320084095, -0.010817076079547405, 0.02113417536020279, 0.003945766948163509, -0.008168548345565796, 0.0005780987557955086, 0.010458984412252903, 0.006550378166139126, 0.02179630845785141, 0.01709381863474846, -0.00431061489507556, 0.009594159200787544, 0.0021671312861144543, -0.022390875965356827, -0.01664789207279682, -0.01034412533044815, 0.003925497643649578, -0.019134266301989555, 0.018634289503097534, -0.013276424258947372, -0.03289039805531502, 0.0003762498090509325, 0.03764693811535835, 0.005550423637032509, -0.00921579822897911, 0.015066883526742458, -0.0009501258027739823, 0.009729287587106228, -0.014566906727850437, -0.010026572272181511, -0.005185575224459171, 0.007992880418896675, -0.00020121553097851574, -0.0004051758733112365, 0.01145893894135952, -0.006351063027977943, -0.002371513983234763, 0.0009264781838282943, 0.013614246621727943, 0.007242914289236069, -0.0013090622378513217, -0.029025709256529808, 0.008573935367166996, 0.0002563228190410882, 0.0007356085116043687, -0.022553030401468277, 0.017188409343361855, -0.02326921373605728, 0.004165351390838623, -0.005641635973006487, 0.015526321716606617, 0.007026708219200373, 0.0044389874674379826, 0.029025709256529808, -0.003786990186199546, -0.01741812750697136, 0.022350337356328964, -0.007371286861598492, -0.0190667025744915, 0.007188862655311823, 0.006621321197599173, -0.017391102388501167, 0.005374756176024675, 0.013371014967560768, 0.03507949039340019, 0.012681856751441956, -0.023498933762311935, -0.02486373670399189, 0.012566996738314629, 0.006979412864893675, -0.005986214615404606, 0.028620323166251183, 0.015310116112232208, -0.018674828112125397, 0.035268668085336685, -0.003173842327669263, 0.01616142876446247, -0.0028478438034653664, -0.0028782477602362633, 0.006172017194330692, 0.008776628412306309, -0.012884549796581268, 0.005185575224459171, -0.014391238801181316, 0.009222554042935371, 0.019580192863941193, -0.024755632504820824, -0.014675009064376354, -0.0023208404891192913, 0.021377407014369965, 0.009587402455508709, -0.0028546000830829144, 0.006938874255865812], "74d3384a-7128-4168-9f8d-47d5cb6dee60": [-0.034860312938690186, -0.013328095898032188, -0.006329406518489122, 0.01673928275704384, -0.004228000529110432, -0.03889040648937225, -3.615165041992441e-05, 0.019876999780535698, -0.012205427512526512, 0.05371539294719696, -0.006153089925646782, 0.004735360387712717, 0.025735028088092804, -0.010118414647877216, 0.008981351740658283, 0.03324827551841736, -0.03704807907342911, 0.017789985984563828, 0.008355248719453812, -0.006869151256978512, 0.04792933166027069, 0.005811251699924469, -0.04723845794796944, 0.02438206784427166, 0.021474642679095268, -0.029376506805419922, -0.023201826959848404, -0.01196793932467699, -0.04965651407837868, 0.012745171785354614, -0.02294274978339672, 0.022928355261683464, -0.0032924427650868893, 0.006721620913594961, 0.01268040295690298, -0.03422701358795166, -0.012716385535895824, 0.01943081058561802, -0.051268551498651505, -0.01684003509581089, 0.012982659973204136, 0.015947656705975533, 0.0036486743483692408, -0.011456981301307678, -0.005616943351924419, 0.029707549139857292, -0.04254627600312233, 0.010823681019246578, 0.014796202071011066, -0.012997052632272243, 0.020452726632356644, 0.019229305908083916, -0.0022867184597998857, 0.03923584148287773, 0.005329079460352659, 0.0028480528853833675, 0.00990251637995243, 0.06557538360357285, 0.02128753252327442, -0.05601830407977104, 0.0033716054167598486, -0.0692024677991867, 0.0008856311324052513, -0.001267500570975244, 0.011061168275773525, 0.01584690436720848, -0.01799149066209793, 0.013112198561429977, -0.018408892676234245, 0.034313369542360306, -0.012241410091519356, 0.0029542027041316032, -0.010032054968178272, 0.01750212162733078, 0.05250636488199234, -0.017761198803782463, 0.038113173097372055, 0.02255413308739662, -0.006174679379910231, -0.045165836811065674, 0.028469735756516457, -0.011773631907999516, -0.008607129566371441, -0.0275773573666811, 0.064711794257164, 0.021776899695396423, -0.03500424325466156, -0.03969642519950867, -0.04153875261545181, -0.012723581865429878, -0.009485113434493542, 0.014285244047641754, 0.00619267113506794, 0.019603528082370758, 0.006725219078361988, 0.006793587002903223, 0.006739612203091383, 0.009967286139726639, -0.02102845348417759, -0.046202149242162704, -0.02933332696557045, 0.007693161256611347, 0.0003233970492146909, 0.005408241879194975, 0.0030279678758233786, 0.014263654127717018, 0.032931625843048096, 0.022367021068930626, -0.009434737265110016, 0.025576703250408173, -0.005991166457533836, -0.015861298888921738, 0.0477566123008728, 0.011356228962540627, -0.04081909358501434, -0.03278769180178642, -0.02541837841272354, 0.01755969412624836, -0.016163555905222893, -0.022913962602615356, 0.034313369542360306, -0.02449721284210682, 0.03972521051764488, 0.011629699729382992, 0.007153416518121958, -0.007243374362587929, -0.01040627807378769, 0.031060509383678436, 0.039869144558906555, 0.018365712836384773, 0.016710497438907623, 0.008607129566371441, 0.03730715438723564, 0.010190380737185478, -0.005037617404013872, -0.004166829399764538, 0.02574942074716091, 0.09620410203933716, -0.01816420815885067, -0.005145566537976265, -0.027188740670681, 0.008563949726521969, -0.01660974510014057, 0.004051683936268091, 0.0065992786549031734, -0.016163555905222893, -0.0242669228464365, 0.06655412167310715, -0.052247289568185806, -0.0009580468758940697, -0.0025907745584845543, 0.01931566372513771, -0.03192410245537758, -0.007750734221190214, 0.04401438310742378, 0.008873403072357178, -0.002887634327635169, 0.046749088913202286, -0.015098459087312222, 0.04283414036035538, 0.007383707910776138, -0.044273462146520615, 0.018063455820083618, 0.02877199277281761, 0.017041539773344994, -0.005865226034075022, -0.007750734221190214, 0.022798817604780197, 0.0012414128286764026, 0.014479551464319229, 0.027534177526831627, -0.012558060698211193, 0.02344651147723198, 0.0017001958331093192, -0.007642785087227821, 0.0036270844284445047, 0.03131958842277527, -0.004652599338442087, 0.0049476600252091885, 0.012759565375745296, -0.02173371985554695, 0.022582918405532837, 0.035033032298088074, 0.015112851746380329, 0.022280661389231682, 0.023187432438135147, 0.0246555395424366, 0.002087012864649296, -0.02333136461675167, 0.007200194522738457, -0.006721620913594961, -0.013241737149655819, 0.013637550175189972, -0.0052607120014727116, -0.044820401817560196, -0.0037134436424821615, 0.021273138001561165, -0.031722597777843475, -0.00444389833137393, -0.006894339341670275, -0.02773568220436573, -0.01980503275990486, -0.010910039767622948, 0.01411252561956644, -0.011629699729382992, 0.01876872219145298, -0.004857702646404505, -0.030283277854323387, 0.03978278487920761, -0.003717042040079832, 0.07968071103096008, -0.039811570197343826, 0.02217990905046463, -0.009924106299877167, -0.0008901290129870176, 0.003438173793256283, 0.013212950900197029, 0.018811902031302452, 0.0015463685849681497, -0.0017127898754552007, 0.012205427512526512, -0.037451088428497314, -0.03342099487781525, -0.017070326954126358, -0.028656845912337303, 0.023086680099368095, -0.010175987146794796, -0.012881907634437084, 0.012579650618135929, -0.025058548897504807, -0.01378867868334055, 0.011550537310540676, 0.022654885426163673, -0.018639184534549713, 0.013457635417580605, 0.055931948125362396, 0.014493945054709911, -0.006775595247745514, -0.005419036839157343, 0.024526000022888184, -0.0029398095794022083, 0.028037939220666885, -0.008556753396987915, -0.027001628652215004, -0.03791166841983795, 0.011140330694615841, 0.0038249909412115812, 0.03457244858145714, 0.01738697662949562, 0.0006040643202140927, -0.008707881905138493, -0.014206080697476864, -0.019733067601919174, 0.01650899276137352, -0.018999014049768448, 0.05449262633919716, 0.035033032298088074, -0.013990183360874653, -0.005383053794503212, -0.0004916174802929163, 0.008686291985213757, 0.017084719613194466, -0.006415765732526779, -0.0027293090242892504, 0.005685311276465654, -0.0006377983372658491, 0.025735028088092804, -0.0026555440854281187, -0.015760546550154686, 0.013551190495491028, 0.03408307954668999, -0.028138691559433937, -0.01639384590089321, 0.023259399458765984, -0.010442261584103107, -0.00806018803268671, -0.007013082969933748, -0.008405624888837337, -0.010852467268705368, 0.001650719321332872, -0.04392802342772484, -0.04649001359939575, 0.06707227975130081, 0.0246555395424366, -0.009643439203500748, 0.03368007019162178, 0.007995418272912502, -0.03186652809381485, -0.02806672640144825, 0.0022543338127434254, 0.009262019768357277, -0.011874384246766567, -0.003731435164809227, 0.054895635694265366, 0.006415765732526779, 0.0016579158836975694, -0.02245338074862957, 0.003143113339319825, 0.00938436109572649, -0.005491002928465605, -0.016552170738577843, -0.0011604510946199298, 0.014824988320469856, -0.01568857952952385, -0.021704934537410736, -0.020942095667123795, 0.03169380873441696, 0.02184886671602726, -0.010478244163095951, 0.04116453230381012, 0.03984035551548004, 0.0025457958690822124, -0.02212233655154705, 0.010485440492630005, 0.019243698567152023, 0.02547595091164112, -0.011824008077383041, -0.022410200908780098, -0.01152894739061594, -0.005185147747397423, -0.05673796683549881, 0.007470067124813795, -0.04588549956679344, 0.025058548897504807, 0.030139345675706863, -0.03218317776918411, 0.009643439203500748, -0.009765781462192535, 0.024857044219970703, -0.025519130751490593, -0.010118414647877216, -0.02652665413916111, 0.008607129566371441, -0.010989202186465263, -0.01414131186902523, -0.011708862148225307, -0.03621327131986618, -0.04718088358640671, -0.027102380990982056, 0.012889103963971138, -0.03572390228509903, -0.01921491138637066, -0.006106311921030283, 0.01273797545582056, -0.02217990905046463, -0.027764467522501945, 0.014623483642935753, 0.028987890109419823, 0.009952892549335957, 0.013349685817956924, 0.0008460498647764325, -0.01866796985268593, 0.054521411657333374, -0.012946676462888718, -0.003029766958206892, -0.028959102928638458, -0.020769376307725906, 0.02730388566851616, 0.012003922834992409, 0.008153744041919708, -0.015343143604695797, -0.06246645748615265, 0.01760287396609783, -0.04274778068065643, 0.014753022231161594, 0.013702319003641605, 0.0041884188540279865, -0.029131822288036346, -0.013464831747114658, -0.0155446482822299, -0.015458288602530956, -0.0194883830845356, -0.02128753252327442, -0.01210467517375946, 0.01816420815885067, -0.0611998550593853, 0.003085540607571602, -0.0052966950461268425, -0.012140657752752304, 0.02477068454027176, -0.007470067124813795, 0.025677455589175224, -0.012773958034813404, -0.0021373890340328217, 0.02956361696124077, 0.00544782355427742, 0.04338108375668526, -0.054895635694265366, -0.03382400423288345, -0.025965319946408272, -0.04706573858857155, -0.011197904124855995, -0.02124435268342495, 0.0013700519921258092, -0.003234870033338666, 0.006624466739594936, -0.0003703998227138072, 0.0016309286002069712, 0.0004664293956011534, -0.016883214935660362, 0.017847558483481407, -0.014753022231161594, -0.007736341096460819, -0.025850173085927963, -0.008024204522371292, -0.0460006445646286, -0.014573107473552227, 0.021445857360959053, -0.00885901041328907, 0.011550537310540676, 0.03716322407126427, -0.022741245105862617, -0.013558387756347656, 0.015328750014305115, 0.017458941787481308, 0.013911020942032337, -0.008700684644281864, 0.05371539294719696, -0.04605821520090103, 0.0027095184195786715, 0.028599273413419724, 0.003116126172244549, -0.001353859668597579, 0.03609812632203102, -0.03319070115685463, 0.02233823575079441, 0.010111217387020588, -0.001853123540058732, 0.024454034864902496, 0.005224728956818581, 0.025893352925777435, 0.0006121604819782078, -0.036414775997400284, 0.013723908923566341, -0.014342816546559334, -0.018739936873316765, 0.008463197387754917, 0.01375989243388176, -0.006228654179722071, -0.014018969610333443, -0.005379455629736185, -0.0006751306937076151, -0.006253842264413834, -0.006851159501820803, -0.034975457936525345, -0.04087666794657707, -0.004929668270051479, 0.027260705828666687, -0.012334966100752354, 0.00212479499168694, 0.0039293416775763035, 0.03319070115685463, -0.027606142684817314, 0.006138696800917387, 0.0022093551233410835, -0.018624791875481606, 0.029189394786953926, 0.014623483642935753, 0.002902027452364564, -0.05811971053481102, 0.0155446482822299, 0.023705588653683662, 0.040099434554576874, -0.0033104342874139547, 0.0038825636729598045, -0.015199211426079273, 0.01732940413057804, 0.009441934525966644, 0.016523385420441628, 0.01678246259689331, -0.007462870329618454, -0.003071147482842207, -0.031175654381513596, 0.009650635533034801, 0.00888779666274786, -0.008067384362220764, -0.005926397163420916, -0.010449457913637161, 0.03621327131986618, 0.019085373729467392, 0.006984296720474958, -0.02179129421710968, 0.031780168414115906, 0.034860312938690186, -0.0065992786549031734, 0.018034670501947403, 0.0001486546971136704, -0.0242669228464365, -0.05230486020445824, 0.05023224279284477, -0.010399081744253635, 0.0005401945090852678, 0.009729797951877117, 0.042690210044384, 0.036414775997400284, 0.015645399689674377, 0.013529600575566292, -0.00022804214677307755, 0.016983967274427414, -0.010996399447321892, 0.004148837644606829, -0.029966626316308975, 0.024338888004422188, -0.04021457955241203, -0.03609812632203102, 0.05722733214497566, -0.008362445048987865, 0.001822537975385785, 0.006210662424564362, -0.022410200908780098, -0.010075234808027744, 0.021157993003726006, -0.03946613520383835, 0.016638530418276787, 0.013205754570662975, 0.005832841154187918, -0.007815503515303135, 0.002194961765781045, 0.04594307020306587, 0.004954856354743242, -0.008866206742823124, -0.00777232414111495, -0.015933264046907425, 0.01590447686612606, 0.0001841878838604316, -0.002794078551232815, -0.021532215178012848, -0.0006841264548711479, -0.0018999014282599092, -0.002097807824611664, -0.017358189448714256, -0.019344450905919075, 0.00044079151120968163, 0.010334311984479427, 0.036731425672769547, 0.0016732086660340428, -0.027822041884064674, 0.010341509245336056, 0.021100420504808426, -0.009146873839199543, 0.003175498219206929, 0.049224719405174255, -0.008549556136131287, -0.022107943892478943, -0.015501468442380428, -0.005606148391962051, 0.02251095324754715, 0.006707227788865566, -0.005789661779999733, -0.004915275145322084, -0.02167614735662937, 0.021489037200808525, -0.02266927808523178, 0.00960745569318533, 0.00866470206528902, -0.027188740670681, -0.003101733047515154, -0.003986914176493883, -0.002419855445623398, -0.033161915838718414, -0.021589789539575577, -0.008441607467830181, 0.01070133876055479, 0.005886815953999758, -0.015616614371538162, 0.0165665652602911, -0.07104479521512985, 0.003265455598011613, 0.011449784971773624, 0.03681778535246849, -0.004217205569148064, -0.00792345218360424, 0.0372207947075367, 0.009621849283576012, -0.0007547430577687919, 0.014069345779716969, 0.007441280409693718, -0.02982269413769245, -0.03704807907342911, 0.02042393945157528, 0.013925413601100445, -0.006548902485519648, 0.05129733681678772, -0.03966763988137245, 0.03224075213074684, 0.0023209021892398596, 0.0018891064682975411, -0.011600913479924202, -0.00993130262941122, 0.02713116817176342, 0.003860973985865712, 0.008067384362220764, -0.02900228276848793, 0.005980371497571468, -0.028253836557269096, 0.014191688038408756, -0.013378472067415714, -0.020495906472206116, 0.001950277597643435, 0.027965974062681198, 0.027778862044215202, 0.013637550175189972, -0.01980503275990486, -0.020495906472206116, -0.04369773343205452, 0.03724958375096321, -0.0200785044580698, 0.012630026787519455, -0.008355248719453812, 0.005059207323938608, 0.029621189460158348, -0.02069741114974022, 0.024310102686285973, -0.008894992992281914, 0.008391231298446655, 0.014062149450182915, 0.0010794894769787788, 0.04369773343205452, 0.03169380873441696, -0.02212233655154705, 0.03935099020600319, 0.003193489508703351, 0.034917883574962616, -0.00786587968468666, -0.014371602796018124, 0.027591750025749207, -0.06494208425283432, -0.008405624888837337, -0.010255149565637112, 0.03537846729159355, -0.018308140337467194, 0.005113181658089161, -0.03529210761189461, -0.009974482469260693, 0.02956361696124077, -0.03258618712425232, 0.028973497450351715, -0.008686291985213757, -0.004994438029825687, -0.01623552106320858, 0.013414455577731133, -0.011241083033382893, 0.0281674787402153, -0.007074254099279642, -0.012464504688978195, 0.012392538599669933, 0.025029761716723442, 0.010607782751321793, 0.009211643598973751, 0.014724235981702805, -0.035522397607564926, 0.0018306341953575611, -0.004728163592517376, 0.01689760759472847, -0.0062826285138726234, -0.006419363897293806, -0.02108602784574032, 0.006117106880992651, 0.00020667724311351776, -0.03514817729592323, 0.015458288602530956, -0.04882171005010605, 0.03621327131986618, 0.025389591231942177, 0.03241347149014473, 0.020179256796836853, -0.026382721960544586, 0.01340006198734045, 0.0011361626675352454, 0.04556884616613388, 0.003164703259244561, -0.012205427512526512, -0.006919527426362038, 0.013795875012874603, 0.02091330848634243, -0.03247104212641716, -0.0007466468377970159, 0.013781481422483921, -0.008607129566371441, -0.006847561337053776, -0.012486094608902931, -0.0391782708466053, -0.020956488326191902, 0.015890084207057953, -0.03966763988137245, -0.02052469179034233, 0.030225703492760658, 0.0013376673450693488, -0.030887791886925697, -0.04461889714002609, -0.004350342322140932, 0.02140267752110958, -0.0013412656262516975, 0.018034670501947403, -0.009866533800959587, 0.015559040941298008, -0.010168790817260742, -0.014558713883161545, -0.00587602099403739, 0.0059875682927668095, -0.022928355261683464, 0.008815830573439598, -0.009017335250973701, -0.005699704401195049, 0.02812429890036583, 0.0366450697183609, -0.004094863310456276, -0.03180895373225212, -0.012126265093684196, -0.020222434774041176, 0.00700228800997138, -0.00393293984234333, -0.011694468557834625, -0.006214261054992676, -0.004720967262983322, -0.012083085253834724, -0.052362434566020966, 0.020567871630191803, 0.005480207968503237, 0.036961719393730164, -0.008643112145364285, 0.029793908819556236, -0.022424593567848206, -0.0341118648648262, 0.005595353431999683, 0.016480205580592155, 0.012003922834992409, -0.006019952706992626, -0.00913967750966549, 0.011485767550766468, 0.030686287209391594, -0.024943402037024498, -0.0033140326850116253, 0.004998036194592714, 0.0315786637365818, -0.014026165939867496, 0.002016846090555191, 0.0021211968269199133, 0.030974149703979492, 0.05221850425004959, -0.004343145992606878, -0.03356492519378662, 0.029966626316308975, -0.0399555042386055, 0.010233559645712376, -0.015458288602530956, 0.008643112145364285, -0.007685964927077293, -0.010168790817260742, 0.009938499890267849, 0.003731435164809227, -0.030139345675706863, -0.00932678859680891, -0.010283935815095901, 0.016883214935660362, 0.0062358505092561245, 0.02157539501786232, -0.012874710373580456, 0.013911020942032337, 0.039149485528469086, -0.008930975571274757, 0.023072287440299988, -0.020826948806643486, -0.004728163592517376, 0.001110074925236404, 0.014249260537326336, 0.023129859939217567, -0.005411840509623289, 0.012140657752752304, 0.030312063172459602, 0.04525219649076462, 0.02015046961605549, -0.013543994165956974, 0.011881580576300621, -0.011385015211999416, -0.0465763695538044, -0.004116453230381012, -0.0007542932289652526, 0.04513705149292946, -0.018524039536714554, -0.015285570174455643, -0.057371266186237335, 0.0346875935792923, 0.006527313031256199, -0.008736668154597282, -0.019027801230549812, 0.013846251182258129, 0.01853843219578266, -0.006545304320752621, -0.0014330222038552165, 0.021273138001561165, -0.012011119164526463, 2.721213058975991e-05, -0.005195942707359791, -0.0014806996332481503, 0.027433425188064575, 0.01040627807378769, 0.019934572279453278, -0.014292440377175808, -0.0027778861112892628, -0.004328752867877483, -0.014983313158154488, 0.03471637889742851, 0.028354588896036148, 0.018250567838549614, -0.028599273413419724, 0.006117106880992651, -0.02146025002002716, -0.03296041116118431, 0.011680075898766518, 0.00467778742313385, 0.01684003509581089, 0.006883544381707907, 0.021877652034163475, -0.021431462839245796, -0.019416416063904762, 0.011456981301307678, 0.032931625843048096, 0.03186652809381485, 0.006419363897293806, -0.01904219388961792, -0.017084719613194466, 0.0010426068911328912, 0.0018639183836057782, 0.013752695173025131, 0.007981025613844395, 0.011737648397684097, 0.0009607456158846617, -0.0066532534547150135, -0.0001305507612414658, -0.009808960370719433, -0.04038729891180992, -0.01866796985268593, 0.024338888004422188, -0.029851481318473816, 0.02091330848634243, -0.012370948679745197, 0.01353679783642292, -0.02911742776632309, -0.003972521051764488, -0.0006063132314011455, -0.03676021471619606, 0.01947399042546749, 0.002391069196164608, 0.021114813163876534, 0.01738697662949562, 0.003958127927035093, -0.0029919848311692476, 0.0059695765376091, 0.019574742764234543, 0.03526332229375839, -0.013421651907265186, 0.056047093123197556, 0.028196264058351517, 0.013176967389881611, 0.011924760416150093, 0.005235523916780949, 0.009643439203500748, 0.005807653069496155, -0.008808634243905544, 0.01290349755436182, -0.01947399042546749, -0.0005370459984987974, 0.0009994272841140628, -0.0035641142167150974, 0.019301271066069603, 0.017631661146879196, 0.00834085512906313, 0.010478244163095951, 0.016278700903058052, 0.019992144778370857, 0.02652665413916111, 0.05328359827399254, -0.010744518600404263, -0.013522404246032238, -0.01350801158696413, 0.010888449847698212, -0.0025727832689881325, -0.03480273857712746, 0.02728949300944805, -0.0036216871812939644, -0.0055557722225785255, -0.004674189258366823, 0.0012666009133681655, -0.010499834083020687, 0.016696102917194366, 0.030513567849993706, 0.007693161256611347, -0.016264308243989944, 0.013723908923566341, -0.009650635533034801, 0.020438333973288536, 0.00849917996674776, -0.038228318095207214, -0.018092243000864983, 0.032355897128582, 0.012234213761985302, 0.018250567838549614, 0.005782464984804392, 0.01849525235593319, 0.025303233414888382, -0.03385278955101967, -0.013083412311971188, 0.00029123725835233927, 0.02697284333407879, -0.02311546728014946, 0.006113508716225624, -0.017545301467180252, 0.03224075213074684, -0.027663715183734894, 0.01827935501933098, 0.03065750002861023, 0.001781157567165792, -0.010161593556404114, 0.025461558252573013, -0.024410855025053024, 0.013464831747114658, -0.021316317841410637, 0.01601962372660637, -0.03382400423288345, -0.013932610861957073, -0.00946352444589138, 0.009952892549335957, -0.015702972188591957, -0.04231598600745201, -0.0038825636729598045, -0.06361790746450424, 0.007599605713039637, -0.0007785817724652588, 0.011154724285006523, -0.03180895373225212, 0.009240429848432541, 0.007390904240310192, -0.008715078234672546, -0.006088320631533861, -0.035579971969127655, -0.024785077199339867, 0.0016471209237352014, -0.044388607144355774, -0.014292440377175808, 0.024943402037024498, -0.01419888436794281, 0.014371602796018124, 0.0038321875035762787, -0.02471311204135418, -0.02015046961605549, -0.0076499818824231625, 0.012119067832827568, 0.0069375187158584595, -0.02416617050766945, -0.00806018803268671, 0.027390245348215103, 0.006815176457166672, 0.025072941556572914, 0.02570624276995659, -0.00010716181714087725, -0.0010758911957964301, 0.005983969662338495, -0.013731105253100395, 0.004242393653839827, -0.020236829295754433, -0.01362315658479929, 0.00304056191816926, 0.0029038265347480774, -0.017818773165345192, 0.014249260537326336, -0.012227017432451248, 0.004130846355110407, -0.0399555042386055, -0.021229958161711693, -0.014695449732244015, -0.014896954409778118, 0.0032888446003198624, -0.026210004463791847, -0.023590441793203354, -0.010888449847698212, -0.026109252125024796, -0.0076715718023478985, -0.02751978486776352, 0.013666336424648762, 0.009751387871801853, -0.023432116955518723, 0.0032816478051245213, -0.03114686906337738, 0.00968661904335022, 0.005534182768315077, -0.010017662309110165, -0.010276739485561848, -0.022151123732328415, 0.011169117875397205, -0.00834085512906313, -0.015645399689674377, 0.009708208031952381, 0.000527150696143508, -0.00063105154549703, 0.010233559645712376, -0.01777559332549572, -0.019387630745768547, -0.004461889620870352, -0.04162511229515076, -0.016321880742907524, -0.0080889742821455, -0.013644746504724026, 0.02685769647359848, 0.01964670792222023, -0.0037530248519033194, 0.016005229204893112, 0.005483806133270264, 0.014666663482785225, 0.002574582351371646, -0.026987235993146896, 0.0007034672889858484, -0.008592735975980759, -0.004623813088983297, -0.02482825703918934, 0.01353679783642292, 0.04237356036901474, -0.0170559324324131, 0.019330058246850967, 0.05244879424571991, -0.014868168160319328, -0.011852794326841831, 0.0017334801377728581, -0.01092443335801363, -0.01378867868334055, 0.007477263454347849, -0.0034795543178915977, -0.015875691547989845, 0.0003330674662720412, -0.01650899276137352, -0.03422701358795166, -0.018941441550850868, -0.008139350451529026, -0.03054235503077507, -0.0010003268253058195, -0.009988876059651375, 0.01158651988953352, -0.06776314973831177, -0.02736145816743374, -0.012896300293505192, -0.0017046937718987465, -0.006178278010338545, -0.009218839928507805, 0.005814849864691496, 0.022050371393561363, -0.023691194131970406, 0.009722601622343063, -0.00608112383633852, 0.010557406581938267, -0.010298329405486584, -0.006045140791684389, -0.020898915827274323, 0.0006252042949199677, 0.020625444129109383, -0.007139023393392563, -0.013464831747114658, -0.012968266382813454, 0.0038681705482304096, -0.019876999780535698, 0.018250567838549614, 0.00043269534944556653, -0.040531229227781296, 0.027476605027914047, 0.012565257027745247, -0.015299963764846325, -0.021935224533081055, -0.019891392439603806, -0.009449130855500698, -0.00501962611451745, 0.004317957907915115, -0.004638206213712692, 0.012558060698211193, 0.01606280356645584, -0.015645399689674377, -0.013227343559265137, 0.0493110790848732, 0.007243374362587929, 0.013162574730813503, -0.00929800234735012, -0.00748446024954319, -0.01499770674854517, 0.002646548207849264, -0.006415765732526779, 0.01282433420419693, -0.04815962165594101, 0.0021643764339387417, 0.022424593567848206, -0.005645729601383209, 0.014824988320469856, 0.014472355134785175, -0.016249913722276688, -0.0024648341350257397, 0.01650899276137352, 0.0255335234105587, 0.0010839872993528843, 0.014681056141853333, 0.019445203244686127, 0.0230003222823143, 0.01381746493279934, -0.006077525671571493, -0.026440294459462166, -0.012119067832827568, -0.01331370323896408, 0.002288517542183399, 0.01740136928856373, 0.030945364385843277, -0.005804054904729128, 0.0001205429871333763, -0.0031395151745527983, -0.005692507605999708, 0.022985927760601044, 0.014148508198559284, 0.016523385420441628, 0.036242060363292694, 0.016149161383509636, -0.0012917889980599284, -0.0024954196996986866, -0.013918217271566391, -0.016264308243989944, -0.009506703354418278, 0.005890414118766785, -0.02746221050620079, -0.022712457925081253, -0.016552170738577843, -0.02911742776632309, -0.0019700683187693357, -0.0027113177347928286, -0.00041515365592204034, 0.03362249955534935, 0.015717366710305214, 0.004069675225764513, -0.027375852689146996, 0.0500883087515831, -0.027001628652215004, -0.019891392439603806, -0.010478244163095951, -0.011816810816526413, 0.005141967907547951, -0.016321880742907524, 0.016940787434577942, 0.0052966950461268425, -0.004177624359726906, 0.0045734369195997715, -0.011917563155293465, -0.013090608641505241, -0.0019412818364799023, -0.02410859800875187, -0.017732413485646248, 0.018121030181646347, 0.0019376835552975535, -0.0008869805024005473, -0.011600913479924202, 0.005753678735345602, 0.014594697393476963, -0.01794831082224846, 0.017919525504112244, -0.010888449847698212, -0.01270918920636177, -0.007128228433430195, 0.00277968542650342, 0.011788024567067623, -0.007520443294197321, 0.0012342162663117051, -0.012234213761985302, 0.0033356223721057177, -0.011255476623773575, 0.022654885426163673, -0.01866796985268593, -0.013112198561429977, -0.001123568625189364, 0.0066532534547150135, 0.0165665652602911, -0.024194955825805664, -0.018941441550850868, -0.0026537447702139616, 0.03350735083222389, -0.017746806144714355, -0.024943402037024498, -0.010168790817260742, -0.01241412851959467, 0.003107130527496338, -0.002022243570536375, 0.021589789539575577, -0.009074907749891281, -0.019171733409166336, 0.001858521020039916, 0.0035101398825645447, -0.0006607375107705593, 0.02597971260547638, 0.02812429890036583, 0.03886162117123604, -0.007470067124813795, -0.020611051470041275, -0.0006040643202140927, 0.005825644824653864, -0.0135943703353405, -0.010111217387020588, 0.009377164766192436, 0.0014887958532199264, 0.018308140337467194, -0.0016741082072257996, 0.012313376180827618, 0.002421654760837555, -0.004094863310456276, -0.00024603362544439733, -0.026670586317777634, -0.007052664179354906, -0.01853843219578266, -0.02882956527173519, -0.012241410091519356, -0.016480205580592155, 0.002457637572661042, -0.006419363897293806, -0.01607719622552395, -0.024511607363820076, 0.004148837644606829, 0.0033212292473763227, -0.04574156552553177, 0.02988026849925518, 0.003691853955388069, 0.009564276784658432, 0.009751387871801853, 0.038170747458934784, 0.004066077060997486, 0.0005240021855570376, -0.012392538599669933, 0.01612037606537342, 0.03842982277274132, -0.025288838893175125, -0.029016675427556038, 0.00817533303052187, 0.013421651907265186, 0.025878960266709328, 0.020985275506973267, 0.021920831874012947, 0.006858356297016144, -0.011068365536630154, 0.0135943703353405, -0.01914294622838497, 0.01254366710782051, -0.0022093551233410835, 0.008808634243905544, -0.014753022231161594, 0.0016570163425058126, 0.01699835993349552, 0.024079810827970505, -0.04398559778928757, 0.005541379097849131, -0.01180961448699236, 0.003317630849778652, 0.001334069063887, 0.004382727202028036, -0.004371932242065668, 0.004559043794870377, -0.009722601622343063, -0.012673205696046352, -0.0315786637365818, 0.015156031586229801, 0.012025512754917145, 0.026181217283010483, -0.0021571796387434006, 0.038544971495866776, 0.017761198803782463, 0.013659140095114708, -0.01904219388961792, 0.012450111098587513, -0.0027598945889621973, -0.017588481307029724, 0.0009940298041328788, 0.0010309123899787664, 0.007268562447279692, -0.021201172843575478, -0.0018153414130210876, 0.01843767985701561, -0.0035569176543504, 0.004353940952569246, -0.008297675289213657, -0.007966632023453712, 0.005483806133270264, -0.005401045549660921, -0.007966632023453712, 0.009441934525966644, 0.016883214935660362, -0.014134115539491177, 0.016710497438907623, -0.00687994621694088, 0.013241737149655819, -0.004364735446870327, 0.03284526616334915, -0.01496892049908638, 0.0021481839939951897, -0.012068691663444042, -0.0187111496925354, 0.04084787890315056, -0.011478571221232414, -0.007973828352987766, -0.009981678798794746, -0.03016813099384308, 0.002196761080995202, 0.021258745342493057, -0.03301798552274704, 0.025663062930107117, -0.005854431074112654, -0.013486421667039394, 0.009369968436658382, 0.020956488326191902, 0.002794078551232815, 0.01678246259689331, -0.011226690374314785, -0.006876347586512566, 0.010744518600404263, 0.0022651287727057934, -0.01098200585693121, -3.592675784602761e-05, -0.027879614382982254, 0.0019232903141528368, 0.0033859985414892435, -0.034198224544525146, -0.0006085622007958591, -0.003803401021286845, 0.0065884836949408054, 0.007477263454347849, 0.027332672849297523, -0.019416416063904762, -0.025720635429024696, 0.029736336320638657, 0.006520116236060858, 0.01623552106320858, 0.0391782708466053, 0.014278046786785126, 0.032557401806116104, 0.004109256435185671, -0.00665685161948204, -0.012615633197128773, 0.003337421454489231, -0.0036684649530798197, 0.0029865873511880636, -0.002774287946522236, 0.011377818882465363, -0.02173371985554695, -0.0004549598088487983, 0.012507684528827667, -0.0002707719395402819, 0.02818187139928341, -0.002693326212465763, 0.00264115072786808, -0.0165665652602911, -0.021157993003726006, 0.005714097525924444, -0.022151123732328415, -0.0038213925436139107, 0.002911023097112775, 0.006736014038324356, -0.012522077187895775, -0.013781481422483921, 0.014839381910860538, -0.03321949020028114, 0.0014672060497105122, 0.015415109694004059, 0.02410859800875187, 0.023849520832300186, -0.021330710500478745, -0.03321949020028114, 0.007714751176536083, 0.017070326954126358, 0.0007007685489952564, 0.010636569000780582, -0.009888123720884323, 0.0017406767001375556, 0.001809044391848147, -0.025346411392092705, -0.00016597150533925742, -0.013932610861957073, -0.0004628310853149742, 0.010003268718719482, -0.002713116817176342, 0.0024558384902775288, 0.019603528082370758, 0.008456001058220863, 0.00012818937830161303, 0.027980366721749306, -0.00836964137852192, 0.030283277854323387, 0.008477590046823025, 0.03192410245537758, -0.010744518600404263, -0.011169117875397205, 0.021992798894643784, -0.00866470206528902, 0.0059875682927668095, -0.03339220583438873, -0.013112198561429977, 0.013227343559265137, 0.0029452070593833923, -0.007837093435227871, -0.0025961720384657383, -0.032442256808280945, -0.019776247441768646, 0.008398427627980709, 0.025159301236271858, 0.008830223232507706, -0.016811249777674675, -0.0008577443077228963, -0.0015958452131599188, -0.022525345906615257, 0.01293228380382061, -0.01920051872730255, 0.0030945364851504564, -0.011190706863999367, -0.01976185292005539, 0.016753675416111946, -0.006494928151369095, 0.029678763821721077, -0.022525345906615257, 0.014522731304168701, 0.006530911196023226, -0.0038789655081927776, 0.006473338231444359, -0.0036612683907151222, -0.019747460260987282, -0.03506181761622429, -0.021474642679095268, -0.005541379097849131, -0.021042848005890846, 0.004868497606366873, -0.004375530406832695, 0.0048720957711339, -0.019934572279453278, -0.018869474530220032, 0.0039077517576515675, 0.031118081882596016, -0.018077850341796875, -0.020337581634521484, -0.0012306179851293564, -0.0032060835510492325, -0.038199532777071, 0.0048900870606303215, -0.009420344606041908, 0.00255299243144691, 0.002078017219901085, -0.004846907686442137, 0.003301438642665744, 0.019272485747933388, 0.009974482469260693, 0.025000976398587227, -0.016005229204893112, -0.0372207947075367, 0.001473503070883453, -0.01210467517375946, 0.026339542120695114, -0.03054235503077507, -0.03203924745321274, -0.004253188613802195, -0.006448150146752596, 0.05023224279284477, -0.027534177526831627, -0.01771802082657814, -0.012320572510361671, 0.0035803066566586494, -0.00869348831474781, 0.008103367872536182, -0.039264630526304245, 0.00335721205919981, -0.012083085253834724, -0.01433562021702528, 0.0031125277746468782, -0.032010458409786224, 0.007272160612046719, 0.00573568744584918, 0.006271833553910255, 0.007077852264046669, 0.01827935501933098, -0.0001498916099080816, 0.005519789177924395, 0.03347856551408768, -0.022467773407697678, -0.029592404142022133, -0.019286878407001495, -0.013637550175189972, -0.010442261584103107, 0.0073189386166632175, 0.013709516264498234, -0.027476605027914047, 0.006001961417496204, -0.011190706863999367, 0.00033756534685380757, 0.016796855255961418, -0.01502649299800396, 0.00484330952167511, 0.009485113434493542, 0.009924106299877167, 0.015429502353072166, -0.0037386317271739244, 0.01557343453168869, 0.0002247811935376376, -0.012925086542963982, 0.03676021471619606, 0.031002936884760857, 0.012745171785354614, 0.005465814843773842, 0.007945042103528976, -0.029793908819556236, 0.0042244018986821175, 0.026512261480093002, -0.013220147229731083, -0.016868822276592255, -0.0006440953584387898, 0.028541700914502144, -0.0062250555492937565, -0.0004569838638417423, -0.009499507024884224, 0.012147854082286358, -0.03707686439156532, 0.009405951015651226, 0.024367675185203552, 0.0045374538749456406, -0.009528293274343014, -0.0011370622087270021, -0.0015139839379116893, 0.0016075397143140435, -0.009010138921439648, 0.005706900730729103, -0.0021427865140140057, 0.02576381526887417, 0.006552501115947962, -0.008643112145364285, 0.03658749535679817, -0.02069741114974022, 0.02917500212788582, 0.005469413008540869, 0.009830550290644169, 0.024900222197175026, -0.005955183412879705, -0.008160940371453762, -0.01695518009364605, -0.014090935699641705, 0.020294401794672012, -0.008427213877439499, 0.0011604510946199298, -0.011399408802390099, 0.017070326954126358, 0.013292113319039345, -0.014623483642935753, 0.006189072970300913, -0.003368007019162178, 0.020395154133439064, -0.005483806133270264, -0.012968266382813454, 0.027778862044215202, -0.0025709839537739754, -0.0069015356712043285, -0.007880273275077343, -0.004238795023411512, -0.00082401029067114, -0.002594372956082225, -0.004231598693877459, 0.010636569000780582, 0.0020852137822657824, -0.01015439722687006, -0.0019790639635175467, 0.0015436698449775577, -0.019733067601919174, 0.003634281223639846, 0.004652599338442087, -0.0035191355273127556, 0.0008851813618093729, -0.02701602317392826, -0.005771670024842024, -0.0010255150264129043, 0.013436045497655869, 0.020711803808808327, 0.012997052632272243, 0.0046310098841786385, 0.00780111039057374, 0.02030879445374012, -0.019848212599754333, -0.007585212588310242, 0.007023877929896116, -0.01152894739061594, -0.01650899276137352, -0.014666663482785225, -0.00019565745606087148, 0.04479161649942398, 0.012917890213429928, 0.027562962844967842, 0.006311414763331413, 0.024526000022888184, -0.02327379211783409, 0.009895320050418377, 0.022913962602615356, 0.01925809122622013, -0.008966959081590176, 0.013853447511792183, 0.007099442183971405, -0.017372583970427513, -0.028426555916666985, -0.011953546665608883, 0.01362315658479929, -0.0069699035957455635, 0.02102845348417759, -0.01804906316101551, 0.006419363897293806, 0.04530977085232735, 0.0013664537109434605, -0.006149491295218468, 0.0046310098841786385, 0.004681386053562164, 0.001853123540058732, 0.02025122195482254, 0.016552170738577843, 0.004688582383096218, -0.00023906193382572383, -0.007045467849820852, -0.011694468557834625, -0.012730779126286507, -0.016206735745072365, 0.023950273171067238, 0.01015439722687006, -0.005678114481270313, 0.012277393601834774, -0.009434737265110016, 0.04292050004005432, -0.00100392522290349, -0.01053581666201353, 0.006624466739594936, -0.017861951142549515, -0.003742230124771595, 0.0038573755882680416, 0.021992798894643784, -0.0001957699132617563, 0.003742230124771595, -0.0016327277990058064, -0.02543277107179165, -0.011269870214164257, 0.005321883130818605, 0.014357209205627441, 0.006091918796300888, -0.01668171025812626, -0.0020852137822657824, -0.00993130262941122, 0.010737321339547634, -0.001803646911866963, -0.0039293416775763035, 0.00697350176051259, -0.02762053720653057, -0.0356663316488266, 0.02097088098526001, -0.02570624276995659, 0.0033967935014516115, 0.026339542120695114, 6.086183930165134e-06, 0.025461558252573013, -0.00679718516767025, 0.012745171785354614, 0.0072289807721972466, 0.00010496910545043647, -0.015156031586229801, 0.019876999780535698, 0.012615633197128773, -0.008290478959679604, 0.005113181658089161, 0.003972521051764488, -0.007178604602813721, -0.0036324819084256887, -0.007945042103528976, -0.015933264046907425, 0.011550537310540676, -0.012298982590436935, 0.018811902031302452, -0.00938436109572649, 0.017257437109947205, -0.019344450905919075, 0.005034019239246845, -0.006498526316136122, 0.0010812885593622923, 0.014069345779716969, 0.010974809527397156, 0.02526005357503891, -0.013198557309806347, -0.01040627807378769, 0.030974149703979492, -0.015458288602530956, -0.009693815372884274, 0.007657178211957216, -0.020337581634521484, 0.01958913542330265, 0.00358390505425632, -0.0042567867785692215, 0.017415763810276985, 0.008355248719453812, -0.0018306341953575611, 0.025116121396422386, -0.0014330222038552165, -0.024957796558737755, -0.020611051470041275, 0.01368072908371687, -0.0062358505092561245, -0.0008091672789305449, 0.0014582102885469794, 0.0028282622806727886, -0.019186126068234444, -0.024079810827970505, 0.015156031586229801, 0.010629372671246529, 0.013702319003641605, 0.015314356423914433, -0.0024396460503339767, 0.011190706863999367, -0.01732940413057804, -0.01196793932467699, -0.024137383326888084, -0.004814522806555033, 0.019848212599754333, -0.0027113177347928286, 0.0010390086099505424, -0.0010498034534975886, 0.01787634566426277, -0.017574088647961617, 0.018178602680563927, -0.010715731419622898, 0.026440294459462166, -0.007477263454347849, -0.005501797888427973, 0.025231266394257545, 0.005091591738164425, 0.006462543271481991, 0.001858521020039916, -0.0001947578857652843, -0.0029919848311692476, -0.013407259248197079, 0.033708855509757996, 0.011766434647142887, 0.023403331637382507, 0.0016390248201787472, -0.020323187112808228, -0.013579976744949818, -0.0010659957770258188, 0.006602877285331488, -0.00558815710246563, -0.02042393945157528, -0.005357865709811449, -0.014054952189326286, 0.025188086554408073, 0.013004249893128872, 0.007506049703806639, -0.01433562021702528, -0.0008037698571570218, 0.0178331658244133, 0.016379453241825104, 0.01158651988953352, 0.012759565375745296, -0.010420671664178371, 0.005087993573397398, 0.015127245336771011, -0.009794567711651325, -0.010780501179397106, -0.006214261054992676, -0.0009373566717840731, -0.005080796778202057, 0.013637550175189972, -0.028743205592036247, 0.006847561337053776, 0.005026822444051504, 0.0059875682927668095, -0.014623483642935753, -0.008232906460762024, 0.0033464173320680857, 0.0005649328231811523, 0.04024336487054825, 0.010427867993712425, -0.011097151786088943, 0.0065956804901361465, -0.0008127656183205545, 0.014522731304168701, 0.01075891125947237, -0.004055282101035118, 0.004310761112719774, -0.0020690213423222303, -0.0034993449226021767, 0.014753022231161594, 0.004940463230013847, 0.01238534227013588, -0.015343143604695797, -0.007657178211957216, 0.0016435226425528526, -0.013839054852724075, -0.01722865179181099, -0.027836434543132782, -0.015501468442380428, -0.018682364374399185, -0.02828262373805046, -0.004767745267599821, -0.03537846729159355, -0.016580957919359207, 0.014206080697476864, 0.013889431022107601, -0.010492637753486633, -4.4978725782129914e-05, 0.012997052632272243, -0.02685769647359848, 0.017487728968262672, 0.01672489009797573, 0.0025565908290445805, 0.012946676462888718, -0.003429178148508072, -0.025576703250408173, 0.0049440618604421616, 0.008808634243905544, 0.013875037431716919, -0.007455673534423113, 0.009621849283576012, -0.0076355887576937675, 0.019560348242521286, -0.019402023404836655, -0.00011031032772734761, 0.010967612266540527, 0.00968661904335022, 0.0356663316488266, 0.016005229204893112, -0.02399345114827156, 0.014601893723011017, 0.00954988319426775, -0.02124435268342495, 0.030830219388008118, -0.00047812386765144765, 0.008024204522371292, 0.002947006141766906, -0.004454693291336298, 0.00131787674035877, -0.0034687593579292297, 0.004145239479839802, -2.3009430151432753e-05, 0.02779325470328331, -0.012349358759820461, -0.00863591581583023, 0.01098200585693121, 0.018121030181646347, 0.010046448558568954, 0.027419032528996468, -0.0026555440854281187, 0.017804378643631935, -0.00510598486289382, 0.014796202071011066, -0.006462543271481991, 0.006494928151369095, -0.009888123720884323, 0.020208042114973068, 0.011838400736451149, -0.0019736664835363626, 0.02141707018017769, -0.013450438156723976, -0.01612037606537342, 0.0004538353532552719, -0.002241739770397544, 0.006476936861872673, 0.008110564202070236, -0.00047812386765144765, 0.0097441915422678, 0.012320572510361671, -0.01573175936937332, 0.01505527924746275, 0.01009682472795248, -0.01816420815885067, 0.004987241234630346, -0.013702319003641605, -0.02857048809528351, -0.0020096495281904936, -0.019402023404836655, 0.004778539761900902, 0.013256130740046501, 0.010427867993712425, 0.004317957907915115, -0.0008154643001034856, -0.029621189460158348, 0.03713443502783775, 0.013767088763415813, 0.003035164438188076, -0.0048720957711339, 0.00024940705043263733, 0.01152894739061594, 0.007700358051806688, -0.010262345895171165, -0.00960745569318533, 0.007455673534423113, -0.012953873723745346, -0.013054626062512398, 0.02294274978339672, -0.0011172716040164232, 0.004864898975938559, -0.018725544214248657, 0.004163230769336224, 0.022194303572177887, 0.013450438156723976, -0.018293747678399086, -0.002887634327635169, 0.019128553569316864, 0.008599932305514812, -0.010852467268705368, -0.0023173040244728327, 0.00780111039057374, -0.00025435470161028206, -0.0031521092168986797, 0.008801436983048916, -0.006376184523105621, 0.011608109809458256, 0.01350801158696413, -0.006710825953632593, -0.006793587002903223, -0.007434084080159664, 0.0013268723851069808, 0.015933264046907425, 0.0013043830404058099, -0.002114000264555216, -0.02295714244246483, 3.606731479521841e-05, -0.010499834083020687, 0.010355901904404163, 0.015530254691839218, -0.014321226626634598, -0.010082431137561798, -0.016206735745072365, 0.01639384590089321, -0.021604182198643684, 0.0004502370429690927, 0.020222434774041176, -0.013205754570662975, 0.0011514554498717189, 0.03229832276701927, 0.020898915827274323, -0.01255086436867714, 0.007930649444460869, 0.021935224533081055, 0.012392538599669933, -0.006984296720474958, 0.0007156115607358515, -0.013234540820121765, -0.01563100703060627, -0.02063983865082264, -0.02042393945157528, 0.006674842908978462, -0.02268367074429989, -0.007599605713039637, -0.01660974510014057, 0.01210467517375946, -0.014652269892394543, -0.01580372452735901, 0.0010758911957964301, 0.01580372452735901, -0.0037602216470986605, -0.002502616262063384, -0.017372583970427513, 0.002973993308842182, 0.005721293855458498, -0.006775595247745514, 0.00047002770588733256, -0.013810268603265285, 0.01970428042113781, -0.0015499668661504984, 0.02685769647359848, 0.020870128646492958, 0.007844289764761925, 0.01089564710855484, 0.020884523168206215, -0.008679094724357128, -0.003681058995425701, 0.013436045497655869, 0.0031233227346092463, 0.010435064323246479, 0.014328422956168652, 0.0042244018986821175, 0.0006593881407752633, 0.015918871387839317, 0.005098788533359766, 0.035810261964797974, 0.025231266394257545, 0.005329079460352659, 0.009816157631576061, -0.007549229543656111, -0.008535163477063179, -0.0018207388930022717, -0.005293096415698528, -0.014400389045476913, -0.0015310758026316762, 0.003592900699004531, -0.006678441539406776, 0.006135098170489073, 0.0182217825204134, -0.016437025740742683, 0.02685769647359848, 0.012860317714512348, -0.0042783766984939575, -0.0026591422501951456, 0.008052990771830082, -0.005235523916780949, -0.002016846090555191, 0.005055608693510294, 0.0064805350266397, -0.0006247545243240893, 0.013731105253100395, 3.336859299452044e-05, 0.010989202186465263, -0.012155051343142986, 0.020452726632356644, -0.010492637753486633, 0.013637550175189972, 0.0031826947815716267, -0.003745828289538622, 0.04303564503788948, 0.04392802342772484, 0.008988549001514912, -0.016912002116441727, 0.0015328750014305115, -0.004850505851209164, 0.004836112726479769, 0.011953546665608883, 0.001336767803877592, -0.013695122674107552, -0.006455346941947937, 0.011478571221232414, -0.027778862044215202, -0.0030693484004586935, 0.025332018733024597, 0.007851486094295979, -0.0356663316488266, 0.015487074851989746, 0.0056601231917738914, -0.0017397771589457989, 0.025821387767791748, -0.0019034997094422579, 0.02003532461822033, -0.0007070655701681972, -0.01755969412624836, -0.018034670501947403, 0.028095511719584465, -0.0007088647107593715, 0.009758584201335907, -0.022712457925081253, -0.024612359702587128, -0.0033662079367786646, 0.018236175179481506, 0.016552170738577843, 0.002000653650611639, 0.004634608048945665, -0.0062358505092561245, 0.00011278416059212759, 0.010823681019246578, 0.003551520174369216, 0.018941441550850868, 0.008729470893740654, 0.002574582351371646, -0.0075924089178442955, 0.005347071215510368, -0.014278046786785126, -0.0052751051262021065, -0.00438992353156209, 0.003781811334192753, -0.006566894240677357, 0.01092443335801363, 0.00011919362441403791, -0.020611051470041275, 0.01970428042113781, 0.002585377311334014, 0.004343145992606878, -0.02641150914132595, 0.0015157831367105246, 0.015616614371538162, 0.025994105264544487, -0.007095844019204378, -0.028268231078982353, 0.02196401171386242, -0.005087993573397398, 0.019790640100836754, 0.012860317714512348, 0.005843636114150286, 0.0004111055750399828, 0.02042393945157528, -0.01012561097741127, 0.012975462712347507, -0.011341835372149944, 0.04044486954808235, 0.005152762867510319, 0.0049008820205926895, 8.960605555330403e-06, 0.004508667625486851, -0.016912002116441727, 0.015832511708140373, 0.01914294622838497, -0.017027147114276886, -0.008549556136131287, 0.007837093435227871, 0.01040627807378769, -0.0011523549910634756, 0.006883544381707907, 0.00825449638068676, -0.005350669380277395, -0.011485767550766468, -0.027649322524666786, 0.002256132895126939, 0.008995745331048965, 0.015040886588394642, 0.008024204522371292, 0.0255335234105587, 0.006628065370023251, 0.008902189321815968, -0.007340528070926666, -0.0009994272841140628, -0.007135425228625536, 0.031722597777843475, 0.0015463685849681497, -0.002968596061691642, -0.01040627807378769, -0.01158651988953352, -0.017861951142549515, 0.0019286877941340208, 0.018178602680563927, -0.0035155373625457287, -0.014270850457251072, -0.0016876017907634377, 0.0007704856107011437, -0.024641145020723343, 0.004357539117336273, -0.0017496724613010883, -0.011291459202766418, -0.0012737975921481848, 0.015371929854154587, -0.0010480043711140752, -0.007829897105693817, 0.016307488083839417, -0.00831206887960434, 0.0007668872713111341, 0.017185471951961517, -0.015184817835688591, -0.008052990771830082, 0.010722928680479527, 0.005498199723660946, 0.018365712836384773, 0.01224860642105341, -0.009168463759124279, -0.028109904378652573, 0.0041884188540279865, 0.024094203487038612, 0.016307488083839417, -0.000281566841294989, -0.020280009135603905, -0.008981351740658283, 0.013731105253100395, -0.009456327185034752, 0.016307488083839417, -0.006811578292399645, 0.0030333653558045626, 0.007707554847002029, 0.038113173097372055, -0.017804378643631935, 0.0024342488031834364, -0.016868822276592255, 0.002893031807616353, 0.010744518600404263, -0.011399408802390099, 0.011075561866164207, -0.018250567838549614, 0.0026195610407739878, -0.010276739485561848, 0.008844616822898388, 0.0002865144924726337, -0.017156684771180153, 0.010298329405486584, 0.01353679783642292, 0.006962706800550222, 0.00030293173040263355, -0.005494601093232632, -0.00012695245095528662, -0.02746221050620079, 0.0033518148120492697, -0.001548167783766985, -0.014508337713778019, -0.014882560819387436, 0.010614979080855846, 0.002842655638232827, -0.010636569000780582, -0.014040559530258179, -0.008139350451529026, -0.02141707018017769, 0.002097807824611664, 0.004749753512442112, -0.009571473114192486, 0.013212950900197029, -0.016883214935660362, -0.0037278367672115564, 0.010442261584103107, -0.03224075213074684, -0.001944880117662251, -0.0076715718023478985, -0.0005401945090852678, 0.008585539646446705, 0.025447163730859756, -0.007757931016385555, 0.007736341096460819, -0.010240756906569004, 0.011111544445157051, 0.00891658291220665, 0.01740136928856373, -0.004699377343058586, -0.005289498250931501, -0.02371998131275177, 0.0034003916662186384, 0.00877984706312418, -0.007398101035505533, 0.0010381090687587857, -0.009895320050418377, 0.0031503101345151663, 0.0059875682927668095, 0.003081942442804575, -0.00536506250500679, -0.01601962372660637, 0.006012756377458572, -0.014911347068846226, -0.0016768069472163916, -0.02877199277281761, -0.00850637722760439, -0.004008504096418619, 0.000166421290487051, 0.008491983637213707, -0.008959762752056122, -0.008621522225439548, -0.005606148391962051, 0.004659796133637428, 0.0029290146194398403, -0.005080796778202057, 0.03638599067926407, 0.006728817708790302, -0.009924106299877167, 0.013889431022107601, -0.0119391530752182, 0.0029775917064398527, -0.011672879569232464, 0.005685311276465654, -0.01568857952952385, 0.008873403072357178, 0.013148181140422821, -0.030801432207226753, 0.0022903168573975563, -0.02691527083516121, 0.010435064323246479, -0.02812429890036583, 0.0034507678356021643, 0.010075234808027744, -0.0002723461948335171, 0.013364079408347607, 0.02140267752110958, 0.02085573598742485, 0.0022759234998375177, 0.009449130855500698, -0.006761202123016119, 0.008355248719453812, -0.015271177515387535, -0.003492148360237479, 0.0087222745642066, -0.02085573598742485, 0.0031503101345151663, -0.025519130751490593, 0.004839710891246796, -0.06096956506371498, 0.01213346142321825, 0.0065848855301737785, -0.021057240664958954, -0.011600913479924202, -1.4702421140100341e-05, 0.015832511708140373, -0.0018963031470775604, -0.0032132803462445736, -0.01596205122768879, 0.0026321550831198692, -0.004987241234630346, -0.033046770840883255, -0.01114752795547247, -0.0010614979546517134, -3.5982982808491215e-05, 0.01293228380382061, -0.01816420815885067, 0.004375530406832695, 0.004746155347675085, -0.005221130792051554, -0.010629372671246529, -0.00304056191816926, -0.00814654678106308, -0.012601240538060665, 0.019517168402671814, -0.010147200897336006, 0.027145560830831528, 0.0129610700532794, 0.013126591220498085, 0.0065884836949408054, -0.0036108922213315964, 0.0036198878660798073, -0.0049008820205926895, 0.0031611048616468906, -0.01334248948842287, -0.009218839928507805, 0.009262019768357277, -0.018308140337467194, 0.0025116121396422386, -0.01496892049908638, 0.002144585596397519, -0.0010273141087964177, 0.0034255797509104013, 0.011665682308375835, 0.01639384590089321, -0.009218839928507805, 0.0009868332417681813, 0.008441607467830181, -0.018423287197947502, -0.0002786432160064578, 0.014148508198559284, 0.008643112145364285, -0.031233228743076324, -0.020236829295754433, -0.006664047949016094, 0.0034903492778539658, -0.013105002231895924, -0.015890084207057953, 0.01882629655301571, 0.011190706863999367, 0.002973993308842182, -0.03267254680395126, 0.005231925286352634, 0.013925413601100445, 0.02734706550836563, 0.009067711420357227, -0.0091108912602067, -9.25437270780094e-05, -0.001226120046339929, 0.0030837415251880884, -0.013925413601100445, -0.01098200585693121, 0.03520574793219566, -0.005512592848390341, 0.005699704401195049, -0.011536143720149994, 0.0042208037339150906, -0.0007754332618787885, 0.012320572510361671, 0.017156684771180153, 0.008823026902973652, 0.014925740659236908, -0.008376837708055973, -0.005221130792051554, -0.013033036142587662, -0.004476282745599747, -0.001110074925236404, 0.0069483136758208275, -0.0042136069387197495, 0.012198230251669884, 0.0030477584805339575, -0.007038271054625511, -0.019517168402671814, -0.00038344363565556705, 0.015285570174455643, -0.028196264058351517, 0.010449457913637161, 0.007873076014220715, -0.0049008820205926895, 0.04723845794796944, -0.00803140178322792, 0.026728158816695213, -0.025878960266709328, 0.01980503275990486, 0.0072541688568890095, -0.025634275749325752, 0.03736472874879837, -0.020006537437438965, 0.008556753396987915, -0.012896300293505192, 0.019891392439603806, -8.962011634139344e-05, -0.026483474299311638, -0.007282955572009087, 0.02262609824538231, 0.019013406708836555, 0.02262609824538231, -0.005167155992239714, -0.0021014062222093344, -0.021776899695396423, 0.00957866944372654, 0.0024972190149128437, 0.01958913542330265, 0.006984296720474958, -0.020870128646492958, 0.0029002283699810505, -0.0066208685748279095, 0.0020096495281904936, -0.002335295546799898, 0.032499827444553375, 0.008017008192837238, 0.010593390092253685, -0.015717366710305214, -0.0015697575872763991, 0.006718022748827934, -0.012781155295670033, 0.002747300546616316, -0.0027347065042704344, -0.0013610562309622765, -0.003771016374230385, -0.008326461538672447, 0.014400389045476913, -7.078527414705604e-05, 0.005167155992239714, -0.026512261480093002, -0.01494013424962759, -0.01362315658479929, 0.005483806133270264, -0.005332677625119686, 0.0016138367354869843, 0.010578996501863003, -0.010024858638644218, 0.0012522077886387706, 0.007693161256611347, -0.013824661262333393, 0.00478933472186327, 0.005552174057811499, 0.02382073365151882, -0.005278703290969133, -0.000429321953561157, 0.00329604116268456, -0.02393587864935398, 0.004807326477020979, 0.007279356941580772, -0.01029113307595253, -0.0068907407112419605, -0.013687926344573498, 0.011572127230465412, -0.007786717265844345, -0.019733067601919174, -0.010686945170164108, 0.01580372452735901, -0.002743702381849289, 0.0012737975921481848, 0.0011910366592928767, 0.02703041583299637, 0.0032474640756845474, -0.0001758668222464621, -0.006009157747030258, -0.014882560819387436, -0.0006382481078617275, -0.008160940371453762, 0.011795220896601677, -0.0011307651875540614, -0.007793913595378399, -0.007146220188587904, 0.01378867868334055, 0.0023874707985669374, 0.007570819463580847, -0.0030639509204775095, 0.0049476600252091885, -0.007074254099279642, 0.011313049122691154, 0.02046711929142475, 0.009413148276507854, -0.0036468752659857273, 0.013774285092949867, 0.001029113307595253, -0.03543604165315628, -0.010931629687547684, 0.001800948171876371, -0.0005995664396323264, 0.00011317772441543639, 0.01408373937010765, -0.00719659635797143, -0.00817533303052187, 0.012464504688978195, 0.015760546550154686, -0.009722601622343063, 0.025029761716723442, -0.0016300290590152144, 0.01439319271594286, 0.03149230405688286, -0.013011446222662926, 0.004505069460719824, 0.007873076014220715, 0.017257437109947205, 0.004990839399397373, -0.010802091099321842, -0.005598952062427998, 0.008384034968912601, -0.02586456760764122, -0.0027311083395034075, -0.005973174702376127, -0.018941441550850868, 0.01178082823753357, -0.030024198815226555, -0.007621195632964373, -0.019459595903754234, -0.012464504688978195, -0.002114000264555216, 0.01645141839981079, 0.010060841217637062, 0.0009670426370576024, -0.004217205569148064, -0.014753022231161594, 0.0006818774854764342, -0.01849525235593319, -0.011507357470691204, -0.017243044450879097, -0.009190053679049015, 0.0006148592219687998, 0.01054301392287016, 0.00438992353156209, -0.015443895943462849, -0.008067384362220764, -0.023086680099368095, 0.007243374362587929, -0.00665685161948204, -0.02085573598742485, 0.013954199850559235, -0.008513573557138443, -0.006379782687872648, -0.007020279765129089, -0.017689233645796776, -0.015285570174455643, -2.7521358788362704e-05, -0.025346411392092705, 0.0015589626273140311, 0.010744518600404263, 0.044331032782793045, 8.510818588547409e-06, -0.03042720817029476, -0.007851486094295979, -0.02701602317392826, 0.0039041535928845406, 0.00665685161948204, -0.007192998193204403, -0.0031521092168986797, 0.011960742995142937, -0.012968266382813454, -0.00836964137852192, -0.011852794326841831, -0.022870782762765884, 0.01180961448699236, 0.007070655934512615, -0.008074580691754818, -0.04176904633641243, 0.007470067124813795, 0.010298329405486584, 0.002441445365548134, -0.0015094861155375838, 0.003947332967072725, -0.0200785044580698, -0.004130846355110407, -0.008585539646446705, 0.006779193878173828, -0.012378145940601826, 0.00795223843306303, -0.0063006202690303326, 0.004893685691058636, 0.019992144778370857, -0.0003625285462476313, 0.009038925170898438, 0.0310892965644598, 0.03212560713291168, 0.0017847558483481407, -0.02389269880950451, -0.02674255147576332, 0.004994438029825687, -0.0119391530752182, -0.012068691663444042, 0.019171733409166336, -0.0038249909412115812, 0.006987894885241985, 0.017487728968262672, -0.003607293823733926, -0.0052067372016608715, 0.007398101035505533, -0.0045626419596374035, 0.005973174702376127, -0.004192017484456301, -0.007340528070926666, 0.00719659635797143, -0.012809941545128822, -0.029966626316308975, 0.015616614371538162, 0.008549556136131287, -0.009024531580507755, 0.004228000529110432, 0.006106311921030283, 0.0076283919624984264, -0.0035946997813880444, 0.011759238317608833, -0.02636832930147648, -0.0034525671508163214, -0.014738629572093487, -0.023950273171067238, -0.00295240362174809, 0.007959435693919659, -0.0010695941746234894, 0.005890414118766785, -0.020121682435274124, -0.019891392439603806, -0.00518874591216445, -0.00679718516767025, -0.008815830573439598, 0.023676801472902298, 0.02013607695698738, 0.03203924745321274, 0.018351320177316666, 0.008096170611679554, -0.02184886671602726, -0.0049476600252091885, -0.019574742764234543, 0.011082758195698261, 0.02354726381599903, 0.004040888976305723, 0.02212233655154705, -0.0348890982568264, -0.005487404763698578, 0.00668563786894083, 0.000278193416306749, -0.014637877233326435, -0.009873730130493641, 0.0034057891461998224, -0.008225709199905396, 0.023302579298615456, -0.0023676801938563585, -0.0009031728259287775, 0.015530254691839218, -0.012867514044046402, -0.024612359702587128, -0.0011424596887081861, 0.008376837708055973, -0.015271177515387535, 0.011061168275773525, -0.013918217271566391, -0.0018765124259516597, -0.004371932242065668, -0.01629309356212616, -0.027116775512695312, 0.0007700357818976045, 0.005616943351924419, 0.02079816348850727, 0.009614652954041958, -0.0014636077685281634, -0.000818612810689956, 0.004285573028028011, 0.028872745111584663, 0.014321226626634598, 0.00037309853360056877, 0.011370622552931309, 0.0049116769805550575, -0.017804378643631935, -0.011183510534465313, -0.014321226626634598, 0.013723908923566341, 0.008290478959679604, -0.014659466221928596, -0.03287405148148537, -0.008319265209138393, -0.0007821800536476076, 0.008614325895905495, 0.00473176222294569, 0.0020492307376116514, 0.02405102550983429, 0.0174445491284132, -0.007664375007152557, 0.014796202071011066, 0.006872749421745539, -0.027490997686982155, -0.013220147229731083, -0.010823681019246578, -0.002677133772522211, -0.010751714929938316, 0.014637877233326435, 0.009974482469260693, -0.0045374538749456406, -0.016595350578427315, -0.011125938035547733, -0.012298982590436935, 0.005375857464969158, 0.02823944389820099, -0.016321880742907524, -0.004109256435185671, 0.016811249777674675, -0.011572127230465412, 0.004375530406832695, -0.017199864611029625, -0.016437025740742683, 0.002149983076378703, 0.014616287313401699, -0.019718673080205917, 0.00993130262941122, 0.015702972188591957, 0.011133134365081787, -0.009247626177966595, -0.016537778079509735, 0.0037602216470986605, -0.010053644888103008, 0.0013016843004152179, 0.009262019768357277, -0.008549556136131287, -0.004271179903298616, -0.01699835993349552, -0.012910693883895874, -0.009283608756959438, 0.004523060750216246, -0.0002048781025223434, 0.004818121436983347, -0.007455673534423113, 0.02233823575079441, -0.024857044219970703, -0.0038249909412115812, 0.00760680204257369, -0.013119394890964031, -0.000793424725998193, -0.015112851746380329, -0.0016992962919175625, -0.00295240362174809, 0.024641145020723343, 0.000721458753105253, -0.004195615649223328, -0.010830877348780632, -0.006426560692489147, 0.0032870452851057053, 0.011262672953307629, -0.01235655602067709, 0.006854758132249117, 5.124763629282825e-05, 0.01417009811848402, 0.006861954461783171, -0.005699704401195049, -0.0038537774235010147, -0.009499507024884224, 0.0020150470081716776, 0.009794567711651325, -0.006872749421745539, -0.0030189722310751677, -0.005314686335623264, 0.0004857702588196844, -0.011089954525232315, 0.017919525504112244, -0.02102845348417759, -0.0007880273042246699, -0.04407195746898651, 0.023518476635217667, -0.03710564970970154, 0.013745498843491077, 0.02063983865082264, -0.0031880922615528107, 0.039494920521974564, 0.00286784372292459, 0.02217990905046463, 0.023734373971819878, -0.002921818057075143, -0.00048666982911527157, 0.007506049703806639, -0.015861298888921738, -0.0027562964241951704, -0.01750212162733078, -0.01147137489169836, -0.008405624888837337, -0.00971540529280901, 0.004228000529110432, -0.004260384943336248, 0.005016027484089136, 0.001164949033409357, -0.03278769180178642, -0.022496560588479042, -0.007549229543656111, 0.006775595247745514, -0.026181217283010483, 6.831144128227606e-05, 0.02360483631491661, 0.004598625004291534, -0.015141638927161694, 0.015559040941298008, -0.0026429500430822372, 0.0034021909814327955, 0.0024738300126045942, -0.006466141901910305, 0.0033140326850116253, -0.00011334638838889077, -0.007300946861505508, -0.01298985630273819, -0.013716712594032288, 0.016422633081674576, 0.006127901840955019, -0.0059875682927668095, -0.0065740905702114105, 0.02383512631058693, -0.010888449847698212, -0.020438333973288536, 0.00026245086337439716, -0.0026591422501951456, -0.010672552511096, -0.0063150133937597275, -0.004310761112719774, 0.012370948679745197, -0.020668623968958855, -0.0007340527954511344, -0.03583905100822449, 0.0014941933332011104, 0.013997379690408707, -0.01494013424962759, -0.005440626759082079, -0.004314359277486801, 0.02140267752110958, 0.00582204619422555, 0.022539740428328514, 0.013421651907265186, -0.009679421782493591, 0.0072757587768137455, 0.0034255797509104013, -0.012802745215594769, -0.011435391381382942, 0.004638206213712692, 0.009082104079425335, 0.007160613313317299, 0.01505527924746275, 0.010557406581938267, 0.0011406604899093509, -0.03103172406554222, -0.006757603958249092, -0.009204446338117123, 0.003071147482842207, -0.013004249893128872, 0.006530911196023226, -0.01699835993349552, 0.028383376076817513, -0.016321880742907524, -0.0020204444881528616, -0.02405102550983429, 0.008894992992281914, 0.0009319591918028891, -0.005584558937698603, 0.0093555748462677, 0.01012561097741127, 0.010636569000780582, -0.0031395151745527983, 0.020265614613890648, -0.004728163592517376, 0.02052469179034233, -0.01098200585693121, 0.0015166826779022813, -0.006189072970300913, 0.010435064323246479, 0.015458288602530956, -0.022597312927246094, 0.02278442308306694, -0.013248933479189873, -4.9026813940145075e-05, -0.020711803808808327, 0.006419363897293806, 0.014839381910860538, -0.009722601622343063, -0.00023411426809616387, 0.0026753346901386976, -0.032499827444553375, 0.012853121384978294, 0.0035407254472374916, 0.0005379455978982151, 0.01368072908371687, -0.0020996069069951773, 0.005717695690691471, -0.005138369742780924, -0.016552170738577843, 0.00264115072786808, -0.0010785898193717003, -0.0011406604899093509, -0.0005127575132064521, -0.016321880742907524, 0.004411513451486826, 0.0061998674646019936, 0.0407327339053154, -0.0024342488031834364, -0.000409306405344978, -0.012435718439519405, -0.019675495103001595, -0.011824008077383041, 0.01992017775774002, 0.006847561337053776, -0.02157539501786232, 0.010722928680479527, -0.0027257108595222235, -0.01898462139070034, 0.013867841102182865, 0.011579323559999466, 0.0029344120994210243, 0.0073225367814302444, 0.00023613830853719264, 0.003486750880256295, -0.02477068454027176, 0.03480273857712746, 0.012270196340978146, -0.012155051343142986, 0.003378801979124546, -0.024065418168902397, 0.03264376148581505, 0.02746221050620079, -0.000147417769767344, -0.030312063172459602, 0.0014519132673740387, -0.0011091753840446472, 0.0014024367555975914, 0.0006067630019970238, -0.01117631420493126, -0.00418482068926096, 0.020611051470041275, 0.018236175179481506, -0.005922798532992601, 0.009650635533034801, -0.00010148325236514211, 0.006865552626550198, -0.03598298132419586, -0.007973828352987766, 0.0034021909814327955, 0.0255335234105587, -0.02736145816743374, -0.011456981301307678, 0.004285573028028011, -0.009557079523801804, -0.03451487421989441, 0.012147854082286358, 0.0030585534404963255, -0.005203139036893845, 0.010708535090088844, -0.01799149066209793, 0.029203787446022034, -0.008225709199905396, 0.002335295546799898, -0.006696432828903198, -0.012241410091519356, 0.008052990771830082, -0.010622176341712475, 0.003204284468665719, 0.015112851746380329, 0.001059698755852878, 0.0008608928183093667, -0.013472028076648712, 0.005512592848390341, -0.010003268718719482, 0.007570819463580847, -0.009888123720884323, 0.0007111136801540852, 0.008362445048987865, 0.013695122674107552, -0.00786587968468666, -0.002912822412326932, -0.0008626919589005411, 0.007246972527354956, 0.007250570692121983, -0.028685633093118668, -0.023921485990285873, -0.0284553412348032, -0.013090608641505241, -0.016652923077344894, 0.0008770852000452578, -0.010262345895171165, -0.010514226742088795, 0.016091588884592056, 0.007901862263679504, -0.010370295494794846, 0.0021175984293222427, -0.027692502364516258, -0.021157993003726006, 0.004785736557096243, 0.013443241827189922, 0.004832514561712742, -0.005983969662338495, -0.0036774605978280306, 0.02009289711713791, 0.01073012501001358, 0.003731435164809227, -0.006135098170489073, -0.000533897487912327, -0.01738697662949562, -0.022755637764930725, 0.01843767985701561, -0.012752369046211243, -0.01471703965216875, -0.013292113319039345, -0.017358189448714256, -0.01787634566426277, -0.010262345895171165, -0.0003829938650596887, -0.04271899536252022, 0.021330710500478745, 0.0034021909814327955, -0.004983643069863319, 0.036731425672769547, 0.0097441915422678, 0.02169054187834263, 0.006106311921030283, 0.006858356297016144, 0.006419363897293806, 0.02422374300658703, 0.0012495090486481786, -0.0056601231917738914, -0.0028750402852892876, 0.01666731759905815, 0.01433562021702528, -0.006800783332437277, 0.014824988320469856, -0.0021823677234351635, -0.005865226034075022, 0.019905785098671913, 0.010629372671246529, -0.030225703492760658, -0.011931956745684147, 0.01695518009364605, -0.006437355186790228, 0.008132154121994972, 0.0059515852481126785, -0.015429502353072166, 0.025403985753655434, 0.01150016114115715, -0.009262019768357277, 0.0313771590590477, -0.006559697445482016, -0.017458941787481308, 0.0032330709509551525, -0.0004243742732796818, 0.008621522225439548, -0.0022579319775104523, -0.013666336424648762, -0.0008541460265405476, 0.003031566273421049, -0.008477590046823025, 0.02415177784860134, -0.00012290437007322907, 0.003486750880256295, 0.006048738956451416, 0.002416257280856371, -0.012047101743519306, 0.007793913595378399, 0.0028498522005975246, 0.010420671664178371, 0.006372585892677307, -0.005080796778202057, 0.010175987146794796, 0.005361464340239763, 0.001215325202792883, 0.010600586421787739, -0.008988549001514912, -0.0113058527931571, -0.017977098003029823, 0.00017822820518631488, 0.008297675289213657, 0.016940787434577942, 0.005721293855458498, 0.017977098003029823, 0.01279554795473814, 0.0009697413770481944, -0.0007889268454164267, 0.03523453697562218, 0.022467773407697678, 0.013515207916498184, 0.013824661262333393, 0.009816157631576061, -0.006027149502187967, 0.013356883078813553, -0.0006742310943081975, 0.02223748341202736, 0.0072973486967384815, 0.0073189386166632175, -0.019675495103001595, 0.007103040348738432, -0.005638533271849155, 0.008261692710220814, 0.0001277395786019042, 0.00012639022315852344, -0.026771338656544685, -0.023144254460930824, 0.004846907686442137, 0.029621189460158348, 0.00852796621620655, -0.007527639623731375], "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8": [-0.029907401651144028, -0.008575820364058018, -0.01419791765511036, 0.001295627560466528, -0.016164494678378105, -0.019280171021819115, -0.0027609204407781363, 0.020329011604189873, -0.02102309837937355, 0.06274539232254028, -0.0069023012183606625, 0.015347016043961048, 0.00356297567486763, 0.021223612129688263, -0.0268071498721838, 0.00899227149784565, -0.0017863078974187374, 0.02868889458477497, -0.0030828993767499924, -0.03417988866567612, 0.05611300840973854, -0.006493561435490847, -0.03525957837700844, -0.01419791765511036, -0.021223612129688263, -0.019480684772133827, -0.02332129515707493, -0.010557821951806545, -0.0488019697368145, -0.002086114604026079, -0.0013525040121749043, 0.025449825450778008, 0.0008348313858732581, 0.015601514838635921, 0.005595105700194836, -0.012771185487508774, -0.010750623419880867, 0.0471978597342968, -0.008791757747530937, -0.009670933708548546, -0.012269901111721992, 0.0018036600667983294, 0.028827711939811707, -0.01613364741206169, -0.0006029873620718718, 0.012239052914083004, -0.006447289139032364, -0.0022287878673523664, -0.0001776185818016529, -0.028349563479423523, 0.02842668443918228, 0.03538297116756439, -0.014637505635619164, 0.031403541564941406, 0.010033400729298592, -0.009809751063585281, 0.02538812905550003, 0.10957306623458862, 0.0023078364320099354, -0.02751666121184826, -0.015994830057024956, -0.055804528295993805, -0.028179898858070374, 0.013264757581055164, -0.008313610218465328, -0.028889408335089684, -0.0006034693797118962, 0.022133637219667435, -0.020174771547317505, 0.030570639297366142, -0.03461176156997681, 0.008799470029771328, -0.0655217319726944, 0.02929043583571911, -0.011136227287352085, -0.01985086500644684, 0.040750570595264435, -0.01978916861116886, 0.00845242664217949, -0.00012080232409061864, 0.021794306114315987, 0.010534685105085373, -0.024647770449519157, 0.013974267989397049, 0.029352132230997086, 0.0179845429956913, -0.036925382912158966, -0.053830236196517944, -0.05324412137269974, -0.006146518513560295, -0.03408734127879143, 0.011583526618778706, -0.013658073730766773, 0.018462691456079483, 0.027655476704239845, -0.0024987102951854467, 0.011676071211695671, 0.028195321559906006, -0.007226208224892616, -0.010233914479613304, -0.0050359806045889854, 0.011475557461380959, -0.04223128780722618, -0.0018740326631814241, -0.015871437266469002, -0.010118233971297741, 0.0022480678744614124, 0.014051388949155807, -0.011436997912824154, -0.026683757081627846, -0.002787912730127573, -0.020899705588817596, 0.028472956269979477, 0.00876862183213234, -0.021439550444483757, -0.013041107915341854, -0.024817436933517456, 0.0017323234351351857, -0.004060403909534216, -0.009832886978983879, 0.02191769890487194, -0.010403580032289028, 0.07366567850112915, -0.0032718449365347624, -0.016951126977801323, -0.013634936884045601, -0.009146513417363167, 0.035228729248046875, 0.04870942607522011, 0.02066834270954132, 0.026159336790442467, 0.01807708851993084, 0.028102777898311615, -0.0003147487877868116, -0.04337267205119133, 0.04701276868581772, 0.03180456906557083, 0.05102304369211197, -0.03294595703482628, 0.033717162907123566, -0.057223547250032425, 0.008676077239215374, -0.009917720220983028, 0.03677114099264145, -0.004739066120237112, 0.021239036694169044, -0.027933111414313316, 0.08131604641675949, -0.028071928769350052, 0.040843114256858826, -0.02076088823378086, 0.0017834157915785909, -0.030354700982570648, 0.016164494678378105, 0.047691430896520615, -0.052966486662626266, -0.016010254621505737, 0.034519217908382416, 0.002649095607921481, 0.00988687202334404, 0.017244184389710426, -0.04442151263356209, -0.016951126977801323, -0.0060038454830646515, -0.005159373860806227, 0.02600509487092495, 0.05346005782485008, 0.027470387518405914, -0.02271975390613079, 0.007087390869855881, 0.022241605445742607, 0.004588680807501078, 0.013742906041443348, 0.022781450301408768, 0.0029807144310325384, -0.015416424721479416, 0.02949094958603382, -0.040781419724226, 0.03640096262097359, -0.0343649759888649, -0.03245238587260246, 0.014676066115498543, 0.012115659192204475, -0.011544966138899326, 0.0033721020445227623, 0.017059095203876495, -0.01202311459928751, -0.014614369720220566, 0.0075925313867628574, 0.03154236078262329, 0.009208209812641144, -0.0197583194822073, -0.013002547435462475, 0.0050012762658298016, -0.012709489092230797, -0.020020529627799988, -0.0031503799837082624, -0.02040613256394863, 0.004152948968112469, 0.021670913323760033, -0.019125929102301598, -0.02575830928981304, -0.011730056256055832, 0.02031358890235424, 0.004947292152792215, 0.0401027575135231, 0.01336501445621252, -0.014822595752775669, 0.051609162241220474, 0.0010449852561578155, 0.07409755140542984, -0.023891987279057503, 0.025095071643590927, -0.010357308201491833, -0.025002526119351387, 0.023305870592594147, -0.00496271625161171, 0.012439566664397717, -0.03325444087386131, -0.004168373066931963, 0.023475537076592445, -0.015794316306710243, -0.016966551542282104, -0.015262183733284473, -0.022688904777169228, 0.01095884945243597, -0.03152693435549736, 0.00327377300709486, -0.011082242242991924, -0.023197902366518974, -0.018123360350728035, 0.010943424887955189, 0.01478403527289629, -0.0004133186594117433, 0.007453714031726122, 0.02956807054579258, 0.0025526946410536766, -0.015871437266469002, -0.02216448448598385, -0.009794327430427074, -0.007037262432277203, 0.025773731991648674, -0.03177372366189957, -0.002932514064013958, 0.023043660447001457, 0.05102304369211197, -0.008598956279456615, 0.038436949253082275, 0.017845725640654564, 0.03572230041027069, -0.005583537742495537, 0.0033354696352034807, -0.025233887135982513, 0.02315162867307663, -0.011560390703380108, 0.039239004254341125, 0.04738294705748558, -0.013688921928405762, -0.015293031930923462, 0.0018470403738319874, 0.017244184389710426, 0.016457553952932358, -0.03964003175497055, -0.013125940226018429, 0.0109125766903162, -0.018647782504558563, 0.0384986475110054, 0.014444704167544842, 0.0163804329931736, 0.040843114256858826, 0.01419791765511036, -0.0327608659863472, -0.00934702716767788, 0.022766025736927986, 0.003776985453441739, -0.018663205206394196, 0.00026919940137304366, 0.004041123669594526, 0.004407447297126055, -0.022550087422132492, -0.009192785248160362, -0.01558609027415514, 0.046179864555597305, 0.03288425877690315, -0.0163804329931736, 0.023382991552352905, 0.01256295945495367, -0.005733923055231571, 0.005598961841315031, -0.005024412646889687, 0.026498667895793915, -0.022766025736927986, 0.004712074063718319, 0.027377843856811523, 0.02173260971903801, -0.006161942612379789, -0.008159368298947811, -0.017861150205135345, 0.04173771291971207, -0.00903854425996542, -0.03661690279841423, 0.020606646314263344, -0.0032776291482150555, -0.02486370876431465, -0.01708994433283806, -0.014537248760461807, 0.02120818756520748, 0.01072748750448227, -0.0664471834897995, 0.03072488121688366, 0.04991250857710838, 0.01870947889983654, -0.004492280073463917, -0.006254487670958042, -0.005286622792482376, 0.0010266691679134965, -0.03322359174489975, -0.028349563479423523, -0.013249333947896957, -0.018832871690392494, -0.019388139247894287, -0.011128515005111694, -0.04161432012915611, 0.015215910971164703, 0.0245706494897604, -0.027131056413054466, 0.021485822275280952, -0.03365546837449074, -0.028981953859329224, -0.004812330938875675, -0.03492024540901184, -0.01348840817809105, 0.005082252901047468, -0.011945993639528751, -0.02673002891242504, -0.001987785566598177, -0.030802002176642418, -0.03760404512286186, -0.0245706494897604, -0.04346521943807602, -0.030832849442958832, 0.02492540515959263, 0.02005137875676155, 0.012501263059675694, -0.041367534548044205, -0.03677114099264145, 0.010812319815158844, 0.01969662308692932, 0.00011483752314234152, -0.017861150205135345, 0.0009355702786706388, -0.03408734127879143, 0.04756803810596466, -0.020544949918985367, 0.03751150146126747, -0.020251892507076263, -0.03874543309211731, 0.00033981300657615066, 0.032205596566200256, -0.013102804310619831, -0.027300722897052765, -0.07866309583187103, -0.0179845429956913, -0.004419015254825354, 0.02219533361494541, 0.04050378501415253, 0.012771185487508774, -0.028719743713736534, -0.02369147352874279, -0.023382991552352905, -0.02261178568005562, 0.02190227434039116, 0.01389714702963829, -0.009015408344566822, -0.018308451399207115, -0.059629712253808975, 0.009377875365316868, -0.004507704172283411, 0.010071961209177971, 0.026236457750201225, -0.00728019280359149, 0.02734699472784996, -0.019727470353245735, -0.020082226023077965, 0.001048841280862689, 0.0005330967251211405, 0.03640096262097359, -0.03769659250974655, -0.028380412608385086, -0.009439571760594845, -0.008861166425049305, 0.014961413107812405, -0.018308451399207115, 0.017074519768357277, -0.00953211635351181, -0.024293014779686928, 0.0179845429956913, 0.006555258296430111, -0.008051399141550064, -0.028920257464051247, 0.010874016210436821, 0.01496912445873022, -0.025249311700463295, -0.0036497365217655897, -0.012138796038925648, -0.049388088285923004, -0.011082242242991924, 0.004338038619607687, -0.005086109042167664, 0.02814904972910881, 0.02572746016085148, 0.001807516091503203, 0.0023386848624795675, -0.004816186614334583, 0.027038512751460075, 0.03214390203356743, 0.014722338877618313, 0.051177285611629486, 0.0007046902319416404, -0.025712035596370697, -0.0041143884882330894, 0.04633410647511482, -0.018293026834726334, 0.03235983848571777, -0.005093821324408054, 0.001627246499992907, 0.02521846443414688, 0.0314498133957386, 0.012208204716444016, -0.031835418194532394, 0.02992282621562481, 0.03421073406934738, -0.026143912225961685, -0.02049867808818817, 0.01510023046284914, -0.00931617897003889, 0.02814904972910881, 0.009740342386066914, -0.01923389919102192, -0.002847681287676096, -0.006771196145564318, 0.02270432934165001, 0.00043187584378756583, -0.014043676666915417, -0.03920815512537956, -0.015169639140367508, -0.03180456906557083, -0.011190211400389671, 6.073253825888969e-05, 0.0036111760418862104, 0.02111564390361309, 0.0026201752480119467, -0.03624672070145607, 0.006879165302962065, 0.007160655688494444, -0.02814904972910881, 0.03908476233482361, -0.0004877883184235543, 0.0229665394872427, -0.04837009310722351, -0.009832886978983879, 0.0384986475110054, 0.05913614109158516, -0.014336735010147095, 0.03146523982286453, -0.014760899357497692, 0.002402309328317642, -0.01122877188026905, -0.014730051159858704, 0.007781477179378271, -0.02048325352370739, 0.012963986955583096, -0.00574549101293087, 0.018370147794485092, 0.025311008095741272, 0.008953711949288845, -0.007789188995957375, -0.027285298332571983, 0.01509251818060875, 0.025958823040127754, -0.017413850873708725, 0.027732597663998604, 0.0020475541241467, -0.001602182281203568, 0.02895110473036766, -0.00038560343091376126, -0.03226729482412338, -0.04729040339589119, -0.024169621989130974, 0.059907346963882446, 0.026961391791701317, 0.015493545681238174, -0.033346984535455704, 0.031496088951826096, 0.024462681263685226, -0.011845736764371395, 0.005093821324408054, -0.04904875531792641, 0.0032699170988053083, -0.017074519768357277, 0.011861161328852177, -0.024339288473129272, 0.03803592175245285, -0.032113052904605865, -0.0368945337831974, 0.021532095968723297, -0.00463495310395956, 0.034704308956861496, 0.006894589401781559, -0.024524377658963203, 0.0010767976054921746, -0.009154225699603558, -0.025403553619980812, 0.007823893800377846, 0.022210756316781044, 0.009701781906187534, 0.00198007351718843, -0.027007663622498512, 0.031125908717513084, 0.0014816811308264732, -0.015601514838635921, 0.005595105700194836, -0.008583532646298409, 0.020143922418355942, 0.007526978850364685, 0.009647797793149948, -0.041274990886449814, -0.021609215065836906, 0.03535212203860283, 0.010974273085594177, -0.01536244060844183, -0.0001785825879778713, -0.016858581453561783, 0.030570639297366142, 0.04115159809589386, 0.021439550444483757, -0.008645229041576385, 0.010773759335279465, 0.011830313131213188, 0.016719764098525047, -0.004203077405691147, 0.034704308956861496, 0.006848316639661789, -0.022411270067095757, -0.015871437266469002, 0.0015433777589350939, 0.024478105828166008, 0.010881728492677212, -0.010318747721612453, 0.02876601554453373, 0.015508969314396381, 0.022287877276539803, -0.02842668443918228, 0.0040526920929551125, 0.007989702746272087, -0.04025699570775032, -0.02529558539390564, -0.0048277550376951694, 0.011521830223500729, 0.009601525031030178, -0.027223601937294006, 0.0016552027082070708, -0.004125956445932388, 0.021578367799520493, 0.007187647745013237, -0.02582000568509102, -0.0571618527173996, 0.03640096262097359, -0.013804602436721325, 0.01065036654472351, 0.020267315208911896, -0.047352101653814316, 0.03889967501163483, 0.004033411853015423, 0.0027435682713985443, 0.029167043045163155, -0.005560401361435652, -0.027994807809591293, -0.008753197267651558, -0.018740326166152954, 0.017768606543540955, -0.001618570415303111, 0.01986628770828247, -0.04068887233734131, -0.000899901962839067, -7.133663166314363e-05, -0.00027016340754926205, -0.01835472323000431, -0.0011240339372307062, 0.007087390869855881, -0.00659381877630949, 0.05225697532296181, -0.02831871621310711, 0.011143938638269901, -0.03313104435801506, 0.007245488464832306, 0.013573240488767624, 0.018138784915208817, 0.0028014087583869696, -0.009979416616261005, 0.02066834270954132, 0.036740295588970184, -0.013904859311878681, 0.022642632946372032, -0.0532749705016613, 0.011074529960751534, 0.011514117941260338, 0.0475371889770031, -0.031125908717513084, 0.011676071211695671, 0.028272442519664764, -0.012794321402907372, 0.027470387518405914, -0.014066812582314014, 0.022226180881261826, -0.011706920340657234, 0.014876579865813255, 0.04158347472548485, 0.012138796038925648, 0.005556545220315456, 0.03177372366189957, -0.018154209479689598, 0.030339278280735016, 0.021239036694169044, 0.013550104573369026, 0.037357259541749954, -0.044143881648778915, 0.002028274117037654, 0.012655504047870636, 0.0013621441321447492, -0.015493545681238174, 0.006778907962143421, -0.03979427367448807, -0.03766574338078499, -0.006759628187865019, -0.03458091616630554, 0.011467846110463142, -0.011814888566732407, 0.03161948174238205, -0.03806677088141441, 0.012632368132472038, -0.01693570241332054, 0.038868825882673264, 0.01233159750699997, -0.007816181518137455, 0.0008319393964484334, 0.01584058813750744, 0.019480684772133827, 0.019897136837244034, 0.020143922418355942, -0.001806552056223154, 0.009979416616261005, 0.02486370876431465, 0.004415159113705158, -0.005830323789268732, -0.019095081835985184, -0.022118212655186653, 0.011830313131213188, 0.021933123469352722, -0.028827711939811707, -0.002678015735000372, -0.012663216330111027, 0.020776312798261642, 0.004388167057186365, 0.05466314032673836, 0.009586101397871971, -0.018832871690392494, 0.007041118573397398, -0.006185078993439674, 0.0343649759888649, 0.0005432188045233488, -0.04093565791845322, 0.030663184821605682, -0.013272469863295555, 0.03794337809085846, -0.0300153698772192, 0.03044724650681019, 0.013688921928405762, -0.010796896182000637, -0.02546525001525879, -0.009401011280715466, -0.03775828704237938, -0.0002178659342462197, 0.025172190740704536, -0.010233914479613304, -0.004928011912852526, -0.0016927990363910794, 0.03677114099264145, -0.01255524717271328, -0.011066818609833717, -0.014876579865813255, 0.03380970656871796, -0.0016590587329119444, 0.010835456661880016, -0.024987101554870605, 0.00530204689130187, 0.014537248760461807, -0.01291000284254551, 0.006335464306175709, -0.027933111414313316, -0.01425961498171091, 0.002394597278907895, -0.006401016842573881, -0.02602051943540573, 0.01915677823126316, 0.03152693435549736, -0.011645223014056683, -0.005452432204037905, 0.001211758702993393, 3.774695869651623e-05, 0.01755266822874546, -0.020622070878744125, 0.011622087098658085, 0.01314136479049921, -0.002691511996090412, 0.016503825783729553, -0.04068887233734131, 0.015717195346951485, -0.007800757419317961, 0.01175319217145443, -0.004438295494765043, 0.012902290560305119, -0.02602051943540573, -0.017321305349469185, -0.01995883323252201, 0.012100235559046268, 0.006061685737222433, -0.022935692220926285, 0.01010280940681696, 0.007272480521351099, 0.03590739145874977, 0.001142350141890347, -0.0003778913524001837, 0.011290468275547028, -0.011737768538296223, -0.03340867906808853, 0.016889430582523346, 0.00022593951143790036, 0.026745453476905823, 0.02270432934165001, 0.0007495166501030326, -0.01389714702963829, -0.002575830789282918, -0.03044724650681019, 0.029784008860588074, 0.009007696062326431, 0.017784029245376587, -0.005294335074722767, 0.005849604029208422, 0.01362722460180521, 0.02056037448346615, -0.027146480977535248, 0.04152177646756172, 0.012300749309360981, -0.0055449772626161575, -0.00899227149784565, 0.019280171021819115, -0.0075308349914848804, 0.014552673324942589, 0.02191769890487194, -0.01809251308441162, 0.028010232374072075, -0.01602567918598652, -0.005564257502555847, 0.0034627187997102737, 0.03507448732852936, 0.00532132713124156, -0.0018769246526062489, 0.012694064527750015, 0.018956264480948448, 0.033100198954343796, 0.02511049434542656, -0.013650361448526382, 0.018015392124652863, -0.042694009840488434, -0.07002557814121246, -0.0038328981027007103, 0.0150076849386096, 0.011992266401648521, -0.015023109503090382, -0.025526946410536766, -0.03171202540397644, 0.011583526618778706, -0.0012512831017374992, -0.008552683517336845, -0.033439528197050095, 0.030246732756495476, 0.026051366701722145, 0.008537259884178638, 0.015717195346951485, 0.011868873611092567, -0.004206933546811342, -0.037634894251823425, 0.010480700992047787, 0.011190211400389671, -0.013658073730766773, 0.008352169767022133, 0.023845715448260307, -0.026406122371554375, 0.006474281661212444, 0.012802033685147762, -0.023799443617463112, 0.03525957837700844, 0.03482770174741745, 0.009994841180741787, -0.003279557218775153, 0.006601530592888594, -0.008383018895983696, -0.004812330938875675, -0.011953705921769142, 0.004237781744450331, 0.006678651086986065, 0.012462702579796314, 0.025881702080368996, -0.02120818756520748, 9.194231824949384e-05, -0.01015679445117712, 0.0019742895383387804, 0.0455937497317791, 0.02298196405172348, -0.00601541344076395, 0.0016349585494026542, -0.007654227782040834, 0.017784029245376587, 0.033346984535455704, -0.014992261305451393, 0.022241605445742607, -0.020714616402983665, 0.010172218084335327, -0.035938240587711334, -0.0064897057600319386, -0.029814856126904488, 0.002716576214879751, 0.003749993396922946, -0.014005116187036037, 0.015331592410802841, 0.004542408511042595, 0.021439550444483757, -0.02413877472281456, 0.028287867084145546, 0.003368245903402567, -0.04312588647007942, -0.02574288472533226, -0.0192493237555027, 0.007623379584401846, -0.014876579865813255, 0.0039948513731360435, -0.011043681763112545, 0.021146491169929504, 0.02403080463409424, 0.03525957837700844, 0.01456038560718298, -0.007777621038258076, 0.03566060587763786, -0.006030837539583445, 0.007480706553906202, 0.013557815924286842, 0.0022866283543407917, -0.02537270449101925, 0.024987101554870605, 0.018771175295114517, -0.01853981241583824, -0.000494536419864744, -0.026868846267461777, -0.007453714031726122, 0.014352159574627876, -0.008753197267651558, -0.004446007311344147, 0.004881739150732756, -0.001082581584341824, 0.006643947213888168, 0.00654754601418972, -0.0006015413673594594, -0.023845715448260307, -0.02145497500896454, -0.0006073254044167697, 0.007430578116327524, 0.005367599427700043, -0.01960407756268978, 0.006462713237851858, -0.002575830789282918, 0.018478116020560265, -0.007870165631175041, 0.003171588061377406, -0.013110516592860222, 0.005625953897833824, 0.03458091616630554, -0.005533409304916859, -0.0029016658663749695, -0.007719780318439007, 0.009323891252279282, 0.01692027784883976, -0.032822564244270325, -0.04747549444437027, -0.015994830057024956, 0.0032082204706966877, 0.010935713537037373, -0.0032930532470345497, -0.02716190554201603, 0.02225703001022339, 0.010141369886696339, -0.024909980595111847, -0.02029816433787346, -0.03257577866315842, 0.04402048513293266, -0.04253976792097092, -0.0005441828398033977, -0.0010517333867028356, 0.03948578983545303, 0.01708994433283806, 0.017413850873708725, 0.00846013892441988, 0.02619018405675888, -0.00012291109305806458, 0.04803076386451721, -0.030586063861846924, 0.014298174530267715, -0.03979427367448807, -0.006019269581884146, -0.025341857224702835, -0.0069254375994205475, 0.011814888566732407, 0.03010791540145874, -0.00824420154094696, -0.019650351256132126, 0.013125940226018429, -0.04260146617889404, 0.012370157986879349, -0.004870171193033457, 0.025233887135982513, -0.012200492434203625, 0.0020475541241467, -0.0034203024115413427, -0.019881712272763252, 0.00992543250322342, -0.005506416782736778, -0.023089932277798653, 0.01394341979175806, -0.014537248760461807, -0.0268071498721838, 0.02557321824133396, 0.01807708851993084, 0.03479685261845589, 0.008683789521455765, 0.001072941580787301, -0.004604104906320572, -0.00980203878134489, 0.005294335074722767, -0.009393298998475075, 0.005020556505769491, -0.0010922217043116689, 0.005070684943348169, -0.018817447125911713, -0.0005229746457189322, 0.030493518337607384, 0.006620810832828283, -0.007874022237956524, 0.007041118573397398, 0.01567092351615429, -0.0014142005238682032, -0.0256657637655735, -0.021161915734410286, 0.008043687790632248, 0.011028258129954338, -0.0038097617216408253, 0.018030816689133644, 0.013704345561563969, 0.029691463336348534, -0.028025656938552856, -0.025326432660222054, -0.025233887135982513, -0.016457553952932358, -0.0023406127002090216, -6.723959813825786e-05, -0.03828270733356476, -0.011868873611092567, -0.02645239420235157, -0.003279557218775153, -0.023830290883779526, 0.0031176037155091763, 0.030077066272497177, -0.03152693435549736, 0.0075578270480036736, -0.04540865868330002, 0.001850896398536861, -0.019357291981577873, 0.006520553957670927, -0.00815165601670742, -0.004214645363390446, 0.004380454774945974, 0.000796753098256886, -0.027146480977535248, 0.002062978222966194, 0.002872745506465435, 0.026853421702980995, 0.015701770782470703, -0.036370113492012024, -0.037110473960638046, 0.00028896157164126635, -0.030231308192014694, -0.016843156889081, 0.0027840568218380213, -0.013388151302933693, 0.052226126194000244, 0.002712720073759556, 0.018493540585041046, 0.024370135739445686, -0.02234957367181778, -0.00168026692699641, 0.00819792877882719, -0.01318763755261898, 0.009231345728039742, -0.021239036694169044, 0.01622619293630123, -0.013318742625415325, 0.04179941117763519, 0.04985081031918526, 0.006154230795800686, -0.01727503351867199, 0.05978395417332649, 0.007037262432277203, 0.004106676671653986, -0.027316147461533546, -0.0052133584395051, -0.01665806770324707, 0.007696644403040409, 0.02261178568005562, 0.018277602270245552, 0.01878659799695015, -0.028179898858070374, -0.029876552522182465, -0.01699739880859852, 0.002402309328317642, 0.010295611806213856, -0.015454985201358795, -0.008113096468150616, -0.017429275438189507, -0.03930070251226425, -0.02298196405172348, 0.004847034811973572, -0.008575820364058018, 0.012933138757944107, -0.01446784008294344, 0.012123371474444866, 0.01557837799191475, -0.021717185154557228, 0.03319274261593819, -0.004403591156005859, 0.0022210758179426193, 0.01308737974613905, 0.018956264480948448, 0.0049974205903708935, 0.0011568103218451142, 0.01593313366174698, -0.007642659824341536, 0.00478919455781579, -0.02529558539390564, -0.020020529627799988, -0.010326460003852844, 0.031110484153032303, -0.011560390703380108, -0.01675061322748661, 0.045100174844264984, 0.017059095203876495, 0.00876862183213234, -0.025943398475646973, -0.020622070878744125, 0.00253919861279428, -0.02716190554201603, -0.012169644236564636, -0.012154219672083855, -0.00010628194286255166, 0.004631096962839365, -0.01576346717774868, -0.002838041167706251, 0.04772228002548218, 0.011329028755426407, 0.005652946420013905, -0.009539828635752201, 0.0016417065635323524, -0.018848296254873276, 0.030262157320976257, 0.0031176037155091763, 0.03151151165366173, -0.0352904237806797, 0.014884292148053646, 0.011051394045352936, 0.004951147828251123, 0.02831871621310711, 0.022658057510852814, -0.019434412941336632, 0.01122877188026905, 0.0029595063533633947, 0.01278660912066698, -0.006451145280152559, 0.02652951516211033, 0.011861161328852177, 0.03982512280344963, 0.02591254934668541, 0.026606636121869087, -0.027933111414313316, -0.038436949253082275, -1.628270729270298e-05, -0.006331608165055513, 0.011120802722871304, 0.022951114922761917, 0.008575820364058018, -0.0009331603068858385, -0.0036188880912959576, 0.021717185154557228, 0.017784029245376587, -0.0029055217746645212, 0.009470419958233833, 0.038436949253082275, 0.014598946087062359, -0.007650372106581926, -0.0014903572155162692, -0.013511544093489647, -0.001457580947317183, 0.004669657442718744, 0.02753208391368389, -0.02484828419983387, -0.023568080738186836, -0.015616938471794128, -0.027948535978794098, -0.010226203128695488, -0.0002764294622465968, 0.02236499823629856, 0.020267315208911896, 0.026498667895793915, 0.022318726405501366, -0.016596371307969093, 0.04213874042034149, -0.00935473944991827, -0.003570687724277377, 0.004534696228802204, 0.025634916499257088, -0.024200471118092537, -0.01863235794007778, 0.0029710743110626936, -0.014838019385933876, -0.00532132713124156, -0.0036516643594950438, 0.000137491719215177, 0.015231335535645485, 0.011791752651333809, -0.013835450634360313, -0.004241637885570526, 0.013750618323683739, -0.013881723396480083, -0.0021805872675031424, -0.006289192009717226, 0.018678629770874977, 0.009508980438113213, -0.014845731668174267, 0.004715929739177227, 0.00398713955655694, 0.0015375936636701226, 0.017614364624023438, -0.0025546227116137743, -0.01559380255639553, -0.011413861066102982, -9.567785309627652e-05, -0.0179845429956913, -0.010526973754167557, -0.0006237135385163128, 0.019218474626541138, -0.024879133328795433, -0.014568096958100796, -0.009246770292520523, 0.009401011280715466, 0.003742281114682555, -0.011699208058416843, -0.013102804310619831, -0.02253466472029686, 0.016550099477171898, -0.033439528197050095, 0.021856002509593964, -0.0004082576197106391, 0.02350638434290886, 0.00518636591732502, -0.008143944665789604, 0.012478127144277096, -0.02119276486337185, -0.020868856459856033, 0.006813612300902605, -0.0036613044794648886, -0.01611822284758091, -0.0009129160898737609, 0.029521798714995384, 0.015308455564081669, 0.006632378790527582, -0.008529547601938248, 0.001933801220729947, 0.0013014115393161774, -0.008221064694225788, 0.0014180565485730767, 0.0054562883451581, 0.003445366630330682, 0.0029267300851643085, -0.009933143854141235, 0.009470419958233833, 0.00394086679443717, 0.0012387509923428297, -0.0072647687047719955, -0.03649350628256798, -0.0020070658065378666, -0.020992251113057137, 0.007800757419317961, 0.006154230795800686, 0.01210794784128666, -0.012663216330111027, 0.013835450634360313, -0.005452432204037905, -0.02361435443162918, -0.003769273404031992, 0.024339288473129272, -0.026344425976276398, 0.03411819040775299, -0.0036940807476639748, -0.017429275438189507, 0.00801283959299326, 0.005062973126769066, 0.01729045808315277, -0.02628272958099842, -0.005251918453723192, 0.02180972881615162, 0.03189711645245552, -0.03146523982286453, -0.022750601172447205, -0.006154230795800686, -0.020082226023077965, 0.0031600201036781073, 0.027485812082886696, 0.013264757581055164, -0.0008092852076515555, -0.024339288473129272, 0.024508953094482422, 0.005089965183287859, 0.02201024256646633, -0.015886861830949783, 0.010241626761853695, -0.02341384068131447, -0.029413828626275063, 0.03306934982538223, 0.0026452394668012857, -0.027007663622498512, -0.013372726738452911, 0.0005287586827762425, -0.0065244100987911224, -0.001609894330613315, -0.002124674851074815, -0.017676061019301414, -0.0006169654661789536, -0.009077104739844799, 0.0028515374287962914, -0.02003595419228077, 0.021084794774651527, 0.006266055628657341, 0.04383539780974388, -0.00561052979901433, -0.009285330772399902, 0.014128509908914566, 0.010742911137640476, -0.032637473195791245, 0.03279171511530876, 0.00042850180761888623, 0.005005132406949997, -0.01090486440807581, 0.020282739773392677, 0.008552683517336845, 0.004534696228802204, 0.006744204089045525, 0.017953695729374886, -0.022503815591335297, -0.010989697650074959, -0.0021863714791834354, 0.004287910182029009, -0.023460112512111664, -0.01478403527289629, -0.012925426475703716, 0.0010536613408476114, 0.001082581584341824, -0.004083540290594101, 0.0026818718761205673, -0.015979405492544174, 0.006308471783995628, -0.009609237313270569, 0.009994841180741787, -0.015886861830949783, -0.011059106327593327, 0.00899998378008604, -0.024447256699204445, 0.04389709234237671, -0.01509251818060875, 0.013927995227277279, 0.013912571594119072, -0.006786620244383812, 0.03633926808834076, 0.039670880883932114, -0.02777887135744095, 0.008699213154613972, 0.00013206916628405452, 0.008861166425049305, 0.01264779269695282, 0.030678607523441315, -0.018030816689133644, 0.017845725640654564, -0.027902264147996902, -0.01904881000518799, -0.02191769890487194, -0.0029035937041044235, 0.003732641227543354, 2.9131133487680927e-05, -0.015254471451044083, 0.013773754239082336, 0.02324417419731617, -0.03161948174238205, -0.0070719667710363865, -0.006516697816550732, 0.007877877913415432, -0.0028669615276157856, 0.015470409765839577, -0.003453078679740429, -0.028565501794219017, 0.021748032420873642, -0.02440098486840725, -0.010526973754167557, 0.03137269616127014, 0.030971666797995567, 0.004993564449250698, 0.0033104054164141417, -0.013025683350861073, 0.008668364956974983, 0.004723642021417618, 0.007542402949184179, -0.004407447297126055, 0.008868878707289696, 0.012161931954324245, 0.001798840006813407, 0.0053984480910003185, -0.007056542672216892, -0.0003116157604381442, 0.011845736764371395, -0.012177356518805027, -0.020344436168670654, 0.006077109836041927, -0.007249344140291214, -0.009701781906187534, -0.036740295588970184, -0.01682773418724537, -0.008560395799577236, 0.03217475116252899, -0.008437003009021282, -0.007912582717835903, 0.009994841180741787, -0.03411819040775299, -0.001312015694566071, -0.021609215065836906, 0.030570639297366142, 0.013920283876359463, -0.023999957367777824, -0.013781466521322727, -0.00877633411437273, -0.0026972959749400616, -0.0007548187277279794, 0.011622087098658085, -0.022025667130947113, -0.006165798753499985, -0.013257045298814774, -0.0219948198646307, 0.017305880784988403, -0.016272464767098427, -0.01153725478798151, -0.0163804329931736, -0.01702824793756008, 0.008652940392494202, 0.024431832134723663, 0.0025526946410536766, -0.011699208058416843, -0.014228766784071922, 0.008475563488900661, 0.042354680597782135, 0.02325959876179695, 0.019974257797002792, 0.02432386390864849, 0.0014093804638832808, 0.009215922094881535, -0.0071336631663143635, -0.0029614341910928488, -0.018956264480948448, 0.012578384019434452, 0.014336735010147095, -0.014691490679979324, -0.0020880424417555332, -0.013835450634360313, -0.016257040202617645, 0.010974273085594177, 0.014329023659229279, 0.029984522610902786, 0.019125929102301598, -0.016858581453561783, 0.003146523842588067, 0.014984549023211002, -0.023012813180685043, -0.007137519307434559, -0.006717211566865444, -0.0011095738736912608, -0.016966551542282104, -0.00532132713124156, 0.023907411843538284, 0.0069639976136386395, 0.01171463169157505, -0.007951142266392708, 0.016102798283100128, -0.00796656683087349, 0.011105378158390522, 0.022380422800779343, 0.00873006135225296, -0.04479169473052025, -0.035321272909641266, -0.02477116324007511, 0.005298191215842962, -0.014722338877618313, 0.0011307820677757263, -0.006343176122754812, -0.037110473960638046, -0.03569145128130913, -0.0062352074310183525, -0.0020398420747369528, 0.012277613393962383, 0.024462681263685226, 0.0007321644807234406, -0.013843162916600704, -0.0058380356058478355, -0.019357291981577873, -0.007596387527883053, -0.01180717721581459, 0.0027936967089772224, 0.0017863078974187374, -0.0028284010477364063, -0.02484828419983387, 0.020236467942595482, 0.01628788933157921, 0.011737768538296223, -0.004044979810714722, -0.03458091616630554, 0.014922852627933025, 0.009339314885437489, 0.014645217917859554, -0.010048825293779373, -0.03868373483419418, -0.0005085145239718258, 0.013064243830740452, 0.034149039536714554, -0.007091247010976076, -0.03812846541404724, -0.008375306613743305, 0.009447284042835236, 0.012354733422398567, 0.01394341979175806, -0.008976847864687443, -0.012424142099916935, -0.012948563322424889, -0.013704345561563969, 0.003187012393027544, -0.0012300749076530337, 0.0006039513391442597, 0.023922836408019066, 0.0008213352994062006, -0.013580952771008015, 0.038529492914676666, -0.027763446792960167, 0.00984831154346466, 0.008537259884178638, -0.028920257464051247, -0.042262136936187744, -0.020606646314263344, 0.011930570006370544, -0.014035964384675026, 0.002670303685590625, -0.00045838605728931725, -0.021362429484725, 0.02833413891494274, -0.0037731295451521873, 0.014321311376988888, -0.0007490346324630082, -0.020344436168670654, 0.0013766041956841946, -0.010033400729298592, -0.014344447292387486, 0.013326453976333141, 0.0033296856563538313, -0.0001582179102115333, -0.0058380356058478355, -0.010928001254796982, 0.046457499265670776, 0.008969135582447052, -0.003096395405009389, -0.011676071211695671, 0.005028268788009882, -0.027146480977535248, 0.016796885058283806, 0.02494082972407341, -0.030215883627533913, -0.015177350491285324, -0.010596382431685925, 0.02572746016085148, 0.0052904789336025715, 0.023228749632835388, 0.005853460170328617, 0.0104267168790102, -0.01914135366678238, -0.014568096958100796, 0.0023637490812689066, 0.018015392124652863, 0.012316172942519188, 0.008128520101308823, 0.014976836740970612, 0.004546264186501503, 0.010326460003852844, -0.002327116671949625, -0.02130073308944702, 0.018508965149521828, -0.003921587020158768, -0.0019492253195494413, 0.01708994433283806, -0.006967853754758835, 0.02164006419479847, 0.02895110473036766, 0.00873006135225296, 0.02120818756520748, 0.0014903572155162692, 0.009431859478354454, 0.00040391957736574113, 0.006539834197610617, -0.00120211869943887, -0.018493540585041046, -0.007673508021980524, -0.017861150205135345, 0.0038945944979786873, 0.0010498053161427379, -0.0014276966685429215, 0.008043687790632248, 0.011768616735935211, 0.019974257797002792, -0.0028187609277665615, -0.02180972881615162, 0.01510023046284914, -0.008706925436854362, -0.009794327430427074, -0.03232898935675621, -0.0029980666004121304, 0.0028708174359053373, 0.0120308268815279, -0.016966551542282104, -0.0024505096953362226, -0.004264773800969124, -0.012262188829481602, -0.002174803288653493, -0.003485854947939515, -0.004935723729431629, 0.015269896015524864, 0.019619502127170563, 0.007847029715776443, 0.001535665593110025, -0.005471712443977594, -0.0009707566350698471, -0.0042223576456308365, 0.01446784008294344, 0.009655510075390339, 0.023352142423391342, 0.01744469814002514, 0.00013399719318840653, 0.005795619450509548, 0.008128520101308823, 0.0007562647224403918, -0.005510272923856974, 0.0024331575259566307, -0.019311020150780678, -0.01807708851993084, -0.009524405002593994, 0.06055516004562378, -0.004129812587052584, 0.009794327430427074, 0.0064665693789720535, 0.00710667110979557, -0.025311008095741272, -0.0029209458734840155, 0.02130073308944702, 0.01773775741457939, -0.017352154478430748, 0.011359876953065395, -0.009200497530400753, -0.020683767274022102, -0.003512847237288952, -0.007997415028512478, 0.034951094537973404, 0.00957838911563158, -0.00020822584338020533, 0.007854741998016834, -0.010365020483732224, 0.02717733010649681, 0.004187653306871653, 0.0021593791898339987, 0.00013616621436085552, 0.005147805903106928, 0.009370163083076477, -0.01286373008042574, 0.015416424721479416, -0.004226213321089745, 0.01341128721833229, 0.0015038533601909876, -0.007449858356267214, -0.010943424887955189, -0.030956242233514786, -0.0010131730232387781, 0.02378401905298233, -0.005965285003185272, 0.009524405002593994, -0.012161931954324245, 0.009092528373003006, -0.010858592577278614, -0.012616943567991257, 0.012524398975074291, -0.003821329912170768, 0.005795619450509548, -0.0245706494897604, 0.011992266401648521, 0.0005258666933514178, 0.002022489905357361, -0.006775052286684513, -0.023012813180685043, -0.02031358890235424, 0.008938287384808064, 0.010002552531659603, 0.022920267656445503, -0.0013862443156540394, 0.007596387527883053, -0.001585794030688703, 0.006983277853578329, 0.01046527735888958, -0.016010254621505737, 0.008552683517336845, -0.014452416449785233, -0.019095081835985184, -0.004303334280848503, -0.014645217917859554, -0.011506406590342522, 0.0016445985529571772, 0.013735193759202957, 0.013727481476962566, -0.015023109503090382, 0.018061663955450058, 0.007172223646193743, -0.005248062778264284, 0.0009683466050773859, -0.011915145441889763, 0.008213353343307972, -0.008969135582447052, -0.004631096962839365, 0.005514129064977169, -0.005194078199565411, 0.005402303766459227, -0.016596371307969093, -0.019218474626541138, 0.0035167031455785036, 0.0013804602203890681, 0.009593812748789787, -0.020390709862113, 0.011568102985620499, -0.019280171021819115, -0.008969135582447052, -0.01171463169157505, -0.003129171673208475, 0.003131099743768573, 0.012215916067361832, 0.021053947508335114, -0.015293031930923462, 0.014421568252146244, 0.01060409378260374, -0.012300749309360981, -0.011830313131213188, 0.016889430582523346, -0.006616954691708088, 0.011915145441889763, -0.0012859874404966831, -0.016149071976542473, 0.018570661544799805, -0.006736491806805134, -0.008375306613743305, -0.00044850498670712113, 0.0012252548476681113, 0.0022191477473825216, -0.005622097756713629, 0.01915677823126316, 0.002787912730127573, 0.0014045605203136802, 0.009007696062326431, 0.0007172223413363099, -0.04775312915444374, -0.028719743713736534, 0.011784040369093418, -0.009023119695484638, 0.0027262161020189524, -0.005086109042167664, 0.00044296192936599255, -0.0028341852594166994, -0.019033385440707207, -0.012493550777435303, -0.01425190269947052, -0.0024350855965167284, 0.009701781906187534, 0.010920288972556591, 0.012254476547241211, 0.002394597278907895, -0.006748059764504433, -0.008760909549891949, 0.011298180557787418, -0.017922846600413322, 0.020390709862113, -0.00259318295866251, -0.0012223628582432866, 0.0006082893814891577, -0.0016012182459235191, 0.0229665394872427, -0.0001601459225639701, 0.015963980928063393, -0.010981985367834568, -0.0012493551475927234, 0.007727492600679398, 0.016334161162376404, 0.017691485583782196, -0.02180972881615162, -0.00266066356562078, 0.0028341852594166994, 0.003094467567279935, 0.01095113717019558, -0.023043660447001457, -0.005857315845787525, 0.0015915781259536743, -0.007407441735267639, 0.011321316473186016, 0.0032602769788354635, -0.016411282122135162, 0.0037480653263628483, 0.00412210077047348, 0.023089932277798653, 0.00987915974110365, 0.005953717045485973, 0.013064243830740452, 0.0028708174359053373, 0.012447278946638107, 0.014190206304192543, -0.0004791122628375888, -0.011244195513427258, 0.02484828419983387, -0.002394597278907895, -0.0014691490214318037, -0.0018518604338169098, 0.0006752879708074033, 0.010295611806213856, -0.007403585594147444, 0.001987785566598177, -0.013573240488767624, -0.01398198027163744, -0.008930575102567673, -0.007372737396508455, -0.002097682561725378, 0.014637505635619164, 0.003717216895893216, 0.0013284038286656141, -0.003935082815587521, 0.0320822037756443, 0.02511049434542656, -0.008922862820327282, 0.007596387527883053, -0.010048825293779373, -0.012038539163768291, 0.009871447458863258, 0.017768606543540955, -0.00412210077047348, -0.012701776809990406, 0.013064243830740452, 0.012246765196323395, -0.009609237313270569, -0.023136205971240997, 0.00199356977827847, -0.002035986166447401, -0.017660636454820633, -0.01375833060592413, -0.012578384019434452, -0.052226126194000244, 4.759792318509426e-06, 0.0030481950379908085, -0.015663210302591324, -0.0066092428751289845, 0.002483285963535309, 0.016365008428692818, -0.006154230795800686, 0.03177372366189957, 0.026113063097000122, -0.003665160620585084, 0.004727498162537813, -0.026514090597629547, 0.004627241287380457, 0.014537248760461807, -0.013002547435462475, 0.0033200455363839865, -0.0011635583359748125, 0.02005137875676155, -0.0026876558549702168, 0.01479174755513668, -0.01348840817809105, -0.011344452388584614, 0.010241626761853695, 0.011999978683888912, 0.005911300424486399, 0.016519250348210335, -0.004017987754195929, 0.03248323127627373, -0.01789199933409691, -0.010203066281974316, 0.002890097675845027, -0.01038044411689043, 0.001066193450242281, 0.012007690966129303, -0.004696649499237537, 0.0120308268815279, -0.018616933375597, -0.010164505802094936, -2.70976779574994e-05, -0.0014884292613714933, 0.0049164434894919395, -0.007642659824341536, 0.020899705588817596, 0.03837525099515915, 0.03260662406682968, 0.014706914313137531, 0.0012040466535836458, 0.03819016367197037, -0.026575788855552673, -0.0023656769189983606, -0.019634926691651344, -0.006844460964202881, -0.002319404622539878, 0.012115659192204475, 0.035938240587711334, -0.00603469368070364, 0.017074519768357277, -0.0003774093638639897, -0.0050012762658298016, 0.0032853411976248026, 0.014305886812508106, -0.01496912445873022, 0.008945999667048454, 0.005336751230061054, -0.007091247010976076, -0.011082242242991924, -0.025141343474388123, 0.0002547392505221069, 0.004446007311344147, -0.022025667130947113, -0.00015375936345662922, 0.013526967726647854, -0.028920257464051247, 0.007827749475836754, -0.015871437266469002, -0.00011164424358867109, 0.01451411284506321, 0.0014614369720220566, 0.012856017798185349, -0.005930580664426088, -0.011236484162509441, 0.008213353343307972, 0.024370135739445686, -0.014506400562822819, 0.004955003969371319, -0.002830329118296504, 0.0013910643756389618, 0.007850885391235352, 0.0025700468104332685, -0.014961413107812405, -0.006532121915370226, 0.006269911769777536, -0.01287144236266613, -0.00036391321918927133, -0.0033277575857937336, 0.002755136461928487, -0.005471712443977594, -0.0013968483544886112, 0.015331592410802841, 0.029413828626275063, -0.011521830223500729, 0.004434439353644848, 0.015601514838635921, 0.00115873827598989, -0.007268624380230904, -0.0034511506091803312, 0.008205641061067581, 0.008537259884178638, 6.386556833604118e-06, -0.008737773634493351, 0.009586101397871971, 0.01504624541848898, 0.012948563322424889, -0.020976826548576355, 0.006875309161841869, 0.004496135748922825, 0.018678629770874977, -0.0030655472073704004, -0.0017863078974187374, -0.0019463333301246166, -0.02511049434542656, 0.004762202501296997, -0.020915130153298378, 0.008922862820327282, 0.01041900459676981, 0.007237776182591915, -0.005089965183287859, -0.026683757081627846, -0.007511554751545191, -0.011822600848972797, -0.00307133118622005, 0.004839322995394468, -0.002575830789282918, -0.011259620077908039, 0.012840594165027142, 0.01152954250574112, 0.00016412245167884976, 0.002483285963535309, 0.024385560303926468, 0.003884954610839486, -0.011645223014056683, 0.0037037208676338196, -0.007827749475836754, -0.006069398019462824, -0.008290473371744156, -0.031033363193273544, 0.003879170399159193, -0.005814899690449238, -0.011298180557787418, 0.003642024239525199, -0.006686363369226456, -0.017043670639395714, -0.006250631529837847, -0.00872234907001257, 0.01628788933157921, 0.013781466521322727, 0.005699218716472387, -0.023984532803297043, 0.004735209979116917, 0.01425961498171091, 0.0006372096831910312, -0.0015819380059838295, -0.013465271331369877, 0.005942148622125387, 0.01799996756017208, 0.015493545681238174, 0.00036632324918173254, -0.002132386900484562, 0.005140093620866537, 0.007538546808063984, -0.0028515374287962914, -0.007573251146823168, 0.016889430582523346, 0.016272464767098427, 0.0029961385298520327, 0.019712047651410103, 0.017845725640654564, 0.006562970113009214, -0.011768616735935211, -0.005464000627398491, 0.021979395300149918, 0.01375833060592413, 0.019634926691651344, -0.009640085510909557, 0.009053968824446201, -0.006601530592888594, 0.015694059431552887, 0.020436981692910194, -0.020699191838502884, -0.010272474959492683, -0.006582250352948904, -0.009555253200232983, 0.019742894917726517, -0.002564262831583619, -0.021516671404242516, 0.016071951016783714, 0.023043660447001457, 0.031203029677271843, 0.008035975508391857, 0.0008743557846173644, 0.006894589401781559, -0.01995883323252201, 0.011159363202750683, 1.4573098269465845e-05, -0.00015387986786663532, 0.032205596566200256, -0.00980203878134489, 0.005248062778264284, -0.008213353343307972, 0.011861161328852177, -0.002880457555875182, 0.012300749309360981, 0.009786615148186684, 0.02325959876179695, 0.017136216163635254, 0.022241605445742607, -0.0007128843571990728, -0.005999989341944456, 0.012208204716444016, 0.011629799380898476, -0.006119526457041502, 0.027501236647367477, -0.01126733236014843, -0.007392017636448145, -0.006659371312707663, 0.018138784915208817, -0.012424142099916935, -0.017861150205135345, 0.02137785404920578, 0.008113096468150616, 0.004449863452464342, 0.010773759335279465, 0.017244184389710426, 0.013920283876359463, 0.026791725307703018, 0.012979411520063877, 0.02762462943792343, -0.007299473043531179, 0.003050123108550906, -0.011730056256055832, 0.026591211557388306, -0.008406154811382294, -0.004688937682658434, -0.026329001411795616, -0.024740315973758698, -0.003545623505488038, 0.016349585726857185, -0.004361174535006285, -0.004939579870551825, 0.010442140512168407, -0.0011529541807249188, 0.006046261638402939, -0.01264779269695282, -0.005984565243124962, 0.03266832232475281, -0.0029942106921225786, 0.00899998378008604, -0.018046239390969276, 0.01772233285009861, -0.007488418370485306, -0.014452416449785233, -0.006570682395249605, -0.004804618656635284, 0.003732641227543354, 0.012508975341916084, 0.003042411059141159, 0.004488423932343721, 0.005552689079195261, -0.007731348741799593, -0.02369147352874279, 0.0063817366026341915, -0.011136227287352085, 0.0038155459333211184, 6.891154953336809e-06, 0.0026760876644402742, -0.0395166389644146, 0.02332129515707493, 0.018154209479689598, 0.003715289058163762, 0.013503831811249256, -0.007604099344462156, 0.003707577008754015, -0.012586095370352268, -0.01130589284002781, 0.004268629942089319, 0.004264773800969124, 0.017876574769616127, 0.0006883020978420973, 0.009555253200232983, 0.008043687790632248, 0.00846785120666027, -0.02102309837937355, -0.007835461758077145, 0.0031426679342985153, -0.011591238901019096, -0.023460112512111664, 0.007430578116327524, 0.028164474293589592, -0.00044392593554221094, 0.025712035596370697, -0.0071567995473742485, -0.0045385523699223995, 0.01986628770828247, -0.011367589235305786, 0.01011052168905735, 0.022920267656445503, 0.005942148622125387, 0.005841891746968031, -0.00641258480027318, 0.0013312958180904388, -0.009277618490159512, -0.009385587647557259, -0.005892020184546709, -0.00368444062769413, 0.01809251308441162, 0.007511554751545191, 0.008784046396613121, -0.02111564390361309, -0.011120802722871304, -0.03126472607254982, -8.603776223026216e-05, 0.012971699237823486, -0.00877633411437273, -0.013280182145535946, -0.005390735808759928, 0.015439560636878014, -0.01559380255639553, 0.01978916861116886, -0.013681209646165371, 0.008475563488900661, -0.02031358890235424, 0.03198966011404991, -0.016874006018042564, -0.012578384019434452, -0.01095884945243597, -0.005679938476532698, 0.0029787863604724407, 0.004712074063718319, 0.0022866283543407917, -0.007958854548633099, -0.004083540290594101, 0.038159314543008804, 0.013334166258573532, -0.009146513417363167, -0.0047467779368162155, -0.016580946743488312, -0.002668375615030527, -0.015963980928063393, 0.02110021933913231, 0.008784046396613121, -0.0035012790467590094, 0.008005127310752869, 0.033007651567459106, -0.0047699143178761005, 0.016874006018042564, 0.014714626595377922, 0.010318747721612453, -0.004735209979116917, 0.01914135366678238, -0.00026775337755680084, -0.006069398019462824, -0.010735198855400085, -4.829080353374593e-05, 0.015177350491285324, -0.00390616268850863, -0.015678634867072105, -0.013172212988138199, 0.007195360027253628, -0.019033385440707207, 0.0014556528767570853, 0.013534680008888245, -0.0025276304222643375, 0.016781460493803024, 0.01344984769821167, -0.0012030827347189188, -0.018030816689133644, 0.005024412646889687, 0.013997403904795647, -0.02742411568760872, 0.005278910975903273, -0.0011018618242815137, 0.013218485750257969, -0.029629766941070557, 0.01171463169157505, -0.0005171906086616218, -0.005182510241866112, -0.010820032097399235, -0.00034583808155730367, -0.027100209146738052, 0.004588680807501078, 0.004156805109232664, -0.010835456661880016, 0.007577107287943363, -0.015285319648683071, -0.0018740326631814241, 0.00027016340754926205, -0.007943430915474892, 0.0013669641921296716, 0.0005957572720944881, 0.005016700364649296, -0.007110527250915766, 0.013750618323683739, -0.007796901278197765, -0.0009548504604026675, -0.007935718633234501, 0.01622619293630123, 0.01122877188026905, 0.013835450634360313, 0.03279171511530876, -0.01729045808315277, 0.0011384941171854734, 0.022241605445742607, 0.012192780151963234, -0.0031079635955393314, -0.010974273085594177, 0.011776329018175602, -0.011622087098658085, 0.014105373062193394, -0.008383018895983696, 0.01727503351867199, -0.02449353039264679, -0.012192780151963234, -0.02210278809070587, -0.01852438785135746, -0.005938292946666479, -0.016056526452302933, 0.0036362402606755495, -0.0028341852594166994, 7.591567555209622e-05, 0.0038656743708997965, -0.01693570241332054, -0.0037307131569832563, -0.00028124949312768877, -0.011606663465499878, 0.001756423618644476, 0.008383018895983696, -0.013550104573369026, -0.007827749475836754, 0.006732635665684938, -0.01833929866552353, -0.0035244151949882507, -0.008892014622688293, -0.0015751899918541312, 0.004299478139728308, 0.021717185154557228, 0.018231330439448357, -0.013789178803563118, 0.008174792863428593, -0.004773770458996296, 0.029552645981311798, -0.011992266401648521, 0.012401006184518337, 0.014105373062193394, 0.004280197899788618, -0.01826217770576477, 0.01398969255387783, 0.016580946743488312, -0.0007914510206319392, -0.004858603235334158, 0.010935713537037373, 0.01852438785135746, -0.018570661544799805, 0.012262188829481602, -0.0008276013541035354, 0.006239063572138548, -0.017660636454820633, -0.005278910975903273, -0.007068110629916191, -0.03195881098508835, 0.012447278946638107, 0.018416419625282288, -0.026560364291071892, -0.0017496754880994558, -1.4791506146139e-05, 0.017676061019301414, -0.011845736764371395, -0.0050012762658298016, -0.025249311700463295, 0.0015800100518390536, -0.008737773634493351, -0.022735178470611572, -0.005946004763245583, 0.004395878873765469, 0.0192493237555027, 0.011575814336538315, -0.014298174530267715, 0.005043692886829376, -0.0004993564216420054, -0.01171463169157505, -0.008089959621429443, -0.01764521189033985, -0.00786245334893465, -0.0003026986960321665, -0.009547540917992592, -0.020529527217149734, 0.02654493972659111, 0.01393570750951767, 0.022781450301408768, -0.0005523769068531692, 6.133504211902618e-05, -0.01260923221707344, -0.005996133200824261, 0.014228766784071922, -0.0017149712657555938, -0.02492540515959263, -0.012408718466758728, -0.007021838333457708, 0.005853460170328617, 0.0031927963718771935, 0.002880457555875182, -0.0034665747079998255, -0.0054832808673381805, 0.017691485583782196, 0.0014045605203136802, -0.01130589284002781, -0.0027859846595674753, 0.014552673324942589, -0.0068174684420228004, 0.011244195513427258, -0.006397160701453686, -0.0030308428686112165, -0.007245488464832306, 0.0029305859934538603, 0.007407441735267639, -0.0011201779125258327, -0.0028843136969953775, -0.022149059921503067, 0.012007690966129303, 0.008830318227410316, -0.021748032420873642, -0.01682773418724537, -0.002157451119273901, 0.008290473371744156, 0.0067827641032636166, -0.002533414401113987, -0.027223601937294006, 0.012694064527750015, 0.008398442529141903, -0.0005803331732749939, -0.0077621969394385815, -0.0024852140340954065, 0.016858581453561783, -7.031237328192219e-05, 0.017074519768357277, -0.018462691456079483, -0.0027840568218380213, 0.003640096401795745, 0.01914135366678238, 0.031835418194532394, -0.007322608958929777, 0.019820015877485275, -0.016164494678378105, 0.015963980928063393, -0.018400995060801506, 0.004449863452464342, -0.0054601444862782955, -0.00036102120066061616, -0.0018451124196872115, 0.0030578351579606533, 0.01690485328435898, -0.015609226189553738, -0.008961423300206661, -0.007079679053276777, 0.007573251146823168, -0.00849869940429926, -5.3412099077831954e-05, 0.022318726405501366, -0.0040526920929551125, 0.0202210433781147, -0.022550087422132492, -0.0036188880912959576, -0.0384986475110054, -0.010457565076649189, -0.029722312465310097, -0.027902264147996902, 0.01809251308441162, -0.0002525702293496579, 0.017706910148262978, 0.009508980438113213, -0.00259318295866251, 0.005383023992180824, -0.01033417135477066, 0.014807171188294888, 0.016102798283100128, 0.012778897769749165, 0.016164494678378105, -0.013125940226018429, -0.023460112512111664, 0.0011616302654147148, 0.010025689378380775, 0.0015231334837153554, 0.018616933375597, -0.0021381708793342113, -0.004604104906320572, 0.00044392593554221094, -0.02083800919353962, 0.010118233971297741, -0.00231747655197978, 0.015185062773525715, 0.011313604190945625, 0.02404622919857502, -0.010812319815158844, -0.008706925436854362, 0.011205635033547878, -0.002940226113423705, -0.012262188829481602, -0.005999989341944456, -0.004773770458996296, -0.006863740738481283, -0.001866320613771677, -0.0064434329979121685, -0.006474281661212444, 0.002095754723995924, -0.00788944587111473, 0.003179300343617797, -0.00904625654220581, -0.012886865995824337, 0.00788173358887434, 0.006894589401781559, -0.0021304588299244642, 0.0011076458031311631, 0.005305903032422066, 0.01207709964364767, 0.00714523158967495, -0.010311035439372063, -0.009917720220983028, 0.01863235794007778, 0.0008579675923101604, -0.006096390075981617, 0.0045385523699223995, -0.025526946410536766, -0.0008059111423790455, 0.012663216330111027, -0.013812314718961716, 0.0022461400367319584, -0.004607961047440767, -0.010989697650074959, -0.016334161162376404, -0.010403580032289028, -0.001909700920805335, 0.02332129515707493, 0.004928011912852526, 0.009053968824446201, 0.015539818443357944, 0.013588665053248405, -0.0028438251465559006, 0.004484567791223526, 0.005383023992180824, 0.01531616784632206, -0.004226213321089745, -0.008976847864687443, 0.011637511663138866, -0.002242283895611763, 0.007426721975207329, -0.019526956602931023, -0.009863735176622868, 0.01504624541848898, 0.000907614070456475, -0.01781487837433815, 0.005070684943348169, -1.5424137018271722e-05, -0.000911952112801373, 0.03445752337574959, 0.01038044411689043, -0.005305903032422066, 0.0025372705422341824, 0.01072748750448227, -0.029074497520923615, -0.009771190583705902, -0.0045154159888625145, -0.0014633650425821543, 0.002064906293526292, 0.009470419958233833, -0.013542392291128635, -0.001958865439519286, 0.00349549506790936, -0.005548833403736353, -0.012940851040184498, 0.021871427074074745, 0.018956264480948448, -0.009863735176622868, 0.01446784008294344, -0.00876862183213234, -0.005560401361435652, -0.01531616784632206, 0.028873983770608902, 0.005841891746968031, -0.021778881549835205, 0.002957578282803297, 0.005579681601375341, -0.01206167507916689, 0.003956291358917952, -0.0017911279574036598, -0.02341384068131447, 0.002591255120933056, -0.03751150146126747, -0.006751915905624628, -0.010573245584964752, 0.005309759173542261, -0.0003571651759557426, 0.008915151469409466, 0.0072647687047719955, -0.00846013892441988, -0.002957578282803297, 0.005876596085727215, 0.0033046214375644922, -0.024293014779686928, -0.022580936551094055, 0.007688932120800018, -0.009023119695484638, -0.0010767976054921746, 0.030123339965939522, 0.0003636722394730896, -0.010125946253538132, 0.008760909549891949, -0.010804607532918453, 0.015755755826830864, 0.006339320447295904, -0.0026471675373613834, 0.008984560146927834, 0.0007938610506244004, 0.0066362349316477776, 0.009385587647557259, -0.029722312465310097, -0.026868846267461777, 0.006759628187865019, -0.006416440941393375, 0.006262199487537146, 0.006281479727476835, 0.03566060587763786, 0.006709499750286341, 0.00989458430558443, -0.01639585755765438, -0.009323891252279282, 0.014305886812508106, -0.00656682625412941, 0.0017757037421688437, 0.007307184860110283, 0.011367589235305786, 0.0013081596698611975, 0.0002829365257639438, 0.0013611800968647003, -0.011213347315788269, 0.011352164670825005, -0.010472988709807396, -0.01833929866552353, -0.0184472668915987, -0.011367589235305786, 0.014398431405425072, 0.001857644529081881, -0.004472999833524227, 0.0061426623724401, -0.009516692720353603, -0.00040753462235443294, 0.015023109503090382, 0.0218251533806324, -0.02261178568005562, -0.0013023755745962262, 0.013203061185777187, 0.00654754601418972, -0.0076773641631007195, -0.009601525031030178, 0.02777887135744095, 0.012138796038925648, 0.022920267656445503, -0.006080965977162123, -0.02699223905801773, -0.013565528206527233, 0.020822584629058838, -0.013395862653851509, -0.02137785404920578, 0.014706914313137531, -0.014822595752775669, 0.0019386211642995477, 0.01286373008042574, -0.008699213154613972, -0.0218251533806324, 0.005687650293111801, 0.009208209812641144, -0.0006473317625932395, -0.015439560636878014, -0.0009818427497521043, 0.009254482574760914, -0.004816186614334583, -0.027316147461533546, 0.005652946420013905, 0.015354728326201439, 0.0069639976136386395, 0.0017236473504453897, -0.002839969238266349, -0.011691495776176453, -0.0066709392704069614, 0.008930575102567673, -0.007654227782040834, -0.006385592743754387, -0.00042344076791778207, -0.022426694631576538, -0.0002860695531126112, 0.013542392291128635, 0.020190196111798286, -0.0035321274772286415, -0.027948535978794098, -0.02626730501651764, 0.007874022237956524, 0.00962466187775135, 0.01171463169157505, 0.045655444264411926, 0.017383001744747162, 0.0006969781825318933, 0.020082226023077965, -0.0002329285634914413, -0.014236478134989738, -0.010974273085594177, -0.008791757747530937, -0.0018653565784916282, -0.015262183733284473, 0.0043071904219686985, -0.007206927984952927, -0.02771717496216297, 0.010812319815158844, 0.02449353039264679, 0.004318758379667997, -0.0013679281109943986, -0.02762462943792343, 0.0012291108723729849, -0.03741895779967308, 0.025064222514629364, 0.0019550092983990908, -0.004025699570775032, 0.013874011114239693, 0.007079679053276777, -0.00103052519261837, 0.007384305354207754, -0.007407441735267639, -0.021686336025595665, 0.02102309837937355, -0.02449353039264679, 0.009701781906187534, -0.0106812147423625, -0.03908476233482361, -0.03232898935675621, 0.0084215784445405, 0.012817458249628544, 0.034704308956861496, 0.013195348903536797, 0.002965290332213044, -0.007187647745013237, 0.00024184564244933426, 0.004191509447991848, -0.005363743752241135, 0.006736491806805134, 0.012053962796926498, 0.0030057786498218775, 0.0008473634952679276, 0.001287915394641459, -0.002610535128042102, 0.02074546366930008, -0.0019472972489893436, -0.03439582511782646, -0.007665796205401421, -0.0028110488783568144, 0.0011307820677757263, -0.004843179136514664, 0.006474281661212444, -0.007951142266392708, 0.0018364363349974155, -0.006794332526624203, -0.00024485817993991077, 0.021717185154557228, 0.009416435845196247, -0.01613364741206169, 0.010311035439372063, -0.02332129515707493, -0.0012686352711170912, -0.014159358106553555, 0.020714616402983665, -0.011066818609833717, 0.001142350141890347, -0.00961694959551096, -0.00534831965342164, -0.008097671903669834, 0.009007696062326431, 0.006073253694921732, 0.004218501504510641, 0.009825175628066063, 0.0069254375994205475, 0.011498694308102131, 0.02219533361494541, -0.0017005110858008265, -0.02557321824133396, -0.003759633284062147, 0.0018374003702774644, -0.013372726738452911, 0.009470419958233833, -0.000990036758594215, 0.012717201374471188, -0.0009572604903951287, -0.03535212203860283, -0.0024678618647158146, -0.00881489459425211, 0.005784051492810249, 0.010002552531659603, -0.004106676671653986, 0.009994841180741787, -0.009524405002593994, -0.010203066281974316, -0.0040796841494739056, 0.01287144236266613, 0.004041123669594526, -0.00534060737118125, -0.004642665386199951, 0.004611816722899675, -0.018586084246635437, -0.0019077729666605592, -0.0150076849386096, 0.0051439497619867325, -0.01764521189033985, -0.0033643897622823715, -0.019311020150780678, -0.00683674868196249, 0.016503825783729553, 0.011845736764371395, -0.003512847237288952, -0.008853455074131489, -0.010002552531659603, -0.022580936551094055, -0.0021960115991532803, -0.015917709097266197, 0.007808469235897064, 0.008938287384808064, 0.01647297851741314, 0.006269911769777536, 0.003046266967430711, -0.0057146428152918816, 0.007750628981739283, 0.011676071211695671, 0.0033373977057635784, 0.0030231308192014694, 0.013326453976333141, 0.002334828721359372, -0.005286622792482376, 0.004380454774945974, 0.018385570496320724, 0.012979411520063877, 0.01095113717019558, -0.0170128233730793, 0.00654754601418972, -0.03155778348445892, 0.03319274261593819, 0.02458607405424118, 0.00307133118622005, 0.029953673481941223, 0.0020764744840562344, 0.010835456661880016, 0.02762462943792343, -0.016334161162376404, -0.0029884264804422855, 0.02003595419228077, -0.004206933546811342, 0.00934702716767788, -0.04340352118015289, 0.0027435682713985443, -0.0012850234052166343, 0.004149092826992273, 0.004534696228802204, -0.0034415104892104864, -0.015161926858127117, 0.03680199012160301, -0.022411270067095757, -0.01690485328435898, 0.00846785120666027, -0.011868873611092567, -0.010719775222241879, -0.005012844689190388, 0.010928001254796982, 0.009740342386066914, -0.00039765352266840637, 0.004183797165751457, 0.004904875531792641, -0.013388151302933693, -0.006890733260661364, 0.010835456661880016, -0.0014787891414016485, 0.012794321402907372, 0.0012512831017374992, -0.0038386820815503597, -0.013125940226018429, 0.00645885756239295, 0.011460133828222752, 0.008907439187169075, 0.010920288972556591, 0.0359690859913826, -0.016411282122135162, -0.0067557720467448235, 0.01860150881111622, -0.011290468275547028, -0.015254471451044083, -0.008969135582447052, -0.000622749503236264, 0.006848316639661789, -0.022750601172447205, -0.006104102358222008, -0.030586063861846924, -0.0019742895383387804, 0.00992543250322342, -0.009208209812641144, 0.004546264186501503, 0.0011905506253242493, 0.016179919242858887, 0.00797427911311388, 0.02733157016336918, 0.01287144236266613, -0.007712068501859903, 0.008645229041576385, 0.0034318703692406416, 0.007480706553906202, -0.02555779553949833, 0.0032718449365347624, 0.021239036694169044, 0.017845725640654564, -0.012763473205268383, 0.012894578278064728, 0.018277602270245552, -0.024802012369036674, 0.0038502502720803022, -0.0040526920929551125, -0.004395878873765469, 0.009177361615002155, 0.010989697650074959, -0.007935718633234501, 0.008807182312011719, -0.005911300424486399, -0.007284048479050398, -0.010203066281974316, -0.004700505640357733, -0.006019269581884146, 0.0018904207972809672, 0.01656552217900753, -0.015771180391311646, 0.014876579865813255, -0.010658078826963902, 0.01117478683590889, -0.011784040369093418, -0.0024254454765468836, -0.011838025413453579, 0.006809756625443697, -0.00710667110979557, 0.009470419958233833, 0.013874011114239693, -0.009786615148186684, 0.014321311376988888, -0.010365020483732224, 0.0006015413673594594, 0.0009037580457516015, 0.003724929178133607, 0.018508965149521828, -0.018030816689133644, -0.005309759173542261, 0.0017535315128043294, -0.029367556795477867, -0.008984560146927834, 0.033161893486976624, -0.006327752023935318, 0.010480700992047787, -0.010619518347084522, 0.008344458416104317, -0.013573240488767624, -0.013218485750257969, 0.0036632325500249863, 0.019619502127170563, 0.0002860695531126112, -0.01960407756268978, 0.002589327050372958, 0.020699191838502884, -0.024508953094482422, 0.04932639002799988, 0.02477116324007511, 0.014606657437980175, -0.019187625497579575, 0.010079673491418362, 0.003169660223647952, 0.012809745967388153, 0.013650361448526382, -0.018848296254873276, -0.0046850815415382385, -0.008228776976466179, -0.009863735176622868, 0.011105378158390522, 0.01504624541848898, -0.005795619450509548, -0.0011751264100894332, -0.010041113011538982, -0.011051394045352936, -0.004388167057186365, 0.024169621989130974, 0.0017361794598400593, -0.010357308201491833, -0.012300749309360981, -0.019372716546058655, 0.02538812905550003, 0.009902295656502247, 0.01621076837182045, -0.01779945380985737, -0.016534674912691116, 0.008352169767022133, -0.013434423133730888, 0.0032217164989560843, -0.0015645858366042376, -0.010804607532918453, 0.01826217770576477, 0.017244184389710426, 0.011321316473186016, 0.006763483863323927, 0.014490976929664612, -0.0054370081052184105, -0.03195881098508835, -0.004183797165751457, -0.0008719457546249032, 0.02376859448850155, -0.010511549189686775, -0.011706920340657234, 0.0034627187997102737, 0.0015385576989501715, -0.024539802223443985, 0.006686363369226456, 0.017213337123394012, 0.0005567149491980672, 0.0012165787629783154, -0.0026992240455001593, 0.011598951183259487, -0.011969130486249924, 0.016179919242858887, -0.0023059083614498377, -0.018400995060801506, 0.001534701674245298, 0.002145883161574602, -0.003921587020158768, 0.008930575102567673, 0.002267348114401102, -0.00962466187775135, 0.010796896182000637, 0.003665160620585084, -0.007237776182591915, -0.007754484657198191, 0.0034203024115413427, 0.0037037208676338196, -0.002394597278907895, -0.016781460493803024, -0.00042970682261511683, -0.005043692886829376, -0.005433152429759502, -0.0014691490214318037, 0.0006338356179185212, -0.0433109775185585, -0.02164006419479847, 0.018030816689133644, 0.010881728492677212, -0.0032506368588656187, 0.0034376545809209347, -0.023398416116833687, -0.013604088686406612, 0.001209830748848617, 0.013658073730766773, -0.0145218251273036, 0.030215883627533913, -0.0054832808673381805, 0.0014595089014619589, -0.016874006018042564, 0.019712047651410103, 0.011136227287352085, 0.01621076837182045, -0.0117994649335742, -0.0034897110890597105, 0.010295611806213856, 0.004469143692404032, -0.007268624380230904, -0.004658089485019445, -0.008961423300206661, 0.00478919455781579, 0.006883020978420973, -0.01317992527037859, -0.023043660447001457, -0.014444704167544842, 0.0034164462704211473, 0.003938938956707716, -0.0038579623214900494, 0.005537264980375767, -0.012007690966129303, -0.005649090278893709, 0.0057493471540510654, 0.00926219392567873, 0.0022866283543407917, -0.0005822611856274307, 0.015131078660488129, 0.014267326332628727, -0.0027744167018681765, 0.0061503746546804905, 0.030354700982570648, 0.0008251913241110742, -0.007226208224892616, 0.006084822118282318, 0.019280171021819115, 0.0005138165433891118, -0.0020764744840562344, -4.2747753468574956e-05, -0.012231340631842613, -0.0038830265402793884, 0.0019482612842693925, 0.0002166609192499891, -0.017490971833467484, -0.013619513250887394, -0.00935473944991827, -0.004750634077936411, 0.01145242154598236, 0.00926990620791912, -0.016781460493803024, 0.03393310308456421, 0.006077109836041927, -0.010619518347084522, 0.0314498133957386, -0.0046002487652003765, -0.007847029715776443, -0.009208209812641144, 0.009740342386066914, 0.00988687202334404, -0.009817463345825672, -0.002758992603048682, 0.003248708788305521, -0.00926990620791912, -0.0015028893249109387, 0.035136185586452484, 0.0027898408006876707, 0.003146523842588067, 0.015493545681238174, 0.008706925436854362, 0.008922862820327282, 0.010287899523973465, -0.011845736764371395, 0.008930575102567673, 0.0010546253761276603, -0.004156805109232664, 0.0012917714193463326, 0.021856002509593964, -0.006786620244383812, -0.010087385773658752, -0.015223623253405094, -0.023398416116833687, -0.012100235559046268, -0.011082242242991924, 0.003983283415436745, 0.016673492267727852, 0.00022991604055278003, -0.003655520500615239, 0.009069392457604408, -0.0038733864203095436, -0.003792409785091877, 0.03939324617385864, 0.011406149715185165, 0.010588670149445534, 0.0045154159888625145, 0.0034337984398007393, -0.013295605778694153, 0.018586084246635437, -0.0035051351878792048, 0.019650351256132126, 0.00854497216641903, 0.00016882199270185083, -0.007137519307434559, -0.006906157359480858, -0.0009095420828089118, -0.0055681136436760426, 0.0014942132402211428, 0.0004533250175882131, -0.014390720054507256, 6.073253825888969e-05, 0.020143922418355942, 0.01781487837433815, -0.025804581120610237, -0.0051439497619867325], "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e": [-0.03068961761891842, -0.03507384657859802, -0.006635915022343397, 0.01110354159027338, -0.007688289042562246, -0.003917612135410309, -0.013772203586995602, 0.01392311044037342, -0.03545508533716202, 0.039680466055870056, -0.009729498066008091, 0.01901421882212162, 0.011484779417514801, 0.0032107343431562185, -0.005206274334341288, 0.002426417777314782, -0.02655954472720623, 0.007882879115641117, -0.0026646910700947046, -0.03253226354718208, 0.07300698012113571, -0.03070550225675106, -0.02177819050848484, 0.0031749934423714876, -0.0053214398212730885, -0.00550014479085803, -0.030832581222057343, -0.008585785515606403, -0.03194452449679375, -0.008951138705015182, 0.006381756626069546, 0.016083456575870514, -0.004483511671423912, 0.00024509895592927933, 0.014622045680880547, -0.02655954472720623, -0.006353958044201136, 0.02133341319859028, -0.009761268272995949, 0.017155686393380165, -0.005897267255932093, -0.0159246064722538, 0.014852376654744148, -0.00839516706764698, -0.014661758206784725, 0.012739686295390129, -0.021381068974733353, -0.010444318875670433, -0.0019836262799799442, -0.03408898413181305, 0.006508835591375828, 0.026400696486234665, -0.019157184287905693, 0.019363686442375183, 0.014852376654744148, -0.003740892745554447, 0.006397641263902187, 0.1055392399430275, 0.0248439759016037, -0.02898993343114853, -0.009078217670321465, -0.030308380722999573, -0.020332666113972664, 0.0012161872582510114, -0.009435627609491348, 0.0006195108871906996, -0.005194360855966806, 0.007783598732203245, -0.013120923191308975, 0.03348536044359207, -0.027957415208220482, -0.02986360341310501, -0.03647172078490257, 0.018537672236561775, 0.004392173606902361, -0.011294160038232803, 0.03367597609758377, 0.005067281424999237, 0.01258083712309599, -0.013883397914469242, 0.030896121636033058, 0.003933497238904238, -0.005313497502356768, 0.018521787598729134, 0.0373612716794014, 0.02030089497566223, -0.03653525933623314, -0.04844893142580986, -0.024701012298464775, -0.012668203562498093, -0.01910952851176262, 0.019935542717576027, -0.010515800677239895, 0.012842937372624874, 0.018664751201868057, 0.009133814834058285, 0.01836293935775757, 0.0163455568253994, -0.01066670659929514, -0.019157184287905693, -0.01718745566904545, 0.008935253135859966, -0.046796899288892746, 0.0170921478420496, -0.02123810537159443, 0.02072978764772415, 0.021746421232819557, 0.02844984643161297, 0.0170921478420496, 0.015392463654279709, -0.0060561164282262325, -0.03014953061938286, 0.037456583231687546, 0.010086908005177975, -0.05353209748864174, -0.034692611545324326, -0.028910508379340172, 0.023938536643981934, -0.04120541736483574, 0.0008026835857890546, 0.02092040702700615, -0.01374837663024664, 0.053690943866968155, 0.004884605295956135, -0.009975713677704334, 0.0047575258649885654, 0.0016579859657213092, 0.03780604898929596, 0.03558216616511345, 0.027909761294722557, 0.0020749643445014954, -0.006373814307153225, 0.04485894367098808, -0.005964777898043394, -0.036058712750673294, 0.02667073905467987, 0.03408898413181305, 0.06976646184921265, -0.0325004942715168, 0.009173527359962463, -0.0356774739921093, 0.00205907947383821, -0.009245009161531925, 0.023223716765642166, 0.010444318875670433, 0.00934031791985035, -0.04234912991523743, 0.07561209797859192, -0.05121290311217308, 0.047336988151073456, -0.042762137949466705, -0.007557238917797804, -0.0433339923620224, 0.029561789706349373, 0.05537474527955055, -0.03609048202633858, -0.02080921269953251, 0.05172121897339821, -0.0008056620135903358, 0.03802843764424324, 0.015884894877672195, -0.08120357990264893, 0.0007525468827225268, -0.0022993385791778564, 0.010841441340744495, 0.012834995053708553, 0.0446365550160408, 0.03656702861189842, -0.021857615560293198, 0.02327137067914009, 0.020253241062164307, -0.007986131124198437, 0.018347054719924927, 0.010650821961462498, -0.003937468398362398, 0.0026130652986466885, 0.041078340262174606, -0.00860961340367794, 0.04558964818716049, -0.012088404968380928, -0.044795405119657516, -0.0019181011011824012, 0.029402941465377808, 0.0024720868095755577, -0.013343311846256256, 0.033517129719257355, -0.00839516706764698, -0.0010245757875964046, 0.026623083278536797, 0.02368437871336937, 0.008800231851637363, -0.013375082053244114, 0.032564036548137665, 0.005774159450083971, -0.013216232880949974, -0.04536725953221321, -0.027449099346995354, -0.006735195405781269, 0.018521787598729134, 0.00934031791985035, -0.010420490987598896, -0.01882360130548477, -0.013875455595552921, 0.03402544558048248, -0.018013471737504005, 0.031372666358947754, 0.02006262168288231, -0.029387054964900017, 0.050418656319379807, 0.004056605044752359, 0.053373247385025024, -0.018347054719924927, 0.02592414803802967, -0.01370072178542614, -0.017123917117714882, 0.019284263253211975, 0.005484260153025389, 0.032754652202129364, -0.01604374311864376, -0.0018158421153202653, 0.019935542717576027, -0.008458706550300121, -0.03348536044359207, -0.002426417777314782, -0.004618533421307802, 0.03291350230574608, -0.045081332325935364, 0.011675397865474224, -0.012493469752371311, -0.025241097435355186, 0.002434360096231103, 0.01837882399559021, 0.005543828476220369, -0.008855829015374184, -0.008196606300771236, 0.05356386676430702, 0.015551311895251274, 0.007275281939655542, -0.011659513227641582, -0.02274717018008232, -0.00022946226818021387, 0.046479202806949615, -0.0633171945810318, 0.021603457629680634, -0.004467626567929983, 0.04809946194291115, -0.012334620580077171, 0.06735195219516754, 0.02784622088074684, 0.024272119626402855, -0.011786592192947865, 0.0037686913274228573, -0.012302851304411888, 0.012048693373799324, -0.011675397865474224, 0.05064104497432709, 0.04654274135828018, -0.02433566004037857, -0.029275862500071526, 0.00400895019993186, 0.020316781476140022, 0.021937040612101555, -0.02262009121477604, -0.009316490963101387, 0.03358066827058792, -0.026718392968177795, 0.036598797887563705, 0.023859111592173576, 0.022159429267048836, 0.06255471706390381, 0.04079240933060646, -0.04304806515574455, -0.010015426203608513, -0.008927310816943645, -0.004324662499129772, -0.011897786520421505, 0.016949182376265526, 0.009260893799364567, -0.002644835039973259, -0.009570648893713951, -0.025574680417776108, -0.024049730971455574, 0.02314429171383381, 0.0230648685246706, 0.03558216616511345, 0.027449099346995354, -0.01623436249792576, -0.005381008144468069, -0.01880771666765213, -0.015273327007889748, 0.010364893823862076, -0.02590826340019703, -0.009364145807921886, 0.05842464417219162, 0.012882649898529053, -0.0025991660077124834, -0.004543079994618893, -0.013248002156615257, 0.02412915602326393, -0.014280520379543304, -0.02603534236550331, -0.0030717416666448116, -0.0047376700676977634, -0.036503490060567856, -0.01497945562005043, -0.015694275498390198, 0.018744176253676414, 0.017822852358222008, -0.04323868453502655, 0.005214216653257608, 0.0507998950779438, -0.005019627045840025, -0.004832979291677475, -0.010452261194586754, 0.005456461571156979, -0.007247483357787132, -0.016980953514575958, -0.028704006224870682, -0.0013541872613132, -0.026940781623125076, -0.021825846284627914, -0.004940202459692955, -0.02273128554224968, 0.01491591613739729, 0.016837988048791885, -0.04622504487633705, 0.015122420154511929, -0.013200348243117332, -0.028418077155947685, -0.020523283630609512, -0.028704006224870682, -0.024272119626402855, -0.005678849760442972, -0.027464983984827995, -0.031197933480143547, -0.0058416700921952724, -0.047972384840250015, -0.04139603674411774, -0.013232117518782616, -0.0371706560254097, -0.03027660958468914, 0.009808923117816448, 0.02069801837205887, 0.02431977353990078, -0.025876494124531746, -0.03869560360908508, 0.038091979920864105, 0.013875455595552921, 0.011222678236663342, -0.015606909058988094, 0.0010206045117229223, -0.03729773312807083, 0.042539749294519424, -0.007231598254293203, 0.034787919372320175, -0.0018773960182443261, -0.0388544537127018, 0.007966275326907635, 0.04450947418808937, -0.006151425652205944, -0.012358448468148708, -0.06919459998607635, -0.017600463703274727, -0.01931603252887726, 0.000885582878254354, 0.06245940923690796, -0.006115684751421213, -0.02898993343114853, -0.03342181816697121, 0.002096806187182665, -0.016552060842514038, -0.0001237284450326115, 0.017806967720389366, -0.004539108835160732, -0.023636722937226295, -0.051244672387838364, 0.02168288268148899, -0.0005822806851938367, -0.0011169066419824958, 0.01545600313693285, -0.011858073994517326, 0.03453376144170761, 0.02114279568195343, 0.012350506149232388, 0.024907516315579414, 0.019792579114437103, 0.025336407124996185, -0.031817443668842316, -0.038091979920864105, -0.010078965686261654, -0.0480041541159153, 0.02932351641356945, -0.039045073091983795, 0.021968809887766838, -0.021222220733761787, -0.012731743045151234, -0.0002475809887982905, -0.0035085761919617653, -0.005726504605263472, -0.01571016199886799, 0.017997585237026215, -0.007318965625017881, -0.012183714658021927, 0.003881871234625578, 0.022238852456212044, -0.022969558835029602, -0.01729864999651909, 0.013105038553476334, -0.008037757128477097, 0.015368635766208172, 0.0169968381524086, -0.002998274052515626, 0.01100028958171606, 0.03408898413181305, 0.03345358744263649, 0.04091949015855789, 0.028545156121253967, 0.03720242530107498, -0.015805469825863838, -0.011357699520885944, 0.0007733958191238344, 0.043492842465639114, -0.013478333130478859, 0.022286508232355118, -0.006175253074616194, 0.013502161018550396, 0.024097386747598648, 0.014995341189205647, -0.013279772363603115, -0.028846969828009605, 0.06296772509813309, 0.020157931372523308, -0.04682867228984833, -0.026813702657818794, -0.0035899863578379154, -0.006365871522575617, 0.01934780180454254, 0.003867971943691373, 0.010555513203144073, 0.0004328633949626237, -0.026051227003335953, 0.015741931274533272, -0.008490476757287979, -0.0001256520044989884, -0.04130072891712189, -0.027163170278072357, -0.017282765358686447, -0.002513784682378173, -0.0046145617961883545, 0.0048647490330040455, 0.01551160030066967, 0.031372666358947754, -0.021698767319321632, 0.0008662231848575175, 0.01136564277112484, -0.013390966691076756, 0.028322767466306686, -0.032341647893190384, 0.034915000200271606, -0.05435810983181, -0.03748835250735283, 0.023874998092651367, 0.062205247581005096, -0.010547569952905178, 0.019379571080207825, -0.019045989960432053, 0.008760519325733185, 0.018950680270791054, 0.011167081072926521, -0.0026368924882262945, -0.00344106531701982, 0.012310793623328209, -0.04025232419371605, 0.0004276511608622968, 0.036916494369506836, 0.0108334980905056, -0.01402636244893074, -0.01772754266858101, 0.0017225183546543121, 0.004888576455414295, -2.3904905901872553e-05, 0.022365931421518326, 0.010499916039407253, -0.0034450367093086243, 0.011961326003074646, 0.0035721156746149063, -0.04759114608168602, -0.02732202038168907, -0.008768461644649506, 0.04619327560067177, 0.03061019256711006, 0.0026785903610289097, 0.006667684763669968, 0.02973652444779873, 0.022906018421053886, -0.017711658030748367, 0.006921843159943819, -0.02697255276143551, -0.009491224773228168, -0.023970305919647217, 0.02314429171383381, -0.008792289532721043, 0.014931801706552505, -0.025225212797522545, -0.015551311895251274, 0.04114187881350517, -0.018537672236561775, 0.0325004942715168, 0.005067281424999237, -0.0142408087849617, -0.017266880720853806, -0.0031948494724929333, -0.015360693447291851, 0.0009540864848531783, 0.019188953563570976, 0.023859111592173576, -0.00685036089271307, -0.025765299797058105, 0.042444441467523575, -0.007044950965791941, -0.015980204567313194, -0.007827281951904297, -0.03281819447875023, 0.01605168730020523, 0.005043454002588987, -0.0019756837282329798, -0.01658383011817932, -0.017934046685695648, 0.029911257326602936, -0.0013581585371866822, -0.013041499070823193, 0.0021921154111623764, -0.001785065047442913, 0.03494676947593689, 0.032659344375133514, 0.020586824044585228, -0.021587572991847992, -0.007199828512966633, 0.019379571080207825, 0.006786821410059929, -0.010118678212165833, 0.020030852407217026, -0.0063619003631174564, -0.00016579859948251396, 0.003687281161546707, 0.012151944451034069, -0.003321928670629859, 0.022572435438632965, 0.006028317846357822, 0.012874707579612732, 0.004662216641008854, 0.02622596174478531, -0.03929923102259636, 0.003361640963703394, -0.0007525468827225268, -0.04581203684210777, -0.014050189405679703, 0.00425318069756031, -0.012501412071287632, -0.012715858407318592, -0.027973299846053123, -0.014701470732688904, 0.005249958019703627, 0.016440866515040398, -0.003832231042906642, -0.00349269132129848, -0.06658948212862015, 0.017791083082556725, -0.01221548393368721, 0.007442073430866003, 0.007767713628709316, -0.024256234988570213, 0.017711658030748367, 0.010658764280378819, 0.0030320293735712767, 0.011627743020653725, -0.02930763177573681, -0.01524949911981821, -0.028497502207756042, -0.0037349360063672066, 0.022365931421518326, 0.0037448639050126076, 0.027274364605545998, -0.04546257108449936, 0.004050648305565119, 0.0070965769700706005, -0.009753325954079628, -0.01836293935775757, 0.00341326673515141, 0.01497151330113411, -0.00850636139512062, 0.04527195170521736, -0.024923400953412056, -0.005666936282068491, -0.03126147389411926, 0.020110277459025383, 0.017489269375801086, 0.021730536594986916, -0.017791083082556725, 0.008863771334290504, 0.03348536044359207, 0.018617097288370132, -0.021190449595451355, -0.008689037524163723, -0.05188006907701492, 0.03253226354718208, -0.0052856989204883575, 0.01856944151222706, -0.021301643922924995, 0.0018962593749165535, 0.030530767515301704, -0.027798566967248917, 0.01804524101316929, -0.014066074974834919, 0.02517755888402462, -0.01582135632634163, 0.01412167213857174, 0.026623083278536797, 0.016631485894322395, -0.02381145767867565, 0.032659344375133514, -0.0072395410388708115, 0.03304058313369751, 0.012334620580077171, -0.005452490411698818, 0.04374700039625168, -0.04247621074318886, 0.022890133783221245, 0.0025038565509021282, 0.001836690935306251, -0.018092894926667213, -0.004495425149798393, -0.00833162758499384, -0.03599517047405243, 0.003800461068749428, -0.02155580185353756, 0.018315283581614494, -0.007676375564187765, 0.014550563879311085, -0.03189687058329582, 0.0007441080524586141, 0.003806418040767312, 0.017346305772662163, 0.019586075097322464, -0.0003047914360649884, -0.010515800677239895, 0.01996731385588646, 0.021698767319321632, 0.04841715842485428, 0.03793312981724739, -0.006028317846357822, 0.02697255276143551, 0.023414336144924164, 0.009356203489005566, 0.007692260667681694, -0.0010652807541191578, -0.02389088273048401, 0.020142046734690666, 0.007378533948212862, -0.022778939455747604, -0.008466648869216442, -0.021396953612565994, 0.01752103865146637, 0.019300147891044617, 0.02997479774057865, 0.008426937274634838, -0.01837882399559021, -0.0018168349051848054, 0.013398909009993076, 0.026480119675397873, 0.00801392924040556, -0.025098133832216263, 0.011611858382821083, 0.018140550702810287, 0.026273615658283234, -0.042539749294519424, 0.03142032399773598, 0.01764811761677265, 0.0075095840729773045, 0.0033179575111716986, 0.014550563879311085, -0.04813123121857643, -0.00690595805644989, 0.0435246117413044, -0.02220708318054676, -0.0013194391503930092, -0.014193153940141201, 0.0338030569255352, -0.01645675115287304, -0.015662506222724915, -0.008141009137034416, 0.027766795828938484, -0.02219119854271412, 0.011222678236663342, -0.0193319171667099, 0.000780841859523207, 0.010484030470252037, -0.025542911142110825, 0.01530509628355503, 0.028179803863167763, -0.04161842539906502, 0.013414793647825718, -0.001213208888657391, -0.015598966740071774, 0.004686044063419104, 0.014542621560394764, -0.018775945529341698, 0.0024720868095755577, -0.004602648317813873, -0.007156145293265581, 0.007910678163170815, -0.02424035035073757, 0.003881871234625578, 0.02187350019812584, 0.007537382654845715, -0.0001406061346642673, -0.045526109635829926, 0.009602419100701809, -0.0023350794799625874, 0.024160925298929214, -0.02941882610321045, 0.007982159964740276, -0.008752577006816864, -0.03726596385240555, -0.009800979867577553, 0.02379557304084301, -0.008426937274634838, -0.020904522389173508, 0.0067034256644546986, 0.016980953514575958, 0.026496004313230515, -0.008164836093783379, -0.0030320293735712767, 0.003506590612232685, -0.012342563830316067, -0.030228955671191216, 0.0115324342623353, 0.001876403228379786, 0.028831085190176964, 0.032659344375133514, 0.01513830479234457, -0.006290418561547995, 0.005214216653257608, -0.03240518644452095, -0.000782331102527678, -0.001394892344251275, 0.018124666064977646, -0.0024423026479780674, 0.004054619465023279, 0.03558216616511345, 0.011167081072926521, -0.03135678172111511, -0.002438331488519907, 0.0062824757769703865, 0.0069337566383183, 0.005357180722057819, 0.019999083131551743, 0.012151944451034069, 0.0021841730922460556, 0.010356951504945755, -0.016377326101064682, 0.023557299748063087, 0.002527683973312378, -0.02358906902372837, -0.0011923599522560835, 0.014193153940141201, 0.02689312770962715, 0.00013092628796584904, 0.014272578060626984, 0.006111713591963053, 0.03462907299399376, 0.009260893799364567, -0.005849612411111593, 0.0030042307917028666, -0.029561789706349373, -0.047432295978069305, -0.026003573089838028, 0.012120175175368786, 0.0169015284627676, -0.04873485863208771, -0.006234821397811174, -0.04120541736483574, 0.012144002132117748, -0.01131004560738802, 0.005702677182853222, -0.033612437546253204, 0.01955430582165718, 0.010213987901806831, 0.008418994024395943, 0.009022620506584644, 0.004670158959925175, 0.00950710941106081, -0.009125872515141964, -0.005730475764721632, 0.006365871522575617, -0.018632981926202774, 0.01922072283923626, -0.0054286629892885685, -0.028386307880282402, 0.00211269105784595, -0.0017662018071860075, -0.016004031524062157, 0.025114018470048904, 0.0588376522064209, -0.008148951455950737, -0.04536725953221321, 0.013875455595552921, -0.013160635717213154, -0.03194452449679375, 0.001969726989045739, 0.0072236559353768826, 0.005452490411698818, -0.004024835303425789, 0.02069801837205887, -0.026511888951063156, 0.0039414395578205585, 0.010491972789168358, 0.012874707579612732, 0.0139628229662776, 0.015781642869114876, -0.007438102271407843, 0.00967390090227127, -0.00860167108476162, 0.005960806738585234, 0.03251637890934944, -0.016424981877207756, -0.00022189212904777378, -0.012414045631885529, 0.02208000421524048, -0.033612437546253204, -0.01605168730020523, -0.033104121685028076, -0.0032663315068930387, 0.0050077131018042564, -0.02219119854271412, 0.015773700550198555, -0.012294908985495567, 0.009046447463333607, -0.03358066827058792, 0.02473278157413006, -0.000756021705456078, -0.04123718664050102, -0.020650364458560944, -0.018315283581614494, 0.026384809985756874, 0.01376426126807928, 0.004892547614872456, -0.014788837172091007, 0.03758366033434868, 0.030880235135555267, 0.047972384840250015, -0.018140550702810287, 0.021841730922460556, 0.04120541736483574, -0.009078217670321465, 0.006135540548712015, 0.013510103337466717, 0.02133341319859028, -0.017822852358222008, 0.019713154062628746, 0.012310793623328209, -0.01996731385588646, 0.011889844201505184, -0.007954360917210579, -0.005130820907652378, 0.004578820895403624, -0.0007093598251231015, -0.01605168730020523, 0.010714361444115639, 0.002823540009558201, 0.006457210052758455, 0.019840233027935028, -0.002438331488519907, -0.0023271371610462666, -0.016067571938037872, -0.000833956990391016, 0.019188953563570976, -0.00950710941106081, -0.020745672285556793, 0.006715339608490467, -0.007386476267129183, 0.013406851328909397, -0.018077010288834572, 0.013422735966742039, -0.012930304743349552, 0.019887888804078102, 0.04301629588007927, -0.006898015737533569, -0.010396664030849934, -0.014431427232921124, 0.009427685290575027, -0.0007475828751921654, -0.022588320076465607, -0.025098133832216263, -0.019681384786963463, 0.01645675115287304, -0.01519390195608139, -0.005146706011146307, -0.0010990361915901303, 0.03888622298836708, 0.004122130107134581, -0.030737271532416344, -0.03332651033997536, -0.030626077204942703, 0.054453421384096146, -0.031150279566645622, 0.0014524750877171755, 0.005988605320453644, 0.032659344375133514, -0.00037974826409481466, 0.027226710692048073, 0.021794075146317482, 0.0223182775080204, -0.03675764799118042, 0.051911838352680206, -0.025209328159689903, 0.020523283630609512, -0.026400696486234665, -0.016837988048791885, -0.03974400833249092, -0.018617097288370132, 0.0033120005391538143, 0.019586075097322464, 0.010356951504945755, -0.02686135843396187, 0.0058853537775576115, -0.030038336291909218, 0.0186806358397007, -0.0005892303306609392, 0.014423484914004803, 0.006044202484190464, 0.009332375600934029, 0.004447770770639181, -0.01370072178542614, 0.02208000421524048, -0.007318965625017881, -0.023986192420125008, -0.012509355321526527, -0.03153151646256447, -0.005933008156716824, -0.0037210367154330015, 0.0075731235556304455, 0.05464404076337814, -0.017886392772197723, -0.01274762861430645, 0.00414595752954483, 0.008911426179111004, 0.001431626151315868, -0.028767544776201248, 0.007025094702839851, -0.025352291762828827, 0.024828091263771057, 0.002527683973312378, -0.004896518774330616, 0.02655954472720623, -0.009276778437197208, -0.022016463801264763, -0.0061553968116641045, -0.0056192814372479916, 0.007342792581766844, -0.03197629377245903, -0.011294160038232803, 0.016393212601542473, 0.010412548668682575, -0.0033417847007513046, 0.03955338895320892, -0.007056864444166422, 0.014336117543280125, -0.010968520306050777, -0.0043882024474442005, -0.02187350019812584, -0.024288004264235497, 0.020840981975197792, 0.0005246979417279363, -0.03815551847219467, -0.00961036141961813, -0.014900031499564648, -0.015154190361499786, -0.03729773312807083, 0.0008915397338569164, 0.04730521887540817, -0.023954421281814575, -0.007731972727924585, -0.04787707328796387, -0.0006016403785906732, -0.012501412071287632, -0.015606909058988094, -0.012985901907086372, -0.023334911093115807, 0.004602648317813873, 0.01142123993486166, -0.0230648685246706, 0.00812115240842104, -0.015654563903808594, 0.013788089156150818, -0.006004490423947573, -0.027449099346995354, -0.027480868622660637, -0.013351254165172577, -0.04187258332967758, -0.00552397221326828, 0.021285759285092354, -0.02242947183549404, 0.07307051867246628, -0.0005222159088589251, 0.002372806193307042, 0.01582929864525795, -0.009920116513967514, 0.01880771666765213, 0.016647370532155037, -0.007668433245271444, 0.01503505278378725, -0.021174564957618713, -0.009689785540103912, -0.009578592143952847, 0.01248552743345499, 0.03494676947593689, -0.008927310816943645, -0.00544454762712121, 0.051784757524728775, 0.011683340184390545, -0.011127368547022343, -0.017806967720389366, -0.00346489273943007, -0.005925065837800503, 0.006592231336981058, 0.005019627045840025, 0.005488231312483549, 0.012016923166811466, -0.02379557304084301, -0.022810708731412888, -0.016710909083485603, 4.573112528305501e-05, 0.0054485187865793705, -0.007156145293265581, -0.019188953563570976, -0.007179972715675831, -0.05801163613796234, -0.026527775451540947, 0.0014683599583804607, -0.0031948494724929333, 0.017393959686160088, -0.033930134028196335, 0.014383772388100624, 0.027036091312766075, -0.018839485943317413, 0.01582929864525795, -0.005833727773278952, 0.012938247062265873, -0.00411815894767642, 0.015591024421155453, -0.011651570908725262, 0.0025356262922286987, -0.0011248490773141384, 0.007255425676703453, 0.0026686624623835087, -0.027226710692048073, -0.021063370630145073, -0.00844282191246748, 0.02389088273048401, -0.022159429267048836, -0.012088404968380928, 0.04927494376897812, 0.010746131651103497, 0.0030419575050473213, -0.018553556874394417, -0.021714651957154274, 0.007358677685260773, -0.005400864407420158, -0.011405354365706444, 0.0035482884850353003, 0.008792289532721043, 0.004419972188770771, -0.008911426179111004, -0.0039056986570358276, 0.03758366033434868, 0.014550563879311085, -0.008919368498027325, -0.009427685290575027, -0.010555513203144073, -0.010904980823397636, 0.03475615009665489, 0.008363396860659122, 0.03304058313369751, -0.04749583452939987, -0.0021067343186587095, 0.0027282307855784893, 0.007485756650567055, 0.020110277459025383, 0.019808463752269745, -0.016552060842514038, 0.012128117494285107, -1.912702646222897e-05, 0.021825846284627914, -0.002619022037833929, 0.019411342218518257, 0.015146247111260891, 0.06258648633956909, 0.028831085190176964, 0.0062824757769703865, -0.02030089497566223, -0.017457500100135803, 0.006755051668733358, 0.006079943384975195, 0.0007659497787244618, 0.03205571696162224, 0.017378075048327446, 0.006477065850049257, 0.003989094402641058, 0.009475340135395527, 0.01858532801270485, 0.001418719650246203, 0.008097325451672077, 0.01869652234017849, 0.02431977353990078, 0.00544454762712121, 0.0046582454815506935, -0.005647080019116402, -0.004566907417029142, 0.0047853244468569756, 0.008585785515606403, -0.02187350019812584, -0.02273128554224968, -0.0001373795239487663, -0.015741931274533272, -0.012310793623328209, 0.00950710941106081, 0.00955476425588131, 0.03284996375441551, 0.011016175150871277, 0.016282018274068832, -0.02441508322954178, 0.04886193573474884, -0.013319484889507294, -0.012564951553940773, -0.0052420152351260185, 0.008768461644649506, -0.014359945431351662, -0.015980204567313194, 0.007755800150334835, -0.017806967720389366, -0.008268088102340698, -6.670414586551487e-05, 0.003363626543432474, 0.021809961646795273, -0.0011953383218497038, -0.00860961340367794, -0.011770707555115223, 0.004048662725836039, -0.019204838201403618, -0.02093629166483879, -0.008871713653206825, 0.005063310265541077, -0.002213957253843546, -0.006830505095422268, -0.0029287775978446007, -0.010523742996156216, -0.017123917117714882, 0.010102793574333191, -0.02654366008937359, -0.00405859062448144, 0.015781642869114876, 0.008990850299596786, -0.001681813271716237, -0.004562936257570982, 0.020666249096393585, 0.02209588885307312, -0.0170921478420496, -0.015416290611028671, -0.002617036458104849, 0.007704174146056175, -0.002597180427983403, -0.0014048203593119979, 0.00844282191246748, 0.003568144515156746, 0.03558216616511345, -0.029577674344182014, -0.010674649849534035, 0.009125872515141964, 0.02654366008937359, 0.0015537412837147713, -0.009237066842615604, -0.00690595805644989, -0.010301354341208935, -0.018315283581614494, 0.0225088968873024, 0.010476088151335716, -0.008466648869216442, 0.01003925409168005, 0.019697269424796104, 0.005944922100752592, -0.006651799660176039, -0.011437124572694302, -0.017981700599193573, 0.0014872233150526881, -0.017123917117714882, 0.011659513227641582, -0.0076803467236459255, 0.00871286541223526, 0.010110735893249512, 0.002227856544777751, 0.025479372590780258, -0.0018148492090404034, -0.00430480670183897, -0.007438102271407843, -0.02147637866437435, 0.007044950965791941, -0.006210993975400925, 0.0003075216372963041, -0.022048234939575195, 0.006564432755112648, -0.006536634173244238, -0.012223427183926105, -0.021381068974733353, -0.026082998141646385, 0.0049719722010195255, 0.014105786569416523, -0.02911701239645481, 0.026384809985756874, 0.0020134104415774345, -0.00700921006500721, 0.00701318122446537, 0.008188663050532341, 0.0055795693770051, -0.01720334216952324, -0.00405859062448144, 0.02994302660226822, 0.04921140521764755, -0.02559056505560875, -0.024097386747598648, 0.004793267231434584, -0.005929036997258663, 0.01964961551129818, 0.050831664353609085, 0.004046677146106958, -0.010301354341208935, -0.01901421882212162, 0.029720637947320938, 0.009681843221187592, 0.00430480670183897, 0.0031054969877004623, 0.00834751222282648, -0.020237356424331665, -0.03092789091169834, 0.0356774739921093, 0.014582334086298943, -0.024510392919182777, 0.0029426768887788057, -0.007815368473529816, 0.009689785540103912, -0.011008231900632381, 0.01104794442653656, -0.004892547614872456, -0.0038798856548964977, -0.012620548717677593, 0.02273128554224968, -0.023620838299393654, 0.026480119675397873, 0.0007798490696586668, 0.018887139856815338, -0.012183714658021927, 0.012549066916108131, 0.020030852407217026, 0.010579340159893036, -0.06319011002779007, 0.014280520379543304, 0.013208290562033653, 0.005150677170604467, -0.006373814307153225, 0.0061553968116641045, 0.001849597436375916, -0.018140550702810287, 0.005432634148746729, 0.03323119878768921, 0.007978188805282116, -0.004670158959925175, -0.01742573082447052, 0.006465152371674776, -0.018188204616308212, -0.005980663001537323, 0.005003741942346096, 0.022016463801264763, 0.00971361342817545, -0.013073268346488476, 0.0027858135290443897, -0.009038505144417286, -0.02030089497566223, -0.0006756044458597898, 0.014693527482450008, -0.01677444949746132, -0.01752103865146637, 0.001500129816122353, -0.030737271532416344, 0.038282595574855804, -0.0032762596383690834, 0.020586824044585228, -0.008081440813839436, -0.008959081023931503, 0.034057214856147766, 0.048194773495197296, -0.00992805976420641, 0.027560293674468994, -0.009221181273460388, -0.0011228634975850582, 0.0035621877759695053, 0.01291442010551691, -0.000781338254455477, 0.02594003453850746, -0.0019121442455798388, -0.02082509733736515, -0.02273128554224968, 0.0063698431476950645, -0.0007649569888599217, -0.011770707555115223, -0.024573933333158493, 0.006715339608490467, 0.005662965122610331, -0.027877990156412125, -0.010253699496388435, -0.011611858382821083, -0.0055795693770051, -0.0009987627854570746, 0.029339401051402092, 0.007330879103392363, -0.025304637849330902, 0.0278303362429142, -0.03167448192834854, 0.00425318069756031, 0.018537672236561775, 0.03834613785147667, -0.0019985183607786894, -0.0009858562843874097, -0.014494966715574265, -0.0077875698916614056, -0.0002046421286650002, 0.005857555195689201, -0.005952864419668913, -0.002686532912775874, -0.006171281915158033, -0.013216232880949974, 0.0017175542889162898, -0.015448060818016529, -0.00026160437846556306, 0.010531685315072536, -0.015702219679951668, -0.016115225851535797, -0.004554993472993374, 0.012008980847895145, -0.004709871485829353, -0.03675764799118042, -0.018077010288834572, 0.0031710222829133272, 0.030991429463028908, 0.002023338573053479, -0.007934505119919777, -0.00098833825904876, -0.03323119878768921, -0.0029486336279660463, -0.02443096786737442, 0.024669241160154343, 0.02017381601035595, -0.0403476320207119, -0.019061874598264694, 0.00939591508358717, 0.004400115925818682, 0.009650073945522308, 0.006790792569518089, -0.026368925347924232, 0.005226130597293377, -0.007402360904961824, -0.025749415159225464, 0.011993096210062504, -0.014772952534258366, -0.023207832127809525, -0.006131569389253855, -0.0056192814372479916, 0.0064055840484797955, 0.0022477125748991966, 0.02263597585260868, 0.012676145881414413, -0.00955476425588131, 0.011786592192947865, 0.031595055013895035, 0.020904522389173508, 0.03497853875160217, 0.012938247062265873, 0.0012390217743813992, 2.123673948517535e-05, -0.01625818945467472, 0.012461700476706028, -0.024510392919182777, 0.00685036089271307, 0.014780894853174686, -0.006349986884742975, -0.00351850432343781, -0.015598966740071774, -0.025987688452005386, 0.014232865534722805, 0.01147683709859848, 0.0024184752255678177, 0.022493012249469757, -0.01220754161477089, 0.015797527506947517, 0.016965067014098167, -0.0373612716794014, -0.007362648844718933, 0.007803454529494047, 0.00961036141961813, -0.03313589096069336, -0.011032059788703918, 0.016917413100600243, 0.002722273813560605, 0.014336117543280125, -0.0035721156746149063, 0.014169326052069664, -0.00690595805644989, 0.0005040972027927637, 0.01088909525424242, 0.0011556261451914907, -0.049147866666316986, -0.023747917264699936, -0.02327137067914009, -6.918616236362141e-06, -0.012906476855278015, 0.0037746482994407415, 0.002698446623980999, -0.019061874598264694, -0.019792579114437103, -0.01238227542489767, 0.008681095205247402, 0.004205525852739811, 0.008816116489470005, -0.019252492114901543, -0.004016892984509468, 0.013136807829141617, -0.02859281189739704, 0.00552397221326828, -0.02072978764772415, -0.009252951480448246, -0.0015874967211857438, 0.02463747188448906, -0.024049730971455574, 0.001996532781049609, 0.004431885667145252, 0.02006262168288231, -0.006500893272459507, -0.03242107108235359, 0.010317238979041576, -0.011278275400400162, 0.009260893799364567, -0.01764811761677265, -0.01563073694705963, 0.014939744025468826, 0.00571061996743083, 0.02975240908563137, -0.004098303150385618, -0.004412029404193163, -0.01121473591774702, -0.0034053244162350893, -0.0085460739210248, 0.006207022815942764, -0.030324265360832214, -0.0036177849397063255, -0.008951138705015182, -0.023668494075536728, -0.011683340184390545, -0.0049084327183663845, 0.009578592143952847, 0.02358906902372837, 0.015606909058988094, -0.0017235111445188522, 0.04044294357299805, -0.02455804869532585, 0.010730247013270855, 0.012850879691541195, -0.009816865436732769, -0.02665485441684723, -0.026003573089838028, -0.012874707579612732, -0.008244260214269161, -0.007882879115641117, -0.00833162758499384, -0.010626995004713535, 0.027369674295186996, -0.010253699496388435, -0.0031988206319510937, 0.01072230376303196, -0.0035999142564833164, -0.013343311846256256, -0.016647370532155037, -0.006349986884742975, 0.012406103312969208, -0.006512806750833988, -0.005099051166325808, -0.002007453702390194, -0.007382505107671022, 0.03345358744263649, 0.031706251204013824, 0.019188953563570976, -0.021222220733761787, 0.013383024372160435, -0.032659344375133514, 0.0035363747738301754, 0.014653815887868404, -0.025145789608359337, -0.013661010190844536, -0.008585785515606403, 0.03961692750453949, -0.016409097239375114, 0.01753692328929901, -0.0036296984180808067, -0.002972461050376296, -0.020745672285556793, -0.0032107343431562185, 0.009419742971658707, 0.011246506124734879, 0.012549066916108131, 0.007001267280429602, 0.02900581806898117, 0.021222220733761787, -0.0009570649126544595, 0.0013373096007853746, -0.011834247037768364, 0.018410593271255493, -0.0055716270580887794, -0.014550563879311085, 0.015146247111260891, -0.010674649849534035, 0.006488979794085026, 0.008244260214269161, 0.004618533421307802, 0.004924317356199026, -0.012302851304411888, 0.0007872951100580394, -0.01729864999651909, 0.0038719431031495333, -0.004042705986648798, -0.023509643971920013, -0.008514303714036942, -0.016726793721318245, 0.009221181273460388, 0.006417497526854277, -0.030546654015779495, -0.004392173606902361, 0.004423943348228931, 0.005615310277789831, -0.0027997128199785948, -0.004157871473580599, 0.012072520330548286, -0.007215713616460562, 0.0019439139869064093, -0.02338256500661373, -0.01136564277112484, -0.001994547201320529, 0.012048693373799324, -0.012707916088402271, -0.0026110797189176083, -0.010563455522060394, -0.008919368498027325, 0.014868262223899364, -0.022381817921996117, -0.00014010973973199725, 0.02508224919438362, 0.010317238979041576, -0.0019647630397230387, -0.004789296071976423, -0.011770707555115223, -0.0035641733556985855, -0.0011298131430521607, 0.003117410698905587, 0.01226313877850771, 0.018934795632958412, 0.010595224797725677, 0.0016718852566555142, 0.004261123016476631, 0.0005495180957950652, -0.0010503886733204126, -0.011143254116177559, -0.003570130094885826, -0.02424035035073757, -0.009785095229744911, 0.0005038490053266287, 0.07122787088155746, -0.0026269645895808935, 0.0017562736757099628, 0.0032782452180981636, 0.008005986921489239, -0.01408195961266756, -0.009356203489005566, 0.030308380722999573, 0.025685874745249748, -0.016226420179009438, 0.025860609486699104, -0.029911257326602936, -0.009094102308154106, 0.0004207015153951943, -0.020046737045049667, 0.020523283630609512, 0.008561958558857441, 0.009062333032488823, -0.004821065813302994, 0.00018317269859835505, 0.0230648685246706, 0.003073727246373892, -0.013359196484088898, 0.024685127660632133, -0.0021424752194434404, 0.012175772339105606, -0.0044080582447350025, 0.0036277128383517265, 0.008593727834522724, 0.015273327007889748, 0.005452490411698818, -0.004527194891124964, -0.0012201585341244936, -0.026082998141646385, -0.003794504329562187, 0.017266880720853806, -0.00020377342298161238, 0.002543568843975663, 0.002337065292522311, 0.01744161546230316, -0.007604893296957016, 0.0035502740647643805, 0.00928472075611353, -0.0010106764966621995, 0.00706083606928587, -0.009403858333826065, -0.0012836981331929564, -0.003961295820772648, -0.000586251902859658, -0.020475629717111588, -0.024145040661096573, -0.01626613177359104, -0.002440317068248987, 0.008426937274634838, 0.02123810537159443, 0.00987246260046959, -0.00806952640414238, 0.005150677170604467, -0.002436345675960183, 0.0005534893134608865, -0.01374837663024664, 0.013351254165172577, -0.020443860441446304, -0.028497502207756042, 0.01412961445748806, -0.018760060891509056, -0.010523742996156216, 0.002748086815699935, 0.011794534511864185, 0.008141009137034416, -0.002462158678099513, 0.014352003112435341, 0.010603167116641998, 0.006314245983958244, -0.016297902911901474, 0.0031988206319510937, -0.0023291227407753468, 0.006898015737533569, -0.01561485230922699, -0.000859273539390415, 0.005019627045840025, 0.014661758206784725, -0.012811168096959591, -0.012032807804644108, 0.005794015247374773, -0.012557009235024452, 0.005214216653257608, -0.009078217670321465, 0.013303599320352077, -0.01584518328309059, 0.006381756626069546, -0.007481785491108894, 0.00024063134333118796, -0.007843166589736938, 0.02347787469625473, 0.007311022840440273, -0.022159429267048836, 0.010920865461230278, 0.004654274322092533, -0.006536634173244238, -0.015328924171626568, 0.007779627572745085, 0.004439827986061573, 0.016837988048791885, 0.010484030470252037, -0.018760060891509056, 0.026813702657818794, -0.005861526355147362, -0.016488520428538322, 0.0036038856487721205, -0.006481037009507418, -0.007251454517245293, -0.01871240697801113, 0.007390447426587343, -0.013041499070823193, 0.017695773392915726, 0.009006735868752003, 0.0018198132747784257, -0.03200806304812431, -0.0224135871976614, 0.015670448541641235, 0.011993096210062504, -0.012842937372624874, 0.01995142735540867, -0.0011556261451914907, -0.0015557268634438515, -0.02784622088074684, -0.013518045656383038, -0.017282765358686447, -0.009356203489005566, 0.008403109386563301, 0.026480119675397873, 0.02136518433690071, -0.003036000533029437, -0.0080099580809474, -0.009403858333826065, 0.008696979843080044, -0.012064578011631966, 0.013343311846256256, 0.008625498041510582, -0.0039136409759521484, -0.0022596262861043215, -0.0044080582447350025, 0.019188953563570976, 0.006222907453775406, 0.007624749559909105, -0.011683340184390545, -0.013192404992878437, 0.01258877944201231, 0.000664683582726866, 0.01550365798175335, -0.02984771691262722, -0.0005564677412621677, 0.002863252302631736, 0.015392463654279709, 0.015217729844152927, -0.009642131626605988, 0.0008245253120549023, -0.011198851279914379, -0.021857615560293198, 0.012549066916108131, 0.0006150432745926082, -0.028418077155947685, 0.0007073742453940213, -0.002396633615717292, 0.033294741064310074, -0.0025336407124996185, -0.00928472075611353, 0.019617846235632896, 9.996314474847168e-05, 0.010897037573158741, 0.00046860441216267645, -0.0066398861818015575, -0.017028607428073883, 0.002549525583162904, 0.015781642869114876, -0.013565700501203537, 0.004638389218598604, -0.010055138729512691, 0.016806218773126602, -0.002867223462089896, -0.001603381591849029, 0.010714361444115639, -0.0034887201618403196, 0.0015219715423882008, 0.0008260145550593734, 0.010587282478809357, 0.009125872515141964, -0.007835224270820618, -0.0012300865491852164, 9.617807336326223e-06, 0.009951886720955372, -0.008832002058625221, -0.0022060147020965815, 0.002605122746899724, -0.009793037548661232, -0.009109986945986748, 0.022127658128738403, 0.01412167213857174, -0.013788089156150818, -0.009221181273460388, -0.005790044087916613, 0.010642879642546177, 0.00047257562982849777, -0.005996548105031252, -0.015686333179473877, -0.005690763704478741, -0.006087886169552803, -0.016011973842978477, -0.0009272807510569692, -0.04454124718904495, -0.020443860441446304, 0.001889309729449451, -0.007414274848997593, -0.020142046734690666, 0.007295138202607632, 0.013383024372160435, -0.01828351430594921, 0.018664751201868057, 0.00813306588679552, -0.0001428399555152282, 0.028005069121718407, -0.005269813816994429, -0.009570648893713951, 0.0030697560869157314, -0.010420490987598896, 0.0062189362943172455, -0.014757067896425724, 0.02603534236550331, 0.007795512210577726, 0.016329672187566757, -0.005400864407420158, -0.020253241062164307, 0.01136564277112484, 0.012279024347662926, 0.005559713114053011, 0.00987246260046959, -0.004547051154077053, 0.020126162096858025, -0.0018317269859835505, -0.010897037573158741, 0.0070965769700706005, -0.02028501033782959, -0.00014073024794925004, 0.012938247062265873, -0.00972155574709177, 0.010873210616409779, -0.020475629717111588, -0.014645873568952084, -3.113377533736639e-05, 0.01518595963716507, 0.014717355370521545, -0.012620548717677593, 0.010491972789168358, 0.02495517022907734, 0.03624933212995529, 0.02868811972439289, 0.008808174170553684, 0.012525239959359169, -0.005615310277789831, 0.005381008144468069, 0.0018684607930481434, -0.013446563854813576, -0.021015716716647148, 0.01105588674545288, 0.022540666162967682, -0.0029347343370318413, 0.02134929969906807, -0.0047019291669130325, 0.002501870971173048, 0.0013442592462524772, 0.0011397412745282054, -0.00828397274017334, 0.016869759187102318, 0.0023152234498411417, -0.004995799623429775, -0.010674649849534035, -0.006592231336981058, 0.0010444318177178502, 0.009896289557218552, -0.014113728888332844, -0.0040049790404737, 0.013081210665404797, -0.01583724096417427, 0.005813871510326862, -0.025431716814637184, -0.0011238562874495983, 0.023763803765177727, -0.0042809792794287205, 0.002837439300492406, 0.009276778437197208, -0.0224135871976614, 0.004773410968482494, 0.0008513311040587723, -0.007179972715675831, 0.006381756626069546, 0.0057622455060482025, 0.005964777898043394, 0.02030089497566223, -0.0019607916474342346, -0.024145040661096573, 0.0015170074766501784, -0.001225122483447194, -0.0169968381524086, 0.00012081207387382165, 0.01944311149418354, 0.0024045759346336126, -0.019268378615379333, -0.0015080722514539957, 0.005329382140189409, 0.010055138729512691, -0.003947396297007799, 0.003014158923178911, 0.010984404943883419, -0.00033258998882956803, -0.010325182229280472, 0.006210993975400925, 0.00400895019993186, 0.006230850238353014, -0.0063896989449858665, 0.0009178490727208555, 0.00571459112688899, -0.0004730720247607678, 0.01658383011817932, -0.0003467374772299081, 0.007628720719367266, -0.015106535516679287, 0.018728291615843773, 0.008998792618513107, -0.007874936796724796, 0.011024117469787598, -0.006060087587684393, -0.007513555232435465, -0.01534480880945921, 0.006421468686312437, 0.010817613452672958, 0.005512058734893799, -0.005543828476220369, -0.03272288292646408, 0.011190908960998058, -0.015591024421155453, -0.012985901907086372, 0.030101876705884933, -0.010563455522060394, -0.005917123518884182, 0.009753325954079628, 0.010658764280378819, -0.00576621713116765, -0.013788089156150818, 0.027004322037100792, 0.000520726724062115, -0.0254952572286129, 0.004404087085276842, -0.0054286629892885685, -0.007577095180749893, 0.004134044051170349, -0.027274364605545998, -0.0030439430847764015, -0.01626613177359104, -0.0014395685866475105, -0.021603457629680634, 0.003373554674908519, -0.009181469678878784, -0.010380779393017292, 0.0005986620089970529, 0.020555054768919945, 0.01238227542489767, 0.01259672176092863, -0.019411342218518257, 0.004292892757803202, 0.0018198132747784257, -0.010571397840976715, -0.010213987901806831, -0.004646332003176212, -0.0003866979095619172, 0.0071958573535084724, 0.018410593271255493, -0.0029744466301053762, -0.003282216377556324, 0.010563455522060394, 0.020634477958083153, 0.011111483909189701, -0.012874707579612732, 0.01669502444565296, 0.020126162096858025, 0.004189641214907169, 0.018204089254140854, 0.03545508533716202, -0.0025872522965073586, 0.0012836981331929564, 0.02358906902372837, 0.016536176204681396, 0.006099799647927284, -0.005782101769000292, -0.003929526079446077, -0.0005797986523248255, -0.00839516706764698, 0.014463196508586407, 0.0021325470879673958, -0.022159429267048836, -0.002904950175434351, 0.004002993460744619, -0.008569900877773762, 0.008569900877773762, -0.004002993460744619, -0.03412075340747833, 0.009109986945986748, 0.016536176204681396, 0.02697255276143551, -0.003945410717278719, 0.005996548105031252, -0.012048693373799324, -0.007874936796724796, 0.011707168072462082, -0.006488979794085026, 0.00682653347030282, 0.02644835039973259, -0.02018970251083374, 0.014216980896890163, 0.006731224246323109, 0.015781642869114876, 0.0004140000673942268, 0.01100028958171606, 0.00411418778821826, 0.010301354341208935, 0.031722135841846466, 0.02538406290113926, 0.00143460463732481, 0.014963570982217789, 0.005408806726336479, 0.00844282191246748, -0.0014683599583804607, 0.029148781672120094, 0.006751080509275198, 0.0024840005207806826, -0.0014405613765120506, 0.006294389721006155, -0.024097386747598648, 0.0005495180957950652, 0.02370026335120201, -0.005825785454362631, -0.004936231300234795, 0.007140260189771652, 0.003915626555681229, 0.01492385845631361, 0.02751263789832592, 0.004642360378056765, 0.037551891058683395, -0.007735943887382746, -0.015376578085124493, 0.0005877411458641291, 0.024192694574594498, -0.000273269833996892, -0.004558965098112822, -0.0369800366461277, -0.006941698957234621, 0.003089612117037177, 0.01137358509004116, 0.011246506124734879, -0.0019915688317269087, -0.005476317368447781, -0.0027937558479607105, 0.005253929179161787, 0.0013303599553182721, -0.013732491992413998, 0.020475629717111588, -0.006616058759391308, 0.01815643534064293, -0.010865268297493458, 0.01731453649699688, -0.007072749547660351, -0.010746131651103497, 0.002460173098370433, -0.010976462624967098, -0.0030776984058320522, 0.025447601452469826, 0.0035760870669037104, 0.007501641754060984, 0.0010245757875964046, -0.017028607428073883, -0.009967771358788013, -0.0007053886074572802, -0.002837439300492406, 0.001838676631450653, 0.016965067014098167, -0.01003925409168005, -0.0369800366461277, 0.019713154062628746, 0.0033934107050299644, 0.008824058808386326, -0.006107741966843605, -0.003560202196240425, 0.02285836450755596, -0.008029814809560776, -0.01677444949746132, -0.010285469703376293, -0.0001088363496819511, 0.020777443423867226, 0.003828259650617838, 0.0025078277103602886, 0.0038103892002254725, -0.00011975722009083256, -0.010523742996156216, 0.013383024372160435, 0.0020124176517128944, 0.0008781368378549814, -0.019093643873929977, 0.002998274052515626, 0.020904522389173508, 0.010285469703376293, 0.02517755888402462, -0.004562936257570982, -0.012842937372624874, 0.018108779564499855, -0.01836293935775757, -0.007585037499666214, 0.01667913980782032, 0.009221181273460388, 0.011413296684622765, -0.0018148492090404034, -3.169222691212781e-05, -0.007152174133807421, 0.01121473591774702, -0.011667455546557903, -0.005897267255932093, 0.002160345669835806, 0.014042247086763382, 0.009753325954079628, -0.0162502471357584, 2.0088808014406823e-05, -0.013327427208423615, 0.0015865039313212037, 0.015273327007889748, -0.014558506198227406, 0.010611110366880894, 0.00945151224732399, 0.00568679254502058, -0.019300147891044617, 0.030641961842775345, -0.00806952640414238, -0.01583724096417427, -0.004570878576487303, 0.019157184287905693, -0.004797238390892744, -0.018537672236561775, -0.018839485943317413, 0.004431885667145252, 0.009364145807921886, -0.003691252553835511, -0.0013889354886487126, -0.015678390860557556, -0.016178766265511513, 0.01890302449464798, 0.01381191611289978, 0.009356203489005566, -0.012056635692715645, -0.0169968381524086, -0.008561958558857441, 0.0038501014932990074, 0.013168578036129475, 0.009467397816479206, -0.010420490987598896, -0.011564203538000584, 0.014574390836060047, 1.6846675862325355e-05, 0.009332375600934029, 0.006032289005815983, 0.010809671133756638, 0.006377785466611385, 0.01679033413529396, -0.006087886169552803, 0.00695758406072855, -0.022874249145388603, -0.009443569928407669, 0.0284816175699234, -0.001328374375589192, -0.009793037548661232, -0.015670448541641235, 0.01275557093322277, -0.013057383708655834, -0.0027044033631682396, -0.0012846909230574965, 0.004495425149798393, 0.0032762596383690834, 0.010539627633988857, 0.007144231349229813, -0.021619342267513275, 0.01987200416624546, 0.004002993460744619, -0.04416000843048096, 0.007457958068698645, -0.007565181236714125, 0.012906476855278015, -0.021635226905345917, 0.00955476425588131, -0.009141757152974606, -0.0032921445090323687, 0.0004182195116300136, -0.014518793672323227, -0.03377128764986992, 0.010754073970019817, 0.002551511162891984, -0.006143483333289623, 0.007140260189771652, -0.012827052734792233, -0.004920346196740866, -0.008141009137034416, -0.020110277459025383, -0.016837988048791885, -0.002577324165031314, -0.0021583600901067257, 0.0034827631898224354, 0.03196040913462639, -0.004288921598345041, -0.001561683719046414, -0.024288004264235497, 0.016440866515040398, -0.0018704463727772236, 0.010031310841441154, 0.025558795779943466, -0.029688868671655655, -0.022604206576943398, 0.00965801626443863, 0.007839195430278778, -0.017934046685695648, -0.011627743020653725, 0.01280322577804327, -0.004495425149798393, 0.016488520428538322, -0.01226313877850771, 0.01744161546230316, -0.014749124646186829, -0.006659742444753647, -0.022381817921996117, -0.01210428960621357, -0.013772203586995602, -0.017679888755083084, -0.0013770218938589096, 0.007934505119919777, -0.0020412090234458447, 0.014502909034490585, -0.005202303174883127, -0.0008443814585916698, 0.00967390090227127, -8.159624121617526e-05, -0.011754821985960007, 0.0018178276950493455, -0.017473384737968445, -0.008768461644649506, 0.02581295371055603, -0.011143254116177559, -0.004682072903960943, -0.015368635766208172, 0.00988834723830223, -0.004670158959925175, 5.187411079532467e-05, 0.02157168835401535, -0.01828351430594921, 0.026051227003335953, -0.008053641766309738, 0.008824058808386326, -0.02624184638261795, 0.0160199161618948, 0.014439369551837444, -0.012255196459591389, -0.010984404943883419, 0.014995341189205647, 0.01847413368523121, 0.0070528932847082615, -0.0007361656171269715, 0.01666325516998768, 0.014209038577973843, -0.019363686442375183, 0.014502909034490585, -0.0058853537775576115, 0.008466648869216442, -0.007112461607903242, -0.009165584109723568, -0.005901238415390253, -0.03672587871551514, 0.0019260435365140438, 0.01581341214478016, -0.02919643744826317, -0.009848634712398052, -1.2960771528014448e-05, -0.01142918225377798, -0.0070330374874174595, -0.025574680417776108, -0.0138675132766366, 0.006751080509275198, -0.005992576479911804, -0.02274717018008232, -0.003020115662366152, -0.009165584109723568, 0.017568694427609444, 0.005452490411698818, -0.01094469241797924, 0.01104000210762024, -0.020316781476140022, -0.007966275326907635, 0.000358154735295102, -0.015702219679951668, 0.00928472075611353, 0.001171511015854776, 0.0023211801890283823, -0.0010454246075823903, 0.027576178312301636, 0.01815643534064293, 0.023843226954340935, 0.001510057831183076, -0.00409036036580801, -0.01656794548034668, 0.004940202459692955, 0.017568694427609444, -0.012684089131653309, -0.013676894828677177, 0.01546394545584917, -0.009125872515141964, 0.005075223743915558, 0.0037190511357039213, 0.015265383757650852, 0.0009838707046583295, -0.004745612386614084, 0.02381145767867565, -0.0036416121292859316, -0.018934795632958412, 0.0027381586842238903, 0.02844984643161297, -0.012906476855278015, 0.0034430508967489004, -0.014717355370521545, -0.010396664030849934, -0.021508147940039635, -0.0005242015467956662, -0.007942447438836098, -0.0022655832581222057, -0.019204838201403618, -0.018760060891509056, 0.022127658128738403, 0.014709413051605225, -0.00811718124896288, -0.022651860490441322, -0.006810648832470179, 0.003333842381834984, 0.015686333179473877, 0.0021285759285092354, -0.023239601403474808, 0.010206044651567936, 0.008744634687900543, 0.008188663050532341, -0.012342563830316067, -0.004416001029312611, 0.020523283630609512, 0.011643627658486366, 0.022270623594522476, -0.006492950953543186, 0.0085460739210248, 0.017235111445188522, 0.014590276405215263, 0.024303888902068138, 0.006457210052758455, 0.010356951504945755, -0.020364435389637947, 0.01221548393368721, 0.0012390217743813992, -0.003101525828242302, -0.008156893774867058, 6.806926103308797e-05, -0.011333872564136982, -0.007227627094835043, 0.001458431943319738, -0.015416290611028671, -0.021619342267513275, -0.018188204616308212, -0.0034629071597009897, -0.013486276380717754, 0.004233324434608221, 0.022143544629216194, -0.01094469241797924, 0.02327137067914009, -0.0010960577055811882, 0.0042452383786439896, -0.04377876967191696, -0.009522994980216026, -0.020142046734690666, -0.015646621584892273, 0.03205571696162224, 0.0036455835215747356, 0.013851628638803959, 0.01412961445748806, -0.003828259650617838, -0.001563669415190816, -0.03176978975534439, 0.011349757201969624, 0.01910952851176262, 0.01613905280828476, 0.023970305919647217, 0.0023628780618309975, -0.003927540499716997, -0.01385957095772028, 0.011445066891610622, 0.0047853244468569756, 0.016965067014098167, 0.0012181728379800916, -0.008681095205247402, -0.003685295581817627, -0.012993844226002693, 0.026400696486234665, -0.015106535516679287, 0.013049441389739513, 0.005218187812715769, 0.023843226954340935, -0.011063829064369202, -0.010372836142778397, 0.01534480880945921, -0.0003626223769970238, -0.004261123016476631, 0.0003445036709308624, 0.00040853963582776487, 0.006008461583405733, -0.001706633367575705, -0.02072978764772415, -0.006258648820221424, 0.003280230797827244, -0.03761543333530426, -0.0034450367093086243, 0.0031471948605030775, -0.014153441414237022, 0.0079623032361269, 0.0138675132766366, 0.0012529210653156042, -0.009951886720955372, -0.007231598254293203, 0.01953842118382454, -0.003595943097025156, -0.01794993132352829, -0.003820317331701517, 0.011993096210062504, -0.006346015725284815, -0.01077790092676878, -0.013565700501203537, -0.02336668036878109, -0.0011387483682483435, 0.02069801837205887, -0.013724549673497677, 0.0018932808889076114, -0.002996288239955902, -0.0010891081765294075, 0.0014902016846463084, -0.006969497539103031, -0.011071772314608097, 0.020650364458560944, 0.01753692328929901, 0.0004554497136268765, 0.018744176253676414, 0.021714651957154274, -0.008855829015374184, 0.0004519748908933252, 0.010420490987598896, -0.011230620555579662, 0.0005261871265247464, 0.0017125902231782675, 0.01104000210762024, -0.0011774678714573383, -0.005774159450083971, -0.010730247013270855, -0.024049730971455574, 0.010849383659660816, 0.006123627070337534, -0.007990102283656597, -0.0007237555109895766, 0.008816116489470005, 0.00833162758499384, 0.02644835039973259, 0.020840981975197792, 0.004018878564238548, 0.011341814883053303, 0.014193153940141201, -0.027766795828938484, -0.024685127660632133, -0.007922591641545296, 0.009094102308154106, 0.0067034256644546986, 0.013565700501203537, 0.003143223701044917, -0.002515770262107253, 0.00795833207666874, -0.0009729498415254056, -0.008097325451672077, 0.01491591613739729, 0.01720334216952324, -0.011397412046790123, 0.01796581596136093, -0.016599714756011963, 0.0035860149655491114, 0.0015587053494527936, 0.02592414803802967, 0.013335369527339935, -0.02338256500661373, -0.012310793623328209, -0.004876662977039814, -0.010293412022292614, -0.01131004560738802, -0.0016381298191845417, -0.00949916709214449, 0.014987398870289326, -0.03497853875160217, -0.008593727834522724, -0.003127338830381632, 0.005293641239404678, -0.003429151838645339, -0.017489269375801086, -0.005476317368447781, -0.009030562825500965, -0.007700202986598015, 0.006584289018064737, 0.002930763177573681, -0.026178307831287384, -0.009109986945986748, 0.0028215544298291206, -0.018108779564499855, -0.0002817086933646351, 0.014248751103878021, 0.013549815863370895, -0.0199831984937191, -0.00403873436152935, -0.025241097435355186, 0.008220433257520199, -0.006921843159943819, -0.0079623032361269, 0.006095828488469124, -0.011119426228106022, -0.007521498017013073, 0.009149699471890926, -0.0373612716794014, -0.007728001568466425, 0.013105038553476334, -0.005087137687951326, -0.000611568451859057, -0.001029539736919105, 0.0308166965842247, -0.0002854317135643214, -0.00430480670183897, -0.020014967769384384, -0.014590276405215263, 0.010190160013735294, 0.0065326630137860775, 0.009737440384924412, 0.004570878576487303, 0.0008652303949929774, 0.008411051705479622, 0.0040943315252661705, 0.004840921610593796, -0.011413296684622765, 0.0042730369605124, 0.003881871234625578, -0.012008980847895145, -0.02262009121477604, -0.010769958607852459, -0.0014683599583804607, 0.015146247111260891, 0.00961036141961813, 0.01901421882212162, -0.032357532531023026, -0.0216669961810112, 0.013295657001435757, 0.008776404894888401, -0.013065326027572155, 0.006834476254880428, 0.006508835591375828, -0.011691282503306866, 0.009999541565775871, -0.0028870797250419855, 0.009785095229744911, 0.021158680319786072, 0.019824348390102386, 0.00430083554238081, -0.007525469176471233, -0.027449099346995354, 0.022143544629216194, -0.009967771358788013, -0.002487971680238843, 0.014264635741710663, -0.007934505119919777, 0.00026632018852978945, 0.015869010239839554, 0.004547051154077053, -0.021698767319321632, 0.005770188290625811, 0.0015309067675843835, -0.006377785466611385, -0.008109238930046558, 0.0020789357367902994, 0.00993600208312273, -0.012906476855278015, -0.04260328784584999, 0.009173527359962463, 0.008315742947161198, 0.007803454529494047, 0.010126620531082153, 0.006226879078894854, 0.00547234620898962, -0.016822103410959244, 0.013875455595552921, -0.018632981926202774, -0.006735195405781269, -0.016853874549269676, -0.008105267770588398, -0.01836293935775757, 0.016822103410959244, 0.010452261194586754, 0.00405859062448144, -0.033612437546253204, -0.012088404968380928, 0.0030399716924875975, 0.0026388783007860184, 0.006191137712448835, 0.02444685436785221, 0.0170921478420496, 0.0194272268563509, 0.029180552810430527, 0.003008201951161027, -0.02420857921242714, -0.00987246260046959, -0.008816116489470005, -0.00048002167022787035, -0.004153899848461151, 0.0012697988422587514, 0.0072395410388708115, -0.02997479774057865, -0.005666936282068491, 0.015956377610564232, 0.00043683461262844503, -0.004745612386614084, -0.017362190410494804, 0.011190908960998058, -0.023668494075536728, 0.029069358482956886, -0.0064055840484797955, -0.006723281927406788, 0.020364435389637947, -0.01879183016717434, -0.010015426203608513, -0.0013214247301220894, -0.00040978065226227045, -0.020856866613030434, 0.021222220733761787, -0.014701470732688904, 0.024907516315579414, 0.007382505107671022, -0.02837042324244976, -0.022763054817914963, 0.0023390508722513914, 0.0052420152351260185, 0.020968060940504074, 0.010190160013735294, 0.011397412046790123, -0.011961326003074646, 0.0023628780618309975, 0.027020206674933434, -0.002555482555180788, 0.01584518328309059, 0.010579340159893036, 0.001760244951583445, 0.0024959142319858074, 0.0056272242218256, -0.007640634663403034, 0.003284201957285404, -0.0008835972985252738, -0.015980204567313194, -0.012398160994052887, -0.008252202533185482, -0.00544454762712121, -0.002267568837851286, 0.006334101781249046, -0.0112544484436512, 0.003540345933288336, 0.009864520281553268, 0.013248002156615257, 0.023112522438168526, -0.012501412071287632, -0.02327137067914009, 0.004134044051170349, -0.013788089156150818, -0.002126590348780155, -0.01109559927135706, 0.013160635717213154, -0.01220754161477089, -0.001914129825308919, -0.016536176204681396, -0.014232865534722805, 0.0028811227530241013, 0.009808923117816448, 0.0031630797311663628, 0.0055358861573040485, 0.0062626199796795845, 0.015996089205145836, 0.00011876440839841962, 0.02528875321149826, -0.000990323955193162, -0.020872751250863075, 0.0027520579751580954, 0.004892547614872456, -0.014042247086763382, 0.011834247037768364, 0.004102274309843779, 0.003593957517296076, 0.003431137418374419, -0.018315283581614494, -0.021015716716647148, -0.006473094690591097, 0.008641382679343224, 0.007029065862298012, -0.00172053265850991, 0.002466130070388317, 0.000410773471230641, -0.012342563830316067, -0.004805180709809065, 0.011175023391842842, 0.0023608924821019173, -0.002255655126646161, -0.002863252302631736, 0.01688564382493496, -0.0061196559108793736, -0.00993600208312273, 0.0007034030277282, 0.01253318227827549, -0.013883397914469242, 0.009578592143952847, -0.012310793623328209, -0.0004090360598638654, 0.008355454541742802, -0.0020769499242305756, -0.0139151681214571, -0.0016907484969124198, -0.009681843221187592, -0.013319484889507294, 0.009213238954544067, -0.018744176253676414, 0.012572894804179668, 0.02060270868241787, 0.009356203489005566, -0.0069099292159080505, 0.008887599222362041, 0.006921843159943819, -0.013144751079380512, 0.0020888636354357004, 0.00043857202399522066, -0.007140260189771652, 0.0057423897087574005, -0.012390217743813992, -0.0007892807479947805, 0.0021007773466408253, 0.021635226905345917, 0.00419758353382349, -0.0011675397399812937, -0.023096637800335884, 0.008156893774867058, -0.0253999475389719, 0.02741732820868492, 0.01817231997847557, -0.0004797734727617353, 0.026098882779479027, 0.01136564277112484, 0.024796321988105774, 0.03663056716322899, -0.004932260140776634, -0.0028076551388949156, 0.013676894828677177, -0.0046145617961883545, 0.008164836093783379, -0.033294741064310074, 0.0013174534542486072, 0.0026130652986466885, 0.00939591508358717, 0.00687815947458148, 0.0029228206258267164, -0.015217729844152927, 0.008323685266077518, -0.02706786058843136, -0.019093643873929977, -0.019570190459489822, 0.0072395410388708115, -0.018140550702810287, 0.008871713653206825, 0.009411800652742386, -0.011826304718852043, 0.00692978547886014, -0.0002593705430626869, 0.012866765260696411, -0.010372836142778397, -0.004257151857018471, -0.01524155680090189, 0.006659742444753647, 0.005118907429277897, 0.007533411495387554, -0.007132317870855331, -0.00696155522018671, 0.0058694686740636826, -0.014201096259057522, 0.003985123243182898, 0.006127598229795694, 0.033834826201200485, -0.013462448492646217, -0.025955919176340103, 0.007243512198328972, -0.0026785903610289097, -0.0051784757524728775, -0.0016609643353149295, -0.0060124327428638935, 0.008033785969018936, -0.014344059862196445, -0.00812909472733736, -0.02508224919438362, 0.0005549784982576966, 0.009133814834058285, 0.0031213818583637476, 0.0014256692957133055, 0.0023132378701120615, 0.013152693398296833, 0.010174275375902653, 0.015217729844152927, 0.00409036036580801, -0.00993600208312273, 0.014391714707016945, -0.008752577006816864, 0.008434879593551159, -0.01701272279024124, -0.00276397168636322, 0.014502909034490585, 0.0065962024964392185, 0.019284263253211975, -0.0010980434017255902, 0.01815643534064293, -0.023525530472397804, 0.00032266194466501474, -0.009165584109723568, 0.009006735868752003, 0.0011178995482623577, 0.0028314825613051653, 0.0029764322098344564, 0.01572604663670063, -0.008689037524163723, -0.002994302660226822, -0.008967023342847824, -0.010190160013735294, -0.0160199161618948, 0.004836950451135635, 0.004054619465023279, -0.012342563830316067, 0.023398449644446373, -0.0010652807541191578, 0.02006262168288231, -0.007469872012734413, 0.011198851279914379, -0.02824334427714348, 0.008911426179111004, -0.01584518328309059, -0.005138763692229986, 0.0111591387540102, -0.012771455571055412, -0.004364375025033951, -0.004916375037282705, 0.00035244610626250505, 0.013081210665404797, -0.004690015222877264, 0.010690534487366676, -0.011135311797261238, -0.000678086478728801, -0.006270562298595905, -0.02346199005842209, -0.008689037524163723, 0.004872691351920366, -0.006246734876185656, 0.015956377610564232, -0.0025852667167782784, 0.00568679254502058, -0.009316490963101387, -0.007708145305514336, 0.004848864395171404, 0.017393959686160088, -0.0029387054964900017, -0.003176979022100568, -0.020983945578336716, 0.006072001066058874, 0.0028314825613051653, 0.054961737245321274, 0.01614699512720108, 0.015178017318248749, -0.0058416700921952724, -0.0011268347734585404, -0.017505154013633728, 0.014804721809923649, 0.0032524322159588337, -0.017870506271719933, -0.006711367983371019, 0.003919597715139389, -0.022778939455747604, 0.02293778769671917, 0.013208290562033653, 0.005297612398862839, 0.001524949911981821, -0.01408195961266756, -0.0010980434017255902, 0.006604145281016827, 0.03764720261096954, 0.0025594537146389484, -0.004435856826603413, -0.003635655390098691, -0.022397702559828758, 0.017918162047863007, 0.020650364458560944, 0.008514303714036942, -0.015320980921387672, -0.0009610361303202808, -0.009030562825500965, -0.010698476806282997, -0.00021953420946374536, -0.009467397816479206, -0.0008974965894594789, 0.011730995029211044, 0.015670448541641235, 0.014312290586531162, 0.013406851328909397, -0.004308777861297131, -0.0037706769071519375, -0.025463486090302467, -0.011675397865474224, 0.010166333056986332, 0.013557758182287216, -0.029482364654541016, -0.00966595858335495, 0.014820607379078865, 0.009038505144417286, -0.028831085190176964, 0.02030089497566223, 0.0060759722255170345, 0.006774907931685448, -0.0002070000336971134, -0.006993324961513281, 0.03240518644452095, -0.019284263253211975, 0.004952115938067436, -0.004229353275150061, -0.010619052685797215, -0.007179972715675831, 0.009260893799364567, -0.011738937348127365, 0.019204838201403618, 0.008041728287935257, -0.007517526391893625, 0.0033040582202374935, -0.0007882878999225795, -0.011580088175833225, -0.009292664006352425, 0.0033278854098170996, -0.0016689067706465721, -0.005643108859658241, -0.0029744466301053762, -0.017806967720389366, -0.016933297738432884, -0.002295367419719696, -0.0139151681214571, 0.0003730468451976776, -0.028227457776665688, -0.018632981926202774, 0.0009113958803936839, -0.00023020687513053417, -0.01402636244893074, 0.0006552519043907523, -0.013422735966742039, -0.02028501033782959, 0.0018098852597177029, 0.006520749535411596, -0.026591314002871513, 0.015050938352942467, -0.008418994024395943, -0.007132317870855331, -0.00801392924040556, 0.015225672163069248, 0.006762993987649679, -0.0012697988422587514, -0.021698767319321632, -0.0030955688562244177, 0.012946189381182194, 0.0047575258649885654, -0.006663713604211807, 0.005162591114640236, 0.006381756626069546, -0.014717355370521545, 0.0008056620135903358, -0.019300147891044617, -0.007898763753473759, -0.01275557093322277, -0.012255196459591389, 0.012827052734792233, -0.011675397865474224, -0.003014158923178911, -0.022699514403939247, 0.012088404968380928, -0.0004010935954283923, 0.007974217645823956, 0.027814451605081558, 0.0030280582141131163, 0.017664004117250443, 0.007358677685260773, 0.008919368498027325, 0.011873958632349968, 0.019935542717576027, 9.046943887369707e-05, 0.01275557093322277, 0.02006262168288231, 0.019840233027935028, 0.014884146861732006, -0.004364375025033951, -0.004539108835160732, -0.010412548668682575, -0.011516548693180084, 0.014542621560394764, 0.004892547614872456, -0.019601959735155106, -0.011770707555115223, 0.0023668494541198015, 0.0008701944025233388, 0.016115225851535797, 5.665198841597885e-05, -0.013661010190844536, 0.019204838201403618, 0.014733240008354187, -0.013224175199866295, 0.02559056505560875, 0.0029426768887788057, -0.015543369576334953, 0.006028317846357822, 0.010650821961462498, -0.004956087097525597, -0.009737440384924412, 0.004419972188770771, 0.003623741678893566, -0.01258877944201231, -0.004995799623429775, 0.021746421232819557, 0.0006080936291255057, -0.001497151330113411, -0.0012866765027865767, 0.006997296120971441, 0.0003633669693954289, 0.00041722669266164303, -0.001198316807858646, 0.009594476781785488, 0.010015426203608513, -0.0003181943029630929, -0.01513830479234457, 0.011302103288471699, 0.0027083745226264, -0.018617097288370132, -0.018077010288834572, -0.01370072178542614, -0.005670907441526651, -0.003012173343449831, 0.008617555722594261, 0.014042247086763382, 0.006568403914570808, 0.0032027920242398977, 0.0035800582263618708, -0.00138000026345253, -0.007378533948212862, 0.031054969877004623, 0.016615599393844604, 0.002646820619702339, 0.010738189332187176, 0.008474591188132763, -0.01530509628355503, 0.011572145856916904, 0.0033199430909007788, 0.017981700599193573, 0.0039414395578205585, 0.025034595280885696, -0.011850131675601006, -0.002426417777314782, -0.00549617363139987, 0.012771455571055412, 0.0015527484938502312, -0.00021630759874824435, -0.02508224919438362, 0.007084663026034832, 0.02590826340019703, 0.022572435438632965, -0.01004719641059637, 0.014256693422794342], "e9f07882-5921-41b1-883c-0396aaaef7ac": [-0.03704787790775299, -0.00235295994207263, -0.006515600718557835, 0.023124950006604195, -0.014732226729393005, -0.027815882116556168, -0.016845393925905228, 0.014687265269458294, -0.03824684023857117, 0.047089170664548874, -0.02053219825029373, -0.0037579915951937437, 0.017639705911278725, -0.019198354333639145, -0.0034470113459974527, -0.0067816199734807014, -0.015931187197566032, 0.030663413926959038, 0.0013272867072373629, -0.014162720181047916, 0.02932957001030445, -0.023124950006604195, -0.0326416976749897, -0.009089618921279907, 0.005414055660367012, -0.0037017904687672853, -0.0004606162547133863, -0.008130450733006, -0.06276558339595795, 0.0026302195619791746, -0.026167312636971474, 0.005249198991805315, 0.019483108073472977, 0.02850528433918953, 0.02248050831258297, -0.019348224624991417, -0.020367341116070747, 0.03596881404519081, -0.000954484916292131, 0.0013235399965196848, -0.002783836331218481, 0.014807161875069141, 0.0032634204253554344, -0.016230927780270576, -0.01472473330795765, 0.020262431353330612, -0.032881490886211395, -0.015024472959339619, -0.01659061573445797, -0.004398686345666647, 0.02511822246015072, 0.0430726557970047, -0.01458984985947609, 0.0056276204995810986, -0.004200108349323273, -0.007905645295977592, 0.004024011082947254, 0.06081726774573326, -0.004305017646402121, -0.014732226729393005, -0.010011320002377033, -0.05065608024597168, -0.011562475003302097, 0.011914669536054134, 0.008265333250164986, -0.0026339662726968527, -0.02424897626042366, 0.030843257904052734, 0.0012401747517287731, 0.02681175246834755, -0.010266099125146866, -0.0006556814769282937, -0.053803350776433945, 0.023379728198051453, 0.025043286383152008, -0.01083560474216938, 0.03102310188114643, 0.003432024270296097, 0.014739720150828362, -0.023949235677719116, 0.02538798749446869, -0.02316991053521633, -0.010753177106380463, 0.013323448598384857, 0.05892890691757202, 0.01563144661486149, -0.019752873107790947, -0.05656095966696739, -0.044391512870788574, -0.034170374274253845, -0.022120820358395576, 0.008692462928593159, 0.00473964074626565, 0.018568899482488632, 0.013405876234173775, -0.008647502399981022, 0.015961160883307457, 0.01666554994881153, -0.0010303566232323647, -0.025313053280115128, -0.0020850670989602804, 0.012574098072946072, -0.03345099836587906, 0.0010191163746640086, -0.03306133300065994, 0.015039460733532906, 0.010460929945111275, 0.036538321524858475, 0.0077407886274158955, 0.02099679596722126, 0.0018724390538409352, -0.017160121351480484, 0.03623858094215393, -0.004642224870622158, -0.06180641055107117, -0.04532070457935333, -0.011112865060567856, 0.034110426902770996, -0.03135281428694725, -0.006163406185805798, 0.027396246790885925, -0.03596881404519081, 0.0520348846912384, 0.01554152462631464, -0.0041926149278879166, 0.0091720474883914, 0.006002295762300491, 0.04651966691017151, 0.04930724948644638, 0.037137798964977264, 0.008902281522750854, 0.002017625607550144, 0.03225203603506088, 0.010048787109553814, -0.014477447606623173, 0.0048782704398036, 0.023739418014883995, 0.07127819955348969, 0.001524927793070674, 0.01910843327641487, -0.01862884871661663, -0.0026339662726968527, -0.018179237842559814, 0.034170374274253845, 0.0006481879972852767, 0.019183367490768433, -0.029269622638821602, 0.08362749218940735, -0.0496969111263752, 0.0157063826918602, -0.03554917871952057, 0.002309872303158045, 0.0012411114294081926, 0.028280479833483696, 0.06480381637811661, -0.028999855741858482, 0.0005030013853684068, 0.040734682232141495, -0.004990673158317804, 0.010033800266683102, 0.012139474973082542, -0.06069737300276756, 0.00717877596616745, 0.006170899607241154, 0.010760670527815819, 0.0020607132464647293, 0.03467993065714836, 0.0017684666672721505, -0.016770459711551666, 0.025298066437244415, 0.03075333498418331, -0.01713014766573906, 0.020022640004754066, 0.007493502926081419, 0.007201256230473518, -0.01930326409637928, 0.022045886144042015, -0.023334767669439316, 0.004690933041274548, -0.00873742438852787, -0.04388195276260376, -0.013158591464161873, 0.03566907346248627, -0.017984407022595406, -0.005728783085942268, 0.012469189241528511, -0.016980277374386787, -0.016545655205845833, 0.009576696902513504, 0.022600404918193817, -0.01235678605735302, -0.03590886667370796, 0.025088246911764145, 0.00014565496530849487, -0.005290413275361061, -0.017444875091314316, -0.0025609047152101994, -0.01990274339914322, 0.01093302108347416, -0.00315851136110723, -0.009179540909826756, -0.019558042287826538, -0.027890818193554878, 0.050356339663267136, 0.004072718787938356, 0.033690787851810455, 0.01513687614351511, -0.04082460328936577, 0.030153855681419373, -0.0025477909948676825, 0.04511088877916336, -0.034230321645736694, 0.017160121351480484, -0.02207585982978344, -0.014619824476540089, 0.02309497632086277, -0.018254173919558525, 0.014312590472400188, 0.00795810017734766, -0.02032238058745861, 0.005717542488127947, -0.02852027118206024, -0.02457868866622448, -0.015601472929120064, -0.006751646287739277, 0.02263037860393524, -0.03021380305290222, -0.005908627063035965, -0.01446246076375246, -0.033990528434515, 0.005207984708249569, 0.009261969476938248, 0.02147637866437435, -0.005215478129684925, 0.0035032127052545547, 0.03647837042808533, 0.02457868866622448, -0.011899682693183422, -0.008340268395841122, 0.0018499585567042232, -0.012776422314345837, 0.041274212300777435, -0.04999665170907974, -0.005249198991805315, 0.026901675388216972, 0.051645223051309586, 0.008520112372934818, 0.0703190341591835, -0.0028868720401078463, 0.0306184533983469, -0.018703782930970192, -0.016141004860401154, -0.01639578491449356, 0.007965593598783016, -0.03366081416606903, 0.046100031584501266, 0.018538925796747208, -0.011629916727542877, -0.03776725381612778, -0.0009947625221684575, 0.007463528774678707, 0.00475837429985404, -0.03441016376018524, 0.010176177136600018, 0.03426029533147812, -0.03345099836587906, 0.023874299600720406, 0.03372076153755188, -0.007414821069687605, 0.03013886883854866, 0.02263037860393524, -0.039985332638025284, -0.022150794044137, 0.000997572555206716, -0.012139474973082542, -0.013960395939648151, 0.010940514504909515, 0.017100173979997635, 0.01276892889291048, -0.015376667492091656, -0.04403182119131088, -0.04166387766599655, 0.0404948890209198, -0.0018565153004601598, 0.010475916787981987, 0.06156662106513977, 0.0005498357932083309, -0.032072193920612335, -0.00995137169957161, -0.007808229885995388, 0.014807161875069141, -0.02451874129474163, 0.0013019961770623922, 0.053263816982507706, 0.0046159978955984116, 0.007118827663362026, -0.010116228833794594, -0.0016139132203534245, 0.006335756741464138, -0.018673809245228767, -0.01964796520769596, 0.01874874345958233, -0.03162258118391037, -0.03506959229707718, -0.012813890352845192, -0.025432948023080826, 0.03378071263432503, 0.029779180884361267, -0.04010522738099098, 0.030933180823922157, 0.042563095688819885, 0.019737886264920235, -0.018254173919558525, -1.0632870726112742e-05, -0.014507421292364597, -0.001908969832584262, -0.004717160016298294, -0.03737759217619896, 0.013450837694108486, -0.015279252082109451, -0.02648204006254673, 0.012401747517287731, -0.022330638021230698, 0.014147733338177204, 0.039925385266542435, -0.03461998328566551, 0.015331706963479519, -0.02771097421646118, -0.02640710398554802, -0.009097112342715263, -0.05065608024597168, -0.027546117082238197, 0.0006865921895951033, -0.014874603599309921, -0.015234291553497314, -0.012244383804500103, -0.042832862585783005, -0.03384066000580788, -0.009261969476938248, -0.02051721140742302, -0.050086572766304016, 0.016350822523236275, 0.02756110392510891, -0.005155529826879501, -0.06420433521270752, -0.03473987802863121, 0.027201415970921516, 0.040464915335178375, 0.05314392223954201, -0.03222206234931946, 0.0009966358775272965, -0.020022640004754066, 0.056171298027038574, -0.015901213511824608, 0.02715645357966423, -0.0241140928119421, -0.05023644492030144, 0.013383395969867706, 0.03686803579330444, 0.018254173919558525, -0.03426029533147812, -0.0731365904211998, -0.016575628891587257, -0.030693387612700462, 0.01482964213937521, 0.04043494164943695, 0.009546722285449505, -0.031592607498168945, -0.01385548710823059, -0.006849061697721481, -0.012911305762827396, 0.002772595966234803, -0.005706302355974913, -0.023274820297956467, -0.026107363402843475, -0.07235726714134216, 0.035249438136816025, -0.0013010593829676509, 0.0286551546305418, 0.014477447606623173, -0.008137944154441357, 0.01653066650032997, 0.004207601770758629, -0.003147271228954196, 0.021716171875596046, -0.014732226729393005, 0.017639705911278725, -0.02682674117386341, -0.038486629724502563, -0.01916838064789772, -0.042712967842817307, 0.01732497848570347, -0.01320355199277401, 0.014237655326724052, 0.005777490790933371, -0.03171250596642494, 0.018913600593805313, 0.025702714920043945, -0.0028512778226286173, -0.020397314801812172, 0.0019445640500634909, 0.013248513452708721, 0.0202474445104599, 0.012236890383064747, 0.0030592225957661867, -0.008437683805823326, -0.013383395969867706, 0.0078531913459301, 0.005593900103121996, 0.031113024801015854, 0.010805631056427956, -0.017984407022595406, -0.0025421709287911654, 0.028864972293376923, 0.01835908181965351, 0.0419636145234108, 0.013833005912601948, 0.04807831346988678, -0.036058735102415085, -0.01036351453512907, 0.00022843475744593889, 0.014642304740846157, 0.007943113334476948, 0.021521341055631638, -0.019483108073472977, -0.012626552022993565, 0.007497249636799097, 0.014282616786658764, 0.021176639944314957, -0.024743545800447464, 0.052574414759874344, 0.018538925796747208, -0.013780551962554455, -0.003514452837407589, -0.006725418847054243, -0.06102708727121353, 0.01692033000290394, -0.004683439154177904, 0.006028523202985525, -0.003566907485947013, -0.010790644213557243, 0.0104909036308527, 0.025717701762914658, -0.03764735907316208, -0.028025701642036438, -0.024698585271835327, -0.016560642048716545, -0.0007591855246573687, 0.013046188279986382, 0.010003826580941677, 0.009816489182412624, 0.034919723868370056, -0.05023644492030144, -0.024608664214611053, 0.013533266261219978, -0.020427288487553596, -0.0020644599571824074, -0.02119162678718567, 0.03285151720046997, -0.054552700370550156, 0.007980580441653728, 0.014439980499446392, 0.03456003591418266, -0.000756843772251159, 0.0049981665797531605, -0.04403182119131088, 0.009097112342715263, 0.014567369595170021, -0.0007427934906445444, 0.018583886325359344, -0.009194527752697468, -0.013638175092637539, -0.04226335510611534, 0.007036399096250534, 0.007620892487466335, 0.010790644213557243, -0.03683806210756302, -0.003874141024425626, -0.011637410148978233, 0.003062969306483865, -0.02213580720126629, 0.025777649134397507, -0.007096347399055958, 0.018463991582393646, -0.015556512400507927, 0.022255703806877136, -0.029539387673139572, -0.021146664395928383, -0.026227260008454323, 0.03905613720417023, 0.034979671239852905, 0.011255240999162197, -0.014889590442180634, 0.014035331085324287, 0.04445146024227142, 0.014912070706486702, 0.006654230412095785, -0.025073260068893433, -0.002821303904056549, -0.0005681011825799942, 0.01876373216509819, -0.003186612157151103, 0.02654198743402958, -0.01330846082419157, -0.021356483921408653, 0.026721831411123276, -0.017115160822868347, 0.01283637061715126, 0.025552844628691673, -0.015886226668953896, -0.0030011478811502457, 0.012671513482928276, -0.031113024801015854, 0.0429527573287487, 0.01774461567401886, 0.010753177106380463, 0.008894788101315498, -0.012259370647370815, 0.018104303628206253, 0.0025890052784234285, -0.0391460582613945, -0.0009320044191554189, -0.018943576142191887, 0.027201415970921516, 0.00904465839266777, 0.03378071263432503, -0.01841903105378151, -0.0022124566603451967, -0.007605905644595623, -0.015451602637767792, -0.01674048602581024, -0.0036399690434336662, -0.001961424481123686, 0.02742622047662735, 0.034020502120256424, 0.020622119307518005, -0.006657977122813463, 0.026841728016734123, 0.01638079807162285, -0.004837056156247854, -0.01439501903951168, 0.03034868650138378, -0.0005732529680244625, 0.012079526670277119, -0.011345162987709045, -0.0057737440802156925, 0.020682068541646004, -0.005256692413240671, -0.005106822121888399, 0.01970791257917881, 0.009876436553895473, 0.014642304740846157, -0.028280479833483696, -0.0019258302636444569, -0.0010415968718007207, -0.018329108133912086, -0.017160121351480484, 0.02532804012298584, -0.002045726403594017, -0.02065209485590458, -0.008085489273071289, -0.009554216638207436, -0.01157746184617281, 0.02613733895123005, -0.010580826550722122, -0.015811290591955185, -0.05551186949014664, 0.03273162245750427, -0.020262431353330612, 0.0048782704398036, 0.028820011764764786, -0.046100031584501266, 0.03566907346248627, -0.0012354912469163537, 0.021026769652962685, 0.015219304710626602, -0.024968352168798447, -0.0267518050968647, -0.03983546048402786, -0.005196744110435247, 0.02432391047477722, 0.011030436493456364, 0.024054143577814102, -0.04253312200307846, -0.002396047580987215, -0.026631908491253853, 0.020637106150388718, -0.03405047580599785, -0.0025459176395088434, 0.03249182924628258, 0.0029599335975944996, 0.05560179054737091, -0.02053219825029373, 0.0010547104757279158, -0.020082587376236916, 0.015376667492091656, 0.0012205042876303196, 0.000960105040576309, -0.00777076231315732, 0.0034282775595784187, 0.024623651057481766, 0.010400981642305851, -0.001174606615677476, -0.011240254156291485, -0.05464262142777443, 0.009224502369761467, 0.007190016098320484, 0.037017904222011566, -0.020891886204481125, -0.0015399148687720299, 0.029104765504598618, -0.02654198743402958, 0.008452671580016613, -0.025717701762914658, 0.013390889391303062, -0.0009198274929076433, 0.02376939170062542, 0.03473987802863121, 0.03920600563287735, -0.006676711142063141, 0.019558042287826538, 0.0033889366313815117, 0.03231198340654373, -0.004720906727015972, 0.009943878278136253, 0.059828128665685654, -0.04532070457935333, -0.001402221736498177, 0.00409894622862339, -0.004245069343596697, -0.01330846082419157, -0.0011886568972840905, -0.025013312697410583, -0.03354091942310333, 0.015946174040436745, -0.045080915093421936, 0.020607132464647293, 0.004930724855512381, 0.02093684673309326, -0.03527941182255745, 0.009187034331262112, -0.012131981551647186, 0.0188986137509346, -0.015264265239238739, -0.0025964986998587847, 0.0026882942765951157, 0.024878429248929024, 0.0032165860757231712, 0.04900750890374184, 0.016200954094529152, -0.017969420179724693, 0.009202021174132824, 0.003270914079621434, 0.012364279478788376, 0.003267167368903756, -0.019153393805027008, -0.020966820418834686, 0.01739991456270218, 0.011165319010615349, -0.023109963163733482, -0.028295466676354408, -0.026631908491253853, 0.00958419032394886, 0.024548714980483055, 0.04529073089361191, 0.006493120454251766, -0.00777076231315732, 0.010918033309280872, 0.002418528078123927, 0.01828414760529995, 0.015061940997838974, -0.047508809715509415, 0.011554981581866741, 0.025417961180210114, 0.01678544655442238, -0.024024169892072678, 0.037827201187610626, 0.016545655205845833, -0.01093302108347416, -0.013892954215407372, -0.004675945732742548, -0.052784234285354614, -0.02559780515730381, 0.013098643161356449, -0.024473780766129494, -0.011435084976255894, 0.0013956648763269186, 0.010873072780668736, -0.022930119186639786, -0.004582277033478022, -0.013675643131136894, 0.031053075566887856, -0.002070080256089568, 0.03438019007444382, -0.013173578307032585, 0.012641539797186852, 0.016845393925905228, -0.019543055444955826, 0.0021431418135762215, 0.02648204006254673, -0.03183240070939064, -0.002397920936346054, -0.00609221775084734, -0.029434479773044586, 0.009921398013830185, 0.03147271275520325, -0.02072702907025814, -0.010138709098100662, 0.004207601770758629, -0.008452671580016613, 0.0022311904467642307, -0.01489708386361599, 0.009112099185585976, 0.012484176084399223, 0.010543358512222767, -0.003516326192766428, -0.037287671118974686, -0.009958865121006966, -0.012371772900223732, 0.00629828916862607, -0.026437077671289444, 0.0060097891837358475, -0.03435021638870239, -0.026227260008454323, -0.017564771696925163, 0.013211045414209366, -0.016006121411919594, -0.012176942080259323, 0.004050238523632288, 0.016560642048716545, 0.035039618611335754, -0.008227866142988205, -0.0024466286413371563, 0.006463146302849054, 0.0029149726033210754, -0.033151257783174515, 0.011052916757762432, 0.006965211126953363, 0.029494427144527435, 0.024683598428964615, 0.03453006222844124, -0.024054143577814102, -0.005859919358044863, -0.04016517475247383, 0.028220532462000847, 0.0016410771058872342, 0.019737886264920235, 0.005676328670233488, 0.0034020503517240286, 0.03479982912540436, 0.012933786027133465, -0.02457868866622448, 0.011667383834719658, 0.0015689522260800004, 0.02403915673494339, 0.003801079234108329, 0.018119290471076965, -0.01693531684577465, 0.013705616816878319, 0.027036558836698532, -0.004507341887801886, -0.0010528371203690767, -0.0202474445104599, -0.02336474135518074, 0.003111677011474967, 0.0127014871686697, 0.026362143456935883, -0.019752873107790947, 0.015481577254831791, 0.012371772900223732, 0.024563701823353767, -0.0014331324491649866, -0.010745682753622532, 0.019003523513674736, -0.020217470824718475, -0.0758342519402504, -0.034440141171216965, 0.01218443550169468, 0.01720508188009262, -0.016141004860401154, -0.0068977694027125835, -0.045470576733350754, 0.023454664275050163, 0.0065043605864048, 0.0091720474883914, -0.03102310188114643, 0.008332774974405766, 0.013788045383989811, -0.004005277529358864, 0.023199884220957756, 0.012191928923130035, -0.017010251060128212, -0.02005261369049549, -0.009254476055502892, 0.013330942019820213, 0.0015305479755625129, 0.017444875091314316, 0.00609221775084734, -0.02994403801858425, -0.010910539887845516, -0.0015998628223314881, -0.01611103117465973, 0.013840500265359879, 0.023994196206331253, -0.003083576448261738, -0.03821686655282974, 0.0035856410395354033, -0.020637106150388718, -0.01578131690621376, 0.024263963103294373, 0.008385229855775833, 0.03447011485695839, 0.0012111373944208026, 0.029284609481692314, -0.0022293170914053917, 0.008542593568563461, -0.0072087496519088745, 0.0072087496519088745, 0.008490138687193394, 0.011330176144838333, -0.0034826055634766817, 0.02180609293282032, -0.007100094109773636, 0.017849523574113846, 0.03995535895228386, -0.023814352229237556, 0.019063470885157585, -0.019468121230602264, 0.02505827322602272, -0.017789576202630997, -0.018703782930970192, -0.019588015973567963, -0.014275123365223408, 0.025043286383152008, -0.028265492990612984, 0.014544889330863953, -0.004713413305580616, -0.0045035951770842075, -0.04235327988862991, 0.02343967743217945, 0.008212879300117493, -0.02721640281379223, -0.0005334437591955066, -0.02709650620818138, 0.012746448628604412, 0.010775657370686531, -0.008580060675740242, -0.016500692814588547, 0.0300039853900671, 0.026437077671289444, 0.03270164504647255, 0.001614849898032844, 0.018119290471076965, 0.029914064332842827, -0.011135345324873924, 0.010063773952424526, 0.010858085937798023, 0.0520348846912384, -0.02227069064974785, 0.018104303628206253, 0.022060872986912727, -0.030783310532569885, -0.0013366536004468799, -0.009254476055502892, -0.0029917811043560505, 0.004953205585479736, 0.0004306422488298267, -0.031802427023649216, 0.027725961059331894, 0.02228567749261856, 0.004323751199990511, -0.0029468201100826263, 0.04190366715192795, -0.0022686580196022987, -0.012281850911676884, -0.008212879300117493, 0.02742622047662735, 0.006777873262763023, -0.026586947962641716, 0.0015408515464514494, -0.021551314741373062, 0.01195213757455349, 0.004035251215100288, 8.708269888302311e-06, -0.01774461567401886, 0.027471181005239487, 0.056381117552518845, 0.0030329953879117966, -0.002768849255517125, 0.005822451785206795, -0.013383395969867706, 0.01732497848570347, -0.02321487106382847, -0.021041756495833397, -0.0326416976749897, 0.005784984212368727, -0.020607132464647293, -0.019003523513674736, -0.008182905614376068, 0.023394716903567314, 0.010281085968017578, -0.02146139182150364, -0.01768466643989086, -0.018179237842559814, 0.015751343220472336, -0.005474003963172436, 0.0023042522370815277, 0.0030610959511250257, 0.05110568925738335, -0.00799556728452444, 0.01408778503537178, 0.015496564097702503, 0.010880566202104092, -0.0003262015525251627, 0.06168651580810547, -0.026122350245714188, -0.007186269387602806, -0.0294494666159153, 0.005286666098982096, -0.026197286322712898, -0.021911002695560455, 0.005680075380951166, 0.02376939170062542, 0.002620852552354336, -0.011480046436190605, 0.01692033000290394, -0.036268554627895355, -0.006699191406369209, 0.009022177197039127, 0.02784585766494274, -0.014979512430727482, 0.004383699037134647, -0.00778574962168932, -0.017235057428479195, 0.006346996873617172, -0.031113024801015854, -0.030993128195405006, -0.015144369564950466, -0.026527000591158867, -0.008167917840182781, 0.019153393805027008, -0.0016729244962334633, 0.039176031947135925, 0.0033008879981935024, -0.016575628891587257, 0.023859312757849693, 0.020637106150388718, 0.0078232167288661, -0.023874299600720406, 0.011862214654684067, -0.015346693806350231, 0.005533951800316572, -0.01351078599691391, -0.0014396891929209232, 0.013728097081184387, 0.004035251215100288, -0.01046842336654663, 0.0021487618796527386, -0.012034565210342407, -0.005088088568300009, -0.023799365386366844, -0.008407710120081902, -0.0018668188713490963, 0.007482262793928385, -0.011225267313420773, 0.031862374395132065, 9.378587128594518e-05, 0.027201415970921516, -0.019408171996474266, -0.015271758660674095, -0.018299134448170662, -0.028085649013519287, 0.015946174040436745, -0.0014668531948700547, -0.03479982912540436, 0.0065118540078401566, -0.020622119307518005, -0.014694759622216225, -0.030048945918679237, -0.023934248834848404, 0.03479982912540436, -0.02438385784626007, -0.022180767729878426, -0.047089170664548874, -0.007115080952644348, -0.006204620469361544, -0.003900368232280016, -0.006530587561428547, -0.006849061697721481, 0.016036096960306168, 0.010146202519536018, -0.023679468780755997, 0.017354952171444893, -0.005533951800316572, 0.0075946650467813015, -0.011584955267608166, -0.01597614772617817, -0.03569904714822769, -0.005530205089598894, -0.03351094573736191, -0.01942315883934498, 0.018239185214042664, 0.0017057085642591119, 0.07115830481052399, -0.010221137665212154, 0.0014275122666731477, 0.020097574219107628, -0.009531735442578793, 0.020217470824718475, 0.015586486086249352, -0.005230464972555637, 0.028265492990612984, -0.01001881342381239, -0.00546651054173708, -0.023050015792250633, 0.009913904592394829, 0.04145405814051628, 0.0025534110609441996, 0.00958419032394886, 0.04151400551199913, 0.005683822091668844, -0.012813890352845192, 0.007055133115500212, -0.00934439804404974, -0.004713413305580616, 0.011367644183337688, 0.02627222053706646, 0.002800696762278676, 0.015046954154968262, -0.026646897196769714, -0.04109437018632889, 1.9582630557124503e-05, 0.002377313794568181, -0.00012294028420001268, -0.011899682693183422, -0.019797835499048233, 0.010850592516362667, -0.048378054052591324, -0.027860844507813454, -0.007347379811108112, -0.011914669536054134, -0.012042059563100338, -0.028340427204966545, 0.02884998545050621, 0.032611723989248276, -0.018808692693710327, 0.022180767729878426, -0.02099679596722126, 0.01127772219479084, 0.001340400311164558, 0.017759602516889572, -0.007512236479669809, -0.019992666319012642, -4.9468826546217315e-06, 0.001976411323994398, 0.009868943132460117, -0.009786514565348625, -0.00873742438852787, -0.01897354982793331, 0.030423622578382492, -0.014005356468260288, -0.01835908181965351, 0.029704244807362556, 0.028879960998892784, 0.006609269417822361, -0.0260174423456192, -0.0011436959030106664, 0.019273288547992706, -0.0006973640993237495, -0.010108735412359238, -7.66327721066773e-05, -0.007860684767365456, 0.010550851933658123, -0.005792477633804083, -0.010445943102240562, 0.04678943380713463, 0.030153855681419373, 0.0016513806767761707, 0.0008364622481167316, 0.001359134097583592, -0.011375137604773045, 0.025642767548561096, 0.006275808904320002, 0.030693387612700462, -0.031652554869651794, 0.015496564097702503, 0.005342867691069841, 0.008115463890135288, 0.01672549918293953, 0.020682068541646004, -0.01563144661486149, 0.021086717024445534, -0.011000461876392365, 0.031922321766614914, 0.000660833262372762, 0.01910843327641487, 0.01618596538901329, 0.02877505123615265, 0.01168237067759037, 0.023679468780755997, -0.015331706963479519, -0.02005261369049549, 0.009374371729791164, -0.010513384826481342, 0.02005261369049549, 0.031113024801015854, 0.019003523513674736, 0.004803335294127464, -0.005155529826879501, 0.008092982694506645, -0.00849763210862875, 0.007913138717412949, -0.018658822402358055, 0.01066325418651104, 0.007838203571736813, 0.0004486734978854656, 0.01795443333685398, -0.006523094139993191, -0.006983944680541754, 0.012926292605698109, 0.017654692754149437, -0.026167312636971474, -0.010925527662038803, -0.011757305823266506, -0.01067074853926897, -0.012611565180122852, 0.0094792814925313, 0.011667383834719658, 0.028295466676354408, 0.017010251060128212, 0.01843401789665222, -0.021521341055631638, 0.040794629603624344, -0.007587171625345945, -0.0037673586048185825, -0.001197087112814188, -0.004095199517905712, -0.007047639694064856, -0.012326812371611595, -0.0010856211883947253, -0.010858085937798023, -0.016096044331789017, -0.0017000884981825948, 0.006852808408439159, 0.0195130817592144, -0.013113630004227161, -0.0077782562002539635, -0.01901851035654545, 0.004732146859169006, -0.016560642048716545, -0.0143575519323349, -0.00988392997533083, 0.006590535864233971, 0.002053219825029373, -0.012536630034446716, -0.0013788045616820455, -0.0016869748942553997, -0.0005488991155289114, 0.0021600022446364164, -0.00623084744438529, -0.019543055444955826, 0.011794773861765862, 0.0016804180340841413, -0.013473317958414555, -0.015586486086249352, 0.010101241990923882, -0.008242852985858917, -0.019558042287826538, -0.010161190293729305, -0.006995184812694788, 0.009007190354168415, 0.007366113364696503, -0.009179540909826756, -0.006073484197258949, -0.01572136953473091, 0.008789879269897938, -0.017549782991409302, 0.00018686923431232572, 0.002330479444935918, 0.036598268896341324, -0.004840802866965532, 0.003499465761706233, -0.0037205242551863194, -0.021581288427114487, -0.017639705911278725, 0.0028550245333462954, -0.0038029528222978115, 0.002390427514910698, 0.007040145806968212, 0.036268554627895355, 0.016215940937399864, -0.009157060645520687, -0.0033645827788859606, 0.0004203386779408902, 0.008085489273071289, -0.013698123395442963, 0.030723361298441887, -0.0127014871686697, -0.006650483701378107, -0.005784984212368727, -0.001968917902559042, 0.0030367420986294746, 0.002399794291704893, -0.0024278948549181223, -0.01707020029425621, -0.027306323871016502, 0.0007465402013622224, -0.0029149726033210754, -0.006654230412095785, -0.01672549918293953, 0.003548173699527979, 0.004379952326416969, -0.01489708386361599, -0.013758071698248386, -0.02044227533042431, -0.009614164009690285, 0.001583002507686615, -0.03602876141667366, 0.015406642109155655, 0.010880566202104092, -0.012401747517287731, -0.0010097494814544916, 0.002073826966807246, 0.020352354273200035, -0.0156464334577322, -0.016260901466012, 0.02267533913254738, 0.03635847568511963, -0.025103235617280006, -0.029374530538916588, 0.0026470799930393696, 0.006916502956300974, 0.012259370647370815, 0.008242852985858917, 0.005226718261837959, -0.014424992725253105, -0.026766791939735413, 0.011742318980395794, -0.023274820297956467, 0.016950303688645363, 0.0006987691740505397, 0.010393488220870495, -0.009741554036736488, -0.01597614772617817, 0.04007525369524956, 0.02979416772723198, -0.015661420300602913, -0.011772292666137218, -0.014230161905288696, 0.0024466286413371563, -0.0021899761632084846, 0.0045747836120426655, -0.0065043605864048, -0.008475151844322681, -0.006579295732080936, -0.0033065080642700195, -0.02823551930487156, 0.02580762468278408, -0.0010284832678735256, 0.04496101662516594, -0.0001488162815803662, 0.010693228803575039, 0.019318250939249992, 0.003576274262741208, -0.05020647123456001, 0.02201591059565544, -0.006680457852780819, 0.002701407764106989, -0.012469189241528511, 0.0014350058045238256, 0.008939748629927635, -0.010078761726617813, 0.015361680649220943, 0.02044227533042431, 0.015204316936433315, -0.01882367953658104, -0.0006355427321977913, -0.0029824140947312117, -0.0009254476171918213, -0.01787949725985527, -0.005680075380951166, 0.014754706993699074, -0.010925527662038803, -0.012679006904363632, 0.0021637489553540945, -0.012941279448568821, -0.0016598108923062682, -0.01766967959702015, 0.006702938117086887, -0.019408171996474266, -0.003536933334544301, -0.0020775736775249243, -0.038096968084573746, 0.04436153545975685, -0.0010893680155277252, 0.013967889361083508, 0.011532501317560673, -0.013046188279986382, 0.014822148717939854, 0.035788968205451965, -0.021566301584243774, 0.03279156982898712, -0.02228567749261856, 0.005702555645257235, 0.010243618860840797, 0.018254173919558525, -0.014439980499446392, 0.020337367430329323, -0.002070080256089568, -0.008969723246991634, -0.010213644243776798, -0.007710814476013184, -0.0040427446365356445, -0.020097574219107628, -0.00617839302867651, 0.0183440949767828, 0.007456035353243351, -0.05110568925738335, -0.005826198495924473, -0.021566301584243774, -0.003514452837407589, -0.002795076696202159, 0.0234996248036623, -0.011247747577726841, -0.0312928669154644, 0.024893416091799736, -0.011172812432050705, 0.00241290801204741, 0.02213580720126629, 0.045950159430503845, 0.0036643228959292173, -0.0020794470328837633, -0.0008973469957709312, -0.005282919388264418, -0.0007704257732257247, -0.00409894622862339, -0.0034863522741943598, -0.006242088042199612, 0.0018808692693710327, -0.015226798132061958, -0.0036512091755867004, -0.008759904652833939, -0.00020326126832515, 0.011727332137525082, -0.017489835619926453, 0.004492355044931173, 0.0010200530523434281, -0.0061221919022500515, 0.006006042473018169, -0.030783310532569885, -0.012708980590105057, -0.00638446444645524, 0.02188102900981903, -0.009254476055502892, -0.005582659505307674, 0.01458984985947609, -0.03297141194343567, 0.007875671610236168, -0.012649033218622208, 0.019198354333639145, 0.03006393276154995, -0.029779180884361267, -0.01781954988837242, 0.008422696962952614, 0.013638175092637539, 0.01801438070833683, 0.008932255208492279, -0.025612792000174522, 0.0013394636334851384, 0.0009418396512046456, -0.015601472929120064, -0.012012084946036339, -0.020397314801812172, -0.015676407143473625, -0.013675643131136894, -0.02263037860393524, 0.006909009534865618, 0.0183440949767828, 0.027246376499533653, 0.005852425936609507, 0.005818705074489117, -0.00016192991461139172, 0.0127014871686697, 0.01726503111422062, 0.03464995697140694, 0.005886146333068609, 0.0029880343936383724, 0.01795443333685398, -0.010423462837934494, -0.009284449741244316, -0.03168252855539322, -0.007733295205980539, 0.014919564127922058, -0.01476220041513443, 0.0013619441306218505, -0.023469651117920876, -0.03040863387286663, 0.005474003963172436, -0.002881251974031329, 0.019737886264920235, 0.013937915675342083, -0.01114283874630928, -0.006560561712831259, 0.003949075937271118, -0.031532660126686096, -0.0005184567417018116, -0.006815340835601091, -0.011082890443503857, -0.02606240287423134, -0.019468121230602264, -0.0002716394665185362, -0.0053503611125051975, 0.020906873047351837, -0.018943576142191887, 0.024413831532001495, -0.013428357429802418, -0.013967889361083508, 0.025897545740008354, 0.009374371729791164, -0.05086589604616165, -0.03150268644094467, -0.009082125499844551, -0.010678241960704327, -0.010483410209417343, 0.011914669536054134, -0.007808229885995388, -0.008992203511297703, -0.008879801258444786, 0.005946094635874033, -0.012259370647370815, 0.02032238058745861, -0.0040802122093737125, 0.008107970468699932, 0.0001577148213982582, 0.014597343280911446, -0.02796575240790844, 0.0018958562286570668, -0.01835908181965351, 0.0007081360090523958, -0.0026489533483982086, 0.01029607281088829, -0.01557149924337864, 0.019558042287826538, 0.0032615470699965954, 0.029209673404693604, -0.013997863046824932, -0.0364483967423439, 0.011195293627679348, -0.013690629974007607, 0.0023061255924403667, -0.016365811228752136, -0.0312928669154644, 0.0021600022446364164, 0.01252913661301136, 0.01807432807981968, -0.02153632789850235, -0.031053075566887856, -0.02403915673494339, 0.0016588742146268487, -0.014424992725253105, 0.00014202529564499855, -0.009164554066956043, -0.0020382327493280172, -0.026871701702475548, -0.006912756245583296, 0.009089618921279907, -0.0032840275671333075, -0.003184738801792264, 0.024069130420684814, 0.011495033279061317, 0.005994802340865135, 0.028730090707540512, -0.027171442285180092, 0.012581591494381428, -0.0016747978515923023, -0.005174263846129179, -0.03183240070939064, -0.012049552984535694, -0.013143603689968586, -0.01766967959702015, 0.014140239916741848, 0.0014359424822032452, -0.027471181005239487, 0.016260901466012, -0.007673346903175116, 0.023649495095014572, 0.01624591462314129, -0.004949458874762058, 0.0008317788015119731, -0.01707020029425621, 0.012708980590105057, 0.003085449803620577, -0.0008528542821295559, -0.007429807912558317, -0.0029805407393723726, -0.006140925455838442, 0.032881490886211395, 0.018104303628206253, 0.009456800296902657, -0.004050238523632288, 0.017549782991409302, -0.024968352168798447, 0.003246560227125883, 0.027815882116556168, -0.01963297836482525, -0.011285215616226196, 0.021791106089949608, 0.03327115252614021, -0.008437683805823326, 0.003922848962247372, -0.02783086895942688, 0.0008125767344608903, -0.03246185556054115, 0.006762886419892311, 0.020622119307518005, 0.027815882116556168, 0.01252913661301136, 0.003937835805118084, 0.03102310188114643, 0.0025833852123469114, 0.006837821565568447, -0.003091069869697094, -0.019932717084884644, 0.0033908099867403507, 0.00443240674212575, -0.01493455097079277, 0.008355256170034409, -0.012993734329938889, 0.014207681640982628, 0.009876436553895473, 0.008115463890135288, 0.0036437157541513443, 7.200787877081893e-06, -0.014424992725253105, -0.02011256106197834, -0.005166770424693823, 0.010385994799435139, -0.012693993747234344, -0.012019578367471695, -0.010161190293729305, 0.0024466286413371563, 0.0028775050304830074, -0.014297603629529476, 0.0015783190028741956, 0.0025271838530898094, 0.009321917779743671, -0.003877887735143304, -0.017549782991409302, 0.011172812432050705, -0.009202021174132824, 0.001420955522917211, -0.016096044331789017, 0.00389287481084466, 0.004267550073564053, 0.0014284489443525672, 0.010580826550722122, -0.002416654722765088, 0.00533162709325552, -0.001167113077826798, -0.01067074853926897, -0.01780456304550171, -0.014537395909428596, 0.011584955267608166, 0.008092982694506645, 0.00014331324200611562, 0.0003472770331427455, -0.0061596594750881195, -0.011232760734856129, 0.002403541002422571, 0.016006121411919594, 0.024144066497683525, 0.0254629235714674, 0.007471022196114063, 0.009719072841107845, 0.012131981551647186, 0.0017815802711993456, -0.0025627780705690384, -0.011547488160431385, 0.0054215495474636555, -0.01177978701889515, -0.013233525678515434, 0.0037842190358787775, 0.03893624246120453, 0.010685735382139683, 0.007530970498919487, 0.007988073863089085, 0.013428357429802418, -0.006204620469361544, -0.012723968364298344, 0.029164712876081467, 0.012798902578651905, -0.02315492369234562, 0.004323751199990511, -0.024473780766129494, -0.021371470764279366, -0.017100173979997635, -0.015811290591955185, 0.021851055324077606, 0.002047599758952856, 0.008145437575876713, 0.003154764650389552, 0.0018611988052725792, 0.030783310532569885, 0.019752873107790947, 0.0018892993684858084, -0.001161492895334959, -0.0024691091384738684, 0.0029805407393723726, 0.002388554159551859, 0.006729165557771921, -0.011120358482003212, 0.0048482962884008884, 0.0021824827417731285, 0.005923613905906677, -0.01083560474216938, -0.025642767548561096, -0.004934471566230059, 0.025163182988762856, -0.003195978933945298, 0.0060097891837358475, 0.002401667647063732, 0.019887756556272507, -0.0053878286853432655, -0.0036081215366721153, 0.0057737440802156925, -0.0070251589640975, -0.005009406711906195, -0.005500230938196182, 0.00884233321994543, -0.0021225346717983484, 0.010063773952424526, -0.006496867164969444, -0.030288739129900932, -0.006485626567155123, 0.005856172647327185, 0.013788045383989811, 0.016305861994624138, 0.002004512120038271, 0.006242088042199612, 0.006800353992730379, -0.0030760830268263817, 0.006032269913703203, -0.016440745443105698, 0.0097565408796072, -0.022870169952511787, -0.022180767729878426, 0.010745682753622532, -0.018718769773840904, 0.006346996873617172, 0.011457566171884537, 0.0017057085642591119, 0.002701407764106989, 0.004338738042861223, 0.015496564097702503, 0.019737886264920235, 0.00034025186323560774, -0.011435084976255894, 0.004271296784281731, -0.0009947625221684575, 0.00118959357496351, 0.007905645295977592, 0.006680457852780819, -0.005084341857582331, 0.012034565210342407, -0.009097112342715263, -0.031053075566887856, -0.001974537968635559, -0.0020944341085851192, 0.0020625866018235683, -0.006710432004183531, 0.027725961059331894, -0.010588319972157478, 0.009554216638207436, -0.012926292605698109, -0.00024166547518689185, 0.0004123768303543329, -0.0056988089345395565, 0.013600707985460758, -0.013675643131136894, 0.007478516083210707, 0.00789065845310688, -0.0034488847013562918, -0.006804100703448057, 0.00527917267754674, 0.004882017150521278, 0.01591620035469532, 0.004544809460639954, -0.01157746184617281, 0.017549782991409302, 0.011255240999162197, 0.004784601740539074, 0.013181071728467941, -0.006601775996387005, -0.015691395848989487, -0.03019881621003151, 0.016066070646047592, 0.004630984738469124, 0.01563144661486149, 0.008422696962952614, -0.009329411201179028, -0.02715645357966423, -0.01793944649398327, 0.004533569328486919, 0.005908627063035965, -0.010948007926344872, 0.011225267313420773, 0.002662066835910082, 0.002806316828355193, -0.03246185556054115, -0.007688333746045828, -0.024054143577814102, 0.010221137665212154, 0.016845393925905228, 0.0044661276042461395, 0.01638079807162285, -0.007688333746045828, -0.008797372691333294, -0.002808190183714032, 0.017489835619926453, -0.010400981642305851, 0.01205704640597105, -0.003922848962247372, -0.008969723246991634, 0.005391575396060944, 0.007429807912558317, 0.006665471009910107, 0.00263958633877337, 0.015676407143473625, -0.010445943102240562, -0.004256309475749731, 0.017100173979997635, 0.012798902578651905, 0.015361680649220943, -0.012746448628604412, -0.009599177166819572, 0.0037111572455614805, 0.0032990146428346634, 0.006751646287739277, -0.0010490904096513987, -0.0011212154058739543, 0.00014366449613589793, -0.02451874129474163, 0.013593214564025402, 0.0013057428877800703, -0.021970950067043304, 0.006534334737807512, -0.013405876234173775, 0.023949235677719116, 0.003186612157151103, 0.011187800206243992, 0.02850528433918953, -0.0064706397242844105, 0.0064706397242844105, 0.017519809305667877, -0.0007100094226188958, -0.012896318919956684, 0.00463847815990448, -0.00013336093979887664, -0.016006121411919594, 0.004364965483546257, -0.011622423306107521, 0.026661884039640427, 0.0037373846862465143, 0.005706302355974913, -0.0050019132904708385, -0.01205704640597105, 0.006223354022949934, -0.0002618042635731399, 0.005683822091668844, 0.01320355199277401, -0.0016541907098144293, 0.007257457356899977, -0.015211811289191246, 0.013233525678515434, 0.017175108194351196, -0.003982796799391508, 0.004938218276947737, -0.011929656378924847, -0.006406945176422596, 0.013360915705561638, 0.010708215646445751, 0.010251112282276154, -0.015946174040436745, 0.0009404346346855164, 0.010880566202104092, 0.005380335263907909, -0.009816489182412624, -0.0037036638241261244, -0.007883165031671524, -0.013300967402756214, -0.028355414047837257, 0.011929656378924847, -0.03414040058851242, -0.00013781020243186504, 0.013892954215407372, -0.0011287088273093104, -0.01624591462314129, 0.005642607808113098, 0.00941183976829052, -0.012386760674417019, 0.017759602516889572, 0.022300664335489273, -0.00455230288207531, 0.021761132404208183, -0.0037935858126729727, -0.004859536420553923, 0.02330479398369789, -0.0010116228368133307, 0.008415203541517258, 0.0011998971458524466, 0.012566604651510715, 0.009261969476938248, 0.008962229825556278, -0.0029730473179370165, -0.019153393805027008, 0.009891423396766186, 0.007148801814764738, 0.017579758539795876, 0.01861386187374592, -0.001780643593519926, 0.01849396526813507, -0.005488990806043148, -0.01903349719941616, 0.011997098103165627, -0.01638079807162285, 0.01228934433311224, -0.0013066795654594898, -0.0009109289385378361, 0.00345263141207397, -0.014282616786658764, -0.009284449741244316, -2.742739161476493e-05, 0.01674048602581024, 0.02078697644174099, -0.006575549021363258, 0.0011174685787409544, 0.03228200972080231, 0.03144273906946182, -0.003570654196664691, -0.002422274788841605, 0.02615232579410076, -0.012266864068806171, 0.004170134197920561, -0.0032821542117744684, -0.013990369625389576, -0.012176942080259323, 0.015376667492091656, 0.014627317897975445, -0.007474769372493029, 0.0034676184877753258, -0.00044164832797832787, 0.00033533424721099436, -0.0003678841458167881, 0.006110951770097017, -0.0004147185536567122, 0.013300967402756214, 0.007695827633142471, -0.01029607281088829, -0.00022995687322691083, -0.0025402975734323263, 0.011727332137525082, 0.01970791257917881, -0.01066325418651104, 0.002373567083850503, -0.002296758582815528, -0.02153632789850235, 0.0013244766741991043, -0.03156263381242752, 0.003523819847032428, 0.0036680696066468954, -0.002017625607550144, 0.009142073802649975, 0.0030030212365090847, -0.025163182988762856, 0.011255240999162197, 0.022435547783970833, -0.010985475033521652, 0.0056613413617014885, -0.01391543447971344, -0.005590153392404318, 0.009082125499844551, 0.00897721666842699, -0.01888362690806389, -0.009636644273996353, -0.014267629943788052, -0.01517434325069189, 0.007028905674815178, 0.00045148356002755463, 0.015226798132061958, -0.009261969476938248, 0.008475151844322681, 0.005474003963172436, 0.020277418196201324, -0.0054252962581813335, 0.0032015990000218153, 0.015766330063343048, 0.014162720181047916, -0.017834536731243134, -0.006137178745120764, 0.0011511894408613443, 0.012199422344565392, -0.001543661579489708, 0.008969723246991634, -0.0026901676319539547, 0.014252642169594765, 0.013211045414209366, -0.0072087496519088745, -0.00473964074626565, 0.0014509294414892793, 0.011929656378924847, 0.02113167755305767, 0.01991773024201393, -0.0013966015540063381, -0.017100173979997635, -0.011345162987709045, -0.02201591059565544, 0.0036718163173645735, 0.008954736404120922, 0.012656526640057564, -0.012783915735781193, -0.02478850819170475, 0.0060135358944535255, -0.01225187722593546, -0.005230464972555637, 0.0137430839240551, -0.010273592546582222, -0.014477447606623173, 0.020757002755999565, 0.018134277313947678, -0.0009675985784269869, 0.0020232456736266613, 0.026901675388216972, 0.009524242021143436, -0.016141004860401154, 0.0005067481542937458, 0.001351640559732914, 0.0014705999055877328, -0.018793705850839615, -0.019213341176509857, -0.016170978546142578, -0.01313611026853323, -0.024563701823353767, -0.020906873047351837, 0.01618596538901329, -0.009074632078409195, -0.01849396526813507, 0.005874906200915575, 0.01820921152830124, 0.007148801814764738, 0.0038123195990920067, -0.008932255208492279, 0.01225187722593546, 0.0005559242563322186, -0.00624583475291729, -0.001612976542674005, -0.014507421292364597, 0.01121028047055006, -0.011607435531914234, 0.008190399035811424, -0.004102692939341068, 0.0072050029411911964, 0.010041293688118458, 0.019348224624991417, -0.012431721203029156, -0.003493845695629716, 0.006811594124883413, 0.02696162275969982, -0.00806300900876522, 0.01557149924337864, 0.03255177661776543, -0.0022892651613801718, -0.004327497910708189, 0.019662952050566673, 0.023739418014883995, 0.006167152896523476, -0.016066070646047592, -0.0014050317695364356, -0.0015408515464514494, -0.009524242021143436, 0.003047982230782509, -0.006017282605171204, -0.013360915705561638, 0.00025852586259134114, 0.006380717735737562, -0.023484637960791588, 0.005983562208712101, -0.009067138656973839, -0.02831045351922512, 0.016980277374386787, 0.017354952171444893, 0.028670141473412514, 0.0012645286042243242, 0.0036268553230911493, -0.01022863108664751, -0.0017478595254942775, 0.00930693093687296, -0.0032859009224921465, 0.007444795221090317, 0.026437077671289444, -0.005207984708249569, 0.016230927780270576, -0.007624639198184013, 0.023754404857754707, -0.01510690152645111, 0.016845393925905228, -0.014447473920881748, 0.013473317958414555, 0.027186429128050804, 0.02498333901166916, -0.00397905008867383, -0.012499162927269936, 0.0029355797450989485, 0.007227483671158552, -0.003533186623826623, 0.04421166703104973, -0.007725801318883896, 0.0005840248777531087, -0.00020888139260932803, 0.022990066558122635, -0.013525772839784622, -0.010400981642305851, 0.01618596538901329, -0.0071712820790708065, -0.010011320002377033, 0.020202483981847763, 0.004514835309237242, 0.009119592607021332, 0.02783086895942688, -0.006646736990660429, 0.0314127653837204, -0.010775657370686531, -0.015676407143473625, -0.0008692463161423802, 0.019543055444955826, 0.00010133791511179879, 0.005987308919429779, -0.030318712815642357, -0.0176097322255373, -0.0031997256446629763, 0.02823551930487156, 0.010640773922204971, -0.006080977618694305, 0.003877887735143304, -0.0028943654615432024, 0.009261969476938248, 0.005526458378881216, -0.007617145776748657, 0.013061175122857094, 0.0003395493549760431, 0.008992203511297703, -0.00839272327721119, 0.0036624495405703783, -0.007429807912558317, -0.011689864099025726, 0.010693228803575039, -0.003194105578586459, -0.013053681701421738, 0.0234996248036623, 0.0018686923431232572, 0.003180992091074586, 0.009202021174132824, -0.003907861653715372, 0.001359134097583592, -0.015751343220472336, 0.011217773891985416, 0.0069727045483887196, 0.024623651057481766, -0.004349978640675545, -0.016215940937399864, 0.02762105129659176, 0.01177978701889515, 0.016275888308882713, -0.0030573492404073477, -0.009464293718338013, -0.0011174685787409544, 0.00565759465098381, -0.010962994769215584, 0.01046842336654663, 0.0021543821785598993, 0.027950765565037727, 0.00795810017734766, -0.0017019618535414338, -0.0013881714548915625, 0.014709746465086937, -0.015091914683580399, -0.003555667120963335, -0.0037842190358787775, -0.008640008978545666, -0.020277418196201324, -0.003566907485947013, 0.012386760674417019, -0.007617145776748657, 0.025957493111491203, -0.003566907485947013, -0.01140511129051447, 0.0169952642172575, -0.025208143517374992, -0.00923948921263218, 0.019408171996474266, 5.4357165936380625e-05, 0.004282536916434765, -0.010618293657898903, 0.0044286600314080715, -0.008167917840182781, -0.001963297836482525, -0.007512236479669809, -0.021146664395928383, 0.025163182988762856, 0.010281085968017578, 0.01624591462314129, -0.01585625298321247, -0.007017665542662144, -0.03279156982898712, 0.023379728198051453, 0.009681605733931065, 0.006287049036473036, -0.01140511129051447, -0.00024517806014046073, 0.010153696872293949, -0.006916502956300974, 0.03231198340654373, -0.01599113456904888, 0.005241705104708672, -0.00843019038438797, 0.023679468780755997, 0.0015239911153912544, -0.003982796799391508, -0.010850592516362667, -0.0036287286784499884, 0.009366878308355808, -0.0006716051721014082, -0.01133766956627369, -0.02376939170062542, -0.006800353992730379, 0.030438609421253204, 0.00995137169957161, 0.018778719007968903, -0.016965290531516075, -0.020637106150388718, -0.011135345324873924, 0.005009406711906195, 0.006613016128540039, -0.002045726403594017, -0.011667383834719658, 0.011637410148978233, 0.011375137604773045, -0.00136288080830127, 0.00941183976829052, 0.003855407238006592, 0.0034395179245620966, -0.004683439154177904, 0.005492737516760826, -0.010573332197964191, 0.004897003993391991, -0.016680536791682243, -0.01303120143711567, 0.01990274339914322, -0.001400348381139338, -0.00863251555711031, -0.01714513450860977, 0.001982031622901559, -0.015451602637767792, 0.003194105578586459, -0.01719009503722191, -0.023109963163733482, 0.007388593629002571, 0.01067074853926897, 0.0022817717399448156, -0.014627317897975445, 0.005316640250384808, 0.0033739497885107994, -0.030018972232937813, -0.005103075411170721, -0.0016766713233664632, 0.004406179767102003, -0.031232919543981552, 0.0020232456736266613, -0.015346693806350231, -0.009696592576801777, -0.013390889391303062, -0.023244846612215042, -0.028550246730446815, -0.00353880668990314, -0.0024278948549181223, 0.005369094666093588, 0.018703782930970192, -0.004125173203647137, -0.005166770424693823, -0.009943878278136253, -0.01005628053098917, -0.003147271228954196, -0.0025946253444999456, 0.016200954094529152, -0.0057362765073776245, 0.010483410209417343, -0.008400216698646545, 0.009246982634067535, -0.018029367551207542, 0.012881331145763397, 0.000287094822851941, 0.005511471536010504, 0.0227652620524168, -0.02057715877890587, -0.009779021143913269, 0.015481577254831791, 0.006702938117086887, -0.010948007926344872, -0.01228934433311224, -0.0029711739625781775, -0.005998549051582813, 0.014365045353770256, -0.005755010060966015, 0.0017984407022595406, -0.014619824476540089, -0.0057699973694980145, -0.040255095809698105, -0.007073866669088602, -0.016500692814588547, -0.02044227533042431, 0.011697358451783657, 0.011247747577726841, -0.00209256075322628, 0.005942347925156355, -0.00687154196202755, -0.004458634182810783, 0.01218443550169468, -0.0038291800301522017, -0.01849396526813507, 0.007549704052507877, -0.01043095625936985, -0.005335374269634485, 0.0111053716391325, -0.008250346407294273, -0.02003762684762478, -0.009007190354168415, 0.012708980590105057, -0.0005517091485671699, 0.005294159986078739, 0.014649798162281513, -0.012589084915816784, 0.0038310533855110407, -0.01847897842526436, 0.01408778503537178, -0.01990274339914322, 0.008070502430200577, 0.00982398260384798, -0.021356483921408653, -0.0011109118349850178, 0.030498556792736053, 0.023619521409273148, -0.003111677011474967, 0.008010555058717728, 0.004248816054314375, 0.0014537395909428596, -0.018913600593805313, -0.00033627095399424434, -0.0033627094235271215, -0.009936384856700897, 0.005710049066692591, -0.011734825558960438, -0.018793705850839615, -0.028685128316283226, 0.006849061697721481, 0.013533266261219978, -0.025373000651597977, -0.014919564127922058, -1.317949136137031e-05, 0.0046159978955984116, -0.0036680696066468954, 0.013143603689968586, -0.013638175092637539, 0.0013441471382975578, -0.00399778364226222, -0.03126289322972298, -0.008557580411434174, -0.00032854327582754195, 0.013188565149903297, 0.01252913661301136, -0.015526537783443928, 0.007272444665431976, -0.003209092654287815, -0.009052151814103127, -0.0077407886274158955, -0.0038273066747933626, -0.022855183109641075, -0.00034212524769827724, 0.012349292635917664, -0.006916502956300974, 0.012821383774280548, 0.017594745382666588, 0.01500199269503355, 0.0072424705140292645, 0.000403712474508211, -0.011877202428877354, -0.007426061201840639, 0.020307393744587898, -0.007448541931807995, -0.01793944649398327, -0.009164554066956043, -0.007650866638869047, 0.0060847243294119835, 0.0073960875160992146, 0.017369939014315605, 0.002791329752653837, -0.001562395365908742, 0.031202945858240128, -0.0052716792561113834, 0.00351257948204875, 0.0032015990000218153, 0.02093684673309326, -0.01452990248799324, 0.009966358542442322, 0.0009277893113903701, 0.011472553014755249, -0.016141004860401154, 0.0073923408053815365, -0.01429011020809412, -0.0010940514039248228, -0.0037017904687672853, -0.01036351453512907, 0.0156464334577322, 0.021925989538431168, 0.00716378865763545, -0.012574098072946072, -0.0011268354719504714, 0.002053219825029373, 0.023544585332274437, -0.00609221775084734, -0.017429888248443604, 0.008347761817276478, 0.0110753970220685, 0.024024169892072678, -0.0029074791818857193, 0.012686500325798988, 0.0189585629850626, 0.0032015990000218153, 0.013593214564025402, -0.011847227811813354, -0.005650101229548454, 0.003156638005748391, 0.02397920936346054, 0.016575628891587257, 0.020637106150388718, 0.015826277434825897, -0.02071204222738743, 0.0010415968718007207, -0.0006364794098772109, 0.006032269913703203, -0.0026114857755601406, -0.011442579329013824, -0.006815340835601091, 0.008205385878682137, 0.010206150822341442, -0.01930326409637928, -0.017699653282761574, 0.0030985635239630938, 0.012626552022993565, -0.013997863046824932, 0.013690629974007607, 0.01188469585031271, 0.0013244766741991043, 0.04259306937456131, -0.017115160822868347, 0.012326812371611595, -0.0456504188477993, 0.009164554066956043, -0.0267518050968647, -0.028834998607635498, 0.035039618611335754, 0.005916120484471321, 0.016620589420199394, 0.021416431292891502, 0.0015127508668228984, 0.005144289694726467, -0.018523938953876495, 0.020742015913128853, 0.023679468780755997, 0.023184897378087044, 0.025642767548561096, -0.016680536791682243, -0.01354825310409069, -0.006493120454251766, 0.01605108380317688, 0.00389287481084466, 0.02376939170062542, -0.0008247536607086658, -0.014447473920881748, 0.006598029285669327, -0.01103792991489172, 0.009119592607021332, -0.002817557193338871, 0.021851055324077606, 0.005837438628077507, 0.02438385784626007, -0.01665056310594082, 0.003119170665740967, 0.014747213572263718, -0.009426826611161232, 0.001553028472699225, -0.006736658979207277, 0.0002756204048637301, -0.0078232167288661, -0.0028943654615432024, -0.023604534566402435, -0.001441562664695084, -0.00401277095079422, -0.023199884220957756, -0.00988392997533083, -0.010385994799435139, -0.0005343804368749261, 0.014912070706486702, 0.01937819831073284, 0.02436887100338936, 0.00563886109739542, 0.0002943541621789336, 0.028745077550411224, -0.009291943162679672, -0.021371470764279366, -0.0033664561342447996, 0.013645668514072895, -0.01266402006149292, -0.004511088598519564, 0.004630984738469124, -0.015339200384914875, -0.012708980590105057, 0.007913138717412949, -0.013166084885597229, 0.003508832771331072, 0.010520878247916698, -0.0026002454105764627, 0.0018780591199174523, -0.01489708386361599, -0.00627955561503768, 0.004320004489272833, 0.007605905644595623, -0.008947242051362991, -0.0005418739165179431, 0.030423622578382492, -0.0036699429620057344, -0.003029248444363475, 0.012948772870004177, 0.00014167404151521623, 0.0009291943861171603, -0.010318553075194359, 0.01841903105378151, -0.0006683268002234399, 0.006586789153516293, -0.010288579389452934, -0.004713413305580616, -0.0032840275671333075, 0.0036231086123734713, -0.010678241960704327, -0.01458984985947609, 0.0060472567565739155, 0.011914669536054134, 0.021386457607150078, 0.006380717735737562, -0.005979815497994423, -0.004110186360776424, 0.0038085728883743286, -0.023739418014883995, -0.032072193920612335, -0.0033065080642700195, -0.0058486792258918285, 0.006534334737807512, 0.011322682723402977, -0.00866998266428709, -0.008452671580016613, 0.007504743058234453, 0.01680043339729309, -0.025223130360245705, 0.004496101755648851, 0.008422696962952614, -0.010985475033521652, 0.02227069064974785, -0.0038273066747933626, 0.0010949880816042423, 0.009764034301042557, 0.022600404918193817, 0.007193762809038162, -0.016230927780270576, -0.010475916787981987, 0.008250346407294273, -0.023274820297956467, -0.006302035879343748, 0.006283302325755358, -0.027036558836698532, -0.016290875151753426, -0.03147271275520325, -0.01801438070833683, -0.007452288642525673, 0.019453134387731552, 0.016710512340068817, -0.0007530970615334809, 0.005548939108848572, -0.00023253276594914496, -0.002862518187612295, 0.0049606990069150925, -0.0005610760417766869, -0.03144273906946182, -0.009231995791196823, -0.0063994512893259525, -0.008272827602922916, -0.007126321084797382, 0.014717239886522293, 0.009606670588254929, -0.03039364702999592, -0.002810063539072871, -0.009891423396766186, -0.002883125329390168, -0.0018349714810028672, -0.009374371729791164, 0.014904577285051346, 0.001008812803775072, -0.001310426276177168, 0.005964828189462423, -0.02315492369234562, -0.014492434449493885, 0.00832528155297041, -0.029779180884361267, -0.0034395179245620966, 0.004593517165631056, 0.037617385387420654, -0.009007190354168415, -0.019078457728028297, -0.013420864008367062, -0.02057715877890587, 0.013001227751374245, 0.009089618921279907, -0.00037771937786601484, -0.0046159978955984116, 0.002722014905884862, -0.0016972783487290144, 0.005683822091668844, -0.008407710120081902, -0.02322985976934433, -0.004020264372229576, 0.005440283101052046, -0.028145596385002136, -0.015294239856302738, -0.010393488220870495, 0.011772292666137218, 0.016155991703271866, -0.004589770454913378, 0.004338738042861223, -0.01036351453512907, -0.024144066497683525, 0.01411775965243578, 0.010341034270823002, -0.0056238737888634205, -0.005751263350248337, 0.005994802340865135, -0.01638079807162285, 0.006002295762300491, -0.006519347429275513, 0.021641235798597336, 0.037287671118974686, 0.03135281428694725, -0.0022030898835510015, -0.008759904652833939, -0.03034868650138378, 0.023319780826568604, -0.015189330093562603, -0.003919101785868406, -0.000587303307838738, -0.012131981551647186, 0.013473317958414555, 0.0137430839240551, -0.006998931523412466, -0.017549782991409302, 0.011300202459096909, -0.012881331145763397, 0.010790644213557243, -0.005391575396060944, -0.001404095091857016, -0.00015525601338595152, 0.00237918714992702, -0.03204222023487091, 0.007021412253379822, 0.02303502708673477, 0.003881634445860982, 0.000394345581298694, 0.004941964987665415, -0.00849763210862875, -0.017384925857186317, 0.017295004799962044, -0.020277418196201324, -0.001976411323994398, -0.019752873107790947, -0.011427591554820538, 0.003941582515835762, 0.025687728077173233, 0.009456800296902657, 0.012589084915816784, -0.0469992496073246, -0.0056613413617014885, 0.001836844952777028, -0.0033608360681682825, 0.006684204563498497, 0.037137798964977264, -0.0011736699379980564, -0.0025646514259278774, 0.016215940937399864, -0.006526840850710869, -0.017639705911278725, 0.0015033839736133814, 0.00609221775084734, 0.00555268581956625, -0.007572184782475233, -0.0033514690585434437, 0.007725801318883896, -0.021086717024445534, -0.018314121291041374, 0.019692925736308098, 0.0032915212213993073, -0.012431721203029156, -0.01452990248799324, 0.016845393925905228, -0.03494969755411148, 0.017444875091314316, -0.008520112372934818, -0.014372538775205612, 0.02207585982978344, -0.005402815528213978, -0.016905343160033226, 0.006526840850710869, 0.0078531913459301, -0.016500692814588547, 0.025043286383152008, -0.013952902518212795, 0.023334767669439316, 0.004717160016298294, -0.02864016778767109, -0.03006393276154995, 0.0007404517382383347, 0.010760670527815819, 0.029674271121621132, 0.02167120948433876, -0.0020382327493280172, -0.026182299479842186, 0.009269462898373604, 0.023784378543496132, 0.0189585629850626, 0.012514149770140648, 0.006676711142063141, -0.012341799214482307, -0.009441813454031944, 0.0016916582826524973, -0.008535100147128105, 0.0202474445104599, 0.017624719068408012, -0.02613733895123005, -0.003092943225055933, -0.005402815528213978, 0.011465059593319893, 0.020202483981847763, -0.008625022135674953, -0.0037317643873393536, 0.02396422252058983, -0.011704851873219013, 0.004170134197920561, 0.0137430839240551, -0.0005769997369498014, -0.009704085998237133, 0.016980277374386787, -0.013360915705561638, 0.004379952326416969, -0.00884233321994543, 0.014919564127922058, -0.0037617385387420654, -0.0021768626756966114, -0.01795443333685398, -0.01978284679353237, -0.01472473330795765, 0.013728097081184387, 0.013196058571338654, -0.009861449711024761, 0.023124950006604195, 0.006815340835601091, 0.003877887735143304, 0.0241140928119421, -0.005129302851855755, -0.02877505123615265, -0.0012710854643955827, 0.008902281522750854, -0.01151002012193203, 0.02979416772723198, 0.0050019132904708385, 0.002386680571362376, 0.0009685352561064065, -0.024428820237517357, -0.005642607808113098, -0.010176177136600018, 0.005672581493854523, 0.005144289694726467, 0.0029880343936383724, -0.006287049036473036, -0.01408778503537178, -0.005305400118231773, -0.010948007926344872, 0.02113167755305767, 0.0034488847013562918, 0.00533162709325552, -0.005106822121888399, 0.006657977122813463, -0.018254173919558525, 0.003971556667238474, -0.0143575519323349, 0.017459861934185028, -0.006710432004183531, 0.001349767204374075, -0.004320004489272833, 0.015301733277738094, 0.010378501377999783, 0.0011998971458524466, -0.02511822246015072, 0.009771527722477913, -0.0143275773152709, -0.008640008978545666, -0.00771830789744854, -0.02526809088885784, 0.020547185093164444, 0.0032559270039200783, -0.00047349571832455695, -0.000397155643440783, 0.00624583475291729, -0.0033214951399713755, 0.005125556141138077, 0.004488608334213495, 0.0005924550932832062, -0.018523938953876495, 0.007905645295977592, -0.010618293657898903, 0.005878652911633253, -0.012072033248841763, 0.014380032196640968, -0.02140144445002079, -0.007943113334476948, -0.03168252855539322, 0.016815420240163803, -0.020202483981847763, 0.037077851593494415, 0.005189250688999891, -0.008137944154441357, 0.02553785778582096, -0.002366073429584503, 0.01820921152830124, 0.022105833515524864, -0.004293777048587799, -0.01127772219479084, -0.0021637489553540945, -0.01720508188009262, 0.0075946650467813015, -0.031922321766614914, 0.011060410179197788, 0.0029936544597148895, 0.005912373773753643, 0.000664580031298101, -0.0014275122666731477, 0.0011905302526429296, 0.008714944124221802, -0.0241140928119421, -0.014619824476540089, -0.017519809305667877, 0.010880566202104092, -0.03075333498418331, 0.0004997229552827775, 0.014544889330863953, 0.00033908101613633335, -0.007055133115500212, 0.007545957341790199, 0.014994499273598194, -0.01055834535509348, -0.019063470885157585, -0.012401747517287731, 0.008385229855775833, 0.0010949880816042423, 0.00039973153616301715, 0.009314424358308315, -0.007441048510372639, 0.015751343220472336, 0.008707450702786446, 0.004679692443460226, 0.009913904592394829, 0.03327115252614021, -0.01249166950583458, -0.005005660001188517, 0.013503292575478554, -0.022060872986912727, -0.03614865615963936, -0.014297603629529476, -4.516591798164882e-05, 0.005222971551120281, -0.023814352229237556, 0.0016270268242806196, -0.027576090767979622, 0.0007591855246573687, 0.005826198495924473, -0.01807432807981968, 0.00401277095079422, -0.0013825512723997235, 0.02708151936531067, 0.014649798162281513, 0.015811290591955185, 0.006369477603584528, -0.031172972172498703, 0.022720301523804665, 0.001980158034712076, 0.006065990775823593, -0.012956266291439533, -0.008152930997312069, 0.027276350185275078, 0.021176639944314957, 0.008752411231398582, 0.016365811228752136, 0.016275888308882713, -0.016830407083034515, -0.0012664019595831633, -0.000897815334610641, 0.006594282574951649, 8.933660137699917e-05, -0.010985475033521652, -0.0037074105348438025, 0.02884998545050621, -0.00759841175749898, -0.02173115871846676, -0.012791409157216549, -0.0007367050275206566, -0.0018480852013453841, 0.008100477047264576, 0.014574863016605377, 0.006249581463634968, 0.02831045351922512, 0.002216203371062875, -0.0009619784541428089, -0.006238341331481934, 0.007680840324610472, -0.0057362765073776245, 0.00623084744438529, -0.007815723307430744, 0.00627955561503768, 0.025627780705690384, -0.019528068602085114, -0.004698426462709904, -0.007755775470286608, -0.0113826310262084, 0.01263404544442892, -0.010955501347780228, 0.010281085968017578, -0.008190399035811424, 0.0040389979258179665, -0.02194097638130188, -0.03324117884039879, 0.006605522707104683, 0.014439980499446392, -0.005856172647327185, 0.01841903105378151, -0.013368409126996994, 0.009981346316635609, 0.003595008049160242, -0.018463991582393646, 0.002474729437381029, 0.026107363402843475, -0.004690933041274548, -0.009509255178272724, -0.01787949725985527, 0.014612331055104733, -0.0008022731635719538, 0.048527926206588745, 0.006481879856437445, 0.010415969416499138, -0.008175411261618137, -0.01005628053098917, -0.013196058571338654, 0.013862980529665947, 0.009614164009690285, -0.025837598368525505, -0.0003695233608596027, -0.012828877195715904, -0.021296534687280655, 0.00965163204818964, 0.0017132021021097898, 0.0020007651764899492, 0.0025215637870132923, 0.0009872689843177795, 0.0020607132464647293, -0.010880566202104092, 0.01930326409637928, -0.0018743124091997743, -0.006635496858507395, -0.0002568866475485265, -0.02263037860393524, 0.01472473330795765, 0.008535100147128105, -0.0020813203882426023, -0.03429026901721954, -0.007036399096250534, -0.010236124508082867, -0.001543661579489708, -0.007605905644595623, -0.018449004739522934, -0.01067074853926897, 0.011232760734856129, 0.030288739129900932, -0.00022012164117768407, -0.00048239424359053373, 0.0008139817509800196, 4.920538412989117e-05, -0.031652554869651794, -0.009007190354168415, 0.002291138516739011, 0.021236587315797806, -0.018583886325359344, 0.00995137169957161, 0.003497592406347394, 0.005766250658780336, -0.03168252855539322, 0.0030554758850485086, 0.0008917268714867532, 0.004346231464296579, -0.001989525044336915, -0.012956266291439533, 0.024743545800447464, -0.01249166950583458, 0.006376971025019884, 0.019078457728028297, -0.022570431232452393, 0.0060510034672915936, -0.0030779563821852207, -0.016485705971717834, 0.02397920936346054, -0.0007966530392877758, -0.007212496362626553, 0.005305400118231773, 0.003287774510681629, -0.02107173018157482, -0.0016476339660584927, -0.003141651162877679, 0.007980580441653728, 0.00030114513356238604, -0.0046497187577188015, -0.009456800296902657, 0.0026339662726968527, 0.0003866179031319916, -0.005163023713976145, 0.004252562765032053, -0.02816058322787285, -0.031592607498168945, -0.007545957341790199, 0.01192216295748949, -0.0045035951770842075, 0.010063773952424526, -0.011772292666137218, -0.02107173018157482, 0.009599177166819572, 0.009509255178272724, -0.019273288547992706, 0.032341957092285156, 0.0046497187577188015, -0.001441562664695084, -0.006021029781550169, 0.0091720474883914, 0.0013975383481010795, 0.010078761726617813, -0.023334767669439316, 0.01632084883749485, 0.013166084885597229, 0.0032634204253554344, -0.005822451785206795, 0.014477447606623173, -0.009554216638207436, -0.004200108349323273, 0.0020794470328837633, -0.009704085998237133, -0.006493120454251766, -0.030963154509663582, -0.0054215495474636555, 0.021761132404208183, 0.006721672136336565, -0.0018293514149263501, -0.026167312636971474, 0.006260821595788002, -0.0016888482496142387, 0.008280321024358273, 0.015376667492091656, 0.00884233321994543, 0.01073069591075182, -0.0024447552859783173, 0.005859919358044863, 0.019468121230602264, 0.024084119126200676, -0.00707761337980628, -0.0088648134842515, -0.0007484136149287224, 0.00806300900876522, 0.02099679596722126, -0.007369860075414181, 0.00799556728452444, -0.012918799184262753, -0.00401277095079422, 0.011592448689043522, 0.009471788071095943, -0.03665821626782417, -0.019213341176509857, 0.004361218772828579, -0.009501761756837368, 0.013862980529665947, -0.0010771910892799497, -0.023799365386366844, 0.015361680649220943, 0.007377353496849537, -0.024129079654812813, 0.027606064453721046, 0.0005905816797167063, -0.0009221691871061921, 0.0010762544116005301, -0.003544426755979657, -0.0026358396280556917, -0.006489373277872801, -0.01177978701889515, 0.008992203511297703, -0.013001227751374245, -0.0033683294896036386, 0.030783310532569885, 0.004897003993391991, 0.0009404346346855164, 0.0025721448473632336, 0.018598875030875206, -0.00409894622862339, -5.12251176587597e-07, -0.0032840275671333075, 0.01720508188009262, 0.010048787109553814, 0.01218443550169468, -0.00351257948204875, 0.009471788071095943, -0.010445943102240562, 0.009876436553895473, -0.022240716964006424, -0.031232919543981552, -0.012244383804500103, -0.004582277033478022, 0.008092982694506645, 0.0097565408796072, 0.009082125499844551, -0.008722437545657158, -0.006586789153516293, 0.00266581354662776, 0.0010593939805403352, 0.033990528434515, 0.012843864038586617, -0.0037261443212628365, 0.01876373216509819, 0.0028981121722608805, -0.014305097050964832, 0.01083560474216938, -0.002658320125192404, 0.013788045383989811, 0.010281085968017578, 0.009644138626754284, -0.004177628085017204, -0.007261204533278942, -0.0010134963085874915, 0.0137430839240551, 0.01666554994881153, -0.010206150822341442, -0.016410771757364273, 0.0004451608983799815, 0.020831938832998276, 0.020906873047351837, -0.0026527000591158867, 0.012708980590105057], "df618784-f3bd-49f9-b3b9-88ac69087dc2": [-0.0517926961183548, -0.03264851123094559, -0.00993241649121046, 0.0010104745160788298, -0.01045723631978035, -0.03806903958320618, -0.01348082721233368, 0.0161049272865057, -0.01313616894185543, 0.03283650800585747, 0.0010418071178719401, 0.0023930231109261513, -0.012736679054796696, -0.02288842387497425, -0.003274250775575638, -0.02581801638007164, -0.009720921516418457, 0.01081756129860878, 0.0041084797121584415, -0.0013502368237823248, 0.06416904926300049, -0.03175553306937218, -0.02874760888516903, 0.023248746991157532, -0.015658438205718994, -0.0230607520788908, -0.002218735869973898, -0.01589343324303627, -0.03206885978579521, -0.021337462589144707, 0.008075963705778122, 0.006638582795858383, 0.028261955827474594, 0.0037696966901421547, 0.019974496215581894, -0.009227434173226357, 0.005365698132663965, 0.030502231791615486, 0.002291192300617695, -0.0009321431862190366, -0.016856908798217773, 0.03258584439754486, -0.007304399274289608, -0.01508662011474371, -0.017232898622751236, -0.018580198287963867, -0.03474779054522514, -0.01371582131832838, -0.018454868346452713, -0.006991073954850435, -0.01241552084684372, 0.017123235389590263, -0.012282357551157475, -0.005616358481347561, 0.022904090583324432, -0.015282448381185532, 0.011271882802248001, 0.11210784316062927, 0.03878968954086304, -0.020178157836198807, -0.031050551682710648, -0.022230440750718117, -0.012094361707568169, 0.0047625466249883175, 0.005722105968743563, -0.02332707867026329, -0.00044991576578468084, 0.012431186623871326, -0.02458038181066513, 0.007022406440228224, -0.0047625466249883175, 0.0010780353331938386, -0.04859677702188492, 0.03427780419588089, 0.011851535178720951, -0.017937881872057915, 0.03296183794736862, -0.032993167638778687, -0.00442572170868516, -0.010026413947343826, -0.004131979309022427, -0.004570635035634041, -0.002729848027229309, 0.018721194937825203, 0.03515511378645897, 0.020773475989699364, -0.035844430327415466, -0.05126004293560982, -0.040105655789375305, -0.05235668271780014, 0.018580198287963867, 0.0301889069378376, 0.006568084470927715, 0.010410238057374954, -0.004758629947900772, 0.017671555280685425, -0.013371163047850132, 0.00730048306286335, 0.006282174959778786, -0.00961909070611, -0.007449312601238489, -0.003967483527958393, -0.032006192952394485, 0.01948884315788746, -0.01975516974925995, 0.005169869866222143, 0.02555168978869915, 0.0491294302046299, 0.000676587107591331, 0.017107568681240082, 0.03578176721930504, -0.04051297903060913, 0.01771855354309082, -0.018000546842813492, -0.07200218737125397, -0.016888242214918137, -0.010574733838438988, 0.02484670840203762, -0.02777630090713501, -0.009861918166279793, -0.0075628929771482944, -0.04095163568854332, 0.023844067007303238, 0.00765689043328166, -0.0075472267344594, 0.010371072217822075, 0.0062665087170898914, 0.03446579724550247, 0.050069406628608704, 0.01370798796415329, 0.01259568240493536, -0.00382844521664083, 0.02732197940349579, -0.010895892046391964, -0.03678440675139427, 0.029248930513858795, 0.0375363864004612, 0.06510902941226959, -0.0003123462956864387, 0.02928026206791401, -0.021838784217834473, -0.02475271001458168, -0.011076054535806179, 0.01699790544807911, 0.005169869866222143, 0.009736588224768639, -0.05956316739320755, 0.05351598560810089, -0.05893651768565178, 0.03330649435520172, -0.04151562228798866, -0.01870552822947502, -0.015211950056254864, 0.02610000967979431, 0.04157828539609909, -0.040732309222221375, -0.031833864748477936, 0.05398597568273544, -0.016496583819389343, 0.03443446755409241, -0.006239092908799648, -0.05198069289326668, -0.012204025872051716, -0.00943109579384327, 0.001104472205042839, 0.006900992710143328, 0.04621550440788269, 0.022575099021196365, -0.03402714431285858, 0.02669532783329487, 0.04778213053941727, -0.016245923936367035, 0.02725931443274021, -0.00335062388330698, 0.004676382057368755, -0.04593351110816002, 0.02519136480987072, 0.00863994937390089, 0.04320757836103439, -0.027008652687072754, -0.024502050131559372, 0.0037696966901421547, -0.00031430457602255046, -0.01629292219877243, -0.02928026206791401, -0.005843519698828459, 0.007351398002356291, 0.011271882802248001, 0.014154477044939995, 0.024455050006508827, -0.030737226828932762, -0.014875125139951706, -0.011099553667008877, -0.003609117353335023, -0.01446780189871788, -0.051761362701654434, -0.01621459238231182, -0.009078605100512505, 0.007445395924150944, 0.03258584439754486, -0.012016030959784985, -0.013833317905664444, -0.026554331183433533, 0.048032790422439575, -0.011342381127178669, 0.00966608989983797, 0.013613990508019924, -0.04129629209637642, 0.01859586499631405, 0.009987248107790947, 0.012313690036535263, -0.0388210229575634, 0.02733764424920082, 0.0003013309615198523, -0.021885782480239868, 0.024251390248537064, -0.023468075320124626, 0.019567174836993217, -0.008138628676533699, -0.00035053284955210984, -0.0069323256611824036, -0.04352090507745743, -0.010324073024094105, -0.001984720816835761, -0.043301574885845184, 0.0005967870820313692, -0.03722306340932846, 0.025598688051104546, -0.012117861770093441, -0.005780854262411594, 0.013566991314291954, -0.0048957099206745625, 0.020068494603037834, -0.03169286996126175, 0.008545951917767525, 0.0491294302046299, 0.006184260826557875, 0.023201748728752136, 0.01446780189871788, -0.02758830599486828, 0.0012288232101127505, 0.04988140985369682, -0.04273759201169014, 0.0008058339008130133, 0.0003762353153433651, 0.025755351409316063, 0.008553784340620041, -0.009736588224768639, 0.006971491035073996, 0.033682484179735184, -0.006243009585887194, 0.0012533017434179783, -0.00605109753087163, 0.017843883484601974, -0.012219692580401897, 0.024079060181975365, 0.029233263805508614, -0.004092813469469547, -0.025943346321582794, 0.015603607520461082, 0.018094545230269432, 0.019880499690771103, -0.022637763991951942, 0.021039804443717003, 0.03106621839106083, -0.01967683807015419, 0.020146826282143593, 0.009908917360007763, 0.008459786884486675, 0.01055123470723629, 0.007844885811209679, -0.020898807793855667, -0.012846343219280243, 0.005013206973671913, -0.008890609256923199, -0.033682484179735184, 0.006082430016249418, 0.029139265418052673, 0.013018672354519367, 0.016888242214918137, -0.0027396392542868853, -0.05370398238301277, 0.03509245067834854, 0.025489024817943573, 0.05154203623533249, 0.023045087233185768, 0.013543492183089256, -0.0017046862049028277, -0.010590399615466595, -0.028637945652008057, -0.002377356868237257, 0.006736496929079294, 0.0110368886962533, 0.047500137239694595, -0.00282776216045022, 0.010637398809194565, -0.015478276647627354, -0.01001074817031622, -0.00645450409501791, -0.004836961627006531, -0.0252070315182209, 0.012783678248524666, -0.014052646234631538, -0.054361965507268906, 0.019708169624209404, -0.00916476920247078, 0.020585481077432632, 0.02243410237133503, -0.031379543244838715, 0.05420530214905739, 0.029139265418052673, -0.03126987814903259, -0.012196192517876625, -0.00687749357894063, -0.02136879600584507, 0.003411330748349428, -0.006164677906781435, -0.008491119369864464, 0.01232935581356287, -0.020444484427571297, -2.3652399249840528e-05, 0.017201567068696022, -0.039667002856731415, 0.04352090507745743, 0.01237635500729084, -0.04007432237267494, 0.020992804318666458, -0.02838728576898575, -0.03954166918992996, -0.015454777516424656, -0.01646525226533413, -0.011499043554067612, -0.03097222000360489, -0.03161453828215599, -0.026037344709038734, -0.014577466063201427, -0.0603778138756752, -0.08265525102615356, -0.016935240477323532, -0.014914290979504585, -0.026397667825222015, 0.011397212743759155, 0.014428636990487576, -0.0034269969910383224, -0.006415338255465031, -0.037160396575927734, 0.01699790544807911, 0.012039530090987682, 0.02652299962937832, -0.013590491376817226, 0.0010026413947343826, -0.03634575009346008, 0.020428819581866264, 0.047061480581760406, 0.039760999381542206, -0.0020659896545112133, -0.027807632461190224, 0.004715547896921635, 0.049442753195762634, 0.013833317905664444, -0.04352090507745743, -0.05830986425280571, -0.030157573521137238, -0.0215567909181118, 0.013692322187125683, 0.04533819109201431, 0.022230440750718117, -0.020538482815027237, -0.032899171113967896, -0.0036130340304225683, -0.018141543492674828, -0.0232330821454525, 0.01322233397513628, -0.0005468507879413664, -0.013433828018605709, -0.04950542002916336, 0.0639810562133789, 0.00018995355640072376, -8.059562969719991e-05, 0.011123052798211575, -0.0338391475379467, 0.009297932498157024, 0.007186902221292257, 0.023045087233185768, 0.04041898250579834, 0.018360871821641922, 0.014710629358887672, 0.0184235367923975, -0.0205698162317276, -0.0027376811485737562, -0.043834228068590164, 0.014812460169196129, -0.020319154486060143, 0.00015299093502108008, -0.010096912272274494, -0.002978550037369132, 0.0014618589775636792, 0.022951088845729828, 0.0004956906195729971, -0.0215567909181118, 0.008162127807736397, 0.010958557017147541, 0.0053813643753528595, 0.005753438454121351, 0.03036123514175415, -0.01593259908258915, 0.009258766658604145, 0.005632024724036455, 0.0011867200955748558, -0.009642590768635273, -0.0028355952817946672, -0.005608525592833757, 0.03847636282444, 0.028105292469263077, 0.023045087233185768, 0.00714382017031312, 0.028199288994073868, 0.028606612235307693, -0.02581801638007164, -0.012360688298940659, 0.004037981852889061, 0.010590399615466595, -0.01718590036034584, 0.01790654845535755, -0.028951270505785942, 0.02429838851094246, 0.006199927069246769, 0.03346315771341324, -0.009525093249976635, -0.02910793386399746, 0.04728081077337265, 0.046090174466371536, -0.02351507544517517, -0.000633994466625154, -0.013316331431269646, -0.03114454820752144, 0.02110246941447258, 0.008530285209417343, 0.010363238863646984, 0.014640131033957005, -0.03249184787273407, 0.014107477851212025, 0.024705711752176285, -0.014859459362924099, -0.05830986425280571, -0.026413334533572197, -0.014444302767515182, -0.010856726206839085, 0.01718590036034584, 0.007598142139613628, 0.007931049913167953, 0.03919701278209686, -0.028026960790157318, -0.024439385160803795, 0.006125512532889843, -0.0134416613727808, 0.018736861646175385, -0.029217597097158432, 0.016512250527739525, -0.042862921953201294, -0.029859915375709534, 0.026413334533572197, 0.007790053728967905, -0.01370798796415329, 0.0441475547850132, -0.03150487318634987, -0.015070953406393528, 0.003959650173783302, 0.011859367601573467, 0.02429838851094246, -0.030016576871275902, 0.022841425612568855, -0.043677568435668945, 0.011522543616592884, -0.0013972356682643294, -0.00809946283698082, -0.010598232969641685, -0.0015206075040623546, -0.005212951917201281, -0.006532835308462381, -0.006818744819611311, 0.012219692580401897, 0.007061572279781103, 0.011937699280679226, -0.029233263805508614, 0.009485927410423756, -0.05583459511399269, -0.005659440997987986, 0.003609117353335023, 0.012540850788354874, 0.04157828539609909, -0.0011739912442862988, -0.0018642863724380732, 0.005181619431823492, 0.008553784340620041, -0.010903725400567055, 0.014663631096482277, -0.01602659560739994, -0.01621459238231182, -0.007801803760230541, 0.049536753445863724, 0.023797066882252693, -0.01424064114689827, 0.000835208164062351, -0.012086529284715652, 0.03537444397807121, -0.0270556528121233, 0.04906676337122917, -0.030220238491892815, -0.03866435959935188, -0.000983548117801547, -0.008577284403145313, -0.02606867626309395, 0.012893342413008213, 0.008256125263869762, 0.0011162218870595098, -0.004057564307004213, -0.00911777000874281, 0.04142162203788757, 0.0013149877777323127, -0.04041898250579834, 0.004492303356528282, -0.014757628552615643, -0.00036130339140072465, 0.0029570087790489197, 0.01188286766409874, -0.030925221741199493, -0.0006217551999725401, 0.014491301961243153, -0.0150944534689188, -0.02859094738960266, 0.017765551805496216, -0.024094726890325546, 0.013888150453567505, 0.022418435662984848, 0.03430913761258125, 0.0022598598152399063, 0.0007377834990620613, 0.009564259089529514, -0.007942800410091877, 0.00017110507178585976, 0.011177885346114635, -0.018392203375697136, -0.008663448505103588, -0.004621550440788269, 0.016982238739728928, 0.03694107010960579, 0.007292649708688259, 0.00282776216045022, 0.012243191711604595, 0.004210310522466898, 0.013817652128636837, -0.02011549286544323, -0.022120775654911995, 0.01764022186398506, -0.013371163047850132, -0.02796429581940174, -0.0009830585913732648, -0.0024987703654915094, -0.012564349919557571, -0.0027024319861084223, 0.01045723631978035, -0.020710811018943787, 0.028026960790157318, -0.01237635500729084, -0.02671099454164505, -0.024611713364720345, 0.0318651981651783, -0.033964477479457855, 0.018047545105218887, 0.009078605100512505, -0.024705711752176285, 0.02722798101603985, 0.014217142015695572, 0.01286200899630785, 0.016574915498495102, -0.01969250477850437, -0.028966937214136124, -0.019614173099398613, -0.014757628552615643, 0.008216959424316883, -0.003473995951935649, -0.00034832977689802647, -0.03402714431285858, -0.01718590036034584, -0.0029119683895260096, -0.017875216901302338, -0.03000091202557087, 0.018815193325281143, 0.010402404703199863, -0.018282540142536163, 0.05279533565044403, -0.017593223601579666, 0.003331041196361184, -0.02981291525065899, 0.021854449063539505, -0.009509427472949028, 0.014647964388132095, 0.0038852354045957327, 0.03246051445603371, 0.006975407712161541, 0.04195427522063255, 0.0029237179551273584, 0.011561708524823189, -0.03838236629962921, 0.022183440625667572, 0.0060941800475120544, 0.018752528354525566, -0.01850186660885811, -0.007978049106895924, -0.02342107705771923, -0.014428636990487576, -0.0032899172510951757, -0.009650424122810364, 0.016245923936367035, -0.02393806353211403, 0.009180435910820961, 0.011914200149476528, 0.028778942301869392, 0.000266571412794292, 0.01717023365199566, -0.03506111726164818, 0.03054923005402088, -0.04254959523677826, 0.032899171113967896, 0.07087421417236328, -0.026851991191506386, 0.030047910287976265, 0.01131104864180088, 0.005906184669584036, -0.0258963480591774, -0.005929683800786734, 0.0003277677751611918, -0.04355223849415779, -0.0033995809499174356, -0.0004917740589007735, 0.002007241128012538, 0.011459877714514732, 0.006709081120789051, -0.0307058934122324, 0.008773112669587135, -0.006568084470927715, -0.0009478094871155918, -0.002351899165660143, -0.016762910410761833, -0.021838784217834473, 0.014976955950260162, -0.0011593041708692908, 0.042330268770456314, 0.03625175356864929, -0.01886219158768654, 0.016982238739728928, 0.022747427225112915, 0.012877675704658031, 0.021494125947356224, -0.010519902221858501, -0.015517442487180233, 0.03803770989179611, 0.00288259400986135, 0.026757992804050446, -0.005976682994514704, -0.023609071969985962, -0.006665998604148626, 0.01735823042690754, 0.03062756173312664, -0.010363238863646984, -0.0011485335417091846, 0.012204025872051716, 0.02500336989760399, 0.007449312601238489, 0.024956371635198593, -0.019567174836993217, -0.00039606294012628496, -0.0016185217536985874, -0.001926951459608972, -0.010378905571997166, 0.023013753816485405, 0.010402404703199863, 0.01629292219877243, 0.010590399615466595, 0.019191183149814606, -0.03737972676753998, 0.009720921516418457, 0.03549977391958237, -0.032272521406412125, -0.007942800410091877, -0.004081063903868198, 0.052043356001377106, -0.02563002146780491, -0.00921176839619875, 0.0019484926015138626, 0.022747427225112915, -0.01995883136987686, 0.004124145954847336, -0.0019152017775923014, -0.018846524879336357, 0.006662082392722368, -0.03979233279824257, 0.020538482815027237, -0.003808862529695034, -0.031551871448755264, 0.022199107334017754, 0.015407778322696686, -0.03866435959935188, -0.004151562228798866, 0.01770288683474064, -0.02171345241367817, -0.0009375285007990897, -0.01024574227631092, 0.014389471150934696, 0.016136260703206062, -0.001091743353754282, 0.017937881872057915, 0.01977083459496498, 0.026053011417388916, -0.002545769326388836, -0.027744967490434647, 0.027823299169540405, -0.021431460976600647, -0.002704390324652195, -0.010566900484263897, 0.01790654845535755, -0.007147736847400665, -0.044460881501436234, -0.008193460293114185, 0.010386737994849682, -0.017734220251441002, 0.028543947264552116, -0.005929683800786734, 0.004406139254570007, 0.044304218143224716, -0.030643228441476822, -0.019112851470708847, -0.008553784340620041, 0.012078695930540562, 0.011123052798211575, 0.01701357215642929, -0.0012454686220735312, 0.02252809889614582, -1.4886018107063137e-05, 0.02501903660595417, -0.017937881872057915, 0.0134416613727808, -0.05940650403499603, 0.005679023452103138, 0.00939192995429039, 0.038507696241140366, -0.00756680965423584, 0.011953365989029408, 0.011138719506561756, 0.01135021448135376, -0.031175881624221802, 0.01050423551350832, 0.0031058385502547026, 0.012204025872051716, 0.028449950739741325, 0.012274524196982384, -0.0016596456989645958, -0.0025066034868359566, -0.00315871206112206, -0.027180982753634453, 0.016809910535812378, -0.036095090210437775, -0.04361490160226822, 0.016512250527739525, 0.012768011540174484, 0.012258858419954777, -0.0005022998666390777, 0.021321795880794525, -0.02680499106645584, 0.029342927038669586, 0.008001548238098621, 0.02420439012348652, 0.001599918003194034, -0.02859094738960266, -0.07275416702032089, -0.0007260338170453906, 0.011115220375359058, -0.0199274979531765, -0.010637398809194565, -0.013206667266786098, -0.051761362701654434, -0.0003916567948181182, -0.013801985420286655, 0.0061333454214036465, -0.02224610559642315, -0.004648966249078512, 0.03340049088001251, 0.008780945092439651, 0.03141087666153908, 0.015689771622419357, -0.027462974190711975, 0.005808270536363125, -0.016606248915195465, -0.01001074817031622, -0.02981291525065899, 0.023906731978058815, 0.010018580593168736, 0.00167531194165349, 0.018016213551163673, 0.006869660224765539, -0.015564441680908203, 0.028293287381529808, 0.05404863879084587, -0.021791784092783928, -0.034935787320137024, 0.011224883608520031, -0.014929957687854767, -0.020945806056261063, 0.009015939198434353, -0.009000273421406746, 0.010112578980624676, 0.003932234365493059, 0.007257400546222925, 0.0057456050999462605, 0.006501502823084593, 0.0006016827537678182, -0.01131104864180088, 0.03131687641143799, -0.0041868113912642, -0.015384279191493988, 0.013230166397988796, -0.004770379979163408, 0.003989024553447962, -0.008890609256923199, 0.0030921304132789373, 0.0012611348647624254, -0.018282540142536163, 0.03465379402041435, -0.030674559995532036, -0.015525275841355324, -0.00809946283698082, 0.006125512532889843, 0.008796611800789833, -0.030831223353743553, 0.002441980177536607, -0.0014275891007855535, -0.0033839147072285414, -0.028543947264552116, 0.0338391475379467, -0.01125621609389782, -0.02448638342320919, -0.009282266721129417, -0.0014001730596646667, 0.01646525226533413, -0.0008298228494822979, -0.013418162241578102, -0.01619892567396164, 0.04132762551307678, 0.04903543367981911, 0.039667002856731415, -0.0055732764303684235, -0.0021501958835870028, 0.03944767266511917, -0.010449403896927834, 0.005679023452103138, -0.028355952352285385, 0.0348731204867363, -0.00178595504257828, 0.022199107334017754, 0.027635304257273674, -0.009509427472949028, 0.0014050687896087766, 0.002371481852605939, -0.0018280581571161747, -0.0034230805467814207, -0.02013115957379341, -0.04994407668709755, 0.03756771981716156, 0.0045549687929451466, 0.00013365288032218814, 0.0018907232442870736, 0.042518261820077896, -0.01743656024336815, -0.017593223601579666, 0.03252318128943443, -0.0036110756918787956, 0.02129046432673931, -0.026241006329655647, 0.013543492183089256, -0.022857090458273888, 0.03144221007823944, -0.012384188361465931, 0.014091812074184418, -0.04530685767531395, 0.011099553667008877, 0.020898807793855667, 0.009062938392162323, 0.0003987555974163115, 0.012924674898386002, 0.007151653058826923, 0.01589343324303627, -0.030564896762371063, -0.02768230251967907, -0.03340049088001251, 0.019739503040909767, -0.004000774119049311, -0.016606248915195465, -0.0004996072384528816, 0.001463817316107452, 0.006403588689863682, -0.04139029234647751, -0.051761362701654434, 0.002042490290477872, 0.0334944911301136, -0.03857036307454109, 0.00785271916538477, 0.002528144745156169, 0.026413334533572197, 0.00698715727776289, 0.006505419500172138, 0.0187681932002306, 0.005667273886501789, -0.01753055863082409, 0.05777721107006073, -0.01259568240493536, 0.0005581109435297549, -0.016167592257261276, -0.02055414952337742, -0.00806029699742794, -0.03167720139026642, 0.026115676388144493, 0.011123052798211575, 0.027039986103773117, -0.01806321181356907, 0.02110246941447258, -0.02494070492684841, -0.0021501958835870028, 0.0015499817673116922, 0.027212314307689667, 0.0040105655789375305, 0.008428454399108887, 0.001444234512746334, -0.007484561763703823, -0.0016106886323541403, 0.001640062895603478, 0.002945259213447571, -0.010809727944433689, -0.014076145365834236, -0.03371381759643555, -0.01966117136180401, -0.003317333059385419, 0.05166736617684364, -0.006936241872608662, -0.013559158891439438, 0.010120411403477192, 0.013629657216370106, -0.01125621609389782, -0.03390181437134743, 0.011224883608520031, -0.006356589961796999, 0.036627743393182755, -0.005189452785998583, 0.024361053481698036, 0.0035738684237003326, 0.013363330624997616, -0.004809545353055, 0.002608434297144413, -0.010645232163369656, -0.011875034309923649, -0.015016121789813042, 0.0014647964853793383, 0.027995629236102104, 0.0023930231109261513, -0.020272156223654747, 0.05793387442827225, -0.025081701576709747, -0.0020914473570883274, 0.004594134166836739, -0.014499135315418243, -0.01895618997514248, 0.001521586673334241, 0.013731487095355988, 0.004927042406052351, -0.011506876908242702, 0.024956371635198593, -0.007108571007847786, -0.014138810336589813, 0.008937608450651169, -0.016151927411556244, 0.031191548332571983, 0.00023389255511574447, -0.003979233093559742, -0.040199656039476395, -0.007402313407510519, 0.004222060553729534, -0.024251390248537064, 0.005299116484820843, -0.032272521406412125, 0.0032487933058291674, 0.010527734644711018, -0.025692686438560486, 0.01790654845535755, -0.02378140203654766, 0.005048456136137247, 0.0062900083139538765, -0.034215137362480164, -0.01286984235048294, -0.007750888355076313, -0.041170962154865265, -0.022449767217040062, 0.01638692058622837, 0.003987066447734833, 0.0646703690290451, 0.02606867626309395, -0.016982238739728928, 0.011647873558104038, -0.008718280121684074, 0.03437180072069168, 0.0047625466249883175, -0.010707897134125233, 0.0322098545730114, -0.010598232969641685, -0.008021131157875061, -0.014961290173232555, -0.009243100881576538, 0.020099828019738197, -0.02022515796124935, 0.002485062461346388, 0.04652882739901543, -0.00011755823652492836, -0.03009490855038166, -0.004222060553729534, -0.016089262440800667, -0.007421896327286959, 0.014452136121690273, 0.004245559684932232, 0.026773659512400627, 0.015407778322696686, -0.012775844894349575, 0.0006452545640058815, -0.012454686686396599, 0.00988541729748249, -0.02492503821849823, 0.013598323799669743, -0.0322098545730114, 0.00867911521345377, -0.03694107010960579, -0.03543710708618164, 0.011107387021183968, 0.0025340195279568434, -0.002910010050982237, -0.031473539769649506, 0.02573968470096588, 0.023374078795313835, -0.022183440625667572, 0.040011659264564514, -0.014843792654573917, -0.0020111578051000834, 0.027541305869817734, 0.010700063779950142, -0.0011436378117650747, 0.008773112669587135, -0.0017301439074799418, 0.012227525003254414, 0.0043983059003949165, -0.023906731978058815, -0.02511303499341011, 0.01568193919956684, 0.031567540019750595, -0.014953456819057465, -0.009023772552609444, 0.03960433602333069, -0.0019984289538115263, -0.013042171485722065, -0.022308772429823875, -0.027932962402701378, 0.0009184352238662541, -0.0041672284714877605, -0.020867474377155304, 0.0058043538592755795, 0.019253848120570183, 0.003853902919217944, -0.017953548580408096, -0.004942708648741245, 0.014522634446620941, 0.011342381127178669, 0.002449813298881054, -0.008961107581853867, -0.013543492183089256, -0.0012366563314571977, 0.017467893660068512, -0.006011932156980038, 0.013731487095355988, -0.03900901600718498, 0.0220737773925066, 0.002678932622075081, 0.01348866056650877, -0.0043003917671740055, -0.010856726206839085, -0.024611713364720345, 0.002814054023474455, -0.003810820635408163, 0.031473539769649506, 0.009634757414460182, -0.005201202351599932, 0.0038597777020186186, 0.05423663556575775, 0.030940888449549675, 0.02046015113592148, -0.014632298611104488, -0.016042262315750122, 0.009838419035077095, 0.0060980962589383125, -2.0669076548074372e-05, 0.03318116441369057, 0.02937426045536995, 0.017875216901302338, 0.0062547591514885426, -0.0011524501023814082, 0.00031087759998627007, 0.017060570418834686, -0.007621641270816326, -0.010747062973678112, 0.00832662358880043, 0.00885927677154541, -0.004319974686950445, 0.002927634632214904, 0.00026926404098048806, 0.022136442363262177, 0.017138902097940445, -0.008436287753283978, -0.02252809889614582, -0.003640450071543455, -0.02467437833547592, -0.03355715423822403, 0.014906457625329494, -0.00029398739570751786, 0.007229984737932682, 0.020507149398326874, -0.006787412334233522, -0.0033760815858840942, 0.020240822806954384, -0.0066777486354112625, 0.005040623247623444, -0.0021776119247078896, -0.0076020583510398865, 0.001551940105855465, -0.029154932126402855, 0.013425995595753193, -0.028794609010219574, -0.009854084812104702, -0.006893159821629524, -0.0006839307025074959, 0.01665324717760086, 0.003614992368966341, -0.016888242214918137, -0.003932234365493059, 0.01699790544807911, -0.0005047477316111326, -0.01931651309132576, -0.03587576374411583, 0.0018750570015981793, 0.003775571705773473, -0.012540850788354874, -0.004880043677985668, -0.00939192995429039, -0.003802987514063716, 0.02110246941447258, 0.0037364058662205935, -0.035844430327415466, 0.018909189850091934, 0.0006697331555187702, 0.0007118362700566649, -0.011499043554067612, 0.027979962527751923, 0.015337279997766018, -0.0014834001194685698, 0.007182986009865999, -0.008671281859278679, 0.017467893660068512, -0.012086529284715652, 0.005107204895466566, 0.02180745080113411, -0.02652299962937832, 0.01966117136180401, -0.021838784217834473, 0.0008689885144121945, -0.005816103424876928, 0.022825758904218674, 0.00567510724067688, -0.0012170735280960798, -0.0005194348632358015, -0.004468804225325584, -0.013676655478775501, 0.002015074249356985, -0.003287958912551403, -0.012407687492668629, 0.012133527547121048, 0.030329903587698936, 0.01188286766409874, -0.0052717006765306, -0.009948083199560642, -0.010206576436758041, -0.0020640313159674406, -0.0322098545730114, 0.003820612095296383, -0.02519136480987072, -0.021588122472167015, -0.0015147327212616801, 0.00939976330846548, 0.0029491756577044725, -0.0005199243896640837, -0.010167410597205162, -0.00689707649871707, -0.007292649708688259, -0.004402222577482462, -0.011694871820509434, -0.005028873216360807, -0.0334944911301136, 0.011522543616592884, 0.009861918166279793, -0.02197977900505066, -0.00939192995429039, -0.030376901850104332, 0.009133436717092991, -0.014741961844265461, -0.03540577366948128, 0.012728845700621605, -0.004390472546219826, 0.0017918298253789544, -0.007809636648744345, -0.006270425394177437, -0.00634484039619565, -0.0038010291755199432, 0.013316331431269646, 0.012932507321238518, 0.032993167638778687, -0.027556972578167915, -0.02669532783329487, 0.009109937585890293, -0.0012963840272277594, 0.028825940564274788, 0.009838419035077095, 0.011162218637764454, -0.03393314406275749, 0.004492303356528282, 0.008459786884486675, 0.005154203623533249, 0.009509427472949028, 0.018940523266792297, 0.0009879543213173747, -0.0004633789649233222, -0.008961107581853867, 0.006082430016249418, 0.028888605535030365, -0.024141725152730942, 0.02429838851094246, -0.007864468730986118, 0.012047363445162773, 0.0009027689229696989, 0.0051502869464457035, -0.0167472455650568, -0.006607250310480595, -0.0018662447109818459, 0.0016772702801972628, -0.011076054535806179, 0.037881046533584595, -0.0014226933708414435, -0.0001638838875805959, -0.028919938951730728, 0.003334957640618086, 0.031739868223667145, 0.015376445837318897, -0.07582475990056992, -0.0035229530185461044, 0.001059431699104607, 0.009720921516418457, 0.0015930640511214733, 0.010645232163369656, 0.005726022645831108, -0.01268184743821621, 0.007511977571994066, 0.013856817968189716, 0.004355223849415779, 0.006865743547677994, -0.0031450041569769382, 0.0005375489708967507, -0.014694963581860065, -0.011107387021183968, 0.0006819724221713841, 0.004668549168854952, -0.020522816106677055, -0.0056946901604533195, -0.011295381933450699, -0.011820202693343163, -0.009258766658604145, -0.005831769667565823, -0.003873485838994384, -0.009219600819051266, 0.0033662901259958744, 0.020178157836198807, -0.009290099143981934, 0.023248746991157532, 0.0013286956818774343, 0.010222242213785648, -0.024909373372793198, -0.017389561980962753, 0.03098788671195507, 0.05404863879084587, -0.02022515796124935, 0.03178686648607254, -0.01268184743821621, -0.010982057079672813, 0.001999408006668091, -0.00939192995429039, 0.0005943392170593143, 0.0005120912683196366, -0.008240459486842155, -0.016167592257261276, -0.03941633924841881, -0.0028512615244835615, 0.014224975369870663, -0.013856817968189716, -0.010136078111827374, 0.003934192471206188, 0.008663448505103588, -0.035311777144670486, -0.01986483298242092, -0.013864651322364807, -0.0013365288032218814, -0.005060205701738596, 0.022637763991951942, 0.000638890138361603, 0.0017389561980962753, 0.029452592134475708, -0.006129429209977388, -0.012932507321238518, 0.020084161311388016, 0.013316331431269646, 0.013574824668467045, 0.013911649584770203, -0.017593223601579666, 0.0008097504614852369, -0.007045906037092209, 0.009313599206507206, -0.015392112545669079, -0.0010653064819052815, -0.009955915622413158, -0.031473539769649506, -0.005569359753280878, -0.012533017434179783, -0.0002673057606443763, 0.023609071969985962, -0.013057838194072247, 0.003501411760225892, -0.014303306117653847, 0.006489753257483244, 0.00689707649871707, -0.028951270505785942, 0.010809727944433689, 0.010559067130088806, 0.01340249553322792, -0.011718371883034706, 0.013120503164827824, -0.011295381933450699, -0.036627743393182755, 0.02699298784136772, -0.008224792778491974, 0.026460332795977592, 0.020945806056261063, -0.02199544571340084, -0.022465433925390244, -4.0022430766839534e-05, 0.021133800968527794, 0.01375498715788126, -0.0002015808568103239, -0.007480645086616278, 0.01859586499631405, 0.0014148602494969964, -0.018470535054802895, -0.010355405509471893, -0.024376720190048218, -0.020695146173238754, 0.011146552860736847, -0.0006550460238941014, 0.002316650003194809, -0.0012464477913454175, 0.007155569735914469, -0.0012141361366957426, -0.008075963705778122, 0.0013296748511493206, 0.01189070101827383, 0.006427088286727667, 0.03393314406275749, 2.616145138745196e-05, -0.023123417049646378, 0.00032140337862074375, -0.0005620275042019784, 0.004131979309022427, -0.008350122720003128, 0.0038754441775381565, 0.029844248667359352, -0.0150944534689188, 0.007265233900398016, -0.009015939198434353, -0.0253793615847826, 0.014209308661520481, -0.012932507321238518, 0.003428955329582095, 0.015462610870599747, -0.025598688051104546, 6.737720832461491e-05, 0.019551508128643036, -0.026930321007966995, 0.015924764797091484, -0.008248291909694672, 0.0031567539554089308, -0.01585426740348339, -0.008017214946448803, 0.02127479761838913, -0.013786319643259048, 0.000983548117801547, -0.020350487902760506, 0.00810729619115591, -0.026601329445838928, -0.003244876628741622, -0.0012395938392728567, 0.020898807793855667, -0.03640841692686081, -0.01995883136987686, -0.020851807668805122, -0.006129429209977388, 0.00603151461109519, 0.0007353356340900064, -0.012509518302977085, -0.012478185817599297, -0.008655615150928497, 0.007245650980621576, 0.011099553667008877, 0.015901265665888786, 0.014091812074184418, -0.008295291103422642, -0.007343565113842487, -0.011154386214911938, -0.03819437325000763, 0.012180526740849018, -0.013355497270822525, -0.010002914816141129, 0.0012924674665555358, 0.028700610622763634, -0.00712423725053668, 0.00257122702896595, 0.007735222112387419, 0.013003005646169186, -0.016089262440800667, -0.03568776696920395, 0.004484470468014479, -0.01646525226533413, 0.0026456417981535196, -0.019708169624209404, -0.01326149981468916, -0.012392021715641022, 0.00698715727776289, 0.035029783844947815, -0.003695281920954585, -0.020804809406399727, -0.022293105721473694, 0.005882685072720051, 0.007970215752720833, 0.022026779130101204, 0.004578467924147844, -0.007523727137595415, -0.011906366795301437, -0.011138719506561756, 0.026053011417388916, 0.0029139267280697823, 0.010026413947343826, 0.011240550316870213, 0.010371072217822075, -0.016512250527739525, 0.030862556770443916, -0.013817652128636837, 0.013073503971099854, -0.020334821194410324, -0.02349940873682499, -0.023076418787240982, -0.03377648442983627, -0.022982420399785042, -0.010394571349024773, -0.009062938392162323, 0.023985061794519424, 0.007261317223310471, 0.031207215040922165, 0.004073230549693108, 0.008451953530311584, -0.0031704618595540524, 0.008001548238098621, -0.016042262315750122, -0.01834520511329174, -0.0033721651416271925, 0.0027788050938397646, 0.010880226269364357, 0.000606088899075985, 0.005890518426895142, 0.0041868113912642, 0.014115311205387115, 0.040011659264564514, -0.006082430016249418, -0.006575917825102806, 0.01508662011474371, -0.021165134385228157, 0.016339922323822975, 0.021776119247078896, -0.005036706570535898, 0.006203843746334314, 0.00032336165895685554, 0.03178686648607254, -0.0016469168476760387, 0.01215702760964632, -0.011068221181631088, -0.013684488832950592, -0.02047581784427166, -0.0018231624271720648, -0.00335062388330698, 0.0041868113912642, -0.009916750714182854, -0.0023616906255483627, 0.010762728750705719, 0.012384188361465931, -0.011710538528859615, 0.0035758265294134617, 0.003043173346668482, 0.031551871448755264, -0.009047272615134716, -0.01456180028617382, 0.0012493851827457547, 0.0006222447264008224, 0.007692139595746994, -0.003473995951935649, 0.009916750714182854, 0.006086346693336964, -0.02028782293200493, -0.014499135315418243, -0.015298115089535713, 0.007378814276307821, 0.021039804443717003, -0.01135021448135376, -0.011828035116195679, -0.026131341233849525, 0.004006648901849985, 0.0033447491005063057, -0.017107568681240082, -0.009587758220732212, 0.0019504509400576353, -0.005898351315408945, -0.012752345763146877, -0.006865743547677994, -0.011428545229136944, 0.004210310522466898, 0.013997814618051052, 0.000747085374314338, 0.002855178201571107, 0.00471946457400918, 0.014068312011659145, -0.004695964977145195, -0.005898351315408945, 0.0004707225307356566, -0.020084161311388016, 0.005808270536363125, -0.004927042406052351, -0.002676974283531308, 0.018125876784324646, -0.002688723849132657, 0.008334456942975521, -0.010480736382305622, -0.01612059399485588, 0.006732580251991749, 0.008451953530311584, 0.014726296067237854, 0.001396256498992443, 0.03264851123094559, -0.0013952773297205567, -0.004225976765155792, 0.0019524091621860862, -0.0037266144063323736, -0.0060589308850467205, -0.030423900112509727, -0.009634757414460182, -0.004864377435296774, -0.009313599206507206, 0.004323890898376703, 0.05201202258467674, 0.015533109195530415, 0.003043173346668482, 0.004261225927621126, -0.0003862715093418956, -0.0018975771963596344, 0.0004256819956935942, 0.01184370182454586, 0.016668913885951042, -0.028418617323040962, 0.0008322707144543529, -0.023609071969985962, 0.006243009585887194, 0.004178978037089109, -0.017843883484601974, 0.0230607520788908, 0.007645140867680311, 0.01579943485558033, -0.015509609133005142, 0.015243282541632652, 0.02946825884282589, 0.010339739732444286, -0.004797795787453651, -0.0002091692149406299, -0.014303306117653847, 0.02163512259721756, 0.016261590644717216, 0.017389561980962753, -0.015431278385221958, 0.006470170337706804, 0.0033094999380409718, 0.00661116698756814, 0.007652973756194115, -0.014945623464882374, -0.0009536843281239271, 0.008115128614008427, -0.006615083198994398, 0.003254668088629842, -0.0015813143691048026, 0.00658375071361661, -0.0010300574358552694, -0.0037089898250997066, 0.017608890309929848, 0.008459786884486675, -0.004852627869695425, -0.0020229073707014322, 0.012924674898386002, -0.007128153927624226, 0.008224792778491974, -0.005882685072720051, -0.01673157885670662, -0.004715547896921635, 0.0024165224749594927, 0.01743656024336815, 0.022120775654911995, -0.0020464067347347736, -0.01933217979967594, 0.007363148033618927, 0.009775754064321518, -0.0061920941807329655, -0.015830768272280693, -0.00034955370938405395, -0.04530685767531395, -0.044460881501436234, 0.007778304163366556, -0.02964058704674244, 0.0002429496089462191, -0.01619892567396164, -0.00020843485253863037, -0.018376536667346954, -0.00997941568493843, 0.012971673160791397, 0.023170417174696922, 0.00723390094935894, -0.02022515796124935, 0.021760452538728714, 0.000416380149545148, 0.011491210199892521, -0.01673157885670662, -0.008710447698831558, -0.01210219506174326, 0.012313690036535263, -0.016167592257261276, -0.013566991314291954, 0.010167410597205162, -0.0019915748853236437, 0.0022030696272850037, -0.01619892567396164, 0.009807086549699306, -0.012000364251434803, 0.0009238204802386463, -0.002712223445996642, -0.02431405521929264, -0.010065579786896706, 0.01743656024336815, 0.0055732764303684235, -0.003634575055912137, -4.1705330659169704e-05, 0.008757445961236954, 0.007202568463981152, -0.006763913203030825, 0.010794061236083508, 0.015783770009875298, 0.0036933235824108124, -0.0215567909181118, -0.01727989874780178, 0.013151835650205612, -0.00215802900493145, 0.0005209035589359701, 0.01264268159866333, -0.0021345296408981085, -0.024878039956092834, 0.004605884198099375, -0.003323208075016737, -0.006638582795858383, 0.012744512408971786, 0.0025418526493012905, 4.2990453948732466e-05, -0.019708169624209404, -0.013801985420286655, -0.005604608915746212, 0.005549776833504438, -0.003015757305547595, 0.02144712582230568, 0.010292740538716316, 0.010974223725497723, -0.028434284031391144, -0.008177794516086578, -0.01576026901602745, -0.004437471739947796, 0.021306131035089493, 0.025927679613232613, 0.018094545230269432, -0.008021131157875061, -0.014577466063201427, 0.0043356409296393394, -0.0007583454716950655, -0.0002673057606443763, 0.009760087355971336, 0.001763434731401503, 0.0040693143382668495, -0.002651516580954194, -0.01376282051205635, -0.00046827466576360166, -0.012470352463424206, 0.004288642201572657, -0.016574915498495102, -0.015454777516424656, 0.013089170679450035, -0.01130321528762579, 0.0199274979531765, -0.03562510386109352, -0.0047233812510967255, 0.010974223725497723, 0.008420621044933796, 0.004660715814679861, -0.002032698830589652, 0.0014628381468355656, -0.003058839589357376, -0.018094545230269432, 0.01370798796415329, 0.0037109481636434793, -0.01420147530734539, 0.0004925084067508578, 0.0027396392542868853, 0.01897185482084751, -0.0001808964880183339, -0.008357956074178219, 0.022543765604496002, 0.010621732100844383, 0.01376282051205635, -0.005275617353618145, -0.00303925690241158, -0.021885782480239868, 0.02431405521929264, 0.029358593747019768, -0.008765279315412045, -0.01051206886768341, -0.008303124457597733, 0.017843883484601974, 0.007359231356531382, -0.011201384477317333, 0.022653428837656975, -0.010222242213785648, -0.015016121789813042, -0.004147645551711321, 0.010974223725497723, -0.010363238863646984, 0.0037364058662205935, 0.021071135997772217, -0.005886601749807596, 0.02528536319732666, 0.00415939511731267, -0.00540878064930439, 0.004876127000898123, -0.003967483527958393, -0.01130321528762579, 0.018407870084047318, 0.02519136480987072, -0.008984606713056564, 0.007899717427790165, -0.010347573086619377, -0.004656799603253603, 0.00442572170868516, -0.002917843172326684, -0.009023772552609444, -0.0008224793127737939, -0.027807632461190224, -0.027353310957551003, 0.021682120859622955, -0.04308224841952324, -0.014397304505109787, 0.0010946807451546192, -0.007974132895469666, -0.016261590644717216, 0.00974442157894373, 0.010410238057374954, 0.01561927329748869, 0.0053461152128875256, 0.019379178062081337, 0.006301757879555225, 0.020444484427571297, 0.000545871676877141, 0.0004031617136206478, 0.0003830893256235868, -0.008835777640342712, 0.012180526740849018, 0.014420803636312485, 0.00939976330846548, 0.004707715008407831, 0.018486201763153076, -0.0021776119247078896, -0.009008106775581837, 0.015125785954296589, 0.011961198411881924, 0.0033467074390500784, 0.001117201056331396, 0.006853993982076645, 3.993063364760019e-05, 0.010418071411550045, -0.018940523266792297, 0.017107568681240082, -0.04066964238882065, -0.006470170337706804, 0.008647781796753407, -0.0016733537195250392, 0.003331041196361184, -0.013104836456477642, -0.01914418488740921, -3.038400063815061e-05, 0.004782129544764757, 0.0093840966001153, -0.005808270536363125, 0.009360597468912601, 0.01214919425547123, 0.027838965877890587, 0.0012043446768075228, 0.008459786884486675, 0.0010457236785441637, -0.00330558349378407, 0.006900992710143328, 0.007641224190592766, -0.010684398002922535, -0.015439110808074474, 0.009423262439668179, 0.004899626597762108, 0.0009776733350008726, 0.0230607520788908, -0.0037266144063323736, 0.022277439013123512, -0.010002914816141129, 0.0005287366802804172, 0.010026413947343826, 0.007045906037092209, 0.0041868113912642, 0.014068312011659145, -0.014702796004712582, -0.00974442157894373, 0.013645322993397713, 0.003421122208237648, -0.022590763866901398, 0.007586392108350992, 0.01237635500729084, -0.0131831681355834, -0.0029628837946802378, -0.029452592134475708, -0.029311595484614372, 0.02171345241367817, -0.025771018117666245, 0.021870115771889687, 0.0126896807923913, -0.014326806180179119, 0.009282266721129417, 0.018893525004386902, -0.005957100074738264, -0.00696757435798645, 0.013010839000344276, 0.010049914009869099, 0.01796921342611313, 0.009752254001796246, -0.028152290731668472, -0.0057651880197227, -0.011224883608520031, -0.0027983877807855606, 0.014491301961243153, -0.002547727432101965, -0.002299025421962142, 0.002210902748629451, 0.003043173346668482, 0.019880499690771103, 0.024768376722931862, 0.010715730488300323, 0.0007059613708406687, 0.012736679054796696, -0.010566900484263897, -0.00618817750364542, -0.0001031158899422735, 0.0028767192270606756, 0.005338282324373722, 0.005267783999443054, 0.0107783954590559, 0.012227525003254414, 0.022810092195868492, 0.002263776259496808, 0.0009404658921994269, 0.00210319715552032, 0.0002560456341598183, 0.011741871014237404, 0.020883141085505486, -0.009274433366954327, -0.00257122702896595, -0.004198560956865549, -0.0055145276710391045, -0.01942617818713188, 0.010747062973678112, 0.02509736828505993, 0.002784679876640439, -0.004758629947900772, -0.005263867322355509, -0.01023007556796074, -0.031019218266010284, 0.0013972356682643294, 0.009587758220732212, -0.028026960790157318, -0.022998087108135223, -0.004014482256025076, 0.017687221989035606, -0.009454594925045967, 0.009634757414460182, 0.01823554001748562, 0.00670124776661396, -0.010519902221858501, 0.01737389527261257, 0.00565552432090044, -0.01290117483586073, 0.003244876628741622, -0.01157737523317337, -0.006372256204485893, -0.004825212061405182, -0.011005556210875511, -0.02769796922802925, 0.006282174959778786, -0.016418254002928734, -0.012650514952838421, 0.005287366919219494, 0.020538482815027237, -0.00810729619115591, -0.008169961161911488, -0.01850186660885811, 0.012047363445162773, 0.00725348386913538, -0.024862373247742653, 0.004833044949918985, -0.005624191835522652, 0.0018358912784606218, -0.0057691046968102455, 0.0031822114251554012, 0.0026534749194979668, -0.015204116702079773, -6.829515768913552e-05, 0.012713179923593998, 0.013394663110375404, 0.009681756608188152, 0.0004256819956935942, 0.027133982628583908, 0.0018819109536707401, 0.01023790892213583, 0.02509736828505993, -0.006415338255465031, -0.011428545229136944, 0.00921176839619875, 0.004382639657706022, 0.010794061236083508, -0.0017996630631387234, 0.009297932498157024, 0.0012885509058833122, -0.018830860033631325, 0.012016030959784985, 0.006199927069246769, -0.012227525003254414, -0.01796921342611313, 0.005737772211432457, -0.00809946283698082, -0.0014481510734185576, -0.00827962439507246, -0.04458621144294739, 0.00594143383204937, 0.009595591574907303, 0.027384644374251366, -0.006501502823084593, 0.008749612607061863, -0.00894544180482626, -0.00961909070611, 0.014914290979504585, -0.00242435559630394, 0.007535476703196764, 0.021039804443717003, -0.0008807382546365261, 0.0002229995880043134, 0.017342563718557358, 0.024000728502869606, -0.006791329011321068, 0.011538209393620491, -0.003526869462803006, 0.019018854945898056, 0.01701357215642929, 0.03825703635811806, 0.0022285273298621178, -0.008115128614008427, 0.0006677748751826584, 0.0091256033629179, 0.0001518893986940384, 0.014890791848301888, -0.0041868113912642, 0.01420147530734539, -0.007414063438773155, 0.005173786543309689, -0.02252809889614582, -0.0017771427519619465, 0.009728754870593548, -0.010002914816141129, -0.013942982070147991, 0.010042080655694008, 3.390279380255379e-05, 0.025692686438560486, 0.03737972676753998, 0.00043841084698215127, 0.029170598834753036, -0.008310957811772823, 0.0030451316852122545, -0.00809946283698082, 0.02028782293200493, 0.0072378176264464855, 0.0035347025841474533, -0.039760999381542206, -0.0161049272865057, -0.00509545486420393, -0.004257309250533581, 0.014710629358887672, -0.021321795880794525, -0.00992458313703537, -0.006215593311935663, -0.0027083067689090967, 0.020632481202483177, 0.00017453206237405539, 0.030737226828932762, -0.010833227075636387, 0.008404955267906189, -0.013512159697711468, 0.00647408701479435, -0.010700063779950142, 0.00028933645808137953, 0.005471445620059967, -0.005702523048967123, -0.0017702887998893857, 0.024721376597881317, -0.00378340482711792, 0.022324437275528908, -0.009368430823087692, -0.005917934235185385, -0.01398214790970087, -0.0172642320394516, -0.007891885004937649, -0.00011021467071259394, 0.03009490855038166, -0.006497586611658335, -0.018470535054802895, 0.03828836977481842, -0.004981874488294125, -0.01402131374925375, 0.02376573532819748, 0.0074297296814620495, 0.01184370182454586, -0.007351398002356291, 0.004766463302075863, 0.004171145148575306, -0.00015078787691891193, 0.049192093312740326, -0.0075276438146829605, -0.012775844894349575, 0.003511203220114112, -0.0018828901229426265, -0.01073139626532793, 0.002246151678264141, -0.0153529467061162, -0.007081155199557543, -0.00841278862208128, 0.001117201056331396, 0.0007911467691883445, 0.0032076691277325153, 0.01648091897368431, 0.0013296748511493206, -0.004927042406052351, 0.02805829420685768, -0.02154112420976162, -0.001029078266583383, 0.019535841420292854, 0.010206576436758041, 0.026569997891783714, -0.0022970670834183693, 0.0015832725912332535, -0.014185809530317783, -0.0002545769093558192, 0.011287549510598183, 0.008451953530311584, 0.010449403896927834, 0.014937790110707283, 0.005651607643812895, -0.010598232969641685, -0.009000273421406746, 0.004304308444261551, 0.01691957376897335, 0.01583860069513321, 0.004347390495240688, 0.0074688950553536415, 0.007351398002356291, 0.0022148191928863525, 0.000759814225602895, 0.021838784217834473, -0.03170853480696678, -0.012392021715641022, -0.008890609256923199, 0.020883141085505486, 0.0013668822357431054, -0.003624783828854561, -0.015384279191493988, 0.011804535984992981, 0.004876127000898123, -0.009266600012779236, 0.003458329476416111, -0.017875216901302338, -0.005326532758772373, 0.025222698226571083, -0.0030784225091338158, 0.004656799603253603, -0.011624373495578766, 0.004171145148575306, -0.01237635500729084, 0.02403206191956997, 0.011679206043481827, 0.0063252574764192104, -0.004809545353055, 0.0033799982629716396, 0.024893706664443016, -0.00765689043328166, 0.012525185011327267, 0.02118079923093319, 0.008937608450651169, -0.004394389223307371, -0.0051855361089110374, -0.0017820384819060564, -0.002389106433838606, -0.024956371635198593, 0.007112487684935331, 0.023217415437102318, -0.010441570542752743, -0.012204025872051716, -0.030674559995532036, 0.012039530090987682, -0.011929865926504135, 0.0037501140031963587, 0.007135986816138029, -0.028167957440018654, -0.007010656874626875, 0.008263958618044853, 0.015517442487180233, -0.01397431455552578, -0.0065798345021903515, 0.008122961968183517, -0.023922396823763847, 0.0009693505708128214, 0.002467437880113721, 0.003587576327845454, -0.017749886959791183, 0.004746880382299423, -0.014843792654573917, -0.003297750372439623, -0.010942891240119934, -0.006548501551151276, -0.0345284640789032, 0.0037461973261088133, -0.007382730953395367, 0.015752436593174934, 0.004641133360564709, 0.010801894590258598, -0.005679023452103138, -0.008491119369864464, -0.014326806180179119, -0.0036815740168094635, 0.001878973562270403, 0.013637489639222622, -0.00020831245637964457, 0.025442026555538177, -0.006305674556642771, 0.00806029699742794, -0.010425903834402561, 0.01242335420101881, -0.010034247301518917, 0.012352855876088142, 0.026475999504327774, -0.01597176492214203, -0.010331906378269196, 0.00921176839619875, -0.005314782727509737, -0.01912851817905903, -0.0036894071381539106, 0.005667273886501789, 0.005169869866222143, 0.0017164358869194984, 0.00046729552559554577, 0.0043356409296393394, -0.020005829632282257, 0.0009047272033058107, -0.017514891922473907, -0.006199927069246769, -0.00832662358880043, -0.029311595484614372, 0.019802168011665344, 0.00661116698756814, -0.00141388108022511, 0.011420712806284428, -0.0025144366081804037, 0.008185626938939095, -0.002201111288741231, 0.009407596662640572, -0.016935240477323532, 0.0006222447264008224, 0.0045314691960811615, -0.01135021448135376, 0.012298023328185081, -0.021415794268250465, -0.00029619046836160123, 0.0039106933400034904, 0.01590909995138645, -0.016527917236089706, -0.00943892914801836, 0.016809910535812378, -0.01967683807015419, 0.03490445390343666, -0.0029491756577044725, -0.012783678248524666, -0.024690045043826103, 0.0067169140093028545, 0.010582567192614079, -0.01161654107272625, -0.0046293833293020725, 0.013848984614014626, 0.00993241649121046, 0.002069906098768115, -0.00908643752336502, 0.006881410256028175, 0.013559158891439438, -0.032084524631500244, 0.01370798796415329, -0.01344949472695589, 0.00643492117524147, -0.0037501140031963587, -0.0063252574764192104, -0.007030239794403315, -0.03178686648607254, -0.012783678248524666, 0.00592185091227293, -0.020601147785782814, 0.00728090014308691, -1.4480592653853819e-05, 0.021917114034295082, 0.005526277702301741, -0.009869751520454884, -0.005393114406615496, 0.0348731204867363, -0.011718371883034706, -0.020256489515304565, -0.024862373247742653, -0.00044404089567251503, 0.005749521777033806, -0.0010045997332781553, -0.016935240477323532, 0.0045549687929451466, -0.010982057079672813, -0.029233263805508614, -0.013911649584770203, -0.012478185817599297, 0.003340832656249404, 0.0004993624170310795, -0.004022315610200167, 0.005064122378826141, 0.010629565455019474, 0.01959850639104843, 0.01922251656651497, -0.00261626741848886, 0.0003830893256235868, 0.000910602044314146, 0.015251115895807743, 0.016073595732450485, -0.0021012388169765472, -0.03891501948237419, -0.005064122378826141, -0.00701457355171442, 0.002114946721121669, -0.00827962439507246, 0.04493086785078049, -0.01214919425547123, 0.0002017032529693097, 0.01948884315788746, -0.011632206849753857, -0.0028943438082933426, 0.01923818141222, 0.022575099021196365, -0.014271973632276058, 0.0056359414011240005, 0.004429638385772705, -0.01232935581356287, -0.030862556770443916, 0.020538482815027237, -0.013003005646169186, -0.0046646324917674065, -0.00723390094935894, -0.023264413699507713, 0.017154568806290627, -0.013723654672503471, -0.028825940564274788, -0.025692686438560486, 0.00018248759442940354, -2.3040434825816192e-05, 0.014138810336589813, -0.01513361930847168, -0.01648091897368431, 0.0014324847143143415, 0.01879952661693096, 0.024643046781420708, -0.012266690842807293, 0.0030000910628587008, 0.023107752203941345, 0.012070862576365471, 0.012172693386673927, -0.014428636990487576, 0.006117679178714752, 0.013425995595753193, 0.019253848120570183, 0.026382002979516983, 0.018736861646175385, 0.004210310522466898, -0.004327807575464249, 0.015744604170322418, 0.021948447450995445, -0.005310866050422192, 0.025661353021860123, 0.0033662901259958744, -0.017514891922473907, 0.015000456012785435, 0.009720921516418457, -0.01503962092101574, -0.015807269141077995, -0.021572457626461983, 0.014123144559562206, -0.018376536667346954, 0.0024693962186574936, 0.018893525004386902, 0.00303925690241158, 0.023906731978058815, -0.004218143876641989, 0.01242335420101881, -0.03766172006726265, -0.013457328081130981, -0.023013753816485405, -0.022841425612568855, 0.02403206191956997, -0.0011632207315415144, 0.021917114034295082, 0.01966117136180401, -0.0023323162458837032, 0.0059022679924964905, -0.015384279191493988, 0.010559067130088806, 0.004872210789471865, 0.021149467676877975, 0.011373713612556458, 0.0001331633102381602, -0.01823554001748562, -0.007002823520451784, 0.019802168011665344, -0.003201794344931841, 0.0126896807923913, 0.010637398809194565, -0.024439385160803795, -0.004539302550256252, -0.01536078006029129, 0.003201794344931841, -0.01843920163810253, 0.001184761873446405, 0.01156954187899828, 0.008138628676533699, -0.02378140203654766, -0.015587940812110901, 0.011765370145440102, -0.005393114406615496, -0.0009977456647902727, -0.01817287504673004, 0.0009654340101405978, 0.0025692686904221773, -0.0007852718699723482, -0.020366154611110687, -0.007950632832944393, -0.0030666727107018232, -0.04236159846186638, 0.0086321160197258, 0.0003994899452663958, -0.011906366795301437, 0.016261590644717216, 0.008984606713056564, 0.008459786884486675, -0.00500537408515811, -0.010982057079672813, 0.0034426632337272167, -0.008201293647289276, -0.04132762551307678, -0.010324073024094105, -0.012940340675413609, -0.015392112545669079, -0.0051267873495817184, 0.00863994937390089, -0.01948884315788746, -0.01572110503911972, 0.00130813370924443, -0.008138628676533699, 0.0048957099206745625, 0.0039106933400034904, -0.010089078918099403, 0.0012405728921294212, -0.008874943479895592, 0.015157118439674377, 0.01762455701828003, 0.0076843067072331905, 0.014875125139951706, -0.007116404362022877, 0.0184235367923975, -0.012556517496705055, -0.017138902097940445, 0.019880499690771103, -0.01215702760964632, -0.005447946023195982, 0.009681756608188152, -0.0009948082733899355, -0.016496583819389343, -0.0019631797913461924, -0.0041437288746237755, -0.011209217831492424, -0.0032683759927749634, -0.0024439385160803795, -0.012431186623871326, -0.010582567192614079, 0.022935422137379646, 0.03239785134792328, 0.022998087108135223, 0.02093013934791088, 0.006039347965270281, 0.010637398809194565, 0.002389106433838606, -0.003898943541571498, -0.02492503821849823, 0.000249069242272526, -0.002530102850869298, 0.024455050006508827, 0.013065670616924763, 0.0003796623204834759, -0.002291192300617695, 0.003468120936304331, 0.02180745080113411, -0.00785271916538477, 0.01817287504673004, -0.0065445853397250175, -0.010151744820177555, 0.014013480395078659, -0.0056946901604533195, 0.008138628676533699, -0.004766463302075863, 0.027650970965623856, 0.010629565455019474, -0.010065579786896706, 0.0004650924529414624, 0.006912742741405964, -0.01099772285670042, -0.006235176231712103, 0.009062938392162323, -0.011561708524823189, 0.022230440750718117, -0.036847073584795, 0.0031704618595540524, 0.011867200955748558, 0.010042080655694008, -0.008671281859278679, 0.00029668002389371395, 0.004261225927621126, -0.005957100074738264, 0.01237635500729084, -0.007057655602693558, -0.004022315610200167, -0.015321614220738411, -0.00629784120246768, 0.0006834411178715527, -0.023891065269708633, -0.015439110808074474, 0.0019338055280968547, 0.03925967961549759, -0.012799344025552273, 0.003058839589357376, -0.0017947673331946135, -0.01135021448135376, -0.015063120983541012, 0.006160761695355177, 0.004343473818153143, -0.0053813643753528595, 0.0005111121572554111, 0.002111030276864767, -0.02707131765782833, -0.006360506638884544, 0.0013120502699166536, 0.006062847562134266, 0.01045723631978035, 0.022308772429823875, 0.026601329445838928, 0.0031861281022429466, -0.01051206886768341, -0.007668639998883009, 0.0014520676340907812, 0.005338282324373722, -0.0071046543307602406, -0.0023636487312614918, -0.02083614282310009, 0.008561617694795132, -0.017843883484601974, 0.012674014084041119, 0.003348665777593851, -0.0172642320394516, 0.009595591574907303, 0.00836578942835331, -0.021948447450995445, -0.019833501428365707, -0.022841425612568855, -0.00010605331772239879, 0.019363513216376305, 0.0012170735280960798, 0.014123144559562206, -0.03214719146490097, -0.0031273795757442713, 0.007433646358549595, 0.01682557724416256, -0.005201202351599932, -0.010911558754742146, 0.009955915622413158, 0.001220010919496417, 0.009846252389252186, -0.0016557291382923722, 0.0002927634632214904, 0.026053011417388916, 0.016230257228016853, -0.007077238522469997, -0.006152928341180086, -0.002132571302354336, 0.009102104231715202, -0.014812460169196129, 0.025238364934921265, -0.0025261864066123962, -0.010049914009869099, 0.003922442905604839, -0.002291192300617695, -0.0014510884648188949, -0.0026730576064437628, 0.015885600820183754, -0.005412696860730648, 0.00781355332583189, -0.005205119028687477, 0.005459696054458618, 0.0015411694766953588, -0.02332707867026329, -0.028637945652008057, 0.004711631219834089, 0.021588122472167015, -0.0017546224407851696, -0.015697604045271873, -0.001811412745155394, -0.001627334044314921, -0.007515894249081612, 0.0004016930179204792, -0.018141543492674828, -0.016418254002928734, 0.006525002419948578, 0.0008229688392020762, -0.0049544586800038815, 0.014593132771551609, 0.013018672354519367, 0.01130321528762579, -0.0418289452791214, 0.0001791829854482785, 0.0033388743177056313, 0.00947809498757124, 0.0045079695992171764, 0.016778577119112015, -0.008310957811772823, 0.0025124785024672747, 0.02385973185300827, 0.0069832406006753445, -0.01817287504673004, 0.012705346569418907, 0.0025320611894130707, 0.012548684142529964, -0.003677657339721918, -0.003473995951935649, 0.002714181551709771, -0.0334944911301136, -0.01045723631978035, 0.009783587418496609, 0.011718371883034706, -0.005111121106892824, -0.011279716156423092, 0.00939192995429039, -0.02013115957379341, 0.040011659264564514, 0.0019406594801694155, 0.003172420198097825, 0.013277165591716766, -0.01023007556796074, -0.01817287504673004, 0.014373804442584515, 0.00378340482711792, -0.022136442363262177, 0.005682940129190683, 0.004018398933112621, 0.041703615337610245, 0.009846252389252186, -0.01691957376897335, -0.01691957376897335, -0.01948884315788746, 0.004194644279778004, 0.020695146173238754, 0.0006530877435579896, -0.004633300006389618, 0.009783587418496609, -0.0002015808568103239, 0.029515257105231285, 0.005009290296584368, 0.02066381275653839, 8.787799743004143e-05, -0.0015509609365835786, -0.0029198015108704567, 0.0024361053947359324, -0.003254668088629842, 0.006912742741405964, 0.012016030959784985, -0.005632024724036455, -0.0047233812510967255, 0.0035856179893016815, -0.02171345241367817, 0.013927316293120384, -0.03079989179968834, 0.0033212497364729643, 0.003015757305547595, 0.011154386214911938, 0.012564349919557571, 0.017232898622751236, -0.0057651880197227, -0.01969250477850437, 0.009525093249976635, -0.0010525776306167245, -0.0016195009229704738, 0.0025144366081804037, -0.002953092334792018, -0.02439238503575325, -0.01188286766409874, -0.016700245440006256, -0.007997632026672363, -0.0010574733605608344, -0.006556334905326366, 0.012697513215243816, -0.006834411062300205, 0.021415794268250465, 0.0199274979531765, 0.008671281859278679, 0.02448638342320919, 0.002925676293671131, -0.009736588224768639, 0.0022794425021857023, 0.011397212743759155, -0.001647896016947925, 0.03534311056137085, -0.001904431264847517, -0.002377356868237257, 0.0010799936717376113, -0.005064122378826141, -0.010598232969641685, -0.006846161093562841, 0.012760179117321968, -0.006348756607621908, 0.0013296748511493206, 0.002208944410085678, -0.0071399034932255745, -0.00841278862208128, -0.019990162923932076, 0.02190144918859005, 0.01832953840494156, -0.005420530214905739, 0.004124145954847336, 0.002449813298881054, 0.018548866733908653, -0.01268184743821621, -0.021118134260177612, 0.009603424929082394, 0.003526869462803006, -0.0028865106869488955, 0.009611258283257484, -0.005353948567062616, 0.013512159697711468, -0.013410328887403011, -0.023045087233185768, 0.011467711068689823, -0.006532835308462381, -0.00859295018017292, 0.012345022521913052, -0.03358848765492439, -0.0012797386152669787, 0.024235723540186882, 0.00030402358970604837, -0.0010320156579837203, 0.008256125263869762, -0.002441980177536607, 0.004817378707230091, 0.004707715008407831, 0.020789142698049545, -0.011373713612556458, 0.012384188361465931, -0.0187681932002306, -0.014138810336589813, 0.006771746091544628, 0.008773112669587135, -0.016183258965611458, -0.005914017558097839, -0.020851807668805122, 0.023703070357441902, -0.02716531604528427, 0.034058474004268646, 0.0041084797121584415, 0.010848893783986568, -0.010183077305555344, -0.004339557606726885, 0.007132070604711771, 0.02049148455262184, -0.028465617448091507, -0.005820020101964474, 0.016606248915195465, 0.006568084470927715, 0.012815010733902454, -0.021650787442922592, 0.006842244416475296, -0.007696056272834539, 0.0071046543307602406, -0.006532835308462381, -0.004308224655687809, 0.01646525226533413, -0.008976774290204048, -0.024063393473625183, -0.020444484427571297, -0.020319154486060143, 0.0063879224471747875, -0.014342471957206726, 0.004547135438770056, -0.005369614809751511, 0.004656799603253603, 0.005835686344653368, -0.0004474679008126259, -0.009603424929082394, 0.0006090263486839831, -0.007085071410983801, -0.009525093249976635, 0.013598323799669743, 0.01682557724416256, 0.01665324717760086, -0.00382844521664083, 0.006587667390704155, 0.007085071410983801, 0.0034446215722709894, 0.008130795322358608, -0.0017193733947351575, 0.02180745080113411, 0.0007725430186837912, -0.010715730488300323, -0.0019181391689926386, -0.013386829756200314, -0.02102413773536682, 0.001705665374174714, -0.0011416795896366239, 0.002040531951934099, -0.0013032379793003201, 0.002925676293671131, -0.023201748728752136, 0.0003103880153503269, 0.012658348307013512, -0.016574915498495102, -0.0054401131346821785, 0.02279442548751831, 0.017859550192952156, 0.008201293647289276, 0.029765916988253593, -0.008953274227678776, -0.013942982070147991, 0.029217597097158432, -0.0064231716096401215, 0.01597176492214203, -0.0074297296814620495, -0.002964841900393367, 0.016308588907122612, -0.0033976228442043066, 0.014232808724045753, 0.011820202693343163, 0.017561890184879303, -0.016543583944439888, 0.01735823042690754, -0.011906366795301437, 0.015533109195530415, -0.0008053443161770701, -0.006979324389249086, -0.004891793709248304, 0.005201202351599932, -0.01299517322331667, -0.014679296873509884, -0.02270042896270752, -0.005604608915746212, -0.0005914017674513161, 0.004339557606726885, -0.0021971946116536856, -0.0014951498014852405, 0.02768230251967907, -0.0019661171827465296, 0.014177976176142693, -0.01568193919956684, 0.01815721020102501, -0.001710561104118824, -0.013606157153844833, 0.0006863785674795508, 0.006940158549696207, 0.021431460976600647, -0.009250933304429054, -0.004770379979163408, 0.019833501428365707, 0.015995264053344727, 0.01789088360965252, -0.002504645148292184, 0.0013169459998607635, -0.013590491376817226, -0.004770379979163408, 0.0005037685623392463, -0.03938500955700874, -0.018486201763153076, 0.0048957099206745625, -0.022481100633740425, 0.026945987716317177, -0.01939484477043152, 0.00658375071361661, -0.0017262273468077183, 2.5059915060410276e-05, 0.00469988165423274, -0.006575917825102806, 0.00014479062519967556, -0.009517259895801544, -0.02002149634063244, -0.0033545405603945255, 0.017044903710484505, 0.05160469934344292, 0.03079989179968834, 0.003015757305547595, 0.0013316331896930933, 0.008444121107459068, -0.018219875171780586, -0.0005160078289918602, 0.0056124418042600155, -0.012619182467460632, -0.012086529284715652, 0.00882011093199253, -0.022716093808412552, 0.023123417049646378, 0.010684398002922535, -0.002845386741682887, 0.011976865120232105, 0.011436378583312035, -0.0035993261262774467, -0.00725348386913538, 0.015846434980630875, -0.005545860156416893, -0.008420621044933796, 0.004836961627006531, -0.012321523390710354, -0.00043253597686998546, 0.018564533442258835, -0.0076255579479038715, -0.016261590644717216, -0.00687749357894063, -0.0016126468544825912, 0.017107568681240082, 0.0007368043879978359, -0.03114454820752144, 0.009501594118773937, 0.0032409599516540766, 0.01260351575911045, 0.007692139595746994, 0.004605884198099375, -0.005502778105437756, 0.003740322543308139, -0.017217233777046204, -0.01665324717760086, 0.013112669810652733, 0.01598743163049221, -0.026773659512400627, -0.0034916203003376722, 0.006321340799331665, 0.02385973185300827, -0.01843920163810253, 0.013966481201350689, 0.021619455888867378, 0.0027396392542868853, -0.014405136927962303, -0.015337279997766018, 0.011076054535806179, -0.023562073707580566, 0.0038264868780970573, -0.015869934111833572, -0.013010839000344276, -0.005091538652777672, -0.003340832656249404, -0.016590582206845284, 0.0006134324939921498, -0.007629474624991417, -0.01629292219877243, -0.009689589031040668, -0.011702705174684525, -0.01259568240493536, -0.0020346571691334248, 0.00603151461109519, 0.002767055295407772, -0.016762910410761833, -0.0037168231792747974, -0.01317533478140831, 0.0008743738289922476, -0.01188286766409874, -0.024690045043826103, -0.00027024318114854395, -0.008569451048970222, -0.0060589308850467205, -0.018407870084047318, -0.004386556334793568, -0.001426609931513667, 0.005686856806278229, -0.02252809889614582, 0.003748155664652586, 0.005169869866222143, 0.0025379362050443888, 0.00052579928888008, 0.016684580594301224, 0.0053461152128875256, 0.009595591574907303, 0.0016909783007577062, 0.03524911403656006, 0.0008787799743004143, 0.0015460652066394687, 0.00011388645361876115, -0.00014503541751764715, 0.008843610994517803, -0.0016126468544825912, -0.008992440067231655, 0.0004452648281585425, -0.004413972143083811, 0.018031878396868706, -0.009047272615134716, -6.217551708687097e-05, -0.022214774042367935, -0.02981291525065899, -0.005553693510591984, 0.028355952352285385, 0.004378722980618477, 0.00022838487348053604, -0.020005829632282257, 0.031175881624221802, 0.003450496355071664, -0.00242435559630394, 0.0035327444784343243, -0.006086346693336964, 0.009634757414460182, 0.014491301961243153, -0.009446762502193451, 0.012470352463424206, 0.01126404944807291, 0.001074118772521615, -0.007746971677988768, -0.004527552518993616, 0.005859185941517353, 0.010269241407513618, 0.00357191008515656, -0.007002823520451784, -0.013050004839897156, -0.0037148648407310247, 0.014209308661520481, 0.021776119247078896, -0.011224883608520031, -0.01903451979160309, 0.006904909387230873, 0.00961909070611, 0.025598688051104546, 0.008028964512050152, -0.0028473450802266598, 0.03455979749560356, 0.017922215163707733, -0.012094361707568169, 0.017671555280685425, 0.0014814418973401189, -0.004081063903868198, 0.0013796110870316625, -0.00011205056216567755, 0.0011661581229418516, -0.012172693386673927, -0.006164677906781435, -0.01948884315788746, -0.007558976300060749, 0.0052090357057750225, 0.01906585320830345, -0.0021012388169765472, -0.01211002841591835, -0.02190144918859005, 0.004864377435296774, -0.003793196054175496, 0.008404955267906189, 0.002165862126275897, -0.0006100054597482085, -2.574837526481133e-05, 0.011326714418828487, -0.00728090014308691, 0.0006344840512610972, 0.0029295929707586765, -0.020961472764611244, -0.009846252389252186, -0.014882958494126797, -0.010347573086619377, -0.0014256307622417808, 0.012791511602699757, 0.008295291103422642, -0.003853902919217944, -0.0070654889568686485, -0.010136078111827374, -0.007856635376811028, 0.009078605100512505, 0.02038181945681572, 0.017295563593506813, 0.002406731015071273, -0.009814919903874397, 0.00988541729748249, -0.009846252389252186, 0.004899626597762108, -0.008436287753283978, 0.008835777640342712, 0.0007955528562888503, 0.02013115957379341, -0.01597176492214203, -0.003041215008124709, -0.010911558754742146, 0.017060570418834686, 0.015117952600121498, -0.025442026555538177, -0.016261590644717216, 0.0073357317596673965, 0.018752528354525566, 0.018736861646175385, 0.0071634030900895596, 0.008193460293114185], "fc6d620d-8967-4097-ba4b-5b8379b30435": [-0.050977956503629684, -0.028961891308426857, -0.008218702860176563, 0.020648900419473648, -0.0347919836640358, -0.03840632736682892, 0.0066118910908699036, 0.025504693388938904, -0.0016460977494716644, 0.017883142456412315, 0.009868728928267956, 0.005519730970263481, -0.020538900047540665, -0.006831894628703594, -0.01937602274119854, 0.02134034037590027, -0.03894062340259552, 0.012854491360485554, 0.023021796718239784, 0.01265020202845335, 0.058615222573280334, -0.029276181012392044, -0.03548342362046242, -0.005610089749097824, -0.0018111002864316106, -0.004918649792671204, -0.008603708818554878, -0.004105422645807266, -0.05053795129060745, -0.014826665632426739, -0.01106303371489048, 0.01679883897304535, 0.0182602908462286, -0.018716013059020042, 0.014190226793289185, -0.015840252861380577, -0.01230448205024004, 0.004297925624996424, 0.0016382404137402773, -0.030046194791793823, -0.02451467700302601, 0.03216765820980072, 0.0077315522357821465, 0.0007204132853075862, -0.02179606258869171, 0.026478994637727737, -0.00231396546587348, -0.026541851460933685, -0.02753186784684658, -0.0007302348967641592, 0.029967620968818665, 0.0482121966779232, -0.03234051540493965, 0.021638916805386543, 0.008941571228206158, -0.02812902070581913, 0.016955984756350517, 0.09133289009332657, 0.01980031654238701, -0.036143433302640915, -0.017773140221834183, -0.026038987562060356, -0.03740059584379196, 0.00763333635404706, -0.04312068969011307, -0.021733203902840614, -0.009271577000617981, -0.005932237487286329, -0.009664439596235752, 0.0205860435962677, -0.018307434394955635, -0.013954508118331432, -0.02033461071550846, 0.03183764964342117, 0.005676876287907362, -0.0241060983389616, 0.06524675339460373, 0.0014221655437722802, -0.007751195225864649, 0.0223775003105402, -0.012445912696421146, 0.007762981113046408, 0.018920302391052246, 0.03384911268949509, 0.06644105911254883, 0.014622376300394535, -0.04044921696186066, -0.04846363142132759, -0.03916062414646149, -0.03403768688440323, 0.01265805959701538, 0.034949127584695816, -0.02608613111078739, 0.006411531008780003, 0.0004107878194190562, 0.005716162733733654, 0.03573485463857651, 0.012045192532241344, 0.00175315304659307, -0.02289607934653759, -0.0009173360886052251, 0.02306894026696682, -0.040952082723379135, 0.012791632674634457, -0.021057479083538055, 0.000981667428277433, 0.0019466382218524814, 0.01621740125119686, -0.020853189751505852, 0.01981602981686592, -0.0036791658494621515, -0.0214503426104784, 0.001486005843617022, 0.014645948074758053, -0.04667217284440994, -0.027469009160995483, -0.007861196994781494, 0.021843206137418747, -0.01705027185380459, -0.015038811601698399, 0.025598980486392975, 0.011856617406010628, -0.007205115165561438, 0.0022746792528778315, 0.0027421866543591022, 0.01791457086801529, 0.0370548777282238, 0.026306133717298508, 0.012296624481678009, -0.0037204164545983076, 0.007963341660797596, 0.0031861222814768553, 0.033220529556274414, 0.018323149532079697, -0.019344594329595566, 0.003144871676340699, 0.01629597507417202, 0.055880893021821976, -0.029449041932821274, 0.0365205816924572, -0.017207417637109756, -0.038029178977012634, 0.013176638633012772, -0.018056003376841545, 0.0018022608710452914, -0.008949428796768188, -0.038877762854099274, 0.07373260706663132, -0.00960158184170723, 0.02949618548154831, -0.020098892971873283, -0.0022000351455062628, 0.006816180422902107, -0.01723884604871273, -0.0031743363942950964, -0.03441483527421951, -0.010670170187950134, 0.04802362248301506, 0.010245878249406815, -0.004891149699687958, -0.024986112490296364, -0.06336101144552231, -0.008902285248041153, 0.02264464646577835, 0.013050922192633152, 0.023524660617113113, 0.0335976779460907, 0.011345895007252693, -0.01679883897304535, 0.03051763027906418, 0.037180595099925995, -0.0023257513530552387, 0.01470094919204712, -0.02332037314772606, 0.009876586496829987, 0.0018415472004562616, 0.015596677549183369, 0.01775742694735527, 0.03507484495639801, -0.01598954014480114, -0.013050922192633152, 0.04264925420284271, -0.0005338031915016472, -0.014119511470198631, 0.0057240198366343975, -0.010426594875752926, -0.00011147499753860757, -0.024986112490296364, 0.03300052508711815, 0.014960238710045815, 0.001207072869874537, -0.0377148874104023, 0.023713234812021255, 0.005370442755520344, -0.016264544799923897, -9.005166066344827e-05, 0.013357356190681458, -0.026306133717298508, 0.01097660418599844, 0.008422991260886192, -0.021937493234872818, -0.03256051987409592, -0.03318910300731659, 0.016107400879263878, -0.02574041113257408, 0.059652380645275116, -0.006969396956264973, -0.005633661523461342, 0.04195781424641609, -0.011235893703997135, 0.054655157029628754, -0.048495061695575714, 0.03384911268949509, -0.0069929687306284904, -0.01896744593977928, 0.005735805723816156, -0.01376593392342329, 0.05254941061139107, 0.010905888862907887, -0.029056178405880928, -0.007672622334212065, -0.007562620565295219, -0.022157495841383934, 0.002746115205809474, -0.013883792795240879, -0.04906078428030014, -0.021748919039964676, 0.016830269247293472, -0.02332037314772606, -0.024986112490296364, 0.014622376300394535, -0.019423168152570724, -0.009468008764088154, -0.03919205442070961, -0.012854491360485554, 0.04088922590017319, 0.008010485209524632, 0.009593724273145199, 0.006395816337317228, -0.0007140292436815798, 0.013066637329757214, 0.04513214901089668, -0.06021810322999954, 0.01595025509595871, 0.026180418208241463, 0.032466232776641846, 0.002777544315904379, 0.030140481889247894, 0.0028109378181397915, -0.0015400245320051908, 0.003394339932128787, 0.005126867443323135, 0.008202987723052502, -0.013153066858649254, -0.014842379838228226, 0.06018667668104172, 0.036929160356521606, -0.020381754264235497, 0.011165178380906582, -0.010921603068709373, 0.01458309032022953, -0.004293997306376696, -0.028600456193089485, 0.028600456193089485, 0.053555142134428024, -0.025520406663417816, 0.0027087931521236897, 0.010410880669951439, -0.004132923204451799, 0.03711773455142975, -0.013907364569604397, -0.018496010452508926, 0.023367516696453094, -0.008784426376223564, 0.03755774348974228, -0.03498055785894394, 0.004058279097080231, 0.018826015293598175, -0.030156195163726807, -0.002406288404017687, -0.011652329005300999, 0.014033081009984016, 0.004494357388466597, 0.0013033243594691157, 0.0011363574303686619, 0.023006081581115723, -0.02537897601723671, 0.023461803793907166, -0.024310387670993805, 0.015635963529348373, 0.012500913813710213, -0.02195320837199688, 0.009326577186584473, 0.027076147496700287, 0.015745965763926506, -0.013483072631061077, -0.004235067404806614, -0.01689312607049942, 0.01928173564374447, 0.01705027185380459, -0.014512374997138977, -0.011204464361071587, -0.010984460823237896, -0.0253004040569067, 0.004195781424641609, -0.02162320166826248, 0.03567199781537056, 0.021544629707932472, -0.021466057747602463, 0.03711773455142975, 0.05676090717315674, -0.011259465478360653, -0.03482341393828392, -0.0009502383763901889, -0.010921603068709373, -0.010803744196891785, 0.02820759266614914, 0.03799774870276451, -0.015078097581863403, -0.028537599369883537, -0.0030132622923702, 0.002911117859184742, -0.05138653516769409, 0.04733218252658844, 0.010025874711573124, -0.020004605874419212, 0.004077922087162733, 0.008100843988358974, -0.027563298121094704, -0.04748933017253876, 0.004462928511202335, -0.0363948680460453, 0.010953032411634922, -0.00026444619288668036, -0.02272322028875351, -0.0018877086695283651, -0.05044366419315338, -0.03309481590986252, -0.017977429553866386, -0.010316593572497368, -0.016845982521772385, 0.008085128851234913, 0.014865951612591743, 0.001373057602904737, -0.020460326224565506, 0.0018238683696836233, 0.014496659860014915, -0.003714523511007428, 0.031523361802101135, -0.003042727243155241, 0.0010052393190562725, -0.018590297549962997, -0.01767885312438011, 0.007059755735099316, 0.02152891457080841, -0.017285989597439766, -0.025771839544177055, -0.014378800988197327, 0.033754825592041016, -0.00632902979850769, -0.008941571228206158, -0.05119796097278595, -0.04374926909804344, 0.002520218724384904, -0.002290393691509962, 0.03642629459500313, -0.011220179498195648, -0.015023097395896912, -0.03472912684082985, -0.008627280592918396, -0.013530216179788113, -0.00823441706597805, 0.024388961493968964, 0.016531692817807198, -0.044566426426172256, -0.026966145262122154, 0.04349783807992935, 0.004989365581423044, -0.004553286824375391, 0.005672947503626347, -0.019533168524503708, 0.04928078502416611, 0.006246528122574091, -0.03334624692797661, 0.026698997244238853, -0.0009222468943335116, 0.04230353236198425, -0.0020586042664945126, 0.008894427679479122, 0.016075970605015755, -0.04802362248301506, -0.005083652678877115, -0.020853189751505852, -0.0019230664474889636, -0.011345895007252693, 0.00587723683565855, 0.006619748659431934, -0.02341466024518013, 0.021057479083538055, -0.03243480250239372, 0.011023747734725475, 0.017175989225506783, -0.011738758534193039, 0.036583442240953445, -0.003176300786435604, -0.030219053849577904, -0.005197582766413689, 0.01785171404480934, 0.00418399553745985, 0.039914924651384354, -0.0002004831185331568, -0.020114606246352196, 0.03472912684082985, 0.008745139464735985, 0.038217753171920776, 0.019926032051444054, 0.024137528613209724, 0.028961891308426857, -0.015612391754984856, -0.009145860560238361, 0.028427597135305405, 0.04286925494670868, 0.002475039567798376, 0.015470961108803749, -0.01887315884232521, 0.011542326770722866, 0.014402372762560844, 0.04365498200058937, -0.009884443134069443, -0.003508270252496004, -0.004663288593292236, -0.0016794911352917552, -0.030674776062369347, -0.019517455250024796, 0.0020802118815481663, -0.03369196504354477, 0.02083747461438179, -0.006407602224498987, 0.005264369770884514, -0.047395043075084686, -0.02245607227087021, 0.03325195983052254, -0.009161574766039848, -0.027139004319906235, -0.02701328881084919, -0.03328339010477066, -0.044566426426172256, -0.024891825392842293, 0.033157672733068466, 0.03542056679725647, 0.023351801559329033, 0.034603409469127655, -0.040354929864406586, -0.0014319871552288532, -0.0007989859441295266, 0.004502214957028627, 0.007924054749310017, -0.009271577000617981, 0.01991031877696514, -0.04151780530810356, -0.04569787159562111, -0.003292195498943329, 0.051575109362602234, -0.01672026701271534, 0.018904587253928185, -0.0394434854388237, 0.011801617220044136, 0.02102605067193508, 0.013380927965044975, 0.004282211419194937, -0.005720091518014669, -0.012925206683576107, -0.007047969847917557, -0.0235089473426342, -0.0067729651927948, -0.014952381141483784, -0.02932332456111908, 0.025756126269698143, 0.008603708818554878, 0.010623026639223099, -0.0406377911567688, -0.0020252109970897436, -0.032371945679187775, 0.022597502917051315, 0.01920316368341446, -0.003355053486302495, -0.00790834054350853, -0.01458309032022953, -0.013954508118331432, 0.0027186148799955845, 0.055880893021821976, 0.005496159195899963, 0.0026793284341692924, 0.007083327509462833, 0.0026655783876776695, 0.01572239398956299, 0.002268786309286952, -0.05280084162950516, -0.014064510352909565, -0.007102970499545336, 0.008100843988358974, -0.02761044166982174, 0.021198909729719162, 0.007664765231311321, 0.010748743079602718, -0.0027677228208631277, -0.02545754984021187, 0.056635189801454544, 0.01573810912668705, -0.009884443134069443, -0.028270451352000237, 0.020193180069327354, -0.04299497231841087, 0.026824714615941048, -0.001661812188103795, 0.020083177834749222, 0.003439519088715315, -0.0013917186297476292, 0.004812576808035374, 0.019847460091114044, -0.025693267583847046, -0.01184090320020914, -0.005590446293354034, 0.011856617406010628, -0.010646598413586617, -0.0008859069785103202, -0.04937507584691048, -0.021481771022081375, 0.023980382829904556, -0.011235893703997135, -0.0033177314326167107, -0.0033864825963974, -0.00694975396618247, 0.026353277266025543, 0.012634487822651863, 0.01689312607049942, -0.013522358611226082, 0.014528089202940464, 0.006584390997886658, -0.007385832257568836, -0.0023650377988815308, 0.04246067628264427, 0.003908990882337093, 0.0059990244917571545, -0.020303180441260338, 0.030674776062369347, -0.018747441470623016, 0.020523184910416603, 0.01604454219341278, 0.018888872116804123, -0.01956459879875183, -0.003567199921235442, -0.009860871359705925, 0.009703726507723331, 0.01016730535775423, -0.0640210211277008, 0.019156020134687424, -0.005480444524437189, 0.027971874922513962, -0.014520231634378433, -0.021733203902840614, 0.025834698230028152, -0.005606160964816809, 0.021638916805386543, -0.030910493806004524, -0.021827491000294685, -0.031680505722761154, 0.03513770550489426, -0.03234051540493965, 0.010772314853966236, 0.029276181012392044, -0.01903030462563038, 0.03576628491282463, -0.006360458675771952, 0.03328339010477066, -0.00570044806227088, -0.0013789505464956164, -0.012367340736091137, -0.051229387521743774, 0.006030453369021416, -0.0004984454717487097, -0.027594726532697678, 0.03334624692797661, -0.019706029444932938, 0.027814729139208794, 0.00125912728253752, 0.001187429646961391, -0.031507644802331924, -0.03172764927148819, 0.0013023421633988619, -0.03438340499997139, 0.04044921696186066, -0.00033688038820400834, -0.01629597507417202, -0.019863173365592957, 0.011173035949468613, 0.0008996571996249259, 0.01286234799772501, -0.01572239398956299, -0.0009885425679385662, 0.0145752327516675, 0.01835457794368267, -0.0026596852112561464, -0.02445181831717491, -0.038814906030893326, 0.019313165917992592, -0.0009556402801536024, 0.019706029444932938, -0.008281560614705086, 0.0004301854351069778, 0.04337212070822716, -0.008776568807661533, 0.022408928722143173, -0.0160681139677763, 0.05487516149878502, -0.007413332816213369, 0.013066637329757214, 0.0429006852209568, 0.0072561874985694885, -0.011000175960361958, 0.019596027210354805, -0.02856902778148651, 0.05302084609866142, -0.02426324412226677, 0.03144478797912598, 0.027500439435243607, -0.016830269247293472, -0.01583239622414112, -0.005091509781777859, 0.005586517974734306, -0.008532993495464325, 0.007185471709817648, -0.0031704078428447247, -0.026211846619844437, 0.022786078974604607, -0.018653154373168945, -0.0024121813476085663, 0.017553137615323067, -0.01564382202923298, -0.022848935797810555, -0.03513770550489426, 0.009122288785874844, 0.005295798648148775, 0.014708805829286575, -0.008847284130752087, 0.00973515585064888, -0.008375847712159157, 0.024546105414628983, 0.030737632885575294, -0.005830093286931515, -0.02204749546945095, -0.009766584262251854, -0.0023355730809271336, 0.0111887501552701, 0.02545754984021187, -0.04136066138744354, -0.023524660617113113, 0.029637616127729416, 0.00274415104649961, -0.014009509235620499, 0.003294159658253193, -0.002805044874548912, 0.011597327888011932, 0.012249480932950974, 0.032623376697301865, 0.018716013059020042, 0.029904762282967567, -0.015274529345333576, 0.0035455923061817884, 0.028349023312330246, 0.025787554681301117, -0.03164907544851303, 0.04082636535167694, 0.008415134623646736, 0.003582914359867573, -0.015690965577960014, 0.03428911790251732, -0.0032961240503937006, 0.019596027210354805, 0.029181893914937973, -0.007334759924560785, -0.041643522679805756, -0.024404674768447876, 0.002164677483960986, 0.02214178256690502, -0.015926683321595192, -0.002260928973555565, 0.036740586161613464, -0.020381754264235497, -0.028600456193089485, -0.0036339866928756237, 0.02778330072760582, -0.020947476848959923, 0.019517455250024796, 0.00037493903073482215, 0.020696043968200684, -0.004899006802588701, 0.007036183960735798, 0.01989460363984108, -0.029119037091732025, -0.0442207045853138, 0.01654740795493126, 0.00123850186355412, -0.03542056679725647, -0.01895173080265522, 0.02385466732084751, -0.02178034745156765, 0.013875936158001423, -0.0006948771770112216, 0.0164688341319561, 0.009365864098072052, -0.013522358611226082, 0.009554438292980194, 0.0012011799262836576, 0.00400720676407218, 0.026211846619844437, -0.005044366233050823, 0.012477342039346695, 0.011267323046922684, -0.019187448546290398, -0.0014909167075529695, 0.03230908885598183, -0.01877887174487114, -0.03501198813319206, -0.027767585590481758, 0.03463483974337578, -0.012163051404058933, 0.009915872476994991, 0.018464580178260803, 0.013380927965044975, 0.0387834757566452, 0.0043214973993599415, -0.016515977680683136, 0.010552311316132545, -0.018307434394955635, -0.005197582766413689, -0.012335911393165588, -0.0023493231274187565, 0.06207241863012314, 0.002363073406741023, 0.0037734531797468662, -0.019077448174357414, 0.01265020202845335, -0.04158066213130951, 0.01003373134881258, 0.014127368107438087, 0.01991031877696514, -0.002753972541540861, 0.019250307232141495, 0.01444951631128788, 0.015588819980621338, -0.036049146205186844, 0.03843775764107704, 0.016924556344747543, 0.009900158271193504, -0.004238996189087629, 0.03095763735473156, 0.00394434854388237, -0.0013897543540224433, 0.011157320812344551, -0.014221655204892159, 0.018747441470623016, -0.04054350405931473, -0.015180242247879505, 0.004073993768543005, 0.03287481144070625, 0.016940269619226456, 0.012854491360485554, 0.015070240944623947, -0.007841553539037704, 0.026227561756968498, -0.006965468171983957, -0.016138829290866852, 0.04176924005150795, -0.019423168152570724, -0.03141335770487785, -0.0003842695150524378, 0.015753822401165962, -0.009562295861542225, -0.022927509620785713, -0.016924556344747543, -0.023980382829904556, 0.007837625220417976, -0.010348021984100342, 0.002475039567798376, -0.04836934432387352, 0.02108890749514103, 0.039569202810525894, 0.014685234054923058, 0.005959738045930862, -0.0029130822513252497, -0.01681455411016941, -0.020303180441260338, 0.010238020680844784, -0.00960158184170723, 0.006050096824765205, 0.03141335770487785, -0.03419483080506325, 0.008477992378175259, 0.011204464361071587, 0.0056690191850066185, -0.044817857444286346, 0.02907189354300499, 0.039914924651384354, -0.040103498846292496, -0.058269500732421875, 0.03573485463857651, -0.004702575039118528, -0.006631534546613693, 0.00297004752792418, -0.016908841207623482, -0.02545754984021187, 0.0067572505213320255, -0.0006433138623833656, -0.01956459879875183, 0.004376498516649008, -0.02083747461438179, -0.007385832257568836, 0.027563298121094704, 0.007487976923584938, -0.01662597991526127, 0.003250944660976529, 0.028757601976394653, -0.005967595148831606, -0.0050757951103150845, -0.00803405698388815, 0.008619423024356365, -0.03045477159321308, 0.016170257702469826, 0.003221479943022132, -0.013019493781030178, -0.02968475967645645, -0.01708170212805271, 0.026133274659514427, -0.010473738424479961, 0.018056003376841545, -0.030156195163726807, 0.008470134809613228, -0.037777744233608246, 0.02127748169004917, -0.017458850517868996, -0.008202987723052502, -0.012752346694469452, -0.011526612564921379, 0.009538724087178707, -0.02256607450544834, 0.003103621071204543, -0.015062383376061916, 0.05188940092921257, 0.03144478797912598, 0.004423642065376043, -0.016484549269080162, 0.0047811479307711124, 0.03208908438682556, -0.032104797661304474, -0.004301854409277439, -0.0015459175920113921, 0.010992318391799927, -0.023728949949145317, -0.0035947002470493317, 0.003956134431064129, -0.027673298493027687, -0.009625153616070747, 0.011463754810392857, -0.005397943314164877, -0.015305958688259125, -0.02640042081475258, -0.037274882197380066, 0.003127192845568061, 0.012940920889377594, -0.01007301826030016, 0.004576858598738909, 0.023461803793907166, 0.012123765423893929, -0.03865775838494301, -0.01265020202845335, -0.019596027210354805, 0.0012876098044216633, -0.062386710196733475, -0.017867427319288254, 0.0030623702332377434, 0.005083652678877115, -0.004199709743261337, -0.0039757778868079185, -0.027469009160995483, 0.011950905434787273, 0.06037525087594986, -0.04299497231841087, -0.02366609126329422, 0.01637454703450203, 0.015423817560076714, 0.0008191202068701386, -0.014253084547817707, -0.03105192445218563, 0.0044118561781942844, -0.022660361602902412, -0.015612391754984856, -0.04359212517738342, -0.008941571228206158, -0.024656107649207115, 0.007189400494098663, -0.024404674768447876, -0.026038987562060356, 0.00869799591600895, 0.015023097395896912, -0.03620629385113716, 0.020806046202778816, 0.030391912907361984, 0.016783125698566437, 0.021466057747602463, 0.011424467898905277, 0.014685234054923058, 0.005452944431453943, -0.006309386342763901, 0.06358101218938828, -0.006619748659431934, 0.004950079135596752, -0.01252448558807373, -0.007334759924560785, -0.027296150103211403, -0.016751695424318314, 0.009562295861542225, -0.00030471468926407397, 0.010269450023770332, -0.011801617220044136, -0.015761680901050568, -0.005900808610022068, 0.01758456602692604, 0.003011298133060336, 0.028490453958511353, -0.0011294822907075286, 0.006619748659431934, 0.0002558522974140942, -0.014276656322181225, 0.016783125698566437, -0.009208718314766884, -0.009837299585342407, -0.022188926115632057, -0.008957285434007645, 0.005201511550694704, -0.007468333467841148, 0.010646598413586617, 0.02856902778148651, 0.005181868560612202, 0.019077448174357414, -0.006600105203688145, -0.01956459879875183, 0.01964317075908184, -0.017615996301174164, 0.02401181124150753, -0.025850413367152214, 0.02212606742978096, 0.023791808634996414, 0.00879228301346302, -0.005437229759991169, 0.018543154001235962, -0.012972350232303143, 0.011927333660423756, 0.025237545371055603, -0.007381903473287821, -0.005865450948476791, -0.01445737387984991, 0.00960158184170723, 0.015958111733198166, -0.010874459519982338, 0.023430373519659042, -0.010953032411634922, 0.012720917351543903, -0.023131797090172768, -0.013577359728515148, -0.02332037314772606, -0.017458850517868996, 0.003333446104079485, 0.010025874711573124, 0.0023277157451957464, -0.01662597991526127, -0.024294674396514893, -0.01003373134881258, -0.003692916128784418, 0.00525651266798377, 0.028741886839270592, -0.010434452444314957, 0.008973000571131706, -0.025677552446722984, -0.0010872494895011187, -0.007397618144750595, 3.925565033569001e-05, -0.01587168127298355, 0.00045596709242090583, 0.011856617406010628, 0.011023747734725475, -0.03218337148427963, -0.019093161448836327, 0.00017322821076959372, 0.01106303371489048, 0.006313315127044916, -0.016405975446105003, -0.017097415402531624, -0.009177288971841335, -0.02493896894156933, -0.001661812188103795, 0.007523334585130215, -0.028443310409784317, 0.07190971821546555, -0.018936017528176308, 0.030941922217607498, 0.0012286803685128689, 0.009200860746204853, 0.033817682415246964, 0.010528739541769028, -0.002127355430275202, 0.012713059782981873, 0.021544629707932472, -0.01689312607049942, 0.0072326152585446835, 0.0193917378783226, -0.02640042081475258, -0.025504693388938904, -0.01612311415374279, 0.04349783807992935, -0.00276575842872262, -0.012005905620753765, -0.02926046773791313, -0.0036575584672391415, -0.012021620757877827, 0.008006555959582329, 0.008061557076871395, 0.010615169070661068, 0.020020319148898125, -0.011455897241830826, -0.03278052434325218, -0.0022923580836504698, 0.02374466508626938, -0.010662313550710678, 0.0009885425679385662, -0.023006081581115723, 0.0027480795979499817, -0.05210940167307854, -0.019658885896205902, -0.014221655204892159, 0.04242924973368645, -0.0039895279332995415, -0.022487502545118332, 0.011463754810392857, 0.021418914198875427, 0.00750761991366744, 0.027469009160995483, -0.006694392766803503, 0.006297600455582142, 0.021403199061751366, 0.02383895218372345, -0.01604454219341278, -0.0034729125909507275, 0.011165178380906582, -0.017003128305077553, 0.01775742694735527, -0.019360309466719627, -0.01800885982811451, -0.006431173998862505, 0.02657328173518181, -0.007122613489627838, -0.0205860435962677, 0.03491770103573799, 0.01793028600513935, 0.00632117222994566, -0.037526313215494156, -0.012500913813710213, 0.028349023312330246, -0.0018120824825018644, -0.00615224102512002, 0.009633011184632778, -0.008910141885280609, -0.006234742235392332, -0.002826652256771922, 0.0008476028451696038, 0.008556565269827843, -0.010214448906481266, 0.01107089128345251, 0.01003373134881258, -0.03300052508711815, -0.009240147657692432, 0.019957462325692177, -0.02855331264436245, 0.006871181074529886, -0.026023272424936295, -0.0015243100933730602, 0.002571291057392955, -0.0016244902508333325, 0.02057032845914364, 0.023037509992718697, -0.02195320837199688, 0.023556090891361237, 0.014960238710045815, 0.018228862434625626, 0.0003901624877471477, 0.010025874711573124, -0.006160098128020763, 0.05745234712958336, 0.023728949949145317, 0.004013099707663059, -0.0008549690246582031, -0.03567199781537056, -0.0020625328179448843, 0.0008451474132016301, 0.021906064823269844, 0.03078477643430233, 0.0009482740424573421, -0.010057303123176098, -0.027469009160995483, 0.02899331972002983, 0.030156195163726807, 0.012705203145742416, -0.005672947503626347, 0.011228036135435104, 0.01818171888589859, 0.009703726507723331, -0.011793759651482105, -0.0018631546990945935, 0.007248329930007458, 0.012115907855331898, -0.002808973425999284, -0.01604454219341278, -0.019266022369265556, -0.003486662870272994, -0.026101844385266304, -0.02137177065014839, 0.013302355073392391, 0.01920316368341446, 0.025001827627420425, 0.02339894510805607, 0.020130321383476257, 0.00017040451348293573, 0.02368180640041828, -0.025536121800541878, -0.0017698496812954545, 0.0004611234471667558, -0.014410230331122875, -0.00782191101461649, -0.02245607227087021, 0.013593073934316635, 0.011243751272559166, 0.008132272399961948, -0.005083652678877115, 0.004761504475027323, 0.024498961865901947, -0.013388785533607006, -0.01827600598335266, -0.01364021748304367, 0.007244401145726442, -0.01981602981686592, 0.0002764776290860027, -0.00559437507763505, 0.004820433910936117, -0.008344419300556183, 0.0021548557560890913, -0.0040818508714437485, -0.024923255667090416, 0.002995583461597562, 0.01862172596156597, 0.004439356736838818, -0.00879228301346302, -0.003997385036200285, 0.007354402914643288, -0.009743012487888336, 0.013514501042664051, -0.0022275354713201523, 0.005280084442347288, -0.004895078018307686, -0.013365213759243488, 0.0005838932702317834, 0.016327403485774994, 0.0007896554889157414, 0.0021902136504650116, 0.02770472876727581, -0.018653154373168945, 0.02187463454902172, -0.04503786191344261, 0.00369684468023479, -0.005590446293354034, 0.026180418208241463, -0.00336487521417439, 0.00042993988608941436, -0.01252448558807373, 0.0005735805607400835, -0.0028364737518131733, 0.017773140221834183, 9.041996963787824e-05, -0.006446888670325279, 0.01937602274119854, 0.022078923881053925, -0.005040437448769808, -0.01620168797671795, 0.028239022940397263, -0.013019493781030178, -0.004494357388466597, -0.006894752848893404, -0.007421189919114113, 0.004671146161854267, -0.002186284866183996, 0.012218052521348, -0.006635462865233421, 0.012634487822651863, 0.00598330982029438, -0.023964667692780495, -0.01716027408838272, -0.03831204026937485, -0.014143083244562149, -0.005543302744626999, 0.005005079787224531, -0.005162225104868412, -0.0037832746747881174, -0.01844886504113674, -0.01231233961880207, -0.014842379838228226, -0.021560344845056534, 0.01184090320020914, 0.01290163490921259, -0.022581789642572403, -0.002031103940680623, 0.0005932237836532295, -0.0016244902508333325, 0.0005740716587752104, 0.021906064823269844, 0.013946651481091976, -0.001580293057486415, -0.03934919834136963, -0.007586192339658737, 0.043623555451631546, -0.004046493209898472, -0.03113049641251564, 0.008187273517251015, 0.013648075051605701, -0.010599454864859581, 0.03268623724579811, 0.016311688348650932, -0.009766584262251854, -0.01277591846883297, 0.0030623702332377434, 0.007189400494098663, 0.012980206869542599, 0.009004429914057255, -0.018291721120476723, 0.0030820134561508894, -0.025614693760871887, 0.022660361602902412, 0.021560344845056534, -0.010992318391799927, 0.0036379152443259954, -0.013954508118331432, -0.012956635095179081, -0.01860601082444191, 0.0010302843293175101, -0.024986112490296364, -0.003445412265136838, -0.033817682415246964, 0.005602232180535793, -0.017600281164050102, 0.007637264672666788, -0.013632360845804214, 0.00041643521399237216, -0.007452618796378374, 0.007189400494098663, -0.004855792038142681, -0.016610264778137207, -0.08259560167789459, -0.018040288239717484, 0.007051898166537285, -0.0023237871937453747, 0.022848935797810555, 0.00247700372710824, 0.018543154001235962, 0.003889347892254591, 0.002683257218450308, 0.027751872316002846, -0.002091997768729925, 0.013506644405424595, 0.014818808063864708, -0.023430373519659042, -0.01903030462563038, -0.01196661964058876, 0.01895173080265522, 0.032969098538160324, 0.0073661888018250465, -0.0033059455454349518, -0.022738933563232422, -0.009523008950054646, 0.04176924005150795, -0.011424467898905277, -0.011165178380906582, -0.02959047257900238, 0.0038736332207918167, 0.02322608418762684, -0.010324450209736824, 0.00316058611497283, -0.005307584535330534, -0.0020212822128087282, -0.005378300324082375, -0.01488166581839323, 0.02734329365193844, 0.03925491124391556, -0.009743012487888336, 0.02745329588651657, -0.017521709203720093, -0.007688337005674839, 0.011848760768771172, -0.02486039698123932, 0.0031429072842001915, 0.021403199061751366, -0.020208893343806267, -0.022346071898937225, -0.007047969847917557, 0.01107089128345251, -0.01234376896172762, 0.005649375729262829, -0.02574041113257408, 0.00034498318564146757, 0.014803093858063221, -0.02751615270972252, -0.013483072631061077, -0.029197609052062035, 0.0011697508161887527, -0.02016174979507923, 0.015243100933730602, 0.017223132774233818, -0.004989365581423044, 0.02805044874548912, 8.440425153821707e-05, 0.017773140221834183, 0.020460326224565506, 0.01862172596156597, 0.004576858598738909, 0.012131622061133385, -0.006352601572871208, -0.003641843795776367, -0.026698997244238853, 0.002341466024518013, -0.008430848829448223, 0.006721892859786749, 0.009106573648750782, -0.022361785173416138, 0.012406626716256142, -0.01501523982733488, -0.0002961207937914878, 0.0010607312433421612, 0.007083327509462833, 0.006219028029590845, -0.005126867443323135, -0.003394339932128787, 0.003221479943022132, -0.01329449750483036, -0.010646598413586617, -0.01208447851240635, 0.01843315176665783, -0.017128845676779747, 0.02657328173518181, -0.01231233961880207, -0.02057032845914364, -0.004722218029201031, -0.012469484470784664, 0.033754825592041016, -0.0018641368951648474, -0.03163336217403412, 0.02608613111078739, 0.014653805643320084, 0.006160098128020763, -0.0008240310125984251, -0.013750219717621803, -0.04664074629545212, 0.014056652784347534, 0.006576533429324627, -0.0016588657163083553, 0.0001987643336178735, -0.004800790920853615, -0.010025874711573124, 0.0009232290321961045, 0.011550184339284897, 0.0006393851945176721, 0.032120514661073685, 0.04374926909804344, -0.0010970711009576917, -0.0020625328179448843, 0.020711759105324745, 0.012815204448997974, 0.006301529239863157, 0.028066162019968033, 0.033314816653728485, 0.009436579421162605, 0.01868458464741707, -0.014944524504244328, 0.0024318245705217123, -0.023446088656783104, 0.021230338141322136, 0.0038952408358454704, -0.018668869510293007, 0.038123466074466705, -0.001000328455120325, -0.034006256610155106, 0.015824537724256516, -0.015533819794654846, -0.0006934039411135018, 0.008179415948688984, -0.008847284130752087, -0.008862998336553574, 0.017521709203720093, -0.018653154373168945, -0.005889022722840309, -0.009381578303873539, 0.02099462039768696, -0.006537247449159622, -0.018307434394955635, -0.012956635095179081, -0.004773290362209082, -0.00043092205305583775, -0.011652329005300999, 0.014378800988197327, 0.004407927393913269, 0.009648725390434265, 0.002732365159317851, 0.028254736214876175, -0.029983336105942726, -0.03095763735473156, -0.02383895218372345, 0.009444436058402061, 0.005350799765437841, -0.0020664616022258997, -0.012689488008618355, -0.006651177536696196, 0.029983336105942726, -0.007106899283826351, 0.0164688341319561, -0.002983797574415803, 0.0029464755207300186, 0.001744313514791429, -0.004207567311823368, 0.01827600598335266, -0.023446088656783104, 0.008517279289662838, -0.023870380595326424, -0.013970223255455494, 0.0015557390870526433, 0.020727474242448807, 0.013451643288135529, 0.024828968569636345, 0.02214178256690502, 0.003842204110696912, -0.020271752029657364, -0.02966904453933239, -0.019171735271811485, -0.011927333660423756, -0.018228862434625626, -0.027154719457030296, -0.019108876585960388, 0.006549033336341381, 0.0037636314518749714, 0.006894752848893404, -0.0037223808467388153, -0.002734329318627715, -0.024797538295388222, 0.014755950309336185, 0.015667393803596497, 0.0012689487775787711, 0.004820433910936117, 0.00761369289830327, 0.0029464755207300186, -0.009656582958996296, -0.002795223146677017, 0.015431675128638744, -0.001279752585105598, 0.022943222895264626, -0.00014376344915945083, -0.021764632314443588, 0.032466232776641846, 0.002797187538817525, -0.009279433637857437, -0.015455246903002262, -0.006827966310083866, 0.003209694055840373, -0.023776093497872353, -0.026620425283908844, 0.010348021984100342, -0.01231233961880207, 0.014755950309336185, -0.0023355730809271336, 0.023618947714567184, -0.005881165154278278, -0.004647574387490749, 0.0019741386640816927, 0.004537572618573904, -0.022660361602902412, -0.0013465393567457795, -0.01037159375846386, 0.011110177263617516, 0.00486757792532444, -0.008965143002569675, 0.018496010452508926, -0.012367340736091137, 0.0423663891851902, 0.02152891457080841, -0.006289743352681398, 0.00214503426104784, 0.009303005412220955, -0.013852364383637905, 0.0160681139677763, 0.018228862434625626, -0.011031604371964931, -0.006714035756886005, 0.015219529159367085, -0.0018356542568653822, -0.03216765820980072, -0.017867427319288254, -0.002773615764454007, 0.010135876014828682, -0.03736916929483414, 0.011008032597601414, 0.002382716629654169, 0.008784426376223564, -0.014268799684941769, 0.025850413367152214, -8.753487782087177e-05, 0.014418086968362331, 0.0013642181875184178, 0.007629407569766045, -0.003973813261836767, 0.005331156775355339, -0.0005190707743167877, -0.006175812799483538, 0.01783599890768528, 0.01140089612454176, 0.02022460848093033, -0.00790834054350853, -0.0017089558532461524, 0.02127748169004917, -0.01929745078086853, -0.006242599803954363, -0.023194655776023865, 0.018841728568077087, 0.01637454703450203, -0.000360943260602653, -0.014465230517089367, -0.022660361602902412, -0.0061993845738470554, -0.0021312839817255735, -0.023870380595326424, 0.00023706851061433554, 0.01037159375846386, 0.009617296047508717, -0.012013763189315796, -0.0041604237630963326, -0.016751695424318314, 0.019187448546290398, -0.0035750570241361856, -0.01208447851240635, 0.010945174843072891, 0.0022923580836504698, 0.012705203145742416, -0.0073661888018250465, -0.012076620943844318, 0.0004098056524526328, -0.005009008571505547, -0.0012257338967174292, -0.00848584994673729, 0.005232940893620253, 0.02751615270972252, 0.007319045253098011, -0.001165822148323059, -0.00660403398796916, -0.02322608418762684, -0.008847284130752087, 0.012752346694469452, 0.00014707824448123574, 0.029464755207300186, 0.018401721492409706, 0.0036280937492847443, -0.006081525702029467, -0.012846633791923523, -0.013852364383637905, -0.011149464175105095, 0.004258639644831419, 0.001558685558848083, 0.008281560614705086, -0.015580963343381882, -0.0018189576221629977, 0.05867807939648628, 0.022597502917051315, 0.01810314692556858, 0.017883142456412315, 0.004270425532013178, -0.020256036892533302, -0.012477342039346695, 0.014174511656165123, 0.028317594900727272, -0.006761179305613041, 0.0038657761178910732, -0.01367164682596922, -0.009012286551296711, 0.001289574196562171, -0.020098892971873283, 0.00822655949741602, 0.0019014589488506317, -0.005335085093975067, 0.002942546969279647, 0.018323149532079697, 0.016036683693528175, -0.005845807492733002, -0.0044000702910125256, -0.0080026276409626, -0.0038952408358454704, 0.015172384679317474, 0.020444612950086594, -0.0006629570270888507, 0.013475215062499046, 0.009798013605177402, 0.0018965480849146843, -0.01050516776740551, 0.008352275937795639, -0.02291179448366165, 0.0013652003835886717, 0.014370943419635296, -0.0005637590074911714, 0.01230448205024004, -0.011008032597601414, 0.01119660772383213, -0.012045192532241344, 0.014716663397848606, 0.0061993845738470554, 0.006057953927665949, -0.000960551027674228, -0.016908841207623482, 0.02640042081475258, -0.0034296975936740637, -0.0006899663712829351, -0.0091301454231143, -0.015934539958834648, -0.024828968569636345, -0.0008844337426126003, 0.002333608688786626, 0.020790331065654755, -0.005680805072188377, -0.021466057747602463, 0.00823441706597805, -0.0018552974797785282, 0.008477992378175259, -0.038280609995126724, -0.005716162733733654, -0.007621550466865301, -0.040857795625925064, -0.0011933225905522704, -0.016861697658896446, 0.008336561731994152, -0.006203313358128071, -0.0013180567184463143, -0.01084303017705679, -0.014653805643320084, 0.011416611261665821, 0.0029995122458785772, -0.017223132774233818, 0.013828792609274387, 0.034697696566581726, -0.005170082673430443, -0.001277788309380412, 0.012940920889377594, 0.021670345216989517, 0.003459162311628461, 0.011322323232889175, -0.013930936343967915, -0.01654740795493126, -0.002268786309286952, -0.0042272103019058704, -0.008438706398010254, -0.01947031170129776, 0.02418467216193676, -0.0031841578893363476, 0.004022921435534954, 0.004718289710581303, -0.0066629634238779545, -0.00604616804048419, 0.007743338122963905, 0.006164026912301779, 0.016940269619226456, 0.010654455982148647, -0.0006482246099039912, -0.010764457285404205, -0.0035848787520080805, 0.026353277266025543, -0.007228686939924955, 0.009585867635905743, -0.011306609027087688, 0.0029680831357836723, 0.025441834703087807, -0.02393323928117752, -0.006714035756886005, 0.010740885511040688, -0.012021620757877827, -0.004631859716027975, 0.006714035756886005, 0.017380276694893837, -0.01827600598335266, 0.0019564598333090544, 0.0024121813476085663, 0.004918649792671204, -0.02168606035411358, -0.0009846139000728726, -0.010096590034663677, -0.002785401651635766, -0.024986112490296364, 0.010238020680844784, -0.005236869212239981, 0.010465881787240505, -0.03133478760719299, -0.009562295861542225, -0.01895173080265522, -0.012445912696421146, 0.01577739417552948, 0.01816600374877453, 0.018417436629533768, -0.00972729828208685, -0.0035377349704504013, -0.0005298745236359537, 0.0018248505657538772, -0.0067572505213320255, 0.024577535688877106, 0.0033354104962199926, 0.021591773256659508, 0.006344744004309177, 0.005284012760967016, 0.01188019011169672, 0.014504517428576946, 0.015305958688259125, -0.006234742235392332, -0.029119037091732025, 0.008878713473677635, 0.004364712629467249, 0.026526138186454773, -0.03850061446428299, 0.013577359728515148, 0.0003231301670894027, -0.008525135926902294, -0.0035239849239587784, -0.015235243365168571, 0.0034493408165872097, -0.012021620757877827, -0.006922253407537937, 0.006969396956264973, -0.0075469063594937325, -0.005130796227604151, 0.0035436279140412807, -0.010269450023770332, 0.024310387670993805, 0.0042272103019058704, 0.020051749423146248, 0.01184090320020914, -0.0027087931521236897, 0.004612216260284185, -0.005162225104868412, 0.014606662094593048, -0.007122613489627838, 0.012823062017560005, -0.005122939124703407, 0.004761504475027323, 0.0019073518924415112, -0.009271577000617981, 0.01929745078086853, -0.01273663155734539, 0.012265196070075035, 0.02383895218372345, -0.0021705704275518656, 0.01028516422957182, -0.0013131459709256887, 0.013985937461256981, 0.002724507823586464, -0.012328053824603558, -0.0033196958247572184, -0.004364712629467249, 0.02460896410048008, 0.012398769147694111, -0.02597612887620926, 0.005032580345869064, -0.012398769147694111, -0.00802227109670639, 0.026526138186454773, 0.010748743079602718, 0.004427570849657059, 0.0006104115163907409, -0.0038716690614819527, 0.012398769147694111, 0.016955984756350517, -0.004694717936217785, -0.009530866518616676, 0.019690314307808876, -0.008556565269827843, -0.014143083244562149, -0.013011636212468147, -0.04459785670042038, -0.024137528613209724, 0.00879228301346302, -0.003309874329715967, -0.010528739541769028, 0.013844506815075874, 0.011251607909798622, 0.0036830944009125233, 0.0024278960190713406, 0.007759052328765392, 0.00274415104649961, 0.030203338712453842, 0.009798013605177402, 0.022518930956721306, -0.0008701924816705287, 0.0020468183793127537, 0.0010705528547987342, 0.02992047742009163, 0.018401721492409706, 0.015926683321595192, -0.0044118561781942844, -0.0014889523154124618, -0.010905888862907887, -0.00418399553745985, -0.00905157346278429, 0.01844886504113674, 0.015525962226092815, -0.0019201199756935239, 0.03573485463857651, -0.011597327888011932, -0.01277591846883297, 0.002911117859184742, -0.0024121813476085663, 0.0047850762493908405, -0.008352275937795639, -0.013011636212468147, -0.01793028600513935, -0.0013543965760618448, 0.010418737307190895, -2.994048918480985e-05, -0.009798013605177402, 0.01050516776740551, -0.017946001142263412, 0.020774617791175842, 0.025426119565963745, 0.016783125698566437, -0.023524660617113113, -0.004125065635889769, 0.02657328173518181, -0.00973515585064888, 0.012956635095179081, -0.0060265245847404, -0.030423343181610107, -0.011895904317498207, 0.008965143002569675, 0.02470325119793415, -0.013066637329757214, 0.0160681139677763, 0.008957285434007645, -0.0013013600837439299, -0.01183304563164711, -0.0014820771757513285, -0.008784426376223564, 0.02651042304933071, 0.0045061432756483555, 0.007051898166537285, 0.005747591610997915, -0.01075660064816475, -0.007766909897327423, 0.014088082127273083, -0.012925206683576107, -0.0022353928070515394, 0.010214448906481266, -0.02435753121972084, -0.01093731727451086, -0.01708170212805271, 0.003967920318245888, 0.03191622346639633, -0.005315442103892565, 0.04076350852847099, -0.0010676063830032945, -0.023084653541445732, 0.004891149699687958, 0.018810300156474113, 0.012948778457939625, -0.0037754173390567303, -0.0006791626219637692, -0.009931586682796478, 0.029197609052062035, 0.01488166581839323, -0.004034707322716713, -0.004576858598738909, -0.015981683507561684, 0.00014388622366823256, 0.01664169505238533, 0.007967269979417324, 0.0154395317658782, 0.014889523386955261, 0.014606662094593048, 0.027076147496700287, 0.01572239398956299, -0.003889347892254591, 0.0018955660052597523, -0.004242924973368645, -0.0056297327391803265, 0.014347371645271778, -0.012665916234254837, 0.007652979344129562, -0.0050797238945961, 0.009365864098072052, -0.0064233168959617615, 0.008124415762722492, 0.009774441830813885, 0.002494682790711522, 0.004093636758625507, 0.0062386710196733475, 0.009868728928267956, 0.0051150815561413765, 0.0011314466828480363, -0.02049175649881363, 0.016924556344747543, -0.000283598288660869, -0.0006167955580167472, -0.008250131271779537, 0.006097240373492241, 6.801448034821078e-05, -0.008776568807661533, 0.02820759266614914, -0.007307259365916252, 0.007326902821660042, -0.019344594329595566, -0.008422991260886192, 0.0006737607764080167, -0.011699472554028034, -0.006674749311059713, 0.006069739814847708, 0.013483072631061077, -0.00972729828208685, 0.00375380995683372, 0.0027225434314459562, -9.26912107388489e-05, 0.013514501042664051, 0.009122288785874844, 0.004796862136572599, 0.013718790374696255, -0.0032588019967079163, -0.011503040790557861, 0.008477992378175259, -0.007849411107599735, -0.016107400879263878, -0.02297465316951275, 0.0033118384890258312, -0.010214448906481266, -0.021041763946413994, 0.013325926847755909, 0.02649470791220665, -0.001796367927454412, -0.0025025398936122656, -0.014928809367120266, 0.01380522083491087, -0.009059430100023746, -0.019674599170684814, -0.019831744953989983, -0.002838438143953681, -0.00935014896094799, 0.01513309869915247, 0.01791457086801529, 0.0025241475086659193, -0.02135605551302433, 0.004231139086186886, 0.028349023312330246, 0.007590121123939753, -0.01128303725272417, -0.0019770851358771324, 0.023556090891361237, 0.00925586186349392, 0.008462278172373772, 0.033220529556274414, -0.0074172611348330975, 0.003641843795776367, -0.019926032051444054, 0.009185146540403366, 0.0167359821498394, 0.006706178653985262, 0.0010509096318855882, 0.011950905434787273, -0.022251782938838005, 0.008116558194160461, 0.02016174979507923, -0.01775742694735527, -0.013907364569604397, 0.004435427952557802, 0.004093636758625507, -0.0030191552359610796, -0.013129495084285736, -0.028286166489124298, 0.022408928722143173, -0.00546865863725543, 0.02932332456111908, -0.013600931502878666, -0.0033727323170751333, -0.008155844174325466, -0.02641613595187664, -0.025598980486392975, 0.007319045253098011, 0.001062695519067347, -0.0019456560257822275, 0.0037400596775114536, 0.0003002949815709144, -0.0005485355504788458, 0.0043214973993599415, -0.0037950605619698763, 0.0080026276409626, -0.0059990244917571545, 0.00926371943205595, -0.014433802105486393, 0.02068033069372177, -0.0006305457791313529, 0.000392126792576164, 0.0027814728673547506, 0.005841879174113274, 0.00778262410312891, 0.013349498622119427, 0.02684042789041996, -0.0028934390284121037, -0.002620398998260498, 0.004851863253861666, -0.0061836703680455685, 0.013160924427211285, 0.007621550466865301, -0.008855141699314117, -0.009994445368647575, 7.077679765643552e-05, -0.005527588073164225, 0.026368992403149605, 0.007240472827106714, -0.002608613111078739, 0.02168606035411358, -0.017961714416742325, 0.0007891643908806145, -0.02093176357448101, 0.014095939695835114, -0.01051302533596754, 0.003425769042223692, -0.02306894026696682, -0.009970873594284058, 1.4057143744139466e-05, -0.016688838601112366, 0.022094639018177986, -0.029779046773910522, -0.00814012996852398, -0.007047969847917557, -0.006458674557507038, -0.005032580345869064, 0.0001836636511143297, -0.001062695519067347, -0.003673272905871272, -0.0002585532492958009, -0.006387959234416485, 0.023477517068386078, -0.0044157849624753, 0.0018169933464378119, 0.007814053446054459, -0.012241624295711517, -0.007008683402091265, 0.019328879192471504, -0.0021077122073620558, 0.01604454219341278, 0.00960943941026926, -0.016405975446105003, 0.015038811601698399, 0.012123765423893929, 0.001495827455073595, 0.01051302533596754, 0.031853366643190384, 0.0014427908463403583, -0.012728774920105934, 0.03985206410288811, 0.007130471058189869, -0.0027912945952266455, 0.0075508346781134605, 0.008878713473677635, 0.019344594329595566, -0.011542326770722866, -0.008611566387116909, 0.011825188994407654, 0.015541676431894302, 0.03454055264592171, 0.00030913439695723355, -0.0017924393760040402, 0.00791619811207056, 0.007629407569766045, -0.01920316368341446, -0.007986913435161114, 0.020256036892533302, 0.0059086657129228115, -0.020271752029657364, -0.009499437175691128, 0.03457197919487953, 0.004706503823399544, 0.005056152120232582, -0.014410230331122875, -0.012571629136800766, 0.0025221831165254116, -0.000630054681096226, 0.0035868429113179445, 0.021151766180992126, 0.018291721120476723, 0.009530866518616676, 0.004800790920853615, -0.004462928511202335, -0.011110177263617516, -0.002532004611566663, -0.001352432300336659, -0.003329517552629113, 0.0006339833489619195, 0.021811777725815773, -0.002816830761730671, -0.01989460363984108, -0.011000175960361958, -0.0034434478729963303, 0.0076019070111215115, 0.00858013704419136, 0.0031193355098366737, 0.0077197658829391, 0.00030397807131521404, 0.014928809367120266, -0.015400245785713196, 0.01105517614632845, -0.00935014896094799, 0.0013278783299028873, -0.0016382404137402773, 0.0069261821918189526, 0.003651665523648262, 0.00778262410312891, -0.015769537538290024, 0.012618772685527802, 0.016484549269080162, -0.004844005685299635, 0.0005195618723519146, -0.028757601976394653, -0.009035858325660229, 0.02460896410048008, -0.00035234936513006687, 0.016405975446105003, -0.017961714416742325, -0.005225083325058222, 0.0010656419908627868, 0.009012286551296711, 0.018904587253928185, -0.0007110827718861401, -0.013160924427211285, -0.017867427319288254, 0.0012669845018535852, -0.007000825833529234, 0.005374371539801359, -0.003510234644636512, 0.007762981113046408, 0.00858013704419136, 0.025441834703087807, 0.006682606879621744, 0.005126867443323135, -0.02281750738620758, 0.004557215608656406, 0.018401721492409706, -0.002394502516835928, -0.04007206857204437, -0.0039050623308867216, 0.011259465478360653, -0.02743758074939251, 0.0003415456449147314, -0.018920302391052246, -0.020098892971873283, -0.010905888862907887, 0.00792798399925232, 0.011943047866225243, 0.0027873660437762737, 0.01131446659564972, 0.03560914099216461, -0.02332037314772606, 0.013718790374696255, 0.005158296786248684, 0.006415459793061018, -0.02281750738620758, 0.027751872316002846, 0.009208718314766884, 0.0007596996147185564, -0.002555576618760824, -0.011675900779664516, -0.018558867275714874, -0.008870855905115604, -0.002072354545816779, 0.011243751272559166, 0.01342807151377201, 0.006305458024144173, -0.004470785614103079, -0.008807998150587082, -0.013875936158001423, -0.010748743079602718, 0.0017619924619793892, 0.016343118622899055, -0.0014408265706151724, 0.022314641624689102, -0.023304658010601997, 0.009743012487888336, -0.009216575883328915, 0.003910955507308245, 0.006619748659431934, -0.0096958689391613, 0.02674614079296589, -0.01106303371489048, 0.0012414483353495598, 0.003639879636466503, 0.011180892586708069, -0.011110177263617516, 0.0020802118815481663, 0.0042664967477321625, 0.005798663944005966, 0.012320196256041527, -0.008910141885280609, 0.003148800227791071, -0.002146998653188348, -0.0016569014405831695, -0.024986112490296364, 0.006576533429324627, -0.002076283097267151, -0.012948778457939625, -0.016688838601112366, -0.013648075051605701, 0.011911618523299694, 0.021041763946413994, -0.00982158537954092, -0.009766584262251854, 0.03916062414646149, -0.009546580724418163, -0.01589525304734707, -0.016484549269080162, -0.007971198298037052, 0.0072326152585446835, -4.400530542625347e-06, -0.02693471498787403, -0.0003825507592409849, -0.0060265245847404, 0.019250307232141495, -0.004572930280119181, -0.0025752196088433266, 0.007951555773615837, -0.028537599369883537, 0.035640567541122437, -0.0024809325113892555, 0.001496809651143849, -0.022597502917051315, 0.008941571228206158, 0.014543803408741951, -0.01376593392342329, -0.003946313168853521, 0.020177464932203293, 0.020428897812962532, -0.004588644485920668, -0.016940269619226456, 0.014465230517089367, -0.005342942662537098, -0.02916618064045906, 0.01153447013348341, -1.947436248883605e-05, 0.0091301454231143, 0.004005242604762316, -0.0008338526240549982, 0.004871506243944168, -0.016594551503658295, -0.012493056245148182, -0.0038480970542877913, -0.006655106320977211, -0.011267323046922684, -1.7126389138866216e-05, 0.005122939124703407, 0.00799477007240057, 0.018888872116804123, 0.0023375372402369976, -0.007625478785485029, 0.013907364569604397, -0.016343118622899055, -0.03664629906415939, -0.008839426562190056, -0.0125166280195117, -0.008587994612753391, -0.018338864669203758, -0.007825839333236217, -0.01962745562195778, -0.012626630254089832, -0.024671822786331177, 0.00013283693988341838, -0.0173331331461668, -0.0015734180342406034, -0.014512374997138977, -0.0223775003105402, -0.0013043065555393696, 0.014638090506196022, 0.013451643288135529, -0.00546865863725543, 0.008312989957630634, -0.010960889048874378, 0.019878888502717018, 0.028600456193089485, 0.000691439607180655, -0.017207417637109756, -0.0014869880396872759, -0.009444436058402061, 0.0017040451057255268, -0.014551660977303982, 0.013852364383637905, 0.006419388111680746, -0.0019132448360323906, 0.027830444276332855, -0.00790834054350853, -0.011856617406010628, -0.0027637940365821123, 0.019108876585960388, -0.01401736680418253, 0.015329530462622643, -0.004997222684323788, -0.024766109883785248, 0.0026989716570824385, 0.011157320812344551, -9.201598004437983e-05, 0.0021843204740434885, -0.0014388622948899865, 0.004902935586869717, 0.0022314642556011677, 0.006851538084447384, -0.020633187144994736, -0.029653331264853477, -0.004478642717003822, 0.004073993768543005, 0.008556565269827843, 0.0012414483353495598, -0.025080399587750435, 0.025661839172244072, -0.006537247449159622, 0.019438881427049637, -0.004620073828846216, 0.010473738424479961, 0.025253260508179665, 0.009161574766039848, 0.009538724087178707, -0.00823441706597805, -0.007008683402091265, -0.020900333300232887, -0.004675074480473995, 0.010882316157221794, 0.023178940638899803, 0.022943222895264626, -0.01868458464741707, 0.003292195498943329, -0.0033059455454349518, -0.0016244902508333325, 0.016924556344747543, -0.0038755976129323244, -0.005653304513543844, 0.007574406452476978, -0.00904371589422226, 0.0026871857699006796, -0.03843775764107704, -0.03501198813319206, 0.001785564236342907, -0.012846633791923523, 0.010041588917374611, 0.01973745785653591, 0.006564747542142868, 0.016327403485774994, -0.016531692817807198, -0.005122939124703407, -0.02376038022339344, -0.004022921435534954, -0.03542056679725647, -0.012037334963679314, 0.03542056679725647, 0.0074565475806593895, 0.002920939587056637, -0.0005838932702317834, 0.01007301826030016, 0.0064783175475895405, -0.019926032051444054, 0.008768711239099503, 0.022660361602902412, -0.007354402914643288, 0.016704551875591278, -0.021670345216989517, -0.01639026217162609, -0.0031114781741052866, 0.003290231106802821, 0.01689312607049942, -0.004136851988732815, -0.0077197658829391, -0.01535310223698616, 0.0046907891519367695, -0.018841728568077087, 0.005315442103892565, -0.0033688037656247616, -0.001156000653281808, 0.007130471058189869, 0.007841553539037704, -0.007794409990310669, 0.01063088420778513, 0.012265196070075035, -0.018244577571749687, 0.007947626523673534, -0.01885744370520115, 0.010245878249406815, 0.004706503823399544, 0.0046515027061104774, -0.004977579694241285, 0.008949428796768188, -0.01827600598335266, -0.0194545965641737, 0.00020870869047939777, 0.0027500439900904894, -0.01928173564374447, 0.00660403398796916, -0.0024828966706991196, 0.023697521537542343, 0.012351625598967075, -0.0011226071510463953, 0.015298101119697094, 0.01587168127298355, -0.015848109498620033, 0.008344419300556183, 0.014834522269666195, 0.001156000653281808, -0.009719440713524818, 0.0011235893471166492, -0.007998699322342873, -0.000815682637039572, -0.008297275751829147, 0.000608447240665555, -0.006643320433795452, -6.543631025124341e-05, -0.01862172596156597, -0.011510898359119892, -0.018386008217930794, 0.005291870329529047, -0.00803405698388815, 0.01243805605918169, 0.011306609027087688, -0.003716487903147936, 0.01380522083491087, 0.0006050096708349884, -0.0005657233414240181, 0.018291721120476723, -0.005680805072188377, 0.007817981764674187, 0.00501686567440629, -0.0060540251433849335, -0.01637454703450203, 0.011848760768771172, -0.0002948931069113314, -0.010410880669951439, -0.013773791491985321, 0.00926371943205595, -0.023870380595326424, -0.007939769886434078, -0.0014388622948899865, 0.02539469115436077, 0.008642994798719883, 0.0029327254742383957, 0.004093636758625507, 0.006682606879621744, 0.0025300404522567987, -0.011542326770722866, -0.018998874351382256, -0.004887220915406942, 0.007067612838000059, -0.01355378795415163, 0.03560914099216461, -0.017128845676779747, 0.008980857208371162, 0.038720618933439255, 0.004981508012861013, -0.0039757778868079185, 0.005641518626362085, 0.013561645522713661, -0.013435929082334042, 0.002186284866183996, 0.011000175960361958, 0.00981372781097889, -0.002386645181104541, 0.040606360882520676, 0.014755950309336185, -0.011039461940526962, 0.016170257702469826, -0.0027500439900904894, -0.0019731565844267607, 0.010057303123176098, -0.004238996189087629, 0.0003970375983044505, 0.0021587845403701067, -0.018904587253928185, -0.012202337384223938, -0.012477342039346695, 0.007138328161090612, -0.013270925730466843, -0.01161304209381342, 0.014567375183105469, 0.004840077366679907, 0.0023787880782037973, 0.0027716513723134995, 0.013490929268300533, -0.013970223255455494, -0.002877724589779973, -0.013467357493937016, -0.005001151468604803, 0.009758727625012398, 0.018040288239717484, 0.03378625214099884, 0.0193917378783226, -0.0016578836366534233, -0.01273663155734539, 0.010968746617436409, -0.016264544799923897, -0.014504517428576946, 0.011369466781616211, -0.007000825833529234, 0.01895173080265522, 0.008202987723052502, -0.011573756113648415, 0.002673435490578413, 0.023901810869574547, 0.0003982652851846069, -0.012335911393165588, -0.0013760040747001767, 0.03548342362046242, 0.015109526924788952, 0.016185972839593887, -0.030423343181610107, -0.011118034832179546, 0.02762615494430065, 0.008501564152538776, -0.01756885275244713, -0.017034558579325676, -0.01681455411016941, -0.0012188587570562959, -0.00037493903073482215, -0.0052447267808020115, -0.02075890265405178, 0.0009556402801536024, -0.005822235718369484, -0.006226885132491589, -0.01767885312438011, -0.01928173564374447, -0.005005079787224531, 0.003467019647359848, 0.005009008571505547, 0.007747266441583633, -0.03865775838494301, 0.001755117322318256, -0.011542326770722866, -0.002592898439615965, -0.027909016236662865, 0.011424467898905277, 0.002685221377760172, 0.00792798399925232, 0.007326902821660042, 0.006156169809401035, 0.009978731162846088, 0.016704551875591278, 0.022534646093845367, -0.024797538295388222, -0.001970210112631321, -0.007849411107599735, 0.015101669356226921, -0.02633756399154663, 0.002642006380483508, -0.0004056314646732062, -0.018810300156474113, 0.0025221831165254116, 0.009303005412220955, -0.009153717197477818, -0.0020703901536762714, -0.0006968415109440684, 0.0029680831357836723, -0.02101033553481102, -0.020947476848959923, -0.0308790635317564, 0.013813077472150326, -0.014685234054923058, -0.023556090891361237, 0.0063172439113259315, 0.029307611286640167, -0.011078747920691967, -0.01903030462563038, -0.010355879552662373, 0.0125166280195117, -0.010882316157221794, 0.013608789071440697, 0.0025614695623517036, -0.012288767844438553, 0.005107224453240633, -0.0039757778868079185, -0.0014624340692535043, 0.016264544799923897, 0.027201863005757332, -0.002567362505942583, -0.023791808634996414, -0.005837950389832258, -0.003881490556523204, 0.003011298133060336, 0.015117384493350983, 0.019926032051444054, 6.690955342492089e-05, 0.006639391649514437, -0.0014211833477020264, 0.0077315522357821465, -0.008564422838389874, -0.018338864669203758, -0.005134725011885166, -0.0032961240503937006, 0.00656081922352314, -0.005064009223133326, -0.01991031877696514, -0.014590946957468987, -0.020538900047540665, 0.007625478785485029, -0.004722218029201031, -0.00803405698388815, -0.019706029444932938, -0.003056477289646864, -0.022487502545118332, 0.016704551875591278, -0.004341140855103731, 0.0091301454231143, 0.0055747320875525475, -0.025677552446722984, 0.00165100849699229, -0.01217876560986042, -0.0012011799262836576, -0.013561645522713661, 0.0353262796998024, 0.002918975194916129, 0.01775742694735527, 0.010395165532827377, -0.02528468891978264, -0.020806046202778816, -0.01525881513953209, 0.008815854787826538, 0.03207336738705635, 0.006651177536696196, 0.009334434755146503, -0.018401721492409706, -0.0014202012680470943, 0.01868458464741707, 0.005221155006438494, 0.007947626523673534, 0.006776893977075815, 0.009750870056450367, -0.011526612564921379, -0.00625831400975585, -0.008077272213995457, -0.008344419300556183, 0.0006796537199988961, -0.004293997306376696, 0.012139479629695415, -0.010890173725783825, 0.009405150078237057, -0.004380427300930023, -0.0185274388641119, 0.014127368107438087, 0.014402372762560844, -0.005370442755520344, -0.014685234054923058, 0.001505649066530168, 0.021890349686145782, -0.007334759924560785, -0.0076411934569478035, -0.012603058479726315, -0.0030898707918822765, -0.011707330122590065, 0.007146185729652643, -0.010701599530875683, -0.013687361031770706, -0.02134034037590027, 0.007358331698924303, 0.0025987913832068443, -0.003413983155041933, 0.010143733583390713, -0.00814798753708601, -0.004745790269225836, 0.02102605067193508, 0.0057633062824606895, 0.01629597507417202, -0.0063722445629537106, -0.024436105042696, 0.010929460637271404, 0.00904371589422226, -0.0023591448552906513, 0.01637454703450203, -0.005617946851998568, 0.009837299585342407, 0.01422951277345419, -0.027767585590481758, -0.02899331972002983, -0.02075890265405178, 0.00354952085763216, -0.019077448174357414, -0.00844656303524971, -0.0073622604832053185, -0.0005460801185108721, 0.012720917351543903, -0.018747441470623016, -0.00046284220297820866, 0.003580949967727065, -0.009208718314766884, 0.012461627833545208, -0.0032843381632119417, -0.019140304997563362, -0.0035043417010456324, 0.0018317257054150105, 0.025347547605633736, -0.010701599530875683, -0.016751695424318314, -0.0006315279169939458, 0.012202337384223938, 0.010882316157221794, 0.0120530491694808, 0.0035023773089051247, 0.011715186759829521, -0.012783775106072426, 0.009562295861542225, -0.01402522437274456, 0.004706503823399544, -0.006175812799483538, 0.03538913652300835, 0.0101594477891922, 0.005771163385361433, 0.0016372583340853453, -0.003437554929405451, 0.009405150078237057, 0.02537897601723671, 0.020083177834749222, 0.00925586186349392, -0.0078022675588727, -0.014606662094593048, 0.0018808336462825537, 0.008493706583976746, -0.002074318937957287, -0.00456507271155715, 0.003268623724579811, 0.006112954579293728, 0.005779020953923464, -0.003798989113420248, 0.02014603652060032, 0.013985937461256981, 0.016311688348650932, 0.005767235066741705, 0.00836013350635767, 0.014480945654213428, 0.033817682415246964, -0.016091685742139816, -0.008540851064026356, 0.0017374384915456176, 0.0011422503739595413, 0.020633187144994736, -0.040009211748838425, 0.012257338501513004, 0.0038834549486637115, 0.016531692817807198, 0.020114606246352196, 0.0022727148607373238, -0.0003496484423521906, 0.019658885896205902, -0.010827315971255302, -0.016020970419049263, -0.007142256945371628, 0.0004400070174597204, -0.0215132012963295, 0.017097415402531624, -0.0014005580451339483, -0.01706598699092865, 0.006415459793061018, 0.0004031760909128934, -0.004588644485920668, 0.01844886504113674, -0.010450166650116444, -0.016500262543559074, -0.004309711512178183, 0.0073111881501972675, 0.011683758348226547, -0.007487976923584938, -8.207162318285555e-05, -0.0033864825963974, 0.00926371943205595, -0.00484793446958065, -0.00037739440449513495, 0.039506345987319946, -0.0077865528874099255, -0.017537422478199005, 0.003979706205427647, 0.005559017416089773, -0.014315943233668804, -0.0009855960961431265, 0.0066079627722501755, -0.002918975194916129, -0.01277591846883297, -0.009578010067343712, -0.017034558579325676, -0.0012090371455997229, -7.2250040830113e-05, -0.011345895007252693, 0.007326902821660042, 0.010230163112282753, -0.0002877724473364651, 0.0001238747499883175, 0.01998889073729515, 0.014276656322181225, -0.03026619739830494, 0.007267973385751247, -0.003924705553799868, 0.012579486705362797, -0.0047693620435893536, 0.0005225083441473544, 0.02306894026696682, 0.006164026912301779, -0.019171735271811485, -0.014638090506196022, 0.006195456255227327, -0.015769537538290024, -0.00047708352212794125, 0.00025830770027823746, 0.001362253911793232, 0.0048754350282251835, -0.017003128305077553, 0.0016048470279201865, 0.012241624295711517, 0.012618772685527802, -0.00814012996852398, -0.022927509620785713, -0.007248329930007458, 0.014056652784347534, -0.0030937993433326483, 0.002581112552434206, -0.0067965369671583176, 0.011605185456573963, -0.009428721852600574, 0.021638916805386543, -0.017458850517868996, 0.02006746269762516, -0.009420864284038544, 0.0027264722157269716, 0.008745139464735985, -0.0069418963976204395, 0.004525786731392145, -0.0025005757343024015, -0.01621740125119686, 0.009593724273145199, 0.02333608642220497, 0.0075508346781134605, -0.026117559522390366, 0.01637454703450203, -0.02812902070581913, 0.014370943419635296, -0.011361610144376755, -0.04349783807992935, 0.010104446671903133, 0.0018503867322579026, -0.015942396596074104, 0.0014771664282307029, -0.023430373519659042, 0.0025025398936122656, -0.005857593379914761, -0.008509421721100807, 0.006207242142409086, 0.02605470083653927, 0.02101033553481102, -0.013514501042664051, -0.011345895007252693, 0.01568310707807541, -0.011817331425845623, 0.05377514287829399, 0.017553137615323067, 0.004824362695217133, -0.00445899972692132, 0.014551660977303982, -0.024216100573539734, 0.01333378441631794, 0.02179606258869171, -0.02391752414405346, -0.012225909158587456, -0.0156045351177454, -0.0033079099375754595, 0.019517455250024796, 0.01589525304734707, 0.0008805051329545677, -0.012155193835496902, -0.009444436058402061, -0.015290244482457638, -0.004722218029201031, 0.011000175960361958, 0.008383705280721188, -0.00177476042881608, -0.003818632336333394, -0.019407453015446663, 0.025693267583847046, 0.017364563420414925, -0.03172764927148819, -0.02179606258869171, -0.0018444937886670232, 0.0019741386640816927, 0.005826164502650499, -0.0019053876167163253, -0.03516913205385208, -0.021293196827173233, -0.01501523982733488, 0.022676076740026474, -0.008265846408903599, 0.00858013704419136, -0.004066136199980974, -0.011927333660423756, -0.004840077366679907, -0.014590946957468987, 0.018338864669203758, 0.001486005843617022, -0.009633011184632778, -0.0074172611348330975, -0.0017207417404279113, 0.006336886901408434, 0.00328040961176157, -0.010434452444314957, 0.005900808610022068, -0.011715186759829521, -0.014418086968362331, -0.006419388111680746, 0.01402522437274456, -0.03736916929483414, 0.019878888502717018, -0.01548667624592781, -0.010434452444314957, -0.02710757590830326, -0.008674424141645432, -0.01800885982811451, 0.01731741987168789, 0.022738933563232422, -0.016924556344747543, 0.01774171181023121, -0.004765433259308338, -0.020601756870746613, 0.0015193992294371128, -0.0193917378783226, -0.00518579687923193, -0.017820283770561218, -0.001496809651143849, -0.017710283398628235, -0.0037282737903296947, -0.0052093686535954475, -0.01003373134881258, -0.005794735159724951, -0.020036034286022186, -0.0002519236586522311, -0.0003540681500453502, 0.004832219798117876, -0.010041588917374611, -0.0045061432756483555, -0.010835172608494759, -0.012186623178422451, -0.006415459793061018, 0.001021444913931191, 0.0007886732928454876, 0.011809473857283592, -0.010544453747570515, -0.0006973325507715344, -0.012540199793875217, 0.02460896410048008, -0.0011176964035257697, -0.003207729896530509, -0.007307259365916252, 0.01522738579660654, 0.00701261218637228, 0.011770187877118587, 0.009970873594284058, 0.0024082527961581945, -0.020538900047540665, -0.007452618796378374, 0.004058279097080231, -0.01645311899483204, -0.008100843988358974, 0.004270425532013178, 0.005193654447793961, 0.0029680831357836723, -0.021638916805386543, 0.007566549349576235, -0.006651177536696196, 0.013836649246513844, 0.0030996922869235277, 0.021214624866843224, 0.017710283398628235, -0.013302355073392391, 0.005857593379914761, 0.019187448546290398, 0.001681455411016941, 0.014693091623485088, 0.021481771022081375, -0.0017001164378598332, 0.004718289710581303, 0.0035632711369544268, -0.004557215608656406, 0.03182193636894226, -0.005979381036013365, 0.001754135126248002, -0.003531842026859522, -0.0025261116679757833, 0.009931586682796478, 0.014048796147108078, -0.019093161448836327, -0.008100843988358974, 0.0173331331461668, -0.006387959234416485, 0.0058143786154687405, -0.0026557566598057747, -0.016783125698566437, 0.03312624245882034, 0.012273052707314491, -0.0010135875781998038, 0.025944700464606285, 0.0018444937886670232, -0.012005905620753765, 0.008965143002569675, -0.012909491546452045, 0.006246528122574091, 0.01816600374877453, 0.004058279097080231, -0.0013367177452892065, 0.008619423024356365, -0.007904412224888802, 0.01816600374877453, -0.007472262252122164, 0.009923730045557022, -0.019344594329595566, 0.013105923309922218, 0.005696519743651152, 0.01535310223698616, -0.0005450979806482792, 0.017537422478199005, 0.014716663397848606, 0.0033373746555298567, 0.007338688708841801, 0.004022921435534954, 0.004541500937193632, 0.008784426376223564, -0.016531692817807198, -0.03157050535082817, -0.026133274659514427, -0.014960238710045815, -0.002321822801604867, 0.0019102983642369509, -0.003415947314351797, -0.01444951631128788, -0.005665090400725603, -0.004844005685299635, 0.0032843381632119417, 0.03312624245882034, 0.003993456717580557, -0.009617296047508717, 0.03337767720222473, 0.0038716690614819527, -0.027296150103211403, -0.009970873594284058, -0.0008289418183267117, 0.026368992403149605, 0.010458024218678474, 0.010929460637271404, -0.012485199607908726, -0.010795886628329754, -0.010135876014828682, -0.004235067404806614, 0.006619748659431934, -0.011141606606543064, -0.03138193115592003, 0.0018719942308962345, 0.027217578142881393, 0.005476516205817461, -0.0009634974994696677, -0.020727474242448807], "88d8279d-e0e5-4c63-8c40-03d0daf7cab7": [-0.021854640915989876, -0.01253665704280138, -0.0059376428835093975, 0.025205587968230247, -0.017210345715284348, -0.029467757791280746, 0.019429612904787064, 0.01653427816927433, -0.022707074880599976, 0.04603143036365509, 0.031863391399383545, 0.020458413287997246, 0.018195053562521935, -0.014447283931076527, -0.007914407178759575, 0.00993526354432106, -0.015858208760619164, 0.025337861850857735, 0.010493754409253597, -0.017254436388611794, 0.05193967744708061, -0.03956468775868416, -0.059258852154016495, -0.006227911449968815, 0.03486160561442375, -0.013705079443752766, -0.010986109264194965, 0.01691640354692936, -0.026263780891895294, -0.02685166709125042, -0.01816565915942192, 0.02802743762731552, -0.015049867331981659, 0.01474857609719038, -0.015887603163719177, -0.03515554964542389, -0.017871716991066933, -0.0012060836888849735, -0.005099906120449305, -0.007124436553567648, -0.03647829219698906, 0.02645484358072281, -0.02063477784395218, -0.037830427289009094, -0.04603143036365509, 0.0026932500768452883, -0.04276866465806961, 0.008818281814455986, 0.007216293830424547, 0.005717185791581869, 0.01698988862335682, 0.002722644479945302, 0.00011482137051643804, 0.0029431013390421867, 0.026043323799967766, -0.04088743031024933, 0.027042729780077934, 0.05905308946967125, 0.012213319540023804, -0.06560801714658737, -0.03756587952375412, -0.019855830818414688, -0.016005180776119232, 0.01222801674157381, -0.005687791388481855, -0.015858208760619164, -0.010493754409253597, 0.01155929733067751, -0.04332715645432472, 0.007796830497682095, -0.005250551737844944, -0.010412920266389847, -0.047853872179985046, -0.012213319540023804, 0.022310251370072365, 0.008597824722528458, 0.04788326844573021, 0.02585226111114025, 0.010207160376012325, -0.015343809500336647, -0.012507262639701366, -0.019899921491742134, 0.016475489363074303, 0.015505477786064148, 0.04476747661828995, 0.010677468962967396, -0.019106276333332062, -0.05020541697740555, -0.038212552666664124, -0.011059594340622425, -0.005614305846393108, 0.01222801674157381, 0.006316094193607569, -0.006018477026373148, -0.011184520088136196, 0.00810546986758709, 0.012624839320778847, -0.009949960745871067, 0.004916192032396793, -0.04138713330030441, -0.012367639690637589, -0.01474122703075409, -0.008399412967264652, 0.010897926054894924, -0.006110334303230047, 0.0034134096931666136, 0.037448301911354065, 0.038535889238119125, -0.003216835670173168, 0.0066320826299488544, -0.01994401402771473, -0.05044056847691536, 0.0391237735748291, 0.015299717895686626, -0.07066382467746735, -0.047530535608530045, -0.026175599545240402, 0.02529377117753029, -0.029041539877653122, -0.0017067048465833068, 0.02235434390604496, -0.023544810712337494, 0.027836374938488007, 0.030305493623018265, -0.004317283630371094, 0.018459603190422058, 0.005364454351365566, 0.04403261840343475, 0.03018791601061821, -0.0022817302960902452, -0.024823462590575218, -0.01738671213388443, 0.01172096561640501, -0.02157539501786232, 0.014763272367417812, 0.039006199687719345, 0.046589918434619904, 0.06366799026727676, -0.020840538665652275, 0.006837842520326376, -0.045590516179800034, -0.009523743763566017, -0.009839732199907303, 0.005786997266113758, 0.007833573035895824, -0.0033803412225097418, -0.02632256969809532, 0.03885922580957413, -0.05120481923222542, 0.04526717960834503, -0.05455576628446579, 0.004816986154764891, -0.02179585210978985, 0.015027821063995361, 0.04929419234395027, -0.012470519170165062, -0.009656018577516079, 0.033480074256658554, -0.012639536522328854, 0.02661651186645031, 0.003547521075233817, -0.06643105298280716, 0.017283830791711807, 0.02358890324831009, 0.013866747729480267, 0.02467649057507515, 0.013455227948725224, 0.020825840532779694, -0.02708682045340538, 0.031481266021728516, 0.019076881930232048, -0.015417295508086681, 0.01651958003640175, -0.0391237735748291, 0.010023446753621101, -0.0316576287150383, 0.02815971150994301, 0.020840538665652275, 0.02375057153403759, -0.032333698123693466, -0.05264513939619064, 0.0029780070763081312, 0.002325821667909622, -0.013175982050597668, 0.0022633587941527367, -0.007080344948917627, 0.011052246205508709, 0.007304476574063301, 0.008913813158869743, 0.0031470241956412792, -0.021075692027807236, -0.025749381631612778, 0.022648286074399948, -0.003813906805589795, -0.030055642127990723, -0.0052395290695130825, 0.011853239499032497, -0.015476084314286709, 0.0034281068947166204, 0.02855653502047062, 0.0005516018718481064, -0.03206915035843849, -0.008678658865392208, 0.008355321362614632, -0.023471325635910034, -0.02235434390604496, 0.004949260503053665, -0.05687791481614113, 0.021016903221607208, -0.005592260044068098, 0.05858278274536133, -0.039388325065374374, 0.03018791601061821, 0.006683522369712591, -0.003821255173534155, 0.010883228853344917, -0.006106659770011902, 0.005665745586156845, 0.0073853107169270515, -0.002467281650751829, -0.01698988862335682, -0.028600625693798065, -0.03142247721552849, -0.0015661634970456362, -0.058641571551561356, 0.0053865001536905766, -0.02498513087630272, 0.008509641513228416, 0.005110928788781166, -0.03089337982237339, 0.006040522828698158, -0.012735067866742611, 0.025352558121085167, -0.00175171485170722, 0.01164013147354126, 0.026204992085695267, 0.03712496533989906, 0.0016056620515882969, 0.03018791601061821, -0.02832137979567051, 0.0060809399001300335, 0.03002624772489071, -0.014630998484790325, -0.015079260803759098, -0.024823462590575218, 0.02614620514214039, -0.008752143941819668, 0.03639010712504387, 0.02880638651549816, 0.009825034998357296, -0.004916192032396793, -0.004684711806476116, -0.03374462202191353, -0.004004969261586666, -0.029070934280753136, 0.025132102891802788, 0.02949715219438076, 0.0006788239697925746, -0.0062977224588394165, 0.00931063573807478, 0.02871820330619812, 0.018430208787322044, -0.018297933042049408, 0.02003219537436962, 0.01590230129659176, -0.02871820330619812, 0.002976170042529702, 0.012984919361770153, 0.01304370816797018, 0.01291878242045641, 0.024867553263902664, -0.018106870353221893, -0.002965147141367197, 0.04291563481092453, 0.007767436094582081, -0.00327929831109941, -0.036037378013134, 0.006385905668139458, -0.015520174987614155, 0.010817091912031174, -0.04850054904818535, -0.022765863686800003, 0.031010955572128296, 0.008127516135573387, 0.06366799026727676, -0.010185115039348602, -0.04044651612639427, -0.005540820304304361, -0.032333698123693466, 0.001449504983611405, 0.012213319540023804, 0.0021402703132480383, 0.031157927587628365, 0.01019981224089861, 0.02397102862596512, 0.01521153561770916, -0.018106870353221893, 0.019194459542632103, -0.015946391969919205, -0.016945797950029373, -0.02383875474333763, -0.02693985030055046, -0.029982157051563263, -0.03104034997522831, 0.008406762033700943, -0.025279073044657707, 0.045443542301654816, 0.019679464399814606, -0.02717500366270542, 0.05775974318385124, 0.05790671333670616, -0.022545406594872475, -0.05020541697740555, -0.014021067880094051, -0.023632993921637535, 0.027072124183177948, -0.016666552051901817, 0.0005093475920148194, 0.008972601033747196, -0.016651853919029236, -0.01769535057246685, 0.026822272688150406, -0.049940865486860275, 0.028438957408070564, 0.035978589206933975, -0.038624074310064316, 0.033891595900058746, -0.02955593913793564, -0.015079260803759098, -0.02911502495408058, -0.018724150955677032, -0.012279456481337547, -0.00904608704149723, -0.008568430319428444, -0.03445008769631386, -0.011280051432549953, -0.04247472062706947, -0.025205587968230247, -0.01338174194097519, -0.027204398065805435, -0.02701333537697792, -0.032862793654203415, 0.029820488765835762, -0.030055642127990723, -0.013168633915483952, -0.01738671213388443, 0.013837353326380253, 0.02313329093158245, 0.007183224894106388, 0.0020741333719342947, 0.0008781538344919682, -0.022310251370072365, 0.02949715219438076, -0.04441474378108978, 0.010155720636248589, -0.033891595900058746, -0.024117998778820038, 0.03530251979827881, 0.002876964397728443, 0.008406762033700943, -0.004883123096078634, -0.06560801714658737, -0.008450852707028389, -0.0391237735748291, 0.022765863686800003, 0.029232602566480637, -0.006088288500905037, -0.04403261840343475, -0.02375057153403759, 0.0060809399001300335, -0.028674110770225525, -0.03921195864677429, 0.008370018564164639, 0.0021512932144105434, 0.03918256238102913, -0.06043462082743645, 0.03392098844051361, 0.008274487219750881, 0.003418921260163188, 0.021781155839562416, 0.0159904845058918, 0.0067092422395944595, -0.0012961036991328, 0.01168422307819128, 0.019106276333332062, -0.018297933042049408, 0.021075692027807236, -0.03982923924922943, -0.049470558762550354, 0.00426584342494607, -0.024558912962675095, 0.02536725625395775, -0.030055642127990723, 0.03156944736838341, 0.02980579063296318, -0.011544600129127502, -0.017342619597911835, -0.012095742858946323, -0.01257339958101511, -0.014946986921131611, -0.006793750915676355, -0.006988488137722015, -0.004071106668561697, 0.009413515217602253, -0.02360359951853752, -0.03497918322682381, -0.0007247524918057024, 0.008987298235297203, 0.01707807183265686, -0.012514610774815083, 0.023868149146437645, -0.00045193691039457917, 0.025102708488702774, 0.04259229823946953, 0.00010064092930406332, 0.03033488802611828, -0.007444099057465792, 0.04185744374990463, -0.024823462590575218, 0.01152255479246378, 0.014145992696285248, 0.001998810563236475, -0.02926199696958065, 0.032157331705093384, -0.011941422708332539, -0.01606396958231926, 0.01746019721031189, -0.004982328973710537, 0.005544494371861219, -0.004365049302577972, 0.03471463546156883, 0.03127550333738327, -0.025029221549630165, -0.013183331117033958, -0.018268540501594543, -0.03350947052240372, 0.01668124832212925, -0.018195053562521935, -0.005632677115499973, -0.0015211534919217229, -0.0023790989071130753, 6.573523569386452e-05, -0.011573994532227516, 0.02522028423845768, -0.019811738282442093, -0.028674110770225525, -0.01948840171098709, 0.004960283171385527, 0.03812437132000923, 0.0017792719881981611, -0.021149178966879845, 0.044444140046834946, -0.04323897138237953, 0.00034538269392214715, -0.031216716393828392, -0.03027609921991825, 0.017563076689839363, -0.023721177130937576, 0.0005125626339577138, -0.04597264155745506, -0.0071868994273245335, 0.03268643096089363, 0.032333698123693466, -0.01621093973517418, -0.006066242698580027, -0.017019283026456833, -0.012661582790315151, 0.030834591016173363, 0.007286104839295149, 0.029070934280753136, -0.015108655206859112, 0.010302691720426083, -0.022295555099844933, 0.045443542301654816, 0.01684291660785675, 0.005063163116574287, -0.03265703469514847, 0.011302097700536251, -0.013352347537875175, -0.024338455870747566, -0.007488190662115812, -0.022324949502944946, 0.015240930020809174, 0.04750114306807518, 0.005665745586156845, 0.020605383440852165, -0.03236309438943863, -0.02003219537436962, -0.03274521976709366, 0.004861077759414911, 0.010912623256444931, -0.008590475656092167, -0.010559892281889915, 0.018827030435204506, 0.01941491663455963, 0.009847081266343594, -0.0030110757797956467, -0.0017866205889731646, 0.014021067880094051, -0.006260979920625687, 0.015608358196914196, -0.0006820389535278082, -0.009920566342771053, 0.017401408404111862, -0.02034083567559719, 0.04741295799612999, -0.014946986921131611, 0.0029155442025512457, 0.005459985695779324, -0.036977995187044144, -0.030834591016173363, 0.012544005177915096, -0.04176925867795944, -0.007010533940047026, 0.024470731616020203, 0.01954719051718712, -0.006198517046868801, 0.022060399875044823, 0.0197235569357872, 0.023706478998064995, -0.012161879800260067, -0.009295938536524773, 0.0015018635895103216, 0.011382931843400002, 0.002127410378307104, -0.011052246205508709, -0.007752738893032074, -0.01031738892197609, 0.013984324410557747, -0.0010416595032438636, -0.02777758613228798, 0.003051492851227522, -0.004236449487507343, 0.006690870970487595, 0.01528502069413662, 0.014836758375167847, -0.011221262626349926, 0.011934074573218822, -0.003023935714736581, 3.390101119293831e-05, 0.002821850124746561, 0.021207965910434723, 0.003982923924922943, 0.012213319540023804, -0.00853903591632843, 0.00471410620957613, 0.013271513395011425, 0.0019694161601364613, -0.002469118684530258, 0.033950384706258774, -0.012771811336278915, 0.040387727320194244, -0.04056409373879433, 0.0058641573414206505, 0.000201052229385823, -0.027998043224215508, -0.005493054632097483, 0.0011537251994013786, -0.016313821077346802, -0.03509676083922386, -0.026293175294995308, -0.009714806452393532, 0.006624734029173851, 0.011125731281936169, -0.025323165580630302, 0.0030312843155115843, -0.023559508845210075, 0.030540646985173225, -0.0073853107169270515, 0.02848304808139801, 0.0023331702686846256, 0.009986703284084797, 0.04485565796494484, 0.01854778453707695, 0.008649264462292194, 0.016578368842601776, -0.01316128484904766, -0.01737201400101185, -0.014373798854649067, -0.0003991191042587161, 0.01823914609849453, -0.002110876142978668, 0.024176787585020065, -0.04773629829287529, -0.0002845273702405393, -0.006981139536947012, -0.01575532928109169, -0.004530392121523619, 0.005375477485358715, 0.019929315894842148, 0.004192357882857323, 0.029864579439163208, -0.044885050505399704, 0.016416700556874275, -0.006165448576211929, 0.03004094585776329, -0.003194789867848158, 0.0032572527416050434, 0.00709871668368578, 0.03639010712504387, 0.01591699756681919, 0.020296745002269745, 0.007128110621124506, -0.004861077759414911, -0.006448368076235056, 0.011419674381613731, -0.028615323826670647, 0.032715823501348495, -0.0014173550298437476, 0.0015496292617172003, -0.002926567103713751, -0.03965287283062935, 0.030540646985173225, -0.01516744401305914, 0.01210309099406004, 0.0036577496211975813, 0.04182804748415947, 0.04550233110785484, 0.040387727320194244, -0.015042518265545368, 0.039535295218229294, 0.008296533487737179, 0.039300139993429184, -0.010545195080339909, 0.019150367006659508, 0.01706337369978428, -0.03753648325800896, 0.01863596774637699, -0.0038506495766341686, 0.03253945708274841, -0.020120378583669662, 0.014469330199062824, -0.007752738893032074, -0.011191869154572487, 0.007216293830424547, -0.011030199937522411, 0.01869475655257702, 0.0045634605921804905, 0.0009204081143252552, -0.010942017659544945, -0.00888441875576973, 0.00041817943565547466, 0.012161879800260067, 0.022295555099844933, -0.02328026294708252, 0.008913813158869743, 0.018533088266849518, -0.008869721554219723, 0.04173986613750458, 0.022236766293644905, -0.02910032868385315, 0.028982751071453094, -0.010581937618553638, 0.016901705414056778, 0.01032473798841238, -0.008245092816650867, -0.022471919655799866, 0.03824194520711899, -0.021516606211662292, -0.01532911229878664, 0.014572209678590298, -0.03306855633854866, -0.0022064074873924255, 0.006981139536947012, 0.014550164341926575, -0.0014917593216523528, -0.019650069996714592, 0.04106379672884941, 0.02079644612967968, 0.022780559957027435, 0.005698814522475004, -0.02026735059916973, 0.014601604081690311, 0.0014109250623732805, -0.009700109250843525, -0.027660008519887924, 0.004530392121523619, 0.02320677787065506, 0.011235959827899933, 0.007230990566313267, -0.013830004259943962, -0.022383738309144974, -0.007921756245195866, 0.010287994518876076, -0.013095147907733917, -0.011956119909882545, -0.014425238594412804, 0.010376177728176117, -0.03932953625917435, -0.03265703469514847, -0.0028696157969534397, 0.011882633902132511, -0.025190889835357666, 0.018606573343276978, -0.00247279298491776, 4.9000020226230845e-05, -0.005801694467663765, -0.03733072429895401, 0.015549569390714169, -0.005235854536294937, -0.028850477188825607, 0.001974927494302392, -0.003909437917172909, -0.006621059495955706, 0.024426639080047607, 0.026175599545240402, -0.022251462563872337, -0.0017011933960020542, -0.010721560567617416, -0.002085156040266156, 0.013616896234452724, -0.0009507209761068225, -0.016284426674246788, 0.009839732199907303, 0.002469118684530258, -0.008384715765714645, -0.03074640780687332, 0.018665362149477005, -0.018430208787322044, 0.014579558745026588, -0.017724744975566864, 0.015578963793814182, -0.02353011444211006, -0.016269728541374207, -0.013697730377316475, 0.02351541630923748, -0.016049271449446678, 0.016857614740729332, 0.00766455614939332, 0.005893551278859377, 0.04059349000453949, -0.00973685272037983, -0.007205270696431398, -0.003971900790929794, 0.010096931830048561, -0.04135774075984955, 0.028688808903098106, 0.014586906880140305, 0.027145609259605408, -0.005504077300429344, 0.02623438648879528, 0.033568259328603745, -0.002722644479945302, -0.03277461230754852, -0.0011610736837610602, 0.002856755629181862, 0.021296149119734764, 0.011022851802408695, -0.007014208007603884, 0.02298632077872753, 0.02072296105325222, -0.05246877297759056, 0.009487001225352287, -0.017563076689839363, 0.0010885066585615277, 0.020384926348924637, 0.021443121135234833, 0.0032260213047266006, 0.016622459515929222, 0.03409735485911369, -0.023721177130937576, 0.015652449801564217, -0.03492039442062378, -0.027586523443460464, 0.019885225221514702, -0.012808553874492645, 0.036448895931243896, -0.0006691789603792131, 0.030158521607518196, 0.01129474863409996, 0.04112258553504944, 0.010905275121331215, 0.023706478998064995, -0.005915597081184387, -0.010207160376012325, -0.029379574581980705, -0.019855830818414688, 0.0060111284255981445, -0.005019071977585554, 0.00022700185945723206, -0.0006361104315146804, -0.06378556787967682, 0.005235854536294937, -0.021560698747634888, 0.03477342426776886, -0.0002996837720274925, 0.00026362985954619944, 0.020855234935879707, 0.0009341866825707257, 0.011309445835649967, 0.047236595302820206, -0.0023625646717846394, 0.017195649445056915, 0.019106276333332062, 0.04538475349545479, -0.009604577906429768, 0.020840538665652275, 0.006139728240668774, -0.004188683815300465, -0.00014593797095585614, -0.014630998484790325, -0.029673516750335693, 0.02592574805021286, 0.043268367648124695, 0.007840922102332115, -0.03171641752123833, 0.014248873107135296, -0.026734089478850365, -0.045531727373600006, 0.02857123129069805, 0.0171662550419569, 0.019899921491742134, -0.0021182247437536716, 0.021237360313534737, -0.008237744681537151, -0.020046893507242203, 0.0007050032145343721, 0.006768031045794487, 0.027116214856505394, 0.014057810418307781, -0.00624628271907568, -0.0022468245588243008, 0.02034083567559719, 0.008164258673787117, -0.010082234628498554, -0.017798231914639473, 0.00211455044336617, -0.0068488651886582375, 0.029996853321790695, 0.0006462146993726492, -0.009905869141221046, 0.0028732900973409414, -0.005375477485358715, 0.03871225565671921, 0.010890577919781208, 0.012044303119182587, -0.008597824722528458, 0.0039057638496160507, -0.035596463829278946, 0.011206566356122494, -0.016578368842601776, -0.04035833477973938, -0.022780559957027435, 0.005496728699654341, -0.007561676204204559, -0.004552437923848629, -0.0034281068947166204, -0.01435910165309906, 0.028365472331643105, 0.05364454537630081, 0.029453059658408165, -0.017136860638856888, 0.002878801431506872, 0.0534093901515007, -0.02297162264585495, 0.022780559957027435, -0.009766246192157269, 0.036742839962244034, -0.025955142453312874, 0.013646290637552738, 0.028056832030415535, -0.030481860041618347, -0.011184520088136196, 0.02056129276752472, -0.0029026842676103115, 0.012125137262046337, -0.020972812548279762, -0.008671309798955917, 0.02079644612967968, 0.03765406087040901, 0.009031389839947224, -0.01847429946064949, 0.04673689231276512, 0.014410541392862797, -0.021546000614762306, -0.0024195159785449505, 0.022560102865099907, 0.00989852100610733, -0.015711238607764244, -0.005301991477608681, -0.024558912962675095, -0.00370551529340446, -0.03080519661307335, 0.01016306970268488, -0.003262764075770974, 0.036977995187044144, 0.018841728568077087, -0.01809217408299446, -0.008090773597359657, 0.009068132378160954, -0.02117857336997986, 0.011449068784713745, -0.010104280896484852, -0.01222801674157381, -0.04588445648550987, 0.023250868543982506, -0.007499213330447674, 0.0008244174532592297, -0.0028622671961784363, -0.0073301964439451694, 0.0006402439903467894, -0.04564930498600006, -0.020914023742079735, -0.0035879381466656923, 0.027615917846560478, -0.0330391600728035, -0.01577002741396427, -0.0018178520258516073, 0.02965882048010826, -0.005834762938320637, -0.007833573035895824, 0.01963537372648716, -0.002922892803326249, -0.0017691677203401923, 0.03530251979827881, 0.012477868236601353, 0.009597229771316051, -0.013014313764870167, -0.012757114134728909, -0.026881061494350433, -0.014461981132626534, 0.004820660687983036, 0.004879449028521776, 0.014300312846899033, -0.014675090089440346, 0.0046883863396942616, -0.013396439142525196, -0.017798231914639473, 0.009678063914179802, 0.0374189056456089, -0.019062185660004616, 0.003722049528732896, 0.004548763390630484, -0.021207965910434723, -0.010574589483439922, -0.022222070023417473, -0.023779965937137604, -0.01295552495867014, -0.031099138781428337, -0.027336671948432922, 0.007271408103406429, -0.0188711229711771, 0.013940232805907726, -0.00380288390442729, 0.0012161879567429423, 0.0024636073503643274, -0.005621654447168112, 0.008950555697083473, -0.033891595900058746, -0.001888581900857389, 0.003530986839905381, 0.014226827770471573, -0.01316128484904766, 0.018988698720932007, 0.014513421803712845, -0.004941911902278662, -0.023324353620409966, -0.006587991025298834, -0.009582532569766045, 0.027204398065805435, 6.7285327531863e-05, -0.016357911750674248, -0.005555517505854368, 0.00113535369746387, -0.022148583084344864, 0.016504883766174316, -0.012595444917678833, 0.019973406568169594, 0.00013824492634739727, -0.00490884343162179, -0.0033399241510778666, -0.013095147907733917, 0.00943556148558855, 0.03565525263547897, 0.004585506394505501, -0.01253665704280138, -0.03439129889011383, -0.029159117490053177, -0.019664768129587173, 0.0023607274051755667, 0.036595866084098816, -0.001150050899013877, -0.018136264756321907, -0.04200441390275955, 0.0026509957388043404, 0.011515205726027489, -0.02298632077872753, -0.005224831867963076, -0.010574589483439922, 0.010287994518876076, -0.004181335214525461, -0.01823914609849453, 0.0014449121663346887, -0.020840538665652275, 0.013131890445947647, -0.0011280052131041884, 0.008355321362614632, -0.03700738772749901, -0.01164013147354126, -0.0388004370033741, 0.009663366712629795, 0.010412920266389847, -0.02693985030055046, 0.03583161532878876, 0.015490780584514141, 0.0036430524196475744, 0.017048677429556847, 0.0020226933993399143, -0.0012602793285623193, -0.01793050579726696, -0.020384926348924637, -0.004023340996354818, -0.013367044739425182, 0.0006489704246632755, -0.024941038340330124, -0.009920566342771053, 0.038153763860464096, -0.03168702498078346, 0.01019981224089861, 0.044355954974889755, 0.008781538344919682, -0.018518390133976936, -0.001021450967527926, -0.03312734514474869, -0.01334499940276146, 0.011397629044950008, 0.024632399901747704, -0.0013245793525129557, -0.007701299153268337, -0.021016903221607208, -0.030099734663963318, -0.012793856672942638, -0.007396333385258913, -0.014006370678544044, 0.006815796718001366, -0.026043323799967766, 0.00533506041392684, -0.04735417291522026, -0.04162228852510452, 0.019679464399814606, -0.0008501374395564198, -0.003464849665760994, -0.032862793654203415, 0.011963468044996262, 0.03104034997522831, -0.027909860014915466, 0.03227490931749344, -0.00041037157643586397, 0.013249468058347702, 0.008487596176564693, -0.0008234988781623542, -0.01024390384554863, -0.016431396827101707, -0.023074502125382423, 0.0019786017946898937, -0.01568184420466423, -0.03277461230754852, -0.006569619756191969, 0.015696540474891663, 0.019738253206014633, -0.010905275121331215, -0.02009098418056965, 0.03500857576727867, 0.01760716922581196, -0.013183331117033958, -0.02538195252418518, -0.025264376774430275, 0.01485880371183157, -0.00045951514039188623, -0.00022837970755062997, 0.00022459060710389167, 0.006360185332596302, 0.009237149730324745, -0.007943801581859589, -0.009450258687138557, 0.02592574805021286, 0.018988698720932007, -0.0031543727964162827, -0.001268546562641859, 0.0016809848602861166, -0.012566051445901394, 0.006665151100605726, -0.024397244676947594, 0.0021678274497389793, -0.0530860535800457, 0.017342619597911835, 0.012352942489087582, 0.0038800437469035387, -0.004449557978659868, -0.007469819393008947, -0.01854778453707695, -0.0002218348963651806, -0.00045630012755282223, 0.004464255180209875, 0.005893551278859377, -0.005570214241743088, 0.0011812823358923197, 0.04021136462688446, 0.014491375535726547, -0.001049008104018867, -0.02009098418056965, -0.016005180776119232, -0.019209155812859535, -0.0038984152488410473, 0.01729852892458439, 0.02754243277013302, 0.0014917593216523528, 0.016872311010956764, -0.005011723376810551, -0.005206460133194923, 0.03959408402442932, -0.0007908896077424288, 0.024044513702392578, 0.01862127147614956, 0.02560240961611271, 0.013058405369520187, 0.00823039561510086, -0.02552892453968525, -0.01477796956896782, 0.01568184420466423, 0.007818875834345818, -0.03353886306285858, -0.01737201400101185, -0.01738671213388443, -0.03242187947034836, -0.006896630860865116, 0.01621093973517418, 0.025352558121085167, 0.008906464092433453, 0.02569059282541275, 0.012235365808010101, -0.020517202094197273, 0.046766284853219986, -0.0010434966534376144, -0.035126153379678726, -0.011948770843446255, -0.017504287883639336, 0.007899709977209568, -0.032098542898893356, -0.00508153485134244, -0.009560486301779747, -0.006099311169236898, 0.0016056620515882969, 0.016651853919029236, -0.004820660687983036, -0.028042135760188103, -0.024573611095547676, -0.02523498237133026, 0.010736257769167423, -0.01823914609849453, -0.007102390751242638, -0.005085208918899298, 0.0017195648979395628, 0.03051125444471836, -0.011515205726027489, 0.017739443108439445, 0.00626832852140069, -0.014939638786017895, 0.006536551285535097, 0.0034611753653734922, -0.04385625198483467, 0.008891766890883446, 0.000823039619717747, -0.014087204821407795, -0.006316094193607569, 0.005408545956015587, 0.021252058446407318, -0.009171012789011002, 0.003192952834069729, 0.0027061100117862225, 0.002707947278395295, 0.006191168446093798, 0.007554327603429556, -0.006690870970487595, -0.00892851036041975, 0.016122758388519287, -0.013029010966420174, 0.020517202094197273, -0.0009975681314244866, 0.009406167082488537, 0.0009663366945460439, -0.014697135426104069, 0.017945202067494392, 0.005423243157565594, -0.013991673476994038, 0.013594850897789001, 0.018430208787322044, 0.004129895009100437, 0.03750709071755409, 0.02576407790184021, 0.01970885880291462, -0.007701299153268337, -0.012984919361770153, -0.018959304317831993, -0.0027336671482771635, 0.007782133296132088, -0.0026234386023133993, 0.0036522382870316505, 0.00247279298491776, 0.033186133950948715, -0.006599013693630695, -8.34751408547163e-05, -0.007513910531997681, -0.015108655206859112, -0.0007798667647875845, -0.009663366712629795, -0.01738671213388443, -0.0012106765061616898, -0.017474893480539322, -0.02389754168689251, 0.0023662387393414974, 0.0004071565927006304, -0.022545406594872475, -0.03421493247151375, 0.008869721554219723, 0.017592471092939377, 0.003718375228345394, -0.03306855633854866, 0.004416489042341709, -0.015358506701886654, 0.028262590989470482, 0.01435910165309906, 0.014608953148126602, 0.02235434390604496, -0.0028714528307318687, -0.005180740263313055, 0.041798654943704605, 0.029864579439163208, -0.02172236703336239, -0.024088606238365173, 0.006047871429473162, 0.013572804629802704, 0.010038143955171108, 0.021913429722189903, 0.03392098844051361, -0.021399028599262238, 0.005849460139870644, 0.008046681992709637, -0.016166849061846733, 0.015064563602209091, 0.01885642483830452, 0.014204781502485275, -0.003986597992479801, -0.01954719051718712, 0.0056510488502681255, 0.028968054801225662, -0.010780349373817444, -0.003857998177409172, -0.0029357527382671833, 0.008788887411355972, 0.003191115567460656, -0.02150190994143486, -0.010728908702731133, 0.014366449788212776, -0.006782728247344494, -0.005401197355240583, -0.04297442361712456, 0.018988698720932007, -0.0010306366020813584, 0.009376772679388523, 0.0050447918474674225, 0.01909158006310463, 0.011191869154572487, 0.015240930020809174, -0.05143997445702553, 0.017827626317739487, -0.015549569390714169, -0.011948770843446255, 0.022148583084344864, 0.0046149007976055145, -0.0036081469152122736, -0.021942824125289917, 0.0015771863982081413, 0.012646885588765144, -0.007708647754043341, 0.004629597533494234, -0.0023588903713971376, -0.014006370678544044, -0.008480247110128403, -0.03688981011509895, -0.003435455495491624, 0.03568464517593384, 0.004805963486433029, -0.01809217408299446, -0.022251462563872337, 0.02499982714653015, 0.02383875474333763, 0.0012079208390787244, 0.00795115064829588, -0.020531898364424706, -0.0011234122794121504, 0.002895335666835308, -0.0016910891281440854, 0.01691640354692936, -0.005265248939394951, 0.01044231466948986, -0.010773000307381153, -0.013616896234452724, 0.012632188387215137, 0.034949786961078644, -0.018136264756321907, 0.041181374341249466, -0.010780349373817444, -0.013102496042847633, 0.011037549003958702, 0.000719700357876718, -0.00764251034706831, 0.026866363361477852, 0.0025903701316565275, -0.015549569390714169, -0.020061589777469635, 0.007264059502631426, -0.0034850582014769316, 0.020355533808469772, -0.025866959244012833, -0.0020796447061002254, 0.011441719718277454, -0.03253945708274841, 0.006911328062415123, -0.022104492411017418, 0.02211918868124485, 0.01956188678741455, 0.038535889238119125, 0.006852539721876383, -0.01706337369978428, 0.020429018884897232, 0.003986597992479801, 0.018650665879249573, 0.042562905699014664, 0.008722750470042229, 0.0034979183692485094, 0.01577002741396427, -0.012713022530078888, 0.014131295494735241, -0.005709837190806866, 0.022927531972527504, -0.011787102557718754, 0.016122758388519287, 0.0035989610478281975, -0.019929315894842148, -0.008421458303928375, -0.0031580470968037844, -0.0002372209564782679, 0.0031176297925412655, 0.006286699790507555, 0.004181335214525461, 0.00806872732937336, 0.013778564520180225, -0.009340030141174793, -0.0010159395169466734, -0.010214509442448616, 0.013741821981966496, 0.015343809500336647, 0.005801694467663765, -0.003477709833532572, 0.006639431230723858, -0.03180460259318352, -0.0014044949784874916, 0.00837736763060093, 0.029938064515590668, 0.0017333434661850333, -0.04150471091270447, 0.002838384360074997, -0.018253842368721962, 0.009134270250797272, 0.004100501071661711, -0.0010269623016938567, -0.011728314682841301, 0.012896736152470112, -0.0007339381845667958, -0.019297339022159576, -0.019194459542632103, 0.005482031498104334, -0.014586906880140305, 0.016034575179219246, -0.0017618191195651889, 0.0008276324369944632, 0.02282465249300003, -0.0011665851343423128, -0.010177766904234886, 0.009942612610757351, 0.00698481360450387, 0.013859398663043976, 0.026263780891895294, 0.05626063421368599, -0.01646079123020172, 0.009766246192157269, 0.035890404134988785, 0.0014504236169159412, 0.007139133755117655, 0.006466739811003208, 0.002970658475533128, 0.02663120999932289, 0.013139239512383938, 0.008987298235297203, -0.00904608704149723, -0.021692972630262375, -0.0077453902922570705, -0.0055959345772862434, 0.007300802040845156, 0.022618891671299934, -0.018195053562521935, -0.014969032257795334, 0.028585929423570633, -0.012727719731628895, 0.00582006573677063, -0.015049867331981659, 0.003290321212261915, -0.018988698720932007, -0.029614727944135666, 0.017122162505984306, -0.00973685272037983, 0.025249678641557693, -0.010728908702731133, 0.005709837190806866, 0.0038506495766341686, -0.01892990991473198, 0.007444099057465792, -0.02273646928369999, -0.03339189291000366, -0.015578963793814182, -0.010302691720426083, -0.0019087904365733266, -0.008972601033747196, -0.0030055642127990723, -2.302168468304444e-05, -0.00858312752097845, 0.001608417835086584, -0.008832978084683418, 0.006003779824823141, 0.018371419981122017, 0.009788292460143566, 0.001249256543815136, -0.03606677055358887, -0.011772405356168747, -0.03450887277722359, -0.004471603315323591, -0.0016589391743764281, -0.007227316498756409, 0.0018766404828056693, 0.011581342667341232, -0.011897331103682518, 0.016313821077346802, 0.012558702379465103, -0.010214509442448616, 0.01167687401175499, -0.03189278393983841, 0.0027759214863181114, -0.015887603163719177, 0.004684711806476116, -0.03227490931749344, -0.023706478998064995, 0.0003573241119738668, 0.009964657947421074, 0.008252441883087158, -0.014807363972067833, -0.019650069996714592, -0.010265949182212353, 0.00601480295881629, 0.013903490267693996, -0.026410752907395363, -0.004027015063911676, 0.0006526446668431163, -0.016475489363074303, -0.0011720965849235654, 0.024264970794320107, -0.02353011444211006, 0.013874095864593983, 0.009222452528774738, -0.004434860777109861, -0.02748364396393299, 0.0568191260099411, -0.006804773584008217, 0.0009883823804557323, -0.01024390384554863, 0.0074551221914589405, -0.0013411135878413916, -0.005948665551841259, -0.010905275121331215, 0.009553138166666031, 0.0061507513746619225, 0.000755524612031877, -0.02228085696697235, 0.01621093973517418, 0.002555464394390583, 0.016269728541374207, 0.023162685334682465, 0.01175770815461874, -0.00977359525859356, -0.010339435189962387, -0.034038566052913666, -0.005033769179135561, 0.011500508524477482, -0.010919971391558647, 0.0008193653193302453, -0.02723379246890545, 0.031216716393828392, 0.026293175294995308, -0.0024213530123233795, -0.005739231593906879, 0.009185709990561008, -0.030217310413718224, -0.009288589470088482, 0.03345068171620369, -0.017636563628911972, -0.021163875237107277, -0.014263570308685303, 0.03850649669766426, 0.0009259195649065077, 0.01299961656332016, -0.013190679252147675, 0.014234175905585289, -0.027968648821115494, 0.012676279060542583, 0.032480668276548386, -0.001483492087572813, 0.005290968809276819, 0.013859398663043976, 0.006639431230723858, -0.010802394710481167, 0.006393253803253174, 0.027689402922987938, 0.006745985243469477, 0.04027015343308449, 0.0048316833563148975, -0.015270323492586613, 0.01397697627544403, 0.001836223411373794, 0.027806980535387993, 0.00031897376175038517, -0.009964657947421074, 0.00494558596983552, 0.011456416919827461, -0.022956926375627518, -0.03833013027906418, 0.00430993502959609, 0.01159603986889124, -0.007039927877485752, -0.02708682045340538, -0.04238653928041458, -0.010581937618553638, 0.005702488590031862, -0.017827626317739487, 0.0023184730671346188, 0.007965847849845886, 0.01039822306483984, -0.01346257608383894, -0.018444905057549477, 0.0015009449562057853, -0.012970222160220146, 0.008796235546469688, -0.009244498796761036, 0.002257847459986806, 0.024823462590575218, 0.01807747595012188, -0.014895547181367874, -0.0037110268604010344, -0.014079855754971504, -0.022383738309144974, -0.004916192032396793, -0.0015386063605546951, -0.011662176810204983, -0.005059489049017429, -0.008663961663842201, -0.004181335214525461, -0.013763867318630219, -0.02677818201482296, -0.0029431013390421867, -0.0028585928957909346, 0.0035254755057394505, 0.007539630401879549, 0.012272108346223831, -0.008605172857642174, 0.008340624161064625, 0.008333276025950909, -0.018356721848249435, 0.02094341814517975, -0.0053865001536905766, -0.002663855906575918, -0.006338139530271292, -0.013411136344075203, 0.020899327471852303, 0.04135774075984955, 0.01385205052793026, 0.0056694201193749905, -0.004787591751664877, 0.016666552051901817, -0.006841516587883234, 0.008414110168814659, 0.019429612904787064, 0.023383142426609993, -0.015520174987614155, 0.004041712265461683, -0.017710048705339432, -0.009913218207657337, -0.004170312080532312, -0.019914619624614716, 0.026881061494350433, 0.010207160376012325, 0.02353011444211006, -0.010530497878789902, 0.012036954052746296, 0.006617385428398848, 0.01455751247704029, -0.02297162264585495, 0.0031433498952537775, 0.0051880888640880585, 0.009714806452393532, 0.007708647754043341, 0.02483815886080265, -0.022457223385572433, -0.009494349360466003, 0.00010575048509053886, -0.000660452526062727, -0.008252441883087158, 0.01040557213127613, 0.008708053268492222, 0.005390174686908722, -0.008663961663842201, 0.013322953134775162, -0.010626029223203659, 0.008524338714778423, -0.01784232258796692, -0.012933479622006416, 0.013580153696238995, 0.007322847843170166, -0.01746019721031189, 0.004963957704603672, 0.008237744681537151, 0.0040784552693367004, -0.015226232819259167, -0.022648286074399948, -0.020296745002269745, -0.006863562390208244, -0.000806046009529382, 0.0032554154749959707, 0.013073102571070194, -0.013330302201211452, -0.013536062091588974, -0.013763867318630219, -0.007425727788358927, -0.0009801152627915144, -0.03018791601061821, 0.00795115064829588, -0.03277461230754852, -0.028923962265253067, 0.026293175294995308, -0.019885225221514702, -0.009839732199907303, -0.0060846139676868916, -0.001361322239972651, 0.01693109981715679, 0.0025885330978780985, 0.03051125444471836, 0.0036834697239100933, -0.014234175905585289, -0.0036412153858691454, 0.02119326964020729, 0.013065753504633904, 0.003178255632519722, -0.0008790724095888436, -0.013683033175766468, -0.004670015070587397, -0.006826819386333227, -0.0035714039113372564, -0.010773000307381153, 0.03289218991994858, 0.0008570267236791551, -0.005540820304304361, -0.017210345715284348, 0.006867236457765102, -0.018988698720932007, -0.0031268156599253416, 0.0036687725223600864, -0.018533088266849518, 0.008208350278437138, 0.00025697023374959826, -0.0070472764782607555, -0.003843300975859165, 0.013940232805907726, 0.012764462269842625, -0.0043687233701348305, -0.00958988070487976, 0.03350947052240372, 0.0016929262783378363, 0.030922774225473404, -0.013315604999661446, -0.005504077300429344, 0.013741821981966496, 0.01537320390343666, 0.0016065806848928332, 0.0188711229711771, -0.017430802807211876, -0.02429436519742012, -0.004177660681307316, -0.0024507474154233932, -0.012426428496837616, 0.0060809399001300335, 0.016490185633301735, -0.000827173178549856, -0.015027821063995361, -0.020517202094197273, 0.013220073655247688, -0.004600203596055508, 0.0019253247883170843, 0.014366449788212776, 0.00845820177346468, 0.0018904190510511398, -0.027571827173233032, -0.004262169357389212, -0.012397034093737602, -0.01226475927978754, 0.014469330199062824, 0.021516606211662292, 0.0010104280663654208, -0.00035250160726718605, -0.0016892519779503345, -0.003758792532607913, 0.020355533808469772, 0.011111035011708736, 0.015035170130431652, 0.002445235848426819, 0.009134270250797272, 0.028776992112398148, 0.008678658865392208, 0.019988104701042175, -0.021222664043307304, 0.0017847834387794137, -0.015520174987614155, -0.015196838416159153, 0.0010471709538251162, 0.003049655584618449, 0.03694859892129898, -0.010060189291834831, -0.0071134138852357864, -0.0028420586604624987, -0.00558858597651124, -0.007760087493807077, -0.012279456481337547, 0.009839732199907303, 0.0016387306386604905, -0.021619485691189766, 0.011456416919827461, -0.004842706024646759, 0.0007830817485228181, -0.0060294996947050095, -0.004761871881783009, 0.01653427816927433, 0.008634567260742188, 0.01291878242045641, 0.030834591016173363, 0.005978059954941273, -0.014263570308685303, 0.006503482349216938, 0.00541589455679059, -0.01723974011838436, 0.00649980828166008, 0.013594850897789001, -0.012397034093737602, 0.010919971391558647, -0.02250131405889988, 0.011118383146822453, 0.007862967438995838, -0.0042033810168504715, -0.00175171485170722, -0.003916786517947912, -0.016637157648801804, 0.006602688226848841, 0.0019675791263580322, -0.009450258687138557, -0.002312961732968688, 0.0041335695423185825, -0.009369423612952232, 0.0075469790026545525, 0.00849494431167841, -0.0001420340413460508, -0.011544600129127502, 0.003292158478870988, 0.01878293976187706, 0.017592471092939377, 0.0039572035893797874, 0.007010533940047026, 0.015578963793814182, -0.006532876752316952, 0.02655772492289543, -0.02319207973778248, -0.011779754422605038, -0.025675896555185318, -0.02616090141236782, -0.009670714847743511, -0.026748787611722946, 0.017959900200366974, -0.04068167135119438, -0.016284426674246788, 0.01299226749688387, 0.0016699620755389333, -0.024279668927192688, 0.01040557213127613, 0.02420618198812008, -0.005610631313174963, 0.025940444320440292, 0.013594850897789001, 0.004442209377884865, 0.021237360313534737, 0.015182141214609146, -0.015637751668691635, 0.007921756245195866, -0.006536551285535097, 0.013212724588811398, -0.005691465921700001, -0.0002656966680660844, -0.01083178911358118, 0.02458830736577511, -0.0026987616438418627, 0.008590475656092167, 0.03136368840932846, 0.005809043068438768, 0.012485216371715069, 0.009237149730324745, 0.005592260044068098, 0.0008652938413433731, -0.004747174680233002, -0.002669367240741849, -0.0030110757797956467, -0.02111978456377983, 0.0016874149441719055, -0.0003956744621973485, -0.00360079831443727, 0.007370613515377045, -0.038153763860464096, -0.016093363985419273, -2.935121301561594e-05, 0.00916366372257471, -0.00845820177346468, -0.011000806465744972, 0.005831088405102491, 0.035037972033023834, 0.026366662234067917, 0.010655423626303673, 0.005952340085059404, 0.012000211514532566, -0.0016350563382729888, -0.013660987839102745, -0.01137558277696371, -0.009215104393661022, -0.007396333385258913, 0.022677680477499962, 0.020473109558224678, 0.0018518391298130155, 0.019267944619059563, -0.011625434271991253, -0.0016277077374979854, 0.012198622338473797, -0.005022746045142412, 0.022383738309144974, 0.014182736165821552, 0.00011608440399868414, 0.00012963333574589342, 0.00609563710168004, -0.013455227948725224, 0.008487596176564693, 0.026484237983822823, -0.009802989661693573, 0.005702488590031862, 0.018650665879249573, -0.022471919655799866, -0.0016837406437844038, -0.016828220337629318, -0.004765546415001154, 0.010089583694934845, 0.0013723450247198343, 0.010662771761417389, -0.0009286752319894731, -0.009780943393707275, 0.015005775727331638, 0.012382336892187595, -0.011845891363918781, 0.0008533524232916534, -0.010486406274139881, 0.004331980831921101, 0.007840922102332115, 0.007153830956667662, -0.02880638651549816, -0.0010499266209080815, -0.016049271449446678, -0.013411136344075203, 0.024647096171975136, -0.012632188387215137, 0.009604577906429768, -0.018915213644504547, 0.00027694914024323225, 0.032950978726148605, 0.01342583354562521, -0.002357053104788065, 0.004508346319198608, 0.019841132685542107, 0.0020961789414286613, -0.004170312080532312, 0.00735224224627018, 0.02289813756942749, -0.019106276333332062, 0.013021661899983883, 0.008436155505478382, 0.010993457399308681, 0.0016102548688650131, -0.0018536762800067663, 0.004868426360189915, 0.019076881930232048, 0.002895335666835308, 0.01978234387934208, 0.023809360340237617, 0.006643105298280716, 0.002766735851764679, -0.005507751367986202, -0.025499530136585236, -0.0040821293368935585, -0.005944991484284401, 0.0026491587050259113, -0.008678658865392208, 0.00426584342494607, -0.02195752039551735, -0.0007399089518003166, -0.018827030435204506, -0.011287400498986244, 0.011838543228805065, -0.003251741174608469, -0.0021512932144105434, 0.01621093973517418, 0.018195053562521935, -0.00807607639580965, 0.006172797176986933, 0.007458796259015799, 0.00036329482099972665, 0.001696600578725338, -0.0039572035893797874, -0.008597824722528458, -0.023574205115437508, -0.0013254978694021702, -0.01577002741396427, -0.0027189701795578003, -0.03609616681933403, 0.01210309099406004, -0.0014210293302312493, 0.020517202094197273, -0.02228085696697235, -0.014337055385112762, 0.01214718259871006, 0.011618086136877537, -0.006929699331521988, 0.01878293976187706, -0.025029221549630165, 0.006808448117226362, 0.007153830956667662, -0.012830599211156368, -0.01901809312403202, -0.011500508524477482, 0.00599275715649128, -0.00023997666721697897, 0.01869475655257702, 0.005290968809276819, -0.007253036368638277, -0.006613710895180702, 0.01947370544075966, 0.015270323492586613, 0.006819470785558224, 0.012632188387215137, 0.007278756238520145, 0.0014798179036006331, 0.01869475655257702, 0.018371419981122017, -0.016725340858101845, -0.02319207973778248, -0.00853903591632843, 0.008678658865392208, 0.005342409014701843, -0.0033564583864063025, 0.01133149117231369, -0.012705673463642597, -0.02173706330358982, 0.005764951463788748, -0.018268540501594543, 0.002342355903238058, -0.0006567782256752253, -0.0001674095547059551, 0.0032149984035640955, 0.006911328062415123, 0.020546596497297287, -0.042180780321359634, 0.010545195080339909, 0.00556654017418623, 0.009222452528774738, -0.01245582289993763, 0.008421458303928375, 0.0005580318975262344, 0.013256816193461418, 0.0022633587941527367, -0.009237149730324745, 0.0038506495766341686, 0.010229206643998623, 0.006485111080110073, 0.016343215480446815, -0.008392064832150936, 0.01651958003640175, -0.012389685027301311, 0.012286805547773838, -0.004622249398380518, -0.005298317410051823, 0.005544494371861219, 0.032568853348493576, 0.0004399954923428595, 0.004185009282082319, 0.009707458317279816, -0.00675333384424448, -0.0027630615513771772, 0.02917381376028061, 0.0016176034696400166, 0.001276813680306077, -0.011397629044950008, 0.002553627360612154, -0.022295555099844933, 0.0003304559213574976, 0.013131890445947647, -0.001545036444440484, -0.014873500913381577, 0.020311441272497177, 0.007965847849845886, 0.008788887411355972, 0.020223258063197136, 0.016975192353129387, 0.01800399087369442, 0.006128705572336912, -0.010677468962967396, -0.0035658925771713257, 0.021751761436462402, 0.000500161899253726, 0.015872906893491745, -0.022060399875044823, -0.022369040176272392, 0.0022394759580492973, 0.01638730615377426, 0.020678870379924774, -0.013602199032902718, 0.0043503521010279655, -8.565674215788022e-05, 0.0010012423153966665, 0.01722504384815693, -0.010457011871039867, 0.012470519170165062, 0.0016378120053559542, 0.008061379194259644, 0.0062977224588394165, 0.006202191114425659, -0.026910455897450447, -0.0002251647092634812, -0.0057429056614637375, -0.007175876293331385, -0.008524338714778423, 0.006955419667065144, 0.011963468044996262, -0.004394443705677986, -0.005268923006951809, -0.0039572035893797874, -0.02010568231344223, -0.0036430524196475744, -0.014542816206812859, 0.003165395697578788, 0.029673516750335693, -0.025631804019212723, -0.003336249850690365, 0.021678274497389793, 0.0020208561327308416, 0.005004374776035547, 0.004045386798679829, -0.003562218276783824, -0.00018624027143232524, 0.010302691720426083, -0.0030551671516150236, 0.013220073655247688, -0.005695139989256859, 0.03439129889011383, -0.015138049609959126, 0.0055297971703112125, -0.016798825934529305, -0.016240334138274193, -0.009119573049247265, 0.012360291555523872, 0.009053435176610947, -0.014300312846899033, -0.010971412062644958, 0.01521153561770916, 0.014969032257795334, -0.003677958156913519, 0.003360132686793804, -0.01133149117231369, -0.016725340858101845, 0.0023386816028505564, -0.00985442940145731, 0.01419743336737156, 0.017019283026456833, 0.03350947052240372, 0.007789481896907091, -0.0024305388797074556, 0.0050447918474674225, -0.027748191729187965, 0.0005208297516219318, -0.006485111080110073, -0.015358506701886654, 0.0049308892339468, 0.02693985030055046, -0.00803198479115963, -0.009758898057043552, -0.0017223205650225282, -0.0022468245588243008, 0.009604577906429768, 0.013308255933225155, 0.0021678274497389793, -0.002296427497640252, 0.014719181694090366, -0.0004951097653247416, 0.00010207619925495237, 0.01925324834883213, -0.011500508524477482, -0.019429612904787064, 0.005720859859138727, 0.03462645038962364, 0.004067432135343552, -0.021781155839562416, -0.010927320457994938, -0.008274487219750881, -0.014123947359621525, -0.002948612906038761, 0.00422910088673234, -0.02048780769109726, 0.007907059043645859, 0.026219690218567848, 0.004802288953214884, 0.021090390160679817, 0.002169664716348052, -0.01474857609719038, -0.0006094718701206148, 0.00012641833745874465, 0.014675090089440346, 0.0062242369167506695, -0.013286210596561432, 0.005823739804327488, -0.0012823251308873296, -0.02467649057507515, 0.005540820304304361, 0.030628830194473267, 0.005070511717349291, -0.006338139530271292, -0.0010398223530501127, -0.014719181694090366, -0.00042529834900051355, -0.028659414499998093, 0.007208945229649544, 0.011463765986263752, -0.010919971391558647, -0.016490185633301735, -0.01121391449123621, 0.022765863686800003, -0.017754139378666878, 0.00041794980643317103, -0.006668825168162584, -0.020972812548279762, -0.0020741333719342947, -0.00556654017418623, 0.018503693863749504, -0.0006466739578172565, -0.005889877211302519, 0.006676173768937588, -0.027498340234160423, -0.0010646238224580884, -0.010089583694934845, 0.012000211514532566, -0.0010581937385722995, -0.0006007454358041286, -0.003971900790929794, -0.008340624161064625, 0.01222801674157381, -0.006727613974362612, -0.027145609259605408, 0.0062058656476438046, 0.008443504571914673, -0.0034685239661484957, 0.0019032791024073958, -0.014792666770517826, 0.0046332720667123795, 0.02288343943655491, -0.027498340234160423, -0.004997026175260544, -0.007510236464440823, -0.009678063914179802, -0.013315604999661446, 0.029908671975135803, 0.004148266743868589, -0.01577002741396427, -0.003602635348215699, 0.03159883990883827, -0.009523743763566017, 0.0067092422395944595, 0.008054030127823353, -0.008428807370364666, -0.027762889862060547, 0.008832978084683418, -0.0024893274530768394, -0.007230990566313267, 0.011338840238749981, -0.01155929733067751, 0.008098121732473373, 0.011831194162368774, -0.0353907011449337, 0.01637260988354683, -0.0016295448876917362, 0.015343809500336647, -0.028982751071453094, -0.004927214700728655, -0.01537320390343666, -0.027292581275105476, -0.014057810418307781, 0.005353431683033705, -0.0030165871139615774, 0.015005775727331638, -0.005930294282734394, -0.0035677296109497547, 0.018180357292294502, 0.006356511265039444, -0.018106870353221893, 0.017827626317739487, -0.004530392121523619, -0.0016855777939781547, 0.03203975409269333, -0.011309445835649967, 0.008325926959514618, -0.006690870970487595, 0.006249956786632538, -0.025514228269457817, -0.0006195761379785836, 0.021075692027807236, -0.02522028423845768, 0.02864471822977066, 0.001545036444440484, -0.010736257769167423, -0.024353154003620148, -0.007253036368638277, 0.016313821077346802, 0.003305018413811922, -0.0065438998863101006, 0.011743010953068733, 0.01869475655257702, -0.0045634605921804905, -0.010515800677239895, -0.01175770815461874, -0.0015872906660661101, -0.01693109981715679, -0.012676279060542583, 0.006863562390208244, -0.007569024804979563, -0.0027887814212590456, 0.010030794888734818, -0.002783270087093115, -0.05464395135641098, 0.009332681074738503, 0.01760716922581196, -0.013455227948725224, 0.006139728240668774, -1.4288084457803052e-05, 0.014300312846899033, -0.004188683815300465, -0.014697135426104069, 0.00038442196091637015, 0.023089200258255005, -0.011125731281936169, -0.010978760197758675, -0.0188711229711771, 0.0023203103337436914, 0.022398434579372406, 0.0009837895631790161, -0.017680654302239418, 0.009303286671638489, -0.0012501750607043505, -0.016593066975474358, -0.02770410105586052, -0.007899709977209568, 0.008039332926273346, 0.0015799420652911067, 0.00853168684989214, 0.006238934118300676, 0.008289184421300888, 0.015637751668691635, -0.0034575010649859905, -0.010273298248648643, 0.008899115957319736, 0.00735224224627018, 0.014623650349676609, 0.011662176810204983, -0.014028416015207767, -0.022912833839654922, 0.012735067866742611, -0.010214509442448616, -0.0018224448431283236, -0.002709784312173724, -0.002654670039191842, -0.007921756245195866, -0.0017902948893606663, 0.024044513702392578, 7.796371210133657e-05, -0.004001295194029808, 0.025337861850857735, 0.02041432075202465, -0.008722750470042229, 0.011221262626349926, 0.0008625381742604077, 0.015814118087291718, -0.04900025203824043, 0.0041519408114254475, -0.008752143941819668, -0.01575532928109169, 0.003459338331595063, -0.01947370544075966, 0.03159883990883827, -0.015696540474891663, -0.008840327151119709, -0.004703083541244268, 0.0014338892651721835, 0.0005814554169774055, 0.03274521976709366, 0.009633972309529781, 0.00692602526396513, 0.018459603190422058, 0.019767647609114647, -0.005662071518599987, -0.012441125698387623, 0.0005603283061645925, 0.027292581275105476, -0.009325332939624786, 0.009678063914179802, 0.00041220872662961483, 0.022692376747727394, -0.002417678711935878, 0.010618680156767368, 0.021634183824062347, 0.015314415097236633, 0.012867342680692673, -0.016093363985419273, -0.005467334296554327, -0.0038653467781841755, -0.006136054173111916, 0.01707807183265686, -0.007363264914602041, -0.011919377371668816, -0.0021365960128605366, 3.473346441751346e-05, -0.010420269332826138, -0.01885642483830452, -0.010721560567617416, -0.00908282957971096, -0.019370824098587036, -0.004997026175260544, 0.016343215480446815, -0.007017882075160742, 0.034420691430568695, -0.004710432142019272, 0.021046297624707222, -0.028821082785725594, 0.013227421790361404, -0.0031121184583753347, -0.02483815886080265, 0.012073696590960026, -0.012727719731628895, 0.02458830736577511, 0.01577002741396427, 0.0074734934605658054, 0.008877069689333439, -0.020473109558224678, -0.009553138166666031, 0.008766841143369675, 0.016504883766174316, 0.023074502125382423, -0.006389579735696316, -0.012911433354020119, -9.983718337025493e-05, 0.026484237983822823, 0.013675685040652752, 0.011904680170118809, -0.002088830340653658, -0.01024390384554863, 0.000918111705686897, -0.015872906893491745, -0.006455716677010059, 0.007649858947843313, 0.02569059282541275, -0.00582006573677063, 0.014667741023004055, -0.014814713038504124, -0.0044936491176486015, -0.0030441442504525185, -0.006859887856990099, 0.009340030141174793, -0.0012446637265384197, -0.017592471092939377, -0.00034423446049913764, -0.025675896555185318, -0.004423837643116713, 0.00039521517464891076, -0.01900339685380459, -0.028233198449015617, -0.004846380557864904, 0.00981768686324358, 0.0008097203099168837, -0.003758792532607913, 0.008054030127823353, 0.011052246205508709, 0.00033137446735054255, 0.002542604459449649, 0.01202960591763258, -0.0006159018375910819, -0.023706478998064995, -0.0005855889758095145, -0.002827361458912492, -0.008825629949569702, -0.006573293823748827, -0.009545790031552315, -0.0098617784678936, -0.009141618385910988, -0.017592471092939377, -0.009582532569766045, 0.0012722208630293608, 0.0023441931698471308, 0.018356721848249435, -0.01377121638506651, -0.006867236457765102, -0.006540225353091955, 0.005368128884583712, -0.0062977224588394165, 0.003788186702877283, -0.012426428496837616, 0.023779965937137604, -0.0178570207208395, -0.003672446822747588, 0.012698325328528881, -0.006639431230723858, 0.011750360019505024, 0.01261749118566513, 0.03002624772489071, -0.02476467378437519, 0.002755712950602174, -0.006569619756191969, -0.015461387112736702, 0.02220737189054489, 0.015505477786064148, -0.007738042157143354, -0.005573888774961233, 0.0037532809656113386, 0.009215104393661022, 0.021898731589317322, -0.006437345407903194, 0.015725934877991676, 0.02026735059916973, -0.01257339958101511, -0.01032473798841238, -0.012095742858946323, 0.000142952601891011, -0.0035842638462781906, 0.00989852100610733, 0.021090390160679817, -0.009024041704833508, -0.0004845461808145046, -0.0006751496694050729, -0.007796830497682095, 0.007649858947843313, 0.016255032271146774, -0.006172797176986933, -0.009494349360466003, 0.037918608635663986, -0.013220073655247688, 0.007444099057465792, 0.008289184421300888, 0.026748787611722946, -0.01319802738726139, -0.01754838041961193, 0.013264165259897709, 0.007818875834345818, 0.004839031957089901, -0.00673128804191947, -0.013014313764870167, -0.012448473833501339, -0.012308850884437561, -0.05911187827587128, -0.017724744975566864, 0.003758792532607913, 0.00853903591632843, 0.006180145777761936, 0.008267139084637165, 0.0025756729301065207, -0.008303881622850895, 0.02166357822716236, -0.011221262626349926, 0.00709871668368578, -0.01295552495867014, -0.01397697627544403, -0.01304370816797018, -0.02086993306875229, -0.003305018413811922, 0.01778353378176689, 0.02717500366270542, -0.003161721397191286, 0.0018849076004698873, -0.020781749859452248, 0.019459007307887077, -0.031010955572128296, -0.002311124699190259, 0.013006964698433876, -0.012757114134728909, -0.003902089549228549, -0.005849460139870644, -0.009097526781260967, -0.020311441272497177, -0.008223047479987144, 0.00558858597651124, 0.0032719499431550503, 0.008913813158869743, 0.03212793916463852, 0.008201002143323421, -0.027072124183177948, -0.006668825168162584, 0.0012804879806935787, -0.001257523661479354, 0.022442525252699852, 0.001715890597552061, 0.0014807364204898477, 0.0011638294672593474, -0.019267944619059563, 0.019679464399814606, 0.01731322519481182, -0.010273298248648643, 0.02111978456377983, 0.013396439142525196, -0.012000211514532566, -0.009193058125674725, -0.014550164341926575, 0.009332681074738503, -0.0015643263468518853, -0.007348567713052034, -0.007862967438995838, -0.03353886306285858, -0.012984919361770153, 0.005933968350291252, 0.01621093973517418, 0.003920461051166058, 0.019223853945732117, 0.01470448449254036, 0.008979950100183487, 0.01978234387934208, 0.0028732900973409414, 0.001943696173839271, 0.03151065856218338, 0.04138713330030441, -0.0018224448431283236, -0.007084019482135773, -0.01152255479246378, 0.020678870379924774, -0.011088988743722439, 0.02088462933897972, 0.015740633010864258, -0.0027924557216465473, -0.014792666770517826, 0.00626832852140069, -0.011963468044996262, -0.007275082170963287, -0.003887392347678542, 0.006260979920625687, -0.0021072018425911665, 0.012882038950920105, 0.001483492087572813, -0.0006090125534683466, -0.00989852100610733, -0.008370018564164639, -0.0009236230980604887, 0.0015330949099734426, -0.01385205052793026, 0.01447667833417654, 0.010736257769167423, 0.007752738893032074, -0.01638730615377426, -0.013756519183516502, 0.0020263674668967724, -0.001715890597552061, -0.009126921184360981, 0.005893551278859377, -0.021942824125289917, 0.00934737827628851, 0.008553733117878437, 0.00853903591632843, -0.01210309099406004, -0.007451447658240795, -0.0069921622052788734, 0.0070472764782607555, 0.005698814522475004, 0.01559366099536419, 0.006044196896255016, 0.022442525252699852, 0.015108655206859112, 0.01303635910153389, -0.013668335974216461, 0.017592471092939377, -0.022707074880599976, -0.0029339157044887543, 0.016269728541374207, 0.008303881622850895, 0.012551354244351387, -0.0353907011449337, 0.00861987005919218, -0.00039774124161340296, 0.01566714607179165, 0.00425114668905735, -0.02732197567820549, -0.01210309099406004, -0.007510236464440823, 0.03436190262436867, -0.00454141478985548, 0.0015330949099734426, -0.006797425448894501, -0.020061589777469635, -0.010141023434698582, 0.03397977724671364, 0.004530392121523619, -0.001956556225195527, 0.017210345715284348, 0.002583021530881524, 0.02451482228934765, 0.012250063009560108, -0.02616090141236782, -0.024485427886247635, -0.002202733187004924, 0.010287994518876076, 0.003545684041455388, 0.01214718259871006, -0.015887603163719177, -0.00865661259740591, 0.006000105757266283, 0.01160338893532753, 0.006283025722950697, 0.018224447965621948, -0.0050484659150242805, -0.005206460133194923, -0.008392064832150936, -0.02150190994143486, -0.012793856672942638, -0.0031562098301947117, 0.00989852100610733, 0.0012951850658282638, -0.004486300516873598, 0.000837736704852432, 0.0004503294185269624, 0.0076719047501683235, -0.0333624966442585, -0.014851455576717854, 0.009758898057043552, 0.0170045867562294, 0.0012437450932338834, 0.01311719324439764, -0.003139675594866276, -0.027042729780077934, 0.002028204733505845, -0.0015422806609421968, 0.005573888774961233, -0.023926936089992523, 0.0010536009212955832, 0.01738671213388443, -0.01760716922581196, -0.014888198114931583, -0.009626624174416065, -0.04106379672884941, 0.014094552956521511, -0.003124978393316269, 0.007796830497682095, 0.0020741333719342947, 0.018724150955677032, 0.0034428040962666273, -0.0007867560489103198, 0.0034538269974291325, -0.019503099843859673, -0.0007986974669620395, -0.002033716067671776, -0.017577774822711945, 0.016798825934529305, -0.006823145318776369, 0.008370018564164639, -0.002110876142978668, -0.01638730615377426, 0.00023446524573955685, -0.010236554779112339, -0.0020355533342808485, -0.008002590388059616, -0.006757007911801338, -0.010912623256444931, -0.014836758375167847, -0.023309657350182533, -0.0023056131321936846, 0.03339189291000366, 0.008171607740223408, -0.011287400498986244, 0.022457223385572433, 0.012352942489087582, 0.001709460630081594, -0.008090773597359657, -0.0029173814691603184, 0.01039822306483984, -0.015049867331981659, -0.005897225812077522, -0.004280540626496077, -0.004273192025721073, 0.016181547194719315, -0.008796235546469688, -0.004842706024646759, 0.020605383440852165, 0.0031157927587628365, -0.0026730415411293507, 0.007436750456690788, -0.004879449028521776, -0.0030827242881059647, 0.01316128484904766, 0.014087204821407795, -0.0025848587974905968, -0.010780349373817444, -0.0033564583864063025, -0.01024390384554863, 0.002057598903775215, 0.006988488137722015, -0.01214718259871006, 0.009295938536524773, -0.005478357430547476, 6.77446078043431e-05, -0.005728208459913731, -0.005412220023572445, -0.006554922554641962, 0.005706163123250008, -0.019855830818414688, 0.02095811627805233, -0.031481266021728516, 0.04523778334259987, 0.0042952378280460835, -0.003817580873146653, 0.008744795806705952, 0.012014908716082573, 0.019929315894842148, 0.028512442484498024, -0.025661198422312737, -0.004607552196830511, 0.014425238594412804, -0.0064887856133282185, 0.008164258673787117, -0.021090390160679817, 0.006018477026373148, -0.008098121732473373, -0.0031102814245969057, -0.004585506394505501, 0.0029173814691603184, 0.010633377358317375, -0.012499913573265076, -0.030599435791373253, -0.009215104393661022, -0.008171607740223408, -0.005522448569536209, -0.018812334164977074, 0.01894460804760456, 0.010655423626303673, 0.005151345860213041, 0.0035126153379678726, -0.012948176823556423, 0.012984919361770153, 0.014498724602162838, 0.008913813158869743, -0.018106870353221893, 0.0037955353036522865, -0.018680060282349586, 0.007532281801104546, -0.0022651960607618093, 0.002812664257362485, 0.01308045070618391, 0.018106870353221893, -0.002729992847889662, -0.0010903438087552786, 0.0330391600728035, -0.004354026634246111, -0.0037073525600135326, 0.006889282260090113, -0.008810932748019695, -0.028145015239715576, 0.007205270696431398, 0.014792666770517826, 0.009802989661693573, -0.016504883766174316, -0.014630998484790325, -0.0340091735124588, 0.003264601342380047, 0.01590230129659176, -0.034273721277713776, -0.01346257608383894, 0.01653427816927433, 0.002904521534219384, 0.0033013441134244204, 0.012411731295287609, 0.003463012631982565, -0.004548763390630484, 0.01778353378176689, 0.0005405790288932621, -0.003788186702877283, -0.01311719324439764, -0.0065622711554169655, 0.01606396958231926, 0.016034575179219246, 0.009148966521024704, 0.0029890299774706364, -0.002781432820484042, -0.008935858495533466, 0.014212130568921566, 0.008590475656092167, 0.00692602526396513, -0.023147989064455032, -0.012404382228851318, -0.02886517532169819, 0.005665745586156845, -0.012808553874492645, -0.012521959841251373, -0.023383142426609993, -0.020208561792969704, 0.010001400485634804, -0.012022256851196289, 0.0011675037676468492, -0.01559366099536419, 0.019988104701042175, 0.00807607639580965, 0.030246704816818237, 0.013330302201211452, 0.019517796114087105, -0.010104280896484852, -0.003407898359000683, -0.013712427578866482, 0.008002590388059616, 0.01528502069413662, -0.008781538344919682, -0.005511425901204348, 0.00383227807469666, 0.029938064515590668, 0.01978234387934208, 0.007102390751242638, 0.00018807740707416087, -0.008671309798955917, 0.013403787277638912, 0.00762781361117959, -0.02810092270374298, -0.001928999088704586, 0.004534066189080477, -0.013910839334130287, 0.003277461277320981, -0.014682438224554062, -0.0007605767459608614, -0.007153830956667662, -0.00119873508810997, 0.004357700701802969, 0.02469118870794773, -0.011471114121377468, 0.01036148052662611, -0.016166849061846733, 0.011360885575413704, 0.007139133755117655, 0.048559337854385376, 0.0007371532265096903, 0.020223258063197136, -0.010287994518876076, -0.02311859466135502, 0.0006260061054490507, 0.013822656124830246, 0.01644609495997429, -0.016637157648801804, -0.011500508524477482, 0.01172096561640501, 0.004071106668561697, 0.013205376453697681, 0.016019877046346664, 0.0027612242847681046, 0.007050951011478901, 0.009876474738121033, -0.006551248021423817, -0.004574483260512352, 0.018518390133976936, 0.003069864120334387, -0.000964499544352293, 0.002970658475533128, -0.015387901104986668, 0.00981768686324358, 0.01707807183265686, 0.003293995512649417, -0.029129723086953163, 0.002511373022571206, 0.008098121732473373, 0.022633589804172516, 0.008832978084683418, -0.018577178940176964, 0.021296149119734764, -0.0006195761379785836, 0.014506072737276554, 0.008715401403605938, 0.00904608704149723, -0.01385205052793026, 0.005210134666413069, -0.016828220337629318, 0.0011665851343423128, 0.016475489363074303, 0.006437345407903194, -0.02723379246890545, -0.013455227948725224, 0.0038359523750841618, 0.009406167082488537, -0.027586523443460464, -0.0034281068947166204, 0.011809148825705051, 0.003292158478870988, -0.003982923924922943, -0.011147777549922466, 0.01940021850168705, -0.0090093445032835, -0.009200407192111015, -0.021531304344534874, -0.0028714528307318687, -0.01133149117231369, 0.006665151100605726, -0.005074186250567436, 0.006147076841443777, 0.013073102571070194, -0.013073102571070194, -0.00700685940682888, -0.008340624161064625, 0.0039902725256979465, -0.009340030141174793, -0.01978234387934208, -0.00823039561510086, -0.01521153561770916, 0.012801204808056355, -0.0008744795923121274, 0.019106276333332062, -0.006044196896255016, -0.017665956169366837, -0.011566645465791225, -0.019532492384314537, -0.005893551278859377, -0.010060189291834831, 0.0014697135193273425, -0.00519911153241992, -0.0020226933993399143, -0.007076670881360769, 0.0070472764782607555, 0.015461387112736702, 0.000557113322429359, 0.010618680156767368, 0.02039962448179722, -0.024823462590575218, 0.00036903590080328286, -8.525486919097602e-05, 0.023618297651410103, -0.0028420586604624987, 0.0384771004319191, -0.012705673463642597, -0.0030331213492900133, 0.01296287402510643, 0.005911923013627529, 0.002840221393853426, -0.004478951916098595, -0.004647969268262386, 0.0004004969378001988, -0.0007628732128068805, -0.013741821981966496, -0.015872906893491745, -0.025014525279402733, 0.007782133296132088, 0.010479058139026165, -0.0023386816028505564, 0.00043425444164313376, -0.015196838416159153, 0.02280995436012745, 0.011853239499032497, 0.006319768261164427, 0.019899921491742134, 0.009523743763566017, 0.019429612904787064, 0.006977465003728867, 0.012294153682887554, 0.01338909100741148, 0.022486617788672447, 0.002500350121408701, 0.0020686218049377203, 0.011324143037199974, -0.00348138390108943, -0.011147777549922466, -0.007278756238520145, 0.026440147310495377, -0.006507156882435083, -0.017445500940084457, 0.0039572035893797874, 0.017886413261294365, -0.01486615277826786, -0.0038616724777966738, 0.02538195252418518, 0.0051697175949811935, 0.004196032416075468, 0.011360885575413704, -0.007554327603429556, 0.02545543946325779, 0.002061273204162717, -0.01521153561770916, 0.019503099843859673, 0.011515205726027489, -0.007488190662115812, 0.024088606238365173, -0.003251741174608469, -0.0021365960128605366, -0.022075098007917404, -0.0023625646717846394, -0.022560102865099907, -0.006220562849193811, 0.0020741333719342947, 0.0023772616405040026, -0.014535467140376568, 0.016328517347574234, -0.006110334303230047, -0.009802989661693573, 0.004192357882857323, -0.002810827223584056, 0.018650665879249573, 0.026190295815467834, 0.013866747729480267, -0.006551248021423817, -0.004126220941543579, -0.0004978654906153679, -0.02251601219177246, 0.013374393805861473, -0.010493754409253597, -0.015505477786064148, -0.00989852100610733, 0.015652449801564217, -0.004916192032396793, 0.024117998778820038, 0.007818875834345818, 0.01521153561770916, -0.016416700556874275, -0.015138049609959126, 0.009148966521024704, 0.024000423029065132, 0.0065622711554169655, 0.002750201616436243, 0.0027887814212590456, -0.0018398977117612958, 0.0018793962663039565, 0.0007233746582642198, -0.003817580873146653, -0.0001640797418076545, 0.014175387099385262, 0.0075984192080795765, -0.0022909159306436777, -0.00738898478448391, -0.028203804045915604, 0.018518390133976936, 0.0013117193011566997, -0.022075098007917404, -0.025793472304940224, -0.004857403226196766, 0.015725934877991676, 0.015946391969919205, -0.0011041222605854273, -0.005250551737844944], "ad557b52-361c-4391-ac61-5bb82b32a98c": [-0.03801972419023514, -0.020342126488685608, -0.010865847580134869, 0.04291902482509613, -0.048677850514650345, -0.006811747793108225, -0.008795821107923985, -0.0006030115764588118, -0.015070364810526371, 0.05902082100510597, 0.01200472004711628, 0.013422938995063305, 0.0001633995707379654, 0.006270962301641703, 0.007348951417952776, -0.023579677566885948, -0.015485802665352821, 0.018966885283589363, -0.01123114675283432, 0.00702662905678153, 0.07145530730485916, -0.022691499441862106, -0.018780654296278954, 0.01522794459015131, 0.020413754507899284, -0.02310693822801113, -0.015285246074199677, -0.011875791475176811, -0.054665885865688324, 0.004208098631352186, 0.006281706038862467, 0.008817309513688087, 0.018551446497440338, 0.020628636702895164, -0.013831214047968388, -0.036701783537864685, -0.008430522866547108, 0.01434693019837141, -0.012828432954847813, 0.003454222111031413, -0.004319120664149523, 0.03406590223312378, -0.009454791434109211, 0.001896330388262868, -0.033836692571640015, -0.002200745977461338, -0.02650206722319126, 0.0005224309279583395, 0.008144013583660126, -0.020284825935959816, 0.02366562932729721, 0.032604705542325974, -0.006811747793108225, -0.0009204096277244389, 0.0389365516602993, 0.0017503899289295077, -0.010679616592824459, 0.10979018360376358, 0.016030170023441315, -0.06091177836060524, -0.017548665404319763, -0.03486812487244606, 0.029367156326770782, 0.0074134161695837975, 0.010385945439338684, 0.004738139919936657, 0.0004866173549089581, 0.054350726306438446, -0.014490184374153614, 0.023536700755357742, 0.004208098631352186, -0.005275344010442495, -0.061484795063734055, 0.0314013697206974, 0.002386976731941104, 0.004877813160419464, 0.01481250673532486, -0.009669673629105091, -0.004064843989908695, -0.022662848234176636, 0.007950619794428349, -0.017520016059279442, 0.029911521822214127, 0.01863740012049675, 0.024209996685385704, 0.014490184374153614, -0.02962501347064972, -0.041515130549669266, -0.027820007875561714, -0.015586080960929394, 0.026487741619348526, 0.015815287828445435, 0.001982283079996705, 0.011410214006900787, -0.002322512213140726, 0.014662089757621288, -0.021029748022556305, 0.0076927621848881245, 0.005135670769959688, -0.029180925339460373, -0.014927110634744167, 0.016216401010751724, -0.029080646112561226, 0.00666491175070405, -0.009762788191437721, 0.004243912175297737, 0.024081068113446236, 0.057530973106622696, -0.012405832298099995, -0.018866606056690216, 0.01312926784157753, -0.05724446475505829, 0.032690659165382385, -0.002267001196742058, -0.03535519167780876, -0.015385524369776249, -0.023952139541506767, -0.004437305498868227, -0.02128760702908039, -0.019482601433992386, 0.02511250041425228, -0.04678689315915108, 0.03329232707619667, 0.006378402933478355, -0.008867448195815086, 0.04773237183690071, 0.009598045609891415, 0.032633356750011444, 0.04157243296504021, 0.006106219720095396, 0.010543525218963623, -0.02011292055249214, 0.025441985577344894, -0.029481759294867516, -0.013107779435813427, 0.031114859506487846, 0.01727648265659809, 0.08027977496385574, -0.01223392691463232, 0.00964102242141962, -0.010471898131072521, -0.019754784181714058, -0.021373558789491653, 0.004136471543461084, 0.008036572486162186, -0.011453190818428993, -0.028550606220960617, 0.03973877429962158, -0.06635544449090958, 0.014783855527639389, -0.033435579389333725, 0.0019375160336494446, -0.0384494848549366, -0.014031770639121532, 0.048276737332344055, -0.010228365659713745, -0.004824092611670494, 0.034696221351623535, -0.016746440902352333, 0.05907812342047691, 0.0016912975115701556, -0.031028907746076584, -0.008588102646172047, 0.022132808342576027, 0.01638830453157425, 0.01941097341477871, 0.02438190206885338, 0.03687368705868721, -0.003507942659780383, 0.01561473123729229, 0.013430101796984673, 0.005740921013057232, 0.048276737332344055, -0.00440507335588336, -0.003241131315007806, -0.033808041363954544, 0.03736075386404991, 0.009426141157746315, 0.03973877429962158, -0.018408192321658134, -0.02181764878332615, -0.005952220875769854, 0.024209996685385704, 0.010930311866104603, -0.034724872559309006, 0.005436505191028118, 0.00641779787838459, 0.0028471816331148148, 0.024768689647316933, 0.02962501347064972, -0.015815287828445435, -0.022533919662237167, 0.013580518774688244, 0.019941015169024467, -0.005354133900254965, -0.030971605330705643, -0.004630699288100004, -0.02625853568315506, 0.010199714452028275, 0.04475267976522446, -0.002290280070155859, -0.014912785030901432, -0.023063961416482925, 0.04970928281545639, -0.003993216902017593, 0.011496166698634624, -0.005318320356309414, -0.06841830909252167, 0.028923066332936287, -0.0020073524210602045, 0.06944974511861801, -0.03572765365242958, 0.03314907103776932, -0.004286888521164656, -0.015099016018211842, 0.013981631025671959, -0.006339007988572121, 0.014826832339167595, 0.00647151842713356, 0.010844359174370766, -0.03134406730532646, -0.037905119359493256, 0.004054100252687931, 0.007528019603341818, -0.03489677608013153, -0.02190360054373741, -0.04122862219810486, 0.023407772183418274, 0.01789247617125511, -0.03329232707619667, 0.025599565356969833, -0.0030387842562049627, 0.06446448713541031, -0.039051152765750885, -0.02299233339726925, 0.00941181555390358, 0.006822491530328989, -0.0035025705583393574, -0.013107779435813427, -0.02527008019387722, -0.00012904089817311615, 0.008724194020032883, -0.029768267646431923, -0.030140729621052742, -0.020599985495209694, 0.015500128269195557, -0.0005233262781985104, 0.05294683203101158, -5.3412633860716596e-05, 0.010873010382056236, -0.00870270561426878, 0.03521193563938141, -0.021215979009866714, 0.025470634922385216, -0.02687452919781208, 0.03538384288549423, 0.037045594304800034, -0.014046095311641693, -0.012047696858644485, 0.025441985577344894, 0.005167902912944555, 0.003056691261008382, -0.00834457017481327, 0.02027050033211708, 0.02243364229798317, -0.053491201251745224, 0.037876468151807785, -0.018723351880908012, 0.02968231588602066, 0.038306232541799545, 0.021674392744898796, -0.015184968709945679, -0.01335847470909357, 0.042260054498910904, -0.02668829821050167, -0.03332097828388214, -0.00823712907731533, 0.015514453873038292, 0.015915565192699432, -0.0012355693615972996, -0.012878572568297386, -0.034667570143938065, 0.04575546085834503, 0.0007825272623449564, 0.03249010071158409, 0.006854723673313856, -0.024453530088067055, -0.026831552386283875, -0.019969666376709938, -0.01393149234354496, -0.0017217390704900026, -0.0072343479841947556, 0.025040872395038605, 0.05254571884870529, -0.0014012072933837771, 0.0066219354048371315, -0.012405832298099995, -0.011582119390368462, 0.004190191626548767, -0.01984073780477047, -0.02428162470459938, -0.012871409766376019, 0.019110139459371567, -0.030656445771455765, 0.02706076018512249, -0.012735317461192608, 0.031802479177713394, 0.026588020846247673, 0.005941477138549089, 0.018809305503964424, 0.03085700236260891, -0.017262157052755356, -0.027963262051343918, -0.014769530855119228, -0.01946827583014965, 0.011703886091709137, -0.048620548099279404, 0.006510913372039795, 0.000855049816891551, -0.02037077769637108, -0.021244630217552185, 0.01805005595088005, -0.045096490532159805, 0.046299826353788376, 0.03286256268620491, -0.05641359090805054, 0.013372800312936306, -0.03618606552481651, -0.025126824155449867, -0.007130488753318787, -0.019941015169024467, 0.0037711726035922766, -0.013315497897565365, 0.0050604622811079025, -0.009168283082544804, -0.009418978355824947, -0.05572596937417984, -0.02527008019387722, -0.013122105039656162, -0.012176625430583954, -0.030656445771455765, -0.01021404005587101, 0.019153116270899773, -0.017176205292344093, -0.012627877295017242, -0.030369937419891357, 0.005282506812363863, 0.002660950878635049, 0.0189812108874321, -0.0032035268377512693, 0.000857735809404403, -0.009977670386433601, 0.021803323179483414, -0.014468695968389511, -0.0007100047077983618, -0.029825570061802864, -0.01900986209511757, 0.006596866063773632, 0.01010659895837307, 0.02219010889530182, -0.04214544966816902, -0.04369259625673294, -0.013200894929468632, -0.045067839324474335, 0.01607314497232437, 0.030369937419891357, 0.002598277060315013, -0.008946238085627556, -0.0036171739920973778, 0.0019231905462220311, -0.02628718502819538, -0.005726595409214497, -0.0015167061937972903, 0.01780652441084385, -0.016331003978848457, -0.045125141739845276, 0.04724530875682831, 0.013444427400827408, -0.0075136939994990826, 0.014103397727012634, 0.01200472004711628, 0.0024299530778080225, -0.023149913176894188, 0.029854221269488335, 0.03369344025850296, 0.0066434238106012344, 0.011997557245194912, 0.006539564114063978, -0.04698744788765907, 0.0013394288253039122, -0.023192889988422394, 0.004369259811937809, -0.03045588918030262, 0.02021319791674614, -0.00011314860603306442, -0.005626317113637924, 0.0041579594835639, -0.012269740924239159, 0.02342209778726101, 0.0041687036864459515, -0.012319879606366158, -0.010579339228570461, -0.012269740924239159, 0.004791860468685627, -0.0036959638819098473, -0.031487319618463516, 0.0014235908165574074, -0.0056406427174806595, 0.01607314497232437, 0.011976069770753384, -5.4559786804020405e-05, 0.00046960587496869266, 0.043434739112854004, 0.027476197108626366, 0.004455212503671646, 0.013773912563920021, -0.022204434499144554, 0.0896199643611908, -0.02168871834874153, 0.0001936173066496849, 0.017720570787787437, 0.006095475517213345, -0.029238225892186165, 0.0292525514960289, -0.025370357558131218, 0.035040032118558884, 0.01081570889800787, 0.006861886475235224, -0.0013671843335032463, -0.01721918024122715, 0.06131289154291153, 0.04162973538041115, -0.016746440902352333, -0.0021846299059689045, -0.018107358366250992, -0.010994776152074337, 0.05303278565406799, 0.01450450997799635, 0.0008044631103985012, -0.010264178737998009, -0.007678436581045389, 0.0028829951770603657, 0.009984833188354969, 0.00792913231998682, -0.06578242778778076, -0.03956687077879906, -0.01866605132818222, 0.01888093166053295, 0.018336566165089607, 0.0068332357332110405, -0.005837617442011833, 0.023164238780736923, -0.05059745907783508, -0.01081570889800787, -0.020814867690205574, 0.006847561337053776, 0.013114942237734795, -0.004809767007827759, 0.0074134161695837975, -0.03291986510157585, 0.002028840593993664, 0.039394963532686234, 0.030742397531867027, -0.020728914067149162, 0.012950199656188488, -0.03842083364725113, -0.006944257766008377, -0.018522797152400017, 0.008824472315609455, 0.025570914149284363, -0.050740715116262436, 0.008867448195815086, -0.017333785071969032, 0.029395805671811104, 0.00037313299253582954, -0.007434904109686613, -0.023966463282704353, -0.0052717626094818115, -0.015113340690732002, -0.00953358132392168, -0.02721833996474743, -0.0157006848603487, -0.008559451438486576, -0.0015820659464225173, -0.006793840788304806, -0.004634280223399401, -0.04251791164278984, 0.008029409684240818, -0.02029915153980255, 0.026888854801654816, 0.008910425007343292, 0.00839470885694027, -0.020471056923270226, 0.03312041983008385, -0.010020646266639233, -0.013960142619907856, 0.009053679183125496, -0.03200303763151169, 0.002327884314581752, -0.005400691647082567, 0.0034148271661251783, 7.436918531311676e-05, -0.0024514412507414818, -0.025227103382349014, -0.0166318379342556, 0.027046434581279755, -0.003244712483137846, 0.025785794481635094, 0.026702623814344406, -0.027161037549376488, -0.019367996603250504, 0.004175866488367319, -0.032690659165382385, 0.005998778622597456, 0.01986938714981079, 0.012090672738850117, -0.013122105039656162, -0.018279263749718666, 0.026559369638562202, 0.03400859981775284, -0.020514031872153282, 0.002290280070155859, -0.024081068113446236, -0.006510913372039795, -0.004483863245695829, 0.008931913413107395, -0.007871829904615879, -0.0067651900462806225, 0.035928208380937576, -0.03200303763151169, -0.010701104998588562, 0.0037711726035922766, -0.015528778545558453, 0.022949358448386192, 0.041028063744306564, 0.03122946247458458, -0.02604365348815918, -0.0071125817485153675, 0.0008384860120713711, -0.0016339956782758236, 0.017047274857759476, 0.022147133946418762, 0.019239068031311035, -0.017204856500029564, -0.00580896669998765, 0.004770372062921524, 0.030140729621052742, -0.011639421805739403, -0.00740625336766243, 0.023465074598789215, -0.026129605248570442, 0.02042808011174202, -0.014683578163385391, -0.0013027198147028685, 0.022720150649547577, 0.0014817878836765885, -0.04291902482509613, 0.0029707385692745447, -0.02259122207760811, -0.014375580474734306, 0.00451967678964138, 0.001561473123729229, 0.014561811462044716, 0.006987234111875296, -0.013644983060657978, -0.025656865909695625, -0.049881190061569214, 0.0292525514960289, -0.003642243565991521, 0.022175783291459084, 0.000779393594712019, 0.0021810485050082207, 0.03807702288031578, 0.03604281321167946, 0.011811327189207077, -0.002232978353276849, 0.013809725642204285, -0.014712228439748287, -0.01968315616250038, -0.0019643763080239296, 0.024453530088067055, -0.023551026359200478, 0.018709026277065277, -0.04091346263885498, -0.0006039069266989827, 0.0027272060979157686, -0.05251707136631012, -0.02486896701157093, -0.00023883196990936995, 0.012155137024819851, -0.01931069605052471, 0.03177383169531822, -0.015356873162090778, 0.02249094285070896, -0.02024184912443161, 0.019110139459371567, -0.013960142619907856, 0.006650586146861315, -0.000686278217472136, 0.014855483546853065, 0.017047274857759476, 0.0023905581329017878, 0.00600236002355814, -0.014103397727012634, -0.029209576547145844, 0.014683578163385391, 0.005436505191028118, 0.014475858770310879, -0.032260894775390625, -0.007477880455553532, -0.01817898638546467, -0.004401491954922676, 0.011496166698634624, -0.003090714104473591, 0.010457572527229786, -0.012291229330003262, -0.005468737334012985, 0.019138790667057037, 0.01762029342353344, 0.009991995990276337, 0.027332942932844162, -0.029567711055278778, 0.03171652927994728, -0.0182935893535614, 0.04056965187191963, 0.047503165900707245, -0.030255332589149475, 0.01229839213192463, 0.0021792578045278788, 0.027605125680565834, -0.0025015801656991243, -0.021831972524523735, 0.0018255985341966152, -0.004741721320897341, 0.0069227698259055614, -0.013172243721783161, -0.0035992672201246023, -0.004877813160419464, 0.005167902912944555, -0.008760008029639721, 0.004340609069913626, -0.012090672738850117, -0.0208864938467741, 0.036214716732501984, -0.009404652751982212, 0.014783855527639389, 0.012319879606366158, 0.008595265448093414, 0.032719310373067856, 0.017233505845069885, -0.04062695428729057, 0.008537963032722473, -0.0025409753434360027, 0.018766328692436218, 0.014576137065887451, -0.01582961343228817, -0.024109719321131706, 0.02527008019387722, 0.01617342419922352, -0.0007314928807318211, 0.011761187575757504, -0.016531560570001602, 0.03501138091087341, 0.002782717114314437, 0.04062695428729057, -0.006564633920788765, -0.014282465912401676, 0.012076347135007381, 0.02270582504570484, 0.010206877253949642, 0.019726132974028587, 0.007563833147287369, -0.018909582868218422, -0.0069550019688904285, 0.014970086514949799, 0.0042009358294308186, 0.029510410502552986, -0.0015140201430767775, 0.021459512412548065, -0.018895257264375687, -0.020227523520588875, -0.035125982016325, 0.0007458183099515736, -0.0022132806479930878, -0.01582961343228817, -0.023837534710764885, -0.026545044034719467, 0.04681554436683655, -0.06200051307678223, -0.017720570787787437, 0.01385270245373249, 0.006245892494916916, -0.00770708778873086, 0.008036572486162186, -0.012491784989833832, -0.026129605248570442, -0.0007100047077983618, -0.00949060544371605, 0.01860874891281128, -0.012183788232505322, -0.005293250549584627, 0.01697564870119095, 0.00971981231123209, -0.02502654679119587, 0.032232243567705154, 0.007399090565741062, -0.02117300219833851, -0.011116542853415012, -0.0292525514960289, -0.000886386726051569, -0.005185809917747974, -0.006768771447241306, 0.00110126833897084, 0.03693098947405815, 0.0015829612966626883, -0.010393108241260052, -0.020743239670991898, 0.008258617483079433, -0.01545715145766735, 0.023221541196107864, -0.007506531663239002, 0.011159518733620644, 0.004895719699561596, -0.04094211384654045, 0.0005774943856522441, 0.018250612542033195, -0.018537120893597603, -0.010622315108776093, -0.015141991898417473, 0.004931533243507147, 0.022533919662237167, -0.023780234158039093, -0.020843517035245895, -0.009268560446798801, 0.02438190206885338, -0.024023765698075294, 0.022605547681450844, 0.004910045303404331, -0.012262578122317791, 0.01641695573925972, 0.02141653560101986, -0.0016393677797168493, 0.024553807452321053, -0.03397994861006737, 0.008308756165206432, 0.0026752762496471405, 0.014783855527639389, 0.009891717694699764, -0.011030590161681175, 0.026029327884316444, 0.03478217124938965, -0.02203252911567688, 0.008774332702159882, 0.013802562840282917, -0.012656527571380138, 0.013243870809674263, 0.02317856438457966, -0.0056048291735351086, 0.016545886173844337, 0.03936631232500076, -0.01743406243622303, 0.0009723393595777452, -0.04718800634145737, -0.027447545900940895, 0.006353333592414856, 0.011940255761146545, 0.01903851144015789, 0.007606809493154287, 0.01545715145766735, -0.009383164346218109, 0.03246144950389862, 0.045440301299095154, 0.01759164221584797, 0.007778714876621962, -0.0023046054411679506, -0.05561136454343796, -0.015127666294574738, -0.01032148115336895, -0.0020736076403409243, -0.0034667570143938065, -0.005450830794870853, -0.05483778938651085, 0.0240667425096035, -0.035870905965566635, 0.004770372062921524, -0.015629056841135025, 0.008466335944831371, 0.029882872477173805, 0.02128760702908039, 0.005823292303830385, 0.010257015936076641, -0.00023480293748434633, -0.005504550877958536, -0.011918767355382442, 0.02999747544527054, -0.016918346285820007, 0.04397910460829735, 0.0022849079687148333, -0.023651303723454475, 0.000885491375811398, -0.0067293765023350716, -0.016345329582691193, 0.01882363110780716, 0.019554227590560913, -0.012441646307706833, -0.01965450681746006, 0.01764894463121891, -0.03042723797261715, -0.0377618633210659, -0.010414596647024155, 0.011961744166910648, 0.007592484354972839, 0.007348951417952776, 0.0206429623067379, -0.009404652751982212, -0.007384765427559614, 0.00520013552159071, -0.0012284066760912538, 0.024396227672696114, -0.0002681543701328337, 0.0030119242146611214, -0.010257015936076641, 0.00979860220104456, 0.00899637769907713, -0.018494145944714546, -0.001311673317104578, 0.01545715145766735, -0.006070406176149845, 0.01089449878782034, -0.017691921442747116, 9.031743684317917e-05, -0.028679534792900085, -0.005085531622171402, 0.03690233826637268, -0.03002612665295601, 0.021545464172959328, 0.006156358402222395, 0.013487403281033039, -0.015170643106102943, 0.03085700236260891, -0.014955760911107063, -0.03695964068174362, 0.009791439399123192, -0.0166318379342556, 0.0032250150106847286, 0.013580518774688244, 0.00379982334561646, -0.0013815098209306598, 0.016889695078134537, 0.05578327178955078, 0.02283475361764431, -0.01484115794301033, 0.0017853082390502095, 0.02144518680870533, -0.01465492695569992, 0.017391085624694824, -0.0476464182138443, 0.014740879647433758, -0.025069523602724075, 0.01231271680444479, 0.029109297320246696, 0.005479481536895037, 0.005049718078225851, 0.014282465912401676, -0.014490184374153614, -0.009426141157746315, 0.007757226936519146, -0.0011961744166910648, 0.0389365516602993, 0.039939332753419876, 0.02746187150478363, -0.012276903726160526, 0.018007081001996994, 0.012362856417894363, -0.026616670191287994, 0.0003135928709525615, 0.014139210805296898, 0.014124885201454163, -0.007871829904615879, 0.005389947444200516, -0.025370357558131218, 0.0030817606020718813, -0.01984073780477047, -0.003115783678367734, -0.010099436156451702, 0.01638830453157425, -0.0073919277638196945, -0.004877813160419464, 0.0027701822109520435, 0.013286847621202469, -0.0007789459195919335, -0.009418978355824947, -0.012878572568297386, -0.026530718430876732, -0.042288705706596375, 0.034209154546260834, -0.0031909921672195196, -0.02058565989136696, -0.013924329541623592, 0.0069227698259055614, 0.002694973722100258, -0.04939412325620651, -0.032289545983076096, -0.01029282994568348, 0.05056880787014961, -0.03693098947405815, -0.001556996488943696, -0.015213618986308575, 0.01802140660583973, 0.009017865173518658, -0.002374442061409354, 0.03684503585100174, 0.01783517561852932, -0.00561557337641716, 0.07678436487913132, 0.012040534056723118, 0.014597625471651554, -0.02847897820174694, -0.01120249554514885, -0.029510410502552986, -0.0007162721012718976, 0.018007081001996994, 0.0365871787071228, 0.016273701563477516, -0.030656445771455765, 0.012642201967537403, -0.033836692571640015, -0.021402209997177124, -0.0030101335141807795, 0.023035310208797455, -0.01024269126355648, 0.0001311673258896917, 0.01428962778300047, -0.015557429753243923, -0.014074746519327164, -0.015442825853824615, -0.02486896701157093, -0.01062947791069746, -0.026616670191287994, -0.023894837126135826, -0.010679616592824459, -0.018007081001996994, 0.035870905965566635, 0.002410255605354905, -0.024238647893071175, -0.0320889912545681, -0.00823712907731533, 0.00702662905678153, -0.0124488091096282, -0.008960563689470291, 0.0033557347487658262, 0.02804921567440033, -0.020557008683681488, 0.009791439399123192, 0.008473498746752739, 0.016732115298509598, -0.012412995100021362, -0.007592484354972839, -0.00770708778873086, 0.011252634227275848, -0.0031014580745249987, -0.009927530772984028, 0.008194152265787125, 0.010385945439338684, -0.012749643065035343, 0.04532569646835327, -0.02671694941818714, 0.0030781792011111975, -0.0072558363899588585, -0.01335847470909357, -0.023937813937664032, -0.008817309513688087, 0.00812968797981739, 0.017849501222372055, -0.009469117037951946, -0.015972867608070374, -0.023708606138825417, -0.013838376849889755, -0.028837114572525024, 0.01260638888925314, 0.01577231101691723, -0.017419736832380295, -0.03415185213088989, -0.03713154420256615, 0.01625937595963478, 0.019425299018621445, -0.014404231682419777, -0.013028989546000957, -0.02580012008547783, 0.031086208298802376, 0.010958963073790073, -0.023565351963043213, 0.021373558789491653, -0.01925339363515377, -0.010414596647024155, 0.0015677405754104257, -0.014404231682419777, -0.019711807370185852, -0.005855524446815252, -0.016932671889662743, -0.013895678333938122, 0.003119364846497774, -0.021717369556427002, 0.04157243296504021, 0.030198032036423683, -0.012384344823658466, 0.03206034004688263, 0.0038642878644168377, 0.007570995949208736, 0.0057982224971055984, -0.023995114490389824, 0.0045698159374296665, -0.012040534056723118, 0.02299233339726925, -0.02027050033211708, 0.009390327148139477, 0.02505519799888134, -0.0124989477917552, 0.02144518680870533, 0.030369937419891357, 0.0024299530778080225, -0.035928208380937576, 0.018723351880908012, -0.01681806892156601, -0.015915565192699432, 0.0013483822112903, 0.02221876010298729, 0.007506531663239002, 0.03355018422007561, -0.015557429753243923, -0.014475858770310879, -0.009891717694699764, -0.009669673629105091, -0.033034469932317734, -2.7769532607635483e-05, -0.02131625823676586, 0.008903262205421925, -0.08136850595474243, -0.03661582991480827, -0.0031032487750053406, -0.018694700673222542, 0.008158339187502861, -0.012226765044033527, 0.01943962462246418, 0.03438106179237366, -0.010049297474324703, 0.037389401346445084, -0.020915145054459572, 0.0015131247928366065, 0.03607146069407463, 0.010328643955290318, -0.011216821148991585, 0.012742480263113976, -0.010342968627810478, -0.011797001585364342, 0.003328874474391341, -0.008351732976734638, -0.013910003937780857, 0.02085784263908863, 0.02524142898619175, -0.019740458577871323, -0.01984073780477047, 0.028378700837492943, 0.008903262205421925, -0.0037783351726830006, 0.008387546055018902, -0.014160699211061, 0.02259122207760811, 0.00611696345731616, 0.006371240131556988, 0.022519594058394432, 0.012549087405204773, 0.025900399312376976, -0.005748083349317312, -0.0062530552968382835, 0.04243195801973343, 0.01959720440208912, 0.0010976869380101562, 0.00949060544371605, 0.003882194636389613, -0.008437685668468475, -0.004419398959726095, -0.007119744550436735, -0.004050518851727247, -0.036329321563243866, 0.01465492695569992, 0.017720570787787437, -0.005028230138123035, -0.0012445227475836873, -0.018093032762408257, -0.023121263831853867, 0.010350131429731846, 0.0053612967021763325, 0.02807786501944065, 0.0014853692846372724, 0.002512324368581176, -0.014826832339167595, 0.04483863338828087, 0.025012221187353134, -0.01206202246248722, -0.007864667102694511, -0.008537963032722473, -0.0038427996914833784, -0.004838417749851942, 0.003731777658686042, 0.0274905227124691, 0.026487741619348526, 0.00360643002204597, 0.008595265448093414, 0.005776734557002783, 0.00030866850283928216, 0.021588440984487534, -0.008745682425796986, 0.031143510714173317, -0.0005134775419719517, 0.01641695573925972, -0.011653746478259563, -0.026029327884316444, -0.0035365934018045664, 0.03243280202150345, 0.009376001544296741, -0.021373558789491653, -0.006346170790493488, -2.590890471765306e-05, -0.025370357558131218, -0.018150335177779198, 0.013666471466422081, 0.007642623037099838, 0.002225815551355481, 0.029051996767520905, 0.008645404130220413, 0.00330559560097754, 0.029338505119085312, 0.008580939844250679, -0.008058060891926289, 0.009941856376826763, 0.005794641096144915, -0.002682439051568508, -0.033034469932317734, -0.0022562569938600063, -0.014669252559542656, -0.0029725292697548866, -0.004945858847349882, 0.015629056841135025, 0.02329316921532154, -0.017118902876973152, -0.023780234158039093, 0.013043315149843693, 0.029195250943303108, -0.0005407854332588613, -0.020599985495209694, -0.01032148115336895, -0.003928752616047859, -0.0006938885780982673, -0.010514874011278152, -0.0024944175966084003, 0.008158339187502861, 0.00828726775944233, 0.010385945439338684, -0.006242311093956232, -0.03446701169013977, 0.022877730429172516, 0.008802983909845352, 0.0017083089333027601, -0.0007610390894114971, 0.005995197221636772, 0.0037138708867132664, 0.009383164346218109, 0.02125895582139492, -0.015027387998998165, 0.01130993664264679, 0.012076347135007381, 0.010650966316461563, -0.01299317553639412, -0.0067651900462806225, 0.023250192403793335, -0.006586121860891581, -0.01709025166928768, 1.6214049537666142e-05, 0.004648605827242136, -0.0007861086050979793, -0.008487824350595474, 0.0076927621848881245, -0.00630319444462657, -0.01385270245373249, 0.009547906927764416, -0.011030590161681175, -0.008072386495769024, 0.019855061545968056, 0.024338925257325172, 0.029338505119085312, 0.005812548100948334, -0.028407350182533264, -0.009812927804887295, -0.0029832732398062944, -0.019267719238996506, 0.002347581787034869, -0.014146373607218266, -0.013422938995063305, 0.011460353620350361, -0.006818910129368305, 0.012076347135007381, -0.005404273048043251, -0.00600236002355814, -0.026960480958223343, -0.002542765811085701, -0.007309556473046541, -0.008874610997736454, -0.012090672738850117, -0.01909581385552883, 0.002537393942475319, 0.002691392321139574, -0.015084690414369106, -0.004451631102710962, -0.016245050355792046, 0.023937813937664032, -0.013895678333938122, -0.033464230597019196, 0.011990394443273544, -0.009454791434109211, 0.010120924562215805, 0.011754024773836136, -0.002381604630500078, 0.0034488500095903873, 0.011983231641352177, 0.01525659579783678, 0.023321818560361862, 0.03489677608013153, -0.018680376932024956, -0.02345074899494648, 0.013422938995063305, -0.0020342126954346895, 0.02101542241871357, 0.016345329582691193, 0.021946577355265617, -0.005654968321323395, 0.013666471466422081, 0.00024465168826282024, -0.020514031872153282, 0.019425299018621445, 0.019267719238996506, -0.012319879606366158, -0.0037138708867132664, -0.007542345207184553, 0.018379541113972664, 0.02826409600675106, -0.03650122508406639, -0.002784507814794779, -0.014246651902794838, 0.00045707111712545156, -0.007878992706537247, -0.01541417557746172, -0.012642201967537403, -0.004347771406173706, -0.01863740012049675, 0.015270921401679516, -0.008050898090004921, 0.019081488251686096, -0.006073987111449242, 0.018379541113972664, 0.003294851630926132, 0.011603607796132565, 0.014268140308558941, 0.014927110634744167, -0.03647257387638092, -0.012706667184829712, -0.00019137894560117275, -0.024324599653482437, 0.02208983153104782, 0.0016572745516896248, 0.01234136801213026, -0.023751582950353622, 0.00161787960678339, 0.011517655104398727, 0.008437685668468475, 0.005654968321323395, -0.02521277777850628, -0.008222803473472595, -0.015958542004227638, -0.008494987152516842, -0.010973288677632809, 0.024854641407728195, 0.0024174184072762728, -0.013644983060657978, -0.003579569747671485, -0.00512134563177824, -0.005937895737588406, 0.0011478259693831205, 0.002483673393726349, -0.0038356371223926544, -0.004602048080414534, -0.01379540003836155, -0.0133298235014081, 0.031917084008455276, -0.0020879332441836596, 0.011388726532459259, -0.017348110675811768, -0.02492626942694187, 0.014927110634744167, 0.038363534957170486, -0.026000676676630974, 0.03489677608013153, 0.002104049315676093, -0.0034488500095903873, 0.00888893660157919, 0.012484622187912464, 0.004437305498868227, -0.002388767432421446, -0.007216441445052624, -0.025785794481635094, -0.026573695242404938, -0.008845960721373558, -0.011274122633039951, 0.0036010579206049442, -0.03352153301239014, -0.006854723673313856, 0.024081068113446236, -0.011138031259179115, -0.007209278643131256, 0.0008478870731778443, 0.008638241328299046, 0.0029098554514348507, 0.019110139459371567, 0.0047811162658035755, -0.009512092918157578, 0.027562150731682777, -0.004548327997326851, -0.016531560570001602, 0.021559789776802063, 0.029940173029899597, 0.006557471118867397, 0.011388726532459259, -0.014511672779917717, 0.02058565989136696, -0.0018497726414352655, 0.03701694309711456, -0.03134406730532646, 0.018279263749718666, -0.019668832421302795, -0.0041830288246273994, -0.01588691584765911, -0.01577231101691723, -0.00023480293748434633, 0.007187790237367153, 0.005078369285911322, 0.0037496844306588173, -0.009003540500998497, 0.015328222885727882, 0.013079128228127956, -0.019539901986718178, -0.00655030831694603, 0.007055280264467001, 0.020098594948649406, 0.012484622187912464, -0.008337407372891903, -0.004046937450766563, -0.04985253885388374, 0.006167102605104446, 0.008358894847333431, 0.04438021779060364, 0.011381563730537891, -0.01291438564658165, -0.01721918024122715, -0.01617342419922352, 0.002544556511566043, 0.014740879647433758, 0.00022696872474625707, 0.013114942237734795, 0.017634619027376175, -0.02663099579513073, -0.015141991898417473, 0.001524764229543507, -0.005848361644893885, -0.0183938667178154, -0.007678436581045389, -0.02163141779601574, 0.0019393067341297865, -0.0013179406523704529, 0.01700429990887642, -0.0005994302337057889, 0.009884554892778397, 0.014447208493947983, 0.0020342126954346895, 0.005891337990760803, 0.030255332589149475, 0.01123114675283432, -0.02104407362639904, 0.014568974263966084, 0.013938655145466328, 0.0023440003860741854, -0.027204014360904694, -0.011761187575757504, 0.029453108087182045, -0.005569015629589558, 0.004759627860039473, -0.008222803473472595, -0.039882030338048935, -0.038334883749485016, 0.0036261274944990873, 0.001102163689211011, 0.022362014278769493, -0.020728914067149162, -0.0005976395332254469, 0.0377618633210659, -0.03452431410551071, -0.004867068957537413, -0.02216145768761635, -0.002626927802339196, -0.00348287308588624, -0.0024639759212732315, 0.006725795101374388, -0.003678057109937072, 0.01519929338246584, -0.03246144950389862, 0.004261818714439869, -0.0005895814392715693, -0.01525659579783678, 0.031917084008455276, -0.0020968865137547255, -0.019826412200927734, -0.008674055337905884, -0.012348530814051628, -0.015056039206683636, -0.01379540003836155, 0.00013978497008793056, -0.013422938995063305, 0.017477039247751236, -0.004473119042813778, -0.001802319660782814, -1.9655512915051077e-06, 0.008559451438486576, 0.007334626279771328, -0.0035491283051669598, -0.02438190206885338, -0.0019231905462220311, -0.009777113795280457, -0.019267719238996506, 0.002191792707890272, -0.0032178524415940046, 0.0044265612959861755, 0.004018286243081093, -0.019554227590560913, 0.002816739957779646, 0.016459932550787926, 0.011782675981521606, -0.008301593363285065, -0.027920285239815712, 0.018837956711649895, -0.013551867567002773, 0.0076569486409425735, -0.01411772333085537, -0.018336566165089607, -0.0014844739343971014, 2.83850786217954e-05, 0.030198032036423683, 0.006639842409640551, -0.04263251647353172, -0.006192172411829233, 0.009877392090857029, 0.006786677986383438, -0.0001423590729245916, -0.015528778545558453, 0.006399891339242458, -0.013960142619907856, -0.008301593363285065, 0.004165122285485268, -0.014175024814903736, 0.000565407273825258, 0.01719053089618683, -0.004895719699561596, 0.012513273395597935, 0.039480917155742645, -0.019582878798246384, -0.022147133946418762, 0.006317520048469305, -0.004988835193216801, -0.020786216482520103, -0.03438106179237366, -0.031487319618463516, -0.015070364810526371, 0.003543756203725934, 0.0049386960454285145, -0.003486454486846924, 0.017849501222372055, 0.007348951417952776, 0.025327380746603012, 0.01700429990887642, 0.0002952383947558701, -0.017763547599315643, 0.0025248590391129255, -0.004587722942233086, 0.004587722942233086, -0.013394287787377834, -0.006281706038862467, -0.004634280223399401, -0.01882363110780716, 0.026430439203977585, 0.023937813937664032, 0.010271341539919376, -0.005282506812363863, 0.010951800271868706, -0.0436352975666523, 0.010034971870481968, 0.017319459468126297, -0.011782675981521606, -0.021459512412548065, -0.019812086597085, 0.023808883503079414, -0.0011764769442379475, -0.0014799971831962466, -0.002053910167887807, 0.010880173183977604, -0.023937813937664032, -0.015342548489570618, 0.01620207540690899, 5.400020017987117e-05, -0.008186990395188332, 0.008022247813642025, 0.0047130705788731575, 0.016488583758473396, 0.017577316612005234, 0.011181007139384747, -0.00770708778873086, 0.03882194682955742, -0.001373451785184443, -0.01866605132818222, 0.015356873162090778, -0.011503329500555992, 0.02601500228047371, -0.011102217249572277, 0.018307914957404137, 0.0017262157052755356, -0.006829654332250357, -0.004408654756844044, -0.011976069770753384, 0.01850847154855728, 0.013995956629514694, -0.0030352030880749226, -0.014855483546853065, -0.03736075386404991, 0.01625937595963478, -0.01260638888925314, -0.015958542004227638, -0.002623346634209156, 0.013265359215438366, 0.010772732086479664, 0.0037819165736436844, -0.007728575728833675, 0.0026537880767136812, 0.0006128603126853704, 0.006013104226440191, 0.0003946211654692888, 0.0009060841985046864, 0.02289205603301525, 0.01151049230247736, -0.012305554933845997, -0.009999158792197704, -0.004730977118015289, -0.01724783144891262, 0.0009812928037717938, -0.002163141733035445, -0.022018203511834145, -0.00949060544371605, -0.0021792578045278788, -0.012011882849037647, 0.002660950878635049, -0.02767675369977951, -0.011388726532459259, 0.0026699041482061148, 0.00979860220104456, 0.00421168003231287, 0.02425297349691391, 0.003674475708976388, -0.0011361866490915418, 0.011481842026114464, -0.02123030461370945, 0.0033270837739109993, -0.01845116913318634, -0.0157006848603487, -0.004082750994712114, -0.016703465953469276, 0.0053254831582307816, 0.07391928136348724, -0.005841198842972517, -0.009053679183125496, -0.0005868954467587173, 0.014260977506637573, -0.009182607755064964, 0.0016590652521699667, 0.028521955013275146, 0.021402209997177124, -0.028350049629807472, 0.002315349644050002, -0.017333785071969032, -0.0010761987650766969, -0.004415817558765411, -0.013687959872186184, 0.017161879688501358, 0.02107272483408451, 0.0258287712931633, -0.01866605132818222, 0.01700429990887642, 0.02751917392015457, 0.007570995949208736, -0.0031623411923646927, -0.010779894888401031, -0.004512513987720013, 0.007280905731022358, 0.002483673393726349, 0.03005477599799633, 0.002438906580209732, 0.0007914806483313441, 0.00834457017481327, 0.003907264210283756, -0.02727564051747322, -0.012226765044033527, 0.00391084561124444, 0.017605967819690704, -0.014898459427058697, 0.014984412118792534, -0.0008308756514452398, 0.01687537133693695, -0.005286088213324547, -0.009920368902385235, 0.010142412967979908, 0.014490184374153614, 0.004562653135508299, 0.009132469072937965, -0.0021004679147154093, -0.0011155938263982534, 0.016216401010751724, -0.015843939036130905, -0.0033217119053006172, 0.00514641497284174, -0.003513314528390765, 0.006181428208947182, 0.010758406482636929, -0.0029205994214862585, 0.007427741773426533, 0.0005586922052316368, -0.013981631025671959, 0.005397110246121883, -0.005049718078225851, -0.011188169941306114, -0.025628214702010155, -0.03965282440185547, 0.018007081001996994, -0.025728493928909302, 0.0032626192551106215, -0.020069943740963936, -0.001309882616624236, 0.024353250861167908, -0.01044324692338705, 0.01687537133693695, 0.005877012386918068, -0.008881773799657822, -0.011266959831118584, 0.017233505845069885, 0.007309556473046541, -0.004831255413591862, -0.01234136801213026, -0.0046056294813752174, -0.004122145939618349, 0.00030866850283928216, -0.007001559715718031, -0.01676076650619507, 0.008752845227718353, -0.003753265831619501, 0.021760346367955208, -0.02128760702908039, 0.006159939803183079, -0.013193732127547264, 0.002297442639246583, 0.016459932550787926, -0.02412404492497444, 1.3493055121216457e-05, 0.0020324219949543476, 0.0091467946767807, -0.004594885278493166, -0.00865256693214178, 0.021130027249455452, 0.0055869221687316895, -0.01454748585820198, 0.013573355972766876, 0.0014209047658368945, 0.008022247813642025, -0.013401450589299202, -0.01221960224211216, 0.00514641497284174, 0.011911604553461075, -0.008609590120613575, 0.01519929338246584, -0.018221961334347725, -0.01428962778300047, -0.01607314497232437, -0.017949778586626053, -0.043004974722862244, 0.019926689565181732, 0.003577779047191143, -0.006904862821102142, -0.019110139459371567, -0.029209576547145844, 0.007449229713529348, 0.009540744125843048, 0.010371619835495949, 0.005594084970653057, 0.00451967678964138, 0.016302352771162987, -0.027504848316311836, -0.011288448236882687, -0.028034890070557594, 0.006389147136360407, 0.010665290988981724, 0.01013525016605854, -0.006360496394336224, 0.007671274244785309, 0.0016778673743829131, -0.009598045609891415, 0.0017960522091016173, -0.0023440003860741854, 0.01280694454908371, -0.013573355972766876, 0.00012534762208815664, 0.0050067417323589325, -0.006682818755507469, 0.013859865255653858, -0.01909581385552883, -0.013050477020442486, -0.019138790667057037, -0.009082330390810966, 0.03177383169531822, -0.007785877678543329, 0.029567711055278778, -0.0377618633210659, -0.011968906968832016, 0.009290048852562904, -0.0074134161695837975, 0.010199714452028275, -0.015285246074199677, -0.008000759407877922, -0.005003160331398249, -0.0048849754966795444, 0.013272522017359734, 0.008845960721373558, -0.01805005595088005, 2.301303993590409e-06, -0.013165080919861794, 0.0017942616250365973, 0.010013483464717865, 0.008681218139827251, 0.022075505927205086, 0.00790048111230135, 0.0031551786232739687, -0.0020861425437033176, -0.0024550226517021656, -0.020012641325592995, 0.0157006848603487, 0.018035730347037315, -0.006826072931289673, 0.0020986772142350674, -0.020943796262145042, 0.016560209915041924, 0.022791778668761253, -0.013064802624285221, 0.0001767177600413561, -0.009447628632187843, 0.0034434781409800053, -0.014984412118792534, 0.008050898090004921, 0.006600447464734316, -0.00953358132392168, 0.01362349558621645, -0.023221541196107864, 0.010858684778213501, 0.0012883944436907768, -0.01151049230247736, -0.0010457572061568499, 0.021029748022556305, 0.0046915821731090546, 0.01919609121978283, 0.010744081810116768, -0.009089493192732334, 0.0008913110941648483, -0.0010976869380101562, 0.013172243721783161, -0.014461533166468143, -0.01678941771388054, -0.0061993347480893135, -0.005372040905058384, -0.008537963032722473, -0.020327802747488022, 0.005884175188839436, -0.05016769841313362, -0.027318617329001427, 0.004204517230391502, 0.007123325951397419, -0.018709026277065277, 0.012484622187912464, 0.023966463282704353, 0.0051499963738024235, 0.03240415081381798, 0.02671694941818714, 0.013165080919861794, 0.018350891768932343, -0.0009410024504177272, -0.009956181980669498, -0.007563833147287369, 0.002476510824635625, 0.006392728537321091, 0.0060417549684643745, 0.02286340482532978, -0.01461195107549429, 0.0025266497395932674, -0.0028632977046072483, 0.007037373259663582, 0.005740921013057232, 0.026086630299687386, 0.030255332589149475, 0.007871829904615879, 0.0009365257574245334, -0.012470297515392303, -0.002354744588956237, -0.02018454670906067, 0.014884133823215961, -0.031859781593084335, -0.00257320748642087, 0.007714250590652227, -0.009891717694699764, 0.017018625512719154, 0.0005658549489453435, -0.014024607837200165, -2.8049327738699503e-05, 0.023364795371890068, -0.0018444006564095616, 0.008638241328299046, 0.0033485719468444586, 0.013673634268343449, 0.018221961334347725, 0.01764894463121891, 0.013043315149843693, 0.005941477138549089, -0.0015050667570903897, 0.00031023533665575087, 0.012198113836348057, 0.002320721512660384, -0.01678941771388054, 0.015485802665352821, 0.01628802716732025, -0.020313477143645287, 0.009368838742375374, -0.0036010579206049442, 0.02644476480782032, -0.009834416210651398, -0.003665522439405322, 0.017204856500029564, 0.014540323056280613, 0.0014576136600226164, -0.0017826221883296967, 0.009261398576200008, -0.013422938995063305, 0.01123114675283432, 0.0020664450712502003, -0.018565772101283073, 0.01325103361159563, 0.008215640671551228, -0.02190360054373741, 0.0001386657968396321, -0.04062695428729057, -0.023780234158039093, 0.006374821532517672, -0.018594423308968544, 1.3262225365906488e-05, 0.008480661548674107, -0.01132426131516695, 0.02810651622712612, 0.018350891768932343, 0.0011129077756777406, -0.01184714026749134, 1.6857575246831402e-05, 0.011453190818428993, -0.006926351226866245, 0.003481082385405898, -0.04082750901579857, 0.01135291252285242, -0.0009410024504177272, -0.01242015790194273, 0.014260977506637573, -0.008939075283706188, 0.005210879258811474, -0.01195458136498928, -0.004114983137696981, 0.03435241058468819, 0.02462543360888958, 0.012276903726160526, -0.015170643106102943, 0.009390327148139477, -0.013544704765081406, -0.0027719729114323854, 0.003244712483137846, 0.0053684595040977, 0.0016142982058227062, -0.0017826221883296967, -0.000612412637565285, 0.008401871658861637, 0.00790048111230135, 0.01749136485159397, 0.0060632433742284775, 0.011374400928616524, 0.021516812965273857, 0.014604788273572922, 0.013530380092561245, 0.01252759899944067, -0.001343010226264596, -0.002965366467833519, -0.018350891768932343, -0.0062888688407838345, -0.014869808219373226, 0.010249854065477848, 0.0024174184072762728, -0.007757226936519146, 0.0030799699015915394, -0.0062745437026023865, -0.011632259003818035, -0.01109505444765091, 0.010994776152074337, -0.026143930852413177, -0.014196513220667839, 0.00627812510356307, 0.00930437445640564, -0.001064559444785118, 0.007492206059396267, 0.03928036242723465, 0.006360496394336224, -0.0031032487750053406, 0.014912785030901432, -0.004322702065110207, -0.02511250041425228, 0.005712269805371761, -0.019110139459371567, -0.00647151842713356, 0.0009230956784449518, 0.006421379279345274, -0.014970086514949799, 0.021889274939894676, -0.01343726459890604, -0.011009101755917072, 0.005239530466496944, 0.014074746519327164, -0.01374526135623455, 0.005712269805371761, -0.015328222885727882, 0.004161540884524584, 0.005440086591988802, -0.029395805671811104, 0.005912825930863619, -0.018866606056690216, -0.0015149154933169484, 0.009626696817576885, 0.01264936476945877, 0.0067437016405165195, 0.000917723635211587, 0.027017783373594284, 0.01083003357052803, 0.021803323179483414, -0.0044480497017502785, 0.014253814704716206, 0.005665712058544159, 0.001959004206582904, -0.0016098215710371733, 0.010794220492243767, -0.0037138708867132664, -0.02604365348815918, 0.0099060432985425, 0.011825651861727238, 0.01370228547602892, -0.005611991975456476, 0.006353333592414856, -0.009060841985046864, -0.015757985413074493, 0.018651725724339485, 0.004143633879721165, -0.01340861339122057, -0.005465155933052301, -0.009068004786968231, -0.011474679224193096, 0.012491784989833832, -0.002942087594419718, -0.030742397531867027, -0.004963765386492014, 0.0200556181371212, 0.01919609121978283, -0.027920285239815712, 0.017348110675811768, 0.010457572527229786, 0.011567794717848301, 0.009175445884466171, 0.009848740883171558, 0.009963344782590866, 0.03458161652088165, -0.009913206100463867, 0.014067583717405796, 0.011438865214586258, 0.015127666294574738, 0.015629056841135025, 0.025341706350445747, -0.01783517561852932, 0.009232747368514538, 0.014941436238586903, 0.02098677307367325, 0.01029282994568348, 0.009461954236030579, 0.013788238167762756, 0.010980451479554176, -0.004945858847349882, 0.03418050333857536, 0.010715430602431297, 0.007563833147287369, -0.005099857226014137, 0.007764389272779226, -0.027175363153219223, -0.0023440003860741854, 0.02598635107278824, -0.0016017634188756347, -0.01604449562728405, 0.008867448195815086, 1.6717678590794094e-05, 0.015356873162090778, 0.02971096709370613, 0.0009866647887974977, 0.023923488333821297, -0.007230766583234072, -0.015328222885727882, -0.0031963642686605453, 0.01522794459015131, 0.009110980667173862, 0.007051698863506317, -0.032203592360019684, -0.011410214006900787, -1.924981188494712e-05, -0.007778714876621962, 0.013458753004670143, -0.01561473123729229, 0.005175065714865923, 0.0028507630340754986, 0.015514453873038292, 0.023278843611478806, 0.0016008680686354637, 0.01965450681746006, -0.003187410766258836, 0.003975309897214174, -0.0011711048427969217, 0.007606809493154287, -0.005064043682068586, -0.0026699041482061148, 0.008903262205421925, -0.012778294272720814, -0.01195458136498928, 0.0175629910081625, -0.004129308741539717, 0.007778714876621962, 0.00611696345731616, 0.0008702705963514745, -0.023035310208797455, -0.006625516805797815, -0.013315497897565365, 0.004437305498868227, 0.016674814745783806, -0.015428501181304455, -0.03340693190693855, 0.02486896701157093, 0.002567835384979844, 0.0034416874404996634, 0.00891758780926466, 0.0037819165736436844, 0.009970507584512234, 0.009268560446798801, -0.0076927621848881245, -0.00385354389436543, 0.003423780668526888, 0.05142833665013313, -0.007148395292460918, -0.023006659001111984, 0.008573777042329311, -0.025169800966978073, -0.022362014278769493, 0.013874189928174019, 0.007363277021795511, -0.0018837956013157964, -0.01617342419922352, 0.0031283183488994837, 0.003357525449246168, 0.01777787320315838, 0.013265359215438366, -0.030971605330705643, -0.0025194871705025434, 0.01302182674407959, -0.022075505927205086, 0.003792660776525736, 0.013215219601988792, 0.02388051152229309, 0.02283475361764431, 0.007477880455553532, 0.017577316612005234, -0.013867028057575226, 0.0006513599073514342, -0.013566193170845509, 0.004648605827242136, 0.010908824391663074, 0.007499368861317635, 0.007613972295075655, -0.008194152265787125, 0.0048706503584980965, -0.018350891768932343, 0.018093032762408257, 0.020872168242931366, -0.0025821609888225794, -0.005701526068150997, 0.005579759366810322, -0.002569626085460186, -0.01858009770512581, 0.015170643106102943, -0.03842083364725113, -0.002028840593993664, 0.0031981549691408873, 0.041085366159677505, -0.005035392940044403, -0.015557429753243923, -0.01109505444765091, -0.011109380051493645, -0.013179406523704529, -0.010457572527229786, -0.006324682384729385, -0.014869808219373226, 0.01263504009693861, 0.0234793983399868, 0.005432923790067434, 0.0035491283051669598, 0.003486454486846924, -0.009712649509310722, -0.0004803499614354223, 0.01302182674407959, 0.00792913231998682, -0.004347771406173706, -0.008931913413107395, 0.0036565689370036125, 0.0075351824052631855, -0.01885228231549263, -0.0036207553930580616, 0.006339007988572121, 0.012391507625579834, -0.006933514028787613, 0.004387166351079941, -0.001373451785184443, -0.0014871599851176143, -0.02302098460495472, 0.0038284743204712868, -0.001993027050048113, -0.009562232531607151, 0.00531473895534873, -0.022935032844543457, 0.018709026277065277, -0.0002952383947558701, 0.0016644372371956706, 0.0019966084510087967, -0.01820763573050499, -0.00575524615123868, 0.007485043257474899, 0.02449650503695011, -0.00244965055026114, 0.00010766465129563585, 0.0023923488333821297, -0.04415101185441017, -0.0008765379898250103, 0.003015505615621805, 0.004276144318282604, -0.019611530005931854, 0.010049297474324703, -0.00839470885694027, -0.009397489950060844, -0.0009033981477841735, 0.0006826968165114522, -0.044294267892837524, 0.010407433845102787, 0.0004669198824558407, -0.00961237121373415, -0.006210078950971365, 0.003139062551781535, 0.002745112869888544, 0.003307386301457882, -0.024825990200042725, -0.010206877253949642, 0.012720992788672447, -0.001284813042730093, -0.00030754931503906846, 0.03005477599799633, -0.0158009622246027, -0.0014164280146360397, 0.0028579256031662226, 0.021130027249455452, -0.010063623078167439, 0.013773912563920021, 0.020012641325592995, -0.02187494933605194, -0.022605547681450844, 0.016531560570001602, -0.0068869562819600105, -0.0069764903746545315, -0.00839470885694027, -0.0020019805524498224, 0.019826412200927734, 0.013000338338315487, -0.011839977465569973, -0.0014853692846372724, -0.00300118001177907, 0.013609169982373714, -0.031458668410778046, 0.013910003937780857, -0.010987614281475544, -0.01962585560977459, 0.004892138298600912, -0.0012257206253707409, -0.024353250861167908, 0.019926689565181732, -0.011023427359759808, 0.002592904958873987, -0.0049386960454285145, 0.00567645626142621, -0.014447208493947983, -0.000794166699051857, -0.010865847580134869, 0.004308376461267471, 0.020256174728274345, -0.011976069770753384, -0.01101626455783844, -0.010099436156451702, 0.020714588463306427, -0.019697481766343117, -0.005357715301215649, 0.009068004786968231, -0.016101796180009842, 0.02390916272997856, 0.012642201967537403, -0.010163901373744011, -0.022777453064918518, 0.0026466252747923136, 0.014568974263966084, 0.0013206267030909657, -0.00854512583464384, 0.018107358366250992, 0.009426141157746315, 0.016159098595380783, 0.0013439054600894451, 0.012778294272720814, 0.02029915153980255, -0.026172582060098648, -0.006285287439823151, -0.009984833188354969, -0.009340188466012478, -0.012491784989833832, -0.009991995990276337, -0.009956181980669498, -0.041887592524290085, 0.010565013624727726, 0.01055068802088499, -0.014067583717405796, -0.0023063961416482925, -1.5738400179543532e-05, 0.005955802276730537, -0.0107369190081954, -0.01684672012925148, -0.016732115298509598, 0.019740458577871323, -0.003174876095727086, -0.021989552304148674, -0.02280610427260399, 0.009139631874859333, 0.010357294231653214, 0.011438865214586258, -0.015156317502260208, 0.023436423391103745, 0.003875032067298889, -0.0013313707895576954, -0.02061431109905243, -0.009003540500998497, 0.01885228231549263, 0.002659160178154707, 0.0182935893535614, -0.006048917770385742, 0.011940255761146545, 0.0003068778314627707, -0.002163141733035445, 0.010171063244342804, 0.0037461030296981335, 0.007506531663239002, 0.006389147136360407, 0.010486223734915257, -0.014898459427058697, -0.018952559679746628, 0.01401028223335743, -0.013730935752391815, 0.0022705825977027416, 0.012155137024819851, 0.009519255720078945, 0.007248673588037491, 0.012692341580986977, 0.0200556181371212, -0.006804584991186857, 0.006414216477423906, 0.027118060737848282, 0.023837534710764885, -0.014253814704716206, 0.00949060544371605, 0.011832814663648605, 0.011746861971914768, -0.03005477599799633, 0.010235528461635113, -0.00482051121070981, -0.006682818755507469, 0.0034022924955934286, -0.0182935893535614, 0.015586080960929394, 0.003148015821352601, -0.025742819532752037, 0.004075588192790747, 0.0018005289603024721, 0.000949955836404115, 0.005740921013057232, -0.012169462628662586, -0.002619765233248472, 0.004995997995138168, 0.02511250041425228, 0.0226485226303339, -0.006908444222062826, -0.02441055327653885, 0.026530718430876732, 0.014490184374153614, 0.0037496844306588173, -0.005690781865268946, 0.015528778545558453, 0.015442825853824615, 0.011374400928616524, 0.018064381554722786, 0.012964525260031223, 0.004319120664149523, 0.0027630196418613195, -0.0032572473865002394, -0.00038633926305919886, -0.0044265612959861755, 0.002386976731941104, 0.002868669806048274, -0.01283559575676918, 0.014826832339167595, 0.00462711788713932, -0.009189770556986332, 0.008251454681158066, -0.0049924165941774845, 0.01169672328978777, -0.024768689647316933, -0.008172664791345596, 0.014411394484341145, 0.007252254988998175, 0.020728914067149162, -0.005855524446815252, 0.036300670355558395, -0.025384683161973953, 0.003187410766258836, -0.008946238085627556, -0.028650883585214615, 0.022763127461075783, -0.016932671889662743, 0.034925427287817, 0.01120249554514885, 0.004007542505860329, 0.007169883698225021, -0.019325021654367447, 0.007671274244785309, -0.0021452349610626698, -0.0051141828298568726, 0.007492206059396267, 0.005794641096144915, -0.010930311866104603, -0.005884175188839436, 0.02622988447546959, 0.012950199656188488, 0.0029474596958607435, 0.00984157808125019, -0.01676076650619507, 0.015471477061510086, -0.017921127378940582, -0.0016912975115701556, -0.0011370819993317127, 0.02721833996474743, 0.01465492695569992, 0.00046602453221566975, -0.0192247424274683, -0.018007081001996994, 0.005594084970653057, 0.008036572486162186, 0.013630657456815243, -0.027605125680565834, -0.015944216400384903, 0.0037353590596467257, -0.01676076650619507, 0.00600236002355814, -0.01115235686302185, -0.0073919277638196945, -0.04283307120203972, 0.004867068957537413, 0.017691921442747116, -0.01013525016605854, 0.0031927828676998615, 0.020900819450616837, -0.0062888688407838345, -0.009855903685092926, -0.02002696692943573, 0.006392728537321091, 0.002166723133996129, -0.035441141575574875, -0.007506531663239002, 0.005103438626974821, 0.0056406427174806595, -0.005296831950545311, -0.009991995990276337, -0.022419316694140434, -0.003060272429138422, -0.007237929385155439, -0.008760008029639721, -0.005153577774763107, -0.012183788232505322, -0.001530136214569211, 0.0067437016405165195, -0.017018625512719154, -0.018221961334347725, 0.02216145768761635, 1.3318183846422471e-05, 0.004480281844735146, -0.008874610997736454, -0.00011146984616061673, -0.022290388122200966, -0.0057086884044110775, -0.00702662905678153, -0.014339767396450043, 0.005837617442011833, 0.012226765044033527, 0.005346971098333597, -0.006450030021369457, 0.009741300716996193, -0.0051285079680383205, -0.016531560570001602, 0.00011740146874217317, 0.004505351651459932, -0.012900060042738914, -0.003022668184712529, -0.007750064134597778, 0.03002612665295601, 0.025785794481635094, 0.018121683970093727, -0.0021237467881292105, -0.005866268649697304, -0.007750064134597778, -0.023035310208797455, -0.011453190818428993, 0.0008017770596779883, -0.010421758517622948, 0.01231271680444479, 0.01628802716732025, -0.01860874891281128, 0.004967346787452698, 0.006113382522016764, -0.002420999575406313, -0.012455971911549568, 0.017663270235061646, -0.010565013624727726, -0.014941436238586903, 0.030140729621052742, -0.004985253792256117, 0.018694700673222542, -0.0007601437391713262, 0.02080054208636284, 0.008523637428879738, -0.01130993664264679, -0.012090672738850117, 0.008079549297690392, -0.0008528114412911236, -0.016646163538098335, -0.010142412967979908, -0.011789838783442974, 0.002626927802339196, -0.047445863485336304, -0.0050962758250534534, 0.0008644508779980242, -0.004852743353694677, 0.0015829612966626883, 0.004945858847349882, 0.021831972524523735, -4.1409479308640584e-05, 0.010364457033574581, -0.013236708007752895, -0.014712228439748287, -0.019339347258210182, -0.008752845227718353, -0.009161120280623436, -0.0068869562819600105, -0.005991615820676088, -0.002809577388688922, 0.029152274131774902, -0.011130868457257748, 0.0007816319121047854, -0.004190191626548767, -0.0083159189671278, -0.00360643002204597, -0.008222803473472595, 0.013816888444125652, -0.00022965473181102425, 0.008609590120613575, -0.008487824350595474, -0.011001938953995705, -0.011102217249572277, 0.007151976693421602, -0.023536700755357742, 0.005554690025746822, -0.0010941056534647942, 0.010092273354530334, 0.007807365618646145, -0.031859781593084335, -0.012821270152926445, 0.0083159189671278, 0.011159518733620644, 0.004630699288100004, -0.01607314497232437, -0.004369259811937809, 0.008745682425796986, -0.021301932632923126, 0.0309143029153347, 0.012828432954847813, -0.00785034243017435, -0.0009696533670648932, 0.007302394136786461, -0.01299317553639412, -0.012319879606366158, -0.006260218098759651, 0.0038320557214319706, 0.021516812965273857, 0.008967726491391659, 0.011904441751539707, -0.028192469850182533, 0.003577779047191143, -0.008573777042329311, 0.026373138651251793, 0.0029098554514348507, 0.0017360644415020943, 0.009741300716996193, -0.0018730515148490667, 0.013093453831970692, -0.018193311989307404, -0.008552288636565208, 0.019325021654367447, 0.04180163890123367, -0.0010287457844242454, 0.011446028016507626, -0.019511252641677856, 0.015113340690732002, -0.015170643106102943, 0.010479060932993889, 0.009626696817576885, -0.00470590777695179, 0.0040111239068210125, -0.004709489177912474, -0.013379962183535099, 0.0012096044374629855, 0.014110560528934002, 0.0048491619527339935, -0.004935114644467831, 0.003294851630926132, 0.009526418522000313, -0.00520013552159071, -0.006177846807986498, -0.019153116270899773, 0.009927530772984028, 0.012878572568297386, 0.002868669806048274, 0.0035938951186835766, 0.010715430602431297, 0.0006553889834322035, -0.0029743199702352285, 0.003056691261008382, -0.010192551650106907, -0.018923908472061157, -0.015843939036130905, -0.008373220451176167, -0.021774671971797943, 0.007979271002113819, 0.018436843529343605, -0.0023977209348231554, -0.037532657384872437, -0.014411394484341145, -0.004347771406173706, 0.024181345477700233, 0.010171063244342804, 0.025628214702010155, -0.00671863229945302, 0.009898880496621132, 0.028364375233650208, 0.002755856839939952, -0.022562570869922638, 0.005880593787878752, -0.01151049230247736, 0.005243111867457628, -0.0046378616243600845, -0.005590503569692373, 0.0009365257574245334, -0.03529788926243782, 0.0010547107085585594, 0.020771890878677368, 0.01405325811356306, 0.0057982224971055984, -0.012076347135007381, 0.0150417136028409, -0.009476279839873314, 0.028622232377529144, 0.005955802276730537, -0.0012364647118374705, -0.008860285393893719, -0.017448388040065765, -0.018752003088593483, 0.010328643955290318, 0.006059661973267794, -0.011223983950912952, 0.02847897820174694, -0.009512092918157578, 0.011259797029197216, 0.008638241328299046, -0.0182935893535614, -0.013294010423123837, -0.005866268649697304, 0.008559451438486576, 0.015385524369776249, -0.0004302109300624579, -6.78220167174004e-05, 0.002628718502819538, -0.008437685668468475, 0.032719310373067856, -0.005651386920362711, 0.020915145054459572, -0.0005403377581387758, -0.007728575728833675, 0.005078369285911322, 0.004799022804945707, 0.011754024773836136, 0.0031945735681802034, 0.00391084561124444, -0.0011558841215446591, -0.01158928219228983, -0.0005228786030784249, -0.00850214995443821, 0.004548327997326851, -0.02857925556600094, -0.012147974222898483, 0.01029282994568348, 0.02203252911567688, 0.00030195346334949136, 0.030198032036423683, -0.0010860475013032556, -0.015743659809231758, 0.001924981246702373, 0.01104491576552391, -0.013272522017359734, -0.022104157134890556, -0.014490184374153614, -0.008330244570970535, 0.0019446787191554904, -0.0107870576903224, 0.0002190225786762312, -0.016717789694666862, 0.009927530772984028, 0.02304963581264019, -0.006084731314331293, 0.0005233262781985104, 0.020069943740963936, -0.0006997082964517176, 0.01359484437853098, -0.0033539440482854843, 0.005382784642279148, -0.004544746596366167, 0.00041342328768223524, -0.001531031564809382, 0.03134406730532646, 0.004827674012631178, 0.0052717626094818115, -0.00715913949534297, -0.017577316612005234, -0.01678941771388054, -0.009855903685092926, -0.003481082385405898, 0.0014101606793701649, 0.004709489177912474, 0.006120544858276844, -0.014941436238586903, -0.005941477138549089, -0.018594423308968544, 0.01132426131516695, 0.013816888444125652, -0.009956181980669498, 0.00318203866481781, 0.014146373607218266, -0.0028865765780210495, 0.007470718119293451, -0.0019966084510087967, 0.01601584441959858, -0.014189350418746471, 0.010915986262261868, 0.009297211654484272, -0.003300223732367158, 0.01172537449747324, -0.009397489950060844, -0.01283559575676918, 0.006672074552625418, -0.0064643556252121925, 0.002818530658259988, 0.029166599735617638, -0.01684672012925148, 0.0030208774842321873, -0.0006661330698989332, 0.020413754507899284, -0.0028006238862872124, 0.014518835581839085, -0.002634090604260564, -0.009103817865252495, 0.0015444617019966245, -0.007030210457742214, -0.010257015936076641, 0.0050819506868720055, -0.012892897240817547, -0.003699545282870531, -0.011918767355382442, 0.002177467104047537, -0.013265359215438366, -0.004437305498868227, -0.038220278918743134, 0.015170643106102943, -0.02021319791674614, 0.03644392266869545, 0.008280104957520962, 0.00994901917874813, -0.0013385334750637412, -0.006102638319134712, 0.021932251751422882, 0.02764810249209404, -0.018938234075903893, 0.006195753812789917, 0.021144352853298187, -0.00040088852983899415, 0.010113761760294437, -0.026759924367070198, 0.011188169941306114, -0.022018203511834145, 0.006088312715291977, -0.004276144318282604, -0.0029528317973017693, 0.016373980790376663, 0.009397489950060844, -0.017605967819690704, -0.018494145944714546, -0.005611991975456476, 0.0013922539073973894, -0.016144772991538048, 0.013186569325625896, 0.002809577388688922, -0.016116121783852577, 0.011417376808822155, 0.008144013583660126, -0.0014925319701433182, 0.012097835540771484, -0.0014244861667975783, -0.008244291879236698, -0.002068235771730542, -0.013150755316019058, 0.010235528461635113, -0.016431281343102455, 0.016245050355792046, 0.012541924603283405, -0.005160740576684475, 0.009096655994653702, 0.002267001196742058, 0.026917506009340286, 0.022820428013801575, -0.016861045733094215, -0.009204096160829067, -0.012935874052345753, -0.013566193170845509, -0.006457192823290825, 0.014533160254359245, 0.011059241369366646, -0.01525659579783678, -0.011675234884023666, -0.025198452174663544, -0.0036458249669522047, 0.029367156326770782, -0.011302773840725422, -0.011374400928616524, 0.017233505845069885, 0.021273281425237656, 0.009082330390810966, 0.023923488333821297, 0.004125727340579033, -0.003490035654976964, 0.004190191626548767, 0.010672453790903091, 0.01749136485159397, -0.02117300219833851, 0.0016125075053423643, 0.02110137604176998, -0.0001989893353311345, 0.018322240561246872, 0.006539564114063978, 0.009784276597201824, -0.010314318351447582, 0.010421758517622948, -0.010514874011278152, 0.016961323097348213, -0.014375580474734306, 0.013150755316019058, -0.004089913796633482, 0.010450409725308418, -0.02718968875706196, 0.00014157565601635724, 0.000949955836404115, -0.010407433845102787, -0.0027325779665261507, 0.003332455875352025, -0.01135291252285242, -0.013344149105250835, 0.01577231101691723, 0.008724194020032883, 0.027948936447501183, -0.007434904109686613, 0.029739616438746452, -0.004562653135508299, -0.010464735329151154, -0.017233505845069885, 0.0028203213587403297, 0.02320721559226513, -0.011030590161681175, 0.008738519623875618, 0.0026179745327681303, 0.018250612542033195, -0.009325862862169743, 0.00702662905678153, 0.004179447423666716, -0.015657708048820496, -0.0003928304649889469, 0.0007373125990852714, -0.01522794459015131, 0.00580896669998765, 0.004945858847349882, 0.0025875328574329615, 0.004759627860039473, -0.007320300675928593, 0.007101837545633316, 0.018408192321658134, -0.0013242079876363277, 0.003817730350419879, 0.003849962493404746, -0.018322240561246872, -0.005318320356309414, -0.022233085706830025, -0.0012910804944112897, 0.018193311989307404, 0.043033625930547714, 0.022777453064918518, 0.00257320748642087, -0.010966125875711441, -0.009598045609891415, -0.02211848273873329, -0.0033772229216992855, 0.0058161295019090176, -0.015328222885727882, 0.0021327000577002764, 0.0007502950029447675, -0.019453950226306915, 0.031802479177713394, -0.0019607949070632458, 0.006016685627400875, 0.012849921360611916, 0.01343726459890604, 0.002143444260582328, 0.0011531980708241463, 0.019955340772867203, -0.004226005170494318, -0.002743322169408202, -0.013630657456815243, -0.006414216477423906, 0.004648605827242136, 0.01817898638546467, 0.010507711209356785, -0.011868628673255444, 0.005848361644893885, 0.003493617055937648, 0.0014289628015831113, 0.0068332357332110405, -0.021330581977963448, -0.00891758780926466, 0.019024185836315155, 0.015285246074199677, 0.01783517561852932, 0.01660318672657013, -0.011574956588447094, -0.0003713423211593181, -0.020041292533278465, -0.007857505232095718, 0.015270921401679516, 0.0002160008007194847, -0.025556588545441628, -0.003993216902017593, -0.013523217290639877, 0.009376001544296741, -0.015872590243816376, 0.017104577273130417, 0.025155475363135338, 0.00067419110564515, -0.009060841985046864, -0.015500128269195557, 0.0024944175966084003, -0.021946577355265617, 0.0024657666217535734, -0.01799275539815426, -0.018966885283589363, -0.02580012008547783, 0.0046915821731090546, 0.006331845186650753, 0.014970086514949799, -0.013537542894482613, -0.008566614240407944, -0.012370019219815731, 0.005690781865268946, -0.005021067336201668, 0.0017682967009022832, -0.011582119390368462, 0.014726554043591022, -0.009540744125843048, 0.00281136785633862, -0.014941436238586903, -0.0017575526144355536, -0.008631078526377678, -0.01965450681746006, 0.005991615820676088, -0.018136009573936462, -0.02823544666171074, -0.009311537258327007, -0.004999579396098852, 0.018164660781621933, 0.0033646882511675358, -0.00550813227891922, 0.008967726491391659, 0.012047696858644485, -0.007116163149476051, 0.0028006238862872124, 0.010350131429731846, -0.0022455130238085985, 0.0015408803010359406, 0.010536362417042255, 0.031143510714173317, 0.006546726915985346, 0.005826873239129782, 0.0029707385692745447, -0.010149575769901276, 0.013000338338315487, -0.00842336006462574, -0.0003330665349494666, 0.009010703302919865, -0.017906801775097847, 0.0424606092274189, 0.0015068574575707316, -0.019396647810935974, -0.005103438626974821, -0.035040032118558884, -0.019969666376709938, -0.00020648780628107488, -0.000701051321811974, 0.0050604622811079025, -0.0274905227124691, 0.03234684839844704, -0.01582961343228817, 0.003699545282870531, -0.0001473953598178923, 0.00257320748642087, 0.006450030021369457, 0.019425299018621445, 0.0004790069651789963, 0.017348110675811768, 0.016373980790376663, -0.0039359149523079395, -0.004970928188413382, -0.017720570787787437, -0.0075136939994990826, 0.007492206059396267, -0.020743239670991898, 0.007485043257474899, -0.0005640642484650016, -0.001311673317104578, 0.0035562908742576838, 0.019754784181714058, 0.00324829388409853, -0.01780652441084385, 0.013945817947387695, -0.012699504382908344, 0.01625937595963478, -0.018035730347037315, -0.02906632050871849, 0.006951420567929745, 0.00017347214452456683, -0.0015158108435571194, -9.943870827555656e-05, 0.0033378279767930508, -0.007836016826331615, 0.006059661973267794, -0.007742901332676411, 0.008459173142910004, -0.01941097341477871, -0.0232358667999506, -0.010049297474324703, 0.0009311537141911685, -0.0012946617789566517, 0.02598635107278824, -0.013802562840282917, -0.01115235686302185, -0.02283475361764431, -0.008896099403500557, 0.008330244570970535, 0.006159939803183079, -0.003271572757512331, -0.005690781865268946, 0.009805765002965927, 0.008573777042329311, -0.0019518414046615362, 0.005597666371613741, -0.0005215356359258294, -0.01978343538939953, -0.012656527571380138, -0.010163901373744011, -0.0157006848603487, 0.01385270245373249, 0.003996798302978277, 0.025413334369659424, 0.00649658776819706, 0.011474679224193096, -0.021144352853298187, -0.006188591010868549, -0.005687200464308262, 0.025370357558131218, 0.017634619027376175, 0.007671274244785309, -0.016187749803066254, 0.01836521551012993, 0.005336226895451546, 0.016058819368481636, -0.004179447423666716, 0.013630657456815243, 0.0021864206064492464, 0.01200472004711628, -0.010436084121465683, 0.0033861761912703514, -0.021860623732209206, -0.008924750611186028, 0.011682397685945034, -0.02107272483408451, -0.02227606251835823, 0.0031605504918843508, 0.018909582868218422, 0.014669252559542656, -0.005243111867457628, 0.024310274049639702], "06721709-3201-4bf4-ae18-7081ae33a6b8": [-0.02421274222433567, -0.006697944365441799, -0.014843165874481201, 0.016187556087970734, -0.036764957010746, -0.007222668267786503, -0.004945435561239719, 0.011166670359671116, -0.023225028067827225, 0.0318538174033165, 0.0024589996319264174, 0.013848591595888138, 0.029055291786789894, 0.0014266999205574393, 0.0091912392526865, -0.010336714796721935, -0.022593988105654716, 0.020234445109963417, -0.013121522963047028, -0.016489358618855476, 0.07309093326330185, -0.04450206086039543, -0.044694118201732635, 0.0011926318984478712, 0.02688780426979065, -0.016914624720811844, -0.019507376477122307, -0.003748516784980893, -0.04118223860859871, 0.005669074133038521, -0.008251538500189781, -0.004444718826562166, 0.029055291786789894, 0.007723385002464056, 0.0035736088175326586, -0.04686160385608673, -0.009664519689977169, 0.006084051914513111, -0.0301801897585392, -0.001894835731945932, 0.010480756871402264, 0.012977481819689274, 0.003055744105949998, 0.012586510740220547, -0.018190423026680946, 0.011173529550433159, -0.020796895027160645, 0.012277849949896336, -0.0008813987369649112, 0.01602293737232685, 0.019027236849069595, 0.028314504772424698, -0.03684726729989052, 0.00808005966246128, 0.04252662882208824, -0.0076067796908319, 0.005658785346895456, 0.0971253365278244, 0.014280716888606548, -0.027738338336348534, -0.014733419753611088, -0.04776700958609581, 0.02205897495150566, 0.0068076904863119125, 0.005082618445158005, 0.022662578150629997, -0.00037425151094794273, 0.06809747964143753, -0.006001742091029882, 0.0003652488812804222, -0.016955779865384102, 0.008333847858011723, -0.052431218326091766, 0.03317077085375786, -0.0024675733875483274, -0.003000871045514941, 0.0066087753511965275, 0.01792977564036846, 0.020563684403896332, -0.017435917630791664, 0.0065744798630476, -0.012860876508057117, 0.03841115161776543, 0.008731677196919918, 0.03728625178337097, 0.014486490748822689, -0.018341323360800743, -0.0403042696416378, -0.03388412296772003, -0.035886988043785095, 0.02248424105346203, 0.025831498205661774, 0.018204141408205032, -0.014980348758399487, -0.009266690351068974, 0.02348567545413971, -0.026311637833714485, 0.007490174379199743, -0.0011986336903646588, -0.03983784839510918, -0.008189805783331394, 0.03761548921465874, -0.015282150357961655, 0.017147835344076157, -0.015035221353173256, -0.01869799941778183, 0.012229835614562035, 0.04617568850517273, -0.031936127692461014, -0.010693389922380447, 0.0055867647752165794, -0.03841115161776543, 0.011441035196185112, -0.004938576370477676, -0.04392589256167412, -0.007538188248872757, -0.023225028067827225, -0.0033712643198668957, 0.014376744627952576, -0.044803861528635025, 0.023993249982595444, -0.03385668620467186, 0.04345947131514549, 0.008313270285725594, -0.013505634851753712, 0.006252100691199303, -0.02889067307114601, 0.06299428641796112, 0.02927478402853012, 0.01626986637711525, -0.005655355751514435, -0.009986898861825466, 0.028177322819828987, -0.018547099083662033, 0.02491237409412861, 0.03399386629462242, 0.02938452921807766, 0.062280938029289246, -0.018012085929512978, 0.035228513181209564, -0.03544800356030464, -0.017463354393839836, 0.0039474316872656345, -0.000630611611995846, -0.0025618865620344877, -0.0057239471934735775, -0.012209258042275906, 0.025680597871541977, -0.02386978641152382, -0.0014026928693056107, -0.03835627809166908, -0.00015625964442733675, -0.04842548444867134, -0.011427316814661026, 0.031277649104595184, -0.0008925448055379093, 0.0011771988356485963, 0.02185320109128952, -0.0150900948792696, 0.054790761321783066, 0.015076376497745514, -0.017010651528835297, -0.00958906952291727, 0.035749807953834534, 0.0015132963890209794, 0.00543929310515523, 0.02507699467241764, 0.0355851873755455, -0.008059482090175152, 0.012003484182059765, 0.0262979194521904, 0.01740848273038864, 0.05114170163869858, 0.005871418863534927, -0.007037471514195204, -0.006900288630276918, 0.060031142085790634, 0.020110981538891792, 0.047300588339567184, -0.027875520288944244, -0.012552214786410332, -0.010611080564558506, 0.03797216713428497, 0.01007606741040945, -0.010357292369008064, 0.0019514235900714993, 0.015899471938610077, 0.025886371731758118, 0.026860369369387627, 0.011722260154783726, -0.004146346356719732, -0.027313072234392166, -0.005672503728419542, 0.0094861825928092, -0.03945373743772507, -0.04000246897339821, 0.016434485092759132, -0.04162122309207916, 0.016420766711235046, 0.030811229720711708, 0.0046813590452075005, -0.01633845642209053, -0.006197227630764246, 0.0497424378991127, 0.017737720161676407, 0.0241853054612875, -0.010947178117930889, -0.02777949348092079, 0.02532392181456089, -0.03262203931808472, 0.049276016652584076, -0.04170353338122368, 0.03429567068815231, -0.023499393835663795, -0.01065223477780819, 0.014253280125558376, 0.0033781235106289387, 0.025968682020902634, -0.011612514033913612, 0.020796895027160645, -0.013162678107619286, -0.02410299703478813, 0.004314395133405924, 0.005154639016836882, -0.022525396198034286, -0.004897421691566706, -0.045846451073884964, 0.03146970644593239, 0.012154385447502136, -0.008944310247898102, -0.007517610676586628, -0.012771707028150558, 0.05745210498571396, -0.0539676658809185, -0.029329657554626465, 0.012353300116956234, 0.0029391387943178415, -0.002918561454862356, 0.008032046258449554, -0.013924041762948036, -0.01637961156666279, 0.0035324539057910442, -0.00040061629260890186, -0.017490791156888008, -0.02875348925590515, 0.016077810898423195, -0.006090911105275154, 0.04472155496478081, 0.005456441082060337, 0.003916565328836441, -0.006996316835284233, 0.02820475958287716, -0.010624798946082592, 0.03094841167330742, -0.015583951957523823, 0.04120967537164688, 0.021181005984544754, -0.04606594517827034, 0.005795968230813742, 0.0046882182359695435, 0.020371627062559128, 0.019726868718862534, 0.01087858621031046, 0.019329039379954338, 0.017806312069296837, -0.01963084191083908, 0.031003285199403763, -0.027079861611127853, 0.03292384371161461, 0.034405417740345, 0.01616011932492256, -0.006306973751634359, -0.018588252365589142, 0.035640060901641846, -0.014664828777313232, -0.02210013009607792, -0.010954037308692932, -0.011756555177271366, 0.022292185574769974, -0.012860876508057117, -0.02421274222433567, -0.056464388966560364, 0.028945544734597206, 0.008471030741930008, 0.019136983901262283, 0.0001324670301983133, -0.02289578877389431, -0.042855869978666306, -0.030920976772904396, -0.04318510740995407, 0.004701936151832342, -0.0048391190357506275, 0.005970876198261976, 0.06156758591532707, -0.0028619735967367887, -0.000520436791703105, 0.01880774460732937, 0.0029888676945120096, 0.027875520288944244, -0.028232194483280182, -0.02303297258913517, -0.019795460626482964, 0.012387596070766449, -0.0015741712413728237, 0.009204957634210587, -0.01276484876871109, 0.04208764433860779, 0.03821909427642822, 0.030097879469394684, 0.0007429299294017255, 0.020934076979756355, -0.003422707784920931, -0.030866103246808052, -0.0018073817482218146, -0.018588252365589142, 0.0070786261931061745, -0.03478952869772911, -0.001759367878548801, -0.006680796388536692, -0.03407617658376694, -0.039947595447301865, -0.0023441091179847717, -0.04727315157651901, 0.05171786993741989, 0.043377164751291275, -0.036271099001169205, 0.015446770004928112, -0.03555775061249733, -0.03146970644593239, -0.00579253863543272, -0.023403365164995193, -0.0011814858298748732, -0.02296438068151474, 0.006499029230326414, 0.009376436471939087, -0.01529586873948574, -0.0391245000064373, -0.01835504174232483, -0.022251030430197716, -0.0070854853838682175, -0.030070442706346512, -0.015062658116221428, 0.007449019700288773, 0.006495599634945393, -0.004588760435581207, -0.02210013009607792, -0.010768840089440346, 0.0245282631367445, 0.00893059279769659, 0.004249233286827803, 0.0007690804195590317, -0.009355858899652958, 0.01727129891514778, -0.020179571583867073, -0.010556207038462162, -0.030235063284635544, -0.02078317664563656, 0.004016023129224777, 0.01312838215380907, -0.005127202719449997, -0.018780309706926346, -0.04647749289870262, -0.0005924577126279473, -0.01131071150302887, 0.00921181682497263, 0.014335590414702892, 0.0008518187096342444, 0.00820352416485548, -0.008910015225410461, -0.027559999376535416, -0.04450206086039543, 0.009726252406835556, -0.012709975242614746, 0.007894863374531269, -0.042060211300849915, -0.02480262890458107, 0.04299305006861687, -0.000178230315214023, 0.007462737616151571, 0.011290134862065315, 0.016173837706446648, 0.003271806985139847, -0.02282719872891903, 0.017820030450820923, 0.03898731619119644, -0.002045736648142338, 0.021414216607809067, 0.018780309706926346, -0.044035639613866806, 0.0004960010992363095, 0.001256936346180737, -0.006427008658647537, 0.00023664011678192765, -0.014788293279707432, 0.004064036998897791, -0.01890377327799797, 0.005651926156133413, 0.010665953159332275, 0.016146400943398476, 0.006265819072723389, -0.010028054006397724, -0.011612514033913612, -0.012881453149020672, -0.0003545314830262214, -0.008340707048773766, -0.03778010979294777, -0.021894356235861778, 0.0003069462545681745, -0.00938329566270113, 0.021277032792568207, 0.0070649078115820885, -0.017092961817979813, 0.01915070228278637, 0.04131942242383957, 0.011591936461627483, 0.027258198708295822, 0.0015921765007078648, 0.08543737232685089, -0.007881144993007183, -0.023883504793047905, 0.013066650368273258, 0.00344328535720706, 0.004321254324167967, 0.00764793436974287, -0.0013075224123895168, 0.028698615729808807, -0.01529586873948574, 0.017641693353652954, -0.013896604999899864, 0.0091912392526865, 0.030728919431567192, 0.026243045926094055, -0.012627665884792805, 0.0017533660866320133, -0.024336207658052444, -0.013341015204787254, 0.029494276270270348, -0.0032015007454901934, 0.004756809212267399, -0.008971747010946274, -0.0022720880806446075, 0.0188763365149498, -0.0010271553182974458, 0.0221687201410532, -0.05078502744436264, -0.03481696546077728, -0.02802642062306404, 0.03212818503379822, 0.010384729132056236, -0.010021194815635681, 0.0055661872029304504, -0.0055421800352633, -0.0443374402821064, 0.0011248979717493057, -0.019617123529314995, 0.012579651549458504, 0.04203277453780174, 0.016955779865384102, 0.01740848273038864, -0.03242998570203781, 0.016503077000379562, 0.031140469014644623, 0.050071679055690765, -0.023046690970659256, 0.034405417740345, -0.019123265519738197, 0.014198407530784607, -0.0299332607537508, 0.011955470778048038, 0.023293618112802505, -0.02938452921807766, 0.02130446955561638, -0.010021194815635681, 0.004290388431400061, 0.026476256549358368, 0.0010280127171427011, -0.031305085867643356, -0.010172096081078053, -0.009602787904441357, -0.0028345370665192604, -0.00536041334271431, -0.005878277588635683, 0.008525903336703777, -0.021880637854337692, -0.008560199290513992, 0.01410237979143858, -0.0407981276512146, 0.008244679309427738, -0.034048739820718765, 0.029741205275058746, 0.008484749123454094, 0.0028036709409207106, 0.002873977180570364, 0.03813678398728371, -0.026174455881118774, -0.009376436471939087, 0.020440218970179558, -0.026393948122859, 0.016763722524046898, -0.00492485798895359, -0.00562791945412755, -0.00476023880764842, 0.0010237257229164243, -0.05212941765785217, 0.017051806673407555, 0.013951478525996208, -0.01637961156666279, 0.02504955790936947, 0.023924659937620163, -0.02307412587106228, -0.02938452921807766, -0.004455007612705231, -0.004749950487166643, 0.029192473739385605, 0.007037471514195204, 0.00046342023415490985, -0.018821462988853455, -0.005168357398360968, 0.027601154521107674, 0.011571358889341354, -0.016804877668619156, -0.013745704665780067, -0.03835627809166908, 0.008697382174432278, -0.007970313541591167, -0.008258397690951824, -0.00925983116030693, -0.02223731204867363, 0.04710853099822998, -0.05407741293311119, 0.007778258062899113, -0.007654793560504913, -0.023362210020422935, 0.01380743645131588, 0.04041401669383049, 0.035091329365968704, -0.05127888545393944, 0.00814865157008171, 0.03506389260292053, 0.006725380662828684, -0.015433051623404026, 0.020303037017583847, 0.02094779536128044, -0.026764340698719025, -0.0019411349203437567, 0.004146346356719732, -0.0022566551342606544, -0.0009242683299817145, 0.0058885663747787476, 0.03369206562638283, -0.02941196598112583, 0.027038706466555595, -0.020179571583867073, 0.002484721364453435, 0.004568183328956366, -0.024720318615436554, -0.0355851873755455, -0.012428750284016132, -0.006687655579298735, -0.02407556027173996, -0.013437043875455856, 0.010974613949656487, 0.02126331441104412, -0.0035530314780771732, -0.0017027800204232335, -0.012826580554246902, -0.024926092475652695, -0.0036799253430217505, 0.006523036397993565, 0.024226460605859756, 0.005442722700536251, -0.00659848703071475, 0.02327990159392357, 0.018025804311037064, -0.00036374846240505576, 0.02573547139763832, 0.00023942664847709239, -0.000380896293791011, -0.015227277763187885, -0.031798943877220154, 0.042718686163425446, -0.025063276290893555, 0.01004177238792181, -0.03215562179684639, 0.003968008793890476, -0.0019188427831977606, -0.03624366223812103, -0.03673752024769783, -0.0030814658384770155, 0.00987029355019331, -0.03125021606683731, 0.017092961817979813, -0.014040647074580193, 0.006485311314463615, -0.030646611005067825, 0.02441851608455181, -0.00808005966246128, -0.007778258062899113, 0.009232394397258759, 0.03350001201033592, 0.029219910502433777, 4.096725024282932e-05, 0.021222161129117012, -0.04186815395951271, -0.03407617658376694, 0.01292260829359293, 0.01052877027541399, 0.007531329058110714, -0.016530513763427734, -0.0007973743486218154, -0.012415032833814621, -0.0018193853320553899, 0.019644560292363167, -0.007613638881593943, 0.01917813904583454, 0.011777132749557495, -0.014143534004688263, 0.03827396780252457, 0.00987029355019331, 0.023430801928043365, 0.0004535602347459644, -0.02695639617741108, 0.04963269457221031, -0.02445967122912407, 0.03045455552637577, 0.027848083525896072, -0.018478507176041603, 0.005206082481890917, -0.0006010315846651793, 0.019864052534103394, -0.006992887239903212, -0.023430801928043365, 0.0036181930918246508, -0.018327606841921806, 0.014733419753611088, -0.033637192100286484, -0.001485859858803451, -0.025173021480441093, 0.003666207194328308, -0.004122339654713869, 0.009150085039436817, -0.023581702262163162, -0.010432742536067963, 0.02223731204867363, -0.01806695945560932, 0.006255530286580324, 0.011578218080103397, 0.005014027003198862, 0.035228513181209564, 0.00202001491561532, -0.037203941494226456, 0.012613947503268719, -0.0030488851480185986, 0.026339074596762657, -0.013828014023602009, 0.0002417844661977142, -0.04016708955168724, 0.03742343559861183, 0.01399949286133051, -0.004928287584334612, 0.018533380702137947, -0.04474899172782898, 0.054406650364398956, 0.010487616062164307, 0.038767825812101364, 0.000503717630635947, -0.018601970747113228, 0.0013623954728245735, 0.004677929449826479, 0.011941752396523952, 0.01928788423538208, -0.011056924238801003, -0.01208579447120428, 0.00993888545781374, 0.03857576847076416, -0.009650801308453083, 0.004496162291616201, 0.01574857160449028, 0.0320458747446537, -0.029055291786789894, -0.029302220791578293, -0.02570803463459015, -0.0017130686901509762, 0.004962583538144827, -0.0044035641476511955, -0.016105245798826218, 0.0018022374715656042, 0.03599673509597778, -0.05114170163869858, -0.005871418863534927, -0.0016787730855867267, -0.003899417584761977, -0.012771707028150558, 0.040496326982975006, -0.014678546227514744, -0.0017113538924604654, 0.022017819806933403, -0.0110843600705266, 0.010364151559770107, 0.001681345165707171, -0.0011197535786777735, 0.011159811168909073, 0.012346440926194191, -0.012387596070766449, 0.029686331748962402, 0.0055867647752165794, -0.0019205574644729495, -0.02872605249285698, -0.022882070392370224, -0.00731869600713253, 0.0034861548338085413, 0.009945744648575783, 0.0061937980353832245, 0.03229280188679695, 0.0016401903703808784, 0.010912882164120674, -0.031140469014644623, 0.018752872943878174, -0.011002050712704659, 0.018862618133425713, 0.0065127476118505, 0.027285635471343994, -0.01216124463826418, -0.02963145822286606, -0.023005535826086998, 0.007291259244084358, -0.014335590414702892, -0.009630223736166954, -0.017614256590604782, 0.00016697704268153757, 0.014856884256005287, -0.02668203040957451, -0.024569418281316757, 0.0015355886425822973, 0.0150900948792696, -0.04568183049559593, 0.01856081560254097, 0.020838048309087753, -0.0008209525840356946, 0.03256716951727867, -0.013313579373061657, -0.020207008346915245, 0.014198407530784607, -0.01806695945560932, 0.01824529655277729, 0.010659093968570232, 0.011646809056401253, 0.008910015225410461, -0.011838865466415882, 0.0036490592174232006, 0.015323305502533913, -0.005291821900755167, -0.007853708229959011, -0.000630611611995846, -0.011091219261288643, -0.005257526412606239, 0.017257580533623695, -0.018739154562354088, -0.0070717670023441315, 0.031030721962451935, -0.016009218990802765, 0.0006340412073768675, -0.042965613305568695, 0.004876844119280577, -0.013937760144472122, 0.010734545066952705, -0.010501334443688393, 0.010576784610748291, 0.02591380849480629, 0.004427570849657059, 0.030674047768115997, 0.06485997140407562, -0.00476023880764842, 0.02282719872891903, -0.01476085651665926, -0.03854833170771599, 0.0027762344107031822, -0.015035221353173256, -0.012181822210550308, -0.019383912906050682, -0.00344328535720706, -0.05811058357357979, 0.02952171303331852, -0.03319820761680603, -0.005720517598092556, -0.03278665989637375, 0.024788910523056984, 0.010247546248137951, 0.00738042825832963, -0.0015518791042268276, 0.02900041826069355, 0.015391896478831768, -0.012806002981960773, -0.004629915580153465, -0.002088606357574463, -0.011715400964021683, 0.028122449293732643, -0.004458437208086252, -0.028369378298521042, 0.010604221373796463, -0.023979531601071358, -0.010048631578683853, 0.010707108303904533, 0.007586202118545771, -0.002664773492142558, -0.015350742265582085, 0.0025807491037994623, 0.0035667496267706156, -0.030728919431567192, -0.0188763365149498, -0.0002544310118537396, -0.011845724657177925, -0.01554279774427414, 0.016763722524046898, -0.01347819808870554, -0.012325863353908062, 0.007661652751266956, -0.008278974331915379, 0.036271099001169205, -0.00418750150129199, -0.027463972568511963, 0.014143534004688263, -0.004118910059332848, 0.020549966022372246, -0.01377314142882824, -0.009884011931717396, 0.03577724099159241, -0.006368706002831459, 0.004307535942643881, -0.020769458264112473, -0.01087858621031046, -0.030646611005067825, -0.0014138389378786087, 0.045736704021692276, -0.019342757761478424, 0.0207420215010643, 0.002148623811081052, 0.0304271187633276, -0.0055456096306443214, 0.02307412587106228, -0.0002304240333614871, -0.015199841000139713, 0.0013178110821172595, -0.024926092475652695, 0.0171066801995039, 0.007695948239415884, 0.011969189159572124, 0.005850841291248798, 0.012133807875216007, 0.05838494747877121, 0.011941752396523952, -0.013080368749797344, 0.0057102288119494915, 0.0020903211552649736, -0.00787428580224514, 0.026997551321983337, -0.025584569200873375, -0.005747954361140728, -0.015872035175561905, -0.0018296740017831326, 0.058220330625772476, 0.02348567545413971, 0.005988024175167084, -0.0027728048153221607, -0.013238128274679184, -0.007881144993007183, 0.012723693624138832, -0.007119780872017145, 0.02834194153547287, 0.03503645583987236, 0.03555775061249733, -0.013690831139683723, 0.03199100121855736, 0.015583951957523823, -0.012504201382398605, -0.008416157215833664, 0.019850334152579308, -0.005387849640101194, -0.01065223477780819, 0.01514496747404337, -0.013341015204787254, 0.021222161129117012, -0.011098078452050686, 0.015254713594913483, -0.005446152295917273, -0.000920838734600693, 0.005885136779397726, 0.011976048350334167, -0.02525533176958561, 0.007888004183769226, -0.0150900948792696, -0.007284400053322315, -0.009781125001609325, -0.01849222555756569, -0.01783374883234501, 0.03739599883556366, 0.005020886193960905, -0.008409298025071621, -0.008800269104540348, 0.0113793034106493, 0.008423016406595707, -0.04982474818825722, -0.026736903935670853, -0.009877152740955353, 0.06151271238923073, -0.02584521658718586, 0.030344808474183083, -0.009856575168669224, 0.02441851608455181, 0.026421384885907173, 0.01967199705541134, 0.026723185554146767, 0.0023029542062431574, -0.007791975978761911, 0.08291321247816086, 0.006697944365441799, 0.02067342959344387, -0.024830065667629242, 0.014026928693056107, -0.034185923635959625, 0.033911559730768204, 0.002807100536301732, 0.013992633670568466, 0.01581716351211071, -0.03635340929031372, 0.0033043876755982637, -0.029357092455029488, -0.013594803400337696, -0.017614256590604782, 0.010796276852488518, -0.033637192100286484, 0.003683354938402772, 0.01148219034075737, -0.0048596966080367565, 0.007654793560504913, -0.006529895588755608, -0.00482197105884552, -0.0005435863859020174, -0.036929577589035034, -0.026489974930882454, -0.011626232415437698, -0.01208579447120428, 0.03415848687291145, 0.013183255679905415, -0.03333539143204689, -0.03819165751338005, -0.030344808474183083, -0.008230960927903652, 0.013265565037727356, -0.01072082668542862, 0.005699940491467714, 0.015913190320134163, -0.02927478402853012, 0.01385545078665018, -0.00991830788552761, 0.0035324539057910442, -0.0032220780849456787, -0.01423956174403429, -0.00276251626200974, 0.020138416439294815, 0.011948611587285995, -0.0001067988559952937, -0.004996879026293755, 0.020303037017583847, -0.010329855605959892, 0.015556516125798225, -0.025762906298041344, 0.008841423317790031, -0.023471957072615623, 0.012003484182059765, -0.01963084191083908, 0.0028791215736418962, 0.015830881893634796, 0.02230590395629406, 0.007160936016589403, -0.023718886077404022, -0.0025944674853235483, -0.0007253534276969731, -0.031826380640268326, 0.014609955251216888, 0.0041909306310117245, -0.021427934989333153, -0.030152752995491028, -0.03605160862207413, 0.028698615729808807, 0.0320458747446537, -0.007037471514195204, 0.011221542954444885, -0.02723076194524765, 0.030811229720711708, 0.02182576432824135, -0.012778566218912601, 0.009986898861825466, -0.014747138135135174, -0.001683917362242937, 0.000976569252088666, -0.027450254186987877, -0.006811120081692934, -0.011626232415437698, -0.002515587490051985, 0.0059228623285889626, 0.01599550060927868, -0.028451688587665558, 0.007373569067567587, 0.04167609661817551, -0.014143534004688263, 0.01904095523059368, 0.023362210020422935, 0.00011403310054447502, -0.012517919763922691, -0.019246729090809822, -0.007167795207351446, -0.016900906339287758, 0.02414415217936039, -0.02146909013390541, 0.03808191046118736, 0.03841115161776543, -0.0325397327542305, -0.002726505743339658, 0.04120967537164688, -0.0006764821009710431, -0.02514558471739292, 0.021866919472813606, -0.01347819808870554, -0.009445027448236942, 0.0013683972647413611, 0.0031123319640755653, 0.004400134552270174, 0.019932642579078674, -0.017490791156888008, -0.02625676430761814, -0.003457003505900502, -0.023197591304779053, -0.041923027485609055, 0.0033952712547034025, -0.04145660623908043, 0.010789417661726475, -0.06250043213367462, -0.021866919472813606, -0.009664519689977169, 0.00014886463759467006, -0.00507232965901494, -0.015776008367538452, 0.007222668267786503, 0.021551398560404778, -0.007428442128002644, 0.030125316232442856, -0.013409607112407684, -0.018368760123848915, 0.027271917089819908, 0.016393329948186874, -0.00787428580224514, 0.014939193613827229, -0.009280407801270485, -0.023814912885427475, -0.005905714351683855, -0.013738845475018024, -0.010837431997060776, 0.005106625147163868, 0.03350001201033592, -0.011427316814661026, -0.025406232103705406, 0.02400696836411953, -0.014582518488168716, 0.010768840089440346, 0.010048631578683853, -0.018643125891685486, 0.0010314423125237226, -0.0005131489597260952, 0.009369577281177044, 0.028259631246328354, 0.004671070259064436, 0.020975232124328613, -0.010521911084651947, 0.010748262517154217, 0.035612624138593674, 0.02067342959344387, -0.006896859034895897, -0.010295559652149677, -0.00787428580224514, -0.012325863353908062, -0.004019452724605799, 0.006571050267666578, -0.009102070704102516, -0.018396196886897087, 0.03275922313332558, 0.020234445109963417, 0.01436302624642849, -0.010467038489878178, -0.004012593533843756, -0.01616011932492256, 0.016873469576239586, 0.024679163470864296, 0.0379447303712368, -0.023787476122379303, 0.0034381409641355276, -0.018231578171253204, 0.035475440323352814, 0.026654595509171486, 0.007044330704957247, -0.013032354414463043, 0.0011317571625113487, -0.011578218080103397, 0.011345007456839085, 0.015268431976437569, 0.012147526256740093, 0.016420766711235046, 0.0006949160015210509, 0.00875911395996809, -0.015460488386452198, -0.01529586873948574, 0.03295128047466278, 0.006577909458428621, 0.02799898572266102, -0.00178851920645684, 0.0013332441449165344, -0.0016762008890509605, -0.03152457997202873, -0.005429004319012165, 0.016077810898423195, 0.019932642579078674, -0.020769458264112473, -0.013100946322083473, 0.014294435270130634, -0.03347257524728775, 0.0022412219550460577, -0.0009568491950631142, 0.012744271196424961, 0.007586202118545771, 0.027491409331560135, 0.010130940936505795, -0.0034158488269895315, 0.02500840276479721, 0.0031757790129631758, 0.0029580015689134598, 0.014829447492957115, -0.0076067796908319, 0.00770966662093997, -0.024500826373696327, 0.011111796833574772, -0.019960079342126846, -0.02087920345366001, -0.0021143280901014805, 0.015625108033418655, 0.017710283398628235, -0.0061663612723350525, -0.014225844293832779, 0.01216124463826418, 0.010535629466176033, -0.0018382478738203645, -0.028506560251116753, -0.015172404237091541, 0.0072706821374595165, 0.009348999708890915, -0.009657660499215126, -0.0010271553182974458, 0.005998312495648861, 0.005062040872871876, -0.004310965538024902, -0.014074943028390408, -0.013622240163385868, 0.006403001490980387, 0.015446770004928112, 0.017669128254055977, -0.007737102918326855, -0.0091912392526865, 0.010439601726830006, -0.0031174763571470976, 0.022923225536942482, -0.009410731494426727, 0.011159811168909073, 0.03174407035112381, -0.012565933167934418, -0.011111796833574772, 0.002350968075916171, 0.01541933324187994, -0.01443161815404892, -0.016708850860595703, -0.015460488386452198, 0.002052595838904381, -0.00220692646689713, 0.0034484295174479485, 0.006152643356472254, -0.02432248927652836, -0.012291568331420422, 0.012044639326632023, -0.01901351846754551, -0.003038596361875534, 0.00457847211509943, 0.0384385883808136, 0.02373260259628296, -0.004972872324287891, -0.03591442480683327, -0.02212756685912609, 0.013533071614801884, -0.01692834310233593, -0.007339273113757372, -0.005669074133038521, -0.00407775491476059, 0.019191857427358627, 0.006368706002831459, 0.013896604999899864, -0.013834873214364052, -0.012785425409674644, -0.03306102752685547, -0.010350433178246021, -0.019274165853857994, 0.0028654031921178102, -0.008251538500189781, -0.028369378298521042, -0.0042252265848219395, 0.01039158832281828, -0.030756356194615364, -0.004557894542813301, -0.017147835344076157, 0.028945544734597206, -0.006258959881961346, -0.03802703693509102, 0.025900090113282204, -0.0016984930261969566, -0.0018879766575992107, 0.00628639617934823, 0.0042389449663460255, -0.021523961797356606, 0.00498659024015069, -0.003007730236276984, 0.009650801308453083, 0.023362210020422935, -0.0001331100647803396, -0.03111303225159645, 0.0066430713050067425, 0.0007909438572824001, 0.03218305483460426, 0.005624489858746529, 0.02087920345366001, -0.016077810898423195, 0.004705365747213364, -0.009390154853463173, -0.02820475958287716, -0.0025944674853235483, 0.008491608314216137, 0.00357703841291368, -0.0023406795226037502, -0.02344452030956745, 0.027697183191776276, 0.009472464211285114, -0.05391279235482216, 0.0036422000266611576, -0.0021023245062679052, 0.0007364994962699711, -0.005456441082060337, -0.009294126182794571, -0.003830826375633478, -0.0011814858298748732, -0.014349307864904404, 0.004948865156620741, -0.024692881852388382, 0.02307412587106228, -0.0009216961334459484, 0.026928959414362907, 0.003187782596796751, 0.009102070704102516, 0.004026311449706554, 0.009150085039436817, -0.015268431976437569, -0.001234644092619419, 0.012408173643052578, -0.018958646804094315, -0.0010717397090047598, -0.0011463327100500464, -0.0013160962844267488, -0.03330795466899872, 0.003789671463891864, 0.02262142300605774, -0.014939193613827229, 0.014280716888606548, 0.004815111868083477, -0.005974305793642998, -0.009691956453025341, -0.01672256924211979, 0.010364151559770107, 0.012778566218912601, -0.007497033569961786, -0.00688657071441412, 0.017737720161676407, 0.008011468686163425, -0.0035067321732640266, 0.009081493131816387, -0.0001336459390586242, -0.01651679538190365, -0.002831107471138239, -0.005562757607549429, -0.007737102918326855, 0.03278665989637375, -0.01423956174403429, 0.005885136779397726, -0.027217043563723564, -0.03429567068815231, 0.010851150378584862, 0.04554465040564537, -0.035338256508111954, 0.03264947608113289, 0.012346440926194191, 0.008265256881713867, -0.01554279774427414, 0.016708850860595703, -0.0061869388446211815, -0.028972981497645378, -0.018601970747113228, -0.025694316253066063, -0.013539930805563927, -0.008066341280937195, 0.0007142073009163141, 0.00770966662093997, -0.041127368807792664, 0.0029974414501339197, 0.012291568331420422, -0.010960896499454975, -0.015693698078393936, 0.006282966583967209, 0.005154639016836882, 0.007428442128002644, 0.01541933324187994, -0.005326117388904095, -0.015391896478831768, 0.019850334152579308, 0.00029987277230247855, -0.009012902155518532, 0.025447387248277664, 0.024583136662840843, 0.017257580533623695, 0.016708850860595703, 0.002807100536301732, 0.003518735757097602, -0.00342099298723042, 0.030152752995491028, -0.0004280528228264302, 0.02407556027173996, -0.013402747921645641, -0.0008093778160400689, 0.0008149508503265679, -0.018080677837133408, -0.0002209927188232541, -0.0014781433856114745, 0.011571358889341354, 0.0005598767893388867, -0.006005171686410904, -0.015570234507322311, 0.003906277008354664, -0.015254713594913483, 0.00113861623685807, 0.004184071905910969, 0.013718267902731895, 0.00449273269623518, 0.016571667045354843, -0.002014870522543788, -0.0466969832777977, 0.0043624090030789375, 0.013107804581522942, 0.025227895006537437, -0.008162369020283222, 0.0034861548338085413, -0.01602293737232685, -0.018821462988853455, -0.007387287449091673, 0.013402747921645641, 0.00529868109151721, 0.010933459736406803, 0.019301602616906166, -0.01375256385654211, -0.0012466475600376725, -0.008519044145941734, -0.007174653932452202, -0.004365838598459959, -0.005898855160921812, -0.009561632759869099, 0.005799397826194763, 0.0031552016735076904, 0.02611958235502243, -0.007030612323433161, 0.0052883923053741455, 0.009554773569107056, 0.006306973751634359, -0.0052815331146121025, 0.022813480347394943, 0.01030241884291172, -0.01358108501881361, 0.008951169438660145, 0.02563944272696972, 0.008594495244324207, -0.020316755399107933, -0.018533380702137947, 0.029219910502433777, -0.01131071150302887, 0.012600229121744633, -0.0007206377340480685, -0.02777949348092079, -0.021167287603020668, 0.011653668247163296, -0.010741403326392174, 0.023005535826086998, -0.03108559548854828, -0.011475331149995327, 0.031936127692461014, -0.02175717242062092, -0.012579651549458504, -0.035475440323352814, 0.0013701120624318719, -0.01135872583836317, -0.009390154853463173, 0.0026339073665440083, -0.0034038452431559563, 0.012565933167934418, -0.032347675412893295, 0.006855704355984926, 0.018958646804094315, 3.493871190585196e-05, 0.010974613949656487, -0.012353300116956234, -0.016503077000379562, -0.022703733295202255, -0.018821462988853455, -0.0353931300342083, -0.007572483737021685, -0.004931717179715633, -0.0186294075101614, 0.009753688238561153, -0.007586202118545771, -0.013244987465441227, -0.01246990542858839, -0.008251538500189781, -0.0008543908479623497, -0.007428442128002644, -0.017737720161676407, -0.013985774479806423, -0.008038905449211597, -0.020769458264112473, -0.004725943319499493, -0.007654793560504913, 0.00608062231913209, -0.00482197105884552, -0.01208579447120428, -0.0034192781895399094, 0.03610648214817047, 0.006951732095330954, -0.007737102918326855, -0.0403042696416378, 0.0009302700636908412, -0.002546453382819891, 0.023540547117590904, -0.011214683763682842, -0.03690214082598686, -0.009431309066712856, -0.01588575355708599, 0.03542056679725647, 0.0068008312955498695, -0.03478952869772911, 0.0004308393399696797, 0.0054598706774413586, 0.027724619954824448, 0.008697382174432278, -0.028972981497645378, -0.00015625964442733675, -0.020028671249747276, -0.021496525034308434, -0.014417899772524834, -0.004485873505473137, -0.005778820253908634, 0.011832006275653839, -0.006509318016469479, 0.012751130387187004, 0.02078317664563656, -0.0070786261931061745, -0.030509427189826965, 0.017627974972128868, -0.015666261315345764, -0.015131249092519283, -0.015762289986014366, -0.03251229599118233, -0.020495092496275902, 0.0031997859477996826, -0.0006790542392991483, 0.0096096470952034, 0.008004609495401382, 0.008011468686163425, 0.03097584843635559, 0.016887187957763672, 0.010672812350094318, -0.01717527210712433, 0.010871727019548416, -0.00513406191021204, 0.022388212382793427, -0.008731677196919918, 0.013828014023602009, -0.025968682020902634, -0.021702300757169724, 0.0299332607537508, 0.03264947608113289, 0.011166670359671116, 0.012476764619350433, 0.012222976423799992, -0.02954914979636669, 0.0094861825928092, 0.009774265810847282, -0.038795262575149536, -0.011955470778048038, 0.002258369931951165, 0.02771090157330036, 0.006862563546746969, 0.00426638126373291, -0.00022163576795719564, 0.007304977625608444, -0.006872852332890034, -0.016009218990802765, 0.012284709140658379, 0.014802010729908943, -0.0017679417505860329, -0.0037931010592728853, 0.0016136112390086055, 0.014321872033178806, 0.011653668247163296, 0.011564499698579311, -0.006687655579298735, 0.023883504793047905, -0.0007665082230232656, -0.015007785521447659, 0.020303037017583847, -0.019617123529314995, 0.03413105010986328, -0.002985438099130988, 0.034981582313776016, 0.007716525811702013, -0.007003175560384989, -0.008443593978881836, -0.006104629021137953, 0.03347257524728775, 0.0015767434379085898, 0.006053185556083918, -0.0030488851480185986, -0.02105754055082798, 0.019411349669098854, 0.0010760265868157148, -0.011118656024336815, -0.004372697789222002, 0.003434711368754506, 0.01345762051641941, -0.0022189298179000616, 0.0032906695269048214, 0.003518735757097602, 0.0010014335857704282, -0.004297247622162104, -0.0061663612723350525, -0.00029194189119152725, 0.0172027088701725, 0.0010443031787872314, -0.0201521348208189, -0.018890054896473885, -0.009102070704102516, -0.0044035641476511955, 0.00863564945757389, 0.008128073997795582, -0.01842363364994526, -0.023979531601071358, 0.002229218604043126, 0.0028585440013557673, 0.006265819072723389, -0.012435609474778175, -0.004081184510141611, -0.003045455552637577, 0.0026853508315980434, 0.013594803400337696, 0.013635958544909954, 0.017010651528835297, 0.0032443704549223185, 0.006125206593424082, -0.027313072234392166, 0.00016751291695982218, -0.004959153942763805, -0.01960340514779091, -0.017285017296671867, -0.011735978536307812, 0.003463862696662545, 0.07325555384159088, -0.001554451184347272, -0.004869984928518534, 0.007867426611483097, 0.023609139025211334, -0.006876281928271055, -0.004976301919668913, 0.026805495843291283, 0.017161553725600243, -0.01876659132540226, -0.007325555197894573, -0.004249233286827803, 0.005631349049508572, -0.001857110532000661, -0.012168103829026222, 0.007805694360285997, 0.020591119304299355, 0.018821462988853455, -0.012511060573160648, 0.020207008346915245, 0.028918107971549034, -0.008951169438660145, 0.006056615151464939, -0.01181142870336771, -0.0037313688080757856, 0.015529079362750053, 0.016900906339287758, 0.03262203931808472, 0.011475331149995327, 0.00682483846321702, 0.0017850896110758185, 0.013025495223701, -0.01654423028230667, -0.022978099063038826, -0.00357703841291368, 0.016846032813191414, -0.02754628285765648, 0.014527645893394947, 0.005367272533476353, 0.017737720161676407, -0.007003175560384989, -0.013848591595888138, 0.009595928713679314, 0.008244679309427738, 0.0091912392526865, -0.0016779156867414713, -0.009904589504003525, -0.007023753132671118, 0.014911756850779057, -0.022045256569981575, -0.016393329948186874, 0.008251538500189781, 0.004084614105522633, 0.014225844293832779, 0.01347819808870554, -0.006070333532989025, 0.014335590414702892, -0.007970313541591167, -0.00094313092995435, 0.0007566481945104897, -0.0005028602317906916, -0.010130940936505795, -0.005984594579786062, -0.029604021459817886, -0.002949427580460906, -0.017806312069296837, 0.0064510153606534, -0.007497033569961786, -0.006694514770060778, 0.026489974930882454, -0.005394708830863237, 0.033719502389431, 0.012524778954684734, -0.025200458243489265, -0.008745395578444004, 0.010281842201948166, 0.021249597892165184, -0.017353609204292297, -0.0007309264619834721, 0.005429004319012165, 0.0028996989130973816, -0.0020543106365948915, -0.007620497606694698, -0.018231578171253204, -0.001441275468096137, -0.016530513763427734, 0.031058158725500107, -0.012682538479566574, 0.0043624090030789375, -0.027669746428728104, -0.004914569668471813, 0.02348567545413971, -0.016626540571451187, 0.011921174824237823, 0.0029648607596755028, 0.0032872399315238, -0.009582210332155228, -0.009691956453025341, 0.03245742246508598, 0.008052622899413109, 0.004962583538144827, 0.0013752563390880823, -0.0010837431764230132, 0.0046402039006352425, -0.005981164984405041, 0.0037931010592728853, 0.004592190030962229, 0.025954963639378548, -0.006012030877172947, 0.0021606271620839834, -0.010316137224435806, -0.013903464190661907, -0.023115281015634537, -0.014651110395789146, -0.031414832919836044, 0.0025481681805104017, -0.006958591286092997, 0.0028242485132068396, 0.0006541899056173861, -0.006811120081692934, 0.020659711211919785, 0.004935146775096655, -0.004996879026293755, -0.005641637835651636, -9.712641258374788e-06, 0.013066650368273258, -0.006694514770060778, -0.007743962109088898, -0.03289640694856644, 0.015913190320134163, 0.01790233887732029, 0.0094861825928092, -0.015638824552297592, -0.008313270285725594, 0.010432742536067963, -0.007304977625608444, -0.009863434359431267, -0.01059736218303442, 0.007311836816370487, -0.0006670507718808949, 0.011756555177271366, -0.0033146764617413282, -0.0013418181333690882, 0.024720318615436554, -0.018368760123848915, -0.02487121894955635, -0.021702300757169724, -0.009355858899652958, 0.03256716951727867, -0.011886878870427608, 0.01602293737232685, -0.03264947608113289, -0.015282150357961655, 6.607275281567127e-05, 0.000920838734600693, 0.012895171530544758, -0.02410299703478813, -0.008121214807033539, 0.00898546539247036, 0.0005813115858472884, 0.016873469576239586, 0.03816422075033188, -0.019246729090809822, -0.01006234996020794, -0.005926291923969984, -0.019713150337338448, -0.012044639326632023, 0.006749387830495834, 0.011832006275653839, 0.0028996989130973816, 0.009204957634210587, 0.006375565193593502, -0.016009218990802765, -0.006509318016469479, 0.005367272533476353, 0.015803445130586624, -0.007298118434846401, 0.016503077000379562, -0.007551906630396843, 0.019754305481910706, 0.01345762051641941, -0.012044639326632023, -0.010734545066952705, -0.004098332487046719, 0.016969498246908188, -0.0051031955517828465, 0.017230143770575523, 0.002501869108527899, -0.007160936016589403, 0.010172096081078053, -0.017188990488648415, 0.010954037308692932, 0.015268431976437569, -0.006732239853590727, 0.003007730236276984, 0.009328422136604786, -0.006368706002831459, 0.007888004183769226, 0.01679115928709507, -0.004729372914880514, -0.00033952711964957416, 0.005665644537657499, 0.010775699280202389, -0.017614256590604782, -0.023128999397158623, -0.012559073977172375, -0.01814926788210869, -0.02355426549911499, -0.015776008367538452, -0.01032299641519785, -0.06442098319530487, -0.029494276270270348, 0.005398138426244259, 0.014225844293832779, -0.011976048350334167, -0.00971253402531147, 0.02380119450390339, 0.0018159557366743684, 0.036271099001169205, 0.014541364274919033, 0.006670507602393627, 0.015872035175561905, -0.011242120526731014, -0.0070923445746302605, 0.01016523689031601, -0.011393021792173386, 0.009465605020523071, 0.009842856787145138, 0.01588575355708599, -0.004314395133405924, -0.014623673632740974, 0.006835126783698797, -0.0009148370008915663, -0.0063446988351643085, 0.01170854177325964, 0.0258040614426136, 0.014609955251216888, -0.0034930140245705843, -0.012428750284016132, 0.0016984930261969566, -0.0025052987039089203, 0.012915749102830887, -0.00870424136519432, 0.0021880636923015118, 0.012895171530544758, -0.019383912906050682, 0.01672256924211979, 0.001879402669146657, -0.0017233573598787189, -2.7570502425078303e-05, 0.03687470406293869, -0.0011171814985573292, 0.006526465993374586, 0.007901722565293312, 0.0054735890589654446, 0.024267615750432014, 0.026270482689142227, 0.011530203744769096, 0.0028465406503528357, 0.001227785018272698, -0.006015460472553968, 0.0028482554480433464, 0.007284400053322315, -0.015940627083182335, 0.020934076979756355, 0.02455569989979267, -0.029329657554626465, 0.012908889912068844, -0.014843165874481201, 0.02709357999265194, -0.011832006275653839, 0.01541933324187994, 0.012565933167934418, 0.013738845475018024, -0.004280099645256996, 0.008505325764417648, 0.01616011932492256, -0.023595420643687248, 0.0017002078238874674, 0.0037622349336743355, -0.0008046621805988252, 0.01443161815404892, -0.003340398194268346, -0.022360777482390404, 0.0018742583924904466, -0.02380119450390339, -0.017422201111912727, -0.0023029542062431574, -0.016900906339287758, -0.004729372914880514, -0.003367834724485874, 0.004468725994229317, 0.02799898572266102, 0.03402130305767059, -0.010713967494666576, -0.025886371731758118, 0.0033318244386464357, 0.0006104629137553275, 0.018505943939089775, 0.008642508648335934, -0.018752872943878174, 0.0206459928303957, 0.0039131357334554195, -0.012010343372821808, 0.030728919431567192, 0.0023338203318417072, 0.0012955189449712634, -0.017573101446032524, -0.008128073997795582, 0.016557948663830757, -0.0019960079807788134, 5.792752926936373e-05, -0.022017819806933403, 0.010590502992272377, -0.010727685876190662, -0.006012030877172947, 0.02702498808503151, 0.004173783119767904, -0.0010374439880251884, 0.005226660054177046, 0.01049447525292635, 0.0022257890086621046, 0.012346440926194191, 0.026736903935670853, 0.008813987486064434, 0.02199038304388523, 0.01908211037516594, 0.016214992851018906, -0.003988586366176605, 0.013485057279467583, -0.0007600777898915112, -0.004242374561727047, -0.017710283398628235, 0.00418750150129199, -0.021071258932352066, 0.01703808829188347, 0.0032615181989967823, -0.005000308621674776, -0.00865622702986002, 0.014609955251216888, -0.02927478402853012, -0.011269557289779186, 0.009623364545404911, -0.015583951957523823, -0.0051443506963551044, 0.018752872943878174, 0.011619373224675655, 0.0015998929738998413, 0.01385545078665018, 0.042718686163425446, 0.015872035175561905, -0.0019068391993641853, 0.016983216628432274, 0.011365585029125214, -0.029219910502433777, 0.0008753969450481236, -0.00521294167265296, 0.008621931076049805, 0.02022072672843933, -0.0011934892972931266, -0.017751438543200493, 0.023183872923254967, -0.009095211513340473, -0.022923225536942482, 0.017888620495796204, 0.021839482709765434, -0.002613330027088523, -0.00744216050952673, -0.011777132749557495, -0.008793409913778305, -0.0075450474396348, -0.030344808474183083, 0.010110363364219666, -0.022196156904101372, -0.01592690870165825, 0.0018365330761298537, -0.0030797510407865047, 0.0017833748133853078, -0.004221796989440918, 0.01629730314016342, 0.004626485984772444, 0.014911756850779057, -0.0002612901444081217, 0.01423956174403429, 0.012408173643052578, 0.003505017375573516, -0.006125206593424082, 0.008368143811821938, -0.0022034968715161085, -0.01842363364994526, -0.0029682901222258806, 0.00964394211769104, 0.008615071885287762, 0.008649367839097977, 0.014376744627952576, -0.01080313604325056, -0.01148219034075737, 0.013162678107619286, 0.0017559382831677794, -0.026654595509171486, 0.0039131357334554195, -0.013594803400337696, -0.014774574898183346, 0.014417899772524834, -0.002066314220428467, -0.012284709140658379, -0.0013932615984231234, 0.017120398581027985, 0.01942506805062294, -0.023595420643687248, -0.010563066229224205, 0.01463739201426506, 0.012154385447502136, 0.011248979717493057, 0.008594495244324207, 0.0020371628925204277, 0.028643744066357613, -0.013608521781861782, 0.03292384371161461, 0.0035598904360085726, 0.030728919431567192, 0.014705982990562916, 0.02886323630809784, -0.02709357999265194, 0.027107296511530876, 0.017806312069296837, 0.02307412587106228, 0.011543922126293182, 0.010082926601171494, 0.02182576432824135, 0.020495092496275902, -0.005380990449339151, 0.03358231857419014, 0.01654423028230667, -0.02092035859823227, -0.010350433178246021, 0.016420766711235046, -0.012661960907280445, -0.0017027800204232335, 0.02976864203810692, 0.01740848273038864, -0.02133190631866455, -0.0017953782808035612, -0.005867989268153906, 0.0035290243104100227, 0.010871727019548416, 0.004314395133405924, 0.01456880010664463, -0.0035221653524786234, -0.013882887549698353, 0.0007060621283017099, 0.01883518137037754, 0.002117757685482502, -0.0006400429410859942, -0.019795460626482964, -0.009657660499215126, -0.0112078245729208, 0.0012286424171179533, 0.01917813904583454, -0.015570234507322311, 0.007421582937240601, -0.0028551144059747458, 0.020412782207131386, 0.011434176005423069, 0.004304106347262859, 0.007126640062779188, 0.0061595020815730095, 0.0036216226872056723, -0.02005610801279545, 0.0025395944248884916, -0.0003204501699656248, -0.0012380736880004406, 0.01665397733449936, -0.004304106347262859, -0.009184380061924458, 0.0070854853838682175, -0.015515360981225967, -0.0004608480667229742, 0.0014609955251216888, 0.001946279313415289, -0.014253280125558376, -0.019438786432147026, -0.00029001274378970265, 0.0055524688214063644, 0.008491608314216137, -0.010028054006397724, -0.03396643325686455, 0.028918107971549034, -0.008176087401807308, 0.02255283296108246, 0.0016847747610881925, 0.0015707416459918022, 0.015776008367538452, 0.01042588334530592, -0.0034930140245705843, -0.0030437407549470663, -0.005645067431032658, 0.042060211300849915, -0.005284962709993124, -0.018025804311037064, 0.0005740237538702786, -0.014294435270130634, -0.03555775061249733, 0.006516177207231522, 0.025653161108493805, -0.010014335624873638, -0.014994067139923573, -0.009335281327366829, -0.004441289231181145, 0.02414415217936039, 0.006811120081692934, -0.0186294075101614, -0.014802010729908943, 0.013903464190661907, -0.01007606741040945, 0.014129815623164177, 0.015446770004928112, 0.025173021480441093, 0.01297062262892723, 0.012552214786410332, 0.01279914379119873, -0.02026188187301159, 0.004671070259064436, -0.01158507727086544, -0.005007167812436819, 0.018999801948666573, -0.0013272424694150686, 0.008875719271600246, 0.0006297542131505907, 0.00997318048030138, -0.028506560251116753, 0.012716834433376789, 0.00860135443508625, 0.000931984803173691, 5.492665877682157e-05, -0.00202001491561532, 0.004115480463951826, -0.02146909013390541, 0.007304977625608444, -0.04005734249949455, -0.005617630667984486, -0.009232394397258759, 0.02688780426979065, -0.0025550273712724447, -0.01592690870165825, -0.0059091439470648766, -0.015007785521447659, -0.020357908681035042, -0.017600538209080696, -0.00808005966246128, -0.00888257846236229, 0.015940627083182335, 0.027107296511530876, 0.012147526256740093, -0.01581716351211071, -0.003158631268888712, -0.027834365144371986, 0.01890377327799797, 0.018780309706926346, 0.01087858621031046, -0.003995445556938648, -0.006900288630276918, -0.0008908300078473985, -0.0022789472714066505, -0.0031603460665792227, -0.0014507068553939462, -0.004626485984772444, 0.009726252406835556, 0.0023252463433891535, 0.01772400178015232, 0.008423016406595707, -0.00161275384016335, -0.02729935385286808, 0.017422201111912727, -0.007757680490612984, -0.006399571895599365, 0.005411856807768345, -0.03487183526158333, 0.019795460626482964, -0.007524469867348671, 0.008786550723016262, -0.0018931209342554212, -0.006399571895599365, -0.0008569630444981158, 0.01070024911314249, 0.009136366657912731, 0.015981782227754593, 0.0131969740614295, 0.008621931076049805, -0.031716637313365936, -0.00276251626200974, -0.011502767913043499, -0.004441289231181145, -0.0206459928303957, 0.012600229121744633, -0.006279536988586187, -0.018752872943878174, 0.006526465993374586, 0.010384729132056236, -0.025858934968709946, 0.007599920500069857, 0.006149213761091232, -0.013080368749797344, -0.002104039303958416, 0.004293818026781082, 0.008402438834309578, 0.0046813590452075005, -0.009273549541831017, -0.01856081560254097, 0.014582518488168716, -0.0055456096306443214, -0.001923987059853971, 0.022950662299990654, -0.006934584584087133, 0.010309278033673763, -0.0070992037653923035, 0.009307844564318657, -0.00915694423019886, 0.030728919431567192, 0.02321130968630314, -0.01998751610517502, -0.01637961156666279, 0.015570234507322311, -0.015611388720571995, 0.0031191911548376083, 0.0027985265478491783, -0.010247546248137951, 0.022347059100866318, 0.013814295642077923, -0.0016427625669166446, 0.00028036709409207106, -0.010377869941294193, 0.015007785521447659, -0.018958646804094315, 0.006334410049021244, -0.015337023884057999, -0.005648497026413679, 0.012209258042275906, -0.01476085651665926, -0.022854633629322052, 0.021812045946717262, -0.032210491597652435, -0.005641637835651636, 0.000965423125308007, 0.0017473644111305475, 0.0025567421689629555, 0.00908835232257843, -0.00981542095541954, 0.000696202099788934, -0.0013512494042515755, -0.0010528770508244634, -0.01814926788210869, -0.011880019679665565, 0.0038685514591634274, -0.025063276290893555, 0.005336406175047159, 0.011996624991297722, -0.022799761965870857, 0.00507232965901494, -0.002913417061790824, -0.005068900063633919, -0.028287068009376526, -0.0025790343061089516, 0.007743962109088898, 0.00259789708070457, -0.0015072947135195136, 0.012648243457078934, 0.013402747921645641, 0.013176396489143372, 0.0006932012038305402, 0.02262142300605774, 0.015707416459918022, -0.027203325182199478, 0.005398138426244259, -0.02026188187301159, -0.017477072775363922, 0.0005560185527428985, -0.019397631287574768, -0.0027573718689382076, -0.04815112054347992, -0.0021074688993394375, -0.003167205024510622, -0.01803952269256115, -0.004990019835531712, -1.6062698705354705e-05, 0.00860135443508625, -0.009184380061924458, -0.023225028067827225, -0.013560507446527481, 0.005819975398480892, -0.014184689149260521, -0.01824529655277729, -0.02012469992041588, 0.016256147995591164, 0.012154385447502136, 0.014774574898183346, -0.00042462325654923916, 0.021770890802145004, 0.010707108303904533, 0.004400134552270174, -0.018917491659522057, -0.013985774479806423, 0.008114355616271496, -0.00503117498010397, 0.02271745167672634, -0.00820352416485548, 0.004489303100854158, -0.0009731396567076445, -0.0017362183425575495, 0.0030180190224200487, 0.0017199278809130192, 0.00441385293379426, 0.005384420044720173, -0.003817107994109392, -0.024583136662840843, 0.0017507938900962472, 0.008519044145941734, -0.02130446955561638, -0.01541933324187994, 0.007984031923115253, 0.0028413962572813034, -0.012943185865879059, 0.00684198597446084, 0.01463739201426506, -0.01007606741040945, -0.0016007503727450967, 0.015899471938610077, 0.03714906796813011, 0.00020534532086458057, 0.013992633670568466, 0.023115281015634537, 0.008230960927903652, -0.008368143811821938, -0.0015355886425822973, -0.0015090095112100244, -0.0171066801995039, 0.008676804602146149, -0.005380990449339151, 0.006420149467885494, 0.012840298935770988, -0.019575968384742737, -0.006015460472553968, 0.01935647614300251, 0.009959462098777294, 0.02178460918366909, -0.010233827866613865, -0.009458745829761028, 0.011125515215098858, 0.009170661680400372, 0.027203325182199478, -0.020097263157367706, -0.026133300736546516, 0.024514544755220413, 0.004064036998897791, 0.009582210332155228, -0.00815550982952118, 0.006581339053809643, 0.021482806652784348, 0.00608062231913209, 0.008690522983670235, 0.022319622337818146, -0.006461304146796465, -0.0024521404411643744, 0.007133499253541231, 0.0016238999087363482, -0.0023629716597497463, 0.0070649078115820885, 0.002299524610862136, -0.003000871045514941, 0.02616073749959469, 0.0053089698776602745, 0.0015784582355991006, -0.00540156802162528, -0.00432811351493001, 0.006752817425876856, -0.0171066801995039, -0.005422145593911409, 0.00552503252401948, 0.018958646804094315, 0.021798327565193176, -0.01595434546470642, 0.02875348925590515, -0.005332976579666138, 0.007826271466910839, -0.011002050712704659, -0.008745395578444004, 0.021949227899312973, -0.01304607279598713, 0.036682646721601486, -0.004921428393572569, -0.007455878425389528, 0.0038342559710144997, -0.0050894771702587605, 0.01880774460732937, 0.011228402145206928, 0.009410731494426727, 0.004461866803467274, -0.00018508944776840508, -0.005679362919181585, -0.011125515215098858, 0.030235063284635544, 0.008608212694525719, -6.907361967023462e-05, 0.00032709495280869305, -0.021866919472813606, 0.014253280125558376, -0.003009445033967495, 0.007915440946817398, -0.0023149577900767326, 0.007613638881593943, 0.00507232965901494, -0.008587636053562164, -0.02185320109128952, 0.0017645121552050114, 0.0025344500318169594, 0.012723693624138832, 0.010226968675851822, -0.027189606800675392, -0.0037450871895998716, -0.005003738217055798, -0.01869799941778183, 0.01987777091562748, -0.005055181682109833, -0.0027659458573907614, -0.025227895006537437, 0.004310965538024902, 0.004887132905423641, 0.005384420044720173, -0.007551906630396843, 0.024089278653264046, 0.004540746565908194, -0.00822410173714161, -0.024336207658052444, 0.0071060629561543465, 0.0017868044087663293, -0.030811229720711708, -0.012792284600436687, 0.008182946592569351, -8.847210847306997e-05, -0.003434711368754506, -0.011063783429563046, -0.03454259783029556, -0.002769375452771783, 0.000838529143948108, -0.002880836371332407, -0.008292692713439465, -0.01713411696255207, 0.0010906022507697344, 0.012113230302929878, -0.006341269239783287, -0.01393090095371008, 0.01378685887902975, 0.005394708830863237, 0.007942876778542995, -0.008807128295302391, 0.01488432101905346, -0.03478952869772911, 0.006955161690711975, -0.0010460179764777422, 0.0023681160528212786, 0.00273165013641119, 0.006111488211899996, 0.0035598904360085726, -0.004214937798678875, 0.012065216898918152, -0.010919741354882717, -0.00903347972780466, 7.416438893415034e-05, -0.007020323537290096, -0.009685097262263298, -0.013594803400337696, -0.024967247620224953, 0.010686530731618404, 0.022223593667149544, 0.01976802386343479, -0.011646809056401253, -0.004214937798678875, -0.0027213613502681255, -0.028808362782001495, -0.008134933188557625, -0.00432811351493001, 0.004290388431400061, -0.0015810304321348667, 0.010768840089440346, -0.02269001491367817, 0.011180388741195202, -0.002431563101708889, -0.001519298180937767, 0.001923987059853971, 0.016983216628432274, -0.00626924866810441, -0.01286773569881916, 0.042169954627752304, -0.022772325202822685, 0.005799397826194763, -0.012723693624138832, 0.010233827866613865, 0.009637082926928997, -3.180387648171745e-05, -0.021181005984544754, -0.00312262075021863, -0.012106371112167835, -0.022292185574769974, -0.018917491659522057, -0.0027882379945367575, -0.012497342191636562, -0.05226660147309303, -0.003232366871088743, -0.016846032813191414, -0.005511314142495394, -0.0010871727718040347, 0.015405614860355854, 0.0038754106499254704, 0.004166923929005861, 0.005607341881841421, -0.015844600275158882, -0.00010545918485149741, -0.0094861825928092, 0.013841732405126095, -0.008093778043985367, -0.0024144151248037815, -0.0035393130965530872, -0.001130042364820838, 0.015487924218177795, -0.011502767913043499, 0.0046882182359695435, -0.010034913197159767, -0.01019953191280365, 0.004650492686778307, -0.015117531642317772, 0.01032299641519785, -0.0004531315353233367, 0.005223230458796024, -0.004942005965858698, -0.008038905449211597, -0.013450761325657368, -0.0019257018575444818, -0.019754305481910706, 0.00997318048030138, 0.016626540571451187, 0.017984649166464806, 0.0057513839565217495, -0.011756555177271366, -0.019164420664310455, 0.0020851767621934414, 0.016914624720811844, 0.00017426487465854734, -0.014705982990562916, 0.004064036998897791, 0.00921181682497263, -0.01772400178015232, 0.024967247620224953, 0.009801702573895454, -0.003434711368754506, -0.002311528194695711, 0.0031620608642697334, -0.012380736880004406, -0.020165853202342987, -0.004417282063513994, 0.0014438476646319032, 0.023266183212399483, -0.0063446988351643085, 0.012504201382398605, -0.010940318927168846, 0.015076376497745514, -0.020577402785420418, 0.028259631246328354, -0.003263232996687293, 0.017326172441244125, -0.006327550858259201, 0.0023698308505117893, 0.001737075624987483, -0.02410299703478813, 0.004533887375146151, 0.01665397733449936, 0.03528338670730591, 0.022635141387581825, 0.018121831119060516, -0.016708850860595703, 0.010446460917592049, -0.013025495223701, -0.003009445033967495, 0.01375256385654211, -0.008752254769206047, -0.005946869030594826, 0.0010657379170879722, -0.005322687793523073, -0.004304106347262859, 0.01956225000321865, -0.00202001491561532, -0.006327550858259201, -0.009719393216073513, 0.028396815061569214, -0.008937451988458633, -0.012517919763922691, -0.014020069502294064, 0.01410237979143858, 0.009328422136604786, -0.008436734788119793, -0.011845724657177925, 0.004026311449706554, 4.457767317944672e-06, -0.000619465543422848, -0.0005753098521381617, -0.004070896189659834, -0.01065223477780819, 0.0003551745321601629, -0.025378795340657234, -0.015405614860355854, 0.011242120526731014, 0.014280716888606548, -0.009753688238561153, -0.03953604772686958, -0.02417158894240856, -0.0009774265345185995, 0.029850950464606285, 0.00910892989486456, 0.02434992603957653, -0.0008539622067473829, 0.009397013112902641, 0.010158377699553967, 0.007147217635065317, -0.01609152741730213, -0.00540156802162528, -0.006306973751634359, 0.005981164984405041, -0.0021297610364854336, -0.005470159463584423, -0.0023372499272227287, -0.03256716951727867, -0.01842363364994526, 0.014802010729908943, 0.009952603839337826, 0.018890054896473885, -0.0027042136061936617, 0.0048596966080367565, -0.0129020307213068, 0.022662578150629997, 0.015940627083182335, 0.00044627240276895463, -0.01201720256358385, -0.020796895027160645, -0.007524469867348671, 0.0004091902228537947, 0.012833439745008945, -0.015529079362750053, 0.030509427189826965, -0.01380743645131588, -0.0043761273846030235, 0.00612177699804306, -0.028149886056780815, -0.014225844293832779, 0.005950298625975847, 0.016914624720811844, 0.015158685855567455, 0.004300677217543125, -0.003156916471198201, 0.0012552215484902263, 0.006334410049021244, 0.01769656501710415, -0.029466839507222176, 0.012778566218912601, -0.007222668267786503, -0.000362033664714545, 0.0017988078761845827, -0.0009405587334185839, 0.01547420583665371, 0.02167486399412155, -0.011125515215098858, -0.0018125261412933469, -0.02264885976910591, 0.006293255370110273, -0.006972309667617083, 0.01502150297164917, -0.014513927511870861, -0.020522529259324074, 0.013656536117196083, 0.03780754655599594, -0.013382170349359512, 0.016077810898423195, 0.002453855238854885, -0.013828014023602009, -0.005569616798311472, 0.01647564023733139, -0.007785117253661156, -0.029027855023741722, 0.0070580486208200455, -0.004348691087216139, 0.006591627839952707, -0.003369549522176385, 0.011715400964021683, -0.015693698078393936, 0.012373877689242363, 0.02875348925590515, -0.012627665884792805, 0.0046676406636834145, 0.007936017587780952, -0.016530513763427734, -0.00853276252746582, -0.018821462988853455, 0.0033558313734829426, 0.003503302577883005, 0.0055936239659786224, 0.006547043565660715, 0.005905714351683855, 0.004012593533843756, 0.0035530314780771732, -0.011468471959233284, -0.01776515692472458, -0.0227586068212986, -0.014747138135135174, -0.009177520871162415, 0.015240995213389397, -0.004767097998410463, 0.0023235315456986427, -0.002537879627197981, -0.0037176506593823433, -0.01016523689031601, 0.0004818541638087481, 0.0047430912964046, -0.017298735678195953, -0.0003868980275001377, 0.012661960907280445, -0.013004917651414871, 0.010309278033673763, 0.0036353410687297583, 0.007394146639853716, -0.015186122618615627, 0.011646809056401253, -0.0035976157523691654, 0.00777139887213707, 0.00941759068518877, 0.0010511622531339526, -0.014198407530784607, 0.0013966911938041449, -0.0057513839565217495, 0.0026321925688534975, 0.03544800356030464, -0.004773957189172506, -0.0016856321599334478, 0.011303852312266827, 0.005336406175047159, -0.0008329561096616089, -0.004605908412486315, -0.00380338984541595, -0.00991830788552761, -0.005597053095698357, -0.004942005965858698, -0.008038905449211597, 0.00777139887213707, -0.005079188849776983, -0.008896296843886375, -0.014678546227514744, 0.019411349669098854, -0.02618817426264286, -0.01928788423538208, -0.02820475958287716, 0.027203325182199478, -0.013052931986749172, 0.02734050713479519, 0.010796276852488518, 0.00626924866810441, 0.0003933284606318921, -0.015076376497745514, 0.021482806652784348, 0.03465234488248825, -0.002971719717606902, 0.006704803556203842, 0.012236694805324078, 0.011797710321843624, 0.0003283810510765761, -0.019301602616906166, 0.008560199290513992, -0.0225116778165102, 0.00407775491476059, -0.008807128295302391, -0.0042115082032978535, 0.014774574898183346, 0.013608521781861782, -0.01994636096060276, -0.024363644421100616, -0.005658785346895456, 0.007668511942028999, -0.017463354393839836, 0.0203990638256073, -0.012147526256740093, -0.015062658116221428, 0.006547043565660715, 0.0051031955517828465, 0.0005817402852699161, 0.011447894386947155, -0.003964579664170742, -0.00925983116030693, 0.004544176161289215, -0.02675062231719494, 0.0015184407820925117, -0.016393329948186874, 0.01880774460732937, 0.005501025356352329, -0.003885699436068535, -0.016777440905570984, -0.012984341010451317, 0.013560507446527481, 0.009335281327366829, -0.027422817423939705, -0.003198071150109172, -0.002033733297139406, -0.02112613245844841, -0.013615380972623825, 0.01613268256187439, 0.015076376497745514, -0.01831388846039772, -0.004787675570696592, -0.032347675412893295, -0.010734545066952705, 0.03111303225159645, -0.005830263718962669, -0.0022275038063526154, 0.031579453498125076, 0.016009218990802765, -0.001134329242631793, 0.028533997014164925, 0.004808252677321434, -0.015035221353173256, 0.0009628509287722409, 0.016146400943398476, 0.003323250450193882, -0.008073200471699238, 0.009472464211285114, 0.01917813904583454, 0.0021229020785540342, 0.006567620672285557, 0.002357827266678214, 0.013896604999899864, -0.01616011932492256, 0.003957720473408699, -0.025653161108493805, 0.018231578171253204, -0.012586510740220547, 0.023993249982595444, 0.0012432180810719728, 0.01567997969686985, -0.023019254207611084, 0.00738042825832963, 0.004468725994229317, 0.007654793560504913, -0.006831697653979063, -0.0006327551091089845, 0.008738536387681961, -0.009726252406835556, 0.0033198208548128605, -0.0035153061617165804, 0.011132374405860901, 0.009218676015734673, 0.03410361334681511, 0.016640258952975273, -0.01622871123254299, -0.01588575355708599, 0.004386416170746088, 0.020687147974967957, -0.013073509559035301, 0.02078317664563656, 0.00797717273235321, 0.01799836754798889, -0.021139850839972496, 0.002035448094829917, 0.009952603839337826, -0.018958646804094315, 0.001178913633339107, 0.004259522072970867, -0.007572483737021685, 0.01037101075053215, -0.009252971969544888, 0.004091473296284676, -0.00705118989571929, -0.006862563546746969, 0.01047389768064022, 0.012154385447502136, -0.0046950774267315865, 0.0038651220966130495, 0.009465605020523071, -0.008217242546379566, 0.016173837706446648, -0.010357292369008064, 0.01423956174403429, 0.00345185911282897, 0.04027683287858963, 0.020728303119540215, -0.0004036171594634652, -0.012030920945107937, 0.0007832273840904236, -0.026050990447402, -0.00504832249134779, 0.0003037310380022973, -0.016420766711235046, -0.009925167076289654, 8.429232548223808e-05, -0.017010651528835297, 0.01779259368777275, 0.008052622899413109, 0.007407864555716515, 0.011043205857276917, 0.007298118434846401, 0.009081493131816387, -0.00348272523842752, 0.015968063846230507, 0.00018069530779030174, 0.001930846250616014, -0.017147835344076157, -0.003974867984652519, 0.006547043565660715, 0.023787476122379303, 0.01806695945560932, -0.018684281036257744, 0.0018313887994736433, 0.029713768512010574, -0.012929467484354973, -0.0015484495088458061, -0.02296438068151474, -0.0015381608391180634, 0.017024369910359383, 0.026517411693930626, 0.016242429614067078, 0.01554279774427414, -0.006440726574510336, -0.006114917807281017, -0.03906962648034096, -0.01281972136348486, 0.006461304146796465, 0.004214937798678875, -0.022607704624533653, 0.007435301318764687, -0.01016523689031601, -0.0037245098501443863, -0.008587636053562164, 0.030235063284635544, 0.017161553725600243, -0.001474713790230453, -0.011413599364459515, -0.014486490748822689, 0.003069462487474084, 0.0009397013345733285, 0.00010754907998489216, -0.0015381608391180634, -0.014006351120769978, -0.023924659937620163, 0.002666488289833069, 0.0018879766575992107, 0.00837500300258398, 0.0012294998159632087, -0.010693389922380447, -0.019781742244958878, -0.0006400429410859942, 0.01032299641519785, 0.00863564945757389, -0.021098695695400238, 0.01127641648054123, -0.0013229554751887918, -0.006241811905056238, -0.018533380702137947, -0.012943185865879059, -0.0006593342404812574, -0.012840298935770988, 0.0036147634964436293, -0.023321054875850677, -0.003748516784980893, 0.002891124924644828, -0.011742837727069855, 0.009691956453025341, 0.00426638126373291, 0.0005101480637677014, -0.007407864555716515, 0.011125515215098858, -0.005367272533476353, -0.003503302577883005, 0.002200067276135087, -0.0010760265868157148, -0.015515360981225967, -0.0014850024599581957, 0.023266183212399483, 0.0021914932876825333, -0.0032306520733982325, 0.006118347402662039, -0.011694823391735554, 0.009890871122479439, -0.006204086821526289, 0.0007154933991841972, -0.001081170979887247, -0.024116715416312218, 0.03177150711417198, 0.008333847858011723, -0.02203153818845749, 0.00020480944658629596, -0.03624366223812103, -0.021908074617385864, 8.815059118205681e-05, -0.014513927511870861, 0.0070786261931061745, -0.012106371112167835, 0.020385345444083214, -0.012908889912068844, 0.009664519689977169, 0.009465605020523071, 0.013402747921645641, 0.015460488386452198, 0.02033047378063202, 0.004530457779765129, 0.012847158126533031, 0.008697382174432278, 0.005034604109823704, -0.004797964356839657, -0.02133190631866455, 0.0017310739494860172, 0.006680796388536692, -0.02691524103283882, 0.008471030741930008, 0.006327550858259201, 0.0034398557618260384, 0.008107496425509453, 0.008813987486064434, 0.0005543037550523877, -0.006896859034895897, 0.009733110666275024, -0.026064708828926086, 0.019260447472333908, -0.012895171530544758, -0.023993249982595444, 0.018327606841921806, -0.003652488812804222, 0.0006790542392991483, 0.005754813551902771, 0.0015578807797282934, -0.0013246702728793025, 0.005655355751514435, -0.0029700049199163914, 0.004643633496016264, -0.019754305481910706, -0.031963564455509186, -0.008025187067687511, 0.007366709876805544, -0.007352991495281458, 0.012387596070766449, -0.010885445401072502, -0.01613268256187439, -0.010960896499454975, -0.008539621718227863, 0.010665953159332275, 0.006721951067447662, -0.0016581956297159195, -0.014116097241640091, -0.0005710229161195457, 0.015776008367538452, 0.003062603296712041, 0.020303037017583847, -0.00426638126373291, -0.0026407665573060513, -0.013656536117196083, -0.024473389610648155, -0.013958337716758251, 0.011146092787384987, 0.002671632682904601, 0.033143334090709686, 0.004866555333137512, 0.0035461722873151302, -0.027765775099396706, 0.002657914301380515, 0.0072775413282215595, 0.026517411693930626, 0.017874903976917267, 0.00033674060250632465, 0.006447585765272379, 0.01403378788381815, -0.003316391259431839, 0.015076376497745514, 0.008916874416172504, 0.019438786432147026, -0.0055524688214063644, 0.022141285240650177, -0.011461612768471241, -0.004588760435581207, -0.02094779536128044, -0.007853708229959011, 0.0005577333504334092, 0.00815550982952118, -0.0360790453851223, 0.0003916136920452118, -0.0009671378647908568, 0.022799761965870857, -0.0006456159753724933, 0.024884937331080437], "3c193164-9ac6-4c33-84eb-4f619cfc6d78": [-0.0271498654037714, -0.016936561092734337, -0.0173898134380579, 0.020290633663535118, -0.035625699907541275, -0.018507838249206543, 0.014451222494244576, 0.006447526626288891, -0.017148079350590706, 0.0346587598323822, 0.01819056086242199, 2.5775823814910837e-05, 0.022466249763965607, -0.004653399344533682, 0.011777028441429138, 0.015236861072480679, -0.023841118440032005, 0.027497360482811928, 0.012668427079916, -0.019474778324365616, 0.07221834361553192, -0.02955210767686367, -0.029461456462740898, 0.020199984312057495, 0.024656973779201508, -0.011286004446446896, -0.025276418775320053, -0.013831776566803455, -0.043633174151182175, -0.0007549498695880175, 0.00035032693995162845, 0.007531557232141495, 0.026318902149796486, 0.019686296582221985, 0.008415400981903076, -0.05472276732325554, 0.0006359709077514708, 0.03151620551943779, -0.006930996663868427, -0.009540979750454426, -0.007210502866655588, 0.01247957069426775, 0.006681707222014666, -0.012600438669323921, -0.006194460205733776, 0.019928032532334328, -0.02001868188381195, 0.01070432923734188, -0.006236008368432522, 3.3433323551435024e-05, 0.03335943445563316, 0.019520103931427002, -0.028358541429042816, 0.00724449660629034, 0.03462854400277138, -0.010779871605336666, -0.002817723900079727, 0.0890793576836586, 0.03719697892665863, -0.018009260296821594, -0.005529689136892557, -0.051066525280475616, 0.0240828525274992, -0.005624116864055395, 0.013144342228770256, -0.004774266853928566, 0.0034390585497021675, 0.02409796044230461, -0.015463488176465034, 0.00855137687176466, -0.02328210510313511, 0.01884022355079651, -0.04121582210063934, 0.032362278550863266, -0.0005231297109276056, -0.01973162218928337, 0.011701486073434353, 0.012147185392677784, 0.008498497307300568, -0.0037789985071867704, 0.01499512605369091, 0.005597677081823349, 0.038466088473796844, 0.020925188437104225, 0.027603119611740112, 0.03677394241094589, -0.02968808449804783, -0.05028088763356209, -0.043482087552547455, -0.050673708319664, 0.006417309865355492, 0.008981967344880104, 0.00789415929466486, 0.0031501096673309803, -0.009911136701703072, 0.035837218165397644, -0.016755258664488792, 0.014269920997321606, -0.018613597378134727, -0.03056437335908413, -0.019701404497027397, 0.024777840822935104, -0.010485257022082806, 0.0339033380150795, 0.00773552106693387, -0.02575988881289959, 0.019323693588376045, 0.04840743914246559, -0.03746892884373665, -0.007916822098195553, -0.003999959211796522, -0.05916465073823929, -0.012275607325136662, -0.0004608074086718261, -0.05173129588365555, -0.01364292111247778, -0.0365322083234787, 0.008717569522559643, 0.002258711727336049, -0.03792218491435051, 0.018235886469483376, -0.0032841970678418875, 0.024989359080791473, -0.013257656246423721, -0.019761839881539345, 0.017450246959924698, -0.010160425677895546, 0.05463211610913277, 0.03792218491435051, 0.013204776681959629, 0.0012058423599228263, -0.03021688014268875, 0.022753309458494186, -0.003665685188025236, 0.000980159966275096, 0.038526520133018494, 0.03677394241094589, 0.05016002058982849, -0.01599983684718609, 0.029461456462740898, -0.05414864793419838, -0.020774103701114655, -0.010077329352498055, 0.0007464513182640076, 0.014602307230234146, 0.0036921249702572823, -0.02270798571407795, 0.07052619755268097, -0.0444188117980957, 0.008710015565156937, -0.040128014981746674, -0.015576801262795925, -0.04188059642910957, -0.01609048806130886, 0.031697507947683334, -0.02240581624209881, 0.012298270128667355, 0.012562667950987816, 0.009616522118449211, 0.07989343255758286, 0.013370969332754612, -0.021801479160785675, -0.002881934866309166, 0.025231095030903816, 0.010145316831767559, 0.013310534879565239, 0.025306636467576027, 0.050401754677295685, -0.03357095271348953, 0.017208512872457504, 0.04840743914246559, -0.008060352876782417, 0.05085500702261925, 0.004177483730018139, 0.011980992741882801, -0.018296319991350174, 0.054329950362443924, 0.021559743210673332, 0.039130859076976776, -0.01524441596120596, -0.016725042834877968, -0.03284574672579765, 0.03837543725967407, 0.012320932932198048, -0.010432377457618713, -0.010726992040872574, 0.019474778324365616, 0.009503208100795746, 0.016558850184082985, 0.002572211902588606, 0.00046694520278833807, -0.004203923512250185, -0.006946105044335127, 0.01455698162317276, -0.045023150742053986, -0.01667971722781658, 0.016649501398205757, -0.009850702248513699, 0.0010169867891818285, 0.02233027294278145, 0.009344570338726044, -0.03163707256317139, -0.025200877338647842, 0.03589765354990959, 0.006749695632606745, 0.02372024953365326, -0.02677215449512005, -0.026334010064601898, 0.03311770036816597, -0.013031029142439365, 0.05399756506085396, -0.04317992180585861, 0.04753115028142929, -0.023886442184448242, 0.004876249004155397, 0.009729835204780102, 0.012260498479008675, 0.031697507947683334, -0.0027969498187303543, 0.0240224190056324, -0.008853545412421227, -0.02337275631725788, 0.004842254798859358, -0.0006425807951018214, -0.03538396582007408, 0.015848753973841667, -0.021348224952816963, 0.022602226585149765, 0.018613597378134727, -0.019686296582221985, 0.011051823385059834, -0.01263065543025732, 0.052365850657224655, -0.04934416338801384, -0.011784583330154419, 0.011618389748036861, 0.010379497893154621, -0.02125757373869419, 0.0055674598552286625, -0.012237835675477982, -0.017918609082698822, 0.005250182934105396, -0.005692104808986187, -0.01088563073426485, -0.021363332867622375, 0.01900641620159149, -0.007444683462381363, 0.043421655893325806, 0.004415441304445267, -0.000537766027264297, 1.7454378394177184e-05, 0.01531995739787817, -0.04121582210063934, 0.04680594429373741, -0.023886442184448242, 0.051126960664987564, 0.03632069006562233, -0.060887012630701065, -0.0010405938373878598, 0.010674112476408482, 0.01936901919543743, 0.000782806018833071, -0.0012124523054808378, 0.03063991479575634, 0.005922508426010609, -0.003240760415792465, 0.04855852574110031, -0.038828689604997635, 0.01986759901046753, 0.04139712452888489, 0.024249045178294182, 0.0038828689139336348, -0.026983672752976418, 0.02190723828971386, -0.005624116864055395, -0.03426594287157059, 0.013370969332754612, -0.01615092158317566, 0.02044171839952469, 0.002396576339378953, -0.022904394194483757, -0.0275880116969347, 0.04272666573524475, -0.0285247340798378, 0.010893184691667557, -0.010764763690531254, -0.009480546228587627, -0.0217712614685297, -0.03499114513397217, -0.03698546066880226, -0.011557956226170063, -0.016649501398205757, -0.006398424040526152, 0.059799205511808395, -0.012056535109877586, -0.003070790320634842, 0.023266997188329697, 0.014285029843449593, 0.010930956341326237, 0.0007422021008096635, -0.020033791661262512, -0.01776752434670925, 0.0004147738800384104, -0.003104784293100238, 5.023851372243371e-06, -0.0006690205773338675, 0.03196945786476135, 0.03704589232802391, -0.002562768990173936, 0.02255690097808838, 0.020562585443258286, -0.010130208916962147, -0.034537892788648605, 0.009722281247377396, -0.01263065543025732, 0.0023625821340829134, -0.033299002796411514, -0.011973438784480095, -0.003767667105421424, -0.042907968163490295, -0.03508179634809494, 0.004407887347042561, -0.04677572846412659, 0.058620747178792953, 0.032362278550863266, -0.04577857255935669, -0.004982008133083582, -0.02299504540860653, -0.020124441012740135, -0.008808220736682415, -0.016619283705949783, -0.02926504798233509, -0.027754204347729683, 0.016906343400478363, -0.010130208916962147, -0.010968727059662342, -0.03181837499141693, -0.03172772377729416, -0.013325643725693226, -0.025095118209719658, -0.020139550790190697, 0.012849727645516396, 0.0014126391615718603, 0.012781740166246891, 0.002719519194215536, -0.01935391128063202, -0.0024928925558924675, -0.0010660892585292459, 0.012320932932198048, -0.019837381318211555, 0.001006599748507142, -0.019776947796344757, 0.035323530435562134, -0.015622126869857311, -0.005593899637460709, -0.03260401263833046, -0.014980018138885498, 0.01127845048904419, 0.006175574846565723, -0.015607018023729324, -0.01856827177107334, -0.04701746255159378, 0.01855316385626793, -0.023251889273524284, 0.009178376756608486, 0.005805417895317078, 0.00520485732704401, 0.0044569894671440125, -0.02337275631725788, -0.015002680942416191, -0.01535772904753685, 0.011157582513988018, 0.0008814830216579139, 0.006893225479871035, -0.029370807111263275, -0.03369181975722313, 0.05834879353642464, -0.014353017322719097, -0.0041737062856554985, 0.014171716757118702, -0.010779871605336666, 0.018583381548523903, -0.011905450373888016, 0.013809113763272762, 0.03616960346698761, -0.0037110105622559786, 0.023886442184448242, -0.001931991777382791, -0.03662285953760147, -0.024566322565078735, -0.005083989817649126, 0.002989582484588027, -0.019263260066509247, 0.0072860452346503735, -0.009518316946923733, -0.03610917180776596, -0.0011822354281321168, 0.014844042249023914, 0.013295426964759827, -0.0006062261527404189, 0.009563642553985119, 0.00019664577848743647, -0.007490009069442749, -0.006632605101913214, -0.002417350420728326, -0.03595808520913124, -0.041094955056905746, -0.011308667249977589, -0.027195191010832787, 0.004317236598581076, 0.001849839580245316, 0.001797904260456562, 0.002336142584681511, 0.04293818399310112, 0.026016732677817345, 0.005393712781369686, 0.007984810508787632, 0.0746961236000061, -0.014828933402895927, -0.04517423361539841, 0.00034513341961428523, 0.015108440071344376, 0.011202908121049404, -0.0018470067298039794, 6.621745706070215e-05, 0.022088538855314255, -0.024792948737740517, 0.02242092415690422, 0.006077369675040245, 0.01263065543025732, 0.03976541385054588, 0.04556705430150032, -0.0073615871369838715, -0.016347331926226616, -0.02897798642516136, -0.01444366853684187, 0.0009688286809250712, 0.016755258664488792, 0.00134276261087507, -0.018462512642145157, 0.004177483730018139, 0.009359678253531456, -0.01813012734055519, 0.011965883895754814, -0.0472894161939621, -0.02816213108599186, -0.034175291657447815, 0.044297944754362106, 0.012328486889600754, 0.018175452947616577, -0.02365981601178646, 0.012132077477872372, -0.0321507602930069, -0.004717610310763121, -0.01506311446428299, -0.008475834503769875, 0.026908131316304207, 0.009714726358652115, 0.021922346204519272, -0.029960036277770996, -0.0050877672620117664, 0.0524262860417366, 0.05363496020436287, -0.01467029470950365, 0.01921793445944786, -0.02497425116598606, 0.006912111304700375, -0.009737389162182808, 0.009979124180972576, 0.04339144006371498, -0.046413127332925797, 0.01448899321258068, -0.01740492321550846, 0.003863983554765582, 0.010523028671741486, -0.008649582043290138, -0.02924994006752968, -0.014277475886046886, -0.027829745784401894, 0.006088701076805592, -0.00030476556275971234, -0.0066741532646119595, 0.018386971205472946, -0.006054707337170839, 0.02285906858742237, 0.01502534281462431, -0.032785315066576004, 0.004117049742490053, -0.024249045178294182, 0.046685077250003815, 0.012456908822059631, -0.008536268025636673, 0.007146291900426149, 0.05212411656975746, -0.020758995786309242, -0.013008366338908672, 0.0006439972203224897, -0.03731784597039223, 0.011361546814441681, -0.003777110017836094, 0.0015089553780853748, -0.013348306529223919, -0.005998050328344107, -0.03056437335908413, -0.008362521417438984, 0.02322167158126831, 0.010379497893154621, 0.01885533332824707, 0.024762732908129692, -0.03360116854310036, -0.053030624985694885, 0.01884022355079651, 0.0015004569431766868, 0.020290633663535118, 0.008657136000692844, 0.0009003685554489493, -0.009291690774261951, -0.010666558519005775, 0.025669239461421967, 0.004049061797559261, -0.01710275374352932, -0.014368126168847084, -0.012706197798252106, -0.011406871490180492, -0.018764682114124298, -0.008234099484980106, -0.00917082279920578, -0.00818877387791872, 0.06260937452316284, -0.03879847377538681, -0.01411883719265461, -0.00536727299913764, -0.02103094756603241, 0.010334172286093235, 0.022979937493801117, 0.028358541429042816, -0.04562748596072197, -0.015002680942416191, 0.009767605923116207, 0.0035221551079303026, -0.031546421349048615, 0.026545528322458267, 0.0044041103683412075, -0.02926504798233509, -0.007705304306000471, 0.009979124180972576, 0.011693932116031647, -0.004347453359514475, 0.006050929892808199, 0.02677215449512005, -0.010749654844403267, 0.018175452947616577, -0.011913004331290722, 0.003777110017836094, 0.0008913979399949312, -0.03523288294672966, -0.01681569404900074, -0.014768499881029129, -0.012804402969777584, -0.024113070219755173, -0.012555113062262535, 0.02335764840245247, 0.03115360252559185, -0.0034315043594688177, 0.006285110954195261, -0.004891357384622097, -0.037529364228248596, -0.0006676041521131992, 0.00102359673473984, 0.007856388576328754, -0.005250182934105396, -0.0032898627687245607, 0.022390708327293396, 0.010039557702839375, -0.007032978814095259, 0.03610917180776596, 0.00267608230933547, -0.007584436796605587, -0.005782755091786385, -0.00731248501688242, 0.02583543211221695, -0.019897814840078354, 0.024052636697888374, -0.03399398922920227, -0.006405978463590145, 0.007063195575028658, -0.032573796808719635, -0.022949719801545143, -0.008415400981903076, 0.006190683227032423, -0.010870521888136864, 0.011746811680495739, -0.015040451660752296, -0.011958329938352108, -0.016543742269277573, 0.02482316642999649, -0.0011378544149920344, -0.0074597918428480625, 0.002666639629751444, 0.04710811376571655, 0.028071481734514236, 0.016437983140349388, 0.024566322565078735, -0.02104605734348297, -0.024762732908129692, 0.02140865847468376, 0.007542888633906841, 0.027557794004678726, 0.0023852449376136065, 0.006930996663868427, 0.001467407215386629, -0.005998050328344107, 0.028917552903294563, -0.007962147705256939, 0.013559824787080288, -0.0045967428013682365, 0.011965883895754814, 0.027754204347729683, 0.018764682114124298, 0.018356753513216972, 0.019172610715031624, -0.048437658697366714, 0.04405621066689491, -0.01171659491956234, 0.026832588016986847, 0.04460011422634125, -0.036139387637376785, 0.009593859314918518, -0.010371943935751915, 0.021212249994277954, -0.01215473935008049, -0.029098855331540108, 0.009178376756608486, -0.0033011941704899073, 0.014368126168847084, -0.03414507210254669, 0.012252944521605968, -0.012283161282539368, 0.006723255850374699, -0.004015068057924509, 0.009246365167200565, -0.04236406460404396, -0.007924376986920834, 0.016468198969960213, -0.014896921813488007, -0.006526845972985029, 0.01088563073426485, 0.013582487590610981, 0.030760783702135086, 0.01893087476491928, -0.03332921862602234, -0.008528714068233967, 0.003212431911379099, 0.031274471431970596, 0.00040745572187006474, -0.01171659491956234, -0.012721306644380093, 0.017963934689760208, 0.012887499295175076, -0.001041538082063198, 0.01306879986077547, -0.025669239461421967, 0.032573796808719635, 0.017208512872457504, 0.024566322565078735, 0.021574851125478745, -0.015108440071344376, -0.011157582513988018, 0.01790350116789341, -0.004377670586109161, 0.013484282419085503, -0.010847860015928745, -0.016543742269277573, -0.0051670861430466175, 0.035051580518484116, -0.018825115635991096, 0.008166112005710602, 0.01760133169591427, 0.018764682114124298, -0.018674030900001526, -0.03668329119682312, -0.024218829348683357, 0.0014513544738292694, -0.002562768990173936, -0.013763788156211376, -0.018099911510944366, -0.00022060683113522828, 0.02219429798424244, -0.04070213809609413, -0.02234538272023201, 0.0011010275920853019, 0.0015080111334100366, -0.017359597608447075, 0.032573796808719635, -0.008657136000692844, 0.006353098899126053, 0.0027686215471476316, -0.010047112591564655, 0.020698562264442444, -0.030005361884832382, 0.005658110603690147, 0.018084801733493805, 0.004891357384622097, 0.006553285755217075, 0.035051580518484116, 0.005321947857737541, -0.009616522118449211, -0.017994152382016182, -0.03332921862602234, 0.004143489524722099, 0.007512671407312155, 0.004702501930296421, 0.003824323881417513, 0.024656973779201508, 0.006198237184435129, -0.005099098198115826, -0.026107383891940117, 0.02240581624209881, -0.03136511892080307, 0.029159288853406906, 0.013219884596765041, 0.04599009081721306, -0.011270895600318909, -0.03254357725381851, -0.03193924203515053, 0.0018224555533379316, 0.014768499881029129, -0.011452197097241879, -0.023523841053247452, 0.0045740799978375435, 0.02335764840245247, -0.020471936091780663, -0.012683534994721413, 0.0035882543306797743, 0.009911136701703072, -0.03230184316635132, 0.007818617857992649, 0.016422873362898827, 0.011928113177418709, 0.03441702574491501, 0.0016288786428049207, -0.020139550790190697, 0.019535211846232414, -0.024838274344801903, 0.02125757373869419, 0.007652424741536379, 0.030624806880950928, 0.0007119852234609425, 0.0022039436735212803, 0.030473722144961357, 0.019489886239171028, -0.01696677692234516, 0.004373893141746521, -0.005578791256994009, -0.01102916058152914, -0.00023606937611475587, 0.02228494919836521, -0.018235886469483376, -0.012169848196208477, 0.0249591413885355, -0.014473885297775269, 0.009964016266167164, -0.01571277715265751, 0.00492912856861949, -0.029884492978453636, 0.002285151509568095, 0.01233604084700346, 0.013242547400295734, 0.03734806180000305, -0.0016269900370389223, 0.04934416338801384, 0.04308927059173584, -0.01473828312009573, 0.03196945786476135, -0.03166728839278221, -0.05423929914832115, -0.01506311446428299, -0.002611871575936675, -0.01856827177107334, -0.013325643725693226, -0.015637235715985298, -0.05297018960118294, 0.02467208169400692, -0.027180083096027374, 0.013454065658152103, -0.01658906601369381, 0.002224717754870653, 0.013038583099842072, 0.018447404727339745, 0.005869628861546516, 0.020064007490873337, 0.014602307230234146, -0.0036241370253264904, 0.003097230102866888, -4.945653199683875e-05, -0.015878969803452492, 0.04148777574300766, 0.009518316946923733, -0.020698562264442444, -0.0037997725885361433, -0.02795061282813549, -0.02343318983912468, 0.021453984081745148, 0.01485159620642662, -0.000378655269742012, -0.03704589232802391, -0.008679798804223537, 0.003584477351978421, -0.02976362593472004, 0.008385184220969677, -0.015576801262795925, -0.02823767438530922, 0.008007473312318325, 0.017268946394324303, -0.0010906404349952936, -0.010077329352498055, 0.003367293393239379, 0.0023550279438495636, 0.03629047051072121, 0.021529527381062508, -0.030156444758176804, -0.0005009392043575644, -0.002387133426964283, 0.018976200371980667, 0.024777840822935104, -0.0010642007691785693, 0.03163707256317139, -0.0002618009166326374, -0.0013729794882237911, -0.026545528322458267, -0.021423768252134323, -0.041155390441417694, 0.00347494101151824, 0.04481163248419762, -0.016392657533288002, 0.028509626165032387, -0.0009645794634707272, 0.028554951772093773, -0.027316058054566383, 0.025004466995596886, -0.021166924387216568, -0.03891934081912041, -0.01296304166316986, -0.012275607325136662, 0.02030574344098568, 0.0059716105461120605, 0.012675981037318707, 0.013809113763272762, 0.007463569287210703, 0.04357273876667023, 0.021937454119324684, 0.008241653442382812, 0.01695166900753975, 0.016468198969960213, -0.01502534281462431, 0.035565268248319626, -0.00840029213577509, -0.01266087219119072, -0.018235886469483376, 0.005382381845265627, 0.05786532536149025, 0.003897977527230978, -0.020396392792463303, 0.013877102173864841, -0.021499309688806534, -0.012252944521605968, 0.008883762173354626, -0.006859231740236282, 0.04039996862411499, 0.035988304764032364, 0.024052636697888374, -0.00331252533942461, 0.030292421579360962, -0.0025929859839379787, -0.009374787099659443, -0.009163268841803074, -0.011784583330154419, -0.02350873127579689, -0.014277475886046886, 0.018371863290667534, 0.001975428545847535, -0.002443790202960372, -0.016483306884765625, 0.005363496020436287, 0.006776134949177504, 0.017646657302975655, 0.007327593397349119, 0.017420031130313873, -0.010651449672877789, 0.022768419235944748, -0.015010234899818897, 0.006232231389731169, -0.018734464421868324, -0.021061165258288383, -0.027844853699207306, 0.03299683332443237, 0.014791162684559822, -0.005699658766388893, 0.011625944636762142, 0.01944456249475479, -0.0029612542130053043, -0.054178863763809204, -0.03218097612261772, -0.008672243915498257, 0.06345544755458832, -0.04626204073429108, 0.02350873127579689, -0.017631549388170242, 0.01599983684718609, 0.012094305828213692, 0.037438713014125824, 0.04671529680490494, 0.007516448851674795, -0.012570221908390522, 0.060373324900865555, 0.03199967369437218, 0.0003038212889805436, -0.015516367740929127, -0.008543822914361954, -0.03855673968791962, 0.03601852059364319, 0.02337275631725788, 0.03254357725381851, 0.0031765494495630264, -0.037378281354904175, 0.003488160902634263, -0.034235723316669464, -0.030972301959991455, -0.004970676731318235, 0.011165136471390724, -0.043693605810403824, 0.006009381730109453, 0.030730566009879112, -0.013234993442893028, 0.002619425766170025, -0.01660417579114437, 0.005869628861546516, -0.0062775565311312675, -0.03502136468887329, -0.032362278550863266, 0.008898871019482613, -0.025140443816781044, 0.021423768252134323, 0.000632665934972465, -0.014209487475454807, -0.03656242415308952, -0.019233044236898422, -0.019187718629837036, 0.009797822684049606, -0.01849273033440113, 0.011497522704303265, 0.02684769779443741, -0.01746535673737526, -0.005480586551129818, 0.0007625040598213673, -0.00034182844683527946, -0.008921533823013306, -0.013997969217598438, -0.0063908700831234455, 0.008294533006846905, 0.0016581512754783034, 0.003548594657331705, 0.016906343400478363, 0.02139355055987835, -0.012759077362716198, 0.016845909878611565, -0.03925172612071037, 0.0012927158968523145, -0.02074388787150383, 0.0017166964244097471, -0.01702721230685711, -0.0018564495258033276, 0.013552269898355007, 0.012827064841985703, -0.017012102529406548, -0.009155714884400368, -0.024354804307222366, -0.01349939126521349, -0.031123384833335876, 0.010303955525159836, 0.01364292111247778, -0.018961092457175255, -0.01389976404607296, -0.026681505143642426, 0.022148972377181053, 0.010719438083469868, -0.008981967344880104, 0.014360572211444378, -0.025744780898094177, 0.01153529342263937, 0.0231461301445961, -0.01731427200138569, 0.024656973779201508, -0.01121046207845211, 0.006670376285910606, -0.011595727875828743, -0.007388026919215918, -0.019414344802498817, 0.011739257723093033, -0.009397449903190136, 0.006115140859037638, 0.026621069759130478, -0.022254731506109238, 0.020335959270596504, 0.015282186679542065, -0.0009735500789247453, 0.004812038037925959, 0.011293558403849602, 0.0006487186183221638, -0.002426793100312352, -0.024792948737740517, 0.0032974169589579105, -0.0024419014807790518, 0.011165136471390724, -0.002813946921378374, 0.03568613529205322, 0.02461164817214012, -0.01988270692527294, 0.00011962815187871456, 0.04157842695713043, -0.0033710706047713757, -0.025442613288760185, 0.0033314109314233065, -0.009510762989521027, -0.0052086347714066505, 0.009586305357515812, -0.003626025514677167, -0.0018734465120360255, 0.015818536281585693, -0.015516367740929127, -0.01687612757086754, -0.01601494662463665, -0.030473722144961357, -0.0372876301407814, 0.01914239302277565, -0.030609698966145515, 0.01748046465218067, -0.06949882209300995, -0.022874178364872932, -0.006942328065633774, 0.003595808520913124, -0.01950499601662159, 0.0031482211779803038, 0.0008739288314245641, 0.022164080291986465, -0.009767605923116207, 0.009480546228587627, -0.00928413588553667, -0.011225570924580097, 0.00362224830314517, 0.028766468167304993, -0.003057570429518819, 0.009299244731664658, 0.0231461301445961, -0.013514499180018902, 0.010726992040872574, -0.015418162569403648, -0.005287953652441502, -0.015267077833414078, 0.033299002796411514, -0.02773909457027912, -0.03193924203515053, 0.03574656695127487, -0.010530582629144192, -0.004475875291973352, 0.010840305127203465, -0.026681505143642426, -0.009760051965713501, 0.0008290756377391517, -0.008959304541349411, 0.011165136471390724, 0.0051142070442438126, 0.019157500937581062, 0.00982804037630558, 0.01251734234392643, 0.03254357725381851, 0.028464300557971, 0.0014522987185046077, -0.010598570108413696, -0.0005037720547989011, -0.007886605337262154, -0.01784306764602661, -0.0049782306887209415, 0.011225570924580097, -0.03092697635293007, 0.013590041548013687, 0.012404029257595539, 0.016981886699795723, 0.0014296361478045583, 0.015146210789680481, -0.021786369383335114, 0.004283242858946323, 0.006228454411029816, 0.02488359995186329, -0.00651173759251833, 0.009012184105813503, -0.022239623591303825, 0.06575193256139755, 0.016845909878611565, 0.0034182844683527946, -0.007788400631397963, -0.006028267554938793, -0.013990415260195732, 0.0320298932492733, 0.01921793445944786, 0.009775160811841488, -0.004109495785087347, -0.0011935667134821415, -0.001359759597107768, -0.007818617857992649, 0.005012224894016981, 0.019127285107970238, 0.022103646770119667, 0.0372876301407814, 0.007531557232141495, 0.009306798689067364, -0.004744050092995167, -0.026258468627929688, -0.0026307571679353714, 0.015878969803452492, 0.0056807734072208405, -0.006753472611308098, -0.011225570924580097, -0.004634513985365629, -0.03354073688387871, 0.005688327364623547, -0.00793193094432354, 0.027603119611740112, 0.009571196511387825, 0.029098855331540108, -0.002069856273010373, -0.013333197683095932, 0.041517991572618484, -0.004513646475970745, 0.008883762173354626, 0.011021606624126434, -0.019489886239171028, -0.0011340772034600377, -0.02547282911837101, 0.011527739465236664, -0.0013673137873411179, -0.012728860601782799, 0.02015465870499611, -0.003726118942722678, 0.022798635065555573, -0.004804483614861965, -0.023176345974206924, 0.017163187265396118, 0.0057752011343836784, -0.01565234363079071, -0.022979937493801117, -0.010726992040872574, 0.005420152563601732, 0.00393197126686573, -0.020502151921391487, 0.016770368441939354, 0.004135935567319393, -0.0015391722554340959, 0.0097902687266469, -0.0015297294594347477, -0.0262131430208683, 0.0015061225276440382, 0.007607099134474993, 0.00086920743342489, -0.019021525979042053, -0.023614490404725075, -0.0014570201747119427, -0.0011170802172273397, 0.0006930996896699071, -0.008740232326090336, 0.00347494101151824, 0.005869628861546516, 0.002502335235476494, -0.0049933395348489285, -0.00848338846117258, 0.0187042485922575, -0.029023312032222748, -0.014836487360298634, -0.009540979750454426, 0.0067685809917747974, 0.0049744537100195885, -0.009918690659105778, 0.0041925921104848385, -0.017163187265396118, -0.010961173102259636, 0.028993096202611923, -0.024279262870550156, -0.008218991570174694, 0.01973162218928337, 0.02307058684527874, 0.024566322565078735, -0.008778003044426441, -0.03982584550976753, -0.022028105333447456, 0.014466331340372562, -0.008657136000692844, 0.00166098412591964, 0.002258711727336049, -0.007346478756517172, 0.019625863060355186, -0.019308585673570633, 0.005948948208242655, -0.015924295410513878, -0.00964673887938261, -0.03837543725967407, 0.005110429599881172, -0.02233027294278145, 0.008778003044426441, -0.009896027855575085, -0.02322167158126831, 0.00393197126686573, -0.029446348547935486, -0.00887620821595192, -0.006069815717637539, -0.01503289770334959, 0.0187042485922575, -0.01405084878206253, -0.042545367032289505, 0.0033011941704899073, 0.004838477820158005, 0.004203923512250185, 0.009548533707857132, 0.0030896759126335382, -0.030111121013760567, -0.009246365167200565, 0.007168954703956842, 0.004154820926487446, 0.028917552903294563, -0.024430347606539726, -0.0195805374532938, 0.008090569637715816, -0.014776053838431835, 0.025593696162104607, 0.005937616806477308, 0.0007955537876114249, -0.0021321785170584917, 0.00818877387791872, -0.004396555945277214, -0.018356753513216972, -0.009760051965713501, 0.011739257723093033, 0.0104474863037467, -0.02526131086051464, -0.014912029728293419, 0.026590853929519653, 0.013091462664306164, -0.05275867134332657, -0.004868694581091404, -0.007010316010564566, 0.01109714899212122, -0.006594833917915821, 0.008007473312318325, -0.009782714769244194, -0.0032426489051431417, -0.017963934689760208, 0.009435220621526241, -0.01856827177107334, 0.031274471431970596, -0.005242628511041403, 0.02233027294278145, -0.010175534524023533, 0.008536268025636673, -0.0007809174712747335, 0.013771343044936657, -0.03429615870118141, -0.0030424620490521193, 0.013997969217598438, -0.025200877338647842, 0.009397449903190136, 0.009125497192144394, -0.016317114233970642, -0.033299002796411514, -0.0002105738822137937, 0.024128178134560585, -0.013650475069880486, 0.017495572566986084, -0.008294533006846905, -0.00914060603827238, 0.0027893956284970045, 0.0004584467096719891, 0.003760112915188074, 0.014126391150057316, 0.0009820485720410943, -0.013997969217598438, 0.004215254448354244, 0.001965985633432865, 0.00021045583707746118, 0.003514600684866309, -0.006092478055506945, -0.011996100656688213, 0.014292583800852299, -0.006745918188244104, 0.0010434265714138746, 0.03266444802284241, -0.0030179107561707497, 0.004694947507232428, -0.01586386188864708, -0.018326537683606148, 0.011006498709321022, 0.039040207862854004, -0.049374379217624664, 0.04417707771062851, -0.0004834700666833669, -0.005862074438482523, -0.012275607325136662, 0.014942246489226818, -0.0006331380573101342, -0.021846802905201912, -0.012298270128667355, -0.026288684457540512, -0.000688378291670233, 0.008286979049444199, -0.0001630058977752924, 0.02124246582388878, -0.032362278550863266, 0.010198196396231651, 0.009956461377441883, -0.020275525748729706, 0.0010198196396231651, 0.006198237184435129, 0.00301979947835207, 0.005201080348342657, 0.013484282419085503, -0.0005575958639383316, -0.01891576685011387, 0.018613597378134727, -0.025744780898094177, 0.019459670409560204, 0.024279262870550156, 0.005405044183135033, 0.018658922985196114, 0.019414344802498817, -0.0009669401333667338, 0.006137803662568331, -0.005416375584900379, 0.019127285107970238, -0.01306879986077547, -0.0026137600652873516, -0.027391601353883743, -0.021091381087899208, -0.016649501398205757, -0.009918690659105778, -0.00021647561516147107, 0.012358703650534153, 0.012675981037318707, 0.0035334862768650055, -0.008347412571310997, -0.0018045142060145736, 0.0019376573618501425, -0.009435220621526241, 0.004373893141746521, -0.007248274050652981, 0.01813012734055519, -0.0008710959809832275, 0.016498416662216187, 0.000415009941207245, -0.04281731694936752, 0.009601413272321224, 0.00300280237570405, 0.0419108122587204, 0.0010566464625298977, 0.004230363294482231, -0.029008204117417336, -0.005673218984156847, 0.004453212488442659, 0.0187042485922575, 0.008090569637715816, -0.008022581227123737, 0.013552269898355007, -0.015516367740929127, -0.009639184921979904, -0.004101941362023354, -0.010024449788033962, -0.004298351239413023, -0.004494760651141405, 0.006681707222014666, 0.0006189738633111119, 0.002800727030262351, 0.04532532021403313, -0.010817642323672771, 0.00729359919205308, -0.002107627224177122, -0.004328568000346422, -0.011610835790634155, 0.03233205899596214, 0.0006935718120075762, -0.018447404727339745, 0.015773210674524307, 0.021197140216827393, -0.00522374315187335, -0.03629047051072121, -0.004672285169363022, 0.025533262640237808, -0.0036921249702572823, 0.0009877142729237676, -0.001552392146550119, -0.03121403604745865, -0.04846787452697754, 0.019338803365826607, 0.010213305242359638, 0.04565770551562309, -0.030080903321504593, -0.0017941271653398871, 0.026968564838171005, -0.01784306764602661, 0.017284054309129715, -0.02591097354888916, 0.007274713832885027, 0.00018885549798142165, -0.008853545412421227, 0.008098123595118523, -0.0024721184745430946, 0.011218016035854816, -0.007187840063124895, 0.018220778554677963, 0.007184063084423542, 0.00935212429612875, 0.02248135767877102, -0.0008196328417398036, -0.031546421349048615, -0.021227357909083366, -0.021287791430950165, -0.020487044006586075, -0.021574851125478745, 0.0071953944861888885, -0.01520664431154728, -0.014859150163829327, 0.0011180245783179998, -0.007629761938005686, 0.008151003159582615, 0.0010490922722965479, 0.008309641852974892, -0.02962765097618103, -0.026318902149796486, 0.018961092457175255, -0.014496548101305962, -0.012524896301329136, -9.287854481954128e-06, -0.007006539031863213, -0.012139631435275078, -0.001613770262338221, -0.021650394424796104, 0.009359678253531456, 0.0054730321280658245, 0.0034315043594688177, -0.017888393253087997, -0.03296661376953125, -0.005348387639969587, -0.01942945271730423, 0.0104474863037467, -0.015267077833414078, -0.03496092930436134, -0.009306798689067364, -0.008264316245913506, 0.03411485627293587, 0.0029858052730560303, -0.007493786048144102, -0.00571099016815424, -0.008762895129621029, 0.03487027809023857, -0.008921533823013306, -0.010749654844403267, 0.004271911457180977, -0.0017573003424331546, -0.0036354681942611933, -0.006428641267120838, 5.8073066611541435e-05, -0.0020981845445930958, 0.0009508873918093741, -0.030972301959991455, 0.0120414262637496, 0.043784257024526596, 0.00035693688550964, -0.013091462664306164, 0.01405084878206253, -0.012879944406449795, -0.025714565068483353, -0.018507838249206543, -0.03834522143006325, -0.018674030900001526, 0.005465478170663118, 0.015335066244006157, -0.0069800992496311665, 0.02291950210928917, 0.020199984312057495, 0.018462512642145157, 0.006878117099404335, -0.010998943820595741, -0.030171554535627365, 0.01565234363079071, -0.0015778876841068268, 0.019625863060355186, 0.0022436033468693495, 0.010485257022082806, -0.012343594804406166, -0.021212249994277954, 0.023115912452340126, 0.032060109078884125, -0.0018375639338046312, 0.008604256436228752, 0.010417269542813301, -0.012743968516588211, 0.002258711727336049, 0.012388920411467552, -0.016770368441939354, -0.017299164086580276, -0.021741043776273727, 0.027119649574160576, -0.006798797752708197, -0.0012492791283875704, -0.012849727645516396, 0.0082567622885108, -0.007505117449909449, -0.009888473898172379, 0.02692323923110962, 0.020139550790190697, 0.0018394525395706296, -0.0013446511002257466, -0.006262448150664568, 0.0004390890244394541, 0.005148200783878565, 0.01746535673737526, 0.010024449788033962, 0.024400129914283752, -0.02139355055987835, -0.012781740166246891, 0.02598651684820652, -0.007021647412329912, 0.0365322083234787, -0.00726338243111968, 0.013219884596765041, 0.018084801733493805, -0.02007911540567875, -0.018220778554677963, -0.010228414088487625, 0.02444545552134514, -0.01971651427447796, -0.006719478406012058, -0.015486150979995728, -0.020275525748729706, 0.012033872306346893, 0.006190683227032423, -0.017933716997504234, 0.005216188728809357, 0.005748761352151632, 0.002589208772405982, -0.0028573835734277964, -0.006587279494851828, 0.01704232022166252, -0.008581593632698059, 0.0010575908236205578, -0.0050915442407131195, -0.0020585248712450266, 0.01906685158610344, 0.002662862418219447, -0.021378442645072937, -0.009389895014464855, -0.003977296873927116, -0.024853384122252464, 0.0030179107561707497, 0.003293639747425914, -0.019308585673570633, -0.00506132747977972, 0.011346437968313694, 0.004324791021645069, 0.0002714797738008201, -0.022390708327293396, -0.012834619730710983, -0.007410689722746611, -0.0015892189694568515, 0.009216148406267166, 0.020396392792463303, 0.001041538082063198, -0.012396474368870258, 0.012562667950987816, -0.025503046810626984, -0.009744943119585514, -0.0029102631378918886, -0.013182113878428936, -0.024944033473730087, 0.0022228292655199766, -0.005744984373450279, 0.08140427619218826, -0.008740232326090336, 0.006863008718937635, 0.010983835905790329, 0.012048980221152306, -0.0016666497103869915, 0.001759188948199153, 0.022964827716350555, 0.005427706986665726, -0.015085777267813683, 0.00554857449606061, -0.019323693588376045, 0.005004670470952988, -0.007546665612608194, -0.005287953652441502, 0.010560799390077591, 0.016573958098888397, 0.03607895225286484, -0.0135749327018857, 0.023493623360991478, 0.02175615355372429, 0.01298570353537798, -0.010560799390077591, -0.0037827754858881235, -0.0015004569431766868, 0.019338803365826607, 0.006455081049352884, 0.02532174438238144, 0.007153846323490143, 0.00301979947835207, -0.004188814666122198, 0.01819056086242199, -0.008151003159582615, -0.016619283705949783, -0.004441881086677313, 0.008762895129621029, -0.013718463480472565, 0.02139355055987835, -0.001948988763615489, 0.013861993327736855, -0.002929148729890585, -0.011195354163646698, 0.010311510413885117, 0.00618690624833107, 0.01927836984395981, -0.004441881086677313, 0.0038526521530002356, -0.005450369790196419, 0.014307692646980286, -0.026757046580314636, -0.024777840822935104, 0.0028781576547771692, 0.011119811795651913, 0.014549427665770054, 0.010032003745436668, -0.00949565414339304, 0.002723296172916889, -0.000963635160587728, 0.01237381249666214, 0.009012184105813503, 0.012426692061126232, -0.006232231389731169, -0.025654129683971405, -0.028917552903294563, 0.014949801377952099, -0.03517244756221771, -0.00848338846117258, -0.007354033179581165, -0.02562391385436058, 0.021076273173093796, -0.00536727299913764, 0.0262131430208683, 0.012804402969777584, -0.017087645828723907, -0.005023556295782328, 0.007939484901726246, 0.017586223781108856, 0.002237937645986676, -0.004698724951595068, -0.008679798804223537, 0.014209487475454807, 0.0033484080340713263, -0.011731703765690327, -0.021801479160785675, 0.0024588985834270716, 0.0057789781130850315, 0.028993096202611923, -0.015100885182619095, 0.008717569522559643, -0.01855316385626793, -0.0054692551493644714, 0.013846884481608868, -0.0060207131318748, 0.0031501096673309803, 0.007663756143301725, 0.0008064129506237805, -0.013083908706903458, -0.02686280570924282, 0.04061148688197136, 0.003973519429564476, 0.001767687383107841, 0.01971651427447796, 0.001338041154667735, 0.005964056588709354, -0.008181219920516014, -0.0055674598552286625, 0.005295508075505495, 0.016317114233970642, -0.008030136115849018, 0.015297295525670052, -0.009435220621526241, -0.02059280313551426, -0.013129234313964844, -0.0009253919124603271, -0.024581430479884148, 0.010500365868210793, 0.00036024185828864574, -0.0018857221584767103, -0.0004976342315785587, -0.017374705523252487, 0.017918609082698822, 0.008981967344880104, -0.005201080348342657, 0.00014636300329584628, 0.008861100301146507, 0.017148079350590706, 0.0005802584928460419, -0.011467305943369865, -0.016936561092734337, 0.006844123359769583, 0.0007119852234609425, 0.022904394194483757, -0.009525870904326439, 0.009752498008310795, 0.01237381249666214, -0.012577775865793228, -0.0217712614685297, -0.013710908591747284, 0.01748046465218067, -0.0008399348007515073, 0.0024721184745430946, 0.0040037366561591625, 0.0027629558462649584, 0.017556006088852882, -0.010198196396231651, -0.022964827716350555, -0.016936561092734337, -0.005197303369641304, 0.022723093628883362, -0.002902708947658539, 0.003712899051606655, -0.014889366924762726, -0.0060056047514081, -0.0026137600652873516, 0.012275607325136662, 0.006915888283401728, -0.019489886239171028, -0.011980992741882801, -0.00680257473140955, -0.007063195575028658, 0.011180245317518711, 0.020547477528452873, -0.016785476356744766, -0.0023418080527335405, 0.002457010094076395, -0.008430508896708488, 0.0018923321040347219, 0.009601413272321224, 0.003214320633560419, 0.032060109078884125, 0.006421086844056845, 0.006946105044335127, 0.0029933596961200237, -0.0060622612945735455, -0.0022549345158040524, 0.011437089182436466, -0.01062123291194439, 0.007191617041826248, -0.011852570809423923, 0.01630200631916523, 0.008430508896708488, -0.010870521888136864, -0.0025703231804072857, 0.002356916666030884, 0.008830882608890533, -0.00807546079158783, 0.020623020827770233, -0.014277475886046886, 0.0001530909794382751, 0.025351962074637413, -0.01994314044713974, 0.022874178364872932, 0.01248712558299303, -0.0062964423559606075, 0.005110429599881172, 0.02081942930817604, 0.003780886996537447, 0.002606205875054002, 0.002959365723654628, -0.011610835790634155, 0.004917797166854143, 0.004041507374495268, 0.0013484281953424215, -0.003924417309463024, -0.0104777030646801, -0.01776752434670925, -0.011950775980949402, -0.017163187265396118, -0.015342620201408863, 0.001948988763615489, -0.059134431183338165, -0.016619283705949783, 0.006708147004246712, 0.0082567622885108, -0.027240516617894173, 9.312936890637502e-05, 0.01599983684718609, -0.0070745269767940044, 0.02452099695801735, 0.013446511700749397, -0.002555214799940586, -0.002003756817430258, -0.0019980911165475845, -0.013537161983549595, -0.014390788972377777, -0.008445617742836475, 0.0030858987011015415, 0.009767605923116207, 0.0063908700831234455, -0.010523028671741486, 0.0029140403494238853, -0.0012898830464109778, -0.002151064109057188, -0.008936641737818718, -0.005733652971684933, 0.018356753513216972, 0.007051864173263311, -0.0011756254825741053, -0.010213305242359638, 0.00011962815187871456, -0.0018451182404533029, -0.0007620319374836981, -0.0009570252150297165, -0.0070745269767940044, 0.0030462390277534723, -0.015380391851067543, 0.008800665847957134, -0.00379410688765347, -0.010288847610354424, -2.7708641937351786e-05, 0.00775062944740057, 0.005314393434673548, 0.013703354634344578, 0.005480586551129818, 0.006198237184435129, 0.02730095013976097, 0.01601494662463665, 0.011036715470254421, -0.009571196511387825, 0.0017950715264305472, 0.006863008718937635, 0.006523068994283676, 0.00221905205398798, -0.016906343400478363, 0.01593940332531929, 0.009435220621526241, -0.01769198291003704, 0.007161400280892849, -0.011014052666723728, 0.03233205899596214, -0.005046218633651733, 0.006217123009264469, 0.012419137172400951, 0.02343318983912468, 0.013491836376488209, -0.0032634229864925146, 0.011618389748036861, -0.021348224952816963, 0.0028970432467758656, 0.010764763690531254, 0.0032974169589579105, 0.009556087665259838, 0.00011301821359666064, -0.030005361884832382, 0.008785557933151722, -0.02881179377436638, -0.02255690097808838, -0.001999979605898261, -0.012600438669323921, -0.0026647511404007673, 0.008196328766644001, 0.0019584314431995153, 0.020396392792463303, 0.030247095972299576, -0.008430508896708488, -0.010523028671741486, 0.006942328065633774, 0.008067906834185123, 0.017722200602293015, 0.012116968631744385, -0.0165135245770216, 0.018810007721185684, 0.008770449087023735, -0.012419137172400951, 0.03063991479575634, -3.9394075429299846e-05, 0.011474859900772572, -0.011459751054644585, 0.002504223957657814, 0.010024449788033962, 0.009427666664123535, -0.0062737795524299145, -0.018145235255360603, 0.00789415929466486, -0.005031110253185034, -0.01310657151043415, 0.01695166900753975, 0.004898911342024803, 0.00036968462518416345, 0.0004180788528174162, 0.0031557753682136536, -0.003848874941468239, 0.012509788386523724, 0.022239623591303825, 0.005201080348342657, 0.022179190069437027, 0.010341727174818516, 0.007104743737727404, 0.01986759901046753, 0.0015382280107587576, -0.0037053448613733053, -0.00019865237118210644, -0.010991389863193035, -0.0006534400163218379, -0.0026893022004514933, 0.012653318233788013, 0.019112175330519676, 0.0015410608612000942, 0.0010613679187372327, 0.008906424976885319, -0.03405442461371422, -0.028585167601704597, 0.010507919825613499, -0.0036411338951438665, -0.01767687499523163, 0.016271788626909256, 0.008951750583946705, -0.013673137873411179, 0.011112256906926632, 0.02924994006752968, 0.0061075869016349316, -0.01448899321258068, 0.011943221092224121, 0.0023550279438495636, -0.03568613529205322, -0.008747786283493042, 0.00618690624833107, 0.01624157279729843, 6.155508890515193e-05, 0.0008404069812968373, -0.01528974063694477, 0.012940378859639168, -0.0029744741041213274, -0.023342538625001907, 0.026983672752976418, 0.012048980221152306, 0.012411583214998245, -0.002817723900079727, -0.017586223781108856, -0.013680691830813885, 0.0017412477172911167, -0.014171716757118702, 0.002800727030262351, -0.019248152151703835, -0.0196409709751606, 0.011746811680495739, -0.010311510413885117, 0.0011482414556667209, -0.003287974279373884, 0.02125757373869419, 0.022753309458494186, 0.008128340356051922, 0.0010764762992039323, 0.0026893022004514933, 0.008022581227123737, 0.01980716362595558, -0.0024985582567751408, 0.008921533823013306, 0.009503208100795746, -0.016709934920072556, 0.004864917602390051, 0.018009260296821594, -0.0012464462779462337, -0.0023758020251989365, 0.019323693588376045, -0.0016751482617110014, -0.013620258308947086, 0.022798635065555573, -0.006900779902935028, -0.015833644196391106, -0.00928413588553667, -0.007607099134474993, -0.0013446511002257466, 0.0035391519777476788, 0.004989562090486288, -0.011263341642916203, -0.004430550150573254, 0.007508894428610802, 0.02284396067261696, -0.014934692531824112, -0.011467305943369865, 0.010379497893154621, 0.008060352876782417, 0.009601413272321224, -0.00205663638189435, -0.01284217368811369, 0.021197140216827393, -0.004963122308254242, 0.03683437407016754, 0.01382422260940075, 0.021166924387216568, 0.013393632136285305, 0.027134757488965988, -0.019520103931427002, 0.02648509480059147, 0.007123629096895456, 0.026908131316304207, -0.001973539823666215, -0.011195354163646698, 0.01840207912027836, 0.015486150979995728, -0.007841279730200768, 0.02074388787150383, 0.011233124881982803, -0.009223702363669872, -0.013076354749500751, 0.018235886469483376, -0.030035577714443207, -0.0028838233556598425, 0.04432816058397293, 0.0011935667134821415, -0.012207618914544582, 0.004702501930296421, -0.008060352876782417, 0.01306879986077547, 0.011036715470254421, 0.007202948443591595, 0.017737308517098427, 0.0042907968163490295, -0.0007568384171463549, -0.004532531835138798, 0.02257200889289379, 0.008460726588964462, 0.009329461492598057, -0.027557794004678726, 0.006847900338470936, -0.006783689372241497, -0.0006345544825308025, 0.021846802905201912, -0.02526131086051464, 0.01349939126521349, -0.0002856439386960119, 0.029098855331540108, 0.0173293799161911, -0.003429615870118141, 0.014987572096288204, 0.01980716362595558, 0.012388920411467552, -0.02104605734348297, 0.004581634420901537, -0.005110429599881172, -0.008913978934288025, 0.016120705753564835, -0.00585829745978117, -0.004604296758770943, -0.0002719519252423197, -0.012441799975931644, 0.0002745486854109913, 0.005854520481079817, 0.005809194874018431, -0.020320851355791092, -0.020864754915237427, -0.012819510884582996, -0.010062220506370068, 0.014632523991167545, -0.01062123291194439, -0.03574656695127487, 0.025231095030903816, 0.007225611247122288, 0.01790350116789341, -0.008203882724046707, -0.0052803996950387955, 0.018084801733493805, 0.007811063434928656, -0.002549549099057913, 0.003716676263138652, -0.016317114233970642, 0.03858695551753044, -0.0029404801316559315, 0.002481561154127121, 0.00010977225610986352, -0.009291690774261951, -0.026817480102181435, 0.012033872306346893, 0.015350175090134144, -0.01622646488249302, -0.025895865634083748, -0.02249646745622158, -0.011089595034718513, 0.018794899806380272, 0.016181139275431633, -0.011082040145993233, -0.0005273789865896106, 0.0011690155370160937, -0.003962188493460417, 0.022511575371026993, 0.01528974063694477, 0.013114125467836857, 0.007954593747854233, 0.004528754856437445, -0.002672305330634117, -0.020547477528452873, -0.005862074438482523, 0.009933799505233765, 0.005812972318381071, 0.024279262870550156, -0.004917797166854143, 0.002997136674821377, 0.006345544476062059, -0.005159532185643911, -0.009503208100795746, 0.0010972503805533051, 0.016861017793416977, -0.0013484281953424215, 0.0012190622510388494, 0.0027289618737995625, 0.001183179672807455, -0.00982804037630558, 0.00833985861390829, -0.02293461188673973, -0.0024381245020776987, -0.004283242858946323, 0.020048899576067924, -0.004694947507232428, -0.023705141618847847, -0.025276418775320053, -0.0074597918428480625, -0.01298570353537798, -0.006077369675040245, -0.00551458029076457, -0.02568434737622738, 0.012162294238805771, 0.013559824787080288, 0.019308585673570633, -0.028041264042258263, -0.007025424391031265, -0.006405978463590145, 0.0011454086052253842, 0.013000812381505966, 0.0015684448881074786, -0.0010963061358779669, -0.005019778851419687, -0.010190642438828945, -0.0033238567411899567, -0.004864917602390051, -0.0021132929250597954, -0.012419137172400951, 0.012623101472854614, 0.0016978109488263726, 0.02299504540860653, -0.0023455852642655373, -0.0013625924475491047, -0.014609861187636852, 0.01687612757086754, 0.016543742269277573, 0.0022436033468693495, 0.021499309688806534, -0.025095118209719658, 0.01666460931301117, -0.011610835790634155, 0.005031110253185034, -0.012706197798252106, -0.02169572003185749, 0.006908333860337734, 0.0026609739288687706, -0.0014702400658279657, 0.017994152382016182, 0.012358703650534153, 0.013627812266349792, -0.03420550748705864, 0.015894077718257904, -0.018145235255360603, -0.01408106554299593, -0.021000731736421585, 0.004101941362023354, 0.0011274672579020262, -0.014776053838431835, 0.0019282145658507943, 0.001599606010131538, -0.015153764747083187, 0.01488181296736002, 0.008649582043290138, -0.017495572566986084, -0.002083076164126396, 0.005008447915315628, 0.01091584749519825, 0.019671188667416573, -0.028328323736786842, -0.0052086347714066505, 0.017782634124159813, 0.0053748274222016335, 0.00364679959602654, 0.024687189608812332, -0.016498416662216187, -0.005287953652441502, -0.015637235715985298, 0.013197221793234348, 0.010606124997138977, 0.02524620294570923, 0.012713751755654812, -0.020335959270596504, -0.017994152382016182, 0.010243522003293037, -0.0048838029615581036, -0.011482413858175278, 0.0009022571030072868, -0.00473271869122982, 0.009329461492598057, 0.013393632136285305, 0.005880960263311863, 0.0001712683297228068, -0.02204321324825287, 0.02365981601178646, -0.016981886699795723, 0.004219031892716885, -0.02524620294570923, -0.019036633893847466, 0.01607538014650345, -0.01748046465218067, -0.01927836984395981, 0.023115912452340126, -0.02474762499332428, -0.003665685188025236, 0.0008097179234027863, 0.0064664119854569435, 0.00840784702450037, 0.0097902687266469, 0.0009461660520173609, -0.01390731893479824, 0.0035637032706290483, -0.01266087219119072, -0.00917082279920578, -0.017495572566986084, 0.009427666664123535, -0.012645764276385307, 0.0031293355859816074, 0.010387051850557327, -0.018311429768800735, 0.013015920296311378, 0.003006579587236047, -0.004706278908997774, -0.019595645368099213, 0.012411583214998245, 0.02160506881773472, -0.010938510298728943, -0.0120112095028162, 0.013076354749500751, 0.01891576685011387, 0.009042400866746902, 0.0008786501712165773, 0.003265311475843191, 0.010303955525159836, -0.007788400631397963, 0.003354073502123356, 0.0014995125820860267, -0.0030821217224001884, 0.002107627224177122, -0.0276484452188015, 0.007161400280892849, -0.05547818914055824, -0.009389895014464855, 0.003969742450863123, -0.008158557116985321, -0.015440825372934341, -1.3972356100566685e-05, 0.0014504102291539311, 0.001234170631505549, -0.03450767695903778, -0.01819056086242199, 0.021000731736421585, -0.009812931530177593, -0.014579644426703453, -0.015463488176465034, 0.014239704236388206, 0.006628828123211861, 0.014972463250160217, -0.018961092457175255, 0.01828121207654476, -0.009601413272321224, -0.005476809572428465, -0.020320851355791092, -0.01248712558299303, 0.019021525979042053, -0.004158597905188799, 0.02168061025440693, -0.01095361914485693, 0.012547559104859829, 0.009835594333708286, 0.010878076776862144, -0.012071643024682999, 0.008211436681449413, 0.0038394322618842125, 0.0059678335674107075, 0.001836619689129293, -0.029642758890986443, -0.00982804037630558, 0.0059904963709414005, -0.014760945923626423, -0.01313678827136755, -0.012094305828213692, -0.008067906834185123, 0.004226585850119591, 0.0058507430367171764, 0.010470149107277393, -0.007516448851674795, -0.0027459589764475822, 0.005136869382113218, 0.023992201313376427, 0.0011982881696894765, 0.01532751228660345, 0.030231988057494164, -0.012796848081052303, -0.012320932932198048, 0.0008550432394258678, -0.0026949679013341665, -0.016045162454247475, 0.003097230102866888, -0.019520103931427002, 0.007984810508787632, 0.012472016736865044, -0.008944196626543999, -0.005136869382113218, 0.01531995739787817, -0.002868714975193143, 0.02045682817697525, 0.011429534293711185, -0.017117861658334732, 0.002929148729890585, -0.0007204837165772915, 0.015848753973841667, -0.011656161397695541, -0.006817683577537537, 0.01921793445944786, 0.006341767497360706, -0.004445658531039953, -0.0036014742217957973, 0.00584318907931447, 0.008755341172218323, 0.0040037366561591625, 0.021423768252134323, 0.019323693588376045, 0.0058922916650772095, 0.001281384495086968, 0.0031897693406790495, 0.0030141337774693966, -0.0024060190189629793, 0.022360490635037422, 0.006013159174472094, -0.01313678827136755, 0.022436032071709633, -0.005000893492251635, 0.011625944636762142, 0.006863008718937635, -0.00866468995809555, 0.018794899806380272, -0.022179190069437027, -0.009291690774261951, 0.0049782306887209415, 0.0009820485720410943, 0.028721144422888756, -0.00898952130228281, 0.026303794234991074, -0.01971651427447796, 0.0019924254156649113, -0.011218016035854816, -0.0069800992496311665, 0.027134757488965988, -0.008778003044426441, 0.02801104635000229, -0.00789415929466486, -0.012691088952124119, -0.008453171700239182, -0.011527739465236664, -0.0019980911165475845, 0.0195805374532938, 0.007811063434928656, 0.0029404801316559315, 0.005420152563601732, -0.007701527327299118, -0.005272845271974802, 0.001960319932550192, -0.001694978098385036, -0.00649285176768899, 0.0007894159643910825, -0.02016976661980152, 0.010832751169800758, -0.0073653641156852245, -0.011414426378905773, 0.013121679425239563, -0.0068667856976389885, 0.004940459970384836, 0.0024891153443604708, -0.017933716997504234, 0.005242628511041403, 0.0068856715224683285, -0.008891317062079906, 0.004547640215605497, -0.028993096202611923, 0.0036921249702572823, 0.0024456786923110485, -0.03414507210254669, 0.014322800561785698, -0.008445617742836475, 0.0001673731894697994, -0.01936901919543743, 0.004849809221923351, -0.0012247278355062008, -0.0006473021931014955, -0.0026307571679353714, 0.01965608075261116, -0.010462594218552113, 0.0028989319689571857, -0.02446056343615055, 0.011406871490180492, 0.01696677692234516, -0.030292421579360962, -0.012298270128667355, 0.012834619730710983, -0.00946543738245964, 0.014685403555631638, 0.0033181910403072834, -0.035625699907541275, 0.0003984851064160466, -0.0003649632562883198, -0.016120705753564835, 0.00505755003541708, -0.027059216052293777, 0.003958411049097776, 0.008997076191008091, 0.0031085615046322346, -0.007886605337262154, 0.026243358850479126, -0.004124604165554047, -0.003501380793750286, -0.0054919179528951645, 0.005744984373450279, -0.009888473898172379, 0.006881894078105688, -0.001673259655945003, -0.005253959912806749, 0.00833985861390829, 0.012759077362716198, 0.004324791021645069, 0.01244935393333435, 0.006832791958004236, 0.00363169121555984, -0.0031425554770976305, 0.0058960686437785625, -0.0029839167837053537, -0.009571196511387825, -0.019036633893847466, -0.021801479160785675, 0.009571196511387825, 0.027678661048412323, 0.0010169867891818285, -0.014285029843449593, 0.015229307115077972, -0.005744984373450279, -0.02097051404416561, -0.012464462779462337, -0.010220859199762344, 0.013680691830813885, 0.005382381845265627, 0.008657136000692844, -0.016422873362898827, 0.01207919791340828, -0.01026618480682373, 0.005809194874018431, 0.004071724601089954, 0.01325010135769844, -0.014058402739465237, -0.002982028294354677, 0.048226140439510345, -0.013423848897218704, 0.005340833216905594, -0.017359597608447075, 0.012260498479008675, 0.0020490821916610003, 0.0025004467461258173, -0.01372601743787527, -0.008362521417438984, -0.013151897117495537, -0.022028105333447456, -0.011353992857038975, -0.01927836984395981, 4.03678604925517e-05, -0.047410283237695694, -0.009873365052044392, -0.008853545412421227, 0.0033710706047713757, -0.01040971465408802, -0.0037563357036560774, -0.005809194874018431, 0.010371943935751915, 0.010719438083469868, -0.014224596321582794, -0.0030179107561707497, -0.014035740867257118, 0.004120826721191406, -0.007886605337262154, -0.0025835430715233088, 0.004052838776260614, -0.00724449660629034, 0.014715620316565037, -0.014768499881029129, 0.01528974063694477, -0.015682559460401535, -0.0142321502789855, 0.009185931645333767, -0.01571277715265751, 0.01218495611101389, 0.0021661724895238876, 0.00039518013363704085, 0.01448899321258068, -0.018175452947616577, -0.013522053137421608, 0.012781740166246891, -0.016468198969960213, 0.016770368441939354, 0.02684769779443741, 0.028403867036104202, 0.0010802533943206072, -0.009654292836785316, -0.006564617156982422, -0.005329502280801535, 0.009556087665259838, 0.001883833552710712, -0.014760945923626423, 0.0033181910403072834, 0.021952562034130096, -0.020925188437104225, 0.022647550329566002, 0.02255690097808838, 0.004555194638669491, 0.0028366094920784235, 0.010908293537795544, -0.028403867036104202, -0.017918609082698822, 0.004710055887699127, 0.009457883425056934, 0.01157306507229805, -0.003265311475843191, 0.018009260296821594, -0.019263260066509247, 0.0019471001578494906, -0.009367232210934162, 0.01906685158610344, -0.005261514335870743, 0.009948907420039177, 0.007255828008055687, 0.007429575081914663, 0.032785315066576004, -0.0275880116969347, 0.0029990251641720533, 0.014368126168847084, 0.04248493164777756, -4.187280501355417e-05, 0.01306879986077547, -0.01448899321258068, 0.0020623020827770233, -0.013952643610537052, -0.013121679425239563, 0.017631549388170242, -0.010371943935751915, 0.002817723900079727, 0.017117861658334732, 0.0035674802493304014, -0.0021189586259424686, 0.018099911510944366, 0.001725194975733757, -0.009102835319936275, 0.00489513436332345, 0.00887620821595192, 0.0023304768837988377, -0.012313378043472767, -0.0072898222133517265, 0.014760945923626423, 0.015591910108923912, -0.009782714769244194, -0.01361270435154438, 0.009276581928133965, 0.013000812381505966, -0.010213305242359638, 0.011527739465236664, 0.004664730746299028, -0.012411583214998245, -0.005235074553638697, -0.024400129914283752, -0.03444724157452583, 0.03172772377729416, 0.01595451310276985, -0.0006449415232054889, -0.03429615870118141, -0.023402972146868706, -0.016694825142621994, 0.017117861658334732, -0.005729875527322292, 0.02030574344098568, -0.005790309514850378, 0.030972301959991455, 0.0015901633305475116, -0.0008725124062038958, -0.016256680712103844, -0.005027333274483681, -0.005669442005455494, 0.02097051404416561, 0.009488100185990334, -0.015108440071344376, 0.008793111890554428, -0.03284574672579765, -0.005563682876527309, 0.027316058054566383, 0.0026269799564033747, 0.007493786048144102, -0.014149053953588009, 0.012313378043472767, -0.023977093398571014, 0.029144180938601494, -0.001797904260456562, 0.0031897693406790495, -0.0006369151524268091, -0.01578831858932972, 0.0003734617494046688, 0.01284217368811369, 0.009722281247377396, -0.014640077948570251, 0.008264316245913506, -0.01186767965555191, 0.003694013459607959, 0.00443810410797596, -0.03405442461371422, -0.010198196396231651, 0.007225611247122288, 0.010870521888136864, -0.0014343574875965714, 0.0018488953355699778, 0.011671269312500954, 0.017420031130313873, 0.003178437938913703, 0.021967671811580658, -0.019686296582221985, -0.0014003635151311755, -0.00507643586024642, -0.0012190622510388494, -0.008808220736682415, 5.889930616831407e-05, -0.011913004331290722, 0.019852489233016968, -0.01702721230685711, -0.004936682526022196, -0.037801314145326614, 0.005544797517359257, 0.009518316946923733, 0.01372601743787527, -0.012366257607936859, -0.005726098548620939, 0.010983835905790329, 0.029280155897140503, -0.006345544476062059, 0.016770368441939354, -0.001358815236017108, -0.0186438150703907, -0.006541954353451729, 0.010613678954541683, -0.005880960263311863, -0.02133311703801155, 0.00793193094432354, 0.00744090648368001, -0.005299285054206848, 0.0024041305296123028, 0.007539111189544201, -0.011792137287557125, 0.0012587219243869185, 0.014609861187636852, -0.009087726473808289, -0.004898911342024803, 0.03354073688387871, -0.015078222379088402, 6.480103911599144e-05, -0.009616522118449211, -0.0071953944861888885, -0.005325724836438894, 0.000998101313598454, -0.0002327644033357501, 0.021000731736421585, -0.0014957354869693518, -0.00365624250844121, 0.0016505970852449536, -0.023961985483765602, -0.012864836491644382, -0.013227438554167747, -0.015682559460401535, -0.0051859719678759575, -0.010991389863193035, 0.005291731096804142, -0.00584318907931447, -0.008158557116985321, -0.009843148291110992, 0.02394687756896019, 0.01171659491956234, -0.016105595976114273, -0.010666558519005775, 0.01580342836678028, -0.010356835089623928, 0.0012275606859475374, -0.0003536319127306342, -0.010107546113431454, 0.0028970432467758656, 0.004283242858946323, -0.009571196511387825, 0.0011029160814359784, 0.007795955054461956, -0.010946064256131649, -0.019761839881539345, -0.006711924448609352, -0.0049744537100195885, -0.006239785347133875, 0.03142555430531502, -0.005529689136892557, -0.010198196396231651, 0.010681666433811188, 0.007184063084423542, -0.007323815952986479, -0.015607018023729324, 0.0019640971440821886, -0.006043375935405493, -0.003221874823793769, -0.0049971165135502815, -0.008747786283493042, 0.01349939126521349, -0.012343594804406166, -0.01674015074968338, -0.013257656246423721, 0.01062123291194439, -0.014821379445493221, -0.010855413973331451, -0.03115360252559185, 0.015909187495708466, -0.010288847610354424, 0.026379335671663284, 0.011845016852021217, -0.0020755219738930464, -0.002727073384448886, -0.004011290613561869, 0.02140865847468376, 0.034386809915304184, -0.009472991339862347, 0.002016976708546281, 0.02255690097808838, 0.013861993327736855, -0.0029140403494238853, -0.014186824671924114, 0.015048005618155003, -0.014760945923626423, -0.00365624250844121, -0.003346519311890006, -0.0015977175207808614, -0.00026298128068447113, 0.005344610661268234, -0.03100251778960228, -0.02452099695801735, -0.009760051965713501, 0.0035542603582143784, -0.01361270435154438, 0.017586223781108856, -0.014269920997321606, -0.002300259890034795, 0.00633043609559536, 0.005941393785178661, -0.010228414088487625, -0.0004584467096719891, -0.0023927991278469563, 0.0034900496248155832, -0.0013172670733183622, -0.021665502339601517, -0.0026893022004514933, -0.020139550790190697, 0.0082567622885108, -0.001962208654731512, -0.0011907338630408049, -0.024430347606539726, -0.0036637966986745596, 0.005363496020436287, -0.0030783445108681917, -0.027482252568006516, 0.002168060978874564, 0.002770510036498308, -0.008642027154564857, -0.019384128972887993, 0.021136706694960594, 0.00460051978006959, -0.01517642755061388, -0.01803947612643242, -0.018749574199318886, -0.007565550971776247, 0.022451141849160194, -0.00393197126686573, -0.005559905897825956, 0.011467305943369865, -0.0007724189781583846, 0.006723255850374699, 0.025427503511309624, 0.0007157623185776174, -0.0064852978102862835, 0.020124441012740135, 0.008883762173354626, 0.0062020146287977695, -0.027557794004678726, -0.003306859638541937, 0.013650475069880486, -0.0030896759126335382, 0.008747786283493042, -0.002657196717336774, 0.00887620821595192, 0.0013578709913417697, 0.01580342836678028, -0.00917082279920578, 0.017994152382016182, -0.005442815367132425, 0.011104702949523926, -0.00571099016815424, 0.01935391128063202, -0.007554220035672188, 0.011459751054644585, -0.017495572566986084, 0.0049744537100195885, -0.0034352815710008144, -0.015833644196391106, 0.0024456786923110485, -0.0060622612945735455, 0.010930956341326237, -0.00269307941198349, 0.019489886239171028, -0.006122695282101631, 0.022738201543688774, 0.011512630619108677, -0.005393712781369686, -0.015697669237852097, -0.010968727059662342, 0.015085777267813683, -0.005767646711319685, 0.004706278908997774, 0.001789405825547874, 0.024581430479884148, -0.015259523876011372, -0.004169929306954145, 0.008725123479962349, -0.010311510413885117, -0.000300988438539207, -0.0007129294681362808, -0.01171659491956234, 0.007871497422456741, -0.010319064371287823, 0.0009003685554489493, -0.003272865666076541, -0.0043814475648105145, 0.006016936153173447, 0.01609048806130886, 0.006266225129365921, 0.0013692023931071162, 0.01609048806130886, -0.007006539031863213, 0.011988546699285507, -0.004064170178025961, 0.002902708947658539, 0.004982008133083582, 0.052063681185245514, 0.011316221207380295, 0.011943221092224121, -0.0043096826411783695, 0.003457944141700864, -0.02198277972638607, 0.0046685077250003815, 0.011784583330154419, -0.013846884481608868, -0.0008701516781002283, 0.008506051264703274, -0.010961173102259636, 0.017782634124159813, 0.005023556295782328, -0.0007105687982402742, 0.015531475655734539, 7.412578270304948e-05, 0.015440825372934341, 0.015848753973841667, 0.019595645368099213, 0.008868654258549213, 0.003916862886399031, -0.01207919791340828, -0.010878076776862144, 0.006247339770197868, 0.0069838762283325195, 0.018296319991350174, -0.030096011236310005, -0.00019027190865017474, 0.02000357396900654, -0.004532531835138798, -0.0051142070442438126, -0.026243358850479126, 0.00394707964733243, 0.020411502569913864, 0.025140443816781044, 0.00134276261087507, 0.017450246959924698, 0.006251116748899221, 0.001996202627196908, -0.028842011466622353, -0.014269920997321606, 0.004169929306954145, 0.009699618443846703, -0.008830882608890533, 0.00017953076167032123, -0.0016827024519443512, -0.0022473803255707026, -0.016981886699795723, 0.01840207912027836, 0.007146291900426149, 0.008543822914361954, -0.012759077362716198, -0.013582487590610981, 0.007493786048144102, -0.015924295410513878, 0.0019471001578494906, -0.008725123479962349, -0.010870521888136864, -0.02844919264316559, 0.01680058427155018, -0.017132971435785294, 0.013929981738328934, -0.004060393199324608, -0.009367232210934162, -0.01767687499523163, -0.017631549388170242, 0.007833725772798061, 0.005559905897825956, -0.008543822914361954, -0.0035542603582143784, -0.014156607910990715, 0.004517423454672098, -0.026832588016986847, -0.012003655545413494, -0.004664730746299028, -0.00457030301913619, -0.0009286968852393329, -0.01702721230685711, -0.006810129154473543, -0.015078222379088402, -0.004449435509741306, 0.019323693588376045, -0.0015797761734575033, -0.002804504008963704, -0.00789415929466486, 0.016709934920072556, 0.00840784702450037, -0.0008701516781002283, 0.002851717872545123, -0.01207919791340828, -0.00044404648360796273, -0.018160345032811165, 0.015342620201408863, 0.025367069989442825, 0.011119811795651913, -0.001630767248570919, -0.0007001817575655878, 0.008460726588964462, 0.017012102529406548, -0.0003498548176139593, -0.0046873935498297215, -0.016981886699795723, 0.019761839881539345, 0.002808281220495701, -0.01994314044713974, -0.0066552674397826195, -0.028358541429042816, -0.008981967344880104, -0.005933839827775955, -0.01419437862932682, 0.008747786283493042, -0.011376654729247093, 0.018764682114124298, -0.0017242507310584188, 0.016468198969960213, 0.0005193526158109307, 0.021952562034130096, 0.01624157279729843, 0.03348030149936676, -0.009329461492598057, 0.010598570108413696, 0.01386954728513956, 0.016936561092734337, 0.003342742333188653, -0.012064089067280293, 0.0014721285551786423, 0.007939484901726246, -0.021846802905201912, 0.015002680942416191, -0.0015590020921081305, 0.0008479611715301871, 0.013627812266349792, 0.011165136471390724, -0.02124246582388878, -0.004494760651141405, 0.0041737062856554985, -0.012132077477872372, 0.010930956341326237, 0.0027421817649155855, 0.001122745918110013, 0.02562391385436058, 0.00046482059406116605, 0.002551437821239233, 0.005676996428519487, -0.005507026333361864, 0.0027251848950982094, 0.012502233497798443, 0.01154284831136465, 0.005427706986665726, -0.02583543211221695, -0.037438713014125824, -0.008657136000692844, 0.014866705052554607, -0.012237835675477982, 0.0023248111829161644, -0.0018932763487100601, -0.004139712546020746, -0.006341767497360706, -0.011187799274921417, -0.010198196396231651, 0.012094305828213692, 0.007909268140792847, -0.010160425677895546, -0.009729835204780102, 0.0012587219243869185, -0.005631670821458101, 0.025457721203565598, 0.006632605101913214, -0.008083014748990536, -0.0024022418074309826, -0.01944456249475479, -0.002572211902588606, 0.0024249046109616756, 0.00023323654022533447, 0.03136511892080307, 0.005287953652441502, 0.006300219334661961, -0.03997693210840225, -0.002120847115293145, 0.01444366853684187, 0.024475671350955963, 0.010832751169800758, -0.00631532771512866, 0.002158618299290538, 0.015267077833414078, -0.001298381481319666, 0.003265311475843191, -0.0038318780716508627, -0.00021281653607729822, -0.007542888633906841, 0.016045162454247475, -0.011520185507833958, 0.0019433230627328157, -0.021650394424796104, -0.004966899752616882, -0.007372918538749218, -0.005960279610008001, -0.026334010064601898, 0.0025797660928219557, 0.005083989817649126, 0.01124823372811079, -0.004740273114293814, 0.015070668421685696], "41fe424f-5356-4081-b566-ba0af32bead2": [-0.04745534434914589, -0.018138207495212555, -0.014154729433357716, 0.006282243877649307, -0.02146039716899395, -0.003812251379713416, -0.007959083653986454, 0.006412139628082514, -0.027396250516176224, 0.0091399559751153, 0.033190399408340454, 0.01694159023463726, -0.011682769283652306, -0.0065026734955608845, -0.03923647105693817, 0.0038929441943764687, -0.008415687829256058, 0.011950433254241943, -0.0021511567756533623, -0.008998251520097256, 0.05907513573765755, -0.03089163452386856, -0.044526781886816025, 0.01139148697257042, 0.017051804810762405, 0.005435951519757509, -0.027789875864982605, -0.017697349190711975, -0.035300225019454956, -0.008010254241526127, 0.038512200117111206, 0.00023974179930519313, 0.03709515184164047, 0.01887822151184082, 0.022625524550676346, -0.020547188818454742, 0.0058256397023797035, -0.00985635258257389, 0.014225581660866737, -0.00503839086741209, -0.016233066096901894, 0.017744584009051323, 0.012847896665334702, 0.02253105491399765, -0.024105552583932877, -0.012721937149763107, -0.012005540542304516, -0.005148605909198523, -0.01676839590072632, -0.0030742057133466005, 0.01289513148367405, 0.038732629269361496, -0.029553312808275223, 0.008581009693443775, 0.015115172602236271, -0.011108078062534332, 0.023286813870072365, 0.13414716720581055, 0.029348626732826233, -0.042826324701309204, -0.007718972396105528, -0.04273185506463051, 0.03004140593111515, -0.0035682041198015213, -0.011611917056143284, 0.015296240337193012, -0.002239722292870283, 0.05772106721997261, -0.019019925966858864, 0.043235693126916885, -0.004282632376998663, -0.001546943443827331, -0.043046753853559494, 0.021554866805672646, -0.019161630421876907, 0.02383788675069809, 0.04997454211115837, -0.012218098156154156, 0.020279522985219955, -0.007022257428616285, -0.020704638212919235, 0.012588105164468288, 0.018846731632947922, -0.0036351203452795744, 0.03237166255712509, 0.03460744768381119, -0.028640104457736015, -0.04789620265364647, -0.0364653542637825, -0.010155506432056427, 0.023239579051733017, 0.020547188818454742, -0.0026372827123850584, 0.0005259804893285036, 0.008738459087908268, 0.005376907996833324, -0.03879560902714729, 0.014225581660866737, -0.03290699049830437, 0.0007916768663562834, -0.04014967754483223, 0.04455827176570892, -0.057815536856651306, 0.016264555975794792, -0.019618235528469086, -0.02445194125175476, 0.035741087049245834, 0.0214761421084404, -0.02061016857624054, -0.02508174069225788, -0.010887647978961468, -0.04959665983915329, 0.0032139422837644815, -0.00654597207903862, -0.03577257692813873, 0.0023184469901025295, -0.040873948484659195, -0.015335602685809135, 0.008108660578727722, -0.03715813159942627, -0.008187385275959969, -0.03794538229703903, 0.02664049156010151, -0.008769948966801167, -0.009903587400913239, -0.0048100887797772884, -0.023696182295680046, 0.045408498495817184, 0.01739819347858429, 0.032718051224946976, 0.005050199571996927, -0.022373605519533157, 0.03797687217593193, -0.0011080524418503046, -0.009313151240348816, 0.03309592977166176, 0.0150285754352808, 0.055926140397787094, -0.021397417411208153, 0.03194654732942581, -0.022058704867959023, -0.005491058807820082, 0.0065892706625163555, 0.005727233365178108, 0.02227913588285446, -0.002391267567873001, -0.015138790011405945, 0.04052755609154701, -0.020704638212919235, 0.018311401829123497, -0.05019497126340866, -0.003999223001301289, -0.004259014967828989, -0.002099985722452402, 0.057374678552150726, -0.03816581144928932, -0.011871708557009697, 0.030828654766082764, 0.00649480102583766, 0.020641658455133438, 0.015138790011405945, -0.0012231875443831086, -0.025207700207829475, 0.01224171556532383, -0.00741194561123848, 0.008116533048450947, 0.03514277562499046, 0.03347380831837654, -0.03923647105693817, 0.023082127794623375, 0.03926796093583107, 0.018516086041927338, 0.03281252086162567, -0.018374381586909294, -0.022042959928512573, -0.023349793627858162, 0.02294042333960533, 0.017665857449173927, 0.05167499929666519, -0.03671727329492569, 0.002099985722452402, 0.004731364082545042, 0.022672759369015694, 0.0028459036257117987, -0.03347380831837654, 0.010344446636736393, 0.030513755977153778, 0.03048226609826088, 0.0386696495115757, 0.012052776291966438, 0.008746331557631493, 0.002353873336687684, 0.0016000827308744192, 0.01694159023463726, 0.005943726748228073, -0.041314806789159775, -0.01913014054298401, 0.00691204285249114, -0.0182169321924448, 0.021995725110173225, -0.010801050812005997, -0.014327924698591232, -0.014272816479206085, 0.04468423128128052, 0.005892555695027113, 0.023444263264536858, 0.002759306225925684, -0.01697308011353016, 0.013493441045284271, 0.013808339834213257, 0.0343870185315609, -0.03794538229703903, 0.009069103747606277, 0.019917389377951622, -0.02448343113064766, 0.015406454913318157, -0.011942560784518719, 0.015382837504148483, -0.021507631987333298, 0.022861698642373085, -0.008423560298979282, -0.032308682799339294, -0.015933912247419357, 0.002310574520379305, -0.036591313779354095, -0.003906721249222755, -0.004329867195338011, 0.040244147181510925, -0.00029644829919561744, 0.007734717335551977, 0.02405831776559353, -0.02171231620013714, 0.0026766452938318253, -0.06997065246105194, -0.012414909899234772, 0.0322142131626606, 0.004491253290325403, -0.01802799291908741, -0.001545959385111928, -0.010328701697289944, 0.004353484604507685, 0.014453884214162827, -0.056996796280145645, 0.017067549750208855, -0.0017427715938538313, -0.001165127963759005, 0.020311012864112854, -0.014194091781973839, -0.013084071688354015, 0.0160756167024374, 0.0017191540682688355, 0.028403928503394127, -0.0060185156762599945, 0.0471719354391098, -0.01169064175337553, 0.013021091930568218, 0.04566041752696037, -0.014666440896689892, 0.013713870197534561, 0.008825056254863739, 0.018988436087965965, 0.009289532899856567, -0.01020274218171835, 0.011068714782595634, 0.037063661962747574, -0.04487317055463791, -0.0005924045690335333, -0.027191566303372383, 0.055674221366643906, 0.03334784880280495, 0.020358247682452202, -0.011076587252318859, 0.002444406971335411, 0.006774274166673422, -0.009069103747606277, -0.020106328651309013, -0.015170279890298843, 0.03835475072264671, -0.011241910047829151, -0.00488487770780921, 0.00633735116571188, -0.05816192552447319, 0.05756361782550812, -0.0004824357747565955, 0.012131500989198685, 0.02078336291015148, -0.00542020658031106, -0.03536320850253105, -0.005203713197261095, -0.0514860562980175, -0.003845709376037121, 0.023979591205716133, 0.006864807568490505, 0.05857129395008087, 0.008014190942049026, -0.010871903039515018, 0.00999018456786871, -0.0067821466363966465, 0.014501119032502174, -0.011234037578105927, -0.011407231912016869, -0.04011818766593933, -0.002286957111209631, -0.024200022220611572, 0.04251142218708992, -0.0039815097115933895, 0.029726507142186165, 0.017067549750208855, -0.008368452079594135, 0.025632813572883606, 0.013847703114151955, -0.0139579176902771, -0.007270240690559149, -0.010927010327577591, 0.0005299167241901159, 0.014020897448062897, 0.004932112526148558, -0.014013024978339672, -0.016910100355744362, -0.059578973799943924, -0.050131991505622864, 0.017020314931869507, -0.06776636093854904, 0.04008669778704643, 0.04418038949370384, -0.06600292026996613, 0.016170086339116096, -0.014571971260011196, -0.020940812304615974, -0.0028537760954350233, 0.0015951624372974038, -0.01972845010459423, -0.02084634266793728, 0.01254087034612894, -0.016248811036348343, -0.005817767232656479, -0.006140538956969976, -0.03130100294947624, -0.02470386028289795, -0.017492663115262985, 0.014524736441671848, 0.01867353729903698, 0.023948101326823235, -0.016170086339116096, 0.02939586155116558, -0.034481488168239594, -0.010257849469780922, 0.018201187252998352, -0.02769540622830391, 0.00039485437446273863, 0.0008694176794961095, -0.019177375361323357, 0.01535922009497881, 0.01117105782032013, 0.014540481381118298, -0.010084654204547405, 0.0058374484069645405, -0.0014741229824721813, 0.014729421585798264, 0.025459619238972664, -0.01480814628303051, -0.021334437653422356, -0.018563320860266685, -0.01170638669282198, -0.007175771053880453, 0.03942541033029556, 0.023916611447930336, -0.002991544548422098, -0.012745554558932781, -0.0061169215478003025, -0.034009139984846115, -0.004003159236162901, 0.003971669357270002, 0.020248033106327057, -0.027112841606140137, -0.054603561758995056, 0.04093692824244499, 0.010116144083440304, -0.021964235231280327, 0.0080338716506958, 0.011131695471704006, -0.0011346220271661878, -0.004432209767401218, 0.01589454896748066, 0.03137972950935364, -0.004825833719223738, -0.01160404458642006, 0.0053414818830788136, -0.034261059015989304, -0.00943911075592041, -0.03281252086162567, 0.011895325966179371, -0.02660900168120861, 0.011289144866168499, -0.012100011110305786, -0.012808534316718578, -0.0019258068641647696, 0.030954614281654358, 0.005774468183517456, -0.009620177559554577, 0.01867353729903698, 0.023286813870072365, -0.006144475191831589, -0.015186025761067867, 0.005302119068801403, -0.01586305908858776, -0.0013767009368166327, -0.013926427811384201, 0.0024896736722439528, 0.0031273451168090105, 0.006266498938202858, -0.006719166878610849, 0.06357819586992264, 0.051423076540231705, 0.022153174504637718, 0.0203897375613451, 0.00954145286232233, 0.05274565517902374, -0.007211197167634964, -0.01953951083123684, 0.03350529819726944, -0.0020665274932980537, 0.0014760910999029875, 0.008643989451229572, -0.008057489059865475, 0.032938480377197266, -0.00273568881675601, 0.03331635892391205, -0.03070269525051117, 0.006050005555152893, 0.011430849321186543, 0.030340559780597687, -0.01297385711222887, 0.015500924549996853, -0.02084634266793728, -0.0045542330481112, 0.012296822853386402, -0.005392652936279774, 0.02706560678780079, 0.021806785836815834, 0.00103424780536443, 0.009730392135679722, 0.021176986396312714, 0.012304695323109627, -0.04899835214018822, -0.04802216216921806, -0.00954145286232233, -0.005585528910160065, 8.776591857895255e-05, -0.0005067912861704826, 0.0193190798163414, 0.020452719181776047, -0.047770243138074875, -0.011186802759766579, -0.01654796488583088, -0.024341726675629616, 0.04465274140238762, 0.0042039076797664165, 0.021208476275205612, -0.01999611407518387, -0.01169064175337553, 0.02660900168120861, 0.02980523183941841, -0.021129751577973366, 0.026561766862869263, -0.03974030911922455, -0.016673924401402473, -0.0028281905688345432, 0.017319468781352043, 0.034418508410453796, -0.022405095398426056, 0.02405831776559353, -0.0026668047066777945, 0.015705609694123268, 0.014997085556387901, -0.008880164474248886, -0.010454661212861538, -0.02808902971446514, 0.004546360578387976, 0.0025743029545992613, -0.003515064949169755, 0.0032552729826420546, 0.0161071065813303, -0.031175043433904648, -0.004373165778815746, 0.0003043207689188421, -0.040905438363552094, -0.008006318472325802, -0.0021413161884993315, 0.05617805942893028, 0.02078336291015148, -0.011186802759766579, 0.014280689880251884, 0.008368452079594135, -0.020468464121222496, 0.007297794334590435, 0.031883567571640015, -0.0155796492472291, 0.0014662505127489567, -0.025396639481186867, 0.015067937783896923, -0.0018480661092326045, -0.017902033403515816, -0.036591313779354095, -0.01332811824977398, 0.02662474662065506, -0.012942367233335972, 0.03363126143813133, 0.012651084922254086, 0.0012251556618139148, -0.01692584529519081, -0.00784493237733841, -0.020248033106327057, 0.010281466878950596, 0.02555408887565136, 0.0006794939399696887, -0.025821752846240997, -0.0008344834786839783, 0.026294102892279625, 0.009415493346750736, -0.00741194561123848, -0.01095850020647049, -0.027175821363925934, 0.016862865537405014, 0.009328896179795265, -0.01244639977812767, 0.011879581026732922, -0.010352319106459618, 0.06383011490106583, -0.014934105798602104, -0.00825823750346899, 0.0026530276518315077, -0.002477864967659116, 0.023727672174572945, 0.024152787402272224, 0.03690621256828308, -0.02341277338564396, 0.0012113787233829498, 0.03460744768381119, -0.000517123902682215, -0.021507631987333298, 0.032497622072696686, -0.007986636832356453, -0.03027758002281189, 0.020137818530201912, 0.017728839069604874, 0.014965595677495003, 0.007317475508898497, -0.016453495249152184, 0.018090972676873207, 0.01127339992672205, 0.01562688499689102, -0.025034505873918533, 0.0005614066612906754, 0.01202128641307354, -0.012619595043361187, -0.009604432620108128, 0.012265332974493504, -0.029317136853933334, -0.026687726378440857, 0.013572165742516518, 0.010462533682584763, 0.008588882163167, 0.005774468183517456, 0.009588687680661678, -0.0024837693199515343, -0.016406260430812836, 0.00888803694397211, -0.020263778045773506, 0.015201770700514317, 0.005207649432122707, -0.0029088836163282394, 0.03470191732048988, 0.018153952434659004, 0.009305278770625591, 0.015249005518853664, -0.006624696776270866, 2.8983664378756657e-05, 0.004837642423808575, -0.029899701476097107, 0.04251142218708992, -0.03690621256828308, -0.00013272519572637975, -0.016642434522509575, 0.005605210084468126, 0.02227913588285446, -0.041724175214767456, -0.013540675863623619, 0.0046880654990673065, -0.0015892580850049853, 0.005998834036290646, 0.05189542844891548, -0.04314122349023819, 0.017492663115262985, 0.0049793473444879055, 0.030970359221100807, 0.001827400759793818, 0.012816406786441803, 0.014949850738048553, 0.008313344791531563, -0.007427690550684929, 0.02615239843726158, 0.009187190793454647, -0.008699096739292145, -0.01887822151184082, 0.012257460504770279, -0.0023381283972412348, -0.007659928873181343, 0.0025447809603065252, -0.01804373785853386, -0.030135875567793846, -0.011903198435902596, 0.0053690355271101, -0.005979152861982584, 0.0021137625444680452, -0.010210614651441574, 0.022405095398426056, -0.020751873031258583, 0.010242104530334473, -0.001968121388927102, 0.0018165761139243841, -0.0494392104446888, 0.0160992331802845, -0.02723880112171173, 0.05340694263577461, 0.012832151725888252, -0.00781344249844551, -0.006317669991403818, 0.007419818080961704, 0.022436585277318954, -0.017713094130158424, -0.00767173757776618, -0.005569783970713615, -0.035300225019454956, -0.00450306199491024, -0.0015626884996891022, -0.0008207066566683352, -0.027396250516176224, -0.008990379050374031, -0.044936150312423706, 0.014753038994967937, -0.024325981736183167, -0.005467441398650408, 0.012147245928645134, -0.01257236022502184, -0.006900233682245016, -0.0015164376236498356, 0.010730198584496975, 0.024829819798469543, 0.0043141222558915615, -0.028230734169483185, 0.005758723244071007, -0.021570611745119095, 0.028577124699950218, 0.004483380820602179, -0.004259014967828989, -0.02382214181125164, 0.04663660749793053, 0.013879192993044853, -0.004916367586702108, 0.016422005370259285, -0.01084041316062212, 0.012202353216707706, 0.010903392918407917, 0.0002730768464971334, -0.0182484220713377, 0.013776849955320358, -0.01394217275083065, 0.028262224048376083, 0.011643406935036182, 0.02253105491399765, -0.01319428626447916, 0.002322383224964142, -0.0016709350747987628, 0.03668578341603279, -0.02659325674176216, 0.0029817039612680674, 0.04055904597043991, 0.035930026322603226, -0.006050005555152893, -0.016705414280295372, -0.017902033403515816, 0.006904169917106628, 0.008541647344827652, 0.012029158882796764, -0.0004071551375091076, 0.004939984995871782, 0.04893537238240242, -0.04112586751580238, -0.010761688463389874, 0.027978815138339996, -0.00488487770780921, -0.012336185202002525, 0.02837243862450123, -0.000447747646830976, -0.024546410888433456, -0.006290116347372532, -0.030545245856046677, 0.020452719181776047, -0.0013383226469159126, -0.026577511802315712, -0.0011513510253280401, 0.023790651932358742, -0.02103528194129467, 0.029096707701683044, -0.007569395005702972, -0.003082078183069825, 0.0038535818457603455, -0.019917389377951622, 0.02446768619120121, 0.020468464121222496, 0.024577900767326355, 0.030765675008296967, 0.018342891708016396, -0.00327298603951931, 0.014052387326955795, -0.028057539835572243, 0.03986626863479614, -0.013367480598390102, 0.0036508652847260237, -0.010934882797300816, 0.03803985193371773, -0.02854563295841217, -0.03555214777588844, -0.0028990430291742086, 0.0076166302897036076, -0.018122462555766106, -0.0012832152424380183, -0.013619400560855865, 0.011730004101991653, 0.027112841606140137, -0.007230878341943026, -0.029332881793379784, -0.006353096105158329, 0.009509962983429432, -0.02338128350675106, 0.011714259162545204, 0.01628030091524124, 0.0028183499816805124, 0.015430072322487831, 0.029033727943897247, -0.03172611817717552, 0.006581398192793131, -0.030986104160547256, 0.018358636647462845, 0.021838275715708733, 0.005152542144060135, 0.001866763224825263, 0.006073622964322567, -0.008612499572336674, 0.02682943269610405, -0.00964379496872425, 0.0123598026111722, 0.009423365816473961, -0.002212168648838997, -0.009250170551240444, 0.008392070420086384, 0.004164544865489006, 0.009352513588964939, 0.0387011393904686, -0.020059093832969666, 0.016673924401402473, -0.023507243022322655, -0.01007678173482418, -0.011674896813929081, -0.027569444850087166, 0.017051804810762405, -0.006758529227226973, 0.009045486338436604, 0.004152736160904169, 0.022657014429569244, 0.03281252086162567, -0.007034066133201122, -0.001200554077513516, -0.01629604585468769, -0.033410828560590744, -0.020956557244062424, -0.034229569137096405, 0.0032906990963965654, -0.0268451776355505, -0.02512897551059723, -0.0322299562394619, 0.004058266524225473, -0.02015356346964836, -0.02128720097243786, -0.028703084215521812, 0.024168532341718674, -0.004251142498105764, 0.00340288202278316, 0.03514277562499046, 0.012281077913939953, -5.227822839515284e-06, -0.004404655657708645, -0.026089418679475784, 0.03791389241814613, -0.026010693982243538, 0.0321827232837677, 0.005510739982128143, -0.02149188704788685, 0.019681215286254883, -0.0025998884811997414, -0.023318303748965263, 0.0027967006899416447, 0.02766391634941101, -0.0015764653217047453, -0.011509574018418789, -0.015311985276639462, -0.01993313431739807, -0.034198079258203506, -0.008825056254863739, -0.0045069982297718525, 0.007372583262622356, 0.010698708705604076, 0.012714064680039883, -0.024310236796736717, -0.01609136164188385, -0.006065750494599342, -0.017854798585176468, 0.020531443879008293, 0.007014384958893061, -0.01848459616303444, 0.031222278252243996, -0.00912421103566885, 0.015123045071959496, -0.019696960225701332, 0.030576735734939575, 0.00933676864951849, 0.007116727065294981, 0.008856547065079212, -0.01210788358002901, -0.007506415247917175, -0.034638937562704086, 0.003591821761801839, 0.019145885482430458, -0.026577511802315712, 0.011525318957865238, 0.01309194415807724, 0.007695354986935854, -0.005357226822525263, 0.032529111951589584, -0.01890971139073372, -0.04770726338028908, -0.002133443718776107, -0.012871514074504375, 0.02938011661171913, -0.014957723207771778, 0.010651473887264729, 0.01865779235959053, 0.024625135585665703, 0.04679405689239502, 0.024530665948987007, -0.034040629863739014, -0.009691029787063599, 0.023444263264536858, -0.033379338681697845, -0.0018460979918017983, -0.02508174069225788, 0.012391292490065098, -0.0279158353805542, -0.00739620067179203, 0.02149188704788685, 0.00659714313223958, 0.009635922499001026, 0.01491048838943243, -0.0268451776355505, -0.030781419947743416, 0.0011818569619208574, -0.028640104457736015, 0.023680437356233597, 0.026278357952833176, 0.02273573912680149, -0.011753621511161327, 0.024325981736183167, 0.012603850103914738, -0.0214446522295475, 0.01612285152077675, -0.00601064320653677, 0.02555408887565136, -0.0012989601818844676, 0.010029546916484833, -0.010801050812005997, 0.04191311448812485, -0.012627467513084412, 0.005723297130316496, -0.02401108108460903, 4.6066343202255666e-05, 0.0011562713189050555, 0.022357860580086708, -0.0032237828709185123, 0.017272233963012695, -0.007852804847061634, 0.01417834684252739, -0.01612285152077675, -0.020925067365169525, -0.019681215286254883, 0.020484209060668945, 0.013863448053598404, -0.015075810253620148, -0.010974245145916939, 0.013304500840604305, -0.001265502069145441, -0.039173491299152374, -0.04641617834568024, -0.017429683357477188, 0.05517037957906723, -0.03385169059038162, 0.017886288464069366, -0.010100399143993855, -0.0006278307409957051, 0.023491498082876205, 0.015839440748095512, 0.041314806789159775, 0.0018067355267703533, -0.0027022308204323053, 0.04909282177686691, 0.015036447905004025, 0.012871514074504375, -0.0006794939399696887, -0.004585722927004099, -0.03611896559596062, 0.014894743449985981, 0.029112452641129494, 0.021098261699080467, 0.012784916907548904, -0.010934882797300816, -0.002712071407586336, -0.020720383152365685, 0.00567999854683876, -0.0214446522295475, 0.01972845010459423, 0.006423948332667351, 0.02467237040400505, 0.013225776143372059, -0.0025447809603065252, 0.02079910784959793, -0.029317136853933334, -0.004184226039797068, -0.011100204661488533, -0.04140927642583847, -0.011714259162545204, -0.011863836087286472, 0.017335213720798492, 0.011320634745061398, -0.007868549786508083, -0.015792205929756165, -0.04877792298793793, -0.009147828444838524, -0.020059093832969666, -0.0214446522295475, -0.004562105517834425, 0.015390709973871708, 0.03347380831837654, -0.0062271361239254475, 0.014367287047207355, -0.010816795751452446, 0.013398971408605576, 0.001917934394441545, -0.00041010731365531683, 0.023239579051733017, 0.0032237828709185123, 0.0020527506712824106, -0.005121052265167236, 0.003196229226887226, 0.004117310047149658, -0.005951599217951298, 0.020027603954076767, 0.00741194561123848, 0.011722131632268429, -0.0004110913723707199, -0.002273180289193988, -0.021948490291833878, -0.01697308011353016, 0.02164933644235134, 0.02854563295841217, -0.001802799291908741, -0.004101565107703209, 0.006624696776270866, 0.0005259804893285036, -0.026514532044529915, 0.008620372042059898, 0.01039168145507574, -0.01234405767172575, -0.016248811036348343, -0.028057539835572243, 0.00083792774239555, 0.01113956794142723, 0.009446983225643635, 0.01634328067302704, -0.03281252086162567, 0.025065995752811432, 0.008368452079594135, -0.010895520448684692, -0.028199244290590286, -0.05444611236453056, 0.00198288238607347, 0.013603655621409416, -0.036843232810497284, -0.018925456330180168, -0.01868928223848343, -0.030828654766082764, 0.0009948854567483068, 0.020090583711862564, -0.05387929454445839, 0.017492663115262985, 0.044148899614810944, -0.030403541401028633, 0.015516669489443302, 0.01137574203312397, 0.03087588958442211, 0.01061211060732603, -0.004656575620174408, -8.327614341396838e-05, -0.005191904492676258, 0.004475508350878954, -0.033599771559238434, 0.03589853644371033, 0.0023617458064109087, -0.05230479687452316, 0.02876606397330761, 0.040873948484659195, 0.005782341118901968, -0.015319857746362686, -0.0004457795002963394, -0.038732629269361496, -0.018626302480697632, 0.003349742852151394, 0.006845126394182444, 0.019193120300769806, 0.028655849397182465, -0.016642434522509575, 0.011470211669802666, -0.014800273813307285, -0.013036836870014668, -0.035961516201496124, 0.01738244853913784, -0.02164933644235134, -0.005443823989480734, -0.09365109354257584, -0.032718051224946976, -0.006038196850568056, -0.005983089096844196, 0.006463311146944761, -0.004939984995871782, 0.03029332496225834, -0.0016433814307674766, -0.010344446636736393, 0.023050637915730476, -0.00870696920901537, -0.028624359518289566, 0.027301780879497528, 0.0034835750702768564, -0.01361152809113264, -0.012824279256165028, 0.004632957745343447, -0.0030643651261925697, -0.010785305872559547, -0.017083294689655304, -0.014201964251697063, 0.010344446636736393, 0.033190399408340454, -0.016154341399669647, -0.00795121118426323, 0.038102831691503525, -0.03153717890381813, 0.0032100060489028692, 0.0026510595344007015, -0.020515698939561844, -0.008203130215406418, -0.0015951624372974038, 0.00730566680431366, 0.004975411109626293, 0.008927399292588234, -0.01612285152077675, -0.00943911075592041, 0.019649725407361984, 0.006522354669868946, 0.00691204285249114, 0.0007980732480064034, 0.00654597207903862, -0.015603266656398773, 0.01362727303057909, 0.02360171265900135, 0.03495383635163307, 0.0008802423253655434, -0.04402294009923935, -0.004012999590486288, 0.020673148334026337, 0.024388961493968964, -0.0016050030244514346, -0.02227913588285446, -0.024200022220611572, 0.03476489707827568, -0.001278294948861003, 0.019633980467915535, -0.010753815993666649, -0.005880746990442276, -0.00308995065279305, 0.04575488716363907, 0.01868928223848343, -0.0028085093945264816, -0.003930338658392429, 0.0008541647111997008, -0.010210614651441574, 0.02171231620013714, 0.024766840040683746, 0.03611896559596062, 0.012013413943350315, 0.009155700914561749, 0.011013607494533062, -0.008234620094299316, -0.021413162350654602, 0.016012636944651604, -0.010651473887264729, 0.024955781176686287, -0.019681215286254883, 0.02166508138179779, -0.012162990868091583, -0.024388961493968964, 0.009809117764234543, -0.00741194561123848, 0.01739819347858429, -0.02443619631230831, -0.010226359590888023, 0.018327146768569946, -0.021539121866226196, -0.008100788109004498, 0.007892167195677757, 0.016422005370259285, -0.0008787662372924387, 0.03737856447696686, -0.0015164376236498356, -0.015311985276639462, 0.03885858878493309, 0.01513091754168272, -0.01654796488583088, 0.03460744768381119, -0.01634328067302704, -0.0026648365892469883, -0.01949227601289749, 0.010848285630345345, -0.02597920410335064, -0.0007001592312008142, -0.004392846953123808, 0.010572748258709908, 0.027616679668426514, -0.003686291631311178, -0.025239190086722374, 0.003564267884939909, 0.017445428296923637, -0.0009727440192364156, -0.02619963325560093, -0.047140445560216904, 0.019004181027412415, 0.011974050663411617, 0.0029364372603595257, -0.014745166525244713, -0.0038752311374992132, -0.0015626884996891022, 0.013052581809461117, 0.0073529016226530075, -0.010966372676193714, 0.003916561603546143, 0.014981340616941452, -0.005845320876687765, 0.011037224903702736, 0.007703227456659079, 0.025884734466671944, 0.0033458066172897816, 0.005723297130316496, 0.0016856960719451308, 0.011533191427588463, 0.022153174504637718, 0.003503256244584918, -0.000869909708853811, -0.02725454606115818, 0.020641658455133438, -0.03068695031106472, -0.0054635051637887955, 0.00943911075592041, 0.021602101624011993, 0.015052192844450474, 0.009273787960410118, -0.0020527506712824106, -0.02057867869734764, -0.0022456266451627016, 0.013674507848918438, -0.0044007194228470325, 0.012257460504770279, -0.03627641499042511, 0.01501283049583435, 0.021318692713975906, -0.010029546916484833, -0.02706560678780079, -0.023239579051733017, 0.00954145286232233, 0.0076284389942884445, 0.0069632139056921005, -0.02320808917284012, 0.0021314756013453007, 0.035709597170352936, -0.012855769135057926, 0.02470386028289795, -0.0014652664540335536, -0.012288950383663177, -0.014052387326955795, -0.005794149823486805, 0.0031096318271011114, -0.002885265974327922, -0.01246214471757412, -0.020767617970705032, -0.010494023561477661, 0.005416270345449448, -0.01471367571502924, 0.017036059871315956, -0.021397417411208153, 0.02747497521340847, -0.018090972676873207, -0.01736670359969139, 0.03926796093583107, -0.012517252936959267, 0.0024306299164891243, 0.0010637696832418442, 0.004585722927004099, -0.022153174504637718, -0.0025998884811997414, 0.007856740616261959, 0.016233066096901894, 0.018705027177929878, 0.004707746673375368, -0.0018706994596868753, -0.01210788358002901, 0.003068301361054182, 0.01906716078519821, 0.01535922009497881, 0.0096595399081707, -0.02530216984450817, 0.004743172787129879, -0.02186976559460163, -0.012950239703059196, -0.017665857449173927, 0.034890856593847275, 0.0009943933691829443, 0.0020114202052354813, -0.012131500989198685, 0.02664049156010151, 0.011816601268947124, -0.04531402885913849, 0.005042327102273703, -0.01479240134358406, -0.01104509737342596, 0.0010381840402260423, -0.012493635527789593, -0.010934882797300816, -0.011383614502847195, -0.0045069982297718525, -0.008801438845694065, -0.005884683225303888, 0.02190125547349453, 0.018516086041927338, 0.005624891258776188, -0.0203897375613451, 0.0006504641496576369, 0.016264555975794792, 0.0006607967661693692, -0.07633162289857864, 0.009596560150384903, 0.030860144644975662, -0.011328507214784622, 0.005424142815172672, 0.0051604146137833595, -0.01975993998348713, -0.0007582188118249178, 0.0017102975398302078, 0.024341726675629616, -0.0076284389942884445, 0.02939586155116558, 0.0068805525079369545, 0.005109243560582399, -0.01850034110248089, -0.01254087034612894, 0.01761862263083458, 0.01760287769138813, -0.01843736134469509, -0.014335797168314457, 0.007380455732345581, -0.001636493019759655, 0.013123434036970139, 0.0007257448160089552, 0.007703227456659079, 0.0003407310287002474, 0.009761882945895195, 0.008927399292588234, -0.00013518534251488745, 0.025223445147275925, -0.017099039629101753, 0.005963407922536135, -0.02939586155116558, -0.024735350161790848, 0.003044683951884508, 0.023050637915730476, -0.02725454606115818, 0.00703012989833951, 0.0009181286441162229, -0.01826416701078415, 0.010454661212861538, -0.0048100887797772884, -0.01085615810006857, 0.009832735173404217, -0.013115561567246914, -0.000964871549513191, -0.010147633962333202, -0.0036626739893108606, -0.000476531422464177, 0.009045486338436604, -0.0072544957511126995, 0.0028222862165421247, 0.007837059907615185, -0.009360386058688164, -0.010116144083440304, 0.009785500355064869, 0.012934494763612747, 0.0013924459926784039, 0.021334437653422356, 0.004955729935318232, -0.00879356637597084, 0.029254157096147537, -0.006797891575843096, -0.024640880525112152, 0.006762465462088585, 0.014666440896689892, 0.0021295074839144945, 0.009738264605402946, -0.009580815210938454, 0.013690252788364887, -0.0225467998534441, 0.019696960225701332, -0.006360968574881554, 0.029994171112775803, -0.021743806079030037, -0.015004958026111126, -0.01224171556532383, -0.04355059191584587, -0.00034269914613105357, 0.02939586155116558, 0.007376519497483969, -0.009328896179795265, -0.004707746673375368, -0.011344252154231071, 0.014634951017796993, 0.0014918360393494368, -0.027364760637283325, 0.008045680820941925, 0.011407231912016869, 0.01868928223848343, 0.01394217275083065, 0.00024786029825918376, -0.03879560902714729, 0.0030131940729916096, 0.017980758100748062, 0.03281252086162567, 0.006447565741837025, -0.003894912311807275, -0.026892412453889847, -0.018295656889677048, 0.019271844998002052, -0.0021806785371154547, -0.0023597776889801025, -0.003580013057217002, 0.023995336145162582, -0.004896686412394047, -0.004001190885901451, -0.00450306199491024, 0.017524152994155884, -0.005384780466556549, -0.019681215286254883, -0.01192681584507227, 0.007896102964878082, 0.0031273451168090105, 0.029490333050489426, 0.0026490914169698954, -0.006719166878610849, 0.004636893980205059, 0.0021039219573140144, -0.008636116981506348, 0.03131674975156784, 0.03611896559596062, -0.009706774726510048, 0.0074473717249929905, 0.02530216984450817, 0.014666440896689892, -0.006357032340019941, -0.007530032657086849, 0.02449917607009411, -0.01676839590072632, 0.0026707409415394068, -0.009187190793454647, -0.00954145286232233, -0.025491109117865562, -0.0020645593758672476, -0.002351905219256878, 0.022168919444084167, -0.030309069901704788, 0.009683157317340374, 0.02213742956519127, -0.044148899614810944, 0.002235786058008671, -0.02986821159720421, 0.013674507848918438, 0.009092721156775951, 0.008415687829256058, -0.0007587108411826193, -0.00024896737886592746, -0.0034343719016760588, -0.005235203076153994, 0.0063963946886360645, -0.006896297447383404, -0.031442709267139435, 0.007561522535979748, 0.0023873313330113888, -0.015414327383041382, 0.0056327637284994125, -0.03093886934220791, -0.0014623142778873444, -0.008502284996211529, -0.00987209752202034, -0.01974419504404068, 0.006801827810704708, -0.005593401379883289, -0.0034284675493836403, -0.008407815359532833, -0.002456215675920248, 0.017965013161301613, -0.004873069003224373, -0.019854409620165825, -0.0021649335976690054, -0.023774906992912292, -0.0024995142593979836, 0.010950627736747265, 0.01480814628303051, 0.0016286205500364304, 0.022184664383530617, 0.005085625685751438, 0.007270240690559149, 0.027002627030014992, -0.007038002368062735, 0.0017348991241306067, -0.02188551053404808, -0.019382059574127197, -0.02128720097243786, 0.006723103113472462, -0.009313151240348816, -0.011824473738670349, -0.03193080425262451, -0.011415104381740093, 0.044967640191316605, 0.019382059574127197, -0.015382837504148483, 0.013761105015873909, 0.013761105015873909, 0.011501701548695564, -0.002836063038557768, -0.018122462555766106, 0.0022023278288543224, 0.0011818569619208574, 0.009163573384284973, -0.0022830208763480186, -0.0020153564400970936, -0.004152736160904169, -0.010265721939504147, -0.005337545648217201, 0.014918360859155655, 0.014233454130589962, -0.012517252936959267, 0.0017722933553159237, -0.008092915639281273, -0.0053414818830788136, -0.04556594789028168, -0.031269513070583344, -0.029915446415543556, -0.001533166621811688, 0.0030604288913309574, -0.001700456952676177, -0.0091399559751153, 0.027380505576729774, 0.008344834670424461, 0.005309991538524628, -0.0016591263702139258, 0.0019445039797574282, -0.018925456330180168, 9.188667172566056e-05, -0.01224171556532383, 0.00891952682286501, -0.004672320559620857, 0.021838275715708733, 0.0013137210626155138, -0.023129364475607872, 0.02815200947225094, 0.017555642873048782, -0.008990379050374031, 0.005865002050995827, 0.02021654322743416, -0.020877832546830177, 0.014855381101369858, 0.02619963325560093, -0.038102831691503525, -0.010982117615640163, -0.022011470049619675, 0.033410828560590744, -0.0144775016233325, 0.0008059457177296281, -0.011659151874482632, 0.016673924401402473, -0.020122073590755463, -0.002928564790636301, 0.010793178342282772, 0.017256489023566246, -0.0016404292546212673, 0.005833512172102928, 0.02295616827905178, 0.016784140840172768, 0.02427874691784382, 0.0030722375959157944, -0.017067549750208855, 0.03325337916612625, -0.0017841020599007607, -0.010454661212861538, -0.006404267158359289, 0.011918943375349045, 0.018594812601804733, 0.02747497521340847, 0.030844399705529213, -0.007384391967207193, 0.010517640970647335, 0.0015666247345507145, -0.010068909265100956, 0.010659346356987953, 0.006404267158359289, 0.003985445946455002, 0.007896102964878082, -0.021129751577973366, 0.007345029152929783, -0.001061801565811038, -0.011667024344205856, 0.013217903673648834, 0.01779181882739067, 0.015556031838059425, -0.0013530835276469588, 0.006786082871258259, -0.0011444626143202186, -0.006172028835862875, -0.006801827810704708, -0.01061211060732603, -0.0011926816077902913, 0.009195063263177872, 0.011509574018418789, -0.022452330216765404, -0.008982506580650806, 0.0030958550050854683, -0.008643989451229572, 0.014446011744439602, 0.03495383635163307, -0.0013570197625085711, -0.006636505480855703, 0.004735300317406654, 0.0028695210348814726, -0.011178930290043354, -0.015839440748095512, 0.02079910784959793, -0.004558169282972813, 0.023995336145162582, 0.0025624942500144243, 0.0311592984944582, 0.010588493198156357, -0.017083294689655304, -0.0037177815102040768, -0.010730198584496975, 0.00252706790342927, 0.0005609146319329739, -0.01350918598473072, -0.017130529507994652, -0.00943911075592041, -0.007530032657086849, 0.06990767270326614, -0.016894355416297913, -0.0035563954152166843, 0.01908290572464466, 0.011777238920331001, -0.01587880402803421, -0.015351347625255585, 0.0030112259555608034, 0.028057539835572243, -0.021979980170726776, -0.011178930290043354, -0.022814463824033737, 0.020027603954076767, 0.009950822219252586, 0.002952182199805975, 0.038512200117111206, 0.01568986475467682, 0.014304307289421558, -0.013548548333346844, 0.02944309636950493, 0.02193274535238743, -0.004223588854074478, -0.000959459226578474, -0.020704638212919235, 0.0003751731419470161, 0.004388910718262196, -0.008659734390676022, 0.04112586751580238, 0.0037571438588202, 0.003233623690903187, -0.0007198404055088758, 0.006727039348334074, -0.004861259832978249, -0.02020079828798771, -0.01692584529519081, 0.004983283579349518, -0.024782584980130196, 0.019208865240216255, 0.003465862013399601, 0.014020897448062897, -0.00033261251519434154, -0.025412384420633316, 0.01095850020647049, 0.009478473104536533, 0.011730004101991653, 0.006628633011132479, -0.010218487121164799, -0.008061425760388374, 0.016579454764723778, -0.02553834393620491, -0.024577900767326355, -0.011446594260632992, 0.016264555975794792, 0.012651084922254086, 0.011454466730356216, -0.014997085556387901, -0.005758723244071007, 0.014540481381118298, -0.00407007522881031, -0.003274954156950116, 0.007805569563060999, 0.01202128641307354, -0.01735095866024494, -0.04099990800023079, -0.002196423476561904, -0.0063216062262654305, -0.01137574203312397, -0.001150366966612637, 0.0013373385882005095, 0.02057867869734764, -0.028277968987822533, 0.015319857746362686, 0.009116338565945625, -0.027852855622768402, -0.014209836721420288, 0.01783905364573002, 0.005613082554191351, -0.0022534991148859262, -0.00867547933012247, 0.0076402476988732815, -0.01039168145507574, 0.0006091336254030466, 0.0002424479607725516, -0.012714064680039883, -0.005565847735852003, -0.011800856329500675, -0.0012763268314301968, -0.0029935126658529043, -0.011210420168936253, -0.02171231620013714, -0.0028832978568971157, 0.0067034219391644, -0.018090972676873207, 0.007467052899301052, 0.03194654732942581, 0.006762465462088585, -0.013115561567246914, -0.0007897087489254773, 0.023019148036837578, 0.0061169215478003025, -0.0033438384998589754, 0.02489279955625534, 0.012729809619486332, 0.0150285754352808, -0.011312762275338173, -0.004928176291286945, 0.009494218043982983, 0.004943921230733395, -0.011202547699213028, -0.009502090513706207, -0.014170474372804165, -0.003135217586532235, -0.02834094874560833, -0.022657014429569244, -0.03970881924033165, 0.01471367571502924, -0.00569574348628521, 0.01653221994638443, -0.019035670906305313, -0.00015339047240559012, 5.9904697991441935e-05, 0.01738244853913784, -0.0071678985841572285, -0.020059093832969666, 0.022688504308462143, 0.013217903673648834, -0.022389350458979607, -0.008714841678738594, -0.020421229302883148, 0.00092649320140481, 0.01587093248963356, 0.013894937932491302, -0.0016030349070206285, -0.003987414296716452, -0.01697308011353016, 0.0028144137468189, -0.0062035187147557735, -0.0310963187366724, 0.00767173757776618, -0.00659714313223958, 0.02166508138179779, -0.006455438211560249, -0.0031863886397331953, -0.003654801519587636, -0.014831763692200184, 0.014658568426966667, -0.04395996034145355, -0.006585334427654743, 0.007754398509860039, -0.02123996615409851, 0.011320634745061398, -0.033788710832595825, -0.028703084215521812, -0.0043023135513067245, 0.004463699646294117, 0.015477307140827179, -0.011438721790909767, 0.020248033106327057, -0.0034166588447988033, 0.0045935953967273235, 0.02728603594005108, 0.01416260190308094, -0.01612285152077675, -0.005227330606430769, -0.012950239703059196, -0.014658568426966667, -0.02210593968629837, 0.01716201938688755, 0.004286568611860275, 0.0009171445854008198, 0.008565264753997326, -0.01170638669282198, 0.004625085275620222, -0.005136797204613686, 0.00505413580685854, 0.011037224903702736, -0.00912421103566885, -0.006471183616667986, 0.00666405912488699, 0.011415104381740093, 0.007778015919029713, -0.0072544957511126995, 0.007317475508898497, 0.004231461323797703, 0.0029817039612680674, -0.02339702844619751, 0.014603461138904095, -0.00933676864951849, 0.003883103607222438, -0.0034402762539684772, -0.019885899499058723, 0.02747497521340847, 0.006573525723069906, -0.010777433402836323, -0.0006706374115310609, 0.005219458136707544, 0.008108660578727722, 0.01267470233142376, 0.03369424119591713, -0.012304695323109627, 0.005652444902807474, 0.001943519921042025, 0.01564262993633747, 0.004333803430199623, -0.009785500355064869, 0.009982312098145485, -0.0006499721202999353, -0.024310236796736717, -0.0030466520693153143, -0.0214761421084404, -0.08244067430496216, -0.03561512753367424, 2.664651947270613e-05, 0.0012763268314301968, -0.019586745649576187, -0.006549908313900232, 0.029537567868828773, 0.01104509737342596, 0.0030958550050854683, -0.0060303243808448315, 0.019240355119109154, 0.0193190798163414, 0.0021688698325306177, -0.00654597207903862, -0.002633346477523446, -0.014627078548073769, 0.017539897933602333, 0.020090583711862564, 0.005770531948655844, -0.009958694688975811, -0.014508991502225399, 0.00985635258257389, 0.009076976217329502, -0.0030742057133466005, 0.025018760934472084, 0.015430072322487831, 0.004680193029344082, -0.004223588854074478, 0.002159029245376587, -0.021728061139583588, 0.003871294902637601, 0.005561911500990391, -0.007970891892910004, -0.01383983064442873, 0.012603850103914738, -0.008990379050374031, -0.00010301885777153075, 0.012147245928645134, -0.005542229861021042, -2.958332515845541e-05, 0.011761493980884552, -0.007376519497483969, -0.013375353999435902, 0.0027415931690484285, 0.022357860580086708, 0.020027603954076767, 0.01202128641307354, 0.02722305618226528, -0.0013058485928922892, 0.014091749675571918, 0.006211391184478998, 0.0017162018921226263, -0.008990379050374031, -0.020751873031258583, 0.0123283127322793, 0.009053358808159828, -0.015083682723343372, 0.02427874691784382, 0.0005146637558937073, 0.01321003120392561, 2.0142493667663075e-05, 0.0033517109695822, 0.018421616405248642, 0.016799885779619217, 0.007179707288742065, 0.0028163818642497063, 0.0038083151448518038, -0.029757997021079063, 0.002479833085089922, -0.02443619631230831, -0.02380639687180519, 0.0035071924794465303, 0.013540675863623619, -0.02597920410335064, -0.005278501659631729, -0.009210808202624321, -0.029301391914486885, 0.021602101624011993, -0.029710762202739716, 0.006345223635435104, 0.02963203750550747, -0.0028163818642497063, 0.00912421103566885, 0.014170474372804165, 0.005337545648217201, -0.018075227737426758, 0.004873069003224373, -0.007482797838747501, 0.028514143079519272, 0.00778982462361455, 0.0017211221856996417, 0.005333609413355589, 0.01651647500693798, 0.0061287302523851395, 0.022657014429569244, -0.003755175741389394, 0.0036134710535407066, -0.017886288464069366, -0.013288755901157856, 0.01127339992672205, 0.000998821691609919, 0.015020702965557575, -0.014878998510539532, 0.006790019106119871, -0.02018505334854126, -0.0017575324745848775, 0.01653221994638443, 0.0021550930105149746, -0.015162407420575619, -0.010934882797300816, 0.0030978231225162745, -0.014320052228868008, 0.005983089096844196, 0.017650112509727478, -0.006593206897377968, 0.019649725407361984, 0.010982117615640163, 0.01084041316062212, -0.015941783785820007, 0.009746138006448746, -0.013501313515007496, -0.006333414930850267, 0.0006814620574004948, -0.005203713197261095, -0.01030508428812027, 0.02128720097243786, -0.006498737260699272, -0.004306249786168337, -0.009667412377893925, 0.005250948015600443, -0.021633591502904892, 0.00723875081166625, 0.006542035844177008, -0.01913014054298401, 6.451748049585149e-05, -0.0009884890168905258, 0.005723297130316496, -0.008211002685129642, 0.008588882163167, 0.01692584529519081, 0.005526484921574593, -0.00047234914381988347, -0.00580202229321003, 0.013068326748907566, -0.01514666248112917, 0.01147808413952589, 0.006786082871258259, 0.0022672759369015694, 0.004983283579349518, 0.006404267158359289, -0.0036390565801411867, 0.011777238920331001, -0.019429294392466545, -0.017020314931869507, 0.007655992638319731, 0.007518223952502012, -0.0112576549872756, -0.013304500840604305, -0.027963070198893547, -0.020027603954076767, -0.01698882505297661, -0.01975993998348713, 0.008730586618185043, -0.006392458453774452, 0.008234620094299316, 0.011068714782595634, -0.004932112526148558, -0.010714453645050526, -0.0014859316870570183, 0.024310236796736717, 0.008510157465934753, 0.03580406680703163, 0.0006667011766694486, 0.009596560150384903, 0.01850034110248089, 0.006093304138630629, 0.012320440262556076, 0.017665857449173927, 3.4403685731376754e-06, -0.016642434522509575, 0.0028144137468189, -0.007451307959854603, 0.00131568918004632, -0.01095850020647049, 0.008840802125632763, -0.004321994725614786, -0.003798474557697773, -0.01783905364573002, 0.01736670359969139, -0.035489168018102646, 0.006160220131278038, 0.005762659478932619, -0.005479250103235245, -0.007041938602924347, -0.0031293132342398167, -0.02961629256606102, 0.00999018456786871, 0.010139761492609978, 0.01562688499689102, -0.0062153274193406105, 0.009824862703680992, 0.023507243022322655, -0.0010017738677561283, -0.01062785554677248, 0.008628244511783123, 0.005573720205575228, 0.021775295957922935, 0.004007095471024513, -0.0008221827447414398, 0.009793372824788094, 0.0005594385438598692, 0.0019966592080891132, 0.026057928800582886, -0.012068521231412888, 0.010336574167013168, 0.010564875788986683, 0.009950822219252586, 0.011619789525866508, 0.004152736160904169, 0.03567810729146004, 0.016705414280295372, 0.007990573532879353, 0.01738244853913784, 0.011903198435902596, 0.0047864713706076145, -0.003932306542992592, -0.002021260792389512, -0.030812909826636314, 0.009407620877027512, 0.01930333487689495, -0.001150366966612637, -0.009730392135679722, -0.002826222451403737, 0.005128924734890461, 0.017933523282408714, 0.029773741960525513, -0.0013698125258088112, 0.013021091930568218, -0.0014495215145871043, -0.005715424660593271, 0.008667606860399246, 0.010919137857854366, 0.016233066096901894, -0.008242492564022541, -0.029364371672272682, -0.0033438384998589754, -0.001430824282579124, 0.0049675386399030685, 0.026955392211675644, -0.026986882090568542, -0.0006937627913430333, 0.00514466967433691, 0.018626302480697632, 0.011761493980884552, 0.008825056254863739, 0.014020897448062897, -0.014186219312250614, -0.007730781100690365, -0.008990379050374031, -0.0004502077936194837, -0.002135411836206913, 0.006404267158359289, -0.0028281905688345432, 0.0018352732295170426, 0.011541063897311687, 0.023711927235126495, -0.005140733439475298, 0.008864419534802437, -0.0026274421252310276, 0.004715619143098593, -0.022420840337872505, -0.008636116981506348, -0.007191515993326902, -0.002800636924803257, 0.009667412377893925, -0.011580427177250385, -0.0139579176902771, 0.022609779611229897, 0.00023937277728691697, -0.0009132083505392075, -0.008895909413695335, 0.0075575863011181355, 0.0059240455739200115, 0.0034304356668144464, 0.0042275250889360905, 0.015571776777505875, -0.006211391184478998, 0.030986104160547256, -0.007223005872219801, -0.00456997798755765, -0.0055501023307442665, -0.010848285630345345, -0.01568986475467682, 0.008525902405381203, 0.009895714931190014, 0.0016551901353523135, -0.005428079050034285, -0.0091084660962224, 0.0054635051637887955, 0.006542035844177008, 0.03520575538277626, -0.011533191427588463, -0.004235397558659315, 0.009132083505392075, -0.010312956757843494, 0.020043348893523216, 0.02750646509230137, 0.026750707998871803, 0.011981923133134842, 0.019193120300769806, -0.011068714782595634, -0.008077170699834824, 0.001510533271357417, 0.0033477747347205877, 0.006640441715717316, 0.009076976217329502, 0.014005152508616447, 0.01629604585468769, -0.00019632012117654085, 0.003934274893254042, 0.00289313867688179, 0.013131306506693363, 0.027805620804429054, 0.005821703467518091, -0.004585722927004099, -0.0009565070504322648, 0.01416260190308094, -0.006923851557075977, 0.00038206158205866814, -0.011966178193688393, 0.0018067355267703533, -0.0005555023089982569, 0.03580406680703163, -0.00869122426956892, -0.017650112509727478, -0.00493604876101017, -0.009809117764234543, -0.006679804064333439, 0.0015321825630962849, 0.00020775981829501688, -0.004483380820602179, -0.004168481100350618, 0.021192731335759163, 0.013469823636114597, -0.01277704443782568, -0.009824862703680992, -0.00046988899703137577, 0.009045486338436604, 0.019633980467915535, 0.01569773629307747, -0.002696326468139887, -0.007506415247917175, 0.010635728016495705, 0.020311012864112854, -0.002058655023574829, 0.001959264976903796, 0.00542020658031106, 0.019460784271359444, -0.011422976851463318, 0.017224999144673347, -0.007104918360710144, -0.008478667587041855, -0.01782330870628357, 0.012714064680039883, -0.009431238286197186, -0.01202128641307354, 0.009683157317340374, -0.030230345204472542, 0.021838275715708733, 0.014816018752753735, 0.01757138781249523, 0.013084071688354015, -0.02271999418735504, -0.01192681584507227, 0.020515698939561844, 0.011769366450607777, 0.010100399143993855, 5.1570932555478066e-05, 0.0072544957511126995, -0.03004140593111515, -0.012619595043361187, 0.0015695769106969237, 0.014131112024188042, -0.020436974242329597, -0.005987025331705809, -0.010375936515629292, -0.003452084958553314, -0.00955719780176878, 0.013926427811384201, -0.024625135585665703, 0.004274759907275438, -0.005620955023914576, -0.009037613868713379, -0.011454466730356216, 0.009903587400913239, 0.0003702528483700007, 0.005735105834901333, -0.020956557244062424, -0.007955146953463554, -0.01064360048621893, -0.004814025014638901, 0.004432209767401218, 0.025900479406118393, -0.012635339982807636, 0.008494412526488304, -0.023271068930625916, 0.01556390430778265, -0.009628050029277802, 0.008958889171481133, 0.014099622145295143, -0.01736670359969139, -0.004735300317406654, 0.015996892005205154, -0.009029741398990154, -0.017965013161301613, -0.02813626453280449, 0.0020507825538516045, -0.0058492571115493774, 0.019822919741272926, -0.00045217591105028987, -0.004951793700456619, -0.013737487606704235, 0.014288562349975109, -0.003747303271666169, 0.009446983225643635, -0.0019632012117654085, -0.020877832546830177, -1.0670908523024991e-05, -0.0005299167241901159, -0.01556390430778265, 0.014123239554464817, -0.01653221994638443, 0.01020274218171835, 0.00365283340215683, 0.007632375229150057, -0.002125571249052882, -0.004447954706847668, -0.0059358542785048485, -0.010619983077049255, 0.010257849469780922, -0.01562688499689102, -0.010761688463389874, 0.013162796385586262, 0.01276129949837923, -0.02401108108460903, -0.008100788109004498, 0.018972691148519516, -0.02426300197839737, 0.004802216310054064, 0.006266498938202858, 0.0006081495084799826, -0.01514666248112917, 0.008746331557631493, 0.02190125547349453, 0.01676839590072632, -2.909129580075387e-05, 0.017933523282408714, 0.01972845010459423, 0.004077947698533535, -0.016579454764723778, 0.019240355119109154, 0.026908157393336296, -0.02166508138179779, -0.0012812471250072122, -0.011903198435902596, -0.011745749041438103, -0.010966372676193714, -0.01692584529519081, -0.013335990719497204, -0.044117409735918045, -0.005487122572958469, 0.0015371028566733003, 0.013461951166391373, -0.007152153644710779, -1.2393014912959188e-05, -0.005983089096844196, -0.0065026734955608845, -0.02018505334854126, -0.002454247558489442, 0.016138596460223198, -0.003849645610898733, -0.003422563197091222, -0.019366314634680748, -0.002979735843837261, 0.0014101590495556593, 0.015178152360022068, -0.0055382936261594296, 0.019035670906305313, -0.0012418846599757671, -0.005829575937241316, -0.019885899499058723, -0.023885121569037437, 0.015469434671103954, -0.0031135680619627237, 0.012784916907548904, -0.015209643170237541, 0.006238945294171572, -0.0024975461419671774, 0.0058374484069645405, 0.003944115247577429, -0.0031745799351483583, 0.0025861116591840982, 0.008832928724586964, -0.011840218678116798, 0.004404655657708645, -0.011320634745061398, 0.009706774726510048, -0.019429294392466545, -0.027396250516176224, -0.002777019515633583, 0.007258431985974312, 0.013564293272793293, 0.0005456616636365652, 0.008502284996211529, -0.000169504462974146, -0.008289727382361889, 0.023522987961769104, 0.011950433254241943, -0.015981147065758705, 0.01585518568754196, 0.017256489023566246, -0.002733720699325204, -0.011840218678116798, 0.023113619536161423, 0.001085418974980712, -0.004943921230733395, 0.01975993998348713, -0.014052387326955795, 0.0182799119502306, -0.008329089730978012, -0.024137042462825775, -0.0021905191242694855, 0.0066955494694411755, -0.017980758100748062, 0.017917778342962265, -0.016004763543605804, 0.009911459870636463, 0.005361163057386875, 0.021979980170726776, 0.02319234423339367, -0.02319234423339367, -0.02106677182018757, 0.014123239554464817, 0.006699485704302788, 0.012627467513084412, -0.012265332974493504, 0.01868928223848343, 0.0257902629673481, 0.027301780879497528, 0.01562688499689102, 0.03479638695716858, -0.0033595834393054247, 0.005388716701418161, 0.012619595043361187, -0.00419209897518158, 0.0005358210764825344, 0.0034855431877076626, 0.004199971444904804, -0.013635145500302315, 0.016847120597958565, 0.009879969991743565, -0.01407600473612547, 0.00340288202278316, -0.021523376926779747, 0.0036882597487419844, -0.02659325674176216, -0.010777433402836323, -0.005247011780738831, 0.0018854603404179215, 0.024310236796736717, -0.005026582162827253, 0.02336553856730461, -0.014020897448062897, 0.00010271133942296728, -0.014556226320564747, -0.020547188818454742, 0.007636311464011669, 0.001252709305845201, 0.019145885482430458, 0.020452719181776047, -0.004833706188946962, -0.004207843914628029, -0.008329089730978012, 0.005750850774347782, 0.014571971260011196, 0.008730586618185043, 0.005247011780738831, 0.012847896665334702, -0.013469823636114597, -0.023034892976284027, 0.02249956503510475, 0.018342891708016396, 0.0022200411185622215, -0.003768952563405037, -0.008557392284274101, 0.0003926402423530817, -0.01993313431739807, 0.001841177698224783, 0.006187773775309324, 0.010549130849540234, 0.021948490291833878, -0.012784916907548904, -0.03328486904501915, 0.005014773458242416, 0.01628030091524124, 0.014138984493911266, 0.0128793865442276, -0.014886870980262756, -0.011942560784518719, -0.011824473738670349, -0.00666405912488699, -0.006837253924459219, 0.0016837279545143247, 0.0034402762539684772, -0.03999222815036774, 0.007888230495154858, -0.006156283896416426, 0.0044007194228470325, 0.012430654838681221, 0.011777238920331001, 0.006581398192793131, -0.007852804847061634, -0.01010827161371708, 0.0022456266451627016, 0.0010273593943566084, -0.005298182833939791, -0.0008010254241526127, -0.002403076272457838, 0.012635339982807636, -0.016185831278562546, 0.0075457775965332985, -0.02852988801896572, -0.003607566701248288, 0.0016345249023288488, 0.004715619143098593, 0.016217321157455444, -0.011674896813929081, -0.008667606860399246, 0.008203130215406418, -0.019633980467915535, -0.016610944643616676, 0.015020702965557575, 0.01007678173482418, -0.0007237766985781491, 0.00016544520622119308, 0.01971270516514778, -0.008010254241526127, -0.0063097975216805935, 0.011336379684507847, -0.005526484921574593, 0.006046069320291281, 0.008549519814550877, -0.007856740616261959, -0.0012812471250072122, 0.005833512172102928, -0.010486151091754436, -0.020137818530201912, 0.002428661799058318, 0.0020665274932980537, 0.0023361602798104286, -0.01628030091524124, -0.00017085754370782524, 0.010501896031200886, 0.016406260430812836, 0.014721548184752464, 0.006443629506975412, -0.008297599852085114, 0.009478473104536533, -0.00514466967433691, -0.012769171968102455, -0.004770726431161165, -0.008329089730978012, 0.008321217261254787, 0.009344641119241714, -0.021381672471761703, 0.0009077960276044905, -0.011501701548695564, 0.009691029787063599, -0.01735095866024494, 0.02487705461680889, 0.00020382358343340456, -0.029569057747721672, 0.034355528652668, -0.014831763692200184, 0.014886870980262756, 0.009950822219252586, 0.01651647500693798, -0.009462728165090084, 0.008494412526488304, -0.005683934781700373, 0.003017130307853222, -0.0029206923209130764, -0.016248811036348343, 0.0020507825538516045, 0.00035549193853512406, 0.024184277281165123, -0.05331247299909592, 0.005046263337135315, -0.014831763692200184, -0.007038002368062735, -0.017445428296923637, 0.005424142815172672, 0.008895909413695335, -0.00340288202278316, 0.014209836721420288, -0.020909322425723076, 0.003503256244584918, -0.006238945294171572, -0.0035111287143081427, -0.0160756167024374, 0.007923657074570656, 0.006050005555152893, 0.00311553617939353, 0.017965013161301613, -0.0026156334206461906, 0.008699096739292145, -0.018783751875162125, 0.002745529403910041, -0.005585528910160065, -0.007191515993326902, 0.0009845527820289135, -0.0013855574652552605, 0.010533385910093784, -0.012249588035047054, -0.027207311242818832, 0.005022645927965641, 0.009612305089831352, -0.002007483970373869, 0.010139761492609978, 0.0014997085090726614, 0.02512897551059723, -0.0016020508483052254, 0.0019395836861804128, -0.01030508428812027, 0.005518612451851368, 0.01329662837088108, -0.012115756049752235, -0.02164933644235134, 0.0011936656665056944, 0.005865002050995827, -0.03715813159942627, 0.01309194415807724, 0.021743806079030037, -0.015319857746362686, 0.0006027371855452657, -0.0069750226102769375, -0.003812251379713416, -0.02550685405731201, -0.02470386028289795, -0.023129364475607872, 0.017319468781352043, 0.008525902405381203, 0.026309847831726074, -0.009163573384284973, 0.011840218678116798, -0.009195063263177872, 0.028498398140072823, -0.01160404458642006, 0.008502284996211529, 0.0042157163843512535, -0.011533191427588463, -0.0008782742079347372, -0.0022042959462851286, 0.012013413943350315, 0.017539897933602333, 0.014564098790287971, 0.005573720205575228, 0.006282243877649307, -0.009305278770625591, 0.0025900478940457106, 0.004703810438513756, 0.0051722233183681965, 0.0033064440358430147, -0.0026825496461242437, 0.004766790196299553, -0.000677033793181181, -0.007699291221797466, 0.0011749685509130359, 0.016406260430812836, 0.0075339688919484615, -0.005876810755580664, -0.011556809768080711, 0.01738244853913784, -0.002137379953637719, 4.538980283541605e-05, -0.04178715497255325, 0.007282049395143986, 0.004001190885901451, -0.012493635527789593, -0.006683740299195051, 0.012855769135057926, 0.007577267475426197, -0.0008162783924490213, -0.002747497521340847, -0.024955781176686287, -0.004943921230733395, -0.0006125778309069574, -0.011454466730356216, -0.03501681610941887, 0.0019346633926033974, 0.009667412377893925, -0.010155506432056427, -0.03955136984586716, -0.011855963617563248, 0.018846731632947922, 0.002214136766269803, -0.009273787960410118, 0.015249005518853664, 0.00616415636613965, 0.010344446636736393, 0.012965984642505646, 0.006829381454735994, -0.020295267924666405, -0.00021846148592885584, 0.005286374129354954, 0.02489279955625534, -0.006919915322214365, 0.004373165778815746, -0.006829381454735994, -0.012997474521398544, -0.0091084660962224, 0.017335213720798492, 0.024105552583932877, 0.008455050177872181, -0.004707746673375368, 0.01611497811973095, -0.02703411690890789, 0.036181945353746414, 0.014005152508616447, 0.007970891892910004, -0.0035209693014621735, -0.019901644438505173, -0.012729809619486332, 0.005888619460165501, 0.017854798585176468, -0.0017171859508380294, 0.025003015995025635, -0.010533385910093784, 0.012162990868091583, -0.0011592234950512648, -0.02508174069225788, -0.0024404707364737988, -0.00462114904075861, 0.012367675080895424, 0.010871903039515018, 0.0015400550328195095, -0.003389105200767517, 0.01804373785853386, -0.003552459180355072, 0.022184664383530617, -0.01210788358002901, 0.029726507142186165, 0.013792594894766808, 0.0004986727726645768, 0.004097628872841597, 0.010927010327577591, -6.008920900058001e-05, 0.00012171600974397734, 0.012131500989198685, -0.0007557586650364101, -0.01385557558387518, 0.005447760224342346, -0.0004775154811795801, 0.017272233963012695, -0.03517426550388336, -0.015264750458300114, 0.005998834036290646, 0.03759899362921715, -0.013879192993044853, 0.0017624527681618929, -0.00735683785751462, -0.02986821159720421, -0.007833123207092285, 0.008667606860399246, 0.004140927456319332, -0.01804373785853386, -0.010635728016495705, -0.00867547933012247, -0.0037768250331282616, -0.015398582443594933, 0.016359025612473488, -0.018169697374105453, -0.0039697010070085526, 0.034261059015989304, 0.005337545648217201, 0.021948490291833878, -0.0064082033932209015, -0.0008275950676761568, -0.003812251379713416, -0.007392264436930418, 0.0030368114821612835, 0.005660317372530699, 0.01651647500693798, 0.008840802125632763, 0.00847079511731863, 0.009344641119241714, 0.014737294055521488, 0.00413699122145772, 0.002058655023574829, 0.0035780449397861958, -0.014666440896689892, 0.010494023561477661, 0.0015371028566733003, 0.0018195282900705934, -0.0011916975490748882, -0.0044125281274318695, 0.0058256397023797035, -0.010927010327577591, 0.02188551053404808, 0.033190399408340454, -0.015571776777505875, -0.0021393480710685253, 0.01437515951693058, 0.004176353570073843, -0.0033792646136134863, 0.007104918360710144, 0.0019090778660029173, -0.0007592028705403209, 0.007010448724031448, -0.004794343840330839, -0.0022790846414864063, 0.007593012880533934, 0.004499125760048628, -0.009391875937581062, 0.004211780149489641, 0.009635922499001026, 3.690227822517045e-05, 0.03204101696610451, -0.01826416701078415, 0.001649285783059895, 0.021775295957922935, 0.0046998742036521435, 0.0038260282017290592, 0.0008138182456605136, -0.00933676864951849, -0.012965984642505646, -0.012800661846995354, 0.00557765644043684, -0.008880164474248886, 0.013698125258088112, -0.008494412526488304, -0.03586704656481743, -0.011651279404759407, 0.0053414818830788136, 0.005526484921574593, -0.016689669340848923, -0.017476918175816536, 0.021948490291833878, -0.01933482475578785, 0.03621343523263931, 0.008289727382361889, 0.006711294408887625, -0.0020133883226662874, -0.005176159553229809, 0.004817961249500513, 0.028624359518289566, -0.02229488082230091, 0.00891952682286501, 0.017886288464069366, 0.024798329919576645, -0.0004669368208851665, -0.02273573912680149, -0.007282049395143986, -0.018579065799713135, 0.009635922499001026, 0.005561911500990391, -0.003950019832700491, 0.004231461323797703, 0.00804961659014225, -0.013753232546150684, -0.03158441185951233, -0.01971270516514778, 0.0003043207689188421, -0.020909322425723076, 0.02105102688074112, -0.0013816212303936481, 0.002542812842875719, -0.0016217321390286088, 0.0005909284809604287, -0.00708130095154047, 0.0051840320229530334, -0.01361152809113264, -0.010777433402836323, 0.005014773458242416, 0.001113956794142723, 0.01562688499689102, -0.005345418117940426, 0.009864225052297115, 0.004105501342564821, 0.0006189742125570774, 0.02574302814900875, -0.008077170699834824, 0.00316867558285594, 0.016626689583063126, -0.015280495397746563, 0.008958889171481133, -0.013658762909471989, -0.020295267924666405, 0.0017535962397232652, 0.0046762567944824696, -0.002237754175439477, -0.01889396645128727, -0.00924229808151722, -0.030009916052222252, 0.004455827176570892, 0.01952376589179039, -0.01179298385977745, 0.005809894762933254, 0.03306443989276886, 0.00200846791267395, -0.002265307819470763, 0.017209254205226898, -0.0030250027775764465, -0.017319468781352043, -0.0026943583507090807, -0.008148022927343845, 0.016579454764723778, -0.006955341435968876, -0.020673148334026337, 0.003849645610898733, -0.0033851689659059048, 0.01971270516514778, 0.011989795602858067, 0.009966567158699036, -0.0026805815286934376, 0.010557003319263458, -0.007160026114434004, 0.015004958026111126, -0.0019149822182953358, 0.015524541959166527, 0.0026116971857845783, -0.0017486759461462498, -0.016051998361945152, 0.004392846953123808, -0.00654597207903862, -0.006825445219874382, -0.0034087863750755787, 0.00020382358343340456, -0.020751873031258583, -0.004093692637979984, 0.013147051446139812, -0.00498721981421113, 0.019208865240216255, -0.004089756403118372, 0.03172611817717552, 0.01673690415918827, -0.011974050663411617, -0.010415298864245415, 0.0028045731596648693, 0.011934688314795494, -0.015839440748095512, 0.008423560298979282, 0.016390515491366386, 0.024420451372861862, -0.007104918360710144, -0.0059476629830896854, 0.006026388145983219, -0.00547137763351202, -0.0053414818830788136, -0.007384391967207193, -0.018783751875162125, -0.002135411836206913, -0.007923657074570656, 0.002507386729121208, -0.0024109487421810627, -0.007104918360710144, -0.0025447809603065252, 0.006990767549723387, 0.006829381454735994, 0.0031883567571640015, -0.00024134089471772313, -0.006360968574881554, 0.0020901449024677277, -0.009698902256786823, 0.0019582808017730713, 0.0032296874560415745, 0.05296608433127403, 0.027805620804429054, 0.010966372676193714, 0.007175771053880453, 0.01385557558387518, -0.015374965034425259, 0.0028773935046046972, -0.005530421156436205, -0.01738244853913784, -0.010171251371502876, 0.006605015601962805, -0.019854409620165825, 0.013265138491988182, -0.0038516137283295393, 0.010541258379817009, 0.008746331557631493, 0.009289532899856567, 0.003333997679874301, -0.0021137625444680452, 0.014894743449985981, 0.003997254651039839, 0.002873457269743085, -0.010793178342282772, 0.0004831738187931478, 0.017508408054709435, 0.007766207214444876, 0.009998057037591934, -0.004148799926042557, 0.017854798585176468, 0.002125571249052882, 0.012005540542304516, -0.0029561184346675873, -0.02664049156010151, -0.0001763928885338828, 0.015422199852764606, 0.01085615810006857, 0.011541063897311687, 0.008415687829256058, -0.013784722425043583, -0.01763436757028103, -0.028435418382287025, -0.010706581175327301, 0.01170638669282198, 0.0018382254056632519, -0.020468464121222496, 0.002080304315313697, 0.004404655657708645, -0.0007031114073470235, -0.005014773458242416, 0.014383031986653805, 0.025916224345564842, 0.018720772117376328, -0.018941201269626617, -0.00805355329066515, 0.017083294689655304, -0.01826416701078415, -0.00945485569536686, -0.010344446636736393, -0.005475313868373632, -0.018390126526355743, 0.010557003319263458, -0.007337156683206558, 0.007246623281389475, 0.015036447905004025, -0.018090972676873207, -0.006990767549723387, 0.0007557586650364101, 2.9306558644748293e-05, -0.0025250997859984636, -0.01736670359969139, 0.011289144866168499, -0.002391267567873001, -0.013154923915863037, -0.014934105798602104, -0.011509574018418789, -0.002186582889407873, -0.009730392135679722, 0.004329867195338011, -0.022405095398426056, -0.012903003953397274, -0.002926596673205495, 0.009258043020963669, 0.0054398877546191216, -0.007852804847061634, -0.0032257509883493185, 0.00804961659014225, 0.006896297447383404, -0.0014032706385478377, -0.003422563197091222, 0.0040346491150557995, 0.003641024697571993, -0.015973273664712906, -0.005782341118901968, 0.02664049156010151, 0.009029741398990154, -0.01084041316062212, 0.019791429862380028, -0.006447565741837025, 0.011737876571714878, -0.006671931594610214, 0.0019012053962796926, -0.001252709305845201, -0.01777607388794422, 0.04137778654694557, 0.015760716050863266, -0.010549130849540234, -0.0025014823768287897, -0.025270679965615273, -0.013753232546150684, 0.002159029245376587, 0.0025880797766149044, -0.0014485374558717012, -0.0034579895436763763, 0.004329867195338011, -0.012351930141448975, 0.019382059574127197, 0.011934688314795494, 0.0045188069343566895, 0.0321669764816761, 0.02363320253789425, 0.009399748407304287, 0.02682943269610405, 0.008581009693443775, 0.016673924401402473, -0.0006361952400766313, -0.016469240188598633, -0.004983283579349518, 0.002235786058008671, -0.028466908261179924, 0.0257272832095623, 0.007270240690559149, -0.006246817763894796, -0.014997085556387901, 0.021995725110173225, -0.012682574801146984, 0.015634756535291672, 0.006463311146944761, 0.000715412141289562, 0.026246868073940277, -0.005132860969752073, -0.024074062705039978, 0.023979591205716133, 0.009612305089831352, -0.0067821466363966465, 0.0011543032014742494, 0.0022200411185622215, -0.00933676864951849, -0.0028301586862653494, 0.0020143722649663687, 0.007718972396105528, -0.013690252788364887, 0.0035898536443710327, 0.006939596496522427, 0.022357860580086708, 0.0020783361978828907, 0.009509962983429432, -0.01210788358002901, 0.01095850020647049, -0.013233648613095284, -0.01085615810006857, 0.021302947774529457, 0.009384003467857838, -0.0017663890030235052, -0.010124016553163528, 0.008218875154852867, 0.002597920363768935, 0.014784528873860836, 0.02020079828798771, -0.017524152994155884, -0.01738244853913784, 0.009683157317340374, -0.022074449807405472, -0.00825823750346899, -0.0007764238980598748, -0.0028714891523122787, 0.040464576333761215, -5.313927977113053e-05, 0.0139579176902771, -0.004014967940747738, -0.011470211669802666, -0.004384974483400583, 0.025239190086722374, 0.012367675080895424, 0.010139761492609978, -0.0037768250331282616, 0.005121052265167236, -0.016028381884098053, 0.01331237331032753, 0.008163767866790295, 0.02514472045004368, 0.0123598026111722, 0.020074838772416115, -0.014422394335269928, -0.0067034219391644, -0.008636116981506348, -0.010517640970647335, -0.0009948854567483068, -0.009368258528411388, -0.02530216984450817, 0.005561911500990391, -0.012737682089209557, 0.029112452641129494, -0.008895909413695335, 0.004664448089897633], "8fe81af3-bafb-49cb-ba50-d5f3bc347131": [-0.03809425234794617, -0.02882213518023491, -0.006022946443408728, 0.019848613068461418, -0.024280371144413948, -0.029529331251978874, -0.013303129002451897, 0.013397421687841415, -0.027392029762268066, 0.032971013337373734, 0.00987716019153595, 0.016171198338270187, 0.0047774966806173325, -0.011739441193640232, 0.0011698188027366996, 0.0410173237323761, -0.03479400649666786, -0.0006698710494674742, 0.022645963355898857, -0.008690644055604935, 0.05022658035159111, -6.439651042455807e-05, -0.03372535482048988, -0.005209671799093485, 0.02666911855340004, 0.0003965695505030453, -0.02527044340968132, 0.010717936791479588, -0.031273745000362396, -0.0017719169845804572, -0.011621575802564621, 0.014937534928321838, 0.005983657669275999, 0.011660863645374775, 0.01528327539563179, -0.01565258763730526, -0.0014497502706944942, 0.005398257169872522, -0.028224948793649673, -0.0016285135643556714, -0.010749367997050285, 0.04720921069383621, -0.00483250105753541, -0.015605442225933075, -0.04290317744016647, 0.025081858038902283, -0.0353911928832531, 0.0016285135643556714, 0.010128607973456383, -0.025647614151239395, 0.03444826602935791, 0.020241498947143555, 0.0006350023904815316, 0.04428613930940628, 0.022331655025482178, -0.02979649417102337, -0.0025242941919714212, 0.038062822073698044, 0.012210904620587826, -0.06273607909679413, -0.007056237198412418, -0.040640152990818024, -0.01835564523935318, 0.001074543921276927, 0.011904453858733177, -0.0012081252643838525, 0.007060165982693434, 0.00329435127787292, -0.03097515180706978, 0.0368998758494854, -0.034385405480861664, -0.00345739908516407, -0.03702560067176819, 0.006855865009129047, 0.025191865861415863, -0.02505042776465416, 0.06025303527712822, 0.017789889127016068, -0.004129234701395035, -0.022221647202968597, 0.0125880753621459, -0.0035320473834872246, 0.002449645893648267, -0.030928006395697594, 0.07838866859674454, -0.00966500211507082, -0.06669636815786362, -0.043028902262449265, -0.02679484337568283, -0.012273767031729221, -0.0008677875157445669, -0.016249775886535645, 0.0012719692895188928, 0.0009399803820997477, 0.007948088459670544, 0.01705126278102398, 0.003235418349504471, 0.007940230891108513, -0.018104199320077896, -0.0368998758494854, -0.021734466776251793, -0.008926375769078732, -0.034511130303144455, -0.013365990482270718, -0.020147206261754036, 0.02742346003651619, 0.03350533917546272, 0.01188088022172451, -0.014049611985683441, 0.048215001821517944, -0.009350692853331566, -0.04535479098558426, 0.06245319917798042, -0.0019104094244539738, -0.04689490422606468, -0.03554834797978401, -0.0023887483403086662, 0.011370128020644188, -0.019518589600920677, -0.010592213831841946, 0.03469971567392349, 0.010183611884713173, -0.00015654061280656606, 0.01263522170484066, 0.001282773562707007, 0.014906104654073715, 0.003066477132961154, 0.038377128541469574, 0.03639698401093483, -0.007865582592785358, -0.0015970825916156173, 0.04645486921072006, 0.03328532353043556, 0.01539328321814537, -0.014340348541736603, 0.005720424000173807, 0.018308499827980995, 0.06701067835092545, -0.015071116387844086, 0.0072880401276052, -0.04478903114795685, -0.024358946830034256, -0.02010006085038185, -0.014151763170957565, -0.002099977107718587, 0.012053750455379486, -0.047366365790367126, 0.05927867814898491, -0.03843999281525612, 0.02753346785902977, -0.032028086483478546, -0.03300244361162186, -0.028114940971136093, -0.004384610801935196, 0.01577831245958805, -0.05126379802823067, -0.002182483207434416, 0.025301875546574593, 0.009790725074708462, 0.014238198287785053, 0.01269022561609745, -0.053621117025613785, 0.016454076394438744, 0.028806420043110847, 0.018921401351690292, 0.016234060749411583, 0.004089945927262306, 0.009947880171239376, 0.005983657669275999, 0.03400823473930359, 0.023463167250156403, -0.020885832607746124, 0.0027266305405646563, -0.012965246103703976, -0.029749346897006035, 0.009735721163451672, 0.02354174479842186, -0.014827527105808258, 0.002852354198694229, 0.013688157312572002, -0.049409374594688416, 0.024861842393875122, 0.0064786942675709724, -0.0018524586921557784, 0.030943721532821655, 0.012485925108194351, -0.004742137156426907, -0.008949948474764824, 0.02041436918079853, 0.0021176568698138, -0.011786587536334991, -0.017365572974085808, 0.0034770432393997908, 0.0112836929038167, -0.03630268946290016, -0.0027737768832594156, 0.03620839864015579, -0.03884859383106232, 0.00816417671740055, 0.002329815411940217, -0.018638523295521736, -0.02721915952861309, -0.05390399321913719, 0.012548786588013172, -0.006148669868707657, 0.007299826480448246, -0.004694990813732147, -0.04607769846916199, 0.06267321854829788, 0.006113310344517231, 0.08920089155435562, -0.03356819972395897, -0.00024776390637271106, -0.01247806753963232, -0.009287831373512745, 0.0068833669647574425, 0.018528515473008156, 0.032876722514629364, -0.020351508632302284, -0.0015931538073346019, -0.03259384259581566, -0.020822972059249878, -0.04114304855465889, -0.009382124058902264, -0.026276232674717903, 0.0016137802740558982, -0.019691459834575653, 0.0082663269713521, 0.0007980501977726817, -0.007492340635508299, -0.014866815879940987, 0.0021039058919996023, 0.001631460152566433, -0.021561598405241966, -0.023714615032076836, 0.02450038678944111, 0.03743420168757439, 0.008674928918480873, -0.013373848050832748, -0.006011159624904394, 0.01592760905623436, 0.03620839864015579, -0.007755574770271778, -0.027046289294958115, 0.0021353368647396564, 0.011613717302680016, 0.009389981627464294, 0.052426740527153015, 0.015605442225933075, 0.007323399651795626, -0.010167895816266537, -0.03847142308950424, -0.017742743715643883, -0.011747298762202263, -0.042808886617422104, 0.06537627428770065, 0.027580615133047104, -0.003245240543037653, -0.0037677790969610214, -0.013751018792390823, 0.012973103672266006, 0.03121088445186615, -0.012957388535141945, 0.022535955533385277, 0.029513616114854813, -0.003044868353754282, 0.009099246002733707, -0.005433616694062948, 0.017648451030254364, 0.02646481804549694, 0.04560623690485954, -0.0009640446514822543, -0.00739804795011878, -0.009154249913990498, -0.007853795774281025, 0.003229524940252304, -0.037874236702919006, -0.00759056257084012, 0.014536791481077671, -0.013303129002451897, -0.04051443189382553, -0.03337961435317993, 0.06267321854829788, 0.03100658394396305, 0.014764665625989437, 0.026716265827417374, -0.010686506517231464, -0.03733991086483002, -0.049629390239715576, -0.003394537139683962, 0.003147018840536475, -0.0007140707457438111, 0.01997433789074421, 0.04793212190270424, 0.012430921196937561, 0.0025459029711782932, 0.0026657332200556993, -0.004655702039599419, -0.0023887483403086662, 0.00790880061686039, -0.026103362441062927, 0.0010990992886945605, 0.028476396575570107, -0.023274581879377365, -0.009004953317344189, -0.02341601997613907, 0.0375913567841053, 0.022378800436854362, -0.00918568018823862, 0.025553321465849876, 0.04350036755204201, -0.012281624600291252, -0.002520365407690406, 0.00260680029168725, 0.008784936740994453, 0.009523563086986542, -0.01857566274702549, -0.017208417877554893, -0.02050866186618805, -0.012831664644181728, -0.007787005510181189, 0.0011030281893908978, -0.02094869501888752, 0.02839781902730465, 0.011322981677949429, -0.044883325695991516, 0.0006777287926524878, -0.0462348535656929, 0.019298572093248367, -0.028350671753287315, -0.020351508632302284, -0.019801467657089233, -0.008407765999436378, -0.0007263484876602888, -0.01826135255396366, -0.018748531118035316, -0.05742425471544266, -0.028004931285977364, -0.01708269491791725, -0.02255167067050934, -0.042400285601615906, -0.03523403778672218, 0.014505360275506973, -0.011346555314958096, -0.02116871066391468, -0.016909824684262276, 0.00190942722838372, 0.02527044340968132, 0.0019830933306366205, -0.005288248881697655, 0.0009370337356813252, -0.02344745211303234, 0.05101235210895538, -0.03139946982264519, 0.007787005510181189, -0.04764924570918083, -0.010906522162258625, 0.019502874463796616, -0.0024201793130487204, 0.010670790448784828, 0.01758558861911297, -0.08209750801324844, -0.016768384724855423, -0.03545405715703964, 0.018434222787618637, -0.004423899110406637, -0.005398257169872522, -0.031273745000362396, -0.025726191699504852, -0.0056536332704126835, 0.0022394517436623573, -0.010277904570102692, 0.03425968065857887, 0.02310171164572239, -0.0010293619707226753, -0.031242314726114273, 0.013067396357655525, -0.004388539586216211, -0.01870138570666313, 0.04334321245551109, -0.019377149641513824, 0.019031411036849022, 0.03139946982264519, 0.00388564495369792, 0.009554993361234665, -0.001527345273643732, 0.0379999577999115, -0.051892414689064026, -0.01942429691553116, 0.002249273704364896, -0.030189380049705505, 0.009837871417403221, -0.029953647404909134, 0.002029257593676448, -0.03121088445186615, -0.011637290939688683, 0.01312240120023489, 0.01479609590023756, -0.0019005872309207916, -0.028146371245384216, 0.02916787564754486, -0.010694364085793495, 0.004302104469388723, 0.003610624698922038, -0.011047961190342903, -0.039257194846868515, -0.009114961139857769, -0.013900315389037132, 0.02981220930814743, 0.013067396357655525, 0.011653006076812744, -0.031273745000362396, 0.009657144546508789, 0.02050866186618805, 0.007708428427577019, 0.024138931185007095, -0.006521911825984716, 0.025977639481425285, -0.016375498846173286, -0.015259701758623123, 0.013350275345146656, 0.01855994574725628, -0.007331257686018944, 0.008722075261175632, -0.03586265817284584, 0.013114542700350285, 0.04375181347131729, 0.007987377233803272, 0.03067655861377716, -0.004455330315977335, 0.02905786782503128, 0.012705941684544086, -0.004612484481185675, -0.005751854740083218, -0.03561120852828026, -0.021121565252542496, 0.026637688279151917, 0.004977868869900703, -0.016061190515756607, -0.03190236538648605, -0.003966186661273241, 0.0349825918674469, -0.024704687297344208, -0.008690644055604935, -0.023494597524404526, -0.03636555001139641, -0.013955319300293922, 0.007822365500032902, -0.005850076209753752, 0.006848007440567017, -0.010222900658845901, 0.04126877337694168, -0.01548757590353489, 0.0010863305069506168, 0.02461039461195469, -0.029623623937368393, -0.0058815074153244495, -0.02948218397796154, -0.010010741651058197, -0.05484692007303238, -0.004199954215437174, 0.007527700625360012, 0.054469749331474304, 0.004070301540195942, 0.02494041994214058, -0.03642841428518295, 0.005940440110862255, 0.018764248117804527, 0.02269311062991619, -0.014701803214848042, -0.029560761526226997, -0.00923282653093338, -0.038502853363752365, 0.003936720080673695, 0.03067655861377716, -0.016469791531562805, -0.017302710562944412, -0.02300741896033287, 0.008046310395002365, -0.000807381235063076, -0.011763014830648899, -0.032782427966594696, 0.02571047656238079, 0.02300741896033287, -0.050163716077804565, 0.0021471234504133463, 0.03152519464492798, -0.035579778254032135, -0.02893214300274849, 0.03661699965596199, 0.0013878706376999617, 0.0042667449451982975, 0.01111868117004633, 0.031918078660964966, 0.046486303210258484, 0.006737999152392149, -0.010788656771183014, -0.02720344439148903, 0.016485506668686867, -0.02021006867289543, 0.0091228187084198, -0.023840337991714478, 0.017114125192165375, -0.04614056274294853, -0.01945572718977928, 0.042714592069387436, -0.00583436107262969, -0.0021078346762806177, 0.007130885496735573, -0.0293564610183239, -0.045197635889053345, 0.03592551872134209, -0.04243171587586403, 0.005822574254125357, -0.0011914275819435716, 0.016171198338270187, 0.0016324423486366868, -0.00956285186111927, 0.026370525360107422, 0.03400823473930359, -0.0005245031206868589, -0.020430084317922592, 0.0030016510281711817, 0.02959219180047512, -0.006407974753528833, -0.010442916303873062, -0.01650122180581093, -0.003590980311855674, 0.003946542274206877, -0.025647614151239395, -0.020775824785232544, -0.004258886910974979, -0.009319261647760868, 0.012006604112684727, 0.031069444492459297, 0.03227953612804413, -0.03356819972395897, 0.02343173697590828, 0.024060353636741638, 0.005225387401878834, -0.01758558861911297, 0.0364912748336792, -0.02341601997613907, -0.0069540864787995815, -0.018009906634688377, -0.007496269885450602, 0.006085807923227549, 0.006836220622062683, 0.009421412833034992, -0.004148878622800112, -0.003355248598381877, 0.0165326539427042, -0.017334140837192535, 0.023023134097456932, 0.0053825415670871735, -0.03740277141332626, 0.00386207178235054, 0.004439614713191986, -0.0037992100697010756, -0.02905786782503128, -0.04544908180832863, 0.007001232821494341, 0.0026814485900104046, 0.009492131881415844, -5.383769530453719e-05, 0.0021451590582728386, -0.04123733937740326, -0.007610206957906485, -0.003921004943549633, 0.003125410061329603, 0.011315124109387398, -0.005861863028258085, 0.03576836362481117, -0.02494041994214058, -0.0074255503714084625, 0.002219807356595993, -0.004368895199149847, -0.03803138807415962, -0.04793212190270424, 0.00774771673604846, 0.024971850216388702, -0.017019832506775856, 0.03529690206050873, -0.023494597524404526, 0.025521891191601753, -0.008305615745484829, 0.007401977200061083, -0.03372535482048988, -0.0028169944416731596, 0.025663329288363457, -0.0043296064250171185, -0.0037383127491921186, -0.032342396676540375, 0.009389981627464294, -0.008588493801653385, 0.016784099861979485, -0.00922496896237135, -0.008156318217515945, 0.0017562014982104301, 0.016485506668686867, 0.014497502706944942, 0.03652270510792732, -0.007123027928173542, -0.027926355600357056, -0.049817975610494614, 0.03485686704516411, -0.014167478308081627, 0.02429608628153801, -0.00398190226405859, 0.004125305451452732, 0.04277745634317398, -0.026181939989328384, 0.031053729355335236, -0.02072867937386036, 0.023604605346918106, 0.019298572093248367, 0.009248542599380016, 0.03554834797978401, 0.02593049220740795, -0.03111659176647663, 0.02893214300274849, 0.004997513256967068, 0.028696412220597267, 0.003946542274206877, 0.014937534928321838, 0.035485487431287766, -0.03821997344493866, 0.010827945545315742, -0.007394119165837765, 0.0193457193672657, -0.005999373272061348, -0.00895780697464943, -0.0169412549585104, -0.016658376902341843, 0.026810558512806892, -0.015416856855154037, 0.027187729254364967, 0.017192702740430832, -0.007810578681528568, 0.014442498795688152, -0.02981220930814743, -0.019518589600920677, 0.009240685030817986, 0.03922576457262039, -0.0069265845231711864, -0.02074439451098442, 0.005877578165382147, 0.007331257686018944, 0.015731165185570717, 0.021215857937932014, -0.028209233656525612, -0.003693130798637867, -0.02863354980945587, 0.028036363422870636, 0.0013790307566523552, -0.026276232674717903, -0.024060353636741638, 0.020775824785232544, -0.007818436250090599, -0.012973103672266006, 0.012014461681246758, -0.02439037896692753, 0.01988004520535469, 0.03815711289644241, 0.026370525360107422, 0.01846565306186676, -0.017412718385457993, 0.020681532099843025, 0.021105850115418434, 0.05893293768167496, 0.011354412883520126, -0.02330601215362549, 0.027172014117240906, 0.011708009988069534, 0.017899896949529648, -0.01343670953065157, 0.0032373827416449785, 0.016124051064252853, 0.020005768164992332, 0.017302710562944412, -0.0034711500629782677, -0.029199305921792984, -0.026731980964541435, 0.011951600201427937, 0.010160038247704506, -0.019848613068461418, 0.0029584334697574377, -0.008698501624166965, -0.010097176767885685, -0.044223275035619736, 0.00529217766597867, 0.02775348536670208, 0.00966500211507082, 0.005704708397388458, -0.015149693936109543, 0.04384610429406166, -0.01474109198898077, 0.007335186470299959, -0.02017863839864731, -0.012234478257596493, -0.04871789366006851, 0.001887818449176848, -0.01518112514168024, -0.010309334844350815, -0.0059443688951432705, 0.03160376846790314, -0.016925539821386337, -0.030315103009343147, -0.009327119216322899, -0.03262527287006378, 0.019172849133610725, 0.010002884082496166, 0.001048024045303464, 0.009217111393809319, 0.002137301256880164, 0.007519843056797981, -0.025191865861415863, -0.0035320473834872246, 0.001772899180650711, 0.01102438848465681, -0.011904453858733177, 0.01793132908642292, -0.011912311427295208, -0.041645944118499756, 0.0003518787561915815, -0.0021137280855327845, 0.004254958126693964, 0.006093665957450867, -0.018717100843787193, 0.007036592811346054, 0.04192882031202316, -0.017192702740430832, -0.0036675932351499796, -0.002923073712736368, 0.017334140837192535, -0.02536473609507084, 0.009059957228600979, 0.014285344630479813, 0.05160953849554062, 0.016909824684262276, 0.010254330933094025, -0.011849449016153812, 0.01769559644162655, -0.03240525722503662, 0.003300244454294443, -0.008761363103985786, 0.00843133870512247, 0.029843639582395554, 0.007358759641647339, -0.009476416744291782, -0.0021785541903227568, -0.02946646884083748, 0.00013296744145918638, -0.02212735451757908, 0.013138116337358952, -0.0005372719606384635, 0.023588890209794044, -0.010427201166749, 0.005358968395739794, 0.042494576424360275, -0.01452893391251564, 0.027124866843223572, -5.168909774511121e-05, -0.032436687499284744, 0.009397839196026325, -0.017145555466413498, 0.010199327021837234, 0.0023985705338418484, 0.017774173989892006, -0.00048742452054284513, 0.04123733937740326, 0.002677519805729389, 0.01484324224293232, 0.01581760123372078, -0.04274602606892586, -0.029497899115085602, -0.030425110831856728, 0.0038365342188626528, 0.03711989149451256, -0.015471860766410828, -0.015754738822579384, -0.041300203651189804, 0.0425260066986084, 0.015000397339463234, 0.010686506517231464, -0.018528515473008156, 0.018528515473008156, 0.01544828712940216, -0.00027747591957449913, -0.0021019414998590946, 0.019785752519965172, 0.005535767413675785, 0.007787005510181189, -0.004753923509269953, 0.00034623101237230003, 0.025349020957946777, 0.025018997490406036, -0.008667070418596268, -0.008517773821949959, -0.005692922044545412, 0.019502874463796616, -0.02115299552679062, 0.03583122789859772, 0.021970199421048164, -0.0009124783100560308, -0.03259384259581566, -0.004651773255318403, 0.0008388121495954692, -0.02710915170609951, 0.01910998672246933, -0.013633153401315212, 0.0007278217817656696, -0.003991724457591772, 0.02926216833293438, -0.029985079541802406, -0.009798583574593067, 0.013358132913708687, 0.02959219180047512, 0.008792794309556484, 0.02116871066391468, -0.04309176281094551, 0.011393701657652855, 0.014481787569820881, 0.00031651899917051196, -0.0038601073902100325, 0.013782449997961521, -0.0060150884091854095, 0.007598420139402151, 0.008737790398299694, 0.009751437231898308, 0.0030527261551469564, -0.031069444492459297, -0.027580615133047104, 0.054375458508729935, -0.014489645138382912, 0.018512800335884094, -0.024971850216388702, 0.01942429691553116, -0.043374642729759216, 0.0028287810273468494, -0.0025498317554593086, -0.028162086382508278, -0.01868567056953907, 0.006502267438918352, 0.011157969944179058, 0.01580188423395157, 0.0021648032125085592, -0.012705941684544086, 0.014403210021555424, 0.0018897828413173556, 0.02072867937386036, -0.019942905753850937, 0.037748511880636215, 0.020697247236967087, 0.008651355281472206, 0.006411903537809849, -0.011322981677949429, 0.01548757590353489, -0.010765083134174347, -0.004954295698553324, -0.00664370646700263, -0.02063438668847084, 0.0017719169845804572, -0.011645148508250713, 0.003594909328967333, -0.01533827930688858, -0.01188088022172451, -0.011629433371126652, 0.011487994343042374, 0.007728072814643383, 0.0034318615216761827, 0.01977003552019596, 0.049849409610033035, 0.00634118402376771, -0.008407765999436378, -0.004608555696904659, 0.015102547593414783, -0.012965246103703976, -0.02462610974907875, 0.0032904224935919046, -0.012462352402508259, -0.016375498846173286, -0.034731145948171616, 0.001390817342326045, -0.03821997344493866, 0.01338956318795681, 0.03369392454624176, 0.010513636283576488, 0.0018799607641994953, 0.01631263643503189, -0.010136465542018414, 0.0004331570817157626, -0.014937534928321838, -0.03110087662935257, -0.02225307747721672, 0.013255982659757137, 0.006136883515864611, 0.0005367808626033366, -0.009523563086986542, 0.002966291271150112, 0.007299826480448246, -0.03932005539536476, -0.016658376902341843, -0.008494201116263866, 0.049723684787750244, -0.03089657425880432, -0.01107153482735157, -0.002567511750385165, 0.04532335698604584, -0.007515914272516966, 0.002290526870638132, -0.0012562538031488657, 0.009437127970159054, 0.0006713444017805159, 0.01813562959432602, -0.015464003197848797, -0.00157154502812773, -0.018387077376246452, 0.01602190174162388, -0.02571047656238079, -0.014434641227126122, 0.01177872996777296, 0.006694781593978405, 0.011055818758904934, -0.02355745993554592, -0.004659630823880434, -0.021451588720083237, 0.0017925435677170753, 0.020807256922125816, 0.013020250014960766, 0.0008157300762832165, 0.007005162071436644, -0.001636371249333024, -0.0067497859708964825, -0.003594909328967333, -0.04636057838797569, -0.030487973242998123, -0.02688913606107235, -0.050823766738176346, 0.00886351428925991, 0.005449332296848297, -0.020052913576364517, 0.018104199320077896, -0.030645128339529037, 0.015605442225933075, -0.025757621973752975, 0.00982215628027916, 0.020791539922356606, -0.020461516454815865, -0.011660863645374775, 0.008769221603870392, 0.019267141819000244, 0.004062443971633911, 0.005669348873198032, 0.014552506618201733, 0.010207184590399265, -0.012100896798074245, -0.013263840228319168, 0.012108754366636276, 0.0017385216196998954, -0.01760130375623703, -0.007162316236644983, 0.005582913756370544, 0.01268236804753542, -0.023148858919739723, 0.0263390950858593, -0.020602954551577568, 0.019282856956124306, -0.02354174479842186, -0.026307662948966026, -0.007775219157338142, -0.02170303650200367, -0.005457189865410328, -0.022975988686084747, -0.01920427940785885, -0.012815949507057667, -0.02613479271531105, -0.016611231490969658, -0.01835564523935318, 0.0072880401276052, 0.004184238612651825, -0.027674907818436623, -0.007335186470299959, -0.02622908540070057, 0.01538542564958334, -0.02247309312224388, -0.016988402232527733, -0.005909009370952845, -0.009201396256685257, 0.02655911073088646, -0.009696432389318943, -0.026920566335320473, 0.0053393240086734295, -0.011896595358848572, -0.0022983846720308065, -0.0023789263796061277, -0.009004953317344189, -0.0291521605104208, -0.005924724508076906, -0.05066661164164543, 0.004254958126693964, -0.0031293390784412622, -0.04485189542174339, 0.04268316179513931, 0.05107521265745163, 0.016894109547138214, 0.03897431492805481, 0.021750183776021004, 0.002591084921732545, 0.0014595724642276764, -0.019612882286310196, 0.036554135382175446, -0.004353179596364498, 0.0009925288613885641, -0.030063657090067863, 0.024453241378068924, 0.032468121498823166, -0.027360599488019943, 0.03375678509473801, 0.04167737439274788, 0.01866995543241501, -0.009295688942074776, -0.0069540864787995815, -0.025301875546574593, 0.0021687322296202183, 0.005150738637894392, -0.00631761085242033, -0.014222482219338417, -0.00044813589192926884, -0.003333639819175005, -0.03891145437955856, -0.014458213932812214, 0.0073744747787714005, -0.024563249200582504, 0.007794863078743219, -0.022284507751464844, -0.007606277707964182, -0.04230599105358124, -0.01921999640762806, -0.0009537313599139452, 0.02679484337568283, -0.004749994724988937, -0.006490481086075306, 0.021357296034693718, 0.018874255940318108, -0.011613717302680016, 0.00918568018823862, -0.014913962222635746, 0.025789054110646248, -0.015133978798985481, 0.005170383024960756, -0.026951996609568596, -0.003251133719459176, -0.00345739908516407, 0.001975235529243946, -0.011480136774480343, -0.0011894631898030639, -0.008659212850034237, -0.010780799202620983, 0.020492946729063988, 0.002738417126238346, -0.03454256057739258, 0.027124866843223572, 0.005905080586671829, -0.013648868538439274, -0.015228271484375, -0.00047981232637539506, -0.0049189357087016106, -0.037842802703380585, 0.0020410441793501377, 0.001784685766324401, 0.013994608074426651, 0.018732815980911255, -0.02505042776465416, -0.013963177800178528, 0.011920168995857239, -0.0020980124827474356, -0.0023258866276592016, -0.008069884032011032, -0.00821132306009531, -0.012650937773287296, -0.0025321519933640957, -0.006726212799549103, -0.003752063727006316, -0.05764427036046982, 0.002720737364143133, 0.005284320097416639, -0.0002302067878190428, 0.018937118351459503, 0.008109171874821186, -0.022960273548960686, 0.004141021054238081, 0.00039828845183365047, 0.019377149641513824, -0.011621575802564621, 0.028869282454252243, 0.007181960623711348, 0.05305536091327667, 0.012674510478973389, -0.00739804795011878, -0.025223297998309135, -0.03143090009689331, 0.01463894173502922, -0.004262815695255995, 0.02148302085697651, 0.022944556549191475, -0.003109694691374898, 0.014198909513652325, 0.0005284320213831961, 0.011849449016153812, 0.02582048438489437, 0.02615050971508026, 0.01857566274702549, 0.03268813714385033, -0.0022649893071502447, 0.009971452876925468, 0.008690644055604935, -0.014371778815984726, -0.02343173697590828, 0.012407347559928894, 0.020791539922356606, -0.0119358841329813, -0.032468121498823166, -0.009421412833034992, -0.03542262315750122, -0.0005245031206868589, 0.00032977890805341303, 0.01548757590353489, 0.025223297998309135, -0.0008078723330982029, 0.0210587028414011, -0.031478047370910645, 0.03737134113907814, -0.01953430473804474, -0.018638523295521736, -0.007119099143892527, -0.021734466776251793, -0.004781425930559635, -0.026826273649930954, 0.009837871417403221, -0.010427201166749, -0.016689807176589966, 0.0018907651538029313, -0.012493782676756382, -0.005150738637894392, -0.026637688279151917, -0.014992539770901203, -0.02418607845902443, 0.01618691347539425, -0.027140581980347633, 0.007178031839430332, 0.006007230840623379, -0.0010607929434627295, 0.017962759360671043, 0.00017667603970039636, 0.03793709725141525, 0.0035418695770204067, -0.012171615846455097, -0.004985726438462734, 0.007284111343324184, -0.026653403416275978, 0.008635640144348145, -0.008753505535423756, -0.006875509396195412, 0.009492131881415844, -0.0027364527340978384, 0.018874255940318108, -0.007955946959555149, -0.016548369079828262, 0.028774989768862724, 0.006580844987183809, 0.011527283117175102, 0.007519843056797981, 0.009358550421893597, 0.012195189483463764, 0.0341653898358345, -0.02571047656238079, -0.009099246002733707, 0.0007685837335884571, -0.011354412883520126, 0.005850076209753752, -0.010922238230705261, 0.009940022602677345, 0.005704708397388458, -0.01581760123372078, 0.0009674823959358037, 0.00048791561857797205, 0.015951182693243027, 0.010442916303873062, 0.01484324224293232, 0.023164574056863785, -0.03012651763856411, -0.013310986571013927, -0.019392864778637886, 6.789565668441355e-05, 0.005355039611458778, -0.006875509396195412, 0.00015825949958525598, 0.0016294957604259253, 0.026527680456638336, -0.0071112411096692085, 0.004804999101907015, 0.015432571992278099, -0.009460700675845146, -0.002569476142525673, -0.04092303290963173, -0.0091228187084198, -0.001281791366636753, 0.0010332908714190125, -0.018198492005467415, -0.009507847018539906, 0.01868567056953907, -0.02655911073088646, -0.00843133870512247, -0.019895760342478752, -0.007508056238293648, 0.01738128811120987, -0.04598340764641762, 0.019722890108823776, -0.00032855113386176527, 0.013350275345146656, 0.011338697746396065, 0.019377149641513824, 0.0019772001542150974, 0.019141418859362602, -0.018842825666069984, 0.023808907717466354, 0.03271956741809845, 0.0034063237253576517, -0.03466828167438507, 0.004781425930559635, 0.02420179359614849, 0.021090134978294373, 0.02225307747721672, 0.007822365500032902, -0.014560364186763763, 0.0013220622204244137, 0.023840337991714478, -0.011865165084600449, 0.008745647966861725, 0.0009242648957297206, -0.004879647400230169, -0.01107153482735157, -0.02204877696931362, 0.014277486130595207, 0.010655075311660767, -0.029340745881199837, 0.001151156728155911, -0.0058736493811011314, 0.01236805971711874, -0.00987716019153595, 0.010215042158961296, -0.02699914388358593, -0.01334241684526205, -0.006176171824336052, -0.021985914558172226, -0.026810558512806892, 0.02010006085038185, 0.0167369544506073, 0.0015538651496171951, -0.017947044223546982, 0.042180269956588745, 0.0066358488984405994, 0.01877996325492859, -0.04988083988428116, 0.00972000602632761, 0.01313025876879692, 0.007476625498384237, -0.0023474954068660736, -0.017334140837192535, -0.0012955424608662724, -0.0022453449200838804, 0.010112891905009747, 0.027454892173409462, -0.016548369079828262, 0.01269022561609745, -0.01397889293730259, -0.00927997287362814, 0.015047543682157993, -0.0004412603739183396, -0.00922496896237135, 0.03130517527461052, 0.013735303655266762, -0.03803138807415962, 0.0016157446661964059, 0.02019435353577137, 0.006388330366462469, -0.0013564397813752294, 0.02160874381661415, -0.003683308605104685, -0.010505778715014458, -0.009099246002733707, -0.0068833669647574425, 0.03523403778672218, -0.018198492005467415, 0.014191051945090294, -0.015684019774198532, -0.01866995543241501, 0.023023134097456932, 0.02321171946823597, -0.01942429691553116, 0.019848613068461418, -0.01793132908642292, 0.0054964786395430565, 0.0018956761341542006, 0.011370128020644188, 0.0006634866585955024, 0.0024594678543508053, 0.006734070368111134, -0.011904453858733177, 0.005421830341219902, -0.006011159624904394, -0.020760109648108482, -0.001538149663247168, -0.022410232573747635, 0.005575055722147226, 0.001249378314241767, -0.027234874665737152, -0.007370545994490385, -0.015534722246229649, 0.015558295883238316, 0.0037500993348658085, 0.018937118351459503, -0.004553551785647869, -0.018434222787618637, 0.014246055856347084, 0.015841173008084297, 0.01631263643503189, 0.05173526331782341, 0.021357296034693718, 0.020225783810019493, 0.008533489890396595, -0.011755156330764294, 0.0065494137816131115, -0.00030620573670603335, 0.01780560426414013, -0.004581053741276264, 0.010985099710524082, 0.007944160141050816, -0.03410252556204796, 0.0008486342849209905, -0.011008672416210175, -0.00030866125598549843, 0.012226620689034462, 0.0017856680788099766, 0.004624271299690008, -0.00164717563893646, -0.011558713391423225, -0.0099793104454875, -0.011598002165555954, -0.0091228187084198, 0.006671208422631025, 0.014906104654073715, -0.020602954551577568, -0.006085807923227549, 0.0017424505203962326, -0.034605421125888824, 0.0035556205548346043, 0.003930827137082815, 0.004973940085619688, 0.03441683575510979, -0.02926216833293438, -0.025961924344301224, 0.021467305719852448, 0.020162923261523247, 0.0023160644341260195, -0.006808718666434288, -0.0024692900478839874, 0.0016245846636593342, -0.02505042776465416, 0.001986040035262704, -0.004997513256967068, -0.02322743460536003, 0.006297966465353966, -0.004345322027802467, -0.014591795392334461, -0.002078368328511715, 0.018748531118035316, 0.04126877337694168, 0.0037795656826347113, 0.008894944563508034, 0.0073823328129947186, 0.018308499827980995, 0.008274184539914131, 0.03394537419080734, 0.010545067489147186, -0.01782132126390934, 0.02677912637591362, -0.020115775987505913, 0.004141021054238081, -0.006297966465353966, 0.000785281416028738, 0.03139946982264519, 0.0031725564040243626, -0.0014212660025805235, -0.013051681220531464, -0.0197543203830719, -0.01618691347539425, 0.016249775886535645, 0.014175335876643658, 0.013028108514845371, -0.017648451030254364, -0.008407765999436378, 0.011008672416210175, -0.05138952285051346, 0.00847848504781723, -0.012148043140769005, 0.012902384623885155, -0.023918915539979935, -0.00847848504781723, 0.0051193078979849815, -0.012226620689034462, 0.01253307145088911, -0.012226620689034462, 0.033096738159656525, 0.010105034336447716, 0.002426072722300887, 0.009892876259982586, 0.004958224482834339, -0.03425968065857887, -0.04236885532736778, -0.028099223971366882, -0.01313025876879692, -0.007649495266377926, -0.0003022768651135266, -0.01112653873860836, 0.0023533885832875967, -0.011802302673459053, -0.009499989449977875, -0.005300035700201988, 0.0029407537076622248, -0.0058815074153244495, -0.031273745000362396, -0.022378800436854362, 0.004376752767711878, -0.04686347395181656, -0.012100896798074245, -0.013868885114789009, -0.01172372605651617, 0.0026323378551751375, 0.006242962554097176, -0.0011806231923401356, 0.0026382312644273043, 0.01523612905293703, 0.003376857377588749, 0.0011924097780138254, -0.02461039461195469, 0.002567511750385165, -0.014803954400122166, 0.011370128020644188, -0.026291947811841965, -0.025223297998309135, -0.0042863888666033745, 0.0007327328785322607, 0.014151763170957565, -0.02061866968870163, -0.02611907757818699, -0.02083868719637394, 0.010945810936391354, 0.005523980595171452, -0.012163758277893066, -0.03777994215488434, 0.004086017142981291, -0.023085996508598328, -0.001462519052438438, -0.0018534408882260323, 0.004946438129991293, -0.002903429325670004, 0.027124866843223572, -0.0036027668975293636, 0.01910998672246933, 0.03341104835271835, -0.011464420706033707, 0.004196024965494871, 0.02129443548619747, -0.006156527437269688, -0.013161689974367619, -0.02828781120479107, -0.01548757590353489, 0.0010283797746524215, 0.012863095849752426, 0.005060374736785889, -0.00917782261967659, 0.02258310280740261, -0.006541556213051081, -0.007079810369759798, 0.02946646884083748, -0.005052517168223858, 0.0025223297998309135, -0.010780799202620983, -0.00022431349498219788, 0.02431180141866207, -0.0011256191646680236, -0.014536791481077671, -0.0018514764960855246, -0.014230339787900448, 0.019581450149416924, 0.015464003197848797, 0.001364297466352582, -0.0033807861618697643, 0.011857307516038418, -0.024060353636741638, 0.012776660732924938, 0.010733652859926224, -0.01122868899255991, -0.02431180141866207, -0.0030507617630064487, 0.033976804465055466, -0.014858958311378956, 0.0014379636850208044, 0.00448283227160573, 0.02288169600069523, -0.027706338092684746, 0.01717698760330677, 0.035359762609004974, -0.0038109966553747654, -0.008494201116263866, 0.016689807176589966, -0.005080019123852253, -0.015243986621499062, -0.008179891854524612, 0.006545484997332096, -0.015078974887728691, 0.020068630576133728, 0.0018966584466397762, -0.00742162112146616, 0.042620301246643066, -0.0029525402933359146, 0.04092303290963173, 0.021545881405472755, 0.001478234538808465, 0.009995026513934135, -0.006903011351823807, 0.014434641227126122, -0.026056217029690742, -0.0018721029628068209, 0.013916031457483768, -0.016878392547369003, -0.012265908531844616, -0.020430084317922592, 0.004706777166575193, 0.0012641114881262183, -0.02539616823196411, 8.588247874286026e-05, 0.011786587536334991, 0.009201396256685257, -0.024217508733272552, -0.007036592811346054, 0.0072880401276052, 0.008140603080391884, 0.002689306391403079, -0.003235418349504471, -0.012383774854242802, 0.006364757195115089, 0.0032923868857324123, -0.011527283117175102, 0.004231384955346584, 0.0034220393281430006, -0.024060353636741638, 0.007468767464160919, -0.006081879138946533, 0.0016668199095875025, -0.002901464933529496, 0.002589120529592037, 0.008847798220813274, -0.007390190381556749, -0.02322743460536003, -0.01117368508130312, 0.003720632754266262, -0.011377985589206219, 0.02225307747721672, 0.016084764152765274, 0.004730350337922573, 0.013892457820475101, 0.004801069851964712, -0.017475580796599388, 0.0070405215956270695, -0.0034927588421851397, 0.005355039611458778, -0.02255167067050934, -0.009955737739801407, 0.005559340585023165, 0.059750139713287354, 0.017648451030254364, 0.01772702857851982, 0.011676579713821411, 0.02052437700331211, -0.010600071400403976, 0.00976715236902237, 0.018827108666300774, 0.031478047370910645, -0.015574011020362377, 0.010843660682439804, -0.007798792328685522, -0.01549543347209692, -0.012721656821668148, -0.0072408937849104404, 0.01651693880558014, 0.00923282653093338, 0.008297757245600224, -0.014112474396824837, 0.03554834797978401, 0.04016869142651558, 0.004396397154778242, -0.012839523144066334, 0.016045475378632545, 0.0049621532671153545, 0.010702221654355526, 0.0012533070985227823, 0.009845729917287827, 0.022268792614340782, 0.001395728439092636, -0.006517983041703701, -0.01469394564628601, 0.008297757245600224, 0.011409416794776917, -0.010513636283576488, 0.012375917285680771, -0.005335395224392414, 0.01717698760330677, -0.014395352452993393, 0.027722053229808807, -0.01403389684855938, 0.01684696227312088, 0.016815531998872757, -0.005170383024960756, -0.014308917336165905, 0.0047774966806173325, 0.0240760687738657, -0.006345112808048725, 0.014591795392334461, -0.015550438314676285, -0.03350533917546272, -0.013735303655266762, -0.003628304461017251, 0.007818436250090599, 0.010796514339745045, -0.014073185622692108, -0.016171198338270187, -0.013963177800178528, 0.01769559644162655, 0.001674677710980177, -0.009217111393809319, 0.0024908988270908594, -0.024013208225369453, -0.03523403778672218, 0.006254749372601509, -0.027910638600587845, -0.018607093021273613, 0.014073185622692108, -0.0047853547148406506, 0.016689807176589966, -0.013193120248615742, 0.00583436107262969, 0.0013711730716750026, -0.013798165135085583, 0.007995235733687878, 0.009892876259982586, -0.0031057659070938826, 0.004738208372145891, 0.0011658899020403624, -0.0022610602900385857, -0.016249775886535645, -0.0002831236633937806, 0.0028661051765084267, 0.0007626904407516122, 0.010914379730820656, 0.0038718939758837223, 0.005413972772657871, -0.005669348873198032, 0.005492549855262041, -0.008808509446680546, 0.00759056257084012, -0.012815949507057667, 0.0018946939380839467, 0.0165326539427042, -0.0007602348923683167, 0.004946438129991293, -0.008502058684825897, -0.019738605245947838, 0.02549046091735363, -0.0073744747787714005, -0.00155975844245404, 0.020917264744639397, -0.00459284009411931, 0.03128946200013161, 0.009688574820756912, -0.0025400095619261265, 0.007732001598924398, -0.001762094907462597, 0.0010951703879982233, 0.009484274312853813, -0.005476834252476692, -0.019314289093017578, -0.015715450048446655, 0.01569187641143799, -0.013318844139575958, 0.006113310344517231, -0.0009404714801348746, -0.007350901607424021, -0.01837136037647724, -0.015574011020362377, 0.0005063321441411972, 0.005865791812539101, -0.005594700109213591, 0.020807256922125816, -0.006569058168679476, 0.015078974887728691, -0.026276232674717903, -0.020241498947143555, -0.01577831245958805, -0.013444568030536175, 0.018654238432645798, 0.005692922044545412, 0.008714216761291027, -0.004121376667171717, 0.011291551403701305, -0.013648868538439274, 0.02288169600069523, -0.02417036145925522, 0.03150947764515877, -0.009389981627464294, 0.006242962554097176, 0.01544828712940216, 0.016249775886535645, 0.015016112476587296, -6.494901026599109e-05, -0.0006423690356314182, 0.0182456374168396, -0.03262527287006378, 0.020005768164992332, -0.001987022114917636, 0.038062822073698044, -0.019927190616726875, -0.005221458151936531, -0.0030959437135607004, 0.020854402333498, 0.002007648814469576, -0.009578566998243332, 0.014167478308081627, -0.005952226929366589, -0.00961785577237606, 0.015754738822579384, -0.001887818449176848, -0.0027344883419573307, -0.008156318217515945, -0.0037442059256136417, 0.008855655789375305, 0.014442498795688152, 0.021970199421048164, 0.02676341123878956, -0.01393960416316986, -0.010780799202620983, 0.007260538171976805, 0.0010971348965540528, -0.00734304403886199, -0.0011197258718311787, 0.004985726438462734, 0.004290318116545677, 0.02431180141866207, -0.022504525259137154, 0.011566570959985256, 0.014937534928321838, 0.019361434504389763, 0.0028503898065537214, 0.00043070156243629754, -0.02442180924117565, -0.006895153783261776, 0.037088461220264435, 0.0014929677126929164, -0.006765501108020544, -0.008085599169135094, -0.00583436107262969, 0.021467305719852448, -0.0029545046854764223, -0.003038975177332759, -0.007732001598924398, 0.01539328321814537, -0.0069265845231711864, 0.023950345814228058, 0.010890807025134563, 0.005500407423824072, -0.009900733828544617, 0.0015636873431503773, 0.004930722527205944, -0.0006801843410357833, -0.0038208188489079475, -0.016108335927128792, -0.020995842292904854, -0.007732001598924398, -0.023573175072669983, 0.0061722430400550365, -0.02028864622116089, -0.017444150522351265, 0.00023573175712954253, 0.0034711500629782677, -0.01697268709540367, 0.003257027128711343, 0.010215042158961296, 0.00982215628027916, 0.009751437231898308, -0.000981233431957662, 0.00967285968363285, 0.020162923261523247, -0.009382124058902264, -0.016721239313483238, 0.012925957329571247, 0.012289482168853283, 0.016375498846173286, 0.0035634783562272787, 0.0169412549585104, 0.0018966584466397762, 0.014662515372037888, -0.005527909379452467, 0.004274602513760328, 0.004364966414868832, 0.0007455016602762043, 0.030173664912581444, 0.03300244361162186, -0.001303400145843625, 0.01307525485754013, -0.004926793742924929, -0.021011557430028915, 0.020225783810019493, -0.009389981627464294, -0.00895780697464943, 0.012352343648672104, -0.012548786588013172, -0.002229629550129175, -0.003640091046690941, 0.0028071722481399775, -2.995757677126676e-05, 0.014544649049639702, 0.001614762470126152, -0.021074417978525162, 0.01695697009563446, 0.005170383024960756, 0.00972000602632761, 0.01901569403707981, -0.01866995543241501, 0.0044710454531013966, -0.00041326723294332623, 0.00494250888004899, -0.004820714239031076, -0.006895153783261776, -0.01570759154856205, 0.026716265827417374, 0.010945810936391354, 0.005791143514215946, 0.024594679474830627, -0.0023789263796061277, -0.006203673779964447, 0.00956285186111927, -0.018402792513370514, 0.01172372605651617, 0.00553183862939477, 0.0018730851588770747, 0.004164594225585461, 0.014968966133892536, -0.000933104834984988, -0.0021353368647396564, 0.017318425700068474, -0.010089319199323654, -0.004824643023312092, 0.004529978614300489, -0.03089657425880432, -0.001183569896966219, -0.017899896949529648, 0.005099663510918617, 0.015935465693473816, 0.007280182093381882, 0.025946207344532013, 0.004651773255318403, -0.026543395593762398, 0.02817780151963234, 0.010081461630761623, 0.0009660091018304229, 0.025443313643336296, 0.007948088459670544, 0.01408890075981617, 0.003325782250612974, 0.021687321364879608, -0.006517983041703701, -0.012281624600291252, -0.007712357211858034, -0.021954484283924103, 0.02461039461195469, -0.0031568410340696573, 0.0011884808773174882, -0.010749367997050285, 0.005932582542300224, 0.018937118351459503, 0.0007081774529069662, -0.007123027928173542, 0.004746065940707922, 0.007115169893950224, -0.0021117636933922768, 0.0042235273867845535, 0.005284320097416639, 0.013310986571013927, 0.004302104469388723, -0.00345739908516407, -0.004313891287893057, -0.0046282000839710236, 4.226596502121538e-05, 0.01111868117004633, -0.00483250105753541, 0.00801880843937397, -0.007170174270868301, -0.0018308499129489064, -0.01107153482735157, -0.020147206261754036, 0.003683308605104685, -0.005964013282209635, -0.005940440110862255, -0.014552506618201733, 0.00047809345414862037, -0.002667697612196207, -0.015063258819282055, 0.010254330933094025, -0.009397839196026325, 0.004946438129991293, -0.002492863219231367, 0.009680717252194881, 0.011165827512741089, -0.01761701889336109, 0.014403210021555424, 0.017444150522351265, 0.019801467657089233, -0.014308917336165905, -0.01123654656112194, 0.021435873582959175, 0.008140603080391884, 0.0009890911169350147, 0.013106685131788254, -0.01452107634395361, 0.007704499643296003, 0.0037717081140726805, -0.014992539770901203, -0.004404254723340273, -0.026637688279151917, -0.005637917667627335, -0.005799001082777977, 0.014159620739519596, -0.005590771324932575, -0.016548369079828262, 0.018921401351690292, 0.021404443308711052, -0.001707090763375163, 0.00966500211507082, -0.030173664912581444, 0.007193747442215681, 0.01859137788414955, -0.00421174056828022, -0.006254749372601509, -0.027470607310533524, 0.0014026039279997349, 0.0054964786395430565, 0.01761701889336109, 0.012886669486761093, -0.005386470351368189, -0.008674928918480873, 0.037308476865291595, -0.004844287410378456, -0.005044659599661827, 0.0037992100697010756, 0.0024575034622102976, -0.008101314306259155, 0.022080207243561745, 0.012878810986876488, -0.0030193307902663946, 0.0010391841642558575, 0.008824225515127182, 0.031163737177848816, 0.021404443308711052, -0.009743578732013702, 0.013373848050832748, 0.001254289411008358, -0.007649495266377926, 0.010780799202620983, -0.0069265845231711864, -0.01780560426414013, 0.004883576184511185, 0.010702221654355526, -0.0028444963973015547, 0.013444568030536175, 0.029450753703713417, -0.034196820110082626, 0.017302710562944412, 0.013845311477780342, 0.008989237248897552, -0.005457189865410328, -0.011574429459869862, -0.015188982710242271, -0.012148043140769005, -0.0073548308573663235, 0.008808509446680546, 0.016438361257314682, 0.0006507178768515587, -0.011495851911604404, 0.007889156229794025, -0.0062586781568825245, 0.002241416135802865, -0.005850076209753752, 0.01631263643503189, -0.027706338092684746, 0.004655702039599419, 0.037214186042547226, 0.03843999281525612, 0.007472696714103222, -0.010568640194833279, -0.016218343749642372, -0.0027148439548909664, -0.00837633479386568, 0.009680717252194881, 0.017994189634919167, -0.006019017193466425, -0.008942090906202793, 0.0015951181994751096, -0.034511130303144455, 0.005476834252476692, 0.0017483438132330775, -0.0036734864115715027, -0.007594491355121136, 0.010042172856628895, 0.004349250812083483, 0.010741510428488255, 0.025679046288132668, -0.005626131314784288, 0.0119358841329813, -0.001795490155927837, -0.01583331637084484, -0.007032664027065039, 0.011095107533037663, -0.016705524176359177, 0.0045142630115151405, -0.03743420168757439, -0.022221647202968597, -0.012713799253106117, 0.020791539922356606, 0.006726212799549103, 0.004973940085619688, 0.007574846968054771, 0.0027521681040525436, -0.012179473415017128, 0.01870138570666313, -0.0012758980737999082, 0.03119516931474209, 0.010222900658845901, 0.011747298762202263, -0.0124152060598135, 0.001728699542582035, -0.0036970595829188824, 0.012619506567716599, -0.003610624698922038, -0.01738128811120987, -0.008690644055604935, 0.03045654296875, 0.02190733700990677, -0.014803954400122166, 0.014929677359759808, -0.008517773821949959, -0.0009473469690419734, -0.009059957228600979, 0.005296106915920973, 0.013641010969877243, 0.017648451030254364, -0.00960999820381403, -0.008871371857821941, 0.03746563196182251, -0.0017257528379559517, 0.02753346785902977, -0.0025341163855046034, 0.0044003259390592575, 0.004001546651124954, 0.010953668504953384, -0.011307266540825367, -0.002722701756283641, 0.00634118402376771, 0.027800630778074265, 0.00766913965344429, -0.008651355281472206, 0.0016461934428662062, 0.010945810936391354, -0.012305197305977345, 0.012973103672266006, 0.004427827894687653, 0.0009291759924963117, -0.011794445104897022, 0.010285762138664722, 0.01868567056953907, 0.010710079222917557, 0.013743161223828793, 0.00015924171020742506, -0.004074230324476957, 0.0011197258718311787, -0.013310986571013927, 0.016438361257314682, 0.01780560426414013, 0.02743917517364025, 0.002186411991715431, 0.007511985022574663, 0.007625922095030546, -0.032436687499284744, 0.005708637181669474, -0.013900315389037132, -0.016108335927128792, 0.011354412883520126, 0.0291521605104208, -0.0032275605481117964, -0.010765083134174347, -0.007865582592785358, -0.022645963355898857, 0.007708428427577019, 0.01316954754292965, 0.00024469447089359164, -0.022865980863571167, 0.013892457820475101, 0.013452425599098206, -0.00961785577237606, 0.02052437700331211, -0.0023435663897544146, -0.009059957228600979, 0.00032953335903584957, 0.0002863158588297665, -0.0029407537076622248, -0.016988402232527733, -0.0006212514126673341, -0.0010342730674892664, 0.006627991329878569, 0.00982215628027916, -0.002050866140052676, -0.007838080637156963, 0.010639360174536705, 0.0008717163582332432, 0.01717698760330677, 0.008407765999436378, -0.011951600201427937, -0.019502874463796616, 0.008753505535423756, 0.018528515473008156, 0.0012366095324978232, 0.0016501222271472216, -0.00847848504781723, 0.0017041441751644015, 0.01322455145418644, -0.014010324142873287, 0.006659422069787979, 0.01686267741024494, 0.012179473415017128, -0.003895467147231102, 0.03356819972395897, -0.026841988787055016, 0.005633988883346319, -0.026401955634355545, 0.0017630771035328507, 0.0038365342188626528, -0.01999005302786827, -0.010301477275788784, -0.012203047052025795, 0.020005768164992332, -0.019188564270734787, -0.002600907115265727, -0.0013633152702823281, -0.02094869501888752, -0.005964013282209635, 0.001587260514497757, 0.029183590784668922, -0.009499989449977875, 0.0010205220896750689, 0.0061879586428403854, -0.025003280490636826, 0.0023533885832875967, -0.014136047102510929, 0.002308206632733345, -0.017884181812405586, 0.010458632372319698, 0.014403210021555424, -0.011574429459869862, 0.008014879189431667, -0.017349857836961746, -0.011739441193640232, -0.007009090855717659, 0.009476416744291782, 0.004624271299690008, 0.01813562959432602, -0.013578148558735847, 0.001123654656112194, 0.010741510428488255, -0.030597981065511703, -0.008227038197219372, -0.004207811783999205, 0.003887609578669071, -0.0003241311642341316, 0.030849428847432137, -0.019282856956124306, 0.016894109547138214, -0.00927997287362814, -0.0022846334613859653, -0.001832814421504736, 0.016485506668686867, -0.01112653873860836, -0.021655891090631485, -0.008596351370215416, 0.01317740511149168, 0.013271697796881199, -0.018512800335884094, 0.0044710454531013966, -0.02050866186618805, -0.00026937262737192214, 0.01620262861251831, 0.0039033249486237764, -0.022535955533385277, -0.019628597423434258, -0.0023101712577044964, -0.01901569403707981, -0.00025193829787895083, -0.017035547643899918, -0.01750701107084751, -0.012760945595800877, 0.0009453825769014657, -0.009334977716207504, -0.0011874986812472343, -0.015251844190061092, 0.0024594678543508053, 0.003938684705644846, 0.004325677640736103, -0.008596351370215416, 0.02094869501888752, 0.000551022996660322, 0.010812229476869106, 0.01684696227312088, -0.022001629695296288, 0.007527700625360012, -0.0019683600403368473, 0.0020115775987505913, -0.009531420655548573, -0.005523980595171452, 0.004070301540195942, -0.008172034285962582, 0.0010013688588514924, -0.017554158344864845, -0.0011226724600419402, -0.02971791662275791, -0.0030311173759400845, 0.011692294850945473, 0.004419970326125622, 0.006624062079936266, 0.013680299744009972, 0.028020648285746574, -0.015298990532755852, -0.00620760302990675, -0.006203673779964447, -0.0021471234504133463, -0.002650017850100994, 0.002154981018975377, -0.00494250888004899, -0.002166767604649067, 0.009295688942074776, -0.010851518251001835, -0.005264675710350275, -0.05600986257195473, -0.006647635251283646, 0.001620655762962997, -0.022410232573747635, -0.0195500198751688, -1.4625804396928288e-05, 0.006125096697360277, -0.024154646322131157, 0.0006453156820498407, -0.005846147425472736, 0.0027246661484241486, 0.003376857377588749, -0.02990650199353695, -0.00498965522274375, -0.007272324524819851, -0.0009768134914338589, 0.014057470485568047, -0.005174311809241772, 0.006180100608617067, 0.0002181746531277895, 0.0009841800201684237, -0.02536473609507084, -0.00988501776009798, -0.009193538688123226, -0.008509916253387928, 0.006274393294006586, -0.0038974315393716097, 0.019392864778637886, -0.00047146351425908506, 0.0006084825727157295, 0.007217320613563061, -0.011566570959985256, -0.014206767082214355, 0.0046006981283426285, -0.002985935425385833, -0.009641428478062153, -0.019832897931337357, 0.013531002216041088, 0.0013711730716750026, 0.0003847829648293555, -0.001958538079634309, 0.013994608074426651, 0.0019821112509816885, -0.01182587631046772, 0.022221647202968597, -0.00019902143685612828, -0.016658376902341843, 0.01933000423014164, 0.005877578165382147, -0.01761701889336109, 2.3112761482479982e-05, -0.0033788217697292566, -0.005201814230531454, -0.01988004520535469, -0.00047858458128757775, -0.005017157644033432, -0.007818436250090599, 0.00243196589872241, -0.016611231490969658, 0.007248751353472471, 0.012100896798074245, -0.004624271299690008, -0.026810558512806892, -0.005571126937866211, 0.0018446010071784258, 0.014277486130595207, 0.004765710327774286, 0.00033567220089025795, 0.008172034285962582, 0.003017366398125887, -0.0013976928312331438, -0.02431180141866207, -0.0069540864787995815, 0.02050866186618805, -0.0004771112580783665, 0.012713799253106117, 0.013452425599098206, 0.028884997591376305, -0.012155900709331036, 0.01988004520535469, 0.03674272075295448, 0.012438778765499592, -0.000807381235063076, -0.0031450544483959675, 0.0027796702925115824, -0.005040730815380812, 0.00960999820381403, 0.0019379114964976907, -0.0026637688279151917, -0.002231593942269683, 0.009924306534230709, 0.004027083981782198, 0.00599151523783803, -0.0004970011068508029, -0.011032246053218842, -0.008902802132070065, -0.02138872817158699, 0.00010785955237224698, 0.004164594225585461, -0.009114961139857769, 0.047366365790367126, -0.01188088022172451, 0.017774173989892006, -0.028492111712694168, 0.013578148558735847, 0.00040172619628719985, -0.006710497196763754, 0.017742743715643883, -0.007798792328685522, 0.019911475479602814, 0.0019487157696858048, 0.006007230840623379, -0.006042590364813805, -0.026590541005134583, -0.009358550421893597, 0.029623623937368393, 0.0020272929687052965, 0.019628597423434258, -0.008627782575786114, 0.0010725795291364193, -0.022488808259367943, 0.001987022114917636, 0.0025950137060135603, 0.010395769961178303, -0.002612693700939417, -0.0032530981115996838, 0.0010264153825119138, -0.005633988883346319, 0.010922238230705261, 0.009955737739801407, 0.01705126278102398, -0.007193747442215681, -0.004879647400230169, -0.025223297998309135, -0.0009473469690419734, -0.00015924171020742506, -0.0030743349343538284, 0.0007631815387867391, -0.006250820122659206, -0.001979164546355605, -0.0009301581885665655, 0.00048791561857797205, 0.00032364006619900465, 0.007582704536616802, 0.0099793104454875, -0.03866000846028328, -0.008784936740994453, 0.013971035368740559, -0.01037219725549221, -0.01187302265316248, 0.00791665818542242, 0.01236805971711874, -0.010301477275788784, 0.00313130347058177, -0.006180100608617067, 0.006698710843920708, 0.002547867363318801, -0.004105661530047655, 0.003376857377588749, -0.0057675703428685665, 0.005712565965950489, -0.008588493801653385, -0.009044241160154343, 0.016139768064022064, 0.0029545046854764223, -0.008832083083689213, 0.00023831006546970457, -0.008824225515127182, 0.005924724508076906, -0.007453052327036858, -0.012305197305977345, 0.0005588806816376746, 0.020587239414453506, -0.0024692900478839874, 0.007386261597275734, -0.001964431256055832, 0.026166224852204323, -0.0015568117378279567, -0.005201814230531454, -0.0012641114881262183, -0.012250193394720554, 0.020005768164992332, -0.0023258866276592016, 0.008549205027520657, -0.016925539821386337, -0.002149087842553854, 0.002824852243065834, -0.015990471467375755, 0.01269022561609745, 0.002661804435774684, 0.010717936791479588, -0.0064629786647856236, -0.0009301581885665655, -0.0061722430400550365, 0.02743917517364025, 0.0033572129905223846, 0.005394328385591507, 0.0038109966553747654, -5.4512966016773134e-05, -0.01879567839205265, -0.012265908531844616, -0.0029761134646832943, 0.009680717252194881, -0.003082192735746503, 0.03012651763856411, -0.011142253875732422, -0.010592213831841946, 0.015416856855154037, 0.0015450251521542668, -0.0024437524843961, 0.03044082783162594, 0.002689306391403079, 0.006989446468651295, 0.02203306183218956, -0.012910242192447186, 0.017554158344864845, 0.006895153783261776, 0.040640152990818024, -0.005854004994034767, -0.018167059868574142, 0.003260955912992358, -0.0023474954068660736, -0.01750701107084751, 0.0005863827536813915, -0.010097176767885685, -0.014552506618201733, 0.0011737477034330368, -0.030283672735095024, -0.00048030345351435244, -0.013420994393527508, 0.015809742733836174, -0.015660446137189865, 0.008305615745484829, -0.010749367997050285, -0.017224133014678955, -0.003496687626466155, 0.00012529388186521828, 0.015031828545033932, -0.023463167250156403, -0.015346136875450611, -0.03636555001139641, -0.0263390950858593, 0.013491714373230934, 0.012768803164362907, 0.00852563139051199, -0.010686506517231464, -0.002999686636030674, -0.007472696714103222, 0.01728699542582035, 0.002628409070894122, -0.007598420139402151, 0.004926793742924929, 0.00023695951676927507, 0.006580844987183809, -0.008486343547701836, -0.0034023949410766363, -0.006808718666434288, -0.00263037346303463, -0.01172372605651617, -0.00972000602632761, 0.0017316461307927966, 0.04658059403300285, 0.01576259732246399, -0.03132089227437973, -0.019942905753850937, -0.016171198338270187, 0.005708637181669474, 0.02041436918079853, -0.009987168945372105, -0.014599652960896492, 0.015314706601202488, -0.024343231692910194, 0.006046519614756107, 0.008714216761291027, -0.014654656872153282, 0.005201814230531454, -0.0018357610097154975, -0.017019832506775856, -0.03341104835271835, -0.002186411991715431, 0.006977659650146961, -0.003640091046690941, -0.011189400218427181, 0.004659630823880434, -0.01387674268335104, 0.0067497859708964825, -0.008297757245600224, 0.01171586848795414, -0.022300222888588905, -0.02137301303446293, 0.011943741701543331, 0.007995235733687878, 0.011315124109387398, 0.00371081056073308, 0.0035320473834872246, 0.023384589701890945, 0.026637688279151917, 0.015369710512459278, -0.0076455664820969105, -0.03447969630360603, 0.010552925057709217, -0.005044659599661827, -0.005527909379452467, 0.03517117723822594, -0.0063922591507434845, 0.006203673779964447, 0.010552925057709217, -0.006781216710805893, -0.0032157739624381065, 0.015754738822579384, -0.011503709480166435, -0.012910242192447186, 0.005740068387240171, -0.017349857836961746, 0.002494827611371875, -0.002416250528767705, -0.01999005302786827, 0.008003093302249908, 0.008887086994946003, -0.00763770891353488, 0.008305615745484829, 0.012965246103703976, -0.0014919855166226625, -0.02203306183218956, 0.0112836929038167, -0.01594332419335842, -0.006785145495086908, -0.021451588720083237, -0.009963595308363438, -0.014992539770901203, 0.013405279256403446, 0.015864746645092964, 0.004451401066035032, -0.030393680557608604, -0.008297757245600224, 0.012643079273402691, -0.005571126937866211, -0.015322564169764519, 0.023714615032076836, 0.01252521388232708, 0.028334956616163254, 0.007991306483745575, 0.010262188501656055, -0.019298572093248367, 0.0006512089748866856, -0.004435685928910971, -0.005543624982237816, 0.01782132126390934, 0.001270986977033317, 0.020021483302116394, -0.018968548625707626, -0.012030176818370819, 0.0008358655031770468, -3.760044273803942e-05, -0.014308917336165905, -0.003649913240224123, 0.0027305595576763153, -0.034385405480861664, 0.016045475378632545, -0.00842348113656044, -0.003775636898353696, 0.0026441244408488274, -0.020650101825594902, -0.01749129593372345, 0.006443334743380547, -0.010882949456572533, -0.023478882387280464, 0.011362270452082157, -0.011047961190342903, -0.005712565965950489, -0.0057675703428685665, -0.01252521388232708, -0.03815711289644241, -0.007236965000629425, 0.023903200402855873, 0.0015754739288240671, 0.00739804795011878, -0.012957388535141945, -0.0040388708002865314, 0.015196840278804302, 0.02871212735772133, 0.005806858651340008, 0.02258310280740261, 0.01047434750944376, -0.001783703570254147, -0.0060583059675991535, -0.012957388535141945, -0.01857566274702549, -0.0021333724725991488, 0.002575369318947196, 0.02885356731712818, -0.011912311427295208, 0.0015970825916156173, 0.021200142800807953, 0.010882949456572533, 0.008289899677038193, 0.0029368246905505657, 0.015031828545033932, 0.012988819740712643, -0.014505360275506973, 0.0056104157119989395, 0.016485506668686867, -0.015008254908025265, -0.001124636852182448, -0.0021530166268348694, -0.0024417880922555923, -0.01738128811120987, 0.010042172856628895, -0.006804789882153273, 0.004419970326125622, -0.01899997889995575, -0.0007553237956017256, -0.01112653873860836, 0.002251238329336047, 0.015849031507968903, -0.008690644055604935, -0.005174311809241772, 0.02149873599410057, 0.01771131157875061, 0.011102965101599693, -0.006608346942812204, -0.01199088804423809, -0.005771499127149582, 0.001957555767148733, -0.019612882286310196, 0.008824225515127182, 0.01868567056953907, -0.004636057652533054, 0.005150738637894392, -0.027030574157834053, -0.01837136037647724, -0.002978077856823802, -0.00886351428925991, 0.014898247085511684, -0.008769221603870392, -0.002339637605473399, -0.010411486029624939, 0.002919144928455353, -0.003922969102859497, -0.0023769617546349764, -0.013633153401315212, 0.00836847722530365, -0.0018102234462276101, 0.004294246900826693, -0.010882949456572533, -0.013735303655266762, 0.009806441143155098, 0.007955946959555149, -0.021074417978525162, -0.011653006076812744, 0.008942090906202793, -0.00021694687893614173, 0.00847848504781723, 0.008604208938777447, -0.006026875227689743, 0.018811393529176712, -0.00023389009584207088, 0.02116871066391468, -0.003583122743293643, 0.0008054168429225683, -0.00558684254065156, 0.010552925057709217, 0.003797245677560568, 0.0015636873431503773, -0.009350692853331566, -0.0022649893071502447, -0.004247100558131933, 0.005630060099065304, 0.006227246951311827, -0.00024285280960612, 0.012014461681246758, -0.001370190759189427, -0.006313682068139315, 0.0035634783562272787, 0.01706697978079319, 0.004031012766063213, -0.01048220507800579, -0.03520260751247406, 0.015739023685455322, -0.02795778587460518, 0.03110087662935257, 0.010710079222917557, -0.004203882999718189, 0.017129840329289436, 0.01780560426414013, 0.004388539586216211, 0.02417036145925522, -0.015377568081021309, -0.0027973500546067953, -0.009358550421893597, -0.016171198338270187, -0.004526049830019474, -0.022190215066075325, -0.015959039330482483, -0.0028562829829752445, -0.011660863645374775, 0.005441474728286266, 0.00017606215260457247, 0.0006202691583894193, 0.0014134083176031709, -0.015715450048446655, -0.02083868719637394, -0.008777079172432423, 0.013405279256403446, -0.04082873836159706, 0.006400117184966803, 0.015361852943897247, -0.0075394874438643456, -0.015880461782217026, 0.007492340635508299, -0.0063018957152962685, -0.0007455016602762043, -0.007032664027065039, -0.004608555696904659, -0.0007302773301489651, 0.006062234751880169, 0.0008815385517664254, -0.010207184590399265, 0.01247020997107029, 0.009091387502849102, 0.01574688032269478, -0.016391213983297348, 0.00531575083732605, 0.024138931185007095, 0.000561827328056097, -0.021325865760445595, 0.007519843056797981, 0.009044241160154343, -0.023683182895183563, -0.006396188400685787, -0.0050760903395712376, -0.010820087045431137, -0.016768384724855423, -0.009531420655548573, -0.030283672735095024, 0.001068650628440082, 0.008564920164644718, -0.0182456374168396, -0.003425968112424016, 0.012375917285680771, 0.014120331965386868, 0.008187749423086643, 0.015071116387844086, 0.012336628511548042, -0.022315939888358116, 0.010615786537528038, 0.009413554333150387, -0.018717100843787193, -0.005052517168223858, 0.010002884082496166, 0.006682995241135359, -0.01923571154475212, -0.004816785454750061, -4.0209451981354505e-06, -0.0022355227265506983, -0.018764248117804527, 0.01769559644162655, 0.002127479063346982, 0.024217508733272552, -0.0180413369089365, 0.011519424617290497, -0.023620322346687317, 0.018167059868574142, -0.010340766049921513, 0.0007774236728437245, -0.02893214300274849, 0.009892876259982586, -0.008682786487042904, -0.0038306410424411297, -0.009547135792672634, -0.010662932880222797, 0.00906781479716301, 0.0022355227265506983, 0.020367223769426346, 0.00759056257084012, 0.02278740331530571, -0.01317740511149168, -0.0054532610811293125, -0.011315124109387398, -0.019612882286310196, 0.004860003013163805, -0.021860191598534584, 0.0027364527340978384, 0.010937953367829323, -0.0018583519849926233, -0.02655911073088646, 0.0031234456691890955, -0.001057846238836646, -0.012713799253106117, 0.010175754316151142, -0.009837871417403221, -0.04607769846916199, -0.002068546134978533, -0.008069884032011032, -0.007948088459670544, 0.013004534877836704, 9.816017700359225e-05, 0.004388539586216211, -0.009531420655548573, -0.00363223347812891, 0.0027639546897262335, -0.004545693751424551, 0.0014870744198560715, -0.004062443971633911, -0.02635481022298336, 0.012430921196937561, 0.002591084921732545, 0.05079233646392822, 0.004553551785647869, 0.01338956318795681, -0.010387912392616272, -0.017192702740430832, -0.014898247085511684, 0.011943741701543331, 0.007767361123114824, -0.021420158445835114, -0.006596560124307871, 0.001886836253106594, -0.009201396256685257, 0.025333305820822716, 0.011527283117175102, 0.004408183973282576, 0.013153831474483013, 0.0031391612719744444, 0.010152180679142475, -0.0072683957405388355, 0.025867631658911705, 0.02516043558716774, -0.019848613068461418, -0.0024182149209082127, -0.016124051064252853, 0.037214186042547226, 0.014073185622692108, -0.004361037630587816, -0.03932005539536476, 0.00901281088590622, -0.004706777166575193, 0.009429270401597023, 0.012352343648672104, -0.01599832810461521, 0.014756808057427406, 0.007036592811346054, 0.025239013135433197, 0.00046286912402138114, 0.013303129002451897, 0.005355039611458778, 0.007052308414131403, -0.029230738058686256, -0.007413763552904129, 0.0067065684124827385, 0.013963177800178528, -0.02762776054441929, 0.008651355281472206, 0.013868885114789009, -0.006231176201254129, -0.027784915640950203, 0.003223631763830781, 0.011079392395913601, 0.003930827137082815, -0.005555411800742149, -0.0052764625288546085, 0.015291132964193821, -0.0022610602900385857, 0.004196024965494871, -0.017978474497795105, -0.006235104985535145, -0.008109171874821186, 0.0034338259138166904, -0.002575369318947196, 0.01642264612019062, 0.014623226597905159, -0.004702848382294178, -0.0035340117756277323, -0.0058736493811011314, -0.009955737739801407, -0.0011216902639716864, 0.0019889867398887873, -0.0009090405656024814, -0.007818436250090599, 0.005598628893494606, -0.006333326455205679, -0.002251238329336047, -0.008926375769078732, -0.020021483302116394, -0.013790307566523552, -0.015644731000065804, -0.019832897931337357, -0.009217111393809319, -0.009413554333150387, 0.0021746254060417414, -0.0009586424566805363, 0.0027894924860447645, -0.013680299744009972, 0.018057052046060562, 0.01273737195879221, -0.002373032970353961, -0.005449332296848297, -0.03702560067176819, 0.002139265649020672, -0.005052517168223858, 0.01999005302786827, 0.00961785577237606, -0.010678648017346859, -0.011598002165555954, 0.024924704805016518, 0.004518191795796156, 0.013656726107001305, 0.0015145764918997884, 0.013263840228319168, 0.0024575034622102976, -0.0008240789175033569, 0.011582287028431892, -0.01717698760330677, -0.02181304432451725, -0.021467305719852448, -0.0016059225890785456, -0.010089319199323654, 0.010741510428488255, 0.004148878622800112, -0.04029441252350807, 0.021231573075056076, -0.0027835990767925978, -0.0016540511278435588, 0.024060353636741638, 0.010882949456572533, 0.028979290276765823, 0.014143905602395535, 0.0018249566201120615, 0.021325865760445595, 0.022315939888358116, -0.004604626912623644, 0.0119358841329813, -0.00330613786354661, 0.0060308040119707584, 0.022850263863801956, -0.0125880753621459, 0.008282042108476162, 0.005064303986728191, -0.004372823983430862, 0.02863354980945587, 0.020335791632533073, -0.019471442326903343, -0.0003847829648293555, 0.02225307747721672, 0.006722284015268087, 0.008069884032011032, 0.0016540511278435588, -0.012093039229512215, 0.03517117723822594, -0.00023585453163832426, -0.0015990471001714468, 0.015503291971981525, -0.004958224482834339, -0.00013972017040941864, 0.004765710327774286, 0.01198303047567606, 0.018434222787618637, -0.016768384724855423, -0.015856890007853508, -0.008824225515127182, 0.004958224482834339, -0.008651355281472206, -0.0003987795498687774, -0.004565338138490915, 0.005590771324932575, 0.011346555314958096, -0.007174103055149317, 0.004930722527205944, -0.002486970042809844, 0.008769221603870392, 0.016485506668686867, 0.004388539586216211, -0.002115692477673292, 0.004636057652533054, 0.009476416744291782, -0.004290318116545677, 0.0035418695770204067, -0.0063922591507434845, -0.017459865659475327, -0.005001442041248083, 0.001718877349048853, 0.002834674436599016, 0.01258021779358387, 0.012454493902623653, 0.010937953367829323, -0.014324632473289967, 4.238874316797592e-05, 0.006129025481641293, 0.03207523375749588, 0.019612882286310196, 0.01257236022502184, -0.0004370859533082694, 0.002068546134978533, -0.011032246053218842, 0.016579799354076385, 0.023038849234580994, 0.01592760905623436, -0.0058304318226873875, 0.006631920114159584, -0.025191865861415863, -0.005960084497928619, -0.020477231591939926, 0.009083529934287071, 0.005095734726637602, -0.005378612782806158, -0.017255565151572227, -0.02008434571325779, 0.008337046019732952, 0.02926216833293438, 0.000411793909734115, 0.0032255961559712887], "21ea6e25-467c-4f15-b2a4-6135d6ec3e60": [-0.032841697335243225, -0.027188098058104515, -0.008424816653132439, 0.015761790797114372, -0.02210620976984501, -0.01574590988457203, 0.01988288387656212, 0.04065509885549545, -0.017341941595077515, 0.0251394622027874, 0.0006243177922442555, 0.025171224027872086, 0.0077141462825238705, -0.035065025091171265, 0.020105216652154922, 0.028283879160881042, -0.012680897489190102, 0.00901240948587656, 0.02185211516916752, -0.007563277613371611, 0.03928934037685394, -0.029729042202234268, -0.051168255507946014, 0.029999015852808952, 0.038495298475027084, -0.005296279676258564, -0.023186111822724342, 0.015245662070810795, -0.02817271277308464, -0.014324570074677467, -0.016190575435757637, 0.02358313463628292, -0.002441688207909465, 0.006054592318832874, 0.04567346349358559, -0.010243179276585579, 0.008250126615166664, -0.006479406263679266, -0.02539355680346489, 0.0078491335734725, -0.05110473185777664, 0.03401688486337662, -0.018564769998192787, -0.04227495193481445, -0.023392563685774803, 0.001153350225649774, -0.04973897337913513, -0.009401491843163967, 0.015992064028978348, -0.023837227374315262, 0.04256080836057663, 0.013689334504306316, -0.006229282356798649, 0.031317129731178284, 0.03449331223964691, -0.02791861817240715, 0.004450621549040079, 0.021820353344082832, 0.0017191072693094611, -0.05831465870141983, -0.01816774718463421, -0.018183628097176552, -0.02393251284956932, 0.001920596114359796, 0.010735487565398216, -0.01888238824903965, 0.02115335687994957, -0.022280899807810783, -0.03833648934960365, 0.010163774713873863, -0.011664520017802715, -0.015205959789454937, -0.04392656311392784, -0.021645665168762207, 0.016341444104909897, -0.03049132414162159, 0.06619158387184143, 0.02777569182217121, 0.020613405853509903, -0.007956329733133316, -0.010187596082687378, -0.020931024104356766, -0.014094296842813492, -0.013435239903628826, 0.07832459360361099, -0.014634247869253159, -0.04341837391257286, -0.04043276607990265, -0.05170820280909538, -0.025584127753973007, 0.010068489238619804, 0.0068565779365599155, 0.01716725155711174, 0.0015473950188606977, -0.04125857353210449, 0.008512161672115326, 0.014261046424508095, 0.01287146843969822, -0.01004466786980629, -0.03388983756303787, -0.030459562316536903, -0.006828786339610815, -0.02782333455979824, 0.01118015218526125, -0.004311664029955864, 0.024011917412281036, 0.028140950947999954, 0.00994938239455223, -0.008321590721607208, 0.039861053228378296, -0.03563673421740532, -0.038654107600450516, 0.057330042123794556, 0.0046094306744635105, -0.05720299482345581, -0.04977073520421982, -0.00711861252784729, 0.033445172011852264, -0.018199509009718895, -0.03855882212519646, 0.03039603866636753, 0.01953350566327572, 0.010513154789805412, 0.025123581290245056, -0.0077141462825238705, 0.01029876247048378, -0.013085859827697277, 0.04138562083244324, 0.034048646688461304, -0.007007446140050888, -0.01827891357243061, 0.009155337698757648, -0.011815388686954975, 0.008901243098080158, 0.003211911767721176, 0.0324287936091423, 0.022074447944760323, 0.04735684022307396, -0.008813898079097271, 0.003519603982567787, -0.07699059695005417, -0.006554840598255396, -0.018660055473446846, 0.0026600505225360394, 0.015491816215217113, -0.007884865626692772, -0.039861053228378296, 0.04421241953969002, -0.02367842011153698, 0.03509678691625595, -0.03028487227857113, -0.03928934037685394, -0.02479008212685585, 0.02256675623357296, -0.006221341900527477, -0.011108688078820705, -0.01138660404831171, 0.009790574200451374, 0.0012744420673698187, 0.0021498766727745533, -0.006947893183678389, -0.07178165763616562, 0.024266012012958527, 0.025965267792344093, 0.0053240712732076645, 0.01832655631005764, 0.024647153913974762, 0.012244172394275665, -0.032936982810497284, 0.03700249269604683, 0.016738466918468475, -0.025409437716007233, -0.004335485398769379, 0.004252110607922077, -0.005165262147784233, 0.007880895398557186, 0.015261542983353138, 0.02185211516916752, -0.001437221304513514, 0.004641192499548197, -0.04573698714375496, 0.026870479807257652, -0.013665513135492802, -0.0088615408167243, 0.017802486196160316, -0.006157818250358105, -0.027759810909628868, -0.00999702513217926, -0.013744917698204517, -0.004649132955819368, -0.00047220857231877744, -0.024345416575670242, 0.010084370151162148, 0.024313654750585556, -0.018453603610396385, 0.008933004923164845, 0.02887147292494774, -0.006368240341544151, -0.02161390334367752, 0.001230769557878375, -0.020406953990459442, -0.029951374977827072, -0.03322283923625946, 0.008504221215844154, -0.0290779247879982, 0.01501538883894682, -0.01133102085441351, -0.021740948781371117, 0.03792358562350273, 0.013935488648712635, 0.06266602128744125, -0.05405857786536217, -0.0056138974614441395, -0.025060057640075684, 0.008972707204520702, -0.0035910680890083313, 0.015364768914878368, 0.021899757906794548, -0.023757824674248695, -0.023948393762111664, -0.011307199485599995, -0.023249635472893715, -0.032936982810497284, -0.02488536760210991, -0.07743526250123978, 0.016547895967960358, -0.023201992735266685, 0.03786006197333336, -0.00039106712210923433, -0.001184119493700564, -6.544667121488601e-05, 0.009862037375569344, -0.0010838713496923447, -0.010227298364043236, -0.024647153913974762, 0.02115335687994957, 0.056313663721084595, 0.0074918135069310665, 0.021328046917915344, -0.01494392566382885, 0.041322097182273865, 0.04386303946375847, 0.005081887356936932, -0.011656579561531544, -0.01542035210877657, 0.018961792811751366, 0.021820353344082832, 0.00956824142485857, 0.013181145302951336, -0.0008883377304300666, -0.01781836710870266, -0.016134992241859436, -0.0164526104927063, -0.0008372211013920605, -0.03979752957820892, 0.07000300288200378, 0.015031269751489162, -0.006459555123001337, -0.00802779383957386, -0.0036049638874828815, 0.017341941595077515, 0.042941950261592865, -0.01670670509338379, 0.004438710864633322, 0.025123581290245056, -0.0060148900374770164, 0.009091814048588276, -0.019612910225987434, 0.02548884227871895, 0.04989778250455856, 0.015142436139285564, -0.005999009124934673, 0.007837222889065742, 0.002785112475976348, -0.02170918695628643, -0.014229284599423409, -0.05542433634400368, 0.004037718288600445, -0.015245662070810795, -0.01557122077792883, -0.0203910730779171, -0.010791070759296417, 0.024313654750585556, 0.008869481272995472, 0.036621350795030594, -0.0010908192489296198, -0.014046654105186462, -0.026679908856749535, -0.055106718093156815, -0.00822630524635315, -0.0034302740823477507, 0.02196328155696392, 0.03468388319015503, 0.03760596737265587, 0.022503232583403587, 0.006499257404357195, -0.013125562109053135, 0.00408933125436306, -0.006137967109680176, 0.028410926461219788, -0.039861053228378296, -0.003537470009177923, 0.008512161672115326, -0.03700249269604683, -0.017786605283617973, -0.01751663163304329, 0.04129033535718918, -0.005002482794225216, -0.012434743344783783, 0.056917138397693634, 0.0252506285905838, -0.03906701132655144, 0.002344417618587613, 0.007722086738795042, 0.0017310179537162185, 0.018215389922261238, -0.009631765075027943, 0.0052327560260891914, -0.022455589845776558, -0.009282384999096394, 0.026378171518445015, 0.00026823830557987094, -0.04383127763867378, -0.002747395308688283, 0.005736974533647299, -0.04548289254307747, 0.004605460446327925, -0.020486358553171158, -0.007785610388964415, -0.02437717840075493, -0.027426311746239662, -0.041068002581596375, -0.025457080453634262, 0.0074799032881855965, -0.013681394048035145, -0.037637729197740555, -0.04538760706782341, 0.003787594148889184, -0.014824818819761276, -0.029300257563591003, -0.046340461820364, -0.02747395448386669, 0.005002482794225216, -0.020931024104356766, -0.012593552470207214, 0.005486850161105394, -0.0015215885359793901, 0.02782333455979824, 0.0009841193677857518, -0.03519206866621971, 0.0009473948157392442, -0.01878710277378559, 0.046626318246126175, -0.015610923059284687, 0.020613405853509903, -0.03658958896994591, -0.0192317683249712, 0.02110571414232254, -0.02979256585240364, 0.02993549406528473, 0.012125065550208092, -0.058092325925827026, -0.01635732501745224, -0.04068686068058014, 0.021296285092830658, -0.02101042866706848, -0.016690824180841446, -0.02135980874300003, -0.03303226828575134, -0.0019682387355715036, -0.007229778915643692, -0.0015573205891996622, 0.035160306841135025, 0.015499756671488285, 0.004819852765649557, -0.04024219512939453, 0.01756427250802517, 0.002398015698418021, 0.003213896881788969, 0.01626203954219818, -0.01635732501745224, 0.04395832493901253, 0.02534591406583786, 0.002713648369535804, 0.0377647764980793, 0.02645757608115673, -0.012768242508172989, -0.03141241520643234, -0.013363775797188282, -0.006570721510797739, -0.04065509885549545, 0.0470392219722271, -0.05135882645845413, 0.0019612908363342285, -0.031936485320329666, -0.0015334992203861475, 0.012641195207834244, -0.009131516329944134, 0.00901240948587656, -0.007587098982185125, 0.008273947983980179, 0.009655586443841457, -0.004335485398769379, -0.007797521073371172, -0.015190078876912594, 0.005875932518392801, -0.016238218173384666, -0.03146005794405937, 0.018596531823277473, -0.003045162186026573, 0.009195039980113506, -0.03725658729672432, -0.006249133497476578, 0.0185330081731081, 0.006610423792153597, 0.019930526614189148, 1.0638960702635814e-05, 0.0047761802561581135, -0.03500150144100189, 0.002310670679435134, 0.004863525275141001, 0.021629784256219864, 0.0030749388970434666, 0.00468486500903964, -0.024663034826517105, 0.005077917128801346, 0.025361794978380203, -0.01594442129135132, -0.009028290398418903, -0.027140455320477486, 0.039003487676382065, 0.04427594318985939, -0.012410921975970268, -0.007670473773032427, -0.017548393458127975, -0.0320952944457531, 0.0016307696932926774, 0.02185211516916752, -0.0345250740647316, -0.020311668515205383, -0.033445172011852264, 0.023964274674654007, -0.0019831270910799503, -0.018707698211073875, -0.028537973761558533, -0.02731514535844326, -0.039257582277059555, 0.016643181443214417, 0.03735187277197838, 0.01148188952356577, -0.02185211516916752, 0.03547792509198189, 0.011061045341193676, -0.009195039980113506, 0.03325460106134415, -0.029697280377149582, -0.02126452326774597, -0.02666402794420719, -0.004522085655480623, -0.03158710524439812, -0.000467990234028548, 0.0051215896382927895, 0.04630869999527931, 0.014300748705863953, 0.026616385206580162, -0.01883474551141262, -0.013173204846680164, -0.010330524295568466, 0.01953350566327572, -0.007944419048726559, -0.013935488648712635, 0.025663532316684723, -0.05729828029870987, -0.009306206367909908, 0.042846664786338806, 0.006010919809341431, -0.0223603043705225, -0.0005583128076978028, 0.0059950388967990875, -0.0020099261309951544, -0.005963277071714401, -0.03887644037604332, 0.008071466349065304, 0.017087846994400024, -0.02807742729783058, 0.008718613535165787, -0.004661043640226126, -0.064412921667099, -0.02539355680346489, 0.05240696296095848, 0.0009305214043706656, -0.008869481272995472, 0.010211417451500893, 0.029363781213760376, 0.030666014179587364, -0.0065985131077468395, -0.021979162469506264, 0.012172708287835121, 0.006177669391036034, -0.026235243305563927, 0.0251394622027874, -0.03222234174609184, 0.012927050702273846, -0.01883474551141262, -0.016436729580163956, 0.035668496042490005, 0.0262987669557333, -0.005367743782699108, -0.03350869566202164, -0.03468388319015503, -0.04589579626917839, 0.041925571858882904, -0.03725658729672432, 0.012633254751563072, 0.015205959789454937, 0.01767543889582157, -0.013586108572781086, -0.0024913158267736435, 0.04392656311392784, 0.02099454775452614, -0.004422829952090979, -0.02069281041622162, -0.0086868517100811, 0.00828188844025135, -0.019057078287005424, -0.022836731746792793, 0.004007941577583551, -0.010274941101670265, -0.016674943268299103, -0.039098773151636124, -0.012744421139359474, -0.004125063307583332, -0.0244407020509243, 0.0009732012986205518, 0.009973203763365746, -0.009528539143502712, -0.025631770491600037, 0.03630373254418373, 0.023249635472893715, 0.023313159123063087, -0.03196824714541435, 0.0352238304913044, -0.02448834478855133, 0.00895682629197836, -0.009449134580790997, -0.008242186158895493, 0.005280398763716221, 0.012942931614816189, -0.005935485940426588, 0.0005836230120621622, -0.012085363268852234, 0.025758817791938782, -0.009687348268926144, 0.008202483877539635, -0.02210620976984501, -0.040972717106342316, 0.029109686613082886, 0.01423722505569458, 0.014014892280101776, -0.0032694798428565264, -0.022137971594929695, -0.00022580652148462832, 0.011219854466617107, 0.027680406346917152, -0.023868989199399948, 0.020915143191814423, -0.028665021061897278, -0.007626801263540983, 0.01345112081617117, 0.011418365873396397, 0.014292808249592781, 0.0018044670578092337, 0.03357221931219101, -0.003934492357075214, -0.007646652404218912, 0.022646160796284676, -0.0047007459215819836, -0.028140950947999954, -0.03296874463558197, 0.008877421729266644, 0.034048646688461304, -0.0116406986489892, 0.005617867689579725, -0.04189381003379822, 0.0030253110453486443, -0.03722482547163963, -0.021693307906389236, -0.037383634597063065, -0.02351961098611355, 0.027902737259864807, -0.0021101743914186954, 0.010799011215567589, -0.022439708933234215, 0.00789677631109953, 0.0004950373549945652, 0.01948586292564869, 0.010139953345060349, -0.017437227070331573, 0.014967747032642365, 0.03468388319015503, 0.0009017372503876686, 0.025758817791938782, -0.012800004333257675, -0.019358815625309944, -0.014181641861796379, 0.04135385900735855, -0.02923673391342163, 0.03325460106134415, 0.011338961310684681, 0.001962283393368125, 0.006836726795881987, -0.019311172887682915, 0.029093805700540543, -0.02004169300198555, 0.029157329350709915, 0.02099454775452614, 0.000709677638951689, 0.03589082881808281, 0.01677022874355316, -0.02221737615764141, 0.018945911899209023, 0.016166754066944122, 0.061617884784936905, 0.007174195721745491, 0.007245659828186035, 0.023487849161028862, -0.024456582963466644, 0.007007446140050888, 0.0001699752319836989, -0.00028461546753533185, -0.007293302565813065, -0.0019880898762494326, 0.00956824142485857, -0.02958611398935318, 0.004335485398769379, 0.001807444728910923, 0.031872961670160294, 0.003124566748738289, -0.007706205826252699, 0.01711960881948471, -0.012148886919021606, -0.003934492357075214, 0.01893003098666668, 0.0155235780403018, -0.011267497204244137, -0.012545909732580185, -0.003974194638431072, 0.02312258817255497, 0.027394549921154976, 0.042687855660915375, -0.021693307906389236, 0.031110679730772972, -0.0029975194483995438, 0.021328046917915344, 0.005371714010834694, -0.015309185720980167, -0.011267497204244137, 0.015888838097453117, -0.02903028205037117, 0.007400498725473881, 0.009274444542825222, -0.029014401137828827, 0.01604764722287655, 0.031984128057956696, 0.02437717840075493, -0.00039925571763888, -0.01029876247048378, 0.005733004305511713, 0.009441194124519825, 0.03932110220193863, 0.02979256585240364, -0.006145907565951347, 0.03373102843761444, -0.00019441693439148366, -0.006467495579272509, -0.00921092089265585, -0.009353849105536938, -0.001408437150530517, 0.02321787364780903, 0.0054153865203261375, -0.010179655626416206, -0.0262987669557333, -0.01797717623412609, 0.03215881809592247, 0.038145918399095535, -0.021629784256219864, 0.011346901766955853, -0.020518120378255844, -0.02008933573961258, -0.01751663163304329, 0.004931018687784672, 0.0053796544671058655, -0.001408437150530517, 0.006582632195204496, -0.007825312204658985, 0.021137475967407227, -0.031269486993551254, -0.01277618296444416, -0.006979654543101788, -0.0176119152456522, -0.04923078417778015, -0.008670970797538757, -0.011037223972380161, -0.009592062793672085, -0.0028704723808914423, 0.021534498780965805, -0.018501246348023415, -0.022884374484419823, -0.012561790645122528, -0.020279906690120697, 0.014451617375016212, 0.019676432013511658, -0.0004980150260962546, 0.019057078287005424, -0.005208934657275677, -0.0010461541824042797, -0.00843275710940361, 0.013379656709730625, -0.02372606284916401, -0.01320496667176485, -0.009298265911638737, 0.03196824714541435, -0.0030193557031452656, -0.022757327184081078, 0.01113250944763422, -0.0010858564637601376, 0.017183132469654083, 0.005764766130596399, -0.017754843458533287, 0.006038711406290531, 0.06006155535578728, -0.008019853383302689, 0.0003672457823995501, -0.0006942930049262941, 0.015086852945387363, -0.019025316461920738, -0.0034660061355680227, 0.02949082851409912, 0.04592755809426308, -0.0027732017915695906, 0.018151866272091866, 0.0038114155177026987, 0.017580153420567513, -0.009607943706214428, -0.004875435959547758, 0.00048287856043316424, 0.016674943268299103, 0.01532506663352251, -0.003446154994890094, -0.015968242660164833, 0.008821838535368443, -0.017135489732027054, 0.016944918781518936, -0.024980653077363968, -0.005903724115341902, 0.005141440778970718, 0.009449134580790997, 0.004633252043277025, -0.011982137337327003, 0.019517624750733376, -0.008948885835707188, 0.023201992735266685, 0.006090324372053146, -0.026727551594376564, 0.007960299961268902, -0.01365757267922163, 0.014261046424508095, 0.014570724219083786, 0.034302741289138794, -0.002556824591010809, 0.03967048227787018, -0.0070550888776779175, 0.018548889085650444, 0.020772214978933334, -0.056218378245830536, -0.028696782886981964, -0.03074541874229908, 0.005625808145850897, 0.006658066529780626, -0.001448139431886375, -0.0086312685161829, -0.03503326326608658, -0.003882879624143243, 0.0252506285905838, -0.0004131514870095998, -0.02251911349594593, 0.012196529656648636, -0.007467992603778839, -0.007039207965135574, 0.011616877280175686, 0.018596531823277473, -0.0013717125402763486, -0.0007384617929346859, 0.0052684880793094635, 0.01999405026435852, 0.015825314447283745, -0.00016327548655681312, -0.010108191519975662, 0.0010570723097771406, 0.0028466510120779276, 0.009877918288111687, -0.03747892007231712, 0.015229781158268452, 0.029252614825963974, 0.009822335094213486, -0.032492317259311676, -0.0045181154273450375, 0.009790574200451374, -0.019200006499886513, 0.027188098058104515, -0.010235238820314407, 0.0031861052848398685, -0.009742931462824345, 0.031269486993551254, -0.014499260112643242, -0.02529827132821083, 0.01651613414287567, 0.021550379693508148, -4.920131686958484e-06, 0.020661048591136932, -0.02251911349594593, 0.009179159067571163, 0.015245662070810795, 0.0030729537829756737, 0.011608936823904514, -0.0007250622729770839, -0.0066540963016450405, 0.0036843684501945972, 0.02180447243154049, 0.017294298857450485, 0.00994144193828106, -0.0223603043705225, -0.045101750642061234, 0.06282483041286469, -0.00134392105974257, 0.04351365938782692, -0.04049628973007202, 0.017024323344230652, -0.034048646688461304, -0.00729727279394865, -0.008813898079097271, -0.023249635472893715, -0.004279902204871178, -0.011045164428651333, 0.0008774196030572057, 0.011775686405599117, 0.01102928351610899, -0.007031267508864403, 0.004680894780904055, 0.03171415254473686, 0.019612910225987434, 0.026775194332003593, 0.021089833229780197, 0.014245165511965752, -0.005534492898732424, 0.015007448382675648, 0.0077141462825238705, 0.004688835237175226, 0.009981144219636917, 0.0011126553872600198, 0.003275435185059905, -0.01526948343962431, -0.011728043667972088, 0.005645659286528826, 0.008940945379436016, -0.004815882537513971, 0.0039027307648211718, -0.02852209284901619, 0.00971911009401083, 0.001031265826895833, -0.00556625472381711, 0.01716725155711174, 0.004625311587005854, -0.0035473955795168877, -0.004168735817074776, -0.022995540872216225, 0.024567749351263046, -0.01574590988457203, -0.026076434180140495, -0.006900250446051359, 0.012101244181394577, 0.011299259029328823, -0.04205261915922165, 0.011505710892379284, -0.033349886536598206, 0.026124076917767525, -0.0006684865802526474, 0.003213896881788969, -0.0023364771623164415, 0.029109686613082886, -0.012275934219360352, 0.0047563291154801846, -0.007662533316761255, -0.03786006197333336, -0.016547895967960358, 0.00926650408655405, -0.016031766310334206, -0.001674442202784121, -0.012514147907495499, -0.015865016728639603, -0.001075930893421173, -0.04411713406443596, -0.030475443229079247, -0.009123575873672962, 0.03766949102282524, -0.03373102843761444, -0.012133006006479263, -0.012148886919021606, 0.03843177482485771, 0.011338961310684681, -0.019454101100564003, 0.018898269161581993, 0.011251616291701794, 0.02423425018787384, 0.02045459672808647, -0.004045658744871616, 0.0088059576228261, -0.024726558476686478, 0.021518617868423462, -0.027680406346917152, -0.007182136178016663, 0.00837717391550541, 0.008456578478217125, 0.011116628535091877, -0.007745908107608557, 0.005443177651613951, -0.0067096794955432415, 0.011616877280175686, 0.005018363706767559, 0.005113649182021618, 0.001721092383377254, 0.001541439676657319, 0.001164268353022635, 0.022852612659335136, 0.03018958680331707, -0.01707196608185768, -0.011259556747972965, -0.017437227070331573, -0.04846850037574768, -0.0059076943434774876, -0.003162283916026354, -0.00465707341209054, 0.015595042146742344, -0.014078415930271149, 0.021598022431135178, -0.0025687352754175663, -0.0010808936785906553, 0.035763781517744064, -0.012156827375292778, -0.023916631937026978, 0.017659557983279228, 0.016500253230333328, -0.006157818250358105, 0.002100248821079731, -0.0013468987308442593, -0.0015285364352166653, -0.012680897489190102, -0.000525558483786881, -0.004593549761921167, 0.0012555834837257862, -0.000456823967397213, 0.006320597603917122, -0.01123573537915945, 0.009234742261469364, -0.02277320809662342, 0.004526055883616209, -0.012839706614613533, 0.003217867109924555, -0.0022213405463844538, -0.021947400644421577, -0.0067454115487635136, -0.01310174074023962, -0.0009151367703452706, 0.0010372211690992117, -0.013498763553798199, -0.008011912927031517, -0.026743432506918907, -0.03206353262066841, -0.011251616291701794, -0.009655586443841457, -0.02437717840075493, -0.03573201969265938, -0.009774693287909031, -0.019771717488765717, 0.008266007527709007, -0.0006679903017356992, 0.0017330030677840114, 0.010132012888789177, 0.0005156329134479165, 0.025425318628549576, -0.018183628097176552, -0.02731514535844326, -0.0033191076945513487, -0.013848143629729748, 0.0008858563378453255, -0.0006982632330618799, -0.011799507774412632, -0.034048646688461304, 0.004649132955819368, -0.055614907294511795, 0.017897771671414375, 0.02089926227927208, -0.06689034402370453, 0.03347693383693695, 0.03519206866621971, 0.0025866013020277023, 0.024345416575670242, 0.02599702961742878, 0.002330521820113063, 0.010735487565398216, -0.02205856703221798, -0.0036803982220590115, -0.00838511437177658, -0.006840697024017572, -0.005474939476698637, 0.02423425018787384, 0.013077919371426105, -0.0049548400565981865, 0.02518710494041443, 0.023853108286857605, 0.014070475473999977, -0.02382134646177292, -0.0031106709502637386, -0.012291815131902695, -0.0009191069984808564, 0.004184616729617119, 0.009226801805198193, -0.0037736983504146338, -0.0010699755512177944, -0.009973203763365746, -0.01168834138661623, -0.012942931614816189, -0.005383624695241451, -0.005395535379648209, 0.008782136254012585, -0.022598518058657646, 0.002419851953163743, -0.02817271277308464, 0.004422829952090979, 0.021820353344082832, 0.03747892007231712, 0.008599506691098213, -0.020676929503679276, 0.02205856703221798, -0.000567742099519819, -0.025520604103803635, 0.004712656605988741, -0.007130523212254047, 0.04198909550905228, -0.020327549427747726, 0.0027533506508916616, -0.006538959685713053, 0.005280398763716221, -0.019771717488765717, 0.020581644028425217, -0.017532512545585632, -0.00026029784930869937, -0.011116628535091877, 0.0050104232504963875, 0.011370723135769367, -0.00726948119699955, -0.015682386234402657, 0.03887644037604332, -0.009798514656722546, -0.010116131976246834, -0.03500150144100189, -0.01385608408600092, 0.016627300530672073, -0.018088342621922493, -0.014602486044168472, -0.015150376595556736, 0.018993554636836052, 0.023106707260012627, -0.011307199485599995, -0.019327053800225258, -0.003724070731550455, 0.009123575873672962, 0.012347398325800896, -0.013117621652781963, -0.008361293002963066, -0.01511861477047205, -0.006340448744595051, -0.006086354143917561, -0.02372606284916401, -0.03897172585129738, 0.007293302565813065, 0.0051771728321909904, 0.009099754504859447, -0.013443180359899998, 0.011418365873396397, -0.023392563685774803, -0.004287842661142349, 0.0037002493627369404, 0.022804969921708107, -0.007690324913710356, 0.023853108286857605, 0.004827793221920729, 0.047229792922735214, 0.001095782034099102, -0.016174694523215294, 0.0011861046077683568, -0.03287345916032791, 0.01878710277378559, 0.012855587527155876, 0.011362782679498196, 0.028109189122915268, -0.01070372574031353, 0.03144417703151703, 0.000904714921489358, -0.008095287717878819, 0.03366750478744507, 0.009298265911638737, 0.025774698704481125, 0.03560497239232063, 0.01113250944763422, 0.003442184766754508, 0.004879406187683344, -0.009099754504859447, -0.01686551421880722, 0.008758315816521645, -0.004224319010972977, -0.003690323792397976, -0.028585616499185562, -0.002098263707011938, -0.029665518552064896, -0.0244407020509243, 0.007817371748387814, 0.01686551421880722, 0.024218369275331497, -0.001031265826895833, 0.006908190902322531, -0.023106707260012627, 0.03363574296236038, -0.005530522670596838, -0.0036585619673132896, -0.0021081892773509026, -0.011068985797464848, 0.007329034619033337, -0.01526948343962431, 0.014261046424508095, -0.020724572241306305, -0.016881395131349564, 0.017389584332704544, 0.009663526900112629, -0.007543426472693682, -0.027759810909628868, -0.02863325923681259, -0.011608936823904514, 0.010830773040652275, -0.024853605777025223, 0.002713648369535804, 0.005185113288462162, -0.016944918781518936, 0.012863527983427048, -0.0037756834644824266, 0.011656579561531544, 0.005645659286528826, -0.012657076120376587, 0.011696281842887402, 0.010306702926754951, -0.024869486689567566, 0.018564769998192787, -0.006276925094425678, -0.006757322233170271, -0.020121097564697266, -0.023154349997639656, 0.02332904003560543, -0.003424318740144372, -0.014721592888236046, 0.023201992735266685, 0.006423823535442352, 0.013395537622272968, 0.01434045098721981, 0.006681887898594141, 0.0029538471717387438, 0.017484869807958603, -0.02747395448386669, -0.0031722094863653183, 0.019803479313850403, -0.01579355262219906, -0.009401491843163967, -0.00476029934361577, 0.018199509009718895, 0.0035533509217202663, 0.0014352361904457211, -0.0011225809575989842, 0.0015841196291148663, -0.004391068127006292, 0.00302928127348423, 0.014380153268575668, 0.017945414409041405, -0.022582637146115303, -0.021995043382048607, -0.02358313463628292, -0.011553353630006313, 0.023789584636688232, 0.005316130816936493, -0.006153848022222519, -0.004740448202937841, 0.04084566980600357, -0.017850128933787346, 0.014356331899762154, 0.0046094306744635105, -0.013006455264985561, 0.004383128136396408, -0.04154442995786667, -0.010282881557941437, 0.0011255586287006736, -0.00603077095001936, -0.0036744428798556328, 0.0009478910942561924, 0.02101042866706848, -0.0251394622027874, -0.004533996339887381, -0.00655087037011981, -2.9427737899823114e-06, 0.0010858564637601376, -0.028665021061897278, 0.012363279238343239, 0.004927048459649086, 0.01206154190003872, -0.0027196037117391825, -0.003487842157483101, -0.02024814486503601, -0.005244666710495949, -0.0028863532934337854, 0.029649637639522552, 0.010116131976246834, 0.0069677443243563175, -0.01501538883894682, -0.010012906044721603, 0.014888342469930649, 0.02493301033973694, 0.0145945455878973, 0.006725560408085585, -0.013228788040578365, -0.0014024818083271384, 0.031174203380942345, -0.020057573914527893, -0.003962283954024315, 0.023567253723740578, -0.00789677631109953, -0.01173598412424326, -0.03376279026269913, 0.0011017372598871589, 0.008655089884996414, -0.005864021833986044, 0.013379656709730625, -0.0064198533073067665, 0.005058065988123417, -0.005605957005172968, 0.01619851589202881, -0.025679413229227066, -0.018755340948700905, -0.009441194124519825, -0.017707200720906258, -0.02620348148047924, 0.0192317683249712, 0.016373205929994583, -0.002898263977840543, -0.04325956851243973, 0.026060553267598152, 0.011561294086277485, 0.022455589845776558, -0.05193053558468819, 0.009147397242486477, -0.0024496286641806364, 0.014308689162135124, -0.01893003098666668, -0.020708691328763962, -0.019867002964019775, 0.011370723135769367, 0.012641195207834244, 0.01707196608185768, -0.01044963113963604, 0.010735487565398216, -0.015198019333183765, -0.006407942622900009, 0.0004042184737045318, -0.014419855549931526, -0.0003655088075902313, 0.026012910529971123, 0.011878912337124348, -0.02448834478855133, -0.022455589845776558, 0.008154841139912605, 0.007809431757777929, 0.004645162727683783, 0.002362283645197749, 0.00014392063894774765, -0.0069121611304581165, -0.0065429299138486385, -0.007960299961268902, 0.03579554334282875, -0.007444171234965324, 0.01574590988457203, -0.02282085083425045, -0.015714148059487343, 0.011045164428651333, 0.01756427250802517, -0.040369242429733276, 0.013197026215493679, -0.009679407812654972, 0.0029181151185184717, -0.019327053800225258, 0.01179156731814146, -0.014300748705863953, -0.019565267488360405, 0.004327544942498207, -0.0013171220198273659, 0.012617373839020729, 0.0056694806553423405, -0.01040198840200901, -0.006713649723678827, -0.02367842011153698, 0.0013945413520559669, 0.011807448230683804, -0.018660055473446846, -0.004379157908260822, -0.029999015852808952, 0.009345908649265766, 0.009075933136045933, 0.019914645701646805, -0.005879902746528387, 2.3480155505239964e-05, 0.020025812089443207, 0.013991070911288261, 0.03817768022418022, 0.02882383018732071, -0.0012545909266918898, -0.003063028212636709, 0.03049132414162159, 0.001128536299802363, 0.002199504291638732, 0.002288834424689412, 0.012736480683088303, 0.0145389623939991, 0.018437722697854042, -0.0013796529965475202, -0.03354045748710632, -0.014967747032642365, 0.013371716253459454, -0.0003483871987555176, 0.027902737259864807, 0.00688039930537343, -0.006689828354865313, -0.008305709809064865, 0.011188092641532421, -0.0177230816334486, -0.0007220846018753946, -0.0063285380601882935, -0.0006362284766510129, 0.006566751282662153, -0.01010025106370449, 0.004907197784632444, 0.0022669981699436903, -0.03570025786757469, 0.015388590283691883, 0.021169237792491913, -0.004458562005311251, 0.020359311252832413, -0.019009435549378395, -0.014578664675354958, 0.015404471196234226, 0.014602486044168472, 0.009250623174011707, -0.013308192603290081, -0.002098263707011938, 0.0015096778515726328, -0.00268784211948514, -0.00537568423897028, -0.02282085083425045, -0.018358318135142326, 0.00737270712852478, -0.005935485940426588, 0.019215887412428856, -0.005534492898732424, 0.020565763115882874, 0.029157329350709915, 0.0023722092155367136, 0.00253697345033288, 0.0005116626853123307, -0.002705708146095276, 0.009353849105536938, 0.03125360608100891, -0.011577174998819828, -0.009750871919095516, 0.013641691766679287, -0.012665016576647758, 0.002441688207909465, 0.03134889155626297, -0.016325563192367554, 0.01196625642478466, 0.0008312657591886818, 0.02342432551085949, -0.026012910529971123, -0.00010825065692188218, -0.007467992603778839, 0.009107694961130619, 0.007865014486014843, 0.0044426810927689075, -0.020470477640628815, -0.003908685874193907, 0.025584127753973007, -0.02715633623301983, -0.000889330287463963, -0.03226998448371887, 0.022757327184081078, -0.02180447243154049, -0.019803479313850403, 0.013538465835154057, -0.013800500892102718, 0.001572208944708109, 0.0012168738758191466, 0.018437722697854042, 0.0010878415778279305, 0.0037816388066858053, -0.018802983686327934, -0.011886851862072945, -0.03671663627028465, -0.026679908856749535, -0.01943822018802166, -0.016690824180841446, -0.021740948781371117, 0.018390079960227013, 0.005609927233308554, 0.013228788040578365, -0.011799507774412632, -0.02029578760266304, -0.001088834134861827, 0.03306403011083603, 0.014777176082134247, -0.025758817791938782, -0.023440206423401833, -0.0022054596338421106, -0.03236526995897293, -0.004661043640226126, -8.266131771961227e-06, -0.007956329733133316, 0.0022769237402826548, 0.013530525378882885, -0.016071468591690063, 0.005069976672530174, 0.015007448382675648, -0.0010828787926584482, -0.001137469313107431, -0.02240794710814953, -0.0010019853943958879, -0.011148390360176563, 0.0354461632668972, -0.04338661581277847, -0.009036230854690075, -0.02494889125227928, 0.014261046424508095, 0.024599511176347733, -0.019072959199547768, -0.021137475967407227, -0.027553359046578407, 0.011521591804921627, 0.012665016576647758, -0.02282085083425045, -0.008504221215844154, 0.019660551100969315, -0.023265516385436058, -0.000572208606172353, -0.03079306147992611, -0.011370723135769367, -0.018056580796837807, 0.012045660987496376, 0.002272953512147069, 0.030046658590435982, 0.05085063725709915, -0.01807246170938015, 0.009814395569264889, -0.0003188586561009288, 0.005832260008901358, 0.00131315179169178, -0.01696079969406128, -0.003541440237313509, -0.004236229695379734, 0.02054988220334053, -0.0008431764435954392, -0.013752858154475689, 0.013530525378882885, -0.010457571595907211, 0.006368240341544151, 0.05301043763756752, -0.010036727413535118, -0.0061062052845954895, -0.004533996339887381, -0.031190084293484688, 0.013332013972103596, -0.007880895398557186, -0.012887349352240562, -0.0037300260737538338, -0.014229284599423409, 0.019771717488765717, 0.012101244181394577, -0.002096278592944145, 0.005987098440527916, 0.006983624771237373, -0.010290822014212608, 0.003200001083314419, 0.002294789766892791, -0.011116628535091877, -0.006864518392831087, -0.024297773838043213, 0.01102928351610899, -0.005030274391174316, -0.013951368629932404, -0.0012248143320903182, 0.03423921763896942, -0.03843177482485771, -0.010394047945737839, 0.029062043875455856, -0.004347396083176136, 0.013260549865663052, 0.017246656119823456, -0.012839706614613533, -0.031110679730772972, -0.0068565779365599155, 0.02358313463628292, 0.0009593055001460016, 0.010814892128109932, -0.0011493799975141883, 0.01391166727989912, 0.02231266163289547, 0.0006292805774137378, 0.03196824714541435, 0.024551868438720703, 0.021693307906389236, 0.013586108572781086, -0.02585410140454769, 0.005141440778970718, -0.006376180797815323, 0.001457072445191443, 0.007654592860490084, -0.019867002964019775, -0.011156330816447735, -0.02150273695588112, -0.00012878415873274207, 0.005034244619309902, -0.02984020859003067, -0.0009806454181671143, 0.0005404468392953277, 7.400746835628524e-05, -0.010076429694890976, -0.019978169351816177, -0.005915634799748659, 0.03079306147992611, 0.005133500322699547, -0.0022789088543504477, -0.014634247869253159, 0.004494294058531523, 0.014213403686881065, -0.024726558476686478, 0.007777669932693243, 0.006336478516459465, -0.025965267792344093, 0.004271961748600006, -0.02024814486503601, 0.014713652431964874, -0.015483875758945942, 0.007960299961268902, 0.006669977214187384, -0.022439708933234215, -0.010529035702347755, 0.0012079408625140786, 0.02256675623357296, -0.009806455112993717, 0.011751865036785603, 0.008623328059911728, 0.0007553352043032646, 0.012021839618682861, 0.006122086197137833, -0.011831269599497318, -0.019612910225987434, 0.0067096794955432415, 0.009584122337400913, -0.016031766310334206, -0.007591069210320711, 0.00989379920065403, 0.0558372363448143, 0.014213403686881065, 0.019549386575818062, 0.019565267488360405, 0.01600000448524952, 0.0044069490395486355, -0.003440199652686715, 0.029395543038845062, 0.035414401441812515, -0.014324570074677467, 0.007741937879472971, -0.0039702244102954865, -0.013379656709730625, -0.0074918135069310665, -0.022995540872216225, 0.02251911349594593, -0.0007106701959855855, -0.008123079314827919, -0.014261046424508095, 0.03554144874215126, 0.02059752494096756, 0.0028446658980101347, -0.006126056425273418, 0.025838220492005348, 0.00040992567664943635, 0.016484372317790985, 0.0024297775235027075, 0.010179655626416206, 0.024408940225839615, -0.0042282892391085625, -0.008416876196861267, -0.013538465835154057, 0.010394047945737839, 0.0030372217297554016, -0.0025091818533837795, 0.01133102085441351, -0.010386107489466667, 0.01434045098721981, -0.011799507774412632, 0.004839703906327486, -0.00034317627432756126, 0.011092807166278362, 0.029649637639522552, -0.0006461540469899774, -0.019454101100564003, -0.006054592318832874, 0.007559307385236025, -0.0026342440396547318, 0.015261542983353138, -0.02782333455979824, -0.021312166005373, -0.01403077319264412, -0.0020218368154019117, 0.007551366928964853, -0.0010848639067262411, -0.019676432013511658, -0.024202488362789154, -0.021216880530118942, 0.006368240341544151, -0.005935485940426588, -0.007745908107608557, 0.012426802888512611, -0.01878710277378559, -0.03180943801999092, 0.0001803970808396116, -0.033000506460666656, -0.022392066195607185, 0.0014074445934966207, -0.011013402603566647, -0.0019394546980038285, -0.015158317051827908, 0.009393551386892796, 0.006276925094425678, -0.024758320301771164, 0.011569234542548656, 0.028696782886981964, -0.0022233256604522467, 0.014705711975693703, 0.003138462547212839, -0.012125065550208092, -0.023344920948147774, -0.006340448744595051, 0.011505710892379284, -0.009830275550484657, -0.0006446652114391327, 0.010314643383026123, 0.015817373991012573, -0.006268984638154507, 0.0008317620377056301, -0.007976180873811245, -0.00319404574111104, -0.02266204170882702, -0.005058065988123417, 0.023344920948147774, 0.00032679911237210035, -0.003962283954024315, -0.012402981519699097, -0.009854096919298172, 0.03760596737265587, 0.0013707199832424521, -0.00368635356426239, 0.010259060189127922, -0.001226799446158111, 0.011188092641532421, 0.01579355262219906, -0.0016803975449874997, 0.006118115969002247, 0.001730025396682322, 0.0029598025139421225, 0.007996032014489174, -0.0018600502517074347, -0.02534591406583786, -0.018151866272091866, 0.012228291481733322, -0.006233252584934235, 0.0007920598145574331, 0.0034997528418898582, -0.017707200720906258, -0.002743425080552697, 0.004426800180226564, -0.006666006986051798, 0.011974196881055832, -0.00400000112131238, 0.01423722505569458, 0.002898263977840543, 0.006447644904255867, -0.013069978915154934, -0.016929037868976593, -0.025012414902448654, -0.005335981957614422, 0.02256675623357296, -0.0032516138162463903, 0.0049905721098184586, -0.0076585630886256695, 0.009330027736723423, -0.009028290398418903, 0.013062038458883762, -0.01299851480871439, 0.02479008212685585, -0.018548889085650444, 0.00838511437177658, 0.010918117128312588, 0.0177230816334486, 0.02297965995967388, -0.012506207451224327, 0.0023225813638418913, 0.007793550845235586, -0.03557321056723595, -0.0022253107745200396, 0.008162781596183777, 0.04027395695447922, -0.008607447147369385, 0.0011861046077683568, -0.004661043640226126, 0.00032853608718141913, -0.005518611986190081, -0.01904119737446308, 0.011743924580514431, -0.00532804150134325, -0.013212907128036022, 0.014824818819761276, -0.020883381366729736, -0.00976675283163786, -0.009472955949604511, -0.006447644904255867, 0.0010501244105398655, 0.002485360484570265, 0.024567749351263046, 0.016881395131349564, -0.007606950122863054, -0.021645665168762207, -0.0048079420812428, 0.017881890758872032, -0.025234747678041458, 0.0060506220906972885, -0.0025508692488074303, 0.012990574352443218, 0.010910176672041416, -0.016992561519145966, 0.021883876994252205, 0.01040198840200901, 0.002463524229824543, -0.013030276633799076, 0.011450127698481083, -0.024202488362789154, -0.006149877794086933, 0.019454101100564003, -0.0029260555747896433, -0.008512161672115326, -0.0125697311013937, -0.00012332509504631162, 0.016992561519145966, -0.007888835854828358, -0.005598016548901796, -0.017850128933787346, 0.009234742261469364, -0.008051615208387375, 0.018548889085650444, 0.0015017373953014612, -0.003839207114651799, 0.0003987594391219318, -0.010783130303025246, 0.006411912851035595, 0.0062531037256121635, -0.01918412558734417, -0.023948393762111664, -0.013744917698204517, -0.002294789766892791, -0.022852612659335136, 0.019120601937174797, -0.012990574352443218, -0.015444173477590084, 0.0008332508732564747, 0.003315137466415763, -0.014205463230609894, 0.001173201366327703, 0.007825312204658985, 0.009814395569264889, 0.019072959199547768, -0.0017141444841399789, 0.006741441320627928, 0.005812408868223429, -0.001701241242699325, -0.012736480683088303, 0.010814892128109932, 0.0116406986489892, 0.012680897489190102, -0.0067652626894414425, 0.01816774718463421, 0.0001323821779806167, 0.01777072437107563, 0.0026024822145700455, -0.00043870980152860284, -0.004454591777175665, -0.002991564106196165, 0.03836825117468834, 0.026124076917767525, 0.025361794978380203, 0.006943922955542803, -0.010108191519975662, -0.015825314447283745, 0.008559804409742355, -0.019422339275479317, -0.01897767372429371, 0.0015215885359793901, -0.005006453022360802, 0.00858362577855587, -0.010386107489466667, -0.0021697278134524822, -2.7202242563362233e-05, 0.011275437660515308, -0.00994938239455223, -0.002767246449366212, 0.00603077095001936, 0.019819360226392746, 0.014697771519422531, -0.004105212166905403, -0.005339952185750008, 0.0031126560643315315, -0.02210620976984501, 0.002306700451299548, -0.004220348782837391, -0.01846948452293873, -0.017643677070736885, 0.03735187277197838, 0.00858362577855587, 0.00440297881141305, 0.021772710606455803, -0.01893003098666668, -0.0033727057743817568, 0.010211417451500893, -0.012410921975970268, -0.002019851701334119, 0.01340347807854414, 0.007670473773032427, -0.003668487537652254, 0.02609231509268284, -0.012323576956987381, 0.002102233935147524, 0.019565267488360405, 0.004311664029955864, -0.0031146411783993244, 0.02671167068183422, -0.042941950261592865, 0.006018860265612602, -0.011116628535091877, -0.004101241938769817, 0.012148886919021606, 0.005510671529918909, 0.030332515016198158, -0.0011652609100565314, -0.02124864235520363, 0.014070475473999977, 0.013824322260916233, -0.0034124080557376146, 0.011164271272718906, 0.0029598025139421225, 0.011013402603566647, 0.014221344143152237, 0.001439206418581307, -0.009282384999096394, -0.006848637480288744, 0.003704219590872526, -0.018707698211073875, 0.04840497672557831, -0.009202980436384678, -0.00419255718588829, 0.005951366387307644, 0.005840200465172529, 0.014403974637389183, -0.004371217451989651, -0.0019086854299530387, 0.0048357336781919, -0.0029439216013997793, 0.002977668307721615, 0.001938462140969932, -0.014991567470133305, 0.035668496042490005, -0.019914645701646805, 0.0038729540538042784, 0.003160298801958561, -0.011728043667972088, 0.013339954428374767, 0.0077895806171, -0.005844170693308115, 0.007031267508864403, -0.006122086197137833, 0.017596034333109856, -8.542185969417915e-05, -0.026473456993699074, 0.007702235598117113, -0.007730027195066214, -0.0073687369003891945, -0.026235243305563927, 0.007384617812931538, 0.014451617375016212, -0.00031191075686365366, 0.0012208441039547324, -0.017294298857450485, -0.005526552442461252, -0.011013402603566647, 0.02064516767859459, -0.012514147907495499, 0.0027156334836035967, 0.013641691766679287, 0.013824322260916233, 0.012982633896172047, -0.020629286766052246, -0.01070372574031353, 0.008575685322284698, 0.013395537622272968, -0.00792456790804863, -0.0058163790963590145, 0.005776676815003157, -0.005879902746528387, 0.005169232375919819, -0.002572705503553152, 0.010417869314551353, -0.03484269231557846, -0.012585612013936043, -0.0005568239721469581, 0.016293801367282867, -0.012855587527155876, -0.008266007527709007, 0.02544119954109192, 0.018914150074124336, 0.006602483335882425, 0.007086850702762604, -0.04125857353210449, -0.02215385250747204, 0.0106560830026865, 0.018390079960227013, -0.006074443459510803, -0.021534498780965805, -0.0057607959024608135, 0.021026309579610825, -0.007237719371914864, 0.015340947546064854, -0.012085363268852234, 0.0007915635360404849, 0.019072959199547768, 0.0009861044818535447, -0.004962780512869358, -0.012005958706140518, 0.011712162755429745, -0.003390571800991893, 0.02620348148047924, 0.01973995566368103, -0.0030213408172130585, 0.001068982994183898, -0.0024119114968925714, 0.005292309448122978, 0.02085161954164505, -0.00989379920065403, 0.018183628097176552, 0.012148886919021606, -0.011124568991363049, 0.006983624771237373, -0.014531021937727928, 0.0018600502517074347, -0.00742034986615181, -0.0010808936785906553, 0.009695288725197315, 0.006018860265612602, 0.019914645701646805, -0.02872854471206665, 0.02580646052956581, 0.0006516131106764078, 0.015610923059284687, -0.0008481392287649214, -0.00946501549333334, -0.006578661967068911, -0.013395537622272968, -0.011188092641532421, 0.0005627793143503368, 0.009218861348927021, -0.015515637584030628, -0.019072959199547768, 0.018660055473446846, -0.008472459390759468, 0.017850128933787346, -0.017246656119823456, 0.008543923497200012, -0.023170230910182, -0.0018838715041056275, 0.023106707260012627, 0.03468388319015503, 0.007920597679913044, -0.010012906044721603, -0.019930526614189148, -0.012649135664105415, -0.013641691766679287, 0.005264517851173878, 0.025917625054717064, -0.006797024514526129, 0.0011404469842091203, 0.012331517413258553, -0.026314647868275642, 0.007960299961268902, 0.002272953512147069, -0.0038114155177026987, 0.0030967751517891884, 0.002453598892316222, 0.01670670509338379, 0.007968240417540073, 0.018437722697854042, 0.003065013326704502, 0.02191563881933689, 0.003726055845618248, -0.028188593685626984, -0.013713155873119831, 0.008345412090420723, -0.009298265911638737, 0.014308689162135124, -0.028347402811050415, -0.02180447243154049, -0.020105216652154922, 0.01973995566368103, 0.006527049001306295, -0.004367247223854065, 0.0012168738758191466, 0.0029379662591964006, 0.0034501252230256796, 0.018612412735819817, -0.0011543427826836705, 0.019104721024632454, 0.028807949274778366, 0.015682386234402657, -0.015515637584030628, -0.008996528573334217, -0.017548393458127975, 0.020724572241306305, -0.0028109189588576555, -0.009663526900112629, 0.0002965261519420892, 0.017532512545585632, 0.007178165949881077, -0.028585616499185562, 0.010743428021669388, -0.0036744428798556328, -0.008504221215844154, -0.0077141462825238705, 0.0064873467199504375, 0.007932508364319801, 0.022201495245099068, -0.026219362393021584, 0.005796527955681086, 0.02872854471206665, -0.022042686119675636, 0.04176676273345947, 0.0039047158788889647, 0.009282384999096394, -0.00613399688154459, 0.013729036785662174, 0.00424019992351532, 0.004645162727683783, 0.012029780074954033, 0.012839706614613533, 0.00873449444770813, -0.00638809148222208, -0.016690824180841446, 0.002838710555806756, 0.006888339761644602, 0.008297769352793694, 0.003912656102329493, -0.018961792811751366, -0.007408439181745052, 0.021328046917915344, 0.018660055473446846, -0.006443674676120281, 0.004617371130734682, -0.003948388155549765, -0.0028704723808914423, 0.005534492898732424, 0.0018401991110295057, 0.023503730073571205, 0.015722088515758514, 0.00916327815502882, 0.0013598018558695912, 0.000838213658425957, 0.016127051785588264, -0.03287345916032791, -0.009250623174011707, -0.0009523576009087265, -0.01522184070199728, 0.008297769352793694, 0.02493301033973694, 0.025774698704481125, 0.001532506663352251, 0.0006406949833035469, -0.017278417944908142, -0.00021240701607894152, 0.0018114149570465088, 0.001297270879149437, 0.0021697278134524822, 0.02185211516916752, 0.0036942940205335617, 0.01025111973285675, 0.01050521433353424, -0.010870474390685558, 0.001723077497445047, 0.002949876943603158, 0.008885362185537815, 0.004355336539447308, -0.02166154608130455, -0.013840203173458576, 0.01610323041677475, -0.004653103183954954, 0.026568742468953133, -0.007868984714150429, -0.008718613535165787, 0.004109182395040989, 0.0016228292370215058, 0.011219854466617107, -0.015587101690471172, -0.022137971594929695, -0.018993554636836052, 0.0251394622027874, 0.010473452508449554, 0.011378663592040539, 0.001967246178537607, -0.009798514656722546, 0.005756825674325228, -0.015285364352166653, -0.01640496775507927, 0.0033925569150596857, 0.016166754066944122, 0.012434743344783783, -0.008119109086692333, 0.01237121969461441, -0.010846653953194618, 0.01365757267922163, -0.02666402794420719, -0.007626801263540983, -0.0013488838449120522, -0.011815388686954975, -0.015293304808437824, 0.0005081887356936932, 0.010576678439974785, -0.017024323344230652, 0.0010610425379127264, -0.01029876247048378, -0.0224714707583189, -0.013951368629932404, 0.007003475911915302, 0.02054988220334053, -0.01403077319264412, -0.0028129040729254484, -0.00620943121612072, -0.016881395131349564, -0.005236726254224777, -0.014094296842813492, 0.0034838721621781588, -0.02337668277323246, 0.009862037375569344, 0.0015831270720809698, -0.005482879932969809, 0.005657569970935583, -0.004029777832329273, -0.011648639105260372, 0.003458065679296851, 0.012379160150885582, -0.014292808249592781, 0.009488836862146854, -0.008504221215844154, -0.0018124075140804052, 0.018342437222599983, -0.031936485320329666, -0.008051615208387375, -0.013752858154475689, 0.02145509421825409, -0.020057573914527893, 0.039162296801805496, 0.0015047150664031506, -0.004220348782837391, -0.0020565763115882874, 0.0088615408167243, -0.001277419738471508, 0.01403077319264412, -0.009441194124519825, -0.02105807140469551, -0.009457075037062168, 0.006610423792153597, -0.0014114148216322064, -0.0020218368154019117, 0.012458564713597298, -0.011593055911362171, 0.015817373991012573, 0.010767249390482903, -0.011942435055971146, -0.0002119107375619933, -0.01893003098666668, 0.0008431764435954392, -0.006443674676120281, -0.012895289808511734, -0.011307199485599995, -0.024250131100416183, -0.0030034747906029224, -0.0009717124630697072, -0.005506701301783323, -0.015086852945387363, -0.01098164077848196, 0.00822630524635315, 0.006828786339610815, 0.014634247869253159, -0.002048635855317116, 0.014380153268575668, -0.014634247869253159, -0.017278417944908142, 0.011704222299158573, -0.017389584332704544, 0.0050461553037166595, 0.001730025396682322, 0.014761295169591904, 0.011529532261192799, 0.0009280400117859244, -0.0030967751517891884, -0.009774693287909031, -0.015110674314200878, -0.009401491843163967, -0.02752159722149372, -0.031015394255518913, -8.021094254218042e-05, 0.00574491498991847, 0.00761092035099864, -0.007837222889065742, 0.01206948235630989, 0.013498763553798199, -0.01143424678593874, -0.00753548601642251, -0.007205957546830177, -0.015134495683014393, 0.0062729548662900925, 0.014920104295015335, -0.006812905427068472, -0.013324073515832424, 0.016389086842536926, -0.003235732903704047, -0.015086852945387363, -0.03887644037604332, -0.006491316948086023, -0.0006267991848289967, -0.024551868438720703, -0.01484069973230362, -1.5562969565507956e-05, 0.007086850702762604, -0.0037975197192281485, -0.007380647584795952, -0.009989084675908089, 0.01226799376308918, -0.007654592860490084, -0.019152363762259483, 0.0004441688652150333, -0.012458564713597298, 0.0012982634361833334, 0.02599702961742878, -0.00595533661544323, 0.0008362285443581641, -0.012363279238343239, -0.01438809372484684, -0.01620645634829998, -0.025155343115329742, -0.008170722052454948, 0.003839207114651799, 0.005975187756121159, 0.009401491843163967, 0.011648639105260372, 0.019851122051477432, -0.0007022334611974657, -0.0020863530226051807, 0.0014183627208694816, 0.005459058564156294, 0.025218866765499115, 0.004387098364531994, -0.014110177755355835, -0.017199013382196426, -0.0064397044479846954, 0.008146900683641434, -0.012204470112919807, -0.010735487565398216, 0.014372212812304497, -0.00994938239455223, -0.0036109192296862602, 0.01615087315440178, -0.010814892128109932, -0.030078420415520668, 0.019692312926054, -0.004359306767582893, -0.010259060189127922, -0.003741936758160591, -0.004204467870295048, -0.0096158841624856, -0.025981148704886436, 0.009806455112993717, 0.001769727561622858, -0.020232263952493668, 0.004418859723955393, -0.017278417944908142, 0.015364768914878368, 0.014650128781795502, -0.0035652616061270237, -0.021042190492153168, -0.00817866250872612, 0.008750375360250473, 0.037987109273672104, 0.003839207114651799, 0.011918613687157631, 0.008726553991436958, -0.0075116646476089954, -0.012283874675631523, -0.01989876478910446, -0.009393551386892796, 0.03236526995897293, -0.010481392964720726, 0.014848640188574791, 0.024345416575670242, 0.012927050702273846, -0.0017756829038262367, 0.021423332393169403, 0.016976680606603622, 0.02594938687980175, -0.002840695669874549, -0.00038312666583806276, 0.017897771671414375, -0.0075831287540495396, 0.008162781596183777, 0.010108191519975662, -0.011156330816447735, -0.010870474390685558, 0.015737969428300858, 0.0006803972064517438, -0.010949878953397274, 0.008782136254012585, -0.02256675623357296, -0.009218861348927021, -0.015460054390132427, -0.011068985797464848, -0.007444171234965324, -0.01201389916241169, 0.059902749955654144, 0.002854591468349099, -0.008528042584657669, -0.003859058255329728, 0.01888238824903965, -0.002763276221230626, -0.01443573646247387, 0.01959702931344509, 0.0155235780403018, 0.01287146843969822, -0.0013270475901663303, 0.01019553653895855, -0.0034004973713308573, -0.011116628535091877, -0.011759805493056774, 0.023837227374315262, 0.004140944220125675, 0.011593055911362171, -0.009258563630282879, -0.008948885835707188, -0.0037300260737538338, 0.014570724219083786, 0.0005106701282784343, 0.007591069210320711, 0.0005796527839265764, -0.01376079861074686, 0.017945414409041405, -0.004696775693446398, 0.01883474551141262, 0.011926554143428802, 0.024647153913974762, -0.014602486044168472, -0.0088059576228261, -0.02736278809607029, 0.0016069484408944845, -0.0006669977447018027, -0.005574195180088282, -0.005729034077376127, 0.00549082038924098, -0.0034282889682799578, -0.00792456790804863, -0.011680400930345058, 0.012903230264782906, 0.016532015055418015, -0.012275934219360352, -0.03265112638473511, -0.008353352546691895, 0.007817371748387814, 0.00994938239455223, -0.018008938059210777, 0.003934492357075214, 0.008774196729063988, -0.00488337641581893, -0.009846156463027, 0.009512658230960369, 0.01345906127244234, -0.006610423792153597, -0.008670970797538757, -0.019057078287005424, -0.011196033097803593, 0.0019682387355715036, -0.0003086849465034902, -0.01489628292620182, 0.012537969276309013, 0.006276925094425678, -0.006467495579272509, 0.013562287203967571, 0.0008888340089470148, 0.004307693801820278, -0.020565763115882874, -0.015142436139285564, 0.0029081895481795073, 0.019025316461920738, 0.0009121590992435813, 0.010306702926754951, -0.006126056425273418, 0.017707200720906258, -0.01305409800261259, -0.01626203954219818, -0.0018898268463090062, -0.010092310607433319, 0.028204474598169327, -0.006574691738933325, 0.016976680606603622, -0.007027297280728817, -0.0075831287540495396, -0.0019851122051477432, -0.027902737259864807, 0.004053599201142788, 0.005701242480427027, 0.0044625322334468365, -0.0021816384978592396, -0.002135980874300003, -0.002177668269723654, 0.030618371441960335, -0.007186106406152248, 0.019072959199547768, 0.011815388686954975, -0.009218861348927021, -0.023265516385436058, -0.004275931976735592, -0.01610323041677475, 0.001042183954268694, 0.010441690683364868, 0.012903230264782906, 0.003724070731550455, -0.02054988220334053, 0.009449134580790997, 0.021931519731879234, 0.009576181881129742, 0.040051624178886414, 0.013077919371426105, 0.012545909732580185, 0.006574691738933325, -0.014832759276032448, 0.011156330816447735, 0.00458163907751441, 0.029999015852808952, -0.0031285369768738747, -0.009655586443841457, -0.002217370318248868, 0.00033771723974496126, 0.002274938626214862, -0.013784619979560375, -0.019025316461920738, -0.005093798041343689, -0.0036962791346013546, -0.03155534341931343, 0.007098761387169361, -0.017230775207281113, 0.02363077737390995, -0.014006951823830605, -6.147644307930022e-05, -0.015031269751489162, -0.018056580796837807, 0.00921092089265585, 0.0022987599950283766, 0.013800500892102718, -0.035255592316389084, -0.01484069973230362, -0.031110679730772972, -0.032841697335243225, -0.0078769251704216, -0.003084864467382431, 0.009830275550484657, -0.0001806452200980857, 0.00813101977109909, -0.011156330816447735, 0.02494889125227928, 0.010949878953397274, 0.0005205956986173987, 0.0071662552654743195, -0.00901240948587656, -0.0025607948191463947, -0.0053240712732076645, -0.007654592860490084, 0.005522582214325666, -0.018866507336497307, 0.005736974533647299, 0.0028327552136033773, 0.0038550880271941423, 0.028458569198846817, 0.011799507774412632, -0.024901248514652252, -0.010814892128109932, -0.009663526900112629, 0.005105708725750446, 0.013109681196510792, -0.006431763991713524, -0.025012414902448654, -0.003599008545279503, -0.010830773040652275, 0.004446651320904493, 0.0074044689536094666, -0.0045736986212432384, -0.0019374695839360356, 0.003408437827602029, -0.02020050212740898, -0.014904223382472992, -0.021312166005373, 0.002818859415128827, 0.011338961310684681, -0.004633252043277025, 0.011894792318344116, -0.009449134580790997, 0.01138660404831171, -0.017183132469654083, 0.01365757267922163, -0.015444173477590084, -0.014149880036711693, 0.02034343034029007, 0.004871465731412172, 0.00476029934361577, -0.0036605470813810825, 0.012966752983629704, 0.018517127260565758, 0.03881291672587395, 0.0009677422349341214, 0.005661540199071169, -0.03468388319015503, 0.012283874675631523, -0.012506207451224327, 0.004085361026227474, 0.014721592888236046, -0.004148884676396847, 0.0027394548524171114, -0.0035553360357880592, -0.005332011729478836, 0.009957322850823402, 0.011243675835430622, -0.012696778401732445, -0.005343922413885593, 0.004180646501481533, -0.007321094162762165, 0.006749381776899099, -0.010791070759296417, -0.025218866765499115, 0.019628791138529778, 0.0075473967008292675, -0.012005958706140518, 0.012712659314274788, 0.012133006006479263, 0.012800004333257675, -0.01848536543548107, 0.00340248248539865, 0.003984120208770037, -0.005987098440527916, -0.011998018249869347, -0.009933501482009888, -0.03500150144100189, 0.019914645701646805, 0.02043871581554413, -0.0017081891419366002, -0.01883474551141262, -0.013339954428374767, -0.008528042584657669, -0.012641195207834244, 0.0006655089091509581, 0.009330027736723423, 0.016095289960503578, 0.021026309579610825, 0.006769232917577028, 0.014006951823830605, 0.004950869828462601, 0.0008049630559980869, -0.016627300530672073, 0.0017468987498432398, -0.00011625314073171467, 0.003293301211670041, 0.02615583874285221, -0.008718613535165787, -0.0033012416679412127, -0.004962780512869358, -0.004986601881682873, -0.011251616291701794, -0.0008898265659809113, 0.0005761788343079388, -0.02993549406528473, 0.014713652431964874, -0.003174194600433111, 0.003807445289567113, 0.003992060665041208, -0.028029784560203552, -0.003710174933075905, 0.026632266119122505, -0.020534001290798187, -0.0073131537064909935, 0.01686551421880722, -0.010513154789805412, 0.008567744866013527, 0.008917124010622501, -0.023059064522385597, -0.031126560643315315, -0.0028347403276711702, 0.017341941595077515, -0.0034004973713308573, 0.0018471470102667809, -0.031571224331855774, -0.006947893183678389, 0.014729533344507217, 0.02650521881878376, 0.005522582214325666, 0.006959803868085146, -0.009290325455367565, -0.014126058667898178, 0.0009712161845527589, -0.01913648284971714, -0.004784120712429285, -6.929282244527712e-05, 0.017056085169315338, 0.02407544106245041, -0.008726553991436958, 0.0016049633268266916, 0.0264099333435297, 0.0025846161879599094, -0.00025756831746548414, 0.0033429290633648634, -0.0001965261180885136, 0.004680894780904055, -0.009854096919298172, -0.010997521691024303, 0.006026800721883774, -0.012490326538681984, -0.007777669932693243, 0.010521095246076584, 0.00033275445457547903, -0.0011950376210734248, 0.01908884011209011, 0.0011037223739549518, 0.006721590179949999, -0.010918117128312588, 0.011196033097803593, -0.03392159938812256, 0.005637718830257654, -0.0012059557484462857, 0.004907197784632444, -0.0005518611869774759, 0.01168834138661623, 0.01625409908592701, -0.0055940463207662106, -0.002439703093841672, -0.010386107489466667, -0.001020347699522972, 0.0023702241014689207, -0.02998313494026661, 0.015531518496572971, 0.0010253104846924543, -0.010965759865939617, -0.003944417927414179, -0.025472961366176605, -0.01791365258395672, -0.00047468996490351856, 0.004633252043277025, 0.00837717391550541, -0.004033748060464859, 0.007261540740728378, 0.0049905721098184586, 0.0017379658529534936, 0.010830773040652275, 0.007007446140050888, 0.0020387102849781513, 0.01989876478910446, 0.0075473967008292675, -0.008758315816521645, 0.011227794922888279, -0.01816774718463421, 0.009989084675908089, 0.005117619410157204, -0.015317126177251339, -0.02115335687994957, 0.010695785284042358, -0.012045660987496376, -0.005800498183816671, 0.015436233021318913, -0.0036625321954488754, 0.01867593638598919, 0.00734491553157568, 0.028998520225286484, -0.005875932518392801, 0.0063642701134085655, -0.010378167033195496, 0.013951368629932404, -0.006824816111475229, 0.009441194124519825, -0.016627300530672073, 0.015595042146742344, -0.007678414229303598, -0.007082880474627018, 0.011458068154752254, 0.01596030220389366, 0.008678911253809929, -0.0031523583456873894, -0.004637222271412611, 0.01295087207108736, 0.003122581634670496, 0.02124864235520363, -0.013093800283968449, -0.0384635366499424, 0.028855592012405396, -0.019771717488765717, 0.004978661425411701, 0.011942435055971146, -0.012109184637665749, -0.012323576956987381, 0.010719606652855873, -0.0027791571337729692, 0.02660050429403782, -0.030364276841282845, -0.013713155873119831, 0.0007950374856591225, -0.0013250624760985374, -0.015301245264708996, -0.018914150074124336, -0.002799008274450898, -0.0004952854942530394, -0.01241886243224144, 0.01391166727989912, 0.00807543657720089, 0.0015116629656404257, -0.0018153851851820946, -0.01827891357243061, -0.03169827163219452, -0.007063029333949089, 0.004744418431073427, -0.015587101690471172, -0.013387597166001797, -0.0002769231505226344, 0.00571712339296937, -0.00999702513217926, 0.013681394048035145, 0.0013617869699373841, 0.006872458849102259, 0.0009121590992435813, -0.021042190492153168, 0.005931515712291002, -0.011148390360176563, -0.009195039980113506, -0.01711960881948471, 0.0037736983504146338, 0.014126058667898178, 0.015483875758945942, -0.003049132414162159, 0.002294789766892791, 0.03141241520643234, 0.012291815131902695, -0.019152363762259483, 0.0045538474805653095, 0.0013955339090898633, -0.023662539198994637, 0.013752858154475689, 0.007471962831914425, -0.007114642299711704, -0.008694792166352272, -0.00023684870393481106, -0.015348888002336025, -0.0077141462825238705, 0.0045736986212432384, -0.027092812582850456, 0.012029780074954033, 0.009806455112993717, -0.0003166254027746618, 0.0040238224901258945, 0.012839706614613533, -0.013713155873119831, -0.027839215472340584, 0.02372606284916401, 0.018501246348023415, -0.013427299447357655, -0.019469982013106346, -0.0031344923190772533, -0.001279404852539301, -0.01943822018802166, -0.0021598022431135178, 0.004712656605988741, -0.0012238217750564218, -0.010767249390482903, 0.013721096329391003, 0.004148884676396847, 0.03109479881823063, -0.02984020859003067, -0.014300748705863953, -0.028204474598169327, 0.0015454099047929049, 0.0014719608006998897, 0.006292806006968021, -0.0329052209854126, 0.005609927233308554, -0.00805558543652296, -0.011593055911362171, -0.013141443021595478, -0.019469982013106346, 0.01201389916241169, 0.0033727057743817568, 0.0018908194033429027, 0.008408935740590096, 0.015563280321657658, -0.0044426810927689075, -0.0053042201325297356, -0.01267295703291893, -0.023789584636688232, 0.007205957546830177, -0.01635732501745224, -0.0010039705084636807, 0.010854593478143215, 0.0030233259312808514, -0.005407446064054966, 0.0023344920482486486, -0.003710174933075905, -0.009242682717740536, 0.02221737615764141, 0.011323080398142338, -0.017024323344230652, -0.002193549182265997, -0.00011246901703998446, -0.023313159123063087, -0.0009186107199639082, -0.002799008274450898, 0.010132012888789177, 0.011267497204244137, -0.011426306329667568, 0.0019305216846987605, -0.006042681634426117, -0.0039047158788889647, -0.015150376595556736, -0.037034254521131516, 0.03053896687924862, 0.011124568991363049, 0.05669480562210083, 0.015245662070810795, 0.0193429347127676, -0.00989379920065403, -0.020264025777578354, -0.02877618744969368, 0.015595042146742344, 0.0076585630886256695, -0.027505716308951378, -0.009600003249943256, 0.013776679523289204, 0.00507394690066576, 0.022042686119675636, -0.003368735546246171, 0.009337968192994595, 0.022550875321030617, -0.005887843202799559, 0.014562783762812614, -0.011021343059837818, 0.019406458362936974, 0.0035156337544322014, -0.011759805493056774, 0.006006949581205845, -0.03490621596574783, 0.02690224163234234, 0.027251621708273888, -0.025711175054311752, -0.024710677564144135, 0.013379656709730625, -0.004482383374124765, 0.007198017090559006, 0.013752858154475689, -0.021470975130796432, 0.024297773838043213, 0.010473452508449554, 0.030713656917214394, -0.003783623920753598, 0.014245165511965752, 0.006018860265612602, -0.010799011215567589, -0.01665906235575676, -0.011497770436108112, 0.002098263707011938, 0.015261542983353138, -0.007797521073371172, 0.005030274391174316, 0.01681787148118019, 0.008512161672115326, -0.025028295814990997, 0.0007598017109557986, 0.014014892280101776, 0.010513154789805412, -0.020152859389781952, -0.003942432813346386, 0.011259556747972965, 0.006963774096220732, -0.003581142518669367, -0.034715645015239716, -0.021185118705034256, -0.0014004966942593455, 0.032841697335243225, -0.014737473800778389, 0.009957322850823402, 0.026060553267598152, -0.008670970797538757, 0.002175683155655861, 0.0009419357520528138, 0.001075930893421173, -0.0008734493749216199, 0.008408935740590096, 0.008599506691098213, 0.0025607948191463947, 0.0013488838449120522, -0.0145945455878973, -0.012903230264782906, -0.02706105075776577, -0.013173204846680164, -0.02140745148062706, -0.012815885245800018, -0.005482879932969809, 0.004962780512869358, -0.0012347397860139608, 0.006280895322561264, -0.01716725155711174, -0.007190076634287834, -0.0015602982603013515, 0.012402981519699097, 0.005181143060326576, 0.0034382145386189222, -0.015785612165927887, -0.039448149502277374, 0.010735487565398216, -0.0002791564038489014, 0.016849633306264877, 0.021629784256219864, -0.014443676918745041, -0.013935488648712635, 0.016690824180841446, 0.0062729548662900925, 0.00032233260571956635, -0.014832759276032448, 0.017453107982873917, -0.006582632195204496, 0.01206154190003872, 0.01619851589202881, -0.015666505321860313, -0.01661141961812973, -0.021375689655542374, 0.008039704523980618, -0.005002482794225216, -0.0012913155369460583, -0.0015007448382675648, -0.025472961366176605, 0.009711169637739658, -0.0008645164198242128, 0.0057250638492405415, 0.04221142828464508, 0.008575685322284698, 0.018215389922261238, 0.023789584636688232, -0.012577671557664871, 0.019819360226392746, 0.015031269751489162, -0.009425313211977482, 0.01620645634829998, -0.010949878953397274, 0.017993057146668434, 0.010338464751839638, -0.021772710606455803, 0.0116406986489892, -0.0035295295529067516, -0.014721592888236046, 0.022026805207133293, 0.010132012888789177, -0.023567253723740578, 0.0051215896382927895, 0.01983524113893509, 0.02666402794420719, -0.0015136480797082186, -0.009091814048588276, -0.001106700045056641, 0.047833263874053955, 0.013244668953120708, -0.010267000645399094, 0.008782136254012585, -0.0036605470813810825, -0.002308685565367341, 0.013864024542272091, 0.014800997450947762, 0.012974693439900875, -0.014729533344507217, -0.015888838097453117, -0.01677022874355316, 0.0029796534217894077, -0.012101244181394577, -0.0027732017915695906, -0.004450621549040079, 0.019422339275479317, -0.014785116538405418, -0.01108486671000719, -0.004450621549040079, -0.0027553357649594545, 0.018802983686327934, 0.021995043382048607, 0.0024516137782484293, 0.0013866008957847953, -0.013395537622272968, 0.014006951823830605, -0.0021875938400626183, -0.0032873458694666624, -0.010640202090144157, -0.011354842223227024, 0.0008813898311927915, -0.016325563192367554, -0.0033766760025173426, 0.0012009929632768035, 0.008607447147369385, 0.00514938123524189, -0.005081887356936932, 0.010338464751839638, -0.006789084058254957, 0.016579657793045044, 0.017961295321583748, 0.005351862870156765, -0.012434743344783783, -0.011299259029328823, 0.008242186158895493, 0.017580153420567513, 0.006356329657137394, -0.006086354143917561, -0.003162283916026354, 0.005999009124934673, -0.013951368629932404, -0.018866507336497307, -0.029093805700540543, 0.021979162469506264, 0.00838511437177658, -0.02358313463628292, -0.020661048591136932, -0.0016009930986911058, 0.003861043369397521, 0.015436233021318913, 0.0019126556580886245, -0.008099257946014404], "c11bd073-d374-4e7a-8539-38569a04d1ad": [-0.028077000752091408, -0.03365706652402878, -0.007700194604694843, 0.02482319064438343, -0.006029120180755854, -0.016431009396910667, 0.010460780933499336, 0.022997522726655006, -0.038280125707387924, 0.026266057044267654, 0.01488508004695177, 0.025161821395158768, 0.006180032156407833, -0.018963385373353958, -0.017549965530633926, 0.041725337505340576, -0.0026317588053643703, 0.004818142857402563, 0.01551817450672388, -0.03751452639698982, 0.04352156072854996, -0.036012765020132065, -0.04219647869467735, 0.020568206906318665, 0.030035177245736122, -0.004501595627516508, -0.009091529995203018, 0.01450227852910757, -0.032714784145355225, -0.020965730771422386, -0.022467490285634995, 0.035011593252420425, -0.002421954181045294, -0.010335634462535381, 0.02189328894019127, -0.012507295235991478, 0.004737165756523609, 0.008333289064466953, -0.0075897714123129845, -0.003682621754705906, -0.028636479750275612, 0.027782538905739784, 0.0019342507002875209, -0.031831398606300354, -0.04328598827123642, 0.011101236566901207, -0.022187750786542892, -0.014200454577803612, 0.011307360604405403, -0.04596560075879097, 0.05267934501171112, 0.027635307982563972, -0.017667751759290695, 0.035747747868299484, 0.008701367303729057, -0.04219647869467735, -0.008576220832765102, 0.020847946405410767, 0.014759933575987816, -0.052090417593717575, -0.022055242210626602, -0.013839738443493843, -0.021466316655278206, -0.0033605534117668867, 0.0037488758098334074, -0.019670095294713974, -0.0011962539283558726, -0.016769640147686005, -0.040959734469652176, -0.008613028563559055, -0.020921561866998672, -0.0019287294708192348, -0.032862018793821335, -0.021230747923254967, 0.029843775555491447, -0.04022357985377312, 0.05633068084716797, 0.013766122981905937, 0.025294329971075058, -0.029284296557307243, -0.01875726319849491, -0.018050551414489746, 0.01747635006904602, 0.005933419801294804, 0.08509966731071472, -0.0037286316510289907, -0.04199035465717316, -0.031595829874277115, -0.025868531316518784, -0.005436514038592577, 0.012926904484629631, 0.0011944136349484324, 0.006338305771350861, -0.012360064312815666, -0.024101756513118744, 0.03024130128324032, 0.015547621063888073, 0.013795568607747555, -0.0058229961432516575, -0.0410480760037899, -0.02619244158267975, -0.03194918483495712, -0.04243204742670059, 0.006537067703902721, -0.005436514038592577, 0.019037000834941864, 0.017167164012789726, 0.013007882051169872, -0.03168416768312454, 0.03898683562874794, -0.025264883413910866, -0.04269706457853317, 0.0381917878985405, -0.002329934621229768, -0.0585097037255764, -0.025471007451415062, 0.020789053291082382, 0.013964884914457798, -0.009901301935315132, -0.026884427294135094, 0.023498108610510826, 0.023748401552438736, 0.019905665889382362, 0.01884560100734234, -0.014539087191224098, 0.016754917800426483, 0.015577067621052265, 0.016519347205758095, 0.02644273452460766, -0.015429835766553879, -0.005653680302202702, 0.023983972147107124, 9.247963316738605e-05, 0.03077133372426033, -0.012117132544517517, 0.018403908237814903, 0.028651202097535133, 0.05276768282055855, -0.022496936842799187, 0.030800778418779373, -0.05694904923439026, -0.025765471160411835, -0.008016741834580898, -0.014097392559051514, -0.0076854717917740345, 0.013331790454685688, -0.034128203988075256, 0.024661235511302948, -0.03127191960811615, 0.04296208173036575, -0.018933940678834915, -0.014480194076895714, -0.013736676424741745, 0.007111269980669022, -0.006338305771350861, -0.00189008133020252, -0.0038574589416384697, 0.023115307092666626, 0.023188922554254532, 0.03362761810421944, -0.0007425976800732315, -0.08068273216485977, 0.028253678232431412, 0.018889769911766052, 0.01569485291838646, 0.01647517830133438, 0.01772664301097393, 0.031095242127776146, -0.058185793459415436, 0.03783843293786049, 0.013015243224799633, -0.02835674025118351, 0.0053665791638195515, 0.013707229867577553, -0.018668923527002335, 0.027193613350391388, 0.020214851945638657, 0.012463126331567764, 0.04266761988401413, -0.003382638096809387, -0.028783710673451424, 0.02342449314892292, -0.012661888264119625, -0.004387491382658482, 0.020332636311650276, 0.006121139507740736, -0.011174852959811687, 0.007328435778617859, -0.0067726378329098225, -0.006846253760159016, -0.02977016009390354, -0.02569185383617878, 0.0057714651338756084, 0.010357718914747238, -0.015194266103208065, -0.02670774981379509, 0.03253810852766037, -0.024263711646199226, 0.0029059769585728645, 0.016386838629841805, -0.03024130128324032, -0.031183579936623573, -0.07561797648668289, 0.017049379646778107, -0.009871856309473515, 0.03592442721128464, -0.015356220304965973, -0.023085860535502434, 0.04923413321375847, 0.0002735280722845346, 0.06825640797615051, -0.04319765046238899, -0.0036145274061709642, -0.025264883413910866, 0.002571025863289833, -0.003325585974380374, 0.023468662053346634, 0.0354827344417572, -0.02444038912653923, -0.00531872920691967, -0.04558279737830162, -0.016637131571769714, -0.030049899592995644, -0.01171224657446146, -0.057685207575559616, 0.007085504475980997, 0.0021330127492547035, 0.0316547192633152, 0.005944462027400732, 0.00214957632124424, 0.027385015040636063, -0.001127239316701889, 0.005620553158223629, -0.025853808969259262, -0.009415439330041409, 0.026516349986195564, 0.022820845246315002, 0.019905665889382362, 0.028813157230615616, -0.01887504756450653, 0.027650030329823494, 0.02720833569765091, -0.0026446415577083826, -0.020980454981327057, 0.011042344383895397, 0.02075960673391819, 0.017064101994037628, 0.05497615039348602, 0.02505875937640667, -0.010379803366959095, -0.008318565785884857, -0.017284950241446495, -0.015341497026383877, -0.024455111473798752, -0.03345094248652458, 0.06648963689804077, 0.033863190561532974, -0.01939035765826702, 0.006813126616179943, -0.01719661056995392, 0.028842603787779808, 0.02267361432313919, 0.008473158814013004, 0.027561692520976067, 0.033362604677677155, 0.003281416604295373, 0.029475698247551918, -0.027443906292319298, 0.019302017986774445, 0.042579278349876404, 0.0181241687387228, -0.013891269452869892, 0.004004690330475569, -0.007788533810526133, -0.011299999430775642, -0.0036697392351925373, -0.03789732605218887, -0.003426807466894388, -0.011380976065993309, -0.0061469050124287605, -0.027326121926307678, -0.033185925334692, 0.03657224401831627, 0.023645339533686638, 0.03130136430263519, -0.016018761321902275, -0.004950650967657566, -0.010990813374519348, -0.042078692466020584, -0.025927424430847168, -0.0018118646694347262, 0.0033992016687989235, 0.04776182025671005, 0.0341576524078846, 0.038427360355854034, 0.012499934062361717, -0.009459608234465122, 0.007869510911405087, -0.002033631782978773, 0.009842409752309322, -0.01937563344836235, -0.003986286465078592, 0.002075960859656334, -0.02645745687186718, -0.009444884955883026, -0.02622188627719879, 0.03686670586466789, 0.005767784547060728, -0.0045310421846807, 0.017653027549386024, 0.02570657804608345, -0.02279139868915081, -0.00912097655236721, 0.012485210783779621, 0.008465797640383244, 0.024985143914818764, -0.019463973119854927, -0.0031397065613418818, -0.018286122009158134, -0.024720128625631332, 0.016931595280766487, 0.012831204570829868, -0.028548141941428185, 0.011830031871795654, 0.003912670537829399, -0.03733784705400467, 0.006669575814157724, -0.03189029172062874, 0.014671594835817814, -0.03674892336130142, -0.013891269452869892, -0.03795621916651726, -0.03586553409695625, -0.0050058625638484955, -0.010792051441967487, -0.021466316655278206, -0.04596560075879097, -0.0318608433008194, -0.0014327442040666938, -0.02847452461719513, -0.05005862936377525, -0.03268533945083618, 0.0002523635921534151, -0.01594514586031437, -0.0012413435615599155, 0.011410422623157501, 0.0065076216123998165, 0.024396220222115517, -0.006459771655499935, 0.002850765362381935, 0.0009201953653246164, -0.02100990153849125, 0.036896154284477234, -0.02607465535402298, 0.030417978763580322, -0.03998801112174988, -0.015621236525475979, 0.010181041434407234, -0.018904494121670723, 0.01532677374780178, 0.04331543669104576, -0.061071526259183884, -0.022055242210626602, -0.013979608193039894, 0.008605667389929295, -0.0019563352689146996, -0.004729804117232561, -0.01449491735547781, -0.001120797940529883, -0.002793713239952922, -0.009165145456790924, -0.014708402566611767, 0.033509835600852966, 0.0236895103007555, 0.0050132242031395435, -0.019905665889382362, 0.03377484902739525, 0.015503451228141785, -0.017005210742354393, 0.01796221360564232, -0.026899151504039764, 0.038280125707387924, 0.03663113713264465, 0.01316983625292778, 0.021981626749038696, -0.009511139243841171, 0.013214005157351494, -0.055388398468494415, -0.016769640147686005, 0.008576220832765102, -0.03598332032561302, 0.017770813778042793, -0.026148270815610886, -0.011241106316447258, -0.03283257037401199, 0.011918370611965656, 0.024779021739959717, -0.013066774234175682, -0.00021601586195174605, -0.038927946239709854, 0.002742182230576873, 0.023733679205179214, -0.003377116983756423, 0.012706057168543339, -0.037278953939676285, -0.01657824032008648, -0.018551139160990715, -0.01709354855120182, 0.003872181987389922, 0.0029575079679489136, 0.006713745184242725, -0.048674654215574265, 0.012050878256559372, 0.010814135894179344, 0.01924312487244606, 0.03433432802557945, 0.022761952131986618, 0.0162101611495018, -0.03913407027721405, -0.03480546921491623, 0.010026448406279087, 0.03327426314353943, 0.0013867344241589308, 0.006113777868449688, -0.028297847136855125, 0.010335634462535381, 0.04263817146420479, -0.0015532898250967264, 0.004074625205248594, -0.016401562839746475, 0.0163132231682539, 0.005543257109820843, -0.02214358188211918, -0.015900975093245506, -0.03860403597354889, -0.03406931459903717, 0.008855960331857204, 0.011299999430775642, -0.03024130128324032, -0.04481719434261322, -0.009378631599247456, 0.01568012870848179, -0.013714591972529888, -0.01361889112740755, -0.030108792707324028, -0.045406121760606766, -0.023218369111418724, 0.03012351505458355, 0.026398563757538795, 0.01043869648128748, -0.0021348532754927874, 0.038545142859220505, -0.008664559572935104, 0.009253484196960926, 0.023498108610510826, -0.03966410085558891, -0.0006579397013410926, -0.03333315625786781, -0.0014134200755506754, -0.04087139666080475, 0.008149250410497189, 0.01221283245831728, 0.03710227832198143, -0.0016462295316159725, -0.004663550294935703, -0.03168416768312454, -0.006993484683334827, 0.02494097501039505, 0.038044556975364685, -0.009857133030891418, -0.008200781419873238, 0.03456990048289299, -0.044640518724918365, -0.0028728500474244356, 0.029578760266304016, -0.019449248909950256, -0.02202579565346241, -0.014907164499163628, 0.004416937939822674, -0.0015569705283269286, -0.01911061815917492, -0.03406931459903717, 0.006857295986264944, 0.018050551414489746, -0.03268533945083618, 0.03189029172062874, -0.0030053581576794386, -0.05456390604376793, -0.015150096267461777, 0.014104754664003849, 0.03189029172062874, -0.005679445806890726, 0.018021106719970703, 0.024882081896066666, 0.01488508004695177, 0.009459608234465122, -0.003986286465078592, -0.005407067947089672, 0.01025465689599514, -0.0289751123636961, 0.0032262050081044436, -0.04914579540491104, -0.0021827034652233124, -0.014347686432301998, -0.011152767576277256, 0.021687164902687073, -0.002155097434297204, -0.010968728922307491, -0.02720833569765091, -0.03571830317378044, -0.04010579362511635, 0.037396740168333054, -0.026958042755723, 0.02037680707871914, 0.01949341781437397, 0.036395568400621414, -0.011594461277127266, 0.01594514586031437, 0.024587620049715042, 0.016416285187005997, 0.012963712215423584, -0.011793224141001701, 0.00775908725336194, 0.029711268842220306, -0.0068241688422858715, -0.030108792707324028, -0.029092896729707718, -0.030859671533107758, -0.021966904401779175, -0.029284296557307243, -0.013847099617123604, -0.006113777868449688, -0.04098918288946152, 0.00892221461981535, 0.013486383482813835, -0.005094201769679785, -0.026943320408463478, 0.04381602257490158, 0.030359085649251938, 0.030064623802900314, -0.031478043645620346, 0.02267361432313919, -0.004976416472345591, 0.005981269758194685, -0.03062410093843937, -0.0061027356423437595, -0.015768468379974365, 0.0070891850627958775, 0.011108598671853542, 0.006621725857257843, -0.018654201179742813, 0.03215530514717102, -0.020052896812558174, 0.022217197343707085, -0.005263517610728741, -0.07314448803663254, 0.020730162039399147, -0.01749107427895069, 0.007037654053419828, -0.032214198261499405, -0.0268549807369709, 0.0037691202014684677, 0.019581757485866547, 0.0001770225790096447, -0.015739021822810173, 0.0075014326721429825, -0.03280312567949295, 0.0038537781219929457, 0.019331464543938637, 0.01871309243142605, 0.011255829595029354, 0.0067799994722008705, 0.046672310680150986, -0.009128337725996971, -0.024646513164043427, 0.020229574292898178, -0.0076339407823979855, -0.0237925723195076, -0.038162343204021454, -0.02988794632256031, 0.01233797986060381, -0.016534069553017616, 0.020435698330402374, -0.03686670586466789, 0.022379150614142418, -0.007067100610584021, -0.015341497026383877, -0.04066527262330055, -0.011587100103497505, 0.025677131488919258, 0.0077222795225679874, 0.012293810024857521, -0.016504624858498573, 0.005804592277854681, -0.01684325560927391, 0.012308533303439617, -0.016916871070861816, -0.009327100589871407, -0.004751889035105705, 0.042726512998342514, -0.005156775005161762, 0.025485731661319733, -0.005142051726579666, -0.020538760349154472, -0.04620116949081421, 0.04151921346783638, -0.01986149698495865, 0.007048696279525757, 0.01240423321723938, 0.00017035116616170853, 0.04899856448173523, -0.008716090582311153, 0.00038970273453742266, -0.02633967250585556, 0.052208203822374344, 0.039929118007421494, -0.018286122009158134, 0.04634840041399002, 0.0016793565591797233, -0.01406058482825756, 0.023836741223931313, -0.0065517909824848175, 0.05547674000263214, -0.006032800767570734, 0.0007021090714260936, 0.034245990216732025, -0.012264363467693329, 0.0268549807369709, -0.010504950769245625, -0.005631595849990845, -0.008038826286792755, -0.007247458677738905, -0.005848761647939682, -0.023601170629262924, 0.027414459735155106, 0.007155439350754023, 0.04098918288946152, 0.019331464543938637, -0.01911061815917492, 0.032714784145355225, -0.022555828094482422, -0.01939035765826702, 0.0044684684835374355, 0.04823296144604683, -0.0068609765730798244, -0.0012643483933061361, 0.00042513024527579546, 0.02645745687186718, 0.032096415758132935, 0.012912181206047535, -0.04505276679992676, 0.013677784241735935, -0.009525862522423267, 0.034245990216732025, 0.004140879027545452, -0.019905665889382362, -0.03239087760448456, 0.018683645874261856, -0.005915015935897827, 0.005344494711607695, 0.03504103794693947, -0.018506968393921852, 0.007295308634638786, 0.021348532289266586, 0.028400909155607224, 0.029696544632315636, 0.002698012860491872, 0.022467490285634995, 0.013847099617123604, 0.06048260256648064, 0.01044605765491724, -0.024852637201547623, 0.023748401552438736, 0.00994547177106142, 0.0004472149594221264, -0.02179022692143917, -0.0009560830076225102, -0.0005926057929173112, 0.012735503725707531, 0.01672547124326229, -0.0026354396250098944, -0.026943320408463478, -0.022511659190058708, 0.013133028522133827, 0.02532377652823925, -0.006562833208590746, 0.0007274144445545971, 0.0007674429216422141, -0.026104101911187172, -0.029402082785964012, 0.00420345226302743, 0.0037525566294789314, 0.02075960673391819, -0.013486383482813835, -0.040311917662620544, 0.026133548468351364, -0.016431009396910667, -0.0010499429190531373, 0.009893940761685371, -0.024263711646199226, -0.058686379343271255, -0.010541758500039577, -0.003235406940802932, -0.0007251139613799751, -0.004486872814595699, 0.020479867234826088, -0.024101756513118744, -0.04275595769286156, -0.016754917800426483, -0.01849224604666233, 0.03610110282897949, 0.013059413060545921, 0.008568859659135342, 0.0008281758055090904, 0.005167817231267691, 0.0029943156987428665, -0.010563842952251434, 0.0003876322880387306, -0.012315894477069378, -0.010777328163385391, 0.006327263545244932, 0.036395568400621414, 0.00576042290776968, -0.03456990048289299, 0.0074499016627669334, -0.001307597616687417, 0.015179542824625969, 0.011675438843667507, -0.02392507903277874, 0.006032800767570734, 0.046407293528318405, -0.01622488535940647, -0.01782970502972603, 0.006168989930301905, -0.010777328163385391, -0.02619244158267975, -0.0069198692217469215, 0.02798866294324398, 0.042078692466020584, 0.00912097655236721, 0.01044605765491724, 0.00873081386089325, 0.01871309243142605, -0.004056221339851618, -0.0021679801866412163, 0.0009652849403209984, 0.014450748451054096, 0.024720128625631332, 0.01911061815917492, 0.006128501147031784, -0.0060438429936766624, -0.040959734469652176, -7.465085218427703e-05, -0.0012312213657423854, 0.01607765257358551, 0.024999868124723434, 0.004192410036921501, 0.0003280496457591653, 0.008392182178795338, 0.035247161984443665, -0.012706057168543339, 0.0045310421846807, -0.015871530398726463, -0.040341366082429886, 0.017299672588706017, -0.01899283193051815, 0.005973908118903637, 0.02570657804608345, 0.04443439468741417, 0.010431334376335144, 0.0341576524078846, -0.0004849429533351213, 0.020038174465298653, 0.01871309243142605, -0.04902800917625427, -0.028930941596627235, -0.01595986820757389, -0.0005070276674814522, 0.007619217503815889, -0.013891269452869892, -0.0063235824927687645, -0.0374261848628521, 0.02963765151798725, 0.0028139573987573385, 0.00030872554634697735, 0.005436514038592577, 0.01796221360564232, 0.007884234189987183, -0.002057556761428714, 0.004383810795843601, 0.019670095294713974, 0.011219021864235401, 0.0007596212672069669, 0.010092702694237232, 0.03283257037401199, 0.004133517388254404, 0.00585244270041585, -0.025721300393342972, 0.006386155728250742, 0.007287947461009026, -0.004567849915474653, -0.03300924971699715, 0.043992701917886734, 0.025485731661319733, 0.004067263565957546, -0.05618344992399216, -0.02570657804608345, 0.002740341704338789, -0.004810781218111515, 0.022703060880303383, -0.02279139868915081, 0.00041224752203561366, -0.007475667167454958, 0.018256675451993942, -0.0021238108165562153, -0.01849224604666233, 0.019802603870630264, 0.041195306926965714, 0.010718435980379581, 0.007218012586236, -0.018698370084166527, 0.020214851945638657, 0.011373614892363548, -0.008716090582311153, -0.014355047605931759, 0.0017676952993497252, 0.009658370167016983, -0.01681380905210972, 0.021981626749038696, 0.02227608859539032, 0.00840690452605486, -0.02517654560506344, -0.03153693675994873, 0.06378058344125748, -0.011336807161569595, 0.0222613662481308, -0.03368651121854782, 0.02709055133163929, -0.053238824009895325, 0.016754917800426483, -0.0177413672208786, -0.004306514281779528, -0.017653027549386024, -0.001214657910168171, 0.006562833208590746, 0.019699541851878166, 0.00936390832066536, 0.0011014738120138645, 0.012102409265935421, 0.036130551248788834, 0.024116480723023415, -0.016622409224510193, 0.04405159130692482, 0.012831204570829868, 0.0025397392455488443, 0.01950814202427864, 0.0014999184058979154, 0.014723125845193863, 0.002252638339996338, 0.005377621855586767, 0.01024729572236538, -0.01513537298887968, -0.0073173935525119305, -0.004129836801439524, -0.004913843236863613, -0.0030900160782039165, 0.009047361090779305, -0.019787881523370743, 0.030211854726076126, 0.0073615629225969315, -0.009143061004579067, 0.0018302685348317027, 0.03459934517741203, 0.007284266408532858, -0.020347360521554947, -0.027929769828915596, 0.002425635000690818, -0.028077000752091408, -0.034511007368564606, 0.003012719564139843, 0.01063745841383934, 0.011933093890547752, -0.028180062770843506, 0.010379803366959095, -0.0356888584792614, 0.022482212632894516, 0.027164166793227196, -0.0073321168310940266, -0.01962592639029026, 0.025912702083587646, 0.0013250813353806734, 0.012043517082929611, -0.007670748513191938, -0.037013936787843704, -0.007869510911405087, -0.011285276152193546, -0.008200781419873238, 0.0017879395745694637, -0.02239387482404709, -0.009201954118907452, 0.003791204886510968, -0.037043385207653046, -0.02407230995595455, -0.010144233703613281, 0.029034003615379333, -0.028003385290503502, 0.0016996008343994617, -0.0023207326885312796, 0.027061104774475098, 0.010431334376335144, -0.009393353946506977, 0.0166960246860981, -0.0058229961432516575, -0.004659869242459536, 0.027061104774475098, 0.009916025213897228, 0.014266708865761757, -0.004545764997601509, 0.0003163171641062945, -0.025515176355838776, 0.0019066447857767344, -0.0043396414257586, -0.01316983625292778, 0.029343189671635628, -0.01757941208779812, -0.006246285978704691, -0.003505944274365902, 0.01506911963224411, 0.008833875879645348, 0.01392071507871151, 0.008281758055090904, 0.005167817231267691, -0.0014355047605931759, 0.01834501512348652, 0.01069635059684515, -0.005811953917145729, -0.03595387190580368, -0.025868531316518784, -0.058686379343271255, -0.01872781664133072, -0.0033458303660154343, -0.00878970604389906, -0.007884234189987183, -0.009201954118907452, 0.024837912991642952, -0.022997522726655006, -0.008252312429249287, 0.026913873851299286, -0.01744690351188183, -0.022217197343707085, 0.01247784961014986, 0.020303189754486084, -0.0044242991134524345, 0.0016738353297114372, 0.0035795599687844515, 0.012227555736899376, -0.01821250654757023, -0.02100990153849125, -6.32634328212589e-06, 0.01999400556087494, -0.02014123648405075, 0.004254983272403479, -0.0071039083413779736, 0.00878970604389906, -0.02227608859539032, 0.033185925334692, -0.014332963153719902, -0.0008764860685914755, -0.021687164902687073, -0.019964559003710747, -0.01532677374780178, -0.021054070442914963, 0.007950487546622753, -0.009570031426846981, -0.0057714651338756084, -0.019552310928702354, -0.01657824032008648, -0.006481856107711792, -0.0016922393115237355, -0.006345667410641909, 0.03468768298625946, -0.011535569094121456, -0.0044242991134524345, -0.025883255526423454, 0.008274396881461143, -0.009334461763501167, -0.013434852473437786, 0.005900292657315731, -0.013515829108655453, -0.0011861318489536643, 0.001529364730231464, -0.029210681095719337, 0.007155439350754023, 0.010357718914747238, 0.0006823248695582151, -0.0006234323373064399, -0.00962156243622303, -0.02532377652823925, -0.01005589496344328, -0.04293263331055641, 0.00815661158412695, 0.003920032177120447, -0.06089484691619873, 0.03283257037401199, 0.020435698330402374, 0.0067799994722008705, 0.012448403052985668, 0.028651202097535133, 0.010836220346391201, -0.005535895470529795, -0.018830878660082817, -0.009143061004579067, -0.016431009396910667, -0.0027219378389418125, -0.0048733544535934925, 0.022305535152554512, 0.0018808792810887098, -0.021981626749038696, 0.014656871557235718, 0.02720833569765091, 0.00798729620873928, -0.0077370028011500835, 0.021186579018831253, -0.006625406444072723, 0.013648337684571743, -0.0028654884081333876, 0.008244950324296951, -0.010335634462535381, 0.009282930754125118, -0.009334461763501167, -0.03530605509877205, -0.021304363384842873, 0.02039152942597866, -0.025883255526423454, 0.0025949508417397738, -0.0326264463365078, -0.002309690462425351, -0.036012765020132065, -0.012875373475253582, 0.02290918305516243, 0.023763125762343407, -0.007497751619666815, -0.012257002294063568, 0.01897810958325863, 0.002605993300676346, 0.003942117094993591, 0.021687164902687073, -0.011852116324007511, 0.01937563344836235, -0.014737849123775959, 0.00784742645919323, -0.013979608193039894, 0.008841237053275108, 0.00962156243622303, -0.004328599199652672, -0.010158956982195377, -0.021201301366090775, 0.0022195111960172653, -0.010203125886619091, 0.00021716610353905708, 0.003292459063231945, -0.026383841410279274, 0.024204818531870842, 0.005333452485501766, 0.0032979801762849092, -0.021569378674030304, -0.0018265878316015005, 0.006754233967512846, -0.02407230995595455, -0.005215667188167572, -0.0019121660152450204, 0.012257002294063568, 0.013118305243551731, 0.00405254028737545, -0.008826513774693012, 0.0012293809559196234, -0.0006441367440856993, 0.018256675451993942, -0.00923139974474907, -0.007832703180611134, -0.012249641120433807, -0.00566472252830863, -0.00873817503452301, -0.004634103737771511, -0.04696677252650261, 0.004641465377062559, 0.013736676424741745, 0.0014143402222543955, 0.0023925078567117453, 0.024514004588127136, -0.0086792828515172, -0.0007264942396432161, 0.009194592013955116, 0.02025902085006237, -0.011484038084745407, 0.029725991189479828, 0.001219258876517415, 0.053386054933071136, -0.008311204612255096, -0.00021544074115809053, -0.019964559003710747, -0.035512179136276245, 0.006809445563703775, 0.008038826286792755, 0.025088205933570862, 0.03368651121854782, 0.005292963702231646, 0.017947491258382797, -0.006908826995640993, -0.002646481851115823, 0.023777848109602928, 0.010703712701797485, 0.019964559003710747, 0.017255503684282303, 0.002832361264154315, -0.0047850157134234905, 0.004442703444510698, -0.00702293124049902, -0.01911061815917492, 0.010122149251401424, 0.006224201526492834, -0.006732149515300989, -0.01884560100734234, -0.007751725614070892, -0.029711268842220306, 0.004692996386438608, 0.009790878742933273, 0.01581263728439808, 0.014826187863945961, -0.0020998858381062746, 0.015223711729049683, -0.033097587525844574, 0.022334981709718704, 0.007707556243985891, -0.017653027549386024, -0.007166481576859951, -0.01709354855120182, 0.002013387391343713, -0.021304363384842873, 0.0048807160928845406, -0.01660768687725067, -0.016239607706665993, 0.0016397881554439664, -0.005495406687259674, -0.005053712986409664, -0.0281064473092556, -0.02064182236790657, -0.010821497067809105, 0.017284950241446495, -0.018506968393921852, 0.012963712215423584, -0.020538760349154472, -0.011027621105313301, 0.010262019000947475, -0.007310031913220882, 0.015488727949559689, -0.009466970339417458, -0.02329198457300663, 0.0037728010211139917, -0.001939771813340485, -0.010792051441967487, -0.0025121334474533796, 0.001399617176502943, -0.013265536166727543, 0.001669234363362193, -0.0054622795432806015, 0.03459934517741203, -0.000496445398312062, -0.021849118173122406, 0.03660169243812561, 0.0067873611114919186, 0.015474005602300167, 0.013206643983721733, 0.009687816724181175, 0.006768957246094942, 0.019832050427794456, -0.033185925334692, -0.007788533810526133, 0.015503451228141785, -0.0028415631968528032, -0.006091693416237831, -0.016622409224510193, -1.939599314937368e-05, -0.0020593972876667976, 0.005362898577004671, 0.021363256499171257, -0.005083159077912569, -0.014406578615307808, 0.016740193590521812, 0.014126839116215706, 0.014369770884513855, -0.02265889011323452, -0.009739347733557224, -0.014237262308597565, -0.009842409752309322, 0.012198110111057758, 0.0026612048968672752, -0.014752572402358055, 0.009290292859077454, 0.04066527262330055, -0.006180032156407833, -0.005845081061124802, 0.01647517830133438, -0.01298579666763544, -0.005789869464933872, -0.041106969118118286, -0.008642475120723248, 0.006765276193618774, 0.006883061490952969, -0.026737196370959282, -0.03406931459903717, 0.006669575814157724, -0.02115713246166706, -0.015179542824625969, 0.002350179012864828, -0.007876872085034847, -0.0020005046389997005, -0.03312703222036362, 0.002390667563304305, 0.012912181206047535, 0.019802603870630264, 0.01532677374780178, 0.007173843216150999, 0.00560583034530282, 0.006397198420017958, -0.014016415923833847, 0.026531072333455086, 0.02924012765288353, 0.01900755614042282, -0.022128857672214508, -0.011837393045425415, 0.013272898271679878, 0.021436871960759163, 0.03115413524210453, 0.003651335136964917, -0.009938109666109085, 0.005230390466749668, 0.012735503725707531, -0.005940781440585852, 0.010166318155825138, 0.006687980145215988, 0.00556902214884758, -0.01949341781437397, -0.038692373782396317, 0.007619217503815889, -0.00015965389320626855, -0.019463973119854927, -0.005035309121012688, 0.004921204876154661, 0.002559983404353261, 0.004928566515445709, -0.009761432185769081, -0.013214005157351494, -0.00756032532081008, -0.014281432144343853, -0.0014078989624977112, -0.02684025838971138, 0.01551817450672388, 0.015783190727233887, -0.00692723086103797, -0.028872050344944, 0.029784884303808212, 0.005889250431209803, 0.007302670273929834, -0.05883361026644707, -0.0034047227818518877, 0.009908664040267467, 0.02152520976960659, -0.005473322235047817, -0.015091204084455967, -0.020730162039399147, 0.01342749036848545, 0.011115959845483303, 0.018256675451993942, -0.0229239072650671, 0.03489380702376366, -0.011123321950435638, -0.0004315716214478016, 0.008627751842141151, -0.0026832895819097757, -0.012109771370887756, 0.01063009724020958, 0.020214851945638657, -0.024101756513118744, -0.01127055287361145, 0.023247815668582916, 0.013780846260488033, 0.01821250654757023, -0.003470976836979389, -0.007817979902029037, -0.002121970523148775, -0.014347686432301998, -0.0009643647354096174, 0.022555828094482422, -0.0011815308826044202, 0.015915699303150177, -0.00399364810436964, -0.0017824184615164995, 0.0076413024216890335, 0.023615892976522446, -0.026428010314702988, 0.01696104183793068, -0.02722305990755558, -0.010799412615597248, -0.026015764102339745, -0.002300488529726863, -0.0007255740347318351, -0.017181888222694397, 0.0031581104267388582, -0.006437686737626791, 0.0025820680893957615, -0.003413924714550376, -0.020347360521554947, -0.00021463556913658977, -0.0021403743885457516, 0.005745700094848871, -0.01532677374780178, -0.01430351659655571, 0.01102025993168354, -0.024852637201547623, 0.01063745841383934, 0.005337133072316647, 0.008009380660951138, 0.007744363974779844, 0.006154266651719809, 0.02327726222574711, 0.023704232648015022, 0.03230253979563713, 0.030359085649251938, 0.0010232572676613927, -0.002442198572680354, 0.026810811832547188, -0.004832866135984659, 0.00702293124049902, -0.01392071507871151, 0.010681628249585629, 0.003564836923032999, 0.0273408442735672, -0.004895439371466637, -0.04885132983326912, 0.003463615430518985, -0.007111269980669022, -0.0002290136180818081, 0.005484364461153746, 0.026501625776290894, 0.004210813902318478, -0.00125698687043041, -0.0166960246860981, -0.009437523782253265, -0.00439485302194953, -0.02242332138121128, -0.011830031871795654, -0.01962592639029026, -0.00570153072476387, 0.004825504496693611, -0.012683972716331482, -0.047172896564006805, 0.0158273596316576, 0.008171334862709045, 0.014701041392982006, 0.012941627763211727, -0.029063450172543526, -0.005926058162003756, 0.01897810958325863, -0.009452247060835361, 0.006872018799185753, -0.013567360118031502, -0.011395699344575405, 0.007402051705867052, 0.004597296006977558, 0.004328599199652672, -0.008716090582311153, 0.00692723086103797, 0.004648827016353607, 0.009930748492479324, -0.007898957468569279, -0.005804592277854681, 0.017255503684282303, 0.016401562839746475, 0.004229217767715454, 0.007424136158078909, 0.027178891003131866, 0.005870846565812826, 0.011866839602589607, 0.03050631657242775, -0.007928403094410896, -0.01551817450672388, 0.03141915053129196, -0.005546937696635723, 0.0024808465968817472, 0.01233797986060381, 0.0028065957594662905, 0.024985143914818764, 0.021436871960759163, 0.011064428836107254, -0.009525862522423267, -0.01749107427895069, -0.01899283193051815, 0.006275732535868883, -0.002254478633403778, 0.0065149832516908646, -0.010166318155825138, 0.0049175238236784935, 0.013825015164911747, -0.015105927363038063, 0.009731986559927464, -0.03088911809027195, 0.00931237731128931, -0.012176024727523327, -0.011749054305255413, -0.003102898830547929, -0.022217197343707085, 0.014178370125591755, -0.017299672588706017, 0.022644167765975, 0.03013823926448822, 0.024116480723023415, -0.014605340547859669, -0.010048533789813519, -0.023012245073914528, -0.03162527456879616, -0.028768988326191902, -0.006989804096519947, -0.017122995108366013, 0.01660768687725067, -0.004107752349227667, 0.005193582735955715, 0.0012523859040811658, -0.011233745142817497, 0.00576042290776968, 0.016740193590521812, 0.002353859832510352, -0.023115307092666626, -0.031713612377643585, -0.0014171008951961994, -0.02594214864075184, 0.0006666815606877208, -0.004899119958281517, -0.01082885917276144, -0.0007504193345084786, 0.0016121822409331799, 0.0024035503156483173, 0.012117132544517517, 0.01644573174417019, 0.008399543352425098, -0.006614364217966795, -0.018168337643146515, 0.00585612328723073, -0.018448077142238617, 0.004678273107856512, -0.04699621722102165, -0.019596479833126068, -0.015606513246893883, 0.008863321505486965, 0.029799606651067734, -0.016548793762922287, -0.017888598144054413, -0.026501625776290894, 0.021436871960759163, 0.001168648130260408, -0.019463973119854927, -0.02036208286881447, 0.013817653991281986, -0.015797914937138557, -0.020465144887566566, -0.012610357254743576, 0.017314396798610687, -0.023851463571190834, 0.022997522726655006, -0.009636285714805126, 0.02242332138121128, 0.030948011204600334, -0.0146274259313941, 0.014193093404173851, 0.0025728661566972733, -0.001969218021258712, 0.0026796089950948954, -0.017918044701218605, -0.00036117667332291603, -0.0047850157134234905, 0.013582083396613598, -0.005753061268478632, -0.011778500862419605, 0.015459282323718071, -0.0076486640609800816, 0.024970421567559242, 0.03256755322217941, -0.002177182352170348, -0.005333452485501766, 0.001576294656842947, -0.020685991272330284, -0.00566104194149375, -0.004188729450106621, 0.0013646497391164303, 0.0067284684628248215, -0.014855634421110153, 0.01749107427895069, 0.02317420020699501, 0.009400716051459312, -0.003382638096809387, 0.013258174993097782, -0.013898630626499653, 0.020833222195506096, 0.006883061490952969, -0.02151048742234707, -0.012602996081113815, -0.012470487505197525, 0.012117132544517517, -0.020685991272330284, -0.02049459144473076, -0.005362898577004671, 0.014561171643435955, -0.02267361432313919, 0.0008272556588053703, 0.035394392907619476, 0.005826677195727825, 0.004623061511665583, 0.008340651169419289, -0.014708402566611767, -0.021481040865182877, 0.0012100569438189268, 0.02419009618461132, -0.001132760546170175, 0.0032501299865543842, -0.002110928064212203, -0.007254820317029953, 0.030359085649251938, 0.004711400251835585, 0.03989966958761215, 0.020597653463482857, 0.024499282240867615, 0.007225374225527048, -0.013928077183663845, 0.00032252847449854016, -0.02544156089425087, -0.008038826286792755, -0.0032593319192528725, -0.008723451755940914, -0.009393353946506977, -0.027193613350391388, -0.005973908118903637, 0.004766611848026514, -0.02190801128745079, -0.005834038835018873, 0.004825504496693611, -0.007928403094410896, -0.010453419759869576, -0.003550113644450903, -0.0024550813250243664, 0.02684025838971138, 0.007523517124354839, -0.011550292372703552, -0.006021758541464806, 0.02242332138121128, 0.007862148806452751, -0.028253678232431412, -0.005819315556436777, -0.012050878256559372, -0.031065795570611954, 0.0057346574030816555, -0.010954005643725395, -0.0034838595893234015, 0.006853614933788776, 0.01297843549400568, -0.0009496416314505041, -0.009952832944691181, -0.0018698369385674596, 0.003597963834181428, 0.01342012919485569, -0.00604752404615283, 0.016107099130749702, 0.004140879027545452, 0.011410422623157501, 0.0003471437084954232, 0.0071775238029658794, -0.010365081019699574, 0.0022323939483612776, 0.008082996122539043, 0.0029979965183883905, -0.023763125762343407, -0.001028778380714357, 0.005789869464933872, 0.06860976666212082, 0.01809472218155861, 0.024764297530055046, 0.020214851945638657, 0.01937563344836235, -0.0084878820925951, 0.004479511175304651, 0.015400389209389687, 0.024528726935386658, -0.00931237731128931, 0.030300192534923553, 0.010365081019699574, -0.0017005209811031818, -0.012293810024857521, -0.021569378674030304, 0.012418956495821476, 0.01782970502972603, 0.0027311397716403008, -0.027517521753907204, 0.037278953939676285, 0.03427543863654137, 0.006404559593647718, -0.008797068148851395, 0.015341497026383877, 0.00531872920691967, 0.02455817349255085, 0.0035464330576360226, 0.010674266144633293, 0.029564036056399345, 0.007427817210555077, 0.00019496640015859157, 4.3134157749591395e-05, -0.0025360584259033203, -0.02127491682767868, 0.00566472252830863, 0.004946970380842686, -0.0019176871282979846, 0.011388338170945644, -0.01088775135576725, 0.014590617269277573, -0.008119803853332996, 0.0011796904727816582, 0.012220194563269615, 0.007891595363616943, -0.02204051986336708, -0.0055653415620327, 0.010475504212081432, -0.002646481851115823, 0.028901496902108192, -0.00986449420452118, -0.01900755614042282, -0.03345094248652458, 0.0021477360278367996, -0.0052856020629405975, 0.008112442679703236, -0.01807999797165394, -0.018889769911766052, -0.021171854808926582, 0.0076854717917740345, 0.0012689493596553802, -0.0030752927996218204, 0.004567849915474653, -0.002033631782978773, -0.034746576100587845, 0.00044215386151336133, -0.02520599216222763, -0.010600650683045387, 0.00404885970056057, -0.00414456008002162, 0.004704038612544537, -0.007129673846065998, 0.008892768062651157, 0.011307360604405403, -0.013523191213607788, 0.009960195049643517, 0.02277667634189129, -0.012131855823099613, 0.012890096753835678, -0.0048807160928845406, 0.01025465689599514, -0.01721133477985859, 0.005808273330330849, 0.0001059374917531386, 0.007258500903844833, 0.0032170030754059553, 0.004464787896722555, 0.010733158327639103, -0.007195927668362856, 0.0020391528960317373, -0.017564689740538597, -0.0058745271526277065, -0.0076928334310650826, 0.0015128011582419276, 0.017947491258382797, -0.014789380133152008, 0.0029114980716258287, -0.016254330053925514, -0.00015516794519498944, 0.03371595963835716, -0.003699185326695442, 0.00878970604389906, 0.01594514586031437, 0.0040194131433963776, 0.006857295986264944, 0.007265862543135881, 0.013206643983721733, 0.015429835766553879, -0.0024053906090557575, -0.004560488276183605, 0.0018275079783052206, -0.018771985545754433, -0.021746056154370308, -0.013088858686387539, 0.01584208384156227, -0.015503451228141785, -0.0115134846419096, 0.002755064982920885, -0.011292637325823307, -0.014620063826441765, 0.01018840353935957, -0.001939771813340485, 0.020155958831310272, -0.013265536166727543, 0.021584102883934975, -0.0015597312012687325, 0.005307686980813742, -0.007402051705867052, -0.020921561866998672, -0.020568206906318665, -0.002432996639981866, 0.016489900648593903, 0.010416611097753048, 0.009282930754125118, -0.010431334376335144, 0.006651171948760748, -0.007387328427284956, 0.020082343369722366, -0.016902148723602295, 0.026516349986195564, -0.00648921774700284, 0.014539087191224098, 0.028209509328007698, 0.012742865830659866, 0.02507348358631134, 0.0010278582340106368, -0.0058745271526277065, 0.013972246088087559, -0.027061104774475098, 0.019419802352786064, -0.005392344668507576, 0.04363934323191643, -0.021863842383027077, -0.004442703444510698, 0.004258664324879646, 0.007471986580640078, -0.003916351590305567, -0.021083517000079155, -0.004218175541609526, 0.006809445563703775, -0.01847752369940281, 0.005620553158223629, -0.018021106719970703, -0.004998501390218735, -0.015179542824625969, -0.015179542824625969, 0.004284429829567671, 0.009577393531799316, 0.025382669642567635, 0.005075797438621521, -0.012065601535141468, -0.022865014150738716, 0.004630423150956631, 0.010335634462535381, -0.008495243266224861, -0.004600977059453726, -0.019316740334033966, 0.0032280453015118837, 0.021834395825862885, -0.02164299413561821, 0.036130551248788834, 0.004210813902318478, 0.010924559086561203, 0.002206628443673253, -0.005399706307798624, -0.016548793762922287, -0.000858082203194499, 0.0181241687387228, -0.009511139243841171, -0.010306187905371189, -0.00790631864219904, -0.008524689823389053, 0.03483491763472557, 0.005340814124792814, -0.00015930882364045829, -0.006827849429100752, 0.004295472055673599, -0.0024182733613997698, 0.006194755434989929, 0.006548110395669937, 0.0066916607320308685, 0.002626237692311406, 0.005407067947089672, 0.016622409224510193, 0.006121139507740736, -0.010608011856675148, -0.022055242210626602, -0.02087739296257496, -0.011469314806163311, -0.027061104774475098, 0.009150423109531403, -0.026913873851299286, -0.020450422540307045, 0.007884234189987183, -0.0011511644115671515, -0.007810618262737989, 0.01322136726230383, -0.005348175298422575, -0.0061395433731377125, 0.008995830081403255, -0.005064755212515593, 0.009673093445599079, 0.014259347692131996, -0.002571025863289833, -0.004218175541609526, 0.025736024603247643, 0.009776155464351177, 0.012639803811907768, 0.0018864005105569959, 0.021289639174938202, 0.0076928334310650826, 0.022069966420531273, -0.003964201547205448, -0.006400879006832838, 0.005686807446181774, -0.011042344383895397, 0.0402824729681015, 0.023983972147107124, 0.007700194604694843, 0.01810944452881813, 0.010585927404463291, -0.01886032335460186, 0.007048696279525757, -0.028577586635947227, -0.015164819546043873, 0.0031213026959449053, -0.011042344383895397, -0.0017299673054367304, -0.01937563344836235, -0.0029556674417108297, -2.740456875471864e-05, -0.0031746739987283945, -0.003920032177120447, -0.008554136380553246, 0.006732149515300989, 0.01597459241747856, 0.011219021864235401, -0.005075797438621521, -0.0002378704957664013, 0.004354364704340696, -0.005230390466749668, -0.0014364250237122178, 0.0007761847809888422, -0.01595986820757389, -0.013817653991281986, 0.027532245963811874, 0.014465470798313618, 0.0012680292129516602, 0.024528726935386658, -0.002024429850280285, -0.006099055055528879, 0.006581237073987722, -0.021716611459851265, 0.006029120180755854, 0.019581757485866547, -0.004773973487317562, 0.002799234353005886, 0.03088911809027195, -0.011108598671853542, 0.0018210666021332145, 0.024381496012210846, 0.0005097882240079343, -0.001037060166709125, 0.014377132058143616, -0.03963465616106987, -0.0117048854008317, -0.029858499765396118, 0.006886742077767849, 0.02404286526143551, 0.01361889112740755, 0.03362761810421944, -0.00019979741773568094, -0.012647164985537529, 0.0009432002552784979, 0.009010553359985352, 0.0014989982591941953, 0.002442198572680354, -0.00815661158412695, 0.006853614933788776, 0.002197426510974765, 0.0013103581732138991, 0.008186058141291142, -0.014347686432301998, -0.0065517909824848175, -0.020818499848246574, 0.02327726222574711, -0.00032666936749592423, 0.009842409752309322, 0.0077222795225679874, 0.0009993321727961302, 0.010563842952251434, 0.005598468706011772, -0.004939608741551638, 0.00917986873537302, -0.0008396782795898616, 0.0010195764480158687, 0.009724624454975128, 0.00018346395518165082, 0.026678303256630898, 0.0011033142218366265, -0.0031765142921358347, -0.00018610950792208314, 0.001445626956410706, 0.0174616277217865, -0.003986286465078592, 0.0007053297595120966, 0.011425145901739597, -0.0016857979353517294, 0.005686807446181774, 0.004332279786467552, -0.02962292917072773, 0.001579975476488471, -0.0072732241824269295, -0.012838565744459629, -0.00859830528497696, -0.005355536937713623, 0.0077222795225679874, -0.006172670517116785, 0.011933093890547752, -0.023969249799847603, 0.005259836558252573, -0.01837446168065071, 0.0017428500577807426, 0.013383321464061737, -0.012006709352135658, 0.0025563028175383806, 0.008863321505486965, 0.014391855336725712, -0.013567360118031502, -0.007519836537539959, 0.009238761849701405, 0.009857133030891418, -0.010158956982195377, -0.011888924054801464, 0.010806774720549583, -0.00468195416033268, -0.005300325341522694, 0.0021385340951383114, 0.01082885917276144, -0.021996350958943367, -0.008841237053275108, -0.004906481597572565, 0.0222613662481308, -0.0064634522423148155, -0.018904494121670723, 0.021289639174938202, 0.024617066606879234, 0.011984624899923801, -0.005263517610728741, -0.03062410093843937, 0.0024624427314847708, 0.012617718428373337, 0.015856806188821793, -0.022187750786542892, -0.022747229784727097, -0.024867359548807144, 0.016651855781674385, -0.015797914937138557, 0.015032311901450157, -0.01757941208779812, 0.005311367567628622, 0.029210681095719337, -0.008193419314920902, 0.002983273472636938, -0.004232898820191622, 0.0071333544328808784, 0.004376449156552553, 0.02112768590450287, 0.013317067176103592, 0.008362735621631145, 0.014399217441678047, 0.002758745802566409, 0.025102930143475533, 0.019302017986774445, 0.005396025720983744, 0.008797068148851395, 0.012301171198487282, -0.029210681095719337, 0.016033483669161797, 0.0012036155676469207, -0.014016415923833847, -0.006846253760159016, -0.005903973244130611, 0.013309706002473831, 0.008613028563559055, 0.015105927363038063, -0.04013524204492569, 0.02099517732858658, 0.002926221350207925, 0.013191920705139637, -0.0004133977636229247, -0.013405405916273594, -0.00798729620873928, -0.0060585662722587585, -0.011587100103497505, 0.005083159077912569, 0.009790878742933273, -0.0030973777174949646, -0.0012477849377319217, 0.015091204084455967, -0.0011953337816521525, 0.0236895103007555, -0.020465144887566566, 0.013780846260488033, -0.01316983625292778, 0.012124493718147278, 0.01821250654757023, 0.03218475356698036, 0.006165308877825737, -0.013110943138599396, -0.010983452200889587, 0.00032160826958715916, -0.01682853326201439, -0.005889250431209803, 0.031595829874277115, -0.010666904971003532, -0.011160129681229591, 0.02099517732858658, -0.03215530514717102, -0.0007320154109038413, 0.0071848854422569275, 0.0020501953549683094, -0.019699541851878166, 0.007321074139326811, 0.006838892120867968, -0.001221099286340177, -0.0070450156927108765, 0.009474331513047218, 0.014458109624683857, 0.005841400008648634, -0.02747335284948349, -0.0057788267731666565, 0.012838565744459629, -0.019905665889382362, 0.017388012260198593, -0.029195958748459816, -0.0178444292396307, -0.00961420126259327, 0.0023483384866267443, 0.008671920746564865, -0.00775908725336194, -0.01195517834275961, -0.00585612328723073, 0.017240779474377632, 0.019581757485866547, -0.0023188923951238394, 0.01722605712711811, 0.031213026493787766, 0.02229081280529499, -0.00969517882913351, -0.007475667167454958, -0.002554462291300297, 0.01214657910168171, -2.1466432372108102e-05, -0.008517328649759293, -0.008377458900213242, 0.017682474106550217, 0.017284950241446495, -0.025279607623815536, 0.008642475120723248, 0.0006091693066991866, -0.011947816237807274, -0.0028857325669378042, -0.004398534074425697, -0.002604152774438262, 0.01810944452881813, -0.021922733634710312, -0.005263517610728741, 0.028165340423583984, -0.0138618228957057, 0.037808988243341446, -0.01506911963224411, 0.005359217990189791, -0.009474331513047218, 0.006426644511520863, -0.013640976510941982, -0.0008530211052857339, 0.010401888750493526, 0.027915047481656075, -0.010203125886619091, -0.0006422963924705982, -0.01597459241747856, 0.004884397145360708, -0.004674592521041632, 0.014362409710884094, 0.021466316655278206, -0.01487771887332201, -0.018138891085982323, 0.018506968393921852, 0.01634266972541809, 0.0007053297595120966, 0.007921041920781136, 0.004634103737771511, 0.0009261766099371016, 0.012772311456501484, 0.009157784283161163, 0.031242473050951958, 0.018256675451993942, 0.017417458817362785, 0.004523680545389652, -0.0022268728353083134, 0.004542084410786629, -0.03966410085558891, 0.003432328812777996, 0.0072805858217179775, -0.013493744656443596, -0.0028415631968528032, 0.030859671533107758, -0.0011060747783631086, -0.0036789411678910255, 0.0004497454792726785, -0.02115713246166706, -0.00614322442561388, -0.0009560830076225102, -0.011189575307071209, 0.008222865872085094, 0.018065275624394417, 0.010666904971003532, 0.006253647617995739, 0.017240779474377632, -0.02305641584098339, -0.006997165735810995, 0.0012100569438189268, 0.010534396395087242, 0.009540585801005363, -0.01681380905210972, -0.004538403358310461, 0.010725797154009342, 0.0009151342674158514, 0.007519836537539959, -0.008082996122539043, -0.008068272843956947, 0.007074461784213781, 0.014413939788937569, 0.014200454577803612, -0.00648921774700284, -0.013294982723891735, -0.014104754664003849, 0.01834501512348652, 0.013147751800715923, 0.01900755614042282, 0.0018836399540305138, -0.008060911670327187, 0.0018394705839455128, 0.0018201464554294944, -0.0075897714123129845, 0.003020081203430891, 0.012764950282871723, 0.0004610178875736892, 0.005775146186351776, 0.0169757641851902, -0.020965730771422386, 0.003343990072607994, -0.021319085732102394, -0.0059481430798769, 0.0065444293431937695, -0.010895113460719585, -0.027797261252999306, -0.0038022473454475403, 0.011498761363327503, -0.020214851945638657, 7.545601692982018e-05, -0.015989314764738083, -0.013405405916273594, 0.0004143179685343057, 0.003645814023911953, 0.03889849781990051, 0.010342995636165142, 0.006404559593647718, 0.008311204612255096, -0.03191973641514778, -0.0012257002526894212, -0.006511302199214697, -0.0005369340069591999, -0.033185925334692, 0.02137797884643078, 6.723177648382261e-05, -0.011005536653101444, 0.018551139160990715, -0.014067946933209896, -0.014067946933209896, 0.002029950963333249, 0.013825015164911747, 0.0014134200755506754, 0.008082996122539043, -0.0017014412442222238, -0.0025820680893957615, 0.014406578615307808, -0.021746056154370308, -0.0021698207128793, -0.004508957266807556, -0.00017184649186674505, -0.006721106823533773, 0.03657224401831627, 0.004549446050077677, 0.01911061815917492, 0.001620464026927948, 0.00019588659051805735, -0.026310225948691368, 0.0162101611495018, -0.008252312429249287, 0.0026004721876233816, -9.95536393020302e-05, 0.010232572443783283, 0.0017621740698814392, -0.011579738929867744, 0.027782538905739784, -0.016269054263830185, 0.006967719178646803, 0.010129510425031185, -0.004722442477941513, -0.012602996081113815, -0.019081171602010727, -0.0038500973023474216, -0.01909589394927025, -0.0038206512108445168, -0.015591789968311787, -0.026486903429031372, -0.009776155464351177, -0.01113804429769516, 0.0005079478141851723, -0.006301498040556908, -0.0033992016687989235, -0.01316983625292778, 0.010850943624973297, 0.006448728963732719, 0.007435178384184837, 0.01949341781437397, -0.006205797661095858, 0.006029120180755854, 0.011219021864235401, -0.016401562839746475, 0.023954525589942932, -0.013766122981905937, -0.004641465377062559, 0.007387328427284956, 0.009511139243841171, 0.004678273107856512, -0.016916871070861816, -0.004221856128424406, -0.005848761647939682, -0.021687164902687073, -0.020685991272330284, -0.000540154695045203, 0.016401562839746475, 0.00017035116616170853, -0.0035519541706889868, 0.0034893809352070093, 0.014664233662188053, -0.012956351041793823, -0.005841400008648634, -0.0159304216504097, -0.008082996122539043, -0.006791041698306799, 0.0015440877759829164, -0.001710643176920712, -0.004464787896722555, 0.009385992772877216, -0.004306514281779528, -0.001487955916672945, -0.02632494829595089, 5.805857654195279e-05, 0.0008148329798132181, -0.017049379646778107, -0.0037728010211139917, -1.3982656128064264e-05, -0.003920032177120447, 0.010026448406279087, -0.0015606513479724526, -0.02520599216222763, -0.0017741366755217314, 0.00522302882745862, -0.011425145901739597, -0.013118305243551731, -0.007943126372992992, -0.013177197426557541, 0.012860650196671486, 0.009908664040267467, 0.01474521029740572, -0.002252638339996338, -0.0006473574321717024, -0.017432181164622307, -0.010968728922307491, 0.0021863842848688364, 0.00404885970056057, 0.0062352437525987625, -0.003154429607093334, 0.01467895694077015, 0.011881562881171703, -0.009496415965259075, -0.0031746739987283945, 0.007810618262737989, -0.004115113522857428, 0.014090031385421753, -0.01196253951638937, -0.020700715482234955, -0.022599998861551285, -0.002193745691329241, 0.004310194868594408, -0.00784742645919323, -0.012838565744459629, 0.0059702275320887566, 0.007159119937568903, -0.006952996365725994, 0.017638305202126503, -0.0026740876492112875, -0.03312703222036362, 0.016372116282582283, 0.0015146415680646896, -0.001797141507267952, 0.005024266894906759, 0.01684325560927391, -0.006231563165783882, -0.02467595972120762, -0.0062426053918898106, -0.0038685014005750418, 0.0021072474773973227, -0.0053739408031105995, -0.024131203070282936, 0.004899119958281517, 0.010924559086561203, 0.0019452930428087711, -0.025279607623815536, -0.001760333776473999, 0.011086514219641685, 0.019920390099287033, 0.004659869242459536, 0.0017014412442222238, 0.021201301366090775, -0.0029409443959593773, 0.014517001807689667, -0.0062720514833927155, -0.00011640471348073334, 0.014450748451054096, 0.0033071821089833975, 0.02265889011323452, 0.013103581964969635, 0.0169757641851902, 0.0016545113176107407, 0.019316740334033966, 0.03392208367586136, 0.02393980324268341, 0.015253158286213875, 0.003997328691184521, 0.023748401552438736, 0.010799412615597248, 0.014568532817065716, 0.0038390550762414932, -0.0032998204696923494, -0.007262181956321001, 0.03077133372426033, 0.008841237053275108, 0.00038073083851486444, -0.005749380681663752, -0.018021106719970703, -0.01924312487244606, -0.013950161635875702, -0.005355536937713623, 0.013780846260488033, -0.015194266103208065, 0.04776182025671005, -0.003099218010902405, 0.0030863352585583925, -0.023836741223931313, 0.0166960246860981, -0.010158956982195377, -0.0034304882865399122, 0.029078174382448196, 0.011226383037865162, 0.020965730771422386, -0.004358045291155577, 0.002471644664183259, -0.01342749036848545, -0.012948988936841488, -0.005712572950869799, 0.03769120201468468, 0.008090357296168804, 0.02432260476052761, -0.015915699303150177, 0.0037948857061564922, -0.012809119187295437, -0.004159282892942429, -0.0016526709077879786, 0.00251581403426826, 0.0021072474773973227, -0.009628924541175365, 0.0037120680790394545, -0.009599477984011173, 0.01947869546711445, 0.020214851945638657, 0.01000436395406723, -0.014119477942585945, -0.007427817210555077, -0.018580585718154907, -0.009165145456790924, -0.004129836801439524, -0.003102898830547929, 0.007416774518787861, -0.0008198940777219832, -0.01734384149312973, 0.0019048043759539723, -0.028268402442336082, 0.0027734688483178616, 0.013913353905081749, 0.00923139974474907, -0.01594514586031437, -0.011947816237807274, 0.012271725572645664, -0.0019121660152450204, -0.003964201547205448, -0.004913843236863613, 0.00756032532081008, -0.012330617755651474, -0.00892957579344511, 0.002790032420307398, 0.01887504756450653, 0.0011033142218366265, -0.015650682151317596, -0.004284429829567671, -0.007460943888872862, -0.008318565785884857, 0.002213990082964301, -0.014980780892074108, 0.009599477984011173, 0.013125666417181492, 0.0022360747680068016, 0.0016729151830077171, -0.0013214005157351494, 0.007538240402936935, -0.010342995636165142, -0.006180032156407833, -0.0021900648716837168, 0.019935112446546555, 0.005119966808706522, 0.009982279501855373, -0.02432260476052761, 0.021422147750854492, -0.0070891850627958775, -0.01259563397616148, -0.012691334821283817, -0.011484038084745407, 0.04151921346783638, -0.0010085341054946184, 0.019832050427794456, -0.016018761321902275, -0.005896612070500851, -0.00031838761060498655, -0.020038174465298653, -0.00010392456169938669, -0.008782344870269299, 0.0009708061115816236, -0.0065517909824848175, -0.005429152864962816, -0.012102409265935421, 0.014406578615307808, -0.00399364810436964, 0.014914526604115963, 0.008576220832765102, -0.0018348696175962687, -0.017432181164622307, 0.001617703470401466, -0.0115134846419096, 0.013898630626499653, -0.0023593809455633163, 0.02454345114529133, -0.011219021864235401, 0.0058303577825427055, 0.023777848109602928, 0.007438859436661005, 0.006187393795698881, 0.026545796543359756, -0.003023762023076415, 0.010747881606221199, 0.008804429322481155, -0.013935438357293606, 0.0050573935732245445, -0.011307360604405403, 0.03795621916651726, 0.007714917883276939, -0.013729315251111984, -0.011196937412023544, 0.008855960331857204, -0.00623892480507493, -0.008134527131915092, -0.01316983625292778, -0.002703533973544836, -0.0057714651338756084, -0.03103634901344776, 0.013685145415365696, -0.010033810511231422, 0.015871530398726463, -0.015856806188821793, 0.013913353905081749, -0.024779021739959717, 0.0035850810818374157, -0.005723615176975727, 0.00420345226302743, 0.013589445501565933, -0.027797261252999306, 0.001035219756886363, -0.027753092348575592, -0.02722305990755558, -0.00016356472042389214, 0.023571724072098732, 0.020568206906318665, 0.0013591285096481442, 0.009525862522423267, -0.014281432144343853, 0.023336155340075493, 0.013515829108655453, -0.012418956495821476, 0.010556480847299099, -0.001028778380714357, -0.0033127032220363617, -0.030447423458099365, -0.007081823423504829, -0.008745537139475346, -0.013957523740828037, -0.006526025477796793, 0.0006837051478214562, 0.01609237678349018, 0.03925185278058052, 0.015267881564795971, -0.03265589475631714, -0.016401562839746475, -0.0017916203942149878, 0.015621236525475979, 0.013074135407805443, 0.00224711699411273, -0.009533223696053028, -0.0011502442648634315, -0.013177197426557541, 0.004578892141580582, 0.01782970502972603, -0.012948988936841488, 0.018035829067230225, 0.004637784790247679, -0.019596479833126068, -0.024484558030962944, -0.015253158286213875, -0.0029538271483033895, -0.0016333467792719603, -0.01076996698975563, -0.001848672516644001, -0.020656544715166092, 0.0038022473454475403, -0.007486709393560886, 0.012124493718147278, -0.017888598144054413, -0.0021790226455777884, 0.0029059769585728645, 0.0068168072029948235, 0.006592279765754938, 0.00027651869459077716, 0.008303843438625336, 0.028386186808347702, 0.03065354749560356, 0.012382148765027523, 0.009128337725996971, -0.02239387482404709, 0.003233566414564848, -0.01912534050643444, 0.0063677518628537655, 0.018654201179742813, -0.009305015206336975, -0.002826840151101351, -0.0019618566147983074, -0.0010959526989609003, 0.0011622067540884018, 0.012043517082929611, -0.012234917841851711, 0.0007476587197743356, 0.009106253273785114, -0.013096220791339874, 0.013648337684571743, -0.01799166016280651, -0.01190364733338356, 0.0020023451652377844, 0.013486383482813835, -0.022865014150738716, -0.002703533973544836, 0.008900129236280918, 0.02014123648405075, -0.03065354749560356, 0.00712599279358983, 0.01644573174417019, -0.005848761647939682, -0.003561156103387475, -0.0064634522423148155, -0.020067621022462845, 0.006757914554327726, 0.005311367567628622, 0.0178444292396307, -0.02355700172483921, -0.013950161635875702, -0.0060880123637616634, 0.0015413272194564342, -0.0065444293431937695, 0.024131203070282936, 0.012242279015481472, 0.031978629529476166, 0.0038648205809295177, 0.018138891085982323, -0.011358891613781452, 0.008841237053275108, 0.00010110646690009162, -0.007869510911405087, 0.0069566769525408745, -0.006872018799185753, 0.0038243320304900408, -0.014862995594739914, -0.007262181956321001, -0.016740193590521812, -0.0038427358958870173, -0.0034820192959159613, -0.006180032156407833, -0.0032243644818663597, -0.020965730771422386, 0.021996350958943367, 0.012293810024857521, 0.004818142857402563, -0.002101726131513715, -0.02102462388575077, -0.005326090846210718, 0.010939282365143299, -0.0051530939526855946, -0.013398044742643833, 0.021996350958943367, -0.008068272843956947, -0.0022876057773828506, 0.003737833583727479, -0.028047554194927216, -0.015297328121960163, -0.01734384149312973, 0.026943320408463478, -0.0022876057773828506, 0.011454591527581215, -0.00898846797645092, 0.003380797803401947, 0.015635959804058075, 0.011550292372703552, -0.005992312449961901, 0.02204051986336708, -0.0014732327545061707, -0.006621725857257843, -0.006971400231122971, -0.007137035485357046, -0.009776155464351177, -0.0031249835155904293, 0.006301498040556908, 0.012382148765027523, 0.0005599388969130814, 0.0062426053918898106, 0.022865014150738716, 0.011726969853043556, 0.002017068210989237, -6.0042748373234645e-05, 0.013383321464061737, 0.014921887777745724, -0.012691334821283817, -0.0035243481397628784, 0.008244950324296951, -0.0053665791638195515, 0.0011447230353951454, -0.0003236787160858512, -0.0019452930428087711, -0.004497915040701628, 0.0068683382123708725, -0.003516986733302474, 0.008811790496110916, -0.0077296411618590355, 0.012198110111057758, -0.01512065064162016, 0.0022784036118537188, 0.006426644511520863, -7.470836135325953e-05, -0.0026335990987718105, 0.012264363467693329, -0.002561823930591345, 0.010939282365143299, -0.006540748756378889, -0.01076996698975563, -0.0066842990927398205, -0.009466970339417458, -0.026501625776290894, 0.00424394104629755, 0.010423973202705383, 0.0019526545656844974, 0.009143061004579067, -0.02898983471095562, -0.020465144887566566, -0.01989094354212284, -0.005591107066720724, 0.00117048854008317, 0.0019121660152450204, -0.002291286364197731, 0.002013387391343713, -0.015194266103208065, 0.0013848940143361688, 0.001125398906879127, 0.011152767576277256, 0.0015008386690169573, 0.0011042344849556684, -0.014075308106839657, -0.011594461277127266, -0.006364071276038885, 0.004045178648084402, 0.0038979474920779467, 0.0013149591395631433, -0.010181041434407234, 0.009849770925939083, 0.0005189902149140835, 0.007379966787993908, 0.006791041698306799, 0.001671995036303997, 0.013155112974345684, 0.0015026790788397193, 0.02938735857605934, -0.011152767576277256, 0.01685797981917858, -0.01647517830133438, 0.010239933617413044, 0.0005360138020478189, -0.009216676466166973, -0.0115134846419096, -0.0029170194175094366, -0.005016905255615711, -0.0024477196857333183, 0.009025275707244873, 0.005270879250019789, 0.01006325613707304, -0.00010467222455190495, -0.007195927668362856, -0.0017216855194419622, 0.005090520717203617, 0.001399617176502943, 0.0030973777174949646, -0.03153693675994873, 0.03153693675994873, -0.012698695994913578, 0.028651202097535133, 0.009687816724181175, -0.004015732556581497, -0.0067284684628248215, 0.017932767048478127, 0.015194266103208065, 0.034481558948755264, -0.015415112487971783, -0.011609184555709362, -0.0035850810818374157, -0.008701367303729057, -0.005164136178791523, -0.01221283245831728, -0.00854677427560091, 0.008620389737188816, -0.003518827026709914, 0.003119462402537465, 0.007339478470385075, -0.008399543352425098, -0.006154266651719809, -0.020185405388474464, -0.030948011204600334, -0.007869510911405087, 0.015356220304965973, -0.0341576524078846, 0.013795568607747555, 0.0033108629286289215, -0.00048724343650974333, -0.014605340547859669, 0.005171497818082571, -0.006529706530272961, 0.0018091041129082441, 0.0034028824884444475, -0.01609237678349018, 0.005086840130388737, 0.0011566855246201158, -0.005712572950869799, -0.01989094354212284, 0.008495243266224861, 0.006268370896577835, 0.018433352932333946, -0.03062410093843937, 0.00015677828923799098, 0.024764297530055046, -0.012323256582021713, -0.024749575182795525, 0.007538240402936935, 0.004295472055673599, -0.022128857672214508, 0.00048080208944156766, 0.020538760349154472, 0.0028157979249954224, 0.005576383788138628, -0.007670748513191938, -0.02289446070790291, -0.004273387137800455, -0.009702540002763271, -0.024248987436294556, -0.00044767503277398646, 0.008936936967074871, 0.0017879395745694637, 0.017270226031541824, 0.017918044701218605, 0.0037562374491244555, -0.028297847136855125, 0.016519347205758095, 0.0115134846419096, -0.010401888750493526, -0.01121166069060564, 0.003607165766879916, -0.0028691692277789116, -0.009879217483103275, -0.005263517610728741, -0.007004526909440756, -0.006643810775130987, -0.024587620049715042, 0.014811464585363865, 0.00226552109234035, 0.025736024603247643, -0.009400716051459312, 0.011358891613781452, -0.022732505574822426, 0.014517001807689667, -0.009113614447414875, 0.006978761870414019, -0.021819671615958214, -0.0037286316510289907, -0.010490227490663528, -0.019140062853693962, -0.0036771006416529417, -0.028150616213679314, 0.0071922470815479755, 0.0019986643455922604, 0.016784364357590675, -0.005863484926521778, 0.021863842383027077, -0.006124820560216904, -0.00638983678072691, -0.01418573223054409, -0.011380976065993309, -0.007479347754269838, -0.0056978496722877026, -0.00923139974474907, 0.030800778418779373, 0.020406251773238182, -0.013110943138599396, -0.0034304882865399122, -0.01171224657446146, -0.0077222795225679874, 0.026162995025515556, 0.0007430577534250915, -0.030830224975943565, 0.00015677828923799098, -0.0031433873809874058, -0.020980454981327057, 0.01196253951638937, -0.006699022371321917, -0.009150423109531403, 0.007188566029071808, -0.00898846797645092, 0.0046083382330834866, -0.01107915211468935, 0.0016397881554439664, -0.005657360889017582, -0.02430788055062294, 0.00854677427560091, 0.010644819587469101, 0.05453445762395859, 0.007817979902029037, 0.01411211583763361, -0.006135862786322832, 0.0035869216080754995, -0.024646513164043427, 0.005915015935897827, 0.012139216996729374, -0.022084688767790794, -0.009511139243841171, 0.0073615629225969315, -0.012926904484629631, 0.0038243320304900408, 0.013596806675195694, 0.0036329312715679407, 0.009776155464351177, -0.0024090714287012815, 0.0057861884124577045, -0.00018668462871573865, 0.01949341781437397, 0.010482865385711193, -0.01899283193051815, -0.012330617755651474, -0.022835567593574524, 0.036277782171964645, 0.016504624858498573, -0.030535763129591942, -0.04705511033535004, 0.0010591448517516255, 0.003027442842721939, 0.000858082203194499, 0.004704038612544537, -0.008797068148851395, 0.007251139264553785, -0.009084168821573257, 0.024484558030962944, -0.010092702694237232, 0.012124493718147278, -0.003831693436950445, 0.000991970649920404, -0.020332636311650276, -0.008509966544806957, 0.00502794748172164, -0.007494071032851934, -0.019684819504618645, -0.006364071276038885, 0.015886252745985985, -0.010644819587469101, -0.019522864371538162, -0.012036154977977276, -0.0026648857165127993, -0.004508957266807556, -0.005171497818082571, -0.0023575404193252325, 0.02773837000131607, 6.096294237067923e-05, 0.012072963640093803, -0.020332636311650276, -0.010041171684861183, -0.018183059990406036, 0.01247784961014986, -0.007670748513191938, -0.00044951544259674847, 0.022968076169490814, -0.0025471008848398924, -0.006643810775130987, 0.002173501532524824, -0.008951660245656967, 0.011785862036049366, 0.004486872814595699, 0.006018077488988638, -0.01507648080587387, -0.0007619217503815889, -0.0032501299865543842, -0.012102409265935421, -0.024337327107787132, -0.010298826731741428, -0.02391035668551922, -0.029858499765396118, -0.00030389451421797276, -0.0006703623221255839, -0.005892931018024683, 0.009746708907186985, -0.006249967031180859, -0.014855634421110153, -0.007321074139326811, 0.013964884914457798, 0.009282930754125118, 0.002101726131513715, -0.006592279765754938, -0.044139932841062546, 0.005245113745331764, -0.007494071032851934, 0.027326121926307678, 0.006474494468420744, -0.0013710911152884364, -0.007994657382369041, 0.005245113745331764, 0.004129836801439524, 0.012890096753835678, 0.001313118846155703, 0.026634134352207184, -0.007137035485357046, -0.006890423130244017, 0.0015063597820699215, -0.017682474106550217, -0.01570957526564598, -0.021687164902687073, 0.0035758791491389275, -0.0021882245782762766, -0.011277914047241211, 0.011049705557525158, -0.013324429281055927, 0.011049705557525158, -0.010239933617413044, 0.009444884955883026, 0.026001039892435074, 0.010755243711173534, 0.0146274259313941, 0.02280612289905548, -0.0048807160928845406, 0.025986317545175552, 0.016887424513697624, -0.006283094175159931, 0.01925784908235073, 0.0007692833314649761, 0.019331464543938637, 0.017181888222694397, -0.008568859659135342, 0.009452247060835361, 0.01024729572236538, -0.015312050469219685, 0.02115713246166706, 0.009871856309473515, -0.017505796626210213, 0.005016905255615711, 0.013567360118031502, 0.0036734198220074177, 0.0029372635763138533, 0.0025563028175383806, -0.004332279786467552, 0.04490553215146065, 0.010416611097753048, 0.01316983625292778, 0.01126319169998169, -0.007656025234609842, -0.004343322012573481, 0.00576042290776968, 0.008701367303729057, 0.00842898990958929, -0.019302017986774445, -0.013486383482813835, -0.012897457927465439, 0.013604167848825455, -0.0005249714595265687, 0.007409412879496813, -0.006128501147031784, 0.018919216468930244, -0.027635307982563972, -0.0010131350718438625, -0.0051457323133945465, -0.007707556243985891, 0.018963385373353958, 0.024985143914818764, 0.0062352437525987625, -0.0016811969690024853, -0.004542084410786629, -0.0038096087519079447, -0.0029924754053354263, 0.003831693436950445, -0.02052403800189495, -0.010821497067809105, -0.016931595280766487, -0.005193582735955715, 0.0019673777278512716, 0.008200781419873238, 0.002714576432481408, 0.009025275707244873, -0.02239387482404709, -0.0004936848417855799, 0.003104739123955369, 0.02594214864075184, 0.016990486532449722, 0.006923549808561802, -0.0032979801762849092, 0.0007996498025022447, 0.0008382980013266206, 0.0007927482947707176, -0.0009441204601898789, 0.004895439371466637, 0.012529379688203335, 0.005200944375246763, -0.01278703473508358, -0.02558879368007183, -0.021554656326770782, 0.006003354676067829, 0.015164819546043873, -0.016136545687913895, -0.024145927280187607, -0.01361889112740755, 0.006404559593647718, 0.011182214133441448, -0.01013687252998352, -0.009150423109531403], "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368": [-0.03518231213092804, -0.03200671076774597, -0.006337272934615612, 0.023942356929183006, -0.01036248542368412, -0.03924930840730667, -0.013955928385257721, 0.006476553622633219, -0.009317880496382713, 0.07883288711309433, -0.011490659788250923, -0.010536586865782738, 0.0024025924503803253, -0.007632583379745483, 0.0035725506022572517, -0.0063755749724805355, -0.01713152788579464, 0.03632441163063049, 0.04768971726298332, -0.021031389012932777, 0.04161708056926727, -0.008294166997075081, -0.029360376298427582, -0.0038894142489880323, 0.019819647073745728, 0.004481357056647539, -0.0409485325217247, 0.009101995266973972, -0.023218097165226936, -0.020627474412322044, -0.03716009482741356, 0.0114628029987216, -0.012033854611217976, 0.008259346708655357, -0.009547693654894829, -0.005449358373880386, -0.014958749525249004, 0.005759257823228836, -0.012249739840626717, 0.0042167240753769875, -0.01780007593333721, 0.037940070033073425, -0.0036630830727517605, -0.027354734018445015, -0.05353951081633568, 0.01784186065196991, -0.036491550505161285, -0.004429127089679241, 0.007632583379745483, -0.01618441939353943, 0.06640905141830444, 0.02338523231446743, 0.009373592212796211, 0.04217420145869255, 0.02675582654774189, -0.03565586358308792, 0.011253882199525833, 0.05273168161511421, -0.005059372168034315, -0.04150565341114998, -0.020613547414541245, -0.021769577637314796, -0.003410636680200696, 0.014735900796949863, -0.012200991623103619, -0.007611691486090422, 0.007681331597268581, -0.01831541582942009, -0.03880360722541809, 0.010766400024294853, -0.02196457050740719, 0.0030606938526034355, -0.0699746310710907, -0.004777328576892614, 0.022786326706409454, -0.02944394387304783, 0.040140703320503235, 0.024165205657482147, -0.007409734185785055, -0.006288524717092514, 0.010459981858730316, -0.033120956271886826, -0.003086809068918228, -0.01923466846346855, 0.05106031149625778, 0.013238633051514626, -0.01955501362681389, -0.03518231213092804, -0.018747184425592422, -0.012862574309110641, -0.0205021221190691, -0.024527335539460182, -0.008572728373110294, -0.009095030836760998, -0.0013048863038420677, -0.013245596550405025, -0.015070173889398575, 0.008175778202712536, -0.02961108088493347, -0.04139422997832298, -0.02842719480395317, -0.04078139364719391, -0.030781039968132973, 0.006845647469162941, -0.036045849323272705, 0.027535798028111458, 0.00777186406776309, 0.032452408224344254, -0.009032354690134525, 0.05827505514025688, -0.011316558346152306, -0.03086460754275322, 0.030725326389074326, -0.001037641428411007, -0.04838612303137779, -0.034569475799798965, 0.0229256059974432, 0.03353879600763321, -0.020850323140621185, -0.018886465579271317, 0.034123778343200684, -0.030530333518981934, 0.031672436743974686, 0.027563655748963356, 0.002444376703351736, -0.008363807573914528, 0.0004391695256344974, 0.03643583506345749, 0.02192278578877449, 0.031421732157468796, 0.02197849750518799, 0.013893252238631248, 0.039639294147491455, 0.018705401569604874, -0.014401626773178577, 0.003875486087054014, 0.03390092775225639, 0.08005855977535248, -0.028510764241218567, 0.014011641032993793, -0.029026102274656296, 0.004234133753925562, -0.012228847481310368, 0.012416875921189785, -0.02605942264199257, 0.009464125148952007, -0.005428466014564037, 0.06858182698488235, -0.01979179121553898, 0.018468623980879784, -0.02051605097949505, -0.0016130448784679174, -0.01640726812183857, 0.015000533312559128, 0.016936535015702248, -0.0036212988197803497, 0.002512275939807296, 0.02335737645626068, -0.01923466846346855, 0.02551622875034809, -0.026909034699201584, -0.036017995327711105, 0.0067133307456970215, 0.030056780204176903, -0.005814970005303621, 0.006925733759999275, -0.00255754217505455, 0.025474444031715393, -0.006337272934615612, 0.026184774935245514, -0.009115923196077347, -0.04392914101481438, -0.0028343626763671637, 0.0007973821484483778, -0.019178954884409904, -0.014136993326246738, 0.011574228294193745, -0.013377913273870945, 0.006817791145294905, 0.004356004763394594, -0.04874825105071068, 0.03710438311100006, -0.011302630417048931, -0.00915074348449707, 0.029248951002955437, -0.0068317195400595665, -0.0228698942810297, -0.016825111582875252, -0.01508410181850195, -0.006260668393224478, -0.016992248594760895, -0.02241026796400547, -0.006981446407735348, 0.014749828726053238, -0.02431841380894184, 0.0009740945533849299, 0.04022427275776863, -0.024624831974506378, -0.0007368820952251554, -0.025126243010163307, -0.01908145844936371, -0.016462981700897217, -0.017424019053578377, 0.03785650059580803, -0.035293735563755035, 0.022243130952119827, 0.007479374762624502, -0.06005784869194031, 0.06167350336909294, -0.020098207518458366, 0.07147886604070663, -0.050252486020326614, -0.016435125842690468, -0.00928306020796299, -0.020418554544448853, 0.00952680129557848, -0.008551836013793945, 0.00034776655957102776, -0.02676975540816784, 0.011817969381809235, -0.009108958765864372, -0.01156030036509037, -0.03930502012372017, -0.003885932033881545, -0.0360737070441246, 0.017521515488624573, -0.017173312604427338, -0.03206242248415947, 0.01035552192479372, 0.007542050909250975, -0.0253351628780365, -0.011817969381809235, 0.028775397688150406, -0.002188448328524828, 1.6471578419441357e-05, 0.05273168161511421, 0.04966750368475914, 0.002005642279982567, 0.016797255724668503, -0.03565586358308792, 0.016532622277736664, 0.04147779941558838, -0.00656360387802124, -0.03777293115854263, 0.011964214034378529, 0.03919359669089317, 0.005644351243972778, 0.032173845916986465, -0.009157707914710045, -3.147417737636715e-05, -0.031226737424731255, -0.023677723482251167, -0.039388589560985565, 0.008760757744312286, -0.03877575322985649, 0.03392878547310829, 0.057996492832899094, 0.013886287808418274, -0.014304130338132381, 0.013788791373372078, 0.015585512854158878, 0.025168025866150856, -0.0006137056625448167, 0.024959105998277664, 0.03426305577158928, 0.017270809039473534, 0.0074584828689694405, 0.0144434105604887, 0.016755471006035805, 0.003701385110616684, 0.02119852602481842, -0.009547693654894829, -0.023190239444375038, 0.015599440783262253, -0.02676975540816784, -0.005442394409328699, -0.04259204491972923, 0.015042318031191826, 0.03014034777879715, 0.0156690813601017, -0.0384693369269371, -0.043288446962833405, 0.05111602321267128, 0.044458407908678055, 0.04261990264058113, 0.01589193008840084, -0.028482908383011818, -0.011873681098222733, -0.030001066625118256, -0.003917270340025425, -0.004575371742248535, -0.0360737070441246, 0.041338518261909485, 0.029221095144748688, 0.03445805236697197, -0.004819112829864025, 0.012716329656541348, 0.018190061673521996, -0.0032069385051727295, -0.008113102056086063, -0.027354734018445015, 0.02846897952258587, 0.026198703795671463, -0.01046694628894329, -0.008496124297380447, -0.017298664897680283, 0.06674332171678543, 0.04053068906068802, -0.007535086944699287, 0.05743936821818352, 0.01948537304997444, -0.020627474412322044, -0.01707581616938114, -0.008231490850448608, 0.0031407803762704134, 0.028148634359240532, -0.0029475283809006214, -0.030920321121811867, -0.017897572368383408, -0.0012483034515753388, -0.027786504477262497, 0.010390342213213444, -0.02913752757012844, 0.016825111582875252, 0.011093709617853165, -0.053121667355298996, -0.003015427617356181, -0.023273808881640434, 0.02215956337749958, -0.051199592649936676, -0.031143169850111008, -0.007778828497976065, -0.013182920403778553, -0.02430448681116104, -0.017911501228809357, 0.004080925136804581, -0.04768971726298332, -0.008106137625873089, -0.0069570718333125114, -0.017242953181266785, -0.02869182825088501, -0.04657547175884247, 0.023315593600273132, 0.0015547210350632668, -0.039165738970041275, -0.04128280654549599, -0.0012256703339517117, 0.021156741306185722, -0.0014302389463409781, 0.009401449002325535, 0.0008313318248838186, -0.04621334373950958, 0.03390092775225639, -0.02793971262872219, 0.0013632100308313966, -0.013162028044462204, 0.0023068368900567293, 0.037215810269117355, 0.004094853065907955, 0.012987927533686161, 0.007444554474204779, -0.0577736422419548, -0.003812809707596898, -0.025126243010163307, 0.010097851976752281, 0.015209455043077469, 0.003997356630861759, -0.04287060722708702, -0.005508552771061659, 0.015780506655573845, -0.009248239919543266, -0.03718795254826546, 0.001681814668700099, 0.018022924661636353, 0.02385878749191761, -0.04596263915300369, 0.004968839697539806, 0.0027943195309489965, 0.003426305716857314, 0.030028924345970154, -0.0058706821873784065, 0.02001463994383812, 0.023050960153341293, 0.016435125842690468, 0.016449052840471268, -0.02437412552535534, 0.03615727648139, -0.04192349687218666, -0.04487624764442444, -0.006316380575299263, -0.025000888854265213, -0.00500714173540473, -0.013092387467622757, 0.010766400024294853, 0.005466768518090248, 0.0031912694685161114, 0.024889465421438217, 0.00018019443086814135, -0.011504587717354298, -0.04699331521987915, 0.003642190946266055, 0.0019760453142225742, -0.016769398003816605, -0.0008069576579146087, -0.013440589420497417, -0.06050354614853859, -0.018078638240695, -0.0031268522143363953, 0.028803253546357155, -0.0026097726076841354, 0.03802363574504852, -0.0062780785374343395, 0.00213970011100173, 0.03807934746146202, 0.01763293892145157, 0.03593442589044571, 0.019861431792378426, 0.03827434405684471, -0.022549549117684364, -0.00019662520207930356, 0.01923466846346855, 0.03417949005961418, -0.03727152198553085, 0.04200706630945206, -0.004335112404078245, -0.0040495870634913445, 0.03727152198553085, -0.02891467697918415, 0.018412912264466286, 0.01167172472923994, -0.008969678543508053, 0.025683365762233734, -0.002277239691466093, 0.002083987696096301, -0.021560655906796455, -0.0301124919205904, 0.022605260834097862, 0.02479196898639202, 0.01242384035140276, -0.01013963669538498, -0.007326166145503521, -0.004798220936208963, -0.007653475739061832, 0.014680188149213791, -0.002703787060454488, -0.03986214101314545, 0.010292845778167248, -0.0034698310773819685, 0.04055854678153992, -0.015000533312559128, -0.026895107701420784, 0.0013127208221703768, -0.020348913967609406, -0.024011995643377304, -0.00977054238319397, -0.015209455043077469, 0.0011647350620478392, -0.03178386017680168, 0.01761901192367077, -0.03660297393798828, 0.010049103759229183, 0.04186778515577316, 0.030223917216062546, 0.012096530757844448, 0.010258025489747524, -0.043009888380765915, 0.008252383209764957, -0.0009357923408970237, 0.009115923196077347, -0.004397789016366005, 0.005149904638528824, 0.02986178733408451, -0.004711170215159655, 0.013774863444268703, 0.03183957189321518, 0.023468801751732826, -0.02773079089820385, -0.007312237750738859, 0.024959105998277664, -0.0031233702320605516, 0.006730740889906883, -0.015042318031191826, 0.018858609721064568, 0.023427017033100128, -0.027535798028111458, 0.01902574673295021, 0.018914321437478065, -0.005888092331588268, -0.02383093163371086, 0.02289775013923645, 0.024429839104413986, 0.012590977363288403, -0.029276806861162186, 0.03186742961406708, 0.051004599779844284, 0.01158815622329712, 0.013280416838824749, -0.031003888696432114, 0.03518231213092804, -0.03593442589044571, 0.03632441163063049, -0.031143169850111008, 0.015111958608031273, -0.022117778658866882, -0.016783326864242554, 0.024248773232102394, 0.008739865384995937, 0.027661152184009552, 0.023273808881640434, -0.004171457607299089, -0.006500927731394768, 0.026881178840994835, -0.03755008429288864, -0.0020805057138204575, 0.019917143508791924, 0.01516767032444477, -0.014638403430581093, 0.008830397389829159, 0.012382056564092636, 0.02479196898639202, -0.007298309821635485, -0.01878896914422512, -0.004920091480016708, 0.010404270142316818, -0.011337450705468655, 0.022591333836317062, -0.03345523029565811, -0.020362840965390205, -0.012249739840626717, 0.0037710254546254873, 0.012305451557040215, -0.0007995584164746106, 0.0016147858696058393, 0.016811182722449303, 0.04117138311266899, -0.00023547146702185273, -0.0386086143553257, 0.0362408421933651, 0.007980785332620144, -0.00020511262118816376, 0.006093531381338835, 0.010271953418850899, 0.011950286105275154, -0.014986605383455753, -0.01215920690447092, 0.004930537659674883, 0.025209810584783554, -0.011274774558842182, 0.0030798448715358973, 0.028510764241218567, -0.006939662154763937, 0.02724330872297287, -0.023050960153341293, 0.017215097323060036, 0.002130995038896799, -0.04378985986113548, -0.006100495811551809, 0.04236919432878494, 0.007674367632716894, -0.04114352539181709, -0.044207699596881866, 0.005202135071158409, 0.011490659788250923, 0.012890431098639965, 0.005525962449610233, -0.009930715896189213, -0.05501588433980942, 0.007430626545101404, 0.02197849750518799, 0.02722938172519207, -0.02052997797727585, -0.010752472095191479, 0.034820180386304855, -0.002362549304962158, -0.007911144755780697, -0.008788613602519035, -0.0288868211209774, 0.00445698294788599, -0.03156101331114769, -0.011372270993888378, 0.02075282670557499, -0.015237310901284218, 0.03512659668922424, 0.01011178083717823, -0.0031233702320605516, -0.01956894062459469, 0.005268293432891369, -0.011971178464591503, 0.0017566781025379896, 0.018942177295684814, 0.023719506338238716, 0.00559560302644968, 0.004223688039928675, 0.015515872277319431, -0.012368127703666687, 0.010634083300828934, -0.015613368712365627, -0.010021247901022434, 0.0009540729224681854, 0.012333308346569538, -0.00891396589577198, 0.017646867781877518, 0.00494098337367177, -0.015613368712365627, -0.023566298186779022, 0.016783326864242554, -0.013942000456154346, 0.01763293892145157, -0.010432126000523567, 0.0005919430404901505, 0.04131066054105759, -0.012117423117160797, 0.018635760992765427, -0.025181954726576805, 0.007451518438756466, 0.011999034322798252, -0.00141631078440696, 0.02792578563094139, 0.012166171334683895, 8.356843318324536e-05, 0.012841682881116867, 0.00217452016659081, 0.041839927434921265, 0.005142940673977137, 0.027758648619055748, 0.02724330872297287, -0.023301664739847183, 0.001383231719955802, -0.0011325263185426593, 0.016574405133724213, -0.003948608413338661, -0.008001677691936493, -0.0013414474669843912, -0.02001463994383812, 0.02433234266936779, -0.03161672502756119, 0.030725326389074326, 0.02047426626086235, 0.0005662631592713296, 0.006218884140253067, 0.0017096708761528134, -0.031171025708317757, 0.004913127515465021, 0.0038580759428441525, -0.014889108948409557, -0.011288702487945557, -0.0038023637607693672, 0.010125708766281605, 0.02696474827826023, 0.010940500535070896, -0.03259168937802315, 0.029833931475877762, 0.005630423314869404, 0.015098030678927898, 0.01665797457098961, -0.012235810980200768, -0.01508410181850195, 0.0008813858148641884, -0.011490659788250923, -0.008872182108461857, 0.004996696021407843, -0.03546087071299553, 0.011525480076670647, 0.03395663946866989, 0.045934781432151794, 0.024165205657482147, -0.028998246416449547, 0.015125886537134647, 0.035293735563755035, 0.038190774619579315, 0.022354556247591972, -0.006288524717092514, 0.006828237324953079, -0.001512936782091856, 0.017716508358716965, -0.023775219917297363, 0.005654797423630953, 0.02600371092557907, 0.006250222213566303, 0.0038894142489880323, -0.02263311669230461, -0.021504944190382957, -0.01956894062459469, 0.0144434105604887, -0.008865217678248882, -0.008788613602519035, -0.015348735265433788, -0.002888333983719349, -0.01483339723199606, -0.04799613729119301, 0.0008674577693454921, 0.029026102274656296, 0.004140119533985853, 0.02125423774123192, -0.011894573457539082, 0.015334807336330414, -0.018398983404040337, -0.00039825582643970847, -0.011636904440820217, -0.0024966069031506777, -0.03398449718952179, 0.009025391191244125, -0.02189492993056774, 0.008468267507851124, 0.0024739739019423723, 0.029583225026726723, -0.01110763754695654, -0.014861253090202808, -0.0019969374407082796, -0.004648494068533182, 0.024401983246207237, -0.0007255655364133418, -0.008788613602519035, 0.008231490850448608, -0.01594764180481434, 0.03278668224811554, -0.04696545749902725, 0.0034524209331721067, 0.028023282065987587, -0.0006171877030283213, -0.03562800958752632, 0.01362861879169941, -0.004895717371255159, -0.01976393349468708, -0.014255382120609283, -0.013238633051514626, 0.017493657767772675, -0.012298488058149815, -0.021128885447978973, 0.008788613602519035, 0.04872039705514908, 0.005992553196847439, -0.007932037115097046, -0.0035029102582484484, -0.007061532698571682, -0.028399338945746422, 0.024457694962620735, 0.004947947803884745, 0.031421732157468796, 0.02647726610302925, -0.0012509149964898825, -0.003948608413338661, -0.002599326428025961, -0.014735900796949863, -0.004989732056856155, -0.026129063218832016, -0.009164671413600445, 0.03395663946866989, 0.007709187921136618, 0.011205133982002735, 0.02143530361354351, -0.04434698075056076, 0.01617049239575863, -0.014972677454352379, 0.010550514794886112, 0.01555765699595213, 0.01828755810856819, -0.011525480076670647, 0.030446765944361687, 0.02891467697918415, -0.01218706276267767, 0.04312131181359291, -0.015376592054963112, -0.0011777925537899137, 0.023914499208331108, 0.005787114147096872, 0.014930893667042255, -0.00015331761096604168, 0.006675028707832098, -0.013308272697031498, 0.025697292760014534, -0.010940500535070896, 0.016295844689011574, -0.01761901192367077, -0.029053958132863045, -0.041338518261909485, -0.009519836865365505, -0.020432481542229652, 0.007277417927980423, -0.013433625921607018, -0.03543301671743393, -0.05618584156036377, 0.015181598253548145, -0.0012117422884330153, -0.002917931182309985, -0.005229990929365158, 0.01408824510872364, 0.016240132972598076, -0.014847325161099434, 0.012563121505081654, 0.00014036885113455355, 0.004833041224628687, 0.01094746496528387, -0.0028204345144331455, 0.006166654173284769, -0.0008983606821857393, -0.015098030678927898, 0.011031033471226692, -0.002743830205872655, -0.01594764180481434, -0.0014511310728266835, -0.024931248277425766, 0.03259168937802315, 0.01218706276267767, 0.012681509368121624, -0.03420734405517578, 0.0012030372163280845, -0.026686185970902443, -0.032201703637838364, 0.014185741543769836, -0.0031756004318594933, 0.010035175830125809, -0.014763756655156612, 0.0265190489590168, -0.01664404571056366, 0.0005445005954243243, -0.005317041650414467, 0.019095387309789658, 0.007987749762833118, 0.010543550364673138, -0.03200671076774597, 0.0068804677575826645, -0.0006102236802689731, -0.0042898464016616344, 0.006072639487683773, -0.002155369147658348, 0.023190239444375038, -0.003941644448786974, -0.011351378634572029, 0.015153742395341396, -0.00717992102727294, 0.010369449853897095, -0.021630296483635902, 0.047856856137514114, -0.0007138137007132173, 0.009582513943314552, -0.013071496039628983, 0.013524157926440239, -0.027312949299812317, -0.00015734368935227394, 0.0007407993543893099, -0.014213597401976585, -0.011901537887752056, 0.019206810742616653, 0.003875486087054014, 0.018203990533947945, -0.010132672265172005, -0.024666616693139076, 0.010425161570310593, 0.022716686129570007, 0.007367950398474932, -0.03888717666268349, 0.06211920082569122, 0.02647726610302925, 0.008461304008960724, 0.01614263653755188, -0.012200991623103619, 0.02551622875034809, -0.016476908698678017, 0.0003814985975623131, -0.005560782738029957, -0.03493160381913185, 0.011574228294193745, -0.024193061515688896, 0.01119120605289936, 0.016741542145609856, -0.010202312842011452, 0.006553158164024353, 0.01707581616938114, -0.0090393191203475, 7.39928800612688e-05, -0.005581675097346306, 0.0481354184448719, -0.006622798275202513, -0.010919608175754547, -0.0068804677575826645, 0.01810649409890175, -0.030223917216062546, -0.008544872514903545, -0.009791434742510319, -0.007806684356182814, -0.0015024908352643251, -0.024388054385781288, 0.016031211242079735, -0.015460160560905933, 0.019819647073745728, 0.043984852731227875, -0.003058952745050192, 0.0039277165196835995, 0.013788791373372078, -0.0090462826192379, 0.029471801593899727, 0.003299212083220482, -0.026351911947131157, 0.004742508754134178, 0.0037919175811111927, 0.02505660243332386, 0.016086922958493233, -0.009888931177556515, -0.004766882862895727, 0.0061562079936265945, -0.015334807336330414, 0.00020837702322751284, -0.007263489533215761, 0.03080889582633972, -0.024179132655262947, -0.009004498831927776, -0.034095920622348785, 0.051673147827386856, 0.01731259375810623, -0.002371254377067089, -0.009136815555393696, 0.006239776499569416, 0.028775397688150406, 0.05423591285943985, 0.007904181256890297, -0.004136637318879366, -0.014610547572374344, 0.015209455043077469, -0.04047497734427452, -0.010188384912908077, -0.010097851976752281, 0.008642368949949741, 0.001778440666384995, -0.03780078887939453, -0.005982107017189264, -0.024443766102194786, -0.005104638636112213, 0.012214919552206993, 0.03462518751621246, -0.02189492993056774, -0.011170313693583012, -0.014582691714167595, -0.016797255724668503, 0.026630474254488945, -0.04186778515577316, -0.025989782065153122, 0.008705045096576214, -0.023287735879421234, -0.023204168304800987, 0.011532443575561047, 0.011657796800136566, 0.01995892822742462, -0.007071978412568569, 0.014471267350018024, -0.009471088647842407, -0.008489159867167473, 0.01194332167506218, -0.026686185970902443, -0.030753184109926224, -0.016588333994150162, 0.0026637439150363207, -0.000651137379463762, -0.011407091282308102, 0.026644401252269745, 0.005317041650414467, -0.009951607324182987, -0.0577736422419548, -0.001383231719955802, 0.00037975760642439127, -0.019220739603042603, -0.014610547572374344, 0.024931248277425766, 0.008886110037565231, -0.03830219805240631, -0.0012822531862184405, -0.01713152788579464, 0.025739077478647232, -0.026909034699201584, -0.03548872843384743, -0.007952929474413395, -0.01360076293349266, 0.025446588173508644, -0.032424550503492355, -0.01215224340558052, -0.014081280678510666, -0.020599618554115295, -0.027285093441605568, -0.02894253470003605, 0.015515872277319431, 0.027117956429719925, -0.00805738940834999, -0.027911856770515442, -0.04186778515577316, -0.01908145844936371, -0.0241094920784235, -0.027312949299812317, -0.024206988513469696, -0.01374004315584898, -0.0035969247110188007, -0.01923466846346855, -0.03423520177602768, 0.004571889527142048, 0.006779489107429981, -0.006187546066939831, -0.007138136774301529, 0.008955750614404678, -0.03663083165884018, -0.00030380606767721474, -0.03392878547310829, -0.011393163353204727, 0.005080264527350664, -0.034569475799798965, 0.03454161807894707, 0.016059067100286484, 0.021881001070141792, 0.024680543690919876, -0.004752954468131065, 0.028803253546357155, -0.0018942177994176745, -0.013935036025941372, -0.00026028085267171264, -0.016462981700897217, 0.006988410372287035, -0.012298488058149815, 0.019332164898514748, 0.035544440150260925, -0.020153921097517014, -0.011400126852095127, 0.04679832234978676, 0.004018248990178108, 0.0019673402421176434, -0.01708974502980709, -0.0034297876991331577, -0.007806684356182814, 0.014721971936523914, 0.012214919552206993, -0.001303145196288824, -0.0008574469247832894, 0.0017027067951858044, -0.03587871417403221, -0.022828109562397003, -0.007082424592226744, -0.006441733334213495, 0.015098030678927898, -0.02122638188302517, -0.0027856144588440657, -0.045934781432151794, -0.013447553850710392, -0.0007468928815796971, -0.001102058682590723, 0.0031877874862402678, -0.014721971936523914, 0.022270986810326576, 0.0144434105604887, -0.02966679446399212, 0.020655330270528793, -0.004707688465714455, 0.038190774619579315, -0.004718134645372629, 0.003868522122502327, -0.004119227174669504, -0.00403565913438797, 0.012960070744156837, 0.013217740692198277, 0.006100495811551809, -0.007925072684884071, -0.012221883051097393, -0.016797255724668503, 0.027647223323583603, -0.0018071673111990094, -0.009693938307464123, 0.026714041829109192, 0.01097532082349062, -0.005985589232295752, -0.011135493405163288, 0.014471267350018024, -0.005327487830072641, 0.0004922702792100608, -0.010202312842011452, 0.00517776096239686, 0.014401626773178577, 0.006925733759999275, -0.01516767032444477, -0.0031077011954039335, 0.011003176681697369, -0.005491142626851797, 0.004732062574476004, -0.011824932880699635, -0.009471088647842407, 0.020627474412322044, 0.009213419631123543, -0.003892896231263876, 0.003983428701758385, -0.0530938096344471, 0.014373770914971828, 0.026087278500199318, 0.0005962955765426159, 0.004812148865312338, 0.021811360493302345, -0.017883645370602608, -0.0026881180237978697, 0.012953107245266438, 0.02406770922243595, -0.012061710469424725, 0.010306773707270622, -0.002700305078178644, 0.027856145054101944, 0.000732094282284379, 0.03261954337358475, -0.01881682500243187, -0.027368661016225815, -0.012813826091587543, -0.008851289749145508, 0.021128885447978973, 0.02029320038855076, 0.0013370949309319258, 0.02383093163371086, -0.005052408203482628, 0.001981268171221018, 0.03033534064888954, 0.000700320873875171, 9.673481690697372e-05, 0.02988964319229126, 0.012486516498029232, 0.00925520434975624, 0.02119852602481842, -0.005539890844374895, -0.025947999209165573, 0.025363018736243248, 0.027619367465376854, -0.019875358790159225, -0.01266061794012785, -0.025488372892141342, -0.011518515646457672, 0.015989426523447037, -0.00891396589577198, 0.005759257823228836, -0.0012108717346563935, 0.01661618985235691, 0.005407574120908976, -0.022493837401270866, 0.04000142216682434, 0.003448938950896263, -0.022312771528959274, -0.0026637439150363207, -0.008106137625873089, 0.008377735503017902, -0.03880360722541809, 0.02702045999467373, 0.006267632357776165, -0.009937679395079613, -0.0032713559921830893, 0.006072639487683773, -0.017521515488624573, -0.023733435198664665, -0.0169086791574955, -0.022465979680418968, 0.0060587115585803986, -0.014081280678510666, 0.006271114572882652, 0.0002478761598467827, 0.013837539590895176, 0.018203990533947945, 0.0012291523162275553, 0.006330308970063925, -0.009088067337870598, -0.009359664283692837, -0.007381878327578306, 0.00607960345223546, -0.034569475799798965, 0.023287735879421234, -0.025460515171289444, -0.015181598253548145, 0.0034036727156490088, -0.02436019852757454, 0.00942234043031931, -0.014123065397143364, -0.0002933600335381925, -4.3770054617198184e-05, 0.006225848104804754, 0.010822111740708351, -0.00794596504420042, -0.0028744058217853308, 0.009833218529820442, 0.003844148013740778, -0.004554479382932186, -0.0012413394870236516, -0.0010837781010195613, -0.008858254179358482, -0.00770222395658493, -0.0061109415255486965, -0.004080925136804581, 0.0004796479770448059, -0.011616012081503868, 0.027647223323583603, -0.004004320595413446, 0.00901842676103115, 0.02165815234184265, 0.019875358790159225, 0.008551836013793945, -0.008593620732426643, -0.008015605621039867, -0.00021011802891734987, -0.000683781283441931, 0.004495285451412201, 0.00011653879482764751, 0.009666082449257374, 0.0012204473605379462, 0.041812073439359665, 0.0063268267549574375, -0.020070351660251617, 0.025404803454875946, -0.009401449002325535, -0.00012687603884842247, -0.011441911570727825, 0.013928072527050972, -0.013921108096837997, -0.0015799656976014376, -0.015613368712365627, -0.010125708766281605, 0.013663439080119133, -0.01615656353533268, 0.004481357056647539, -0.027438301593065262, -0.011156385764479637, 0.004324666224420071, -0.052620258182287216, 0.00693617993965745, -0.015195527113974094, 0.013168992474675179, 0.01287650316953659, 0.0071938494220376015, 0.050001777708530426, 0.006971000228077173, -0.00963822565972805, 0.025989782065153122, 0.029026102274656296, -0.01070372387766838, -0.020362840965390205, -0.005609530955553055, 0.012096530757844448, 0.003603888675570488, 0.017897572368383408, 0.007068496663123369, -0.017201168462634087, 0.006285042501986027, -0.0013449294492602348, -0.018733257427811623, 0.02672797068953514, -0.001335353939794004, -0.005564264953136444, -0.0007412345730699599, -0.017061889171600342, 0.018983962014317513, 0.018677545711398125, -0.048803966492414474, 0.0024339305236935616, 0.012005997821688652, 0.0013954187743365765, 0.00022654880012851208, -0.013698259368538857, -0.020181776955723763, -0.003203456522896886, 0.0030763628892600536, -0.014039496891200542, -0.0409763865172863, 0.006911805830895901, -0.017006175592541695, 0.020084280520677567, -0.023078816011548042, 0.023259880021214485, 0.019095387309789658, 0.010898716747760773, -0.027535798028111458, 0.029555369168519974, -0.0069535900838673115, 0.016212275251746178, -0.014241454191505909, 0.006462625693529844, 0.00925520434975624, -0.012012962251901627, 0.011852789670228958, 0.007737044245004654, -0.027870072051882744, -0.004899199586361647, 0.003024132689461112, -0.0005510293412953615, -0.008635404519736767, -0.023803075775504112, -0.009192527271807194, 0.013990748673677444, 0.03426305577158928, -0.016086922958493233, -0.007256525568664074, 0.01143494714051485, 0.004787774756550789, -0.01134441513568163, 0.030474621802568436, -0.019220739603042603, -0.006946626119315624, 0.006016927305608988, -0.013134172186255455, 0.033120956271886826, 0.0004931408329866827, 0.02553015574812889, -0.012005997821688652, 0.010996213182806969, 0.012166171334683895, 0.02001463994383812, -0.005936840549111366, 0.03189528360962868, -0.027034388855099678, -0.015306951478123665, -0.0033827805891633034, 0.007214741315692663, 0.00352206127718091, 0.0026202185545116663, -0.00487134326249361, 0.0025192401371896267, -0.007597763556987047, -0.013468446210026741, -0.00925520434975624, -0.002035239478573203, -0.014694116078317165, 0.011511551216244698, 0.003945126663893461, -0.0313381627202034, -0.001254396978765726, -0.03248026594519615, 0.017424019053578377, 0.009937679395079613, 0.024262702092528343, 0.0012030372163280845, -0.02629620023071766, 0.012632761150598526, 0.013558978214859962, -0.01614263653755188, 0.02846897952258587, 0.013997712172567844, 0.0144434105604887, 0.0037605795077979565, -0.002808247460052371, 0.0026028084103018045, 0.014074317179620266, 0.004641530103981495, 0.0058915745466947556, 0.0027943195309489965, 0.010278916917741299, -0.01810649409890175, -0.0067864530719816685, -0.007065014448016882, -0.00019074929878115654, 0.011281738057732582, 0.020418554544448853, 0.010097851976752281, -0.004317702259868383, 0.0012134832795709372, -0.02555801160633564, -0.0023590673226863146, -0.013809683732688427, -0.006626280490309, -0.018371127545833588, -0.029026102274656296, -0.011414054781198502, -0.0009427563636563718, -0.04147779941558838, 0.0192764513194561, -0.001181274652481079, 0.03014034777879715, 0.014401626773178577, -0.025112314149737358, -0.006950107868760824, 0.0024652688298374414, 0.027299022302031517, 0.012967035174369812, 0.00869111716747284, 0.0027229380793869495, 0.00025853983242996037, -0.005125530529767275, -0.004446537233889103, 0.005327487830072641, -0.008530944585800171, -0.020864252001047134, 0.010613190941512585, -0.0018715846817940474, 0.001981268171221018, 0.023050960153341293, -0.009129851125180721, 0.004547515418380499, 0.00818970613181591, 0.014889108948409557, 0.005985589232295752, 0.030530333518981934, 0.02913752757012844, 0.0169086791574955, 0.005752293858677149, 0.0301124919205904, -0.025961926206946373, 0.01707581616938114, -0.0059403227642178535, 0.02027927339076996, 0.027591511607170105, -0.01374004315584898, 0.014680188149213791, -0.028580404818058014, -0.013879324309527874, -0.011044961400330067, 0.019220739603042603, 0.022758470848202705, -0.006490481551736593, 0.02483375184237957, -0.0034419747535139322, -0.005330969579517841, -0.01899789087474346, 0.0032713559921830893, -0.028636116534471512, -0.001463318127207458, -0.013155064545571804, -0.024165205657482147, 0.0017436204943805933, -0.006065675523132086, 0.024764113128185272, 0.013329165056347847, 0.0064730714075267315, 0.02919323928654194, 0.011365306563675404, 0.004484839271754026, -0.005985589232295752, -0.021839216351509094, -0.026170847937464714, 0.0025279452092945576, -4.064168024342507e-05, -0.02100353315472603, -0.020307129248976707, -0.005191688891500235, 0.013210776261985302, -0.017911501228809357, -0.009673045948147774, 0.006817791145294905, 0.017465801909565926, 0.004638047888875008, -0.01398378424346447, -0.01810649409890175, 0.011873681098222733, -0.03515445441007614, -2.5258232199121267e-05, -0.0064974455162882805, 0.007987749762833118, 0.010724615305662155, 0.013022747822105885, 0.011232989840209484, 0.011685652658343315, 0.009108958765864372, 0.02479196898639202, -0.009310916066169739, -0.03256383165717125, 0.01786971651017666, 0.007890253327786922, 0.01593371480703354, -0.017953285947442055, -0.030697470530867577, 0.0009479793952777982, -0.015613368712365627, 0.03465304523706436, -0.03518231213092804, 0.004373414441943169, -0.016476908698678017, 0.02020963281393051, -0.01661618985235691, -0.002277239691466093, -0.023789146915078163, -0.008830397389829159, -0.021881001070141792, -0.010195348411798477, -0.005912466440349817, 0.005693099461495876, 0.0002309013216290623, 0.0180925652384758, 0.010550514794886112, 0.011616012081503868, 0.04044712334871292, -0.02697867527604103, 0.005289185326546431, 0.013468446210026741, -0.01529302354902029, 0.0007172957411967218, -0.02916538342833519, 0.0005497236270457506, -0.00037845183396711946, 0.01312720775604248, 0.013057568110525608, -0.015571584925055504, 0.030502477660775185, -6.6430373408366e-05, 0.020334985107183456, 0.01880289800465107, 0.016769398003816605, -0.002533168066293001, -0.015515872277319431, -0.005365789867937565, 0.018607905134558678, 0.0004713781818281859, -0.01167172472923994, 0.004965357948094606, -0.009276095777750015, 0.028273986652493477, 0.022563476115465164, -0.004909645300358534, -0.017521515488624573, 0.015836218371987343, -0.028524691238999367, -0.00952680129557848, 0.004853933118283749, -0.016449052840471268, -0.011017105542123318, -0.01881682500243187, 0.021393518894910812, -0.012785970233380795, -0.005282221361994743, 0.004679832141846418, 0.015599440783262253, -0.038441479206085205, -0.0017436204943805933, 0.023454872891306877, -0.009122887626290321, 0.012235810980200768, 0.011058889329433441, -0.004133155569434166, -0.010076960548758507, 0.004495285451412201, 0.003184305503964424, -0.01855219155550003, 0.0003416730323806405, 0.012040818110108376, -0.016588333994150162, 0.015195527113974094, -0.00032861545332707465, 0.050503190606832504, -0.004526623524725437, 0.022117778658866882, 0.016811182722449303, 0.025418732315301895, 0.008391663432121277, 0.0008147922344505787, -0.008029533550143242, 0.016100851818919182, -0.008955750614404678, -0.0126466890797019, -0.009561621583998203, -0.0022006353829056025, 0.0004102252423763275, -0.02502874657511711, 0.013322200626134872, -0.0029544923454523087, 0.005296149291098118, -0.00034776655957102776, -0.015613368712365627, 0.014123065397143364, -0.00500714173540473, 0.004550997633486986, -0.004547515418380499, -0.013315237127244473, 0.016226204112172127, 0.013942000456154346, -0.012263667769730091, 0.0010846486547961831, -0.006142279598861933, -0.01408824510872364, -0.012597940862178802, 0.0065427119843661785, -0.014185741543769836, -0.0032400176860392094, 0.009081102907657623, 0.001866361708380282, 0.010829076170921326, -0.017006175592541695, -0.00607960345223546, 0.001230022870004177, 0.003137298161163926, 0.029833931475877762, 0.011546371504664421, 0.010675867088139057, 0.008607548661530018, -0.00042350043077021837, -0.014171813614666462, 0.02264704555273056, 0.0041470834985375404, -0.00258888048119843, -0.023942356929183006, -0.01338487770408392, 0.005334451794624329, 0.035293735563755035, 0.02986178733408451, 0.010592298582196236, 0.005285703577101231, 0.025864429771900177, -0.01761901192367077, 0.01433198619633913, 0.023427017033100128, 0.006765561178326607, -0.009554657153785229, 0.022800253704190254, 0.011838861741125584, -0.030502477660775185, 0.003983428701758385, -0.008879145607352257, 0.017298664897680283, 0.019917143508791924, 0.02025141753256321, -0.016240132972598076, 0.02101746015250683, 0.01665797457098961, 0.005877646617591381, 0.006671546492725611, 0.020139992237091064, -0.0004143601399846375, 0.002700305078178644, 0.013948963955044746, 0.014304130338132381, 0.008001677691936493, 0.0016617930959910154, -0.011469767428934574, -0.010278916917741299, -0.003490723203867674, -0.011957249604165554, -0.005710509605705738, 0.02117067016661167, 0.002985830418765545, 0.01540444791316986, -0.004007802810519934, 0.014624475501477718, -0.013350057415664196, -0.0036317447666078806, 0.013287381269037724, -0.006939662154763937, -0.024889465421438217, 0.0007939001079648733, 0.01508410181850195, -0.006988410372287035, 0.014694116078317165, -0.0029301182366907597, -0.02624048851430416, -0.00893485825508833, -0.004286364186555147, -0.005992553196847439, 0.009429304860532284, -0.004902681335806847, 0.010822111740708351, -0.0007155546918511391, -0.017660794779658318, -0.0026881180237978697, -0.017995068803429604, 0.006636726204305887, -0.013719150796532631, -0.007298309821635485, 0.019819647073745728, -0.013301309198141098, -0.0006776877562515438, 0.00869808066636324, -0.007952929474413395, 0.027605438604950905, -0.015237310901284218, 0.007639547809958458, 0.007820612750947475, -0.011504587717354298, -0.00976357888430357, 0.009032354690134525, -0.005097674205899239, 0.008927893824875355, -0.008649332448840141, -0.0031634133774787188, -0.021128885447978973, -0.00044221628922969103, 0.0021623331122100353, -0.004739026539027691, 0.010188384912908077, 0.0003201280196662992, 0.015279095619916916, -0.007827576249837875, -0.0036491549108177423, -0.010550514794886112, 0.019624654203653336, -0.008551836013793945, -0.0030223915819078684, 0.002564506372436881, -0.018691472709178925, 0.011448875069618225, -0.005884610582143068, -0.009937679395079613, 0.03919359669089317, 0.00403914088383317, -0.0031390392687171698, 0.0036387089639902115, -0.0069292159751057625, 0.01688082329928875, 0.017786148935556412, 0.004450018983334303, 0.012082602828741074, 0.02149101532995701, -0.003861557925119996, -0.0007577741635031998, -0.006779489107429981, -0.03156101331114769, 1.7784135479814722e-06, 0.006528784055262804, -0.0021605922374874353, 0.005059372168034315, -0.003226089756935835, -0.00939448457211256, -0.028385411947965622, -0.009868038818240166, 0.019415732473134995, 0.018412912264466286, -0.008858254179358482, 0.010341593995690346, 0.004143601283431053, 0.008475231938064098, -0.02653297781944275, -0.012521336786448956, -0.02072497084736824, -0.0004866120289079845, 0.017465801909565926, 0.0012587495148181915, 0.008600584231317043, -0.015738721936941147, 0.00794596504420042, -0.005710509605705738, 0.016337629407644272, -0.009561621583998203, 0.01852433569729328, -0.009561621583998203, 0.0005558171542361379, 0.03560015186667442, 0.00893485825508833, 0.012765077874064445, 0.012131351046264172, 0.019137172028422356, -0.005654797423630953, -0.026407625526189804, 0.018719328567385674, -0.007131172809749842, 0.027758648619055748, -0.025947999209165573, -0.02245205268263817, -0.007674367632716894, 0.002632405608892441, 0.008461304008960724, -0.016003355383872986, -0.010696759447455406, 0.0025296860840171576, -0.009603405371308327, 0.011093709617853165, -0.006020409055054188, -0.0025000888854265213, 0.01611477881669998, -0.002188448328524828, -0.0014180518919602036, 0.00976357888430357, 0.015265166759490967, 0.01924859546124935, -0.012354199774563313, -0.0006768172606825829, 0.010982285253703594, 0.013405769132077694, -0.007569907233119011, 0.016992248594760895, 0.008064353838562965, 0.0004739896976388991, 0.03270311281085014, -0.011003176681697369, 0.00988196674734354, 0.011657796800136566, -0.0019168509170413017, -0.01062015537172556, -0.011762256734073162, 0.0019272969802841544, -0.00265677971765399, 0.028051137924194336, 0.010550514794886112, 0.005278739146888256, -0.0032191257923841476, -0.008628441020846367, 0.02362200990319252, 0.004056551028043032, -0.0026881180237978697, -0.01456876378506422, 0.011170313693583012, -0.009303952567279339, 0.018747184425592422, 0.025683365762233734, 0.016435125842690468, 0.001913368934765458, -0.007723115850239992, 0.03250811994075775, -0.017995068803429604, -0.013733078725636005, -0.01878896914422512, -0.00621192017570138, 0.0026898588985204697, -0.028120778501033783, 0.002341657178476453, -0.02213170751929283, -0.012033854611217976, 0.002937082201242447, -0.0001584318233653903, -0.02144923061132431, -0.010801220312714577, 0.01360076293349266, 0.007200813386589289, 0.027159741148352623, 0.002632405608892441, 0.006821273360401392, 0.014721971936523914, 0.0015085843624547124, -0.011629940010607243, 0.011177278123795986, -0.01618441939353943, -0.018454695120453835, -0.010473910719156265, 0.00687002157792449, -0.004255026113241911, 0.026435481384396553, 0.006636726204305887, -0.0012683250242844224, 0.0228559672832489, -0.017159385606646538, 0.022284915670752525, 0.009812327101826668, -0.0018402464920654893, 0.018203990533947945, -0.014102173037827015, -0.008739865384995937, 0.021532800048589706, -0.025488372892141342, 0.007016266230493784, 0.010216240771114826, -0.024708399549126625, -0.0027856144588440657, -0.009143779054284096, 0.0036874571815133095, -2.6332761990488507e-05, 0.0017479730304330587, -0.021393518894910812, -0.015390519984066486, 0.009067174978554249, 0.039388589560985565, 0.0062780785374343395, -0.0071938494220376015, -0.008788613602519035, 0.004119227174669504, 0.0008047814480960369, 0.013210776261985302, 0.0018385055009275675, -0.008036497980356216, -0.011448875069618225, 0.028357554227113724, 0.0061318338848650455, 0.001238727942109108, 0.01948537304997444, -0.012570085003972054, -0.013767899014055729, -0.003924234304577112, -0.005668725352734327, 0.009366628713905811, 0.01688082329928875, -0.0031390392687171698, -0.011504587717354298, -0.01097532082349062, -0.022842038422822952, -0.0013623395934700966, 0.02387271635234356, -0.010564442723989487, 0.015961570665240288, -0.0002515758096706122, -0.025181954726576805, 0.001955153187736869, -0.02941608801484108, 0.0028987799305468798, 0.002759499242529273, 0.019833574071526527, 0.016727615147829056, 0.014582691714167595, -0.025140170007944107, 0.01782793179154396, 0.010069996118545532, -0.012792934663593769, 0.02696474827826023, -0.009819290600717068, 0.017201168462634087, 0.0016713686054572463, -0.006681992672383785, -0.010585335083305836, 0.00255754217505455, -0.002019570441916585, -0.025488372892141342, 0.005874164402484894, -0.007479374762624502, 0.002999758580699563, -0.020613547414541245, -0.0024478586856275797, 0.031366016715765, -0.0007812777766957879, -0.016964392736554146, 0.016281915828585625, 0.02913752757012844, -0.0021205490920692682, 0.004481357056647539, 0.0027943195309489965, 0.00428288197144866, 0.0008809505379758775, -0.01975000649690628, 0.007078942842781544, -0.0017227284843102098, 0.016254059970378876, 0.02047426626086235, -0.017674723640084267, 0.015153742395341396, -0.006622798275202513, 0.00030032405629754066, 0.010000355541706085, -0.004617155995219946, 0.004700724501162767, -0.005672207567840815, -0.007089388556778431, -0.0039764647372066975, 0.012124386616051197, 0.012319379486143589, -0.015850145369768143, 0.010167492553591728, -0.01951322890818119, 0.0019969374407082796, -0.031031744554638863, 0.0033026940654963255, 0.018858609721064568, -0.03534944728016853, 0.00038650399073958397, 0.016100851818919182, 0.016267988830804825, -0.011037996970117092, 0.008816469460725784, 0.025711221620440483, 0.018928250297904015, 0.0054354299791157246, 0.008496124297380447, -0.00844737607985735, 0.026658330112695694, -0.00989589560776949, -0.02098960429430008, 0.011650832369923592, -0.024903392419219017, -0.007764900103211403, 0.0029405641835182905, 0.03415163233876228, -0.022730613127350807, -0.012973999604582787, 0.0032678740099072456, 0.00866326130926609, 0.011873681098222733, -0.006459143478423357, -0.0301124919205904, -0.0008182742167264223, 0.0017932392656803131, 0.0025453551206737757, -0.00014863864635117352, -0.007479374762624502, 0.005532926879823208, 0.01734044961631298, 0.019596798345446587, 0.02406770922243595, -0.008168814703822136, 0.004742508754134178, 0.007862396538257599, 0.013900215737521648, -0.01193635817617178, 0.01667190156877041, -0.006065675523132086, -0.0067098489962518215, 0.018900394439697266, 0.03014034777879715, 0.003203456522896886, -0.01661618985235691, -0.00015810538025107235, 0.015975499525666237, 0.016783326864242554, -0.006612352095544338, 0.010160529054701328, -0.007409734185785055, -0.0193182360380888, 0.009965535253286362, -0.004808667115867138, -0.017479730769991875, 0.002512275939807296, -0.007618655450642109, 0.009095030836760998, 0.02795364148914814, 0.009686973877251148, -0.05209099128842354, 0.027410445734858513, 0.0071451012045145035, 0.0032400176860392094, 0.0003758403181564063, 0.0071938494220376015, 0.007430626545101404, -0.003274837974458933, -0.004126191604882479, 0.0014702820917591453, 0.009777506813406944, -0.0015338289085775614, 0.002212822437286377, 0.0156690813601017, -0.020334985107183456, 0.008572728373110294, -0.019443588331341743, 0.028636116534471512, -0.00728438189253211, -0.003878968069329858, 0.03543301671743393, 0.029833931475877762, 0.02459697611629963, 0.0010724616004154086, -0.02746615745127201, -0.022577404975891113, -0.015348735265433788, 0.009868038818240166, 0.001424145419150591, -0.0060865674167871475, -0.011302630417048931, 0.02069711498916149, -0.022995246574282646, 0.012012962251901627, 0.008342915214598179, 0.0006959683378227055, -0.0277029350399971, 0.006441733334213495, 0.008398627862334251, 0.01663011871278286, 0.01617049239575863, 0.0010158787481486797, 0.015390519984066486, -0.00656012212857604, -0.017995068803429604, -0.0025453551206737757, 0.018412912264466286, -0.006072639487683773, 0.0032678740099072456, -0.021797433495521545, -0.01805078238248825, -0.0010663680732250214, 0.0032347948290407658, 0.016783326864242554, -0.002050908515229821, 0.004770364612340927, -0.004550997633486986, -0.01011178083717823, 0.021296022459864616, -0.0014937857631593943, 0.013677367009222507, 0.018259702250361443, 0.015613368712365627, -0.004947947803884745, -0.0038720041047781706, -0.004651976283639669, -0.012925251387059689, -0.00963126216083765, -0.014540906995534897, -0.012577049434185028, 0.0018942177994176745, 0.017967212945222855, -0.0062780785374343395, 0.01073854323476553, -0.009241275489330292, 0.005236955359578133, -0.005832380149513483, -0.016783326864242554, 0.007806684356182814, 0.031978853046894073, -0.02819041721522808, -0.012869538739323616, 0.0035098742228001356, -0.005282221361994743, 0.032145991921424866, 0.012465624138712883, 0.019387876614928246, 0.008927893824875355, 0.008412555791437626, -0.017424019053578377, 0.009157707914710045, -0.005153386853635311, 0.03429091349244118, 0.004248062148690224, 0.0029945354908704758, 0.0032765790820121765, 0.009429304860532284, -0.004655458033084869, 0.010585335083305836, 0.00638602115213871, 0.0005018458468839526, -0.0019342610612511635, 0.017159385606646538, 0.02479196898639202, 0.004112263210117817, 0.012437768280506134, 0.005219545215368271, -0.03573943302035332, 0.027062244713306427, -0.005832380149513483, -0.004752954468131065, 0.027619367465376854, 0.024234846234321594, -0.001956894062459469, -0.011783149093389511, 0.00034145539393648505, -0.006427805405110121, -0.011720472946763039, -0.02871968410909176, -0.01398378424346447, 0.012716329656541348, 0.015864074230194092, 0.005936840549111366, -0.006894395686686039, -0.0204464104026556, -0.037717219442129135, -0.004220205824822187, 0.01565515249967575, -0.0065670860931277275, -0.015348735265433788, 0.01422056183218956, 0.011163350194692612, -0.011476731859147549, 0.018371127545833588, 0.0024321896489709616, -0.00766043970361352, -0.0018367645097896457, 0.011713508516550064, -0.014889108948409557, -0.016950463876128197, -0.009192527271807194, 0.0004979285877197981, -0.010717651806771755, 0.012354199774563313, -0.00735402200371027, -0.0023451391607522964, 0.0007651734631508589, 0.01615656353533268, 0.02869182825088501, 0.01229152362793684, -0.022340627387166023, -0.019415732473134995, 0.00614576181396842, -0.0014755051815882325, 0.009032354690134525, 0.0014328503748402, -0.006925733759999275, 0.019708221778273582, 0.006392985116690397, 6.604952795896679e-05, 0.009429304860532284, 0.024945177137851715, 0.01830148696899414, -0.00535186193883419, 0.01956894062459469, -0.014130028896033764, 0.00217452016659081, 0.010891752317547798, 0.015961570665240288, 0.010996213182806969, -0.0066402084194123745, -0.01590585894882679, 0.0021832252386957407, 0.006292006466537714, -0.015251238830387592, 0.0029980174731463194, 0.008851289749145508, -0.01618441939353943, 0.006608870346099138, 0.008001677691936493, 0.0204603374004364, -0.010376413352787495, -0.0024652688298374414, 0.010508730076253414, -0.02871968410909176, -0.008523980155587196, -0.024206988513469696, 0.0009296988137066364, -0.006285042501986027, 0.0033827805891633034, 0.0068317195400595665, -0.009680010378360748, 0.00869808066636324, -0.0019081458449363708, -0.01686689630150795, 0.003081585979089141, 0.005741847679018974, 0.004380378872156143, 0.0011769221164286137, -0.006298970431089401, -0.007402770221233368, 0.01529302354902029, -0.031700290739536285, -0.001559944124892354, 0.010480874218046665, -0.00396950077265501, 0.012932214885950089, 0.012451696209609509, 0.0014990087365731597, 0.013969856314361095, 0.023050960153341293, -0.004007802810519934, 0.01158815622329712, 0.004665904212743044, -0.01508410181850195, -0.015529800206422806, -0.009993392042815685, -0.0014990087365731597, 0.015042318031191826, -0.02069711498916149, -0.008656296879053116, -0.02022356167435646, -0.002561024157330394, 0.01714545674622059, -0.016281915828585625, -0.022730613127350807, -0.013733078725636005, -0.01337094884365797, -0.02289775013923645, -0.0019725633319467306, -0.009714830666780472, -0.004550997633486986, -0.015237310901284218, -0.0029736433643847704, -0.023009175434708595, -0.009519836865365505, 2.729847801674623e-05, -0.003899860195815563, 0.01385146751999855, -0.004467429127544165, -0.0039555723778903484, 0.016490837559103966, -0.005122048314660788, -0.0005270905094221234, 0.024889465421438217, -0.00045483862049877644, -0.013294344767928123, -0.008503087796270847, -0.0064243231900036335, -0.011650832369923592, -0.004805184900760651, 0.008872182108461857, -0.021797433495521545, 0.004195831716060638, 0.005518998485058546, -0.007138136774301529, -0.02866397239267826, 0.0035690683871507645, 0.008523980155587196, -0.005365789867937565, -0.0039068241603672504, 0.020139992237091064, 0.016100851818919182, -0.012758114375174046, -0.021574582904577255, -0.004791256971657276, 0.007827576249837875, -0.00164090096950531, -0.01481946837157011, 0.00541802030056715, -0.001480728155001998, 0.0069048418663442135, -0.014150921255350113, -0.0003329679893795401, -0.04983464255928993, 0.0005814970354549587, 0.009673045948147774, -0.030446765944361687, 0.008712009526789188, -1.3288795344124082e-05, -0.0027403482235968113, -0.0025192401371896267, 0.0059403227642178535, -0.0138723598793149, -0.005654797423630953, -0.008628441020846367, -0.019889287650585175, -0.018872538581490517, -0.005337933544069529, 0.024011995643377304, 0.005689617712050676, -0.01590585894882679, 0.015808362513780594, -0.002077023731544614, -0.009108958765864372, 0.0005888962768949568, -0.00938752107322216, -0.008475231938064098, 0.0036456729285418987, -0.0065183378756046295, 0.0048295590095222, 0.02239634096622467, 0.0021849663462489843, 0.02261918969452381, 0.0030937730334699154, -0.0010811665561050177, 0.006511373911052942, 0.002783873351290822, -0.010313737206161022, -0.006535748019814491, -0.01433198619633913, 0.007799720391631126, -0.012131351046264172, 0.006675028707832098, 0.0008509181789122522, 0.025585869327187538, -0.011003176681697369, -0.0205021221190691, 0.024624831974506378, 0.0069048418663442135, -0.009624297730624676, 0.0062049562111496925, 0.003997356630861759, -0.005494624376296997, -0.005306595470756292, 0.007590799126774073, -0.013315237127244473, -0.024457694962620735, -0.012688473798334599, -0.00040739611722528934, -0.014805540442466736, -0.017535442486405373, -0.0026115134824067354, 0.026379767805337906, 0.0034054135903716087, 0.010459981858730316, -0.023287735879421234, -0.0017758292378857732, 0.003603888675570488, 0.011525480076670647, 0.0032156435772776604, -0.010258025489747524, 0.003058952745050192, 0.004154047463089228, 0.007030194625258446, -0.0036004066932946444, -0.007625619415193796, 0.024206988513469696, -0.02189492993056774, 0.01660226285457611, 0.00845433957874775, 0.014304130338132381, -0.03189528360962868, 0.018371127545833588, 0.012765077874064445, 0.009826255030930042, 0.007542050909250975, -0.00777186406776309, 0.010202312842011452, 0.010292845778167248, -0.018747184425592422, -0.017981141805648804, -0.008280239067971706, -0.004613673780113459, 0.006243258249014616, 0.016574405133724213, -0.012918286956846714, -0.014290202409029007, 0.01119120605289936, -0.0035760325845330954, -0.012987927533686161, -0.023677723482251167, 0.016504766419529915, -0.013454517349600792, 0.050976745784282684, -0.005097674205899239, 0.005414538085460663, -0.01973607763648033, 0.011469767428934574, -0.0019272969802841544, -0.02268883027136326, 0.03540515899658203, -0.023454872891306877, 0.02551622875034809, 0.012946142815053463, 0.022089922800660133, 0.013489337638020515, -0.017730435356497765, -0.004077442921698093, 0.018468623980879784, 0.01132352277636528, 0.008941822685301304, -0.014652332291007042, -0.004547515418380499, -0.0025853984989225864, 0.010348557494580746, -0.00035407769610174, 0.020850323140621185, -0.004846969153732061, -0.005142940673977137, -0.004171457607299089, -0.015237310901284218, 0.009269132278859615, 0.02149101532995701, 0.02431841380894184, 0.004634566139429808, 0.0010689795017242432, -0.002178002381697297, 0.004227169789373875, 0.013238633051514626, -0.0006981446058489382, 0.006093531381338835, -0.0016696276143193245, -0.01215224340558052, -0.014471267350018024, -0.008510052226483822, -0.010613190941512585, 0.0013875841395929456, 0.021560655906796455, -0.02966679446399212, 0.009164671413600445, 0.011720472946763039, -0.01683903858065605, -0.0026637439150363207, 0.008328987285494804, 0.00303806085139513, 0.00027899668202735484, 0.0021188079845160246, 0.010160529054701328, 0.012124386616051197, 0.01218009926378727, 0.004136637318879366, 0.011650832369923592, -0.009101995266973972, 0.0002010865428019315, -0.002463527722284198, -0.016755471006035805, -0.0036700470373034477, -0.0008818210917524993, -0.007855433039367199, 0.0034715719521045685, -0.011351378634572029, -0.005480696447193623, -0.009345736354589462, -0.016727615147829056, -0.016295844689011574, 0.013134172186255455, -0.002919672057032585, 0.019109314307570457, 0.010557478293776512, 0.018176134675741196, -0.01683903858065605, -0.007054568734019995, -0.0024513406679034233, -0.007078942842781544, 0.022117778658866882, 0.009589477442204952, 0.019944999366998672, -0.011992069892585278, 0.011274774558842182, -0.028301842510700226, -0.007723115850239992, 0.021351734176278114, 0.011177278123795986, 0.008621476590633392, -0.007207777351140976, 0.007040640339255333, -0.0007421050686389208, 0.025906214490532875, 0.020669259130954742, 0.010278916917741299, 0.006466107442975044, 0.01615656353533268, -0.0031964925583451986, -0.006138797849416733, 0.007653475739061832, 0.004610192030668259, 0.006368611007928848, 0.02894253470003605, 0.0034315288066864014, -0.00566524313762784, 0.0241094920784235, 0.003945126663893461, -1.8647839169716462e-05, 0.024039853364229202, 0.004324666224420071, -0.001311850268393755, 0.02142137475311756, -0.007319201715290546, 0.008294166997075081, -0.015836218371987343, 0.022020282223820686, 0.0065670860931277275, -0.0014180518919602036, 0.0022232686169445515, -0.008983606472611427, -0.02846897952258587, -0.008600584231317043, -0.010675867088139057, -0.010773363523185253, -0.012653653509914875, -0.02913752757012844, -0.009227347560226917, -0.011351378634572029, 0.010049103759229183, -0.012458660639822483, 0.016462981700897217, -0.0032783199567347765, -0.00016180503007490188, 0.01975000649690628, -0.020153921097517014, 0.012611869722604752, -0.014972677454352379, -0.02334344945847988, -0.04562836512923241, -0.030251773074269295, 0.004561443813145161, 0.010167492553591728, 0.007750972174108028, -0.012166171334683895, 0.006765561178326607, 0.0023068368900567293, -0.008586656302213669, -0.016978319734334946, -0.008203634060919285, 0.007744008209556341, 0.0003075057175010443, 0.008705045096576214, -0.006852611433714628, -0.014136993326246738, -0.014652332291007042, -0.009972499683499336, -0.02629620023071766, -0.018872538581490517, 0.010578370653092861, 0.03395663946866989, -0.011901537887752056, -0.026602618396282196, -0.031254593282938004, -0.023454872891306877, 0.020822467282414436, 0.008391663432121277, 0.012737222015857697, -0.01611477881669998, 0.003328809281811118, -0.012040818110108376, 0.0018611386185511947, 0.013106316328048706, -0.018886465579271317, -0.003159931395202875, -0.0012726775603368878, -0.014276273548603058, -0.028608260676264763, -0.006584496237337589, 0.01924859546124935, 0.0029388233087956905, 0.002533168066293001, 0.00040891949902288616, -0.004885271191596985, -0.013865395449101925, -0.0029492692556232214, 0.020098207518458366, 0.0010820371098816395, -0.024457694962620735, 0.0074584828689694405, 0.013830576092004776, 0.0022232686169445515, -0.0014493899652734399, 0.02047426626086235, 0.020906036719679832, 0.02796756848692894, 0.01360772643238306, -0.01048783864825964, -0.010209277272224426, -0.013064531609416008, 0.0016217499505728483, -0.008788613602519035, -0.0015155483270063996, -0.002050908515229821, 0.013412733562290668, 0.019373947754502296, -0.018454695120453835, -0.0005688747041858733, 0.010390342213213444, 0.02022356167435646, -0.006340754684060812, 0.0018071673111990094, -0.005094192456454039, 0.0060378191992640495, 0.009868038818240166, -0.014373770914971828, -0.00070815539220348, -0.002599326428025961, -0.006288524717092514, 0.014136993326246738, 0.011044961400330067, -0.0027716862969100475, -0.014624475501477718, 0.018621832132339478, 0.008983606472611427, -0.0071938494220376015, -0.012960070744156837, -0.02653297781944275, 0.010376413352787495, -0.0022824627812951803, 0.015613368712365627, -0.015766577795147896, -0.016936535015702248, -0.023009175434708595, 0.011024069041013718, -0.007535086944699287, -0.0067133307456970215, 0.02026534453034401, 0.00818274263292551, 0.02098960429430008, 0.00548766041174531, 0.004913127515465021, -0.005442394409328699, 0.0033984496258199215, -0.011616012081503868, -0.004892235156148672, 0.03086460754275322, -0.004554479382932186, 0.021741719916462898, -0.017047960311174393, -0.009673045948147774, 0.0006367740570567548, 0.004634566139429808, -0.005306595470756292, -0.0008883498376235366, -0.015014462172985077, -0.006553158164024353, 0.009143779054284096, 0.0025244629941880703, -0.009540729224681854, 0.00805738940834999, -0.013329165056347847, -0.0014023827388882637, 0.004408234730362892, -0.0025523193180561066, -0.01713152788579464, 0.014847325161099434, -0.0006546194199472666, 0.005156868603080511, -0.009101995266973972, -0.02841326780617237, -0.05175671726465225, -0.009840182960033417, 0.023259880021214485, 0.027591511607170105, 0.016295844689011574, -0.009840182960033417, 0.005518998485058546, 0.004167975392192602, 0.016992248594760895, 0.007611691486090422, 0.012695438228547573, 0.023092743009328842, 0.002420002594590187, -0.022354556247591972, -0.004223688039928675, -0.009951607324182987, -0.015223382972180843, 0.017897572368383408, -0.004578853957355022, -0.017883645370602608, -0.01049480214715004, 0.031254593282938004, 0.013747007586061954, 0.00020990040502510965, -0.013085423968732357, 0.007848468609154224, 0.017493657767772675, -0.003593442728742957, 0.014415554702281952, 0.00018955236009787768, -0.010884788818657398, 0.010278916917741299, -0.013565942645072937, -0.0069292159751057625, -0.019332164898514748, 0.0240955650806427, 0.004603228066116571, 0.00023743011115584522, 0.01108674518764019, -0.007409734185785055, -0.009164671413600445, 0.007402770221233368, 0.002019570441916585, -0.000740364077500999, -0.019095387309789658, 0.013245596550405025, 0.03150529786944389, -0.015000533312559128, -0.0027124921325594187, -0.01859397627413273, -0.01565515249967575, 0.007876324467360973, -0.016978319734334946, 0.00027181502082385123, 0.01835719868540764, 0.011790113523602486, -0.012061710469424725, -0.0362129881978035, -0.011010141111910343, -0.007023230195045471, 0.008976642973721027, 0.0114558394998312, -0.01532087940722704, -0.0033322912640869617, -0.012228847481310368, -0.009777506813406944, 0.0013170733582228422, 0.00784150417894125, -0.01134441513568163, 0.02196457050740719, 0.004261990077793598, -0.004617155995219946, -0.020585691556334496, -0.00555381877347827, 0.0032765790820121765, 0.00645566126331687, -0.005720955785363913, -0.002855254802852869, -0.007618655450642109, -0.004850450903177261, 0.0043385946191847324, -0.009234311990439892, -0.004745990503579378, 0.024290557950735092, -0.006654136348515749, 0.022479908540844917, 0.004624119959771633, -0.005299631506204605, 0.006142279598861933, -0.007848468609154224, 0.000450486084446311, 0.00879557803273201, -0.0108430041000247, -0.005720955785363913, -0.01617049239575863, 0.009798399172723293, 0.00890700239688158, 0.002628923626616597, -0.00583586236461997, -0.018482550978660583, -0.009025391191244125, -0.01639334112405777, 0.01855219155550003, 0.010188384912908077, 0.011037996970117092, -0.04314916580915451, 0.02842719480395317, -0.021101029589772224, 0.013489337638020515, 0.023245953023433685, 0.0033584064804017544, 0.026142992079257965, 0.0277029350399971, -0.0033671115525066853, 0.016462981700897217, -0.022284915670752525, 0.0002920542610809207, 0.01713152788579464, -0.021630296483635902, 0.0073888422921299934, -0.003483759006485343, -2.493179272278212e-05, 0.005961214657872915, -0.009603405371308327, 0.0031895285937935114, 0.001906404853798449, -0.007493302691727877, 0.02268883027136326, 0.0007225187728181481, -0.011999034322798252, 0.00890700239688158, -0.011616012081503868, -0.031923141330480576, -0.012765077874064445, 0.027145812287926674, 0.004007802810519934, -9.221907384926453e-05, 0.0026271825190633535, 0.01665797457098961, 0.00524740107357502, -0.007019748445600271, -0.007277417927980423, 0.0009357923408970237, -0.020070351660251617, 0.010780327953398228, -0.00638950290158391, -0.0065670860931277275, 0.009868038818240166, 0.010849968530237675, -0.0024739739019423723, -0.010849968530237675, 0.025209810584783554, -0.008976642973721027, -0.026839395985007286, 0.009053247049450874, 0.014652332291007042, -0.03958358243107796, -0.0070510865189135075, 0.016212275251746178, -0.012939179316163063, -0.016059067100286484, -0.009366628713905811, -0.02383093163371086, 0.00042741771903820336, 0.004293328151106834, -0.005996034946292639, -0.019457517191767693, 0.008844326250255108, 0.008997534401714802, 0.014345914125442505, 0.013565942645072937, 0.013447553850710392, -0.01119120605289936, 0.014004676602780819, -0.0020787648390978575, -0.019220739603042603, -0.0096591180190444, -0.010278916917741299, 0.003482018131762743, 0.015850145369768143, 0.009269132278859615, 0.0004561443638522178, 0.027884000912308693, -0.019373947754502296, 0.003990392666310072, 0.013405769132077694, 0.01218706276267767, -0.01277900580316782, 0.014290202409029007, -0.009714830666780472, 0.03108745627105236, -0.01013963669538498, -0.01239598449319601, -0.025892285630106926, -0.005122048314660788, -0.0064486972987651825, -0.026421552523970604, 0.013078459538519382, -0.00832202285528183, -0.0030223915819078684, -0.0014746346278116107, 0.0026271825190633535, 0.00880254153162241, 0.0062084379605948925, 0.0010350298834964633, -0.02220134623348713, -0.003750133328139782, -0.0027229380793869495, 0.01277900580316782, -0.02334344945847988, 0.015098030678927898, 0.0018959587905555964, 0.0026585208252072334, 0.0030676578171551228, 0.0001591935142641887, 0.00844737607985735, -0.01782793179154396, 0.01951322890818119, 0.01000731997191906, -0.03975071758031845, -0.01736830547451973, 0.02604549564421177, -0.02938823215663433, -0.0005135976825840771, -0.011859753169119358, 0.007319201715290546, -0.003610852640122175, 0.00680386321619153, 0.0007638676906935871, 0.003057211870327592, 0.002844808856025338, 0.01048783864825964, -0.012354199774563313, 0.016741542145609856, 0.0005997776170261204, 0.04203492030501366, 0.012368127703666687, 0.0005584286409430206, -0.009686973877251148, -0.0168947521597147, -0.0048295590095222, 0.005849790293723345, 0.01086389645934105, -0.008426483720541, -0.00990285910665989, -0.016588333994150162, -0.01554372813552618, 0.023064887151122093, 0.00831505935639143, -0.009575549513101578, 0.01374004315584898, -0.00014744170766789466, -0.0019638582598417997, -0.004268954042345285, 0.022089922800660133, 0.001626102370209992, -0.009227347560226917, 6.29483547527343e-05, -0.016435125842690468, 0.025655508041381836, 0.010195348411798477, 0.0035203201696276665, -0.02334344945847988, -0.001761030638590455, 0.010181420482695103, -0.014018604531884193, 0.009457160718739033, -0.0007046734099276364, 0.006100495811551809, 0.016059067100286484, 0.024889465421438217, -0.004404752980917692, 0.002672448754310608, 0.0075281229801476, 0.013865395449101925, -0.04911038279533386, 6.730088352924213e-05, -0.012716329656541348, -0.01508410181850195, -0.017215097323060036, -0.005585156846791506, 0.00535534368827939, -0.009122887626290321, -0.03774507716298103, 0.0034471978433430195, -0.002648074645549059, 0.013357020914554596, -0.011880645528435707, 0.004711170215159655, 0.0360737070441246, -0.0009915046393871307, 0.016560478135943413, 0.0008700692560523748, -0.01569693721830845, -0.0028117296751588583, 0.003725759219378233, -0.007764900103211403, 0.016240132972598076, 0.01786971651017666, -0.002003901405259967, -0.012855610810220242, 0.005149904638528824, -0.004084407351911068, -0.018482550978660583, -0.012716329656541348, -0.008461304008960724, 0.00027246790705248713, 0.008523980155587196, -0.01565515249967575, 0.004171457607299089, -0.01665797457098961, 0.003945126663893461, -0.022312771528959274, -0.018872538581490517, -0.009993392042815685, -0.002388664288446307, 0.00507330009713769, 0.006981446407735348, 0.0004415634030010551, -0.0026445926632732153, 0.004094853065907955, 0.008064353838562965, -0.000587155285757035, 0.001424145419150591, 0.004540551453828812, -0.029722506180405617, -0.002902262145653367, 0.004502249415963888, 0.018440768122673035, -0.006365128792822361, 0.01637941226363182, -0.001808908418752253, 0.01587800309062004, 0.007723115850239992, 0.006971000228077173, 0.011156385764479637, 0.007319201715290546, -0.019206810742616653, -0.005028034094721079, 0.00028900749748572707, -0.011532443575561047, -0.014415554702281952, -0.031031744554638863, -0.0002628923684824258, 0.0007181662367656827, 6.392767681973055e-05, 0.0021867072209715843, -0.0337895043194294, 0.013788791373372078, 0.00988196674734354, 0.00434555858373642, 0.029332520440220833, 0.012702401727437973, 0.03657511621713638, -0.005198652856051922, -0.01636548526585102, 0.014304130338132381, 0.0313938744366169, -0.0005566876498050988, 0.0075559793040156364, 0.00878164917230606, 0.004495285451412201, 0.004185385536402464, -0.010244096629321575, 0.01880289800465107, 0.0007756195263937116, -0.01048783864825964, 0.017995068803429604, 0.008238454349339008, -0.005640869028866291, -0.007374914363026619, -0.005052408203482628, 6.207785190781578e-05, 0.0006633244338445365, -0.01181100495159626, -0.006295488681644201, 0.03448590636253357, 0.0061805821023881435, -0.012723294086754322, 0.012994891032576561, -0.011901537887752056, -0.005160350818186998, -0.0001946665724972263, -0.0028604778926819563, 0.0204464104026556, -0.0126466890797019, -0.02316238358616829, -0.015139814466238022, -0.0017819227650761604, -0.007263489533215761, 0.026588689535856247, 0.02197849750518799, 0.0015494980616495013, 0.008969678543508053, -0.009485017508268356, -0.002050908515229821, -0.009310916066169739, -0.0013475409941747785, 0.024401983246207237, 0.025265522301197052, 0.019373947754502296, 0.00559560302644968, 0.006577532272785902, 0.003170377342030406, 0.018426839262247086, -0.018231846392154694, -0.025265522301197052, -0.013809683732688427, -0.017061889171600342, 0.002493124920874834, 0.010125708766281605, 0.0015094547998160124, 0.016435125842690468, -0.011483695358037949, -0.008342915214598179, 0.0037536155432462692, 0.039639294147491455, 0.015139814466238022, 0.012326343916356564, 0.01956894062459469, -0.0017514551291242242, -0.0064452155493199825, -0.004206277895718813, 0.0038476299960166216, 0.03105960041284561, 0.010028212331235409, 0.015070173889398575, -0.015738721936941147, -0.014081280678510666, -0.0069779641926288605, 0.008990570902824402, 0.010933537036180496, 0.0026202185545116663, -0.02242419682443142, -0.013231668621301651, 0.010063031688332558, 0.015501944348216057, -0.007862396538257599, 0.004895717371255159], "7e244ca2-5e29-43b7-8a3c-98549e4d97ed": [-0.007422355934977531, -0.021104887127876282, -0.005662377458065748, -0.00011603232269408181, -0.04102160409092903, 0.008072136901319027, -0.017570078372955322, 0.013582279905676842, 0.0036406302824616432, 0.03139742091298103, 0.004567032214254141, 0.027951722964644432, 0.023956498131155968, -0.01702054962515831, -0.013055029325187206, 0.011985675431787968, -0.002656676108017564, 0.022694066166877747, -0.00783450249582529, -0.012059935368597507, 0.029927058145403862, -0.030684515833854675, -0.03609069436788559, -0.009683594107627869, -0.02117914892733097, -0.039863139390945435, -0.020733583718538284, 0.0016541568329557776, -0.035704538226127625, -0.014064974151551723, 0.004121468402445316, -0.019055292010307312, 0.009713297709822655, 0.02930326759815216, 0.003965520765632391, -0.0487150102853775, 0.011495554819703102, -0.0014861420495435596, -0.014510538429021835, -0.0160997174680233, -0.01341890636831522, -0.0012317991349846125, -0.008948412723839283, -0.006676035933196545, -0.0027587846852838993, 0.005788620561361313, -0.05655694007873535, -0.019441448152065277, -0.020184054970741272, -0.007671128958463669, 0.030476586893200874, 0.03917993977665901, -0.038169994950294495, -0.014777877368032932, 0.056675758212804794, -0.03680359572172165, 0.02640710026025772, 0.087805837392807, 0.006828270386904478, -0.009898949414491653, -0.014146661385893822, -0.020094942301511765, 0.03528868034482002, -0.007307251915335655, 0.03433814272284508, -0.006100515369325876, -0.013441184535622597, -0.02294655330479145, -0.007916189730167389, 0.010344513691961765, -0.01490412000566721, 0.03389257937669754, -0.03151623532176018, -0.016560133546590805, 0.0017089240718632936, 0.01886221393942833, 0.010389070026576519, 0.03246677294373512, 0.0422394797205925, -0.019396891817450523, -0.003135657636448741, 0.004726693034172058, -0.02147619053721428, 0.002411615801975131, 0.04081367328763008, 0.02924385853111744, 0.005428456235677004, -0.04117012396454811, -0.031248897314071655, -0.013055029325187206, -0.003946955781430006, 0.04877442121505737, 0.007648850791156292, -0.0026585326995700598, 0.03540749475359917, -0.023005960509181023, 0.012230735272169113, 0.011220790445804596, -0.0049754660576581955, -0.030684515833854675, -0.015490779653191566, -0.0005783051019534469, -0.005992837715893984, -0.007177295628935099, 0.0009361488046124578, -0.010567296296358109, 0.02839728817343712, 0.027238819748163223, -0.009802411310374737, 0.032734110951423645, -0.003776156110689044, -0.0559331513941288, 0.023689160123467445, 0.03947698324918747, -0.026362543925642967, -0.014384295791387558, -0.03199150413274765, 0.01752552203834057, -0.016411611810326576, -0.019188961014151573, -0.008755335584282875, -0.008413735777139664, 0.020169202238321304, 0.030684515833854675, -0.040665153414011, 0.012631743215024471, -0.0182978343218565, 0.03748679533600807, 0.03600158169865608, 0.05219041183590889, -0.014146661385893822, 0.020822696387767792, 0.019827604293823242, -0.017065105959773064, 0.0026808108668774366, 0.02160985954105854, 0.015847230330109596, 0.08275610953569412, -0.0015177028253674507, 0.01737700030207634, -0.043457355350255966, -0.027669532224535942, -0.04930909723043442, 0.01716907136142254, -1.2393702490953729e-05, -0.015282849781215191, -0.03656596317887306, 0.061250217258930206, 0.012097066268324852, 0.008257788605988026, -0.019055292010307312, -0.01956026442348957, -0.009728150442242622, 0.0004942977102473378, 0.0487150102853775, 0.006022541783750057, -0.006330723874270916, 0.0426553376019001, -0.021773234009742737, 0.024892183020710945, 0.05233893170952797, -0.04271474853157997, 0.014993232674896717, 0.033714354038238525, 0.024743661284446716, 0.0337737612426281, 0.05542817711830139, 0.033714354038238525, -0.0341896191239357, 0.02034742943942547, -0.0029759970493614674, 0.0026808108668774366, 0.012609465047717094, -0.014599651098251343, -0.009111786261200905, -0.019174110144376755, 0.040635447949171066, -0.0076414248906075954, 0.013857044279575348, -0.029273563995957375, -0.0330311544239521, -0.004444502294063568, 0.039239346981048584, 0.006572070997208357, -0.017852269113063812, 0.053853850811719894, 0.008510274812579155, 0.027580419555306435, -0.03793235868215561, 0.0128842294216156, -0.011124251410365105, -0.02698633447289467, 0.02330300398170948, 0.016931436955928802, 0.027283376082777977, -0.026585325598716736, -0.02371886372566223, 0.00775281572714448, -0.011703484691679478, -0.0008094414952211082, -0.027669532224535942, -0.01639675907790661, 0.0059000118635594845, 0.023911941796541214, -0.009936080314218998, 0.039506684988737106, 0.008064710535109043, -0.06511177122592926, 0.029704274609684944, -0.012015379033982754, 0.06285424530506134, -0.01080492977052927, 0.003128231503069401, 0.0031449401285499334, 0.01038164459168911, 0.013062454760074615, 0.01997612603008747, -0.02189205028116703, -0.018179016187787056, -0.03368464857339859, 0.021832643076777458, -0.008213232271373272, -0.012178752571344376, -0.021624712273478508, -0.02662988379597664, 0.0062601761892437935, -0.02704574353992939, 0.03228854760527611, -0.020733583718538284, -0.037249162793159485, 0.023689160123467445, 0.003157935803756118, 0.010010341182351112, 0.00035668336204253137, -0.004994031507521868, 0.01969393528997898, 0.06344833225011826, 0.00023972277995198965, 0.005190822295844555, -0.008658796548843384, 0.007348095066845417, 0.026733847334980965, -0.014324886724352837, -0.007537459954619408, 0.01758493110537529, 0.0385858528316021, -0.03650655597448349, 0.037041231989860535, -0.008272640407085419, 0.017748303711414337, 0.007307251915335655, 0.038674965500831604, -0.004481632728129625, 0.003802147228270769, 0.016203682869672775, 0.032734110951423645, 0.03716005012392998, -0.019471151754260063, 0.0033064570743590593, -0.03389257937669754, -0.00028706397279165685, 0.010663834400475025, -0.01807505078613758, 0.005090570077300072, 0.04957643523812294, 0.011725762858986855, 0.02478821761906147, 0.010745521634817123, -0.001242938218638301, 0.07942923158407211, -0.016352202743291855, -0.04357617348432541, -0.011948544532060623, 0.013693670742213726, -0.027714088559150696, 0.017555227503180504, 0.007760242093354464, 0.010329661890864372, -0.022783178836107254, -0.024119870737195015, 0.019114701077342033, 0.0012420100392773747, 0.012111918069422245, 0.021372226998209953, 0.019129553809762, 0.022367319092154503, -0.006015115883201361, -0.03947698324918747, -0.04018988460302353, -0.007147591095417738, -0.004748971201479435, 0.0016495155869051814, -0.015000659041106701, 0.04538813233375549, 0.0037297431845217943, -0.02584271878004074, -0.011859431862831116, -0.02541200816631317, -0.0012642882065847516, 0.015698710456490517, -0.0160997174680233, -0.03211032226681709, -0.01872854493558407, -0.029422083869576454, 0.014918972738087177, -0.015119476243853569, 0.052012186497449875, 0.022397024556994438, -0.01490412000566721, 0.0028683191630989313, 0.03695211932063103, -0.011094546876847744, -0.003920964431017637, 0.020703880116343498, 0.019753342494368553, 0.02867947705090046, -0.024030758067965508, -0.020109795033931732, -0.015847230330109596, 0.00019226556469220668, -0.011970822699368, -0.025114964693784714, -0.04045722261071205, 0.005227952264249325, 0.020302873104810715, -0.057032208889722824, 0.04393262416124344, -0.035763949155807495, -0.023392116650938988, -0.026956629008054733, -0.014324886724352837, -0.003694469342008233, -0.0018184586660936475, 0.0185057632625103, -0.02450602687895298, -0.042982086539268494, -0.019649378955364227, -0.016277942806482315, -0.024060463532805443, -0.010441052727401257, -0.027075447142124176, -0.02894681692123413, 0.007429781835526228, -0.01041877456009388, -0.01673835888504982, -0.015654152259230614, 0.011295050382614136, 0.026095205917954445, 0.02230791002511978, -0.006453253794461489, 0.000941718346439302, 0.010782651603221893, 0.03101126290857792, -0.024951592087745667, 0.031664758920669556, 0.0033510136418044567, -0.012780264019966125, -0.0163076464086771, -0.011480702087283134, -0.00443336321040988, -0.0179265309125185, -0.02507040835916996, -0.0006066170171834528, -0.027595272287726402, -0.0197087861597538, 0.04446730017662048, -0.011376737616956234, -0.005944568198174238, -0.03926905244588852, -0.008770187385380268, -0.04188302904367447, 0.002328072674572468, -0.016857177019119263, -0.020525654777884483, 0.004140033386647701, -0.05174484848976135, 0.02606550231575966, -0.009260307997465134, -0.012067361734807491, 0.024030758067965508, 0.006460679695010185, 0.029897352680563927, -0.018401797860860825, -0.022768327966332436, 0.061190806329250336, 0.03225884214043617, 0.0019270648481324315, -0.008124119602143764, -0.022901996970176697, -0.009936080314218998, -0.01764434017241001, 0.03525897487998009, -0.026718996465206146, 0.0015158463502302766, 0.0017553369980305433, -0.028204210102558136, -0.001633735140785575, 0.012832246720790863, 0.014941250905394554, -0.01013658381998539, 0.03876407817006111, -0.00903752539306879, 0.005524995271116495, -0.028278470039367676, -0.004830657970160246, -0.027030890807509422, -0.013938731513917446, -0.019753342494368553, 0.015342257916927338, -0.011198512278497219, 0.03650655597448349, -0.0519527792930603, 0.021431634202599525, 0.012371830642223358, 0.02386738546192646, 0.021134592592716217, -0.006141358986496925, 0.01707995869219303, -0.03713034465909004, -0.026095205917954445, 0.03404109925031662, 0.01901073567569256, 0.016010604798793793, 0.009587055072188377, -0.01858002506196499, 0.008064710535109043, -0.01130247674882412, -0.014941250905394554, -0.024743661284446716, -0.004982892423868179, 0.03107067197561264, 0.05005170404911041, -0.018416650593280792, 0.015847230330109596, -0.00549157802015543, 0.003102240152657032, 0.022471284493803978, 5.952458377578296e-05, -0.019055292010307312, 0.02061476744711399, 0.041496872901916504, 0.03834822028875351, 0.00949794240295887, 0.0015882505103945732, -0.04143746569752693, -0.014146661385893822, -0.03947698324918747, 0.0009728150325827301, 0.04532872512936592, -0.011785170994699001, -0.016827471554279327, -0.0011677492875605822, -0.03208061680197716, -0.014287756755948067, 0.013574853539466858, -0.01550563145428896, 0.03716005012392998, 0.01257233414798975, 0.01929292641580105, -0.04301179200410843, -0.011554962955415249, 0.012772838585078716, 0.011666353791952133, 0.002660389058291912, 0.03466488793492317, -0.009631611406803131, -0.024327801540493965, 0.019188961014151573, 0.002963001374155283, 0.003714890917763114, 0.01956026442348957, 0.02266436256468296, -0.010188566520810127, 0.051655735820531845, 0.02034742943942547, -0.00522423954680562, -0.002576845930889249, -0.01872854493558407, 0.008346901275217533, -0.017287887632846832, 0.018312685191631317, 0.021149443462491035, -0.027595272287726402, 0.012936212122440338, 0.006249037105590105, 0.0021182862110435963, -0.02089695818722248, -0.03828880935907364, 0.004414797760546207, 0.0029221579898148775, 0.009609333239495754, 0.009312290698289871, -0.0036740475334227085, -0.01370109710842371, 0.030535995960235596, -0.02783290669322014, 0.01679776795208454, -0.007604294456541538, 1.4997178368503228e-05, -0.009988063015043736, 0.046576302498579025, -0.028159653767943382, 0.039863139390945435, -0.004645006265491247, -0.011525258421897888, 0.05923032388091087, 0.014540242962539196, 0.019887011498212814, 0.007188434712588787, -0.01794138178229332, -0.004448215011507273, 0.016337351873517036, -0.01752552203834057, 0.004604162648320198, 0.011792597360908985, -0.023763420060276985, -0.013649114407598972, 0.0066203405149281025, 0.02599124051630497, -0.005313352216035128, -0.0018704411340877414, 0.0001439961197320372, -0.025590233504772186, 0.012654021382331848, 0.003170931478962302, -0.01108712051063776, -0.006223045755177736, -0.030001318082213402, 0.013055029325187206, -0.031189488247036934, -0.018624581396579742, 0.0007848426466807723, -0.016857177019119263, 0.006627766415476799, 0.0030354056507349014, 0.014733321033418179, 0.006924809422343969, -0.015134328044950962, 0.028590364381670952, 0.00886672642081976, -0.023852532729506493, 0.037962064146995544, -0.004013790283352137, 0.0020106080919504166, -0.003928390331566334, 0.010329661890864372, 0.02012464590370655, 0.030134987086057663, -0.013975861482322216, 0.0032284834887832403, -0.02597638964653015, -0.003987798932939768, -0.025382302701473236, -0.02472880855202675, -0.0032284834887832403, -0.013478314504027367, 0.0037705865688622, 0.003802147228270769, -0.011666353791952133, -0.010292530991137028, -0.026822960004210472, -0.020228611305356026, 0.0010684255976229906, 0.023109925910830498, -0.013441184535622597, -0.01702054962515831, -0.025664493441581726, 0.011465850286185741, -0.024476323276758194, 0.0026808108668774366, 0.048477377742528915, -0.01102028600871563, 0.04286326840519905, 0.011012859642505646, -0.00037849743966944516, 0.02902107685804367, -0.0030428317841142416, -0.005992837715893984, -0.03430843725800514, 0.00984696764498949, 0.03597187623381615, -0.005127700511366129, 0.0029165884479880333, -0.013886748813092709, 0.021580155938863754, 0.028575513511896133, -0.03359553590416908, -0.024342654272913933, -0.03225884214043617, 0.02755071595311165, 0.00858453568071127, 0.039506684988737106, -0.009965784847736359, -0.007856780663132668, -0.004641293082386255, 0.017005696892738342, 0.028426991775631905, -0.013047602958977222, 0.0249367393553257, 0.004154885653406382, 0.027283376082777977, 0.005138839595019817, 0.0007737035630270839, -0.03205091133713722, -0.02259010076522827, 0.004277415573596954, -0.004875214304775, 0.010812356136739254, 0.008792465552687645, -0.027075447142124176, -0.00238376809284091, -0.020228611305356026, 0.046427782624959946, -0.0011816732585430145, 0.024520879611372948, 0.0011259777238592505, 0.0047378321178257465, 0.0006581353372894228, 0.016411611810326576, -0.03870467096567154, 0.025605086237192154, -0.014555094763636589, 0.06909214705228806, -0.011829727329313755, 0.01715421862900257, -0.01320355013012886, -0.03475400060415268, -0.008562257513403893, 0.006200767587870359, 0.03139742091298103, -0.028768591582775116, 0.012988194823265076, -0.00475268391892314, -0.03300144895911217, 0.02083754912018776, -0.036595668643713, 0.00388383399695158, 0.018312685191631317, -0.020570211112499237, -0.018669137731194496, 0.010463330894708633, 0.021996015682816505, 0.002103433944284916, 0.012059935368597507, -0.01430260855704546, 0.02633284032344818, 0.010158861987292767, -0.02683781273663044, 0.027922019362449646, 0.01724333129823208, -0.04568517580628395, 0.025040704756975174, -0.0035088176373392344, -0.001554833143018186, 0.007318390998989344, -0.009267734363675117, -0.014094678685069084, 0.033090561628341675, 0.030981559306383133, 0.012134196236729622, -0.0034178481437265873, -0.027877463027834892, 0.04277415573596954, 0.027134856209158897, -0.0018230999121442437, -0.0012420100392773747, -0.013827339746057987, 0.017911678180098534, 0.03790265694260597, 0.010106879286468029, 0.008250362239778042, -0.015475927852094173, -0.02294655330479145, -0.008837021887302399, -0.004140033386647701, -0.018981032073497772, 0.01794138178229332, 1.2422710824466776e-05, -0.016619542613625526, -0.029362676665186882, 0.0010730669600889087, -0.05207159370183945, -0.004370241425931454, 0.015639301389455795, -0.010441052727401257, -0.012074788101017475, 0.0227386225014925, 0.008881578221917152, -0.03243706747889519, -0.002471024403348565, 0.0015585462097078562, 0.005109135527163744, -0.00669460091739893, 0.02924385853111744, 0.0015204875962808728, 0.001580824377015233, 0.007737963926047087, -0.03490252420306206, 0.012906507588922977, 0.0011445428244769573, -0.05207159370183945, 0.0004873357538599521, -0.002912875497713685, 0.0018500194419175386, 0.0027532149106264114, 0.04357617348432541, -0.01073066983371973, -0.02761012315750122, 0.03127860277891159, 0.011480702087283134, 0.0038726949132978916, -0.015490779653191566, 0.0032786093652248383, 0.006189628504216671, -0.017258184030652046, -0.0043962327763438225, -0.032169729471206665, 0.020941514521837234, 0.001331122824922204, 0.046784233301877975, -0.009044951759278774, 0.02365945465862751, -0.03623921424150467, -0.028412139043211937, -0.002656676108017564, 0.037605613470077515, -0.007518894504755735, -0.018030494451522827, 0.01638190820813179, -0.011540111154317856, 0.02548626810312271, 0.0017618348356336355, 0.01820872165262699, 0.0070399134419858456, -0.002302081324160099, -0.04633866995573044, 0.0034549785777926445, 0.011941119097173214, 0.03320937976241112, -0.012074788101017475, 0.014941250905394554, 0.02147619053721428, 0.004496484529227018, -0.03808088228106499, 0.03234795480966568, 0.00321363122202456, 0.016114570200443268, -0.003831851528957486, -0.014733321033418179, 0.0185057632625103, 0.032021209597587585, -0.027105150744318962, 0.030892446637153625, 0.0006901602610014379, 0.0018528042128309608, -0.006360427942126989, 0.03413021191954613, 0.014324886724352837, 0.010723243467509747, 0.04785358905792236, 0.0001723080058582127, -0.003245192114263773, -0.041407760232686996, 0.023035665974020958, -0.018060199916362762, 0.012802543118596077, -0.001280068652704358, -0.024238688871264458, 0.02308022230863571, 0.002055164659395814, 0.02521893009543419, 0.014792729169130325, 0.012594612315297127, 0.01751067116856575, -0.04274445399641991, -0.019515708088874817, 0.0009848823538050056, -0.01745126210153103, -0.0075411731377244, -0.01284709945321083, -0.013248106464743614, -0.012527777813374996, 0.021149443462491035, 0.0026158327236771584, 0.0317835733294487, -0.010092027485370636, 0.010849487036466599, -0.024045610800385475, -0.023288151249289513, 0.014844711869955063, 0.026362543925642967, -0.01525314524769783, 0.022441580891609192, 0.04013047739863396, 0.024758514016866684, 0.01493382453918457, -0.004210581071674824, 0.004492771811783314, -0.022931700572371483, 0.006193341221660376, 0.002935153665021062, -0.03561542555689812, 0.028575513511896133, 0.0333578996360302, 0.0004836227453779429, -0.0227386225014925, -0.01522344071418047, 0.01920381374657154, -0.0017024262342602015, 0.02478821761906147, 0.005484151653945446, 0.013233254663646221, -0.0007166156428866088, 0.03107067197561264, -0.029125042259693146, -0.023674307391047478, 0.005981698632240295, -0.008213232271373272, 0.05281420052051544, 0.007032487075775862, -0.0029741404578089714, -0.014005566015839577, 0.016500724479556084, 0.017391853034496307, 0.01780771277844906, -0.003846703562885523, 0.02662988379597664, 0.004886353388428688, -0.026793256402015686, -0.025798162445425987, -0.00459302356466651, -0.055754926055669785, -0.0257684588432312, 0.004938335623592138, -0.006690888199955225, 0.004440789110958576, -0.015156606212258339, 0.005499003920704126, -0.02209998108446598, 0.02302081324160099, -0.01231984794139862, -0.05474498122930527, -0.014183791354298592, -0.02585757151246071, -0.008785039186477661, 0.03629862517118454, 0.025159521028399467, 0.008384032174944878, 0.00833947490900755, 0.046784233301877975, 0.018119607120752335, 0.010946025140583515, 0.013359498232603073, 0.03413021191954613, -0.06831983476877213, 0.006171063054352999, 0.013537723571062088, -0.009728150442242622, 0.010626704432070255, 0.03249647840857506, 0.034278735518455505, 0.007143878377974033, -0.0059000118635594845, -0.025530824437737465, -0.005350482650101185, 0.01373822707682848, -0.0007277547265402973, 0.01901073567569256, 0.006382706109434366, 0.029496345669031143, -0.005339343566447496, 0.008799891918897629, 0.010582148097455502, 0.01292135939002037, -0.0251446682959795, -0.025382302701473236, 0.006961939390748739, 0.01468876376748085, -0.026867516338825226, 0.013775357976555824, 0.016619542613625526, 0.0020700166933238506, 0.04387321323156357, -0.005848029162734747, -0.026644734665751457, -0.006683461833745241, -0.008294918574392796, 0.008094415068626404, -0.012609465047717094, 0.0058554550632834435, -0.032942041754722595, -0.0006544223288074136, -0.018698841333389282, -0.040071066468954086, -0.02330300398170948, 0.0019289214396849275, -0.026154614984989166, -0.008889004588127136, -0.009312290698289871, 0.013055029325187206, 0.01604030840098858, -0.025738755241036415, -0.024060463532805443, -0.011800023727118969, 0.03285292908549309, -0.019604822620749474, 0.009549924172461033, -0.018951328471302986, 0.04405143857002258, 0.009794984944164753, 0.027996279299259186, 0.019382039085030556, 0.009965784847736359, 0.00621561985462904, 0.0007542101084254682, 0.023124778643250465, -0.009238029830157757, -0.04815062880516052, 0.004960613790899515, 0.00555841252207756, 0.02952604927122593, 0.014963529072701931, 0.007366660516709089, -0.00023310894903261214, -0.01941174454987049, 0.009052378125488758, -0.014644207432866096, 0.021283112466335297, -0.0160997174680233, 0.017213627696037292, -0.012364404276013374, 0.010077175684273243, -0.01013658381998539, 0.008413735777139664, 0.025619937106966972, -0.00150006590411067, -0.021223705261945724, -0.012371830642223358, -0.025872424244880676, -0.007396364584565163, -0.009260307997465134, -0.025530824437737465, 0.025055555626749992, -0.0018982888432219625, -0.010715817101299763, -0.006052246317267418, -0.029332971200346947, -1.203110150527209e-05, 0.006334436591714621, 0.009401403367519379, -0.007678555324673653, 0.04033840447664261, -0.009163768962025642, 0.02343667298555374, -0.02019890770316124, 0.003113379469141364, -0.0074372077360749245, 0.020094942301511765, -0.02691207267343998, -0.006111654452979565, 0.006193341221660376, -0.039447277784347534, -0.029956761747598648, 0.006382706109434366, -0.013173846527934074, 0.01070096530020237, -0.0024227548856288195, -0.0005416388739831746, -0.01632249914109707, -0.01568385772407055, -0.01376793161034584, -0.013129289261996746, -0.015698710456490517, 0.04286326840519905, -0.008569683879613876, -0.00903752539306879, -0.030773628503084183, 0.00890385638922453, -0.021996015682816505, -0.0059965504333376884, 0.03695211932063103, -0.006646331399679184, -0.0037056084256619215, 0.0006539581809192896, 0.003128231503069401, 0.03205091133713722, 0.028827998787164688, 0.009438533335924149, 0.003920964431017637, 0.015201162546873093, 0.011814875528216362, -0.015624448657035828, -0.013515445403754711, -0.00868850015103817, 0.01461450383067131, -0.005907437764108181, -0.02689722180366516, -0.011450998485088348, -0.007221851963549852, -0.032585591077804565, 0.022010868415236473, 0.003029836108908057, -0.04443759471178055, 0.026674440130591393, 0.01814931258559227, 0.001468505128286779, -0.008005302399396896, 0.013686245307326317, -0.014607077464461327, 0.025931833311915398, -0.015639301389455795, -0.0017117088427767158, 0.0001073298990377225, 0.011703484691679478, -0.012720855884253979, 0.012639169581234455, 0.03445696085691452, -0.015654152259230614, -0.004626440815627575, 0.04419996216893196, 0.025679346174001694, -0.014295182190835476, 0.0013496880419552326, -0.014295182190835476, -0.008309771306812763, 0.003690756158903241, 0.024327801540493965, 0.006958226673305035, -0.009683594107627869, 0.01165150199085474, -0.021149443462491035, 0.010054897516965866, 0.0004873357538599521, 0.01844635419547558, 0.015639301389455795, -0.022278206422924995, 0.0019177822396159172, -0.06534940749406815, -0.012015379033982754, -0.016931436955928802, 0.001248507876880467, 0.0058368900790810585, -0.024669401347637177, 0.011978249065577984, -0.005012596491724253, -0.02965971827507019, 0.012913933955132961, 0.015067493543028831, -0.002829332137480378, 0.00727383466437459, 0.014243200421333313, -0.007574590388685465, -0.019055292010307312, -0.017466114833950996, 0.0010442909551784396, -0.009030099958181381, -0.01935233548283577, -0.026867516338825226, 0.007192147895693779, 0.03243706747889519, -0.002029173308983445, -0.03481341153383255, 0.01752552203834057, -0.01143614575266838, 0.010515313595533371, -0.03338760510087013, -0.01893647573888302, 0.02507040835916996, 0.0009031956433318555, 0.01225301343947649, -0.03044688142836094, -0.0062787411734461784, 0.014139235019683838, 0.0007829861133359373, -0.0016680806875228882, 0.02104547992348671, 0.021342521533370018, 0.011666353791952133, 0.004195728804916143, -0.01341890636831522, -0.02762497588992119, -0.0016458025202155113, -0.010998007841408253, 0.009965784847736359, -0.038259107619524, 0.014748172834515572, 0.004299693740904331, 0.029110189527273178, -0.008755335584282875, 0.004722979851067066, -0.008770187385380268, 0.017540374770760536, 0.015847230330109596, -0.005576977506279945, -0.004663571249693632, -0.019248370081186295, -0.0026975194923579693, 0.04419996216893196, 0.018401797860860825, -0.016560133546590805, -0.004748971201479435, -0.016471020877361298, 0.006423549726605415, 0.012691151350736618, 0.00862166564911604, 0.023005960509181023, -0.0009932366665452719, 0.004979179240763187, 0.004849222954362631, 0.0013654683716595173, 0.017124515026807785, 0.01856517232954502, -0.006453253794461489, 0.027922019362449646, 0.014287756755948067, -0.01632249914109707, -0.00045832767500542104, -0.01752552203834057, 0.005324491299688816, 0.012876803055405617, 0.011421293951570988, -0.008413735777139664, -0.022159390151500702, -0.01899588480591774, 0.00321363122202456, -0.046576302498579025, -0.0003306921280454844, 0.0033974265679717064, 0.047705065459012985, 0.006353002041578293, 0.013478314504027367, -0.024268392473459244, 0.01929292641580105, -0.03665507584810257, -0.01575811766088009, -0.010040044784545898, 0.013233254663646221, -0.013500593602657318, -0.01490412000566721, 0.01108712051063776, -0.026808109134435654, -0.025471415370702744, 0.009208325296640396, 0.008532552979886532, 0.012304996140301228, 0.00025039774482138455, -0.011577241122722626, -0.025872424244880676, 0.03516986221075058, 0.0001830990076996386, -0.0025489982217550278, -0.0043182591907680035, 0.00839888397604227, -0.0012884229654446244, -0.029273563995957375, -0.0040954770520329475, 0.010225696489214897, -0.006765148602426052, 0.011079695075750351, -0.012720855884253979, -0.03214002773165703, 0.014213495887815952, -0.009965784847736359, -0.0029908493161201477, 0.000750032952055335, -0.00681713130325079, 0.009238029830157757, -0.012490647844970226, -0.006315871607512236, -0.007945893332362175, -0.013225828297436237, 0.0011733188293874264, -0.0010730669600889087, 0.023035665974020958, -0.008131545037031174, 0.024060463532805443, -0.010092027485370636, 0.015022937208414078, 0.030595403164625168, -0.011993100866675377, -0.010389070026576519, -0.006861687637865543, 0.020109795033931732, -0.013329793699085712, -0.009965784847736359, -0.025887275114655495, 0.004128894302994013, -0.0031987791880965233, -0.0019214953063055873, 0.030684515833854675, 0.02444661781191826, 0.01596604846417904, -0.03573424369096756, -0.0051796832121908665, 0.004503910895437002, 0.026644734665751457, 0.018802806735038757, -0.013626836240291595, -0.008294918574392796, -0.012691151350736618, 0.00015351077308878303, 0.02117914892733097, -0.009431106969714165, -0.007266408298164606, -0.0029165884479880333, -0.03243706747889519, -0.004251424223184586, 0.01764434017241001, 0.006735444534569979, 0.003219200763851404, -0.00010321075387764722, 0.012757985852658749, -0.020094942301511765, -0.0005100780981592834, -0.029392380267381668, 0.012683725915849209, 0.02006523869931698, -0.008487996645271778, 0.02351093478500843, -0.005250230897217989, 0.017896825447678566, 0.010322235524654388, 0.03285292908549309, 0.004893779288977385, -0.017480965703725815, -0.041348353028297424, 0.02605064958333969, 0.007344381883740425, -0.011124251410365105, -0.0370115265250206, -0.0017859695944935083, -0.002133138244971633, -0.0037872951943427324, -0.006152498070150614, 0.00045159782166592777, -0.006460679695010185, 0.006865400820970535, 0.0005351410945877433, -0.013938731513917446, 0.0034289872273802757, -0.005673516541719437, -0.00448534544557333, -0.02245643176138401, -0.017480965703725815, 0.03282322362065315, 0.016693802550435066, -0.027595272287726402, 0.022575249895453453, -0.011941119097173214, 0.01794138178229332, -0.004852936137467623, 0.010990581475198269, -0.013344645500183105, -0.00625274982303381, -0.013812487944960594, 0.0012243731180205941, -0.013233254663646221, 0.02175838127732277, -0.012542630545794964, 0.038526445627212524, -0.01660468988120556, 0.008629092015326023, -0.0019084997475147247, 0.020733583718538284, -0.005892585497349501, -0.005662377458065748, 0.0013422619085758924, -0.0010665691224858165, -0.01758493110537529, -0.025590233504772186, -0.019872160628437996, -0.028426991775631905, -0.010723243467509747, 0.04645748808979988, -0.008057285100221634, 0.023199038580060005, 0.0016170265153050423, -0.02612490952014923, -0.004552180413156748, 0.00776766799390316, 0.021639565005898476, 0.026035796850919724, -0.004589310381561518, -0.015342257916927338, 0.010173714719712734, 0.018179016187787056, 0.010500461794435978, -0.00950536783784628, -0.025605086237192154, -0.017763156443834305, -0.0022872292902320623, -0.01658983714878559, -0.026243727654218674, 0.053081538528203964, -0.006542366463690996, 0.003774299519136548, -0.02337726391851902, -0.01800079084932804, 0.018535468727350235, 0.007849355228245258, -0.02619917131960392, 0.028011132031679153, -0.02379312366247177, 0.009275159798562527, 0.04158598557114601, 0.01490412000566721, 0.00344198290258646, -0.006189628504216671, 0.016263090074062347, 0.0072812605649232864, 0.00957220233976841, -0.0011139103444293141, -0.019931569695472717, 0.009965784847736359, 0.006449540611356497, -0.0036480564158409834, 0.0012299426598474383, -0.03071422129869461, 0.008569683879613876, -0.01003261934965849, 0.015639301389455795, 0.006475531961768866, 0.013894175179302692, -0.006230471655726433, -0.02979338727891445, 0.0007477123290300369, 0.0032024921383708715, 0.04624955728650093, 0.01771860010921955, -0.002361489925533533, 0.018386946991086006, 0.004763823002576828, -0.009111786261200905, -0.006564644630998373, 0.004745258018374443, 0.022426728159189224, 0.014035270549356937, 0.023822829127311707, 0.014154086820781231, -0.0301646925508976, -0.019589969888329506, -0.007155017461627722, -0.0002218538138549775, 0.03870467096567154, 0.01083463430404663, -0.009030099958181381, 0.003078105626627803, 0.017495818436145782, 0.009594480507075787, -0.025931833311915398, -0.01771860010921955, 0.005291074048727751, 0.025887275114655495, -0.005265082698315382, 0.005439595319330692, -0.014540242962539196, -0.03208061680197716, 0.016084864735603333, 0.026718996465206146, 0.023496082052588463, -0.0036814736668020487, -0.03511045500636101, -0.02774379402399063, 0.0034271308686584234, 0.007348095066845417, 0.013560001738369465, -0.008272640407085419, -0.01639675907790661, -0.008057285100221634, -0.0018138173036277294, -0.003412278601899743, -0.0038689819630235434, -0.015995752066373825, -0.002656676108017564, 0.010559869930148125, 0.020926661789417267, -0.003102240152657032, 0.01228271797299385, 0.02175838127732277, 0.024817921221256256, -0.02279803156852722, 0.015698710456490517, 0.015052641741931438, -0.00565123837441206, 0.03172416612505913, 0.018193868920207024, -0.0012317991349846125, -0.0003436877450440079, -0.014807580970227718, 0.011993100866675377, 0.005974272266030312, -0.01658983714878559, 0.007381512317806482, -0.0009231531876139343, 0.007864207029342651, -0.042417705059051514, -0.03454607352614403, 0.0076414248906075954, 0.003280465956777334, -0.001882508397102356, 0.0182978343218565, -0.04218007251620293, 0.002684523817151785, 0.018698841333389282, -0.023496082052588463, -0.0033900004345923662, -0.010277679190039635, 0.005963133182376623, -0.009765280410647392, 0.004949474707245827, -0.005068291909992695, 0.010515313595533371, 0.0026158327236771584, -0.01462192926555872, 0.03926905244588852, -0.004143746569752693, -0.016352202743291855, -0.0032043487299233675, 0.005094283260405064, -0.04161569103598595, -0.017391853034496307, -0.025664493441581726, -0.0018518759170547128, -0.02875373885035515, 0.014473408460617065, -0.007745389826595783, -0.020005829632282257, -0.009653889574110508, -0.00660177506506443, -0.009980636648833752, 0.027372490614652634, 0.016337351873517036, -0.005803472828119993, -0.007663703057914972, -0.013433758169412613, -0.056170783936977386, -0.0036016434896737337, -0.021862346678972244, 0.016649246215820312, -0.0019252083729952574, 0.03154594078660011, -0.022545544430613518, 0.017540374770760536, 0.007463199086487293, 0.004069485701620579, -0.0037872951943427324, -0.03383316844701767, 0.0046784235164523125, 0.014258052222430706, -0.005253943614661694, -0.017971087247133255, -0.020495949313044548, 0.001524200662970543, -0.009312290698289871, -0.003022409975528717, 0.01480015553534031, -0.008547404780983925, -0.007017635274678469, -0.0027829192113131285, -0.010819782502949238, -0.026600178331136703, -0.032942041754722595, 0.00890385638922453, -0.015000659041106701, 0.008874151855707169, -0.005814611911773682, -0.04696245864033699, -0.005721786059439182, 0.0077008334919810295, 0.008376605808734894, 0.005799759645015001, 0.02209998108446598, -0.0059779854491353035, 0.009490516036748886, -0.00584060326218605, 0.004994031507521868, -0.018609728664159775, -0.013745653443038464, -0.035496607422828674, -0.009564776904881, 0.0017868977738544345, 0.002669671783223748, -0.011874283663928509, 0.0016003178898245096, -0.030387474223971367, 0.019961273297667503, 0.04117012396454811, 0.001747910981066525, -0.012861951254308224, -0.008324623107910156, 0.003573795547708869, -0.008762761019170284, 0.007633998990058899, 0.018906772136688232, 0.03912052884697914, -0.005951994098722935, 0.03475400060415268, 0.009980636648833752, -0.002250098856166005, 0.006327010691165924, 0.01331494189798832, -0.005350482650101185, 0.012809968553483486, 0.024535732343792915, -0.020317723974585533, -0.02951119840145111, -0.000944039027672261, 0.03383316844701767, -0.0008999467245303094, 0.0004392983973957598, 0.01525314524769783, 0.022441580891609192, -0.02768438495695591, -0.016500724479556084, 0.006152498070150614, 0.02832302637398243, -0.020080089569091797, 0.019887011498212814, -0.025382302701473236, -0.005591829773038626, 0.01480015553534031, 0.009549924172461033, -0.01679776795208454, -0.006802279036492109, -0.015639301389455795, -0.0025081548374146223, 0.019025588408112526, -0.024119870737195015, -0.012163900770246983, 0.024966442957520485, 0.029481492936611176, -0.006115367636084557, -0.020852401852607727, -0.003273039823397994, 0.004425936844199896, -0.021164296194911003, 0.012156474404036999, -0.010916321538388729, -0.02019890770316124, -0.02960031107068062, -0.0010702821891754866, 0.01694628968834877, -0.008643943816423416, -9.529154340270907e-06, 0.015654152259230614, 0.02740219421684742, -0.000776024186052382, -0.0009551781113259494, -0.015060067176818848, 0.0013385489583015442, 0.007025061175227165, -0.024758514016866684, -0.018193868920207024, 0.010760373435914516, -0.02781805396080017, -0.021788086742162704, 0.014384295791387558, 0.015906639397144318, -0.013248106464743614, -0.006430975627154112, 0.0014666486531496048, -0.007864207029342651, -0.0036963257007300854, 0.00896326545625925, 0.005550986621528864, -0.010426200926303864, -0.020288020372390747, 0.014413999393582344, 0.01200052723288536, 0.007923615165054798, 0.007155017461627722, 0.0008001589449122548, 0.01745126210153103, -0.0139832878485322, 0.003950668498873711, -0.00404349435120821, -0.005227952264249325, -0.010173714719712734, -0.013886748813092709, -0.017391853034496307, -0.016990846022963524, 0.003531095804646611, 0.06243838742375374, -0.009668741375207901, 0.01462192926555872, 0.007069617509841919, -0.009735575877130032, -0.00988409761339426, -0.007856780663132668, 0.027164559811353683, 0.028872555121779442, -0.0009013391099870205, -0.02365945465862751, -0.030179543420672417, -0.004585597664117813, 0.007893911562860012, -0.02965971827507019, 0.014161513186991215, 0.0011863145045936108, 0.018253277987241745, 0.013597131706774235, 0.001640232978388667, 0.010181140154600143, 0.027001187205314636, -0.020421689376235008, 0.011889136396348476, -0.00830234494060278, 0.0008502848795615137, -0.003250761656090617, 0.01997612603008747, -0.014963529072701931, 0.01653042994439602, -0.002361489925533533, -0.0018852932844311, -0.008124119602143764, 0.0018379520624876022, 0.011985675431787968, 0.011384163983166218, -0.005473012570291758, -0.008161249570548534, -0.00404349435120821, 0.013560001738369465, -0.0020365994423627853, -0.004745258018374443, 0.027862610295414925, -0.0059594204649329185, 0.002419041935354471, 0.00522423954680562, 0.005480438936501741, 0.0036406302824616432, 0.007656277157366276, -0.021134592592716217, -0.015282849781215191, 0.0031505096703767776, -0.0072181387804448605, 0.00748547725379467, -0.015416518785059452, -0.026674440130591393, 0.0018230999121442437, -0.018342390656471252, 0.021788086742162704, -0.001084206043742597, -0.004515049979090691, -0.011376737616956234, -0.010946025140583515, -0.020599914714694023, -0.0004051848954986781, 0.0019214953063055873, 0.008035006932914257, 0.0018045346951112151, 0.005706933792680502, 0.009089508093893528, -0.008569683879613876, 0.01884736306965351, -0.0019233517814427614, -0.01871369406580925, 0.0009240814251825213, 0.028724033385515213, 0.00025341458967886865, 0.0004650575574487448, 0.015921492129564285, -0.01190398819744587, -0.000945431413128972, -0.00366290844976902, -0.004860362038016319, -0.011465850286185741, 0.02471395768225193, -0.021268261596560478, 0.006293593440204859, -0.004425936844199896, 0.014696190133690834, -0.0038392776623368263, -0.02527833916246891, 0.0013413337292149663, -0.010025192983448505, 0.014116956852376461, 0.009809836745262146, -0.014844711869955063, -0.01553533598780632, -0.03130830451846123, 0.02083754912018776, -0.01632249914109707, 0.0026956629008054733, 0.0011519689578562975, 0.009802411310374737, 0.0024227548856288195, 0.00988409761339426, -0.0011538254329934716, 0.02068902738392353, 0.004715553484857082, -0.004002651199698448, 0.0027569280937314034, 0.004266276489943266, -0.006568357814103365, 0.001940060523338616, -0.013641688041388988, -0.014681338332593441, 0.001446226960979402, 0.013114437460899353, -0.0321994349360466, -0.02027316763997078, -0.011191085912287235, -0.0056363861076533794, -0.0028664625715464354, 0.00811669323593378, -0.004422224126756191, 0.001500994199886918, -0.010812356136739254, -0.02726852521300316, -0.011814875528216362, -0.005213100463151932, 0.010426200926303864, 0.010634130798280239, -0.002671528374776244, 0.0030409751925617456, 0.005602968856692314, -0.008643943816423416, 0.00015316267672460526, 0.0166789498180151, -0.01376793161034584, 0.0098543930798769, -0.020510802045464516, 0.003961807582527399, 0.007232991047203541, 0.007296112831681967, 0.006650044582784176, 0.005926002748310566, -0.0029537188820540905, 0.009520220570266247, -0.0005244661006145179, 0.017748303711414337, 0.006516375578939915, 0.046576302498579025, -0.02379312366247177, 0.012416386976838112, 0.001665295916609466, -0.003969233948737383, 0.019055292010307312, -0.013322367332875729, 0.02117914892733097, 0.017703747376799583, -0.015297701582312584, 0.003766873385757208, -0.011413867585361004, -0.028634920716285706, -0.0321994349360466, 0.004778675269335508, 0.013760505244135857, 0.018520615994930267, 0.010210844688117504, 0.006850548554211855, 0.0010090171126648784, -0.017674043774604797, 0.027446750551462173, -0.014465982094407082, -0.030535995960235596, 4.206171797704883e-05, -0.010151436552405357, 0.011666353791952133, -0.0017664760816842318, -0.008168675936758518, 0.03341731056571007, 0.0070399134419858456, 0.006081950385123491, 0.008502848446369171, -0.016218533739447594, -0.004522475879639387, -0.0032062053214758635, 0.019174110144376755, 0.00450019771233201, -0.004919770639389753, -0.0018630150007084012, -0.0031950660049915314, 0.008183527737855911, -0.01200052723288536, -0.01480015553534031, 0.003467974252998829, -0.0028683191630989313, 0.006234184838831425, 0.01808990351855755, -0.008814743719995022, 0.00861424021422863, -0.007025061175227165, 0.0072775473818182945, 0.0017887543654069304, 0.0022278206888586283, -0.009928653948009014, -0.010760373435914516, -0.004722979851067066, -0.01736214943230152, 0.0001861158525571227, 0.0022315336391329765, -0.03802147135138512, -0.01045590452849865, 0.0077008334919810295, 0.01423577405512333, -0.015267997980117798, 0.013938731513917446, 0.005406178068369627, -0.007849355228245258, 0.021223705261945724, 0.006353002041578293, 0.023317856714129448, 0.0029295841231942177, -0.005940855015069246, -0.03558572009205818, 0.004091763868927956, 0.01073066983371973, 0.008094415068626404, 0.008257788605988026, 0.042833566665649414, 0.008636518381536007, 0.034991636872291565, -0.0022593813482671976, -0.00798302423208952, -0.005242804531008005, 0.017198774963617325, 0.01462192926555872, 0.029540902003645897, 0.009683594107627869, 0.02352578565478325, -0.026317987591028214, -0.015639301389455795, 0.010574721731245518, 0.0061376458033919334, 0.0013998140348121524, 0.0026251154486089945, 0.0067762876860797405, 0.0015353397466242313, -0.002859036438167095, 0.01568385772407055, -2.7847758246934973e-05, 0.014822433702647686, -0.005020022392272949, -0.025441711768507957, 0.014072400517761707, 0.008881578221917152, 0.009958358481526375, 0.014956102706491947, 0.0038875469472259283, 0.016144273802638054, -0.009334568865597248, -0.017985938116908073, -0.0006372495554387569, -0.012550055980682373, -0.012245587073266506, 0.013715948909521103, 0.021788086742162704, -0.005283648148179054, 0.008547404780983925, 0.0016717937542125583, 0.0016977849882096052, 0.0017451262101531029, -0.003347300458699465, 0.012119344435632229, 0.004652432166039944, -0.005450734402984381, 0.010596999898552895, 0.009438533335924149, 0.0036499127745628357, 0.003828138578683138, 0.007663703057914972, 0.0035143871791660786, -0.004147459287196398, -0.009356847032904625, -0.03184298425912857, 0.0065349405631423, -0.011495554819703102, -0.007169869262725115, 0.00492719653993845, -0.019664229825139046, 0.005205674096941948, 0.010589574463665485, -0.005907437764108181, 0.014792729169130325, 0.01143614575266838, -0.021491043269634247, -0.006612914148718119, 0.008064710535109043, 0.006456966977566481, 0.02597638964653015, -0.012304996140301228, -0.006085663568228483, 0.015654152259230614, -0.01009945385158062, -0.016975993290543556, 0.014859563671052456, 0.011213364079594612, 0.026169465854763985, 0.0017488391604274511, 0.0070399134419858456, 0.007452060002833605, -0.002471024403348565, 0.010351940058171749, -0.01653042994439602, -0.0006688103312626481, -0.013181271962821484, 0.002688237000256777, -0.0040175034664571285, 0.03297174721956253, -0.011770319193601608, 0.019396891817450523, -0.005732925143092871, 0.015847230330109596, -0.011918840929865837, -0.004084337968379259, 0.013582279905676842, 0.02166926860809326, 0.024609992280602455, 0.012401535175740719, 0.014844711869955063, -0.0016281655989587307, -0.00833204947412014, 0.006583210080862045, -0.011859431862831116, -0.018386946991086006, -0.006408697459846735, 0.0040323552675545216, 0.013337220065295696, -0.014027844183146954, -0.022649509832262993, -0.0163076464086771, -0.010827207937836647, -0.002134994836524129, 0.006364141125231981, -0.00672430545091629, 0.014206069521605968, 0.02706059440970421, 0.028441844508051872, -0.02951119840145111, 0.011042564176023006, 0.018253277987241745, 0.018981032073497772, -0.018758250400424004, 0.0006066170171834528, -0.007685981225222349, -0.02358519472181797, -0.031100375577807426, -0.012408960610628128, 0.008012727834284306, -0.020718732848763466, 0.0027829192113131285, -0.001469433424063027, 0.026184318587183952, 0.005680942442268133, -2.400418816250749e-05, 0.010114305652678013, 0.007871633395552635, 0.013604558072984219, 0.013255532830953598, -0.03130830451846123, 0.009200898930430412, -0.009906375780701637, -0.0179265309125185, -0.019887011498212814, -0.007804798427969217, 0.012342126108705997, -0.004619014915078878, 0.0066797491163015366, 0.012609465047717094, -0.00957220233976841, 0.00465985806658864, 0.021342521533370018, -0.01257233414798975, -0.005461873486638069, 0.025025852024555206, 0.01104999054223299, 0.011094546876847744, 0.005874020513147116, -0.002552711172029376, -0.01310701109468937, 0.006070811301469803, -0.0022593813482671976, -0.0010730669600889087, 0.012832246720790863, -0.005153691861778498, 0.009512794204056263, -0.0005105422460474074, -0.01214904896914959, -0.008525126613676548, 0.0008372892625629902, -0.009408828802406788, -0.0035905041731894016, -0.009520220570266247, -0.004125181119889021, -0.016218533739447594, 0.00027522866730578244, -0.030833037570118904, 0.02204057201743126, 0.011800023727118969, 0.012483221478760242, -0.005376474000513554, 0.02294655330479145, 0.006475531961768866, -0.003516243537887931, -0.0004929053247906268, 0.004262563306838274, -0.017050253227353096, 0.009802411310374737, -0.024105019867420197, 0.012646595016121864, -0.005105422344058752, 0.0034754001535475254, 0.008324623107910156, -0.003854129696264863, -0.0027309367433190346, -0.007737963926047087, 0.02414957620203495, 0.03404109925031662, 0.00709932204335928, -0.010344513691961765, 0.01083463430404663, -0.004734118934720755, -0.00775281572714448, 0.014406573958694935, -0.016426464542746544, -0.009044951759278774, -0.005343056749552488, 0.005955707281827927, -0.01758493110537529, -0.0008618881111033261, 0.027728941291570663, -0.017183924093842506, -0.011361884884536266, -0.005279934965074062, 0.0035385217051953077, 0.012245587073266506, 0.03139742091298103, -0.0008628163486719131, 0.014488260261714458, -0.01596604846417904, -0.009134064428508282, -0.00804985873401165, 0.017822565510869026, -0.0077825202606618404, 0.0024227548856288195, -0.006612914148718119, -0.00978755857795477, 0.0023484942503273487, 0.007526320870965719, -0.001470361603423953, -0.015550187788903713, -0.004210581071674824, -0.006353002041578293, 0.01568385772407055, -0.009705872274935246, 0.0011835297336801887, 0.012483221478760242, -0.006969365756958723, 0.017703747376799583, -0.00709932204335928, 0.0021498468704521656, -0.0008549261838197708, 0.0058554550632834435, 0.0025991240981966257, -0.006523801479488611, -0.010225696489214897, 0.013975861482322216, -0.026317987591028214, 0.006794853135943413, 0.014295182190835476, -0.017287887632846832, -0.008554831147193909, 0.005094283260405064, 0.0048158057034015656, -0.010047471150755882, 0.03392228111624718, 0.004388806875795126, -0.003720460459589958, 0.0209118090569973, 0.0005110063357278705, 0.0008112980285659432, 0.0030186970252543688, 0.009089508093893528, -0.007065904326736927, -0.008138971403241158, -0.002827475778758526, 0.009111786261200905, -0.004295981023460627, 0.038377922028303146, 0.0013487597461789846, -0.0006572070997208357, 0.014458555728197098, 0.00012287823483347893, 0.020926661789417267, -0.009431106969714165, -0.003690756158903241, -0.0066983141005039215, 0.0017664760816842318, 0.017911678180098534, 0.03989284113049507, 0.004715553484857082, 0.013649114407598972, 0.004429650027304888, 0.004949474707245827, 0.011191085912287235, 0.004700701683759689, 0.017050253227353096, 0.012861951254308224, 0.003377004759386182, 0.025189224630594254, -0.002912875497713685, 0.002023603767156601, -0.005576977506279945, 0.0017349153058603406, 0.008198379538953304, 0.010426200926303864, -0.013693670742213726, 0.0012782120611518621, -0.008785039186477661, 0.0061970544047653675, -0.002324359491467476, -0.005829464178532362, 0.019946420565247536, 0.0025972675066441298, -0.00984696764498949, -0.006564644630998373, 0.010366791859269142, 0.006921096239238977, -0.010797504335641861, 0.028085391968488693, -0.025040704756975174, 0.00843601394444704, 0.00946823786944151, 0.0005017237854190171, -0.0160997174680233, -0.01257233414798975, -0.01786712184548378, -0.0034624047111719847, 0.007403790485113859, -0.0006530299433507025, 0.012201030738651752, -0.005227952264249325, 0.003961807582527399, 0.014406573958694935, -0.007162443362176418, 0.004099189769476652, -0.016634393483400345, -0.02146133966743946, 0.001411881297826767, 0.0029165884479880333, 0.0064792451448738575, 0.006683461833745241, -0.012052509933710098, -0.011852005496621132, 0.010864338837563992, -0.013649114407598972, 0.0009022673475556076, 0.009297437965869904, -0.0029091625474393368, 0.002471024403348565, 0.005320778116583824, -0.008094415068626404, -0.0014007422141730785, -0.025827867910265923, -0.012134196236729622, -0.014042695984244347, 0.0018463063752278686, -0.009594480507075787, -0.0058183250948786736, 0.006141358986496925, 0.0064792451448738575, 0.010389070026576519, -0.01503778900951147, -0.01615912653505802, -0.00922317709773779, 0.010277679190039635, 0.020703880116343498, 0.0012345839058980346, 0.013396628201007843, 0.009720724076032639, -0.011406442150473595, 0.006471818778663874, -0.00981726311147213, -0.007819650694727898, -0.00960190687328577, 0.002359633333981037, -0.009015247225761414, -0.0036666214000433683, -0.002328072674572468, -0.0008539978880435228, -0.016723506152629852, -0.012141622602939606, 0.012542630545794964, -0.0007890198030509055, 0.003551517380401492, 0.009453386068344116, -0.00421800697222352, 0.012876803055405617, -0.016084864735603333, 0.003824425395578146, -0.0185057632625103, 0.008012727834284306, 0.005142552778124809, 0.007908763363957405, -0.012624316848814487, -0.002439463511109352, -0.007648850791156292, 0.019872160628437996, -0.006263888906687498, 0.008547404780983925, 0.0036814736668020487, -0.014035270549356937, -0.010158861987292767, 0.011280198581516743, -0.00052725087152794, -0.007678555324673653, 0.008406310342252254, -0.0025712763890624046, 0.008539979346096516, 0.01800079084932804, -0.005829464178532362, -0.00949794240295887, 0.0040954770520329475, 0.007017635274678469, -0.0067762876860797405, 0.010953451506793499, -0.013961009681224823, -0.014310034923255444, -0.009408828802406788, -0.0009250097209587693, -0.005732925143092871, 0.007893911562860012, -0.011829727329313755, -0.006713166367262602, -0.0007416786393150687, 0.0150823462754488, -0.007132739294320345, 0.00900039542466402, -0.03199150413274765, 0.010121732018887997, -0.024416914209723473, -0.012861951254308224, 0.016010604798793793, -0.01653042994439602, 0.014829859137535095, -0.005877733696252108, 0.00922317709773779, 0.0033101702574640512, -0.015134328044950962, 0.0012299426598474383, -0.013366923667490482, 0.016114570200443268, -0.023481229320168495, -0.015097198076546192, 0.008703352883458138, -0.021223705261945724, -0.007804798427969217, 0.02847154811024666, -0.00861424021422863, 0.004875214304775, 0.0011890992755070329, 0.006308445706963539, 0.006854261737316847, -0.0051945350132882595, 0.013901600614190102, -0.014399147592484951, -0.02512981742620468, -0.010322235524654388, -0.02380797639489174, -0.01927807554602623, -0.035348087549209595, -0.006223045755177736, 0.011027712374925613, -0.01073066983371973, -0.0006757722585462034, -1.3858611055184156e-05, -0.002749501960352063, -0.012074788101017475, -0.014317460358142853, -0.02670414373278618, -0.003347300458699465, -0.015030363574624062, -0.024476323276758194, 0.011168807744979858, -0.007923615165054798, 0.01486699003726244, 0.01503778900951147, -0.025827867910265923, 0.005992837715893984, -0.0028646059799939394, -0.020436542108654976, -0.02371886372566223, -0.01130247674882412, -0.0004882640205323696, 0.000263857509708032, -0.0012837816029787064, -0.021595008671283722, 0.020020682364702225, -0.0030632533598691225, 0.010077175684273243, -0.0038207124453037977, 0.016574986279010773, -0.013782783411443233, 0.0006702027167193592, 0.020792992785573006, 0.003096670610830188, -0.02677840366959572, 0.009200898930430412, -0.007916189730167389, -0.020852401852607727, 0.0029759970493614674, -0.0029221579898148775, 0.003950668498873711, -0.007366660516709089, 0.023897089064121246, 0.017065105959773064, 0.0008470359607599676, -0.005940855015069246, 0.0027030890341848135, -0.016723506152629852, 0.022723769769072533, 0.01722848042845726, 0.002736506285145879, -0.01997612603008747, -0.0012958489824086428, -6.381778075592592e-05, -0.006690888199955225, 0.0042551374062895775, -0.015416518785059452, 0.02409016713500023, 0.01602545566856861, -0.006364141125231981, -0.00522423954680562, -0.00034600839717313647, 0.005157404579222202, 0.03035776875913143, -0.007960746064782143, 0.003685186617076397, -0.0035051044542342424, -0.01589178666472435, -0.002244529314339161, -0.012379257008433342, -0.015297701582312584, 0.02450602687895298, -0.007819650694727898, 0.01338920183479786, 0.010025192983448505, -0.010374218225479126, -0.008235510438680649, 0.01957511715590954, -0.0005769127164967358, 0.02223365008831024, 0.003473543794825673, 0.00931971613317728, 0.009408828802406788, -0.010329661890864372, 0.005937141831964254, 0.0007305394974537194, 0.0030335490591824055, -0.008287493139505386, 0.01651557721197605, 0.006560931913554668, -0.004633867181837559, -0.004771249368786812, -0.004511336795985699, -0.0016476589953526855, -0.012423813343048096, -0.0016578698996454477, -0.005079430993646383, -0.002905449364334345, 0.02400105446577072, -0.004786101169884205, 0.009616759605705738, -0.018327537924051285, -0.00925288163125515, -0.010426200926303864, 0.0010879191104322672, 0.03225884214043617, 0.019857307896018028, -0.0029778536409139633, -0.00798302423208952, 0.02259010076522827, -0.00013169669546186924, -0.0037854386027902365, 0.00048594336840324104, 0.024030758067965508, 0.016990846022963524, 0.012446091510355473, -0.00843601394444704, -0.0037501647602766752, 0.0016244525322690606, 0.023763420060276985, 0.009119212627410889, 0.0004873357538599521, -0.004745258018374443, 0.001857445458881557, 0.01225301343947649, -0.01814931258559227, 0.023005960509181023, 0.0036461998242884874, -0.00686911353841424, 0.015119476243853569, 0.013307515531778336, -0.009290012530982494, 0.024609992280602455, 0.010062322951853275, 0.012171327136456966, -0.0017070675967261195, 0.011347033083438873, -0.017748303711414337, 0.0013663966674357653, -0.025471415370702744, -0.0004576314822770655, 0.04013047739863396, -0.003581221681088209, -0.028827998787164688, -0.007106747943907976, -0.00978755857795477, -0.0064421147108078, 0.006568357814103365, -0.0038726949132978916, 0.01901073567569256, -0.0035329521633684635, -0.029139894992113113, 0.0394175723195076, 0.0002580558939371258, -0.01771860010921955, 0.00922317709773779, -0.009230603463947773, 0.002185120712965727, -0.006141358986496925, 0.022768327966332436, -0.026659587398171425, 0.010998007841408253, 0.007444634102284908, -0.014607077464461327, -0.0018230999121442437, 0.006783714052289724, 0.03410050645470619, -0.03573424369096756, -0.007997876033186913, -0.0023949071764945984, 0.010507887229323387, -0.004830657970160246, -0.008205805905163288, -0.013522871769964695, 0.01589178666472435, -0.011354459449648857, 0.005565838422626257, 0.01644131727516651, -0.005513856187462807, 0.020184054970741272, -0.013827339746057987, 0.01948600448668003, -0.003976659849286079, -0.003297174582257867, -0.025723902508616447, 0.016916584223508835, -0.010975729674100876, -0.0051945350132882595, -0.006486671045422554, -0.008814743719995022, -0.017124515026807785, -0.006935948505997658, 0.02541200816631317, -0.002803341019898653, 0.0018760106759145856, 0.008146397769451141, -0.011592093855142593, -0.014918972738087177, 0.015126902610063553, -0.020302873104810715, -0.0011566102039068937, 0.03540749475359917, -0.0011482558911666274, -0.006798565853387117, -0.010797504335641861, 0.010181140154600143, 0.013262959197163582, -0.001165892812423408, 0.007374086417257786, 0.022694066166877747, -0.018743397668004036, 0.013225828297436237, -0.008851873688399792, 0.0025712763890624046, 0.023065369576215744, 0.020748436450958252, -0.0005147194024175406, -0.032229140400886536, 0.013790209777653217, -0.0025100111961364746, 0.02238217182457447, -0.006735444534569979, -0.013478314504027367, 0.00492719653993845, 0.005762629210948944, -0.029466642066836357, -0.0001233423681696877, 0.013693670742213726, 0.016055161133408546, 0.0031987791880965233, -0.01886221393942833, 0.010582148097455502, -0.01281739491969347, -0.008346901275217533, 0.006605488248169422, -0.0029277275316417217, -0.02189205028116703, -0.015461075119674206, -0.01617397740483284, -0.01707995869219303, 0.009304864332079887, -0.00044556413195095956, 0.0027847758028656244, -0.011191085912287235, 0.0018917910056188703, -0.028827998787164688, -0.0004502054362092167, -0.02048109844326973, 0.0019344909815117717, 0.021862346678972244, 0.007582016289234161, -0.00615992397069931, 0.013641688041388988, -0.024491174146533012, -0.01835724152624607, -0.0017302740598097444, 0.012059935368597507, -0.013552575372159481, 0.010040044784545898, 0.0040954770520329475, -0.011250494047999382, 0.0037037518341094255, -0.011577241122722626, -0.005747777409851551, 0.015312554314732552, -0.006141358986496925, -0.0182978343218565, 0.0029518622905015945, -0.008487996645271778, 9.340602264273912e-05, 0.006568357814103365, -0.00238376809284091, -0.009089508093893528, -0.003215487813577056, -0.0065386537462472916, -0.001969764707610011, 0.0006799494149163365, -0.026867516338825226, -0.003924677614122629, 0.0018073194660246372, 0.0046932753175497055, 0.014473408460617065, -0.022114833816885948, -0.011421293951570988, -0.010144010186195374, 0.019738491624593735, -0.006301019340753555, -0.0203325767070055, 0.00048640751629136503, 0.014250625856220722, 0.02670414373278618, 0.013827339746057987, 0.01644131727516651, 0.01581752672791481, 0.029689423739910126, -0.030684515833854675, 0.0034976783208549023, -0.024312948808073997, 0.011874283663928509, -0.004882640205323696, -0.004685849417001009, 0.014473408460617065, 0.017748303711414337, -0.028352729976177216, 0.0163076464086771, 0.0022371031809598207, -0.005911150947213173, -0.0057737682946026325, -0.012446091510355473, -0.004010077100247145, -0.019084997475147247, 0.006924809422343969, 0.0019270648481324315, -0.0065349405631423, -0.01929292641580105, 0.023837681859731674, 0.0015019223792478442, 0.0036963257007300854, 0.011636650189757347, 0.015475927852094173, 0.01779286004602909, -0.008124119602143764, 0.009022673591971397, 0.003302744124084711, -0.013894175179302692, 0.007663703057914972, 0.004414797760546207, -0.029006224125623703, 0.019382039085030556, -0.007351808249950409, -0.002125712111592293, -0.04443759471178055, 0.006720592267811298, -0.009200898930430412, 0.00027824551216326654, -0.013196124695241451, 0.005528708454221487, 0.009312290698289871, -0.005576977506279945, 0.00950536783784628, 0.0006298234802670777, -0.012980768457055092, -0.0008929847972467542, -0.005992837715893984, 0.009802411310374737, -0.013582279905676842, -0.005822037812322378, 0.01249807421118021, -0.013901600614190102, 0.012587186880409718, -0.0018676563631743193, 0.01984245516359806, -0.014436277560889721, -0.017124515026807785, -0.0038986860308796167, -0.017629487439990044, 0.02557538077235222, 0.001106484211049974, 0.006739157252013683, 0.010998007841408253, -0.018891919404268265, 0.02061476744711399, 0.01196339726448059, -0.004838083870708942, 0.012832246720790863, 0.021847493946552277, -0.010648982599377632, 0.002964857965707779, 0.0009045880287885666, -0.024981295689940453, -0.00953507237136364, 0.01373080164194107, 0.030283508822321892, 0.0107677998021245, 0.006367853842675686, -0.013961009681224823, -0.006152498070150614, 0.02147619053721428, 0.028842851519584656, 0.0055361343547701836, 0.01997612603008747, 0.025233782827854156, -0.008094415068626404, -0.0044556413777172565, 0.005699507892131805, -0.004689562600106001, 0.02097121812403202, -0.009275159798562527, -0.0015798961976543069, -0.005305926315486431, -0.005031161475926638, 0.008911282755434513, 0.024253541603684425, -0.008421162143349648, -0.011057416908442974, 0.010255401022732258, 0.011272772215306759, -0.0029778536409139633, -0.01225301343947649, 0.017183924093842506, -0.02267921343445778, 0.010507887229323387, 0.004971752874553204, -0.0019567690324038267, 0.0006623124936595559, 0.02364460378885269, 0.009809836745262146, -0.010092027485370636, -0.02824876643717289, -0.0035905041731894016, -0.008911282755434513, 0.002582415472716093, 0.029347823932766914, 0.009200898930430412, 0.012074788101017475, -0.016203682869672775, -0.017466114833950996, 0.016634393483400345, -0.0010405778884887695, -0.042625635862350464, 0.023035665974020958, -0.01405012235045433, -0.020807845517992973, 0.02322874404489994, 0.006947087589651346, 0.010002914816141129, -0.015579892322421074, -0.006382706109434366, -0.01162179745733738, -0.012542630545794964, -0.004273702390491962, -0.016411611810326576, 0.0185057632625103, -0.013790209777653217, 0.009052378125488758, -0.004708127584308386, -0.015134328044950962, 0.008837021887302399, 0.005435882601886988, 0.006308445706963539, -0.007600581273436546, 0.010671260766685009, 0.006263888906687498, -0.027164559811353683, 0.02202571928501129, 0.007730537559837103, 0.0018722976092249155, 0.009067229926586151, -0.02407531440258026, 0.018594875931739807, 0.014406573958694935, -0.02401590719819069, 0.00027314008912071586, 0.0025916979648172855, 0.021372226998209953, 0.026926925405859947, 0.014154086820781231, 0.019055292010307312, 0.01722848042845726, 0.002138707786798477, 0.0014295182190835476, -0.0004218935500830412, 0.0006404984160326421, -0.00798302423208952, 0.004708127584308386, -0.008361753076314926, 0.01921866647899151, 0.015238293446600437, 0.010708391666412354, 0.011005434207618237, -0.008926134556531906, 0.0025081548374146223, 0.02061476744711399, 0.014592225663363934, -0.017540374770760536, -0.010552443563938141, -0.010129157453775406, -0.007864207029342651, 0.01920381374657154, 0.010322235524654388, -0.004696988500654697, -6.724073318764567e-05, -0.002326216083019972, -0.0048343706876039505, 0.022010868415236473, 0.005684655625373125, 0.007923615165054798, -0.004154885653406382, 0.007968171499669552, -0.008487996645271778, -0.02979338727891445, -0.014287756755948067, -0.01080492977052927, 0.014555094763636589, 0.00922317709773779, 0.006527514662593603, -0.012327274307608604, 0.02689722180366516, -0.00921575166285038, -0.017911678180098534, -0.003170931478962302, -0.011777745559811592, 0.0007026917883194983, 0.0013682531425729394, 0.011354459449648857, -0.016782915219664574, -0.02245643176138401, 0.0004578635562211275, -0.0018333107000216842, 0.018817657604813576, -0.005866594612598419, -0.029837945476174355, 0.0019530560821294785, -0.0022872292902320623, 0.004763823002576828, -0.001029438804835081, -0.01048560906201601, 0.0209118090569973, -0.010025192983448505, -0.033714354038238525, 0.003382574301213026, 0.02287229150533676, -0.005331917200237513, -0.009134064428508282, 0.009802411310374737, 0.0011287624947726727, 0.0069953566417098045, 0.011124251410365105, -0.02379312366247177, 0.006598062347620726, -0.007062191609293222, -0.02478821761906147, -0.020718732848763466, -0.007908763363957405, 0.0118668582290411, 0.0027643542271107435, 0.015022937208414078, 0.012304996140301228, 0.00716615654528141, -0.007177295628935099, 0.008851873688399792, -0.002190690254792571, -0.030105283483862877, 0.002684523817151785, 0.00255085458047688, -0.00040147185791283846, -0.010233122855424881, 0.0015585462097078562, 0.0038355644792318344, 0.012245587073266506, -0.010270252823829651, -0.005187109112739563, -0.010077175684273243, -0.017614634707570076, 0.008272640407085419, 0.009809836745262146, 0.006289880257099867, -0.03359553590416908, -0.0034772567451000214, -0.02994190901517868, -0.0010749234352260828, -0.007229277864098549, 0.0006706668646074831, -0.005528708454221487, -0.0036406302824616432, 0.005123987328261137, -0.015594744123518467, -0.00348839582875371, -0.015178884379565716, 0.01794138178229332, -0.019649378955364227, -0.012208457104861736, -0.0004207332094665617, 0.030743924900889397, -0.002218537963926792, -0.005654951557517052, -0.011837153695523739, -0.00037385616451501846, -0.012475796043872833, -0.040071066468954086, -0.0020885819103568792, -0.0005518497200682759, 0.003156079212203622, 0.0012225165264680982, -0.0025991240981966257, 0.01130247674882412, -0.007251556031405926, 0.005042300559580326, -0.012364404276013374, -0.01653042994439602, 0.020184054970741272, 0.011881710030138493, 0.003414135193452239, -0.006386419292539358, -0.01707995869219303, -0.011837153695523739, 0.008064710535109043, -0.012045083567500114, 0.008837021887302399, 0.010010341182351112, -0.019649378955364227, -0.019901864230632782, -0.016129421070218086, 0.0030948142521083355, 0.013686245307326317, 0.04574458301067352, 0.01041877456009388, 0.023481229320168495, -0.0020922948606312275, -0.008361753076314926, -0.02689722180366516, 0.0005439595552161336, 0.0034995349124073982, -0.00925288163125515, 0.005940855015069246, 0.005647525191307068, -0.028055688366293907, 0.01331494189798832, 0.013723375275731087, 0.004125181119889021, 0.012654021382331848, 0.006683461833745241, 0.0030112708918750286, -0.007745389826595783, 0.015980899333953857, -0.0020106080919504166, -0.013322367332875729, 0.0018147455994039774, -0.021728677675127983, 0.004039781633764505, 0.017035402357578278, -0.0024895896203815937, -0.012995620258152485, -0.004381380509585142, -0.008777613751590252, 0.015045215375721455, 0.009030099958181381, -0.00748547725379467, 0.025308042764663696, 0.024803070351481438, 0.03127860277891159, 0.009334568865597248, 0.010589574463665485, -0.006794853135943413, -0.010069749318063259, -0.039803728461265564, -0.009780132211744785, -0.010277679190039635, 0.018268128857016563, -0.003920964431017637, 0.012423813343048096, -0.0035867912229150534, 0.01589178666472435, -0.034635186195373535, 0.0008855587220750749, 0.0008001589449122548, 0.002136851195245981, -0.012022805400192738, -0.0030279795173555613, 0.012141622602939606, 0.014035270549356937, 0.005736638326197863, 0.009104360826313496, -0.016114570200443268, 0.00836917944252491, 0.006111654452979565, -0.004696988500654697, 0.01458479929715395, 0.007392651401460171, -0.007065904326736927, 0.002495159162208438, -0.0014471551403403282, 0.006624053232371807, 0.02202571928501129, -0.009200898930430412, 0.017005696892738342, 0.018520615994930267, -0.01688688062131405, -0.018490910530090332, -0.010790077969431877, 0.010010341182351112, -0.03282322362065315, 0.0009282585815526545, -0.029466642066836357, -0.012059935368597507, -0.016188830137252808, -0.0008196523413062096, 0.0008391457959078252, -0.008762761019170284, -0.021728677675127983, -0.005305926315486431, -0.0073592341504991055, 0.01595119573175907, -0.001890862826257944, 0.008228084072470665, -0.017688896507024765, -0.023273300379514694, 0.003219200763851404, 0.0003411350480746478, 0.011235642246901989, -0.033506423234939575, -0.035912469029426575, 0.011243068613111973, 0.012661447748541832, 0.017332443967461586, -0.011829727329313755, 0.011101973243057728, 0.0026511065661907196, 0.009683594107627869, 0.012624316848814487, -0.022694066166877747, -0.013374350033700466, 0.005339343566447496, 0.004121468402445316, -0.004771249368786812, 0.0011584667954593897, 3.881281372741796e-05, -0.018594875931739807, 0.019857307896018028, 0.013500593602657318, -0.005595542956143618, 0.03597187623381615, -0.0011575384996831417, 0.02612490952014923, 0.007132739294320345, 0.010745521634817123, 0.00802015420049429, 0.015342257916927338, -0.007856780663132668, 0.0010684255976229906, 0.0072812605649232864, 0.006111654452979565, -0.004362815525382757, -0.004463067278265953, 0.008057285100221634, 0.00686911353841424, -0.01222330890595913, 0.006909957155585289, 0.0015585462097078562, -0.03169446066021919, 0.004793527536094189, 0.010040044784545898, 0.01872854493558407, 0.003714890917763114, -0.018773101270198822, -0.030684515833854675, 0.04048692807555199, 0.023763420060276985, -0.002860893029719591, 0.0075597381219267845, -0.010589574463665485, -0.017273036763072014, 0.0053356303833425045, 0.023124778643250465, 0.010500461794435978, 0.01716907136142254, 0.005803472828119993, -0.0024524591863155365, 0.004563319496810436, -0.009356847032904625, 0.0004225897428113967, -0.012097066268324852, 0.01779286004602909, 0.00686911353841424, -0.009163768962025642, -0.011985675431787968, -0.002970427507534623, 0.001997612416744232, -0.0010944169480353594, 0.022010868415236473, 0.004648718982934952, -0.02125340886414051, 0.025738755241036415, -0.026882369071245193, -0.002641824074089527, -0.00686911353841424, -0.001884364988654852, -0.012780264019966125, -0.009104360826313496, 0.012104492634534836, 0.012639169581234455, 0.0035366653464734554, 0.009126638993620872, -0.00833947490900755, 0.004169737454503775, 0.0022927988320589066, 0.0033435875084251165, 0.004611588548868895, 0.017614634707570076, 0.008710778318345547, 0.007440920919179916, 0.0007857708842493594, 0.01716907136142254, 0.006768861785531044, -0.003031692700460553, -0.011554962955415249, 0.001445298665203154, 0.0004601842083502561, 0.0015371962217614055, -0.012007953599095345, 0.006824557203799486, 0.021996015682816505, -0.023614898324012756, -0.04090278595685959, -0.013522871769964695, -0.00960190687328577, 0.016367055475711823, -0.018669137731194496, 0.008755335584282875], "39292e60-4e04-403d-9efb-39addde4ee28": [-0.012024514377117157, -0.038732048124074936, -0.0023198884446173906, 0.012694544158875942, -0.014726247638463974, 0.007946697995066643, -0.018227694556117058, 0.007593671791255474, -0.008883299306035042, 0.04850151762366295, 0.0038148474413901567, 0.0056628333404660225, 0.037982769310474396, -2.0924362615915015e-05, 0.00801154039800167, 0.011988491751253605, -0.01399858109652996, 0.02723347209393978, -0.016051897779107094, -0.024092257022857666, 0.011123936623334885, -0.021916460245847702, -0.03178679198026657, 0.01531702745705843, -0.003123203758150339, -0.033371809870004654, -0.01694527082145214, 0.01103027630597353, -0.017391957342624664, 5.6877117458498105e-05, -0.002325291745364666, -0.008047563023865223, 0.028069209307432175, 0.028054799884557724, 0.011765148490667343, -0.034553367644548416, 0.005046837963163853, 0.0018254711758345366, -0.011966877616941929, 0.010929412208497524, -0.004625367466360331, 0.010266587138175964, 0.02206055261194706, -0.01734873093664646, -0.01396976225078106, 0.02244960330426693, -0.06576379388570786, -0.027550475671887398, -0.0118804220110178, 0.001471544150263071, 0.017968328669667244, 0.03593665733933449, -0.03654184564948082, 0.028616759926080704, 0.04360237345099449, -0.03501446545124054, 0.011851604096591473, 0.07400587946176529, 0.01322048157453537, -0.0342075452208519, 0.006300442386418581, -0.016988499090075493, 0.017002908512949944, -0.020662857219576836, 0.027161426842212677, -0.011858807876706123, -0.025994276627898216, 0.004005770199000835, -0.019135477021336555, 0.01861674338579178, 0.003876086790114641, 0.012269471772015095, -0.02018735185265541, -0.0256772730499506, 0.014056217856705189, 0.004304761998355389, 0.04357355460524559, 0.05060526728630066, 0.03126806020736694, -0.040230609476566315, 0.011902036145329475, 0.001441825064830482, -0.008256496861577034, -0.00033456465462222695, 0.04680122807621956, 0.03927960246801376, -0.022968335077166557, -0.04028824716806412, -0.0294669046998024, -0.005507933907210827, -0.0056520262733101845, 0.05446694418787956, -0.01828533224761486, 0.0257060918956995, 0.028415029868483543, -0.034899190068244934, 0.030547598376870155, 0.0036239249166101217, -0.0009456066763959825, -0.03544674068689346, 0.00033501494908705354, 0.0021361703984439373, 0.00970462616533041, 0.009012982249259949, 0.0008848176803439856, 0.008350157178938389, 0.01785305328667164, 0.0152305718511343, 0.006826379802078009, 0.02853030525147915, -0.005407068878412247, -0.05657069385051727, 0.02207496203482151, 0.019279569387435913, -0.0200000312179327, -0.025821365416049957, -0.06293957680463791, 0.018314149230718613, -0.030317051336169243, -0.00565923098474741, 0.010886183939874172, -0.01073488686233759, 0.011289643123745918, 0.005997848231345415, -0.028775261715054512, 0.006401306949555874, -0.010842956602573395, 0.040806978940963745, 0.02739197388291359, 0.032853078097105026, -0.007204622495919466, 0.02414989471435547, 0.049020249396562576, -0.009351599961519241, 0.016887634992599487, 0.01292509213089943, -0.001310340710915625, 0.08512981981039047, -0.013559099286794662, 0.031873248517513275, -0.033948179334402084, -0.011174369603395462, -0.04354473575949669, 0.01864556223154068, -0.002058720914646983, -0.03463982418179512, -0.03769458457827568, 0.05265137925744057, -0.0031015898566693068, -0.003058362053707242, -0.05270901694893837, -0.008451022207736969, -0.036801211535930634, -0.005025223828852177, 0.0380115881562233, 0.003933723550289869, 0.010612408630549908, 0.03363117575645447, -0.018299739807844162, 0.03334299102425575, 0.03276662155985832, -0.04112398251891136, 0.027824250981211662, 0.03780985623598099, 0.05265137925744057, 0.00970462616533041, 0.0399136058986187, 0.01074929628521204, -0.00035797967575490475, 0.01963980123400688, 0.0005236860015429556, -0.02227669209241867, 0.011347279883921146, -0.05000007897615433, 0.006992085836827755, -0.004459661431610584, 0.04495684430003166, 0.019683027639985085, -0.002325291745364666, -0.012096560560166836, -0.030979875475168228, 0.0002523869334254414, 0.030317051336169243, 0.0200000312179327, 0.0037788243498653173, 0.064611054956913, 0.013609531335532665, 0.024121075868606567, -0.006649866234511137, 0.015288208611309528, -0.013739214278757572, -0.029625406488776207, 0.03708939626812935, -0.008386180736124516, 0.00708574615418911, -0.005061247386038303, -0.016138354316353798, -0.008580705150961876, -0.005810528062283993, -0.00704972306266427, -0.02129686437547207, -0.04072052612900734, -0.0018587925005704165, 0.017737779766321182, -0.010396270081400871, -0.002667511347681284, -0.0055115362629294395, -0.05210382863879204, 0.012139788828790188, -0.015345845371484756, 0.06201738864183426, -0.02756488509476185, 0.0006803864962421358, -0.00694885803386569, 0.024625398218631744, 0.026945287361741066, 0.0067255147732794285, 0.012053333222866058, 0.001847985666245222, -0.02684442326426506, 0.043285369873046875, 0.024049028754234314, -0.009121051989495754, -0.03982715308666229, -0.029538951814174652, -0.011080709286034107, -0.02319888398051262, 0.010590794496238232, -0.03253607451915741, -0.03850150108337402, 0.02033144421875477, 0.004221908748149872, -0.0031394141260534525, -0.002838621148839593, 0.004322773311287165, 0.04317009821534157, 0.06910673528909683, 0.008134018629789352, -0.002065925393253565, 0.004038190934807062, -0.006246407516300678, 0.02171473205089569, -0.001177955768071115, -0.034928008913993835, 0.006250009872019291, 0.01675795204937458, -0.03328535333275795, 0.04971189424395561, 0.002950292779132724, 0.03066287189722061, 0.004492082167416811, 0.00981990061700344, 0.01749282330274582, -0.0190202035009861, -0.005695254076272249, 0.03590783849358559, 0.022881880402565002, -0.004592946730554104, -0.013955353759229183, -0.03314126282930374, 0.012579270638525486, 0.024495715275406837, -0.013681577518582344, 0.01925075054168701, 0.04014415666460991, -0.003126806113868952, 0.031844429671764374, 0.01674354262650013, -0.019149886444211006, 0.04780987277626991, -0.012845841236412525, -0.03478391468524933, -0.01159944199025631, 0.0152305718511343, -0.009949583560228348, 0.010266587138175964, 0.008919322863221169, 0.003876086790114641, -0.01847265101969242, -0.02455335296690464, -0.0016633671475574374, -0.00827811099588871, 0.03210379555821419, -0.00028886031941510737, 0.02266574092209339, 0.02968304418027401, -0.011657078750431538, -0.04152744263410568, -0.055072132498025894, -0.00263869296759367, 0.006682286970317364, 0.0009055309928953648, -0.016988499090075493, 0.03501446545124054, -0.0038580752443522215, -0.012067742645740509, -0.025763729587197304, -0.026613874360919, 0.0021866029128432274, -0.011873217299580574, -0.004837903659790754, -0.03371763229370117, -0.03201734274625778, -0.016455357894301414, 0.027305519208312035, -0.022046145051717758, 0.058559171855449677, 0.026354508474469185, -0.015561983920633793, 0.02206055261194706, 0.03345826640725136, -0.02414989471435547, 0.0032817055471241474, 0.010461111553013325, 0.018371786922216415, 0.01654181256890297, -0.03161388263106346, -0.03593665733933449, 0.0008816656772978604, -0.00037058774614706635, -0.012197425588965416, -0.00989194680005312, -0.03939487412571907, 0.007680127397179604, 0.03386172652244568, -0.0380980409681797, 0.04204617440700531, -0.008141223341226578, -0.016786770895123482, -0.019351614639163017, -0.008234883658587933, -0.0181124210357666, -0.011902036145329475, 0.02321329340338707, -0.03711821511387825, -0.04420756176114082, -0.039884790778160095, -0.03103751316666603, -0.017377549782395363, -0.007759378291666508, -0.03731994330883026, -0.022910699248313904, 0.008018744178116322, 0.0004520900547504425, -0.03512973710894585, -0.024207530543208122, 0.033804088830947876, 0.032420799136161804, 0.020129714161157608, 0.01713259145617485, 0.0008767124963924289, 0.007658513728529215, 0.03939487412571907, -0.025994276627898216, 0.02968304418027401, -0.001275218091905117, -0.019193114712834358, 0.002199210925027728, 0.0047766645438969135, -0.00509366812184453, -0.025273814797401428, -0.023083610460162163, -0.00761528592556715, -0.042132630944252014, -0.02610955201089382, 0.01634008251130581, -0.0018948157085105777, -0.01884729228913784, -0.05391939356923103, -0.00628603296354413, -0.016858816146850586, 0.00017122234567068517, -0.02171473205089569, -0.014438062906265259, 0.012219039723277092, -0.062132664024829865, 0.029971228912472725, 0.01055477187037468, -0.011606646701693535, 0.01981271058320999, 0.00837897602468729, 0.010482725687325, -0.04227672517299652, 0.0007317194249480963, 0.05789634585380554, 0.02054758369922638, 0.02224787324666977, -0.03925078362226486, -0.03371763229370117, -0.0025450328830629587, -0.019077839329838753, 0.011066299863159657, -0.009855923242866993, -0.020302625373005867, 0.005389057565480471, -0.01847265101969242, -0.006678685080260038, -0.00894093606621027, 0.028804080560803413, -0.016397720202803612, 0.024639807641506195, -0.022190237417817116, 0.010194540955126286, -0.025821365416049957, -0.009394827298820019, -0.04097989201545715, -0.006775947287678719, 0.012312699109315872, 0.0032925123814493418, -0.008155632764101028, 0.021844414994120598, -0.03971187770366669, 0.006149145308881998, 0.0038040406070649624, 0.02435162290930748, 0.008393385447561741, -0.016858816146850586, 0.024668626487255096, -0.0627090334892273, -0.0011221199529245496, 0.043660011142492294, -0.0056520262733101845, 0.03005768358707428, 0.026945287361741066, -0.027305519208312035, 0.018602333962917328, -0.013674372807145119, -0.023530296981334686, -0.008141223341226578, -0.0049567800015211105, 0.014812703244388103, 0.025979867205023766, -0.029438085854053497, 0.009149869903922081, 0.0007898067124187946, 0.01671472378075123, 0.014942387118935585, 0.004654185846447945, 0.0008888702723197639, -0.00442724023014307, 0.03161388263106346, 0.04492802545428276, 0.002575652441009879, -0.009243530221283436, -0.044034652411937714, -0.03371763229370117, -0.023112427443265915, 0.010612408630549908, 0.012341517955064774, -0.017377549782395363, -0.016239218413829803, 0.01903461292386055, -0.02662828378379345, -0.02416430413722992, 0.013883307576179504, -0.01399858109652996, 0.04048997908830643, 0.014149878174066544, 0.006829982157796621, -0.03717585280537605, 0.004924359265714884, -0.008040358312427998, 0.007103757467120886, 0.0006412114016711712, 0.029250767081975937, -0.0276081133633852, 0.007961107417941093, 0.035475559532642365, 0.011844399385154247, 0.00933719053864479, 0.04982716962695122, -0.007229838520288467, 0.004729834385216236, 0.06443814188241959, 0.02909226529300213, 0.004996405448764563, -0.010208949446678162, -0.01887611113488674, 0.029567770659923553, 0.0060338713228702545, 0.024841537699103355, 0.021066315472126007, -0.020619628950953484, 0.032853078097105026, 0.006487762555480003, -0.00633646547794342, -0.01734873093664646, -0.005868164822459221, -0.008097995072603226, 0.002210017992183566, 0.007463988848030567, 0.017766598612070084, 0.027867479249835014, 1.9629780581453815e-05, 0.025403497740626335, -0.024077847599983215, 0.022579286247491837, -0.022406375035643578, -0.006250009872019291, -0.013559099286794662, 0.039106689393520355, -0.03063405491411686, 0.03126806020736694, 0.001705694361589849, -0.02890494465827942, 0.06628252565860748, -0.012586475349962711, -0.0037608128041028976, 0.0014445267152041197, -0.014855931513011456, 0.006592229474335909, 0.014798293821513653, -0.02662828378379345, 0.0123775415122509, 0.014668610878288746, -0.0018263717647641897, -0.008350157178938389, 0.004701016005128622, 0.014149878174066544, -6.782476702937856e-05, 0.0015805140137672424, -0.024409260600805283, -0.026354508474469185, 0.018314149230718613, 0.010129698552191257, -0.022925108671188354, -0.009632579982280731, -0.017593687400221825, 0.00010339758591726422, -0.015619621612131596, -0.00039895594818517566, 0.004632572177797556, -0.007550443988293409, 0.0008267303928732872, -0.006304044742137194, -0.007824219763278961, -0.007273066323250532, -0.034899190068244934, 0.02305479161441326, 0.009351599961519241, -0.03210379555821419, 0.04867442697286606, -0.01123200636357069, -0.01170751079916954, -0.00970462616533041, 0.01086457073688507, 0.01514411624521017, 0.01254324708133936, -0.03317008167505264, 0.008861685171723366, -0.03305480629205704, -0.009207507595419884, -0.022031735628843307, -0.0077809919603168964, -0.015446710400283337, -0.012708953581750393, 0.004027383867651224, -0.011945263482630253, -0.0014940585242584348, -0.031152786687016487, -0.027910707518458366, -0.01883288286626339, -0.01038186065852642, 0.023530296981334686, -0.0304323248565197, 0.012809818610548973, -0.026541829109191895, 0.006361681502312422, -0.012103765271604061, 0.014855931513011456, 0.04210381209850311, 0.010129698552191257, 0.033948179334402084, 0.010043243877589703, 0.01446688175201416, 0.03195970505475998, -0.002219023648649454, -0.009164279326796532, -0.041988540440797806, 0.015100887976586819, 0.018746426329016685, -0.0036041121929883957, 0.0304611437022686, -0.015014433301985264, 0.03126806020736694, 0.007312691770493984, -0.016613859683275223, -0.026484191417694092, -0.029394859448075294, 0.02796834334731102, 0.017824236303567886, 0.043112460523843765, -0.00942364614456892, -0.011873217299580574, -0.010252177715301514, 0.03273780271410942, 0.010770910419523716, -0.011195982806384563, 0.03634011372923851, 0.008061972446739674, 0.02795393392443657, -0.011750739067792892, -0.0017237059073522687, -0.030518779531121254, -0.031152786687016487, 0.006069894414395094, -0.01691645383834839, 0.00940923672169447, 0.013090798631310463, 0.004542514216154814, 0.02167150378227234, -0.014913568273186684, 0.041556261479854584, 0.000928495719563216, 0.008443817496299744, 0.014221924357116222, 0.016902044415473938, 0.015374664217233658, 0.022046145051717758, -0.03527383133769035, 0.030749328434467316, 0.006678685080260038, 0.05360238999128342, -0.006069894414395094, 0.00704972306266427, 0.004517298191785812, -0.03982715308666229, -0.0037391989026218653, -0.0027377565857023, 0.035475559532642365, -0.02283865213394165, 0.008861685171723366, -0.013595121912658215, -0.012427973560988903, 0.03521619364619255, -0.034553367644548416, 0.018530288711190224, -0.005039633251726627, -0.018371786922216415, 0.006084303371608257, -0.007622490171343088, 0.0028530303388834, -0.013242095708847046, 0.011837194673717022, -0.011534600518643856, 0.015417891554534435, 0.018746426329016685, -0.03956778720021248, 0.03403463587164879, 0.027319928631186485, -0.038126859813928604, 0.019308388233184814, -0.014301175251603127, -0.002618880243971944, -0.01674354262650013, 0.010915002785623074, -0.02835739403963089, 0.019063429906964302, 0.03714703395962715, 0.005162111949175596, -0.002917872043326497, -0.042709000408649445, 0.037608128041028976, 0.010893388651311398, -0.0058213346637785435, 0.02112395316362381, -0.01074929628521204, 0.009121051989495754, 0.02167150378227234, 0.0123775415122509, 0.005486319772899151, -0.02985595539212227, -0.0228530615568161, -0.0040453956462442875, -0.009358804672956467, -0.00865995604544878, 0.006876811850816011, -0.0006722813122905791, -0.022708969190716743, -0.016685904935002327, 0.0022982745431363583, -0.04512975364923477, -0.008479840122163296, 0.014113855548202991, -0.019668618217110634, -0.011786761693656445, 0.015850169584155083, 0.004297557286918163, -0.043861739337444305, -0.023717615753412247, -0.004639776889234781, 0.024265168234705925, -0.01677236147224903, 0.016311265528202057, -0.0013886909000575542, -0.0036041121929883957, -0.0050900657661259174, -0.026513010263442993, -0.003054759930819273, -0.012002901174128056, -0.04207499325275421, 0.00013463638606481254, -0.016902044415473938, -0.010396270081400871, -0.013472643680870533, 0.016628269106149673, -0.011123936623334885, -0.014639792963862419, 0.030000047758221626, 0.014884749427437782, 0.002707136794924736, -0.007215429097414017, -0.00361672043800354, 0.00414626020938158, -0.006970472168177366, -0.009445260278880596, -0.014769475907087326, 0.01786746270954609, -0.008061972446739674, 0.0571470633149147, -0.00012664374662563205, 0.026902059093117714, -0.040806978940963745, -0.02894817292690277, -0.013811261393129826, 0.03579256311058998, -0.014690225012600422, -0.009063415229320526, 0.04201735556125641, 0.0014652400277554989, 0.039855971932411194, -0.0020353058353066444, 0.027737796306610107, 0.011181573383510113, 0.0023487068247050047, -0.01956775411963463, -0.006015859544277191, 0.008976959623396397, 0.04164271801710129, 0.0016147359274327755, 0.01576371304690838, 0.02396257407963276, 0.017925100401043892, -0.02796834334731102, 0.015360254794359207, -0.0069272443652153015, 0.03305480629205704, -0.013033161871135235, -0.025230586528778076, -0.001607531332410872, 0.01752164214849472, -0.03515855595469475, 0.006145542953163385, -0.009978401474654675, 0.02014412358403206, -0.019322797656059265, 0.02551877312362194, 0.01274497713893652, 0.03599429130554199, 0.042737819254398346, -0.01123200636357069, 0.013681577518582344, -0.02913549169898033, 0.0181124210357666, -0.009452464058995247, 0.02435162290930748, 0.010324223898351192, -0.03688766434788704, 0.012226244434714317, 0.033025987446308136, 0.03971187770366669, 0.03118160553276539, 0.022550467401742935, 0.017435185611248016, -0.01113114133477211, -0.0380115881562233, -0.015072070062160492, -0.036023110151290894, 0.0015724088298156857, -0.020878994837403297, -0.01445247232913971, -0.033602356910705566, 0.03708939626812935, 0.006768742576241493, 0.024683035910129547, -0.013782442547380924, 0.014020195230841637, -0.009517306461930275, -0.009798286482691765, 0.011390508152544498, 0.03481273353099823, -0.027449611574411392, 0.0035014464519917965, 0.03501446545124054, 0.024034619331359863, 0.004769459832459688, -0.004275943152606487, -0.001934441039338708, -0.0066678780131042, -0.017838645726442337, -0.013364573940634727, -0.01389771606773138, 0.02759370394051075, 0.035302650183439255, 0.020821359008550644, -0.027262290939688683, -0.02358793281018734, 0.029394859448075294, -0.03521619364619255, 0.010439497418701649, 0.029049037024378777, 0.024870356544852257, -0.0011113130021840334, 0.023299748077988625, -0.030374687165021896, -0.012636907398700714, 0.0118804220110178, 0.02226228266954422, 0.04167153686285019, 0.003215062664821744, 0.002912468509748578, -0.021224817261099815, 0.016599450260400772, 0.013926534913480282, 0.024265168234705925, -0.029351631179451942, 0.014178697019815445, -0.007341510150581598, -0.021440956741571426, -0.011419326066970825, -0.010302609764039516, -0.05734879523515701, -0.03818449750542641, 0.005551161710172892, 0.002409946173429489, 0.007752173580229282, -0.003811245085671544, 0.019495708867907524, -0.04489920660853386, 0.020619628950953484, -0.018573516979813576, -0.06864564120769501, -0.0012527037179097533, -0.011325666680932045, -8.532974607078359e-05, 0.03213261440396309, 0.027694568037986755, -0.02414989471435547, 0.03484155237674713, 0.05538913607597351, 0.028025981038808823, 0.006141940597444773, 0.02321329340338707, 0.028400620445609093, -0.03296835348010063, 0.002986315870657563, 0.01208215206861496, 0.008515863679349422, 0.017406366765499115, 0.02172914147377014, 0.013119617477059364, 0.010489930398762226, -2.5863468181341887e-05, -0.02341502159833908, -0.0047658574767410755, 0.02113836258649826, 0.0047766645438969135, 0.027161426842212677, -0.006260816939175129, 0.012154198251664639, -0.01579253189265728, 0.026772376149892807, 0.01845824159681797, 0.02528822422027588, -0.0161671731621027, -0.026484191417694092, 0.010180131532251835, -0.0036347319837659597, -0.034322820603847504, 0.012255062349140644, 0.0013625741703435779, -0.007536035031080246, 0.01531702745705843, 0.0011806575348600745, -0.026008686050772667, 0.0011572424555197358, 0.0054755131714046, -0.008097995072603226, -0.009012982249259949, 0.00789626594632864, -0.0219020526856184, 0.0011914643691852689, -0.003460019826889038, -0.015360254794359207, -0.01752164214849472, 0.018170056864619255, -0.017622506245970726, -0.0007596373907290399, 0.005252169445157051, 0.015850169584155083, 0.019553344696760178, -0.021181588992476463, -0.018141239881515503, -0.013061979785561562, 0.02110954374074936, -0.021397728472948074, 0.008775229565799236, -0.0019974815659224987, 0.04040352255105972, 0.0003885993210133165, 0.011462554335594177, 0.023659979924559593, -0.002415349707007408, 0.007838629186153412, 0.013429416343569756, 0.010324223898351192, 0.0016426538350060582, -0.026008686050772667, 0.009596557356417179, -0.004852313082665205, 0.01677236147224903, 0.0019902768544852734, 0.012197425588965416, -0.0003365909506101161, -0.033775269985198975, 0.009185893461108208, -0.014956795610487461, 0.015518756583333015, -0.004639776889234781, 0.018890520557761192, -0.01368878223001957, 0.005724072456359863, -0.01691645383834839, 0.006772344931960106, 0.018544698134064674, -0.033976998180150986, -0.009171484038233757, 0.001934441039338708, -0.028458258137106895, 0.024221939966082573, -0.003717585001140833, -0.034380458295345306, 0.03507210314273834, -0.0002209792728535831, -0.01657063141465187, 0.0032961147371679544, -0.011714715510606766, -0.0010023430222645402, 0.01170751079916954, 0.004229113459587097, 0.003357354085892439, 0.040806978940963745, -1.1123543117719237e-05, 0.014106650836765766, 0.00761528592556715, -0.001339159207418561, -0.007593671791255474, 0.01418590173125267, -0.013076389208436012, -0.006866005249321461, 0.003488838439807296, -0.02361675165593624, -0.026556238532066345, 0.0023234908003360033, -0.03083578310906887, 0.010504338890314102, -0.004283147864043713, -0.00466139055788517, -0.03155624493956566, -0.0047982786782085896, -0.02014412358403206, -0.02034585364162922, -0.019322797656059265, 0.02057640068233013, -0.006458943709731102, 2.318987753824331e-05, -0.01602308079600334, 0.007867447100579739, -0.0247550830245018, -0.015951033681631088, 0.035100918263196945, -0.015331435948610306, 0.010396270081400871, -0.010900593362748623, 0.006743526551872492, 0.025057677179574966, 0.004470468033105135, 0.0011698505841195583, 0.004891938529908657, 0.00904180109500885, 0.011642669327557087, -0.014719042927026749, -0.00029989241738803685, -0.00047820681356824934, 0.014827112667262554, -0.0053278179839253426, -0.023083610460162163, -0.026383327320218086, -0.013912125490605831, -0.02739197388291359, -0.018025964498519897, -0.003868882078677416, -0.02606632374227047, 0.030951056629419327, 0.012384745292365551, -0.0025540385395288467, 0.0016390515957027674, 0.00017898983787745237, -0.0023667183704674244, 0.009963992983102798, -0.001876804162748158, -0.0037932335399091244, -0.007528830319643021, -0.007500011939555407, -0.019452480599284172, 0.008984164334833622, 0.033775269985198975, -0.017406366765499115, 0.002844024682417512, 0.028659988194704056, 0.008040358312427998, -0.032074976712465286, -0.0032222673762589693, -0.032449617981910706, -0.01438042614609003, 0.014092241413891315, 0.012132584117352962, -0.005698856431990862, -0.00608790572732687, 0.013631145469844341, -0.017752189189195633, -0.0044164336286485195, 0.004830699414014816, 0.004085020627826452, 0.010583589784801006, -0.019149886444211006, -0.006473353132605553, -0.06789635866880417, -0.015489937737584114, -0.015605212189257145, 0.00306916912086308, -0.013076389208436012, -0.019322797656059265, 0.014142673462629318, 0.0033555529080331326, -0.020994270220398903, -0.003143016481772065, 0.011642669327557087, 0.0017291093245148659, 0.004762255121022463, 0.001114915357902646, 0.002453173976391554, -0.0152305718511343, -0.019668618217110634, -0.012233448214828968, -0.011750739067792892, -0.00819165538996458, -0.017377549782395363, 0.016440948471426964, 0.027305519208312035, 0.007917880080640316, -0.0437176488339901, 0.015374664217233658, 0.017161410301923752, 0.005028826184570789, -0.016815587878227234, -0.01789628155529499, 0.014221924357116222, 0.01010088063776493, 0.012154198251664639, -0.013623940758407116, -0.010907798074185848, 0.02834298461675644, 0.01342221163213253, 0.0027881888672709465, 0.024884765967726707, 0.01511529739946127, 0.012687339447438717, 0.02132568135857582, -0.0011941661359742284, -0.014049013145267963, 0.006930846720933914, 0.00109510263428092, 0.010619613341987133, -0.03481273353099823, 0.022017326205968857, -0.008667160756886005, 0.029596587643027306, -0.013141230680048466, 0.0022496432065963745, -0.009740649722516537, 0.007773787248879671, 0.03172915801405907, -0.003577094990760088, 0.014394835568964481, -0.023501478135585785, 0.005187327973544598, 0.030893420800566673, 0.010021629743278027, -0.020086487755179405, -0.01350866723805666, -0.01963980123400688, 0.004719027783721685, 0.016440948471426964, 0.01825651340186596, 0.016210399568080902, -0.003474429016932845, -0.009113847278058529, 0.0018254711758345366, 0.004135453142225742, 0.02357352338731289, 0.02547554485499859, 0.0013616735814139247, 0.02625364437699318, 0.032074976712465286, -0.00423271581530571, 0.0028944569639861584, -0.021844414994120598, -0.015720486640930176, 0.0012049730867147446, 0.012946706265211105, -0.012010104954242706, -0.015244980342686176, -0.008090791292488575, 0.006246407516300678, -0.02148418314754963, -0.0022946721874177456, 0.0009834308875724673, 0.03899141773581505, 0.006015859544277191, 0.011073504574596882, -0.030374687165021896, 0.04149862378835678, -0.05360238999128342, -0.0028314166702330112, -0.0036095157265663147, 0.009106642566621304, -0.007932289503514767, -0.00552234286442399, 0.007903470657765865, -0.01752164214849472, -0.022017326205968857, -0.009755058214068413, 0.009848718531429768, 0.0023378999903798103, -0.010842956602573395, -0.016844406723976135, -0.03556201606988907, 0.015922214835882187, 0.01956775411963463, -0.00892652664333582, -0.008595114573836327, 0.0033789677545428276, -0.00098703324329108, -0.004409228917211294, -0.00857350043952465, -0.003380768932402134, -0.004344387445598841, 0.006829982157796621, -0.014942387118935585, -0.03527383133769035, 0.013760828413069248, 0.015086479485034943, 0.012500019744038582, -0.020216170698404312, -0.011534600518643856, -0.0012491013621911407, -0.0030853794887661934, -0.010108085349202156, -0.005637616850435734, -0.010972639545798302, 0.008155632764101028, -0.01219022087752819, 0.027896298095583916, -0.021167179569602013, 0.03942369297146797, -0.012507224455475807, 0.0058717671781778336, 0.008508658967912197, -0.0090562105178833, -0.0028908546082675457, -0.00349964527413249, 0.01208215206861496, -0.012024514377117157, -0.011938058771193027, -0.017579277977347374, -0.0036419364623725414, -0.009920764714479446, 0.0047658574767410755, 0.041729170829057693, 0.032795440405607224, -0.006491364911198616, -0.03213261440396309, -0.0018786052241921425, 0.005353034473955631, 0.013746418990194798, 0.003591504180803895, -0.015000023879110813, 0.0024639808107167482, -0.0030601632315665483, 0.011023072525858879, 0.04089343547821045, -0.019510116428136826, -0.0074711935594677925, 0.00295209395699203, -0.025446726009249687, -0.006145542953163385, 0.012456792406737804, -0.016296856105327606, -0.0004072863084729761, -0.011678692884743214, 0.013213276863098145, -0.02113836258649826, -0.007006495259702206, -0.028674397617578506, 0.03328535333275795, 0.014812703244388103, 0.004560525994747877, 0.009848718531429768, -0.002892655786126852, 0.039106689393520355, -0.011159960180521011, 0.03752167150378227, 0.009286758489906788, -0.009488487616181374, -0.0304611437022686, 0.011289643123745918, 0.014841522090137005, -0.005486319772899151, -0.02894817292690277, -0.0013445626245811582, 0.0007182107656262815, -0.0034762301947921515, 0.0013643753482028842, 0.019899167120456696, -0.004542514216154814, -0.012031719088554382, 0.006977676879614592, -0.008422203361988068, 0.012831432744860649, -0.01265852153301239, -0.005421478301286697, -0.020446717739105225, -0.013976966962218285, 0.035331469029188156, 0.024438079446554184, -0.020317034795880318, 0.01514411624521017, -0.011592237278819084, 0.011390508152544498, -0.012204630300402641, 0.0018497867276892066, -0.016123944893479347, 0.008025948889553547, -0.025000039488077164, 0.013695986941456795, -0.01920752227306366, 0.02243519388139248, -0.012860250659286976, 0.027708977460861206, 0.0018434827215969563, 0.021412137895822525, -0.004499286413192749, 0.016440948471426964, -0.029625406488776207, -0.020273806527256966, -0.004384012892842293, -0.00751442089676857, -0.00223883637227118, -0.015619621612131596, 0.0002474337525200099, -0.04288191348314285, -0.01785305328667164, 0.06345831602811813, -0.0010915002785623074, 0.02433721348643303, 0.003542873077094555, -0.03527383133769035, 0.00268732407130301, 0.0033825701102614403, 0.01180837582796812, 0.03942369297146797, 0.008350157178938389, -0.002105550840497017, 0.014409244991838932, 0.009279553778469563, 0.012110969983041286, -0.009776672348380089, -0.002917872043326497, -0.017233457416296005, -0.008933731354773045, -0.013530280441045761, -0.009214712306857109, 0.03213261440396309, 0.0023793266154825687, -0.0037247897125780582, -0.0015724088298156857, -0.023371795192360878, 0.01600867137312889, 0.017276683822274208, -0.016311265528202057, 0.035504378378391266, -0.03221907094120979, 0.010842956602573395, 0.040028881281614304, 0.007179406005889177, -0.004981996491551399, -0.0027881888672709465, 0.016426539048552513, 0.0021487786434590816, 0.007946697995066643, -0.014618178829550743, -0.0180547833442688, 0.0044236378744244576, -0.014236333779990673, -0.015662848949432373, 0.0036923689767718315, -0.04069170728325844, 0.018703199923038483, -0.015158525668084621, 0.009012982249259949, 0.00036450885818339884, 0.010684454813599586, -0.014293970540165901, -0.027089379727840424, 0.027478428557515144, 0.005612400826066732, 0.0342940017580986, 0.024610990658402443, 0.004445252008736134, 0.021268045529723167, 0.008566295728087425, -0.003962542396038771, -0.0209078136831522, 0.007644104305654764, 0.0065958318300545216, 0.008602319285273552, 0.021253636106848717, 0.014301175251603127, -0.02965422533452511, -0.002798995701596141, 0.005115281790494919, -0.00019227336451876909, 0.030028866603970528, -0.012579270638525486, -4.3002590246032923e-05, -0.003582498524338007, 0.011757943779230118, 0.00751442089676857, -0.010893388651311398, -0.027550475671887398, 0.0015760111855342984, 0.018328558653593063, -0.002258649095892906, -0.0013859892496839166, 0.00961817055940628, -0.02968304418027401, 0.018933746963739395, 0.027464020997285843, 0.022953927516937256, 0.0026693125255405903, -0.025792548432946205, -0.02548995427787304, -0.008897708728909492, 0.013299732469022274, 0.005371045786887407, 0.009257939644157887, -0.030144140124320984, -0.010331428609788418, -0.001339159207418561, -0.021988507360219955, -0.007536035031080246, -0.020403489470481873, 0.004729834385216236, 0.02072049304842949, 0.011239211075007915, 0.001739916275255382, 0.007694536820054054, 0.026023095473647118, 0.013342960737645626, 0.012824228033423424, 0.00894093606621027, 0.010410679504275322, -0.009135461412370205, 0.0399136058986187, 0.01789628155529499, -0.0037211873568594456, 0.017233457416296005, -0.017838645726442337, -0.013206073082983494, -0.00895534548908472, -0.015446710400283337, 0.007154189981520176, 0.01170030701905489, 0.0018623948562890291, -0.027074970304965973, -0.05161391571164131, -0.0058141304180026054, 0.011671488173305988, -0.006091508083045483, 0.008796843700110912, -0.02932281233370304, -4.210201223031618e-05, -0.0008375373436138034, -0.025216178968548775, 0.0011770551791414618, -0.004701016005128622, 0.005713265389204025, -0.02585018426179886, -0.0038724844343960285, 0.0010437696473672986, 0.00023932855401653796, -0.005961825139820576, -0.02262251451611519, 0.021210407838225365, 0.012219039723277092, -0.02399139292538166, -0.008386180736124516, 0.007384737953543663, -0.025590818375349045, -0.019121067598462105, -0.011275233700871468, 0.002844024682417512, -0.033198900520801544, 0.005677242297679186, -0.011484167538583279, -0.007824219763278961, 0.005943813361227512, -0.004290352575480938, -0.0030385495629161596, 0.027536066249012947, -0.0003282605903223157, -0.002364917192608118, -0.008688774891197681, -0.0042435224168002605, -0.05429403483867645, -0.005983438808470964, -0.020014440640807152, 0.015432300977408886, -0.0017047937726601958, 0.028818489983677864, -0.022420784458518028, 0.02188764326274395, 0.0030529587529599667, 0.01943807117640972, -0.010871775448322296, -0.0380115881562233, -0.0012959314044564962, 0.00041561663965694606, 0.004920756909996271, -0.020115304738283157, -0.025172950699925423, 0.016887634992599487, -0.0152305718511343, 0.00661744549870491, 0.004960382357239723, -0.003524861531332135, -0.013134026899933815, -0.015432300977408886, -0.0219020526856184, -0.022521648555994034, -0.026354508474469185, 0.004229113459587097, -0.011268028989434242, 0.004293954931199551, 0.004877529107034206, -0.036023110151290894, -0.005010814871639013, 0.011433735489845276, 0.009171484038233757, -0.007759378291666508, 0.011887626722455025, -0.009538919664919376, 0.008256496861577034, 0.010842956602573395, 0.005144100170582533, -0.01694527082145214, -0.005612400826066732, -0.034524548798799515, -0.005331420339643955, 0.0013112412998452783, 0.008285315707325935, -0.007348714862018824, -0.002271257108077407, -0.03772340342402458, 0.009185893461108208, 0.05348711460828781, 0.010900593362748623, -0.024697445333003998, -0.005306204315274954, 0.011549009941518307, -0.000803765666205436, 0.0014292169362306595, 0.020850177854299545, 0.025244995951652527, -0.0029286788776516914, 0.04095107316970825, 0.031066332012414932, 0.023631161078810692, 0.0026224825996905565, 0.010533157736063004, -0.0046073561534285545, 0.01995680294930935, 0.03138333559036255, 0.0010617811931297183, -0.020619628950953484, -0.00046244668192230165, 0.02776661515235901, 0.008119609206914902, -0.012355927377939224, -0.005381852854043245, 0.02394816465675831, -0.05253610759973526, -0.009769467636942863, 0.015734894201159477, 0.004733436740934849, -0.02134009078145027, -0.001739015686325729, -0.002085738116875291, 0.004030986223369837, 0.01010088063776493, 0.013818465173244476, -0.029423678293824196, 0.005403466522693634, 0.008861685171723366, -0.0027197448071092367, 0.029380450025200844, -0.017233457416296005, 0.005911392625421286, -0.002467583166435361, 0.025374678894877434, 0.012773795053362846, -0.015072070062160492, -0.013090798631310463, -0.007723355200141668, -0.027478428557515144, 0.013847284018993378, -0.011368894018232822, -0.0237896628677845, -0.03155624493956566, 0.006847993470728397, 0.016829997301101685, -0.014308379963040352, -0.005039633251726627, 0.008429408073425293, 0.016484176740050316, -0.002229830715805292, -0.010533157736063004, -0.003494241740554571, -0.01131846196949482, -0.0008933731587603688, -0.025561999529600143, -0.019827120006084442, 0.009250734932720661, -0.02074931189417839, -0.009740649722516537, 0.024466896429657936, -0.007255054544657469, 0.0027305518742650747, -0.013768033124506474, -0.005933006294071674, -0.010691659525036812, 0.0118804220110178, -0.002892655786126852, 0.0014058019733056426, -0.008768025785684586, -0.010136903263628483, 0.001965060830116272, 0.010093675926327705, 0.010345838032662868, 0.010540362447500229, 0.01093661691993475, -0.006959665101021528, -0.0030025262385606766, 0.005605196114629507, -0.010259382426738739, -0.021945279091596603, -0.004189488012343645, -0.023098019883036613, -0.006678685080260038, -0.006444534752517939, -0.0017822434892877936, 0.05025944486260414, -0.0005263877101242542, 0.008242088370025158, -0.004589344374835491, -0.008227678947150707, -0.009466873481869698, 0.000356628792360425, 0.03878968581557274, 0.027276700362563133, 0.006437330041080713, -0.032449617981910706, -0.032997168600559235, -0.003969747107475996, -0.0018659972120076418, -0.0361383855342865, 0.016829997301101685, -0.008213269524276257, 0.010900593362748623, 0.0027251483406871557, -0.00665346859022975, 0.013544689863920212, 0.017204638570547104, -0.01884729228913784, 0.021008677780628204, 0.0026567045133560896, -0.0009708228753879666, -0.01007206179201603, 0.019913576543331146, -0.015864579007029533, 0.025605227798223495, -0.009899151511490345, -0.006779549643397331, -0.012723363004624844, -0.001490456284955144, 0.01580694131553173, 0.013069184496998787, -0.011815580539405346, -0.0011734528234228492, -0.0013355568516999483, 0.020129714161157608, -0.0038977006915956736, -0.00016852062253747135, 0.021368909627199173, -0.000967220519669354, 0.00461095804348588, 0.01124641578644514, 0.004981996491551399, 0.005061247386038303, 0.008069177158176899, -0.008840071968734264, -0.007853038609027863, -0.0060230642557144165, 0.0017246064962819219, 0.009243530221283436, -0.007636899594217539, -0.019755074754357338, 0.008436612784862518, -0.018328558653593063, 0.01958216354250908, -0.001304036588408053, -0.00798272155225277, 0.0037752219941467047, -0.019178705289959908, -0.04092225432395935, 0.007759378291666508, 0.0007789997616782784, 0.0011842597741633654, -0.0017219047294929624, 0.009394827298820019, -0.0008780633215792477, -0.00854468159377575, 0.014913568273186684, 0.0008816656772978604, -0.012651316821575165, -0.0053278179839253426, 0.034178726375103, 0.0004773062246385962, -0.002046112669631839, 0.018371786922216415, -0.006149145308881998, -0.0004939669161103666, -0.002247842261567712, -0.002779182977974415, -0.008724797517061234, 0.0304323248565197, -0.019279569387435913, 0.02017294242978096, 0.009798286482691765, 0.0033447458408772945, -0.0003840964345727116, -0.026397736743092537, 0.008832867257297039, -0.000520083645824343, 0.006505773868411779, 0.009301166981458664, -0.01350866723805666, -0.013530280441045761, -0.01731991209089756, 0.023342976346611977, -0.01730550266802311, 0.006433727685362101, 0.00018360529793426394, 0.004852313082665205, 0.010057652369141579, 0.014416448771953583, 4.986949352314696e-05, 0.018703199923038483, 0.0035392707213759422, -0.006512978579849005, 0.0016507591353729367, 0.004719027783721685, 0.00297010550275445, -0.01750723272562027, -0.002721545984968543, -0.016296856105327606, 0.002316286088898778, 0.007406351622194052, -0.017002908512949944, -0.028242118656635284, -0.017752189189195633, 0.009553329087793827, -0.006685889326035976, 0.006739924196153879, 0.0003894998808391392, -0.006307646632194519, 0.004733436740934849, -0.024841537699103355, -0.011786761693656445, -0.008876094594597816, -0.0032474834006279707, 0.0011176170082762837, -0.0028512291610240936, 0.012716158293187618, 0.003973348997533321, 0.00895534548908472, 0.004621765110641718, 0.01747841387987137, -0.013047571294009686, 0.006685889326035976, -0.004117441829293966, 0.0023523091804236174, 0.023847300559282303, 0.013695986941456795, 0.01368878223001957, 0.0006078900187276304, 0.012096560560166836, 0.010158517397940159, -0.008386180736124516, 0.008234883658587933, 0.007237043231725693, 0.025461135432124138, -0.009783877059817314, 0.0027539669536054134, -0.010223358869552612, -0.01124641578644514, 0.008976959623396397, -0.008508658967912197, 0.014942387118935585, 0.008342952467501163, -0.023069201037287712, 0.006484160199761391, -0.01322048157453537, -0.013710396364331245, -0.017060546204447746, 0.00021658896002918482, 0.02360234223306179, 0.01824210397899151, 0.013840079307556152, 0.011642669327557087, -0.006484160199761391, -0.015936624258756638, 0.02988477423787117, -0.014726247638463974, -0.03726230561733246, -0.005731277167797089, -0.006368886213749647, 0.0010077465558424592, 0.0015408885665237904, -0.019193114712834358, 0.018717609345912933, 0.0013724805321544409, 0.005464706104248762, 0.01638331077992916, -0.018544698134064674, -0.0036005100701004267, -0.004430842585861683, 0.018688790500164032, 0.005749288480728865, -0.007687332108616829, -0.0005281888879835606, -0.010014425031840801, 0.0038977006915956736, -0.007229838520288467, -0.006941653788089752, -0.019164295867085457, -0.0014643394388258457, 0.004081418737769127, 0.028847306966781616, -0.00799713097512722, 0.011815580539405346, -0.01979830302298069, 0.00971903558820486, -0.0018263717647641897, 0.0006830882630310953, -0.00012900776346214116, -0.015475528314709663, -0.004117441829293966, -0.018314149230718613, -0.011786761693656445, 0.0009690216975286603, -0.0380980409681797, -0.014683020301163197, 0.02223346382379532, 0.017276683822274208, -0.011123936623334885, 0.007838629186153412, -0.001651659607887268, -0.010122494772076607, 0.023443840444087982, 0.0017705359496176243, 0.013940944336354733, 0.00940923672169447, 0.009077823720872402, -0.028472667559981346, 0.0019776688423007727, 0.029193129390478134, 0.021801186725497246, 0.008897708728909492, 0.036455389112234116, 0.007867447100579739, 0.033804088830947876, -0.0019362422171980143, -0.00035955567727796733, 0.011203187517821789, 0.022190237417817116, 0.008530273102223873, 0.025965459644794464, -0.010417884215712547, 0.022896289825439453, -0.014927977696061134, -0.009185893461108208, 0.013933739624917507, 0.01114555075764656, 0.01151298638433218, 0.006786754354834557, 0.0024982027243822813, -0.011671488173305988, -0.004070611670613289, 0.022190237417817116, -2.7143976694787852e-05, 0.02605191431939602, -0.006732719484716654, -0.0209366325289011, 0.02033144421875477, 0.005079258698970079, 0.0001259683194803074, 0.016109535470604897, -0.0067651402205228806, 0.015302618034183979, -0.00223883637227118, -0.01845824159681797, 0.010338633321225643, 0.00024675831082277, -0.014719042927026749, 0.016311265528202057, 0.022319920361042023, -0.006649866234511137, 0.001670571742579341, -0.00494597340002656, -0.001363474759273231, -0.0020046860445290804, 0.0003206057008355856, 0.008141223341226578, 0.010929412208497524, -0.018573516979813576, -0.0018587925005704165, 0.001705694361589849, 0.015662848949432373, 0.000894273747690022, 0.012384745292365551, 0.0003437955747358501, -0.021916460245847702, -0.01654181256890297, -0.0237896628677845, 0.006401306949555874, -0.013400597497820854, -0.017420776188373566, 0.005072053987532854, -0.014985614456236362, 0.006649866234511137, 0.015951033681631088, -0.011556213721632957, 0.03400581702589989, -0.0018119624583050609, -0.0022406375501304865, -0.0008848176803439856, 0.0022856665309518576, 0.01111673191189766, 0.016210399568080902, -0.015749303624033928, 0.004722630139440298, 0.02015853300690651, -0.012600884772837162, -0.023919345811009407, 0.01827092282474041, 0.01445247232913971, 0.026585055515170097, -0.010050447657704353, 0.01236313208937645, 0.01978389360010624, -0.006318453699350357, -0.0008420402300544083, -0.0068984259851276875, 0.0073090894147753716, 0.006206782069057226, 0.006675082724541426, -0.0009915361879393458, 0.026152778416872025, -0.008198860101401806, 0.018170056864619255, -0.011765148490667343, 0.019452480599284172, -0.017420776188373566, -0.004369603469967842, 0.015518756583333015, 0.011188778094947338, 0.00837897602468729, 0.02456776238977909, 0.00027917910483665764, 0.007053325418382883, -0.006793959066271782, -0.0005142299341969192, -0.012435178272426128, -0.0056412192061543465, -0.0032168638426810503, 0.010590794496238232, -0.003753608325496316, -0.005446694325655699, -0.02400580234825611, -0.009632579982280731, -0.00252161780372262, -0.0010248575126752257, 0.002264052629470825, -0.013198868371546268, 0.012312699109315872, 0.027536066249012947, 0.02131127193570137, -0.028314165771007538, 0.007608081214129925, 0.019654208794236183, 0.017953919246792793, -0.015907805413007736, 0.006217589136213064, -0.012283881194889545, -0.02432280406355858, -0.019106658175587654, 0.0004944172105751932, -0.00912825670093298, -0.02433721348643303, -0.01017292682081461, -0.012031719088554382, 0.03391936048865318, -0.00499280309304595, -0.005428683012723923, 0.015201753005385399, 0.0067471289075911045, -0.003503247629851103, 0.018299739807844162, -0.01809801161289215, 0.011887626722455025, -0.005616003181785345, -0.01636890135705471, -0.02837180346250534, -0.013393392786383629, 0.00751442089676857, -0.01884729228913784, 0.00808358658105135, 0.011419326066970825, -0.004801880568265915, -0.0008587008924223483, 0.01789628155529499, -0.011772353202104568, -0.003973348997533321, 0.013840079307556152, 0.012211835011839867, -0.005216146353632212, 0.00837897602468729, 0.0017615301767364144, -0.026930877938866615, 0.018976975232362747, -0.006044677924364805, 0.0015228770207613707, 0.010878979228436947, -0.00943805556744337, 0.0065562063828110695, 0.0005547559121623635, -0.013595121912658215, -0.010374655947089195, -0.008069177158176899, -0.01103027630597353, 0.006873209495097399, -0.00585375539958477, -0.008321338333189487, -0.017953919246792793, 0.0029737078584730625, -0.023501478135585785, 0.012247857637703419, 0.021988507360219955, 0.008234883658587933, -0.004863120149821043, 0.024884765967726707, -0.0007934090099297464, -0.006538194604218006, 0.010806933045387268, 0.008242088370025158, -0.017925100401043892, 0.024841537699103355, -0.021440956741571426, 0.019452480599284172, 0.003465423360466957, 0.0011365291429683566, -0.004099430050700903, 0.005961825139820576, 0.0022208248265087605, -0.004672197625041008, 0.029250767081975937, 0.025432316586375237, -0.0029088661540299654, 0.00514049781486392, 0.00361672043800354, -0.00432997802272439, -0.009286758489906788, 0.009005777537822723, -0.007373930886387825, -0.018371786922216415, 0.005443091969937086, 0.0009888344211503863, -0.017175819724798203, -0.011167164891958237, 0.02798275277018547, -0.016613859683275223, -0.019178705289959908, -0.006159951910376549, -0.009978401474654675, 0.003811245085671544, 0.034322820603847504, 0.0023144849110394716, 0.02070608362555504, -0.01180837582796812, -0.015288208611309528, -0.012536042369902134, 0.02360234223306179, -0.004654185846447945, 0.003512253286316991, -0.010634022764861584, -0.015446710400283337, 0.0071289739571511745, 0.005259374156594276, 0.0070677343755960464, -0.010007220320403576, -0.001114915357902646, -0.0018966167699545622, 0.007485602516680956, -0.010317019186913967, -0.00014690675016026944, -0.008198860101401806, -0.002892655786126852, 0.019942395389080048, -0.009149869903922081, 0.0017137995455414057, -0.0060230642557144165, 0.019654208794236183, -0.001481450512073934, -0.01435160730034113, -0.019366024062037468, 0.02033144421875477, -0.00970462616533041, 0.008299725130200386, 0.022219054400920868, -0.02322770282626152, 0.010122494772076607, -0.002726949518546462, 0.010504338890314102, 0.0056700375862419605, 0.03775222226977348, -0.005525945220142603, -0.0042038969695568085, 0.022204646840691566, 0.01713259145617485, 0.011491372250020504, -0.006523785647004843, 0.003987758420407772, -0.002051516203209758, -0.003332137828692794, 0.0006520182942040265, 0.01582135073840618, 0.005770902615040541, 0.03596547618508339, -0.006026666611433029, -0.007406351622194052, 0.00013936441973783076, -0.000337266392307356, 0.0238184817135334, 0.0009438054985366762, 0.003894098335877061, 0.00590418791398406, -0.0015138712478801608, 0.010446702130138874, 0.04144098609685898, -0.003514054464176297, 0.014157082885503769, 0.01255765650421381, -0.005234158132225275, -0.0023469056468456984, -0.006311248987913132, 0.005943813361227512, 0.021354500204324722, 0.016296856105327606, 0.01582135073840618, 0.005878971889615059, -0.002961099846288562, -0.012384745292365551, 0.005792516283690929, -0.0021920064464211464, -0.009949583560228348, -0.008047563023865223, 0.003861677600070834, -0.010165722109377384, 0.00010699989798013121, -0.00761528592556715, -0.011556213721632957, 0.00418228330090642, 0.012046128511428833, -0.00245497515425086, 0.0014193105744197965, 0.0018236699979752302, 0.005165714304894209, -0.014236333779990673, 0.025979867205023766, -0.01149857696145773, -0.00184168154373765, -5.2852657972835004e-05, 0.0054611037485301495, -0.014337198808789253, -0.009906355291604996, -0.006621047854423523, -0.014394835568964481, 0.022708969190716743, -0.007031711284071207, -0.002433361252769828, -0.019193114712834358, 0.010540362447500229, 0.02167150378227234, 1.283323308598483e-05, 0.012435178272426128, -0.02015853300690651, -0.019711846485733986, 0.007038915995508432, -0.0018362781265750527, 0.0003118250460829586, -0.0016102330991998315, -0.019740665331482887, -0.017074955627322197, 0.018386196345090866, -0.008234883658587933, 0.0004854114376939833, -0.002046112669631839, -0.003757210448384285, 0.007143382914364338, 0.022334329783916473, -0.009956788271665573, 0.0024657819885760546, -0.03389054164290428, -0.011008663102984428, 0.01111673191189766, 0.0051296912133693695, 0.006005052477121353, -0.0010374656412750483, 0.01845824159681797, 0.0020641242153942585, 0.00043227733112871647, -0.021008677780628204, -0.01615276373922825, -0.0019758676644414663, 0.008184450678527355, 0.0237896628677845, 0.0025738512631505728, 0.0161671731621027, 0.010828547179698944, -0.01750723272562027, 0.019366024062037468, -0.004935166332870722, -0.022046145051717758, -0.0036491411738097668, 0.002811603946611285, 6.022613888490014e-05, -0.005760095547884703, -0.0152305718511343, -0.016412129625678062, -0.02510090358555317, -0.005936608649790287, 0.013976966962218285, -0.001959657296538353, -5.428091753856279e-06, -0.013393392786383629, -0.001748922048136592, 0.014229129068553448, -0.00942364614456892, -0.006368886213749647, -0.017579277977347374, 0.008061972446739674, 0.004056202247738838, -0.0037896314170211554, -0.016253627836704254, 0.01396976225078106, -0.0014076030347496271, 0.007665717974305153, 0.008069177158176899, 0.004672197625041008, -0.0008618529536761343, -0.018919337540864944, -0.02263692393898964, 0.00718300836160779, 0.006231998093426228, -0.010108085349202156, 0.004520900547504425, -0.005864562466740608, -0.0011167164193466306, 0.010208949446678162, -0.007092950865626335, -0.006350874435156584, -0.0025396293494850397, 0.010857366025447845, -0.0025306236930191517, 0.010713273659348488, -0.019063429906964302, -0.0049495757557451725, -0.023371795192360878, 0.016844406723976135, -0.008422203361988068, -0.0078026060946285725, -0.001461637788452208, -0.005907790269702673, 0.01734873093664646, 0.015907805413007736, -0.006768742576241493, 0.013904920779168606, -0.011066299863159657, 0.002966503147035837, -0.0033555529080331326, -0.018299739807844162, 0.012327108532190323, -0.01151298638433218, 0.01161385141313076, -0.00942364614456892, -0.0023397011682391167, 0.006260816939175129, -0.025662865489721298, 0.006815572734922171, -0.03273780271410942, 0.0007821518229320645, -0.024841537699103355, -0.01512970682233572, 0.021556230261921883, -0.013962558470666409, -0.0023234908003360033, 0.019121067598462105, -0.0018119624583050609, 0.0021956085693091154, -0.004582139663398266, 0.004971189424395561, 0.012492815032601357, -0.0009190396522171795, 0.006102315150201321, -0.001993879210203886, -0.01828533224761486, -0.018213285133242607, -0.025533180683851242, -0.024034619331359863, -0.04498566314578056, -0.0015039648860692978, 0.009034596383571625, -0.016066307201981544, -0.008249292150139809, -1.1749725672416389e-05, 0.0017137995455414057, -0.0104539068415761, -0.007557648699730635, -0.01035304181277752, -0.004484877455979586, -0.0090562105178833, -0.04472629353404045, -0.0035752938129007816, -0.01597985252737999, 0.007550443988293409, 0.005875369533896446, -0.009344395250082016, 0.008587909862399101, -0.0035897030029445887, -0.012600884772837162, -0.018602333962917328, -0.009085028432309628, -0.0028674397617578506, -0.0040742140263319016, 0.0067471289075911045, -0.02148418314754963, 0.018025964498519897, -0.0011815580073744059, 0.004470468033105135, 1.7293907148996368e-05, 0.012118174694478512, -0.01255765650421381, -0.013018752448260784, 0.007071336731314659, 0.008919322863221169, -0.006156349554657936, 0.014012990519404411, -0.020461127161979675, -0.012233448214828968, 0.0014940585242584348, 0.00661744549870491, 0.007399146910756826, -0.0033897748216986656, 0.014618178829550743, 0.012651316821575165, -0.015590802766382694, -0.004297557286918163, -0.004855915438383818, -0.024510124698281288, 0.022608105093240738, 0.01942366175353527, 0.0035500775557011366, -0.013861693441867828, -0.007687332108616829, -0.0030385495629161596, -0.002779182977974415, 0.0028278143145143986, -0.020821359008550644, 0.03495682775974274, 0.013105208054184914, -0.001314843539148569, -0.01455333735793829, -0.006069894414395094, 0.010482725687325, 0.023083610460162163, -0.00980549119412899, 0.0027305518742650747, 0.005385455209761858, -0.012384745292365551, -0.006487762555480003, -0.008162837475538254, -0.023112427443265915, 0.020850177854299545, -0.0011392309097573161, 0.0025522373616695404, 0.005244965199381113, -0.008508658967912197, -0.009675807319581509, 0.022881880402565002, -0.0011860609520226717, 0.008386180736124516, 0.004603753797709942, -0.004492082167416811, 0.0030025262385606766, -0.014755066484212875, 0.0036383343394845724, -0.005922199692577124, -0.007579262834042311, -0.010288200341165066, 0.013278119266033173, -0.0003559533797670156, -0.002604471053928137, -0.018141239881515503, 0.005525945220142603, -0.0011788563570007682, -0.023314157500863075, 0.0013058377662673593, -0.0017921498510986567, 0.0032618928235024214, 0.013018752448260784, -0.0028404223266988993, 0.02818448282778263, -0.023472659289836884, 0.010655635967850685, -0.00015084678307175636, -0.007312691770493984, 0.03927960246801376, 0.018919337540864944, 0.009769467636942863, -0.016253627836704254, 0.020677266642451286, 0.0019614584743976593, -0.013393392786383629, -0.003551878733560443, 0.028674397617578506, 0.014719042927026749, 0.015403482131659985, -0.01446688175201416, 0.005360239185392857, -0.005799720995128155, 0.005428683012723923, 0.0067471289075911045, 0.010547567158937454, -0.0037608128041028976, 0.005788913927972317, 0.013177254237234592, -0.011822785250842571, 0.012845841236412525, 0.003519457997754216, -0.00313581177033484, 0.00933719053864479, 0.0180836021900177, -0.02400580234825611, 0.018948156386613846, 0.004110237117856741, 0.005846551153808832, 0.009265144355595112, 0.003656345885246992, -0.007154189981520176, 0.0090273916721344, -0.015878988429903984, 0.007175803650170565, 0.03291071578860283, 0.0038184497971087694, -0.018141239881515503, -0.0070965527556836605, -0.0015165730146691203, -0.005075656343251467, -0.0072478498332202435, -0.010230563580989838, 0.021253636106848717, -0.004855915438383818, -0.017074955627322197, 0.04288191348314285, -0.010605203919112682, -0.01884729228913784, 0.00661744549870491, 0.007658513728529215, 0.0031934487633407116, -0.008775229565799236, 0.015605212189257145, -0.021757958456873894, 0.008537477813661098, 0.0036239249166101217, -0.014322789385914803, -0.004960382357239723, 0.0025522373616695404, 0.02338620461523533, -0.025259405374526978, -0.014221924357116222, -0.002653102157637477, -0.0009190396522171795, -0.015345845371484756, -0.010497135110199451, -0.0161671731621027, 0.02146977372467518, 0.0004406076914165169, 0.002078533638268709, 0.010915002785623074, -0.013436621055006981, 0.0042435224168002605, 0.0004298007406760007, 0.016988499090075493, -0.012370336800813675, -0.009329985827207565, -0.03328535333275795, 0.022319920361042023, -0.0003723889240063727, -0.007608081214129925, -0.004124646075069904, -0.0015525961061939597, -0.009315576404333115, 0.007305487059056759, 0.017391957342624664, 0.004899143241345882, 0.013912125490605831, 0.02243519388139248, -0.011801171116530895, -0.02929399348795414, 0.020677266642451286, -0.015100887976586819, 0.0022838653530925512, 0.007939494214951992, 0.01111673191189766, -0.007694536820054054, -0.019149886444211006, 0.019337207078933716, 0.0026711137033998966, -0.0029214743990451097, 0.009063415229320526, 0.024236349388957024, -0.003625726094469428, 0.010064857080578804, -0.0013247499009594321, 0.01076370570808649, 0.016484176740050316, 0.013487053103744984, 0.0023180872667580843, -0.023688798770308495, 0.006397704593837261, 0.011073504574596882, 0.017838645726442337, -0.005154907237738371, -0.007795401383191347, -0.003485236084088683, 0.010259382426738739, -0.03152742609381676, -0.0035014464519917965, -0.00040435942355543375, 0.0247550830245018, 0.003306921571493149, -0.0171181820333004, 0.015057660639286041, -0.007708945777267218, -0.002701733261346817, 0.005900585558265448, -0.0008776130271144211, -0.02606632374227047, -0.023659979924559593, -0.027074970304965973, -0.007925084792077541, 0.011167164891958237, -0.0006146443192847073, -0.00595462042838335, -0.010792524553835392, -0.010295405052602291, -0.02662828378379345, 0.005770902615040541, -0.009034596383571625, -0.010266587138175964, 0.008400589227676392, 0.00981990061700344, -0.006880414206534624, 0.010886183939874172, -0.0266715120524168, -0.012817023321986198, 0.0009636182221584022, -0.010979844257235527, -0.006055484991520643, -0.008025948889553547, 0.015936624258756638, -0.010309814475476742, 0.012788204476237297, -0.013775237835943699, -0.026354508474469185, 0.01046831626445055, 0.0037247897125780582, -0.02167150378227234, 0.006484160199761391, -0.006685889326035976, 0.008998572826385498, 0.004167873878031969, -0.011930854991078377, 0.0012833233922719955, -0.003728392068296671, 0.00042282126378268003, 0.002395536983385682, -0.016426539048552513, -0.01618158258497715, -0.006433727685362101, 0.00557277537882328, 0.004412831272929907, 0.014049013145267963, -0.023544706404209137, -0.021210407838225365, -0.00027377565857023, 0.013832874596118927, -0.000977126881480217, -0.013487053103744984, -0.004171476233750582, 0.013285323977470398, 0.014668610878288746, 0.011887626722455025, 0.02453894354403019, 0.016988499090075493, 0.03553319722414017, -0.035331469029188156, -0.01123200636357069, -0.02605191431939602, 0.01959657296538353, -0.00942364614456892, -0.0030673679430037737, 0.028429439291357994, 0.012903478927910328, -0.02131127193570137, 0.018688790500164032, 0.009502897039055824, 0.00017842696979641914, 0.018011555075645447, -0.016066307201981544, -0.007636899594217539, -0.022968335077166557, 0.0045965490862727165, -0.00037981869536451995, -0.0056808446533977985, -0.02719024382531643, 0.017204638570547104, 0.010028834454715252, 0.007716150488704443, 0.0024405657313764095, 0.007608081214129925, 0.018299739807844162, -0.0065453993156552315, 0.010489930398762226, -0.007435170002281666, -0.009949583560228348, -0.008890504017472267, 0.00971903558820486, -0.02377525344491005, 0.007817015051841736, -0.011765148490667343, -0.004538911860436201, -0.03829977288842201, 0.0021775970235466957, -0.017060546204447746, -0.001349065569229424, -0.004488479811698198, 0.0019074237206950784, 0.008695978671312332, -0.008148428052663803, 0.004178680945187807, 0.00933719053864479, -0.010972639545798302, -0.0021685913670808077, -0.014546132646501064, 0.013011547736823559, -0.005259374156594276, -0.004103032406419516, 0.01504325121641159, -0.020691676065325737, 0.010893388651311398, -0.016685904935002327, 0.01675795204937458, -0.017809826880693436, -0.02110954374074936, 0.010576386004686356, -0.014524518512189388, 0.016642676666378975, -0.004185885656625032, 0.004834301769733429, 0.02283865213394165, -0.011930854991078377, -0.0007227136520668864, -0.006278828252106905, 0.002624283777549863, 0.013530280441045761, 0.014373221434652805, -0.01635449193418026, 0.00904180109500885, 0.0010707869660109282, -0.029366040602326393, -0.019149886444211006, 0.011772353202104568, 0.023112427443265915, 0.009610965847969055, 0.0061635542660951614, -0.012017309665679932, -0.018155647441744804, 0.030000047758221626, 0.03374645113945007, -0.010518748313188553, 0.008025948889553547, 0.0024982027243822813, -0.011102323420345783, 0.001148236682638526, 0.002296473365277052, -0.0109510263428092, 0.008976959623396397, -0.006934449076652527, 0.0008523968863300979, -0.0021217612084001303, -0.004863120149821043, 0.002883650129660964, 0.0199712123721838, -0.009827104397118092, -0.019841529428958893, 0.021541820839047432, 0.006340067833662033, -0.0013868898386135697, -0.019927985966205597, 0.011938058771193027, -0.022190237417817116, 0.0022604502737522125, 0.006822777446359396, -0.001788547495380044, -0.011440940201282501, 0.02400580234825611, 0.014402040280401707, -0.013479848392307758, -0.02551877312362194, -0.01531702745705843, -0.014113855548202991, 0.0035410718992352486, 0.029178719967603683, 0.008249292150139809, 0.005360239185392857, -0.015835760161280632, -0.004301159642636776, 0.027925116941332817, -0.013090798631310463, -0.028804080560803413, 0.022175827994942665, -0.006159951910376549, -0.01827092282474041, 0.017406366765499115, 0.018688790500164032, 0.003332137828692794, -0.008587909862399101, 0.014870340004563332, -0.002325291745364666, -0.0006326559232547879, -0.007020904216915369, -0.013141230680048466, 0.009711830876767635, -0.024481305852532387, 0.0037211873568594456, -0.0047262320294976234, -0.007543239742517471, 0.02603750489652157, 0.020835768431425095, 0.013443824835121632, -0.014913568273186684, 0.008494249545037746, -0.005673639941960573, -0.017838645726442337, 0.017046136781573296, 0.019827120006084442, 0.002237035194411874, 0.016268037259578705, -0.008840071968734264, 0.022147009149193764, 0.021830005571246147, -0.020432308316230774, 0.00045569235226139426, 0.015907805413007736, 0.009243530221283436, 0.010093675926327705, 0.006757935509085655, 0.007572058122605085, 0.010518748313188553, 0.01695968024432659, 0.010785319842398167, -0.004167873878031969, -0.007190213073045015, -0.01198128703981638, 0.007373930886387825, -0.006610240787267685, 0.008234883658587933, 0.00942364614456892, 0.009351599961519241, 0.006059087347239256, -0.015273799188435078, 0.0034672245383262634, 0.01979830302298069, -0.013890511356294155, -0.016671495512127876, -0.01824210397899151, 0.000742976670153439, -0.008991369046270847, 0.006930846720933914, 0.016988499090075493, -0.005918597336858511, 0.008537477813661098, 0.0023288941010832787, 0.010756500996649265, 0.02266574092209339, 0.017665734514594078, 0.013523075729608536, -0.007889061234891415, 0.00418228330090642, -0.01940925233066082, -0.023703208193182945, -0.0025180154480040073, -0.00788185652345419, 0.0017237059073522687, 0.012867455370724201, 0.012125379405915737, 0.001856991439126432, 0.03118160553276539, -0.021844414994120598, -0.007917880080640316, -0.020518764853477478, 0.005504331551492214, 0.0054791150614619255, 0.0090562105178833, 0.01864556223154068, -0.014690225012600422, -0.024020209908485413, 0.004387614782899618, 0.002613476710394025, 0.02172914147377014, -0.0042795455083251, -0.014272356405854225, 0.009207507595419884, -0.010136903263628483, 0.0076296948827803135, 0.00042642359039746225, -0.0004502889059949666, 0.01961098238825798, 0.0034564174711704254, -0.02054758369922638, 0.0011932655470445752, 0.025446726009249687, -0.017579277977347374, -0.01658504083752632, 0.011080709286034107, 0.010057652369141579, -0.0038292568642646074, 0.007766583003103733, -0.017651325091719627, 0.009855923242866993, -0.011887626722455025, -0.030345868319272995, -0.023458249866962433, -0.001793050323612988, 0.022175827994942665, -0.0036527435295283794, -0.008220474235713482, 0.001485052751377225, 0.01010088063776493, 0.008112404495477676, 0.01900579407811165, -0.0012563059572130442, -0.024697445333003998, 0.010511543601751328, 0.006466148421168327, 0.00632205605506897, -0.00801154039800167, 0.005021621938794851, 0.011304052546620369, 0.0032907112035900354, 0.003537469543516636, -0.022002916783094406, -0.015057660639286041, -0.02246401272714138, -0.0003253337345086038, -0.008342952467501163, -0.008220474235713482, -0.033371809870004654, -0.0030331460293382406, -0.018530288711190224, 0.016512993723154068, -0.018573516979813576, -0.00618877075612545, -0.019063429906964302, -0.013487053103744984, 0.007824219763278961, -0.006815572734922171, -0.006195975001901388, -0.009034596383571625, 0.006592229474335909, -0.02038908191025257, -0.005688049364835024, -0.0009302968392148614, 0.03276662155985832, -0.004229113459587097, -0.014272356405854225, -0.021613866090774536, 0.009164279326796532, -0.0004138154909014702, -0.03351590409874916, 0.0044236378744244576, -0.01370319165289402, -0.002941287122666836, 0.008285315707325935, -0.008069177158176899, 0.0152305718511343, -0.012903478927910328, 0.009005777537822723, -0.018804064020514488, -0.019077839329838753, 0.025533180683851242, 0.011772353202104568, 0.009582147933542728, 0.0008096194360405207, -0.013400597497820854, 0.0006259015644900501, 0.00914266612380743, -0.01342221163213253, 0.007831424474716187, 0.00311780022457242, -0.012896274216473103, -0.012031719088554382, -0.016685904935002327, 0.0031934487633407116, 0.009827104397118092, 0.03933723643422127, -0.01322048157453537, 0.030028866603970528, -0.012651316821575165, -0.02548995427787304, -0.025619637221097946, 0.008321338333189487, 0.010201744735240936, -0.004830699414014816, 0.006408511660993099, 0.0012896273983642459, -0.028112435713410378, 0.026498600840568542, 0.02455335296690464, 0.007853038609027863, 0.00018979677406605333, 0.005507933907210827, 0.0028800477739423513, 0.0001949750876519829, 0.02514413185417652, 0.004520900547504425, -0.010533157736063004, -0.011923650279641151, -0.012096560560166836, 0.00033433950738981366, 0.015951033681631088, 0.0008893205667845905, -0.020028850063681602, -0.004347989335656166, -0.011390508152544498, 0.015072070062160492, 0.0045857420191168785, -0.00313581177033484, 0.007017302326858044, 0.011563418433070183, 0.020043259486556053, 0.0069272443652153015, 0.013076389208436012, -0.013948149047791958, -0.0068876189179718494, -0.01255765650421381, -0.0061851684004068375, 0.009157074615359306, 0.013342960737645626, -0.012737772427499294, 0.005695254076272249, 0.0033015182707458735, 0.004077816382050514, -0.025792548432946205, 0.00608790572732687, -0.011974082328379154, -0.016657086089253426, -0.0152305718511343, -0.0077809919603168964, 0.008523068390786648, 0.0152305718511343, 0.011138346046209335, 0.009553329087793827, -0.012622497975826263, 0.009020186960697174, -0.005000007804483175, 0.0029538951348513365, 0.02894817292690277, 0.018732018768787384, -0.003571691457182169, -0.010698864236474037, 0.002408144995570183, 0.0034618210047483444, 0.02149859257042408, 0.0019812711980193853, 0.022377556189894676, 0.023098019883036613, -0.0025576408952474594, -0.02494240179657936, -0.01198128703981638, 0.021368909627199173, -0.03726230561733246, 0.010403474792838097, -0.03270898386836052, -0.021008677780628204, -0.025273814797401428, -0.003288910025730729, -0.0005669137462973595, -0.008976959623396397, -0.013090798631310463, -0.017377549782395363, -0.004863120149821043, 0.019553344696760178, -0.006462546065449715, 0.011311257258057594, -0.019178705289959908, -0.029250767081975937, 0.015590802766382694, -0.0038292568642646074, -0.0045569236390292645, -0.03063405491411686, -0.03582138195633888, 0.01884729228913784, 0.016239218413829803, 0.006581422407180071, -0.0033249331172555685, 0.018155647441744804, 0.004729834385216236, -0.004913552198559046, -0.004989200737327337, -0.013170049525797367, -0.01904902048408985, 0.007961107417941093, -0.0011455349158495665, -0.0008159235003404319, 0.001954253762960434, -0.007953902706503868, -0.02495681121945381, 0.02896258234977722, 0.003904905403032899, 0.002453173976391554, 0.04020179063081741, -0.001211277092806995, 0.018717609345912933, -0.007572058122605085, 0.004185885656625032, 0.005925802048295736, 0.0323343463242054, -0.0017840445507317781, -0.0054755131714046, 0.0068984259851276875, 0.004834301769733429, 0.010987048968672752, -0.011015867814421654, 0.0030871806666254997, 0.007773787248879671, -0.02151300199329853, 0.02246401272714138, 0.0060338713228702545, -0.009099437855184078, 0.003460019826889038, 0.012889069505035877, 0.009164279326796532, -0.011606646701693535, -0.0118804220110178, -0.027147017419338226, 0.03268016502261162, 0.02206055261194706, -0.002370320726186037, 0.012788204476237297, -0.0016777764540165663, -0.017406366765499115, 0.0015309822047129273, 0.012997138313949108, 0.011376098729670048, 0.016829997301101685, 0.00115273951087147, -0.003425797913223505, 0.007716150488704443, -0.019092248752713203, 0.01066284067928791, -0.020446717739105225, 0.023443840444087982, -0.005018019583076239, 0.002809802768751979, -0.006113122217357159, 0.002438764553517103, -0.002282064175233245, 0.006095110438764095, 0.01920752227306366, -0.013141230680048466, -0.02017294242978096, 0.012917887419462204, -0.01956775411963463, 6.0338712501106784e-05, 0.006923642009496689, -0.00912825670093298, -0.015561983920633793, 0.005929403938353062, 0.002608073176816106, 0.004402024205774069, 0.0026260847225785255, 0.012997138313949108, -0.008033153600990772, 0.011945263482630253, -0.0003379418049007654, 0.007139780558645725, 0.008097995072603226, 0.0025540385395288467, 0.016512993723154068, 0.007572058122605085, -0.005255771800875664, 0.011750739067792892, -0.00027264992240816355, 0.01111673191189766, -0.009992810897529125, 0.014913568273186684, -0.01657063141465187, 0.011448144912719727, -0.013191663660109043, 0.012716158293187618, 0.009574943222105503, -0.01942366175353527, -0.027680158615112305, -0.005878971889615059, 0.005385455209761858, 0.02280983328819275, -0.0017318110913038254, 0.014769475907087326], "5003f6bb-5355-4147-8dc7-b40d9500e93c": [-0.029901346191763878, -0.011348818428814411, -0.0136111406609416, 0.015285556204617023, -0.050812941044569016, -0.021849267184734344, -0.0015869741328060627, 0.004394411575049162, -0.0057711536064744, 0.05453386530280113, 0.03601854667067528, 0.028398092836141586, 0.00013290675997268409, 0.0031665065325796604, -0.01994415372610092, -0.0314939022064209, -0.013142304494976997, 0.015985090285539627, -0.021581361070275307, 0.0010920912027359009, 0.062035247683525085, -0.028487395495176315, -0.02000368759036064, 0.018723690882325172, 0.0024762749671936035, -0.04039435461163521, 0.0001347672223346308, -0.006850221194326878, -0.048788756132125854, -0.00591626949608326, 0.02626972459256649, 0.0019888340029865503, 0.020167408511042595, 0.021566476672887802, -0.025540422648191452, -0.0666789636015892, 0.010686494410037994, 0.010939517058432102, 0.007140453439205885, -0.0021841824054718018, -0.003252087626606226, 0.04328178986907005, 0.008751614019274712, 0.011058586649596691, -0.034172967076301575, -0.016744159162044525, -0.05051526799798012, -0.014370209537446499, -0.006902314256876707, -0.01012091338634491, 0.022132057696580887, 0.036316219717264175, -0.039620399475097656, -0.009049287997186184, 0.042061325162649155, -0.025555307045578957, 0.011229748837649822, 0.11198493093252182, 0.023471590131521225, -0.06429757177829742, -0.01745857670903206, -0.005830688402056694, 0.0285915806889534, -0.0069283610209822655, 0.007568359840661287, -0.02342693880200386, -0.024290192872285843, 0.035333894193172455, -0.023754380643367767, 0.018202761188149452, 0.01239811908453703, 0.01267346739768982, -0.0492352694272995, 0.023501357063651085, -0.004420457873493433, 0.010344169102609158, 0.003583249868825078, 0.011021377518773079, 0.023159032687544823, -0.018545085564255714, 0.006485570687800646, -0.020956244319677353, 0.02082229219377041, 0.028398092836141586, 0.026195306330919266, 0.021879034116864204, -0.010879982262849808, -0.04360923171043396, -0.053313400596380234, -0.02914227731525898, 0.016074392944574356, 0.03688180074095726, -0.020986013114452362, 0.006991616450250149, 0.007054872345179319, 0.009525565430521965, -0.024230659008026123, 0.011586957611143589, 0.014355325140058994, -0.006578593980520964, -0.004543248564004898, 0.034202735871076584, -0.004963712766766548, 0.0040781330317258835, -0.018708806484937668, -0.008587893098592758, 0.012606491334736347, 0.04450225457549095, -0.014199046418070793, -0.00612464128062129, 0.016550671309232712, -0.08608730137348175, 0.009659519419074059, -0.007970219478011131, -0.036405522376298904, -0.007423243951052427, -0.042954348027706146, -0.012204631231725216, -0.004070690833032131, -0.020450199022889137, -0.017756249755620956, -0.017443692311644554, 0.010247425176203251, -0.0008437195792794228, -0.029395300894975662, 0.03583994135260582, -0.01264370046555996, 0.04804457351565361, 0.035006456077098846, 0.010143239051103592, -0.004342318512499332, -0.0035720872692763805, 0.04140644520521164, -0.02449856512248516, 0.010760912671685219, 0.022370196878910065, 0.015761835500597954, 0.09597007930278778, -0.005335805471986532, 0.024543216452002525, -0.03905481845140457, -0.018306946381926537, -0.029410185292363167, 0.005570223554968834, 0.0013916256139054894, 0.0057860370725393295, -0.03679249808192253, 0.0480148047208786, -0.02792181447148323, 0.0052465032786130905, -0.027817629277706146, -0.036405522376298904, -0.00174697395414114, -0.010493006557226181, 0.0446510910987854, 4.6540622861357406e-05, -0.015449277125298977, 0.018574854359030724, -0.008580450899899006, 0.038459472358226776, 0.009257659316062927, -0.0428055115044117, -0.005990687757730484, 0.011624166741967201, 0.02351624146103859, 0.027296699583530426, 0.04283528029918671, 0.02862134948372841, -0.013804628513753414, 0.012911606580018997, 0.010113472118973732, 0.01038137823343277, 0.03488738462328911, -0.021670661866664886, 0.02055438421666622, -0.02673111855983734, 0.055545955896377563, -0.0003702319518197328, 0.030600881204009056, -0.04003714397549629, -0.010411146096885204, -0.014853929169476032, 0.023754380643367767, 0.003041855525225401, -0.0333394818007946, 0.042091093957424164, 0.015821369364857674, 0.03807249665260315, 0.022950660437345505, 0.026597166433930397, -0.02388833276927471, -0.012636258266866207, 0.016312532126903534, 0.015523695386946201, 0.012680909596383572, -0.03155343607068062, -0.010850215330719948, -0.0012772072805091739, -0.015374858863651752, 0.01997392065823078, -0.005488363094627857, -0.0336371548473835, -0.0023813913576304913, 0.06069571524858475, -0.0008693009149283171, -0.0018223226070404053, 0.012747886590659618, -0.05283712223172188, 0.0027237164322286844, -0.00159999739844352, 0.04715155065059662, -0.002087438479065895, 0.01991438679397106, 0.005138596054166555, -0.0027906931936740875, 0.02786228060722351, 0.005834409035742283, -0.003910691477358341, -0.008476265706121922, -0.01428090687841177, 0.008431614376604557, -0.030258554965257645, 0.01183253899216652, -0.021998103708028793, -0.06429757177829742, -0.0348576158285141, -0.03018413670361042, 0.019988805055618286, -0.006333013065159321, -0.02687995694577694, 0.05471247062087059, -0.016491135582327843, 0.03316087648272514, -0.009652077220380306, -0.0023590659257024527, 0.005090224090963602, 0.048639919608831406, 0.007028825581073761, -0.022042755037546158, -0.03679249808192253, 0.012822304852306843, -0.022370196878910065, -0.016401832923293114, -0.02009299024939537, -0.008230684325098991, 0.006861384026706219, -0.03247622773051262, 0.04610969126224518, 0.008215800859034061, 0.026031585410237312, 0.004182318691164255, 0.023784147575497627, -0.00983068160712719, 0.03360738605260849, -0.008833473548293114, 0.0183515977114439, 0.04182318598031998, 0.005335805471986532, -0.03575063869357109, -0.010150681249797344, -0.007955336011946201, -0.003473482793197036, -0.029960881918668747, 0.021268801763653755, 0.03375622257590294, -0.05709385871887207, 0.042924582958221436, -0.008699520491063595, 0.012517188675701618, 0.05899897217750549, -0.008647427894175053, -0.020628804340958595, 0.006883709691464901, 0.021759964525699615, -0.03476831689476967, -0.02728181518614292, -0.004074411932379007, 0.009473472833633423, 0.004122783895581961, -0.008922776207327843, 0.0016613926272839308, -0.027653908357024193, 0.0492352694272995, 0.006340454798191786, 0.02055438421666622, 0.017756249755620956, -0.026612048968672752, -0.04813387617468834, -0.027936698868870735, -0.016982298344373703, -0.030719950795173645, -0.0009125566575676203, 0.005856734700500965, 0.054146889597177505, -0.014094861224293709, 0.007010221015661955, -0.008386963047087193, -0.011869748122990131, 0.020256711170077324, -0.016044624149799347, -0.017652064561843872, -0.014392534270882607, -0.022042755037546158, -0.025763679295778275, 0.04584178701043129, -0.01966136321425438, 0.03592924401164055, 0.008721846155822277, -0.01117765624076128, 0.012636258266866207, 0.020807407796382904, 0.004308830015361309, -0.02192368544638157, -0.004573015961796045, -0.018634388223290443, 0.0183515977114439, -0.048639919608831406, -0.012033469043672085, -0.012390677817165852, -0.009808355942368507, 0.00438696937635541, 0.008893008343875408, -0.05274781957268715, 0.03027343936264515, 0.031851109117269516, -0.04625852778553963, 0.026492979377508163, -0.047657597810029984, -0.030779484659433365, -0.01346974540501833, -0.008037196472287178, 0.00726324412971735, -0.031910646706819534, 0.020450199022889137, -0.005417665466666222, -0.044055741280317307, -0.04354969784617424, -0.03592924401164055, 0.0001298835122724995, -0.011936725117266178, -0.019884617999196053, 0.009592542424798012, 0.0055032470263540745, -0.00901952013373375, -0.01602974161505699, -0.030630648136138916, -0.0033879014663398266, 0.008401846513152122, 0.011244633235037327, 0.008066963404417038, 0.0009572077542543411, -0.0012288352008908987, 0.025421353057026863, -0.0029376696329563856, 0.014027884230017662, 0.008186032995581627, -0.02899344079196453, -0.025004610419273376, 0.00998696032911539, 0.021789731457829475, -0.04057295620441437, -0.03664366155862808, -0.011110679246485233, -0.055188748985528946, 0.01332090888172388, 0.0327143669128418, 0.00027627861709333956, 0.003962784074246883, -0.030749717727303505, -0.00484092254191637, -0.026686469092965126, 0.012182305566966534, -0.003739528823643923, -0.008654870092868805, -0.023159032687544823, -0.021626010537147522, 0.051914334297180176, 0.023322753608226776, -0.014779510907828808, 7.947661651996896e-05, 0.005291154142469168, 0.009979519061744213, -0.05387898162007332, 0.02780274488031864, 0.05679618567228317, -0.008416730910539627, 0.017726482823491096, -0.0008060451946221292, -0.016431601718068123, 0.002837204607203603, -0.026656700298190117, 0.0035999941173940897, -0.010254867374897003, 0.007144174538552761, -0.0017423226963728666, -0.023382287472486496, 0.0009795333025977015, 0.003758133389055729, 0.025376703590154648, -0.00726324412971735, 0.00613952474668622, 0.0004613946075551212, 0.0019720897544175386, -0.002396275056526065, 0.005946036893874407, -0.035214826464653015, 0.014109744690358639, -0.013119978830218315, 0.0030995297711342573, -0.013648349791765213, 0.005239061079919338, -0.021789731457829475, 0.019825084134936333, 0.036197151988744736, 0.009168357588350773, 0.008506032638251781, -0.005168363451957703, 0.055397119373083115, -0.052092939615249634, -0.02085205912590027, 0.012993467040359974, 0.007456731982529163, -0.0007883707876317203, 0.006120920181274414, -0.04840178042650223, 0.04104923456907272, -0.009473472833633423, 0.01663997210562229, -0.010158123448491096, -0.005689293146133423, 0.034202735871076584, 0.04113853722810745, -0.015121836215257645, 0.004301388282328844, -0.00409673759713769, 0.009071612730622292, 0.030020415782928467, 0.008602776564657688, 0.0053841774351894855, 0.0007809289381839335, 0.02629949152469635, 0.02247438207268715, 0.034113433212041855, -0.00980091467499733, -0.05247991532087326, -0.03447064012289047, -0.0483124777674675, 0.02189391851425171, 0.019706014543771744, 0.022831590846180916, 0.0007032546564005315, 0.027296699583530426, -0.06132083013653755, -0.015404625795781612, 0.0032744132913649082, 0.000500929425470531, -0.0012511607492342591, 0.005819525569677353, -0.012978583574295044, -0.03703063726425171, -0.008096731267869473, 0.022102288901805878, 0.02868088334798813, -0.006013013422489166, 0.013826954178512096, -0.03991807624697685, -0.02226600982248783, 0.00613952474668622, 0.016342299059033394, 0.020986013114452362, -0.004904177971184254, 0.008565567433834076, -0.006734872702509165, 0.050753407180309296, -0.00940649677067995, -0.019319038838148117, -0.02128368616104126, 0.008922776207327843, -0.023932984098792076, -0.0033246458042412996, -0.004219527821987867, 0.001129300449974835, -0.03872738033533096, 0.009756263345479965, -0.00014197651762515306, 0.0019292992074042559, -0.03140459954738617, 0.0016586019191890955, -0.01754787750542164, 0.024840889498591423, 0.01641671732068062, 0.011802771128714085, -0.015025091357529163, -0.017205553129315376, 0.026522748172283173, -0.020197177305817604, 0.029886463657021523, -0.008305102586746216, -0.0053916191682219505, -0.0324166901409626, 0.023813914507627487, 0.003657668363302946, 0.011170214042067528, 0.0038623192813247442, -0.02033112943172455, 0.046407368034124374, -0.019036248326301575, 0.012599049136042595, -0.0032576690427958965, -0.0030139486771076918, 0.009123706258833408, 0.003933016676455736, -0.022057639434933662, 0.018738573417067528, 0.02385856583714485, -0.0066939424723386765, -0.01362602412700653, -0.0014725557994097471, 0.03143436834216118, 0.015144160948693752, -0.006734872702509165, 0.005566502455621958, -0.017294855788350105, -0.004692085552960634, -0.015538579784333706, -0.0036465057637542486, -0.011966492049396038, -0.012963700108230114, 0.020479965955018997, -0.021492058411240578, -0.03813203051686287, -0.007170220836997032, -0.0077246385626494884, 0.0014651139499619603, 0.0073488252237439156, 0.02783251367509365, -0.019006481394171715, -0.018753457814455032, 0.008081846870481968, -0.006247431505471468, 0.00532836327329278, 0.03720924258232117, 0.01402044203132391, -0.015002766624093056, -0.00404464453458786, 0.019304154440760612, 0.017711598426103592, 0.0142957903444767, -0.021700430661439896, 0.014318116009235382, -0.02455809898674488, -0.01693764701485634, -0.028293907642364502, -0.017235320061445236, 0.00874417182058096, 0.004119063261896372, -0.01780090108513832, -0.009153473190963268, -0.0212539192289114, -0.030020415782928467, 0.0008925566799007356, -0.00033651108969934285, 0.0068092914298176765, 0.008706962689757347, -0.01739904098212719, -0.01690788008272648, -0.028219489380717278, 0.03774505481123924, -0.01936369016766548, -0.002130229026079178, 0.020494850352406502, 0.00984556507319212, 0.041942257434129715, 0.02917204611003399, 0.01091719139367342, 0.007821382954716682, 0.016044624149799347, 0.001938601490110159, -0.009882774204015732, -0.0009655798203311861, 0.01580648496747017, -0.014057651162147522, 0.005685572046786547, -0.01690788008272648, 0.0038176681846380234, 0.017905086278915405, -0.036375753581523895, -0.030987856909632683, -0.007304174359887838, 0.023441823199391365, -0.013722768053412437, 0.04926503449678421, -0.003529296489432454, -0.0006390687194652855, -0.011415795423090458, 0.0345599427819252, -0.011430678889155388, -0.007769289892166853, 0.03581017255783081, 0.006708826404064894, 0.016982298344373703, 0.006533942651003599, 0.026716236025094986, -0.012197189033031464, -0.02183438278734684, -0.0042306906543672085, 0.008803706616163254, 0.0033972037490457296, -0.028829719871282578, -0.0037004591431468725, -0.030481811612844467, -0.010173006914556026, -0.002969297580420971, -0.006779524032026529, 0.025644609704613686, -0.00833487045019865, 0.005752548575401306, -0.010135797783732414, 0.00981579814106226, 0.003877202980220318, 0.015449277125298977, -0.011601842008531094, 0.03920365869998932, -0.044055741280317307, 0.04027528315782547, 0.024453913792967796, -0.019557178020477295, -0.0007916266331449151, 0.014429744333028793, 0.02033112943172455, -0.01374509371817112, -0.02528740093111992, 0.009205566719174385, -0.00898975320160389, 0.019557178020477295, -0.010009285993874073, -0.020747873932123184, 0.009071612730622292, -0.001461392967030406, -0.004628829658031464, 0.00040697609074413776, 0.003079064656049013, -0.021075313910841942, 0.03938226029276848, -0.0269097238779068, 0.027058560401201248, -0.007858592085540295, -0.007043709512799978, 0.027147863060235977, 0.0053990609012544155, -0.031196229159832, 0.021119965240359306, -0.010173006914556026, 0.00033767387503758073, -0.0005953478394076228, -0.0056632463820278645, -0.013819511979818344, 0.019616711884737015, 0.03369668871164322, 0.024870656430721283, -0.008096731267869473, -0.024349728599190712, 0.016744159162044525, 0.01455625519156456, 0.028368325904011726, 0.010143239051103592, 0.0039665051735937595, 0.005026968661695719, 0.02685018815100193, -0.010321843437850475, 0.035304129123687744, -0.023739496245980263, -0.013767419382929802, -0.031880877912044525, 0.004375807009637356, 0.01117765624076128, 0.029826927930116653, -0.012033469043672085, -0.002708832733333111, -0.03143436834216118, -0.011519981548190117, -0.038667842745780945, -0.004219527821987867, -0.004844643175601959, -0.021849267184734344, -0.014913463965058327, -0.002654879353940487, 0.049771081656217575, -0.041733887046575546, -0.018649272620677948, 0.02253391593694687, 0.006846500560641289, -0.021938569843769073, 0.022608336061239243, 0.015598114579916, -0.028785068541765213, -0.0012734862975776196, -0.02220647595822811, 0.005157201085239649, -0.02192368544638157, -0.03470877930521965, -0.015330207534134388, -0.008893008343875408, -0.02737111784517765, 0.019319038838148117, 0.007985102944076061, -0.011467888019979, -0.011393469758331776, -0.014027884230017662, 0.02621019072830677, -0.008439055643975735, 0.003071622923016548, 0.011959049850702286, 0.038816679269075394, 0.015761835500597954, 0.008037196472287178, -0.0013646489242091775, 0.010195332579314709, -0.029216697439551353, 0.026775769889354706, 0.00945114716887474, 0.025986934080719948, 0.0004690689966082573, -0.0376259870827198, -0.011475330218672752, 0.019586944952607155, -0.01954229362308979, -0.017384158447384834, -0.0014920906396582723, 0.005439991131424904, 0.02195345237851143, -0.030541345477104187, 0.014511603862047195, -0.001240928191691637, -0.013916256837546825, -0.020866943523287773, 0.0014753463910892606, 0.005451153963804245, 0.005250223912298679, -0.015039975754916668, 0.028725534677505493, 0.004569294862449169, 0.020316246896982193, -0.029931114986538887, 0.013038118369877338, -1.1017424185411073e-05, 0.033131107687950134, 0.002507902914658189, -0.007873475551605225, 0.023992519825696945, 0.03247622773051262, -0.03330971300601959, 0.03488738462328911, -0.003557203570380807, 0.005949757527559996, -0.010373936966061592, 0.029305998235940933, 0.0035051105078309774, -0.0010260448325425386, 0.040692027658224106, -0.0077171968296170235, -0.00901952013373375, -0.0559627003967762, -0.0055032470263540745, 0.011043703183531761, 0.022087406367063522, -0.0031311577185988426, -0.02670135162770748, 0.03354785218834877, -0.014117185957729816, 0.04235900193452835, 0.052122704684734344, 0.0250790286809206, 0.02226600982248783, -0.014154396019876003, -0.057659439742565155, -0.0024483681190758944, -0.026954375207424164, -0.0015190673293545842, -0.003955342341214418, -0.0039032495114952326, -0.036524590104818344, 0.03128553181886673, -0.031940411776304245, 0.026716236025094986, -0.018783224746584892, 0.01262881699949503, 0.013849279843270779, -0.004937666468322277, 0.025451121851801872, 0.01841113343834877, -0.02070322260260582, -0.012993467040359974, -0.003888365812599659, 0.032952506095170975, -0.009503240697085857, 0.018247412517666817, -0.006195338908582926, -0.025986934080719948, -0.002420461270958185, -0.007121848873794079, -0.022310661152005196, 0.03330971300601959, 0.03438134118914604, -0.003123715752735734, -0.017056716606020927, -0.013067885302007198, -0.003583249868825078, 0.0025209260638803244, -0.005480921361595392, 0.0038809238467365503, 0.030719950795173645, 0.011735795065760612, 0.028338558971881866, -0.003123715752735734, 0.0005167433409951627, -0.001728369272314012, 0.0012558118905872107, 0.034262269735336304, -0.001029765815474093, 0.01278509572148323, -0.015702299773693085, 0.014824162237346172, 0.020107874646782875, -0.0003313948109280318, -0.028799952939152718, 0.0008427893044427037, 0.0030827857553958893, 0.0033153435215353966, -0.0166697409003973, 0.0048558060079813, -0.04453201964497566, -0.013313466683030128, 0.02238507941365242, -0.017622297629714012, 0.017756249755620956, -0.001085579628124833, 0.02586786448955536, -0.026656700298190117, 0.02847251109778881, -0.014459511265158653, -0.0593264140188694, 0.002122787293046713, -0.008476265706121922, 0.005867897532880306, 0.03140459954738617, 0.014898580498993397, -0.003936737775802612, 0.022682754322886467, 0.07114406675100327, 0.034113433212041855, -0.007058592978864908, -0.012479979544878006, 0.020465083420276642, -0.04259714111685753, 0.012405561283230782, -0.03613761439919472, 0.005413944832980633, -0.000291859993012622, 0.017532994970679283, 0.02348647266626358, -0.0022548800334334373, 0.002556274877861142, -0.0059051066637039185, -0.004822317510843277, -0.01091719139367342, 0.000436743488535285, 0.008528358303010464, 0.031880877912044525, 0.03399436175823212, 0.004219527821987867, -0.00819347519427538, 0.01884276047348976, 0.013023234903812408, -0.0403645858168602, -0.0011051144683733582, -0.0021451127249747515, 0.02963344007730484, -0.005934874061495066, -0.0003304645651951432, -0.013998116366565228, 0.0035702267196029425, 0.021015780046582222, 0.0007432546117343009, -0.012219514697790146, -0.0015646485844627023, -0.0010688354959711432, -0.00833487045019865, 0.0066790590062737465, 0.004204644355922937, -0.02281670644879341, -0.028204604983329773, -0.02461763471364975, -0.013573931530117989, -0.02731158398091793, 0.012338584288954735, -0.0018920899601653218, -0.015114394016563892, -0.0066790590062737465, 0.02342693880200386, 0.007095802575349808, -0.04018598049879074, -0.03920365869998932, -0.027356235310435295, 0.03134506568312645, -0.026016701012849808, 0.0005781385698355734, -0.009235333651304245, 0.01336555927991867, 0.02609112113714218, 0.005090224090963602, 0.049622245132923126, 0.0015060440637171268, -0.0016232532216235995, 0.05614130571484566, 0.025421353057026863, 0.015032533556222916, -0.017473459243774414, -0.00943626370280981, -0.00875905528664589, 0.0023888333234936, 0.007821382954716682, 0.0339348278939724, 0.01332090888172388, -0.02449856512248516, 0.0011358121410012245, -0.02893390692770481, -0.02174508012831211, -0.008796264417469501, 0.03655435889959335, -0.00919068232178688, 0.021789731457829475, -0.0013497652253136039, -0.0038920866791158915, 0.004714410752058029, -0.02143252268433571, -0.0010316262487322092, -0.014169279485940933, -0.027073444798588753, -0.0074604530818760395, -0.008409288711845875, -0.02626972459256649, 0.023218566551804543, -0.011281842365860939, -0.02957390621304512, -0.011877190321683884, -0.007192546501755714, 0.020539501681923866, 0.010507890023291111, 0.014065093360841274, 0.0191106665879488, 0.050842706114053726, -0.019839968532323837, 0.015732066705822945, 0.0014660441083833575, 0.013573931530117989, -0.008394405245780945, 0.0010688354959711432, 0.001452090684324503, 0.0018874388188123703, 0.004331155680119991, -0.023843681439757347, -0.014228814281523228, 0.020078107714653015, -0.026522748172283173, 0.02951437048614025, -0.018917178735136986, -0.002710693283006549, -0.0033432503696531057, -0.018515318632125854, -0.020167408511042595, -0.009443705901503563, -0.007873475551605225, 0.02290600910782814, -0.010321843437850475, -0.0011451144237071276, -0.002738600131124258, -0.01201858464628458, -0.010217658244073391, 0.0014920906396582723, 0.010373936966061592, -0.015732066705822945, -0.02945483662188053, -0.01858973689377308, 0.018723690882325172, 0.028145071119070053, 0.008513474836945534, 0.001406509312801063, -0.005146038252860308, 0.023992519825696945, 0.0018558109877631068, -0.01690788008272648, 0.010195332579314709, -0.036524590104818344, -0.0024948797654360533, -0.010202773846685886, -0.012651141732931137, -0.033041805028915405, -0.015955323353409767, -0.018946945667266846, -0.023620426654815674, 0.011378586292266846, -0.018217645585536957, 0.0321190170943737, 0.00503813149407506, -0.0005120921996422112, 0.012011143378913403, -0.001866043428890407, 0.017934855073690414, 0.020018571987748146, 0.0036781334783881903, 0.004744178149849176, 0.002813018625602126, 0.011646492406725883, -0.0030362741090357304, -0.0011320911580696702, 0.03283343464136124, -0.0005181386950425804, 0.008840915746986866, 0.023144148290157318, -0.00713301170617342, -0.025614842772483826, 0.004022318869829178, -0.021908801048994064, -0.00888556707650423, 0.001360928057692945, 0.007319057825952768, 0.00969672854989767, 0.02795158326625824, 0.0037711565382778645, 0.0025692980270832777, -0.005019526928663254, 0.0038846449460834265, -0.0015460440190508962, -0.00903440359979868, -0.02923157997429371, 0.00888556707650423, -0.08388451486825943, -0.025614842772483826, -0.006396268494427204, -0.018113458529114723, -0.010664168745279312, -0.012457653880119324, 0.02415623888373375, 0.008401846513152122, -0.019304154440760612, 0.030690182000398636, -0.012837188318371773, -0.001406509312801063, 0.029678091406822205, 0.011787887662649155, 0.003328366670757532, -0.009488356299698353, -0.0321190170943737, -0.0044651092030107975, 0.004926503635942936, -0.012822304852306843, -0.029439952224493027, 0.004375807009637356, 0.027296699583530426, 0.0043609230779111385, -0.01742880791425705, 0.030839020386338234, -0.009890216402709484, 0.0162083450704813, -0.010321843437850475, -0.02415623888373375, 0.03703063726425171, 0.0027255769819021225, -0.0001888369006337598, 0.00654510548338294, -0.00039906910387799144, 0.019527409225702286, 0.013462303206324577, 0.01454137172549963, 0.008848357945680618, 0.024453913792967796, 0.0036725520621985197, 0.018545085564255714, -0.0026083679404109716, -0.009488356299698353, -0.0022772056981921196, -0.0009497659048065543, -0.005879060365259647, -0.03265482932329178, 0.021536709740757942, -0.0030548786744475365, 0.019348805770277977, -0.005938595160841942, -0.008945101872086525, -0.01574695110321045, 0.01887252740561962, 0.014586023055016994, -0.0003520924365147948, -0.0018762759864330292, -0.009183241054415703, -0.018708806484937668, 0.05905850976705551, 0.007259523030370474, -0.01117765624076128, 0.0038920866791158915, -0.015017650090157986, 0.008997194468975067, 0.0026158096734434366, -0.008654870092868805, 0.023129263892769814, 0.017116250470280647, 0.005752548575401306, 0.00942138023674488, 0.009577658958733082, 0.017384158447384834, 0.025421353057026863, 0.0010325564071536064, 0.03152367100119591, 0.007947893813252449, 0.011795329861342907, 0.0016148810973390937, -0.026954375207424164, 0.004081853665411472, 0.011475330218672752, 0.0023888333234936, -0.008066963404417038, -0.011319051496684551, 0.007999987341463566, -0.006221385207027197, -0.03461948037147522, 0.0027330187149345875, -0.006388826761394739, 0.0047627827152609825, 0.01791997067630291, 0.0003604645316954702, -0.010909750126302242, 0.027683675289154053, 0.0074753365479409695, -0.011066028848290443, 0.02327810227870941, 0.01000184379518032, -0.015404625795781612, -0.02055438421666622, -0.008044637739658356, -0.01568741723895073, -0.02290600910782814, 0.009666960686445236, 0.00901952013373375, 0.026403678581118584, 0.004937666468322277, -0.014362767338752747, 0.0010065099922940135, 0.01791997067630291, 0.011214865371584892, -0.01794973760843277, -0.026106003671884537, 0.006600919645279646, -0.003585110418498516, -0.004974875599145889, -0.001563718426041305, 0.005607432685792446, 0.00591626949608326, 0.023397171869874, 0.011490213684737682, -0.045484576374292374, -0.001461392967030406, 0.007426964584738016, 0.006195338908582926, -0.02006322331726551, -0.012621374800801277, 0.011229748837649822, 0.00940649677067995, 0.011758120730519295, -0.009198124520480633, 0.010827889665961266, 0.009525565430521965, 0.0013404629426077008, 0.020599035546183586, -0.027653908357024193, 0.033964596688747406, -0.02333763614296913, -0.0023609264753758907, 0.011036260984838009, -0.013224164955317974, 0.007441848516464233, -6.529059464810416e-05, 0.011557190679013729, -0.009547891095280647, -0.01172835286706686, -0.019884617999196053, -0.02740088477730751, -0.02290600910782814, 0.006965570151805878, 0.04149574786424637, 0.034143202006816864, 0.003529296489432454, -0.04000737518072128, -0.01562788151204586, 0.0006488361395895481, -0.0020260431338101625, 0.001333951367996633, -0.02528740093111992, -0.004424178972840309, -0.0016958111664280295, -0.007084639742970467, 0.029439952224493027, -0.016520902514457703, -0.015642765909433365, -0.016104159876704216, -0.004599062260240316, -0.011497655883431435, 0.006946965586394072, -0.000514417770318687, -0.011013935320079327, 0.0013246489688754082, 0.011921840719878674, -0.023114381358027458, -0.012837188318371773, -0.016684623435139656, 0.02342693880200386, -0.016952531412243843, -0.02760925702750683, 0.00027348793810233474, -0.013067885302007198, 0.00888556707650423, 0.005704176612198353, 0.0010437192395329475, 0.00047860387712717056, -0.010031611658632755, -0.0034679013770073652, 0.009220450185239315, 0.021998103708028793, -0.02006322331726551, -0.02180461585521698, 0.00685766339302063, -0.008215800859034061, 0.015032533556222916, -0.006556268315762281, 0.011043703183531761, 0.0007232546340674162, 0.0166697409003973, -0.018976712599396706, -0.02571902796626091, 0.017041832208633423, 0.006385105662047863, -0.007103244308382273, -0.0018827876774594188, -0.001333951367996633, 0.02740088477730751, 0.03384552523493767, -0.023382287472486496, -0.008580450899899006, -0.014615789987146854, 0.016342299059033394, -0.008372079581022263, -0.01036649476736784, -0.019289270043373108, 0.0012093003606423736, -0.026344142854213715, 0.013492071069777012, -0.008253009989857674, 0.027132978662848473, -0.00028232511249370873, 0.0180390402674675, 0.0031125531531870365, -0.007017663214355707, -0.0020092991180717945, 0.004375807009637356, -0.01307532750070095, -0.02519809827208519, 0.0032148784957826138, -0.014013000763952732, 0.0065599894151091576, -0.0023311590775847435, -0.010083704255521297, -0.016863228753209114, -0.010493006557226181, 0.0425078384578228, -0.004561853129416704, 0.014496720395982265, -0.0013395326677709818, -0.03381576016545296, -0.01142323762178421, -0.0006637198384851217, 0.01725020445883274, 0.04003714397549629, -0.025064146146178246, -0.004312551114708185, 0.0020297642331570387, 0.00571906054392457, -0.0005083712749183178, 0.0027627861127257347, -0.015464160591363907, 0.0022846474312245846, 6.529059464810416e-05, -0.005596269853413105, -0.0053916191682219505, 0.023292984813451767, -0.007077198009938002, 0.005335805471986532, -0.003869761247187853, -0.01789020374417305, 0.01858973689377308, 0.029305998235940933, -0.027326466515660286, 0.024692052975296974, -0.00658231507986784, 0.007895801216363907, 0.03771528601646423, -0.002850227989256382, 0.0005795339238829911, -0.01684834435582161, 0.0030139486771076918, -0.028204604983329773, -0.021670661866664886, 0.0014204628532752395, 0.0015013929223641753, 0.014087419025599957, -0.007955336011946201, -0.009979519061744213, 0.009622310288250446, -0.016446484252810478, -0.004852084908634424, -0.010559982620179653, 0.012048352509737015, 0.013447419740259647, 0.007069755811244249, 0.00490789907053113, -0.015672532841563225, 0.0244687981903553, -0.010708820074796677, 0.011490213684737682, 0.0018558109877631068, 0.007426964584738016, 0.006578593980520964, 0.009525565430521965, -0.008133940398693085, 0.005454875063151121, 0.003134878585115075, 0.040721792727708817, -0.015479044988751411, 0.035065989941358566, -0.009652077220380306, -0.015583230182528496, -0.009614868089556694, -0.007404638919979334, -0.00026697630528360605, 0.03554226830601692, 0.015523695386946201, -0.001994415419176221, 0.005294875241816044, 0.021581361070275307, 0.01858973689377308, -0.017726482823491096, -0.012859513983130455, 0.009786030277609825, 0.0030585997737944126, -0.0006288361619226635, 0.02012275718152523, -0.006906035356223583, -0.04828271269798279, 0.0166697409003973, 0.02673111855983734, 0.033071573823690414, -0.013953465968370438, -0.0030920880381017923, -0.029559021815657616, -0.01561299804598093, -0.007021383848041296, 0.021179500967264175, -0.0015488347271457314, -0.0024799960665404797, 0.007389755453914404, -0.018946945667266846, -0.009637193754315376, -0.001773950643837452, 0.00028953442233614624, -0.02119438350200653, 0.006426035892218351, 0.002647437620908022, -0.0035162733402103186, 0.00046953410492278636, 0.026106003671884537, 0.005700455978512764, -0.00024116240092553198, 0.025942282751202583, 0.014236255548894405, -0.002048368798568845, 0.02455809898674488, 0.029588788747787476, -0.04357946291565895, 0.023620426654815674, 0.005146038252860308, -0.004375807009637356, 0.00019465084187686443, -0.003888365812599659, 0.02348647266626358, -0.00633673369884491, 0.0009879053104668856, -0.01861950382590294, -0.03447064012289047, -0.028665998950600624, -0.0011599981226027012, 0.00424185348674655, 0.01678881049156189, -0.030139485374093056, 0.011185098439455032, 0.028517162427306175, -0.02275717258453369, 0.0074678948149085045, -0.018827876076102257, -0.008833473548293114, 0.0025748794432729483, 0.009495798498392105, -0.01319439709186554, -0.0035181338898837566, 0.011415795423090458, -0.03476831689476967, 0.025927400216460228, -0.013380443677306175, -0.025614842772483826, 0.0015488347271457314, 0.00235534505918622, -0.03357762098312378, -0.012048352509737015, -0.00958510022610426, -0.002344182226806879, -0.014712533913552761, 0.0023199962452054024, -0.014920906163752079, -0.01120742317289114, 0.012130212970077991, 0.018143225461244583, -0.007933010347187519, 0.03134506568312645, 0.016461368650197983, 0.004941387102007866, -0.03223808854818344, -0.01672927476465702, -0.035185057669878006, -0.010909750126302242, -0.019095782190561295, 0.00820835866034031, -0.004338597413152456, 0.02696925774216652, -0.012606491334736347, 0.0022009266540408134, -0.005972083192318678, 0.010187890380620956, -0.0142957903444767, -0.021506940945982933, 0.007843708619475365, -0.013462303206324577, -0.009979519061744213, -0.02015252597630024, -0.02664181776344776, 0.006537663750350475, -0.004323713947087526, 0.0031869716476649046, 0.010574866086244583, -0.015173928812146187, -0.015880905091762543, -0.0006818593828938901, -0.0052688284777104855, -0.017815785482525826, 0.00042488303733989596, 0.0073302206583321095, -0.01663997210562229, -0.003172087948769331, 0.002999064978212118, -0.012651141732931137, -0.0038660401478409767, 0.010426029562950134, 0.0072260345332324505, 0.0007386034703813493, 0.027177629992365837, -0.0008674404234625399, -0.007505103945732117, -0.009101380594074726, 0.007549755275249481, -0.024141356348991394, -0.0180390402674675, -0.04479992762207985, -0.000259767024544999, 0.005164642818272114, -0.00957021676003933, -0.02957390621304512, 0.0043348767794668674, -0.018396249040961266, 0.03586971014738083, 0.029291115701198578, 0.0037916216533631086, -0.02351624146103859, -0.0019832525867968798, 0.0015469741774722934, -0.011549748480319977, 0.010798121802508831, 0.008863241411745548, 0.019825084134936333, -0.008937659673392773, 0.03381576016545296, 0.016252996399998665, -0.012152538634836674, -0.0018176714656874537, 0.015553463250398636, -0.02838321030139923, 0.01725020445883274, 0.019467875361442566, -0.02272740565240383, -0.024959959089756012, -0.009466031566262245, 0.014065093360841274, 0.012070678174495697, -0.022429730743169785, -0.007125569973140955, 0.009942308999598026, -0.028874371200799942, -0.016372065991163254, 0.009324636310338974, 0.013566489331424236, -0.030481811612844467, 0.011214865371584892, 0.0027683675289154053, 0.0073562669567763805, 0.0023944147396832705, 0.018262295052409172, -0.019185084849596024, 0.0301246028393507, -0.004639992490410805, -0.00021686010586563498, 0.0015144161880016327, -0.00154418358579278, -0.003320924937725067, -0.026805538684129715, 0.010217658244073391, 0.013105095364153385, -0.011981375515460968, -0.01893206313252449, -0.009674402885138988, 0.023650193586945534, 0.010984168387949467, -0.010299517773091793, -0.02844274416565895, -0.05018782615661621, 0.016922762617468834, -0.005343247205018997, -0.004145109560340643, 0.008111614733934402, 0.026984142139554024, 0.012212073430418968, -0.0023274379782378674, 0.001884648110717535, -0.007281848695129156, -6.831384234828874e-05, 0.011892073787748814, -0.021179500967264175, -0.009652077220380306, 0.03155343607068062, -0.010984168387949467, -0.01171346940100193, 0.0038288310170173645, 0.0044651092030107975, -0.009644635021686554, -0.010559982620179653, -0.0021451127249747515, -0.02281670644879341, -0.011579516343772411, -0.005968362558633089, 0.002442786702886224, -0.012822304852306843, -0.026984142139554024, 0.004878131672739983, -0.0035795290023088455, 0.012293933890759945, -0.0084837069734931, 0.011467888019979, -0.005056736059486866, 0.0007004639483056962, 0.006280920002609491, -0.00479255011305213, -0.002537670312449336, -0.028725534677505493, -0.011266957968473434, 0.010813005268573761, 0.003252087626606226, -0.003627900965511799, 0.07483522593975067, -0.005946036893874407, -0.005938595160841942, -0.0037655753549188375, -0.004520922899246216, -0.00903440359979868, -0.003650226630270481, 0.04441295191645622, 0.014660441316664219, -0.01847066730260849, -0.01917020045220852, -0.026567399501800537, 0.008677194826304913, 0.0006995337316766381, -0.01838136464357376, 0.013291141018271446, 0.013521838001906872, 0.011378586292266846, -0.00929486844688654, 0.009979519061744213, 0.02841297723352909, 0.019333921372890472, -0.010254867374897003, -0.005823246203362942, 0.002288368297740817, -0.0005655804998241365, -0.006251152604818344, 0.02278693951666355, -0.017786016687750816, 0.018098575994372368, 0.0022939497139304876, 0.005514409858733416, -0.02534693479537964, -0.005540456157177687, -0.004286504816263914, 0.02003345638513565, -0.013008350506424904, 0.012450212612748146, -0.0074604530818760395, 0.013953465968370438, -0.0017079041572287679, -0.024692052975296974, 0.01568741723895073, 0.015144160948693752, 0.003622319782152772, -0.0019962757360190153, -0.005164642818272114, 0.00020779036276508123, 0.018172994256019592, -0.01390137244015932, -0.0023199962452054024, 0.00458045769482851, 0.0052539450116455555, 0.02003345638513565, -0.00017383693193551153, -0.014980440959334373, 0.010939517058432102, -0.007255801931023598, -0.010545099154114723, 0.003216739045456052, -0.00875905528664589, -0.017265088856220245, -0.014682766981422901, -0.041852954775094986, 0.0036334823817014694, -0.013306024484336376, 0.00862510222941637, -0.027668792754411697, 0.002822320908308029, -0.0031032508704811335, -0.007512545678764582, 0.022563684731721878, 0.005436270032078028, -0.016133926808834076, -0.012718118727207184, 0.026537630707025528, -0.003594412701204419, 0.003629761515185237, 0.00015988346422091126, -0.01145300455391407, -0.004122783895581961, -0.0015767415752634406, -0.004751620348542929, -0.020286478102207184, 0.008878124877810478, -0.013186954893171787, 0.007910684682428837, -0.01455625519156456, 0.004212086088955402, -0.007441848516464233, -0.02061391994357109, 0.020360896363854408, -0.024394378066062927, -0.0012269747676327825, 0.006407431326806545, -0.006801849231123924, 0.0006097664590924978, -0.037596218287944794, 0.018693923950195312, -0.008215800859034061, -0.007028825581073761, -0.0012567421654239297, 0.019825084134936333, -0.006846500560641289, -0.011252074502408504, -0.003611156949773431, 0.007642778102308512, 0.005064177792519331, 0.009376728907227516, 0.0008088359027169645, -0.004621387924998999, 0.0004897666512988508, -0.018336715176701546, -0.02458786778151989, -0.05908827483654022, 0.01478695310652256, 0.0018437178805470467, -0.0134548619389534, -0.017503228038549423, -0.023010194301605225, 0.00235534505918622, -0.019497642293572426, -0.0040781330317258835, -0.007776731625199318, -0.012241840362548828, 0.0029358090832829475, -0.03348831832408905, -0.006001850590109825, -0.00037139473715797067, 0.002342321677133441, 0.007601847872138023, 0.019348805770277977, 0.00402976106852293, 0.015002766624093056, -0.005056736059486866, 0.0097116120159626, 0.019155317917466164, -0.014623232185840607, 0.005722781177610159, -0.017265088856220245, 0.003748831106349826, 0.0007837196462787688, 0.0030920880381017923, -0.0009162775822915137, -0.018634388223290443, -0.013387884944677353, -0.002333019394427538, -0.0065748728811740875, 0.0017609273781999946, -0.0034772036597132683, 0.046466901898384094, -0.03244645893573761, 0.002213949803262949, 0.00917579885572195, -0.004956271033734083, 0.007326499558985233, -0.010210216045379639, 0.008945101872086525, 0.006894872523844242, -0.010210216045379639, 0.003992551472038031, -0.006072548218071461, -0.02333763614296913, -0.00940649677067995, -0.0194232240319252, 0.0040855747647583485, 0.007501383312046528, 0.00875905528664589, 0.02394786849617958, 0.015925554558634758, -0.017041832208633423, 0.010470680892467499, -0.004930224735289812, -0.015925554558634758, 0.009875332936644554, -0.0006939523736946285, -0.00544371223077178, -0.008022312074899673, -0.02235531248152256, 0.02568926103413105, 0.016014857217669487, -0.008141381666064262, 0.024974843487143517, -0.0027981349267065525, -0.009346961975097656, -0.019959038123488426, 0.012405561283230782, -0.01806880719959736, -0.0024986006319522858, 0.01568741723895073, -0.019988805055618286, -0.00347534311003983, -0.0025953445583581924, -0.01850043423473835, -0.004599062260240316, 0.0056632463820278645, 0.009637193754315376, 0.010426029562950134, 0.00633673369884491, -0.012472538277506828, -0.001847438863478601, 0.01026230864226818, 0.008654870092868805, 0.008044637739658356, -0.006485570687800646, 0.0031106926035135984, -0.002333019394427538, -0.014764627441763878, -0.007672545500099659, 0.005279991310089827, -0.048610154539346695, -0.02348647266626358, 0.013908814638853073, 0.007962777279317379, -0.015434393659234047, 0.031047390773892403, 0.005019526928663254, 0.00898975320160389, 0.028948789462447166, 0.02449856512248516, 0.023292984813451767, 0.008781380951404572, 0.002333019394427538, -0.02055438421666622, 0.005373014602810144, 0.009376728907227516, 0.019229736179113388, 0.015642765909433365, 0.03128553181886673, -0.01902136392891407, 0.01884276047348976, 0.006303245667368174, 0.004971154499799013, 0.0034511571284383535, 0.028368325904011726, 0.024543216452002525, 0.014861371368169785, 0.012532073073089123, -0.0035888312850147486, -0.02632926031947136, -0.016565553843975067, -0.0030009252950549126, -0.0095553332939744, 0.0038809238467365503, 0.0023497636429965496, -0.01224928256124258, 0.01304556056857109, 0.007062314078211784, -0.01455625519156456, -2.745634992606938e-05, 0.017160901799798012, 0.001130230724811554, -0.0030195298604667187, 0.015285556204617023, 0.017532994970679283, 0.008528358303010464, 0.010210216045379639, 0.0005079061374999583, -0.000661394267808646, -0.007512545678764582, -0.01224928256124258, 0.00919068232178688, -0.004740457516163588, 0.0016976715996861458, 0.012822304852306843, 0.02516833133995533, -0.027772977948188782, -0.006898593623191118, -0.010552541352808475, 0.02513856440782547, -0.009346961975097656, -0.012256723828613758, 0.02192368544638157, 0.003296738723292947, -0.001111626042984426, 0.0006683709798380733, -0.0005846502026543021, -0.0048595271073281765, 0.002452088985592127, 0.016982298344373703, -0.01684834435582161, 0.005257665645331144, 0.008684637024998665, -0.02531716786324978, 0.0034418548457324505, -0.027162745594978333, -0.02580833062529564, 0.011981375515460968, -0.02963344007730484, 0.007281848695129156, 0.014318116009235382, -0.0060353390872478485, 0.020226944237947464, 0.008267893455922604, -0.011899515055119991, -0.010083704255521297, 0.0010027890093624592, 0.008803706616163254, 0.014273464679718018, -0.0006372082862071693, -0.0072260345332324505, 0.016520902514457703, -0.0010744169121608138, -0.009079054929316044, 0.014682766981422901, 0.01791997067630291, 0.02140275575220585, -0.00129581184592098, -0.0035441801883280277, 0.034053899347782135, 0.010582308284938335, 0.0188129935413599, -0.018128342926502228, 0.0005404642433859408, -0.027296699583530426, 0.006641849875450134, -0.0024892983492463827, 0.025436237454414368, -0.005666967481374741, 0.013812070712447166, -0.010798121802508831, 0.0051088291220366955, -0.0006795337540097535, 0.020956244319677353, 0.010693935677409172, 0.004561853129416704, 0.025332052260637283, 0.025466004386544228, 0.015910672023892403, 0.011631608940660954, -0.006329291965812445, -0.006868826225399971, -0.023069730028510094, -0.016461368650197983, -0.015985090285539627, 0.007233476731926203, 0.008855799213051796, 0.0015423230361193419, -0.007456731982529163, -0.015508811920881271, -0.01009114645421505, -0.0023311590775847435, -0.004186039790511131, -0.009823239408433437, -0.0024669726844877005, 0.012241840362548828, 0.007799057289958, -0.01252463087439537, 0.007374871522188187, 0.01632741466164589, 0.010299517773091793, 0.012874397449195385, 0.008922776207327843, -0.000491627084556967, -0.01797950640320778, -0.0010418588062748313, 0.0004962782841175795, -0.009443705901503563, -0.009659519419074059, 0.006537663750350475, -0.014385093003511429, 0.021030662581324577, -0.015270672738552094, -0.01316463015973568, 0.007307894993573427, -0.005138596054166555, -0.022117173299193382, 0.017756249755620956, -0.031196229159832, 0.007866033352911472, -0.013134862296283245, -0.03706040605902672, 0.0012437188997864723, -0.009890216402709484, -0.0068092914298176765, -0.013931140303611755, 0.009317194111645222, -0.0006413942901417613, -0.002334879944100976, 0.02559995837509632, 0.012331143021583557, -0.012130212970077991, 0.0007674405933357775, 0.014191605150699615, 0.005871618166565895, 0.006723709870129824, 0.00043534813448786736, -0.0072037093341350555, -0.015702299773693085, -0.020048338919878006, 0.0027702280785888433, 0.003947900608181953, 0.010693935677409172, -0.01010602992027998, 0.008111614733934402, 0.011408353224396706, -0.013685558922588825, 0.016714392229914665, 0.0024502286687493324, -0.01574695110321045, -0.006924639921635389, -0.012666026130318642, 0.0024297635536640882, 0.005134875420480967, -0.007620452903211117, -0.017592528834939003, 0.0010679052211344242, 0.027058560401201248, 0.01684834435582161, -0.008133940398693085, 0.025644609704613686, 0.0075981272384524345, -0.0011144167510792613, 0.0020520896650850773, 0.012688351795077324, -0.004904177971184254, 0.0354827344417572, -0.01690788008272648, -0.005745106842368841, 0.017681831493973732, -0.001204649219289422, 0.020360896363854408, 0.021268801763653755, -0.01858973689377308, 0.007564638741314411, 0.01658043824136257, 0.028829719871282578, 0.008513474836945534, -0.0028520883060991764, 0.024870656430721283, -0.0021358104422688484, -0.009942308999598026, 0.01745857670903206, 0.008699520491063595, -0.012993467040359974, -0.005477200262248516, 0.011899515055119991, -0.02844274416565895, -0.006779524032026529, 0.02673111855983734, -0.010515331290662289, -0.0068167331628501415, 0.008275335654616356, 0.0011339515913277864, 0.019854851067066193, 0.028919022530317307, -0.007527429610490799, 0.025376703590154648, -0.012115329504013062, -0.01994415372610092, -0.017994388937950134, 0.015330207534134388, -0.005856734700500965, 0.015404625795781612, -0.022161824628710747, 0.0008939520339481533, -0.005380456335842609, -0.02418600767850876, 0.004014877136796713, -0.021179500967264175, 0.021090198308229446, 0.007010221015661955, 0.018426015973091125, 0.013938581570982933, 0.0009060450247488916, 0.0025972051080316305, -0.008982311002910137, 0.02012275718152523, 0.0015060440637171268, 0.012606491334736347, -0.012986025772988796, 0.021239034831523895, 0.007754405960440636, -0.011066028848290443, -0.020807407796382904, 0.013425094075500965, -0.02725204825401306, 0.009912542067468166, 0.0035683661699295044, 0.0013116258196532726, -0.020941361784934998, -0.0005530223716050386, -0.0035069710575044155, -0.0008837194764055312, 0.03813203051686287, -0.0065413848496973515, -0.00424185348674655, 0.02412647195160389, 0.010559982620179653, -0.010820447467267513, -0.0038176681846380234, 0.01375997718423605, -0.012889280915260315, 0.007635336369276047, -0.009443705901503563, 0.016550671309232712, 0.005577665288001299, 0.04828271269798279, -0.022697636857628822, -0.011854864656925201, 0.013573931530117989, -0.006489291787147522, 0.0028186000417917967, -0.0054065026342868805, -0.004346039611846209, 0.007594406139105558, -0.010039053857326508, 0.009287427179515362, 0.017324622720479965, 0.002150694141164422, 0.01914043352007866, -0.012256723828613758, -0.007479057647287846, 0.012152538634836674, -0.01960182934999466, 0.017592528834939003, 0.009994402527809143, 0.017845552414655685, 0.03384552523493767, 0.006846500560641289, 0.009413938038051128, -0.021611128002405167, 0.0042158071883022785, -0.007761847693473101, 0.008409288711845875, -0.001968368887901306, -0.00032232506782747805, 0.0009074403787963092, -0.011237191036343575, 0.002372089074924588, -0.0053655728697776794, 0.003531157039105892, 0.014340441673994064, -0.005975804291665554, -0.0006069757509976625, 0.003918133210390806, -0.0024967400822788477, -0.006031617987900972, 0.015449277125298977, -0.03125576302409172, 0.012911606580018997, 0.011862305924296379, 0.024081820622086525, -0.01858973689377308, -0.012666026130318642, -0.007866033352911472, -0.01562788151204586, -0.00943626370280981, -0.0134548619389534, 0.008550683967769146, -0.029529254883527756, 0.009897658601403236, 0.024826006963849068, 0.0016967414412647486, 0.007761847693473101, -0.008305102586746216, -0.0030455763917416334, 0.010143239051103592, 0.015166486613452435, 0.011415795423090458, 0.0017804622184485197, -0.012212073430418968, -0.009771146811544895, 0.011013935320079327, -0.04021574929356575, -0.00035255757393315434, 0.004546969197690487, 0.011088353581726551, -0.005533014424145222, 0.0013758117565885186, -0.0041116210632026196, -0.006593477446585894, -0.03128553181886673, -0.011944166384637356, 0.0015032533556222916, 0.0015097649302333593, 0.01172835286706686, -0.009934867732226849, 0.010359052568674088, 0.006865105126053095, -0.0012493003159761429, -0.015642765909433365, -0.031791575253009796, -0.0059051066637039185, 0.0046251085586845875, 0.01841113343834877, 0.0052539450116455555, -0.011586957611143589, 0.005146038252860308, -0.018217645585536957, 0.006232548039406538, -0.006251152604818344, -0.0007325569749809802, 0.005696734879165888, 0.0010530215222388506, -0.010143239051103592, -0.0022939497139304876, -0.004546969197690487, -0.0037339474074542522, -0.04170411825180054, -0.009577658958733082, 0.009838123805820942, 0.008290219120681286, -0.0037116219755262136, 0.009428821504116058, 0.0033599946182221174, 0.008565567433834076, -0.025882748886942863, -0.00916091538965702, 0.009867890737950802, 0.0027274375315755606, -0.0005683711497113109, 0.007579522673040628, -0.009026962332427502, 0.012465096078813076, 1.0348820069339126e-05, 0.022652985528111458, -0.016074392944574356, 0.02052461728453636, 0.004673480987548828, -0.0023646473418921232, -0.00998696032911539, 0.01065672654658556, -0.007947893813252449, 0.002645577071234584, 0.01009114645421505, -0.009890216402709484, 0.0023590659257024527, 0.02299531176686287, -0.009153473190963268, -0.011735795065760612, -0.008007428608834743, 0.019676247611641884, -0.022563684731721878, 0.009622310288250446, -0.014727418310940266, -0.012159979902207851, 0.004524643998593092, 0.0020613919477909803, -0.024171123281121254, 0.012740444391965866, -0.004926503635942936, 0.005239061079919338, 0.004297667648643255, 0.01335067581385374, -0.01611904427409172, 0.00369673827663064, -0.013916256837546825, 0.005629758350551128, 0.015851136296987534, -0.012457653880119324, 0.012740444391965866, -0.008126498199999332, 0.013358118012547493, -0.018574854359030724, -0.003417668864130974, -0.0022325546015053988, -0.011460446752607822, 0.01602974161505699, -0.0006655803299508989, -0.006827895995229483, -0.025852981954813004, -0.013663233257830143, 0.014965557493269444, -0.01026230864226818, -0.006150687579065561, 0.018306946381926537, -0.0013013932621106505, 0.006206501740962267, 0.008119056932628155, 0.013462303206324577, 0.0244687981903553, -0.02241484634578228, 0.0026716236025094986, 0.009064171463251114, -0.0066865007393062115, -0.023903217166662216, -0.01855996996164322, -0.014184162952005863, -0.04459155350923538, -0.001102323760278523, 0.006932081654667854, -0.011125563643872738, -0.005599990952759981, -1.8197644749307074e-05, -0.0001604648568900302, -0.0037432496901601553, -0.008863241411745548, -0.01791997067630291, 0.02513856440782547, -0.01120742317289114, -0.03122599609196186, -0.01850043423473835, 0.0031460414174944162, 0.01605950854718685, -4.81394563394133e-05, -0.022176707163453102, 0.007739522494375706, 0.007866033352911472, -0.011445562355220318, -0.028174838051199913, -0.009272542782127857, 0.016506019979715347, 0.0024390658363699913, 0.0009860448772087693, -0.008930218406021595, 0.010507890023291111, -0.0024483681190758944, 0.002920925384387374, -0.005674409214407206, 0.023069730028510094, 0.012420444749295712, 0.0013655791990458965, 0.017324622720479965, -0.0005274409777484834, -0.01948275975883007, 0.016595322638750076, -0.006161850411444902, -0.0032223202288150787, 0.0034325525630265474, 0.0020558105316013098, -0.004751620348542929, 0.008803706616163254, 0.013879046775400639, 0.0022567405831068754, -0.004081853665411472, 0.0065413848496973515, 0.013648349791765213, -0.013216722756624222, 0.01632741466164589, 0.002472554100677371, 0.0028930185362696648, -0.029380416497588158, 0.006407431326806545, -0.007732080295681953, 0.0011265097418799996, 0.011609283275902271, -0.02073298953473568, 0.019929269328713417, 0.0023925541900098324, -0.012889280915260315, -0.0008432544418610632, 0.010939517058432102, -0.001305114128626883, 0.021640894934535027, -0.014660441316664219, -0.0024465075694024563, -0.002517205197364092, 0.007177662570029497, 0.011906957253813744, -0.00713301170617342, -0.017012065276503563, 0.01951252669095993, 0.006563710048794746, 0.007806499022990465, 0.005514409858733416, 0.005964641459286213, 0.008267893455922604, 0.01800927333533764, 0.016982298344373703, 0.02073298953473568, -0.0024576704017817974, -0.00968184508383274, -0.0008874404011294246, -0.013112536631524563, 0.016773926094174385, 0.01227904949337244, -0.00560371158644557, -0.018708806484937668, 0.031970180571079254, -0.00039883656427264214, -0.014087419025599957, 0.01267346739768982, 0.002902320818975568, 0.010187890380620956, -0.016074392944574356, -0.0064297569915652275, 0.0032762738410383463, 0.001369300065562129, 0.01425113994628191, -0.0030027858447283506, 0.029380416497588158, -0.019408339634537697, -0.00782882422208786, -0.008491149172186852, -0.0240074023604393, 0.02360554225742817, 0.01794973760843277, 0.015791602432727814, -0.006087432149797678, 0.014630673453211784, 0.004513481166213751, -0.006868826225399971, 0.0006386036402545869, 3.316855145385489e-05, 0.008922776207327843, 0.0004809294478036463, 0.004993480164557695, -0.009213007986545563, -0.011445562355220318, 0.020569268614053726, 7.965103577589616e-05, -0.006277198903262615, -0.00888556707650423, -0.007036267779767513, 0.023382287472486496, -0.028695767745375633, -0.0015209277626127005, -0.014437185600399971, 0.006303245667368174, 0.0047478992491960526, 0.0030195298604667187, -0.030839020386338234, 0.007501383312046528, 0.0025302283465862274, 0.006262315437197685, 0.004312551114708185, -0.016982298344373703, -0.02250414900481701, 0.007300453260540962, -0.023828798905014992, 0.002526507480069995, 0.007560918107628822, 0.00018162760534323752, -0.028353441506624222, 0.01623811386525631, 0.011750678531825542, -0.008312544785439968, -0.00017337180906906724, 0.019706014543771744, 0.002085577929392457, -0.00901952013373375, -0.017666947096586227, 0.017384158447384834, 0.004219527821987867, -0.022340428084135056, -0.010969284921884537, -0.002922785934060812, 0.011676260270178318, -0.010835330933332443, -0.005555339623242617, -0.016982298344373703, 0.015010207891464233, -0.013544163666665554, -0.006894872523844242, 0.0013413932174444199, 0.004621387924998999, 0.015069742687046528, -0.02192368544638157, -0.013492071069777012, -0.007285569328814745, 0.011080912314355373, -0.01000184379518032, -0.0051088291220366955, -0.009376728907227516, 0.010135797783732414, -0.0123832356184721, -0.008692079223692417, 0.010478122159838676, -0.004260458052158356, 0.014079976826906204, -0.0019534851890057325, 0.017146019265055656, -0.005879060365259647, 0.019229736179113388, -0.016892995685338974, 0.002076275646686554, -0.002526507480069995, -0.014593464322388172, -0.01509206835180521, -0.005298595875501633, -0.004651155322790146, 0.026448329910635948, 0.017056716606020927, 0.022012988105416298, 0.005700455978512764, 0.0027553443796932697, -0.00591626949608326, -0.017726482823491096, 0.0004362783511169255, -0.02131345309317112, -0.006504175253212452, 0.030541345477104187, 0.005886502098292112, -0.013938581570982933, -0.020986013114452362, 0.003053018357604742, -0.006239989772439003, -0.00808928906917572, 0.007423243951052427, 0.007642778102308512, -0.010053937323391438, 0.025882748886942863, -0.0018260435899719596, 0.009949751198291779, -0.0019720897544175386, 0.017592528834939003, 0.00782882422208786, -0.0106269596144557, 0.004621387924998999, 0.008290219120681286, 0.00443534180521965, -0.01605950854718685, -0.017071601003408432, -0.007426964584738016, 0.0014018581714481115, -0.04229946434497833, 0.0018530202796682715, 0.020018571987748146, -0.00505301496013999, -0.004197202622890472, -0.0028930185362696648, 0.02128368616104126, 0.002292089397087693, 0.012866956181824207, -0.006902314256876707, -0.0027460420969873667, -0.01658043824136257, 0.00011226726201130077, 0.0012920908629894257, -0.0030474369414150715, -0.010693935677409172, -0.005774874240159988, 0.014035326428711414, -0.007248360197991133, 0.0011413934407755733, -0.001460462692193687, 0.0005693014245480299, -0.00490789907053113, 0.0018818574026226997, 0.00038930168375372887, 0.012390677817165852, 0.012174864299595356, -0.00037627844722010195, -0.013804628513753414, -0.014764627441763878, 0.010098588652908802, -0.0024111587554216385, 0.002470693551003933, 0.0162083450704813, -0.002033485099673271, -0.017562761902809143, -0.008513474836945534, -0.014519046060740948, 0.00038092961767688394, -0.004238132853060961, -0.005946036893874407, -0.02238507941365242, -0.009525565430521965, 0.0019460433395579457, -0.00726324412971735, 0.02559995837509632, 0.00218604295514524, -0.006463245488703251, -0.0015581370098516345, -0.001305114128626883, -0.007341383490711451, 0.013774861581623554, -0.011691143736243248, -0.019765548408031464, 0.016684623435139656, 0.007925568148493767, 0.003992551472038031, -0.03027343936264515, 0.005417665466666222, -0.0028799953870475292, 0.01739904098212719, 0.0053916191682219505, 0.0044874344021081924, 0.012837188318371773, -0.003382320050150156, 0.02027159556746483, -0.00222511263564229, 0.009466031566262245, 0.011475330218672752, 0.028457628563046455, -0.03000553324818611, -0.00402976106852293, -0.015970205888152122, 0.009949751198291779, -0.011929282918572426, 0.020137641578912735, 0.009875332936644554, 0.014883697032928467, -0.013529280200600624, 0.004714410752058029, -0.011408353224396706, 0.017815785482525826, 0.016476253047585487, 0.007300453260540962, 0.0009218589402735233, -0.007426964584738016, 0.020450199022889137, -0.006228826940059662, -0.019408339634537697, -0.019854851067066193, 0.025614842772483826, 0.014042767696082592, 0.0017153460066765547, -0.0026437165215611458, 0.01335067581385374, 0.012145096436142921, 0.004680922720581293, -0.008245567791163921, -0.007233476731926203, -0.007028825581073761, -0.0009776728693395853, 0.01623811386525631, -0.014146953821182251, -0.004684643354266882, -0.002344182226806879, -0.01061207614839077, -0.04048365354537964, -0.005008364096283913, -0.011482772417366505, 0.02388833276927471, 0.016922762617468834, 0.01562788151204586, -0.008290219120681286, 0.004446504171937704, 0.010292076505720615, 0.014206488616764545, -0.002773948945105076, 0.00079999869922176, -0.008677194826304913, 0.007103244308382273, -0.015985090285539627, -0.015211137942969799, 0.002290228847414255, -0.021075313910841942, 0.010738587006926537, 0.00039046446909196675, 0.025242749601602554, -0.00726324412971735, -0.013008350506424904, 0.00984556507319212, -0.01991438679397106, 0.035304129123687744, -0.00015046486805658787, 0.010024169459939003, 0.01250974740833044, 0.009905099868774414, -0.017056716606020927, 0.012100445106625557, -0.007222313899546862, -0.011706027202308178, 0.016312532126903534, 0.0026269725058227777, 0.0044799926690757275, 0.016282763332128525, -0.01209300383925438, -0.002398135606199503, 0.0023106939624994993, 0.024974843487143517, 0.013186954893171787, 0.002943251049146056, -0.0103962616994977, 0.008528358303010464, 0.010567424818873405, 0.037536684423685074, -0.004584178794175386, 0.012182305566966534, -0.002249298617243767, -0.026195306330919266, 0.013893931172788143, 0.013893931172788143, -0.0005311619024723768, 0.01226416602730751, 0.0051237125881016254, 0.009317194111645222, -0.015114394016563892, 0.017175786197185516, -0.006091152783483267, 0.024840889498591423, -0.027936698868870735, 3.084297350142151e-05, 0.015300440602004528, 0.005566502455621958, -0.007583243306726217, -0.005172084551304579, -0.0011553469812497497, -0.01661020517349243, 0.007679987698793411, 0.014258581213653088, -0.011028819717466831, -0.026016701012849808, -0.015508811920881271, -0.01319439709186554, -0.022176707163453102, -0.016133926808834076, -0.014675324782729149, -0.023292984813451767, -0.0002448833256494254, 0.01693764701485634, 0.011073470115661621, 0.012011143378913403, 0.004066970199346542, 0.0011627888306975365, 0.02003345638513565, -0.0009125566575676203, -0.010046495124697685, 0.017681831493973732, -0.004323713947087526, 0.004446504171937704, 0.022861357778310776, 0.003944179508835077, 0.005979524925351143, -0.0163571834564209, 4.952753442921676e-06, -0.013983232900500298, 0.00874417182058096, -0.008260451257228851, -0.012226956896483898, 0.007665103767067194, -0.009808355942368507, -0.004342318512499332, -0.0043609230779111385, -0.009250217117369175, 0.021298570558428764, 0.031732041388750076, -5.668595258612186e-05, -0.0002231391699751839, 0.020078107714653015, -0.0022567405831068754, -0.0034976687747985125, 0.018455784767866135, 0.01605950854718685, -0.014340441673994064, 0.01562788151204586, -0.012621374800801277, 0.008476265706121922, 0.010909750126302242, -0.03116646036505699, -0.0032762738410383463, 0.012405561283230782, 0.015300440602004528, 0.014459511265158653, 0.010865098796784878, -0.008833473548293114, 0.012204631231725216, 0.004260458052158356, 0.015940438956022263, 0.006850221194326878, 0.005975804291665554, -0.008945101872086525, 0.009644635021686554, 0.0010306959738954902, 0.0021116244606673717, -0.003320924937725067, 0.00505301496013999, -0.008893008343875408, -0.0039590634405612946, -0.012911606580018997, 0.022161824628710747, -0.0068167331628501415, -0.01684834435582161, -0.018455784767866135, 0.0039813886396586895, -0.003118134569376707, 0.027013909071683884, 7.744173490209505e-05, -0.004885573405772448, -0.016803693026304245, -0.004889294505119324, 0.00862510222941637, 0.016461368650197983, 0.0028744139708578587, 0.007568359840661287, 0.0008265103097073734, 0.008706962689757347, 0.0022939497139304876, -0.015404625795781612, 0.0048558060079813, -0.01027719210833311, 0.013030676171183586, 0.006731151603162289, 0.005599990952759981, 0.01887252740561962, 0.006779524032026529, -0.015508811920881271, -0.01364090759307146, -0.02226600982248783, 0.000103371923614759, -0.0018651132704690099, 0.0024111587554216385, 0.006310687400400639, -0.01348462887108326, 0.007542313076555729, -0.00030581344617530704, -0.0038660401478409767, 0.014839045703411102, -0.008811148814857006, -0.026016701012849808, -0.002262321999296546, -0.008654870092868805, 0.029737625271081924, -0.017711598426103592, 0.01699718087911606, 0.029916230589151382, -0.013425094075500965, -0.0038734821137040854, 0.002857669722288847, 0.023590659722685814, 0.0029395301826298237, -0.004788829479366541, -0.009577658958733082, -0.004621387924998999, -0.0027051118668168783, 0.0007251151255331933, -0.007918126881122589, 0.007575801573693752, -0.011445562355220318, -0.01887252740561962, -0.01265858393162489, -0.012852071784436703, 0.034143202006816864, -0.01580648496747017, -0.011780446395277977, 0.015895787626504898, 0.008878124877810478, 0.01426602341234684, 0.027013909071683884, 0.008171149529516697, -0.01861950382590294, 0.010939517058432102, 0.008930218406021595, 0.022563684731721878, -0.02568926103413105, 0.010753470472991467, 0.025302283465862274, 0.012636258266866207, 0.0068092914298176765, -0.00174697395414114, 3.851738074445166e-05, -0.008662311360239983, 0.012465096078813076, -0.005934874061495066, 0.007441848516464233, -0.013328350149095058, -0.0017590669449418783, -0.018232528120279312, 0.006087432149797678, -0.018664155155420303, -0.0013013932621106505, -0.017026949673891068, -0.012085561640560627, 0.002747902413830161, -0.02137298882007599, -0.018634388223290443, -0.015568346716463566, 0.007836266420781612, -0.014206488616764545, 0.004409295041114092, -0.006109757348895073, 0.017160901799798012, 0.0022306940518319607, -0.021030662581324577, -0.01571718417108059, 0.005454875063151121, 0.0066716172732412815, -0.02810041978955269, -0.001654881052672863, -0.008826032280921936, 0.01789020374417305, 0.014042767696082592, -0.010083704255521297, 0.005008364096283913, -0.018366482108831406, 0.020971128717064857, -0.019467875361442566, -0.010493006557226181, 0.024781355634331703, 0.006243710871785879, 0.008014870807528496, 0.005782315973192453, -0.013573931530117989, 0.004413016140460968, 0.018857643008232117, 0.0015330207534134388, 0.006645570509135723, 0.004115342162549496, -0.01265858393162489, -0.004967433866113424, -0.02557019144296646, 0.0029004605021327734, 0.02357577532529831, 0.04825294390320778, 0.008386963047087193, 0.021447407081723213, -0.007333941757678986, -0.01672927476465702, -0.035244595259428024, 0.002013019984588027, 0.004394411575049162, -0.018917178735136986, 0.020197177305817604, 0.0065413848496973515, -0.017532994970679283, 0.029901346191763878, 0.015985090285539627, -0.008721846155822277, 0.013082769699394703, 0.014318116009235382, -0.012063235975801945, -0.005704176612198353, 0.004889294505119324, 0.00035651103826239705, 0.0013404629426077008, -0.021209267899394035, 0.011058586649596691, -0.00599440885707736, 0.00417487695813179, 0.0008418590878136456, -0.007970219478011131, 0.00013593000767286867, -0.0015172067796811461, 0.01399067509919405, -0.004818596877157688, -0.023694844916462898, -0.0007651150226593018, 0.009867890737950802, 0.018128342926502228, 0.015925554558634758, 0.011073470115661621, -0.006798128597438335, -0.007542313076555729, -0.011214865371584892, -0.003944179508835077, -0.0014037186047062278, -0.011274400167167187, -0.01565764844417572, 0.007456731982529163, -0.015233463607728481, 0.014117185957729816, -0.0169674139469862, 0.006906035356223583, 0.013722768053412437, 0.010753470472991467, -0.02116461656987667, -0.018202761188149452, 0.0022827868815511465, -0.006262315437197685, 0.008446497842669487, -0.014920906163752079, -0.010158123448491096, 0.0037637148052453995, 4.488364720600657e-05, -0.0021469732746481895, 0.024260425940155983, -0.010321843437850475, -0.012956257909536362, -0.009994402527809143, -0.005265107844024897, 0.01035161130130291, 0.023813914507627487, 0.0028725534211844206, 0.020256711170077324, -0.008788823150098324, -0.010522773489356041, -0.012666026130318642, -0.008238126523792744, 0.004316272214055061, -0.041942257434129715, 0.007337662391364574, -0.009012077935039997, -0.015159045346081257, 0.0006786035373806953, -0.007415801752358675, 0.02522786520421505, 0.005466037429869175, -0.018113458529114723, 0.0035069710575044155, 0.0027813909109681845, 0.002565577160567045, 0.012405561283230782, 0.021521825343370438, -0.011400911957025528, -0.006879988592118025, 0.019185084849596024, 0.007836266420781612, 0.007940452545881271, -0.007843708619475365, -0.0030288323760032654, 0.004513481166213751, 0.004491155501455069, -0.002712553832679987, -0.005789758171886206, 0.015672532841563225, -0.00356650585308671, 0.02192368544638157, 0.0032613901421427727, -0.006273478269577026, -0.014586023055016994, -0.023159032687544823, -0.00019011597032658756, 0.013186954893171787, 0.007464173715561628, 0.01332090888172388, -0.010939517058432102, 0.03259529545903206, -0.0016995321493595839, 0.0026139491237699986, -0.0034027851652354, -0.009123706258833408, 0.016952531412243843, 0.009399054571986198, -0.007404638919979334, 0.008312544785439968, 0.02394786849617958, -0.0017386018298566341, -0.02421577461063862, -0.014623232185840607, -0.00898975320160389, 0.002215810352936387, -0.017622297629714012, 0.017101367935538292, 0.006199059542268515, 0.0016372066456824541, 0.007851149886846542, 0.02171531319618225, -0.015069742687046528, -0.0001530230074422434, 0.007933010347187519, 0.0024483681190758944, 0.0046102250926196575, -0.011936725117266178, -0.028785068541765213, 0.028427859768271446, 0.012130212970077991, -0.01197393424808979, -0.015493928454816341, 0.0012353467755019665, -0.005380456335842609, 0.00874417182058096, 0.006664175074547529, 0.017607413232326508, 0.009599984623491764, 0.005358130671083927, -0.00997207686305046, 0.012070678174495697, 0.0059311529621481895, 0.019825084134936333, -0.024022286757826805, 0.011735795065760612, -0.015523695386946201, -0.007769289892166853, -0.011921840719878674, 0.014221372082829475, 0.004186039790511131, -0.0059051066637039185, 0.023010194301605225, 0.0005111619830131531, -0.02972274273633957, 0.02673111855983734, -0.017205553129315376, -0.0169674139469862, -0.00039976678090170026, -0.006258594337850809, -0.013008350506424904, 0.015479044988751411, 0.0019497643224895, 0.02284647524356842, 0.01250974740833044, 0.0017813924932852387, -0.022742288187146187, 0.004390690475702286, 0.002132089575752616, 0.0010893004946410656, 0.013767419382929802, 0.010426029562950134, 0.005417665466666222, 0.03146413341164589, 0.0013283699518069625, 0.020226944237947464, 0.004089295864105225, -0.00021337174985092133, -0.006902314256876707, 0.013849279843270779, -0.02177484892308712, 0.0010186029830947518, -0.03024367243051529, 0.008007428608834743, 0.01171346940100193, -0.022861357778310776, -0.03697110339999199, -0.005023247562348843, 0.000854882353451103, 0.008439055643975735, -0.003583249868825078, 0.029678091406822205], "2b3514d3-df70-4353-a430-c9f44780a089": [-0.02835899405181408, -0.00929921306669712, 0.0017192730447277427, 0.004343236796557903, -0.027176769450306892, 0.0037124764639884233, -0.008412543684244156, 0.000789351761341095, -0.007259152829647064, 0.06453221291303635, 0.032871633768081665, 0.001134467893280089, 0.020616859197616577, 0.013328871689736843, -0.019405798986554146, -0.018021730706095695, -0.0032979766838252544, 0.03566860780119896, 0.017127852886915207, -0.028503168374300003, 0.04019566625356674, -0.04697183519601822, -0.06130271777510643, 0.0009087457437999547, -0.011288811452686787, -0.0315740704536438, -0.011894341558218002, 0.020141085609793663, -0.0099696209654212, -0.007424952927976847, -0.01384068839251995, -0.015743782743811607, 0.019506720826029778, 0.0204871017485857, -0.027493951842188835, -0.031429897993803024, 0.023284075781702995, -0.006386901251971722, -0.00903249066323042, -0.004959580022841692, -0.03382318094372749, 0.021352145820856094, 0.013415375724434853, -0.04175274446606636, -0.052133262157440186, 0.014878740534186363, -0.06879975646734238, -0.02547551691532135, 0.011159054934978485, -0.01384068839251995, 0.04916327819228172, 0.017127852886915207, -0.02941146306693554, 0.0232696570456028, 0.04284846410155296, -0.04348282888531685, 0.02734977751970291, 0.028171569108963013, 0.028719428926706314, -0.0293537937104702, 0.00035187427420169115, -0.002351835835725069, 0.002063488122075796, -0.03382318094372749, 0.007071726955473423, -0.0299016535282135, -0.005431749392300844, -0.02259203977882862, -0.037456363439559937, 0.009054116904735565, 0.011447402648627758, 0.01453272346407175, -0.019521137699484825, -0.022116266191005707, 0.02553318627178669, -0.007269965950399637, 0.03117038495838642, 0.033650174736976624, 0.00622831005603075, -0.03535142540931702, -0.01392719242721796, -0.04163740575313568, 0.00678337924182415, 0.01683950424194336, 0.04662581905722618, 0.026239639148116112, -0.0020472684409469366, -0.04968230426311493, -0.04181041195988655, 0.004159415140748024, -0.018209155648946762, -0.005698470864444971, -0.02586478739976883, -0.0021121466998010874, 0.016205139458179474, -0.00932804774492979, 0.015195922926068306, -0.0022382987663149834, 0.015066166408360004, -0.043107978999614716, 0.013912775553762913, -0.012737758457660675, 0.010611194185912609, 2.651165414135903e-05, -0.02364450879395008, 0.05285412818193436, 0.004447762854397297, 0.02021317183971405, -0.002591524738818407, 0.04025333747267723, -0.017344113439321518, -0.06949178874492645, 0.035697441548109055, 0.009147830307483673, -0.044838063418865204, -0.0354379303753376, -0.020198754966259003, 0.008253952488303185, -0.002245507435873151, 0.0032385047525167465, 0.0034007003996521235, 0.00947222113609314, -0.006015653256326914, 0.03163174167275429, 0.004498223774135113, 0.010567942634224892, -0.006177849136292934, 0.03298697620630264, 0.022995727136731148, 0.025331344455480576, -0.015570774674415588, 0.0029880027286708355, 0.05397868528962135, 0.0011678080772981048, 0.018901189789175987, 0.016363730654120445, 0.022332528606057167, 0.08713866770267487, -0.02951238490641117, 0.046596985310316086, -0.054526545107364655, 0.00018663753871805966, -0.02288038842380047, 0.026657743379473686, -0.004534267354756594, 0.016825087368488312, -0.027277691289782524, 0.039561301469802856, -0.012261984869837761, -0.005543484352529049, -0.034918904304504395, -0.02220277115702629, -0.030276507139205933, 0.0011209516087546945, 0.04008032754063606, -0.02391844056546688, -0.011086968705058098, 0.02148190140724182, -0.049538131803274155, 0.02081870287656784, 0.022620875388383865, -0.06020699441432953, 0.007879100739955902, 0.00026559524121694267, 0.04025333747267723, 0.0359857901930809, 0.026715412735939026, -0.00418104138225317, -0.020357346162199974, 0.03249678388237953, 0.018958859145641327, -0.04022450000047684, 0.0005122676957398653, -0.048874933272600174, 0.01257195882499218, -0.00861438736319542, 0.055679935961961746, 0.004217084962874651, 0.01982390321791172, -0.004718089010566473, -0.05864991620182991, -0.005132588557898998, -0.003231296082958579, -0.00813861284404993, 0.006851861719042063, 0.04232943803071976, -0.019189538434147835, 0.0037016633432358503, 0.009731734171509743, 0.010488647036254406, 0.002467174781486392, -0.013386541046202183, 0.044838063418865204, -0.007352865766733885, -0.011952010914683342, 0.00451624533161521, 0.0027987747453153133, -0.004285567440092564, 0.01849750429391861, -0.001419211272150278, -0.023457083851099014, -0.04258895292878151, -0.02198651060461998, 0.015556356869637966, -0.02978631481528282, -0.014280418865382671, 0.023788683116436005, -0.06470522284507751, 0.014165080152451992, -0.038177233189344406, 0.03056485392153263, -0.030103497207164764, -0.007021266035735607, 0.007936770096421242, -0.0038422327488660812, 0.020169919356703758, 0.005676845088601112, 0.008715308271348476, 0.008599969558417797, -0.0177189651876688, 0.018021730706095695, 0.014748984016478062, -0.01058235950767994, -0.03422686830163002, -0.04512641206383705, -0.014748984016478062, -0.023457083851099014, 0.01495082676410675, -0.016983678564429283, -0.014712939970195293, 0.0006902322638779879, 0.01409299299120903, 0.0023842749651521444, 0.013429793529212475, -0.0005055095534771681, 0.01794964261353016, 0.057900212705135345, 0.012189897708594799, -0.008607177995145321, -0.016205139458179474, -0.00535966269671917, 0.016421400010585785, -0.0010722929146140814, -0.039013441652059555, 0.031199218705296516, 0.00894598662853241, -0.016421400010585785, 0.057352352887392044, -0.01933371275663376, 0.007111374754458666, -0.01627722568809986, -0.016017712652683258, 0.011440194211900234, -0.018338913097977638, -0.0050424798391759396, 0.044722724705934525, 0.023067815229296684, 0.02126564085483551, -0.029425879940390587, -0.019088616594672203, 0.007655630819499493, 0.02303897961974144, -5.3811760153621435e-05, 0.04463621973991394, 0.04204109311103821, -0.006628392264246941, 0.0004275655373930931, 0.025461100041866302, -0.0061201793141663074, 0.023630091920495033, -0.02165491133928299, -0.005226301494985819, -0.006249935831874609, 0.013667680323123932, -0.038465581834316254, 0.01672416552901268, -0.015556356869637966, 0.005132588557898998, 0.005366871133446693, -0.003791772061958909, 0.0015462643932551146, -0.025778282433748245, 0.05377684161067009, 0.03803305700421333, 0.033534836024045944, 0.008953195065259933, -0.027320941910147667, -0.049538131803274155, -0.03460172191262245, 0.005395705811679363, -0.00182740343734622, -0.0007591653848066926, -0.004444158636033535, 0.03549559786915779, 0.03056485392153263, -0.0025212399195879698, -0.015412183478474617, -0.0076700481586158276, 0.011368107050657272, -0.0048406366258859634, -0.011980845592916012, 0.004624376073479652, -0.005467792972922325, -0.031112713739275932, 0.03180474787950516, -0.005028062500059605, 0.0509510338306427, 0.026181969791650772, -0.018742598593235016, 0.022404614835977554, 0.04296380281448364, -0.012535915710031986, -0.02707584761083126, 0.016738582402467728, -0.006149014458060265, 0.022159518674016, -0.01750270463526249, -0.02342824824154377, 0.0033718657214194536, -0.005381288472563028, 0.015181505121290684, -0.007792596239596605, -0.010459812358021736, -0.0027375007048249245, 0.026902837678790092, -0.03687966987490654, 0.04313681274652481, -0.02830132469534874, -0.02387518808245659, -0.018800267949700356, -0.025749446824193, 0.0014201123267412186, -0.022029763087630272, 0.021179137751460075, -0.03523608669638634, -0.028762681409716606, -0.052133262157440186, -0.05054734647274017, -0.00359173072502017, -0.003126770257949829, -0.03742752969264984, -0.025778282433748245, 0.011036507785320282, -0.01254312414675951, -0.022231606766581535, -0.023067815229296684, 0.013883940875530243, 0.018194738775491714, 0.00021828820172231644, 0.012254776433110237, 0.0009551516850478947, -0.012968436814844608, 0.011223933659493923, -0.03272746130824089, 0.017243191599845886, 0.014323671348392963, -0.002827609423547983, 0.007533083204180002, -0.020847536623477936, -0.009522682055830956, -0.012269193306565285, -0.0326697938144207, 0.0017012512544170022, -0.024682560935616493, -0.0010776994749903679, -0.01087791658937931, 0.005860666744410992, -0.029584471136331558, -0.015268009155988693, 0.017589207738637924, -0.009868699125945568, -0.023356162011623383, 0.005961588118225336, -0.012564750388264656, 0.03445754945278168, -0.04994181916117668, 0.029209619387984276, -0.005709283985197544, -0.010632820427417755, 0.029151950031518936, -0.020631276071071625, -0.005821018945425749, -0.0420987606048584, 0.014741774648427963, 0.05190258100628853, 0.006484218407422304, 0.01816590316593647, -0.036360643804073334, -0.04094536975026131, 0.009933577850461006, -0.028604090213775635, -0.00824674405157566, 0.004638793412595987, -0.03356366977095604, 0.009126204065978527, 0.00721229612827301, -0.020688945427536964, -0.016104217618703842, 0.029584471136331558, -0.020501520484685898, -0.012752176262438297, 0.0027230833657085896, -0.007792596239596605, -0.011995263397693634, 0.005183049477636814, -0.07410535216331482, -0.0029483549296855927, 0.015974462032318115, 0.009111786261200905, -0.03555326908826828, 0.03180474787950516, -0.012398949824273586, -0.0016787241911515594, 0.010589568875730038, 0.03226610645651817, 0.007511456962674856, -0.00839091744273901, 0.021856753155589104, -0.051585398614406586, -0.009609186090528965, 0.009118995629251003, 0.011786211282014847, 0.010070542804896832, 0.018093816936016083, -0.025994542986154556, 0.001951753394678235, -0.013718141242861748, -0.029555637389421463, 0.0332464873790741, 0.006585140246897936, 0.00883064791560173, 0.009832656010985374, 0.0069383662194013596, 0.018915608525276184, -0.003492611227557063, -0.002757324604317546, 0.010149838402867317, 0.021626075729727745, -0.021179137751460075, -0.028805933892726898, 0.026326142251491547, 0.01688275672495365, 0.007327635306864977, 0.001328201498836279, -0.021626075729727745, -0.02420678734779358, -0.016680913046002388, 0.03872509300708771, 0.03356366977095604, -0.006181453354656696, -0.030161166563630104, 0.02559085562825203, -0.05553576350212097, -0.015513105317950249, 0.017084600403904915, -0.006545492447912693, 0.010394933633506298, -0.014821070246398449, 0.008535090833902359, -0.048154063522815704, 0.013451418839395046, 0.024120284244418144, 0.026008959859609604, -0.005864270962774754, 0.042733125388622284, -0.03217960149049759, 0.009010865353047848, 0.040512848645448685, 0.01905978098511696, 0.008347664959728718, 0.05798671767115593, 0.017041347920894623, 0.017848720774054527, 0.050864528864622116, 0.013408167287707329, 0.006711292080581188, -0.027753464877605438, -0.016695329919457436, -0.00014270957035478204, 0.014431801624596119, 0.017848720774054527, 0.015268009155988693, -0.008412543684244156, 0.03171824291348457, -0.027551621198654175, -0.023471500724554062, 0.028315741568803787, -0.015195922926068306, -0.037744712084531784, -0.000328446039929986, -0.00026919960509985685, 0.025994542986154556, 0.0293537937104702, -0.019578807055950165, 0.02210184931755066, -0.029281707480549812, 0.026008959859609604, -0.01309819333255291, -0.0007438468746840954, -0.027666959911584854, 0.023630091920495033, -0.026095464825630188, 0.0036331808660179377, -0.0021553989499807358, -0.012427784502506256, 0.059226613491773605, -0.03333299234509468, -0.009991247206926346, -0.008376499637961388, 0.015541939996182919, -0.005035271402448416, 0.00811698753386736, -0.02342824824154377, 0.008599969558417797, 0.024394214153289795, 0.007518665865063667, -0.0064013185910880566, -0.011058133095502853, 0.01423716638237238, 0.019477885216474533, 0.0210493803024292, -0.02276504971086979, -0.010250760242342949, 0.020688945427536964, 0.015311261638998985, -0.017863139510154724, -0.015152670443058014, -0.029339376837015152, -0.006448174826800823, 0.005053292959928513, -0.020285259932279587, 0.005648009944707155, -0.0002016181097133085, -0.010286803357303143, -0.009652438573539257, -0.009436178021132946, -0.019362546503543854, -0.02432212606072426, 0.007075331173837185, -0.0048478455282747746, -0.02596570923924446, 0.061821743845939636, -0.0063688792288303375, 0.00445857597514987, -0.014453427866101265, -0.012370115146040916, 0.01470573153346777, 0.0014120024861767888, -0.00039400006062351167, 0.0021103445906192064, -0.029483549296855927, -0.018540754914283752, -0.01606096513569355, -0.005348849575966597, -0.02042943239212036, -0.02674424648284912, 0.005143401678651571, -0.0020598836708813906, 0.02746511623263359, -0.05265228450298309, -0.028705012053251266, 0.000395802257116884, 0.015066166408360004, 0.022274857386946678, -0.01861284300684929, -0.003144791815429926, -0.02142423205077648, 0.010805829428136349, -0.002814994193613529, 0.009155038744211197, 0.002351835835725069, 0.027393030002713203, 0.013148654252290726, 0.01976623386144638, -0.0019463468343019485, 0.011541116051375866, 0.005226301494985819, -0.019175121560692787, -0.011642037890851498, 0.006772566121071577, 0.031256888061761856, -0.004739714786410332, 0.015426600351929665, -0.012175480835139751, 0.02325524017214775, -0.03327532112598419, -0.009537099860608578, -0.033477164804935455, 0.010128212161362171, 0.032813966274261475, 0.01816590316593647, 0.024134701117873192, 0.006887905299663544, -0.01999691128730774, 0.0012389939511194825, 0.017632460221648216, -0.002040059771388769, 0.0045631020329892635, 0.016421400010585785, 0.00015070672088768333, -0.007140209432691336, 0.007583544123917818, 0.020184338092803955, -0.014302045106887817, -0.026989342644810677, 0.0061201793141663074, -0.007583544123917818, 0.014554348774254322, 0.007857474498450756, 0.008326039649546146, 0.0061634317971765995, 0.00966685637831688, 0.029440298676490784, -0.0332464873790741, 0.00813861284404993, 0.005320014897733927, -0.010322846472263336, 0.007125792093575001, 0.02198651060461998, -0.0337655134499073, 0.020588023588061333, 0.005536275450140238, 0.06522424519062042, 0.016868339851498604, 0.0332464873790741, 0.04005149379372597, -0.020458268001675606, 8.599743887316436e-05, 0.009710107930004597, 0.03638947755098343, -0.010856290347874165, 0.012694506905972958, 0.001239895005710423, -0.003867463208734989, 0.055506929755210876, -0.015714948996901512, 0.03644714504480362, 0.03344833105802536, -0.025605274364352226, 0.035466764122247696, -0.009169456548988819, 0.00827557872980833, -0.02596570923924446, 0.030939705669879913, -0.029440298676490784, 0.00430719368159771, -0.0009362288983538747, -0.022231606766581535, 0.017401782795786858, 0.002313990145921707, -0.019968077540397644, 0.023226406425237656, -0.018209155648946762, -0.001904896809719503, -0.006347253452986479, -0.002978991949930787, -0.026902837678790092, 0.01623397506773472, 0.017488285899162292, 0.036360643804073334, -0.0008645924972370267, -0.045991454273462296, 0.029339376837015152, 0.010315638035535812, 0.015167088247835636, 0.036245301365852356, -0.019348129630088806, 0.007511456962674856, 0.036533650010824203, 0.0019373359391465783, 0.024913240224123, -0.029224038124084473, 0.012932393699884415, -0.023716596886515617, -0.02138097956776619, -0.010337264277040958, 0.00659234868362546, 0.023168735206127167, -0.017964059486985207, -0.014460636302828789, 0.01426600106060505, -0.02319757081568241, -0.01793522574007511, 0.0010984244290739298, -0.019578807055950165, 3.467071110208053e-06, 0.0022256835363805294, 0.006837444379925728, -0.021582823246717453, -0.021078215911984444, 0.002856444101780653, 0.0018075795378535986, -0.01321353204548359, 0.007597961463034153, 0.010164255276322365, -0.001503012259490788, -0.004790175706148148, -0.01960764266550541, -0.012651254422962666, 0.0005627284990623593, -0.02208743244409561, -0.007749343756586313, -0.023111065849661827, -0.02397610992193222, -0.034976571798324585, 0.02214510180056095, -0.013191906735301018, -0.000585255678743124, 0.026268472895026207, 0.016017712652683258, -0.0029447507113218307, -0.008736934512853622, 0.013249576091766357, 0.024408631026744843, -0.012362906709313393, 0.006231914274394512, -0.020285259932279587, 0.007655630819499493, -0.02564852684736252, 0.03013233281672001, 0.0022473097778856754, 0.019506720826029778, -0.0010659852996468544, -0.02498532645404339, -0.0008979326812550426, 0.0005379486246965826, 0.016680913046002388, 0.016579991206526756, 0.020631276071071625, -0.005907522980123758, 0.027710212394595146, 0.011007672175765038, 0.018901189789175987, 0.01129601988941431, -0.004408115055412054, -0.022635292261838913, 0.006300396751612425, 0.013718141242861748, 0.03595695644617081, 0.014222749508917332, -0.004793780390173197, 0.041781578212976456, 0.01417949702590704, -0.016133053228259087, 0.004595540929585695, -0.0074105351231992245, 0.02419237047433853, -0.0008686473593115807, -0.028387829661369324, 0.0180073119699955, 0.020861955359578133, -0.02951238490641117, 0.02142423205077648, -0.025115082040429115, 0.012175480835139751, 0.004343236796557903, 0.02099171094596386, 0.007879100739955902, 0.027839967980980873, 0.0359857901930809, 0.005875084083527327, 0.004404510837048292, -0.050922200083732605, 0.01386952307075262, 0.014835488051176071, 0.024956490844488144, -0.007770969998091459, -0.010207507759332657, 0.023601258173584938, 0.00938571710139513, 0.04120488464832306, 0.025835951790213585, 0.040282171219587326, -0.003379074390977621, -0.04284846410155296, -0.030391845852136612, -0.0009254158358089626, -0.041233718395233154, 0.007641213480383158, -0.012449410744011402, -0.021337728947401047, -0.023889604955911636, 0.039734311401844025, 0.0013867721427232027, 0.013631636276841164, -0.005954379681497812, 0.011065342463552952, 0.004811801947653294, 0.0051109627820551395, 0.012067350558936596, 0.019261624664068222, 0.0033592504914849997, 0.00018607436504680663, 0.025576438754796982, 0.029930489137768745, -0.032208435237407684, -0.00916224718093872, -0.002128366380929947, -0.003845837200060487, -0.027493951842188835, -0.032929304987192154, -0.024725813418626785, 0.029007775709033012, 0.019189538434147835, 0.00894598662853241, -0.025720613077282906, -0.011807837523519993, 0.02325524017214775, 0.0011732146376743913, 0.02459605783224106, 0.024437466636300087, 0.062052421271800995, -0.0009596571326255798, 0.021179137751460075, -0.023846352472901344, 0.004195458721369505, 0.005849853623658419, 0.030536018311977386, 0.047606199979782104, -0.014777818694710732, -0.003719685133546591, -0.027753464877605438, 0.012398949824273586, 0.0037881676107645035, 0.0031988569535315037, -0.03584161773324013, -0.004126976244151592, -0.005154214799404144, 0.006516657769680023, 0.011144638061523438, -0.0011443798430263996, -0.025273673236370087, -0.0276813767850399, 0.0290654469281435, -4.2097635741811246e-05, 0.006271562073379755, 0.005806601606309414, 0.022779466584324837, -0.051037538796663284, 0.02132331021130085, -0.023471500724554062, -0.04181041195988655, 0.008744142949581146, 0.003943154588341713, 0.004076515324413776, 0.025879204273223877, 0.0045883324928581715, -0.027926472947001457, 0.03915761411190033, 0.050085991621017456, 0.02857525460422039, -0.00290870713070035, 0.023904021829366684, 0.014359714463353157, -0.040570519864559174, 0.0018850729102268815, -0.022995727136731148, -0.000778989284299314, -0.0017967664171010256, 0.007277174387127161, 0.00010311808728147298, 0.0007123088580556214, 0.004800988826900721, -0.025187170132994652, 0.02801297791302204, 0.0135667584836483, 4.167525185039267e-05, 0.018295660614967346, 0.01822357252240181, -0.0021734207402914762, -0.008845064789056778, -0.008210700005292892, 0.010236342437565327, 0.02198651060461998, -0.006458987947553396, -0.01035168208181858, 0.008881108835339546, -0.03457288816571236, -0.013956028036773205, -0.019449051469564438, -0.0013083775993436575, -0.011101385578513145, 0.005795788485556841, 0.007129396311938763, -0.02530250884592533, 0.007352865766733885, 0.01561402715742588, -0.020948458462953568, 0.0010263375006616116, 0.016796251758933067, -0.007075331173837185, -0.005543484352529049, 0.0010047114919871092, -0.00839091744273901, 0.003130374476313591, 0.006491427309811115, 0.0034475568681955338, 0.008628804236650467, -0.0031465941574424505, -0.003159209154546261, 0.015195922926068306, -0.028993358835577965, 0.0056516146287322044, -0.0207610335201025, 0.009710107930004597, 0.010798620991408825, -0.010265177115797997, -0.0019355338299646974, 0.03290047124028206, 0.018468668684363365, -0.007597961463034153, 0.0031483962666243315, -0.03217960149049759, 0.0004942459636367857, 0.01960764266550541, -0.002541063819080591, 0.002577107399702072, -0.015340096317231655, 0.012355698272585869, 0.002258122665807605, 0.007504248525947332, -0.014215540140867233, -0.00039692860445939004, 0.011072550900280476, -0.049480460584163666, 0.016695329919457436, 0.0048370324075222015, -0.010971629060804844, 0.0013651460176333785, 0.004080119542777538, -0.01439575757831335, 0.006855465937405825, -0.04146439582109451, 4.6969133109087124e-05, 0.007219505030661821, -0.03437104448676109, 0.008189073763787746, -0.01019309088587761, -0.010366098955273628, 0.002004016423597932, 0.0074682049453258514, -0.029094280675053596, 0.03950363025069237, 0.006974409334361553, -0.009537099860608578, -0.006004840601235628, -0.01489315740764141, 0.02946913242340088, -0.0022382987663149834, -0.0032132745254784822, 0.014489470981061459, 0.03520725294947624, 0.0010903147049248219, 0.017156686633825302, 0.03719685226678848, -0.014907575212419033, -0.014878740534186363, -0.023384997621178627, -0.0011353689478710294, -0.004101745784282684, 0.025345761328935623, -0.016594408079981804, -0.01905978098511696, 0.001366047072224319, -0.0420699268579483, 0.008268369361758232, -0.011036507785320282, 0.005060501862317324, -0.028373410925269127, -0.0006339143728837371, 0.00044603782589547336, -0.02498532645404339, -0.0019571599550545216, 0.016378147527575493, -0.020645692944526672, -0.004249523859471083, -0.008484630845487118, -0.03800422325730324, -0.01789197325706482, 0.00994078628718853, 0.036793164908885956, -0.0015931209782138467, -0.00591112719848752, -0.016032131388783455, 0.010128212161362171, 0.009544308297336102, -0.016089800745248795, -0.009378508664667606, -0.009984038770198822, -0.010142629966139793, 0.0038999023381620646, -0.025562021881341934, -0.012175480835139751, -0.013674888759851456, 0.016032131388783455, 0.001570593798533082, 0.009890325367450714, -0.04126255214214325, -0.008787395432591438, -0.013357706367969513, -0.007915143854916096, 0.0004239612026140094, -0.011144638061523438, 0.03869625926017761, -0.006696874741464853, 0.019679728895425797, 0.005986818578094244, 0.019261624664068222, -0.010632820427417755, -0.006660831160843372, 0.004372071474790573, 0.031545236706733704, -0.03019000217318535, 0.0014372329460456967, -0.00833324808627367, 4.474457455216907e-05, 0.03315998241305351, -0.022303692996501923, -0.00634364876896143, 0.03128572180867195, 0.025951290503144264, -0.010957212187349796, -0.02011225000023842, -0.03589928522706032, -0.003393491730093956, 0.026153134182095528, 0.00653467932716012, -0.008044900372624397, -0.010625611990690231, 0.00013133336324244738, -0.036908503621816635, 0.013364914804697037, 0.0007307811756618321, -0.018857937306165695, 0.007320426870137453, -0.02707584761083126, -0.017863139510154724, -0.041666239500045776, -0.022116266191005707, -0.016752999275922775, -2.552609112171922e-05, -0.024336544796824455, -0.01949230395257473, 0.03223726898431778, 0.0015868133632466197, -0.022736214101314545, 0.014575975015759468, 0.015541939996182919, 0.020256424322724342, 0.005179445259273052, -0.012507081031799316, 0.007111374754458666, -0.022000927478075027, -0.03731219097971916, 0.0001240120327565819, -0.0028240049723535776, -0.004491014871746302, -0.02857525460422039, -0.009537099860608578, 0.006455383729189634, 0.007342052645981312, -0.030218835920095444, 0.0240914486348629, -0.0041522067040205, -0.0023878791835159063, -0.01096442062407732, 0.019030947238206863, 0.019968077540397644, 0.011750168167054653, 0.0025500748306512833, 0.004469389095902443, -0.007316822186112404, 0.03627413883805275, 0.004653210751712322, 0.00047081770026125014, 0.018958859145641327, 0.02286597155034542, 0.009342464618384838, 0.012644045986235142, 0.002906905021518469, 0.002342824824154377, 9.49660716287326e-06, 0.0022491118870675564, 0.020588023588061333, -0.042675457894802094, 0.01340095791965723, 0.010697699151933193, 0.028272489085793495, -0.0282436553388834, -0.006581535562872887, -0.008873899467289448, 0.013112611137330532, 0.022332528606057167, -0.009782195091247559, 0.023082232102751732, -0.02386077120900154, -0.009623603895306587, 0.04901910573244095, -0.0025554813910275698, 0.002564492169767618, -0.017315277829766273, -0.0031754288356751204, 0.005590340588241816, 0.0006641007494181395, 0.030478348955512047, 0.015368930995464325, -0.010913959704339504, 0.0022346945479512215, -0.009046908468008041, 0.00903249066323042, 0.030968541279435158, 0.004065702203661203, -0.002245507435873151, 0.01688275672495365, 0.02220277115702629, -0.0063688792288303375, 0.028431080281734467, -0.012564750388264656, -0.0240914486348629, -0.006069718860089779, 0.03122805431485176, -0.018901189789175987, -0.016205139458179474, 0.006523866206407547, 0.002140981610864401, -0.003656608983874321, 0.0004248622863087803, -0.0018724577967077494, 0.021683745086193085, 0.0030709027778357267, 0.009068534709513187, -0.037023842334747314, 0.04218526557087898, -0.01662324368953705, 0.0074682049453258514, -0.013689305633306503, 0.0009308223379775882, -0.015080583281815052, -0.021179137751460075, -1.3938682059233543e-05, -0.005554297007620335, -0.025562021881341934, -0.015758201479911804, 0.01102208998054266, -0.004797384608536959, -0.016608826816082, -0.017344113439321518, -0.03477473184466362, 0.00864322204142809, -0.0030474744271486998, -0.003393491730093956, -0.02116471901535988, 0.003292570123448968, 0.007497039623558521, -0.019795067608356476, 0.01021471619606018, -0.011094177141785622, -0.017690129578113556, 0.012644045986235142, -0.012211523950099945, -0.043771177530288696, 0.012867514975368977, -0.0008718011667951941, -0.015253592282533646, 0.0003597587929107249, -0.035582102835178375, -0.030651358887553215, -0.004000823944807053, -0.019795067608356476, -0.0032619331032037735, 0.005723701324313879, 0.012427784502506256, -0.005244323518127203, 0.027450699359178543, -0.02214510180056095, 0.030478348955512047, -0.013581175357103348, 0.006985222455114126, -0.00016365983174182475, -0.00020375818712636828, 0.006502239964902401, -0.01666649617254734, -0.010012873448431492, -0.006322022993117571, -0.0032457136549055576, -0.007403326686471701, -0.01861284300684929, 0.005240718834102154, 0.007233922369778156, 0.014525514096021652, 0.019074199721217155, 0.004494619555771351, -0.041896916925907135, -0.0014498481759801507, -0.0029753874987363815, 0.013610010035336018, -0.002654600888490677, -0.00032979765092022717, 0.002189640188589692, -0.01229802891612053, 0.03301580995321274, 0.02381751872599125, -0.0002500514965504408, 0.001940940273925662, 0.0020418621134012938, -0.00021772502805106342, -0.008189073763787746, 0.011029298417270184, -0.001288553699851036, 0.005723701324313879, 0.011627620086073875, 0.005893105641007423, -0.020948458462953568, -0.015368930995464325, -0.01160599384456873, 0.028661759570240974, 0.01321353204548359, -0.023615675047039986, -1.5360708857770078e-05, 0.0006523866322822869, 0.03797538951039314, 0.0068843006156384945, -0.0008447685977444053, 0.02148190140724182, -0.004047680646181107, -0.02730652503669262, 0.020169919356703758, 0.022779466584324837, -0.00241671409457922, -0.046481646597385406, 0.0014741774648427963, 0.009681273251771927, -0.0023464292753487825, -0.004595540929585695, 0.013278410769999027, -0.007821430452167988, 0.01495082676410675, 0.0019211163744330406, -0.005219093058258295, 0.027883220463991165, -0.010279594920575619, -0.01621955633163452, -0.013227949850261211, 0.0002793368184939027, 0.026773082092404366, 0.031055044382810593, -0.03811956197023392, 0.0011425777338445187, -0.008001647889614105, 0.03122805431485176, -0.02159724198281765, -0.019751815125346184, -0.018194738775491714, 0.020674528554081917, -0.01916070282459259, 0.02337057888507843, -0.02259203977882862, 0.03748519718647003, -0.0055687143467366695, 0.010618403553962708, -0.0023067814763635397, -0.0014867926947772503, -0.008693682961165905, 0.0022599250078201294, -0.01090675126761198, -0.003950363025069237, 0.0006131893605925143, 0.018237991258502007, 0.004674836527556181, -0.007540291640907526, -0.0023085835855454206, -0.01090675126761198, -0.012802637182176113, 0.04120488464832306, -0.013602801598608494, 0.004245919641107321, 0.01362442784011364, -0.026095464825630188, 0.011706915684044361, -0.009313629940152168, 0.018252408131957054, 0.04919211566448212, 0.008037691935896873, 0.010488647036254406, 0.0009082952165044844, 0.0064157359302043915, -0.021193554624915123, -0.00780701357871294, -0.010611194185912609, -0.01334328856319189, 0.007363678887486458, 0.021510737016797066, -0.011851090006530285, 0.025893621146678925, 0.008318830281496048, -0.009241542778909206, 0.0064265490509569645, -0.032756295055150986, 0.03760053589940071, 0.02420678734779358, -0.0004557244828902185, 0.02303897961974144, -0.03500540927052498, 0.007035683374851942, 0.022909222170710564, -0.0008668451919220388, -0.01038051676005125, -0.005215488839894533, 0.004224293399602175, -0.017358530312776566, -0.0025482727214694023, -0.022000927478075027, 0.0007587148575112224, 0.019751815125346184, -0.010567942634224892, 0.0009587560198269784, -0.00015746486315038055, -0.026657743379473686, 0.011252768337726593, -0.030709028244018555, 0.017488285899162292, -0.011223933659493923, 0.0016616034554317594, -0.011598785407841206, -0.008895525708794594, 0.02138097956776619, 0.034255705773830414, 0.010445394553244114, 0.005010040942579508, -0.009544308297336102, 0.016046548262238503, -0.0009222620283253491, 0.013163071125745773, -0.013364914804697037, 0.013977653346955776, 0.02303897961974144, 0.0010227331658825278, 0.011598785407841206, 0.02159724198281765, -0.01655115745961666, 0.004761341027915478, 0.011123011820018291, -0.00017672558897174895, 0.019910406321287155, -0.005219093058258295, 0.005031667184084654, 0.003685443662106991, 0.01210339367389679, -0.011346480809152126, 0.003946758806705475, -0.017574790865182877, -0.005770558025687933, 0.02009783312678337, -0.002368055284023285, 0.01849750429391861, 0.012759384699165821, -0.03941712900996208, 0.015686113387346268, 0.018915608525276184, 0.00836208276450634, -0.006203079596161842, -0.022188354283571243, -0.025706196203827858, -0.024048196151852608, 0.011786211282014847, 0.010279594920575619, -0.012009681202471256, -0.00850625615566969, 0.0008970316266641021, -0.00678337924182415, -0.01650790497660637, -0.0018454251112416387, 0.00467844121158123, -0.013242366723716259, 0.03318881615996361, 0.03788888454437256, -0.01154832448810339, 0.015210339799523354, -2.5202263714163564e-05, 0.020631276071071625, 0.011627620086073875, 0.023904021829366684, 0.010589568875730038, -0.003379074390977621, 0.029584471136331558, 0.0348900705575943, -0.023615675047039986, 0.023399414494633675, -0.018728181719779968, -0.007287987507879734, 0.02364450879395008, 0.0031501983758062124, 0.012449410744011402, -0.0013291025534272194, 0.0030745072290301323, -0.025879204273223877, -0.04143556207418442, -0.0077277179807424545, 0.022664127871394157, 0.0013669482432305813, 0.008657638914883137, -0.01695484295487404, -0.01334328856319189, 0.0041522067040205, -0.019535554572939873, -0.0007807914516888559, 0.002256320556625724, -0.0020706967916339636, -0.028286907821893692, -0.005031667184084654, 0.0071942745707929134, 0.00032326477230526507, 0.002951959380879998, -0.017906390130519867, 0.010423768311738968, 0.02724885568022728, 0.0004730704240500927, 0.0015444622840732336, 0.0048730759881436825, -0.03627413883805275, -0.021294476464390755, 6.870784272905439e-05, -0.008196283131837845, -0.013379332609474659, -0.008938778191804886, -0.007417744025588036, -0.00827557872980833, 0.02138097956776619, 0.006260748952627182, 0.0017733381828293204, 0.01662324368953705, 0.016926009207963943, 0.0196508951485157, -0.027047012001276016, -0.0017976675881072879, -0.06574326753616333, 0.005147005897015333, -0.016248391941189766, 0.024913240224123, 0.008470213040709496, 0.02724885568022728, -0.009169456548988819, 0.027594873681664467, -0.00810977816581726, 0.008881108835339546, -0.010567942634224892, -0.033707842230796814, 0.002643787767738104, 0.007677257061004639, 0.0037377066910266876, -0.019074199721217155, -0.04775037616491318, 0.00808815285563469, -0.028921272605657578, -0.0069419704377651215, -0.005903918761759996, 0.01201688963919878, -0.02701817825436592, 0.006253540515899658, -0.01655115745961666, -0.01359559316188097, 0.0012407960603013635, -0.014042532071471214, -0.03382318094372749, -0.009796611964702606, 0.01838216371834278, -0.005950774997472763, -0.025720613077282906, 0.02221718803048134, 0.026931673288345337, -0.005327223334461451, 0.020905205979943275, 0.008289995603263378, 0.01492199208587408, 0.002903300803154707, 0.0099696209654212, 0.006340044550597668, 0.002187838079407811, -0.024293292313814163, 0.0020238403230905533, 0.0011615004623308778, -0.00888831727206707, -0.02004016377031803, 0.012427784502506256, -0.0332464873790741, 0.013227949850261211, 0.06776170432567596, 0.005442562513053417, -0.01898769475519657, -0.014446218498051167, -0.008225117810070515, -0.009378508664667606, 0.003971989266574383, 0.001471474301069975, 0.028719428926706314, -0.010921168141067028, 0.02270738035440445, 0.028431080281734467, -0.0012155657168477774, 0.008001647889614105, 0.008563926443457603, 0.0013993873726576567, 0.008499047718942165, 0.017401782795786858, 0.0014390351716428995, -0.005143401678651571, -0.007114978972822428, 0.022419031709432602, 0.01898769475519657, -0.01761804334819317, 0.01126718521118164, 0.018338913097977638, -0.04091653600335121, -0.016983678564429283, 0.012528706341981888, -0.00482982350513339, -0.008837856352329254, 0.008268369361758232, 0.004880284424871206, 0.006422944366931915, 0.0019841925241053104, 0.0066572269424796104, -0.026008959859609604, 0.009292003698647022, 0.018338913097977638, -0.010423768311738968, 0.014302045106887817, 0.004480202216655016, 0.026282891631126404, -0.022678544744849205, 0.015268009155988693, 0.01639256626367569, 0.02210184931755066, -0.017084600403904915, 0.006837444379925728, -0.0037160806823521852, 0.007331239525228739, -0.016205139458179474, -0.033361826092004776, -0.03555326908826828, 0.006833840161561966, -0.008823438547551632, -0.0005609263316728175, 0.0014552547363564372, 0.009068534709513187, -0.008030482567846775, -0.009025282226502895, -0.013465836644172668, -0.011303229257464409, -0.0034655786585062742, 0.0014471448957920074, -0.010423768311738968, -0.007561917882412672, 0.022346945479512215, -0.007886309176683426, -0.001402090536430478, 0.016161886975169182, 0.0005766953690908849, -0.00955872517079115, 0.00019035451987292618, -0.0055687143467366695, -0.01281705405563116, -0.01384068839251995, -0.01732969470322132, 0.007799804676324129, -0.00451624533161521, -0.00935688242316246, 0.0022959683556109667, 0.0023230009246617556, -0.008700891397893429, 0.016291644424200058, 0.0006163431680761278, -0.011627620086073875, 0.016479069367051125, 0.0014831883599981666, 0.002067092340439558, -0.0055939448066055775, -0.006419340148568153, -0.011123011820018291, -0.0013291025534272194, 0.005572319030761719, -0.01606096513569355, 0.045097578316926956, 0.01590237393975258, 0.0005302894278429449, 0.00423871073871851, -0.0018256012117490172, -0.0061165750958025455, 0.011829463765025139, 0.03246795013546944, -0.004130580462515354, 0.0015922198072075844, -0.015022913925349712, -0.01558519247919321, -0.01143298577517271, -0.0010047114919871092, -0.031026210635900497, 0.021683745086193085, 0.010265177115797997, 0.005929149221628904, 0.01650790497660637, 0.015181505121290684, 0.022909222170710564, 0.010546316392719746, -0.011829463765025139, 0.008787395432591438, 0.004811801947653294, -0.0012624221853911877, -0.004782967269420624, 0.02021317183971405, -0.016363730654120445, 0.017690129578113556, -0.006188662257045507, -0.006556305568665266, -0.028229238465428352, -0.0007109572179615498, 0.003420524299144745, 0.006794192362576723, -0.00708974851295352, 0.013826271519064903, -0.014028114266693592, 0.010142629966139793, 0.020919624716043472, -0.008549508638679981, 0.015008497051894665, 0.0012290820013731718, -0.007713300175964832, 0.003946758806705475, 0.009868699125945568, 0.000964162521995604, 0.007388909347355366, -0.0031483962666243315, -0.02321198768913746, 0.00718346145004034, 0.0053632669150829315, 0.0032457136549055576, 0.0029483549296855927, -0.014698523096740246, 0.016579991206526756, -0.016926009207963943, -0.008996447548270226, 0.001521935104392469, -0.00955872517079115, -0.002103135921061039, -0.012644045986235142, -0.017199939116835594, 0.011807837523519993, -0.0018030740320682526, 0.006531075108796358, -0.018093816936016083, 0.0023482313845306635, -0.016104217618703842, -0.026268472895026207, 0.008499047718942165, 0.0003318251110613346, -0.0022148706484586, -0.024552805349230766, 0.023731013759970665, -0.01284588873386383, 0.01321353204548359, 0.01877143420279026, -0.014273210428655148, 0.002479790011420846, 0.005990422796458006, 0.007006848696619272, 0.00016230820619966835, 0.024956490844488144, -0.012651254422962666, 0.007504248525947332, -0.0006974409334361553, -0.0017949643079191446, -0.013415375724434853, -0.013956028036773205, 0.020169919356703758, -0.006660831160843372, -0.009904743172228336, -0.003505226457491517, -0.00721229612827301, -0.018454251810908318, -0.021914424374699593, 0.02952680177986622, -0.004253128077834845, 0.013919983990490437, -0.0061418055556714535, 0.021726997569203377, 0.002692446345463395, 0.0094145517796278, 0.0051001496613025665, 0.01793522574007511, -0.00966685637831688, -0.005961588118225336, -0.009025282226502895, -0.009681273251771927, 0.00041607668390497565, -0.013919983990490437, 0.011562742292881012, -0.008232326246798038, 0.005734514445066452, -0.004242315422743559, -0.007698882836848497, -0.011303229257464409, -0.011973637156188488, 0.01140415109694004, -0.010315638035535812, 0.004155810922384262, 0.004692858550697565, -0.010221925564110279, -0.0023770660627633333, -0.024336544796824455, -0.008736934512853622, 0.0009524484048597515, 0.003281757002696395, 0.016594408079981804, 0.003306987462565303, 0.008938778191804886, 0.008217908442020416, 0.019953658804297447, 0.010805829428136349, 0.014907575212419033, -0.005781371146440506, 0.0036475982051342726, 0.007533083204180002, 0.010207507759332657, 0.025835951790213585, 0.013617219403386116, 0.013437001965939999, -0.016435816884040833, 0.006397713907063007, 0.012449410744011402, -0.01649348810315132, 0.009565934538841248, -0.0016408785013481975, 0.022952474653720856, -0.004098141565918922, -0.014453427866101265, -0.0066896663047373295, -0.018483085557818413, 0.012917975895106792, -0.007248339708894491, 0.0012425982858985662, -0.005010040942579508, -0.01476340088993311, 0.008001647889614105, -0.017243191599845886, -0.021842336282134056, -0.0061165750958025455, 0.0007163637783378363, 0.009609186090528965, 0.004249523859471083, -0.008016065694391727, 0.029497968032956123, 1.734591569402255e-05, -0.016147470101714134, 0.008311621844768524, -0.007475413382053375, -0.027811134234070778, 0.0207610335201025, 0.0019986098632216454, 0.00022245572472456843, 0.020746614784002304, -0.01701251231133938, 0.02116471901535988, -0.00485865818336606, -0.005720097105950117, 0.029224038124084473, -0.018800267949700356, 0.0010542712407186627, -0.004725297447293997, 0.021078215911984444, 0.0066680400632321835, -0.005064106080681086, 0.007634004577994347, -0.0146768968552351, 0.0077277179807424545, -0.0031790330540388823, -0.0036494003143161535, -0.02691725641489029, 0.0029627725016325712, 0.013833479955792427, 0.028676176443696022, 0.009313629940152168, 0.0071798572316765785, -0.03206426277756691, 0.021496320143342018, 0.020068997517228127, -0.0009551516850478947, -0.00023405722458846867, -0.008715308271348476, -0.0056371972896158695, -0.020746614784002304, -0.02758045494556427, 0.00864322204142809, -0.007871891371905804, -0.0021626076195389032, 0.018843520432710648, 0.012773802503943443, -0.02321198768913746, 0.015383348800241947, -0.0037737502716481686, 0.003117759246379137, 0.01843983493745327, 0.00019080506172031164, 0.018367746844887733, 0.01456155814230442, 0.006696874741464853, -0.011944802477955818, 0.0077060917392373085, 0.010272386483848095, 0.020890789106488228, 0.0006203980301506817, 0.02801297791302204, 0.0022653313353657722, 0.027782298624515533, 0.011584367603063583, 0.010813037864863873, 0.005132588557898998, 0.01403532363474369, 0.008297204039990902, 0.026167551055550575, -0.004173832479864359, 0.013862314634025097, -0.026153134182095528, -0.006430153269320726, 0.004382884595543146, -0.008484630845487118, 0.018209155648946762, -0.007734926417469978, -0.0182812437415123, -0.017747798934578896, -0.01248545479029417, 0.011058133095502853, -2.5371216906933114e-05, 0.0009677669149823487, -0.018410999327898026, -0.01678183488547802, 0.016075383871793747, 0.01694042608141899, 0.013199115172028542, 0.024019362404942513, -0.01832449436187744, 0.004919932223856449, -0.010546316392719746, -0.015758201479911804, 0.002229287987574935, 0.009090160951018333, -0.01688275672495365, 0.01787755638360977, 0.012413367629051208, -0.0031754288356751204, 0.015455435961484909, -0.02370218001306057, 0.004357654135674238, 0.0014354308368638158, -0.006022862158715725, 0.028315741568803787, 0.002229287987574935, -0.022894805297255516, -0.005255136638879776, -0.01337212324142456, 0.008549508638679981, -0.0025266464799642563, 0.015859121456742287, 0.0030510788783431053, -0.0011488852323964238, -0.010488647036254406, -0.027205603197216988, -0.006509448867291212, -0.03944596275687218, 0.0036367850843816996, 0.008124195970594883, 0.008347664959728718, 0.030968541279435158, 0.009198291227221489, -0.010135420598089695, 0.013754184357821941, -0.004379280377179384, -0.00863601267337799, -0.00678337924182415, -0.009025282226502895, 0.011310437694191933, 0.024884404614567757, -0.012326863594353199, 0.013610010035336018, 0.020890789106488228, -0.014777818694710732, -0.023442666977643967, 0.015974462032318115, 0.007291591726243496, 0.03575511276721954, -0.009082951582968235, 0.0026960507966578007, 0.011144638061523438, -0.012716132216155529, -0.009890325367450714, 0.008340456523001194, 0.017026931047439575, -0.02037176303565502, 0.02553318627178669, 0.005276762414723635, 0.021626075729727745, -0.012802637182176113, 0.020919624716043472, -0.012557541020214558, 0.0033358221407979727, 0.00538489269092679, 0.013746975921094418, -0.0006762653938494623, 0.01306935865432024, 0.009104577824473381, 0.009421760216355324, 0.018180321902036667, 0.01024355087429285, 0.005247927736490965, 0.0032745483331382275, -0.006192266475409269, 0.0008321533678099513, -0.0009001854341477156, 0.012579167261719704, -0.0007907034014351666, -0.005727305542677641, -0.0063832965679466724, -0.008571134880185127, -0.007021266035735607, -0.0038025849498808384, -0.0034097114112228155, -0.026628907769918442, 0.005687657743692398, 0.03610112890601158, 0.010531898587942123, -0.01572936587035656, -0.0045631020329892635, 0.020025746896862984, 0.018252408131957054, 0.015758201479911804, 0.007792596239596605, -0.019088616594672203, 0.010012873448431492, -0.007828639820218086, 0.012442202307283878, -0.004018845967948437, -0.013047732412815094, -0.024783482775092125, -0.002717676805332303, 0.028387829661369324, -0.01606096513569355, -0.007943978533148766, 0.0021499923896044493, -0.006909531075507402, -0.0077277179807424545, -0.0028996963519603014, -0.033967357128858566, 0.020847536623477936, -0.01590237393975258, -0.016637660562992096, -0.021957674995064735, -0.010683281347155571, 0.007583544123917818, -0.009212708100676537, -0.003492611227557063, 0.01321353204548359, -0.011995263397693634, 0.0037052675615996122, 0.00783584825694561, -0.0025482727214694023, 0.0018922816962003708, 0.020515937358140945, -0.004635188728570938, -0.021063797175884247, 0.01384068839251995, 0.016926009207963943, -0.03085320070385933, 0.008780186995863914, -0.010957212187349796, 0.011887133121490479, 0.014381340704858303, -0.017041347920894623, -0.004682045429944992, 0.005583132151514292, -0.021799083799123764, -0.0023103856947273016, -0.007511456962674856, -0.0014912982005625963, 0.003914319910109043, 0.005694866646081209, 0.010430977679789066, 0.0031357810366898775, -0.001391277532093227, -0.03670665994286537, 0.015210339799523354, 0.024466300383210182, 0.007850265130400658, -0.015570774674415588, 0.02337057888507843, -0.007104165852069855, -0.0018958860309794545, 0.0023986923042684793, 0.01832449436187744, -0.006992431357502937, 0.01999691128730774, -0.0053993104957044125, 0.011072550900280476, -0.002414911752566695, 0.007698882836848497, -0.00010897514584939927, 0.006750939879566431, -0.011086968705058098, -0.016983678564429283, 0.011533907614648342, 0.019795067608356476, 0.004076515324413776, -0.0027519180439412594, -0.0015922198072075844, -0.027335360646247864, -0.016032131388783455, 0.02138097956776619, -0.014330879785120487, -0.023788683116436005, 0.0023067814763635397, 0.00985428225249052, -0.01855517365038395, 0.0066680400632321835, 0.02066011168062687, -0.015022913925349712, -0.01728644408285618, 0.002577107399702072, -0.009565934538841248, 0.0034529634285718203, 0.016969261690974236, 0.0013417177833616734, 0.02952680177986622, 0.00017672558897174895, -0.023514753207564354, -0.01572936587035656, 0.002627568319439888, -0.002054477110505104, 0.009522682055830956, -0.013905567117035389, -0.010546316392719746, 0.011627620086073875, 0.0010200298856943846, 0.007086144294589758, 0.0014876937493681908, 0.0038854849990457296, -0.00037732996861450374, 0.006844652816653252, -0.0033141961321234703, -0.002050872892141342, -0.00850625615566969, 0.01905978098511696, 0.01627722568809986, -0.0074105351231992245, 0.010387725196778774, -0.01793522574007511, 0.029339376837015152, 0.0016174502670764923, -0.008289995603263378, -0.012478245422244072, 0.022505536675453186, 0.004379280377179384, 0.0019121055956929922, 0.01738736592233181, -0.007879100739955902, 0.01321353204548359, 0.012586376629769802, 0.00012513838009908795, -0.008253952488303185, 0.031429897993803024, -0.026282891631126404, -0.009782195091247559, 0.004786571487784386, 0.011123011820018291, 0.0027122702449560165, 0.0006564414943568408, 0.021553989499807358, 0.0025969312991946936, 0.015008497051894665, -0.01633489690721035, 0.030593689531087875, 0.0002860949607565999, 0.03944596275687218, -0.019694145768880844, 0.004692858550697565, 0.002450955333188176, 0.001559780677780509, 0.03445754945278168, -0.0077421353198587894, -0.0036638176534324884, -0.008758560754358768, -0.01688275672495365, 0.015210339799523354, 0.02851758524775505, -0.008210700005292892, 0.010762576945126057, 0.0035142372362315655, -0.015556356869637966, 0.016738582402467728, -0.0009037897689267993, -0.006585140246897936, 0.026715412735939026, 0.014835488051176071, -0.004098141565918922, -0.004905514884740114, -0.010921168141067028, -0.017646877095103264, 0.003141187597066164, -0.008167448453605175, -0.024999743327498436, 0.003939550369977951, -0.00022448317031376064, -0.0034745894372463226, -0.01843983493745327, -0.0056263841688632965, -0.010986046865582466, -0.001345322118140757, 0.01124555990099907, -0.005968797020614147, -0.005338036455214024, 0.02243344858288765, -0.006296792533248663, -0.01561402715742588, 0.037139181047677994, -0.013422584161162376, -0.011036507785320282, -0.00013268498878460377, 0.00010080905485665426, -0.03722568601369858, -0.006246331613510847, -0.011000463739037514, -0.006477009505033493, -0.0011533907381817698, -0.0218711718916893, 0.0010740951402112842, -0.02857525460422039, 0.013667680323123932, 0.006080531515181065, 0.005366871133446693, 0.010841872543096542, -0.020357346162199974, -0.00929921306669712, 0.0016201535472646356, 0.004188249818980694, -0.0030817158985882998, 0.005193862598389387, -0.015657279640436172, -0.009991247206926346, 0.009652438573539257, -0.010661655105650425, -0.0028330159839242697, 0.005684053525328636, 0.003708872012794018, -0.0001830331893870607, -0.001684130635112524, -0.012233150191605091, -0.00914062187075615, -0.04916327819228172, -0.005132588557898998, 0.020977294072508812, 0.0027375007048249245, -0.015397765673696995, 0.010575151070952415, 0.032208435237407684, -0.016479069367051125, -0.01143298577517271, -0.009097369387745857, -0.023673344403505325, 0.005543484352529049, -0.0020743010099977255, 0.03177591413259506, 0.006736522540450096, 0.005165027920156717, 0.029368210583925247, -0.027839967980980873, 0.006617579143494368, -0.01849750429391861, -0.011944802477955818, 0.021337728947401047, -0.010726533830165863, 0.0040296586230397224, -0.00013538823986891657, -0.00641213171184063, -0.008549508638679981, -0.007540291640907526, 6.677191777271219e-06, 0.022462284192442894, 0.0007722311420366168, -0.0017769425176084042, -0.00728077907115221, 0.001684130635112524, -0.0024311314336955547, -0.02801297791302204, -0.0011669070227071643, -0.01038051676005125, 0.014503887854516506, -0.001665207790210843, -0.004537871573120356, 0.004274754319339991, 0.020847536623477936, 0.011757376603782177, -0.010986046865582466, -0.0043252152390778065, 0.006271562073379755, -0.01732969470322132, -0.016608826816082, -0.016479069367051125, 0.008426960557699203, 0.013977653346955776, -6.791939813410863e-05, 0.014071366749703884, -0.007208691909909248, -0.002679831348359585, 0.03223726898431778, -0.011973637156188488, -0.013783019036054611, -0.012932393699884415, 0.0021842336282134056, -0.010308429598808289, -0.01204572431743145, -0.013465836644172668, -0.022952474653720856, -0.012153854593634605, 0.012759384699165821, -0.012125019915401936, -0.006859070621430874, -0.01024355087429285, -0.013177488930523396, 0.02414911799132824, 0.009652438573539257, -0.0025482727214694023, 0.012838680297136307, -0.013912775553762913, 0.0019697751849889755, 0.0069059268571436405, -0.010012873448431492, 0.01787755638360977, -0.014352506026625633, -0.004768549930304289, -0.027623707428574562, -0.011202307417988777, 0.015657279640436172, -0.004811801947653294, 0.026340560987591743, -0.01087791658937931, -0.0025861181784421206, -0.03333299234509468, -0.017416199669241905, 0.008008856326341629, -0.0229813102632761, -0.006318418309092522, 0.033534836024045944, -0.00029082567198202014, -0.005727305542677641, -0.006628392264246941, 0.003546676365658641, 0.01124555990099907, 0.007648422382771969, -1.3234707694209646e-05, -0.010041708126664162, -0.010531898587942123, -0.011288811452686787, -0.02430770918726921, -0.014792235568165779, -0.04578961059451103, -0.002467174781486392, 0.003319602692499757, -0.002553679049015045, 0.012463828548789024, -1.3220628716226202e-05, -0.003180835396051407, -0.00451624533161521, 0.0014624634059146047, -0.01038051676005125, 0.0014174090465530753, 0.0021950467489659786, -0.05216209590435028, -0.013811853714287281, -0.003015035530552268, 0.011879924684762955, 0.006599557586014271, -0.019521137699484825, 0.0037016633432358503, 0.002966376719996333, -0.01849750429391861, -0.024336544796824455, 0.005539879668504, -0.002357242163270712, 0.007497039623558521, 0.022000927478075027, -0.003043870208784938, 0.018757017329335213, 0.007107770070433617, 0.004382884595543146, 0.0004176535876467824, 0.013811853714287281, 0.001239895005710423, -0.024293292313814163, 0.004617167171090841, 0.009638020768761635, -0.021698161959648132, 0.006718500982969999, -0.01728644408285618, -0.0026095465291291475, 0.008628804236650467, 0.007266361732035875, 0.0006343649001792073, -0.009811029769480228, 0.026902837678790092, 0.0003151549899484962, -0.023240823298692703, -0.014114619232714176, -0.010322846472263336, -0.016709748655557632, 0.015253592282533646, 0.0019481490598991513, 0.007792596239596605, -0.019391382113099098, -0.0005068611353635788, -0.0033862830605357885, -0.00903249066323042, 0.009400133974850178, -0.03532259166240692, 0.02642706409096718, 0.020948458462953568, 0.018079400062561035, -0.022058596834540367, -0.0036980588920414448, 0.00728077907115221, 0.01594562642276287, -0.00824674405157566, 0.001151588512584567, 0.0025230422616004944, -0.004231502301990986, 0.003559291595593095, -0.0002741555799730122, -0.009342464618384838, 0.022404614835977554, -0.006138201337307692, -0.02270738035440445, -0.0037737502716481686, 0.01738736592233181, -0.004393697716295719, 0.01694042608141899, -0.0033448331523686647, -0.0006384197622537613, -0.0024113075342029333, -0.011807837523519993, 0.016032131388783455, -0.012211523950099945, -0.005320014897733927, 0.01005612500011921, -0.012038515880703926, -0.01213222835212946, 0.020126668736338615, -0.006372483912855387, -0.00036471476778388023, -0.023788683116436005, 0.0042891716584563255, -0.01315586268901825, -0.007626796141266823, 0.0016489883419126272, 0.015224757604300976, -0.00810977816581726, 0.03843674436211586, 0.011202307417988777, 0.03261212259531021, -0.021972093731164932, 0.011627620086073875, 0.007151022553443909, -0.006823027040809393, 0.03860975429415703, 0.003993615508079529, 0.028993358835577965, 0.003957571927458048, 0.036418311297893524, 0.004249523859471083, -0.014777818694710732, 0.010798620991408825, 0.011829463765025139, 0.0210493803024292, 0.004682045429944992, -0.026628907769918442, -0.0033880851697176695, 0.007619587238878012, 0.0056624277494847775, -0.008931569755077362, 0.0004359005833975971, -0.010113795287907124, 0.006613974925130606, 0.007122187875211239, -0.01738736592233181, 0.01216106303036213, 0.003180835396051407, 0.0031988569535315037, -0.01420833170413971, 0.005456979852169752, -0.026902837678790092, 0.021957674995064735, 0.007068122271448374, 0.003115957137197256, 0.006758148781955242, -0.007122187875211239, -0.010834664106369019, -0.0005289377877488732, -0.011072550900280476, 0.0035773133859038353, 0.014936409890651703, 0.015311261638998985, -0.006087740417569876, 0.013458628207445145, -0.0018490294460207224, -0.009054116904735565, -0.004992019385099411, 0.00034601721563376486, 0.006318418309092522, 0.0073961177840828896, 0.005813810043036938, 0.01151948980987072, 0.0031862419564276934, -0.008174656890332699, -0.0006370681803673506, 0.006711292080581188, 0.0022941662464290857, -0.006199474912136793, 0.0035538850352168083, 0.005936357658356428, 0.004141393583267927, 0.008881108835339546, -0.00483342818915844, -0.013393749482929707, 0.01146182045340538, -0.0038494414184242487, -0.030420679599046707, -0.01683950424194336, 0.002869059331715107, 0.0017994696972891688, -0.01304052397608757, -0.003957571927458048, -0.0038350240793079138, 0.007662839721888304, 0.004721693228930235, 0.004166624043136835, 0.0073961177840828896, 0.00952989049255848, 0.00028564443346112967, 0.0008677463047206402, 0.004981206264346838, -0.0177189651876688, 0.02182791940867901, -0.018843520432710648, 0.009587560780346394, 0.013083775527775288, -0.021885588765144348, -0.009875907562673092, 0.008376499637961388, 0.0011443798430263996, 0.009681273251771927, 0.02015550248324871, 0.005446166731417179, 0.011728541925549507, 0.014503887854516506, -0.014496679417788982, -0.023658927530050278, 0.021510737016797066, -0.03728335350751877, 0.0036097525153309107, -0.005770558025687933, 0.023990526795387268, 0.01087791658937931, -0.018857937306165695, 0.027320941910147667, 0.0019139077048748732, 0.0053884973749518394, 0.0010344473412260413, 0.022750630974769592, 0.003456567879766226, 0.021553989499807358, -0.005792183801531792, -0.005240718834102154, 0.0180073119699955, 0.007720509078353643, 0.009364090859889984, -0.012910767458379269, 0.019910406321287155, 0.009811029769480228, 0.0008456696523353457, -0.006022862158715725, -0.0045631020329892635, -0.008398125879466534, 0.008253952488303185, -0.03575511276721954, -0.0053776842541992664, 0.0021265640389174223, 0.0442902036011219, -0.006012049037963152, -0.012903559021651745, 0.01954997330904007, -0.015340096317231655, 0.014777818694710732, 0.008729726076126099, 0.007518665865063667, -0.014511097222566605, -0.017416199669241905, -0.032640956342220306, -0.006714896764606237, -0.01921837218105793, 0.0009168555261567235, -0.011346480809152126, -0.003002420300617814, 0.0012471036752685905, -0.010589568875730038, -0.0004086427215952426, -0.015469852834939957, 0.0022635292261838913, 0.006138201337307692, 0.009082951582968235, 0.002906905021518469, 0.0013498276239261031, -0.013826271519064903, -0.012997271493077278, -0.019578807055950165, 0.003685443662106991, -0.003294372232630849, 0.0015354513889178634, 0.01695484295487404, -0.014056948944926262, 0.010322846472263336, -0.023961691185832024, -0.025461100041866302, -0.00615982711315155, -0.001271433080546558, -0.0048622628673911095, 0.01558519247919321, -0.009277586825191975, 0.004671232309192419, -0.0028023789636790752, -0.012204315513372421, 0.003269141772761941, 0.0025554813910275698, -0.010950002819299698, -0.0058858972042799, -0.011591576971113682, -0.017805468291044235, -0.014496679417788982, -0.003306987462565303, -0.0013813655823469162, -0.0015066165942698717, -0.027277691289782524, -0.03526492044329643, 0.02586478739976883, 0.0012894547544419765, -0.0009785799775272608, -0.005929149221628904, 0.014071366749703884, 0.018410999327898026, 0.015239174477756023, 0.0016264611622318625, 0.014460636302828789, 0.011187889613211155, 0.05397868528962135, -0.020025746896862984, -0.01335049793124199, -0.025879204273223877, -3.0045603125472553e-05, -0.014669688418507576, -0.012067350558936596, 0.01916070282459259, 0.004700066987425089, -0.01822357252240181, 0.011007672175765038, -0.004076515324413776, 0.004108954221010208, 0.007014057133346796, -0.002755522495135665, -0.009313629940152168, -0.005986818578094244, -0.0015904176980257034, 0.017690129578113556, 0.004105350002646446, -0.018310077488422394, 0.009457804262638092, 0.004364863038063049, 0.015268009155988693, -0.00844858679920435, 0.008059317246079445, 0.02171258069574833, -0.028661759570240974, 0.0017571186181157827, 0.03344833105802536, 0.015037331730127335, -0.016608826816082, 0.012370115146040916, -0.0017508111195638776, -0.011058133095502853, -0.010387725196778774, -0.009674064815044403, -0.02165491133928299, -0.01046702079474926, -0.0029970137402415276, -0.00023248032084666193, 0.007381700444966555, 0.0027212812565267086, -0.00199500541202724, -0.016147470101714134, -0.008181865327060223, 0.013905567117035389, -0.015441018156707287, 0.015988878905773163, -0.012889141216874123, 0.004116163123399019, 0.006599557586014271, 0.014056948944926262, 0.021409815177321434, -0.013494671322405338, -0.008621595799922943, -0.02005458064377308, 0.02198651060461998, -0.021856753155589104, -0.021193554624915123, -0.00440090661868453, -0.012737758457660675, 0.019809486344456673, 0.0015750991879031062, 0.0009051414090208709, 0.00810977816581726, -0.01717110350728035, -0.010726533830165863, 0.010834664106369019, -0.007360074669122696, -0.0006415735697373748, 0.010640029795467854, -0.013429793529212475, 0.015657279640436172, 0.00019418413285166025, -0.018641676753759384, -0.03676432743668556, 0.0014723753556609154, 0.009774986654520035, 0.002867257222533226, 0.008297204039990902, -0.017747798934578896, -0.00850625615566969, 0.023731013759970665, 0.019420215860009193, -0.0012696308549493551, 0.009479429572820663, 0.01229802891612053, 0.017156686633825302, 0.005219093058258295, 0.012802637182176113, -0.008549508638679981, -0.0001164654313470237, 0.002744709374383092, 0.009897533804178238, 0.004195458721369505, 0.002641985658556223, -0.0006122882477939129, 0.023240823298692703, -0.02303897961974144, -0.005345244891941547, 0.008816230110824108, -0.017646877095103264, -0.018569590523838997, -0.00839091744273901, 0.0027248854748904705, -0.028315741568803787, 0.010892333462834358, 0.0003949011443182826, -0.015714948996901512, -0.01960764266550541, 0.023240823298692703, -0.005990422796458006, -0.02138097956776619, -0.010387725196778774, -0.019968077540397644, -0.030593689531087875, 0.01572936587035656, 0.020025746896862984, 0.017300860956311226, -0.012507081031799316, -0.0026527985464781523, 0.008491839282214642, 0.020905205979943275, -0.009991247206926346, -0.011231142096221447, -0.0021247619297355413, -0.002005818532779813, -0.020847536623477936, 0.010488647036254406, 0.016810670495033264, 0.0038638589903712273, -0.01645023562014103, 0.007713300175964832, 0.008304413408041, 0.022303692996501923, 0.011418567970395088, -0.002840224653482437, -0.01943463273346424, -0.016983678564429283, -0.0009362288983538747, -0.012096185237169266, -0.007424952927976847, 0.032813966274261475, 0.016608826816082, 0.006873487960547209, 0.0007889012340456247, -0.00891715195029974, -0.0009731734171509743, -0.01359559316188097, 0.009371299296617508, 0.03439987823367119, -0.003155604936182499, 0.010128212161362171, 0.005312805995345116, 0.01806498132646084, 0.021179137751460075, -0.029440298676490784, 0.006617579143494368, 0.0135667584836483, 0.0025825139600783587, 0.023457083851099014, -0.0023464292753487825, 0.003269141772761941, 0.006682457402348518, 0.01666649617254734, 0.00792235229164362, -0.0029988158494234085, -0.007014057133346796, -0.007713300175964832, 0.00023608465562574565, 0.01816590316593647, 0.0020454663317650557, 0.011656454764306545, 0.01867051236331463, 0.0013507286785170436, -0.006920344196259975, -0.01055352482944727, 0.014316461980342865, -0.007039287593215704, -0.003341228701174259, -0.0058678751811385155, 0.016536738723516464, -0.004065702203661203, 0.010344472713768482, 0.006650018505752087, -0.008160239085555077, -0.00473611056804657, 0.02629730850458145, 0.0069275530986487865, 0.019074199721217155, -0.004098141565918922, 0.006451779510825872, 0.007028474472463131, -0.006055301055312157, 0.0010867103701457381, -0.02153957076370716, 0.01590237393975258, 0.018915608525276184, 0.00545337563380599, 0.0076844654977321625, 0.011252768337726593, 0.013660470955073833, 0.03252561762928963, -0.01843983493745327, 0.001065084245055914, -0.009284795261919498, -0.0012002472067251801, -0.00827557872980833, -0.0009398332331329584, 0.025345761328935623, -0.02071778103709221, 0.000875856087077409, -0.0017039545346051455, 0.0077277179807424545, 3.956332875532098e-05, -0.0007168143056333065, -0.013646054081618786, -0.00971731636673212, -0.018857937306165695, 0.009277586825191975, -0.0032475157640874386, 0.007605169899761677, 0.01348025444895029, 0.006959991995245218, -0.030420679599046707, -0.006862674839794636, 0.02857525460422039, -0.011476237326860428, -0.028142733499407768, -0.004519850015640259, 0.012370115146040916, -0.00919108185917139, -0.004260336980223656, -0.013559550046920776, -0.00483342818915844, -0.0199392419308424, -0.020011328160762787, -0.019622059538960457, -0.0024833944626152515, 0.016911590471863747, -0.018180321902036667, -0.028820350766181946, 0.0003052430402021855, -0.003225889755412936, 0.022548789158463478, 0.022346945479512215, 0.005532671231776476, -0.029988158494234085, 0.013458628207445145, 0.012954019010066986, -0.0037989807315170765, -0.015008497051894665, -0.003667422104626894, 0.0077421353198587894, 0.0040260544046759605, -0.019232790917158127, -0.004231502301990986, -0.003957571927458048, 0.002366253174841404, 0.008650430478155613, 0.0018508316716179252, 0.012694506905972958, -0.021006127819418907, -0.005893105641007423, -0.028431080281734467, 0.007828639820218086, -0.009436178021132946, -0.0135667584836483, -0.034688226878643036, -0.03168940916657448, 0.012593585066497326, -0.014381340704858303, 0.01093558594584465, -0.019261624664068222, -0.00575974490493536, -0.022231606766581535, -0.006610370706766844, 0.013934401795268059, 0.017372947186231613, 0.007331239525228739, -0.012535915710031986, -0.020400598645210266, -0.013062150217592716, 0.005002832040190697, -0.022346945479512215, 0.016104217618703842, -0.009760568849742413, 0.001189434202387929, 0.019016528502106667, -0.023067815229296684, 0.014612019062042236, -0.012831471860408783, 0.022231606766581535, -0.009313629940152168, -0.015541939996182919, 0.020314093679189682, 0.021121468394994736, -0.011584367603063583, -0.006967200897634029, -0.009537099860608578, -0.00440090661868453, 0.01649348810315132, 0.006805005017668009, 0.010308429598808289, 0.006880696397274733, 0.005648009944707155, -0.010596777312457561, -0.02313990145921707, -0.0020436642225831747, 0.010978837497532368, 0.04149322956800461, -0.02021317183971405, 0.02625405602157116, -0.0045414757914841175, -0.02647031657397747, -0.02730652503669262, 0.00641213171184063, 0.026773082092404366, 0.007900726050138474, 0.01110859401524067, -0.008527882397174835, -0.014215540140867233, 0.02995932474732399, 0.020472684875130653, -0.004357654135674238, 0.013256784528493881, 0.0018634469015523791, -0.012420576065778732, -0.001334509113803506, 0.018757017329335213, 0.001227279775775969, -0.015080583281815052, -0.016291644424200058, -0.0006303099798969924, 0.004811801947653294, 0.002241903217509389, -0.010099377483129501, -0.016637660562992096, -0.003979198168963194, -0.030247671529650688, 0.01705576479434967, -0.001465166686102748, 0.012024098075926304, 0.008542300201952457, 0.019477885216474533, 0.02426445670425892, 0.010640029795467854, 0.0029573659412562847, -0.008758560754358768, -0.007698882836848497, 0.0004025603993795812, -0.005485814530402422, 0.002656402997672558, -0.009183873422443867, -0.020674528554081917, 0.0005942665156908333, 0.0038278154097497463, 0.0010731939692050219, -0.0072159008122980595, -0.013112611137330532, -0.01182225439697504, -0.0037773544900119305, -0.027984142303466797, 0.0028996963519603014, 0.007334844209253788, 0.016796251758933067, 0.010041708126664162, -0.004948766902089119, -0.007363678887486458, 0.009681273251771927, -0.008902734145522118, -0.011094177141785622, 0.03192008659243584, 0.016291644424200058, -0.006729314103722572, -0.005875084083527327, -0.008823438547551632, 0.0034980177879333496, 0.012283611111342907, 0.005590340588241816, 0.0015823078574612737, 0.022058596834540367, 0.0038494414184242487, 0.0031916482839733362, 0.0017372947186231613, 0.013581175357103348, -0.039013441652059555, -0.001027238555252552, -0.016190722584724426, -0.0027501159347593784, -0.009075743146240711, 0.012478245422244072, 0.0274218637496233, -0.006347253452986479, -0.0036890481133013964, 0.0016120437067002058, -0.011396941728889942, 0.014165080152451992, 0.00880181323736906, -0.017517121508717537, -0.04143556207418442, -0.004199062939733267, 0.01699809543788433, -0.0009290201705880463, -0.005258740857243538, 0.0017634262330830097, -0.019261624664068222, 0.013963236473500729, 0.008124195970594883, 0.0006636502221226692, 0.007010452914983034, 0.023788683116436005, -0.00445857597514987, -0.022577622905373573, -0.0021463879384100437, 0.0006059806910343468, -0.012997271493077278, -0.002814994193613529, 0.006271562073379755, 0.007475413382053375, -0.0021355750504881144, -0.0027122702449560165, -0.021453067660331726, 0.02769579365849495, 0.001465166686102748, 0.005961588118225336, 0.02070336416363716, -0.01701251231133938, 0.02425003983080387, -0.0013804645277559757, -0.01999691128730774, 0.01849750429391861, 0.03402502462267876, -0.0038710676599293947, -0.011901549994945526, 0.005932753439992666, -0.003227691864594817, 0.010257968679070473, -0.018338913097977638, 0.03079553134739399, 0.011533907614648342, -0.00024351863248739392, 0.006210288032889366, 0.0105246901512146, -0.012413367629051208, -0.0021553989499807358, 0.0020346532110124826, -0.011706915684044361, -0.020342929288744926, -0.004988414701074362, -0.002202255418524146, 0.05340199172496796, 0.011396941728889942, -0.018093816936016083, 0.02331290952861309, -0.01257195882499218, -0.014821070246398449, 0.0011488852323964238, 0.022635292261838913, 0.023514753207564354, -0.008196283131837845, 0.0013273004442453384, -3.8493290048791096e-05, 0.008080943487584591, -0.009176664985716343, 0.012853098101913929, -0.007277174387127161, 0.02569177746772766, -0.013905567117035389, -0.0038710676599293947, -0.005128984339535236, -0.0041522067040205, 0.010611194185912609, 0.028921272605657578, 0.02652798593044281, -0.003088924568146467, -0.02524483948945999, 0.00668606162071228, -0.0007812419789843261, 0.011072550900280476, -0.00018258264753967524, -0.01727202534675598, -0.026513569056987762, -0.005691262427717447, -0.01049585547298193, 0.002366253174841404, 0.0023338140454143286, 0.012723341584205627, -0.01071932539343834, 0.004570310935378075, 0.0019877967424690723, 0.010517481714487076, -0.0116348285228014, -0.01334328856319189, 0.006732918322086334, 0.013862314634025097, 0.005738118663430214, -0.012024098075926304, 0.00792235229164362, -0.003006024518981576, 0.00242932909168303, 0.01204572431743145, 0.00020184337336104363, -0.006030071061104536, -0.02204417996108532, 0.021698161959648132, 0.00040729111060500145, -0.0003135780862066895, -0.014748984016478062, -0.02448071725666523, 0.0024004944134503603, -3.4635511838132516e-05, 0.004191854503005743, 0.01799289509654045], "6931ad56-a9f8-4e1f-8686-8d827b8c28d3": [0.0072865355759859085, -0.033875152468681335, -0.0009842050494626164, 0.017114512622356415, -0.02303381636738777, -0.004355031996965408, -0.004318840801715851, 0.02330726385116577, -0.00936955213546753, 0.034293364733457565, 0.00436709588393569, 0.0066994307562708855, 0.012763501144945621, -0.013648180291056633, 0.0016788789071142673, 0.030481204390525818, -0.033456940203905106, 0.017934851348400116, -0.010543761774897575, -0.017114512622356415, 0.029290908947587013, -0.049252476543188095, -0.030915500596165657, 0.01562664285302162, 0.014862602576613426, -0.010961974039673805, -0.023516369983553886, 0.01576336659491062, -0.04059871286153793, 0.020733652636408806, 0.010801123455166817, -0.02192394807934761, 0.03342477232217789, 0.010648314841091633, -0.012546353042125702, -0.031237201765179634, 0.007797236554324627, 0.02739286981523037, -0.02572002448141575, -0.020283270627260208, -0.012329204939305782, 0.029934311285614967, 0.018787359818816185, -0.019060805439949036, -0.005738347768783569, 0.00914436113089323, -0.05935389921069145, -0.016406768932938576, 0.0037639059592038393, -0.0169054064899683, -0.009819934144616127, 0.035290639847517014, -0.048962946981191635, 0.04124211519956589, 0.03812161087989807, -0.053981486707925797, 0.004206245299428701, 0.10210800915956497, 0.02136097103357315, -0.021425310522317886, 0.006852238904684782, -0.018642593175172806, -0.009232829324901104, 0.012063801288604736, -0.009739508852362633, 0.004125820007175207, -0.048962946981191635, 0.028390144929289818, -0.024111516773700714, 0.017580978572368622, 0.009787763468921185, 0.01746838353574276, -0.017452297732234, -0.010543761774897575, -0.0018085648771375418, -0.011130866594612598, 0.07000221312046051, 0.029419589787721634, 0.012473969720304012, -0.03448638692498207, 0.00569009268656373, 0.010712655261158943, 0.005967560224235058, 0.010020997375249863, 0.03603055328130722, 0.0011732046259567142, -0.007391088642179966, -0.044941678643226624, -0.037220846861600876, -0.03310307115316391, 0.0041217985562980175, 0.02961261011660099, 0.02219739370048046, 0.012916309759020805, -0.0035728956572711468, 0.00018724024994298816, 0.02039586566388607, 0.016278088092803955, -0.0304490327835083, -0.01883561536669731, -0.01677672564983368, -0.015530132688581944, 0.0069487495347857475, -0.00632545305415988, 0.004202223848551512, 0.03776773810386658, 0.015843791887164116, 0.00984406191855669, 0.009538445621728897, 0.026379510760307312, 0.002567579038441181, -0.04709707945585251, 0.005891155917197466, -0.00025283716968260705, -0.024401048198342323, -0.04220721870660782, -0.0499923899769783, 0.01661587506532669, -0.03004690632224083, 0.009586700238287449, 0.01327822357416153, 0.016455024480819702, 0.02137705497443676, 0.027312444522976875, -0.022872965782880783, 0.0011128856567665935, -0.033038727939128876, 0.05813143402338028, 0.02235824428498745, -0.005730305332690477, -0.025205301120877266, 0.04034135118126869, 0.05639424920082092, -0.005054732784628868, 0.012908266857266426, 0.009964699856936932, 0.06031900644302368, 0.0676216259598732, -0.0017241182504221797, 0.016728470101952553, -0.02430453710258007, -0.03673829510807991, -0.010262273252010345, 0.009546487592160702, -0.017806170508265495, -0.04172466695308685, -0.04304364323616028, 0.05530046299099922, 0.0027445147279649973, 0.018256552517414093, -0.05124702677130699, -0.02697465941309929, -0.016286130994558334, 0.001775389420799911, 0.028277549892663956, 0.002035766374319792, 0.009739508852362633, 0.027907593175768852, -0.015747280791401863, 0.010632229968905449, 0.04037351906299591, -0.02501228079199791, 0.003552789334207773, 0.036802634596824646, 0.025478746742010117, 0.008412490598857403, 0.03644876554608345, 0.016093110665678978, -0.021151864901185036, 0.030963756144046783, 0.024529729038476944, -0.031076351180672646, -0.0012737363576889038, -0.03294222056865692, -0.017291447147727013, -0.008661809377372265, 0.0405343696475029, 0.009337381459772587, -0.0034401938319206238, -0.03464723750948906, -0.03757471963763237, 0.003928777761757374, 0.018224382773041725, 0.019752463325858116, 0.009771678596735, 0.03857199102640152, 0.006884409114718437, 0.007873640395700932, -0.003023992758244276, 0.01648719422519207, -0.020637141540646553, -0.004922030959278345, 0.02682989276945591, 0.0014778155600652099, 0.007350875996053219, 0.024610154330730438, -0.003289396408945322, -0.008428575471043587, -0.009449977427721024, -0.005963538773357868, -0.03705999627709389, -0.03995530679821968, -0.024513643234968185, 0.005557390861213207, 0.006277197971940041, 0.009514317847788334, -0.0026982701383531094, -0.025768278166651726, 0.024803174659609795, -0.033167410641908646, 0.049831539392471313, -0.031124606728553772, -0.002430855995044112, -0.02641168236732483, 0.02362896502017975, 0.05356327444314957, -0.004624457098543644, 0.02097492851316929, -0.013575796969234943, -0.018787359818816185, 0.00753987580537796, -0.008629638701677322, 0.0006308362353593111, -0.04384789615869522, -0.02808452770113945, -0.014918900094926357, -0.019639868289232254, 0.01558643113821745, 0.009449977427721024, -0.01759706437587738, 0.0030461098067462444, 0.01676063984632492, -0.02568785287439823, -0.003820203710347414, -0.023918496444821358, 0.016841067001223564, 0.04024484008550644, -0.0038925863336771727, 0.009256956167519093, -0.0018216338939964771, -0.008223490789532661, 0.03760688751935959, -0.032218389213085175, -0.02584870345890522, 0.01984897442162037, 0.004720967262983322, -0.014838474802672863, 0.03030426800251007, 0.003552789334207773, 0.02502836473286152, 0.019639868289232254, -0.0004983857506886125, -0.021328799426555634, 0.00028978256159462035, -0.03619140386581421, 0.04178900644183159, 0.03911888599395752, 0.02514096163213253, -0.022470839321613312, -0.03307089954614639, 0.01621374860405922, 0.028744015842676163, -0.021184034645557404, 0.046164143830537796, 0.015956386923789978, -0.0006705462583340704, 0.0075519392266869545, 0.05394931882619858, 0.002794780535623431, 0.05082881450653076, -0.008661809377372265, -0.02443321794271469, -0.0002827453427016735, 0.014219200238585472, -0.02962869592010975, -0.005509135778993368, -0.0026841957587748766, 0.011010228656232357, 0.0029174291994422674, -0.02401500567793846, 0.03551582992076874, 0.016237875446677208, 0.019945483654737473, 0.0027063125744462013, 0.010334656573832035, 0.020202845335006714, -0.010921761393547058, -0.052469491958618164, -0.05668377876281738, -0.005657922476530075, -0.014170944690704346, -0.0033275983296334743, -0.0015170229598879814, 0.03757471963763237, -0.01516821887344122, -0.025768278166651726, -0.013760775327682495, -0.02065322734415531, 0.0057142204605042934, -0.03786424919962883, -0.026990743353962898, -0.01873910427093506, -0.025333981961011887, -0.04619631543755531, 0.03973011672496796, -0.02596130035817623, 0.02779499813914299, -0.014806305058300495, -0.03786424919962883, -0.004688797518610954, 0.025945214554667473, 0.007073408458381891, 0.028888782486319542, -0.012691118754446507, 0.02597738429903984, -0.01634242944419384, -0.027264190837740898, -0.028277549892663956, 0.01460524182766676, -0.010961974039673805, -0.004101692233234644, -0.03286179527640343, -0.03802509978413582, 0.03057771362364292, 0.03073856420814991, -0.013302351348102093, 0.026942487806081772, -0.028052357956767082, 0.001379294553771615, -0.034036003053188324, -0.01132388785481453, -0.02850273996591568, 0.010463336482644081, 0.017693575471639633, -0.04330100119113922, -0.013149542734026909, -0.025366151705384254, -0.03699565678834915, -0.020781908184289932, -0.009289126843214035, -0.030127331614494324, -0.010785037651658058, -0.040437862277030945, -0.00949019007384777, -0.04285062104463577, -0.0327170267701149, 0.01955944299697876, 0.02079799212515354, 0.025913044810295105, -0.0379929319024086, 0.0010405028006061912, -0.019784633070230484, 0.04188551753759384, -0.013173670507967472, 0.0037900442257523537, 0.009248914197087288, -0.015393409878015518, 0.021570075303316116, 0.021167948842048645, 0.0024228133261203766, -0.01249005552381277, -0.021425310522317886, 0.0064340271055698395, 0.0065747713670134544, 0.003830256871879101, 0.010350741446018219, -0.012787628918886185, -0.016873236745595932, -0.05356327444314957, -0.019044719636440277, -0.005328178871423006, 0.037220846861600876, -0.01494302786886692, -0.009827976115047932, -0.011074569076299667, -0.050217583775520325, 0.06462980061769485, 0.02473883517086506, 0.011838610284030437, 0.03085116110742092, 0.004059468861669302, 0.012264864519238472, -0.027280274778604507, -0.006072113290429115, 0.08222686499357224, 0.024368878453969955, 0.016535449773073196, -0.024964025244116783, -0.00942584965378046, 0.00846074614673853, -0.013318436220288277, -0.016310259699821472, -0.006514452397823334, 0.0012254811590537429, -0.003741788910701871, -0.00949823297560215, 0.0039810542948544025, -0.013358648866415024, 0.05137570574879646, 0.0074192374013364315, -0.010873505845665932, 0.001215427997522056, 0.003068226622417569, -0.039054546505212784, -0.003693533828482032, -0.014565029181540012, -0.023162497207522392, -0.012264864519238472, 0.002625887282192707, -0.018610423430800438, 0.011822524480521679, -0.02152182161808014, 0.0039890967309474945, -0.005300029646605253, 0.01034269854426384, 0.0004905945970676839, -0.0017552829813212156, 0.01264286320656538, -0.055268295109272, -0.01941467635333538, 0.02877618558704853, 0.01857825368642807, 0.016262004151940346, -0.009900359436869621, -0.019173400476574898, 0.0026158341206610203, 0.0065747713670134544, 0.009289126843214035, 0.0031848433427512646, 0.004351011011749506, 0.015047580935060978, 0.02306598797440529, -0.014790220186114311, -0.007258386816829443, 0.009594743140041828, 0.010020997375249863, 0.03167149797081947, -0.022712115198373795, 0.00649434607475996, -0.007511726580560207, 0.014983240514993668, 0.05082881450653076, 0.016406768932938576, 0.01785442605614662, -0.03818595036864281, -0.029821716248989105, -0.04304364323616028, 0.020299356430768967, -0.01957552693784237, -0.010592017322778702, -0.005633795168250799, 0.02793976292014122, -0.023677220568060875, -0.023854155093431473, 0.018642593175172806, -0.03895803540945053, 0.021553991362452507, -0.002175505505874753, 0.028599251061677933, -0.05645858868956566, -0.00764442840591073, 0.013366691768169403, 0.009216743521392345, -0.006269155070185661, 0.035966210067272186, -0.02210088260471821, -0.0035749063827097416, 0.023661134764552116, 0.003826235421001911, 0.03622357174754143, 0.023403773084282875, 0.011050441302359104, 0.000460686394944787, 0.041692495346069336, 0.023291178047657013, -0.00846074614673853, -0.025205301120877266, -0.020926672965288162, 0.012546353042125702, 0.012763501144945621, -0.021264459937810898, 0.05227646976709366, -0.027585892006754875, 0.007009068503975868, -0.0074875992722809315, -0.0009545482462272048, -0.022390414029359818, 0.020846247673034668, -0.004202223848551512, 0.022390414029359818, -0.03574101999402046, 0.038893695920705795, 0.03442204371094704, 0.010672442615032196, 0.022663861513137817, -0.022116968408226967, 0.01844957284629345, -0.013004777021706104, -0.0021594204008579254, -0.030481204390525818, 0.01565881446003914, -0.0436227023601532, 0.020508460700511932, -0.014404178597033024, -0.018948210403323174, 0.049220308661460876, -0.026797723025083542, 0.011468653567135334, 0.0009258967475034297, -0.019881144165992737, -0.017838340252637863, -0.0012958532897755504, -0.0399874784052372, 0.004399266093969345, -0.0021453460212796926, -0.004990392364561558, -0.018079616129398346, -0.0016829002415761352, 0.0026198553387075663, 0.011299760080873966, -0.009409764781594276, -0.03202537074685097, -0.04371921345591545, 0.012401587329804897, 0.012063801288604736, -0.002941556740552187, 0.0007871630368754268, -0.002440909156575799, 0.06228138133883476, -1.705896829662379e-05, -0.0042545003816485405, 0.01305303256958723, -0.006631069350987673, -0.0018960273591801524, -0.01788659580051899, -0.013664265163242817, 0.006333495490252972, -0.025800449773669243, 0.003418077016249299, 0.009168488904833794, -0.028181038796901703, 0.017243193462491035, -0.03574101999402046, -0.014074434526264668, -0.010527676902711391, 0.003038067137822509, 0.009691253304481506, -0.001888990169391036, -0.00747553538531065, 0.007029174827039242, -0.019929399713873863, -0.005585539620369673, 0.008838744834065437, -0.01544970739632845, -0.009466062299907207, 0.009827976115047932, 0.015369282104074955, 0.006723558530211449, -0.006803983822464943, -0.006586835253983736, -0.0002483132411725819, 0.0090880636125803, 0.0005172354867681861, 0.005340242758393288, -0.01591617427766323, -0.0014406188856810331, -0.0062852404080331326, -0.007346854545176029, -0.015264729037880898, -0.006727579515427351, 0.02264777570962906, 0.00660694157704711, 0.021634416654706, -0.007415216416120529, 0.008645723573863506, 0.012353331781923771, -0.03509761765599251, -0.005243732128292322, -0.04719359055161476, 0.005702156573534012, 0.00943389255553484, -0.023114241659641266, -0.00019591109594330192, -0.02210088260471821, -0.0005139681743457913, 0.0013491350691765547, -0.009409764781594276, -0.03648093342781067, -0.021698756143450737, 0.02248692512512207, -0.014750007539987564, 0.04529555141925812, -0.010020997375249863, -0.030818989500403404, -0.005054732784628868, 0.020154589787125587, -0.001509985770098865, 0.002280058339238167, 0.030079076066613197, -0.008436618372797966, 0.0001279265561606735, 0.009096105583012104, 0.015047580935060978, -0.04600329324603081, -0.037220846861600876, 0.006200793664902449, -0.02921048365533352, 0.018256552517414093, -0.007077429909259081, -0.03252400830388069, -0.0002549734490457922, -0.004841605667024851, 0.03956926614046097, -0.006188729777932167, 0.02306598797440529, 0.023098157718777657, 0.01034269854426384, 0.006984940730035305, -0.0006539585301652551, -0.046324994415044785, 0.04864124581217766, 0.012618735432624817, 0.02557525783777237, -0.005074839107692242, 0.009602785110473633, 0.040437862277030945, -0.04384789615869522, -0.007149812765419483, -0.0029315035790205, 0.01986505836248398, -0.04523121193051338, -0.0008112906361930072, -0.02530181221663952, -0.017774000763893127, 0.03043294884264469, -0.012626778334379196, -0.001088757999241352, -0.011919035576283932, -0.00227000517770648, 0.0012144226348027587, -0.029500015079975128, 0.0028671633917838335, 0.005589561071246862, -0.0003754858043976128, -0.005392518825829029, -0.032347071915864944, 0.016664130613207817, -0.020058080554008484, 0.018610423430800438, 0.023017732426524162, -0.016141366213560104, 0.015039538033306599, -0.005863007158041, 0.009096105583012104, 0.0027384827844798565, -0.015731196850538254, -0.01716276817023754, 0.02584870345890522, 0.031623244285583496, 0.03015950322151184, -0.013937711715698242, -0.028181038796901703, 0.02753763645887375, 0.027489380910992622, 0.030416863039135933, 0.02596130035817623, -0.023821985349059105, 0.0037618952337652445, 0.0324435830116272, 0.00758410943672061, 0.011975333094596863, -0.046292826533317566, -0.002768642269074917, -0.009884274564683437, 0.0032190242782235146, -0.010736783035099506, -0.005139179062098265, 0.005967560224235058, -0.014870645478367805, -0.025092706084251404, 0.01200750283896923, -0.035548001527786255, 0.007604215759783983, 0.015884004533290863, 0.022969476878643036, -0.015964429825544357, -0.0006544612115249038, 0.0012918320717290044, -0.024545812979340553, 0.011524951085448265, -0.0016386662609875202, 0.007909832522273064, -0.008742234669625759, 0.030481204390525818, 0.0065506440587341785, -0.011565163731575012, -0.014758049510419369, -0.02792367711663246, -0.02165050059556961, -0.012570480816066265, -0.031076351180672646, 0.011235419660806656, -0.013833158649504185, -0.0019573518075048923, -0.02810061350464821, 0.01500736828893423, -0.004922030959278345, -0.013551670126616955, 0.028856610879302025, 0.009900359436869621, 0.0014878688380122185, 0.0004189657629467547, 0.0023464092519134283, 0.01677672564983368, -0.018192211166024208, -0.02279254049062729, -0.005754433106631041, 0.00632545305415988, -0.027055084705352783, 0.023435944691300392, 0.0014577092370018363, 0.0587104968726635, -0.027441125363111496, -0.035966210067272186, -0.007370982319116592, 0.04146730527281761, 0.025366151705384254, 0.012723288498818874, 0.027312444522976875, 0.009289126843214035, 0.04172466695308685, -0.007664534728974104, 0.025189217180013657, 0.014114647172391415, -0.0013250074116513133, -0.015345154330134392, -0.01431571040302515, 0.006329474039375782, 0.06157363951206207, 0.014814347960054874, 0.014717836864292622, 0.024272367358207703, -0.0034985023085027933, -0.023693304508924484, -0.0016135333571583033, -0.013744690455496311, 0.0268138088285923, 0.007334791123867035, -0.008525085635483265, -0.01431571040302515, 0.009667125530540943, -0.027859337627887726, 0.0035829488188028336, -0.005304051097482443, 0.024240197613835335, -0.032459668815135956, 0.03802509978413582, 0.003514587413519621, 0.03776773810386658, 0.02124837413430214, -0.003645278513431549, 0.015111921355128288, -0.026620786637067795, 0.007177961524575949, -0.03442204371094704, 0.033746473491191864, 0.0032552157063037157, -0.044073086231946945, 0.01097805891185999, 0.015240602195262909, 0.025044450536370277, 0.02793976292014122, 0.019350336864590645, 0.01664804480969906, -0.014830432832241058, -0.003295428352430463, 0.0033999811857938766, -0.02066931314766407, 0.002002591034397483, -0.010801123455166817, -0.032041456550359726, -0.031237201765179634, 0.014082476496696472, 0.008702022023499012, 0.015827706083655357, -0.00419015996158123, -0.00860551092773676, -0.012803713791072369, 0.0024288452696055174, 0.004411329980939627, -0.002859120722860098, -0.018674762919545174, 0.019109060987830162, 0.017275363206863403, 0.012851969338953495, 0.0022780478466302156, 0.016567619517445564, 0.0002045819564955309, 0.0027927698101848364, -0.003607076359912753, -0.010583974421024323, -0.011991417966783047, -0.005702156573534012, 0.03702782467007637, -0.011090653948485851, -0.028872696682810783, -0.03673829510807991, 0.027843251824378967, -0.02274428680539131, 0.011613419279456139, 0.01759706437587738, 0.017822254449129105, 0.010986101813614368, 0.01788659580051899, -0.03754254803061485, -0.01939859241247177, 0.004033330827951431, 0.013382776640355587, 0.040051817893981934, 0.014983240514993668, -0.004877796862274408, -0.002410749439150095, 0.01870693452656269, 0.007720832712948322, 0.012055758386850357, -0.03622357174754143, -0.008887000381946564, -0.026041725650429726, -0.007177961524575949, -0.015602516010403633, -0.013173670507967472, -0.06533754616975784, -0.026604702696204185, 0.023725474253296852, 0.0421750470995903, 0.02697465941309929, -0.014613283798098564, 0.036802634596824646, -0.03202537074685097, 0.011637547053396702, 0.0028209188021719456, -0.016302216798067093, -0.012063801288604736, 0.004383181221783161, 0.023934580385684967, 0.012047715485095978, 0.017934851348400116, -0.01647111028432846, 0.03017558716237545, 0.043815724551677704, 0.009771678596735, 0.025398321449756622, 0.0290818028151989, 0.009908401407301426, -0.01650328002870083, -0.005951475352048874, 0.009546487592160702, 0.01069657038897276, -0.023564623668789864, -0.0019201550167053938, 0.011227377690374851, 0.043815724551677704, 0.01453285850584507, -0.019350336864590645, 0.011275632306933403, 0.01565077155828476, -0.034003835171461105, -0.007202089298516512, 0.007334791123867035, -0.008223490789532661, -0.029709121212363243, 0.021875692531466484, -0.0026439831126481295, 0.008227512240409851, 0.008215448819100857, -0.0017402032390236855, 0.027553720399737358, -0.007350875996053219, -0.005312093533575535, -0.019897228106856346, -0.02192394807934761, 0.0017060225363820791, 0.00858138408511877, 0.015280814841389656, -0.029435673728585243, 0.0019784632604569197, -0.0008680910104885697, -0.014717836864292622, -0.00771279027685523, 0.011058484204113483, -0.012152268551290035, 0.014468519017100334, 0.001488874084316194, -0.027907593175768852, -0.017838340252637863, 0.0024368877056986094, -0.006128410808742046, 0.008718106895685196, -0.004833562765270472, -0.013535584323108196, 0.0054488168098032475, 0.004745095036923885, -0.009248914197087288, 0.0040655010379850864, 0.010302485898137093, -0.027344616129994392, -0.012723288498818874, -0.01984897442162037, 0.049638520926237106, -0.001471783732995391, -0.008006342686712742, 0.020991014316678047, 0.011709929443895817, -0.014629369601607323, 0.04159598425030708, 0.017725745216012, 0.01803136058151722, -0.017500553280115128, 0.013229968026280403, -0.009771678596735, -0.0005700145848095417, 0.03995530679821968, 0.0006705462583340704, 0.003928777761757374, -0.05124702677130699, 0.0020810056012123823, -0.029113972559571266, 0.005070817656815052, -0.00817523617297411, 0.015538175590336323, 0.005275902338325977, 0.020926672965288162, -0.015723153948783875, -0.011372143402695656, 0.03057771362364292, -0.054399698972702026, -0.014991283416748047, 0.017950935289263725, -0.02276037074625492, 0.028020188212394714, 0.002617844846099615, -0.02570393867790699, 0.035290639847517014, -0.019655952230095863, 0.005814752075821161, -0.0038543844129890203, -0.012256821617484093, 0.0028651526663452387, 0.014766092412173748, 0.00018321897368878126, 0.003032035194337368, 0.03226664662361145, 0.00014049300807528198, -0.0018568200757727027, 0.007909832522273064, -0.012699160724878311, -0.01648719422519207, 0.012200524099171162, 0.009570615366101265, 0.003914703615009785, 0.012803713791072369, 0.01619766280055046, -0.02234215848147869, 0.009023723192512989, -0.03168758377432823, 0.017227107658982277, -0.008565298281610012, 0.04619631543755531, -0.034904595464468, -0.0019844952039420605, -0.03114069066941738, -0.004616414662450552, -0.009466062299907207, 0.027618061751127243, -0.010680485516786575, -0.0029636737890541553, -0.019205570220947266, 0.003971001133322716, -0.002229792531579733, 0.005267859902232885, 0.0028349931817501783, -0.0013219915563240647, 0.0139055410400033, -0.0090880636125803, 0.04535989090800285, -0.0057785604149103165, -0.010238145478069782, 0.006076134275645018, -0.0009208701085299253, 0.0031506626401096582, 0.003520619124174118, -0.006345559377223253, 0.023693304508924484, -0.025108791887760162, 0.011693844571709633, 0.0181761272251606, -0.02961261011660099, -0.0006147511885501444, -0.006064070388674736, 0.004091639071702957, -0.020637141540646553, -0.02054063230752945, -0.03138196840882301, 0.03197711333632469, -0.01785442605614662, -0.0068321325816214085, 0.021972203627228737, 0.006872345227748156, -0.019221656024456024, 0.040727391839027405, -0.0032170135527849197, 0.0037538527976721525, 0.038346800953149796, 0.002133282134309411, -0.009916444309055805, 0.0011430451413616538, 0.021296629682183266, -0.017918765544891357, 0.005489029455929995, 0.022599520161747932, 0.03886152431368828, -0.020991014316678047, -0.011396270245313644, -0.026186490431427956, -0.009305211715400219, 0.013085202313959599, -0.004186138976365328, -0.00832402240484953, -0.010994143784046173, -0.01027835812419653, -0.0304490327835083, 0.0030440990813076496, 0.020186759531497955, 0.009112191386520863, 0.014709794893860817, -0.015522090718150139, 0.0033115134574472904, -0.05739152058959007, -0.023950666189193726, -0.023275094106793404, 0.00021400679543148726, -0.0019020593026652932, -0.015851834788918495, 0.031060265377163887, -0.0076685561798512936, -0.026894234120845795, -0.012610693462193012, 0.011902950704097748, 0.010768952779471874, -0.01488673035055399, 0.010133592411875725, -0.009112191386520863, -0.015892047435045242, -0.025092706084251404, -0.028325805440545082, -0.02221347950398922, -0.009763636626303196, -0.016020728275179863, 0.0029536206275224686, 0.023998921737074852, 0.009634955786168575, -0.01579553633928299, -0.01006121002137661, 0.0007801257888786495, 0.00023888838768471032, -0.012095971032977104, -0.010069252923130989, 0.021039268001914024, 0.0025213344488292933, -0.0019975644536316395, -0.00730262091383338, -0.02851882576942444, 0.008299894630908966, 0.006060049403458834, -0.010608102194964886, 0.005879092495888472, 0.020733652636408806, -0.016535449773073196, 3.56573291355744e-05, -0.009039808064699173, -0.01579553633928299, 0.028004102408885956, 0.0009042824385687709, 0.01018989086151123, -0.033328261226415634, 0.0007389077800326049, -0.034003835171461105, 0.019913313910365105, -0.0012244757963344455, -0.0220847986638546, -0.01997765339910984, 0.017580978572368622, 0.025092706084251404, -0.007716811262071133, 0.016302216798067093, -0.00405142642557621, -0.009168488904833794, 0.069809190928936, 0.020218931138515472, -0.021264459937810898, -0.005219604354351759, -0.03767123073339462, 0.0009188594995066524, 0.005513157229870558, 0.006136453244835138, 0.00038503631367348135, 0.004672712180763483, -0.019768549129366875, 0.0008575351675972342, 0.010961974039673805, 0.01996156945824623, 0.004019256215542555, -0.019076891243457794, 0.015996599569916725, 0.037092167884111404, -0.0038865546230226755, 0.003470353316515684, -0.01663196086883545, -0.0015612569404765964, -0.005223625805228949, 0.01069657038897276, -0.02177918143570423, -0.024401048198342323, -0.012071843259036541, 0.01355971209704876, -0.03484025597572327, -6.848720659036189e-05, 0.03336042910814285, 0.030561629682779312, 0.010648314841091633, 0.013149542734026909, -0.026089979335665703, 0.04539206251502037, -0.020910589024424553, 0.017677489668130875, -0.02222956344485283, 0.001311938394792378, -9.412277722731233e-05, 0.010640272870659828, 0.004290692042559385, -0.005577497184276581, -0.009739508852362633, -0.010326613672077656, 0.02111969329416752, 0.01915731653571129, 0.008251640014350414, -0.011935120448470116, -0.026990743353962898, 0.0032129923347383738, -0.009659083560109138, 0.011597334407269955, -0.012465927749872208, 0.002895312150940299, 0.014363965950906277, 0.00892721302807331, -0.0004634510260075331, -0.015216474421322346, 0.015674898400902748, -0.005509135778993368, -0.014138774946331978, -0.020138505846261978, 0.0220847986638546, 0.014484603889286518, 0.009972741827368736, -0.023709390312433243, -0.011130866594612598, -9.2803304141853e-05, 0.0017552829813212156, -0.0065586864948272705, -0.0009505269699729979, 0.0028852589894086123, 0.003866448299959302, -0.016390684992074966, 0.01425136998295784, -0.02584870345890522, 0.023645048961043358, -0.011975333094596863, -0.009305211715400219, 0.02111969329416752, -0.005738347768783569, 0.012473969720304012, 0.0081108957529068, 0.01188686490058899, -0.005915283691138029, -0.029290908947587013, -0.008364235050976276, -0.010825250297784805, -0.005416646599769592, -0.008790489286184311, 0.03254009410738945, 0.005995708983391523, 0.012272906489670277, -0.019382506608963013, -0.0005162301240488887, -0.0020729631651192904, 0.0016125281108543277, 0.008750276640057564, -0.01340690441429615, -0.020781908184289932, 0.005822794511914253, 0.006944728083908558, 0.05423884838819504, -0.019109060987830162, 0.004612393211573362, -0.014492645859718323, -0.028470570221543312, -0.006056027952581644, 0.014018137007951736, -0.0160850677639246, -0.005074839107692242, -0.007672577165067196, 0.02752155065536499, -0.017227107658982277, -0.009281083941459656, -0.012047715485095978, 0.02210088260471821, 0.0012284970143809915, -0.001886979560367763, 0.012176396325230598, 0.011171079240739346, 0.009409764781594276, -0.0278110820800066, 0.024256281554698944, -0.02792367711663246, 0.0001989270531339571, -0.029290908947587013, 0.006228942424058914, 0.0013038958422839642, -0.01677672564983368, -0.04246458038687706, 0.015506005845963955, 0.009819934144616127, -0.009578658267855644, -0.0014858581125736237, 0.018787359818816185, 0.0021634416189044714, -0.008227512240409851, 0.01425136998295784, 0.0025474727153778076, 0.028406230732798576, -0.007853534072637558, -0.0012878107372671366, -0.0030179608147591352, -0.03138196840882301, 0.035451490432024, 0.01047137938439846, -0.018771274015307426, 0.010318570770323277, -0.020090250298380852, 0.010205975733697414, -0.002348419977352023, 0.0110423993319273, -0.014363965950906277, 0.010374869219958782, -0.04034135118126869, -0.01487868744879961, -0.008943297900259495, 0.022036543115973473, -0.021039268001914024, 0.03059379942715168, -0.003745810128748417, 0.03493676707148552, -0.010503549128770828, -0.0030581734608858824, -0.0696161761879921, -0.012449842877686024, -0.00307425856590271, 0.00845270324498415, -0.007455429062247276, -0.007322727236896753, 0.00712970644235611, -0.012200524099171162, 0.0021071438677608967, 0.02403109148144722, 0.015723153948783875, 0.021457480266690254, 0.00244291964918375, -0.010575932450592518, 0.00782538577914238, -0.003198917955160141, 0.023580709472298622, 0.02401500567793846, -0.01529689971357584, 0.01606898196041584, -0.002897322876378894, 0.004318840801715851, -0.005211561918258667, 0.002087037544697523, -0.006100262049585581, -0.006554665043950081, -0.007704747375100851, 0.011187165044248104, -0.029306992888450623, 0.02541440725326538, -0.026331255212426186, -0.0023866218980401754, -0.0006308362353593111, -0.017291447147727013, 0.026476021856069565, 0.015031496062874794, -0.011468653567135334, 0.029001377522945404, -0.02221347950398922, 0.010141635313630104, 0.04751529172062874, 0.008565298281610012, -0.008046555332839489, -0.015103878453373909, 0.011412356048822403, 0.005275902338325977, 0.008549213409423828, -0.010133592411875725, -0.020058080554008484, 0.028277549892663956, -0.023789815604686737, -0.020299356430768967, -0.016824981197714806, -0.010889590717852116, -0.012795671820640564, -0.01674455590546131, -0.008275767788290977, 0.016519363969564438, -0.00016135333862621337, -0.01886778511106968, -0.028245380148291588, 0.02177918143570423, 0.006329474039375782, 0.019591612741351128, 0.028036274015903473, 0.021055353805422783, 0.02430453710258007, 0.010109465569257736, 0.014363965950906277, -0.024706663563847542, -0.022696031257510185, 0.010310528799891472, -0.00846074614673853, 0.007403152529150248, 0.005557390861213207, -0.03519412875175476, 0.007403152529150248, -0.004178096540272236, -0.00023449012951459736, 0.04368704557418823, -0.013044989667832851, -0.004548052791506052, 0.0028229295276105404, 0.025317896157503128, -0.013527542352676392, -0.011508866213262081, -0.018224382773041725, -6.603674410143867e-05, 0.024384962394833565, -0.011943163350224495, 0.006518473848700523, 0.004704882390797138, -0.0026439831126481295, 0.015039538033306599, 0.016318300738930702, 0.006836154032498598, 0.007121664006263018, -0.007350875996053219, -0.019752463325858116, -0.005215583369135857, 0.01688932068645954, 0.024208027869462967, 0.0062932828441262245, -0.03175192326307297, 0.0006670276634395123, -0.013656222261488438, -0.02306598797440529, -0.017387958243489265, -0.006317410618066788, -0.00984406191855669, 0.013020862825214863, 0.0008168198401108384, -0.006751707289367914, 0.007535854354500771, 0.033038727939128876, 0.007624322082847357, 0.0003920735325664282, -0.012280949391424656, 0.02890486642718315, -0.0021272501908242702, 0.0187230184674263, 0.01334256399422884, -0.011758184991776943, 0.007005047053098679, -0.025623513385653496, 0.0017381926300004125, 0.009956656955182552, -0.010270316153764725, 0.005291987210512161, -0.0058951773680746555, 0.021135779097676277, 0.01097001601010561, -0.04265759885311127, -0.0037156506441533566, 0.021602246910333633, 0.021907862275838852, 0.016109194606542587, -0.01292435172945261, 0.010093379765748978, -0.005661943927407265, -0.01716276817023754, -0.004447521176189184, -0.0057705179788172245, 0.004326883237808943, -0.04291496053338051, 0.005633795168250799, -0.015208431519567966, -0.0005690092802979052, -0.002533398102968931, -0.011291718110442162, 0.006450112443417311, 0.011589291505515575, 0.0017844372196123004, 0.007909832522273064, 0.01432375330477953, -0.04732226952910423, -0.016664130613207817, -0.009264999069273472, 0.01069657038897276, -0.021280545741319656, 0.011275632306933403, -0.012860012240707874, -0.009192616678774357, -0.0003342678246553987, -0.009248914197087288, -0.025044450536370277, 0.010994143784046173, 0.008525085635483265, -0.0009027744526974857, -0.0009449977660551667, -0.006795941386371851, -0.03252400830388069, -0.02221347950398922, -0.037639059126377106, -0.008702022023499012, 0.0017412086017429829, 0.02596130035817623, -0.017693575471639633, 0.004592286888509989, 0.003872480010613799, -0.007310663349926472, -0.0006604930968023837, -0.01901254989206791, -0.0024187921080738306, -0.010205975733697414, 0.00460435077548027, -0.014090519398450851, -0.023838071152567863, 0.02333943359553814, -0.01692149229347706, -0.008541171438992023, 0.013648180291056633, -0.022663861513137817, -0.008726148866117, 0.001850788132287562, -0.009634955786168575, -0.02750546671450138, -0.022872965782880783, -0.002261962741613388, -0.027360700070858, -0.030642054975032806, 0.012240736745297909, -0.018513912335038185, -0.019607698544859886, -0.006064070388674736, -0.004403287544846535, 0.00014313196879811585, 0.00045490582124330103, -0.0005039150128141046, 0.006695409305393696, 0.004153968766331673, -0.008066661655902863, -0.015867918729782104, -0.003958937246352434, -0.015851834788918495, -0.0075519392266869545, -0.010768952779471874, -5.849686931469478e-05, -0.012827841565012932, -0.003973011858761311, -0.041402965784072876, 0.02205262891948223, 0.03258834779262543, 0.0068401750177145, -0.01594030298292637, -0.011492781341075897, -0.0029656842816621065, -0.015980515629053116, 0.00803851243108511, -0.0035286617930978537, 0.019318167120218277, -0.002274026395753026, 0.010600059293210506, 0.018063530325889587, 0.0012204545782878995, 0.02501228079199791, 0.005139179062098265, -0.00823153369128704, 0.023661134764552116, 0.027891507372260094, -0.0005896182847209275, -0.0024690579157322645, -0.01856216788291931, 0.005336221307516098, -0.005698135122656822, -0.025510918349027634, -0.006068091839551926, 0.027071168646216393, -0.021714841946959496, -0.01396183855831623, 0.006446090992540121, 0.013101288117468357, 0.0010646304581314325, -0.012634821236133575, 0.006659218110144138, 0.00227000517770648, 0.01125150453299284, 0.016133323311805725, -0.0358053594827652, 0.017291447147727013, -0.0012435767566785216, -0.0016034801956266165, 0.016294173896312714, 9.500243322690949e-05, 0.004471648950129747, -0.007479556370526552, 0.016302216798067093, 0.004250479396432638, -0.01397792436182499, -0.0022539200726896524, 0.003918724600225687, -0.01803136058151722, 0.00011240697494940832, 0.0005494055803865194, -0.018111785873770714, -0.024256281554698944, -0.0028812377713620663, -0.005251774564385414, -0.02248692512512207, -0.014307667501270771, 0.0038403100334107876, 0.014733921736478806, -0.004938115831464529, 0.0047692228108644485, 0.005014520138502121, 0.012128140777349472, 0.011894907802343369, -0.013736647553741932, -0.0029576418455690145, 0.012868054211139679, -0.007704747375100851, -0.0022398456931114197, 0.02235824428498745, 0.01632634364068508, -0.007765066344290972, -0.0012124120257794857, -0.0037196718621999025, 0.0009394685039296746, 0.001964388880878687, 0.008227512240409851, 0.002537419553846121, -0.013181713409721851, -0.021441396325826645, -0.0030983861070126295, 0.002237834967672825, -0.02066931314766407, -0.009860146790742874, 0.0026902277022600174, -0.007238280493766069, -0.01109869685024023, 0.0011882843682542443, 0.0010475399903953075, -0.02543049305677414, -0.01828872226178646, -0.016173535957932472, -0.01131584495306015, -0.014999325387179852, 0.013077160343527794, 0.10371651500463486, -0.017580978572368622, 0.012634821236133575, -0.004833562765270472, -0.0008148092310875654, -0.018111785873770714, -0.011999460868537426, 0.027038998901844025, 0.0307224802672863, -0.00684419646859169, -0.0368991456925869, -0.028438400477170944, -0.0015713101020082831, 0.029998650774359703, -0.03873284533619881, 0.006623026914894581, 0.008903085254132748, 0.014645454473793507, -0.006860281340777874, 0.0005343258380889893, 0.008549213409423828, 0.02610606513917446, -0.004515882581472397, -0.010029040277004242, -9.047850471688434e-05, -0.006767792161554098, 0.004041373264044523, 0.020428035408258438, 0.014178987592458725, 0.019655952230095863, 0.003964969422668219, 0.0019191496539860964, 0.0015471824444830418, -0.01733970269560814, -0.010286401025950909, 0.021730925887823105, -0.006627047900110483, -0.012972607277333736, 0.0005634800181724131, 0.0010947899427264929, 0.0015823685098439455, 0.009852103888988495, 0.017500553280115128, 0.007564003113657236, 0.020218931138515472, 0.00984406191855669, 0.014291582629084587, 0.0020649204961955547, 0.004938115831464529, -0.005207540933042765, 0.004234394058585167, -0.007748981472104788, -0.003160715801641345, 0.00632143160328269, -0.007435322739183903, -0.022277818992733955, 0.004226351622492075, -0.022696031257510185, 0.011983375996351242, 0.0012727309949696064, -0.011484738439321518, -0.02083016373217106, -0.024272367358207703, -0.044748660176992416, -0.015184303745627403, 0.011854695156216621, -0.015892047435045242, -0.012723288498818874, 0.010318570770323277, 0.0003428130003158003, -0.014846517704427242, 0.015562303364276886, 0.009675168432295322, -0.018546083942055702, -0.0011460611131042242, 0.033875152468681335, 0.002589695854112506, -0.008967425674200058, 0.020347610116004944, -0.01069657038897276, -0.014508731663227081, 0.0021272501908242702, -0.001088757999241352, -0.004680754616856575, 0.013455159030854702, 0.002348419977352023, 0.011283675208687782, 0.006510431412607431, 0.0016788789071142673, -0.0023504304699599743, -0.01759706437587738, 0.008549213409423828, 0.009626912884414196, -0.0033557473216205835, -0.0015652781585231423, -0.015377325005829334, 0.007897768169641495, -0.005589561071246862, 0.010986101813614368, -0.02610606513917446, 0.0006062060128897429, 0.01166167389601469, 0.019945483654737473, 0.02387024089694023, 0.00625709118321538, 0.0014476560754701495, -0.001219449215568602, -0.010214017704129219, -0.0025937173049896955, 0.004849648103117943, -0.0071457913145422935, 0.009562572464346886, -0.02752155065536499, 0.017532724887132645, -0.008967425674200058, -0.01901254989206791, 0.0007454423466697335, -0.006868323776870966, -0.022309988737106323, -0.013366691768169403, 0.018272636458277702, -0.004837584216147661, 0.016583705320954323, 0.0017020012019202113, -0.0020709524396806955, -0.0008178251446224749, -0.017082342877984047, -0.002623876789584756, 0.006852238904684782, 0.007769087795168161, 0.034872427582740784, 0.002179526723921299, 0.013495371676981449, -0.008742234669625759, -0.00024240699713118374, 0.021570075303316116, 0.012176396325230598, -0.007632364518940449, 0.006007772870361805, -0.002139314077794552, -0.00545283779501915, 0.01069657038897276, 0.010929803363978863, 0.0033275983296334743, 0.00803449098020792, 0.0019573518075048923, 8.727405656827614e-05, 0.0060359216295182705, 0.028325805440545082, 0.0038000973872840405, 0.0299021415412426, -0.022583436220884323, -0.003174790181219578, 0.00258567463606596, -0.0005303045618347824, 0.013447117060422897, -0.004443500190973282, 0.014195072464644909, 0.015369282104074955, -0.010664399713277817, 0.009321296587586403, -0.015755323693156242, -0.01785442605614662, -0.013366691768169403, 0.005163306836038828, 0.016430897638201714, 0.01188686490058899, 0.004407308530062437, 0.02066931314766407, -0.0016999905928969383, -0.011565163731575012, 0.01580357924103737, 0.009128276258707047, -0.02625082992017269, -0.013985966332256794, -0.019446847960352898, 0.020347610116004944, 0.008661809377372265, -0.009160446003079414, 0.009554530493915081, -0.0020307397935539484, 0.0034442150499671698, 0.006639111787080765, -0.003952905535697937, -0.00023461579985450953, -0.0019221656257286668, 0.02446538768708706, -0.0038765014614909887, 0.0009746545692905784, 0.018546083942055702, -0.0072865355759859085, -0.0037719483952969313, -0.01801527664065361, -0.012658948078751564, -0.01706625707447529, 0.003042088355869055, -0.0069648344069719315, 0.03506544977426529, 0.009940572082996368, 0.005979624111205339, -0.01801527664065361, 0.013302351348102093, 0.009449977427721024, 0.005195477046072483, -0.0055815186351537704, -0.009474105201661587, 0.01039899606257677, -0.016696300357580185, -0.013921625912189484, -0.013069117441773415, -0.03603055328130722, -0.015546218492090702, 0.013921625912189484, -0.0035749063827097416, -0.030223842710256577, 0.02210088260471821, 0.0012596618616953492, -0.012409630231559277, -0.002969705732539296, 0.008766362443566322, 0.0013380765449255705, 0.010913718491792679, 0.015192346647381783, -0.0259934701025486, 0.015385366976261139, 0.025060536339879036, 0.016229834407567978, 0.014613283798098564, 0.04655018821358681, 0.01131584495306015, 0.01397792436182499, -0.008959382772445679, 0.0030863224528729916, 0.028824441134929657, 0.006329474039375782, -0.00649836752563715, 0.022696031257510185, -0.00880657508969307, 0.028969207778573036, -0.01898038014769554, -0.005569454748183489, 0.01883561536669731, 0.00263996166177094, 0.006389793008565903, 0.008935254998505116, -0.009449977427721024, -0.018916040658950806, 0.007198067847639322, 0.0208140779286623, -3.229580033803359e-05, 0.016286130994558334, -0.013447117060422897, 0.0011872791219502687, 0.01528885681182146, 0.0050989664159715176, 0.013366691768169403, 0.006486303638666868, -0.023435944691300392, 0.0066833458840847015, -0.00795004516839981, -0.018948210403323174, 0.014058349654078484, 0.010913718491792679, -0.02136097103357315, 0.011967290192842484, 0.0218113511800766, -0.003064205404371023, -0.0002460512623656541, -0.010382911190390587, 0.014347880147397518, 0.002499217400327325, -0.004222330171614885, 0.009449977427721024, 0.007198067847639322, -0.008396405726671219, -0.0051070088520646095, 0.02083016373217106, 0.010326613672077656, -0.0024288452696055174, 0.01716276817023754, -0.013189755380153656, -0.029998650774359703, -0.014412220567464828, -0.021907862275838852, 0.004700860939919949, -0.008404447697103024, -0.012216608971357346, 0.015216474421322346, -0.010793080553412437, 0.014018137007951736, 0.004306776914745569, -0.018932124599814415, 0.0033698217011988163, 0.016567619517445564, 0.006365665700286627, 0.003985075745731592, 0.00914436113089323, -0.0049260519444942474, 0.024787088856101036, 0.002308207331225276, 0.008822659961879253, 0.02610606513917446, 0.002091058762744069, -0.006735621951520443, 0.034164685755968094, 0.016446981579065323, 0.031478479504585266, -0.00764442840591073, -0.005879092495888472, 0.009667125530540943, -0.003064205404371023, 0.011524951085448265, -0.0027766849379986525, 0.004439478740096092, 0.003918724600225687, 0.024529729038476944, -0.013004777021706104, 0.02697465941309929, 0.0004624456923920661, 0.009586700238287449, -0.015594473108649254, 0.015562303364276886, -0.0187230184674263, -0.001017883187159896, 0.009811891242861748, 0.009224786423146725, 0.009474105201661587, 0.01830480806529522, -0.002577632199972868, -0.014106604270637035, -0.016165493056178093, 0.005786603316664696, -0.015176261775195599, -0.0011943163117393851, -0.01557838823646307, -0.0032270667143166065, 0.002754567889496684, 0.0007429290562868118, -0.021296629682183266, -0.003124524373561144, 0.011267590336501598, 0.001352151040919125, 0.00284705706872046, -0.014178987592458725, -0.005931368563324213, 0.0050426688976585865, 0.04256109148263931, -0.02724810503423214, -0.005078860092908144, 0.0290818028151989, 0.009441934525966644, -0.014412220567464828, -0.0027807061560451984, -0.008589426055550575, -0.02695857360959053, 0.005094945430755615, -0.005669986363500357, -0.001933224149979651, -0.011726014316082, -0.0229051373898983, -0.025639597326517105, 0.02991822548210621, 0.006643133237957954, -0.003820203710347414, 0.011943163350224495, 0.010849378071725368, 0.005541305989027023, -0.0011319866171106696, -0.025382237508893013, 0.00014790722343605012, -0.009047850966453552, -0.013414946384727955, -0.018063530325889587, 0.0001497921912232414, -0.0045199040323495865, -0.01883561536669731, -0.005432731471955776, -0.0033416729420423508, 0.005275902338325977, 0.00970733817666769, 0.027827167883515358, -0.011508866213262081, -0.001861846656538546, -0.0016276078531518579, 0.010567889548838139, -0.013455159030854702, 0.00914436113089323, 0.020894503220915794, -0.02739286981523037, 0.023387689143419266, -0.011524951085448265, 0.013165627606213093, -0.005191455595195293, -0.014959112741053104, 0.01292435172945261, 0.009578658267855644, -0.009956656955182552, 0.009948614053428173, -0.006116346921771765, -0.014492645859718323, -0.011460610665380955, 0.0015431612264364958, 0.0069648344069719315, -0.006639111787080765, -0.006381750572472811, -0.03043294884264469, 0.026508191600441933, 0.007519769016653299, 0.013527542352676392, -0.017018001526594162, 0.011983375996351242, -0.0074111949652433395, -0.012554395943880081, 0.0031808221247047186, 0.005127115175127983, -0.009892316535115242, 0.02890486642718315, -0.009908401407301426, 0.02010633423924446, 0.0026439831126481295, -0.0024750898592174053, -0.01229703426361084, 0.01621374860405922, -0.00667128199711442, 0.0069487495347857475, 0.02892095223069191, 0.017291447147727013, 0.0038986182771623135, 0.0045199040323495865, 0.0027887485921382904, -0.005078860092908144, -0.00667128199711442, 0.005585539620369673, -0.0064340271055698395, -0.010077294893562794, 0.0038041186053305864, -0.008822659961879253, -0.005726284347474575, -0.007045259699225426, 0.027907593175768852, -0.008509000763297081, 0.001377283944748342, -0.01930208131670952, -0.032910048961639404, 0.006421963218599558, -0.007954065687954426, -3.1557519832858816e-05, 0.02192394807934761, -0.009795806370675564, -0.009466062299907207, -0.005621731281280518, 0.005525220651179552, 0.009852103888988495, 0.012160311453044415, -0.02306598797440529, -0.0076846410520374775, -0.010109465569257736, -0.01432375330477953, -0.019366422668099403, -0.00022003869526088238, 0.005223625805228949, 0.002772663487121463, 0.00965104065835476, -0.020701482892036438, 0.009248914197087288, -0.0060439640656113625, 0.010543761774897575, 0.011565163731575012, -0.018336977809667587, 0.018111785873770714, -0.006530537735670805, 0.02330726385116577, -0.01292435172945261, 0.008143065497279167, -0.0038765014614909887, 0.010374869219958782, -0.0045038191601634026, 0.012393544428050518, 0.01564272865653038, -0.01650328002870083, -0.0011923057027161121, -0.007061345037072897, 0.029596524313092232, -0.006675302982330322, 0.022326074540615082, -0.006554665043950081, -0.005255796015262604, 0.03448638692498207, 0.009964699856936932, 0.03265268728137016, 0.010567889548838139, 0.020604971796274185, -0.0022056649904698133, 0.00235847313888371, -0.011154994368553162, 0.009819934144616127, 0.013326479122042656, 0.011114781722426414, -0.004145926330238581, 0.0010616144863888621, 0.0045279464684426785, 0.001831687055528164, 0.015192346647381783, -0.0014386082766577601, -0.0004360561433713883, 0.0027404935099184513, -0.007909832522273064, -0.0033235771115869284, 0.019800718873739243, -0.006860281340777874, 0.02498011104762554, -0.0046526058577001095, -0.019253825768828392, 0.004761179909110069, -0.0062932828441262245, 0.010809165425598621, 0.033456940203905106, 0.017580978572368622, 0.021763097494840622, -0.01620570570230484, -0.002298154169693589, -0.015827706083655357, 0.002672131871804595, 8.312713180202991e-05, -0.01166971679776907, -0.007057323586195707, 0.000923383457120508, -0.003641257295385003, -0.0053724125027656555, -0.018658678978681564, -0.019511187449097633, -0.0062852404080331326, 0.01844957284629345, -0.008219469338655472, -0.00032521996763534844, 0.010382911190390587, 0.017629234120249748, -0.015264729037880898, 0.03899020329117775, -0.016422854736447334, 0.015152134001255035, -0.003526651067659259, 0.014042263850569725, -0.002147356513887644, -0.0009439924033358693, -0.019479017704725266, -0.00022845822968520224, 0.014267454855144024, -0.0075519392266869545, -0.0014446401037275791, -0.01039899606257677, 0.004942137282341719, 0.030288182199001312, 0.024208027869462967, 0.014685667119920254, -0.006462175864726305, -0.014508731663227081, 0.023403773084282875, 0.030481204390525818, -0.003868458792567253, 0.005545326974242926, -0.007479556370526552, -0.011782311834394932, 0.010841336101293564, -0.005368391517549753, -0.01214422658085823, -0.015345154330134392, 0.0010937845800071955, 0.0003656839544419199, 0.02890486642718315, -0.012594608590006828, 0.0015672887675464153, -0.03564450889825821, 0.008002321235835552, 0.0029475886840373278, -0.006554665043950081, 0.008364235050976276, -0.005094945430755615, 0.023146413266658783, -0.006409899331629276, -0.004099681507796049, -0.01954335719347, -0.016382642090320587, 0.009337381459772587, 0.004479691386222839, 0.018658678978681564, 0.006578792817890644, 0.0004066506226081401, 0.02377372980117798, -0.021891776472330093, 0.021988287568092346, 0.0011179122375324368, -0.025382237508893013, -0.00845270324498415, 0.0019040699116885662, 0.0024268345441669226, -0.005456859245896339, -0.011179122142493725, -0.01996156945824623, -0.025317896157503128, 0.00029908173019066453, 0.0110423993319273, -0.005215583369135857, 0.007334791123867035, -0.024545812979340553, 0.0026520255487412214, 0.023693304508924484, -0.011693844571709633, -0.011742099188268185, -0.020363695919513702, 0.011983375996351242, -0.0026057809591293335, 0.01249005552381277, -0.015111921355128288, 0.01621374860405922, -0.0013762785820290446, 0.001985500566661358, 0.009940572082996368, 0.010640272870659828, 0.004025288391858339, -0.0039046502206474543, -0.009570615366101265, 2.4174725695047528e-05, -0.016728470101952553, 0.009522359818220139, 0.02025110088288784, -0.02194003202021122, -0.0023966750595718622, 0.01954335719347, 0.003060184186324477, -0.013696434907615185, -0.01915731653571129, 0.0039890967309474945, -0.02388632670044899, 0.02222956344485283, -0.017790084704756737, 0.0030139395967125893, -0.0029576418455690145, 0.03199319913983345, -0.01732361875474453, -0.002979758894070983, -0.02975737489759922, 0.006848217453807592, 0.021972203627228737, 0.006015815306454897, 0.007105578668415546, -0.0038966077845543623, -0.006703452207148075, 0.026910318061709404, -0.0036151190288364887, -0.012779586017131805, -0.0061525385826826096, -0.004789329133927822, 0.022728201001882553, 0.01647111028432846, -0.002019681269302964, -0.013173670507967472, -0.012835884466767311, 0.025816533714532852, -0.028727931901812553, 0.003826235421001911, -0.018497828394174576, 0.004266564268618822, 0.0021192077547311783, 0.0032672793604433537, 0.01870693452656269, 0.02584870345890522, 0.009007638320326805, 0.007527811918407679, -0.009184573777019978, 0.014822389930486679, 0.013101288117468357, 0.003737767692655325, -0.0008027454023249447, -0.010881548747420311, -0.009739508852362633, -0.007857555523514748, -0.024787088856101036, -0.003926767036318779, -0.03503327816724777, -0.00586702860891819, 0.012482012622058392, 0.0037639059592038393, -0.017500553280115128, -1.0736468539107591e-05, -0.004186138976365328, -0.009466062299907207, -0.013229968026280403, -0.005923326127231121, -0.0043952446430921555, -0.0017472405452281237, -0.028567081317305565, -0.016953662037849426, -0.012280949391424656, 0.012264864519238472, 0.014677624218165874, -0.0011923057027161121, 0.023435944691300392, 0.008283809758722782, -0.0013240021653473377, -0.02304990217089653, -0.010029040277004242, -0.013229968026280403, -0.00936955213546753, -0.014589156955480576, -0.02457798458635807, 0.003102407557889819, 0.0008605511393398046, 0.009417807683348656, -0.005006477236747742, -0.009675168432295322, -0.01801527664065361, 0.0023765687365084887, 0.010085337795317173, -0.00845270324498415, -0.014227242209017277, 0.015272771939635277, -0.0066833458840847015, -0.013929668813943863, 0.014701751992106438, 0.0239024106413126, 0.004222330171614885, -6.12614894635044e-05, 0.01069657038897276, -0.00936150923371315, -0.024352792650461197, -0.014862602576613426, -0.0007389077800326049, -0.02210088260471821, 0.02317858301103115, 0.0013481297064572573, 0.009321296587586403, 0.012248779647052288, 0.0031727796886116266, -0.0027203871868550777, 0.005086902529001236, 0.012594608590006828, -0.005420668050646782, 0.013543627224862576, 0.004934094380587339, 0.0006273176404647529, -0.01523255929350853, 0.00015532143879681826, 0.019221656024456024, 0.0038845438975840807, -0.007169919088482857, 0.014830432832241058, 0.00035889807622879744, -0.008223490789532661, -0.004101692233234644, -0.025173131376504898, -0.009787763468921185, 0.01674455590546131, -0.00039810541784390807, 0.011806439608335495, -0.0031687584705650806, 0.004612393211573362, -0.01732361875474453, 0.01418702956289053, -0.0078012580052018166, 0.004001160617917776, 0.011959248222410679, 0.017484469339251518, 0.0038885651156306267, 0.002768642269074917, 0.010230103507637978, -0.008046555332839489, -0.005577497184276581, -0.01901254989206791, 0.0199937392026186, 0.00019540844368748367, -0.008822659961879253, -0.01565881446003914, -0.002973726950585842, -0.00040891257231123745, -0.008283809758722782, -0.007596173323690891, 0.007797236554324627, -0.0007680620183236897, 0.022422583773732185, -0.010455294512212276, 0.024111516773700714, -0.012305077165365219, 0.012240736745297909, -0.009273041971027851, -0.007720832712948322, 0.022937307134270668, 0.03757471963763237, 0.0025233449414372444, -0.0039468733593821526, 0.004334925673902035, -0.0028731953352689743, -0.002933514304459095, 0.005955496337264776, 0.02893703803420067, 0.007383046206086874, 0.007310663349926472, -0.011195207014679909, -0.0014205125626176596, -0.00649434607475996, -0.006783877499401569, 0.0009294153423979878, 0.018192211166024208, -0.02221347950398922, 0.0033577578142285347, 0.013817073777318, -0.009031765162944794, 0.013109330087900162, 0.000823354406747967, -0.012473969720304012, -0.0063013252802193165, 0.0060439640656113625, -0.01970420777797699, 0.035548001527786255, 0.015771409496665, 0.007664534728974104, -0.007395110093057156, -0.008742234669625759, 0.001446650829166174, 0.00015770905883982778, -0.017774000763893127, -0.001865867874585092, 0.008436618372797966, 0.004491755273193121, -0.01914123073220253, 0.0021151865366846323, 0.016141366213560104, -0.005151242949068546, -0.00301997154019773, -0.009409764781594276, 0.023548539727926254, -0.007334791123867035, -0.006598899140954018, 0.02083016373217106, 0.002859120722860098, -0.008758319541811943, -0.0002943064901046455, -0.006502388510853052, -0.008983510546386242, -0.018803443759679794, 0.0006142485071904957, -0.02988605573773384, 0.007350875996053219, 0.01636655628681183, -0.005577497184276581, -0.007600194774568081, 0.017387958243489265, -0.0021956118289381266, -0.030513374134898186, -0.011122824624180794, -0.003695544321089983, -0.0033617792651057243, -0.010833293199539185, -0.0034502469934523106, -0.01454090140759945, 0.005682050250470638, 0.014573071151971817, -0.005332199856638908, 0.0024710686411708593, -0.019253825768828392, 0.0068160477094352245, 0.010101422667503357, 0.014154859818518162, -0.003952905535697937, 0.008062640205025673, -0.03837897256016731, 0.02485143020749092, 0.012498097494244576, -0.005863007158041, -0.007817342877388, -0.017661403864622116, -0.020604971796274185, 0.009755593724548817, 0.021602246910333633, -0.0019382507307454944, 0.004491755273193121, 0.012948479503393173, -0.002762610325589776, -0.02446538768708706, 0.011637547053396702, -0.008492915891110897, 0.015699027106165886, 0.0012305077398195863, 0.007041238248348236, -0.0031948965042829514, -0.009200658649206161, 0.012522225268185139, 0.00454001035541296, 0.00838836282491684, 0.00188496895134449, 0.013157585635781288, -0.012240736745297909, -0.00471292482689023, 0.002664089435711503, 0.015481878072023392, 0.024787088856101036, 0.014822389930486679, 0.011790354736149311, -0.01841740310192108, 0.019527273252606392, 0.001968410098925233, -0.01761315017938614, -0.0009630934218876064, -0.008509000763297081, -0.014934985898435116, 0.004419372417032719, -0.03355345129966736, 0.004407308530062437, -0.004133862443268299, 0.038925863802433014, 0.0015200389316305518, -0.00908002071082592, 0.002229792531579733, -0.013519499450922012, 0.019382506608963013, 0.011693844571709633, 0.000334770476911217, -0.039858799427747726, -0.012562437914311886, -0.004157990217208862, -0.007041238248348236, -0.009827976115047932, 0.00534426374360919, -0.006852238904684782, 0.004037351813167334, -0.011758184991776943, -0.03223447501659393, 0.0031908752862364054, -0.004415350966155529, 0.0008806574624031782, 0.02097492851316929, 0.011412356048822403, 0.0030038864351809025, 0.000753987580537796, -0.024626238271594048, 0.005822794511914253, 0.02528572641313076, 0.0010183858685195446, -0.011356057599186897, -0.009240871295332909, 0.02459406852722168, -0.006092219613492489, 0.005565433297306299, -0.015441665425896645, -0.003645278513431549, 0.007962108589708805, 0.021891776472330093, -0.01590813137590885, 0.01214422658085823, -0.011589291505515575, 0.010012954473495483, 0.004692818503826857, -0.004729010164737701, 0.012152268551290035, -0.009811891242861748, 0.0019281975692138076, -0.013551670126616955, -0.005601624958217144, -0.01594030298292637, -0.001918144291266799, 0.016253961250185966, -0.0081108957529068, 0.016808895394206047, -0.038089439272880554, -0.022406499832868576, -0.010302485898137093, -0.0018336977809667587, -0.01396183855831623, -0.005710199009627104, 0.0008273756830021739, 0.018642593175172806, 0.013664265163242817, 0.008557256311178207, 0.025768278166651726, 0.009466062299907207, 0.030818989500403404, -0.004059468861669302, -0.0033999811857938766, -0.023017732426524162, 0.016824981197714806, -0.00729859946295619, -0.018047446385025978, 0.01677672564983368, 0.009289126843214035, -0.012071843259036541, 0.012305077165365219, 0.002416781382635236, -0.003339662216603756, 0.028438400477170944, -0.023821985349059105, -0.007869619876146317, -0.01368839293718338, -0.0038925863336771727, -0.0019503145013004541, 0.00010712906805565581, -0.0018628519028425217, -0.000150546184158884, 0.012256821617484093, 0.01214422658085823, -0.0022318032570183277, 0.0013149542501196265, 0.013696434907615185, -0.005593582522124052, 0.015618600882589817, -0.008412490598857403, -0.005006477236747742, 0.012152268551290035, 0.03004690632224083, -0.029017463326454163, 0.01396988146007061, -0.035580169409513474, 0.010302485898137093, -0.024771004915237427, 0.01606094092130661, -0.007009068503975868, -0.014090519398450851, 0.0038061290979385376, 0.013004777021706104, -0.0009037797572091222, -0.007194046396762133, 0.011701886542141438, -0.005199498031288385, -0.019639868289232254, -0.003379874862730503, -0.007616279646754265, 0.0024248240515589714, -0.02485143020749092, 0.0037076082080602646, 0.004913988057523966, -0.008509000763297081, -0.008661809377372265, -0.028454484418034554, 0.023998921737074852, -0.022808626294136047, -0.02835797518491745, 0.013809030875563622, -0.012176396325230598, -0.005915283691138029, -0.011975333094596863, 0.01703408733010292, 0.011243462562561035, -0.002712344517931342, 0.006932664196938276, -0.006803983822464943, -0.024240197613835335, 0.007117642555385828, 0.018546083942055702, -0.02234215848147869, 0.005328178871423006, 0.007246322929859161, -0.02432062290608883, -0.017564894631505013, 0.012104013934731483, 0.0034040024038404226, -0.003299449570477009, -0.00373575696721673, -0.013318436220288277, -0.011339972727000713, 0.015835748985409737, 0.027569806203246117, -0.008259681984782219, 0.012860012240707874, 3.584582373150624e-05, -0.017548808827996254, -0.007282514590770006, 0.005368391517549753, 0.001463741180486977, 0.012377459555864334, -0.00667128199711442, -0.014010094106197357, 0.013849243521690369, 0.01460524182766676, 0.006337516941130161, 0.020910589024424553, 0.003830256871879101, -0.016229834407567978, 0.020009825006127357, 0.005444795358926058, -0.010294442996382713, -0.020363695919513702, 0.008967425674200058, -0.03088333085179329, 0.015827706083655357, -0.0012073854450136423, 0.004145926330238581, -0.003343683434650302, 0.015272771939635277, 0.0029998652171343565, -0.003934809938073158, -0.018932124599814415, -0.008002321235835552, -0.0027827166486531496, 0.0019975644536316395, 0.015827706083655357, -0.0027364720590412617, -0.0017462351825088263, -0.004676733631640673, 0.0008575351675972342, 0.02906571701169014, -0.016841067001223564, -0.035966210067272186, 0.02250300906598568, 0.0011631514644250274, -0.017146682366728783, 0.011758184991776943, 0.009506274946033955, -0.013229968026280403, 0.009289126843214035, 0.0019885164219886065, 0.004632499534636736, -0.005412625148892403, -0.002169473562389612, -0.007716811262071133, -0.0031828328501433134, -0.023226838558912277, 0.013881413266062737, -0.0025655683130025864, -0.010857420973479748, 0.020058080554008484, 0.008078725077211857, -0.005633795168250799, 0.005163306836038828, -0.003042088355869055, -0.011476695537567139, -0.014106604270637035, 0.031912773847579956, 0.033167410641908646, -0.012723288498818874, -0.007869619876146317, 0.0007846497464925051, 0.025671768933534622, 0.009313254617154598, -0.01566685549914837, 0.01957552693784237, 0.004672712180763483, 0.0005247753579169512, -0.0010606091236695647, 0.005328178871423006, 0.003973011858761311, 0.006466197315603495, 0.025478746742010117, 0.0149510707706213, -0.003458289662376046, -0.011058484204113483, -0.008492915891110897, -0.00730262091383338, -0.0032170135527849197, 0.02473883517086506, 0.008613553829491138, -8.224747580243275e-05, 0.0028711846098303795, -0.008758319541811943, 0.019607698544859886, 0.006884409114718437, -0.018513912335038185, -0.026862062513828278, -0.0019191496539860964, 0.008685936219990253, -0.019060805439949036, -0.006570750381797552, 0.01097805891185999, -0.005569454748183489, 0.006719537079334259, 0.005287966225296259, 0.011018271557986736, 0.00964299775660038, 0.0162217915058136, 0.004037351813167334, 0.003377864370122552, -0.006172644905745983, -0.015546218492090702, -0.017918765544891357, -0.0004496278997976333, -0.0025253556668758392, 0.01069657038897276, 0.00488986074924469, 0.004954200703650713, 0.0021232289727777243, 0.014452433213591576, -0.014396135695278645, -0.020846247673034668, -0.01830480806529522, 0.021312715485692024, 0.012482012622058392, 0.007604215759783983, 0.02210088260471821, -0.01173405721783638, -0.017838340252637863, -0.0065506440587341785, 0.0016748576890677214, 0.012192481197416782, -0.01898038014769554, -0.003663374111056328, -0.010865462943911552, -0.012948479503393173, 0.008436618372797966, 0.010511592030525208, -0.021763097494840622, 0.0021131758112460375, 0.011549078859388828, -0.004290692042559385, 0.011709929443895817, 0.027280274778604507, 0.02153790555894375, -0.019253825768828392, 0.005557390861213207, 0.025350067764520645, -0.0074111949652433395, 0.008975467644631863, -0.013463201932609081, -0.009168488904833794, -0.004829541780054569, -0.01816004142165184, -0.02234215848147869, 0.0015692994929850101, 0.01565881446003914, -0.024063261225819588, -0.0037136401515454054, -0.007688662502914667, 0.006763771176338196, -0.003164737019687891, 0.015682941302657127, 0.01814395748078823, -0.023564623668789864, 0.005790624301880598, 0.022245649248361588, 0.013897499069571495, 0.009160446003079414, 0.02222956344485283, 0.017291447147727013, -0.017420127987861633, -0.003928777761757374, -0.012441799975931644, -0.007640407420694828, -0.00023587244504597038, 0.001263683196157217, -0.0080425338819623, -0.014573071151971817, -0.027199849486351013, -0.0045038191601634026, -0.013760775327682495, 0.02362896502017975, -0.013286266475915909, -0.007318705786019564, -0.018690848723053932, -0.013945753686130047, 0.004978328477591276, -1.884968878584914e-05, -0.017790084704756737, -0.004897903185337782, 0.0011420397786423564, -0.0033738429192453623, 0.003064205404371023, -0.0025555151514708996, 0.024143686518073082, -0.007181982975453138, -0.006992983166128397, -0.021023184061050415, 0.0033235771115869284, 0.005702156573534012, -0.02514096163213253, -0.012980650179088116, -0.01577945239841938, 0.003339662216603756, -0.006196772214025259, -0.02177918143570423, 0.010318570770323277, -0.010994143784046173, 0.0072784931398928165, -0.020621057599782944, -0.012264864519238472, 0.0077530029229819775, 0.007403152529150248, 0.005790624301880598, 0.0013219915563240647, -0.01983288861811161, 0.00817523617297411, 0.02430453710258007, -0.0011701886542141438, 0.0061605810187757015, -0.0021996330469846725, 0.00020005802798550576, -0.025768278166651726, -0.0045118615962564945, 0.018240466713905334, -0.0017050171736627817, 0.05584735423326492, -0.004893881734460592, 0.004535989370197058, -0.00043831809307448566, -0.016133323311805725, -0.00949823297560215, 0.017098426818847656, 0.011307802982628345, -0.008179256692528725, -0.008533128537237644, -0.017709659412503242, -0.03057771362364292, 0.021553991362452507, 0.01870693452656269, -0.0007992268074303865, 0.0026862062513828278, 0.016664130613207817, 0.014058349654078484, -0.00178142124786973, 0.00823153369128704, -0.006860281340777874, -0.02234215848147869, -0.005682050250470638, 0.0016145387198776007, 0.00965104065835476, 0.0020649204961955547, 0.0009575642179697752, -0.013350605964660645, -0.0014818368945270777, -0.026733383536338806, 0.013583839870989323, 0.007652470842003822, 0.0022559307981282473, 0.006812026258558035, 0.006128410808742046, 0.012851969338953495, 0.007415216416120529, 0.016535449773073196, -0.0009550509275868535, -0.0006429000641219318, -0.0005891156033612788, -0.018353061750531197, 0.023838071152567863, 0.008959382772445679, -0.031076351180672646, 0.008541171438992023, -0.004688797518610954, 0.010857420973479748, -0.014766092412173748, 0.009691253304481506, -0.006208836100995541, -0.007708768825978041, -0.016229834407567978, 0.007443365175276995, 0.017452297732234, 0.0017110491171479225, 0.00621285755187273, 0.015562303364276886, -0.026652958244085312, 0.010149678215384483, -0.011870780028402805, -0.007994278334081173, 0.01968812383711338, 0.02150573581457138, -0.014026178978383541, -0.010366826318204403, -0.03284570947289467, 0.004423393867909908, 0.011693844571709633, 0.0032411410938948393, 0.007173940073698759, 0.0061766658909618855, -0.0025193237233906984, -0.01733970269560814, 0.0008851814200170338, 0.024803174659609795, -0.0338108129799366, 0.006614984013140202, -0.02097492851316929, -0.005686071701347828, -0.01298869214951992, 0.01257852278649807, 0.005267859902232885, -0.008086767978966236, -0.008814617060124874, -0.02837405912578106, 0.0009284100378863513, 0.007604215759783983, -0.0001967907592188567, -0.002344398759305477, -0.02893703803420067, -0.022567350417375565, 0.03060988336801529, 0.005722262896597385, 0.009683211334049702, -0.02361287921667099, -0.04040569067001343, 0.017114512622356415, 0.013020862825214863, -0.013366691768169403, -0.0014707783702760935, 0.019945483654737473, -0.001025423058308661, 0.00401724549010396, -0.0009470083750784397, -0.016535449773073196, -0.018690848723053932, 0.005444795358926058, 0.02111969329416752, -0.0009032770758494735, 0.00892721302807331, -0.002344398759305477, -0.012554395943880081, 0.02083016373217106, -0.009007638320326805, 0.008283809758722782, 0.03313523903489113, -0.005963538773357868, 0.029564354568719864, 0.00408560736104846, -0.0037598845083266497, 0.007716811262071133, 0.028454484418034554, -0.008613553829491138, 0.0007313679088838398, 0.004007192328572273, 0.010318570770323277, 0.013664265163242817, -0.023355519399046898, 0.026186490431427956, 0.004556095693260431, -0.011581248603761196, 0.023291178047657013, 0.017243193462491035, -0.00936955213546753, 0.006960812956094742, 0.003556810552254319, 0.005919305142015219, -0.00846074614673853, -0.005376433953642845, -0.030481204390525818, 0.024368878453969955, 0.016857150942087173, 0.001490884693339467, 0.019672038033604622, 0.0020458195358514786, -0.011983375996351242, 0.011959248222410679, 0.008179256692528725, 0.007069387473165989, 0.011018271557986736, -0.009739508852362633, -0.004298734478652477, 0.01327018067240715, -0.019350336864590645, 0.0049019246362149715, 0.004342968109995127, 0.03455072641372681, -0.01857825368642807, 0.013744690455496311, 0.002031745156273246, 0.009482147172093391, 0.00879853218793869, -0.004282649140805006, 0.026041725650429726, -0.0071538337506353855, -0.014347880147397518, 0.013374733738601208, -0.015184303745627403, -0.010640272870659828, 0.007966130040585995, -0.0016044855583459139, -0.022808626294136047, -0.006092219613492489, -0.006972876843065023, 0.0035970231983810663, -0.0022398456931114197, 0.015441665425896645, -0.004692818503826857, 0.0033095027320086956, -0.012731331400573254, 0.010382911190390587, 0.01396183855831623, -0.004270585719496012, 0.021891776472330093, 0.0009374578366987407, -0.006546622607856989, 0.001427549752406776, 0.006799962371587753, 0.014967155642807484, -0.014556986279785633, 0.024706663563847542, 0.00021438379189930856, -0.0011742099886760116, 8.254593012679834e-06, 0.005159285385161638, -0.010374869219958782, -0.010262273252010345, -0.010358783416450024, 0.012039673514664173, -0.0061525385826826096, 0.01528885681182146, 0.01011750753968954, 0.00977972149848938], "9df6f9ed-1a20-4d07-b419-3a232c53067e": [-0.015881158411502838, -0.028297336772084236, -0.00014119547267910093, 0.028507336974143982, -0.0014002653770148754, -0.03863977640867233, -0.028901083394885063, 0.011398997157812119, -0.019175514578819275, 0.04504474252462387, -0.014765540137887001, -0.00024875832605175674, 0.017548024654388428, -0.0086624501273036, -0.01212743017822504, 0.03241856396198273, -0.026512347161769867, 0.00820307806134224, 0.012987112626433372, -0.016091156750917435, 0.0170492772012949, -0.002661078469827771, -0.0004700363497249782, 0.02706359513103962, 0.014923038892447948, -0.01757427491247654, -0.027772340923547745, 0.0026971721090376377, -0.027352342382073402, 0.015999283641576767, -0.007979954592883587, 0.010828062891960144, 0.005948871839791536, -0.0010196425719186664, -0.0274573415517807, -0.039427272975444794, -0.007868392392992973, 0.021616751328110695, -0.003796384437009692, 0.02131487801671028, -0.003674978855997324, 0.010644313879311085, 0.01935926452279091, -0.03974227234721184, -0.02001550979912281, 0.014778665266931057, -0.03782603144645691, -0.023651113733649254, 0.030108576640486717, -0.013288985937833786, -0.0017669430235400796, 0.016248656436800957, 0.01668177917599678, 0.07586206495761871, 0.01450304128229618, 0.002856311621144414, 0.02130175195634365, 0.0651521235704422, 0.013433360494673252, -0.06084715202450752, 0.015526785515248775, -0.027221092954277992, -0.006280276458710432, -0.018322395160794258, 0.03530604764819145, -0.0058241854421794415, -0.007100583985447884, 0.0038718527648597956, -0.03296981006860733, 0.02218112163245678, -0.032523561269044876, 0.01580240949988365, -0.03695978596806526, 0.0007571440655738115, 0.06772460788488388, -0.009732131846249104, 0.056647174060344696, 0.027509842067956924, 0.03863977640867233, -0.04094976559281349, 0.03142106905579567, 0.0002565512550063431, -6.003627640893683e-05, -0.012186492793262005, 0.03963727131485939, 0.008596825413405895, -0.03947977349162102, -0.03325855731964111, -0.03989977017045021, -0.018952390179038048, 0.009719006717205048, 0.027641091495752335, -0.029268581420183182, 0.018886767327785492, 0.023060493171215057, 0.002113112946972251, -0.005712623242288828, 0.014161793515086174, -0.001597139285877347, -0.027142344042658806, -0.02245674654841423, 0.0173249002546072, -0.0007378668524324894, -0.00046470435336232185, 0.0066116806119680405, -0.00615558959543705, 0.03614604100584984, 0.015474285930395126, -0.011983056552708149, 0.0015659675700590014, -0.02911108359694481, -0.0471709780395031, 0.0013854998396709561, 0.0031155289616435766, -0.03415105491876602, -0.027509842067956924, 0.0011508917668834329, 0.01861114241182804, -0.015159287489950657, -0.01782364770770073, 0.03157856687903404, -0.016353655606508255, 0.024189235642552376, 0.002054050797596574, -0.002040925668552518, -0.00030884589068591595, 0.003714353544637561, -0.00015893463569227606, 0.053680941462516785, -0.000523766502737999, 0.007861829362809658, 0.019188640639185905, 0.03386230394244194, 0.023624863475561142, 0.01872926764190197, -0.01836176961660385, 0.020041760057210922, 0.09229446947574615, -0.025737976655364037, 0.006109652575105429, -0.0399785190820694, 0.03268106281757355, -0.022758619859814644, 0.012691802345216274, -0.013295548968017101, -0.019661137834191322, -0.04858846962451935, 0.04942846670746803, -0.015986157581210136, 0.0227192435413599, -0.040477268397808075, -0.007789642550051212, -0.05118720605969429, -0.00779620511457324, 0.03795728087425232, -0.014161793515086174, 0.011563058942556381, 0.03863977640867233, -0.0008522997959516943, 0.0099421301856637, -0.0014954210491850972, -0.047380976378917694, 0.03601479157805443, 0.0216823760420084, 0.06352463364601135, -0.002152487635612488, 0.03065982460975647, 0.033678557723760605, -0.014713040553033352, 0.01057868916541338, 0.02798233926296234, -0.012022431008517742, 0.020343633368611336, -0.003240215824916959, -0.013065862469375134, -0.0027956089470535517, 0.019280513748526573, 0.013978044502437115, 0.019923634827136993, 0.0032582625281065702, -0.00910869799554348, 0.02218112163245678, 0.027221092954277992, 0.018243644386529922, 0.0148705393075943, 0.0325760617852211, 0.004367318470031023, 0.005971840582787991, -0.01578928343951702, 0.0026742033660411835, -0.023191742599010468, 0.023139242082834244, 0.018899891525506973, 0.01794177107512951, -0.0216823760420084, -0.01616990752518177, 0.024792982265353203, -0.017482399940490723, -0.006798711139708757, -0.006838085595518351, -0.034177303314208984, -0.03428230434656143, -0.024202361702919006, 0.019188640639185905, -0.02182674966752529, 0.03564729541540146, -0.028796084225177765, -0.040319766849279404, 0.03273356333374977, -0.00783558003604412, 0.059954654425382614, -0.05357594043016434, -0.006322932429611683, 0.007034959737211466, 0.011287434957921505, 0.009417133405804634, 0.01718052662909031, 0.02577735111117363, -0.012941176071763039, -0.003921071067452431, 0.008970885537564754, -0.008189952932298183, -0.007901204749941826, -0.03795728087425232, -0.042524755001068115, -0.008780574426054955, -0.004429662134498358, -0.017889272421598434, -0.012468677945435047, -0.021091753616929054, 0.011969931423664093, -0.0036421664990484715, 0.0038127906154841185, -0.02590860053896904, 0.020448632538318634, 0.04570098593831062, 0.04171101003885269, 0.0033895117230713367, -0.010946187190711498, 0.014542416669428349, 0.006637930404394865, 0.021708624437451363, 0.004816847387701273, -0.0579596683382988, -0.026131724938750267, 0.0013592500472441316, -0.0016898340545594692, 0.03373105451464653, 0.027247343212366104, 0.012718051671981812, -0.0019080359488725662, -0.03144731745123863, 0.006733086425811052, 0.01154337078332901, -0.03737978637218475, 0.02525235526263714, 0.02400548756122589, -0.002820218214765191, -0.004324662499129772, -0.032129816710948944, 0.0009138228488154709, 0.026341723278164864, -0.04722347855567932, -0.005079345777630806, 0.05192220211029053, -0.011871494352817535, 0.03244481235742569, -0.02144612744450569, -0.006995584815740585, 0.036881037056446075, 0.010729625821113586, -0.02204987406730652, -0.011116811074316502, 0.006106371060013771, 0.007034959737211466, 0.0036979475989937782, -0.006733086425811052, 0.014201167970895767, -0.007993078790605068, -0.024924231693148613, -0.008754325099289417, -0.03569979593157768, 0.04549098759889603, 0.027641091495752335, 0.012796801514923573, 0.03877102583646774, -0.005459968466311693, -0.014726165682077408, -0.0549146831035614, -0.019411763176321983, -0.007586206309497356, 0.013978044502437115, -0.01962176151573658, 0.021590501070022583, -0.0006414806703105569, 0.011261185631155968, -0.01262617763131857, -0.02563297748565674, 0.006224495358765125, -0.007750268094241619, 0.012967425398528576, 0.015448036603629589, -0.018401144072413445, -0.03401980549097061, 0.026512347161769867, -0.015710534527897835, 0.044204745441675186, 0.004213100764900446, -0.012560552917420864, 0.0505572110414505, 0.03735353425145149, -0.010559001937508583, -0.011628682725131512, -0.026656722649931908, 0.012652426958084106, 0.003842321690171957, -0.032261066138744354, -0.023165492340922356, -0.03231356292963028, 0.004117945209145546, -0.026984844356775284, -0.0017160838469862938, -0.03401980549097061, 0.027168594300746918, 0.040713515132665634, -0.03947977349162102, 0.018781766295433044, -0.016209281980991364, 0.018676767125725746, 0.0031467005610466003, -0.030974822118878365, -0.016773654147982597, -0.016064908355474472, 0.0008006204152479768, -0.022115498781204224, 0.005856997799128294, -0.04601598531007767, -0.06336713582277298, -0.025199854746460915, -0.008216203190386295, -0.02140675112605095, -0.01887364126741886, 0.02193174883723259, -0.002500298200175166, -0.037668533623218536, -0.01577615924179554, 0.024412360042333603, 0.03903352469205856, -0.016773654147982597, 0.028008589521050453, 0.0008252296247519553, 0.0028497492894530296, 0.04010976850986481, -0.00227717449888587, 0.02438610978424549, -0.00037795680691488087, -0.024858606979250908, -0.001681630965322256, 0.015500536188483238, 0.01430616807192564, -0.01849301904439926, -0.038534779101610184, -0.010322753340005875, -0.03102732077240944, -0.021879250183701515, 0.017364274710416794, 0.016078032553195953, 0.004285288043320179, -0.02076363004744053, -0.0060735587030649185, 0.00465278560295701, 0.008636200800538063, -0.022141747176647186, -0.0027365467976778746, 0.03344230726361275, -0.05570217967033386, 0.023651113733649254, 0.01290180068463087, 0.00293670198880136, 0.022548619657754898, -0.0216823760420084, -0.011300560086965561, -0.02666984684765339, 0.002214831067249179, 0.021236127242445946, -0.01450304128229618, 0.03294356167316437, -0.07071709632873535, -0.006575587205588818, -0.008649324998259544, -0.02603984996676445, 0.011530246585607529, -0.0064443377777934074, -0.018952390179038048, 0.005551842972636223, -0.007907766848802567, 0.025304853916168213, -0.03940102458000183, 0.00715308403596282, -0.02128862775862217, 0.010230878368020058, -0.021262377500534058, -0.007632143795490265, -0.021656125783920288, -0.007277770899236202, -0.04231475666165352, 0.007553393952548504, -0.00929244700819254, 0.03593604266643524, 0.0017538180109113455, 0.024976732209324837, -0.03895477578043938, -0.02064550668001175, 0.009463070891797543, 0.016996776685118675, 0.009469632990658283, -0.03827228024601936, 0.010434314608573914, -0.05543968081474304, 0.0242417361587286, 0.04593723639845848, 0.035069797188043594, -0.006457462906837463, 0.018125521019101143, 0.0052860635332763195, 0.019438013434410095, 0.0005167939234524965, 0.022614244371652603, 0.013190548866987228, 0.010670564137399197, -0.008550887927412987, 0.011930556036531925, -0.028323587030172348, 0.0022033466957509518, -0.014476791955530643, -0.009029948152601719, 0.007015272043645382, 0.023664239794015884, 0.0034157615154981613, -0.024924231693148613, 0.007422144990414381, 0.015434911474585533, 0.022128622978925705, -0.0059127784334123135, -0.04026727005839348, -0.024399233981966972, -0.010322753340005875, 0.027903590351343155, -0.009049635380506516, -0.013439922593533993, 0.006546055898070335, 0.04388974606990814, -0.027746090665459633, -0.001111517078243196, 0.019648011773824692, 0.002162331249564886, 0.03814103081822395, 0.018401144072413445, 0.014555541798472404, -0.055124681442976, -0.0034945111256092787, -0.010821499861776829, 0.015868034213781357, -0.004528099205344915, -0.018440518528223038, -0.04436224326491356, -0.012212742120027542, 0.01884739100933075, 0.015618660487234592, 0.01782364770770073, 0.0019802229944616556, 0.012619614601135254, -0.02002863399684429, 0.046225983649492264, 0.011681183241307735, -0.021603625267744064, -0.03590979427099228, -0.017613649368286133, 0.02513423003256321, 0.008235890418291092, 0.02947857975959778, -0.00038287867209874094, -0.015041163191199303, 0.00839995127171278, -0.004912002943456173, 0.026604222133755684, -0.0036520103458315134, -0.021341128274798393, -0.02336236648261547, 0.03254981338977814, 0.009010260924696922, 0.01783677190542221, 0.004114663694053888, -0.0007555034826509655, 0.03013482689857483, 0.009771506302058697, 0.03782603144645691, 0.003911227453500032, -0.011044624261558056, -0.030344825237989426, -0.009929005056619644, -0.022863619029521942, 0.034177303314208984, -0.004528099205344915, -0.03850852698087692, 0.03685478866100311, 0.005942309740930796, 0.01807302050292492, -0.02475360780954361, 0.0022328777704387903, -0.004757785238325596, 0.009968380443751812, -0.04068726673722267, 0.02193174883723259, -0.0057454355992376804, 0.004547786433249712, 0.005230282433331013, 0.00820964016020298, 0.05184345319867134, 0.0052138762548565865, 0.009390883147716522, -0.012009305879473686, -0.030502324923872948, 0.004728253930807114, -0.005246688611805439, -0.010867437347769737, -0.019687386229634285, -0.01627490669488907, 0.002715218812227249, 0.005492780823260546, -0.03002982772886753, 0.00551246851682663, -0.007172771263867617, -0.002664359752088785, 0.005505905952304602, -0.005400906316936016, -0.013387423008680344, -0.0020819411147385836, 0.02681422047317028, -0.023546114563941956, -0.011018374003469944, 0.040608517825603485, -0.00935807079076767, -0.004308256320655346, -0.02026488445699215, -0.0045871613547205925, 0.014647415839135647, 0.0018260051729157567, -0.02193174883723259, -0.006536212284117937, -0.02463548257946968, 0.011530246585607529, -0.025882352143526077, 0.008833074010908604, -0.0031614662148058414, -0.02437298558652401, -0.0019605355337262154, 0.0027874058578163385, -0.013059300370514393, -0.025317979976534843, 0.0004925948451273143, 0.00852463860064745, 0.004075289238244295, 0.02372986450791359, -0.023887362331151962, -0.0011344857048243284, -0.058799661695957184, 0.00852463860064745, 0.027929838746786118, 0.03155231848359108, 0.021118003875017166, -0.006208089180290699, 0.04948096722364426, 0.018164895474910736, -0.010499939322471619, 0.029557330533862114, 0.004560911096632481, -0.008111203089356422, -0.05659467354416847, 0.015723658725619316, -3.1504947401117533e-05, -0.01652427949011326, 0.03685478866100311, -0.02719484455883503, 0.045595988631248474, 0.015119913034141064, -0.0020179571583867073, -0.02309986762702465, -0.03092232160270214, 0.021984249353408813, 0.024845482781529427, 0.011116811074316502, -0.0018867079634219408, 0.00820307806134224, -0.03882352635264397, 0.020343633368611336, -0.0003326348087284714, -0.019713636487722397, 0.03039732575416565, -0.005345125682651997, 0.029583580791950226, 0.002163972007110715, 0.0025035792496055365, -0.024425484240055084, -0.04236725717782974, 0.022666744887828827, -0.023756112903356552, 0.025737976655364037, 0.006792148575186729, 0.016826152801513672, 0.02540985308587551, -0.03669729083776474, 0.010289940983057022, -0.006162152159959078, 0.018939265981316566, 0.02514735609292984, 0.02539672888815403, 0.03346855938434601, 0.021879250183701515, -0.045070990920066833, 0.0033140433952212334, 0.004492005333304405, 0.02182674966752529, -0.009200572036206722, -0.02155112661421299, 0.04774847626686096, -0.0320248156785965, -0.039427272975444794, -0.012698364444077015, -0.010440877638757229, -0.02924233116209507, -0.00956807006150484, -0.02281111851334572, -0.011602433398365974, 0.0331273078918457, -0.030056077986955643, 0.028901083394885063, -0.016064908355474472, 0.011280872859060764, 0.0036454477813094854, 0.00760589400306344, -0.02525235526263714, 0.02181362546980381, 0.020750505849719048, -0.00826213974505663, 0.027746090665459633, -0.0016455374425277114, 0.0011008530855178833, 0.009449945762753487, 0.034676048904657364, -0.00929900910705328, 0.005138407927006483, -0.009016823023557663, 0.025212980806827545, -0.00702183460816741, -0.034177303314208984, -0.004672473296523094, 0.005082626827061176, 0.0174298994243145, -0.017534898594021797, 0.024727357551455498, -0.03157856687903404, 0.03359980508685112, -0.0013412032276391983, 0.025737976655364037, 0.007979954592883587, 0.015028038993477821, 0.01567116007208824, 0.00839338917285204, 0.050242211669683456, 0.012238992378115654, -0.026512347161769867, 0.010119317099452019, 0.0022410808596760035, 0.008734636940062046, -0.008367139846086502, 0.0073762075044214725, 0.005499343387782574, -0.0011426887940615416, -0.006641211919486523, -0.027641091495752335, -0.04438849538564682, -0.0431547537446022, 0.043285999447107315, -0.02285049296915531, -0.014844289980828762, -0.0012985472567379475, -0.002585610141977668, -0.03415105491876602, -0.0016980371437966824, -0.012468677945435047, 0.040739767253398895, 0.005932466126978397, 0.001898192218504846, 0.006221214309334755, 0.02118362858891487, -0.013229924254119396, -0.02052738144993782, 0.00782901793718338, -0.015067413449287415, -0.028559835627675056, -0.017758022993803024, -0.01148430909961462, -0.013302111066877842, 0.02092112973332405, 0.015986157581210136, -0.014647415839135647, -0.034807298332452774, 0.011241497471928596, 0.009863381274044514, 0.013157736510038376, -0.010992124676704407, -0.008058703504502773, -0.02065863087773323, -0.008163702674210072, -0.00916775967925787, -0.02924233116209507, 0.01783677190542221, -0.007973391562700272, 0.021734874695539474, 0.006345901172608137, 0.04554348811507225, -0.005673248786479235, -0.05079345777630806, -0.008039016276597977, 0.024674858897924423, 0.0005893911584280431, -0.004117945209145546, -0.0047709099017083645, 0.005496062338352203, 0.00943682063370943, -0.012238992378115654, 0.015290536917746067, 0.006408244371414185, 0.018913015723228455, -0.011969931423664093, -0.00291701452806592, 0.012862426228821278, 0.029084833338856697, 0.02144612744450569, 0.014319292269647121, -0.01116274856030941, -0.00564699899405241, -0.03924352303147316, 0.0015438192058354616, -0.005302469711750746, -0.00257904757745564, -0.005624030251055956, -0.00656902464106679, -0.005624030251055956, 0.020593006163835526, -0.045989736914634705, 0.017521774396300316, -0.011372746899724007, 0.024464858695864677, 0.0043115378357470036, 0.008380264043807983, -0.004846378229558468, -0.0025692039635032415, 0.04651473090052605, -0.0073171453550457954, -0.00025901218759827316, -0.017889272421598434, 0.0032746687065809965, 0.006359025835990906, 0.0034846675116568804, 0.026709221303462982, 0.024281110614538193, 0.02475360780954361, 0.04249850660562515, 0.04486099258065224, 0.04063476622104645, 0.01924113929271698, 0.02666984684765339, -0.01006681751459837, -0.046094734221696854, -0.0010360487503930926, -0.012724614702165127, 0.030213575810194016, -0.006119496189057827, -0.01615678146481514, -0.04693473130464554, 0.05147595331072807, 0.00195889500901103, 0.003284512320533395, -0.02283736877143383, 0.03165731951594353, 0.015421786345541477, -0.012514615431427956, 0.0022017061710357666, 0.007514019496738911, -0.05990215390920639, -0.01244899071753025, 0.008498388342559338, 0.008098078891634941, 0.019661137834191322, 0.0005602702149190009, 0.000351912050973624, -0.00037426542257890105, -0.024438610300421715, 0.017771147191524506, -0.01051962748169899, 0.05391719192266464, 0.02732609212398529, 0.011917431838810444, -0.020461756736040115, -0.010034005157649517, -0.014214293099939823, -0.020199259743094444, 0.007599331438541412, 0.026774846017360687, 0.04604223370552063, 0.004259038250893354, 0.013820545747876167, -0.02989857830107212, -0.01481803972274065, 0.015028038993477821, 0.04294475167989731, 0.04236725717782974, -0.01630115695297718, -0.01656365394592285, -0.018046772107481956, 0.015710534527897835, 0.009955255314707756, 0.0046035670675337315, 0.010283377952873707, 0.0048430971801280975, -0.00788807962089777, -0.001138587249442935, 0.009692756459116936, -0.002803812036290765, -0.0392172746360302, -0.03459729999303818, 0.018755517899990082, -0.0054763746447861195, 0.016852403059601784, -0.01258024014532566, 0.01589428447186947, -0.054337188601493835, 0.007238395977765322, -0.023834863677620888, -0.02169550023972988, 0.023112991824746132, -0.01225867960602045, 0.02026488445699215, 0.03441355377435684, 0.008360576815903187, -0.005948871839791536, 0.016353655606508255, 0.03609354421496391, 0.01872926764190197, 0.0050170025788247585, 0.030449824407696724, 0.02808733843266964, -0.019319888204336166, -0.007514019496738911, 0.00528934458270669, 0.010637751780450344, 0.004052320495247841, -0.002441236050799489, 0.006037465296685696, -0.007586206309497356, -0.009279321879148483, -0.00429185014218092, -0.009850256145000458, 0.011687745340168476, 0.020199259743094444, 0.030239826068282127, 0.002173815621063113, 0.027011094614863396, -0.0068512107245624065, 0.01172711979597807, 0.05412719026207924, 0.00884619913995266, -0.003996539395302534, -0.02643359825015068, 0.0227192435413599, 0.015316787175834179, -0.02411048673093319, 0.013072424568235874, -0.01417491864413023, 0.010047129355370998, 0.03304855898022652, 0.009456507861614227, -0.044572245329618454, 0.014463666826486588, 0.019661137834191322, 0.005896372254937887, -0.00962056964635849, -0.00014929601456969976, 0.0023427989799529314, 0.011654932983219624, 0.002746390411630273, -0.022797994315624237, -0.0038521653041243553, 0.0173249002546072, 0.027614841237664223, 0.01628803089261055, -0.00455763004720211, 0.028507336974143982, 0.01605178229510784, -0.019162390381097794, -0.014936164021492004, -0.024569857865571976, 0.029531080275774002, -0.021616751328110695, -0.005624030251055956, -0.005538718309253454, 0.008039016276597977, -0.01307898759841919, 0.012186492793262005, 0.026354849338531494, -0.016957402229309082, -0.0005438640364445746, 0.026236724108457565, -0.03317980840802193, 0.0018260051729157567, -0.002751312218606472, 0.011608995497226715, -0.025094855576753616, -0.016471780836582184, -0.011261185631155968, 0.017272401601076126, -0.0034157615154981613, -0.02630234882235527, -0.017114901915192604, -0.014936164021492004, 0.0005274579161778092, -0.032759811729192734, 0.025606727227568626, -0.0289798341691494, -0.011983056552708149, -0.009896192699670792, -0.0215773768723011, -0.00853120069950819, -0.012842739000916481, -0.048798467963933945, 0.013951795175671577, -0.034859798848629, -0.007914329878985882, 0.021892374381422997, -0.03401980549097061, 0.03178856894373894, -0.00014704017667099833, -0.009968380443751812, -0.013118362054228783, 0.009869943372905254, 0.039427272975444794, -0.006083402317017317, -0.025724852457642555, 0.017626773566007614, 0.04168476164340973, -0.017469273880124092, 0.014621165581047535, 0.028271088376641273, 0.003740603569895029, -0.004882472101598978, 0.013741795904934406, -0.006864335387945175, 0.01567116007208824, -0.02502923086285591, -0.0014306168304756284, -0.008327764458954334, 0.005955434404313564, -0.013046175241470337, 0.02887483313679695, -0.01281648874282837, 0.02064550668001175, -0.005243407562375069, -0.028769833967089653, -0.015198662877082825, -0.030607324093580246, -0.006339338608086109, -0.016878653317689896, -0.0075796437449753284, -0.02476673200726509, -0.03454480320215225, 0.0053746565245091915, -0.017219901084899902, -0.011530246585607529, 0.0338885560631752, -0.030686073005199432, -0.003845602972432971, -0.025449229404330254, 0.018388019874691963, 0.005765123292803764, -0.01340711023658514, -0.0013994451146572828, -0.015041163191199303, 0.011773057281970978, -0.0006763437413610518, -0.010919936932623386, 0.013781170360744, 0.026984844356775284, 0.001302648801356554, 0.014148668386042118, -0.012882113456726074, -0.02913733199238777, 0.004941534250974655, -0.03504354879260063, -0.01058525126427412, -0.022062998265028, -0.004275443963706493, 0.031867317855358124, 0.011064311489462852, 0.0028612336609512568, 0.0025298292748630047, 0.0014429213479161263, 0.013649921864271164, 0.012206180021166801, -0.03346855938434601, -0.017889272421598434, -0.013302111066877842, -0.006447619292885065, -0.005059658549726009, 0.019674262031912804, 0.02758859097957611, -0.024031735956668854, -0.007297458127140999, 0.012980550527572632, -0.006539493799209595, -0.010965874418616295, 0.004882472101598978, -0.011497434228658676, -0.018886767327785492, 0.01590740866959095, -0.013636796735227108, -0.010933062061667442, 0.01513303816318512, -0.033521056175231934, -0.018322395160794258, -0.038534779101610184, 0.012094617821276188, -0.009915880858898163, -0.003289434127509594, -0.013177424669265747, 0.007402457296848297, -0.06294713914394379, -0.005939028225839138, 0.011123373173177242, -0.01526428759098053, -0.0014068278251215816, -0.01031619030982256, 0.01307898759841919, 0.0005992348305881023, -0.0008522997959516943, 0.0008416358032263815, -0.013899294659495354, -0.017771147191524506, -0.0012296413769945502, -0.0032730279490351677, -0.0015946783823892474, 0.0030958415009081364, 0.01640615612268448, -0.02437298558652401, 0.004895596764981747, -0.02617109939455986, -0.0055419993586838245, -0.00801932904869318, 0.005945590790361166, -0.003026935737580061, -0.0433647520840168, 0.019687386229634285, 0.030948571860790253, -0.01643240638077259, -0.026748595759272575, 0.004469036590307951, -0.010362127795815468, -0.00756651908159256, -0.0022295964881777763, -0.01820426993072033, -0.009896192699670792, 0.004537942819297314, 0.015854908153414726, -0.014135544188320637, 0.04339100047945976, 0.020986754447221756, 0.012022431008517742, 0.010696813464164734, 0.0028858426958322525, -0.0191230159252882, 0.013978044502437115, 0.0016668654279783368, -0.004203257150948048, -0.041107263416051865, 0.007848705165088177, 0.007002147380262613, 0.02027800865471363, 0.009889630600810051, 0.006903710309416056, -0.013833670876920223, -0.0048496597446501255, -0.0030433419160544872, 0.018059896305203438, 0.00788151752203703, 0.0019769417122006416, 0.010152129456400871, 0.0065165250562131405, 0.009686194360256195, -0.009659944102168083, -0.01987113617360592, -0.016209281980991364, -0.0034748236648738384, -0.004242632072418928, 0.02464860863983631, 0.014411167241632938, 0.0017718648305162787, -0.0036979475989937782, -0.014936164021492004, -0.005440281238406897, 0.016064908355474472, 0.025619853287935257, -0.007533706724643707, 0.023532990366220474, 0.012534302659332752, 0.019280513748526573, 0.0038160718977451324, -6.772665801690891e-05, -0.012855863198637962, 0.011503996327519417, 0.00047618866665288806, -0.020855505019426346, -0.011628682725131512, -0.014529291540384293, -0.01078868843615055, -0.011031499132514, 0.004403412342071533, 0.003194278571754694, 0.018650518730282784, 0.012199616990983486, 0.018755517899990082, -0.013019924983382225, 0.05255219712853432, -0.008157140575349331, -0.019936760887503624, 0.009102134965360165, -0.017639897763729095, 0.007008709944784641, 0.005144970491528511, 0.003891540225595236, -0.006949647329747677, 0.005407468881458044, -0.016222406178712845, -0.00815057847648859, -0.007192458491772413, -0.005036689806729555, -0.005948871839791536, -0.03709103539586067, 0.006989022251218557, -0.02118362858891487, 0.002208268502727151, -0.013584297150373459, 0.014030544087290764, 0.006050590425729752, 0.01135962177067995, -0.010454002767801285, -0.006982459686696529, -0.012987112626433372, 0.007730580400675535, 0.01307898759841919, -0.006021059118211269, -0.03207731619477272, 0.003681541420519352, 0.00560762407258153, 0.009633694775402546, -0.002211549784988165, 0.03491229936480522, -0.0002914143551606685, -0.0005467351293191314, -0.008767449297010899, -0.006624805741012096, 0.00020989625772926956, -0.0007272028597071767, 0.006129339803010225, -0.0028218587394803762, 0.04730222746729851, -0.01603865809738636, -0.005788091570138931, 0.007448394782841206, -0.0015216709580272436, 0.006746211089193821, 0.0044263806194067, 0.012284928932785988, -0.003409199183806777, -0.02474048361182213, -0.014923038892447948, -0.0003720095846801996, -0.01567116007208824, 0.005020283628255129, 0.048929717391729355, 0.039322275668382645, -0.008780574426054955, -0.02065863087773323, -0.006109652575105429, 0.005509187001734972, -0.0020294415298849344, -0.004866065923124552, -0.025317979976534843, 0.009495883248746395, 0.024806108325719833, 0.012212742120027542, 0.009089009836316109, -0.0132102370262146, -0.014253668487071991, 0.0029120927210897207, -0.008570576086640358, -0.011851807124912739, -0.01109056081622839, -0.011969931423664093, -0.017259275540709496, -0.03320606052875519, 0.017758022993803024, -0.01601240783929825, -0.01925426349043846, -0.007710893172770739, 0.0013682733988389373, -0.01963488757610321, -0.02477985806763172, -0.007074334193021059, 0.014975538477301598, 0.01807302050292492, 0.003451855154708028, 0.037274785339832306, 0.009003697894513607, 0.00943682063370943, -0.043285999447107315, -0.007625581230968237, 0.01834864541888237, 0.0049382527358829975, -0.012586802244186401, 0.020317383110523224, 0.001245227176696062, 0.02475360780954361, 0.014056794345378876, 0.027089843526482582, -0.02155112661421299, -0.020553631708025932, 0.010099629871547222, -0.007461519446223974, 0.013006799854338169, 0.00606371508911252, 0.00013217209198046476, -0.008557450957596302, -0.003930914681404829, 0.02438610978424549, 0.02488485723733902, -0.022627370432019234, -0.013072424568235874, 0.006614962127059698, 0.004472318105399609, 0.0025560790672898293, -0.0004466575919650495, -0.01834864541888237, 0.01872926764190197, -0.025199854746460915, 0.001942488830536604, -0.022089248523116112, 0.001996629172936082, 0.0066904304549098015, 0.0014798352494835854, 0.007848705165088177, 0.024477984756231308, 0.017154276371002197, 0.002610219409689307, -0.01559241022914648, -0.001466710353270173, 0.013663046061992645, -0.0009531976538710296, -0.00807182863354683, -0.0059784031473100185, 0.002326392801478505, -0.02308674156665802, 0.001377296750433743, 0.026223599910736084, -0.016904903575778008, 0.01281648874282837, -0.011280872859060764, -0.03819353133440018, -0.002644672291353345, -0.0019063953077420592, -0.003402636619284749, 0.020606132224202156, 0.013439922593533993, -0.015224912203848362, 0.015881158411502838, 0.002364126965403557, 0.019280513748526573, -0.0021245970856398344, 0.010854312218725681, -0.012921487912535667, 0.008649324998259544, -0.018059896305203438, -0.012153680436313152, 0.0390072762966156, -0.013833670876920223, 0.00108280626591295, 0.005161376670002937, -0.025974225252866745, -0.009587757289409637, 0.006759336218237877, -0.0045018489472568035, 0.02412361092865467, -0.01038837805390358, -0.016957402229309082, 0.025212980806827545, 0.025436103343963623, -0.0008654246921651065, -0.004465755540877581, 0.0019375670235604048, -0.022535495460033417, 0.005161376670002937, 0.002595453755930066, -0.0016758887795731425, -0.008708387613296509, -0.0075796437449753284, 0.009338383562862873, -0.012212742120027542, -0.05953465774655342, 0.003202481660991907, -0.0015503817703574896, 0.01858489401638508, 0.012114305049180984, -0.010814937762916088, -0.0011869854060932994, -0.022404246032238007, 0.03134232014417648, 0.0017948334570974112, 0.01820426993072033, 0.024792982265353203, 0.0005532975774258375, 0.00820307806134224, 0.01546116080135107, -0.01796802133321762, 0.002377251861616969, 0.012678677216172218, -0.005263094790279865, 0.005597780458629131, 0.016878653317689896, 0.016747403889894485, -0.004990752786397934, -0.006375432014465332, -0.011497434228658676, -0.00015011632058303803, 0.004383724648505449, -0.011818994767963886, 0.007166208699345589, 0.004344350192695856, -0.0015848346520215273, 0.007356520276516676, -0.028402335941791534, -0.02525235526263714, 0.003022013930603862, -0.0032582625281065702, -0.008032454177737236, -0.009791193529963493, 0.011582746170461178, -0.03349480777978897, 0.003678260138258338, 0.009686194360256195, 0.02858608588576317, 0.016996776685118675, -0.021616751328110695, -0.017403649166226387, -0.007133396342396736, 0.002652875380590558, 0.011864932253956795, 0.01166805811226368, -0.027299843728542328, -0.0011164388852193952, 0.0017128026811406016, -0.0077240183018147945, -0.012665552087128162, 0.011753370054066181, 0.011759932152926922, 0.004813565872609615, -0.016891777515411377, -0.00022907095262780786, 0.013302111066877842, 0.024176111444830894, -0.014293042942881584, 0.0196086373180151, -0.016983652487397194, 0.0196086373180151, -0.001558584743179381, 0.013249611482024193, -0.0017997552640736103, -0.02474048361182213, 0.030738573521375656, -0.0002586020273156464, -0.006989022251218557, -0.04325975105166435, 0.005246688611805439, 0.00380294700153172, 0.013833670876920223, 0.0011705792276188731, -0.022115498781204224, -0.031001072376966476, -0.021603625267744064, -0.011339934542775154, 0.03475480154156685, 0.02450423501431942, -0.0033255277667194605, 0.00734339514747262, -0.0013444845099002123, -0.014004294760525227, 0.012862426228821278, -0.004623254761099815, -0.0177055224776268, -0.013663046061992645, -0.014056794345378876, 0.007769955322146416, 0.0030876384116709232, 0.031736068427562714, -0.017928646877408028, 0.006401681806892157, -0.008754325099289417, -0.005640436429530382, -0.0030039669945836067, -0.0002350181748624891, -0.017272401601076126, -0.032654810696840286, -0.004846378229558468, -0.006956209894269705, -0.019543012604117393, 0.0038095093332231045, -0.0006398400873877108, 0.005998090375214815, -0.01167462021112442, -0.015946783125400543, -0.0021163939964026213, 0.021852999925613403, -0.02400548756122589, -0.00014416909834835678, 0.011766495183110237, -0.008504951372742653, -0.04961221665143967, -0.016064908355474472, -0.02295549400150776, 0.004626535810530186, 0.005939028225839138, 0.027221092954277992, -0.007802767679095268, 0.03157856687903404, -0.009705881588160992, 0.023926736786961555, -0.009213697165250778, -0.03569979593157768, -0.0035634171217679977, 1.818776217987761e-05, 0.025462353602051735, -0.015487411059439182, -0.043810997158288956, 0.002319830469787121, -0.003776696976274252, 0.030896073207259178, 0.00018559463205747306, -0.029058583080768585, -0.023414865136146545, 0.0022509244736284018, -0.0028727177996188402, 0.0046035670675337315, -0.027483591809868813, 0.009771506302058697, -0.010598376393318176, -0.013111799955368042, 0.01148430909961462, -0.01289523858577013, -0.016852403059601784, 0.018256770446896553, -0.01185836922377348, 0.015356161631643772, 0.032129816710948944, 0.0010549158323556185, 0.02628922462463379, 0.014371792785823345, -0.0030072482768446207, -0.04730222746729851, -0.010368690825998783, 0.002488813828676939, 0.005791373085230589, -0.0044132559560239315, 0.010349002666771412, -0.039296023547649384, -0.004062164109200239, -0.02155112661421299, 0.028691085055470467, 0.021328002214431763, 0.012724614702165127, -0.0024560014717280865, -0.0003968238888774067, 0.013019924983382225, 0.0018637393368408084, 0.014437416568398476, 0.010499939322471619, 0.0051055955700576305, -0.014450541697442532, 0.03349480777978897, 0.04155351221561432, 0.010972436517477036, -0.000743608979973942, 0.009646819904446602, -0.03013482689857483, 0.0367235392332077, 0.028008589521050453, -0.0050399708561599255, -0.0248979814350605, 0.006178558338433504, 0.017758022993803024, -0.004131069872528315, -0.008859324268996716, 0.0018834266811609268, 0.012547427788376808, -0.04118601232767105, 0.008183390833437443, 0.02437298558652401, 0.016589904204010963, -0.022902993485331535, 0.0063196513801813126, 0.002976076677441597, 0.006651055533438921, 0.0008207179489545524, 0.01846676878631115, -0.01757427491247654, 0.005220438819378614, -0.0020228789653629065, 0.0032549812458455563, 0.04567473754286766, -0.01937238872051239, 0.008701824583113194, 0.0005450945463962853, 0.025698602199554443, 0.010408065281808376, -0.0014338979963213205, -0.012698364444077015, -0.010381815023720264, -0.01605178229510784, 0.011385872028768063, -0.0013354610418900847, -0.0013141330564394593, -0.01033587846904993, 0.005486218258738518, 0.012691802345216274, -0.011143061332404613, -0.007481207139790058, 0.013833670876920223, -0.008570576086640358, -0.009889630600810051, -0.009338383562862873, 0.014713040553033352, 0.005863559897989035, -0.005394344218075275, -0.013315236195921898, -0.0013305392349138856, 0.01025712862610817, -0.025501728057861328, -0.007225270848721266, 0.017902396619319916, 0.0059127784334123135, -0.005863559897989035, 0.011018374003469944, -0.002414986025542021, -0.007461519446223974, 0.008183390833437443, 0.004987471271306276, -0.004003101959824562, -0.023257365450263023, -0.0012362038251012564, -0.006811835803091526, -0.004633098375052214, 0.021590501070022583, 0.014975538477301598, 0.009915880858898163, 0.0022837368305772543, 0.021341128274798393, 0.007586206309497356, -0.017338024452328682, -0.009102134965360165, -0.009659944102168083, 0.0005438640364445746, -0.00756651908159256, -0.01820426993072033, -0.007953704334795475, 0.05108220502734184, 0.006270432844758034, 0.008288390003144741, -0.003638885449618101, 0.020186133682727814, -0.0033796681091189384, -0.0012411256320774555, 0.017548024654388428, 0.002703734440729022, 0.0033501370344311, 0.00702183460816741, -0.001598779927007854, -0.00802589114755392, -0.01744302548468113, -0.01910988986492157, 0.013013362884521484, 0.0016947558615356684, 0.013367735780775547, -0.001955613726750016, 0.014069919474422932, 0.030974822118878365, 0.00432794401422143, -0.021091753616929054, 0.004764347802847624, 0.007769955322146416, -0.0005664225318469107, 0.009043073281645775, 0.019070515409111977, 0.026381097733974457, 0.020448632538318634, -0.003894821275025606, 0.00041753664845600724, -0.01820426993072033, -0.03102732077240944, 0.006313088815659285, 0.01874239183962345, -0.02051425725221634, 0.010289940983057022, -0.0019638168159872293, 0.037143535912036896, -0.006532931234687567, -0.008997135795652866, 0.011451496742665768, 0.013649921864271164, 0.0020934254862368107, 0.007107146549969912, 0.012718051671981812, 0.0011681183241307735, 0.004685597959905863, 0.0024199080653488636, -0.019411763176321983, -0.01199618075042963, 0.008032454177737236, 0.00981088075786829, 0.007409019861370325, -0.011549933813512325, 0.012553989887237549, -0.0121208680793643, 0.006962772458791733, -0.0088527612388134, 0.0048562223091721535, 0.0024018611293286085, -0.014345542527735233, -0.026446722447872162, 0.025737976655364037, -0.00962713174521923, 0.00015719147631898522, 0.0024248298723250628, 0.008432763628661633, 0.022167997434735298, 0.0030072482768446207, 0.018676767125725746, -0.007304020691663027, 0.0029974046628922224, -0.013768046163022518, 0.01821739599108696, 0.007789642550051212, 7.223835564218462e-05, 0.009239946492016315, 0.004560911096632481, -0.023939862847328186, -0.002657797187566757, -0.007172771263867617, -0.0241367369890213, 0.00865588802844286, -0.008872449398040771, 0.014594916254281998, -0.00506293959915638, 0.017036153003573418, -0.017338024452328682, -0.014056794345378876, -0.013649921864271164, 0.0036848224699497223, 0.0274573415517807, 0.004042476881295443, -0.008144015446305275, -0.009988067671656609, 0.003632322885096073, 0.010946187190711498, -0.006441056728363037, -0.0016471780836582184, 0.009856818243861198, -0.014581791125237942, 0.007369644939899445, 0.0061752768233418465, 0.004820128437131643, 0.013518672436475754, 0.01212743017822504, -0.013951795175671577, 0.014594916254281998, 0.0027742809616029263, -0.007074334193021059, -0.018256770446896553, 0.008308077231049538, -0.023690488189458847, 0.0033895117230713367, 0.016366781666874886, 0.002272252459079027, -0.02771984040737152, -0.004308256320655346, -0.0012033914681524038, -0.005614186637103558, 0.012337429448962212, 0.005181063897907734, 0.0021869405172765255, 0.005312313325703144, -0.015828659757971764, -0.014266792684793472, -0.004564192611724138, -0.013223361223936081, -0.004219663329422474, -0.009029948152601719, 0.008911823853850365, 0.0009121822658926249, 0.003023654455319047, -0.008708387613296509, 0.019188640639185905, -0.022981742396950722, 0.022417372092604637, -0.016603030264377594, -0.006109652575105429, 0.04157976061105728, 0.010329315438866615, 0.007356520276516676, 0.0033927930053323507, 0.010198066011071205, 0.0036520103458315134, -0.022916117683053017, 0.013899294659495354, 0.010381815023720264, 0.0134005481377244, 0.002313267905265093, -0.001783349085599184, -0.015881158411502838, -0.011175873689353466, 0.0016422561602666974, -0.014069919474422932, -0.019438013434410095, 0.000172777334228158, -0.020369883626699448, 0.011897743679583073, -0.006555899977684021, -0.003734041005373001, -0.006765898782759905, -0.01693115197122097, 0.009784631431102753, 0.013367735780775547, 0.006595274433493614, 0.004154038615524769, -0.015041163191199303, -0.017521774396300316, 0.017009902745485306, -0.0011279232567176223, -0.01559241022914648, -0.00314341951161623, -0.010572127066552639, -0.004154038615524769, -0.006001371890306473, -0.026604222133755684, 0.01757427491247654, 0.002370689529925585, 0.010171816684305668, 0.007185896392911673, -0.015290536917746067, 0.0007136677741073072, -0.004692160524427891, 0.008872449398040771, -0.008294952102005482, 0.001353507861495018, 0.014004294760525227, -0.012055243365466595, 0.024018611758947372, 0.0038291967939585447, 0.003927633631974459, -0.02526547946035862, 0.0006857772823423147, 0.004350912291556597, 0.0215773768723011, 0.004912002943456173, 0.011261185631155968, 0.0024035018868744373, 0.021196752786636353, 0.006480431649833918, 0.0027726402040570974, 0.008445888757705688, -0.017639897763729095, -0.022259872406721115, -0.02614484913647175, -0.012980550527572632, -0.005276219453662634, -0.04853597283363342, 0.0024281111545860767, 0.01823052018880844, -0.006910272873938084, 0.0034387302584946156, 0.005030127242207527, 0.0029465456027537584, -0.03709103539586067, 0.03415105491876602, 0.016314281150698662, 0.0022427213843911886, 0.011254622600972652, -0.0020113945938646793, -0.012028993107378483, 0.011759932152926922, 0.020750505849719048, 0.001776786637492478, 0.007271208334714174, 0.017377400770783424, 0.003297637216746807, 0.04475599154829979, -0.013938670046627522, -0.008728074841201305, -0.005666686221957207, 0.01719365082681179, 0.016091156750917435, 0.026604222133755684, -0.019057391211390495, 0.019201764836907387, -0.004816847387701273, -0.021997373551130295, 0.01871614158153534, -0.001106595154851675, 0.007927454076707363, -0.0014404604444280267, 0.01603865809738636, -0.015736784785985947, -0.0023854549508541822, -0.012842739000916481, -2.085376218019519e-05, 0.03543729707598686, -0.012055243365466595, -0.02052738144993782, 0.010565564036369324, 0.010939625091850758, -0.006486993748694658, 0.002585610141977668, 0.0014388198032975197, 0.037012286484241486, -0.012370241805911064, 0.0015815533697605133, 0.008091515861451626, 0.0017735054716467857, 0.007231833413243294, 0.01185836922377348, 0.017088651657104492, -0.0166686549782753, 0.013873045332729816, -0.012298054061830044, -0.009541819803416729, -0.006559181027114391, -0.014096168801188469, 0.00871494971215725, 0.025186730548739433, -0.0018292863387614489, 0.0015208505792543292, 0.018545517697930336, -0.0030728729907423258, 0.004885753151029348, 0.0112218102440238, -0.010047129355370998, 0.015697410330176353, -0.01820426993072033, -0.026131724938750267, 0.004656067118048668, -0.036487288773059845, -0.00853120069950819, 0.0007911868742667139, 0.0034321676939725876, -0.007067772094160318, 0.005122001748532057, -0.006864335387945175, 0.015093663707375526, 0.01412241905927658, 0.00391779001802206, -0.015290536917746067, -0.004606848582625389, -0.0018161614425480366, 0.00367169757373631, -0.023388614878058434, -0.004639660939574242, -0.005079345777630806, -0.007783080451190472, -0.025199854746460915, 0.026735471561551094, -0.003734041005373001, 0.022640494629740715, -0.017797397449612617, 0.0007112068706192076, 0.03362605720758438, 0.003973571117967367, -0.008865886367857456, -0.016760528087615967, 0.015093663707375526, -0.005430437624454498, -0.005249969661235809, -0.007691205944865942, 0.02077675610780716, 0.010814937762916088, -0.004190132021903992, -0.002746390411630273, 0.014411167241632938, 0.025173604488372803, 0.004829972051084042, -0.007172771263867617, -0.0015495613915845752, 0.00615558959543705, 0.009194009937345982, 0.023664239794015884, 0.003179512917995453, 0.009344946593046188, 0.0021311596501618624, -0.01435866765677929, 0.012009305879473686, 0.0017800679197534919, 0.011864932253956795, -0.02218112163245678, -0.00975838117301464, -0.0196086373180151, 0.005768404342234135, -0.007815892808139324, 0.0086624501273036, -0.003020373173058033, -0.011628682725131512, 0.0029317799489945173, 0.03772103413939476, 0.028061088174581528, -0.010427752509713173, 0.009187446907162666, 0.01135305967181921, -0.00015903716848697513, -0.007264645770192146, 0.006529650185257196, -0.00903651025146246, -0.025580478832125664, -0.018558643758296967, 0.004416537005454302, -0.006395119708031416, -0.01526428759098053, -0.009659944102168083, -0.02348048985004425, 0.017679274082183838, -0.013288985937833786, -0.0174298994243145, 0.004593723453581333, 0.00943682063370943, -0.01546116080135107, 0.01678677834570408, -0.01494928915053606, 0.0045740362256765366, -0.00011443293624324724, -0.006706836633384228, 0.01289523858577013, -0.004255756735801697, 0.006132620852440596, 1.7329002730548382e-05, 0.0016315921675413847, 0.011733682826161385, -0.004439505748450756, 0.00519747007638216, 0.025842975825071335, -0.024294234812259674, -0.007284332998096943, -0.0024117049761116505, 0.006467306520789862, 0.0029465456027537584, 0.010401503182947636, 0.0029892015736550093, 0.01102493703365326, 0.03903352469205856, 0.010572127066552639, 0.033153560012578964, 0.019280513748526573, -0.012731176801025867, -0.004492005333304405, -0.0021869405172765255, -0.012061805464327335, -0.008728074841201305, -0.00419997563585639, -0.013006799854338169, 0.005532155744731426, 0.01782364770770073, -0.017285525798797607, 0.016826152801513672, 0.007363082841038704, -0.001624209457077086, 0.026512347161769867, 0.03142106905579567, 0.008137453347444534, 0.006660899147391319, 0.02771984040737152, 0.004275443963706493, -0.02474048361182213, 0.0014798352494835854, 0.01938551291823387, 0.001784989726729691, 0.014227418228983879, 9.853947267401963e-05, -0.004616692196577787, 0.009824005886912346, 0.007336833048611879, -0.012343991547822952, 0.0033107621129602194, -0.0008654246921651065, 0.004787316080182791, 0.03874477744102478, 0.035726044327020645, 0.003071232233196497, -0.008695262484252453, -0.011379309929907322, -0.011412122286856174, -0.0177055224776268, -0.004498567897826433, -0.0019785824697464705, -0.020881755277514458, -0.011878056451678276, 0.01910988986492157, -0.03722228482365608, -0.014161793515086174, 0.021642999723553658, -0.012304617092013359, -0.01871614158153534, 0.014201167970895767, 0.0012091336539015174, -0.010401503182947636, 0.012370241805911064, -0.01058525126427412, 0.03228731453418732, 0.0022033466957509518, -0.01809927076101303, -0.01809927076101303, 0.0374847836792469, 0.0009228462586179376, -0.0016520998906344175, -0.0066051185131073, -0.009633694775402546, -0.011884619481861591, 0.021013004705309868, 0.016196157783269882, 0.003993258345872164, 0.0016947558615356684, 0.0011705792276188731, 0.004534661304205656, 0.017495524138212204, -0.00474137905985117, -0.003615916706621647, 0.008321202360093594, 0.009771506302058697, -0.011628682725131512, 0.007861829362809658, -0.010079941712319851, 0.005351687781512737, 0.009226822294294834, -0.010664001107215881, -0.009876505471765995, 0.0030138108413666487, -0.0055551244877278805, -0.012416178360581398, 0.00961400754749775, -0.0006086683715693653, -0.005204032640904188, -0.014371792785823345, 0.0013969842111691833, 0.013249611482024193, 0.020881755277514458, -0.0014658899744972587, -0.010119317099452019, 0.010401503182947636, 0.014056794345378876, 0.012750864028930664, 0.017508650198578835, -0.005794654134660959, 0.0076387058943510056, 0.002067175693809986, 0.0014626088086515665, 0.00834088958799839, -0.005437000188976526, 0.03325855731964111, -0.005108877085149288, 0.0026906095445156097, -0.0016980371437966824, 0.0011705792276188731, -0.0088527612388134, 0.02422861009836197, 0.019700512290000916, 0.00401294557377696, -0.003973571117967367, 0.001681630965322256, 0.013807420618832111, -0.0035371670965105295, 0.016445530578494072, 0.018440518528223038, -0.0018112396355718374, 0.010329315438866615, -0.004075289238244295, 0.023007992655038834, 0.0013994451146572828, 0.014857414178550243, 0.00905619841068983, 0.010289940983057022, 0.015146163292229176, 0.007415582425892353, -0.0035634171217679977, -0.006034184247255325, -0.016498031094670296, 0.020855505019426346, 0.012868988327682018, 0.003363261930644512, -0.01563178561627865, 0.004797160159796476, -0.03517479822039604, 0.018164895474910736, 0.005581374280154705, -0.012166804634034634, -0.003625760320574045, 0.002332955366000533, 0.01618303172290325, 0.0003063849580939859, 0.027431093156337738, -0.0024035018868744373, -0.019083639606833458, 0.011182435788214207, 0.013715546578168869, 9.356635564472526e-05, -0.0037045099306851625, 0.010322753340005875, -0.015736784785985947, 0.026879845187067986, 0.012599927373230457, -0.013938670046627522, -0.013978044502437115, 0.010775563307106495, 0.017272401601076126, 0.012035556137561798, 0.024661732837557793, -0.026000475510954857, -0.009331821464002132, -0.004183569923043251, 0.018033646047115326, 0.009653382003307343, -0.0037898218724876642, -0.010211191140115261, -0.005354969296604395, 0.013702421449124813, -0.004724972881376743, 0.010729625821113586, -0.0015224912203848362, 0.002718500094488263, -0.014161793515086174, 0.026866720989346504, -0.018689893186092377, 0.009679632261395454, -0.02090800553560257, -0.009692756459116936, 0.0007760111475363374, -0.004265600349754095, 0.010289940983057022, 0.0027956089470535517, 0.02231237106025219, -0.006460743956267834, 0.006053871475160122, -0.03577854484319687, -0.0065165250562131405, 0.009981505572795868, -0.006956209894269705, 0.013663046061992645, 0.000460192677564919, 0.0038259155116975307, -0.0030023264698684216, -0.016878653317689896, 0.02283736877143383, 0.005135126877576113, -0.01605178229510784, -0.010742750950157642, 0.0021852999925613403, 0.013144612312316895, -0.009653382003307343, -0.016576780006289482, -0.006555899977684021, -0.021249253302812576, -0.004803722258657217, 0.013249611482024193, 0.003776696976274252, 0.003730759723111987, -0.01718052662909031, -0.003730759723111987, 0.0008957760874181986, -0.022509245201945305, 0.0054205940105021, -0.01897864043712616, -0.0036027918104082346, 0.024477984756231308, 0.02374298870563507, 0.0007870853296481073, 0.019018014892935753, -0.004642941989004612, 0.00629012007266283, -0.0005496062221936882, 0.028533585369586945, 0.0010196425719186664, -0.018571767956018448, -0.009285883978009224, -0.002859592903405428, -0.0009351508924737573, -0.0028399054426699877, -9.843693260336295e-05, 0.003510917304083705, 0.00892494898289442, 0.009548382833600044, 0.004140913486480713, -0.0006078480510041118, -0.006191683001816273, 0.015277411788702011, -0.020461756736040115, 0.010047129355370998, -0.026092350482940674, -0.0076518310233950615, 0.00027439295081421733, 0.00930557120591402, 0.008406514301896095, -0.003448573872447014, 0.0077240183018147945, -0.010513064451515675, 0.009673069231212139, -0.007212146185338497, -0.010821499861776829, 0.029583580791950226, -0.006555899977684021, -0.0026085786521434784, 0.00046470435336232185, -0.016970528289675713, 0.014791790395975113, -0.0007091560983099043, 0.002593813231214881, 0.003632322885096073, 0.014201167970895767, -0.005971840582787991, -0.029662329703569412, 0.0009220259380526841, -0.023795487359166145, -0.009659944102168083, -0.02913733199238777, 0.005771685391664505, 0.017259275540709496, -0.0007731401128694415, 0.01281648874282837, 0.01693115197122097, 0.013197111897170544, -0.0028858426958322525, -0.0027201406192034483, -0.012140555307269096, -0.0041441950015723705, 0.0028218587394803762, 0.008478701114654541, -0.005630592815577984, -0.010349002666771412, -0.006647774484008551, -0.026249848306179047, -0.0016520998906344175, -0.0668846145272255, 0.013649921864271164, 0.00506293959915638, -0.027089843526482582, -0.014936164021492004, -1.4227212886908092e-05, 0.02182674966752529, 0.00357654201798141, 0.00205076951533556, -0.014398042112588882, -8.674754644744098e-05, -0.02502923086285591, -0.034177303314208984, -0.00956807006150484, -0.01391241978853941, 0.01026369072496891, 0.002369048772379756, -0.011608995497226715, 0.0011041342513635755, 0.008819948881864548, 0.00903651025146246, -0.019661137834191322, -0.005450124852359295, -0.0062540266662836075, -0.0017505368450656533, 0.018309269100427628, -0.02655172161757946, 0.022522371262311935, 0.002862874185666442, -0.010703375563025475, -0.0020967067684978247, 0.019805511459708214, 0.0005163837340660393, -0.01282305084168911, 0.0018325676210224628, 0.013105236925184727, -0.013544921763241291, 0.008550887927412987, -0.01204868033528328, -0.00606043403968215, -0.0028366243932396173, 0.006132620852440596, 0.011195560917258263, -0.007855267263948917, -0.005922622047364712, 0.018322395160794258, 0.001223078928887844, 0.006628086790442467, 0.00021348509471863508, -0.0021836592350155115, 0.02194487303495407, 0.013328361324965954, 0.002329674083739519, -0.011969931423664093, 0.010237441398203373, -0.011740244925022125, 0.0025232667103409767, 0.009495883248746395, -0.017889272421598434, 0.008452451787889004, 0.0014593275263905525, 0.02144612744450569, -0.02795608900487423, 0.0033320903312414885, 0.012993675656616688, 0.014529291540384293, -0.017495524138212204, 0.008905261754989624, 0.004623254761099815, -0.014056794345378876, 0.005295907147228718, 0.00045773174497298896, -0.010933062061667442, 0.02064550668001175, -0.016642404720187187, -0.0013838591985404491, -0.005089189391583204, 0.0014486635336652398, 0.009502445347607136, 0.020238634198904037, 0.01615678146481514, 0.02435985952615738, 0.009869943372905254, -0.005499343387782574, 0.004606848582625389, -0.007861829362809658, -0.0012969066156074405, -0.004157319664955139, 0.013925544917583466, 0.012796801514923573, 0.011497434228658676, -0.0029481861274689436, -0.001514288131147623, -0.009922442957758904, 0.004774191416800022, 0.021524876356124878, -0.014135544188320637, 0.007271208334714174, 0.004262319300323725, 0.007028397172689438, 0.02374298870563507, -0.008590263314545155, 0.01592053286731243, -0.03682853654026985, 0.029399830847978592, -0.030869822949171066, -0.012225867249071598, 0.03344230726361275, 0.004560911096632481, 0.006719961296766996, -0.025842975825071335, 0.017023026943206787, -0.007527144160121679, -0.0223386213183403, -0.01909676566720009, 0.014332417398691177, 0.019936760887503624, 0.024924231693148613, -0.014896789565682411, 0.0016603029798716307, -0.008465575985610485, 0.004288569092750549, 0.004390287213027477, 0.007205583620816469, -0.009089009836316109, -0.015028038993477821, 0.009863381274044514, -0.012343991547822952, 0.0043312250636518, 0.012993675656616688, 0.024989856407046318, 0.02089487947523594, 0.018138645216822624, -0.017364274710416794, 0.0016603029798716307, 0.0031532631255686283, -0.00692996010184288, -0.011366184800863266, 0.002387095708400011, -0.010795250535011292, 0.013439922593533993, 0.0024691263679414988, 0.011490871198475361, 0.01716740056872368, 0.01719365082681179, -0.026197349652647972, -0.026774846017360687, 0.005463249981403351, -0.004797160159796476, 0.009778068400919437, 0.0017472555628046393, 0.02269299514591694, -0.004898878280073404, -0.0042393505573272705, 0.03128981962800026, -0.001006517675705254, 0.00050161819672212, 0.009587757289409637, -0.0024215485900640488, -0.0023854549508541822, -0.009239946492016315, -0.0010885484516620636, -0.022601120173931122, 0.014293042942881584, -0.0025183449033647776, -0.005269657354801893, -0.00935807079076767, -0.009344946593046188, 0.01655052974820137, -0.02501610666513443, -0.02040925808250904, -0.00858370028436184, 0.008747762069106102, -0.019831761717796326, -0.01628803089261055, -0.02435985952615738, 0.03428230434656143, 0.00779620511457324, 0.0034781049471348524, 0.007448394782841206, -0.006824960932135582, -0.003845602972432971, -0.012672115117311478, 0.02527860552072525, -0.0023444397374987602, 0.0003363261930644512, -0.019464263692498207, 0.020684881135821342, -0.008373701944947243, -0.0173249002546072, -0.003632322885096073, -0.0025101418141275644, -0.007179333828389645, 0.001724286936223507, 0.007868392392992973, -0.005801216699182987, 0.0002407603315077722, 0.00401294557377696, -0.0006898788269609213, -0.026118600741028786, 0.014214293099939823, -0.013978044502437115, 0.004058883059769869, 0.011254622600972652, 0.011366184800863266, -0.01665552891790867, -0.019149264320731163, 0.023060493171215057, 0.020986754447221756, -0.013367735780775547, 0.015736784785985947, 0.00027316249907016754, 0.004882472101598978, 0.01872926764190197, -0.00035273234243504703, 0.01559241022914648, 0.0024363140109926462, 0.0042327879928052425, -0.005240126047283411, -0.027614841237664223, -0.006575587205588818, -0.0027677183970808983, -0.004889034200459719, -0.00015257725317496806, -0.006565743591636419, -0.025554228574037552, 0.00478075398132205, -0.035988543182611465, 0.003402636619284749, 0.000812104728538543, 0.0036027918104082346, 0.0034781049471348524, 0.009259634651243687, -0.00022784048633184284, 0.018558643758296967, 0.001437999540939927, -0.0016102641820907593, 0.005945590790361166, -0.022010497748851776, -0.009239946492016315, -0.010014316998422146, -0.020829254761338234, -0.001957254484295845, 0.007520581595599651, 0.007664956152439117, -0.024149861186742783, -0.01718052662909031, -0.027142344042658806, 0.008137453347444534, 0.02092112973332405, -0.02422861009836197, -0.003717634826898575, -0.0013584296684712172, -0.0003389921912457794, -0.008931511081755161, -0.01347929798066616, -0.0034748236648738384, 0.008833074010908604, -0.03711728751659393, 0.0005352508160285652, 0.008839637041091919, 0.02435985952615738, -0.005410749930888414, 0.0013543281238526106, -0.01655052974820137, -0.02191862463951111, 0.012888675555586815, 0.0009351508924737573, -0.010664001107215881, 0.01678677834570408, 0.013341485522687435, -0.0015356161165982485, 0.003779978258535266, -0.02542297914624214, -0.013315236195921898, 0.011884619481861591, 0.0038291967939585447, -0.005181063897907734, -0.029846077784895897, -0.001566787832416594, 0.002718500094488263, -0.031106071546673775, -0.010230878368020058, 0.030896073207259178, -0.01435866765677929, 0.009285883978009224, -0.004498567897826433, 0.004642941989004612, -0.0038095093332231045, -0.017797397449612617, 0.001647998346015811, -0.007769955322146416, -0.004140913486480713, 0.011832119897007942, 0.020829254761338234, 0.05071470886468887, 0.02231237106025219, -0.03131607174873352, -0.027431093156337738, -0.008111203089356422, 0.013072424568235874, 0.012055243365466595, -0.010099629871547222, 0.026486096903681755, 0.008570576086640358, -0.00039907972677610815, 0.007559956517070532, 0.003944039810448885, -0.0033255277667194605, 0.03170981630682945, -0.019031140953302383, -0.0031467005610466003, -0.0006718320655636489, 0.006562462076544762, 0.000131761931697838, -0.003612635424360633, -0.018309269100427628, 0.01758739911019802, 0.008242452517151833, -0.015828659757971764, 0.003241856349632144, 0.0016570216976106167, 0.02345423959195614, -0.004482161719352007, 0.02732609212398529, -0.007258083205670118, -0.008465575985610485, -0.020068010315299034, -0.012928050942718983, -0.00020743532513733953, 0.009679632261395454, -0.01135305967181921, 0.0030613886192440987, -0.030817322432994843, -0.02026488445699215, -0.005335282068699598, 0.009509007446467876, 0.015946783125400543, 0.024596108123660088, 0.011261185631155968, 0.014253668487071991, 0.021393626928329468, 0.02219424769282341, -0.0166686549782753, -0.00820964016020298, 0.000488903431687504, 0.0050104400143027306, 0.0013059299672022462, -0.01302648801356554, -0.0005085908342152834, -0.025344230234622955, -0.0058176228776574135, -0.024162985384464264, 0.02166924998164177, -0.023690488189458847, -0.017521774396300316, 0.01820426993072033, -0.012586802244186401, 0.028034839779138565, -0.0018178020836785436, 0.0047479416243731976, 0.028323587030172348, 0.0031745911110192537, -0.030082326382398605, 0.01871614158153534, 0.013157736510038376, -0.007002147380262613, 0.01044743973761797, -0.018886767327785492, 0.0016078032786026597, -0.004994033835828304, -0.02204987406730652, -0.033914804458618164, -0.008308077231049538, 0.00871494971215725, 0.0018637393368408084, 0.011280872859060764, -0.005473093595355749, 0.004659348167479038, 0.01669490337371826, 0.02295549400150776, 0.010349002666771412, -0.002761156065389514, 0.02051425725221634, 0.0023017835337668657, -0.019529888406395912, 0.00451825512573123, -0.009443383663892746, 0.008682137355208397, 0.003148341318592429, -0.00042081790161319077, -0.0073827700689435005, 0.007277770899236202, -0.0043115378357470036, 0.02542297914624214, 0.017114901915192604, 0.0032205283641815186, 0.024727357551455498, 0.013105236925184727, -0.0041507575660943985, 0.000888393318746239, 0.008222765289247036, -0.009522132575511932, -0.006765898782759905, -0.017023026943206787, 0.005377938039600849, -0.03415105491876602, 0.007986516691744328, 0.0073958951979875565, -0.009719006717205048, -0.012193054892122746, -0.020684881135821342, -0.0024051424115896225, 0.008623075671494007, 0.034177303314208984, -0.005433718673884869, 0.0020261602476239204, -0.014017419889569283, -0.001542998943477869, 0.01731177605688572, -0.02025175839662552, -0.02605297602713108, 0.017548024654388428, 0.003074513515457511, 0.006706836633384228, 0.023309865966439247, 0.01745614968240261, 0.006733086425811052, 0.010184941813349724, -0.0008564013405703008, 0.006529650185257196, 0.010552438907325268, -0.0068512107245624065, 0.0030449824407696724, 0.019162390381097794, -0.005902934819459915, -0.012298054061830044, -0.02245674654841423, -0.016734279692173004, 0.011884619481861591, 0.008222765289247036, 0.015959909185767174, -0.006441056728363037, 0.01858489401638508, -0.03735353425145149, 0.005958715919405222, -8.336378232343122e-05, -0.003881696378812194, 0.00016990625590551645, 0.014936164021492004, -0.0023510020691901445, 0.011904306709766388, 0.011339934542775154, -0.013453047722578049, 0.009016823023557663, 0.011845244094729424, 0.002168893814086914, 0.0033862304408103228, 0.003300918499007821, 5.465300637297332e-05, 0.016642404720187187, 0.006831523030996323, 0.02808733843266964, 0.02386111207306385, -0.006595274433493614, -0.008747762069106102, 0.003141778754070401, -0.005049814935773611, 0.005354969296604395, 0.011523683555424213, -0.001023744116537273, -0.011116811074316502, -0.012081492692232132, -0.012232429347932339, 0.014831164851784706, -0.016484905034303665, -0.003573260735720396, -0.028953583911061287, 0.014161793515086174, -0.014660540968179703, 0.02527860552072525, 0.009961817413568497, -0.00975838117301464, 0.021328002214431763, 0.017416775226593018, 0.0017013183096423745, 0.019280513748526573, 0.0084721390157938, 0.007776517886668444, -0.00021512572129722685, -0.0067724608816206455, -0.020238634198904037, -0.0022443621419370174, -0.0019867855589836836, -0.0010040567722171545, -0.015749908983707428, 0.013393985107541084, 0.006624805741012096, -0.003720916109159589, 0.009180884808301926, -0.019818635657429695, -0.01951676234602928, -0.015277411788702011, 0.01872926764190197, -0.029321081936359406, -0.001277219271287322, 0.016248656436800957, -0.0019031140254810452, -0.022102372720837593, 0.013321798294782639, 0.00464622350409627, 0.012665552087128162, -0.005729029420763254, -0.007336833048611879, 0.006903710309416056, 0.012074930593371391, 0.005154814105480909, -0.007671518251299858, -0.016865527257323265, 0.009121822193264961, -0.008636200800538063, -0.02308674156665802, -0.0023559238761663437, 0.029399830847978592, -0.02425486035645008, -0.02257486991584301, 0.01294773817062378, 0.004892315715551376, -0.007146521471440792, 0.007632143795490265, 0.002605297602713108, 0.014529291540384293, -0.005640436429530382, -0.02821858786046505, -0.037511035799980164, 0.0011213606921955943, 0.010053692385554314, -0.022679869085550308, 0.0010983921820297837, 0.005404187832027674, 0.01706240139901638, -0.0019375670235604048, 0.03260231390595436, 0.012271804735064507, -0.0034288866445422173, -0.00020476932695601135, -0.0017423337558284402, 0.0061457459814846516, -0.015014913864433765, 0.020317383110523224, 0.010913374833762646, 0.0037110724952071905, 0.0031647474970668554, -0.012350553646683693, -0.010375252924859524, -0.006565743591636419, -0.004295131657272577, -0.012836175970733166, -0.0006492736283689737, -0.012540865689516068, 0.003359980648383498, -0.002104909857735038, 0.03543729707598686, -0.0066838678903877735, -0.009075885638594627, -0.029583580791950226, -0.01758739911019802, -0.005505905952304602, -0.0040720077231526375, 0.007146521471440792, 0.006329494994133711, 0.005259813740849495, -0.006313088815659285, 0.01051962748169899, 0.0045149740763008595, 0.02871733531355858, -0.008216203190386295, -0.013413673266768456, -0.0014995225938037038, 0.023624863475561142, -0.0056109051220119, -0.027404842898249626, 0.020107384771108627, -0.024044862017035484, -0.005085908342152834, -0.014608041383326054, -0.007691205944865942, 0.0020770193077623844, -0.007231833413243294, 0.006276994943618774, -0.015146163292229176, -0.03147356957197189, 0.014371792785823345, -0.009600882418453693, -0.00031294740620069206, 0.001999910455197096, -0.006362307351082563, 0.002536391606554389, -0.0032746687065809965, -0.019070515409111977, 0.008354014717042446, -0.005505905952304602, -0.0027250624261796474, 0.0014896789798513055, -0.016576780006289482, -0.007527144160121679, 0.007993078790605068, 0.03184106573462486, 0.010703375563025475, 0.0004372240509837866, -0.029583580791950226, -0.020619256421923637, -0.03223481401801109, 0.0073893326334655285, 0.007809330243617296, -0.012685239315032959, 0.009141510352492332, -0.015526785515248775, -0.039689771831035614, 0.01616990752518177, 0.022929243743419647, -0.004206538200378418, 0.0037077912129461765, -0.00410153903067112, 0.019438013434410095, -0.016773654147982597, 0.01756114885210991, 0.012350553646683693, -0.0099421301856637, -0.0018440518761053681, -0.026328599080443382, 0.013505547307431698, 0.008163702674210072, 0.006614962127059698, -0.009896192699670792, -0.0013641718542203307, -0.0112218102440238, 0.002602016320452094, 0.013302111066877842, -0.002610219409689307, 0.001004877034574747, -0.0002147155610146001, 0.025987351313233376, 0.00190147350076586, -0.0033829493913799524, -0.00041507574496790767, 0.005276219453662634, -0.024937355890870094, -0.018545517697930336, -0.0056502800434827805, 0.015539910644292831, -0.005604343023151159, -0.0073762075044214725, -0.004403412342071533, 0.003455136436969042, -0.025856101885437965, -0.007507456932216883, -0.01716740056872368, -0.008518076501786709, 0.0018210832495242357, -0.011333372443914413, 0.01707552745938301, 0.020094258710741997, 0.0010803453624248505, -0.003888258943334222, -0.014371792785823345, 0.009463070891797543, -0.011930556036531925, 0.0026791251730173826, 0.00871494971215725, 0.005771685391664505, -0.005013721063733101, -0.007428707089275122, 0.006132620852440596, -0.01154337078332901, 0.017114901915192604, 0.0004573215846903622, 0.011917431838810444, 0.006562462076544762, 0.006975897587835789, -0.00789464171975851, -0.011635245755314827, 0.0004523997486103326, -0.023152366280555725, 0.00034719528048299253, -0.03338980674743652, -0.03396730497479439, -0.013144612312316895, -0.0227192435413599, 0.004022789187729359, -0.004534661304205656, -0.014542416669428349, -0.004757785238325596, 0.014437416568398476, 0.014634290710091591, -0.012350553646683693, -0.009128385223448277, -0.016366781666874886, -0.02693234570324421, 0.010631188750267029, 0.004278725478798151, -0.001724286936223507, -0.017154276371002197, -0.031001072376966476, 0.016878653317689896, 0.0044001308269798756, 0.015369286760687828, -0.00892494898289442, 0.019149264320731163, -0.0005865200655534863, -0.01845364458858967, 0.01962176151573658, -0.015014913864433765, -0.027378592640161514, -0.006936522666364908, -0.027772340923547745, -0.0043115378357470036, -0.017246151342988014, -0.000893315183930099, -0.015014913864433765, 0.02359861508011818, -0.00248389202170074, 0.010545876808464527, 0.02795608900487423, 0.023913612589240074, -0.0011730401311069727, -0.013046175241470337, 0.00860338844358921, 0.008905261754989624, 0.04231475666165352, 0.0017521774861961603, -0.00860338844358921, 0.003510917304083705, 0.02191862463951111, 0.014804914593696594, 0.006316369865089655, -0.001270656706765294, 0.012042118236422539, -0.01652427949011326, 0.020816130563616753, 0.016839278861880302, -0.018952390179038048, 0.007973391562700272, 0.02580360136926174, -0.01578928343951702, 0.0030548262875527143, 0.002013035351410508, -0.020724255591630936, 0.028953583911061287, 0.01263273973017931, -0.013571172021329403, 0.010421190410852432, -0.0045084115117788315, -0.007212146185338497, 0.0015692487359046936, 0.01435866765677929, 0.014699915423989296, 0.010270253755152225, -0.012343991547822952, -0.014962414279580116, -0.0003098712768405676, -0.008104640990495682, 0.03052857518196106, -0.007973391562700272, 0.011956806294620037, -0.012547427788376808, 0.011005248874425888, -0.016642404720187187, 0.026866720989346504, -0.002759515307843685, 0.002429751679301262, 0.008957761339843273, -0.016458654776215553, 0.000503258837852627, 0.0025117823388427496, -0.009449945762753487, -0.011713995598256588, -0.01614365726709366, -0.022259872406721115, -0.005003877449780703, 0.02039613202214241, -0.0020392851438373327, 0.015697410330176353, 0.008130890317261219, 0.002016316633671522, -0.0038160718977451324, 0.010230878368020058, 0.0020343633368611336, 0.008006203919649124, 0.02399236150085926, 7.741654553683475e-05, -0.006956209894269705, 0.0016012408304959536, -0.015198662877082825, 0.016773654147982597, -0.012370241805911064, 0.023244241252541542, 0.0045018489472568035, 0.01134649757295847, -0.0007349957595579326, 0.013649921864271164, -0.018427394330501556, 0.002434673486277461, 0.0033829493913799524, -0.013203673996031284, -0.03643479198217392, -0.013256173580884933, 0.012829613871872425, 0.02678797021508217, 0.002058972604572773, 0.009640256874263287], "a7f8239c-e6f1-467a-ac29-2e5636515606": [-0.027665894478559494, -0.009598801843822002, -0.010118414647877216, 0.050922099500894547, -0.04875938594341278, -0.020658137276768684, -0.020728355273604393, -0.0030685269739478827, -0.02550318092107773, 0.04611918702721596, 0.008917687460780144, 0.014422778971493244, 0.0046835411339998245, 0.005736811086535454, -0.006386328022927046, -0.004960902500897646, -0.007162237074226141, 0.017133193090558052, -0.006927006412297487, -0.011227859184145927, 0.06510613858699799, -0.018383074551820755, -0.008896621875464916, 0.022132717072963715, 0.012906069867312908, -0.01239347830414772, -0.020644094794988632, 0.004929304122924805, -0.049686264246702194, 0.008903643116354942, 0.008664902299642563, 0.000574032193981111, 0.020405353978276253, 0.018790338188409805, -0.03238454461097717, -0.055135179311037064, 0.003131723264232278, 0.009254733100533485, 0.007422043476253748, 0.0240566898137331, -0.011494687758386135, 0.03291820362210274, -0.009324951097369194, -0.004413201939314604, -0.044630564749240875, -0.006217804737389088, -0.0285225547850132, -0.014296386390924454, 0.02192206308245659, -0.002791165839880705, 0.011108488775789738, 0.0228348970413208, -0.008082092739641666, 0.00012156492448411882, 0.050669316202402115, -0.0055472226813435555, 0.005287415813654661, 0.10341708362102509, 0.001086623640730977, -0.0635894313454628, -0.007267564069479704, -0.01686636544764042, 0.02029300481081009, -0.008131245151162148, 0.01784941740334034, 0.0040305135771632195, -0.0029667108319699764, 0.050894010812044144, -0.012119628489017487, 0.02477291412651539, 0.002763078548014164, 0.0074150217697024345, -0.04370369017124176, 0.031907062977552414, 0.018228594213724136, 0.0038023050874471664, 0.01582713983952999, 0.001314832246862352, 0.01752641424536705, -0.01842520572245121, 0.01582713983952999, -0.018537554889917374, 0.03822668269276619, 0.03317098692059517, 0.018565641716122627, -0.001927484292536974, -0.034350648522377014, -0.039265912026166916, -0.007422043476253748, -0.024815043434500694, 0.032328370958566666, 0.0240566898137331, -0.012196867726743221, 0.006467078346759081, 0.00747821805998683, 0.009317929856479168, -0.026682842522859573, -0.0009549648966640234, 0.015504136681556702, -0.020503658801317215, -0.00794165674597025, 0.03168236464262009, -0.008587662130594254, 0.008994926698505878, -0.005248796194791794, -0.0074150217697024345, 0.01631866581737995, 0.04288915917277336, -0.010778464376926422, -0.022694461047649384, 0.005575309973210096, -0.06886982172727585, 0.004206058569252491, 0.00321071851067245, -0.02314385585486889, 0.0012937667779624462, -0.0144649101421237, -0.005280394107103348, -0.020433440804481506, -0.022034410387277603, 0.0256717037409544, -0.03561457246541977, 0.011234881356358528, -0.007583545055240393, -0.011852799914777279, 0.04412499815225601, 0.01737193576991558, 0.02136031724512577, 0.03800198435783386, -0.002780633047223091, -0.006435480434447527, -0.02584022656083107, 0.020110437646508217, -0.029154516756534576, 0.017568545415997505, 0.016108011826872826, 0.00917047169059515, 0.07712745666503906, -0.011220837943255901, 0.013839969411492348, -0.02502569742500782, -0.004100731573998928, -0.0281293336302042, 0.0004480786737985909, -0.0047572702169418335, -0.018383074551820755, -0.023270247504115105, 0.021809713914990425, -0.04791676998138428, 0.03187897428870201, -0.049939047545194626, -0.013615272007882595, -0.048703212291002274, -0.0024839621037244797, 0.04451821744441986, -0.015153045766055584, 0.0036127164494246244, 0.03196323662996292, -0.012695415876805782, 0.05179280415177345, 0.001432447344996035, -0.027174368500709534, 0.005778942257165909, 0.025306569412350655, 0.043170031160116196, 0.00403402466326952, 0.03547413647174835, 0.04050174728035927, -0.004206058569252491, 0.019436344504356384, 0.015335612930357456, 0.0006161630153656006, 0.044462043792009354, -0.00888257846236229, 0.006519741844385862, -0.03274967893958092, 0.03960295766592026, 0.019422300159931183, 0.03159810230135918, -0.015925444662570953, -0.016992757096886635, -0.014289364218711853, 0.02616322971880436, 0.015082827769219875, -0.031991325318813324, 0.013952318578958511, -0.0030404396820813417, 0.01645910181105137, 0.01157894916832447, 0.021823756396770477, -0.014050623401999474, -0.013039483688771725, 0.01189493015408516, 0.02273659035563469, -0.005350612103939056, -0.0236494243144989, -0.007843351922929287, -0.027174368500709534, 0.005866714753210545, 0.0317947156727314, -0.0038233704399317503, -0.01214771531522274, -0.016894452273845673, 0.054910480976104736, -0.024843132123351097, 0.011873865500092506, -0.00782228633761406, -0.06544318050146103, 0.003844436025246978, -0.020587919279932976, 0.05634292960166931, -0.04182184487581253, 0.02706202119588852, 0.00799080915749073, 0.006600492633879185, 0.0183409433811903, -0.01776515692472458, 0.02013852447271347, -0.010160545818507671, -0.001454390469007194, -0.021739495918154716, -0.02550318092107773, 0.007716958876699209, -0.004725671838968992, -0.02600874938070774, -0.03988382965326309, -0.03800198435783386, 0.010013087652623653, 0.02943538874387741, -0.03050270304083824, 0.04109157994389534, -0.006649645511060953, 0.053758908063173294, -0.04024896398186684, -0.015082827769219875, 0.017091063782572746, 0.0297443475574255, -0.006575916428118944, -0.015911400318145752, -0.020896879956126213, 0.014282342977821827, -0.003561808494850993, -0.027623765170574188, -0.052719682455062866, -0.037131283432245255, 0.0038374140858650208, -0.007123616989701986, 0.06370177865028381, -0.0030966142658144236, 0.012702438049018383, 0.008208485320210457, 0.024323517456650734, -0.0007109573343768716, 0.02755354717373848, -0.03569883480668068, 0.01369953341782093, 0.024927392601966858, -0.01332737784832716, -0.002706904197111726, 0.0038655013777315617, -0.007190323900431395, -0.000969886255916208, -0.03041844069957733, 0.020278960466384888, 0.027356935665011406, -0.06662284582853317, 0.04766398295760155, -0.019295908510684967, 0.027736112475395203, 0.046512410044670105, 0.01728767342865467, -0.012744568288326263, -0.006221315357834101, 0.04449012875556946, -0.02044748328626156, -0.03168236464262009, -0.003672401886433363, 0.020419396460056305, 0.009409213438630104, -0.0056244623847305775, -0.01720341295003891, -0.027328848838806152, 0.044630564749240875, -0.002427787519991398, 0.03940634801983833, 0.011298077180981636, -0.03637292981147766, -0.022708503529429436, -0.013622293248772621, -0.02731480449438095, -0.008229550905525684, 0.006691776216030121, 0.010279916226863861, 0.03724363073706627, -0.004062111955136061, 0.019338039681315422, -0.006751461420208216, -0.02378986030817032, 0.00560690788552165, -0.02421117015182972, -0.012154737487435341, -0.019618911668658257, -0.001621158211492002, -0.03637292981147766, 0.04783250764012337, -0.0024646520614624023, 0.04662475734949112, 0.033142898231744766, 0.008917687460780144, 0.018158376216888428, 0.02329833433032036, -0.02102327160537243, -0.02039130963385105, -0.03128914535045624, -0.009240689687430859, 0.005905334372073412, -0.05151193216443062, 0.014436822384595871, -0.0061230105347931385, -0.022357413545250893, -0.01777919940650463, 0.01637483946979046, -0.047720156610012054, 0.04746737331151962, 0.04898408427834511, -0.044321607798337936, 0.02560148574411869, -0.023115769028663635, -0.02338259667158127, 0.0015886824112385511, -0.036709975451231, 0.01841116137802601, -0.025798095390200615, 0.019043123349547386, -0.01234432589262724, -0.020728355273604393, -0.05875843018293381, -0.02721649967133999, -0.011452557519078255, -0.019703174009919167, -0.019675085321068764, -0.017020845785737038, 0.029575824737548828, -0.0366818867623806, -0.02723054401576519, -0.022385500371456146, 0.009844564832746983, 0.0032142293639481068, 0.016276534646749496, 0.005403275601565838, 0.0008342777146026492, 0.012821808457374573, 0.027595676481723785, -0.012709459289908409, 0.003928697668015957, -0.01532156951725483, -0.027188412845134735, 0.0023136832751333714, 0.00723245507106185, 0.018734164535999298, -0.044462043792009354, -0.035417962819337845, -0.019520606845617294, -0.037384066730737686, -0.0009312663460150361, 0.024435866624116898, 0.01340461801737547, -0.0029280909802764654, -0.0004919649218209088, 0.007731002755463123, -0.013355465605854988, 0.0014965212903916836, -0.007316716481000185, 0.003059749724343419, -0.018046028912067413, -0.0285365991294384, 0.05853373184800148, 0.015096872113645077, 0.0029649552889168262, 0.004339472856372595, 0.007137660402804613, -0.013973383232951164, -0.045866403728723526, 0.040726445615291595, 0.04679328203201294, -0.007151704281568527, 0.007358847185969353, 0.007106062490493059, -0.031907062977552414, 0.00774504616856575, -0.016445057466626167, -0.0007337781717069447, -0.015068784356117249, 0.00333360000513494, 0.005069740116596222, -0.005297948606312275, -0.0010058729676529765, -0.030109481886029243, 0.03154192864894867, 0.005045163910835981, -0.027764201164245605, -0.019029080867767334, 0.0006960360333323479, 0.00872809812426567, -0.0021697364281862974, -0.023930296301841736, 0.014492996968328953, -0.016641667112708092, 0.015546266920864582, 0.022034410387277603, -0.011143597774207592, 6.078246224205941e-05, 0.03140149265527725, 0.029575824737548828, 0.005175067111849785, 0.011915995739400387, -0.03954678401350975, 0.07235263288021088, -0.026710931211709976, 0.011480644345283508, 0.027679938822984695, 2.153169361918117e-06, -0.016416970640420914, 0.02943538874387741, -0.009233668446540833, 0.03985574096441269, -0.004458843730390072, 0.02241358906030655, 0.002826274838298559, -0.008257637731730938, 0.04342281445860863, 0.04547318071126938, -0.008292746730148792, -0.0032001857180148363, -0.011248924769461155, -0.009226646274328232, 0.03482813388109207, 0.02422521263360977, 0.01762472093105316, -0.0063828169368207455, 0.004016470164060593, 0.008405095897614956, 0.024730782955884933, 0.002224155468866229, -0.06021896377205849, -0.03555839881300926, -0.02136031724512577, 0.02047557197511196, 0.022947244346141815, -0.00019924360094591975, -0.0004888928961008787, 0.02460438944399357, -0.04898408427834511, -0.026851367205381393, -0.014338517561554909, 0.014661519788205624, 0.022848939523100853, -0.0067619942128658295, 0.014205102808773518, -0.03699084743857384, -0.013137789443135262, 0.013257159851491451, 0.025952575728297234, -0.016108011826872826, -0.0030737933702766895, -0.03800198435783386, -0.008707033470273018, -0.004816955421119928, 0.008166354149580002, 0.036401014775037766, -0.027679938822984695, 0.006523252930492163, -0.0024418311659246683, 0.062409766018390656, -0.009528583846986294, -0.007260541897267103, -0.033536121249198914, 0.00740097789093852, -0.016852321103215218, -0.025461049750447273, -0.002475184854120016, -0.008735120296478271, -0.031766626983881, -0.008524466305971146, 0.0010427373927086592, 0.0008707033121027052, -0.04555744305253029, 0.012765633873641491, -0.0059263999573886395, 0.013264182023704052, 0.019281864166259766, 0.01393827423453331, 0.001593948807567358, 0.015110915526747704, -0.02093900926411152, -0.001732629374600947, 0.006625069305300713, -0.021641189232468605, -0.011452557519078255, -0.02599470689892769, 0.00843318272382021, 0.01679614745080471, 0.0034687696024775505, 0.007260541897267103, -0.027848461642861366, 0.03168236464262009, -0.009317929856479168, 0.03398551419377327, 0.010441417805850506, -0.01165618933737278, -0.021093489602208138, 0.0013174653286114335, -0.03710319474339485, 0.007386934477835894, 0.0224276315420866, 0.005287415813654661, -0.015307526104152203, -0.01930995285511017, 0.024169038981199265, 0.027174368500709534, -0.009409213438630104, -0.011930039152503014, -0.04173758253455162, -0.015602441504597664, -0.0047151390463113785, -0.009310907684266567, -0.0002446658618282527, -0.01536369975656271, 0.030025219544768333, -0.032805852591991425, -0.016416970640420914, 0.007260541897267103, -0.020250873640179634, 0.008004852570593357, 0.03227219730615616, 0.02192206308245659, -0.02468865178525448, -0.0061265211552381516, 0.0026893496979027987, -0.011234881356358528, -0.0011129553895443678, 0.03213176131248474, 0.019998088479042053, -0.008327855728566647, 0.0028719166293740273, -0.0015755165368318558, 0.03235645964741707, -0.01754045858979225, -0.02355111949145794, 0.01981552131474018, -0.03561457246541977, 0.005617440678179264, -0.016697842627763748, -0.010055218823254108, 0.013060549274086952, 0.0036478254478424788, -0.03499665483832359, 0.00030084027093835175, -0.019113341346383095, -0.02192206308245659, 0.025166133418679237, 0.011361273936927319, 0.003946252167224884, 0.013952318578958511, -0.011719385161995888, -0.027244586497545242, -0.04221506789326668, 0.031008273363113403, 0.0030176190193742514, 0.019618911668658257, 0.01345377042889595, 0.006414414849132299, 0.040642183274030685, 0.04117583855986595, 0.017175324261188507, 0.0067619942128658295, 0.003398551605641842, -0.004883662331849337, -0.025826184079051018, -0.009324951097369194, 0.014050623401999474, -0.026528364047408104, 0.013179920613765717, -0.03530561551451683, 0.004469376057386398, 0.0023435261100530624, -0.04662475734949112, -0.033873166888952255, -0.01059589721262455, 0.010069262236356735, -0.002390923211351037, 0.03024991787970066, -0.003298491006717086, 0.030306091532111168, -0.012927135452628136, 0.017905592918395996, -0.01320098526775837, 0.0043043638579547405, 0.011887908913195133, 0.003749641589820385, 0.019927870482206345, -0.01596757583320141, 0.024730782955884933, -0.011136576533317566, -0.028564685955643654, 0.01622035913169384, -0.00028416351415216923, 0.025166133418679237, -0.02876129560172558, -0.012210912071168423, -0.008152310736477375, -0.01006224099546671, 0.009030035696923733, -0.013762729242444038, 0.011073379777371883, -0.010975074954330921, 0.0030000642873346806, 0.015785008668899536, 0.018481379374861717, 0.006604003719985485, 0.01561648491770029, -0.015377744100987911, 0.03016565553843975, -0.022961288690567017, 0.029042167589068413, 0.04513613507151604, -0.0167118851095438, 0.0024488531053066254, -0.00011377511691534892, 0.006323131732642651, -0.002160959178581834, -0.03769302740693092, 0.022961288690567017, 0.00450097443535924, 0.008145288564264774, -0.007169258780777454, -0.0068357232958078384, -0.0034038180019706488, 0.01536369975656271, 0.0038374140858650208, 0.0006345952278934419, -0.004262233152985573, -0.024028602987527847, 0.04769207164645195, -0.009303886443376541, 0.021809713914990425, 0.0038409249391406775, 0.001019916613586247, 0.036316752433776855, 0.019436344504356384, -0.0281293336302042, 0.0023874123580753803, -0.007176280487328768, 0.017119150608778, 0.00535763381049037, -0.026528364047408104, -0.01808815822005272, 0.027497371658682823, 0.02395838499069214, 0.016697842627763748, 0.01988573931157589, -0.01818646490573883, 0.04052983596920967, -0.010069262236356735, 0.025727877393364906, -0.005684147588908672, 0.008622771129012108, 0.014162972569465637, 0.02217484638094902, -0.0005964142037555575, 0.0285365991294384, -0.006561873015016317, -0.02519422210752964, -0.006604003719985485, 0.00019496468303259462, 0.01389614399522543, 0.021809713914990425, -0.002180269220843911, 0.020812617614865303, -0.026542406529188156, -0.034238301217556, -0.03213176131248474, -0.02290511503815651, 0.003231783863157034, -0.015686703845858574, -0.022188890725374222, -0.02884555794298649, 0.025390831753611565, -0.06898216903209686, -0.0055472226813435555, -0.004887173417955637, 0.015181133523583412, -0.009015992283821106, 0.01418403722345829, 0.0010216720402240753, -0.02193610556423664, -0.006747950799763203, -0.021570971235632896, 0.02152884192764759, -0.015279438346624374, -0.008320833556354046, 0.008777251467108727, 0.006407393142580986, -0.038928862661123276, 0.041709497570991516, -0.012056431733071804, -0.018046028912067413, -0.01035715639591217, -0.02526444010436535, 0.01981552131474018, -0.010834638960659504, -0.008131245151162148, -0.0031176796182990074, 0.020995184779167175, 0.006962115410715342, -0.005778942257165909, -0.006983180996030569, 0.011642145924270153, -0.023593250662088394, 0.014731737785041332, 0.0017256075516343117, 0.02305959351360798, 0.007660784758627415, -0.041456710547208786, -0.0047607808373868465, 0.017006801441311836, -0.015223263762891293, -0.012723502703011036, -0.011368295177817345, 0.005027609411627054, 0.016122054308652878, -0.018369030207395554, -0.003431905061006546, 0.00017751990526448935, 0.013832947239279747, -0.014212124980986118, 0.015139002352952957, 0.010097349993884563, -0.011368295177817345, 0.0017422842793166637, 0.036148231476545334, 0.00028877155273221433, 0.009275798685848713, -0.029716260731220245, -0.007653763052076101, 0.009367082267999649, 0.01688040979206562, 0.0069902027025818825, -0.01328524760901928, 0.018312856554985046, 0.02821359597146511, -0.032496895641088486, 0.020068306475877762, 0.01333440002053976, 0.0024822065606713295, 0.011845777742564678, 0.023410683497786522, 0.0035460093058645725, 0.010006066411733627, 0.041456710547208786, -0.021795669570565224, -0.008917687460780144, -0.04592257738113403, -0.015532223507761955, 0.014731737785041332, 0.00823657214641571, 0.031120620667934418, 0.007716958876699209, 0.022385500371456146, 0.008749163709580898, 0.030221831053495407, 0.057017020881175995, 0.028747253119945526, 0.01234432589262724, 0.001120854984037578, -0.03499665483832359, -0.006993713788688183, -0.023256205022335052, -0.01752641424536705, 0.012210912071168423, -0.008032940328121185, -0.050332266837358475, 0.031261056661605835, -0.03968722000718117, 0.007583545055240393, -0.021865887567400932, 0.019366126507520676, 0.02714628167450428, 0.017989853397011757, 0.015391787514090538, 0.013193964026868343, -0.012000257149338722, 0.00041011706343851984, -0.009437300264835358, 0.027581633999943733, -0.025152090936899185, 0.02991287223994732, -0.007021800614893436, -0.013545054011046886, -0.0034740359988063574, 0.0004941592342220247, -0.010708246380090714, 0.032328370958566666, 0.01629057712852955, -0.01177555974572897, -0.010097349993884563, 0.008671924471855164, -0.03106444701552391, -0.030109481886029243, -0.014900261536240578, 0.025615530088543892, 0.031907062977552414, 0.004451821558177471, 0.016501231119036674, -0.011845777742564678, -0.0057087242603302, 0.012463696300983429, 0.006115988362580538, 0.02884555794298649, -0.013741664588451385, 0.010785485617816448, -0.010293959639966488, 0.015462005510926247, 0.010265872813761234, -0.007801220752298832, -0.0041498844511806965, 0.021950149908661842, -0.00464492104947567, 0.011817690916359425, -0.016431013122200966, -0.005627973470836878, -0.02422521263360977, -0.010792507790029049, 0.034519173204898834, -0.008054005913436413, 0.022287195548415184, 0.008594684302806854, 0.012625197879970074, -0.02909834310412407, 0.03822668269276619, -0.02112157642841339, -0.03311481326818466, 0.017400022596120834, -0.011220837943255901, -0.004283298272639513, 0.02477291412651539, 0.009184515103697777, -0.01638888381421566, 0.02731480449438095, 0.06695989519357681, 0.025067828595638275, -0.006186206359416246, -0.011937061324715614, 0.006281001027673483, -0.026542406529188156, 0.017414066940546036, -0.05170854181051254, 0.0228348970413208, -0.026191316545009613, 0.01574287749826908, 0.018467336893081665, 0.014858130365610123, -0.008306790143251419, 0.02093900926411152, -0.021585015580058098, -0.005589353386312723, 0.018031984567642212, 0.013509945012629032, 0.023185987025499344, 0.03496856987476349, 0.014591301791369915, -0.017217455431818962, 0.01703488826751709, 0.025334658101201057, -0.02697775885462761, -0.00929686427116394, 0.0167118851095438, 0.013158855028450489, -0.0158973578363657, -0.0013780284207314253, -0.0195767804980278, 0.010462483391165733, -0.010497592389583588, 0.0008382274536415935, -0.022455718368291855, 0.01695062778890133, -0.010125436820089817, -0.0029895317275077105, 0.004694073926657438, 0.00477131363004446, 0.004374581854790449, -0.023494945839047432, -0.013769751414656639, -0.014647476375102997, -0.03516517952084541, 0.037384066730737686, -0.006372284144163132, -0.02429543063044548, -0.01678210310637951, 0.007709937170147896, -0.0025208264123648405, -0.037047021090984344, -0.0440407358109951, -0.01439469214528799, 0.04493952542543411, -0.03187897428870201, -0.002478695707395673, -0.014092754572629929, -0.00019255094230175018, 0.001971370540559292, -0.00213989382609725, 0.03227219730615616, -0.004718650132417679, 0.0025664682034403086, 0.078250952064991, 0.010939965955913067, 0.013797838240861893, -0.019366126507520676, -0.005989596247673035, -0.020896879956126213, -0.0023803904186934233, 0.0063828169368207455, 0.03398551419377327, 0.013832947239279747, -0.02478695660829544, 0.003516166703775525, -0.026149185374379158, -0.02363538183271885, -0.019464431330561638, 0.02460438944399357, -0.013720599003136158, -0.003503878600895405, 0.01613609865307808, -0.016037793830037117, -0.030924011021852493, -0.01605183631181717, -0.028817471116781235, 0.0024488531053066254, -0.022975333034992218, -0.009156428277492523, -0.01557435467839241, -0.02063005045056343, 0.02346685901284218, 0.0005046919104643166, -0.02935112826526165, -0.030109481886029243, 0.004799400921911001, 0.01564457267522812, -0.013011396862566471, -0.0048661078326404095, 0.01629057712852955, 0.03398551419377327, -0.026682842522859573, 0.006586449220776558, -0.00013308506458997726, 0.016079923138022423, -0.013488879427313805, -0.005090805701911449, -0.012765633873641491, 0.01596757583320141, 0.0026893496979027987, -0.012253042310476303, 0.001058536465279758, 0.014689607545733452, -0.017329804599285126, 0.038198597729206085, -0.027356935665011406, 0.003672401886433363, -0.00019540355424396694, -0.01116466335952282, -0.020250873640179634, -0.003182631218805909, 0.003416106104850769, 0.02650027722120285, -0.0006100189639255404, -0.010497592389583588, -0.0325811542570591, -0.013390574604272842, -0.028508510440587997, 0.0022697970271110535, 0.020840704441070557, -0.01988573931157589, -0.03317098692059517, -0.028747253119945526, 0.014703650958836079, 0.02706202119588852, -0.010034153237938881, -0.0071868132799863815, -0.022806808352470398, 0.029379215091466904, 0.015335612930357456, -0.010975074954330921, 0.036148231476545334, -0.00370048894546926, -0.01536369975656271, 0.0012340814573690295, -0.005680636968463659, -0.01678210310637951, -0.01308161485940218, -0.006863810122013092, -0.01259008888155222, -0.004490441642701626, -0.026387928053736687, 0.03935017064213753, 0.01867799088358879, -0.008145288564264774, 0.02633175253868103, 0.00966199766844511, -0.004764291923493147, 0.020012132823467255, -0.017723025754094124, -0.008714054711163044, -0.008692989125847816, 0.010118414647877216, -0.011522775515913963, 0.00794165674597025, 0.02721649967133999, -0.016332708299160004, 0.00941623467952013, 0.008369986899197102, -0.0017422842793166637, -0.03783346340060234, 0.030193744227290154, -0.0211917944252491, -0.010027131997048855, 0.007095529697835445, 0.012337303720414639, -0.0011691298568621278, 0.04052983596920967, -0.02943538874387741, -0.00811017956584692, -0.018060071393847466, 0.00119195063598454, -0.02395838499069214, 0.007485239766538143, -0.016346752643585205, -0.0015298748621717095, -0.08465483039617538, -0.024407779797911644, 0.001392949721775949, -0.034041691571474075, 0.005933421663939953, -0.012990331277251244, 0.017751112580299377, 0.03244071826338768, -0.0025682237464934587, 0.025657659396529198, -0.02037726528942585, -0.017582589760422707, 0.04067027196288109, 0.01923973485827446, 0.0025927999522536993, 0.01800389774143696, -0.012014301493763924, -0.01678210310637951, 0.0022557536140084267, -0.016093967482447624, -0.016360795125365257, 0.026795191690325737, 0.023438770323991776, -0.014275320805609226, -0.02592448890209198, 0.009107275865972042, 0.021908018738031387, 0.005894801579415798, 0.010827616788446903, -0.009198559448122978, 0.030221831053495407, 0.00654080742970109, 0.013643358834087849, 0.01800389774143696, 0.005445406772196293, 0.02387412264943123, 0.021163707599043846, -0.0025664682034403086, 0.03367655724287033, 0.030362267047166824, -0.0018590217223390937, 0.015054740943014622, 0.0012068720534443855, -0.00629504444077611, 0.0031949193216860294, -0.0034020624589174986, -0.013734642416238785, -0.029632000252604485, 0.013966361992061138, 0.0016395904822275043, -0.006681243423372507, 0.001477211364544928, -0.02355111949145794, -0.02168332040309906, 0.005687658675014973, 0.004009448457509279, 0.028985993936657906, 0.004725671838968992, -0.01023778598755598, -0.024506084620952606, 0.030109481886029243, 0.016248447820544243, -0.01401551440358162, -0.0010172834154218435, -0.011248924769461155, 0.006014172453433275, -0.0045290617272257805, 0.012049410492181778, 0.018565641716122627, 0.032496895641088486, 0.00703233340755105, 0.010827616788446903, -0.000577104277908802, -0.004395647440105677, 0.022624243050813675, -0.01932399533689022, 0.024014558643102646, -0.0028666502330452204, 0.027090108022093773, -0.019183559343218803, -0.022778721526265144, -0.002668284345418215, 0.034687697887420654, 0.002117072930559516, -0.03128914535045624, 0.0038409249391406775, -0.006769015919417143, -0.01630462147295475, -0.01512495893985033, 0.011136576533317566, 0.0026998824905604124, -0.006526764016598463, 0.030446527525782585, 0.013348443433642387, 0.007920591160655022, 0.033873166888952255, 0.0055472226813435555, -0.006031726952642202, 0.011754494160413742, 0.007330759894102812, 0.007074464112520218, -0.028269769623875618, -0.007158725988119841, -0.01596757583320141, 0.0019924358930438757, -0.014745782129466534, 0.007829307578504086, 0.02829785645008087, -0.023256205022335052, -0.014162972569465637, -0.0013560852967202663, 0.01768089458346367, -0.0031914084684103727, -0.011431491933763027, -0.0044237347319722176, -0.005957997869700193, 0.013516966253519058, -0.002311927964910865, -0.006691776216030121, 0.013854012824594975, 0.010645049624145031, 0.01164916716516018, -0.008369986899197102, -0.04766398295760155, 0.008840447291731834, 0.008377008140087128, 0.004328940063714981, 0.00545945018529892, 0.005838627461344004, 0.0026384417433291674, 0.013222050853073597, 0.028101246803998947, -0.025952575728297234, 0.012014301493763924, 0.0069129629991948605, 0.017708981409668922, -0.0015342634869739413, -0.015770964324474335, 0.03244071826338768, -0.012126649729907513, -0.01579905115067959, 0.005427851807326078, -0.004546616226434708, -0.004371071234345436, -0.008952796459197998, 0.009935848414897919, -0.009872651658952236, -0.016416970640420914, 0.002719192299991846, -0.018537554889917374, -0.019422300159931183, 0.01605183631181717, 0.0358673594892025, 0.02331237867474556, 0.00928984209895134, -0.033142898231744766, -0.010322047397494316, -0.006024705246090889, -0.006228337530046701, 0.006769015919417143, -0.03308672457933426, -0.007309694774448872, 0.017737068235874176, -0.003309023566544056, 0.010020109824836254, -0.013973383232951164, -0.007850373163819313, -0.022315282374620438, 0.003918164875358343, -0.005589353386312723, -0.001331508974544704, -0.01817242056131363, -0.015054740943014622, -0.0077941990457475185, 0.0026612624060362577, -0.014591301791369915, -0.007106062490493059, -0.0034845685586333275, 0.023537077009677887, -0.027244586497545242, -0.019829565659165382, -0.00772398104891181, -0.004564170725643635, 0.021065402776002884, 0.005761387757956982, -0.0034529706463217735, 0.0012068720534443855, 0.019043123349547386, 0.0006442502490244806, 0.006776037625968456, 0.02381794899702072, -0.007660784758627415, -0.007246498484164476, 0.019913828000426292, 0.0001794947893358767, 0.023368552327156067, 0.005308481398969889, 0.02395838499069214, -0.015265394933521748, 0.004297342151403427, -0.005501580890268087, -0.015714790672063828, 0.020363222807645798, 0.013762729242444038, -0.018312856554985046, 0.004627366550266743, -0.00021175117581151426, 0.02485717460513115, 0.031092533841729164, -0.0211917944252491, -0.0154900923371315, -0.010659093968570232, 0.0037426198832690716, -0.0008965961751528084, -0.015546266920864582, -0.01629057712852955, -0.00028218861552886665, -0.02380390465259552, 0.01313076727092266, 9.353258064948022e-05, 0.019632956013083458, -0.012231976725161076, 0.00794867891818285, 0.0043043638579547405, 0.019984045997262, 0.013313334435224533, 0.012786699458956718, -0.056792326271533966, -0.03064313903450966, 0.004813444335013628, -0.022483807057142258, 0.007281607482582331, 0.012477739714086056, 0.010448439978063107, -0.031261056661605835, -0.004567681346088648, 0.013053528033196926, 0.00664262380450964, 0.009781369008123875, -0.02650027722120285, -0.021556928753852844, -0.02168332040309906, -0.006217804737389088, -0.007892504334449768, 0.029575824737548828, 0.003054483328014612, -0.01035715639591217, -0.009205580689013004, -0.001148064387962222, 0.0009725193958729506, 0.004588746931403875, -0.00370048894546926, -0.0033125346526503563, 0.0032019412610679865, -0.017006801441311836, -0.011136576533317566, 0.01793367974460125, -0.003449459560215473, 0.012435609474778175, -0.011761516332626343, -0.02202036790549755, 0.003375730710104108, 0.025011654943227768, -0.017793243750929832, 0.032412633299827576, 0.0032581156119704247, -0.006266957148909569, 0.021290099248290062, 0.011319142766296864, -0.002519071102142334, -0.01480195578187704, -0.006133542861789465, -0.026753060519695282, -0.029660087078809738, -0.002980754477903247, -0.012779677286744118, 0.00973923783749342, -0.02697775885462761, -0.004027002956718206, 0.020742399618029594, -0.01890268735587597, -0.0066847545094788074, 0.0028561174403876066, 0.004953880328685045, 0.004234145861119032, 0.002285596216097474, 0.0005016198847442865, -0.02534870058298111, 0.027651851996779442, -0.004676519427448511, -0.01401551440358162, 0.01129105594009161, 0.017414066940546036, -0.007997831329703331, 0.01623440347611904, 0.0010769687360152602, 0.017512371763586998, 0.004595768637955189, 0.03230028226971626, -0.026303665712475777, 0.026149185374379158, -0.01630462147295475, 0.014198081567883492, -0.014050623401999474, -0.023368552327156067, -0.00022908624669071287, -0.003314289962872863, 0.005480515770614147, 0.009205580689013004, 0.0061265211552381516, 0.02845233678817749, 0.013931252993643284, -0.024520128965377808, -0.019295908510684967, -0.0036127164494246244, 0.007225432898849249, 0.010329068638384342, -0.004458843730390072, -0.0030246407259255648, -0.03845138102769852, 0.01182471215724945, 0.0014333251165226102, 0.04412499815225601, -0.004507996141910553, -0.013854012824594975, -0.013734642416238785, -0.02225910872220993, -0.007801220752298832, 0.018537554889917374, 0.0003341938427183777, 0.0024453422520309687, 0.020194699987769127, -0.024913350120186806, -0.01827072538435459, -0.00511889299377799, 0.007330759894102812, -0.014703650958836079, -0.0020047242287546396, -0.035109005868434906, 0.0009119563619606197, -0.008742142468690872, 0.01096805278211832, -0.009823499247431755, 0.0015895601827651262, 0.007562479469925165, -0.005557755474001169, -0.00012244265235494822, 0.02127605676651001, 0.015237308107316494, -0.027848461642861366, 0.0183409433811903, 0.010322047397494316, 0.005090805701911449, -0.03016565553843975, -0.019211646169424057, 0.022778721526265144, -0.00041033647721633315, 0.007408000063151121, -0.012386457063257694, -0.04923686757683754, -0.04378794878721237, 0.0008171620429493487, 0.008180397562682629, 0.0215990599244833, -0.011754494160413742, -0.001532508060336113, 0.03319907560944557, -0.02044748328626156, -0.0068848757073283195, -0.02005426399409771, -0.009507518261671066, 0.00185024447273463, -0.0029649552889168262, -0.006821679417043924, -0.012477739714086056, 0.013278225436806679, -0.03415403887629509, -0.003493345808237791, -0.0009654976311139762, -0.013741664588451385, 0.02738502249121666, -0.0016387127107009292, -0.018481379374861717, -0.0033616870641708374, 4.789087688550353e-05, -0.0008197952411137521, -0.015560310333967209, 0.004739715717732906, -0.013032462447881699, 0.01966104283928871, -0.0011664966586977243, -0.00020286421931814402, -0.002501516602933407, 0.016023749485611916, 0.010820594616234303, 0.0076748281717300415, -0.015153045766055584, -0.0038303923793137074, -0.015167090110480785, -0.020264917984604836, -0.005252306815236807, -0.0037812397349625826, 0.0008742142235860229, 0.012189846485853195, -0.016346752643585205, 0.009381125681102276, 0.015040697529911995, 0.018326900899410248, -0.005424341186881065, -0.02251189388334751, 0.00536114489659667, -0.013116723857820034, -0.005308481398969889, -0.0063090878538787365, -0.020264917984604836, -0.00190641894005239, -0.004567681346088648, 0.025741921737790108, 0.019520606845617294, -0.04752354696393013, -0.012681372463703156, 0.006014172453433275, 0.0055191353894770145, -0.00917047169059515, -0.009921805001795292, 0.010792507790029049, -0.01688040979206562, 0.00047397156595252454, 0.006302066147327423, -0.01759663224220276, -0.011262968182563782, 0.01735789142549038, -0.0018256682669743896, 0.02266637235879898, 0.034519173204898834, -0.02152884192764759, -0.025292526930570602, -0.0013279981212690473, 0.004543105140328407, -0.029294952750205994, -0.02789059281349182, -0.029238779097795486, -0.012056431733071804, 0.0017624719766899943, 0.007913569919764996, -0.015139002352952957, 0.00928984209895134, -0.0023312377743422985, 0.02672497369349003, 0.026682842522859573, 0.008145288564264774, -0.020264917984604836, -0.0030228851828724146, 0.004202547948807478, -0.0013920720666646957, 0.00476780254393816, 0.003554786555469036, -0.007555457763373852, -0.015770964324474335, 0.02804507315158844, 0.03106444701552391, 0.020924966782331467, -0.007836329750716686, 0.009184515103697777, -0.035333700478076935, 0.023185987025499344, 0.028564685955643654, -0.001036593341268599, -0.019183559343218803, -0.014928348362445831, 0.01259711105376482, 0.0001291353109991178, -0.005764898378401995, -0.0059299105778336525, 0.013397595845162868, -0.015237308107316494, -0.023087680339813232, 0.02266637235879898, 0.0013718843692913651, -0.01745619624853134, 0.004736204631626606, 0.006158119533210993, 0.013278225436806679, 0.02599470689892769, 0.025615530088543892, -0.011515753343701363, 0.03356420621275902, -0.0030685269739478827, -0.011600014753639698, 0.006070347037166357, -0.013264182023704052, 0.011010183952748775, -0.01900099217891693, 0.024492042139172554, -0.007316716481000185, -0.004813444335013628, -0.018818426877260208, -0.010343112982809544, 0.013748685829341412, 0.01720341295003891, 0.0069902027025818825, -0.01817242056131363, -0.03741215541958809, 0.018972905352711678, -0.007892504334449768, -0.0144649101421237, -0.006709330715239048, 0.024660564959049225, 0.004272765945643187, -0.0015017876867204905, -0.002559446496888995, -0.007429065182805061, 0.004395647440105677, 0.005350612103939056, 0.0012735790805891156, -0.0035144113935530186, 0.030278004705905914, 0.00039980377187021077, -0.0085525531321764, 0.0014851108426228166, -0.0024383203126490116, -0.010034153237938881, 0.0014780890196561813, -0.0036478254478424788, -0.01655740663409233, -0.011817690916359425, -0.0062774899415671825, -0.0024664076045155525, -0.005498070269823074, -0.022104628384113312, -0.014408735558390617, -0.0024646520614624023, 0.010883791372179985, -0.0028596282936632633, 0.0224276315420866, -0.0005893923807889223, 0.0035530312452465296, 0.009023014456033707, -0.01357314083725214, -0.001855510869063437, -0.016248447820544243, -0.01949252001941204, -0.0008491990156471729, -0.013397595845162868, 0.0033476436510682106, 0.058421384543180466, -0.015405830927193165, -0.007274585776031017, -0.011768538504838943, 0.01808815822005272, -0.0010339601431041956, -0.0022206446155905724, 0.01922569051384926, 0.012435609474778175, -0.01300437469035387, 0.0038479468785226345, -0.016838278621435165, 0.00524177448824048, 0.00185024447273463, -0.012035367079079151, 0.010090327821671963, 0.017947722226381302, 0.030278004705905914, -0.015911400318145752, 0.017091063782572746, 0.01908525452017784, 0.006639112718403339, -0.0051364474929869175, -0.008994926698505878, 0.0012191601563245058, 0.004465865436941385, 0.002664773492142558, 0.026781149208545685, 0.0025225819554179907, 0.007151704281568527, 0.01239347830414772, 0.004536083433777094, -0.038423292338848114, -0.013060549274086952, -0.0035460093058645725, 0.016683798283338547, -0.019548693671822548, 0.0062774899415671825, 0.0011515753576532006, 0.018972905352711678, -0.010427374392747879, -0.010392265394330025, 0.014900261536240578, 0.027511416003108025, 0.009065144695341587, 0.0072956508956849575, -0.0012744568521156907, -0.0008184786420315504, 0.008559575304389, -0.007787177339196205, -0.004953880328685045, 0.007836329750716686, -0.0042797876521945, 0.0074922614730894566, 0.0057473438791930676, 4.942689338349737e-05, 0.014254255220293999, -0.0044869305565953255, -0.022764679044485092, 0.005982574075460434, 0.003070282517001033, -0.011958126910030842, -0.018930774182081223, -0.04395647346973419, 0.015307526104152203, -0.014478953555226326, 0.006870832294225693, -0.029772436246275902, 0.001622035983018577, 0.022315282374620438, -0.0023645914625376463, 0.018888644874095917, -0.003795283380895853, -0.007955700159072876, -0.007151704281568527, 0.017147237434983253, 0.0033669534604996443, -0.0027771221939474344, -0.013439727015793324, 0.005038142204284668, -0.00678657041862607, -0.005340079311281443, -0.001292889122851193, -0.024913350120186806, 0.0112138157710433, -0.003749641589820385, 0.02020874246954918, -0.017807286232709885, 0.0032159846741706133, -0.0075203487649559975, -0.009781369008123875, 0.01752641424536705, -0.024969523772597313, 0.007829307578504086, 0.005003033205866814, -0.007422043476253748, -0.0008759696502238512, -0.0017993365181609988, 0.009528583846986294, 0.013538031838834286, -0.007127127610146999, 0.005761387757956982, 0.004100731573998928, 0.008714054711163044, -0.016262490302324295, -0.011354251764714718, 0.0054734935984015465, 0.012260064482688904, -0.011382339522242546, 0.008952796459197998, -0.014057645574212074, -0.014050623401999474, -0.020236829295754433, -0.019618911668658257, -0.05182088911533356, 0.015181133523583412, 0.012892026454210281, 0.0044237347319722176, -0.019829565659165382, -0.023200029507279396, -0.0027402578853070736, 0.004697584547102451, 0.013348443433642387, 0.0031685875728726387, 0.008910665288567543, 0.01096805278211832, -0.0236494243144989, -0.012863938696682453, -0.02217484638094902, 0.006646134424954653, 0.004023491870611906, 0.00131044362206012, -0.007365868892520666, 0.006695287302136421, 0.0005415563937276602, -0.006962115410715342, 0.01047652680426836, -0.00238390127196908, 0.001866043545305729, -0.011340208351612091, -0.002680572448298335, 0.007260541897267103, -0.0009927070932462811, 0.011066358536481857, -0.01596757583320141, -0.009970957413315773, -0.0154900923371315, -0.009191537275910378, 0.025713834911584854, -0.0001426303351763636, 0.023452814668416977, -0.03168236464262009, -0.0010006065713241696, 0.0071130841970443726, -0.014345538802444935, -0.0007829308160580695, -0.025531267747282982, -0.007042866200208664, 0.004816955421119928, -0.005003033205866814, 0.010413330979645252, -0.0009575980948284268, -0.020110437646508217, 0.0029175581876188517, -0.01532156951725483, 0.002201334573328495, 0.017737068235874176, 0.011880886740982533, 0.014563214965164661, 0.0020047242287546396, -0.010490570217370987, 0.0077941990457475185, -0.0018607772653922439, -0.02550318092107773, 0.011241903528571129, 0.007857395336031914, -0.003316045505926013, -0.005326035898178816, -0.025952575728297234, 0.020321091637015343, 0.017947722226381302, -0.008896621875464916, 0.008201463147997856, -0.011557884514331818, 0.014886218123137951, -0.019352082163095474, -0.0037847505882382393, -0.007836329750716686, -0.005196132697165012, 0.01582713983952999, -0.027567589655518532, 0.012484761886298656, -0.003693467238917947, -0.0044237347319722176, -0.019787434488534927, 0.017217455431818962, -0.0005520890699699521, 0.01210558507591486, 0.004536083433777094, -0.005038142204284668, 8.491990593029186e-05, 0.010434395633637905, 0.006470589432865381, -0.010125436820089817, -0.007534392178058624, -0.0025208264123648405, -0.005424341186881065, -0.0025664682034403086, -0.01647314429283142, 0.010757398791611195, -0.05432065203785896, -0.01900099217891693, 0.00986563041806221, 0.002959689125418663, -0.007267564069479704, 0.016585493460297585, 0.022399544715881348, 0.0030053306836634874, 0.042355503886938095, 0.027904637157917023, 0.015560310333967209, 0.017905592918395996, 0.008377008140087128, 0.00017510616453364491, -0.002088985638692975, 0.006691776216030121, -0.002201334573328495, 0.015939487144351006, 0.027174368500709534, -0.020644094794988632, 0.016487188637256622, -0.0025717345997691154, -0.005529668182134628, -0.00941623467952013, 0.02657049521803856, 0.024801000952720642, 0.016178229823708534, -0.0008360331412404776, -0.010146502405405045, -0.010315025225281715, -0.020559832453727722, 0.00973923783749342, -0.026949672028422356, 0.006516231223940849, 0.003626760095357895, -0.0020661649759858847, 0.005666593089699745, 0.004121797159314156, -0.02706202119588852, -2.589289033494424e-05, 0.023424727842211723, -0.004953880328685045, 0.005434873979538679, 0.003928697668015957, 0.013074592687189579, 0.004497463349252939, 0.007611631881445646, 0.014134884811937809, 0.012140694074332714, -0.000827255891636014, -0.005371677689254284, 0.016908496618270874, 0.004897706210613251, -0.0057052131742239, 0.009402191266417503, 0.016992757096886635, -0.024435866624116898, 0.004093709867447615, -0.003844436025246978, 0.03128914535045624, -0.021290099248290062, -0.00774504616856575, 0.025713834911584854, 0.021402448415756226, -0.0034705251455307007, 0.000975152594037354, 0.013039483688771725, -0.009633910842239857, 0.010834638960659504, 0.007766111753880978, -0.011705341748893261, 0.010329068638384342, -0.00038137155934236944, -0.015602441504597664, -0.0061546084471046925, -0.04704606533050537, -0.030671225860714912, -0.0022557536140084267, -0.02258211188018322, -0.003082570619881153, 0.007997831329703331, -0.004897706210613251, 0.02463247813284397, 0.00688838679343462, 0.0010339601431041956, -0.011789603158831596, -0.00044566491851583123, 0.006031726952642202, -0.016108011826872826, -0.0001250758214155212, -0.035417962819337845, 0.014050623401999474, -0.0016448568785563111, -0.01971721649169922, 0.00893173087388277, -0.002480451250448823, 0.013397595845162868, -0.009233668446540833, -0.006561873015016317, 0.0391254760324955, 0.019281864166259766, 0.011206794530153275, -0.014787912368774414, 0.0070358444936573505, -0.019015036523342133, -0.0015553288394585252, -0.012112606316804886, 0.013271203264594078, 0.005631484091281891, 0.006035238038748503, -0.008454248309135437, 0.02249784953892231, -0.0029825097881257534, 0.007892504334449768, 0.004778335336595774, 0.006059814244508743, 0.02387412264943123, 0.008791294880211353, 0.018298812210559845, 0.018874600529670715, -0.004451821558177471, 0.0049854787066578865, -0.018326900899410248, 0.0015474293613806367, -0.014984522946178913, 0.009008970111608505, -0.008700011298060417, -0.007060420699417591, -0.001215649303048849, -0.005045163910835981, -0.013432704843580723, -0.004630877636373043, 0.013116723857820034, -0.02943538874387741, -0.00928984209895134, 0.009718172252178192, 0.013748685829341412, -0.004665986634790897, 0.014661519788205624, 0.030671225860714912, -0.0032142293639481068, -0.007836329750716686, 0.013783794827759266, -0.00036820568493567407, -0.029660087078809738, 0.006568894721567631, -0.007955700159072876, -0.00725352019071579, -0.00011344596714479849, 0.005248796194791794, -0.019745303317904472, 0.02829785645008087, -0.01579905115067959, -0.018888644874095917, 0.01190195232629776, 0.006962115410715342, -0.017877504229545593, 0.01867799088358879, -0.008531487546861172, 0.007513327058404684, 0.0002584900357760489, -0.03524944186210632, 0.010581853799521923, -0.018130289390683174, -0.0097883902490139, 0.005424341186881065, 0.0020240340381860733, 0.00863681547343731, 0.0019520606147125363, 0.031176796182990074, 0.015195176936686039, 0.002929846290498972, -0.003147522220388055, 0.009598801843822002, 0.010623984970152378, -0.0003671085287351161, 0.0033511545043438673, 0.01450704038143158, -0.0057473438791930676, -0.01271648146212101, 0.012976287864148617, 0.009100253693759441, 0.006403882522135973, -0.019099298864603043, 0.00333360000513494, -0.01214771531522274, -0.020040219649672508, 0.026317710056900978, 0.006361751351505518, -0.009282820858061314, 0.011691298335790634, -0.009212602861225605, -0.017877504229545593, 0.009844564832746983, 0.0012551469262689352, -0.020194699987769127, -0.009732215665280819, 0.02926686592400074, 0.02176758274435997, -0.02329833433032036, 0.03317098692059517, 0.01622035913169384, 0.006635601632297039, 0.006607514806091785, 0.018467336893081665, 0.0007750312797725201, 0.028648948296904564, -0.013383552432060242, 0.012618175707757473, 0.01654336228966713, 0.011192750185728073, 0.015462005510926247, 0.02102327160537243, -0.018144333735108376, 0.010336090810596943, 0.01718936860561371, 0.014366604387760162, -0.00010159667726838961, 0.01234432589262724, 0.015770964324474335, 0.002289107069373131, -0.01512495893985033, 0.027272675186395645, 0.008054005913436413, -0.001543040736578405, -0.008714054711163044, 0.01116466335952282, -0.0350809171795845, -0.005877247080206871, 0.018804382532835007, -0.018158376216888428, -0.010118414647877216, 0.013102680444717407, -0.010188632644712925, 0.005550733767449856, 0.024744825437664986, 0.0031615658663213253, 0.020489614456892014, -0.003651336533948779, -0.021079445257782936, 0.002678816905245185, 0.020770486444234848, 0.015700746327638626, 0.006424947641789913, -0.026149185374379158, 0.0034459487069398165, -0.008145288564264774, -0.005403275601565838, 0.02185184508562088, -0.014647476375102997, 0.0010787241626530886, 0.0021521819289773703, 0.020335135981440544, 0.028424249961972237, -0.003661869093775749, -0.006625069305300713, 0.0005441895918920636, 0.01015352364629507, 0.003136989427730441, -0.0022557536140084267, -0.009402191266417503, 0.0018537554424256086, 0.018046028912067413, -0.016585493460297585, -0.021739495918154716, 0.021978236734867096, -0.005536689888685942, 0.00619673915207386, -0.0017264853231608868, 0.0019415279384702444, -0.02560148574411869, -0.006330153439193964, -0.00723245507106185, 0.0042797876521945, 0.006670710630714893, -0.010420352220535278, -0.021865887567400932, 0.014331495389342308, 0.007281607482582331, 0.0025892890989780426, 0.01226708572357893, 0.0026595070958137512, 0.008791294880211353, 0.006951582618057728, -0.005922888871282339, -0.003732087090611458, -0.0005950976046733558, 0.05406786501407623, -0.00872809812426567, -0.032244108617305756, 0.0032739145681262016, -0.0268934965133667, -0.010736333206295967, 0.02265232987701893, 0.011810668744146824, 0.008531487546861172, -0.0075975884683430195, 0.0004945981199853122, 0.00017499644309282303, 0.01688040979206562, 0.013341421261429787, -0.023200029507279396, -0.0051680454052984715, 0.014858130365610123, -0.012084519490599632, 0.01536369975656271, 0.0053646559827029705, 0.027623765170574188, 0.02275063470005989, 0.0022434652782976627, 0.0183409433811903, -0.017835374921560287, 0.0025050274562090635, -0.0062774899415671825, -0.003043950768187642, 0.00036645022919401526, 0.003377486253157258, 0.008791294880211353, -0.012927135452628136, 0.0043043638579547405, -0.015785008668899536, 0.024660564959049225, 0.017708981409668922, -0.006094923242926598, -0.007653763052076101, 0.008650858886539936, 0.006867321208119392, -0.011705341748893261, 0.023340465500950813, -0.036653801798820496, -0.001978392479941249, 0.0010243052383884788, 0.04816955327987671, -0.0018730653682723641, -0.01940825767815113, -0.00701126828789711, -0.019267821684479713, -0.002914047334343195, -0.016206316649913788, 0.00011805402755271643, -0.013158855028450489, 0.015195176936686039, 0.0350528284907341, 0.004599279724061489, 0.014675564132630825, -0.003449459560215473, -0.01096805278211832, 0.0014359583146870136, 0.022104628384113312, 0.007169258780777454, -0.006695287302136421, -0.010694202966988087, 0.007116595283150673, 0.004507996141910553, -0.011031249538064003, -0.008770229294896126, 0.008650858886539936, 0.008896621875464916, -0.012941178865730762, -0.0013183431001380086, -0.0025927999522536993, 0.009324951097369194, -0.017428109422326088, 0.0031756095122545958, -0.008517444133758545, -0.005838627461344004, 0.004458843730390072, -0.013193964026868343, 0.02380390465259552, -0.002959689125418663, 0.0035073894541710615, -0.009514540433883667, -0.021809713914990425, -0.005255817901343107, -0.004199036862701178, 0.02112157642841339, 0.007260541897267103, -0.0004937203484587371, -0.0050170766189694405, -0.028592772781848907, 0.009500496089458466, 0.0015807829331606627, 0.0026840833015739918, -0.01744215376675129, 0.0031387449707835913, -0.00368995638564229, -0.006558361928910017, 0.000607385765761137, 0.0019116852199658751, -0.037636853754520416, -0.000309398106765002, 0.006596982013434172, 0.002071431139484048, -0.011852799914777279, 0.007169258780777454, 0.0012340814573690295, 0.005512113682925701, -0.024098820984363556, -0.007955700159072876, 0.004311385564506054, -0.010490570217370987, 0.010701224207878113, 0.014858130365610123, -0.007934634573757648, -0.0008088236791081727, 0.005150490906089544, 0.023101724684238434, -0.016824234277009964, 0.012906069867312908, 0.02030704729259014, -0.021051358431577682, -0.012484761886298656, 0.009711150079965591, -0.01638888381421566, 0.0029052700847387314, -0.011382339522242546, 0.0049082390032708645, 0.015279438346624374, 0.010687180794775486, -0.009402191266417503, 0.0030053306836634874, 0.00321071851067245, 0.010083305649459362, -0.027834419161081314, 0.01581309549510479, -0.01512495893985033, -0.01842520572245121, 0.005448917392641306, 0.0033441325649619102, -0.02020874246954918, 0.01055376697331667, -0.00487313000485301, -0.005578820593655109, 0.0023259716108441353, 0.00656538363546133, -0.018692033365368843, -0.010020109824836254, -0.016669755801558495, 0.005132936406880617, 0.024801000952720642, -0.013292268849909306, -0.005347101483494043, -0.005634995177388191, 0.013643358834087849, -0.012386457063257694, -0.0058983126655220985, -0.0027823885902762413, -0.015209220349788666, 0.02134627476334572, 0.01353101059794426, -0.0228348970413208, -0.021458623930811882, 0.0048380205407738686, 0.012976287864148617, 0.01259711105376482, -0.014422778971493244, 0.024267343804240227, 0.009156428277492523, 0.020026175305247307, 0.00725352019071579, 0.008306790143251419, 0.02454821579158306, -0.018958862870931625, 0.0053190141916275024, -0.012681372463703156, -0.009100253693759441, -0.01718936860561371, -0.015040697529911995, -0.014689607545733452, -0.04044557362794876, 0.0016264246078208089, 0.015911400318145752, -0.016262490302324295, -0.009914782829582691, -1.53739038069034e-05, 0.0053190141916275024, -0.007372891064733267, -0.006927006412297487, -0.015335612930357456, 0.021795669570565224, -0.006161630153656006, -0.01704893261194229, -0.02178162708878517, 0.011277012526988983, 0.012007279321551323, 0.006983180996030569, -0.012421566061675549, 0.019127385690808296, -0.003942741081118584, 0.01579905115067959, -0.02909834310412407, -0.010574831627309322, 0.016416970640420914, 0.011866843327879906, 0.013474836014211178, -0.0061546084471046925, 0.0059263999573886395, -0.0026559962425380945, -0.0142612773925066, 0.0072184111922979355, 0.007808242458850145, 0.00464843213558197, -0.0026928605511784554, 0.0037426198832690716, -0.00953560508787632, -0.016936583444476128, 0.021233925595879555, -0.01647314429283142, 6.100189420976676e-05, 0.016810191795229912, 0.001688743126578629, 0.00818741973489523, 0.009437300264835358, 0.0063547296449542046, -0.010406308807432652, 0.01202132273465395, 0.028059115633368492, 0.01947847567498684, -0.008973861113190651, 0.015770964324474335, 0.01084868237376213, 0.017554502934217453, -0.017400022596120834, 0.015391787514090538, -0.008756185881793499, -0.002991287037730217, 0.017428109422326088, -0.02093900926411152, 0.011515753343701363, 0.0007100796210579574, -0.014535128138959408, 0.008861512877047062, 0.0014464909909293056, 0.004929304122924805, 0.003493345808237791, -0.02876129560172558, 0.006969137117266655, 0.0019292397191748023, 0.02225910872220993, 0.020812617614865303, -0.005550733767449856, -0.018818426877260208, 0.021149663254618645, 0.004385114647448063, -0.0035354767460376024, 0.0012823563301935792, 0.01499856635928154, 0.016093967482447624, 0.01251987088471651, 0.014436822384595871, 0.019295908510684967, 0.011354251764714718, 0.0031141687650233507, 0.0019590824376791716, -0.006119499448686838, 0.0077941990457475185, 0.001403482398018241, -0.0011910729808732867, -0.010954009369015694, 0.016739973798394203, 0.0007122739334590733, -0.00794165674597025, 0.013882100582122803, -0.0008513933280482888, 0.01696467027068138, -0.017400022596120834, -0.003988382872194052, 0.013411639258265495, 0.0047151390463113785, 0.01900099217891693, -0.006056303158402443, 0.02796081081032753, -0.02053174562752247, 0.011754494160413742, -0.01971721649169922, -0.030025219544768333, 0.03148575499653816, 0.00010565615957602859, 0.02716032601892948, 0.0019432833651080728, 0.005196132697165012, 0.0062318481504917145, -0.016276534646749496, -0.0035705857444554567, -0.009395169094204903, -0.008714054711163044, 0.01579905115067959, -0.000768887170124799, -0.0053681666031479836, 0.0021925573237240314, 0.024014558643102646, 0.013243116438388824, 0.003963806666433811, -0.0031387449707835913, -0.012035367079079151, 0.026289621368050575, -0.011852799914777279, -0.003026396268978715, 0.0049398369155824184, 0.023860078305006027, 0.014345538802444935, 0.001927484292536974, -0.01916951686143875, -0.017006801441311836, -0.002652485156431794, 0.0017563279252499342, 0.01182471215724945, -0.02843829244375229, -0.021472666412591934, 0.011501709930598736, -0.012772656045854092, 0.013657402247190475, 0.00904407911002636, -0.0014254255220293999, -0.04665284603834152, 0.0027736113406717777, 0.0240426454693079, -0.005814051255583763, 0.0029105364810675383, 0.01744215376675129, 0.00017795876192394644, -0.008868534117937088, -0.026022793725132942, 0.017259586602449417, 0.005649038590490818, -0.03185088932514191, -0.004434267058968544, 0.0009830520721152425, 0.005782452877610922, -0.0069902027025818825, -0.011487666517496109, -0.020981140434741974, 0.0034898349549621344, -0.007513327058404684, -0.008159332908689976, -0.0019766369368880987, -0.00831381231546402, -0.002580511849373579, -0.0018572662957012653, -0.007358847185969353, -0.017315760254859924, 0.01561648491770029, -0.001971370540559292, -0.0006214293534867465, -0.019548693671822548, 0.003974339459091425, -0.016655711457133293, -0.0052909268997609615, -0.009261755272746086, -0.013657402247190475, -6.116646545706317e-05, 0.008868534117937088, 0.01047652680426836, 0.0007298284326680005, 0.010322047397494316, -0.0039216759614646435, -0.001844978192821145, -0.007983787916600704, -0.013229073025286198, -0.014647476375102997, -0.004065622575581074, -0.012091540731489658, 0.03244071826338768, 0.013516966253519058, 0.014844086952507496, 0.0019187070429325104, -0.008405095897614956, -0.011017205193638802, -0.02707606367766857, 0.003949762787669897, -0.005469982977956533, -0.018046028912067413, 0.028227638453245163, 0.01128403376787901, -0.017470240592956543, -0.006245892029255629, 0.008089114911854267, -0.0012551469262689352, -0.014169993810355663, 0.01247071847319603, -0.007857395336031914, -0.014535128138959408, 0.02640197053551674, -0.001855510869063437, 0.028508510440587997, -0.00030127912759780884, 0.01655740663409233, 0.00605279253795743, -0.017301717773079872, -0.005996617954224348, 0.007000735495239496, 0.009690085425972939, -0.01728767342865467, -0.01222495548427105, -0.0154900923371315, -0.003542498452588916, -0.050753574818372726, 0.00595097616314888, 0.007576522883027792, 0.0016896207816898823, 0.0017282407497987151, 0.00880533829331398, 0.019745303317904472, 0.0059755523689091206, 0.014240211807191372, -0.006491655018180609, -0.017484284937381744, -0.018706077709794044, -0.008138267323374748, -0.0034477042499929667, -0.0017133194487541914, -0.010118414647877216, -0.009472409263253212, 0.02200632356107235, -0.004960902500897646, -0.009956914000213146, -0.00439915806055069, -0.01165618933737278, 0.0023171943612396717, -0.012358369305729866, 0.009774346835911274, 0.0013288757763803005, 0.009149406105279922, -0.010883791372179985, -0.004290320444852114, -0.011340208351612091, 0.006772527005523443, -0.03064313903450966, 0.006361751351505518, -0.0012068720534443855, 0.006372284144163132, 0.005778942257165909, -0.019352082163095474, -0.012934156693518162, 0.010588875971734524, 0.010427374392747879, 0.013257159851491451, -0.02143053524196148, -0.004163927864283323, 0.0007658151444047689, -0.01295522227883339, 0.036709975451231, 0.004483419936150312, -0.0035951619502156973, -1.6169342416105792e-05, 0.01079952996224165, -0.014858130365610123, -0.002847340190783143, -0.0029649552889168262, 0.002813986735418439, 0.012477739714086056, 0.011312121525406837, 0.019604867324233055, -0.026387928053736687, 0.0050627184100449085, -0.0029070256277918816, 0.017119150608778, 0.00974626000970602, 0.001722096698358655, 0.00794165674597025, -0.009282820858061314, -0.003616227535530925, -0.014422778971493244, -0.007555457763373852, 0.022371457889676094, 0.04151288792490959, -0.021135620772838593, 0.00594746507704258, -0.016009705141186714, 0.02134627476334572, -0.001794070121832192, 0.010904856957495213, 0.007084996905177832, -0.005638506263494492, -0.0003524066414684057, -0.010293959639966488, -0.01128403376787901, 0.006207271944731474, 0.02650027722120285, -0.009669019840657711, -0.007281607482582331, 0.0032142293639481068, 0.015335612930357456, -0.012583066709339619, -0.00605279253795743, -0.008180397562682629, 0.015756921842694283, 0.01353101059794426, 0.0017150748753920197, 0.014970479533076286, 0.003505634143948555, 0.004051579162478447, -0.0014008493162691593, 0.004841531626880169, -0.006140565034002066, -0.014703650958836079, -0.01536369975656271, -0.0049889893271028996, -0.02804507315158844, 0.00942325685173273, 0.010855703614652157, -0.004852064419537783, -0.03741215541958809, -0.013025440275669098, -0.011108488775789738, 0.03491239249706268, 0.022216977551579475, 0.015181133523583412, -0.013868056237697601, -0.002970221685245633, 0.0224276315420866, 0.005575309973210096, -0.02169736474752426, -0.0005477004451677203, -0.014717694371938705, 0.007211389485746622, -0.015181133523583412, -0.011838756501674652, -0.0021662255749106407, -0.029575824737548828, 0.008180397562682629, 0.00403402466326952, 0.022315282374620438, 0.005150490906089544, -0.010055218823254108, 0.012737547047436237, -0.010609940625727177, 0.025390831753611565, 0.0010120170190930367, 0.0033651981502771378, 0.005536689888685942, -0.007197346072643995, -0.024098820984363556, 0.01438064780086279, 0.010083305649459362, -0.0029947981238365173, 0.021093489602208138, -0.010996140539646149, 0.010525679215788841, 0.013313334435224533, -0.021500753238797188, -0.01645910181105137, -0.004392136353999376, 0.009809455834329128, 0.008756185881793499, -0.0019187070429325104, -0.00356531934812665, 0.007646740879863501, 0.0020977628882974386, 0.030446527525782585, -0.0014500018442049623, 0.01696467027068138, -0.008770229294896126, -0.010764420963823795, 0.006217804737389088, 0.014605346135795116, 0.01419105939567089, 0.003493345808237791, -0.0022048454266041517, 0.004234145861119032, 0.0017405288526788354, 0.010778464376926422, -0.01202132273465395, 0.01914142817258835, -0.026219403371214867, -0.013018419034779072, 0.011592993512749672, 0.01745619624853134, -0.0032072074245661497, 0.011628102511167526, 0.0014245478669181466, -0.001995946979150176, -0.0014280587201938033, 0.014373626559972763, -0.00558584276586771, -0.03185088932514191, -0.018706077709794044, -4.797316432814114e-05, 0.0009303886326961219, -0.015911400318145752, -0.003198430174961686, -0.015377744100987911, 0.006691776216030121, 0.021290099248290062, -0.0056701041758060455, 0.009935848414897919, 0.008910665288567543, -0.004553637932986021, 0.0183409433811903, -0.008671924471855164, 0.005276883486658335, 0.00027801943360827863, -0.00018179880862589926, 0.011944083496928215, 0.030699312686920166, 0.003988382872194052, 0.003651336533948779, 0.00511187082156539, -0.0055472226813435555, -0.010862725786864758, 0.0030615052673965693, -0.004725671838968992, -0.0075203487649559975, 0.013741664588451385, 0.0006166019011288881, -0.01605183631181717, -0.006779548712074757, -0.020910922437906265, 0.01582713983952999, 0.023368552327156067, -0.0018291791202500463, 0.005761387757956982, 0.01932399533689022, -0.011754494160413742, 0.007386934477835894, -0.0003945374337490648, 0.013832947239279747, -0.00986563041806221, 0.023691555485129356, 0.009507518261671066, 0.007120105903595686, 0.009458365850150585, -0.018720120191574097, -0.008032940328121185, 0.013706555590033531, 0.005877247080206871, -4.427025851327926e-05, 0.019857652485370636, -0.009086210280656815, -0.002541891997680068, 0.006431969348341227, 0.024183081462979317, 0.0051399581134319305, 0.021416492760181427, -0.0035144113935530186, -0.0001651220372878015, -0.003914653789252043, -0.01055376697331667, -0.01006224099546671, 0.000157332222443074, -0.010946987196803093, -0.0031773648224771023, -0.011852799914777279, 0.0026840833015739918, -0.01177555974572897, -0.007372891064733267, -0.029491564258933067, 0.007920591160655022, -0.01622035913169384, 0.028016984462738037, 0.00045597818098030984, 0.0018432227661833167, -0.006446013227105141, -0.00452203955501318, 0.02707606367766857, 0.019871696829795837, -0.012358369305729866, 0.00949347484856844, 0.009851587004959583, 0.004504485055804253, 0.005684147588908672, -0.01768089458346367, 0.015377744100987911, -0.019366126507520676, -0.000813651189673692, -0.003372219856828451, 0.002183780074119568, 0.021458623930811882, 0.01645910181105137, -0.010631006211042404, -0.011642145924270153, -0.017793243750929832, 0.003879545023664832, -0.009556670673191547, 0.013236094266176224, 0.0018133800476789474, -0.021542884409427643, 0.008622771129012108, 0.004097220953553915, 0.0050170766189694405, 0.01932399533689022, 0.00393220828846097, -0.005125914700329304, -0.0021082956809550524, -0.010560788214206696, 0.006702309008687735, -0.015012609772384167, 0.01631866581737995, 0.013629315420985222, -0.0074150217697024345, 0.011712363921105862, 0.003193164011463523, 0.025208264589309692, 0.016936583444476128, -0.016009705141186714, -0.010336090810596943, -0.009163450449705124, -0.013594206422567368, -0.0011621080338954926, 0.016641667112708092, 0.021627146750688553, -0.01202834490686655, -0.022160803899168968, -0.021627146750688553, -0.0029684663750231266, 0.032075587660074234, -0.022483807057142258, -0.010125436820089817, 0.025545312091708183, 0.010827616788446903, 0.003693467238917947, 0.03429447486996651, 0.004883662331849337, -0.000760548806283623, -0.0077941990457475185, 0.010701224207878113, 0.03252498060464859, -0.0212058387696743, 0.007731002755463123, 0.0289298202842474, -0.0005582331796176732, 0.015237308107316494, -0.012288151308894157, 0.000654344039503485, -0.00357760745100677, 0.004265743773430586, -0.01579905115067959, 0.011515753343701363, -0.014970479533076286, 0.007309694774448872, -0.0005494559300132096, 0.018158376216888428, -0.02373368665575981, -0.003265137318521738, -0.009521561674773693, -0.013109701685607433, -0.006491655018180609, -0.005557755474001169, -0.016122054308652878, -0.011361273936927319, 0.014478953555226326, 0.0064214370213449, 0.020756443962454796, -0.0037847505882382393, 0.03128914535045624, -0.003777728881686926, -0.01776515692472458, -0.01915547251701355, 0.012779677286744118, 0.013025440275669098, -0.008896621875464916, 0.00986563041806221, -0.01035715639591217, 0.013790816999971867, -0.0012533914996311069, 0.0008355943136848509, -1.4441320672631264e-05, -0.006407393142580986, 0.0009795412188395858, -0.004708117339760065, -0.009872651658952236, 0.012196867726743221, -0.0007179791573435068, 0.008601706475019455, 0.006677732802927494, -0.009107275865972042, 0.011986213736236095, 0.026781149208545685, -0.010757398791611195, 0.0052452851086854935, -0.0011796625331044197, -0.014408735558390617, -0.008573618717491627, -0.026205360889434814, -0.008215506561100483, 0.02144457958638668, 0.03847946971654892, 0.022202935069799423, 0.012913092039525509, -0.01777919940650463, -0.012154737487435341, -0.028087202459573746, 0.0024383203126490116, 0.002389167668297887, -0.012379434891045094, 0.012196867726743221, -0.007899525575339794, -0.03496856987476349, 0.029154516756534576, 0.0044553326442837715, -0.0010102615924552083, 0.011951104737818241, 0.018734164535999298, 0.0059263999573886395, -0.0048380205407738686, 0.01239347830414772, 0.0026612624060362577, -0.0005735933664254844, -0.01727363094687462, -0.004090198781341314, -0.007759090047329664, 0.00787143874913454, 0.013839969411492348, -0.0021363829728215933, 0.006379305850714445, -0.005487537477165461, 0.009837542660534382, 0.009275798685848713, -0.01932399533689022, -0.008391051553189754, 0.015546266920864582, 0.014577258378267288, 0.01989978365600109, 0.01536369975656271, -0.01512495893985033, -0.00881236046552658, -0.020082350820302963, -0.016571449115872383, 0.013516966253519058, -0.012793720699846745, -0.02020874246954918, -0.0031896529253572226, -0.014661519788205624, 0.004925793502479792, -0.012323260307312012, 0.01030800398439169, 0.017975810915231705, -0.00013659597607329488, -0.012119628489017487, -0.010455461218953133, -0.005477004684507847, -0.009430278092622757, 0.002787654986605048, -0.015855226665735245, -0.01800389774143696, -0.019520606845617294, 2.773748519757646e-06, 0.006481122225522995, 0.010946987196803093, -0.014942391775548458, -0.009086210280656815, -0.002160959178581834, 0.00511538190767169, 0.002234688028693199, 0.010462483391165733, -0.010792507790029049, 0.016655711457133293, -0.008952796459197998, 0.005796496756374836, -0.015953531488776207, -0.006379305850714445, -0.005262839607894421, -0.029463475570082664, 0.004929304122924805, -0.013355465605854988, -0.03196323662996292, -0.0038479468785226345, -0.009142384864389896, 0.02373368665575981, 0.001019916613586247, -0.0010462483623996377, 0.006386328022927046, 0.012695415876805782, -0.005691169761121273, 0.0060808793641626835, 0.00026134264771826565, 0.0007127127610146999, -0.0027174369897693396, 0.017737068235874176, 0.023607295006513596, 0.002160959178581834, -0.0034248833544552326, -0.00723245507106185, -0.009690085425972939, 0.01023076381534338, -0.005020587705075741, -0.002352303359657526, 0.014071688987314701, -0.013074592687189579, 0.034238301217556, 0.0005310236592777073, -0.02161310240626335, -0.011024227365851402, -0.03359229490160942, -0.017484284937381744, 0.012175803072750568, -0.0033634426072239876, 0.008075070567429066, -0.022680416703224182, 0.028508510440587997, -0.019941914826631546, 0.004539594054222107, -0.004206058569252491, 0.0075975884683430195, -0.004041046369820833, 0.005224219989031553, 0.004209569655358791, 0.017428109422326088, 0.028550641611218452, -0.00474673742428422, -0.008903643116354942, -0.01744215376675129, -0.009633910842239857, 0.012828829698264599, -0.009767324663698673, 0.0008693867130205035, -0.0009014236857183278, -0.008538509719073772, 0.0035073894541710615, 0.020405353978276253, 0.006853277795016766, -0.0073377820663154125, 0.01818646490573883, -0.012077497318387032, 0.012702438049018383, -0.019548693671822548, -0.03735598176717758, -0.003672401886433363, 0.00249800574965775, 0.0015913156094029546, -0.007060420699417591, 0.007070953492075205, 0.00202754489146173, 0.001978392479941249, -0.004332451149821281, 0.009795412421226501, -0.00238390127196908, -0.01720341295003891, -0.017217455431818962, 0.006333664525300264, -0.0033651981502771378, 0.02673901803791523, -0.025573398917913437, -0.00024883507285267115, -0.028957907110452652, -0.006530274637043476, 0.000997973489575088, 0.025166133418679237, -0.003182631218805909, -0.007092018611729145, 0.015096872113645077, 0.0001717049744911492, -0.007281607482582331, 0.004676519427448511, -0.012927135452628136, -0.026682842522859573, -0.01108742319047451, -0.015040697529911995, -0.01450704038143158, 0.024084776639938354, -5.8368717873236164e-05, 0.02641601487994194, 0.007766111753880978, 0.00929686427116394, -0.028339987620711327, -0.004557148553431034, 0.0032072074245661497, 0.013706555590033531, 0.012681372463703156, 0.00036074500530958176, -0.026275578886270523, 0.01876225136220455, 0.004950369708240032, 0.01116466335952282, -0.004079666454344988, 0.014422778971493244, 0.005880758166313171, 0.011206794530153275, -0.0037601743824779987, 0.011803647503256798, -0.021950149908661842, -0.011698320508003235, 0.00937410444021225, -0.01842520572245121, -0.028325945138931274, 0.0065056984312832355, 0.02249784953892231, 0.012337303720414639, -8.151871588779613e-05, 0.029491564258933067], "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7": [-0.02772701345384121, -0.018682660534977913, -0.0125271026045084, 0.01853417232632637, -0.05148531123995781, -0.011818403378129005, -0.02662009187042713, 0.008126417174935341, -0.021962925791740417, 0.03309962898492813, -0.0026846202090382576, 0.023785294964909554, 0.023785294964909554, -0.0055818501859903336, 0.00427244370803237, -0.007032996043562889, -0.02203042060136795, 0.0183451846241951, -0.002067039255052805, -0.009395326487720013, 0.05907176807522774, -0.04206298664212227, -0.028617948293685913, 0.006830510683357716, 0.03223568946123123, -0.018723158165812492, -0.02815898135304451, -0.006327671464532614, -0.0366903692483902, 0.005028389394283295, -0.00591932563111186, -0.014632951468229294, 0.027241047471761703, 0.0027403035201132298, -0.007309725973755121, -0.05072936415672302, 0.005976696498692036, 0.005764086730778217, -0.009638309478759766, 0.012311117723584175, -0.01939810998737812, 0.0023370201233774424, -0.006148809101432562, -0.005639221053570509, -0.023150840774178505, 0.013262799941003323, -0.023650305345654488, -0.011008461005985737, 0.0035164980217814445, 0.015348399989306927, 0.008551636710762978, 0.02180093713104725, -0.027389537543058395, 0.007120739668607712, 0.06074564531445503, -0.013141307979822159, -0.0017481247195973992, 0.0898495614528656, 0.005716840270906687, -0.027700014412403107, -0.004080082755535841, -0.03633939474821091, 0.02579665184020996, 0.0005994414095766842, 0.007620203774422407, 0.01767023280262947, 0.010367256589233875, 0.061555586755275726, -0.0061926813796162605, -0.0021379091776907444, -0.021611951291561127, 0.0031469620298594236, -0.04335889220237732, 0.03083178959786892, 0.022084416821599007, 0.002451761858537793, 0.015577883459627628, 0.029859859496355057, 0.03620440512895584, -0.02026204764842987, 0.005946323741227388, -0.0008993730298243463, 0.03436853736639023, 0.021611951291561127, 0.030048847198486328, -0.00023391292779706419, -0.029994850978255272, -0.04208998382091522, -0.01223012339323759, -0.04284593090415001, 0.030561810359358788, 0.024514243006706238, 0.0073772212490439415, -0.016981782391667366, 0.01176440715789795, 0.007586456369608641, -0.022988852113485336, 0.0040767076425254345, -0.003032220294699073, -0.03817526251077652, -0.011156950145959854, 0.04465480148792267, -0.010569742880761623, 0.01390400342643261, 0.0012014139210805297, -0.012891575694084167, 0.017184268683195114, 0.040038131177425385, -0.03957916423678398, -0.011082706041634083, -0.0015388897154480219, -0.06555130332708359, 0.0024264510720968246, -0.006675271783024073, -0.036852359771728516, -0.0062466771341860294, -0.004130703862756491, -0.007620203774422407, 0.008484141901135445, -0.0436018742620945, 0.02026204764842987, -0.023272331804037094, 0.022759368643164635, 0.0007673356449231505, -0.01787271909415722, 0.016711803153157234, -0.012837580405175686, 0.05658794566988945, 0.030291829258203506, 0.014754442498087883, -0.02053202874958515, -0.019776083528995514, 0.015132415108382702, -0.022610880434513092, 0.031128769740462303, 0.03301863372325897, 0.011649665422737598, 0.06117761507630348, -0.020370040088891983, 0.03825625777244568, -0.025972139090299606, 0.00010382653999840841, -0.007262479513883591, -0.009948787279427052, -0.015226908959448338, -0.012452857568860054, -0.018723158165812492, 0.031911712139844894, -0.0038438495248556137, 0.012149129062891006, -0.04316990450024605, -0.01081947423517704, -0.06090763583779335, -0.013532780110836029, 0.047813571989536285, -0.004518801346421242, 0.002070414135232568, 0.029346896335482597, -0.02057252638041973, 0.04316990450024605, 0.018318187445402145, -0.017724229022860527, 0.011015210300683975, 0.026498600840568542, 0.021058490499854088, 0.011649665422737598, 0.043844856321811676, 0.04865051433444023, -0.006604401860386133, 0.01339104026556015, 0.013013067655265331, 0.017413752153515816, 0.04257594794034958, -0.008619132451713085, 0.0015962605830281973, -0.016036851331591606, 0.04994641989469528, 0.016428323462605476, 0.05572400614619255, -0.024014778435230255, -0.007228732109069824, -0.014997425489127636, 0.026809079572558403, 0.016360826790332794, -0.013067063875496387, 0.013235801830887794, 0.009901540353894234, 0.02741653472185135, 0.015834365040063858, 0.008747372776269913, -0.0083086546510458, -0.010785726830363274, 0.01111645344644785, 0.02018105424940586, -0.01653631404042244, -0.03609641268849373, 0.018156198784708977, -0.034854501485824585, 0.010900468565523624, 0.03264066204428673, -0.0013777450658380985, -0.012439358048141003, -0.02309684455394745, 0.0656052976846695, -0.011514674872159958, 0.020491531118750572, -0.016306830570101738, -0.044519808143377304, 0.019114630296826363, -0.038391247391700745, 0.05486006662249565, -0.05923375487327576, 0.029643874615430832, -0.005500855855643749, -0.0016173528274521232, 0.013850007206201553, -0.00403621094301343, 0.03199270740151405, -0.016441822052001953, 0.010205268859863281, -0.010886969976127148, -0.009908289648592472, -0.0011718847090378404, 0.008315403945744038, -0.027119556441903114, -0.018642164766788483, -0.048056554049253464, 0.025742655619978905, 0.007262479513883591, -0.012513603083789349, 0.01762973703444004, -0.011197447776794434, 0.04786757007241249, -0.04241396114230156, -0.026012634858489037, 0.005197127349674702, 0.024433249607682228, 0.000531102588865906, 0.008126417174935341, -0.010940966196358204, -0.005591974128037691, 0.003951841965317726, -0.007579706609249115, -0.04330489784479141, -0.022840363904833794, 0.011663164012134075, -0.012992818839848042, 0.05923375487327576, -0.008153415285050869, 0.010670985095202923, 0.0064154150895774364, 0.014227980747818947, 0.003236392978578806, 0.018993139266967773, -0.019425107166171074, 0.024338755756616592, 0.014484462328255177, -0.035988420248031616, 0.0030119717121124268, -0.009334580972790718, 0.019573597237467766, 0.015618381090462208, -0.010286263190209866, 0.013559778220951557, 0.040389105677604675, -0.04460080340504646, 0.027578523382544518, -0.03142574802041054, 0.03539446368813515, 0.05113433673977852, 0.0030575308483093977, 0.0002514194929972291, -0.01637432724237442, 0.020680516958236694, -0.01645532064139843, -0.00753920990973711, -0.013283047825098038, -0.0034540649503469467, 0.02371780015528202, -0.009496569633483887, -0.009435824118554592, -0.037365321069955826, 0.02599913626909256, 0.012614846229553223, 0.03231668472290039, 0.020329542458057404, -0.028266973793506622, -0.04138803482055664, -0.03739232197403908, -0.05324018374085426, -0.009503318928182125, 0.00891611073166132, -0.005419861525297165, 0.055670011788606644, 0.01121094636619091, 0.003236392978578806, 0.017656734213232994, -0.020599523559212685, 0.022826863452792168, -0.027362538501620293, -0.01364752184599638, -0.00490014860406518, -0.0018122451147064567, -0.009300833567976952, 0.026107128709554672, -0.010225516743957996, 0.046517666429281235, 0.02745703235268593, 0.028644947335124016, 0.007667450699955225, 0.017562242224812508, -0.005996945314109325, -0.0181427001953125, -0.017926715314388275, -0.006351294927299023, 0.005794459953904152, -0.04846152663230896, 0.005689842160791159, -0.012425859458744526, -0.023002350702881813, -0.023933785036206245, -0.0034793757367879152, -0.030858788639307022, 0.04071308299899101, 0.05799184367060661, -0.058531805872917175, 0.028401965275406837, -0.04009212553501129, -0.030561810359358788, 0.002760552102699876, -0.03920118883252144, 0.016819793730974197, -0.03852624073624611, 0.013350543566048145, -0.014997425489127636, -0.00751896109431982, -0.05426611006259918, -0.031560737639665604, -0.01416048500686884, -0.010401004925370216, -0.01861516572535038, -0.028131984174251556, 0.032613661140203476, -0.001369308098219335, -0.028536954894661903, -0.018669161945581436, 0.0030474066734313965, 0.00995553657412529, 0.0024551365058869123, 0.003702109679579735, 0.0008133167284540832, 0.004360187333077192, 0.010508996434509754, -0.014362970367074013, 0.010124274529516697, -0.015847863629460335, -0.018790652975440025, -0.0009229963761754334, 0.0038438495248556137, -0.005514354910701513, -0.02371780015528202, -0.03507048636674881, -0.010475249029695988, -0.014335972256958485, -0.024406250566244125, 0.010387505404651165, 0.0036953601520508528, 0.015402396209537983, -0.00891611073166132, -0.019101131707429886, -0.03396356478333473, 0.018237192183732986, -0.01924961991608143, 0.01211538165807724, -0.030858788639307022, -0.023434320464730263, 0.06555130332708359, 0.00779569149017334, 0.019492603838443756, 0.013431536965072155, -0.005372615065425634, -0.013121060095727444, -0.02427126094698906, 0.017899716272950172, 0.04541074484586716, -0.005423236172646284, 0.0005728651885874569, 0.016914287582039833, -0.03480050712823868, 0.005757337436079979, 0.004802281036973, 0.003951841965317726, 0.008585385046899319, -0.02132847160100937, 0.00816691480576992, -0.02674158290028572, -0.0003859879507217556, -0.010873470455408096, 0.019344113767147064, 0.0003022517776116729, -0.00980029720813036, -0.020707515999674797, -0.016320331022143364, 0.0038337253499776125, -0.011217695660889149, -0.014916431158781052, -0.0009272148017771542, 0.000586364243645221, 0.016158342361450195, 0.018588168546557426, 0.00389784574508667, -0.023083345964550972, 0.010724981315433979, 0.04295392334461212, 0.01779172569513321, 0.026336612179875374, -0.01602335087954998, 0.06533531844615936, -0.014079490676522255, 0.0030069095082581043, 0.03264066204428673, 0.009010604582726955, 0.004866401199251413, 0.00207716366276145, 0.022246405482292175, 0.03299163654446602, -0.012736337259411812, 0.023623306304216385, -0.01795371249318123, 0.023461319506168365, 0.02026204764842987, 0.033288612961769104, -0.0034338163677603006, 0.0027909250929951668, -0.025243191048502922, -0.014956927858293056, 0.03231668472290039, 0.001852742163464427, 0.007181485183537006, -0.012938822619616985, 0.010812724940478802, 0.035286471247673035, 0.015240407548844814, 0.027632519602775574, -0.05728989467024803, -0.02988685853779316, -0.02579665184020996, 0.030129840597510338, 0.011217695660889149, -0.024676231667399406, 0.012614846229553223, 0.01021201815456152, -0.057667866349220276, -0.003329198807477951, -0.005980071611702442, 0.02273237146437168, 0.04465480148792267, 0.008740623481571674, 0.02513519860804081, -0.025081202387809753, 0.0027774260379374027, -0.0030592181719839573, 0.04759758710861206, -0.023434320464730263, 0.023299330845475197, -0.03231668472290039, 0.0048933993093669415, -0.015226908959448338, 0.003891096217557788, 0.02182793617248535, -0.021139485761523247, 0.01519991084933281, -0.010508996434509754, 0.03620440512895584, 0.03309962898492813, 0.00021144968923181295, -0.03247867152094841, -0.013735265471041203, -0.012243622913956642, -0.010623738169670105, 0.0030929658096283674, -0.0031165890395641327, -0.015253907069563866, -0.024041777476668358, -0.008646130561828613, 0.013067063875496387, -0.05124232918024063, 0.013816259801387787, -0.019371110945940018, 0.031749725341796875, 0.023002350702881813, 0.007046495098620653, -0.007788941729813814, 0.016792796552181244, -0.024919213727116585, -0.011912896297872066, 0.03601541742682457, -0.01798071153461933, 0.0029191658832132816, -0.023906785994768143, -0.00357386888936162, -0.001569262589327991, 0.013235801830887794, -0.029346896335482597, 0.0067663900554180145, 0.022327400743961334, -0.013451785780489445, 0.023731298744678497, 0.01056299265474081, -0.00980029720813036, -0.04119904711842537, 0.001400524633936584, -0.01464645005762577, 0.030696799978613853, 0.00855838693678379, -0.010374006815254688, -0.015348399989306927, -0.01301981694996357, 0.010050029493868351, 0.010407754220068455, -0.003533371724188328, -0.017265262082219124, -0.047651585191488266, 0.007640452589839697, -0.000353505922248587, -0.00740421935915947, -0.0007791472598910332, -0.025418678298592567, 0.04689563810825348, -0.05642595514655113, -0.002456823829561472, 0.004832653794437647, -0.024203766137361526, 0.009780049324035645, 0.025702157989144325, 0.04543774202466011, -0.03912019729614258, -0.003104777541011572, 0.0248247217386961, -0.008396398276090622, -0.003229643451049924, 0.01183865126222372, 0.026566095650196075, -0.01951960101723671, 0.008673128671944141, -0.002563128713518381, 0.013208803720772266, -0.009105097502470016, -0.00034527992829680443, 0.028455961495637894, -0.03023783303797245, 0.008295155130326748, -0.023866290226578712, -0.011912896297872066, -0.0010655798250809312, -0.01735975593328476, -0.030723797157406807, -0.0014258353039622307, -0.015429394319653511, -0.014727444387972355, 0.00682376092299819, 0.003742606844753027, 0.024284759536385536, 0.001258784788660705, -0.014106488786637783, -0.016009852290153503, -0.024554740637540817, 0.0053861141204833984, 0.009024103172123432, 0.021449962630867958, 0.021152984350919724, -0.0014899556990712881, 0.035286471247673035, 0.01838568225502968, -0.004765158519148827, 0.02194942720234394, 0.0052443742752075195, 0.010414503514766693, -0.015348399989306927, -0.032532669603824615, 0.03849923983216286, -0.019236121326684952, 0.001383650815114379, -0.025418678298592567, 0.022489387542009354, 0.005416486877948046, -0.037365321069955826, -0.03539446368813515, -0.008369400165975094, 0.016698302701115608, -0.02073451317846775, 0.017211265861988068, 0.002487196819856763, 0.009226588532328606, -0.020721014589071274, 0.021665947511792183, 0.005888952873647213, -0.01629333198070526, 0.02309684455394745, 0.013735265471041203, 0.0285099558532238, -0.013418038375675678, 0.02622861973941326, -0.051863282918930054, -0.035448458045721054, 0.02163894847035408, 0.010765478014945984, 0.012547350488603115, -0.009901540353894234, -0.00535911601036787, -0.015685874968767166, -0.015307903289794922, 0.02406877465546131, -0.010670985095202923, 0.036231402307748795, 0.002639060840010643, -0.004498552531003952, 0.024554740637540817, 0.011872398667037487, 0.01019176933914423, -0.013188554905354977, -0.02988685853779316, 0.04422283172607422, -0.028104985132813454, 0.016833294183015823, 0.023825792595744133, -0.0023927034344524145, -0.007059994153678417, 0.0014654886908829212, -0.005143131595104933, -0.006985749118030071, -0.031047774478793144, 0.027673017233610153, -0.0179132167249918, 0.008409896865487099, -0.03207370266318321, -0.004933896474540234, -0.01559138298034668, 0.002613750286400318, 0.004285942763090134, -0.009273835457861423, -0.019371110945940018, -0.009138844907283783, 0.04368286952376366, -0.012884826399385929, 0.019506102427840233, 0.007113990373909473, -6.94461923558265e-05, 0.03828325495123863, 0.017899716272950172, -0.027227548882365227, 0.012162628583610058, -0.006776514463126659, 0.022489387542009354, -0.018399180844426155, -0.014511460438370705, -0.021530956029891968, 0.04052409529685974, 0.03058880753815174, 0.003911344800144434, 0.026485102251172066, -0.029589880257844925, 0.056965917348861694, -0.004262319300323725, 0.022489387542009354, -0.018115701153874397, -0.0050250147469341755, 0.010832973755896091, 0.0008576104301027954, 0.012884826399385929, 0.021935928612947464, -0.009969035163521767, -0.019101131707429886, 0.015307903289794922, 0.025621164590120316, -0.0002828469150699675, 0.018088703975081444, -0.000513806939125061, 0.029562881216406822, -0.033396605402231216, -0.03561044856905937, -0.032181695103645325, -0.010940966196358204, 0.01783222146332264, 0.001296750851906836, -0.016171840950846672, -0.01199389062821865, 0.012729587964713573, -0.05094534903764725, 0.0065841530449688435, 0.0005319462507031858, 0.003705484326928854, -0.011312189511954784, 0.0293738953769207, -0.0008230191306211054, -0.0013963062083348632, 0.001038581831380725, -0.012034387327730656, 0.01225037220865488, 0.0042454455979168415, -0.0046200440265238285, 0.004616668913513422, 0.009685555472970009, -0.027619021013379097, 0.025540169328451157, 0.0008027706062421203, -0.008531388826668262, -0.036933351308107376, -0.013917502947151661, 0.00046234187902882695, -0.004181325435638428, -0.004923772066831589, 0.002107536420226097, 0.024514243006706238, -0.0035097484942525625, 0.0118791488930583, -0.018507173284888268, 0.011663164012134075, -0.01274308655411005, 0.018075205385684967, -0.0007821001927368343, 0.03912019729614258, -0.005591974128037691, -0.038472242653369904, -0.031074773520231247, 0.017926715314388275, -0.026336612179875374, -0.006992498878389597, -0.011170449666678905, -0.002556379185989499, -0.006088063586503267, -0.015955856069922447, -0.007586456369608641, 0.0020501655526459217, 0.005996945314109325, -0.041847001761198044, 0.017035778611898422, 0.018399180844426155, 0.0012781895929947495, 0.014241479337215424, 0.009651808068156242, -0.006354669574648142, -0.009726053103804588, -0.012284119613468647, 0.02289436012506485, 0.013121060095727444, 0.007998176850378513, 0.002936039585620165, -0.01223012339323759, -0.002635686192661524, 0.012088383547961712, -0.011825152672827244, 0.005693216808140278, -0.0019911073613911867, 0.00321614439599216, -0.010043280199170113, 0.021544456481933594, -0.003928218502551317, -0.012736337259411812, 0.044627800583839417, -0.01417398452758789, -0.010549494065344334, -0.04252195358276367, 0.007633702829480171, -0.012493354268372059, 0.0014891120372340083, -0.005446859635412693, 0.02273237146437168, 0.03401756286621094, 0.014281976036727428, 0.02540517970919609, 0.06371543556451797, 0.012533851899206638, 0.028725940734148026, -0.014916431158781052, -0.026579594239592552, 0.0006045035552233458, -0.019803080707788467, -0.012277370318770409, -0.003325824160128832, -0.0029647250194102526, -0.04829953983426094, 0.039606161415576935, -0.03307262808084488, 0.00566621869802475, -0.03417954966425896, 0.03912019729614258, 0.005710090976208448, 0.007505462039262056, -0.0009516818099655211, 0.018547670915722847, -0.012101883068680763, -0.008274907246232033, -0.00980029720813036, 0.013931001536548138, -0.017305759713053703, 0.02764601819217205, -0.014659949578344822, -0.02772701345384121, -0.01199389062821865, -0.00770794739946723, -0.009982534684240818, 0.018939143046736717, -0.0030119717121124268, -0.010988212190568447, -0.01378251239657402, 0.00636141886934638, 0.0007310569635592401, -0.0254861731082201, -0.011784655041992664, 0.017346257343888283, 0.007998176850378513, -0.010745230130851269, 0.0032262688037008047, -0.016563313081860542, -0.003955216612666845, 0.023029349744319916, -0.0007563676917925477, 0.026323113590478897, -0.01798071153461933, -0.013161556795239449, 0.0013929314445704222, 0.01641482301056385, 0.024217264726758003, -0.005382739007472992, -0.011568671092391014, 0.031560737639665604, -0.009091597981750965, 0.010117525234818459, -0.016347328200936317, -0.018115701153874397, -0.037014346569776535, -0.010765478014945984, 0.04206298664212227, -0.005851830821484327, 0.022880859673023224, -0.0034557522740215063, 0.005605473183095455, -0.02344781905412674, 0.0444658137857914, -0.016387825831770897, -0.01109620463103056, 0.0015093606198206544, -0.031479742377996445, 0.02583714760839939, 0.017346257343888283, 0.01939810998737812, 0.010380756109952927, 0.023353327065706253, 0.042386963963508606, 0.011204197071492672, -0.001269752741791308, -0.005355741363018751, -0.007788941729813814, -0.03463851660490036, 0.009901540353894234, -0.03420654684305191, 0.0009575876174494624, -0.0030339076183736324, 0.006385042332112789, 0.04932546615600586, 0.03955216705799103, -0.007046495098620653, -0.004842777736485004, -0.014322473667562008, -0.008065671660006046, 0.014916431158781052, 0.003290389198809862, 0.02211141586303711, 0.037878286093473434, 0.035124484449625015, -0.006513283122330904, 0.03698734939098358, 0.02155795507133007, -0.00907135009765625, -0.005575100425630808, 0.019263120368123055, 0.002504070522263646, -0.01935761235654354, 0.010421252809464931, -0.006482910364866257, 0.021314973011612892, 0.002952913288027048, 0.004005837719887495, -0.022570382803678513, -0.006320922169834375, -0.005183628294616938, 0.022691873833537102, -0.022327400743961334, 0.0013296547112986445, -0.005845081061124802, -0.01223687268793583, -0.012034387327730656, -0.011318938806653023, -0.011217695660889149, 0.028563952073454857, -1.4619557987316512e-05, -0.01983007974922657, -0.020626522600650787, 0.012128881178796291, 0.007323225028812885, -0.033315613865852356, -0.019884074106812477, -0.022529885172843933, 0.059989701956510544, -0.029157910495996475, 0.02030254527926445, -0.009314332157373428, 0.008004926145076752, 0.02203042060136795, 0.018588168546557426, 0.027700014412403107, -0.010124274529516697, -0.004890024662017822, 0.06609126180410385, 0.003055843524634838, 0.0045457989908754826, -0.027268046513199806, 0.012621595524251461, -0.022097915410995483, 0.025810150429606438, 0.009273835457861423, 0.016711803153157234, 0.014011995866894722, -0.027835005894303322, -0.001517797471024096, -0.013053564354777336, -0.011541672982275486, -0.026404106989502907, 0.021179981529712677, -0.024365752935409546, -0.014781440608203411, 0.0047516594640910625, -0.012938822619616985, -0.004755034111440182, 0.000900216749869287, -0.01563188061118126, 0.0012511915992945433, -0.02961687743663788, -0.016590310260653496, -0.02234089933335781, -0.024082273244857788, 0.0461936891078949, 0.0026373735163360834, -0.03955216705799103, -0.031911712139844894, -0.018034707754850388, 0.013823009096086025, 0.00482927868142724, -0.009496569633483887, 0.016873789951205254, 0.023690802976489067, -0.028455961495637894, 0.0010436439188197255, -0.015186411328613758, 0.009057850576937199, -0.008484141901135445, -0.013809510506689548, -0.0032262688037008047, 0.027538025751709938, 0.016252834349870682, -0.0025411928072571754, -0.007174735888838768, 0.02493271231651306, -0.0066347746178507805, 0.03142574802041054, -0.027835005894303322, 0.010900468565523624, -0.011413431726396084, 0.007032996043562889, -0.01211538165807724, 0.0017784975934773684, 0.003425379516556859, 0.018034707754850388, 0.02022155001759529, -0.03129075840115547, -0.016900788992643356, -0.0038101018872112036, -0.025931641459465027, 0.002863482339307666, 0.01637432724237442, -0.026957567781209946, -0.03652838245034218, -0.024527741596102715, 0.027700014412403107, 0.0392821840941906, -0.011008461005985737, 0.01849367469549179, -0.02250288799405098, 0.03768929839134216, 0.02332632802426815, -0.009759800508618355, 0.007464964874088764, -0.0014410216826945543, -0.011453929357230663, -0.0016367577482014894, -0.011588919907808304, -0.012068134732544422, -0.008497641421854496, -0.005433360580354929, 0.005946323741227388, 0.010569742880761623, -0.025324184447526932, 0.017724229022860527, 0.03142574802041054, -0.018169697374105453, 0.018682660534977913, 0.02564816176891327, -0.016563313081860542, -0.004613294266164303, -0.022570382803678513, -0.0026474976912140846, -0.021112486720085144, 0.03255966678261757, -0.007269228808581829, 0.02639060840010643, 0.0401461236178875, -0.03185771778225899, -0.006952001713216305, 0.029940854758024216, 0.000976148818153888, -0.03682536259293556, 0.02163894847035408, -0.00770794739946723, -0.005828207358717918, 0.004096956457942724, -0.010428003035485744, -0.0075459592044353485, 0.01924961991608143, -0.024568239226937294, -0.0098340455442667, -0.006709019187837839, -0.011521424166858196, -0.0267820805311203, 0.006992498878389597, -0.037446316331624985, 0.001790309208445251, -0.06447137892246246, -0.0018544296035543084, -0.00903085246682167, -0.023002350702881813, -1.7071530464818352e-06, -0.02454124204814434, 0.013303296640515327, 0.0179132167249918, 0.005018265452235937, 0.01983007974922657, -0.009969035163521767, -0.026026135310530663, 0.03091278485953808, 0.020005566999316216, 0.010272763669490814, 0.017724229022860527, -0.004623418673872948, -0.022165412083268166, 0.0007972866296768188, -0.008153415285050869, -0.016239335760474205, 0.016360826790332794, 0.028563952073454857, -0.01239211205393076, -0.032505668699741364, 0.0036953601520508528, -0.0037932281848043203, 0.006331046111881733, 0.0033089504577219486, -0.0050756363198161125, 0.004323065280914307, 0.0024483869783580303, 0.014713945798575878, 0.024811221286654472, 0.004559298045933247, 0.018129201605916023, 0.0019607343710958958, -0.00010150639718631282, 0.04586971178650856, 0.033288612961769104, -0.0011988828191533685, -0.0006378293037414551, -0.011393183842301369, -0.017076276242733, 0.004535675048828125, 0.004242070950567722, -0.010333509184420109, -0.017535243183374405, 0.024568239226937294, 0.007525710854679346, 0.019776083528995514, -0.0075594582594931126, -0.01286457758396864, -0.014902931638062, 0.01888514682650566, 0.01715726964175701, 0.026687586680054665, -0.01121094636619091, 0.00032334402203559875, -0.020005566999316216, 0.03790528327226639, 0.025067703798413277, 0.004589671269059181, -0.010873470455408096, -0.012007389217615128, 0.00420157378539443, 0.00956406444311142, 0.010934215970337391, 0.009078099392354488, 0.02799699269235134, -0.002021480118855834, 0.009165843017399311, -0.013337044045329094, -0.021301472559571266, 0.04430382326245308, 0.001793683972209692, 0.015537386760115623, -0.007458215579390526, 0.011379684321582317, -0.006759640760719776, -0.021746940910816193, -0.0036582378670573235, 0.028401965275406837, 0.0239877812564373, -0.02184143476188183, -0.008693376556038857, 0.010272763669490814, -0.01956009864807129, -0.009773300029337406, 0.0028246724978089333, 0.005740463733673096, 0.0031030902173370123, 0.026498600840568542, 0.013249300420284271, 0.005406362470239401, 0.03420654684305191, 0.016603810712695122, -0.004940645769238472, 0.012682341039180756, -0.012837580405175686, 0.013566527515649796, -0.01649581827223301, 0.010589990764856339, -0.02340732328593731, -0.0035232475493103266, -0.006003694608807564, 0.009726053103804588, 0.02258388139307499, -0.022273404523730278, -0.009935287758708, 9.788116585696116e-06, 0.008997105062007904, -0.008025174960494041, -0.007626953534781933, -0.016522815451025963, 0.004933896474540234, -0.0034101931378245354, -0.007653951644897461, -0.00433993898332119, 0.013067063875496387, -0.0012376925442367792, 0.012540601193904877, -0.006938502658158541, -0.023002350702881813, -0.004630167968571186, 0.013809510506689548, 0.016833294183015823, 0.005588599480688572, 0.006337795872241259, 0.009361579082906246, -0.0006985749350860715, 0.022948354482650757, -0.015537386760115623, 0.006162308156490326, 0.020599523559212685, -0.00038472242886200547, -0.006131935399025679, 0.005956448148936033, 0.03774329647421837, -0.015186411328613758, -0.024635734036564827, -0.0064154150895774364, -0.0031756474636495113, -0.0017084713326767087, 0.004329814575612545, 0.00503513915464282, -0.01970858685672283, -0.01032675988972187, 0.0011086080921813846, -0.0194386076182127, -0.013674519956111908, -0.017373254522681236, 0.04287292808294296, 0.031155766919255257, 0.0012511915992945433, -0.044789791107177734, -0.026066631078720093, 0.012378612533211708, -0.0089566083624959, 0.002315083984285593, -0.02961687743663788, -0.0038303504697978497, 0.015928858891129494, 0.012088383547961712, 0.010623738169670105, -0.021733442321419716, -0.017764726653695107, -0.021490460261702538, -0.005662844050675631, -0.020667018368840218, 0.010097276419401169, -0.016873789951205254, -0.03741931915283203, -0.01455195713788271, 0.012446108274161816, -0.03531346842646599, -0.007721446454524994, -0.008045423775911331, 0.0340985544025898, -0.01362727303057909, -0.023933785036206245, 0.019870575517416, 0.007458215579390526, 0.005089135374873877, 0.008450394496321678, 0.0052072517573833466, -0.016873789951205254, 0.01931711472570896, -0.009651808068156242, 0.007302976679056883, 0.015685874968767166, 0.013863506726920605, -0.024730227887630463, 0.012439358048141003, -0.0007027933606877923, 0.023461319506168365, -0.0002423498226562515, 0.01744074933230877, -0.019222622737288475, 0.00219359272159636, 0.0004387185617815703, -0.020356541499495506, 0.00879461970180273, 0.015577883459627628, -0.01719776727259159, -0.0029934104532003403, -0.0211664829403162, 0.03922818973660469, 0.014983925968408585, -0.03647438436746597, -0.0008061453700065613, 0.000696887553203851, 0.002352206502109766, -0.0022796490229666233, -0.0013423101045191288, -0.009314332157373428, 0.00013530670548789203, -0.018250692635774612, 0.016050349920988083, -0.00965855736285448, 0.021706445142626762, -0.00612518610432744, 0.012884826399385929, 0.00062095548491925, 0.007633702829480171, 0.0041644517332315445, 0.0073637221939861774, -0.03255966678261757, -0.02309684455394745, 0.02273237146437168, -0.009996033273637295, -0.0019539850763976574, -0.00879461970180273, -0.009300833567976952, -0.032775651663541794, 0.009125346317887306, 0.02270537242293358, -0.02450074441730976, 0.015604881569743156, -0.0025310686323791742, -0.017899716272950172, -0.009125346317887306, 0.0003073139232583344, 0.004255570005625486, 0.024419749155640602, -0.00542998593300581, -0.012520352378487587, 0.014875933527946472, 0.01111645344644785, -0.005335492547601461, 0.012675591744482517, -0.008808118291199207, -0.010252514854073524, 0.005001391749829054, -0.006908129900693893, -0.009807047434151173, 0.033477600663900375, -0.02744353376328945, 0.00805217307060957, -0.032505668699741364, -0.03058880753815174, -0.004363562446087599, 0.02663359045982361, -0.022394895553588867, 0.03474650904536247, 0.004950770176947117, 0.009908289648592472, 0.0020754763390868902, 0.028806935995817184, -0.0012022575829178095, -0.028131984174251556, -0.006800137460231781, -0.02834796905517578, -0.008504390716552734, -0.010684484615921974, -0.0033275114838033915, 0.009226588532328606, -0.031209763139486313, 0.013559778220951557, 0.012344865128397942, -0.02682257816195488, -0.018547670915722847, 0.0036379892844706774, 0.003732482437044382, 0.008355901576578617, 0.002357268473133445, 0.004572797100991011, -0.019222622737288475, 0.01610434614121914, -0.005500855855643749, -0.010320010595023632, 0.02163894847035408, 0.016482317820191383, 0.003988964017480612, 0.019938070327043533, 0.011055707931518555, 0.008274907246232033, 0.0013566528214141726, 0.035718441009521484, -0.00438718544319272, 0.04022711515426636, -0.012675591744482517, -0.0008044579881243408, -0.002308334456756711, -0.021706445142626762, -0.00018656085012480617, -0.003590742591768503, 0.007478463929146528, 0.004522175993770361, 0.004056459292769432, 0.010529245249927044, 0.013175055384635925, -0.026593094691634178, -0.018912144005298615, 0.0066347746178507805, 0.019573597237467766, 0.010907217860221863, 0.01515941321849823, -0.0012368488823994994, -0.035043489187955856, 0.00870012678205967, 0.010967964306473732, 0.023609807714819908, -4.548013748717494e-05, -0.0010613613994792104, -0.0034422532189637423, -0.021733442321419716, -0.010961214080452919, 0.014092990197241306, -0.009078099392354488, 0.0006652491865679622, 0.015321401879191399, -0.01873665675520897, 0.013984997756779194, -0.002721742494031787, 0.0017582490108907223, -0.0033477600663900375, -0.008234409615397453, -0.01838568225502968, 0.0019286742899566889, -0.006476161070168018, 0.027430033311247826, -0.002559754066169262, 0.002321833511814475, 0.009044351987540722, 0.008274907246232033, -0.00482927868142724, 0.02030254527926445, 0.012419110164046288, -0.02379879355430603, 0.008085920475423336, 0.024379253387451172, 0.0068035125732421875, -0.024770725518465042, -0.017575740814208984, 0.013836508616805077, -0.003008596831932664, 0.018466675654053688, -0.010367256589233875, -0.027673017233610153, -0.02709255740046501, 0.008990355767309666, -0.0008276594453491271, 0.02772701345384121, -0.025472674518823624, 0.0005365865654312074, 0.020437534898519516, -0.017562242224812508, -0.016738800331950188, -0.029427891597151756, 0.0013389353407546878, -0.013917502947151661, -0.0019607343710958958, -0.006749516353011131, 0.0014629577053710818, 0.009570813737809658, -0.027160054072737694, -0.004366937093436718, 0.008301905356347561, -0.0037864786572754383, 0.005170129239559174, -0.0036852359771728516, -0.030885785818099976, -0.013721766881644726, -0.015645379200577736, -0.027497529983520508, -0.009861043654382229, 0.002055227756500244, -0.014835436828434467, 0.016698302701115608, -0.004204948432743549, -0.011926394887268543, -0.013127809390425682, -0.004107080865651369, -0.006236553192138672, 0.012452857568860054, -0.011258193291723728, -0.0041543273255229, -0.015577883459627628, -0.022610880434513092, -0.017076276242733, -0.00401596212759614, 0.007626953534781933, 0.013850007206201553, -0.025337684899568558, 0.0025968763511627913, 0.018831150606274605, 0.00656727934256196, -0.0069722505286335945, -0.028401965275406837, -0.003870847634971142, 0.0010360507294535637, 0.011312189511954784, 0.0011879148660227656, -0.04225197061896324, -0.007046495098620653, -0.015118916518986225, 0.02344781905412674, 0.027497529983520508, -0.03280264884233475, -0.009010604582726955, -0.002021480118855834, 0.022435391321778297, -0.003150336677208543, -0.031749725341796875, 0.006098187994211912, -0.020289046689867973, -0.004792156629264355, -0.013208803720772266, -0.01007027830928564, -0.007741695269942284, 0.0194386076182127, -0.001859491690993309, 0.014079490676522255, 0.02529718726873398, -0.016873789951205254, -0.02842896245419979, 0.010832973755896091, -0.007512211799621582, -0.02616112492978573, -0.01223012339323759, -0.027497529983520508, -0.019884074106812477, -0.0067292675375938416, -0.0003201801737304777, 0.005848455708473921, 0.0012376925442367792, -0.00793068204075098, 0.04036210849881172, 0.02458173781633377, 0.0179132167249918, -0.018129201605916023, 0.004022711887955666, 0.0018054955871775746, 0.004566047806292772, 0.002532755956053734, 0.017805224284529686, -0.021733442321419716, -0.01653631404042244, 0.026728084310889244, 0.037878286093473434, 0.02050502970814705, 0.005365865305066109, 0.012189626693725586, -0.0323706790804863, 0.02791599929332733, 0.012614846229553223, -0.023771796375513077, -0.015348399989306927, -0.0034236921928822994, 0.02258388139307499, 0.004890024662017822, -0.002068726811558008, -0.007417718414217234, 0.0032279561273753643, -0.006233178079128265, -0.032181695103645325, 0.01719776727259159, 0.017926715314388275, -0.005811333656311035, -0.001810557791031897, -0.0020754763390868902, 0.020167553797364235, 0.015523887239396572, 0.01235161442309618, -0.020397037267684937, 0.024055276066064835, -0.008848615922033787, -0.006985749118030071, 0.016077347099781036, -0.027389537543058395, 0.020370040088891983, -0.006398541387170553, 0.036069415509700775, 0.0018156198784708977, -0.004758408758789301, -0.004441181663423777, -0.005210626404732466, 0.019330615177750587, 0.001372682861983776, 0.014524959027767181, -0.009523567743599415, -0.02073451317846775, 0.01888514682650566, -0.0021986549254506826, -0.02151745744049549, -0.011865649372339249, 0.019695088267326355, 0.0025479423347860575, -0.0020046064164489508, -0.0013127808924764395, -0.008281656540930271, 0.010110775008797646, 0.004974393639713526, -0.005544727668166161, -0.00907135009765625, 0.02466273307800293, -0.005308494437485933, -0.017886217683553696, -0.012459606863558292, 0.0020822258666157722, -0.003705484326928854, 0.008625881746411324, 0.0053489916026592255, -0.006671896670013666, -0.025337684899568558, 0.006020568311214447, 0.002853357931599021, -0.00818716362118721, -0.007890184409916401, -0.011885898187756538, -0.003018721239641309, 0.01099496241658926, -0.0007049026316963136, 0.016117844730615616, 0.009024103172123432, 0.005679717753082514, 0.0014578955015167594, -0.020451033487915993, 0.0037831037770956755, -0.013971498236060143, -0.01455195713788271, -0.006337795872241259, -0.01046849973499775, 0.01107595581561327, 0.07791641354560852, -0.004771907813847065, -0.009300833567976952, 0.004363562446087599, 0.021490460261702538, 0.0050385138019919395, -0.006911504548043013, 0.024770725518465042, 0.007586456369608641, -0.008214161731302738, -0.01533490139991045, -0.019114630296826363, 0.005190378054976463, 0.0030676552560180426, -0.01399849634617567, 0.0037257329095155, 0.017305759713053703, 0.01614484377205372, -0.009233337827026844, 0.020100058987736702, 0.02489221654832363, -0.003708859207108617, -0.00865962915122509, -0.009294084273278713, -0.002445012331008911, 0.005902451928704977, 0.012189626693725586, 0.034503526985645294, 0.018507173284888268, 0.01779172569513321, 0.010461750440299511, 0.01158216968178749, -0.01304006576538086, -0.019816579297184944, -0.00942907389253378, 0.016387825831770897, -0.032505668699741364, 0.009260335937142372, 0.014916431158781052, 0.018115701153874397, -0.009901540353894234, -0.013060313649475574, 0.007093741558492184, 0.018318187445402145, 0.007424467708915472, 0.0004771064268425107, -0.01802120916545391, -0.004741535056382418, 0.0056358459405601025, -0.018480176106095314, -0.014065992087125778, 0.004815780092030764, -0.006452537607401609, 0.014565455727279186, 0.010589990764856339, -0.008646130561828613, 0.026714585721492767, -0.008848615922033787, -0.0024129520170390606, -7.609024760313332e-05, 0.005004766397178173, -0.012493354268372059, -0.012047886848449707, -0.029589880257844925, 0.0007449778495356441, -0.007329974789172411, 0.0052072517573833466, -0.02089650183916092, -0.0003674267791211605, 0.02435225434601307, -0.005490731447935104, 0.03849923983216286, -0.0032988260500133038, -0.01362727303057909, -0.008180413395166397, 0.013957999646663666, 0.013742014765739441, -0.015618381090462208, -0.001231786678545177, 0.006675271783024073, -0.012547350488603115, -0.007066743448376656, -0.003762855427339673, -0.02458173781633377, -0.006162308156490326, -0.017143771052360535, 0.025270188227295876, -0.005284871440380812, 0.009273835457861423, -0.026174623519182205, -0.015483390539884567, 0.014700446277856827, -0.015267405658960342, 0.02702506259083748, 0.0016840043244883418, -0.014767942018806934, -0.010508996434509754, -0.008470643311738968, 0.016171840950846672, 0.012891575694084167, 0.007626953534781933, 0.00211091130040586, 0.008565136231482029, -0.00039337025373242795, -0.0016856916481629014, 0.007626953534781933, -0.001545639242976904, 0.022921357303857803, -0.010900468565523624, -0.003577243536710739, -0.008639381267130375, 0.0001783348707249388, -0.015780368819832802, -0.01758923940360546, -0.044519808143377304, 0.018723158165812492, 0.004093581810593605, 0.0028854182455688715, -0.008065671660006046, -0.010225516743957996, 0.008376149460673332, 0.00022231219918467104, 0.00942232459783554, -0.005932824686169624, 0.0032887018751353025, 0.010630488395690918, -0.006938502658158541, -0.008551636710762978, -0.025931641459465027, 0.00932783167809248, 0.0019236120861023664, 0.0036784864496439695, -0.010279512964189053, -0.015739871188998222, -0.002922540530562401, -0.006536906585097313, 0.0017818722408264875, -0.020478032529354095, -0.002094037365168333, -0.0073637221939861774, 0.0030541562009602785, 0.006965500768274069, -0.00258675217628479, 0.018088703975081444, -0.02262437902390957, -0.020721014589071274, -0.020451033487915993, -0.014916431158781052, 0.030372822657227516, -0.007491962984204292, 0.01708977483212948, -0.031749725341796875, -0.006054316181689501, -0.005190378054976463, 8.853466715663671e-05, 0.012513603083789349, -0.03185771778225899, -0.00656727934256196, 0.013708267360925674, -0.005149880889803171, 0.017062777653336525, 0.02359630912542343, -0.035637445747852325, 0.0002929711772594601, -0.00930758286267519, -0.019074132665991783, -0.0026576220989227295, 0.007998176850378513, 0.00814666599035263, -0.004579546861350536, -0.004265694413334131, 0.006547030992805958, -0.010225516743957996, -0.017184268683195114, 0.007755194325000048, 0.006570653989911079, 0.006118436343967915, 0.010110775008797646, -0.0142549779266119, 0.021935928612947464, 0.021746940910816193, -0.013796010985970497, 0.0037864786572754383, -0.011737409047782421, 0.02760552242398262, -0.011278442107141018, 0.010826224461197853, -0.0006087219808250666, 0.003356196917593479, 0.015685874968767166, -0.016090847551822662, 0.015969354659318924, 0.0034135677851736546, -0.007680949289351702, -0.005008141044527292, 0.011588919907808304, -0.0017346256645396352, 0.010502247139811516, 0.011629416607320309, -0.0014519896358251572, 0.002946163760498166, 0.014673448167741299, 0.008760872296988964, -0.005055387504398823, -0.002048478228971362, -0.0005024170968681574, -0.017899716272950172, -0.028995921835303307, -0.010286263190209866, 0.0034928745590150356, -0.059395741671323776, -0.018939143046736717, 0.0008445332059636712, -8.141603757394478e-05, -0.005794459953904152, -0.01046849973499775, 0.019209124147892, -0.0011710410472005606, 0.04044310003519058, 0.014227980747818947, 0.00942232459783554, 0.022043921053409576, -0.002094037365168333, 0.0015388897154480219, 0.01579386740922928, 0.004846152849495411, 0.010947715491056442, 0.02011355757713318, 0.02270537242293358, 0.0014587391633540392, 0.0021615326404571533, 0.007316475734114647, -0.00814666599035263, -0.013181805610656738, 0.013188554905354977, 0.025540169328451157, 0.027592021971940994, 0.002127785002812743, -0.009381827898323536, -0.004468179773539305, -0.012675591744482517, 0.007829438894987106, -0.017818722873926163, -0.0016435071593150496, 0.009118596091866493, -0.003138525178655982, 0.0026812453288584948, 0.002256025793030858, -0.00328363967128098, -2.5600704248063266e-05, 0.03420654684305191, -0.003590742591768503, -0.004012587480247021, 0.007059994153678417, -0.00012634250742848963, 0.0077011981047689915, 0.021314973011612892, 0.012108632363379002, 0.015537386760115623, 0.0036548629868775606, -0.004481678828597069, 0.01070473250001669, 0.005095884669572115, -0.006560530047863722, 0.015307903289794922, 0.020005566999316216, -0.03507048636674881, 0.006405291147530079, -0.010083776898682117, 0.02945488877594471, -0.011393183842301369, 0.004933896474540234, 0.017994210124015808, 0.018669161945581436, -0.006455912254750729, 0.012452857568860054, 0.023137342184782028, -0.012155878357589245, 0.001438490697182715, 0.0036548629868775606, 0.004555923398584127, 0.01775122806429863, -0.0017717480659484863, -0.021962925791740417, 0.0018814277136698365, -0.030129840597510338, -0.02132847160100937, 0.0024483869783580303, -0.02427126094698906, -0.013404539786279202, -0.0008791245054453611, 0.009415575303137302, 0.01806170493364334, 0.022907858714461327, -0.007653951644897461, -0.017035778611898422, 0.0012022575829178095, -0.0031722725834697485, 0.018750155344605446, -0.00042543045128695667, -0.01668480411171913, 0.015996353700757027, 0.00498789269477129, -0.016603810712695122, 0.020437534898519516, 0.008673128671944141, 0.012668842449784279, -0.013249300420284271, -0.007073493208736181, 0.027322042733430862, -0.003366321325302124, 0.006557154934853315, -0.030264830216765404, 0.005618972238153219, -0.022597379982471466, -0.00753920990973711, 0.023812294006347656, 0.011156950145959854, 0.006223054137080908, 0.00515325553715229, 0.006590902805328369, 0.018318187445402145, 0.005214001517742872, 0.023690802976489067, 0.008349151350557804, 0.025661660358309746, 0.0185746680945158, 0.016792796552181244, 0.006628024857491255, 0.012257121503353119, 0.0001231786736752838, 0.004211698193103075, -0.028050988912582397, 0.018817652016878128, -0.02815898135304451, 0.011872398667037487, -0.0035097484942525625, -0.011136702261865139, -0.010360507294535637, 0.016995282843708992, -0.014349471777677536, -0.007248980458825827, 0.01160241849720478, -0.020410537719726562, -0.005679717753082514, 0.018912144005298615, 0.018426179885864258, 0.0026694335974752903, 0.013478783890604973, 0.03704134374856949, 0.0002680823381524533, -0.00956406444311142, 0.010778977535665035, 0.012635094113647938, -0.022988852113485336, 0.0017582490108907223, -0.00714773777872324, 0.0038134767673909664, 0.014497960917651653, 0.0016966596012935042, -0.015915360301733017, 0.022556884214282036, -0.010225516743957996, -0.017805224284529686, 0.02877993695437908, 0.01610434614121914, -0.009766549803316593, 0.006628024857491255, -0.012857828289270401, -0.0012739711673930287, -0.011237944476306438, -0.02791599929332733, 0.01715726964175701, -0.022219408303499222, -0.029508884996175766, 0.0016823168843984604, -0.01750824600458145, -0.001766685862094164, -0.002691369503736496, 0.024905715137720108, 0.018237192183732986, -0.0024753850884735584, -0.002598563674837351, 0.012925324030220509, 0.006101562641561031, 0.004481678828597069, 0.0034068182576447725, 0.01121094636619091, 0.003867472754791379, -0.010083776898682117, 0.003752731019631028, 0.014835436828434467, 0.0026019385550171137, -0.005774211138486862, 0.008349151350557804, -0.007809190545231104, -0.00535911601036787, 0.01121094636619091, -0.0030727172270417213, -0.029427891597151756, 0.020194552838802338, -0.001349059515632689, -0.027619021013379097, 0.016428323462605476, -0.0066347746178507805, -0.008477392606437206, -0.00045306127867661417, 0.025148697197437286, 0.0224623903632164, -0.025229692459106445, 0.006860883440822363, 0.02101799286901951, 0.0027824880089610815, 0.004029461182653904, 0.01795371249318123, -0.00018561170145403594, 0.030723797157406807, -0.017656734213232994, 0.025337684899568558, 0.011224445886909962, 0.02348831668496132, 0.013357292860746384, 0.026242120191454887, -0.03420654684305191, 0.024649232625961304, 0.033720582723617554, 0.019425107166171074, 0.005996945314109325, 0.021058490499854088, 0.01892564445734024, 0.008781121112406254, -0.01908763125538826, 0.035367466509342194, 0.011649665422737598, -0.016522815451025963, -0.017305759713053703, 0.015766870230436325, -0.0239607822149992, -0.003955216612666845, 0.026728084310889244, -0.004417558200657368, -0.012365113943815231, -0.0006390947964973748, -0.007093741558492184, 0.0022273403592407703, 0.002946163760498166, 0.002149720909073949, 0.014403467997908592, -0.00772819621488452, -0.010374006815254688, 0.003732482437044382, 0.017170770093798637, 0.0028854182455688715, -0.0024601987097412348, -0.01884464919567108, 0.0020535404328256845, -0.017467748373746872, 0.008585385046899319, 0.017251763492822647, -0.013519281521439552, 0.0017430626321583986, 0.0007335880654864013, 0.022637877613306046, 0.021530956029891968, 0.0015287654241546988, -0.007066743448376656, 0.009233337827026844, 0.009098348207771778, -0.016198839992284775, -0.004481678828597069, -0.0006492190877906978, -0.0012672216398641467, 0.022867361083626747, -0.00946282222867012, -0.01927661895751953, 0.01541589479893446, -0.010218767449259758, 0.00401596212759614, -0.002021480118855834, 0.0012959070736542344, -0.020977497100830078, -0.008322153240442276, 0.0011685100616887212, -0.0024348879233002663, -0.003384882351383567, 0.0039957137778401375, -0.02198992483317852, 0.012871327809989452, -0.0020653519313782454, 0.018507173284888268, -0.0030237832106649876, -0.004363562446087599, 0.01783222146332264, 0.001514422707259655, 0.002463573357090354, -0.0010394254932180047, -0.011987141333520412, 0.03453052416443825, -0.008983606472611427, -0.029913855716586113, 0.005534603260457516, -0.02285386249423027, -0.025985637679696083, 0.008173664100468159, 0.025418678298592567, -0.0016983470413833857, -0.004977768287062645, -0.0010697983670979738, -0.003590742591768503, 0.02603963389992714, 0.009003854356706142, -0.01748124696314335, -0.0025141946971416473, 0.027862003073096275, -0.002760552102699876, 0.02560766413807869, 0.0037898533046245575, 0.0315067432820797, 0.0170492772012949, 0.006283799652010202, 0.01798071153461933, -0.018466675654053688, 0.01455195713788271, -0.004960894584655762, -0.0013777450658380985, 0.009321082383394241, -0.0009567439556121826, 0.014187483116984367, 0.00027588647208176553, 0.015510388650000095, -0.023461319506168365, 0.0324246771633625, -0.0013018129393458366, 0.00018476801051292568, 0.0046200440265238285, 0.0025580667424947023, 0.016077347099781036, -0.011791405268013477, 0.014767942018806934, -0.0336935855448246, -0.006827135570347309, -0.0033933192025870085, 0.016860291361808777, 0.007140988018363714, -0.010988212190568447, -0.013161556795239449, -0.0112311951816082, -0.00591932563111186, -0.01541589479893446, 0.0032347056549042463, -0.009233337827026844, 0.015537386760115623, 0.02529718726873398, 0.010077027603983879, 0.0023893287871032953, -0.00997578538954258, -0.017535243183374405, 0.006388416979461908, 0.01818319596350193, 0.0077011981047689915, -0.0028263600543141365, -0.00747171463444829, 0.004586296156048775, 0.003745981492102146, -0.0008318778709508479, -0.005001391749829054, 0.0025614413898438215, 0.004049709998071194, -0.00675626564770937, 0.013073813170194626, -0.0029950977768749, 0.00012106944632250816, -0.02046453393995762, 0.004042960237711668, -0.02026204764842987, -0.005254498217254877, 0.0021024742163717747, -0.020721014589071274, 0.019263120368123055, 0.00036067728069610894, 0.006131935399025679, -0.020100058987736702, -0.00865962915122509, -0.004879900254309177, 1.620147486391943e-05, 0.0166173093020916, 0.012047886848449707, 0.015847863629460335, 0.004998016636818647, -0.025324184447526932, 0.011710410937666893, -0.005352366250008345, 0.0017270324751734734, -0.021031493321061134, 0.0091860918328166, -0.007201733998954296, -0.013161556795239449, 0.00046656030463054776, 0.006401916034519672, -0.022219408303499222, -0.00219359272159636, 0.014281976036727428, 0.00011526908201631159, -0.003904595272615552, 0.0046335430815815926, 0.0033022009301930666, -0.0009753050981089473, -0.008511140011250973, -0.0098340455442667, 0.010900468565523624, -0.003982214722782373, 0.010198518633842468, 0.012520352378487587, -0.009435824118554592, 0.0025445676874369383, -0.011123202741146088, 0.00942232459783554, -0.023609807714819908, 0.030102843418717384, 0.02470322884619236, -0.02410927228629589, -0.010009532794356346, 0.016306830570101738, -0.01771073043346405, 0.0009297458454966545, -0.0072219823487102985, -0.00587207917124033, 0.02517569623887539, 0.016279833391308784, -0.005659469403326511, 0.0007572113536298275, -0.0016342266462743282, 0.022138413041830063, -0.019290117546916008, 0.010805975645780563, -0.01276333536952734, -0.014565455727279186, 0.015888361260294914, -0.004059833940118551, -0.01668480411171913, 0.01095446478575468, -0.024797722697257996, -0.00473141111433506, -0.0034861252643167973, 0.00014100161206442863, -0.0031672106124460697, 0.0026474976912140846, -0.023582810536026955, 0.005443484988063574, -0.006712393835186958, -0.007350223138928413, -0.006938502658158541, -0.014511460438370705, 0.0032920765224844217, -0.017940213903784752, -7.023715443210676e-05, -0.0024888841435313225, -0.013971498236060143, 0.0020889753941446543, -0.0039957137778401375, -0.013877005316317081, -0.025823649019002914, -0.0036413639318197966, 0.007923931814730167, 0.013573276810348034, -0.013235801830887794, 0.02190892957150936, 0.014524959027767181, 0.009300833567976952, -0.0001739055005600676, 0.01468694768846035, 0.019141627475619316, -0.018331686034798622, 0.018601667135953903, -0.019101131707429886, -0.020869504660367966, -0.00855838693678379, -0.029751867055892944, -0.015172912739217281, -0.04916347563266754, -0.005045263562351465, -0.006013819016516209, -0.01865566335618496, -0.011710410937666893, -1.6399215382989496e-05, 0.006378293037414551, -0.013094061985611916, -0.01649581827223301, -0.018912144005298615, 0.01567237637937069, -0.018601667135953903, -0.01610434614121914, -0.013728516176342964, 0.014767942018806934, 0.018912144005298615, 0.011676663532853127, 0.003712233854457736, 0.012054636143147945, 2.852725265256595e-05, 0.013296547345817089, -0.025904644280672073, -0.011818403378129005, 0.01775122806429863, 0.00197423342615366, 0.018723158165812492, -0.012986069545149803, 0.0066347746178507805, -0.008625881746411324, -0.005625721998512745, 0.0006272831815294921, 0.0038134767673909664, -0.0013676207745447755, -0.005450234282761812, 0.00770794739946723, -0.01246635615825653, 0.002397765638306737, 0.014052492566406727, -0.024811221286654472, -0.013215553015470505, 0.014997425489127636, 0.00394846685230732, -0.005564976017922163, 0.0024433250073343515, 0.0023927034344524145, -0.011771156452596188, 0.0036649873945862055, 0.014848935417830944, 0.033315613865852356, -0.0026339986361563206, 0.014538457617163658, 0.022205907851457596, 0.004441181663423777, -0.0027436784002929926, 0.011008461005985737, -0.002024854999035597, -0.012797082774341106, 0.024406250566244125, -0.00682376092299819, 0.00721523305401206, 0.006371543277055025, -0.007323225028812885, -0.002856732811778784, 0.012905075214803219, 0.006601026747375727, 0.017994210124015808, -0.02529718726873398, -0.0047246613539755344, 0.013418038375675678, 0.007971178740262985, 0.028806935995817184, -0.012803832069039345, -0.026606593281030655, 0.016158342361450195, 0.002981598721817136, 0.01056299265474081, 0.00426906906068325, 0.009280584752559662, 0.03569144383072853, 0.015267405658960342, -0.0007909589330665767, 0.027862003073096275, -0.012432608753442764, 0.003091278485953808, 0.015172912739217281, 0.0054131122305989265, -0.007066743448376656, -0.002014730591326952, 0.0023808919358998537, -0.00445805536583066, 0.024163268506526947, 0.0036177407018840313, -0.0018021208234131336, 0.0030372822657227516, 0.0019219247624278069, 0.012378612533211708, -0.011818403378129005, 0.004431057255715132, -0.003914719447493553, 0.01464645005762577, 0.019222622737288475, -0.016752298921346664, 0.031155766919255257, -0.010407754220068455, 0.0181427001953125, -0.012513603083789349, -0.0034540649503469467, 0.0306698027998209, 0.00017432734603062272, 0.03050781413912773, -0.00491702277213335, 0.004069958347827196, -0.004312940873205662, -0.0023235210683196783, 0.009577563963830471, 0.006074564531445503, 0.0026559345424175262, 0.00566621869802475, -0.0012570973485708237, -0.0019202373223379254, 0.0048697758466005325, 0.023299330845475197, 0.003853973699733615, -0.00840314757078886, -0.013067063875496387, -0.018547670915722847, 0.01719776727259159, -0.004140828270465136, 0.008868864737451077, 0.002061977284029126, 0.009996033273637295, 0.0022796490229666233, -0.008754123002290726, -0.019209124147892, 0.0049068983644247055, 0.0022577131167054176, 0.014322473667562008, 0.00229821028187871, -0.026971066370606422, -0.010050029493868351, 0.010981462895870209, -0.01892564445734024, 0.018426179885864258, 0.012385362759232521, 0.00930758286267519, -0.03358559310436249, -0.0009947100188583136, 0.009726053103804588, 0.004242070950567722, 0.007005997933447361, 0.025243191048502922, 0.015091918408870697, -0.005622346885502338, -0.031911712139844894, 0.021611951291561127, 0.013944501057267189, -0.03404456004500389, -0.019938070327043533, -0.005861954763531685, -0.0046335430815815926, -0.010569742880761623, -0.010778977535665035, -0.033045630902051926, -0.0022813365794718266, -0.004623418673872948, -0.005544727668166161, -0.009341330267488956, -0.008949858136475086, 0.0013085624668747187, 0.01438996847718954, -0.0056864675134420395, -0.011636165902018547, 0.010367256589233875, 0.0005285714869387448, 0.0006593433790840209, -0.021260976791381836, 0.01758923940360546, -0.029076915234327316, 0.004029461182653904, -0.0029984726570546627, -0.003870847634971142, -0.006617900915443897, 0.0055177295580506325, 0.007188234943896532, 0.006391792092472315, 0.012101883068680763, -0.006877757143229246, -0.009402075782418251, -0.011872398667037487, -0.014794940128922462, -0.010002783499658108, -0.005524478852748871, -0.02536468207836151, 0.00644916296005249, 0.020005566999316216, 0.015240407548844814, -0.008963357657194138, -0.013957999646663666, -0.005251123569905758, -0.030534811317920685, 0.00542998593300581, -0.008463893085718155, -0.005895702634006739, 0.01223687268793583, 0.004974393639713526, -0.025553667917847633, -0.00164181983564049, 0.0037763542495667934, 0.00324989203363657, 0.0006509064696729183, 0.020154055207967758, -0.004488428123295307, -0.01904713548719883, 0.034692514687776566, -0.010164771229028702, 0.01822369359433651, -0.00842339638620615, 0.00907135009765625, 0.003911344800144434, -0.012689090333878994, -0.020869504660367966, -0.006553780287504196, 0.0017160645220428705, -0.0196680910885334, -0.01680629514157772, -0.007883435115218163, -0.005264622624963522, -0.05561601370573044, 0.0005741307395510375, 0.001962421927601099, -0.0035299970768392086, -0.003138525178655982, 0.011966892518103123, 0.006101562641561031, 0.006763015408068895, 0.010286263190209866, -0.004947395529597998, -0.004137453623116016, -0.02120698057115078, 0.008862114511430264, -0.009246837347745895, -0.004839403089135885, 0.0006433132803067565, -0.003918094094842672, 0.02128797397017479, -0.014700446277856827, -0.003111527068540454, -0.015807367861270905, -0.007093741558492184, 0.012716088443994522, -0.014956927858293056, 0.008065671660006046, -0.0015852926298975945, 0.008349151350557804, -0.00466391583904624, 0.0008339870837517083, -0.009861043654382229, 0.0017531868070363998, -0.02929290011525154, 0.005052012857049704, 0.013634023256599903, 0.007869935594499111, 0.0036413639318197966, -0.0001321428717346862, -0.016239335760474205, 0.00719498423859477, 0.013289797119796276, 0.000906966277398169, -0.017346257343888283, 0.015321401879191399, 0.006368168629705906, -0.008639381267130375, 0.030642803758382797, 0.0033005133736878633, 0.0018324936972931027, 0.0015886673936620355, 0.009321082383394241, -0.01645532064139843, -0.013634023256599903, -0.0014511459739878774, 0.0012309430167078972, 0.007512211799621582, -0.00396534102037549, 0.024757225066423416, -0.011177198961377144, 0.017494745552539825, -0.01606384851038456, 0.03075079619884491, -0.0006563904462382197, 0.00917259231209755, -0.0012427546316757798, -0.0009584313374944031, -0.004026086535304785, -0.013215553015470505, 0.001144886715337634, 0.026093630120158195, 0.03280264884233475, 0.008119667880237103, 0.011946643702685833, -0.013566527515649796, 0.01099496241658926, -0.003553620306774974, 0.0007365409401245415, 0.021193481981754303, -0.002407890046015382, -0.010124274529516697, -0.002104161772876978, -0.00930758286267519, -0.002996785333380103, 0.02764601819217205, -0.012142379768192768, -0.016090847551822662, -0.00942907389253378, 0.03031882643699646, -0.013519281521439552, -0.005095884669572115, -0.01272283773869276, 0.017940213903784752, 0.010286263190209866, -0.0030102841556072235, -0.00751896109431982, -0.0033005133736878633, 0.005834956653416157, -0.006580778397619724, 0.00517350435256958, -0.007822689600288868, -0.01567237637937069, -0.0011938207317143679, -0.02741653472185135, -0.02427126094698906, 0.008477392606437206, 0.0019708587788045406, -0.01237186323851347, -0.050486382097005844, -0.024797722697257996, -0.0004222666029818356, 0.034665513783693314, 0.013060313649475574, 0.020167553797364235, -0.004312940873205662, 0.0025513172149658203, 0.008693376556038857, 0.004107080865651369, -0.022367896512150764, -0.0049440208822488785, 0.0022070917766541243, 0.014835436828434467, -0.005375989712774754, -0.011278442107141018, -0.009537066332995892, -0.030210833996534348, -0.012675591744482517, -0.005524478852748871, 0.018831150606274605, 0.010124274529516697, -0.005328743252903223, 0.013424787670373917, -0.006523407530039549, 0.027106057852506638, 0.007923931814730167, 0.00907135009765625, -0.0015161101473495364, -0.010650736279785633, -0.011136702261865139, 0.019776083528995514, 0.013505782000720501, -0.0047752829268574715, 0.022178910672664642, -0.008646130561828613, -0.004640292376279831, 0.01614484377205372, -0.03129075840115547, -0.01795371249318123, 0.006223054137080908, 0.015253907069563866, 0.008949858136475086, 0.001593729481101036, -0.003752731019631028, 0.001962421927601099, 0.016239335760474205, 0.01927661895751953, -0.026971066370606422, 0.01896614022552967, -0.004093581810593605, -0.002104161772876978, -0.003853973699733615, 0.008254658430814743, 0.01248660497367382, 0.026714585721492767, -0.010360507294535637, 0.010016282089054585, -0.004981142934411764, 0.015807367861270905, -0.007971178740262985, 0.025027206167578697, -0.009739551693201065, -0.024082273244857788, 0.009010604582726955, 0.030183836817741394, -0.010036530904471874, 0.01264184433966875, 0.0048933993093669415, -0.00015059858560562134, -0.01019176933914423, 0.01429547555744648, -0.0026576220989227295, -0.03401756286621094, 0.001638445071876049, -0.003369695972651243, -0.0020501655526459217, -0.013877005316317081, 0.004329814575612545, -0.002625561784952879, 0.013755514286458492, 0.034692514687776566, -0.0073907203041017056, 0.007579706609249115, -0.0032144570723176003, -0.012830830179154873, -0.0006268613506108522, -0.02143646404147148, 0.000776194385252893, 0.007876685820519924, 0.00375948054715991, 0.011703661642968655, 0.009503318928182125, 0.013721766881644726, 0.0003163835790473968, -0.011028709821403027, -0.007721446454524994, -0.008828367106616497, -0.006543655879795551, -0.016320331022143364, 0.005369240418076515, 0.005190378054976463, 0.003756105899810791, -0.0038134767673909664, -0.01107595581561327, -0.012209874577820301, 0.007923931814730167, 0.005730339325964451, -0.010866721160709858, 0.0017498120432719588, 0.01995157077908516, -0.016401324421167374, 0.01830468885600567, 0.0022070917766541243, 0.004552548751235008, -0.010873470455408096, 0.02953588403761387, 0.004991267342120409, 0.012857828289270401, 0.007073493208736181, -0.00408345740288496, -0.016941286623477936, 0.007680949289351702, -0.0007863186183385551, 0.016050349920988083, 0.028536954894661903, 0.0008483298006467521, 0.001159229432232678, 0.013661021366715431, 0.01641482301056385, 0.012709339149296284, 0.007599955424666405, 0.0005294152069836855, -0.006344545166939497, -0.009449322707951069, -0.008754123002290726, 0.006793388165533543, 0.007822689600288868, -0.005332117900252342, -0.007809190545231104, -0.010428003035485744, 0.009915039874613285, -0.020802009850740433, -0.02309684455394745, -0.021787438541650772, 0.01390400342643261, -0.007100491318851709, 0.03137174993753433, 0.003894470864906907, 0.001645194599404931, -0.0033477600663900375, -0.011912896297872066, 0.019735585898160934, 0.033288612961769104, 0.0030119717121124268, 0.009989283978939056, 0.011717160232365131, 0.009550565853714943, -0.004815780092030764, -0.01563188061118126, 0.011339187622070312, -0.011163700371980667, 0.0004543268005363643, -0.006739391945302486, 0.0007015278679318726, 0.014106488786637783, 0.014416966587305069, -0.013424787670373917, -0.024905715137720108, -0.008355901576578617, 0.007296226918697357, -0.01211538165807724, 0.02104499191045761, -0.009807047434151173, -0.021382467821240425, -0.00770794739946723, 0.008220911026000977, 0.0019506101962178946, 0.01900663785636425, 0.0001563989499118179, -0.010313261300325394, -0.004495177883654833, -0.020437534898519516, 0.004744910169392824, -0.011798154562711716, 0.018007708713412285, 0.005332117900252342, -0.01337079145014286, -0.020005566999316216, -0.010367256589233875, 0.009044351987540722, -0.0061791823245584965, -0.03771629557013512, -0.003722358262166381, 0.006543655879795551, -0.01223012339323759, -0.00029571319464594126, 0.016252834349870682, 0.018237192183732986, -0.015280905179679394, -0.013816259801387787, -0.038040272891521454, -0.006118436343967915, 0.029076915234327316, -0.0049068983644247055, 0.0034439407754689455, 0.03380157798528671, 0.019209124147892, -0.0029343522619456053, 0.03439553454518318, 0.0017008781433105469, -0.013620523735880852, -0.007491962984204292, 0.015888361260294914, 0.015186411328613758, -0.009739551693201065, 0.012803832069039345, 0.018507173284888268, -0.0033950067590922117, 0.007282727863639593, -0.004603170324116945, 0.002694744383916259, -0.006034067366272211, 0.002235777210444212, -0.026093630120158195, 0.02454124204814434, -0.008497641421854496, 0.016630807891488075, 0.00652003288269043, 0.02599913626909256, -0.022286903113126755, 0.010205268859863281, -0.004927146714180708, -0.005983446259051561, -0.009341330267488956, -0.00375948054715991, 0.007626953534781933, -0.011021960526704788, 0.002490571467205882, -0.0031790221109986305, 0.005541353020817041, 0.007755194325000048, 0.03771629557013512, 0.013708267360925674, -0.019411608576774597, -0.023461319506168365, 0.012574348598718643, 0.014565455727279186, -0.011595669202506542, 0.016252834349870682, 0.00529162073507905, 0.009881291538476944, -0.019965069368481636, -0.0042319465428590775, -0.00016947613039519638, -0.008929610252380371, 0.0035063736140727997, -0.01362727303057909, -0.007964429445564747, 0.015766870230436325, -0.015996353700757027, 0.006121811456978321, -0.00956406444311142, -0.013289797119796276, 0.0142549779266119, 0.02552667073905468, -0.01097471360117197, 0.007437966763973236, 0.0009094973211176693, -0.006435663904994726, 0.010245765559375286, -0.013046815060079098, 0.007498712744563818, 0.008895862847566605, 0.03860723227262497, 0.02635011076927185, -0.0029124163556843996, -0.016090847551822662, 0.0017616237746551633, -0.033558595925569534, -0.005321993492543697, -0.0031587735284119844, -0.013330294750630856, 0.0015709499130025506, -0.010657486505806446, -0.02918490767478943, 0.023002350702881813, 0.019506102427840233, 0.0052308752201497555, 0.008686627261340618, 0.0022796490229666233, 0.02124747633934021, 0.0007871623383834958, 0.008855365216732025, -0.002470322884619236, 0.003170585259795189, -0.012621595524251461, -0.007383971009403467, 0.005355741363018751, 0.016522815451025963, 0.018939143046736717, -0.00471116229891777, 0.0035367466043680906, 0.022529885172843933, -0.008646130561828613, 0.004049709998071194, -0.010853222571313381, 0.0023403947707265615, 0.0142549779266119, 0.026606593281030655, 0.025742655619978905, 0.015766870230436325, -0.00656727934256196, -0.007269228808581829, -0.039687156677246094, -0.017170770093798637, 0.018561169505119324, -0.005888952873647213, -0.010846472345292568, 0.00559534877538681, -0.007464964874088764, 0.009638309478759766, -0.01618533954024315, 0.022138413041830063, 0.01185890007764101, -0.0016241023549810052, -0.014052492566406727, -0.007086992263793945, 0.0034473154228180647, 0.011177198961377144, -0.006911504548043013, 0.011676663532853127, -0.025810150429606438, -0.021611951291561127, 0.0027268044650554657, 0.005274747032672167, 0.00043618748895823956, -0.0008428458240814507, -0.011399933136999607, -0.015969354659318924, 0.00777544267475605, 0.0112311951816082, 0.02151745744049549, -0.01900663785636425, 0.014538457617163658, -0.0008327215909957886, -0.004167826380580664, -0.02073451317846775, -0.013046815060079098, -0.004366937093436718, -0.029994850978255272, 0.004528925288468599, -0.01983007974922657, -0.01227062102407217, 0.009078099392354488, -0.013850007206201553, 0.015267405658960342, 0.0069587514735758305, 0.0034540649503469467, -0.00719498423859477, 0.013175055384635925, -0.004086832050234079, -0.0016645994037389755, -0.008247909136116505, -0.008997105062007904, -0.010907217860221863, 0.0036042416468262672, 0.021854933351278305, -0.006169057916849852, -0.011345936916768551, -0.012054636143147945, -0.006034067366272211, 0.006678646430373192, 0.0023336452431976795, -0.008349151350557804, 0.005564976017922163, -0.011447180062532425, 0.036312397569417953, 0.003745981492102146, -0.026647090911865234, -0.007660700939595699, -0.03264066204428673, -0.02791599929332733, 0.00219359272159636, -0.014308974146842957, 0.008862114511430264, -0.01515941321849823, 0.02089650183916092, -0.01598285511136055, 0.012378612533211708, 0.0142549779266119, 0.01970858685672283, 0.007309725973755121, 0.00229821028187871, 0.007424467708915472, 0.019425107166171074, 0.02104499191045761, -0.001638445071876049, 0.0013060313649475574, -0.020788509398698807, -0.0022205908317118883, 0.012533851899206638, -0.009577563963830471, 0.004397309850901365, 0.010549494065344334, -0.007687699049711227, 0.01633382961153984, 0.015685874968767166, 0.0006015506223775446, 0.00015460611029993743, 0.017697231844067574, -0.027781009674072266, 0.013769012875854969, -0.029940854758024216, -0.03741931915283203, 0.0142549779266119, 0.004174575675278902, 0.0038236009422689676, -0.0030727172270417213, 0.008106169290840626, -0.0007319006836041808, 0.003600866999477148, -0.005294995382428169, 0.007626953534781933, -0.01162266731262207, -0.02022155001759529, -0.014133486896753311, 0.0012360052205622196, -0.008781121112406254, 0.016347328200936317, -0.008436894975602627, -0.0064660366624593735, -0.016509316861629486, -0.01610434614121914, 0.002600251231342554, 0.013640772551298141, -0.001967483898624778, -0.02305634692311287, 0.012959071435034275, 0.010488748550415039, 0.0026643716264516115, 0.015240407548844814, -0.013735265471041203, -0.01657681167125702, -0.014376469887793064, -0.020005566999316216, -0.014538457617163658, 0.022124914452433586, 0.005278121680021286, 0.03266765922307968, 0.005166754592210054, 0.0009921789169311523, -0.032694656401872635, 0.0055818501859903336, 0.005791084840893745, 0.006219679024070501, 0.01399849634617567, 0.007235481403768063, -0.006121811456978321, 0.013060313649475574, -0.003904595272615552, 0.02379879355430603, 0.011528173461556435, 0.02207091823220253, -0.01176440715789795, 0.013033315539360046, -0.0021294723264873028, 0.005878828465938568, -0.022637877613306046, -0.004640292376279831, 0.008889112621545792, 0.004235321655869484, -0.04022711515426636, 0.008929610252380371, 0.007788941729813814, 0.02737603709101677, 0.0008166914922185242, 0.03947117179632187], "4a6a49bc-91e8-4059-82b4-a5731f18fb81": [-0.0035234768874943256, -0.007668203208595514, -0.013219011947512627, 0.02442355826497078, -0.046082738786935806, -0.018321344628930092, 0.01184417586773634, 0.012594086118042469, -0.008844533935189247, 0.0352310910820961, 0.018277231603860855, 0.04390652850270271, 0.004065691493451595, -0.013005801476538181, -0.023114889860153198, 0.0009116560104303062, -0.007594682741910219, 0.007969637401401997, 0.0385248176753521, 0.01338075753301382, 0.09304773062467575, -0.011211898177862167, -0.025085244327783585, 0.007844652980566025, -0.010557564906775951, -0.02646743133664131, -0.016380399465560913, -0.01996820606291294, -0.025129355490207672, -0.03049636259675026, -0.004429618827998638, -0.012013273313641548, 0.035760439932346344, 0.0030860290862619877, -0.0035878075286746025, -0.04672972112894058, 0.017203830182552338, 0.032613757997751236, -0.009109207428991795, -0.015909867361187935, -0.03005523979663849, 0.0079843420535326, -0.04390652850270271, -0.0036558141000568867, -0.02295314520597458, -0.012917577289044857, -0.04896475002169609, -0.011079560965299606, 0.009815005585551262, 0.012388228438794613, 0.0031558736227452755, 0.023600127547979355, -0.013204307295382023, -0.017718475311994553, 0.03681913763284683, -0.01985057443380356, -0.00761673878878355, 0.09781186282634735, 0.029672931879758835, -0.023923616856336594, -0.01130747515708208, -0.030702220275998116, 0.023159002885222435, -0.0004751271626446396, 0.017733179032802582, -0.018762467429041862, 0.0005114279920235276, 0.008226959966123104, -0.015409926883876324, 0.0065139289945364, -0.01495409943163395, 0.0425831563770771, -0.032643165439367294, 0.032025594264268875, 0.013491038233041763, 0.0017084359424188733, 0.021423915401101112, 0.025673408061265945, 0.05199379846453667, 0.011902992613613605, 0.004819278139621019, -0.015498152002692223, 0.022129714488983154, 0.02515876479446888, 0.0028856853023171425, 0.03564280644059181, -0.042700789868831635, -0.03864245116710663, -0.008962166495621204, -0.022894328460097313, 0.01352779846638441, 0.024982314556837082, 0.018556609749794006, -0.007271191570907831, 0.027643762528896332, 0.014490919187664986, -0.008998926728963852, 0.0047788419760763645, 0.004429618827998638, -0.013307236135005951, -0.01955649070441723, 0.047259069979190826, -0.01748320832848549, 0.026849739253520966, 0.01242498867213726, -0.019056551158428192, 0.0612868070602417, 0.0511997751891613, 0.01435123011469841, 0.0015696657355874777, -0.0017029219307005405, -0.061463259160518646, -0.029996423050761223, -0.00019908012473024428, -0.02527639828622341, -0.020982792600989342, 0.00566476583480835, 0.0033819496165961027, -0.013366052880883217, -0.035878073424100876, -0.012594086118042469, 0.005583893042057753, 0.0009438212728127837, -0.004771489650011063, -0.039436474442481995, 0.008918054401874542, -0.012005921453237534, 0.05564042180776596, 0.03926002234220505, 0.03031991422176361, -0.007146206684410572, -0.025688113644719124, 0.032290268689394, -0.0027533480897545815, 0.007403528783470392, 0.018159599974751472, 0.0022570837754756212, 0.06022811308503151, 0.000980581622570753, 0.01546874362975359, -0.0477001927793026, -0.026143940165638924, -0.03237849101424217, -0.012491157278418541, -0.0006717948708683252, -0.013954218477010727, -0.026746809482574463, 0.06616857647895813, -0.007756427861750126, 0.021982671692967415, -0.020335810258984566, -0.03505464270710945, -0.028643643483519554, -0.008344593457877636, 0.036348607391119, -0.022909032180905342, -0.014439454302191734, 0.039877597242593765, -0.017983149737119675, 0.042994871735572815, 0.03434884548187256, -0.04455351084470749, 0.014667368493974209, 0.019585900008678436, 0.029967013746500015, 0.0030658107716590166, 0.061933789402246475, 0.0550522580742836, -0.017791995778679848, 0.01406449917703867, 0.012248539365828037, 0.008712196722626686, 0.041377417743206024, 0.011800063773989677, 0.002503377851098776, -0.05164090171456337, 0.020835749804973602, -0.009381233714520931, 0.039877597242593765, -0.01730675995349884, -0.032643165439367294, -0.012866112403571606, 0.02883479744195938, 0.010925167240202427, -0.023776575922966003, 0.027996661141514778, 0.025261692702770233, 0.02292373590171337, 0.0030069942586123943, 0.0016137781785801053, -0.017350871115922928, -0.019879981875419617, 0.005168501287698746, 0.04843540117144585, 0.013454277999699116, -0.03961292281746864, 0.018291935324668884, -0.00658009760081768, -0.03020228073000908, 0.036613281816244125, -0.003642947878688574, -0.03799546882510185, -0.03034932166337967, 0.03358422964811325, -0.0029702340252697468, 0.03667209669947624, -0.015542264096438885, -0.007469697389751673, 0.019130071625113487, 0.014821762219071388, 0.061933789402246475, -0.042847830802202225, 0.011704486794769764, 0.010829591192305088, -0.024320628494024277, -0.0005670279497280717, -0.0008873022743500769, -0.004109804052859545, -0.013454277999699116, 0.006131621543318033, -0.010131144896149635, -0.02737908810377121, 0.013836584985256195, -0.03549576550722122, -0.039554107934236526, -0.024011842906475067, -0.03237849101424217, 0.04034813120961189, -0.0096826683729887, -0.022306162863969803, 0.042524341493844986, 5.898882955079898e-05, 0.023291340097784996, -0.02132098749279976, -0.019350633025169373, 0.007771132048219442, 0.040024638175964355, -0.02221793867647648, 0.0210122000426054, -0.02573222480714321, 0.018747763708233833, 0.009484163485467434, -0.0056243292056024075, -0.025864562019705772, -0.011358939111232758, 0.02589397132396698, -0.018674243241548538, 0.014167428016662598, -0.00916802417486906, 0.024202996864914894, 0.0008045915747061372, 0.02487938664853573, 0.003187119960784912, 0.009910582564771175, -0.029481777921319008, 0.0019740292336791754, 0.0027110737282782793, -0.0352310910820961, 0.015454038977622986, -0.028658347204327583, -0.00998410303145647, 0.004731053486466408, -0.009278304874897003, 0.01761554554104805, 0.060139887034893036, -0.031731508672237396, 0.046700313687324524, -0.022688470780849457, -0.0005615139380097389, 0.07640265673398972, 0.005613300949335098, -0.00277724233455956, 0.0028654669877141714, 0.0048303063958883286, -0.029628818854689598, -0.005517724435776472, -0.0072491355240345, -0.012373524717986584, -0.0027312918100506067, 0.0166009608656168, 0.004392858594655991, -0.035466358065605164, 0.02634979970753193, -0.029246512800455093, -0.005341274663805962, 0.014976155012845993, -0.004223761148750782, -0.02148273214697838, -0.03640742227435112, -0.04199499264359474, -0.013689544051885605, 0.03370186313986778, 0.0064881970174610615, 0.03549576550722122, 0.004914855118840933, -0.004212732892483473, 0.002319576218724251, -0.0357898510992527, -0.00983706209808588, 0.00044870568672195077, -0.02295314520597458, 0.0096826683729887, -0.028173111379146576, -0.013321940787136555, 0.002687179483473301, -0.004856038372963667, 0.0319373682141304, 0.014233596622943878, 0.018468385562300682, 0.025526367127895355, 0.012314707972109318, -0.029643524438142776, -0.0051574730314314365, 0.006782279349863529, -0.01279259193688631, 0.03208440914750099, -0.014667368493974209, 0.0002752428990788758, -0.022673767060041428, -0.011733895167708397, -0.013535150326788425, 0.0037973413709551096, -0.041083335876464844, 0.0559639148414135, 0.021276874467730522, -0.06846242398023605, 0.005528752226382494, -0.027276158332824707, -0.0031742537394165993, -0.030378730967640877, -0.019894685596227646, -0.017850812524557114, -0.02749672159552574, -0.0045141675509512424, -0.025849858298897743, -0.021526845172047615, -0.029687635600566864, -0.05146444961428642, -0.025864562019705772, -0.035436950623989105, 0.014704128727316856, -0.0039921710267663, 0.01655684970319271, -0.017659658566117287, -0.0009594443836249411, -0.013071970082819462, -0.02086515910923481, 0.0027790802996605635, -0.00023170490749180317, -0.017218533903360367, 0.0009121155017055571, 0.005113360937684774, 0.015909867361187935, -0.001340832794085145, -0.008793069049715996, -0.008535746484994888, -0.017659658566117287, -0.025805745273828506, 0.008557802997529507, 0.00536333117634058, -0.011682430282235146, -0.019012438133358955, -0.010329650714993477, -0.04311250522732735, -0.033525414764881134, 0.0032624786254018545, 0.008829829283058643, 0.019291816279292107, -0.048611849546432495, -0.0007503700908273458, -0.020159360021352768, 0.014571791514754295, 0.005036164075136185, 0.00806521438062191, -0.00209166225977242, -0.023497197777032852, 0.07769661396741867, 0.011932400986552238, -0.018071373924613, 0.011505980975925922, -0.04361244663596153, 0.0006244659889489412, -0.0038157214876264334, 0.014358581975102425, 0.04517108201980591, 0.019438859075307846, -0.005102332681417465, 0.02173270285129547, -0.01879187673330307, -0.002446399535983801, -0.01882128417491913, 0.037201445549726486, 0.00821960810571909, -0.0008583535091020167, 0.03020228073000908, -0.006558041553944349, 0.002099014353007078, -0.020012319087982178, 0.013233715668320656, 0.020100543275475502, 0.04011286422610283, -0.008153439499437809, -0.004271549638360739, 0.009741485118865967, -0.006962405052036047, -0.012498509138822556, -0.007333684246987104, -0.012520565651357174, 0.01760084182024002, 0.0021615070290863514, 0.01745380088686943, -0.040465760976076126, 0.0060507492162287235, 0.027702579274773598, 0.02870246022939682, 0.005642709322273731, -0.006499224808067083, 0.008851885795593262, -0.004907502792775631, -0.030966894701123238, 0.016189245507121086, 0.011211898177862167, -0.01331458892673254, -0.00858721137046814, 0.014402694068849087, 0.015645192936062813, -0.0038745380006730556, 0.02411477081477642, -0.01985057443380356, 0.0007117717177607119, 0.03593689203262329, 0.057493142783641815, -0.006502900738269091, 0.002031007781624794, -0.002446399535983801, -0.01820371113717556, 0.01568930596113205, 0.007756427861750126, -0.004822954069823027, 0.007447641342878342, 0.0022258374374359846, 0.05317012965679169, -0.008859237655997276, 0.011535389348864555, -0.03420180454850197, -0.025261692702770233, -0.03926002234220505, 0.0014630608493462205, 0.024791160598397255, 0.02176211029291153, 0.010167905129492283, 0.04331836476922035, -0.06111035868525505, -0.003054782748222351, -0.0014106773305684328, -0.011050152592360973, 0.025776337832212448, -0.0067859552800655365, 0.008109327405691147, -0.04528871551156044, -0.05519929900765419, 0.00648084469139576, 0.04205380752682686, -0.00544420350342989, 0.018424272537231445, -0.04884711652994156, -0.026835035532712936, -0.0023416324984282255, -0.0011257848236709833, 0.009447402320802212, -0.013410165905952454, 0.01835075207054615, -0.009557683952152729, 0.029555298388004303, 0.016101021319627762, -0.03508405014872551, -0.010403171181678772, -0.027011483907699585, -0.012682311236858368, -0.01035170629620552, 0.023908913135528564, -0.0193653367459774, 0.0019354309188202024, 0.009594444185495377, -0.012160314247012138, 0.03034932166337967, -0.046553272753953934, -0.01279259193688631, 0.0017222210299223661, 0.016512736678123474, 0.028952429071068764, -0.040936294943094254, -0.02262965403497219, -5.468097879202105e-05, 0.011785359121859074, -0.020938679575920105, 0.0299081988632679, -0.03717203810811043, -0.005473611876368523, -0.025364622473716736, 0.025849858298897743, -0.0037899892777204514, 0.0060323686338961124, -0.002900389488786459, -0.014917338266968727, 0.0019207268487662077, 0.016203949227929115, 0.03273139148950577, 0.00761673878878355, 0.015395223163068295, -0.035113461315631866, -0.005455231759697199, -0.009425346739590168, 0.022600246593356133, -0.0039958469569683075, -0.025394029915332794, -0.0013288856716826558, -0.013726304285228252, 0.016056908294558525, -0.0020751201082021, -0.009050391614437103, -0.037377893924713135, -0.03476056084036827, -0.009447402320802212, -0.0137630645185709, -0.01486587431281805, 0.0028654669877141714, -0.027790803462266922, 0.056140363216400146, -0.020674005150794983, -0.032025594264268875, 0.005999284330755472, -0.03637801483273506, 0.0036705180536955595, 0.004069367423653603, 0.03358422964811325, -0.016380399465560913, -0.014674720354378223, 0.015292294323444366, -0.016527440398931503, 0.0003997684980276972, 0.033084288239479065, 0.0016551334410905838, -0.00496264360845089, 0.015159957110881805, 0.009594444185495377, 0.045671023428440094, 0.0009759865351952612, -0.014851169660687447, -0.0006524957134388387, -0.017365576699376106, 0.012094145640730858, -0.037819020450115204, -0.01955649070441723, -0.006411000154912472, -0.008109327405691147, 0.0030860290862619877, 0.004348746035248041, -0.03699558973312378, -0.00962385255843401, 0.010961928404867649, 0.0022166473791003227, 0.012998449616134167, -0.00010350328375352547, -0.013704247772693634, -0.006830067839473486, -0.016836227849125862, 0.012498509138822556, -0.019144775345921516, 0.00880042091012001, 0.021085720509290695, -0.011888287961483002, 0.0399952307343483, 0.00628969119861722, -0.029952310025691986, 0.0015273913741111755, -0.005668441765010357, -0.024320628494024277, -0.03079044632613659, -0.013726304285228252, 0.026438023895025253, -0.013204307295382023, 0.0003818478435277939, -0.01714501343667507, 0.026585064828395844, 0.01655684970319271, -0.023423677310347557, -0.032613757997751236, -0.01629217527806759, 0.015395223163068295, -0.005326570477336645, 0.014490919187664986, 0.010094384662806988, -0.004738405346870422, -0.002361850580200553, 0.016542144119739532, 0.006396295968443155, -0.027423201128840446, 0.02070341259241104, 0.033790089190006256, 0.011785359121859074, 0.015218772925436497, 0.03326074033975601, -0.02546755038201809, -0.027482016012072563, 0.017674362286925316, 0.023291340097784996, -0.004039959516376257, -0.0023416324984282255, 0.0006846609758213162, -0.028378969058394432, -0.03946588188409805, 0.042230259627103806, 0.004242141265422106, 0.009381233714520931, -0.021556252613663673, -0.006675674580037594, 0.03429002687335014, 0.024026546627283096, -0.001486954977735877, 0.008528394624590874, -0.039877597242593765, 0.05234669893980026, -0.03917180001735687, 0.03399594500660896, 0.016689186915755272, -0.010469339787960052, -0.015512855723500252, 0.015057028271257877, 0.006774927489459515, -0.01921829581260681, -0.011454516090452671, 0.01939474605023861, -0.02914358302950859, -0.007594682741910219, -0.03476056084036827, -0.016365695744752884, 0.008410762064158916, -0.005407443270087242, -0.012255891226232052, 0.012461748905479908, -0.02070341259241104, 0.005341274663805962, 0.024497078731656075, -0.025055835023522377, 0.018380161374807358, -0.03496641665697098, 0.012373524717986584, 0.02855541743338108, 0.015645192936062813, -0.027570242062211037, 0.008984223008155823, -0.004903826862573624, 0.01907125487923622, -0.006576421670615673, -0.03387831151485443, -0.005436851643025875, 0.017542025074362755, 0.019130071625113487, 0.021409211680293083, 0.010550212115049362, -0.014108611270785332, 0.0282613355666399, 0.014542383141815662, 0.01117513794451952, -0.002733130007982254, -0.010234073735773563, 0.0029279596637934446, 0.00806521438062191, 0.013424869626760483, 0.01570400968194008, -0.017983149737119675, -0.009910582564771175, 0.013601318933069706, 0.0039149741642177105, -0.005072924308478832, 0.005848567001521587, -0.018086077645421028, 0.029952310025691986, -0.04143623635172844, -0.03243730962276459, -0.03640742227435112, -0.033643048256635666, 0.014704128727316856, -0.020541667938232422, -0.013270475901663303, -0.0026596093084663153, 0.02399713732302189, -0.03984818980097771, -0.03329014778137207, 0.00895481463521719, 0.02117394469678402, -0.012924929149448872, 0.007543217856436968, 0.020174065604805946, -0.0022203235421329737, 0.011380995623767376, -0.032319676131010056, 0.010263482108712196, -0.015512855723500252, -0.026158645749092102, -0.005289810243993998, -0.018468385562300682, -0.03126097843050957, 0.00761673878878355, 0.013108731247484684, -0.018233120441436768, -0.03490760177373886, -0.009565035812556744, 0.005418471526354551, -0.008565154857933521, -0.016659777611494064, -0.0020107896998524666, 0.015586376190185547, 0.0018132028635591269, 0.01864483579993248, -0.0021964292973279953, 0.0072234030812978745, -0.01848308928310871, 0.013476334512233734, 0.006344831548631191, 0.0440535694360733, 0.0009190080454573035, -0.04561220854520798, -0.02457059919834137, 0.04458291828632355, -0.02708500437438488, -0.006205142475664616, 0.008601915091276169, -0.006252930965274572, 0.008374000899493694, -0.006451436318457127, 0.013498390093445778, 0.0007182047702372074, -0.0013518608175218105, -0.03864245116710663, 0.01242498867213726, -0.010020864196121693, 0.007418232969939709, -0.000788049423135817, 0.018071373924613, -0.002948177745565772, -0.01071930956095457, -0.025114651769399643, 0.02399713732302189, 0.026232166215777397, 0.02323252335190773, 0.02058578096330166, -0.021791519597172737, -0.006697730626910925, 0.03361363708972931, -0.04955291375517845, 0.025188172236084938, -0.0006685783737339079, 0.007631442975252867, 0.010256130248308182, 0.020894566550850868, 0.007609386462718248, -0.02487938664853573, 0.027158526703715324, -0.0013812690740451217, 0.001645943382754922, -0.04584747180342674, 0.0039664385840296745, -0.009609147906303406, -0.008572506718337536, 0.011410403996706009, 0.024952907115221024, 0.029628818854689598, -0.00953562743961811, 0.0367015041410923, 0.04287723824381828, 0.008528394624590874, 0.014071851037442684, -0.022453203797340393, -0.04987640306353569, 0.0029702340252697468, -0.010763422586023808, 0.008124031126499176, -0.007602034602314234, 0.004528871737420559, -0.019777053967118263, 0.03208440914750099, -0.032172635197639465, 0.02780550718307495, -0.016218654811382294, -0.0010348031064495444, -0.001970353303477168, -0.01629217527806759, 0.012873465195298195, 0.012564677745103836, -0.03076103702187538, -0.006796983536332846, 0.02293844148516655, -0.006701406557112932, -0.004385506268590689, 0.02590867504477501, 0.0073557402938604355, -0.02426181174814701, 0.013233715668320656, 0.01613042876124382, -0.0297317486256361, 0.05464054271578789, 0.022556133568286896, -0.02411477081477642, -0.0011211897945031524, -0.011116321198642254, -0.012564677745103836, 0.005914735607802868, 0.019615307450294495, -0.016086317598819733, -0.020776934921741486, -0.0015558806480839849, 0.01397627405822277, -0.02442355826497078, -0.01501291524618864, -0.008609266951680183, 0.010601677000522614, 0.03326074033975601, 0.009175376035273075, -0.0032753446139395237, -0.008616619743406773, 0.024511782452464104, 0.015571672469377518, 0.000612518866546452, 0.0018260689685121179, 0.01585105061531067, 0.01339546125382185, -0.017527321353554726, -0.011263363063335419, 0.01655684970319271, -0.049964629113674164, -0.011006040498614311, 0.012373524717986584, -0.018865397199988365, 0.03076103702187538, -0.017806699499487877, -0.016836227849125862, -0.012005921453237534, 0.033643048256635666, -0.02262965403497219, -0.01538051851093769, -0.010711957700550556, -0.02323252335190773, 0.015409926883876324, 0.014263004995882511, 0.016395103186368942, 0.011454516090452671, -0.0025952786672860384, 0.018556609749794006, 0.03296665847301483, 0.01921829581260681, -0.022115008905529976, 0.023747168481349945, -0.04558280110359192, 0.014843817800283432, -0.029070062562823296, -0.008521042764186859, -0.01035170629620552, 0.03196677565574646, 0.04425942897796631, 0.011211898177862167, -0.016483329236507416, -0.01266025472432375, -0.042671382427215576, -0.02812899835407734, -0.000796779990196228, -0.007785836234688759, 0.036025114357471466, 0.01685093156993389, 0.017939036712050438, -0.03531931713223457, 0.034437067806720734, -0.004407562781125307, -0.030437545850872993, -0.004881770815700293, -0.008035806007683277, 0.0035749413073062897, -0.027437904849648476, 0.006076481193304062, 0.0031374935060739517, 0.004988375585526228, 0.02160036563873291, -0.013814529404044151, -0.014101259410381317, 0.0038451296277344227, 0.014851169660687447, 0.0031301414128392935, -0.02592337876558304, -0.012954337522387505, -0.004492111504077911, -0.004139212425798178, -0.03843659162521362, -0.04173031821846962, -0.027320271357893944, 0.0105061000213027, 0.002295682206749916, -0.03243730962276459, -0.0024408854078501463, 0.0029206075705587864, -0.0021780491806566715, -0.036466240882873535, -0.02665858529508114, -0.021820927038788795, 0.05934586375951767, -0.03658387064933777, -0.005583893042057753, -0.007094742264598608, 0.0029812620487064123, 0.02870246022939682, 0.024305924773216248, 0.034554701298475266, 0.009344473481178284, 0.008675435557961464, 0.02976115606725216, 0.013255772180855274, -0.016380399465560913, -0.02499701827764511, -0.014542383141815662, -0.024085363373160362, -0.004705321043729782, 0.030849263072013855, 0.03831895813345909, 0.02354131080210209, -0.0253205094486475, -0.017100902274250984, -0.02443826198577881, -0.01235882006585598, -0.01546874362975359, 0.026438023895025253, -0.025408735498785973, -0.009778245352208614, -0.0006520362221635878, 0.007234431337565184, 0.024158883839845657, 0.020615188404917717, -0.018865397199988365, 0.005911059677600861, -0.027570242062211037, -0.025114651769399643, -0.02546755038201809, -0.011417755857110023, 0.03520168364048004, -0.020526964217424393, -0.0005389982252381742, -0.003922326490283012, -0.02368835173547268, 0.024173587560653687, -0.00565373757854104, 0.017556730657815933, 0.02070341259241104, 0.0526701882481575, -0.03776020184159279, -0.0022111334837973118, -0.026835035532712936, 0.019335929304361343, 0.000531186640728265, -0.003940706606954336, -0.011748598888516426, -0.014593848027288914, 0.006642590276896954, -0.006727138999849558, 0.004113479983061552, 0.01688033901154995, 0.010175256989896297, 0.04367126151919365, -0.040024638175964355, -0.0011726542143151164, -0.01012379303574562, -0.010175256989896297, -0.012594086118042469, -0.011270714923739433, -0.005760342348366976, 0.03799546882510185, 0.0030088324565440416, -0.014924691058695316, -0.04199499264359474, 0.0028526009991765022, 0.00684844795614481, -0.028614234179258347, 0.022247346118092537, -0.02368835173547268, -0.013601318933069706, -0.022879624739289284, 0.004789869766682386, 0.03493700921535492, -0.0029886141419410706, 0.009263601154088974, -0.009660612791776657, 0.0017185450997203588, 0.013336644507944584, -0.03226085752248764, 0.009484163485467434, -0.005738286301493645, 0.003170577809214592, -0.020747525617480278, -0.006602153647691011, -0.009631204418838024, 0.014240948483347893, -0.013116083107888699, 0.019203592091798782, 0.021688589826226234, -0.026011602953076363, 0.04102452099323273, 0.045788656920194626, -0.003778961021453142, 0.018409568816423416, 0.006550689227879047, 0.02618805319070816, 0.037936653941869736, -0.016159838065505028, 0.012844056822359562, 0.0036705180536955595, 0.006969756912440062, 0.007771132048219442, 0.014527679421007633, 0.00902098324149847, -0.013211660087108612, 0.01804196648299694, 0.04867066815495491, -0.0018518011784180999, -0.00946945883333683, -0.0020034376066178083, 0.003973790910094976, -0.0068962364457547665, 0.0029279596637934446, -0.010476691648364067, 0.005223641637712717, 0.025967491790652275, -0.018835989758372307, 0.005043516401201487, -0.0008941948181018233, -0.011447164230048656, -0.0016339962603524327, 0.010579620487987995, -0.010947223752737045, 0.013645431958138943, -0.06522751599550247, -0.014858522452414036, -0.0038230735808610916, -0.028055477887392044, 0.006870504003018141, -0.025849858298897743, 0.011410403996706009, 0.005580217111855745, 0.023173706606030464, 0.005848567001521587, 0.008278424851596355, 0.007127826567739248, 0.024217700585722923, 0.01264555100351572, 0.003359893336892128, -0.002617334946990013, 0.01774788275361061, 0.004797222092747688, 0.011410403996706009, -0.00699181342497468, -0.01643921621143818, 0.031466834247112274, 0.03702499717473984, -0.007888765074312687, -0.0045876880176365376, 0.030114056542515755, -0.010153200477361679, -0.003141169436275959, -0.007462345529347658, -0.009293009527027607, 0.012241187505424023, -0.008748956955969334, 0.014711480587720871, -0.007932877168059349, -0.006789631675928831, 0.01057226862758398, -0.004837658256292343, -0.015174660831689835, 0.00902098324149847, 0.02529110200703144, 0.013939513824880123, -0.0006704163970425725, -0.02339426800608635, -0.03176091983914375, 0.001961163245141506, -0.004664884880185127, 0.0013252096250653267, -0.032466717064380646, 0.0332019217312336, 0.009962047450244427, 0.016630370169878006, -0.016395103186368942, -0.01234411634504795, -0.01804196648299694, 0.015556967817246914, -0.004385506268590689, 0.0005252130795270205, 0.0008684626081958413, 0.01138834748417139, 0.001928078942000866, 0.04793545976281166, 0.014498271048069, 0.008873941376805305, -0.0039958469569683075, -0.00873425230383873, -0.012233834713697433, -0.0025768985506147146, 0.012336764484643936, 0.010484043508768082, 0.006572745740413666, -0.004944263491779566, 0.005558160599321127, 0.008521042764186859, 0.014476214535534382, 0.03861304372549057, -0.008021102286875248, 0.01012379303574562, -0.00010786856728373095, -0.00042573048267513514, -0.007480725646018982, -0.0059404680505394936, 0.001988733420148492, 0.035289909690618515, -0.0002655933203641325, 0.013233715668320656, -0.015292294323444366, -0.013307236135005951, -0.003804693231359124, -0.026246869936585426, 0.0015669086715206504, 0.0005049949395470321, 0.02382068894803524, 0.01923300139605999, 0.00269820773974061, 0.002964719897136092, 0.012689663097262383, -0.0034113579895347357, -0.012888168916106224, 0.005841215141117573, -0.011454516090452671, 0.00351244886405766, -0.010212017223238945, 0.0023857448250055313, -0.009094503708183765, -0.010189961642026901, 0.0166009608656168, 0.022379683330655098, 0.030878670513629913, -0.01264555100351572, -0.018983030691742897, -0.013836584985256195, 0.018968326970934868, -0.025055835023522377, -0.012498509138822556, -0.006263958755880594, -0.009675316512584686, 0.00016094128659460694, -0.008690140210092068, 0.02039462700486183, 0.024452965706586838, -0.0022019431926310062, 0.02912887930870056, 0.007164586801081896, -0.03176091983914375, -0.020203473046422005, -0.0002311305288458243, -0.02690855599939823, -0.011006040498614311, -0.021203354001045227, -0.0014217054704204202, -0.015865754336118698, -0.006403648294508457, 0.003973790910094976, -0.007091066334396601, 0.007256487384438515, 0.012719071470201015, -0.0012140095932409167, -0.007697611581534147, 0.027643762528896332, -0.03490760177373886, -0.005190557334572077, 0.018983030691742897, 0.0016146971611306071, -0.006749195046722889, -0.015034971758723259, 0.0016257251845672727, -0.005094980821013451, -0.0022864919155836105, 0.0042090569622814655, -0.012175018899142742, -0.02218853123486042, -0.007499105762690306, 0.01965942047536373, 0.05087628588080406, -0.0188065804541111, -0.052758414298295975, -0.0019188887672498822, 0.0016744326567277312, -0.005436851643025875, -0.00013877022138331085, -0.00999145582318306, -0.006550689227879047, -0.005275106057524681, -0.007690259255468845, 0.017689067870378494, -0.004804573953151703, -0.014593848027288914, -0.012005921453237534, -0.027423201128840446, -0.018762467429041862, 0.01923300139605999, 0.0017681714380159974, -0.01955649070441723, -0.012329411692917347, 0.006161029916256666, -0.020909270271658897, 0.001885804464109242, -0.0068962364457547665, 0.011131025850772858, -0.02187974378466606, -0.029231807217001915, -0.0013343996834009886, 0.00015519748558290303, 0.01629217527806759, 0.0056243292056024075, 0.014887930825352669, -0.012189722619950771, 0.009763541631400585, -0.028217222541570663, -0.005341274663805962, 0.018438978120684624, -0.021806223317980766, -0.028378969058394432, -0.0006033288082107902, -0.005440527573227882, 0.004065691493451595, -0.005547132808715105, 0.0013858641032129526, -0.015792233869433403, 0.014079202897846699, -0.0036962502636015415, -0.006969756912440062, -0.005951496306806803, 0.03211381658911705, -0.0173361673951149, -0.010064976289868355, -0.016233358532190323, 0.04275960475206375, 0.027040893211960793, -0.026276277378201485, 0.0034683363046497107, -0.001440085587091744, 0.006620533764362335, 0.002639391226693988, 0.015498152002692223, -0.025364622473716736, 0.00021079747239127755, -0.007124150637537241, -0.0022938440088182688, 0.009417994879186153, 0.016674481332302094, -0.007925525307655334, 0.0060213408432900906, -0.025364622473716736, -0.0015448525082319975, 0.0015034971293061972, 0.005094980821013451, -0.03846600279211998, -0.021188650280237198, 0.0181743036955595, -0.01192504819482565, -0.002275463892146945, -0.010079680010676384, 0.0004296362749300897, -0.026232166215777397, -0.005469935946166515, 0.03093748725950718, -0.037671979516744614, 0.018144894391298294, -0.0217474065721035, -0.032466717064380646, -0.013990978710353374, 0.0035400190390646458, 0.010991335846483707, 0.03305488079786301, -0.011638318188488483, -0.03076103702187538, -0.0023030340671539307, -0.007307951804250479, -0.005451555829495192, 0.013263124041259289, -0.018586019054055214, -0.01360867079347372, 0.016689186915755272, 0.0017121119890362024, 0.006440408527851105, 0.03773079439997673, -0.011682430282235146, 0.007976990193128586, -0.028952429071068764, -0.021967967972159386, -0.000531646132003516, 0.02915828675031662, -0.027305567637085915, 0.02646743133664131, 6.163097714306787e-05, 0.01657155342400074, 0.018424272537231445, 0.011711838655173779, 0.00828577671200037, -0.01951237954199314, 0.002310386160388589, -0.023894209414720535, -0.011697134003043175, 0.009351826272904873, -0.01851249858736992, 0.019600603729486465, 0.0014768459368497133, -0.0017360062338411808, 0.009528275579214096, -0.03214322403073311, -0.01671859435737133, 0.00014520327385980636, -0.00012096443242626265, 0.01125601027160883, 0.008307833224534988, 0.016777411103248596, -0.013652783818542957, 0.016895044595003128, 0.002617334946990013, 0.03358422964811325, 0.010645789094269276, -0.009785598143935204, -0.0006336560472846031, 0.013741008006036282, -0.01640980690717697, 0.018865397199988365, -0.022761991247534752, 0.02798195742070675, -0.013388109393417835, 0.006330127362161875, 0.0012094145640730858, -0.01640980690717697, -0.04472995921969414, -0.011697134003043175, -0.0002651338290888816, 0.027349678799510002, 0.023747168481349945, 0.0009134939755313098, -0.0005647304351441562, 0.01421154011040926, 0.023791279643774033, -0.027717282995581627, -0.005947819910943508, 0.017997853457927704, 0.025349918752908707, 0.017821403220295906, 0.025496959686279297, -0.006609505973756313, -0.01465266477316618, 0.0024059631396085024, 0.017997853457927704, 0.017380280420184135, 0.003063972806558013, 0.0026577713433653116, -0.020953383296728134, -0.01629217527806759, 0.01686563529074192, 0.0013509418349713087, -0.01374836079776287, -0.008557802997529507, 0.01642451249063015, -0.00691461656242609, 0.009601796045899391, -0.012748479843139648, 0.0007205022848211229, 0.012094145640730858, -0.007660850882530212, 0.00695872912183404, -0.007962285540997982, 0.009763541631400585, 0.035760439932346344, -0.010770774446427822, -0.006620533764362335, -0.008447522297501564, 0.005752990487962961, -0.012785240076482296, 0.0337606780230999, 0.016012797132134438, -0.02014465630054474, 0.006830067839473486, -0.008565154857933521, -0.002497863955795765, -0.01965942047536373, -0.010947223752737045, 0.033231332898139954, -0.011101617477834225, 0.0061647058464586735, -0.03423121199011803, -0.032202042639255524, -0.021556252613663673, -0.01234411634504795, 0.022379683330655098, 0.03699558973312378, -0.020174065604805946, 0.011947104707360268, 0.030290504917502403, -0.04170091077685356, 0.022894328460097313, 0.010116440244019032, -0.0023489845916628838, 0.014637960121035576, 0.008094622753560543, -0.00258792657405138, 0.003856157884001732, -0.0024353712797164917, -0.004470054991543293, 0.028526009991765022, -0.002014465630054474, 0.021276874467730522, 0.009660612791776657, -0.0027698902413249016, -0.04361244663596153, -0.01451297476887703, 0.001401487272232771, -0.012094145640730858, -0.0052456981502473354, 0.0074586691334843636, -0.014321821741759777, -0.010910463519394398, -0.013520446605980396, 0.0011000526137650013, 0.0024868356995284557, 0.016983268782496452, 0.025129355490207672, -0.01965942047536373, -0.02690855599939823, -0.00628969119861722, -0.029967013746500015, -0.022159121930599213, -0.028364265337586403, 0.008146087639033794, -0.0037863131146878004, 0.020762229338288307, -0.015645192936062813, 0.01546874362975359, 0.023320747539401054, -0.015880459919571877, -0.006260282825678587, -0.0217474065721035, -0.007969637401401997, -0.002207457320764661, 0.0023839068599045277, -0.004760461859405041, -0.02057107537984848, -0.005341274663805962, 0.010836943052709103, 0.018983030691742897, 0.014726185239851475, -0.017115605995059013, -0.006278662942349911, -0.0007246378227137029, 0.029570002108812332, -0.011851527728140354, -0.015218772925436497, 0.014887930825352669, 0.00785200484097004, -0.00521996570751071, -0.0017406012630090117, -0.01352779846638441, -0.004506815690547228, 0.023482494056224823, 0.0030694869346916676, -0.000921305560041219, 0.027761396020650864, -0.01464531198143959, 0.0007448560209013522, -0.009373881854116917, -0.0057787224650382996, -0.02470293641090393, -0.024055954068899155, -0.024173587560653687, -0.006528633181005716, -0.008418113924562931, 0.008293128572404385, -0.011851527728140354, 0.007940229959785938, -0.004227437078952789, 0.023056073114275932, 0.022247346118092537, 0.00373668665997684, -0.02796725369989872, -0.0007172857876867056, -0.0040987757965922356, -0.009609147906303406, 0.020821046084165573, 0.026996780186891556, 0.00314484559930861, -0.00702489772811532, 0.015527560375630856, 0.030702220275998116, -0.005951496306806803, 0.0018609913531690836, 0.005752990487962961, -0.003415033919736743, 0.015115844085812569, -0.004984699655324221, -0.014983506873250008, -0.02011524885892868, -0.02455589547753334, 0.01162361353635788, -0.004874418489634991, -0.0009010874200612307, 0.015204069204628468, 0.013020506128668785, -0.006793307606130838, -0.007039601448923349, 0.010307594202458858, 0.02410006709396839, -0.025996899232268333, -0.0006800659466534853, -0.004069367423653603, -0.0057787224650382996, 0.015130548737943172, 0.026232166215777397, -0.00539641547948122, 0.002128422725945711, -0.00026237679412588477, -0.014336525462567806, 0.01674800179898739, -0.013167547062039375, 0.0027901085559278727, 0.013101378455758095, 0.019335929304361343, -0.007778483908623457, -0.029790565371513367, -0.02365894243121147, -0.001713950070552528, 0.00858721137046814, 9.276237688027322e-05, 0.0035142868291586637, -0.014380637556314468, -0.021512139588594437, 0.010881055146455765, -0.0035234768874943256, -0.01836545765399933, 0.0024611034896224737, 0.018762467429041862, 0.01865953952074051, -0.001486954977735877, 0.004775166045874357, -0.014968803152441978, 0.010969280265271664, 0.022820807993412018, -0.019924094900488853, -0.0029206075705587864, 0.011917696334421635, -0.0008220527088269591, -0.020174065604805946, -0.002073282143101096, 0.01582164317369461, -0.03405476361513138, -0.001966677140444517, 0.008418113924562931, -0.00880042091012001, -0.006025016773492098, 0.0069771092385053635, -0.0010678874095901847, -0.026099829003214836, -0.04034813120961189, 0.005455231759697199, -0.010675197467207909, 0.00421640882268548, -0.008440169505774975, 0.027040893211960793, 0.002861791057512164, -0.019762348383665085, 0.005069248378276825, -0.01057226862758398, -0.006013988517224789, -0.020629892125725746, -0.008763660676777363, -0.01882128417491913, -0.013270475901663303, 0.012586734257638454, 0.07987282425165176, -0.009932639077305794, 0.00395908672362566, 0.01642451249063015, -0.007579978555440903, 0.0012397418031468987, -0.005980904214084148, 0.018865397199988365, 0.0055434564128518105, 0.003771608928218484, 0.006234550382941961, -0.019056551158428192, 0.01629217527806759, -0.0017883896362036467, -0.006370563991367817, 0.01147657260298729, 0.008138734847307205, 0.015174660831689835, 0.004606068134307861, 0.024761753156781197, 0.01613042876124382, 0.015865754336118698, -0.03799546882510185, 0.004977347794920206, 0.00031430076342076063, -0.0022295136004686356, 0.01673329807817936, 0.016498032957315445, 0.004470054991543293, 0.003642947878688574, -0.002768052276223898, 0.008741604164242744, -0.016380399465560913, 0.00018644376541487873, 0.0028140025679022074, 0.022909032180905342, -0.011917696334421635, 0.017262646928429604, 0.007874061353504658, 0.012189722619950771, -0.01626276597380638, 0.0006286015268415213, 0.015409926883876324, 0.00990323070436716, 0.005003079771995544, 0.004767813719809055, 0.01833604834973812, -0.0013729979982599616, 0.0034370901994407177, -0.014307117089629173, -0.022423796355724335, 0.002352660521864891, -0.001010908861644566, 0.026614472270011902, -0.008447522297501564, -0.016336286440491676, -0.001692812773399055, -0.02026228979229927, 0.004447998944669962, 0.007837300188839436, 0.011233954690396786, -0.017380280420184135, -0.026290982961654663, -0.035289909690618515, 0.012432340532541275, -0.024320628494024277, 0.004172296728938818, 0.004278901498764753, -0.001988733420148492, 0.00747337331995368, -0.012248539365828037, 0.025394029915332794, 0.002365526743233204, -0.008359297178685665, 0.004958967212587595, 0.017821403220295906, -0.0013904591323807836, -0.0022975201718509197, 0.002284653950482607, 3.4089454857166857e-05, -0.017042085528373718, -0.014314468950033188, -0.0015623136423528194, -0.023261932656168938, -0.0019244028953835368, -0.007179290987551212, 0.008418113924562931, -0.017071492969989777, 0.007410881109535694, -0.010638437233865261, -0.015071731992065907, -0.0033268090337514877, -0.011101617477834225, 0.031731508672237396, 0.008910701610147953, -0.005514048505574465, -0.017233239486813545, -0.016924452036619186, 0.02148273214697838, 0.007991693913936615, -0.011123673059046268, 0.008940109983086586, 0.01199121680110693, 0.01560108084231615, -0.0017304921057075262, 0.003093381179496646, -0.003315781010314822, 0.008704843930900097, -0.0024390474427491426, -0.003299238858744502, -0.00010626030416460708, 0.005536104552447796, -0.001379431108944118, -0.01730675995349884, -0.030966894701123238, 0.03326074033975601, -0.003907622303813696, -0.00424949312582612, -0.014013034291565418, 0.0005840295925736427, -0.0004824792267754674, -0.004190676845610142, -0.004786193836480379, -0.007579978555440903, 0.0029665580950677395, 0.007925525307655334, -0.012336764484643936, -0.007947581820189953, 0.005440527573227882, -0.0037679329980164766, -0.0062455786392092705, 0.009792950004339218, 0.00517585314810276, 0.00282686878927052, -0.01699797250330448, -0.0047788419760763645, -0.0027662143111228943, -0.014160076156258583, 0.018115486949682236, -0.013718952424824238, -0.004109804052859545, 0.011829471215605736, 0.006638914346694946, -0.0031760919373482466, -0.003981142770498991, -0.00969002116471529, -0.012152962386608124, -0.007910821586847305, 0.008976870216429234, 0.006315423175692558, 0.02473234385251999, -0.021056313067674637, 0.021497435867786407, -0.006660970393568277, 0.009462106972932816, -0.007557922042906284, -0.018012557178735733, 0.0004921288345940411, 0.0017075169598683715, -0.005389063153415918, 0.02129157818853855, -0.0015659896889701486, -0.02529110200703144, -0.008513690903782845, -0.005984580609947443, -0.01658625714480877, 0.014571791514754295, 0.004503139294683933, 0.0063264514319598675, 0.012130905874073505, -0.007296924013644457, 0.013726304285228252, 0.023923616856336594, -0.0167038906365633, 0.012402933090925217, 0.003731172764673829, 0.0011257848236709833, 0.005271430127322674, -0.017130309715867043, 0.02236497960984707, 0.03270198404788971, -0.0055949208326637745, 0.013101378455758095, -0.004572983831167221, 0.009226840920746326, -0.010153200477361679, 0.018468385562300682, -0.00621249433606863, 0.019277112558484077, 0.025070538744330406, -0.016145134344697, 0.030555179342627525, -0.005639033392071724, -0.007976990193128586, 0.0029794240836054087, 0.017277350649237633, -0.0017065979773178697, 0.009969399310648441, 0.010212017223238945, -0.0006993651040829718, 0.004760461859405041, 0.011895639821887016, -0.005418471526354551, 0.0029849382117390633, 0.012197074480354786, -0.0013849451206624508, -0.013645431958138943, -0.014013034291565418, 0.028334856033325195, 0.007032249588519335, -0.05134681612253189, -0.013446926139295101, 0.0035620753187686205, -0.0052677541971206665, -0.017262646928429604, 0.00340216769836843, 0.0034003297332674265, 0.031025711447000504, 0.03326074033975601, 0.013307236135005951, 0.01154274120926857, 0.007543217856436968, -0.0007384229684248567, -0.012476453557610512, -0.0008592725498601794, 0.006701406557112932, 0.027614353224635124, 0.020321106538176537, 0.026305686682462692, -0.005819159094244242, 0.03764256834983826, -0.01116043422371149, -0.029511187225580215, -0.026717402040958405, 0.013579263351857662, 0.0097708934918046, 0.027614353224635124, 0.004113479983061552, 0.007903468795120716, -0.013292532414197922, -0.02218853123486042, 0.00502881221473217, -0.0016891368431970477, -0.01324842032045126, -0.0006736328941769898, 0.0074880775064229965, -0.004231113009154797, -0.009675316512584686, -0.005892679560929537, -2.58183827099856e-05, 0.015057028271257877, 0.008579859510064125, -0.0036741942167282104, 0.02261495031416416, -7.530122093157843e-05, 0.0008344593225046992, 0.00021860904234927148, -0.003102571237832308, -0.00569785013794899, -0.021262170746922493, 0.0038671859074383974, 0.013366052880883217, -0.013123434968292713, -0.010623733513057232, 0.017674362286925316, 0.013807176612317562, -0.01629217527806759, 0.018100783228874207, -0.006910940632224083, 0.008278424851596355, 0.0040179030038416386, -0.007480725646018982, 0.017953740432858467, 0.014160076156258583, 0.002150478772819042, 0.012050033546984196, 0.011432460509240627, 0.00614632572978735, 0.017983149737119675, 0.01168978214263916, 0.012270595878362656, 0.018291935324668884, -0.0037183065433055162, -0.029819972813129425, 0.006679350510239601, -0.028011364862322807, -0.012888168916106224, 0.007976990193128586, -0.004462703131139278, -0.00799904577434063, 0.014990859664976597, -0.003745876718312502, 0.01264555100351572, 0.019953502342104912, 0.004977347794920206, 0.008079919032752514, 0.014821762219071388, 0.012226482853293419, 0.034848786890506744, 0.00040941807674244046, -0.03343718871474266, 0.011704486794769764, -0.006554365623742342, -0.018983030691742897, 0.01848308928310871, -0.003508772701025009, 0.01510114036500454, -0.014115964062511921, 0.0007462345529347658, 0.0065102530643343925, 0.006219846662133932, -0.0014024062547832727, -0.01729205623269081, 0.007756427861750126, -0.025541070848703384, -0.007307951804250479, 0.005804454907774925, 0.01428506150841713, 0.0012884492753073573, -0.0027533480897545815, -0.003501420607790351, 0.013116083107888699, 0.009851766750216484, 0.01951237954199314, 0.004069367423653603, 0.017527321353554726, 0.024026546627283096, -0.0022570837754756212, 0.005605949088931084, -0.012741127982735634, 0.012072090059518814, 0.0036907363682985306, -0.023482494056224823, -0.006330127362161875, -0.015306998044252396, 0.004800898022949696, 0.009792950004339218, -0.011278066784143448, 0.01072666235268116, -0.00491853104904294, -0.022012080997228622, -0.008851885795593262, -0.004639152437448502, -0.015733417123556137, -0.0069771092385053635, 0.02279140055179596, 0.013366052880883217, -0.01760084182024002, 0.020335810258984566, -0.0010439931647852063, 0.001499821082688868, -0.012167667038738728, 0.013939513824880123, -0.0003740362881217152, -0.02632039040327072, -0.0011340558994561434, 0.002801136579364538, 0.0016946508549153805, -0.02351190149784088, 0.014138019643723965, 0.0047788419760763645, 0.020468147471547127, 0.003578617237508297, -0.015924571081995964, 0.026114532724022865, 0.004198028706014156, -0.014329173602163792, 0.007065333891659975, -0.030143463984131813, 0.015630489215254784, 0.00581180676817894, -0.016042204573750496, 0.011278066784143448, -0.009815005585551262, -0.015748122707009315, 0.007510134018957615, -0.0008597320411354303, 0.003885566024109721, -0.01510114036500454, 0.016056908294558525, 0.03314310684800148, -0.012454397045075893, -0.005014108028262854, 0.00895481463521719, -0.00680433539673686, 0.013086674734950066, 0.014571791514754295, 0.003510610666126013, 0.006098537240177393, 0.004896475002169609, 0.00469429325312376, 0.008763660676777363, 0.0046759131364524364, -0.010256130248308182, -0.003852481720969081, -0.011836824007332325, -0.009248897433280945, 0.011748598888516426, -0.00015014293603599072, -0.012711719609797001, 0.0017341681523248553, 0.0051060086116194725, -0.0061941142193973064, 0.014248301275074482, 0.0007517485646530986, -0.030290504917502403, 0.018556609749794006, 0.02824663184583187, 0.017836108803749084, -0.0167038906365633, 0.01923300139605999, 0.008440169505774975, -0.007017545402050018, -0.010403171181678772, 0.011123673059046268, -0.01561578456312418, 0.011219250038266182, -0.02014465630054474, 0.002609982853755355, 0.028305448591709137, 0.0016817847499623895, 0.007021221332252026, 0.01598338782787323, -0.02559988759458065, 0.009373881854116917, 0.03784842789173126, 0.027879027649760246, -0.002014465630054474, -0.008124031126499176, 0.0009236030746251345, -0.0017369252163916826, -0.020747525617480278, 0.027599649503827095, -0.006602153647691011, -0.011314827017486095, -0.01777729205787182, 0.009337121620774269, -0.02484997734427452, -0.004062015563249588, 0.026864442974328995, -0.02339426800608635, 0.006124269682914019, 0.0004976428463123739, 0.0010651303455233574, 0.013888049870729446, 0.009660612791776657, -0.0037036023568361998, 0.01494674663990736, -0.010447283275425434, 0.01080753467977047, 0.0030602968763560057, 0.007065333891659975, -0.012924929149448872, 0.01079283095896244, -0.00849898625165224, 0.012219130992889404, -0.0027404821012169123, 0.010535508394241333, 0.013476334512233734, -0.025644000619649887, -0.00028259496320970356, 0.002916931640356779, 0.00849898625165224, 0.02486468106508255, 0.00525305001065135, 0.006767575163394213, 0.006988137029111385, 0.01079283095896244, -0.004532547667622566, 0.009212136268615723, 0.005841215141117573, -0.004547251854091883, 0.02783491648733616, -0.006760223302990198, -0.025349918752908707, 0.01758613809943199, 0.00435977429151535, -0.0010697253746911883, 0.0011028096778318286, -0.003933354280889034, -0.015057028271257877, -0.017880219966173172, -0.011770655401051044, -0.01043993141502142, 0.02143861912190914, 0.013336644507944584, -0.02961411513388157, 0.01848308928310871, 0.008962166495621204, 0.008028454147279263, 0.0019115367904305458, 0.016468623653054237, 0.009910582564771175, -0.004653856623917818, 0.007227079477161169, 0.012549974024295807, -0.014917338266968727, 0.04249493405222893, -0.006572745740413666, -0.011594205163419247, 0.022012080997228622, -0.0030161843169480562, -0.004073043819516897, -0.008484282530844212, 0.00023193465312942863, -0.0056206532754004, -0.005128065124154091, -0.006852123886346817, 0.015806937590241432, 0.0013022343628108501, 0.009741485118865967, -0.012520565651357174, 0.008109327405691147, 0.026438023895025253, 0.0073557402938604355, 0.02087986283004284, 0.003775285091251135, 0.007638794835656881, 0.019497673958539963, 0.0064293802715837955, -0.0011358939809724689, -0.009454755112528801, 0.0027864323928952217, 0.020644597709178925, 0.004525195807218552, 0.0034297381062060595, 0.007646147161722183, 0.0022295136004686356, -0.006477168761193752, 0.0014621417503803968, -0.013189603574573994, 0.03134920075535774, 0.011189841665327549, -0.00953562743961811, 0.012572030536830425, 0.010616380721330643, 0.019732940942049026, 0.0032716686837375164, 0.009778245352208614, -0.023276636376976967, -0.017733179032802582, 0.0012112526455894113, 0.018012557178735733, -0.0008211336680687964, -0.024894090369343758, -0.016806818544864655, 0.0013095864560455084, -0.004811926279217005, 0.008550451137125492, 0.006811687722802162, -0.00806521438062191, 0.010344354435801506, 0.027158526703715324, 0.020600484684109688, 0.0040987757965922356, -0.0232178196310997, 0.010447283275425434, -0.002312224358320236, 0.007587330415844917, 0.013704247772693634, 0.011983864940702915, -0.018747763708233833, -0.0011937915114685893, 0.003804693231359124, -0.03031991422176361, 0.007719667628407478, 0.0012186046224087477, 0.004227437078952789, -0.01939474605023861, 0.00699181342497468, -0.0046759131364524364, 0.02173270285129547, 0.007638794835656881, -0.004845010582357645, -0.003907622303813696, 0.004576660227030516, 0.007157234475016594, -0.005896355491131544, 0.01132217887789011, 0.0006975271389819682, -9.787435556063429e-05, -0.017071492969989777, -0.04081866145133972, 0.002968396060168743, -0.00791817344725132, 0.009197432547807693, 0.0036999264266341925, -0.005275106057524681, 0.00699181342497468, -0.011822119355201721, 0.0087195485830307, 0.0033745975233614445, 0.006028692703694105, -0.014740888960659504, 0.005289810243993998, -0.007690259255468845, -0.001641348353587091, -0.009109207428991795, -0.008851885795593262, -0.015439335256814957, -0.004569307900965214, 0.02354131080210209, -0.0010035567684099078, -0.0013123435201123357, 0.018571315333247185, 0.0024794836062937975, -0.009300361387431622, -0.02884950116276741, 0.011358939111232758, -0.002819516696035862, 0.0004902908112853765, 0.01382923312485218, 0.01729205623269081, -0.01926240883767605, -0.010366410948336124, -0.008021102286875248, 0.01560108084231615, -0.02558518387377262, 0.019924094900488853, 0.03920120745897293, -0.007668203208595514, 0.009131263941526413, 0.015262885950505733, -0.015880459919571877, -0.009447402320802212, 0.0005601354059763253, -0.009859118610620499, 0.0152334775775671, 0.01643921621143818, -0.018291935324668884, 0.003109923331066966, -0.012777888216078281, 0.036025114357471466, -0.019718237221240997, 0.0167038906365633, -0.013799824751913548, -0.032643165439367294, 0.0014832790475338697, -0.02398243360221386, -0.007734371814876795, 0.016821524128317833, 0.004062015563249588, 0.00016542144294362515, -0.013814529404044151, 0.0033837875816971064, -0.011829471215605736, 0.011572149582207203, -0.029084766283631325, -0.008940109983086586, -0.013211660087108612, -0.010756069794297218, 0.011961808428168297, -0.004716349299997091, 0.008726900443434715, -0.0007012031273916364, -0.0038157214876264334, -0.0014887930592522025, 0.0026246870402246714, 0.0003643866803031415, 0.0005702445050701499, -0.012417636811733246, -0.030731629580259323, 0.005628005135804415, 0.02351190149784088, -0.008646028116345406, -0.025982195511460304, 0.032466717064380646, 0.007881413213908672, -0.0018692624289542437, -0.012623494490981102, -0.008969518356025219, 0.004499463364481926, -0.021791519597172737, 0.025658704340457916, 0.003918650094419718, -0.00946945883333683, -0.028511306270956993, -0.017527321353554726, -0.014321821741759777, -0.028231928125023842, -0.00395908672362566, 0.00038621312705799937, -0.013821881264448166, -0.01538051851093769, -1.5852889191592112e-05, -0.008021102286875248, 0.010763422586023808, -0.004459027200937271, -0.011954456567764282, 0.019777053967118263, -0.014792353846132755, -0.01110896933823824, 0.016498032957315445, 0.009138615801930428, -0.0002048239257419482, 0.012969041243195534, -0.016836227849125862, 0.0018738574581220746, -0.006756547372788191, -0.0033065909519791603, -0.03420180454850197, -0.014527679421007633, 0.006201466545462608, -0.003955410793423653, 0.018100783228874207, -0.03179032728075981, 0.005047192331403494, 0.002292006043717265, -0.0018665053648874164, -0.015351110137999058, 0.01443210244178772, 0.006980785168707371, 0.009072447195649147, 0.013226363807916641, 0.004028931260108948, -0.017865516245365143, 0.006899912375956774, 0.006168382242321968, -0.010248777456581593, -0.015351110137999058, 0.015454038977622986, 0.007727019488811493, -0.00197954336181283, 0.00458401208743453, 0.004650180693715811, 0.0026044687256217003, 0.017218533903360367, 0.005128065124154091, -0.005275106057524681, 0.008535746484994888, 0.0224826131016016, -0.014557087793946266, -0.0003595619054976851, 0.021335691213607788, 0.005752990487962961, -0.014549735002219677, 0.02427651733160019, -0.004672236740589142, 0.0014759269542992115, 0.005907383747398853, -0.001306829391978681, -0.009888526983559132, 0.01162361353635788, -0.024600006639957428, 0.02514406107366085, -0.0008528394973836839, -0.0074072047136723995, 0.005168501287698746, 0.003141169436275959, 0.004440647084265947, -0.01324106752872467, -0.011483924463391304, 0.020600484684109688, 0.0036778701469302177, -0.0019777053967118263, -0.002995966235175729, -0.005635357461869717, 0.001229632762260735, 0.009344473481178284, -0.0023894209880381823, 0.03520168364048004, -0.0068962364457547665, -0.01272642333060503, 0.016983268782496452, -0.010476691648364067, 0.0024041251745074987, 0.02499701827764511, 0.011483924463391304, 0.0020935002248734236, 0.025938082486391068, 0.004142888356000185, 0.002749672159552574, 0.006433056201785803, -0.00828577671200037, 0.03149624541401863, -0.010638437233865261, -0.004936911165714264, 0.002398611046373844, -0.016336286440491676, 0.02576163411140442, 0.004367126151919365, 0.021409211680293083, -0.029849382117390633, -0.004815602209419012, -0.01102809701114893, -0.017880219966173172, 0.02173270285129547, 0.01139570027589798, 0.0181743036955595, -0.011292770504951477, 0.014138019643723965, -0.002880171174183488, -0.005668441765010357, -0.003705440554767847, 0.005120712798088789, 0.00046823458978906274, -0.002977586118504405, 0.0007384229684248567, -0.02709970995783806, -0.0023857448250055313, 0.008646028116345406, -0.011866232380270958, 0.001134974998421967, -0.012395580299198627, -0.0113295316696167, 0.02143861912190914, -0.008513690903782845, -0.007499105762690306, 0.0026743134949356318, 0.006172058172523975, 0.0003788610629271716, 0.008087270893156528, -0.016042204573750496, 0.010881055146455765, 0.022732583805918694, 0.003907622303813696, -0.015586376190185547, -0.016468623653054237, -0.024923497810959816, 0.014240948483347893, -0.0069477008655667305, 0.013557206839323044, 0.027570242062211037, 0.018380161374807358, -0.027437904849648476, 0.010498748160898685, 0.003937030676752329, -0.005900031886994839, -0.0008487039594911039, 0.010101736523211002, 0.007201347034424543, -0.005017783958464861, -0.025996899232268333, 0.018262527883052826, 0.01199121680110693, -0.016101021319627762, -0.004462703131139278, -0.008403409272432327, -0.001327966689132154, -0.004124508239328861, 0.0033672454301267862, -0.012564677745103836, -0.005521400365978479, -0.010594325140118599, -0.010998688638210297, 0.0009465782786719501, 0.007278543896973133, 0.018718356266617775, -0.0030952191445976496, 0.010983983986079693, 0.002801136579364538, 0.019747644662857056, -0.015262885950505733, -0.0034462802577763796, -0.0181743036955595, 0.011829471215605736, -0.0053486269898712635, 0.019277112558484077, 0.013491038233041763, -0.004731053486466408, -0.00013831071555614471, -5.864420018042438e-05, 0.003093381179496646, 0.0130278579890728, -0.008403409272432327, -0.007741723675280809, -0.011006040498614311, -0.02071811817586422, -0.014167428016662598, -0.006197790149599314, -0.01717442274093628, -0.013366052880883217, -0.007124150637537241, 0.027276158332824707, -0.007499105762690306, -0.0050766002386808395, 0.002775404369458556, 0.0054625836201012135, 0.0022736259270459414, 0.00544420350342989, -0.014601199887692928, -0.005602273158729076, 0.022423796355724335, -0.00044962469837628305, -0.011778007261455059, -0.013520446605980396, -0.0038965940475463867, 0.025938082486391068, -0.0037863131146878004, 0.004073043819516897, -0.0014373286394402385, -0.001641348353587091, 0.017718475311994553, -0.012013273313641548, 0.012991097755730152, 0.0037642570678144693, 0.007624090649187565, -0.005304514430463314, -0.01199121680110693, -0.014387990348041058, -0.0029206075705587864, 0.00484133418649435, -0.0060507492162287235, -0.005355978850275278, -0.031613875180482864, 0.01391745824366808, -0.05593450739979744, 0.006499224808067083, 0.02561459317803383, 0.01012379303574562, -0.003830425441265106, -0.006635237950831652, 0.0011937915114685893, 0.002117394469678402, 0.006903588306158781, -0.003067648969590664, 0.002907741582021117, -0.01382923312485218, -0.014535031281411648, -0.02739379182457924, -0.012402933090925217, 0.0056243292056024075, 0.0017461152747273445, 0.021835630759596825, -0.012226482853293419, 0.0071609108708798885, -0.007212375290691853, 0.0011836823541671038, -0.00017851730808615685, -0.0020714441780000925, 0.012189722619950771, 0.007704963441938162, 0.019277112558484077, 0.0063264514319598675, -0.0017075169598683715, -0.008043158799409866, 0.009234192781150341, -0.014387990348041058, -0.012616142630577087, 0.0381719172000885, -0.010609028860926628, 0.005183205474168062, -0.005275106057524681, -0.008146087639033794, 0.0015522046014666557, 0.011358939111232758, -0.017703771591186523, -0.019865278154611588, 0.004271549638360739, 0.004400210455060005, -0.01745380088686943, 0.01818900741636753, 0.012307356111705303, -0.015204069204628468, -0.00314484559930861, 0.007348388433456421, -0.016233358532190323, -0.01802726276218891, -0.012888168916106224, 0.0077931880950927734, -0.005609625019133091, -0.005565512925386429, 0.02662917785346508, -0.01863013207912445, 0.006822715979069471, -0.016689186915755272, 0.005767694674432278, -0.008094622753560543, -0.012755831703543663, 0.00873425230383873, 0.012829352170228958, 0.032466717064380646, 0.009057743474841118, 0.026246869936585426, 0.020100543275475502, 0.029202399775385857, -0.019791757687926292, 0.005734610371291637, -0.020159360021352768, -0.0007627767045050859, 0.007734371814876795, -0.0009240625659003854, 0.014777649194002151, 0.011792710982263088, -0.01234411634504795, 0.011807415634393692, 0.001361969974823296, -0.005458907689899206, 0.005712553858757019, -0.006594801787286997, -0.012454397045075893, 0.001251688925549388, 0.013924810104072094, -0.003775285091251135, -0.021644476801156998, -0.0016431864351034164, 0.02383539266884327, 0.01162361353635788, -0.0011303798528388143, -0.0006575502338819206, 0.0028507630340754986, 0.019571196287870407, -0.002031007781624794, 0.01005762442946434, 0.008873941376805305, -0.028158405795693398, 0.0031724157743155956, -0.015483447350561619, -0.037348486483097076, 0.009910582564771175, -0.0017893086187541485, -0.0026246870402246714, -0.035466358065605164, 0.003852481720969081, -0.011219250038266182, 0.027467312291264534, 0.006870504003018141, 0.008984223008155823, 0.005745638161897659, 5.203883119975217e-05, 0.01479970570653677, -0.008778365328907967, -0.015262885950505733, -0.004753109533339739, -0.01804196648299694, 0.01052080374211073, 0.007102094125002623, -0.019630011171102524, 5.855804556631483e-05, -0.017277350649237633, -0.0025603563990443945, -0.0023159002885222435, 0.015351110137999058, -0.007113122381269932, -0.026305686682462692, 0.017247943207621574, -0.043994754552841187, 0.02426181174814701, 0.006080157123506069, 0.003343351185321808, 0.01910066418349743, 0.0005284296348690987, -0.0037936652079224586, 0.014902634546160698, 0.0015871268697082996, -0.00953562743961811, 0.006072805263102055, -0.006341155618429184, 0.022717878222465515, -0.003698088461533189, -0.02484997734427452, -0.013270475901663303, -0.010278185829520226, 0.029570002108812332, 0.003372759558260441, 0.0009778245585039258, -0.008374000899493694, 0.01595398038625717, 0.013932161964476109, 0.022526726126670837, -0.008785717189311981, 0.022967848926782608, -0.0011018906952813268, -0.014608551748096943, 0.0005169420037418604, 0.009395938366651535, -0.00625660689547658, 0.012549974024295807, -0.002532786224037409, 0.013174899853765965, -0.021365098655223846, 0.018424272537231445, 0.005006755702197552, 0.027776099741458893, -0.011292770504951477, -0.0052383458241820335, 0.009851766750216484, 0.01833604834973812, -0.0009842576691880822, -0.003778961021453142, 0.01718912646174431, -0.007932877168059349, 3.8311147363856435e-05, 0.016336286440491676, -0.00115703116171062, -0.030437545850872993, 0.007179290987551212, -0.012447045184671879, -0.010491396300494671, -0.019924094900488853, 0.016027500852942467, -0.0008730576373636723, -0.0034444420598447323, 0.01406449917703867, -0.0007278543780557811, 0.015586376190185547, 0.00035795362782664597, -0.0005284296348690987, 0.007230755407363176, 0.01940944977104664, -0.01005762442946434, 0.009491515345871449, -0.007432937156409025, -0.0038929181173443794, 0.02971704490482807, 0.025511663407087326, -0.013174899853765965, 0.011711838655173779, -0.021806223317980766, -0.01346162986010313, -0.016895044595003128, -0.018159599974751472, -0.021071016788482666, 0.01546874362975359, -0.0035234768874943256, 0.0047788419760763645, -0.013821881264448166, -0.012807296589016914, 0.005425823386758566, 0.015115844085812569, -0.008976870216429234, 0.00421640882268548, 0.016468623653054237, -0.01012379303574562, -0.01921829581260681, 0.012322059832513332, -0.00547728780657053, -0.0035234768874943256, 0.022012080997228622, 0.012079441919922829, 0.00528613431379199, 0.0024298573844134808, -0.013196955434978008, -0.0023232523817569017, 0.012535269372165203, 0.0035969975870102644, 0.015865754336118698, -0.0016854607965797186, -0.0056243292056024075, 0.009094503708183765, 0.009212136268615723, 0.004488435108214617, 0.018277231603860855, 0.015659896656870842, -0.0038965940475463867, 0.011211898177862167, -0.012027977034449577, 0.02207089774310589, 0.003771608928218484, -0.0027055596001446247, -0.00338562554679811, -0.01908595860004425, 0.010836943052709103, 0.00702489772811532, 0.003466498339548707, -0.01377776823937893, -0.018688946962356567, -0.005822835024446249, -0.013873345218598843, 0.040318720042705536, 0.006138973869383335, 0.002562194364145398, -0.022144418209791183, 0.011226601898670197, -0.0023857448250055313, 0.03702499717473984, -0.00024813218624331057, -0.00584489107131958, -0.006521281320601702, 0.007278543896973133, -0.005903707817196846, -0.02132098749279976, 0.013123434968292713, -0.001340832794085145, 0.002565870527178049, 0.003302915021777153, 0.0034738504327833652, 0.014615903608500957, 0.010983983986079693, -0.01789492554962635, -0.02618805319070816, -0.0032588024623692036, -0.01043993141502142, 0.0013114245375618339, 0.014101259410381317, -0.0001587586448295042, -0.015439335256814957, -0.005815483164042234, 0.011785359121859074, -0.018424272537231445, 0.009359178133308887, 0.010109088383615017, -0.0072491355240345, -0.005914735607802868, 0.01428506150841713, 0.005650061648339033, -0.02070341259241104, -0.0011193518294021487, 0.006201466545462608, -0.0029206075705587864, -0.017262646928429604, 0.005833863280713558, 0.009542979300022125, 0.005848567001521587, -0.02012995257973671, -0.0020677680149674416, 0.007624090649187565, -0.004006875213235617, 0.002275463892146945, -0.006205142475664616, 0.00750645762309432, -0.009351826272904873, -0.01926240883767605, -0.030290504917502403, -0.006227198522537947, 0.01451297476887703, -0.00528613431379199, 0.016968565061688423, 0.023144299164414406, 0.007668203208595514, -0.000998042756691575, 0.020923975855112076, 0.00528613431379199, -0.01502026803791523, -0.0008298642933368683, -0.0037330107297748327, 0.009645908139646053, -0.023320747539401054, -0.0039002702105790377, 0.016248062252998352, -0.0015567996306344867, -0.0053192186169326305, 0.0022607597056776285, 0.0009530113311484456, 0.008403409272432327, 0.0080725671723485, -0.001842611120082438, 0.011902992613613605, -0.012733775191009045, 0.01877717301249504, -0.0074880775064229965, 0.003126465482637286, 0.0031852819956839085, 0.004863390699028969, -0.01264555100351572, 0.00835194531828165, -0.001387702184729278, -0.029702339321374893, -0.0017571434145793319, -0.00699181342497468, 0.005639033392071724, -0.006719786673784256, 0.0044038863852620125, -0.018571315333247185, 0.025129355490207672, 0.013564558699727058, -0.017718475311994553, -0.003885566024109721, -0.003302915021777153, 0.0018490442307665944, -0.023320747539401054, 0.01598338782787323, 0.005528752226382494, 0.01965942047536373, -0.011873584240674973, -0.006109565496444702, -0.008771012537181377, 0.011851527728140354, -0.0020971763879060745, -0.012873465195298195, -0.0037293345667421818, 0.010101736523211002, -0.004929559305310249, -3.288325751782395e-05, 0.0017240591114386916, -0.016365695744752884, 0.011770655401051044, 0.015571672469377518, 0.00023894209880381823, 0.007954933680593967, -0.0074072047136723995, -0.00717193866148591, -0.0007030411507003009, -0.030525771901011467, -0.0002867305011022836, 0.028775980696082115, 0.0467885360121727, 0.028820091858506203, 0.01109426561743021, -0.003740362823009491, 0.0032330702524632215, -0.03878949210047722, -0.004337717778980732, -0.0028820091392844915, -0.011432460509240627, 0.02352660521864891, 0.0012792592169716954, -0.022291459143161774, 0.027114413678646088, 0.011513332836329937, -0.005833863280713558, 0.0018269879510626197, -0.0027570242527872324, 0.010667845606803894, -0.0008431898895651102, 0.007315304130315781, -0.008638675324618816, -0.015130548737943172, -0.018997734412550926, -7.403758354485035e-05, 0.008359297178685665, 0.01613042876124382, -0.0051574730314314365, 0.004988375585526228, 0.0096826683729887, 0.008675435557961464, 0.012895520776510239, -0.010491396300494671, -0.003676032181829214, 0.01125601027160883, 0.01848308928310871, 0.025482255965471268, 0.012072090059518814, 0.00424949312582612, -0.003778961021453142, -0.012939633801579475, -0.01910066418349743, -0.019571196287870407, -0.011211898177862167, 0.004080395679920912, 0.007704963441938162, 0.0009787435410544276, 0.0019832192920148373, 0.009726781398057938, -0.02959941141307354, -0.00043560980702750385, 0.01657155342400074, 0.0009249816066585481, -0.00888864602893591, -0.017365576699376106, -0.008491634391248226, -0.013145491480827332, 0.01746850460767746, -0.016248062252998352, -0.01301315426826477, -0.009395938366651535, 0.011116321198642254, 0.005885327700525522, 0.0029592060018330812, -0.007749076001346111, -0.010609028860926628, 0.006304395385086536, -0.009976751171052456, -0.002723939949646592, 0.021850334480404854, -0.0032036621123552322, 0.01434387732297182, -0.006201466545462608, -0.0024555895943194628, -0.010109088383615017, 0.0019427830120548606, 0.00680433539673686, -0.034437067806720734, 0.008506338112056255, -0.018086077645421028, -0.00932241789996624, 6.685783591819927e-05, -0.0021137185394763947, 0.015130548737943172, 0.007719667628407478, -0.0004788031801581383, 0.012601437978446484, 0.018571315333247185, 0.01301315426826477, 0.008109327405691147, -0.002126584528014064, -0.010895759798586369, 0.009212136268615723, -0.003321295138448477, 0.014174779877066612, 0.00932241789996624, -0.019203592091798782, -0.027879027649760246, 0.0005091304774396122, 0.001567827770486474, 0.012395580299198627, -0.013586615212261677, -0.0035455331671983004, 0.0014750079717487097, 0.02662917785346508, 0.00780789228156209, -0.019600603729486465, -0.01479970570653677, -0.004065691493451595, 0.001928078942000866, -0.00747337331995368, -0.006602153647691011, 0.006061777006834745, -0.012248539365828037, 0.0387306734919548, 0.007800540421158075, 0.00902098324149847, 0.012402933090925217, 0.012072090059518814, 0.024158883839845657, 0.015718713402748108, 0.0015457714907824993, 0.002021817723289132, 0.01251321379095316, 0.007153558544814587, -0.015865754336118698, -0.0058375392109155655, -0.001306829391978681, 0.01629217527806759, 0.01125601027160883, 0.01585105061531067, 0.004374478477984667, -0.015777530148625374, 0.02427651733160019, 0.011535389348864555, -0.02484997734427452, 0.0028415729757398367, 0.0173361673951149, 0.011557444930076599, 0.014454158954322338, -0.013424869626760483, -0.025114651769399643, 0.024526486173272133, 0.029834676533937454, -0.015806937590241432, -0.0054625836201012135, 0.007896116934716702, -0.010373762808740139, 0.009609147906303406, 0.007495429832488298, -0.0031117612961679697, -0.0048303063958883286, 0.004701645113527775, -0.01688033901154995, -0.0013233715435490012, -0.006491872947663069, 0.0042384653352200985, -0.01982116512954235, -0.0001838016032706946, -0.003115437226369977, -0.01642451249063015, -0.0173361673951149, 0.02399713732302189, 0.015218772925436497, -0.01655684970319271, 0.008160791359841824, -0.0021137185394763947, -0.010961928404867649, 0.02264435775578022, -0.004822954069823027, -0.01382923312485218, -0.014461510814726353, -0.002018141793087125, -0.010410523042082787, -0.0016477814642712474, 0.007039601448923349, 0.030966894701123238, 0.010226721875369549, -0.025349918752908707, -0.02424710802733898, 0.007021221332252026, 0.02071811817586422, -0.014292413368821144, 0.014711480587720871, 0.019027141854166985, -0.01324106752872467, 0.011057504452764988, -0.007579978555440903, 0.014571791514754295, 0.003157711587846279, 0.003714630613103509, -0.016145134344697, 0.016233358532190323, -0.0023342804051935673, -0.012101498432457447, -0.028893612325191498, 0.006366887595504522, 0.013285180553793907, -0.01776258833706379, -0.03673091530799866, -0.002312224358320236, 0.0019721912685781717, 0.014704128727316856, -0.0181743036955595, 0.019144775345921516], "06c8f1be-09ed-4762-9739-a090b78e3bc0": [-0.01321041863411665, -0.018852604553103447, -0.01607305370271206, 0.02349022403359413, -0.044714510440826416, -0.02429085597395897, -0.0045469822362065315, 0.0062539889477193356, -0.005827237386256456, 0.03093760646879673, 0.023595968261361122, 0.025650419294834137, 0.010665015317499638, -0.006744942162185907, 0.002781438874080777, 0.031179307028651237, -0.02110343612730503, 0.010007892735302448, 0.019200047478079796, -0.019094305112957954, 0.05223742499947548, -0.027251681312918663, -0.020725779235363007, 0.01059703715145588, 0.013535203412175179, -0.01537061296403408, -0.024079367518424988, -0.01932089775800705, -0.04444259777665138, -0.010476186871528625, 0.012621275149285793, -0.007787273731082678, 0.025333186611533165, 0.018807286396622658, -0.0024094474501907825, -0.060727138072252274, 0.021088330075144768, 0.03139079362154007, -0.0004463426012080163, -0.003855871269479394, -0.030771438032388687, 0.001360506983473897, -0.006616538856178522, -0.022024918347597122, -0.015098700299859047, 0.009426302276551723, -0.02693445049226284, -0.010589484125375748, 0.015695396810770035, 0.010158955119550228, 0.02110343612730503, 0.018338991329073906, -0.005075701046735048, -0.008723861537873745, 0.053083375096321106, -0.030393783003091812, -0.0076059987768530846, 0.09849277138710022, 0.026511475443840027, -0.02120918035507202, -0.00811205804347992, -0.040907733142375946, 0.015634972602128983, -0.00494729820638895, 0.02155662328004837, -0.016420498490333557, 0.0035820703487843275, 0.014154559932649136, -0.01820303499698639, -0.007945889607071877, -0.02865656279027462, 0.03099803254008293, -0.03571118414402008, 0.03033335693180561, 0.017583679407835007, 0.002071445109322667, 0.016193903982639313, 0.0232787374407053, 0.03022761270403862, -0.008451948873698711, -0.0008553916122764349, 0.003923849202692509, 0.028988901525735855, 0.023460011929273605, 0.032840996980667114, 0.020227273926138878, -0.020061105489730835, -0.04997148737311363, -0.04553024843335152, -0.04543961212038994, 0.019215155392885208, 0.015574547462165356, 0.0019600363448262215, 0.002137534786015749, 0.022553635761141777, 0.029094643890857697, 0.0020771098788827658, 0.014418918639421463, -0.01537061296403408, -0.02906443178653717, -0.02125449851155281, 0.03909498453140259, -0.017100278288125992, 0.025877011939883232, 0.012190747074782848, -0.020982585847377777, 0.028747200965881348, 0.039487745612859726, -0.04332473501563072, -0.002562398323789239, -0.009373430162668228, -0.06290244311094284, -0.006967759691178799, -0.002220619237050414, -0.04408004879951477, -0.005332507658749819, -0.008489714935421944, 0.005917874630540609, -0.005510006099939346, -0.027009980753064156, -0.0022074012085795403, 0.0152195505797863, 0.004101347643882036, -0.014819234609603882, -0.029683789238333702, 0.01684347353875637, -0.012364468537271023, 0.0680989921092987, 0.03924604505300522, 0.04148177057504654, -0.022130660712718964, -0.017281554639339447, 0.01968344859778881, 0.0019638128578662872, 0.0056723980233073235, 0.02815805748105049, 0.017674317583441734, 0.0584309883415699, -0.0006604265072382987, 0.01953238621354103, -0.05522846430540085, -0.009350771084427834, -0.020076211541891098, -0.016057947650551796, -0.006699623540043831, 0.009245026856660843, -0.028414862230420113, 0.06525901705026627, -0.018067078664898872, 0.021073224022984505, -0.034412045031785965, -0.01968344859778881, -0.04565109685063362, -0.007945889607071877, 0.043687283992767334, -0.025348292663693428, -0.0011641256278380752, 0.045167699456214905, 0.0013284061569720507, 0.041814111173152924, 0.018535373732447624, -0.037463508546352386, 0.01785559207201004, 0.03012187033891678, 0.023595968261361122, 0.020665355026721954, 0.06102926284074783, 0.07843166589736938, -0.03894392028450966, 0.019336003810167313, 0.027402743697166443, -0.009237473830580711, 0.02383766882121563, 0.012961165979504585, -0.002330139512196183, -0.020197061821818352, 0.028188269585371017, 0.011118202470242977, 0.03574139624834061, -0.019351111724972725, -0.01723623462021351, -0.01861090399324894, 0.02404915541410446, 0.009992786683142185, -0.01004565879702568, 0.010695227421820164, 0.016450710594654083, 0.00918460264801979, -0.0028154279571026564, -0.00788546446710825, -0.008202695287764072, -0.009509386494755745, -0.00023096046061255038, 0.031783558428287506, -0.00811205804347992, -0.019245367497205734, 0.004860437009483576, -0.0022980389185249805, -0.004951074719429016, 0.009992786683142185, -0.0021299817599356174, -0.032689932733774185, -0.042267296463251114, 0.02966868132352829, -0.008754073642194271, 0.0537782646715641, -0.03377758339047432, -0.04266006126999855, 0.03244823217391968, -0.003638718742877245, 0.06495688855648041, -0.04713151231408119, 0.029124857857823372, 0.002062003593891859, 0.004316612146794796, 0.003819993929937482, 0.0173419788479805, 0.026058288291096687, -0.021722793579101562, 0.00115751673001796, -0.005970746744424105, -0.01785559207201004, -0.007247225381433964, -0.007908123545348644, -0.03655713424086571, 0.004796235356479883, -0.03495587036013603, 0.03196483105421066, -0.006170904729515314, -0.02861124463379383, 0.04072646051645279, -0.02134513668715954, 0.019592810422182083, -0.03181377053260803, -0.009592470712959766, 0.0048868730664253235, 0.03779584541916847, -0.02237236127257347, -0.0036897023674100637, -0.017372190952301025, 0.0015663296217098832, 0.012387127615511417, -0.003908743150532246, -0.023067248985171318, -0.021073224022984505, 0.03311290964484215, -0.01749304123222828, 0.05489612743258476, 0.0004090490110684186, 0.01287808082997799, 0.014675725251436234, -0.0025208559818565845, -0.019048985093832016, 0.03341503441333771, -0.02160194329917431, 0.037554144859313965, 0.0264812633395195, -0.04610428586602211, 0.011299477890133858, -0.005555324722081423, 0.00640127481892705, 0.0051096901297569275, -0.03577160835266113, 0.009373430162668228, 0.04311324656009674, -0.013943072408437729, 0.03199504688382149, -0.023460011929273605, 0.016163691878318787, 0.060425013303756714, 0.015861567109823227, -0.0026870248839259148, -0.01613347977399826, 0.0033403702545911074, -0.027735082432627678, -0.003855871269479394, 0.022538529708981514, -0.009479174390435219, 0.008572799153625965, -0.003170425072312355, 0.0033743593376129866, -0.011843303218483925, 0.0417838990688324, -0.01027225237339735, 0.025892117992043495, 0.013535203412175179, -0.0046640560030937195, -0.02459298074245453, -0.031028244644403458, -0.04042433574795723, -0.023203205317258835, 0.003648160258308053, -0.01907919906079769, 0.04365707188844681, -0.01688879169523716, -0.0045092166401445866, 0.018444735556840897, -0.016405390575528145, 0.0061067030765116215, 0.0030646813102066517, -0.0106499083340168, -0.016193903982639313, -0.026949556544423103, -0.004327941685914993, 0.00658255023881793, 0.00029055934282951057, 0.050031911581754684, 0.010710333473980427, -0.001434149919077754, 0.003259174292907119, 0.030061444267630577, -0.01684347353875637, -0.0022867091465741396, -0.0061218091286718845, -0.0006089708767831326, 0.023822562769055367, -0.03474438190460205, 0.0019109410932287574, -0.021284710615873337, -0.022327043116092682, -0.015589653514325619, -0.003770898561924696, -0.04314345866441727, 0.04743363708257675, 0.030801651999354362, -0.07293299585580826, 0.021073224022984505, -0.019502174109220505, -0.01067256834357977, -0.00803652685135603, -0.028429970145225525, -0.00892779603600502, -0.02687402442097664, 0.025015955790877342, -0.014834340661764145, -0.025680631399154663, -0.05247912555932999, -0.0417838990688324, -0.010332677513360977, -0.037403084337711334, -0.00478112930431962, -0.0174024049192667, 0.03190440684556961, -0.00889758300036192, -0.01938132382929325, -0.004909532610327005, 0.009358324110507965, -0.010884055867791176, 0.0019109410932287574, -0.006945100147277117, 0.0009351714979857206, 0.0021413115318864584, 0.029638469219207764, -0.00608404353260994, 0.015891779214143753, -0.010551718063652515, -0.014366047456860542, -0.008512374013662338, -0.0035197571851313114, -0.0009724650881253183, 0.0035480812657624483, -0.029396768659353256, -0.016601772978901863, -0.01892813667654991, -0.016647091135382652, 0.011397668160498142, -0.0008662492036819458, 0.01632986031472683, -0.02947230078279972, -0.016254328191280365, -0.01506093516945839, 0.012862974777817726, -0.018142610788345337, 0.012409787625074387, -0.013625840656459332, -0.021118542179465294, 0.0661049634218216, -0.0043770368210971355, -0.0005277747404761612, 0.02333916164934635, -0.03997114673256874, 0.014441578648984432, -0.0057139405980706215, 0.0019619246013462543, 0.05208636075258255, 0.00039842745172791183, 0.022991718724370003, -0.005513782612979412, -0.01313488744199276, -0.025680631399154663, -0.00833865161985159, 0.02489510551095009, -0.014894765801727772, 0.007817486301064491, -0.005498676095157862, -0.04380813613533974, 0.010174062103033066, 0.0009195932070724666, 0.012115214951336384, 0.007817486301064491, 0.042931973934173584, -0.007564456667751074, -0.0013170765014365315, 0.003451779019087553, -0.0025208559818565845, -0.02003089152276516, -0.019456854090094566, -0.018882816657423973, 0.017070066183805466, -0.013180206529796124, 0.003366806311532855, -0.009448961354792118, -0.013346374966204166, 0.04870256036520004, 0.035076722502708435, 0.00026412340230308473, -0.007065949961543083, 0.04235793650150299, -0.01800665445625782, -0.028686774894595146, 0.008376417681574821, 0.02830911986529827, -0.011956599541008472, -0.015325293876230717, 0.015431038103997707, 0.012085002847015858, -0.017221128568053246, 0.023626180365681648, -0.009516939520835876, 0.032085683196783066, 0.031723134219646454, 0.05299273878335953, 0.004173102788627148, -0.011873515322804451, -0.0356205478310585, -0.0026303764898329973, 0.010332677513360977, 0.017976442351937294, 0.0022772676311433315, -0.023052142933011055, 0.014600194059312344, 0.034563109278678894, 0.006480582989752293, 0.01845984160900116, -0.051149774342775345, -0.02779550664126873, -0.034109920263290405, 0.03773542121052742, 0.017659209668636322, 0.014486896805465221, -0.005234316922724247, 0.026662537828087807, -0.05722248926758766, -0.0054118153639137745, 0.012779890559613705, 0.0005386323318816721, 0.0221155546605587, 0.005389155820012093, 0.031058456748723984, -0.03556011989712715, -0.036587346345186234, 0.004259963519871235, 0.04945787414908409, -0.009773746132850647, 0.00500772288069129, -0.023157887160778046, -0.012885634787380695, 0.0038143289275467396, 0.002394341165199876, 0.02637551911175251, -0.02809763140976429, 0.022447893396019936, -0.022901080548763275, 0.02768976241350174, 0.01083118375390768, -0.01942664198577404, -0.008278227411210537, -0.008769180625677109, -0.019925149157643318, -0.008406629785895348, 0.02069556713104248, -0.006420157849788666, -0.012621275149285793, -0.01442647259682417, 0.019109411165118217, 0.03175334632396698, -0.03966902196407318, -0.00941119622439146, -0.01042331475764513, 0.0441102609038353, 0.02784082479774952, -0.016949215903878212, -0.006314414087682962, 0.02018195390701294, -0.006110479589551687, -0.005853673443198204, 0.02404915541410446, -0.025136806070804596, 0.007991207763552666, -0.03059016354382038, 0.02342979982495308, 0.0009054310503415763, 0.015468803234398365, -0.0028890708927065134, -0.00938098318874836, 0.02261406183242798, 0.013905306346714497, 0.038007333874702454, 0.005562877748161554, -0.00978885218501091, -0.0457417368888855, 0.0229312926530838, -0.005989629775285721, 0.013829775154590607, 0.009124177508056164, -0.025982756167650223, -0.017719635739922523, -0.017583679407835007, 0.02308235503733158, 0.004648949485272169, 0.0022508318070322275, -0.007764614187180996, -0.03181377053260803, -0.0037860048469156027, -0.030061444267630577, -0.008331098593771458, -0.0002922115963883698, -0.026949556544423103, 0.054745063185691833, -0.035076722502708435, -0.02333916164934635, -0.0046640560030937195, -0.006435263901948929, 0.009282792918384075, 0.00874652061611414, 0.04459366202354431, -0.019200047478079796, -0.010717886500060558, 0.0001961452653631568, -0.013346374966204166, -0.01759878545999527, 0.027176151052117348, 0.00696020619943738, -0.011949046514928341, 0.0004416218725964427, 0.0050568184815347195, 0.01977408677339554, 0.0006330464384518564, -0.0033838008530437946, 0.01906409114599228, -0.007398287765681744, -0.0022470552939921618, -0.021934280171990395, -0.007900570519268513, -0.008708755485713482, -0.03244823217391968, 0.0020959926769137383, 0.0005811186856590211, -0.012779890559613705, -0.013014037162065506, 0.0039842743426561356, 0.006896004546433687, 0.006522125098854303, 0.008331098593771458, -0.005929204635322094, -0.0189734548330307, -0.027629338204860687, 0.007262331433594227, -0.003810552414506674, 0.009509386494755745, 0.017508147284388542, -0.018550479784607887, 0.03861158341169357, 0.005940534174442291, -0.013278396800160408, 0.02633020095527172, -0.005177668295800686, -0.00290417717769742, -0.030167188495397568, -0.0058423434384167194, 0.03205547109246254, -0.014864553697407246, 0.0010904826922342181, -0.005430698394775391, 0.025650419294834137, 0.03652692213654518, -0.021390454843640327, -0.03108867071568966, -0.026179136708378792, 0.018338991329073906, -0.0018023648299276829, 0.02562020532786846, -0.0008459502132609487, -0.012152981013059616, -0.012372021563351154, 0.02216087467968464, 0.011760218068957329, -0.024426812306046486, 0.02383766882121563, 0.023958519101142883, 0.029865063726902008, 0.015363059937953949, 0.027704868465662003, -0.04012221097946167, -0.008890029974281788, 0.023308949545025826, 0.015952203422784805, 0.02637551911175251, 0.005064371507614851, -0.0016380844172090292, -0.005593090318143368, -0.04894426092505455, 0.033807795494794846, -0.0074964785017073154, 0.03540905937552452, -0.014388706535100937, 0.017825379967689514, 0.016707517206668854, 0.018233248963952065, -0.0006443761521950364, 0.00806673988699913, -0.03936689719557762, 0.051300838589668274, -0.01764410361647606, 0.012515530921518803, 0.03432140871882439, -0.015091147273778915, -0.010302465409040451, 0.001682459027506411, 0.018127504736185074, -0.013580521568655968, -0.024985743686556816, 0.021647261455655098, -0.022961504757404327, 0.004558312240988016, -0.02926081232726574, 0.0016522464575245976, 4.056855118506064e-08, 0.0018325773999094963, -0.0017721523763611913, 0.007432276848703623, -0.025997862219810486, 0.005906545091420412, 0.016118371859192848, -0.01714559830725193, 0.004841554444283247, -0.0033838008530437946, 0.009464068338274956, 0.03220653161406517, 0.039034560322761536, -0.01216808706521988, 0.0032176319509744644, -0.005853673443198204, 0.0279918871819973, 0.006741165649145842, -0.027553806081414223, 2.142019548045937e-05, 0.021163862198591232, 0.007802379783242941, 0.002792768646031618, 0.010891608893871307, -0.008467054925858974, 0.03954817354679108, 0.02105811797082424, 0.009297898970544338, -0.006182234268635511, 0.006710953079164028, -0.0010536612244322896, 0.025015955790877342, 0.010181615129113197, 0.010634802281856537, -0.014698384329676628, -0.005170115269720554, -0.0057290466502308846, 0.013406800106167793, -0.006771378219127655, 0.017689423635601997, -0.002637929515913129, 0.018746860325336456, -0.026949556544423103, -0.04229750856757164, -0.02861124463379383, -0.024109581485390663, 0.017326872795820236, 0.003731244709342718, -0.020816417410969734, -0.004645172972232103, -0.0015096812276169658, -0.03377758339047432, -0.011193733662366867, 0.009781299158930779, 5.868425432709046e-05, -0.012281384319067001, 0.02439660020172596, 0.010778311640024185, 0.006287978030741215, 0.00018434350204188377, -0.01953238621354103, 0.01161670871078968, -0.02936655655503273, -0.028943581506609917, -0.0035594110377132893, 0.0010470522101968527, -0.0029589373152703047, 0.022402573376893997, 0.010106083936989307, -0.006548561155796051, -0.029865063726902008, -0.01156383752822876, 0.0015077929710969329, 0.0005121963913552463, -0.0008563357405364513, 0.005287188570946455, 0.009343218058347702, -0.00040716075454838574, 0.004951074719429016, -0.011352350004017353, 0.019502174109220505, -0.02120918035507202, 0.023308949545025826, 0.006348403170704842, 0.05550037696957588, -0.0038653125520795584, -0.04540940001606941, -0.03052973933517933, 0.026435943320393562, -0.0068166968412697315, -0.012417340651154518, -0.013233077712357044, 0.0031194414477795362, -0.00038166894228197634, -0.003608506405726075, -0.004233527462929487, 0.0009257300989702344, -0.002881517866626382, -0.042629849165678024, 0.010242040269076824, 0.010211827233433723, 0.02226661704480648, 0.014728597365319729, 0.02551446296274662, -0.022024918347597122, -0.004441238474100828, -0.02489510551095009, 0.028626350685954094, 0.022840656340122223, 0.029034219682216644, 0.00485666049644351, -0.009554705582559109, 0.025801481679081917, 0.016752835363149643, -0.030001020058989525, 0.02901911363005638, -0.0009587750537320971, 0.004550758749246597, -0.010128743015229702, 0.035016294568777084, -1.285654343519127e-05, -0.035832032561302185, 0.04752427339553833, -0.015589653514325619, 0.00469049159437418, -0.02926081232726574, 0.010287358425557613, -0.02364128641784191, -0.0073794047348201275, 0.015234656631946564, 0.027161043137311935, 0.03752393275499344, -0.0017466605640947819, 0.03936689719557762, 0.029910381883382797, -0.0082933334633708, 0.04966936260461807, -0.03589245676994324, -0.0316627062857151, -0.020620036870241165, -0.006911111064255238, -0.0112314997240901, -0.010415761731564999, -0.012674146331846714, -0.03809797018766403, 0.030393783003091812, -0.02205513045191765, 0.024381494149565697, -0.025801481679081917, 0.02469872497022152, 0.003196860896423459, 0.0076437643729150295, 0.014494450762867928, 0.009705767966806889, -0.01820303499698639, 0.0028248694725334644, -0.002150752814486623, 0.007847698405385017, -0.0074738189578056335, 0.04057539626955986, 0.0024453247897326946, -0.02119407430291176, -0.003538639983162284, -0.0016012628329917789, -0.023354267701506615, 0.03888349607586861, 0.01305935624986887, -0.018701542168855667, -0.026435943320393562, -0.021692579612135887, -0.00040786885074339807, -0.010068317875266075, 0.015529228374361992, -0.004248633980751038, -0.020015785470604897, 0.008315992541611195, 0.014048815704882145, -0.009705767966806889, -0.015786034986376762, 0.008663436397910118, 0.015559441410005093, 0.04042433574795723, 0.02287086844444275, -0.016465816646814346, -0.004135336726903915, 0.01407147478312254, 0.023822562769055367, 0.01998557336628437, 0.010868949815630913, 0.030922500416636467, 0.005442027933895588, -0.019925149157643318, -0.01067256834357977, -0.018474947661161423, -0.055923350155353546, -0.0036009531468153, 0.0394575335085392, -0.013603181578218937, 0.034683957695961, -0.008859817869961262, 0.00446389801800251, -0.03139079362154007, 0.03580182045698166, -0.021647261455655098, -0.021692579612135887, -0.023369373753666878, -0.019033879041671753, 0.027886144816875458, 0.020937267690896988, 0.013859987258911133, 0.014124346897006035, 0.003317710943520069, 0.03368694707751274, 0.03281078115105629, 0.017583679407835007, -0.003234626492485404, 0.007315203081816435, -0.0465574748814106, 0.025287868455052376, -0.017311766743659973, -0.009320558048784733, -0.006337073165923357, 0.020378336310386658, 0.04432174935936928, 0.009796405211091042, -0.02191917411983013, -0.006427710875868797, -0.027100618928670883, -0.007390734739601612, 0.00541559187695384, 0.0041466667316854, 0.04087752103805542, 0.03534863516688347, 0.016314754262566566, 0.001726833637803793, 0.0441102609038353, 0.010287358425557613, -0.019184941425919533, -0.013014037162065506, -0.008285780437290668, 0.0030344687402248383, -0.025318080559372902, 0.020166847854852676, -0.0003698671644087881, 0.015287528745830059, 0.00431283563375473, 0.009652895852923393, -0.01856558583676815, 0.01298382505774498, 0.005664844997227192, 0.019003666937351227, -0.026692749932408333, 0.0010800971649587154, -0.003893636865541339, -0.0031458772718906403, -0.01886771060526371, -0.017916016280651093, -0.01998557336628437, 0.005887662526220083, 0.015574547462165356, -0.0240944754332304, 0.0008511429768987, 0.0279918871819973, 0.0004600326356012374, -0.04939744994044304, -0.03089228831231594, -0.032478444278240204, 0.05755482614040375, -0.03574139624834061, 0.013459672220051289, -0.008980668149888515, 0.015574547462165356, 0.01738729700446129, 0.04483535885810852, 0.031723134219646454, 0.0009191211429424584, 0.00580835435539484, 0.038067758083343506, 0.018127504736185074, -0.016163691878318787, -0.019396429881453514, -0.0044148024171590805, -0.02439660020172596, 0.016148585826158524, 0.037705209106206894, 0.0409681610763073, 0.005026605911552906, -0.025680631399154663, -0.010838736779987812, -0.02555978111922741, -0.012152981013059616, -0.02145088091492653, 0.024834681302309036, -0.022130660712718964, -0.0057668122462928295, 0.006435263901948929, -0.015008063055574894, 0.004467674531042576, 0.011337243020534515, -0.016193903982639313, -0.002260273089632392, -0.035076722502708435, -0.03435162082314491, -0.006057607475668192, -0.03250865638256073, 0.031209519132971764, -0.021420666947960854, -0.013353927992284298, -0.01916983537375927, -0.0018977230647578835, 0.020468974485993385, 0.0015719945076853037, -0.0016711292555555701, 0.006269095465540886, 0.036436282098293304, -0.021118542179465294, -0.0029797086026519537, -0.02358086220920086, 0.007655093912035227, -0.011450540274381638, -0.019094305112957954, -0.007149034645408392, 0.0013048026012256742, 0.0007175470236688852, -0.005642185918986797, -0.008021420799195766, 0.028535712510347366, -0.013527650386095047, 0.019713660702109337, -0.028777413070201874, -0.005608196835964918, 0.00041990663157776, -0.019955361261963844, -0.006265318486839533, 1.2067300303897355e-05, -0.006963982712477446, 0.01305935624986887, -0.008603011257946491, -0.017024748027324677, -0.051149774342775345, -0.005200327839702368, -0.011276817880570889, -0.005430698394775391, 0.03262950852513313, -0.03163249418139458, -0.02353554405272007, -0.011556283570826054, 0.022644273936748505, 0.01596730947494507, -0.0030325804837048054, 0.04205581173300743, -0.014162112958729267, 0.02353554405272007, 0.018701542168855667, -0.020559610798954964, 0.006828026846051216, 0.007723072078078985, 0.00844439584761858, -0.007983654737472534, -0.009071305394172668, -0.02876230701804161, 0.023414693772792816, -0.03498608246445656, 0.018323885276913643, 0.024366386234760284, -0.01906409114599228, 0.02530297450721264, 0.01673772931098938, 0.0076815299689769745, -0.003257286036387086, 0.026904238387942314, 0.00768530648201704, 0.02308235503733158, -0.02170768566429615, -0.0019336004042997956, 0.0076966360211372375, 0.018233248963952065, 0.020272592082619667, 0.02738763764500618, 0.03229717165231705, -0.027402743697166443, -0.0018684547394514084, 0.03407970815896988, 0.007757061161100864, -0.03211589530110359, 0.005015276372432709, -0.0035782938357442617, -0.003268615575507283, 0.008051632903516293, -0.006605209317058325, -0.008164930157363415, 0.021888962015509605, -0.01194149348884821, -0.004078688565641642, -0.008059185929596424, -0.004350601229816675, -0.020514292642474174, 0.00219418341293931, -0.01927557960152626, 0.01275723148137331, -0.06852196902036667, -0.009577364660799503, -0.007205682806670666, -0.01725134253501892, -0.0030948936473578215, -0.008451948873698711, 0.008308439515531063, 0.016314754262566566, 0.005453357473015785, 0.0027417850214987993, -0.002379234880208969, -0.020121529698371887, 0.0027531147934496403, 0.03136058151721954, 0.002964602317661047, 0.002356575569137931, 0.018067078664898872, -0.003279945347458124, 0.010030552744865417, -0.01287808082997799, -0.015906885266304016, 0.0014152671210467815, 0.042931973934173584, -0.019048985093832016, -0.03447246924042702, 0.015423485077917576, 0.0012226623948663473, -0.009577364660799503, -0.01346722524613142, -0.013716477900743484, 0.0013199088862165809, -0.013716477900743484, -0.01186596229672432, 0.0012462659506127238, -0.0036311657167971134, 0.018852604553103447, 0.021088330075144768, 0.009388536214828491, 0.031874194741249084, 0.04625535011291504, 0.00697531271725893, -0.012825209647417068, -0.013882647268474102, -0.01876196637749672, -0.0024075591936707497, -0.013897753320634365, 0.003159095300361514, -0.029532724991440773, 0.010007892735302448, 0.012621275149285793, 0.023006824776530266, -0.000500394671689719, 0.015438591130077839, -0.01805197261273861, 0.010929374024271965, 0.00138505466748029, 0.012666593305766582, -0.009131730534136295, 0.01217564009130001, -0.028973793610930443, 0.05643696337938309, 0.026254668831825256, -0.0003181754727847874, 0.00018233720038551837, -0.02252342365682125, 0.0007487037219107151, 0.015695396810770035, 0.01596730947494507, 0.004305282142013311, -0.005166338756680489, 0.003221408696845174, 0.010551718063652515, -0.003999380860477686, 0.0007128263241611421, 0.04864213615655899, 0.005736599676311016, 0.025695737451314926, -0.0027984334155917168, 0.020922161638736725, 0.00042769580613821745, -0.015952203422784805, 0.003935179207473993, 0.02839975617825985, -0.0017608227208256721, -0.0011037006042897701, -0.016964321956038475, -0.01447934377938509, -0.019139623269438744, -0.01139011513441801, -0.00788546446710825, 0.020106423646211624, 0.013746690936386585, 0.020121529698371887, 0.004116454161703587, -0.01907919906079769, 0.03891370818018913, -0.004327941685914993, -0.0003179394407197833, 0.011269264854490757, -0.03136058151721954, -0.004490334074944258, -0.01339169405400753, 0.01938132382929325, -0.004769799765199423, -0.009388536214828491, 0.021617049351334572, -0.005434474907815456, 0.03670819476246834, -0.01744772307574749, -0.003893636865541339, -0.0006712841568514705, 0.006435263901948929, -0.015453697182238102, -0.014169665984809399, -0.010944481007754803, -0.0104459747672081, -0.004052252508699894, -0.012085002847015858, 0.00814227107912302, 0.02181342989206314, -0.006771378219127655, 0.035016294568777084, 0.006269095465540886, -0.037916697561740875, -0.01120883971452713, -0.005408038850873709, -0.014690831303596497, -0.002796545159071684, -0.015952203422784805, 0.007541797123849392, 9.984289499698207e-05, -0.011125755496323109, -0.006956429686397314, 0.0013841105392202735, 0.00043147237738594413, 0.010559271089732647, 0.005683728028088808, 0.0027852156199514866, 0.042176660150289536, -0.027916356921195984, -0.012930952943861485, -0.0006245491676963866, -0.012666593305766582, -0.00138505466748029, -0.004777352791279554, 0.005121020134538412, -0.009856830351054668, -0.0008459502132609487, 0.011654474772512913, -0.014388706535100937, -0.007764614187180996, -0.0020166849717497826, 0.01907919906079769, 0.04030348360538483, -0.0030703460797667503, -0.043445587158203125, -0.03184398263692856, 0.013958178460597992, 0.005113466642796993, 0.01131458394229412, -0.015204444527626038, -0.0024491013027727604, 0.013459672220051289, -0.02241767942905426, -0.0010867060627788305, -0.009207261726260185, -0.014894765801727772, -0.02347511798143387, -0.005880109034478664, -0.02084662951529026, 0.008844711817800999, 0.0010206162696704268, -0.022598955780267715, 0.0015059047145769, -0.00833865161985159, -0.01583135314285755, 0.001337847555987537, -0.01977408677339554, 0.016088159754872322, -0.023611074313521385, -0.030514631420373917, 0.002747449791058898, 0.006676963996142149, 0.0025454037822782993, 0.018792180344462395, 0.01607305370271206, -0.021496199071407318, 0.0026681420858949423, -0.014894765801727772, 0.009683108888566494, 0.008119611069560051, -0.004048475995659828, -0.01343701221048832, 0.02637551911175251, -0.010060764849185944, 0.022206192836165428, -0.005940534174442291, -0.005661068484187126, -0.016571560874581337, 0.017477935180068016, 0.00020664882322307676, -0.012523083947598934, -0.0006670355214737356, 0.027735082432627678, -0.004988840315490961, -0.02394341118633747, -0.0248497873544693, 0.0379469096660614, 0.025167018175125122, -0.03353588283061981, -0.0004413858405314386, -0.004611183889210224, 0.014955190941691399, 9.618434705771506e-05, 0.021496199071407318, -0.021178968250751495, -0.014947637915611267, -0.02577126957476139, 0.006061384454369545, 0.002879629610106349, 0.021314924582839012, -0.011609155684709549, 0.0181577168405056, -0.006227552890777588, 0.014131899923086166, 0.0012236065231263638, 0.02196449227631092, -0.05015276372432709, -0.022402573376893997, 0.02521233819425106, -0.004985063802450895, -0.008308439515531063, -0.0059745232574641705, -0.025499356910586357, -0.03190440684556961, 0.004645172972232103, 0.018550479784607887, -0.029638469219207764, 0.02540871873497963, -0.014675725251436234, -0.029804637655615807, -0.0014464238192886114, 0.01395062543451786, 0.009494280442595482, 0.026919344440102577, -0.005661068484187126, -0.02424553781747818, -0.005238093435764313, 0.010710333473980427, -0.0006528734229505062, 0.008414182811975479, -0.014139452949166298, -0.015438591130077839, 0.01957770437002182, -0.0054495809599757195, 0.0009847389301285148, 0.03362651914358139, -0.017206022515892982, 0.009569811634719372, -0.027568912133574486, -0.023656392470002174, 0.0017306101508438587, 0.01643560454249382, -0.027780400589108467, 0.032901421189308167, -0.010559271089732647, -0.0030212507117539644, 0.01779516600072384, 0.026405731216073036, -0.003808664157986641, -0.03205547109246254, -0.00014350941637530923, -0.0221155546605587, -0.0003297411894891411, 0.007103715557605028, -0.00818758923560381, 0.01654134690761566, -0.016163691878318787, 0.019396429881453514, -0.001257595606148243, -0.038430310785770416, 0.008180036209523678, -0.003965391777455807, 0.006272871978580952, 0.010853842832148075, -0.005479793529957533, 0.011518518440425396, -0.020076211541891098, 0.01034778356552124, -0.021994704380631447, 0.02207023650407791, 0.012304043397307396, -0.015023169107735157, -0.0002269478572998196, 0.009509386494755745, -0.002271602861583233, 0.007726848591119051, -0.0009408363839611411, 0.027296999469399452, -0.007923229597508907, 0.013459672220051289, -0.006703400053083897, -0.016118371859192848, -0.02637551911175251, -0.017326872795820236, -0.0002749810228124261, 0.021390454843640327, 0.017160704359412193, 0.004845330957323313, 0.0008506709127686918, 0.010687674395740032, 0.00874652061611414, -0.026662537828087807, -0.01852026768028736, -0.0048491074703633785, 0.020559610798954964, -0.0015040163416415453, 0.009441408328711987, -0.005445804446935654, -0.03347545862197876, 0.010581931099295616, 0.004486557096242905, 0.030771438032388687, 0.0034007953945547342, -0.010098530910909176, -0.020635142922401428, -0.005608196835964918, 0.004501663614064455, 0.0006878066342324018, -0.012054790742695332, -0.0033611415419727564, -0.0005707331583835185, -0.005668621510267258, 0.008633224293589592, -0.0035348632372915745, -0.0004600326356012374, -0.0034272312186658382, -0.005895215552300215, 0.005955640692263842, -0.006027395371347666, 0.012334256432950497, 0.04030348360538483, -0.006306861061602831, -0.011201286688446999, 0.003308269428089261, 0.001043275697156787, -0.009048646315932274, 0.038007333874702454, 0.008391523733735085, -0.02702508680522442, 0.0051096901297569275, 0.012893187813460827, -0.0038029993884265423, -0.018535373732447624, -0.007870358414947987, 0.01100490614771843, -0.008391523733735085, -0.008331098593771458, -0.02672296203672886, -0.03513714671134949, -0.031179307028651237, 0.009222367778420448, 0.016662197187542915, 0.04117964580655098, -0.015242209658026695, 0.01321041863411665, 0.02176811173558235, -0.01923026144504547, 0.009509386494755745, -0.010581931099295616, 0.013603181578218937, 0.0009101518080569804, -0.012228512205183506, -0.0012056678533554077, 0.0007581451209262013, 0.009441408328711987, -0.007360522169619799, 0.02540871873497963, -0.011654474772512913, 0.005121020134538412, 0.009063752368092537, 0.005083254538476467, -0.05178423598408699, -0.0052041043527424335, -0.030575057491660118, -0.008157377131283283, -0.023369373753666878, 0.019305791705846786, -0.0027776623610407114, -0.012001918628811836, -0.00634085014462471, -0.0090788584202528, 0.011571390554308891, 0.007583339232951403, 0.013029144145548344, -0.01738729700446129, -0.01572561077773571, 0.010098530910909176, -0.042478784918785095, -0.020861735567450523, -0.017326872795820236, -0.0031024469062685966, -0.012137874960899353, 0.021314924582839012, -0.03059016354382038, 0.008134717121720314, -0.0029438312631100416, -0.010944481007754803, -0.01130703091621399, -0.020302804186940193, -0.013905306346714497, -0.007764614187180996, -0.0008237629081122577, -0.011344796046614647, -0.027886144816875458, -0.008406629785895348, -0.008315992541611195, 0.014230091124773026, 0.023701712489128113, -0.011110649444162846, -0.014698384329676628, -0.01067256834357977, 0.038430310785770416, -0.02368660643696785, -0.014109240844845772, 0.011163521558046341, -0.0037406859919428825, 0.010748099535703659, -0.008829604834318161, -0.025136806070804596, -0.008436842821538448, 0.01488721277564764, -0.014449131675064564, 0.0009653840097598732, 0.04474472254514694, -0.006457923445850611, -0.0068544624373316765, 0.01161670871078968, -0.008489714935421944, -0.02951761893928051, -0.026843812316656113, -0.030499525368213654, -0.0098643833771348, -0.011805537156760693, 0.015234656631946564, -0.020604930818080902, 0.015325293876230717, -0.006042501423507929, 0.029124857857823372, 0.005400485824793577, 0.00997012760490179, -0.03332439437508583, 0.010816077701747417, 0.004800011869519949, 0.0033384819980710745, 0.011949046514928341, 0.022085342556238174, -4.9006812332663685e-05, -0.012583509087562561, 0.026964662596583366, 0.027070406824350357, 0.0008742744103074074, -0.0029230599757283926, 0.0077192955650389194, -0.01009097695350647, 0.026647431775927544, 0.0050568184815347195, -0.0011188068892806768, -0.02110343612730503, -0.02095237374305725, 0.020151741802692413, -0.013097122311592102, -0.0009616074385121465, -0.009630236774682999, 0.002231949009001255, -0.015483910217881203, -0.02049918659031391, 0.0197891928255558, 0.026360413059592247, -0.007488925009965897, 0.013625840656459332, -0.013338821940124035, 0.004720704164355993, 0.008467054925858974, 0.019910043105483055, -0.002877741353586316, 0.005785695277154446, -0.01648092269897461, -0.0016343077877536416, 0.022901080548763275, -0.016903897747397423, 0.014350940473377705, -0.0027512265369296074, 0.02697976864874363, 0.007307650055736303, -0.02764444425702095, -0.003206302411854267, -0.010717886500060558, 0.009584917686879635, -0.009010880254209042, 6.367050082189962e-05, -0.016798153519630432, -0.020876841619610786, 0.009977680630981922, 0.0017391074215993285, -0.023822562769055367, -0.004954851232469082, 0.022236404940485954, 0.00024712886079214513, -0.018248355016112328, -0.004244857467710972, -0.004728257190436125, -0.001579547650180757, 0.011533624492585659, -0.009924808517098427, -0.016979429870843887, 0.015786034986376762, -0.014124346897006035, -0.023248523473739624, -0.00463006692007184, 0.011956599541008472, -0.02267448604106903, 0.003793557872995734, -0.0012472100788727403, -0.010967140085995197, -0.003772786818444729, 0.011087990365922451, 0.0058838860131800175, -0.023414693772792816, -0.019245367497205734, -0.005075701046735048, -0.0011367455590516329, 0.006846909411251545, -0.005570431239902973, 0.013580521568655968, -0.003111888188868761, -0.014124346897006035, 0.01496274396777153, -0.011911281384527683, -0.01581624709069729, -0.009441408328711987, -0.003111888188868761, -0.02003089152276516, -0.01049884594976902, 0.011322136968374252, 0.07758571952581406, -0.015279975719749928, 0.0007501199143007398, 0.02388298697769642, 0.011858409270644188, 0.0012094444828107953, -0.009056199342012405, 0.025982756167650223, -3.767712041735649e-05, -0.007198129780590534, -0.013572968542575836, -0.02861124463379383, 0.011707346886396408, -0.004580971319228411, -0.004108901135623455, 0.009803958237171173, 0.014056368730962276, 0.03133036941289902, -0.006982865743339062, 0.02058982290327549, 0.014207431115210056, 0.028445076197385788, -0.025589993223547935, -0.0006986642256379128, 0.0017287218943238258, 0.006223776377737522, 0.0019921371713280678, 0.018792180344462395, 0.011578943580389023, 0.006654304917901754, 0.0017674316186457872, 0.006393721792846918, -0.0002478369860909879, -0.024834681302309036, -0.0074171703308820724, 0.013142440468072891, -0.011223946698009968, 0.015483910217881203, 0.005434474907815456, 0.012258725240826607, -0.010355336591601372, -0.01217564009130001, 0.016647091135382652, 0.013278396800160408, 0.015423485077917576, -0.003551857778802514, -0.008172483183443546, -0.004282623063772917, 0.0002794656902551651, -0.029094643890857697, -0.02536340057849884, 0.004969957284629345, 0.0007137705106288195, 0.022206192836165428, 0.0009073193650692701, -0.01953238621354103, -0.002488755388185382, -0.0017985883168876171, 0.0106499083340168, 0.00405602902173996, 0.007772167678922415, -0.01587667316198349, -0.018172822892665863, -0.028581032529473305, 0.015393272042274475, -0.02454766258597374, -0.007553126662969589, -0.017523253336548805, -0.0165262408554554, 0.0181577168405056, -0.002101657446473837, 0.02418511174619198, -0.006926217116415501, -0.0055439951829612255, -0.002426441991701722, 0.02196449227631092, -0.0024132239632308483, 0.01316510047763586, 0.005536442156881094, -0.008731414563953876, 0.0005603475729003549, -0.004660279024392366, -0.005275859031826258, -0.029759319499135017, -0.00882205180823803, -0.0038143289275467396, 0.014139452949166298, -0.00953204557299614, 0.01755346730351448, -0.011820643208920956, -0.013202865608036518, -0.007723072078078985, -0.005351390223950148, 0.025333186611533165, 0.013852434232831001, -0.019698554649949074, -0.016420498490333557, -0.03429119661450386, 0.030016126111149788, 0.003695367369800806, -0.002671918598935008, 0.02388298697769642, 0.015098700299859047, -0.0035537462681531906, -0.0029004006646573544, 0.004834000952541828, 0.0018203036161139607, 0.005555324722081423, -0.00502282939851284, 0.010997352190315723, -0.0025680630933493376, 0.004346824251115322, -0.00263226474635303, -0.004992616828531027, -0.03773542121052742, 0.019653236493468285, 0.012666593305766582, -0.0077192955650389194, -0.003355476539582014, -0.01257595606148243, -0.0024339950177818537, 0.005090807564556599, -0.00160409533418715, 0.0025793928653001785, 0.008451948873698711, 0.0054646870121359825, -0.00918460264801979, -0.010627249255776405, -0.012372021563351154, -0.0021526410710066557, 0.0018439070554450154, 0.017734741792082787, -0.001237768679857254, -0.005740376189351082, -0.005215433891862631, -0.0049812872894108295, -0.00195248331874609, -0.033596307039260864, 0.011654474772512913, -0.019305791705846786, -0.004958627745509148, 0.006907334551215172, 0.0005452413461171091, 0.003257286036387086, -0.01057437714189291, -0.018233248963952065, -0.018127504736185074, -0.010415761731564999, 0.005876332521438599, 0.007636211346834898, 0.01455487497150898, -0.020151741802692413, 0.011216393671929836, -0.015181784518063068, 0.01790091022849083, 0.010400655679404736, -0.02622445672750473, 0.0016947328113019466, 0.0036915906239300966, -0.013527650386095047, 0.006756271701306105, -0.0060689374804496765, -0.03652692213654518, -0.0047018215991556644, -0.005294742062687874, -0.00870120245963335, 0.005494899582117796, 0.0030155859421938658, -0.0030797873623669147, 0.022447893396019936, -0.011903727427124977, 0.01336148101836443, 0.017206022515892982, -0.01699453592300415, 0.011956599541008472, 0.0006972480332478881, 0.013202865608036518, 0.0005367440753616393, -0.012402234598994255, 0.02506127394735813, 0.015302634797990322, -0.0007288767374120653, 0.0068091438151896, 0.002868299838155508, 0.012032130733132362, -0.01012118998914957, 0.02809763140976429, -0.012764784507453442, 0.011646921746432781, 0.024532556533813477, -0.018807286396622658, 0.023747030645608902, -0.0003896941489074379, -0.017764953896403313, 0.0013265179004520178, 0.02500084973871708, 0.0014001608360558748, 0.01131458394229412, -0.0030099209398031235, -0.0016881237970665097, 0.011578943580389023, 0.015385719016194344, -0.0008048800518736243, 0.009992786683142185, 0.005366496741771698, -0.005551548209041357, -0.011533624492585659, -0.018490053713321686, 0.004875543527305126, 0.01131458394229412, -0.06102926284074783, -0.0073265330865979195, 0.0011055889772251248, 0.00689978152513504, -0.016360072419047356, 0.0071188220754265785, 0.012477765791118145, -0.0074209473095834255, 0.034109920263290405, 0.022750018164515495, 0.018595797941088676, 0.0027512265369296074, 0.008572799153625965, -0.017160704359412193, 0.0020053551997989416, 0.0024094474501907825, 0.006136915646493435, 0.017054960131645203, 0.02601296827197075, -0.008300886489450932, 0.015801141038537025, -0.008134717121720314, -0.013104675337672234, -0.02166236750781536, -0.0023622403386980295, 0.015347953885793686, 0.028535712510347366, 0.0050190528854727745, 0.0018712871242314577, -0.005487346556037664, -0.020831523463129997, 0.0027795506175607443, -0.0036217242013663054, -0.018852604553103447, -0.0020827746484428644, 0.007152811158448458, -0.007179247215390205, -0.004800011869519949, -0.012515530921518803, -2.61409004451707e-05, 0.014834340661764145, 0.011986812576651573, -0.0098643833771348, 0.013935519382357597, 0.0024547663051635027, 0.009849277324974537, 0.004150443244725466, 0.0026209349744021893, 0.0015446144388988614, -0.008157377131283283, 0.006495689041912556, 0.01354275643825531, -0.011926387436687946, -0.009524492546916008, 0.011609155684709549, 0.010053211823105812, -0.021586837247014046, 0.016858579590916634, -0.00814227107912302, 0.022991718724370003, -0.004437461961060762, -0.001999690430238843, 0.01598241552710533, 0.017523253336548805, 0.010785864666104317, 0.0008450060850009322, 0.022342149168252945, -0.00997012760490179, 0.0013217971427366138, 0.0056761750020086765, 0.0020733333658427, 0.016042841598391533, -0.002500084927305579, -0.028988901525735855, 0.011087990365922451, -0.03341503441333771, -0.025378506630659103, 0.005721493624150753, -0.01892813667654991, -0.012228512205183506, 0.01216808706521988, 0.009607577696442604, 0.004433685448020697, 0.016103265807032585, -0.008557693101465702, -0.00478112930431962, 0.0173419788479805, 0.0055062295868992805, 0.026209350675344467, 0.0006778931128792465, -0.017825379967689514, 0.015279975719749928, 0.00517389178276062, -0.026451049372553825, 0.01830877922475338, 0.013822222128510475, 0.018187928944826126, -0.008467054925858974, -0.0020204614847898483, 0.011103096418082714, 0.009645342826843262, -0.0020468973089009523, -0.028384650126099586, -0.0009734092163853347, -0.01790091022849083, -0.016088159754872322, 0.007893017493188381, 0.01968344859778881, 0.0012311596656218171, 0.004161772783845663, -0.0034480022732168436, 0.01138256210833788, 0.00756823318079114, 0.02495553158223629, 0.011291924864053726, 0.019925149157643318, 0.016118371859192848, -0.008769180625677109, 0.022916186600923538, -0.007179247215390205, 0.0030646813102066517, 0.002647371031343937, -0.02216087467968464, 0.0042297509498894215, -0.008603011257946491, 0.01826346106827259, 0.007009301800280809, -0.011450540274381638, -0.00877673365175724, 0.0040975711308419704, -0.01617879793047905, -0.020680461078882217, 0.009048646315932274, -0.0022904856596142054, 0.00018741196254268289, 0.026194244623184204, 0.02601296827197075, -0.006945100147277117, 0.016118371859192848, 0.02104301191866398, -0.0028135397005826235, -0.00988704338669777, 0.00978885218501091, 0.003938955720514059, -0.021178968250751495, -0.010181615129113197, -0.0001963812974281609, 0.007976101711392403, -0.001043275697156787, 0.0014350940473377705, 0.00011595230171224102, 0.01876196637749672, -0.00915438961237669, -0.019260473549365997, 0.03900434821844101, 0.008421736769378185, 0.006790260784327984, 0.008942902088165283, -0.02728189341723919, -0.003440449247136712, -0.004127783700823784, -0.017991548404097557, 0.011684686876833439, -0.025892117992043495, -0.023399587720632553, -0.0019619246013462543, -0.025499356910586357, 0.0015644413651898503, -0.013323715887963772, 0.013708924874663353, 0.035680972039699554, -0.01927557960152626, 6.756508082617074e-05, 0.00332904071547091, -0.004052252508699894, 0.017991548404097557, 0.005272082518786192, 0.004426132421940565, 0.0181577168405056, -0.005121020134538412, 0.01376935001462698, 0.02080131135880947, -0.0005357999471016228, -0.016647091135382652, 0.008874923922121525, 0.006091596558690071, -0.01272701844573021, 0.012870527803897858, -0.010793418623507023, -0.02125449851155281, 0.0005565710598602891, -0.0006783651770092547, -0.014947637915611267, 0.01947196014225483, 0.0034007953945547342, -0.015121360309422016, 0.0033044929150491953, 0.022855762392282486, 0.02222129888832569, -0.015529228374361992, 0.009169495664536953, 0.01957770437002182, -0.008210249245166779, -0.009464068338274956, 0.010929374024271965, -0.020227273926138878, 0.01435849443078041, -0.021571729332208633, 0.017432617023587227, 0.021420666947960854, 0.0025548450648784637, 0.005245646461844444, 0.01755346730351448, -0.028898263350129128, 0.018897922709584236, 0.03698010742664337, 0.025529569014906883, -0.0044563449919223785, -0.010038105770945549, 0.004822671413421631, -0.003429119475185871, -0.01749304123222828, 0.017568573355674744, 0.0016380844172090292, -0.011148415505886078, -0.018278567120432854, 0.014932531863451004, -0.04250899702310562, -0.0064163813367486, 0.03607373312115669, -0.016057947650551796, -0.017477935180068016, 0.0005537386168725789, -0.009441408328711987, 0.01372403185814619, 0.00658255023881793, 0.0011867850553244352, 0.017659209668636322, -0.004603630863130093, -0.002271602861583233, -0.0015427261823788285, 0.019547492265701294, 0.0028871826361864805, -0.0006033059908077121, -0.011896174401044846, 0.020000679418444633, -0.01703985407948494, 0.006601432804018259, 0.01749304123222828, -0.027312107384204865, 0.005494899582117796, 0.006431487388908863, 0.03809797018766403, 0.021949386224150658, -0.004573418293148279, 0.0028229812160134315, 0.006053830962628126, 0.012311596423387527, -0.007930783554911613, 0.0008129052584990859, -0.005589313805103302, -0.001342568313702941, 0.019955361261963844, -0.006118032615631819, -0.013731584884226322, 0.005332507658749819, -0.013520097360014915, 0.0017324984073638916, -0.0019354887772351503, 0.005963193718343973, -0.025982756167650223, -0.007572009693831205, -0.006019841879606247, -0.014048815704882145, 0.012998931109905243, 0.004739587195217609, -0.014539768919348717, 0.011699793860316277, 0.01171489991247654, 0.02575616165995598, -0.001422820263542235, -0.0038860838394612074, 0.013550309464335442, -0.004815118387341499, 0.0006599544431082904, 0.010997352190315723, -0.013731584884226322, 0.03199504688382149, -0.0009611353743821383, -0.006865792442113161, 0.007020631339401007, -0.009698214940726757, -0.006744942162185907, 0.008686095476150513, 0.010846289806067944, -0.00833865161985159, -0.013301055878400803, -0.006155798211693764, 0.0023395810276269913, 0.008648330345749855, 0.008837158791720867, -0.01607305370271206, 0.019094305112957954, 0.022357255220413208, 0.00900332722812891, 0.0288076251745224, 0.0052041043527424335, 0.020967479795217514, 0.020302804186940193, -0.011042671278119087, 0.001978919142857194, -0.010929374024271965, 0.00885226484388113, 0.003417789936065674, 0.0070810564793646336, 0.010430867783725262, 0.01131458394229412, 0.009139283560216427, 0.0018505160696804523, 0.005079477559775114, -0.012258725240826607, 0.020000679418444633, 0.006612762343138456, -0.0037123619113117456, 0.00015306883142329752, 0.013217971660196781, 0.022583849728107452, -0.003115664701908827, 0.010226933285593987, -0.012862974777817726, -0.009539599530398846, 0.005132349673658609, 0.015347953885793686, -0.0017910351743921638, -0.028067419305443764, -0.0224629994481802, -0.0004354849806986749, 0.004101347643882036, 0.004267516545951366, 0.001977030886337161, -0.014011050574481487, 0.015574547462165356, 0.015846459195017815, 0.016979429870843887, -0.0021205402445048094, -0.01714559830725193, -0.0037973343860358, -0.007526691071689129, 0.011261711828410625, 0.005196551326662302, 0.0029494960326701403, -0.014298069290816784, -0.0030155859421938658, 0.004418579395860434, -0.007893017493188381, 0.0013661717530339956, 0.002383011393249035, 0.01313488744199276, -0.012870527803897858, 0.011020012199878693, -0.01331616286188364, 0.008958008140325546, -0.005721493624150753, -0.008429289795458317, -0.0019581480883061886, 0.0025944991502910852, 0.01298382505774498, -0.009592470712959766, 0.0016144808614626527, -0.0040598055347800255, 0.005710164085030556, -0.036436282098293304, -0.024864893406629562, -0.0030439100228250027, 0.0007741954759694636, 0.011050224304199219, -0.0015096812276169658, 0.004037146456539631, 0.0062766484916210175, -0.012787443585693836, 0.023037036880850792, -0.010181615129113197, 5.042302291258238e-05, -0.008361311629414558, 0.013701371848583221, -0.0053249541670084, -0.009668001905083656, 0.0056761750020086765, -0.004422355908900499, -0.0009847389301285148, 0.004471451044082642, 0.01901877298951149, 0.0004043283115606755, -0.000761921692173928, 0.0071565876714885235, 0.008648330345749855, 0.007968548685312271, -0.03033335693180561, 0.0002328487316844985, 0.0036047296598553658, 0.007772167678922415, 0.013074462302029133, 0.01835409738123417, -0.015045828185975552, -0.008633224293589592, -0.0157709289342165, 0.012432446703314781, -0.015997523441910744, 0.02480446919798851, 0.012137874960899353, -0.016163691878318787, -0.007099939044564962, 0.014486896805465221, -0.006352179683744907, -0.013708924874663353, -0.0002068848698399961, -0.003515980439260602, 0.012583509087562561, 0.01876196637749672, -0.0069715362042188644, 0.003882307093590498, -0.021314924582839012, 0.032478444278240204, -0.007726848591119051, 0.00045342365046963096, -0.01774984784424305, -0.021526411175727844, 0.016254328191280365, -0.009917255491018295, -0.016163691878318787, 0.02043876051902771, -0.011556283570826054, -0.003391353879123926, -0.01179043110460043, 0.004350601229816675, -0.0025321857538074255, 0.007058396935462952, -0.021284710615873337, -0.004580971319228411, -0.020106423646211624, -0.02510659396648407, 0.006280425004661083, -0.010589484125375748, 0.003415901679545641, -0.007031960878521204, 0.003819993929937482, 0.0014360382920131087, -0.003612282918766141, -4.292890298529528e-05, -0.0019336004042997956, -0.012107661925256252, -0.0245023425668478, 0.009660448879003525, 0.024577874690294266, -0.007730625104159117, -0.018837498500943184, 0.01654134690761566, 0.024215323850512505, -0.002870188094675541, -0.005815907847136259, 0.004203314892947674, 0.005502453073859215, -0.014622853137552738, 0.02034812420606613, -0.0037557922769337893, -0.01632986031472683, -0.0061218091286718845, -0.030348462983965874, -0.007541797123849392, -0.047796186059713364, -0.006393721792846918, 0.0061218091286718845, -0.00974353402853012, -0.019517280161380768, -1.4346514944918454e-05, 0.00028631070745177567, -0.010619696229696274, -0.020363230258226395, -0.02577126957476139, 0.017009641975164413, -0.019849617034196854, -0.010665015317499638, 0.008633224293589592, -0.0004909532144665718, 0.018626010045409203, 0.012613722123205662, -0.020907055586576462, 0.0057290466502308846, -0.014622853137552738, -0.0014615299878641963, -0.02562020532786846, -0.01850515976548195, 0.012183193117380142, -0.001478524529375136, 0.010551718063652515, -0.02013663575053215, 0.010710333473980427, 0.002196071669459343, 0.007621104829013348, -0.009735980071127415, 0.007617328315973282, -0.007613551802933216, -0.004762246273458004, 0.01566518470644951, -0.011171074584126472, -0.005302295088768005, 0.015997523441910744, -0.008882476948201656, -0.01417721901088953, -0.0068015907891094685, -0.007054620422422886, 0.007707966025918722, -0.006608985830098391, 0.004713151138275862, -0.006042501423507929, -0.0009932362008839846, -0.00031156648765318096, 0.008059185929596424, 0.00304202176630497, 0.017070066183805466, 0.019668342545628548, -0.025831693783402443, -0.007190576754510403, 0.011246605776250362, 3.522825500112958e-05, -0.020257486030459404, 0.01912451721727848, -0.015695396810770035, 0.014569981954991817, 0.014486896805465221, 0.015604759566485882, 0.0052418699488043785, 0.00422219792380929, -0.006665634457021952, 0.01648092269897461, -0.002279156120494008, -0.009577364660799503, -0.0006944155902601779, 4.289939897716977e-05, 0.013572968542575836, -0.0189734548330307, -0.0047018215991556644, 0.009207261726260185, -0.0005466575385071337, 0.0036557132843881845, 0.011178627610206604, 0.0025435155257582664, 0.01130703091621399, 0.013338821940124035, 0.008081845939159393, 0.031118882820010185, 2.0343284631962888e-05, -0.005638408940285444, 0.01227383129298687, 0.00836886465549469, 0.004214644897729158, 0.015325293876230717, 0.007915676571428776, -0.011843303218483925, 0.035227783024311066, 6.921732710907236e-05, 0.008572799153625965, 0.01250042486935854, -0.005132349673658609, 0.018384311348199844, -0.004962404258549213, -0.008731414563953876, -0.01001544576138258, -0.0112314997240901, 0.030257826671004295, 0.0033743593376129866, 0.02540871873497963, -0.034412045031785965, 0.008723861537873745, -0.020000679418444633, -0.0020676683634519577, 0.03341503441333771, 0.010393102653324604, 0.01098224613815546, -0.003599064890295267, -0.0018259683856740594, -0.02262916788458824, 0.0017032300820574164, -0.014902318827807903, 0.02065024897456169, 0.004792458843439817, 0.002953272545710206, 0.005041711963713169, -0.018777072429656982, 0.0008473664056509733, 0.009902149438858032, -0.0002917395322583616, -0.010823630727827549, -0.016239222139120102, -0.014781469479203224, 0.012364468537271023, -0.013248184695839882, 0.0019940254278481007, 0.010823630727827549, -0.007757061161100864, -0.004320388659834862, 0.006110479589551687, -0.017976442351937294, 0.014894765801727772, 0.012870527803897858, -0.0025926106609404087, -0.00780993327498436, -0.015997523441910744, -0.0058838860131800175, 0.008451948873698711, -0.024683618918061256, 0.017175810411572456, 0.0106499083340168, 0.011601602658629417, -0.03259929642081261, 0.0004800956230610609, 0.00032879706122912467, -0.004565865267068148, 0.006967759691178799, 0.02697976864874363, 0.009471621364355087, 0.0018580692121759057, -0.03084697015583515, 0.02981974370777607, 0.018746860325336456, -0.023928305134177208, -0.010211827233433723, -0.013527650386095047, -0.008451948873698711, -0.0009483894682489336, 0.004913309123367071, -0.02977442555129528, 0.007334086112678051, -0.0029022889211773872, -0.016828365623950958, 0.001340680057182908, -0.014592641033232212, 0.017266448587179184, -0.009093964472413063, 0.003083564108237624, 0.003916296176612377, 0.018082184717059135, -0.008648330345749855, -0.011918834410607815, -0.01693410985171795, 0.012364468537271023, -0.003576405579224229, 0.009124177508056164, 0.009645342826843262, -0.001391663565300405, 0.0005952807841822505, 0.0007265163585543633, 0.010506398975849152, 0.017477935180068016, 0.009252579882740974, -0.0003625500830821693, -0.006004735827445984, -0.016722623258829117, -0.016209010034799576, -0.013384141027927399, -0.009977680630981922, -0.02474404312670231, -0.008044079877436161, 0.0330524817109108, -0.003780340077355504, -0.010415761731564999, 0.003761457046493888, -0.007470042444765568, -0.017840486019849777, 0.009720874018967152, -0.0181577168405056, 0.006053830962628126, 0.024562768638134003, -0.006850685924291611, -0.010053211823105812, -0.011510965414345264, -9.110959217650816e-05, 0.008738967590034008, -0.0020846629049628973, 0.011050224304199219, -0.004214644897729158, -0.0076815299689769745, 0.03099803254008293, -0.009448961354792118, 0.014162112958729267, -0.01217564009130001, 0.014683278277516365, 0.004112677648663521, -0.017115386202931404, -0.008693648502230644, -0.008686095476150513, 0.007039514370262623, -0.012085002847015858, -0.01171489991247654, -0.02510659396648407, 0.009660448879003525, -0.047342997044324875, 0.004694268107414246, 0.0208919495344162, -0.0049812872894108295, -0.006427710875868797, 0.0041466667316854, -0.005162562243640423, 0.01632986031472683, 0.013837328180670738, 0.005687504541128874, -0.004992616828531027, -0.016752835363149643, -0.0023716818541288376, -0.013293502852320671, -0.006337073165923357, 0.014607747085392475, -0.009207261726260185, 0.016118371859192848, -0.018399417400360107, 0.01305935624986887, -0.022327043116092682, -0.0011830085422843695, 0.008731414563953876, -0.010612143203616142, 0.013180206529796124, -0.001159404986537993, 0.006488136015832424, 0.012387127615511417, -0.008958008140325546, -0.015257315710186958, 0.009675555862486362, -0.020453866571187973, 0.0005164450267329812, 0.022598955780267715, 0.005192774813622236, -0.0008733302820473909, 0.002683248370885849, -0.007020631339401007, 0.0002212830149801448, 0.009433855302631855, -0.0020676683634519577, -0.02065024897456169, 0.018792180344462395, 0.013051803223788738, -0.008693648502230644, 0.02353554405272007, 0.017372190952301025, -0.005105913616716862, 0.001980807399377227, 0.00897311419248581, -0.02349022403359413, -0.011926387436687946, -0.0021205402445048094, 0.0051474557258188725, -0.007545573636889458, 0.0015446144388988614, 0.024064261466264725, -0.02383766882121563, 0.016722623258829117, -0.010891608893871307, 0.020453866571187973, -0.005068148020654917, -0.00814227107912302, 0.019033879041671753, 0.012613722123205662, 0.030091656371951103, -0.00045932451030239463, 0.009796405211091042, 0.021722793579101562, 0.04012221097946167, -0.013021590188145638, 0.012394680641591549, -0.017628997564315796, 0.0005405206466093659, 0.0033743593376129866, -0.009464068338274956, 0.027145937085151672, 0.0030155859421938658, -0.006869568955153227, 0.019743872806429863, -0.004611183889210224, 0.0018930024234578013, 0.014653066173195839, -0.01458508800715208, -0.01123905275017023, 0.0004130616143811494, 0.01774984784424305, 0.0056761750020086765, -0.0013199088862165809, -0.01749304123222828, 0.03108867071568966, 0.009645342826843262, -0.011548730544745922, -0.0017192804953083396, 0.0011055889772251248, 0.021798323839902878, -0.003857759525999427, 0.02489510551095009, -0.0058423434384167194, -0.024834681302309036, -0.00649191252887249, -0.026209350675344467, -0.03752393275499344, 0.02891336940228939, 0.01463040616363287, -0.00335925305262208, -0.038823071867227554, -0.013293502852320671, -0.017976442351937294, 0.012455105781555176, -0.0036576015409082174, 0.011752665042877197, -0.0002950440102722496, 0.019048985093832016, 0.0073794047348201275, 0.003574517322704196, -0.009018433280289173, -0.015650078654289246, -0.0030344687402248383, 0.02200981229543686, 0.0069488766603171825, -0.015302634797990322, -0.0006585382507182658, -0.031572069972753525, 0.004275069572031498, -0.0037369094789028168, 0.015423485077917576, -0.01042331475764513, -0.0189734548330307, 0.024879999458789825, -0.023611074313521385, 0.0363154336810112, -0.005747929681092501, 0.008542586117982864, 0.013263290748000145, -0.0026908013969659805, 0.0048491074703633785, 0.0338682197034359, 0.0012717577628791332, -0.005128573160618544, 0.010952034033834934, -0.0015285640256479383, 0.007149034645408392, 0.004339271225035191, -0.02790125086903572, -0.012591062113642693, -0.005819684360176325, 0.01632986031472683, -0.007243448402732611, -0.002230060752481222, 0.007560680154711008, 0.012560850009322166, 0.01511380635201931, 0.031028244644403458, -0.00714148161932826, 0.01938132382929325, 0.0027398967649787664, -0.004403472878038883, -0.011480752378702164, 0.012764784507453442, -0.012152981013059616, 0.030695907771587372, -0.011752665042877197, 0.0023641285952180624, -0.017568573355674744, 0.019955361261963844, 0.01942664198577404, 0.02596765011548996, 0.005117243621498346, -0.0028173162136226892, 0.007923229597508907, 0.02323341742157936, -0.006877121981233358, 0.00239056465215981, 0.0010017334716394544, -0.005717717111110687, -0.0076966360211372375, 0.010438420809805393, -0.0029759318567812443, -0.023097461089491844, 0.01250042486935854, 0.0006207725964486599, -0.005891439039260149, -0.0073416391387581825, -0.005683728028088808, -0.0017136156093329191, 0.0035065391566604376, 0.02510659396648407, -0.011473199352622032, 0.0025189677253365517, 0.011737558990716934, -0.01075565256178379, 0.003172313328832388, -0.006046277936547995, -0.025635313242673874, 0.020076211541891098, -0.006065160967409611, 0.004954851232469082, 0.0330524817109108, 0.01169223990291357, -0.008308439515531063, 0.0010517728514969349, -0.01583135314285755, -0.01216808706521988, -0.007266107946634293, -0.023293843492865562, -0.016465816646814346, 0.00234524579718709, 0.005396709311753511, -0.007436053361743689, -0.027296999469399452, -0.01628454215824604, 0.022689592093229294, 0.011352350004017353, 0.0031930843833833933, -0.00862567126750946, 0.025635313242673874, -0.020378336310386658, 0.0003467357310000807, 0.013119781389832497, -0.016209010034799576, 0.004271293058991432, 0.017508147284388542, -0.004233527462929487, 0.0013312385417521, -0.0025302974972873926, -0.014441578648984432, -0.012137874960899353, 0.0038672008085995913, 0.006956429686397314, 0.008859817869961262, 0.017568573355674744, -0.003695367369800806, -0.007160364184528589, 0.011956599541008472, 0.007099939044564962, 0.00041164542199112475, -0.006371062248945236, -0.0041391137056052685, 0.007439829874783754, -0.006473029498010874, 0.003232738235965371, 0.007983654737472534, 0.007500255014747381, -0.016722623258829117, -0.020378336310386658, 0.0031911961268633604, 0.013119781389832497, -0.0011801760410889983, -0.014449131675064564, -0.012719465419650078, -0.0021280935034155846, -0.0031383242458105087, 0.04051497206091881, 0.007383181247860193, -0.009041092358529568, -0.016088159754872322, 0.005623302888125181, 0.0043241651728749275, 0.03728223219513893, 0.00047490285942330956, 0.0023735701106488705, 0.011065330356359482, 0.016662197187542915, -0.0060236188583076, -0.014909871853888035, 0.008104505017399788, -0.009471621364355087, -0.0010697116376832128, 0.00915438961237669, 0.0014124347362667322, 0.0001704174210317433, 0.0064239343628287315, -0.016239222139120102, -0.027961675077676773, -0.009932361543178558, -0.007436053361743689, -0.009660448879003525, 0.01376935001462698, -0.005513782612979412, -0.006473029498010874, -0.008738967590034008, 0.00918460264801979, -0.00889758300036192, 0.015287528745830059, 0.004735810682177544, -0.0074964785017073154, -0.008686095476150513, -0.003946508746594191, -0.0013048026012256742, -0.00851992703974247, 0.011261711828410625, 0.004913309123367071, -0.017976442351937294, -0.014789022505283356, 0.002513302955776453, 0.00806673988699913, -0.017976442351937294, -0.022991718724370003, 0.006918664090335369, 0.008935349062085152, 0.00042344717076048255, 0.0046640560030937195, 0.012085002847015858, -0.001128248288296163, -0.007160364184528589, -0.023898093029856682, -0.026360413059592247, 0.002235725522041321, 0.025438930839300156, -0.00046546143130399287, 0.013905306346714497, 0.018293673172593117, -0.0032969398889690638, -0.005079477559775114, 0.027871038764715195, -0.004429908934980631, -0.01260616909712553, 0.009297898970544338, -0.0022697146050632, 0.010899161919951439, -0.029034219682216644, -0.0010536612244322896, 0.012583509087562561, -0.0011877291835844517, -0.0034593320451676846, -0.0069337706081569195, -0.004365707281976938, 0.014698384329676628, 0.014494450762867928, -0.0032553975470364094, 0.023626180365681648, 0.0012972495751455426, 0.0021186519879847765, -0.014018603600561619, 0.01998557336628437, -0.005181444808840752, 0.006333296652883291, -0.02824869379401207, -0.0063672857359051704, -0.0065938797779381275, -0.0174024049192667, 0.002441548276692629, -0.00821780227124691, 0.017976442351937294, -0.00811205804347992, -0.0021809653844684362, -0.0023395810276269913, 0.027825718745589256, 0.011654474772512913, -0.00941119622439146, -0.015076041221618652, -0.003614171175286174, 0.000282534136204049, -0.008021420799195766, 0.007930783554911613, 0.009735980071127415, 0.01663198508322239, -0.016828365623950958, -0.009479174390435219, -0.008308439515531063, 0.0043241651728749275, 0.005102137103676796, -0.023898093029856682, -0.008587905205786228, 0.021994704380631447, -0.012976272031664848, 0.004626289941370487, -0.0027040194254368544, -0.0205445047467947, 0.004656502511352301, 0.02222129888832569, -0.008028973825275898, 0.004852883983403444, -0.005121020134538412, -0.013557862490415573, 0.00522298738360405, -0.017885804176330566, 0.0008454781491309404, 0.02611871249973774, 0.05199572443962097, 0.026390625163912773, 0.0205445047467947, -0.0021658590994775295, 0.003125106217339635, -0.0473732128739357, -0.003268615575507283, 0.006231329403817654, -0.014124346897006035, 0.007976101711392403, 0.0014001608360558748, -0.023611074313521385, 0.025544675067067146, 0.015499016270041466, 0.001860901596955955, 0.010544165037572384, -0.009909702464938164, 0.025635313242673874, 0.021118542179465294, 0.011397668160498142, 0.00296649057418108, 0.002392452908679843, -0.0018703429959714413, -0.012998931109905243, 0.00796099565923214, 0.0012840315466746688, 0.011820643208920956, -0.013489884324371815, 0.007757061161100864, 0.012704359367489815, -0.0038672008085995913, -0.0064616999588906765, -0.012991378083825111, 0.013104675337672234, 0.014917425811290741, 0.03734266012907028, 0.0061067030765116215, 0.011246605776250362, 0.007466265931725502, -0.009516939520835876, -0.03371715918183327, -0.022810442373156548, 0.0042863995768129826, 0.002282932633534074, 0.0018845051527023315, 0.008497267961502075, -0.0006944155902601779, 0.00446389801800251, -0.029502512887120247, 0.003636830486357212, 0.007386958226561546, 0.010310018435120583, -0.018429629504680634, -0.012364468537271023, 0.01148830633610487, -0.007915676571428776, 0.006087820045650005, -0.006586326751857996, -0.012689253315329552, -0.02114875428378582, 0.015604759566485882, -0.015740716829895973, -0.0019251032499596477, -0.008451948873698711, -0.008565246127545834, 0.0024547663051635027, -0.0069715362042188644, 0.004867990035563707, 0.02667764388024807, -0.006639198400080204, -0.0026624770835042, -0.014607747085392475, 0.01395062543451786, -0.025242550298571587, -0.011556283570826054, -0.0061218091286718845, -0.02176811173558235, -0.002596387406811118, -0.010075870901346207, -0.013021590188145638, -0.0015153461135923862, -0.004327941685914993, 0.008300886489450932, 0.0005442972178570926, -0.004803788848221302, -0.003988050855696201, 0.028988901525735855, 0.015861567109823227, -0.0015408379258587956, -0.00398049782961607, -0.026133818551898003, -0.006295531056821346, -0.011276817880570889, 0.013882647268474102, 0.01678304746747017, -0.0128327626734972, -0.029200388118624687, 0.011873515322804451, 0.0019288797629997134, 0.027055300772190094, -0.020831523463129997, 0.0002950440102722496, -0.00017171561194118112, 0.02278023026883602, 0.000618884339928627, -0.025272762402892113, -0.022296831011772156, -0.015589653514325619, -0.012281384319067001, -0.00017077146912924945, -0.016420498490333557, 0.011042671278119087, -0.01012118998914957, 0.027704868465662003, 0.002832422498613596, 0.018127504736185074, 0.004437461961060762, 0.017221128568053246, 0.010219380259513855, 0.022206192836165428, 0.007001748774200678, 0.0090788584202528, 0.022040024399757385, 0.002547292038798332, 0.005162562243640423, -0.015431038103997707, -0.004316612146794796, 0.013520097360014915, 0.0074209473095834255, 0.012447552755475044, 0.0035046509001404047, -0.004033369943499565, 0.01708517223596573, 0.016057947650551796, -0.023097461089491844, 0.012439999729394913, 0.013935519382357597, -0.011442987248301506, 0.01800665445625782, -0.007794826757162809, -0.03196483105421066, 0.021496199071407318, 0.012492871843278408, -0.01561986654996872, -0.006563667207956314, 0.0007312371162697673, -0.00040598056511953473, 0.007409617304801941, 0.008255567401647568, 0.007481371983885765, -0.002866411581635475, -0.011405221186578274, -0.009509386494755745, 0.0012670370051637292, -0.010702780447900295, -0.001367115997709334, -0.014940084889531136, 0.0022489435505121946, -0.006136915646493435, -0.0165866669267416, -0.013278396800160408, 0.017477935180068016, 0.005113466642796993, -0.023626180365681648, 0.007945889607071877, -0.0027984334155917168, -0.009464068338274956, 0.026541687548160553, -0.01425275020301342, -0.021828535944223404, -0.011782878078520298, -0.007538020610809326, -0.0010848178062587976, 0.0018335215281695127, 0.007371851708739996, 0.02338447980582714, 0.004909532610327005, -0.003517868695780635, -0.027825718745589256, 0.0024585428182035685, 0.018399417400360107, 0.002097880933433771, 0.01324063166975975, 0.0027776623610407114, -0.010430867783725262, 0.007398287765681744, -0.003769010305404663, 0.014857000671327114, 0.008285780437290668, -0.005132349673658609, -0.015242209658026695, 0.002756891306489706, 0.004090018104761839, 0.00671850610524416, -0.02758401818573475, -0.004426132421940565, 0.0090788584202528, -0.018233248963952065, -0.04063582047820091, -0.005313624627888203, 0.002870188094675541, 0.023701712489128113, -0.009448961354792118, 0.028384650126099586], "e517b8e1-15d2-4458-87f4-4dfeb1811716": [-0.03028957173228264, -0.028654219582676888, -0.000524379312992096, 0.04010168835520744, -0.009687686339020729, -0.028061700984835625, -0.01656683161854744, 0.01923316717147827, -0.01687494106590748, 0.0596311129629612, -0.008022707886993885, 0.01294061541557312, -0.0016249833861365914, -0.008093809708952904, -0.007767924573272467, 0.023546705022454262, -0.01451671589165926, 0.011198609136044979, 0.01674458757042885, -0.02140178717672825, 0.03436610475182533, -0.007394637446850538, -0.019766435027122498, 0.0026811484713107347, 0.012454750016331673, -0.006606587208807468, -0.022764580324292183, 0.012644356116652489, -0.011447467841207981, 0.011447467841207981, -0.02152029052376747, 0.02281198278069496, 0.0013272425858303905, -0.004994935356080532, -0.015535849146544933, -0.02424587868154049, -0.002722624922171235, 0.029104534536600113, 0.01022095326334238, 0.02708997018635273, -0.012632505968213081, 0.00994246918708086, 0.029365243390202522, -0.03614366054534912, -0.03491121903061867, 0.0021478815469890833, -0.04045720025897026, -0.019316120073199272, 0.026378946378827095, -0.007045051082968712, 0.0027166996151208878, 0.010671267285943031, 0.012395498342812061, 0.07546322047710419, 0.009752863086760044, -0.025122806429862976, 0.020868519321084023, 0.03754200413823128, 0.01996789127588272, -0.06522449105978012, 0.021152928471565247, -0.006126646883785725, -0.005548940505832434, -0.028417212888598442, 0.016507579013705254, -0.016981594264507294, 0.023831114172935486, -0.01451671589165926, -0.04318278655409813, 0.009812114760279655, -0.028843825682997704, 0.02225501462817192, -0.04396491125226021, -0.01225329376757145, 0.04128672555088997, -0.040054284036159515, 0.05768765136599541, 0.019766435027122498, 0.025596821680665016, -0.02739807963371277, 0.014374511316418648, -0.006138497032225132, 0.004197997041046619, 0.0080464081838727, 0.06275961548089981, 0.004298725631088018, -0.04308798164129257, -0.025383515283465385, -0.02829870767891407, -0.023842966184020042, -0.001867916202172637, -0.0046157231554389, -0.01134673971682787, 0.010730519890785217, 0.0276113860309124, 0.007619794458150864, -0.0068613700568675995, 0.015583250671625137, -0.010718668811023235, -0.024601390585303307, -0.017846673727035522, -0.00615627272054553, 0.007779774721711874, -0.01326057594269514, -0.015512147918343544, 0.01586765982210636, 0.006713240407407284, 0.01743190921843052, -0.023179344832897186, 0.01365163829177618, -0.04007798805832863, -0.04887096956372261, 0.0149077782407403, -0.010641641914844513, -0.041950345039367676, -0.04204514995217323, 0.007382786832749844, 0.024388082325458527, -0.019553128629922867, -0.019695332273840904, 0.016981594264507294, -0.015132935717701912, 0.010860873386263847, 0.013319827616214752, -0.015286990441381931, 0.007904203608632088, 0.01596246287226677, 0.02618934027850628, 0.052520886063575745, -0.009065541438758373, 0.002756694797426462, 0.03114279918372631, 0.03455571085214615, 0.022018006071448326, 0.006174048408865929, -0.007489440497010946, 0.011370440013706684, 0.07816510647535324, -0.01514478586614132, -0.02035895362496376, -0.04368050396442413, 0.041642237454652786, -0.018048129975795746, 0.026900364086031914, -0.003155163722112775, -0.014173055067658424, -0.034745316952466965, 0.03965137153863907, 0.003460311098024249, 0.03130870684981346, -0.052046872675418854, -0.024316981434822083, -0.048728764057159424, 0.0039402516558766365, 0.03687838464975357, -0.019517576321959496, -0.004168371204286814, 0.02924673818051815, -0.01851029507815838, 0.02321489527821541, -0.004870506469160318, -0.04538695886731148, 0.03287295624613762, 0.02040635421872139, 0.05593379586935043, 0.02351115457713604, 0.026995167136192322, 0.038845546543598175, -0.021935055032372475, 0.014019000343978405, 0.03998318314552307, -0.0338209867477417, 0.008449321612715721, -0.00538303516805172, -0.011826680041849613, -0.007839026860892773, 0.004343164619058371, 0.0013124296674504876, 0.027255874127149582, 0.006399205420166254, -0.022657927125692368, 0.026900364086031914, -0.008947037160396576, 0.013959747739136219, 0.022918635979294777, 0.016590531915426254, -0.018569545820355415, 0.002867792034521699, -0.010795696638524532, 0.006014068145304918, -0.00871595460921526, 0.02708997018635273, -0.001759781502187252, 0.015204038470983505, -0.0069324723444879055, -0.01751486212015152, 0.03770790994167328, -0.01785852387547493, -0.010321681387722492, 0.0011383771197870374, -0.030787289142608643, -0.026165639981627464, -0.02566792443394661, 0.010428334586322308, -0.022717179730534554, 0.013853094540536404, 0.003187752328813076, -0.03531413525342941, 0.053516317158937454, -0.006476232782006264, 0.0676419734954834, -0.05716623365879059, -0.0002183062315452844, -8.211943350033835e-05, 0.012336245737969875, 0.007803475484251976, 0.0150736840441823, 0.02264607697725296, -0.007234657183289528, -0.0018768040463328362, 0.020394504070281982, -0.0059400033205747604, -0.00836636871099472, -0.02290678583085537, -0.061053160578012466, -0.015678053721785545, -0.001913836458697915, -0.0006628806586377323, -0.029649652540683746, -0.00439945375546813, -0.013817543163895607, -0.001106529263779521, -0.014232306741178036, 0.013236874714493752, 0.016626084223389626, 0.04067050665616989, 0.04353829845786095, 0.012324395589530468, 0.0005543755833059549, -0.006280701607465744, 0.011062330566346645, 0.03808712214231491, 0.02372446097433567, -0.04185554385185242, 0.012371797114610672, 0.023736311122775078, -0.009053690358996391, 0.030597683042287827, -0.001438339939340949, -0.0029448196291923523, -0.01648387871682644, -0.018605098128318787, 0.004242436029016972, -0.012762859463691711, -0.04275617375969887, 0.01833253912627697, 0.04306428134441376, 0.008289340883493423, -0.015903210267424583, -0.014931479468941689, 0.025075405836105347, 0.05621820315718651, -0.018972458317875862, -0.0013894571457058191, 0.06313882768154144, -0.03462681174278259, -0.0019938265904784203, -0.0299814622849226, -0.012585104443132877, 0.038845546543598175, 0.0015435121022164822, 0.001616095658391714, 0.0016960856737568974, -0.014955179765820503, -0.0046957130543887615, 0.024316981434822083, -0.024340681731700897, 0.0069620986469089985, -0.01893690787255764, -0.029080834239721298, -0.04379900544881821, -0.030218470841646194, 0.04349089786410332, 0.032375238835811615, 0.0511462427675724, 0.01915021426975727, -0.020939622074365616, -0.02493320032954216, -0.036048855632543564, -0.03296775743365288, -0.003629178972914815, 0.004858655855059624, 0.018048129975795746, 0.014173055067658424, 0.011180833913385868, 0.004550545942038298, -0.039106257259845734, 0.001487963367253542, 0.002918156096711755, -0.010280204936861992, 0.008502648212015629, 0.017455609515309334, 0.01712379977107048, -0.022112809121608734, 0.010309831239283085, -0.020216748118400574, 0.052615687251091, 0.008633001707494259, -0.025857530534267426, 0.05470135435461998, 0.03486381843686104, -0.005691145081073046, -0.025170208886265755, -0.025762727484107018, 0.02441178448498249, -0.012596954591572285, -0.02174544893205166, -0.017064547166228294, -0.025312412530183792, 0.0044350046664476395, -0.013639788143336773, 0.012976166792213917, -0.009024064987897873, 0.018996160477399826, 0.02730327658355236, -0.04323018714785576, 0.006132571958005428, -0.02993406169116497, 0.024838397279381752, -0.007898278534412384, -0.027848394587635994, 0.003898775205016136, -0.027848394587635994, -0.010434259660542011, -0.023487454280257225, 0.0026485600974410772, -0.042590267956256866, -0.049107976257801056, -0.02027600072324276, -0.01225329376757145, -0.01915021426975727, -0.03671247884631157, 0.026118239387869835, 0.009160344488918781, -0.02105812542140484, -0.009332174435257912, 0.017870374023914337, 0.012916915118694305, -0.015002581290900707, 0.01686309091746807, 0.0006910252850502729, -0.008982588537037373, 0.031901225447654724, -0.01225329376757145, 0.04344349354505539, -0.009711386635899544, -0.009853591211140156, -0.005525239743292332, 0.0005177134880796075, 0.0007210215553641319, 0.001416120445355773, -0.0398646779358387, -0.002128624590113759, -0.02493320032954216, -0.015630651265382767, 0.019790135324001312, 0.021638793870806694, -0.009172194637358189, -0.021591393277049065, -0.0127036077901721, 0.00025293155340477824, -0.002571532502770424, -0.011868155561387539, 0.013509433716535568, 0.04723561555147171, -0.06299662590026855, 0.016590531915426254, 0.005134177394211292, -0.01136451493948698, 0.019375372678041458, -0.02882012538611889, -0.011542270891368389, 0.005883713718503714, 0.017633365467190742, -0.011222310364246368, -0.015761006623506546, 0.021449187770485878, -0.06332843005657196, -0.013343527913093567, 0.02851201593875885, -0.028227606788277626, 0.00970546156167984, -0.03126130253076553, -0.029128234833478928, -0.001807183027267456, 0.0018871730426326394, 0.0160928163677454, -0.05034041777253151, 0.0007184293353930116, -0.05550718307495117, 0.012691757641732693, -0.022977888584136963, -0.016803840175271034, -0.03441350534558296, 0.0007032460416667163, -0.0418318435549736, 0.0023256372660398483, -0.027706189081072807, 0.043324992060661316, -0.005969629157334566, 0.03024217113852501, -0.04569506645202637, -0.001271693967282772, -0.010072823613882065, 0.025644224137067795, 0.04093121364712715, -0.017799271270632744, -0.003045547753572464, -0.06986984610557556, 0.024909500032663345, 0.04192664474248886, 0.02364150807261467, -0.008526348508894444, 0.016317974776029587, 0.013201323337852955, 0.018368089571595192, 0.025904931128025055, -0.001533142989501357, 0.010037272237241268, 0.013272426091134548, -0.011151207610964775, 0.013248724862933159, -0.03481641784310341, -0.012359946966171265, -0.011666699312627316, -0.027374379336833954, 0.02390221692621708, 0.027469182386994362, -0.005697070620954037, -0.03493492305278778, 0.007975306361913681, -0.00421873526647687, 0.016922343522310257, -0.000707689905539155, -0.033109962940216064, -0.023440051823854446, 0.00108060659840703, 0.020690763369202614, -0.001425748923793435, -0.015049982815980911, -6.862573627586244e-06, 0.02825130708515644, -0.011411916464567184, -0.017799271270632744, 0.019470175728201866, -0.017526712268590927, 0.030905792489647865, 0.006025918293744326, 0.014730023220181465, -0.04017278924584389, -0.008816682733595371, -0.013758291490375996, 0.014267858117818832, -0.009172194637358189, 0.003655842272564769, -0.050577424466609955, -0.004275024868547916, 0.015441046096384525, 0.0025937519967556, 0.007797550410032272, 0.0031344257295131683, -0.0010406115325167775, -0.007839026860892773, 0.04408341646194458, 0.027848394587635994, -0.01317762304097414, -0.034010592848062515, -0.02045375667512417, 0.015275140292942524, 0.0020293777342885733, 0.024091823026537895, -7.138002547435462e-05, -0.020975172519683838, 0.022409070283174515, -0.015180337242782116, 0.03649917244911194, -0.016898643225431442, -0.0277772918343544, -0.030099965631961823, 0.02730327658355236, 0.016839390620589256, 0.013284276239573956, 0.011228235438466072, 0.002035302808508277, 0.034010592848062515, 0.016116516664624214, 0.03894035145640373, 0.008289340883493423, -0.016116516664624214, -0.04083641245961189, -0.001702010864391923, -0.030171068385243416, 0.008988513611257076, -0.008514498360455036, -0.04112081974744797, 0.02135438472032547, 0.004245398566126823, 0.007827176712453365, -0.029317840933799744, 0.02333339862525463, -0.017585964873433113, 0.02471989393234253, -0.04650089144706726, 0.03851373493671417, 0.004864581394940615, 0.004020241554826498, 0.012976166792213917, 0.007738298270851374, 0.02687666192650795, 0.014445614069700241, 0.0021952830720692873, -0.0035254880785942078, -0.025336112827062607, 0.008348592557013035, -0.004304650705307722, -0.011228235438466072, -0.027469182386994362, -0.01730155572295189, -0.0019464249489828944, -0.0012420680141076446, -0.016424627974629402, 0.009652134962379932, -0.008887785486876965, -0.00860337633639574, 0.007584243547171354, 0.005637818481773138, -0.01201628614217043, 0.002059003571048379, 0.016211319714784622, -0.010629790835082531, -0.014647070318460464, 0.037684209644794464, -0.005785948131233454, -0.010534987784922123, -0.031379807740449905, 0.004275024868547916, -0.002275272971019149, 0.009290697984397411, -0.00666583888232708, 0.015121085569262505, -0.009302549064159393, 0.004965309519320726, -0.025122806429862976, 0.0067013902589678764, -0.005889639258384705, -0.03661767393350601, 0.011897781863808632, 0.002340450184419751, -0.002352300565689802, -0.019126513972878456, -0.02130698412656784, 0.008875935338437557, 0.013225024566054344, 0.024956900626420975, -0.022527573630213737, -0.002341931452974677, -0.04567136615514755, 0.009278847835958004, 0.032896656543016434, 0.028322409838438034, 0.011773352511227131, -0.007726448122411966, 0.051051437854766846, 0.00032514482154510915, -0.016578681766986847, 0.03860853984951973, -0.011192684061825275, -0.002399702090770006, -0.0449366420507431, -0.01678013801574707, -0.012810260988771915, 0.0012813223293051124, 0.025904931128025055, -0.030123667791485786, 0.023866666480898857, 0.001961237983778119, -0.006736941169947386, -0.015038132667541504, -0.019185766577720642, 0.007661270909011364, 0.02656855247914791, 0.010274279862642288, -0.004520920105278492, 0.013959747739136219, -0.009225521236658096, 0.023037139326334, -0.014184905216097832, -0.007951605133712292, 0.015097384341061115, -0.007483515422791243, 0.006227375008165836, 0.00197308836504817, -0.001651646802201867, -0.015583250671625137, -0.0365939736366272, 0.025999734178185463, -0.03657027333974838, 0.025288712233304977, -0.009047765284776688, 0.03076358698308468, 0.022883085533976555, -0.035006023943424225, 0.011032704263925552, -0.019908638671040535, 0.010973452590405941, 0.025691624730825424, 0.02191135287284851, 0.03130870684981346, 0.028180204331874847, -0.025952333584427834, -0.00416244613006711, 0.012288844212889671, 0.023973319679498672, 0.0023967395536601543, -0.01578470692038536, 0.03294405713677406, -0.0054808007553219795, -0.028796425089240074, -0.015452896244823933, -0.0004351311654318124, -0.02264607697725296, -0.00875743106007576, 0.013699039816856384, -0.013627937063574791, 0.027895795181393623, -0.016969744116067886, 0.03792121633887291, 0.00832489226013422, -0.0013464994262903929, 0.01596246287226677, -0.015358093194663525, -0.025549421086907387, 0.022053558379411697, 0.042471762746572495, -0.00828341580927372, 0.027848394587635994, -0.02191135287284851, 0.018948758020997047, 0.005907414481043816, 0.028393510729074478, -0.026852961629629135, 0.007963455282151699, -0.02248017117381096, 0.029223037883639336, -0.0045120324939489365, -0.04638238996267319, -0.00380693469196558, 0.03744720295071602, 0.017017146572470665, -0.020655212923884392, 0.030005162581801414, -0.02419847622513771, 0.029223037883639336, 0.0006165900849737227, 0.014978880994021893, 0.014232306741178036, -0.009735087864100933, 0.010546838864684105, 0.012632505968213081, 0.05602859705686569, 0.005003822967410088, -0.0352904312312603, 0.020370803773403168, 0.004426117055118084, 0.0028026150539517403, -0.004710526205599308, -0.002344893990084529, 0.017111949622631073, -0.003072211053222418, -0.016377225518226624, -0.015725454315543175, -0.02186395227909088, -0.03844263404607773, 0.029365243390202522, -0.028867525979876518, -0.008496723137795925, -0.01630612276494503, -0.008638927713036537, -0.0103335315361619, -0.009693611413240433, -0.010167626664042473, 0.04228215664625168, -0.00654733506962657, -0.00183384632691741, 0.002341931452974677, 0.026378946378827095, -0.02941264398396015, 0.0004803107294719666, 0.023973319679498672, -0.01893690787255764, -0.03239893913269043, -0.022243164479732513, -0.029436344280838966, 0.007234657183289528, 0.005303045269101858, 0.026497449725866318, -0.011192684061825275, -0.028962329030036926, 0.00116429990157485, 0.0006562148337252438, 0.02898603118956089, -0.0010435740696266294, -0.002744844416156411, -0.018083680421113968, 0.00526453135535121, 0.012028136290609837, -0.009201820008456707, -0.002972964197397232, 0.002953707240521908, -0.008704104460775852, 0.008307117037475109, 0.023357098922133446, -0.026639655232429504, -0.024234028533101082, -0.0049149454571306705, -0.002470804378390312, 0.016033565625548363, 0.003759533166885376, -0.014540417119860649, 0.0028603856917470694, 0.01660238206386566, 0.008964812383055687, 0.013580535538494587, 0.003626216435804963, -0.003842485835775733, -0.010493512265384197, -0.0005788170383311808, -0.005602267570793629, 0.03564594313502312, 0.00023978504759725183, 0.0014694471610710025, -0.010380933061242104, -0.025265011936426163, -0.023131942376494408, -0.008336742408573627, 0.0024693231098353863, -0.00852042343467474, 0.025288712233304977, 0.008295265957713127, 0.001925686839967966, 0.017704468220472336, -0.04654829576611519, 0.023582257330417633, -0.015204038470983505, 0.01214663963764906, 0.002870754571631551, 0.015263290144503117, 0.009865441359579563, -0.002387851709499955, 0.05650261417031288, -0.006736941169947386, 0.019529426470398903, -0.029957761988043785, -0.028749022632837296, 0.016329824924468994, 0.018605098128318787, 0.024008870124816895, 0.0336550809442997, 0.03446090593934059, 0.019730882719159126, 0.039366964250802994, 0.02092777192592621, 0.031948626041412354, 0.016756437718868256, -0.02609453722834587, -0.057355839759111404, -0.002463397802785039, -0.0205841101706028, 0.0161757692694664, 0.002675223397091031, -0.027113670483231544, -0.05835127457976341, 0.062048591673374176, 0.009320324286818504, -0.0016249833861365914, -0.01733710616827011, 0.03851373493671417, 0.025170208886265755, -0.01065349206328392, -0.009379575960338116, 0.003261817153543234, -0.05754544585943222, -0.011720025911927223, 0.005688182543963194, 0.02640264667570591, -0.005300082731992006, -0.004150595515966415, 0.00321441562846303, 0.008496723137795925, -0.02009824477136135, 0.01587950997054577, -0.014658920466899872, 0.04370420426130295, 0.01764521561563015, 0.019778285175561905, -0.03443720564246178, -0.010007645934820175, -0.01225329376757145, -0.021378086879849434, 0.012158490717411041, 0.024364382028579712, 0.03488751873373985, 0.004509069956839085, 0.012288844212889671, -0.029910359531641006, -0.01587950997054577, 0.04083641245961189, 0.03097689524292946, 0.03614366054534912, -0.014338959939777851, -0.017159350216388702, -0.01076607033610344, 0.02233796752989292, 0.006606587208807468, -0.010700893588364124, 0.01477742474526167, 0.006322178058326244, -0.009444753639400005, 0.007833101786673069, 0.016578681766986847, -0.00010119113721884787, -0.028583116829395294, -0.03472161293029785, 0.02924673818051815, 0.025170208886265755, 0.008372293785214424, -0.007590168621391058, -0.0011865193955600262, -0.05365852266550064, 0.003643991891294718, -0.026734458282589912, -0.006064432207494974, 0.022717179730534554, 0.0028115026652812958, 0.011808903887867928, 0.03372618183493614, -4.791071842191741e-05, -0.003581777447834611, 0.02808540128171444, 0.015761006623506546, 0.0029329692479223013, -0.015926910564303398, 0.04524475336074829, 0.014445614069700241, 0.0009658060153014958, 0.014741873368620872, 0.002019008621573448, 0.00378619646653533, -0.0072168814949691296, -0.0017583002336323261, -0.026118239387869835, -0.007880503311753273, -0.00048549528582952917, -0.000631032744422555, -0.00021386233856901526, 0.02165064588189125, 0.03476901724934578, 0.022586824372410774, 0.0019582754466682673, 0.0116429990157485, 0.003866186598315835, -0.006434756796807051, 0.06408685445785522, 0.0036351042799651623, 0.0033951338846236467, -0.010712743736803532, 0.021117378026247025, 0.008419695310294628, -0.01901986077427864, 0.009989870712161064, 0.003990615718066692, -0.0018160707550123334, 0.006215524394065142, 0.014208606444299221, -0.048420652747154236, 0.024364382028579712, 0.034532006829977036, 0.023866666480898857, -0.008016782812774181, 0.013130221515893936, 0.01583210751414299, 0.0185458455234766, 0.011690400540828705, -0.012893213890492916, -0.009101091884076595, 3.570158469301532e-06, 0.03225673735141754, 0.010683118365705013, -0.022610526531934738, 0.009444753639400005, 0.008419695310294628, -0.027492882683873177, -0.012561403214931488, -0.032849255949258804, 0.021378086879849434, -0.015737304463982582, -0.004689787980169058, -0.004683862905949354, 0.006268851459026337, -0.019991591572761536, 0.01738450862467289, -0.010617940686643124, -0.026070836931467056, -0.013106521219015121, 0.017657067626714706, -0.01459966879338026, -0.013912346214056015, 0.001605726545676589, 0.013627937063574791, -0.020939622074365616, -0.03168791905045509, -0.006209599319845438, -0.0004910501302219927, 0.014137503691017628, -0.008846309036016464, -0.007916053757071495, -0.00901813991367817, 0.0127036077901721, -0.014694471843540668, 0.03294405713677406, -0.022740880027413368, -0.02182839997112751, -0.010084673762321472, -0.01893690787255764, -0.008117510937154293, -0.030573980882763863, -0.046311285346746445, 0.004580172244459391, -0.021555842831730843, 0.0014435244956985116, 0.03420019894838333, -0.03377358242869377, 0.02692406438291073, -0.0004340201849117875, 0.0072465077973902225, -0.009841741062700748, 0.017538562417030334, 0.036119960248470306, -0.023285998031497, -0.0254072155803442, 0.011613372713327408, 0.03555114194750786, -0.010173551738262177, 0.0012924320762977004, 0.03678357973694801, 0.0008932224009186029, -0.00864485278725624, -0.011068255640566349, 0.0006791749037802219, 0.006316252984106541, -0.017977027222514153, -0.013971598818898201, -0.006594736594706774, 0.0052497186698019505, -0.023440051823854446, 0.0245065875351429, 0.0047905161045491695, 0.017455609515309334, 0.004500181879848242, -0.023285998031497, -0.0071457792073488235, -0.043893810361623764, -0.002807058859616518, -0.03555114194750786, -0.015737304463982582, -0.028203904628753662, -0.013722740113735199, -0.002901861909776926, -0.007673121523112059, -0.013912346214056015, 0.0403623953461647, -0.02441178448498249, 0.004467593505978584, -0.031474608927965164, 0.002583382884040475, 0.0039580268785357475, -0.020477456972002983, -0.017064547166228294, -0.01678013801574707, 0.008698179386556149, -0.02604713663458824, -0.026426348835229874, 0.02333339862525463, 0.023440051823854446, 0.0015998013550415635, 0.0011939258547499776, 0.004698676057159901, -0.0411682203412056, 0.013165772892534733, -0.02903343178331852, -0.0008547086617909372, -0.0186287984251976, -0.03502972424030304, 0.006849519908428192, 0.024127375334501266, 0.013343527913093567, 0.011453392915427685, -0.01167262438684702, 0.009462528862059116, -0.014338959939777851, -0.02704256772994995, 0.009480304084718227, -0.027279576286673546, -0.010736444965004921, -7.5395732892502565e-06, 0.019896788522601128, 0.039366964250802994, -0.026947764679789543, -0.0070272753946483135, 0.017017146572470665, 0.01124008558690548, -0.0048201424069702625, -0.023925917223095894, -0.033536575734615326, -0.023025289177894592, 0.013189473189413548, -0.0015746193239465356, -0.015737304463982582, 0.006162197794765234, -0.012810260988771915, -0.019351670518517494, -0.0338209867477417, 0.012431048788130283, 0.006565110757946968, -0.010215028189122677, -0.01647202856838703, -0.005406735930591822, -0.04612167924642563, -0.00043105758959427476, -0.0007710153586231172, -0.006802118383347988, -0.00345142325386405, -0.013272426091134548, 0.005332671105861664, -0.009640284813940525, 0.0007236138335429132, 0.008330817334353924, -0.008455246686935425, 0.00884038396179676, -0.004055792931467295, -0.0018145894864574075, 0.006411056034266949, -0.00502752372995019, 0.008461171761155128, -0.023155642673373222, 0.014682621695101261, -0.014398212544620037, -0.0024915423709899187, 0.002381926402449608, -0.0006873220554552972, -0.0026367097161710262, -0.016033565625548363, 0.011542270891368389, 0.003475124016404152, -0.013580535538494587, -0.021129228174686432, 0.0047727408818900585, -0.010558689013123512, 0.001534624258056283, -0.010345381684601307, -0.026781858876347542, -0.004390566144138575, 0.018533995375037193, 0.026544852182269096, -0.008016782812774181, 0.03223303332924843, -0.012999867089092731, 0.017491161823272705, 0.00562004279345274, 0.001977532170712948, -0.0051489900797605515, 0.011299338191747665, 0.001357609173282981, -0.0002877420629374683, -0.05133584886789322, 0.009818039834499359, 0.019766435027122498, 0.014730023220181465, 0.014967030845582485, 0.011311188340187073, -0.008958887308835983, -0.011554121039807796, 0.00552227720618248, 0.017894074320793152, 0.013817543163895607, 0.0205841101706028, -0.0022293527144938707, 0.013011718168854713, -0.0013583498075604439, 0.0008117510587908328, -0.01733710616827011, -0.022148361429572105, 0.0012324395356699824, -0.002047153189778328, 0.021461039781570435, 0.016922343522310257, -0.0011131950886920094, 0.009871366433799267, -0.009640284813940525, 0.018522145226597786, 0.036902084946632385, 0.022077258676290512, 0.004073568154126406, 0.020809268578886986, 0.020904071629047394, 0.013710889965295792, 0.006476232782006264, -0.0003499565355014056, -0.014528566040098667, 0.011269711889326572, 0.017550412565469742, -0.010700893588364124, -0.018948758020997047, -0.015666203573346138, -0.01733710616827011, 0.0138056930154562, 0.0010435740696266294, 0.009586958214640617, 0.008360443636775017, 0.003223303472623229, 0.01803627982735634, -0.008881860412657261, 0.047733332961797714, 0.0059874048456549644, -0.016400925815105438, 0.005880751181393862, -0.00420392258092761, 0.010481661185622215, -0.01911466382443905, -0.006505859084427357, -0.002584864152595401, 0.006363654509186745, -0.013035418465733528, -0.00793382991105318, -0.025786427780985832, -0.011927408166229725, -0.012845812365412712, -0.037115391343832016, 0.012419198639690876, -0.02251572348177433, 0.020335253328084946, -0.009616583585739136, 0.0052289804443717, 0.017834821715950966, 0.011571896262466908, 0.0037536080926656723, 0.003798046847805381, -0.022077258676290512, 0.008443395607173443, 0.004932720679789782, -0.004793479107320309, -0.024553988128900528, -0.004485369194298983, 0.003990615718066692, 0.016069116070866585, -0.010072823613882065, 0.0354563370347023, 0.0009687686106190085, 0.0047964416444301605, 0.0054393247701227665, -0.006345878820866346, 0.006553260609507561, 0.02243277058005333, 0.005311932880431414, 0.005033449269831181, 0.03929586336016655, -0.007341310847550631, 0.003030734835192561, 0.003519563004374504, 0.010523137636482716, 0.011613372713327408, -0.007365011610090733, 0.008164912462234497, -0.005246756132692099, -0.003955064341425896, -0.009586958214640617, 0.008034558035433292, -0.007963455282151699, 0.006541409995406866, 0.0354563370347023, 0.03924845904111862, -0.010339456610381603, -0.020998874679207802, 0.0035136376973241568, 0.010268354788422585, -0.004826067481189966, -0.01721860282123089, -0.022835683077573776, 0.020678913220763206, 0.0365939736366272, 0.005913340020924807, 0.008597451262176037, -0.002938894322142005, -0.0069087715819478035, -0.0002314527373528108, 0.01116898376494646, 0.008076034486293793, -0.007477589882910252, -0.009658060036599636, -0.0162587221711874, -0.039011452347040176, -0.0013376116985455155, -0.013604236766695976, -0.03424759954214096, 0.0175622645765543, 0.003380320966243744, -0.019351670518517494, -0.04059940204024315, -0.012679907493293285, 0.026497449725866318, 0.03460311144590378, 2.8028927772538736e-05, 0.030692486092448235, 0.013438330963253975, 0.011062330566346645, -0.038110822439193726, -0.0069561731070280075, 0.0321856327354908, -0.010700893588364124, -0.008769281208515167, 0.011660774238407612, 0.014090102165937424, 0.011885931715369225, 0.022492021322250366, 0.03130870684981346, -0.025904931128025055, -0.016246872022747993, 0.015097384341061115, 0.006162197794765234, 0.0054867262952029705, -0.000371620524674654, 0.009243296459317207, 0.0003157015307806432, -0.0049149454571306705, 0.011660774238407612, 0.027421779930591583, -0.02096332237124443, -0.014978880994021893, -0.001404270064085722, 0.013485732488334179, -0.002155287889763713, -0.014967030845582485, -0.02955484949052334, 0.006476232782006264, -0.02488579973578453, -0.002392295515164733, -0.024056272581219673, 0.016235021874308586, 0.008461171761155128, 0.005797798745334148, 0.008342667482793331, 0.018794704228639603, 0.02140178717672825, 0.010683118365705013, -0.0024337719660252333, 0.00439945375546813, 0.018012577667832375, 0.019185766577720642, -0.006168122868984938, 0.01651943102478981, -0.009948394261300564, -0.001070237485691905, 0.011133432388305664, 0.03457941114902496, -0.026213042438030243, 0.01404270064085722, -0.0004473518638405949, -0.027919495478272438, -0.008443395607173443, -0.008775206282734871, -0.020252300426363945, 0.006387355271726847, 0.018699901178479195, -0.01772816851735115, 0.0068139685317873955, -0.004212810192257166, 0.0182969868183136, -0.006245150696486235, 0.02251572348177433, -0.01225329376757145, -0.0001822921767598018, -0.0006402908475138247, 0.00017488568846601993, 0.02751658298075199, -0.021034425124526024, 0.005969629157334566, -0.009178119711577892, -0.013924197293817997, 0.000546598806977272, 0.009812114760279655, 0.009586958214640617, 0.01720675267279148, -0.016116516664624214, -0.008070109412074089, 0.010795696638524532, 0.011133432388305664, 0.002620415296405554, 0.0067665670067071915, -0.013462032191455364, -0.026781858876347542, -0.00433723907917738, -0.0035610392224043608, -0.021295133978128433, -0.0013864944921806455, 0.00811158586293459, 0.011595597490668297, -0.02509910613298416, -0.04839695245027542, 0.003273667534813285, -0.010558689013123512, 0.031948626041412354, 0.0069857994094491005, -0.009089241735637188, -0.003723982023075223, -0.009782489389181137, 0.016424627974629402, 0.0069443229585886, 0.017834821715950966, 0.042685069143772125, -0.002571532502770424, 0.003143313340842724, 0.022148361429572105, 0.0033951338846236467, 0.013544985093176365, 0.02225501462817192, -0.0046068355441093445, -0.011595597490668297, 0.014149353839457035, 0.014019000343978405, -0.005000860430300236, -0.002676704665645957, 0.006731016095727682, -9.683983080321923e-05, -0.004352052230387926, -0.013047268614172935, 0.012833962216973305, 0.00787457823753357, -0.011506719514727592, -0.014682621695101261, -0.014895928092300892, -0.031853821128606796, 0.004328351467847824, -0.0060111056081950665, -0.007276133634150028, -0.007459814660251141, -0.0071043032221496105, -0.03161681443452835, -0.012679907493293285, 0.003155163722112775, 0.019600529223680496, 0.015512147918343544, -0.037423502653837204, -0.009284772910177708, -0.007015425246208906, -0.013106521219015121, 0.011429691687226295, 0.007702747359871864, -0.009954319335520267, 0.001536105526611209, 0.0149077782407403, -0.00670731533318758, 0.008721879683434963, 0.011696325615048409, -0.005951853469014168, 0.009207746013998985, -0.011032704263925552, -0.005107514094561338, 0.010149850510060787, 0.002013083314523101, -0.01341463066637516, 0.006292552221566439, 0.002568569965660572, 0.015405494719743729, 0.011453392915427685, 0.04261396825313568, -0.005928152706474066, -0.014090102165937424, 0.041310425847768784, -0.00221009599044919, -0.005942965857684612, -0.02199430577456951, 0.02122403122484684, 0.015630651265382767, 0.01708824932575226, -0.015595100820064545, -0.010072823613882065, -0.026473749428987503, -0.011352664791047573, 0.0014227862702682614, 0.02656855247914791, 0.007714597508311272, 0.005104551557451487, 0.0039402516558766365, 0.0036469546612352133, -0.005865938495844603, 0.014552267268300056, -0.003247004235163331, -0.017052697017788887, -0.023914067074656487, -0.014457464218139648, 0.02165064588189125, 0.0069620986469089985, 0.03140350803732872, -0.007471664808690548, 0.008390069007873535, 0.0031107249669730663, 0.00678434269502759, -0.002284160815179348, -0.0070272753946483135, -0.0068613700568675995, -0.012976166792213917, 0.00035680754808709025, -0.0003973580605816096, -0.018605098128318787, 0.005323783494532108, 0.004446855280548334, 0.022764580324292183, -0.007625719998031855, -0.009029990062117577, 0.0032055280171334743, 0.004826067481189966, -0.004390566144138575, 0.002355263102799654, -0.0069443229585886, 0.002567088697105646, -0.035432636737823486, -0.019564978778362274, -0.009658060036599636, 0.008502648212015629, 0.0035610392224043608, 0.022420920431613922, -0.010534987784922123, 0.03308626264333725, -0.006257000844925642, 0.022136511281132698, -0.008532273583114147, -0.015713604167103767, -0.001702010864391923, 0.002198245609179139, 0.017953326925635338, -0.019221317023038864, -0.03732869774103165, 0.008579675108194351, 0.005104551557451487, 0.019813835620880127, -0.004509069956839085, -0.02355855703353882, -0.02329784817993641, 0.00540377339348197, -0.001773113152012229, 0.011222310364246368, -0.02088036946952343, -0.001989382551982999, -0.023309698328375816, -0.00854412466287613, -0.010440184734761715, 0.004666087217628956, -0.008372293785214424, 0.01867619901895523, -0.0052971201948821545, 0.009557331912219524, 0.05124104395508766, -0.008887785486876965, 0.025904931128025055, 0.013106521219015121, 0.002887048991397023, -0.04282727465033531, -0.018024427816271782, 0.010523137636482716, 1.1335398085066117e-05, 0.003875074442476034, 0.0030751738231629133, -0.03550374135375023, 0.014635220170021057, -0.013699039816856384, 0.025596821680665016, 0.03346547484397888, 0.00836636871099472, 0.010303906165063381, -0.013710889965295792, -0.009545481763780117, -0.012324395589530468, 0.021200330927968025, -0.002167138271033764, -0.004669049754738808, -0.007987156510353088, 0.050103407353162766, 0.027706189081072807, 0.010043197311460972, -0.008710029534995556, 0.012668056413531303, -0.026023436337709427, 0.0403623953461647, 0.025336112827062607, -0.018735451623797417, -0.020157497376203537, -0.004014316480606794, 0.014007149264216423, 0.0039165508933365345, -0.008206388913094997, -0.00562004279345274, 0.020998874679207802, -0.03915365785360336, -0.015452896244823933, 0.032849255949258804, 0.013876795768737793, -0.029483746737241745, 0.016709037125110626, 0.0048142168670892715, 0.00013998261420056224, -0.013734591193497181, 0.020785566419363022, -0.012288844212889671, 0.019126513972878456, 0.007341310847550631, 0.0053148954175412655, 0.04240066185593605, 0.004038017243146896, 0.03507712483406067, 0.001142080407589674, 0.018261436372995377, 0.008028632961213589, -0.003392171347513795, -0.00013368710642680526, -0.026331545785069466, -0.011589672416448593, 0.015642501413822174, -0.007365011610090733, -0.011074180714786053, -0.011607447639107704, 0.002615971490740776, 0.00966398511081934, -0.021721746772527695, -0.012999867089092731, 0.0175622645765543, -0.009450678713619709, -0.0149907311424613, -0.018178483471274376, 0.00793382991105318, 0.017965177074074745, 0.0005802983068861067, -0.017929624766111374, -0.002922600135207176, 0.014101952314376831, -0.0008872972102835774, -0.005545977968722582, 0.008147136308252811, -0.001200591679662466, -0.004206885118037462, 0.016685334965586662, -0.00321441562846303, -0.000916923163458705, 0.006079245358705521, 0.010588315315544605, 0.01201628614217043, -0.03391578793525696, -0.0028011337853968143, -0.007542767096310854, 0.01017947681248188, 0.009462528862059116, 0.017538562417030334, 0.010552763938903809, 0.000631032744422555, 0.022278714925050735, 0.006280701607465744, -0.015950612723827362, -0.005397848319262266, 0.0011228235671296716, 0.004144670441746712, -0.014350811019539833, -0.015523998066782951, 0.0011457836953923106, 0.0504826195538044, 0.019008010625839233, 0.00658881152048707, -0.00042031818884424865, 0.02640264667570591, -0.008763356134295464, 0.00442019198089838, 0.026236742734909058, -0.001544993370771408, 0.01296431664377451, 0.025312412530183792, 0.00237748259678483, -0.015239588916301727, -0.018368089571595192, -0.026023436337709427, 0.012656206265091896, 0.015820257365703583, 0.006571035832166672, -0.009741012938320637, 0.030787289142608643, 0.02398516982793808, 0.007756073959171772, -0.021543990820646286, 0.009024064987897873, 0.01477742474526167, 0.0035640019923448563, -0.00426021171733737, 0.02135438472032547, 0.02372446097433567, 0.011020854115486145, -0.0005543755833059549, -0.008141211234033108, -0.019470175728201866, -0.020975172519683838, 0.003875074442476034, 0.007951605133712292, -0.018569545820355415, 0.014884077943861485, -0.004174296278506517, 0.027066268026828766, -0.019813835620880127, -0.01651943102478981, 0.0028974181041121483, 0.02143733762204647, -0.020844819024205208, -0.007999006658792496, 0.01906726136803627, -0.0007469442789442837, -0.0007917535258457065, -0.005169728305190802, -0.023949619382619858, -0.007264283020049334, -0.0021715823095291853, -0.0022308342158794403, 0.01687494106590748, -0.008727804757654667, 4.543417162494734e-05, -0.02148474007844925, 0.0004932720912620425, -0.003558076685294509, 0.005809648893773556, 0.013971598818898201, -0.010049122385680676, -0.011874081566929817, 0.02264607697725296, -0.009071466512978077, -0.010363157838582993, -0.00473422696813941, 0.0019790134392678738, 0.01764521561563015, -0.0027552135288715363, 0.022373517975211143, -0.013627937063574791, -0.008058258332312107, -0.006245150696486235, 0.012573253363370895, 0.019849387928843498, 0.006209599319845438, 0.005160840693861246, 0.009059615433216095, -0.023368950933218002, -0.002844091271981597, -0.003365508047863841, -0.006488083396106958, 0.026995167136192322, 0.002898899372667074, -0.005791873205453157, 0.007311684545129538, 0.009332174435257912, -0.022966036573052406, 0.0006265888805501163, -0.016211319714784622, 0.0013494620798155665, 0.020252300426363945, -0.004932720679789782, -0.013959747739136219, -0.003798046847805381, 0.01404270064085722, 0.015950612723827362, -0.007489440497010946, -0.01039870921522379, 0.02088036946952343, -0.013722740113735199, 0.024530287832021713, 0.007602019235491753, 0.005883713718503714, 0.00670731533318758, 0.002537462627515197, -0.0036114035174250603, -0.00036162175820209086, -0.015761006623506546, -0.004544620867818594, -0.00658881152048707, 0.014078252017498016, -0.0127865606918931, 0.008627076633274555, 0.01910281367599964, 0.0060051800683140755, -0.022136511281132698, -0.0014220456359907985, -0.008988513611257076, 0.0014605594333261251, 0.00787457823753357, 0.0002855201018974185, 0.002107886364683509, -0.002199726877734065, -0.02225501462817192, -0.013011718168854713, -0.007436113897711039, -0.03370248153805733, -0.0017405246617272496, 0.0033506951294839382, 0.011577821336686611, 0.007329460233449936, -0.008858159184455872, -0.008378218859434128, 0.03564594313502312, -0.02583383023738861, 0.024364382028579712, -0.00627477653324604, -0.003306256141513586, 0.05190466716885567, 0.010392783209681511, 0.013118371367454529, 0.010499437339603901, 0.005217129830271006, 0.0014590780483558774, -0.0341527946293354, 0.013355378992855549, 0.002096035983413458, 0.024577688425779343, -0.0022915673907846212, -0.005729658994823694, -0.02178099937736988, -0.003424759954214096, 0.00014877782086841762, -0.020904071629047394, -0.008336742408573627, 0.00031847896752879024, -0.019505726173520088, 0.007667195983231068, -0.020856669172644615, -0.006997649557888508, -0.009847666136920452, -0.016626084223389626, -0.007370936684310436, 0.017704468220472336, 0.012241442687809467, -0.0006917659775353968, -0.01531069166958332, -0.026758158579468727, 0.00950993038713932, 0.01436266116797924, -0.013035418465733528, -0.002460435265675187, -0.003937289118766785, 0.016140218824148178, 0.008502648212015629, -0.031948626041412354, 0.011352664791047573, 0.0026455973275005817, 0.009895067662000656, 0.0070272753946483135, -0.0071754055097699165, -0.007382786832749844, -0.004503144416958094, 0.01596246287226677, -0.009877292439341545, 0.0069561731070280075, 0.009450678713619709, -0.020595960319042206, 0.03443720564246178, 0.005978516768664122, 5.078073081676848e-05, -0.027943197637796402, -0.00428094994276762, 0.009444753639400005, 0.021117378026247025, 0.004423154518008232, 0.018391789868474007, 0.009278847835958004, 0.02022860012948513, 0.019162064418196678, 0.001630908576771617, -0.005545977968722582, -0.025502018630504608, -0.0186287984251976, -0.029531147330999374, -0.02687666192650795, -0.0030633234418928623, -0.024127375334501266, 0.006440681871026754, 0.01225329376757145, -0.003024809528142214, -0.003282555378973484, -0.005086775869131088, -0.004994935356080532, -0.023368950933218002, 0.02882012538611889, 0.008182687684893608, 0.007619794458150864, 0.01781112141907215, 0.003969877492636442, 0.0008354518213309348, 0.020370803773403168, 0.00011674476263578981, -0.013165772892534733, 0.0014227862702682614, 0.018581395968794823, 0.011062330566346645, 0.034792717546224594, -0.0022663853596895933, -0.000743241049349308, 0.0025878269225358963, 0.0033358819782733917, 0.019375372678041458, 0.014978880994021893, -0.014137503691017628, 0.019387222826480865, -0.005454137455672026, -0.018830254673957825, 0.012751009315252304, -0.010712743736803532, 0.004103194456547499, -0.000963584054261446, 1.737052843964193e-05, -0.015606950968503952, -0.011340813711285591, -0.023760013282299042, -1.8793962226482108e-05, 0.005128252319991589, -0.015606950968503952, -0.028654219582676888, 0.006754716858267784, 0.028156504034996033, -0.0015612876741215587, -0.009391426108777523, -0.008081959560513496, 0.026710757985711098, -0.009136643260717392, -0.0019582754466682673, 0.003978765103965998, 0.011589672416448593, 0.011601522564888, 0.011844455264508724, 0.019268719479441643, -0.003815822536125779, 0.023973319679498672, -0.008822607807815075, -0.0025507942773401737, -0.0008465615683235228, -0.021840251982212067, 0.01911466382443905, 0.028606818988919258, -0.01026242971420288, 0.005697070620954037, 0.002734475303441286, 0.0037536080926656723, 0.0015390681801363826, 0.01578470692038536, -0.007228732109069824, 0.016246872022747993, -0.01538179349154234, -0.035480037331581116, -0.002701886696740985, -0.02044190652668476, 0.004586097318679094, 0.0035017873160541058, 0.019209466874599457, 0.000476237153634429, 0.006067394744604826, -0.0073176100850105286, 0.009764713235199451, 0.0005517833633348346, 0.0016323899617418647, -0.0015864697052165866, -0.011696325615048409, -0.0013598311925306916, -0.003993578255176544, -0.024862097576260567, 0.00420392258092761, -0.01207553781569004, -0.010967527516186237, -0.029625950381159782, 0.018913207575678825, -0.007287983782589436, 0.027658788487315178, -0.011139357462525368, -0.0022871233522892, 0.0354563370347023, 0.0007417597225867212, -0.018960608169436455, 0.008265640586614609, 0.0276113860309124, -0.0017864448018372059, 0.0003880999574903399, -0.0150736840441823, 0.03581184893846512, 0.006618437357246876, 0.00412096967920661, 0.003318106522783637, 0.016839390620589256, 0.037115391343832016, 0.0016723849112167954, -0.015772856771945953, 0.009154418483376503, 0.003318106522783637, 0.011228235438466072, 0.02545461803674698, -0.00899443868547678, 0.008194537833333015, 0.006369579583406448, -0.011891856789588928, 0.025122806429862976, 0.014327109791338444, 0.005806686356663704, -0.025217609480023384, -0.001533142989501357, -0.02143733762204647, 0.0043402016162872314, -0.011749652214348316, 0.020086394622921944, 0.0006214043241925538, -0.010037272237241268, 0.0030988745857030153, 0.02704256772994995, 0.022029858082532883, -0.01309467013925314, -0.004423154518008232, 0.011874081566929817, -0.00013683486031368375, 0.007323535159230232, 0.0070746769197285175, -0.017834821715950966, 0.0009176638559438288, -0.017242303118109703, -0.006221449933946133, 0.003738794941455126, -0.009504005312919617, -0.005608192645013332, -0.008864084258675575, 0.006618437357246876, -0.009723236784338951, -0.014338959939777851, -0.001141339773312211, 0.0018738413928076625, -0.003543263766914606, 0.01016170158982277, -0.01980198547244072, 0.008419695310294628, 0.009717311710119247, 0.006209599319845438, 0.016294272616505623, -0.009770638309419155, -0.008710029534995556, 0.005107514094561338, 0.002415996277704835, 0.0034780865535140038, -0.015097384341061115, -0.004269099328666925, 0.02898603118956089, -0.00544524984434247, -0.011856305412948132, 0.003999503329396248, -0.0002666335494723171, -0.00832489226013422, 0.021769149228930473, 0.0069443229585886, -0.0005906674196012318, 0.025383515283465385, 0.012117014266550541, 0.019564978778362274, 0.017763720825314522, -0.022112809121608734, 0.0010176514042541385, -0.0034780865535140038, -0.014872227795422077, 0.00985951628535986, -0.01317762304097414, -0.014173055067658424, 0.015049982815980911, 0.011411916464567184, -0.0027774330228567123, 0.020643362775444984, 0.020501157268881798, -0.015523998066782951, 0.03566964343190193, 0.02269347943365574, 0.008330817334353924, 0.013841244392096996, 0.025075405836105347, 0.014647070318460464, -0.02756398543715477, 0.004349089693278074, 0.017917774617671967, 0.00627477653324604, 0.007880503311753273, 0.0027418818790465593, -0.003534375922754407, 0.00591926509514451, 0.006345878820866346, -0.0150736840441823, 0.007068751845508814, -0.004645348992198706, 0.0005680776084773242, 0.03244634345173836, 0.03412909433245659, -0.001307985745370388, -0.013059119693934917, -0.004491294268518686, -0.021757299080491066, -0.01167262438684702, -0.014730023220181465, 0.003762495703995228, -0.01880655437707901, -0.009302549064159393, 0.018498443067073822, -0.03213823214173317, -0.008858159184455872, 0.003048510290682316, -0.016614234074950218, -0.021496590226888657, 0.015535849146544933, 0.004879394080489874, -0.001283544348552823, 0.009071466512978077, -0.00138056930154562, 0.03192492574453354, 0.005107514094561338, -0.0059814793057739735, -0.016329824924468994, 0.03813452273607254, -0.00568225746974349, 0.002916674828156829, -0.02645004913210869, -0.00985951628535986, -0.024909500032663345, 0.01477742474526167, 0.008834458887577057, -0.0010650529293343425, 0.0005569678614847362, 0.0051963916048407555, -0.000594740966334939, 0.01877100206911564, -0.0017701506149023771, -0.008064184337854385, 0.018498443067073822, 0.02195875532925129, -0.0023863704409450293, 0.012573253363370895, -0.009675835259258747, 0.0007776812417432666, 0.002164175733923912, -0.014658920466899872, -0.00745388912037015, -0.001592394895851612, 0.015109235420823097, -0.020761866122484207, 0.010606090538203716, 0.006482158321887255, -0.013675338588654995, -0.0067902677692472935, -0.003593627829104662, 0.01957682892680168, 0.0057474346831440926, -0.01522773876786232, -0.007993081584572792, -0.0009687686106190085, 0.014978880994021893, 0.02109367772936821, 0.03114279918372631, -0.005107514094561338, 0.007210956420749426, -0.0004706823092419654, -0.015026282519102097, 0.0252413097769022, 0.007886428385972977, 0.033062562346458435, -0.012715457938611507, 0.015950612723827362, 0.00032995903166010976, 0.008567824959754944, 0.0007228731992654502, 0.0126206548884511, 0.020809268578886986, 0.0030396226793527603, -6.110352114774287e-05, 0.011980734765529633, 0.0091484934091568, 0.001201332313939929, 0.01451671589165926, 0.021366236731410027, -0.00378619646653533, 0.019600529223680496, -0.004612760618329048, 0.017953326925635338, 0.0027552135288715363, 0.02217206172645092, 0.0045061069540679455, 0.0049860477447509766, 0.0007373158587142825, -0.0071991062723100185, -0.00042624337947927415, -0.00611479626968503, -0.014007149264216423, 0.008668553084135056, 0.014931479468941689, 0.007430188357830048, -0.01941092312335968, -0.0012753971386700869, -0.04012538865208626, 0.012656206265091896, 0.0026337469462305307, -0.002864829497411847, -0.007560542784631252, 0.007110228296369314, 0.01554769929498434, -0.00978841446340084, 0.021852102130651474, 0.0032766303047537804, -0.012656206265091896, 0.008016782812774181, 0.0030292535666376352, 0.002381926402449608, 0.0017301555490121245, 0.0068909963592886925, -0.016791988164186478, 0.014090102165937424, 0.007993081584572792, -0.003880999516695738, -0.01475372351706028, 0.0053859977051615715, -0.006102946121245623, 0.01911466382443905, 0.010854948312044144, -0.02571532502770424, -0.0060525815933942795, -0.009421052411198616, 0.011151207610964775, 0.010434259660542011, 0.005335633642971516, -0.002870754571631551, 0.006973948795348406, 0.022492021322250366, -0.0025404253974556923, 0.0138056930154562, 0.01225329376757145, 0.011228235438466072, -0.013142071664333344, 0.026687055826187134, -0.020382653921842575, -0.007761999033391476, -0.018403640016913414, 0.01110973209142685, -0.004331314004957676, -0.0014812975423410535, -0.01643647812306881, 0.0081293610855937, 0.025786427780985832, 0.004639423917979002, 0.009533630684018135, -0.015132935717701912, 0.001416120445355773, 0.018320688977837563, -0.008650777861475945, 0.015452896244823933, 0.007442038971930742, -0.00566151924431324, 0.013533134013414383, -0.023653360083699226, 0.016448328271508217, -0.012288844212889671, -0.013225024566054344, -0.009403277188539505, 0.0017671879613772035, 0.011062330566346645, -0.0116429990157485, -0.0068435948342084885, -0.0054333992302417755, -0.01612836867570877, -0.01104455441236496, 0.011530419811606407, 0.01875915192067623, 0.003913588356226683, -0.015737304463982582, -0.0042009600438177586, 0.014943329617381096, -0.019292419776320457, 0.012905064038932323, -0.01084902323782444, -0.008496723137795925, 0.00439945375546813, 0.020465606823563576, 0.013485732488334179, 0.01971903257071972, -0.00418318435549736, 0.003208490554243326, -0.006653988733887672, 0.03469791263341904, 0.0005269715911708772, -0.023392651230096817, -0.004485369194298983, 0.007430188357830048, 0.006553260609507561, -6.839428351668175e-06, 0.0011917038355022669, -0.011654849164187908, 0.0007584243430756032, 0.01730155572295189, -0.003792121773585677, -0.005483763758093119, -0.009995795786380768, 0.0033625455107539892, -0.014741873368620872, -0.0016383151523768902, -0.015689903870224953, -0.018486592918634415, -6.624177331104875e-05, -0.00015923948376439512, -0.0013153922045603395, -0.002103442559018731, 0.013556835241615772, -0.005388960707932711, 0.014504865743219852, -0.007910128682851791, -0.009764713235199451, 0.03244634345173836, 0.0019212429178878665, -0.005199354607611895, 0.025312412530183792, -0.013758291490375996, 0.008182687684893608, -0.011210460215806961, -0.005054187029600143, -0.019790135324001312, 0.00013396484428085387, 0.011565971188247204, -0.019031710922718048, -0.001773113152012229, -0.017028996720910072, -0.01638907566666603, -0.014824826270341873, -0.0014338960172608495, 0.015630651265382767, 0.005430436693131924, 0.007554617710411549, 0.025596821680665016, 0.006920622196048498, -0.012419198639690876, 0.0016457216115668416, -0.012585104443132877, -0.007827176712453365, 0.007436113897711039, 0.008123436011373997, -0.005237868055701256, -0.015156636945903301, -0.003036659909412265, -0.022160211578011513, -0.015761006623506546, -0.06778417527675629, 0.009889142587780952, 0.002821871777996421, -0.01759781502187252, -0.015559549443423748, -1.4535232367052231e-05, 0.029957761988043785, -0.008496723137795925, 0.009432902559638023, -0.015500297769904137, 0.005359334405511618, -0.021946905180811882, -0.009521780535578728, -0.019470175728201866, -0.011554121039807796, 0.02092777192592621, 0.010049122385680676, -0.010920125991106033, 0.002866310765966773, 0.0104164844378829, -0.007370936684310436, -0.010943826287984848, -0.007430188357830048, 0.00019997516938019544, 0.008769281208515167, 0.019730882719159126, -0.022148361429572105, 0.02256312407553196, 0.0007954568136483431, -0.0054393247701227665, -0.0024441410787403584, 0.014101952314376831, 0.0009472898091189563, -0.018533995375037193, 0.002535981358960271, 0.002273791702464223, -0.011080105789005756, 0.009029990062117577, -0.0046542370691895485, -0.002537462627515197, -0.0011568934423848987, -0.0008021226385608315, 0.008496723137795925, -0.017953326925635338, 0.010967527516186237, 0.00022682368580717593, -0.006896921433508396, 0.002019008621573448, 0.0008287859964184463, -0.0008117510587908328, 0.014884077943861485, 0.012182191014289856, -0.006322178058326244, -0.01179705373942852, 0.010884574614465237, 0.0023360061459243298, -0.00573854660615325, -0.00046105385990813375, -0.01467077061533928, 0.012431048788130283, -0.006653988733887672, 0.033536575734615326, -0.0222194641828537, 0.001128748757764697, 0.0068613700568675995, 0.008354518562555313, -0.0022441658657044172, 0.018557695671916008, 0.005993329919874668, -0.010428334586322308, 0.010280204936861992, 0.015452896244823933, -0.012976166792213917, 0.014137503691017628, -0.023451901972293854, 0.01622317172586918, 0.018569545820355415, 0.0033358819782733917, 0.00442019198089838, 0.007210956420749426, 0.02393776923418045, 0.027658788487315178, 0.00780940055847168, 0.004870506469160318, 0.02148474007844925, -0.007359086070209742, -0.009290697984397411, -0.004769778344780207, -0.007578318472951651, 0.004020241554826498, 0.004683862905949354, 0.006541409995406866, -0.00603776890784502, 0.008905560709536076, 0.006873220670968294, 0.0022056519519537687, -0.011423766613006592, 0.0034780865535140038, -0.0007402784540317953, -0.01893690787255764, 0.030692486092448235, -0.015358093194663525, 0.0025996773038059473, -0.042258456349372864, 0.03898775205016136, -0.012845812365412712, -0.013106521219015121, 0.039793577045202255, 0.009865441359579563, 0.006381429731845856, -0.007886428385972977, 0.00946845393627882, -0.00154795590788126, -0.020287850871682167, -0.02182839997112751, 0.01721860282123089, 0.010487586259841919, 0.029009731486439705, -0.00793382991105318, 0.014623369090259075, -0.01583210751414299, -0.002839647466316819, 0.00412096967920661, 0.005255643744021654, -0.0036232538986951113, -0.014256007969379425, 0.0016842352924868464, -0.010771995410323143, 0.004144670441746712, 0.017657067626714706, 0.02140178717672825, 0.01222959253937006, 0.012371797114610672, -0.02212466113269329, -0.00737686175853014, 0.00023311920813284814, -0.001319836126640439, -0.013971598818898201, -0.003993578255176544, -0.018214033916592598, -0.009296623058617115, -0.0005603007739409804, 0.010724593885242939, 0.027635086327791214, 0.026995167136192322, -0.010173551738262177, -0.010446110740303993, 0.005495613906532526, -0.009006288833916187, 0.006440681871026754, 0.0017583002336323261, 0.012128864414989948, -0.0011613372480496764, 0.007323535159230232, 0.01730155572295189, 0.004947533831000328, 0.00146426260471344, 0.0036825058050453663, 0.001116898376494646, -0.009486229158937931, -0.007643495220690966, -0.001690160483121872, -0.014741873368620872, 0.013936047442257404, -0.0008236014400608838, -0.00729983439669013, -0.00031533121364191175, -0.02739807963371277, 0.013402780517935753, -0.03092949278652668, -0.005341559182852507, -0.007365011610090733, 0.012099238112568855, -0.020809268578886986, -0.001964200520887971, -0.029625950381159782, 0.0447707362473011, -0.008277490735054016, 0.003291443223133683, 0.00585705041885376, -0.019422773271799088, 0.008153061382472515, 0.004467593505978584, 0.01570175401866436, 0.0016472028801217675, 0.009474379010498524, -0.0160928163677454, 0.011151207610964775, -0.007163554895669222, -0.01561880111694336, 0.01249030139297247, -0.0048142168670892715, 0.0012546590296551585, -0.015192187391221523, 0.00642883125692606, -0.007738298270851374, 0.005018636118620634, 0.003830635454505682, 0.0070035746321082115, -0.02217206172645092, 0.010286130011081696, 0.003291443223133683, -0.0014472276670858264, 0.011802978813648224, 0.010967527516186237, -0.013687189668416977, -0.016211319714784622, 0.025217609480023384, 0.011761502362787724, -0.007785699795931578, 0.02334524877369404, 0.0002471915213391185, 0.01272730901837349, 0.017704468220472336, -0.010386858135461807, 0.015476596541702747, -0.008360443636775017, 0.0066480631940066814, 0.00366769265383482, -0.02583383023738861, 0.009142568334937096, 0.00022052817803341895, 0.003818785073235631, 0.0069857994094491005, -0.010487586259841919, -0.02476729452610016, 0.00013581647363025695, -0.04451002925634384, 0.012644356116652489, 0.002676704665645957, 0.012117014266550541, -0.015132935717701912, 0.013284276239573956, -0.005116401705890894, 0.003960989881306887, 0.019612379372119904, -0.010481661185622215, 0.016626084223389626, -0.017953326925635338, -0.01759781502187252, -0.031071698293089867, -0.04014908894896507, 0.002011602045968175, 0.023700760677456856, 0.009047765284776688, -0.011115657165646553, -0.0010909755947068334, -0.02509910613298416, 0.016981594264507294, 0.014789274893701077, -0.011062330566346645, -0.0012553996639326215, -0.0030025900341570377, 8.230459206970409e-05, -0.025810128077864647, -0.005332671105861664, -0.018214033916592598, 0.009415127336978912, -0.023475604131817818, -0.010197252035140991, 0.007276133634150028, 0.025762727484107018, -0.002464879071339965, 0.00032199706765823066, -0.02204170823097229, -0.010345381684601307, 0.006458457559347153, 0.019647931680083275, -0.0008465615683235228, 0.007442038971930742, 0.0008147136541083455, -0.008360443636775017, 0.0009302548714913428, -0.019766435027122498, -0.005951853469014168, 0.006594736594706774, 0.011826680041849613, -0.015204038470983505, -0.02341635152697563, 0.0015642502112314105, -0.0005358593771234155, -0.03223303332924843, -0.006322178058326244, 0.019517576321959496, -0.0149907311424613, -0.007507216185331345, 0.004834955092519522, 0.000928032910451293, -3.825913881883025e-05, -0.007815325632691383, 0.014066401869058609, -0.0042009600438177586, -0.012585104443132877, -0.005353409331291914, 0.005308970343321562, 0.04756742715835571, 0.01195110846310854, -0.025786427780985832, -0.028132803738117218, -0.018214033916592598, 0.007779774721711874, 0.009438827633857727, -0.01317762304097414, 0.025430915877223015, 0.011009003035724163, -0.02156769298017025, 0.0035728896036744118, -0.003629178972914815, 0.002401183359324932, 0.03761310875415802, -0.004212810192257166, -0.010665342211723328, 0.0021123304031789303, 0.001034686341881752, 0.0036114035174250603, -0.005540052894502878, -0.008899635635316372, 0.01112750731408596, 0.02609453722834587, -0.023404501378536224, 0.004612760618329048, 0.011311188340187073, 0.019683482125401497, -0.023155642673373222, 0.032588545233011246, 0.004079493694007397, -0.003113687504082918, -0.022029858082532883, -0.01928056962788105, 0.002746325684711337, 0.00702135032042861, -0.00016997889906633645, -0.007489440497010946, -0.019470175728201866, -0.027540283277630806, -0.006642138119786978, 0.009829890914261341, 0.008982588537037373, 0.018782852217555046, 0.006251075770705938, 0.022551273927092552, 0.0036588050425052643, 0.017443759366869926, -0.021069975569844246, 0.00853819865733385, -0.00382767291739583, 0.018818404525518417, 0.011133432388305664, -0.011500794440507889, -0.010090598836541176, -0.025999734178185463, -0.002987777115777135, -0.025976033881306648, 0.0060525815933942795, -0.015192187391221523, -0.0068850708194077015, -0.002584864152595401, -0.010392783209681511, 0.029697053134441376, -0.010979377664625645, -0.00627477653324604, 0.027255874127149582, -0.001096160151064396, -0.03645177185535431, 0.019647931680083275, -0.0091899698600173, -0.009628433734178543, 0.013556835241615772, -0.00978841446340084, -0.009581032209098339, -0.005255643744021654, -0.024648791179060936, -0.049629393965005875, -0.010748295113444328, 0.01980198547244072, 0.006896921433508396, 0.01647202856838703, -0.020216748118400574, 0.0070095001719892025, 0.006731016095727682, 0.02212466113269329, 0.0068613700568675995, -0.001213923329487443, 0.0150736840441823, 0.00033273646840825677, -0.01769261807203293, -0.0019582754466682673, -0.014410062693059444, -0.002429327927529812, 0.012205892242491245, 0.009195894934237003, -0.0009917287388816476, -0.0015257365303114057, 0.015049982815980911, 0.031640514731407166, 0.013746441341936588, -0.0036084407474845648, 0.0016146143898367882, 0.016199469566345215, -0.006097020581364632, -0.011939258314669132, 0.006316252984106541, -0.008579675108194351, -0.0057000331580638885, -0.015820257365703583, -0.00366769265383482, -0.03898775205016136, 0.02053670957684517, 0.004070605617016554, -0.0115600461140275, -0.014978880994021893, -0.011394141241908073, 0.006636213045567274, 0.016069116070866585, 0.019470175728201866, 0.005525239743292332, -0.0011983697768300772, -0.007287983782589436, 0.002930006477981806, 0.010813471861183643, -0.013296126388013363, -0.020287850871682167, -0.005824462044984102, 0.009681761264801025, -0.0011346739483997226, 0.013841244392096996, 0.004206885118037462, 0.007412413135170937, 0.006257000844925642, -0.00753684202209115, 0.0039876531809568405, 0.007519066333770752, -0.010072823613882065, 0.017159350216388702, 0.00832489226013422, 0.005181578919291496, -0.008064184337854385, -0.015761006623506546, -0.007720523048192263, 0.020430056378245354, 0.007969381287693977, 0.012217742390930653, -0.002451547421514988, 0.01695789396762848, -0.0298155564814806, -0.007821250706911087, -0.00014414876932278275, -0.0006095539429225028, 0.003744720248505473, 0.006268851459026337, 0.002178988652303815, 0.020844819024205208, 0.010286130011081696, -0.0033240315970033407, 0.010120225138962269, 0.011121582239866257, -0.003652879735454917, 0.024127375334501266, -0.008864084258675575, 0.004449817817658186, 0.005397848319262266, 0.00733538530766964, 0.023368950933218002, 0.030360674485564232, 0.00654733506962657, 0.0009102573385462165, 0.002839647466316819, 0.003036659909412265, 0.005540052894502878, 0.01570175401866436, 0.000784347066655755, -0.0034306850284337997, -0.01483667641878128, -0.004375752992928028, 0.013722740113735199, -0.012348096817731857, 0.0170763973146677, -0.03493492305278778, 0.014007149264216423, -0.00271225580945611, 0.035906653851270676, 0.004544620867818594, -0.00706282677128911, 0.007015425246208906, 0.04010168835520744, 0.006262925919145346, 0.016685334965586662, 0.0071220784448087215, 0.0017760758055374026, -0.006334028206765652, -0.014647070318460464, -0.004680900368839502, -0.009527705609798431, -0.0027285499963909388, 0.014493015594780445, -0.012585104443132877, 0.01459966879338026, 0.00895296223461628, -0.007975306361913681, 0.008988513611257076, -0.012916915118694305, -0.011832605116069317, -0.003952101804316044, 0.011927408166229725, -0.036167360842227936, 0.008052333258092403, 0.00433723907917738, -0.008093809708952904, -0.015855809673666954, 0.0103750079870224, 0.02535981498658657, 0.010197252035140991, -0.0030751738231629133, -0.011791128665208817, 0.002722624922171235, 0.00966398511081934, -0.007993081584572792, 0.0037654584739357233, -0.001820514677092433, -0.0018160707550123334, 0.01002542208880186, -0.023025289177894592, -0.010274279862642288, 0.033536575734615326, -0.031166501343250275, -0.023653360083699226, 0.014101952314376831, 0.00483199255540967, -0.021378086879849434, 0.003273667534813285, 0.010576464235782623, 0.0070983776822686195, -0.00663028797134757, -0.025430915877223015, -0.03502972424030304, 0.008259715512394905, -0.0008621151791885495, -0.020643362775444984, 0.006381429731845856, 0.008034558035433292, 0.008218239061534405, 0.02014564722776413, 0.024482885375618935, 0.014078252017498016, -0.009397352114319801, 0.003531413385644555, 4.2425286665093154e-05, 0.0018486593617126346, -0.024257728829979897, 0.0006939878803677857, 0.01134673971682787, -7.522213854826987e-05, -0.001012466847896576, -0.01919761672616005, -0.0004969753208570182, -0.009515855461359024, 0.0170763973146677, -0.008141211234033108, 0.0013702001888304949, -0.004870506469160318, 0.01531069166958332, -0.009699536487460136, 0.02251572348177433, 0.0033743958920240402, -0.011305263265967369, -0.03126130253076553, -0.020904071629047394, -0.006132571958005428, -0.022397218272089958, 0.005205279681831598, -0.009456603787839413, -0.004325388930737972, 0.003723982023075223, 0.014587818644940853, 0.00390470027923584, 0.02411552332341671, -0.021733596920967102, -0.019517576321959496, 0.001977532170712948, 0.017894074320793152, -0.002073816489428282, -0.02692406438291073, 0.018913207575678825, -0.019043561071157455, 0.006559185683727264, -0.009296623058617115, -0.014682621695101261, 0.0010161701356992126, -0.015986163169145584, 0.009415127336978912, -0.0012902101734653115, -0.03024217113852501, 0.0018249585991725326, 0.0008821127121336758, -0.016080966219305992, 0.003128500422462821, -0.012134789489209652, 0.002387851709499955, 0.004372790455818176, -0.006559185683727264, 0.009160344488918781, -0.004269099328666925, -0.0009821002604439855, 0.008656702935695648, -0.010742370039224625, 0.01436266116797924, -0.002118255477398634, 0.02934154123067856, -0.0039402516558766365, 0.0126206548884511, -0.03230413794517517, -0.02493320032954216, -0.016709037125110626, 0.00713985413312912, 0.013900496065616608, 0.0024219215847551823, 0.010250578634440899, -0.004609798081219196, -0.018273286521434784, 0.004026166629046202, 0.019659781828522682, -0.008858159184455872, 0.0058629754930734634, -0.005003822967410088, 0.011234160512685776, -0.018498443067073822, 0.016590531915426254, 0.007092452608048916, -0.015156636945903301, -0.008253789506852627, -0.022100958973169327, 0.022373517975211143, 0.007844951935112476, 0.004784591030329466, -0.022527573630213737, 0.004556471481919289, -0.02140178717672825, 0.008354518562555313, 0.02808540128171444, 0.001034686341881752, 0.015737304463982582, -0.00718133058398962, 0.02851201593875885, -0.008822607807815075, -0.006162197794765234, 0.005729658994823694, 0.015346243046224117, -0.032849255949258804, -0.0205841101706028, -0.009456603787839413, 0.01026242971420288, -0.009978020563721657, -0.006896921433508396, -0.012359946966171265, 0.008822607807815075, -0.01694604381918907, -0.003424759954214096, -0.008064184337854385, 0.0013176142238080502, 0.0006380689446814358, 0.00311665004119277, 0.02682926133275032, 0.011524494737386703, 8.235088898800313e-05, -0.01660238206386566, -0.02645004913210869, 0.005688182543963194, 0.004432042129337788, 0.00036551017547026277, 0.004372790455818176, 0.0183799397200346, -0.008473021909594536, -0.004920870531350374, 0.009290697984397411, -0.013248724862933159, 0.01116898376494646, 0.0019301307620480657, 0.012051836587488651, 0.003030734835192561, -0.00017007147835101932, -0.002030859002843499, -0.007436113897711039, -0.00566151924431324, -0.025762727484107018, -0.009029990062117577, -0.033062562346458435, -0.01910281367599964, -0.00938550103455782, -0.01816663332283497, -0.004903094843029976, -0.0055519030429422855, -0.010736444965004921, 0.005720771383494139, 0.021733596920967102, 0.021757299080491066, -0.0008628558134660125, -0.011856305412948132, -0.031474608927965164, -0.020382653921842575, 0.0018501406302675605, 0.003104799659922719, 0.004503144416958094, -0.0027774330228567123, -0.026236742734909058, 0.018711751326918602, 0.006997649557888508, 0.03002886474132538, -0.0032173783984035254, 0.016791988164186478, -0.005071962717920542, -0.01583210751414299, 0.018877655267715454, -0.009332174435257912, -0.0150736840441823, -0.02053670957684517, -0.007430188357830048, -0.004882356617599726, -0.003892849897965789, -0.00044994414201937616, -0.014173055067658424, 0.00501271104440093, -0.0005114179803058505, 0.007803475484251976, 0.03152201324701309, 0.022657927125692368, 0.007394637446850538, -0.001580544514581561, -0.0007173183257691562, 0.023748163133859634, 0.031119098886847496, 0.009071466512978077, 0.008775206282734871, 0.007803475484251976, 0.014137503691017628, 0.012478450313210487, 0.010706818662583828, 0.0019360559526830912, 0.02385481633245945, -0.02105812542140484, 0.0043639023788273335, 0.011311188340187073, -0.016080966219305992, 0.00430168816819787, 0.021461039781570435, -0.021247731521725655, -0.00595481600612402, -0.0005780763458460569, -0.009539556689560413, 0.038537438958883286, 0.007554617710411549, -0.011998509988188744, 0.01231254544109106, -0.0162587221711874, -0.002925562672317028, 0.008158987388014793, 0.000199419679120183, 0.019517576321959496, -0.0034425354097038507, -0.008526348508894444, -0.021887652575969696, 0.004269099328666925, -0.010120225138962269, 0.02803800068795681, 0.00021330684830900282, 0.011874081566929817, -0.005643743555992842, 0.005294157657772303, -0.009610658511519432, 0.010232803411781788, 0.004997897893190384, 0.014244156889617443, 0.030218470841646194, -0.014469314366579056, -0.003744720248505473, -0.006736941169947386, -0.01039870921522379, -0.00449721934273839, -0.014931479468941689, -0.018782852217555046, -0.00190346734598279, 0.009687686339020729, -0.008733730763196945, 0.004716451279819012, 0.0007206512382254004, 0.017965177074074745, -0.001869397470727563, 0.0017745944205671549, 0.006387355271726847, 0.005560791119933128, 0.01483667641878128, -0.004544620867818594, -0.0070035746321082115, 0.000660288380458951, -0.015322541818022728, 0.012561403214931488, -0.003303293604403734, 0.030076265335083008, 0.009243296459317207, 0.0149077782407403, 0.005809648893773556, 0.003001108765602112, -0.02161509357392788, 0.006571035832166672, 0.004197997041046619, -0.00745388912037015, -0.02846461348235607, -0.019316120073199272, 0.018830254673957825, 0.0163416750729084, -0.003392171347513795, 0.008188612759113312], "ff111f55-ae10-45e2-92da-a096318840f2": [-0.023203153163194656, 0.004464248660951853, -0.0029670502990484238, 0.06251315027475357, 0.031201884150505066, -0.040444862097501755, -0.012421959079802036, 0.0255002249032259, -0.02811177633702755, 0.01736476458609104, 0.002647442976012826, 0.011868201196193695, 0.02770158462226391, -0.009653168730437756, -0.015382173471152782, 0.015628287568688393, -0.005910172592848539, 0.029232965782284737, 0.014137926511466503, -0.024160267785191536, 0.04216766357421875, -0.020933428779244423, -0.024707188829779625, -0.005137646105140448, 0.007561192847788334, -0.022560520097613335, -0.02306642383337021, 0.011656269431114197, -0.02301173098385334, 0.013037246651947498, -0.03191288188099861, 0.003008069470524788, 0.0033174220006912947, 0.005045352969318628, -0.0315847285091877, -0.03546787425875664, 0.011827182024717331, 0.04561327025294304, 0.0006755337817594409, 0.016448670998215675, -0.019784893840551376, -0.0017450221348553896, -0.006761319935321808, -0.0347842201590538, -0.04402719810605049, 0.004877857863903046, -0.051520027220249176, -0.02257419377565384, 0.039104901254177094, -0.019743874669075012, -0.0062861815094947815, -6.788452446926385e-05, -0.0008408921421505511, 0.053570982068777084, 0.03289734199643135, -0.0156556349247694, 0.04413658380508423, 0.025760013610124588, 0.020072026178240776, -0.04200358688831329, -0.025554917752742767, 0.009427563287317753, -0.010412022471427917, -0.013044082559645176, 0.01367987971752882, 0.0014467788860201836, 0.0026816255412995815, -0.021234234794974327, -0.009461745619773865, 0.021603407338261604, -0.027783622965216637, 0.03306141868233681, -0.0012733021285384893, 0.01329019758850336, 0.07498297095298767, -0.020509565249085426, 0.040062014013528824, 0.016735805198550224, 0.025062687695026398, -0.02741445042192936, 0.02055058442056179, -0.005554673727601767, 0.02283398248255253, 0.004645416513085365, 0.010835886932909489, -0.005937519017606974, -0.025760013610124588, -0.050207413733005524, -0.0051991743966937065, -0.003408005926758051, -0.0246388241648674, -0.018075762316584587, -0.03106515295803547, 0.01032998412847519, 0.032213687896728516, 0.06502899527549744, 0.020536910742521286, 0.014438733458518982, 0.015341154299676418, -0.014848924241960049, -0.02521309070289135, -0.0029533773194998503, 0.004898367449641228, -0.001615982735529542, 0.014807905070483685, 0.004033547826111317, 0.016804169863462448, 0.0063408734276890755, 0.012045950628817081, 0.020796697586774826, -0.03497564420104027, -0.018855126574635506, 0.00868238229304552, -0.0012750112218782306, -0.02098812162876129, 0.012428795918822289, 0.02454311214387417, 0.02344926819205284, -0.025199418887495995, -0.011034145951271057, 0.014917289838194847, 0.021904215216636658, 0.001534799113869667, 0.0036507025361061096, 0.013406418263912201, 0.02040017955005169, 0.033745069056749344, 0.0013587586581707, 0.042878661304712296, -0.003565246006473899, -0.012784294784069061, 0.01605215296149254, 0.019429393112659454, 0.04886745661497116, -0.013734571635723114, -0.0012938117142766714, 0.04014405235648155, 0.05863000825047493, -0.03379976376891136, -0.00647076778113842, -0.08088972419500351, 0.01638030633330345, 0.019060222432017326, 0.043835774064064026, -0.021835848689079285, -0.0025380586739629507, -0.01834922283887863, 0.01988060399889946, -0.01664009317755699, 0.0495511069893837, -0.043808430433273315, -0.03530379757285118, -0.01912858709692955, 0.016298267990350723, 0.022628886625170708, -0.03008069470524788, -0.015108712017536163, 0.01640765182673931, -0.036807831376791, 0.045804694294929504, -0.029424387961626053, -0.037518829107284546, 0.03232307359576225, 0.032241035252809525, 0.042851317673921585, -0.016134191304445267, 0.04175747185945511, 0.02402353659272194, -0.034209951758384705, 0.0036301929503679276, 0.01620255596935749, -0.014903617091476917, -0.010712829418480396, -0.043316200375556946, 0.00875074788928032, 0.024761881679296494, 0.03538583591580391, 0.026949567720294, 0.008825949393212795, 0.007882509380578995, -0.014999328181147575, 0.04356231540441513, -0.015751345083117485, -0.010617117397487164, 0.027742603793740273, 0.0033328041899949312, 0.006727137137204409, 0.013235505670309067, -0.013214996084570885, 0.003975437022745609, -0.027988718822598457, 0.009960811585187912, 0.05586805194616318, -0.015587269328534603, -0.051137179136276245, 0.020331814885139465, 0.0227519441395998, -0.02249215543270111, -0.020728332921862602, -0.0070484536699950695, -0.044300660490989685, -0.01741945743560791, -0.03399118408560753, 0.003302039811387658, -0.019743874669075012, 0.00959163997322321, -0.004289917182177305, -0.03918693959712982, 0.034702181816101074, -0.016270920634269714, 0.02852196805179119, -0.050207413733005524, 0.01369355246424675, -0.003684885101392865, 0.007944038137793541, 0.02420128509402275, 0.003838706761598587, 0.010514570400118828, -0.027769949287176132, -0.0047342912293970585, 0.006798920687288046, -0.02901419624686241, -0.012428795918822289, -0.01054875273257494, -0.039542440325021744, 0.00282177422195673, -0.018909817561507225, -0.01054875273257494, 0.013256015256047249, -0.024884937331080437, -0.008470450527966022, -0.016448670998215675, 0.00875074788928032, 0.011116184294223785, -0.0011921183904632926, 0.04618753865361214, 0.037108637392520905, 0.0014125962043181062, -0.026525704190135002, 0.006826266646385193, 0.008436267264187336, 0.022902347147464752, 0.007007434498518705, -0.05250448361039162, -0.0029482499230653048, 0.015231769531965256, 0.018267184495925903, 0.03092842362821102, 0.005130809266120195, 0.02081037126481533, 0.008484123274683952, -0.05994262173771858, 0.028850121423602104, -0.010241108946502209, -0.026129184290766716, 0.005732423160225153, 0.02197257988154888, 0.0014143054140731692, -0.002317580860108137, -0.016339287161827087, 0.02132994681596756, 0.02901419624686241, -0.025049014016985893, 0.019019203260540962, 0.038038406521081924, -0.013372235931456089, 0.02785198763012886, -0.012804804369807243, 0.015218096785247326, 0.0129688810557127, 0.014561790972948074, 0.0007567174616269767, -0.0017723682103678584, 0.032295726239681244, -0.050180066376924515, 0.01335856318473816, -0.026498356834053993, 0.00970786064863205, -0.04503900185227394, -0.017282726243138313, 0.006357965059578419, -0.035112373530864716, 0.020495891571044922, 0.015136058442294598, 0.035112373530864716, 0.034127913415431976, -0.010610281489789486, -0.027865661308169365, -0.03166676685214043, -0.023107443004846573, -0.007650067564100027, 0.01212798897176981, -0.0005264121573418379, 0.031721457839012146, 0.0013450855622068048, 0.00815596990287304, -0.012059624306857586, -0.019019203260540962, -0.012722766026854515, -0.021630754694342613, 0.0007263803854584694, 0.020564256235957146, -0.027537507936358452, -0.02321682684123516, 0.03440137580037117, -0.02477555349469185, 0.07935833930969238, -0.0015262534143403172, -0.0016544382087886333, 0.023175807669758797, 0.02489861100912094, -0.008333719335496426, -0.012421959079802036, -0.04719934239983559, 0.02037283405661583, -0.007568029221147299, -0.043398238718509674, -0.009270323440432549, -0.043835774064064026, 0.0035515727940946817, -0.019962642341852188, -0.012627054937183857, -0.0001770018134266138, 0.054582785815000534, 0.006087922491133213, -0.03358099237084389, 0.005677731242030859, -0.03976120799779892, 0.02234175242483616, -0.006105013657361269, -0.017952704802155495, 0.006371637806296349, -0.028877466917037964, 0.011416991241276264, -0.01015907060354948, -0.004279662389308214, -0.054500747472047806, -0.05857531726360321, 0.004816329572349787, -0.011362298391759396, 0.003314003814011812, -0.034237299114465714, 0.029315004125237465, -0.0059067546389997005, 0.001439942279830575, -0.003770341631025076, 0.02469351515173912, 0.02161708101630211, -0.009208794683218002, 0.02790668047964573, 0.0008015821222215891, -0.009468582458794117, 0.048265840858221054, -0.02684018388390541, 0.04960579797625542, -0.009967648424208164, -0.015518903732299805, -0.018335551023483276, 0.0030610524117946625, -0.015600942075252533, 0.0023756911978125572, -0.06978721171617508, 0.006098177284002304, -0.014794232323765755, 0.024078229442238808, 0.004484758246690035, -0.017337419092655182, 0.01356365904211998, 0.0038968173321336508, 0.020427526906132698, 0.03311610966920853, 0.027551181614398956, -0.03049088642001152, 0.04134728014469147, -0.0006524604978039861, -0.02225971408188343, 0.020413853228092194, 0.009632659144699574, -0.007643231190741062, 0.021453004330396652, -0.01791168563067913, -0.03010804019868374, -0.009160938672721386, 0.0353584885597229, 0.009495927952229977, 0.005072698928415775, 0.04060893878340721, -0.044273313134908676, -0.025869397446513176, 0.040909744799137115, -0.038557980209589005, 0.007205693516880274, -0.013830282725393772, -0.05121921747922897, 0.0034746620804071426, -0.018075762316584587, 0.028904812410473824, -0.03645233064889908, 0.01956612430512905, -0.01765189878642559, -0.0007866272353567183, -0.019060222432017326, -0.0120254410430789, -0.03437402844429016, -0.02767423912882805, -0.03926897794008255, 0.013146630488336086, -0.006911723408848047, 0.017487822100520134, -0.009858263656497002, 0.005363251082599163, -0.0455038882791996, -0.0077936346642673016, 0.05611416697502136, -0.028193814679980278, 0.023695383220911026, -0.010357329621911049, -0.013044082559645176, -0.03915959596633911, 0.02016773819923401, 0.03210430592298508, -0.0022235785145312548, 0.008203825913369656, 0.004221552051603794, -0.00486076669767499, -0.010049686767160892, -0.012681746855378151, 0.0010476969182491302, 0.01085639651864767, -0.033198148012161255, -0.009366034530103207, -0.011266587302088737, 0.006764737889170647, -0.030299462378025055, -0.005100044887512922, -0.007479154504835606, 0.015354827046394348, 0.006863867398351431, 0.0008759293123148382, -0.03142065182328224, 0.0022116147447377443, 0.012086969800293446, 0.020154064521193504, 0.042823970317840576, -0.018212493509054184, -0.029916618019342422, 0.0003168300318066031, 0.03344426304101944, 0.006193888373672962, -0.015847057104110718, 0.006337455473840237, 0.06628691405057907, -0.01721436157822609, 0.014999328181147575, 0.010931598022580147, -0.008614016696810722, 0.02171279303729534, -0.00028948395629413426, 0.013884974643588066, -0.06327883899211884, 0.0028046828228980303, 0.0016228192253038287, 0.0033840781543403864, 0.015395846217870712, -0.011266587302088737, -0.023859459906816483, -0.0039344183169305325, 0.03194022923707962, 0.014848924241960049, 0.020413853228092194, -0.0006020411965437233, -0.011628923006355762, -0.007089472841471434, 0.04547654092311859, 0.01318764965981245, 0.009393380954861641, -0.016147863119840622, 0.026512030512094498, 0.02011304534971714, 0.01962081715464592, 0.032295726239681244, 0.014561790972948074, -0.014151599258184433, 0.01863635703921318, -0.00108529778663069, 0.03727271407842636, 0.01791168563067913, -0.017255380749702454, -0.03399118408560753, 0.02515839971601963, 0.0027328995056450367, 0.013406418263912201, 0.018239839002490044, -0.013098775409162045, 0.018362896516919136, 0.0047342912293970585, 0.021576061844825745, -0.0037942694034427404, 0.01638030633330345, -0.020017335191369057, 0.009646331891417503, -0.025773685425519943, 0.005383760668337345, -0.023025404661893845, -0.03880409523844719, 0.03442872315645218, -0.007643231190741062, 0.02057792991399765, -0.02565062791109085, 0.022382771596312523, -0.04033547639846802, -0.0035002990625798702, -0.039460401982069016, -0.004587305709719658, 0.027455469593405724, 0.016011133790016174, -0.002852538600564003, -0.008470450527966022, 0.037956368178129196, 0.02454311214387417, -0.00407798495143652, -0.004884694702923298, 0.0004772746469825506, 0.014260984025895596, 0.00391390873119235, -0.01581970974802971, -0.024502092972397804, -0.02857665903866291, -0.04801972582936287, 0.010111215524375439, -0.031283922493457794, 0.012148498557507992, -0.01162208616733551, 0.014999328181147575, 0.024160267785191536, 0.027742603793740273, -0.032186344265937805, 0.01234675757586956, 0.031201884150505066, -0.03541317954659462, -0.032787956297397614, 0.029807234182953835, -0.013748244382441044, -0.014178945682942867, -0.012032277882099152, -0.006234907545149326, 0.019661836326122284, 0.004139513708651066, 0.01988060399889946, -0.003396041924133897, 8.97961035661865e-06, -0.0035994285717606544, -0.015983786433935165, -0.0016681111883372068, 3.6879828257951885e-05, -0.023121114820241928, -0.0035789189860224724, 0.008531978353857994, 5.4845727390784305e-06, -0.02109750546514988, -0.00570165878161788, 0.0029858506750315428, 0.0040574753656983376, 0.024789227172732353, -0.016790496185421944, -0.008894314058125019, -0.043808430433273315, -0.016147863119840622, 0.0449296198785305, 0.021890541538596153, 0.003045670222491026, -0.01389864832162857, 0.03861267492175102, -0.014452406205236912, -0.022164002060890198, 0.03311610966920853, -0.02808443084359169, -0.04003467038273811, -0.04739076644182205, -0.022396443411707878, -0.014862597920000553, -0.01402854174375534, 0.015614614821970463, -0.01357733178883791, 0.016216229647397995, -0.029451735317707062, -0.0012861206196248531, -0.030408848077058792, -0.02805708348751068, 0.009598475880920887, 0.015641961246728897, 0.04263254627585411, 0.011143529787659645, -0.003534481627866626, -0.027428124099969864, 0.006026393733918667, -0.003418260719627142, -0.024857591837644577, 0.05764554813504219, -0.006450258195400238, 0.020769352093338966, -0.003821615595370531, 6.0887770814588293e-05, -0.0059511917643249035, -0.04077301546931267, 0.027893006801605225, -0.05655170604586601, 0.02425597794353962, 0.015218096785247326, 0.009160938672721386, 0.03213164955377579, -0.04214031994342804, 0.015204424038529396, -0.011280260048806667, 0.0255002249032259, 0.01967550814151764, 0.018253512680530548, 0.043261509388685226, 0.011006799526512623, -0.04271458461880684, -0.006816011853516102, 0.00812862440943718, 0.023257846012711525, -0.017351090908050537, 0.004084821790456772, 0.0440545454621315, -0.026621414348483086, -0.009133592247962952, 0.00014100325643084943, 0.0055512553080916405, -0.014384041540324688, -0.010022340342402458, 0.0067237187176942825, -0.017282726243138313, 0.009352361783385277, -0.006764737889170647, 0.04539450258016586, -0.014466079883277416, -0.007226203102618456, 0.023025404661893845, 0.01726905256509781, -0.022177675738930702, -0.0019518268527463078, 0.044355351477861404, -0.002233833307400346, -0.011957076378166676, 0.019224299117922783, 0.00423864321783185, 0.026033474132418633, 0.009967648424208164, 0.0033669867552816868, 0.003008069470524788, -0.01138964481651783, 0.03185819089412689, -0.00010660700354492292, -0.021576061844825745, -0.017829647287726402, 0.010350493714213371, 0.02707262523472309, -0.02179482951760292, 0.02735975943505764, -0.005547837354242802, 0.008976352401077747, -0.019839584827423096, 0.01677682437002659, 0.03842125087976456, -0.0016792205860838294, 0.029697848483920097, 0.006009302567690611, 0.05370771139860153, 0.014466079883277416, -0.0246388241648674, 0.029889272525906563, 0.0227519441395998, 0.0008485832368023694, 0.005636712070554495, -0.00953694712370634, -0.0017279308522120118, -0.004508685786277056, -0.013502130284905434, -0.01672213152050972, -0.015122385695576668, -0.016735805198550224, 0.03894082456827164, -0.01171096134930849, -0.009530111216008663, -0.007424462120980024, 0.003712231060490012, -0.03349895402789116, -0.011902383528649807, -0.017788628116250038, 0.02617020346224308, -0.02089240960776806, -0.004091658163815737, 0.004197624046355486, 0.01741945743560791, -0.045367155224084854, -0.01617521047592163, -0.01843126118183136, -0.02040017955005169, -0.027715258300304413, -0.019292663782835007, -0.01454811729490757, 0.008285864256322384, -0.020687313750386238, 0.023640690371394157, -0.013632023707032204, -0.03101046197116375, -0.017829647287726402, 0.0019774637185037136, 0.012647564522922039, -0.020687313750386238, 0.007786797825247049, -0.025842051953077316, -0.0007699632551521063, 0.0009084027842618525, -0.022533174604177475, -0.01967550814151764, -0.016065824776887894, 0.014848924241960049, 0.024912284687161446, 0.0231894813477993, -0.028768083080649376, -0.01814412884414196, -0.004765055608004332, -0.007937201298773289, -0.006046903319656849, 0.026539376005530357, 0.011888710781931877, 0.015122385695576668, 0.0315847285091877, -0.00592042738571763, 0.005742677953094244, -0.0006763883284293115, 0.015546250157058239, -0.0094207264482975, 0.01452077180147171, 0.0004274962411727756, 0.04402719810605049, 0.023955171927809715, 0.02132994681596756, 0.0010280419373884797, -0.01622990146279335, -0.011321279220283031, -0.021029140800237656, 0.001201518694870174, -0.016188882291316986, 0.01004284992814064, 0.016352958977222443, -0.004013038240373135, 0.006388729438185692, -0.030436193570494652, -0.012517671100795269, -0.02599245496094227, 0.018212493509054184, 0.008805439807474613, 0.02704527974128723, -0.013440601527690887, -0.008320046588778496, 0.06546653062105179, -0.01953877881169319, 0.001070770202204585, -0.013871301896870136, -0.00042087334441021085, 0.02269725129008293, -0.0006366510642692447, 0.013153467327356339, 0.028412582352757454, 0.02272459678351879, 0.023873133584856987, 0.004443739075213671, 0.0541999414563179, 0.004665926098823547, 0.01149219274520874, -0.026361627504229546, -0.02396884374320507, -0.025896742939949036, -0.03516706824302673, 0.02474820800125599, -0.0015236897161230445, -0.008456776849925518, -0.04033547639846802, 0.046296924352645874, -0.018103109672665596, -0.001147681032307446, -0.026047145947813988, 0.01921062543988228, 0.029342349618673325, 0.013324379920959473, -0.011615250259637833, 0.0008588380296714604, -0.027838315814733505, -0.0027226447127759457, -0.0169545728713274, 0.01713232323527336, -0.008190153166651726, -0.004303590394556522, 0.00028371563530527055, 0.024611476808786392, -0.028713390231132507, 0.006392147392034531, -9.73670175881125e-05, 0.05124656483530998, 0.005024843383580446, -0.008340556174516678, -0.03308876231312752, 0.006412656977772713, -0.015505230985581875, -0.0008759293123148382, 0.026730798184871674, 0.01672213152050972, 0.0259377621114254, 0.013201323337852955, 0.0006182779325172305, -0.023121114820241928, -0.004262571223080158, 0.020413853228092194, 0.01959346979856491, 0.032651226967573166, -0.03297938033938408, -0.017556186765432358, -0.02124790847301483, -0.006228071171790361, -0.01597011461853981, -0.02321682684123516, 0.0012946662027388811, -0.009803571738302708, -0.0010100960498675704, 0.02379109524190426, 0.00453603221103549, -0.011451173573732376, 0.015600942075252533, -0.011321279220283031, 0.039542440325021744, 0.0002721790224313736, -0.0058794086799025536, -0.02611551247537136, 0.00568798603489995, -0.03095576912164688, 0.014288329519331455, -0.025295129045844078, -0.01190922036767006, 0.016161536797881126, 0.02078302577137947, 0.021206889301538467, 0.04517573490738869, 0.00030465249437838793, -0.004935968667268753, 0.027810968458652496, 0.03885878622531891, 0.021781157702207565, -0.016503361985087395, 0.05868469923734665, 0.01172463409602642, 0.00333964079618454, 0.009974485263228416, 0.009817244485020638, 0.0011741726193577051, -0.013659370131790638, -0.01776128262281418, -0.040855053812265396, -0.010398348793387413, 0.004262571223080158, -0.0016125645488500595, 0.00276366388425231, 0.03437402844429016, 0.01713232323527336, -0.013098775409162045, -0.014821578748524189, 0.018745742738246918, -0.023367229849100113, 0.0034951716661453247, 0.03497564420104027, 0.01233308482915163, 0.0044369022361934185, -0.00825851783156395, 0.025787359103560448, 0.00592042738571763, -0.015983786433935165, 0.006997179705649614, -0.004269407596439123, 0.003079853020608425, -0.01401486899703741, 0.022246040403842926, -0.040499553084373474, 0.02802973799407482, 0.04402719810605049, 0.003838706761598587, -0.0007861999911256135, 0.017104975879192352, 0.010193253867328167, 0.013843956403434277, 0.014561790972948074, -0.026935894042253494, 0.007328751031309366, 0.04257785528898239, 0.04419127479195595, 0.013645696453750134, -0.0440545454621315, 0.027660565450787544, 0.003907071892172098, -0.03691721707582474, 0.003409715136513114, -0.04019874706864357, 0.031338613480329514, -0.003457570681348443, -0.01848595403134823, -0.0013912321301177144, 0.014356695115566254, 0.005752932745963335, 0.0025739502161741257, 0.0008626835769973695, -0.020386507734656334, 0.009236140176653862, 0.02495330385863781, 0.0005388033459894359, -0.018130455166101456, -6.430602661566809e-05, 0.007711596321314573, -0.010911088436841965, -0.019525105133652687, -0.014178945682942867, 0.016653766855597496, 0.016831515356898308, -0.023353558033704758, -0.01452077180147171, 0.006754483096301556, 0.020454872399568558, -0.01817147433757782, 0.013543149456381798, -0.0074312989600002766, -0.005995629355311394, -0.02081037126481533, 0.006716882344335318, -0.019237970933318138, -0.01674947701394558, -0.0373820997774601, -0.002493621315807104, -0.020044680684804916, -0.015723999589681625, 0.04227704927325249, -0.013994359411299229, 0.022191349416971207, -0.004830002319067717, -0.012039114721119404, -0.024105574935674667, 0.0043446095660328865, 0.029779886826872826, -0.009762552566826344, -0.03861267492175102, 0.03820248320698738, 0.02081037126481533, -0.013016737066209316, 0.015901748090982437, 0.005790533497929573, 0.01147851999849081, -0.014165272936224937, -0.007205693516880274, -0.02052323706448078, 0.01318764965981245, -0.010958943516016006, 0.011922893114387989, 0.007937201298773289, 0.00047257455298677087, 0.003349895589053631, 0.02808443084359169, -0.027783622965216637, 0.0016493108123540878, -0.0015108712250366807, -0.03440137580037117, -0.013399582356214523, -0.02588307112455368, 0.008320046588778496, -0.001421141903847456, -0.020742006599903107, -0.02513105235993862, -0.01866370439529419, -0.020824044942855835, -0.02906888909637928, -0.005537582561373711, 0.03382710739970207, -0.02813912183046341, -0.012421959079802036, -0.025308802723884583, 0.02298438549041748, 0.001974045531824231, -0.027947699651122093, -0.006617752835154533, -0.00827219057828188, 0.01765189878642559, 0.017050284892320633, -0.01032998412847519, 0.009612149558961391, 0.0009220758220180869, -0.012777458876371384, 0.010364166460931301, 0.005411106627434492, -0.03426464647054672, 0.010152234695851803, -0.029916618019342422, -0.015122385695576668, -0.006891213823109865, 0.006962996907532215, 0.019429393112659454, 0.02184952236711979, 0.002932867733761668, -0.010705992579460144, 0.020236102864146233, 0.0025158398784697056, 0.014411387033760548, -0.03292468562722206, 0.003303749021142721, -0.030846385285258293, -0.007574865594506264, -0.0036301929503679276, 0.007137328386306763, 0.022875001654028893, -0.018567992374300957, 0.010036013089120388, 0.015067693777382374, 0.009530111216008663, 0.0023192898370325565, -0.011252914555370808, -0.010473551228642464, -0.009386544115841389, 0.011950239539146423, -0.0032695664558559656, -0.004823165945708752, -3.252688838983886e-05, -0.013276524841785431, -0.024091901257634163, -0.022916020825505257, 0.011929729953408241, -0.026033474132418633, 0.012264719232916832, -0.017200687900185585, 0.0003898953727912158, -0.05272325500845909, 0.015587269328534603, 0.008860131725668907, -0.008408921770751476, -0.021083831787109375, -0.026908548548817635, 0.02720935456454754, -0.0023876552004367113, 0.0059135910123586655, -0.029807234182953835, -0.012674910947680473, -0.010090705938637257, 0.008853294886648655, -0.003389205550774932, -0.003243929473683238, -0.003616519970819354, 0.003272984642535448, -0.020960774272680283, 0.004785565193742514, -0.01597011461853981, -0.005605947691947222, -0.010740174911916256, -0.001498052733950317, -0.006152869202196598, -0.04591407999396324, -0.01718701422214508, 0.02373640239238739, -0.01765189878642559, -0.0010570971062406898, -0.0005734132137149572, -0.005899917799979448, -0.006720300763845444, 0.009256649762392044, -0.00909940991550684, -0.01431567594408989, -0.006187052000313997, 0.029369696974754333, -0.014848924241960049, 0.03713598474860191, 0.014397714287042618, 0.013098775409162045, 0.0009152393322438002, -0.004235225263983011, 0.003554991213604808, -4.956478005624376e-05, 0.010596607811748981, -0.0039036537054926157, -0.04443738982081413, 0.006392147392034531, 0.011191385798156261, 0.008860131725668907, 0.0007144164992496371, 0.0051342276856303215, -0.021603407338261604, -0.010774358175694942, 0.010507733561098576, -0.005325650330632925, 0.004515522625297308, 0.018335551023483276, -0.00039245907100848854, 0.02805708348751068, 0.003712231060490012, 0.001456179074011743, -0.028822774067521095, -0.006419493816792965, -0.015532576479017735, -0.02591041661798954, 0.027893006801605225, 0.016120517626404762, -0.000581958913244307, -0.0016826388891786337, -0.005469216965138912, 0.0006447694031521678, 0.017228033393621445, 0.021083831787109375, -0.0013254305813461542, 0.008572997525334358, 0.009742042981088161, 0.011820345185697079, -0.00032858032500371337, 0.004577050916850567, -0.012121152132749557, -0.004156604874879122, -0.0006263962714001536, -0.010801703669130802, -0.01638030633330345, -0.01886879839003086, 0.00020466836576815695, 0.017542514950037003, 0.0031311267521232367, -0.010630791075527668, 0.017542514950037003, -0.004054057411849499, 0.019237970933318138, -0.0016270921332761645, 0.06989659368991852, 0.004559959750622511, -0.014411387033760548, 0.003975437022745609, -0.01628459431231022, 0.009366034530103207, -0.008511468768119812, -0.004412974696606398, -0.012271556071937084, 0.01628459431231022, 0.003108908189460635, -0.011362298391759396, 0.0012562108458951116, -0.008819112554192543, -0.006655353587120771, -0.039460401982069016, 0.0156556349247694, -0.026676107197999954, 0.0084772864356637, -0.003674630308523774, -0.006457094568759203, 0.005790533497929573, 0.002382527804002166, 0.013994359411299229, -0.0038933989126235247, -0.01718701422214508, -0.005917009431868792, 0.00549314497038722, -0.02208196371793747, 0.0030149060767143965, 0.0023756911978125572, -0.003450734307989478, 0.013256015256047249, 0.01014539785683155, 0.02342192269861698, 0.003449025098234415, 0.00521626602858305, 0.02208196371793747, -0.00881227571517229, 0.024912284687161446, 0.002384236780926585, 0.025199418887495995, 0.00268846214748919, 0.04263254627585411, -0.0006272508180700243, -0.0058862450532615185, 0.02420128509402275, 0.016708457842469215, -0.007451808545738459, -0.0007062981021590531, 0.009386544115841389, -0.000987877370789647, -0.01944306679069996, -0.0048197475261986256, -0.018294531852006912, -0.001400632318109274, 0.010555589571595192, 0.030244771391153336, 0.014835251495242119, -0.02477555349469185, -0.019347356632351875, -0.007609048392623663, 0.0006823702715337276, -0.0013502129586413503, 0.012408286333084106, -0.02040017955005169, 0.001944990362972021, 0.033635687083005905, 0.009270323440432549, 0.012818478047847748, -0.006857031024992466, -0.012729602865874767, 0.0005332486471161246, -0.020591601729393005, -0.009236140176653862, 0.013625186868011951, -0.036042142659425735, -0.016147863119840622, -0.016831515356898308, -0.0018714977195486426, -0.0217401385307312, -0.013973849825561047, 0.014903617091476917, -0.007732105907052755, -0.022122982889413834, -0.02668977901339531, -0.015929095447063446, 0.008443104103207588, 0.03694456070661545, -0.0067339735105633736, 0.02368170954287052, 0.025896742939949036, -0.009858263656497002, -0.02668977901339531, 0.01597011461853981, 0.0009417308610863984, -0.012497161515057087, -0.009119919501245022, 0.020126719027757645, 0.0015672725858166814, 0.01666743867099285, 0.014425060711801052, -0.0016142736421898007, -0.018513299524784088, -0.008019239641726017, -0.001288684317842126, 0.004659089259803295, 0.011601576581597328, 0.020277122035622597, 0.007034780457615852, -0.0018526973435655236, -0.01858166605234146, -0.002794428262859583, 0.01602480560541153, -0.01869104988873005, -0.02860400639474392, -0.01430200319737196, 0.012654401361942291, -0.010425695218145847, -0.003125999355688691, -0.03256918862462044, 0.018103109672665596, -0.018280858173966408, -0.01770658977329731, -0.008716564625501633, 0.015286462381482124, 0.02016773819923401, 0.014219964854419231, -0.002509003272280097, 0.020441198721528053, 0.015163404867053032, 0.0032661480363458395, -0.014698521234095097, 0.0059135910123586655, 0.01834922283887863, 0.030135387554764748, -0.009639495052397251, -0.0037840146105736494, -0.0023227082565426826, -0.009796734899282455, 0.007219366729259491, 0.00836106576025486, -0.025076361373066902, 0.024119248613715172, 0.003739577252417803, -0.04162074252963066, 0.015874402597546577, -0.00695616053417325, -0.0051889196038246155, 0.00021599135652650148, 0.002353472402319312, -0.014233637601137161, 0.016503361985087395, 0.010015503503382206, -0.004183951299637556, -0.01367987971752882, 0.002893557772040367, -0.01283898763358593, 0.0058486443012952805, -0.01889614574611187, -0.004443739075213671, 0.02956111915409565, -0.030873730778694153, 0.00010062505316454917, 0.004706944804638624, -0.015341154299676418, -0.0015886366600170732, 0.019087567925453186, 6.409238994820043e-05, -0.0047821467742323875, -0.018526973202824593, -0.003951509483158588, 0.006980088539421558, 0.00888064131140709, 0.004997497424483299, 0.0007336442358791828, -0.012729602865874767, -0.012770622037351131, 0.008340556174516678, 0.005383760668337345, -0.01454811729490757, 0.006200724747031927, -0.018239839002490044, 0.006128941662609577, -0.011293933726847172, -0.03481156751513481, -0.004194206092506647, -0.006180215626955032, 0.01664009317755699, 0.015300135128200054, -0.0014954890357330441, -0.013761918060481548, -0.03207695856690407, 0.00736977020278573, 0.004190787672996521, 0.006207561586052179, 0.020154064521193504, -0.033663030713796616, 0.001493779942393303, 0.016448670998215675, 0.01402854174375534, -0.005575183313339949, 0.013816609978675842, 0.012401449494063854, -0.011922893114387989, 0.011772490106523037, 0.020591601729393005, 0.00631010951474309, 0.01765189878642559, 0.004946223460137844, -0.00021342765830922872, 0.0025824960321187973, 0.008436267264187336, 0.031721457839012146, 0.003108908189460635, 0.0018526973435655236, -0.016585400328040123, -0.024379035457968712, -0.012360431253910065, -0.006761319935321808, -0.003303749021142721, -0.018909817561507225, -0.01689988188445568, 0.016995592042803764, -0.027031606063246727, -0.0031413815449923277, 0.006299854721873999, 0.02280663512647152, -0.001944990362972021, -0.033608339726924896, 0.0029858506750315428, -0.012162171304225922, 0.000532394100446254, -0.006395565811544657, -0.022765615954995155, -0.018308203667402267, -0.012893679551780224, -0.013597841374576092, 0.007677413523197174, -0.0173921100795269, 0.01571032591164112, 0.00026149695622734725, 0.006460512988269329, -0.016804169863462448, -0.005694822408258915, 0.008832785300910473, 0.04131993651390076, -0.008320046588778496, 0.018335551023483276, -0.022615212947130203, 0.016503361985087395, 0.003951509483158588, 0.0028491204138845205, -0.011218731291592121, -0.020495891571044922, 0.01993529684841633, -0.015218096785247326, -0.006740810349583626, 0.004583887755870819, 0.005000915378332138, 0.032733265310525894, 0.003088398603722453, 0.010384676046669483, -0.021548716351389885, -0.01962081715464592, -0.011464846320450306, 0.009994994848966599, 0.027428124099969864, 0.0038147789891809225, 0.010610281489789486, -0.010630791075527668, -0.009413889609277248, 0.02026345022022724, 0.0027978464495390654, -0.00047257455298677087, -0.014971981756389141, -0.04399985074996948, -0.030354155227541924, 0.0018390242476016283, -0.011758817359805107, 0.03306141868233681, -0.009331852197647095, 0.002979014301672578, 0.010425695218145847, -0.008730238303542137, -0.0012938117142766714, 0.012579199858009815, -0.0313112698495388, -0.023544980213046074, 0.0013510675635188818, -0.010336820036172867, -0.0007827816880308092, 0.011984421871602535, -0.00014111008204054087, 0.008921660482883453, -0.01243563275784254, -0.00715100159868598, -0.0017518586246296763, 0.00960531271994114, -0.006221234332770109, -0.017323745414614677, 0.014124253764748573, -0.02570532076060772, -0.04358965903520584, -0.02813912183046341, -0.013044082559645176, 0.015983786433935165, -0.0036780484952032566, 0.023339884355664253, -0.014876270666718483, 0.023025404661893845, 0.009687351062893867, 0.015136058442294598, 0.007602212019264698, -0.03306141868233681, -0.01944306679069996, -0.004488176200538874, 0.007588538806885481, -0.014862597920000553, -0.03858532756567001, 0.0009853136725723743, 0.000658869743347168, 0.009974485263228416, 0.006043484900146723, -0.010699155740439892, -0.04268724098801613, 0.001636492321267724, 0.00886696856468916, 0.008408921770751476, -0.01602480560541153, 0.003749832045286894, -0.02524043805897236, -0.02599245496094227, -0.011102510616183281, -0.008716564625501633, -0.029807234182953835, 0.009372871369123459, 0.001725367153994739, 0.008723401464521885, 0.029287658631801605, 0.002811519429087639, 0.022738270461559296, 0.016147863119840622, 0.01915593259036541, -0.002479948103427887, -0.0017125486629083753, -0.003438770305365324, -0.0063237822614610195, 0.010514570400118828, -0.0034661164972931147, -0.005028261337429285, 0.012483487837016582, -0.044355351477861404, 0.0397065170109272, 0.024187613278627396, 0.029424387961626053, 0.00940705370157957, -0.011293933726847172, -0.002791009843349457, -0.0038831441197544336, 0.020878735929727554, 0.0066382624208927155, -0.0022714342921972275, -0.020769352093338966, 0.037026599049568176, 0.031092500314116478, -0.008586671203374863, -0.012374104000627995, 0.0159427672624588, -0.01921062543988228, 0.02956111915409565, 0.025377167388796806, -0.008600343950092793, -0.0037942694034427404, 0.01892349123954773, 0.01979856565594673, 0.00921563059091568, -0.0213026013225317, -0.005612784065306187, -0.01597011461853981, -0.036999255418777466, -0.0012339921668171883, 0.032678574323654175, 0.021958906203508377, -0.0063613830134272575, -0.0003666084667202085, -0.008627690374851227, -0.011669942177832127, 0.009078900329768658, 0.014712193980813026, 0.0023090350441634655, 0.020536910742521286, 0.003572082379832864, 0.014096907339990139, 0.043316200375556946, 0.019265318289399147, 0.02947908081114292, 0.0037293224595487118, 0.02327151969075203, 0.011984421871602535, 0.017829647287726402, -0.02277928963303566, -0.01689988188445568, -0.01597011461853981, 0.005380342248827219, -0.006087922491133213, -0.015518903732299805, 0.006901468615978956, -0.006019557360559702, 0.005674312822520733, -0.02355865389108658, -0.004573632963001728, 0.004423229489475489, -0.01401486899703741, -0.014602810144424438, -0.004368537105619907, -0.008135460317134857, 0.030299462378025055, -0.0038455433677881956, -0.00827219057828188, -0.006614334415644407, 0.012032277882099152, 0.011922893114387989, 0.005212847609072924, 0.022396443411707878, 0.021220562979578972, -0.00715100159868598, 0.0021911051589995623, -0.008073931559920311, -0.006942487321794033, -0.009769389405846596, -0.004351445939391851, -0.00363361113704741, -0.017747608944773674, 0.010323147289454937, -0.0037088128738105297, -0.011034145951271057, 0.009017371572554111, 0.010206926614046097, 0.0028593752067536116, 0.02474820800125599, 0.020208757370710373, 0.007677413523197174, -0.01571032591164112, 0.006221234332770109, -0.005623038858175278, 0.009174611419439316, -0.03576868027448654, -0.00020904801203869283, 0.006651935167610645, 0.028850121423602104, 0.004183951299637556, 0.00970786064863205, -0.0025722412392497063, 0.01370722521096468, 0.0037293224595487118, 0.01317397691309452, 0.009277159348130226, -0.003596010385081172, -0.003807942382991314, 0.02251950092613697, 0.002823483431711793, -0.0055717648938298225, -0.021890541538596153, -0.016681112349033356, -0.0008336283499374986, 0.03453810513019562, -0.002129576401785016, -0.023025404661893845, 0.02686752937734127, 0.03921428695321083, 0.002338090445846319, -0.03054557740688324, -0.0071236551739275455, 0.0074654812924563885, 0.00506586255505681, 0.00617337878793478, 0.01184085477143526, 0.017255380749702454, 0.01933368295431137, -0.014247310347855091, -0.009181448258459568, -0.010398348793387413, -0.008320046588778496, -0.008949006907641888, 0.01654438115656376, -0.011218731291592121, 0.00983775407075882, -0.028932159766554832, 0.02381844073534012, 0.00038134970236569643, -0.0026730799581855536, 0.0066861179657280445, 0.011950239539146423, -0.020072026178240776, -0.0031499273609369993, 0.01453444454818964, -0.005031679756939411, -0.003231965471059084, 0.003948091063648462, -0.01767924427986145, -0.01369355246424675, -0.004153186921030283, 0.009618985466659069, 0.0063135274685919285, -0.019921623170375824, 0.009106246754527092, -0.013228668831288815, -0.0039036537054926157, -0.010234273038804531, 0.010931598022580147, 0.005681149195879698, -0.02332621067762375, -0.029315004125237465, 0.02368170954287052, 0.005226520821452141, 0.0067237187176942825, -0.03142065182328224, 0.004149768501520157, 0.005852062255144119, -0.0012972299009561539, 0.01648969016969204, -0.016093172132968903, -5.047275772085413e-05, -0.00422497047111392, 0.006347710266709328, 0.00856616161763668, 0.009229304268956184, -0.0015177077148109674, 0.0030012328643351793, -0.011765653267502785, -0.0059341005980968475, 0.008627690374851227, -0.022902347147464752, 0.011533211916685104, 0.008285864256322384, -0.00030849804170429707, 0.007287731859833002, 0.002373981988057494, -0.021753812208771706, -0.005547837354242802, -0.009906119666993618, -0.007349260617047548, 0.005007751751691103, 0.0010741883888840675, -0.011929729953408241, 0.005041934549808502, 0.015983786433935165, 0.03300672397017479, -0.007349260617047548, 0.016079498454928398, 0.01527278870344162, -0.006785247474908829, -0.001352776656858623, 0.0013459401670843363, 0.02280663512647152, 0.009427563287317753, 0.008559324778616428, -0.006911723408848047, 0.008839622139930725, -0.008620853535830975, -0.00490520428866148, -0.007581702433526516, -0.003438770305365324, -0.007766288239508867, 0.014343022368848324, 0.00773894228041172, 0.014493425376713276, -0.03010804019868374, 0.003026869846507907, 0.016708457842469215, 0.001269883825443685, 0.011280260048806667, 0.011095674708485603, 0.0024782391265034676, 0.018622685223817825, 0.00453603221103549, -0.017515167593955994, -0.012579199858009815, -0.005352996289730072, 0.0021141942124813795, -0.008408921770751476, 0.018554318696260452, 0.014260984025895596, -0.007472318131476641, -0.010316310450434685, 0.0062759267166256905, -0.017515167593955994, 0.012531343847513199, 0.0010699155973270535, -0.00038369977846741676, 0.040362823754549026, -0.0030525068286806345, -0.011444336734712124, -0.005387179087847471, 0.002197941765189171, 0.008326883427798748, -0.018964510411024094, 0.022273387759923935, -0.0014382331864908338, 0.010036013089120388, 0.01672213152050972, -0.016585400328040123, -0.02234175242483616, -0.004700108431279659, 0.0035139720421284437, -0.02381844073534012, -0.0001396145817125216, 0.015300135128200054, 0.0037088128738105297, 0.013385908678174019, -0.007287731859833002, -0.019962642341852188, -0.014178945682942867, 0.019784893840551376, -0.01765189878642559, 0.028822774067521095, 0.011191385798156261, 0.01858166605234146, -0.009372871369123459, -0.010336820036172867, 0.018841452896595, -0.01190922036767006, -0.00959163997322321, -0.01005652267485857, -0.012832150794565678, 0.014807905070483685, 0.023982517421245575, -0.023640690371394157, 0.005739259999245405, 0.012169008143246174, 0.010788030922412872, 0.02857665903866291, -0.003654120722785592, 0.007424462120980024, -0.01105465553700924, 0.007978220470249653, -0.006371637806296349, -0.008484123274683952, 0.008887478150427341, -0.005192338023334742, 0.03199492022395134, 0.0010425695218145847, 0.004043802618980408, -0.01525911595672369, 0.006460512988269329, 0.010637626983225346, 0.020714659243822098, 0.012743275612592697, 0.0051718284375965595, -0.0030507976189255714, 0.02329886518418789, 0.01881410740315914, -0.010924761183559895, -0.009625822305679321, -0.01643499732017517, -0.015136058442294598, -0.02031814120709896, -0.015546250157058239, 0.0044198110699653625, -0.0313112698495388, 0.0021329945884644985, 0.0010733339004218578, -0.007985057309269905, 0.010958943516016006, 0.009783062152564526, -0.007171511184424162, -0.006422911770641804, 0.022451136261224747, -0.00115195382386446, 0.008203825913369656, 0.012052787467837334, -0.020208757370710373, -0.005141064058989286, 0.0062485807575285435, 0.02091975510120392, 0.008443104103207588, -0.002449183724820614, 0.03541317954659462, -0.0051513188518583775, 0.02692222222685814, -0.008901150897145271, -0.004600978922098875, 0.0026320607867091894, -0.0003208892303518951, 0.004471085034310818, 0.03292468562722206, -0.01117087621241808, 0.02712731808423996, -0.018157800659537315, -0.01294153556227684, 0.01378242764621973, -0.006816011853516102, 0.005889663472771645, 0.015368499793112278, 0.005582019686698914, -0.013543149456381798, -0.03497564420104027, -0.02451576665043831, -2.2485746740130708e-05, 0.02098812162876129, -0.0006520332535728812, -0.03959713131189346, 0.022068291902542114, 0.017966378480196, 0.009010535664856434, 0.007007434498518705, -0.00886696856468916, 0.018650030717253685, 0.004023293033242226, -0.0033823689445853233, 0.009687351062893867, 0.01223053690046072, 0.018021071329712868, 0.014137926511466503, 0.00363361113704741, -0.016503361985087395, 0.022656232118606567, -0.018526973202824593, -0.0031396725680679083, 0.0010553880129009485, -0.013091938570141792, 0.008873804472386837, 0.006347710266709328, 0.0006323782145045698, 0.007041617296636105, 0.0059614465571939945, -0.009017371572554111, 0.0025585682597011328, 0.0014570336788892746, -0.011416991241276264, 0.005575183313339949, -0.016872534528374672, -0.02961581014096737, 0.0027585364878177643, -0.029725195840001106, -0.0040369657799601555, 0.0029533773194998503, 0.023572325706481934, 0.013611514121294022, 0.014930962584912777, 0.0033755325712263584, 0.000671260931994766, 0.016448670998215675, -0.002843993017449975, -0.01605215296149254, 0.005428198259323835, 0.0012835569214075804, -0.009557456709444523, -0.013228668831288815, -0.007909854874014854, 0.010541915893554688, 0.003312294604256749, -0.0010169325396418571, 0.018513299524784088, -0.006262253504246473, 0.013201323337852955, -0.011348625645041466, -0.0013228668831288815, 0.013686715625226498, -0.0017843320965766907, -0.014055888168513775, -0.0026491519529372454, 0.019784893840551376, -0.011136693879961967, -0.0018834617221727967, -0.02370905689895153, 0.02712731808423996, 0.004033547826111317, 0.00015051029913593084, 0.0019996825139969587, 0.013030409812927246, 0.023544980213046074, 0.003467825474217534, -0.010822213254868984, 0.008429431356489658, 0.016708457842469215, -0.0024884939193725586, 0.012264719232916832, -0.015218096785247326, 0.0018578247400000691, -0.0015373628120869398, -0.006757901515811682, 0.026812836527824402, -0.00046915627899579704, 0.011834018863737583, -0.034647490829229355, 0.0036404477432370186, -0.017980052158236504, 0.007540683262050152, -0.00834739301353693, 0.006385311018675566, 0.001205791486427188, -0.03202226758003235, 0.0043343547731637955, 0.007663740776479244, 0.019320009276270866, -0.0169545728713274, 0.011423827148973942, 0.0030815619975328445, -0.0034319336991757154, -0.01791168563067913, 0.004081403370946646, -0.01317397691309452, 0.0040198746137320995, -0.006477604154497385, 0.005089790094643831, 0.01004284992814064, -0.0029157763347029686, -0.018732069060206413, -0.028904812410473824, 0.013297034427523613, -0.028713390231132507, -0.02526778355240822, 0.0017535677179694176, 0.004925713874399662, 0.0024081647861748934, 0.014165272936224937, -0.027428124099969864, 0.012223700061440468, 0.0047548008151352406, -0.0051991743966937065, 0.010596607811748981, -0.014780559577047825, -0.009441236034035683, 0.005698240827769041, 0.009236140176653862, 0.02414659410715103, 0.0039720190688967705, -0.008586671203374863, 0.027947699651122093, -0.019607143476605415, -0.01677682437002659, 0.027058951556682587, -0.003066179808229208, -0.009543783962726593, 0.028330545872449875, 0.012257883325219154, 0.0032576024532318115, 0.013632023707032204, -0.0013408127706497908, 0.019169606268405914, 0.0016065825475379825, -0.01159474067389965, -0.010295800864696503, -0.016448670998215675, -0.00836106576025486, -0.0005580310826189816, -0.009878773242235184, -0.017337419092655182, 0.012223700061440468, 0.009003698825836182, -0.0011946820886805654, 0.01869104988873005, 0.02138463966548443, -0.016995592042803764, 0.004932550247758627, 0.026033474132418633, 0.003838706761598587, -0.002215032931417227, 0.010295800864696503, -0.0007131346501410007, -0.017050284892320633, 0.00685361260548234, 0.010658136568963528, -0.004539450164884329, 0.005958028603345156, 0.0043548643589019775, 0.004662507679313421, 0.004836839158087969, 0.014835251495242119, -0.01785699464380741, 0.01212798897176981, -0.0037293224595487118, 0.009195121005177498, 0.028002392500638962, 0.009728370234370232, 0.02353130653500557, 0.0007327896310016513, -0.0001678152329986915, -0.021152198314666748, -0.01233308482915163, 0.00837473850697279, -0.0062314891256392, -0.016011133790016174, 0.008887478150427341, 0.023490287363529205, -0.030846385285258293, -0.010008667595684528, -0.00736977020278573, -0.007390279788523912, -0.028275853022933006, 0.019894277676939964, 0.0038455433677881956, -0.002708971733227372, 0.012189517728984356, 0.005000915378332138, 0.01724170707166195, 0.006891213823109865, -0.02101546712219715, -0.005995629355311394, 0.026498356834053993, 0.011369135230779648, -0.0024662751238793135, -0.010747011750936508, -0.0018680795328691602, -0.019429393112659454, 0.00969418790191412, 0.018841452896595, 0.00972153339534998, 0.0040574753656983376, 0.0062485807575285435, 0.011834018863737583, 0.019784893840551376, -0.0035139720421284437, -0.008600343950092793, 0.028713390231132507, -0.006197306793183088, -0.009502764791250229, 0.0031618911307305098, 0.017556186765432358, 0.007137328386306763, 0.008224335499107838, -0.005363251082599163, -0.016886208206415176, 0.0032285472843796015, 0.009379707276821136, -0.016134191304445267, 0.004351445939391851, -0.011922893114387989, -0.015313807874917984, -0.014466079883277416, 0.012770622037351131, -0.0074312989600002766, -0.010220599360764027, 0.0010639335960149765, -0.01505402009934187, -0.0004223688447382301, -0.0005576037801802158, 0.021808503195643425, 0.017091304063796997, -0.01223053690046072, -0.006504950113594532, 0.012558690272271633, -0.021370965987443924, -0.00342680630274117, -0.00193473557010293, 0.04118320345878601, -0.020646294578909874, -0.0026218059938400984, -0.009413889609277248, -0.0036917217075824738, -0.005035098176449537, 0.008538815192878246, -0.0074107893742620945, -0.024939630180597305, 0.0018304786644876003, 0.01044620480388403, 0.01605215296149254, -0.011499028652906418, 0.020359160378575325, 0.012592872604727745, 0.008689219132065773, 0.03683517873287201, -0.00248165731318295, 0.009755715727806091, 0.017405783757567406, 0.03429199010133743, 0.007082636468112469, -0.0066690267994999886, 0.013454274274408817, -0.00564354844391346, 0.0036575389094650745, 0.0016134190373122692, -0.02187686786055565, 0.006440003402531147, -0.009078900329768658, -0.003951509483158588, -0.013919157907366753, -0.0039002355188131332, -0.04315212368965149, 0.027140989899635315, 0.007574865594506264, 0.016093172132968903, -0.006532296072691679, 0.01747414842247963, 0.0012792841298505664, -0.009769389405846596, 0.020646294578909874, -0.007615884765982628, -0.007274058647453785, 0.00953694712370634, -0.0032097469083964825, 0.010637626983225346, 0.001363031449727714, 0.027496488764882088, -0.010712829418480396, 0.028385236859321594, -0.004812911152839661, 0.008135460317134857, -0.010036013089120388, 0.014999328181147575, 0.010090705938637257, 0.03379976376891136, 0.01223053690046072, -0.011034145951271057, -0.0040198746137320995, -0.003712231060490012, 0.024707188829779625, 0.0077936346642673016, 0.007998730055987835, -0.012907352298498154, 0.020495891571044922, 0.0027534090913832188, 0.0029465407133102417, -0.006590406876057386, 0.010938433930277824, 0.011451173573732376, 0.0025807868223637342, 0.016681112349033356, -0.006375056225806475, 0.012709093280136585, 0.004358282312750816, 0.0165170356631279, 0.013816609978675842, -0.016831515356898308, 0.017569860443472862, -0.004201042465865612, 0.009133592247962952, -0.008135460317134857, -0.0014237056020647287, -0.03150269016623497, 0.01402854174375534, -0.009489092044532299, -0.013891811482608318, 0.019989989697933197, 0.004129258915781975, -0.004994079004973173, 0.010658136568963528, -0.002664534142240882, -0.013761918060481548, -0.0017604043241590261, 0.003242220263928175, -0.02500799484550953, -0.005578601732850075, 0.015751345083117485, -0.01473954040557146, -0.012401449494063854, 0.00142541469540447, -0.01172463409602642, -0.006932232994586229, 0.022328078746795654, 0.0014202872989699244, 0.02202727273106575, 0.0020270287059247494, -0.01602480560541153, -0.0002452602202538401, -0.0259377621114254, 0.02480289898812771, 0.0035002990625798702, -0.020154064521193504, 0.027236701920628548, 0.02124790847301483, 0.0230390764772892, 0.005708495620638132, 0.006706627551466227, 0.014247310347855091, 0.0008477286901324987, 0.03054557740688324, -0.0032661480363458395, -0.020700987428426743, -0.02153504267334938, 0.00857983436435461, 0.014055888168513775, 0.0017945868894457817, -0.0035686641931533813, 0.0047889831475913525, 0.012442468665540218, 0.01863635703921318, 0.011252914555370808, -0.00909940991550684, -0.004286498762667179, 0.005048770923167467, -0.010924761183559895, -0.01475321315228939, -0.02208196371793747, -0.009817244485020638, -0.00013117575144860893, 0.010712829418480396, 0.0003804951556958258, -0.005195756442844868, 0.002647442976012826, -0.011218731291592121, 0.0037190676666796207, -0.0025534408632665873, -0.012702256441116333, 0.016681112349033356, -0.016558054834604263, -0.00012733021867461503, 0.01256552617996931, -0.016147863119840622, 0.012962045148015022, -0.00907206442207098, -0.006357965059578419, 0.0029191947542130947, -0.005817879922688007, 0.0009160938789136708, -0.0024884939193725586, 0.017802301794290543, -0.013515803031623363, -0.02005835436284542, -0.02176748402416706, -0.006067412905395031, -0.0031396725680679083, -0.0003018751449417323, 0.008928497321903706, 0.020591601729393005, 0.013474783860147, -0.007472318131476641, 7.103573443600908e-05, 0.0008558470290154219, -0.010945270769298077, 0.007130492012947798, 0.026771817356348038, -0.01617521047592163, -0.009154101833701134, 0.00018234284652862698, -0.020099373534321785, -0.0018202238716185093, -0.05321548134088516, -0.014917289838194847, -0.0030815619975328445, -0.005441871006041765, -0.022929692640900612, -1.3806568858854007e-05, 0.0049633146263659, -0.003302039811387658, 0.0037361590657383204, -0.0059717013500630856, 0.0022697250824421644, 0.0020441198721528053, -0.020960774272680283, 0.010213763453066349, -0.010911088436841965, 0.004467666614800692, -0.006559642497450113, -0.002493621315807104, 0.0008648199727758765, -0.01316030416637659, -0.0019278990803286433, -0.019525105133652687, -0.006559642497450113, -0.00329349422827363, 0.009106246754527092, 0.019552450627088547, 0.0023295446299016476, 0.02500799484550953, 0.0011707543162629008, -0.013098775409162045, -0.01848595403134823, 0.011437500827014446, 0.006634844001382589, -0.026088165119290352, -0.026033474132418633, 0.013283360749483109, -0.0070279440842568874, 0.009701023809611797, 0.0030319972429424524, -0.004641998093575239, -0.0005110299680382013, -0.013967012986540794, 0.001885170815512538, -0.018855126574635506, 0.001709130359813571, -0.009748879820108414, 0.004976987838745117, -0.011027309112250805, 0.012572363018989563, 0.0059717013500630856, -0.01078119408339262, -0.005588856525719166, -0.010405185632407665, -0.025568589568138123, 0.0074107893742620945, -0.009967648424208164, -0.003107198979705572, 0.0018458608537912369, -0.024269651621580124, 0.005028261337429285, -0.014192618429660797, 0.006682699546217918, -0.023544980213046074, -0.0063511282205581665, 0.013201323337852955, 0.032295726239681244, -0.005988792981952429, 0.014958309009671211, 0.00392758147791028, -0.012797968462109566, 0.007233039941638708, 0.013960177078843117, -0.002830319805070758, 0.012661238200962543, -0.01726905256509781, 0.0036609573289752007, -0.0005729859694838524, 0.002078302437439561, -0.008572997525334358, 0.023804767057299614, 0.019730200991034508, 0.009543783962726593, -0.005653803236782551, 0.00332254939712584, 0.020154064521193504, -0.0028696299996227026, 0.007403952535241842, -0.0015587268862873316, -0.00648444052785635, -0.004098494537174702, 0.01677682437002659, 0.0059341005980968475, -0.0029721776954829693, 0.007137328386306763, 0.02083771675825119, 0.005018006544560194, 0.005000915378332138, 0.01432934869080782, 0.023394577205181122, -0.009448072873055935, 0.03207695856690407, -0.01389864832162857, 0.006125523243099451, -0.032186344265937805, 0.045722655951976776, -0.02124790847301483, -0.02156238816678524, 0.04739076644182205, -0.002148376777768135, 0.022205021232366562, 0.002820065012201667, 0.007561192847788334, 0.0033738233614712954, -0.022970711812376976, -0.023599671199917793, -0.006481022574007511, -0.0001368372468277812, 0.028385236859321594, -0.019497759640216827, 0.0030849804170429707, 0.002283398061990738, -0.0038557981606572866, -0.009208794683218002, 0.0017228034557774663, -0.0013903775252401829, -0.0029191947542130947, 0.004925713874399662, -0.009495927952229977, 0.011587903834879398, 0.007499664090573788, 0.019251644611358643, -0.0067339735105633736, 8.8821368990466e-05, -0.02813912183046341, -0.015929095447063446, -0.003498589852824807, 0.00199284590780735, -0.01718701422214508, 0.0025466042570769787, -0.01964816264808178, -0.004054057411849499, 0.017310071736574173, 0.01212798897176981, 0.012996227480471134, 0.035659294575452805, -0.02179482951760292, -0.021890541538596153, 0.020359160378575325, 0.009427563287317753, 0.010842722840607166, -0.007650067564100027, 0.025117380544543266, -0.007499664090573788, 0.009283996187150478, -0.002392782596871257, 0.00437537394464016, 0.009994994848966599, 0.002686752937734127, 0.0029174855444580317, -0.03308876231312752, -0.021466678008437157, -0.016995592042803764, -0.004146350082010031, 0.00564354844391346, -0.005855480674654245, -0.001127171446569264, -0.004016456194221973, -0.013638860546052456, -0.008716564625501633, -0.009106246754527092, -0.013426927849650383, 0.0031584729440510273, -0.00506586255505681, -0.012292065657675266, -0.0011425536358729005, -0.012394613586366177, 0.02953377366065979, -0.008121787570416927, 0.008238008245825768, -0.004201042465865612, -0.005718750413507223, -0.006826266646385193, 0.011410154402256012, 0.010008667595684528, 0.004142932128161192, 0.0011237532598897815, -0.002226996934041381, 0.028303198516368866, -0.011382807977497578, -0.01724170707166195, 0.006973251700401306, -0.003486625850200653, 0.0034250973258167505, -0.014466079883277416, -0.00027709276764653623, 3.5437751648714766e-05, 0.019866932183504105, 0.011362298391759396, 0.014151599258184433, -0.020359160378575325, 0.01689988188445568, -0.03396384045481682, 0.014151599258184433, -0.007472318131476641, 0.0066382624208927155, -0.018130455166101456, -0.014780559577047825, 0.007916691713035107, -0.0007297986885532737, 0.0006528878002427518, 0.01380977313965559, 0.010849559679627419, -0.005930682178586721, 0.013447437435388565, -0.01982591301202774, 0.024761881679296494, -0.015860728919506073, 0.022396443411707878, 0.0033926237374544144, -0.005653803236782551, 0.016065824776887894, -0.0027123899199068546, 0.0077731250785291195, 0.019142260774970055, 0.0017040029633790255, -0.0120254410430789, -0.0062383259646594524, -0.024420054629445076, 0.00931817851960659, -0.0002520967391319573, 0.00844994094222784, -0.01967550814151764, 0.016079498454928398, -0.006101595237851143, -0.003430224722251296, 0.009981321170926094, -0.0227519441395998, 0.0030302880331873894, -0.016339287161827087, -0.011628923006355762, -0.020673640072345734, -0.018677376210689545, -0.003777178004384041, 0.02031814120709896, 0.012579199858009815, -0.010487223975360394, -0.002080011647194624, -0.0373820997774601, 0.023285191506147385, 0.01773393712937832, -0.015929095447063446, -0.0006964706117287278, -0.012421959079802036, 0.0029277403373271227, -0.01453444454818964, -0.0055136545561254025, -0.013673042878508568, -0.007376606576144695, -0.00972153339534998, -0.006210979539901018, 0.010480387136340141, 0.027086298912763596, -0.002782464260235429, -0.007868836633861065, -0.02026345022022724, -0.0030918167904019356, 0.004269407596439123, 0.007533846888691187, -0.0139123210683465, 0.014807905070483685, 0.0034011693205684423, 0.004556541331112385, 0.013105611316859722, -0.023640690371394157, 0.010165907442569733, 0.006549387704581022, -0.0051342276856303215, -0.011567394249141216, -0.003201201092451811, 0.007417625747621059, 0.007629557978361845, -0.0156556349247694, 0.00016172646428458393, 0.006091340444982052, -0.0023859459906816483, 0.023585999384522438, 0.00784149020910263, 0.012237373739480972, -0.004471085034310818, -0.01643499732017517, -0.0005990501958876848, -0.015847057104110718, -0.01005652267485857, -0.012032277882099152, 0.0074107893742620945, 0.027031606063246727, 0.04304273799061775, -0.014192618429660797, -0.022013599053025246, -0.025363493710756302, 0.009311342611908913, 0.009748879820108414, -0.013201323337852955, 0.023695383220911026, -0.0021996507421135902, -0.01848595403134823, 0.00323538389056921, -0.006597243249416351, -0.01243563275784254, 0.023353558033704758, -0.01524544321000576, -0.0015929094515740871, -0.0038352885749191046, -0.001514289528131485, 0.006272508297115564, -0.015559922903776169, -0.012859497219324112, 0.009974485263228416, 0.003780596423894167, -0.017282726243138313, 0.005164992064237595, 0.0015407809987664223, 0.015218096785247326, -0.02997131086885929, 0.01527278870344162, 0.012278392910957336, -0.008053421974182129, -0.02112485095858574, -0.016120517626404762, 0.0078004710376262665, -0.005175246857106686, -0.0030952352099120617, -0.006063994485884905, -0.025486551225185394, -0.02720935456454754, -0.013474783860147, 0.00930450577288866, -0.0026935895439237356, 0.015751345083117485, 0.009530111216008663, 0.025568589568138123, 0.005981956142932177, 0.00888064131140709, -0.02347661554813385, 0.011922893114387989, -0.015696654096245766, -0.011512702330946922, 0.0043890466913580894, -0.0059135910123586655, 0.0115195382386446, -0.036589063704013824, -0.024296997115015984, -0.02370905689895153, 0.020769352093338966, -0.013980686664581299, -0.018650030717253685, -0.005595692899078131, -0.009160938672721386, 0.01767924427986145, -0.009229304268956184, -0.0011716089211404324, 0.007492827717214823, -0.002949958899989724, -0.016134191304445267, 0.02182217687368393, -0.006915141362696886, -0.012927861884236336, 0.0009588221437297761, -0.021726464852690697, -0.010952107608318329, -0.0007327896310016513, -0.020044680684804916, -0.03686252236366272, -0.007403952535241842, 0.002664534142240882, -0.005766605958342552, 0.016448670998215675, -0.013830282725393772, 0.01643499732017517, -0.00019302491273265332, 0.014343022368848324, 0.008497796021401882, 0.013714062049984932, 0.008805439807474613, 0.0034849168732762337, -0.009174611419439316, 0.014835251495242119, -0.006207561586052179, 0.0047548008151352406, 0.009311342611908913, 0.018526973202824593, 0.0012126279762014747, 0.0043617007322609425, -0.0031670185271650553, 0.04274193197488785, 0.019005529582500458, 0.013201323337852955, -0.0012502288445830345, -0.004833420738577843, -0.0003766496083699167, 0.0006456240080296993, 0.011922893114387989, -0.000942585407756269, -0.02254684828221798, -0.021193215623497963, -0.019962642341852188, -0.04569530859589577, 0.014698521234095097, 0.008607180789113045, -0.0005793952150270343, -0.014192618429660797, 0.016735805198550224, 0.0031960736960172653, 0.010268455371260643, 0.018280858173966408, -0.001786041189916432, -0.0013587586581707, -0.0012228827690705657, 0.006187052000313997, 0.003408005926758051, -0.013139794580638409, -0.0016142736421898007, 0.0024765299167484045, 0.007615884765982628, -0.004030129406601191, 0.019347356632351875, 0.02132994681596756, 0.010220599360764027, 0.011095674708485603, -0.01689988188445568, -0.0013399581657722592, 0.029643157497048378, -0.00911308266222477, 0.01223053690046072, 0.016134191304445267, -0.005373505875468254, -0.006118686869740486, -0.010829050093889236, -0.008367902599275112, 0.012743275612592697, 0.004812911152839661, 0.013297034427523613, 0.012394613586366177, 0.009933466091752052, -0.02324417233467102, 0.008456776849925518, 8.36939798318781e-05, 0.009687351062893867, -0.0014929253375157714, 0.01938837580382824, 0.0023312538396567106, 0.0202907957136631, 0.005233357194811106, -0.008839622139930725, 0.014206291176378727, 0.02153504267334938, 0.004611233714967966, 0.013734571635723114, -0.007718432694673538, -0.0013391036773100495, 0.010521406307816505, 0.020851390436291695, 0.022861327975988388, 0.020031007006764412, -0.0070005981251597404, -0.0058794086799025536, 0.008456776849925518, 7.835294672986493e-05, 0.0054350346326828, -0.006498113740235567, -0.0036609573289752007, -0.02709997072815895, -0.022423790767788887, 0.007315077818930149, 0.025254109874367714, -0.004713781643658876, -0.0023808185942471027, -0.04197624325752258, 0.025978781282901764, -0.023052750155329704, 0.01834922283887863, 0.01273643970489502, -0.009393380954861641, 0.004864185117185116, 0.021111179143190384, -0.001808259985409677, -0.008046586066484451, 0.0025380586739629507, -0.0032165832817554474, -0.008791767060756683, -0.008354228921234608, 0.00038583617424592376, -0.005766605958342552, -0.005605947691947222, 0.00648444052785635, -0.01638030633330345, 0.006429748609662056, 0.0018048416823148727, -0.0008827658602967858, 0.020536910742521286, -0.007513337302953005, -0.009119919501245022, -0.020017335191369057, -0.008326883427798748, -0.02495330385863781, 0.014137926511466503, -0.0017894594930112362, -0.01201176829636097, -0.004276243969798088, -0.011232404969632626, 0.016476016491651535, -0.006802338641136885, 0.007479154504835606, 0.0034216789063066244, 0.0018441516440361738, 0.01962081715464592, 0.0018544064369052649, -0.0012391195632517338, -0.0030337064526975155, 0.00025551498401910067, 0.0010776066919788718, 0.0013835410354658961, -0.016352958977222443, 0.01654438115656376, -0.022916020825505257, -0.042906008660793304, 0.012298902496695518, 0.0005170119111426175, -0.019005529582500458, 0.005004333797842264, -0.00491887703537941, 0.021288927644491196, -0.006614334415644407, -0.0030046512838453054, -0.031201884150505066, -0.008743911050260067, 0.0038421249482780695, -0.016735805198550224, 0.0010810249950736761, 0.019484085962176323, 0.007820980623364449, 0.006580152083188295, 0.03243245929479599, 0.023394577205181122, -0.02089240960776806, 0.0016672566998749971, 0.0029157763347029686, -0.003172145923599601, -0.019347356632351875, 0.01672213152050972, -0.007390279788523912, -0.006337455473840237, -0.006788665894418955, -0.006214397959411144, -0.007479154504835606, -0.00875074788928032, -0.003419969929382205, -0.011861364357173443, 0.01475321315228939, 0.0019261898705735803, 0.017282726243138313, 0.006234907545149326, 0.024132920429110527, 0.008333719335496426, -0.016106843948364258, -0.03259653598070145, -0.022355426102876663, -0.010008667595684528, -0.008839622139930725, 0.007752615492790937, -0.00929083302617073, -0.007294568233191967, 0.004313845187425613, 0.004583887755870819, -0.009557456709444523, 0.02329886518418789, -0.011533211916685104, -0.011471683159470558, -0.011061491444706917, 0.012921025976538658, 0.018021071329712868, -0.028275853022933006, 0.012531343847513199, -0.011984421871602535, 0.0028867211658507586, -0.004953059833496809, -0.014862597920000553, 0.015395846217870712, -0.0005507672321982682, -0.004474503453820944, -0.00522993877530098, -0.03598744794726372, 0.005445289425551891, -0.01379610039293766, 0.008484123274683952, 0.006357965059578419, 0.0039856918156147, 0.001534799113869667, 0.00437537394464016, -0.010124888271093369, 0.0027123899199068546, 0.011977585963904858, 0.0036814669147133827, -0.0039822738617658615, -0.006491276901215315, 0.015149731189012527, 0.0071031455881893635, 0.03943305462598801, 0.0024252559524029493, 0.022191349416971207, -0.009557456709444523, -0.01724170707166195, -0.02539084106683731, 0.01741945743560791, 0.005240193568170071, -0.022533174604177475, 0.0038250337820500135, -0.02480289898812771, -0.029752541333436966, 0.01525911595672369, 0.022437462583184242, -0.002049247268587351, 0.005472635384649038, 0.0007135619525797665, -0.004067730158567429, -0.013843956403434277, 0.02150769717991352, 0.014821578748524189, 0.0007853453862480819, -0.0014296876033768058, -0.02301173098385334, 0.023982517421245575, 0.00030379791860468686, 0.003889980725944042, -0.0032678572461009026, 0.019552450627088547, -6.644244422204792e-05, 0.00453603221103549, 0.01617521047592163, -0.00227485247887671, 0.015956440940499306, -0.0038660529535263777, 0.01430200319737196, 0.0020475382916629314, 0.0004973569302819669, 0.011129857040941715, 0.013686715625226498, -0.004119004122912884, -0.002920903731137514, -0.0032695664558559656, 0.010500896722078323, -0.025691647082567215, -0.012080133892595768, -0.009366034530103207, -0.006050321273505688, -0.002873048186302185, 0.014903617091476917, 0.0010528243146836758, -0.009769389405846596, -0.008285864256322384, 0.00036532661761157215, 0.030682308599352837, -0.0005678585730493069, 0.014725867658853531, -0.008935333229601383, -0.013946503400802612, 0.010377839207649231, -0.004132677335292101, -0.012627054937183857, 0.008798602968454361, 0.02756485529243946, -0.010692319832742214, -0.0002610696537885815, 0.012804804369807243, -0.006915141362696886, 0.011553721502423286, -0.006166542414575815, -0.0077731250785291195, 0.002110776025801897, 0.008456776849925518, 0.004033547826111317, 0.00896951649338007, 0.002040701685473323, -0.034127913415431976, -0.0032302564941346645, -0.023517634719610214, -0.01664009317755699, -0.0047718919813632965, 0.0007285168394446373, 0.009270323440432549, 0.007691086735576391, 0.004559959750622511, 0.004453993868082762, 0.021835848689079285, 0.02526778355240822, 0.0038352885749191046, -0.010405185632407665, -0.028248507529497147, -0.003951509483158588, 0.0014160145074129105, 0.03057292476296425, -0.0059341005980968475, 0.007991893216967583, -0.009680514223873615, 0.016352958977222443, -0.003787432797253132, 0.011027309112250805, -0.016298267990350723, 0.023312538862228394, -0.016831515356898308, -0.021904215216636658, 0.004286498762667179, -0.0017492949264124036, -0.03872205689549446, -0.01793903298676014, -0.010179580189287663, 0.00025444678612984717, -0.0034934624563902617, 0.00599904777482152, -0.017228033393621445, 0.00959163997322321, -0.004864185117185116, 0.0019620817620307207, 0.027168335393071175, 0.025513898581266403, 0.011382807977497578, 0.0039856918156147, 0.01054875273257494, 0.027004260569810867, 0.040991783142089844, -0.015888076275587082, -0.0018356060609221458, -0.006822848226875067, 0.016653766855597496, 0.015860728919506073, 0.010316310450434685, 5.992638398311101e-05, 0.00429675355553627, 0.019579797983169556, 0.026006126776337624, 0.018526973202824593, -0.017870666459202766, 0.022792963311076164, 0.020947102457284927, -0.006385311018675566, -0.01698192022740841, 0.01721436157822609, -0.019456740468740463, 0.00825851783156395, 0.002459438517689705, -0.021288927644491196, 0.006942487321794033, -0.013440601527690887, -0.012975717894732952, -0.022505829110741615, -0.0010511152213439345, 0.027318740263581276, 0.0007951728766784072, -0.005264121573418379, -0.02570532076060772, 0.0051718284375965595, -0.004525777418166399, 0.016968246549367905, -0.001787750399671495, 0.004679598845541477, -0.0315847285091877, 0.016858862712979317, -0.015983786433935165, 0.020003661513328552, -0.002674788935109973, 0.009844590909779072, 0.018048416823148727, -0.015641961246728897, 0.007629557978361845, 0.00959163997322321, -0.002459438517689705, 0.006210979539901018, -0.008709728717803955, -0.006378474645316601, -0.009953975677490234, 0.019511431455612183, -0.005845225881785154, 0.021671773865818977, 0.0031670185271650553, -0.005958028603345156, -0.010049686767160892, 0.005766605958342552, -0.008942170068621635, -0.00506586255505681, 0.0004012183635495603, 0.002266306895762682, -0.018472280353307724, -0.005052189342677593, -0.016120517626404762, 0.006884376984089613, 0.004450575448572636, 0.01283898763358593, -0.0004935113829560578, 0.010357329621911049, -0.00491887703537941, 0.0015356536023318768, -0.019579797983169556, -0.008224335499107838, 0.004901785869151354, -0.009010535664856434, -0.008279027417302132, -0.028795428574085236, 0.01330387033522129, 0.015436865389347076, 0.009065227583050728, 0.02342192269861698], "46852915-14f3-4c56-b364-ffec623d1110": [-0.0069636688567698, -0.023933827877044678, -0.0076865279115736485, 0.027567045763134956, 0.000743201351724565, -0.02690095640718937, -0.021496543660759926, 0.02225346304476261, -0.0015677716583013535, 0.03345588594675064, 0.0004364119959063828, -0.0139273377135396, 0.015955884009599686, -0.004882137291133404, -0.00361240329220891, 0.03430363908410072, -0.04674741253256798, 0.00685391528531909, 0.0279152300208807, -0.023025522008538246, 0.04450692608952522, -0.023207183927297592, -0.009264707565307617, -0.0032888196874409914, 0.009650737047195435, -0.005264382343739271, -0.036271631717681885, 0.005888841580599546, -0.01824178546667099, 0.012405927293002605, 0.017348619177937508, -0.008310987614095211, 0.010733133181929588, 0.011596022173762321, -0.0015677716583013535, -0.04514274001121521, 0.008030926808714867, 0.03457612916827202, -0.008477509953081608, -0.0027797906659543514, 0.018150953575968742, 0.027703290805220604, 0.009325261227786541, -0.012769249267876148, -0.018029846251010895, 0.023525090888142586, -0.02882353402674198, -0.014320936053991318, 0.01418469101190567, -0.0012479727156460285, -0.014775088988244534, 0.01980104111135006, 0.0032112353947013617, 0.06921281665563583, 0.028187720105051994, -0.02173875831067562, 0.018529415130615234, 0.091072678565979, 0.028505627065896988, -0.047474056482315063, 0.005900195334106684, -0.03397059440612793, -0.02128460444509983, -0.0018752706237137318, 0.02428201027214527, -0.003875433001667261, -0.019437719136476517, 0.015516870655119419, -0.028233135119080544, 0.01472210418432951, -0.03448529914021492, 0.011565745808184147, -0.0354541577398777, 0.022404847666621208, 0.06279412657022476, -0.027037201449275017, 0.09198098629713058, 0.026643602177500725, 0.015592562966048717, -0.038845162838697433, 0.011081316508352757, 0.03430363908410072, -0.007512436248362064, -0.024721024557948112, 0.036150526255369186, 0.007542713079601526, -0.034182529896497726, -0.041388414800167084, -0.02125432901084423, -0.016637112945318222, 0.016001300886273384, 0.03360727056860924, -0.003529141889885068, 0.021678203716874123, 0.0026757139712572098, 0.016349483281373978, 0.014517735689878464, 0.0073761907406151295, -0.01830233819782734, -0.022662200033664703, -0.036816615611314774, -0.0031298664398491383, 0.013109863735735416, -0.00021986175852362067, 0.004352292977273464, 0.008939231745898724, 0.03509083762764931, 0.003453449811786413, -0.006517085712403059, 0.02682526409626007, 0.0013189340243116021, -0.044870249927043915, -0.01819637045264244, -0.010021627880632877, -0.02897491864860058, -0.03336505591869354, -0.0029236054979264736, 0.019558826461434364, -0.006119702477008104, -0.01565311662852764, 0.036150526255369186, 0.004208478145301342, 0.01821150816977024, -0.00026373949367552996, -0.024433394894003868, -0.010074612684547901, -0.014146844856441021, 0.021996110677719116, 0.03954152762889862, 0.013685123063623905, -0.0278395377099514, 0.02534169889986515, 0.053044989705085754, 0.018847322091460228, 0.014858350157737732, -0.023964103311300278, 0.031639277935028076, 0.06654845178127289, -0.026219727471470833, 0.020588237792253494, -0.03406142443418503, 0.012981187552213669, 0.005733672995120287, -0.004726968705654144, -0.01983131840825081, -0.03599914163351059, -0.05937284603714943, 0.05464966222643852, -0.020573100075125694, 0.02986808493733406, -0.036756061017513275, -0.021087806671857834, -0.040237896144390106, -0.013677554205060005, 0.03191176801919937, -0.009998920373618603, 0.004049524664878845, 0.03851211816072464, 0.014858350157737732, 0.012799526564776897, 0.0025072991847991943, -0.03699827566742897, 0.012216697447001934, 0.038330454379320145, 0.034818343818187714, -0.00481779919937253, 0.04820070043206215, 0.041418690234422684, -0.010854240506887436, 0.02897491864860058, 0.019891871139407158, -0.02684040181338787, 0.003553741844370961, -0.008871108293533325, -0.012791956774890423, -0.008712155744433403, 0.019891871139407158, 0.015024872496724129, 0.024191180244088173, -0.01419225987046957, -0.004586938302963972, 0.006131056230515242, 0.016864189878106117, 0.015320071950554848, 0.03179066255688667, 0.0228892769664526, 0.007141545414924622, 0.015986161306500435, -0.014971887692809105, 0.005661765579134226, -0.013109863735735416, 0.011997190304100513, 0.025160038843750954, 0.009522059932351112, -0.020906144753098488, -0.008954369463026524, 0.01269355695694685, -0.007527574896812439, -0.012405927293002605, 0.020179500803351402, -0.016955019906163216, -0.04520329460501671, -0.03206315264105797, -0.0021137006115168333, -0.006520870141685009, 0.015441179275512695, -0.03182093799114227, 0.0013444800861179829, 0.02992863766849041, -0.01678849756717682, 0.0456877239048481, -0.04296280816197395, -0.003646464552730322, 0.01348832342773676, -0.00021087333152536303, 0.012708695605397224, 0.010770979337394238, 0.027082616463303566, -0.00493512162938714, 0.0008477509836666286, 0.0024448533076792955, -0.004655061289668083, 0.008205018937587738, -0.042841702699661255, -0.04005623608827591, -0.0034629113506525755, -0.009741567075252533, -0.013019032776355743, 2.8680192372121383e-06, -0.025674743577837944, 0.010354672558605671, 0.007648681756108999, -0.0022575154434889555, -0.027673015370965004, 0.0038697561249136925, 0.050017308443784714, 0.04250865802168846, -0.0018317477079108357, 0.012284819968044758, -0.006520870141685009, -0.0017655171686783433, 0.023994380608201027, -0.024054935202002525, -0.04677768796682358, -0.00812932662665844, -0.0013520492939278483, -0.0008874892955645919, 0.04662630334496498, 0.02690095640718937, 0.03206315264105797, 0.02428201027214527, -0.020088670775294304, -0.0055482275784015656, 0.010839101858437061, -0.03288062661886215, 0.01671280525624752, 0.019543688744306564, 0.01825692318379879, 9.384631994180381e-05, -0.04008651152253151, -0.006342994049191475, 0.034273359924554825, -0.022041525691747665, 0.02835424244403839, 0.038239624351263046, -0.005264382343739271, 0.0404498316347599, 0.02629541978240013, 0.0088938158005476, 0.04160035401582718, 0.03381920978426933, -0.01622837595641613, -0.004749676212668419, 0.024251732975244522, -0.004076017066836357, -0.01978590339422226, -0.003063635900616646, -0.006138625554740429, 0.00594182638451457, -0.03430363908410072, 0.010331965051591396, -0.016379760578274727, 0.050410907715559006, -0.021511681377887726, 0.007467021234333515, 0.052439454942941666, -0.027022063732147217, 0.0027911444194614887, -0.04468858987092972, -0.020164363086223602, -0.012595158070325851, 0.013503462076187134, -0.03391003981232643, 0.02129974402487278, -0.012337804771959782, -0.01674308255314827, 0.005994810722768307, -0.03394031524658203, 0.008030926808714867, -0.02681012451648712, 0.011043470352888107, 0.0012195882154628634, -0.03663495182991028, -0.042781148105859756, 0.02185986563563347, -0.0008444394916296005, 0.047443777322769165, 0.00493512162938714, -0.025750435888767242, 0.02229887805879116, 0.022117218002676964, -0.017878463491797447, 0.014881057664752007, -0.02947448566555977, 0.01824178546667099, -0.004916199017316103, -0.03285035118460655, -0.024721024557948112, -0.026749571785330772, -0.00909818522632122, -0.019997840747237206, -0.02632569521665573, -0.04474914073944092, 0.0356358177959919, 0.038814883679151535, -0.04674741253256798, 0.01925605908036232, -0.015032441355288029, 0.022631924599409103, -0.014093860052525997, -0.026007790118455887, -0.017378894612193108, 0.007569205481559038, -0.0009158738539554179, -0.05165225639939308, 0.0012517573777586222, -0.03176038712263107, -0.05785900354385376, -0.006812284700572491, -0.016470590606331825, -0.007633543573319912, -0.016394898295402527, 0.013193124905228615, -0.0018024169839918613, -0.06297578662633896, -0.02635597251355648, 0.021693343296647072, 0.024478809908032417, 0.007512436248362064, 0.007803850807249546, 0.0009475699043832719, -0.010044335387647152, 0.03993512690067291, -0.014517735689878464, 0.015448748134076595, 0.01241349708288908, -0.013412632048130035, 0.02842993475496769, 0.04090398550033569, 0.0017957939999178052, -0.0063619171269237995, -0.040813155472278595, -0.002832775004208088, 0.016046715900301933, -0.014926472678780556, 0.01822664588689804, 0.017394034191966057, 0.0018714859616011381, -0.046323537826538086, -0.007361052092164755, 0.005135705694556236, 0.021980972960591316, -0.039359867572784424, -0.0034156038891524076, 0.02326773665845394, -0.03890571370720863, 0.06400520354509354, 0.010286550037562847, 0.018362892791628838, 0.030095160007476807, -0.015017303638160229, -0.004072232637554407, -0.011278116144239902, -0.00241079181432724, 0.048897065222263336, -0.005733672995120287, 0.03908737748861313, -0.04253893345594406, -0.008908954448997974, -0.0006348671158775687, -0.032789796590805054, -0.0057488116435706615, -0.008977077901363373, -0.005105428863316774, -0.0012129651149734855, -0.007432959508150816, 0.01619809865951538, -0.030594727024435997, 0.021072667092084885, 0.00530222849920392, -0.0007588128210045397, -0.020512545481324196, -0.02582612819969654, -0.011368946172297001, -0.020542822778224945, -0.024963239207863808, 0.0008340317872352898, 0.002745729172602296, 0.026537634432315826, -0.0003363565483596176, 0.026552772149443626, -0.037815749645233154, -0.011860944330692291, 0.00620674854144454, 0.02693123184144497, 0.0024202533531934023, -0.037331320345401764, 0.013132571242749691, -0.05313581973314285, 0.005646626930683851, 0.047867655754089355, 0.017666524276137352, -0.013775954023003578, 0.009537198580801487, 0.019089534878730774, 0.015834776684641838, 0.012171282432973385, 0.03306229040026665, 0.008833262138068676, 0.022525954991579056, -0.0017182095907628536, 0.023509951308369637, 0.0017891708994284272, -0.0010965886758640409, -0.026144035160541534, -0.0032585428562015295, 0.0031979891937226057, -0.01724264957010746, 0.0031544663943350315, -0.004791306797415018, -0.007739512249827385, 0.02231401763856411, 0.01338992454111576, 0.009234430268406868, -0.04450692608952522, -0.019967563450336456, -0.021587373688817024, 0.02182958833873272, -0.03948097303509712, -0.016410037875175476, -0.0009305391577072442, 0.06046281382441521, -0.010998055338859558, -0.007766004651784897, 0.010203288868069649, 0.009537198580801487, 0.06788063049316406, 0.0075843436643481255, 0.046474918723106384, -0.0507439523935318, -0.024690747261047363, 0.0009404737502336502, 0.01922578178346157, -0.007020438089966774, -0.009423661045730114, -0.024221457540988922, -0.008757570758461952, 0.023933827877044678, 0.007675174158066511, 0.03036765195429325, 0.009650737047195435, 0.01828720048069954, -0.006691177375614643, 0.031215403228998184, -0.0035896955523639917, -0.008765139617025852, -0.030170852318406105, -0.022450262680649757, 0.030246544629335403, 0.006388409063220024, 0.009650737047195435, 0.020406577736139297, -0.016621975228190422, -0.012436204589903355, 0.0018326938152313232, 0.025523360818624496, -0.013132571242749691, -0.006138625554740429, -0.025705020874738693, 0.025705020874738693, -0.013579154387116432, 0.02643166482448578, 0.02743080072104931, 0.0024126842617988586, 0.011081316508352757, 0.0005071367486380041, 0.04923010990023613, 0.0005672172992490232, -0.005321151111274958, -0.03645329177379608, -0.007720589637756348, -0.03751298040151596, 0.02081531472504139, -0.015456316992640495, -0.011860944330692291, 0.02428201027214527, -0.0058585647493600845, 0.03227509185671806, -0.010634733363986015, 0.0009310122695751488, -0.02989836037158966, 0.01524437963962555, -0.03896626830101013, -0.005631488747894764, 0.0033266658429056406, 0.005506596993654966, -0.01925605908036232, 0.007841696962714195, 0.03179066255688667, -0.00685013085603714, 0.005472535267472267, -0.029595592990517616, -0.04726211726665497, 0.0020815315656363964, 0.006483024451881647, 0.008197449147701263, -0.009067907929420471, -0.013881922699511051, 0.046868517994880676, 0.005563365761190653, -0.019604241475462914, 0.006040225736796856, -0.01828720048069954, 0.009537198580801487, 0.01039251871407032, -0.004802660550922155, 0.005423335824161768, -0.007050714921206236, 0.005828287918120623, -0.03460640832781792, -0.030579589307308197, 0.014305798336863518, -0.02889922633767128, -0.019044119864702225, 0.0014107106253504753, 0.0043560778722167015, 0.021072667092084885, 0.002056931611150503, -0.008825693279504776, -0.003814879572018981, -0.029292823746800423, 0.01925605908036232, 0.00015126583457458764, 0.009355537593364716, 0.0016245406586676836, -0.019134951755404472, -0.017636248841881752, 0.011762545444071293, -0.006558716297149658, -0.018423445522785187, 0.0028062828350812197, 0.00834883376955986, 0.005646626930683851, 0.002363484352827072, -0.029701560735702515, -0.010089750401675701, -0.04163062945008278, 0.0011429500300437212, 0.0011457884684205055, 0.011717129498720169, 0.014078721404075623, -0.013632139191031456, 0.013950045220553875, 0.0034742653369903564, -0.0036370032466948032, 0.010831532999873161, -0.00583585724234581, -0.00669496227055788, -0.05489187687635422, 0.0077584353275597095, 0.00011915584764210507, -0.030791526660323143, 0.015849916264414787, -0.011573314666748047, 0.018574830144643784, -0.000686432293150574, 0.0073837595991790295, -0.019634518772363663, -0.011225131340324879, 0.011202423833310604, 0.013382354751229286, 0.013617000542581081, -0.013458047062158585, -0.009181446395814419, -0.02697664685547352, 0.026764709502458572, -0.002376730553805828, 0.006834992207586765, 0.020542822778224945, 0.014479889534413815, 0.03493945300579071, 0.018029846251010895, 0.018892737105488777, -0.05219724029302597, -0.0228287223726511, 0.010218427516520023, -0.021118082106113434, 0.014525304548442364, 0.022465402260422707, -0.025008654221892357, 0.03911765292286873, -0.0355147123336792, 0.016379760578274727, -0.014093860052525997, 0.030715834349393845, 0.0139197688549757, 0.010135166347026825, 0.007459451910108328, 0.01493404246866703, -0.050532013177871704, 0.033637549728155136, 0.004098724573850632, 0.009234430268406868, -0.0018222861690446734, -0.01716695725917816, 0.05643599480390549, -0.035272497683763504, -0.03708910569548607, -0.0028062828350812197, 0.0028668364975601435, -0.05528547614812851, -0.00390949472784996, -0.037301044911146164, -0.015047580003738403, 0.01239078864455223, -0.025962375104427338, 0.027733568102121353, -0.023449398577213287, 0.008568339981138706, 0.0009002623846754432, -0.020512545481324196, -0.024448532611131668, 0.020951559767127037, 0.0018989243544638157, -0.0038527254946529865, -0.003048497484996915, 0.008530494756996632, 0.012534604407846928, 0.00010963520617224276, 0.035787202417850494, 0.02081531472504139, -0.0015393871581181884, -0.0126557108014822, 0.028202859684824944, 0.0027400522958487272, -0.04396194592118263, -0.006906899623572826, 0.01294334139674902, 0.01114187017083168, -0.02020977810025215, 0.009332830086350441, -0.04323530197143555, 0.038209348917007446, 0.00964316725730896, 0.03263841196894646, -0.002062608487904072, 0.002450530184432864, 0.0006121594924479723, 0.01680363528430462, 0.03433391451835632, 0.005510381422936916, -0.03745242953300476, 0.0001199837279273197, 0.0017115866066887975, 0.014479889534413815, -0.01269355695694685, -0.00034581805812194943, -0.0013482647482305765, 0.009030061773955822, -0.01317798625677824, -0.0279455054551363, -0.053529419004917145, -0.026219727471470833, 0.0558304600417614, -0.012110728770494461, -0.010687718167901039, -0.005124351941049099, -0.009052769280970097, -0.021435989066958427, 0.012299958616495132, -0.013200693763792515, 0.02942907065153122, -0.026734432205557823, 0.024085210636258125, -0.005003244616091251, 0.0032169122714549303, -0.018877597525715828, -0.028308827430009842, -0.010551472194492817, -0.01977076381444931, -0.024100350216031075, 0.0025451453402638435, -0.01674308255314827, 0.005048660095781088, 0.014086291193962097, 0.010271411389112473, -0.010596887208521366, -0.029035471379756927, 0.01321583241224289, 0.01834775321185589, 0.00783412717282772, 0.013268817216157913, -0.013609430752694607, -0.0023029306903481483, -0.020482270047068596, -0.004685338120907545, -0.022071802988648415, 0.016470590606331825, -0.01771194115281105, 0.02429714985191822, -0.01038494985550642, 0.04953287914395332, -0.012625434435904026, -0.05483132228255272, 0.0015507409116253257, 0.030080022290349007, 0.002136408118531108, 0.006615485530346632, 0.014093860052525997, 0.012746541760861874, 0.008681878447532654, -0.005798011086881161, 0.011823099106550217, 0.010165442712605, 0.012178851291537285, -0.017394034191966057, -0.019074397161602974, 0.0028687287122011185, 0.05937284603714943, 0.021027252078056335, 0.01665225252509117, 0.004605861380696297, -0.00963559839874506, -0.03654412180185318, -0.014858350157737732, -0.009953505359590054, 0.009279845282435417, -8.330561286129523e-06, -0.0030106513295322657, -0.01618296094238758, 0.021042391657829285, -0.04602076858282089, 0.007024222519248724, -0.017454586923122406, 0.026628464460372925, -0.006800930947065353, 0.021133221685886383, 0.011013193987309933, 0.0018989243544638157, 0.035211943089962006, -0.0037372950464487076, 0.0005478212260641158, -0.005366566590964794, -0.012935771606862545, -0.02679498679935932, 0.020966699346899986, 0.030307097360491753, -0.012209128588438034, 0.014336074702441692, 0.029762115329504013, 0.04108564555644989, 0.022692477330565453, 0.021375436335802078, 0.026507357135415077, -0.010006489232182503, -0.009915659204125404, -0.007024222519248724, -0.007497298065572977, 0.0227984469383955, -0.021133221685886383, -0.03787630423903465, -0.04474914073944092, 0.031669553369283676, 0.0036237570457160473, 0.01114187017083168, -0.018423445522785187, 0.028626734390854836, -0.002685175510123372, 0.0010767194908112288, 0.006899330765008926, -0.010354672558605671, -0.04196367412805557, -0.0022802231833338737, -0.004904845263808966, -0.009877813048660755, 0.010074612684547901, 0.007917388342320919, -0.0011410576989874244, -0.010665010660886765, -0.029777253046631813, 0.007940096780657768, 0.006286224815994501, 0.03996540233492851, 0.01215614378452301, 0.008469941094517708, -0.01628893055021763, -0.030291959643363953, -0.018408307805657387, -0.026007790118455887, 0.009877813048660755, 0.03336505591869354, 0.0354238823056221, 0.009423661045730114, -0.003654033876955509, -0.04820070043206215, -0.015357917174696922, 0.005063798278570175, 0.03590831160545349, 0.030776388943195343, -0.007266437169164419, -0.021133221685886383, -0.01718209683895111, 0.009393383748829365, -0.002439176430925727, -0.0012877110857516527, 0.0038792176637798548, -0.002395653398707509, -0.026613326743245125, -0.00990808941423893, 0.012549742124974728, -0.016939882189035416, -0.04929066449403763, -0.016061853617429733, 0.02325259894132614, 0.010831532999873161, 0.036150526255369186, -0.02738538570702076, 0.017030712217092514, -0.036786336451768875, 0.012246973812580109, 0.0017447018763050437, -0.007743297144770622, 0.00031696047517471015, -0.00989295169711113, 0.017363756895065308, 0.01731834188103676, 0.003920848481357098, 0.006547362543642521, 0.03966263681650162, 0.026477079838514328, 0.023948965594172478, -0.011944206431508064, 0.02475130185484886, 0.03911765292286873, -0.02532656118273735, -0.007088560611009598, 0.014101429842412472, 0.0016302175354212523, -0.015123272314667702, 0.00025214915513060987, 0.02685553953051567, 0.012307527475059032, -0.011709560640156269, -0.003671064507216215, -0.02037630043923855, 0.010309257544577122, -0.005033521447330713, 0.006679823622107506, 0.004617215134203434, -0.0017957939999178052, -0.03157872334122658, 0.001618863781914115, 0.029595592990517616, -0.0035158959217369556, 0.02231401763856411, -0.007894680835306644, 0.046959348022937775, 0.0073799751698970795, -0.012738972902297974, -0.013722969219088554, -0.04244810342788696, -0.00033493732917122543, 0.016849050298333168, 0.012352943420410156, -0.04462803527712822, 0.026280280202627182, 0.015282225795090199, -0.020421715453267097, -0.0126557108014822, -0.002060716040432453, 0.00632407097145915, 0.011278116144239902, -0.00866673979908228, -0.03098832629621029, 0.0004919983330182731, -0.0031147280242294073, 0.01936202682554722, 0.012867649085819721, 0.0008283549104817212, 0.00862889364361763, 0.0030674205627292395, -0.00835640262812376, -0.0017749785911291838, -0.0015110026579350233, 0.02222318761050701, -0.01446475088596344, 0.01343533955514431, -0.017000434920191765, 0.03599914163351059, -0.010839101858437061, 0.0010190042667090893, 0.012209128588438034, 0.0028800826985388994, -0.006532224360853434, 0.044809695333242416, -0.012254543602466583, -0.000674605427775532, -0.018574830144643784, 0.011482484638690948, -0.020951559767127037, -0.006838777102530003, 0.0019396088318899274, 0.023979242891073227, -0.0032755734864622355, -0.020996974781155586, -0.027521630749106407, -0.021693343296647072, -0.0007625974249094725, -0.014699396677315235, 0.012670849449932575, -0.01043793372809887, -0.0003375392407178879, -0.005794226657599211, -0.01396518386900425, 0.01524437963962555, -0.03942042216658592, -0.03197232261300087, 0.021405711770057678, -0.014146844856441021, 0.008530494756996632, 0.0126557108014822, -0.023585643619298935, 0.04017734155058861, -0.011618729680776596, -0.012307527475059032, -0.0066684698686003685, -0.0035953724291175604, 0.02388841286301613, -0.0176816638559103, -0.016939882189035416, 0.004193339962512255, 0.028747841715812683, -0.01468425802886486, 0.012981187552213669, 0.01141436118632555, 0.023222321644425392, -0.014358782209455967, -0.0049729677848517895, 0.007001515012234449, 0.024433394894003868, -0.008591048419475555, 0.006418685894459486, -0.017136679962277412, 0.015259518288075924, 0.009650737047195435, 0.021148359403014183, -0.01872621476650238, 0.03206315264105797, -0.014638843014836311, -0.01928633451461792, -0.026174312457442284, 0.002323745982721448, -0.01498702634125948, 0.0037789258640259504, -0.0177876316010952, -0.005669334903359413, -0.04259948804974556, 0.015168687328696251, -0.011686853133141994, 0.00530979735776782, 0.02880839630961418, -0.014040876179933548, 0.004893491044640541, -0.010445503517985344, 0.02732483111321926, -0.007970373146235943, -0.02385813556611538, -0.0034137116745114326, -0.020043255761265755, 0.01043793372809887, 0.02478157728910446, 0.0017238864675164223, 0.0065662856213748455, 0.0011420038063079119, 0.009272276423871517, 0.013995460234582424, -0.027748705819249153, -0.02226860262453556, -0.008235295303165913, -0.030579589307308197, -0.006278655957430601, -0.02326773665845394, -0.005710965488106012, 0.04502163454890251, -0.005434689577668905, 0.0034856190904974937, 0.01622837595641613, 0.02429714985191822, 0.00139273377135396, 0.04353806748986244, -0.026144035160541534, -0.024191180244088173, 0.017136679962277412, -0.010861809365451336, -0.022586507722735405, 0.02187500335276127, 0.004923767875880003, -0.03905709832906723, -0.01419225987046957, 0.016107268631458282, 0.011262977495789528, -0.02084559202194214, -0.002711667912080884, 0.009824828244745731, -0.0049729677848517895, 0.023222321644425392, -0.01678849756717682, -0.015198964625597, 0.0054460433311760426, -0.0356358177959919, -0.025568775832653046, -0.03176038712263107, 0.022616785019636154, -0.0019102782243862748, 0.025447668507695198, -0.00028313559596426785, 0.0025848837103694677, -0.05386246368288994, -0.0139349065721035, 0.006990161258727312, -0.002497837645933032, -0.0048669991083443165, -0.015297363512217999, 0.016046715900301933, 0.007361052092164755, 0.018620245158672333, -0.009529629722237587, -0.002524330047890544, -0.00941609125584364, -0.013003895059227943, 0.011512761004269123, 0.0031317586544901133, -0.000587559537962079, 0.015297363512217999, -0.028641872107982635, -0.0009319583768956363, -0.030201129615306854, -0.0057866573333740234, -0.012292389757931232, 0.015547147952020168, 0.003646464552730322, -0.036816615611314774, -0.0006131056579761207, 0.013140140101313591, -0.015320071950554848, -0.010400088503956795, -0.006982591934502125, -0.00910575408488512, -0.00022009829990565777, 0.0013265032321214676, -0.007546497508883476, -0.005972103215754032, -0.011058609001338482, 0.012897925451397896, -0.013601861894130707, 0.012784387916326523, 0.025508221238851547, 0.0011760652996599674, 0.012595158070325851, -0.016849050298333168, 0.0004967291024513543, 0.028142305091023445, 0.016939882189035416, 0.017969293519854546, -0.04175173491239548, -0.00481779919937253, -0.01677335985004902, 0.005506596993654966, 0.013783522881567478, -0.004083586391061544, -0.018983567133545876, 0.013072017580270767, 0.013382354751229286, 0.023646198213100433, 0.008205018937587738, -0.0037959564942866564, -0.00809904932975769, 0.044416096061468124, 0.018559690564870834, -0.0024902685545384884, -0.0068766227923333645, -0.019104674458503723, -0.011300823651254177, 0.00493512162938714, 0.03587803244590759, 0.008818124420940876, 0.0057790884748101234, -0.00839424878358841, -0.005427120253443718, -0.014275521039962769, 0.022601647302508354, 0.03254758194088936, -0.021375436335802078, 0.0038678639102727175, 0.01012002769857645, 0.013844076544046402, 0.004700476303696632, -0.007796281483024359, 0.0011410576989874244, 0.014638843014836311, 0.012451342307031155, -0.020557962357997894, -0.015622839331626892, -0.02329801395535469, -0.00862132478505373, -0.02933824062347412, 0.008341263979673386, 0.019649656489491463, 0.0077887121587991714, 0.0252962838858366, 0.028308827430009842, -0.018044985830783844, 0.04362889751791954, -0.022132355719804764, -0.003392896382138133, -0.00685391528531909, -0.024539364501833916, 0.006448962725698948, 0.01630406826734543, 0.012837371788918972, -0.014214967377483845, 0.003627541707828641, -0.01936202682554722, 0.010241135023534298, 0.0014126029564067721, 0.0041554938070476055, -0.01498702634125948, -0.029307963326573372, -0.009559906087815762, -0.0202400553971529, 0.004397708456963301, -0.015971023589372635, 0.007126406766474247, 0.015547147952020168, 0.025599053129553795, 0.011709560640156269, -0.014971887692809105, -0.0058509958907961845, -0.002543252892792225, -0.0023105000145733356, -0.020073533058166504, -0.01092236302793026, 0.019437719136476517, -0.010218427516520023, 0.0007337398128584027, 0.013798661530017853, 0.02182958833873272, -0.007508651819080114, -0.006297579035162926, -0.009575044736266136, 0.0088938158005476, -0.002755190711468458, -0.0023880843073129654, 0.007565420586615801, 0.0005317366449162364, 0.03436419367790222, -0.013321801088750362, -0.02579585090279579, -0.007985511794686317, -0.004250108730047941, 0.00024103188479784876, 0.0049729677848517895, 0.018559690564870834, -0.002755190711468458, -0.023691613227128983, -5.5763754062354565e-05, 0.0058812727220356464, -0.007940096780657768, 0.0024448533076792955, 0.04465831071138382, 0.024509087204933167, -0.01616782322525978, -0.01869593746960163, -0.0038092024624347687, 0.005128136370331049, -0.004144140053540468, -0.010506057180464268, -0.013246109709143639, 0.0014788334956392646, 0.01665225252509117, 0.007504866924136877, 0.00960532110184431, 0.0016150792362168431, 0.0027022063732147217, 0.0029292823746800423, -0.027052339166402817, -0.016394898295402527, -0.014003030024468899, -0.008742432110011578, -0.010316826403141022, -0.03645329177379608, 0.031064018607139587, -0.009340398944914341, -0.011580884456634521, -0.026174312457442284, -0.0012233727611601353, -0.025023791939020157, -0.019392304122447968, 0.00470804562792182, 0.01628893055021763, 0.008371541276574135, -0.00963559839874506, 0.042357273399829865, 0.002251838566735387, 0.01338992454111576, -0.03512111306190491, -0.008250433951616287, 0.009658305905759335, -0.0011221347376704216, -0.01827206090092659, 0.01721237227320671, -0.01674308255314827, 0.00355941872112453, 0.017590833827853203, 0.019997840747237206, -0.030761251226067543, -0.02136029675602913, 0.011944206431508064, 0.0026208374183624983, 0.017999570816755295, 0.02382785826921463, -0.011580884456634521, -0.014646411873400211, -0.02075476013123989, 0.03333478048443794, 0.020542822778224945, -0.017605971544981003, 0.003269896609708667, -0.0009277007193304598, 0.002047470072284341, 0.008235295303165913, 0.004859429784119129, -0.007962804287672043, 0.007425390183925629, -0.013783522881567478, -0.016637112945318222, -0.021723618730902672, 0.009930796921253204, 0.0014381490182131529, 0.00291982083581388, 0.004715614952147007, 0.03669550642371178, 0.021405711770057678, -0.0028687287122011185, -0.07042388617992401, -0.0033872192725539207, 0.01781790889799595, 0.006380840204656124, -0.010846671648323536, -0.009461506269872189, -0.0013520492939278483, -0.014646411873400211, 0.014040876179933548, 0.006218102294951677, -0.003035251284018159, 0.008704585954546928, -0.002511083846911788, -0.027052339166402817, 0.011361377313733101, 0.006248379126191139, 0.010029196739196777, 0.031730107963085175, 0.01575908623635769, 0.004015463404357433, -0.005358997266739607, -0.002957666991278529, 0.014071152545511723, 0.00964316725730896, 0.010952640324831009, -0.02332829125225544, -0.015456316992640495, -0.017469726502895355, -0.00968101341277361, 0.01578936167061329, -0.024690747261047363, 0.010089750401675701, 0.0038356948643922806, -0.030095160007476807, 0.0038073102477937937, 0.007637328002601862, -0.0023256384301930666, 0.01927119679749012, -0.015910468995571136, -0.00834883376955986, 0.03285035118460655, 0.021526819095015526, -0.010233565233647823, -0.010407657362520695, 0.005260597914457321, -0.007319421507418156, -0.002830882789567113, -0.0011590345529839396, -0.013685123063623905, 0.0029122517444193363, -0.005041090771555901, -0.0053817047737538815, -0.01728806458413601, -0.05882786214351654, 0.004151708912104368, -0.006452747620642185, -0.0034364191815257072, 0.010642302222549915, -0.014093860052525997, -0.007126406766474247, -0.021087806671857834, 0.030034607276320457, -0.016076991334557533, 0.014729673974215984, 0.018650522455573082, 0.01450259704142809, 0.012844941578805447, 0.008992215618491173, -0.0055482275784015656, -0.01525194849818945, -0.012307527475059032, -0.008469941094517708, 0.002730590756982565, 0.0027646522503346205, 0.0029803744982928038, -0.013745676726102829, 0.009983781725168228, -0.019543688744306564, -0.0002130021748598665, 0.03179066255688667, -0.017999570816755295, 0.012345373630523682, 0.0034307423047721386, 0.0013700261479243636, 0.005033521447330713, -0.0354541577398777, -0.016985297203063965, -0.007773573976010084, -0.014881057664752007, -0.017439449205994606, -0.003220696933567524, 0.01524437963962555, -0.018393168225884438, 0.008258002810180187, -0.007720589637756348, 0.027869813144207, 0.019952425733208656, -0.02629541978240013, -0.0033190965186804533, -0.010203288868069649, 0.02189014106988907, 0.010960209183394909, -0.0013369108783081174, -0.02226860262453556, 0.015501732006669044, -0.010536333546042442, -0.0029236054979264736, -0.013382354751229286, 0.020966699346899986, 0.013533739373087883, -0.004893491044640541, -0.022949829697608948, 0.0018468861235305667, 0.004950260277837515, 0.04250865802168846, -0.015532009303569794, -0.0025621759705245495, -0.01822664588689804, 0.03860294818878174, -0.0056504118256270885, 0.021133221685886383, -0.0008349779527634382, -0.019543688744306564, 0.010786117985844612, -0.026250004768371582, 0.005517950747162104, -0.025689883157610893, 0.008712155744433403, 0.0007625974249094725, 0.010029196739196777, 0.013586723245680332, -0.007766004651784897, -0.028187720105051994, -0.00021264735551085323, 0.003464803798124194, 0.03248702734708786, 0.020603377372026443, -0.0017172634834423661, 0.0278546754270792, -0.014835642650723457, -0.022964969277381897, 0.004121432080864906, -0.010816394351422787, -0.012814664281904697, -0.02036116272211075, -0.0177573561668396, 0.0041592782363295555, -0.0038527254946529865, 0.01547902449965477, -0.011035901494324207, -0.009204153902828693, 0.009385814890265465, -0.007538928650319576, -0.0014892411418259144, 0.013548877090215683, -0.03291090577840805, -0.038239624351263046, -0.018408307805657387, -0.00915116909891367, -0.015055149793624878, 0.011157008819282055, -0.006290009710937738, -0.0002161954325856641, -0.008212587796151638, -0.015168687328696251, -0.010687718167901039, 0.016531145200133324, -0.007043145596981049, 0.0038281255401670933, 0.028036337345838547, 0.0004782791656907648, -0.04517301544547081, -0.007743297144770622, -0.032668691128492355, -0.010029196739196777, -0.007421605754643679, 0.050925612449645996, -0.01365484669804573, 0.01877162978053093, 0.015077857300639153, -0.005862349644303322, -0.0028668364975601435, -0.03357699513435364, -0.01317041739821434, 0.000985888997092843, 0.0026889601722359657, -0.010059474036097527, -0.03403114527463913, 0.01423010602593422, -0.021178636699914932, 0.009287415072321892, 0.0176968015730381, -0.03154844790697098, -0.0036483570002019405, -0.003059851238504052, 0.0006173633155412972, -0.008409387432038784, -0.03466695919632912, 0.017076127231121063, -0.021723618730902672, -0.02331315167248249, 0.008189880289137363, -0.0088862469419837, -0.022102080285549164, 0.005423335824161768, -0.027279416099190712, 0.0063202865421772, 0.028490489348769188, -0.006221886724233627, 0.011505192145705223, 0.008310987614095211, -0.01619809865951538, -0.033788930624723434, -0.015607701614499092, -0.00024268764536827803, 0.005525520071387291, -0.02490268461406231, 0.007103699259459972, -0.036241356283426285, -0.004314446821808815, -0.026234865188598633, 0.017530279234051704, 0.0035859111230820417, 0.013109863735735416, -0.013427769765257835, -0.005468750838190317, 0.02235943265259266, -0.0017891708994284272, 0.012330234982073307, 0.007803850807249546, 0.004234970547258854, -0.01922578178346157, 0.022707615047693253, 0.04329585283994675, -0.004480969626456499, 0.0013075802708044648, 0.010233565233647823, -0.011535468511283398, 0.026234865188598633, 0.017666524276137352, 0.005393058992922306, -0.0031109433621168137, 0.00030158553272485733, 0.013745676726102829, -0.030276821926236153, -0.0013738108100369573, 0.0018629706464707851, 0.01290549524128437, -0.0227984469383955, 0.02133002132177353, 0.01241349708288908, 0.013783522881567478, -0.01395761501044035, -0.006638193037360907, 0.007304283324629068, 0.013722969219088554, -0.0006372324423864484, 0.01730320416390896, -0.030685558915138245, -0.0014466643333435059, -0.011974482797086239, -0.017863323912024498, 0.038269903510808945, -0.013019032776355743, 0.01630406826734543, 0.0051773362793028355, 0.012443773448467255, 0.003004974452778697, -0.001036035013385117, -0.006827423349022865, 0.0036937722470611334, -0.01936202682554722, 0.004617215134203434, 0.0034061423502862453, -0.006649546790868044, 0.005184905603528023, 0.012277251109480858, 0.0005099751870147884, -0.03793685883283615, -0.01117214746773243, 0.008931661956012249, -0.0036634954158216715, -0.017530279234051704, -0.006346778478473425, 0.0126405730843544, 0.0016510329442098737, 0.0010899655753746629, -0.0033020658884197474, 7.675647066207603e-05, 0.004734538029879332, -0.024554502218961716, -0.007266437169164419, 0.014093860052525997, -0.002813852159306407, -0.008644032292068005, 0.012973617762327194, -0.00909818522632122, -0.003962479066103697, 0.01246648095548153, 0.00711505301296711, 0.006831207778304815, -0.018378030508756638, -0.019543688744306564, -0.0006079017766751349, -0.005135705694556236, 0.0004621945845428854, 0.0075994823127985, 0.010067042894661427, -0.0029822669457644224, 0.00557093508541584, 0.010097320191562176, -0.0074518825858831406, -0.019937286153435707, -0.011997190304100513, 0.0017248326912522316, -0.017863323912024498, -0.016470590606331825, 0.007985511794686317, 0.0759948194026947, -0.0035896955523639917, 0.005120567511767149, 0.01677335985004902, 0.01450259704142809, -0.004276601132005453, -0.016849050298333168, 0.015153548680245876, 0.007663820404559374, 0.0005071367486380041, -0.007258867844939232, -0.010907224379479885, 0.005423335824161768, -0.0006121594924479723, -0.01984645612537861, 0.016046715900301933, -0.0030220053158700466, 0.022919554263353348, -0.00936310738325119, 0.007796281483024359, 0.018060123547911644, 0.015176256187260151, -0.01445718202739954, 0.004810229875147343, 0.015009733848273754, -0.014472320675849915, 0.00390949472784996, 0.02476643957197666, 0.019876733422279358, 0.02037630043923855, 0.0007957126945257187, -0.004030602052807808, -0.006115918047726154, -0.03312284126877785, -0.008560771122574806, 0.024251732975244522, -0.019937286153435707, 0.006195394322276115, 0.018923012539744377, 0.030049744993448257, -0.010301688686013222, 0.00025333184748888016, 0.01466912031173706, 0.016061853617429733, 0.018105538561940193, 0.0009877813281491399, 0.013685123063623905, -0.0016406252980232239, 7.255793025251478e-05, 0.010506057180464268, -0.018150953575968742, -0.019573964178562164, -0.006108348723500967, -0.003366403980180621, -0.003527249675244093, -0.014623704366385937, 0.016364620998501778, -0.007947665639221668, 0.0101578738540411, -0.015895331278443336, 0.0010767194908112288, -0.023101214319467545, -0.011119162663817406, -0.03860294818878174, 0.009983781725168228, 6.262334500206634e-05, -0.003167712362483144, 0.0030295744072645903, 0.014033306390047073, 0.01730320416390896, 0.013261247426271439, 0.014911334030330181, 0.005283305421471596, -0.013912199065089226, -0.011225131340324879, 0.02331315167248249, -0.004874568432569504, -0.00455287704244256, 0.012617865577340126, 0.009522059932351112, -0.022616785019636154, -0.0041592782363295555, 0.0002500203263480216, -0.01678849756717682, -0.0027097754646092653, -0.016410037875175476, 0.022677339613437653, 0.00037491219700314105, 0.012867649085819721, -0.01092236302793026, -0.013420200906693935, 0.0018487783381715417, 0.003322881180793047, 0.019150089472532272, 0.007955234497785568, 4.157149305683561e-05, 0.0027816828805953264, 0.011474914848804474, 0.012474050745368004, -0.007728158496320248, -0.0017872785683721304, 0.010808825492858887, -0.0033910039346665144, 0.01494161132723093, 0.011535468511283398, 0.008106619119644165, 0.011951775290071964, 0.0062597328796982765, -0.008810554631054401, 0.009658305905759335, -0.002755190711468458, 0.012307527475059032, -0.02278330735862255, 0.01977076381444931, -0.027536768466234207, 0.0023180691059678793, 0.017060989513993263, 0.004605861380696297, -0.02133002132177353, -0.00865160208195448, -0.006149979308247566, 0.0009064123150892556, 0.011997190304100513, -0.0014551797648891807, 0.005627704318612814, 0.0016169714508578181, -0.014835642650723457, -0.009998920373618603, 0.005922903306782246, -0.011421930976212025, 0.01834775321185589, -0.010748271830379963, 0.01780277118086815, -0.018423445522785187, 0.00836397148668766, 0.0002282588538946584, 0.014896196313202381, -0.021042391657829285, 0.020497407764196396, -0.010770979337394238, 0.0008023357368074358, 0.021541958674788475, 0.0029122517444193363, -0.009469076059758663, 0.016561420634388924, 0.015388194471597672, -0.01575908623635769, -0.01921064220368862, 0.02378244325518608, 0.010044335387647152, 0.009060339070856571, -0.021663065999746323, -0.0018951398087665439, -0.006683608051389456, 0.006149979308247566, -0.0008434933261014521, -0.00836397148668766, -0.0043636467307806015, -0.0033891117200255394, -0.01781790889799595, -0.0011997190304100513, -0.014245244674384594, 0.013291524723172188, 0.0021250543650239706, -0.0050713676027953625, 0.022389709949493408, 0.012519465759396553, 0.01219398993998766, 0.011323531158268452, -0.025614190846681595, -0.005604996345937252, 0.016500867903232574, 0.01114943902939558, -0.015085426159203053, -0.014154413715004921, -0.015312502160668373, 0.010990486480295658, 0.005419550929218531, -0.0037126950919628143, 0.011232701130211353, -0.007043145596981049, 0.01220155879855156, 0.012057743966579437, -0.008454802446067333, 0.012171282432973385, -0.0025867759250104427, 0.022465402260422707, -0.00838667992502451, 0.003682418493553996, 0.015804501250386238, -0.010975347831845284, 0.031033741310238838, -0.00519625935703516, -0.0006372324423864484, -0.01666739024221897, 0.013314232230186462, -0.005033521447330713, 0.03448529914021492, 0.012890356592833996, 0.01423767488449812, 0.0037656796630471945, 0.01824178546667099, -0.0032263738103210926, 0.006013733800500631, 0.022132355719804764, -0.0036502492148429155, -0.00711883744224906, -0.01616782322525978, 0.0010067042894661427, -0.005646626930683851, -0.04829153046011925, 0.005018383264541626, 0.01042279601097107, -0.02385813556611538, -0.011558176949620247, 0.02225346304476261, 0.0009489891235716641, -0.03639274090528488, 0.02939879335463047, 0.013072017580270767, 0.001103211659938097, 0.021435989066958427, 0.005597427487373352, -0.00444312347099185, 0.018378030508756638, 0.021663065999746323, -0.0050713676027953625, 0.03130623325705528, 0.02735510841012001, -0.00428795488551259, 0.017076127231121063, -0.021572235971689224, -0.019876733422279358, 0.010309257544577122, 0.0228892769664526, -0.012791956774890423, 0.023540228605270386, -0.013087156228721142, 0.030655281618237495, -0.012754110619425774, -0.011391653679311275, 0.027597323060035706, 0.004469615872949362, 0.007046930026262999, 0.00722859101369977, 0.0027816828805953264, -0.02587154321372509, -0.002143977442756295, -0.000904046930372715, -2.8266251320019364e-05, 0.02134515903890133, -0.007285360246896744, -0.025629328563809395, 0.013806230388581753, 0.007618404924869537, -0.0019944855011999607, 0.002783575328066945, -0.0037240490783005953, 0.04117647558450699, -0.008742432110011578, -0.007932526990771294, 0.006006164476275444, 0.005517950747162104, -0.0013738108100369573, 0.014207398518919945, 0.006456532049924135, -0.00936310738325119, 0.012345373630523682, -0.0055822888389229774, -0.011051040142774582, -0.011194854974746704, -0.0031866354402154684, 0.007841696962714195, 0.012292389757931232, -0.011315962299704552, -0.00019029455143027008, 0.02491782419383526, -0.0007252244977280498, 0.008946800604462624, 0.0029103595297783613, -0.012784387916326523, 0.00216290052048862, -0.010354672558605671, -0.011596022173762321, -0.010362242348492146, -0.02488754689693451, -0.008265572600066662, 0.00866673979908228, -0.012988756410777569, -0.004954044707119465, 0.009438798762857914, -0.016591697931289673, -0.00813689548522234, 0.015516870655119419, 0.004106293898075819, 0.004658845718950033, 0.005673119332641363, 0.006286224815994501, 0.02276816964149475, -0.005290874280035496, -0.0017087480518966913, -0.004723184276372194, -0.0043636467307806015, -0.007440528832376003, 0.02222318761050701, -2.505820884834975e-05, 0.017106404528021812, -0.02629541978240013, -0.011088885366916656, 0.01872621476650238, 0.003377757966518402, -0.008818124420940876, -0.019558826461434364, 0.013859215192496777, -0.00406844774261117, 0.003716479754075408, -0.010589318349957466, 0.021587373688817024, 0.01043793372809887, -0.013321801088750362, -0.01139922346919775, 0.021965833380818367, -0.009764274582266808, 0.005044875200837851, -0.005661765579134226, 0.008992215618491173, 0.0034288500901311636, 0.012814664281904697, 0.014025737531483173, -0.019589103758335114, -0.0028346674516797066, 0.001401249086484313, -0.015562285669147968, 0.020118948072195053, -0.008560771122574806, 0.010967778041958809, -0.022949829697608948, -0.005056228954344988, -0.01612240821123123, 0.017984431236982346, -0.007016653195023537, 0.009688583202660084, 0.002249946352094412, -0.018953289836645126, -0.0024353917688131332, 0.034121979027986526, 0.04020761698484421, -0.01441176701337099, -0.002134515903890133, 0.020149225369095802, -0.006910684518516064, -0.011951775290071964, 0.0006675092736259103, -0.00030726243858225644, -0.022011248394846916, -0.0003287873696535826, 0.004397708456963301, -0.002552714431658387, -0.006619269959628582, -0.011073747649788857, -0.02694637142121792, 0.01877162978053093, 0.0019661011174321175, -0.015448748134076595, 0.014532874338328838, 0.010415226221084595, -0.009756705723702908, 0.005438474006950855, -0.015986161306500435, 0.0004610119212884456, -0.0010000813053920865, -0.019452856853604317, 0.0009698044159449637, -0.004912414122372866, 0.003018220653757453, -0.007508651819080114, -0.005385489668697119, 0.0009839966660365462, 0.007429175078868866, 0.014033306390047073, 0.029535038396716118, -0.021193774417042732, 0.0014807258266955614, -0.004787522368133068, 0.004526384640485048, 0.002948205452412367, 0.0021080237347632647, 0.019044119864702225, 0.0014788334956392646, 0.036301907151937485, 0.006952315103262663, 0.028778119012713432, 0.005018383264541626, -0.005991025827825069, 0.0019112243317067623, -0.011989621445536613, -0.010725564323365688, -0.005926687736064196, 0.0034931881818920374, -0.014214967377483845, 0.008424525149166584, 0.009741567075252533, -0.012481619603931904, 0.018605107441544533, -0.004904845263808966, -0.018983567133545876, 0.03288062661886215, 0.01921064220368862, 0.0027173447888344526, 0.008545632474124432, 0.013382354751229286, 0.0012924418551847339, -0.022964969277381897, 0.011020762845873833, 0.027748705819249153, -0.0006116863805800676, 0.008416956290602684, -0.0030863434076309204, 0.00481401477009058, 0.007894680835306644, 0.0021155928261578083, -0.010823963209986687, 0.01883218251168728, -0.016516005620360374, 0.008734863251447678, 0.036846891045570374, 0.0227984469383955, 0.005790442228317261, -0.009173876605927944, -0.00865160208195448, -0.01498702634125948, -0.0028744058217853308, -0.005896410904824734, -0.0011211885139346123, -0.014661550521850586, -0.008424525149166584, -0.0045680152252316475, -0.014775088988244534, -0.00023606458853464574, 0.02334342896938324, -0.018635382875800133, -0.012511895969510078, -0.004791306797415018, -0.012701126746833324, -0.01242863480001688, -0.00041961780516430736, -0.010006489232182503, 0.03233564645051956, -0.00036379494122229517, -0.007357267662882805, -0.005120567511767149, 0.024630194529891014, 0.011323531158268452, 0.011913929134607315, -0.009234430268406868, -0.011209992691874504, -0.01716695725917816, 0.013344508595764637, 0.008250433951616287, -0.003105266485363245, 0.0021572234109044075, 0.005230321083217859, 0.009431229904294014, 0.008697017095983028, 0.00216668494977057, -0.009991350583732128, 9.627082908991724e-05, -0.008295848965644836, -0.017424311488866806, 0.011580884456634521, -0.002104239072650671, -1.1346415703883395e-05, -0.008515356108546257, -0.006112133152782917, -0.01631920598447323, 0.01934688910841942, 0.006013733800500631, 0.006641977466642857, 0.006225671153515577, -0.0139197688549757, -0.020618515089154243, -0.00839424878358841, 0.0126481419429183, 0.0009896735427901149, 0.011520330794155598, 0.006195394322276115, -0.0047648148611187935, 0.02229887805879116, 0.007474590092897415, 0.0406920462846756, 0.014320936053991318, 0.0031147280242294073, 0.004749676212668419, 0.0026000221259891987, 0.008530494756996632, -0.0051735518500208855, 0.006483024451881647, 0.022541092708706856, -0.007637328002601862, -0.0012952802935615182, -0.0012110729003325105, 0.0007928742561489344, -0.0101578738540411, 0.024721024557948112, 0.013079586438834667, 0.005389274097979069, -0.002015301026403904, 0.000326421984937042, 7.581031968584284e-05, -0.0021534389816224575, 0.028535904362797737, -0.0013719184789806604, -0.021163497120141983, 0.013601861894130707, 0.0002184425393352285, 0.003479942213743925, 0.012443773448467255, 0.017363756895065308, 0.016531145200133324, -0.00748972874134779, 0.002596237463876605, 0.0021799311507493258, -0.012996325269341469, -0.000739889801479876, -0.02184472605586052, 0.0019490703707560897, 0.02988322265446186, 0.0037429719232022762, -0.0069712381809949875, -0.003928417339920998, -0.02019464038312435, 0.012966048903763294, 0.024660469964146614, -0.017000434920191765, -0.0010407657828181982, 0.001962316455319524, 0.020663930103182793, -0.006691177375614643, 0.038845162838697433, -0.006524655036628246, -0.011270546354353428, 0.009575044736266136, 0.006895545870065689, 0.012405927293002605, -0.0057790884748101234, -0.0076827434822916985, -0.0007379975286312401, 0.009491783566772938, 0.0088862469419837, -0.0013179879169911146, -0.005094075109809637, 0.015259518288075924, 0.030730973929166794, 0.014820504002273083, 0.029807530343532562, -0.02584126777946949, -0.008106619119644165, 0.001322718570008874, 0.025008654221892357, 0.012996325269341469, 0.00034629114088602364, -0.013253678567707539, -0.008946800604462624, 0.001262165023945272, 0.004579368978738785, 0.0015062718885019422, -0.021072667092084885, 0.011384084820747375, 0.002338884398341179, 0.04302336275577545, -0.019422581419348717, 0.026083480566740036, -0.008424525149166584, -0.006134841125458479, 0.008901385590434074, -0.013639708049595356, 0.0051697674207389355, -0.008197449147701263, 0.01978590339422226, -0.024145765230059624, 0.004605861380696297, -0.03148789331316948, 0.0025773143861442804, 0.0049729677848517895, 0.0036975566763430834, 0.02136029675602913, 0.004916199017316103, 0.022102080285549164, -0.0015933177201077342, -0.02039143815636635, 0.0253871139138937, 0.006290009710937738, -0.010490918532013893, -0.01423010602593422, -0.003152573946863413, 0.016440313309431076, -0.009249568916857243, -0.01446475088596344, -0.015986161306500435, -0.028293689712882042, -0.006278655957430601, 0.028581319376826286, -0.004783737938851118, 0.00066277856240049, -0.0252962838858366, -0.0019159551011398435, 0.0013094724854454398, -0.03696800023317337, 0.000562486588023603, -0.023661335930228233, 0.0009215507307089865, 0.02585640549659729, 0.030549312010407448, 0.004795091692358255, 0.010415226221084595, -0.0009981889743357897, 0.010778548195958138, -0.0021799311507493258, 0.01616782322525978, 0.0008775547612458467, -0.011270546354353428, 0.0017390248831361532, 0.009310122579336166, -0.008046065457165241, -0.0043636467307806015, 0.01871107518672943, -0.010490918532013893, 0.0027022063732147217, 0.0025905605871230364, 0.014691827818751335, -0.0101578738540411, -0.019013844430446625, 0.015373055823147297, -0.03445502370595932, 0.009340398944914341, -0.02944420836865902, -0.014593428000807762, 0.006520870141685009, 0.01494161132723093, 0.008477509953081608, -0.0028346674516797066, -0.009779413230717182, -0.0074518825858831406, 0.01569853164255619, -0.011497623287141323, -0.004602076951414347, 0.012141005136072636, -0.0152065334841609, 0.008182310499250889, -0.008568339981138706, -0.013912199065089226, 0.0060553643852472305, 0.001501541119068861, 0.005124351941049099, 0.017621109262108803, -0.004397708456963301, -0.006373270880430937, -0.029126301407814026, 0.007406467571854591, -0.02833910472691059, -0.01918036676943302, -0.020451992750167847, 0.01616782322525978, 0.01680363528430462, -0.0027760060038417578, 0.025054069235920906, 0.014767519198358059, 0.024191180244088173, -0.0001218168981722556, -0.014646411873400211, -0.002338884398341179, -0.0015895330579951406, 0.011202423833310604, 0.0027911444194614887, -0.01290549524128437, -0.007887111976742744, 0.0004399600438773632, -0.01730320416390896, 0.003044712822884321, -0.0508650578558445, 0.00470426119863987, -0.0005061905831098557, -0.02376730553805828, -0.018892737105488777, -1.0370697964390274e-05, 0.010180581361055374, 0.002104239072650671, -0.00017586575995665044, 0.008492648601531982, -0.002965236082673073, -0.017863323912024498, -0.02933824062347412, -0.013912199065089226, -0.016955019906163216, 0.020996974781155586, 0.011020762845873833, -0.00838667992502451, 0.00940852239727974, 0.005563365761190653, 0.016955019906163216, -0.023403983563184738, -0.004575584549456835, -0.0057866573333740234, -0.008931661956012249, 0.01117214746773243, -0.029519900679588318, 0.00959018338471651, 0.0001440514315618202, -0.0006306094001047313, -0.00909818522632122, 0.0004432715941220522, -0.013828937895596027, -0.004586938302963972, -0.006940961349755526, 0.003873540787026286, -0.006221886724233627, 0.021935556083917618, -0.017893601208925247, -0.006267302203923464, 0.002904682420194149, 0.02941393107175827, 0.009923228062689304, -0.00962802954018116, -0.01728806458413601, 0.002117485273629427, 0.006554931867867708, 0.0023899765219539404, -0.00041512359166517854, -0.01719723455607891, 0.0253871139138937, 0.010059474036097527, 0.004795091692358255, -0.00594939524307847, -0.005745026748627424, -0.0031847432255744934, -0.004832937382161617, 0.011792821809649467, -0.007497298065572977, 0.013533739373087883, -0.012822234071791172, 0.01117214746773243, -0.04208478331565857, -0.011338669806718826, 0.009953505359590054, 0.0009220238425768912, -0.011467345990240574, 0.007149114273488522, 0.007644897326827049, -0.003760002786293626, 0.002870621159672737, -0.009794551879167557, -0.00915116909891367, 0.015622839331626892, -0.019104674458503723, 0.013193124905228615, -0.010823963209986687, 0.013995460234582424, -0.005094075109809637, 0.01092236302793026, 0.007285360246896744, 0.026053205132484436, 0.0006471670349128544, 0.003992755897343159, 0.003731618169695139, -0.006202963646501303, 0.012511895969510078, -0.0003396680986043066, 0.010551472194492817, 0.00040353325312025845, -0.002753298496827483, -0.00783412717282772, -0.005200044251978397, -0.011732268147170544, -0.013049310073256493, 0.014744811691343784, -0.013026602566242218, 0.018090400844812393, 0.0028800826985388994, 0.0004198543610982597, 0.024978376924991608, -0.0003947813529521227, 0.031124571338295937, -0.027612460777163506, 0.018060123547911644, -0.02584126777946949, -0.011527899652719498, 0.03942042216658592, 0.015024872496724129, -0.005703396163880825, -0.0203157477080822, 0.010665010660886765, -0.00836397148668766, -0.008053634315729141, -0.016939882189035416, 0.01930147409439087, 0.012746541760861874, 0.027733568102121353, -0.005139490589499474, 0.0023275306448340416, -0.0046664150431752205, -0.013995460234582424, 0.005419550929218531, 0.02126946672797203, -0.021012114360928535, -0.008318556472659111, 0.005014598369598389, -0.006706316024065018, -0.004276601132005453, 0.010331965051591396, 0.0013652953784912825, -0.005464966408908367, 0.02237457036972046, -0.016425175592303276, 0.017394034191966057, 0.017484864220023155, -0.003599157091230154, -0.011338669806718826, -0.0012224266538396478, 0.002471345476806164, 0.020467130467295647, -0.0032169122714549303, -0.000873770157340914, 0.01546388678252697, 0.014139275066554546, -0.03142733871936798, -0.014252813532948494, 0.01494161132723093, 0.0030560665763914585, 0.0005284251528792083, -0.0035215727984905243, 0.027279416099190712, -0.005919118411839008, -0.00572231924161315, 0.016394898295402527, 0.012837371788918972, -0.009537198580801487, 0.007667604833841324, -0.009612890891730785, -0.00809148047119379, -0.018029846251010895, 0.007811419665813446, -0.022722754627466202, -0.0019963779486715794, 0.0009560852195136249, -0.006392193958163261, -0.005688257981091738, 0.006255947984755039, 0.010793686844408512, -0.025099484249949455, -0.013730538077652454, -0.005230321083217859, 0.0008250433602370322, -0.01821150816977024, -0.014752381481230259, -0.02740052342414856, 0.02429714985191822, 0.010589318349957466, 0.015009733848273754, 0.008167172782123089, -0.0027892522048205137, 0.0003034778346773237, 0.004113863222301006, 0.025629328563809395, 0.006286224815994501, 0.012981187552213669, -0.020451992750167847, 0.011823099106550217, -0.007016653195023537, -0.007887111976742744, -0.001183634507469833, -0.0007413090206682682, -0.011111593805253506, 0.001960424240678549, 0.014790226705372334, -0.005018383264541626, -0.006547362543642521, 0.0068728383630514145, 0.010271411389112473, -0.021435989066958427, 0.019483134150505066, -0.012481619603931904, 0.031064018607139587, 0.009340398944914341, -0.0012262113159522414, -0.022601647302508354, -0.004295524209737778, 0.01578936167061329, 0.019467996433377266, -0.013677554205060005, 0.007894680835306644, 0.006763084791600704, -0.006411117035895586, 0.0011893113842234015, -0.010665010660886765, 0.036725785583257675, 0.013420200906693935, 0.00834883376955986, -0.01060445699840784, -0.018484000116586685, -0.00016652251360937953, -0.012708695605397224, -0.008008219301700592, -0.004200908821076155, -0.0028403443284332752, -0.020618515089154243, 0.019392304122447968, -0.03693772107362747, 0.005328720435500145, -0.00385651015676558, 0.016516005620360374, 0.00011891931353602558, -0.004393923562020063, 0.002236700151115656, 0.0069750226102769375, 0.013321801088750362, 0.010400088503956795, 0.013753245584666729, -0.02696150913834572, -0.009310122579336166, 0.0022404848132282495, -0.003466696012765169, -0.0028516980819404125, -0.0034458807203918695, 0.01087694801390171, -0.01542604062706232, -0.00990808941423893, -0.03397059440612793, 0.008674309588968754, 0.007569205481559038, -0.024236595258116722, 0.0034023576881736517, -0.005631488747894764, 3.166648093611002e-05, -0.0177573561668396, -0.010892086662352085, 0.014146844856441021, 0.013768384233117104, -0.031185125932097435, -0.003455342259258032, 0.0009915658738464117, 0.024509087204933167, 0.0036256492603570223, 0.01320826355367899, -0.01674308255314827, -0.016818774864077568, 0.014858350157737732, -0.008908954448997974, -0.0012763572158291936, 0.013722969219088554, 0.004571800120174885, -0.0006755515933036804, -0.0011580884456634521, -0.02223832532763481, -0.0020777469035238028, 0.005676903761923313, 0.006040225736796856, -0.00990808941423893, -0.03285035118460655, 0.0010350887896493077, 0.006119702477008104, -0.010256272740662098, -0.014956749975681305, 0.022722754627466202, -0.021496543660759926, 0.007610836066305637, 0.0013473185244947672, -0.001638732966966927, -0.007122622337192297, 0.0012016113614663482, 0.009529629722237587, -0.004098724573850632, 0.0013709722552448511, 0.019377166405320168, 0.028702426701784134, 0.04217561334371567, 0.013866784051060677, -0.016924742609262466, -0.02732483111321926, -0.015183825977146626, 0.019407441839575768, 0.013647276908159256, -0.009302553720772266, 0.024539364501833916, 0.007993080653250217, 0.005688257981091738, 0.021087806671857834, 0.01220155879855156, -0.0018128246301785111, 0.04208478331565857, -0.03612024709582329, -0.006993945688009262, -0.0037335106171667576, 0.000612632546108216, 0.00417820131406188, 0.0023824074305593967, -0.007663820404559374, -0.0031260817777365446, 0.006191609892994165, 0.0016018330352380872, 0.0028819749131798744, 0.008530494756996632, 0.033698100596666336, -0.0012347266310825944, 0.037270765751600266, -0.011747406795620918, -0.008772709406912327, -0.011262977495789528, -0.008984646759927273, -0.009620459750294685, 0.011058609001338482, -0.019634518772363663, 0.0066722542978823185, -0.03397059440612793, 0.0031979891937226057, 0.0033058503177016973, -0.005211398005485535, -0.006414901465177536, 0.016879327595233917, 0.0025848837103694677, 0.0126405730843544, 0.02229887805879116, 0.007368621416389942, -0.01930147409439087, -0.015955884009599686, -0.0007810473907738924, 0.006717669777572155, 0.009279845282435417, -0.015562285669147968, 0.007565420586615801, -0.013617000542581081, -0.010967778041958809, -0.022162633016705513, 0.0203460231423378, -0.02275303192436695, -0.025084346532821655, 0.030140575021505356, -0.013912199065089226, 0.018499137833714485, -0.008855970576405525, 0.009469076059758663, 0.017000434920191765, 0.007962804287672043, -0.014071152545511723, 0.001849724561907351, 0.0058850571513175964, -0.014336074702441692, 0.020936422049999237, -0.022435124963521957, 0.009226861409842968, -0.005468750838190317, -0.02897491864860058, -0.021102944388985634, -0.01118728518486023, -0.0004598292289301753, 0.008931661956012249, -0.0030144359916448593, -0.0007592859328724444, -0.009537198580801487, 0.023979242891073227, 0.013798661530017853, 0.016576560214161873, 0.00674416171386838, 0.02223832532763481, 0.006880407687276602, -0.0038281255401670933, 0.003566988045349717, -0.01494918018579483, 0.02134515903890133, -0.0017749785911291838, 0.008462371304631233, 0.0016169714508578181, 0.02133002132177353, -0.003269896609708667, 0.025538498535752296, 0.009612890891730785, 2.615219636936672e-05, 0.02284386195242405, 0.007054499350488186, -0.0045680152252316475, 0.003411819227039814, -0.0036975566763430834, -0.00857590977102518, -0.008999785408377647, -0.006131056230515242, 0.008507786318659782, -0.023615920916199684, 0.011262977495789528, 0.00711126858368516, 0.0026719295419752598, -0.015577424317598343, -0.015940746292471886, 0.0008463317644782364, 0.0008226779755204916, 0.04296280816197395, -0.008598617278039455, -0.0009437853004783392, 0.008598617278039455, -0.006937176454812288, 0.019028982147574425, -0.015925608575344086, -0.03454585373401642, 0.03445502370595932, -0.002121269702911377, -0.0028195290360599756, 0.01830233819782734, 0.018453722819685936, -0.005805580411106348, 0.028021197766065598, -0.012368081137537956, 0.0023199613206088543, 0.0005478212260641158, -0.0045642307959496975, -0.006422470789402723, 0.007527574896812439, -0.003761895000934601, 0.000863835564814508, -0.028006060048937798, -0.017560556530952454, 0.009794551879167557, 0.017969293519854546, 0.011762545444071293, -0.011565745808184147, 0.020921284332871437, -0.031699832528829575, 0.010241135023534298, 0.023933827877044678, 0.007773573976010084, -0.013844076544046402, 0.013102293945848942, 0.006713884882628918, 0.020073533058166504, 0.006286224815994501, -0.010180581361055374, 0.018499137833714485, 0.010453072376549244, 0.001653871382586658, -2.406770727247931e-05, 0.0013416416477411985, 0.002450530184432864, 0.008500217460095882, 0.007391328923404217, 0.025614190846681595, 0.01114187017083168, -0.012822234071791172, -0.008772709406912327, -0.005154628772288561, -0.011315962299704552, 0.003137435531243682, 0.012738972902297974, -0.007364836987107992, -0.0021572234109044075, -0.01215614378452301, -0.0013605646090582013, 0.002917928621172905, -0.01616782322525978, -0.015062718652188778, -0.013072017580270767, 0.013041740283370018, -0.02487240917980671, 0.022480539977550507, 0.024206317961215973, 0.0021875002421438694, 0.022525954991579056, 0.0076562510803341866, 0.010104889050126076, 0.025462806224822998, 0.004832937382161617, 0.006199179217219353, -0.0050751520320773125, 0.005911549553275108, -0.02228374034166336, -0.008674309588968754, -0.0038262333255261183, -0.016076991334557533, -0.00987024325877428, 0.006501947529613972, 0.008765139617025852, -0.0020701775792986155, -0.005234105512499809, -0.02839965745806694, -0.021118082106113434, -0.005324936006218195, 0.017091264948248863, -0.02685553953051567, 0.010233565233647823, 0.02073962241411209, 0.0014504489954560995, -0.02688581682741642, 0.00481779919937253, 0.0021837158128619194, 0.016061853617429733, -0.015849916264414787, 0.00025214915513060987, -0.005154628772288561, 0.016864189878106117, -0.004163063131272793, -0.007735727820545435, -0.024675609543919563, 0.004412846639752388, -0.0019348780624568462, -0.01294334139674902, 0.009014923125505447, 0.020966699346899986, -0.012799526564776897, -0.022086940705776215, 0.019452856853604317, 0.01671280525624752, -0.0032888196874409914, 0.00026397602050565183, -0.011119162663817406, 0.01547145564109087, 0.0018393169157207012, -0.018665660172700882, -0.03612024709582329, 0.012928202748298645, 0.009136030450463295, -0.02790009044110775, -0.0035613111685961485, 7.474590529454872e-05, 0.009794551879167557, -0.003004974452778697, 0.01978590339422226, 0.022677339613437653, -0.009332830086350441, -0.0020077317021787167, -0.005869918502867222, 0.004503677133470774, -0.0012063421308994293, 0.01874135248363018, 0.010415226221084595, -0.009968643076717854, 0.014608566649258137, -0.019013844430446625, -0.014926472678780556, 0.0019225782016292214, -0.006657116115093231, -0.005733672995120287, -0.01343533955514431, -0.001196880592033267, 0.0011041577672585845, -0.006547362543642521, 0.05013841763138771, 0.011770114302635193, -0.004685338120907545, -0.028551042079925537, -0.027006924152374268, -0.0010417118901386857, 0.003970048390328884, 0.0012593265855684876, 0.002550822217017412, -0.003886786988005042, -0.008802985772490501, 0.013722969219088554, 0.005411981604993343, 0.030564451590180397, -0.011807960458099842, -0.007122622337192297, -0.006797146517783403, 0.017636248841881752, 0.0021572234109044075, -0.024463672190904617, 0.009915659204125404, -0.021405711770057678, 0.001525194849818945, -0.018680797889828682, -0.01630406826734543, -0.0031090511474758387, 0.0011779576307162642, -0.0005762057262472808, -0.02285899966955185, -0.02133002132177353, 0.009037631563842297, -0.0037486490327864885, 0.002870621159672737, 0.006418685894459486, -0.009090615436434746, 0.01042279601097107, 0.002872513374313712, -0.006763084791600704, 0.005563365761190653, 0.0030863434076309204, -0.0035461727529764175, -0.014790226705372334, -0.010294118896126747, 0.006441393867135048, 0.012254543602466583, 0.04717128723859787, 0.006392193958163261, -0.0004468196420930326, -0.012708695605397224, -0.013533739373087883, -0.02576557546854019, 0.011376515962183475, -0.0030295744072645903, -0.01924091950058937, -0.0012829803163185716, -0.024433394894003868, -0.04820070043206215, 0.012852510437369347, 0.02593209780752659, -0.011217562481760979, -0.0022139926441013813, 0.0013444800861179829, 0.01568339392542839, -0.014343644492328167, 0.001342587755061686, 0.012246973812580109, -0.008719724602997303, -0.0036653876304626465, -0.014177121222019196, 0.017500001937150955, 0.013185556046664715, 0.006248379126191139, -0.014373920857906342, 0.007512436248362064, -0.006812284700572491, 0.0018705398542806506, 0.0027760060038417578, -0.0011060500983148813, -0.006399763282388449, 0.00808391161262989, 0.021920418366789818, 0.00809904932975769, 0.005669334903359413, 0.00838667992502451, 0.007160468026995659, -0.027567045763134956, -0.022995246574282646, 0.008500217460095882, 0.008076341822743416, -0.0228741392493248, 0.0018752706237137318, -0.004844291601330042, 0.00265111424960196, -0.021905280649662018, 0.012345373630523682, -0.006630623713135719, -0.008469941094517708, -0.007641112897545099, -0.0017740324838086963, 0.014797796495258808, 0.01572880893945694, -0.006414901465177536, 0.016955019906163216, -0.014479889534413815, 0.012481619603931904, -0.004242539405822754, 0.0050675831735134125, 0.007970373146235943, 0.006112133152782917, -0.005922903306782246, -0.009476644918322563, -0.0059607489965856075, -0.012875217944383621, 0.01369269285351038, -0.011020762845873833, -0.0006750784814357758, 0.0015848024049773812, 0.020497407764196396, -0.015183825977146626, -0.00990052055567503, 0.005430904682725668, -0.015562285669147968, 0.0027381600812077522, -0.02337370626628399, -0.010301688686013222, -0.015441179275512695, -0.012004759162664413, 0.002121269702911377, -0.007879543118178844, -0.014616135507822037, -0.02832396700978279, 0.020512545481324196, 0.00722480658441782, -0.005775303579866886, -0.01418469101190567, -0.018605107441544533, -0.029762115329504013, 0.01978590339422226, 0.023040661588311195, -0.003744864370673895, -0.016076991334557533, -0.028747841715812683, 0.014971887692809105, 0.0036218648310750723, -0.003631326137110591, -0.005411981604993343, 0.01930147409439087, 0.006956099532544613, -0.009612890891730785, 0.00749351317062974, -0.013859215192496777, -0.016546282917261124, 0.003235835349187255, -0.00967344455420971, -0.0013075802708044648, -0.0011088885366916656, -0.0024429610930383205, -0.011497623287141323, 0.03197232261300087, 0.0017248326912522316, 0.020618515089154243, 0.025250868871808052, 0.016909604892134666, 0.01497945748269558, -0.009529629722237587, 0.0021401927806437016, 0.009484214708209038, 0.0353633277118206, -0.012171282432973385, -0.013064448721706867, 0.0036086186300963163, 0.0075994823127985, 0.014881057664752007, 0.0014958642423152924, 0.011558176949620247, -0.00771302031353116, -0.013564015738666058, 0.027718430384993553, 0.022071802988648415, -0.0021837158128619194, 0.004083586391061544, 0.020633652806282043, -0.013246109709143639, 0.008159602992236614, -0.0002068521862383932, -0.026234865188598633, 0.02746107615530491, 0.01012002769857645, -0.004624784458428621, 0.01978590339422226, -0.003455342259258032, -0.014926472678780556, -0.000525586714502424, 0.010937501676380634, 0.019059259444475174, 0.016425175592303276, -0.016924742609262466, -0.018090400844812393, 0.006732807960361242, -0.018014708533883095, 0.01039251871407032, 0.0015204640803858638, 0.022707615047693253, -0.012057743966579437, 0.006732807960361242, 0.003338019596412778, 0.023933827877044678, -0.0006329747848212719, 0.004473400302231312, 0.01317798625677824, -0.013942476361989975, 0.0067706541158258915, 0.002670037094503641, -0.008182310499250889, -0.010150304064154625, -0.01616782322525978, -0.010990486480295658, -0.01348832342773676, 0.006573854945600033, 0.0015337102813646197, 0.02176903374493122, 0.008787847124040127, 0.0002869201998692006, -0.003222589148208499, 0.00482158362865448, -0.006713884882628918, 0.006108348723500967, 0.01933174952864647, -0.003353158012032509, 0.0031128355767577887, -0.0012848726473748684, -0.009393383748829365, 0.006437608972191811, -0.017848186194896698, 0.020164363086223602, -0.004859429784119129, 0.0033020658884197474, -0.003046605037525296, 0.009756705723702908, -0.007849265821278095, -0.00432580104097724, -0.004537738393992186, -0.01086937915533781, -0.03433391451835632, 0.0014334182487800717, 0.010400088503956795, 0.03339533507823944, 0.0017957939999178052, 0.014426905661821365], "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64": [-0.021045053377747536, -0.024013957008719444, -0.005635660607367754, 0.022069720551371574, -0.011448667384684086, -0.0075798979960381985, -0.02054585888981819, 0.006857377011328936, -0.014253360219299793, 0.05627778545022011, 0.010653894394636154, -0.02178071066737175, 0.027009133249521255, -0.0106013473123312, 0.01359652355313301, 0.017971057444810867, -0.03588956966996193, 0.00564222875982523, 0.013452019542455673, -0.014345318078994751, 0.02368553914129734, 0.01525175292044878, -0.02249009534716606, 0.00995107926428318, 0.02763969637453556, -0.024486878886818886, -0.02116328477859497, -0.013675344176590443, -0.024565700441598892, -0.011363278143107891, 0.007402551826089621, 0.010016762651503086, 0.0160530935972929, 0.0019573739264160395, -0.01422708760946989, -0.03807026520371437, -0.016486605629324913, 0.0013933152658864856, -0.0071660904213786125, -0.00945845153182745, -0.0021248674020171165, 0.016039956361055374, 0.01994156837463379, -0.02842790074646473, -0.008919845335185528, 0.02879573032259941, -0.026194656267762184, -0.008992097340524197, 0.019416099414229393, 0.0005184906185604632, 0.010180971585214138, 0.00039246006053872406, 0.022582052275538445, 0.03478608280420303, 0.0280863456428051, -0.006949334405362606, 0.0022923608776181936, 0.056487973779439926, 0.021465430036187172, -0.04576839506626129, 0.027114227414131165, -0.03775498643517494, 0.004213608801364899, -0.027114227414131165, 0.04427080601453781, 0.005510861519724131, -0.004364680964499712, 0.004404091276228428, -0.007455098908394575, 0.007606171071529388, -0.021491702646017075, -0.016644246876239777, -0.035153910517692566, 0.014069446362555027, 0.05890513211488724, 0.013248399831354618, 0.04072388634085655, 0.041433271020650864, 0.028690636157989502, -0.02569545991718769, -0.00174225983209908, 0.02137347310781479, -0.009208853356540203, -0.02160993404686451, 0.060954462736845016, 0.004926276858896017, -0.05433354899287224, -0.04427080601453781, -0.01949491910636425, -0.01100858673453331, 0.024657657369971275, 0.01286743488162756, -0.011113679967820644, 0.0047357939183712006, 0.01577722281217575, 0.013202421367168427, 0.01581663265824318, 0.0077046966180205345, -0.003098628018051386, -0.04164345934987068, -0.019508056342601776, 0.005458314437419176, -0.008492900989949703, -0.0033695732709020376, 0.023672401905059814, 0.0014516095397993922, 0.032500289380550385, 0.024500016123056412, -0.00826300773769617, 0.015094111673533916, -0.008460058830678463, -0.045926034450531006, 0.015343709848821163, -0.016946392133831978, -0.0315544456243515, -0.047765180468559265, -0.013754164800047874, 0.00012674900062847883, -0.02351476065814495, -0.026220928877592087, 0.037544798105955124, -0.009451882913708687, 0.019481781870126724, -0.0006198898190632463, -0.01919277384877205, 0.0032809001859277487, 0.010082446038722992, 0.029846668243408203, 0.04847456142306328, 0.0067325783893466, -0.009281105361878872, -0.005083917640149593, 0.04453354328870773, 0.034707263112068176, -0.012401080690324306, -0.014174540527164936, 0.024184733629226685, 0.050523895770311356, -0.015908589586615562, 0.012703225947916508, -0.02637857012450695, 0.03357750177383423, -0.0016544079408049583, 0.0174849983304739, -0.015041564591228962, -0.033761415630578995, -0.06326653063297272, 0.06394963711500168, 0.001494303927756846, 0.028480447828769684, -0.045006465166807175, -0.02488098107278347, -0.04469118267297745, 0.01112681720405817, 0.035495467483997345, 0.008000273257493973, -0.004358112812042236, 0.049472954124212265, 0.031712085008621216, 0.010312339290976524, 0.00647641159594059, -0.02937374636530876, 0.0372295156121254, 0.024394921958446503, 0.05422845482826233, -0.014594916254281998, 0.05711853504180908, 0.03003058210015297, -0.012578426860272884, 0.02054585888981819, 0.033419862389564514, 0.007067564874887466, 0.012939686886966228, -0.014555505476891994, 0.0019639423117041588, -0.019245320931077003, 0.009688343852758408, -0.0027817043010145426, 0.040067050606012344, 0.014857650734484196, -0.011159658432006836, -0.003269405569881201, 0.006118435878306627, 0.025577228516340256, 0.027902431786060333, 0.05012979358434677, 0.020848002284765244, 0.01731421984732151, -0.03202736750245094, 0.01904826983809471, 0.013622797094285488, -0.022949881851673126, 0.023816905915737152, 0.010575073771178722, -0.006798261776566505, -0.007415688596665859, 0.01422708760946989, -0.020677225664258003, -0.019402962177991867, 0.029899215325713158, 0.0010410865070298314, -0.026286613196134567, -0.0025764426682144403, 0.041906192898750305, -0.018141835927963257, 0.0026027162093669176, -0.026772672310471535, -0.029741574078798294, 0.004088809713721275, -0.021347198635339737, 0.05231048911809921, -0.023606717586517334, 0.0057374704629182816, 0.0019655844662338495, 0.027009133249521255, -0.005727617535740137, -0.009405904449522495, 0.012736067175865173, -0.005037939175963402, -0.01669679395854473, -0.0019245321163907647, -0.017340494319796562, -0.0005771954311057925, -0.034102972596883774, -0.03186972439289093, -0.010489685460925102, -0.014253360219299793, -0.0075798979960381985, -0.007842632941901684, -0.03352495655417442, 0.012098935432732105, 0.01731421984732151, 0.0015148300444707274, -0.023738086223602295, 0.029741574078798294, 0.05548958107829094, 0.06904669106006622, -0.01128445751965046, 0.010049604810774326, 0.01720912754535675, 0.0018046593759208918, 0.017327357083559036, -0.009011802263557911, -0.05186384171247482, -0.0027242309879511595, -0.0036388763692229986, -0.020532721653580666, 0.04968314245343208, 0.010213813744485378, 0.014529231935739517, -0.005389346741139889, -0.018798671662807465, 0.03118661604821682, 0.0006157846073620021, -0.010384591296315193, 0.027902431786060333, 0.029557660222053528, -0.011396120302379131, -0.010010194033384323, -0.0315018966794014, -0.01829947531223297, 0.02400081977248192, -0.02048017457127571, 0.03599466010928154, 0.04085525497794151, -0.019061407074332237, 0.043377507477998734, -0.007803222164511681, -0.021281516179442406, 0.03073996677994728, 0.034680988639593124, -0.022674009203910828, 0.004331839270889759, 0.022161677479743958, 0.010240087285637856, -0.004847456235438585, -0.014555505476891994, -0.015869179740548134, 0.008092230185866356, 0.006988744717091322, 0.008834456093609333, -0.028690636157989502, 0.05753891170024872, -0.014082582667469978, 0.025064896792173386, 0.0458734892308712, -0.017629502341151237, -0.03825417906045914, -0.06936197727918625, -0.017603229731321335, 0.012223734520375729, 0.008841024711728096, -0.02562977559864521, 0.012440490536391735, 0.012072661891579628, 0.002699599601328373, -0.022582052275538445, -0.013254968449473381, -0.013832985423505306, -0.00859142653644085, -0.005888542626053095, 0.0006736683426424861, -0.015343709848821163, -0.006870513781905174, -0.0027849883772432804, -0.012591563165187836, 0.06494802981615067, 0.021806985139846802, -0.01279518287628889, 0.025235673412680626, 0.012348533608019352, -0.03993568196892738, -0.00348451966419816, 0.0014417569618672132, 0.022963017225265503, 0.013038212433457375, -0.025025485083460808, 0.0003154869773425162, -0.0007241626735776663, 0.009589818306267262, -0.018260065466165543, 0.021806985139846802, -0.042589303106069565, 0.0435614213347435, 0.0303721372038126, -0.05701344087719917, 0.01731421984732151, -0.0154882138594985, 0.007015018258243799, -0.0010550442384555936, -0.010194108821451664, -0.0008768772822804749, -0.020322533324360847, 0.022306181490421295, -0.05181129276752472, -0.010936334729194641, -0.025301357731223106, -0.0418536476790905, -0.026798944920301437, -0.02586623653769493, -0.011389551684260368, -0.016591699793934822, 0.025445861741900444, 0.019586876034736633, -0.0280863456428051, -0.02832280658185482, 0.038464367389678955, 0.027613423764705658, -0.009136601351201534, 0.0015230405842885375, 0.0008325407397933304, -0.004479627590626478, 0.004565016366541386, -0.01226971298456192, 0.004588005598634481, -0.013727891258895397, 0.006726009771227837, 0.022450685501098633, 0.03688795864582062, 0.0012258219067007303, -0.02488098107278347, -0.030214497819542885, 0.006995312869548798, -0.006988744717091322, -0.02855926752090454, 0.02562977559864521, 0.013990625739097595, 0.016302691772580147, -0.02947884052991867, 0.0006543737836182117, -0.010969175957143307, -0.0011814853642135859, -0.028506720438599586, -0.0020558994729071856, 0.03197481855750084, -0.052126575261354446, 0.019035132601857185, -0.00935335736721754, 0.00641729636117816, 0.03176463395357132, -0.008118503727018833, -0.007967431098222733, -0.00972775463014841, 0.01646033301949501, 0.04043487831950188, 0.0022940027993172407, 0.015225479379296303, -0.033209674060344696, -0.04025096446275711, -0.03764989227056503, -0.017879100516438484, 0.00032739213202148676, 0.002062467858195305, -0.01200040988624096, 0.011297594755887985, -0.011172795668244362, 0.006144708953797817, -0.0004240703128743917, 0.014713146723806858, -0.02945256605744362, 0.03234264999628067, -0.008276144973933697, -0.002939345082268119, -0.023711811751127243, -0.011947862803936005, -0.05210030451416969, 0.0017373336013406515, 0.017117168754339218, 0.032395195215940475, 0.011757380329072475, 0.032841846346855164, -0.01094290241599083, 0.011908452957868576, 0.013977489434182644, 0.03315712511539459, -0.0019163216929882765, -0.022279907017946243, 0.015461940318346024, -0.05948314815759659, 0.002876945538446307, 0.04692442715167999, 0.026851492002606392, -0.01878553442656994, 0.008223597891628742, 0.008847593329846859, 0.0280863456428051, 0.015514487400650978, 0.02304183878004551, -0.0036815707571804523, 0.02501234970986843, 0.0035830452106893063, 0.025143716484308243, -0.03373514488339424, 0.02222735993564129, -0.0017209126381203532, -0.018325749784708023, -0.01392494235187769, -0.012532448396086693, 0.0042858608067035675, 0.010561937466263771, 0.008558584377169609, 0.03565310686826706, 0.021859532222151756, -0.011974136345088482, -0.041801098734140396, -0.02821771241724491, -0.02365926466882229, 0.022109130397439003, -0.0010222024284303188, -0.016880707815289497, 0.020769182592630386, 0.04017214477062225, -0.007067564874887466, 0.009550408460199833, 0.01737990416586399, -0.005303957965224981, 0.0424579381942749, 0.020269986242055893, -0.0005459956591948867, -0.041590914130210876, -0.013379767537117004, -0.010312339290976524, 0.009261400438845158, -0.013767301104962826, -0.00945845153182745, -0.027009133249521255, 0.022844787687063217, 0.04829064756631851, 0.005684923380613327, 0.004545311443507671, 0.029662754386663437, -0.00908405426889658, -0.02208285592496395, 0.027902431786060333, 0.007382846903055906, -0.02979412116110325, -0.015856042504310608, -0.004903287626802921, 0.012250008061528206, -0.004338407889008522, 0.027587149292230606, -0.0036323079839348793, 0.003256269032135606, 0.04427080601453781, 0.009872258640825748, 0.0012241797521710396, -0.02958393469452858, -0.013090759515762329, -0.02627347595989704, 0.02365926466882229, 0.012519311159849167, 0.010417433455586433, -0.0025041906628757715, 0.01295282319188118, 0.012775477953255177, 0.010082446038722992, 0.009484725072979927, -0.009228558279573917, -0.017944784834980965, -0.02750832960009575, 0.004847456235438585, -0.04109171777963638, 0.02505175955593586, -0.001942595117725432, -0.04576839506626129, 0.04663541913032532, -0.011297594755887985, 0.019626285880804062, -0.013649070635437965, 0.00452560605481267, -0.0280863456428051, 0.0441131666302681, -0.03712442144751549, -0.004551879595965147, 0.011717970483005047, 0.0051758745685219765, -0.008203892968595028, -0.00790831632912159, 0.030319591984152794, -0.021320926025509834, 0.01169169694185257, -0.014634326100349426, -0.030687419697642326, -0.011297594755887985, -0.007258047815412283, -0.011612876318395138, -0.009432177990674973, -0.007159522268921137, 0.024342374876141548, -0.0055502718314528465, -0.0269303135573864, 0.006863945629447699, -0.00719236396253109, 0.004295713268220425, 0.027771063148975372, -0.0008280249894596636, -0.004624131601303816, -0.010358317755162716, -0.005556839983910322, -0.04138072580099106, 0.003405699273571372, 0.04277321696281433, -0.015790358185768127, -0.008545448072254658, -0.0013892099959775805, 0.0026815365999937057, 0.012479901313781738, 0.011494645848870277, -0.018759261816740036, -0.0186410304158926, -0.046162497252225876, 0.03139680251479149, -0.03405042365193367, -0.007054428104311228, -0.01206609420478344, -0.022476958110928535, -0.005553556140512228, -0.011067701503634453, 0.007586466148495674, -0.03877964988350868, -0.008998665027320385, 0.011481508612632751, 0.00613485649228096, 0.012210598215460777, -0.029872942715883255, 0.025169989094138145, -0.02593192085623741, 0.009136601351201534, 0.01737990416586399, 0.022476958110928535, 0.016998939216136932, -0.004000136628746986, 0.02763969637453556, 0.013432314619421959, -0.019810201600193977, 0.01427963376045227, 0.010345181450247765, -0.02845417521893978, -0.04279949143528938, 0.01416140329092741, -0.0010936334729194641, -0.015461940318346024, 0.03473353385925293, -0.020848002284765244, 0.028243986889719963, 0.013432314619421959, 0.0007253942312672734, -0.02934747189283371, -0.018378296867012978, 0.019113954156637192, -0.008039684034883976, -0.003335089422762394, -0.010430569760501385, -0.00615127757191658, -0.031265437602996826, 0.020834866911172867, 0.006289213430136442, -0.006302350200712681, 0.008571721613407135, 0.013714754022657871, 0.049472954124212265, 0.008538879454135895, 0.003941021393984556, -0.03623112291097641, -0.03218500688672066, 0.023830043151974678, -0.023015564307570457, 0.0020296259317547083, 0.015002154745161533, -0.012309123761951923, 0.043745338916778564, -0.020532721653580666, 0.01609250344336033, -0.022516367956995964, 0.02167561836540699, 0.039961956441402435, 0.020900549367070198, 0.03207991272211075, 0.03609975427389145, -0.03623112291097641, 0.017852826043963432, 0.00488358223810792, 0.008992097340524197, -0.020939961075782776, -0.016578562557697296, 0.025104306638240814, -0.03920002654194832, -0.03523273020982742, -0.01324183214455843, 0.01810242421925068, -0.019311005249619484, 0.0052317059598863125, -0.02518312633037567, -0.011547192931175232, 0.02934747189283371, -0.04600485786795616, 0.017629502341151237, -0.004765351768583059, -0.0008124251617118716, -0.005878690164536238, -0.005070780869573355, -0.028585541993379593, 0.010318907909095287, 0.02167561836540699, -0.009110327810049057, 0.03355122730135918, 0.004561732057482004, 0.0134651567786932, 0.0107524199411273, 0.02259518951177597, -0.001484451349824667, 0.007422256749123335, -0.022818513214588165, 0.023869452998042107, -0.004745646379888058, -0.028953369706869125, -0.01646033301949501, 0.02740323543548584, 0.0014368307311087847, -0.021517977118492126, 0.024828433990478516, -0.04857965558767319, 0.046136222779750824, 0.002569874282926321, 0.020979370921850204, 0.006778556853532791, -0.0043351235799491405, 0.015685265883803368, -0.0026913892943412066, 0.04101289436221123, 0.004571584984660149, -0.017695186659693718, -0.012092366814613342, 0.035968389362096786, -0.0045059011317789555, -0.0064468542113900185, -0.0030230917036533356, 0.017458723857998848, 0.0073105948977172375, -0.013898668810725212, -0.017734596505761147, -0.036861687898635864, -0.060376446694135666, 0.022240497171878815, -0.01885121874511242, -0.012854297645390034, 0.0018260065698996186, -0.005780164618045092, -0.03152817115187645, -0.004032978322356939, 0.002857240615412593, 0.04453354328870773, -0.0280863456428051, -0.009793438017368317, -4.910240477329353e-06, 0.0384380966424942, -0.012755772098898888, -0.02678580954670906, 0.00466025760397315, -0.02011234499514103, -0.02191207930445671, -0.0027028839103877544, -0.01525175292044878, -0.011428962461650372, 0.02355417050421238, 0.026496799662709236, -0.012230303138494492, -0.03483862802386284, 0.007619307842105627, -0.0021577090956270695, 0.016276419162750244, -0.013911805115640163, -0.022989291697740555, -0.018246928229928017, 0.00027381887775845826, -0.008571721613407135, -0.021426020190119743, 0.03294694051146507, 0.006588073913007975, 0.025787416845560074, -0.009510998614132404, 0.03357750177383423, -0.01870671473443508, -0.03473353385925293, -0.03373514488339424, 0.04829064756631851, -0.014516095630824566, -0.005185727495700121, 0.00067941565066576, -0.0045485952869057655, 0.011645718477666378, -0.016749341040849686, 0.035022541880607605, 0.0021839826367795467, 0.0269303135573864, -0.026982860639691353, 0.009688343852758408, -0.010253223590552807, 0.009997057728469372, 0.013314084149897099, 0.012880571186542511, -0.01491019781678915, 0.00759303430095315, -0.029268652200698853, -0.00821702927350998, -0.012479901313781738, -0.00133337895385921, -0.01936355233192444, -0.009024938568472862, 0.001091170241124928, 0.029032191261649132, -0.034444525837898254, 0.02911101095378399, -0.0004039547056891024, 0.021018780767917633, 0.011639149859547615, 0.005589682143181562, 0.012965960428118706, -0.005967363249510527, 0.05759146064519882, 0.01010871957987547, -0.014319044537842274, -0.016946392133831978, -0.020532721653580666, -0.008932981640100479, -0.010745851323008537, 0.017222262918949127, 0.01547507755458355, 0.0254984088242054, 0.042274024337530136, 0.02853299491107464, 0.011146522127091885, 0.02947884052991867, 0.030897608026862144, -0.030556052923202515, -0.03764989227056503, 0.0023054974153637886, 0.013195853680372238, 0.02477588690817356, -0.02109760046005249, -0.013977489434182644, -0.05031370744109154, 0.050628986209630966, -0.005090485792607069, 0.0037571070715785027, -0.024145323783159256, 0.03896356374025345, 0.017471861094236374, -0.0042858608067035675, 0.0002547295589465648, -0.0006441106670536101, -0.03292066603899002, 0.014424138702452183, 0.016342101618647575, -0.01322212629020214, 0.0200729351490736, -0.0021675617899745703, -0.00495911855250597, -0.007264615967869759, -0.03016195073723793, 0.004502616822719574, -0.00814477726817131, 0.0533614307641983, 0.019718242809176445, 0.029084738343954086, -0.013254968449473381, -0.010384591296315193, -0.03165953978896141, -0.020506447181105614, 0.024158461019396782, 0.01100858673453331, 0.03013567626476288, -0.006857377011328936, 0.0071660904213786125, -0.016171324998140335, -0.006292497273534536, 0.03683541342616081, 0.015737812966108322, 0.03016195073723793, -0.012026683427393436, -0.020742909982800484, -0.027613423764705658, 0.034470800310373306, 0.0005143854068592191, 0.0006769525352865458, 0.001419588690623641, 0.010988880880177021, -0.016171324998140335, -0.006870513781905174, 0.005405767820775509, -0.015199205838143826, -0.05333515629172325, -0.017944784834980965, 0.013649070635437965, -0.010194108821451664, 0.009405904449522495, -0.01836515963077545, -0.003464814741164446, -0.03588956966996193, 0.007658718153834343, -0.020125482231378555, -0.02750832960009575, 0.027140500023961067, -0.009281105361878872, -0.003297321265563369, 0.04059252142906189, -0.0030313022434711456, 0.00661106314510107, 0.027140500023961067, 0.02092682383954525, 0.029636479914188385, 0.0035206456668674946, 0.01594799943268299, 0.022450685501098633, -0.03764989227056503, 0.006817967165261507, 0.01484451349824667, -0.003065786324441433, 0.01628955453634262, 0.004088809713721275, 0.012716362252831459, -0.004059251863509417, -0.013182716444134712, -0.007369710132479668, 0.00020402995869517326, -0.001329273683950305, 0.012236871756613255, 0.015330573543906212, 0.01135014183819294, 0.01710403338074684, -0.01857534795999527, 0.003941021393984556, 0.05722362920641899, 0.0006556053413078189, -0.0050937701016664505, -0.02979412116110325, 0.024171598255634308, 0.006745715159922838, -0.03701932728290558, 0.02821771241724491, -0.0037571070715785027, -0.00969491247087717, 0.00420047203078866, 0.0005152064259164035, -0.03567938134074211, 0.0215048398822546, 0.02246382273733616, 0.007093838416039944, -0.0037012759130448103, -0.0032316376455128193, -0.015908589586615562, -0.004397523123770952, -0.02017802931368351, -0.021806985139846802, -0.012092366814613342, 0.002739009913057089, 0.00507734902203083, 0.00531709473580122, -0.01010871957987547, 0.025038622319698334, 0.005629091989248991, -0.026286613196134567, -0.02753460220992565, -0.005277684424072504, 0.047660086303949356, -0.016683656722307205, 0.016920117661356926, -0.01180992741137743, 0.012381375767290592, 0.004190619569271803, 0.009642365388572216, 0.03039841167628765, -0.010266360826790333, -0.004164346028119326, 0.029163558036088943, 0.002330128801986575, -0.020335670560598373, -0.016302691772580147, 0.011455235071480274, -0.025025485083460808, 0.01404317282140255, 0.0012274639448150992, 0.0014877355424687266, -0.017235400155186653, 0.0019540898501873016, -0.006282644812017679, -0.014069446362555027, -0.001832574955187738, -0.020151756703853607, 0.018930040299892426, -0.04046115279197693, -0.0051003387197852135, 0.004972255323082209, -0.01261126808822155, 0.026194656267762184, -0.023370256647467613, -0.036625225096940994, -0.0009220347856171429, -0.0413019023835659, -0.001101022819057107, 0.02426355518400669, -0.040645066648721695, 0.023120658472180367, -0.015041564591228962, -0.02375122159719467, -0.01789223775267601, -0.009872258640825748, 0.030529778450727463, -0.01479196734726429, -0.032605383545160294, -0.0004507543344516307, 0.02787615731358528, -0.006538811139762402, 0.025445861741900444, 0.01656542718410492, 0.02000725269317627, -0.011323868297040462, 0.016197597607970238, -0.0203488077968359, 0.007481372449547052, 0.004653689451515675, -0.025813689455389977, 0.00969491247087717, 0.006942765787243843, 0.00356662436388433, 0.005960794631391764, -0.024158461019396782, 0.011218774132430553, -0.008354965597391129, -0.0007960041984915733, -0.014831377193331718, -0.026536211371421814, -0.012250008061528206, -0.021347198635339737, -0.012939686886966228, -0.000666689476929605, -0.04429708048701286, -0.0033088158816099167, -0.0073040262795984745, -0.004075672943145037, 0.031265437602996826, -0.011185931973159313, 0.004364680964499712, -0.038359273225069046, -0.007776949089020491, 0.010732715018093586, -0.03257910907268524, 0.006184119265526533, 0.0004897540202364326, 0.02011234499514103, 0.00826300773769617, -0.014805103652179241, -0.006955902557820082, 0.005579829216003418, -0.0044730594381690025, -0.013399472460150719, 0.01230255514383316, -0.010424001142382622, -0.006453422363847494, -0.042011287063360214, 0.013951215893030167, 0.0020082788541913033, -0.02375122159719467, 0.03278929740190506, 0.02556409128010273, 0.015330573543906212, 0.002776778070256114, 0.003832643385976553, 0.016171324998140335, 0.009589818306267262, -0.027455782517790794, -0.014778830111026764, -0.01559330802410841, -0.019271595403552055, -0.008538879454135895, 0.009038075804710388, 0.038464367389678955, -0.02853299491107464, 0.007225205656141043, 0.027718517929315567, -0.00824987143278122, -0.018601620569825172, -0.012841161340475082, 0.02453942596912384, -0.011967568658292294, 0.01301850751042366, -9.098217560676858e-05, -0.019757654517889023, 0.0061775511130690575, 0.002688104985281825, -0.0006326160510070622, -0.03286811709403992, 0.004420512355864048, -0.006486264523118734, 0.015396256931126118, -0.010253223590552807, 0.009570113383233547, -0.0561726912856102, -0.016105640679597855, 0.006049467716366053, 0.0012241797521710396, -0.006817967165261507, -0.03998823091387749, -0.002410591347143054, 0.016407785937190056, 0.015514487400650978, -0.003743970301002264, 0.015553898178040981, -0.01667052134871483, 0.0027357256039977074, 0.005349936429411173, -0.0003865074540954083, -0.01632896438241005, 0.017222262918949127, -0.02535390481352806, 0.015764085575938225, -0.019442372024059296, -0.014082582667469978, -0.0074419621378183365, 0.003078922862187028, 0.003773527918383479, -0.04343005642294884, 0.026733262464404106, 0.011146522127091885, -0.005832711700350046, -0.01339290477335453, -0.026286613196134567, -0.019744517281651497, -0.020637815818190575, 0.014516095630824566, -0.011816496029496193, -0.016920117661356926, 0.005405767820775509, -0.0107524199411273, -0.018969450145959854, 0.030240770429372787, 0.01359652355313301, -0.0009819711558520794, 0.0052809687331318855, -0.008959255181252956, 0.002042762702330947, 0.003832643385976553, -0.004867161624133587, -0.009977352805435658, -0.04119681194424629, 0.0026930312160402536, 0.001932742539793253, -0.003914747852832079, 0.010043036192655563, 0.02214854024350643, -0.008322123438119888, 0.007258047815412283, -0.005645513068884611, 0.00821702927350998, -0.0028194724582135677, -0.005589682143181562, 0.006453422363847494, 0.025380177423357964, 0.0019458793103694916, 0.00022188771981745958, -0.021623071283102036, -0.013662207871675491, -0.008959255181252956, 0.007967431098222733, 0.025918783619999886, 0.022411275655031204, -0.0025534534361213446, 0.015304300002753735, -0.0003594129520934075, -0.005533850751817226, 0.01450295839458704, 0.046372685581445694, -0.009465020149946213, 0.019889021292328835, 0.00037562858778983355, 0.005244842730462551, -0.009451882913708687, -0.012223734520375729, -0.005678354762494564, 0.015527624636888504, 0.007737538777291775, -0.036756593734025955, -0.013097328133881092, -0.009898532181978226, -0.013287810608744621, -0.042957134544849396, 0.0073105948977172375, 0.018890628591179848, 0.02716677449643612, 0.016131913289427757, 0.017879100516438484, -0.006653757765889168, 0.018181245774030685, -0.008302418515086174, -0.02716677449643612, 0.0031298277899622917, -0.02566918544471264, -0.0010016763117164373, -0.008781909011304379, 0.0005250590038485825, -0.009721186012029648, 0.008499469608068466, -0.01628955453634262, -0.009497861377894878, -0.007980568334460258, -0.0066274842247366905, -0.023567307740449905, -0.031028974801301956, -0.012913413345813751, -0.006505969446152449, -0.005481304135173559, -0.015015291050076485, 0.004351544659584761, 0.010023331269621849, 0.014305907301604748, 0.023081248626112938, -0.0029705448541790247, -0.00725147919729352, 0.016263281926512718, 0.01192815788090229, -0.02821771241724491, -0.0011371488217264414, 0.012348533608019352, -0.03184345364570618, 0.014713146723806858, 0.008932981640100479, 0.02559036575257778, 0.0014696725411340594, -0.016145050525665283, -0.007461667060852051, -0.010713010095059872, -0.00968177616596222, 0.017235400155186653, 0.0008686668006703258, -0.005343368276953697, 0.04072388634085655, -0.011888748034834862, -0.015540760941803455, -0.01710403338074684, -0.002968902699649334, -0.005277684424072504, -0.00851917453110218, 0.008157914504408836, -0.026365432888269424, -0.0134651567786932, -0.009333652444183826, -0.014660599641501904, -0.007113543804734945, 0.0037571070715785027, 0.03820163384079933, 0.031160341575741768, -0.01577722281217575, -0.034444525837898254, -0.0054123359732329845, -0.0008785193786025047, -0.0050116656348109245, -0.007021586410701275, -0.026877766475081444, -0.002440148964524269, 0.014989018440246582, -0.0030132392421364784, 0.008847593329846859, 0.004023125860840082, -7.733228267170489e-05, 0.00954383984208107, -0.013504566624760628, -0.0031790905632078648, -0.012079230509698391, -0.015908589586615562, -0.03420806676149368, -0.020125482231378555, 0.006345044355839491, -0.01204638835042715, -0.007973999716341496, -0.01761636510491371, 0.009077485650777817, -0.0134651567786932, -0.04138072580099106, 0.009156306274235249, -0.0032398479524999857, 0.00843378622084856, -0.0011125175515189767, 0.048553384840488434, 0.01881180889904499, -0.0054681673645973206, -0.04434962570667267, -0.014148266986012459, 0.01741931401193142, -0.008184188045561314, -0.004354828502982855, 0.005927952937781811, 0.004404091276228428, 0.003228353336453438, 0.022345591336488724, 0.025064896792173386, -0.017984194681048393, -0.020335670560598373, -0.008604563772678375, -0.021872669458389282, 0.00342540442943573, 0.011310731060802937, -0.01536998338997364, -0.02573486976325512, -0.0035107932053506374, 0.015304300002753735, 0.020939961075782776, -0.04138072580099106, 0.0039016110822558403, 0.007008449640125036, -0.008335260674357414, 0.015934862196445465, -0.011258183978497982, -0.002351476112380624, 0.007717833388596773, -0.02590564638376236, 0.012630973942577839, -0.025577228516340256, 0.0030838493257761, 0.00041237042751163244, 0.004157777410000563, -0.005169306416064501, 0.018115561455488205, 0.02457883581519127, -0.012098935432732105, -0.04082898050546646, -0.005372925661504269, 0.01956060342490673, -0.009018370881676674, -0.004729225765913725, -0.007947726175189018, -0.023816905915737152, -0.01643405854701996, -0.0041052307933568954, 0.038149088621139526, -0.018903765827417374, 0.021150147542357445, -0.004817898850888014, -0.031685810536146164, 0.010082446038722992, -0.005070780869573355, -0.009294241666793823, 0.041669733822345734, 0.011678559705615044, -0.020493311807513237, -0.007474803831428289, -0.01887749321758747, 0.04038233309984207, -0.00580972246825695, 0.010706441476941109, -0.006804830394685268, 0.0008173513924703002, -0.014095719903707504, -0.00920228473842144, 0.023843178525567055, -0.016131913289427757, -0.005152885336428881, -0.02740323543548584, -0.039042383432388306, 0.0015821558190509677, 0.006955902557820082, -0.028138892725110054, 0.027245594188570976, -0.007934589870274067, -0.010056172497570515, 0.026260338723659515, 0.024999212473630905, -0.010115288197994232, 0.0037078442983329296, 0.0077046966180205345, -0.020322533324360847, 0.007809790782630444, 0.00019992473244201392, -0.015632718801498413, -0.002939345082268119, 0.00490000331774354, 0.00713324872776866, -0.017393041402101517, -0.0367303192615509, 0.00926796905696392, -0.008788477629423141, -0.000497553963214159, 0.0004068283597007394, -0.00559953460469842, 0.006285929121077061, -0.030661147087812424, 0.02945256605744362, -0.007849200628697872, 0.014713146723806858, 0.02365926466882229, 0.020979370921850204, -3.240566366002895e-05, 0.009813142940402031, -0.014069446362555027, -0.005563408602029085, 0.00420047203078866, 0.002182340482249856, 0.010456843301653862, 0.013320651836693287, 0.007501077372580767, -0.013990625739097595, 5.957715984550305e-05, -0.002459854120388627, -0.0002132667286787182, 0.00195901608094573, 0.0016798604046925902, 0.013622797094285488, -0.010903492569923401, -0.009123464114964008, 0.01908767968416214, -0.043508876115083694, -0.00490000331774354, 0.00685080885887146, 0.003106838557869196, -0.006558516528457403, -0.011744244024157524, -0.0001273647794732824, -0.018312612548470497, -0.013727891258895397, 0.007527350913733244, 0.031055249273777008, 0.019166501238942146, -0.025577228516340256, -0.028296533972024918, -0.009898532181978226, -0.011396120302379131, 0.008223597891628742, -0.005031370557844639, -0.010371454991400242, 0.02331770956516266, 0.011002018116414547, -0.00923512689769268, 0.006604494992643595, 0.0036782866809517145, 0.0056323762983083725, 0.00029311346588656306, -0.016617974266409874, 0.006427148822695017, -0.0024664225056767464, 0.02474961429834366, -0.00679169362410903, 0.015685265883803368, -0.009865690022706985, 0.005740754306316376, -0.001443399116396904, 0.012506174854934216, 0.0001752933458192274, -0.024933528155088425, 0.015094111673533916, -0.012499606236815453, 0.0008103725267574191, -0.025419587269425392, -0.0019458793103694916, 0.004436933435499668, 0.0189169030636549, -0.0076784235425293446, -0.01782655343413353, -0.025708595290780067, -0.035731926560401917, 0.0070347231812775135, -0.008446922525763512, 0.02109760046005249, -0.008676815778017044, 0.007980568334460258, 0.002904861234128475, -0.02195148915052414, 0.006486264523118734, -0.018930040299892426, 0.005635660607367754, -0.015172932296991348, -0.008013410493731499, 0.027665970847010612, -0.010469980537891388, 0.011895316652953625, -0.032841846346855164, 0.01177708525210619, 0.01295282319188118, -0.019468646496534348, -0.0009934657718986273, -0.006883650552481413, -0.032158736139535904, -0.007087270263582468, -0.017747733741998672, -0.009583250619471073, -0.007540487684309483, 0.009176011197268963, -0.009898532181978226, 0.010686736553907394, 0.008085662499070168, -0.0006707946886308491, 0.02842790074646473, 0.03360377624630928, -0.011547192931175232, -0.005087201949208975, 0.0019031849224120378, 0.0008005199488252401, -0.0510493628680706, -0.0015911874361336231, -0.026812082156538963, -0.006131572648882866, -0.008420648984611034, 0.019652560353279114, -0.019783927127718925, 0.0258005540817976, 0.01301850751042366, 0.0229367446154356, -0.014713146723806858, -0.03920002654194832, -0.007290889509022236, -0.009635797701776028, 0.0020378364715725183, -0.022989291697740555, -0.021491702646017075, 0.011671992018818855, 0.004785056691616774, 0.021150147542357445, 0.008151345886290073, -0.0326579287648201, -0.01184276957064867, -0.004778488539159298, 0.0010419075842946768, -0.009839416481554508, -0.04850083589553833, 0.00561595568433404, -0.003635592292994261, -0.009734323248267174, 0.00945845153182745, -0.014305907301604748, -0.005977215711027384, 0.024920392781496048, -0.009852553717792034, 0.017090896144509315, 0.03200109302997589, -0.006141425110399723, 0.010693304240703583, 0.026050152257084846, 0.008348396979272366, -0.02729814127087593, -0.02648366428911686, -0.0067588514648377895, -0.006174266804009676, -0.0050445073284208775, 0.004512469284236431, -0.018312612548470497, -0.008466627448797226, -0.03197481855750084, 0.011343573220074177, 0.005586397834122181, 0.015724675729870796, -0.014594916254281998, -0.009898532181978226, 0.0031396804843097925, -0.003954158164560795, 0.026457389816641808, 0.019416099414229393, 0.008650542236864567, -0.012860866263508797, 0.03397160395979881, 0.05010351911187172, -0.00886072963476181, 0.009642365388572216, 0.008131640963256359, -0.028033798560500145, 0.017498135566711426, 0.01238794345408678, -0.01588231697678566, -0.007402551826089621, 0.014253360219299793, 0.03486490249633789, -0.01772145926952362, -0.004496048670262098, 0.00817761942744255, 0.00032636584364809096, -0.020742909982800484, 0.011080838739871979, 0.0315018966794014, 0.015435666777193546, -0.012690088711678982, -0.013964352197945118, -0.01165885478258133, 0.0017209126381203532, 0.006216961424797773, -0.0019885736983269453, -0.0023547601886093616, 0.012204029597342014, -0.01581663265824318, -0.006085593719035387, 0.032500289380550385, -0.004896719008684158, 0.014476684853434563, -0.0036782866809517145, 0.01199384219944477, 0.018023604527115822, 0.008420648984611034, -0.010896923951804638, -0.013491430319845676, -0.009517566300928593, 0.024184733629226685, -0.002389244269579649, -0.00886072963476181, -0.013951215893030167, 0.031948547810316086, 0.009241695515811443, -0.035022541880607605, 0.0005985426250845194, 0.01663110964000225, 0.0009220347856171429, -0.0039016110822558403, -0.01112681720405817, -0.0011880537495017052, 0.00018237487529404461, 0.006936197634786367, 0.006207108497619629, -0.001643734285607934, 0.005202148109674454, -0.017800280824303627, -0.013846121728420258, 0.01919277384877205, 0.0012200744822621346, -0.016920117661356926, 0.005083917640149593, -0.004709520377218723, -0.003297321265563369, 0.00286709307692945, 0.0011330436682328582, -0.009530703537166119, -0.020742909982800484, -0.015790358185768127, 0.006223529577255249, -0.0177871435880661, 0.01727481000125408, 0.006069173105061054, 0.01878553442656994, 0.0007689096964895725, 0.0189169030636549, 0.007724402006715536, -0.030293317511677742, -0.007717833388596773, -0.0038983270060271025, -0.009780301712453365, -0.008801614865660667, -0.018194381147623062, -0.007954294793307781, 0.05136464536190033, 0.016302691772580147, 0.0019163216929882765, 0.009386199526488781, 0.004988676402717829, 0.004390954505652189, -0.005645513068884611, 0.015383119694888592, 0.013412609696388245, 0.008703089319169521, 0.003523929975926876, -0.0030805650167167187, -0.0154882138594985, -0.020086072385311127, -0.024421196430921555, 0.007967431098222733, -0.0052809687331318855, 0.008164482191205025, -0.004670110531151295, 0.015015291050076485, 0.009642365388572216, 0.006190687883645296, -0.03305203095078468, 0.03073996677994728, 0.011599740013480186, -0.010962608270347118, -0.006328623276203871, 0.003435256890952587, 0.013570250011980534, 0.02559036575257778, -0.007041291333734989, -0.013885531574487686, -0.00421689311042428, 3.912798092642333e-06, 0.01513352245092392, 0.009983920492231846, -0.028927097097039223, 0.012657246552407742, 0.0041971877217292786, 0.030293317511677742, -0.010082446038722992, -0.009123464114964008, 0.0243686493486166, -0.0015739453956484795, -0.01703834906220436, 0.010469980537891388, 0.020335670560598373, -0.0009671923471614718, -0.0006978891906328499, -0.006565084680914879, -0.033419862389564514, -0.004673394374549389, -0.003622455522418022, 0.004798193462193012, -0.000945845153182745, -0.002560021821409464, 0.02471020445227623, -0.024421196430921555, 0.025143716484308243, -0.012814887799322605, 0.004755499307066202, 0.0029623343143612146, 0.001771817565895617, -0.030240770429372787, 0.009990489110350609, -0.001260305754840374, 0.00983284879475832, 0.004706236533820629, 0.0151860686019063, 0.0212026946246624, -0.009241695515811443, 0.013491430319845676, -0.01938982494175434, -0.0074419621378183365, -0.013570250011980534, 0.017353631556034088, -0.007790085393935442, -0.004397523123770952, 0.000799288391135633, 0.018719851970672607, -0.016197597607970238, -0.006739146541804075, -0.007041291333734989, -0.0189169030636549, 0.015015291050076485, -0.016210734844207764, 0.00980000663548708, 0.002927850466221571, 0.01793164759874344, -0.013846121728420258, -0.009648934006690979, -0.0012373165227472782, -0.0049065714702010155, 0.029978036880493164, 0.0031807327177375555, -0.005533850751817226, -0.01663110964000225, 0.0121843246743083, 0.019652560353279114, -0.01598740927875042, 0.007120111957192421, 0.003133112099021673, -0.013517702929675579, 0.021189557388424873, -0.010128424502909184, 0.008854161016643047, 0.0041971877217292786, 0.013767301104962826, -0.004535458981990814, 0.01945550926029682, 0.005320379044860601, -0.0014483253471553326, -0.016342101618647575, 0.00794115848839283, -0.024224145337939262, 0.012052956968545914, 0.02174130082130432, 0.0031134069431573153, -0.024552563205361366, -0.0016897128662094474, -0.0017865963745862246, -0.0036979918368160725, 0.005425472743809223, 0.0054123359732329845, -0.0068967873230576515, -0.005622523836791515, -0.01755068264901638, -0.008768772706389427, -0.0037998014595359564, -0.02252950519323349, -0.0025009065866470337, 0.01087065041065216, -0.0011215490521863103, -0.009721186012029648, 0.012650678865611553, -0.00753391906619072, 0.0009335294598713517, -0.01878553442656994, 0.015724675729870796, -0.009497861377894878, -0.008847593329846859, 0.040776435285806656, 0.0027225888334214687, 0.013885531574487686, 0.0021757723297923803, 0.004670110531151295, -0.01006930973380804, -0.04138072580099106, 0.014437275007367134, 0.008131640963256359, 0.02763969637453556, -0.007842632941901684, 0.008913276717066765, -0.028138892725110054, 0.005481304135173559, -0.01230255514383316, -0.0037308335304260254, 0.01123191136866808, 0.0014680305030196905, -0.009189148433506489, 0.0027209469117224216, -0.008394375443458557, -0.003174164332449436, -0.007809790782630444, -0.006955902557820082, 0.007980568334460258, 0.016263281926512718, 0.01491019781678915, 0.0050445073284208775, -0.011192500591278076, -0.00656836898997426, 0.025879373773932457, -0.00030111867818050086, -0.029557660222053528, 0.006693168077617884, 0.001852279994636774, 2.341264371352736e-05, 0.012913413345813751, -0.015212342143058777, 0.004765351768583059, 0.006548664066940546, -0.0005685744108632207, 0.012959391809999943, -0.003527214052155614, -0.002119941171258688, 0.015737812966108322, 0.017169715836644173, -0.027376960963010788, -0.005941089708358049, 0.008328692056238651, 0.007724402006715536, 0.019928431138396263, 0.007928021252155304, 0.008295849896967411, -0.0041052307933568954, 0.018141835927963257, 0.00461756344884634, 0.027797337621450424, 0.0028326092287898064, 0.010194108821451664, -0.0038983270060271025, 0.008236735127866268, 0.0011494645150378346, 0.00870965700596571, 0.006726009771227837, -0.010371454991400242, -0.0007159521919675171, -0.03336731344461441, 0.004361397121101618, 0.0073105948977172375, -0.043955523520708084, -0.0009507713839411736, 0.008670247159898281, 0.001557524548843503, -0.0005168485222384334, 0.00448291189968586, 0.012473332695662975, -0.02641797997057438, 0.03578447550535202, -0.00044213334331288934, 0.014594916254281998, 0.015856042504310608, 0.005970647558569908, -0.015658991411328316, 0.0021872669458389282, 0.017458723857998848, -0.0019540898501873016, 0.020782319828867912, 0.0009376346715725958, -0.008315554820001125, 0.03775498643517494, -0.017327357083559036, -0.011015154421329498, 0.00039984946488402784, 0.033314768224954605, 0.00762587646022439, 0.024316102266311646, -0.0029935340862721205, 0.013543976470828056, 0.001559166586957872, -0.005070780869573355, 0.010128424502909184, -0.006890219170600176, -0.007750675547868013, 0.005021518096327782, -0.001095275511033833, -0.0002229140227427706, -0.010502821765840054, -0.019481781870126724, -1.6343949027941562e-05, 0.016368376091122627, -0.006279360968619585, -0.013320651836693287, 0.009859121404588223, 0.015094111673533916, 0.001244705868884921, 0.0067325783893466, 0.007474803831428289, 0.005993636790663004, 0.005070780869573355, -0.01150121446698904, 0.00607574125751853, 0.007317163050174713, 0.0057341861538589, -0.0005078170215710998, 0.014476684853434563, -0.024342374876141548, 0.005973931401968002, 0.0027537886053323746, -0.019928431138396263, -0.0024467173498123884, -0.019678832963109016, 0.02021743915975094, 0.012552153319120407, -0.005080633331090212, 0.007455098908394575, 0.024618247523903847, -0.01332722045481205, 0.010213813744485378, 0.016026820987462997, -0.007612739689648151, 0.0280863456428051, -0.022319316864013672, -0.030923880636692047, -0.0002493927604518831, -0.029978036880493164, -0.0123353973031044, 0.012427354231476784, -0.003428688505664468, -0.0023022133391350508, 0.013090759515762329, -0.031239163130521774, 0.010207245126366615, 0.008473196066915989, -0.003573192749172449, -0.0044993325136601925, -0.005133180413395166, 0.008354965597391129, 0.006844240240752697, -0.013182716444134712, 0.01180992741137743, -0.0019540898501873016, -0.02351476065814495, -0.023396531119942665, 0.01737990416586399, 0.017340494319796562, 0.004328554961830378, -0.018903765827417374, -0.002986965700984001, 0.027954978868365288, 0.006594642531126738, -0.001970510696992278, -0.018719851970672607, 0.026299748569726944, -0.015172932296991348, -0.008440353907644749, 0.004978823475539684, 0.01902199722826481, -0.001419588690623641, 0.017905373126268387, 0.008565152995288372, 0.009228558279573917, 0.01010871957987547, 0.006811398547142744, 0.005872122012078762, 0.011455235071480274, 0.009872258640825748, -0.006561800371855497, 0.02310752123594284, -0.008716225624084473, -0.004052683711051941, 0.007179227191954851, -0.011343573220074177, 0.01184276957064867, -0.010456843301653862, 0.009734323248267174, -0.012933118268847466, -0.0017980909906327724, -0.013754164800047874, 0.01536998338997364, -0.0028326092287898064, 0.005386062432080507, -0.0022989290300756693, -0.008243302814662457, 0.006739146541804075, 0.04035605862736702, 0.03688795864582062, -0.011987273581326008, 0.018654167652130127, 0.018260065466165543, -0.002635558135807514, -0.011731106787919998, 0.005386062432080507, -0.008190755732357502, -0.005898395553231239, -0.028848277404904366, 0.005146317183971405, 0.010351749137043953, -0.024224145337939262, -0.007540487684309483, -0.022043446078896523, 0.02682521939277649, -0.0026569052133709192, -0.0010016763117164373, 0.011323868297040462, 0.0056389449164271355, -0.013261537067592144, 0.005320379044860601, -0.02937374636530876, 0.023357119411230087, 0.012499606236815453, -0.00713324872776866, 0.015304300002753735, -0.012860866263508797, 0.007100407034158707, 0.010936334729194641, 0.0014163046143949032, 0.014778830111026764, -0.0025830110535025597, 0.0004033388977404684, 0.04061879217624664, -0.01912708953022957, -0.0059903524816036224, 0.0017439019866287708, 0.01793164759874344, 0.02143915556371212, 0.010207245126366615, 0.00011504908616188914, 0.009497861377894878, 0.035127636045217514, -0.0001863774668890983, 0.03142307698726654, 0.00799370463937521, -0.008538879454135895, -0.0008038041414692998, 0.0033088158816099167, -0.007619307842105627, -0.007560192607343197, -0.008919845335185528, -0.011901884339749813, 0.01925845816731453, 0.01295282319188118, -0.015514487400650978, 0.012946255505084991, 0.010640758089721203, -0.027902431786060333, 0.04445471987128258, 0.011291026137769222, -0.001394136343151331, 0.009491292759776115, 0.014200814068317413, -0.0009639081545174122, -0.012348533608019352, -0.0018194381846114993, 0.02509116940200329, 0.0027505045291036367, 0.02143915556371212, 0.004121651407331228, -0.006023194175213575, 0.010272929444909096, -0.000857172126416117, -4.536279811873101e-05, 0.008190755732357502, -0.0056389449164271355, 0.005405767820775509, 0.030897608026862144, 0.024460606276988983, 0.013767301104962826, -0.0023054974153637886, -0.006410728208720684, 0.00044254385284148157, 0.0034516779705882072, -0.01456864271312952, 0.02225363440811634, -0.0025616639759391546, -0.011915021575987339, 0.016709931194782257, -0.035022541880607605, -0.007501077372580767, 0.022582052275538445, -0.014463548548519611, -0.02222735993564129, 0.00862426869571209, 0.002817830303683877, -0.0041971877217292786, 0.032158736139535904, -0.010023331269621849, 0.025445861741900444, -0.0009179295739158988, -0.006269508041441441, -0.002280866028741002, 0.03649385645985603, -0.0032710477244108915, 0.0033285210374742746, -0.0177871435880661, -0.022279907017946243, -0.015895452350378036, 0.020033525303006172, 0.014608052559196949, -0.007021586410701275, 0.003049365244805813, 0.008499469608068466, -0.0009113611886277795, 0.005297389347106218, -0.0006941945175640285, -0.009905100800096989, 0.010253223590552807, 0.008834456093609333, -0.006473127752542496, -0.006542095448821783, -0.017918510362505913, 0.010877219028770924, 0.007691559847444296, -0.019232183694839478, -0.016749341040849686, 0.017511270940303802, 0.0017110600601881742, -0.010010194033384323, 0.007816359400749207, -0.005796585697680712, 0.004758783150464296, -0.0033827100414782763, 0.004190619569271803, 0.0127492044121027, 0.024447469040751457, -0.0021577090956270695, -0.013951215893030167, 0.013123600743710995, 0.01850966364145279, 0.013353493995964527, 0.01904826983809471, -0.009090622887015343, 0.012355102226138115, 0.004528890363872051, 0.001266053062863648, 0.018154971301555634, -0.009635797701776028, 0.023698674514889717, -0.007369710132479668, 0.0254984088242054, 0.0052317059598863125, -0.009064349345862865, -0.007520782295614481, 0.020151756703853607, 0.018181245774030685, -0.00799370463937521, 0.0003571550769265741, 0.01226971298456192, 0.018824946135282516, -0.008407512679696083, 0.027797337621450424, -0.0017192706000059843, -0.003615887137129903, 0.002973829163238406, -0.011717970483005047, 0.0186410304158926, 0.0037472546100616455, 0.02212226577103138, 0.000996749964542687, 0.020151756703853607, 0.003118333173915744, 0.013182716444134712, -0.012775477953255177, -0.01823379285633564, -0.011356709524989128, 0.016617974266409874, 0.026982860639691353, -0.005730901844799519, -0.01881180889904499, -0.015540760941803455, -0.016591699793934822, 0.01795792020857334, -0.0013259894913062453, -0.013714754022657871, -0.004220176953822374, -0.00685080885887146, 0.0060396152548491955, -0.010903492569923401, 0.03518018499016762, -0.013287810608744621, -0.020467037335038185, -0.0004585542483255267, 0.0025731585919857025, 0.005714481230825186, 0.003914747852832079, 0.01609250344336033, -0.017800280824303627, 0.01506783813238144, 0.014003762975335121, 0.01392494235187769, -0.013635934330523014, 0.009241695515811443, 0.015908589586615562, 0.009149737656116486, 0.011238479055464268, -0.026536211371421814, -0.010956039652228355, -0.01264411024749279, 0.004095377866178751, 0.011310731060802937, 0.009668638929724693, -0.012828025035560131, -0.013110464438796043, 0.021872669458389282, 4.605555659509264e-05, 0.019547466188669205, -0.005622523836791515, 0.004000136628746986, 0.0012496322160586715, 0.035364098846912384, -0.012158051133155823, 0.013872395269572735, -0.017852826043963432, -0.006105299107730389, -0.014240223914384842, -0.004929560702294111, 0.0071660904213786125, 0.008749067783355713, 0.01810242421925068, -0.006469843443483114, 0.0029097874648869038, -0.007514214143157005, 0.00011812800948973745, -0.010739283636212349, 0.012552153319120407, 0.018667304888367653, 0.015278026461601257, 0.014529231935739517, 0.008919845335185528, -0.03336731344461441, 0.023882590234279633, -0.007402551826089621, -0.008716225624084473, -0.009313947521150112, -0.0051496014930307865, 0.00641729636117816, -0.0013202421832829714, -0.019481781870126724, -0.01898258551955223, -0.03323594853281975, -0.020716635510325432, 0.018141835927963257, 0.0005981320864520967, -0.0013341999147087336, 0.0010074236197397113, 0.004778488539159298, -0.008269576355814934, -0.021412882953882217, 0.012604700401425362, -0.019508056342601776, 0.007060996722429991, 0.013399472460150719, 0.019994115456938744, 0.008052820339798927, 0.005730901844799519, -0.010837809182703495, 0.004650405142456293, -0.0018769113812595606, 0.01727481000125408, 0.004762067459523678, -0.013570250011980534, -0.012440490536391735, 0.015422530472278595, -0.002228319179266691, -0.01833888702094555, 0.0008247408550232649, 0.0007290889625437558, 0.00799370463937521, 0.013767301104962826, 0.0041052307933568954, -0.008341828361153603, -0.007382846903055906, 0.024513153359293938, -0.021964626386761665, 0.014805103652179241, -0.0315018966794014, -0.03875337541103363, -0.006056036334484816, -0.0030313022434711456, -0.0028605246916413307, 0.0005402483511716127, 0.007606171071529388, -0.008013410493731499, 0.019823336973786354, 0.0157509483397007, 0.001862132572568953, 0.016815025359392166, 0.002768567530438304, 0.005747322924435139, 0.0005932057974860072, -0.023843178525567055, 0.012440490536391735, -0.012466764077544212, 0.0014992302749305964, -0.013235263526439667, -0.009655502624809742, -0.012039820663630962, -0.03738715499639511, 0.004055968020111322, -0.01680188812315464, -0.007540487684309483, -0.01833888702094555, -0.019810201600193977, 0.023265162482857704, -0.004725941456854343, -0.004233313724398613, 0.014030036516487598, 0.014647462405264378, 0.0030247338581830263, 0.007987136952579021, -0.0026848209090530872, 0.0001180253821075894, 0.0053696418181061745, 0.013990625739097595, -0.011074270121753216, -0.009471587836742401, 0.005947658326476812, -0.021833257749676704, -0.00016831445100251585, -0.052468132227659225, -0.0008083198918029666, 0.0016207450535148382, -0.024618247523903847, -0.01707775890827179, -1.712650919216685e-05, 0.016407785937190056, -0.0019376688869670033, 0.00972775463014841, -0.014752556569874287, 0.010010194033384323, -0.01184276957064867, -0.028480447828769684, -0.013977489434182644, -0.006466559134423733, 0.008105367422103882, 0.006863945629447699, -0.012210598215460777, 0.004968971014022827, 0.0017997331451624632, 0.019179636612534523, -0.02911101095378399, -0.001553419278934598, -0.006341760046780109, -0.019416099414229393, 0.005169306416064501, -0.028007525950670242, 0.008223597891628742, 0.002798125147819519, -0.017642639577388763, -0.0022857924923300743, 0.008466627448797226, 0.0018276487244293094, 0.0033137421123683453, -0.0007167732692323625, 0.008427217602729797, -0.022621462121605873, 0.023646127432584763, -0.020256849005818367, -0.008243302814662457, 0.007652150001376867, 0.02276596613228321, 0.012814887799322605, -0.01169169694185257, 0.00886072963476181, 0.00926796905696392, 0.012322260066866875, 0.017195990309119225, -0.005238274112343788, -0.013412609696388245, 0.016749341040849686, 0.01919277384877205, -0.0032119324896484613, -0.027350688353180885, -0.004312134347856045, -0.0055437032133340836, -0.010312339290976524, 0.01652601547539234, -0.02024371363222599, 0.013491430319845676, -0.012933118268847466, -0.0012225377140566707, -0.03738715499639511, -0.002711094217374921, 0.017130305990576744, 0.025826826691627502, -0.002696315525099635, 0.0036881391424685717, -0.00013013581337872893, -0.009668638929724693, -0.005540419369935989, -0.008381239138543606, -0.010489685460925102, 0.027797337621450424, -0.016473470255732536, 0.010607915930449963, -0.003743970301002264, 0.006466559134423733, -0.006532242987304926, -0.00045157535350881517, 0.0022578767966479063, 0.014870787039399147, 0.010089014656841755, -0.008873866870999336, 0.008407512679696083, -0.015737812966108322, 0.00012048851931467652, -0.017813416197896004, 0.006102014798671007, 0.0008776983013376594, 0.006371317896991968, -0.00817761942744255, 0.006863945629447699, -0.01381984818726778, -0.017471861094236374, 0.01215148251503706, -0.025169989094138145, 0.01237480714917183, 0.012552153319120407, 0.0024040229618549347, 0.02289733476936817, -0.01029263436794281, 0.023843178525567055, -0.029294924810528755, 0.04090780019760132, -0.00378338061273098, -0.008295849896967411, 0.019994115456938744, 0.006663610227406025, 0.004292428959161043, -0.02477588690817356, 0.013675344176590443, -0.00897896010428667, -0.029899215325713158, -0.003615887137129903, 0.011947862803936005, 0.0051496014930307865, 0.015317436307668686, -0.0013112106826156378, 0.009208853356540203, -0.005343368276953697, 0.004817898850888014, 0.017668912187218666, 0.0015025143511593342, -0.010535663925111294, 0.0020164891611784697, -0.0038195066154003143, -0.010345181450247765, -0.002103520091623068, 0.013635934330523014, 0.004650405142456293, 0.014397865161299706, 0.009530703537166119, -0.01960001327097416, 0.0018276487244293094, 0.0021445725578814745, -0.008630836382508278, -0.010003626346588135, -0.002817830303683877, -0.0017898805672302842, 0.022687146440148354, -0.014608052559196949, 0.02603701502084732, 0.03694050759077072, 0.02423728071153164, -0.026089562103152275, -0.009215421974658966, -0.008689952082931995, 0.004190619569271803, -0.016315829008817673, -0.011895316652953625, 0.01759009249508381, -0.02344907633960247, -0.011652286164462566, 0.019245320931077003, -0.004801477771252394, -0.017090896144509315, 0.006486264523118734, 0.01071957778185606, 0.006463275291025639, -0.012755772098898888, 0.0014409360010176897, -0.023252025246620178, 0.0008604563190601766, -0.002540316665545106, -0.008039684034883976, 0.0065453797578811646, -0.01885121874511242, 0.01677561365067959, -0.016578562557697296, -0.005520713981240988, -0.0066833156161010265, 0.01359652355313301, -0.019928431138396263, -0.015094111673533916, -0.03084506094455719, 0.04256303235888481, 0.0008017515647225082, 0.006949334405362606, 0.008814751170575619, -0.012893708422780037, 0.00300831301137805, -0.004413943737745285, 0.004584721755236387, 0.01782655343413353, -0.0031347540207207203, -0.022043446078896523, 0.017235400155186653, -0.014989018440246582, -0.007455098908394575, 0.008420648984611034, -0.009491292759776115, -0.0022644451819360256, -0.012328828684985638, 0.007507645525038242, -0.010338612832129002, -0.00851917453110218, 0.006272792350500822, 0.003904895391315222, -0.015146658755838871, -0.0009934657718986273, -0.013977489434182644, 0.011980704963207245, 0.016709931194782257, 0.0060166260227561, -0.01663110964000225, -0.01238794345408678, 0.01697266474366188, 0.030661147087812424, 0.007671854924410582, 0.010397728532552719, 0.007895179092884064, 0.007487940602004528, 0.01332722045481205, 0.005343368276953697, 0.019481781870126724, 0.005796585697680712, 0.005448461975902319, -0.024013957008719444, -0.020795457065105438, -0.009195716120302677, -0.0016330607468262315, -0.006105299107730389, 0.0006613526493310928, -0.006082309875637293, -0.016250144690275192, 0.013504566624760628, -0.04279949143528938, -0.013832985423505306, -0.0015501350862905383, 0.005665218457579613, -0.00015846190217416734, 0.009556977078318596, 0.0012562006013467908, 0.009221989661455154, 0.009090622887015343, -0.011717970483005047, -0.00027648729155771434, -0.025682322680950165, -0.009714617393910885, -0.007468235678970814, -0.010522526688873768, 0.02535390481352806, 0.0021971194073557854, 0.01123191136866808, -0.010988880880177021, -0.014647462405264378, -0.026155244559049606, 0.01204638835042715, 0.00491642439737916, -0.010607915930449963, -0.003454962046816945, -0.005366357509046793, -0.012263145297765732, -0.004233313724398613, -0.015514487400650978, -0.016998939216136932, 0.002758715068921447, -0.03299948573112488, 0.01085751410573721, 0.01710403338074684, 0.023935137316584587, -0.005691491533070803, 0.003947589546442032, -0.002857240615412593, -0.018352022394537926, -0.012630973942577839, 0.007973999716341496, -0.01347829308360815, 0.0203488077968359, 0.006542095448821783, -0.00017580650455784053, 0.011080838739871979, -0.012341964989900589, -0.018943175673484802, 0.006085593719035387, 0.01925845816731453, -0.011113679967820644, -0.03134425729513168, 0.019245320931077003, 0.009412473067641258, -0.02631288580596447, -0.01025979220867157, 0.028138892725110054, -0.01592172682285309, 0.0016864287899807096, -0.0036323079839348793, -0.0030739966314285994, -0.007507645525038242, 0.008492900989949703, 0.008473196066915989, -0.009983920492231846, -0.007323731202632189, 0.0001662618451518938, 0.0067095886915922165, 0.038595736026763916, 0.023370256647467613, -0.020467037335038185, -0.042484208941459656, -0.018627895042300224, 0.026904039084911346, 0.001498409197665751, 0.0003990284167230129, 0.013452019542455673, 0.007750675547868013, 0.007185795810073614, 0.021636206656694412, -0.011139953508973122, 0.007461667060852051, 0.018864355981349945, -0.01793164759874344, 0.0021182990167289972, -0.003990284167230129, 0.002898292848840356, -0.002817830303683877, -0.018089288845658302, -0.018049877136945724, 0.026601893827319145, 0.008085662499070168, -0.003734117839485407, -0.01313673797994852, 0.004489480052143335, 0.019810201600193977, -0.004019842017441988, 0.021176422014832497, 0.0016314185922965407, -0.014476684853434563, -0.01776086911559105, -0.01643405854701996, -0.005120043642818928, 0.01336006261408329, -0.013425746001303196, 0.007100407034158707, -0.0280863456428051, -0.011080838739871979, -0.004870445467531681, 0.02017802931368351, 0.002670041983947158, 0.005464883055537939, 0.011179364286363125, 0.004624131601303816, 0.012709793634712696, 0.020664088428020477, -0.008460058830678463, -0.012979096733033657, -0.00466025760397315, 0.021005643531680107, 0.012276281602680683, -0.012814887799322605, -0.0037998014595359564, -0.03134425729513168, 0.004315418191254139, -0.00300831301137805, 0.012965960428118706, -0.013649070635437965, -0.020059797912836075, 0.0034483936615288258, -0.0035633400548249483, 0.02160993404686451, 0.00561595568433404, -0.004164346028119326, 0.034102972596883774, -0.0008506037993356586, -0.03796517103910446, 0.028165165334939957, 0.008098798803985119, 0.004456638358533382, 0.0007364783668890595, -0.005872122012078762, -0.00024302965903189033, -0.012578426860272884, -0.038700830191373825, -0.015107248909771442, -0.006890219170600176, 0.025721732527017593, 0.01912708953022957, -0.012158051133155823, -0.008387806825339794, 0.009977352805435658, 0.02214854024350643, 0.019757654517889023, 0.018089288845658302, 0.004220176953822374, 0.010896923951804638, 0.005586397834122181, 0.0008768772822804749, 0.00870965700596571, -0.013675344176590443, -0.0005874584894627333, 0.017944784834980965, 0.016815025359392166, -0.018154971301555634, 0.007205500733107328, -0.009550408460199833, 0.01649974286556244, 0.01237480714917183, -0.009024938568472862, 0.012696657329797745, 0.0327104777097702, 0.022030308842658997, -0.0067325783893466, 0.0011913379421457648, -0.012512742541730404, -0.020742909982800484, -0.01200040988624096, 0.010417433455586433, -0.012309123761951923, 0.019994115456938744, 0.0019146795384585857, -0.004545311443507671, -0.016512880101799965, -0.0035797611344605684, -0.0030115970876067877, 0.0006855734973214567, 0.033656321465969086, -0.011442098766565323, 0.006098730489611626, -0.0015222195070236921, -0.008716225624084473, 0.0055437032133340836, -0.0037899489980190992, -0.028874550014734268, 0.008657109923660755, 0.0016232081688940525, -0.002448359504342079, 0.009635797701776028, 0.0192190483212471, -0.0032135744113475084, 0.011080838739871979, 0.007540487684309483, -0.008098798803985119, -0.016828160732984543, -0.0020345523953437805, 0.009517566300928593, 0.016709931194782257, -0.008565152995288372, -0.00972775463014841, -0.028296533972024918, -0.027140500023961067, 0.001911395345814526, 0.014805103652179241, 0.01502842828631401, -0.0014655672712251544, 0.01230255514383316, -0.036047209054231644, 0.0071726590394973755, -3.610037310863845e-05, -0.004361397121101618, -0.007822927087545395, 0.008565152995288372, -0.009688343852758408, 0.007422256749123335, 0.026365432888269424, 0.015107248909771442, -0.0013383051846176386, 0.005865553393959999, 0.007409119978547096, 0.0042300294153392315, 0.014200814068317413, 0.00414135679602623, 0.012814887799322605, 0.014016899280250072, 0.005586397834122181, 0.01199384219944477, -0.0008744141086935997, -0.005740754306316376, 0.0026322738267481327, -0.0066340528428554535, 0.014621189795434475, -0.0006634052842855453, 0.009642365388572216, -0.011185931973159313, -0.019140226766467094, -0.017353631556034088, 0.003891758620738983, -0.021754438057541847, -0.010424001142382622, -0.035837020725011826, -0.00567507091909647, -0.022385001182556152, 0.02842790074646473, 0.008565152995288372, -0.0022233929485082626, 0.031265437602996826, 0.010647325776517391, 0.0024565700441598892, 0.014476684853434563, 0.002794841071590781, 0.001911395345814526, -0.0024549278896301985, -0.008670247159898281, -0.023291436955332756, -0.01680188812315464, -0.004111798945814371, -0.008565152995288372, -0.023698674514889717, 0.012742635793983936, 0.005993636790663004, -0.0020049945451319218, -0.011770517565310001, -0.018995722755789757, -0.01806301437318325, -0.0025731585919857025, 0.007770380470901728, -0.014108856208622456, 0.012256576679646969, 0.0068967873230576515, -0.0016248503234237432, -0.0327104777097702, 0.007737538777291775, -0.004253019113093615, 0.013832985423505306, -0.008663678541779518, -0.005671786610037088, 0.0049131400883197784, 0.0009483082685619593, -0.008768772706389427, -0.013044781051576138, -0.02028312347829342, 0.0013399472227320075, 0.008900140412151814, -0.035731926560401917, 0.0008440354140475392, 0.015895452350378036, -0.022752830758690834, -0.02890082262456417, 0.004939413629472256, 0.00168314459733665, -0.016893845051527023, 0.005097054410725832, -0.0033827100414782763, 0.006538811139762402, 0.0023547601886093616, -0.023698674514889717, -0.034444525837898254, 0.008657109923660755, 0.007402551826089621, -0.025143716484308243, 0.013412609696388245, 0.01491019781678915, 0.01336006261408329, -0.002169203944504261, 0.028506720438599586, 0.013675344176590443, -0.010023331269621849, 0.004354828502982855, -0.0025337482802569866, 0.008473196066915989, 0.006312202662229538, 0.02545899897813797, 0.0017044917913153768, 0.016828160732984543, 0.0008341828361153603, 0.0010016763117164373, 0.00016041188791859895, -0.004410659894347191, -0.003297321265563369, -0.002609284594655037, -0.0034910880494862795, -0.010463411919772625, -0.0025419588200747967, -0.00650925375521183, 0.037098146975040436, -0.008171050809323788, -0.011639149859547615, -0.003602750366553664, -0.012972529046237469, -0.0031511751003563404, 0.002931134542450309, 0.002377749653533101, -0.004867161624133587, 0.02535390481352806, -0.013543976470828056, 0.013163011521100998, 0.00969491247087717, 0.028007525950670242, -0.014319044537842274, -0.011836200952529907, -0.011409256607294083, 0.00567507091909647, -0.002876945538446307, -0.03489117696881294, 0.0229367446154356, -0.017353631556034088, 0.0031347540207207203, -0.02787615731358528, -0.0033137421123683453, -0.00802654679864645, -0.014305907301604748, 0.0003622866061050445, -0.013846121728420258, -0.027665970847010612, 0.00905121210962534, -0.0042792921885848045, -0.00787547416985035, 0.006703020539134741, -0.008854161016643047, 0.009780301712453365, -0.013300946913659573, -0.0134651567786932, 0.00490000331774354, -0.008118503727018833, -0.0013341999147087336, -0.006581505760550499, -0.028822002932429314, -0.0016995654441416264, 0.014371591620147228, 0.03439198061823845, 0.006574937142431736, -0.0015296089695766568, -0.02086113952100277, -0.009629229083657265, -0.03026704490184784, 0.00821702927350998, -0.002228319179266691, -0.011310731060802937, 0.00188347976654768, -0.0020476889330893755, -0.021859532222151756, -0.013898668810725212, 0.026904039084911346, -0.005386062432080507, 0.008696520701050758, 0.011704833246767521, 0.009891963563859463, -0.01381984818726778, 0.0151860686019063, 0.011251616291701794, 0.0021396460942924023, -0.011192500591278076, -0.012013547122478485, 0.02256891503930092, -0.0006913208053447306, -0.0061709824949502945, -0.009215421974658966, 0.011652286164462566, -0.008532310836017132, 0.006371317896991968, -0.0008891929755918682, -0.0026848209090530872, -0.002985323779284954, 0.0004868803371209651, 0.017432451248168945, 0.00010447811655467376, 0.004128220025449991, -0.008230166509747505, 0.010417433455586433, -0.03328849375247955, -0.018627895042300224, -0.0034582463558763266, 0.011921589262783527, -0.03084506094455719, -0.005612671375274658, -0.008643973618745804, -0.00821702927350998, -0.0367303192615509, 0.0075733293779194355, -0.011034860275685787, -0.01025979220867157, -0.007244911044836044, 0.0030854912474751472, 0.028611814603209496, 0.009859121404588223, -0.004115083254873753, 0.008939550258219242, -0.009136601351201534, 0.004653689451515675, 0.0015854400116950274, -0.0025091168936342, 0.009445314295589924, 0.011954431422054768, -0.0042300294153392315, -0.007783517241477966, 0.016381511464715004, -0.013228694908320904, 0.01135014183819294, -0.013025076128542423, 0.012782045640051365, 0.012657246552407742, 0.011915021575987339, -0.013314084149897099, -0.01559330802410841, 0.004814614541828632, -0.015291162766516209, -0.0036191712133586407, -0.026457389816641808, -0.014936471357941628, -0.01381984818726778, -0.003098628018051386, -0.0008222776814363897, -0.006604494992643595, -0.0008620984153822064, -0.0027045258320868015, 0.010384591296315193, -0.0007623413112014532, -0.0022989290300756693, -0.011041427962481976, -0.01571153849363327, -0.017747733741998672, 0.006216961424797773, 0.011908452957868576, 0.006722725462168455, -0.020953096449375153, -0.01925845816731453, 0.011179364286363125, 0.006003489252179861, 0.004877014085650444, 0.00725147919729352, 0.013491430319845676, -0.0044664908200502396, -0.01536998338997364, 0.02432923950254917, -0.012236871756613255, -0.02361985482275486, 0.004571584984660149, -0.01438472792506218, -0.0052809687331318855, 0.00023933494230732322, 0.01230255514383316, -0.016105640679597855, 0.035731926560401917, 0.008847593329846859, 0.006420580670237541, 0.049026306718587875, 0.01829947531223297, 0.005024802405387163, -0.009294241666793823, -0.0070347231812775135, 0.015343709848821163, 0.03418179228901863, -0.0022545927204191685, -0.016250144690275192, -0.0020575416274368763, 0.0031084807123988867, 0.006771988235414028, 0.0016962812514975667, 0.012775477953255177, 0.00042324926471337676, -0.020401354879140854, 0.029846668243408203, 0.030214497819542885, -0.004210324492305517, -0.002959050238132477, 0.024250417947769165, 0.0012184324441477656, -0.0029491977766156197, -0.0023432655725628138, -0.014463548548519611, 0.029767848551273346, 0.021531114354729652, 0.005484587978571653, 0.0016913550207391381, 0.0006473948596976697, -0.02344907633960247, 0.011087406426668167, -0.0014302623458206654, 0.0053630731999874115, 0.003803085535764694, -0.003904895391315222, -0.018890628591179848, 0.010351749137043953, -0.01426649745553732, 0.020059797912836075, -0.012085799127817154, 0.029978036880493164, -0.0007282678852789104, -0.004877014085650444, -0.008328692056238651, 0.015041564591228962, 0.0093205152079463, -0.004519037902355194, 0.01393807865679264, -0.008052820339798927, 0.007928021252155304, 0.00954383984208107, -0.007159522268921137, 0.01609250344336033, 0.008184188045561314, -0.011146522127091885, -0.007054428104311228, 0.013832985423505306, 0.002497622277587652, 0.006844240240752697, -0.0005283431964926422, 0.005711196921765804, -0.018693577498197556, 0.0026454105973243713, 0.013859258964657784, 0.01226971298456192, 0.029268652200698853, -0.0021889088675379753, -0.0013366630300879478, 0.0016946392133831978, -0.022503232583403587, 0.013130169361829758, -0.02440805919468403, 0.020033525303006172, -0.005471451207995415, 0.01564585417509079, -0.0066340528428554535, 0.01196100004017353, -0.010844376869499683, 0.0004782593750860542, -0.012722930870950222, 0.0034812355879694223, -0.021636206656694412, -0.01680188812315464, 0.00011176490079378709, 0.019008859992027283, -0.01649974286556244, 0.006108582951128483], "25063585-9f14-4c7e-836a-a2956319e633": [-0.03178715333342552, -0.010713795199990273, -0.0027152085676789284, 0.028338421136140823, -0.00011362103396095335, -0.023593073710799217, 0.003308376995846629, 0.02069239504635334, -0.013781562447547913, 0.04093030467629433, 0.017831819131970406, 0.008695350959897041, 0.003816329874098301, -0.00265338527970016, -0.00933029130101204, 0.016214389353990555, -0.01892792619764805, -0.012444844469428062, 0.009370393119752407, -0.04101051017642021, 0.04483352228999138, 0.005136338993906975, -0.055340126156806946, 0.02644028142094612, 0.05076855048537254, -0.003926609177142382, -0.0005756241735070944, 0.01761794276535511, 0.009116416797041893, 0.008956010453402996, 0.014262781478464603, 0.014637062326073647, 0.004892387893050909, 0.010112271644175053, -0.007418784778565168, -0.041063979268074036, -0.016495101153850555, 0.027055172249674797, 0.03125246614217758, 0.017390701919794083, -0.033845700323581696, 0.013687992468476295, 0.0046918801963329315, -0.02230982296168804, -0.04178580641746521, 0.007579191122204065, -0.007011086214333773, -0.02214941754937172, 0.005888242740184069, 0.009557534009218216, -0.008267601020634174, -0.04753369092941284, 0.023740112781524658, 0.014997975900769234, 0.0020635584369301796, -0.028391890227794647, -0.00947733037173748, 0.06218412145972252, 0.003462099703028798, -0.05881559103727341, -0.007238327991217375, -0.01549256220459938, -0.027322515845298767, -0.03058410808444023, 0.02110677771270275, -0.032749589532613754, 0.021574629470705986, -0.007706179283559322, -0.03948665037751198, -0.006579994224011898, -0.02681456319987774, -0.00683731259778142, -0.015599499456584454, -0.017925389111042023, 0.04523453861474991, -0.012063880451023579, 0.033311013132333755, -0.0014160856371745467, 0.002628321759402752, -0.008554995059967041, -0.00020144757581874728, 0.031011857092380524, 0.017377333715558052, -0.01267877034842968, 0.06801221519708633, 0.0013709714403375983, -0.05715806409716606, -0.03379223123192787, -0.022483596578240395, -0.01522521860897541, 0.007305163890123367, 0.016254490241408348, -0.03542302921414375, -0.005554063245654106, 0.00044529419392347336, 0.01549256220459938, 0.006332701537758112, 0.006199029739946127, -0.00025397641002200544, -0.0422135554254055, 0.0013417307054623961, -0.010392982512712479, -0.007164808455854654, 0.009096366353332996, 0.0028421967290341854, 0.011388837359845638, -0.009971916675567627, 0.010259310714900494, -0.013915234245359898, 0.010860834270715714, -0.02629324421286583, -0.0437641479074955, -0.00014902316615916789, -0.01870068535208702, -0.03133267164230347, -0.039433181285858154, 0.009303557686507702, 0.02458224445581436, -0.026787828654050827, -0.034113042056560516, 0.022911347448825836, -0.010413032956421375, 0.025411009788513184, 0.01628122478723526, -0.013413965702056885, 0.01883435621857643, 0.0330704040825367, 0.025464478880167007, 0.06731712073087692, -0.007305163890123367, -0.04341660067439079, 0.013340446166694164, 0.02815128117799759, 0.04002133756875992, -0.0015013014199212193, 0.002357636345550418, 0.036920152604579926, 0.018246201798319817, -0.016120819374918938, 0.011295267380774021, -0.03234857693314552, 0.03186735883355141, -0.02323215827345848, 0.029621671885252, -0.012251020409166813, -0.002113685244694352, -0.061061277985572815, 0.028525562956929207, 0.008635198697447777, 0.05576787516474724, -0.05459156259894371, -0.00527001079171896, -0.04595636576414108, 0.009764725342392921, 0.04552861675620079, -0.010974454693496227, -0.024649079889059067, 0.0456622876226902, 0.016201023012399673, 0.020384950563311577, -0.0026015874464064837, -0.0328565277159214, 0.02468918263912201, 0.009637736715376377, 0.044379036873579025, 0.03149307519197464, 0.01919526979327202, 0.04151846095919609, -0.029140451923012733, 0.024662448093295097, 0.0336318239569664, -0.014703897759318352, -0.002798753324896097, -0.03470119833946228, 0.0003742810513358563, -0.022229621186852455, 0.024983258917927742, 0.014316249638795853, 0.06581999361515045, -0.021561261266469955, -0.038524214178323746, -0.009310240857303143, -0.026854664087295532, 0.0016967963892966509, 0.025972431525588036, 0.011322001926600933, 0.0067871855571866035, 0.03138614073395729, -0.005153047852218151, 0.006239131558686495, 0.0174842718988657, -0.018072428181767464, -0.020665660500526428, -0.008702034130692482, 0.006178978830575943, -0.00744551932439208, 0.020064137876033783, -0.02777700126171112, 0.0017828476848080754, 0.03539629280567169, 0.010854150168597698, -0.008554995059967041, -0.03804299607872963, 0.04844266176223755, -0.021173613145947456, -0.007512355223298073, -0.02256380021572113, -0.051035892218351364, 0.013654574751853943, -0.024461939930915833, 0.05993843451142311, -0.03619832545518875, 0.0010927669936791062, 0.015305421315133572, 0.011796536855399609, 0.00557745574042201, -0.011101443320512772, 0.018740786239504814, -0.01255846582353115, -0.010286045260727406, 0.008194081485271454, -0.012371324934065342, -0.006018572952598333, -0.018072428181767464, -0.051463644951581955, -0.022590534761548042, -0.021547894924879074, 0.011662865057587624, 0.0004640917759388685, -0.030236560851335526, 0.028071077540516853, -0.01294611394405365, -0.003072780556976795, -0.016094084829092026, 0.019983934238553047, 0.04927142709493637, 0.05699765682220459, -0.012297805398702621, 0.03873808681964874, -0.03125246614217758, -0.01534552313387394, 0.028659233823418617, 0.03127920255064964, -0.018861090764403343, -0.007646027021110058, -0.014129109680652618, -0.025437744334340096, 0.028632499277591705, 0.018192732706665993, 0.005787989124655724, -0.014850936830043793, -0.005630924832075834, 0.015118280425667763, -0.016588671132922173, -0.02775026671588421, 0.020077504217624664, 0.0330704040825367, -0.005761254578828812, -0.00024436876992695034, 0.007004402577877045, 0.03253571689128876, 0.03502201288938522, 0.013193407095968723, 0.037962790578603745, 0.043737415224313736, -0.009637736715376377, 0.01800559088587761, -0.013808296993374825, 0.0003726101422216743, 0.004688538610935211, 0.0013801613822579384, -0.007813116535544395, 0.01896802894771099, 0.00981819350272417, 0.0026266509667038918, 0.01415584422647953, -0.007525722496211529, -0.02922065556049347, 0.005276694428175688, -0.01187673956155777, -0.0003845152969006449, -0.03900543227791786, 0.06886771321296692, 0.016067350283265114, 0.07635333389043808, 0.019689856097102165, -0.033444683998823166, -0.020251277834177017, -0.06271880865097046, -0.03978072851896286, -0.00028321711579337716, 0.042240288108587265, 0.0031496419105678797, 0.004872336983680725, 0.014115742407739162, -0.011228431016206741, -0.0017778349574655294, -0.014637062326073647, -0.029701873660087585, -0.003595771500840783, 0.0005183959729038179, -0.020318113267421722, -0.01696295104920864, -0.01641489751636982, 0.03133267164230347, -0.01194357592612505, 0.055179718881845474, 0.015038077719509602, -0.02991575002670288, 0.04980611428618431, 0.016602037474513054, -0.03967379033565521, -0.010994506068527699, -0.0028789564967155457, -0.002133736154064536, -0.0011428939178586006, -0.021828604862093925, 0.004608335439115763, -0.015372256748378277, 0.008521577343344688, 0.009116416797041893, 0.04980611428618431, -0.022456862032413483, 0.03258918598294258, 0.01777835004031658, -0.07629986107349396, 0.004307573661208153, -0.031198998913168907, 0.012331224046647549, -0.03387243300676346, -0.00010573648614808917, 0.017551107332110405, -0.042774975299835205, 0.0035289356019347906, -0.06849343329668045, 0.0051062628626823425, -0.04322946071624756, -0.029568202793598175, -0.020852800458669662, -0.022376660257577896, -0.0057111275382339954, -0.025157032534480095, 0.021521160379052162, -0.0048456029035151005, 0.005707785952836275, -0.01233790721744299, 0.04269477352499962, 0.021146878600120544, -0.016468366608023643, 0.020638925954699516, 0.0008254233980551362, -0.027723532170057297, 0.0099384980276227, -0.003682658076286316, 0.020759230479598045, -0.021708300337195396, -0.005480543710291386, 0.024341635406017303, 0.006456348113715649, 0.003816329874098301, 0.013146622106432915, -0.0389786958694458, -0.00906294770538807, -0.00290234899148345, -0.019836895167827606, 0.042641304433345795, 0.012638668529689312, 0.017404068261384964, -0.025985797867178917, -0.015238584950566292, -0.017377333715558052, -0.026360079646110535, -0.0036225058138370514, 0.02057209052145481, 0.03964705765247345, -0.03734790161252022, 0.026119470596313477, 0.015666335821151733, -0.02697496861219406, 0.03405957669019699, 0.0062458147294819355, -0.04897734895348549, 0.0016867710510268807, 0.022349925711750984, -0.02361980639398098, -0.009042897261679173, 0.025598149746656418, -0.06234452873468399, -0.01394196879118681, 0.025023361667990685, -0.0281780157238245, 0.029060250148177147, -0.021253816783428192, -0.012518364004790783, -0.003809646237641573, -0.011729700490832329, -0.0037996210157871246, -0.00973799079656601, -0.014864304102957249, -0.03205449879169464, 0.02043841779232025, -0.01788528636097908, 0.0030928312335163355, -0.032776325941085815, -0.015786640346050262, -0.0536825954914093, 0.003990103490650654, -0.016080718487501144, 0.0205453559756279, -0.001175476354546845, 0.013313711620867252, -0.004828894045203924, 0.033311013132333755, 0.011168278753757477, 0.024368369951844215, -0.006442980840802193, -0.009223354049026966, 0.024074291810393333, -0.039165839552879333, -0.005848141387104988, 0.05138343945145607, 0.02190880849957466, -0.037695448845624924, -0.001315831788815558, 0.011054658330976963, -0.0014336301246657968, 0.037722181528806686, 0.03176042065024376, 0.018580380827188492, 0.014129109680652618, 0.018794255331158638, 0.024261431768536568, -0.02561151795089245, -0.009704573079943657, -0.006917515769600868, -0.013641207478940487, 0.002025127876549959, 0.017377333715558052, 0.0012247678823769093, -0.005032743327319622, -0.0007001060876064003, 0.019582919776439667, -0.0005685228970833123, 0.004785450641065836, -0.015947045758366585, -0.025798657909035683, -0.00534353032708168, -0.003293338930234313, 0.02537090703845024, -0.023258892819285393, 0.0010351210366934538, 0.026774462312459946, -0.0034019474405795336, 0.01248494628816843, 0.005473860073834658, -0.019542817026376724, 0.061595965176820755, -0.01589357666671276, -0.013073102571070194, -0.038497477769851685, -0.020892903208732605, 0.014850936830043793, 0.006095434073358774, -0.017952123656868935, -0.0021387487649917603, -0.025050096213817596, -0.017257029190659523, 0.03189409151673317, 0.02443520538508892, 0.00500266719609499, 0.02710864134132862, 0.007813116535544395, -0.028498828411102295, 0.041438259184360504, 0.005955078639090061, -0.047293081879615784, -0.008728768676519394, 0.005283378064632416, -0.00021471033687703311, 0.004000128712505102, 0.012297805398702621, -0.024181228131055832, -0.0004937502089887857, 0.036091387271881104, 0.0021387487649917603, 0.007900003343820572, -0.00634272675961256, -0.04379088059067726, -0.01180990319699049, -0.004865653347223997, 0.014115742407739162, 0.0065398928709328175, 0.025330806151032448, 0.008708718232810497, 0.0028204750269651413, 0.014102375134825706, 0.011936891824007034, -0.008768870495259762, -0.016575302928686142, -0.015024710446596146, 0.007398734334856272, -0.007719546556472778, -0.02523723617196083, 0.020451785996556282, -0.0014896051725372672, 0.040662962943315506, -0.026734359562397003, -0.005791330710053444, -0.007532406132668257, 0.016615405678749084, -0.029969217255711555, 0.005600848700851202, -0.03293673321604729, 0.0036458983086049557, 0.02333909645676613, 0.0010276020038872957, 0.002783715259283781, -0.019061598926782608, 0.016856014728546143, -0.007131390739232302, 0.003866456914693117, -0.018513545393943787, -0.003909900318831205, 0.007271746173501015, 0.0018346455181017518, -0.01644163206219673, -0.015786640346050262, -0.02109340950846672, -0.0055707721039652824, 0.005991838406771421, -0.022122683003544807, 0.032615918666124344, -0.013527586124837399, -0.01694958470761776, 0.02164146490395069, 0.005848141387104988, -0.008381222374737263, -0.026239775121212006, 0.010600173845887184, -0.005995180457830429, -0.005747887305915356, 0.01495787501335144, 0.0049926419742405415, -0.003452074248343706, -0.0006762957782484591, -0.0030009320471435785, 0.0032565791625529528, 0.024983258917927742, 0.006102117709815502, -0.012899328954517841, -0.03927277401089668, 0.013260242529213428, -0.02948799915611744, 0.017404068261384964, -0.006773818749934435, -0.043175991624593735, 0.006028598174452782, -0.016628772020339966, 0.01515838224440813, -0.03566363826394081, -0.019409146159887314, 0.01962302066385746, -0.00553735438734293, 0.015532663092017174, -0.0031245783902704716, 0.009844928048551083, -0.015332155860960484, 0.007438835687935352, 0.021186981350183487, 0.02841862477362156, 0.012832492589950562, 0.017965489998459816, 0.030102889984846115, 0.0020886219572275877, -0.012926063500344753, 0.01749763824045658, 0.010747212916612625, -0.02230982296168804, -0.019676489755511284, -0.006904148496687412, -0.012725555337965488, -0.015505928546190262, 0.029167186468839645, -0.017711514607071877, 0.018326403573155403, -0.00988502986729145, -0.02414112724363804, -0.02454214356839657, -0.01001201756298542, 0.003726101480424404, 0.00973799079656601, -0.0024578901939094067, -0.010727162472903728, -0.006292600184679031, 0.002469586441293359, 0.020759230479598045, -0.009343658573925495, 0.012344591319561005, 0.02150779217481613, 0.004608335439115763, 0.02454214356839657, 0.02562488429248333, 0.02871270291507244, -0.015211851336061954, -0.03881829231977463, 0.009296873584389687, -0.0051129464991390705, 0.00814061239361763, 0.017644677311182022, 0.007091288920491934, 0.0382033996284008, -0.03405957669019699, 0.00530677055940032, -0.03809646517038345, 0.030664311721920967, 0.029942482709884644, 0.014449921436607838, 0.024876322597265244, 0.031145529821515083, -0.046384114772081375, 0.02226972207427025, 0.002668423345312476, -0.006864047143608332, -0.013714727014303207, 0.001310819061473012, 0.038898494094610214, -0.0031229073647409678, -0.006326017901301384, -0.010513287037611008, 0.02788393758237362, 0.005988496821373701, -0.0028622474055737257, 0.004952540155500174, -0.004491372499614954, 0.015251952223479748, 0.007204910274595022, 0.005798014346510172, 0.0024445231538265944, -0.011362102814018726, -0.015198484063148499, -0.016508467495441437, -0.05087548866868019, -0.0036525819450616837, 0.02924739010632038, -0.006843996234238148, 0.03619832545518875, -0.008588413707911968, 0.014610327780246735, 0.01175643503665924, 0.018339771777391434, -0.0047052474692463875, 0.020906269550323486, -0.03710729256272316, 0.03192082792520523, 0.003846406005322933, -0.057906623929739, -0.015786640346050262, 0.047186147421598434, 0.0033952638041228056, -0.010259310714900494, 0.03216143697500229, -0.01301295030862093, 0.023205425590276718, 0.0063794865272939205, -0.0014812506269663572, 0.005647633690387011, -0.0023024966940283775, 0.02775026671588421, 0.010199158452451229, 0.04007480666041374, 0.01287259440869093, -0.006305967457592487, 0.022069213911890984, 0.017003053799271584, 0.0050928955897688866, 0.010406349785625935, -0.010159056633710861, 0.031546544283628464, -0.0013642878038808703, -0.006559943780303001, -0.015265319496393204, -0.010058803483843803, -0.05167751759290695, 0.011776485480368137, 0.0017644678009673953, -0.00794010516256094, -0.022376660257577896, 0.009236721321940422, -0.025718454271554947, -0.023405931890010834, 0.01640152931213379, 0.030878186225891113, -0.025558048859238625, -0.026239775121212006, -0.013293660245835781, 0.036626074463129044, -0.018887825310230255, 0.007144758012145758, 0.02574518881738186, -0.02951473370194435, -0.023526236414909363, -0.003990103490650654, -0.024368369951844215, 0.015933679416775703, -0.011729700490832329, 0.008554995059967041, -0.016187654808163643, -0.001312489970587194, -0.01962302066385746, 0.001198033569380641, 0.012779024429619312, -0.0009173227590508759, -0.01427614875137806, 0.0062591820023953915, -0.031198998913168907, 0.010767263360321522, -0.006359436083585024, 0.027402719482779503, 0.002108672633767128, -0.010453134775161743, 0.010486552491784096, 0.045181069523096085, -0.0224434956908226, -0.01880762167274952, -0.04750695824623108, 0.009490697644650936, -0.01435635145753622, 0.023018283769488335, -0.012638668529689312, 0.008414640091359615, 0.008220816031098366, -0.001306641846895218, 0.0059851547703146935, 0.0002608688664622605, 0.029006781056523323, -0.022109316661953926, 0.011983676813542843, 0.0063794865272939205, 0.011956942267715931, -0.02748292312026024, 0.004040230065584183, -0.0001592574262758717, -0.012531731277704239, -0.03352488949894905, -0.013861766085028648, -0.0027269048150628805, -0.016909481957554817, 0.020491886883974075, -0.002534751547500491, -0.0009799813851714134, 0.04381761699914932, -0.03713402524590492, 0.044379036873579025, -0.020879535004496574, 0.03253571689128876, 0.009764725342392921, -0.0012322869151830673, -0.006797211244702339, 0.015652967616915703, 0.04619697481393814, -0.0004950033617205918, -0.007960155606269836, -0.029862280935049057, -0.028846375644207, 0.015853475779294968, -0.0262798760086298, 0.015198484063148499, 0.05272015929222107, 0.03194756060838699, 0.01382166426628828, 0.024742649868130684, 0.014262781478464603, 0.03774891793727875, 0.02002403512597084, -0.03855094686150551, -0.038764823228120804, 0.0016842647455632687, 0.007278429809957743, -0.012625301256775856, -0.03071778081357479, -0.015559397637844086, -0.035850778222084045, 0.04579595848917961, -0.004160534590482712, 0.029434530064463615, -0.008321069180965424, 0.026319976896047592, 0.03339121490716934, 0.008267601020634174, -0.018072428181767464, 0.012698820792138577, -0.03245551511645317, 0.005961762275546789, -0.005707785952836275, 0.006315992679446936, -0.013901866972446442, 0.008575046434998512, -0.01935567706823349, 0.006095434073358774, 0.004484688863158226, 0.014797468669712543, -0.010586806572973728, 0.03700035437941551, 0.024101026356220245, 0.032375309616327286, -0.02935432828962803, -0.008307702839374542, -0.02482285350561142, -0.03702709078788757, 0.017805084586143494, 0.026467015966773033, 0.007993573322892189, 0.006723691709339619, -0.0015146685764193535, -0.008287651464343071, -0.026480384171009064, 0.04764062911272049, 0.027188844978809357, 0.029808811843395233, 0.0046785129234194756, -0.02748292312026024, -0.02376684546470642, 0.02788393758237362, 0.007953472435474396, -0.04341660067439079, 0.015960413962602615, 0.0021821921691298485, -0.015292054042220116, 0.03945991396903992, 0.002805436961352825, -0.019917098805308342, -0.010332830250263214, 0.005403682589530945, 0.02202911302447319, 0.009611002169549465, -0.007612609304487705, -0.01355432067066431, -0.018206099048256874, -0.04443250596523285, 0.011649497784674168, -0.05354892462491989, -0.023659909144043922, -0.009123100899159908, 0.0056676845997571945, 0.00550059461966157, 0.03288326412439346, 0.0011445648269727826, -0.013808296993374825, 0.032749589532613754, 0.04435230419039726, 0.013200090266764164, -0.027269046753644943, 0.009069631807506084, 0.01950271613895893, -0.01126853283494711, 0.006703640799969435, -0.006549918092787266, -0.00038075578049756587, 0.005951737053692341, -0.010526654310524464, -0.01382166426628828, 0.0037561776116490364, -0.013440699316561222, 0.01427614875137806, -0.00023204588796943426, 0.0009549179230816662, 0.00466514565050602, -0.005313454195857048, 0.00023956493532750756, 0.04416516423225403, -0.04293538257479668, -0.030076155439019203, 0.06528531014919281, -0.0033518203999847174, -0.009804826229810715, -0.018740786239504814, 0.011034606955945492, 0.013681309297680855, -0.025063462555408478, 0.018874458968639374, 0.0036525819450616837, 0.012785707600414753, -0.005961762275546789, 0.021521160379052162, -0.033551622182130814, 0.022483596578240395, 0.01827293448150158, 0.017671411857008934, -0.009410494938492775, -0.0014896051725372672, -0.008835705928504467, -0.007318531163036823, -0.0023058385122567415, -0.012177500873804092, -0.013033000752329826, 0.005139680579304695, 0.018326403573155403, -0.0041571930050849915, -0.023539604619145393, -0.009657788090407848, -0.00928350631147623, -0.02257716655731201, -0.02841862477362156, -0.0024344976991415024, 0.03413977846503258, -0.018045693635940552, 0.010499919764697552, 0.003929950762540102, 0.009056264534592628, 0.013046368025243282, -0.003853089641779661, -0.006172295659780502, -0.01388850063085556, -0.010339513421058655, 0.03162674978375435, 0.013006266206502914, -0.025183767080307007, 0.00808714423328638, -0.006997718941420317, -0.007077922113239765, -0.009971916675567627, 0.03625179082155228, -0.0012782366247847676, 0.013601105660200119, 0.011255165562033653, -0.006924199406057596, 0.006128852255642414, 0.0006228270358406007, 0.014797468669712543, 0.03539629280567169, -0.04240069538354874, -0.007973522879183292, -0.002133736154064536, -0.011636130511760712, 0.033444683998823166, -0.03031676448881626, -0.03788258880376816, 0.0023024966940283775, -0.020986473187804222, -0.008842390030622482, -0.0005777128390036523, -0.03863115236163139, 0.03790932148694992, -0.012097298167645931, 0.014463288709521294, -0.011649497784674168, 0.008588413707911968, 0.018593747168779373, -0.03566363826394081, -0.0255045797675848, 0.0004874843580182642, 0.02737598493695259, -0.025197135284543037, 0.0010919314809143543, 0.0050928955897688866, 0.03510221466422081, -0.007392050698399544, 0.00820744875818491, -0.01420931238681078, 0.009898397140204906, -0.0010217538801953197, -0.01073384564369917, 0.012832492589950562, 0.009390444494783878, -0.015947045758366585, 0.014997975900769234, -0.03681321442127228, 0.006008547265082598, 0.009925131686031818, -0.007786382455378771, 0.008808971382677555, -0.029728608205914497, 0.005350213963538408, -0.004441245459020138, -0.006249156780540943, -0.01816599816083908, -0.027175476774573326, -0.012518364004790783, 0.007204910274595022, 0.015719803050160408, 0.04282844439148903, -0.0063861701637506485, 0.0041304584592580795, -0.0334179513156414, -0.010312779806554317, -0.0029858939815312624, -0.04897734895348549, 0.0013801613822579384, -0.005059477873146534, 0.006095434073358774, -0.0029758685268461704, -0.04659799113869667, 0.0010042093927040696, -0.013367179781198502, 0.015412358567118645, 0.00039412296609953046, 0.0003838886914309114, -0.024729283526539803, -0.013320394791662693, -0.02791067212820053, -0.00443456182256341, 0.011054658330976963, -0.013901866972446442, 0.01601388119161129, 0.023312361910939217, 0.02641354873776436, 0.009851612150669098, -0.0020050769671797752, -0.0003070274251513183, -0.028873108327388763, -0.03627852723002434, 0.003950001671910286, -0.011408887803554535, -0.007625976111739874, -0.01760457642376423, 0.018994763493537903, 0.01962302066385746, -0.04098377376794815, 0.0020134313963353634, 0.03015635907649994, -0.008100511506199837, -0.024595610797405243, -0.034246716648340225, -0.018727419897913933, -0.01815262995660305, 0.006255840416997671, 0.0014277818845584989, -0.0029691848903894424, 0.010199158452451229, -0.016227757558226585, -0.011863372288644314, -0.03844400867819786, -0.0005071174236945808, -0.014449921436607838, -0.005102920811623335, -0.030530638992786407, -0.01154255960136652, -0.050902221351861954, -0.012511680833995342, 0.00771286292001605, 0.02190880849957466, -0.008588413707911968, -0.03700035437941551, 0.009838244877755642, 0.0061188265681266785, 0.023740112781524658, 0.023673275485634804, -0.010426400229334831, -0.01990373060107231, -0.010286045260727406, -0.006359436083585024, 0.00372275966219604, -0.003448732430115342, 0.005036084912717342, -0.02709527499973774, 0.007706179283559322, -0.010466502048075199, -0.001608238904736936, 0.012812442146241665, -0.02590559422969818, -0.00039119887514971197, -0.021026574075222015, 0.012103981338441372, 0.0014862633543089032, 0.0035356192383915186, 0.009484014473855495, -0.006830628961324692, 0.008635198697447777, -0.0144231878221035, -0.0005710292025469244, -0.008000257425010204, 0.002521384274587035, -0.008795604109764099, -0.0020501911640167236, -0.012057196348905563, 0.033311013132333755, -0.0058046979829669, -0.00010944379027932882, 0.009463963098824024, 0.006456348113715649, 0.020612191408872604, 0.009089682251214981, -0.007184859365224838, 0.021186981350183487, -0.05448462814092636, 0.03234857693314552, 0.008501526899635792, 0.01221760269254446, -0.013166672550141811, -0.006670223083347082, -0.014048906043171883, 6.396404205588624e-05, -0.02387378364801407, 0.004494714550673962, 0.002793740713968873, 0.008875807747244835, -0.02458224445581436, 0.027964141219854355, -0.005467176903039217, 0.0030059446580708027, -0.035289354622364044, -0.00637280335649848, -0.002220622729510069, 0.011128177866339684, 0.019836895167827606, 0.027402719482779503, -0.005453809630125761, 0.021721668541431427, 0.004307573661208153, 0.000262122048297897, 0.033979371190071106, 0.025598149746656418, 0.016094084829092026, 0.022256355732679367, 0.009798143059015274, 0.013273609802126884, -0.0038931912276893854, -0.004053597338497639, -0.011749750934541225, 0.025036728009581566, 0.03467446565628052, -0.02734925039112568, -0.02003740333020687, -0.0013910222332924604, -0.01999730058014393, -0.007519038859754801, 0.010179108008742332, 0.02775026671588421, 0.0065198419615626335, 0.008381222374737263, 0.000232254751608707, -0.0031045274809002876, 0.009557534009218216, 0.026881398633122444, -0.049832846969366074, -0.020050769671797752, -0.01107470877468586, -0.000650814559776336, -0.0062458147294819355, 0.0004895729944109917, -0.0016792520182207227, -0.007278429809957743, -0.030129624530673027, -0.003929950762540102, 0.014115742407739162, -0.011235115118324757, -0.014997975900769234, -0.033818963915109634, -0.008956010453402996, 0.0013860095059499145, 0.015960413962602615, -0.022109316661953926, -0.01573317125439644, 0.0357438400387764, 0.020384950563311577, 0.0228311438113451, -0.0033618458546698093, -0.01095440424978733, 0.028498828411102295, 0.011856689117848873, -0.04456617683172226, -0.006432955618947744, 0.0025548022240400314, -0.01813926361501217, 0.008802288211882114, 0.002147103426977992, 0.025517946109175682, 0.0008082966669462621, -0.01267208717763424, -0.01629459299147129, -0.010526654310524464, 0.00013868449605070055, 0.028071077540516853, 0.020625559613108635, 0.00130914815235883, 0.03526262193918228, 0.0012297806097194552, -0.005216542165726423, -0.01950271613895893, 0.0010234246728941798, 0.0045448411256074905, 0.0003713569603860378, 0.012371324934065342, -0.0057111275382339954, -0.006055332720279694, 0.00015455801622010767, -0.013106520287692547, -0.00450473977252841, -0.011469040997326374, 0.031974293291568756, 0.004307573661208153, -0.01934230886399746, -0.0044312202371656895, -0.01534552313387394, -0.013373863883316517, -0.01348748430609703, -0.01923537254333496, -0.021587995812296867, 0.010747212916612625, 0.02324552647769451, 0.0033785547129809856, -0.014757366850972176, 0.0048389192670583725, 0.01882098987698555, 0.016655506566166878, -0.0032298448495566845, 0.002877285471186042, -0.013246875256299973, -0.009076314978301525, -0.03146634250879288, -0.008187397383153439, -0.002603258239105344, -0.008060409687459469, -0.03288326412439346, -0.0004895729944109917, 0.0178719200193882, 0.003054400673136115, -0.027456188574433327, -0.003079464193433523, 0.0018095819978043437, 0.04322946071624756, 0.0062591820023953915, 0.013540953397750854, 0.025330806151032448, -0.0008367019472643733, -0.030236560851335526, 0.014797468669712543, 0.009176569059491158, 0.005089554004371166, -0.021654831245541573, 0.007646027021110058, 0.0004770412342622876, 0.005430417135357857, 0.013273609802126884, 0.027028437703847885, -0.040796633809804916, -0.014810835942626, 0.007933421060442924, -0.012718872167170048, 0.006005205679684877, 0.020050769671797752, -0.0037762282881885767, 0.0010894251754507422, -0.027589859440922737, -0.004351017065346241, 0.005303428508341312, -0.007659394294023514, -0.0016366441268473864, 0.005226567387580872, -0.001043475465849042, 0.011555926874279976, -0.020518621429800987, -0.022750940173864365, 0.012538415379822254, -0.01777835004031658, 0.014917773194611073, -0.012378009036183357, 0.01773824729025364, 0.001721024396829307, -0.0029625012539327145, 0.005417049862444401, 0.00130914815235883, 0.009758041240274906, -0.0063861701637506485, -0.028659233823418617, -0.007144758012145758, -0.0016667202580720186, 0.017190193757414818, 0.007539089769124985, 0.008755503222346306, -0.04175907000899315, -0.006282574497163296, 0.010299412533640862, 0.022256355732679367, -0.019435880705714226, 0.027696797624230385, 0.003939976450055838, -0.012424794025719166, 0.0023041677195578814, -0.005918318871408701, -0.008100511506199837, 0.022791042923927307, 0.012504996731877327, -0.026386814191937447, -0.0028421967290341854, -0.012926063500344753, 0.020598825067281723, 0.004999325145035982, 0.0008563349838368595, 0.0024595612194389105, 0.006496449466794729, -0.012284438125789165, 0.015679702162742615, 0.016067350283265114, -0.01613418571650982, 0.013099836185574532, -0.0050995792262256145, -0.029675139114260674, 0.0032315158750861883, 0.017190193757414818, -0.00454149954020977, 0.027803733944892883, -0.024114392697811127, -0.008367855101823807, 0.011936891824007034, 1.3471611055138055e-05, 0.001310819061473012, 0.011402204632759094, -0.013875133357942104, -0.01907496526837349, -0.01895466074347496, -0.014383086003363132, 0.002927412511780858, 0.0033401241526007652, 0.007124707102775574, 0.005724494811147451, -0.012378009036183357, -0.019275473430752754, -0.002250698860734701, -0.016575302928686142, 0.011322001926600933, 0.01301963347941637, 0.007692812010645866, 0.020919637754559517, -0.010259310714900494, 0.006416246294975281, -0.005363581236451864, -0.0019332284573465586, 0.03737463429570198, 0.006890781223773956, 0.003291668137535453, 0.03593097999691963, 0.004742007236927748, 0.006098776124417782, 0.03336448222398758, 0.02070576138794422, -0.023125221952795982, 0.025183767080307007, 0.0017544423462823033, 0.00014286173973232508, -0.0033986056223511696, -0.004197294358164072, -0.00022264709696173668, -0.006432955618947744, 0.008294335566461086, 0.020933004096150398, 0.0007740432629361749, -0.006676906254142523, 0.0016917837783694267, -0.021694933995604515, -0.015679702162742615, 0.009243405424058437, -0.014316249638795853, -0.005550721660256386, 0.0013768195640295744, -0.004935831297188997, -0.03908563405275345, 0.00774628110229969, -0.009256772696971893, 0.020251277834177017, -0.0015522637404501438, -0.04469985142350197, -0.013226824812591076, -0.01892792619764805, -0.01696295104920864, 0.008802288211882114, 0.005206516478210688, -0.025932328775525093, 0.01229112222790718, 0.01054002158343792, -0.016227757558226585, -0.0033935927785933018, 0.02523723617196083, -0.011602712795138359, 0.014556859619915485, -0.0024512065574526787, 0.007572507485747337, 0.002534751547500491, -0.011174962855875492, -0.020318113267421722, 0.0049725910648703575, 0.007258378900587559, 0.006984351668506861, 0.0110813919454813, 0.010874200612306595, -0.008735451847314835, -0.03379223123192787, 0.01922200433909893, -0.006810578517615795, -0.002511359052732587, -0.0032231612130999565, 0.030263295397162437, 0.011509141884744167, -0.003209794173017144, -0.01813926361501217, 0.0028188040014356375, -0.011442306451499462, -0.022924713790416718, -0.011549243703484535, 0.01153587643057108, 0.028258219361305237, 0.010626908391714096, -0.013307027518749237, 0.020598825067281723, -0.03376549854874611, 0.011014556512236595, -0.013073102571070194, -0.0044312202371656895, -0.009925131686031818, -0.018633849918842316, 0.03413977846503258, -0.009116416797041893, 0.014302882365882397, -0.02857903204858303, 0.006563285365700722, 0.01268545351922512, -0.01549256220459938, -0.00986497849225998, -0.018847724422812462, -0.028632499277591705, 0.00211869808845222, -0.006449664477258921, -0.018339771777391434, 0.022122683003544807, 0.006098776124417782, 0.0022841168101876974, 0.007739597465842962, -0.010660326108336449, 0.005958420690149069, -0.0010677034733816981, 0.011642813682556152, -0.012845859862864017, -0.0035322774201631546, -0.005066161043941975, 0.0024395103100687265, -0.03042370267212391, 0.0012230969732627273, -0.013901866972446442, 0.009637736715376377, -0.0034788085613399744, 0.010847466997802258, -0.02898004651069641, 0.03978072851896286, 0.019141802564263344, 0.01447665598243475, -0.01602724939584732, -0.03945991396903992, -0.002259053522720933, 0.007993573322892189, -0.004097040742635727, -0.007118023466318846, -0.02095973864197731, 0.010165740735828876, 0.01749763824045658, 0.026600688695907593, -0.005143022630363703, -0.02748292312026024, -0.02375347912311554, 0.02458224445581436, 0.01268545351922512, -0.016909481957554817, -0.022483596578240395, 0.006382828578352928, -0.004661804065108299, -0.006917515769600868, -0.0012890974758192897, 0.009002795442938805, 0.001056842622347176, 0.03510221466422081, -0.0013484143419191241, -0.004752032458782196, 0.06672896444797516, -0.00447132159024477, 0.01602724939584732, -0.0033518203999847174, 0.011088076047599316, -0.018513545393943787, -0.02935432828962803, 0.007853218354284763, 0.004765399731695652, 0.008895858190953732, 0.0032365284860134125, -0.006031940225511789, 0.00373946875333786, -0.01427614875137806, 0.006991035304963589, 0.020999839529395103, 0.029407795518636703, -0.00935034267604351, -0.025263970717787743, -0.02602590061724186, -0.013681309297680855, 0.011168278753757477, 0.0007097137277014554, -0.007057871203869581, -0.004501397721469402, 0.017176827415823936, 0.033551622182130814, 0.00037616080953739583, 0.007779698818922043, 0.009951865300536156, -0.02565161883831024, 0.03753504157066345, 0.01856701262295246, -0.013955336064100266, -0.021721668541431427, -0.003300022566691041, 0.025731822475790977, -0.00500600878149271, 0.00794678833335638, 0.01388850063085556, -0.0027670064009726048, -0.028846375644207, -0.00833443645387888, 0.028472093865275383, -0.0009557533776387572, -0.030878186225891113, -0.0065265255980193615, -0.013875133357942104, 0.0018730760784819722, -0.003826355328783393, 0.024502040818333626, 0.006152244750410318, 0.020933004096150398, 0.013240192085504532, 0.001606567995622754, 0.03336448222398758, -0.0061255102045834064, 0.028605764731764793, -0.009858295321464539, 0.01735059916973114, 0.014570225961506367, 0.008080460131168365, -0.014289516024291515, -0.017123358324170113, 0.0066535137593746185, 0.030102889984846115, -0.009109733626246452, -0.0170966237783432, -0.011047974228858948, -0.009590951725840569, -0.00318640167824924, -0.019596286118030548, 0.0021989010274410248, 0.03932624310255051, -0.01773824729025364, -0.005293403286486864, -0.0015639601042494178, -0.0004879020852968097, 0.0018780888058245182, 0.010533338412642479, 0.011469040997326374, -0.0061255102045834064, 0.005644291639328003, 0.015826741233468056, -0.004919122438877821, 0.005871533881872892, -0.0035289356019347906, -0.004905755165964365, 0.011241798289120197, -0.006964300759136677, 0.011101443320512772, 0.006549918092787266, -0.004314257297664881, -0.007305163890123367, -0.02630661055445671, 0.005049452185630798, -0.0020702420733869076, -0.008240866474807262, 0.015211851336061954, 0.018099162727594376, 0.0026984994765371084, -0.010052119381725788, 0.025304071605205536, -0.0041505093686282635, -0.02307175286114216, 0.00694425031542778, -0.018914559856057167, -0.001182995387353003, -0.014035538770258427, -0.018246201798319817, 0.0023175347596406937, 0.0617029033601284, 0.013360496610403061, -0.01202377863228321, -0.002110343659296632, 0.009290190413594246, -0.0002518878027331084, -0.00553735438734293, 0.00014108640607446432, 0.014703897759318352, -0.01229112222790718, 0.009844928048551083, -0.0029006781987845898, -0.00633604358881712, -0.02002403512597084, -0.024756018072366714, 0.013413965702056885, 0.0046851965598762035, -0.0019499374320730567, -0.013861766085028648, 0.023646540939807892, 0.007224960718303919, 0.0100788539275527, -0.03520915284752846, 0.003812988055869937, 0.010386299341917038, 0.0040168375708162785, -0.002663410734385252, 0.012010411359369755, 0.004457954782992601, 0.010045436210930347, -0.017123358324170113, -0.014864304102957249, -0.00928350631147623, 0.003869798732921481, -0.005821406841278076, 0.0009758041705936193, -0.014997975900769234, 0.018593747168779373, -0.004742007236927748, 0.025183767080307007, -0.01747090369462967, -0.008628514595329762, 0.015786640346050262, 0.014463288709521294, -0.029060250148177147, 0.0025598150677978992, 0.014877671375870705, -0.0008872465696185827, -0.007365316152572632, -0.008120561949908733, -0.019516082480549812, -0.013861766085028648, -0.000919829064514488, -0.00981819350272417, 0.011288583278656006, -0.023058386519551277, -0.007051187567412853, -0.022897979244589806, 0.012545098550617695, -0.008080460131168365, -0.002394396113231778, 0.0010827415389940143, 0.004294206853955984, -0.012772340327501297, 0.022791042923927307, -0.0049725910648703575, -0.003716076025739312, -0.011235115118324757, 0.015987146645784378, 0.019048232585191727, 0.0016232769703492522, 0.00920330360531807, -0.011736384592950344, -0.010112271644175053, -0.018219467252492905, 0.0044044856913387775, 0.012378009036183357, 0.014463288709521294, -0.002140419790521264, 0.011696282774209976, -0.006763793062418699, -0.007879952900111675, -0.004855628125369549, -0.0065198419615626335, 0.0258922278881073, -0.0116093959659338, -0.002504675416275859, -0.006135535892099142, 0.01214408315718174, -0.028498828411102295, 0.002808778779581189, -0.004030204843729734, -0.015265319496393204, -0.007338582072407007, 0.0010017030872404575, -0.014596960507333279, -0.003699367167428136, 0.014129109680652618, 0.01554603036493063, 0.003301693592220545, 0.0007506507099606097, 0.014302882365882397, -0.004919122438877821, 0.02668089233338833, -0.014984608627855778, 0.008608464151620865, 0.003585746046155691, 0.010941036976873875, -0.007311847526580095, 0.007031136658042669, -0.00710465619340539, 0.013006266206502914, 0.006991035304963589, -0.0029625012539327145, -0.023018283769488335, 0.005049452185630798, 0.03069104626774788, -0.005443783942610025, -0.02857903204858303, -0.009851612150669098, -0.0011629447108134627, -0.007920053787529469, -0.009871662594377995, -0.010934353806078434, 0.007605925668030977, 0.010459818877279758, -0.03659933805465698, -0.010499919764697552, -0.0029257414862513542, -0.032749589532613754, -0.0015405674930661917, 0.023967353627085686, 0.016201023012399673, -0.008240866474807262, 0.010927669703960419, -0.0042841811664402485, 0.010586806572973728, -0.01563960127532482, 0.014610327780246735, 0.007906687445938587, 0.002252369886264205, 0.040261946618556976, 0.007706179283559322, 0.004300890024751425, -0.007345265708863735, 0.006402879487723112, -0.012792391702532768, -0.03432691842317581, 0.013373863883316517, 0.001079399837180972, 0.03416651114821434, -0.012003728188574314, -0.005320137832313776, -0.007271746173501015, -0.008681983686983585, -0.011783169582486153, -0.026493750512599945, 0.009490697644650936, 0.0024612320121377707, -0.016628772020339966, 0.0021805213764309883, -0.0028689310420304537, 0.0025330805219709873, -0.00806709285825491, 0.0028288294561207294, -0.01100787241011858, 0.02200237847864628, 0.006740400567650795, 0.01367462519556284, -0.00933029130101204, -0.02510356344282627, 0.003548986278474331, 0.004862311761826277, -0.02269747108221054, 0.009336975403130054, 0.010052119381725788, -0.0035222519654780626, 0.010065486654639244, -0.009250088594853878, 0.0020535329822450876, -0.011649497784674168, 0.0004766235069837421, 0.01947598159313202, 0.002392725320532918, -0.009971916675567627, 0.0032114649657160044, 0.003542302642017603, -0.02908698469400406, -0.020344847813248634, 0.01923537254333496, -0.014810835942626, 0.019435880705714226, 0.017190193757414818, 0.007900003343820572, -0.019141802564263344, -0.006409562658518553, 0.01563960127532482, 0.02855229750275612, 0.0052533019334077835, -0.004193952772766352, 0.017818450927734375, 0.009898397140204906, 0.017136724665760994, 0.01301963347941637, -0.005684393458068371, -0.012130715884268284, 0.0021838629618287086, -0.04248089715838432, -0.005497253034263849, 0.01803232543170452, -0.03446058928966522, -0.004491372499614954, 0.005998522043228149, -0.0012982874177396297, -0.01613418571650982, 0.004197294358164072, 0.00454149954020977, -0.0024294850882142782, 0.03790932148694992, 0.0033835675567388535, 0.018500177189707756, 0.020785965025424957, 0.0019516083411872387, -0.007218277081847191, 0.003956685308367014, -0.00036007841117680073, 0.003442048793658614, 0.018647216260433197, 0.0030995148699730635, -0.0009941840544342995, 0.03601118177175522, 0.00480884313583374, 0.005834774114191532, 0.03472793474793434, 0.011569294147193432, 0.0063794865272939205, 0.005136338993906975, 0.005995180457830429, 0.014490023255348206, 0.01515838224440813, -0.02764332853257656, 0.002768677193671465, -0.023272261023521423, -0.004658462479710579, 0.010018701665103436, -0.0006224093376658857, 0.012618618085980415, -0.020719129592180252, -0.012311172671616077, -1.9580829757614993e-05, 0.012531731277704239, -0.009570901282131672, -0.018874458968639374, 0.01721692830324173, 0.019435880705714226, 0.018379872664809227, 0.003562353551387787, -0.00010881719936151057, -0.01736396737396717, 0.0010142348473891616, -0.010586806572973728, -0.00607204157859087, 0.008053725585341454, 0.0027135375421494246, 0.005671026185154915, 0.01840660721063614, -0.009798143059015274, 0.018780888989567757, -0.005988496821373701, 0.006656855810433626, -0.005059477873146534, -0.019328942522406578, 0.029969217255711555, 0.02523723617196083, -0.013968703337013721, 0.008702034130692482, 0.006255840416997671, -0.006984351668506861, -0.0021638122852891684, 0.008775553666055202, -0.005226567387580872, 0.035316091030836105, -0.010827415622770786, -0.029300859197974205, 0.005176440346986055, -0.022884612902998924, -0.011743067763745785, 0.012117348611354828, 0.007539089769124985, 0.0012782366247847676, 0.005965104326605797, -0.010553388856351376, 0.010927669703960419, 0.0032415410969406366, 0.007412101607769728, 0.0032465539406985044, -0.006289258133620024, 0.0066468301229178905, -0.0013492497382685542, -0.0016374795231968164, 0.00913646724075079, -0.00794010516256094, -0.02509019710123539, -0.02324552647769451, 0.01515838224440813, 0.0032415410969406366, 0.008895858190953732, -0.017551107332110405, -0.02121371403336525, 0.04034214839339256, 0.01760457642376423, -0.00786658562719822, 0.015572764910757542, 0.02855229750275612, -0.010780630633234978, -0.0005066996673122048, 0.011261849664151669, 0.028899842873215675, -0.004317599348723888, 0.017992224544286728, 0.006991035304963589, 0.008020307868719101, 0.020638925954699516, 0.0015614536823704839, 0.002025127876549959, 0.020652294158935547, 0.01115491148084402, 0.006085408851504326, 0.020451785996556282, -0.023419300094246864, 0.005280036013573408, 0.004715272691100836, -0.006897464860230684, 0.015826741233468056, -0.01735059916973114, -0.0012464895844459534, -0.020358216017484665, -0.0012548440136015415, -0.0265605878084898, -0.002648372668772936, -0.007786382455378771, 0.024889688938856125, -0.01348748430609703, -0.023579705506563187, -0.003298351773992181, 0.01947598159313202, 0.022256355732679367, -0.0025949038099497557, -0.0036158221773803234, 0.016762444749474525, -0.00710465619340539, -0.0044111693277955055, 0.00473866518586874, -0.016842646524310112, -0.0027018412947654724, -0.008554995059967041, 0.020879535004496574, -0.00771286292001605, -0.022897979244589806, 0.0013550978619605303, -0.019115068018436432, 0.013033000752329826, 0.004354359116405249, 0.0020368241239339113, -0.004514764994382858, 0.010312779806554317, -0.01415584422647953, 0.002245686249807477, -0.029434530064463615, 0.010159056633710861, 0.01626785844564438, 0.0009357025846838951, 0.0045648920349776745, -0.008762186393141747, -0.0025548022240400314, 0.014289516024291515, -0.008107194676995277, 0.0008638540166430175, -0.011288583278656006, -0.015960413962602615, 0.032107967883348465, 0.00713807437568903, 0.0005764596280641854, -0.015064812265336514, 0.004070306196808815, -0.001864721649326384, 0.011983676813542843, -0.004461296368390322, -0.011047974228858948, 0.006416246294975281, 0.0032766300719231367, 0.026333345100283623, 0.00011863372492371127, -0.013266926631331444, -0.007452202960848808, -0.00580803956836462, -0.01990373060107231, 0.007886636070907116, -0.004778767004609108, -0.010767263360321522, 0.029300859197974205, 0.00986497849225998, 0.0007610938046127558, 0.013440699316561222, 0.023285627365112305, -0.030076155439019203, 0.02333909645676613, 0.012331224046647549, 0.011054658330976963, 0.0010977797210216522, 0.008260916918516159, -0.0011445648269727826, -0.013494168408215046, -0.011215063743293285, 0.008127245120704174, 0.0009749687160365283, -0.012525048106908798, -0.0020518621895462275, -0.0007189036696217954, 0.009798143059015274, 0.0038965330459177494, -0.003010957268998027, 0.012030461803078651, 0.0020401659421622753, 0.0028371838852763176, 0.025197135284543037, 0.028525562956929207, -0.0014244401827454567, -0.01081404834985733, 0.0006700298981741071, -0.0056610009633004665, 0.006924199406057596, -0.015145014971494675, 0.0037662030663341284, -0.006165612023323774, -0.014530125074088573, 0.017056521028280258, -0.020211176946759224, -0.013875133357942104, 0.009945182129740715, -0.015840107575058937, -0.024662448093295097, 0.005587481427937746, 0.0063794865272939205, -0.005116288084536791, 0.01919526979327202, 0.010072169825434685, 0.02402082271873951, 0.004668487701565027, 0.00847479235380888, -0.021414222195744514, 0.037722181528806686, 0.012772340327501297, -0.00014714340795762837, -0.03138614073395729, -0.031439606100320816, -0.024715915322303772, 0.013347129337489605, 0.02764332853257656, -0.012451528571546078, 0.007452202960848808, 0.0041438257321715355, 0.011068025603890419, 0.029274124652147293, 0.014904405921697617, 0.003833038965240121, 0.017537740990519524, 0.0005860673263669014, 0.004611677024513483, -0.0013659587129950523, -0.024796118959784508, 0.020585456863045692, 0.00961768627166748, -0.007646027021110058, -0.01354763749986887, 0.01034619752317667, 0.03127920255064964, -0.008267601020634174, -0.008327753283083439, -0.0017962148413062096, -0.014316249638795853, -0.003716076025739312, -0.009951865300536156, 0.012979531660676003, 0.009296873584389687, -0.0016725683817639947, -0.008628514595329762, -0.0025464477948844433, 0.013514218851923943, 0.0017661387100815773, 0.04042235389351845, -0.006499791517853737, 0.02468918263912201, -0.007719546556472778, -0.010707111097872257, 0.022924713790416718, 0.0004983451799489558, 0.021186981350183487, -0.0063861701637506485, 0.027937406674027443, -0.00801362469792366, -0.016909481957554817, -0.008661932311952114, 0.014917773194611073, 0.012277754954993725, -0.013200090266764164, -0.003291668137535453, -0.0008997783297672868, 0.0056610009633004665, -0.013574371114373207, 0.009056264534592628, 0.013915234245359898, -0.0021019889973104, 0.019128434360027313, 0.000536775856744498, 0.011382154189050198, 0.02280440926551819, 0.03245551511645317, 0.011656180955469608, 0.0052399346604943275, -0.011669548228383064, -0.017845185473561287, -0.00011487420124467462, 0.006529867649078369, -0.007184859365224838, 0.0018313036998733878, 0.039593588560819626, -0.03657260537147522, -0.02430153265595436, -0.005163073539733887, -0.00660672876983881, 0.000667105836328119, 0.000918993609957397, -0.0005856495699845254, -0.002255711704492569, -0.009123100899159908, 0.010680376552045345, -0.004935831297188997, 0.027990875765681267, -0.008367855101823807, -0.028472093865275383, 0.00036007841117680073, 0.0008805629913695157, -0.002110343659296632, -0.0012840847484767437, 0.004635069519281387, -0.016080718487501144, 0.010192475281655788, -0.014984608627855778, 0.008341120555996895, -0.019262107089161873, 0.009784775786101818, 0.005390315316617489, 0.015051444992423058, 0.001207223511300981, -0.012879278510808945, 0.008842390030622482, -0.027429454028606415, 0.0053736064583063126, 0.0033952638041228056, 0.003712734207510948, -0.00610880134627223, 0.0013676296221092343, 0.021400855854153633, 0.0030560714658349752, 0.00687073078006506, 0.02268410474061966, -0.0017577841645106673, 0.00215545785613358, 0.021868707612156868, -0.01561286672949791, -0.002915716264396906, -0.005637608002871275, 0.008661932311952114, 0.001590694417245686, -0.006733716931194067, -0.0045582083985209465, 0.011355419643223286, 0.03058410808444023, -0.002755309920758009, -0.004631727933883667, 0.004745348822325468, -0.01697631925344467, -0.010306095704436302, -0.008541627787053585, 0.017377333715558052, 0.01721692830324173, 0.004768741317093372, 0.027670063078403473, -0.029728608205914497, 0.015332155860960484, -0.017925389111042023, -0.0013693005312234163, -0.007231644354760647, -0.015826741233468056, 6.464284524554387e-05, -0.0043042320758104324, 0.0012631985591724515, -0.014984608627855778, -0.025664985179901123, -0.014677164144814014, 0.030370233580470085, 0.00900947954505682, -0.0049926419742405415, 0.0042039779946208, -0.007231644354760647, 0.013527586124837399, -0.01812589541077614, 0.010553388856351376, -0.006135535892099142, 0.0008500691037625074, -0.0028756146784871817, 0.035824041813611984, 0.013915234245359898, 0.008755503222346306, -0.012504996731877327, 0.006015230901539326, -0.012839176692068577, 0.024194596335291862, 0.025571415200829506, -0.013901866972446442, -0.015973780304193497, 0.021427590399980545, -0.002098647179082036, -0.01882098987698555, -0.002640018006786704, -0.010259310714900494, 0.011174962855875492, 0.0051196301355957985, -0.011956942267715931, -0.014596960507333279, -0.008006940595805645, 0.02030474692583084, -0.02470254898071289, 0.004187269136309624, -0.029140451923012733, -0.02442183904349804, -0.0004941679653711617, 0.0023192057851701975, -0.012311172671616077, 0.020598825067281723, 0.004193952772766352, -0.005089554004371166, 0.019542817026376724, -0.00131750269792974, -0.007599242031574249, 0.026774462312459946, 0.00694425031542778, 0.004581600893288851, 0.01855364628136158, -0.03467446565628052, 0.016521833837032318, -0.02375347912311554, 0.0008258410962298512, -0.029434530064463615, -0.01640152931213379, 0.013701359741389751, -0.021788503974676132, 0.021561261266469955, 0.006897464860230684, -0.024381736293435097, -0.006706982851028442, -0.013046368025243282, 0.012317856773734093, 0.00042983840103261173, -0.005183123983442783, -0.0006098775775171816, -0.005453809630125761, 0.0026116129010915756, 0.001451174495741725, 0.008862440474331379, 0.005624241195619106, -0.0127522898837924, -0.0049725910648703575, -0.006950933486223221, 0.014824203215539455, 0.003179718041792512, -0.006422929931432009, -0.01735059916973114, -0.06908158957958221, 0.0013659587129950523, 0.009490697644650936, -0.006663539446890354, -0.005470518488436937, -1.7505262803751975e-05, 0.02043841779232025, -0.005243276245892048, -0.011041291058063507, -0.012598567642271519, 0.03392590209841728, -0.016053983941674232, -0.011435622349381447, -0.0178719200193882, -0.006215738598257303, 0.010112271644175053, -0.008788920938968658, -0.014075640588998795, 0.002028469694778323, 0.005737862084060907, 0.00927682314068079, -0.018486810848116875, 0.01892792619764805, 0.018620481714606285, -0.011228431016206741, 0.008294335566461086, -0.01895466074347496, -0.00015654221351724118, 0.006473056972026825, -0.0170966237783432, -0.004183927550911903, 0.002354294527322054, 0.01267208717763424, 0.009256772696971893, -0.008681983686983585, -0.004885704256594181, -0.015826741233468056, 0.02376684546470642, -0.008541627787053585, -0.000794929510448128, 0.009243405424058437, 0.028124546632170677, 0.006202371791005135, -0.0011203368194401264, 0.008421323262155056, -0.010667010210454464, -0.010292728431522846, 0.009717940352857113, 0.006486424244940281, 0.019422512501478195, 0.009156518615782261, -0.005139680579304695, 0.0011119822738692164, -0.023967353627085686, 0.0008542463765479624, 0.002778702648356557, -0.022857878357172012, 0.008782237768173218, -0.02801761031150818, 0.008421323262155056, -0.03895196318626404, -0.013520902954041958, -0.0410907119512558, 0.001329198945313692, 0.00023204588796943426, 0.027135375887155533, -0.001058513531461358, 0.019863629713654518, 0.009664471261203289, 0.0003609138657338917, 0.007806433364748955, 0.0019215320935472846, -0.0008671958348713815, 0.02951473370194435, -0.01723029464483261, 0.011215063743293285, -0.002873943652957678, 0.01936904340982437, 0.003438707208260894, 0.002890652744099498, 0.019048232585191727, 0.010720478370785713, -0.0015639601042494178, -0.007906687445938587, -0.004357700701802969, -0.002666752552613616, -0.0014979596016928554, 0.013106520287692547, -0.00786658562719822, 0.005109604448080063, 0.014236046932637691, 0.008922592736780643, 0.004955882206559181, 0.0018012275686487556, -0.008628514595329762, 0.0023208765778690577, -0.02164146490395069, 0.011301950551569462, 0.009704573079943657, 3.5930822832597187e-06, 0.014877671375870705, -0.0009716268978081644, 0.014062273316085339, -0.025451110675930977, 0.029327593743801117, -0.009771408513188362, -0.014904405921697617, 0.010332830250263214, 0.0018062401795759797, 0.023847049102187157, -0.014850936830043793, 0.010566756129264832, -0.014703897759318352, -0.026493750512599945, -0.001048488193191588, 0.012110665440559387, 0.019542817026376724, 0.014677164144814014, 0.005744545720517635, 0.003559011733159423, -0.007953472435474396, 0.0032615920063108206, 0.007619292475283146, 0.004447929095476866, -0.004401144105941057, 0.002877285471186042, 0.004036888480186462, -0.0132802939042449, 0.0015439093112945557, 0.018580380827188492, 0.00687073078006506, 0.004594968166202307, 0.010125638917088509, -0.02190880849957466, -0.027723532170057297, -0.005086211953312159, 0.01127521600574255, 0.00633938517421484, -0.002133736154064536, -0.012204235419631004, 0.007305163890123367, -0.012551781721413136, -0.0010042093927040696, 0.007325214799493551, 0.006840654648840427, -0.022229621186852455, -0.01175643503665924, 0.011850005015730858, 0.0004778766888193786, -0.005396998953074217, 0.002777031622827053, 0.005336846690624952, 0.0021721667144447565, -0.0023626491893082857, 0.01922200433909893, -0.005427075084298849, -0.011121493764221668, -0.0031930850818753242, 0.008581729605793953, -0.007285112980753183, -0.007986890152096748, -0.008260916918516159, -0.015920311212539673, 0.0037728867027908564, -0.02109340950846672, -0.004227370489388704, 0.017952123656868935, -0.021427590399980545, 0.013861766085028648, -0.023539604619145393, 0.0016491758869960904, -0.010366247966885567, 0.008554995059967041, -0.0034921758342534304, 0.00959763489663601, -0.025143666192889214, 0.03673301264643669, -0.013494168408215046, -0.006937566678971052, 0.015064812265336514, 0.003194756107404828, 0.0052332510240375996, 0.027563124895095825, 0.0002913627540692687, -0.0029959192033857107, 0.013173355720937252, -0.016602037474513054, 0.0055139618925750256, -0.008581729605793953, -0.015412358567118645, 0.010914302431046963, -0.014516757801175117, 0.003166350768879056, -0.00954416673630476, -0.004347675479948521, -0.0017761640483513474, 0.000463674048660323, -0.0013425661018118262, 0.0032148067839443684, -0.001581504475325346, 0.0010677034733816981, -0.000660422258079052, 0.010332830250263214, 0.015519295819103718, 0.01839323900640011, -0.024007456377148628, 0.010399666614830494, 0.005697760730981827, -6.694033072562888e-05, 0.01960965245962143, 0.014663796871900558, -0.008775553666055202, 0.007498987950384617, 0.019649755209684372, -0.015679702162742615, 0.010426400229334831, -0.00888917502015829, 0.016922850161790848, -0.008006940595805645, -0.012992898933589458, 0.0054003410041332245, -0.0037829119246453047, -0.006817261688411236, 0.005671026185154915, -0.0034103018697351217, -0.008180714212357998, 0.002497991779819131, -0.05034080147743225, -0.008989429101347923, -0.0049659074284136295, 0.006446322426199913, -0.017056521028280258, 0.012986215762794018, -0.004925806075334549, -0.004257447086274624, 0.014730632305145264, -0.034219980239868164, 0.010974454693496227, -0.015171749517321587, -0.007900003343820572, -0.013928601518273354, -0.017056521028280258, 0.007331898435950279, 0.009022846817970276, 0.019435880705714226, 0.004675171338021755, 0.004250763449817896, -0.018460076302289963, 0.006656855810433626, -0.011562610976397991, -0.006706982851028442, -0.009771408513188362, -0.0167089756578207, 0.00607204157859087, -0.021307285875082016, -0.009457279928028584, -0.007826483808457851, -0.006005205679684877, -0.015840107575058937, 0.008895858190953732, 0.024502040818333626, 0.01907496526837349, 0.005507278256118298, -0.005734520498663187, -0.00021293500321917236, 0.005072844680398703, -0.007953472435474396, 0.00661007035523653, -0.010834099724888802, 0.004337649792432785, 0.002107001841068268, -0.019850263372063637, 0.020344847813248634, -0.002526397118344903, -0.005420391447842121, 0.012966164387762547, 0.015412358567118645, -0.027309149503707886, -0.027589859440922737, -0.0021387487649917603, 0.006155586335808039, -0.023405931890010834, -0.012986215762794018, 0.002491308143362403, -0.030610842630267143, 0.01168291550129652, -0.0018095819978043437, 0.017698146402835846, -0.008234183304011822, -0.0010877542663365602, 0.022069213911890984, -0.010653642937541008, -0.014048906043171883, -0.0033518203999847174, 0.0028455385472625494, 0.03042370267212391, 0.02708190679550171, -0.028525562956929207, -0.02271083928644657, -0.009463963098824024, 0.025050096213817596, -0.0031095403246581554, 0.005814723204821348, -0.0022974840831011534, 0.006041965447366238, -0.002638347214087844, 0.006563285365700722, -0.017310498282313347, 0.0038965330459177494, 0.003993445076048374, -0.0017845185939222574, -0.014784101396799088, 0.013634523376822472, 0.010265994817018509, -0.01034619752317667, -0.006884097587317228, -0.009377077221870422, -0.005336846690624952, 0.005868192296475172, -0.017831819131970406, -0.009858295321464539, -0.006402879487723112, 0.0224434956908226, -0.01693621650338173, 0.008855757303535938, 0.010018701665103436, -0.009945182129740715, -0.009076314978301525, 0.00106018444057554, 0.003699367167428136, 0.00397339416667819, 0.002780373441055417, 0.011729700490832329, -0.020625559613108635, -0.022617269307374954, -0.0032766300719231367, 0.023713378235697746, 0.009216670878231525, 0.007298480253666639, -0.004371067974716425, 0.0242747999727726, -0.006209054961800575, 0.02509019710123539, -0.005052794236689806, 0.009256772696971893, -0.011047974228858948, 0.003428681753575802, 0.012551781721413136, 0.006055332720279694, -0.017310498282313347, -0.030904920771718025, -0.00691083213314414, -0.005691077094525099, 0.005450467579066753, 0.0021671541035175323, -0.017698146402835846, -0.0005689405952580273, 0.0006449664360843599, 0.03756177797913551, -0.008628514595329762, -0.011696282774209976, 0.016120819374918938, -0.008047042414546013, -0.033284276723861694, 0.01883435621857643, 0.007726230192929506, 0.0048188683576881886, 0.00967115443199873, 0.01447665598243475, 0.0051129464991390705, -0.0013835032004863024, -0.04806837812066078, -0.020117606967687607, -0.01919526979327202, 0.01666887290775776, 0.006977668032050133, 0.006479740608483553, -0.020638925954699516, 0.024862954393029213, 0.02296481467783451, 0.0016575303161516786, 0.011422255076467991, 0.021668199449777603, 0.0036091385409235954, -0.00400681234896183, -0.00037950259866192937, 0.008882490918040276, -0.021320652216672897, -0.0020117606036365032, 0.009965232573449612, 0.023432666435837746, -0.009189936332404613, 0.007064554840326309, 0.003966710530221462, 0.035048745572566986, -0.0029006781987845898, -0.007245011627674103, -0.003906558267772198, 0.029701873660087585, 0.007131390739232302, -0.010847466997802258, 0.014035538770258427, -0.009751358069479465, -0.006058674305677414, -0.008053725585341454, 0.011956942267715931, -0.027028437703847885, -0.0005655988352373242, -0.010974454693496227, -0.0016800874145701528, -0.0030126282945275307, -0.009417178109288216, 0.010667010210454464, 0.0005192314274609089, 0.014490023255348206, 0.003682658076286316, -0.0007285113097168505, -0.00011999133130302653, -0.006917515769600868, 0.005707785952836275, 0.006703640799969435, -0.014770734123885632, -0.008956010453402996, -0.003719417843967676, -0.008060409687459469, 0.011362102814018726, 0.007305163890123367, -0.005356897599995136, 0.01447665598243475, 0.009076314978301525, -0.012718872167170048, 0.0003208123380318284, -0.007953472435474396, 0.006369461305439472, 0.008808971382677555, -0.0034854921977967024, -0.006616753991693258, -0.013494168408215046, -0.023258892819285393, 0.027335884049534798, 0.016094084829092026, -0.0008308537653647363, 0.009898397140204906, -0.007692812010645866, -0.00021450147323776037, 0.0041505093686282635, -0.010834099724888802, 0.003548986278474331, -0.004752032458782196, 0.012130715884268284, -0.009637736715376377, 0.008521577343344688, 0.011522509157657623, -0.0007694482919760048, -0.0052466182969510555, 0.012037145905196667, 0.015171749517321587, -0.006349410396069288, 0.0003824266605079174, 0.01400880515575409, 0.012378009036183357, 0.019930465146899223, 0.01601388119161129, 0.008969377726316452, -0.008454740978777409, 0.000662093167193234, -0.007458886597305536, 0.005353555548936129, 0.013467433862388134, -0.00557411415502429, 0.010319462977349758, -0.01180990319699049, 0.005554063245654106, 0.0025832075625658035, 0.004611677024513483, -0.010225892998278141, 0.014703897759318352, -0.028124546632170677, 0.005988496821373701, -0.016495101153850555, 0.03756177797913551, 0.012378009036183357, 0.012919379398226738, -0.007599242031574249, 0.020598825067281723, 0.007625976111739874, 0.005677709821611643, -0.010433084331452847, -0.005848141387104988, 1.5938796423142776e-05, -0.017257029190659523, -0.0029925773851573467, -0.00920330360531807, 0.011435622349381447, 0.0023125221487134695, -0.017805084586143494, 0.016735710203647614, 0.005166415125131607, -0.01188342273235321, -0.014316249638795853, -0.0005480544059537351, -0.009022846817970276, 0.0034888340160250664, -0.004995983559638262, -0.026640789583325386, 0.01614755392074585, -0.013266926631331444, -0.00787326879799366, 0.0027603227645158768, 0.005219883751124144, -0.0016458340687677264, 0.01962302066385746, 0.0009649433195590973, -0.006195688154548407, 0.00927682314068079, 0.018994763493537903, 0.014115742407739162, -0.012859227135777473, 0.010265994817018509, -0.010192475281655788, 0.0041638766415417194, -0.018847724422812462, -0.00656996900215745, 0.008347803726792336, -0.01388850063085556, -0.013026316650211811, 0.0011036278447136283, -0.006426271982491016, -0.017938755452632904, -0.0023994087241590023, 0.020892903208732605, -0.003572379006072879, 0.011428939178586006, -0.015265319496393204, -0.03494180738925934, 0.006178978830575943, 0.0028238168451935053, -0.03176042065024376, 0.009310240857303143, 0.01347411796450615, 0.00557411415502429, 0.01724366284906864, 0.01946261338889599, 0.02070576138794422, -0.0054003410041332245, 0.01601388119161129, 0.004193952772766352, 0.012591883540153503, -0.007492304313927889, 0.019596286118030548, -0.0018847724422812462, 0.016749076545238495, -0.01919526979327202, -0.012765657156705856, 0.02083943411707878, -0.010245943441987038, -5.82725515414495e-05, 0.005139680579304695, 0.00400681234896183, -0.005761254578828812, 0.005490569397807121, -0.023686643689870834, 0.009871662594377995, 0.0021721667144447565, -0.015679702162742615, -0.015332155860960484, -0.01515838224440813, -0.001980013446882367, -0.007472253870218992, -0.013273609802126884, -0.017992224544286728, 0.010519971139729023, -0.00040373060619458556, 0.019115068018436432, 0.005617557559162378, 0.013634523376822472, 0.0006700298981741071, -0.01801895909011364, -0.011482407338917255, 0.014797468669712543, 0.008100511506199837, -0.02547784522175789, 0.020531989634037018, -0.0012865910539403558, 0.028472093865275383, -0.0002863500558305532, 0.007585874758660793, 0.004568233620375395, -0.019128434360027313, 0.010947720147669315, 0.008595096878707409, -0.01800559088587761, -0.004000128712505102, 0.003037691581994295, -0.025451110675930977, 0.009891713038086891, -0.006456348113715649, 0.01321345753967762, -0.009631053544580936, -0.02120034769177437, 0.009343658573925495, 0.007184859365224838, 0.004865653347223997, 0.005560746882110834, -0.010486552491784096, 0.0008291829144582152, 0.005968445912003517, 0.03542302921414375, 0.01573317125439644, 0.019302207976579666, -0.013260242529213428, -0.015398991294205189, -0.013794929720461369, 0.005313454195857048, 0.01733723282814026, 0.011582661420106888, -0.01001201756298542, -0.0002186787169193849, -0.016254490241408348, -0.004080331884324551, 0.01960965245962143, -0.014596960507333279, 0.005691077094525099, 0.01867395080626011, 0.00801362469792366, -0.004060280974954367, 0.008822338655591011, 0.0004411169502418488, -0.016615405678749084, -0.013681309297680855, -0.012785707600414753, 0.015238584950566292, -0.009230038151144981, 0.012103981338441372, -0.022216252982616425, 0.0017795058665797114, -0.04004807025194168, 0.0174842718988657, 0.018379872664809227, -0.01522521860897541, 0.022670738399028778, -0.003281642682850361, 0.008982744999229908, -0.005684393458068371, 0.0034052892588078976, -0.005594165064394474, 0.009497381746768951, -0.0349685437977314, -0.014730632305145264, 0.005630924832075834, 0.001182995387353003, -0.026761094108223915, 0.0016967963892966509, 0.01972995698451996, 0.00888917502015829, -0.030744513496756554, 0.015572764910757542, 0.015920311212539673, -0.008762186393141747, -0.014195945113897324, -0.004915780387818813, -0.0011470711324363947, 0.025972431525588036, -0.008113878779113293, -0.0201577078551054, -0.00450473977252841, 0.004952540155500174, -0.009644420817494392, -0.0015405674930661917, 0.010065486654639244, 0.03122573345899582, -0.009590951725840569, -0.007051187567412853, 0.012758973054587841, -0.0170966237783432, 0.010499919764697552, -0.002787057077512145, 0.008040359243750572, -0.015800006687641144, 0.00894264318048954, -0.0066869319416582584, 0.010720478370785713, -0.01202377863228321, -0.030744513496756554, -0.014463288709521294, -0.01680254563689232, 0.013253559358417988, -0.001061855349689722, -0.0037695448845624924, 0.008521577343344688, -0.0066668810322880745, 0.011134861037135124, -0.003278300864621997, 0.021146878600120544, 0.012237653136253357, 0.001182995387353003, -0.0025848783552646637, -0.027188844978809357, -0.012859227135777473, -0.014490023255348206, 0.015385624021291733, -0.007773015182465315, -0.004708589054644108, -0.003709392389282584, -0.00341865629889071, 0.00634272675961256, 0.0063861701637506485, 0.017257029190659523, 0.01923537254333496, 0.005547379609197378, -0.0028137913905084133, 0.012090614065527916, -0.01708325557410717, -0.026587320491671562, -0.008909225463867188, 0.0020552040077745914, 0.0013693005312234163, -0.000670447654556483, 0.017992224544286728, -0.007766331546008587, 0.012732239440083504, -0.004280839581042528, 0.02256380021572113, 0.01962302066385746, 0.03045043721795082, 0.006683589890599251, 0.013033000752329826, 0.004618360660970211, 0.012531731277704239, 0.023138588294386864, 0.0008956010569818318, 0.005206516478210688, 0.0004941679653711617, 0.0008880820241756737, 0.005951737053692341, 0.0065265255980193615, 0.016201023012399673, 0.00908299908041954, -0.013567687943577766, 0.00821413192898035, 0.02323215827345848, 0.0005701938061974943, -0.008575046434998512, 0.031305935233831406, -0.007011086214333773, -0.0009983612690120935, 0.006817261688411236, -0.009557534009218216, 0.025183767080307007, 0.007385367061942816, 0.0038029628340154886, -0.012244337238371372, -0.009925131686031818, -0.007766331546008587, 0.015292054042220116, 0.007599242031574249, 0.007485620677471161, -0.02256380021572113, -0.0030026028398424387, -0.035824041813611984, 0.011308634653687477, -0.005477202124893665, 0.02602590061724186, -0.0225504320114851, 0.03347142040729523, -0.00794010516256094, -0.008915909565985203, 0.005366922821849585, 0.00794678833335638, 0.021293917670845985, 0.026132836937904358, 0.014102375134825706, -0.017537740990519524, 7.832331903045997e-05, 0.016241123899817467, -0.013754828833043575, 0.006984351668506861, -0.0006257510976865888, -0.009577584452927113, 0.003946660086512566, 0.011241798289120197, -0.0001251084468094632, 0.020719129592180252, -9.743421105667949e-05, 0.010025384835898876, -0.027723532170057297, -0.003675974439829588, -0.007519038859754801, 0.019516082480549812, 0.007097972556948662, -0.009484014473855495, -0.007893320173025131, -0.005196491256356239, -0.015559397637844086, 0.005824748892337084, -0.013514218851923943, 0.027456188574433327, -0.0015029723290354013, 0.020237911492586136, 0.009484014473855495, -0.00920998677611351, -0.018246201798319817, 0.008915909565985203, 0.0004933325108140707, -0.012237653136253357, -0.010874200612306595, -0.02069239504635334, 0.003032678971067071, 0.021160246804356575, -0.021681565791368484, 0.0031028566882014275], "604f912d-6dba-41cf-ae04-4146618412f1": [-0.005303045269101858, 0.004133020993322134, -0.0027014382649213076, 0.024822084233164787, -0.0172029510140419, 0.007886682637035847, -0.007519302889704704, 0.021723316982388496, -0.042392414063215256, 0.045299507677555084, 0.014974713325500488, 0.03539622947573662, -0.019311390817165375, -0.012091581709682941, -0.01942320168018341, -0.0003389276680536568, -0.007387525402009487, 0.0010442367056384683, 0.01585322991013527, -0.03536428138613701, 0.05341380462050438, -0.02161150611937046, -0.04351052641868591, 0.010246696881949902, -0.009200464002788067, -0.020445475354790688, -0.026451334357261658, 0.005526667460799217, -0.01860857754945755, -0.006688705179840326, 0.024838058277964592, 0.01804952137172222, -0.010150859132409096, 0.01255479920655489, -0.01638832688331604, -0.030700158327817917, 0.00028451954131014645, -0.013177747838199139, 0.01617269031703472, -0.01622859574854374, -0.011069308035075665, 0.0030748078133910894, 0.0029310504905879498, -0.013361437246203423, -0.017522411420941353, 0.00560653256252408, -0.01779395341873169, -0.014223980717360973, -0.007706985808908939, 0.020381582900881767, 0.02768125757575035, 0.0023660047445446253, 0.004236845765262842, -0.010861658491194248, 0.022601833567023277, -0.03148283809423447, 0.004256811924278736, 0.08797943592071533, 0.002154362155124545, -0.05897241830825806, -0.001667184755206108, -0.030955728143453598, 0.00028701534029096365, 0.0013447292149066925, 0.02886326052248478, -0.018464820459485054, 0.034821201115846634, -0.006636792793869972, -0.020685071125626564, 0.025636708363890648, -0.01785784400999546, -0.00904073379933834, -0.049899738281965256, -0.005087409168481827, 0.02598811499774456, 0.026435360312461853, 0.011883932165801525, 0.032105784863233566, 0.03907002508640289, 0.015238268300890923, -0.002785296645015478, 0.01214748714119196, -0.0032065853010863066, -0.02364008128643036, 0.04261603578925133, 0.01263466477394104, -0.03830331936478615, -0.049676116555929184, -0.013617006130516529, 0.010781793855130672, 0.001391650061123073, 0.0002232480183010921, 0.01851273886859417, -0.018337035551667213, 0.029438288882374763, 0.022505994886159897, 0.011300916783511639, 0.015022632665932178, 0.0061376360245049, -0.022314319387078285, -0.036290720105171204, 0.03584347292780876, -0.04117846488952637, -0.001241902937181294, 0.015070551075041294, 0.008545570075511932, 0.012019703164696693, 0.001374678686261177, -0.01582927070558071, 0.024790138006210327, -0.020445475354790688, -0.057087600231170654, 0.03306416794657707, -0.00861744862049818, -0.039165861904621124, -0.020062122493982315, 0.014711158350110054, 0.016755705699324608, -0.03373503312468529, -0.02889520674943924, 0.011891919188201427, 0.004544326104223728, 0.01729878969490528, 0.009000801481306553, -0.014623306691646576, 0.006001865025609732, 0.01723489724099636, 0.01785784400999546, 0.06670336425304413, 0.006377231329679489, -0.045139774680137634, 0.013002044521272182, 0.02379981055855751, 0.014327805489301682, 0.009815425612032413, 0.012067622505128384, 0.03555595874786377, 0.05216790735721588, 0.002314092358574271, 0.009831398725509644, -0.03603515028953552, 0.0025496946182101965, -0.013872574083507061, 0.022410158067941666, -0.005370930302888155, 0.013353451155126095, -0.04702459275722504, 0.06555330753326416, -0.0020465441048145294, 0.05232763662934303, -0.03108351118862629, -0.03456563130021095, -0.034980930387973785, 0.0016542066587135196, 0.04702459275722504, -0.03558790683746338, -0.005311031825840473, 0.04213684797286987, -0.0035180593840777874, 0.0037217154167592525, -0.00863342173397541, -0.03849499672651291, 0.0161087978631258, 0.033255841583013535, 0.04331884905695915, 0.006153608672320843, 0.05328601971268654, 0.055777810513973236, -0.03830331936478615, 0.022729618474841118, 0.012155474163591862, 0.0031726425513625145, 0.004137014038860798, -0.0029889526776969433, -0.024534570053219795, -0.022250426933169365, 0.00039857695810496807, -0.018880117684602737, 0.03392671048641205, 0.0033743020612746477, -0.03670601546764374, 0.009503951296210289, -0.025556843727827072, 0.007291687186807394, 0.024854030460119247, 0.04271187633275986, 0.0056544519029557705, 0.0287674218416214, 0.012450975365936756, 0.006337298545986414, 0.010717901401221752, -0.046705134212970734, 0.0035799548495560884, 0.04932470992207527, 0.020413529127836227, -0.020685071125626564, 0.0012079601874575019, -0.0019147667335346341, 0.0027293909806758165, 0.012914192862808704, -0.006193541456013918, -0.007295680232346058, -0.020717017352581024, 0.026658983901143074, -0.023879677057266235, 0.04606620967388153, -0.020876746624708176, -0.04197711497545242, 0.017442546784877777, -0.00741947116330266, 0.06747006624937057, -0.014128142967820168, -0.0024298967327922583, -0.004855800420045853, -0.014359751716256142, -0.005370930302888155, 0.0014745100634172559, 0.005538647528737783, -0.03680185601115227, -0.02141983062028885, -0.013273585587739944, -0.032441217452287674, -0.008417785167694092, -0.02911882847547531, -0.04731210693717003, -0.025189464911818504, -0.02223445475101471, 0.01261869166046381, -0.004061142448335886, -0.016532083973288536, 0.0077309454791247845, 0.01988641917705536, 0.009487978182733059, -0.01485491544008255, -0.024183163419365883, 0.027633337303996086, 0.055713921785354614, -0.022745590656995773, 0.03178632631897926, 0.0010352518875151873, 0.01364895235747099, 0.03023694083094597, -0.017330734059214592, -0.01302600372582674, 0.01529417373239994, 0.015957053750753403, -0.012139501050114632, 0.024135245010256767, 0.004384595900774002, 0.0002603104221634567, 0.005985891912132502, 0.005055463407188654, 0.016659867018461227, -0.020685071125626564, -0.01867247000336647, 0.026163818314671516, 0.02699441649019718, -0.023224782198667526, 0.017809925600886345, -0.039421431720256805, -0.0068723950535058975, 0.021787209436297417, -0.026914551854133606, 0.02370397374033928, 0.06258232146501541, -0.025604763999581337, 0.037983860820531845, -0.0007602162659168243, -0.00955187063664198, 0.039485324174165726, 0.037760235369205475, -0.005319018382579088, 0.008258054964244366, -0.027106227353215218, -0.007683026138693094, 0.008745232596993446, -0.029166748747229576, -0.001030260231345892, -0.013792709447443485, -0.02811252884566784, -0.014814983122050762, -0.009503951296210289, 0.045427288860082626, 0.012379095889627934, 0.02955010160803795, 0.017746033146977425, -0.028192393481731415, -0.02154761366546154, -0.04402166232466698, -0.04932470992207527, -0.007770877797156572, 0.024933895096182823, 0.016771679744124413, 0.005918006878346205, 0.012139501050114632, 0.003795590717345476, -0.0012648641131818295, -0.022665726020932198, -0.009272342547774315, -0.004496407229453325, -0.016052892431616783, -0.012251311913132668, -0.019311390817165375, -0.012051649391651154, 0.016372352838516235, -0.009416099637746811, 0.051209527999162674, 0.010622063651680946, -0.030859889462590218, 0.020541314035654068, 0.039261702448129654, -0.037888020277023315, -0.000780681730248034, -0.01404029130935669, 0.019471120089292526, 0.005271099042147398, 0.012283258140087128, 0.036482393741607666, -0.023751892149448395, -0.008761205710470676, 0.0187683068215847, 0.015621621161699295, -0.019215552136301994, 0.05245542153716087, 0.02546100504696369, -0.0672144964337349, -0.0007971539162099361, -0.04478836804628372, 0.0017560346750542521, -0.019375283271074295, -0.033319734036922455, 0.007379538845270872, -0.02758541889488697, -0.016739733517169952, -0.040827058255672455, -0.002980966353788972, -0.05245542153716087, -0.022617807611823082, -0.03974089398980141, -0.02696247026324272, -0.01835300773382187, -0.021883048117160797, 0.04750378429889679, -0.021164260804653168, -0.001509451074525714, -0.003246517851948738, 0.04884551838040352, 0.025125572457909584, -0.0009284322150051594, 0.0011670293752104044, 0.0009503951296210289, -0.009000801481306553, -0.0012119534658268094, -0.0008939903927966952, 0.01036649476736784, -0.019007902592420578, -0.01645221747457981, 0.00958381686359644, -0.000807137053925544, 0.012403056025505066, 0.0006798519752919674, -0.02801669016480446, -0.026786766946315765, 0.006612833589315414, -0.0008310966077260673, 0.03046056441962719, 0.02726595848798752, 0.011404741555452347, -0.015661554411053658, 0.0010262670693919063, -0.016659867018461227, -0.004224865697324276, -0.00477593531832099, 0.018065493553876877, 0.009120598435401917, -0.04044370725750923, 0.012730502523481846, 0.00591002032160759, -0.005886060651391745, 0.037919968366622925, 0.0030847908928990364, -0.015613634139299393, 0.012203393504023552, -0.001800958882085979, 0.05309434235095978, -0.0007701994036324322, -0.0009508943185210228, -0.020844800397753716, -0.024901950731873512, -0.0009808436734601855, -0.02161150611937046, 0.039453379809856415, -0.019119713455438614, -0.019087767228484154, 0.003300426760688424, -0.021563587710261345, 0.005450795870274305, 0.008353893645107746, 0.0037736278027296066, -0.027345823124051094, 0.06488243490457535, -0.000754226406570524, -0.01527820061892271, -0.022537941113114357, -0.016404299065470695, -0.02908688224852085, -0.016028933227062225, -0.01811341382563114, 0.030476536601781845, 0.012890233658254147, 0.00672464445233345, -0.002601606771349907, 0.045235615223646164, 0.007335613016039133, 0.030093183740973473, 0.007475377060472965, -0.012219365686178207, 0.025381140410900116, -0.046960700303316116, -0.02852782793343067, 0.03715326264500618, 0.01870441436767578, -0.042104899883270264, -0.017378654330968857, 0.03833526745438576, 0.018001602962613106, 0.05213596299290657, 0.023719945922493935, -0.0013607023283839226, 0.0056544519029557705, 0.0046960702165961266, 0.05239152908325195, -0.019247498363256454, 0.004492414183914661, 0.00014088708849158138, -0.01485491544008255, 0.010733874514698982, -0.027138173580169678, 6.91956520313397e-05, 0.01083769928663969, 0.0014146112371236086, 0.036642126739025116, 0.009735560044646263, -0.0008969853515736759, -0.03661017864942551, -0.011979770846664906, -0.01792173646390438, -0.016028933227062225, 0.015461890958249569, -0.013425329700112343, 0.00853758305311203, 0.018400928005576134, -0.0067206514067947865, 0.002172331791371107, -0.002260183449834585, -0.0029869561549276114, 0.027777094393968582, -0.023033104836940765, 0.0038614794611930847, -0.04309522733092308, -0.03913391754031181, -0.013992371968925, 0.021883048117160797, -0.006273406557738781, 0.03245719149708748, -0.0245505440980196, -0.017682140693068504, 0.018592603504657745, 0.006780550349503756, -0.016899462789297104, -0.002014598110690713, 0.018209250643849373, -0.014990686438977718, 0.01766616851091385, 0.0006698688375763595, -0.025413086637854576, 0.0011949820909649134, 0.00048393281758762896, -0.005319018382579088, -0.026595091447234154, 0.02405538037419319, -0.036514341831207275, -0.032137732952833176, 0.031067539006471634, 0.0032844538800418377, 0.019039848819375038, -0.013936466537415981, -0.03843110427260399, -0.013441302813589573, 0.03395865485072136, 0.018129386007785797, -0.016787651926279068, 0.005063449963927269, 0.008218122646212578, -0.0034561639185994864, 0.01119709201157093, 0.003018902149051428, 0.013489222154021263, -0.0170432198792696, -0.0261158999055624, -0.007175882812589407, -0.03756856173276901, 0.006421157158911228, -0.014391697943210602, -0.039325594902038574, 0.026658983901143074, 0.014000358991324902, 0.00997515581548214, -0.00808235164731741, -0.0030827943701297045, -0.030013319104909897, 0.0206371508538723, -0.05152898654341698, -0.01312184240669012, 0.011189105920493603, 0.007499336265027523, -0.007411484606564045, -0.028320178389549255, 0.032377324998378754, -0.003522052662447095, 0.007143936585634947, -0.02308102510869503, -0.031195322051644325, -0.003839516546577215, -0.0046880836598575115, -0.009192476980388165, -0.01225929893553257, -0.02023782581090927, 0.023815784603357315, -0.014200021512806416, -0.016332421451807022, 0.018209250643849373, -0.0046601309441030025, 0.012866273522377014, 0.03319195285439491, 0.02364008128643036, -0.01041441410779953, 0.01307392306625843, 0.021164260804653168, -0.001916763256303966, -0.026419388130307198, 0.024901950731873512, -0.017186976969242096, -0.011340849101543427, -0.021962912753224373, -0.004931672476232052, 0.018129386007785797, 0.03271276131272316, 0.0067446110770106316, -0.008920935913920403, -0.021339964121580124, 0.015150416642427444, -0.022346265614032745, 0.0013327494962140918, -0.007714972365647554, -0.03124324232339859, 0.0001383913040626794, -0.011364809237420559, 0.0006773562054149806, -0.017841871827840805, -0.024183163419365883, 0.002042550826445222, -0.002314092358574271, 0.02148372121155262, -0.0024997787550091743, 0.0015394005458801985, -0.023304646834731102, -0.010134886018931866, -0.021435802802443504, -0.0033463493455201387, 0.014695185236632824, -0.01616470329463482, 0.05517083778977394, 0.008074365556240082, -0.02576449327170849, 0.018864145502448082, 0.0029530134052038193, -0.019007902592420578, -0.042104899883270264, -0.002669492270797491, 0.012874260544776917, -0.027761122211813927, 0.0018848172621801496, -0.01313781552016735, 0.018592603504657745, 0.012834327295422554, -0.015006659552454948, -0.0243908129632473, -0.022697672247886658, 0.008641407825052738, -0.030109157785773277, 0.011165146715939045, -0.011963797733187675, 0.0034721367992460728, -0.01991836540400982, -0.000851562013849616, 0.0069722263142466545, -0.0029709830414503813, -1.2159155630797613e-05, -0.003565978491678834, 0.023368539288640022, 0.025476979091763496, 0.012842314317822456, -0.05545835196971893, -0.03046056441962719, 0.02073298953473568, -0.010390453971922398, 0.00495563168078661, 0.0024099305737763643, -0.03319195285439491, 0.0223622377961874, -0.03456563130021095, 0.019902393221855164, -0.00448842067271471, 0.019694743677973747, 0.008513623848557472, 0.008134264498949051, 0.03108351118862629, 0.03728104755282402, -0.03839915990829468, 0.016020946204662323, -0.007726951967924833, 0.02082882821559906, -0.025780467316508293, -0.002208271063864231, 0.02073298953473568, -0.02729790471494198, -0.02974177710711956, 0.014335792511701584, 0.015613634139299393, -0.01857663132250309, -0.0028092563152313232, 0.0011211069067940116, -0.045203667134046555, 0.010829712264239788, -0.03661017864942551, 0.00817819032818079, -0.0026754820719361305, -0.015525782480835915, 0.0033503426238894463, -0.02442275919020176, -0.005858107935637236, 0.0035979244858026505, -0.00020128510368522257, -0.012115541845560074, 0.009663681499660015, 0.009272342547774315, 0.006041797809302807, 0.03443784639239311, 0.03293638303875923, -0.004440501797944307, 0.009479992091655731, -0.0012498893775045872, 0.028064608573913574, 0.002511758590117097, -0.046832915395498276, -0.007958561182022095, 0.052742935717105865, -0.015557728707790375, -0.018991930410265923, 0.02089272066950798, -0.020685071125626564, 0.04775935411453247, 0.01570148579776287, -0.00022075223387219012, -0.002011603210121393, -0.0024558529257774353, 0.026419388130307198, 0.010055020451545715, 0.0547235906124115, 0.0030029292684048414, -0.01446357648819685, 0.015022632665932178, 0.008777178823947906, -0.0016811611130833626, -0.00741947116330266, -0.006924307439476252, 0.013656938448548317, 0.014255926944315434, -0.00477593531832099, -0.033287789672613144, -0.024103298783302307, -0.03546012192964554, 0.024885976687073708, -0.010534211993217468, -0.0069163208827376366, -0.006732631009072065, -0.010118912905454636, -0.016348393633961678, 0.007998493500053883, 0.0028052630368620157, 0.03434200957417488, -0.031914107501506805, 0.0001637235254747793, 0.0028431988321244717, 0.030476536601781845, -0.006536961533129215, -0.04443696141242981, -0.002260183449834585, -0.012514866888523102, -0.0318981371819973, -0.007639100309461355, -0.0068005165085196495, -4.414420618559234e-05, 0.0009978150483220816, 0.025157518684864044, -0.02964593842625618, -0.029102856293320656, -0.008545570075511932, -0.021595533937215805, 0.012155474163591862, 0.014535455033183098, -0.0008126277825795114, 0.003885438898578286, -0.012403056025505066, -0.0037836108822375536, -0.007351586129516363, -0.0033842851407825947, 0.005478748586028814, 0.0017650194931775331, 0.0036059110425412655, 0.04616205021739006, -0.03523650020360947, -0.040859002619981766, -0.01707516610622406, 0.04264798387885094, -0.0014215994160622358, -0.0026135866064578295, 0.0029849596321582794, 0.002084480132907629, 0.003967300523072481, -0.0025976134929805994, -0.012786408886313438, -0.0046880836598575115, 0.013601033017039299, -0.04117846488952637, 0.02141983062028885, 0.002964993240311742, 0.01701127365231514, -0.01844884641468525, 0.03370308876037598, -0.0164202731102705, -0.0005750290001742542, -0.03514065966010094, -0.0172029510140419, -0.0005271098925732076, -0.011875946074724197, 0.00404916238039732, -0.0023081025574356318, 0.019247498363256454, 0.016995301470160484, -0.03117934986948967, 0.0534776970744133, 0.009767506271600723, 0.02201083116233349, 0.016595976427197456, 0.007854736410081387, 0.028591718524694443, -0.0006364253349602222, 0.06906737387180328, -0.019998230040073395, -0.004164966754615307, -0.004432515241205692, -0.02132399193942547, 0.002369998022913933, -0.01224332582205534, 0.009048719890415668, 0.021148288622498512, 0.02748958021402359, 0.008305974304676056, 0.039421431720256805, -0.0036877726670354605, 0.011907892301678658, 0.024534570053219795, -0.05344574898481369, -0.029246613383293152, -0.023847730830311775, 0.011141186580061913, 0.009663681499660015, -0.011915878392755985, 0.000523615803103894, -0.029246613383293152, 0.019934337586164474, -0.016284501180052757, -0.0017769993282854557, -0.01261869166046381, 0.01932736299932003, 0.016180677339434624, -0.004101074766367674, 0.01085367240011692, -0.007443430833518505, -0.005191233940422535, 0.015901148319244385, 0.019870446994900703, -0.018496766686439514, 0.004284764640033245, 0.004755969159305096, -0.010861658491194248, -0.007335613016039133, -0.0014315826119855046, 0.015485850162804127, -0.014303846284747124, 0.041082628071308136, 0.021212181076407433, 0.0078108105808496475, -0.0025856338907033205, -0.011796080507338047, -0.03167451545596123, 0.00011156161781400442, 0.014767063781619072, 0.0031347067561000586, 0.0026754820719361305, 0.007060077972710133, 0.013848614878952503, -0.016340406611561775, -0.02736179530620575, 0.0207968819886446, 0.003010915592312813, 0.0375366136431694, 0.003008919069543481, -0.033575303852558136, -0.025492951273918152, 0.023368539288640022, 0.011380782350897789, -0.010693942196667194, 0.018065493553876877, 0.002128405962139368, -0.014455589465796947, 0.000984337879344821, 0.0055825733579695225, -0.004364629741758108, -0.0387825109064579, 0.024231083691120148, 0.03017304837703705, 0.01651610992848873, 0.015437930822372437, -0.026914551854133606, -0.011476620100438595, -0.032664842903614044, 0.0047240229323506355, -0.021627480164170265, -0.018033547326922417, 0.0003476629208307713, 0.0002026577858487144, -0.0006054776022210717, 0.0322175957262516, 0.013289558701217175, 0.0014725134242326021, 0.026067981496453285, 0.018225224688649178, 0.008006480522453785, 0.0013876567827537656, -0.0012768438318744302, 0.017091140151023865, -0.040986787527799606, 0.014192035421729088, 0.016963355243206024, -0.012155474163591862, -0.01404029130935669, 0.02301713265478611, -0.003318396396934986, -0.005458781961351633, -0.009264355525374413, -0.003857486182823777, -0.015006659552454948, -0.010055020451545715, 0.004137014038860798, -0.01835300773382187, 0.025780467316508293, 0.008561543188989162, -0.004113054368644953, -0.01302600372582674, 0.0428396612405777, -0.014503508806228638, -0.014974713325500488, -0.01945514790713787, 0.026067981496453285, 0.012754462659358978, -0.02614784613251686, -0.001980655360966921, -0.002421910408884287, 0.0225219689309597, -3.2663592719472945e-05, 0.019215552136301994, -0.049899738281965256, 0.026339521631598473, 0.008305974304676056, 0.007151923142373562, -0.015685513615608215, -0.0069003477692604065, -0.00896086823195219, -0.006532968487590551, -0.009000801481306553, -0.034725360572338104, -0.004899726249277592, 0.015302160754799843, 0.009887304157018661, -0.009360194206237793, -0.010765820741653442, -0.006229480728507042, 0.001338739413768053, -0.0515928789973259, -0.030284861102700233, -0.008002487011253834, 0.06306151300668716, -0.02386370301246643, 0.011492593213915825, -0.004564292728900909, 0.004963618237525225, 0.020221853628754616, 0.00821013655513525, -0.0003152177087031305, -0.01537403929978609, 0.007056084927171469, 0.025684628635644913, 0.006393204443156719, -0.029230641201138496, -0.02742568776011467, 0.0004719530406873673, 0.009903277270495892, -7.424961950164288e-05, 0.023224782198667526, 0.015988999977707863, -0.005918006878346205, 0.012123527936637402, -0.009272342547774315, -0.006357265170663595, 0.01923152431845665, -0.004224865697324276, 0.013936466537415981, -0.01119709201157093, -0.00956784375011921, 0.0022841428872197866, 0.006624813191592693, 0.04568285867571831, 0.007060077972710133, -0.03728104755282402, -0.006812496110796928, -0.030284861102700233, -0.014255926944315434, 0.004212886095046997, -0.02820836752653122, 0.04271187633275986, -0.0344059020280838, 0.008920935913920403, -0.005011537577956915, -0.03280859813094139, 0.03849499672651291, -0.033415574580430984, -0.02651522494852543, -0.006868402007967234, 0.029821641743183136, -0.016995301470160484, 0.0023939574602991343, -0.022761564701795578, 0.024215109646320343, -0.014239953830838203, -0.011740175075829029, -0.00019279943080618978, -0.017714086920022964, -0.004931672476232052, -0.03055640123784542, -0.020381582900881767, 0.01623658277094364, 0.024135245010256767, 0.0046800971031188965, -0.017378654330968857, 0.031355053186416626, -0.0046521443873643875, -0.013968412764370441, -0.019439173862338066, -0.019375283271074295, -0.0036518333945423365, 0.01265063788741827, -0.02151566743850708, -0.008665367029607296, -0.049835845828056335, 0.009464018978178501, -0.0023260721936821938, 0.010286630131304264, 0.029566073790192604, -0.006449109874665737, -0.011045348830521107, -0.020844800397753716, 0.018912063911557198, 0.005027510225772858, -0.0018848172621801496, 0.007762891240417957, 0.0007816800498403609, 0.02699441649019718, 0.014998672530055046, -0.016212623566389084, -0.014799010008573532, -0.007559235207736492, 0.0028791381046175957, -0.0015364056453108788, 0.007247761357575655, -0.02576449327170849, 0.00894489511847496, -0.05092201009392738, 0.05510694533586502, -0.0066847121343016624, -0.046928755939006805, 0.025636708363890648, 0.039421431720256805, 0.026131873950362206, 0.0036957592237740755, 0.010909577831625938, 0.015957053750753403, 0.016595976427197456, -0.03763245418667793, 0.0013077916810289025, 0.0068005165085196495, -0.005259119439870119, -0.013752777129411697, 0.015286187641322613, 0.027777094393968582, -0.0304925087839365, 0.013217680156230927, 0.037664398550987244, 0.012722516432404518, -0.023065051063895226, -0.019838500767946243, 0.014351765625178814, -0.013441302813589573, 0.017650196328759193, 0.006716657895594835, 0.0069083343259990215, -0.006704678293317556, -0.0002907590242102742, -0.019119713455438614, -0.007299673743546009, 0.013944452628493309, -0.006524981930851936, -0.0018608577083796263, -0.00763111375272274, -0.02474221959710121, -0.056001435965299606, -0.004248825367540121, 0.009799452498555183, 0.026467306539416313, 0.007507322821766138, -0.0322175957262516, 0.01860857754945755, 0.007127963472157717, 0.021899020299315453, -0.0027174113783985376, -0.016308460384607315, 0.0011400748044252396, 0.001117113628424704, -0.004196912981569767, -0.009695627726614475, -0.004588251933455467, 0.012738489545881748, -0.015182362869381905, -0.0018039537826552987, -0.015429944731295109, -0.018305089324712753, 0.019646823406219482, 0.005694384220987558, -0.005382910370826721, -0.027441661804914474, 0.02895909920334816, -0.013545127585530281, -0.011149173602461815, -0.02579643949866295, -0.013968412764370441, 0.011468634009361267, -0.019646823406219482, 0.006225487682968378, -0.011141186580061913, 0.0143837109208107, 0.0013237646780908108, -0.00563847878947854, -0.01141272857785225, 0.02004615031182766, 0.018321063369512558, 0.007591181434690952, -0.002671488793566823, -0.04165765643119812, -0.017123086377978325, -0.007531282491981983, -0.013393383473157883, -0.02392759546637535, -0.06657557934522629, 0.007683026138693094, 0.0020804868545383215, 0.013161774724721909, 0.016308460384607315, 0.015773365274071693, -0.021084396168589592, 0.013824655674397945, -0.009767506271600723, 0.023336593061685562, -0.018177304416894913, -0.006568907760083675, -0.00856952928006649, 0.0322175957262516, 0.0261158999055624, 0.009527910500764847, -0.004755969159305096, -0.048078812658786774, -0.000992823508568108, 0.016675841063261032, 0.03967700153589249, 0.03228148818016052, -0.008936909027397633, 0.03437395393848419, 0.0007202837150543928, 0.005354957655072212, 0.010965483263134956, 0.04296744242310524, -0.028815342113375664, 0.01945514790713787, -0.0028911179397255182, 0.032569002360105515, -0.01848079264163971, -0.004783921875059605, 0.01160440407693386, 0.04194517061114311, 0.009855357930064201, -0.016268528997898102, -0.03549206629395485, -0.021723316982388496, -0.017410600557923317, -0.03459757938981056, 0.01582128368318081, 0.027809040620923042, 0.018161332234740257, 0.013704857788980007, 0.02605200745165348, -0.007127963472157717, 0.014247940853238106, -0.005275092553347349, -0.023496324196457863, -0.019183605909347534, -0.031355053186416626, 0.0013067933032289147, 0.002901101019233465, 0.0033683122601360083, -0.0015483853640034795, -0.012834327295422554, -0.021308017894625664, 0.0034322042483836412, 0.013888547196984291, -0.007894668728113174, -0.015382025390863419, -0.01951904036104679, -0.00935220718383789, -0.036194879561662674, 0.001749046496115625, 0.00409708172082901, -0.003981277346611023, 0.01763422228395939, -0.000523116672411561, 0.01779395341873169, 0.0037237119395285845, -0.01860857754945755, 0.031259216368198395, 0.019934337586164474, -0.04041175916790962, 0.00250177551060915, -0.005370930302888155, -0.03245719149708748, 0.031323108822107315, 0.0228254571557045, 0.023272700607776642, -0.01588517613708973, -0.010110926814377308, 0.00936818029731512, -0.00681648962199688, 0.015485850162804127, 0.02530127577483654, 0.009104625321924686, 0.01046233344823122, 0.0356517992913723, -0.027872933074831963, -0.0001432580902474001, 0.007595174480229616, -0.015445917844772339, -0.0007132955361157656, -0.006397197488695383, 0.0061376360245049, -0.014990686438977718, -0.015501823276281357, -0.008881003595888615, -0.013425329700112343, -0.0067925299517810345, -0.00020914683409500867, 0.024949869140982628, 0.013952439650893211, -0.01449552271515131, -0.027010388672351837, -0.010550185106694698, -0.007231788244098425, 0.003230544738471508, -0.000922442355658859, -0.026627037674188614, 0.0038355232682079077, 0.010126899927854538, -0.014263913966715336, -0.00542683620005846, 0.011923865415155888, -0.004156980197876692, 0.0005934978253208101, -0.026387441903352737, 0.0058541144244372845, -0.0187683068215847, -0.004232852254062891, -0.01763422228395939, -0.02576449327170849, 0.005626498721539974, -0.023096997290849686, -0.003168649272993207, 0.0018179301405325532, 0.0011820039944723248, -0.004152987152338028, -0.034853145480155945, 1.726771552057471e-05, 0.0036238806787878275, 0.012323190458118916, 0.0013367427745833993, 0.025492951273918152, 0.005235159769654274, -0.008641407825052738, -0.029598020017147064, 0.020349636673927307, 0.021244127303361893, 0.011468634009361267, -0.012435002252459526, 0.02595617063343525, 0.002857175190001726, 0.01488686166703701, 0.028815342113375664, 0.012395069003105164, -0.035172607749700546, -0.004264798481017351, 0.009479992091655731, -0.011316889896988869, 0.0009908268693834543, 0.02007809653878212, -0.00010476059833308682, -0.016564030200242996, -0.026978444308042526, 0.02249002270400524, 0.007471383549273014, -0.014351765625178814, 0.008441745303571224, 0.005670424550771713, -0.0023979507386684418, 0.01579732447862625, 0.00989529024809599, -0.00817819032818079, -0.007786850910633802, -0.00281923939473927, -0.01854468509554863, -0.011133200488984585, 0.01482296921312809, 0.008881003595888615, 0.002980966353788972, -0.000568040763027966, 0.021164260804653168, 0.027010388672351837, 0.013888547196984291, -0.07769280672073364, -0.011005415581166744, 0.03074807859957218, 0.015493837185204029, -0.00518324738368392, -0.00811429787427187, -0.02889520674943924, -0.0078108105808496475, 0.011053334921598434, 0.014894847758114338, -0.011005415581166744, 0.03769634664058685, -0.0037816143594682217, -0.023336593061685562, 0.012011717073619366, 0.009000801481306553, -0.00806637853384018, 0.018033547326922417, -0.0011011406313627958, -0.03405449539422989, -0.010973470285534859, -0.0017230903031304479, 0.022026805207133293, -0.016020946204662323, -0.009919250383973122, -0.013856600970029831, -0.004141007550060749, -0.00935220718383789, -0.004180939868092537, 0.02301713265478611, -0.03264886885881424, 0.00030822952976450324, -0.03603515028953552, -0.03239329904317856, 0.021068423986434937, 0.013736804015934467, -0.013872574083507061, 0.009264355525374413, -0.003096770728006959, 0.007347592618316412, 0.039229754358530045, 0.004320703912526369, -0.006640786305069923, -0.006584880407899618, -0.014663239009678364, -0.011708228848874569, 0.007902655750513077, 0.00764708686619997, -0.01090159174054861, -0.002785296645015478, 0.002821235917508602, 0.010406427085399628, -0.0008894979837350547, -0.017746033146977425, -0.007135950028896332, -0.006389210931956768, 5.4002561228116974e-05, -0.005111368838697672, -0.008305974304676056, -0.00544280931353569, -0.011963797733187675, -0.006912327837198973, 0.011588431894779205, 0.00011343345249770209, 0.00819416344165802, 0.0066567594185471535, 0.0007107997080311179, 0.021116342395544052, -0.01569349877536297, 0.01588517613708973, 0.0057982089929282665, 0.029422316700220108, 0.016803624108433723, 0.011380782350897789, -0.0037556581664830446, 0.001758031314238906, 0.011404741555452347, -0.01044636033475399, -0.0003224554820917547, 0.002980966353788972, 0.0190717950463295, 0.001968675758689642, -0.00036762922536581755, 0.00042178775765933096, 0.009296301752328873, -0.055618081241846085, -0.019007902592420578, -0.0024718260392546654, 0.022585861384868622, -0.0020155964884907007, -0.002555684419348836, -0.02843198925256729, -0.02911882847547531, 0.005275092553347349, 0.004376609344035387, 0.024215109646320343, 0.010214750654995441, -0.04763156920671463, -0.01598101481795311, -0.0047799283638596535, -0.009128585457801819, 0.016020946204662323, -0.025285301730036736, -0.004947645124047995, 0.01988641917705536, -0.0035020862706005573, 0.007100010756403208, -0.018864145502448082, 0.006956253666430712, -0.008441745303571224, -0.002990949433296919, 0.0005770256393589079, -0.0009239398059435189, 0.02076493576169014, 0.027936825528740883, 0.0020185913890600204, -0.011069308035075665, 0.006568907760083675, 0.004999557510018349, -0.003699752502143383, 0.007359572220593691, 0.025476979091763496, -0.01598101481795311, 0.001961687346920371, -0.005015530623495579, 0.002493788953870535, 0.003202592022716999, -0.006632799748331308, 0.03261692076921463, -0.013225667178630829, 0.010701928287744522, -0.030827943235635757, -0.005299051757901907, -0.008857043460011482, 0.007064071483910084, -0.012299231253564358, 0.029246613383293152, -0.01315378863364458, 0.007519302889704704, 0.009464018978178501, -0.03673796355724335, -0.005123348440974951, -0.006776556838303804, 0.006676725577563047, -0.0172029510140419, -0.007143936585634947, 0.027249984443187714, -0.009951196610927582, 0.01701127365231514, -0.026978444308042526, 0.019646823406219482, -0.0028671585023403168, -0.007327626459300518, -0.007830777205526829, -0.017554357647895813, -0.054212454706430435, -0.014631292782723904, -0.01808146759867668, -0.026786766946315765, 0.011021388694643974, 0.007068064529448748, 0.0027373775374144316, -0.0032864504028111696, -0.025157518684864044, -0.007096017710864544, 0.015206322073936462, 0.023065051063895226, 0.010949510149657726, -0.01919957995414734, -0.004109061323106289, -0.007930608466267586, -0.028096554800868034, -0.014367738738656044, -0.02098855748772621, -0.005139321554452181, -0.006536961533129215, 0.03584347292780876, -0.03683380037546158, 0.0068005165085196495, 0.019087767228484154, -0.013752777129411697, -0.005031503736972809, -0.02249002270400524, -0.022777536883950233, -0.0015493836253881454, -0.0037297019734978676, -0.0122752720490098, -0.01216346025466919, -0.0009354204521514475, 0.01257077232003212, 0.010965483263134956, 0.0045722792856395245, -0.02526932954788208, -0.005147308111190796, 0.006369244772940874, 0.017682140693068504, 0.004640164319425821, -0.043702203780412674, 0.02951815538108349, -0.010861658491194248, -0.0007053089793771505, -0.005997871980071068, -0.0022502003703266382, -0.0023400485515594482, 0.012123527936637402, -0.011796080507338047, 0.010126899927854538, 0.03686574846506119, -0.021994858980178833, 0.021755263209342957, 0.01841690018773079, -0.007287693675607443, -0.01857663132250309, -0.029326478019356728, 0.00015037108096294105, 0.00372570869512856, 0.008984828367829323, -0.0018309082370251417, -0.007898662239313126, 0.01346526201814413, -0.02007809653878212, 0.022026805207133293, 0.030141102150082588, 0.0034222211688756943, -0.01033454854041338, -0.012778421863913536, -0.0340864397585392, 0.004412549082189798, 0.013960425741970539, -0.007599167991429567, 0.008274028077721596, -0.0100071020424366, 0.019614877179265022, 0.02073298953473568, -0.010590117424726486, -0.005446802359074354, 0.01080575305968523, -0.006173575296998024, 0.030316805467009544, -0.0153261199593544, -0.007143936585634947, -0.016627920791506767, 0.001879825722426176, 0.022569887340068817, -0.007914635352790356, 0.02076493576169014, 0.022026805207133293, 0.0021503688767552376, -0.01769811473786831, -0.013297545723617077, 0.021228153258562088, 0.01688349060714245, -0.006604847032576799, 0.005059456452727318, -0.015366052277386189, -0.009280328638851643, -2.079301339108497e-05, 0.011420714668929577, 0.0025077653117477894, 0.00560653256252408, -0.0034561639185994864, -0.013840628787875175, 0.025604763999581337, 0.005303045269101858, 0.023448403924703598, 0.010518238879740238, 0.009000801481306553, -0.005303045269101858, -0.012578759342432022, 0.016867516562342644, -0.019966283813118935, 0.013209694065153599, 0.026818713173270226, -0.011476620100438595, -0.013425329700112343, -0.022218480706214905, 0.0038375197909772396, -0.0014874881599098444, -0.03561985120177269, -0.00022075223387219012, 0.028543800115585327, 0.007519302889704704, -0.018944010138511658, -0.0016542066587135196, -0.027154147624969482, 0.014703172259032726, 0.000319710117764771, 0.00633330550044775, -0.006001865025609732, -0.008705300278961658, 0.007567221764475107, -0.02696247026324272, 0.013768749311566353, 0.01782589964568615, -0.019407227635383606, 0.004073122050613165, 0.0027533506508916616, 0.00023622610024176538, 0.007583194877952337, -0.007487356662750244, 0.002583637135103345, -0.018305089324712753, -0.017682140693068504, 0.013601033017039299, 0.005143315065652132, 0.003867469262331724, 0.005350964143872261, 0.021036477759480476, 0.007531282491981983, 0.0038994152564555407, 0.002865161746740341, -0.017682140693068504, 0.004424528684467077, -0.002172331791371107, -0.008297988213598728, -0.0406673289835453, -0.017618250101804733, 0.004192919936031103, 0.06683114916086197, 0.012906205840408802, 0.002050537383183837, 0.020525339990854263, -0.0016332421218976378, 0.006409177090972662, -0.021787209436297417, -0.0027174113783985376, 0.00899281445890665, -0.00544280931353569, 0.01685154438018799, 0.01407223753631115, -0.0078108105808496475, -0.007139943540096283, -0.010294616222381592, 0.02395954169332981, 0.007259740959852934, 0.017777979373931885, -0.012730502523481846, 0.0262756310403347, 0.006009851582348347, 0.013409356586635113, -0.043893881142139435, 0.005382910370826721, 0.00959978997707367, 0.006676725577563047, 0.003935354761779308, 0.011053334921598434, 0.006293372716754675, 0.009376167319715023, -0.007854736410081387, -0.011372795328497887, -0.0026754820719361305, -0.008142250590026379, 0.011883932165801525, 0.007183869369328022, -0.016068866476416588, 0.002298119245097041, -0.0033124065957963467, 0.006197534501552582, -0.007359572220593691, 0.0014066246803849936, 0.0287674218416214, 0.01648416370153427, -0.009112612344324589, 0.006485049147158861, 0.01214748714119196, -0.0035360290203243494, -0.006409177090972662, -0.02207472361624241, -0.011221052147448063, -0.006053777411580086, -0.00634927861392498, 0.009887304157018661, 0.004863786976784468, -0.007603161036968231, -0.0019586924463510513, -0.005414856132119894, 0.008150237612426281, -0.007339606061577797, 0.005099389236420393, 0.0017430565785616636, 0.00452036689966917, -0.02967788465321064, 0.0046441578306257725, 0.0068444423377513885, -0.0076590669341385365, 0.0027872934006154537, 0.008936909027397633, 0.030189022421836853, -0.008226108737289906, 0.008825098164379597, -0.01870441436767578, -0.021755263209342957, -0.012890233658254147, 0.017522411420941353, -0.0016701796557754278, 0.011556485667824745, 0.010494278743863106, 0.012882246635854244, -0.011061321943998337, -0.00896086823195219, 0.00897684134542942, -0.018209250643849373, 0.011428700760006905, -0.0048078810796141624, 0.01439968403428793, -0.0057982089929282665, -0.007243767846375704, -0.0038914289325475693, -0.007371552288532257, -0.0058700875379145145, -0.013808682560920715, 0.03811164200305939, 0.013728816993534565, -0.029070910066366196, -0.012722516432404518, -0.007942588068544865, 0.019151659682393074, -0.01651610992848873, 0.0016861527692526579, 0.018624549731612206, -0.001658199937082827, 0.032840546220541, 0.0028152461163699627, 0.02285740152001381, -0.009000801481306553, -0.0019327363697811961, -0.011652323417365551, 0.007579201366752386, -0.0032085818238556385, -0.010174818336963654, -0.01182004064321518, 0.006984206382185221, -0.01779395341873169, 0.016819598153233528, 0.030939754098653793, 0.004252818413078785, -0.019598904997110367, 0.005546633619815111, -0.00897684134542942, -0.005179254338145256, -0.011069308035075665, 0.009903277270495892, 0.009440058842301369, -0.008904962800443172, -0.028384070843458176, -0.015933094546198845, 0.007495343219488859, -0.0056903911754488945, 0.008321947418153286, 0.03148283809423447, 0.00038734590634703636, -0.011133200488984585, -0.00223622377961874, -0.0029070910532027483, 0.0056185126304626465, -0.03865472599864006, 0.021403856575489044, 0.0013547124108299613, 0.008857043460011482, 0.009128585457801819, -0.00048368325224146247, 0.009408113546669483, -0.004232852254062891, 0.0030588346999138594, -0.011987756937742233, -0.03052445501089096, 0.01579732447862625, 0.0029969392344355583, 0.03239329904317856, -0.027058308944106102, 0.009064693003892899, -0.02654717117547989, 0.007151923142373562, -0.0010242704302072525, -0.025061680004000664, 0.029390370473265648, 0.00817819032818079, -0.00991126336157322, 0.012970098294317722, -0.011588431894779205, -0.024279002100229263, -0.023783838376402855, 0.012498893775045872, -0.0014515488874167204, 0.018097439780831337, 0.009839384816586971, 0.009288315661251545, -0.013656938448548317, -0.013832641765475273, 0.012283258140087128, 0.000612964911852032, -0.0130579499527812, -0.00672464445233345, 0.004668117500841618, 0.00992723647505045, 0.011796080507338047, -0.006045790854841471, 0.031914107501506805, 0.00040306936716660857, 0.01586121693253517, -0.004592245444655418, -0.00010613328049657866, -0.005702370777726173, 0.015677526593208313, 0.024662354961037636, -0.025013761594891548, -0.005846127867698669, 0.01301003061234951, -0.002254193415865302, 0.022090697661042213, 0.004200906027108431, -0.0039014120120555162, -0.007742925081402063, 0.002413923852145672, 0.003785607637837529, 0.01214748714119196, 0.006113676354289055, -0.0012578759342432022, 0.013361437246203423, 0.015413971617817879, 0.015238268300890923, 0.01563759334385395, -0.015206322073936462, 0.002459846204146743, -0.00634927861392498, -0.00955187063664198, 0.0026914551854133606, -0.01491880789399147, -0.020972585305571556, -0.00940012652426958, -0.013113855384290218, -0.007295680232346058, -0.016691813245415688, -0.0026215731631964445, 0.026004089042544365, 0.01183601375669241, 0.0419132225215435, 0.01002307515591383, 0.023304646834731102, 0.01216346025466919, -0.010789779946208, -0.02755347266793251, 0.0048677800223231316, 0.0057263304479420185, 0.01225929893553257, 0.02523738332092762, 0.01439968403428793, -0.0012379096588119864, 0.03172243386507034, -0.0059419660829007626, -0.018400928005576134, -0.01495075412094593, 0.019151659682393074, 0.005143315065652132, 0.025524897500872612, -0.00022274885850492865, 0.024870004504919052, -0.01723489724099636, -0.020748963579535484, 0.005015530623495579, -0.014719144441187382, -0.01945514790713787, 0.007854736410081387, 0.00649702874943614, -0.0001420101907569915, -0.02026977203786373, -0.02023782581090927, -2.668930756044574e-05, -0.00037112331483513117, 0.008385839872062206, -0.017522411420941353, 0.007104003801941872, 0.018752334639430046, 0.005997871980071068, 0.008441745303571224, 0.00608971668407321, 0.006688705179840326, -0.0032644874881953, -0.016332421451807022, -0.0017260853201150894, -0.015238268300890923, -0.016436245292425156, 0.011077295057475567, 0.021228153258562088, -0.026499252766370773, 0.018959984183311462, 0.0029150776099413633, -0.0030648247338831425, -0.0011410731822252274, -0.018959984183311462, 0.003961310721933842, 0.008561543188989162, -0.011931851506233215, 0.005578579846769571, 0.0164202731102705, -0.018400928005576134, 0.002982962876558304, -0.0048078810796141624, 0.0016931409481912851, 0.02020587958395481, 0.00315866619348526, -0.026004089042544365, -0.005858107935637236, -0.014120155945420265, -0.011388768441975117, 0.008266041986644268, -0.010230723768472672, 0.0029689865186810493, 0.024007460102438927, -0.02520543709397316, -0.003228548215702176, 0.017059193924069405, -0.0029490201268345118, 0.0058541144244372845, -0.0005780239589512348, -0.005766262765973806, 0.006117669399827719, 0.012914192862808704, -0.006169581785798073, -0.025668654590845108, -0.02249002270400524, -0.02951815538108349, 0.029997345060110092, 0.008417785167694092, 0.007894668728113174, -0.015158402733504772, -0.009647708386182785, 0.008202149532735348, 0.012419029138982296, 0.00163224374409765, -0.0236081350594759, 0.009503951296210289, -0.02370397374033928, 0.0007697002729400992, 0.0036678065080195665, 0.022681698203086853, -0.003548008855432272, 0.01529417373239994, 0.0028811348602175713, 0.002992945956066251, 0.0007472381694242358, 0.01485491544008255, 0.005550627131015062, 0.026499252766370773, 6.93828405928798e-05, -0.006988199427723885, 0.02255391515791416, -0.033543359488248825, 0.010877631604671478, 0.003168649272993207, -0.012722516432404518, 0.003945337608456612, -0.001967677380889654, 0.011388768441975117, -0.010198778472840786, -0.005937973037362099, -0.020030176267027855, -0.0038275367114692926, -0.018273143097758293, 0.009184490889310837, 0.0007407491793856025, -0.016156718134880066, 0.014231967739760876, 0.022745590656995773, 0.02801669016480446, -0.006628806237131357, 0.009264355525374413, 0.014575387351214886, -0.005115361884236336, -0.023624107241630554, 0.007698999252170324, -0.006169581785798073, -0.004755969159305096, -0.01867247000336647, 0.003663813229650259, 0.004927678965032101, -0.008401812054216862, -0.01261869166046381, -0.01979058049619198, 0.009088652208447456, -0.011364809237420559, -0.015062564983963966, -0.0057462966069579124, 0.00763111375272274, 0.00630135927349329, -0.00657689431682229, -0.042168792337179184, 0.008881003595888615, 0.008952882140874863, 0.001225929823704064, 0.02161150611937046, -0.0038315299898386, -0.003769634524360299, 0.016300475224852562, -0.0009279330843128264, 0.009743547067046165, -0.007846749387681484, -0.003911395091563463, 0.034725360572338104, -0.012978085316717625, -0.0005994876846671104, 0.007363565731793642, 0.01788979023694992, -6.913326069479808e-05, 0.015038605779409409, 0.01031857542693615, -0.0006119665922597051, 0.024917922914028168, -0.007439437787979841, 0.005267105996608734, 0.002837209030985832, -0.007431451231241226, -0.001748048234730959, -0.004584258887916803, -0.007615141104906797, 0.008865030482411385, -0.021116342395544052, -0.015485850162804127, 1.5785843061166815e-05, -0.004720029421150684, -0.01315378863364458, 0.008369866758584976, 0.017554357647895813, -0.03549206629395485, 0.028416015207767487, 0.01496672723442316, 0.008353893645107746, 0.006532968487590551, 0.009112612344324589, -0.011452660895884037, -0.017027247697114944, -0.018161332234740257, 0.02683468535542488, 0.00805040542036295, -0.006449109874665737, -0.005949952639639378, 0.01867247000336647, -0.001232918119058013, -0.008769191801548004, 0.00019566959235817194, 0.016500137746334076, -0.0200142040848732, 0.01582128368318081, 0.04037981480360031, 0.034821201115846634, 0.005386903416365385, 0.007846749387681484, -0.009487978182733059, -0.003478126833215356, -0.006904341280460358, -0.008841070346534252, 0.015709472820162773, -0.0031287167221307755, -0.018193278461694717, 0.019343337044119835, -0.01769811473786831, -0.0009593799477443099, 0.007591181434690952, -0.018337035551667213, -0.012546813115477562, -0.012778421863913536, -0.005918006878346205, 0.004051159135997295, 0.02745763398706913, -0.0016522100195288658, 0.029757751151919365, -0.0036678065080195665, -0.006940280552953482, -0.0016522100195288658, 0.026419388130307198, -0.0069802128709852695, 0.00654494808986783, -0.016284501180052757, -0.014687199145555496, -0.01632443442940712, 0.02477416582405567, -0.0007761893211863935, -0.01601296104490757, -0.0028052630368620157, 0.0003406747418921441, 0.023160889744758606, 0.004101074766367674, 1.7298913007834926e-05, 0.0031267201993614435, 0.00022998663189355284, 0.0011989753693342209, -0.017777979373931885, -0.004843820817768574, -0.01046233344823122, -0.002749357372522354, 0.01183601375669241, -0.015390012413263321, -0.0058621009811758995, 0.01121306512504816, 0.006213507615029812, -0.0024298967327922583, -0.007024138700217009, -0.000630435417406261, -0.004983584396541119, 0.001002307515591383, 0.004420535173267126, 0.007607154548168182, 0.017905764281749725, -0.011716215871274471, -0.011524539440870285, 0.0261158999055624, 0.004328690469264984, 0.011524539440870285, 0.024917922914028168, 0.0024338900111615658, 0.022378211840987206, 0.0004038180923089385, -0.007639100309461355, 0.009735560044646263, -0.01495075412094593, 0.02902299165725708, 0.0028352122753858566, 0.0005610525840893388, -0.0007846749504096806, -0.006133642513304949, -0.002731387736275792, 0.014846929349005222, 0.012818354181945324, 0.0005924995057284832, 0.00541086308658123, 0.020221853628754616, 0.012762448750436306, -7.786850619595498e-05, 0.007750911638140678, -0.008218122646212578, -0.007479370106011629, 0.025620736181735992, -0.0006903343019075692, 0.01182004064321518, 0.0031826256308704615, 0.02673884853720665, 0.006524981930851936, 0.00016721762949600816, -0.003715725615620613, -0.012746475636959076, -0.0013247629394754767, -0.007331619504839182, -0.013624992221593857, -0.010973470285534859, 0.027313876897096634, 0.007379538845270872, -0.02226640097796917, -0.010566157288849354, -0.02507765404880047, 0.021499695256352425, 0.009671668522059917, -0.00542683620005846, -0.01271453034132719, 0.0031367032788693905, 0.012435002252459526, 0.0037057423032820225, 0.01441565714776516, -0.01860857754945755, -0.0026834686286747456, 0.00670867133885622, -0.0013327494962140918, 0.00904073379933834, 0.002449863124638796, 0.00432469742372632, -0.006968233268707991, 0.005766262765973806, 0.01760227605700493, 0.015206322073936462, -0.011149173602461815, -0.003200595499947667, 0.01085367240011692, 0.010829712264239788, 0.0024298967327922583, -0.02964593842625618, -0.003200595499947667, -0.008785164915025234, 0.018784280866384506, 0.013816668651998043, 0.013002044521272182, -0.00992723647505045, 0.0085216099396348, 0.022410158067941666, -0.0021503688767552376, 0.009519924409687519, 0.015741419047117233, 0.004352650139480829, -0.0015683516394346952, 0.015621621161699295, -0.01531014684587717, 0.01313781552016735, -0.0100071020424366, -0.0033044200390577316, -0.02138788439333439, -0.01258674543350935, 0.0015723449178040028, -0.020189907401800156, 0.01576537825167179, -0.007575208321213722, 0.010294616222381592, -0.009464018978178501, -0.007886682637035847, -0.00997515581548214, 0.009807438589632511, 0.015869202092289925, 0.005171267781406641, 0.005295058712363243, 0.020461447536945343, -0.01535806618630886, 0.016963355243206024, -0.014783036895096302, -0.0018568644300103188, -0.021084396168589592, 0.007335613016039133, 0.012962112203240395, -0.0023480351082980633, -0.00064790592296049, -0.009831398725509644, -0.016723759472370148, -0.012738489545881748, 0.02402343414723873, -0.003062827978283167, 0.001580331358127296, 0.008062385953962803, -0.006033811252564192, -0.0012029686477035284, -0.016116784885525703, 0.004424528684467077, -0.0134492889046669, 0.015397998504340649, 0.00649702874943614, 0.04306328296661377, 0.009112612344324589, -0.006592866964638233, -0.009184490889310837, 0.016723759472370148, -0.025125572457909584, 0.010646022856235504, 0.0122752720490098, -0.02654717117547989, -0.006768570281565189, 0.01713905856013298, -0.013081909157335758, -0.021867074072360992, -8.165898179868236e-06, -0.01038246788084507, 0.011029375717043877, 0.025333222001791, 0.008369866758584976, 0.0038355232682079077, -0.00899281445890665, 0.015813296660780907, -0.0045004007406532764, 0.004396575968712568, -0.01710711233317852, -0.0406673289835453, 0.004843820817768574, -0.01926347054541111, -0.008497650735080242, 0.00702813221141696, -0.0014116163365542889, -0.0011071304325014353, 0.01524625439196825, 7.487356924684718e-05, -0.00811829138547182, 0.011388768441975117, -0.010725888423621655, 0.00281923939473927, -0.007567221764475107, -0.0100071020424366, 0.015302160754799843, 0.005179254338145256, 0.007040111813694239, -0.014176062308251858, 0.0012079601874575019, -0.0011810057330876589, -0.029629966244101524, 0.010358508676290512, -0.0024877991527318954, -0.02292129397392273, -0.023783838376402855, -0.006041797809302807, 0.028751449659466743, -0.0068204826675355434, -0.01658000238239765, 0.0025536876637488604, 0.02255391515791416, -0.0012568775564432144, -0.011141186580061913, 0.002733384259045124, -0.0046241916716098785, -0.0018179301405325532, 0.020349636673927307, -0.021052449941635132, 0.0015893162926658988, 0.014048277400434017, -0.006245453841984272, -0.023192835971713066, -0.045459236949682236, -0.015661554411053658, 0.00894489511847496, -0.02020587958395481, -0.025556843727827072, -1.1995369277428836e-05, 0.02820836752653122, -0.0030228954274207354, 0.012107554823160172, -0.019726689904928207, 0.010997429490089417, -0.0077668847516179085, -0.009719586931169033, -0.0068644084967672825, -0.007850742898881435, 0.004879760090261698, 0.0011470629833638668, -0.010494278743863106, 0.015533769503235817, 0.0016462201019749045, -0.004424528684467077, -0.014862902462482452, 0.0002633053809404373, 0.0027872934006154537, -0.008577515371143818, 0.010861658491194248, -0.022697672247886658, 0.008841070346534252, -0.01044636033475399, -0.01870441436767578, -0.005323011428117752, -0.000638921104837209, -0.011612391099333763, 0.01707516610622406, -0.007455410435795784, -0.000984337879344821, -0.02592422440648079, 0.01526222750544548, 0.00701215909793973, -0.019039848819375038, 0.0068923612125217915, 0.023384511470794678, 0.0111811188980937, 0.0014076230581849813, 0.007946581579744816, -0.0038994152564555407, 0.007882689125835896, 0.029230641201138496, 0.003416231367737055, -0.007515309378504753, 0.0058621009811758995, 0.006433136761188507, -0.009647708386182785, -0.01363297924399376, 0.006616826634854078, 0.007104003801941872, -0.008769191801548004, 0.019279444590210915, -0.025876304134726524, 0.021962912753224373, -0.0008256058790720999, 0.007139943540096283, -0.02432692050933838, -0.01645221747457981, 0.0015334106283262372, 0.02220250852406025, -0.0008450729656033218, 0.02510959841310978, 0.008873016573488712, -0.004348656628280878, -0.004704056773334742, -0.01638832688331604, -0.006189547944813967, 0.016707787290215492, -0.005446802359074354, 0.018161332234740257, 0.013864587992429733, 0.009328247979283333, 0.002467832760885358, 0.004871773533523083, 0.00807037204504013, 0.028735477477312088, 0.009312274865806103, 0.0069802128709852695, 0.011572458781301975, -0.009000801481306553, 0.007910641841590405, -0.007307660300284624, 0.008785164915025234, -0.003639853559434414, 0.024119270965456963, -0.008409799076616764, 0.005578579846769571, -0.00370973558165133, -0.02843198925256729, 0.007199842017143965, -0.00816221721470356, -0.005626498721539974, 0.004560299217700958, -0.01757032983005047, 0.03172243386507034, -0.003550005378201604, 0.002741370815783739, -0.033447518944740295, 0.02161150611937046, -0.013553113676607609, -0.007818796671926975, 0.03229746222496033, 0.024071352556347847, 0.004268791526556015, -0.002260183449834585, -0.0022921294439584017, -0.013752777129411697, -0.02151566743850708, -0.011332863010466099, 0.00810231827199459, 0.025125572457909584, 0.029102856293320656, -0.008305974304676056, 0.0021423823200166225, -0.011652323417365551, 0.01804952137172222, -0.002671488793566823, -0.005602539516985416, -0.01483894232660532, -0.004755969159305096, -0.00610568979755044, -0.009575829841196537, 0.02076493576169014, 0.0297098308801651, 0.010973470285534859, 0.0245505440980196, 0.004783921875059605, -0.017873818054795265, -0.004524359945207834, -0.01490283478051424, -0.00140163314063102, -0.012498893775045872, 0.00542683620005846, -0.004148994106799364, 0.012043662369251251, 0.001030260231345892, 0.013489222154021263, 0.036290720105171204, 0.007607154548168182, -0.03830331936478615, -0.0010452349670231342, 0.004604225046932697, 8.654136763652787e-05, 0.004113054368644953, -0.003645843593403697, 0.014759077690541744, -0.015605648048222065, -0.02177123725414276, -0.001570348278619349, 0.011165146715939045, -0.0038475031033158302, 0.018273143097758293, -0.015142430551350117, -0.003334369510412216, -0.012203393504023552, -0.007463396992534399, -0.008313960395753384, -0.0010342535097151995, -0.000691831752192229, -0.016931409016251564, 0.007455410435795784, -0.008745232596993446, 0.018975956365466118, -0.019215552136301994, -0.000772196042817086, 0.01088561862707138, 0.024933895096182823, -0.015070551075041294, -0.011037361808121204, -0.03167451545596123, 0.024885976687073708, -0.005123348440974951, 0.017346708104014397, 0.004464461002498865, -0.01046233344823122, 0.009136571548879147, -0.002120419405400753, -0.003565978491678834, 0.00043776078382506967, 0.0058181751519441605, -0.010614076629281044, -0.007195848971605301, -0.025636708363890648, 0.000977349583990872, 0.014862902462482452, -0.008593488484621048, 0.005171267781406641, -0.014200021512806416, 0.009863344952464104, -0.02229834720492363, 0.0022122643422335386, -0.010701928287744522, 0.006045790854841471, -0.008641407825052738, -0.0011211069067940116, -0.01779395341873169, 0.011252997443079948, 0.017650196328759193, -0.005650458391755819, -0.02804863639175892, -0.01443163026124239, 0.004983584396541119, 0.021228153258562088, -0.00811829138547182, 0.01594906859099865, 0.015869202092289925, -0.001872837427072227, 0.012818354181945324, -0.006241460330784321, 0.0038654727395623922, 0.003647840116173029, 0.013561100699007511, -0.00654494808986783, -0.013241640292108059, 0.008433758281171322, -0.007243767846375704, -0.011061321943998337, 0.0013497208710759878, 0.003462153719738126, -0.022649753838777542, 0.0069362870417535305, -0.05398883298039436, -0.006329311989247799, 0.018161332234740257, 0.011931851506233215, -0.01991836540400982, 0.006237467285245657, -0.012474934570491314, -0.0005994876846671104, 0.0017630229704082012, -0.0006494033732451499, -0.0007397508597932756, -0.023160889744758606, -0.014607333578169346, -0.014263913966715336, -0.03740882873535156, 0.015973027795553207, 0.023448403924703598, 0.018528711050748825, -0.012458961457014084, -0.003921378403902054, -0.019007902592420578, 0.008817111141979694, -0.013808682560920715, -0.012498893775045872, 0.007183869369328022, 0.000673862115945667, -0.0019846486393362284, -0.0037037457805126905, 0.0002672986302059144, 0.00022399675799533725, -0.00701215909793973, -0.012738489545881748, -0.006193541456013918, 0.024374840781092644, 0.0020026182755827904, 0.0013097882037982345, -0.004676103591918945, -0.0056824046187102795, -0.009639722295105457, 0.00902476068586111, 0.008409799076616764, -0.010574144311249256, 0.008465704508125782, 0.003060831455513835, -0.013944452628493309, 0.024790138006210327, 0.0036498368717730045, -0.01446357648819685, -0.00015798323147464544, 0.008729259483516216, -0.016308460384607315, -0.011883932165801525, -0.0031646559946238995, 0.007335613016039133, -0.023001160472631454, -0.022777536883950233, 0.018305089324712753, -0.018033547326922417, 0.02745763398706913, -0.017650196328759193, 0.001580331358127296, -0.005937973037362099, 0.009440058842301369, 0.020317690446972847, 0.0017620245926082134, 0.012978085316717625, -0.006225487682968378, -0.0024179171305149794, 0.0164202731102705, 0.006329311989247799, -0.020126014947891235, -0.005251132883131504, -0.016564030200242996, 0.013872574083507061, 0.00856952928006649, -0.010310589335858822, 0.015062564983963966, 0.008313960395753384, -0.005674418061971664, 0.012746475636959076, -0.0021064430475234985, -0.0019976268522441387, -0.005235159769654274, -0.01864052377641201, -0.010717901401221752, -0.002992945956066251, 0.00093142717378214, 0.017186976969242096, -0.007431451231241226, -0.01185198687016964, 0.015390012413263321, -0.009304288774728775, -0.009727573953568935, 0.01268258411437273, 0.014455589465796947, 0.024183163419365883, -0.01446357648819685, 0.027058308944106102, 0.00892892200499773, -0.02030171826481819, -0.023464377969503403, -0.01788979023694992, -0.021467749029397964, 0.011636350303888321, 0.007710978854447603, 0.0004834336577914655, -0.03293638303875923, 0.0055825733579695225, 0.012658623978495598, 0.026323549449443817, -0.014830956235527992, 0.006556927692145109, 0.01919957995414734, 0.006952260155230761, 0.01177212130278349, 0.010965483263134956, -0.007519302889704704, -0.008321947418153286, -0.006445116829127073, 7.843006460461766e-05, 0.0047879149205982685, -0.0014954747166484594, -0.013313518837094307, -0.027904879301786423, 0.0047160363756120205, -0.00361988740041852, 0.019566958770155907, -0.003444184083491564, -0.020908692851662636, 0.0069961859844625, -0.023656053468585014, 0.033479467034339905, 0.0033104100730270147, 0.007491349708288908, 0.02680274099111557, -0.008593488484621048, -0.02317686378955841, 0.030604321509599686, 0.005143315065652132, -0.009487978182733059, 0.00959978997707367, -0.013848614878952503, 0.006061763968318701, -0.021914994344115257, -0.04303133487701416, -0.017458518967032433, -0.019007902592420578, 0.026850659400224686, 0.004336677026003599, -0.009935223497450352, -0.010063007473945618, 0.012538827024400234, 0.0019766620825976133, 0.01913568750023842, 0.015166389755904675, 0.021371910348534584, 0.021914994344115257, 0.00281923939473927, -0.00021151782129891217, -0.0027373775374144316, 0.009679654613137245, -0.019023876637220383, 0.004156980197876692, 0.006025824695825577, -0.003803577274084091, 0.009903277270495892, 0.009096639230847359, 0.031131431460380554, 0.0069083343259990215, -0.0067446110770106316, -0.009479992091655731, 0.029038963839411736, 0.007303666789084673, -0.0011849990114569664, 0.010797766968607903, 0.00024608446983620524, 9.059701551450416e-05, -0.0024179171305149794, 0.0008216126007027924, -0.027505554258823395, 0.008078359067440033, -0.005858107935637236, -0.0005256124422885478, -0.004105068277567625, 0.021228153258562088, -0.0019027868984267116, 0.005434822756797075, 0.026483280584216118, -0.003318396396934986, 0.013840628787875175, -0.006457096431404352, -0.007906648330390453, -0.010150859132409096, 0.014184048399329185, -0.05373326316475868, 0.005658444948494434, -0.003875455819070339, -0.002369998022913933, 0.027729175984859467, 0.01620463654398918, -0.015350079163908958, 0.02432692050933838, -0.02507765404880047, -0.030891835689544678, -0.024917922914028168, -0.010917563922703266, 0.0035460120998322964, 0.0122752720490098, 0.004376609344035387, -0.016564030200242996, -0.007990507408976555, -0.023416457697749138, 0.010174818336963654, 0.0025516911409795284, 0.004979591351002455, -0.010765820741653442, 0.01177212130278349, -0.011436687782406807, -0.015134443528950214, 0.007511316332966089, -0.0008081353735178709, 0.0004946647095493972, -0.0022302339784801006, 0.008134264498949051, 0.00819416344165802, 0.0035999210085719824, -0.0025696607772260904, -0.001525424188002944, 0.0016282504657283425, 0.0161087978631258, 0.012083595618605614, 0.013241640292108059, 0.005706364288926125, -0.006077737081795931, 0.021914994344115257, 0.0018878121627494693, 0.004560299217700958, 0.00521519361063838, -0.0008999802521429956, -0.005466768518090248, -0.003621883923187852, 0.023943567648530006, -0.0022282374557107687, 0.007072058040648699, -0.006029817741364241, -0.023033104836940765, -0.004121040925383568, 0.005702370777726173, 0.005071436055004597, 0.006257433444261551, -0.03240927308797836, 0.0002183812321163714, -0.017458518967032433, 0.043861933052539825, 0.009240396320819855, 0.0019507060060277581, -0.001854867790825665, 0.006337298545986414, -0.023001160472631454, 0.0033203931525349617, -0.020972585305571556, 0.00019492085266392678, 0.004512380342930555, -0.004184933379292488, -0.01835300773382187, -0.03574763610959053, -0.0010272653307765722, -0.02467832714319229, -0.012874260544776917, 0.019966283813118935, 0.00589404720813036, -0.002013599732890725, 0.00011206077033421025, -0.006804509554058313, -0.019646823406219482, 0.004312717355787754, -0.010661995969712734, -0.031003646552562714, 0.015206322073936462, 0.005957939196377993, -0.008785164915025234, -0.018177304416894913, 0.00587807409465313, -0.00479190843179822, 0.007555242162197828, 0.0034401908051222563, -0.011548498645424843, 0.0023560216650366783, 0.010478305630385876, -0.01265063788741827, -0.02239418402314186, 0.0026575124356895685, -0.0032325414940714836, 0.009607776068150997, 0.018752334639430046, -0.006373237818479538, 0.019343337044119835, -0.00767903309315443, -0.007040111813694239, 0.01122903823852539, -0.018097439780831337, -0.018257170915603638, 0.011085281148552895, -0.007599167991429567, -0.013928480446338654, 0.010622063651680946, -0.03138699755072594, -0.024039406329393387, 0.007187862414866686, 0.012019703164696693, -0.01729878969490528, 0.036482393741607666, 0.01801757514476776, -0.00518324738368392, -0.010677969083189964, 0.022617807611823082, 0.012315204367041588, -0.012922178953886032, 0.015054578892886639, -0.010526224970817566, 0.0037057423032820225, -0.0007237778045237064, -0.0029689865186810493, -0.0018948003416880965, 0.006812496110796928, -0.012642650865018368, 0.000983838690444827, -0.003903408534824848, -0.019311390817165375, 0.00856952928006649, 0.01180406752973795, 0.013505194336175919, -0.019343337044119835, 0.00041554830386303365, -0.006277399603277445, 0.008657380938529968, 0.007431451231241226, 0.003653830150142312, -0.017474493011832237, -0.00045772705925628543, -0.00031921095796860754, 0.0011121220886707306, -0.011396755464375019, -0.005658444948494434, 0.014727131463587284, -0.003857486182823777, 0.007830777205526829, 0.01446357648819685, 0.00992723647505045, -0.013297545723617077, -0.009751533158123493, 0.002783300122246146, 0.0023001160006970167, -0.008449731394648552, -0.011508566327393055, 0.018784280866384506, -0.009863344952464104, 0.009096639230847359, -0.03402254730463028, -0.002112432848662138, -0.009863344952464104, -0.004288757685571909, 0.00022786522458773106, -0.012930165976285934, -0.037856075912714005, 0.00516727427020669, -0.006013845093548298, -0.01402431819587946, 0.00899281445890665, -0.01214748714119196, 0.0009384153527207673, -0.00592599343508482, -0.014311832375824451, 0.006161595229059458, -0.0069362870417535305, -0.0103984409943223, -0.009144558571279049, -0.01773006096482277, 0.010102939791977406, 0.015509809367358685, 0.048302434384822845, 0.04031592234969139, 0.014152102172374725, 0.001365693868137896, 0.006209514569491148, -0.033287789672613144, 0.007958561182022095, -0.0048597934655845165, -0.008729259483516216, -0.005969919264316559, 0.019966283813118935, -0.02670690231025219, 0.0029769730754196644, 0.023160889744758606, -0.008825098164379597, 0.0172029510140419, 0.008465704508125782, 0.007459403946995735, -0.002210267586633563, -0.004855800420045853, 0.014655252918601036, -0.005830155219882727, -0.002721404656767845, -0.015589674934744835, 0.025604763999581337, 0.01785784400999546, -0.00935220718383789, -0.01701127365231514, 0.013065936975181103, -0.0027353810146450996, 0.011420714668929577, 0.01570148579776287, -0.00043152133002877235, 0.01182004064321518, 0.012139501050114632, 0.03616293519735336, 0.004883753135800362, 0.009208450093865395, -0.006704678293317556, -0.0001734570978442207, -0.042264629155397415, -0.014559414237737656, -0.011428700760006905, 0.014575387351214886, -0.02461443468928337, -0.00892892200499773, -0.009336235001683235, -0.00537891685962677, -0.0391019731760025, 0.007072058040648699, 0.012458961457014084, 0.002829222474247217, -0.013185733929276466, 0.019806554540991783, 0.004819861147552729, 0.0005560610443353653, 0.007838763296604156, -0.006377231329679489, 0.005474755074828863, 0.007247761357575655, 0.008705300278961658, -0.01766616851091385, -0.013848614878952503, -0.0027713202871382236, -0.005350964143872261, 0.017522411420941353, 0.01304197683930397, 0.00012765942665282637, 0.01183601375669241, 0.01998225785791874, -0.0001845633378252387, 0.0023100990802049637, 0.017618250101804733, -0.01119709201157093, -0.009344221092760563, -0.011644337326288223, -0.022793510928750038, -0.00430872431024909, -0.013281572610139847, -0.006481056101620197, 0.001641228562220931, 0.0032584976870566607, -0.004568285774439573, -0.004424528684467077, -0.015413971617817879, -0.0029969392344355583, 0.00863342173397541, 0.018464820459485054, 0.005358950700610876, -0.021531641483306885, -0.023400485515594482, -0.0056464653462171555, -0.0007961555966176093, 0.028815342113375664, 0.014910820871591568, -0.025476979091763496, -0.011660310439765453, 0.007431451231241226, 0.00892892200499773, 0.012594732455909252, -0.014759077690541744, -0.005283078644424677, 0.0012658624909818172, 0.005997871980071068, 0.020972585305571556, -0.027218038216233253, -0.027010388672351837, 0.00015186854579951614, -0.007543262094259262, -0.005470762029290199, -0.005750290118157864, 0.002990949433296919, -0.008417785167694092, 0.012626678682863712, 0.004364629741758108, 0.013848614878952503, 0.03673796355724335, -0.0028911179397255182, 0.014168075285851955, -0.0019087768159806728, 0.009464018978178501, 0.004496407229453325, 0.019503066316246986, -0.006668739020824432, 0.0077469185926020145, -0.005263112485408783, 0.01160440407693386, 0.01349720824509859, 0.004540333058685064, 0.017873818054795265, -0.011149173602461815, -0.00610568979755044, 0.015086524188518524, 0.019662797451019287, -0.014623306691646576, 0.015629608184099197, 0.028815342113375664, 0.01788979023694992, 0.01304197683930397, -0.006660752464085817, -0.02595617063343525, 0.002216257620602846, 0.008433758281171322, -0.012307217344641685, 0.005291065201163292, -0.018720388412475586, -0.018944010138511658, 0.016188662499189377, 0.00817819032818079, 0.0028451955877244473, -0.0008969853515736759, -0.00016447226516902447, -0.02304907888174057, 0.006712664850056171, -0.007387525402009487, 0.0003284453705418855, -0.01645221747457981, 0.017937710508704185, -0.01579732447862625, -0.010630049742758274, 0.005558613687753677, 0.012506880797445774, 0.005366937257349491, 0.00817819032818079, 0.011867959052324295, -0.001046233344823122, 0.0057822358794510365, 0.004145000595599413, 0.0028791381046175957, 0.0007172887562774122, -5.3815376304555684e-05, -0.01126098446547985, -0.007411484606564045, 0.012794394977390766, 0.00477593531832099, 0.016332421451807022, 0.000558556814212352, -0.004268791526556015, -0.0069961859844625, 0.00819416344165802, 0.021691370755434036, 0.00892892200499773, 0.007115983869880438, -0.0011410731822252274, -0.004372616298496723, -0.00656092120334506, -0.015661554411053658, 0.01312184240669012, -0.006752597168087959, 0.007032125256955624, -0.008665367029607296, 0.0057263304479420185, 0.007994499988853931, -0.008433758281171322, -0.014160089194774628, -0.011923865415155888, -0.0069083343259990215, -0.01864052377641201, -0.029981372877955437, -0.009503951296210289, -0.002539711305871606, 0.01932736299932003, -0.011340849101543427, 0.017586303874850273], "b27f419a-1eb1-4044-a004-2181c718d9db": [-0.01321177277714014, -0.011069647036492825, 0.0045056454837322235, 0.039778925478458405, 0.005151873454451561, 0.016909632831811905, -0.0038265076000243425, 0.031162550672888756, -0.01548553816974163, 0.04660022258758545, -0.008915552869439125, 0.032143861055374146, 0.015186358243227005, -0.001762168132700026, -0.013379313051700592, 0.0062648216262459755, -0.004813800565898418, -0.012266364879906178, 0.012828823179006577, -0.04183728247880936, 0.04435038939118385, -0.0005785386310890317, -0.021852081641554832, 0.005313430447131395, 0.007790637668222189, -0.005235643591731787, -0.009513912722468376, 0.016407011076807976, 0.001965610310435295, -0.00549892196431756, -0.02029634639620781, 0.0032191728241741657, -0.011446612887084484, -0.018237991258502007, -0.009095060639083385, -0.016933567821979523, 0.0052625699900090694, 0.02338388003408909, 0.0011907349107787013, 0.017412254586815834, -0.027333052828907967, 0.00996268168091774, 0.006070354953408241, -0.023407815024256706, -0.013989640399813652, 0.00043194059981033206, -0.014276852831244469, 0.0011406224220991135, 0.03245500847697258, 1.957523090823088e-05, -0.006653754971921444, -0.006384493317455053, 0.021612737327814102, 0.03638024255633354, 0.020595526322722435, -0.026615019887685776, -0.012266364879906178, 0.05308643355965614, 0.0009723338298499584, -0.03255074471235275, 0.014013574458658695, -0.003443557769060135, 0.015557341277599335, -0.029535014182329178, 0.036332376301288605, -0.016407011076807976, 0.022103391587734222, -0.01967405341565609, -0.049592018127441406, 0.01610783115029335, -0.029439276084303856, 0.0168378297239542, -0.025178957730531693, -0.004496669862419367, 0.04856283962726593, -0.011356859467923641, 0.04305793344974518, 0.01735241897404194, 0.003593147499486804, -0.006378510035574436, 0.018896186724305153, -0.011350875720381737, 0.0037098275497555733, -0.01150046568363905, 0.05021430924534798, 0.01155431754887104, -0.04461366683244705, -0.024401091039180756, -0.011650055646896362, -0.00728801591321826, -0.0037756471429020166, -0.005277528893202543, 0.0033597873989492655, -0.01118333451449871, 0.01574881561100483, 0.04724644869565964, -0.005340356379747391, 0.019362905994057655, -0.013558821752667427, -0.032024189829826355, -0.022917160764336586, -0.003847450250759721, 0.004906546324491501, -0.001013471046462655, 0.015246194787323475, -0.0006630568532273173, 0.023874536156654358, 0.02927173674106598, -0.024987483397126198, 0.0048018330708146095, -0.039778925478458405, -0.03788810968399048, 0.014205049723386765, 0.0016574552282691002, -0.02606453001499176, -0.02666288986802101, 0.02065536193549633, 0.03458516672253609, -0.03331664577126503, -0.047270383685827255, 0.02076306752860546, -0.005068103317171335, 0.02435322292149067, -0.01499488390982151, -0.029582882300019264, -0.005310438573360443, 0.010830302722752094, 0.03503992035984993, 0.05088447406888008, 0.0005291739944368601, -0.014970948919653893, 0.03542286902666092, 0.03441762551665306, 0.035327132791280746, -0.005750232841819525, 0.004718062933534384, 0.027572395280003548, 0.0425553135573864, -0.010213992558419704, -0.023874536156654358, -0.051698241382837296, 0.04267498478293419, -0.0009476515115238726, 0.017926843836903572, -0.022785522043704987, -0.019350938498973846, -0.023958304896950722, 0.04166974127292633, 0.004448801279067993, 0.05107594653964043, -0.03736155480146408, -0.03544680401682854, -0.060553960502147675, 0.005591667257249355, 0.03561434522271156, -0.010752515867352486, -0.017675533890724182, 0.04906545951962471, -0.016430946066975594, 0.017783237621188164, 0.009657518938183784, -0.0471985787153244, 0.03824712336063385, 0.003249090863391757, 0.055767085403203964, 0.006175067741423845, 0.05054939165711403, 0.06237297132611275, -0.03736155480146408, 0.021325524896383286, 0.04298613220453262, -0.011560301296412945, 0.01784307323396206, 0.0075752283446490765, -0.027596330270171165, -0.008281292393803596, 0.002376982243731618, -0.012757020071148872, 0.05485757812857628, 0.010836286470293999, -0.023455683141946793, 0.03702647238969803, -0.01929110288619995, 0.03233533725142479, 0.026040595024824142, 0.017172912135720253, -0.023503553122282028, 0.013427182100713253, -0.017172912135720253, 0.006815312430262566, -0.010273829102516174, -0.0212776567786932, -3.4686137951212004e-05, 0.03563828021287918, 0.004771915264427662, -0.03137795999646187, 0.01771143451333046, -0.019853560253977776, -0.007682933006435633, 0.009627601131796837, -0.02852977067232132, -0.018393564969301224, -0.02510715462267399, 0.020068969577550888, -0.013510952703654766, 0.012697183527052402, -0.015246194787323475, -0.024185681715607643, 0.028601573780179024, -0.003688884899020195, 0.06586738675832748, -0.027500592172145844, -0.001841450692154467, 0.016299307346343994, 0.01377423107624054, 0.0027000962290912867, 0.01857307180762291, 0.015078653581440449, -0.028984524309635162, -0.009932763874530792, 0.005047160666435957, -0.03238320350646973, -0.008466783910989761, -0.04071236401796341, -0.048610709607601166, -0.018776513636112213, -0.0140853775665164, 0.0016664306167513132, -0.012457840144634247, -0.02435322292149067, 0.004224416334182024, 0.00898735597729683, -0.02054765820503235, -0.011141450144350529, -0.007778670638799667, 0.02458059974014759, 0.055240530520677567, -0.0005852701724506915, 0.03144976496696472, -0.011769726872444153, 0.004308186937123537, 0.03661958873271942, 0.024269452318549156, -0.05007070302963257, 0.012745052576065063, 0.014384557493031025, -0.027955345809459686, 0.03379533067345619, -0.0076769497245550156, 0.006863181013613939, -0.022725684568285942, -0.024628467857837677, 0.00878989789634943, -0.007497441954910755, -0.02544223703444004, -0.0010718110715970397, 0.023084700107574463, -0.0253225639462471, 0.014743573032319546, -0.03750516101717949, 0.00040389251080341637, 0.04968775436282158, -0.03257467970252037, 0.0043351128697395325, 0.07390933483839035, -0.014779474586248398, 0.02754846215248108, -0.0008676209836266935, -0.012733085080981255, 0.037696633487939835, 0.010908089578151703, -0.004032941535115242, 0.0075752283446490765, -0.00041062405216507614, -0.01978175714612007, 0.00971735455095768, -0.022055523470044136, -0.0264474805444479, -0.015832586213946342, -0.0021645647939294577, -0.03121042065322399, -0.007317934185266495, 0.040496956557035446, 0.032407138496637344, 0.05107594653964043, 0.017412254586815834, -0.0195543821901083, -0.01771143451333046, -0.036930736154317856, -0.0696011483669281, 0.01377423107624054, 0.03238320350646973, 0.02752452716231346, 0.010040468536317348, 0.015413735061883926, 0.005400192458182573, -0.00464625982567668, -0.02730911783874035, -0.02546617016196251, 0.0034674920607358217, -0.0006279032677412033, -0.011865464970469475, -0.0026208136696368456, -0.013510952703654766, 0.006923017092049122, -0.00953784678131342, 0.07960572093725204, -0.008191538974642754, -0.012266364879906178, 0.026256004348397255, 0.01832176186144352, -0.04289039224386215, -0.009017274715006351, -0.014061443507671356, 0.031760912388563156, -0.007114491891115904, -0.01980569213628769, -0.00230667507275939, -0.041358593851327896, 0.019973233342170715, -0.004619333427399397, 0.016179634258151054, -0.009358339011669159, 0.045283831655979156, 0.018393564969301224, -0.06629820913076401, 0.003847450250759721, -0.03432188928127289, 0.026734692975878716, -0.03087533824145794, -0.028314361348748207, 0.016059963032603264, -0.04092777520418167, 0.010040468536317348, -0.034250084310770035, -0.009825059212744236, -0.044446125626564026, -0.030444519594311714, -0.014683736488223076, -0.028864851221442223, 0.0027359977830201387, -0.03235926851630211, 0.03839072957634926, 0.005884863436222076, -0.013498985208570957, -0.0005961154238320887, 0.040281545370817184, 0.01272111851722002, -0.020320281386375427, 0.010423419065773487, 0.000625285436399281, 0.0011473539052531123, 0.010620877146720886, -0.007688916753977537, 0.01992536336183548, -0.02692616730928421, -0.009825059212744236, 0.01512652263045311, -0.005190766882151365, 0.005914781708270311, 0.017364386469125748, -0.045930057764053345, -0.005893839057534933, -0.006115231662988663, -0.0043530636467039585, 0.016873732209205627, 0.034130413085222244, 0.012409971095621586, -0.01807045005261898, -0.010172108188271523, 0.017280615866184235, 0.011931284330785275, -0.0012842286378145218, 0.015820618718862534, 0.035470739006996155, -0.040018267929553986, 0.021552901715040207, 0.009866944514214993, 0.007096541114151478, 0.02718944661319256, -0.013068166561424732, -0.01720881275832653, 0.018154220655560493, 0.00810776837170124, 0.019757824018597603, -0.016407011076807976, 0.001205693930387497, -0.018967989832162857, -0.02484387718141079, 0.012565544806420803, -0.022558145225048065, 0.025896988809108734, -0.017651598900556564, -0.04054482653737068, 0.00977719109505415, 0.0012386037269607186, -8.232114487327635e-05, -0.03901302441954613, 0.004035933408886194, -0.04674382880330086, 0.033508118242025375, -0.006617853417992592, -0.009083094075322151, -0.043584488332271576, 0.009669485501945019, -0.04257924482226372, 0.00898735597729683, -0.027883542701601982, 0.038654010742902756, -0.0006204237579368055, 0.017735369503498077, -0.03736155480146408, 0.024748139083385468, 0.020619461312890053, 0.010423419065773487, 0.019745856523513794, -0.019973233342170715, -0.026519283652305603, -0.063904769718647, 0.004903554450720549, 0.05413954704999924, 0.007539326790720224, -0.03231140226125717, -0.01463586837053299, 0.0393720418214798, 0.014683736488223076, 0.029056327417492867, 0.020858803763985634, 0.011303006671369076, 0.013056199066340923, -0.008759980089962482, 0.0445418655872345, -0.019757824018597603, 0.01124317105859518, -0.001884831697680056, -0.019458644092082977, 0.018752580508589745, 0.01698143593966961, -0.0051099881529808044, -0.02580125257372856, 0.003302943194285035, 0.01444439310580492, 0.015030785463750362, 0.0014592487132176757, -0.015820618718862534, -0.013558821752667427, -0.010429401881992817, 0.025609776377677917, 0.01462390087544918, -0.013702427968382835, 0.00952587928622961, 0.0376487672328949, 0.016813896596431732, -0.01106366328895092, 0.021983720362186432, -0.01634717546403408, 0.019279135391116142, -0.010112271644175053, -0.015832586213946342, -0.045307762920856476, -0.034489430487155914, -0.004194498527795076, 0.024772074073553085, -0.01248177420347929, 0.012924560345709324, -0.033986806869506836, 0.012278332374989986, 0.002254318678751588, 0.0005680673639290035, 0.009663502685725689, 0.006623837165534496, 0.027141576632857323, -0.0058519537560641766, 0.04068843275308609, 0.015317997895181179, -0.016789961606264114, -0.013319477438926697, -0.013319477438926697, 0.005534823518246412, 0.0026477398350834846, 0.023527486249804497, -0.018860284239053726, -0.008311210200190544, 0.034848444163799286, 0.0039521632716059685, 0.034968115389347076, -0.028218623250722885, -0.027716001495718956, -0.014145213179290295, 0.026710757985711098, 0.006534083280712366, -0.015066687017679214, 0.024305354803800583, 0.00928055215626955, 0.012092840857803822, 0.015688979998230934, 0.01857307180762291, 0.009130962193012238, 0.004116711672395468, -0.046145468950271606, -0.006414411589503288, -0.0253225639462471, -0.010363582521677017, -0.01757979579269886, -0.02288125827908516, 0.031138617545366287, 0.0008302234928123653, 0.012745052576065063, -0.023503553122282028, 0.017603730782866478, -0.017412254586815834, -0.00016024809156078845, -0.044087111949920654, 0.018118318170309067, -0.005283512640744448, -0.016047995537519455, -0.00030086253536865115, -0.040760233998298645, 0.0029259768780320883, -0.010914073325693607, 0.01045932061970234, -0.023503553122282028, -0.03482450917363167, 0.000246262236032635, -0.0008429386070929468, -0.028457967564463615, -0.02570551447570324, -0.037433356046676636, 0.014659802429378033, 0.017268648371100426, -0.01150644849985838, 0.01407341007143259, -0.011410711333155632, -0.0100105507299304, 0.02398223988711834, 0.025657646358013153, -0.0013433166313916445, -0.005896830931305885, -0.004816791974008083, -0.007054655812680721, -0.0007845985819585621, 0.029798291623592377, -0.0034106478560715914, -0.011237187311053276, -0.01978175714612007, -0.010549074038863182, 0.010489238426089287, 0.014492262154817581, -2.194763146690093e-05, -0.0025879039894789457, -0.020344216376543045, 0.01769946701824665, -0.027500592172145844, 0.004098760895431042, -0.014695703983306885, -0.020954541862010956, 0.005382241681218147, 0.007180311251431704, 0.008436866104602814, -0.001971593825146556, -0.02076306752860546, 0.004314170219004154, -0.0027599320746958256, 0.004978349432349205, -0.01883634924888611, -0.0060434285551309586, -0.03673925995826721, 0.0001889506384031847, 0.006546050310134888, 0.034513361752033234, 0.016036028042435646, -0.012110792100429535, 0.052703484892845154, 0.010782434605062008, -0.02510715462267399, 0.017507992684841156, -0.022067490965127945, -0.01517439167946577, -0.04822775721549988, -0.006112240254878998, 0.007365802768617868, -0.01735241897404194, -0.00028926931554451585, -0.02987009473145008, 0.014683736488223076, 0.0009102540789172053, -0.01561717689037323, -0.025537973269820213, -0.017256680876016617, 0.004305195063352585, -0.003539295168593526, 0.0019162455573678017, -0.005911789834499359, -0.005582692101597786, 0.005373266525566578, 0.017184877768158913, -0.002818272216245532, -0.0054031843319535255, 0.017400287091732025, -0.00020419010252226144, 0.015389801003038883, 0.011901366524398327, 0.02558584325015545, -0.024532729759812355, -0.04073629900813103, -0.0014390540309250355, -0.026902232319116592, 0.02150503173470497, -0.01795077882707119, 0.0013156424975022674, 0.027692068368196487, -0.05533626675605774, 0.0007498189806938171, -0.025035351514816284, 0.01272111851722002, 0.022199129685759544, -0.0016978444764390588, 0.02718944661319256, 0.03628450632095337, -0.04858677461743355, 0.015533407218754292, 0.0022857324220240116, 0.026950102299451828, -0.0008691168623045087, -0.024425026029348373, 0.019159464165568352, 5.707786476705223e-05, -0.019757824018597603, 0.006569984834641218, -0.006028469651937485, -0.02435322292149067, -0.001822003978304565, 0.024401091039180756, -0.0322156623005867, 0.02042798511683941, -0.02987009473145008, 0.026471413671970367, 0.019279135391116142, -0.0052326517179608345, 0.010178091004490852, -0.001594627508893609, -0.03733761981129646, 0.007730802055448294, 0.022211097180843353, -0.011338908225297928, 0.02692616730928421, -0.008837766945362091, 0.013810132630169392, 0.005510888993740082, 0.04301006346940994, -0.020739132538437843, 0.02508322149515152, -0.026638954877853394, 0.03932417184114456, 0.0032790089026093483, -0.03889335319399834, -0.003284992417320609, 0.059931665658950806, -0.021792244166135788, -0.026950102299451828, 0.03549467399716377, -0.0139537388458848, 0.03515959158539772, 0.017496025189757347, 0.0084847342222929, 0.00038332390249706805, -0.009430142119526863, 0.0009603666258044541, 0.019458644092082977, 0.03197631984949112, 0.008951454423367977, -0.02730911783874035, 0.0056634703651070595, 0.018237991258502007, -0.011727841570973396, -0.0037397455889731646, -0.0006731541943736374, 0.0021884990856051445, 0.019087661057710648, -0.01907569356262684, -0.015365866012871265, -0.000246636220254004, -0.06074543297290802, 0.022677816450595856, -0.02666288986802101, -0.0031144600361585617, -0.01980569213628769, -0.01376226358115673, -0.004771915264427662, -0.018967989832162857, -0.0027015921659767628, 0.06926607340574265, -0.031186485663056374, -0.012864724732935429, -0.013415214605629444, 0.042244166135787964, -0.024724205955863, -0.013929803855717182, -0.0018982947804033756, -0.018740613013505936, -0.024269452318549156, -0.01457603182643652, -0.030420586466789246, -0.0025325557217001915, -3.001145705638919e-05, 0.02408994548022747, -0.017747336998581886, -0.025418302044272423, 0.0036051147617399693, -0.0235992893576622, 0.022677816450595856, 0.00658195186406374, -0.005825027823448181, -0.008801865391433239, -0.014611933380365372, 0.011255137622356415, -0.007988096214830875, 0.02936747297644615, 0.02261798083782196, -0.00402994966134429, -0.008957438170909882, 0.048514969646930695, -0.017364386469125748, -0.029726488515734673, -0.007718834560364485, 0.030444519594311714, 0.00415261322632432, 0.0034405658952891827, 0.0026103423442691565, 0.0009386761230416596, 0.00242933863773942, 0.00719826202839613, 0.011111531406641006, 0.007449572905898094, 0.01866880990564823, -0.028051083907485008, 0.0004009007243439555, -0.020092904567718506, 0.013199805282056332, -0.02335994690656662, 0.005513880867511034, -0.005495930090546608, -0.01694553531706333, -0.03135402500629425, -0.026279939338564873, 0.029439276084303856, -0.018644874915480614, 0.0253225639462471, 0.014181114733219147, 0.02103831246495247, 0.0376487672328949, -0.0506451278924942, 0.04415891319513321, -0.008795881643891335, 0.01780717261135578, 0.007455556653439999, 0.020320281386375427, 0.012553577311336994, 0.0006492198444902897, 0.038773681968450546, -0.00207630661316216, 0.011386777274310589, -0.0201527401804924, -0.021971752867102623, -0.0025071254931390285, -0.01621553674340248, 0.01609586551785469, 0.06088903918862343, 0.03408254310488701, 0.023312076926231384, 0.048275627195835114, 0.005935723893344402, 0.030037635937333107, 0.030588125810027122, -0.03642811253666878, -0.03898908942937851, -0.007760719861835241, -0.017663566395640373, 0.011715875007212162, -0.0036918767727911472, -0.009118995629251003, -0.032024189829826355, 0.05188971757888794, 0.005050152540206909, -0.009130962193012238, -0.001778622972778976, 0.03807958588004112, 0.030564192682504654, -0.011883415281772614, -0.0002187751088058576, -0.0021077205892652273, -0.02903239242732525, -0.001664934679865837, 0.004047900438308716, -0.005190766882151365, -0.013463083654642105, 0.0065221162512898445, -0.0054899463430047035, -0.01549750566482544, 0.0022229047026485205, 0.000519824621733278, -0.0005856441566720605, 0.03760089725255966, -0.004448801279067993, 0.012589478865265846, -0.032766155898571014, -0.02912813052535057, -0.005854945629835129, -0.013929803855717182, 0.012254398316144943, 0.014611933380365372, 0.009878912009298801, 0.0033149104565382004, -0.003533311653882265, -0.008640307933092117, -0.019865527749061584, 0.051841847598552704, 0.0010942495428025723, 0.0445418655872345, -0.027739936485886574, -0.027117643505334854, -0.014025541953742504, 0.03616483509540558, -0.0009050184162333608, -0.014863244257867336, 0.03255074471235275, 0.018345694988965988, -0.015940291807055473, -0.008227440528571606, 0.006079330109059811, 0.0022244006395339966, -0.049113329499959946, -0.007353835739195347, 0.02448486164212227, 0.030061570927500725, 0.0053164223209023476, -0.02385060116648674, -0.01235013548284769, -0.04332121089100838, -0.00885571725666523, -0.030181242153048515, -0.0021540934685617685, 0.00781457219272852, 0.01290062628686428, 0.001690364908427, 0.05557560920715332, -0.00799407996237278, 0.0040090070106089115, 0.02718944661319256, 0.004350071772933006, 0.02285732515156269, 0.00679736165329814, 0.01585652120411396, -0.0009252130403183401, -0.009687436744570732, 0.027237314730882645, -0.0024787033908069134, -0.025250760838389397, -0.016395043581724167, -0.007898342795670033, -0.007653015200048685, 0.0024158756714314222, 0.0010351615492254496, -0.0010613397462293506, -0.007527359761297703, 0.005047160666435957, 0.02620813623070717, 0.0012281324015930295, 0.02276158705353737, 0.014240951277315617, -0.005771175026893616, -0.020487822592258453, 0.055384136736392975, 0.0048497021198272705, -0.008137686178088188, -0.023671092465519905, 0.008077850565314293, 0.0010403972119092941, -0.0342022180557251, 0.019279135391116142, 0.014863244257867336, 0.012164643965661526, -0.0005239383317530155, 0.026112398132681847, -0.049448411911726, 0.0162394717335701, 0.03630844131112099, 0.024628467857837677, -0.01907569356262684, -0.0026013669557869434, 0.008748012594878674, 0.007521376013755798, -0.0010777947027236223, -0.029678620398044586, 0.0013627632288262248, -0.0059865848161280155, 0.022845357656478882, 0.0055587575770914555, -0.026399610564112663, 0.009466043673455715, 0.01808241754770279, -0.02802714891731739, -0.02580125257372856, -0.024987483397126198, 0.05997953563928604, -0.0022677816450595856, -0.00811973586678505, 0.012517675757408142, 0.01217062771320343, 0.006318673957139254, 0.013630624860525131, -0.010477270931005478, -0.01584455370903015, -0.0018070450751110911, 0.0009110019891522825, -0.01820208877325058, -0.015677012503147125, -0.018525203689932823, 0.007096541114151478, 0.0035722048487514257, -0.008819815702736378, 0.02338388003408909, -0.0010680713457986712, 0.00818555522710085, 0.011895382776856422, -0.019769791513681412, -0.020116839557886124, 0.011392761021852493, -0.0022169211879372597, 0.021181918680667877, -0.02568157948553562, -0.022199129685759544, -0.013463083654642105, -0.004709087312221527, 0.009089077822864056, -0.005235643591731787, -0.039659254252910614, -0.007856457494199276, -0.021804211661219597, -0.004622325301170349, 0.016275372356176376, -0.03269435092806816, 0.03135402500629425, -0.010555057786405087, 0.003198230406269431, -0.018991922959685326, -0.0025161008816212416, 0.017137009650468826, -0.038318928331136703, -0.03109074756503105, -0.0003408777993172407, 0.03815138712525368, -0.015473570674657822, 0.005603634752333164, -0.0021780277602374554, 0.02114601619541645, 0.002201962051913142, -0.009579732082784176, -0.026256004348397255, -0.003587163984775543, -0.0031742958817631006, -0.020200610160827637, -0.010632844641804695, 0.008424898609519005, 0.004167572595179081, 0.013726362027227879, -0.006432362366467714, 0.005457036662846804, -0.008388997055590153, -0.011021777987480164, -0.011644071899354458, -0.03372352942824364, 0.011949234642088413, -0.018752580508589745, -0.028434032574295998, -0.014037508517503738, -0.035231392830610275, 8.465848804917186e-05, 0.0011697923764586449, -0.0013133985921740532, 0.03458516672253609, -0.0212776567786932, -0.005421135108917952, -0.017412254586815834, 0.0004652243515010923, 0.008753996342420578, 0.004245358984917402, -0.013558821752667427, -0.002695608651265502, 0.014288819395005703, -0.006106256507337093, -0.03563828021287918, 0.01230226643383503, 0.009627601131796837, 0.001022446434944868, -0.005083062220364809, 0.004741997458040714, -0.015030785463750362, 0.009531863033771515, -0.03123435378074646, 0.01783110573887825, -0.024281419813632965, -0.04054482653737068, 0.0021735401824116707, 0.037912044674158096, 0.014228983782231808, 0.01389390230178833, 0.0033777381759136915, 0.011297022923827171, 0.006593919359147549, -0.036834996193647385, 0.012517675757408142, -0.014432425610721111, -0.007461540400981903, 0.0006593171274289489, 0.017615696415305138, 0.03073173202574253, -0.028194690123200417, 0.00865825917571783, 0.02361125685274601, 0.014049476012587547, -0.021062247455120087, -0.016634387895464897, -0.012254398316144943, -0.014875211752951145, 0.012948494404554367, -0.0021241754293441772, -0.009418174624443054, 0.017615696415305138, -0.010716614313423634, -0.011979152448475361, -0.020954541862010956, 0.014671769924461842, -0.0034674920607358217, -0.006034453399479389, -0.01769946701824665, -0.003883351804688573, -0.028960589319467545, 0.0049364641308784485, -0.0020463888067752123, 0.004137654323130846, -0.00916088093072176, -0.049496278166770935, 0.008161620236933231, 0.002731510205194354, 0.028314361348748207, 0.0022662857081741095, -0.01064481120556593, 0.005522856023162603, 0.009735305793583393, 0.004206465557217598, 0.010441369377076626, -0.011380793526768684, 0.012188578955829144, -0.016191601753234863, 0.010686696507036686, -0.008359079249203205, -0.024161748588085175, 0.011273088864982128, 0.00491552148014307, 0.001471215859055519, -0.027356985956430435, 0.01645488105714321, 0.001470467890612781, -0.0051458897069096565, -0.011069647036492825, 0.01161415409296751, 0.001233368064276874, -0.025896988809108734, -0.007353835739195347, -0.02422158420085907, 0.0011129482882097363, 0.012529643252491951, 0.0022767570335417986, -0.014587999321520329, 0.023910436779260635, 0.0029558949172496796, 0.014899145811796188, 0.0013231219490990043, -0.030827470123767853, -0.0015243202215060592, 0.010052436031401157, -0.010160140693187714, -0.002403908409178257, -0.04557104408740997, 0.00494843116030097, 0.010716614313423634, 0.003255074378103018, 0.015222259797155857, 0.0022737651597708464, -0.009705387987196445, -0.0032101974356919527, -0.007473507430404425, 0.0230009313672781, -0.0007026981911621988, 0.011081613600254059, -0.012804888188838959, -0.0031144600361585617, 0.016873732209205627, 0.013666526414453983, -0.017388321459293365, -0.029726488515734673, -0.009118995629251003, -0.0021974744740873575, 0.0351356565952301, 0.02385060116648674, -0.008646291680634022, 0.01039948407560587, 0.022342735901474953, 0.009801125153899193, 0.02876911498606205, 0.05040578544139862, -0.025059286504983902, 0.02618420124053955, -0.003590155625715852, 0.02411387860774994, -0.009771207347512245, -0.01359472330659628, -0.003943187650293112, 0.03635631129145622, 0.02965468540787697, -0.005585683975368738, -0.013846034184098244, -0.012745052576065063, -0.011153416708111763, -0.020344216376543045, 0.01647881418466568, 0.00572031456977129, 0.017651598900556564, -0.006707607302814722, 0.016885699704289436, 0.0006596911116503179, 0.03097107633948326, -0.010142189450562, -0.0167061910033226, -0.0035722048487514257, -0.02399420738220215, 0.012780954129993916, 0.00028216378996148705, 0.0021152000408619642, 0.005172816105186939, 0.008556537330150604, -0.006719574797898531, -0.01475553959608078, 0.003856425639241934, -0.010345632210373878, -0.021852081641554832, -0.05007070302963257, -0.005089045502245426, -0.029798291623592377, 0.0168378297239542, 0.004816791974008083, -0.012188578955829144, 0.019003890454769135, -0.00032517086947336793, 0.019961265847086906, 0.005678429733961821, -0.006611870136111975, 0.013128002174198627, 0.014432425610721111, -0.020104872062802315, -0.01880044862627983, -0.003557245945557952, -0.017507992684841156, 0.02447289414703846, -0.006839246489107609, 0.035374999046325684, -0.011871447786688805, -0.00399703998118639, 0.008113752119243145, -0.0019237251253798604, 0.02079896815121174, 0.01481537614017725, -0.007240147329866886, 0.018477333709597588, 0.031665172427892685, -0.005759207997471094, -0.014659802429378033, -0.00039229929097928107, -0.005295479670166969, -0.01549750566482544, -0.0038354829885065556, 0.00558867584913969, -0.02274961955845356, 0.01584455370903015, -0.0024592566769570112, -0.005651503335684538, -0.01833372749388218, -0.0029843170195817947, 0.026495348662137985, 0.02397027239203453, -0.01661045290529728, -0.024425026029348373, -0.006294739432632923, 0.0014465335989370942, 0.0017920860555022955, 0.0001839019823819399, -0.021840114146471024, 0.0034315905068069696, 0.013104068115353584, -0.01340324804186821, -0.007527359761297703, 0.00940620806068182, -0.0028302394784986973, -0.0005179547588340938, -0.003557245945557952, 0.007473507430404425, -0.009579732082784176, -0.002272269455716014, -0.0479884147644043, -0.033268775790929794, -0.004113720264285803, -0.003213189309462905, -0.02347961813211441, -0.00014510212349705398, 0.0005863920669071376, -0.014911113306879997, -0.060075271874666214, -0.0034495412837713957, 0.012182595208287239, 0.028338296338915825, -0.0034465494100004435, 0.01694553531706333, 0.012044972740113735, -0.014181114733219147, -0.047653332352638245, -0.009196782484650612, 0.021002409979701042, 0.0029917964711785316, 0.0003575196606107056, 0.005732282064855099, 0.0013178862864151597, -0.009926780126988888, 0.018249958753585815, 0.023910436779260635, -0.03037271648645401, -0.0151145551353693, 0.016024062409996986, -0.002375486306846142, -0.004287244286388159, 0.029415342956781387, -0.0042304000817239285, -0.010387517511844635, -0.010369566269218922, 0.0022199128288775682, 0.02903239242732525, -0.008957438170909882, 0.003557245945557952, -0.0030845419969409704, -0.0014487773878499866, 0.01087218802422285, -0.004747980739921331, -0.020236510783433914, 0.005714331287890673, -0.0031922466587275267, 0.00032984555582515895, 0.002483190968632698, 0.005890847183763981, 0.01635914295911789, -0.00251909252256155, -0.009645551443099976, 0.020822903141379356, 0.01731651835143566, 0.005089045502245426, -0.00737776979804039, 0.004098760895431042, 0.029056327417492867, 0.026471413671970367, -0.017125042155385017, 0.012649315409362316, -0.014049476012587547, -0.009813092648983002, 0.005801093298941851, 0.030635995790362358, -0.03530319780111313, 0.01757979579269886, -0.005388225428760052, -0.012613413855433464, 0.010327680967748165, 0.013977672904729843, -0.01548553816974163, 0.003892327193170786, 0.02273765206336975, -0.03724187985062599, 0.009274568408727646, -0.0012266365811228752, 0.009860960766673088, -0.004188514780253172, 0.008574488572776318, -0.01181161217391491, -0.004996300209313631, -0.028481902554631233, -0.0019401799654588103, 0.031401894986629486, -0.01967405341565609, -0.0057292901910841465, -0.03489631414413452, -0.029223866760730743, 0.014240951277315617, 0.014480294659733772, 0.02374289557337761, 0.0037726552691310644, -0.01290062628686428, -0.0033926970791071653, 0.011979152448475361, 0.0139537388458848, 0.004326137714087963, -0.0028033133130520582, -0.00393122062087059, -0.018848316743969917, 0.003326877485960722, -0.007389737293124199, -0.03542286902666092, 0.0019117578631266952, 0.025394367054104805, 0.013259641826152802, -0.02903239242732525, -0.030827470123767853, 0.0005482466658577323, -0.01298439595848322, 0.005313430447131395, 0.011673989705741405, -0.009543830528855324, 3.1647596188122407e-05, -0.019015857949852943, -0.009478011168539524, 0.002785362536087632, 0.007868424989283085, 0.016514716669917107, 0.0013059191405773163, -0.016299307346343994, 0.03908482939004898, -0.00633662473410368, 0.008065883070230484, 0.023276176303625107, 0.013259641826152802, -0.017400287091732025, -0.00036256833118386567, 0.012445872649550438, 0.004538555163890123, -0.0001578172668814659, 0.0008294755243696272, -0.00016931697609834373, -0.011398743838071823, 0.01634717546403408, 0.019697988405823708, -0.007736785337328911, -0.005956666544079781, 0.003461508546024561, -0.04624120518565178, -0.014360622502863407, -0.010393500328063965, -0.003530319780111313, -0.01905175857245922, -0.00522966030985117, -0.012745052576065063, -0.019733889028429985, 0.004442817531526089, 0.003913269843906164, 0.01722078025341034, -0.0001646422897465527, -0.03822319209575653, 0.0012528147781267762, -0.007730802055448294, 0.003655975218862295, -0.00028160284273326397, -0.006193018518388271, -0.015712914988398552, -0.006151133216917515, 0.02005700394511223, 0.0018594014691188931, 0.006342608481645584, -0.0038444583769887686, -0.0028122887015342712, 0.011392761021852493, -0.001857905532233417, -0.002764419885352254, 0.012864724732935429, 0.01205693930387497, -0.0008219960727728903, -0.0018504260806366801, 0.004466752056032419, -0.00072214484680444, 0.004634292796254158, 0.025226827710866928, -0.010178091004490852, -0.020439952611923218, 0.014767507091164589, -0.027716001495718956, -0.002068827161565423, -0.009130962193012238, 0.009705387987196445, 0.025849120691418648, -0.001523572369478643, -0.0051937587559223175, -0.01978175714612007, -0.023527486249804497, -0.01722078025341034, 0.010261861607432365, -0.007485474459826946, 0.010842270217835903, 0.01746012456715107, 0.006546050310134888, 0.00043044472113251686, -0.03130615875124931, 0.003308926708996296, -0.004191506654024124, -0.0021092165261507034, -0.0062468708492815495, -0.002308171009644866, 0.016873732209205627, 0.00281528034247458, 0.02484387718141079, -0.022330768406391144, 0.021600769832730293, 0.009627601131796837, 0.01598815992474556, 0.0013620152603834867, -0.010734565556049347, -0.03870187699794769, -0.005483962595462799, -0.0071444096975028515, -0.0010411451803520322, -0.005804085172712803, 0.011757760308682919, 0.004655234981328249, 0.009154897183179855, -0.00804194901138544, 0.010854237712919712, 0.01316390372812748, 0.023886501789093018, 0.00719826202839613, -0.015533407218754292, 0.0025430270470678806, 0.004478719085454941, -0.026974035426974297, -0.018764546141028404, -0.017962746322155, 0.014839310199022293, 0.008759980089962482, 0.039635319262742996, -0.01340324804186821, 0.0353989340364933, 0.025131089612841606, -0.0005878880037926137, -0.010405467823147774, -0.006199002265930176, -0.009795141406357288, -0.009358339011669159, 0.003506385488435626, -0.008167603984475136, -0.018022581934928894, 0.015688979998230934, -0.004813800565898418, 0.014516196213662624, -0.006911049596965313, -0.031066814437508583, -0.02740485593676567, 0.011015794239938259, 0.004427858628332615, -0.009202765300869942, -0.04425465315580368, 0.018010614439845085, -0.009495961479842663, -0.024149781093001366, -0.01732848398387432, -0.008329161442816257, -0.00781457219272852, 0.033268775790929794, -0.004984332714229822, 0.022582078352570534, 0.05040578544139862, -0.015892421826720238, 0.01819012127816677, 0.01358275581151247, -0.004212449304759502, -0.04257924482226372, -0.028864851221442223, 0.014923080801963806, 0.005591667257249355, -0.00034312164643779397, -0.015150456689298153, -0.01980569213628769, 0.008873668499290943, -0.012200545519590378, 0.008143669925630093, 0.02239060401916504, 0.013331444934010506, -0.006118223536759615, -0.022689783945679665, -0.026040595024824142, 0.0011346387909725308, 0.023276176303625107, 0.009065142832696438, -0.003072574967518449, 0.0010822823969647288, 0.03269435092806816, 0.023766830563545227, -0.002774891210719943, -0.006665722467005253, 0.001946163596585393, 0.0005003779660910368, 0.034130413085222244, -0.003635032568126917, -0.020978476852178574, -0.01658651977777481, -0.006103264633566141, 0.034010741859674454, -0.008406948298215866, 0.01413324661552906, 0.00878989789634943, 0.02374289557337761, -0.017484057694673538, -0.013367346487939358, 0.0195543821901083, 0.03970712050795555, -0.026088465005159378, 6.315495556918904e-05, -0.00558867584913969, -0.011727841570973396, -0.011656038463115692, 0.00402097450569272, -0.00139118533115834, 0.0015916356351226568, 0.001726266578771174, 0.012745052576065063, 0.034106478095054626, 0.017902908846735954, 0.03171304240822792, -0.0027165510691702366, 0.005050152540206909, 0.027237314730882645, -0.00713244266808033, 0.005418143235146999, -0.024676335975527763, 0.007670965977013111, 0.015581275336444378, -0.005436094012111425, -0.0051937587559223175, -0.009172847494482994, 0.015605210326611996, 0.0008474263595417142, -0.030803535133600235, -0.007808588445186615, 0.026399610564112663, -0.005914781708270311, -0.00843088235706091, 0.0005179547588340938, -0.01235013548284769, 0.030468454584479332, -0.0024697280023247004, -0.007270065136253834, 0.002411387860774994, -0.00012874073581770062, 0.009555798023939133, -0.007563261315226555, 0.01475553959608078, 0.010531123727560043, -0.014408491551876068, 0.006199002265930176, 0.0032700335141271353, -0.0023814698215574026, -0.0015086133498698473, 0.002836222993209958, -0.005331381224095821, -0.034609101712703705, -0.011338908225297928, 0.00946005992591381, 0.0076769497245550156, 0.0034645001869648695, 0.007359819021075964, 0.011207269504666328, 0.01099784392863512, -0.001875856309197843, -0.0015871479408815503, -0.01549750566482544, -0.00903522502630949, -0.009089077822864056, -0.007120475638657808, -0.026351742446422577, -0.01870471052825451, -0.0031742958817631006, 0.017687499523162842, 0.021612737327814102, 0.006288756150752306, 0.01285275723785162, 0.011219236068427563, -0.0023919411469250917, -0.0035452786833047867, 0.015329964458942413, -0.005026218015700579, 0.013475051149725914, 0.036954667419195175, 0.009645551443099976, -0.0022199128288775682, -0.00728801591321826, -0.023455683141946793, 0.014336688444018364, 0.00581006845459342, 0.004359047394245863, -0.02470027096569538, 0.03750516101717949, 0.006258837878704071, 0.013319477438926697, -0.03681106120347977, -0.0004483954980969429, 0.010178091004490852, -0.0006851213984191418, 0.0036051147617399693, 0.005029209889471531, 0.02544223703444004, 0.01481537614017725, 0.00892153661698103, -0.014240951277315617, -0.012792921625077724, -0.011961202137172222, 0.0050591276958584785, 0.0008571496582590044, -0.018597006797790527, 0.0008160124416463077, -0.0018698727944865823, 0.019350938498973846, -0.013391280546784401, -0.009262601844966412, 0.0066956402733922005, 0.015270128846168518, -0.022163227200508118, 0.005696380510926247, 0.004182531498372555, -0.004517612513154745, -0.002528067911043763, -0.0038773680571466684, -0.028457967564463615, 0.010632844641804695, -0.003407656215131283, 0.005549782421439886, 0.0019012866541743279, -0.008514652960002422, -0.004006015602499247, -0.0037397455889731646, 0.001383705879561603, -0.017041271552443504, 0.015928324311971664, 0.0010164628038182855, -0.0031413862016052008, -0.014719638042151928, 0.01230226643383503, 0.0027599320746958256, 0.003979089204221964, -0.0025475146248936653, 0.0033508120104670525, 0.018022581934928894, -0.017053239047527313, 0.017137009650468826, -0.015473570674657822, -0.006719574797898531, -0.009789157658815384, 0.014611933380365372, 0.0021092165261507034, 0.00965153519064188, -0.008646291680634022, 0.012074890546500683, -0.028745179995894432, -0.009747272357344627, -0.0014944022987037897, -0.0023051791358739138, 0.012625380419194698, -0.014516196213662624, 0.0169694684445858, 0.008490717969834805, 0.013929803855717182, -0.01611979864537716, -0.0014697200385853648, -0.010890139266848564, -0.013690460473299026, 0.018369629979133606, -0.0064562964253127575, -0.012033005245029926, -0.0012475791154429317, 0.009675469249486923, 0.0026163258589804173, -0.0027509566862136126, -0.005923756863921881, 0.002737493719905615, -0.002809296827763319, 0.030588125810027122, 0.0039910562336444855, 0.01038153376430273, -0.00488261179998517, 0.002819768153131008, -0.006294739432632923, 0.005056135822087526, -0.004065851215273142, 0.0024861828424036503, 0.003670934122055769, 0.01633520796895027, -0.013666526414453983, 0.008879651315510273, 0.027835674583911896, 0.012164643965661526, -0.018106352537870407, -0.0010628356831148267, -0.024724205955863, -0.011422678828239441, -0.00021709222346544266, -0.0007161612738855183, 0.011536367237567902, 0.007754736114293337, -0.017986679449677467, -0.01284078974276781, 0.010052436031401157, -0.02166060544550419, 0.0009483994799666107, 0.016191601753234863, 0.013104068115353584, 0.002854173770174384, -0.006899082567542791, -0.010489238426089287, 0.02251027524471283, -0.034872379153966904, -0.006869164761155844, -0.003751712618395686, -0.0027449731715023518, 0.04877824708819389, -0.0017756312154233456, 0.013642591424286366, 0.010848253965377808, -0.013510952703654766, -0.012080874294042587, -0.036858931183815, 0.017855040729045868, 0.014300786890089512, 0.020463887602090836, -0.0020194626413285732, 0.013056199066340923, -0.024149781093001366, -0.005157857201993465, 0.0008504181168973446, -0.025633711367845535, 0.009950715117156506, 0.019398808479309082, 0.0016664306167513132, 0.005477979313582182, 0.0021107124630361795, -0.02927173674106598, -0.00781457219272852, -0.006988836452364922, -0.016550617292523384, 0.0030441528651863337, 0.002472719643265009, -0.00026982263079844415, -0.007030721753835678, -0.02371896244585514, 0.014611933380365372, 0.017914876341819763, -0.021983720362186432, 0.009250634349882603, -0.0066956402733922005, 0.016395043581724167, 0.0026402603834867477, -0.01991339772939682, 0.015066687017679214, 0.005537814926356077, 0.010908089578151703, 0.001433818368241191, -0.00746752368286252, -0.010800384916365147, 0.00373376184143126, 0.007892359048128128, -0.02558584325015545, 0.0084189148619771, 0.012780954129993916, -0.007617113646119833, 0.03508778661489487, 0.0013021794147789478, 0.0017322500934824347, -0.01112948264926672, -0.00947202742099762, -0.010507188737392426, 0.015569308772683144, 0.00429921131581068, 0.007174327969551086, 0.010716614313423634, 0.016143733635544777, 0.0055587575770914555, 0.0003646251861937344, 0.00050262181321159, -0.019027825444936752, -0.009065142832696438, -0.02484387718141079, 0.00216606049798429, -0.009364322759211063, -0.02030831389129162, 0.003180279629305005, -0.0006458540447056293, -0.006067363079637289, -0.0012834806693717837, -0.0071623604744672775, 0.0056993719190359116, -0.0012774970382452011, 0.030588125810027122, 0.004323145840317011, 0.016203569248318672, 0.007599162869155407, -0.0018100368324667215, -0.009771207347512245, 0.02225896529853344, 0.018094385042786598, 0.0006035949336364865, 0.00947202742099762, 0.014647834934294224, 0.02420961670577526, 0.038773681968450546, -0.003575196722522378, -0.008071866817772388, -0.002843702444806695, 0.015904389321804047, 0.014348655939102173, 0.02004503645002842, 0.0002879603998735547, 0.022211097180843353, 0.008801865391433239, -0.029104195535182953, 0.009418174624443054, -0.011207269504666328, -0.01621553674340248, 0.004344088491052389, 0.009639567695558071, 0.0024772074539214373, -0.026136333122849464, -0.016694223508238792, -1.5064162653288804e-05, 0.011913333088159561, -0.010351615957915783, -0.023096667602658272, 0.022845357656478882, 0.013798165135085583, 0.0062827724032104015, -0.012433906085789204, -0.0005093533545732498, -0.0001940927904797718, -0.006228920072317123, -0.01732848398387432, 0.009478011168539524, -0.004128679167479277, 0.0016798936994746327, 0.007527359761297703, 0.013510952703654766, -0.010770467109978199, 0.028697311878204346, 0.003760688006877899, 0.0025041336193680763, -0.0008855717605911195, -0.01475553959608078, 0.01285275723785162, 0.024006174877285957, -0.007497441954910755, 0.017878975719213486, 0.006420394871383905, 0.009065142832696438, 0.0016155700432136655, 0.014288819395005703, 0.005358307156711817, 0.027739936485886574, -0.0184294655919075, -0.020188642665743828, 0.0029005466494709253, -0.020990444347262383, -0.003497410099953413, 0.00706662330776453, 0.0035961393732577562, 0.0009723338298499584, 0.015700947493314743, -0.0004543790710158646, 0.015449636615812778, 0.0067315418273210526, -0.0007558025536127388, -0.002281244844198227, 0.008251374587416649, 0.0027150551322847605, -0.002553498139604926, -0.03465696796774864, 0.0033867135643959045, 0.001197466510348022, -0.019231267273426056, -0.022833390161395073, 0.020607493817806244, 0.014109311625361443, 0.011673989705741405, -0.00818555522710085, -0.004975357558578253, 0.022821422666311264, 0.012972429394721985, -0.011853497475385666, -0.004023966379463673, 0.021062247455120087, -0.012828823179006577, 0.0018698727944865823, -0.008388997055590153, 0.036834996193647385, 0.013905869796872139, 0.009819075465202332, 0.010979892686009407, 0.004170564003288746, 0.012433906085789204, 0.02064339444041252, -0.011267105117440224, 0.02076306752860546, 0.0019955281168222427, -0.005878880154341459, 0.033484186977148056, -0.020559625700116158, 0.012409971095621586, 0.005325397476553917, -0.005609618034213781, 0.017232747748494148, 0.0011129482882097363, 0.007922276854515076, -0.018991922959685326, -0.0008713607094250619, -0.0220076534897089, 0.0037217948120087385, -0.01943470910191536, 0.010674729943275452, 0.0049185133539140224, -0.019721921533346176, -0.0021735401824116707, 0.03097107633948326, 0.024652402848005295, -0.020691264420747757, 0.002704584039747715, -0.0008212481043301523, -0.004278268665075302, -0.006294739432632923, -0.0055587575770914555, -0.0017247706418856978, 0.004003023728728294, -0.02618420124053955, -0.010961942374706268, 0.00836506299674511, -0.017651598900556564, -0.006940967869013548, -0.018010614439845085, 0.017747336998581886, 0.0010067394468933344, -0.005388225428760052, -0.009065142832696438, 0.011931284330785275, 0.00288857938721776, 0.00048766282270662487, -0.031162550672888756, 0.014504228718578815, 0.010243911296129227, 0.008227440528571606, 0.021840114146471024, -0.0089813731610775, -0.003679909510537982, 0.006767443381249905, 0.0038534337654709816, 0.02054765820503235, -0.01463586837053299, -0.006124207284301519, 0.038175322115421295, -0.002297699684277177, -0.0020822903607040644, 0.02251027524471283, 0.0027255264576524496, 0.011326940730214119, 0.005932732485234737, 0.00498134084045887, 0.015832586213946342, 0.027500592172145844, 0.0023036831989884377, 0.021600769832730293, 0.008287276141345501, -0.018656842410564423, -0.011009810492396355, -0.013869968242943287, -0.009047192521393299, 0.0022932118736207485, -0.01322374027222395, -0.01444439310580492, 0.006611870136111975, 0.004747980739921331, -0.012888658791780472, 0.029941897839307785, 0.028362229466438293, -0.032143861055374146, 0.040760233998298645, 0.007521376013755798, 0.012224480509757996, 0.006348591763526201, 0.009412191808223724, -0.004909537732601166, -0.018285859376192093, -0.015042752027511597, 0.03456123173236847, 0.009256618097424507, -0.013858000747859478, -0.004771915264427662, 0.0002346690307604149, 0.019650118425488472, 0.006964901927858591, -0.00387437641620636, 0.0017905901186168194, -0.008508669212460518, 0.005543798673897982, 0.045427437871694565, 0.03377139940857887, 0.0060075270012021065, -0.008251374587416649, -0.007329901214689016, -0.005705355666577816, 0.0014315745793282986, -0.006106256507337093, -0.00633662473410368, -0.018991922959685326, -0.009089077822864056, 0.012924560345709324, -0.035734016448259354, -0.016407011076807976, 0.013881935738027096, -0.02814682014286518, -0.014456360600888729, -0.0014742077328264713, -0.007329901214689016, -0.004930480383336544, 0.01658651977777481, 0.002475711517035961, 0.02103831246495247, 0.003742737229913473, -0.0076111298985779285, -0.007706867530941963, 0.03377139940857887, -0.004718062933534384, 0.0031204435508698225, -0.017986679449677467, -0.004158596973866224, -0.02596879191696644, 0.011949234642088413, 0.0006802597199566662, -0.009095060639083385, 0.004269293509423733, -0.005101012997329235, 0.0071922787465155125, 0.023766830563545227, 0.008412931114435196, -0.0067794108763337135, 0.017065206542611122, 0.02841009944677353, -0.01161415409296751, -0.0005946195451542735, -0.00854457076638937, 0.00364400795660913, 0.005854945629835129, -0.009274568408727646, -0.008197521790862083, 0.011380793526768684, 0.012200545519590378, -0.03697860240936279, -0.011650055646896362, -0.0039880648255348206, -0.01431275438517332, -0.005011259112507105, -0.003976097330451012, 0.017436189576983452, 0.001762168132700026, 0.0020030078012496233, -0.011871447786688805, -0.007958178408443928, 0.010142189450562, 0.018393564969301224, 0.024173714220523834, 0.0011323948856443167, 0.011434645392000675, 0.0006103264749981463, -0.01609586551785469, 0.03269435092806816, -0.01377423107624054, 0.03748122602701187, 0.004541547037661076, -0.009478011168539524, 0.002879603998735547, -0.00207630661316216, 0.004496669862419367, 0.012601446360349655, 0.005881871562451124, -0.0057472409680485725, -0.008945471607148647, 0.008933504112064838, 0.016574552282691002, -0.004996300209313631, 0.007653015200048685, 0.016933567821979523, 0.006839246489107609, 0.03269435092806816, -0.01710110902786255, 0.015138490125536919, 0.0036230655387043953, 0.022725684568285942, 0.0013762263115495443, 0.007706867530941963, -0.012098824605345726, -0.01008833758533001, 0.0018728645518422127, -0.0042663016356527805, -0.010118255391716957, -0.011153416708111763, 0.020439952611923218, 0.010926040820777416, -0.020212575793266296, -0.005002283491194248, -0.02460453286767006, 0.019207332283258438, -0.004604374524205923, -0.005014250986278057, -0.005080070346593857, 0.002362023340538144, 0.01572488248348236, -0.003638024441897869, 0.018656842410564423, -0.01371439453214407, -0.021576834842562675, 0.0019072701688855886, -0.001576676731929183, -0.00316831236705184, 0.008095800876617432, 0.018656842410564423, -0.014217016287147999, 0.004987324588000774, 0.005199742037802935, 0.006414411589503288, -0.008580472320318222, 0.0023485601413995028, -0.004484702832996845, 0.002755444496870041, 0.012757020071148872, -0.03223959729075432, -0.0029214893002063036, -0.02876911498606205, 0.012804888188838959, 0.01499488390982151, 0.006707607302814722, -0.006498181726783514, -0.006821295712143183, 0.022294865921139717, 0.010650794953107834, 0.013080134056508541, 0.01499488390982151, 0.009310469962656498, -0.007084574084728956, 0.020212575793266296, -0.014169148169457912, 0.0100763700902462, -0.013319477438926697, 0.008580472320318222, -0.011877431534230709, -0.018369629979133606, -0.0005542302969843149, -0.003865401027724147, 0.021732408553361893, 0.0011256634024903178, 0.0012617901666089892, 1.321766285400372e-05, -0.008712111040949821, -0.006498181726783514, -0.01117735169827938, 0.005522856023162603, 0.003778638783842325, -0.007030721753835678, 0.014911113306879997, -0.0031294189393520355, 0.007694900501519442, -0.013151937164366245, -0.012936527840793133, -0.018106352537870407, -0.002915505552664399, 0.007485474459826946, -0.007305966690182686, 0.003317902097478509, 0.0052625699900090694, -0.008526619523763657, -0.01462390087544918, 0.024891745299100876, 0.016047995537519455, -0.00322515657171607, -0.002869132673367858, -0.013235706835985184, 0.002499645808711648, -0.022582078352570534, 0.024425026029348373, -0.009262601844966412, -0.0005183287430554628, 0.000259912310866639, 0.03250287473201752, 0.002052372321486473, 0.010112271644175053, 0.007252114359289408, -0.0014412979362532496, -0.018776513636112213, 0.023324044421315193, 0.018166188150644302, -0.017651598900556564, 0.012505709193646908, 0.00706662330776453, -0.0007423394708894193, -0.015317997895181179, -0.01389390230178833, -0.020104872062802315, 0.009448093362152576, 0.019721921533346176, 0.004362039268016815, -0.006785394158214331, -0.007730802055448294, 0.018106352537870407, -0.005382241681218147, 0.003144378075376153, -0.01797471195459366, -0.03697860240936279, 0.002376982243731618, -0.02039208449423313, 0.0007341120508499444, 0.0019222291884943843, 0.014324720948934555, -0.006558017805218697, 0.005836994852870703, 0.015317997895181179, 0.0002888953313231468, 0.01906372606754303, -0.011320957913994789, -0.0017217788845300674, 0.01124317105859518, -0.02862550877034664, 0.013044232502579689, 6.64739782223478e-05, -0.004080810118466616, 0.0005489946343004704, -0.014252917841076851, 0.0034914263524115086, -0.008783914148807526, 0.004667202476412058, -0.005780150648206472, -0.020188642665743828, -0.012996363453567028, -0.016311274841427803, 0.01917143166065216, -0.01377423107624054, -0.007718834560364485, 0.02692616730928421, 0.00715637719258666, -0.014228983782231808, -0.0008257357985712588, 0.0018564097117632627, 0.0022932118736207485, -0.0013403247576206923, 0.022941093891859055, -0.025059286504983902, -0.021840114146471024, 0.002122679492458701, -0.024137813597917557, -0.027045838534832, -0.05327790975570679, -0.006124207284301519, 0.0019132538000121713, -0.02063142880797386, -0.0034555247984826565, -1.3252722965262365e-05, 0.014456360600888729, -0.003186263144016266, 0.01622750423848629, -0.014480294659733772, -0.001329853548668325, -0.010124239139258862, -0.014504228718578815, -0.0066956402733922005, -0.014193082228302956, 0.017041271552443504, 0.005382241681218147, -0.013702427968382835, -0.012493741698563099, 0.012792921625077724, 0.005929740611463785, -0.017148977145552635, 0.0034405658952891827, 0.003682901384308934, -0.0022872283589094877, 0.010782434605062008, -0.038558270782232285, -0.0037188029382377863, 0.005394208710640669, -0.012338167987763882, -0.010650794953107834, 0.0006593171274289489, -0.00433212099596858, -0.003344828262925148, 0.001231872127391398, 0.008759980089962482, -0.016155701130628586, 0.020439952611923218, 0.003308926708996296, -0.00903522502630949, 0.008640307933092117, 0.018010614439845085, 0.021481098607182503, -0.011721858754754066, 0.005190766882151365, -0.0026986002922058105, 0.006893098820000887, 0.018956022337079048, 0.0012752532493323088, 0.013989640399813652, 0.014013574458658695, 0.0010927536059170961, -0.01340324804186821, -0.014300786890089512, 0.006133182439953089, 0.00044615165097638965, -0.011482514441013336, 0.005609618034213781, -0.020332248881459236, 0.014671769924461842, -0.019494544714689255, 0.02239060401916504, -0.03293369337916374, -0.006204985547810793, 0.007078590337187052, 0.015066687017679214, -0.004080810118466616, 0.014552097767591476, 0.0014831831213086843, -0.0011997102992609143, 0.004852693993598223, 0.001242343452759087, -0.0029648703057318926, 0.012780954129993916, -0.03173697739839554, 0.013463083654642105, 0.014468327164649963, -0.0026716741267591715, -0.009382273070514202, -0.0026342766359448433, 0.005292487796396017, 0.025274695828557014, 0.0007950699073262513, 0.010100305080413818, 0.026112398132681847, -0.009124979376792908, 0.010985876433551311, -0.009124979376792908, -4.1417682950850576e-05, 0.005026218015700579, 0.011135466396808624, -0.006408427841961384, 0.0026208136696368456, -0.0022827405482530594, -0.020104872062802315, 0.013319477438926697, -0.017759302631020546, 0.005355315748602152, 0.015270128846168518, -0.022893225774168968, 0.03987466171383858, -0.008323177695274353, 0.014037508517503738, -0.03283795714378357, 0.034465495496988297, -0.009202765300869942, -0.0010957454796880484, 0.031042879447340965, 0.004762939643114805, 0.009753256104886532, -0.02150503173470497, 0.006964901927858591, -0.0059865848161280155, -0.011087597347795963, -0.014528163708746433, 0.0008833279134705663, 0.009813092648983002, 0.030683863908052444, -0.0013575275661423802, 0.023778798058629036, -0.015150456689298153, 0.006647771690040827, 0.004864661023020744, 0.016383077949285507, -0.010620877146720886, -0.003560237819328904, -0.013929803855717182, 0.002297699684277177, 0.009466043673455715, 0.02447289414703846, 0.021540934219956398, 0.018513236194849014, 0.014300786890089512, -0.02273765206336975, -0.0029573908541351557, 0.002058355836197734, -0.0028302394784986973, -0.015916356816887856, -0.0051638404838740826, -0.022282900288701057, 0.006216953042894602, -0.004535563290119171, 0.012649315409362316, 0.040879905223846436, 0.02951107919216156, -0.023288143798708916, -0.005959658417850733, 0.016921600326895714, -0.015784718096256256, 0.0008855717605911195, 0.012780954129993916, 0.013307509943842888, -0.013834066689014435, -0.013463083654642105, 0.006653754971921444, 0.014480294659733772, -0.00364400795660913, 0.007264081854373217, -0.0016439921455457807, -0.012182595208287239, -0.014468327164649963, -0.010914073325693607, -0.017890943214297295, 0.011512432247400284, 0.008000063709914684, -0.00688711553812027, 0.008113752119243145, -0.02138536050915718, 0.021229786798357964, -0.028816983103752136, 0.004999291617423296, 0.009334404952824116, 0.018597006797790527, -0.019374873489141464, 0.0030022677965462208, -0.035470739006996155, 0.03590155765414238, -0.0029888045974075794, 0.015712914988398552, 0.006133182439953089, -0.019590282812714577, 0.00958571583032608, -0.007323917467147112, 0.00032647978514432907, 0.01917143166065216, -0.003593147499486804, -0.016777994111180305, 0.0019491553539410233, -0.025657646358013153, -0.015916356816887856, 0.01807045005261898, -0.0069349841214716434, -0.0004614845965988934, -0.023431750014424324, 0.012888658791780472, -0.013977672904729843, -0.011189318262040615, -0.0031922466587275267, 0.0056425281800329685, -0.009789157658815384, 0.004245358984917402, -0.010668746195733547, 0.012398004531860352, 0.026854364201426506, 0.004065851215273142, -0.025011418387293816, -0.011225219815969467, 0.012972429394721985, 0.026232071220874786, -0.0014368102420121431, 0.019877495244145393, 0.003629049053415656, 0.01038153376430273, 0.0140853775665164, -0.008095800876617432, 0.020080937072634697, -0.016430946066975594, 0.01463586837053299, -0.007299983408302069, -0.007760719861835241, -0.004786874167621136, -0.0117996446788311, 0.012200545519590378, 0.013869968242943287, -0.0076410481706261635, -0.014037508517503738, -0.0005243123159743845, -0.05485757812857628, 0.004239375703036785, 0.004185523372143507, 0.008035965263843536, -0.019602250307798386, 0.010955958627164364, -0.010543090291321278, -0.00660588638857007, 0.013128002174198627, -0.023563388735055923, 0.013199805282056332, -0.020942574366927147, -0.009723338298499584, -0.035231392830610275, -0.024772074073553085, 0.005065111443400383, 0.01905175857245922, 0.007904326543211937, -0.005995559971779585, 0.0052805207669734955, -0.022079456597566605, 0.023910436779260635, 0.00042932279757224023, -0.01512652263045311, 0.0005736769526265562, 0.005579700227826834, 0.0019297086400911212, -0.005412159487605095, 0.0031294189393520355, -0.019458644092082977, -0.010303746908903122, -0.015569308772683144, -0.013175871223211288, 0.02397027239203453, 0.0016679264372214675, 0.010094321332871914, 0.006348591763526201, -0.01156628504395485, -0.013080134056508541, 0.0007644039578735828, 0.014540130272507668, -0.009023257531225681, 0.0028661410324275494, -0.00040351852658204734, -0.01223644707351923, 0.007940228097140789, -0.014851277694106102, -0.012248414568603039, 0.006785394158214331, 0.00719826202839613, -0.017902908846735954, -0.023563388735055923, -0.00043119266047142446, 0.01230226643383503, -0.03925237059593201, -0.008029981516301632, 0.0279074776917696, -0.006046420428901911, 0.007808588445186615, 0.0009192294673994184, -0.0005789126153104007, 0.0052625699900090694, 0.010219976305961609, 0.010261861607432365, -0.011255137622356415, -0.003958146553486586, 0.003655975218862295, 0.007341868244111538, 0.03508778661489487, 0.01150046568363905, -0.01217062771320343, -0.01673012599349022, -0.014839310199022293, 0.01993733085691929, 0.013570788316428661, -0.0046971202827990055, 0.007796621415764093, 0.00792826060205698, -0.012218496762216091, 0.0071623604744672775, -0.011967185884714127, -0.010967925190925598, 0.006857197266072035, -0.002439809963107109, -0.01756782829761505, -0.0018967989599332213, 0.005522856023162603, 0.009364322759211063, -0.007515392731875181, -0.015042752027511597, 0.015473570674657822, 0.003234131960198283, -0.013834066689014435, 0.004712079185992479, 0.0032610581256449223, 0.017017338424921036, -0.016670290380716324, 0.023563388735055923, 0.0027330059092491865, -0.027356985956430435, -0.01694553531706333, -0.03561434522271156, -0.006964901927858591, 0.01576078310608864, -0.00651613250374794, -0.006917033344507217, -0.005274537019431591, -0.022306833416223526, 0.004197490401566029, 0.012194561772048473, -0.011123498901724815, 0.0034226151183247566, 0.006659738719463348, 0.015641111880540848, 0.00037453550612553954, 0.015581275336444378, -0.02301289699971676, 0.01033366471529007, -0.010573008097708225, 0.010782434605062008, 0.013020297512412071, -0.004634292796254158, -0.005068103317171335, -0.0231325700879097, -0.00010097312770085409, -0.010231943801045418, 0.010070386342704296, -0.004155605100095272, -0.014252917841076851, -0.004017982631921768, -0.012421938590705395, 0.02493961527943611, -0.0006383745349012315, -0.01150046568363905, 0.03123435378074646, -0.01062686089426279, -0.030588125810027122, 0.037433356046676636, -0.013869968242943287, -0.008813831955194473, 0.0031653204932808876, -0.012290299870073795, -0.0039042942225933075, -0.019099628552794456, -0.050118573009967804, -0.030468454584479332, -0.021469131112098694, 0.028481902554631233, 0.008089817129075527, 0.0071444096975028515, -0.018094385042786598, 0.01671815849840641, 0.008287276141345501, 0.01322374027222395, 0.006755476351827383, 0.01026784535497427, 0.006067363079637289, 0.0071922787465155125, -0.006558017805218697, -0.002052372321486473, -0.010854237712919712, -0.0151145551353693, 0.0070426887832582, 0.02211535908281803, -0.006342608481645584, 0.0060553960502147675, 0.005771175026893616, 0.03286189213395119, 0.01038153376430273, -0.0027270223945379257, 0.001603602897375822, 0.024377157911658287, 0.014205049723386765, -0.018728645518422127, 0.011656038463115692, -0.007000803481787443, -0.001222896738909185, 0.005053143948316574, -0.005325397476553917, -0.017496025189757347, 0.011608170345425606, 0.0019192374311387539, -0.006737525574862957, -0.0005179547588340938, 0.013307509943842888, 0.011225219815969467, 0.01980569213628769, 0.020822903141379356, -0.008257358334958553, 0.012565544806420803, -0.0005837742937728763, 0.0011832554591819644, 0.0008564017480239272, 0.012697183527052402, -0.03503992035984993, 0.0047659315168857574, 0.00755727756768465, -0.0036948686465620995, 0.004879619926214218, 0.009382273070514202, -0.0007539326907135546, 0.023706994950771332, -0.02373092994093895, -0.008191538974642754, -0.011069647036492825, -0.0008571496582590044, 0.012936527840793133, 0.018237991258502007, 0.022294865921139717, -0.008532603271305561, -0.018226023763418198, -0.039276301860809326, 0.015509472228586674, 0.0018997907172888517, 0.014013574458658695, 0.005591667257249355, 0.019027825444936752, -0.008035965263843536, -0.01525816135108471, 0.004864661023020744, -0.00489158695563674, 0.0026208136696368456, 0.009567764587700367, 0.012936527840793133, 0.020511755719780922, 0.010848253965377808, 0.001594627508893609, 0.005418143235146999, -0.008377029560506344, -0.01044735312461853, 0.011069647036492825, -0.005528839770704508, -0.004415891598910093, -0.004245358984917402, 0.01499488390982151, 0.007796621415764093, 0.016047995537519455, 0.0037277783267199993, -0.00023317313753068447, -0.010255877859890461, -0.004688145127147436, 0.02030831389129162, 0.0005729289841838181, 0.008317193947732449, -0.00037042179610580206, -0.013654558919370174, -0.010357598774135113, 0.012757020071148872, 0.00313540268689394, 0.015461604110896587, -0.03824712336063385, -0.0036230655387043953, -0.01117735169827938, 0.026997970417141914, 0.00679736165329814, -0.01598815992474556, 0.004664210602641106, 0.030157307162880898, -0.009059159085154533, 0.0076111298985779285, -0.005361299030482769, -0.007485474459826946, -0.006288756150752306, -0.0001356592692900449, -0.01720881275832653, -0.01993733085691929, 0.0015512463869526982, -0.005549782421439886, -0.015054719522595406, 0.00737776979804039, 0.004643267951905727, -0.008436866104602814, 0.007036705035716295, -0.0009843009756878018, -0.014923080801963806, 0.011943250894546509, 0.0012356119696050882, -0.03508778661489487, 0.011715875007212162, 0.0022647897712886333, -0.027093708515167236, -0.013786197640001774, 0.00781457219272852, 0.004960398655384779, 0.0001581912365509197, 0.004807816818356514, -0.019350938498973846, 0.009974649176001549, 0.01475553959608078, -0.02066732943058014, -0.0040568760596215725, -0.0046103582717478275, -0.003979089204221964, -0.002085282001644373, -0.020822903141379356, -0.0006394964875653386, 0.01698143593966961, -0.02260601334273815, -0.017244715243577957, -0.0026731700636446476, -0.0025549940764904022, -0.01929110288619995, 0.007892359048128128, 0.011751776561141014, 0.0014809392159804702, 0.009759239852428436, -0.02138536050915718, -0.03772056847810745, 0.004508637357503176, 0.007653015200048685, -0.01625143736600876, 0.04279465600848198, 0.020439952611923218, -0.001992536475881934, 0.0011196797713637352, 0.021792244166135788, 0.014157180674374104, -0.01780717261135578, 0.012386037036776543, -0.01744815707206726, 0.006587935611605644, 0.00026552192866802216, -0.0014308266108855605, -0.01235013548284769, 0.004718062933534384, -0.009591699577867985, -0.012398004531860352, 0.014348655939102173, -0.013510952703654766, 0.009184814989566803, 0.004188514780253172, 0.005651503335684538, 0.006187034770846367, 0.017244715243577957, -0.002281244844198227, 0.015030785463750362, 0.0139537388458848, -0.005651503335684538, -0.02114601619541645, -0.008670225739479065, -0.010100305080413818, -0.008532603271305561, -0.012625380419194698, -0.015401767566800117, -0.012409971095621586, -0.0030665912199765444, 0.02338388003408909, 0.007102524861693382, 0.014432425610721111, -0.0038384748622775078, -0.016059963032603264, 0.008053915575146675, 0.011051695793867111, 0.0007816068246029317, -0.029702555388212204, 0.027261249721050262, -0.005292487796396017, 0.00921473279595375, -0.03211992606520653, -0.011231203563511372, -0.012733085080981255, -0.005881871562451124, 0.004541547037661076, -0.01303226500749588, -0.03233533725142479, 0.0031563451047986746, -0.007024738006293774, -0.01759176328778267, 0.01517439167946577, 1.17743547889404e-05, 0.0117338253185153, 0.008849733509123325, -0.016574552282691002, 0.00627080537378788, -0.011021777987480164, 0.004137654323130846, -0.0035093771293759346, -0.023144537582993507, 0.013929803855717182, 0.006534083280712366, 0.028601573780179024, 0.013367346487939358, 0.010567025281488895, -0.01734045147895813, -0.01744815707206726, -0.026591086760163307, 0.0023036831989884377, 0.009902846068143845, 0.0021166959777474403, 0.009866944514214993, 0.009364322759211063, -0.01858503930270672, 0.003407656215131283, 0.02408994548022747, -0.0218760147690773, 0.014516196213662624, -0.004107736516743898, 0.01634717546403408, -0.022103391587734222, 0.014803408645093441, 0.011009810492396355, -0.013522919267416, -0.00817358773201704, -0.022558145225048065, 0.02544223703444004, 0.007772686891257763, -0.007569245062768459, -0.024628467857837677, 0.023276176303625107, -0.010483254678547382, -0.004999291617423296, 0.01907569356262684, 0.002402412472292781, 0.011404727585613728, 0.001753192744217813, 0.024066010490059853, -0.001655959291383624, -0.0012393516954034567, 0.007096541114151478, 0.010411451570689678, -0.032622549682855606, -0.02888878621160984, -0.028218623250722885, 0.011967185884714127, -0.0342022180557251, -0.004445809405297041, -0.012745052576065063, -0.01117735169827938, -0.025609776377677917, 0.026950102299451828, 0.007216212805360556, -0.01731651835143566, -0.015772750601172447, -0.0032281482126563787, 0.007916293106973171, -0.002375486306846142, 0.0009843009756878018, -0.01358275581151247, -0.0151145551353693, 0.008604406379163265, 0.009950715117156506, -0.007976129651069641, -0.006187034770846367, 0.007138426415622234, -0.014217016287147999, 0.006827279459685087, 0.012960461899638176, -0.021481098607182503, 0.006773427128791809, -0.004424866754561663, 0.012433906085789204, 0.007246131077408791, 0.009316453710198402, -0.007012770976871252, -0.0013792181853204966, 0.0015826602466404438, -0.025849120691418648, -0.014528163708746433, -0.028721245005726814, -0.019027825444936752, -0.014587999321520329, -0.0030875338707119226, 0.0018863276345655322, -0.007539326790720224, -0.003503393614664674, 0.012505709193646908, 0.01710110902786255, -0.001031421823427081, -0.0015332956099882722, -0.03073173202574253, -0.02936747297644615, -0.01943470910191536, -0.004101752769201994, 0.029319604858756065, 0.01673012599349022, -0.03357992321252823, -0.018728645518422127, 0.016430946066975594, 0.006390477064996958, 0.010770467109978199, -0.007461540400981903, -0.0024442977737635374, -0.004167572595179081, -0.001365755102597177, 0.016155701130628586, -0.013439149595797062, -0.027333052828907967, -0.009124979376792908, 0.0040748268365859985, -0.005872896406799555, -0.0028302394784986973, 0.005077078472822905, -0.01710110902786255, 0.01784307323396206, -0.00021784017735626549, -0.0028751164209097624, 0.037792373448610306, 0.01808241754770279, 0.01530603040009737, 0.004257326480001211, 0.01033366471529007, 0.01457603182643652, 0.03346025198698044, 0.002827247604727745, 0.005106996279209852, 0.008616373874247074, 0.005178799387067556, -0.007234163582324982, 0.006653754971921444, 0.020368149504065514, 0.00274946098215878, -0.023084700107574463, -0.0022647897712886333, 0.013654558919370174, -0.005020234268158674, 0.0070426887832582, 0.02066732943058014, 0.0038235157262533903, 0.003072574967518449, -0.0036589670926332474, -0.0014914105413481593, 0.011997103691101074, 0.022905193269252777, -0.020966509357094765, 0.00719826202839613, -0.013092100620269775, 0.007180311251431704, 0.0052506024949252605, 0.005101012997329235, 0.023324044421315193, -0.010836286470293999, -0.007018754258751869, -0.03269435092806816, 0.0009536350844427943, -0.009364322759211063, 0.019458644092082977, -0.002366510918363929, 0.012948494404554367, -0.024425026029348373, 0.006893098820000887, -0.006103264633566141, 0.019590282812714577, 0.01720881275832653, 0.00792826060205698, 0.022079456597566605, 0.00024514031247235835, 0.004385973326861858, 0.011542350053787231, -0.0013777222484350204, 0.006767443381249905, -0.004577448591589928, -0.019961265847086906, -0.008311210200190544, -0.002792841987684369, -0.00014098839892540127, -0.0008294755243696272, 0.0019940324127674103, 0.008819815702736378, 0.0022677816450595856, 0.0162394717335701, 0.009382273070514202, 0.012182595208287239, 0.008167603984475136, 0.0031054846476763487, -0.010830302722752094, -0.006049412302672863, -0.016299307346343994, 0.008388997055590153, -0.010255877859890461, 0.017771270126104355, -0.0042483508586883545, 0.009938747622072697, 0.019255202263593674, -0.0011099564144387841, -0.011332924477756023, -0.008257358334958553, -0.003452533157542348, -0.0060254777781665325, -0.028936654329299927, -0.015186358243227005, -0.0030785584822297096, 0.02237863652408123, -0.014360622502863407, 0.019159464165568352], "2e7b7a46-2077-4163-8fc6-ea5e0116eff7": [-0.025453802198171616, -0.030722664669156075, -0.005899642128497362, 0.04805796593427658, 0.010255729779601097, -0.007680666167289019, -0.005580542143434286, 0.0412307046353817, -0.0265817828476429, 0.044199079275131226, 0.01993262767791748, 0.031761594116687775, 0.011925440281629562, -0.005331940483301878, 0.015598801895976067, 0.013780673034489155, -0.022722898051142693, -0.0018654371378943324, 0.013135052286088467, -0.036481309682130814, 0.04894847795367241, -0.0009470966178923845, -0.02297521010041237, 0.038648221641778946, 0.03090076707303524, -0.002057453850284219, -0.03140538930892944, 0.022589322179555893, -0.015042232349514961, 0.0030017676763236523, -0.016993938013911247, 0.009328112937510014, -0.0018515229457989335, -0.005888510495424271, -0.013342838734388351, -0.011480184271931648, 0.011131400242447853, -0.004003593698143959, -0.019917786121368408, 0.0010741801233962178, -0.038232650607824326, 0.01173991709947586, -0.006905178539454937, -0.0531635656952858, -0.008905120193958282, 0.007372697349637747, -0.03152412548661232, 0.017261091619729996, 0.015227755531668663, -0.006997940130531788, 0.0067344969138503075, -0.0018635819433256984, -0.014693448320031166, 0.02367277815937996, 0.04167596250772476, -0.017097830772399902, 0.01297921221703291, 0.04327888414263725, 0.004701161291450262, -0.03921221196651459, -0.004311562515795231, 0.01003310177475214, -0.015791745856404305, -0.008845753036439419, 0.026062319055199623, -0.02992120385169983, 0.01693456992506981, -0.02763555571436882, -0.055241428315639496, -0.006971966940909624, -0.0193092692643404, -0.020244305953383446, -0.01044867467135191, -0.004348666872829199, 0.02854090929031372, -0.01149502582848072, 0.07320008426904678, 0.03671877831220627, 0.04039956256747246, 0.010574829764664173, -0.018715593963861465, -0.0020852822344750166, -0.010166678577661514, -0.02860027737915516, 0.04532705992460251, -0.02646304853260517, -0.020600510761141777, -0.0211199764162302, -0.023657936602830887, -0.0088828569278121, 0.012140647508203983, -0.021149659529328346, 1.54940971697215e-05, -0.01908664032816887, -0.017097830772399902, 0.040577664971351624, -0.010144416242837906, 0.017246250063180923, -0.00867507141083479, -0.0365406759083271, -0.02153554931282997, 0.009432006627321243, -0.010953297838568687, 0.023079102858901024, 0.026225578039884567, 0.01715719886124134, 0.03351293504238129, -0.008979329839348793, -0.009877262637019157, -0.005038813687860966, -0.0433085672557354, -0.031078869476914406, 0.024251610040664673, -0.012749163433909416, -0.041082289069890976, -0.04045892879366875, -0.0056621721014380455, 0.03550174459815025, -0.0443178154528141, -0.04372413828969002, -0.00023700606834609061, 0.024414870887994766, 0.03826233372092247, 0.01798834279179573, 0.02353920042514801, -0.005205784924328327, 0.016504155471920967, 0.02235185168683529, 0.05847695469856262, -0.024266451597213745, -0.014960601925849915, 0.013721305876970291, 0.013728726655244827, -0.00034252245677635074, -0.008689912967383862, 0.019116325303912163, 0.05957525223493576, 0.03645162656903267, -0.01398845948278904, 0.0038366226945072412, -0.06465116888284683, 0.023450149223208427, -0.006875494960695505, 0.017899291589856148, -0.0121183842420578, -0.02819954790174961, -0.04476306959986687, 0.03303799405694008, -0.010092469863593578, 0.0762278288602829, -0.03188033029437065, -0.04117133840918541, -0.028644803911447525, 0.02819954790174961, 0.0029869256541132927, -0.020882505923509598, -0.032177168875932693, 0.0391528457403183, -0.004074092488735914, -0.009120327420532703, -0.002727193059399724, -0.04117133840918541, 0.016415104269981384, 0.03193969652056694, 0.03392850607633591, -0.0009401395218446851, 0.0331864133477211, 0.03312704712152481, -0.013468993827700615, 0.023019734770059586, 0.010300255380570889, -0.004600978922098875, 0.004396902862936258, -0.025453802198171616, -0.01297921221703291, -0.01219259388744831, 0.0136099923402071, 0.02687862142920494, 0.022960368543863297, 0.014032985083758831, -0.03591731935739517, 0.02437034621834755, -0.021075451746582985, -0.00836339220404625, 0.031969379633665085, 0.008378233760595322, -0.012341012246906757, 0.028362806886434555, 0.00571411894634366, 0.002953531453385949, 0.004845869727432728, -0.026685677468776703, 0.010322518646717072, 0.036985933780670166, 0.0033616828732192516, -0.017825081944465637, 0.028318282216787338, -0.009150010533630848, -0.01298663392663002, 0.02665599249303341, -0.02040756680071354, -0.023925090208649635, -0.046069156378507614, 0.010693565011024475, -0.03882632404565811, 0.026121685281395912, -0.04292267933487892, -0.013721305876970291, 0.034136295318603516, -0.02229248359799385, 0.05559763312339783, -0.04805796593427658, 0.018507808446884155, -0.00951363705098629, 0.024800758808851242, 0.01950221322476864, 0.014470820315182209, -0.009936629794538021, -0.02082313969731331, -0.01985841803252697, -0.010018260218203068, -0.034611232578754425, -0.01623700186610222, -0.019917786121368408, -0.05049202963709831, 0.01631121151149273, -0.015183229930698872, 0.040577664971351624, -0.000754152366425842, -0.03182096406817436, 0.01993262767791748, 0.00926874577999115, -0.039894938468933105, 0.018300021067261696, -0.02563190460205078, 0.03556111454963684, 0.06180153414607048, -0.02318299561738968, 0.036807831376791, -0.018507808446884155, 0.0036084288731217384, 0.05853632465004921, 0.0015454094391316175, 0.0011901322286576033, -0.04360540583729744, 0.009854999370872974, -0.015940165147185326, 0.028288599103689194, 0.007702928967773914, 0.013253787532448769, 0.007595325354486704, -0.017068147659301758, 0.024073507636785507, -0.027175458148121834, -0.022337010130286217, 0.04758302494883537, 0.019324110820889473, -0.009387481026351452, 0.012125805020332336, -0.023732144385576248, 0.026611467823386192, 0.04090418666601181, -0.020585669204592705, 0.013832620345056057, 0.0539056621491909, -0.013884566724300385, 0.04945310205221176, -0.011146241798996925, 0.015257439576089382, 0.05004677549004555, 0.027873026207089424, -0.015673011541366577, 0.041290074586868286, 0.015925323590636253, -0.012548798695206642, -0.010493200272321701, -0.04980930685997009, 0.0007059163181111217, -0.0022466876544058323, -0.0025546562392264605, -0.02673020213842392, -0.006125980522483587, 0.02595842443406582, 0.004764239303767681, 0.01243006344884634, -0.017261091619729996, -0.021298078820109367, -0.033156730234622955, -0.04307109862565994, -0.05699276924133301, 0.0167267844080925, 0.022619005292654037, 0.037253085523843765, 0.01298663392663002, 0.013327996246516705, 0.0023746986407786608, -0.02438518777489662, -0.007636140566319227, 0.004445139318704605, -0.005866247694939375, -0.030039938166737556, 0.002443342236801982, 0.008155605755746365, -0.021194186061620712, -0.011969965882599354, -0.02673020213842392, 0.042952362447977066, 0.0031520414631813765, -0.029980571940541267, 0.036421939730644226, 0.006278109736740589, -0.053846292197704315, 0.018433598801493645, 0.0039293840527534485, 0.04182438179850578, -0.04428813233971596, -0.022930683568120003, 0.010574829764664173, -0.029060374945402145, -0.008860594592988491, 0.02708640694618225, 0.006782733369618654, -0.034551866352558136, -0.00409635528922081, -0.00014412844029720873, -0.04826575145125389, 0.004100065678358078, -0.02478591725230217, 0.005458096507936716, -0.02922363579273224, -0.04865163937211037, -0.0224260613322258, -0.03303799405694008, -0.006367160938680172, -0.03921221196651459, -0.027190299704670906, -0.01896790601313114, -0.03324578329920769, -0.032384954392910004, -0.03529395908117294, -0.00591819453984499, -0.021357446908950806, 0.041408807039260864, -0.0176321379840374, 0.018582018092274666, 0.0077697173692286015, 0.05043266341090202, 0.02368761971592903, -0.002714206464588642, 0.0010797458235174417, 0.0008469140157103539, -0.010975560173392296, 0.008467284962534904, -0.002818099455907941, 0.025854531675577164, -0.011339186690747738, -0.02367277815937996, 0.02347983419895172, 0.00197767885401845, -0.008667650632560253, -0.001437805825844407, -0.026745043694972992, -0.014960601925849915, -0.013914249837398529, 0.011480184271931648, -0.008712176233530045, -0.010634197853505611, 0.014930917881429195, -0.03651099279522896, -0.026834094896912575, -0.001890482846647501, -0.0009665765683166683, 0.013639675453305244, 0.020600510761141777, 0.021431656554341316, -0.0365406759083271, 0.034759651869535446, 0.0031409100629389286, 0.020585669204592705, 0.01430013868957758, -0.004571294877678156, 0.028763538226485252, 0.018374230712652206, 0.011999648995697498, 0.015494909137487411, 0.015405857935547829, -0.028362806886434555, -0.04221026971936226, -0.006326345726847649, -0.0016298225382342935, -0.010500621050596237, 0.03603605180978775, -0.023776670917868614, -0.035175222903490067, -0.021550390869379044, 0.0073912497609853745, 0.010055365040898323, -0.014589555561542511, 0.015747221186757088, -0.025780322030186653, 0.036214154213666916, -0.008927382528781891, -0.006508158519864082, -0.0007393105188384652, 0.01034478098154068, 0.0019535606261342764, -0.01065646018832922, -0.010359623469412327, 0.009305850602686405, 0.004382061306387186, 0.01454502996057272, 0.00439319247379899, -0.01044867467135191, -0.005376466084271669, -0.003717887680977583, 0.008838331326842308, -0.006589788943529129, -0.004059250466525555, -0.05129349231719971, 0.006864363327622414, 0.04354603588581085, 0.025528011843562126, -0.014181403443217278, -0.022411219775676727, 0.02950563095510006, 0.001377510721795261, 0.015242597088217735, 0.013520941138267517, 0.005899642128497362, -0.009624950587749481, -0.0013441165210679173, 0.04022146016359329, 0.003263355465605855, -0.0033171572722494602, -0.005409860517829657, -0.02901585027575493, 0.013765831477940083, 0.004675188101828098, -0.010530304163694382, 0.005810590926557779, -0.01902727410197258, 0.02646304853260517, 0.008007187396287918, 0.012697217054665089, 0.0030073332600295544, -0.03256305679678917, -0.02014041319489479, 0.0046455045230686665, 0.03143507242202759, -0.00843018013983965, 0.009973734617233276, 0.04200248420238495, 0.024741392582654953, 0.010678723454475403, 0.03695624694228172, -0.024978861212730408, -0.000793576065916568, -0.02214406616985798, -0.0008473778143525124, -0.04289299622178078, -0.021832386031746864, -0.031078869476914406, 0.054261866956949234, -0.0010927324183285236, 0.02583969011902809, -0.028021445497870445, 0.0016094149323180318, 0.021624600514769554, 0.010151837021112442, 0.007784559391438961, 0.020170096307992935, 0.025943582877516747, -0.02673020213842392, 0.018507808446884155, 0.03615478798747063, -0.009684317745268345, -0.03140538930892944, 0.013387364335358143, -0.012942108325660229, -0.013795515522360802, 0.0272199846804142, -0.028437016531825066, 0.01562848500907421, 0.048028282821178436, -0.018700752407312393, 0.043842874467372894, -0.020318515598773956, -0.05004677549004555, -0.025810007005929947, 0.04906721040606499, -0.000570020463783294, -0.006489606108516455, 0.020793454721570015, 0.010641618631780148, 0.0073355925269424915, 0.016222160309553146, 0.0005871813627891243, 0.007053597364574671, 0.0019405741477385163, -0.05868474021553993, 0.0023190416395664215, -0.03342388570308685, 0.0021836096420884132, -0.029134584590792656, -0.02299005165696144, 0.027516821399331093, 0.005688145291060209, -0.010463516227900982, -0.05268862843513489, -0.003706756280735135, -0.03903410956263542, 0.04354603588581085, -0.026092002168297768, 0.022945526987314224, 0.030262567102909088, 0.016682257875800133, -0.02319783717393875, -0.02805112861096859, 0.01617763563990593, 0.01838907226920128, -0.0038217806722968817, -0.02595842443406582, -0.03467060253024101, 0.01274174265563488, -0.025602219626307487, -0.02533506602048874, -0.03035161830484867, -0.02790270932018757, 0.004411744885146618, -0.009765948168933392, -0.0033969322685152292, 0.011576656252145767, -0.04004335775971413, 0.008445022627711296, 0.03048519417643547, 0.0011994083179160953, -0.030039938166737556, 0.02091219089925289, 0.006500737741589546, 0.009246483445167542, -0.03110855259001255, 0.043011728674173355, -0.007777138147503138, -0.0024693156592547894, -0.012890161015093327, -0.00039354138425551355, 0.007843926548957825, 0.024355502799153328, 0.0017337155295535922, -0.0233314149081707, -0.039271578192710876, 0.00334127526730299, -0.014871550723910332, 0.0037364400923252106, -0.03012898936867714, -0.03478933498263359, 0.014775078743696213, 0.0008993243682198226, 0.01797350123524666, -0.018997589126229286, -0.018849171698093414, 0.0055657001212239265, -0.00878638494759798, 0.039123162627220154, -0.033008310943841934, 0.03752024099230766, -0.010916193015873432, -0.01950221322476864, 0.016474472358822823, 0.0032707764767110348, 0.013357680290937424, -0.01874527707695961, 0.04832511767745018, -0.0017754583386704326, -0.028065970167517662, 0.0023208968341350555, -0.02429613657295704, -0.011242713779211044, -0.030811715871095657, -0.014693448320031166, -0.009476532228291035, 0.00022946918033994734, -0.0056250677444040775, -0.03594700247049332, -0.014136877842247486, -0.006545263342559338, -0.03271147608757019, -0.044881805777549744, -0.048087649047374725, 0.02687862142920494, -0.011598918586969376, 0.007183463778346777, -0.015153545886278152, 0.0017736031441017985, -0.00013821489119436592, 0.018552333116531372, 0.009691739454865456, -0.013350259512662888, 0.01972484029829502, 0.029965728521347046, -0.00950621534138918, 0.03250368684530258, -0.009365217760205269, -0.020986400544643402, -0.047731444239616394, 0.0069571249186992645, -0.028911957517266273, 0.017379825934767723, -0.014159141108393669, -0.02193627879023552, 0.03900442644953728, -0.026745043694972992, 0.024325819686055183, -0.019264742732048035, 0.030218040570616722, 0.03841075301170349, 0.011539551429450512, 0.041497860103845596, 0.012845635414123535, -0.044614650309085846, 0.027516821399331093, 0.0029127164743840694, 0.02276742458343506, 0.01797350123524666, -0.021580073982477188, 0.015405857935547829, -0.02229248359799385, -0.0037772550713270903, 0.00652671093121171, 0.0017513403436169028, -0.010953297838568687, -0.017275933176279068, 0.029475947842001915, -0.01666741631925106, 0.02818470448255539, -0.022871317341923714, 0.013854882679879665, 0.007573062554001808, -0.013276049867272377, 0.026759885251522064, -9.925498306984082e-05, -0.01485670916736126, 0.009291009046137333, 0.019947469234466553, -0.009365217760205269, 0.017810240387916565, 0.013402205891907215, 0.04351635277271271, 0.019665474072098732, 0.02770976535975933, -0.007250252179801464, 0.0033468410838395357, 0.0034284712746739388, 0.027932394295930862, 0.026477890089154243, -0.03597668558359146, -0.0025379592552781105, 0.013231524266302586, -0.024118034169077873, -0.00920195784419775, 0.028169862926006317, -0.020927032455801964, 0.044674020260572433, 0.008979329839348793, 0.012890161015093327, 0.004500796087086201, -0.013632254675030708, 0.016979096457362175, 0.011020085774362087, 0.032741159200668335, 0.012029333040118217, -0.022619005292654037, 0.00975110661238432, -0.0004972025635652244, -0.006997940130531788, -0.007636140566319227, -0.010997823439538479, -0.0057809073477983475, -0.007127806544303894, -0.011710233055055141, -0.023212680593132973, -0.012726901099085808, -0.03035161830484867, 0.020437249913811684, -0.004508216865360737, -0.005432123318314552, -0.007343013770878315, 0.0025509458500891924, -0.005090760532766581, -0.0026696808636188507, 0.001975823426619172, 0.022871317341923714, -0.03458154946565628, -0.014522766694426537, -0.017305616289377213, 0.026566941291093826, -0.02250027097761631, -0.013350259512662888, -0.011034928262233734, -0.031910013407468796, -0.021431656554341316, -0.0004236889071762562, -0.001293097622692585, 0.008526652120053768, 0.0011085019214078784, 0.03199906647205353, -0.01468602754175663, -0.040518295019865036, -0.00951363705098629, -0.027932394295930862, 0.01423335075378418, 0.0009266890701837838, -0.006048060953617096, -0.007843926548957825, 0.001137258019298315, 0.008793805725872517, 0.008764122612774372, 0.03223653510212898, -0.020259147509932518, -0.022589322179555893, 0.011584077030420303, 0.042388372123241425, -0.019665474072098732, -0.034255027770996094, -0.021134817972779274, 0.033156730234622955, 0.01985841803252697, 0.006923730950802565, -0.011918019503355026, 0.010916193015873432, 0.011376290582120419, -0.004122328478842974, -0.002962807659059763, 0.006675129756331444, 0.00840791780501604, -0.02943142130970955, -0.0016929004341363907, 0.004133460111916065, 0.03657035902142525, -0.006786443758755922, -0.0030741216614842415, 0.023494675755500793, 0.01135402824729681, -0.018240654841065407, -0.023910246789455414, 0.015227755531668663, 0.0019201665418222547, 0.021075451746582985, 0.002218859037384391, -0.007380118127912283, 0.005469228141009808, -0.01714235544204712, 0.02263384684920311, -0.02367277815937996, 0.007279935758560896, -0.0039553577080369, 0.011220451444387436, 0.006485895719379187, 0.003910832107067108, 0.036214154213666916, 0.005495201330631971, 0.015227755531668663, -0.00843018013983965, -0.032325584441423416, 0.0066973925568163395, 0.0036158498842269182, 0.014671185053884983, 0.03339419886469841, 0.042536791414022446, 0.01489381305873394, 0.037876445800065994, 0.018507808446884155, -0.011294661089777946, 0.02450392208993435, -0.045802000910043716, -0.028303440660238266, -0.009743685834109783, 0.012548798695206642, 0.011814125813543797, -0.03793581202626228, 0.008489548228681087, -0.04770176112651825, 0.02270805649459362, 0.021149659529328346, -0.0127714267000556, -0.013758410699665546, 0.005617646500468254, 0.017275933176279068, -0.010634197853505611, 0.008489548228681087, -0.0012522825272753835, -0.0056584617123007774, -0.0006122270133346319, 0.029683733358979225, 0.002205872442573309, 0.002803257666528225, -0.011435658670961857, -0.011450500227510929, 0.008808648213744164, -0.00576235493645072, 0.005610225722193718, -0.02097155712544918, 0.057527076452970505, 0.019561581313610077, 0.0251421220600605, -0.0030759768560528755, 0.0007838361198082566, -0.025438960641622543, -0.006641735322773457, 0.016771309077739716, -0.004923789296299219, 0.0042670369148254395, 0.0012040464207530022, 0.0027104958426207304, 0.003714177291840315, -0.0265817828476429, 0.03817328065633774, -0.018641384318470955, 0.03514553979039192, 0.0006678840145468712, -0.04553484916687012, -0.028169862926006317, 0.03630320727825165, -0.008623125031590462, -0.006612051744014025, 0.013929092325270176, -0.011747337877750397, -0.009914367459714413, 0.011687969788908958, -0.005005419719964266, 0.0030203198548406363, -0.05562731623649597, -0.022648688405752182, 0.02693798765540123, -0.005120444111526012, 0.025661587715148926, -0.037045300006866455, -0.003417339874431491, -0.041349440813064575, 0.009253904223442078, -0.04497085511684418, -0.01058967225253582, 0.012333591468632221, 0.009313271380960941, 0.01887885481119156, 0.0370749831199646, -0.009981155395507812, -0.005621356889605522, 0.011502446606755257, 0.03939031437039375, 0.04271489381790161, 0.0023709882516413927, 0.007279935758560896, 0.02248542755842209, 0.014485661871731281, 0.021283237263560295, 0.007265093736350536, -0.012140647508203983, 0.021416813135147095, -0.015880797058343887, 0.005461806897073984, -0.010626777075231075, -0.03695624694228172, 0.007539668586105108, 0.000263906957115978, 0.0007230772171169519, 0.0009067453211173415, -0.021698810160160065, 0.023865722119808197, 0.00622987374663353, -0.016133109107613564, -0.004793922882527113, 0.047523658722639084, -0.011992228217422962, -0.008563756942749023, -0.03671877831220627, 0.012697217054665089, 0.014263033866882324, -0.01694941148161888, 0.004085223656147718, 0.027724606916308403, -0.003795807482674718, -0.03042582795023918, 0.02937205508351326, -0.036985933780670166, 0.025246014818549156, 0.013743569143116474, 0.018641384318470955, -0.001899758935905993, 0.0006400555139407516, 0.0004262398579157889, -0.002519406843930483, 0.02769492380321026, -0.013483836315572262, -0.004608399700373411, 0.0151683883741498, 0.00271791685372591, 0.00878638494759798, -0.020496618002653122, -0.002443342236801982, 0.0029312686529010534, -0.04434749856591225, -0.028570594266057014, -0.036065734922885895, 0.05910031497478485, -0.05455870181322098, 0.007843926548957825, -0.016340894624590874, 0.0007272514631040394, -0.00020372781727928668, -0.015435541979968548, -0.014663764275610447, 0.01079745776951313, 0.010055365040898323, 0.0073355925269424915, 0.012110963463783264, -0.004623241722583771, 0.004634372889995575, -0.007380118127912283, 0.007821664214134216, 6.539697642438114e-05, 0.004025856498628855, 0.01017409935593605, 0.006129690911620855, 0.02603263407945633, -0.011472763493657112, -0.0008520159171894193, 0.01804771088063717, -0.012207435443997383, 0.010879088193178177, -0.013966197147965431, -0.0060369293205440044, 0.0019275874365121126, 0.004786502104252577, 0.01965063251554966, -0.005524884909391403, -0.03193969652056694, -0.0070127821527421474, -0.045030225068330765, -0.011969965882599354, 0.0136767802760005, -0.01638542115688324, 0.013350259512662888, -0.014975443482398987, 0.016073741018772125, -0.02221827395260334, 0.0072947777807712555, 0.0316428616642952, -0.02880806289613247, -0.047464288771152496, 0.028065970167517662, 0.03443313017487526, -0.02014041319489479, 0.014975443482398987, -0.01610342599451542, 0.005324519705027342, -0.007732612546533346, -0.0011929150205105543, -0.011450500227510929, 0.011918019503355026, -0.011064611375331879, -0.03339419886469841, -0.01783992350101471, 0.00664915656670928, -0.004278168082237244, 0.027309035882353783, 0.011242713779211044, 0.013268629088997841, 0.0005533233634196222, -0.00574751291424036, -0.022440902888774872, -0.02144649811089039, 0.00316873867996037, -0.013476415537297726, -0.013186998665332794, -0.009543320164084435, -0.03692656382918358, -0.007068438921123743, 0.01423335075378418, 6.186043901834637e-05, -0.004816185683012009, -0.023761829361319542, -0.004471112508326769, -0.023034578189253807, 0.0176321379840374, 0.01806255243718624, -0.02027399092912674, 0.013172157108783722, 0.0011984807206317782, 0.01489381305873394, -0.001966547453776002, -0.025171807035803795, 0.008318866603076458, -0.013943933881819248, 0.018210969865322113, 0.010545146651566029, 0.007343013770878315, -0.024533605203032494, 0.01604405790567398, -0.034136295318603516, 0.009617529809474945, 0.002973939059302211, -0.039479367434978485, -0.0005639909650199115, 0.03202874958515167, -0.00019711854110937566, -0.006689971312880516, 0.029891520738601685, 0.003198422258719802, 0.008467284962534904, -0.04060734808444977, -0.004678898490965366, -0.014804761856794357, -0.0055657001212239265, 0.010456095449626446, 0.02125355415046215, 0.01880464516580105, -0.02695283107459545, 0.03645162656903267, 0.027828499674797058, 0.005179811734706163, -0.015643328428268433, -0.021401971578598022, -0.0033579724840819836, -0.0055619897320866585, 0.00633747735992074, 0.0007420933688990772, -0.010003418661653996, -0.0032299612648785114, 0.0016075597377493978, 0.005302256904542446, -0.009951471351087093, -0.00013693941582459956, -0.013016317039728165, 0.014834445901215076, -0.005194653291255236, -0.009899524971842766, -0.0329192616045475, 0.00847470574080944, 0.008445022627711296, 0.01832970604300499, 0.014478241093456745, -0.0376092903316021, 0.011918019503355026, -0.01681583561003208, -0.001740208943374455, 0.0011790008284151554, 0.0022633846383541822, 0.011443079449236393, -0.007383828982710838, 0.005766065325587988, 0.00513899652287364, 0.014834445901215076, 0.01838907226920128, -0.0033728142734616995, -0.00926874577999115, -0.015791745856404305, -0.018107077106833458, 0.013684201054275036, -0.01552459318190813, 0.00256949826143682, -0.027130933478474617, 0.009988576173782349, -0.007702928967773914, -0.00802202895283699, -0.010426411405205727, -0.02736840210855007, 0.010010839439928532, -0.02186206914484501, 0.010188941843807697, -0.02797691896557808, -0.0023283178452402353, 0.01993262767791748, -0.005131575278937817, -0.024548448622226715, -0.0011502447305247188, 0.005651040934026241, -0.0042113796807825565, 0.004304141271859407, -0.019561581313610077, -0.006875494960695505, -0.01693456992506981, 0.0011799284256994724, -0.022129222750663757, -0.03395819291472435, 0.0030648454558104277, 0.01034478098154068, 0.013068263418972492, -0.01138371229171753, 0.011131400242447853, -0.016222160309553146, -0.009380060248076916, -0.012170330621302128, 0.03775770962238312, -0.008623125031590462, 0.005855116527527571, 0.0031538966577500105, 0.0362735241651535, -0.004727134481072426, -0.004986867308616638, -0.019680315628647804, -0.01916084997355938, 0.006586078554391861, 0.03342388570308685, 0.012734321877360344, 0.011220451444387436, -0.001512942835688591, 0.020229464396834373, 0.003795807482674718, -0.006571236532181501, 0.03199906647205353, 0.013164736330509186, 0.015865955501794815, 0.04535674676299095, 0.010411569848656654, 0.005205784924328327, -0.0016854795394465327, -0.0013014462310820818, -0.00621503172442317, 0.020600510761141777, 0.013691621832549572, 0.0030759768560528755, -0.046692512929439545, -0.01708298921585083, -0.027739448472857475, -0.03820296376943588, -0.0005574976094067097, 0.0185374915599823, 0.016133109107613564, 0.005547147709876299, 0.027680082246661186, -0.00576235493645072, 0.018849171698093414, 0.00840791780501604, -0.02493433654308319, -0.020541144534945488, -0.01596984826028347, 0.00013009824033360928, -0.02195112034678459, 0.008214972913265228, -0.024043824523687363, -0.0002390932058915496, 0.021580073982477188, -0.002259674249216914, 0.006749338936060667, -0.0036622306797653437, -0.025988109409809113, -0.02729419246315956, -0.017617296427488327, -0.03182096406817436, 0.01149502582848072, -0.024266451597213745, -0.020437249913811684, 0.007665824145078659, -0.011480184271931648, 0.0352642759680748, 0.005858826916664839, 0.0016326053300872445, 0.007814242504537106, 0.025290541350841522, -0.008615703321993351, 0.0022912132553756237, -0.003176159458234906, -0.003024030476808548, 0.007209436967968941, -0.013372521847486496, 0.04054798185825348, -0.00943942740559578, -0.011331764981150627, 0.01687520183622837, 0.00022772989177610725, 0.023910246789455414, 0.0331864133477211, 0.02131292037665844, 0.01427045464515686, 0.025572536513209343, -0.026789570227265358, -0.016890045255422592, 0.003921963274478912, -0.012489430606365204, -0.0010277993278577924, 0.0036640858743339777, 0.017736030742526054, -0.010982981882989407, 0.0017800964415073395, 0.0032169746700674295, -0.029876677319407463, -0.02457813173532486, -0.0035175224766135216, 0.035234592854976654, -0.001826477237045765, 0.001589935040101409, -0.03722340241074562, -0.026537258177995682, -0.02229248359799385, 0.0043078516609966755, -0.002181754447519779, -0.03422534465789795, -0.010626777075231075, 0.025231173262000084, -0.01013699546456337, 0.013075685128569603, -0.0063820029608905315, 0.01058967225253582, 0.009914367459714413, -0.028733855113387108, 0.0036733620800077915, -0.02012557163834572, -0.025646746158599854, -0.02312362939119339, -0.027591031044721603, -0.012066437862813473, -0.02374698780477047, -0.015999533236026764, 0.01611826755106449, 0.003485983470454812, -0.005806880537420511, -0.04212121665477753, 0.004118618089705706, -0.004422876518219709, 0.015227755531668663, -0.006641735322773457, -0.008838331326842308, -0.024132875725626945, -0.019977152347564697, -0.021060608327388763, 0.017261091619729996, 0.003704901086166501, 0.023910246789455414, -0.0029331238474696875, -0.013595149852335453, -0.0072947777807712555, -0.004155722912400961, 0.03410660848021507, 0.00950621534138918, -0.021075451746582985, 0.0007880103657953441, 0.019042115658521652, -0.0039553577080369, -0.004092644900083542, 0.030218040570616722, -0.012838214635848999, -0.012007070705294609, -0.016964253038167953, 0.00044873455772176385, 0.008897699415683746, 0.002419224241748452, 0.0030462932772934437, -0.008860594592988491, -0.010433832183480263, 0.005239178892225027, 0.00727251498028636, -0.019428003579378128, 0.015109020285308361, -0.027116090059280396, -0.026359155774116516, -0.015272281132638454, 0.013736147433519363, 0.008778964169323444, -0.008489548228681087, -0.02548348531126976, 0.027190299704670906, 0.02040756680071354, 0.01152470987290144, -0.023732144385576248, 0.011636023409664631, 0.018492966890335083, 0.02014041319489479, -0.004003593698143959, -0.008014608174562454, -0.0234649907797575, 0.00467147771269083, 0.018166445195674896, 0.01827033795416355, -0.025498326867818832, 0.02632947266101837, -0.023034578189253807, -0.01876012049615383, -0.0016094149323180318, -7.635444490006194e-05, -0.010493200272321701, 0.02971341833472252, 0.015999533236026764, -0.022322168573737144, -0.01568785309791565, -0.00699422974139452, -0.006834679748862982, 0.004040698055177927, 0.011012664996087551, 0.002959097269922495, -0.004036987666040659, -0.015361332334578037, 0.007628719788044691, 0.0391528457403183, -0.035709530115127563, -0.0060035353526473045, -0.03339419886469841, -0.027665240690112114, 0.004615820478647947, 0.005847695749253035, -0.019175691530108452, 0.003936805296689272, -0.005354203283786774, -0.0071129645220935345, 0.0008501606644131243, -0.004378350917249918, -0.013914249837398529, -0.006304082926362753, 0.0051872325129806995, 0.013246365822851658, 0.015420699492096901, 0.004467402119189501, -0.011450500227510929, 0.010263150557875633, 0.0145821338519454, 0.0015509751392528415, -0.006441370118409395, -0.015851113945245743, -0.0032336716540157795, -0.01142081618309021, 0.0039034110959619284, 0.0032299612648785114, -0.006367160938680172, -0.015257439576089382, -0.004693740513175726, 0.015160966664552689, 0.0072354101575911045, 0.01602921634912491, 0.012808531522750854, -0.0017708202358335257, -0.01017409935593605, 0.0362735241651535, 0.002973939059302211, 0.00409635528922081, 0.00975110661238432, 0.027457453310489655, -0.0005050872568972409, -0.006326345726847649, -0.021565232425928116, -0.012341012246906757, 0.006348608527332544, 0.007072149775922298, -0.0003177087055519223, -0.01329089142382145, -0.0011734351282939315, 0.005168680101633072, -0.0007856913143768907, 0.005395018495619297, 0.0012819662224501371, -0.013587729074060917, -0.02763555571436882, 0.00975110661238432, -0.0020296252332627773, 0.003469286486506462, -0.007858768105506897, -0.009973734617233276, -0.039123162627220154, 0.013661938719451427, 0.004255905281752348, 0.013995880261063576, -0.0057809073477983475, -0.028422174975275993, -0.017528245225548744, -0.003565758466720581, -0.027041882276535034, 0.008964487351477146, -0.021758176386356354, -0.009617529809474945, 0.011673128232359886, 0.004693740513175726, -0.002636286662891507, -0.01537617389112711, 0.0032911840826272964, 0.007918136194348335, 0.015569118782877922, 0.003406208474189043, -0.004894105717539787, -0.001356175635010004, -0.0014173983363434672, -0.0016353882383555174, -0.015391016378998756, 0.01107203308492899, 0.004652925301343203, 0.007658403366804123, 0.0031650280579924583, -0.02451876364648342, -0.02284163236618042, 0.017320457845926285, -0.016474472358822823, 0.014099773950874805, 0.022960368543863297, -0.005825432948768139, 0.010322518646717072, 0.009758527390658855, 0.019739683717489243, -0.03636257350444794, -0.00895706657320261, -0.03383945673704147, 0.0168603602796793, 0.004085223656147718, 0.011057190597057343, -0.017587611451745033, 0.029001008719205856, 0.03223653510212898, -0.02208469808101654, 0.0039887516759335995, -0.009150010533630848, 0.009647213853895664, -0.006422817707061768, -0.032384954392910004, 0.01570269465446472, -0.00042160178418271244, 0.0014841867377981544, -0.01623700186610222, 0.015776904299855232, 0.01214806828647852, 0.006203900557011366, -0.004248484503477812, -0.008778964169323444, -0.04796891286969185, -0.04019177705049515, -0.011123979464173317, -0.01623700186610222, -0.0031390548683702946, 0.02263384684920311, 0.01058967225253582, 0.0032336716540157795, -0.011769600212574005, -0.006459922529757023, 0.02248542755842209, 0.010611934587359428, 0.017587611451745033, -0.012281645089387894, -0.025587378069758415, 0.004330114461481571, -0.02359856851398945, -0.017038462683558464, -0.0024451976642012596, -0.0060406397096812725, -0.0048087649047374725, 0.02382119558751583, -0.02478591725230217, 0.021283237263560295, 0.017201723530888557, -0.002558366861194372, -0.014173982664942741, -0.027932394295930862, 0.007888452149927616, -0.01118334662169218, 0.018700752407312393, -0.025913899764418602, -0.0034433130640536547, -0.0010324373142793775, 0.006990519352257252, 0.007487721741199493, -0.004519348498433828, -0.021565232425928116, -0.009810473769903183, -0.007020202931016684, 0.012407801114022732, 0.008912540972232819, -0.013342838734388351, 0.03012898936867714, -0.01444113627076149, -0.01444113627076149, -0.019888101145625114, -0.01350609865039587, -0.007539668586105108, 0.020184939727187157, -0.005702987313270569, 0.016771309077739716, 0.05090760439634323, -0.015732379630208015, 0.02221827395260334, 0.01499770674854517, 0.0026195894461125135, -0.019813891500234604, -0.02695283107459545, 0.0020797166507691145, 0.004356088116765022, 0.013661938719451427, -0.00975110661238432, 0.001136330422013998, 0.008860594592988491, -0.01381777785718441, 0.007372697349637747, 0.0531635656952858, 0.001822766731493175, -0.0017003213288262486, -0.010567408986389637, -0.028511226177215576, -0.012942108325660229, 0.02186206914484501, -0.002280081855133176, -0.003274486865848303, -0.0012476444244384766, 0.03511585667729378, 0.01896790601313114, -0.004055540077388287, 0.022099539637565613, 0.011101716198027134, -0.020392725244164467, 0.009662055410444736, 0.005398728884756565, -0.02347983419895172, 0.007324461359530687, -0.01957642287015915, 0.004615820478647947, -0.00633747735992074, -0.01521291397511959, 0.0016214739298447967, -0.00046102548367343843, -0.04698935151100159, 0.003031451255083084, 0.04672219604253769, 0.033780090510845184, 0.01312763150781393, 0.011710233055055141, -0.019606105983257294, -0.008200131356716156, -0.007962661795318127, -0.01214806828647852, 0.006656577344983816, 0.012162909843027592, -0.017587611451745033, 0.01818128675222397, 0.023969614878296852, 0.017661821097135544, 0.029030691832304, 0.009602688252925873, 0.013869724236428738, 0.007205726578831673, -0.014240771532058716, -0.0002752702566795051, -0.01929442770779133, 0.012808531522750854, 0.01729077473282814, -0.011190767399966717, -0.012793689034879208, -0.018359389156103134, 0.010166678577661514, 0.0011047914158552885, -0.03639225661754608, 0.0037011904641985893, 0.013342838734388351, -0.0038180702831596136, -0.007046176120638847, -0.011287239380180836, -0.009639792144298553, 0.023984456434845924, -0.015613644383847713, 0.014418873935937881, -0.0005936746601946652, -0.0037475714925676584, 0.005049945320934057, -0.029609523713588715, 0.007383828982710838, 0.013691621832549572, -0.031286656856536865, 0.0044896649196743965, 0.0023709882516413927, 0.006556394509971142, -0.01013699546456337, -0.003985041286796331, 0.0019146008417010307, -0.02854090929031372, -0.01806255243718624, 0.009832737036049366, -0.0018023592419922352, 0.00513899652287364, 0.013862303458154202, 0.018300021067261696, -0.004126038867980242, 0.003404353279620409, -0.0007189029129222035, -0.0026066028513014317, -0.02117934450507164, -0.008170447312295437, -0.009684317745268345, -0.02361341007053852, -0.019531896337866783, 0.0065749469213187695, 0.028347965329885483, 0.016355738043785095, 0.009565583430230618, 0.022040171548724174, 0.009595266543328762, 0.01602921634912491, 0.005580542143434286, 0.005754933692514896, 0.016682257875800133, 0.010500621050596237, 0.03285989165306091, 0.0168603602796793, -0.01343931071460247, -0.005584252532571554, -0.01589563861489296, 0.02729419246315956, 0.018107077106833458, 0.004459980875253677, -0.033987876027822495, 0.04681124910712242, 0.022544795647263527, 0.01142823789268732, -0.047108083963394165, 0.024251610040664673, -0.0012689796276390553, 0.009112906642258167, 0.01152470987290144, 0.00979563221335411, 0.020778613165020943, -0.0008116646204143763, -0.003962778486311436, -0.01562848500907421, 0.008637966588139534, -0.02055598609149456, 0.004025856498628855, 0.0039034110959619284, -0.006894047372043133, 0.003335709683597088, -0.009810473769903183, 0.01846328191459179, -0.005257731303572655, -0.017127513885498047, 0.011628602631390095, -0.0020778614562004805, -0.010070206597447395, 0.001366379321552813, -0.0008663939661346376, -0.0016177635407075286, 0.007732612546533346, -0.02667083404958248, -0.013142473064363003, -0.015435541979968548, 0.007940398529171944, -0.0005667738150805235, -0.01225938182324171, -0.008586020208895206, -0.020110730081796646, -0.027754291892051697, 0.01545038353651762, -0.006727076135575771, 0.008637966588139534, 0.010715828277170658, -0.015079337172210217, -0.020659878849983215, 0.0019294427474960685, -0.003536074887961149, -0.023079102858901024, -0.015509750694036484, 0.011969965882599354, 0.005369045305997133, -0.017884450033307076, 0.0015519027365371585, -0.008304024115204811, -0.005057366099208593, 0.0121183842420578, 0.02172849327325821, 0.0036603754851967096, 0.00680499617010355, -0.013246365822851658, 0.0012281645322218537, -0.011784442700445652, -0.010070206597447395, 0.016608048230409622, -0.01631121151149273, 0.01755792833864689, -0.0008650025702081621, 0.020526301115751266, 0.019635789096355438, 0.006022087298333645, -0.01430013868957758, -0.008296603336930275, -0.011094295419752598, -0.009521057829260826, 0.018997589126229286, 0.007513694930821657, -0.006745628546923399, -0.01610342599451542, 0.0012467168271541595, 0.009535899385809898, -0.017795398831367493, 0.012919845059514046, 0.012496852315962315, -0.01521291397511959, 0.03728276863694191, 0.0020852822344750166, -0.0024618946481496096, 0.006433949340134859, -0.007424643728882074, 0.0067604705691337585, 0.00744690652936697, 0.0060035353526473045, -0.010931034572422504, -0.00545067572966218, 0.006029508542269468, 0.0027513110544532537, 0.007357855327427387, 0.0075174057856202126, -0.0006966401124373078, -0.012630429118871689, -0.0028552040457725525, -0.009298429824411869, -0.007476590573787689, 0.0079107154160738, 0.0028403622563928366, 0.008682492189109325, 0.009157432243227959, -0.010077627375721931, -0.003552771871909499, 0.0088160689920187, 0.0018487400375306606, -0.0002847783325705677, 0.009164853021502495, -0.0031928566750139, 0.016014374792575836, -0.008103659376502037, -0.014159141108393669, 0.003315302077680826, -0.01825549639761448, 0.007962661795318127, -0.00826692022383213, -0.0008524797158315778, 0.032177168875932693, 0.007068438921123743, 0.01902727410197258, 0.0020964136347174644, -0.009432006627321243, -0.0030481484718620777, -0.03324578329920769, -0.01180670503526926, 0.002194741042330861, 0.032592739909887314, 0.008734438568353653, 0.005291125737130642, -0.02582484856247902, 0.005142706912010908, -0.012370696291327477, -0.01604405790567398, -0.0005459024105221033, -0.0004842159105464816, -0.006307793315500021, 0.002714206464588642, -0.01437434833496809, -0.01876012049615383, -0.02361341007053852, -0.011628602631390095, -0.012897582724690437, 0.010337360203266144, 0.015391016378998756, 0.005035103298723698, -0.0042076692916452885, -0.020110730081796646, -0.002883032662793994, 0.004600978922098875, -0.029208794236183167, 0.004838448483496904, -0.0027847052551805973, 0.011584077030420303, 0.012237119488418102, -0.023168154060840607, 0.009610109031200409, 0.009090643376111984, 0.011331764981150627, 0.002502709859982133, -0.00021300397929735482, -0.0163260530680418, 0.013001475483179092, 0.015227755531668663, -0.028080811724066734, -0.004849580116569996, 0.017231406643986702, -0.002819954650476575, 0.03582826629281044, 0.0037420056760311127, -0.0088828569278121, 0.002335738856345415, 0.007031334564089775, 0.00046404023305512965, 0.021298078820109367, 0.003730874275788665, -0.006623182911425829, 0.008148184977471828, 0.010018260218203068, -0.002871901262551546, 0.01274174265563488, -0.019635789096355438, -0.029045533388853073, 0.0035935870837420225, -0.02505307085812092, -0.014990285970270634, 0.009981155395507812, -0.010352201759815216, -0.0019517055479809642, -0.012110963463783264, -0.0017262946348637342, -0.010923613794147968, -0.017884450033307076, 0.010389306582510471, -0.002515696454793215, 0.016548682004213333, 0.0003344058059155941, 0.025231173262000084, 0.008222394622862339, -0.020793454721570015, -0.02270805649459362, -0.002426645252853632, 0.012890161015093327, 0.0216542836278677, -0.002209582831710577, 0.0291642677038908, -0.006010956130921841, 0.038440436124801636, -0.007747454568743706, 0.004018435254693031, -0.015049653127789497, 0.009432006627321243, 0.020778613165020943, 0.030262567102909088, 0.008630545809864998, 0.006081454921513796, -0.009083222597837448, -0.006233584135770798, -0.006289240904152393, -0.01602921634912491, -0.01521291397511959, 0.0037753998767584562, -4.049626659252681e-05, 0.0074506173841655254, -0.009424585849046707, -0.017172040417790413, -2.379916622885503e-05, -0.00825949851423502, -0.014849287457764149, -0.009179694578051567, 0.020986400544643402, 0.011925440281629562, 0.017661821097135544, 0.007521116174757481, -0.011636023409664631, 0.009417164139449596, -0.00025207982980646193, -0.0020722956396639347, -0.008200131356716156, 0.0048050545156002045, 0.005068497732281685, 0.0130237378180027, 0.014515345916152, 0.0005802242085337639, 0.01506449468433857, -0.01819612830877304, 0.0028347966726869345, 0.007717770989984274, -0.025513168424367905, 0.007932977750897408, 0.021713651716709137, -0.0003160853812005371, -0.0044896649196743965, 0.020526301115751266, -0.008660228922963142, 0.0028366518672555685, 0.010218624956905842, 0.009461689740419388, 0.019338952377438545, 0.004189116880297661, -0.05191684886813164, 0.002951676258817315, -0.012311328202486038, -0.007888452149927616, 0.017468877136707306, 0.009951471351087093, 0.01322410348802805, 0.001828332431614399, -0.02042240835726261, -0.005528595298528671, 0.0081630265340209, -0.0050647868774831295, -0.0008288255194202065, -0.0003793952346313745, 0.003254079259932041, 0.006051771342754364, -0.010908772237598896, -0.003237382275983691, -0.015027389861643314, -0.015583960339426994, -0.017468877136707306, 0.03380977362394333, 0.0034006426576524973, 0.008793805725872517, 0.005636198911815882, -0.0058180117048323154, 0.024474238976836205, 0.004062960855662823, -0.005996114108711481, 0.00028315497911535203, 0.011153662577271461, -0.01591048203408718, 0.00595158850774169, -0.0010148126166313887, 0.04473338648676872, -0.0014155430253595114, -0.0001392584526911378, 0.020941874012351036, 0.0010918048210442066, 0.012712058611214161, 0.0185374915599823, -0.0037457160651683807, 0.021787861362099648, -0.003263355465605855, 0.022752581164240837, 0.02437034621834755, -0.02680441178381443, -0.012029333040118217, 0.00626326771453023, -0.020570827648043633, -0.0003517986333463341, -0.0005788328126072884, 0.0006521145114675164, -0.005146417301148176, 0.006779022514820099, -0.03467060253024101, -0.017305616289377213, 0.00013659155229106545, 0.0051278648898005486, -0.01715719886124134, -0.006912599317729473, 0.013417047448456287, 0.021787861362099648, 0.029461106285452843, -0.017869608476758003, 0.0016539405332878232, -0.0008232598192989826, -0.0059404573403298855, -0.011762179434299469, -0.007858768105506897, 0.0006145460647530854, -0.010975560173392296, -0.00850438978523016, 0.005038813687860966, 0.011969965882599354, -0.017958659678697586, 0.009877262637019157, -0.021342605352401733, 0.010322518646717072, 0.0030462932772934437, 0.0014739829348400235, -0.0004716930852737278, 0.015494909137487411, 0.009669476188719273, -0.001671565230935812, -0.0404292456805706, -0.007057307753711939, 0.02687862142920494, 0.01868591085076332, 0.007216857746243477, -0.020155254751443863, -0.003914542496204376, 0.009313271380960941, 0.005179811734706163, 0.006730786524713039, -0.008311445824801922, -0.008111080154776573, 0.02221827395260334, -0.002732758643105626, -0.02263384684920311, 0.0012661967193707824, 0.008541494607925415, 0.009009012952446938, 0.002100124256685376, 0.003918252885341644, 0.009803052991628647, 0.01666741631925106, -0.01027799304574728, 0.01169539149850607, 0.003996172454208136, 5.091021193948109e-06, 0.02318299561738968, 0.012593324296176434, 0.006556394509971142, 0.027724606916308403, -0.009847578592598438, -0.006723365746438503, 0.009817894548177719, -0.00498315691947937, -0.0017337155295535922, 0.01412945706397295, 0.01715719886124134, -0.02972825989127159, 0.007443196140229702, 0.015435541979968548, 0.015257439576089382, -0.006849521771073341, 0.008222394622862339, -0.007276225369423628, -0.01437434833496809, -0.010010839439928532, 0.012103542685508728, -0.003999883309006691, -0.000285937829175964, 0.005194653291255236, 0.008949645794928074, 0.0011456066276878119, 0.009291009046137333, -0.019828734919428825, 0.012645270675420761, -0.00920195784419775, 0.019546737894415855, 0.019977152347564697, 0.03437376394867897, 0.015361332334578037, -0.013090526685118675, -0.004960894118994474, -0.00428558886051178, -0.009461689740419388, -0.00045522788423113525, 0.012511693872511387, -0.018552333116531372, -0.014812183566391468, 0.01107203308492899, -0.006281820125877857, -0.009142589755356312, -0.007747454568743706, 0.0007884741644375026, 0.005825432948768139, 0.006689971312880516, 0.002962807659059763, 0.008838331326842308, 0.01138371229171753, -0.007472880184650421, 0.01496802270412445, 0.00152685702778399, 0.0009406033204868436, -0.00847470574080944, 0.0347299687564373, -0.012689796276390553, -0.002957242075353861, -0.031346023082733154, -0.015316806733608246, -0.019146008417010307, 0.003105660667642951, 0.0017921554390341043, -0.004396902862936258, 0.00021010517957620323, 0.0034266160801053047, 0.021060608327388763, 0.024800758808851242, 0.003469286486506462, -0.012162909843027592, 0.010745511390268803, 0.018522650003433228, -0.01825549639761448, 0.013157314620912075, -0.0096546346321702, 0.013402205891907215, -0.003406208474189043, 0.008400497026741505, -0.005298546515405178, 0.02367277815937996, 0.029668891802430153, -0.02540927566587925, -0.004233642481267452, 0.0015491198282688856, -0.024281295016407967, 0.0022225696593523026, 0.00871959701180458, 0.005810590926557779, -0.005087049677968025, -0.0050647868774831295, -0.012533956207334995, 0.010240888223052025, 0.005090760532766581, 0.027932394295930862, 0.012734321877360344, -0.01889369636774063, 0.009765948168933392, 0.000948488072026521, 0.001515725627541542, 0.012949529103934765, 0.011717653833329678, 0.004534190520644188, -0.013379942625761032, 0.0015648893313482404, -0.009179694578051567, -0.0031279234681278467, 0.0022262800484895706, 0.016964253038167953, 0.0032021328806877136, -0.019635789096355438, 0.0006971039110794663, 0.021223869174718857, 0.014574713073670864, -0.018656225875020027, 0.00408151326701045, 0.000871495867613703, 0.009046117775142193, 0.0282589141279459, 0.004667767323553562, 0.022648688405752182, 0.020541144534945488, 0.0313757061958313, -0.0019275874365121126, -0.002354291034862399, -0.011650865897536278, -0.0036640858743339777, -0.000798214168753475, 0.001297735725529492, -0.0041111973114311695, -0.0030184646602720022, 0.011969965882599354, 0.0054024397395551205, -0.013209261931478977, 0.0033097362611442804, -0.02499370463192463, 0.01076035387814045, 0.005461806897073984, 0.003866306273266673, -0.005992403719574213, 0.0005449748132377863, -0.01444113627076149, 0.009150010533630848, 0.020748930051922798, -0.013068263418972492, 0.01602921634912491, -0.008637966588139534, 0.002268950454890728, -0.008860594592988491, -0.004615820478647947, -0.005079628899693489, -0.012652691453695297, 0.006905178539454937, 0.01336510106921196, -0.0031409100629389286, -0.008541494607925415, -0.0008074903162196279, 0.00428558886051178, 0.014329822733998299, -0.006185348145663738, -0.028110496699810028, -0.005083339288830757, -0.0070164925418794155, 0.02505307085812092, 0.016281528398394585, 0.023925090208649635, -0.0023839748464524746, -0.00802202895283699, 0.027754291892051697, -0.0027772842440754175, 0.0013793660327792168, 0.0067344969138503075, 0.01694941148161888, 0.0044636912643909454, 0.01708298921585083, -0.0006669564172625542, 0.003877437673509121, -0.026967672631144524, -0.004500796087086201, 0.005862537305802107, -0.0036492440849542618, -0.0002701683552004397, -0.011814125813543797, 0.02186206914484501, -0.004508216865360737, 0.003714177291840315, -0.018092235550284386, -0.011250135488808155, -0.017869608476758003, -0.0026307208463549614, 0.0037401504814624786, 0.0041483016684651375, -0.0030481484718620777, -0.0020834270399063826, -0.01166570745408535, -0.007970082573592663, -0.010404149070382118, -0.010582251474261284, -0.01681583561003208, 0.00174855743534863, 0.017112672328948975, -0.006226163357496262, 0.0006168651161715388, -0.00467147771269083, -0.024756234139204025, -0.0033486962784081697, 0.009573004208505154, -0.006886626128107309, 0.004248484503477812, -0.002478591864928603, -0.002832941245287657, 0.009305850602686405, -0.005825432948768139, 0.016830677166581154, -0.02882290631532669, -0.002743890043348074, -0.007814242504537106, 0.039271578192710876, 0.02214406616985798, 0.004986867308616638, -0.00020106091687921435, -0.003562048077583313, -0.004894105717539787, 0.01959126442670822, 0.01288274023681879, -0.009877262637019157, -0.00943942740559578, 0.008801227435469627, -0.017884450033307076, 0.0009758527739904821, -0.001734643243253231, -0.010010839439928532, 0.0064153969287872314, 0.009988576173782349, 0.007086991332471371, 0.0037679788656532764, -0.005202074535191059, 0.02048177644610405, -0.010077627375721931, 0.005788328126072884, -0.0040481192991137505, -0.0326521061360836, 0.00027596595464274287, -0.0013413337292149663, 0.0008450588211417198, -0.009728843346238136, 0.007239120546728373, -0.002975794253870845, 0.0066380249336361885, 0.014426294714212418, -0.002938689664006233, 0.016400262713432312, 0.0014211087254807353, -0.030114147812128067, 0.006296662148088217, -0.009988576173782349, 0.008912540972232819, -0.0029331238474696875, -0.003250368870794773, -0.010849405080080032, -0.003562048077583313, -0.0022949236445128918, -0.018151603639125824, -0.005654751323163509, -0.006678840145468712, -0.01798834279179573, -0.021209027618169785, -0.005005419719964266, 0.012971791438758373, 0.0020927032455801964, -0.007895872928202152, 0.026626309379935265, 0.019828734919428825, -0.0005241034086793661, -0.008467284962534904, -0.019977152347564697, -0.013558045029640198, 0.0006613907171413302, 0.018864013254642487, -0.020303674042224884, -0.010040522553026676, 0.013387364335358143, -0.006693682167679071, -0.009164853021502495, -0.043011728674173355, -0.020155254751443863, -0.0057846177369356155, -0.01659320667386055, -0.0061593749560415745, -1.4580974493583199e-05, 0.00027341500390321016, 0.0003466967318672687, -0.0021761886309832335, -0.011598918586969376, 0.01825549639761448, -0.017409509047865868, -0.01149502582848072, -0.0007694580126553774, -0.01506449468433857, 0.004029566887766123, 0.005009130109101534, -0.005432123318314552, -0.005617646500468254, 0.009164853021502495, 0.012956949882209301, -0.02095671556890011, -0.0044302972964942455, -5.478736056829803e-05, 0.00878638494759798, 0.0012402235297486186, -0.010226046666502953, 0.00039400518289767206, 0.007784559391438961, -0.00741351256147027, -0.023093944415450096, 0.004163143690675497, 0.0018487400375306606, 0.013572887517511845, -0.003434036858379841, -0.007120385766029358, -0.021327761933207512, 0.0049052368849515915, 0.001518508535809815, -0.01596984826028347, 0.008860594592988491, 0.0011975531233474612, 0.007406091783195734, -0.0056584617123007774, 0.01568785309791565, -0.010604513809084892, -0.01880464516580105, 0.02521633170545101, 0.010114732198417187, 0.010381885804235935, -0.005654751323163509, 0.0057846177369356155, -0.020081045106053352, -0.014648922719061375, 0.017231406643986702, 0.012860477901995182, -0.006727076135575771, 0.01017409935593605, -0.025587378069758415, 0.010678723454475403, -0.027234826236963272, 0.004389482084661722, -0.0194428451359272, -0.009053538553416729, 0.0081630265340209, 0.027932394295930862, 0.004619530867785215, 0.018374230712652206, 0.004003593698143959, -0.0048681325279176235, 0.003417339874431491, -0.03214748203754425, -0.000873351120389998, 0.005580542143434286, -0.006623182911425829, 0.01423335075378418, 0.02701219730079174, 0.015806587412953377, 0.003255934454500675, 0.0043709296733140945, 0.0015630341367796063, 0.02019978128373623, -0.0019127456471323967, 0.008437600918114185, 0.026641150936484337, -0.019249901175498962, 0.009424585849046707, 0.003254079259932041, 0.00878638494759798, -0.01847812347114086, 0.015405857935547829, -0.006497027352452278, 0.004029566887766123, -0.002048177644610405, -0.019635789096355438, -0.0028125338722020388, -0.002821809845045209, -0.010188941843807697, 0.015131283551454544, -0.020793454721570015, 0.04173532873392105, -0.0014118326362222433, 0.0028310860507190228, -0.009461689740419388, 0.023227522149682045, -0.006033218931406736, -0.014730553142726421, 0.026077160611748695, 0.004782791715115309, 0.008081396110355854, -0.004404324106872082, 0.0014146154280751944, -0.006151953712105751, -0.01861170120537281, -0.006148243322968483, 0.011435658670961857, 0.00470487168058753, 0.02931268699467182, -0.0029257030691951513, -0.0002235556166851893, -0.0034488788805902004, 0.0008807720150798559, -0.004215090069919825, 0.014418873935937881, -0.010085048153996468, -0.008778964169323444, 0.009001592174172401, 0.00840791780501604, 0.005309677682816982, 0.017068147659301758, 0.013966197147965431, 0.008385654538869858, 0.004382061306387186, -0.019205376505851746, -0.006367160938680172, -0.019457686692476273, -0.014797341078519821, -0.026403680443763733, -0.00574751291424036, -0.009038696996867657, -0.01065646018832922, -0.008007187396287918, 0.015287122689187527, 0.030039938166737556, 0.010411569848656654, -0.031702227890491486, -0.016340894624590874, 0.004600978922098875, 0.009840157814323902, -0.02014041319489479, -0.005057366099208593, 0.008682492189109325, -0.007799400947988033, -0.01274174265563488, -0.0010927324183285236, -0.002808823250234127, -0.011012664996087551, -0.01166570745408535, -0.02992120385169983, -0.009498794563114643, -0.0010018260218203068, -0.0029980570543557405, -0.014871550723910332, 0.0061964793130755424, 0.0006831896607764065, 0.0069163101725280285, 0.0024860126432031393, -0.014537608250975609, 0.021847227588295937, -0.015190650708973408, 0.0046492149122059345, 0.00128474913071841, 0.03312704712152481, -0.002818099455907941, 0.0021706230472773314, -0.033987876027822495, 0.04179469868540764, -0.02014041319489479, 0.007035044953227043, -0.0025323934387415648, -0.017750872299075127, 0.014715710654854774, -0.017112672328948975, 0.011969965882599354, 0.0025286830496042967, -0.006367160938680172, -0.013031159527599812, 0.004218800459057093, -0.02716061659157276, -0.010433832183480263, 0.01708298921585083, -0.008296603336930275, -0.010463516227900982, -0.02486012689769268, 0.018240654841065407, -0.013394785113632679, -0.005465517286211252, 0.00996631383895874, 0.004916368518024683, -0.023791512474417686, -0.014218508265912533, -0.012326170690357685, 0.023242363706231117, -0.007339303381741047, 0.002122387057170272, -0.01545038353651762, -0.019487371668219566, 0.009231640957295895, 0.028897114098072052, 0.010255729779601097, 0.0355314277112484, 0.022455744445323944, 0.014352085068821907, 0.009350376203656197, -0.008912540972232819, 0.00986242014914751, -0.013001475483179092, 0.02506791241466999, -0.0015509751392528415, -0.006997940130531788, 0.011532130651175976, -0.014730553142726421, 0.008600861765444279, 0.00871959701180458, -0.007317040581256151, -0.0059441677294671535, 0.011376290582120419, -0.03348325192928314, 0.018507808446884155, -0.013008896261453629, 0.013795515522360802, -0.011465341784060001, 0.004890395328402519, -0.011272397823631763, -0.014641501940786839, -0.0010964429238811135, -0.014878971502184868, 0.00150644953828305, -0.029001008719205856, -0.011175925843417645, -0.01965063251554966, -0.018418757244944572, -0.006274399347603321, 0.01360257063060999, 0.015331648290157318, 0.008623125031590462, -0.007476590573787689, -0.016355738043785095, 0.03152412548661232, 0.01003310177475214, 0.0020982688292860985, 0.008029449731111526, -0.013179577887058258, 0.010537725873291492, -0.014901234768331051, -0.02125355415046215, -0.01910148188471794, -0.0130237378180027, -0.010381885804235935, -0.00451563810929656, 0.01617763563990593, 0.003704901086166501, 0.012229698710143566, 0.0005417281645350158, -0.006886626128107309, -0.011561814695596695, -0.003562048077583313, 0.014070089906454086, -0.016281528398394585, -0.0013394785346463323, -0.004838448483496904, -0.004389482084661722, 0.004816185683012009, -0.016355738043785095, -0.008452443405985832, -0.006548973731696606, 0.0007226134184747934, -0.0069571249186992645, -0.004708582069724798, -0.0017763859359547496, 0.006166795734316111, -0.020852822810411453, -0.0012105397181585431, 0.02742777019739151, -0.015643328428268433, 0.025171807035803795, -0.010834562592208385, 0.0015296399360522628, -0.013491257093846798, 0.014626659452915192, 0.02223311737179756, -0.014248192310333252, -0.0029201372526586056, -0.003981330897659063, 0.006567526143044233, 0.02763555571436882, 0.04785018041729927, -0.012956949882209301, -0.005866247694939375, -0.029876677319407463, 0.006333766505122185, 0.005996114108711481, 0.00409635528922081, 0.015925323590636253, 0.004092644900083542, -0.004293010104447603, 0.003094529267400503, 0.004263326060026884, -0.0005973851657472551, 0.0074506173841655254, -0.010092469863593578, 0.0003142301575280726, 0.008207552134990692, 0.012318749912083149, 0.0009591556736268103, -0.013639675453305244, -0.015940165147185326, 0.027027038857340813, -0.00989210419356823, -0.01653384044766426, 0.025290541350841522, 0.0032800526823848486, 0.01902727410197258, -0.016133109107613564, 0.019947469234466553, -0.0033579724840819836, -0.019042115658521652, -0.009387481026351452, -0.00229863403365016, -0.02221827395260334, 0.0023746986407786608, 0.0026900884695351124, 0.008541494607925415, -0.0004645040608011186, -0.001138185616582632, -0.0081630265340209, 0.011302081868052483, 0.0006317069637589157, 0.009595266543328762, 0.014218508265912533, 0.011814125813543797, 0.0010092469165101647, 0.015776904299855232, -0.010723249055445194, -0.010686144232749939, -0.025082755833864212, 0.0035453508608043194, -0.0015092323301360011, -0.0034581550862640142, 0.007179752923548222, -0.01589563861489296, -0.005465517286211252, -0.01298663392663002, 0.010752932168543339, 0.005677014123648405, -0.005113023333251476, 0.010886508971452713, -0.007487721741199493, 0.03588763251900673, -0.0032318164594471455, -0.004571294877678156, 0.015791745856404305, -0.013305733911693096, -0.02103092521429062, 0.03838106617331505, -0.021713651716709137, 0.011168505065143108, 0.015717536211013794, -0.019398320466279984, -0.004352377261966467, 0.0003095920546911657, -0.041349440813064575, -0.0036492440849542618, -0.004619530867785215, 0.011168505065143108, -0.00017566740280017257, -0.010700985789299011, -0.0331864133477211, 0.016014374792575836, 0.015494909137487411, 0.020659878849983215, 0.0024841574486345053, 0.009187115356326103, -0.00919453613460064, -0.004411744885146618, -0.0016112701268866658, -0.002821809845045209, -0.007999766618013382, -0.015554276295006275, 0.007558220531791449, 0.01778055727481842, 0.005814301315695047, 0.01923505961894989, 0.016058899462223053, 0.02291584201157093, 0.0011715798173099756, 0.0026845226529985666, -0.009914367459714413, 0.03775770962238312, 0.005242889281362295, -0.026477890089154243, 0.018982747569680214, -0.018626542761921883, 0.000903498672414571, 0.008014608174562454, 0.005728960502892733, -0.018003184348344803, 0.005966430529952049, -0.001514798030257225, 0.0029906362760812044, -0.009543320164084435, 0.007328171748667955, -0.005576831288635731, 0.007535957731306553, 0.004448849707841873, 0.0030889634508639574, 0.002649273257702589, 0.0034562996588647366, 0.007747454568743706, 0.001905324636027217, 0.0018311153398826718, -0.033305149525403976, 0.003246658481657505, 0.00243777665309608, -0.01576206274330616, 0.01288274023681879, 0.013454152271151543, -0.005866247694939375, 0.011361449025571346, -0.015034811571240425, -0.007458038162440062, -0.004163143690675497, 0.005235468503087759, 0.007417222950607538, 0.009914367459714413, 0.0016548681305721402, -0.008548915386199951, -0.020110730081796646, -0.02186206914484501, 0.012556219473481178, 0.010374465025961399, 0.005461806897073984, 0.009328112937510014, 0.019635789096355438, -0.006938572973012924, -0.009068381041288376, -0.0002982287551276386, -0.006270688958466053, -0.0012448616325855255, 0.006359740160405636, 0.00680499617010355, 0.006886626128107309, 0.006133401300758123, 0.0077697173692286015, -0.0020852822344750166, 0.008734438568353653, 0.004241063259541988, 0.006775312125682831, -0.0026251552626490593, 0.013513519428670406, 0.002738324459642172, 0.024355502799153328, -0.009951471351087093, 0.006890336517244577, -0.003691914491355419, 0.0031780146528035402, -0.005476648919284344, -0.004797633271664381, 0.029609523713588715, 0.026789570227265358, 0.012689796276390553, -0.01087166741490364, -0.007814242504537106, -0.007628719788044691, -0.003133489051833749, 0.009224220179021358, 0.03063361346721649, -0.028496384620666504, 0.014789920300245285, -0.016786150634288788, 0.006148243322968483, 0.011034928262233734, -0.009884683415293694, 0.012222277000546455, 0.024978861212730408, -0.008274341002106667, -0.003858885494992137, -0.01142823789268732, -0.011264977045357227, 0.0023969614412635565, -0.005617646500468254, -0.017201723530888557, -0.021639442071318626, -0.0032281060703098774, 0.00527999410405755, -0.02521633170545101, 0.008979329839348793, -0.0009665765683166683, -0.007276225369423628, 0.003411774057894945, -0.007361566182225943, -0.03297862783074379, -0.00713522732257843, -0.01159149780869484, -0.008541494607925415, 0.010478357784450054, -0.0035397852770984173, -0.007183463778346777, 8.713798888493329e-05, 0.005101891700178385, 0.009046117775142193, 0.010070206597447395, 0.0075545101426541805, -0.009157432243227959, 0.001368234632536769, 0.014010722748935223, -0.019324110820889473, -0.018225813284516335, -0.0056621721014380455, 0.00456387409940362, 0.002947965869680047, -0.011858651414513588, 0.013186998665332794, 0.024400029331445694, -0.010018260218203068, -0.02214406616985798, -0.010671302676200867, 2.8901056793984026e-05, -0.012296486645936966, 0.02014041319489479, 0.00040188993443734944, -0.01506449468433857, 0.012519114650785923, -0.0062595573253929615, -0.033364515751600266, 0.0010760353179648519, 0.00680499617010355, -0.028451858088374138, 0.023657936602830887, 0.02006620354950428, 0.010752932168543339, -0.008296603336930275, -0.000828361720778048, 0.009817894548177719, -0.017869608476758003, 0.031138237565755844, 0.009573004208505154, 0.006641735322773457, 0.005094470921903849, 0.013120210729539394, -0.014871550723910332, 0.010389306582510471, -0.013031159527599812, 0.000473316409625113, -0.012875319458544254, -0.014366927556693554, -0.002875611651688814, -0.009023855440318584, 0.017068147659301758, -0.016415104269981384, 0.014107194729149342, 0.0061593749560415745, 0.004534190520644188, 0.014708289876580238, 0.00940974336117506, -0.032384954392910004, 0.011621181853115559, 4.7163510316750035e-05, -0.0010723249288275838, -0.022262800484895706, -0.018834328278899193, -0.0012958805309608579, 0.0006159374606795609, 0.02250027097761631, -0.011925440281629562, 0.01236327551305294, -0.013164736330509186, -0.022678373381495476, -0.010233467444777489, -0.006597209721803665, 0.007031334564089775, -0.007283646147698164, 0.01159149780869484, -0.006307793315500021, 0.009432006627321243, -0.022188590839505196, -0.007339303381741047, -0.013973617926239967, -0.011769600212574005, 0.019056957215070724, 0.0020110730547457933, -0.021550390869379044, -0.000989767024293542, -0.002649273257702589, -0.018700752407312393, 0.001598283532075584, 0.010649039410054684, 0.014010722748935223, 0.009283587336540222, -0.003272631671279669, 0.004452560096979141, -0.0033709590788930655, 0.007695508189499378, -0.0021335184574127197, -0.03140538930892944, 0.026092002168297768, -8.116645767586306e-05, 0.04600978642702103, 0.007380118127912283, 0.014307559467852116, -0.008927382528781891, -0.009573004208505154, -0.04221026971936226, 0.01804771088063717, 0.00409635528922081, -0.027130933478474617, -0.0018468848429620266, 0.008014608174562454, 0.009313271380960941, 0.005454386118799448, 0.008704754523932934, -0.006326345726847649, 0.018166445195674896, 0.015925323590636253, 0.013149893842637539, -0.020155254751443863, 0.014975443482398987, 0.018151603639125824, -0.017038462683558464, -0.004218800459057093, -0.026270104572176933, 0.019828734919428825, 0.011509867385029793, -0.009676896966993809, -0.02299005165696144, 0.01887885481119156, -0.01235585380345583, 0.01281595230102539, 0.0032336716540157795, -0.009372638538479805, 0.007999766618013382, 0.0022318456321954727, 0.019947469234466553, -0.007658403366804123, 0.0036715068854391575, 0.007224278524518013, 0.0005389453144744039, -0.009780790656805038, -0.02520149014890194, 0.001063976320438087, 0.017810240387916565, -0.011546972207725048, 0.0024303556419909, 0.004337535705417395, 0.010819721035659313, -0.03152412548661232, 0.012489430606365204, 0.0003793952346313745, 0.007829084992408752, -0.009595266543328762, 0.011554392985999584, 0.007035044953227043, 0.009595266543328762, -0.002498999238014221, -0.01999199390411377, -0.023509517312049866, 0.010181521065533161, 0.007595325354486704, -0.017068147659301758, 0.0014925352297723293, 0.005825432948768139, -0.009157432243227959, 0.015673011541366577, 0.013246365822851658, 0.010010839439928532, 0.004779081325978041, 0.0030036228708922863, 0.0027754290495067835, -0.008764122612774372, 0.02478591725230217, 0.0030221750494092703, -0.00850438978523016, -0.013379942625761032, -0.02632947266101837, -0.005528595298528671, -0.027027038857340813, -0.006174216512590647, -0.0028366518672555685, -0.00668255053460598, 0.0007689942140132189, -0.013246365822851658, -0.004088934510946274, 0.012103542685508728, 0.012689796276390553, 0.0006164012593217194, 0.0005973851657472551, -0.022737739607691765, -0.0463956743478775, -0.0037549922708421946, 0.014003301039338112, 0.009187115356326103, 0.018210969865322113, -0.02589905820786953, -0.018923379480838776, 0.008964487351477146, 0.0006664925604127347, 0.0005853261100128293, -0.00895706657320261, 0.005205784924328327, -0.01135402824729681, 0.002899729646742344, 0.007829084992408752, -0.017661821097135544, -0.03146475926041603, -0.010307676158845425, 0.006140822544693947, -0.01631121151149273, -0.012444905005395412, 0.004615820478647947, -0.02187691256403923, 0.013476415537297726, -0.007732612546533346, -0.0031409100629389286, 0.034819018095731735, 0.029119743034243584, 0.01082714181393385, 0.0028533488512039185, 0.003558337688446045, 0.006868073716759682, 0.021980805322527885, -0.006871784571558237, -0.013327996246516705, -0.006971966940909624, 0.014745394699275494, 0.017928974702954292, -0.010337360203266144, 0.021342605352401733, -0.010953297838568687, -0.005261441692709923, 0.01876012049615383, 0.010292834602296352, 0.003263355465605855, 0.018730435520410538, 0.031019501388072968, 0.008712176233530045, -0.0009336461662314832, 0.006151953712105751, -0.007561931386590004, 0.04574263468384743, 0.015057073906064034, -0.010938456282019615, 0.007628719788044691, -0.020318515598773956, 0.005046234931796789, 0.019813891500234604, 0.004831027705222368, 0.014982864260673523, -0.02146133966743946, -0.0011576656252145767, -0.03241463750600815, 0.013639675453305244, -0.010945877060294151, 0.0017949382308870554, -0.0016520853387191892, 0.018240654841065407, -0.028377650305628777, -0.0010342926252633333, -0.00713522732257843, 0.01959126442670822, 0.013513519428670406, 0.011450500227510929, 0.01813676208257675, -6.91726654622471e-06, -0.007829084992408752, 0.008274341002106667, -0.015999533236026764, 0.004062960855662823, 0.009313271380960941, 0.0005129720084369183, -0.014522766694426537, -0.007495142985135317, -0.008994171395897865, 0.017201723530888557, 0.008652808144688606, 0.008400497026741505, -0.0052874148823320866, 0.008741859346628189, 0.0074506173841655254, 0.010960718616843224, 0.01197738666087389, 0.008994171395897865, -0.006044350098818541, -0.008066554553806782, 0.0009016434196382761, 0.007472880184650421, -0.01298663392663002, 0.0013357680290937424, -0.008623125031590462, 0.02318299561738968, 0.006990519352257252, -0.00850438978523016, -0.007895872928202152, 0.00042902270797640085, -0.0007652837666682899, -0.03467060253024101, -0.020882505923509598, -0.015732379630208015, 0.0028663354460150003, 0.0008223321638070047, -0.0015593236312270164, -0.0032930392771959305], "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530": [-0.01627131924033165, -0.004352319519966841, -0.0024846645537763834, 0.03443431109189987, 0.006805579178035259, -0.0033122701570391655, -0.02051279880106449, 0.04655282199382782, -0.027754349634051323, 0.03396139293909073, 0.013020011596381664, 0.043419744819402695, 0.0004161120450589806, -0.023084288462996483, -0.004381876904517412, 0.009325343184173107, -0.03446386754512787, -0.006162706762552261, 0.01151997596025467, -0.01406190823763609, 0.07117409259080887, 0.009362289682030678, -0.03144901618361473, 0.025803564116358757, -0.028818413615226746, -0.013958456926047802, -0.01859157159924507, -0.0036281642969697714, -0.00843123346567154, 0.0035727443173527718, 0.013721998780965805, 0.003794424468651414, 0.0018510288791731, 0.03987286239862442, 0.02086748741567135, -0.0013300806749612093, 0.002205717144533992, 0.0304440688341856, 0.004614640958607197, -0.014859956689178944, -0.0333702452480793, 0.03688757121562958, -0.019138382747769356, -0.014084076508879662, -0.002141060307621956, -0.0038830966223031282, -0.03467077016830444, 0.0037260730750858784, -0.011741655878722668, 0.009088884107768536, 0.00563067477196455, -0.021059609949588776, -0.0036540271248668432, 0.013936289586126804, 0.011734266765415668, -0.0516958013176918, 0.007441062014549971, 0.07448451220989227, 0.02537498250603676, -0.029143543913960457, 0.033577147871255875, -0.02769523486495018, -0.010965775698423386, 0.0015600736951455474, -0.0011277975281700492, -0.01684768870472908, 0.03452298045158386, 0.0148156201466918, -0.0250202938914299, 0.0191974975168705, 0.010123391635715961, 0.037656061351299286, 0.007877033203840256, 0.031330786645412445, 0.04489761218428612, -0.001181370229460299, 0.014830399304628372, 0.023734550923109055, 0.03428652137517929, 0.02494640089571476, -0.0183698907494545, 0.03561660274863243, -0.0017438834765926003, -0.030916985124349594, 0.06236600503325462, 0.03360670432448387, -0.031242117285728455, -0.020719701424241066, -0.03446386754512787, -0.03209928050637245, -0.0015499134315177798, 0.012081566266715527, 0.019300948828458786, -0.0018187005771324039, 0.012990454211831093, 0.05219827592372894, -0.018488120287656784, 0.01389195304363966, 0.0019821897149086, -0.03845410794019699, -0.016286099329590797, 0.010478079319000244, 0.007692299783229828, 0.015488049946725368, 0.03644420951604843, 0.0033824690617620945, 0.011076616123318672, -0.01434270292520523, 0.01430575642734766, 0.035853061825037, 0.014616108499467373, -0.03904525563120842, 0.0016441274201497436, -0.0042968993075191975, -0.013263859786093235, -0.013877174817025661, -0.0034637516364455223, 0.046345919370651245, -0.045340970158576965, -0.023246854543685913, 0.014542214572429657, 0.006074035074561834, 0.003787035122513771, -0.00029395706951618195, -0.02453259937465191, 0.005102337338030338, 0.004766122438013554, 0.013485539704561234, 0.05946938320994377, 0.00040271886973641813, -0.047764673829078674, 0.013079126365482807, 0.015621058642864227, -0.0035542710684239864, -0.02070492133498192, -0.020246783271431923, 0.04451336711645126, 0.05320322513580322, 0.011438693851232529, 0.021207395941019058, -0.03413873538374901, -0.0025363899767398834, 0.000676124298479408, 0.024828171357512474, -0.02151774987578392, -0.006439806893467903, -0.047764673829078674, 0.049508556723594666, 0.0006230134749785066, 0.04123250022530556, -0.0032402242068201303, -0.038335878401994705, -0.009620917029678822, 0.020483242347836494, 0.04427690804004669, -0.02776912786066532, -0.03271998465061188, 0.019153160974383354, -0.008283446542918682, 0.01217762753367424, 0.03118300251662731, -0.04347885772585869, 0.009872154332697392, 0.03227662295103073, 0.049597229808568954, 0.00804698746651411, 0.06478970497846603, 0.06638580560684204, -0.04034578055143356, 0.0221236739307642, 0.03951817378401756, 0.009650474414229393, 0.00867508165538311, 0.00294280331581831, 0.002782085444778204, -0.03144901618361473, 0.0112687386572361, 0.010662812739610672, 0.015414156951010227, 0.004496411420404911, -0.015399377793073654, 0.007847475819289684, -0.01625654101371765, 0.017497949302196503, -0.00329564418643713, 0.01669990085065365, 0.00938445795327425, 0.022966058924794197, -0.016788573935627937, -0.0006844373419880867, 0.013537265360355377, -0.029557347297668457, -0.006358524318784475, 0.04814891889691353, 0.01776396669447422, -0.02026156149804592, 0.014357481151819229, 0.00258626788854599, 3.6571444070432335e-05, 0.00015390603221021593, -0.026143474504351616, -0.00867508165538311, -0.04578433185815811, 0.02995637245476246, -0.04315372556447983, 0.02159164287149906, -0.01578362286090851, -0.008586409501731396, 0.021547306329011917, -0.018916701897978783, 0.05095686763525009, -0.010079055093228817, -0.008017430081963539, 0.008401676081120968, -0.015990525484085083, 0.009620917029678822, -0.01263576652854681, -0.0010280414717271924, -0.02602524496614933, -0.02453259937465191, 0.006110981572419405, -0.04788290336728096, 0.010271178558468819, -0.02679373510181904, -0.053853485733270645, -0.008992822840809822, -0.007633185014128685, 0.004573999438434839, -0.016818130388855934, -0.016788573935627937, 0.03195149451494217, 0.02261137031018734, -0.01389195304363966, -0.0031386208720505238, 0.004300593864172697, 0.014956017956137657, 0.03644420951604843, -0.003838760545477271, 0.05648409202694893, -0.005870827939361334, 0.010522415861487389, 0.0508681945502758, 0.005675010848790407, -0.004452075343579054, 0.0071787405759096146, 0.012103733606636524, -0.02301039546728134, 0.01819254830479622, 0.00669843377545476, -0.0006641166401095688, -0.0060814241878688335, -0.005032138433307409, 0.03020760975778103, -0.029586905613541603, -0.02654249779880047, 0.04989280179142952, 0.02887752838432789, -0.03277909755706787, -0.03283821418881416, -0.02802036516368389, -0.00623290566727519, 0.03271998465061188, -0.003879401832818985, 0.010862325318157673, 0.04454292356967926, 0.0005532766226679087, 0.05441507697105408, -0.008490348234772682, -0.012325413525104523, 0.020897043868899345, -0.005638063885271549, 0.0018279372015967965, 0.02042412757873535, 0.0037057525478303432, -0.0341978520154953, 0.0012026146287098527, -0.0022629844024777412, -0.005253818351775408, -0.010788431391119957, -0.027488334104418755, 0.010891882702708244, -0.011734266765415668, 0.04537053033709526, 0.022315798327326775, 0.0074115050956606865, 0.00542377308011055, -0.007980483584105968, -0.012916561216115952, -0.04613902047276497, -0.05320322513580322, 0.0035136297810822725, 0.024133574217557907, 0.014534825459122658, 0.005009970627725124, 0.013293417170643806, -0.033813606947660446, -0.0258479006588459, -0.031419459730386734, -0.016729459166526794, 0.019626079127192497, -0.035764388740062714, -0.010958386585116386, 0.014505268074572086, -0.029749469831585884, 0.007869644090533257, -0.014254030771553516, 0.03221751004457474, -0.015975747257471085, -0.024813393130898476, 0.001379034947603941, 0.02719276025891304, -0.048089805990457535, -0.006000141613185406, -0.012606209143996239, 0.016404327005147934, 0.023719770833849907, -0.0010917745530605316, 0.027074530720710754, -0.035587046295404434, 0.007345000747591257, 0.03990241885185242, 0.01711370423436165, -0.042592138051986694, 0.03162636235356331, 0.0018039218848571181, -0.044010888785123825, -0.010729317553341389, -0.019374841824173927, -0.01526637002825737, -0.021547306329011917, -0.036414653062820435, 0.01381067093461752, -0.0467301681637764, -0.015177697874605656, -0.014209695160388947, -0.0031127582769840956, -0.036828454583883286, -0.05208004638552666, -0.040079765021800995, -0.023246854543685913, -0.00031312316423282027, -0.04164630174636841, 0.003406484378501773, 0.01081059966236353, 0.005094947759062052, 0.001791914226487279, -0.0022038696333765984, 0.02178376540541649, -0.01783785969018936, 0.00797309447079897, 0.0009259762591682374, 0.00842384435236454, 0.02609913796186447, 0.02309906668961048, 0.006628235336393118, 0.002861520741134882, 0.005619590636342764, 0.03464120998978615, -0.0026527720037847757, -0.019729528576135635, -0.008061766624450684, -0.010618477128446102, -0.03413873538374901, 0.012480589561164379, 0.0018270135624334216, 0.028301160782575607, 0.01953740604221821, 0.011453472077846527, -0.019832979887723923, -0.03121255896985531, 0.005309238564223051, 0.013153019361197948, 0.0025696419179439545, 0.013699830509722233, 0.0112687386572361, -0.020985716953873634, 0.03328157216310501, -0.011483029462397099, -0.028729742392897606, 0.033488474786281586, 0.0024329391308128834, 0.0225374773144722, 0.025833122432231903, -0.006546952296048403, 0.06272069364786148, 0.018901923671364784, -0.03954773023724556, -0.005741514731198549, -0.000938445795327425, 0.009059326723217964, -0.03103521466255188, 0.018961038440465927, -0.013212134130299091, -0.036325979977846146, -0.013729387894272804, 0.025744449347257614, 0.007803139742463827, -0.019832979887723923, 0.009014991112053394, -0.022877387702465057, 0.055952057242393494, 0.02512374520301819, -0.009414015337824821, -0.03153768926858902, 0.014010182581841946, -0.009665252640843391, -0.0003752397606149316, 0.009303174912929535, 0.018650686368346214, -0.027473554015159607, 0.00917755626142025, -0.021813321858644485, -0.0009467587806284428, 0.0026287566870450974, 0.030148494988679886, -0.011571701616048813, -0.015901852399110794, -0.023232074454426765, -0.06378475576639175, -0.025567105039954185, 0.039252158254384995, 0.021236954256892204, -0.013818060047924519, 0.00934751145541668, 0.021798543632030487, 0.036414653062820435, 0.017660515382885933, 0.013204745016992092, -0.008771142922341824, 0.008290835656225681, -0.0031515522859990597, 0.07454363256692886, -0.033074673265218735, 0.0022519004996865988, 0.0005380361108109355, -0.010005162097513676, -0.0076036276295781136, 0.015281148254871368, -0.009147998876869678, 0.009118441492319107, 0.008283446542918682, 0.0316854752600193, 0.01667034439742565, 0.003696515690535307, -0.03514368459582329, -0.047676000744104385, -0.01652255654335022, -0.009244060143828392, -0.001352248596958816, -0.01686246693134308, -0.010433743707835674, 0.01859157159924507, -0.009325343184173107, 0.00962830614298582, 0.0333998017013073, -0.013995404355227947, 0.035409703850746155, -0.009583969600498676, 0.0038572337944060564, -0.0467301681637764, -0.049183424562215805, 0.0040087150409817696, 0.022374911233782768, 0.01677379384636879, 0.032749541103839874, -0.003079506102949381, -0.011697320267558098, -0.0005140207358635962, 0.007433672901242971, 0.013116072863340378, -0.008135659620165825, 0.04070046916604042, -0.03437519446015358, 0.016034860163927078, -0.011143120005726814, -0.023838000372052193, 0.0072156875394284725, -0.034079622477293015, 0.01758662238717079, -0.0004313525278121233, 0.03221751004457474, -0.02268526516854763, -0.005512445233762264, 0.04531141370534897, -0.009399236179888248, 0.033074673265218735, -0.0442177914083004, -0.023232074454426765, 0.011704709380865097, 0.00562698021531105, -0.003668805817142129, -0.0146013293415308, 0.02026156149804592, -0.0028799939900636673, 0.0032365296501666307, -0.014534825459122658, 0.013714609667658806, 0.0021115029230713844, -0.006247684359550476, -0.042000990360975266, 0.007744024973362684, -0.010714538395404816, -0.010448521934449673, 0.0036983632016927004, -0.012761385180056095, 0.016803352162241936, 0.00552722392603755, 0.0145939402282238, -0.015724508091807365, -0.004082608502358198, -0.01893148198723793, 0.023069510236382484, -0.04628680646419525, -0.018059538677334785, 0.0036355536431074142, -0.003352911677211523, -0.003835065755993128, -0.03736048564314842, 0.028301160782575607, -0.01668512262403965, -0.0018667312106117606, -0.025389760732650757, -0.02753266878426075, 0.0013051416026428342, -0.006849915254861116, -0.04279904067516327, -0.017069367691874504, -0.01268749125301838, 0.02303995192050934, -0.010389408096671104, -0.039163485169410706, 0.01591663248836994, -0.013751556165516376, -0.023246854543685913, 0.024503041058778763, 0.03795163333415985, 0.0017475781496614218, -0.006284630857408047, 0.013249080628156662, 0.01760140061378479, -0.007474314421415329, 0.01769007183611393, -0.01180077064782381, -0.006495227105915546, -0.007263718172907829, -0.0004629881295841187, 0.01652255654335022, 0.04551831632852554, 0.00040779903065413237, -0.019167939200997353, 0.006971839349716902, -0.011497808620333672, -0.03446386754512787, -0.020882265642285347, 0.004636808764189482, -0.01101750135421753, 0.0196113009005785, -0.011320464313030243, 0.0011527366004884243, -0.015561943873763084, -0.022995617240667343, 0.0038128977175801992, -0.001541600446216762, 0.021724650636315346, -0.03301555663347244, 0.007060511503368616, -0.03812897950410843, 0.00016314270033035427, -0.016123533248901367, 0.01802998222410679, 0.0038018138147890568, -0.002758069895207882, 0.06827747076749802, 0.00937706883996725, -0.02376410737633705, 0.027577005326747894, -0.003437889041379094, -0.012820499949157238, -0.02720753848552704, 0.00588191207498312, 0.018295997753739357, -0.020143331959843636, -0.00012319409870542586, -0.003157094120979309, 0.012266299687325954, 0.02468038536608219, -0.03963640332221985, -0.03762650489807129, -0.03103521466255188, 0.01619742624461651, -0.016832908615469933, 0.030976099893450737, -0.015621058642864227, -0.0006050019292160869, -0.00715657277032733, 0.022138454020023346, 0.01009383425116539, -0.004736565053462982, 0.0350550152361393, 0.007936147972941399, 0.03440475091338158, 0.004197143483906984, 0.02045368403196335, -0.02026156149804592, -0.024473484605550766, 0.02445870451629162, -0.023749329149723053, 0.021724650636315346, -0.009244060143828392, -0.027059752494096756, 0.009820428676903248, -0.04803068935871124, 0.015162919647991657, -0.00893370807170868, 0.0292026586830616, 0.02837505377829075, 0.021414298564195633, 0.02228624001145363, 0.028049923479557037, -0.02977902814745903, 0.02417791076004505, -0.013721998780965805, 0.025079408660531044, -0.05299632251262665, -0.0030166967771947384, 0.015488049946725368, -0.007138099521398544, -0.0017346468521282077, 0.0018815099028870463, 0.015458492562174797, -0.011069227010011673, 0.008409065194427967, 0.013470761477947235, -0.05107509717345238, 0.028478505089879036, -0.021547306329011917, 0.01986253820359707, 0.011483029462397099, -0.02884797193109989, -0.023069510236382484, -0.018828030675649643, -0.02001032419502735, -0.0025216112844645977, 0.015207255259156227, -0.013278638012707233, 0.019626079127192497, -0.028907086700201035, 0.020409349352121353, 0.0304440688341856, 0.05119332671165466, -0.030916985124349594, 0.006857304833829403, 0.010485469363629818, 0.02493162266910076, 0.008106102235615253, -0.01313824113458395, -0.0031016741413623095, 0.03245396912097931, 0.009975604712963104, 0.0021281291265040636, 0.02309906668961048, -0.024636048823595047, 0.03685801103711128, 0.012569261714816093, 0.006306799128651619, -0.009650474414229393, -0.014172747731208801, 0.014157969504594803, 0.01643388532102108, 0.02810903824865818, 0.00825388915836811, -0.002704497193917632, 0.020586691796779633, 0.0051097264513373375, -0.019581742584705353, -0.00020770964329130948, 0.004636808764189482, -0.0020764037035405636, 0.0054422467947006226, -0.017571842297911644, 0.008032209239900112, -0.006184875033795834, -0.04427690804004669, 0.031981050968170166, -0.010478079319000244, -0.021044831722974777, -0.005290765315294266, 0.018650686368346214, -0.011889442801475525, 0.0016127227572724223, 0.029084429144859314, 0.02735532447695732, -0.03907481208443642, -0.01826644130051136, 0.0013605616986751556, 0.03937038779258728, -0.005955805536359549, -0.015369820408523083, 0.009790871292352676, -0.0054422467947006226, -0.04223744943737984, -0.019818201661109924, -0.024089237675070763, 0.0025677946396172047, -0.010478079319000244, 0.021148283034563065, -0.01758662238717079, -0.025729671120643616, 0.020719701424241066, -0.012281077913939953, 0.003835065755993128, 0.007780971936881542, 0.01785263791680336, 0.007714467588812113, -0.0033307436387985945, -0.01950784958899021, 0.0003521480830386281, 0.02311384491622448, 0.014616108499467373, 0.012960896827280521, 0.00984998606145382, 0.03543926030397415, -0.01201506145298481, -0.04472026601433754, -0.026926742866635323, 0.03372493386268616, 0.024665607139468193, 0.0010169574525207281, 0.0006354829529300332, -0.00847556907683611, -0.011638205498456955, 0.010869714431464672, 0.010426354594528675, 0.003827676409855485, 0.020483242347836494, -0.019744308665394783, 0.003208819543942809, 0.00587821751832962, 0.016803352162241936, -0.026320818811655045, 0.007005091290920973, -0.0014427680289372802, 0.041764531284570694, -0.01338947843760252, -0.009266228415071964, -0.0024273970630019903, 0.018621128052473068, 0.007847475819289684, -0.0006396394455805421, -0.002000662963837385, 0.0187836941331625, -0.03437519446015358, 0.048444490879774094, 0.023971008136868477, 0.01272443775087595, 0.015000353567302227, 0.01808909699320793, 0.0020856403280049562, 0.005438551772385836, 0.039577286690473557, -0.002187243662774563, 0.01035246066749096, -0.004381876904517412, -0.04034578055143356, 0.003820287063717842, -0.005434857215732336, 0.014121023006737232, 0.030562296509742737, 0.027887357398867607, -0.017379719763994217, 0.025552326813340187, 0.02385277859866619, 0.0032993389759212732, 0.00573412561789155, -0.030000707134604454, -0.013965846970677376, 0.014416595920920372, 0.010914050973951817, 0.005663926713168621, -0.011712099425494671, -0.026320818811655045, -0.018901923671364784, 0.0296312402933836, -0.00822433177381754, -0.018724579364061356, -0.002815337385982275, 0.013507707975804806, 0.021384740248322487, 0.0035487290006130934, 0.013500318862497807, 0.00263799331150949, -0.03180370479822159, -0.00033621484180912375, -0.0062772417441010475, -0.010256399400532246, 0.00023207136837299913, 0.0057267360389232635, -0.01364810485392809, -0.019906872883439064, 0.014165358617901802, 0.00013381626922637224, -0.012584040872752666, 0.039488617330789566, 0.030887428671121597, 0.005686094518750906, -0.00460725137963891, 0.001712478813715279, 0.0013079126365482807, -0.017320604994893074, 0.015369820408523083, -0.00914060976356268, 0.008941097185015678, 0.009798260405659676, 0.01172687765210867, -0.008704639039933681, -0.025552326813340187, 0.025301089510321617, 0.007200908847153187, 0.04223744943737984, -0.009029769338667393, -0.01222935225814581, -0.007027259562164545, 0.024044902995228767, -0.012266299687325954, -0.004766122438013554, -0.00619595916941762, 0.008741585537791252, -0.005205787718296051, -0.007492787670344114, 0.007913979701697826, 0.0007029106491245329, -0.04770555719733238, -0.021163061261177063, 0.024724721908569336, 0.018236882984638214, 0.019123604521155357, -0.02609913796186447, -0.03546881675720215, -0.037508275359869, 0.026675505563616753, -0.024902066215872765, -0.005874522961676121, -0.002052388386800885, 0.022419247776269913, 0.002395992400124669, 0.024503041058778763, 0.008349950425326824, 0.0030240861233323812, 0.010891882702708244, -0.012702270410954952, 0.0175127275288105, 0.017128482460975647, -0.0048806569539010525, -0.004777206107974052, -0.02470994181931019, 0.009229281917214394, -0.016315655782818794, 0.0032328348606824875, -0.00846079085022211, 0.021916773170232773, -0.022640928626060486, -0.012813109904527664, 0.013795891776680946, -0.01619742624461651, 0.006218126974999905, 0.008143049664795399, -0.02326163277029991, -0.02136996202170849, 0.027310989797115326, -0.02236013300716877, 0.0015766997821629047, 0.002046846318989992, 0.051341112703084946, -0.019965987652540207, -0.023128625005483627, -0.00502844387665391, -0.00825388915836811, 0.010167727246880531, -0.04619813337922096, 0.012318024411797523, 0.003931127022951841, 0.015621058642864227, 0.014653054997324944, 0.014571771956980228, -0.0667404904961586, -0.003072116756811738, -0.016788573935627937, 0.0021429075859487057, -0.0034138737246394157, -0.001863960176706314, 0.01850290037691593, 0.0029169407207518816, -0.002913246164098382, -0.034907229244709015, -0.015990525484085083, 0.0008668616064824164, 0.008904150687158108, 0.00011511201591929421, -0.020291119813919067, -0.0030554907862097025, 0.0019397009164094925, -0.058287087827920914, -0.05119332671165466, -0.030074601992964745, 0.03396139293909073, -0.017571842297911644, 0.006214432418346405, -0.0008123652078211308, -0.0024403284769505262, 0.006657792720943689, 0.013899343088269234, 0.021059609949588776, -0.006147928070276976, -0.020631028339266777, -0.01243625394999981, 0.004899130202829838, -0.013906732201576233, -0.01652255654335022, -0.02679373510181904, 0.016138311475515366, 0.010707149282097816, 0.04451336711645126, 0.01810387521982193, 0.015827959403395653, -0.006417639087885618, -0.007810529321432114, -0.024591712281107903, 0.018133433535695076, 0.002874452155083418, 0.01686246693134308, -0.016286099329590797, -0.004060440696775913, 0.006617151200771332, 0.008778532035648823, 0.035321030765771866, -0.0035616604145616293, -0.022138454020023346, -0.007226771675050259, -0.035912178456783295, -0.019123604521155357, 0.03271998465061188, -0.0425330214202404, 0.02778390608727932, -0.03685801103711128, 0.00917016714811325, -0.032986000180244446, -0.03901569917798042, 0.003168178256601095, -0.026232145726680756, -0.012554483488202095, 0.013256470672786236, 0.06455324590206146, -0.002375671872869134, 0.019655635580420494, -0.017630957067012787, 0.02710408717393875, 0.005789545364677906, 0.0037667143624275923, -0.014409206807613373, -0.030650969594717026, -0.026675505563616753, -0.017956089228391647, -0.011024890467524529, 0.004592472687363625, -0.017557064071297646, 0.02027633972465992, -0.005911469459533691, -0.005741514731198549, 0.008076544851064682, -0.00562698021531105, -0.011926389299333096, -0.01584273763000965, -0.018621128052473068, 0.01893148198723793, -0.01743883453309536, -0.011135730892419815, -0.028670627623796463, -0.011852496303617954, 0.021384740248322487, -0.014069297350943089, 0.040493566542863846, -0.008157827891409397, 0.011386968195438385, -0.0028707573655992746, 0.0019009069073945284, 0.027089308947324753, 0.028153372928500175, -0.012155459262430668, -0.0030351700261235237, 0.01959652081131935, 0.006306799128651619, -0.029394781216979027, 0.0026213673409074545, -0.02108916826546192, 0.016064418479800224, -0.004248868674039841, -0.0021706176921725273, -0.020232005044817924, 0.02052757702767849, -0.04862183704972267, 0.038986142724752426, 0.0009513771510683, -0.02067536488175392, 0.009657863527536392, 0.045754775404930115, -0.005368353333324194, 0.01808909699320793, 0.018310775980353355, -0.008748974651098251, 0.03396139293909073, -0.04188276082277298, -0.0221236739307642, -0.004603556822985411, 0.0008613195968791842, 0.0027543753385543823, 0.002724817954003811, 0.013448593206703663, -0.030562296509742737, 0.007899201475083828, 0.025507990270853043, 0.02938000299036503, -0.02045368403196335, -0.019374841824173927, 0.0035080877132713795, -0.006554341875016689, 0.005756293423473835, 0.005083863623440266, 0.000872865435667336, 0.0187541376799345, 0.0005029367166571319, -0.00212628161534667, -0.0112687386572361, -0.0021558389998972416, 0.004832626320421696, 0.01075887493789196, -0.022892165929079056, -0.006679960526525974, -0.052168719470500946, -0.004703313112258911, -0.010012551210820675, 0.008586409501731396, 0.01602008193731308, -0.04223744943737984, -0.008652913384139538, 0.003110910765826702, 0.015111193992197514, 0.016493000090122223, -0.019493071362376213, -0.006672571413218975, 0.012901782058179379, -0.009443572722375393, -0.023882336914539337, -0.004034577868878841, -0.0009426022879779339, -0.004385571461170912, -0.032069720327854156, -0.01526637002825737, -0.016552114859223366, 0.016818130388855934, 0.013234302401542664, 0.0005823721294291317, -0.00754820741713047, 0.004902825225144625, -0.020897043868899345, -0.005715651903301477, -0.03209928050637245, 0.0006936740246601403, 0.021754207089543343, -0.0179265309125185, -0.002486511832103133, -0.03685801103711128, 0.013271248899400234, 0.004267341922968626, -0.004895435646176338, -0.01850290037691593, -0.001712478813715279, 0.012000283226370811, -0.008623355999588966, -0.028301160782575607, -0.03990241885185242, -0.017793523147702217, -0.0254340972751379, -0.009687420912086964, -0.0034748357720673084, -0.0459025613963604, -0.00023876794148236513, 0.01575406640768051, 0.02970513515174389, 0.005556781310588121, 0.004374487325549126, -0.019493071362376213, 0.004707007668912411, -0.010670202784240246, 0.023971008136868477, 0.0068609993904829025, -0.012096344493329525, -0.011120951734483242, 0.04427690804004669, 0.0333702452480793, 0.012251520529389381, 0.004662671592086554, -0.041764531284570694, -0.002855978673323989, 0.020232005044817924, 0.024251803755760193, 0.04214877635240555, -0.006683655083179474, 0.007913979701697826, 0.009125830605626106, 0.009502687491476536, 0.013034789822995663, 0.025005515664815903, -0.01594618894159794, 0.02420746721327305, 0.006495227105915546, 0.008113492280244827, -0.01180077064782381, -0.009458350948989391, 0.017734408378601074, 0.03103521466255188, -0.01526637002825737, 0.002905856817960739, -0.027222316712141037, -0.021044831722974777, -0.0062439898028969765, -0.04271036759018898, 0.00043573995935730636, 0.005652842577546835, 0.017394499853253365, -0.004987802356481552, 0.011734266765415668, -0.0001619881222723052, 0.0018371738260611892, -0.01761617884039879, 0.003997631371021271, -0.02144385501742363, -0.017882194370031357, -0.010455911979079247, -0.008150438778102398, 0.005641758907586336, 0.0027839327231049538, -0.005612201523035765, 0.007847475819289684, -0.0048806569539010525, 0.034582097083330154, 0.004677450284361839, -0.01959652081131935, -0.02519763819873333, 0.02377888560295105, -0.030148494988679886, 0.0110618369653821, -0.007899201475083828, -0.020468462258577347, -0.006059256382286549, -0.02309906668961048, 0.0258626788854599, -0.012753995135426521, 0.001784524880349636, 0.024887286126613617, 0.014327923767268658, -0.039991091936826706, -0.0015480660367757082, -0.00026901805540546775, -0.04247390851378441, 0.011667762883007526, 0.0005070932675153017, 0.014024961739778519, 0.0016330434009432793, 0.00024892829242162406, -0.007481703534722328, -0.008564241230487823, 0.005035832989960909, 0.03053274005651474, 0.012850056402385235, 0.006255073472857475, 0.02326163277029991, -0.02428136020898819, -0.01618264801800251, -0.002357198391109705, -0.03150813281536102, 0.0002463881974108517, -0.0179413091391325, -0.0015896310796961188, -0.019123604521155357, 0.011822938919067383, -0.01130568515509367, -0.02570011280477047, -0.001824242528527975, -0.010005162097513676, 0.01509641483426094, 0.01405451912432909, -0.0076036276295781136, -0.02485772967338562, -0.018325556069612503, -0.02110394649207592, 0.0012561872135847807, 0.010116002522408962, -0.04324239864945412, 0.01150519773364067, 0.002275915816426277, -0.008830257691442966, -0.01058891974389553, 0.00962830614298582, 0.007803139742463827, 0.0016524404054507613, -0.02720753848552704, 0.0053609637543559074, -0.022493140771985054, -0.0066319298930466175, -0.026734620332717896, -0.020837929099798203, 0.003210666822269559, -0.009724367409944534, -0.026069579645991325, 0.01667034439742565, 0.011446082964539528, -0.011697320267558098, -0.05012926086783409, -0.00871941726654768, 0.017542285844683647, -0.0017531202174723148, -0.0027322073001414537, 0.02270004339516163, -0.006358524318784475, 0.007474314421415329, -0.03945905715227127, 0.0037907299119979143, 0.01456438284367323, 0.003908959217369556, -0.012162848375737667, 0.012495368719100952, -0.0010003314819186926, -0.006170096341520548, 0.015236812643706799, 0.010507636703550816, -0.014726947993040085, -0.0033750797156244516, -0.014867345802485943, -0.011660373769700527, 0.0026490772143006325, 0.03739004582166672, -0.010108612477779388, -0.006824052426964045, -0.003083200892433524, 0.002059777732938528, 0.025921793654561043, -0.005161451641470194, 0.014364871196448803, -0.02227146178483963, 0.0035672024823725224, 0.01293133944272995, 0.0063806925900280476, -0.021251732483506203, -0.0030628801323473454, -0.005771072115749121, -0.0145939402282238, -0.010500247590243816, 0.02742921933531761, 0.007921368815004826, 0.010995333082973957, -0.018488120287656784, 0.012399307452142239, -0.0022038696333765984, 0.015399377793073654, -0.04797157645225525, -0.024828171357512474, 0.008615966886281967, 0.025670556351542473, -0.011002722196280956, -0.010249010287225246, -0.017704851925373077, -0.008017430081963539, -0.006133149843662977, 0.007223076652735472, -0.013721998780965805, 0.015399377793073654, -0.015369820408523083, -0.02361632138490677, -0.001923074945807457, 0.02453259937465191, -0.010389408096671104, 0.015044690109789371, -0.006317883264273405, -0.03561660274863243, -0.0049471608363091946, -0.022138454020023346, 0.0003812435897998512, -0.007744024973362684, -0.025980908423662186, -0.015591501258313656, 0.00619595916941762, -0.007452146150171757, -0.0030037653632462025, 0.01986253820359707, -0.013788502663373947, -0.005793239921331406, -0.04155763238668442, -0.029261773452162743, 0.022670485079288483, 0.015547164715826511, -0.0037648670841008425, 0.02243402600288391, -0.0007283115410245955, 0.014874734915792942, 0.01967041566967964, 0.0010178812080994248, -0.008320393040776253, -0.008697249926626682, 0.005560475867241621, -0.014926460571587086, 0.000915815937332809, -0.008017430081963539, -0.002711886540055275, -0.006103592459112406, 0.02518285997211933, 0.013234302401542664, -0.007847475819289684, -0.019818201661109924, -0.009051937609910965, -0.007840086705982685, -0.014379649423062801, 0.0062070428393781185, 0.0006844373419880867, 0.015428935177624226, -0.0008220637100748718, 0.00047568857553415, -0.0032365296501666307, 0.01568017341196537, 0.007163961883634329, -0.012088955380022526, 0.008083934895694256, 0.04161674529314041, 0.005264902487397194, 0.014157969504594803, 0.017231933772563934, 0.03286777064204216, -0.013877174817025661, -0.0052685970440506935, -0.008313003927469254, 0.0018722732784226537, 0.0069866180419921875, -0.00222973246127367, -0.00029834447195753455, 0.0114756403490901, 0.016803352162241936, -0.0033048808109015226, -0.027488334104418755, 0.005833881441503763, 0.020985716953873634, -0.02977902814745903, -0.01944873481988907, 0.003388010896742344, 0.03195149451494217, -0.0057267360389232635, -0.0032864075619727373, -0.01742405630648136, -0.016138311475515366, 0.01927139051258564, 0.007877033203840256, 0.00598166836425662, -0.0004738412389997393, -0.016892023384571075, -0.010529804974794388, -0.0001234250230481848, -0.0044225179590284824, 0.009465740993618965, -0.03470032662153244, -0.019419176504015923, 0.011593869887292385, 0.0058893016539514065, 0.011386968195438385, -0.011601259000599384, -0.00679819006472826, -0.00871941726654768, 0.00017330303671769798, 0.028138594701886177, -0.01079582143574953, 0.00959135964512825, 0.02478383667767048, -0.005246429238468409, -0.019374841824173927, 0.0006437959964387119, 0.018044760450720787, -0.0005920706316828728, -4.398964665597305e-05, 0.015325484797358513, -0.005652842577546835, -0.0012367902090772986, -0.00019581742526497692, 0.0022592898458242416, -0.0006627311231568456, -0.02537498250603676, 0.02635037526488304, -0.006853609811514616, -0.005320322699844837, -0.033311132341623306, -0.020143331959843636, 0.008327783085405827, -0.009783482179045677, -0.01343381404876709, 0.005926248151808977, -0.01667034439742565, 0.0019119909266009927, 0.010522415861487389, -0.041587188839912415, 0.010322903282940388, -0.005187314469367266, 0.003256850177422166, 0.00573782017454505, -0.002804253250360489, 0.02704497240483761, -0.011120951734483242, -0.0015600736951455474, -0.008091324009001255, 0.009687420912086964, -0.011372189037501812, -0.00339909503236413, -0.014542214572429657, -0.002105961088091135, -0.046848397701978683, -0.020232005044817924, -0.0052685970440506935, 0.0041380287148058414, 0.007492787670344114, 0.0072378553450107574, -0.006812968757003546, -0.0006022309535183012, -0.01242886483669281, 0.00019385463383514434, 0.02437003329396248, 0.006144233513623476, 0.0065617309883236885, -0.011652984656393528, -0.006938587408512831, -0.005963194649666548, -0.031478576362133026, -0.0183551125228405, -0.018473342061042786, -0.01776396669447422, -0.00263799331150949, 0.03470032662153244, -0.033665817230939865, -0.0022814576514065266, 0.03721269965171814, -0.016226984560489655, -0.0077661932446062565, -0.0073191383853554726, 0.0014658597065135837, -0.015103804878890514, 0.01860634982585907, -0.025980908423662186, 0.0183403342962265, 0.006317883264273405, -0.0031977356411516666, 0.01868024282157421, -0.0012257063062861562, -0.02969035506248474, -0.020571913570165634, -0.022892165929079056, 0.0145939402282238, -0.001378111308440566, -0.04028666391968727, 0.01634521409869194, -0.0032901023514568806, -0.008852425962686539, -0.005002581048756838, -0.004640503786504269, -0.006055561359971762, 0.008874593302607536, 0.02343897707760334, 0.022552255541086197, 0.02902531437575817, -0.017542285844683647, 0.042503464967012405, 0.0055900332517921925, -0.0034231103491038084, -0.013795891776680946, -0.04472026601433754, -0.0114756403490901, 0.0007569451699964702, 0.015827959403395653, 0.007304359693080187, 0.0058191027492284775, 0.00027340545784682035, -0.02868540585041046, 0.008652913384139538, 0.018562015146017075, -0.002458801958709955, -0.02092660218477249, -0.016300877556204796, -0.011822938919067383, -0.013286028057336807, 0.03452298045158386, 0.008527294732630253, 0.021813321858644485, -0.005556781310588121, 0.023823222145438194, 0.04906519874930382, -0.01777874492108822, 0.00938445795327425, 0.0038683179300278425, -0.0027322073001414537, 0.026660727337002754, -0.006122065708041191, 0.006521089933812618, 0.0014095159713178873, -0.012665322981774807, 0.024089237675070763, -0.007899201475083828, 0.014623497612774372, 0.014475710690021515, 4.856468422076432e-06, -0.020468462258577347, -0.02952779084444046, -0.00868247076869011, 0.011438693851232529, -0.027843020856380463, -0.010832767933607101, -0.011630816385149956, -0.0018159295432269573, -0.004636808764189482, 0.02092660218477249, 0.00847556907683611, 0.009103663265705109, -0.0007971246959641576, -0.006835136562585831, 0.025212418287992477, 0.006428723223507404, 0.034907229244709015, 0.0052131772972643375, 0.023335525766015053, 0.004016104619950056, -0.027591783553361893, 0.001653364161029458, -0.019138382747769356, 0.005697178654372692, 0.028242046013474464, -0.013552043586969376, -0.013167798519134521, -0.02884797193109989, 0.022168010473251343, -0.0032199034467339516, -0.0333998017013073, -0.011904221959412098, 0.01900537498295307, 0.0030868954490870237, -0.005582644138485193, -0.0070568169467151165, -0.009118441492319107, 0.022478362545371056, -0.004854794126003981, -0.0019600216764956713, 0.00223157973960042, -0.005183619912713766, 0.006365913897752762, -0.01008644513785839, 0.007803139742463827, 0.02828638069331646, -0.026631170883774757, 0.006376997567713261, 0.0035598131362348795, -0.010603697970509529, 0.0018279372015967965, -0.008091324009001255, -0.003835065755993128, -0.01627131924033165, -0.026660727337002754, 0.013832838274538517, 0.01584273763000965, -0.00502844387665391, 0.00044636212987825274, 0.007995262742042542, 0.007367169018834829, -0.0048252372071146965, -0.010116002522408962, -0.01476389542222023, 0.0016875398578122258, -0.012842667289078236, -0.007093763444572687, -0.02367543615400791, -0.01414319034665823, 0.0005260283942334354, 0.04829670488834381, 0.010980554856359959, 0.02185765840113163, 0.014468321576714516, -0.004998886492103338, -0.0148156201466918, -0.01675901561975479, 0.0031219949014484882, 0.00850512646138668, 0.006731685716658831, 0.010692370124161243, -0.0037833405658602715, -0.0006317882798612118, 0.0053609637543559074, -0.005564170889556408, 0.0006775098154321313, 0.014667834155261517, -0.004444686230272055, -0.013574211858212948, 0.03136034682393074, 0.007285885978490114, 0.010478079319000244, -0.0333702452480793, -0.014172747731208801, 0.005091253202408552, 0.00031312316423282027, -0.002015441656112671, 0.004282120615243912, 0.010854936204850674, 0.021325625479221344, 0.0018685786053538322, -0.007780971936881542, 0.005641758907586336, -0.00846817996352911, 0.023793665692210197, -0.00041726662311702967, -0.00364848505705595, -0.0010206521255895495, 0.0009245908004231751, 0.011955946683883667, -0.008386896923184395, -0.00263799331150949, 0.02677895687520504, 0.008785921148955822, 0.0010354308178648353, -0.0013744166353717446, 0.007082679308950901, -0.0023738243617117405, -0.0015499134315177798, -0.008298225700855255, -0.023660656064748764, -0.007130709942430258, 0.007285885978490114, 0.013995404355227947, -0.01720237545669079, -0.011394357308745384, -0.02194632962346077, -0.007692299783229828, 0.009059326723217964, 0.00040294977952726185, 0.004636808764189482, 0.015901852399110794, 0.008815478533506393, -0.021975887939333916, -0.0019729528576135635, -0.012325413525104523, 0.010817988775670528, -0.012369750067591667, 0.0023461144883185625, -0.0006294791237451136, -0.018990594893693924, 0.01318257674574852, -0.012746606022119522, -0.0300302654504776, -0.014394428580999374, 0.012281077913939953, -0.01193377934396267, 0.023882336914539337, 0.005671316292136908, 0.02979380637407303, -0.009125830605626106, -0.00527229206636548, -0.002277763094753027, -0.016877245157957077, 0.009000211954116821, -0.010160338133573532, -0.004097387194633484, -0.00552352936938405, 0.019552186131477356, -0.02468038536608219, -0.008519905619323254, 0.0014159816782921553, -0.0076627423986792564, 0.02284782938659191, 0.009990383870899677, -0.007042038254439831, 0.006358524318784475, -0.01505946833640337, 0.014512657187879086, 0.005671316292136908, 0.005191009026020765, 0.014202305115759373, -0.005896690767258406, 0.005257513374090195, -0.007514955475926399, 0.005959500093013048, 0.00888937246054411, 0.006820357870310545, -0.0008063613786362112, 0.01409885473549366, -0.00644719647243619, -0.022064559161663055, 0.013803280889987946, -0.0037334624212235212, -0.014084076508879662, 0.013020011596381664, 0.022552255541086197, 0.00028472038684412837, -0.025463655591011047, 0.008579020388424397, -0.013463371433317661, -0.008372118696570396, 0.0012645003153011203, 0.0035875230096280575, -0.002769154030829668, -0.00913322065025568, -0.02509418874979019, -0.008268668316304684, 0.01242886483669281, -0.00942140445113182, 0.011483029462397099, 0.018901923671364784, 0.010877103544771671, 0.003437889041379094, -0.00963569525629282, -0.008859815075993538, 0.01030073594301939, -0.02302517369389534, 0.010603697970509529, -0.02301039546728134, -0.00705312192440033, 0.011069227010011673, 0.011157899163663387, 0.0003080429742112756, -0.0055346135050058365, -0.012694880366325378, -0.0035154770594090223, -0.037419602274894714, 0.012798331677913666, -0.005098642315715551, 0.04445425048470497, -0.008482959121465683, 0.014786062762141228, -0.020143331959843636, 0.015089025720953941, -0.0059779733419418335, -0.010906660929322243, 0.020557135343551636, -0.008305614814162254, 0.0010806905338540673, 0.006624540314078331, -0.005009970627725124, -0.03939994424581528, -0.022419247776269913, 0.002547473879531026, -0.013411646708846092, 0.037656061351299286, 0.009111052379012108, -0.009576580487191677, 0.001379034947603941, -0.015872295945882797, 0.007891811430454254, 0.007345000747591257, -0.027916913852095604, 0.009894321672618389, 0.006358524318784475, 0.019965987652540207, 0.00893370807170868, -0.001318996655754745, 0.02270004339516163, 0.010507636703550816, -6.598446634598076e-05, 0.01434270292520523, 0.014786062762141228, -0.01720237545669079, 0.022241903468966484, 0.035912178456783295, -0.022980837151408195, 0.01659645140171051, 0.029143543913960457, -0.012377139180898666, 0.030473625287413597, -0.007943537086248398, -0.012584040872752666, 0.004333846271038055, 0.0027137340512126684, -0.0012118512531742454, 0.012251520529389381, 0.007123320829123259, 0.008652913384139538, -0.0044336020946502686, 0.0034027895890176296, -0.005102337338030338, -0.0005061695701442659, -0.027562227100133896, -0.007016175426542759, -0.0002219110174337402, -0.02635037526488304, 0.005719346925616264, -0.005671316292136908, -0.02679373510181904, -0.01783785969018936, -0.007370863575488329, -0.001332851592451334, -0.01477128453552723, 0.007913979701697826, 0.008593798615038395, 0.006284630857408047, 0.01786741614341736, 0.0009966368088498712, 0.012495368719100952, 0.01885758712887764, 0.002828268799930811, -0.007518650498241186, 0.005046917125582695, 0.0005094024236313999, 0.01776396669447422, 0.01038201805204153, 0.012960896827280521, 0.0037242257967591286, 0.03440475091338158, -0.00939184706658125, -0.0033676903694868088, -0.00817260704934597, 0.015901852399110794, 0.0073080542497336864, 0.03076919913291931, 0.00263984058983624, 0.01785263791680336, -0.00959874875843525, -0.046434592455625534, -0.009909100830554962, 0.001523127080872655, -0.0076110172085464, 0.01505207922309637, 0.0013365462655201554, -0.010817988775670528, -0.014276199042797089, -0.011601259000599384, -2.124434286088217e-05, 0.003051796229556203, -0.0026232146192342043, -0.02111872471868992, 0.0032254455145448446, 0.005811713635921478, 0.003835065755993128, 0.00658759381622076, -0.010160338133573532, -0.004293204750865698, -0.024148352444171906, -0.009473130106925964, 0.0038941805250942707, -0.013160409405827522, 0.0020043575204908848, 0.008039598353207111, 0.014756505377590656, -0.04135072976350784, 0.026483383029699326, -0.009768703021109104, 0.008342561312019825, 0.005564170889556408, -0.00980565045028925, 0.018222104758024216, 0.013670273125171661, 0.0024698858615010977, 0.007906590588390827, 0.00868247076869011, -0.010537194088101387, 0.006147928070276976, 0.021163061261177063, 4.419169999891892e-05, 0.026069579645991325, -0.01575406640768051, -0.0221088957041502, 0.0146013293415308, -0.009081494994461536, -0.017793523147702217, 0.006657792720943689, 0.00482154218479991, 0.00435970863327384, 0.02354242652654648, -0.014505268074572086, 0.01819254830479622, 0.004182364791631699, -0.013951067812740803, 0.0067575485445559025, 0.02060147188603878, -0.0038609285838901997, 0.01860634982585907, -0.010788431391119957, -0.013566822744905949, -0.0070900688879191875, -0.028242046013474464, -0.01643388532102108, 0.021502969786524773, 0.006897945888340473, 0.01842900551855564, -0.0006197806214913726, -0.015650615096092224, 0.014121023006737232, 0.010426354594528675, -0.006465669721364975, -0.0106332553550601, 0.020069438964128494, -0.016049640253186226, -0.005848660133779049, -0.00410477677360177, 0.03322245925664902, 0.0005703644128516316, 0.02884797193109989, 0.007285885978490114, 0.0025751839857548475, 0.011992894113063812, 0.010987943969666958, 0.010529804974794388, 0.021665535867214203, 0.0036743476521223783, 0.0025437793228775263, 0.03679889813065529, -0.05018837749958038, -0.00959135964512825, 0.01702503301203251, -0.012162848375737667, 0.003426804905757308, 0.0036392484325915575, 0.012953507713973522, -0.01743883453309536, -0.010374628938734531, -0.013241691514849663, -0.000472455722047016, -0.017660515382885933, 0.018310775980353355, -0.014837788417935371, -0.012251520529389381, -0.015236812643706799, 0.02936522476375103, 0.022079339250922203, -0.005146672949194908, -0.006787105929106474, 0.02094138041138649, 0.010529804974794388, -0.03780384734272957, -0.007315443363040686, 0.007474314421415329, -0.02277393639087677, -0.010581530630588531, 0.00375563045963645, 0.02160642109811306, -0.010293345898389816, 0.002632451243698597, 0.002817184664309025, 0.02095615863800049, -0.00801004096865654, -0.009768703021109104, 0.006295714993029833, 0.0016247304156422615, 0.007773582357913256, -0.021044831722974777, -0.03029628098011017, 0.01569495163857937, 0.010042108595371246, -0.011386968195438385, -0.00010754948743851855, -0.011194845661520958, -0.007877033203840256, -0.009340121410787106, -0.0005435781204141676, 0.005582644138485193, -0.010263788513839245, -0.006000141613185406, 0.025833122432231903, -0.011320464313030243, -0.008867204189300537, 0.0075334287248551846, 0.007707078475505114, -0.00609250832349062, 0.02760656177997589, -0.01010122336447239, 0.009207113645970821, 0.02278871461749077, 0.0077661932446062565, -0.00984998606145382, 0.0016958528431132436, -0.0009144304203800857, -0.001050209510140121, 0.00917755626142025, -0.006739075295627117, 0.007008785847574472, -0.015340263023972511, -0.003129384247586131, -0.011734266765415668, 0.00345266773365438, 0.011652984656393528, 0.024828171357512474, 0.001095469226129353, -0.04061179608106613, 0.02261137031018734, 0.01643388532102108, 0.01992165297269821, 0.002835658146068454, 0.015709729865193367, 0.00024223170476034284, -0.016788573935627937, -0.017911752685904503, 0.024340474978089333, -0.013788502663373947, 0.0014483099803328514, -0.012125901877880096, 0.007581459823995829, 0.01708414778113365, 0.0006562654743902385, 0.012362360954284668, 0.01760140061378479, -0.009022380225360394, 0.009022380225360394, 0.03195149451494217, 0.05205048993229866, 0.011911611072719097, -0.00765535281971097, 0.004341235384345055, 0.0112613495439291, 0.004862183704972267, -0.0033750797156244516, -0.0026139779947698116, -0.016995474696159363, -0.027000637724995613, 0.01952262781560421, -0.023246854543685913, 0.0008095942321233451, 0.0183551125228405, -0.01910882443189621, 0.0019156855996698141, -0.013478150591254234, -0.0006715059862472117, 0.008571630343794823, 0.0262617040425539, -0.0045592207461595535, 0.016123533248901367, -0.004803068935871124, 0.0026878712233155966, -0.03472988307476044, 0.022049780935049057, -0.024724721908569336, 0.0015517607098445296, -0.015192477032542229, -0.012148070149123669, -0.008106102235615253, -0.010862325318157673, -0.00537943746894598, -0.018207326531410217, -0.0020708616357296705, -0.003578286385163665, -0.006221821531653404, 0.01760140061378479, 0.011778603307902813, 0.014741727150976658, 0.014660444110631943, 0.025980908423662186, -0.017143260687589645, -0.0007721856818534434, -0.01903493143618107, 0.015576722100377083, 0.005952110979706049, 0.008187385275959969, -0.0061183711513876915, 0.01977386511862278, 0.00542007852345705, -0.009236671030521393, -0.013064347207546234, -0.002809795318171382, -0.007906590588390827, -0.006155317649245262, -0.00435970863327384, 0.010396797209978104, 0.012702270410954952, 0.002094876952469349, -0.01591663248836994, 0.011712099425494671, -0.007692299783229828, 0.010359850712120533, 0.030650969594717026, 0.0012229352723807096, 0.010367239825427532, -0.00022283468570094556, 0.00299083418212831, 0.01777874492108822, -0.006362218875437975, 0.035025455057621, -0.009554412215948105, -0.0054311626590788364, 0.011401746422052383, -0.013729387894272804, 0.0026546192821115255, 0.004056746140122414, -0.0019914263393729925, -0.008446011692285538, 0.005645453464239836, 0.013744167052209377, 0.006103592459112406, -0.00893370807170868, -0.0035284084733575583, 0.0006812044885009527, 0.005187314469367266, 0.017571842297911644, -0.007514955475926399, 0.012606209143996239, 0.00648414297029376, 0.024310918524861336, 0.010123391635715961, -0.0016173410695046186, -0.0073006646707654, -0.02277393639087677, 0.0032180561684072018, 0.01384761743247509, -0.014254030771553516, -0.01267271302640438, 0.01292395032942295, 0.004529663361608982, -0.015399377793073654, -0.003031475469470024, -0.003630011808127165, 0.01776396669447422, 0.007489093113690615, -0.007426283787935972, 0.0005638987640850246, 0.006857304833829403, -0.019626079127192497, -0.0039754630997776985, 0.013588990084826946, -0.024325696751475334, 0.003657721681520343, 0.003846149891614914, -0.010433743707835674, -0.003949600737541914, 0.002357198391109705, 0.007677521090954542, -0.005941026844084263, 0.013419035822153091, 0.006062950938940048, 0.020645806565880775, -0.0009296709322370589, -0.0010788431391119957, -0.0008391515584662557, 0.013744167052209377, 0.005723041482269764, -0.02568533457815647, 0.0035801336634904146, -0.019153160974383354, 0.01885758712887764, 0.021990666165947914, 0.010832767933607101, -0.0068609993904829025, 0.004374487325549126, 0.01718759723007679, -0.002192785730585456, 0.013914121314883232, -0.001398431952111423, 0.004248868674039841, -0.0029317194130271673, 0.009502687491476536, -0.018961038440465927, 0.006314188241958618, -0.01009383425116539, 0.0026028938591480255, -0.016552114859223366, -0.021148283034563065, 0.004370792768895626, -0.008409065194427967, 0.012857446447014809, -0.014364871196448803, 0.00963569525629282, 0.006328966934233904, -0.010042108595371246, -0.0026213673409074545, 0.013308195397257805, 0.008808089420199394, 0.008601187728345394, 0.01335253193974495, 0.035587046295404434, -0.01313824113458395, 0.0013236149679869413, -0.01384761743247509, -0.008859815075993538, -0.013736777007579803, -0.013537265360355377, 0.007160267326980829, 0.0035006983671337366, 0.0020690143574029207, -0.011194845661520958, -0.02417791076004505, -0.009953436441719532, 0.019374841824173927, 0.0012774316128343344, 0.0013753402745351195, 0.007795750629156828, -0.00425256323069334, -0.003129384247586131, -0.017956089228391647, -0.0010797668946906924, -0.012776163406670094, 0.020069438964128494, 0.005253818351775408, 0.02611391618847847, -0.004692228976637125, -0.0010843852069228888, -0.013079126365482807, 0.007913979701697826, -0.019330505281686783, 0.020291119813919067, 0.027074530720710754, -0.011985504068434238, 0.011024890467524529, 0.01900537498295307, -0.0017032421892508864, -0.008822868578135967, -0.009354900568723679, -0.009051937609910965, 0.00492499303072691, 0.005700873211026192, 0.005220566410571337, 0.001673684804700315, -0.014438764192163944, 0.01593141071498394, -0.02045368403196335, 0.00164689845405519, -0.001693081809207797, -0.035912178456783295, 0.016906803473830223, -0.012192405760288239, -0.011749045923352242, -0.00655064731836319, -0.004743954166769981, -0.005538308061659336, 0.011069227010011673, 0.009118441492319107, -0.006964450236409903, 0.014749116264283657, -0.004086303524672985, -0.0020653195679187775, -0.0021964802872389555, -0.02821248769760132, 0.02360154129564762, 0.008298225700855255, 0.008320393040776253, -0.008808089420199394, -0.004418823402374983, -0.0057636830024421215, -0.015990525484085083, 0.023749329149723053, -0.020483242347836494, -0.004049356561154127, -0.037567388266325, -0.010145559906959534, 0.017320604994893074, -0.013404256664216518, -0.025640999898314476, 0.01986253820359707, 0.014859956689178944, -0.006469364278018475, -0.014542214572429657, -0.01342642493546009, 0.006280936300754547, -0.008822868578135967, 0.018295997753739357, -0.007684910204261541, -0.0034748357720673084, 0.0004876962339039892, -0.015384599566459656, -0.00035884467069990933, -0.03827676549553871, -0.016980696469545364, -0.01293872855603695, -0.009997772984206676, -0.01296828594058752, -1.6438387319794856e-05, 0.029838142916560173, 0.004440991673618555, -0.00619595916941762, -0.021296069025993347, 0.010692370124161243, -0.0033288963604718447, -0.011793381534516811, -0.014217084273695946, -0.014209695160388947, 0.0034489729441702366, 0.009317954070866108, -0.02570011280477047, 0.006824052426964045, 0.00425256323069334, -0.01735016331076622, -0.01975908689200878, 0.005205787718296051, -0.018251661211252213, 0.006399165838956833, -0.0005218719015829265, -0.02420746721327305, -0.002139213029295206, 0.010921440087258816, -0.01242147572338581, -0.010123391635715961, 0.00435970863327384, -0.009532244876027107, 0.0024273970630019903, 0.016552114859223366, 0.0011952252825722098, -0.03546881675720215, 0.012753995135426521, 0.007171351462602615, -0.01452004723250866, -0.014024961739778519, 0.01222935225814581, 0.014209695160388947, 0.00826127827167511, 0.007943537086248398, -0.011394357308745384, -0.017571842297911644, 0.01035246066749096, 0.007795750629156828, -0.01389195304363966, 0.0009753924678079784, 0.02559666335582733, -0.0024200077168643475, -0.014069297350943089, 0.025729671120643616, 0.010574141517281532, -0.007141794078052044, 0.01811865344643593, -0.011845107190310955, 0.00492499303072691, 0.005013665184378624, -0.001958174165338278, -0.022315798327326775, -0.01727627031505108, 0.00527229206636548, 0.02136996202170849, -0.009768703021109104, 0.003982852678745985, 0.007415199652314186, 0.0024273970630019903, 0.002323946449905634, -0.02351287007331848, -0.0017032421892508864, 0.023734550923109055, -0.015399377793073654, 0.020823150873184204, 0.007211992982774973, 0.003070269478484988, -0.004455770365893841, -0.001114866230636835, -0.0013171492610126734, 0.024133574217557907, 0.004426212981343269, 0.014911681413650513, 0.011386968195438385, -8.872977196006104e-05, 0.013153019361197948, 0.00850512646138668, 0.010640645399689674, -0.022138454020023346, 0.018251661211252213, -0.004806763492524624, -0.009450961835682392, -0.0019895790610462427, -0.03594173491001129, -0.0005592804518528283, -0.009997772984206676, -0.01576884463429451, 0.0040124100632965565, -0.031478576362133026, 0.01735016331076622, -0.010108612477779388, 0.00588560663163662, -0.037596944719552994, 0.010825378820300102, -0.021724650636315346, -0.0008326859096996486, 0.02352764829993248, 0.016640786081552505, 0.0050764745101332664, 0.005815408192574978, 0.005346185062080622, -0.012052008882164955, -0.018872367218136787, 0.007950926199555397, -0.00897065456956625, 0.007289581000804901, 0.03076919913291931, 0.005002581048756838, 0.0024273970630019903, -0.008497737348079681, 0.00866769254207611, -0.006461975164711475, -0.0009070410742424428, -0.020246783271431923, -0.01910882443189621, 0.0005218719015829265, -0.01171948853880167, 0.015369820408523083, 0.021901994943618774, -0.006354829762130976, 0.008150438778102398, 0.020084217190742493, -0.007943537086248398, -0.0012414086377248168, 0.0026878712233155966, -0.009938658215105534, -0.00962830614298582, -0.0024273970630019903, -0.02935044653713703, 0.004271036945283413, 0.004633114207535982, -0.0014547756873071194, 0.05533135309815407, 0.014837788417935371, -0.030828313902020454, 0.01627131924033165, 0.00888937246054411, -0.00822433177381754, 0.010973164811730385, -0.00847556907683611, 0.011187455616891384, -0.016566893085837364, -0.012909171171486378, 0.0025770312640815973, 0.006639319006353617, -0.016241762787103653, 0.01885758712887764, -0.01338947843760252, 0.007104847580194473, -0.0016228831373155117, 0.008290835656225681, -0.023084288462996483, 0.014682612381875515, 0.00850512646138668, -0.0025696419179439545, 0.012820499949157238, -0.008689859881997108, 0.006650403141975403, -0.03777429088950157, 0.004736565053462982, 0.009982993826270103, 0.004130639135837555, -0.005867133382707834, -0.01902015320956707, -0.015827959403395653, 0.023483311757445335, -0.01196333672851324, -0.008113492280244827, 0.013988014310598373, -0.02354242652654648, 0.00984998606145382, 0.02278871461749077, 0.0030887427274137735, 0.004489022307097912, -0.0011665915371850133, -0.005933637730777264, 0.0005569712957367301, -0.026409490033984184, -0.01030073594301939, 0.008098713122308254, -0.0233650840818882, 0.014645665884017944, -0.02176898717880249, 0.013537265360355377, -0.020793594419956207, 0.00846079085022211, 0.0013624089770019054, 0.0003507625951897353, -0.006554341875016689, -0.0016783031169325113, -0.01101750135421753, 0.010507636703550816, 0.022404469549655914, -0.002815337385982275, 0.0018085401970893145, -0.028138594701886177, 0.027843020856380463, 0.02704497240483761, 0.007356084883213043, 0.01218501664698124, 0.011157899163663387, -0.011652984656393528, 0.014948628842830658, -0.003262392245233059, 0.015561943873763084, -0.005966889671981335, 0.014254030771553516, -0.011660373769700527, -0.010581530630588531, 0.006679960526525974, 0.00015621520287822932, 0.003971768543124199, 0.0074078100733459, 0.004470548592507839, -0.023645877838134766, 0.008985433727502823, -0.04930165410041809, 0.0010335835395380855, 0.008904150687158108, 0.03209928050637245, -0.0075075663626194, 0.01934528350830078, 0.007721857167780399, 0.0016579824732616544, 0.006011225748807192, 0.002080098260194063, -0.0029631240759044886, -0.013086515478789806, 0.010500247590243816, 0.004489022307097912, -0.03136034682393074, 0.0034748357720673084, 0.0035136297810822725, 0.013515097089111805, 0.02794647216796875, -0.000283796718576923, -0.02484295144677162, 0.004540747497230768, -0.016566893085837364, 0.004854794126003981, 0.00634005106985569, 0.006580204702913761, 0.011734266765415668, -0.016655566170811653, -0.006809273734688759, 0.0077661932446062565, -0.0013947373954579234, 0.003927432466298342, 0.003604148980230093, 0.031242117285728455, -0.008327783085405827, -0.0015065011102706194, -0.007899201475083828, -0.005024748854339123, -0.0015120430616661906, 0.008401676081120968, -0.0016219594981521368, -0.0220941174775362, 0.0032919496297836304, -0.007234160788357258, -0.00917755626142025, 0.01551760733127594, -0.002822726732119918, -0.004729175474494696, 0.008076544851064682, 0.010263788513839245, -0.01995120942592621, -0.016995474696159363, -0.0037020577583462, 0.002226037671789527, -0.0229365024715662, -0.003960684407502413, 0.03286777064204216, -0.02185765840113163, 0.02270004339516163, -0.01786741614341736, -0.002311015035957098, -0.006033393554389477, 0.0050062756054103374, -0.0009550717659294605, 0.0060814241878688335, 0.0196113009005785, 0.007877033203840256, 0.0033676903694868088, 0.014645665884017944, 0.010825378820300102, -0.027340546250343323, -0.009709588252007961, -0.013655494898557663, 0.0015720814699307084, -0.005471804179251194, -0.0056934840977191925, -0.0053609637543559074, 0.0041380287148058414, -0.001811311230994761, 0.006177485454827547, -0.0009088884107768536, -0.00445946492254734, -0.005800629500299692, -0.013914121314883232, -0.020483242347836494, -0.008689859881997108, 0.0040456620045006275, 0.021251732483506203, -0.007574070245027542, -0.010980554856359959, 0.025153303518891335, 0.012524926103651524, -0.021665535867214203, 0.002671245252713561, 0.00634005106985569, 0.02710408717393875, 0.0005251047550700605, 0.021325625479221344, 0.008615966886281967, -0.03150813281536102, -0.017217155545949936, -0.0073191383853554726, -0.021222176030278206, 0.0187689159065485, -0.007832696661353111, -0.0054311626590788364, -0.0484149344265461, 0.0026804818771779537, -0.007455840706825256, 0.026838071644306183, -0.0006673494935967028, 0.006820357870310545, 0.012199794873595238, 0.00891892984509468, 0.0024329391308128834, 0.01659645140171051, -0.005046917125582695, -0.003668805817142129, -0.01193377934396267, 0.01777874492108822, 0.0052131772972643375, -0.02303995192050934, 0.012340192683041096, -0.022049780935049057, 0.00370021048001945, 0.004178670234978199, 0.017542285844683647, -0.0005075550870969892, -0.01296828594058752, -0.0002351887378608808, -0.025966130197048187, 0.026734620332717896, -0.008527294732630253, 0.018576793372631073, 0.018473342061042786, -0.006432417780160904, -0.016286099329590797, 0.01743883453309536, -0.0067353807389736176, -0.0150225218385458, -0.004322762135416269, -0.0005620514275506139, 0.009716978296637535, -0.016832908615469933, -0.0191974975168705, -0.0002344959939364344, -0.01995120942592621, 0.01526637002825737, 0.010928829200565815, -0.006077729631215334, -0.020379791036248207, 0.026675505563616753, 0.006609761621803045, 0.02095615863800049, 0.01038201805204153, 0.023719770833849907, 0.0011471945326775312, 0.00017988416948355734, 0.000725540507119149, 0.002275915816426277, -0.000659036508295685, -0.0061516230925917625, -0.0008095942321233451, 0.023172959685325623, -0.007108542136847973, 0.028345495462417603, -0.005915164016187191, 0.02385277859866619, -0.0067242966033518314, -0.00918494537472725, -0.004732870496809483, 0.023838000372052193, 0.011379579082131386, -0.012768774293363094, 0.02027633972465992, -0.005479193292558193, -0.0032309875823557377, 0.013034789822995663, -0.005117115564644337, -0.011084005236625671, 0.009199724532663822, -0.008830257691442966, -0.01263576652854681, -0.008527294732630253, 0.006750159431248903, 0.013271248899400234, -0.0029742082115262747, 0.02751789055764675, -0.009909100830554962, 0.012155459262430668, 0.009864764288067818, 0.005331406369805336, -0.003979158122092485, 0.02936522476375103, -0.034316081553697586, 0.02534542605280876, -0.0018464105669409037, -0.004995191935449839, 0.024503041058778763, 0.007108542136847973, 0.0017364941304549575, 0.011202234774827957, -0.013736777007579803, -0.010234231129288673, -0.023882336914539337, -0.006362218875437975, -0.0034822251182049513, 0.021473413333296776, 0.016640786081552505, -0.004041967447847128, -0.006188569590449333, -0.02311384491622448, 0.02519763819873333, 0.00445946492254734, -0.00892631895840168, 0.0016838451847434044, 0.013234302401542664, -0.009044548496603966, -0.01652255654335022, 0.0036392484325915575, -0.008120881393551826, -0.007647963706403971, 0.0023719770833849907, 0.009406626224517822, 0.001476020086556673, 0.0023073204793035984, 0.01172687765210867, -0.0012515689013525844, -0.002264831680804491, 0.010603697970509529, 0.02751789055764675, 0.0017291047843173146, -0.0027783906552940607, -0.00704573281109333, 0.010736706666648388, 0.006181180477142334, 0.025049852207303047, 0.00460725137963891, -0.0011665915371850133, -0.024547377601265907, -0.004636808764189482, 0.024739500135183334, 0.003968073986470699, 0.007618406321853399, -0.004976718220859766, -0.023054732009768486, -0.001469554379582405, -0.0020394569728523493, 0.0008202163735404611, 0.020305898040533066, -0.03546881675720215, 0.002041304251179099, -0.008091324009001255, 0.03777429088950157, 0.011593869887292385, -0.005578949581831694, -0.020143331959843636, 0.00917755626142025, -0.014438764192163944, -0.005553086753934622, -0.0036798897199332714, -0.0073191383853554726, -0.01405451912432909, -0.0064028603956103325, -0.019714750349521637, -0.026143474504351616, -0.0013023705687373877, -0.0048252372071146965, -0.011460861191153526, 0.012613598257303238, -0.0019914263393729925, 0.00020124396542087197, -0.0072156875394284725, -0.012133290991187096, -0.03112388774752617, -0.012753995135426521, -0.0146013293415308, 0.002504985313862562, 0.023084288462996483, 0.002843047259375453, -0.011335242539644241, 0.008416454307734966, 0.020985716953873634, -0.0062772417441010475, 0.011608648113906384, 0.004976718220859766, -0.003125689458101988, -0.0018990596290677786, 0.01727627031505108, -0.006650403141975403, -0.013588990084826946, -0.008519905619323254, 0.0020505408756434917, -0.009798260405659676, -0.013980625197291374, 0.006155317649245262, 0.004064135253429413, 0.004481632728129625, -0.01727627031505108, 0.006923808716237545, -0.006181180477142334, -0.007574070245027542, 0.030650969594717026, 0.006816663313657045, -0.016034860163927078, 0.009340121410787106, -0.024562155827879906, -0.007474314421415329, 0.003570897039026022, 0.0025382372550666332, -0.006476753856986761, 0.02827160246670246, 0.006395471282303333, -0.012369750067591667, -0.0049471608363091946, 0.03304511308670044, -0.0012183169601485133, -0.015547164715826511, 0.02395622991025448, -0.014630886726081371, 0.009332732297480106, -0.004732870496809483, -0.0006848991615697742, 0.005490277428179979, 0.007285885978490114, -0.012022451497614384, -0.0035450344439595938, 0.008298225700855255, -0.00588560663163662, 0.01172687765210867, -0.0010723775485530496, 0.00842384435236454, -0.03363626077771187, 0.01171948853880167, -0.009901711717247963, -0.011778603307902813, 0.006897945888340473, 0.0001676455867709592, -0.02060147188603878, 0.008564241230487823, 0.013721998780965805, -0.020498020574450493, -0.0179265309125185, -0.0053942156955599785, 0.013729387894272804, 0.002355351112782955, 0.00896326545625925, 0.004418823402374983, 0.006565426010638475, -0.00446685403585434, -0.011652984656393528, 0.0010723775485530496, -0.008911540731787682, -0.0007061435026116669, -0.009694810025393963, 0.01752750761806965, 0.002187243662774563, 0.020468462258577347, -0.0187689159065485, -0.014254030771553516, 0.009244060143828392, -0.019315727055072784, 0.013988014310598373, -0.01928616873919964, -0.021325625479221344, 0.008741585537791252, 0.003262392245233059, -0.012088955380022526, 0.01130568515509367, -0.011667762883007526, 0.005837575998157263, 0.002946498105302453, -0.0071454886347055435, 0.010684981010854244, -0.001967411022633314, 0.005663926713168621, -0.015739288181066513, -0.014335313811898232, 0.009369678795337677, 0.015000353567302227, 0.04545919969677925, 0.03594173491001129, 0.00364848505705595, 0.00714918365702033, 0.0024569544475525618, -0.018059538677334785, 0.003118300111964345, -0.010611088015139103, 0.0061183711513876915, 0.003934822045266628, 0.013286028057336807, -0.01903493143618107, 0.01122440304607153, 0.028818413615226746, -0.006351135205477476, -0.0008479264215566218, -0.00304625416174531, 0.02219756878912449, -0.0018842809367924929, 0.01150519773364067, 0.009303174912929535, -0.029246995225548744, 0.004795679822564125, 0.0038941805250942707, 0.017985645681619644, 0.0053018489852547646, -0.009125830605626106, -0.002998223528265953, 0.010042108595371246, -0.009753924794495106, 0.0150225218385458, 0.004751343745738268, 0.009162778034806252, 0.011652984656393528, -0.002612130483612418, 0.04155763238668442, 0.0019267696188762784, 0.004784595686942339, -0.005364658776670694, -0.002020983723923564, -0.03644420951604843, -0.026926742866635323, 0.004404044710099697, 0.008054377511143684, -0.021000495180487633, 0.0040087150409817696, -0.0013208439340814948, 0.01055197324603796, -0.024828171357512474, 0.006255073472857475, 0.005242734681814909, 0.01641910709440708, -0.009650474414229393, 0.0007772658718749881, 0.010721927508711815, -0.007389336824417114, 0.0034545150119811296, -0.018148211762309074, -0.004980413243174553, -0.011460861191153526, 0.0032808654941618443, -0.0022075644228607416, 0.0048584891483187675, -0.010581530630588531, -0.0033658428583294153, 0.023084288462996483, 0.008512516506016254, -0.008527294732630253, 0.007840086705982685, -0.005863438826054335, -0.005021054297685623, -0.006569120567291975, 0.012347581796348095, -0.006894251331686974, 0.004123250022530556, -0.0079287588596344, -0.02887752838432789, 0.004489022307097912, -0.016138311475515366, 0.0013051416026428342, 0.0025825733318924904, 0.002724817954003811, -0.003504392923787236, -0.0010926981922239065, -0.01661122962832451, 0.020970938727259636, 0.015118583105504513, 0.008726807311177254, -0.0021650756243616343, -0.017823081463575363, -0.03440475091338158, -0.00223157973960042, 0.009317954070866108, 0.024754278361797333, 0.02270004339516163, -0.03295644372701645, -0.017409278079867363, 0.0018685786053538322, 0.003484072396531701, 0.01101750135421753, -0.01242886483669281, -0.011076616123318672, 0.002663855906575918, 0.008586409501731396, 0.02601046673953533, -0.013699830509722233, -0.021754207089543343, 0.006809273734688759, -0.004060440696775913, -0.009111052379012108, -0.009325343184173107, 0.0114756403490901, -0.01109139434993267, 0.014690001495182514, 0.0065063112415373325, 0.009044548496603966, 0.018798472359776497, 0.0008548538899049163, 0.016034860163927078, 0.013662884011864662, -0.0024920538999140263, -0.00258626788854599, 0.017246711999177933, 0.010714538395404816, 0.007906590588390827, -0.0005791392759419978, 0.00562698021531105, 0.006960755214095116, 0.004186059348285198, 0.015709729865193367, 0.008571630343794823, -0.008490348234772682, 0.01251014694571495, 0.006122065708041191, -0.01817776821553707, 0.01851767860352993, 0.03263131156563759, 0.016714680939912796, 0.025507990270853043, -0.02103005349636078, -0.019832979887723923, 0.03118300251662731, 0.028759298846125603, -0.011172677390277386, 0.004588778130710125, -0.011098784394562244, 0.0004613717319443822, 0.02936522476375103, 0.004426212981343269, -0.014217084273695946, 0.010965775698423386, -0.0037759512197226286, -0.01992165297269821, 0.006727991160005331, -0.008024820126593113, 6.246299017220736e-05, 0.01702503301203251, 0.023985788226127625, -0.019655635580420494, -0.020335454493761063, 8.139816054608673e-05, 0.01868024282157421, 0.013485539704561234, 0.004740259610116482, 0.02094138041138649, 0.006650403141975403, -0.006007530726492405, 0.010226842015981674, 0.0030499487183988094, -0.020542357116937637, 0.004363403655588627, 0.00046829922939650714, -0.0034619043581187725, 0.004703313112258911, -0.005194704048335552, 0.003550576278939843, -0.00258442061021924, -0.006295714993029833, -0.002761764684692025, 0.00329379690811038, 0.0074115050956606865, 0.006011225748807192, 0.0221236739307642, 0.01709892600774765, 0.007315443363040686, 0.011793381534516811, -0.007452146150171757, 0.01075887493789196, 0.010662812739610672, -0.0002505446900613606, -0.0023664352484047413, 0.017320604994893074, 0.0221236739307642, -0.0179265309125185, -0.0076036276295781136, 0.0060814241878688335, -0.0005939179682172835, -0.00938445795327425, -0.026660727337002754, -0.01686246693134308, 0.0023257937282323837, 0.01776396669447422, -0.010928829200565815, 0.008579020388424397], "94932e90-bca7-4993-bc81-8c86542dccd1": [-0.01426955871284008, -0.023452216759324074, -0.010261256247758865, 0.019196128472685814, -9.736077481647953e-05, 0.018438193947076797, -0.004726153798401356, 0.01824871078133583, -0.02982177585363388, 0.047604065388441086, 0.0360601507127285, 0.016222696751356125, 0.0008663400658406317, -0.007615775801241398, 0.011478322558104992, 0.027271036058664322, -0.019414762035012245, -0.03693469241261482, 0.023714579641819, -0.020537087693810463, 0.04538856819272041, -0.01995406113564968, -0.04168635234236717, 0.04445572569966316, 0.012024909257888794, 0.0023175280075520277, -0.0011724286014214158, 0.007404428906738758, -0.0018802585545927286, -0.000447517930297181, 0.025521958246827126, 0.01306706853210926, -0.015581367537379265, 0.005939576309174299, -0.011485610157251358, -0.03244539350271225, 0.014116514474153519, 0.010815130546689034, 0.006803183350712061, -0.011828138493001461, -0.012156089767813683, 0.021207567304372787, 0.014218544587492943, -0.04186125844717026, -0.02307325042784214, 0.023175280541181564, -0.0006012454396113753, -0.006606412120163441, 0.014072787947952747, -0.03903358429670334, 0.03789668530225754, 0.0034799359273165464, -0.0030754616018384695, 0.0240789707750082, 0.020843176171183586, -0.03145424649119377, 0.007499170955270529, 0.031191885471343994, 0.006661070976406336, -0.04221107438206673, 0.016922326758503914, -0.02896181121468544, 0.00551688252016902, -0.030200742185115814, 0.04451402649283409, -0.012440315447747707, 0.016149817034602165, -0.014211256057024002, -0.015450186096131802, -0.00418685469776392, -0.004201430361717939, -0.024968083947896957, 0.007444512099027634, -0.002805812284350395, 0.020274726673960686, 0.008366421796381474, 0.032678600400686264, 0.045825835317373276, 0.02244649827480316, 0.0020187271293252707, -0.04579668492078781, 0.011835426092147827, -0.009000462479889393, -0.011682381853461266, 0.07037122547626495, 0.0027438655961304903, -0.06844723969697952, -0.04763321578502655, 0.008738100528717041, -0.03839225694537163, -0.00784898642450571, -0.01775313913822174, 0.02094520628452301, 0.01246217917650938, -0.013322141952812672, 0.01543561089783907, -0.008650646544992924, 0.010064484551548958, 0.00102029531262815, -0.035739488899707794, -0.01804465241730213, 0.0018529292428866029, -0.008388285525143147, 0.00027693729498423636, 0.029632290825247765, -0.00561162456870079, 0.01303062867373228, 0.005826615262776613, -0.06833063811063766, 0.027883214876055717, -0.020886903628706932, -0.03745941445231438, -0.01387601625174284, 0.004653275478631258, -0.030929524451494217, -0.05387159436941147, -0.020289301872253418, 4.671608985518105e-05, -0.013052492402493954, -0.010545480996370316, 0.014211256057024002, 0.0004616380902007222, -0.006282104179263115, -0.0026564118452370167, -0.025813471525907516, 0.016980629414319992, 0.03066716343164444, 0.03559373319149017, 0.04818709194660187, -0.015858303755521774, -0.016557935625314713, -0.0007779751904308796, 0.02235904335975647, 0.045242808759212494, -0.017155537381768227, 0.009714669547975063, 0.0022555815521627665, 0.014531920664012432, -0.004973939619958401, 0.016499632969498634, -0.04871181398630142, 0.01674741879105568, 0.005706366151571274, -0.013686533086001873, 0.030259044840931892, -0.0333782322704792, -0.03952915593981743, 0.04862435907125473, 0.03189151734113693, 0.025871774181723595, -0.08407233655452728, -0.03381550312042236, -0.03944170102477074, 0.011194097809493542, 0.018627677112817764, -0.03022989258170128, -0.02050793543457985, 0.014174817129969597, 0.02030387707054615, -0.00042041632696054876, 0.025026386603713036, -0.037867531180381775, 0.026221590116620064, 0.03130849078297615, 0.030550558120012283, -0.006216513924300671, 0.05757380649447441, 0.01335129328072071, -0.051364582031965256, 0.017549078911542892, 0.031221037730574608, 0.0033742624800652266, 0.0049156369641423225, -0.01703893207013607, -0.03273690491914749, -0.011077492497861385, -0.017505353316664696, 0.006599124521017075, 0.029850926250219345, -0.012921311892569065, -0.030638011172413826, 0.0008112259092740715, -0.03343653678894043, 0.02235904335975647, 0.06296680122613907, 0.029719745740294456, 0.024239301681518555, 0.02718358300626278, -0.0042342254891991615, -0.0031282983254641294, 0.044339120388031006, -0.007145711220800877, 0.020988931879401207, 0.02015812136232853, -0.001053090556524694, 0.005870342254638672, 0.0413365364074707, -0.022052954882383347, -0.0163247250020504, 0.041569747030735016, 0.0010120965307578444, -0.029428232461214066, -0.0401996374130249, 0.036672331392765045, -0.03180406242609024, 0.008956735953688622, 0.0007087408448569477, 0.004412777256220579, 0.02327730879187584, -0.03320332616567612, 0.014735979959368706, -0.031133582815527916, -0.0041722790338099, -0.01654336042702198, 0.018627677112817764, -0.0017745851073414087, 0.012870296835899353, 0.015362733043730259, 0.011390868574380875, -0.03483579680323601, -6.052309981896542e-05, 0.004675139207392931, 0.01306706853210926, -0.027650004252791405, -0.03180406242609024, 0.01562509499490261, -0.01717011258006096, 0.012680813670158386, -0.02314612828195095, -0.009561625309288502, 0.02648395113646984, -0.0008540418348275125, -0.004726153798401356, -0.0058666979894042015, -0.0020387687254697084, 0.03888782858848572, 0.05751550570130348, -0.0070910523645579815, 0.02193634957075119, 0.011237824335694313, -0.00448929937556386, 0.0026910288725048304, 0.01667454093694687, 0.002527053002268076, 0.021120114251971245, 0.006223801523447037, -0.02569686621427536, 0.04279410094022751, -0.00654810993000865, 0.01569797284901142, 0.02455996721982956, -0.01530443038791418, 0.03856716305017471, 0.007204013876616955, -0.043260522186756134, 0.03795498609542847, 0.01550848875194788, -0.009678229689598083, -0.022461073473095894, -0.0057573807425796986, 0.004514806903898716, 0.05451292172074318, 0.003895341884344816, 0.029209597036242485, 0.05133543163537979, -0.015989486128091812, 0.024385059252381325, -0.03941255062818527, 0.01111393142491579, 0.017855169251561165, 0.020974356681108475, -0.004055674187839031, 0.007222233340144157, 0.0036712412256747484, 0.005152491386979818, 0.0013746657641604543, -0.03241623938083649, -0.02611956000328064, 0.0356520339846611, 0.02461826801300049, 0.0019895758014172316, -0.021455353125929832, 0.04244428500533104, -0.003379728412255645, 0.021630261093378067, 0.0008344558300450444, -0.03655572608113289, -0.0478372760117054, -0.052647240459918976, -0.029850926250219345, 0.012965038418769836, -0.010939023457467556, -0.0007574781775474548, 0.012644374743103981, 0.024180999025702477, 0.00012412075011525303, -0.028859782963991165, -0.019196128472685814, 0.01429871004074812, 0.02606125734746456, -0.005451292265206575, 0.00813321117311716, 0.002419557422399521, -0.01437887642532587, 0.02250480093061924, -0.021265869960188866, 0.005604336503893137, -0.012469466775655746, 0.0008727168897166848, 0.02278173714876175, -0.005363838281482458, -0.03629336133599281, -0.008497602306306362, -0.006996310781687498, 0.022810889407992363, -0.0015258881030604243, -0.005688146688044071, 0.013511625118553638, -0.017519928514957428, -0.01440802775323391, -0.004150415770709515, 0.01448819413781166, -0.04748746007680893, 0.023262733593583107, 0.03745941445231438, -0.08873654156923294, -0.01093173585832119, -0.02001236379146576, -0.00040811812505126, -0.004157703369855881, -0.006395065225660801, -0.013300278224050999, -0.03130849078297615, 0.014757843688130379, -0.02767915464937687, -0.007644927129149437, -0.04996532201766968, -0.0383339524269104, -0.01945848949253559, -0.03996642678976059, 0.0006426949403248727, -0.01937103644013405, 0.02670258656144142, -0.008964023552834988, 0.014495481736958027, 0.009816698729991913, 0.007444512099027634, 0.007025462109595537, -0.025857198983430862, 0.018788009881973267, 0.0009209987474605441, 0.004536670166999102, 0.011266975663602352, -0.013176385313272476, 0.014276847243309021, -0.012972326017916203, 0.002980720018967986, 0.03130849078297615, 0.01929815672338009, -0.005163423251360655, -0.004150415770709515, -0.021776016801595688, -0.02044963277876377, -0.003950000740587711, -0.0072550284676253796, -0.0028896222356706858, -2.2817152057541534e-05, 0.0010567344725131989, -0.017490778118371964, 0.0057573807425796986, -0.020216424018144608, 0.022169560194015503, 0.001434790319763124, 0.026236165314912796, -0.015552216209471226, -0.02549280785024166, 0.004766236990690231, -0.010552768595516682, -0.026717161759734154, 0.027591701596975327, -0.0025744237937033176, 0.002437777118757367, 0.026819191873073578, 0.031191885471343994, 0.0036584874615073204, 0.011412732303142548, -0.004813607782125473, -0.050781555473804474, -0.009445019997656345, -0.0008736278978176415, -0.009838562458753586, 0.022169560194015503, -0.02136790007352829, -0.004631412215530872, 0.005367482081055641, 0.0038880540523678064, 0.03556457906961441, 0.007965591736137867, -4.139256270718761e-05, -0.04072435945272446, 0.04748746007680893, -0.009226384572684765, -0.03189151734113693, -0.022694284096360207, 0.008074908517301083, -0.0345151349902153, 0.02221328765153885, -0.009357566013932228, 0.04658377170562744, 0.015071219764649868, 0.02377288043498993, 0.007229521404951811, -0.0049338568933308125, 0.01316909771412611, 0.026309043169021606, 0.010173802264034748, -0.00745544396340847, 0.03154170140624046, -0.04387269914150238, 0.005086901132017374, 0.02017269656062126, 0.04168635234236717, -0.024793175980448723, -6.507799116661772e-05, 0.006857842206954956, 0.022038379684090614, 0.02590092644095421, -0.0028768684715032578, 0.013161810114979744, -0.010778691619634628, -0.006719373632222414, 0.025011811405420303, -0.008687086403369904, 0.015158673748373985, -0.024516239762306213, -0.014357012696564198, -0.01654336042702198, 0.02421015128493309, 0.009751108475029469, -0.010960887186229229, -0.030404800549149513, 0.017767714336514473, 0.025959229096770287, -0.009554336778819561, -0.03081291913986206, -0.009772972203791142, -0.023904062807559967, 0.018846312537789345, 0.014080075547099113, -0.013139946386218071, 0.013956182636320591, 0.02193634957075119, -0.03279520571231842, -0.0004887396935373545, 0.04337712749838829, -0.02278173714876175, 0.0015750809106975794, -0.008985886350274086, -0.0005752826109528542, -0.0417446531355381, -0.009539761580526829, -0.03556457906961441, 0.030200742185115814, 0.0009100669994950294, -0.005957795772701502, -0.005068681668490171, 0.014160241931676865, 0.03530221804976463, 0.007229521404951811, -0.00551688252016902, 0.014211256057024002, -0.005673571024090052, -0.020828600972890854, 0.014080075547099113, 0.008956735953688622, -0.04559262469410896, -0.005247232969850302, 0.007342482451349497, -0.011624079197645187, -0.01846734620630741, 0.026585981249809265, -0.02109096199274063, 0.00076339952647686, 0.04095757007598877, -0.01249133050441742, 0.013999909162521362, -0.0006294857594184577, -0.03180406242609024, -0.023612549528479576, 0.035943545401096344, 0.018350740894675255, -0.0037933122366666794, 0.005735517479479313, -0.003102791029959917, 0.008832842111587524, 0.003523662919178605, 0.01498376578092575, -0.011871865019202232, 0.03060886077582836, -0.03393210843205452, 0.020741146057844162, -0.051860153675079346, 0.008366421796381474, -0.007440868299454451, -0.010953599587082863, 0.04025793820619583, -0.0012826570309698582, 0.0015705260448157787, -0.019968638196587563, 0.011194097809493542, -0.03235793858766556, 0.03696384280920029, -0.02384576015174389, 0.01121596060693264, 0.03291181102395058, -0.0019494928419589996, -0.002625438617542386, -0.03859631344676018, 0.01274640392512083, -0.009168082848191261, 0.011478322558104992, -0.020289301872253418, -0.018685979768633842, -0.0003156538587063551, -0.021397050470113754, -0.023248158395290375, -0.007943728007376194, -0.019079523161053658, 0.00458039715886116, -0.00341616733931005, -0.036380816251039505, 0.030113287270069122, -0.0035491702146828175, 0.0031374080572277308, 0.033115871250629425, -0.017928047105669975, -0.011310702189803123, 0.027518821880221367, 0.00498851528391242, -0.012185241095721722, -0.004288884345442057, 0.043697793036699295, -0.021878046914935112, -0.00765221519395709, -0.01008634828031063, 0.02370000258088112, -0.015231551602482796, -0.007131135556846857, 0.012658949941396713, -0.007958303205668926, -0.032183028757572174, 0.03229963406920433, -0.016280997544527054, -0.01369382068514824, 0.015537640079855919, -0.016441330313682556, 0.024866055697202682, -0.018073802813887596, 0.025580260902643204, -0.02982177585363388, -0.01683487370610237, 0.012578783556818962, 0.011369004845619202, 0.009700093418359756, 0.006249309051781893, 0.00972195714712143, -0.028626572340726852, -0.008934872224926949, -0.013016053475439548, 0.015187825076282024, 0.02804354578256607, 0.009700093418359756, 0.017126385122537613, -0.00837370939552784, -0.04707934334874153, 0.034398529678583145, -0.0047006462700665, -0.03804244101047516, -0.02810184843838215, 0.0016470481641590595, -0.00076339952647686, -0.006672002840787172, -0.005232657305896282, -0.015581367537379265, -0.0006631919532082975, -0.015391884371638298, -0.002375830663368106, -0.026600556448101997, -0.01111393142491579, 0.003510909155011177, -0.012826570309698582, 0.015464762225747108, -0.011981182731688023, 0.0146995410323143, -0.009576200507581234, 0.005363838281482458, 0.013599079102277756, -0.0066829342395067215, 0.03990812227129936, 0.010151938535273075, 0.05570812523365021, 0.03206642344594002, 0.015668820589780807, -0.0021936348639428616, -0.03734280914068222, 0.03194981813430786, 0.01501291710883379, -0.0013509803684428334, 0.0337863527238369, 0.016368452459573746, 0.02300037257373333, -0.014218544587492943, 0.019429339095950127, -0.009219096973538399, 0.04194871336221695, 0.05019852891564369, 0.03285351023077965, 0.04264834523200989, 0.03209557756781578, -0.02393321320414543, 0.01008634828031063, -0.012294558808207512, 0.021207567304372787, -0.003913561347872019, -0.005640775430947542, 0.02718358300626278, -0.002927883295342326, -0.0075210342183709145, 0.004952076356858015, 0.025813471525907516, 0.013752123340964317, -0.008745389059185982, 0.007921864278614521, -0.02668801136314869, 0.027139855548739433, -0.017869744449853897, 0.011507473886013031, 0.013679245486855507, -0.022840039804577827, 0.026236165314912796, -0.03060886077582836, -0.02613413706421852, 0.01348976232111454, 0.041074175387620926, -0.01409465167671442, -0.004853690508753061, -0.03498155623674393, 0.021455353125929832, 0.011602215468883514, -0.004048386123031378, -0.003950000740587711, -0.008337270468473434, -0.026935797184705734, 0.03436937555670738, 0.0012434849049896002, -0.03527306765317917, 0.0025616700295358896, 0.024472512304782867, 0.010917159728705883, -0.009685518220067024, 0.022242438048124313, 0.00031907003722153604, 0.04594244062900543, 0.007222233340144157, 0.015668820589780807, 0.014189393259584904, -0.025959229096770287, 0.02171771414577961, 0.002820387715473771, 0.02633819542825222, -0.0019731782376766205, 0.002016905229538679, -0.013730260543525219, 0.026294467970728874, 0.011274263262748718, 0.0006408729823306203, -0.012294558808207512, 0.019983213394880295, 0.02384576015174389, 0.011879152618348598, -0.022388195618987083, -0.0195313673466444, -0.05827343836426735, 0.010436163283884525, -0.015814578160643578, -0.009882288984954357, -0.009394004940986633, -0.018219560384750366, -0.01887546293437481, 0.0006973536219447851, -0.0014921819092705846, 0.047312553972005844, -0.02421015128493309, -0.0024341330863535404, 0.011522049084305763, 0.02052251249551773, -0.02059539034962654, -0.009780259802937508, -0.015158673748373985, -0.01788431964814663, -0.037663474678993225, -0.01125240046530962, -0.013905167579650879, -0.00356738967821002, 0.008155074901878834, 0.018802585080266, -0.01967712491750717, -0.04847860336303711, -0.01263708621263504, 0.0013518913183361292, 0.038800373673439026, 0.011172234080731869, -0.006260240450501442, -0.005006734747439623, 0.015741700306534767, 0.011922880075871944, -0.012207104824483395, 0.032183028757572174, 0.010917159728705883, 0.0108224181458354, 0.03343653678894043, 0.023831183090806007, -0.018977493047714233, -0.02285461500287056, -0.04323137179017067, 0.059672702103853226, 0.008351845666766167, -0.019997788593173027, -0.02571144327521324, -0.004088469315320253, 0.019983213394880295, -0.01238201279193163, 0.02633819542825222, 0.007101984228938818, 0.010013469494879246, -0.029996683821082115, -0.013526201248168945, 0.013147233985364437, 0.00845387578010559, -0.0097656836733222, 0.002783948788419366, -0.03812989592552185, 0.005833902861922979, -0.009364853613078594, -0.011135795153677464, -0.0012589715188369155, -0.021426202729344368, 0.019895758479833603, -0.02760627679526806, -0.013118082657456398, 0.02059539034962654, -0.01973542757332325, 0.03434022516012192, 0.0008053045603446662, -2.808374301821459e-05, 0.005600692704319954, -0.009394004940986633, 0.0010476246243342757, -0.0003639357164502144, 0.06098451092839241, -0.0011633188696578145, -0.005702722351998091, -0.00044888441334478557, -0.0444265753030777, 0.024093545973300934, -0.018204983323812485, -0.0017390570137649775, 0.053201112896203995, 0.033057570457458496, 0.01817583292722702, 0.019400186836719513, 0.03547712787985802, 0.005556965712457895, 0.04116163030266762, -0.04498044773936272, -0.023554246872663498, -0.006788607686758041, 0.00592500064522028, 0.00387712218798697, -0.014561071991920471, -0.01929815672338009, -0.04261919483542442, 0.06139262765645981, -0.010151938535273075, 0.02059539034962654, -0.03343653678894043, 0.03859631344676018, 0.021280445158481598, -0.0034562505315989256, -0.01881716027855873, 0.006912501063197851, -0.004485655575990677, 0.016805721446871758, 0.01617896929383278, -0.013795850798487663, -0.0052107940427958965, -0.004995803348720074, -0.01845276914536953, -0.014969190582633018, -0.006715729832649231, 0.01305978000164032, -0.015712548047304153, 0.04398930445313454, 0.01324197556823492, 0.015056643635034561, 0.015668820589780807, -0.0006609145202673972, -0.016718268394470215, -0.003964575938880444, 0.028480814769864082, -0.007262316532433033, 0.013752123340964317, -0.01135442964732647, 0.015858303755521774, -0.005068681668490171, -0.021878046914935112, 0.02520129457116127, 0.0073607019148766994, 0.008672510273754597, -0.005473155528306961, -0.022665131837129593, -0.030638011172413826, 0.031978972256183624, -0.015391884371638298, -0.01000618189573288, 0.015800002962350845, 0.0019458489259704947, 0.00275844126008451, 0.0012152446433901787, 0.009015037678182125, -0.0035163750872015953, -0.03512731194496155, -0.02072657085955143, 0.061450932174921036, 0.004113976377993822, 0.022606829181313515, -0.009182658046483994, -0.007528321817517281, -0.054483771324157715, 0.010968174785375595, -0.015843728557229042, -0.03614760562777519, 0.004467436112463474, 0.0037823806051164865, 0.01225083228200674, 0.047604065388441086, -0.005808395799249411, 0.01369382068514824, 0.016980629414319992, 0.034398529678583145, 0.01867140457034111, -0.026571406051516533, 0.0005147025804035366, -0.00026395588065497577, -0.020566238090395927, -0.001616074936464429, -0.017082659527659416, 0.004460148047655821, 0.003543704282492399, -0.00714935502037406, 0.004212362226098776, 0.021921774372458458, -0.034952402114868164, -0.013497049920260906, -0.010472603142261505, -0.030346497893333435, 0.01562509499490261, -0.0023940501268953085, 0.010181089863181114, -0.02703782729804516, -0.005706366151571274, -0.0015113124391064048, 0.03984982147812843, -0.007688654121011496, -0.003192066913470626, -0.02492435835301876, 0.018409043550491333, -0.0004222382849548012, -0.0398789718747139, -0.0021316884085536003, 0.040986720472574234, -0.022038379684090614, -0.00887656956911087, -0.010108212009072304, -0.04605904594063759, -0.0020059735979884863, 0.007674078457057476, 0.010975462384521961, -0.0013773987302556634, 0.009525185450911522, 0.001283567980863154, -0.02646937593817711, 0.015289854258298874, 0.01391245611011982, -0.02093062922358513, 0.001645226264372468, 0.031483400613069534, -0.021455353125929832, -0.0159603338688612, 0.03562288358807564, -0.003319603856652975, -0.020609965547919273, -0.04066605865955353, -0.01945848949253559, 0.07713432610034943, -0.023248158395290375, 0.02059539034962654, -0.006369558162987232, -0.007484595291316509, -4.04246493417304e-05, 0.015187825076282024, -0.003662131493911147, 0.013431459665298462, -0.007058257237076759, 0.0210763867944479, 0.0276937298476696, -0.01100461371243, -0.005564253311604261, 0.00539663340896368, -0.01760738156735897, 0.02477860078215599, 0.019633397459983826, -0.0009847672190517187, 0.0070910523645579815, 0.005546033848077059, -0.00969280581921339, -0.012593359686434269, -0.0077979713678359985, 0.001589656574651599, 0.0020096173975616693, -0.0037459414452314377, -0.011135795153677464, 0.01540645956993103, -0.005152491386979818, 0.035098157823085785, -0.009022326208651066, -0.022912917658686638, 0.0035036213230341673, -0.04154059663414955, 0.00937214121222496, 0.005232657305896282, -0.01832158863544464, 0.015391884371638298, -0.020187271758913994, 0.011922880075871944, -0.017374172806739807, 0.004624124150723219, 0.0421527735888958, -0.0485660582780838, -0.03291181102395058, 0.019852032884955406, 0.027431368827819824, -0.0021735935006290674, 0.006566329393535852, 0.02767915464937687, 0.02300037257373333, -0.009911440312862396, 0.01050904206931591, 0.009758396074175835, -0.010159226134419441, -0.00019255797087680548, -0.0043945577926933765, 0.020624540746212006, 0.01225083228200674, -0.008993174880743027, -0.00858505629003048, -0.0021298665087670088, 0.018190408125519753, -0.029544837772846222, -0.014896311797201633, -0.0043945577926933765, -0.033261626958847046, -0.014262271113693714, -0.030579708516597748, -0.028655722737312317, -0.009240960702300072, -0.0006504383054561913, -0.03329078108072281, 0.00030062271980568767, 0.015319005586206913, 0.003201176645234227, -0.006668358575552702, 0.0060233864933252335, -0.027650004252791405, 0.0053419750183820724, -0.010319558903574944, -0.036730632185935974, -0.0019440270261839032, -0.00270560453645885, 0.010020758025348186, -0.010246680118143559, -0.028378786519169807, -0.014072787947952747, 0.00371861201710999, 0.0003026724443770945, 0.00067457917612046, 0.021703138947486877, -0.01966254785656929, 0.003323247656226158, -0.04430996999144554, 0.02811642363667488, -0.013526201248168945, -0.04949890077114105, 0.009488746523857117, 0.023597974330186844, 0.02833505906164646, 0.005669926758855581, -0.02158653363585472, -0.013103507459163666, -0.001747255795635283, -0.03827565163373947, -0.010355997830629349, -0.013037917204201221, -0.004190498497337103, 0.010042620822787285, 0.025638563558459282, 0.025871774181723595, -0.02662970870733261, 0.04996532201766968, 0.023802032694220543, 0.00031109899282455444, -0.016805721446871758, -0.023656276986002922, 0.0075210342183709145, -0.0003017614653799683, 0.00848302710801363, -0.011704244650900364, -0.023102400824427605, -0.002029658993706107, 0.0021772373002022505, -0.000625386368483305, -0.030987827107310295, -0.0032467255368828773, -0.02719815820455551, 0.019764577969908714, -0.0035455261822789907, -0.011842713691294193, -0.06296680122613907, -0.008184226229786873, 0.008614207617938519, 0.027810335159301758, 0.005028598476201296, -0.03031734749674797, 0.004052029922604561, 0.019254431128501892, 0.027241885662078857, -0.0029825419187545776, -0.005429428536444902, -0.018219560384750366, 0.011704244650900364, 0.011463746428489685, -0.004077537450939417, 0.027358490973711014, 0.006464299745857716, -0.019152401015162468, 0.0163247250020504, -0.004984871484339237, -0.011915591545403004, -0.008920296095311642, -0.00114509928971529, 0.006012454628944397, -0.022388195618987083, 0.03783838078379631, -0.01759280636906624, -0.0008043935522437096, -0.006668358575552702, -0.03110443241894245, -0.0189629178494215, -0.0004709756176453084, -0.005433072801679373, -0.010465314611792564, -0.011587640270590782, -0.011616791598498821, 0.00214626407250762, -0.01738874800503254, -0.008432012051343918, 0.03189151734113693, 0.016383027657866478, -0.01795719750225544, -0.0293990820646286, -0.0007688654004596174, 0.012148802168667316, 0.0014803392114117742, -0.027883214876055717, -0.05174354836344719, 0.013599079102277756, 0.007342482451349497, 0.013176385313272476, -0.006147279404103756, -0.005553321912884712, -0.007914576679468155, -0.0040811812505126, -0.00264547998085618, 0.005844834726303816, -0.022665131837129593, 0.0299675315618515, 0.010771404020488262, 0.04017048329114914, 0.0013154521584510803, 0.009758396074175835, -0.012870296835899353, 0.005316467490047216, 0.016528785228729248, 0.028626572340726852, 0.048099637031555176, 0.03384465351700783, -0.02193634957075119, 0.027285613119602203, -0.0013364047044888139, -0.0031519837211817503, 0.013424171134829521, 0.036235060542821884, -0.0022391839884221554, 0.02738764137029648, -0.0017545436276122928, 0.024457937106490135, 0.004460148047655821, -0.018219560384750366, 0.005761024542152882, 0.009430443868041039, 0.020201846957206726, -0.03282435983419418, -0.02611956000328064, 0.001487627043388784, -0.009736532345414162, -0.005269096698611975, 0.005994235165417194, 0.031279340386390686, -0.015144097618758678, 0.0008180582080967724, 0.019108673557639122, -0.009029613807797432, 0.011915591545403004, 0.0040994007140398026, -0.0068651302717626095, -0.019793730229139328, -0.026425648480653763, -0.024049818515777588, -0.017855169251561165, 0.004307103808969259, -0.005881273653358221, -0.010122787207365036, -0.024661995470523834, -0.03512731194496155, -0.0008499424438923597, -0.006067113485187292, -0.009867713786661625, -0.005877629853785038, -0.031512551009655, -0.025215869769454002, 0.013825002126395702, -0.021061811596155167, -0.010210241191089153, 0.011099355295300484, -2.253247112093959e-05, 0.030492255464196205, -0.00027557084104046226, -0.021878046914935112, 0.03847970813512802, 0.026950372382998466, -0.04017048329114914, 0.00025689578615128994, -0.0004491121508181095, -0.031279340386390686, 0.022971220314502716, 0.007313331123441458, 0.03436937555670738, -0.02868487499654293, -0.021455353125929832, 0.002519765170291066, -0.020551662892103195, 0.0071129160933196545, 0.03314502164721489, -0.002293842611834407, -0.0163247250020504, 0.030900372192263603, -0.02136790007352829, -0.015187825076282024, -0.017417898401618004, -0.028451664373278618, 0.005669926758855581, -0.012921311892569065, 0.005855766590684652, -0.012105075642466545, -0.025449080392718315, 0.005640775430947542, -0.033902958035469055, -0.020245574414730072, -0.00429252814501524, 0.01689317636191845, 0.008534042164683342, -0.01540645956993103, -0.039004433900117874, -0.011077492497861385, -0.008125923573970795, 0.006373201962560415, -0.00808948464691639, -0.03696384280920029, 0.0015513955149799585, 0.036322515457868576, -0.017228415235877037, 0.000424515746999532, -0.005250877235084772, -0.004288884345442057, 0.000760211143642664, -0.004598616622388363, -0.003057242138311267, -0.012731827795505524, 0.000977479387074709, -0.02818930335342884, -0.008679797872900963, -0.0022592253517359495, -0.019691700115799904, -0.006209225859493017, -0.0016579799121245742, 0.02001236379146576, 0.012578783556818962, -0.0269649475812912, -0.011580351740121841, 0.01881716027855873, 0.00028673032647930086, 0.008577768690884113, 0.01808837801218033, -0.0072477408684790134, 0.0030936812981963158, -0.028349634259939194, -0.00552052678540349, 0.00755747314542532, 0.010997326113283634, 8.363916276721284e-05, -0.018685979768633842, -0.0021262227091938257, -0.010100923478603363, 0.02762085199356079, 0.020566238090395927, -0.02498266100883484, 0.0021571959368884563, 0.007397141307592392, -0.010151938535273075, -0.009831273928284645, 0.04075350984930992, -0.0022063886281102896, -0.02109096199274063, -0.02719815820455551, 0.007892712950706482, 0.01782601699233055, -0.016076939180493355, 0.012811994180083275, 0.0027383998967707157, 0.012914024293422699, 0.0064570121467113495, 0.011128506623208523, -0.013628230430185795, 0.004296171944588423, -0.01803007535636425, -0.007189438212662935, -0.015741700306534767, 0.012476754374802113, 0.008745389059185982, -0.01072038896381855, 0.005527814384549856, 0.030259044840931892, 0.04183210805058479, 0.008497602306306362, -0.033961258828639984, -0.01032684650272131, 0.028728602454066277, 0.01577085070312023, -0.002774838823825121, -0.011383580975234509, -0.035885244607925415, 0.0018583950586616993, 0.023670852184295654, 0.010151938535273075, -0.03066716343164444, 0.04084096476435661, -0.009022326208651066, -0.026454800739884377, 0.0026400142814964056, 0.002490613842383027, -0.004077537450939417, 0.024793175980448723, 0.03804244101047516, -0.027577124536037445, -0.019852032884955406, -0.011048341169953346, 0.008213377557694912, 0.012360149063169956, 0.002346679335460067, 0.02002693898975849, 0.014189393259584904, 0.0029661443550139666, 0.003523662919178605, 0.015464762225747108, -0.021557383239269257, 0.03157085180282593, -0.032970115542411804, -0.0296031404286623, 0.0068177590146660805, -0.004092113114893436, -0.0410158708691597, 0.017272142693400383, -0.008985886350274086, 0.002497901674360037, -0.0036129385698586702, 0.012294558808207512, -0.005742805078625679, -0.02193634957075119, -0.011383580975234509, -0.010064484551548958, 0.03556457906961441, -0.0033742624800652266, 0.0030116932466626167, 0.005629844032227993, -0.005648063495755196, 0.0064096408896148205, -0.04594244062900543, 0.010458027012646198, -0.0008727168897166848, -0.021528230980038643, 0.0032977403607219458, -0.014750555157661438, -0.021834319457411766, -0.0038479710929095745, 0.006475231610238552, 0.014677677303552628, -0.00377144874073565, -0.005903137382119894, 0.008832842111587524, -0.003069995902478695, -0.010640222579240799, 0.035447973757982254, 0.0005210794042795897, 0.01887546293437481, 0.010166514664888382, 0.010552768595516682, 0.01163865439593792, 0.03547712787985802, 0.0010785979684442282, -0.007790683768689632, 0.007528321817517281, 0.004860978573560715, -0.0002587177441455424, -0.0031246545258909464, -0.0030025835148990154, 0.012236256152391434, 0.0035364164505153894, -0.0132784154266119, 0.010596496053040028, -0.014998341910541058, -0.013249264098703861, 0.008716237731277943, -0.0018483743770048022, -0.004992159549146891, -0.006154567003250122, -0.0012699032668024302, -0.01266623754054308, 0.0006950761890038848, 0.019269006326794624, 0.0038916978519409895, 0.01759280636906624, -0.024224726483225822, -0.008526753634214401, -0.0022829107474535704, -0.001237108139321208, -0.0012544166529551148, -0.015727123245596886, -0.025594837963581085, 0.03046310320496559, 0.012374725192785263, 0.031687457114458084, 0.011449171230196953, 0.008439299650490284, 0.02257767878472805, -0.0023576109670102596, -0.019604245200753212, 0.0008977688266895711, 0.00352184078656137, 0.03649742156267166, -0.0066792904399335384, 0.013599079102277756, 0.019779153168201447, 0.002372186630964279, -0.00601974269375205, -0.011420019902288914, 0.02085775136947632, -0.02413727343082428, 0.007338838651776314, -0.001299965544603765, 0.008402860723435879, 0.0022555815521627665, 0.020711995661258698, 0.031512551009655, 0.0014475439675152302, 0.0005206239293329418, -0.015246127732098103, -0.014495481736958027, -0.03629336133599281, 0.01597490906715393, -0.010224816389381886, 0.029428232461214066, -0.009649078361690044, 0.00755747314542532, 0.015931183472275734, -0.01944391429424286, 0.0034762918949127197, -0.01810295507311821, 0.006172786932438612, 0.0049375006929039955, -0.01543561089783907, 0.00830083154141903, -0.01351891364902258, 0.01171882078051567, -0.01501291710883379, 0.0050723254680633545, 0.000881826679687947, -0.008329982869327068, 0.008818266913294792, -0.0020606322214007378, -0.015100371092557907, -0.021746866405010223, -0.019269006326794624, -0.02973432093858719, -1.4091690900386311e-05, 0.006234733387827873, 0.01079326681792736, 0.003232149872928858, -0.003928137011826038, -0.01674741879105568, 0.004401845391839743, 0.017519928514957428, 0.009204521775245667, -0.016703691333532333, 0.009787547402083874, 0.008191513828933239, -0.02483690343797207, -0.020770298317074776, -0.011944742873311043, -0.007214945740997791, -0.006263884715735912, 0.03022989258170128, -0.02534705214202404, 0.03530221804976463, 0.016718268394470215, 0.019414762035012245, -0.004325323272496462, -0.013504337519407272, -0.012797418981790543, -0.006675646640360355, 0.011492897756397724, -0.018788009881973267, -0.009022326208651066, -0.0050978329963982105, 0.00015702983364462852, 0.021848896518349648, 0.002938814926892519, -0.007007242646068335, 0.001533175935037434, -0.01717011258006096, -0.0017272141994908452, -0.024093545973300934, -0.010647510178387165, 0.014327861368656158, -0.00948145892471075, -0.010953599587082863, -0.0004942055675201118, -0.024166423827409744, 0.0017718521412461996, 0.02329188585281372, -0.0038625465240329504, 0.010851569473743439, 0.027358490973711014, -0.022096682339906693, 0.0053711263462901115, 0.010501754470169544, 0.007171218749135733, -0.009306550957262516, -0.03329078108072281, 0.012600647285580635, 0.007528321817517281, -0.001565971178933978, 0.007943728007376194, -0.008220665156841278, -0.0022993083111941814, -0.016368452459573746, 0.0010321380104869604, 0.047516610473394394, 0.021251294761896133, -0.0005424873670563102, -0.003678529057651758, -0.021980077028274536, 0.0008932139026001096, 0.019618822261691093, -0.0009875001851469278, -0.0011824493994936347, -0.018583951517939568, 0.0195313673466444, 0.013722972013056278, -0.0028094560839235783, 0.00582297146320343, 0.010866145603358746, 0.0023867622949182987, 0.026425648480653763, -0.00827168021351099, -0.027562549337744713, -0.018831737339496613, -0.0013473364524543285, 0.009955167770385742, -0.01690775156021118, 3.3022952266037464e-05, 0.02094520628452301, -0.02036217972636223, -0.025288749486207962, 0.010953599587082863, 0.039004433900117874, 1.9030900148209184e-05, -0.03142509609460831, -0.008512178435921669, -0.030900372192263603, -0.013234687969088554, 0.0025343408342450857, 0.000115181777800899, -0.00018276495393365622, 0.019618822261691093, -0.006099908612668514, -0.00165889086201787, 0.02590092644095421, 0.0166891161352396, 0.028655722737312317, -0.0016953300219029188, 0.012105075642466545, 0.01674741879105568, 0.013737548142671585, -0.0005074147484265268, -0.014838009141385555, 0.013628230430185795, 0.025361627340316772, 0.0017445228295400739, -1.8760452803689986e-05, -0.013001477345824242, 0.02023099921643734, -0.00876725185662508, -0.01568339765071869, 0.0006978091550990939, 0.03740111365914345, 0.004449216648936272, -0.00321210827678442, -0.005487731192260981, 0.003866190556436777, 0.01804465241730213, 0.019327308982610703, 0.017971772700548172, 0.006974447518587112, -0.008118635974824429, -0.015610518865287304, -0.02200922742486, -0.0010585563722997904, 0.008643358945846558, -0.01550848875194788, -0.0006572706042788923, -0.004212362226098776, 0.021484505385160446, -0.009131642989814281, -0.0005160690052434802, 0.0003787390887737274, -0.04585498571395874, -0.006537178065627813, 0.003283164696767926, -0.006314899306744337, 0.010479890741407871, 0.00894944742321968, 0.008614207617938519, -0.007892712950706482, 0.013358580879867077, -0.00023981495178304613, -0.01466310117393732, 0.00315927155315876, -0.009146219119429588, 0.0025580262299627066, -0.01195931900292635, 0.0035692118108272552, -0.001257149619050324, 0.0576612614095211, 0.014182104729115963, -0.005578828975558281, 0.017928047105669975, 0.009845850057899952, 0.014393451623618603, -0.006876061670482159, -0.0020405906252563, 0.0031483399216085672, -0.0013418705202639103, 0.0018410865450277925, -0.003576499642804265, -0.010465314611792564, -0.008570481091737747, -0.016922326758503914, 0.012447603046894073, 0.009226384572684765, -0.0013245620066300035, -0.005331043154001236, 0.008198801428079605, 0.019400186836719513, 0.02377288043498993, -0.029573990032076836, 0.025434505194425583, 0.01143459603190422, -0.004737085662782192, -0.00019825158233288676, -0.0028841563034802675, 0.02065369300544262, 0.02085775136947632, -0.014626662246882915, -0.01042887568473816, 0.0023576109670102596, -0.0028969100676476955, 0.009051477536559105, 0.006664714775979519, -0.02109096199274063, 0.008985886350274086, -0.007448155898600817, 0.034952402114868164, -0.008169650100171566, -0.018788009881973267, 0.03320332616567612, -0.00519986217841506, -0.024793175980448723, -0.0009392182691954076, 0.01604778878390789, -0.005374770145863295, -0.0058630541898310184, -0.02256310172379017, -0.01569797284901142, -0.014437179081141949, -0.004620480351150036, 0.01050904206931591, 0.016485057771205902, -0.006959871854633093, -0.002858649007976055, -0.01641217991709709, 0.027999818325042725, -0.02342306636273861, -0.001365556032396853, 0.0037422976456582546, 0.014349725097417831, -0.009634503163397312, -0.006661070976406336, -0.011828138493001461, -0.00743722403421998, 0.014451754279434681, -0.0030299127101898193, -0.0012380190892145038, -0.006591836456209421, 0.01903579570353031, -0.0095834881067276, -0.02066826820373535, -0.015712548047304153, 0.011456458829343319, -0.006005167029798031, 0.02916587144136429, -0.0030827494338154793, 0.010232104919850826, -0.02072657085955143, -0.01356264017522335, 0.004299816209822893, -0.01217066589742899, 0.008927584625780582, 0.0034088795073330402, -0.0022227861918509007, 0.00036552990786731243, 0.003452606499195099, -0.021469928324222565, 0.0005880362587049603, 0.013358580879867077, 0.007623063866049051, 0.01937103644013405, -0.005906781181693077, -0.009561625309288502, -0.012615223415195942, -0.0024013379588723183, 0.020216424018144608, -0.010530905798077583, 0.005873986054211855, 0.02256310172379017, -0.00733155058696866, 0.012476754374802113, 0.006311255507171154, -0.005684502422809601, -0.004576753359287977, -0.00010350987577112392, -0.002718358300626278, 0.0013719327980652452, 0.001339137670584023, -0.0012170665431767702, -0.011062916368246078, 0.014451754279434681, -0.03314502164721489, -0.0027402217965573072, 0.02002693898975849, 0.0012580605689436197, -0.012965038418769836, 0.001059467438608408, -0.004890129901468754, -0.008730812929570675, -0.009758396074175835, -0.003294096328318119, -0.01021752879023552, 0.013978046365082264, -0.016135241836309433, 0.0023976939264684916, 0.007725093048065901, 0.01639760285615921, 0.010727676562964916, -0.009138931520283222, -0.010880720801651478, 0.012826570309698582, -0.00032157523673959076, -0.016280997544527054, -0.014072787947952747, -0.021411625668406487, 0.017578231170773506, -0.0019312732620164752, -0.003387016011402011, 0.02804354578256607, 0.02165941335260868, 0.01766568422317505, -0.012330997735261917, 0.004248801153153181, -0.0028714025393128395, -0.0444265753030777, 0.008286255411803722, 0.005254521034657955, 0.037925835698843, -0.01781144179403782, 0.001787338755093515, -0.020420482382178307, 0.004999447148293257, -0.0032102863769978285, -0.01461937464773655, 0.014539208263158798, -0.010137363336980343, -0.0016078761545941234, -0.002474216278642416, -0.00500309094786644, -0.028728602454066277, -0.019210703670978546, -0.0004359029699116945, -0.008286255411803722, 0.0029424589592963457, 0.02434133179485798, 0.007972879335284233, -0.004926568828523159, -0.024895206093788147, 0.009619927033782005, 0.01111393142491579, -0.013285703025758266, 0.007120203692466021, -0.004598616622388363, 0.003122832626104355, 0.01246217917650938, -0.018846312537789345, 0.012374725192785263, -0.0008882035035640001, -0.0019731782376766205, -0.005385702010244131, 0.0028021682519465685, 0.004762592725455761, 0.008045757189393044, 0.029369929805397987, -0.026644283905625343, -0.003277698764577508, 0.01804465241730213, 0.0018237779149785638, 0.02171771414577961, 0.008031181991100311, -0.0001742245367495343, -0.012316422536969185, 0.005735517479479313, 0.004744373261928558, 0.02442878484725952, 0.006293036043643951, -0.002588999457657337, 0.016980629414319992, 0.016645390540361404, -0.0014830721775069833, 0.030754616484045982, -0.008257104083895683, -0.01738874800503254, -0.011937455274164677, -0.020916054025292397, 0.006763100624084473, -0.00016955577302724123, -0.01931273378431797, -0.028932660818099976, 0.011893728747963905, 0.005655351094901562, -0.01661623828113079, 0.0026345483493059874, 0.010866145603358746, 0.008308119140565395, 0.005560609512031078, -0.01387601625174284, 0.019750002771615982, 0.014429891481995583, 0.012345573864877224, -0.005903137382119894, -0.004718865733593702, 0.005739161279052496, 0.01854022406041622, 0.004850046709179878, -0.0010567344725131989, -0.012841145507991314, 0.028845205903053284, -0.00175727647729218, -0.018569374457001686, 0.002437777118757367, 0.020056091248989105, 0.03160000592470169, 0.009109780192375183, 0.0047006462700665, 0.028801480308175087, -0.009532473981380463, -0.02314612828195095, 0.009532473981380463, -0.010909872129559517, 0.016135241836309433, -0.0013518913183361292, 0.016222696751356125, 0.01945848949253559, -0.007994743064045906, -0.006303967442363501, -2.2874088244861923e-05, 0.005028598476201296, 0.001043069758452475, -0.000980212353169918, 0.022038379684090614, 0.020289301872253418, -0.0058922055177390575, -0.02370000258088112, 0.0019895758014172316, -0.0011396334739401937, -0.0033396452199667692, 0.007593912538141012, 0.0015668821288272738, -0.015071219764649868, 0.007819835096597672, 0.011886440217494965, 0.003505443222820759, -0.03839225694537163, 0.010982750914990902, -0.00675945682451129, -0.005841190926730633, 0.002366720698773861, -0.04224022850394249, 0.01459022331982851, 0.013744835741817951, 0.002425023354589939, 0.0038151757325977087, 0.01074954029172659, -0.021892622113227844, 0.01610609143972397, -0.005152491386979818, -0.0045075188390910625, 0.02571144327521324, -0.005954151973128319, -0.030259044840931892, 0.005859410390257835, -0.01810295507311821, -7.447245297953486e-05, 0.010064484551548958, 0.013387732207775116, -0.0018119352171197534, 0.010676661506295204, -0.011762547306716442, 0.003924493212252855, -0.006172786932438612, -0.015027492307126522, 0.00530917989090085, 0.00213897624053061, 0.004303460009396076, 0.01494003925472498, 0.009211809374392033, 0.005407565273344517, -0.005392989609390497, -0.009831273928284645, -0.017782289534807205, 0.011915591545403004, 0.009736532345414162, 0.009262824431061745, 0.007761532440781593, -0.012826570309698582, 0.021397050470113754, 0.02534705214202404, -0.006599124521017075, -0.005870342254638672, 0.016353877261281013, -0.023889485746622086, 0.0018383535789325833, 0.009853137657046318, 0.0146995410323143, -0.00377144874073565, -0.00876725185662508, 0.013118082657456398, -0.007072832901030779, 0.011740684509277344, 0.004875554237514734, -0.007819835096597672, 0.02767915464937687, 0.006555397529155016, 0.008847418241202831, 0.011871865019202232, -0.032970115542411804, -0.021382475271821022, 0.014714116230607033, -0.011500186286866665, 0.02065369300544262, -0.01676199398934841, 0.017869744449853897, -0.01437887642532587, 0.0004937500925734639, -0.016091514378786087, 0.001457564765587449, -0.0018602170748636127, -0.0006700243102386594, 2.5279638066422194e-05, -0.0025525602977722883, 0.022315315902233124, 0.01824871078133583, 0.02313155308365822, -0.020828600972890854, 0.0018255998147651553, 0.002465106314048171, 0.005010379012674093, -0.004106688778847456, 0.0019258074462413788, -0.004890129901468754, 0.0035418823827058077, -0.0024104476906359196, 0.02967601828277111, 0.013839577324688435, -0.014247695915400982, 0.008198801428079605, -0.0006080777966417372, 0.01674741879105568, -0.005556965712457895, -0.0068396227434277534, 0.02888893336057663, 0.007306043524295092, 0.0021535519044846296, 0.01498376578092575, -0.05323026701807976, 0.018496496602892876, 0.010283119045197964, -0.0030991469975560904, -0.01610609143972397, -0.01645590551197529, -0.009729244746267796, 0.03323247656226158, -0.010159226134419441, -0.004919281229376793, -0.040432848036289215, -0.004194142762571573, 0.02222786284983158, -0.0001839036849560216, -0.010465314611792564, -0.002731112064793706, -0.01788431964814663, -0.0075501855462789536, 0.010137363336980343, -0.002988007850944996, 0.01263708621263504, 0.005990591365844011, 0.0008016606443561614, 0.009102491661906242, 0.0038916978519409895, 0.005684502422809601, -0.00012446237087715417, 0.013373157009482384, -0.013555352576076984, 0.01803007535636425, -0.01938561163842678, -0.0056189121678471565, 0.008388285525143147, 0.013548064045608044, 0.006610056385397911, 0.010909872129559517, 0.015450186096131802, -0.020916054025292397, 0.032766055315732956, 0.015144097618758678, 0.00683597894385457, -0.009590775705873966, 7.942589581944048e-05, 0.018715132027864456, -0.02157195843756199, 0.006092620547860861, 0.022956645116209984, -0.01058191992342472, 0.006070757284760475, 0.00808948464691639, 0.0031993547454476357, 0.0017108166357502341, -0.00047507500858046114, -0.0021499081049114466, 0.014284134842455387, -0.011208673007786274, 0.008716237731277943, 0.018350740894675255, 0.029413657262921333, 0.014459042809903622, -0.011922880075871944, -0.004689714405685663, -0.01610609143972397, 0.0015395528171211481, -0.016004061326384544, 0.03369889780879021, -0.018423618748784065, -0.00765221519395709, 0.02802897058427334, -0.0218051690608263, -0.018073802813887596, 0.0003076828143093735, -0.0017026178538799286, -0.0014721404295414686, 0.014633949846029282, -0.0009528829832561314, 0.0001767297217156738, 0.014225832186639309, 0.006169142667204142, 0.016091514378786087, 0.01132527831941843, -0.011259688064455986, 0.003909917548298836, 0.03600184991955757, -0.0004308925708755851, -0.00011182254820596427, -0.022111257538199425, -0.002636370249092579, -0.025099264457821846, 0.0077688200399279594, 0.01852564886212349, -0.02648395113646984, 0.004179567098617554, 0.0007424470386467874, -0.012156089767813683, 0.009867713786661625, 0.001026672194711864, -0.020493360236287117, 0.03241623938083649, 0.00694165239110589, -0.015537640079855919, 0.0013937962939962745, -0.011733395978808403, 0.015042068436741829, -0.002261047251522541, -0.01103376504033804, 0.0034325651358813047, 0.012709964998066425, 0.012615223415195942, -0.017272142693400383, 0.008964023552834988, 0.010377861559391022, -0.008687086403369904, 0.021280445158481598, -0.015362733043730259, 0.012447603046894073, 0.005487731192260981, -0.0013272949727252126, -0.002689206972718239, -0.0003320514806546271, 0.013416883535683155, 0.03608930483460426, 0.013212824240326881, -0.02151365578174591, 0.018685979768633842, -0.009743820875883102, -0.00635133869946003, 0.00693800812587142, -0.009036901406943798, 0.012199817225337029, -0.004682426806539297, 0.02043505758047104, -0.005702722351998091, -0.01380313839763403, -0.0045548900961875916, 0.011915591545403004, 0.007040037773549557, -0.015872880816459656, -0.02171771414577961, 0.011915591545403004, -0.0037058584857732058, -0.002472394146025181, 0.017869744449853897, -0.009474171325564384, 0.011675093322992325, 0.019006645306944847, -0.0020952492486685514, 0.03294096514582634, 0.016630813479423523, 0.02435590699315071, 0.0004092568706255406, 0.02335018664598465, -0.020289301872253418, -0.013657381758093834, -0.001902122050523758, -0.007160286884754896, 0.0068323346786201, 0.002836785512045026, 0.020493360236287117, -0.0006176430615596473, -0.012083211913704872, 0.005265452899038792, -0.007965591736137867, 0.006672002840787172, -0.011237824335694313, -0.019108673557639122, -0.023189855739474297, 0.005524170584976673, -0.0012462178710848093, 0.011055628769099712, 0.03145424649119377, -0.01711180992424488, 0.01547933742403984, 0.0035546361468732357, -0.010385149158537388, 0.013300278224050999, 0.0023648987989872694, -0.017942622303962708, -0.00653353426605463, 0.0062711723148822784, 0.009131642989814281, 0.0023211718071252108, -0.006799539551138878, 0.007703229784965515, -0.004055674187839031, 0.009073340333998203, -0.008803690783679485, -0.01759280636906624, 0.012112363241612911, -0.0195313673466444, 0.007761532440781593, -0.0001611292245797813, 0.0051816427148878574, -0.01804465241730213, -0.006088976748287678, 0.03145424649119377, -0.011347142048180103, 0.017286717891693115, 0.006788607686758041, 0.01182084996253252, -0.0064606559462845325, 0.027314763516187668, -0.01335129328072071, 0.003044488374143839, -0.005881273653358221, -0.0019367391942068934, -0.024661995470523834, -0.018977493047714233, -0.007936440408229828, 0.006948939990252256, 0.020959781482815742, -0.0019294513622298837, 0.004613192286342382, -0.005163423251360655, -0.0011696957517415285, -0.0122435437515378, 0.016878599300980568, 0.008359134197235107, 0.024108121171593666, -0.006894281134009361, 0.008388285525143147, -0.020041516050696373, 0.00038944309926591814, -0.019502216950058937, -0.004485655575990677, -0.003492689458653331, 0.0027566193602979183, -0.0008595077088102698, 0.004226937890052795, -0.0031610936857759953, -0.016441330313682556, -0.02335018664598465, -0.010057196952402592, 0.014721403829753399, -0.0034088795073330402, 0.016805721446871758, 0.008985886350274086, 0.013978046365082264, 0.0029825419187545776, -0.009838562458753586, -0.006737593095749617, -0.00038488820428028703, 0.004288884345442057, -0.004762592725455761, 0.03824650123715401, 0.014531920664012432, -0.00039331475272774696, -0.01491088792681694, -0.003964575938880444, -0.004995803348720074, 0.021047234535217285, 0.011019189842045307, -0.006916144862771034, -0.020566238090395927, 0.007572048809379339, -0.011580351740121841, -0.009466882795095444, 0.011624079197645187, -0.012556920759379864, 0.0071129160933196545, 0.01839446648955345, -0.003033556742593646, -0.011274263262748718, 0.005812039598822594, 0.02966144308447838, 0.00951061025261879, 0.006526246201246977, -0.007098340429365635, -0.049090780317783356, -0.010093635879456997, -0.012433027848601341, -0.019983213394880295, -0.0042597330175340176, -0.008679797872900963, -0.0076813665218651295, 0.024108121171593666, 0.013569927774369717, 0.004427352920174599, 0.004379982128739357, -0.0029461027588695288, -0.009743820875883102, 0.005352906417101622, -0.03655572608113289, 0.0021845251321792603, 0.00806033331900835, -0.005035886075347662, -0.02249022386968136, -0.012593359686434269, -0.006489807274192572, -0.01945848949253559, 0.0014329683035612106, -0.00519986217841506, -0.02611956000328064, -0.046321406960487366, -0.029442807659506798, 0.020609965547919273, 0.002787592587992549, -0.019545944407582283, 0.015537640079855919, 0.010414300486445427, -0.015056643635034561, -0.01795719750225544, -0.005043174140155315, 0.003301384160295129, 0.0017791399732232094, 0.006697509903460741, -0.014998341910541058, -0.004347187001258135, 0.008832842111587524, -0.017199264839291573, 0.004981227684766054, -0.04932399094104767, -0.011806274764239788, -0.0013947072438895702, -0.011981182731688023, -0.0030007613822817802, -1.6226795196416788e-05, 0.0011168590281158686, -0.006482519209384918, 0.00675945682451129, -0.017374172806739807, 0.005710009951144457, -0.02002693898975849, -0.01894834265112877, -0.011150370351970196, -0.0045038750395178795, 0.02888893336057663, -0.0011031943140551448, -0.015610518865287304, 0.0005447648582048714, 0.0021371543407440186, -0.0017390570137649775, -0.02100350894033909, -0.011704244650900364, 0.0008144142921082675, -0.015319005586206913, 0.007477307226508856, -0.014597510918974876, -0.0009410402271896601, -0.008920296095311642, -0.025653140619397163, -0.006314899306744337, 0.013978046365082264, -0.016718268394470215, 0.012330997735261917, -0.0002430033782729879, 0.00808948464691639, -0.021265869960188866, 0.01788431964814663, 0.0015778138767927885, -0.010159226134419441, 0.0057792444713413715, 0.01753450371325016, -0.0007552007446065545, -0.005192574579268694, 0.008745389059185982, -0.002310240175575018, -0.004992159549146891, 0.01661623828113079, -0.0061363475397229195, 0.012075924314558506, -0.0007091963780112565, 0.013234687969088554, -0.009124355390667915, -0.0029424589592963457, 0.01759280636906624, -0.0005470422911457717, -0.0002464195422362536, 0.015712548047304153, -0.015377308242022991, 0.010202953591942787, -0.009751108475029469, -0.0035200188867747784, -0.04238598421216011, -0.017636533826589584, -0.00830083154141903, 0.03442768007516861, 0.0007647660095244646, 0.010990038514137268, -0.0050468179397284985, -0.01121596060693264, -0.0008481204858981073, -0.018423618748784065, -0.005188930779695511, 0.005604336503893137, -0.013008765876293182, 0.011288839392364025, 0.009736532345414162, 0.024385059252381325, 0.004598616622388363, -0.004135840106755495, 0.001175161567516625, 0.023729154840111732, 0.0064096408896148205, -0.005389345809817314, 0.013322141952812672, -0.003685816889628768, 0.004919281229376793, 0.0072768921963870525, 0.004864622373133898, 0.004522094503045082, 0.03189151734113693, 0.008541329763829708, 0.008337270468473434, -0.016426755115389824, -0.02810184843838215, -0.009306550957262516, -0.027241885662078857, -0.011339853517711163, -0.000411306566093117, -0.024006091058254242, 0.006715729832649231, -0.0035601018462330103, -0.005407565273344517, -0.008869281969964504, 0.010348710231482983, 0.008570481091737747, -0.009503322653472424, 0.013766699470579624, 0.018977493047714233, 0.020843176171183586, 0.00132273999042809, 0.0019039439503103495, -0.010472603142261505, -0.013978046365082264, -0.01221439242362976, 0.01944391429424286, 0.004314391873776913, 0.015843728557229042, 0.007382565643638372, 0.0021608397364616394, -0.012892160564661026, 0.004952076356858015, -0.004620480351150036, -0.0013691999483853579, -0.005498663056641817, 0.010815130546689034, 0.0040957569144666195, -0.019137825816869736, 0.010049909353256226, 0.028903508558869362, -0.0015277101192623377, 0.003090037265792489, -0.0024887919425964355, -0.026775464415550232, -0.01114308275282383, 0.0003534594434313476, -0.0027967023197561502, -0.008424724452197552, -0.012119650840759277, -0.0056152683682739735, 0.008308119140565395, -0.003920849412679672, 0.016718268394470215, 0.016849448904395103, 0.012046772986650467, -0.013001477345824242, -0.004795387852936983, -0.006784963887184858, -0.006784963887184858, -0.017272142693400383, -0.014684964902698994, 0.006278460379689932, -0.009853137657046318, -0.008614207617938519, 0.003086393466219306, 0.0023211718071252108, -0.0047771683894097805, -0.006449724081903696, -0.0010193843627348542, 0.010844281874597073, -2.7500147552927956e-05, -0.0061582112684845924, -0.02945738472044468, 0.00193491717800498, -0.0007488239207305014, 0.004565821494907141, 0.004868266172707081, -0.020245574414730072, 0.008249816484749317, -0.015100371092557907, 0.003993727266788483, -0.0010813308181241155, 0.004441928584128618, -0.004944788292050362, 0.0017153715016320348, -0.025288749486207962, 0.029020113870501518, 0.002714714268222451, -0.003609294770285487, -0.0021499081049114466, -0.011121219024062157, 0.003237615805119276, 0.008023894391953945, 0.0035418823827058077, 0.006784963887184858, 0.007929151877760887, 0.007069189101457596, 0.01253505703061819, 0.005130628123879433, -0.010654798708856106, 0.009816698729991913, -0.02505553886294365, 0.0030827494338154793, -0.019997788593173027, -0.0037605171091854572, -0.016878599300980568, -0.00520350644364953, 0.001204312895424664, 0.0050759692676365376, 0.008752676658332348, 0.006405997090041637, -0.015202400274574757, 0.019006645306944847, 0.010523617267608643, -0.0005807484849356115, -0.01206863671541214, -0.005130628123879433, -0.00020292034605517983, 0.016164394095540047, 0.02200922742486, 0.02852454222738743, 0.010159226134419441, 0.005024954676628113, 0.02008524164557457, -0.0033414671197533607, 0.00406660558655858, -0.0022027448285371065, 0.0007474574376828969, -0.007637639530003071, -0.0010212062625214458, -0.00775424437597394, 0.004901061300188303, -0.008818266913294792, -0.009146219119429588, 0.004675139207392931, -0.004441928584128618, 0.005338330753147602, -0.03387380391359329, -0.0035856093745678663, -0.0035090872552245855, 0.0035036213230341673, -0.01830701343715191, 0.018773434683680534, -0.02569686621427536, -0.01676199398934841, 0.011463746428489685, -0.02335018664598465, 0.013205536641180515, -0.007972879335284233, 0.0008768162806518376, -0.0273293387144804, -0.0269649475812912, 0.03393210843205452, 0.013657381758093834, 0.011952031403779984, 0.0013455144362524152, 0.015800002962350845, -0.01429871004074812, 0.004041098523885012, 0.00993330404162407, -0.0035072651226073503, 0.008410148322582245, -0.013205536641180515, 0.001559594296850264, 0.0014666744973510504, 0.006088976748287678, -0.008723525330424309, -0.008264392614364624, -0.005640775430947542, 0.022956645116209984, 0.02173229120671749, 0.03174576163291931, -0.0060233864933252335, 9.810094343265519e-05, -0.00224464968778193, -0.017519928514957428, -0.02336476370692253, 0.008548617362976074, -0.018336165696382523, 0.0009159883484244347, 0.0045075188390910625, -0.01781144179403782, 0.01746162585914135, 0.006672002840787172, -0.0072768921963870525, 0.01808837801218033, 0.013205536641180515, -0.0035910753067582846, -0.030842069536447525, -0.0020515224896371365, 0.023175280541181564, -0.0028386074118316174, -0.02215498499572277, 0.016295574605464935, -0.012717252597212791, 0.016280997544527054, 0.00093147496227175, 4.66164522094914e-07, -0.00610719621181488, -0.0007292378577403724, 0.01267352607101202, -0.00048782871454022825, -0.00155321741476655, -0.01839446648955345, -0.0001808291272027418, 0.0032977403607219458, 0.01011549960821867, -0.030142439529299736, -0.011259688064455986, -0.015027492307126522, 0.014240407384932041, -0.00014894490595906973, -0.019137825816869736, 0.005939576309174299, 0.008526753634214401, 0.0007456354796886444, 0.011310702189803123, -0.01074954029172659, 0.014400740154087543, 0.003417989471927285, -0.015464762225747108, -0.02135332301259041, 0.006147279404103756, -0.012571495957672596, -0.0018538401927798986, -0.014138378202915192, -0.023597974330186844, 0.020916054025292397, 0.007083764765411615, -0.003580143442377448, 0.0018019144190475345, 0.0182341355830431, 0.012024909257888794, -0.015887456014752388, 0.013467898592352867, -0.004744373261928558, -0.009816698729991913, -0.028014395385980606, -0.024108121171593666, -0.016776571050286293, 0.023116977885365486, -0.009153506718575954, 0.005943220108747482, -0.02810184843838215, -0.017417898401618004, -0.019327308982610703, 0.03087122179567814, -0.006402353290468454, 0.01160950306802988, 0.0024140917230397463, 0.021950924769043922, 0.000760211143642664, 0.01604778878390789, -0.00582297146320343, -0.004456504248082638, -0.0035546361468732357, 0.023116977885365486, 0.0161206666380167, -0.01412380300462246, -0.012928599491715431, -0.02050793543457985, 0.012833857908844948, -0.015566791407763958, 0.004795387852936983, -0.007324262987822294, -0.01225083228200674, 0.0014293245039880276, -0.001800092519260943, 0.012870296835899353, -0.00520350644364953, 0.0021790594328194857, 0.010450739413499832, -0.018992068246006966, -0.012163378298282623, 0.031687457114458084, -0.0036420898977667093, 0.00468607060611248, 0.005946864373981953, -0.009408580139279366, -0.013176385313272476, -0.007819835096597672, -0.04046199843287468, -0.001770030241459608, -0.002579889725893736, 0.009634503163397312, -0.001079508918337524, -0.02116383984684944, -0.013854153454303741, 0.03807159140706062, 0.021047234535217285, 0.014714116230607033, -0.0017017069039866328, 0.020916054025292397, -0.0038297513965517282, 0.0052107940427958965, 0.0035783215425908566, -0.012199817225337029, -0.013577215373516083, -0.013781274668872356, 0.017155537381768227, 0.041074175387620926, -0.022533951327204704, 0.01401448529213667, 0.014969190582633018, 0.004161347635090351, -0.005782888270914555, 0.0010448917746543884, 0.00011131012433907017, 0.024253876879811287, 0.0019276293460279703, -0.010873433202505112, 0.00693800812587142, -0.003920849412679672, -0.03200812265276909, -0.01412380300462246, 0.009525185450911522, -0.027460521087050438, 0.012323710136115551, 0.00024573630071245134, -0.007050969637930393, -0.01689317636191845, -0.0009783903369680047, 0.0007233165088109672, -0.008140498772263527, 0.01944391429424286, -0.013548064045608044, 0.012979614548385143, 0.003873478388413787, 0.012819281779229641, 0.008803690783679485, -0.0039864396676421165, -0.02654225379228592, 0.0018629499245435, -0.0005716386949643493, 0.0043909139931201935, 0.00018470078066457063, 0.014765131287276745, 0.004966652020812035, 0.008504890836775303, 0.0025908213574439287, -0.02186347171664238, -0.0034562505315989256, -0.0061363475397229195, 0.010355997830629349, 0.0016862202901393175, 0.005272740498185158, -0.0032048204448074102, -0.018000924959778786, -0.01330756675451994, 0.005061393603682518, 0.006792251951992512, -0.010283119045197964, -0.004409133456647396, 0.0022665131837129593, -0.009291975758969784, -0.004387269727885723, 0.01029769517481327, -0.004755305126309395, -0.012411164119839668, -0.007408072706311941, -0.006373201962560415, 0.008395573124289513, 0.003968220204114914, 0.02441420964896679, -0.001187915331684053, 0.003301384160295129, 0.017767714336514473, 0.010917159728705883, -0.0009811233030632138, 0.0041176206432282925, -0.002315706107765436, 0.017345020547509193, 0.0050468179397284985, 0.008118635974824429, -0.0120394853875041, 0.009058765135705471, -3.945673233829439e-05, -0.007462731562554836, 0.011456458829343319, 0.008854705840349197, -0.0027001388370990753, -0.018992068246006966, -0.006500738672912121, -0.012790130451321602, 0.004044742323458195, -0.01817583292722702, 0.016383027657866478, -0.03171660751104355, -0.022956645116209984, -0.009641790762543678, 0.01922527886927128, 0.006642851512879133, -0.012207104824483395, -0.001922163530252874, 0.0007574781775474548, 0.004875554237514734, 0.02356882207095623, -0.018933765590190887, -0.008388285525143147, 0.006285747978836298, 0.002474216278642416, -0.015231551602482796, -0.014998341910541058, -0.006901569198817015, -0.009379428811371326, -0.01093173585832119, 0.02492435835301876, 0.003182956948876381, 0.0007998386863619089, -0.004361762665212154, -0.01487444806843996, -0.03434022516012192, 0.0038406832609325647, -0.003130120225250721, -0.013358580879867077, 0.020405907183885574, -0.007065545301884413, -0.009386717341840267, -0.017024356871843338, 0.020289301872253418, -0.010552768595516682, -0.000212257873499766, -0.014313286170363426, 0.0031738472171127796, -0.00562620023265481, 0.01135442964732647, -0.0020606322214007378, -0.01881716027855873, -0.0006527157383970916, -0.008220665156841278, 0.003547348314896226, -0.044543180614709854, 0.007214945740997791, 0.01491088792681694, -0.01380313839763403, -0.014838009141385555, -0.002392228227108717, 0.0120394853875041, -0.009379428811371326, 0.010705812834203243, -0.004237869754433632, -0.015216976404190063, 0.0038188197650015354, -0.022111257538199425, -0.029617715626955032, -0.00036871834890916944, 0.0242830291390419, -0.013416883535683155, 0.02817472629249096, 0.02492435835301876, -0.00427795248106122, 0.01416752953082323, 0.03795498609542847, -0.0012589715188369155, -0.02457454241812229, 0.01582915335893631, -0.0013172741746529937, -0.001737234997563064, 0.006143635604530573, 0.00929926335811615, -0.0007984722033143044, -0.004584041424095631, -0.011631366796791553, 0.011339853517711163, -0.004073893651366234, -0.026294467970728874, 0.014524633064866066, -0.018365316092967987, 0.0011496541555970907, -0.009670942090451717, 0.00012742304534185678, -0.009255535900592804, 0.013139946386218071, 0.002313883975148201, -0.004270664881914854, -0.013446034863591194, -0.00366577529348433, -0.009102491661906242, -0.012644374743103981, 0.003009871346876025, -0.016018636524677277, 0.019852032884955406, -0.019108673557639122, 0.02228616550564766, 0.005906781181693077, 0.03037565015256405, -0.004992159549146891, -0.01676199398934841, 0.00033410117612220347, 0.008169650100171566, 0.007535609882324934, -0.01667454093694687, 0.025142991915345192, -0.0029952956829220057, 0.019473064690828323, -0.011332565918564796, -0.007674078457057476, -0.013125371187925339, -0.007936440408229828, 0.012236256152391434, -0.024151848629117012, -0.01182084996253252, -0.008082197047770023, -0.02151365578174591, -0.005032242275774479, 0.007342482451349497, 0.0026345483493059874, 0.012498618103563786, 0.002576245693489909, -0.007204013876616955, 0.01238201279193163, -0.009466882795095444, 0.008031181991100311, -0.0006600035703741014, -0.02298579551279545, 0.021382475271821022, 0.014845296740531921, 0.039995577186346054, 0.02760627679526806, 0.0216448362916708, -0.010239392518997192, -0.0012872118968516588, -0.02023099921643734, 0.01253505703061819, -0.0029533905908465385, 0.007593912538141012, -0.0026636996772140265, 0.01256420835852623, -0.0016506920801475644, -0.0037933122366666794, 0.009707381017506123, -0.010836994275450706, 0.01171882078051567, -0.00229748641140759, 0.0026217945851385593, -0.005123340059071779, 0.016587087884545326, 0.0003254468902014196, -0.006169142667204142, -0.014859872870147228, -0.012965038418769836, 0.019545944407582283, 0.010501754470169544, 8.813711610855535e-05, -0.021848896518349648, 0.027227310463786125, -0.018904615193605423, 0.0020023295655846596, -0.012600647285580635, -0.01711180992424488, 0.024676570668816566, -0.0003015336988028139, 0.023189855739474297, 0.0007611220935359597, 0.0039827958680689335, 0.006555397529155016, 0.012126938439905643, -0.036730632185935974, -0.018117530271410942, 0.009080628864467144, 0.004609548486769199, -0.03194981813430786, 0.0014530098997056484, -0.003953644540160894, -0.009823986329138279, -0.03428192436695099, 0.0005137915723025799, -0.005633487831801176, 0.009780259802937508, -0.014291422441601753, 0.011667805723845959, 0.011937455274164677, 0.013868728652596474, -0.0017108166357502341, -0.012739116325974464, -0.024239301681518555, -0.0026345483493059874, 0.0042560892179608345, -0.022402770817279816, -0.003024446777999401, 0.008322695270180702, -0.0032285060733556747, 0.01111393142491579, 0.012396587990224361, -0.017286717891693115, -0.016557935625314713, -0.006303967442363501, 0.01832158863544464, -0.0035455261822789907, 0.01731587015092373, -0.024545390158891678, -0.007761532440781593, -0.01227998360991478, -0.0138468649238348, -0.014721403829753399, -0.02520129457116127, 0.005170710850507021, 0.004817251581698656, -0.0012817459646612406, 0.0047917440533638, -0.001982287969440222, -0.010144650936126709, -0.006078044883906841, 0.002576245693489909, -0.0037422976456582546, 0.0003623414959292859, -0.022912917658686638, -0.028626572340726852, 0.007131135556846857, -0.00264547998085618, 0.029632290825247765, -0.0022063886281102896, -0.01966254785656929, -0.005462224129587412, -0.00784898642450571, 0.00352184078656137, 0.02839336171746254, 0.016791146248579025, 0.0025853554252535105, -0.018933765590190887, -0.006883349735289812, 0.024968083947896957, -0.015391884371638298, -0.013365868479013443, 0.006784963887184858, 0.008147787302732468, 0.008184226229786873, -0.016572510823607445, 0.019822880625724792, -0.015566791407763958, 0.0047006462700665, -0.008176938630640507, 0.004908349364995956, 0.04769152030348778, 0.02762085199356079, 0.017359595745801926, 0.021120114251971245, -0.0046642073430120945, 0.020143544301390648, 0.01440802775323391, -0.00713477935642004, -0.015260702930390835, -0.01501291710883379, 0.015173248946666718, 0.00552052678540349, -0.0015550394309684634, 0.005833902861922979, 0.0052071502432227135, -0.019750002771615982, 0.011412732303142548, 0.003920849412679672, 0.004518450703471899, 0.003993727266788483, 0.009619927033782005, 0.019852032884955406, -0.00203330279327929, 0.0011396334739401937, -0.010239392518997192, 0.040928419679403305, 0.015464762225747108, -0.010939023457467556, 0.003920849412679672, -0.02329188585281372, -0.01569797284901142, 0.006752168759703636, 0.006628275848925114, 0.004361762665212154, -0.006930720526725054, 0.0035491702146828175, -0.016091514378786087, 0.016383027657866478, -0.00569907808676362, 0.0157562755048275, -0.021469928324222565, 0.03095867484807968, -0.017199264839291573, -0.020639117807149887, 0.005218081641942263, 0.0004379526653792709, 0.01604778878390789, 0.01391245611011982, 0.010982750914990902, -0.025667715817689896, 0.009496034123003483, 0.011507473886013031, -0.011201385408639908, 0.00044842890929430723, -0.006989023182541132, -0.01061107125133276, -0.003445318667218089, 0.0070910523645579815, -0.0028477171435952187, 0.021965501829981804, 0.0079801669344306, 0.004576753359287977, -0.01647048257291317, 0.010771404020488262, 0.00918994564563036, 0.014714116230607033, 0.01781144179403782, 0.002098893281072378, -0.007717805448919535, 0.010632934980094433, -0.01993948593735695, 0.021746866405010223, -0.0016242737183347344, 0.012542344629764557, 0.011675093322992325, 0.007327906787395477, 0.004675139207392931, 0.0034908675588667393, -0.022912917658686638, -0.0015249771531671286, -0.026104984804987907, -0.009342989884316921, -0.01768026128411293, 0.0012125116772949696, -0.004857334773987532, 0.021892622113227844, -0.015727123245596886, 0.016091514378786087], "692966a7-e54c-4abf-bc2f-c59557e551e7": [-0.010498236864805222, -0.011982835829257965, -0.0062262266874313354, 0.03341862931847572, -0.0026832614094018936, -0.011907090432941914, -0.025874441489577293, 0.037963319569826126, -0.0004700915014836937, 0.058323536068201065, 0.012793305329978466, -0.013179603964090347, 0.03102509118616581, 0.006468610372394323, -0.007313165348023176, -0.0005169585929252207, -0.05020368844270706, 0.018845319747924805, 0.029419301077723503, -0.03232790157198906, 0.03505471721291542, -0.029828323051333427, -0.020693494006991386, 0.00432503130286932, 0.015201992355287075, -0.016406334936618805, -0.034388162195682526, -0.001500694896094501, -0.01636088825762272, -0.013959776610136032, 0.02532907947897911, -0.0040144771337509155, 0.008619763888418674, -0.0029862408991903067, -0.006559504196047783, -0.037872426211833954, 0.004696181043982506, 0.015876121819019318, -0.014149138703942299, -0.03384280204772949, 0.0070177605375647545, 0.020496556535363197, 0.010687598958611488, -0.02334456332027912, -0.02067834511399269, 0.025904739275574684, -0.024526182562112808, 0.010483087971806526, -0.0034388164058327675, -0.0007124750409275293, -0.0033119437284767628, 0.013384115882217884, -0.01736072078347206, 0.052960801869630814, 0.030616069212555885, -0.027874106541275978, -0.0017800040077418089, 0.0689581111073494, 0.026086527854204178, -0.03917523846030235, 0.004563627298921347, -0.02549571730196476, -0.024283800274133682, -0.005851289723068476, 0.012217644602060318, -0.011096620932221413, -0.0028688362799584866, -0.0008847945719026029, -0.022511370480060577, 0.007657804526388645, -0.043295759707689285, -0.011225387454032898, -0.05935366824269295, 0.023374861106276512, 0.03847838565707207, -0.018648382276296616, 0.07562366127967834, 0.023193074390292168, 0.00899091362953186, -0.037084680050611496, -0.0013056518509984016, 0.020481407642364502, -0.02887393720448017, -0.03423667326569557, 0.03990238904953003, -0.011361727491021156, -0.03584246337413788, -0.04353814199566841, -0.02654099650681019, -0.00046819786075502634, 0.02725299820303917, 0.011119344271719456, -0.0026794741861522198, -0.00703290943056345, -0.019042255356907845, 0.02305673249065876, 0.017966678366065025, 0.015406503342092037, -0.0028650490567088127, -0.029904067516326904, -0.027525680139660835, -0.025707803666591644, -0.016436632722616196, -0.01976940594613552, 0.014800543896853924, 0.046780019998550415, 0.025616908445954323, 0.008627338334918022, -0.0014618756249547005, 0.013565903529524803, -0.005192309617996216, -0.05111262574791908, 0.008771253749728203, -0.03326714038848877, -0.03726646676659584, -0.05405152589082718, -0.006055801175534725, 0.014383947476744652, -0.002817708533257246, -0.026692485436797142, 0.050809647887945175, -0.0010680024279281497, 0.022935541346669197, 0.02010268345475197, -0.011914665810763836, 0.005987630691379309, 0.0165881235152483, 0.02087528072297573, 0.04653763771057129, -0.005692225880920887, -0.03460025042295456, 0.020526854321360588, 0.05111262574791908, 0.026192570105195045, 0.014906587079167366, -0.01518684346228838, 0.049900710582733154, 0.04302307590842247, -0.02988891862332821, 0.03426697105169296, -0.028979981318116188, 0.01701229438185692, 0.030101004987955093, -0.0001049776328727603, -0.015785226598381996, -0.020981324836611748, -0.07495710998773575, 0.0721696987748146, -0.002331047784537077, 0.028464915230870247, -0.0341457799077034, -0.041053708642721176, -0.02445043809711933, 0.0012848221231251955, 0.007082143798470497, -0.0030127514619380236, -0.015118672512471676, 0.03669080510735512, 0.03956910967826843, 0.023359712213277817, 0.005665714852511883, -0.02045110985636711, -0.007290442008525133, 0.03693319112062454, 0.028343724086880684, 0.0020962387789040804, 0.05262752249836922, 0.0357818678021431, -0.0016796421259641647, 0.03508501499891281, 0.01639118604362011, -0.024995801970362663, 0.002933219540864229, -0.015383780002593994, 0.00030818686354905367, -0.016088206321001053, 0.03820570558309555, 0.02399596944451332, 0.04005387797951698, -0.0029464748222380877, -0.017088038846850395, -0.003308156505227089, -0.02838917076587677, 0.00473026605322957, 0.05359705910086632, 0.026586443185806274, 0.014399096369743347, 0.019633065909147263, 0.002081089885905385, 0.020208727568387985, 0.01596701517701149, -0.021284304559230804, 0.025056397542357445, 0.011361727491021156, -0.013831010088324547, 0.0074911657720804214, -0.0006613472360186279, -0.008059252053499222, -0.016073057428002357, 0.04341695085167885, -0.013505307026207447, -0.037417955696582794, -0.029798025265336037, 0.015421652235090733, -0.02555631287395954, -0.008498572744429111, -0.034812334924936295, -0.01590641960501671, 0.01342956256121397, -0.028177084401249886, 0.0412960946559906, -0.03014645166695118, 0.004059924278408289, 0.0026927294675260782, 0.015664035454392433, 0.01250547543168068, -0.000250431417953223, 0.029373854398727417, 0.0021984942723065615, -0.01789093390107155, -0.0064648231491446495, -0.006574653089046478, 0.012225219048559666, -0.043689630925655365, -0.03693319112062454, -0.0023234733380377293, -0.021738773211836815, -0.002509048208594322, 0.005790694151073694, -0.037902723997831345, 0.0038724555633962154, 0.019239192828536034, -0.007915337570011616, -0.013338668271899223, 0.007244995329529047, 0.0468406155705452, 0.052991099655628204, -0.014474841766059399, 0.01388403121381998, -0.010619428008794785, -0.004082647617906332, 0.02107221819460392, -0.028919385746121407, -0.03411548212170601, 0.011407175101339817, -0.005090054124593735, -0.0077865710482001305, 0.03853898122906685, 0.031267475336790085, 0.01863323338329792, 0.009293893352150917, -0.0037285403814166784, 0.0012327474541962147, -0.003446390852332115, -0.005828566383570433, 0.010801215656101704, 0.02705606073141098, 0.0014931204495951533, -0.011323855258524418, -0.03411548212170601, -0.016754761338233948, 0.03020704723894596, -0.011588962748646736, 0.038811661303043365, 0.05059756338596344, -0.00211706873960793, 0.0442349947988987, 0.03587276116013527, -0.008104699663817883, 0.030282791703939438, 0.031721945852041245, -0.0351153127849102, 0.016103355213999748, 0.017315274104475975, -0.00482115987688303, -0.01432335190474987, -0.021905411034822464, -0.009195425547659397, 0.020208727568387985, -0.019860301166772842, 0.017572805285453796, -0.007029122207313776, 0.03402458876371384, -0.02198115549981594, 0.01693654991686344, 0.03593335673213005, -0.040084175765514374, -0.006248950492590666, -0.06171690672636032, -0.008059252053499222, -0.013512881472706795, 0.005207458510994911, -0.013134157285094261, 0.029282961040735245, -0.014664203859865665, -0.011914665810763836, -0.0031718157697468996, -0.007002611644566059, 0.00460907444357872, -0.032630883157253265, -0.0038819236215204, -0.0007929539424367249, -0.03147955983877182, -0.03076756000518799, 0.03717557340860367, -0.016512377187609673, 0.057566087692976, 0.010551257990300655, -0.038751065731048584, 0.020602600648999214, 0.026086527854204178, -0.04072043299674988, 0.017224378883838654, -0.009831681847572327, 0.007392697501927614, 0.009301467798650265, -0.016012461856007576, 0.001634195214137435, -0.009324191138148308, -0.012808454222977161, 0.004499244038015604, -0.006555716972798109, -0.04165966808795929, 0.03720587119460106, 0.04920385777950287, -0.06556474417448044, 0.009309042245149612, -0.01908770203590393, 0.007010186091065407, -0.016891101375222206, -0.0016588122816756368, -0.01678505912423134, 0.003308156505227089, 0.009233297780156136, -0.06326209753751755, -0.0014722906053066254, -0.04338665306568146, -0.03996298462152481, -0.014664203859865665, -0.026495549827814102, -0.010286151431500912, 0.023950522765517235, 0.005885375197976828, 0.006396652664989233, -0.04893117398023605, -0.018966510891914368, 0.042780693620443344, 0.043235160410404205, 0.003987966571003199, -0.0018803660059347749, 0.0009742681868374348, -0.01477782055735588, 0.01006649062037468, -0.03817540407180786, 0.005847502499818802, -0.0036433273926377296, 0.008195593021810055, 0.03629693388938904, 0.028919385746121407, -0.019890598952770233, -0.009165126830339432, -0.040114473551511765, 0.019208895042538643, 0.008142571896314621, -0.00806682649999857, 0.011482919566333294, 0.016285143792629242, -0.00946053210645914, -0.05223365128040314, -0.0021966006606817245, -0.01161168608814478, -0.00032546615693718195, -0.01775459386408329, -0.0021776645444333553, 0.005518012680113316, -0.03596365451812744, 0.051294416189193726, -0.009210574440658092, 0.020375365391373634, 0.03917523846030235, 0.0027722616214305162, 0.002982453675940633, 0.00020711483375634998, -0.006271673832088709, 0.05114292353391647, -0.008036528714001179, 0.02370813861489296, -0.023874778300523758, -0.018754426389932632, -0.02844976633787155, -0.02314762771129608, -0.008551593869924545, 0.0009837362449616194, 0.005324863363057375, -0.013679520227015018, -0.007400271948426962, 0.0070404838770627975, -0.007320740260183811, 0.01239185780286789, -0.007494952995330095, 0.01967851258814335, -0.007188186515122652, -0.009165126830339432, 0.005135500803589821, -0.012437304481863976, -0.033509522676467896, -0.01474752277135849, 0.011126918718218803, 0.006741291843354702, 0.0014268436934798956, 0.03160075098276138, -0.0065443553030490875, 0.0211328137665987, -0.008816700428724289, 0.03226730599999428, -0.004264435265213251, -0.008528870530426502, 0.020981324836611748, -0.06077767163515091, -0.008263763040304184, 0.047688961029052734, 0.031631048768758774, -0.0403265580534935, 0.00275143189355731, 0.019133150577545166, 0.016542674973607063, 0.012869050726294518, 0.02039051428437233, 0.005938396323472261, 0.012028282508254051, 0.00014640060544479638, 0.017845487222075462, 0.008900020271539688, 0.0015395141672343016, 0.005620268173515797, -0.008559168316423893, -0.0002468808670528233, -0.030979644507169724, -0.021708475425839424, 0.0064875464886426926, -0.0003879556606989354, 0.049476537853479385, 0.020314769819378853, -0.0022401539608836174, -0.03499412164092064, -0.013247774913907051, -0.03856927901506424, 0.02478371560573578, -0.02744993381202221, -0.022102348506450653, -0.0027684743981808424, 0.05102173238992691, 0.007801719941198826, 0.004662095569074154, -0.012543347664177418, 0.01417943648993969, 0.03184313699603081, -0.003103645285591483, 0.021814517676830292, -0.049112964421510696, -0.03111598640680313, 0.016527526080608368, 0.01429305411875248, -0.013043263927102089, 0.0067034196108579636, -0.02266285941004753, 0.006237588822841644, 0.024753417819738388, 0.004226562567055225, 0.019163448363542557, 0.025586610659956932, -0.0030108578503131866, -0.011505642905831337, 0.014012797735631466, 0.005711161997169256, -0.020375365391373634, -0.025177588686347008, -0.013020540587604046, 0.032176412642002106, 0.0016995251644402742, 0.006396652664989233, 0.005010521970689297, -0.006195928901433945, 0.007173037622123957, -0.005025670863687992, -0.001162683474831283, -0.018390851095318794, -0.015754928812384605, -0.02266285941004753, 0.017603103071451187, 0.010074065066874027, 0.050839945673942566, 0.019754257053136826, 0.02175392210483551, 0.016997145488858223, -0.0006301024695858359, 0.02881334163248539, -0.005983843468129635, -0.010498236864805222, -0.04429559037089348, -0.010195257142186165, -0.04262920469045639, 0.02189026214182377, -0.02058745175600052, 1.6702331777196378e-05, 0.028707299381494522, -0.020435960963368416, 0.018390851095318794, -4.813940540771e-05, -0.013482583686709404, -0.04314426705241203, 0.045053038746118546, -0.05229424685239792, -0.024086862802505493, 0.005699800327420235, -0.004775713197886944, -0.03269147872924805, 0.0061997161246836185, 0.024556482210755348, -0.01385373342782259, 0.010642152279615402, -0.02744993381202221, -0.016012461856007576, -0.0012952369870617986, -0.004556052852421999, 0.005843715276569128, -0.020375365391373634, -0.0037910297978669405, 0.03496382385492325, -0.0024579204618930817, -0.016376037150621414, 0.015648886561393738, -0.00047577236546203494, 0.01726982556283474, 0.01931493729352951, -0.00022829971567261964, -0.0031131133437156677, -0.022556817159056664, -0.010013469494879246, -0.025192737579345703, -0.019663363695144653, 0.005404395051300526, -0.0253593772649765, -0.03808451071381569, -0.00853644497692585, 0.010801215656101704, -0.0005950704799033701, 0.01321747712790966, -0.00985440518707037, 0.0028044532518833876, -0.046780019998550415, 0.02234473079442978, -0.001154162222519517, 0.007737336680293083, -0.005491501651704311, -0.029737429693341255, -0.028404319658875465, -0.0062338015995919704, 0.0006859643035568297, -0.027359040454030037, -0.012997816316783428, 0.01117236539721489, -0.005404395051300526, 0.007517676800489426, -0.019375532865524292, -0.0020280685275793076, -0.01622454822063446, -0.004340180195868015, -0.010945131070911884, 0.006593589670956135, -0.00023516410146839917, -0.004745414946228266, 0.030555473640561104, -0.0038004980888217688, -0.020239025354385376, 0.009354488924145699, 0.0031699221581220627, -0.014489990659058094, -0.05686923488974571, 0.009687766432762146, 0.006241376046091318, -0.024344395846128464, 0.013535604812204838, -0.015588290989398956, 0.005143075715750456, -0.009960448369383812, -0.006881420034915209, -0.04208384081721306, -0.012444878928363323, 0.022526519373059273, -0.01118751522153616, 0.010558832436800003, -0.013043263927102089, -0.015050502493977547, -0.026071378961205482, 0.025223035365343094, 0.006264099385589361, 0.016603272408246994, 0.0024976865388453007, 0.02963138557970524, 0.035175908356904984, 0.027495382353663445, 0.012361560016870499, -0.05244573578238487, -0.02192055992782116, 0.012316113337874413, -0.019920896738767624, -0.0016493442235514522, 0.016057908535003662, -0.018269658088684082, 0.042780693620443344, -0.023632394149899483, 0.012528198771178722, -0.03014645166695118, 0.02263256162405014, 0.03375190496444702, 0.007184399291872978, 0.02204175293445587, 0.019360383972525597, -0.028495213016867638, 0.03111598640680313, -0.0004589664749801159, 0.0019333873642608523, 0.00856674276292324, -0.0062262266874313354, 0.05265782028436661, -0.05144590511918068, -0.03908434510231018, -0.005820991937071085, 0.0062262266874313354, -0.042326223105192184, 0.00599899236112833, -0.05420301854610443, -0.017618251964449883, 0.013876456767320633, -0.032570287585258484, 0.018815021961927414, -0.016739612445235252, -0.002895347075536847, 0.005775545258074999, -0.046719424426555634, -0.027359040454030037, 0.005434693302959204, -0.0014003330143168569, -0.012088878080248833, -0.006567078642547131, 0.014770246110856533, 0.03157045319676399, 0.01161168608814478, 0.010528534650802612, 0.013353817164897919, 0.011740452609956264, -0.019496725872159004, 0.026071378961205482, -0.0037664128467440605, -0.03366101160645485, -0.01860293559730053, 0.014164287596940994, -0.0037607320118695498, -0.015224715694785118, 0.01277815643697977, -0.04705270379781723, 0.04044775292277336, 0.013596201315522194, 0.029798025265336037, 0.020981324836611748, -0.006828398443758488, 0.009846830740571022, 0.025313930585980415, 0.03584246337413788, 0.013452285900712013, -0.0360848493874073, 0.005162011831998825, 0.0164214838296175, 0.01583067514002323, -0.007900187745690346, -0.00032357254531234503, 0.005491501651704311, 0.00821074191480875, 0.0038932855241000652, -0.02285979688167572, -0.04350784420967102, -0.03541829437017441, 0.030267642810940742, -0.01580037549138069, -0.0017421316588297486, -0.013391690328717232, -0.0014580884017050266, -0.019890598952770233, 0.0126039432361722, 0.004768138285726309, 0.03735736012458801, -0.05674804374575615, 0.0011617366690188646, -0.006237588822841644, 0.012596368789672852, -0.00011196036211913452, -0.024920057505369186, 0.0028366446495056152, -0.028177084401249886, -0.021375197917222977, 0.0018093552207574248, -0.01823936030268669, -0.001174992066808045, 0.008574317209422588, 0.018163615837693214, -0.018784724175930023, -0.01110419537872076, 0.007116228807717562, 0.005108990240842104, 0.01687595248222351, 0.033479224890470505, -0.024859460070729256, 0.007188186515122652, -0.02016327902674675, -0.01983000338077545, -0.014626330696046352, 0.005650565959513187, -0.013050838373601437, 0.02084498293697834, -0.022223539650440216, 0.04802223667502403, -0.03076756000518799, -0.036630209535360336, -0.02838917076587677, 0.03953881189227104, -0.01175560150295496, 0.013861307874321938, 0.01948157697916031, 0.0078092943876981735, 0.011649558320641518, -0.018315104767680168, 0.02532907947897911, 0.0027930913493037224, 0.018724126741290092, -0.01583067514002323, -0.017663700506091118, -0.008559168316423893, 0.037902723997831345, 0.019875450059771538, 0.0031945391092449427, 0.0016020035836845636, 0.0229203924536705, -0.034812334924936295, -0.021844815462827682, -0.006343631539493799, 0.009112105704843998, -0.006014141254127026, -0.0060709500685334206, -0.0025791123043745756, 0.040568944066762924, -0.011922240257263184, 0.031297773122787476, -0.003823221428319812, 0.019011957570910454, -0.014664203859865665, 0.018299955874681473, 0.028631554916501045, 0.00018155094585381448, 0.050718754529953, 0.009566575288772583, -0.004787074867635965, 0.0004835835425183177, -0.02949504554271698, -0.02549571730196476, 0.021799368783831596, 0.025086695328354836, -0.017830338329076767, 0.013906754553318024, 0.029313258826732635, 0.03735736012458801, 0.0025677504017949104, 0.030964495614171028, 0.03085845336318016, -0.031691648066043854, -0.026495549827814102, -0.009483255445957184, 0.015111098065972328, 0.008074400946497917, -0.028934534639120102, -0.0396600067615509, -0.04956743121147156, 0.026480400934815407, 0.004188690334558487, 0.020496556535363197, -0.013565903529524803, 0.032661180943250656, 0.0059118857607245445, 0.012929646298289299, -0.004976436961442232, -0.011634409427642822, -0.015785226598381996, 0.01792123168706894, 0.012194921262562275, -0.022617412731051445, 0.013444711454212666, 0.004521967843174934, -0.0060179284773766994, -0.007654017303138971, -0.03556978330016136, 0.0015792801277711987, -0.0009884702740237117, 0.04023566469550133, 0.006953377276659012, 0.02325366996228695, 0.0009236137848347425, -0.015504971146583557, -0.02907087467610836, -0.035175908356904984, 0.025965334847569466, 0.012838752940297127, 0.031752243638038635, 0.005158224608749151, -0.0038080725353211164, -0.018512042239308357, -0.007006398867815733, 0.003738008439540863, 0.013225051574409008, 0.026389507576823235, 0.015406503342092037, -0.018845319747924805, -0.015694333240389824, 0.014262755401432514, 0.007286654785275459, -0.015633737668395042, -0.022647710517048836, -0.006222439464181662, -0.017603103071451187, -0.002450346015393734, 0.01175560150295496, -0.01096027996391058, -0.03690289333462715, -0.0029767726082354784, 0.013815861195325851, 0.00369445513933897, 0.02935870550572872, -0.0396600067615509, 0.0032115818466991186, -0.03911464288830757, 0.027798360213637352, -0.015338332392275333, -0.021147962659597397, -0.010043767280876637, -0.011013302020728588, -0.0014363117516040802, 0.027874106541275978, 0.003037368645891547, 0.01006649062037468, 0.04865849390625954, 0.025798697024583817, 0.02591988816857338, 0.002245834795758128, 0.012096453458070755, 0.03411548212170601, -0.02910117246210575, 0.0073623997159302235, 0.02172362431883812, 0.0017222486203536391, -0.0020280685275793076, -0.0032721776515245438, 0.02513214200735092, -0.0011285983491688967, -0.02299613691866398, -0.007907762192189693, 0.005847502499818802, 0.005074905231595039, -0.004465159028768539, 0.0019693661015480757, 0.024495884776115417, 0.0008507093880325556, -0.03556978330016136, 0.0033763267565518618, 0.03453965112566948, 0.004048562608659267, 0.007975933142006397, -0.019784554839134216, 0.03872076794505119, -0.002302643610164523, -0.03560008108615875, -0.009271170012652874, -0.03402458876371384, 0.006798100657761097, 0.0051998840644955635, 0.014141564257442951, -0.040084175765514374, 0.019587619230151176, 0.015194417908787727, -0.026510698720812798, 0.008953041397035122, 0.003001389792189002, -0.016603272408246994, 0.006461035925894976, -0.02010268345475197, -0.029843471944332123, -0.006972313858568668, -0.0062792482785880566, 0.02093587815761566, 0.004063711501657963, -0.012626666575670242, 0.015353481285274029, 0.002221217844635248, -0.016497228294610977, 0.0022818136494606733, 0.002387856598943472, 0.024374693632125854, -0.02722270041704178, 0.026586443185806274, -0.009445383213460445, 0.05011279508471489, 0.012437304481863976, 0.013255349360406399, 0.03229760378599167, 0.0056732892990112305, -0.0026605380699038506, 0.0621107779443264, 0.021875113248825073, -0.007010186091065407, -0.012497900985181332, 0.009922576136887074, -0.018648382276296616, 0.007195760961622, -0.0014230564702302217, 0.024404991418123245, -0.013694669120013714, -0.009763511829078197, -0.014641480520367622, -0.00029540492687374353, -0.004692393820732832, -0.0031774966046214104, 0.017739444971084595, -0.02595018595457077, 0.004453797359019518, 0.010551257990300655, -0.012853901833295822, 0.03766034170985222, -0.026677336543798447, -0.015133821405470371, -0.0029161768034100533, -0.029676834121346474, -0.003819434205070138, 0.017254676669836044, -0.03420637547969818, 0.03672110289335251, -0.017860636115074158, 0.008127423003315926, -0.005904311314225197, -0.018754426389932632, 0.03060092031955719, -0.014929310418665409, -0.02198115549981594, -0.004040987696498632, 0.0035656888503581285, -0.009930150583386421, 0.01396735105663538, 0.006514057517051697, 0.037933021783828735, -0.017057741060853004, -0.0004755356640089303, 0.01096027996391058, 0.008362231776118279, 0.013565903529524803, -0.004207626450806856, -0.0009089382365345955, 0.01613365299999714, 0.019920896738767624, 0.002897240687161684, -0.03426697105169296, 0.039235834032297134, -0.013808286748826504, 0.0032589223701506853, -0.027465084567666054, -3.8079542719060555e-05, -0.008271337486803532, -0.00788503885269165, -0.018754426389932632, 0.0014978544786572456, -0.0416293703019619, 0.012626666575670242, -0.02120855823159218, 0.007301803678274155, 0.024707971140742302, -0.004022051580250263, -0.002064047148451209, -0.02955564111471176, 0.01388403121381998, -4.74884727736935e-05, -0.03602425381541252, 0.00899091362953186, 0.004249286372214556, 0.02045110985636711, 0.011323855258524418, -0.007218484301120043, -0.010172533802688122, -0.011331429705023766, 0.002293175319209695, 0.006805675104260445, -0.0023802819196134806, -0.0134977325797081, -0.012028282508254051, -0.03147955983877182, -0.009051510132849216, -0.015050502493977547, -0.022678008303046227, 0.04335635527968407, 0.0038762427866458893, 0.01021040603518486, -0.00548013998195529, 0.007945635356009007, 0.015201992355287075, 0.02810133993625641, -0.018299955874681473, -0.02416260726749897, 0.02214779518544674, -0.007839592173695564, -0.010642152279615402, 0.013982499949634075, 0.013990074396133423, -0.042871586978435516, -0.015815524384379387, 0.03253998979926109, 0.004226562567055225, -0.018951361998915672, -0.019633065909147263, -0.0034842633176594973, -0.008945466950535774, 0.016754761338233948, -0.005286990664899349, -0.012513049878180027, -0.006059588398784399, -0.008756104856729507, -0.004540903959423304, -0.02620771899819374, 0.0217842198908329, 0.01299024187028408, 0.0315401554107666, -0.011414749547839165, -0.003270284039899707, -0.05405152589082718, -0.027525680139660835, 0.013490158133208752, 0.010513385757803917, -0.017860636115074158, -0.020693494006991386, 0.002999496180564165, 0.016694165766239166, 0.02367784082889557, -0.0009056244161911309, 0.010240703821182251, -0.010331598110496998, -0.0057035875506699085, 0.009801384061574936, 0.014755097217857838, -0.010869386605918407, 0.003980392124503851, -0.03253998979926109, 0.009687766432762146, -0.0260107833892107, -0.011308706365525723, -0.016436632722616196, 0.011975261382758617, 0.004559840075671673, -0.041902054101228714, 0.02734389156103134, -0.006900356151163578, 0.001878472394309938, -0.00731695257127285, -0.020481407642364502, 0.005737672559916973, -0.005737672559916973, 0.0010556938359513879, 0.0031339433044195175, -0.009089382365345955, -0.00559375761076808, -0.0027230274863541126, -0.00978623516857624, 0.007525251246988773, 0.011452621780335903, -0.011301131919026375, 0.014618756249547005, -0.014550586231052876, 0.01970881037414074, 0.018875617533922195, 0.0017724295612424612, 0.008150146342813969, -0.04820402339100838, 0.0036073485389351845, -0.013111433945596218, 0.005290777888149023, 0.0066503980197012424, 0.017800040543079376, -0.01661842130124569, 0.025283632799983025, 0.005510438233613968, 0.007915337570011616, 0.007862315513193607, -0.013770414516329765, -0.004491669591516256, 0.047598063945770264, 0.016376037150621414, -0.007059420458972454, -0.02237503044307232, -0.030085856094956398, -0.011838920414447784, 0.01263424102216959, 0.033903397619724274, 0.009134829044342041, 0.005680863745510578, -0.0013473115395754576, -0.013353817164897919, -0.01221007015556097, 0.02555631287395954, 0.02045110985636711, -0.013308370485901833, 0.0003084235650021583, 0.02348090521991253, -0.007832017727196217, 0.004461371805518866, -0.015323183499276638, -0.00023516410146839917, 0.004453797359019518, 0.013581052422523499, -0.029798025265336037, -0.007945635356009007, -0.013058412820100784, -0.0051506501622498035, -0.027177253738045692, 0.015308034606277943, 0.029646536335349083, 0.019178597256541252, 0.0468406155705452, 0.025647208094596863, -0.015027779154479504, 0.03193403035402298, -0.00449545681476593, -0.01567918434739113, -0.01778489165008068, -0.0211328137665987, 0.0012033963575959206, 0.004620436113327742, 0.01596701517701149, -0.01687595248222351, -0.0007290442008525133, -0.011914665810763836, 0.02425350248813629, -0.00020616802794393152, 0.011369302868843079, -0.026283463463187218, -0.04053864628076553, -0.019527023658156395, -0.007476016879081726, 0.00865006260573864, -0.025056397542357445, 0.003980392124503851, 0.01077849231660366, 0.027586275711655617, 0.0195118747651577, -0.016966847702860832, -0.002713559428229928, -0.0040712859481573105, -0.014429394155740738, -0.03082815557718277, -0.010876961052417755, 0.02078438736498356, -0.019890598952770233, 0.0067526535131037235, 0.00592703465372324, 0.013944627717137337, 0.007260144222527742, -0.022253837436437607, -0.001942855422385037, 0.004147030878812075, 0.0003938732261303812, -0.009680191986262798, 0.00010349824151489884, -0.010096789337694645, 0.03144926205277443, -0.0193452350795269, -0.024632226675748825, -0.014141564257442951, -0.007237420883029699, 0.00027268147096037865, -0.0030979644507169724, 0.014436968602240086, -0.006343631539493799, -0.02351120300590992, 0.0134977325797081, -0.00964231975376606, -0.004972649738192558, 0.00025682238629087806, 0.038841959089040756, 0.010945131070911884, -0.01206615474075079, -0.011960112489759922, -0.016860803589224815, 0.004669670015573502, -0.010914833284914494, -0.030555473640561104, -0.011869218200445175, -0.009490829892456532, 0.0061769927851855755, -0.003783455351367593, 0.006824611220508814, 0.004128094296902418, 0.00946053210645914, 0.007275293115526438, -0.026268314570188522, -0.015118672512471676, -0.0026150911580771208, -0.021147962659597397, -0.02507154643535614, -0.015406503342092037, 0.025707803666591644, -0.010271001607179642, -0.02289009466767311, -0.02013298124074936, 0.013490158133208752, -0.012641816399991512, -0.03099479340016842, 0.020602600648999214, -0.011028450913727283, 0.014399096369743347, -0.0017146740574389696, 0.0310553889721632, 0.021163111552596092, -1.3351509551284835e-05, -0.028964832425117493, -0.006854909006506205, 0.004662095569074154, -0.006525419186800718, -0.02132975123822689, 0.007271505892276764, -0.011778324842453003, -0.0063019716180861, 0.012763007543981075, 0.03420637547969818, -0.01396735105663538, -0.015845824033021927, -0.004075073171406984, -0.0010736832628026605, 0.020314769819378853, 0.01661842130124569, -0.019042255356907845, -0.022450774908065796, -0.02302643470466137, 0.027298444882035255, 0.014762671664357185, -0.02487460896372795, 0.011596537195146084, 0.006222439464181662, -0.012020708061754704, 0.014664203859865665, -0.007150314282625914, -0.0006083258776925504, 0.012702411971986294, -0.016118504106998444, -0.008604614995419979, -0.03669080510735512, 0.012308538891375065, 0.003328986233100295, 0.0008914222125895321, 0.01701229438185692, 0.024344395846128464, 0.017224378883838654, -0.011619260534644127, -0.06041409447789192, 0.0011409068247303367, 0.020042087882757187, -0.0010159278754144907, 0.0072260587476193905, -0.02575325034558773, -0.015724631026387215, -0.015451950021088123, 0.00999832060188055, 0.02367784082889557, -0.0030600919853895903, 0.012035856954753399, 0.006854909006506205, -0.028374021872878075, 0.011490494012832642, -0.01370981801301241, 0.009740788489580154, 0.05114292353391647, 0.008165295235812664, 0.010225554928183556, -0.010611853562295437, -0.011619260534644127, 0.028071042150259018, 0.006423163693398237, -0.002558282343670726, -0.009324191138148308, -0.010377044789493084, -0.005192309617996216, -0.0016256739618256688, 0.013308370485901833, -0.03184313699603081, 0.00845312513411045, -0.007938060909509659, -0.028798192739486694, 0.017391018569469452, 0.024692822247743607, -0.010717896744608879, 0.017209229990839958, -0.011899515986442566, -0.0027949849609285593, 0.02741963602602482, 0.013762840069830418, -0.0070404838770627975, 0.005582395475357771, 0.01622454822063446, -0.00874853041023016, -0.000709634565282613, -0.0021132812835276127, 0.004321244079619646, 0.0057528214529156685, -0.0053854589350521564, -0.006923079490661621, -0.02201145514845848, -0.039266131818294525, -0.00046890799421817064, -0.011164790950715542, -0.017057741060853004, 0.014224883168935776, -0.002527984557673335, -0.0034293481148779392, -0.018284806981682777, 0.026737933978438377, 0.004593925550580025, 0.00599899236112833, 0.021799368783831596, 0.03956910967826843, 0.012664539739489555, -0.005605119280517101, -0.0040712859481573105, -0.0054081822745501995, -0.011551090516149998, -0.002370813861489296, -0.0004663042491301894, 0.004260648041963577, 0.0002892506599891931, -0.02643495425581932, 0.012573645450174809, -0.00660873856395483, -0.00024806440342217684, 0.020148130133748055, -0.0017269826494157314, 0.00900606345385313, 0.00040618175989948213, -0.004131881520152092, 0.01460360735654831, -0.03290356323122978, -0.00428337138146162, 0.0023973246570676565, -0.006002779584378004, -0.009687766432762146, -0.004768138285726309, 0.007710826117545366, -0.021405495703220367, 0.009324191138148308, 0.0012990242103114724, 0.027177253738045692, 0.002709772204980254, -0.03141896426677704, -0.019920896738767624, 0.010793641209602356, 0.0013056518509984016, 0.01464905496686697, -0.009059084579348564, -0.010914833284914494, 0.017178932204842567, -0.017451614141464233, -0.0051998840644955635, -0.008846999146044254, 0.013982499949634075, 0.003931157756596804, -0.0039652432315051556, -0.024692822247743607, 0.002817708533257246, 0.008248614147305489, 0.022874945774674416, -0.017572805285453796, 0.0008308263495564461, -0.011869218200445175, 0.03144926205277443, -0.0054649910889565945, 0.005813417490571737, 0.0014808118576183915, -0.016436632722616196, 0.008331933990120888, -0.029055725783109665, 0.009816532954573631, -0.006707206834107637, 0.0004499717615544796, 0.0038061789236962795, 0.013777988962829113, 0.01899680867791176, 0.005271841771900654, -0.013914329931139946, -0.01046793907880783, 0.0013236412778496742, 0.007324527483433485, 0.012944795191287994, 0.005446054972708225, 0.022193241864442825, 0.0008170976070687175, -0.03341862931847572, 0.006896568927913904, -0.018875617533922195, 0.00027670542476698756, -0.02595018595457077, -0.02189026214182377, 0.016800208017230034, 3.7280668038874865e-05, -0.00918785110116005, -0.005377884488552809, -0.004677244462072849, 0.01583067514002323, -0.01928463950753212, -0.0036262848880141973, 0.014512713998556137, -0.042295925319194794, -0.02442014031112194, -0.008884871378540993, -0.008839424699544907, 0.0006173205329105258, 0.0037247531581670046, -0.007627506740391254, -0.005843715276569128, -0.003145304974168539, -0.0011428004363551736, 0.010975428856909275, 0.019557321444153786, 0.0035656888503581285, 0.0005240596947260201, -0.0023121116682887077, 0.003304369281977415, -0.04574989154934883, -0.003630072111263871, -0.027798360213637352, -0.0034236672800034285, -0.016997145488858223, 0.0393570251762867, -0.029192065820097923, 0.02510184422135353, 0.01892106421291828, -0.0028044532518833876, 0.00020427440176717937, -0.04265950247645378, -0.020996473729610443, 0.0015792801277711987, -0.012672114185988903, -0.017027443274855614, -0.020693494006991386, 0.027374189347028732, -0.01295994408428669, 0.0028877726290374994, 0.009354488924145699, -0.022450774908065796, 0.008119848556816578, -0.007862315513193607, 0.0045674145221710205, -0.010286151431500912, -0.041447583585977554, 0.017663700506091118, -0.016179099678993225, -0.013868882320821285, 0.01164198387414217, 0.014073393307626247, -0.009702915325760841, 0.009771086275577545, -0.017421316355466843, 0.0022837072610855103, 0.03308534994721413, -0.008165295235812664, 0.013209902681410313, 0.008430401794612408, 0.0010945131070911884, -0.022874945774674416, -0.014255180954933167, -0.004404562991112471, 0.0038686683401465416, -0.01681535691022873, -0.0032759648747742176, -0.027237849310040474, -0.0027665807865560055, -0.03947821632027626, 0.003953881096094847, -0.0012299070367589593, 0.019648214802145958, -0.022193241864442825, -0.0013643541606143117, -0.0016540782526135445, 0.003838370321318507, 0.015664035454392433, 0.001582120661623776, 0.0164214838296175, -0.018254509195685387, 0.024056565016508102, 0.03650901839137077, -0.03320654481649399, 0.014338500797748566, 0.012823604047298431, -0.017027443274855614, 0.015035353600978851, 0.009869554080069065, -0.015845824033021927, 0.006389078218489885, 0.005411969963461161, 0.02087528072297573, -0.02370813861489296, -0.008854573592543602, 0.007294229231774807, 0.004147030878812075, -0.015255013480782509, 0.02367784082889557, 0.013891605660319328, 0.0159367173910141, -0.006370142102241516, -0.009263595566153526, -0.001665439922362566, 0.007892613299190998, 0.006616313010454178, 0.0034369227942079306, -0.018451446667313576, -0.0016711208736523986, -0.012202495709061623, -0.013194753788411617, 0.03060092031955719, 0.0012611517449840903, 0.029222363606095314, -0.013982499949634075, 0.007744911126792431, 0.016057908535003662, 0.008915169164538383, -0.01500505581498146, 0.004010689910501242, 0.0032986884471029043, 0.008581891655921936, -0.001978834392502904, -0.017057741060853004, -0.005866439081728458, 0.01464905496686697, -0.00017729029059410095, -0.04265950247645378, -0.009309042245149612, 0.0022837072610855103, -0.002103813225403428, -0.013694669120013714, -0.005404395051300526, 0.0012507368810474873, -0.0036660509649664164, 0.005396820604801178, 0.013081136159598827, -0.004563627298921347, -0.0022079625632613897, -0.018618084490299225, -0.011899515986442566, 0.007646442856639624, 0.0004447643004823476, -0.005696013104170561, 0.009331765584647655, -0.006105035077780485, -0.004802223760634661, 0.02078438736498356, -0.002295068930834532, -0.008544019423425198, -0.011111769825220108, -0.016466930508613586, 0.007191973738372326, -0.018981659784913063, 0.0013226944720372558, 0.008907594718039036, 0.02614712342619896, -0.0037853489629924297, 0.017254676669836044, -0.013126582838594913, -0.018905915319919586, -0.014512713998556137, -0.017163783311843872, -0.0002705511578824371, -0.0014022266259416938, -0.011604111641645432, -0.011740452609956264, 0.07501770555973053, 0.01866353116929531, 0.0013889712281525135, 0.01908770203590393, -0.013952202163636684, -0.009740788489580154, -0.011816197074949741, 0.025874441489577293, 0.01798182725906372, -0.005692225880920887, -0.009740788489580154, -0.0022761328145861626, -0.0030884963925927877, 0.0008488157764077187, -0.018315104767680168, 0.014315777458250523, 0.0009345021098852158, 0.020011790096759796, -0.007271505892276764, 0.001757280551828444, -0.00329300737939775, 0.004022051580250263, -0.025738101452589035, 0.02949504554271698, 0.018936213105916977, -0.004290945827960968, -0.0036433273926377296, 0.012217644602060318, 0.011089046485722065, 0.02442014031112194, -0.007476016879081726, -0.007082143798470497, 0.0005472565535455942, -0.01704259216785431, -0.0006589802214875817, 0.020178427919745445, -0.01399764884263277, 0.008528870530426502, 0.017996976152062416, 0.016512377187609673, 0.0035637952387332916, -0.0006106928922235966, 0.019420979544520378, 0.006377716548740864, -0.003185071051120758, 0.0014363117516040802, 0.0073055909015238285, -0.0005188522627577186, 0.006271673832088709, 0.00531728845089674, -0.021344900131225586, -0.01817876473069191, -0.005794481374323368, -0.0059686945751309395, -0.01464905496686697, -0.012785730883479118, 0.03650901839137077, -0.004711329936981201, 0.01925434172153473, -0.0073851230554282665, -0.007161675952374935, -0.02120855823159218, -0.004662095569074154, -0.03817540407180786, -0.0004672510549426079, 0.003984179347753525, 0.004628010559827089, -0.013823435641825199, 0.016103355213999748, 0.01271756086498499, -0.008362231776118279, 0.01990574784576893, -0.0008090496994554996, -0.021147962659597397, -0.012164623476564884, 0.031297773122787476, -0.013634073548018932, -0.00900606345385313, 0.017163783311843872, 0.004995373077690601, -0.01723952777683735, 0.0015414077788591385, -0.004188690334558487, -0.01622454822063446, 0.004003115464001894, -0.011437472887337208, 0.028889086097478867, -0.004022051580250263, 0.013149306178092957, -0.009922576136887074, -0.01167228166013956, 0.0006315227365121245, 0.003287326544523239, 0.012104027904570103, -0.0009444436291232705, 0.002101919613778591, 0.00592703465372324, 0.0005794481257908046, 0.0253593772649765, -0.01583067514002323, 0.008400104008615017, 0.006396652664989233, 0.006396652664989233, 0.017769742757081985, 0.0001124929403886199, 0.01639118604362011, 0.0005652459803968668, 0.0071541015058755875, -0.016042759642004967, -0.0009837362449616194, 0.010914833284914494, 0.00628303550183773, -0.016981996595859528, 0.013368966989219189, -0.027071209624409676, -0.0029767726082354784, 0.019239192828536034, -0.005820991937071085, -0.022223539650440216, 0.0016692271456122398, 0.014005223289132118, -0.002223111456260085, 0.002306430833414197, -0.005563459359109402, -0.004040987696498632, -0.011891941539943218, -0.018315104767680168, -0.009983171708881855, 0.0033763267565518618, -0.011452621780335903, 0.012058580294251442, 0.015164119191467762, 0.008544019423425198, -0.016921401023864746, 0.01752735860645771, 0.004025838803499937, 0.010952705517411232, -0.0073358891531825066, 0.02149638906121254, 4.325741247157566e-05, 0.0010007788660004735, 0.010687598958611488, 0.006116396747529507, 0.008581891655921936, 0.011407175101339817, 0.011543515138328075, -0.01474752277135849, -0.03541829437017441, 0.022693157196044922, -0.0005557778640650213, 0.014391521923244, -0.023435456678271294, 0.0155276944860816, -0.003491837764158845, 0.003143411362543702, -0.00548013998195529, -0.004953713156282902, 0.012058580294251442, -6.882129673613235e-05, -0.0077865710482001305, 0.002533665392547846, -0.024601928889751434, 0.010627002455294132, -0.0020299621392041445, -0.009445383213460445, 0.010217980481684208, 0.02036021649837494, 0.0165881235152483, 0.02325366996228695, -0.009293893352150917, -0.004571201745420694, 0.018057573586702347, 0.00682082399725914, -0.012452453374862671, -0.0024673885200172663, 0.00139843940269202, 0.0044083502143621445, 0.011922240257263184, -0.001580227049998939, 0.0043591163121163845, -0.0009406564058735967, -0.0022439411841332912, 0.008604614995419979, -0.005767970345914364, 0.005767970345914364, 0.00366983818821609, 0.018981659784913063, -0.02084498293697834, -0.002264771144837141, 0.02513214200735092, -0.0022136433981359005, 0.007006398867815733, 0.004923415370285511, 0.011907090432941914, -0.017057741060853004, 0.008384955115616322, 0.004813585430383682, 0.0412960946559906, 0.013990074396133423, 0.008937892504036427, -0.0007976879714988172, 0.01483084261417389, 0.0034691141918301582, 0.017391018569469452, 0.010899684391915798, 0.003188858274370432, -0.0009008903289213777, -0.020769238471984863, 0.007991082035005093, -0.006173205561935902, -0.02757112681865692, -0.0056013320572674274, -0.002853687386959791, -0.030964495614171028, -0.0117101538926363, 0.028040744364261627, 0.015648886561393738, -0.03466084599494934, 0.02867700159549713, 0.012338836677372456, 0.01274785865098238, 0.008377380669116974, 0.005139288492500782, -0.009475680999457836, 0.007332101929932833, 0.02299613691866398, -0.0019674724899232388, 0.025738101452589035, 0.005730098113417625, -0.010831514373421669, 0.014755097217857838, -0.018163615837693214, -0.00896061584353447, 0.013141731731593609, 0.016542674973607063, -0.014391521923244, 0.013376541435718536, -0.0010083533124998212, 0.03160075098276138, -0.012217644602060318, 0.0026643252931535244, 0.03017674945294857, 0.005790694151073694, -0.010119512677192688, 0.00230453722178936, -0.01217977236956358, -0.009271170012652874, -0.012869050726294518, 0.0017326634842902422, -2.577100349299144e-05, 0.005101415794342756, -0.013717392459511757, -0.01429305411875248, 0.009990746155381203, 0.014792969450354576, 0.005393033381551504, 0.004718904383480549, 0.00957414973527193, 0.017663700506091118, 0.0054157571867108345, -0.016557825729250908, 0.004510606173425913, 0.0022344731260091066, -0.008331933990120888, -0.005930821876972914, 0.012429730035364628, -0.011126918718218803, 0.001851014792919159, 0.0028309638146311045, -0.011020876467227936, -0.000444527599029243, -0.014489990659058094, 0.009763511829078197, 0.002899134298786521, -0.005953545216470957, -0.006055801175534725, 0.023829331621527672, -0.01188436709344387, 0.006847334560006857, 0.008809125982224941, 0.0005851289606653154, 0.007116228807717562, -0.005597544834017754, -0.014845991507172585, -0.010172533802688122, -0.03493352606892586, -0.0077297622337937355, 0.015482247807085514, -0.005074905231595039, 0.007369974162429571, 0.010157384909689426, -0.03320654481649399, -0.01289177406579256, 0.021314602345228195, -0.0012497900752350688, 0.014921735972166061, -0.0073358891531825066, 0.006377716548740864, 0.01846659556031227, 0.00023729442909825593, 0.01477782055735588, -0.009505978785455227, -0.013588626869022846, -0.009771086275577545, 0.01769399829208851, 0.003262709593400359, 0.025177588686347008, -0.020557153970003128, -0.01710318773984909, 0.02314762771129608, -0.003368752310052514, 0.0005160117871128023, -0.017194081097841263, 0.004393201321363449, -0.009915001690387726, 0.0061769927851855755, 0.013119008392095566, 0.02442014031112194, 0.0014391521690413356, -0.003431241726502776, -0.007703251671046019, 0.011392026208341122, -0.013520455919206142, 0.007351038046181202, 0.0071768248453736305, 0.020239025354385376, 0.012619092129170895, 0.012407006695866585, 0.011899515986442566, -0.014088542200624943, 0.0019693661015480757, 0.0003678359498735517, -0.01602761074900627, 0.0014344181399792433, -0.015444375574588776, 0.006411802023649216, -0.0029748789966106415, 0.0008038422674871981, -0.009581724181771278, 0.016057908535003662, -0.0005131713696755469, 0.0047832876443862915, -0.006529206410050392, -0.019527023658156395, 0.00028499000472947955, 0.029025427997112274, 0.031009942293167114, -0.0012611517449840903, 0.010384619235992432, 0.023162776604294777, -0.003817540593445301, -0.0075214640237390995, 0.008816700428724289, -0.005696013104170561, 0.003709604265168309, -0.016376037150621414, 0.006532993633300066, 0.009331765584647655, 0.0006168471300043166, -0.008998488076031208, -0.016042759642004967, 0.020860131829977036, 0.007343463599681854, -0.0073851230554282665, 0.004851457662880421, 0.002815814921632409, -0.014929310418665409, 0.007638868410140276, -0.026737933978438377, 0.009960448369383812, 0.010717896744608879, -0.028237681835889816, -0.00013302690058480948, -0.005661927629262209, 0.0018434403464198112, -0.0014912268379703164, 0.003262709593400359, -0.003450178075581789, 0.012119176797568798, 0.010839088819921017, 0.028767894953489304, -0.01399764884263277, -8.669235103297979e-05, -0.008377380669116974, 0.0217842198908329, 0.01701229438185692, 0.0031680285464972258, 0.018512042239308357, -0.0047264788299798965, 0.024935206398367882, -0.0063019716180861, 0.02731359377503395, 0.0024673885200172663, -0.004574988968670368, 0.00839252956211567, 0.0070745693519711494, -0.010581555776298046, 0.0039122216403484344, 0.003166134934872389, -0.023889927193522453, 0.011566239409148693, -4.2606479837559164e-05, -0.013543179258704185, 0.004593925550580025, -0.004669670015573502, -0.03037368692457676, 0.03638782724738121, 0.009475680999457836, 0.0009155659354291856, 0.0011816197074949741, 0.016269994899630547, -0.003347922582179308, -0.02234473079442978, -0.0007441931520588696, 0.0211328137665987, -0.0005931768682785332, 0.018708977848291397, -0.0032816457096487284, -0.00788503885269165, 0.006972313858568668, -0.003224837128072977, 0.0015792801277711987, 0.01957247033715248, -0.0046242233365774155, 0.006055801175534725, 0.026419805362820625, 0.02120855823159218, 0.011816197074949741, -0.005082479678094387, -0.0039122216403484344, -0.012361560016870499, -0.00796835869550705, -0.013815861195325851, 0.01857263781130314, -0.0030506239272654057, -0.005885375197976828, 0.0035600080154836178, 0.004241711925715208, 0.0026188783813267946, 0.02546541951596737, -0.0183757022023201, -0.016557825729250908, -0.01892106421291828, -0.01286147627979517, -0.0006159003241918981, 0.019784554839134216, -0.009952873922884464, 0.032146114856004715, -0.0050408197566866875, -0.008081975392997265, -0.005680863745510578, 0.019875450059771538, 0.002921857638284564, 0.006154269445687532, -0.016769910231232643, -0.021314602345228195, -0.01464905496686697, 0.010286151431500912, 0.010021043941378593, -0.00369445513933897, 0.010346747003495693, 0.008877296932041645, 0.0011153429513797164, -0.014027946628630161, 0.0027192402631044388, -0.01121781300753355, 0.000909885042347014, -0.008839424699544907, -0.013937053270637989, -8.497625822201371e-05, -0.015368631109595299, 0.013096285052597523, 0.004245499148964882, -0.010558832436800003, -0.00829406175762415, 0.012611517682671547, 0.01857263781130314, 0.00821074191480875, 0.010755768977105618, -0.012194921262562275, -0.0018453339580446482, 0.009733214043080807, 0.009718064218759537, 0.011604111641645432, 0.020738940685987473, -0.012338836677372456, -0.011702579446136951, 0.023162776604294777, 0.010801215656101704, 0.02523818425834179, 0.0072336336597800255, 0.001807461609132588, 0.009581724181771278, 0.009952873922884464, 0.0009780554100871086, 0.004828734323382378, -0.006710994057357311, 0.016497228294610977, -0.012104027904570103, 0.021572133526206017, 0.011308706365525723, -0.00714652705937624, -0.00522639462724328, 0.0211328137665987, 0.020542003214359283, 0.01331594493240118, -0.000344402389600873, 0.010846663266420364, 0.010414917021989822, -0.007138952612876892, 0.03499412164092064, -0.0002670006069820374, -0.03729676455259323, 0.0044083502143621445, -0.011202664114534855, 0.007036696653813124, 0.013368966989219189, 0.03166135028004646, 0.015482247807085514, -0.0027930913493037224, 0.0026226656045764685, -0.0006007513729855418, -0.01619425043463707, -0.014732373878359795, -0.01908770203590393, 0.0031169007997959852, 0.03775123506784439, 0.002671899739652872, -0.00863491278141737, -0.01687595248222351, -0.01018010824918747, 0.009089382365345955, 0.01367194578051567, -0.011808622628450394, -0.008665211498737335, -0.012376708909869194, 0.011255685240030289, -0.009013637900352478, 0.03193403035402298, -0.01321747712790966, -0.006339844316244125, 0.003556220792233944, 0.009543851017951965, -0.0014883863041177392, -0.0040144771337509155, 0.006067162845283747, -0.004643159452825785, 0.00011947566963499412, -0.002817708533257246, 0.007699464447796345, -0.014785395003855228, 0.006786738988012075, 0.025738101452589035, 0.002859368221834302, 0.01567918434739113, -0.026389507576823235, -0.01701229438185692, -0.00842282734811306, 0.0022117497865110636, 0.022102348506450653, 0.00889244582504034, -0.01889076642692089, -0.01068002451211214, 0.007013973314315081, -0.0004980224184691906, 0.004813585430383682, -0.020860131829977036, 0.009180275723338127, 0.003387688659131527, 0.04574989154934883, -0.016557825729250908, 0.007218484301120043, -0.02510184422135353, -0.005158224608749151, 0.009331765584647655, -0.010884535498917103, 0.0008696456206962466, -0.0017421316588297486, 0.022980988025665283, -0.03157045319676399, -0.0041735414415597916, -0.014709650538861752, 0.0009406564058735967, 0.001370981801301241, 0.009566575288772583, 0.03502441942691803, 0.014792969450354576, 0.014558160677552223, 0.012664539739489555, -0.04205354303121567, 0.0299192164093256, -0.004889330361038446, -0.007975933142006397, -0.0012706199195235968, -0.007657804526388645, 0.012800879776477814, -0.004790862090885639, -0.02093587815761566, -0.03541829437017441, -0.036630209535360336, -0.011240536347031593, 0.02825283072888851, -0.01131628081202507, -0.0019239193061366677, -0.012353985570371151, -0.003700135974213481, -0.007438144646584988, -0.031782541424036026, 0.010899684391915798, -0.012255516834557056, -0.00014332345745060593, 0.02348090521991253, 0.02734389156103134, 0.014527862891554832, 0.020314769819378853, 0.003976604901254177, 0.008740955963730812, 0.0037493701092898846, 0.010361895896494389, 0.0016900569899007678, -0.017587954178452492, -0.013308370485901833, 0.016406334936618805, -0.0054384805262088776, -0.014573309570550919, 0.019693661481142044, -0.00750252790749073, 0.006960952188819647, -0.002590473974123597, 0.0020564727019518614, -0.008528870530426502, -0.012528198771178722, 0.005923247430473566, -0.040175069123506546, 0.017906082794070244, -0.037024084478616714, -0.03108568675816059, -0.0016086313407868147, 0.01264939084649086, -0.00637392932549119, 0.0001152150216512382, -0.02149638906121254, -0.006514057517051697, 0.02741963602602482, -0.004503031726926565, 0.003005177015438676, 0.02149638906121254, 0.008316785097122192, 0.008801551535725594, -0.00939993653446436, -0.01993604563176632, 0.020269323140382767, -0.009778660722076893, 0.0005950704799033701, 0.009505978785455227, -0.01693654991686344, -0.002779836067929864, -0.03384280204772949, 0.012785730883479118, -0.02195085771381855, -0.014952033758163452, -0.020481407642364502, -0.0024654949083924294, 0.013664371334016323, -0.0031793902162462473, 0.016012461856007576, 0.0017194082029163837, 0.028480064123868942, 0.00975593738257885, -0.02107221819460392, 0.005332437809556723, 0.005249118432402611, 0.007453293539583683, 0.004010689910501242, 0.0023594521917402744, 0.00931661669164896, 0.008831850253045559, -0.015368631109595299, 0.0015792801277711987, -0.04529542103409767, -0.006926866713911295, 0.004147030878812075, -0.019330086186528206, -0.017845487222075462, -1.3447670426103286e-05, -0.0008691721595823765, 0.007665378972887993, -0.004400775767862797, -0.0009094116394408047, -0.016406334936618805, -0.007063207682222128, -0.018981659784913063, -0.023102181032299995, -0.018254509195685387, 0.011445047333836555, 0.01167228166013956, 0.0005714002181775868, 0.002923751249909401, 0.0004923415253870189, 0.016482079401612282, -0.030040409415960312, -0.000451865402283147, -0.005237756762653589, -0.014876289293169975, -0.004434861242771149, -0.026222867891192436, 0.009634745307266712, 0.010021043941378593, -0.010611853562295437, -0.0038099661469459534, -0.0023386222310364246, -0.004328818526118994, 0.006915505044162273, -0.01068002451211214, -0.007517676800489426, -0.018451446667313576, 0.02637435868382454, -0.010945131070911884, -0.007547974586486816, 0.014702076092362404, 0.026480400934815407, 0.010127087123692036, -0.00444622291252017, -0.005476352758705616, 0.008316785097122192, -0.0022003878839313984, 0.009202999994158745, 0.008225890807807446, -0.016830505803227425, 0.028570959344506264, 0.009202999994158745, -2.047478119493462e-05, -0.010233129374682903, -0.0050483946688473225, -0.006926866713911295, -0.010498236864805222, 0.009695340879261494, -0.016406334936618805, 0.008612189441919327, -0.013990074396133423, -0.008725807070732117, -0.048597898334264755, -0.008968190290033817, 0.004908266477286816, 0.004654521122574806, -0.0063019716180861, 0.01131628081202507, 0.005218820180743933, -0.010127087123692036, 0.0030695602763444185, -0.009846830740571022, -0.01046793907880783, 0.024707971140742302, -0.010611853562295437, 0.004525755066424608, -0.0022363667376339436, 0.014050669968128204, -0.016466930508613586, 0.002190919825807214, 0.007483591325581074, 0.00946053210645914, -0.0015054289251565933, 0.0028707298915833235, 0.00352781661786139, -0.01746676303446293, 0.01063457690179348, -0.019269490614533424, 0.007589634042233229, 0.0012204389786347747, 0.007123803254216909, -0.0042000520043075085, -0.005476352758705616, -0.03199462592601776, -0.021511537954211235, 0.00531728845089674, -0.016997145488858223, 0.01417943648993969, 0.013588626869022846, 0.009702915325760841, 0.019633065909147263, -0.009627170860767365, 0.02978287637233734, -0.02214779518544674, 0.03181283921003342, -0.00886214803904295, -0.011028450913727283, 0.02042081207036972, 0.026071378961205482, -0.003160454099997878, -0.008415252901613712, 0.0170728899538517, -0.005218820180743933, -0.011248110793530941, 0.00032262573949992657, 0.013293221592903137, 0.011232961900532246, 0.016557825729250908, -0.0015934823313727975, -0.005097628571093082, -0.008339508436620235, -0.009740788489580154, 0.00644588703289628, 0.009899851866066456, -0.01778489165008068, -0.00889244582504034, -0.005843715276569128, -0.008854573592543602, 0.004351541865617037, 0.005790694151073694, -0.008672785945236683, 0.00020841669174842536, 0.013581052422523499, -0.00788503885269165, 0.021617580205202103, 0.01164198387414217, -0.00322294351644814, -0.008028954267501831, -0.004859032109379768, 0.006453461479395628, 0.032146114856004715, -0.011157216504216194, -0.0020962387789040804, 0.025677505880594254, 0.009649894200265408, -0.03778153285384178, -0.001907823490910232, 0.004290945827960968, 0.009695340879261494, -0.009043935686349869, -0.005749034229665995, 0.014346075244247913, -0.017966678366065025, -0.0012933433754369617, 0.009808958508074284, -0.009180275723338127, -0.02351120300590992, 0.006540568079799414, 0.004442435689270496, 0.0023386222310364246, -0.03147955983877182, 0.013247774913907051, -0.018936213105916977, -0.011467770673334599, 0.0027911977376788855, 0.0033138373401015997, 0.0029729853849858046, -0.0030979644507169724, 0.008460700511932373, -0.010217980481684208, -0.013777988962829113, -0.0031793902162462473, 0.01063457690179348, -0.014247606508433819, -0.015860972926020622, -0.0357818678021431, 0.019845152273774147, -0.0033384542912244797, 0.007044271100312471, 0.0042795841582119465, 0.011179939843714237, 6.000412395223975e-05, 0.0011134493397548795, 0.026495549827814102, 0.004351541865617037, 0.01723952777683735, -0.02413230948150158, 0.010983003303408623, -0.00910453125834465, 0.007938060909509659, -0.004033413249999285, -0.0031945391092449427, -0.010710322298109531, -0.007892613299190998, 0.01811816915869713, -0.007638868410140276, 0.0001508979476056993, 0.014353649690747261, 0.004442435689270496, -0.011982835829257965, 0.01385373342782259, -0.007794145494699478, 0.024920057505369186, 0.011763175949454308, -0.0011948751052841544, -0.030843304470181465, -0.00211706873960793, 0.006158056668937206, 0.005366522818803787, -0.0028347510378807783, 0.013368966989219189, 0.017845487222075462, -0.0040712859481573105, 0.0011532154167070985, -0.012899348512291908, 0.024904906749725342, -0.0007105814293026924, 0.012800879776477814, -0.019163448363542557, -0.005434693302959204, 0.001171204843558371, -0.015330757945775986, -0.022738605737686157, 0.0005448895390145481, -0.003637646557763219, -0.005597544834017754, 0.015618588775396347, -0.04529542103409767, -0.007669166196137667, -0.00543090607970953, 0.02754082903265953, 0.009695340879261494, -0.003366858698427677, 0.002488218480721116, 0.00755176180973649, 0.02501095086336136, 0.004817372653633356, 0.01801212690770626, -0.02042081207036972, -0.007210909854620695, 0.0024598140735179186, 0.0006755493814125657, -0.0011390132131054997, -0.003205901011824608, 0.01778489165008068, -0.005370310042053461, -0.002079196274280548, -0.03696348890662193, -0.004378052428364754, -0.00868036039173603, -0.01733042299747467, -0.0026472825556993484, -0.004908266477286816, 0.0004951820010319352, -0.007309378124773502, -0.01271756086498499, 0.007547974586486816, 0.012316113337874413, -0.018390851095318794, 0.0068586962297558784, 0.0028252829797565937, 0.025116993114352226, 0.01139960065484047, 0.01045278925448656, -0.023950522765517235, -0.025828994810581207, 0.002043217420578003, 0.0034160928335040808, -0.0061201839707791805, 0.013050838373601437, -0.00592703465372324, 0.009945299476385117, 0.00832435954362154, -0.018708977848291397, 0.0007991081802174449, -0.0008568636258132756, 0.011164790950715542, -0.016769910231232643, -0.018481744453310966, 0.008983339183032513, -0.007260144222527742, -0.015664035454392433, -0.021663028746843338, 0.013475009240210056, -0.022784052416682243, 0.0038819236215204, -0.003554327180609107, 0.005305926781147718, -0.010983003303408623, 0.011089046485722065, 0.011020876467227936, -0.005692225880920887, 0.014838417060673237, 0.003700135974213481, 0.026419805362820625, 0.026707634329795837, 0.020435960963368416, -0.009831681847572327, -0.0292678102850914, -0.02354150079190731, 0.024662524461746216, 0.0016266207676380873, -0.004037200473248959, 0.023299116641283035, 0.00910453125834465, 0.015512545593082905, 0.023799031972885132, 0.0006736557697877288, 0.006052013952285051, 0.021223707124590874, -0.022268986329436302, 0.00355243356898427, -0.010483087971806526, 0.00934691447764635, -0.0029142831917852163, -0.00967261753976345, -0.015361055731773376, 0.0031585602555423975, 0.004135668743401766, 0.005169586278498173, -0.0026889422442764044, 0.016345739364624023, 0.030873602256178856, -0.00733967637643218, 0.0318734347820282, 0.009369638748466969, -0.018072722479701042, -0.007419208530336618, 0.005131713580340147, 0.0054157571867108345, -0.00023646595946047455, -0.018299955874681473, -0.0031377305276691914, -0.03632723167538643, 0.006718568503856659, 0.014187010936439037, 0.005870226304978132, -0.00045588932698592544, 0.0059914179146289825, 0.00482115987688303, 0.008263763040304184, 0.014232457615435123, 0.010740620084106922, -0.00013681413838639855, -0.016239697113633156, -0.007938060909509659, 0.00042062063585035503, 0.009505978785455227, -0.010854237712919712, -0.004056137055158615, -0.015845824033021927, -0.0038364767096936703, -0.0068889944814145565, 0.012914497405290604, -0.01730012521147728, -0.034842632710933685, 0.012846327386796474, -0.011384451761841774, 0.0074798041023314, -0.0036849870812147856, 0.014489990659058094, 0.023980820551514626, 0.0074911657720804214, -0.011331429705023766, 0.01196768693625927, 0.001615258981473744, -0.007748698350042105, 0.012573645450174809, -0.021147962659597397, 0.005756608676165342, -0.004696181043982506, -0.04208384081721306, -0.013232626020908356, -0.010816364549100399, 0.009331765584647655, 0.008968190290033817, -0.0070972926914691925, -0.004362903535366058, -0.011725302785634995, 0.016330590471625328, 0.007983507588505745, 0.0063019716180861, 0.0013047050451859832, 0.017224378883838654, 0.005813417490571737, 0.0035410718992352486, 0.0073055909015238285, -0.01321747712790966, 0.010240703821182251, -0.00023599255655426532, 0.014353649690747261, 0.0021360048558562994, 0.024495884776115417, -0.005514225456863642, 0.004147030878812075, 0.0036187104415148497, -0.0054384805262088776, 0.021390346810221672, 0.01928463950753212, 0.006555716972798109, 0.01086181215941906, -0.00853644497692585, -0.007381335832178593, -0.0075214640237390995, -0.0013340562582015991, 0.006574653089046478, -0.017663700506091118, 0.01846659556031227, 0.003525923006236553, 0.006873845588415861, -0.010407342575490475, 0.0013009178219363093, -0.006907930597662926, -0.0007063207449391484, 0.045840784907341, -0.005919460207223892, -0.0036224976647645235, 0.008445550687611103, -0.015573142096400261, 0.01146019622683525, -0.011482919566333294, -0.026328910142183304, 0.022784052416682243, -0.005442267749458551, -0.008263763040304184, 0.0037872425746172667, 0.012520624324679375, -0.01843629777431488, 0.02855581045150757, -0.006771589629352093, -0.006063375622034073, -0.010551257990300655, -0.004147030878812075, -0.009149977937340736, 0.004741627722978592, -0.0007830124231986701, 0.006434525363147259, -0.03108568675816059, -0.021314602345228195, 0.00421141367405653, 0.019133150577545166, 0.006718568503856659, -0.006131545640528202, 0.00564299151301384, -0.024723120033740997, 0.011907090432941914, 0.007229846436530352, 0.011270834133028984, -0.026783380657434464, 0.0159367173910141, 0.0011588962515816092, 0.009263595566153526, 0.027662020176649094, -0.005127926357090473, 0.005589969921857119, 0.005995205137878656, 0.008460700511932373, 0.008301636204123497, 0.005090054124593735, 0.018951361998915672, 0.008756104856729507, 0.008718232624232769, 0.004628010559827089, 0.00022829971567261964, -0.011414749547839165, -0.006105035077780485, -0.0037323276046663523, -0.0017336102901026607, 0.020011790096759796, 0.004616648890078068, 0.005525587126612663, -0.007419208530336618, -0.01267968863248825, -0.01378556340932846, -0.00023196861729957163, -0.006237588822841644, -0.01846659556031227, -0.010005895048379898, 0.013134157285094261, -0.024041416123509407, 0.028480064123868942, 0.02435954473912716, 0.002702197525650263, 0.014792969450354576, 0.00592703465372324, 0.0037077106535434723, 0.030297940596938133, 0.0017279294552281499, 0.008695509284734726, -0.000678389857057482, -0.0063852909952402115, -0.037448253482580185, -0.030070707201957703, 0.009680191986262798, -0.020754089578986168, -0.014005223289132118, 0.008756104856729507, 0.010036192834377289, -0.002840431872755289, -0.0021984942723065615, -0.02578354813158512, -0.0206480473279953, 0.0030335814226418734, 0.005696013104170561, -0.026419805362820625, 0.005718736443668604, 0.015845824033021927, -0.004404562991112471, -0.023859629407525063, 0.007517676800489426, -0.00022912818531040102, 0.01121781300753355, -0.013777988962829113, -0.006294397171586752, -0.009808958508074284, 0.010142236016690731, -0.0039652432315051556, -0.0157700777053833, -0.018103020265698433, -0.0044083502143621445, 0.00044003024231642485, -0.020345067605376244, 0.0003479529113974422, 0.015694333240389824, -0.008445550687611103, -0.023829331621527672, 0.008740955963730812, 0.014058244414627552, -0.021632729098200798, -0.009952873922884464, -0.012376708909869194, -0.0013425775105133653, 0.009733214043080807, -0.002348090521991253, -0.032661180943250656, 0.013649222441017628, 0.014187010936439037, -0.03453965112566948, 0.000395530165405944, 0.01211160235106945, 0.0077865710482001305, -0.003007070627063513, 0.003294900991022587, 0.025813845917582512, -0.01804242469370365, -0.0028650490567088127, 0.004033413249999285, -0.0011285983491688967, 0.003590306034311652, 0.02654099650681019, 0.007369974162429571, 0.005957332905381918, 0.010687598958611488, -0.009475680999457836, 0.004673457238823175, 0.006457248702645302, -0.0045977127738296986, 0.00918785110116005, -0.005472565535455942, 0.000657560012768954, -0.006381503771990538, -0.002556388732045889, 0.04075073078274727, 0.011838920414447784, -0.011937389150261879, -0.016739612445235252, -0.02132975123822689, 0.013891605660319328, 0.01318717934191227, 0.002020493848249316, -0.01539892889559269, 0.0040144771337509155, -0.007078356575220823, 0.014952033758163452, 0.011354153044521809, 0.02314762771129608, -0.013649222441017628, -0.00016782218881417066, -0.009824107401072979, 0.011119344271719456, 0.006453461479395628, -0.024208055809140205, 0.0078092943876981735, -0.019436128437519073, -0.0030979644507169724, -0.011384451761841774, -0.01905740424990654, -0.007354825269430876, -0.014391521923244, 0.002124643186107278, -0.018708977848291397, -0.030843304470181465, 0.008097125217318535, 0.009384787641465664, -0.009748362936079502, 0.0038023917004466057, -0.008407678455114365, 0.020496556535363197, -0.01328564714640379, -0.002571537857875228, 0.0026018356438726187, 0.002571537857875228, 0.004715117160230875, -0.013391690328717232, -0.013876456767320633, 0.020996473729610443, 0.004737840499728918, 0.04971892014145851, 0.005396820604801178, 0.0009193531586788595, 0.00033304066164419055, -0.013891605660319328, -0.01905740424990654, 0.010490662418305874, 0.0032759648747742176, -0.015664035454392433, -0.019648214802145958, -0.01681535691022873, -0.030085856094956398, 0.0018150360556319356, 0.029389003291726112, -0.01068002451211214, 0.0006471450906246901, 0.019920896738767624, 0.006025502923876047, -0.005536948796361685, -0.006192141678184271, 0.017224378883838654, -0.00453711673617363, -0.02042081207036972, -0.011096620932221413, 0.01645178161561489, 0.005173373501747847, -0.0042795841582119465, -0.018708977848291397, 0.0013236412778496742, -0.0035656888503581285, 0.008400104008615017, -0.0053362250328063965, -0.006146694999188185, -0.009960448369383812, -0.006317120511084795, 0.004949925933033228, 0.0017686423379927874, 0.013520455919206142, 0.009612021967768669, 0.011467770673334599, -0.027662020176649094, -0.0009150925325229764, 0.004802223760634661, 0.007691890001296997, -0.03341862931847572, 0.0034331355709582567, -0.004059924278408289, -0.010096789337694645, -0.016512377187609673, 0.008559168316423893, -0.006036864593625069, -0.005635417066514492, -0.012929646298289299, 0.004847670439630747, 0.03037368692457676, 0.01945127733051777, -0.0077865710482001305, 0.010225554928183556, -0.0018339722882956266, -0.0018519615987315774, -0.006453461479395628, -0.00503324531018734, 0.003987966571003199, 0.01161168608814478, -0.004915840923786163, -0.016951698809862137, -0.0039349449798464775, -0.008142571896314621, 0.019602768123149872, -0.008869722485542297, -0.0021284304093569517, 0.0008365072426386178, 0.014126415364444256, -0.015860972926020622, -0.0035240293946117163, 0.002781729679554701, -0.01307356171309948, -0.0014779714401811361, -0.024283800274133682, 0.00421141367405653, -0.0036130293738096952, -0.010286151431500912, 0.009771086275577545, -0.008059252053499222, -0.009089382365345955, -0.022753754630684853, 0.011422323994338512, -0.007070782128721476, 0.001173098455183208, -0.014482416212558746, -0.02314762771129608, -0.02702576294541359, 0.01795152947306633, 0.009952873922884464, 0.003414199221879244, -0.009339340031147003, -0.033539820462465286, 0.012520624324679375, 0.008710658177733421, -0.004306094720959663, 0.008172869682312012, 0.02260226383805275, 0.0038118597585707903, -0.00494235148653388, -0.0036054549273103476, -0.017769742757081985, -0.007494952995330095, 0.003969030454754829, -0.003984179347753525, 0.0019144511315971613, -0.005798268597573042, -0.005302139557898045, -0.0020962387789040804, 0.03811480849981308, 0.009748362936079502, 0.021859964355826378, 0.033994290977716446, 0.004491669591516256, 0.017406167462468147, -0.0056732892990112305, -0.0006457248819060624, 0.01221007015556097, 0.037539150565862656, -0.016436632722616196, -0.013050838373601437, 0.01693654991686344, 0.0059118857607245445, 0.004741627722978592, -0.014558160677552223, 0.024283800274133682, -0.01619425043463707, -0.00949840433895588, 0.023617245256900787, 0.03862987458705902, 0.015027779154479504, -0.005449842195957899, 0.029252661392092705, -0.0004795595887117088, -8.255005377577618e-05, -0.012444878928363323, -0.016966847702860832, 0.01983000338077545, 0.00877882819622755, 0.016118504106998444, 0.008013805374503136, 0.00023954309290274978, -0.026919720694422722, 0.008483423851430416, 0.008604614995419979, 0.01857263781130314, -0.000326649664202705, -0.0072828675620257854, -0.021829666569828987, 0.0032437732443213463, -0.016830505803227425, 0.009869554080069065, 0.0052794162184000015, 0.031267475336790085, -0.017996976152062416, 0.0029710917733609676, 0.009059084579348564, 0.014353649690747261, -0.0013226944720372558, 0.006934441160410643, 0.0051771607249975204, -0.0068094623275101185, 0.008278912864625454, 0.011581388302147388, -0.0008568636258132756, 0.007161675952374935, -0.001408854266628623, -0.006567078642547131, -0.009013637900352478, 0.012626666575670242, 0.0019239193061366677, 0.009271170012652874, 0.0072336336597800255, -0.006737504620105028, -0.019163448363542557, 0.004109158180654049, -0.0027646871749311686, 0.009210574440658092, 0.021344900131225586, -0.011634409427642822, -0.0016644931165501475, -0.00583614083006978, -0.016406334936618805, 0.004351541865617037, -0.026722783222794533, 0.010149810463190079, -0.0024200479965656996, 0.008188018575310707, -0.01846659556031227, 0.0026813677977770567, -0.011263259686529636, -0.003043049480766058, -0.013762840069830418, 0.0025658567901700735, -0.020542003214359283, -0.011619260534644127, 0.005711161997169256, 0.02546541951596737, -0.014141564257442951, 0.010770917870104313], "e5157153-76fb-435d-b2c0-9ecdf6ce1241": [0.008715402334928513, 0.00012961392349097878, -0.021769409999251366, 0.031072968617081642, 0.004090357571840286, -0.024427570402622223, -0.009120237082242966, 0.031103521585464478, -0.021173615008592606, 0.07766714692115784, 0.013351905159652233, -0.004178198985755444, 0.0008201720775105059, -0.016025342047214508, 0.002020354149863124, 0.03075215592980385, -0.025741372257471085, 0.028292594477534294, -0.0077682421542704105, 0.0034258177038282156, 0.036144860088825226, -0.018683500587940216, -0.05542415380477905, -0.014589323662221432, 0.014520579017698765, 0.0027039898559451103, -0.03124101273715496, -0.026108015328645706, -0.07546728849411011, -0.013817846775054932, -0.002908316906541586, 0.015093457885086536, 0.002965604653581977, 0.025283070281147957, 0.00418583769351244, -0.032570093870162964, 0.006504088640213013, -0.032447878271341324, -0.017247483134269714, 0.013519949279725552, 0.017125269398093224, 0.009318835102021694, 0.031195182353258133, -0.005365968681871891, -0.011266624554991722, 0.013497034087777138, -0.04940510541200638, 0.009654924273490906, -0.00494585745036602, -0.007806434296071529, 0.007882817648351192, 0.04555535688996315, -0.025878863409161568, 0.04109453409910202, 0.0210819561034441, -0.05331595987081528, 0.0023507142905145884, 0.049435656517744064, 0.031867362558841705, -0.055974118411540985, 0.02221243642270565, -0.004479915369302034, 0.0099757369607687, -0.012068655341863632, 0.02066948264837265, -0.005140636116266251, -0.01546773873269558, 0.005465267691761255, 0.004002516157925129, 0.009471602737903595, -0.01871405355632305, 0.008707764558494091, -0.0267343632876873, 0.0264288280159235, 0.03782530501484871, 0.0009576631127856672, 0.03965852037072182, 0.02280823141336441, 0.030202193185687065, -0.008814701810479164, 0.010265995748341084, 0.003009525593370199, 0.017018331214785576, 0.015765635296702385, 0.05780733376741409, -0.0007347175851464272, -0.03831416368484497, -0.03519769757986069, -0.008661934174597263, -0.019111251458525658, 0.004147645551711321, 0.04372214153409004, 0.022548526525497437, 0.02429007925093174, -0.012221422977745533, -0.018271027132868767, 0.016941947862505913, 0.011617990210652351, 0.0015610958216711879, -0.026214953511953354, -0.00643152417615056, 0.022762401029467583, 0.006202372256666422, 0.018026599660515785, 0.02381649799644947, -0.026474658399820328, 0.013756739906966686, 0.0058739217929542065, -0.018255751579999924, 0.006775251589715481, 0.008914000354707241, -0.04919122904539108, -0.026948237791657448, 0.0031317397952079773, -0.0503828190267086, -0.025451114401221275, -0.047480229288339615, -0.02606218494474888, -0.030843816697597504, -0.03712257370352745, 0.026230229064822197, -0.006569014862179756, 0.020990295335650444, -0.0018771342001855373, -0.020745866000652313, -0.003347524208948016, -0.016239216551184654, 0.05875449255108833, 0.024549784138798714, -0.011144410818815231, -0.003456371370702982, -1.5858609913266264e-05, 0.01923346519470215, -0.018805714324116707, -0.0004752510576508939, 0.004495192319154739, 0.014535855501890182, 0.07833932340145111, -0.004006335511803627, -0.015032351016998291, -0.05001617595553398, -0.014604601077735424, -0.04243889078497887, 0.02774263173341751, -0.007699496578425169, -0.008982745930552483, -0.021479152143001556, 0.06672897189855576, -0.011144410818815231, 0.013306074775755405, -0.040422357618808746, -0.022823508828878403, -0.040422357618808746, 0.029316138476133347, 0.025878863409161568, -0.004552480299025774, -0.00795920193195343, 0.036847591400146484, 0.013420650735497475, 0.006045785266906023, 0.0004504262760747224, -0.05753235146403313, 0.015559399500489235, 0.009280643425881863, 0.018958482891321182, 0.01573508232831955, 0.08115024864673615, 0.03391445055603981, -0.00024430910707451403, 0.020654205232858658, 0.016147555783391, -0.015994787216186523, 0.05942666903138161, 0.015544123016297817, 0.024274801835417747, -0.015299694612622261, 0.01960010826587677, 0.0011677187867462635, -0.0007977343047969043, -0.0002675823343452066, -0.016896117478609085, -0.021341660991311073, 0.016223939135670662, 0.002860576845705509, 0.03461718186736107, 0.03318116441369057, -0.027360711246728897, 0.0202570091933012, -0.01663641259074211, 0.027299603447318077, -0.014871944673359394, -0.005068071652203798, 0.043263837695121765, 0.019386231899261475, -0.0013653620844706893, -0.0016661237459629774, -0.008600826375186443, -0.0025149397552013397, 0.010770129039883614, 0.03605319932103157, 0.004491372965276241, -0.02881200611591339, -0.022609632462263107, 0.018958482891321182, 0.010304187424480915, 0.01775161735713482, -0.013940060511231422, -0.00472052488476038, 0.04589144513010979, -0.014215042814612389, 0.04931344464421272, -0.050810568034648895, 0.04418044537305832, -0.025099748745560646, 0.00831056758761406, 0.007791157346218824, 0.0004315690021030605, 0.0145511319860816, 0.009273004718124866, -0.03403666242957115, 0.005159731954336166, -0.019798705354332924, -0.027880121022462845, -0.02077641896903515, -0.03333393111824989, 0.013176222331821918, -0.011526329442858696, 0.0047663552686572075, -0.011159687303006649, -0.019584830850362778, 0.04283608868718147, 0.009502156637609005, -0.009761861525475979, -0.013413012027740479, -0.004376797005534172, 0.03562545031309128, 0.05047447979450226, -0.0003021937736775726, -0.005079529248178005, 0.015689251944422722, -0.01294707041233778, 0.048610709607601166, -0.05322429910302162, -0.007997393608093262, 0.0025015724822878838, 0.034953270107507706, 0.011029834859073162, 0.04271387308835983, 0.016285046935081482, 0.015964234247803688, 0.001016860594972968, 0.010533339343965054, -0.005110082682222128, -0.0118776960298419, -0.016666965559124947, 0.01966121420264244, 0.03004942461848259, -0.007791157346218824, -0.03593098372220993, -0.05267433449625969, 0.006488812156021595, 0.02073058858513832, -0.06917325407266617, 0.02328181080520153, 0.03913910686969757, -0.06715672463178635, 0.038283608853816986, 0.017950216308236122, 0.0023946352303028107, 0.06410136818885803, 0.031378503888845444, -0.04799963906407356, -0.009357026778161526, 0.02589414082467556, 0.008799424394965172, -0.013924784027040005, 0.025252515450119972, 0.022579079493880272, 0.016117002815008163, 0.001628886559046805, -0.01776689477264881, 0.024152588099241257, 0.003979600965976715, -0.03260064497590065, 0.0003310764441266656, 0.02583303302526474, -0.021051401272416115, 0.013588694855570793, -0.014230319298803806, -0.018439073115587234, 0.013901868835091591, -0.021540258079767227, -0.00236026244238019, -0.0005833819741383195, 0.0038497482892125845, -0.003383806673809886, -0.02102084830403328, -0.0004404009087011218, 0.05084111914038658, 0.005694419611245394, -0.0034964727237820625, 0.005912113469094038, -0.01608644798398018, -0.038405824452638626, 0.0050336988642811775, -0.03861969709396362, 0.011106218211352825, 0.008111969567835331, -0.040544573217630386, 0.016055895015597343, 0.014757368713617325, 0.006339863408356905, -0.02357207052409649, -0.023129044100642204, 0.0007743417518213391, 0.0030572654213756323, -0.012129762209951878, -0.0031183725222945213, -0.011862418614327908, 0.003200485138222575, -0.028705067932605743, 0.01047987025231123, -0.03035495989024639, 0.018332134932279587, 0.040422357618808746, -0.027696801349520683, 0.023266535252332687, -0.0014656160492449999, -0.027574585750699043, -0.02387760579586029, -0.021173615008592606, -0.045219264924526215, 0.001472299569286406, -0.00578989926725626, -0.030660495162010193, -0.024549784138798714, -0.012748472392559052, -0.03813084214925766, -0.019095974043011665, -0.01733914390206337, -0.022487418726086617, 0.022166606038808823, 0.019691769033670425, 0.013680355623364449, -0.03214234486222267, -0.008318206295371056, 0.0028624865226447582, 0.020287562161684036, 0.018729330971837044, -0.01401644479483366, 0.0010044482769444585, 0.007596378214657307, 0.036022644490003586, 0.009318835102021694, -0.007168628741055727, -0.023022105917334557, -0.040941767394542694, 0.01978342980146408, 0.041613947600126266, -0.016315599903464317, -0.047174692153930664, -0.046716392040252686, -0.016896117478609085, -0.01345120370388031, -0.01490249764174223, 0.027574585750699043, 0.02013479545712471, -0.01717109978199005, -0.05514917150139809, -0.01941678673028946, -0.028964772820472717, 0.004395893309265375, -0.0034239080268889666, -0.012221422977745533, -0.04191948100924492, -0.04100287705659866, 0.03865025192499161, -0.009693115949630737, 0.03425053879618645, 0.008364036679267883, 0.013092199340462685, 0.04256110638380051, -0.013550503179430962, 0.027452372014522552, 0.011908248998224735, -0.0011887244181707501, 0.019752874970436096, -0.016972500830888748, -0.020638927817344666, -0.02678019367158413, -0.02363317646086216, -0.002047088462859392, -0.00373326288536191, 0.04891624674201012, 0.0118776960298419, -0.01692667044699192, 0.00970839336514473, -0.03202012926340103, -0.010678468272089958, -0.008990384638309479, 0.009341750293970108, -0.00036783621180802584, -0.004132368601858616, 0.023022105917334557, -0.019508447498083115, -0.019798705354332924, -0.015750359743833542, 0.0070731486193835735, 0.0024767478462308645, 0.04204169660806656, -0.008203630335628986, -0.006771432235836983, -0.006145084276795387, 0.005339234136044979, 0.03510603681206703, 0.03235621750354767, -0.011755481362342834, 0.047419123351573944, -0.04693026468157768, -0.020577821880578995, 0.025848310440778732, 0.03498382493853569, 0.022304097190499306, 0.01256515085697174, -0.005110082682222128, 0.026764916256070137, 0.022472141310572624, -0.012343637645244598, 0.002860576845705509, 0.0010856061708182096, 0.035075485706329346, 0.036969806998968124, -0.02250269614160061, 0.01436781045049429, 0.0051673706620931625, -0.025435836985707283, -0.0072488319128751755, 0.005113902036100626, -0.0006325541180558503, -0.010250719264149666, 0.0009705528500489891, 0.03736700117588043, -0.0012908878270536661, -0.018561286851763725, -0.05343817174434662, -0.02791067585349083, -0.05331595987081528, -0.026994068175554276, -0.0012679726351052523, 0.0035346648655831814, 0.015780912712216377, 2.6077939764945768e-05, -0.08365564048290253, -0.02381649799644947, 0.04506649821996689, -0.0037428108043968678, 0.027589863166213036, -0.0012469671200960875, 0.032936736941337585, -0.039475198835134506, -0.0062443832866847515, -0.0015868754126131535, 0.03284507617354393, 0.0008096693200059235, 0.005732611287385225, -0.03687814623117447, -0.011480499058961868, 0.0019649756141006947, -0.0009104005293920636, -0.013359542936086655, -0.0023774488363415003, -0.002788012148812413, -0.016132278367877007, 0.03883357346057892, -0.002457651775330305, -0.021158339455723763, -0.04081955552101135, -0.02209022268652916, -0.00887580867856741, -0.020745866000652313, -0.006305490620434284, 0.014940690249204636, -0.014864305965602398, 0.024610891938209534, 0.005786079913377762, 0.016590582206845284, -0.04375269636511803, -0.006450620014220476, -0.00956326350569725, 0.02988138049840927, 0.04207225143909454, 0.0016384345944970846, -0.015154564753174782, 0.029377246275544167, 0.02083752676844597, 0.0019439700990915298, 0.002759368158876896, -0.021540258079767227, -0.02137221395969391, -0.02963695116341114, 0.004384435713291168, -0.03134794905781746, 0.04454708844423294, 0.018072430044412613, -0.028720345348119736, 0.03330338001251221, 0.0108999814838171, 0.02963695116341114, -0.010854152031242847, -0.037978071719408035, -0.028170380741357803, 0.04650251567363739, -0.026276059448719025, 0.02126527577638626, 0.014658069238066673, 0.01348175760358572, -0.0002492024505045265, -0.0028032888658344746, 0.02713155932724476, 0.019645938649773598, -0.0075849206186831, -0.023113766685128212, -0.02274712361395359, 0.004984049126505852, -0.019875090569257736, -0.008020308800041676, -0.014108105562627316, -0.029056433588266373, 0.028949497267603874, -0.03580877184867859, -0.030202193185687065, 0.004082719329744577, -0.025939971208572388, -0.010235441848635674, 0.0003456371196079999, -0.0031451068352907896, 0.0019468344980850816, 0.012481128796935081, -0.00107605813536793, -0.013878953643143177, -0.006087796296924353, 0.055943563580513, 0.00624820264056325, 0.016468368470668793, 0.0009543212945573032, 0.03058411180973053, 0.00795920193195343, -0.00962437130510807, -0.004292774945497513, 0.014138659462332726, -0.02648993581533432, 0.02126527577638626, -0.008295291103422642, -0.03131739795207977, -0.005675323307514191, -0.03449496626853943, 0.0026333348359912634, -0.02274712361395359, 0.023205427452921867, -0.03657260909676552, 0.023923436179757118, 0.025939971208572388, -0.000635418517049402, 0.024015096947550774, -0.02381649799644947, -0.00472052488476038, -0.034586627036333084, 0.04353881999850273, -0.0036186871584504843, 0.010220165364444256, 0.005339234136044979, 0.002736452966928482, 0.04488317668437958, -0.008837617002427578, 0.0042049335315823555, 0.015330247581005096, 0.017247483134269714, -0.004372978117316961, -0.02927030809223652, -0.006347501650452614, 0.008211269043385983, -0.018668223172426224, -0.0024270983412861824, -0.04402767866849899, 0.009196621365845203, 0.006779070943593979, 0.0012250067666172981, -0.015605229884386063, -0.030263299122452736, 0.027819015085697174, 0.009150790981948376, 0.023556793108582497, -0.019432062283158302, -0.0006516501307487488, -0.005633312277495861, 0.028613407164812088, 0.009188982658088207, 0.0013519949279725552, 0.006836358457803726, -0.01063263788819313, 0.010075035504996777, 0.031622931361198425, -0.002595142927020788, -0.011648544110357761, -0.014910136349499226, 0.02458033710718155, -0.022059669718146324, 0.01348175760358572, -0.009479241445660591, 0.0071037025190889835, 0.02167774923145771, -0.02184579335153103, 0.03745866194367409, -0.029789719730615616, 0.021097231656312943, 0.010441678576171398, 0.026627425104379654, 0.04304996505379677, 0.014680984430015087, 0.028307871893048286, 0.024565061554312706, -0.021127784624695778, 0.03235621750354767, 0.00011660478776320815, -0.018515456467866898, 0.0329061821103096, -0.020990295335650444, -0.006905104033648968, 0.002860576845705509, -0.0035824046935886145, -0.04512760415673256, 0.0010311825899407268, 0.005973220802843571, -0.017507188022136688, 0.006637760438024998, -0.028582854196429253, 0.005591301247477531, -0.0031374685931950808, -0.000552828423678875, -0.014092829078435898, -0.010151419788599014, 0.011472861282527447, 0.02542055957019329, 0.03324227035045624, -0.009005661122500896, 0.01877516135573387, -0.020043134689331055, 0.021173615008592606, 0.04393601790070534, 0.024809489026665688, 0.004372978117316961, 0.013275520876049995, -0.008066139183938503, 0.009494517929852009, -0.008807063102722168, -0.022854061797261238, -0.021066678687930107, -0.015612868592143059, 0.030797986313700676, 0.008173076435923576, -0.013871315866708755, -0.031928468495607376, 0.03443386033177376, -0.003893668996170163, 0.027360711246728897, 0.013733824715018272, 0.004395893309265375, 0.015139288268983364, -0.005488182883709669, 0.039230767637491226, 0.006744698155671358, -0.023785945028066635, 0.024427570402622223, -0.006813443265855312, -0.0035919526126235723, -0.019982026889920235, 0.0264288280159235, 0.0007547683781012893, 0.011152048595249653, -0.016819734126329422, -0.014673346653580666, -0.035839322954416275, -0.022258266806602478, 0.024015096947550774, -0.009097321890294552, -0.013756739906966686, -0.006901285145431757, -0.0012517410796135664, -0.031500719487667084, 0.00781025318428874, -0.0006148903630673885, 0.004300413187593222, 0.007371046114712954, 0.024381740018725395, 0.016468368470668793, 0.002138748997822404, 0.01970704458653927, -0.023113766685128212, 0.015307332389056683, -0.01333662774413824, -0.026413550600409508, -0.009273004718124866, -0.025939971208572388, -0.045341480523347855, 0.03553378954529762, -0.004445542581379414, -0.017308590933680534, -0.02572609670460224, 0.0012335999635979533, 0.012908878736197948, 0.010785406455397606, -0.01404699869453907, 0.001800750382244587, -0.0005470996256917715, 0.004178198985755444, -0.024488676339387894, 0.015001797117292881, -0.023892883211374283, -0.01937095634639263, 0.017491912469267845, 0.0021960369776934385, 0.029025880619883537, -0.0137796550989151, -0.018393242731690407, -0.008027947507798672, 0.01036529429256916, -0.008692487142980099, -0.04069733992218971, 0.019019590690732002, 0.011449946090579033, 0.027941228821873665, -0.006053423509001732, 0.007076967973262072, 0.014596962369978428, -0.037855859845876694, -0.01398589089512825, -5.8212881413055584e-05, -0.0017520555993542075, 0.017430804669857025, -0.003454461693763733, 0.038803018629550934, 0.008914000354707241, 0.01633087731897831, -0.04109453409910202, 0.006637760438024998, 0.010617361404001713, 0.029530014842748642, 0.013558141887187958, -0.01214503962546587, 0.01146522257477045, 0.026749640703201294, -0.04375269636511803, 0.029193924739956856, 0.014994158409535885, -0.006045785266906023, 0.0011085212463513017, 0.0452498197555542, 0.01633087731897831, 0.00708078732714057, 0.03834471479058266, -0.008005032315850258, -0.0028624865226447582, -0.028873112052679062, -0.017721064388751984, 0.0035824046935886145, 0.025848310440778732, 0.0025359452702105045, -0.005621854681521654, 0.028460638597607613, 0.011243709363043308, 0.04509705305099487, 0.017858555540442467, -0.009051491506397724, 0.003998696804046631, -0.009906991384923458, -0.05221603065729141, -0.025267792865633965, -0.013153307139873505, -0.006828720215708017, -0.007665123790502548, -0.017125269398093224, -0.047724656760692596, 0.016193386167287827, 0.01941678673028946, 0.03211179003119469, -0.049496766179800034, 0.03011053241789341, 0.0009686432895250618, 0.011068026535212994, -0.0015601410996168852, -0.007626932114362717, -0.027345433831214905, -0.006962392013520002, 0.03782530501484871, 0.011671459302306175, -0.006465896964073181, -0.0018656766042113304, 0.016025342047214508, -0.020516714081168175, -0.032050684094429016, 0.0026218772400170565, -0.04268332198262215, 0.033883895725011826, 0.03461718186736107, -0.01746135763823986, -0.026153845712542534, -0.01273319497704506, -0.01871405355632305, -0.006603387650102377, 0.010793044231832027, 0.01176312007009983, 0.005621854681521654, 0.010617361404001713, 0.025634435936808586, -0.015605229884386063, -0.009540348313748837, 0.017293313518166542, 0.02558860555291176, 0.016178108751773834, 0.025496944785118103, -0.0020260829478502274, -0.001148622832261026, 0.028185658156871796, 0.01787383109331131, 0.030492451041936874, -0.007607835810631514, 0.007455068174749613, -0.007600197568535805, 0.00831056758761406, 0.005499640479683876, 0.001628886559046805, -0.03211179003119469, -0.0337311290204525, 0.011006919667124748, 0.005346872843801975, 0.031378503888845444, -0.00834112148731947, 0.00688982754945755, -0.03984183818101883, 0.02422897145152092, -0.004369158763438463, -0.0545075461268425, -0.004376797005534172, -0.021158339455723763, 0.0044570001773536205, -0.0016145645640790462, 0.008829978294670582, -0.00795920193195343, 0.023785945028066635, 0.04711358621716499, 0.030843816697597504, 0.018026599660515785, 0.008807063102722168, 0.028949497267603874, -0.001757784397341311, 0.0007289887871593237, 0.007160990033298731, 0.01226725336164236, -0.031928468495607376, 0.024274801835417747, 0.02655104175209999, -0.010793044231832027, -0.0028663056436926126, 7.530974835390225e-05, -0.03171459212899208, 0.035656001418828964, 0.011358285322785378, -0.006061062216758728, 0.009456326253712177, 0.004579214379191399, 0.0028911305125802755, 0.008829978294670582, 0.0419500358402729, 0.016605859622359276, -0.004392073955386877, -0.03397555649280548, 0.008188353851437569, 0.01549829263240099, -0.028185658156871796, 0.019111251458525658, 0.006442981772124767, 0.00048503774451091886, -3.610332714742981e-05, -0.025038640946149826, -0.016361430287361145, 0.005343053489923477, 0.026474658399820328, -0.01039584819227457, 0.0017186376499012113, 0.0021120146848261356, -0.005132997874170542, -0.006717963609844446, -0.020211178809404373, -0.009494517929852009, -0.030859094113111496, 0.03425053879618645, -0.0047358013689517975, -0.014650431461632252, 0.0014684804482385516, -0.019218187779188156, 0.003502201521769166, -0.04286664351820946, -0.0438138023018837, -0.016468368470668793, 0.021402766928076744, -0.029056433588266373, 0.005541651509702206, -0.00873067881911993, 0.016651690006256104, 0.015544123016297817, 0.011060387827455997, 0.016346152871847153, -0.0017348692053928971, -0.02511502429842949, 0.0542936734855175, -0.0003671201120596379, 0.010602084919810295, -0.0261232927441597, 0.0007619293755851686, -0.02037922292947769, -0.022640187293291092, 0.018393242731690407, 0.026871854439377785, -0.01309983804821968, -0.028078719973564148, -0.003236767603084445, -0.02821621112525463, -0.01692667044699192, -0.019615383818745613, 0.011931164190173149, 0.0004633160715457052, -0.004670875146985054, -0.011976994574069977, -0.026337167248129845, 0.005060432944446802, -0.025817757472395897, -0.026352444663643837, 0.00491530355066061, -0.04436376690864563, 0.01493305154144764, 0.009013299830257893, -0.0007165764109231532, 0.03260064497590065, 0.017125269398093224, -0.017491912469267845, -0.010602084919810295, -0.0018456259276717901, 0.031928468495607376, -0.0009022847516462207, 0.018011322245001793, 0.021219445392489433, 0.032875627279281616, -0.03504493087530136, -0.006049604620784521, 0.016850287094712257, 0.00983060710132122, -0.01039584819227457, 5.090270497021265e-05, -0.009433411061763763, -0.0002711628330871463, -0.025145579129457474, -0.013222052715718746, 0.006305490620434284, 0.007974478416144848, -0.01458168588578701, 0.03913910686969757, 0.004518107511103153, 0.024137310683727264, -0.031500719487667084, -0.020868079736828804, -0.012824855744838715, -0.013466481119394302, -0.0071037025190889835, -0.0037676356732845306, 0.011411754414439201, -0.0034754672087728977, -0.025283070281147957, -0.0016794909024611115, -0.025695541873574257, -0.03446441516280174, 0.03446441516280174, -0.0320812352001667, -0.013527587987482548, -0.0399029478430748, 0.005583663005381823, 0.015643421560525894, -0.011320093646645546, -0.007718592882156372, -0.003187118098139763, -0.005973220802843571, 0.007481802720576525, -0.02725377306342125, 0.011633267626166344, 0.015933681279420853, 0.0210819561034441, 0.001166763948276639, 0.011236070655286312, -0.01669752039015293, -0.005190285854041576, -0.017919661477208138, -0.008188353851437569, 0.008547358214855194, -0.03675593063235283, 0.036725375801324844, 0.026153845712542534, 0.026398275047540665, 0.021463874727487564, 0.0015735082561150193, 0.0039108553901314735, 0.014619877561926842, -0.0010770129738375545, -0.026871854439377785, -0.013909507542848587, -0.00685927364975214, -0.004434084985405207, 0.027391264215111732, 0.036908697336912155, -0.0013644073624163866, 0.0191265270113945, 0.007107521407306194, -0.002541674068197608, -0.002333527896553278, -0.013710909523069859, -0.0013243057765066624, -0.011404115706682205, 0.009991013444960117, -0.006263479590415955, -0.014222681522369385, 0.005113902036100626, -0.03247843310236931, -0.015948956832289696, -0.0279717817902565, -0.0006664494867436588, 0.0013414921704679728, 0.006874550599604845, -0.008417504839599133, -0.005117720924317837, -0.09147735685110092, -0.01662113517522812, 0.002977062249556184, -0.0014321980997920036, 0.015872573480010033, -0.016239216551184654, 0.006756155751645565, 0.01410046685487032, -0.005503459833562374, 0.0016584853874519467, -0.0020356308668851852, 0.0080737778916955, 0.011892972514033318, 0.012969985604286194, 0.01066319178789854, -0.01651419885456562, -0.015872573480010033, -0.004835100378841162, -0.004731982480734587, -0.004789270460605621, -0.036664269864559174, 0.002108195563778281, 0.020272286608815193, -0.009738946333527565, -0.01523094903677702, 0.04353881999850273, 0.03315060958266258, 0.006947115529328585, -0.028475916013121605, -0.006297852378338575, 0.024305354803800583, 0.001624112599529326, -0.010464593768119812, -0.012083932757377625, -0.02196800895035267, 0.009968098253011703, 0.028934219852089882, 0.0030553557444363832, 0.01775161735713482, 0.010571531020104885, 0.0073672267608344555, 0.005984678398817778, -0.01793493889272213, -0.008646656759083271, 0.011213155463337898, 0.026642702519893646, -0.003114553401246667, -0.026856577023863792, 0.000744265562389046, 0.01238182932138443, 0.015292055904865265, 0.010502785444259644, -0.004067442379891872, -0.01538371667265892, -0.0011390747968107462, 0.000498404901009053, 0.012542235665023327, -0.013772016391158104, 0.016957225278019905, 0.0077835191041231155, 0.05554636940360069, 0.001769241993315518, 0.0026810746639966965, -0.00574788823723793, -0.022319374606013298, -0.0007199182291515172, 0.019050143659114838, 0.016117002815008163, 0.023541517555713654, 0.012908878736197948, 0.015704529359936714, -0.01840851828455925, 0.007153351791203022, 0.01238182932138443, 0.02875089831650257, -0.010716660879552364, 0.020394500344991684, 0.012549874372780323, 0.004644141066819429, 0.0018675862811505795, -0.024183141067624092, -0.005056614056229591, 0.01680445671081543, -0.0013472209684550762, -0.009463964961469173, -0.016941947862505913, -0.004235486965626478, -0.018958482891321182, -0.00031866406789049506, 0.012351276353001595, 0.017659956589341164, 0.012420020997524261, 0.03492271527647972, 0.031439609825611115, -0.02542055957019329, 0.06229870393872261, -0.027925951406359673, 0.002203675452619791, -0.00810433179140091, 0.016285046935081482, -0.0069509344175457954, -0.009471602737903595, -0.002555041341111064, -0.005736430641263723, -0.0017386884428560734, -0.012771387584507465, -0.0030343502294272184, -0.003590043168514967, -0.014444194734096527, -0.023984543979167938, -0.006970030255615711, -0.008241822011768818, -0.011113856919109821, 0.015475377440452576, -0.004369158763438463, 0.015589953400194645, -0.007592559326440096, -0.010006289929151535, -0.006103073246777058, 0.023052658885717392, -0.014329618774354458, 0.015643421560525894, -0.004437904339283705, -0.03159238025546074, 0.00289494963362813, 0.0011505323927849531, -0.018454348668456078, -0.027544032782316208, 0.005270489025861025, 0.006882188841700554, -0.014711538329720497, -0.013145668432116508, -0.017430804669857025, 0.00025755693786777556, -0.010296548716723919, -0.007974478416144848, 0.003689342178404331, -0.011885333806276321, 0.03017163835465908, -0.04295830428600311, -0.004117092117667198, 0.012939431704580784, -0.0022170424927026033, -0.01717109978199005, -0.011717289686203003, 0.009983374737203121, -0.014115744270384312, -0.0011161597212776542, 0.01122843287885189, 0.0021750314626842737, -0.034708842635154724, 0.017079439014196396, 0.04240833967924118, 0.030079977586865425, -0.005556928459554911, -0.02089863456785679, 0.007550548296421766, 0.007859902456402779, -0.017369698733091354, -0.010854152031242847, -0.03461718186736107, -0.0012125943321734667, 0.026444105431437492, 0.00032081236713565886, 0.006935657933354378, -0.007118979003280401, -0.015719804912805557, 0.010334741324186325, -0.022731848061084747, 0.005155913066118956, -0.0012555603170767426, 0.013435927219688892, -0.013550503179430962, 0.00017687646322883666, -0.007393961306661367, 0.0019468344980850816, -0.013504672795534134, 0.012320722453296185, 0.011121495626866817, -0.023740114644169807, -0.01906542107462883, 0.007943925447762012, -0.008111969567835331, -0.002348804846405983, -0.019630661234259605, 0.012847770936787128, -0.0022666919976472855, 0.004170560743659735, -0.019202912226319313, -0.0021024667657911777, 0.029361968860030174, -0.017721064388751984, -0.016055895015597343, 0.021250000223517418, 0.0009156519663520157, 0.005618035327643156, 0.03971962630748749, 0.01680445671081543, -0.011396476998925209, -0.0199514739215374, 0.005266669671982527, 0.006737059447914362, 0.013359542936086655, -0.0028185658156871796, 0.019264018163084984, -0.015811465680599213, -0.016957225278019905, 0.04723580181598663, 0.02655104175209999, -0.013160944916307926, -0.019386231899261475, 0.0007184860296547413, -4.52634267276153e-05, -0.011205517686903477, -0.0014551131753250957, -0.021647196263074875, -0.005503459833562374, -0.024733105674386024, 0.017186377197504044, -0.02928558550775051, 0.010586807504296303, -0.0010913348523899913, 0.024916427209973335, -0.008501527830958366, -0.009906991384923458, 0.0072488319128751755, 0.010762491263449192, -0.04870237037539482, -0.028002336621284485, -0.0059961359947919846, -0.009578540921211243, -0.003612958360463381, 0.010518062859773636, -0.008829978294670582, -0.0047358013689517975, 0.005961763206869364, 0.02416786551475525, -0.0061259884387254715, 0.007951563224196434, -0.021662473678588867, -0.022777678444981575, -0.018041877076029778, -0.012442936189472675, 0.00139973487239331, 0.012557512149214745, 0.017965491861104965, -0.022777678444981575, -0.021586088463664055, -0.013856038451194763, 0.006908923387527466, 0.015689251944422722, 0.01359633356332779, -0.007447429932653904, 0.00994518306106329, -0.005304861348122358, -0.002461471129208803, 0.021356936544179916, -0.00390512659214437, -0.0018723602406680584, 0.009273004718124866, -0.011564522050321102, -0.0035499415826052427, 0.015780912712216377, -0.017507188022136688, 0.023358196020126343, 0.005247573833912611, 0.007638389710336924, 0.011113856919109821, 0.02963695116341114, -0.021815240383148193, 0.003492653602734208, 0.014535855501890182, -0.0240609273314476, -0.0005342098884284496, -0.007814072072505951, 0.005087167490273714, 0.005885379388928413, 0.0023755391594022512, -0.008784147910773754, 0.017904385924339294, -0.027070453390479088, -0.0018131627002730966, -0.015635782852768898, 0.005660046823322773, -0.0012966166250407696, 0.0001327170175500214, -0.0050146025605499744, -0.020394500344991684, 0.03586987778544426, -0.022716570645570755, 0.002812837017700076, 0.004269859753549099, 0.023679006844758987, 0.004972591530531645, 0.011144410818815231, 0.0006000910070724785, 0.011037472635507584, 0.0029636952094733715, 0.01970704458653927, 0.0007237374084070325, 0.00911259837448597, 0.008119608275592327, -0.030095255002379417, -0.0043386053293943405, -0.012458213604986668, -0.0002594665565993637, 0.0043347859755158424, 0.006935657933354378, 0.010518062859773636, 0.004609768278896809, -0.0031164628453552723, -0.001033092150464654, -0.01966121420264244, -0.00798975583165884, 0.007898095063865185, 0.017186377197504044, -0.017446082085371017, -0.003614867804571986, 0.011931164190173149, -0.03302839770913124, 0.014505301602184772, -0.01291651651263237, 0.04350826516747475, 0.009013299830257893, -0.0044990116730332375, -0.0017740159528329968, -0.007519994396716356, 0.004147645551711321, 0.0026467018760740757, 0.003918493632227182, -0.032295111566782, 0.021356936544179916, 0.004212571773678064, -0.01787383109331131, -0.010044482536613941, 0.0020871900487691164, -0.012022824957966805, -0.006935657933354378, -0.018316857516765594, 0.0023163417354226112, 0.02103612571954727, 0.025878863409161568, -0.0058624641969799995, -0.003868844360113144, -0.001993619604036212, 0.006439162418246269, 0.026413550600409508, 0.04222501814365387, 0.01610172539949417, -0.00045281328493729234, 0.019157081842422485, 0.01176312007009983, 0.0024060928262770176, -0.020043134689331055, 0.0020127156749367714, 0.02626078389585018, 0.014879582449793816, 0.018148813396692276, -0.03308950364589691, -0.038680803030729294, -0.020150071009993553, -0.013672716915607452, 0.009547987021505833, 0.04185837507247925, -0.003651150269433856, 0.005652408115565777, 0.00521320104598999, -0.024259524419903755, 0.00887580867856741, -0.0029885198455303907, -0.02412203513085842, -0.017721064388751984, -0.006565195973962545, -0.013313712552189827, -0.0007762513123452663, 0.020287562161684036, -0.02102084830403328, 0.011144410818815231, -0.005171189550310373, -0.012557512149214745, 0.026856577023863792, -0.007898095063865185, -0.038803018629550934, 0.008829978294670582, -0.020562544465065002, 0.00033417955273762345, -0.02778846211731434, 0.016758626326918602, 0.013619248755276203, -0.004586853086948395, -0.011449946090579033, -0.013191498816013336, -0.0001657769171288237, 0.028842559084296227, 0.004266040399670601, 0.0005146365147083998, -0.017675234004855156, 0.012626257725059986, -0.04246944561600685, -0.028139827772974968, -0.012068655341863632, 0.007684220094233751, -0.007787337992340326, 0.02089863456785679, -0.01824047416448593, 0.021815240383148193, -0.004315690137445927, 0.01824047416448593, -0.008738317526876926, -0.026520488783717155, -0.01723220758140087, 0.0082265455275774, -0.003723714966326952, -0.001163899665698409, -0.02975916489958763, 0.0029121360275894403, 0.0004129504377488047, 0.01900431327521801, 0.00846333522349596, -0.024855319410562515, -0.014887221157550812, -0.013359542936086655, -0.009257728233933449, -0.015658698976039886, -0.012748472392559052, 0.010999280959367752, 0.001356769003905356, 0.01383312325924635, -0.0029961583204567432, -0.025695541873574257, 0.01146522257477045, 0.015719804912805557, 0.005870102439075708, 0.016285046935081482, 0.030064702033996582, -0.029713334515690804, -0.016789181157946587, -0.0031565644312649965, -0.00031221917015500367, -0.017828000709414482, -0.01431434229016304, -0.008203630335628986, -0.0030859094113111496, -0.005320138297975063, -0.018072430044412613, -0.029606398195028305, 0.00253212614916265, -0.0299272108823061, 0.01662113517522812, 0.0028185658156871796, 0.004392073955386877, -0.006721782963722944, 0.008998023346066475, 0.02280823141336441, -0.005197924096137285, 0.0031489261891692877, -0.016300322487950325, 0.0065231844782829285, -0.017736339941620827, 0.04479151591658592, 0.020990295335650444, 0.010105589404702187, -0.0005318228504620492, 0.009746585041284561, -0.01669752039015293, -0.00831056758761406, 0.027177389711141586, -0.015528845600783825, -0.007859902456402779, -0.017629403620958328, 0.016315599903464317, -0.013008177280426025, -0.014986520633101463, -0.008264737203717232, 0.0107472138479352, -0.023847052827477455, -0.007588739972561598, 0.016835009679198265, 0.010548615828156471, 0.009089683182537556, 0.007069329731166363, 0.005999954883009195, 0.008470973931252956, 0.02363317646086216, 0.004743440076708794, -0.0199514739215374, 0.005534013267606497, -0.025878863409161568, -0.006870731245726347, 0.021937454119324684, -0.014566408470273018, 0.01469626184552908, 0.0017587392358109355, 0.00011004054977092892, -0.008287652395665646, -0.028521746397018433, -0.02546638995409012, -0.014734453521668911, 0.013680355623364449, 0.013932422734797001, 0.0014828023267909884, -0.01781272515654564, -0.03315060958266258, 0.014039359986782074, -0.01348175760358572, -0.006695048417896032, -0.004781631752848625, 0.013649801723659039, 0.005770803429186344, -0.00036831360193900764, -0.020822249352931976, 0.0070884255692362785, -0.012901240028440952, 0.00712661724537611, -0.01877516135573387, 0.006103073246777058, 0.01799604669213295, -0.02661214955151081, -0.0018446710892021656, -0.00043085290235467255, -0.0033551626838743687, -0.023556793108582497, -0.012954709120094776, -0.017843278124928474, -0.004254582803696394, 0.014803199097514153, 0.005828091409057379, -0.010625000111758709, -0.00857791118323803, -0.009471602737903595, 0.006603387650102377, -0.007493260316550732, 0.009349389001727104, 0.005736430641263723, 0.019462617114186287, 0.00941049586981535, 0.009838245809078217, 0.006068700458854437, -0.001178221544250846, -0.006729421205818653, 0.0016011974075809121, -0.005110082682222128, -0.006339863408356905, -0.022609632462263107, -0.018255751579999924, 0.07821711152791977, -0.0034850151278078556, 0.005239935126155615, 0.004835100378841162, 0.0015486835036426783, -0.021295830607414246, -0.010670830495655537, 0.023785945028066635, 0.023908158764243126, 0.004170560743659735, 0.01541427057236433, -0.009654924273490906, 0.004109453409910202, 0.00032081236713565886, -0.018790438771247864, 0.008975108154118061, 0.014795560389757156, 0.016483644023537636, -0.006309309974312782, -0.009792415425181389, 0.0049000270664691925, 0.016407260671257973, -0.005094805732369423, 0.01717109978199005, -0.0015324519481509924, -0.0016317509580403566, -0.008348760195076466, 0.006316948216408491, -0.008409867063164711, 0.024183141067624092, -0.002346895169466734, -0.0033303378149867058, -0.016911394894123077, -0.006595749408006668, -0.007921010255813599, 0.023709561675786972, -0.008585549890995026, 0.016941947862505913, -0.009196621365845203, 0.031622931361198425, -0.013909507542848587, -0.008333482779562473, 0.00013307506742421538, 0.003452552016824484, -0.003236767603084445, -0.010311826132237911, 0.011717289686203003, 0.009502156637609005, -0.004147645551711321, -0.019202912226319313, -0.021173615008592606, -0.004644141066819429, 0.008394590578973293, 0.007363407406955957, 0.026505211368203163, 0.0025626798160374165, 0.0070884255692362785, -0.008807063102722168, -0.0044837347231805325, 0.014024083502590656, -0.01816409081220627, 0.002239957684651017, -0.0175835732370615, -0.0213874913752079, 0.002908316906541586, -0.02898005023598671, -0.012038102373480797, -0.013084561564028263, 0.015505930408835411, 0.008180715143680573, 0.01054097805172205, 0.02447340078651905, 0.010571531020104885, -0.01149577647447586, 0.00018356005602981895, 0.019019590690732002, 0.004770174156874418, -0.004548660945147276, -0.0011658092262223363, 0.0051368167623877525, 0.0001652995269978419, -0.003567127976566553, 0.004117092117667198, -0.03183680772781372, 0.004250763915479183, 0.010533339343965054, 0.02726905047893524, -0.01176312007009983, 0.0019430153770372272, -0.018805714324116707, -0.01066319178789854, -0.015314971096813679, -0.0043386053293943405, 0.010548615828156471, 0.009433411061763763, -0.00941049586981535, -0.007489440962672234, 0.007390141952782869, 0.016223939135670662, -0.00472052488476038, -0.007836987264454365, 0.007966840639710426, 0.0018761794781312346, 0.011205517686903477, 0.004625044763088226, -0.009494517929852009, 0.016055895015597343, 0.0019134165486320853, -0.0026829843409359455, -0.006855454761534929, -8.438033546553925e-05, -0.0028032888658344746, -0.015765635296702385, 0.013940060511231422, -0.025267792865633965, 0.017064161598682404, 0.016025342047214508, 0.0018446710892021656, -0.023388748988509178, -0.016437813639640808, -0.0046326834708452225, -0.014780283905565739, 0.004361520521342754, -0.0005475770449265838, 0.008868169970810413, 0.00521320104598999, -0.01214503962546587, -0.002543583745136857, -0.023190150037407875, 0.0015219490742310882, 0.017033608630299568, -0.0026352445129305124, 0.013267883099615574, 0.027528755366802216, -0.007283204235136509, -0.002031811513006687, -0.0007600197568535805, -0.0033895354717969894, 0.02091391012072563, -0.02626078389585018, -0.006267298478633165, 0.016010064631700516, -0.0007585875573568046, 0.017140546813607216, 0.005686780903488398, -0.002188398502767086, -0.0074856216087937355, -0.015964234247803688, -0.013917146250605583, 0.009395219385623932, 0.03669482469558716, -0.016071172431111336, -0.0018589930841699243, -0.008799424394965172, 0.01015905849635601, -0.0012784755090251565, -0.01721693016588688, 0.0012421931605786085, 0.0023831776343286037, -0.029468907043337822, -0.0072373743169009686, -0.008684849366545677, -0.030248023569583893, 0.0012030464131385088, -0.009632009081542492, 0.015658698976039886, 0.020868079736828804, 0.011037472635507584, 0.01401644479483366, 0.004586853086948395, -0.013672716915607452, 0.024549784138798714, 0.01122843287885189, -0.023892883211374283, -0.010602084919810295, -0.01573508232831955, 0.006469715852290392, -0.00552255567163229, -0.02856757678091526, 0.024091480299830437, -0.002215133048593998, -0.00559893948957324, 0.00688982754945755, -0.015009435825049877, -0.0019993484020233154, 0.0031565644312649965, 0.006725601851940155, -0.002006986876949668, -0.0011228432413190603, 0.008914000354707241, -0.0037981891073286533, 0.013794931583106518, 0.004319509491324425, -0.0010054029989987612, -0.0050298795104026794, 0.004082719329744577, 0.0001281817239942029, 0.016178108751773834, -4.216032903059386e-05, 0.005648589227348566, -0.002935051219537854, 0.010258357040584087, 0.01219850778579712, 0.0022055848967283964, -0.015093457885086536, -0.01413102075457573, -0.003040079027414322, -0.0128019405528903, -0.020150071009993553, 0.006145084276795387, -0.05652408301830292, -0.01161035243421793, 0.008470973931252956, 0.005419437307864428, -0.012633896432816982, 0.017491912469267845, 0.008616103790700436, -0.0034888344816863537, 0.0164530910551548, 0.013015815988183022, -0.00905913021415472, 0.016117002815008163, 0.005308680702000856, -0.007867541164159775, -0.006714144255965948, 0.01978342980146408, -0.017553018406033516, -0.006717963609844446, 0.023892883211374283, 0.001660394947975874, 0.03040079027414322, -0.010640276595950127, -0.02684130147099495, 0.00025660215760581195, 0.023327641189098358, 0.021570812910795212, 0.03241732716560364, -0.008883447386324406, 0.011617990210652351, -0.01877516135573387, 0.0003840677672997117, 0.006637760438024998, -0.008394590578973293, 0.009952821768820286, 0.0004590194730553776, -0.0009280643425881863, -0.0011849051807075739, -0.0033437050879001617, -0.03041606768965721, -2.7495218091644347e-05, 0.012817217968404293, 0.008203630335628986, -0.014627516269683838, 0.004437904339283705, 0.037978071719408035, 0.0016145645640790462, 0.002299155341461301, -0.00688982754945755, 0.030721602961421013, 0.0011772668221965432, 0.010327102616429329, 0.00457157613709569, -0.007413057144731283, 0.0038421100471168756, 0.00929591991007328, 0.00533159589394927, -0.0124964052811265, 0.005121540278196335, -0.019523723050951958, 0.0008588414057157934, 0.004269859753549099, -0.0009242451633326709, -0.0004408782988321036, 0.019111251458525658, 0.005262850318104029, 0.0023411663714796305, 0.004865654278546572, 0.0029121360275894403, 0.009906991384923458, 0.02513030171394348, -0.003527026390656829, -0.01291651651263237, -0.006114530842751265, -0.03480050340294838, -0.005144455470144749, -0.01863767020404339, -0.004819823894649744, -0.0004907665424980223, -0.01404699869453907, 0.0008989429916255176, -0.014123382046818733, -0.018041877076029778, -0.002312522381544113, 0.0010130414739251137, -0.016773903742432594, 0.0191265270113945, 0.0073519498109817505, -0.006114530842751265, 0.006737059447914362, -0.005381245631724596, -0.008280014619231224, 0.004770174156874418, -0.014108105562627316, -0.025328900665044785, 0.014199766330420971, 0.005392703227698803, 0.009609093889594078, -0.00937994197010994, -0.012641535140573978, 0.02173885703086853, 0.024962257593870163, 0.009036215022206306, 0.006381874438375235, -0.006313128862529993, -0.0019802525639533997, -0.020211178809404373, -0.008081416599452496, 0.014299064874649048, 0.012954709120094776, -0.009135513566434383, 0.005087167490273714, 0.012335998937487602, 0.0031890275422483683, 0.008669571951031685, 0.003771454794332385, -0.0031489261891692877, -0.0034105409868061543, 0.011694374494254589, -0.005774622317403555, -0.009066767990589142, 0.010013928636908531, -0.01776689477264881, -0.010495147667825222, 0.005759345833212137, 0.001127617317251861, 0.004709067288786173, -0.00045305199455469847, -2.3825210519135e-05, -0.013680355623364449, 0.010815959423780441, -0.007283204235136509, 0.0002862008986994624, 0.014787922613322735, -0.00215211627073586, -0.012633896432816982, 0.013321351259946823, 0.004709067288786173, -0.010372933000326157, -0.0033055131789296865, 0.03117990680038929, -0.005511098075658083, -0.00510626332834363, 0.0062596602365374565, -0.004964953288435936, -0.0009796234080567956, 0.007604016922414303, -0.010090312920510769, 0.0029980679973959923, -0.030370237305760384, 0.0021482971496880054, -0.005365968681871891, 0.010884704999625683, -0.005087167490273714, -0.009219536557793617, 0.009746585041284561, 0.0004086538392584771, -0.009922267869114876, 0.026230229064822197, -0.011449946090579033, 0.02001257985830307, -0.008470973931252956, -0.00567150441929698, -0.004552480299025774, -0.009700754657387733, -0.008952192962169647, 0.001125707640312612, -2.4093749289022526e-06, -0.0017539651598781347, -0.0032615922391414642, 0.02733015827834606, 0.03302839770913124, 0.002801379421725869, -0.0020260829478502274, -0.009074406698346138, 0.02441229298710823, 0.0035117496736347675, 0.01267972681671381, 0.0303396824747324, 0.014864305965602398, 0.017415529116988182, -0.004315690137445927, 0.00929591991007328, 0.010006289929151535, -0.00357858557254076, -0.0056982384994626045, 0.012779025360941887, -0.016055895015597343, 0.002238048240542412, 0.0011352556757628918, -0.025145579129457474, 0.020409777760505676, 0.005682962015271187, -0.009036215022206306, 0.009097321890294552, 0.0049000270664691925, -0.023327641189098358, 0.023449856787919998, 0.0302327461540699, 0.03272286057472229, 0.015047627501189709, 0.025985801592469215, 0.006454439368098974, -0.028109272941946983, 0.0013624976854771376, 0.009693115949630737, -0.012931793928146362, 0.03461718186736107, -0.003794369986280799, -0.0038134660571813583, 0.006943296175450087, 0.007966840639710426, 0.00944104976952076, -0.005129178520292044, -0.015307332389056683, 0.011625628918409348, 0.020944464951753616, 0.02286933921277523, -0.01199990976601839, 0.0028643961995840073, 0.01252695918083191, -0.015261502005159855, -0.02844536304473877, 0.012840133160352707, 0.00819599162787199, 0.003490743925794959, -0.005755526479333639, 0.008898723870515823, -0.008516804315149784, 0.005266669671982527, 0.01604061760008335, -0.009525071829557419, -0.003761906875297427, 0.01297762431204319, 0.008501527830958366, 0.0070731486193835735, 0.02103612571954727, -0.0072373743169009686, 0.026230229064822197, -0.004414989147335291, -0.0191265270113945, -0.007875179871916771, 0.023358196020126343, -0.004804546944797039, 0.008944554254412651, -0.013558141887187958, 0.002726905047893524, -0.011381200514733791, 0.013733824715018272, 0.028491193428635597, -0.010075035504996777, -0.009349389001727104, 0.001350085367448628, -0.0008779374184086919, 0.005774622317403555, -0.007554367184638977, -0.025985801592469215, -0.012885963544249535, 0.014535855501890182, -0.0013166674179956317, 0.0030610845424234867, -0.0005007919389754534, 0.00917370617389679, 0.00423166761174798, -0.0191265270113945, -0.019340401515364647, 0.006603387650102377, 0.004995506722480059, 0.015208033844828606, 0.00605724286288023, -0.01692667044699192, -0.006488812156021595, 0.007604016922414303, 0.017721064388751984, 0.005927390418946743, 0.028949497267603874, 0.006053423509001732, -0.02340402640402317, 0.029835550114512444, 0.012618619948625565, 0.013856038451194763, 0.00574788823723793, -0.0035098399966955185, -0.003225310007110238, -0.013420650735497475, 5.299132681102492e-05, 0.013871315866708755, 0.003698890097439289, 0.023297088220715523, 0.000772432133089751, 0.00578989926725626, -0.0028281137347221375, 0.006588111165910959, -0.005343053489923477, 0.014321980066597462, 0.02679547108709812, -0.0048694731667637825, -0.014925412833690643, 0.024840041995048523, 0.008516804315149784, 0.00804322399199009, 0.010999280959367752, -0.0027803739067167044, -0.01817936636507511, 0.02001257985830307, -0.014490025117993355, 0.021891623735427856, 0.0028873111587017775, 0.032875627279281616, 0.013703270815312862, -0.01309983804821968, 0.0008163528982549906, -0.015055266208946705, -0.0008430872694589198, -0.010647915303707123, 0.006049604620784521, 0.0015057175187394023, 0.01604061760008335, 0.030843816697597504, -0.010273633524775505, -0.0124964052811265, -0.02066948264837265, 0.0035938622895628214, 0.004132368601858616, -0.006053423509001732, 0.009082045406103134, 0.00986116100102663, 0.02517613209784031, -0.003345614532008767, 0.013741462491452694, -0.010991642251610756, 0.016880840063095093, -0.008600826375186443, 0.018255751579999924, 0.004239306319504976, -0.015314971096813679, -0.016147555783391, -0.01663641259074211, 0.010113228112459183, 0.005484363529831171, -0.005423256661742926, -0.01253459695726633, 0.004880930762737989, 0.03140905871987343, 0.007134255953133106, 0.017125269398093224, -0.025848310440778732, -0.007817891426384449, -0.013848400674760342, 0.002797560067847371, 0.005900655873119831, 0.009364665485918522, -0.0031451068352907896, 0.0023220705334097147, 0.022884614765644073, -0.02885783649981022, 0.004911484662443399, 0.012557512149214745, 0.013206775300204754, -0.01740025170147419, 0.0276662465184927, -0.0108999814838171, 0.010090312920510769, -0.0015505930641666055, -0.005793718621134758, 0.00021518775611184537, 0.0038421100471168756, -0.015139288268983364, -0.0011514872312545776, -0.0046021295711398125, -0.005889198277145624, -0.0016317509580403566, -0.01906542107462883, -0.006633941549807787, 0.0012211875291541219, 0.002188398502767086, 0.008455697447061539, -0.0025894141290336847, 0.005824272055178881, 0.021631918847560883, -0.022609632462263107, 0.0210819561034441, -0.0034888344816863537, 0.010846513323485851, -0.004537203349173069, 0.016560029238462448, 0.004006335511803627, -0.00029383928631432354, -0.010434039868414402, -0.005427076015621424, -0.015215671621263027, -0.009991013444960117, 0.000620619161054492, -0.0024366462603211403, -0.001985981361940503, -0.005957943852990866, -0.0011104309232905507, 0.006198552902787924, -0.008364036679267883, -0.0007633615750819445, 0.0005222748732194304, -0.004930580500513315, -0.01219850778579712, 0.020150071009993553, 0.004124730359762907, -0.0044684577733278275, -0.011954079382121563, 0.012664450332522392, -0.0038535676430910826, 0.02624550648033619, -0.0009977646404877305, -0.012511681765317917, -0.012335998937487602, 0.015964234247803688, -0.018851544708013535, -0.01131245493888855, -0.0047663552686572075, 0.009922267869114876, 0.012282530777156353, 0.027238497510552406, 0.007065510377287865, 0.00518264714628458, 0.003454461693763733, -0.003866934683173895, -0.020822249352931976, -0.0001346266217296943, -0.013458842411637306, -0.01686556451022625, -0.006641579791903496, 0.01024308055639267, -0.0047358013689517975, -0.005457629449665546, -0.005197924096137285, 0.007057872135192156, 0.02618439868092537, -0.00342963682487607, -0.01573508232831955, 0.0070884255692362785, 0.002417550189420581, -0.006137446034699678, 0.001033092150464654, -0.03046189807355404, -0.0003150835691485554, -0.007183905225247145, 0.011572159826755524, -0.001411192468367517, -0.00043562689097598195, 0.015780912712216377, -0.018866822123527527, -0.007695677690207958, -0.007600197568535805, 0.010350017808377743, -0.014138659462332726, 0.0002359546342631802, 0.008990384638309479, 0.010029205121099949, -0.034189432859420776, 0.017782170325517654, 0.014558770693838596, 0.009227174334228039, -0.0035346648655831814, -0.004182018339633942, 0.010502785444259644, -0.0013166674179956317, 0.009547987021505833, 0.016544751822948456, -0.01157979853451252, -0.005614216439425945, -0.027039898559451103, -0.006041966378688812, -0.03266175463795662, -0.004861834924668074, 0.0008932141936384141, -0.014306703582406044, -0.02340402640402317, -1.5724341210443527e-05, -0.0015477286651730537, 0.0033647106029093266, -0.0021616641897708178, -0.013840761967003345, 0.006733240559697151, -0.008547358214855194, -0.017125269398093224, -0.012908878736197948, -0.006232925690710545, 0.013275520876049995, 0.006358959246426821, 0.002033721189945936, -0.0009065813501365483, -0.0023526239674538374, -0.0028758535627275705, -0.0017931119073182344, -0.012885963544249535, -0.00020134318037889898, 0.002287697745487094, 0.003588133491575718, -0.027406541630625725, 0.017659956589341164, 0.007443610578775406, 0.0008956011733971536, -0.01039584819227457, -0.006943296175450087, -0.0020260829478502274, -0.011793673038482666, 0.008249460719525814, -0.014344895258545876, -0.019997304305434227, 0.013687994331121445, -0.016239216551184654, 0.0002159038558602333, 0.00937994197010994, 0.005797537509351969, 0.01146522257477045, -0.0030744518153369427, 0.018194643780589104, -0.009456326253712177, -0.00967783946543932, -0.005629492923617363, -0.009746585041284561, -0.01616283319890499, -0.0005155912949703634, 0.010036843828856945, 0.009395219385623932, 0.006442981772124767, -0.001209729933179915, -0.016835009679198265, -0.010770129039883614, 0.013275520876049995, -0.014841390773653984, 0.004117092117667198, 0.0002828591095749289, -0.007309938780963421, -0.005553109105676413, -0.0033265186939388514, -0.004029250703752041, 0.010220165364444256, 0.0012259614886716008, -0.014077551662921906, 0.011037472635507584, -0.00215211627073586, 0.013871315866708755, -0.01668224297463894, -0.013015815988183022, 0.022349927574396133, 0.01787383109331131, 0.0137796550989151, -0.0019878908060491085, 0.014711538329720497, -0.0013624976854771376, -0.00045543897431343794, 0.0029827910475432873, 0.011434669606387615, 0.01853073388338089, -0.0077529652044177055, 0.015452462248504162, 0.007435972336679697, -0.010181973688304424, -3.810243651969358e-05, -0.007852264679968357, -0.004594491329044104, 0.007844625972211361, 0.029545290395617485, -0.01616283319890499, -0.019325125962495804, -0.007225916720926762, -0.003538483986631036, -0.014520579017698765, -0.004644141066819429, 0.004479915369302034, -0.007321396376937628, 0.029407799243927002, -0.01428378839045763, 0.02001257985830307, -0.03736700117588043, 0.02089863456785679, -0.03087437152862549, -0.005839549005031586, 0.04384435713291168, 0.001472299569286406, 0.01122843287885189, 0.009280643425881863, 0.01863767020404339, 0.004686152096837759, -0.0015429547056555748, 0.006729421205818653, 0.0118776960298419, 0.009998652152717113, 0.018729330971837044, -0.002490114886313677, -0.0013424470089375973, 0.005438533145934343, 0.017064161598682404, 0.0054308949038386345, 0.004308051895350218, -0.018423795700073242, 0.0012402834836393595, 0.0031718413811177015, -0.00014787445252295583, 0.02143332175910473, 0.005171189550310373, 0.012809579260647297, -0.0038707538042217493, 0.013588694855570793, -0.012893601320683956, -0.006458258256316185, -0.003332247491925955, -0.019340401515364647, 0.009670200757682323, 0.009532710537314415, -0.011854780837893486, -0.003998696804046631, -0.022288821637630463, 0.007836987264454365, 0.019386231899261475, -0.0019878908060491085, -0.00636659748852253, -0.013283159583806992, 0.0009653014712966979, -0.0007982117240317166, -0.0003857386764138937, 0.006225287448614836, -0.0031202821992337704, 0.005652408115565777, 0.004086538217961788, 0.024183141067624092, 0.010372933000326157, -0.03342559188604355, -0.010716660879552364, 0.0076460279524326324, 0.0038917595520615578, -0.016407260671257973, -0.005541651509702206, -0.026703810319304466, -0.0002754594315774739, 0.007787337992340326, -0.012870686128735542, -0.005602758843451738, 0.004667055793106556, 0.007749146316200495, -0.012458213604986668, -0.0006526049110107124, -0.004728163126856089, 0.00712661724537611, -0.004686152096837759, -0.011190240271389484, -0.0031928468961268663, 0.03052300401031971, 0.006213829852640629, -0.0018293942557647824, 4.398041346576065e-05, -0.015429547056555748, 0.012420020997524261, -0.005881560035049915, 0.01863767020404339, -0.016239216551184654, 0.01066319178789854, -0.006427704822272062, -0.006572834216058254, 0.009188982658088207, 0.017553018406033516, -0.013229690492153168, -0.016193386167287827, 0.00705023342743516, 0.01066319178789854, 0.021418044343590736, -0.005415618419647217, 0.008547358214855194, 0.006572834216058254, 0.0005423256661742926, -0.033761680126190186, -0.013206775300204754, -0.011449946090579033, -0.00574788823723793, 0.005396522115916014, 0.0029274127446115017, -0.036725375801324844, -0.01710999198257923, 0.032295111566782, 0.009036215022206306, -0.003929951228201389, 0.025573328137397766, 0.015345524996519089, 0.007176266983151436, 0.008745956234633923, 0.01633087731897831, 0.00609925389289856, 0.007913371548056602, 0.0008693442214280367, -0.0164530910551548, -0.006557557266205549, -0.00024800896062515676, -0.0019544728565961123, 0.0018446710892021656, -0.007604016922414303, -0.011954079382121563, -0.015460100024938583, -0.022120775654911995, -0.047296907752752304, -0.010525700636208057, 0.00564095051959157, 0.007107521407306194, 0.0062596602365374565, 0.004376797005534172, 0.00742451474070549, 0.01787383109331131, 0.011174963787198067, 0.012420020997524261, -0.0032081236131489277, -0.019493170082569122, -0.00857791118323803, 0.001223097089678049, -0.0035098399966955185, -0.009525071829557419, 0.0029159551486372948, -0.005171189550310373, -0.029774442315101624, -0.01875988394021988, 0.002702080411836505, 0.009043852798640728, 0.0068210819736123085, -0.018866822123527527, 0.029957763850688934, 0.0017405980033800006, -2.2467605958809145e-05, 0.021479152143001556, -0.02412203513085842, -0.016117002815008163, 0.01610172539949417, -0.012320722453296185, -0.010059759020805359, 0.013306074775755405, 0.025848310440778732, -0.010655553080141544, 0.005327776540070772, -0.016896117478609085, -0.012091570533812046, 0.009968098253011703, 0.00040316375088877976, -0.011266624554991722, 0.00666831387206912, 0.005098625086247921, 0.007371046114712954, 0.010502785444259644, -0.01669752039015293, -0.021540258079767227, -0.015047627501189709, -0.00047907023690640926, -0.0037275340873748064, -0.008799424394965172, -0.008509165607392788, -0.0006058197468519211, -0.013611610047519207, -0.003960505127906799, 0.013848400674760342, -0.002833842532709241, -0.010105589404702187, -0.008280014619231224, -0.010281272232532501, 0.0027039898559451103, -0.008119608275592327, 0.0033971737138926983, 0.007283204235136509, -0.008570273406803608, -0.005056614056229591, 0.02558860555291176, 0.03159238025546074, 0.0362059660255909, -0.018668223172426224, -0.01579619012773037, -0.0314701646566391, 0.03580877184867859, 0.0002606600464787334, -0.007061691023409367, 0.024366462603211403, -0.0022934265434741974, 0.020409777760505676, 0.02031811699271202, 0.00798975583165884, -0.007684220094233751, 0.014688623137772083, -0.001970704412087798, -0.0013739552814513445, 4.7978635848267004e-05, -0.007214459124952555, 0.00731757702305913, 0.01303109247237444, -0.032814521342515945, 0.017293313518166542, 0.020531991496682167, -0.007913371548056602, 0.0062863947823643684, 0.001277520670555532, 0.007668943144381046, 0.004025431349873543, 0.0066568562760949135, -0.002448103856295347, 0.002190308179706335, -0.01466570794582367, 0.010434039868414402, -0.002872034441679716, 0.02826204150915146, 0.004372978117316961, 0.015093457885086536, -0.0362059660255909, 0.01297762431204319, -0.015719804912805557, 0.016529474407434464, 0.018209921196103096, 0.0240609273314476, 0.004235486965626478, 0.002541674068197608, 0.020990295335650444, 0.013687994331121445, -0.008661934174597263, 0.005083348136395216, -0.002822384936735034, 0.020180625841021538, -0.005625674035400152, -0.008707764558494091, -0.0035212975926697254, -0.023144319653511047, -0.011358285322785378, -0.014406003057956696, 0.01620866358280182, -0.004250763915479183, -0.010250719264149666, 0.01941678673028946, -0.02494698017835617, 0.017018331214785576, -0.02268601767718792, 0.005465267691761255, 0.005457629449665546, 0.015964234247803688, -0.00804322399199009, 0.01610172539949417, 0.0004227371246088296, 0.004709067288786173, 0.020211178809404373, -0.0009003751911222935, 0.015093457885086536, 0.021158339455723763, -0.028903666883707047, -0.016835009679198265, 0.00834112148731947, 0.0237553920596838, 0.0329061821103096, 0.0019783428870141506, 0.0012784755090251565, -0.013726186007261276, 0.0175835732370615, 0.037611428648233414, 0.020577821880578995, 0.007069329731166363, 0.0021578450687229633, -0.031439609825611115, -0.0010015838779509068, 0.011434669606387615, 0.0033876257948577404, 0.011449946090579033, 0.005339234136044979, -0.008692487142980099, -0.00021602321066893637, 0.012572789564728737, 0.010640276595950127, 0.004728163126856089, -0.015253864228725433, -0.010449317283928394, 0.0036664269864559174, 0.005006964318454266, 0.0202570091933012, -0.005644769873470068, 0.008241822011768818, 0.01107566524296999, 0.0007585875573568046, -0.018072430044412613, 0.003647330915555358, -0.010304187424480915, 0.02196800895035267, 0.011174963787198067, -0.010311826132237911, -0.01805715262889862, -0.011892972514033318, -0.0009977646404877305, -0.0019554276950657368, 0.015215671621263027, 0.0021005570888519287, 0.0036377829965204, 0.009311197325587273, 0.002677255542948842, 0.02713155932724476, -0.01199990976601839, -0.02720794454216957, 0.01846962608397007, -0.0006158451433293521, -0.009479241445660591, 0.016346152871847153, 0.011365924030542374, -0.008723041042685509, -0.00262760603800416, -0.0024022734723985195, -0.003114553401246667, -0.0024423750583082438, -0.007730050012469292, 0.006080158054828644, 0.0019917101599276066, 0.0038096467033028603, -0.0066874101758003235, -0.009746585041284561, 0.008784147910773754, 0.003712257370352745, 0.021097231656312943, -0.0017673324327915907, -0.006465896964073181, 0.01541427057236433, -0.018683500587940216, -0.01318386010825634, -0.003784822067245841, 0.013527587987482548, 0.0038306524511426687, -5.209620212554e-05, -0.004010154400020838, 0.006599568761885166, 0.024091480299830437, 0.009334111586213112, 0.006072519812732935, 0.0027326338458806276, 0.011679098010063171, -0.005717334803193808, 0.002556951018050313, -0.00331124197691679, 0.0065384614281356335, 0.00964728556573391, 0.013680355623364449, 0.009402857162058353, 0.0030438981484621763, 0.010456955060362816, -0.00640097027644515, -0.002520668553188443, 0.003914674744009972, -0.012137400917708874, -0.008394590578973293, -0.009280643425881863, -0.008631380274891853, 0.014245596714317799, 0.002820475259795785, -0.016117002815008163, 2.5346922484459355e-05, -0.021463874727487564, -0.007019679993391037, 0.0007982117240317166, 0.02678019367158413, -0.004220210015773773, -0.014352533966302872, 0.011541606858372688, 0.02044033072888851, 0.019279295578598976, 0.03547267988324165, -0.004773993510752916, -0.0026447924319654703, 0.012389468029141426, -0.00464795995503664, -0.0018484903266653419, -0.028246764093637466, 0.010586807504296303, 0.015582314692437649, 0.008150161243975163, 0.012687365524470806, -0.0043386053293943405, 0.005358330439776182, 0.026688532903790474, -0.024992810562253, -0.019111251458525658, -0.025252515450119972, 0.01692667044699192, 0.01721693016588688, 0.006912742741405964, 0.011786035262048244, -0.004991687368601561, -0.027528755366802216, -0.011900611221790314, 0.022762401029467583, 0.007921010255813599, -0.020684758201241493, -0.005705877207219601, 0.004342424683272839, -0.02202911488711834, -0.0004964953404851258, 0.0004227371246088296, 0.0006115485448390245, 0.016254492104053497, 0.015062903985381126, -0.010113228112459183, 0.0009939454030245543, 0.047724656760692596, -0.01947789266705513, -0.004430266097187996, 0.016468368470668793, 0.008562634699046612, -0.00715717114508152, 0.0066874101758003235, -0.00011630641529336572, -6.500836207123939e-06, -0.013252605684101582, -0.018194643780589104, -0.028002336621284485, 0.008089054375886917, 0.0303396824747324, -0.013588694855570793, 0.014879582449793816, 0.00860846508294344, 0.01834741234779358, 0.022166606038808823, 0.021983284503221512, 0.009013299830257893, -0.012137400917708874, 0.01579619012773037, 0.010999280959367752, 0.008738317526876926, -0.007554367184638977, 0.002008896553888917, 0.043202731758356094, 0.017965491861104965, 0.013680355623364449, 0.009257728233933449, -0.006469715852290392, -0.007714773528277874, 0.022365204989910126, -0.00578989926725626, -0.0009686432895250618, -0.00669886777177453, -0.00215211627073586, -0.019401509314775467, 0.029606398195028305, 0.001612655003555119, -0.00044207178871147335, -0.009341750293970108, -0.0008177850977517664, -0.0021826697047799826, -0.02945362962782383, 0.002283878391608596, -0.017614126205444336, 0.022579079493880272, -0.002784193027764559, 0.016590582206845284, -0.010166696272790432, 0.018500179052352905, -0.023235980421304703, -0.011931164190173149, -0.00041915662586688995, 0.011518691666424274, 0.010586807504296303, 0.0007055962341837585, -0.009670200757682323, -0.020516714081168175, 0.010877066291868687, 0.00418583769351244, -0.022242991253733635, 0.008486250415444374, -0.014344895258545876, 0.007287023589015007, -0.01970704458653927, -0.029255032539367676, 0.012870686128735542, -0.0022170424927026033, 0.002629515714943409, -0.0014532036148011684, -0.01984453573822975, 0.01865294761955738, -0.0027574587147682905, -0.016178108751773834, 0.004266040399670601, 0.0019076877506449819, 0.00415528379380703, -0.023648453876376152, -0.016728073358535767, 0.005102444440126419, 0.009494517929852009, 0.05337706580758095, 0.0001056842811522074, 0.015994787216186523, -0.025619158521294594, -0.005984678398817778, -0.023648453876376152, 0.014497663825750351, -0.0017701968317851424, -0.01259570475667715, 0.0188209917396307, -0.015872573480010033, -0.023969266563653946, 0.005144455470144749, 0.02303738333284855, 0.011213155463337898, 0.0029274127446115017, 0.0028529386036098003, -0.0018943205941468477, -0.006183276418596506, 0.021754132583737373, -0.004227848723530769, 0.019325125962495804, -0.015475377440452576, -0.025206685066223145, -0.0005929300095885992, 0.008707764558494091, 0.0044837347231805325, 0.00046689657028764486, -0.005637131631374359, 0.0028185658156871796, 0.004029250703752041, -0.0029866104014217854, -0.013038731180131435, 0.005851006601005793, -0.005835729651153088, 0.023251257836818695, -0.004117092117667198, -0.001696677296422422, 0.0007251696079038084, -0.0006564240902662277, -0.03415887802839279, -0.01863767020404339, 0.0051635513082146645, 0.007836987264454365, -0.022304097190499306, 0.003979600965976715, -0.011442307382822037, 0.008891085162758827, -0.02898005023598671, -0.0023297087755054235, -0.0199514739215374, -0.006385693792253733, 0.0030591750983148813, -0.0027803739067167044, 0.030691049993038177, 0.0027211762499064207, 0.000559512060135603, -0.00048718604375608265, -0.014711538329720497, 0.0015906946500763297, -0.009089683182537556, 0.0007581101381219923, 0.008012671023607254, -0.010418763384222984, -0.0036549693904817104, 0.01054097805172205, -0.0038516579661518335, 0.0015840110136196017, 0.01410046685487032, 0.0007137120119296014, 0.0025378549471497536, -0.015124011784791946, 0.01146522257477045, -0.012557512149214745, -0.007012041751295328, -0.00586628308519721, -0.004976410884410143, -0.0070846062153577805, -0.01669752039015293, -0.026688532903790474, -0.014787922613322735, -0.00259132357314229, -0.002881582360714674, 0.003490743925794959, -0.018393242731690407, -0.028078719973564148, -0.004823642782866955, -0.01283249445259571, 0.0017310500843450427, 0.0053736069239676, -0.021097231656312943, -0.01039584819227457, 0.009609093889594078, 0.004395893309265375, -0.00367406546138227, 0.004201114177703857, -0.028246764093637466, -0.006179457064718008, 0.007462706416845322, 0.02042505331337452, 0.004609768278896809, 0.02548166736960411, -0.004609768278896809, -0.00325777311809361, -0.01241238322108984, -0.02286933921277523, -0.00041056342888623476, -0.02209022268652916, -0.004594491329044104, 0.009013299830257893, -0.019798705354332924, 0.006118350196629763, -0.030904924497008324, 0.03052300401031971, 0.00825709942728281, 0.011304816231131554, 0.017033608630299568, -0.0038153755012899637, -0.003553760703653097, 0.006290213670581579, -0.011220794171094894, 0.012588066048920155, 0.04763299599289894, 0.0202570091933012, -0.00852444302290678, 0.011083303019404411, -0.01523094903677702, 0.00937994197010994, 0.030782710760831833, 0.004812185652554035, -0.0120304636657238, -0.023556793108582497, 0.006706506013870239, 0.00540416082367301, -0.025206685066223145, -0.010220165364444256, 0.015689251944422722, 0.00022199070372153074, 0.011946441605687141, -0.009204259142279625, -0.025084471330046654, 0.04066678509116173, 0.010258357040584087, -0.002373629482463002, 0.011702013202011585, 0.004907665308564901, 0.003101186128333211, 0.004854196682572365, 0.006752336397767067, 0.00879178661853075, 0.010220165364444256, -0.016361430287361145, -0.004728163126856089, 0.008142523467540741, -0.01799604669213295, 0.030736880376935005, 0.005075709894299507, 0.01770578697323799, 0.0022475961595773697, 0.013321351259946823, -0.006599568761885166, 0.01828630454838276, -0.013871315866708755, 0.004678513389080763, 0.02097501792013645, -0.007775880396366119, -0.007508536800742149, 0.018546009436249733, -0.005770803429186344, 5.795926426799269e-06, -0.015544123016297817, -0.00863901898264885, -0.0034124504309147596, 0.005228477530181408, -0.0016842648619785905, 0.01924874261021614, 0.0024538326542824507, 0.007413057144731283, -0.00319857569411397, -0.0063780550844967365, 0.007153351791203022, 0.011755481362342834, -0.00025469253887422383, -0.013726186007261276, -0.015826743096113205, 0.010372933000326157, -0.004636502359062433, 0.015192756429314613, -0.011572159826755524, 0.0010340469889342785, 0.021998561918735504, -0.00654991902410984, 0.002108195563778281, -0.006038147024810314, 0.014123382046818733, 0.014726814813911915, 0.002348804846405983, -0.01787383109331131, -0.020531991496682167, 0.014115744270384312, 0.005010783672332764, 0.014146297238767147, 0.0065117268823087215, 0.008280014619231224], "c2e2df9f-8609-44e2-8986-dec7ba509115": [-0.0032432822044938803, 0.004162910394370556, -0.00778679084032774, 0.017758836969733238, -0.010846147313714027, -0.011195788159966469, -0.005408505443483591, 0.03167162463068962, -0.02542179636657238, 0.05250438675284386, -0.02415434829890728, 0.02341136336326599, 0.0043923621997237206, -0.0009660646901465952, -0.0077649387530982494, 0.02577143721282482, 0.009425732307136059, 0.011407029815018177, 0.0011290482943877578, -0.019885817542672157, 0.03382774442434311, -0.022814059630036354, -0.019856682047247887, 0.00483669713139534, 0.008456936106085777, -0.012215574271976948, -0.025946257635951042, -0.01353401131927967, -0.05862310156226158, -0.010525643825531006, -0.006654100492596626, 0.012470520101487637, -0.014218724332749844, 0.010875284671783447, 0.0049678124487400055, -0.04568639397621155, -0.0049678124487400055, 0.012455952353775501, -0.005397579167038202, 0.02631046622991562, -0.020118912681937218, 0.013213506899774075, 0.01834157109260559, -0.009607836604118347, -0.01925937831401825, -0.015282214619219303, -0.020512258633971214, -0.004319520201534033, 0.022158483043313026, -0.035226307809352875, 0.008456936106085777, 0.031001480296254158, -0.03621695563197136, 0.040150415152311325, 0.03668314218521118, -0.042714446783065796, 0.012528793886303902, 0.06287706643342972, 0.004982380662113428, -0.056991443037986755, 0.00806359015405178, -0.02692233771085739, -0.004945959895849228, -0.03356551378965378, 0.032807957381010056, 0.007794075179845095, -0.037790339440107346, 0.0008367704576812685, 0.0064465017057955265, 0.030622703954577446, -0.04335545375943184, 0.021211538463830948, -0.03907235339283943, -0.01707412302494049, 0.03904321789741516, 0.01193149108439684, 0.03834393620491028, 0.0017727878876030445, 0.0467061772942543, -0.035401128232479095, 0.042714446783065796, -0.01467034313827753, 0.01963815651834011, 0.026077372953295708, 0.023629887029528618, 0.004155626054853201, -0.037469834089279175, -0.042801856994628906, -0.02314913272857666, -0.01654966175556183, 0.00781592819839716, 0.03580904006958008, -0.007743086200207472, 0.022522691637277603, 0.0031413037795573473, -0.00029159491532482207, 0.017613153904676437, 0.014779605902731419, -0.018064772710204124, -0.034818392246961594, -0.013315485790371895, 0.02816065028309822, -0.014845163561403751, -0.0019412346882745624, 0.01318437047302723, -0.012441383674740791, -0.0005827345885336399, 0.0209638774394989, -0.001946697710081935, -0.009148932993412018, -0.030564429238438606, -0.049328483641147614, -0.005142632871866226, 0.014932573772966862, -0.006468354258686304, -0.019769271835684776, -0.023527909070253372, 0.010562065057456493, -0.02084732986986637, -0.008806576952338219, 0.06532454490661621, 0.0029846937395632267, 0.034760117530822754, -0.02038114331662655, -0.016593366861343384, -0.0009150754194706678, 0.02182340994477272, 0.03650832176208496, 0.042510487139225006, 0.004523477517068386, 0.0072841825895011425, 0.007706664968281984, 0.01796279475092888, -0.010037603788077831, 0.010299834422767162, 0.027242843061685562, 0.00605315575376153, 0.07773679494857788, -0.012215574271976948, -0.002917315112426877, -0.03146766871213913, 0.0182832982391119, -0.03356551378965378, 0.04320976883172989, -0.007149424869567156, -0.016345705837011337, -0.04044178128242493, 0.04827956110239029, -0.009942908771336079, 0.01443724986165762, -0.034905802458524704, -0.0020104344002902508, -0.05789468064904213, 0.009272764436900616, 0.061944689601659775, -0.017554879188537598, 0.008384093642234802, 0.032429181039333344, 0.0343230664730072, 0.030302198603749275, 0.01739462837576866, -0.04938675835728645, 0.019099125638604164, 0.0010835221037268639, 0.04117019847035408, 0.03406083583831787, 0.05116409808397293, 0.023557046428322792, -0.028233490884304047, 0.017700564116239548, 0.008937692269682884, -0.013694263063371181, 0.05267920717597008, 0.01920110546052456, 0.008158284239470959, 0.001013411907479167, 0.03869357705116272, 0.020366573706269264, 0.021094992756843567, -0.016855597496032715, -0.03624609112739563, -0.015282214619219303, 0.03563421964645386, 0.022362440824508667, 0.023935822769999504, 0.040033865720033646, -0.011640124022960663, 0.01569012925028801, -0.022333303466439247, -0.013847230933606625, -0.018123045563697815, 0.014961711131036282, 0.025043020024895668, 0.02459139935672283, -0.010066740214824677, -0.02138635888695717, 0.001997687155380845, 0.018297865986824036, -0.007364308461546898, 0.03828566148877144, -0.02548007108271122, -0.03618782013654709, -0.04848351702094078, 0.02453312650322914, -0.012863866053521633, 0.026995180174708366, -0.01381809450685978, -0.01353401131927967, 0.046880997717380524, 0.028918204829096794, 0.06695620715618134, -0.04140329360961914, 0.03575076907873154, -0.008813860826194286, 0.007142140995711088, 0.005838272161781788, 0.010066740214824677, 0.03140939399600029, -0.029836012050509453, -0.028204355388879776, 0.01389093603938818, 0.01023427676409483, -0.008296683430671692, 0.001486883731558919, -0.039946455508470535, 0.024402011185884476, -0.017569448798894882, 0.015340488404035568, 0.0006150581757538021, -0.04766768962144852, 0.0019922240171581507, -0.012295699678361416, 0.011552713811397552, 0.0019284873269498348, -0.008974112570285797, 0.022173050791025162, 0.04679358750581741, -0.026616401970386505, -0.02568402700126171, 0.000681071076542139, 0.00958598405122757, 0.015019983984529972, -0.014276998117566109, -0.011895069852471352, -0.0057290093973279, 0.000390614295611158, 0.006027660798281431, 0.05830259621143341, 0.010722316801548004, 0.02038114331662655, -0.01819588802754879, -0.00020293277339078486, 0.00960055273026228, 0.008245694451034069, -0.027854714542627335, 0.019507041200995445, 0.017889952287077904, -0.029734032228589058, -0.02282862737774849, -0.04653135687112808, 0.0006446501356549561, 0.010336254723370075, -0.04216085001826286, -0.014189587906002998, 0.04658963158726692, -0.030884934589266777, 0.04402559995651245, 0.010809727013111115, 0.014648490585386753, 0.011159367859363556, 0.017831679433584213, -0.020541394129395485, -0.013439316302537918, 0.029005615040659904, -0.005922040436416864, -0.02191082015633583, -0.016520526260137558, 0.01972556672990322, 0.03129284828901291, -0.03455616161227226, -0.02138635888695717, 0.022610101848840714, 0.029326118528842926, -0.02789841964840889, 0.004403288476169109, 0.020424848422408104, -0.02763618901371956, 0.0025858848821371794, -0.032633136957883835, 0.006832563318312168, 0.017438333481550217, -0.016054337844252586, -0.0010115908225998282, 0.014480954967439175, 0.0062316181138157845, -0.006679595448076725, 0.008282115682959557, -0.023731866851449013, 0.049474168568849564, 0.015675561502575874, 0.004672802984714508, 0.01675361953675747, -0.03228349611163139, -0.01684102974832058, 0.025611186400055885, -0.023192837834358215, -0.006763363257050514, 0.00293370452709496, -0.02058509923517704, 0.05165942385792732, 0.024707946926355362, 0.001808298286050558, -0.02389211766421795, -0.04373423010110855, -0.0007939758943393826, -0.0002902291598729789, -0.025960827246308327, -0.013402896001935005, -0.022814059630036354, -0.005026085767894983, -0.02014804817736149, -0.00269150547683239, -0.030273063108325005, 0.01825416088104248, 0.05495187267661095, -0.044346101582050323, 0.0514846034348011, -0.01023427676409483, -0.027082590386271477, -0.022697512060403824, -0.03138025850057602, -0.035109758377075195, -0.014189587906002998, 0.01387636736035347, -0.026558129116892815, -0.020206322893500328, -0.0582151859998703, -0.022420713678002357, -0.029675759375095367, -0.03135112300515175, -0.014393544755876064, 0.006814352702349424, 0.007881485857069492, -0.0005176322301849723, -0.05072704702615738, -0.01101368386298418, 0.014947142452001572, 0.01837070845067501, -0.008311252109706402, -0.005612462759017944, 0.0009897382697090507, 0.013490306213498116, 0.05591338500380516, -0.04918279871344566, 0.028685109689831734, -0.01583581231534481, -0.029588349163532257, 0.0072841825895011425, 0.020075207576155663, 0.009797225706279278, -0.04787164553999901, -0.05375726521015167, -0.0034800181165337563, 0.008158284239470959, -0.01831243559718132, 0.020279163494706154, 0.018953442573547363, -0.037557244300842285, -0.054631367325782776, 0.007142140995711088, -0.0317881740629673, 0.024780789390206337, -0.0038132695481181145, -0.0032232508528977633, -0.02430003322660923, -0.06217778101563454, 0.015937792137265205, -0.020162617787718773, -0.004712866153568029, 0.018297865986824036, -0.027446798980236053, 0.019390493631362915, -0.015238509513437748, 0.01825416088104248, 0.022668376564979553, 0.0033416186925023794, -0.00804902147501707, -0.04827956110239029, -0.013563147746026516, -0.0027297474443912506, -0.00698188878595829, 0.004002658184617758, -0.030680976808071136, 0.01952160894870758, -0.0029500939417630434, -0.016418546438217163, 0.008449651300907135, -0.039509404450654984, -0.00667231110855937, -0.0021124128252267838, -0.011341472156345844, -0.0016207306180149317, -0.028277195990085602, 0.01654966175556183, -0.030331335961818695, -0.016593366861343384, -0.003999016247689724, 0.007728517521172762, 0.02193995751440525, 0.028408311307430267, 0.014874300919473171, -0.023105427622795105, -0.018152182921767235, 0.013912788592278957, 0.04420042037963867, 0.02191082015633583, -0.02884536236524582, 0.05061050131917, -0.026004532352089882, -0.015850381925702095, 0.03359464928507805, 0.04862920194864273, 0.02196909487247467, 0.016374841332435608, 0.007043804507702589, 0.013453884981572628, 0.002070528920739889, 0.007939758710563183, 0.0074407923966646194, 0.0013402896001935005, 0.003345260862261057, 0.03158421441912651, -0.006144207902252674, 0.01324264332652092, 0.013737968169152737, 0.005699872970581055, 0.013555863872170448, 0.022362440824508667, -0.023702729493379593, -0.013322769664227962, -0.010707748122513294, 0.03452702611684799, 0.011640124022960663, -0.012040753848850727, -0.05771986022591591, -0.014619354158639908, -0.024809924885630608, 0.01837070845067501, 0.024023232981562614, -0.0031467669177800417, 0.0140657564625144, 0.017919089645147324, -0.06514972448348999, -0.028743384405970573, 0.03117630071938038, -0.007466286886483431, 0.035197168588638306, 0.010401812382042408, 0.003536470700055361, -0.04201516509056091, 0.0015396940289065242, 0.0032742400653660297, 0.05844828113913536, -0.0007229550974443555, 0.0007507260306738317, -0.05142632871866226, -0.008602619171142578, -0.0025913480203598738, -0.0056925886310637, 0.009003249928355217, 0.009993898682296276, 0.0143352709710598, -0.0005499557591974735, 0.05384467542171478, 0.029675759375095367, -0.008303968235850334, -0.040004730224609375, -0.042219121009111404, 0.001682646106928587, -0.023396793752908707, -0.007517276331782341, 0.007080225273966789, -0.008464219979941845, -0.005423073656857014, 0.03362378478050232, -0.011152083054184914, -0.016491388902068138, 0.0015979675808921456, 0.00040472738328389823, 0.001345752738416195, 0.05165942385792732, -0.005430357996374369, -0.011071957647800446, 0.015515308827161789, 0.012011616490781307, -0.00778679084032774, -0.0076556759886443615, -0.02300344780087471, -0.019973227754235268, -0.029894284904003143, 0.020308300852775574, -0.020031502470374107, 0.054689642041921616, -0.011195788159966469, -0.042714446783065796, 0.02447485364973545, 0.009090660139918327, 0.023484203964471817, -0.02084732986986637, -0.032400041818618774, -0.02441657893359661, 0.01923024095594883, -0.015500740148127079, 0.006479280535131693, 0.009607836604118347, 0.01469948049634695, 0.005128064658492804, 0.0037404277827590704, 0.015369624830782413, 0.008631756529211998, 0.01021970808506012, -0.015194804407656193, -0.0021033077500760555, 0.002527611330151558, -0.0241834856569767, 0.008923123590648174, -0.017336353659629822, -0.04184034466743469, 0.03341982886195183, -0.00842051487416029, -0.03945113345980644, 0.010489222593605518, -0.026019100099802017, 0.009680678136646748, 0.0098482146859169, 0.003527365392073989, -0.005958461202681065, 0.025407228618860245, 0.016374841332435608, -0.009782657027244568, -0.009913772344589233, 0.021313518285751343, -0.011421598494052887, 0.014014767482876778, -0.011217640712857246, 0.01739462837576866, 0.005266463849693537, -0.014976278878748417, 0.003955311141908169, 0.016170885413885117, 0.0020668867509812117, 0.012084458954632282, -0.03668314218521118, -0.012186436913907528, -0.015325919725000858, -0.022668376564979553, -0.0030611776746809483, -0.0030502513982355595, -0.016316568478941917, -0.007098435889929533, -0.005525052547454834, 0.01687016710639, -0.013198938220739365, 0.03374033421278, -0.0126526253297925, -0.01675361953675747, -0.05110582336783409, 0.0014113103970885277, 0.002553106052801013, 0.02533438615500927, 0.0317881740629673, -0.0031467669177800417, 0.030127378180623055, -0.008988681249320507, -0.010875284671783447, 0.03554680943489075, 0.020337438210844994, -0.004756571259349585, -0.020308300852775574, 0.00667231110855937, 0.009178070351481438, -0.008427798748016357, 0.0215029064565897, -0.026135645806789398, 0.02320740558207035, 0.008974112570285797, -0.0003548762761056423, -0.03834393620491028, -0.011414313688874245, 0.035342853516340256, 0.01684102974832058, 0.012667193077504635, -0.006319028325378895, 0.023440498858690262, -0.007251403760164976, 0.007214982528239489, 0.016826462000608444, 0.00020850972214248031, 0.008085442706942558, -0.006807068362832069, 0.030884934589266777, 0.010532927699387074, -0.0005722636124119163, -0.018472686409950256, -0.030535293743014336, 0.042510487139225006, -0.024110643193125725, 0.039800774306058884, 0.004221183713525534, 0.014743185602128506, 0.05043568089604378, -0.021459201350808144, 0.042277395725250244, -0.005586967803537846, 0.026004532352089882, 0.01459750160574913, 0.022522691637277603, 0.03228349611163139, 0.008114579133689404, -0.000972438370808959, 0.008194705471396446, -0.011348756030201912, 0.034993212670087814, 0.012201005592942238, -0.022289598360657692, 0.02533438615500927, -0.03575076907873154, -0.021459201350808144, -0.0014604786410927773, -0.03650832176208496, -0.02392125502228737, -0.01589408703148365, -0.009607836604118347, -0.011603702791035175, 0.00038560639950446784, -0.03213781490921974, 0.01695757731795311, 0.013286348432302475, -0.0007516365731135011, -0.0026514423079788685, 0.013177085667848587, 0.011443451046943665, 0.0032123245764523745, 0.03167162463068962, -0.010875284671783447, 0.019769271835684776, -0.006512059364467859, 0.0006997367599979043, 0.03400256484746933, 0.03601299971342087, 0.004454277455806732, 0.018647506833076477, -0.0006983709754422307, 0.014830595813691616, -0.012455952353775501, -0.020060637965798378, -0.021983662620186806, -0.029865147545933723, 0.020308300852775574, -0.002527611330151558, 0.003762280335649848, -0.011057388968765736, 0.02919500321149826, -0.0031158090569078922, 0.03575076907873154, 0.011909638531506062, 0.015194804407656193, 0.015996064990758896, 0.00583098828792572, 0.04900797829031944, 0.01810847781598568, -0.03181730955839157, 0.009972046129405499, 0.00672330055385828, 0.0020213606767356396, -0.01193149108439684, 0.030710114166140556, 0.028539426624774933, 0.0012874793028458953, -0.006504775024950504, -0.042044300585985184, -0.06450872123241425, -0.03639177605509758, 0.014226008206605911, -0.01351944264024496, -0.016170885413885117, -0.017744269222021103, -0.002835368039086461, -0.03175903484225273, 0.00787420105189085, -0.0281315129250288, 0.02816065028309822, 0.01397834625095129, 0.02309085801243782, -0.0012100847670808434, 0.010605769231915474, 0.01442268118262291, -0.009906488470733166, 0.016170885413885117, -0.0005531426286324859, -0.0035382916685193777, -0.024576831609010696, -0.0005772714503109455, -0.027097158133983612, 0.020046070218086243, -0.008151000365614891, -0.019754702225327492, -0.010365392081439495, -0.00367122795432806, -0.005302884615957737, 3.0616331059718505e-05, -0.04912452772259712, -0.01210631150752306, -0.0013657842064276338, 0.023076290264725685, -0.012055321596562862, -0.015427898615598679, -0.011625555343925953, -0.008456936106085777, 0.010955410078167915, 0.0020850971341133118, 0.039800774306058884, 0.005193622317165136, -0.03470184653997421, -0.012659909203648567, 0.017059555277228355, -0.0012009795755147934, -0.016316568478941917, 0.016564231365919113, 0.00434137275442481, 0.04268530756235123, -0.014626638032495975, -0.004534403793513775, 0.0021124128252267838, 0.0033707553520798683, -0.02038114331662655, -0.004454277455806732, 0.01589408703148365, 0.0270097479224205, 0.01721980795264244, 0.018793189898133278, -0.010474654845893383, 0.0009751699399203062, -0.019273946061730385, -0.0020887393038719893, -0.008500641211867332, -0.005940250586718321, 0.02633960358798504, -0.005149917211383581, 0.019973227754235268, 0.03825652599334717, -0.042597897350788116, 0.037965159863233566, 0.015559013932943344, 0.00672330055385828, -0.0013102423399686813, 0.03382774442434311, -0.02571316435933113, -0.0009833646472543478, 0.05629216134548187, -0.02902018278837204, -0.0031340194400399923, -0.0028972835280001163, 0.02297431230545044, 0.010897137224674225, 0.03321587294340134, 0.022537261247634888, 0.0005581504665315151, 0.029981695115566254, 0.046968407928943634, 0.04067487642168999, 0.02306172251701355, 0.007611970882862806, 0.014502807520329952, -0.022843196988105774, -0.0582151859998703, 0.004538045730441809, -0.0013921894133090973, 0.02533438615500927, 0.0011672902619466186, -0.016374841332435608, -0.042481351643800735, 0.02527611330151558, 0.004250320605933666, 0.021328086033463478, -0.03633350133895874, 0.04044178128242493, 0.0015925044426694512, 0.013614136725664139, 0.0023855697363615036, -0.005510483868420124, -0.01092627365142107, -0.0156027190387249, 0.02341136336326599, 0.010445517487823963, -0.022595534101128578, -0.010248844511806965, 0.0013521263608708978, -0.023571614176034927, -0.007054730784147978, 0.0068653421476483345, -0.01805020496249199, 0.03170076385140419, 0.030127378180623055, 0.0026696529239416122, 0.001667167292907834, 0.006227976176887751, -0.014415397308766842, -0.01920110546052456, -0.0045416876673698425, 0.02642701379954815, -0.0024565905332565308, 0.007145782932639122, 0.022041935473680496, -0.025043020024895668, -0.027432231232523918, 0.0334489643573761, 0.002545821713283658, 0.03382774442434311, -0.004953244235366583, -0.011348756030201912, -0.005798209458589554, 0.021357223391532898, 0.0062316181138157845, 0.047143228352069855, -0.006992815062403679, -0.010649474337697029, -0.0013084212550893426, -0.012893003411591053, -0.005565115250647068, -0.0013721578288823366, -0.022158483043313026, -0.03216695040464401, 0.016797324642539024, 0.006490206811577082, 0.03706192225217819, -0.008100010454654694, 0.0026478003710508347, -0.044695742428302765, 0.04286012798547745, 0.01443724986165762, -0.04650222137570381, -0.011203072965145111, -0.012958561070263386, -0.015253078192472458, 0.0020031502936035395, -0.004221183713525534, -0.0025348954368382692, 0.020089775323867798, 0.05145546421408653, 0.032895367592573166, 0.02577143721282482, 0.023367658257484436, -0.01094084233045578, -0.021182402968406677, 0.002227138727903366, 0.004359583370387554, -0.00505886459723115, -0.032545726746320724, 0.0215029064565897, 0.008282115682959557, -0.007262330036610365, -0.011829512193799019, -0.012761888094246387, -0.037528108805418015, -0.004986023064702749, 0.010358107276260853, 0.028116945177316666, -0.014932573772966862, 0.010452802293002605, 0.027271978557109833, -0.013293633237481117, 0.01689930260181427, -0.004691013600677252, 0.00033507240004837513, -0.04070401191711426, 0.02438744343817234, -0.008959544822573662, -0.010649474337697029, 0.016331136226654053, -0.003926174249500036, 0.022624671459197998, 0.0060203769244253635, 0.004235751926898956, -0.01917196810245514, 0.009921056218445301, 0.02078905701637268, 0.017598584294319153, 0.009148932993412018, -0.003571070497855544, 0.0016116254264488816, 0.007772222626954317, -0.013366474770009518, -0.018414413556456566, -0.0035164391156286, 0.01563185639679432, 0.0034399551805108786, 0.007859633304178715, 0.003918890375643969, 0.0025949899572879076, -0.00015182967763394117, -0.018764054402709007, -0.018181320279836655, -0.00541943171992898, 0.039742499589920044, -0.022508123889565468, 0.006719658151268959, 0.0035856387112289667, 0.009192638099193573, -0.002899104729294777, 0.024664241820573807, 0.03140939399600029, -0.003933458589017391, -0.024372873827815056, 0.04825042560696602, -0.007524560671299696, 0.00958598405122757, -0.02872881479561329, -0.004894970450550318, -0.019987797364592552, -0.011975196190178394, -0.0023436855990439653, 0.04338458925485611, -0.009017817676067352, -0.030477019026875496, 0.001676272484473884, -0.02341136336326599, -0.031118027865886688, -0.04565725475549698, 0.009323753416538239, -0.004916823003441095, -0.00027930288342759013, 0.004370509646832943, -0.023819277063012123, -0.028350038453936577, -0.02498474530875683, -0.054194316267967224, -0.013774389401078224, -0.018807759508490562, 0.012244710698723793, 0.004162910394370556, -0.010037603788077831, 0.03942199423909187, 0.00834767334163189, -0.016345705837011337, -0.005535978823900223, 0.0009305542916990817, 0.021663159132003784, 0.00541943171992898, 0.0021069496870040894, 0.023702729493379593, 0.024314600974321365, -0.024518558755517006, -0.0076556759886443615, 0.03921803832054138, -0.01110109407454729, -0.006832563318312168, -0.009382027201354504, 0.014087609015405178, -0.0021433706860989332, -0.018851464614272118, -0.011501723900437355, -0.0006819815607741475, 0.013395611196756363, 0.0021488338243216276, 0.025261545553803444, -0.0061697023920714855, 0.006304460112005472, -0.021298948675394058, -0.027679894119501114, -0.008252978324890137, -0.01290028728544712, -0.019565314054489136, -0.0045562563464045525, -0.025786006823182106, -0.010664043016731739, -0.024372873827815056, -0.015005416236817837, -0.037936020642519, -0.02108042500913143, 0.01586494967341423, -0.001368515775538981, -0.026907769963145256, -0.023571614176034927, 0.012259279377758503, -0.00028453837148845196, -0.0059621031396090984, -0.0012811055639758706, -0.01139974594116211, -0.014371692202985287, 0.020337438210844994, -0.019987797364592552, 0.015427898615598679, 0.01335919089615345, 0.00788876973092556, -0.0031340194400399923, -0.014852448366582394, -0.03703278303146362, 0.007182203698903322, -0.016680777072906494, -0.02314913272857666, 0.012288415804505348, -0.029413528740406036, 0.04186948016285896, 0.012302984483540058, 0.032866232097148895, 0.01469948049634695, -0.005251895636320114, -0.001095358980819583, 0.025319818407297134, -0.01857466623187065, -0.03662487119436264, -0.018064772710204124, 0.006665026769042015, -0.02108042500913143, 0.015792107209563255, 0.02916586585342884, 0.002735210582613945, 0.012368542142212391, 0.016258295625448227, 0.004297667648643255, 0.009374742396175861, 0.007065657060593367, -0.010620337910950184, -0.014116745442152023, -0.0012264741817489266, -0.001955803018063307, -0.014196871779859066, 0.029923422262072563, -0.03811084106564522, -0.018880600109696388, -0.02872881479561329, -0.00033074739621952176, 0.010882568545639515, -0.0066431742161512375, -0.004108279012143612, 0.0017755194567143917, -0.0671892985701561, -0.013453884981572628, -0.0031740826088935137, -0.009046955034136772, 0.00026427925331518054, 0.007830495946109295, 0.018297865986824036, 0.008194705471396446, -0.011887785978615284, -0.0027042527217417955, 0.016229158267378807, -0.01443724986165762, 0.016447683796286583, 0.01601063273847103, 0.0182832982391119, 0.013781673274934292, -0.0007912443252280354, -0.011450734920799732, 0.015500740148127079, -0.020716214552521706, -0.02521784044802189, 0.0013584999833256006, 0.014429965056478977, -0.022814059630036354, -0.019856682047247887, 0.024766219779849052, 0.044520922005176544, 0.00018051115330308676, 0.0024656958412379026, -0.014641206711530685, 0.011479871347546577, 0.003490944392979145, -0.0040208688005805016, -0.02533438615500927, -0.005350232124328613, 0.03158421441912651, 0.019842112436890602, 0.0012392215430736542, 0.029923422262072563, 0.001791908871382475, 0.0038569746538996696, 0.014619354158639908, -0.002888178452849388, -0.008828429505228996, 0.014058472588658333, 0.0036511963699012995, -0.004465203732252121, -0.035051487386226654, -0.00020429855794645846, 0.01217915304005146, -0.00797617994248867, 0.012973128817975521, 0.0005918398383073509, -0.014867016114294529, 0.004319520201534033, -0.016447683796286583, 0.010037603788077831, 0.0037768485490232706, 0.02536352351307869, 0.010955410078167915, 0.04772596433758736, -0.00480027636513114, -0.01253607776015997, -0.005281032528728247, -0.015325919725000858, -0.00636273343116045, -0.011873217299580574, 0.022260461002588272, 0.010627621784806252, 0.021400928497314453, 0.009185354225337505, -0.01558815035969019, 0.014590217731893063, 0.026150215417146683, -0.0021670442074537277, 6.760632095392793e-05, 0.017234375700354576, 0.012317552231252193, -0.00806359015405178, 5.8444184105610475e-05, -0.012856582179665565, -0.011844080872833729, -0.0006724210688844323, -0.004301309585571289, -0.01914283074438572, -0.019361356273293495, -0.017525743693113327, 0.0023946750443428755, 0.018924305215477943, 0.005372084677219391, 0.03630436584353447, 0.024518558755517006, 0.02193995751440525, 0.017715131863951683, -0.02430003322660923, 0.05556374415755272, -0.02521784044802189, -0.011785807088017464, 0.0036493754014372826, 0.011938774958252907, -0.004559898283332586, -0.01937592588365078, -0.01217915304005146, -0.002183433622121811, 0.0010425485670566559, -0.0027315684128552675, -0.010030318982899189, 0.009425732307136059, -0.01164740789681673, -0.015282214619219303, -0.017831679433584213, 0.0032578506506979465, -0.02884536236524582, 0.009287333115935326, 0.01164740789681673, 0.006785215809941292, -0.01201890129595995, -0.017948225140571594, -0.00028567653498612344, 0.01580667681992054, -0.007408013567328453, 0.012375826016068459, -0.014393544755876064, -0.020949309691786766, -0.01772969961166382, -0.010183286853134632, -0.013548579066991806, -0.01687016710639, -0.026077372953295708, 0.0057290093973279, -0.014852448366582394, -0.0041228472255170345, -0.020483121275901794, -0.00029842383810319006, -0.006996457464993, -0.018807759508490562, -0.0030866723973304033, -0.010634906589984894, 0.03869357705116272, -0.028889067471027374, 0.003727680305019021, 0.00577999884262681, 0.001548799336887896, -0.006781573873013258, -0.02763618901371956, 0.0016953934682533145, -0.02453312650322914, -0.012230142019689083, 0.02147376909852028, 0.016418546438217163, -0.028437448665499687, -0.0021870757918804884, 0.020016932860016823, 0.044841427356004715, -0.01037995982915163, -0.02338222600519657, 0.0015387835446745157, -0.0007580102537758648, -0.003663943847641349, -0.009148932993412018, -0.012113595381379128, 0.009374742396175861, 0.0025676742661744356, -0.002942809835076332, 0.003281524172052741, -0.013009550049901009, -0.008558914065361023, 0.010634906589984894, -0.00852249376475811, -0.018530961126089096, 0.009338322095572948, 0.023455068469047546, -0.008129147812724113, -0.014830595813691616, 0.001598878065124154, 0.00307028298266232, -0.006726942490786314, 0.006788858212530613, 0.0036220597103238106, 0.003835122101008892, -0.004396004136651754, -0.004432424902915955, 0.005736293736845255, 0.0028590415604412556, -0.00831853598356247, -0.0035783546045422554, 0.0032505665440112352, -0.011479871347546577, -0.01091170497238636, 0.0032287139911204576, 0.01396377757191658, -0.009840930812060833, -0.00694546801969409, 0.02766532450914383, -0.01834157109260559, 0.003561965189874172, 0.025960827246308327, 0.025494638830423355, -0.005288316402584314, -0.013796241953969002, 0.008923123590648174, 0.020191753283143044, 0.007539128884673119, -0.0017090513138100505, 0.011698396876454353, -0.0156027190387249, -0.03886839747428894, 0.03473098203539848, 0.03158421441912651, -0.014240576885640621, -0.01978383958339691, 0.0044469935819506645, 0.016025202348828316, -0.014568365179002285, -0.011640124022960663, -0.03478925675153732, 0.003354365937411785, -0.030972344800829887, 0.01689930260181427, -0.014313418418169022, 0.015529877506196499, -0.009782657027244568, 0.01580667681992054, 0.02176513709127903, 0.008413231000304222, -0.0010115908225998282, 0.013104244135320187, -0.04411301016807556, -0.008369525894522667, 0.00480027636513114, -0.0012883897870779037, -0.0034108185209333897, -0.008289399556815624, -0.001291121356189251, -0.007448076736181974, -0.0008563466835767031, 0.025786006823182106, -0.00627532321959734, 0.018530961126089096, -0.0004935033502988517, -0.032604001462459564, -0.008201989345252514, 0.00037058276939205825, 0.0077649387530982494, 0.02548007108271122, 0.012645340524613857, -0.017380058765411377, -0.009666110388934612, -0.004060931503772736, 0.00020133935322519392, 0.011793091893196106, 0.018064772710204124, -0.003984448034316301, -0.0002035018551396206, -0.019011715427041054, -0.02173599973320961, 0.03132198378443718, -0.004851265344768763, 0.01586494967341423, -0.003392607904970646, -0.009884635917842388, -0.011683829128742218, 0.013971062377095222, -0.017380058765411377, 0.01784624718129635, 0.0051244222559034824, 0.009469437412917614, 0.02453312650322914, 0.03592558950185776, -0.006359091494232416, -0.0057035149075090885, 0.015311351977288723, -0.022639239206910133, -0.008107295259833336, 0.0033143030013889074, -0.011865933425724506, 0.0038314799312502146, -0.007983463816344738, -0.006599469110369682, -0.010088592767715454, -0.028743384405970573, -0.018501823768019676, 0.006610395386815071, 0.0009282780229113996, 0.010897137224674225, -0.01615631766617298, 0.00914164911955595, -0.028918204829096794, 0.029748601838946342, -0.030535293743014336, 0.0007921548676677048, 0.006796142086386681, 0.014429965056478977, -0.0022744860034435987, 0.01739462837576866, -0.008850282058119774, 0.006668669171631336, 0.024780789390206337, 0.006850773468613625, 0.011035536415874958, 0.002962841186672449, 0.023455068469047546, -0.007794075179845095, -0.011006399989128113, -0.012674477882683277, -0.00024788983864709735, -0.012230142019689083, 0.005018801894038916, 0.0030575355049222708, 0.014502807520329952, 0.014087609015405178, -0.0009942909236997366, -0.029296981170773506, -0.003691259538754821, -0.006166060455143452, 0.020220890641212463, 0.008835713379085064, -0.0025330744683742523, 0.0024529483634978533, -0.030914070084691048, 0.007171277422457933, -0.01657879911363125, 0.024372873827815056, -0.0016908408142626286, -0.03394429013133049, 0.0045416876673698425, -0.02144463360309601, -0.0025931689888238907, 0.016112612560391426, 0.00394438486546278, -0.0312054380774498, 0.012587067671120167, -0.009367458522319794, -0.010744169354438782, -0.0036129544023424387, -0.004261246882379055, -0.011297767050564289, -0.012201005592942238, -0.02421262301504612, -0.001163648208603263, 0.020075207576155663, 0.01288571860641241, 0.006978246849030256, 0.006180628668516874, -0.015850381925702095, 0.015427898615598679, 0.018938874825835228, 0.03953854367136955, 0.009534995071589947, -0.0016043412033468485, 0.015107394196093082, 0.0023946750443428755, -0.0024128854274749756, -0.025698596611618996, -0.0014149524504318833, 0.028320901095867157, 0.023557046428322792, 0.01325721200555563, -0.029151298105716705, -0.016491388902068138, -0.02789841964840889, 0.010154150426387787, 0.018705779686570168, 0.03216695040464401, 0.00631174398586154, 0.0025949899572879076, 0.00358381774276495, -0.024722514674067497, 0.021269813179969788, -0.004676444921642542, -0.011742101982235909, -0.020570531487464905, 0.0020960234105587006, -0.0034381342120468616, -0.0031595141626894474, 0.019419630989432335, -0.00012610740668606013, 0.025975394994020462, 0.015121962875127792, -0.00948400516062975, 0.024693379178643227, 0.018924305215477943, -0.04577380418777466, -0.010015751235187054, -0.017263513058423996, 0.0030866723973304033, -0.03706192225217819, 0.0073788766749203205, -0.010707748122513294, -0.016302000731229782, -0.027767304331064224, -0.013599568977952003, -0.013628705404698849, 0.02833547070622444, 0.011953343637287617, 0.0144081125035882, -0.006308102048933506, 0.007265971973538399, -0.04883315786719322, -0.003835122101008892, -0.007302392739802599, 0.00269150547683239, -0.005189979914575815, 0.020366573706269264, -0.035168033093214035, 0.018793189898133278, 0.00014192773960530758, 0.037295013666152954, 0.003798701101914048, -0.030739249661564827, 0.007859633304178715, 0.0157484021037817, -0.002509400947019458, -0.010328970849514008, -0.04093710705637932, 0.0018510929076001048, -0.0027206421364098787, 0.017146965488791466, 0.0047055818140506744, -0.035138897597789764, -0.0382273904979229, -0.0016480463091284037, 0.006155134178698063, -0.0156027190387249, -0.01687016710639, -0.005452210549265146, -0.0007816838333383203, 0.007364308461546898, 0.021692294627428055, -0.024343738332390785, 0.005350232124328613, 0.021750569343566895, 0.00013942380610387772, 0.017889952287077904, 0.03135112300515175, -0.025727732107043266, -0.006213407497853041, 0.028233490884304047, -0.010452802293002605, -0.03837307170033455, -0.024518558755517006, -0.017117828130722046, 0.002471158979460597, -0.0012720003724098206, -0.007779506966471672, -0.02046855352818966, 0.010569348931312561, -0.029748601838946342, 0.026091942563652992, 0.02893277257680893, 0.005790925119072199, -0.012951276265084743, 0.006031303200870752, 0.007320603355765343, 0.007160351146012545, -0.00012314821651671082, 0.0044469935819506645, -0.006045871414244175, -0.023935822769999504, 0.04839610680937767, 0.030477019026875496, 0.02389211766421795, -0.0011809481075033545, 0.009367458522319794, -0.027971260249614716, 0.021211538463830948, 0.025640321895480156, -0.027738166972994804, -0.004111920949071646, -0.010001182556152344, 0.02654356136918068, -0.017860814929008484, -0.012215574271976948, 0.005776356905698776, 0.016855597496032715, -0.01730721816420555, -0.005947534926235676, 0.024664241820573807, 0.004767497535794973, -0.02061423659324646, 0.018560096621513367, 0.013177085667848587, 0.02300344780087471, 0.01262348797172308, 0.019215673208236694, -0.00645014364272356, 0.0008067231974564493, -0.01603977009654045, -0.0007133946055546403, 0.021094992756843567, -0.00807815883308649, 0.016505956649780273, 0.00968796294182539, -0.006686879321932793, 0.019550746306777, -0.005583325866609812, -0.01719067059457302, -0.0035874599125236273, -0.001709961798042059, 0.0011299587786197662, 0.0031740826088935137, -0.02409607544541359, -0.013322769664227962, -0.0005936608649790287, 0.005459494888782501, -0.0017928193556144834, -0.003643912263214588, 0.02185254730284214, -4.546923446469009e-05, -0.002207107376307249, -0.0017017670907080173, 0.0026059162337332964, -0.010066740214824677, 0.0057035149075090885, -0.03199212998151779, -0.01557358168065548, 0.008500641211867332, 1.4724861102877185e-05, -0.015427898615598679, 0.000808544282335788, 0.0011991584906354547, -0.009935624897480011, -0.009105227887630463, -0.019011715427041054, -0.012324837036430836, 0.012011616490781307, 0.009403879754245281, -0.016403978690505028, -0.013147949241101742, 0.008121863007545471, -0.009877351112663746, -0.004833055194467306, 0.01911369524896145, 0.015340488404035568, 0.002190717961639166, 0.005342947784811258, 0.0015797570813447237, 0.0008809308055788279, 0.009454868733882904, -0.003117630025371909, 0.0031759035773575306, -0.004461561795324087, -0.01102825254201889, -0.013228075578808784, -0.013650557957589626, 0.06975333392620087, -0.010773305781185627, 0.0022580965887755156, 0.005550547037273645, 0.0015806675655767322, -0.022726649418473244, -0.010285265743732452, 0.02692233771085739, 0.010554780252277851, 0.01217915304005146, 0.01940506137907505, -0.006927257403731346, 0.0012692688032984734, -0.006916331127285957, -0.014779605902731419, 0.021109560504555702, 0.012295699678361416, 0.022624671459197998, 0.006705089937895536, 0.005761788226664066, 0.012754603289067745, 0.001605251687578857, -0.021007582545280457, 0.01960901916027069, 0.008937692269682884, 0.02014804817736149, -0.017948225140571594, 0.004763855133205652, 0.005342947784811258, 0.005510483868420124, 0.0014222366735339165, -0.01219372171908617, -0.02090560458600521, -0.01601063273847103, 0.0026951474137604237, 0.01601063273847103, -0.003780490718781948, 0.008165568113327026, -0.011873217299580574, 0.024737084284424782, -0.01316980179399252, 0.008369525894522667, 0.0004871296987403184, 0.0077503700740635395, 0.007109362166374922, -0.010037603788077831, 0.003208682406693697, 0.007036520168185234, -0.005459494888782501, -0.00519726425409317, -0.02415434829890728, -0.0013421105686575174, -0.00022717543470207602, 0.013016833923757076, 0.01200433261692524, 0.0004757481801789254, 0.020774489268660545, -0.0019284873269498348, -0.003977163694798946, 0.003736785613000393, -0.013745252043008804, 0.00627532321959734, -0.012339404784142971, -0.025815142318606377, -0.006246186327189207, -0.019011715427041054, -0.008704598061740398, -0.015340488404035568, 0.01225199457257986, 0.0127254668623209, -0.0004627732269000262, 0.029865147545933723, -0.0004716508265119046, -0.00042885623406618834, -0.000681071076542139, 0.005586967803537846, -0.001890245359390974, -0.00365301757119596, 0.0020650657825171947, -0.00514627480879426, -0.0020650657825171947, 0.00586740905418992, -0.011953343637287617, -0.02075991965830326, 0.013971062377095222, 0.01595235988497734, 0.02663097158074379, -0.01290028728544712, -0.0007962522213347256, -0.019550746306777, -0.026179350912570953, -0.00516084348782897, -0.0017955509247258306, 0.026558129116892815, -0.006351807154715061, -0.0156027190387249, -0.01397834625095129, 0.02910759299993515, -0.0038788272067904472, 0.007495423778891563, -0.004042721353471279, 0.012186436913907528, 0.0026969686150550842, -0.0009706173441372812, 0.00663589034229517, -0.01432070229202509, 0.016476821154356003, 0.008362241089344025, -0.017117828130722046, -0.007597402203828096, 0.0017390985740348697, -0.016491388902068138, -0.018181320279836655, -0.0026514423079788685, -0.022930607199668884, 0.02674751728773117, 0.024809924885630608, -0.003407176351174712, -0.03341982886195183, -0.016302000731229782, 0.00505886459723115, -0.00272792624309659, 0.01931765116751194, 0.0029537358786910772, 0.0036694069858640432, -0.016389410942792892, -0.018647506833076477, -0.020104343071579933, -0.0181376151740551, 0.007153067272156477, 0.008449651300907135, -0.010991831310093403, 0.010642190463840961, 0.03563421964645386, -0.0015406046295538545, -0.00958598405122757, 0.013206223025918007, -0.028466586023569107, 0.011348756030201912, -0.01583581231534481, 0.0018337928922846913, 0.01327178068459034, -2.9094049750710838e-05, 0.022377008572220802, 0.006712374277412891, 0.011967911384999752, 0.004982380662113428, 0.0035237232223153114, -0.0012301163515076041, 0.013395611196756363, 0.02043941617012024, -0.018618371337652206, 0.001828329754061997, -0.0057581462897360325, 0.003751354059204459, 0.003940742928534746, -0.035430263727903366, -0.005841914564371109, -0.0040208688005805016, -0.03391515463590622, 0.0035856387112289667, -0.00457810889929533, -0.019944092258810997, 0.00029956200160086155, -0.010569348931312561, 0.01917196810245514, 0.022595534101128578, 0.019652724266052246, 0.017205238342285156, -0.012616204097867012, -0.005222758743911982, 0.02041027881205082, 0.0182832982391119, -0.023629887029528618, 0.0007215893128886819, -0.005903829820454121, -0.005783640779554844, -0.013118812814354897, -0.019987797364592552, 0.018093910068273544, 0.009396594949066639, 0.0022307808976620436, 0.003337976522743702, -0.005918398033827543, -0.0019849396776407957, -0.018720349296927452, -0.018924305215477943, -0.010875284671783447, 0.0065484801307320595, 0.01291485596448183, -0.0024493064265698195, 0.019448766484856606, -0.002635053126141429, 0.010110445320606232, -0.013366474770009518, 0.0019120979122817516, 0.011640124022960663, 0.015325919725000858, 0.004505266901105642, -0.003081209259107709, -0.009105227887630463, 0.02256639674305916, 0.005346589721739292, -0.0014932573540136218, -0.02067250944674015, -0.013941925019025803, -0.02462053671479225, -0.006868984084576368, -0.017292648553848267, 0.015267646871507168, -0.047638554126024246, -0.014539227820932865, 0.019069990143179893, 0.0006774289649911225, -0.008056306280195713, 0.008456936106085777, -0.00430495198816061, -0.010591201484203339, 0.04338458925485611, -0.0005727188545279205, -0.011953343637287617, 0.008413231000304222, 0.016141748055815697, 0.0023436855990439653, -0.010030318982899189, 0.025043020024895668, -0.00896682869642973, 0.002289054449647665, 0.025873417034745216, 0.01091170497238636, 0.030302198603749275, -0.019215673208236694, -0.005652525462210178, 0.001514199422672391, 0.008959544822573662, 0.013745252043008804, 0.029981695115566254, -0.02026459574699402, 0.021124130114912987, -0.022347871214151382, -0.009491289965808392, -0.008486072532832623, -0.0009050596854649484, 0.01262348797172308, 0.010503791272640228, 0.0037222171667963266, -0.0040281531400978565, -0.012302984483540058, -0.02170686423778534, -2.1027386537753046e-05, 0.018152182921767235, 0.0013967419508844614, 0.010474654845893383, 0.008442367427051067, 0.026674676686525345, -0.005652525462210178, 0.006646816618740559, 0.005871050991117954, 0.02032286860048771, -0.004443351179361343, 0.0030939565040171146, 0.007426224183291197, -0.007837780751287937, 0.0035801755730062723, 0.011720249429345131, 0.01082429476082325, 0.0010471012210473418, 0.006096860859543085, -0.018938874825835228, -0.008792008273303509, 0.006155134178698063, 0.00488768657669425, 0.0012720003724098206, 0.017554879188537598, 0.0026769370306283236, -0.00017686905630398542, 0.01678275689482689, 0.0017964615253731608, 0.007611970882862806, 0.01793365739285946, 0.006606753449887037, -0.01073688454926014, 0.0033397977240383625, -0.017598584294319153, 0.014196871779859066, -0.02138635888695717, -0.007316961418837309, -0.0016516883624717593, -0.009578700177371502, 0.0007903337827883661, -0.013781673274934292, -0.01566099189221859, 0.007684812415391207, 0.006719658151268959, -0.014641206711530685, 0.00030935011454857886, 0.006388227920979261, 0.008201989345252514, -0.001363963121548295, -0.017088692635297775, -0.013461168855428696, -0.0017591300420463085, -0.004767497535794973, -0.021546611562371254, 0.009294616989791393, 0.007247761357575655, 0.015238509513437748, -0.007932474836707115, -0.013759820722043514, 0.02582971192896366, 0.019477903842926025, -0.0025658532977104187, -0.0051244222559034824, 0.005983955692499876, -0.005313810892403126, -0.014677627943456173, 0.006268038880079985, 0.01101368386298418, -0.0023436855990439653, -0.012681761756539345, -0.00547042116522789, 0.01139974594116211, -0.012171869166195393, 0.015107394196093082, -0.005652525462210178, 0.00322507182136178, 0.013373758643865585, 0.02320740558207035, 0.0036384491249918938, -0.006952752359211445, 0.012033469043672085, 0.0016544199315831065, -0.0006970051908865571, -0.0041701942682266235, 0.01091170497238636, 0.01021970808506012, -0.012324837036430836, -0.008136431686580181, -0.022624671459197998, -0.0027315684128552675, -0.00031253695487976074, -0.011479871347546577, 0.011414313688874245, -0.005189979914575815, 0.011946058832108974, 0.021371791139245033, 0.01327178068459034, -0.005240969359874725, 0.008631756529211998, 0.019827544689178467, -0.0009023281163536012, -0.008362241089344025, 0.02090560458600521, -0.005342947784811258, -0.029981695115566254, 0.0009023281163536012, -0.019856682047247887, 0.008056306280195713, -0.023251110687851906, 0.016258295625448227, -0.01606890745460987, 0.017001282423734665, -0.0038132695481181145, -0.007721233647316694, -0.006726942490786314, 0.015937792137265205, -0.0060203769244253635, 0.029894284904003143, -0.010518359951674938, 0.01324264332652092, 0.004854907747358084, -0.007011025678366423, -0.002489369362592697, -0.012048037722706795, -0.002919136080890894, -0.004927749279886484, 0.001682646106928587, 0.01083886343985796, 0.00968796294182539, 0.015500740148127079, 0.028801657259464264, -0.013031402602791786, -0.012448667548596859, -0.00243655894882977, 0.017234375700354576, 0.006512059364467859, 0.011050105094909668, 0.01940506137907505, 0.00516084348782897, 0.01943419873714447, 0.0009833646472543478, 0.02182340994477272, 0.006526627577841282, 0.00790333840996027, -0.0085807666182518, 0.005943892989307642, -0.013279064558446407, 0.017350923269987106, -0.006238902453333139, -0.01978383958339691, 0.017685994505882263, -0.0049750967882573605, -0.012099026702344418, 0.00797617994248867, 0.001630746410228312, -0.004283099435269833, -0.005561473313719034, 0.0320795401930809, 0.026878632605075836, -0.0010616695508360863, 0.009505857713520527, 0.012696330435574055, -0.0215029064565897, 0.0020140765700489283, 0.004745644982904196, -0.01917196810245514, 0.014575649052858353, -0.022391576319932938, -0.0023600750137120485, 0.022493556141853333, 0.0076483916491270065, -0.0008240231545642018, -0.009025102481245995, -0.006056797690689564, 0.01274003554135561, 0.010969978757202625, 0.009046955034136772, -0.0033397977240383625, -0.005918398033827543, 0.014109461568295956, -0.020089775323867798, -0.025727732107043266, 0.025115860626101494, 0.00228177011013031, -0.026033667847514153, -0.003609312465414405, 0.023455068469047546, -0.02677665464580059, -0.030360473319888115, 0.017234375700354576, -0.012339404784142971, 0.004348657093942165, -0.0016061622882261872, 0.015486172400414944, 0.0061296396888792515, 0.007072941400110722, 0.008311252109706402, 0.02571316435933113, 0.0010880747577175498, -0.019419630989432335, -0.005739935673773289, 0.023440498858690262, 0.001521483645774424, -0.0020778130274266005, -0.015908654779195786, -0.008573482744395733, -0.006956394296139479, 0.02781100943684578, 0.026193920522928238, -0.010139581747353077, 0.0007115735788829625, -0.0024292748421430588, -0.0021196971647441387, 0.004257604479789734, -0.015078257769346237, -0.010722316801548004, -0.0007784970221109688, -0.00398080563172698, -0.007160351146012545, 0.005583325866609812, -0.005900187883526087, 0.005517768207937479, 0.006490206811577082, -0.01923024095594883, -0.022260461002588272, -0.0022708438336849213, 0.0007416208391077816, 0.0008135521202348173, 0.01099911518394947, -0.006694163661450148, -0.022377008572220802, 0.004425141029059887, -0.002110591856762767, 0.0018975295824930072, 0.002718821167945862, -0.002673294860869646, -0.03193385526537895, 0.012237426824867725, 0.021138697862625122, 0.016680777072906494, -0.0025130428839474916, -0.011217640712857246, -0.0009697068016976118, -0.016972145065665245, 0.003390786936506629, 0.0033780396915972233, -0.0004976007039658725, 0.027344821020960808, 0.0027588841039687395, 0.0015087362844496965, 0.013249928131699562, -0.00434137275442481, -0.006992815062403679, 0.02176513709127903, 0.01739462837576866, 0.0143352709710598, -0.01451009139418602, 0.01469948049634695, 0.01710326038300991, 0.015049121342599392, 0.006683237385004759, 0.01931765116751194, 0.00859533529728651, 0.018778622150421143, -0.002170686377212405, 0.027184568345546722, 0.00834767334163189, 0.025698596611618996, -0.002589526819065213, -0.007233193144202232, 0.011436166241765022, 0.0025913480203598738, 0.0027716313488781452, -0.0009005070314742625, -0.006227976176887751, 0.0062316181138157845, 0.01324264332652092, 0.012441383674740791, -0.02306172251701355, 0.007925190962851048, -0.02872881479561329, 0.014896153472363949, 0.0011572744697332382, -0.0027479578275233507, -0.006380944047123194, 0.010110445320606232, 0.023615319281816483, -0.0022326018661260605, 0.02335308864712715, 0.012011616490781307, 0.008893987163901329, -0.006173344794660807, 0.03321587294340134, -0.01563185639679432, -0.013548579066991806, -0.01040909718722105, -0.01592322252690792, 0.02144463360309601, -0.006522985640913248, 0.008238410577178001, -0.019244810566306114, -0.0006637711194343865, 0.026121078059077263, 0.016797324642539024, 0.0033325133845210075, -0.02542179636657238, -0.01316980179399252, -0.010722316801548004, -0.005142632871866226, 0.011312335729598999, -0.001890245359390974, -0.016272863373160362, -0.003656659508123994, 0.010161434300243855, -0.010103161446750164, 0.0037768485490232706, -0.0020250026136636734, 0.0021470128558576107, -0.017030417919158936, 0.005827345885336399, -0.007539128884673119, -0.0032960926182568073, -0.002489369362592697, 0.00011267719673924148, 0.005900187883526087, 0.006930899806320667, -0.005943892989307642, 0.01327178068459034, 0.00358381774276495, -0.012769171968102455, 0.003026577876880765, -0.01839984580874443, 0.006887194700539112, 0.01442268118262291, -0.004261246882379055, 0.017787974327802658, -0.01736549101769924, 0.011079241521656513, 0.0011581850703805685, -0.02654356136918068, 0.02173599973320961, 0.006468354258686304, -0.01099911518394947, -0.010744169354438782, 0.003299734555184841, 0.0004345470224507153, -0.006526627577841282, -0.010044887661933899, -0.010642190463840961, -0.011305050924420357, -0.0030884933657944202, -0.006872626021504402, -0.013606852851808071, 0.00895226001739502, -0.0010216066148132086, -0.005940250586718321, 0.007273256313055754, -0.013111528009176254, 0.014655775390565395, -0.017234375700354576, -0.01934678852558136, 0.006329954601824284, 0.00403179507702589, -0.0065958271734416485, 0.008930407464504242, -0.011691113002598286, 0.012026185169816017, 0.011953343637287617, 0.020075207576155663, -0.0006200660136528313, -0.019565314054489136, -0.010168719105422497, 0.0006924525951035321, -0.016680777072906494, -0.006235260050743818, -0.020046070218086243, 0.014014767482876778, 0.0008208362851291895, 0.02386298216879368, 0.009134365245699883, -0.006592185236513615, -0.0038278379943221807, -0.001172753400169313, -0.03138025850057602, 0.011130230501294136, -0.016345705837011337, -0.008930407464504242, 0.007735801860690117, 0.005798209458589554, -0.012470520101487637, -0.004002658184617758, 0.00020646104530896991, -0.003110345918685198, 0.01805020496249199, 0.005736293736845255, -0.008231125771999359, 0.004093710333108902, -0.023761002346873283, -0.007925190962851048, 0.008464219979941845, -0.03175903484225273, 0.006737868767231703, -0.015617286786437035, 0.0026040952652692795, 0.006868984084576368, 0.004370509646832943, 0.007473571226000786, -0.010001182556152344, -0.003283345140516758, -0.007211340591311455, 0.00670873187482357, -0.019303083419799805, 0.01710326038300991, -0.00672330055385828, 0.007160351146012545, -0.02498474530875683, 0.013490306213498116, -0.001104464172385633, 0.012244710698723793, -0.004661876708269119, -0.017948225140571594, 0.00595117686316371, -0.004053647629916668, -0.008704598061740398, 0.013002266176044941, -0.013002266176044941, -0.018501823768019676, -0.037469834089279175, -0.004712866153568029, -0.04143242910504341, 0.004789350088685751, 0.006992815062403679, -0.027082590386271477, -0.01190235372632742, -1.6844671336002648e-05, 0.009593267925083637, -0.009250911884009838, -0.014837879687547684, -0.006661384832113981, 0.007200414314866066, -0.023819277063012123, -0.007845064625144005, 0.012506941333413124, -0.0059074717573821545, 0.00859533529728651, 0.014735900796949863, -0.007925190962851048, -0.004097352735698223, -0.01940506137907505, 0.0016207306180149317, -0.006821637041866779, -0.018982579931616783, -0.0010061276843771338, 0.006552122067660093, 0.011275914497673512, -0.02256639674305916, 0.022100210189819336, 0.010103161446750164, 0.006333596538752317, -0.005597894079983234, 0.0010853431886062026, -0.007560981437563896, -0.014371692202985287, -0.004272173158824444, -0.0038824693765491247, -0.0018064772011712193, 0.018880600109696388, -0.010962694883346558, 0.001375799998641014, 0.010503791272640228, -0.00013942380610387772, 0.016709914430975914, -0.0019594451878219843, 0.006100502796471119, 0.014247860759496689, -0.008391378447413445, -0.007859633304178715, 0.008027168922126293, -0.011909638531506062, 0.00605315575376153, 0.00968796294182539, 0.015792107209563255, 0.0022872332483530045, 0.0036694069858640432, -0.018632939085364342, -0.0018847822211682796, 0.017088692635297775, -0.017336353659629822, 0.0008008048171177506, 0.005281032528728247, 0.002272665034979582, -0.012470520101487637, -0.0011900532990694046, 0.008988681249320507, 0.02058509923517704, -0.022610101848840714, -0.004691013600677252, 0.017234375700354576, -0.0017199775902554393, 0.0066504585556685925, -0.010991831310093403, -0.00605315575376153, 0.011778523214161396, -0.004672802984714508, -0.00921449065208435, -0.011814943514764309, 0.004734718706458807, -0.00010579136869637296, 0.006872626021504402, 0.005521410144865513, 0.002028644783422351, 0.00636273343116045, -0.0038496905472129583, 0.012244710698723793, -0.011807659640908241, -0.009236343204975128, -0.005346589721739292, -0.000976991024799645, 5.975305975880474e-05, 0.0032214296516031027, 0.016476821154356003, -0.013708831742405891, -0.02406693808734417, 0.003591101849451661, -0.002391032874584198, -0.02311999537050724, 0.006519343238323927, 0.008755587041378021, -0.00253671663813293, 0.01934678852558136, -0.010620337910950184, 0.0056925886310637, -0.03487666696310043, 0.008056306280195713, -0.032924503087997437, -0.010001182556152344, 0.047114092856645584, 0.009921056218445301, 0.014451817609369755, 0.010744169354438782, 0.020628804340958595, 0.00029136729426681995, -0.007808643393218517, -0.0006464712205342948, 0.006504775024950504, 0.0072841825895011425, 0.01972556672990322, 0.0031030618119984865, -0.009294616989791393, 0.01654966175556183, 0.015355057083070278, 0.005026085767894983, 0.005892903544008732, 0.0065339114516973495, -0.001495988923124969, 0.014357123523950577, -0.009928341023623943, 0.03231263533234596, 0.014036620035767555, 0.028277195990085602, 0.023440498858690262, 0.023877549916505814, -0.024576831609010696, 0.0029391676653176546, 0.001177305937744677, -0.012557930313050747, -0.01408032514154911, 0.009403879754245281, -0.020002365112304688, 0.004199331160634756, -0.017482038587331772, 0.007025593891739845, 0.012353973463177681, -0.00026018189964815974, -0.004250320605933666, -0.005408505443483591, -0.012696330435574055, -0.018632939085364342, 0.0002381017111474648, 0.0031850088853389025, -0.002338222460821271, -0.0014686733484268188, -0.010256129316985607, 0.029675759375095367, 0.0025949899572879076, -0.017715131863951683, 2.98480754281627e-05, -0.00790333840996027, 0.009083375334739685, -0.006118713412433863, 0.0037477118894457817, -0.028859930112957954, 0.020424848422408104, 0.01563185639679432, -0.00986278336495161, 0.0029318835586309433, 0.004953244235366583, 0.00478570768609643, -0.018064772710204124, -0.001300226547755301, -0.009382027201354504, 0.009964761324226856, -0.004454277455806732, -0.015165667980909348, -0.0041847629472613335, 0.030477019026875496, -0.005186337977647781, 0.002035928890109062, 0.0015050942311063409, -0.010474654845893383, -0.0011081062257289886, 0.00019644529675133526, 0.00960055273026228, 0.00488768657669425, 0.011829512193799019, -0.02335308864712715, -0.0015906833577901125, 0.012099026702344418, 0.0020322869531810284, -0.033128462731838226, -0.0024056013207882643, -0.014378976076841354, -0.012871150858700275, 0.012310268357396126, 0.0009059701696969569, 0.01819588802754879, 0.007335171569138765, 0.004133773501962423, -0.046968407928943634, -0.003765922272577882, -0.009250911884009838, -0.005244611296802759, 0.013351906090974808, -0.019128262996673584, -0.017438333481550217, -0.018268730491399765, 0.015733834356069565, -0.007692096754908562, -0.00603858707472682, 0.020774489268660545, 0.029413528740406036, 0.00574357807636261, 0.012150016613304615, -0.0004834876162931323, 0.006005808245390654, -0.007349740248173475, 0.0038241958245635033, -0.008944976143538952, -0.012499657459557056, -0.01675361953675747, 0.0031121668871492147, -0.005590610206127167, 0.0010598485823720694, -0.00974623579531908, -0.03123457357287407, -0.010540212504565716, -0.040150415152311325, 0.004261246882379055, 0.003629343817010522, 0.0014795995084568858, -0.008391378447413445, -0.002942809835076332, 0.003871543100103736, 0.0019339504651725292, -0.0019594451878219843, 0.010401812382042408, -0.02038114331662655, -0.012973128817975521, -0.021430063992738724, -0.011414313688874245, 0.00480027636513114, 0.005499557591974735, 0.003929816652089357, -0.010787874460220337, -0.02639787644147873, -0.010336254723370075, -0.012557930313050747, 0.01739462837576866, 0.028524858877062798, -0.01013229787349701, 0.013752536848187447, -0.0011254062410444021, -0.007211340591311455, 0.01781710982322693, -0.028437448665499687, -0.007968896068632603, 0.007382519077509642, -0.01834157109260559, -0.00168993033003062, 0.00041360498289577663, 0.042481351643800735, -0.004050005227327347, -0.00667231110855937, -0.018181320279836655, -0.0037877748254686594, 0.01288571860641241, 0.009440300054848194, -0.011712965555489063, 0.020978445187211037, 0.0156027190387249, 0.022420713678002357, 0.0004898612969554961, -0.0182832982391119, -0.0007630180916748941, -0.002773452550172806, 0.0003425842151045799, -0.008923123590648174, 0.00042475888039916754, -0.009622405283153057, 0.0027151789981871843, -0.0035073338076472282, 0.012674477882683277, 0.013147949241101742, 0.0012164585059508681, 0.0027716313488781452, -0.003470913041383028, 0.008209273219108582, -0.004319520201534033, -0.009097944013774395, -0.003436313010752201, 0.015529877506196499, -0.021575748920440674, 0.003871543100103736, 0.0320795401930809, 0.033041052520275116, 0.021779704838991165, -0.035401128232479095, -0.0023236542474478483, -0.01210631150752306, 0.019011715427041054, -0.001961266156286001, -0.016083475202322006, 0.029602916911244392, -0.0008363152155652642, -0.0005950266495347023, 0.01928851567208767, 0.010190571658313274, -0.014255145564675331, 0.01210631150752306, 0.0047055818140506744, -0.022435281425714493, -0.0036493754014372826, 0.006985531188547611, 0.017088692635297775, 0.004257604479789734, -0.01468491181731224, 0.03129284828901291, -0.0021397285163402557, 0.008216558024287224, 0.0156027190387249, 0.0022744860034435987, 0.011705681681632996, -0.01663707196712494, 0.013308200985193253, 0.010190571658313274, 0.006373659707605839, -0.012390394695103168, 0.006624964065849781, -0.02464967407286167, 0.02202736772596836, -0.004337730817496777, 0.008282115682959557, -0.03784861043095589, -0.00182650878559798, -0.02196909487247467, 0.01807934045791626, 0.011130230501294136, 0.02303258515894413, 0.008121863007545471, 0.01571926660835743, 0.003999016247689724, 0.006934541743248701, -0.006198839284479618, 0.0034672708716243505, 0.0014176840195432305, 0.014233293011784554, -0.011844080872833729, -0.017569448798894882, 0.00073342613177374, -0.039742499589920044, 0.0007102077943272889, -0.00524825369939208, 0.009520426392555237, -0.012222858145833015, -0.012601635418832302, 0.0068580578081309795, -0.020395711064338684, 0.024489421397447586, -0.018603801727294922, -0.009476721286773682, 0.003172261407598853, 0.0023418646305799484, -0.01148715615272522, 0.01784624718129635, -0.0034763761796057224, -0.004257604479789734, 0.004141057841479778, -0.018807759508490562, -0.007058372721076012, 0.011042820289731026, -0.017773404717445374, -0.022406145930290222, 0.01713239774107933, 0.011742101982235909, 0.015253078192472458, 0.011698396876454353, 0.011261345818638802, 0.0023527909070253372, 0.0075464132241904736, 0.03674141690135002, 0.011953343637287617, 0.002607737435027957, -0.0009146201773546636, -0.01810847781598568, 0.0038205536548048258, 0.007087509613484144, 0.005098927766084671, 0.024737084284424782, 0.004534403793513775, -0.009345605969429016, -0.0018611085833981633, 0.008449651300907135, -0.004363225307315588, 0.014896153472363949, -0.0016653462080284953, -0.007357024122029543, 0.019652724266052246, -0.012026185169816017, -0.005117138382047415, 0.006614037789404392, 0.022697512060403824, -0.004829412791877985, -0.012302984483540058, -0.004607245326042175, 0.010787874460220337, -0.011421598494052887, 0.015457035042345524, -0.0035055128391832113, 0.0023254752159118652, -0.0209638774394989, 0.0015843097353354096, 0.002671473892405629, 0.007932474836707115, 0.016214590519666672, 0.003030219813808799, 0.011880501173436642, 0.00869731418788433, 0.01845811866223812, 0.012346689589321613, -0.01040909718722105, -0.017059555277228355, 0.030768387019634247, -0.006566690281033516, -0.004585392773151398, 0.012397678568959236, -0.006013092584908009, 0.0004252141516190022, -0.0010552959283813834, -0.015821244567632675, 0.006792500149458647, -0.0005995792453177273, -0.005164485424757004, 0.02256639674305916, 0.011290483176708221, 0.009702530689537525, -0.02430003322660923, -0.001209174282848835, 0.006839847192168236, 0.0038023432716727257, 0.009593267925083637, -0.006297175772488117, -0.011895069852471352, 0.017758836969733238, -0.017598584294319153, 0.003336155554279685, -0.006606753449887037, 0.0065885428339242935, -0.0085079250857234, 0.01684102974832058, -0.012528793886303902, 0.014881584793329239, 0.015908654779195786, 0.0045562563464045525, 0.013774389401078224, -0.005018801894038916, -0.0007361577008850873, -0.005412147380411625, 0.006093218456953764, -0.014043903909623623, 0.012608920224010944, 0.007466286886483431, 0.02055596373975277, 0.019303083419799805, 0.02108042500913143, -0.001494167954660952, -0.008464219979941845, -0.0020049712620675564, -0.0006683237152174115, 0.005983955692499876, -0.0062789651565253735, -0.001787356217391789, -0.0008895808132365346, -0.016302000731229782, 0.0028116945177316666, -0.005080717150121927, 0.010081308893859386, -0.021255243569612503, -0.0026405162643641233, -0.012608920224010944, 0.03170076385140419, 0.0070146676152944565, -0.008325820788741112, 0.016433116048574448, 0.024372873827815056, 0.022508123889565468, 0.025669459253549576, -0.010875284671783447, 0.0022034652065485716, 0.007480855565518141, -0.013839947059750557, -0.003181366715580225, -0.009797225706279278, 0.00541943171992898, -0.004399646073579788, 0.00012371728371363133, -0.002345506800338626, 0.0002024775167228654, -0.006665026769042015, 0.02317826822400093, -0.028947340324521065, -0.027796439826488495, -0.0227703545242548, 0.011501723900437355, -0.010758737102150917, 0.005947534926235676, 0.009265480563044548, -0.007113004103302956, -0.020774489268660545, 0.00896682869642973, 0.00662132166326046, 0.02046855352818966, -0.0029974409844726324, 0.0033215871080756187, 0.0011108377948403358, -0.009505857713520527, 0.0028754309751093388, -0.005037012044340372, 0.006166060455143452, 0.02070164680480957, -0.014502807520329952, -0.0181376151740551, 0.005532336421310902, 0.03659573197364807, -0.015253078192472458, -0.019419630989432335, 0.008056306280195713, 0.01966729201376438, -0.016389410942792892, 0.011144799180328846, 0.006573974620550871, 0.002946451772004366, -0.008944976143538952, -0.021983662620186806, -0.023994097486138344, 0.002835368039086461, 0.01822502538561821, -0.01396377757191658, -0.0029100310057401657, 0.0073934453539550304, 0.011880501173436642, 0.006828920915722847, 0.014138597995042801, -0.00012701793457381427, -0.015194804407656193, -0.0027424946893006563, 0.01663707196712494, 0.001682646106928587, -0.0184289813041687, 0.01451009139418602, 0.026266761124134064, 0.003999016247689724, 0.007968896068632603, -0.009090660139918327, -0.012506941333413124, -0.014837879687547684, 0.003319766139611602, -0.011166651733219624, -0.0020887393038719893, -0.007123930379748344, 0.005517768207937479, -0.005856482777744532, 0.035168033093214035, -0.010023035109043121, 0.0041301315650343895, -0.019332220777869225, -0.01654966175556183, -0.006034945137798786, -0.001200069091282785, 0.017685994505882263, -0.026966042816638947, 0.012703614309430122, -0.016520526260137558, 0.010518359951674938, -0.01076602190732956, 0.00787420105189085, -0.015675561502575874, 0.004192046821117401, -0.004057289566844702, 0.02409607544541359, -0.014043903909623623, -0.014845163561403751, 0.013308200985193253, -0.011334188282489777, 0.007138499058783054, -2.7244550437899306e-06, -0.0027169999666512012, 0.01128319837152958, -0.009280048310756683, -0.005878335330635309, -0.0066031115129590034, -0.02910759299993515, 0.011042820289731026, -0.0020377500914037228, 0.023571614176034927, -0.0011509008472785354, -0.02090560458600521, 0.011079241521656513, -0.00300108315423131, -0.009738951921463013, 0.0073388139717280865, 0.012667193077504635, 0.013089675456285477, -0.024707946926355362, -0.007495423778891563, -0.0022307808976620436, -0.0022289599291980267, 0.047347184270620346, 0.007269613910466433, 0.030506156384944916, -0.03962595388293266, -0.0030338619835674763, -0.02329481579363346, 0.015107394196093082, -0.020395711064338684, -0.008289399556815624, 0.016491388902068138, -0.014859732240438461, -0.01601063273847103, 0.01271089818328619, 0.016447683796286583, 0.015384193509817123, 0.006147849839180708, -0.010183286853134632, 0.003026577876880765, 0.010671326890587807, 0.014218724332749844, 0.0025203272234648466, 0.005346589721739292, -0.018880600109696388, -0.030389608815312386, 0.01037995982915163, 0.011581850238144398, 0.006100502796471119, -0.001154542900621891, 0.001776430057361722, -0.011997048743069172, -0.005932966712862253, 0.001778251025825739, -0.014990847557783127, 0.0009961120085790753, 0.015937792137265205, 0.011159367859363556, 0.009003249928355217, 0.0046582347713410854, -0.005481347441673279, -0.009979330003261566, -0.03228349611163139, -0.009367458522319794, 0.00195398204959929, 0.01200433261692524, 0.0059074717573821545, -0.0013630526373162866, 0.0004807560471817851, 0.007018310017883778, -0.022464418783783913, 0.004964170511811972, -0.014837879687547684, -0.018443550914525986, -0.017059555277228355, -0.014801458455622196, -0.0005918398383073509, 0.002447485225275159, 0.008799292147159576, 0.005525052547454834, -0.01030711829662323, -0.0037732066120952368, -0.012237426824867725, 0.013461168855428696, 0.010343539528548717, 0.004523477517068386, -0.005947534926235676, 0.010343539528548717, 0.0036949014756828547, -0.0012028006603941321, 0.011552713811397552, -0.006213407497853041, 0.011392461135983467, 0.000897320220246911, 0.0021961810998618603, -0.00734245590865612, -0.012434099800884724, -0.011144799180328846, -0.011261345818638802, 0.009979330003261566, -0.021400928497314453, -0.02875795215368271, 0.00663589034229517, -0.007182203698903322, -0.01046737004071474, -0.006406438536942005, -0.019740134477615356, -0.008100010454654694, 0.00645014364272356, 0.0074335080571472645, 0.0020395710598677397, -6.624053639825433e-05, -0.0007329708896577358, -0.027854714542627335, -0.0029409886337816715, 0.009811793453991413, 0.0034800181165337563, -0.010518359951674938, -0.029792306944727898, -0.007735801860690117, 0.012353973463177681, 0.005841914564371109, -0.002964662155136466, 0.02409607544541359, -0.011705681681632996, -0.0018793190829455853, 0.0007261419668793678, -0.005707156844437122, -0.010634906589984894, -0.0029774096328765154, -0.014240576885640621, 0.008136431686580181, -0.026528991758823395, 0.005721725523471832, -0.01943419873714447, 0.028568563982844353, -0.0036694069858640432, 0.004508908838033676, 0.013570431619882584, 0.020483121275901794, -0.003390786936506629, 0.006563048344105482, -0.002746136859059334, 0.011778523214161396, 0.062236055731773376, 0.011305050924420357, -0.01577753946185112, 0.002655084477737546, 0.000867728260345757, 0.019390493631362915, -0.004734718706458807, 0.002299980726093054, -0.005492273718118668, -0.02274121716618538, 0.008668176829814911, 0.010664043016731739, -0.020337438210844994, -0.003680333262309432, 0.01099911518394947, -0.015733834356069565, 0.004996949341148138, -0.009891919791698456, -0.02279949188232422, 0.010795158334076405, 0.006304460112005472, -0.013796241953969002, 0.014240576885640621, -0.00014534220099449158, 0.013206223025918007, -0.006453785579651594, 0.01739462837576866, 0.008770155720412731, 0.00787420105189085, -0.022260461002588272, -0.030797524377703667, 0.013366474770009518, -0.015850381925702095, 0.04315149784088135, -0.0066504585556685925, 0.015471603721380234, -0.022624671459197998, 0.010270697064697742, -0.002208928344771266, 0.019856682047247887, -0.01657879911363125, -0.001882961136288941, 0.010722316801548004, -0.0267183817923069, -0.006839847192168236, 0.004898612853139639, -0.00403179507702589, -0.019885817542672157, -0.013315485790371895, -0.014728616923093796, 0.012157300487160683, 0.006559406407177448, -0.0068107107654213905, 0.021663159132003784, 0.0071676354855299, 0.002365538151934743, -0.0196964293718338, -0.007582833990454674, 0.0037331434432417154, 0.01082429476082325, 0.022624671459197998, 0.00214519165456295, -0.03411911055445671, 0.015063689090311527, -0.020308300852775574, 0.021313518285751343, -0.0012765530264005065, 0.0025385376065969467, 0.010576632805168629, 0.009090660139918327, -0.007866917178034782, 0.009199922904372215, -0.006901762913912535, 0.008449651300907135, -0.004829412791877985, -0.0006733316113241017, -0.028699679300189018, -0.018603801727294922, 0.020541394129395485, 0.019273946061730385, -0.003374397521838546, 0.005685304291546345], "c02f556c-e845-4383-aa94-fe08bcb664e3": [-0.01074934471398592, -0.024847395718097687, -0.010220249183475971, 0.027941599488258362, -0.02046728879213333, -0.02112363465130329, -0.0033687979448586702, 0.007594864349812269, -0.018310721963644028, 0.05818710848689079, 0.00030556938145309687, 0.007099255919456482, 0.01481467392295599, -0.0019874568097293377, 0.014546777121722698, 0.035014066845178604, 0.004912551026791334, 0.004570983350276947, -0.001592309563420713, -0.005783214699476957, 0.03346026688814163, -0.011131097562611103, -0.024967949837446213, 0.011459270492196083, 0.014707515016198158, -0.015805890783667564, -0.033326320350170135, -0.004289691802114248, -0.027459386736154556, -0.005967393517494202, -0.00236251181922853, 0.008391856215894222, -0.005511969327926636, -0.0005048173479735851, 0.0043131327256560326, -0.04240800812840462, 0.00312769110314548, 0.002739241113886237, -0.014694120734930038, 0.01824374869465828, -0.002174984198063612, 0.015752311795949936, 0.021713007241487503, -0.012490672059357166, -0.023936547338962555, 0.017801718786358833, -0.035308752208948135, -0.0169578455388546, 0.030138351023197174, -0.018069615587592125, 0.013280966319143772, 0.02445894666016102, -0.014064563438296318, 0.06161618232727051, 0.04977516084909439, -0.02182016521692276, 0.02603953517973423, 0.06054459884762764, 0.01753382198512554, -0.05904437601566315, 0.016395263373851776, -0.02542337402701378, 0.0017731395782902837, -0.02145850658416748, 0.04656040295958519, 0.002551713725551963, -0.025932377204298973, 0.00944335013628006, -0.016046997159719467, 0.019422492012381554, -0.017761534079909325, 0.01320729497820139, -0.026267247274518013, 0.004795346409082413, 0.0528559684753418, -0.016341684386134148, 0.05840142443776131, 0.020319946110248566, 0.035683806985616684, -0.03062056377530098, 0.019462676718831062, -0.00037065986543893814, 0.02471344731748104, 0.025249240919947624, 0.05301670730113983, 0.011492758058011532, -0.045729923993349075, -0.04061310365796089, -0.02960255742073059, 0.003077460452914238, 0.001383852562867105, 0.025476953014731407, 0.0020745231304317713, 0.014426223933696747, 0.016127366572618484, -0.0036366942804306746, 0.018377697095274925, 0.005431600380688906, 0.004999617580324411, -0.036942921578884125, 0.0007785740890540183, 0.0005341185606084764, 0.006724201142787933, 0.004262902308255434, 0.004045236390084028, -0.018364300951361656, 0.021552270278334618, 0.019985076040029526, -0.020025258883833885, 0.0008434552582912147, -0.02633422054350376, -0.03613923117518425, -0.005726286675781012, -0.006690714042633772, -0.03327273949980736, -0.019784152507781982, -0.02050747349858284, -0.0030439733527600765, -0.02893281728029251, -0.004550890997052193, 0.03196004778146744, 0.001632494037039578, 0.03753229230642319, 0.01271838415414095, -0.028182705864310265, 0.02314625307917595, 0.005468436516821384, 0.029173923656344414, 0.029816875234246254, 0.014372644945979118, 0.00828469730913639, 0.017024818807840347, 0.0071461377665400505, 0.00880709569901228, 0.003238198347389698, 0.014439619146287441, 0.003924683202058077, 0.08733424544334412, -0.023534703999757767, -0.002303909510374069, -0.03396926820278168, 0.02640119567513466, -0.04744446277618408, 0.027151305228471756, -0.018792936578392982, -0.032388679683208466, -0.055829621851444244, 0.05695478618144989, -0.03313878923654556, 0.005940604023635387, -0.027593335136771202, 0.006322356406599283, -0.06327714025974274, -0.01760079711675644, 0.05968732759356499, -0.01990470662713051, 0.0073738498613238335, 0.03544269874691963, 0.0038074783515185118, 0.0309420395642519, -0.0009543811320327222, -0.04787309467792511, 0.021337952464818954, 0.012055340223014355, 0.05947301164269447, 0.005860235076397657, 0.05690120533108711, 0.04714977368712425, -0.01596662774682045, 0.017332900315523148, 0.009751430712640285, -0.005635871551930904, 0.04452439025044441, 0.016194339841604233, -0.0011059100506827235, -0.0006751827895641327, 0.04795346409082413, 0.019435888156294823, 0.01465393602848053, -0.0012298121582716703, -0.022918540984392166, 0.004959432873874903, 0.03611244261264801, 0.009831800125539303, 0.015216518193483353, 0.03820203244686127, -0.003455864265561104, 0.012899214401841164, -0.01482806820422411, 0.013019767589867115, -0.03252262994647026, -0.0003214757307432592, 0.015497809275984764, 0.018391091376543045, -0.02539658360183239, -0.02479381673038006, 0.014895042404532433, -0.006154920905828476, -0.00849231705069542, 0.02148529514670372, -0.030352666974067688, -0.041175685822963715, -0.027888020500540733, 0.03479974716901779, -0.013743087649345398, 0.04364033043384552, -0.017426664009690285, -0.02538318932056427, 0.033085212111473083, 0.011733864434063435, 0.05765131488442421, -0.0455423966050148, 0.024579498916864395, -0.016770318150520325, 0.011345414444804192, 0.0201726034283638, 0.014024379663169384, 0.043158117681741714, -0.011358809657394886, -0.009175453335046768, 0.017051609233021736, -0.0017731395782902837, -0.00440354784950614, -0.014091352932155132, -0.03086167201399803, 0.004490614403039217, -0.03027229942381382, 0.008887465111911297, 0.004902504850178957, -0.011151189915835857, 0.012624620459973812, -0.01434585452079773, 0.0001151117539848201, -0.013589047826826572, 0.00020531751215457916, 0.023306991904973984, 0.05269523337483406, 0.0027224977966398, -0.0113855991512537, -0.012289749458432198, 0.012745173647999763, 0.01857861876487732, -0.01352877076715231, -0.03445148468017578, -0.01283224020153284, 0.01381006184965372, -0.009751430712640285, 0.05620467662811279, 0.0025014830753207207, 0.03396926820278168, -0.0023156299721449614, -0.011586521752178669, 0.01756061241030693, 0.01588626019656658, -0.026762856170535088, 0.048676785081624985, 0.01922157034277916, -0.02569126896560192, -0.020360130816698074, -0.03257620707154274, 0.007119348272681236, 0.02796838991343975, -0.04468512907624245, -0.017640981823205948, 0.0461585596203804, -0.024472340941429138, 0.05264165252447128, -0.004597772844135761, 0.004473870620131493, 0.02895960584282875, 0.02895960584282875, -0.028557762503623962, -0.017774930223822594, 0.016810502856969833, -0.0035261870361864567, -0.007983313873410225, 0.002536644460633397, -0.006603647489100695, 0.012316538952291012, -0.020293155685067177, -0.022047877311706543, -0.002412742469459772, 0.02313285879790783, -0.008197631686925888, 0.01529688760638237, 0.019020648673176765, -0.01762758567929268, -0.015055780299007893, -0.030674142763018608, -0.002022618195042014, 0.01824374869465828, -0.012443790212273598, -0.012919306755065918, 0.015069175511598587, 0.003320241579785943, 0.0013302733423188329, -0.005763122346252203, -0.025878796353936195, 0.035335540771484375, 0.011023938655853271, 0.0083248820155859, 0.017507033422589302, -0.026441380381584167, -0.01694445125758648, 0.012624620459973812, -0.011827628128230572, 0.012256262823939323, -0.002779425587505102, -0.008626265451312065, 0.0317993089556694, 0.018645593896508217, -0.00391798559576273, -0.026923593133687973, -0.030995618551969528, 0.02243632823228836, 0.013575652614235878, -0.03324595093727112, -0.002213494386523962, -0.024847395718097687, -0.005357929039746523, -0.013120228424668312, 0.0033286134712398052, -0.029682926833629608, 0.015069175511598587, 0.03804129734635353, -0.05700836330652237, 0.03908609226346016, -0.010930174961686134, -0.020681606605648994, 0.005274211522191763, -0.03536233305931091, -0.009517021477222443, -0.019610019400715828, 0.008847280405461788, -0.03155820071697235, -0.021297767758369446, -0.03980941325426102, -0.03027229942381382, -0.016810502856969833, -0.035308752208948135, -0.03262978792190552, -0.0073738498613238335, 0.013274269178509712, 0.0003840546705760062, -0.03707686811685562, -0.007474311161786318, 0.009985839948058128, 0.032415471971035004, -0.004011749289929867, 0.0003488932561594993, 0.0008468039450235665, 0.010762739926576614, 0.03587133437395096, -0.008987925946712494, 0.041523948311805725, -0.019596625119447708, -0.04527449980378151, 0.009034807793796062, 0.036996498703956604, 0.00152533536311239, -0.032736945897340775, -0.044390443712472916, 0.013944010250270367, -0.010334105230867863, -0.019918100908398628, 0.02054765820503235, 0.024847395718097687, -0.015042386017739773, -0.04171147570014, -0.004694885108619928, -0.012216078117489815, 0.022583670914173126, -0.012323237024247646, 0.01202185358852148, -0.006787826307117939, -0.05266844108700752, 0.022369353100657463, 0.0032582904677838087, 0.0026622209697961807, 0.002899979008361697, -0.014613751322031021, 0.01364932395517826, -0.020708395168185234, 0.014573566615581512, 0.0339156910777092, -0.0012088827788829803, 0.0259859561920166, -0.049694791436195374, -0.021244188770651817, 0.008746819570660591, 0.00199917727150023, 0.010166670195758343, 0.0032616392709314823, 0.003958169836550951, 0.006315658800303936, -0.009657667018473148, 0.006797872483730316, -0.03324595093727112, -0.003022206947207451, -0.002995417220517993, -0.01385024655610323, -0.011211466044187546, -0.016087181866168976, -0.003844314021989703, -0.012490672059357166, -0.02346772886812687, 0.009724641218781471, -0.004637957084923983, 0.01915459707379341, 0.013709601014852524, 0.010715858079493046, -0.023065883666276932, -0.028209496289491653, 0.018391091376543045, 0.034371115267276764, 0.016783712431788445, -0.04128284379839897, 0.054543718695640564, -0.025570716708898544, -0.0006634623277932405, 0.02053426206111908, 0.04072026163339615, 0.01353546790778637, 0.017507033422589302, -0.009744733572006226, 0.024244628846645355, 0.006007577758282423, -0.0059573473408818245, 0.029066765680909157, 0.0037538991309702396, 0.008699936792254448, 0.04460475966334343, -0.0156585481017828, 0.025624295696616173, -0.008994623087346554, -0.01449319813400507, 0.0059740906581282616, 0.023548098281025887, -0.01235672365874052, -0.010990452021360397, -0.009503626264631748, 0.026923593133687973, 0.0006174176232889295, -0.0018468111520633101, -0.0658489465713501, -0.029388241469860077, -0.03739834576845169, 0.016529211774468422, -0.010762739926576614, -0.016502421349287033, 0.018029430881142616, 0.013314453884959221, -0.06150902435183525, -0.01481467392295599, 0.029388241469860077, -0.00448056822642684, 0.04811420291662216, 0.009068294428288937, 0.008177539333701134, -0.04819457232952118, 0.0017137001268565655, -0.0010012630373239517, 0.03262978792190552, -0.01250406727194786, -0.007079163566231728, -0.04497981444001198, 0.008907556533813477, -0.002263725036755204, -0.003871103748679161, 0.012865726836025715, 0.001970713259652257, 0.005066591780632734, 0.000640439975541085, 0.05178438499569893, 0.02668248675763607, -0.027486175298690796, -0.008679845370352268, -0.030700933188199997, 0.0022821428719908, -0.016515815630555153, 0.00799670908600092, 0.02023957669734955, -0.0009409862686879933, 0.010200157761573792, 0.0032164317090064287, 0.007253296207636595, -0.011432480998337269, -0.009684456512331963, -0.008050288073718548, 0.018685776740312576, 0.0016944450326263905, -0.008010104298591614, 0.00642281724140048, 0.006061157211661339, 0.01593983918428421, -0.002754310378804803, 0.01498880609869957, -0.02925429306924343, -0.020400315523147583, -0.006623739842325449, -0.011686982586979866, -0.01481467392295599, 0.031745728105306625, -0.00018009757332038134, -0.04846246913075447, 0.028477393090724945, 0.004112210590392351, 0.01691766083240509, -0.038282401859760284, -0.021739797666668892, -0.04005051776766777, 0.02314625307917595, -0.0283434446901083, 0.021324558183550835, -0.0025065061636269093, 0.026133298873901367, -0.003680227557197213, -0.006586904171854258, 0.022998910397291183, 0.0086329635232687, 0.011512850411236286, -0.012771963141858578, -0.02019939199090004, -0.0037036684807389975, -0.018725961446762085, -0.002238609828054905, -0.030674142763018608, -0.03999694064259529, 0.01687747612595558, -0.028745289891958237, -0.030111560598015785, 0.022878356277942657, -0.006938518024981022, -0.005314395762979984, 0.002471344778314233, -0.0010489820269867778, -0.010380987077951431, 0.020252970978617668, 0.02471344731748104, -0.02436518296599388, -0.01251076441258192, 0.04747125133872032, -0.008264605887234211, 0.0017731395782902837, -0.017091793939471245, 0.0112315583974123, 0.010541724972426891, -0.012544251047074795, 0.0027727282140403986, 0.00480874115601182, -0.02634761668741703, 0.030808091163635254, -0.047712359577417374, -0.005736332852393389, -0.012055340223014355, -0.028718499466776848, -0.0018920187139883637, -0.0025282728020101786, -0.0077622998505830765, -0.019047437235713005, -0.00625873077660799, 0.011325322091579437, 0.0016023556236177683, 0.019931495189666748, -0.01497541181743145, -0.017131978645920753, -0.05684762820601463, 0.020587842911481857, 0.015216518193483353, 0.024485735222697258, 0.020400315523147583, -0.004386804532259703, 0.03321915864944458, 0.0037170632276684046, -0.022369353100657463, 0.035014066845178604, 0.006828011013567448, -0.01449319813400507, -0.03244226053357124, 0.0005542107974179089, 0.012765266001224518, 0.0108899911865592, 0.02957576885819435, -0.024311602115631104, 0.03844314068555832, -0.00860617309808731, 0.005940604023635387, -0.022677434608340263, -0.011023938655853271, 0.02796838991343975, 0.025959165766835213, 0.009717944078147411, -0.019944891333580017, 0.000394728675018996, -0.02637440524995327, 0.008036893792450428, 0.006781128700822592, -0.007849366404116154, 0.02837023325264454, 0.0019355518743395805, 0.030084772035479546, 0.008365066722035408, 0.0011720469919964671, -0.017507033422589302, -0.030513405799865723, 0.04176505655050278, -0.019101016223430634, 0.028906026855111122, 0.008418645709753036, 0.014680725522339344, 0.026561932638287544, -0.03375495225191116, 0.040827419608831406, -0.013267572037875652, 0.02504831738770008, 0.01170707494020462, 0.02380259893834591, 0.03423716500401497, 0.01042117178440094, 0.0006797872483730316, 0.025945771485567093, 0.0009460093569941819, 0.04422970488667488, -0.0015295213088393211, -0.036996498703956604, 0.04776593670248985, -0.020266367122530937, -0.004691536538302898, -0.010233644396066666, -0.02665569633245468, -0.028852447867393494, -0.029120344668626785, -0.0025433418340981007, -0.010119788348674774, 0.014533382840454578, -0.03975583240389824, 0.020761974155902863, 0.00456093717366457, 0.009624180383980274, -0.010555120185017586, 0.010689068585634232, -0.0172659270465374, 0.014252090826630592, 0.0685814917087555, -0.01235002651810646, 0.022074667736887932, -0.0084789227694273, 0.015444230288267136, 0.007105953525751829, 0.03380853310227394, 0.007280086167156696, -0.0034039593301713467, -0.009322796948254108, 0.02050747349858284, -0.022396143525838852, -0.034022849053144455, -0.016676554456353188, -0.00992556381970644, 0.024177655577659607, -0.0003668925492092967, 0.011318624950945377, -0.02248990722000599, 0.04267590492963791, -0.009429954923689365, 0.03289768472313881, 0.007079163566231728, 0.013113531284034252, 0.02117721363902092, 0.0036634840071201324, 0.0455423966050148, -0.0027107771020382643, -0.03782697767019272, 0.00272584636695683, 0.0050766379572451115, 0.00577316852286458, -0.009697851724922657, 0.023869574069976807, 0.017319506034255028, -0.013388125225901604, -0.009148663841187954, -0.030004402622580528, -0.05146290734410286, -0.028397023677825928, 0.02471344731748104, -0.023896362632513046, -0.01026043388992548, -0.010816318914294243, 0.001915459637530148, -0.022570276632905006, -0.006473048124462366, -0.011030636727809906, 0.02960255742073059, 0.01089668832719326, 0.009369678795337677, -0.0016693297075107694, 0.012463882565498352, 0.0016006813384592533, -0.011332020163536072, 0.01698463410139084, -0.015846075490117073, -0.022396143525838852, -0.020587842911481857, -0.025476953014731407, -0.01592644490301609, 0.016140760853886604, 0.023347176611423492, -0.017373085021972656, -0.012135709635913372, 0.005267513915896416, 0.006074551958590746, 0.012142406776547432, -0.0269771721214056, 0.003318567294627428, 0.0007174601778388023, 0.0028497485909610987, 0.00026622210862115026, -0.024900974705815315, 0.004058631137013435, -0.0185652244836092, 0.016033602878451347, -0.0025801777373999357, 0.02767370268702507, -0.002913373988121748, -0.04760519787669182, -0.016060391440987587, 0.02182016521692276, -0.006392679177224636, -0.024807211011648178, 0.010019327513873577, -0.00236251181922853, 0.02208806201815605, -0.008760213851928711, 0.011238256469368935, 0.004999617580324411, -0.004108862020075321, -0.02344094030559063, -0.007139440625905991, 0.008860674686729908, 0.02274440787732601, 0.024150865152478218, 0.02242293208837509, -0.007467613555490971, -0.016154155135154724, -0.04286343231797218, 0.0016216107178479433, -0.002104661427438259, 0.01632828824222088, 0.022864961996674538, -0.010146577842533588, 0.015792496502399445, 0.02837023325264454, -0.05173080414533615, 0.013944010250270367, 0.0009945655474439263, 0.001383852562867105, 0.001255764625966549, 0.026173483580350876, -0.009095084853470325, 0.0024361833930015564, 0.048944681882858276, -0.019342124462127686, 0.010943570174276829, -0.004410245455801487, 0.01723913662135601, 0.0201726034283638, 0.031049199402332306, 0.013984194956719875, 0.02707093581557274, 0.025798428803682327, 0.048301730304956436, 0.04230085015296936, 0.030352666974067688, 0.022905146703124046, 0.029870454221963882, -0.003320241579785943, -0.06022312119603157, 0.010461356490850449, -0.02242293208837509, 0.013769877143204212, 0.009570600464940071, -0.014560172334313393, -0.06081249564886093, 0.04519413039088249, 0.008304789662361145, 0.021967509761452675, -0.031692150980234146, 0.04267590492963791, 0.004507357720285654, -0.011298532597720623, -0.003067414276301861, -0.0025182266253978014, -0.027539754286408424, -0.01950286142528057, 0.018431276082992554, 0.017453454434871674, -0.0029050020966678858, 0.007420731708407402, -0.015872864052653313, -0.015069175511598587, 0.0017932318150997162, 0.006844754330813885, -0.0168908704072237, 0.0421936921775341, 0.037880558520555496, 0.0011301881168037653, -0.02048068307340145, -0.017788324505090714, -0.010622094385325909, -0.022851567715406418, 0.0073068756610155106, 0.03201362490653992, 0.02960255742073059, 0.003429074538871646, 0.015323677100241184, -0.028798868879675865, -0.008090472780168056, 0.03525517135858536, 0.03611244261264801, 0.028155917301774025, -0.018953673541545868, -0.006228592712432146, -0.01630149967968464, 0.016462236642837524, -0.014211907051503658, 0.02837023325264454, 0.00236251181922853, -0.004105512984097004, -0.005977439694106579, -0.009061597287654877, -0.0014173396630212665, -0.01267150230705738, -0.02701735682785511, -0.03900572285056114, 0.034960485994815826, 0.008190933614969254, 0.0313170962035656, 0.006771082989871502, 0.011807535775005817, -0.04581029340624809, 0.03187967836856842, 0.00682466197758913, -0.0395950973033905, 0.01622113026678562, -0.015698732808232307, 0.0037739912513643503, 0.031075987964868546, 0.0006015112739987671, -0.01563175767660141, 0.01757400669157505, 0.047658778727054596, 0.026280641555786133, 0.00124236976262182, 0.028182705864310265, 0.009356283582746983, -0.004303086549043655, -0.0026890106964856386, -0.004892459139227867, 0.006379284430295229, -0.024954553693532944, 0.020319946110248566, 0.015216518193483353, -0.001079957582987845, -0.005073288921266794, -0.010447961278259754, -0.026628907769918442, 0.0013662718702107668, 0.020065443590283394, 0.021672822535037994, -0.0123433293774724, 0.021659428253769875, 0.002694033784791827, 0.002727520652115345, 0.044765498489141464, 0.006000880617648363, -0.011439178138971329, -0.019114412367343903, 0.026200272142887115, 0.010796226561069489, -0.012490672059357166, 0.015323677100241184, -0.008874069899320602, 0.00561243062838912, 0.007059071678668261, 0.0007442498463205993, -0.03265657648444176, 0.0062821717001497746, 0.017801718786358833, 0.013461796566843987, -4.620167237590067e-05, 0.007246599067002535, 0.0002706172817852348, 0.013662719167768955, -0.00480539258569479, -0.013615837320685387, -0.014292275533080101, 0.02989724464714527, 0.014680725522339344, 0.0005667684017680585, 0.004862320609390736, 0.0283434446901083, 0.010977056808769703, -0.008532501757144928, -0.016515815630555153, -0.011633403599262238, 0.044122546911239624, -0.039220038801431656, 0.0020343386568129063, -0.002833005040884018, 0.016515815630555153, 0.0006651366711594164, 0.006884938571602106, 0.009597389958798885, -0.0018367650918662548, -0.025624295696616173, 0.03873782604932785, -0.020614631474018097, 0.015832679346203804, -0.028504181653261185, 0.005197191145271063, -0.01919477991759777, 0.0016157504869624972, 0.0016986309783533216, 0.03201362490653992, 0.00864635780453682, -0.0230792798101902, 0.0006190919666551054, -0.016355078667402267, -0.015738915652036667, -0.04631929472088814, 0.0067375958897173405, -0.006828011013567448, -0.008746819570660591, -0.01122486125677824, -0.031102778390049934, -0.015055780299007893, -0.022235404700040817, -0.04390822723507881, 0.007902945391833782, -0.019663600251078606, -0.00488911010324955, 0.002859794534742832, -0.019315334036946297, 0.04321169853210449, 0.017105188220739365, -0.021592453122138977, -0.009557206183671951, 0.014412828721106052, 0.020614631474018097, -0.006965307518839836, -0.0014550125924870372, 0.01892688497900963, 0.021244188770651817, -0.0241374708712101, -0.003062391420826316, 0.03833598271012306, -0.006128131411969662, -0.007414034102112055, -0.013622534461319447, 0.0009794963989406824, 0.005398113280534744, -0.021378137171268463, -0.014372644945979118, 0.004507357720285654, 0.011914694681763649, -0.013609139248728752, 0.04881073161959648, -0.011640100739896297, 0.015430836006999016, -0.01630149967968464, -0.019087621942162514, -0.018297327682375908, -0.026870014145970345, -0.02502152882516384, 0.0007350408704951406, -0.021980904042720795, -0.017399873584508896, -0.02699056826531887, -0.006938518024981022, -0.03289768472313881, -0.04302417114377022, 0.032415471971035004, -0.02242293208837509, -0.02023957669734955, -0.04160431772470474, 0.018967067822813988, 0.004453778266906738, -0.012336631305515766, -0.01056851539760828, -0.00976482592523098, -0.0005516992532648146, 0.02674946002662182, -0.02767370268702507, 0.007474311161786318, 0.019355518743395805, 0.024807211011648178, -0.01786869391798973, -0.01891348883509636, -0.038255613297224045, 0.011780746281147003, -0.02013241872191429, -0.014640540815889835, -0.004869018215686083, -0.013903825543820858, 0.0415775291621685, 0.01697123982012272, 0.025597505271434784, 0.02251669578254223, -0.006292217876762152, 0.003373821033164859, 0.006637134589254856, -0.0224631167948246, -0.02802196890115738, -0.02601274475455284, 0.009965747594833374, -0.0019506210228428245, 0.035951703786849976, 0.025369793176651, -0.013656022027134895, -0.003948124125599861, 0.00794982723891735, -0.009878681972622871, -0.00593055784702301, 0.0066773188300430775, -0.008204328827559948, -0.014586961828172207, 0.01202855072915554, 0.0038108269218355417, -0.012704988941550255, 0.014399434439837933, -0.04291701316833496, -0.032120782881975174, -0.02503492310643196, 0.00577651709318161, -0.01497541181743145, -0.00641946867108345, -0.01251746155321598, 0.0003961937327403575, -0.07083182036876678, -0.013508678413927555, 0.006322356406599283, -0.012323237024247646, -0.0028263076674193144, -0.007085861172527075, 0.02014581300318241, 0.010876595973968506, 0.0002360837534070015, 0.009918865747749805, 0.0030155093409121037, -0.0052139344625175, 0.010856503620743752, 0.02019939199090004, 0.016663160175085068, 0.0023390708956867456, 0.002494785701856017, -0.019944891333580017, 0.010139880701899529, -0.019261755049228668, -0.02056105248630047, 0.009738036431372166, 0.012410302646458149, -0.012175893411040306, -0.02281138300895691, 0.03155820071697235, 0.03324595093727112, -0.016515815630555153, -0.012149103917181492, -0.0029518839437514544, -0.003629996906965971, -0.005347882863134146, -3.270220258855261e-05, -0.014479802921414375, -0.020708395168185234, 0.022690828889608383, 0.007594864349812269, -0.010802924633026123, 0.02503492310643196, 0.02928108163177967, 0.011291835457086563, 0.004956084303557873, -0.0040519339963793755, -0.024927765130996704, 0.006717503536492586, 0.012457185424864292, 0.006945215631276369, -0.035630226135253906, 0.005599035881459713, 0.007259993813931942, 0.0018719264771789312, 0.002200099639594555, -0.010789529420435429, -0.010528330691158772, -0.008344974368810654, -0.0021548920776695013, 0.0069853998720645905, -0.0032331752590835094, 0.018176773563027382, 0.00849231705069542, 0.038898564875125885, -0.0009242427768185735, -0.008385159075260162, -0.014077958650887012, -0.021070055663585663, 0.015122754499316216, -0.013294361531734467, 0.027137910947203636, 0.01632828824222088, 0.019435888156294823, 0.0006341611151583493, -0.017105188220739365, 0.0013947358820587397, 0.025597505271434784, 0.019770758226513863, 0.011090912856161594, 0.016194339841604233, 0.020293155685067177, -0.007641746196895838, -0.0012591133126989007, -0.00992556381970644, -0.00784266833215952, 0.01694445125758648, 0.015872864052653313, -0.013066649436950684, -0.021672822535037994, -0.007467613555490971, -0.005197191145271063, 0.0045441933907568455, 0.002414416754618287, 0.02115042507648468, 0.009423257783055305, 0.016020208597183228, 0.014881648123264313, -0.030111560598015785, 0.055186670273542404, -0.024927765130996704, 0.0032566161826252937, -0.009336191229522228, 0.0010288897901773453, -0.002022618195042014, -0.01656939461827278, -0.00849231705069542, -0.010715858079493046, -0.00288658426143229, -0.014426223933696747, -0.020105628296732903, 0.0032465700060129166, -0.007635049056261778, -0.006965307518839836, -0.013113531284034252, 0.01568533666431904, -0.014694120734930038, -0.004470522049814463, -0.0126848965883255, 5.415485065896064e-05, -0.008425343781709671, -0.0010841434122994542, -0.0016358427237719297, 0.021391531452536583, -0.007333665154874325, 0.01563175767660141, -0.0038945446722209454, -0.03062056377530098, -0.0031025756616145372, 0.012463882565498352, -0.008532501757144928, -0.0259859561920166, -0.014895042404532433, 0.022677434608340263, -0.01368281152099371, -0.004902504850178957, -0.014292275533080101, -0.010206854902207851, -0.00399835454300046, 0.0001549822773085907, 0.001942249247804284, -0.007722115144133568, 0.030700933188199997, -0.03120993636548519, -0.0059740906581282616, -0.0016701669665053487, 0.011807535775005817, 0.0008547570905648172, -0.014841463416814804, 0.023347176611423492, -0.01352877076715231, -0.010005932301282883, -0.002223540563136339, -0.001347854034975171, -0.01851164549589157, 0.021940719336271286, 0.03321915864944458, 0.037960927933454514, -0.009362980723381042, -0.0403452068567276, -0.007467613555490971, -0.001699468120932579, -0.010468053631484509, -0.0020695000421255827, -0.009851891547441483, 0.018283933401107788, 0.011445876210927963, 0.015578178688883781, 0.018350906670093536, -0.020628027617931366, -0.01220268290489912, 0.0007162044057622552, -0.010769437067210674, -0.00812395941466093, 0.010434566996991634, 0.014613751322031021, -0.013656022027134895, -0.02503492310643196, 0.008030195720493793, -0.006630436982959509, -0.01434585452079773, -0.006536673288792372, 0.0038778011221438646, -0.0050766379572451115, -0.015497809275984764, 0.0032331752590835094, 0.0066572269424796104, -0.0023256761487573385, 0.005518666934221983, 0.011820930987596512, 0.007059071678668261, 0.0040720258839428425, -0.025517137721180916, -0.006245336029678583, 0.029682926833629608, -0.00025303656002506614, -0.011954879388213158, 0.013301058672368526, 0.0024612986017018557, 0.01915459707379341, 0.004145697690546513, 0.021070055663585663, -0.02281138300895691, -0.017346294596791267, 0.014948622323572636, -0.003928031772375107, 0.011526244692504406, 0.012316538952291012, 0.003062391420826316, -0.018176773563027382, -0.03297805413603783, 0.0430777482688427, 0.02248990722000599, -0.029495399445295334, -0.020319946110248566, 0.005053197033703327, 0.017975851893424988, -0.0019539697095751762, 0.0026521747931838036, -0.029709717258810997, -0.0024864140432327986, -0.014600356109440327, 0.02149868942797184, -0.026521747931838036, 0.007822575978934765, -0.008130657486617565, 0.02021278813481331, 0.011077518574893475, 0.013609139248728752, 0.010387685149908066, 0.02313285879790783, -0.027914810925722122, -0.01987791620194912, 0.011653495952486992, 0.006972005125135183, -0.007748904637992382, -0.008686542510986328, -0.00593390641734004, -0.017828509211540222, 0.003720412030816078, 0.03327273949980736, -0.011606614105403423, 0.011573126539587975, -0.008572686463594437, -0.035014066845178604, -0.009215638041496277, 0.006067854817956686, -8.523502037860453e-05, 0.0254367683082819, 0.019301939755678177, -0.020306551828980446, 0.0009744733688421547, 0.00528425769880414, 0.010106394067406654, 0.014734304510056973, 0.015805890783667564, -0.014895042404532433, -0.008746819570660591, -0.027566544711589813, -0.028772078454494476, 0.04589066281914711, -0.007427429314702749, 0.016475630924105644, 0.0009167081443592906, -0.021713007241487503, -0.0029803479555994272, 0.020105628296732903, -0.02377581037580967, 0.026910198852419853, 0.005193842574954033, 0.0067543392069637775, 0.023306991904973984, 0.041497159749269485, -0.0011519547551870346, -0.01364932395517826, 0.009483533911406994, -0.02511529251933098, -0.010347500443458557, 0.00407537491992116, -0.005146960727870464, -0.0025433418340981007, -0.01042117178440094, 0.022891752421855927, 0.005183796398341656, -0.02898639626801014, -0.015564783476293087, -0.01235002651810646, 0.008030195720493793, 0.01697123982012272, -0.020721791312098503, 6.001508518238552e-05, -0.024954553693532944, 0.021726401522755623, -0.016341684386134148, 0.017185557633638382, 0.01793566718697548, 0.012383513152599335, -0.003616602160036564, 0.02898639626801014, -0.01155303418636322, 0.00585018889978528, 0.016810502856969833, 0.014627146534621716, -0.008418645709753036, 0.013307755813002586, 0.020735185593366623, -0.012865726836025715, -0.0014868252910673618, 0.006878241430968046, -0.0001410642289556563, -0.009068294428288937, -0.00552871311083436, 0.014921831898391247, 0.012410302646458149, 0.0012842286378145218, -0.00464800326153636, -0.02281138300895691, -0.021994298323988914, -0.00012348352174740285, 0.0023993474896997213, -0.004058631137013435, 0.0038543601986020803, 0.012403605505824089, -0.02837023325264454, 0.007300178054720163, -0.0019255056977272034, 0.03201362490653992, 0.011077518574893475, -0.019409097731113434, 0.0018635547021403909, -0.01348188892006874, -0.010936873033642769, 0.006871543824672699, 0.0050933812744915485, -0.013877036049962044, 0.006031018681824207, -0.001307669561356306, -0.01219598576426506, -0.01057521253824234, -0.0036099047865718603, 0.004453778266906738, -0.002675615716725588, -0.011452573351562023, -0.006523278541862965, 0.01918138563632965, 0.02470005303621292, -0.0021883791778236628, 0.008673147298395634, -0.0014818022027611732, 0.028798868879675865, 0.0006504860939458013, 0.028155917301774025, 0.004085421096533537, -0.020119022578001022, 0.02378920465707779, 0.009738036431372166, -0.012852332554757595, -0.03938077762722969, -0.004795346409082413, 0.03064735420048237, 0.02274440787732601, 0.004681490361690521, -0.035978492349386215, -0.04720335453748703, -0.02507510781288147, -0.0024378576781600714, 0.02638779953122139, 0.016355078667402267, 0.005083335097879171, 0.014948622323572636, 0.013354637660086155, -0.01498880609869957, 0.010166670195758343, -0.003656786633655429, -0.01698463410139084, -0.011291835457086563, 0.0003235686745028943, -0.000890755676664412, -0.001112607424147427, 0.03396926820278168, -0.012088827788829803, 0.010816318914294243, 0.0033687979448586702, -0.011111005209386349, 0.01204194501042366, 0.013877036049962044, -0.02183356136083603, -0.021003082394599915, -0.016341684386134148, -0.0036232995335012674, -0.03129030391573906, 0.013314453884959221, -0.007467613555490971, -0.004262902308255434, -0.006087946705520153, -0.023708835244178772, -0.007474311161786318, 0.016462236642837524, 0.007199717219918966, 0.011593218892812729, -0.0009962399490177631, 0.00585688604041934, -0.03820203244686127, -0.01756061241030693, -0.019435888156294823, 0.018123194575309753, 0.0018049523932859302, 0.027727283537387848, -0.02930787205696106, 0.03560343757271767, -8.41885557747446e-05, 0.02632082626223564, -0.013629231601953506, -0.023387359455227852, 0.0004024725640192628, 0.011198071762919426, 0.0016433772398158908, -0.01568533666431904, -0.05315065756440163, 0.00019328310736455023, -0.007038979325443506, 0.017761534079909325, 0.0006617879262194037, -0.02538318932056427, -0.03362100571393967, 0.0034190283622592688, 0.012289749458432198, -0.00911517720669508, -0.020574446767568588, -0.014359249733388424, -0.015042386017739773, 0.009758127853274345, -0.005907116923481226, -0.012899214401841164, -0.011003846302628517, 0.02179337665438652, -0.007353757508099079, 0.017399873584508896, 0.029227502644062042, -0.005887024570256472, -0.012470579706132412, 0.018940279260277748, -0.01332784816622734, -0.035683806985616684, -0.01721234619617462, -0.007568074855953455, -0.007059071678668261, 0.005187144968658686, 0.005438297986984253, -0.02049407921731472, 0.0076819309033453465, -0.026950383558869362, 0.02634761668741703, 0.023909758776426315, 0.0029502096585929394, -0.011606614105403423, -0.005746379029005766, 0.014305670745670795, 0.009704548865556717, 0.011164584197103977, -0.004199276678264141, -0.0015462648589164019, -0.028182705864310265, 0.04650682210922241, 0.02636101096868515, 0.024311602115631104, -0.006647180765867233, 0.008666450157761574, -0.031477831304073334, 0.02021278813481331, 0.0293346606194973, -0.016381867229938507, -0.023266807198524475, -0.0032867544796317816, 0.025865402072668076, -0.0016149133443832397, -0.006697411183267832, -0.0031243422999978065, 0.020333340391516685, -0.03755908086895943, 0.004028493072837591, 0.03710365667939186, -0.0007601561956107616, -0.024324998259544373, 0.014519987627863884, 0.005806655623018742, 0.018819725140929222, 0.012972885742783546, 0.022731013596057892, -0.023615071550011635, -0.004366712179034948, -0.01592644490301609, -0.008699936792254448, 0.04990910738706589, -0.03027229942381382, 0.005749727599322796, 0.0019355518743395805, 0.0032532676123082638, 0.01449319813400507, -0.019355518743395805, -0.009731338359415531, -0.017332900315523148, -0.0008673147531226277, 0.0026655697729438543, 0.004447081126272678, -0.015216518193483353, -0.01760079711675644, 0.009202242828905582, -0.0060377162881195545, -0.01449319813400507, -0.014252090826630592, 0.01449319813400507, -0.005029755644500256, -0.007105953525751829, -0.014948622323572636, 0.007715418003499508, -0.0016274709487333894, 0.005468436516821384, -0.017131978645920753, -0.005036453250795603, 0.020038655027747154, -0.010602002032101154, -0.010715858079493046, 0.004467173479497433, -0.010843108408153057, -0.006851451937109232, -0.007440824061632156, -0.01663636974990368, 0.0013579000951722264, 0.005106776021420956, 0.008077077567577362, 0.0060410648584365845, -0.021244188770651817, -0.005411508493125439, -0.007313573267310858, 0.0030573683325201273, 0.021337952464818954, 0.010876595973968506, 0.019034042954444885, 0.005826747976243496, 0.015725521370768547, 0.0061180852353572845, -0.0005215608980506659, -0.012457185424864292, -0.0041523948311805725, 0.0012599504552781582, -0.01498880609869957, -0.01660957932472229, -0.0014156652614474297, 0.07083182036876678, -0.00019234127830713987, -0.008224421180784702, -0.0022486557718366385, 0.011084215715527534, -0.009758127853274345, 0.001726257731206715, 0.024900974705815315, 0.008874069899320602, 0.00844543520361185, 0.016475630924105644, -0.01369620580226183, 0.0032030369620770216, -0.01239690836519003, -0.011760653927922249, 0.010367592796683311, 0.00929600652307272, 0.013421611860394478, 0.00794982723891735, 0.006529976148158312, 0.026575328782200813, 0.005274211522191763, -0.020252970978617668, 0.021070055663585663, -0.001714537269435823, 0.0041356515139341354, -0.010474750772118568, 0.02054765820503235, 0.01284563448280096, 0.02117721363902092, 0.001917133922688663, -0.005940604023635387, -0.030165139585733414, -0.01852503977715969, 0.006797872483730316, 0.02313285879790783, -0.006248684599995613, 0.0062821717001497746, -0.004128953907638788, 0.03605886176228523, -0.01920817606151104, -0.013180505484342575, 0.0083248820155859, 0.010916780680418015, -0.006633786018937826, -0.005622476805001497, 0.004637957084923983, 0.0024864140432327986, -0.009878681972622871, -0.018685776740312576, -0.02243632823228836, -0.012437093071639538, -0.0035462791565805674, 0.00204103603027761, 0.015846075490117073, -0.006610345095396042, 0.012812147848308086, -0.010026024654507637, 0.002483065240085125, -0.005883675999939442, -0.01588626019656658, -0.000749272876419127, -0.01761419139802456, -0.03220115229487419, 0.007246599067002535, -0.01884651556611061, -0.00047802773769944906, -0.005592338275164366, 0.008452133275568485, 0.021297767758369446, 0.00811726227402687, 0.024860789999365807, 0.0006140688783489168, -0.001969038974493742, -0.0030021145939826965, 0.0195564404129982, 0.009985839948058128, 0.0049359919503331184, -0.00448391679674387, -0.0007216460653580725, -0.00440689641982317, 0.0008166655898094177, -0.003951472695916891, -0.024258023127913475, 0.0006463002064265311, 0.000543746049515903, 0.009141966700553894, -0.00650318618863821, 0.011921391822397709, -0.01753382198512554, -0.016194339841604233, 0.004828833509236574, 0.0007702023140154779, 0.018042825162410736, 0.00038154315552674234, -0.011566429398953915, -0.01981094293296337, 0.011472665704786777, 0.008465527556836605, -0.0027610077522695065, -0.0013486911775544286, 0.007347060367465019, 0.0011846045963466167, 0.005334488116204739, 0.0014014332555234432, -0.009677759371697903, 0.02603953517973423, 0.01056851539760828, -0.015819285064935684, -0.004651352297514677, 0.006884938571602106, -0.009483533911406994, -0.012008458375930786, 0.005280908662825823, -0.018364300951361656, 0.014868252910673618, 0.013769877143204212, 0.003074111882597208, -0.023923153057694435, -0.014131537638604641, 0.00576981995254755, -0.00423946138471365, 0.019087621942162514, 0.006298915483057499, -0.0077020227909088135, -0.006302264053374529, -0.014586961828172207, -0.013254176825284958, -0.01729271560907364, 0.0062654283829033375, 0.008030195720493793, -0.012584435753524303, 0.00992556381970644, 0.009979142807424068, -0.007929734885692596, -0.011372203938663006, 0.019610019400715828, -0.016341684386134148, 0.013997589237987995, -0.018658988177776337, -0.008947741240262985, 0.035308752208948135, -0.003067414276301861, 0.018819725140929222, 0.01271168701350689, 0.004306435585021973, -0.0033353108447045088, -0.019971679896116257, 0.013997589237987995, 0.01623452454805374, 0.005749727599322796, -0.01623452454805374, 0.0023943246342241764, -0.007976616732776165, 0.01531028188765049, 0.0077823917381465435, -0.02960255742073059, -0.015859469771385193, 0.011794141493737698, -0.028477393090724945, -0.005836794152855873, -0.01239021122455597, -0.011111005209386349, -0.0028028665110468864, -0.02182016521692276, 0.00641612010076642, 0.02113703079521656, 0.01401098445057869, 0.021418321877717972, -0.011566429398953915, -0.0069853998720645905, 0.02641458995640278, 0.010997149161994457, -0.0179490614682436, -0.008512409403920174, 0.003660135203972459, -0.005913814064115286, -0.011077518574893475, -0.027780862525105476, 0.026829829439520836, 0.009081689640879631, 0.002513203537091613, 0.013702903874218464, -0.005086683668196201, 0.014386039227247238, -0.00116200081538409, -0.005110124591737986, -0.014091352932155132, 0.00415909243747592, 0.007085861172527075, -0.01316041313111782, 0.028209496289491653, -0.001672678510658443, 0.00480204401537776, -0.016140760853886604, 0.009965747594833374, -0.004547542426735163, 0.015283492393791676, 0.0018836469389498234, -0.0006571834674105048, -0.0006098829908296466, 0.011211466044187546, 0.003911287989467382, 0.002982022473588586, -0.0038510113954544067, -0.01990470662713051, -0.018176773563027382, -0.01990470662713051, -0.014613751322031021, 0.003941426519304514, -0.05202548950910568, -0.006647180765867233, 0.023186437785625458, 0.007105953525751829, -0.009744733572006226, 0.015712127089500427, -0.0025299470871686935, -0.020614631474018097, 0.041229262948036194, 0.003536233212798834, -0.0012432070216163993, 0.01663636974990368, 0.006730898283421993, -0.003482653759419918, -0.0016676554223522544, 0.018498249351978302, 0.007708720397204161, 0.0004905854002572596, 0.020962897688150406, -0.003619950730353594, 0.035335540771484375, -0.013515375554561615, -0.015350466594099998, 0.003415679791942239, 0.015578178688883781, 0.023347176611423492, 0.034022849053144455, -0.018002642318606377, 0.015082569792866707, -0.011914694681763649, -0.015819285064935684, 0.009275914169847965, -0.012376816011965275, 0.021659428253769875, 0.008331580087542534, 0.007655140943825245, 0.004517403896898031, -0.0073738498613238335, -0.019301939755678177, -2.430427775834687e-05, 0.023909758776426315, 0.009697851724922657, -0.007193019613623619, 0.019676994532346725, 0.01790887862443924, 0.006540022324770689, 0.011432480998337269, -0.012155801057815552, 0.0254367683082819, -0.01218259148299694, 0.00391798559576273, 0.004909202456474304, -0.0030422990676015615, 0.0015621711499989033, 0.006382633000612259, 0.018458064645528793, -0.01761419139802456, 0.011660193093121052, -0.02641458995640278, 0.004209322854876518, -0.0084789227694273, -0.0023407451808452606, 0.007253296207636595, 0.01725253090262413, -0.001275019720196724, 0.00027145445346832275, 0.007896248251199722, 0.01951625570654869, 0.0059740906581282616, 0.013615837320685387, -0.004838879685848951, 0.0006123945349827409, -0.006878241430968046, -0.029816875234246254, 0.010782832279801369, -0.028450602665543556, -0.005153657868504524, 0.001127676572650671, -0.0016961194342002273, -0.010863200761377811, -0.006526627112179995, 0.0016073787119239569, 0.017105188220739365, 0.006104690488427877, -0.018605409190058708, -0.0009150338009931147, 0.0069853998720645905, 0.0007178787491284311, -0.0008468039450235665, -0.02182016521692276, -0.016462236642837524, -0.0019405749626457691, 0.0011954879155382514, -0.024499131366610527, 0.002884909976273775, -0.00017769068654160947, 0.021900534629821777, -0.010695765726268291, -0.006938518024981022, 0.029495399445295334, 0.013187202624976635, 0.004584378097206354, -0.010052814148366451, -0.007688628043979406, 0.005779866129159927, -0.013997589237987995, -0.0003834267845377326, 0.02278459258377552, 0.007313573267310858, -0.008036893792450428, 0.007353757508099079, 0.02440536580979824, 0.016998030245304108, 0.01206873543560505, -5.193109973333776e-05, 0.019864521920681, 0.009898774325847626, 0.028048759326338768, 0.011111005209386349, -0.01352877076715231, 0.0028112384025007486, -0.007367152255028486, -0.006603647489100695, 0.004986222833395004, 0.003251593094319105, 0.007112650666385889, -0.019315334036946297, -0.016542606055736542, -0.02023957669734955, 0.0030037888791412115, -0.003027229802682996, -0.006151572335511446, 0.012497369199991226, -0.017198951914906502, 0.0011586521286517382, 0.028102338314056396, 0.010046117007732391, -0.007092558313161135, 0.003159503685310483, 0.02503492310643196, -0.0015127777587622404, -0.016422051936388016, 0.018725961446762085, -0.009885379113256931, -0.023708835244178772, -0.005659312475472689, -0.010662279091775417, 0.002432834589853883, -0.023869574069976807, 0.014720910228788853, -0.01287912204861641, 0.009362980723381042, -0.007574771996587515, -0.013729693368077278, 0.003079134738072753, 0.010615397244691849, -0.011325322091579437, 0.02186034992337227, -0.0214719008654356, 0.011814233846962452, -0.005495226010680199, -0.00431648176163435, 0.001261624856851995, -0.020681606605648994, -0.005538759287446737, 0.003539581783115864, 0.013548863120377064, 0.009349586442112923, -0.012979582883417606, 0.016341684386134148, 0.026923593133687973, -0.00284807407297194, -0.015805890783667564, 0.0046245623379945755, 0.014118143357336521, 0.006871543824672699, 0.009222335182130337, 0.01687747612595558, 0.007568074855953455, 0.012262959964573383, 0.0185652244836092, 0.025543926283717155, 0.007119348272681236, 0.004761859308928251, -0.006647180765867233, 0.0029920684173703194, -0.010427868925035, 0.013656022027134895, 0.004386804532259703, -0.012316538952291012, 0.018953673541545868, 0.004818787332624197, -0.010816318914294243, 0.02086913399398327, 0.0002649663365446031, -0.006533324718475342, 0.011921391822397709, 0.03705007955431938, 0.014962016604840755, 0.004574331920593977, 0.014680725522339344, 0.009503626264631748, -0.022275589406490326, 0.011780746281147003, 0.009503626264631748, -0.0076819309033453465, 0.020628027617931366, -0.0027861231938004494, 0.004674793221056461, 0.019690388813614845, 0.009235730394721031, 0.0019874568097293377, -0.0024596243165433407, -0.011934787034988403, 0.009912168607115746, 0.03187967836856842, 0.026441380381584167, 0.0037672938778996468, -0.0039146370254457, -0.0018769495654851198, -0.02211485244333744, -0.024244628846645355, 0.009061597287654877, 0.008519107475876808, -0.01568533666431904, -0.00625873077660799, 0.021244188770651817, -0.026923593133687973, -0.014881648123264313, 0.015363861806690693, -0.012731778435409069, -0.002101312857121229, 0.011445876210927963, 0.0107359504327178, 0.0014064563438296318, 0.004581029526889324, -0.002483065240085125, 0.028584551066160202, -0.009637574665248394, -0.01821695826947689, -0.006516580935567617, 0.032067205756902695, 0.006787826307117939, 0.0024194398429244757, -0.014854858629405499, -0.008023498579859734, -0.020065443590283394, 0.028825657442212105, 0.03557664901018143, 0.00030263926601037383, 0.005002966150641441, -0.007902945391833782, 0.004835531115531921, 0.0015462648589164019, -0.00881379283964634, -0.011291835457086563, -0.0012632992584258318, 0.008820490911602974, -0.010139880701899529, 0.0035697203129529953, -0.007775694597512484, -0.0059573473408818245, 0.010602002032101154, -0.00960408803075552, -0.02275780402123928, 0.0022352610249072313, -0.011278440244495869, 0.008184236474335194, 0.015792496502399445, -0.00865305494517088, -0.01514954399317503, 0.0002371302107349038, -0.0036467404570430517, 0.015430836006999016, -0.003107598749920726, 0.009825102053582668, -0.027191489934921265, 0.013508678413927555, 0.007440824061632156, 0.020962897688150406, 0.0015663570957258344, -0.02048068307340145, 0.005508620757609606, -0.014573566615581512, -0.0008823839598335326, 0.0007304364116862416, -0.00602097250521183, 0.029120344668626785, -0.0128389373421669, -0.00472502363845706, -0.0040686773136258125, 0.008760213851928711, -0.012249565683305264, 0.026280641555786133, 0.008552594110369682, 0.002416091039776802, -0.010139880701899529, 0.0024981345050036907, 0.011305230669677258, 0.003934728913009167, 0.0086329635232687, 0.0012540902243927121, 0.004011749289929867, 0.017011424526572227, -0.008405251428484917, 0.0201726034283638, 0.002387627027928829, 0.023882968351244926, 0.0026772902347147465, -0.0028832354582846165, -0.0005391415907070041, -0.0064328634180128574, -0.004031841643154621, -0.0015002201544120908, -0.008030195720493793, 0.011486059986054897, 0.009409862570464611, 0.011800838634371758, -0.018391091376543045, 0.00520723732188344, -0.03091525100171566, 0.01632828824222088, 0.005662661045789719, -0.009731338359415531, -0.007574771996587515, 0.0064328634180128574, 0.021244188770651817, -0.005398113280534744, 0.03319237008690834, -0.0013394822599366307, -0.004835531115531921, 0.0042126718908548355, 0.02089592255651951, -0.004430337343364954, -0.0078292740508914, -0.01627470925450325, -0.021056661382317543, 0.02115042507648468, 0.009483533911406994, 0.0014516639057546854, -0.0051770987920463085, 0.011030636727809906, 0.017118582502007484, 0.02045389451086521, 0.0033955874387174845, -0.02151208557188511, -0.013575652614235878, -0.004356666002422571, 0.0016718412516638637, 0.0013445053482428193, 0.007501100655645132, -0.01626131497323513, -0.0029301175381988287, 0.010722555220127106, -0.0026203622110188007, 0.003308521118015051, 0.005073288921266794, 0.0032030369620770216, -0.027218278497457504, 0.01730610989034176, -0.017426664009690285, 0.008532501757144928, 0.0003631252620834857, -0.00617501325905323, -0.0015404046280309558, 0.012584435753524303, 0.0008024335838854313, 0.007675233297049999, 0.019663600251078606, -0.01186111569404602, -0.0002955232630483806, -0.027593335136771202, -0.00440019927918911, 0.019623415544629097, -0.007688628043979406, 0.01588626019656658, -0.0062855202704668045, 0.008726727217435837, 0.005840142723172903, -0.02282477729022503, 0.02701735682785511, -0.005026407074183226, -0.012892516329884529, -0.009336191229522228, 0.004493962973356247, 0.0028832354582846165, -0.016033602878451347, -0.01186111569404602, -0.01514954399317503, -0.019288543611764908, -0.0005420717061497271, 0.010126485489308834, -2.4232333544205176e-06, -0.0003237779892515391, -0.006606996059417725, 0.001297623384743929, 0.0034073079004883766, -0.02046728879213333, 0.0063491459004580975, -0.005900419317185879, -0.009892076253890991, 0.02211485244333744, 0.018391091376543045, 0.00895443931221962, -0.0022084712982177734, -0.013126926496624947, 0.01251746155321598, 0.0016885848017409444, 0.030808091163635254, 0.0003434516256675124, -0.033353108912706375, -0.005542107857763767, 0.005558851175010204, -0.0019857825245708227, -0.0021381485275924206, -0.00831148773431778, 0.007025584578514099, 0.010769437067210674, 0.019368913024663925, 0.009081689640879631, -0.006911728531122208, -0.0006563463248312473, 0.01821695826947689, -0.011097610928118229, 0.013903825543820858, -0.027486175298690796, -0.006489791441708803, -0.002576828934252262, -0.0011444201227277517, -0.0012247890699654818, 0.0029217456467449665, -0.009028110653162003, -0.009650969877839088, 0.011164584197103977, -0.0025399932637810707, -0.0008158283890224993, 0.009731338359415531, -0.011412388645112514, -0.01235002651810646, 0.008144051767885685, -0.020922712981700897, 0.008720029145479202, -0.006794523913413286, 0.008016801439225674, -0.007152835372835398, 0.005475133657455444, 0.0026806388050317764, -0.01202185358852148, -0.0065098837949335575, -0.01662297546863556, 0.006623739842325449, -0.02183356136083603, 0.01009299885481596, 0.017145372927188873, 0.012108919210731983, -0.019931495189666748, 0.017346294596791267, 0.011814233846962452, 0.0010037744650617242, -0.0055655487813055515, -0.015162939205765724, 0.007815878838300705, -0.013307755813002586, 0.008941044099628925, -0.006385981570929289, -0.01892688497900963, -0.0009125222568400204, -0.02636101096868515, -0.009918865747749805, -0.058455005288124084, 0.0201726034283638, 0.00203768745996058, -0.032093994319438934, -0.020574446767568588, -1.3852652955392841e-05, 0.024030311033129692, -0.006396027747541666, 0.003948124125599861, -0.013729693368077278, 0.0015035688411444426, -0.016716739162802696, -0.017962457612156868, 0.003830919275060296, -0.007501100655645132, 0.01857861876487732, 0.01009299885481596, -0.009088386781513691, -0.008565989322960377, 0.006325704976916313, 0.00553541025146842, -0.016207735985517502, -0.018310721963644028, 0.0031795960385352373, -0.001146931666880846, 0.017105188220739365, -0.03032587841153145, 0.029736505821347237, 0.0035697203129529953, 0.0012130686081945896, -0.0002831749152392149, 0.012169196270406246, 0.004661398474127054, -0.01531028188765049, 0.00641946867108345, -0.0013185528805479407, -0.01090338546782732, 0.01024703960865736, -0.015229913406074047, 0.005722938105463982, 0.0003124760987702757, 0.0002687336236704141, 0.012624620459973812, -0.019770758226513863, 0.0021481947042047977, 0.003961518872529268, -0.009470139630138874, -0.008699936792254448, 0.00013394822599366307, -0.006164967082440853, 0.0019070878624916077, 0.0031896422151476145, 0.004795346409082413, -0.009751430712640285, 0.004550890997052193, -0.009959050454199314, -0.009021412581205368, 0.00553206168115139, -0.0179490614682436, 0.008103867992758751, 0.006295566447079182, 0.0076216538436710835, -0.011807535775005817, -0.006148223765194416, 0.007755602244287729, 0.018297327682375908, -0.019690388813614845, -0.00569614814594388, 0.009717944078147411, -0.013247479684650898, 0.011124400421977043, -0.015377256087958813, -0.01655600033700466, 0.006563463248312473, -0.008338277228176594, 0.006550068035721779, -0.0021934022661298513, 0.004815438762307167, 0.003804129548370838, 0.024633077904582024, 0.01624791882932186, 0.005887024570256472, 0.009985839948058128, -0.010300618596374989, 0.011847720481455326, 0.002590223914012313, -0.009537113830447197, 0.005599035881459713, -0.003619950730353594, 0.0003264987899456173, 0.009316098876297474, 0.010441264137625694, -0.00794982723891735, -0.008853977546095848, -0.00017340017075184733, -0.00256510847248137, -0.014211907051503658, 0.0026789645198732615, 0.001779837068170309, 0.0022067970130592585, 0.020708395168185234, -0.006191756576299667, 0.02703075110912323, -0.03426395729184151, 0.017198951914906502, -0.03608565032482147, -0.009831800125539303, 0.040586311370134354, -0.0001989340380532667, 0.02538318932056427, -0.001726257731206715, 0.014921831898391247, 0.008465527556836605, -0.012778660282492638, -0.012651409953832626, 0.01885990984737873, 0.01320729497820139, 0.025945771485567093, -0.006811267230659723, 2.1073299649287947e-05, 0.002469670493155718, 0.0037137146573513746, 0.005679404828697443, -0.0009736361680552363, 0.0008154098177328706, 0.0034491668920964003, 0.017667770385742188, -0.004922597203403711, 0.017815113067626953, 0.014091352932155132, 0.029039975255727768, 0.00537467235699296, 0.02828986570239067, -0.01762758567929268, -0.0012708337744697928, 0.011439178138971329, -0.010863200761377811, -0.010280526243150234, 0.01368281152099371, -0.009704548865556717, 0.010695765726268291, -0.009691153652966022, 0.0027995179407298565, 0.01626131497323513, 0.008063683286309242, -0.0054818312637507915, -0.016502421349287033, -0.002203448209911585, -0.01762758567929268, 0.0005357929039746523, -0.011740561574697495, 0.004390153102576733, -0.002630408387631178, -0.011265045963227749, 0.026535144075751305, 0.011003846302628517, -0.022998910397291183, -0.007815878838300705, 0.0029769993852823973, -0.00120051100384444, 0.00030787161085754633, -0.003429074538871646, -0.02799517847597599, 0.023521307855844498, 0.014479802921414375, -0.008331580087542534, -0.006600298918783665, 0.0011209791991859674, 0.012946096248924732, -0.020440498366951942, -0.010347500443458557, 0.0001954806939465925, 0.013743087649345398, -0.0039045908488333225, -0.002322327345609665, -0.02436518296599388, 0.030700933188199997, 0.0038141757249832153, 0.007856063544750214, -0.0030925297178328037, -0.01042117178440094, 0.00879370141774416, 0.00464800326153636, 0.012490672059357166, 0.011177979409694672, 0.007668535690754652, -0.019422492012381554, -0.002901653526350856, 0.0035931612364947796, -0.0015713800676167011, -0.015578178688883781, -0.005719589069485664, -0.008405251428484917, -0.017038214951753616, 0.016408657655119896, -0.003075786167755723, 0.004507357720285654, 0.0047853002324700356, -0.0017647679196670651, -0.0317993089556694, 0.00799001194536686, -0.010595304891467094, 0.004869018215686083, 0.007414034102112055, -0.007239901460707188, -0.018337512388825417, -0.01948946714401245, 0.029522188007831573, -0.0012783684069290757, -0.003067414276301861, 0.013863641768693924, 0.013890431262552738, 0.013944010250270367, 0.014761094003915787, 0.008304789662361145, 0.01981094293296337, 0.0035295358393341303, 0.0009686130797490478, -0.005672707222402096, -0.018337512388825417, -0.011733864434063435, 0.0027844486758112907, 0.01599341817200184, -0.010059511289000511, -0.002995417220517993, -0.03346026688814163, -0.004902504850178957, -0.03801450505852699, 0.0012582761701196432, -0.010354197584092617, 0.0076819309033453465, 0.00022959563648328185, -0.0024378576781600714, -0.002349117072299123, 0.010762739926576614, -0.005029755644500256, 0.00625538220629096, -0.00011563498992472887, -0.023266807198524475, -0.021913928911089897, -0.01956983655691147, -0.007380547001957893, 0.0017731395782902837, -0.004778603091835976, -0.004065328743308783, -0.029790084809064865, -0.0028815611731261015, -0.020346734672784805, 0.017788324505090714, 0.016395263373851776, -0.010293921455740929, 0.005063242744654417, 0.008304789662361145, -0.0018267189152538776, 0.0015755660133436322, -0.03477295860648155, -0.010521633550524712, -0.0012448813067749143, -0.03702329099178314, -0.00424280995503068, 0.002389301545917988, 0.03841635212302208, -0.011559732258319855, 0.002983696758747101, -0.022878356277942657, -0.02186034992337227, 0.01465393602848053, 0.008847280405461788, -0.0030088119674474, 0.00528760626912117, 0.01122486125677824, 0.00212140497751534, 0.016140760853886604, -0.015390651300549507, -0.006710805930197239, 0.009168756194412708, 0.010059511289000511, -0.006627088412642479, -0.02342754416167736, -3.852319423458539e-06, 0.008144051767885685, -0.015872864052653313, -0.0006149060791358352, 0.023842783644795418, -0.01691766083240509, -0.008572686463594437, -0.0050933812744915485, 0.00848561991006136, 0.0027978436555713415, -0.02117721363902092, -0.0036534378305077553, 0.00609799288213253, -0.006536673288792372, 0.006871543824672699, 0.030004402622580528, 0.040505941957235336, 0.024619683623313904, -0.04072026163339615, -0.013548863120377064, -0.016703343018889427, 0.02346772886812687, 0.00945674441754818, -0.013769877143204212, 0.027124514803290367, -0.0006793686770834029, -0.00800340622663498, 0.014359249733388424, 0.00415909243747592, -0.011204768903553486, 0.020038655027747154, -0.006647180765867233, -0.006057808641344309, -0.0004370060923974961, 0.000325452332617715, 0.016381867229938507, -0.003643391653895378, -0.022945331409573555, 0.03153141215443611, 0.018699172884225845, -0.006305612623691559, -0.001598169794306159, 0.011459270492196083, 0.020962897688150406, -0.012001761235296726, 0.02377581037580967, 0.0005491877091117203, -0.00561577919870615, -0.014211907051503658, -0.003884498495608568, -0.016837291419506073, 0.030674142763018608, 0.004825484938919544, 0.009208940900862217, -0.03613923117518425, -0.014895042404532433, -0.012986280024051666, 0.01305325422435999, 0.008130657486617565, 0.030191930010914803, 0.0019757363479584455, 0.012591132894158363, 0.008726727217435837, 0.01316711027175188, -0.017855297774076462, -0.009322796948254108, -0.007233204320073128, 0.014707515016198158, -0.0010791204404085875, -0.021605849266052246, -0.0042997379787266254, -0.04165789857506752, -0.009416560642421246, -0.01916799135506153, 0.01659618504345417, -0.018752751871943474, -0.017761534079909325, 0.015578178688883781, -0.023829389363527298, 0.023333780467510223, -0.013542165979743004, -0.0036232995335012674, 0.017158767208456993, 0.007527890149503946, -0.022369353100657463, 0.01723913662135601, -0.0008941044216044247, -0.0007166230352595448, 0.017118582502007484, -0.014881648123264313, 0.005592338275164366, 0.0022486557718366385, -0.032736945897340775, -0.03447827324271202, 0.0016391914105042815, 0.013595744967460632, 0.01418511662632227, 0.014439619146287441, 0.017198951914906502, 0.001693607890047133, 0.023521307855844498, 0.019114412367343903, 0.0032633135560899973, 0.013575652614235878, 0.01823035441339016, -0.010307315737009048, -0.003660135203972459, 0.006884938571602106, -0.000525746785569936, 0.014948622323572636, 0.0016676554223522544, 0.006051111035048962, -0.002223540563136339, 0.004440383519977331, 0.0065132323652505875, 0.015725521370768547, 0.00424615852534771, -0.013609139248728752, 0.0126848965883255, 0.0060946443118155, 0.009182150475680828, 0.004956084303557873, 0.012283052317798138, -0.007434126455336809, -0.004634608514606953, -0.012966188602149487, 0.0034073079004883766, -0.024311602115631104, 0.01922157034277916, -0.0003382192808203399, -0.00042277408647350967, -0.018391091376543045, -0.005552154034376144, 0.0067576877772808075, 0.008740121498703957, 0.013917220756411552, -0.003964867442846298, -0.0035261870361864567, 0.003710365854203701, 0.0005768145201727748, 0.015805890783667564, -0.013917220756411552, -0.02346772886812687, 0.017373085021972656, 0.0010950267314910889, -0.002360837534070015, 0.005588989704847336, 0.02216843143105507, 0.009838497266173363, 0.004939340986311436, -0.005478482227772474, 0.007635049056261778, 0.008063683286309242, -0.011419085785746574, 0.013100136071443558, 0.015578178688883781, -0.0006412771181203425, -0.009530416689813137, -0.01170037779957056, 0.0019271800993010402, 0.007273388560861349, 0.025972560048103333, 0.009262519888579845, 0.0023373966105282307, 0.011151189915835857, -0.021043267101049423, 0.0064462581649422646, -0.0028782126028090715, 0.016073787584900856, -0.010059511289000511, 0.022543486207723618, -0.00232400163076818, 0.018739357590675354, 0.01600681245326996, -0.003171224147081375, 0.011646797880530357, 0.00537132378667593, 0.0010941895889118314, -0.0011285138316452503, -0.0005140263237990439, -0.0052574677392840385, 0.015591573901474476, 0.002647151704877615, 0.032736945897340775, 0.02243632823228836, 0.00913526862859726, -0.0028899330645799637, 0.008023498579859734, 0.0008522456046193838, -0.0015814262442290783, 0.007601561956107616, -0.00593055784702301, 0.0005328627885319293, -0.012155801057815552, 0.00439685070887208, 0.00634244829416275, -0.02152547985315323, 0.00912187434732914, -0.024820605292916298, -0.0023842784576117992, -0.019435888156294823, 0.024271419271826744, 0.013662719167768955, -0.013381428085267544, 0.011787443421781063, 0.02545016258955002, 0.017399873584508896, 0.032415471971035004, -0.006084598135203123, -0.002431160304695368, 0.009590692818164825, -0.013823457062244415, -0.012946096248924732, -0.004581029526889324, -0.0035931612364947796, 0.011727167293429375, 0.004035190213471651, 0.007193019613623619, 0.006938518024981022, -0.00864635780453682, 0.02707093581557274, -0.031692150980234146, -0.025557320564985275, -0.022021088749170303, 0.010226947255432606, -0.0001751791569404304, 0.007172927260398865, 0.004102164413779974, -0.0023842784576117992, -0.01449319813400507, 0.0002630826784297824, 0.00480204401537776, 0.00585353747010231, -0.013401519507169724, -0.011238256469368935, -0.0016977937193587422, 0.0016149133443832397, 0.005558851175010204, -0.01316041313111782, 0.0034893513657152653, 0.01761419139802456, -0.005726286675781012, -0.0404791533946991, -0.0008941044216044247, 0.032415471971035004, -0.03613923117518425, -0.029790084809064865, 0.011921391822397709, 0.023896362632513046, -0.017855297774076462, -0.001133536803536117, 0.00026978011010214686, 0.019261755049228668, 0.006526627112179995, -0.02538318932056427, -0.03670181334018707, 0.001573054469190538, 0.011579823680222034, -0.013615837320685387, 0.007280086167156696, 0.011104308068752289, 0.013602442108094692, 0.015363861806690693, 0.03295126184821129, 0.004899156279861927, -0.013783272355794907, 0.0097782202064991, 0.006610345095396042, 0.0028681664261966944, -0.01918138563632965, 0.0016676554223522544, 0.0256778746843338, 0.014064563438296318, 0.016127366572618484, -0.014747699722647667, -0.0032298266887664795, -0.006911728531122208, 0.008264605887234211, -0.018042825162410736, -0.0007697836845181882, -0.014131537638604641, 0.005388067569583654, -0.010950267314910889, 0.03027229942381382, -0.013823457062244415, -0.001070748665370047, -0.022945331409573555, -0.0065065352246165276, -0.013702903874218464, -0.0011368856066837907, 0.008679845370352268, -0.01663636974990368, 0.0013637603260576725, -0.01622113026678562, 0.011157887056469917, -0.0028949559200555086, 0.030727723613381386, -0.01332784816622734, -0.006164967082440853, -0.006945215631276369, 0.02242293208837509, 0.0027911460492759943, -0.026602117344737053, 0.01761419139802456, -0.018444670364260674, -0.0018786238506436348, -0.005304349586367607, -0.01058860681951046, 0.007521193008869886, -0.014854858629405499, -0.004139000084251165, -0.014238696545362473, -0.016355078667402267, 0.01721234619617462, 0.005357929039746523, 0.012631317600607872, -0.007280086167156696, -0.014854858629405499, 0.009865286760032177, -0.0013562258100137115, -0.01919477991759777, 0.00863966066390276, 0.020252970978617668, 0.0049292948096990585, -0.018391091376543045, -0.02085573785007, -0.013984194956719875, 0.005083335097879171, 0.03718402609229088, 0.0021917277481406927, 0.027861230075359344, -0.054249029606580734, -0.006278823129832745, -0.033058423548936844, 0.009999235160648823, -0.003696971107274294, -0.002303909510374069, 0.02475363202393055, -0.003224803600460291, -0.02013241872191429, 0.013341243378818035, 0.011961576528847218, 0.010682371445000172, 0.0006617879262194037, -0.005304349586367607, 0.007360455114394426, 0.005863583646714687, 0.018056221306324005, -0.0005701171467080712, 0.0006709969020448625, -0.019449282437562943, -0.020922712981700897, 0.013147017918527126, 0.016810502856969833, 0.008016801439225674, -0.005106776021420956, 0.0006362540880218148, -0.011003846302628517, -0.010327408090233803, 0.011486059986054897, -0.014586961828172207, 0.0006149060791358352, 0.005602384451776743, 0.024941159412264824, 0.010139880701899529, -0.005314395762979984, -0.003228152170777321, -0.004651352297514677, -0.03279052674770355, -0.018605409190058708, -0.0045642857439816, 0.020976291969418526, 0.0021900534629821777, 0.0031812703236937523, -0.006355843506753445, 0.01171377208083868, -0.028798868879675865, 0.009048203006386757, -0.009865286760032177, -0.017024818807840347, -0.004879063926637173, -0.008987925946712494, 0.01481467392295599, 0.0015680313808843493, 0.0021481947042047977, -0.00264212884940207, -0.019717179238796234, 0.008787003345787525, -0.0005366301047615707, 3.484746775939129e-05, 0.01561836339533329, 0.008358369581401348, -0.0057932608760893345, 0.004219369031488895, 0.0004315644328016788, -0.002303909510374069, 0.009034807793796062, 0.007668535690754652, 0.00794982723891735, -0.0003233593888580799, 0.011907997541129589, -0.013354637660086155, -0.01139229629188776, -0.011325322091579437, -0.028745289891958237, -0.00496613048017025, -0.022891752421855927, -0.03319237008690834, -0.003417354077100754, -0.012571040540933609, 0.006992097478359938, -0.000438680435763672, -0.014453013427555561, -0.02053426206111908, 0.011954879388213158, 0.015082569792866707, -0.005515318363904953, 0.006573508959263563, -0.01466733030974865, -0.018444670364260674, -0.01072925329208374, 0.01305325422435999, 0.003720412030816078, -0.005254119168967009, -0.028906026855111122, -0.0008246187353506684, 0.0020561052951961756, 0.01687747612595558, -0.006777780130505562, 0.018605409190058708, 0.0014675701968371868, -0.0029619301203638315, -0.007594864349812269, -0.013970799744129181, -0.010340803302824497, -0.010715858079493046, -0.011204768903553486, 0.007735509891062975, -0.02665569633245468, 0.005907116923481226, -0.025142081081867218, 0.016194339841604233, 0.0010925151873379946, 0.008626265451312065, 0.014305670745670795, 0.014573566615581512, 0.003871103748679161, -0.004581029526889324, -0.008853977546095848, 0.015524599701166153, 0.04733730107545853, 0.003901242045685649, -0.014265486039221287, -0.003276708535850048, 0.007393942214548588, 0.009249124675989151, 0.009249124675989151, -0.0003926357312593609, -0.0034893513657152653, -0.018016036599874496, 0.021284373477101326, 0.002345768269151449, -0.022047877311706543, -0.008425343781709671, 0.01107082050293684, -0.0066773188300430775, -0.0004897481994703412, -0.013609139248728752, -0.025249240919947624, 0.031692150980234146, 0.008271303027868271, -0.0026505005080252886, 0.008706634864211082, 0.003844314021989703, 0.0004411919799167663, -0.02022618241608143, 0.01655600033700466, -0.0017379781929776073, -0.0033219160977751017, -0.020266367122530937, -0.016448842361569405, 0.010213552042841911, -0.009309401735663414, 0.03863066807389259, 0.007789089344441891, 0.01009299885481596, -0.007809181697666645, 0.02089592255651951, 0.0008798724156804383, 0.015404045581817627, -0.014118143357336521, 0.0017346295062452555, 0.01658279076218605, -0.011512850411236286, -0.008391856215894222, 0.002982022473588586, -0.013823457062244415, 0.0023976732045412064, -0.012591132894158363, -0.021391531452536583, -9.397305257152766e-05, 0.014881648123264313, 0.0014114794321358204, 0.012972885742783546, 0.007487705908715725, 0.007239901460707188, 0.0032130831386893988, 0.0018853212241083384, 0.0012909260112792253, 0.007085861172527075, 0.026602117344737053, -0.010936873033642769, -0.020989686250686646, 0.01514954399317503, -0.015069175511598587, 0.01662297546863556, -0.014077958650887012, 0.018391091376543045, -0.0004428663232829422, -0.0003488932561594993, 0.010809621773660183, -0.0025718058459460735, -0.005163704045116901, 0.0052574677392840385, 0.013568955473601818, -0.011111005209386349, -0.03479974716901779, -0.019020648673176765, 0.025918981060385704, 0.02799517847597599, 0.0002121195720974356, 0.007695325650274754], "2407ed10-0410-4965-996e-0daf93ba18a9": [-0.00401461124420166, 0.022421790286898613, -0.015533167868852615, 0.0004976054187864065, -0.04064137116074562, -0.00661472836509347, -0.007237555924803019, 0.018789879977703094, 0.007023693528026342, 0.03956080228090286, 0.01428000908344984, 0.004840045236051083, 0.011968794278800488, 0.006393361836671829, 0.0026488930452615023, 0.00637460220605135, 0.01187124289572239, 0.03923062980175018, 0.007395138964056969, -0.035898879170417786, 0.045053690671920776, -0.03241704776883125, -0.028830161318182945, -0.005575431976467371, -0.018279612064361572, -0.012764211744070053, -0.026518944650888443, 0.002005429472774267, -0.05204736813902855, -0.021221159026026726, 0.0008971905335783958, 0.007856631651520729, -0.0010589943267405033, 0.03661925718188286, -0.006896126549690962, -0.02233174256980419, -0.006888622418045998, 0.013522110879421234, -0.017169028520584106, -0.014565159566700459, -0.0219565462321043, -0.0016752559458836913, -0.007500194013118744, -0.012614132836461067, -0.020095568150281906, 0.019375188276171684, 0.0022399278823286295, -0.012186408042907715, 0.002917159115895629, 0.001542998943477869, 0.004164690151810646, 0.018864920362830162, -0.006753551308065653, 0.006220771465450525, 0.024657966569066048, -0.015210498124361038, 0.029070286080241203, 0.0710773766040802, -0.027194300666451454, -0.03619903698563576, -0.0012672288576141, -0.04253236576914787, -0.002759576076641679, 0.01335702370852232, 0.008794624358415604, -0.01809951849281788, -0.01375473290681839, 0.014850309118628502, 0.007635265123099089, 0.028064757585525513, -0.005714254919439554, -0.012238935567438602, -0.04895574226975441, 0.05075668916106224, 0.0024706742260605097, -0.01476026140153408, 0.010468004271388054, 0.008074246346950531, 0.02554343268275261, 0.001130281831137836, -0.01212637685239315, 0.003913308028131723, -0.014017371460795403, 0.03076617792248726, 0.0248830858618021, 0.020305678248405457, -0.005001380108296871, -0.052287496626377106, -0.04991624876856804, -0.02684911899268627, -0.02198656275868416, -3.816459866357036e-05, -0.009725114330649376, -0.005012636072933674, 0.0309462733566761, -0.026023684069514275, 0.009665082208812237, 0.00806674174964428, 0.025513416156172752, -0.0012662908993661404, 0.008186805061995983, 0.020890986546874046, -0.017409155145287514, -0.0053953370079398155, -0.004982620012015104, -0.021251175552606583, 0.013927323743700981, 0.007530209608376026, -0.011323454789817333, -0.02851499430835247, 0.015518160536885262, -0.03316744044423103, 0.02825986035168171, 0.024597935378551483, -0.030826210975646973, -0.010985776782035828, -0.03181673213839531, -0.011315950192511082, -0.0032173169311136007, -0.010648099705576897, 0.00452487962320447, -0.04136174917221069, 0.04034121334552765, -0.015458128415048122, -0.01204383373260498, 0.007068716920912266, -0.019495252519845963, 0.004502367693930864, 0.03478829190135002, 0.018459707498550415, 0.011743675917387009, -0.003433055244386196, 0.02537834458053112, -0.01093324925750494, 0.01247906219214201, 0.03550867363810539, 0.007440162356942892, 0.055379122495651245, -0.022601885721087456, 0.020410733297467232, -0.05480882152915001, -0.00401461124420166, -0.03977091237902641, 0.023232216015458107, 0.010625587776303291, -0.006821087095886469, -0.01919509470462799, 0.06243282929062843, -0.04829539731144905, 0.047605033963918686, -0.030075816437602043, 0.010190358385443687, -0.02880014479160309, 0.010107815265655518, 0.06327327340841293, -0.030405988916754723, -0.021386245265603065, 0.022316735237836838, 0.027704568579792976, 0.03097628988325596, 0.023937588557600975, -0.05333804711699486, -0.028319891542196274, 0.0037744848523288965, 0.028545010834932327, 0.020560812205076218, 0.0585307776927948, 0.008847152814269066, -0.031756699085235596, 0.0073538669385015965, 0.004022114910185337, 0.03172668442130089, 0.028650065883994102, 0.004070890601724386, 0.012846755795180798, -0.03854026645421982, 0.010167846456170082, -0.020936008542776108, 0.03604895621538162, -0.02404264360666275, -0.023907572031021118, -0.002155508380383253, 0.028965231031179428, -0.02746444195508957, -0.015458128415048122, 0.01212637685239315, -0.01863980107009411, -0.003883291967213154, 0.00025865164934657514, 0.011225903406739235, -0.008554498665034771, -0.021896515041589737, 0.011886250227689743, 0.00040286811417900026, -0.007526457775384188, -0.023547383025288582, -0.020080558955669403, -0.008089253678917885, -0.008914687670767307, 0.00524525810033083, 0.004149682354182005, -0.035808831453323364, 0.014017371460795403, 0.03060109168291092, -0.0275995135307312, 0.03935069218277931, 0.00047415558947250247, -0.0418119877576828, 0.015773294493556023, 0.005320297554135323, 0.07029696553945541, -0.01442258432507515, 0.021176135167479515, -0.0016949537675827742, -0.018714841455221176, 0.006847350858151913, -0.017048966139554977, 0.030210886150598526, -0.004382304381579161, -0.028424948453903198, 0.028244853019714355, 0.01164612453430891, -0.01638861745595932, -0.020770922303199768, -0.025408361107110977, 0.00458866311237216, -0.02333727292716503, 0.012674164958298206, -0.005331553518772125, -0.034728262573480606, 0.004382304381579161, -0.01423498522490263, 0.01764928176999092, 0.011961289681494236, 0.008419427089393139, -0.009642570279538631, 0.033677708357572556, -0.024357808753848076, -0.03295733034610748, -0.02282700315117836, -0.021011048927903175, 0.04088149964809418, -0.040581341832876205, 0.003254836658015847, -0.02743442729115486, 0.03745969757437706, 0.0043860566802322865, 0.00894470326602459, 0.028274867683649063, 0.03226696699857712, -0.015818318352103233, 0.016538696363568306, -0.031096352264285088, 0.006044428329914808, 0.013049362227320671, 0.02198656275868416, 0.04937596619129181, -0.029340429231524467, 0.0035399864427745342, -0.011323454789817333, 0.0019472739659249783, -0.012674164958298206, -0.03541862592101097, -0.011878746561706066, 0.02336728759109974, -0.018624793738126755, 0.02240678295493126, -0.009515003301203251, -0.0037125772796571255, 0.03830014169216156, -0.004145930055528879, -0.04607423022389412, -0.009507499635219574, 0.04202209785580635, 0.01088822539895773, 0.018129533156752586, 0.005177722778171301, 0.024147698655724525, 0.006809831131249666, 0.01881989650428295, -0.020470764487981796, -0.004479855764657259, -0.005185226909816265, 0.03727960214018822, -0.02137123793363571, 0.026353858411312103, 0.0020410732831805944, 0.010513028129935265, 0.010670611634850502, 0.023487351834774017, 0.010700627230107784, -0.02420772984623909, 0.02537834458053112, 0.008441939018666744, 0.021506309509277344, 0.015172978863120079, -0.014872821047902107, 0.003564374288544059, 0.02420772984623909, 0.0037088252138346434, -0.026158755645155907, 0.028109781444072723, -0.015863342210650444, -0.015908366069197655, 0.012914290651679039, -0.019120054319500923, -0.0033148680813610554, 0.03433805704116821, -0.04865558445453644, 0.028154805302619934, 0.03508845344185829, 0.008366899564862251, -0.013784748502075672, -0.012494070455431938, -0.0055379122495651245, 0.0015270530711859465, -0.020875977352261543, -0.02797470986843109, -0.0009023495367728174, -0.02015559934079647, -0.023802516981959343, -0.007642768789082766, -0.061022087931632996, 0.012674164958298206, 0.03839018940925598, 0.0011781195644289255, 0.0355386883020401, 0.007436410523951054, -0.025573447346687317, 0.0015045411419123411, -0.04574405401945114, -0.0052977860905230045, 0.0038345165085047483, 0.00556042417883873, -0.03286728262901306, -0.0017681173048913479, -0.022391775622963905, -0.012726692482829094, 0.01906002312898636, -0.03691941499710083, -0.005357817281037569, -0.002048577181994915, 0.047635048627853394, -0.012584117241203785, -0.02432779222726822, -0.02081594616174698, 0.0024125187192112207, 0.020395725965499878, -0.02952052280306816, -0.0326271578669548, 0.000926737324334681, -0.008974719792604446, 0.02600867673754692, 0.0007714994717389345, 0.053998395800590515, -0.038360171020030975, -0.040491294115781784, 0.0019529019482433796, 0.009492491371929646, -0.014782773330807686, -0.01823458820581436, -0.060391757637262344, 0.014670214615762234, -0.01327448058873415, -0.005710503086447716, 0.02976064942777157, 0.020635850727558136, -0.015202994458377361, -0.015818318352103233, -0.012103864923119545, -0.03445811942219734, 0.013311999849975109, 0.0053728255443274975, -0.05129697546362877, -0.010437988676130772, -0.040281184017658234, 0.013349520042538643, -0.013792253099381924, -0.004183449782431126, 0.019720369949936867, 0.009424956515431404, 0.014257497154176235, -0.027959702536463737, -0.023097146302461624, 0.007282579783350229, -0.018414683640003204, 0.021296199411153793, -0.024357808753848076, -0.012899283319711685, -0.012696676887571812, -0.004145930055528879, 0.013034353964030743, -0.023112153634428978, 0.00409715436398983, 0.02645891346037388, -0.014685221947729588, 0.027449434623122215, -0.01978040114045143, 0.00338615570217371, -0.03571878373622894, 0.006003156770020723, 0.01226895209401846, -0.0010880721965804696, 0.010528036393225193, -0.009087278507649899, -0.04967612400650978, 0.008081750012934208, -0.0024875581730157137, -0.00842693168669939, 0.010415476746857166, 0.049435995519161224, -0.005125195253640413, 0.0011152740335091949, 0.013694701716303825, 0.04118165746331215, 0.03238702937960625, -0.0163135789334774, 0.04481356590986252, 0.0007644644938409328, 0.017949439585208893, -0.0038495243061333895, 0.02177645079791546, -0.0007391386898234487, 0.028530003502964973, -0.0020467012654989958, -0.002553217578679323, 0.0033355040941387415, 0.0282148364931345, 0.01957029104232788, -0.03406791388988495, 0.005582935642451048, 0.060811977833509445, -0.010880721732974052, -0.022796988487243652, -0.004656198434531689, 0.0017118377145379782, 0.014099914580583572, -0.0137997567653656, -0.00021538669534493238, 0.017048966139554977, 0.00819430872797966, 0.0041346740908920765, -0.005755526479333639, -0.008516978472471237, -0.016943909227848053, -0.004130922257900238, -0.049225885421037674, -0.026023684069514275, 0.025408361107110977, -0.011135855689644814, -0.008667057380080223, -0.02057581953704357, -0.062192704528570175, -0.036229051649570465, 0.01580331102013588, -0.017919423058629036, 0.01739414595067501, -0.02825986035168171, 0.02872510626912117, -0.04163189232349396, -0.019720369949936867, 0.03340756893157959, 0.05201735347509384, -0.002416270552203059, 0.0322069376707077, -0.004851301200687885, -0.018084509298205376, -0.004997628275305033, -0.003821384394541383, 0.0040371231734752655, -0.007290083449333906, 0.001421059831045568, -0.0055791838094592094, 0.04529381915926933, 0.0025588455609977245, -0.0011790575226768851, -0.023967603221535683, -0.008622033521533012, -0.016688775271177292, 0.0010055287275463343, -0.003917059861123562, 0.020395725965499878, -0.020260654389858246, 0.0013554001925513148, 0.025948645547032356, 0.01049802079796791, -0.028169812634587288, -0.04352288693189621, -0.006423377897590399, 0.027104252949357033, 0.028199829161167145, 0.025933638215065002, -0.05258765444159508, 0.01613348349928856, 0.01592337340116501, -0.02537834458053112, -0.014812789857387543, -0.03673931956291199, -0.010250390507280827, -0.006862358655780554, 0.03214690461754799, -0.02783964015543461, 0.047094766050577164, 0.01760425791144371, -0.022346751764416695, 0.013529614545404911, 0.024868076667189598, 0.037939950823783875, 0.009590042755007744, -0.003902051830664277, -0.016358602792024612, 0.02006555162370205, -0.04679460823535919, 0.031156383454799652, 0.002703296486288309, 0.0055379122495651245, 0.017664289101958275, -0.01145852543413639, 0.038150060921907425, 0.007781592197716236, -0.024432849138975143, 0.00236749486066401, -0.028499986976385117, -0.028034742921590805, -0.02174643613398075, 0.01220891997218132, -0.0059768930077552795, -0.02446286380290985, 0.014790277928113937, -0.027494458481669426, -0.01097827311605215, 0.001474525430239737, -0.038900457322597504, 0.007102484814822674, 0.01040797308087349, 0.005241506267338991, 0.011263422667980194, 0.018384667113423347, 0.01133095845580101, 0.005046403501182795, 0.0005252762348391116, 0.05576932802796364, 0.02671404741704464, 0.00529028195887804, -0.010880721732974052, 0.023637430742383003, 0.008914687670767307, 0.011788698844611645, -0.042502351105213165, 0.020500781014561653, 0.010903233662247658, 0.017484193667769432, -0.038360171020030975, -0.012066345661878586, -0.022796988487243652, -0.04343283921480179, -0.0035775061696767807, 0.004453592002391815, 0.005507896188646555, -0.020245647057890892, -0.006618480198085308, 0.012118873186409473, 0.011263422667980194, 0.03896048665046692, -0.0018431567586958408, -0.020921001210808754, -0.030616099014878273, 0.04826538264751434, -0.0078416233882308, 0.010595572181046009, 0.04967612400650978, -0.04424326494336128, 0.04385305941104889, 0.0282148364931345, 0.0038757880683988333, 0.04445337504148483, 0.008839648216962814, -0.02144627831876278, -0.044753532856702805, -0.013844780623912811, 0.017259076237678528, -0.0033036123495548964, 0.006036924663931131, -0.015135458670556545, 0.021416261792182922, 0.00957503542304039, 0.004978868179023266, -0.010520532727241516, -0.023892564699053764, 0.017529217526316643, 0.010730642825365067, 0.047514986246824265, -0.011030800640583038, 0.012711684219539165, -0.02207660861313343, 0.026744063943624496, 0.034848324954509735, -0.008697072975337505, 0.008839648216962814, -0.009755129925906658, 0.04862556979060173, 0.02165638841688633, 0.004945100285112858, -0.0029790664557367563, -0.027854647487401962, -0.0023862547241151333, 0.03238702937960625, 0.040791451930999756, -0.03436807170510292, 0.017739327624440193, 0.02910030260682106, -0.013214449398219585, 0.03205685690045357, -0.020665867254137993, -0.0011058941017836332, -0.007657777052372694, 0.026188772171735764, 0.04826538264751434, 0.006213267333805561, 0.02179145999252796, 0.013574638403952122, -0.01689888723194599, 0.0480852872133255, -0.01151855755597353, 0.02746444195508957, 0.008577010594308376, -0.017874399200081825, -0.009169821627438068, 0.020500781014561653, -0.003571878420189023, -0.017154021188616753, -0.026278819888830185, -0.03799998387694359, -0.03298734501004219, -0.009057262912392616, -0.048475492745637894, -0.005267770029604435, 0.017949439585208893, 0.02834990806877613, -0.04193205013871193, 0.0246729739010334, 0.0028364916797727346, 0.03502842038869858, 0.016043435782194138, -0.009672586806118488, 0.02910030260682106, -0.007665280718356371, 0.0005435670609585941, 0.017739327624440193, 0.0089897271245718, -0.007871638983488083, 0.0024781781248748302, 0.007567729335278273, 0.003352387808263302, -0.003631909843534231, -0.03854026645421982, -0.01428000908344984, 0.005567927844822407, 0.04829539731144905, -0.00846445094794035, -0.0036412898916751146, -0.017364131286740303, 0.011083328165113926, -0.02605370059609413, 0.029160333797335625, -0.0012362750712782145, 0.008802128955721855, 0.007894150912761688, -0.012186408042907715, 0.011105840094387531, -0.014782773330807686, -0.04178197309374809, 0.02236175909638405, -0.020350702106952667, 0.005391585174947977, -0.022301727905869484, 0.016358602792024612, -0.010085303336381912, -0.013784748502075672, -0.03328750282526016, -0.030721155926585197, -0.05892098322510719, -0.013372031971812248, 0.016208523884415627, -0.021686403080821037, -0.009477484039962292, -0.019720369949936867, 0.009942728094756603, -0.024973131716251373, 0.02432779222726822, -0.01671879179775715, 0.026488929986953735, 0.012021321803331375, 0.015578191727399826, 0.02065085992217064, -0.005181474611163139, 0.012501574121415615, -0.042652428150177, 0.015593199990689754, -0.02174643613398075, -0.0077515761367976665, -0.002883391221985221, 0.014745254069566727, -0.03439809009432793, 0.040821466594934464, 0.030796194449067116, -0.018009470775723457, 0.0027314363978803158, 0.021566340699791908, 0.012516582384705544, 0.005590439774096012, -0.01442258432507515, 0.010070296004414558, 0.015278033912181854, 0.006025668699294329, 0.012066345661878586, -0.019825424998998642, 0.013642174191772938, -0.020245647057890892, 0.021971553564071655, 0.005143954884260893, 0.0069824219681322575, -0.025828581303358078, 0.0011162119917571545, -0.010925745591521263, 0.004487359896302223, -0.005312793888151646, -0.026368865743279457, 0.017259076237678528, 0.006866110488772392, 0.029955752193927765, 0.014752757735550404, 0.018219580873847008, 0.011916265822947025, 0.00042256596498191357, -0.016568712890148163, 0.010753154754638672, 0.0025888613890856504, 0.02612873911857605, -0.0008427869179286063, 0.013311999849975109, -0.019285140559077263, 0.006584712769836187, -0.03307739272713661, 0.024387825280427933, -0.00395082775503397, 0.03818007558584213, 0.00832187570631504, -0.00473498972132802, -0.0038645321037620306, 0.04925590008497238, -0.02479303814470768, 0.061352264136075974, 0.02872510626912117, -0.006663504056632519, -0.00771405640989542, 0.027959702536463737, 0.0001593416091054678, 0.009357420727610588, 0.024267761036753654, -0.0022099120542407036, 0.015653232112526894, -0.01354462280869484, 0.004322272725403309, 0.010940752923488617, 0.03319745883345604, 0.012576613575220108, 0.003750097006559372, 0.01743916980922222, 0.03403789922595024, 0.0501863919198513, 0.03682936728000641, -0.027524473145604134, 0.0388704389333725, -0.019705362617969513, -0.04628434032201767, 0.019090037792921066, 0.029130319133400917, -0.004472351633012295, -0.016493672505021095, -0.01608845964074135, -0.018069501966238022, -0.005860581994056702, 0.009372428990900517, 0.011473533697426319, -0.02546839229762554, 0.05567928031086922, 0.002949050860479474, -0.02144627831876278, 0.015458128415048122, 0.020890986546874046, -0.013904811814427376, -0.029535531997680664, 0.03127644583582878, 0.029625579714775085, -0.02621878683567047, -0.017454179003834724, 0.015698255971074104, -0.010077799670398235, 0.0035606224555522203, 0.0509968176484108, -0.03148655593395233, 0.04823536425828934, 0.03376775607466698, 0.004689966328442097, 0.010715634562075138, 0.006727287545800209, -0.02437281608581543, -0.019045015797019005, 0.0037144531961530447, 0.02044074982404709, -0.006468401290476322, -0.017154021188616753, 0.03896048665046692, -0.011195887811481953, 0.0011715536238625646, -0.019495252519845963, -0.023427318781614304, 0.04418323561549187, 0.01978040114045143, 0.012419031001627445, -0.00040357158286496997, 0.02099604159593582, 0.03106633573770523, 0.01906002312898636, -0.006494665052741766, 0.03715953975915909, 0.006892374251037836, -0.009695097804069519, -0.010002760216593742, -0.012944307178258896, -0.023097146302461624, -0.01256160531193018, -0.0012381511041894555, -0.018999991938471794, 0.02329224906861782, 0.016703784465789795, 0.008119269274175167, -0.007680288981646299, 0.0334375835955143, -0.014602678827941418, -0.04946601390838623, -0.018369659781455994, -0.024192722514271736, -0.012929298914968967, 3.095377905992791e-05, -0.002838367596268654, -0.004419824108481407, 0.010903233662247658, 0.044513408094644547, 0.027944695204496384, 0.008314372040331364, -0.013176929205656052, 0.03001578338444233, -0.04778512939810753, 0.019045015797019005, 0.0219565462321043, 0.010377957485616207, -0.037699826061725616, 0.030195878818631172, 0.04667454585433006, -0.004018363077193499, -0.027329372242093086, -0.0028346155304461718, -0.008456947281956673, 0.011008288711309433, 0.011563580483198166, 0.007226299960166216, 0.007406394928693771, -0.002476302208378911, 0.01868482492864132, -0.01931515708565712, -0.010152839124202728, -0.0069298939779400826, -0.013304496183991432, -0.02491310052573681, -0.0017146517056971788, 0.02212163247168064, -0.0367993526160717, 0.007275075651705265, -0.0025888613890856504, 0.014122426509857178, 0.0035531185567378998, -0.0037088252138346434, 0.002022313419729471, 0.004768757615238428, 0.0014473235933110118, -0.018624793738126755, 0.005234002135694027, 0.0013244465226307511, -0.0028796393889933825, -0.0021179886534810066, -0.017529217526316643, -0.031216414645314217, -0.02341231144964695, 0.018789879977703094, 0.004900076892226934, -0.013919820077717304, -0.008899680338799953, 0.033047378063201904, 0.012681668624281883, -0.013784748502075672, -0.04949602857232094, -0.039620835334062576, 0.027074236422777176, -0.0405513234436512, -0.0004915084573440254, -0.01601342111825943, 0.015045411884784698, 0.0013516482431441545, 0.0018778624944388866, -0.0007578985532745719, 0.00992772076278925, 0.0005914047360420227, 0.034968387335538864, -0.039620835334062576, 0.019750386476516724, -0.030195878818631172, -0.017829375341534615, -0.006592216435819864, 0.007207540329545736, 0.006228275131434202, 0.0451437383890152, -0.042922571301460266, 0.006866110488772392, 0.007924167439341545, -0.02416270598769188, -0.007263819687068462, -0.016073452308773994, 0.01709398813545704, -0.024642959237098694, -0.013867292553186417, -0.005534160416573286, -0.015060419216752052, -0.00832187570631504, 0.0042022098787128925, -0.044423360377550125, 0.0137997567653656, -0.023937588557600975, -0.007008685730397701, 0.03015085496008396, 0.016748808324337006, 0.029040271416306496, 0.0068060788325965405, -0.012996834702789783, -0.006663504056632519, -0.008014214225113392, 0.004416072275489569, -0.013026850298047066, 0.01685386337339878, -0.013927323743700981, 0.03214690461754799, -0.015668239444494247, -0.010340437293052673, 0.03027091734111309, -0.013296992518007755, -0.007736568339169025, 0.0033467598259449005, -0.0017699932213872671, -0.016448650509119034, -0.0179794542491436, -0.02566349506378174, 0.014400072395801544, 0.024492880329489708, 0.019285140559077263, 0.0028158556669950485, 0.02495812438428402, 0.02504817210137844, -0.017574241384863853, -0.03436807170510292, -0.0163135789334774, 0.0035324825439602137, -0.008164293132722378, 0.02633885107934475, 0.011428509838879108, -0.005789294373244047, -0.03998102620244026, -0.021626371890306473, -0.01722905971109867, -0.011293439194560051, 0.041541844606399536, -0.038780391216278076, -0.015788301825523376, -0.0322069376707077, -0.0026470168959349394, 8.060879190452397e-05, 0.013342016376554966, 0.009725114330649376, -0.01507542748004198, 0.012809235602617264, -0.0071475086733698845, -0.010655603371560574, 0.01910504698753357, -0.011308446526527405, 0.031456541270017624, -4.4965050619794056e-05, -0.024973131716251373, -0.042502351105213165, 0.0024537902791053057, -0.041031576693058014, -0.009192333556711674, 0.001990421675145626, -0.019135061651468277, 0.05213741585612297, 0.0032754724379628897, 0.012644149363040924, -0.0026657767593860626, -0.009567530825734138, 0.002658272860571742, 0.017259076237678528, -0.04004105553030968, -0.0023506111465394497, -0.012516582384705544, 0.004708725959062576, -0.0036731816362589598, 0.04685463756322861, 0.04235227033495903, 0.001928514102473855, -0.023547383025288582, 0.038270123302936554, 0.00024223675427492708, 0.014227481558918953, -0.02371246926486492, 0.002429402433335781, -0.02780962362885475, 0.008682065643370152, 0.034428104758262634, 0.014707733877003193, 0.017379138618707657, -0.023112153634428978, -0.018129533156752586, -0.00458866311237216, -0.008441939018666744, 0.002369371009990573, -0.013124401681125164, -0.00407839473336935, -0.009882696904242039, -0.06507422029972076, -0.021926529705524445, -0.014715238474309444, 0.002673280658200383, 0.010858209803700447, -0.016538696363568306, 0.030496036633849144, 0.012058841064572334, -0.029580555856227875, 0.03163663670420647, -0.00500513194128871, -0.03466822952032089, 0.03652920946478844, 0.017003942281007767, 0.008389411494135857, 0.005076419562101364, 0.005946877412497997, -0.007961686700582504, 0.013649677857756615, -0.02387755550444126, -0.014977876096963882, 0.00011279369209660217, 0.034638214856386185, -0.01830962859094143, -0.027734585106372833, 0.04997628182172775, 0.0010664983419701457, 0.012028825469315052, -0.03652920946478844, -0.015698255971074104, 0.010355445556342602, -0.012381510809063911, 0.008119269274175167, -0.008516978472471237, -0.0015439369017258286, 0.018159549683332443, 0.006959910038858652, -0.0006772311171516776, 0.029205357655882835, 0.003924563992768526, -0.0032435806933790445, 0.011668636463582516, 0.0025569696445018053, -0.026984190568327904, -0.013327008113265038, -0.0010008388198912144, 0.019014999270439148, -0.014527639374136925, 0.020215630531311035, 0.018204573541879654, 0.0008230890962295234, 0.02186649851500988, -0.004472351633012295, -0.016148492693901062, 0.005567927844822407, -0.00048541149590164423, -0.008441939018666744, 0.002519449917599559, 0.005815558135509491, 0.009732617996633053, 0.016988933086395264, 0.004461096134036779, 0.02366744540631771, -0.016403626650571823, -0.028229845687747, 0.008614529855549335, 0.0038345165085047483, 0.005901853553950787, 0.028454963117837906, -0.01608845964074135, 0.010565555654466152, -0.026353858411312103, 0.008997231721878052, 0.013206944800913334, -0.0001521894009783864, -0.008126773871481419, 0.03223695233464241, 0.008021717891097069, 0.013657181523740292, -0.01187124289572239, -0.02408766746520996, 0.005950629245489836, -0.0006603472284041345, 0.008081750012934208, -0.009890200570225716, -0.01530054584145546, -0.02303711511194706, -0.029670601710677147, -0.00938743632286787, 0.015360577963292599, 0.02053079567849636, 0.014752757735550404, 0.033467598259449005, 0.024012627080082893, -0.009499995969235897, 0.04424326494336128, -0.008839648216962814, -0.02219667285680771, 0.016028428450226784, 0.02692415751516819, -0.008997231721878052, -0.033347535878419876, -0.0015223630471155047, -0.013499598950147629, -0.01764928176999092, -0.001716527622193098, -0.0035775061696767807, 0.007939174771308899, -0.012321479618549347, -0.008104261942207813, 0.009102286770939827, 0.004629934672266245, -0.039200615137815475, 0.010430485010147095, -0.0013263224391266704, 0.021971553564071655, 0.00842693168669939, 0.0036769334692507982, -0.005203986540436745, 0.031666651368141174, 0.002187400357797742, 0.018999991938471794, -0.003427427262067795, -0.040161117911338806, -0.007132500875741243, -0.010377957485616207, -0.01877487264573574, 0.007342610973864794, -0.01459517516195774, 0.017244067043066025, -0.00961255468428135, 0.0064346338622272015, -0.017739327624440193, 0.0015542547916993499, -0.0017071476904675364, -0.006475905422121286, -0.007894150912761688, -0.022646909579634666, 0.012944307178258896, -0.02671404741704464, 0.02413269132375717, 0.007515201810747385, 0.0074964421801269054, -0.0001463269436499104, 0.004265993367880583, 0.02408766746520996, -0.03163663670420647, -0.009274877607822418, 0.010347941890358925, 0.004562399350106716, -0.024102674797177315, 0.00970260240137577, 0.03799998387694359, 0.032507095485925674, 0.009627562947571278, -0.003718205261975527, -0.010272902436554432, 0.008171796798706055, 0.017964446917176247, 0.02099604159593582, -0.019585298374295235, 0.02291705086827278, 0.0008043292327784002, -0.0081567894667387, -0.003114137565717101, -0.0038645321037620306, -0.005459120497107506, -0.013011842034757137, -0.03064611554145813, 0.002553217578679323, -0.012636644765734673, 0.00811176560819149, 0.009515003301203251, 0.017664289101958275, -0.019720369949936867, 0.010948257520794868, 0.019135061651468277, -0.008269348181784153, 0.002662024926394224, 0.0048813167959451675, -0.002260563662275672, 0.020395725965499878, -0.0149478605017066, -0.005549168214201927, 0.0032698444556444883, -0.003388031618669629, 0.010483012534677982, -0.002945298794656992, -0.00350621878169477, 0.036018941551446915, 0.010700627230107784, -0.01727408356964588, 0.0020673370454460382, 0.008794624358415604, -0.012531589716672897, -0.002842119662091136, 0.019090037792921066, 0.015022899955511093, -0.0002023720444412902, -0.01990046538412571, 0.009620058350265026, -0.015593199990689754, 0.013424559496343136, -0.012051337398588657, 0.007413898594677448, 0.00938743632286787, -0.00333925592713058, 0.03478829190135002, 0.020380716770887375, 0.004907580558210611, -0.020260654389858246, -0.016418633982539177, -0.006228275131434202, -0.002035445300862193, 0.004104658495634794, -0.0057442705146968365, -0.0038757880683988333, -0.008584514260292053, 0.01235149521380663, -0.016823846846818924, 0.004543639253824949, -0.01106081623584032, 0.023052122443914413, 0.0017005817499011755, 0.0017521714325994253, -0.0017062097322195768, 0.0294755008071661, -0.07978195697069168, 0.02446286380290985, -0.021221159026026726, 0.01176618691533804, -0.009672586806118488, 0.007440162356942892, -0.0009140744223259389, 0.0019069402478635311, -0.004235977306962013, 0.014722742140293121, -0.02011057548224926, 0.0001445682137273252, 0.0009764509741216898, -0.015255521982908249, -0.0282148364931345, -0.032086871564388275, 0.011398494243621826, 0.03950077295303345, 0.0018797385273501277, -0.010392964817583561, -0.0025907373055815697, 0.0047162300907075405, 0.030210886150598526, -0.011165871284902096, 0.011751179583370686, 0.0011612356174737215, 0.0015523788752034307, -0.013732220977544785, -0.02020062319934368, 0.033137425780296326, -0.012058841064572334, 0.014955364167690277, 0.014219977892935276, -0.0034161715302616358, 0.029835689812898636, 0.018759865313768387, -0.029175342991948128, 0.02968561090528965, -0.001791567075997591, 0.0028983992524445057, 0.01826460473239422, 0.01999051310122013, -0.021386245265603065, -0.0008057362283580005, -0.018369659781455994, -0.014790277928113937, -0.012028825469315052, -0.005597943905740976, -0.004446087870746851, 0.011195887811481953, -0.027029214426875114, 0.014302521012723446, 0.04649445042014122, -0.012719188816845417, 0.010798178613185883, -0.025453384965658188, 0.011586092412471771, 0.0012869267957285047, 0.013281984254717827, -0.0042097135446965694, -0.010633091442286968, 0.02638387493789196, -0.016118476167321205, -0.005631711333990097, 0.017829375341534615, 0.017289090901613235, -0.015713263303041458, 0.0027408162131905556, -0.007275075651705265, 0.027614520862698555, -0.010415476746857166, 0.003528730710968375, -0.005102683324366808, 0.008869663812220097, 0.027494458481669426, -0.003538110526278615, -0.015818318352103233, 0.0018562886398285627, -0.0003179797204211354, 0.0031629132572561502, -0.00946997944265604, -0.012006313540041447, 0.01999051310122013, 0.03529856353998184, 0.009274877607822418, -0.035598721355199814, -0.020305678248405457, -0.006393361836671829, 0.03905053436756134, 0.0008202751050703228, -0.004937596619129181, 0.0047162300907075405, -0.04175195470452309, 0.0013300743885338306, -0.013852284289896488, 0.0298957210034132, -0.003444311209022999, -0.032296985387802124, -0.024522894993424416, -0.031036321073770523, -0.00871958490461111, 0.019014999270439148, 0.01823458820581436, -0.02767455205321312, 0.0141149228438735, 0.00978514552116394, -0.022466814145445824, -0.012719188816845417, 9.350620530312881e-06, -0.013552126474678516, -0.0209059938788414, -0.03532857820391655, 0.0078416233882308, 0.03652920946478844, 0.010955761186778545, -0.008967215195298195, -0.012171400710940361, 0.015112947672605515, 0.02868008241057396, 0.015195490792393684, 0.030451012775301933, 0.02329224906861782, 0.002485682023689151, -0.005414097104221582, 0.016673767939209938, -0.00854699406772852, 0.005113939289003611, 0.0034199233632534742, -0.00753771374002099, 0.004731237888336182, 0.02219667285680771, -0.030285926535725594, -0.017244067043066025, -0.016238538548350334, 0.0321769192814827, 0.025903621688485146, 0.019810417667031288, -0.030210886150598526, 0.009477484039962292, 0.021416261792182922, -0.011826219037175179, -0.005432856734842062, -0.0043860566802322865, -0.01608845964074135, 0.015022899955511093, -0.01176618691533804, 0.012283959425985813, 0.0006547193042933941, 0.007515201810747385, -0.00022523563529830426, 0.02738940343260765, -0.007282579783350229, -0.011278430931270123, 0.028124788776040077, 0.02048577181994915, -0.013582142069935799, -0.02542336843907833, 0.0018112650141119957, -0.0018609786638990045, -0.009297389537096024, -0.007759080268442631, 0.011233407072722912, -0.02563348039984703, -0.029955752193927765, -0.003140401327982545, -0.005417848937213421, 0.02621878683567047, 0.008404419757425785, 0.001314128516241908, -0.02830488421022892, -0.012501574121415615, -0.03307739272713661, 0.0032829763367772102, -0.017424162477254868, 0.006562200840562582, -0.0032135648652911186, -0.0019003743072971702, -0.004213465843349695, 0.04064137116074562, 0.014835300855338573, 0.008479459211230278, -0.003932067658752203, -0.029325421899557114, 0.00619825953617692, 0.023817524313926697, -0.0031028816010802984, 0.001988545758649707, -0.04361293464899063, -0.002688288688659668, 0.017124004662036896, 0.030661122873425484, -0.001177181489765644, -0.029040271416306496, -0.010362949222326279, -0.008622033521533012, 0.006423377897590399, 0.008787120692431927, 0.004813781473785639, 0.0037576009053736925, 0.002388130873441696, 0.016958918422460556, 0.010340437293052673, -0.014940356835722923, -0.00944746844470501, 0.019180085510015488, -0.015210498124361038, 0.005020139738917351, 0.033137425780296326, -0.03625906631350517, 0.005128947086632252, -0.017529217526316643, -0.01216389611363411, -0.03199682757258415, -0.01009280700236559, 0.010760658420622349, -0.012944307178258896, -0.014805285260081291, 0.00938743632286787, -0.030045799911022186, 0.01856476254761219, -0.017664289101958275, 0.02877012826502323, 0.015998413786292076, -0.012591621838510036, 0.0033036123495548964, -0.000755553541239351, 0.008689569309353828, -0.014032378792762756, 0.013844780623912811, -0.008772113360464573, -0.010865713469684124, -0.027614520862698555, 0.05712003633379936, 0.00838190782815218, -0.004048378672450781, -0.015938380733132362, 0.0022980833891779184, -0.02675907127559185, 0.013342016376554966, 0.03214690461754799, -0.038360171020030975, -0.014940356835722923, -0.0035043428651988506, 0.012306471355259418, 0.015150466933846474, 0.00027272154693491757, -0.007162516470998526, 0.010678115300834179, -0.026894142851233482, -0.017634272575378418, 0.00890718400478363, 0.028019733726978302, -0.002292455406859517, 0.028199829161167145, 0.006738543510437012, 0.0065659526735544205, 0.024237746372818947, 0.00877961702644825, -0.04061135649681091, 0.016358602792024612, -0.009267373010516167, -0.017379138618707657, 0.02629382722079754, -0.007365122903138399, -0.006123220082372427, 0.01697392575442791, 0.012501574121415615, -0.002418146701529622, -0.00029992335475981236, 0.0011152740335091949, 0.00765027292072773, 0.012681668624281883, 0.005823062267154455, -0.017994463443756104, -0.02266191691160202, -0.020770922303199768, 0.0033167442306876183, 0.016493672505021095, 0.015953389927744865, 0.020620843395590782, 0.02266191691160202, 0.01671879179775715, 0.012133880518376827, -0.014647702686488628, 0.0017540473490953445, -0.03490835800766945, 0.0011443517869338393, -0.02383253164589405, 0.0045511433854699135, 0.0021029808558523655, -0.014460103586316109, -0.014512632042169571, -0.0016396122518926859, 0.004100906662642956, -0.006367098074406385, -0.0038645321037620306, -0.012944307178258896, -0.0033223722130060196, -0.0027858400717377663, 0.012171400710940361, 0.01534556970000267, -0.01596839725971222, -0.004502367693930864, 0.00042608342482708395, -0.010693122632801533, 0.022046593949198723, -0.012238935567438602, 0.02182147465646267, 0.01706397347152233, 0.011240910738706589, 0.0029115311335772276, 0.002065461128950119, -0.0017033957410603762, -0.004742493852972984, 0.0023299751337617636, -0.0037838646676391363, -0.0053052897565066814, -0.013822268694639206, 0.028079766780138016, -0.0017690552631393075, 0.008209316991269588, -0.0031366494949907064, -0.00419095391407609, -0.015938380733132362, -0.002791467821225524, 0.039110567420721054, 0.0186097864061594, -0.006329578347504139, 0.011075824499130249, -0.012569109909236431, -0.02329224906861782, -0.005597943905740976, -0.018459707498550415, 0.016793830320239067, 0.003671305486932397, 0.013597150333225727, 0.010685618966817856, 0.00241439463570714, 0.01434004120528698, 0.002313091419637203, 0.006025668699294329, 0.00592811731621623, -0.01450512744486332, 0.010693122632801533, 0.002005429472774267, 0.020215630531311035, -0.01718403585255146, 0.0063821058720350266, -0.004205961711704731, -0.0029828185215592384, -0.041541844606399536, -0.014857812784612179, -0.0005182412569411099, 0.010062791407108307, -0.006817334797233343, 0.0013666561571881175, -0.012839251197874546, 0.008809632621705532, -0.020005520433187485, -0.018954968079924583, 0.009710106067359447, 0.013304496183991432, -0.002418146701529622, -0.015878349542617798, 0.007811607792973518, -0.0008193370886147022, -0.014249993488192558, -0.02032068558037281, -0.02525828219950199, -0.010588067583739758, 0.011338462121784687, 0.010730642825365067, 0.012328983284533024, -0.003541862592101097, -0.007766583934426308, -0.002992198569700122, -0.007248811889439821, 0.0064008659683167934, -0.017199045047163963, 0.005061411764472723, -0.007886647246778011, -0.01835465244948864, -0.00957503542304039, -0.027194300666451454, -0.009957736358046532, -0.013987354934215546, 0.010768162086606026, 0.009109790436923504, 0.01040797308087349, 0.03821009397506714, 0.013739725574851036, -0.012231431901454926, 0.002564473543316126, 0.00166493805591017, 0.02420772984623909, -0.005008883774280548, 0.010790674015879631, -0.0021348726004362106, -0.007578985299915075, -0.009319900535047054, -0.004228473640978336, -0.02914532646536827, 0.02036570943892002, 0.006828590761870146, 0.005335305817425251, -0.01476026140153408, 0.013124401681125164, -0.02177645079791546, -0.009169821627438068, 0.0025269538164138794, -0.015698255971074104, 0.012178904376924038, 0.017799360677599907, 0.016493672505021095, -0.010227878578007221, 0.00922235008329153, 0.00012674633762799203, -0.01868482492864132, -0.014377560466527939, 0.019210102036595345, -0.0008868726436048746, 0.00027623900678008795, 0.012021321803331375, -0.024387825280427933, 0.013844780623912811, 0.006584712769836187, -0.010543043725192547, -0.005399089306592941, -0.007151260506361723, 0.0007822863990440965, -0.003114137565717101, 0.010392964817583561, -0.010250390507280827, -0.003751972923055291, 0.008126773871481419, -0.005110187456011772, -0.02563348039984703, -0.02563348039984703, 0.002609497169032693, -0.004708725959062576, 0.006329578347504139, -0.0056429672986269, -0.005080171395093203, -0.008952207863330841, 0.0030165864154696465, -0.012066345661878586, -0.022391775622963905, -0.002596365287899971, -0.0030259662307798862, 0.004997628275305033, -0.008914687670767307, 0.0023862547241151333, 0.004539887420833111, 0.0012925546616315842, 0.026623999699950218, -0.012058841064572334, 0.012036329135298729, -0.025603463873267174, 0.009267373010516167, 0.009432460181415081, 0.003765104804188013, 0.01697392575442791, 0.0010974521283060312, 0.024507887661457062, -0.0069824219681322575, -0.016253547742962837, -0.012404022738337517, 0.01772432029247284, 0.03454816713929176, -0.0028233597986400127, 0.002502565970644355, 0.005234002135694027, -0.006145732011646032, -0.006059436593204737, -0.02579856663942337, -0.0019641579128801823, -0.0028646313585340977, -0.011466029100120068, 0.003932067658752203, -0.02329224906861782, -0.007961686700582504, 0.0016855738358572125, -0.013597150333225727, 0.01283174753189087, 0.015653232112526894, 0.02374248579144478, 0.012906786985695362, 0.005500392522662878, 0.0011199639411643147, 0.010708130896091461, 0.0038795401342213154, -0.012103864923119545, 0.02081594616174698, -0.016463657841086388, -0.006993677467107773, 0.0009745749994181097, -0.014617687091231346, 0.007556473836302757, -0.004123418126255274, 0.004010858945548534, 0.011180879548192024, -0.017003942281007767, 0.003984595183283091, -0.011893754824995995, -0.009552523493766785, 0.0019360181177034974, 0.0032173169311136007, 0.014174954034388065, -0.009349917061626911, 0.0066559999249875546, 0.015518160536885262, -0.006303314585238695, -0.012118873186409473, 0.0006687892018817365, -0.003939571790397167, 0.005575431976467371, 0.005597943905740976, -0.0005412221071310341, -0.002065461128950119, 0.0078416233882308, 0.0003090687678195536, -0.0039283158257603645, -0.019240116700530052, -0.006070692557841539, -0.008524483069777489, -0.01647866517305374, 0.004153434187173843, 0.001596464542672038, -0.04904578998684883, 0.0002478647220414132, 0.015278033912181854, -0.006787319201976061, -0.00842693168669939, 0.004502367693930864, 0.0269691813737154, -0.003020338248461485, 0.03959082067012787, 0.016673767939209938, 0.00178500113543123, 4.311837619752623e-05, -0.011173375882208347, -0.009484987705945969, 0.0007039639167487621, -0.009019742719829082, -0.011143360286951065, 0.001723093562759459, 0.005234002135694027, -0.0149478605017066, 0.017289090901613235, -0.012231431901454926, -0.014512632042169571, -0.010250390507280827, 0.008359395898878574, 0.016703784465789795, 0.02671404741704464, -0.006475905422121286, 0.023907572031021118, -0.03027091734111309, 0.0005820248043164611, -0.014355048537254333, -0.004798773676156998, 0.010145335458219051, 0.004952604416757822, 0.004569903016090393, 0.014272505417466164, 0.0013328883796930313, -0.019585298374295235, -2.281961678818334e-05, 0.005995652638375759, -0.005999404937028885, -0.014084906317293644, 0.011953786015510559, 0.031666651368141174, 0.021881505846977234, 0.004772509448230267, -0.002994074486196041, 0.039650849997997284, -0.026984190568327904, -0.003434931393712759, -0.012411526404321194, -0.004978868179023266, 0.014932852238416672, 0.004513623658567667, 0.028379924595355988, -0.028920207172632217, 0.007413898594677448, 0.00350621878169477, 0.008682065643370152, -0.003147905459627509, 0.0030409740284085274, 0.006993677467107773, 0.019120054319500923, 0.00022406314383260906, -0.00731634721159935, -0.016148492693901062, -0.023637430742383003, -0.0030447260942310095, 0.01664375141263008, -0.0076615288853645325, 0.006547193042933941, 0.004945100285112858, -0.01948024332523346, -0.0010383585467934608, -0.0031666653230786324, -0.014955364167690277, 0.001481091370806098, -0.005008883774280548, -0.0037557249888777733, -0.006704775616526604, -0.00659596873447299, 0.0036356619093567133, 0.005714254919439554, -0.020680874586105347, -0.010798178613185883, -0.009792649187147617, -0.00038692221278324723, 0.001140599837526679, 0.0064346338622272015, 0.00045563021558336914, -0.008434435352683067, 0.013987354934215546, -0.012591621838510036, -0.009109790436923504, 0.003131021512672305, 0.014242489822208881, -0.0036562976893037558, -0.007091228850185871, 0.014775269664824009, 0.01865481026470661, 0.00904975924640894, 0.005920613184571266, -0.008179301396012306, 0.008441939018666744, -0.011968794278800488, -0.01785939186811447, 0.007916662842035294, 0.007031197194010019, 0.008411923423409462, -0.004022114910185337, 0.02692415751516819, 0.010205366648733616, 0.016673767939209938, -0.01881989650428295, 0.0012147012166678905, 0.01199880987405777, 0.029580555856227875, 0.0017681173048913479, -0.009229853749275208, 0.004341032821685076, -0.014962868764996529, -0.009147310629487038, -0.028920207172632217, 0.008501971140503883, 0.030165862292051315, 0.011548573151230812, -0.002791467821225524, -0.02977565862238407, -0.006014412734657526, -0.006141979712992907, -0.006074444390833378, -0.013049362227320671, 0.008659553714096546, -0.0047912695445120335, 0.022676924243569374, 0.0032754724379628897, -0.00028514995938166976, 0.016538696363568306, 0.014797781594097614, 0.009732617996633053, 0.018279612064361572, 0.00361690204590559, 0.0007353866822086275, -0.0052302503027021885, -0.012291464023292065, -0.0065659526735544205, 8.266065560746938e-05, -0.009409948252141476, -0.011128352023661137, -0.005552920047193766, 0.01446760818362236, -0.01204383373260498, -0.01247906219214201, 0.0002230078971479088, 0.006340834312140942, -0.011668636463582516, 0.0342780239880085, -0.019555283710360527, -0.00032032470335252583, -0.007654024753719568, -0.010633091442286968, 0.002883391221985221, -0.017199045047163963, 0.0022042840719223022, 0.014752757735550404, 0.018339643254876137, 0.014009866863489151, -0.003082245821133256, 0.011466029100120068, 0.004701222293078899, -0.012809235602617264, -0.019720369949936867, 0.0010130327427759767, 0.02116112783551216, 0.012839251197874546, 0.010595572181046009, 0.02500314824283123, 0.014910340309143066, -0.016628744080662727, -0.009605051018297672, 0.006671008188277483, 0.005016387905925512, 0.00961255468428135, -0.0022549356799572706, 0.005984397139400244, 0.000294295372441411, 0.0031966809183359146, 0.01643364131450653, -0.013582142069935799, 0.001813140930607915, -0.014962868764996529, -0.008021717891097069, 0.015698255971074104, -0.013507102616131306, -0.017709312960505486, 0.024342801421880722, 0.020635850727558136, 0.0298957210034132, 0.003508094698190689, 0.019930480048060417, 0.008524483069777489, -0.018159549683332443, 0.010107815265655518, -0.0077515761367976665, -0.005267770029604435, 0.03535859286785126, 0.005436609033495188, -0.0010149086592718959, -0.009027247317135334, 0.00021843517606612295, 0.006156987510621548, 0.0007049019332043827, 0.003159161191433668, 0.008044229820370674, -0.013814765028655529, 0.025693511590361595, -0.0012109492672607303, 0.0023618671111762524, 0.019585298374295235, -0.008449443615972996, 0.0011124600423499942, 0.01863980107009411, -0.005117691121995449, -0.021011048927903175, -0.00020893799955956638, 0.020665867254137993, -0.019660338759422302, -0.02650393731892109, 0.0013544622343033552, -0.013266976922750473, 0.011758683249354362, 0.016358602792024612, 0.027194300666451454, 0.0032792245037853718, 0.02956554666161537, 0.011991305276751518, 0.015308049507439137, -0.014872821047902107, -0.006370850373059511, 0.00045258173486217856, 0.02818482182919979, 0.0050689154304564, 7.43359632906504e-05, -0.024102674797177315, -0.01647866517305374, 0.0008268410456366837, 0.0242527537047863, 0.005714254919439554, -0.008817136287689209, 0.001943522016517818, 0.0006640992360189557, 0.003973339218646288, -0.010047784075140953, -0.0169289018958807, 0.022106625139713287, -0.0015626967651769519, 0.010077799670398235, -0.005369073245674372, 0.0012175152078270912, -0.01120339147746563, -0.024507887661457062, 0.009815161116421223, -0.0073876348324120045, -0.019585298374295235, -0.007271323818713427, 0.0009023495367728174, -0.010828194208443165, -0.0040371231734752655, 0.0006340834661386907, -0.01927013322710991, 0.007961686700582504, -6.236189619812649e-06, 0.014797781594097614, 0.02048577181994915, 0.0017643653554841876, -0.02453790418803692, 0.010122823528945446, 0.024567918851971626, -0.0019829177763313055, 0.011833722703158855, 0.0057029989548027515, -0.00854699406772852, -0.007443914655596018, 0.008456947281956673, 0.006209515500813723, 0.00738013070076704, 0.02065085992217064, -0.0010543044190853834, 0.008051734417676926, 0.00850947480648756, -0.0008671747636981308, -0.010077799670398235, 0.0044948635622859, 0.002596365287899971, 0.00015887260087765753, -0.0022755716927349567, 0.015225506387650967, -0.0010411725379526615, -0.00489257276058197, 0.007706552743911743, 0.00011056595394620672, 0.001331012463197112, 0.027749592438340187, -0.008974719792604446, 0.013064369559288025, 0.013064369559288025, 0.015443121083080769, 0.0020279414020478725, -0.0014332536375150084, 0.011030800640583038, -0.015443121083080769, -0.006108212284743786, 0.0037913687992841005, -0.0010261646239086986, 0.010400469414889812, 0.01072313915938139, 1.2970688203495229e-06, 0.004055882804095745, 0.007665280718356371, -0.03139651194214821, 0.01235149521380663, 0.0019998017232865095, -0.01208135299384594, -0.020455757156014442, -0.0032754724379628897, 0.01889493688941002, 0.0014163698069751263, 0.026999197900295258, -0.0019810418598353863, 0.014227481558918953, -0.009424956515431404, 0.02570851892232895, -0.014325032941997051, -0.01009280700236559, -0.024657966569066048, -0.011068320833146572, -0.014310024678707123, -0.002142376499250531, 0.0076615288853645325, 0.003131021512672305, -0.00498637231066823, 0.040911514312028885, 0.0033036123495548964, 0.011045808903872967, -0.021641381084918976, -0.005095179192721844, -0.006509673316031694, -0.005597943905740976, 0.022016577422618866, 0.0005224622436799109, -0.0035137226805090904, 0.027899671345949173, 0.027734585106372833, -0.01601342111825943, 0.014385064132511616, 0.01830962859094143, 0.0019604058470577, -0.0042022098787128925, 0.006550944875925779, -0.005826814100146294, -0.013679693453013897, -0.0055379122495651245, -0.0033899075351655483, 0.02437281608581543, 0.01423498522490263, -0.018954968079924583, -0.002159260446205735, 0.0021517565473914146, -0.011090831831097603, 0.004945100285112858, -0.01638861745595932, -0.004952604416757822, 0.015120451338589191, -0.0031103857327252626, 0.005489136558026075, -0.0043672965839505196, 0.005282777827233076, 0.00016743179003242403, -3.810597490883083e-07, -0.005016387905925512, -0.018324635922908783, 0.00544786499813199, -0.023592406883835793, 0.006625984329730272, -0.011916265822947025, -0.001913506188429892, 0.0006988049717620015, 0.0006125096115283668, -0.021941538900136948, -0.0006922390311956406, 0.013221953064203262, -0.014535143040120602, 0.0027577001601457596, -0.0028514994774013758, -0.0022568118292838335, 0.010633091442286968, -0.003493086900562048, -0.005384081043303013, -0.014272505417466164, -0.007372627034783363, -0.0006050056545063853, 0.010175351053476334, 0.005369073245674372, -0.008411923423409462, -0.005417848937213421, 0.026398882269859314, -0.012929298914968967, -0.006869862787425518, 0.012846755795180798, -0.01634359359741211, 0.006603472400456667, 0.0081567894667387, 0.013582142069935799, 0.013507102616131306, -0.0073463632725179195, 0.015037908218801022, 0.0013563382672145963, 0.02997075952589512, -0.01486531738191843, 0.01154106855392456, -0.0016752559458836913, 0.0028346155304461718, -0.02504817210137844, -0.006370850373059511, -0.010918240994215012, -0.018114525824785233, 0.011338462121784687, -0.0028646313585340977, 0.008284356445074081, 0.0010880721965804696, -0.007338859140872955, -0.0030466020107269287, -0.006640992127358913, -0.006787319201976061, -0.008892175741493702, 0.010107815265655518, -0.026729056611657143, -0.020560812205076218, 0.0006922390311956406, -0.01961531490087509, -0.005785542540252209, -0.010918240994215012, 0.017829375341534615, -0.001971661811694503, 0.00498637231066823, 0.021836481988430023, -0.01446760818362236, 0.008869663812220097, 0.00819430872797966, 0.023847540840506554, -0.007954183034598827, 0.003796996781602502, 0.0031516572926193476, 0.013454575091600418, -0.017499202862381935, 0.00877961702644825, -0.005763030610978603, 0.001350710284896195, 0.00553040811792016, -0.021416261792182922, 0.026729056611657143, -0.026864126324653625, 0.027149276807904243, 0.012899283319711685, -0.004870060831308365, -0.01080568227916956, 0.006310818716883659, -0.017334114760160446, -0.027479451149702072, 0.008794624358415604, 0.007582737598568201, -0.02507818676531315, -0.017364131286740303, -1.713303390715737e-05, 0.01655370555818081, -0.005984397139400244, 0.006547193042933941, -0.009184829890727997, 0.0001996753126149997, -0.021056072786450386, -0.02245180681347847, -0.013124401681125164, -0.004573655314743519, 0.008689569309353828, 0.009725114330649376, -0.023187194019556046, -0.007008685730397701, -0.020005520433187485, -0.008096757344901562, -0.00281210383400321, -0.012178904376924038, -0.0056129517033696175, 0.010760658420622349, -0.001451075542718172, -0.015788301825523376, 0.028244853019714355, 0.013657181523740292, -0.008697072975337505, -0.01659872941672802, 0.009432460181415081, 0.013889804482460022, -0.0032266967464238405, 0.01563822291791439, 0.005417848937213421, -0.03238702937960625, -0.009590042755007744, -0.015878349542617798, 0.007916662842035294, 0.008599522523581982, -0.007301339413970709, -0.0006115715950727463, -0.0017803112277761102, 0.0137997567653656, 0.007811607792973518, 0.015285537578165531, -0.009875193238258362, 0.005256514064967632, -0.004048378672450781, 0.001881614443846047, -0.0037275850772857666, 0.0019510259153321385, -0.005511648487299681, 0.018879927694797516, 0.004753749817609787, 0.004311016760766506, 0.023817524313926697, -0.005327801685780287, 0.0071062371134757996, 0.0006861420697532594, -0.018909944221377373, -0.002958430675789714, 0.0027745841071009636, 0.004378552548587322, -0.007522705942392349, 0.0008484149002470076, -0.015255521982908249, 0.005440360866487026, 0.013026850298047066, 0.019014999270439148, 0.0018656685715541244, 0.00333925592713058, 0.012073849327862263, -0.00027108006179332733, -0.012944307178258896, -0.0064346338622272015, 0.0030935017857700586, 0.013296992518007755, 0.010655603371560574, 0.014204969629645348, 0.002866507275030017, 0.025348329916596413, -0.019240116700530052, 0.013139409944415092, -0.025198251008987427, 0.010655603371560574, 0.009987751953303814, 0.0018741105450317264, 0.010250390507280827, 0.011841226369142532, 0.023262232542037964, -0.018174557015299797, 0.0004643066495191306, 0.0024875581730157137, -0.0053052897565066814, -0.010693122632801533, 0.0077515761367976665, 0.010760658420622349, -8.787824481260031e-05, 0.03715953975915909, -0.008081750012934208, -0.0078416233882308, -0.016493672505021095, -0.009815161116421223, -0.026834111660718918, -0.01727408356964588, 0.029700618237257004, 0.0089897271245718, 0.01538308896124363, 0.01697392575442791, 0.013807260431349277, 0.012569109909236431, -0.0082543408498168, 0.009319900535047054, 0.01743916980922222, 0.004348536487668753, 0.022947067394852638, -0.0008413799223490059, -0.02804975025355816, 0.00922235008329153, 0.017454179003834724, 0.007124996744096279, 0.02002052776515484, 0.004945100285112858, -0.005590439774096012, 0.014242489822208881, -0.012629141099750996, 0.009942728094756603, 0.005950629245489836, 0.014167450368404388, 0.004262241534888744, 0.011360974051058292, -0.008772113360464573, -0.005312793888151646, -0.006978669669479132, 0.006370850373059511, 0.007642768789082766, 0.008667057380080223, -0.010280406102538109, -0.00014175423712003976, -0.0016518061747774482, 0.0036975694820284843, 0.004596166778355837, -0.011668636463582516, -0.00961255468428135, 0.001868482562713325, -0.004731237888336182, -0.001519549055956304, 0.004960108548402786, -0.013634669594466686, -0.0019360181177034974, 0.007064965087920427, -0.00017986020247917622, 0.02432779222726822, 0.01584833487868309, -0.0198554415255785, -0.002144252648577094, 0.004937596619129181, 0.0072225481271743774, 0.004153434187173843, 0.011721163988113403, -0.023607414215803146, 0.0025006900541484356, -0.012058841064572334, -0.01260662917047739, -0.0022042840719223022, -0.0036394137423485518, 0.013251968659460545, -0.03193679451942444, -0.0042022098787128925, -0.007245060056447983, 0.01743916980922222, -0.006719783879816532, -0.0005299662007018924, 0.0040596346370875835, 0.006723535712808371, -0.0017474814085289836, 0.014910340309143066, 0.014610182493925095, 0.022061601281166077, 2.0753101125592366e-05, 0.0008287170203402638, 0.02212163247168064, -0.0023731228429824114, 0.029235374182462692, -0.013049362227320671, 0.012006313540041447, 0.005207738373428583, 0.005350313615053892, -0.01936018094420433, 0.006562200840562582, -0.009507499635219574, -0.0012250192230567336, 0.03015085496008396, 0.005267770029604435, -0.0001652040664339438, 0.01622353121638298, 0.00172965950332582, -0.020770922303199768, 0.002990322420373559, -0.02411768212914467, -0.011030800640583038, -0.005260266363620758, 0.008209316991269588, -0.007609001360833645, -0.02065085992217064, 0.017289090901613235, 0.0024537902791053057, -0.005920613184571266, 0.014850309118628502, 0.022256704047322273, 0.0018459707498550415, 0.019540274515748024, 0.009792649187147617, -0.00616824347525835, 0.02116112783551216, 0.01608845964074135, -0.0025457136798650026, -0.01026539783924818, 0.0010477384785190225, 0.010115318931639194, 0.010775666683912277, 0.0023618671111762524, -0.01802447810769081, -0.03370772674679756, -0.011451021768152714, -0.039530787616968155, -0.006813582964241505, 0.010040279477834702, 0.01419746596366167, 0.004836293403059244, 0.004085898399353027, 0.017949439585208893, -0.006802326999604702, -0.008629538118839264, 0.010145335458219051, 0.0032735965214669704, -0.010625587776303291, -0.021221159026026726, 0.010070296004414558, -0.010873218066990376, 0.0030315942130982876, 0.005680487025529146, -0.013154417276382446, -0.002324347384274006, 0.003065361874178052, -0.009379932656884193, 0.0029734387062489986, -0.002928414847701788, 0.0010177226504310966, 0.017919423058629036, 0.0017624893225729465, -0.0016264802543446422, 0.025138219818472862, -0.017754336819052696, -0.034758277237415314, 0.019885456189513206, -0.023592406883835793, 0.011841226369142532, 0.0017352874856442213, 0.02863505855202675, -0.00467120623216033, 0.01548814494162798, -0.008569505997002125, -0.015908366069197655, 0.009439963847398758, -0.0039358194917440414, -0.00802922248840332, 0.017199045047163963, 0.013259472325444221, 0.0029884465038776398, 0.01563822291791439, 0.010775666683912277, -0.01751421019434929, 0.012899283319711685, -0.01199880987405777, -0.0046824621967971325, -0.009432460181415081, -0.014009866863489151, 0.025438377633690834, -0.012456550262868404, -0.025288298726081848, 0.00871958490461111, -0.0021480044815689325, 0.0010965141700580716, 0.0020429491996765137, 0.019135061651468277, -0.0016996437916532159, -0.018879927694797516, 0.011916265822947025, -0.01226895209401846, -0.01596839725971222, -0.015878349542617798, 0.03277723491191864, 0.023652438074350357, 0.025348329916596413, -0.03085622563958168, -0.007864135317504406, -0.021941538900136948, 0.022601885721087456, -0.00011478692613309249, -0.008952207863330841, 0.01061808317899704, -0.0063821058720350266, 0.00965757854282856, 0.0011068320600315928, -0.0022042840719223022, -0.015000388026237488, -0.004423576407134533, 0.0033186201471835375, -0.002551341662183404, -0.01622353121638298, 0.000224180388613604, -0.00938743632286787, -0.004637438803911209, -0.016778822988271713, 0.0309462733566761, 0.01049051620066166, -0.01154106855392456, 0.0073538669385015965, 0.012786723673343658, -0.01001026388257742, -0.004727486055344343, 0.0020560813136398792, 0.009034750983119011, 0.00104023446328938, -0.02161136455833912, -0.0013300743885338306, 0.0054628727957606316, 0.0004528162535279989, 0.012906786985695362, -0.0017484193667769432, -0.03640914708375931, -0.00019521985086612403, 0.006044428329914808, 0.029160333797335625, 0.017499202862381935, 0.0480852872133255, 0.008074246346950531, -0.012501574121415615, 0.021131111308932304, 0.003795120632275939, -0.006036924663931131, -0.00911729410290718, -0.007916662842035294, -0.00016086584946606308, -0.008186805061995983, -0.0010224126745015383, -0.02140125446021557, -0.019630322232842445, 0.016673767939209938, 0.009432460181415081, 0.018054494634270668, 0.00288526713848114, -0.00854699406772852, -0.0003315806097816676, -0.022526845335960388, 0.012531589716672897, 0.002125492785125971, 0.0048475489020347595, 0.00516271498054266, -4.6936302169342525e-06, -0.003072866005823016, 0.019960496574640274, -0.018759865313768387, 0.005391585174947977, 0.01990046538412571, -0.01948024332523346, 0.015360577963292599, -0.005774286575615406, -0.027824630960822105, -0.022256704047322273, 0.011623612605035305, 0.02299209125339985, 0.04748497158288956, 0.020395725965499878, 0.0028908951207995415, -0.007124996744096279, 0.030195878818631172, 0.005939373280853033, 0.0034912109840661287, 0.011571085080504417, 0.002061709063127637, -0.0027520721778273582, 0.005113939289003611, 0.0038945479318499565, -0.008104261942207813, 0.024597935378551483, 0.013859787955880165, -0.024192722514271736, 0.0026470168959349394, 0.003312992164865136, 0.0018928704084828496, -0.0020410732831805944, 0.0053052897565066814, -0.002279323525726795, 0.0024481622967869043, 0.010085303336381912, -0.010783170349895954, -0.0008033912163227797, 0.014647702686488628, -0.0031047577504068613, 0.004633686505258083, -0.012051337398588657, 0.006089452188462019, -0.00685485452413559, 0.019014999270439148, -0.0013085005339235067, -0.011668636463582516, -0.018504731357097626, -0.01906002312898636, -0.007237555924803019, 0.005384081043303013, 0.006625984329730272, 0.018009470775723457, -0.0005679549067281187, 0.004622430540621281, 0.013964843936264515, 0.015863342210650444, -0.0169289018958807, -0.02479303814470768, -0.009935224428772926, -0.006378354039043188, 0.011053312569856644, 0.018294621258974075, -0.004693718161433935, 0.021131111308932304, 0.005766782443970442, -0.013349520042538643, 0.0021011049393564463, 0.005459120497107506, 0.0008155851392075419, 0.0013131905579939485, -0.0031028816010802984, -0.003176045138388872, -0.0219565462321043, 0.007894150912761688, -0.0066334884613752365, 0.014587671495974064, 0.020050544291734695, -0.01040797308087349, 0.012313975021243095, -0.005346561316400766, -0.015338066034018993, -0.010693122632801533, 0.0011415377957746387, 0.02020062319934368, -0.020500781014561653, 0.018459707498550415, -0.02212163247168064, 0.005215242505073547, 0.008937199600040913, -0.011631116271018982, 0.0062920586206018925, -0.003795120632275939, 0.014542647637426853, -0.0023918827064335346, 0.005331553518772125, 0.006412121932953596, 0.006472153589129448, 0.01592337340116501, 0.022151648998260498, 0.015007891692221165, 0.018759865313768387, -0.0035531185567378998, 0.01617850735783577, -0.00200730562210083, -0.008149285800755024, 0.0010589943267405033, 0.004903828725218773, 0.01354462280869484, -0.004217217676341534, -0.00029054342303425074, 0.004502367693930864, -0.00619825953617692, 0.009792649187147617, -0.0016968298004940152, 0.0012062593596056104, -0.01659872941672802, 0.019795410335063934, 0.023127160966396332, -0.0035587463062256575, 0.01617850735783577, -0.0073538669385015965, 0.014685221947729588, 0.018759865313768387, -0.016703784465789795, 0.005128947086632252, 0.0005824937834404409, 0.007481434382498264, 0.007567729335278273, -0.0409715436398983, 0.006423377897590399, -0.007563977502286434, -0.0032079368829727173, 0.005211490672081709, -0.005766782443970442, -0.01638861745595932, 0.04178197309374809, -0.02830488421022892, -0.01697392575442791, -0.004198457580059767, -0.023592406883835793, -0.008832144550979137, -0.014249993488192558, 0.014602678827941418, -0.009057262912392616, -0.0016752559458836913, 0.009792649187147617, 0.025228265672922134, 0.01608845964074135, -0.0065246811136603355, 0.009079774841666222, -0.013649677857756615, 0.010798178613185883, 0.01446760818362236, -0.014227481558918953, 0.00811176560819149, 0.010685618966817856, 0.0005721758934669197, 0.0032660923898220062, 0.001723093562759459, 0.03646917641162872, 0.0036206538788974285, -0.0054628727957606316, 0.01788940653204918, -0.004753749817609787, -0.006539688911288977, -0.004228473640978336, 0.009897705167531967, 0.0003311116306576878, -0.04247233271598816, -0.020966025069355965, -0.03322747349739075, -0.0009215783793479204, 0.010865713469684124, -0.015443121083080769, 0.011150863952934742, 0.018669817596673965, 0.008501971140503883, -0.005451616831123829, 0.020470764487981796, 0.0035324825439602137, -0.005515400320291519, 0.019795410335063934, -0.003277348354458809, 0.018279612064361572, -0.019660338759422302, -0.01785939186811447, 0.022526845335960388, 0.021056072786450386, -0.010940752923488617, 0.005898101720958948, -7.73258216213435e-05, -0.01530054584145546, 0.0024519143626093864, -0.009807657450437546, -0.03418797627091408, -0.008667057380080223, 0.001801885082386434, -0.0035737543366849422, 0.014895332977175713, -0.010985776782035828, -0.004303513094782829, -0.01252408605068922, -0.004404816310852766, 0.0007836933364160359, 0.0027445682790130377, 0.005312793888151646, -0.012343991547822952, 0.01948024332523346, -0.012711684219539165, 0.007226299960166216, -0.009034750983119011, 0.01767929643392563, 0.0030278421472758055, -0.0006073506083339453, -0.011383485980331898, 0.002949050860479474, -0.0033786518033593893, -0.014317529276013374, 0.014962868764996529, -0.012531589716672897, -0.0006917700520716608, 0.013904811814427376, -0.003838268341496587, 0.01093324925750494, -0.011638619937002659, -0.001686511910520494, -0.00114716577809304, -0.026563968509435654, -0.008599522523581982, 0.01688387803733349, -0.0038063765969127417, 0.0019341420847922564, -0.01701894961297512, 0.011623612605035305, -0.005331553518772125, -0.006299562752246857, 0.0067648072727024555, 0.037489715963602066, 0.001954777864739299, -0.023772500455379486, -0.0026976685039699078, 0.019825424998998642, -0.011488541029393673, 0.04394310712814331, 0.005958132911473513, -0.0025100698694586754, -0.022061601281166077, 0.013859787955880165, -0.0009623810765333474, 0.03006080724298954, 0.005038899835199118, -0.019330164417624474, 0.014099914580583572, -0.0219565462321043, -0.00667851185426116, 0.003189177019521594, 0.007879143580794334, 0.013732220977544785, 0.000597032718360424, -0.006363346241414547, -0.019660338759422302, -0.01580331102013588, 0.0017418534262105823, -0.0009905209299176931, 0.005091427359730005, -0.0035493664909154177, -0.018909944221377373, 0.01093324925750494, 0.004157186020165682, 0.013762236572802067, 0.0032754724379628897, -0.018039485439658165, -0.006194507237523794, 0.011083328165113926, -0.009957736358046532, -0.001209073350764811, 0.001314128516241908, 0.023772500455379486, 0.00877961702644825, 0.01622353121638298, 0.006393361836671829, 0.001860040589235723, -0.011556076817214489, -0.019045015797019005, -0.009882696904242039, 0.002200532238930464, 0.019915472716093063, 0.002039197366684675, -0.012824243865907192, 0.009792649187147617, 0.017108997330069542, -0.015788301825523376, -0.004795021377503872, 0.010250390507280827, 0.012719188816845417, -0.01388229988515377, -0.0062507870607078075, 0.011038304306566715, 0.0012869267957285047, 0.009680090472102165, -0.004948852583765984, -0.01358964666724205, -0.0009065704653039575, 0.0018319007940590382, -0.0018037609988823533, -0.0015852085780352354, -3.737316728802398e-05, -0.0034724511206150055, 0.013462078757584095, 0.026939166709780693, 0.0027558242436498404, -0.0017371635185554624, 0.0017221556045114994, 0.016358602792024612, 0.001943522016517818, -0.015413105487823486, -0.0013085005339235067, -0.0011799954809248447, -0.007796599995344877, -0.00957503542304039, 0.023817524313926697, -0.03529856353998184, -0.021641381084918976, 0.013567134737968445, -0.010625587776303291, -0.0013047485845163465, 0.007654024753719568, -0.017904415726661682, -0.002504441887140274, -0.0041121626272797585, 0.00871958490461111, 0.010115318931639194, 0.024522894993424416, 0.015593199990689754, -0.005140203051269054, -0.018579769879579544, 0.0028946471866220236, 0.010708130896091461, 0.015983404591679573, -0.006821087095886469, -0.002356239128857851, 0.014775269664824009, 0.00707622105255723, -0.011293439194560051, 0.012696676887571812, 0.004288505297154188, -0.00025091320276260376, 0.0049901241436600685, -0.010040279477834702, -0.02254185453057289, -0.02098103240132332, 0.0031235176138579845, 0.005477880593389273, -0.014752757735550404, 0.008952207863330841, -0.014617687091231346, -0.0011162119917571545, 0.01659872941672802, 0.009439963847398758, 0.004963860381394625, 0.005027643870562315, -0.0032660923898220062, 0.0071062371134757996, -0.00882464088499546, 0.009882696904242039, 0.022316735237836838, 0.004719981923699379, -0.015443121083080769, -0.0014022999675944448, 0.015578191727399826, 0.00838190782815218, -0.006584712769836187, -0.0027858400717377663, -0.010047784075140953, -0.0025438377633690834, 0.002643265062943101, -0.003264216473326087, -0.015548176132142544, -0.007811607792973518, -0.015120451338589191, -0.0036112740635871887, 0.016793830320239067, -0.011165871284902096, -0.028740113601088524, 0.013161920942366123, -0.00016801804304122925, 0.007789095863699913, 0.023697461932897568, 0.005249010398983955, 0.00270142056979239, -0.0027614522259682417, 0.019180085510015488, 0.015833325684070587, 0.01037045381963253, 0.006693519651889801, 0.00683609489351511, 0.0003489334776531905, 0.0002233596460428089, 0.034938372671604156, -0.003785740816965699, 0.013537118211388588, 0.025558440014719963, 0.014167450368404388, -0.0024050145875662565, 0.010738146491348743, -0.0032867284025996923, -0.0012362750712782145, 0.003444311209022999, -0.017169028520584106, -0.011083328165113926, 0.039110567420721054, -0.030826210975646973, -0.0005121442954987288, -0.004085898399353027, -0.00925986934453249, -0.011345966719090939, -0.001994173740968108, 0.005042651668190956, 0.02825986035168171, 0.006629736162722111, -0.004948852583765984, 0.0008713957504369318, -0.011548573151230812, 0.0198554415255785, 0.019555283710360527, 0.014272505417466164, 0.0014463856350630522, -0.01835465244948864, 0.011143360286951065, -0.011878746561706066, 0.01772432029247284, -0.019285140559077263, 0.011098336428403854, 0.008419427089393139, -0.009379932656884193, 0.008329380303621292, -0.01001026388257742, -0.0044836075976490974, 0.010910737328231335, 0.007691544480621815, 0.0029565547592937946, -0.0409715436398983, -0.009124798700213432, 0.02336728759109974, 0.0034743270371109247, -0.014227481558918953, -0.0020542051643133163], "ce755bb8-eb14-4a1c-897e-1fddeeaef178": [0.0018541504396125674, 0.026103882119059563, -0.015096798539161682, 0.024314630776643753, -0.03223845362663269, -0.007364681456238031, 0.011694028042256832, 0.03374014422297478, -0.024314630776643753, 0.026199733838438988, -0.006833497900515795, 0.01526453997939825, -0.005827044602483511, 0.013219683431088924, -0.0544443242251873, 0.0161352027207613, -0.0024462405126541853, 0.049907296895980835, -0.009537342004477978, -0.04661635681986809, 0.058502089232206345, -0.002444243524223566, -0.0334525890648365, -0.009385575540363789, -0.023931220173835754, -0.0015965462662279606, -0.017333360388875008, -0.0050402539782226086, -0.04853340983390808, 0.0006759611424058676, 0.028276542201638222, 0.005906921811401844, 0.009225821122527122, 0.008015681058168411, 0.01583166792988777, -0.05431652069091797, -0.006002774462103844, 0.032637838274240494, 0.01694994978606701, 0.0023344121873378754, -0.028004959225654602, -0.0200332123786211, 0.014298025518655777, 0.014945031143724918, -0.012317069806158543, -0.013579130172729492, 0.022701110690832138, -0.006637798622250557, -0.02201416715979576, -0.02730203978717327, -0.0012780358083546162, 0.013099866919219494, -0.024394508451223373, 0.00025910179829224944, 0.026375465095043182, -0.03479452431201935, 0.03584890440106392, 0.10767451673746109, 0.0013439345639199018, -0.026583144441246986, -0.004197549074888229, -0.05479578673839569, -0.018419690430164337, -0.00032300359453074634, -0.000852190307341516, -0.02399512194097042, -0.014074369333684444, 0.003636411391198635, 0.009449477307498455, 0.024793894961476326, -0.027286063879728317, -0.01691799983382225, -0.020081138238310814, 0.04837365448474884, -0.04645660147070885, 0.0027537678834050894, 0.06735248863697052, -0.015927521511912346, 0.027110334485769272, 0.03354844078421593, 0.017477139830589294, -0.0045050764456391335, -0.018595421686768532, 0.04134446009993553, 0.033772096037864685, 0.006681730970740318, -0.033388685435056686, -0.06236814707517624, -0.062272295355796814, 0.010439954698085785, -0.031823091208934784, 0.02990603819489479, -0.03196687251329422, -0.016806170344352722, 0.027014482766389847, -0.008419061079621315, 0.03142370656132698, 0.016079287976026535, 0.0161431897431612, -0.012716456316411495, -0.007460534106940031, 0.02399512194097042, -0.05517919734120369, -0.0035046138800680637, 0.015687890350818634, -0.017429213970899582, -0.022796964272856712, -0.005603388417512178, -0.002905534580349922, -0.005295861046761274, 0.007688184268772602, -0.043421268463134766, 0.003542555496096611, 0.00214869761839509, -0.031679313629865646, -0.01446576789021492, -0.029346898198127747, -0.007827969267964363, 0.015312466770410538, 0.016390809789299965, 0.030113719403743744, -0.0037722026463598013, 0.048820968717336655, -0.018483592197299004, -0.006729657296091318, 0.02415487729012966, 0.003880036761984229, 0.014106320217251778, 0.022796964272856712, 0.012604628689587116, 0.017317384481430054, 0.005799087695777416, 0.03060895763337612, 0.0005441636894829571, -0.010551783256232738, 0.048980724066495895, 0.036615725606679916, 0.018148109316825867, -0.026854727417230606, 0.06607445329427719, -0.044699303805828094, 0.001145239919424057, -0.0142900375649333, 0.012085426598787308, -0.0037302670534700155, -0.002997393487021327, -0.025992052629590034, 0.0703558698296547, 0.0029894057661294937, 0.04805414751172066, -0.04096104949712753, -0.013778823427855968, 0.007065141573548317, -0.00578311225399375, 0.04268639534711838, -0.06198473647236824, -0.008722594007849693, 0.027941057458519936, 0.03009774349629879, -0.004011834505945444, 0.030225547030568123, -0.03562524914741516, -0.010136421769857407, -0.004117671865969896, 0.017525065690279007, 0.03517793491482735, 0.07374266535043716, 0.0012650557328015566, -0.03300527483224869, 0.012468837201595306, 0.03006579354405403, -0.00629832036793232, 0.017333360388875008, 0.007372668944299221, 0.00873058196157217, -0.027349965646862984, 0.022876841947436333, -0.013483277522027493, 0.014353939332067966, -0.05057826638221741, -0.030049817636609077, -0.00985685084015131, 0.019729677587747574, -0.024714017286896706, -0.010559771209955215, -0.0013808778021484613, -0.0006405155872926116, -0.017557017505168915, 0.014162234030663967, 0.033196981996297836, -0.0022924768272787333, -0.008954238146543503, 0.010408003814518452, 0.01694994978606701, 0.006925356574356556, -0.011039034463465214, -0.013826750218868256, 0.0330691784620285, -0.004684799816459417, 0.016127213835716248, -0.007496478967368603, -0.0032270404044538736, 0.014897105284035206, 0.02741386741399765, -0.01217329129576683, 0.03463476896286011, -0.005659302230924368, -0.0309124905616045, 0.03907594457268715, 0.015392343513667583, 0.054188717156648636, -0.008011686615645885, 0.008283269591629505, 0.01207743864506483, -0.027110334485769272, 0.008602778427302837, -0.02407499961555004, 0.01557606179267168, -0.015959471464157104, -0.04134446009993553, 0.043644923716783524, 0.01648666150867939, 0.009737035259604454, -0.017253482714295387, -0.018595421686768532, 0.009888801723718643, -0.03993861749768257, 0.024905722588300705, -0.026279611513018608, -0.032142601907253265, -0.021023688837885857, -0.002977424068376422, -0.0026539212558418512, -0.0050402539782226086, 0.014066381379961967, 0.020017236471176147, 0.019378218799829483, -0.019537972286343575, -0.025448888540267944, -0.01242091041058302, 0.005878964904695749, 0.02928299643099308, -0.03453891724348068, 0.013155781663954258, 0.019841505214571953, 0.04140836000442505, -0.012804321013391018, 0.02278098836541176, 0.0010324133327230811, 0.013555167242884636, 0.012436886318027973, 0.007720135152339935, -0.021806485950946808, 0.008047631941735744, -0.024250729009509087, 0.01800432987511158, 0.0357850044965744, -0.0322704054415226, -0.002592016477137804, -0.011941647157073021, 0.015687890350818634, 0.015032896772027016, -0.04572173207998276, -0.02193428948521614, 0.025289133191108704, -0.016550563275814056, 0.026151807978749275, -0.004628886003047228, 0.02714228630065918, 0.04930023103952408, -0.0022525382228195667, -0.016965925693511963, 0.024282680824398994, -0.008858385495841503, 0.018499568104743958, 0.001734334509819746, -0.011805855669081211, 0.04230298474431038, -0.026039980351924896, -0.017668845131993294, -0.013866689056158066, 0.011055009439587593, 0.011606162413954735, 0.021550878882408142, 0.0031451662071049213, 0.016207091510295868, -0.0035884848330169916, -0.010567758232355118, -0.005575431045144796, 0.0004500583163462579, 0.026295587420463562, -0.01073550060391426, 0.011574211530387402, -0.0020748113747686148, 0.010288188233971596, 2.578849125711713e-05, -0.002138713141903281, -0.03380404785275459, 0.006450086832046509, -0.011438420973718166, -0.013059928081929684, 0.008842410519719124, -0.050961676985025406, -0.039651062339544296, 0.029490675777196884, -0.024937674403190613, -0.0005900930846109986, 0.003223046660423279, -0.06748028844594955, 0.0258642490953207, 0.05476383492350578, -0.0033208962995558977, 0.00443318672478199, -0.017429213970899582, 0.008842410519719124, -0.03511403501033783, -0.015040883794426918, -0.019394192844629288, -0.01765286922454834, -0.03952325880527496, 0.012964075431227684, -0.033037226647138596, -0.056329429149627686, 0.012245181016623974, 0.055786263197660446, -0.015216614119708538, 0.025496814399957657, -0.03044920414686203, -0.028883609920740128, -0.0030373320914804935, -0.033037226647138596, -0.0031970865093171597, -0.026375465095043182, -0.005795093718916178, -0.031136147677898407, -0.011941647157073021, -0.03389989957213402, -0.012532738968729973, -0.0001108296710299328, -0.04514661431312561, 0.004313370678573847, 0.049012672156095505, 0.0281966645270586, 0.004063754342496395, -0.039139848202466965, -0.039683010429143906, 0.00736867543309927, 0.0017802639631554484, -0.011039034463465214, -0.02613583207130432, 0.0011122905416414142, -0.022972693666815758, 0.03158346191048622, -0.006945325993001461, 0.033612340688705444, -0.003406764240935445, -0.06748028844594955, -0.03696718439459801, 0.02472999319434166, -0.017636895179748535, -0.03651987388730049, -0.05604187026619911, 0.011086960323154926, 0.017285434529185295, -0.00536775030195713, 0.02795703336596489, 0.01582368090748787, -0.02500157617032528, -0.001808220986276865, -0.010463918559253216, -0.043804679065942764, 0.020113088190555573, 0.0024901728611439466, -0.023963171988725662, -0.019857481122016907, -0.041823722422122955, -0.0020308787934482098, -0.020975762978196144, 0.0052399467676877975, 0.03164736181497574, -0.0305290799587965, 0.04032203182578087, -0.01667836681008339, -0.021359173581004143, 0.003790175076574087, -0.014050406403839588, -0.006330271251499653, -0.023611711338162422, -0.0070012398064136505, -0.001005953992716968, -0.020672230049967766, 0.02266916073858738, -0.029171166941523552, -0.0012061463203281164, 0.0028596052434295416, -0.01878712698817253, 0.0042894077487289906, -0.00042509668855927885, -0.0006814526859670877, -0.02166270650923252, -0.0009535345598123968, 0.0014427825808525085, -0.010855317115783691, 0.010655623860657215, -0.0006739642121829093, -0.012756395153701305, -0.020895885303616524, 8.823938696878031e-05, 0.005243940744549036, 0.021486977115273476, 0.015512160025537014, -0.013004014268517494, 0.02434658259153366, -0.00443318672478199, 0.027270089834928513, 0.009345636703073978, -0.0034007735084742308, 0.05089777708053589, -0.025464864447712898, -0.023132449015975, 0.03255796432495117, 0.051504842936992645, -0.013483277522027493, 0.022972693666815758, 0.009721060283482075, 0.013411388732492924, -0.0005726199597120285, 0.031439680606126785, 0.007380656898021698, -0.01757299341261387, -0.004928425420075655, 0.03882033750414848, 0.005136106628924608, -0.03834107518196106, 0.03469867259263992, -0.01941016875207424, 0.004824585281312466, -0.0007683191797696054, 0.0040477789007127285, 0.011733965948224068, 0.004652848932892084, 0.037190843373537064, 0.019889432936906815, -0.009034115821123123, -0.018930906429886818, 0.01325962133705616, -0.043612971901893616, -0.003562524914741516, 0.030816638842225075, 0.015248565003275871, 0.014457779936492443, 0.012436886318027973, -0.05300653725862503, -0.03191894292831421, 0.033963803201913834, -0.036839380860328674, 0.02457023784518242, -0.01998528465628624, 0.03527379035949707, -0.04965168982744217, -0.039491306990385056, 0.03294137492775917, 0.055594559758901596, -0.03332478553056717, 0.0342194102704525, -0.02356378547847271, -0.024714017286896706, -0.016007399186491966, -0.020512474700808525, 0.012436886318027973, -0.021247345954179764, -0.019537972286343575, -0.0016774219693616033, 0.026615096256136894, 0.011358543299138546, -0.006178504321724176, -0.017908476293087006, -0.02391524612903595, 0.0014467764412984252, -0.008658692240715027, 0.006925356574356556, 0.017604943364858627, -0.027270089834928513, -0.023515859618782997, 0.04498685896396637, -0.016933973878622055, -0.013131817802786827, -0.03115212358534336, 0.03193492069840431, -0.0020668236538767815, 0.06211254000663757, 0.0361684150993824, -0.02971433289349079, 0.006462068762630224, 0.004648855421692133, -0.00020368695550132543, -0.009649170562624931, -0.049012672156095505, -0.008035650476813316, -0.012972063384950161, 0.01909065991640091, -0.018946880474686623, 0.02340403012931347, 0.024777919054031372, -0.009249784052371979, 0.013019990175962448, -0.013994492590427399, 0.04402833431959152, -0.008099552243947983, -0.011039034463465214, -0.015008932910859585, 0.0027158260345458984, -0.02722216211259365, 0.010024593211710453, 0.00452903937548399, 0.010535807348787785, 0.008363147266209126, -0.015120761469006538, 0.01250078808516264, -0.01133458036929369, -0.023547809571027756, -0.002270510420203209, -0.01123872771859169, -0.006470056250691414, 0.00995270349085331, 0.008115527220070362, -0.02757362276315689, -0.029267020523548126, 0.0354015938937664, 0.000890631228685379, -0.012820296920835972, 0.0010873288847506046, 0.003105227602645755, 0.02656717039644718, 0.020895885303616524, 0.02426670491695404, -0.006557921413332224, 0.03075273707509041, 0.015775755047798157, 0.013291572220623493, -0.018323838710784912, 0.03703108802437782, 0.00728081027045846, -0.015376368537545204, -0.023659637197852135, 0.015767766162753105, 0.019266389310359955, 0.033196981996297836, -0.01738128624856472, 0.0258642490953207, 0.00980093702673912, -0.009497404098510742, -0.03779790922999382, 0.011733965948224068, 0.0023723540361970663, -0.027781303972005844, -0.02442646026611328, 0.013954553753137589, -0.01302797719836235, 0.015847643837332726, -0.0009889800567179918, 0.0011392490705475211, -0.0039878711104393005, 0.03690328449010849, -0.010551783256232738, -0.012716456316411495, -0.012181279249489307, 0.036615725606679916, -0.04390053078532219, 0.020001260563731194, 0.030656883493065834, -0.04533832147717476, 0.031982846558094025, -0.005799087695777416, 0.0007024204824119806, 0.03017762117087841, 0.012029511854052544, -0.0281966645270586, -0.005052235443145037, -0.033388685435056686, 0.021055640652775764, 0.00033248899853788316, 0.021678682416677475, -0.03629621863365173, -0.007724129129201174, 0.007077123504132032, -0.006845479365438223, -0.04156811535358429, -0.017636895179748535, 0.0252731591463089, 0.00625039404258132, 0.05463603138923645, -0.0038540768437087536, 0.007819981314241886, -0.03175919130444527, 0.0184676181524992, 0.008187416940927505, 0.003610451240092516, 0.018579445779323578, -0.015352405607700348, 0.036807432770729065, 0.016039349138736725, 0.0014407857088372111, 0.0202249176800251, -0.028963487595319748, -0.0008447017753496766, 0.027893131598830223, 0.04009837284684181, -0.012948100455105305, 0.015815693885087967, 0.03821327164769173, -0.009625207632780075, 0.03243015706539154, -0.007208921015262604, 0.004165598191320896, -0.015008932910859585, 0.022365625947713852, 0.024554263800382614, 0.016598490998148918, -0.015104785561561584, 0.028883609920740128, -0.04000252112746239, 0.02687070332467556, 0.0053877197206020355, 0.027829229831695557, 0.017668845131993294, -0.01870724931359291, -0.038596682250499725, 0.000956030678935349, -0.02714228630065918, -0.0010169370798394084, -0.014689424075186253, -0.028883609920740128, -0.045498076826334, -0.01851554401218891, -0.021407099440693855, 0.008039643988013268, 0.002204611897468567, 0.024953648447990417, -0.04466735199093819, 0.0031291907653212547, 0.018451642245054245, 0.0318869948387146, 0.021902339532971382, -0.008371134288609028, 0.014865154400467873, 0.005835032090544701, 0.01119878888130188, 0.019234439358115196, 0.009153931401669979, 0.010408003814518452, -0.009026127867400646, 0.03453891724348068, -0.007620288524776697, -0.0018930905498564243, -0.025113403797149658, 0.005263910163193941, 0.01784457452595234, 0.039651062339544296, -0.012916149571537971, 0.0034706660080701113, 0.0018481595907360315, 0.010056544095277786, 0.008578815497457981, 0.01217329129576683, 0.008159459568560123, 0.005235952790826559, 0.008818447589874268, -0.0032490065786987543, 0.0178925022482872, -0.0010663610883057117, -0.030353350564837456, 0.031279925256967545, -0.023228300735354424, 0.0157517921179533, -0.022253798320889473, 0.014881129376590252, -0.0112786665558815, -0.02052845060825348, -0.018595421686768532, -0.03936350345611572, -0.048469509929418564, -0.014010467566549778, 0.017045803368091583, 0.002677884418517351, -0.005267903674393892, -0.01444979291409254, 0.03405965492129326, -0.011310617439448833, 0.014992957934737206, -0.007792024407535791, 0.02706240862607956, -0.0029374854639172554, 0.0142900375649333, -0.0015346414875239134, -0.005651314742863178, 0.005803081206977367, -0.033260881900787354, 0.025800347328186035, -0.016470687463879585, 0.006673743482679129, -0.005363756790757179, 0.004341328050941229, -0.03597670793533325, 0.003989867866039276, 0.004017825238406658, -0.024953648447990417, 0.0029255037661641836, 0.020560400560498238, 0.022030143067240715, 0.0022245810832828283, -0.006925356574356556, 0.0206083282828331, 0.011246714740991592, 0.00015501175948884338, 0.0140983322635293, -0.015887582674622536, 0.017413238063454628, -0.027797279879450798, 0.02103966474533081, -0.0026818783953785896, 0.0002630956587381661, -0.007360687479376793, -0.006398166995495558, -0.02765350043773651, 0.020863935351371765, -0.005819056648761034, -0.0020987745374441147, 0.026071930304169655, 0.007648245431482792, 0.028755806386470795, -0.007396632339805365, 0.018659323453903198, 0.004744708072394133, -0.02543291263282299, -0.031631387770175934, -0.004992327187210321, 0.014897105284035206, 0.030784687027335167, 0.0061984737403690815, 0.009353624656796455, -0.018339814618229866, -0.010200323536992073, -0.036807432770729065, 0.030624933540821075, -0.001160216866992414, 0.02998591586947441, -0.0008606772753410041, -0.006549933459609747, 0.026503268629312515, 0.03017762117087841, -0.02643936686217785, 0.06939734518527985, 0.009984654374420643, -0.001316975918598473, -0.015695877373218536, 0.029139216989278793, 0.005215983837842941, -0.006913375109434128, 0.04760683327913284, -0.021838437765836716, 0.02415487729012966, -0.0005456613725982606, 0.003941941540688276, -8.0251666076947e-05, 0.03080066293478012, 0.0064860316924750805, -0.001973966369405389, 0.013131817802786827, 0.003708300879225135, 0.030864564701914787, 0.016167152673006058, -0.008091564290225506, 0.034123554825782776, -0.021534902974963188, -0.053645554929971695, 0.016087274998426437, -0.012876210734248161, -0.0004003846552222967, -0.028755806386470795, -0.018659323453903198, -0.0314876064658165, -0.015024908818304539, -0.010495869442820549, 0.016965925693511963, -0.05105753242969513, 0.040577638894319534, 0.00774809205904603, -0.0057032350450754166, 0.029107265174388885, 0.018803102895617485, 0.005759148858487606, -0.03246210888028145, 0.035753052681684494, 0.0039818803779780865, -0.047766588628292084, 0.008075588382780552, 0.0024821851402521133, -0.020464548841118813, 0.013331511057913303, 0.01749311573803425, -0.025912176817655563, 0.0408332459628582, 0.038085468113422394, 0.015144724398851395, -0.006973282899707556, 0.010392028838396072, 0.005691253114491701, -0.00882643461227417, 0.00028106803074479103, 0.0021706640254706144, -0.0033069176133722067, 0.023340128362178802, 0.04565782845020294, -0.022030143067240715, -0.0022365627810359, -0.016039349138736725, -0.01928236521780491, 0.05393311008810997, 0.03270174190402031, -0.012676517479121685, 0.011941647157073021, -0.00662981066852808, 0.028803732246160507, 0.01446576789021492, -0.02698253095149994, 0.03257393836975098, 0.0001466496178181842, 0.01968175172805786, -0.02966640703380108, -0.010607697069644928, -0.029107265174388885, -0.009792949073016644, -0.004197549074888229, -0.010543795302510262, 0.022413553670048714, 0.0038061505183577538, 0.022493429481983185, -0.013075903989374638, 0.03818131983280182, -0.017013851553201675, -0.035561345517635345, -0.01129464153200388, -0.019537972286343575, -0.011055009439587593, -0.015408319421112537, -0.004087717738002539, 0.0013429360697045922, 0.029075315222144127, 0.037542302161455154, 0.03083261474967003, 0.026231685653328896, -0.0021227377001196146, 0.02196624130010605, -0.03374014422297478, 0.004261450842022896, 0.013555167242884636, 0.012700481340289116, -0.02434658259153366, 0.010727513581514359, 0.010663611814379692, 0.007456540130078793, -0.02656717039644718, -0.0019659786485135555, -0.004469131585210562, -0.023084521293640137, 0.003953923471271992, 0.017173606902360916, 0.00429739523679018, 0.004564984235912561, 0.0030672859866172075, -0.0011751939309760928, -0.007073129527270794, 0.0061185965314507484, -0.008514913730323315, -0.01119878888130188, -0.011630126275122166, 0.015080822631716728, -0.03193492069840431, 0.00275177089497447, -0.005643326789140701, 0.05476383492350578, 0.011478358879685402, 0.0016135202022269368, -0.02278098836541176, 0.011733965948224068, 0.015855632722377777, -0.024490362033247948, 0.008602778427302837, -0.020656254142522812, 0.01036007795482874, 0.007572362199425697, -0.020863935351371765, -0.03511403501033783, -0.006553927436470985, 0.007564374711364508, 0.0023843355011194944, -0.008986189030110836, -0.028803732246160507, 0.026774849742650986, -0.0001772276300471276, -0.029171166941523552, -0.016550563275814056, -0.016207091510295868, 0.0020408635027706623, -0.024362558498978615, 0.0007323744357563555, 0.008395098149776459, 0.03316503018140793, 0.028612026944756508, 0.0435490719974041, -0.01621507853269577, -0.004253462888300419, 0.0024841821286827326, 0.03840497508645058, -0.01190170831978321, -0.015847643837332726, -0.03476257249712944, 0.004217518027871847, 0.02228575013577938, -0.010807390324771404, 0.020656254142522812, 0.021726608276367188, -0.008159459568560123, 0.0028815714176744223, 0.016614465042948723, -0.016191115602850914, -0.004369284957647324, -0.009521367028355598, 0.030688835307955742, -0.030624933540821075, 0.0032450128346681595, 0.01754104159772396, -0.007452546153217554, 0.020432597026228905, 0.0018391733756288886, -0.03316503018140793, -0.007196939084678888, 0.0015246567782014608, -0.029251044616103172, 0.0206083282828331, 0.026295587420463562, 0.03910789638757706, 0.008466986939311028, 0.0030952428933233023, -0.0012880205176770687, -0.0005112143117003143, -0.006705694366246462, 0.009768986143171787, 0.03405965492129326, -0.012221217155456543, -0.01106299739331007, -0.017093729227781296, -0.0005546475877054036, 0.007488491013646126, -0.014785276725888252, -0.007424589246511459, 0.013115842826664448, 0.030545055866241455, -0.0037302670534700155, -0.023499883711338043, -0.019665775820612907, -0.0025321084540337324, 0.018882978707551956, 0.014417842030525208, -0.002861601999029517, 0.003376810345798731, 0.015160700306296349, -0.002130725421011448, -0.02139112539589405, -0.009753011167049408, -0.023164398968219757, 0.0018182056955993176, 0.03942740336060524, -0.013563155196607113, -0.013698946684598923, -0.04073739051818848, -0.008618754334747791, -0.02784520573914051, -0.016886048018932343, 0.02885165810585022, -0.004489101003855467, -0.005603388417512178, -0.006322283297777176, 0.003880036761984229, -0.011518297716975212, 0.011086960323154926, 0.0072368779219686985, -0.004177579656243324, 0.019266389310359955, 0.01979357935488224, -0.013083891943097115, 0.0035265800543129444, -0.002544090151786804, 0.020400647073984146, -0.017093729227781296, -0.029922014102339745, -0.04460344836115837, 0.0070092277601361275, -0.024554263800382614, -0.025448888540267944, 0.007983730174601078, -0.025416936725378036, 0.06032329052686691, -0.035369642078876495, 0.026583144441246986, 0.008610766381025314, -0.008738569915294647, -0.007668214850127697, 0.007800012361258268, -0.0017922455444931984, -0.007216908503323793, -0.013083891943097115, 0.00490046851336956, 0.014202172867953777, 0.01349126547574997, 0.04319760948419571, -0.01139049418270588, -0.03147163242101669, 0.05271897837519646, 0.009465453214943409, 0.024090975522994995, -0.020544426515698433, -0.009425514377653599, -0.019314317032694817, -0.004277426283806562, 0.031743213534355164, 0.017013851553201675, 0.020640278235077858, -0.01936224289238453, -0.004756689537316561, -0.007596325594931841, 0.009034115821123123, 0.04243078827857971, -0.006821515969932079, 0.006122590508311987, -0.03020957112312317, -0.0521119087934494, -0.01335547398775816, -0.012684505432844162, -0.007264834828674793, 0.013970528729259968, -0.015432282350957394, 0.008642717264592648, -0.0015336429933086038, -0.027461795136332512, 0.013555167242884636, 0.014010467566549778, -0.02535303495824337, 0.018212011083960533, 0.01734933629631996, 0.01851554401218891, 0.005635339301079512, 0.007045172620564699, -0.008187416940927505, 0.022333675995469093, -0.027909107506275177, -0.019218463450670242, -0.005587412975728512, 0.042366888374090195, -0.016790196299552917, -0.005547474138438702, 0.029330922290682793, -0.006450086832046509, 0.01726945862174034, -0.032605890184640884, -0.01862737163901329, 0.007963760755956173, -0.01444979291409254, -0.007057154085487127, -0.023068547248840332, 0.006825509946793318, 0.0024402495473623276, 0.007176969666033983, 0.007404619827866554, 0.02651924267411232, -0.009289722889661789, -0.001796239404939115, 0.0008796480833552778, 0.0054755848832428455, -0.03088054060935974, 0.0200332123786211, 0.006897399667650461, 0.027637524530291557, -0.016039349138736725, -0.0006040715961717069, 0.01325962133705616, 0.003436718136072159, 0.01129464153200388, 0.006446093320846558, -0.019394192844629288, 0.01734933629631996, -0.004237487446516752, -0.025369010865688324, -0.009010152891278267, 0.009553317911922932, 0.02068820409476757, 0.05735185742378235, 0.022557333111763, 0.016071300953626633, -0.01479326467961073, -0.015272527933120728, -0.006022743880748749, -0.0034966261591762304, 0.03180711716413498, 0.020304793491959572, 0.011885733343660831, 0.008978202007710934, -0.02142307534813881, 0.029890062287449837, 0.01637483388185501, -0.0026059949304908514, -0.007843945175409317, 0.04163201525807381, 0.011110924184322357, -0.0006744634592905641, -0.009082041680812836, -0.02209404483437538, 0.009465453214943409, -0.01781262457370758, 0.015120761469006538, -0.025656569749116898, -0.025065477937459946, -0.020129064098000526, -0.017317384481430054, -0.015424294397234917, 0.015647951513528824, 0.03201479837298393, 0.025209257379174232, 0.04463540017604828, 0.01452168170362711, -0.006130577996373177, 0.03300527483224869, 0.010855317115783691, -0.0092338090762496, 0.0032769637182354927, 0.025720471516251564, -0.019569924101233482, -0.012924137525260448, -0.024170853197574615, -0.01933029107749462, 0.005188026465475559, -0.020736131817102432, 0.0038840307388454676, 0.03981081396341324, -0.008650705218315125, -0.012892186641693115, -0.005643326789140701, 0.013155781663954258, -0.03243015706539154, 0.0161431897431612, -0.011574211530387402, 0.02025686763226986, -0.00387005228549242, -0.0064860316924750805, -0.018052255734801292, 0.007476509548723698, 0.009161919355392456, 0.02095978707075119, -0.02014504000544548, -0.027349965646862984, -0.012660542502999306, -0.0015885585453361273, -0.01781262457370758, -0.012716456316411495, -0.016007399186491966, 0.02111954241991043, -0.005791099742054939, -0.011654089204967022, 0.003039328847080469, 0.013459314592182636, -0.019474070519208908, -0.011174825951457024, 0.018755175173282623, -0.03402770310640335, 0.002621970372274518, -0.03270174190402031, 0.03374014422297478, -0.0005226967041380703, 0.028979461640119553, 0.0006829503690823913, -0.002861601999029517, 0.014202172867953777, -0.024714017286896706, -0.020208941772580147, -0.006645786110311747, 0.006845479365438223, -0.019617849960923195, 0.0020308787934482098, 0.031008344143629074, 0.017013851553201675, 0.005619363859295845, -0.0035824941005557775, 0.019857481122016907, -0.006034725345671177, -0.002302461303770542, 0.0036324174143373966, -0.009864838793873787, 0.010823366232216358, -0.01207743864506483, 0.001967975404113531, 0.011678052134811878, -0.006382191553711891, 0.009066066704690456, -0.0025101422797888517, -0.032605890184640884, 0.005531498696655035, -0.011829818598926067, 0.015272527933120728, 0.016502637416124344, 0.015160700306296349, 0.004740714095532894, 0.0034007735084742308, -0.0018521534511819482, -0.01217329129576683, -0.0012291109887883067, 0.007764067500829697, -0.007955772802233696, 0.0322863794863224, 0.001056376495398581, 0.0018551488174125552, -0.004744708072394133, -0.006957307457923889, 0.008267294615507126, -0.022956717759370804, 0.0067136818543076515, 0.008091564290225506, -0.0015526138013228774, -0.03020957112312317, -0.005231959279626608, -0.004604922607541084, -0.00732873659580946, 0.011989573948085308, 0.029171166941523552, 0.013083891943097115, -0.004716751165688038, -0.016247030347585678, 0.015448258258402348, 0.025384986773133278, 0.028180690482258797, -0.005207995884120464, -0.005906921811401844, 0.006270363461226225, -0.03290942311286926, 0.03437916189432144, -0.0003671856829896569, -0.006466062273830175, -0.005851007532328367, 0.004393248353153467, 0.006757614202797413, -0.012452861294150352, 0.008658692240715027, -0.008283269591629505, 0.015416307374835014, -0.01734933629631996, 0.00863472931087017, 0.009784962050616741, 0.02049649879336357, -0.007668214850127697, 0.038436926901340485, 0.005407689139246941, 0.002326424466446042, 0.0032330311369150877, 0.016630440950393677, -0.07591532915830612, 0.017828600481152534, -0.012508776038885117, -0.007292791735380888, -5.126496034790762e-05, 0.0024761944077908993, 0.002855611266568303, 0.009217833168804646, -0.007911840453743935, 0.0260559543967247, -0.02492169849574566, 0.007899858988821507, 0.012492800131440163, -0.009337648749351501, -0.025960102677345276, -0.022221848368644714, -0.0029394824523478746, 0.02573644556105137, -0.01862737163901329, 0.00966514553874731, -0.00901813991367817, -0.018994808197021484, 0.0034606812987476587, -0.003975889645516872, -0.01664641685783863, -0.013507241383194923, -0.020480524748563766, 0.00901813991367817, -0.023867318406701088, 0.0354015938937664, -0.0182759128510952, 0.006857460830360651, 0.01640678569674492, 0.005847014021128416, 0.02998591586947441, 0.02741386741399765, -0.018563469871878624, 0.014825215563178062, -0.016263006255030632, 0.014018455520272255, 0.0025380991864949465, 0.004003846552222967, -0.026231685653328896, 0.002743783174082637, -0.02014504000544548, -0.014417842030525208, -0.021279295906424522, 0.0022545349784195423, 0.010328127071261406, 0.0024102956522256136, -0.011925672180950642, -0.00401383126154542, 0.023707564920186996, -0.023883294314146042, -0.007979735732078552, 0.0016684358706697822, 0.012149328365921974, -0.01329956017434597, 0.0007343713659793139, -0.005235952790826559, -0.00658188434317708, 0.022765012457966805, -0.022349651902914047, 0.010056544095277786, 0.01114287506788969, 0.022876841947436333, -0.010272213257849216, -0.003939944785088301, 0.001630494138225913, 0.007815987803041935, 0.0029854117892682552, 0.005303848534822464, -0.009617219679057598, -0.0014357933541759849, 0.02730203978717327, -0.001062367227859795, -0.008458999916911125, -0.03549744561314583, -0.0002840634260792285, 0.004688793793320656, -0.0023663633037358522, -0.0140983322635293, 0.01347529049962759, 0.0076123010367155075, -0.00029729309608228505, -0.03453891724348068, -0.019537972286343575, -0.013890651986002922, 0.03380404785275459, -0.005028272047638893, -0.0184676181524992, 0.011206776835024357, -0.023931220173835754, -0.01479326467961073, -0.024490362033247948, 0.030129695311188698, -0.006150547415018082, -0.0305290799587965, -0.0036264266818761826, -0.01819603517651558, -0.013706933706998825, 0.011534273624420166, 0.006070670206099749, -0.03993861749768257, 0.0022625226993113756, -0.02803691104054451, -0.015416307374835014, 0.007600319106131792, 0.00452903937548399, -0.017509091645479202, -0.026471316814422607, -0.014745337888598442, 0.005855001509189606, 0.0074645280838012695, 0.02185441181063652, -0.009433502331376076, -0.015344417653977871, 0.014937043190002441, 0.0474470779299736, 0.011941647157073021, 0.0250814538449049, 0.04482710734009743, 3.323017881484702e-05, -0.008227355778217316, 0.015208626165986061, 0.004720744676887989, -0.005751161370426416, -0.004620898049324751, -0.0073766629211604595, -0.009497404098510742, 0.0022006179206073284, -0.017413238063454628, -0.007895865477621555, 0.014385891146957874, -0.006761608179658651, 0.03658377379179001, 0.02998591586947441, -0.02671094797551632, -0.004477119073271751, 0.01784457452595234, -0.02111954241991043, 0.005156075581908226, -0.007324742618948221, 0.006521976552903652, -0.014497718773782253, -0.018132133409380913, -0.006745632737874985, -0.0054556154645979404, 0.0019749647472053766, 0.011813843622803688, 0.011702015064656734, -0.007292791735380888, -0.0017662853933870792, 0.029346898198127747, 0.013547179289162159, -0.048629261553287506, -0.011398482136428356, -0.010487881489098072, 0.029075315222144127, -0.014377903193235397, 0.003770205657929182, 0.0037302670534700155, -0.03741449862718582, -0.015112773515284061, -0.0007912839064374566, -0.0018930905498564243, 0.012996026314795017, 0.030081767588853836, 0.00718495761975646, -0.010911230929195881, 0.009968679398298264, -0.03278161957859993, -0.0020238894503563643, -0.017668845131993294, 0.007192945573478937, -0.0032829544506967068, 0.010695562697947025, -0.029027389362454414, 0.029570553451776505, 0.024745969101786613, 0.01889895461499691, -0.003486641449853778, -0.022221848368644714, -0.0018611396662890911, 0.008698631078004837, -0.0006769595784135163, 0.006897399667650461, -0.03247808665037155, -0.014689424075186253, 0.0180842075496912, 0.011094948276877403, 0.0012910158839076757, -0.01656653918325901, -0.0017123683355748653, 0.008554852567613125, 0.027829229831695557, 0.0013688962208107114, -0.0027238137554377317, -0.0009505391353741288, -0.004780652932822704, 0.004109683912247419, 0.016518613323569298, 0.005583418998867273, -0.007101086433976889, 0.017285434529185295, -0.009673133492469788, -0.007077123504132032, 0.04428394138813019, -0.020049186423420906, 0.0020548419561237097, -0.024873772636055946, -0.010064532049000263, -0.03009774349629879, -0.02142307534813881, -0.012764383107423782, -0.00345069682225585, -0.0031950895208865404, -0.005487566348165274, -0.024474386125802994, 0.032446134835481644, -0.007304773665964603, 0.01586361974477768, 0.010176360607147217, 0.0015516153071075678, -0.00033423633431084454, -0.008187416940927505, -0.008642717264592648, -0.0018381749978289008, -0.014082357287406921, 0.01574380323290825, -0.0010633657220751047, -0.02092783711850643, 0.034315261989831924, -0.005295861046761274, -0.005495553836226463, -0.01450570672750473, 0.009337648749351501, 0.007708153687417507, 0.02348390780389309, 0.018068231642246246, -0.026631072163581848, -0.015104785561561584, 0.004365290980786085, 0.01762091927230358, -0.0030493135564029217, 0.0030712797306478024, 0.01536039263010025, 0.029490675777196884, 0.0038720490410923958, -0.013635044917464256, -0.013099866919219494, 0.011518297716975212, -0.013427363708615303, 0.03568914905190468, 0.027893131598830223, 0.01106299739331007, 0.013051941059529781, 0.009617219679057598, -0.02437853254377842, 0.008522901684045792, -0.012005548924207687, 0.015136736445128918, 0.018180059269070625, -0.012684505432844162, 0.00037741995765827596, 0.02597607858479023, -0.0024662096984684467, 0.006929350551217794, -0.014106320217251778, 0.009433502331376076, 0.001503688981756568, 0.01738128624856472, 0.0035804971121251583, 0.001437790342606604, -0.02822861634194851, -0.01889895461499691, -0.008187416940927505, -0.006326277274638414, 0.0030433228239417076, 0.010775439441204071, 0.022573307156562805, 0.00966514553874731, 0.002879574429243803, -0.00765223940834403, 0.0008806465775705874, -0.017588967457413673, -0.009753011167049408, -0.02752569690346718, -0.0012930127559229732, -0.007855926640331745, 0.00168141582980752, -0.013019990175962448, -0.005719210486859083, 0.006418135948479176, -0.00429739523679018, -0.0015985432546585798, -0.011845794506371021, 0.0035585309378802776, 0.025656569749116898, 0.005287873093038797, 0.008858385495841503, -0.006661761552095413, 7.667902536923066e-06, 0.011765916831791401, 0.007288798224180937, 0.016039349138736725, -0.006046706810593605, 0.012532738968729973, 0.01320370752364397, 0.004880499094724655, -0.0017243499169126153, 0.014945031143724918, 0.006410148460417986, -0.0027777310460805893, 0.010096482932567596, -0.0070092277601361275, -0.014761313796043396, -0.01007252000272274, 0.06748028844594955, -0.004465137608349323, 0.004125659354031086, -0.012916149571537971, 0.0020708173979073763, -0.0377340093255043, -0.006917369086295366, 0.021439051255583763, 0.022141970694065094, -0.008019674569368362, 0.007907846942543983, -0.016518613323569298, 0.005068210884928703, 0.010543795302510262, -0.011094948276877403, 0.018227985128760338, 0.011078973300755024, -0.005715216509997845, 0.020943811163306236, -0.009601243771612644, -0.0010893258731812239, 0.006909381132572889, -0.0029933995101600885, -0.0006415140815079212, 0.005076198372989893, 0.013595106080174446, -0.022621234878897667, 0.013738884590566158, -0.007392638362944126, 0.020208941772580147, -0.009034115821123123, -0.008482962846755981, -0.019585898146033287, -0.01979357935488224, -0.011614150367677212, 0.009321673773229122, 0.0009505391353741288, 0.01020831149071455, -0.0161431897431612, 0.0032769637182354927, -0.0004445667436812073, -0.004225505981594324, 0.024090975522994995, 0.006186492275446653, 0.004860530141741037, -0.015935508534312248, 0.005251928232610226, -0.0043573034927248955, -0.013778823427855968, 0.003370819380506873, -0.009441489353775978, -0.008698631078004837, 0.017636895179748535, 0.01800432987511158, 0.016039349138736725, -0.004668824374675751, 0.006390179041773081, -0.00714501878246665, 0.002855611266568303, 0.017397262156009674, -0.013778823427855968, 0.008395098149776459, 0.00022278260439634323, -0.012748407199978828, -0.017972378060221672, -0.012508776038885117, -0.008251318708062172, -0.028675928711891174, 0.008666680194437504, 0.0018990813987329602, -0.008898324333131313, 0.027509720996022224, 0.0013768839417025447, -0.018851028755307198, 0.011909696273505688, -0.01920248754322529, 0.004293401725590229, -0.007204927038401365, -0.006206461228430271, 0.0064860316924750805, 0.00681352848187089, -0.0005177043494768441, -0.010959156788885593, -0.02472999319434166, 0.007907846942543983, 0.0038760430179536343, 0.005942866671830416, -0.015488196164369583, -0.002468206686899066, -0.006070670206099749, -0.009792949073016644, -0.0035565339494496584, -0.0029075315687805414, 0.01022428646683693, 0.009121980518102646, 0.012005548924207687, -0.01139049418270588, -0.0021467008627951145, 0.0010663610883057117, -0.011126899160444736, 0.0011342568323016167, 0.009920752607285976, -0.0025380991864949465, 0.014401866123080254, -0.008706619031727314, -0.01333949901163578, 0.021630756556987762, -0.017525065690279007, -0.013563155196607113, 0.0023344121873378754, 0.007756080012768507, 0.008538876660168171, -0.014082357287406921, 0.011670064181089401, -0.01738128624856472, 0.0018511549569666386, 0.01917053759098053, -0.004960376303642988, -0.037158891558647156, -0.02057637646794319, -0.0042694383300840855, 0.0005231958930380642, 0.008658692240715027, -0.02589620091021061, 0.006957307457923889, -0.01963382586836815, -0.020911861211061478, -0.010415991768240929, -0.0028356420807540417, 0.0022525382228195667, -0.0004116173950023949, 0.01905870996415615, -0.011797867715358734, 0.011086960323154926, 0.007724129129201174, 0.0029754270799458027, 0.015000944957137108, -0.0023663633037358522, 0.015104785561561584, 0.006809534505009651, 0.011302629485726357, -0.008063606917858124, -0.0008417064091190696, 0.01586361974477768, 0.00359247880987823, 0.02600802853703499, 0.0027857187669724226, 0.0019010782707482576, -0.006374203599989414, 0.0161352027207613, 0.025305109098553658, -0.011598175391554832, 0.018643347546458244, 0.0015196644235402346, -0.00900216493755579, 0.0023803417570888996, -0.02714228630065918, 0.018882978707551956, -0.004824585281312466, 0.00011214015103178099, 0.005060222931206226, -0.015352405607700348, -0.0052399467676877975, 0.0012241186341270804, 0.00573518592864275, 0.0180842075496912, 0.005894940346479416, 0.020863935351371765, 0.0182759128510952, 0.005495553836226463, 0.003107224591076374, 0.004097702447324991, -0.005204001907259226, -0.02391524612903595, 0.024873772636055946, -0.0054476275108754635, 0.00396590493619442, -0.009585268795490265, 0.01574380323290825, -0.000899617385584861, -0.03185504302382469, 0.007883883081376553, 0.00863472931087017, -0.01263657957315445, -0.01897883228957653, -0.020991738885641098, -0.017956404015421867, -0.004956382792443037, 0.008986189030110836, 0.0019330291543155909, -0.004752695560455322, 0.022749038413167, 0.010895255021750927, -0.008315220475196838, 0.002442246535792947, -0.008419061079621315, -0.0016784204635769129, 0.007392638362944126, -0.002014903351664543, -0.0075244358740746975, -0.006537951994687319, 0.01816408336162567, 0.005148088093847036, -0.0035046138800680637, -0.022030143067240715, 0.011558236554265022, -0.0010119447251781821, -0.019218463450670242, -0.0014707396039739251, -0.008642717264592648, -0.050067052245140076, 0.0020967775490134954, 0.012277131900191307, -0.006386185064911842, 0.0036264266818761826, 0.028324468061327934, 0.014050406403839588, 0.009585268795490265, 0.0276055745780468, 0.024138901382684708, 0.01432997640222311, 0.0013149790465831757, -0.003494629170745611, 0.00820339284837246, -5.52900273760315e-05, -0.015887582674622536, 0.0033129085786640644, 0.012860235758125782, 0.014250099658966064, -0.0017672838876023889, 0.01765286922454834, -0.011318604461848736, -0.013083891943097115, 0.011749941855669022, 0.016151176765561104, 0.006617829203605652, 0.02231770008802414, 0.00011956624075537547, 0.029458725824952126, -0.030321400612592697, 0.012277131900191307, -0.006869442295283079, 0.001832184148952365, 0.0023244277108460665, 0.006929350551217794, -0.010815378278493881, 0.00277573405764997, -0.006042713299393654, -0.008994176983833313, -2.6225319743389264e-05, -0.0071570007130503654, 0.014202172867953777, -0.010376052930951118, 0.008874361403286457, 0.01675824448466301, 0.031439680606126785, -0.019218463450670242, 0.0024362558033317327, 0.023499883711338043, -0.0285800751298666, -0.0157517921179533, -0.020432597026228905, 0.004019821994006634, -0.006645786110311747, -0.005739179439842701, 0.024330606684088707, -0.0021586823277175426, 0.003738254774361849, 0.011877745389938354, 0.004956382792443037, -0.003518592333421111, 0.018148109316825867, -0.004716751165688038, 0.0022685136646032333, -0.005000315140932798, -0.00042334935278631747, -0.011094948276877403, -0.029107265174388885, 0.0005376736517064273, 0.02298866957426071, -0.015687890350818634, -0.0008486956357955933, 0.012820296920835972, -0.02337208017706871, 0.007983730174601078, -0.010471905581653118, 0.0038021565414965153, 0.009601243771612644, -0.0067815775983035564, 0.004125659354031086, 0.006893405690789223, -0.017413238063454628, -0.009241796098649502, 0.011638113297522068, -0.0028576082549989223, 0.015504172071814537, -0.010935193859040737, -0.011422445066273212, 0.01442582905292511, 0.001784257823601365, 0.005128118675202131, -0.006509995087981224, -0.00114224455319345, -0.009649170562624931, 0.0029314947314560413, -0.011989573948085308, 0.016270993277430534, 0.01190170831978321, -0.012341033667325974, 0.015991423279047012, 0.011462383903563023, 0.0004465636739041656, 0.00018122149049304426, 0.007923821918666363, -0.012700481340289116, -0.0014627518830820918, -0.011310617439448833, 0.015568073838949203, 0.013155781663954258, 0.008522901684045792, -0.010096482932567596, 0.025209257379174232, -0.013219683431088924, 0.008435036055743694, -0.00601874990388751, -0.0023983141873031855, 0.019314317032694817, 0.01730141043663025, -0.013227670453488827, 0.003254997543990612, -0.009201858192682266, 0.0034427091013640165, 0.010767451487481594, -0.02115149237215519, 0.020049186423420906, 0.005479578394442797, 0.008443024009466171, -0.011717990972101688, -0.0334525890648365, -0.0038840307388454676, 0.005383725743740797, 0.006454080808907747, 0.0057032350450754166, 0.00559939444065094, -0.0059708235785365105, 0.009912765584886074, 0.007005233783274889, 0.0016844113124534488, 0.018132133409380913, 0.009864838793873787, 0.007907846942543983, -0.006506001111119986, 0.014337964355945587, -0.00048051151679828763, 0.0001689902856014669, -0.001485716667957604, -0.010991107672452927, 0.02177453599870205, -0.0008931273478083313, -0.002627961104735732, 0.0019549953285604715, 0.0017213545506820083, -0.017125679180026054, -0.014122296124696732, -0.007999705150723457, 0.021295271813869476, 0.005263910163193941, 0.02193428948521614, -0.026822777464985847, 0.019490046426653862, -0.0037282700650393963, 0.002853614278137684, -0.014665461145341396, -0.0002596010162960738, -0.007452546153217554, 0.00396590493619442, 0.0076123010367155075, -0.007632269989699125, -0.0045050764456391335, -0.006246400065720081, -0.0036523868329823017, -0.004788640420883894, -0.016151176765561104, 0.005072204861789942, 0.023196350783109665, -0.0012520757736638188, 0.018227985128760338, 0.020816007629036903, -0.004105689935386181, -0.008714606985449791, -0.0044970884919166565, 0.00018134628771804273, -0.002566056326031685, 0.014921068213880062, -0.014202172867953777, 0.007360687479376793, -0.007476509548723698, 0.010991107672452927, 0.010240262374281883, -0.008514913730323315, -0.010024593211710453, -0.01909065991640091, 0.005467596929520369, 0.00774809205904603, -0.0033568409271538258, -0.021886363625526428, -0.005104155745357275, 0.020736131817102432, 0.029858112335205078, -0.004105689935386181, 0.0016914005391299725, 0.002118743723258376, -0.015104785561561584, 0.009505391120910645, -0.004245475400239229, -0.013323523104190826, 0.01873919926583767, 0.004153616260737181, 0.0019230445614084601, -0.007428583223372698, -0.0012940112501382828, 0.010959156788885593, 0.005271897651255131, 0.017668845131993294, 0.011733965948224068, -0.0028276543598622084, -0.0004081227525603026, -0.009369599632918835, 5.8004603488370776e-05, 0.015639962628483772, 0.0027977002318948507, -0.004465137608349323, 0.021550878882408142, -0.025720471516251564, -0.008698631078004837, 0.003512601600959897, 0.027238138020038605, -0.004768671002238989, -0.022765012457966805, 0.0001322966709267348, -0.006134571973234415, 0.013187732547521591, -0.006705694366246462, 0.027813253924250603, 0.0022505412343889475, 0.013115842826664448, 0.01881907694041729, 0.016790196299552917, -0.002929497743025422, 0.006881424225866795, -0.0010453934082761407, 0.01987345702946186, 0.00504424748942256, -0.011150862090289593, -0.02757362276315689, -0.01746116392314434, -0.0023543816059827805, 0.013890651986002922, 0.004608916584402323, -0.023132449015975, 0.015544110909104347, 0.012772370129823685, 0.008466986939311028, -0.02402707375586033, -0.010495869442820549, 0.007624282501637936, -0.008235343731939793, 0.018291886895895004, -0.007192945573478937, 0.0115662245079875, -0.00016499642515555024, -0.009625207632780075, 0.0008666680660098791, -0.0039958590641617775, 0.0024781913962215185, -0.005323817953467369, -0.013722909614443779, 0.003235028125345707, -0.001725348411127925, -0.0023284214548766613, -0.020464548841118813, 0.0036923254374414682, -0.00802766252309084, 0.0010503856465220451, 0.01115885004401207, 0.009641182608902454, -0.022717086598277092, 0.017860550433397293, 0.030465178191661835, -0.007668214850127697, 0.006502007134258747, 0.004748702049255371, 0.0008621749584563076, -0.014825215563178062, 0.002228575060144067, 0.001473735086619854, 0.012964075431227684, 0.01583166792988777, -0.0011062998091802, 0.009920752607285976, 0.020017236471176147, 0.008714606985449791, -0.009177894331514835, 9.586829037289135e-06, 0.007807999849319458, -0.0026738906744867563, -0.01835578866302967, 0.01011245884001255, 0.01119878888130188, -0.005906921811401844, 0.018930906429886818, 0.0006195478490553796, -0.0012380972038954496, 0.03418745845556259, 0.005383725743740797, 0.01325962133705616, 0.026583144441246986, 0.016390809789299965, 0.013682970777153969, -0.0026579152327030897, 0.001157221500761807, -0.014314001426100731, 0.0013129820581525564, 0.009161919355392456, -0.0061904857866466045, 0.00859479047358036, 0.014481743797659874, -0.002596010221168399, -0.02072015590965748, -0.004233493469655514, -0.013898639939725399, 0.009968679398298264, 0.015376368537545204, -0.010455930605530739, -0.0016854096902534366, 0.0002322680375073105, 0.00909801758825779, 0.00820339284837246, 0.026343513280153275, -0.0007443560170941055, 0.017077753320336342, -0.019569924101233482, 0.01851554401218891, -0.0029814180452376604, -0.008602778427302837, -0.011949635110795498, -0.007839950732886791, -0.0005311836139298975, -0.007033190689980984, 0.01995333470404148, -0.008514913730323315, -0.004768671002238989, 0.042910054326057434, 0.005739179439842701, -0.003562524914741516, -0.021439051255583763, -0.008938263170421124, 0.0006919365841895342, -0.009401551447808743, 0.019585898146033287, 0.009545329958200455, -0.0016634435160085559, 0.007903852500021458, 0.027909107506275177, -0.0090421037748456, 0.007033190689980984, 0.014897105284035206, 0.0007952777668833733, -0.009561305865645409, 0.0003070281236432493, -0.008087570779025555, -0.012876210734248161, 0.0040757362730801105, -8.212378452299163e-05, 0.006789565086364746, 0.005116137210279703, -0.033037226647138596, 0.007572362199425697, 0.00662182318046689, -0.014968994073569775, 0.008994176983833313, -0.004465137608349323, -0.0003284951380919665, 0.011702015064656734, 0.00629832036793232, 0.00039414424099959433, -0.007085110992193222, 0.010663611814379692, 0.022717086598277092, -0.0250814538449049, 0.0010843335185199976, 0.008275281637907028, 0.020049186423420906, -0.012069450691342354, 0.005056229420006275, 0.0013189729070290923, 0.0019939355552196503, 0.0016095263417810202, 0.002444243524223566, -0.009609231725335121, -0.004796628374606371, 0.005954848136752844, -0.005779118277132511, 0.0020268848165869713, 0.0011981585994362831, -0.0047846464440226555, -0.008419061079621315, -0.001897084410302341, 0.011630126275122166, -0.014154247008264065, -0.015767766162753105, -0.00658188434317708, 0.00042809208389371634, -0.006382191553711891, -0.0008516910602338612, -0.004021818749606609, 0.009473440237343311, 0.010463918559253216, -0.0017882516840472817, 0.01606331206858158, -0.012508776038885117, 0.01129464153200388, 0.023595735430717468, 0.006973282899707556, 0.008187416940927505, -0.010160384699702263, 0.010080507956445217, -0.013746872544288635, 0.01730141043663025, -0.02142307534813881, 0.02958652935922146, -0.015647951513528824, -0.017908476293087006, -0.0309124905616045, -0.014250099658966064, -0.0028376388363540173, -0.015799717977643013, 0.008235343731939793, 0.0035285770427435637, -0.002414289629086852, 0.009369599632918835, -0.01714165508747101, -0.005775124300271273, 0.017604943364858627, -0.013898639939725399, -0.0047327266074717045, -0.002879574429243803, -0.02613583207130432, -0.013706933706998825, -0.00015326445281971246, -0.010855317115783691, -0.007240871898829937, -0.011206776835024357, 0.004453156143426895, 0.01250078808516264, 0.020512474700808525, 0.0200332123786211, -0.022493429481983185, 0.012149328365921974, -0.001080339658074081, 0.023611711338162422, -0.014002479612827301, 0.018659323453903198, 0.0019230445614084601, 0.0026239673607051373, -0.01909065991640091, -0.0008861381211318076, 0.009321673773229122, 0.004465137608349323, 0.00356851564720273, 0.005443633999675512, 0.018659323453903198, -0.013914614915847778, 0.023068547248840332, 0.0024402495473623276, 0.009776974096894264, -0.016582515090703964, -0.0017523069400340319, -0.0032150589395314455, -0.026615096256136894, -0.002633951837196946, 0.018675297498703003, -0.007292791735380888, -0.015991423279047012, -1.551521745568607e-05, 0.01749311573803425, -0.012836271896958351, -0.0037342607975006104, -0.009824899956583977, 0.003209067974239588, -0.017780672758817673, -0.007648245431482792, -0.004285413771867752, -0.001580570824444294, 0.006462068762630224, 0.011710003018379211, -0.022876841947436333, -0.009984654374420643, -0.033931851387023926, -0.01436991523951292, -0.009305697865784168, -0.002290479838848114, -0.007879889570176601, 0.005587412975728512, -0.005283879116177559, -0.01213335245847702, 0.01757299341261387, 0.005140100140124559, 0.008938263170421124, 0.009920752607285976, 0.003205074230208993, -0.017860550433397293, 0.00783595722168684, 0.019745653495192528, 0.007596325594931841, -0.019314317032694817, -0.019745653495192528, -0.011262690648436546, 0.0026938598603010178, 0.010703549720346928, 0.004748702049255371, -0.0011981585994362831, 0.0051680575124919415, 0.003494629170745611, -0.02340403012931347, 0.0044251992367208, -0.009113992564380169, 0.01625501736998558, -0.008007693104445934, 0.0182759128510952, 0.0026299580931663513, -0.0001409084361512214, -0.0014847181737422943, 0.018132133409380913, -0.00030378313385881484, 0.012349020689725876, 0.01366699580103159, -0.02947470173239708, 0.015472221188247204, 0.007113067898899317, -0.037350594997406006, -0.029842136427760124, 0.008063606917858124, -0.0036443991120904684, 0.009281734935939312, 0.010655623860657215, -0.01928236521780491, 0.016790196299552917, 0.0015725831035524607, 0.011318604461848736, -0.013139805756509304, 0.005227965302765369, 0.005407689139246941, -0.017525065690279007, 0.0028516175225377083, -0.01628696918487549, 0.008666680194437504, -0.007819981314241886, 0.012620603665709496, 0.010759464465081692, -0.00448111305013299, 0.013986504636704922, -0.03300527483224869, 0.029075315222144127, -0.02263720892369747, 0.012644566595554352, -0.007939797826111317, -0.008023669011890888, 0.0019519999623298645, 0.005439640022814274, 0.0035205893218517303, -0.013890651986002922, -0.01129464153200388, -0.011574211530387402, -0.007855926640331745, -0.006266369484364986, -0.003752233227714896, 0.022605258971452713, -0.0012321063550189137, -0.0021287284325808287, -0.012053475715219975, -0.022493429481983185, -0.02776532806456089, -0.011957623064517975, -0.03147163242101669, -0.01683812215924263, 0.011350555345416069, 0.019042734056711197, 0.012468837201595306, 0.0032629852648824453, 0.0022924768272787333, 0.014306013472378254, 6.087519068387337e-05, 0.015128749422729015, 0.012301094830036163, 0.013139805756509304, 0.003494629170745611, -0.012684505432844162, -0.0338359996676445, 0.011326592415571213, 0.017764698714017868, 0.003634414402768016, 0.01087129209190607, -0.0057631428353488445, -0.0037542302161455154, 0.007508460432291031, -0.011749941855669022, 0.003310911590233445, -0.004572971723973751, -0.00282366038300097, 0.031871017068624496, 0.01933029107749462, -0.004764677491039038, -0.008387110196053982, 0.003898009192198515, 0.005467596929520369, -0.011909696273505688, -0.0041296533308923244, 0.0006105616339482367, 0.00448111305013299, -0.011039034463465214, -0.0025281147100031376, 0.009577280841767788, -0.004984339699149132, -0.0033009268809109926, 0.0014487734297290444, -0.011925672180950642, -0.015608012676239014, 0.02551279030740261, -0.0050122966058552265, 0.0021047652699053288, -0.002414289629086852, 0.006386185064911842, 0.024793894961476326, 0.016310932114720345, -0.01230908278375864, -0.000962021469604224, 0.0043573034927248955, 0.010096482932567596, -0.002003920264542103, 0.001985947834327817, -0.020288819447159767, 0.00503626000136137, 2.0000512449769303e-05, 0.0002693360729608685, 0.012564689852297306, -0.009737035259604454, 0.005471590906381607, -0.020161015912890434, 0.004441174678504467, -0.0010723519371822476, 0.004836566746234894, 0.00536775030195713, 0.015016920864582062, 0.00970508437603712, 0.011078973300755024, -0.0005516521632671356, 0.012468837201595306, 0.014729362912476063, 0.025129379704594612, -0.010999095626175404, -0.00629832036793232, 0.010320139117538929, 0.006937338039278984, 0.019825531169772148, -0.02893153578042984, -0.005547474138438702, 0.018243961036205292, -0.016358857974410057, -0.02543291263282299, -0.006981270853430033, -0.000282565742963925, -0.007939797826111317, 0.0182759128510952, 0.002757761627435684, 0.013019990175962448, 0.007500472478568554, 0.0035225863102823496, -0.0178925022482872, -0.0025281147100031376, -0.00671767583116889, 0.0012361002154648304, 0.011486346833407879, -0.001322966767475009, -0.016854098066687584, -0.007332730572670698, 0.002414289629086852, -0.015839656814932823, -0.008219367824494839, 0.006913375109434128, 0.024043049663305283, -0.007995711639523506, 0.011765916831791401, -0.002480188151821494, -0.020704180002212524, -0.015248565003275871, 0.01971370168030262, -0.001710371347144246, -0.02519328147172928, 0.005495553836226463, 0.01030416414141655, 0.00296544237062335, 0.007963760755956173, 0.006905387155711651, -0.019729677587747574, -0.0204166229814291, -0.043069805949926376, -0.001086330390535295, 0.014761313796043396, 0.017780672758817673, 0.005140100140124559, -0.0023364091757684946, 0.013499253429472446, -0.009681121446192265, 0.0063662161119282246, 0.01574380323290825, 0.011638113297522068, -0.00890631228685379, -0.025944126769900322, 0.009273746982216835, -0.0009640183998271823, 0.011182812973856926, 0.016350870952010155, -0.0008317217580042779, -0.004173585679382086, 0.013563155196607113, -0.021295271813869476, 0.012828284874558449, -0.0005256920703686774, -0.001411830191500485, 0.012940112501382828, -0.0056153698824346066, 0.006769596133381128, 0.02150295302271843, -0.015296490862965584, -0.01952199637889862, 0.015919534489512444, -0.0013189729070290923, -0.0009819908300414681, 0.010296176187694073, 0.03636011853814125, -0.008754545822739601, 0.005144094116985798, -0.021087590605020523, 0.004005843307822943, 0.021822461858391762, 0.0023923232220113277, 0.007105080410838127, 0.017764698714017868, -0.0016015386208891869, 0.007460534106940031, -0.0035006199032068253, -0.0058310385793447495, -0.00555945560336113, 0.005571437533944845, -0.014577596448361874, -0.0052998545579612255, -0.013619069010019302, -0.006246400065720081, 0.01242091041058302, 0.009177894331514835, -0.008123515173792839, 0.013331511057913303, -0.023116473108530045, -0.006014755927026272, 0.008395098149776459, 0.016350870952010155, -0.0305290799587965, -0.016390809789299965, 0.009465453214943409, 6.864450369903352e-06, -0.011055009439587593, -0.013547179289162159, 0.02971433289349079, 0.0028376388363540173, 0.012884198687970638, -0.02982616052031517, -0.018994808197021484, -0.01312382984906435, 0.02177453599870205, -0.018132133409380913, -0.0029434761963784695, 0.011270678602159023, -0.00820339284837246, 0.003328884020447731, 0.0036004665307700634, -0.0028895591385662556, -0.011406470090150833, 0.0005596398841589689, -0.004553002770990133, -0.018100181594491005, -0.02519328147172928, 0.01008849497884512, 0.015855632722377777, -0.004808609839528799, -0.011909696273505688, 0.014889117330312729, 0.015839656814932823, 0.022573307156562805, 0.008051625452935696, 0.0002660910540726036, -0.003089252160862088, -0.011829818598926067, -0.005711222533136606, 0.02391524612903595, -0.005799087695777416, 0.0066338046453893185, 0.010240262374281883, -0.0027058415580540895, -0.001423811772838235, 0.018148109316825867, -0.010104470886290073, -0.023819392547011375, -0.013539192266762257, -0.011110924184322357, 0.02302061952650547, 0.011678052134811878, 0.038948141038417816, 0.020400647073984146, -0.01263657957315445, 0.014961007051169872, 0.009984654374420643, -0.004640867467969656, -0.009641182608902454, -0.008554852567613125, -0.005471590906381607, -0.021950265392661095, 0.003800159553065896, -0.015408319421112537, -0.0338359996676445, 0.01012843381613493, 0.01016837265342474, 0.007831963710486889, -0.004764677491039038, -0.021359173581004143, -0.00044881022768095136, -0.0276055745780468, 0.018611395731568336, -0.003083261428400874, 0.0012820296688005328, 0.006937338039278984, -0.007380656898021698, -0.001449771923944354, 0.016007399186491966, -0.011797867715358734, -0.012197254225611687, 0.011406470090150833, -0.026886679232120514, 0.020911861211061478, -0.018579445779323578, -0.02415487729012966, -0.020863935351371765, 0.004265444353222847, 0.003376810345798731, 0.017636895179748535, 0.025225231423974037, 0.0036803437396883965, -0.011917684227228165, 0.010799402371048927, 0.01083135325461626, -0.007696171756833792, 0.011933659203350544, -0.0029953964985907078, -0.014258086681365967, -0.0002524869632907212, 0.001378880813717842, 0.002903537591919303, 0.022812940180301666, -0.011454395949840546, -0.02472999319434166, 0.012724444270133972, 0.01263657957315445, -0.008658692240715027, -5.0266495236428455e-05, -0.012588652782142162, -0.009433502331376076, 0.006733651272952557, -0.0031691293697804213, -0.006398166995495558, 0.006917369086295366, 0.012021524831652641, -0.00869064312428236, 0.012828284874558449, -0.011366531252861023, 0.014242111705243587, -0.013994492590427399, 0.03040127642452717, -0.017045803368091583, 0.0016105248359963298, -0.03389989957213402, -0.004461143631488085, -0.0053078425116837025, 0.008079582825303078, 0.009505391120910645, 0.018691273406147957, 0.00869064312428236, -0.0008841411909088492, 0.02247745543718338, 0.009361612610518932, -0.00555146811529994, -0.03284551948308945, 0.006442099343985319, -0.007164988201111555, 0.008243330754339695, 0.009617219679057598, -0.006474050227552652, 0.01730141043663025, 0.005108149256557226, -0.025640593841671944, -0.012349020689725876, 0.0001522659877082333, 0.0034467028453946114, -0.0012041493318974972, 0.004604922607541084, -0.0007049166597425938, -0.0033169023226946592, 0.001319971401244402, -0.008419061079621315, 0.019889432936906815, 0.014393878169357777, -0.010751476511359215, -0.010671598836779594, -0.008131503127515316, -0.011086960323154926, -0.004189561121165752, -0.011350555345416069, 0.013651019893586636, -0.012141340412199497, 0.00732873659580946, -0.031743213534355164, -0.0013858700403943658, 0.01316376868635416, -0.002358375582844019, 0.008075588382780552, -0.00869064312428236, 0.011949635110795498, -0.0006270363228395581, -0.0034666722640395164, -0.017525065690279007, 0.0017872531898319721, 0.01734933629631996, -0.0014008471043780446, 0.007085110992193222, 0.013698946684598923, 0.008347171358764172, 0.007660227362066507, 0.0184676181524992, 0.003782187355682254, 0.01106299739331007, 0.004676812328398228, 0.0069213625974953175, -0.007364681456238031, 0.008283269591629505, -0.0011222752509638667, 0.020736131817102432, -0.00882643461227417, 0.0014927058946341276, -0.002669896697625518, -0.01722153276205063, 0.021215394139289856, 0.015424294397234917, 0.0036983161699026823, 0.004237487446516752, 0.007468521595001221, 0.010671598836779594, 0.029842136427760124, -0.010743488557636738, -0.001891093677841127, 0.013275597244501114, 0.009737035259604454, 0.022221848368644714, -0.03674352914094925, 0.0007538414211012423, -0.013890651986002922, 0.010551783256232738, 0.003346856217831373, 0.005311836488544941, -0.014673449099063873, 0.027349965646862984, -0.014609547331929207, 0.00047127570724114776, 0.0045689782127738, -0.01578374207019806, -0.004896474536508322, -0.00988081470131874, 0.006745632737874985, -0.006757614202797413, -0.021263321861624718, -0.006362222135066986, 0.026918629184365273, 0.010815378278493881, -0.007188951596617699, 5.4416370403487235e-05, -0.0038580705877393484, 0.011310617439448833, 0.004309377167373896, -0.009657158516347408, 0.0011013074545189738, 0.0037182853557169437, 0.0035884848330169916, 0.010551783256232738, 0.011598175391554832, 0.024170853197574615, -0.012317069806158543, -0.006254388019442558, 0.023611711338162422, -0.011670064181089401, -0.004321358632296324, 0.006214449182152748, 0.005523511208593845, -0.0012650557328015566, -0.013898639939725399, -0.01819603517651558, -0.009768986143171787, -0.000757835281547159, 0.008443024009466171, -0.0009465452749282122, -0.011893721297383308, 0.0056832656264305115, -0.007304773665964603, -0.0038301136810332537, 0.010503856465220451, 0.01667836681008339, -0.017764698714017868, 0.008722594007849693, -0.0006250393926165998, 0.020592352375388145, -0.019729677587747574, -0.004968364257365465, 0.010152396745979786, 0.021870387718081474, -0.017668845131993294, 0.008482962846755981, 0.01036007795482874, -0.004764677491039038, 0.011542260646820068, 0.00774809205904603, -0.011638113297522068, 0.006442099343985319, -0.0058310385793447495, -0.0003462179156485945, -4.6241431846283376e-05, 0.003193092532455921, -0.004313370678573847, -0.019506022334098816, -0.005271897651255131, 0.006226430647075176, 0.008602778427302837, 0.006553927436470985, -0.01955394819378853, 0.01001660618931055, -0.015112773515284061, 0.012005548924207687, -0.005267903674393892, -0.006102621089667082, 0.006062682252377272, 0.00573518592864275, -0.012261155992746353, 0.01246084924787283, -0.006322283297777176, 4.0188235288951546e-05, 0.005355768837034702, -0.004341328050941229, 0.0035006199032068253, 0.014945031143724918, 0.011342568323016167, 0.014681436121463776, -0.01710970513522625, -0.0177007969468832, 0.0012510772794485092, -0.0138027872890234, 0.002701847581192851, 0.021998191252350807, 0.00156259851064533, -0.005116137210279703, -0.018243961036205292, 0.008658692240715027, -0.00789187103509903, -0.003746242495253682, 0.009745023213326931, 0.03402770310640335, -0.003111218335106969, -0.025289133191108704, 0.003388791810721159, 0.02345195785164833, -0.01944212056696415, 0.05610577389597893, 0.025576692074537277, 0.020288819447159767, -0.013051941059529781, 0.016965925693511963, -0.0033967795316129923, 0.019969308748841286, 0.0011592183727771044, -0.018499568104743958, -0.01625501736998558, 6.976777513045818e-05, -0.012804321013391018, 0.021359173581004143, 0.0039059969130903482, 0.009784962050616741, -0.000659985700622201, -0.008087570779025555, -0.009745023213326931, 0.006589872296899557, 0.003844092134386301, -0.00993672851473093, 0.005323817953467369, -0.009409538470208645, -0.020624302327632904, 0.010815378278493881, 0.012412922456860542, 0.005176045000553131, -0.010703549720346928, -0.013155781663954258, -0.02278098836541176, 0.012261155992746353, 0.0029374854639172554, -0.006450086832046509, -0.0005346782854758203, 0.016582515090703964, 0.011230739764869213, 0.006881424225866795, 0.003951926250010729, 0.00890631228685379, -0.024490362033247948, -0.023004645481705666, -0.016742268577218056, 0.0039159818552434444, 0.004015828017145395, 0.009585268795490265, 0.003119206055998802, 0.010815378278493881, 0.022173920646309853, -0.016694342717528343, -0.010975132696330547, 0.023116473108530045, 0.004477119073271751, -0.004485107026994228, -0.014953019097447395, 0.027429843321442604, -0.01030416414141655, 0.00305330753326416, 0.0014667457435280085, -0.018851028755307198, -0.002258528955280781, 0.0010993104660883546, 0.0013559161452576518, 0.005759148858487606, 0.014066381379961967, -0.013267609290778637, 0.020352721214294434, 0.010663611814379692, 0.005938872694969177, -0.001157221500761807, -0.009513379074633121, 0.018803102895617485, -0.009673133492469788, -0.038788385689258575, 0.0112786665558815, -0.0004640368279069662, -0.0015136736910790205, -0.014401866123080254, -0.0011053013149648905, -0.04025812819600105, -0.009161919355392456, 0.028004959225654602, 0.0027897125110030174, -0.013171756640076637, -0.005048241466283798, -0.02551279030740261, -0.005443633999675512, 0.0056752776727080345, 0.011550248600542545, -0.002757761627435684, 0.029618479311466217, 0.0033508501946926117, -0.020624302327632904, -0.01465747319161892, -0.01125470269471407, 0.02006516233086586, 0.02033674530684948, -0.023148423060774803, -0.012532738968729973, 0.014753325842320919, -0.001955993939191103, -0.018148109316825867, 0.015847643837332726, -0.003911987878382206, 0.009593256749212742, 0.004612910561263561, -0.023356104269623756, -0.019394192844629288, -0.00536775030195713, 0.007983730174601078, 0.0013219682732596993, -0.00779601838439703, -0.0014347948599606752, 0.004225505981594324, 0.011182812973856926, 0.009465453214943409, 0.025560716167092323, -0.002270510420203209, -0.010503856465220451, 0.008219367824494839, 0.008538876660168171, -0.009928740561008453, 0.005663296207785606, 0.021710634231567383, 0.00078729004599154, -0.009409538470208645, 0.011741953901946545, 0.008554852567613125, 0.007017215248197317, -0.008834422565996647, 0.006390179041773081, -0.022796964272856712, -0.008514913730323315, -0.008299245499074459, -0.00012068951764376834, -0.016470687463879585, -0.0018062241142615676, -0.0014976982492953539, -0.008275281637907028, 0.0206083282828331, 0.0061106085777282715, -0.019745653495192528, 0.04747902974486351, -0.0021227377001196146, -0.008458999916911125, 0.012277131900191307, -0.0007233882206492126, -0.010639647953212261, -0.006525970529764891, 0.01250078808516264, -0.004517057910561562, 0.006414142437279224, 0.013603094033896923, -0.005819056648761034, 0.008411073125898838, -0.004928425420075655, 0.02212599478662014, -0.014665461145341396, 0.017285434529185295, 0.013986504636704922, 0.014609547331929207, -0.004011834505945444, 0.019921382889151573, -0.0069013936445117, -0.0012890188954770565, 0.006070670206099749, -0.01574380323290825, -0.0062863389030098915, 0.021247345954179764, -0.02250940538942814, -0.015647951513528824, -0.0013678977265954018, -0.017636895179748535, -0.01878712698817253, -0.0035565339494496584, 0.0005054731736890972, 0.010767451487481594, -0.005954848136752844, -0.007332730572670698, -0.008323208428919315, -0.016502637416124344, 0.0017892501782625914, 0.027509720996022224, 0.004117671865969896, 8.274782885564491e-05, -0.0015466230688616633, 0.0013479284243658185, -0.018212011083960533, 0.023739514872431755, -0.014353939332067966, 0.007021209225058556, 0.007792024407535791, 0.010296176187694073, -0.0092338090762496, 0.007843945175409317, -0.0184676181524992, -0.001618512556888163, 0.00863472931087017, -0.004824585281312466, -0.019729677587747574, 0.0027897125110030174, 0.027781303972005844, -0.008307232521474361, -0.025720471516251564, -0.014945031143724918], "a96fc25a-3f3e-46aa-84dd-82f6c3847183": [-0.003081462113186717, 0.01345974300056696, -0.018310289829969406, 0.015650538727641106, -0.04028823599219322, -0.02759142406284809, 0.011884890496730804, 0.026555519551038742, -0.025155650451779366, 0.029201272875070572, 0.016224484890699387, 0.017638353630900383, 0.019472181797027588, 0.010149052366614342, -0.03715252876281738, 0.008301224559545517, -0.004567073658108711, 0.03636860474944115, -4.6589397243224084e-05, -0.033624861389398575, 0.05655471980571747, -0.007783273234963417, -0.043115973472595215, -0.017092403024435043, -0.015146585181355476, -0.007664284203201532, -0.025631606578826904, 0.009463116526603699, -0.04591571167111397, -0.005389496684074402, 0.02540762722492218, -0.008686188608407974, 0.0021505490876734257, 0.021348007023334503, 0.014600636437535286, -0.04065220430493355, -0.00948411412537098, 0.045271772891283035, 0.00037599614006467164, -0.017050407826900482, -0.019948137924075127, 0.00384264113381505, 0.021529989317059517, -0.012360845692455769, -0.02322383038699627, -0.0017717095324769616, 0.008476207964122295, 0.006645879242569208, -0.005351000465452671, -0.029985198751091957, 0.009064153768122196, 0.00500103272497654, -0.028151370584964752, -0.0009554107673466206, 0.029453249648213387, -0.03740450739860535, 0.034576769918203354, 0.05829055607318878, -0.018296292051672935, -0.018142305314540863, -0.006288912612944841, -0.05115122348070145, -0.008343220688402653, 0.0075662932358682156, -0.008294225670397282, -0.020858051255345345, -0.005609976127743721, 0.020970040932297707, -0.003378934459760785, -0.004647566005587578, -0.03242097049951553, 0.020508084446191788, -0.029537241905927658, 0.046251680701971054, -0.017078405246138573, 0.0008219857118092477, 0.04163211211562157, -0.0005971317295916378, 0.03278493881225586, 0.018296292051672935, 0.014348659664392471, -0.008602196350693703, 0.016182487830519676, 0.021040035411715508, 0.023447809740900993, 0.017204392701387405, -0.02595357596874237, -0.044711824506521225, -0.05722665414214134, -0.022943858057260513, -0.03121708519756794, 0.010660004802048206, -0.02382577396929264, -0.025505617260932922, 0.036312609910964966, -0.01908021792769432, 0.013711719773709774, 0.008364219218492508, 0.00925313588231802, -0.0023465307895094156, 0.02014411799609661, 0.027787404134869576, -0.034072816371917725, 0.008014251478016376, 0.019808150827884674, -0.032560959458351135, -0.010792992077767849, 0.00675786891952157, -0.03174903616309166, 0.02862732671201229, 0.017778338864445686, -0.04798751696944237, -0.0037306516896933317, -0.0031917018350213766, -0.04076419398188591, -0.018198300153017044, -0.03659258410334587, -0.019878143444657326, 0.017162397503852844, 0.0035224210005253553, 0.008049248717725277, -0.018870238214731216, 0.05028330534696579, -0.017176395282149315, -0.021487994119524956, 0.004248603247106075, -0.020508084446191788, 0.036816563457250595, 0.03866438940167427, 0.01003006286919117, 0.012717812322080135, 0.0014619884314015508, 0.021963948383927345, 0.00252326438203454, -0.017148397862911224, 0.04658764973282814, 0.023587796837091446, 0.045747727155685425, -0.011240949854254723, 0.04090417921543121, -0.07206527143716812, 0.006488393992185593, -0.033568866550922394, 0.017764341086149216, 0.005770960822701454, 0.015174582600593567, -0.005106023047119379, 0.05445491522550583, -0.0015424808952957392, 0.02798338606953621, -0.03748849779367447, -0.008938165381550789, -0.012052874080836773, -0.005476988386362791, 0.057394638657569885, -0.06601783633232117, -0.021977948024868965, 0.017162397503852844, 0.023405814543366432, 0.014390655793249607, 0.03286892920732498, -0.0317770317196846, -0.008315223269164562, -0.0015004848828539252, 0.024973668158054352, 0.029929205775260925, 0.06825762242078781, 0.021054033190011978, -0.027927391231060028, 0.012388843111693859, 0.024525709450244904, -0.0029537242371588945, 0.037292517721652985, 0.01194788422435522, 0.0053230030462145805, -0.014992599375545979, 0.022481899708509445, -0.029957203194499016, 0.016840428113937378, -0.03978428617119789, -0.03390483185648918, -0.007153331767767668, 0.017666351050138474, -0.03225298970937729, -0.016112495213747025, -0.00872818473726511, -0.009428119286894798, -0.0025320134591311216, -0.0003366247983649373, 0.022411907091736794, -0.011016971431672573, 0.005903948564082384, -0.012829801999032497, 0.018786245957016945, -0.0016658444656059146, -0.006540888920426369, 0.021585984155535698, 0.014698627404868603, -0.018786245957016945, 0.030377162620425224, 0.022089937701821327, -0.029481247067451477, -0.0004026811511721462, 0.03426880016922951, -0.012514831498265266, 0.02900529094040394, -0.014810617081820965, -0.02281786873936653, 0.0316370464861393, 0.021040035411715508, 0.03970029205083847, -0.025085657835006714, 0.02070406638085842, -0.00954710878431797, -0.012829801999032497, 0.011821895837783813, -0.0008539202390238643, 0.013410747982561588, -0.004381590988487005, -0.04403988644480705, 0.052159130573272705, 0.029761221259832382, 0.004777053836733103, -0.02001813054084778, -0.037852466106414795, 0.005571479443460703, -0.03348487243056297, -0.0016212236369028687, -0.040540214627981186, -0.0317770317196846, 0.010757995769381523, -0.03141306713223457, -0.01507659163326025, 0.003734151367098093, 0.01807231269776821, 0.004941538441926241, 0.04115615785121918, -0.011765900999307632, -0.03244896978139877, -0.015202580019831657, -0.010862985625863075, 0.028753314167261124, 0.013942698016762733, 0.008126241154968739, 0.01794632337987423, 0.03796445578336716, -0.022075938060879707, 0.0297052264213562, 0.012486834079027176, 0.03382084146142006, -0.016140492632985115, -0.0026352538261562586, -0.020438091829419136, 0.018772246316075325, -0.03608863055706024, 0.006302911322563887, 0.03432479500770569, -0.043591927736997604, 0.012584825046360493, -0.0010402778862044215, 0.03348487243056297, 0.027227457612752914, -0.03743250295519829, -0.03258895501494408, 0.04776353761553764, -0.0049695358611643314, 0.03130107745528221, -0.03351287171244621, 0.0274934321641922, 0.031441062688827515, -0.022957855835556984, -0.005158518441021442, -0.0018775745993480086, 0.02851533703505993, 0.006939851678907871, 0.0029659729916602373, -0.009624101221561432, 0.005683469120413065, -0.006897856015712023, 0.004259102046489716, -0.0017034659394994378, 0.00084254628745839, 0.01950017921626568, 0.024091750383377075, -0.011492926627397537, 0.01087698433548212, -0.012871798127889633, -0.00620492035523057, -0.008392216637730598, -0.003153205616399646, 0.017652351409196854, -0.0031987011898308992, 0.009414120577275753, 0.011016971431672573, 0.005424493458122015, 0.00045058291289024055, -0.005742963869124651, -0.01801631785929203, 0.020242109894752502, 0.019794151186943054, -0.018716251477599144, 0.01111496239900589, -0.026177555322647095, -0.03975628688931465, 0.029257267713546753, -0.01903822273015976, 0.020270107313990593, -0.0002924414293374866, -0.04801551625132561, 0.04454383999109268, 0.014362658374011517, 0.0269054863601923, 0.0001692966907285154, -0.01455864030867815, -0.014376657083630562, -0.021571984514594078, -0.03508072346448898, -0.029537241905927658, -0.004717559553682804, -0.028697319328784943, 0.01629447750747204, -0.004126114770770073, -0.04247203469276428, 0.006145426072180271, 0.05647072568535805, -0.024189740419387817, 0.03662057965993881, -0.02007412537932396, -0.020382096990942955, 0.004584571812301874, -0.06153825297951698, 0.012192861177027225, -0.00896616280078888, -0.0005726340459659696, -0.048379480838775635, 0.0019178208895027637, -0.03127307817339897, -0.04983534663915634, 0.01850627176463604, -0.04356393218040466, 0.0008740433841012418, 0.028669321909546852, 0.01791832596063614, 0.01272481121122837, -0.02743743732571602, -0.005700967740267515, -0.013879703357815742, 0.00788826309144497, -0.018646258860826492, -0.025309637188911438, 0.0009650348802097142, -0.0057149664498865604, 0.03174903616309166, -0.012269854545593262, 0.03214100003242493, -0.02641553245484829, -0.06081032007932663, -0.031021103262901306, 0.010345034301280975, -0.027675414457917213, -0.019780153408646584, -0.06271414458751678, -0.0121578648686409, -0.012675816193223, 0.002483018208295107, 0.00238502724096179, 0.020872050896286964, -0.014152678661048412, -0.01691042073071003, -0.03586465120315552, -0.03124508261680603, 0.02274787612259388, 0.00975008960813284, -0.04233204573392868, -0.018226297572255135, -0.028165370225906372, 0.009890076704323292, -0.030517149716615677, 0.018114307895302773, 0.027143465355038643, -0.018954230472445488, -0.0038356417790055275, -0.023713786154985428, -0.036200620234012604, -0.018282292410731316, -0.009925073012709618, 0.004595071077346802, -0.033064913004636765, 0.004612569231539965, 0.011779899708926678, -0.011527922935783863, 0.024203740060329437, -0.026863491162657738, -0.005924946628510952, 0.001854826812632382, -0.003916134126484394, 0.007321316283196211, -0.013949696905910969, -0.004381590988487005, -0.031469061970710754, 0.02973322384059429, -0.00032918801298364997, -0.02116602286696434, 0.014992599375545979, -0.00397562887519598, -0.028977293521165848, -0.02798338606953621, -0.025043660774827003, 0.016742436215281487, 0.022341912612318993, 0.011786899529397488, -0.009239137172698975, 0.0008495456422679126, 0.014173676259815693, 0.01754036173224449, 0.023111840710043907, -0.0027227457612752914, 0.035136718302965164, -0.00529500562697649, -0.010513017885386944, 0.011569919064640999, 0.033596862107515335, -0.012080871500074863, 0.014138679951429367, 0.015006598085165024, 0.0175123643130064, 0.017176395282149315, 0.032085005193948746, 0.020984040573239326, 5.038982635596767e-05, -0.0025827588979154825, 0.06920953840017319, -0.0023167836479842663, -0.01755436137318611, -0.004490080755203962, -0.022117935121059418, 0.005774460732936859, -0.004724558908492327, -0.0011942634591832757, 0.004686062224209309, -0.0005078900721855462, 0.020298104733228683, -0.004630067385733128, 0.002720995806157589, -0.01958417147397995, 0.005550481844693422, -0.05025530606508255, -0.0008285476360470057, 0.011751902289688587, 0.006113929208368063, 0.007163831032812595, -0.007825269363820553, -0.05697467923164368, -0.013788712210953236, 0.03740450739860535, -0.01186389196664095, 0.013291758485138416, -0.014656631276011467, 0.044683825224637985, -0.05176716670393944, -0.019472181797027588, 0.020536081865429878, 0.0508432500064373, -0.028263360261917114, 0.038328420370817184, -0.01957017183303833, -0.011877890676259995, -0.014614635147154331, -0.017848333343863487, 0.009694094769656658, -0.017694346606731415, -0.014810617081820965, 0.0025267640594393015, 0.03975628688931465, 0.0009956570575013757, -0.009974068962037563, -0.030013196170330048, -0.027899393811821938, -0.009554107673466206, 0.017610356211662292, -0.01189888920634985, 0.002463769866153598, -0.012808803468942642, -0.04236004501581192, 0.05364299193024635, -0.016280479729175568, -0.02333582006394863, -0.03452077507972717, 0.010541015304625034, 0.00593544589355588, 0.0329529233276844, 0.025085657835006714, -0.03062913939356804, 0.002231041667982936, 0.0033771845046430826, -0.01584652066230774, -0.007853266783058643, -0.05568679794669151, 0.006932852324098349, -0.010121054947376251, 0.021404001861810684, -0.019822148606181145, 0.018842240795493126, 0.002986971056088805, -0.021865958347916603, 0.014376657083630562, -0.02178196609020233, 0.06489793956279755, -0.0013307507615536451, -0.005501486361026764, -0.03166504204273224, 0.026765501126646996, -0.025687601417303085, 0.018198300153017044, 0.004364092368632555, -0.005344001110643148, 0.008812176994979382, -0.019332194700837135, 0.01580452360212803, -0.0042801001109182835, -0.02274787612259388, 0.0035784158390015364, -0.002406025305390358, -0.021362004801630974, -0.005616975482553244, 0.0014322412898764014, -0.021991945803165436, -0.022047940641641617, 0.02010212279856205, -0.025043660774827003, -0.017078405246138573, 0.0029659729916602373, -0.026345539838075638, 0.010799990966916084, -0.0039651296101510525, 0.03796445578336716, -0.007237324025481939, 0.01951417699456215, 0.013823709450662136, 0.010254042223095894, -0.011842894367873669, 0.04149212688207626, 0.015734530985355377, -0.007062340620905161, -0.0034226803109049797, 0.023979760706424713, 0.003426179988309741, 0.017848333343863487, -0.030881116166710854, 0.04087618365883827, 0.01789032854139805, -0.005872451700270176, -0.02964923158288002, 0.0028364851605147123, -0.011954883113503456, -0.028893301263451576, -0.020536081865429878, 0.007202327251434326, -0.015006598085165024, -0.006292412523180246, -0.01948617957532406, 0.017232390120625496, 0.007930259220302105, 0.033092908561229706, -0.00714983232319355, -0.025533614680171013, -0.016756435856223106, 0.0443478599190712, -0.026779498904943466, 0.014488646760582924, 0.034688759595155716, -0.05246710032224655, 0.055210843682289124, 0.01187089178711176, -0.002546012168750167, 0.03068513423204422, 0.007216325961053371, 0.016686441376805305, 0.01110796257853508, -0.032085005193948746, 0.0319170206785202, 0.007216325961053371, 0.015384563244879246, -0.013277759775519371, 0.01162591390311718, 0.015286572277545929, -0.008504205383360386, -0.01740037463605404, -0.022355912253260612, 0.022075938060879707, 0.004567073658108711, 0.04504779353737831, -0.027423439547419548, 0.002843484515324235, -0.021837960928678513, 0.02694748342037201, 0.00474205706268549, 0.013683722354471684, 0.02750743180513382, -0.012682815082371235, 0.0487714447081089, 0.018604261800646782, 0.0180303156375885, 0.005560980644077063, -0.018744248896837234, 0.0015783526469022036, 0.034604769200086594, 0.01793232560157776, -0.02652752213180065, 0.027171462774276733, 0.016280479729175568, -0.007720279041677713, 0.016686441376805305, -0.02696148119866848, 0.007671283558011055, -0.000748492602724582, 0.016126494854688644, 0.05591077730059624, 0.015244576148688793, 0.027773406356573105, 0.019990133121609688, -0.043703917413949966, 0.02481968142092228, -0.007279320154339075, 0.021823961287736893, 0.004497080110013485, -0.006617881823331118, -0.03334488719701767, 0.01272481121122837, -0.02010212279856205, -0.01915021240711212, -0.018422279506921768, -0.018226297572255135, -0.035136718302965164, -0.012094870209693909, -0.03978428617119789, -0.003195201512426138, 0.005053528118878603, 0.017148397862911224, -0.04535576328635216, 0.013991693034768105, 0.003487424226477742, 0.02334981970489025, 0.043115973472595215, -0.0038601395208388567, 0.02549161948263645, -0.0062679145485162735, 0.015496552921831608, 0.005316003691405058, 0.01581852324306965, -0.003182952757924795, -0.0006889981450513005, 0.009456116706132889, -0.0016798431752249599, 0.0034769251942634583, -0.020312102511525154, -0.004497080110013485, 0.022341912612318993, 0.032560959458351135, -0.008077245205640793, 0.008525203913450241, -0.025715598836541176, 0.02382577396929264, -0.0076432861387729645, 0.0348847433924675, -0.012430839240550995, 0.01642046682536602, 0.00797225534915924, -0.009043155238032341, 0.00765728484839201, -0.018646258860826492, -0.040428224951028824, 0.024973668158054352, -0.024497712031006813, 0.013683722354471684, -0.011331941932439804, 0.025813588872551918, -0.01187089178711176, -0.0169244185090065, -0.03233698010444641, -0.01909421756863594, -0.03757249191403389, -0.03270094469189644, 0.01450264547020197, -0.00975008960813284, -0.00957510620355606, -0.0012205110397189856, 0.01958417147397995, -0.023041848093271255, 0.00145761389285326, -0.014922606758773327, 0.011198953725397587, -0.0030219678301364183, 0.02229991741478443, 0.001942318631336093, -0.010233044624328613, 0.014229671098291874, -0.027941390872001648, 0.01113595999777317, -0.016644446179270744, -0.016504459083080292, -0.018842240795493126, 0.013074778951704502, -0.03737650811672211, 0.018716251477599144, 0.026205552741885185, -0.013284759595990181, -0.007503299042582512, 0.024707691743969917, 0.02430173009634018, -0.0024585204664617777, -0.00788826309144497, 0.018618261441588402, 0.02810937538743019, -0.01691042073071003, 0.020844053477048874, -0.012227858416736126, 0.029873210936784744, -0.02809537574648857, 0.019388189539313316, 0.00844121165573597, -0.004728058353066444, 0.00954010896384716, -0.005459490232169628, -0.03452077507972717, -0.005176016595214605, -0.009995066560804844, -0.007769274525344372, 0.007209326606243849, 0.00364665943197906, 0.019360192120075226, -0.009204140864312649, 0.02011612057685852, 0.0017393375746905804, -0.01789032854139805, -0.03225298970937729, -0.005260008852928877, 0.011170956306159496, 0.020410094410181046, -0.014208673499524593, -0.001717464649118483, -0.023965761065483093, -0.01296278927475214, -0.036788564175367355, 0.031133092939853668, 0.0002876294020097703, 0.03382084146142006, -0.007174329832196236, -0.011324942111968994, 0.003601163625717163, 0.037908460944890976, -0.02374178357422352, 0.05462289974093437, 0.006201420910656452, -0.01899622566998005, -0.021879956126213074, 0.020228110253810883, -0.002616005716845393, -0.005987940821796656, 0.04482381418347359, -0.014782619662582874, 0.02637353725731373, -0.018842240795493126, -0.002787489676848054, 0.02066207118332386, 0.016224484890699387, -0.0032336979638785124, 0.011100963689386845, 0.02494567073881626, 0.011156957596540451, 0.04406788572669029, 0.043171968311071396, -0.0017314632423222065, 0.03382084146142006, -0.02015811763703823, -0.033624861389398575, 0.017064405605196953, 0.0011776400497183204, -0.005067526828497648, -0.0015372313791885972, -0.00951911136507988, -0.050003331154584885, 0.011240949854254723, -0.005235510878264904, 0.019892143085598946, -0.03852440044283867, 0.06338608264923096, 0.0075872913002967834, -0.016266480088233948, 0.03023717552423477, 0.02385377138853073, -0.014446650631725788, -0.021571984514594078, 0.020872050896286964, 0.02435772493481636, -0.034632764756679535, 0.005707967095077038, -0.012507831677794456, -0.018660256639122963, 0.026709506288170815, 0.024735689163208008, -0.029789218679070473, 0.0444878451526165, 0.023979760706424713, 0.02014411799609661, -0.0013814959675073624, 0.006145426072180271, 0.0012765057617798448, -0.010345034301280975, 0.00316895404830575, 0.00198781443759799, 0.0026335041038691998, -0.0025127653498202562, 0.03855239972472191, -0.033652856945991516, -0.00714983232319355, -0.008630193769931793, -0.011156957596540451, 0.05551881343126297, 0.04594371095299721, -0.017288384959101677, 0.01804431527853012, 0.00165359559468925, 0.020956043154001236, 0.018716251477599144, -0.00595644349232316, 0.049415383487939835, -0.0032179495319724083, 0.005886450409889221, -0.02014411799609661, -0.007072839420288801, -0.03342887759208679, 0.005088524892926216, -0.009722092188894749, -0.005949444603174925, 0.01755436137318611, 0.014446650631725788, 0.017722344025969505, -0.023643791675567627, 0.04160411283373833, 0.004959037061780691, -0.024581704288721085, -0.01850627176463604, -0.011429932899773121, -0.0053405012004077435, -0.004476082045584917, 0.00896616280078888, -0.0020735564175993204, 0.026093563064932823, 0.043087974190711975, 0.019878143444657326, 0.019248202443122864, -0.005064026918262243, 0.019360192120075226, -0.01646246202290058, 0.01397769432514906, 0.005651972256600857, 0.00977808702737093, -0.04325595870614052, 0.0061944215558469296, 0.02654152177274227, 0.016196487471461296, -0.02850133739411831, 0.004794552456587553, -0.01056201383471489, -0.020438091829419136, -8.459365926682949e-05, 0.014754622243344784, 0.00797225534915924, 0.01796032302081585, 0.002775240922346711, -0.031049100682139397, 0.012430839240550995, -0.00712183490395546, -0.018408281728625298, -0.005466489586979151, -0.025043660774827003, 0.02112402766942978, -0.03748849779367447, 0.0076432861387729645, -0.0092741334810853, 0.029285265132784843, 0.020998038351535797, 0.00258100894279778, -0.019864145666360855, 0.0075662932358682156, 0.006131427362561226, -0.012514831498265266, 0.014950604178011417, -0.014880610629916191, -0.008777180686593056, 0.010100056417286396, -0.02228591777384281, -0.019892143085598946, -0.014173676259815693, 0.0010026564123108983, 0.017792338505387306, 0.006561886984854937, -0.02754942700266838, 0.04012025147676468, 0.010534016415476799, -0.031049100682139397, -0.012759808450937271, -0.023489806801080704, 0.011499926447868347, -0.042108066380023956, 0.0005791959119960666, 0.019248202443122864, 0.03816043585538864, 0.022607889026403427, 0.02964923158288002, -0.00716033112257719, -0.013879703357815742, -0.001839078264310956, 0.036228615790605545, 0.00031847026548348367, 0.00979908462613821, -0.04350793734192848, -0.00543849216774106, 0.014740623533725739, 0.0071428329683840275, 0.03009718842804432, 0.029369257390499115, -0.010953976772725582, 0.0022852865513414145, 0.01107996515929699, -0.02654152177274227, -0.02647152729332447, -0.016168490052223206, 0.03555667772889137, -0.026317542418837547, -0.012710812501609325, 0.0018250795546919107, -0.015594543889164925, 0.007881264202296734, 0.0010481521021574736, -0.02903328835964203, -0.011450930498540401, -0.008196234703063965, -0.038916364312171936, 0.01845027692615986, 0.019780153408646584, 0.04115615785121918, 0.004171610344201326, -0.004605569876730442, -0.02116602286696434, -0.00041755475103855133, -0.016742436215281487, 0.013704719953238964, 0.02280387096107006, 0.008049248717725277, 0.011170956306159496, -0.01404068898409605, -0.0025880082976073027, 0.021390002220869064, -0.014089684002101421, -0.008588197641074657, 0.002467269543558359, 0.011450930498540401, -0.016168490052223206, -0.0164764616638422, -0.026891488581895828, 0.004906541667878628, 0.028865303844213486, -0.001833828748203814, -0.008140239864587784, 0.010736997239291668, 0.01686842553317547, -0.02014411799609661, -0.021543987095355988, -0.006614382378757, -0.02270587906241417, -0.00010581043170532212, 0.03818843513727188, -0.005228511523455381, -0.02057807892560959, -0.03869238495826721, -0.015510551631450653, -0.020886048674583435, -0.03390483185648918, 0.02585558593273163, -0.004346594214439392, -0.002745493547990918, -0.020200112834572792, 0.011695907451212406, -0.011422933079302311, 0.00901515781879425, 0.020816056057810783, -0.0026212551165372133, 0.012395842000842094, 0.009820083156228065, -0.015132586471736431, -0.009092151187360287, -0.0029799717012792826, 0.04182809218764305, -0.014166677370667458, -0.028291357681155205, -0.0474555678665638, 0.004549575038254261, -0.016210485249757767, -0.023587796837091446, 0.008630193769931793, -0.0053230030462145805, 0.04885543882846832, -0.0025635105557739735, 0.014894609339535236, 0.007650285493582487, -0.0071953278966248035, -0.027087470516562462, -0.016210485249757767, -0.027087470516562462, -0.007258322089910507, -0.010415026918053627, 0.012822802178561687, 0.01324976235628128, 0.031497057527303696, 0.05761861801147461, -0.014908608049154282, -0.037320513278245926, 0.03860839456319809, -0.0025110153947025537, 0.01632247492671013, -0.021054033190011978, -0.014628633856773376, -0.024987665936350822, 0.003265195060521364, 0.03071313165128231, 0.008539202623069286, 0.027899393811821938, -0.018142305314540863, -0.007300318218767643, -0.01635047234594822, -0.005302004981786013, 0.020480087026953697, -0.009379124268889427, -0.0185482669621706, -0.008105242624878883, -0.046223681420087814, -0.02063407376408577, -0.010177049785852432, -0.0087561821565032, -0.007356313057243824, -0.003494423581287265, 0.00555398128926754, 0.005417494103312492, -0.008364219218492508, 0.03222499042749405, 0.01793232560157776, -0.023713786154985428, 0.012654818594455719, 0.00954010896384716, 0.0142996646463871, 0.004346594214439392, 0.007307317573577166, -0.013277759775519371, 0.027269452810287476, -0.02585558593273163, -0.014810617081820965, -0.0029327261727303267, 0.045747727155685425, -0.0011216452112421393, -0.014348659664392471, 0.03958830237388611, -0.01458663772791624, 0.01952817663550377, -0.02635953761637211, -0.020886048674583435, 0.012612822465598583, -0.014838614501059055, -0.015678536146879196, -0.025351632386446, -0.0017559609841555357, 0.010135053656995296, 0.015202580019831657, -0.000624254229478538, 0.02176796644926071, 0.0169244185090065, -0.004745556972920895, 0.0006946851499378681, 0.011184955015778542, -0.038916364312171936, 0.009421120397746563, -0.006558387540280819, 0.02484767884016037, -0.02229991741478443, 0.019696161150932312, 0.008098243735730648, 0.013312757015228271, 0.016658443957567215, -0.003447178052738309, -0.013599730096757412, 0.010715999640524387, 0.0028417345602065325, 0.0012590073747560382, -0.004427086561918259, 0.01629447750747204, 0.007692281622439623, 0.04121215268969536, 0.03704053908586502, 0.013928699307143688, -0.009890076704323292, -0.021557986736297607, 0.012269854545593262, -0.007580291945487261, 0.023181835189461708, 0.008476207964122295, -0.0062119197100400925, 0.00797925516963005, -0.018422279506921768, 0.015020596794784069, 0.018954230472445488, 0.0010472772410139441, 0.01790432818233967, 0.03272894397377968, 0.014712626114487648, 0.008287225849926472, 0.008063247427344322, -0.028277359902858734, -0.0002990033244714141, -0.005085024982690811, 0.012066872790455818, -0.0005555730895139277, -0.029285265132784843, -0.020298104733228683, -0.024483714252710342, -0.006113929208368063, 0.010142052546143532, 0.037824466824531555, 0.012353845871984959, 0.024567706510424614, 0.017806336283683777, -0.01401269156485796, 0.04611169174313545, 0.0006233793101273477, -0.00597394211217761, 0.035248707979917526, 0.017008410766720772, -0.010932979173958302, -0.029425252228975296, -0.013011785224080086, -0.01270381361246109, -0.0019965635146945715, -0.011877890676259995, 0.0057149664498865604, 0.03449277952313423, 0.0017743343487381935, -0.00648139463737607, -0.008245229721069336, 0.013900701887905598, -0.033064913004636765, 0.01580452360212803, -0.013270760886371136, 0.01241684053093195, -0.0012248855782672763, 0.003497923258692026, -0.009939071722328663, 0.03659258410334587, 0.0016238483367487788, 0.009358125738799572, -0.0047105601988732815, -0.02956523932516575, -0.014152678661048412, -0.012500832788646221, -0.02273387648165226, -0.017106402665376663, -0.017288384959101677, 0.02442771941423416, -0.0031777031254023314, 0.0007148082368075848, -0.00029834714950993657, 0.0032529463060200214, -0.003772647585719824, 0.008833175525069237, -3.157908213324845e-05, -0.036060631275177, -0.0020578077528625727, -0.022453902289271355, 0.0297052264213562, -0.025757594034075737, 0.02956523932516575, -0.0010569012956693769, -0.006071933079510927, 0.02109603025019169, -0.01404068898409605, -0.02176796644926071, -0.01856226660311222, 0.0020280606113374233, -0.014404654502868652, 0.00036659077159129083, 0.03953230753540993, 0.026121560484170914, 0.001775209209881723, -0.0024602701887488365, 0.0006098180310800672, 0.016238482668995857, -0.006680876016616821, 0.002453270833939314, -0.012325848452746868, 0.026681508868932724, -0.005148019175976515, -0.00451107881963253, -0.00018067062774207443, -0.02962123416364193, 0.012563826516270638, -0.013928699307143688, -0.03169304132461548, -0.0018635760061442852, -0.00951211154460907, 0.017232390120625496, 0.002983471378684044, 0.02126401476562023, -0.003468176117166877, -0.003713153302669525, -0.006477895192801952, -0.0035976639483124018, 0.008777180686593056, 0.0035714164841920137, -0.012815803289413452, 0.012374844402074814, -0.004353593569248915, -0.0023815275635570288, -0.003195201512426138, -0.016672443598508835, -0.00844121165573597, -0.009988067671656609, 0.00686285924166441, 0.004640566650778055, -0.0013928698608651757, -0.016112495213747025, -0.002565260510891676, 0.0044690826907753944, -0.01296978909522295, -0.0030482152942568064, 0.018772246316075325, 0.0011653911788016558, -0.017848333343863487, -0.007818269543349743, 0.012220858596265316, -0.0006653753807768226, 0.029873210936784744, -0.0019808150827884674, 0.0012275103945285082, 0.024721691384911537, -0.03594864159822464, 0.01898222789168358, 0.00823123101145029, -0.01847827434539795, -0.012815803289413452, -0.0003064401389565319, 0.023615794256329536, -0.0076432861387729645, 0.006530390121042728, -0.0070133451372385025, 0.010639006271958351, -0.013095776550471783, 0.010107056237757206, -0.012850799597799778, 0.03320489823818207, -0.006911854725331068, 0.03348487243056297, 0.012430839240550995, -0.010226044803857803, -0.005375497974455357, 0.03060114197432995, -0.03743250295519829, 0.02691948600113392, -0.009379124268889427, 0.004924040287733078, 0.00846220925450325, 0.009141146205365658, -0.006173423491418362, 0.006061433814466, 0.011835894547402859, 0.023111840710043907, -0.047371577471494675, 0.004441085271537304, 0.008168237283825874, -0.01087698433548212, -0.030349165201187134, -0.02010212279856205, -0.004287099465727806, 0.022845866158604622, -0.011499926447868347, -0.012955790385603905, -0.004605569876730442, 0.0014541142154484987, 0.0159585103392601, 0.015482554212212563, 0.0014541142154484987, -0.013235763646662235, -0.0041016167961061, -0.0005127020995132625, -0.024721691384911537, 0.0422760508954525, -0.013522736728191376, 0.015790525823831558, 0.005774460732936859, -0.00305346492677927, 0.03435279056429863, 0.02071806602180004, -0.029397254809737206, 0.025743596255779266, -0.0070658400654792786, 0.001998313469812274, 0.0032739441376179457, 0.027409439906477928, -0.006579385604709387, -0.011849893257021904, -0.024581704288721085, -0.021879956126213074, -0.011744903400540352, 0.01166091114282608, 0.01849227212369442, -0.006869858596473932, -0.017064405605196953, 0.019458182156085968, 0.024105748161673546, -0.018436279147863388, -0.005970442201942205, -0.00844821147620678, 0.02274787612259388, -9.022594895213842e-05, -0.0038041446823626757, -0.010967975482344627, -0.011037969030439854, 0.0110869649797678, -0.014922606758773327, 0.010883983224630356, 0.018282292410731316, 0.014880610629916191, -0.005403495393693447, 0.004602070432156324, 0.006474395282566547, 0.013585731387138367, -0.005529483780264854, 0.014894609339535236, -0.009631100110709667, 0.024567706510424614, 0.02532363496720791, -0.007811270654201508, -0.025743596255779266, -0.018254294991493225, -0.00024344601843040437, 0.019262200221419334, -0.008532202802598476, 0.0012651318684220314, 0.009925073012709618, 0.0012738810619339347, -0.0007200577529147267, -0.020242109894752502, -0.02273387648165226, -0.0062714144587516785, 0.028193367645144463, 0.0038251427467912436, -0.003357936395332217, 0.016056500375270844, -0.02642953209578991, 0.003944131545722485, -0.017806336283683777, 0.01427166722714901, 0.012598823755979538, -0.030489152297377586, -0.003331688931211829, -0.03382084146142006, -0.016756435856223106, 0.0148526132106781, 0.015188581310212612, -0.031441062688827515, 0.0023832775186747313, -0.007531296461820602, -0.01113595999777317, 0.010107056237757206, -0.007300318218767643, -0.005529483780264854, -0.011702907271683216, -0.016140492632985115, -0.0039476314559578896, 0.012773807160556316, 0.0237977784126997, -0.031049100682139397, -0.015132586471736431, 0.009708093479275703, 0.046811629086732864, 0.011541921645402908, 0.01737237721681595, 0.038328420370817184, -0.001764710177667439, -0.0002688186359591782, 0.018380284309387207, -0.0039686295203864574, -0.014362658374011517, 0.007135833613574505, 0.00043505310895852745, -0.005959943402558565, 0.0013272510841488838, -0.024539709091186523, -0.02479168400168419, -0.008658191189169884, 0.008385216817259789, 0.0317770317196846, 0.017610356211662292, -0.03544468805193901, -0.015510551631450653, 0.02488967590034008, -0.01586051844060421, 0.010156051255762577, -0.0075102983973920345, -0.0030884614679962397, 0.0044655827805399895, -0.010778993368148804, 0.00462656794115901, -0.003296692157164216, 0.007531296461820602, -0.001218761201016605, 0.018324289470911026, -0.015552547760307789, -0.006607383023947477, 0.014460649341344833, 0.020340099930763245, -0.045803721994161606, -0.013235763646662235, -0.009918074123561382, 0.010967975482344627, -0.014964602887630463, -0.00424510333687067, 0.002960723591968417, -0.016700441017746925, -0.015762528404593468, 0.0020578077528625727, -0.010072058998048306, 0.005921447183936834, 0.02652752213180065, -0.004175110254436731, -0.01859026402235031, 0.0008079870603978634, -0.04543975740671158, -0.011730904690921307, -0.01348074059933424, 0.01299778651446104, -0.007104336749762297, -0.0034524276852607727, -0.02956523932516575, 0.03174903616309166, 0.012276853434741497, -3.745744106709026e-05, -0.006404401734471321, -0.0044480846263468266, -0.0006128802779130638, 0.011849893257021904, 0.017778338864445686, 0.005924946628510952, -0.04451584443449974, -0.008658191189169884, 0.004553074948489666, 0.01744237169623375, -0.01137393806129694, -0.020410094410181046, -0.018198300153017044, -0.001989564159885049, 0.024665696546435356, 0.0009895325638353825, 0.0020280606113374233, 0.002092804526910186, -0.0022852865513414145, -0.0005345750832930207, -2.821611451508943e-05, -0.00021369878959376365, -0.01686842553317547, 0.029481247067451477, -0.019878143444657326, -0.003580165561288595, 0.0527750700712204, -0.016644446179270744, -0.0016684691654518247, -0.022117935121059418, -0.0063274092972278595, -0.03972829133272171, -0.02004612796008587, 0.005291505716741085, -0.005774460732936859, -0.016686441376805305, 0.01961216889321804, -0.024245735257864, 0.025043660774827003, -0.004518078174442053, 0.024735689163208008, 0.02283186838030815, -0.004112116061151028, -0.0014698627637699246, -0.003158455016091466, -8.328128751600161e-05, -0.01345974300056696, 0.0036921552382409573, -0.0028872303664684296, -0.0076992809772491455, -0.01794632337987423, 0.052131131291389465, 0.00647089583799243, 0.005316003691405058, -0.001839078264310956, 0.011639912612736225, -0.01348074059933424, 0.019304197281599045, 0.016798431053757668, -0.02810937538743019, -0.02385377138853073, 0.00791626051068306, 0.009526110254228115, 0.021459996700286865, -0.0007301192963495851, -0.004728058353066444, 0.03169304132461548, -0.010499019175767899, -0.018380284309387207, -0.00687335804104805, 0.018114307895302773, -0.01504859421402216, 0.027633419260382652, 0.015328568406403065, 0.0047070602886378765, 0.016168490052223206, 0.0032179495319724083, -0.02112402766942978, 0.007286319509148598, -0.003044715616852045, 0.013697721064090729, 0.04070819914340973, -0.021851958706974983, 0.010394029319286346, 0.014670629985630512, 0.008693188428878784, 0.014124681241810322, -0.01644846424460411, 0.013004785403609276, 0.004294098820537329, 0.03289692848920822, 0.0018915733089670539, -0.012612822465598583, -0.014698627404868603, -0.0280813779681921, -0.0020053128246217966, -0.025225644931197166, 0.015034595504403114, 0.002591507975012064, 0.02973322384059429, -0.00011866079148603603, 0.010429025627672672, -0.01593051292002201, 0.017582358792424202, -0.018394282087683678, -0.00792326033115387, -0.03426880016922951, -0.007107836194336414, 0.004623068030923605, -0.008266228251159191, -0.01957017183303833, 0.0020210612565279007, -0.0019703160505741835, -0.0005218887818045914, -0.007601290009915829, -0.004115615505725145, 0.016126494854688644, 0.007545295171439648, 0.0025407627690583467, 0.020522084087133408, -0.022635886445641518, -0.006061433814466, -0.00015475117834284902, 0.003874138230457902, 0.029341259971261024, -0.01345974300056696, 0.010939978063106537, 0.014978601597249508, 0.012857799418270588, 0.008189234882593155, 0.010184048675000668, -0.00779027258977294, 0.001568728475831449, 0.013732717372477055, -0.004966036416590214, -0.0028574832249432802, -0.008343220688402653, 0.06551387906074524, -0.0016019754111766815, 0.0038216430693864822, -0.010247043333947659, 0.002255539409816265, -0.031497057527303696, 0.004143612924963236, 0.03555667772889137, 0.014019690454006195, -0.007135833613574505, 0.007874264381825924, -0.03071313165128231, 0.004598570521920919, 0.010247043333947659, -0.016658443957567215, 0.012192861177027225, 0.005760462023317814, -0.007489300798624754, 0.016308477148413658, -0.0057149664498865604, 0.009386123158037663, 0.01032403577119112, -0.006579385604709387, -0.002971222624182701, 0.0006054434343241155, 0.010883983224630356, -0.012024876661598682, 0.020970040932297707, -0.01964016631245613, 0.01902422308921814, -0.0014138679252937436, 0.0047105601988732815, -0.019892143085598946, -0.006687875371426344, -0.00901515781879425, 0.013263761065900326, 0.00795125775039196, 0.015986507758498192, -0.0175123643130064, 0.010695001110434532, -0.01086998451501131, -0.01749836653470993, 0.016560453921556473, 0.001566103775985539, -0.009603103622794151, -0.02119402028620243, 0.003961630165576935, -0.004115615505725145, -0.01577652618288994, -0.012094870209693909, -0.020886048674583435, -0.018408281728625298, 0.006505892612040043, 0.004665064159780741, 0.021068032830953598, -0.0011531423078849912, 0.0002368841232964769, -0.015090590342879295, 0.019248202443122864, 0.00924613606184721, -0.008560200221836567, 0.007783273234963417, -0.007615288719534874, -0.016308477148413658, -0.006572386249899864, -0.02213193289935589, -0.009127147495746613, -0.01898222789168358, 0.014810617081820965, -0.004602070432156324, -0.0028732316568493843, 0.03390483185648918, 0.014866611920297146, -0.016014505177736282, 0.005998439621180296, -0.007370311766862869, 0.0191362127661705, 0.013893702067434788, 0.0092741334810853, 0.006239917129278183, -0.0030849617905914783, -0.0044690826907753944, -0.023587796837091446, -0.028277359902858734, 0.006166424136608839, 0.006540888920426369, -0.00021621417545247823, -0.02747943438589573, 0.0017200893489643931, -0.014117681421339512, -0.008672189898788929, -0.007454304024577141, -0.00636590551584959, 0.009351126849651337, 0.004829548764973879, 0.005169017240405083, -0.016504459083080292, -0.0013499988708645105, 0.007734277751296759, -0.0068838573060929775, -0.006054434459656477, 0.012815803289413452, 0.0032336979638785124, 0.015132586471736431, -0.007832268252968788, -0.02486167848110199, 0.02956523932516575, 0.0024235236924141645, -0.018142305314540863, 0.006848860532045364, -0.0019353192765265703, 0.003818143391981721, 0.00014950166223570704, 0.00977108720690012, -0.012654818594455719, -0.005169017240405083, 0.006841861177235842, 0.00014720500621479005, -0.037768471986055374, -0.019178209826350212, 0.0019195707282051444, -0.009876077994704247, 0.004864545539021492, -0.01482461579144001, -0.006071933079510927, -0.009764088317751884, -0.014362658374011517, -0.0020543080754578114, -0.009407121688127518, -0.005050028208643198, -0.0007003720966167748, 0.005784959532320499, -0.008637193590402603, 0.010855985805392265, 0.006309910677373409, -0.005053528118878603, 0.011667910031974316, -0.0055819787085056305, 0.028221365064382553, -0.0022485400550067425, 0.017806336283683777, 0.010750995948910713, 5.104601223138161e-05, 0.017638353630900383, -0.0025775092653930187, 0.011681908741593361, 0.0019825648050755262, -0.007895262911915779, -0.017876330763101578, 0.025533614680171013, 0.029957203194499016, -0.016784433275461197, 0.012766807340085506, 0.00038277675048448145, 0.009764088317751884, -0.0029957201331853867, -0.025169650092720985, 0.01350873801857233, -0.005798958241939545, 0.00726532144472003, 0.006299411877989769, -0.011443931609392166, -0.018352286890149117, -0.002162798075005412, -0.0024252734147012234, 0.007447304669767618, 0.006096430588513613, 0.016826428472995758, 0.013823709450662136, 0.010995972901582718, -0.0027332447934895754, 0.0038706385530531406, 0.007664284203201532, -0.02332182228565216, 0.018618261441588402, -0.0023062846157699823, 0.008938165381550789, -0.004616068676114082, -0.0029099781531840563, 0.017610356211662292, -0.013011785224080086, 0.005298505071550608, 0.012017877772450447, -0.006936352234333754, -0.02585558593273163, -0.01691042073071003, 0.007594290655106306, -0.003643159754574299, 0.011275947093963623, 0.016182487830519676, -0.013088777661323547, 0.017218392342329025, 0.013123773969709873, -0.004294098820537329, -0.010911980643868446, -0.013312757015228271, 9.449117351323366e-05, 0.004868045449256897, -0.008910167962312698, -0.0012607572134584188, -0.004444584716111422, 0.013403748162090778, 0.00019434122077655047, 0.0012143865460529923, -0.00957510620355606, 0.0023832775186747313, -0.011611915193498135, -0.030825121328234673, -0.002708747051656246, -0.007349313702434301, -0.05929846316576004, -0.004171610344201326, 0.01790432818233967, -0.0016605949494987726, -0.0070133451372385025, 0.01691042073071003, 0.012584825046360493, 0.006918853614479303, 0.03961630165576935, 0.010639006271958351, 0.0004536451306194067, -0.0024917672853916883, -0.004668564070016146, 0.004042122513055801, 0.002344781067222357, -0.009330128319561481, -0.006012438330799341, 0.00956810638308525, 0.02011612057685852, -0.018940230831503868, 0.029201272875070572, -0.004882044158875942, -0.01754036173224449, 0.010072058998048306, 0.01240984071046114, 0.011499926447868347, 0.027885396033525467, -0.003461176762357354, 0.014376657083630562, -0.030433157458901405, 0.0026317541487514973, -0.007818269543349743, -0.004227605182677507, 0.013886703178286552, 0.004500579554587603, -0.007349313702434301, 0.006855859886854887, -0.0036641578190028667, -0.012640819884836674, -1.881074240372982e-05, -0.008714186027646065, -0.0023920265957713127, -0.0017918326193466783, 0.020298104733228683, 0.017246389761567116, 0.03160904720425606, -0.006306411232799292, -0.005371998529881239, 0.02382577396929264, -0.04090417921543121, -0.01850627176463604, -0.012227858416736126, 0.011541921645402908, 0.00376214855350554, 0.01000206544995308, 0.026835493743419647, -0.023027850314974785, 0.013837707228958607, -0.007321316283196211, -0.0026090063620358706, -0.0011426432756707072, 0.01273181103169918, 0.006428899709135294, 0.01215086504817009, -0.008434212766587734, -0.00350842229090631, -0.00977108720690012, -0.022005945444107056, -0.007706280332058668, 0.03020917810499668, -0.02071806602180004, 0.0060859317891299725, 0.006848860532045364, -0.02858532965183258, -0.004798051901161671, -0.011681908741593361, 0.014488646760582924, -0.013767714612185955, -0.008245229721069336, -0.00398612767457962, -0.007405308540910482, -0.003590664593502879, 0.0013150022132322192, 0.01637846976518631, -0.015706533566117287, 0.00818223599344492, -0.0028662323020398617, -0.013543735258281231, 0.014978601597249508, -0.0010271540377289057, 0.006096430588513613, -0.00034034322015941143, 0.0028714819345623255, -0.01637846976518631, 0.0012336347717791796, -0.007895262911915779, -0.00016415654681622982, 0.0024147743824869394, 0.00027450561174191535, 0.016252482309937477, 0.01902422308921814, 0.0010778993600979447, -0.002509265672415495, 0.006659877952188253, -0.004808550700545311, -0.005917947273701429, -0.011520924046635628, 0.023461809381842613, 0.004843547474592924, 0.0045215776190161705, -0.0010087807895615697, 0.018912233412265778, -0.005893449764698744, 0.0164064671844244, -0.014656631276011467, 0.006428899709135294, 0.012080871500074863, 0.03536069765686989, 0.0008954788791015744, -0.0011356439208611846, -0.01397769432514906, -0.007580291945487261, 0.00726532144472003, -0.024749688804149628, 0.004409588407725096, 0.010261042043566704, -0.014740623533725739, -0.0169244185090065, -0.021907953545451164, -0.0010026564123108983, -0.011296944692730904, 0.008406215347349644, -0.010834988206624985, 0.008070246316492558, -0.0032284485641866922, 0.015384563244879246, 0.00899416022002697, 0.00016185989079531282, 0.026597516611218452, 0.0001784833293640986, 0.009498112834990025, 0.0020018131472170353, 0.02442771941423416, -0.0002850046439561993, -0.002456770511344075, -0.004381590988487005, 0.000549886142835021, 0.0014024940319359303, -0.0005315128364600241, 0.006495393346995115, 0.0050780256278812885, 0.005924946628510952, -0.014656631276011467, -0.01745636947453022, 0.0022590390872210264, 0.00411911541596055, 0.009092151187360287, 0.02693348377943039, -0.0328129343688488, 0.00369915459305048, -0.0015232327859848738, -0.0004464270605240017, -0.0169944129884243, -0.0053789978846907616, -0.016280479729175568, 0.0017743343487381935, 0.012220858596265316, -0.010184048675000668, -0.005260008852928877, -0.006449897773563862, 0.0034384289756417274, -0.01849227212369442, -0.0196541640907526, -0.0034401786979287863, 0.014628633856773376, 0.003420930588617921, 0.02008812315762043, 0.021068032830953598, 0.009407121688127518, -0.009701093658804893, 0.003982628230005503, -0.0025687601882964373, -0.0018198300385847688, -0.0057639614678919315, -0.013291758485138416, 0.0038251427467912436, -0.004941538441926241, 0.020424092188477516, 0.0045775724574923515, -0.014768620952963829, 0.0043920897878706455, -0.01086998451501131, 0.008623194880783558, 0.02640153467655182, -0.01035203319042921, -0.01217886246740818, 0.008602196350693703, 0.027759406715631485, 0.029453249648213387, -0.0016439714236184955, -0.002222292358055711, 0.014257668517529964, -0.01896822825074196, 0.017050407826900482, -0.005497986450791359, -0.012542828917503357, 0.022607889026403427, 0.0006850610370747745, 0.006866358686238527, 0.013683722354471684, 0.003020217875018716, 0.0169244185090065, 0.009036156348884106, 0.0007725528557784855, -0.005403495393693447, 0.005718465894460678, 0.021459996700286865, -0.0020070625469088554, -0.009071152657270432, 0.024203740060329437, -0.0027839899994432926, -0.007517297752201557, 0.01857626438140869, -0.01957017183303833, -0.026695506647229195, 0.0006815613596700132, 0.025071658194065094, -0.017204392701387405, -0.02166997641324997, 0.00729331886395812, -0.009526110254228115, 0.017176395282149315, 0.007349313702434301, 0.034604769200086594, 0.01797432079911232, 0.009561107493937016, 0.018674256280064583, 0.014446650631725788, -0.015272573567926884, 0.0031899521127343178, -0.021390002220869064, 0.03124508261680603, 0.015006598085165024, -0.005270507652312517, -0.034128811210393906, -0.005735964514315128, -0.002971222624182701, 0.012003879062831402, 0.012164863757789135, -0.011751902289688587, 0.013669723644852638, 0.006218919064849615, 0.00844821147620678, -0.014446650631725788, -0.010708999820053577, 0.013634726405143738, -0.013333754613995552, 0.022593889385461807, -3.959005334763788e-05, 0.012598823755979538, -0.005511985160410404, -0.011982880532741547, 0.0027262454386800528, -0.006656378507614136, 0.009106149896979332, -0.007993253879249096, -0.01221385970711708, 0.000943161896429956, 0.004784053191542625, -0.003961630165576935, -0.016644446179270744, -0.004612569231539965, -0.014446650631725788, 0.0034489280078560114, 0.013585731387138367, 0.029341259971261024, -0.009309130720794201, 0.01162591390311718, 0.03060114197432995, 0.0020735564175993204, 0.014670629985630512, 0.003298441879451275, -0.014117681421339512, -0.010715999640524387, 0.005371998529881239, 0.011170956306159496, -0.010667003691196442, 0.01008605770766735, 0.0013421246549114585, 0.004661564715206623, 0.0007292443769983947, 0.0032371976412832737, -0.018646258860826492, -0.0014217422576621175, 0.007853266783058643, -0.005249509587883949, -0.01377471350133419, 0.009050155058503151, -0.0007948632701300085, -0.007601290009915829, 0.01702241040766239, -0.004353593569248915, 0.0022800371516495943, 0.027941390872001648, -0.007762275170534849, 0.020410094410181046, 0.006523390766233206, 0.008119241334497929, 0.021963948383927345, -0.01165391132235527, 0.0029764720238745213, -0.009064153768122196, 0.007321316283196211, 0.002036809688434005, -0.011877890676259995, 0.010485020466148853, 0.0055784787982702255, -0.002832985483109951, -0.018632259219884872, 0.005536483135074377, -0.013522736728191376, 0.013529736548662186, -0.003989627584815025, -0.007475302089005709, -0.012367844581604004, -0.0053929961286485195, 0.012311849743127823, -0.002101553836837411, 0.02549161948263645, -0.006999346427619457, -0.00423460453748703, -0.013683722354471684, 0.007727278396487236, -0.01849227212369442, -0.013956696726381779, -0.014642632566392422, -0.009498112834990025, -0.015790525823831558, 0.0028294858057051897, 0.018310289829969406, -0.0066423797979950905, 0.0022905361838638783, 0.03440878540277481, 0.018856238573789597, 0.0015818523243069649, -0.02225792221724987, 0.002596757374703884, -0.01215086504817009, -0.011506925337016582, 0.016070500016212463, 0.0009457866544835269, -0.0008701062179170549, 0.015482554212212563, 0.030517149716615677, -0.03642459958791733, 0.003989627584815025, 0.017862331122159958, 0.007405308540910482, -0.012101870030164719, 0.00980608444660902, -0.009071152657270432, -0.006257415749132633, 0.0009554107673466206, -0.007629287429153919, 0.014810617081820965, 0.01194088440388441, -0.02747943438589573, 0.013438745401799679, 0.02067606896162033, -0.0033054412342607975, 0.012647818773984909, -0.013907700777053833, -0.006666877306997776, 0.014866611920297146, -0.0011653911788016558, -0.0007585541461594403, -0.0043955896981060505, 0.00901515781879425, 0.0116049163043499, -0.009498112834990025, -0.00034712383057922125, -0.011842894367873669, 0.02018611505627632, -0.018856238573789597, -0.007002845872193575, -0.017036408185958862, -0.012423839420080185, 0.008035250008106232, 0.007188328541815281, -0.013501739129424095, -0.006183922290802002, 0.0035626671742647886, -0.004227605182677507, 0.010345034301280975, 0.001035903231240809, -0.004668564070016146, 0.008196234703063965, -0.010240043513476849, 0.00040574336890131235, -0.007664284203201532, -0.01246583554893732, -0.007023843936622143, 0.006071933079510927, -0.007671283558011055, 0.0028767313342541456, -0.018352286890149117, 0.019374189898371696, -0.006845360621809959, 0.013830708339810371, -0.0010770243825390935, -0.013144772499799728, 1.9576296836021356e-05, 0.009596103802323341, 0.010422026738524437, 0.010212046094238758, -0.028179368004202843, 0.0015949760563671589, 0.00032218865817412734, 0.018170302733778954, -0.013277759775519371, 0.004217106383293867, -0.009813083335757256, 0.008189234882593155, -0.018898235633969307, -0.007629287429153919, -0.003954630810767412, -0.017694346606731415, 0.007559293881058693, -0.0005144519382156432, -0.007405308540910482, 0.014215672388672829, -0.014614635147154331, -0.0033841838594526052, 0.0005428867880254984, -0.001643096562474966, 0.008602196350693703, 0.012626821175217628, -0.02385377138853073, -0.005057027563452721, 0.009848080575466156, -0.018870238214731216, -0.005781460087746382, -0.022481899708509445, 0.011765900999307632, 0.008308224380016327, 0.015538549050688744, 0.020270107313990593, -0.008406215347349644, 0.007930259220302105, 0.007202327251434326, 0.01853426918387413, -0.017680348828434944, 0.009092151187360287, 0.007279320154339075, 0.016168490052223206, -0.036060631275177, 0.009680096060037613, 0.00250051636248827, -0.0034191806335002184, -0.012738809920847416, -0.00703434320166707, 0.01745636947453022, -0.02967722900211811, 0.020522084087133408, 0.0005315128364600241, -0.005176016595214605, -0.007783273234963417, -0.004696561489254236, -8.399215585086495e-05, -0.03989627584815025, 0.004924040287733078, 0.011219952255487442, -0.013697721064090729, -0.008189234882593155, -1.9849709133268334e-05, 0.009813083335757256, -0.018926233053207397, -0.006918853614479303, -0.01741437427699566, 0.009421120397746563, -0.03485674411058426, -0.026191553100943565, -0.0008442961261607707, 0.005550481844693422, 0.021823961287736893, 0.011170956306159496, -0.030433157458901405, -0.004458583425730467, -0.011821895837783813, -0.004805051255971193, -0.021809963509440422, -0.009295132011175156, -0.0068838573060929775, 0.01061800867319107, -0.0037411507219076157, -0.009141146205365658, 0.0316370464861393, 0.005844454281032085, 0.003343937685713172, -0.0024742688983678818, 0.01534256711602211, -0.018268294632434845, 0.0005980066489428282, 0.019822148606181145, 0.007174329832196236, -0.026191553100943565, -0.007615288719534874, -0.015510551631450653, 0.0009212889708578587, 0.011149958707392216, 0.0035941642709076405, -0.0016220984980463982, -0.0032791937701404095, 0.007279320154339075, -0.006936352234333754, 0.0005249509704299271, -0.009071152657270432, 0.022369910031557083, -0.007454304024577141, 0.0073283156380057335, 0.006043935660272837, 0.0018040814902633429, -0.00011702032497851178, 0.023363817483186722, 0.007279320154339075, 0.0006176923052407801, 0.02330782264471054, -0.015258574858307838, 0.02546362206339836, 0.012143866159021854, -0.03314890339970589, -0.018604261800646782, -0.0029099781531840563, -0.0004965161206200719, -0.005039529409259558, -0.007930259220302105, -0.018898235633969307, 0.018688254058361053, -0.0116049163043499, 0.011016971431672573, -0.007692281622439623, -0.001248508458957076, 0.0061419266276061535, -0.006964349653571844, -0.007100836839526892, -0.0014199924189597368, 0.0033369383309036493, 0.007580291945487261, 0.02010212279856205, 0.01375371590256691, -0.016154490411281586, 0.006925852969288826, -0.029229270294308662, 0.023937763646245003, -0.009232137352228165, 0.012038875371217728, 0.004574073012918234, -0.0036361603997647762, 0.010897981934249401, 0.01952817663550377, 0.02381177619099617, -0.029873210936784744, -0.0006487519131042063, 0.0038916366174817085, -0.013403748162090778, -0.009386123158037663, -0.0005761337233707309, 0.018828241154551506, -0.009666097350418568, 0.019850146025419235, -0.013571732677519321, 0.0036186620127409697, -0.03396082669496536, -0.012913794256746769, -0.011737903580069542, -0.006292412523180246, 0.014313663356006145, 0.014474648050963879, 0.03012518584728241, 0.004882044158875942, 0.004115615505725145, 0.007489300798624754, 0.0029134778305888176, 0.006278413813561201, 0.019374189898371696, 0.01455864030867815, 0.0077552758157253265, -0.01168890856206417, -0.023545801639556885, 0.0001462207146687433, 0.01643446460366249, 0.010016064159572124, 0.008791179396212101, 0.001690342091023922, 0.004294098820537329, 0.01086998451501131, -0.010184048675000668, -0.00849020667374134, 0.0022345413453876972, -0.007433305960148573, 0.011814896948635578, 0.022859865799546242, -0.007251322735100985, -0.00765728484839201, 0.006148925516754389, 0.013641726225614548, -0.015720531344413757, 0.0031409566290676594, -0.0024147743824869394, 0.005630974192172289, -0.014110682532191277, -0.0002506641030777246, 0.006887356750667095, -0.005406994838267565, 0.004602070432156324, -0.0037306516896933317, -0.00849020667374134, -0.018660256639122963, 0.020914046093821526, 0.004801551811397076, -0.0030569646041840315, 0.006243417039513588, 0.012850799597799778, 0.025561612099409103, 0.01948617957532406, -0.00795125775039196, -0.008819176815450191, 0.0008784179808571935, 0.005774460732936859, 0.014159677550196648, -8.653488293930423e-06, -0.02434372715651989, 0.006019437685608864, -0.004752556327730417, 0.00013014409341849387, 0.014516644179821014, -0.011163957417011261, 0.021487994119524956, -0.03541669249534607, 0.008546201512217522, 0.005060527473688126, 0.01899622566998005, 0.0027542428579181433, 0.022355912253260612, 0.007706280332058668, 0.007846266962587833, -0.00788826309144497, 0.014404654502868652, 0.016308477148413658, 0.023573799058794975, 0.005357999820262194, 0.00555398128926754, 0.029369257390499115, 0.0036151623353362083, 0.024231737479567528, -0.03020917810499668, 0.00846920907497406, 0.023559799417853355, 0.008952164091169834, -0.021404001861810684, -0.008693188428878784, -0.002143549732863903, -0.012808803468942642, 0.02694748342037201, 0.01294179167598486, 0.003632660722360015, 0.008021251298487186, 0.005095524247735739, -0.008070246316492558, 0.007874264381825924, -0.020802056416869164, -0.009351126849651337, 0.00530550442636013, 0.004983534570783377, -0.006516391411423683, -0.01111496239900589, -0.005599476862698793, -0.010072058998048306, -0.0033719351049512625, 0.01903822273015976, 0.01954217441380024, -0.016238482668995857, 0.01560854259878397, 0.002462020143866539, -0.008035250008106232, -0.010576012544333935, 0.012626821175217628, 0.007167330477386713, -0.024721691384911537, -0.001035903231240809, 0.008504205383360386, 0.008056247606873512, -0.001931819599121809, -0.005385996773838997, -0.024007758125662804, -0.01688242331147194, -0.03928033262491226, 0.0030044694431126118, -0.0018093310063704848, 0.010506018996238708, 0.0022992852609604597, 0.00424510333687067, 0.006848860532045364, 0.000937912380322814, 0.008329221978783607, 0.011303944513201714, 0.013137772679328918, -0.00951911136507988, -0.01246583554893732, 0.009946071542799473, -0.009127147495746613, 0.010408028028905392, 0.015020596794784069, -0.006932852324098349, 0.00954010896384716, 0.015426559373736382, -0.01348774041980505, 0.010981974191963673, -0.004360592924058437, -0.004322096239775419, 0.01698041334748268, -0.001447114860638976, 0.007048341911286116, 0.02213193289935589, -0.015300570987164974, -0.03242097049951553, 0.002194295171648264, -0.005742963869124651, 0.003744650399312377, 0.021404001861810684, 0.03897235915064812, -0.009862079285085201, 0.01218586228787899, -0.013424746692180634, 0.0004225855227559805, 0.016784433275461197, 0.002337781712412834, -0.018730251118540764, 0.014285665936768055, 0.013130773790180683, -0.005749963223934174, -0.009456116706132889, 0.005616975482553244, -0.009953070431947708, 0.004693061579018831, -0.014978601597249508, -0.009477115236222744, -0.013613728806376457, -0.011261948384344578, 0.01961216889321804, -0.01241684053093195, -0.01749836653470993, 0.005130521021783352, -0.008224232122302055, 0.0020438090432435274, 0.005333501845598221, 0.018156304955482483, -0.014782619662582874, -0.01966816373169422, 0.009729091078042984, 0.003954630810767412, -0.00017235890845768154, -0.010778993368148804, 0.03278493881225586, 0.015188581310212612, 0.026849493384361267, -0.020256107673048973, -0.0036746568512171507, -0.019696161150932312, 0.017344379797577858, -0.01372571848332882, -0.008868171833455563, 0.01534256711602211, -0.002848733915016055, 0.009477115236222744, 0.0061419266276061535, -0.007608289364725351, -0.0035714164841920137, 0.007853266783058643, 0.005116522312164307, -0.01856226660311222, -0.013053781352937222, 0.007489300798624754, 0.006708873435854912, -0.013095776550471783, -0.013683722354471684, 0.025827588513493538, 0.01159791648387909, 0.0008167361957021058, 0.012388843111693859, 0.010100056417286396, -0.010702000930905342, -0.016840428113937378, -0.0010752745438367128, 0.013410747982561588, -0.00729331886395812, 0.004777053836733103, -0.002497016917914152, -0.0012423839652910829, 0.012584825046360493, 0.023097842931747437, -0.017806336283683777, -0.02973322384059429, -0.01273181103169918, -0.012612822465598583, 0.024483714252710342, 0.022971855476498604, 0.05036729574203491, 0.016042502596974373, -0.004728058353066444, 0.01689642295241356, 0.00011581731087062508, -0.007748276460915804, -0.006278413813561201, 0.007825269363820553, -0.003203950822353363, -0.00922513846307993, -0.01081398967653513, -0.01581852324306965, -0.023153837770223618, 0.011128961108624935, 0.016210485249757767, 0.004003626294434071, -0.005270507652312517, -0.019206207245588303, 0.003391183214262128, -0.04860346019268036, 0.02319583296775818, -0.00407361937686801, 0.004801551811397076, 0.011835894547402859, 0.00797925516963005, -0.01059001125395298, 0.01797432079911232, -0.004868045449256897, -0.011779899708926678, 0.01194788422435522, -0.012570826336741447, 0.012479834258556366, -0.0046545653603971004, -0.023615794256329536, -0.0329529233276844, 0.008154238574206829, 0.022523896768689156, 0.031133092939853668, 0.025617606937885284, -0.0019545673858374357, -0.012815803289413452, 0.03135707229375839, 0.010757995769381523, -0.0065128919668495655, 0.017694346606731415, 0.006015938241034746, -0.027339447289705276, -0.006253915838897228, 0.0035591674968600273, -0.00291522778570652, 0.03060114197432995, 0.005928446538746357, -0.01534256711602211, 0.004959037061780691, 0.014404654502868652, 0.013564732857048512, 0.0008381717489100993, -0.0012345097493380308, -0.015636539086699486, 0.0071953278966248035, -0.004042122513055801, -0.013949696905910969, 0.01005806028842926, 0.0064568971283733845, -0.006285413168370724, 0.012808803468942642, -0.003590664593502879, 0.00010684939479688182, -0.012241857126355171, 0.03018118068575859, -0.00797225534915924, -0.0076852822676301, -0.019248202443122864, -0.009001159109175205, -0.0031497059389948845, 0.0012835051165893674, 0.00409111799672246, 0.0274934321641922, -0.009624101221561432, 0.009505112655460835, 0.019710158929228783, 0.011492926627397537, -0.0006015063263475895, -0.012486834079027176, 0.009722092188894749, -0.009351126849651337, 0.008980161510407925, 0.01695241592824459, -0.008910167962312698, 0.015034595504403114, -0.0018355785869061947, -0.021292012184858322, -0.002178546506911516, 0.02010212279856205, -0.006743870209902525, -0.0057114665396511555, 0.005539982579648495, 0.00490304222330451, -0.014285665936768055, 0.0072723207995295525, 0.004437585361301899, 0.022103935480117798, 0.006488393992185593, -0.006047435104846954, -0.010681002400815487, 0.008399215526878834, -0.0038916366174817085, -0.01593051292002201, -0.016028502956032753, -0.0011452680919319391, -0.022411907091736794, 0.028375349938869476, -0.022593889385461807, -0.0024182740598917007, 0.017050407826900482, -0.0012791305780410767, 0.010604009963572025, 0.0002668500819709152, 0.0057114665396511555, 0.013543735258281231, -0.004010625649243593, -0.0026912486646324396, -0.004819049965590239, 0.010743997059762478, 0.0019405687926337123, 0.020914046093821526, 0.02118002250790596, 0.006649379152804613, 0.01580452360212803, 0.0062119197100400925, -0.0021925452165305614, 0.0028417345602065325, 0.002617755439132452, 0.011219952255487442, 0.0010245293378829956, 0.010212046094238758, 0.00490304222330451, 0.013158771209418774, -0.010674003511667252, -0.00977108720690012, 0.011485927738249302, -0.022971855476498604, 0.02056407928466797, 0.015132586471736431, -0.007860265672206879, -0.0015932262176647782, -0.0014742373023182154, 0.009729091078042984, 0.0329529233276844, -0.011226951144635677, -0.0009877827251330018, 0.015216578729450703, 0.002535513136535883, 0.01168890856206417, -0.037348512560129166, 0.0038496404886245728, -0.010660004802048206, 0.008532202802598476, -0.00043374072993174195, 0.001602850272320211, -0.012507831677794456, 0.036256615072488785, -0.012325848452746868, 0.0031409566290676594, 0.0035521683748811483, -0.019808150827884674, 0.004010625649243593, -0.00712183490395546, -0.0033491873182356358, -0.0137467160820961, -0.01325676217675209, -0.012598823755979538, 0.02123601734638214, 0.014131680130958557, -0.010415026918053627, -0.01558054517954588, 6.326752918539569e-05, 0.018324289470911026, 0.005963442847132683, -0.007608289364725351, 0.002684249309822917, 0.01450264547020197, -0.005970442201942205, -0.0169944129884243, 0.0006736870855093002, 0.023615794256329536, -0.015692533925175667, -0.012115868739783764, 0.017274387180805206, -0.008259228430688381, -0.007986254058778286, -0.003245946951210499, 0.017288384959101677, 0.0027892393991351128, -0.019430184736847878, -0.013886703178286552, -0.03009718842804432, 0.005966942757368088, 0.020396094769239426, -0.006103429943323135, 0.001112896017730236, 0.01294179167598486, -0.004430586006492376, 0.004056121222674847, 0.025701599195599556, 0.008889169432222843, -0.009554107673466206, 0.022915860638022423, 0.006754369009286165, 0.011779899708926678, -0.0247636865824461, -0.014404654502868652, 0.01324976235628128, 0.019864145666360855, -0.017064405605196953, -0.0027227457612752914, 0.011219952255487442, -0.0008880420937202871, 0.016490459442138672, -0.006950350943952799, 0.00015409498882945627, 0.005403495393693447, 4.369123053038493e-05, -0.01000906527042389, -0.004927539732307196, -0.0024445217568427324, -0.00048076760140247643, -0.022005945444107056, -0.006372904870659113, -0.002663251245394349, -0.0037831466179341078, 0.003853140166029334, -0.016602449119091034, 0.016070500016212463, -0.012241857126355171, 0.007811270654201508, -0.0017918326193466783, 0.004878544248640537, 0.013375750742852688, -0.005260008852928877, -0.00742630660533905, 0.007664284203201532, 0.003357936395332217, -0.012521830387413502, 0.015678536146879196, -0.005732464604079723, 0.0007743026944808662, 0.015398561954498291, 0.0063274092972278595, -0.0002460707619320601, -0.02008812315762043, 0.0023570298217236996, -0.0002675062569323927, -0.01272481121122837, 0.0017970821354538202, 0.018282292410731316, -0.008805178105831146, -0.01140193548053503, -0.02015811763703823, 0.00895916298031807, -0.002416524337604642, -0.0021155523136258125, 0.008861172012984753, 0.03141306713223457, -0.0026755002327263355, -0.026303542777895927, -0.0014007441932335496, 0.02491767331957817, -0.013291758485138416, 0.03970029205083847, 0.018408281728625298, 0.02862732671201229, -0.028417346999049187, 0.014187674969434738, -0.009400121867656708, 0.005627474281936884, 0.015524550341069698, -0.0008539202390238643, -0.01738637685775757, -0.0026545021682977676, 0.002173297107219696, 0.013228764757514, 0.004028123803436756, 0.009932072833180428, 0.008392216637730598, -0.001470737624913454, -0.00043724040733650327, -0.002281786873936653, 0.0012283852556720376, -0.010443024337291718, 0.007307317573577166, -0.018884235993027687, -0.00922513846307993, 0.007482301443815231, -0.005651972256600857, 0.013270760886371136, 0.0007826143992133439, -0.004276600666344166, -0.008777180686593056, 0.002092804526910186, -0.013865704648196697, -0.008476207964122295, 0.014656631276011467, 0.014894609339535236, 0.011002972722053528, 0.02164197899401188, -0.0008911042823456228, 0.006656378507614136, -0.0027909893542528152, -0.017610356211662292, -0.010415026918053627, -0.004017625004053116, 0.007846266962587833, 0.018366284668445587, 0.0015731031307950616, 0.008798178285360336, 0.0307411290705204, -0.026163555681705475, -0.00022682256530970335, 0.025477619841694832, 0.011744903400540352, -0.00474205706268549, -0.008826175704598427, 0.015426559373736382, -0.0077552758157253265, 0.013046781532466412, -0.007937259040772915, -0.03023717552423477, 0.0007428056560456753, -0.004126114770770073, -0.010023063980042934, 0.009582105092704296, 0.019220205023884773, -0.006523390766233206, 0.01427166722714901, 0.008742183446884155, 0.019738156348466873, -0.00478755310177803, -0.006691375281661749, 0.018310289829969406, -0.011849893257021904, -0.031581051647663116, 0.004038622602820396, 0.0025267640594393015, -0.004665064159780741, -0.025057660415768623, -0.007909261621534824, -0.038412414491176605, -0.004738557618111372, 0.012493832968175411, -0.007965256460011005, 0.012577825225889683, -0.001839078264310956, -0.013151771388947964, 0.0007266196189448237, 0.01084898691624403, 0.009715092368423939, 0.00821023341268301, 0.029845213517546654, -0.003772647585719824, 0.0055084857158362865, -0.02799738571047783, -0.010785992257297039, 0.02013012021780014, 0.025575611740350723, -0.02267788164317608, -0.0005385121912695467, 0.009617101401090622, 0.013942698016762733, -0.0036851558834314346, 0.013354753144085407, -0.0037306516896933317, 0.004679062869399786, 0.002173297107219696, -0.02488967590034008, -0.0248336810618639, -0.01748436689376831, 0.013375750742852688, 0.0016212236369028687, -0.0011295195436105132, 0.006253915838897228, -0.002003562869504094, 0.00032437595655210316, 0.013473741710186005, 0.02488967590034008, -0.015748528763651848, 0.012066872790455818, 0.015510551631450653, -0.0033159402664750814, -0.004588071722537279, 0.004504079464823008, 0.026107562705874443, 0.01453064288944006, -0.010639006271958351, -0.006316910032182932, -0.00034843620960600674, 0.0012178862234577537, -0.016756435856223106, -0.003657158464193344, -0.012780806049704552, -0.02064807154238224, -0.010471021756529808, 0.0036746568512171507, -0.018828241154551506, -0.012619821354746819, -0.002208293881267309, 0.009190142154693604, 0.007902261801064014, -0.003055214649066329, -0.016532456502318382, 0.025281639769673347, 0.0028977293986827135, -4.51129750445034e-07, 0.0069538503885269165, 0.002344781067222357, -0.013501739129424095, -0.0019073218572884798, 0.012255855835974216, 0.0043395948596298695, 0.0004059620841871947, 0.018338287249207497, -0.00956810638308525, 0.003328189253807068, -0.005497986450791359, 0.019220205023884773, 0.005777960177510977, 0.013263761065900326, 0.015034595504403114, 0.012339847162365913, -0.004007125739008188, 0.018898235633969307, -0.00305346492677927, -0.008322223089635372, 0.010771993547677994, -0.013550734147429466, -0.01591651327908039, 0.03704053908586502, -0.026345539838075638, -0.008434212766587734, -0.01056201383471489, -0.0044655827805399895, -0.00791626051068306, -0.002628254471346736, 0.005326502490788698, 0.02074606344103813, 0.0033824341371655464, -0.010016064159572124, -0.02111002802848816, -0.006061433814466, 0.007097337394952774, 0.01140193548053503, 0.01380971074104309, 0.0050220307894051075, -0.004672063514590263, 0.008077245205640793, -0.009680096060037613, 0.024693693965673447, -0.007058840710669756, 0.007902261801064014, -0.0012528829975053668, 0.009897075593471527, -0.00126163219101727, -0.010569012723863125, -0.02862732671201229, 0.012010877951979637, 0.01591651327908039, -0.007433305960148573, -0.02175396867096424, -0.015664536505937576, 0.018744248896837234, 0.00010269353515468538, -0.031581051647663116, -0.00034384289756417274], "5593171c-b3d2-4d7c-85de-7e23b9578622": [-0.005531635135412216, 0.021898934617638588, -0.0173468180000782, 0.002686562016606331, -0.02957250364124775, -0.0008946739253588021, -0.013599449768662453, 0.027328960597515106, -0.026044612750411034, 0.05150395631790161, 0.01657458394765854, -0.0038022371008992195, -0.008600249886512756, 0.010811278596520424, -0.02703632414340973, 0.026857491582632065, -0.014087176881730556, 0.04604141414165497, 0.008567734621465206, -0.03183230385184288, 0.050170835107564926, -0.0047065638937056065, -0.03869299590587616, -0.0009586880914866924, -0.0109088234603405, 0.0010323551250621676, -0.015298365615308285, -0.012185042724013329, -0.06161615625023842, -0.004487087018787861, 0.0053406087681651115, 0.03716478496789932, -0.015802349895238876, 0.021281147375702858, -0.02228911593556404, -0.025085417553782463, -0.00584459351375699, 0.05852722004055977, 0.010112203657627106, 0.007271194364875555, -0.022321632131934166, 0.009730150923132896, 0.027328960597515106, -0.014054661616683006, -0.00864089373499155, 0.0007707100012339652, -0.011518482118844986, -0.00025923189241439104, -0.03232003375887871, -0.02332960069179535, 0.008787211962044239, 0.02669491618871689, -0.031864821910858154, 0.021232375875115395, 0.009689507074654102, -0.03336051478981972, 0.02222408726811409, 0.10385330021381378, -0.029621277004480362, -0.0030259385239332914, 0.006100649945437908, -0.027117611840367317, -0.028840914368629456, -0.0028023971244692802, -0.010282907634973526, -0.02710135467350483, -0.0015434522647410631, 0.00950254499912262, -0.01866368018090725, 0.03716478496789932, -0.025296766310930252, 0.018549878150224686, -0.07140321284532547, 0.023297086358070374, -0.030694276094436646, -0.025914553552865982, 0.038042694330215454, -0.01694037951529026, 0.009201779961585999, -0.0007773146498948336, 0.014233495108783245, 0.02037072367966175, -0.0346936360001564, 0.01067308895289898, 0.04334265738725662, 0.0030239063780754805, -0.014802509918808937, -0.06021800637245178, -0.036189332604408264, -0.012981662526726723, -0.025134189054369926, 0.007555701769888401, -0.014152207411825657, 0.004787852056324482, 0.014079048298299313, 0.001874700072221458, -0.020468270406126976, 0.020484527572989464, 0.014656191691756248, -0.020809678360819817, -0.004072519019246101, 0.012046853080391884, -0.003422216745093465, -0.007945883087813854, 0.008226325735449791, -0.012810958549380302, 0.00970576424151659, -0.00425135251134634, -0.02284187451004982, -0.019167665392160416, -0.0009729134617373347, -0.05803949385881424, 0.01817595399916172, 0.005373124033212662, -0.04617147520184517, -0.001403230824507773, -0.031718503683805466, -0.016346978023648262, -0.005173969082534313, -0.012640253640711308, 0.012957276776432991, -0.034466031938791275, 0.04539111256599426, -0.018192211166024208, -0.03137709200382233, 0.000169180246302858, 0.007002944592386484, 0.026174673810601234, 0.057454220950603485, 0.0052755787037312984, 0.01159164123237133, 0.011876148171722889, 0.014916312880814075, 0.012599609792232513, 0.008047493174672127, 0.04083899408578873, 0.018289756029844284, 0.03898563235998154, -0.0499432273209095, 0.03318168222904205, -0.062103886157274246, -0.0007392109837383032, -0.026922522112727165, 0.03596172481775284, -0.0027942683082073927, 0.03178353235125542, -0.01519269123673439, 0.06971242278814316, -0.01180298998951912, 0.035506512969732285, -0.034888725727796555, -0.025670688599348068, -0.020630845800042152, 0.03264518454670906, 0.05787691846489906, -0.047569625079631805, -0.033718183636665344, 0.03150715306401253, 0.02463020570576191, 0.000783919298555702, 0.015111403539776802, -0.02324831299483776, -0.030612988397479057, 0.006153487134724855, 0.020890966057777405, 0.031165745109319687, 0.05956770479679108, 0.020565815269947052, -0.016038084402680397, 0.009136749431490898, 0.0373273603618145, -0.006661535706371069, 0.016078729182481766, 0.007880852557718754, 0.006665599998086691, -0.015135789290070534, 0.034888725727796555, -0.02710135467350483, 0.03911569342017174, -0.06324191391468048, -0.03664454445242882, -0.0032454156316816807, 0.026873748749494553, -0.018127180635929108, 0.012339489534497261, 0.05088616907596588, -0.019509073346853256, -0.011437194421887398, 0.005905559286475182, 0.009071718901395798, -0.0016216917429119349, 0.003196642966940999, -0.01770448498427868, 0.019671648740768433, -0.011120172217488289, -0.02250046469271183, -0.01708669774234295, 0.0035502449609339237, -0.004206643905490637, 0.020289435982704163, -0.004222901538014412, -0.008844112977385521, -0.006393285933881998, 0.005637309513986111, 0.005442218855023384, 0.0410015694797039, 0.011315262876451015, -0.027328960597515106, 0.048935260623693466, -0.004950427450239658, 0.04763465374708176, -0.014079048298299313, 0.024809038266539574, -0.0016521746292710304, -0.02510167472064495, 0.006673729047179222, -0.011892406269907951, 0.002076903358101845, -0.0021602234337478876, -0.03362063691020012, 0.04656165465712547, -0.022923162207007408, -0.007677633315324783, -0.011778603307902813, -0.029052263125777245, 0.024126220494508743, 0.008974174037575722, -0.01566416025161743, -0.020484527572989464, -0.005096745677292347, -0.014363555237650871, -0.010916952043771744, 0.004149742424488068, 0.010307294316589832, 0.017525650560855865, 0.005243063438683748, 0.010900694876909256, 0.0017669936642050743, -0.0056495023891329765, 0.006657471414655447, -0.011713572777807713, 0.04018869251012802, -0.027897976338863373, 0.014225366525352001, 0.05400761961936951, 0.043375175446271896, 0.00915300752967596, 0.03168598562479019, 0.016290076076984406, 0.012201299890875816, -0.017460621893405914, 0.010112203657627106, -0.023134509101510048, 0.005767370108515024, 0.011160816065967083, 0.00401155324652791, 0.0370672382414341, -0.031864821910858154, -0.01155912596732378, -0.0003711296303663403, -0.000341154751367867, 0.017671968787908554, -0.02454891800880432, -0.005019522272050381, 0.022240344434976578, -0.008966045454144478, 0.02778417244553566, 0.0055356998927891254, 0.01022600568830967, 0.047504592686891556, 0.00840515922755003, -0.010624316520988941, 0.005641373805701733, 0.014233495108783245, 0.010250392369925976, 0.001146158087067306, 0.023101994767785072, 0.008364515379071236, 0.007502864580601454, 0.011307134293019772, -0.0021622555796056986, -0.005751112475991249, 0.022516721859574318, 0.017314303666353226, -0.0019509074045345187, 0.022175313904881477, -0.010185361839830875, -0.012363875284790993, -0.005104874260723591, -0.00025719968834891915, 0.009356226772069931, -0.016160016879439354, 0.013916472904384136, 0.02763785421848297, 0.027328960597515106, -0.004194451030343771, 0.005141453817486763, -0.016338849440217018, 0.03644945099949837, 0.0014083113055676222, -0.007275258656591177, 0.03479118272662163, -0.020533300936222076, -0.01921643689274788, 0.010177233256399632, -0.007234614808112383, -0.010047173127532005, 0.022516721859574318, -0.07185842096805573, 0.03306787833571434, 0.03833533078432083, 0.021833904087543488, -0.018842514604330063, -0.00016155951016116887, -0.0070964256301522255, 0.00462934048846364, -0.009218037128448486, -0.023345857858657837, 0.0007224453729577363, -0.005950267426669598, -0.021378694102168083, -0.04513099044561386, -0.0664934292435646, 0.003751432290300727, 0.04808986559510231, -0.00857586320489645, 0.022760586813092232, -0.04861010983586311, -0.026109643280506134, 0.0017995088128373027, -0.05803949385881424, 0.00850270502269268, 0.017753256484866142, -0.006015297956764698, -0.043992962688207626, -0.01599743962287903, -0.020191891118884087, -0.018289756029844284, -0.00725493673235178, -0.06405479460954666, -0.01694037951529026, 0.006015297956764698, 0.019379014149308205, -0.013022306375205517, -0.03038538247346878, -0.04165187105536461, 0.014680578373372555, 0.01646891050040722, -0.009356226772069931, -0.0331166535615921, 0.001139045343734324, -0.027133870869874954, 0.034140877425670624, -0.002379700541496277, 0.0808325931429863, -0.014810638502240181, -0.05000825971364975, -0.025638174265623093, 0.0171517264097929, -0.034270938485860825, -0.018826255574822426, -0.07894671708345413, 0.0052715144120156765, 0.019671648740768433, 0.009339968673884869, 0.03194610774517059, 0.0006924705230630934, -0.025361794978380203, -0.028174353763461113, 0.0034872470423579216, -0.018679937347769737, 0.0157048050314188, 0.01612750068306923, -0.03106820024549961, -0.0017314302967861295, -0.04220462962985039, 0.027800429612398148, -0.01879374124109745, -0.011063270270824432, 0.03420590981841087, -0.017671968787908554, 0.01679406128823757, 0.0040603261440992355, 0.008925401605665684, -0.005238999146968126, 0.005942138843238354, -0.008197875693440437, -0.018224725499749184, -0.00990898348391056, -0.010632445104420185, -0.019915511831641197, -0.005877108313143253, -0.005499120336025953, 0.033084139227867126, -0.01694037951529026, -0.017688225954771042, 0.006974494084715843, 0.0014357458567246795, 0.004287931602448225, -0.03944084420800209, 0.023687267675995827, 0.027052581310272217, -0.009112362749874592, -0.012258200906217098, 0.015859251841902733, -0.03729484602808952, 0.008583992719650269, -0.017395591363310814, 0.032417576760053635, 0.02614215947687626, 0.04555368795990944, -0.006299804896116257, 0.007641053758561611, -0.003788011847063899, 0.0403512679040432, 0.053129710257053375, -0.006324191577732563, 0.035994239151477814, -0.01536339521408081, -0.032141197472810745, 0.0023878293577581644, 0.04877268522977829, -0.034433513879776, 0.005039844196289778, 0.02002931572496891, -0.003932297695428133, 0.00462934048846364, 0.030856851488351822, 0.004141613841056824, -0.03518136218190193, 0.020939739421010017, 0.04028623551130295, -0.017932090908288956, -0.02593081071972847, 0.03553903102874756, 0.0026764010544866323, 0.034400999546051025, 0.0035258587449789047, -0.017167985439300537, 0.014794381335377693, -0.013022306375205517, 0.024776523932814598, -0.0033063816372305155, -0.03191359341144562, -0.020565815269947052, 0.012095625512301922, -0.058624766767024994, -0.009665120393037796, 0.012339489534497261, 0.005438154097646475, -0.007067974656820297, -0.018419817090034485, -0.051634013652801514, -0.025540629401803017, 0.016501424834132195, -0.020760906860232353, 0.017574423924088478, -0.020679617300629616, 0.015273978933691978, -0.06424988061189651, -0.01672903075814247, 0.03801017999649048, 0.033035364001989365, 0.0015007761539891362, 0.0377175435423851, -0.010689347051084042, -0.016826575621962547, -0.00828729197382927, -0.008510833606123924, -0.003753464436158538, -0.022305374965071678, 0.00042142646270804107, 0.008299484848976135, 0.04288744553923607, 0.0015150015242397785, 0.0062266462482512, -0.029605019837617874, -0.017379332333803177, 0.011201459914445877, -0.0018594586290419102, 0.003093000967055559, 0.02978385239839554, -0.030645502731204033, 0.00769795523956418, 0.03492124378681183, -0.0032250937074422836, -0.00987646821886301, -0.03168598562479019, 0.002233382547274232, 0.035506512969732285, 0.04838250204920769, 0.01585112325847149, -0.03188107907772064, 0.01067308895289898, 0.014843153767287731, 0.0019437946612015367, -0.0019773258827626705, -0.026109643280506134, -0.0035583737771958113, -0.005551957059651613, -0.001038959831930697, -0.03199487924575806, 0.03973348066210747, 0.003828655695542693, -0.028499504551291466, 0.01636323519051075, -0.007539444137364626, 0.06028303876519203, 0.00017908720474224538, -0.03236880525946617, -0.009071718901395798, 0.016070598736405373, -0.024922842159867287, 0.020565815269947052, 0.005726725794374943, -0.011274619027972221, -0.008453931659460068, 0.013493776321411133, 0.0466592013835907, 0.004385477397590876, -0.030157776549458504, 0.0008260873146355152, -0.010437354445457458, -0.00823445525020361, 0.010746248066425323, 0.008811598643660545, -0.013193011283874512, -0.027068840339779854, 0.021557526662945747, -0.008311678655445576, -0.02311825193464756, -0.015233335085213184, -0.018143437802791595, 0.03217371553182602, 0.015948668122291565, 0.02084219455718994, 0.012087496928870678, 0.030840594321489334, 0.003355154301971197, 0.007332160137593746, -0.005056101828813553, 0.021525010466575623, 0.00030457525281235576, -0.02098851092159748, -0.019769195467233658, 0.020126860588788986, 0.017037924379110336, 0.025686947628855705, -0.005787692032754421, 0.015989311039447784, 0.016379492357373238, 0.019037604331970215, -0.038172755390405655, -0.003519762074574828, 0.0101528475061059, -0.042757388204336166, -0.01602182723581791, 0.013623836450278759, 0.005198355298489332, 0.012526450678706169, -0.0282556414604187, -0.0011532707139849663, 0.016696516424417496, 0.06200633943080902, -0.007153327111154795, -0.028369445353746414, -0.035083819180727005, 0.03266144171357155, -0.0346936360001564, 0.01981796696782112, 0.0329865925014019, -0.028727110475301743, 0.02989765629172325, 0.004166000057011843, 0.0021561591420322657, 0.0264835674315691, 0.004287931602448225, -0.022614268586039543, -0.011282747611403465, -0.01395711675286293, 0.018419817090034485, 0.00044098636135458946, 0.01272154226899147, -0.032677698880434036, -0.009827695786952972, 0.006572119425982237, -0.012022466398775578, -0.016306333243846893, 0.005840528756380081, 0.012729670852422714, 0.010331680066883564, 0.05160149931907654, -0.017216756939888, 0.012266330420970917, -0.02394738793373108, 0.012193171307444572, 0.005137389525771141, 0.016420137137174606, -0.0004816302680410445, -0.026776203885674477, 0.03462860733270645, 0.03966844826936722, -0.0008453931659460068, 0.014802509918808937, -0.04581380635499954, 0.00540157500654459, 0.01941152848303318, 0.032889045774936676, -0.017395591363310814, 0.010095945559442043, 0.012786571867763996, -0.008364515379071236, 0.038302816450595856, -0.014469229616224766, 0.007795500569045544, -1.0716654514908441e-06, 0.015371524728834629, 0.022760586813092232, 0.020549558103084564, 0.007263065781444311, 0.02893845923244953, -0.03183230385184288, 0.03511633351445198, 0.001926521072164178, 0.03986354172229767, 0.03827029839158058, -0.028044292703270912, -0.014948828145861626, 0.007653247099369764, -0.013371843844652176, -0.011510353535413742, -0.019297724589705467, -0.03420590981841087, -0.031165745109319687, -0.0026601434219628572, -0.025475598871707916, -0.001958020031452179, 0.017525650560855865, 0.03223874419927597, -0.056153617799282074, -0.004921976942569017, 0.007551637478172779, 0.03485621139407158, 0.029328640550374985, -0.013615707866847515, 0.01934649795293808, 0.003934329841285944, -0.006568054668605328, 0.037619996815919876, 0.014322911389172077, -0.005999040324240923, -0.002251672325655818, 0.016135629266500473, 0.010486126877367496, 0.0026967229787260294, -0.021086057648062706, -0.02558940090239048, 0.01900508999824524, 0.023914873600006104, 0.0004341276944614947, -0.009689507074654102, 0.0008438690565526485, -0.0005715548759326339, -0.010437354445457458, 0.01495695672929287, 0.008413287810981274, -0.00117968930862844, 0.010039044544100761, 0.0019437946612015367, 0.02573571912944317, 0.008632765151560307, -0.03999360278248787, 0.02058207243680954, -0.03778257220983505, 0.02256549522280693, -0.015200819820165634, 0.021801389753818512, -0.010746248066425323, -0.021850163117051125, -0.03046667017042637, -0.029247352853417397, -0.049162864685058594, 0.0011044980492442846, 0.03472615033388138, -0.024809038266539574, -0.00888475775718689, -0.007275258656591177, 0.0025321152061223984, 0.008827855810523033, 0.02799552120268345, -0.019460301846265793, 0.03696969524025917, 0.015233335085213184, 0.03905066102743149, -0.021703844889998436, 0.00015165256627369672, 0.030076488852500916, -0.0218826774507761, 0.0219477079808712, -0.026174673810601234, -0.010811278596520424, -0.015062631107866764, -0.0172817874699831, -0.01872871071100235, 0.025426825508475304, 0.022598009556531906, -0.01955784671008587, -0.005263385362923145, -0.003645758144557476, 0.01492444146424532, -0.0038367845118045807, -0.023752296343445778, 0.015208948403596878, 0.016956636682152748, 0.003070646896958351, 0.0235897209495306, -0.017119212076067924, 0.01135590672492981, -0.035018786787986755, 0.023703524842858315, 0.006076263729482889, 0.008189746178686619, -0.021508753299713135, -0.013916472904384136, -0.014550517313182354, 0.005466605070978403, 0.008925401605665684, -0.02119985967874527, 0.0019407464424148202, 0.005860850680619478, 0.014648063108325005, 0.002845073351636529, 0.01694037951529026, 0.01708669774234295, -0.046464111655950546, -0.0073849973268806934, 0.002237446838989854, 0.007929625920951366, 0.0171517264097929, 0.01762319728732109, 0.012363875284790993, -0.012534580193459988, -0.006055941805243492, -0.029344897717237473, 0.03210868313908577, -0.004149742424488068, 0.01672903075814247, 0.018566135317087173, 0.007620731834322214, 0.025215478613972664, 0.031116971746087074, -0.006320126820355654, 0.04926041141152382, 0.029409928247332573, -0.022207828238606453, -0.012932890094816685, 0.007027330808341503, -0.009047333151102066, -0.0013168625300750136, 0.05075610801577568, -0.013843313790857792, 0.02237040363252163, -0.010372323915362358, 0.005994975566864014, 0.012851602397859097, 0.04617147520184517, -0.010583672672510147, -0.01649329625070095, 0.021037284284830093, 0.013672608882188797, 0.03397830203175545, 0.023410888388752937, -0.001292476081289351, 0.03253138065338135, -0.03976599499583244, -0.07400441914796829, 0.02401241846382618, 0.013802669942378998, -0.013014177791774273, -0.010632445104420185, -0.03025532141327858, -0.035636574029922485, -0.011445323005318642, 0.010234135203063488, 0.01454238872975111, -0.04766717180609703, 0.027003809809684753, 0.0008453931659460068, -0.014054661616683006, 0.02970256470143795, 0.021281147375702858, -0.023540949448943138, -0.014810638502240181, 0.01770448498427868, 0.02393113076686859, -0.024987872689962387, -0.008518962189555168, 0.027832945808768272, -0.039961084723472595, -0.00040186659316532314, 0.008624636568129063, -0.03345806151628494, 0.024386342614889145, 0.04636656492948532, 0.026629885658621788, 0.02633724920451641, -0.0018726678099483252, -0.02141120843589306, -0.012786571867763996, 0.0009078832226805389, 0.0021216117311269045, 0.014005889184772968, 0.01949281617999077, 0.020614588633179665, -0.010851922444999218, -0.01450987346470356, 0.0030970654916018248, -0.016160016879439354, 0.04922789707779884, 0.030482927337288857, -0.005893365945667028, -0.0002837452630046755, 0.0006523346528410912, 0.028174353763461113, 0.010339808650314808, -0.007206164300441742, 0.01460741925984621, -0.001005428610369563, 0.0035786957014352083, -0.028905944898724556, -0.011331520043313503, -0.03560405969619751, -0.01776951551437378, 0.005771434400230646, -0.01067308895289898, 0.0035929211881011724, -0.009486286900937557, -0.0025524371303617954, -0.031734760850667953, 0.04109911620616913, -0.013079208321869373, -0.0310844574123621, -0.0325964093208313, -0.01845233142375946, -0.009283067658543587, 0.001969197066500783, -0.00902294646948576, 0.0023471855092793703, 0.016184402629733086, 0.033913273364305496, 0.049553047865629196, 0.008600249886512756, 0.0026764010544866323, 0.005482862703502178, -0.01554222870618105, 0.0037615932524204254, 0.039473358541727066, 0.01649329625070095, -0.008803469128906727, 0.02256549522280693, 0.016582712531089783, 0.0077101485803723335, -0.021151088178157806, -0.013705124147236347, -0.010128460824489594, -0.0007458156323991716, 0.004450507462024689, 0.010664960369467735, 0.01087630819529295, 0.0024853746872395277, -0.013900214806199074, -0.021931450814008713, 0.016460780054330826, -0.014014017768204212, -0.003032035194337368, 0.0012467517517507076, 0.013046693056821823, 0.005978718400001526, -0.01864742301404476, -0.007624796126037836, -0.0012010273057967424, 0.026320992037653923, -0.002308573806658387, -0.0019011185504496098, 0.009177393279969692, -0.026012098416686058, 0.0015505648916587234, -0.006446123123168945, -0.009819567203521729, -0.024467630311846733, 0.00346489273943007, 0.02071213349699974, -0.027198899537324905, -0.02695503644645214, -0.02297193370759487, 0.00761260325089097, 0.012680897489190102, -0.013835185207426548, -0.029474958777427673, 0.01382705569267273, 0.003907911479473114, -0.01947655901312828, -0.03017403371632099, -0.0438954159617424, 0.02853202074766159, -0.03791263327002525, -0.005364995449781418, 0.016712773591279984, 0.014452972449362278, 0.02339463122189045, 0.020403239876031876, -0.014648063108325005, 0.023036964237689972, -0.009339968673884869, 0.04230217635631561, 0.009112362749874592, 0.018013378605246544, -0.018127180635929108, -0.004149742424488068, -0.013168624602258205, -0.017167985439300537, 0.025475598871707916, 0.03136083483695984, -0.009250552393496037, -0.009063590317964554, 0.014331039972603321, -0.03210868313908577, -0.010039044544100761, -0.008478318341076374, 0.028824657201766968, -0.011299004778265953, -0.013258041813969612, 0.010079688392579556, 0.003946523182094097, 0.015964925289154053, -0.009949627332389355, -0.016208788380026817, 0.011819247156381607, 0.013875829055905342, -0.030271578580141068, 0.031718503683805466, 0.00034064671490341425, 0.03196236491203308, 0.000990695203654468, 0.009396870620548725, -0.007535379845649004, -0.019313983619213104, 0.011437194421887398, -0.03635190799832344, 0.011307134293019772, 0.002379700541496277, 0.01949281617999077, -0.0049666850827634335, -0.008413287810981274, 0.03025532141327858, -0.010502384975552559, -0.005832400172948837, -0.003981070127338171, 0.005482862703502178, -0.01988299749791622, -0.010616187937557697, -0.006120971869677305, 0.020354466512799263, 0.01811092346906662, 0.009722021408379078, 0.005393445957452059, 0.005312158260494471, 0.03261266648769379, -0.002393926028162241, -0.010185361839830875, -0.02085845172405243, -0.0006558909662999213, -0.003940426278859377, 0.03157218545675278, -0.03045041300356388, -0.015314622782170773, -0.019330240786075592, -0.011884277686476707, -0.020386982709169388, -0.025540629401803017, 0.015672288835048676, -0.026987552642822266, -0.019590361043810844, -0.018826255574822426, 0.01412782073020935, -0.009860211052000523, 0.024174993857741356, -0.0024061191361397505, -0.010177233256399632, 0.004539924208074808, -0.021313663572072983, -0.01802963577210903, 0.007015137933194637, -0.0014123755972832441, 0.006238839123398066, 0.0062185171991586685, -0.007718277163803577, -0.04786226153373718, 0.004291996359825134, -0.012843473814427853, -0.010510513558983803, -0.013412488624453545, -0.03814023733139038, 0.04945550113916397, -0.007718277163803577, 0.012185042724013329, -0.012583352625370026, -0.04158684238791466, -0.0006330288015305996, 0.018501104786992073, -0.017444362863898277, 0.007945883087813854, -0.01981796696782112, 0.013501904904842377, -0.005877108313143253, 0.0156397745013237, 0.02736147679388523, 0.013371843844652176, -0.03635190799832344, 0.039896056056022644, 0.009998400695621967, 0.030271578580141068, -0.034335970878601074, -0.007966205477714539, -0.021021027117967606, 0.013981502503156662, 0.00352382636629045, 0.017590681090950966, 0.03492124378681183, -0.020907223224639893, -0.0133393295109272, -0.013810798525810242, -0.004123324062675238, 0.014152207411825657, -0.018972573801875114, 0.014469229616224766, -0.018224725499749184, -0.058006979525089264, -0.04269235581159592, -0.011339649558067322, 0.002519922098144889, 0.007128940895199776, -0.024711493402719498, 0.012867859564721584, 0.0016724966699257493, -0.025199219584465027, 0.01589176617562771, -0.0203056950122118, -0.013680738396942616, 0.004231030587106943, 0.009567574597895145, 0.014355426654219627, 0.018549878150224686, -0.01934649795293808, -0.013900214806199074, 0.009803309105336666, -0.035083819180727005, -0.016761545091867447, 0.003257608972489834, 0.01708669774234295, -0.0028816526755690575, -0.014282267540693283, 0.03589669615030289, -0.010981982573866844, -0.0018076376290991902, -0.028288157656788826, -0.016355106607079506, 0.007291516289114952, 0.006738759111613035, -0.019053861498832703, -0.021850163117051125, 0.0028999424539506435, 0.0041090985760092735, 0.005840528756380081, 0.010234135203063488, 0.04610644280910492, 0.0020382916554808617, -0.00540157500654459, -0.009583832696080208, 0.0022232215851545334, -0.023557206615805626, 0.012802829965949059, -0.01742810569703579, 0.02888968586921692, -0.02793049067258835, -0.0074256411753594875, 0.006129100453108549, -0.000325405242620036, 0.03045041300356388, 0.01522520650178194, -0.02393113076686859, 0.0035949533339589834, 0.01454238872975111, -0.009925241582095623, -0.01581047847867012, 0.028662079945206642, 0.0061697447672486305, 0.05787691846489906, 0.01457490399479866, 0.04090402275323868, -0.015558485873043537, -0.03449854627251625, 0.003997327759861946, 0.006320126820355654, -0.0011268522357568145, 0.02593081071972847, -0.016225045546889305, 0.01600557006895542, -0.016517682000994682, -0.009209908545017242, 0.011128300800919533, -0.010347938165068626, -0.013379973359405994, 0.03258015215396881, 0.008047493174672127, 0.001678593223914504, -0.013762026093900204, -0.02957250364124775, 0.016477039083838463, -0.009535059332847595, 0.01817595399916172, -0.016842832788825035, 0.0018350722966715693, -0.0023451531305909157, -0.015241463668644428, -0.007848338223993778, 0.007775178644806147, 0.031458381563425064, 0.03911569342017174, 0.011242103762924671, 0.009803309105336666, 0.0031295805238187313, 0.05394258722662926, -0.005149582400918007, -0.00598684698343277, 0.032466351985931396, 0.03306787833571434, -0.007746728137135506, -0.021232375875115395, -0.005084552336484194, -0.023492176085710526, -0.00584459351375699, -0.0005103350267745554, 0.003747367998585105, 0.009266809560358524, -0.008242583833634853, -0.019915511831641197, 0.001567838597111404, 0.010965725407004356, -0.027410248294472694, 0.018159696832299232, 0.0018787644803524017, 0.02793049067258835, 0.007271194364875555, -0.013607579283416271, -0.01049425546079874, 0.018354786559939384, -0.007954011671245098, 0.0378476046025753, 4.448602339834906e-05, -0.047081898897886276, 0.005511313211172819, -0.01962287724018097, -0.015924280509352684, 0.008559606038033962, -0.003359218593686819, 0.014152207411825657, -0.02578449249267578, 0.0007519122445955873, -0.02105354145169258, 0.006889141630381346, -0.018419817090034485, 0.011876148171722889, 0.011453451588749886, -0.024256281554698944, 0.0030787757132202387, -0.020907223224639893, 0.016273818910121918, 0.011299004778265953, 0.012298845686018467, 0.007986526936292648, -0.00950254499912262, 0.019850483164191246, -0.015379653312265873, -0.012786571867763996, 0.011396550573408604, -0.018354786559939384, -0.00769795523956418, 0.0014824863756075501, 0.03976599499583244, 0.028304414823651314, 0.0100878169760108, -0.026499824598431587, -0.005677953362464905, -0.0018564102938398719, -0.013014177791774273, -0.002414247952401638, -0.003011713270097971, 0.008303549140691757, 0.011550997383892536, -0.01067308895289898, 0.0005070326733402908, 0.006633085198700428, 0.007746728137135506, -0.00749473599717021, -0.015737319365143776, -0.0065517970360815525, -0.0065314751118421555, 0.012339489534497261, 0.00352382636629045, 0.006283547263592482, -0.024955356493592262, 0.011664800345897675, -0.008567734621465206, -0.009795180521905422, -0.0015078887809067965, 0.029409928247332573, -0.024337569251656532, 0.0266136284917593, 0.009144878014922142, 0.01859864965081215, 0.015200819820165634, 0.005190226715058088, 0.02045201137661934, -0.021021027117967606, -0.0005563134327530861, 0.026564855128526688, 0.014704964123666286, -0.03100316971540451, -0.005881173070520163, -0.007954011671245098, -0.0070964256301522255, 0.0021846098825335503, 0.025621917098760605, 0.016956636682152748, -0.011510353535413742, -0.014656191691756248, 0.0035543092526495457, 0.024678979068994522, 0.018354786559939384, -0.005060166120529175, 0.0027942683082073927, -0.009998400695621967, -0.026906264945864677, 0.028223127126693726, 0.0018218629993498325, -0.00929119624197483, 0.003481150371953845, 0.008632765151560307, -0.01038858201354742, -0.004893525969237089, 0.008084072731435299, -0.0050073289312422276, 0.004291996359825134, -0.010599929839372635, 0.02050078473985195, 0.001906199031509459, 0.027524052187800407, -0.003794108284637332, 0.027133870869874954, -0.021427465602755547, -0.0074500273913145065, 0.01638762280344963, 0.014583032578229904, -0.06473761051893234, 0.024857811629772186, -0.000748863909393549, 0.010835664346814156, -0.01702166721224785, 0.012745928019285202, -0.0017182209994643927, 0.005141453817486763, -0.0036173074040561914, 0.012599609792232513, -0.01981796696782112, 0.0025036644656211138, 0.012745928019285202, 0.006954171694815159, -0.02167132869362831, -0.018013378605246544, 0.015387781895697117, 0.014452972449362278, 0.0020718229934573174, -0.004409863613545895, -0.02250046469271183, -0.003544148290529847, -0.008100329898297787, -0.0040643904358148575, 0.01035606674849987, -0.0050357794389128685, -0.007551637478172779, 0.01052677072584629, -0.0011634317925199866, 0.02908477745950222, -0.009161136113107204, 0.009787051938474178, 0.016972893849015236, -0.007019202224910259, 0.02880839817225933, 0.026662399992346764, -0.007218357175588608, 0.009372483938932419, -0.014241623692214489, 0.00830761343240738, 0.004828495904803276, 0.01262399647384882, -0.01142093725502491, 0.025979584082961082, -0.021086057648062706, -0.004357026424258947, -0.02111857198178768, 0.018013378605246544, -0.0014225366758182645, 0.010795020498335361, -0.011640413664281368, 0.01279470045119524, 0.03066176176071167, -0.022337889298796654, 0.022305374965071678, -0.010599929839372635, 0.027605339884757996, 0.007307773921638727, 0.011510353535413742, -0.008632765151560307, -0.021866420283913612, 0.02771914191544056, -0.02510167472064495, 0.01681031845510006, 0.01674528792500496, 0.00888475775718689, -0.01197369396686554, 0.0008230390376411378, 0.013843313790857792, 0.014054661616683006, 0.001987486844882369, -0.0031702243722975254, -0.007624796126037836, 0.008421416394412518, 0.007002944592386484, 0.005446283146739006, -0.0052959006279706955, -0.009567574597895145, -0.0003238811041228473, 0.012485806830227375, -0.015176433138549328, -0.01433916948735714, 0.023768555372953415, 0.009526930749416351, -0.0005113510997034609, -0.04148929566144943, -0.004129420500248671, 0.0012396390084177256, 0.035148847848176956, 0.00885224249213934, -0.0012772346381098032, 0.0020250824745744467, -0.03423842415213585, -0.0015495488187298179, -0.018403559923171997, 0.017736999318003654, 0.003034067340195179, -0.03176727518439293, -0.028174353763461113, -0.01012033224105835, -0.003420184599235654, 0.0021602234337478876, 0.00902294646948576, -0.036319393664598465, 0.014469229616224766, -0.001834056107327342, -0.022061510011553764, 0.006031555123627186, 0.009031075052917004, -0.007133005186915398, -0.01681031845510006, -0.01900508999824524, 0.004226965829730034, 0.01983422413468361, 0.008210068568587303, -0.02092348225414753, -0.00639735022559762, -0.00040186659316532314, 0.03882305696606636, 0.009616347961127758, 0.016891606152057648, 0.03485621139407158, 0.01879374124109745, -0.01162415649741888, 0.005791756324470043, 0.013908343389630318, -0.012380133382976055, 0.011672928929328918, 0.005783627275377512, -0.008982302621006966, 0.016477039083838463, -0.028174353763461113, -0.015070759691298008, -0.0002526272728573531, 0.013111723586916924, 0.027686627581715584, 0.029328640550374985, -0.0281255804002285, -0.00823445525020361, 0.013753896579146385, -0.03223874419927597, -0.00023890993907116354, -0.018907543271780014, -0.006588376592844725, -0.021557526662945747, -0.018826255574822426, -0.0022435435093939304, -0.0034181522205471992, -0.011071399785578251, 0.013412488624453545, 0.017476879060268402, -0.001076047308743, -0.0041314526461064816, 0.021687587723135948, 0.012680897489190102, -0.04841501638293266, -0.012737799435853958, 0.012095625512301922, 0.0044220564886927605, -0.0009729134617373347, 0.0020139054395258427, 0.0016918025212362409, -0.04877268522977829, -0.021915193647146225, 0.007332160137593746, -0.014526131562888622, 0.024987872689962387, 0.017135469242930412, 0.017184242606163025, -0.024662720039486885, -0.008583992719650269, -0.03505130112171173, -0.014266010373830795, -0.02345966175198555, -0.004730950575321913, -0.006377028301358223, 0.012729670852422714, -0.02064710296690464, 0.025491856038570404, 0.006864755414426327, 0.0019956156611442566, 0.0014215204864740372, -0.04018869251012802, 0.009372483938932419, 0.023085737600922585, -0.014843153767287731, 0.0331166535615921, -0.03184856101870537, -0.003542116144672036, 0.012843473814427853, 0.0264835674315691, 0.012567094527184963, -0.025020387023687363, -0.003773786360397935, 0.01382705569267273, 0.01640387997031212, 0.0040196822956204414, 0.022467950358986855, 0.019639134407043457, -0.020549558103084564, 0.011103914119303226, 0.01155912596732378, -0.004779723007231951, 0.00651928223669529, 0.010957596823573112, -0.007340289186686277, -0.002595113357529044, 0.05781188979744911, -0.03223874419927597, 0.008299484848976135, -0.015688546001911163, -0.00847018975764513, -0.026044612750411034, -0.00881972722709179, -0.013493776321411133, -0.02360597997903824, -0.015647903084754944, -0.021622557193040848, -0.024028675630688667, 0.02682497724890709, -0.012737799435853958, 0.01928146742284298, 0.01539591047912836, -0.010721861384809017, -0.006092521362006664, -0.014908184297382832, -0.0012457356788218021, -0.0016115307807922363, 0.009900854900479317, -0.010827535763382912, -0.004017649684101343, -0.014688706956803799, 0.03126329183578491, 0.003704691771417856, -0.014461101032793522, -0.004304189234972, 0.00843767449259758, -0.02139495126903057, 0.018826255574822426, 0.023752296343445778, -0.02893845923244953, -0.017476879060268402, -0.021687587723135948, 0.02258175238966942, 0.009429385885596275, 0.0034933434799313545, -0.007311838213354349, 0.00994149874895811, -0.007974334061145782, -0.03149089589715004, -0.00395261961966753, 0.016176274046301842, -0.010404839180409908, 0.019460301846265793, 0.014534260146319866, 0.0026052743196487427, 0.007584152277559042, 0.002952779643237591, -0.029930170625448227, 0.004856946412473917, -0.009900854900479317, 0.005868979729712009, 0.029198579490184784, -0.008754696696996689, 0.003212900599464774, 0.008892886340618134, -0.002219157060608268, 0.010144717991352081, -0.0033490576315671206, -0.010274779051542282, -0.0015983214834704995, 0.014973213896155357, -0.01114455796778202, -0.017119212076067924, -0.012607739306986332, -0.01444484293460846, 0.0016267722239717841, 0.015200819820165634, 0.007299644872546196, 0.006324191577732563, 0.03924575448036194, 0.01661522686481476, 0.0003518237790558487, -0.010990111157298088, -0.00225573661737144, -0.021102314814925194, -0.008925401605665684, -0.032206229865550995, -0.006568054668605328, -0.003566502593457699, -0.014737479388713837, -0.017265530303120613, -0.0036701445933431387, 0.007523186504840851, -0.010372323915362358, 0.006153487134724855, -0.0036173074040561914, 9.56401854637079e-05, 0.001980374101549387, 0.003999359905719757, 0.0019844386260956526, -0.010030915029346943, 0.011136429384350777, 0.015078888274729252, 0.001351409824565053, 0.018436074256896973, -0.005495055578649044, 0.0020342273637652397, 0.0141603359952569, 0.006681857630610466, 0.001188834197819233, 0.009648862294852734, 0.0037961406633257866, -0.010006529279053211, -0.005039844196289778, -0.013705124147236347, -0.00746222073212266, -0.00973827950656414, 0.06750139594078064, -0.006909463554620743, -0.00495449174195528, -0.011900534853339195, -0.001680625369772315, -0.010396710596978664, -0.005974653642624617, 0.01804589293897152, 0.007986526936292648, -0.008527090772986412, 0.005929945502430201, -0.020744647830724716, 0.003048292826861143, -0.0012802829733118415, -0.012266330420970917, 0.042497266083955765, 0.021866420283913612, -0.00516177574172616, 0.005673889070749283, -0.002251672325655818, 0.015517842024564743, -0.000911439536139369, -0.002595113357529044, 0.009591961279511452, -0.003956683911383152, 0.009998400695621967, -0.012965405359864235, 0.0064827026799321175, 0.00837264396250248, 0.025410568341612816, -0.0067834677174687386, -0.004548052791506052, -0.030027715489268303, -0.01824098452925682, -0.004413927905261517, 0.016542069613933563, 0.00990898348391056, 0.0077345347963273525, -0.027182642370462418, 0.004454571753740311, -0.005551957059651613, -0.005828335881233215, 0.02737773396074772, 0.0023898615036159754, -0.005393445957452059, -0.025361794978380203, 0.006925721187144518, 0.0022211894392967224, -0.000933793664444238, -0.012510193511843681, -0.019313983619213104, -0.0024426986929029226, 0.013713252730667591, 0.014257881790399551, 0.015428425744175911, 0.001678593223914504, -0.0036924986634403467, 0.0007056797621771693, 0.004033907316625118, 0.004324511159211397, -0.01022600568830967, 0.003214932745322585, -0.019379014149308205, 0.0023736038710922003, -0.005612923298031092, -0.01135590672492981, -0.008230390027165413, -0.03524639457464218, 0.005820206832140684, 0.011055141687393188, -0.005104874260723591, 0.025817006826400757, 0.004413927905261517, -0.02758908085525036, -0.006868819706141949, -0.00749473599717021, 0.0055600861087441444, 0.008974174037575722, -0.012778443284332752, -0.0041090985760092735, 0.0026520146057009697, -0.0009241407387889922, -0.016891606152057648, -0.02763785421848297, -0.0013686834136024117, 0.00823445525020361, 0.014282267540693283, 0.004182257689535618, 0.016143757849931717, -0.020386982709169388, -0.006734694819897413, -0.018549878150224686, 0.00601936224848032, 0.003788011847063899, 0.0008784163510426879, -0.0024650527630001307, -0.0034709894098341465, 0.012128140777349472, 0.007653247099369764, -0.010843793861567974, -0.006645278073847294, -0.003257608972489834, -0.008608378469944, 0.015030115842819214, 0.005377188324928284, -0.010754376649856567, 0.0004719773423857987, -0.006665599998086691, -0.019248953089118004, -0.015729190781712532, -0.009453771635890007, -0.007019202224910259, 0.007856466807425022, 0.00313974148593843, -0.020825935527682304, 0.009982142597436905, 0.017265530303120613, -0.00418632198125124, -0.033653151243925095, -0.024792781099677086, 0.006828175857663155, -0.009803309105336666, -0.004625276196748018, -0.015826735645532608, 0.005238999146968126, -0.015143918804824352, -0.009843953885138035, -0.014331039972603321, -0.008124716579914093, -0.002239478984847665, -0.003812398063018918, 0.0005436122301034629, 0.005226805806159973, 0.012989792041480541, -0.011315262876451015, 0.0020088248420506716, 0.004308253992348909, -0.01282721571624279, 0.016070598736405373, -0.01872871071100235, -0.0028735240921378136, 0.0031458381563425064, 0.004604954272508621, 0.01457490399479866, 0.010412967763841152, 0.025296766310930252, -0.016485167667269707, -0.006881013046950102, -0.013810798525810242, 0.008787211962044239, 0.03888808563351631, -0.014753736555576324, -0.00454398849979043, 0.001972245518118143, 0.009413127787411213, 0.006645278073847294, -0.01858239248394966, 0.023020707070827484, -0.0013432810083031654, -0.010729990899562836, 0.018777484074234962, 0.00040237465873360634, -0.006889141630381346, 0.0026093386113643646, 0.012331360019743443, 0.01642826572060585, 0.013705124147236347, 0.022484207525849342, 0.013485646806657314, 0.005974653642624617, -0.0008179585565812886, 0.020143117755651474, -0.017054181545972824, -0.017395591363310814, 0.016338849440217018, 0.0022049318067729473, -0.0008956899982877076, 0.0030198420863598585, 0.003501472296193242, 0.018013378605246544, -0.010518642142415047, 0.006950107403099537, 0.005226805806159973, -0.015591001138091087, -0.0014367620460689068, -0.017509393393993378, -0.007811758201569319, 0.004316382575780153, 0.002050484996289015, -0.00040923329652287066, -0.013461261056363583, 0.011095785535871983, 0.016070598736405373, -0.006328255869448185, -0.0006030538934282959, -0.02345966175198555, 0.001822879072278738, 0.016989151015877724, 0.014209108427166939, -0.014225366525352001, 0.014347298070788383, 0.025573143735527992, 0.010551157407462597, 0.007478478364646435, -0.0283206719905138, -0.0004204103897791356, -0.0032860597129911184, -0.008551477454602718, -0.0029670048970729113, -0.012201299890875816, -0.062103886157274246, -0.002076903358101845, 0.0034079912584275007, -0.009161136113107204, -0.012022466398775578, 0.00847018975764513, 0.02141120843589306, 0.011916792951524258, 0.022191571071743965, 0.043050020933151245, 0.011095785535871983, 0.008892886340618134, 0.0022293180227279663, 0.0008108458714559674, 0.0016775771509855986, -0.015339009463787079, -0.020078089088201523, -0.0018787644803524017, 0.0201106034219265, -0.0038550742901861668, 0.023638494312763214, -0.01600557006895542, -0.01832227222621441, 0.005413767881691456, 0.009762665256857872, -0.0005598697462119162, 0.01395711675286293, -0.0016470941482111812, 0.014501744881272316, -0.03670957311987877, 0.0019458269234746695, -0.007986526936292648, -0.005377188324928284, -0.00295074749737978, -0.0022496399469673634, -0.012493936344981194, 0.02893845923244953, -0.009868339635431767, 0.0018106858478859067, -2.7005968149751425e-05, -0.014810638502240181, -0.0015607258537784219, -0.019395271316170692, 0.027410248294472694, 0.04054635763168335, 0.0331166535615921, 0.0017293981509283185, 0.0031844498589634895, 0.02022440731525421, -0.015184562653303146, 0.007543508429080248, -0.009925241582095623, -0.010543028824031353, 0.0023634429089725018, 0.013583192601799965, 0.02854827791452408, -0.010502384975552559, 0.008356386795639992, 0.004401734564453363, 0.008982302621006966, 0.014152207411825657, 0.01672903075814247, 0.005312158260494471, 0.0019437946612015367, 0.011063270270824432, 1.8242126316181384e-05, -0.01230697426944971, -0.03137709200382233, 0.004033907316625118, 0.0077385990880429745, -0.015111403539776802, -0.0019935835152864456, -0.005165840033441782, -0.02145998179912567, 0.00046765891602262855, -0.012095625512301922, 0.005088616628199816, 0.003755496582016349, -0.0023187347687780857, -0.0005461524706333876, -0.029523732140660286, -0.009177393279969692, 0.003727046074345708, 0.009185521863400936, -0.0202406644821167, 0.00947002973407507, -0.006377028301358223, 0.002584952162578702, 0.00820193998515606, 0.014664320275187492, -0.0010597897926345468, -0.008445803076028824, 0.01324178371578455, -0.007815822958946228, -0.011762346141040325, -0.012266330420970917, 0.01203872449696064, 0.01080315001308918, -0.014599289745092392, -0.005360930692404509, 0.01981796696782112, 0.0017019634833559394, 0.0038571064360439777, 0.00454398849979043, 0.0031011297833174467, -0.014688706956803799, 0.000732098298612982, 0.012217557057738304, 0.008803469128906727, 0.006055941805243492, -0.014420457184314728, 0.004013585392385721, 0.016330720856785774, 0.02045201137661934, -0.0071208118461072445, 0.010104074142873287, 0.015525971539318562, 0.030824337154626846, -0.003399862442165613, -0.02544308453798294, 0.004352962132543325, 0.001125836162827909, -0.002538211876526475, -0.024402599781751633, 0.003968877252191305, 0.016924122348427773, 0.004017649684101343, -0.004970749374479055, -0.01981796696782112, 0.003944491036236286, 0.0011217717546969652, 0.001035403460264206, -0.009591961279511452, 0.0037250136956572533, -0.009331840090453625, 0.009535059332847595, 0.013583192601799965, -0.016273818910121918, 0.006401414982974529, 0.011014497838914394, 0.0067915963008999825, -0.005068294703960419, -0.00027002792921848595, -0.007055781781673431, -1.6257561583188362e-05, 0.0005629180814139545, -0.010591801255941391, 0.006685921922326088, -0.010469869710505009, -0.008616507984697819, 0.004214772954583168, -0.0007392109837383032, -0.014843153767287731, -0.0070476527325809, -0.0012487838976085186, 0.008892886340618134, 0.004434249829500914, 0.02620718814432621, -0.013818927109241486, 0.0022679297253489494, 0.013566935434937477, 0.002016953658312559, -0.007368739694356918, -0.009104234166443348, -0.009656991809606552, 0.010754376649856567, 0.003485214663669467, -0.017395591363310814, 0.009518802165985107, -0.00021109427325427532, 0.014526131562888622, -0.008295420557260513, -0.01700541004538536, 0.010242263786494732, 0.03394578769803047, 0.0006513185799121857, 0.013127980753779411, 0.01162415649741888, 0.007803629618138075, -0.008010913617908955, -0.007962140254676342, -0.0046821776777505875, -0.0020423561800271273, 0.003088936675339937, 0.008844112977385521, 0.00990898348391056, -0.00613722950220108, 0.02710135467350483, 0.006133165210485458, -0.024451373144984245, -0.0041070664301514626, -0.02085845172405243, 7.646134326932952e-05, 0.00994149874895811, -0.008120652288198471, -0.018972573801875114, 0.01437168475240469, 0.01457490399479866, 0.027150128036737442, -0.003027970902621746, 0.005677953362464905, 0.023492176085710526, -0.030759306624531746, 0.0067875320091843605, -0.010185361839830875, -0.009949627332389355, 0.03256389498710632, -0.008835984393954277, -0.002479278016835451, -0.011607898399233818, 0.005206483881920576, 0.004255416803061962, 0.010892566293478012, -0.006332320161163807, 0.015330880880355835, -0.010860051028430462, 0.013981502503156662, 0.0012640254572033882, -0.017037924379110336, 0.020663360133767128, 0.00462934048846364, -0.027686627581715584, 0.00834012869745493, -0.01632259227335453, -0.007746728137135506, 0.006133165210485458, 0.02702006697654724, -0.010543028824031353, -0.02141120843589306, 0.01659896969795227, 0.003070646896958351, 0.005198355298489332, -0.012079368345439434, 0.017574423924088478, -0.004690306261181831, 0.013111723586916924, 0.011981822550296783, 0.013550677336752415, 0.0023898615036159754, 0.0010811277898028493, 0.003751432290300727, 0.009071718901395798, 0.001076047308743, -0.0019996799528598785, -0.020809678360819817, -0.003137709340080619, -0.0117948604747653, 0.02132992073893547, -0.002544308314099908, 0.0009078832226805389, 0.019037604331970215, -0.0016094986349344254, 0.004499279893934727, 0.007632925175130367, -0.00795807596296072, 0.016485167667269707, 0.007677633315324783, 0.0067875320091843605, -0.002926361048594117, 0.0155097134411335, 0.003340928815305233, -0.010347938165068626, 0.008494575507938862, 0.0003835768438875675, -0.011014497838914394, -0.0050073289312422276, -0.011063270270824432, 0.006295740604400635, 0.008303549140691757, -0.002887749345973134, -0.02916606515645981, 0.004686241969466209, -0.009388742037117481, 0.0064583164639770985, 0.01368886698037386, -0.004905719310045242, -0.008697795681655407, 0.009754536673426628, 0.025703204795718193, -0.0038835250306874514, 0.028662079945206642, -0.009713892824947834, 0.014070919714868069, -0.0173468180000782, 0.00284710549749434, 0.0015353234484791756, 0.006068134680390358, 0.019444042816758156, 0.005873044021427631, 0.018013378605246544, 0.006295740604400635, 0.003007648978382349, -0.016103114932775497, 0.0046984353102743626, 0.008966045454144478, -0.017997119575738907, -0.012111883610486984, 0.020484527572989464, 0.018809998407959938, -0.00043463573092594743, 0.018208468332886696, 0.014501744881272316, -0.0040867445059120655, 0.03683963418006897, -0.00011539058323251083, 0.017460621893405914, 0.012786571867763996, 0.00843767449259758, 0.018988830968737602, -0.007856466807425022, -0.005714532919228077, -0.02119985967874527, -0.008136909455060959, 0.015265850350260735, 0.0006401414866559207, 0.0003693514736369252, 0.01437168475240469, 0.013575064018368721, -0.006730630528181791, -0.0011522546410560608, -0.023654751479625702, 0.009722021408379078, -0.00042828512960113585, -0.005738919135183096, -0.011404679156839848, -0.006799724884331226, 0.0010100010549649596, 0.00857586320489645, 0.02983262576162815, -0.012957276776432991, 0.02929612621665001, -0.02703632414340973, 0.017184242606163025, -0.013217397034168243, -0.017037924379110336, -0.025508113205432892, -0.006287612020969391, -0.01430665422230959, -0.0033876693341881037, 0.0052959006279706955, -0.0026052743196487427, -0.009266809560358524, 0.03518136218190193, 0.01073811948299408, -0.009933370165526867, -0.015046373009681702, -0.013388101942837238, -0.00651928223669529, -0.007007008884102106, 0.02888968586921692, 0.00830761343240738, -0.00847018975764513, 0.015899894759058952, 0.02139495126903057, -0.01220942847430706, 0.006803789641708136, 0.011331520043313503, -0.006141293793916702, -0.01894005946815014, 0.00303609948605299, 0.002544308314099908, -0.01830601505935192, -0.0031133231241256, 0.0050073289312422276, 0.012664640322327614, 0.005092680919915438, -0.018143437802791595, -0.009445643052458763, 0.004021714441478252, -0.003830687841400504, 0.008860371075570583, 0.011843633837997913, -0.0017964605940505862, -0.0011654639383777976, 0.012380133382976055, 0.00831980723887682, 0.0155097134411335, 0.008624636568129063, 0.012908503413200378, -0.007693890947848558, 0.010079688392579556, -0.002089096698909998, 0.010689347051084042, -0.018094666302204132, -0.0010013642022386193, -0.015176433138549328, -0.0016796092968434095, -0.0020047605503350496, -0.006076263729482889, -0.016989151015877724, -0.004978877957910299, 0.004194451030343771, 0.0010516609763726592, -0.00024297433265019208, 0.009591961279511452, 0.011185201816260815, 0.015582872554659843, 0.00013501396460924298, -0.005621051881462336, -0.008128780871629715, 0.006425801198929548, -0.0047472077421844006, 0.0021378693636506796, -0.002278090687468648, 0.005905559286475182, -0.01094133872538805, 0.027117611840367317, 0.0015312590403482318, 0.005023586563766003, 0.015428425744175911, -0.013095465488731861, -0.006950107403099537, 0.016712773591279984, -0.003135677194222808, 0.0007564846309833229, -0.01265651173889637, 0.01885877177119255, 0.0040643904358148575, 0.023069480434060097, -0.008348258212208748, 0.011884277686476707, -0.0018462493317201734, -0.01351003348827362, -0.021720102056860924, 0.00161559518892318, -0.004523666575551033, -0.02345966175198555, 0.013745767995715141, 0.00524712773039937, -0.013209268450737, -0.011632285080850124, -0.0010984014952555299, -0.00495449174195528, -0.013916472904384136, -0.014387941919267178, -0.01791583187878132, 0.00590149499475956, -0.0132742989808321, -0.005190226715058088, -0.013436874374747276, -0.0031438060104846954, -0.006051877047866583, -0.01220942847430706, 0.006580248009413481, -0.00970576424151659, 0.011103914119303226, 0.028727110475301743, -0.021037284284830093, 0.009486286900937557, 0.01587550900876522, 0.008909143507480621, -0.0034730215556919575, 0.00754757272079587, -0.011136429384350777, -0.0004541956295724958, -0.01988299749791622, 0.019444042816758156, 0.0007717261323705316, -0.00831980723887682, -0.0050439084880054, 0.006974494084715843, 0.022955676540732384, -0.004357026424258947, 0.004442378878593445, 0.008388902060687542, 0.011819247156381607, -0.012298845686018467, -0.01887502893805504, -0.0005720629706047475, -0.0407414473593235, -0.0013026371598243713, 0.014436714351177216, -0.015436554327607155, -0.0201756339520216, -1.992503894143738e-05, 0.0005253224517218769, -0.009689507074654102, -0.005417832173407078, -0.005641373805701733, 0.0003348041500430554, -0.019671648740768433, 0.0006497944123111665, -0.013022306375205517, -0.0061941309832036495, 0.018566135317087173, 0.021378694102168083, -0.02084219455718994, -0.004970749374479055, -0.01789957471191883, -0.012575224041938782, -0.015932410955429077, -0.005348737817257643, -0.012160656042397022, -0.006913527846336365, -0.002355314325541258, -0.025573143735527992, 0.03210868313908577, 0.015834864228963852, 0.007559766061604023, 0.00036782733513973653, 0.0008519978146068752, -0.010543028824031353, 0.0019072152208536863, 0.01832227222621441, -0.0019275371450930834, -0.038237784057855606, -0.001009492902085185, 0.007498800288885832, 0.013778283260762691, 0.01477812323719263, -0.005421896930783987, -0.009535059332847595, -0.0065314751118421555, 0.020484527572989464, 0.004755336791276932, 0.01268902700394392, -0.014249752275645733, 0.0046821776777505875, -0.0014367620460689068, 0.016444522887468338, -0.006624956149607897, 0.004054229240864515, 0.002643886022269726, 0.020338209345936775, -0.006710308603942394, -0.0024650527630001307, 0.0020697908475995064, -0.018744967877864838, -0.004596825689077377, 0.0029182322323322296, -0.021703844889998436, -0.013404359109699726, 0.00540157500654459, 0.004824431147426367, 0.0017751224804669619, 0.00044530475861392915, -0.029052263125777245, 0.006746888160705566, 0.0002002982364501804, 0.018972573801875114, 0.0006127068190835416, -0.005978718400001526, 0.015062631107866764, -0.012737799435853958, 0.0059340097941458225, 0.005747048184275627, -0.007214292883872986, 0.0059340097941458225, 0.01292476151138544, 0.01872871071100235, 0.007779242936521769, 0.013347458094358444, -0.0024244089145213366, 0.018208468332886696, -0.02675994671881199, 0.01928146742284298, 0.0008641909807920456, -0.016989151015877724, 0.002702819649130106, 0.0050073289312422276, 0.034270938485860825, -0.0068119182251393795, -0.006990751251578331, -0.005856786388903856, 0.014209108427166939, -0.0031255162321031094, 0.0023634429089725018, 0.027670370414853096, -0.0025300830602645874, 0.01955784671008587, -0.029962684959173203, -0.016989151015877724, -0.04480583965778351, -0.00967324897646904, -0.021655071526765823, -0.01255896594375372, 0.027735399082303047, 0.015753576532006264, 0.007949947379529476, 0.019427785649895668, 0.004470829386264086, 0.014485486783087254, -0.010104074142873287, 0.010071558877825737, 0.012079368345439434, 0.009835824370384216, 0.007177713327109814, -0.011827375739812851, -0.015591001138091087, -0.0023187347687780857, 0.016647743061184883, 0.008429545909166336, 0.02373603917658329, -0.006450187414884567, 0.004503344651311636, 0.008917272090911865, -0.018891286104917526, 0.0325964093208313, -0.005799884907901287, 0.013282427564263344, 0.01608685776591301, 0.012567094527184963, -0.017867060378193855, -0.0007315902621485293, -0.005226805806159973, 0.008397030644118786, -0.018842514604330063, 8.732088463148102e-05, -0.008909143507480621, -0.002871491713449359, -0.0021216117311269045, 0.0010953531600534916, 0.0133393295109272, -0.001946842996403575, 0.007966205477714539, 0.0004793440457433462, -0.004226965829730034, -0.01138842198997736, 0.02482529543340206, -0.003320606891065836, 0.001972245518118143, 0.01824098452925682, -0.0028186547569930553, 0.017135469242930412, 0.009900854900479317, -0.004121291916817427, 0.015347138047218323, 0.00036579513107426465, 0.006710308603942394, -0.010795020498335361, 0.01653393916785717, -0.031864821910858154, 0.001527194632217288, -0.00091499590780586, 0.0040440685115754604, 0.0005812078015878797, -0.004202579613775015, -0.0046821776777505875, -0.013314942829310894, 0.0028592986054718494, -0.0009627524414099753, 0.016566455364227295, -0.00330231711268425, 0.002215092768892646, 0.013371843844652176, 0.013079208321869373, -0.009591961279511452, 0.007876788266003132, 0.007502864580601454, 0.002145998179912567, -0.0019285532180219889, -0.0034140879288315773, 0.014883797615766525, 0.010201619938015938, 0.02936115674674511, -0.008421416394412518, -0.009957755915820599, 0.022061510011553764, 0.003914007917046547, -0.007775178644806147, 0.0047268858179450035, 0.0015719030052423477, -0.010282907634973526, 0.02689000591635704, 0.00870592426508665, 0.008559606038033962, 0.014217237010598183, 0.02290690317749977, -0.020468270406126976, 0.005210548639297485, -0.01608685776591301, -0.0019112795125693083, 0.005612923298031092, -0.009388742037117481, -0.004958556033670902, -0.011412807740271091, -0.0003884033067151904, -0.01285973098129034, 0.009201779961585999, 0.017070438712835312, 0.024939099326729774, 0.00967324897646904, 0.013420617207884789, -0.004844753537327051, -0.013770154677331448, -0.013461261056363583, 0.03004397265613079, 0.001462164451368153, -0.009543188847601414, 0.0033876693341881037, 0.010372323915362358, 0.0010547093115746975, -0.0035766635555773973, -0.0032860597129911184, -0.03232003375887871, -0.012745928019285202, -0.055470798164606094, -0.012331360019743443, -0.003141773631796241, 0.013428745791316032, -0.012380133382976055, 0.01029103621840477, 0.014526131562888622, -0.0024264410603791475, 0.005677953362464905, -0.004174129106104374, 0.0020575975067913532, -0.02518296241760254, -0.010811278596520424, 0.019606618210673332, -0.011152687482535839, 0.011607898399233818, 0.023703524842858315, -0.02318328246474266, -0.0034140879288315773, 0.016241304576396942, 0.00010262585419695824, -0.009624476544559002, 0.005088616628199816, 0.006027490831911564, 0.01663961447775364, -0.0071004899218678474, 0.0020301630720496178, 0.013583192601799965, -0.02770288474857807, -0.013843313790857792, 0.005190226715058088, 0.008153166621923447, 0.007356546353548765, 0.009819567203521729, 0.03420590981841087, -0.003013745415955782, 0.016761545091867447, -0.014835025183856487, -0.013615707866847515, 0.004930105526000261, -0.013144238851964474, 0.000335566233843565, -0.004950427450239658, 0.011193331331014633, 0.007409383542835712, -0.009591961279511452, 0.005222741514444351, -0.0011563190491870046, 0.0002129994536517188, -0.012583352625370026, -0.014119692146778107, 0.003196642966940999, -0.018192211166024208, 0.012168784625828266, -0.007043588440865278, -0.014168464578688145, 0.008966045454144478, -0.0005283707287162542, 0.007291516289114952, 0.015777964144945145, 0.010250392369925976, -0.008462061174213886, -0.01162415649741888, 0.020825935527682304, -0.00045622780453413725, -0.0043976702727377415, -0.008116587996482849, 0.030986912548542023, -0.0005771434516645968, 0.015948668122291565, -0.014087176881730556, -0.013136109337210655, -0.0015779995592311025, 0.005657631438225508, -0.0005060166004113853, -0.02154126949608326, 0.007267130073159933, -0.0029690370429307222, -0.008827855810523033, 0.021427465602755547, -0.01005530171096325, -0.014526131562888622, 0.02758908085525036, -0.009112362749874592, -0.002395958174020052, -0.021102314814925194, -0.017265530303120613, 0.009209908545017242, -0.00581207824870944, -0.02284187451004982, 0.023703524842858315, 0.008665280416607857, 0.011128300800919533, 0.012046853080391884, -0.003767689922824502, -0.02084219455718994, -0.010128460824489594, 0.0021155152935534716, 0.0065030246041715145, -0.0050357794389128685, -0.025914553552865982, -0.003907911479473114, -0.006360771134495735, 0.009274939075112343, 0.020679617300629616, -0.005925881210714579, -0.03349057585000992, -0.004840688779950142, -0.0025686947628855705, 0.026028355583548546, 0.008697795681655407, 0.034953758120536804, 0.007397190667688847, 0.00011691472900565714, 0.013867699541151524, 0.006555861793458462, -0.0038164625875651836, -0.008632765151560307, 0.0008921336848288774, -0.008811598643660545, -0.007157391402870417, -0.009307454340159893, -0.006645278073847294, -0.012778443284332752, 0.001523130340501666, 0.010640573687851429, 0.01594053953886032, -0.0066696647554636, -0.005974653642624617, -0.015428425744175911, -0.030352866277098656, 0.0173468180000782, -0.0007956044282764196, 0.0014276171568781137, 0.003934329841285944, -0.006206323858350515, 0.007303709629923105, 0.016972893849015236, -0.01612750068306923, -0.016038084402680397, 0.010778763331472874, -0.022061510011553764, 0.01642826572060585, 0.00895791593939066, -0.03323045372962952, -0.028645822778344154, 0.0052715144120156765, 0.01165667176246643, 0.04109911620616913, 0.012168784625828266, -0.0027963004540652037, 0.0013432810083031654, 0.0133393295109272, 0.0020382916554808617, 0.003281995188444853, 0.013583192601799965, 0.01661522686481476, -0.009957755915820599, -0.005860850680619478, 0.0022435435093939304, 0.001218301011249423, 0.01830601505935192, 0.00831980723887682, -0.0020291469991207123, -0.011136429384350777, 0.020565815269947052, -0.02269555628299713, -0.0067875320091843605, -0.0014814703026786447, -0.0014581000432372093, -0.0028125580865889788, 0.006177873350679874, -0.0006757049122825265, 0.004816302563995123, 0.01879374124109745, -0.008429545909166336, 0.020874708890914917, -0.022110283374786377, 0.017948348075151443, -0.025621917098760605, 0.02450014464557171, -0.013266170397400856, -0.016444522887468338, -0.029686307534575462, -0.00346489273943007, -0.011372163891792297, 0.006694050971418619, 0.01702166721224785, 0.021313663572072983, 0.005816142540425062, -0.0028023971244692802, 0.014786251820623875, 0.017720742151141167, -0.01872871071100235, -0.02250046469271183, -0.01289224624633789, -0.01142093725502491, 0.006039684172719717, 0.010469869710505009, -0.009404999203979969, 0.013217397034168243, -0.00527964299544692, -0.010933210141956806, -0.006718437187373638, -0.001569870742969215, -0.008413287810981274, -0.008230390027165413, 0.007328095845878124, 0.004340768791735172, -0.0027983328327536583, 0.012810958549380302, 0.0029202643781900406, 0.030417896807193756, 0.013737639412283897, -0.009559446014463902, -0.0010135573102161288, 0.013453132472932339, -0.009112362749874592, -0.024646462872624397, -0.0030421961564570665, 0.013575064018368721, -0.012396390549838543, -0.0009937434224411845, -0.011949307285249233, -0.004316382575780153, 0.006771274376660585, 0.006946043111383915, 0.002357346471399069, -0.01368886698037386, 0.007901174947619438, -0.01094133872538805, 0.0011725765652954578, -0.00457650376483798, 0.010656831786036491, 0.01595679670572281, -0.001994599588215351, 0.016907863318920135, 0.01519269123673439, 0.0029629406053572893, 0.0037798830308020115, 0.005990911275148392, 0.012908503413200378, -4.842340058530681e-05, 0.002849137643352151, 0.0038875893224030733, -0.0022984128445386887, 0.003133645048364997, 0.0050357794389128685, 0.00639735022559762, -0.002763785421848297, -0.007604474201798439, -0.008909143507480621, -0.01824098452925682, 0.01681031845510006, 0.01796460524201393, -0.005881173070520163, 0.01887502893805504, -0.007002944592386484, 0.007031395100057125, 0.01989925466477871, -0.008510833606123924, 0.010567414574325085, 0.01650955341756344, -0.008315742947161198, 0.012014337815344334, -0.034433513879776, 0.00471875723451376, -0.015623516403138638, -0.003479118226096034, 0.0020382916554808617, 0.00042828512960113585, -0.01444484293460846, 0.034270938485860825, -0.006271354388445616, -0.014176593162119389, 0.0015739351511001587, -0.0070720394141972065, -0.0009348097955808043, -0.012932890094816685, 0.003066582605242729, -0.013420617207884789, -0.0037168848793953657, 0.007011073175817728, 0.015834864228963852, -0.00925868097692728, -0.015379653312265873, -0.01168918702751398, 0.001689770258963108, -0.0018980703316628933, 0.007933690212666988, 0.00042752307490445673, 0.0012579287867993116, 0.0070964256301522255, -0.002690626308321953, -0.007007008884102106, -0.007108618505299091, 0.014461101032793522, 0.013575064018368721, -0.005564150400459766, 0.02606087177991867, -0.0043488978408277035, -0.016924122348427773, -0.010664960369467735, 0.002830847864970565, -0.012835344299674034, -0.013282427564263344, -0.015371524728834629, -0.016103114932775497, -0.0024630206171423197, 0.009925241582095623, -0.005868979729712009, -0.023004449903964996, 0.0053162225522100925, -0.006881013046950102, 0.0013493775622919202, 0.019248953089118004, 0.0013188946759328246, 0.0008824807591736317, 0.014314782805740833, 0.007669504731893539, 0.00814097374677658, -0.0109738539904356, -0.015233335085213184, 0.006368899717926979, 0.0074500273913145065, -0.01859864965081215, 0.017184242606163025, 0.015054501593112946, -0.022191571071743965, 0.002562598092481494, 0.006210388615727425, 0.00577956298366189, -0.008445803076028824, -0.0064583164639770985, -0.01324178371578455, 0.0033876693341881037, -0.0024833425413817167, -0.005072358995676041, -0.019183922559022903, -0.010250392369925976, 0.011168944649398327, -0.01049425546079874, 0.003956683911383152, -0.016566455364227295, 0.01858239248394966, -0.005364995449781418, 0.0086734090000391, -0.0015779995592311025, 0.00037824231549166143, 0.0015393878566101193, -0.003095033345744014, -0.011307134293019772, 0.00899043120443821, -0.0026926586870104074, -0.016420137137174606, 0.020403239876031876, 0.006381093058735132, 0.013282427564263344, 0.019379014149308205, -0.0003802745195571333, 0.026564855128526688, -0.008697795681655407, -0.005438154097646475, 0.0008514897781424224, -0.01988299749791622, 0.0026784332003444433, 0.020744647830724716, -0.0013493775622919202, -0.0003886573249474168, -0.004824431147426367, 0.0066696647554636, -0.014688706956803799, -0.0012548805680125952, 0.010380453430116177, 0.017590681090950966, -0.0013890054542571306, -0.013233655132353306, 0.005990911275148392, 0.021297406405210495, -0.019427785649895668, 0.054853010922670364, 0.02895471639931202, 0.005795820616185665, 0.0005072867497801781, 0.011876148171722889, 0.01619253121316433, 0.022825615480542183, 0.005921816918998957, 0.0009043268510140479, 0.003645758144557476, -0.004828495904803276, -0.012363875284790993, -0.0023492176551371813, 0.0043732840567827225, -0.009096105583012104, 0.005214612931013107, -0.015826735645532608, -0.019379014149308205, -0.006486766971647739, 0.011713572777807713, -0.01265651173889637, -0.011380293406546116, -0.0028125580865889788, -0.012981662526726723, 0.006157551426440477, -0.000284761335933581, 0.016103114932775497, 0.008941658772528172, -0.020143117755651474, -0.004080648068338633, 0.014257881790399551, -0.0100878169760108, -0.004926041234284639, 0.007344353478401899, 0.010819407179951668, 0.0043936059810221195, -0.008762825280427933, 0.0015546292997896671, 0.021102314814925194, -0.021768875420093536, -0.030304094776511192, 0.002666240092366934, -0.004901654552668333, 0.033718183636665344, -0.017054181545972824, -0.0029873268213123083, 0.003932297695428133, 0.010502384975552559, -0.010242263786494732, -0.002643886022269726, 0.013745767995715141, 0.00885224249213934, -0.0109088234603405, 0.002497567795217037, 0.009396870620548725, 0.003444570815190673, -0.008624636568129063, -0.013355586677789688, -0.02160630002617836, 0.005084552336484194, 0.005795820616185665, -0.010039044544100761, 0.004548052791506052, 0.0015099210431799293, -0.009900854900479317, 0.02235414646565914, -0.01934649795293808, 0.016241304576396942, 0.008185681886970997, 0.008047493174672127, 0.011859891004860401, -0.005612923298031092, -0.026711173355579376, 0.0004869647673331201, -0.0038875893224030733, -0.005141453817486763, -0.008303549140691757, -0.0023614107631146908, -0.0264835674315691, -0.021801389753818512, 0.026662399992346764, -0.009014817886054516, 0.00019242348207626492, -0.006750952452421188, -0.02708509750664234, 0.0006233758758753538, -0.004978877957910299, 0.0101528475061059, 0.014014017768204212, 0.007669504731893539, 0.013623836450278759, -0.010795020498335361, -0.017541909590363503, 0.004377348348498344, 0.027052581310272217, 0.01430665422230959, -0.007198035251349211, -0.0018645391101017594, 0.004515537526458502, 0.015371524728834629, -0.017753256484866142, 6.11563737038523e-05, -0.0016227078158408403, 0.006413607858121395, 0.014802509918808937, -0.019037604331970215, -0.015842992812395096, -0.010510513558983803, -0.0038794605061411858, 0.006633085198700428, -0.0055844723246991634, 0.006893205922096968, 0.00036579513107426465, 0.00870592426508665, -0.0007346385391429067, 0.01077063474804163, 0.005531635135412216, 0.007567894645035267, 0.009413127787411213, 0.012290716171264648, -0.008949787355959415, 0.006568054668605328, 0.01763945445418358, 0.009510673582553864, -0.022532980889081955, 0.011713572777807713, 0.008941658772528172, 0.00471875723451376, -0.005381252616643906, -0.004031875170767307, 0.0012680897489190102, -0.023410888388752937, -0.013802669942378998, 0.0025077287573367357, -0.01853361912071705, -0.004135517403483391, -0.0071248761378228664, -0.01679406128823757, 0.016972893849015236, 0.0007016154122538865, -0.016355106607079506, 0.026239704340696335, 0.01949281617999077, -0.0040420363657176495, 0.011136429384350777, 0.002849137643352151, -0.010282907634973526, -0.0010145734995603561, 0.0014296493027359247, 0.008088137023150921, -0.0011817214544862509, -0.014379813335835934, 0.002519922098144889, 0.017867060378193855, -0.010364195331931114, 0.018744967877864838, -0.009722021408379078, 0.0047472077421844006, 0.013631965033710003, 0.006612763274461031, -0.007555701769888401, -0.0011735927546396852, 0.010477998293936253, 0.007722341455519199, -0.008746568113565445, -0.01578609272837639, -0.01190866343677044, 0.029036004096269608, -0.0077101485803723335, -0.00117968930862844, -0.008364515379071236, -0.017818287014961243, -0.0027922361623495817, -0.004824431147426367, -0.0023431209847331047, 0.021151088178157806, 0.0005075407680124044, 0.004909783601760864, 0.004015617538243532, -0.01324178371578455, 0.0068119182251393795, 0.012550837360322475, 0.0061981952749192715, 0.0003043212345801294, -0.00512926047667861, 0.0035461806692183018, -0.002393926028162241, 0.012778443284332752, -0.0038652352523058653, 0.007368739694356918, 0.023703524842858315, 0.004157871473580599, 0.004050164949148893, -0.0007326063350774348, -0.006759081035852432, -0.0025666626170277596, 0.01214439794421196, 0.013713252730667591, -0.03586418181657791, 0.001299588824622333, 0.016859091818332672, 0.00083370809443295, -0.016225045546889305, -0.005328415893018246], "b16eb01f-efdb-4a30-8dba-5369d9780275": [-0.012399128638207912, 0.002729658968746662, -0.018907129764556885, 0.022222816944122314, -0.030966978520154953, -0.025600191205739975, -0.007259813137352467, 0.01836736686527729, -0.008489701896905899, 0.015976985916495323, -0.0018901346484199166, 0.025661878287792206, -0.018459897488355637, 0.017889291048049927, 0.008636209182441235, -0.026911044493317604, 0.007734033744782209, 0.02630959451198578, 0.024227650836110115, -0.012244910933077335, 0.06520337611436844, -0.011712858453392982, -0.04780758544802666, 0.013679138384759426, 0.011813100427389145, -0.028869614005088806, -0.017318682745099068, -0.0011730208061635494, -0.05147797614336014, -0.008242953568696976, -0.006754749454557896, -0.008836692199110985, 0.01980159431695938, -0.015113365836441517, -0.019369782879948616, -0.01881459914147854, -0.005659801419824362, 0.04203983396291733, 0.001707964576780796, -0.00460726348683238, -0.0278517734259367, -0.023533670231699944, -0.008142711594700813, 0.018506161868572235, -0.02848406881093979, 0.007988492958247662, 0.0019094118615612388, -0.004626540467143059, -0.008165843784809113, 0.012537924572825432, -0.0011431410675868392, 0.01961653120815754, -0.01990954577922821, -0.022577518597245216, 0.04034343361854553, -0.023533670231699944, -0.011149962432682514, 0.10653381049633026, -0.011628038249909878, -0.04987410828471184, 0.002644838998094201, -0.02041846513748169, 0.0063075171783566475, 0.024844523519277573, -0.0010910924756899476, -0.008042469620704651, -0.011813100427389145, -0.005424618721008301, -0.029933717101812363, -0.0008188012870959938, -0.021713897585868835, -0.021605944260954857, -0.022577518597245216, 0.0516013503074646, 0.0063075171783566475, -0.0029725523199886084, 0.026803091168403625, 0.021127868443727493, 0.020264247432351112, 0.011743701994419098, -0.01378709077835083, -0.0004906060639768839, -0.02060352824628353, 0.006388481240719557, 0.0596206858754158, -0.007803431712090969, -0.009661759249866009, -0.05446980521082878, -0.01842905394732952, -0.0193389393389225, -0.015406380407512188, 0.0007021739147603512, -0.025152958929538727, -0.03917137533426285, -0.003479544073343277, -0.008381749503314495, -0.009168261662125587, 0.00773788895457983, 0.03525424003601074, -0.007653069216758013, -0.009337901137769222, 0.03673473373055458, -0.025214646011590958, 0.004915699362754822, 0.016331687569618225, -0.006534988526254892, 0.009546095505356789, -0.003951836843043566, 0.012005873024463654, 0.016794342547655106, 0.015514332801103592, -0.05046013742685318, 0.007973071187734604, 0.009815976954996586, -0.0379684753715992, -0.0077918656170368195, -0.012661299668252468, 0.017256995663046837, 0.039911624044179916, 0.009615493938326836, 0.004225573502480984, -0.00803475920110941, 0.01504396740347147, -0.012252621352672577, 0.020433887839317322, 0.027990570291876793, 0.011304181069135666, 0.0031537585891783237, 0.014303721487522125, 0.011936474591493607, 0.00903717614710331, -0.017179887741804123, 0.009453564882278442, 0.023950058966875076, 0.0005677150911651552, 0.02168305404484272, 0.020618949085474014, 0.042934294790029526, -0.02546139433979988, 0.048424456268548965, -0.05508667603135109, -0.014226612634956837, -0.036179546266794205, 0.004333526361733675, -0.011905631050467491, 0.0036029184702783823, -0.037505824118852615, 0.04422972723841667, -0.03621039167046547, 0.03713569790124893, -0.04706734046339989, -0.004580275155603886, -0.02453608624637127, 0.005867995787411928, 0.046419624239206314, -0.02236161194741726, -0.02672598324716091, 0.022454144433140755, 0.00623426353558898, -0.011820810846984386, 0.02672598324716091, -0.08321604132652283, -0.013524920679628849, -0.002702670870348811, 0.03500749170780182, 0.014635290019214153, 0.08185892552137375, 0.022639205679297447, -0.004453045316040516, 0.007845841348171234, 0.024582352489233017, 0.01015525683760643, 0.016732655465602875, -0.015653129667043686, 0.013802512548863888, -0.017688807100057602, -0.006211130879819393, -0.009908507578074932, 0.024212228134274483, -0.023549091070890427, -0.0213437732309103, -0.005474739708006382, 0.03849281743168831, -0.02803683653473854, -0.03485327214002609, 0.016840606927871704, -0.02185269258916378, -0.0052202800288796425, 0.009569227695465088, 0.00980826560407877, -0.01830567978322506, -0.033156875520944595, 0.03420555591583252, 0.013833356089890003, -0.008775005117058754, -0.01699482649564743, -0.022916797548532486, 0.006122455466538668, 0.02768213488161564, 0.013285882771015167, -0.0024751992896199226, -0.01802808605134487, -0.0023325474467128515, 0.03880125284194946, -0.04040512070059776, 0.027142371982336044, -0.015576019883155823, -0.056998979300260544, 0.02225366048514843, -0.012383706867694855, 0.034513991326093674, -0.017935555428266525, 0.02516838163137436, -0.008705607615411282, -0.01836736686527729, 0.017025670036673546, -0.018953394144773483, 0.029332267120480537, 0.008543678559362888, -0.053914617747068405, 0.010108991526067257, 0.020279670134186745, -0.0034911104012280703, -0.018660379573702812, -0.032169878482818604, -0.00015614574658684433, -0.028730817139148712, 0.007707045413553715, -0.013177929446101189, -0.042132362723350525, 0.02609368972480297, -0.03398965299129486, 0.012075270526111126, 0.004707504995167255, 0.0014698904706165195, -0.0007966324337758124, 0.02643296867609024, 0.016270000487565994, -0.04459984973073006, -0.01705651357769966, -0.0031499031465500593, 0.06218070536851883, -0.0379684753715992, -0.0017966398736461997, -0.006357637699693441, 0.042194049805402756, -0.0028337561525404453, 0.045556001365184784, 0.029131783172488213, 0.02174474112689495, -0.013247327879071236, 0.008690185844898224, -0.019693640992045403, -0.000658318167552352, 0.0029089374002069235, 0.033156875520944595, 0.03682726249098778, -0.053852930665016174, -0.012630456127226353, -2.7741170924855396e-05, 0.012360574677586555, -0.015267583541572094, -0.01973990723490715, 0.003712798934429884, 0.040466807782649994, -0.014496494084596634, 0.018614115193486214, -0.009191393852233887, 0.013255039229989052, 0.03002624772489071, -0.02334860898554325, -0.0435820110142231, 0.009245370514690876, 0.02630959451198578, 0.011944185942411423, -0.008196687325835228, 0.015506621450185776, 0.017827603965997696, -0.033496152609586716, -0.006284384522587061, -0.014226612634956837, -0.009229948744177818, -0.011389000341296196, 0.04009668529033661, -0.027605025097727776, 0.03210819140076637, 0.006488723214715719, -0.009708024561405182, -0.00473449332639575, 0.013594318181276321, 0.005370642524212599, -0.032817594707012177, 0.016208313405513763, 0.039448969066143036, 0.00829692929983139, 0.015761081129312515, 0.0024366446305066347, -0.008150422014296055, 0.02647923305630684, 0.0007397645385935903, -0.011712858453392982, 0.023271499201655388, 0.0058410074561834335, -0.003722437424585223, 0.03969571739435196, -0.010718151926994324, 1.363715000479715e-05, 0.0010660320986062288, -0.033372778445482254, 0.01997123286128044, 0.06656049937009811, 0.013378413394093513, -0.016778919845819473, -0.0026756825391203165, 0.008543678559362888, 0.01716446503996849, -0.004703649785369635, -0.009661759249866009, -0.02402716688811779, -0.019323518499732018, -0.003173035802319646, -0.01824399083852768, -0.05536426976323128, 0.004372080788016319, 0.02866913005709648, -0.012260332703590393, 0.051909785717725754, -0.019416049122810364, -0.044260572642087936, -0.000198194247786887, -0.0322624109685421, 0.0035740025341510773, -0.016316266730427742, -0.014134081080555916, -0.01997123286128044, -0.012622744776308537, -0.03078191727399826, -0.022500408813357353, 0.024859944358468056, -0.04009668529033661, -0.0032347228843718767, 0.014774085953831673, 0.04450732097029686, 0.01298515684902668, -0.021143291145563126, 0.0075027067214250565, 0.020557262003421783, 0.025307176634669304, 0.009199105203151703, -0.030519746243953705, 0.0010284414747729897, -0.010147545486688614, 0.029995404183864594, -0.007776443846523762, 0.049288079142570496, -0.015545176342129707, -0.03411302715539932, -0.028684550896286964, 0.008628497831523418, -0.022068599238991737, -0.010702730156481266, -0.05339027941226959, -0.008289218880236149, -0.021991489455103874, 0.026402125135064125, 0.03843113034963608, 0.039387281984090805, -0.012892626225948334, -0.01395673118531704, -0.00747957406565547, -0.03907884657382965, -0.00760680390521884, 0.018783755600452423, -0.045956969261169434, -0.028468646109104156, -0.014974569901823997, 0.013609739951789379, -0.010448270477354527, 0.011805389076471329, 0.015614574775099754, 0.006712339352816343, 0.03910968825221062, -0.04820855334401131, -0.006943666376173496, 0.01086465921252966, -0.004287261050194502, 0.01938520558178425, -0.002180257346481085, -0.012375996448099613, 0.012946602888405323, -0.005671367514878511, 0.023194389417767525, -0.030797338113188744, -0.017519166693091393, 0.0034294233191758394, -0.03951065614819527, 0.024165963754057884, -0.025831518694758415, -0.008574522100389004, -0.028499489650130272, 0.00019735087698791176, 0.016717232763767242, -0.008990910835564137, 0.051508817821741104, -0.013563474640250206, -0.03278674930334091, -0.016840606927871704, -0.009507540613412857, -0.012021294794976711, 0.008751872926950455, -0.009068019688129425, -0.014488782733678818, 0.0031749634072184563, 0.022685470059514046, 0.037505824118852615, 0.04422972723841667, 0.007814997807145119, 0.03587111085653305, -0.013224194757640362, 0.000505545933265239, 0.01521360781043768, 0.05246496945619583, -0.0035219539422541857, 0.0354701429605484, 0.0012135030701756477, 0.018552428111433983, 0.010664176195859909, 0.013663716614246368, 0.013717693276703358, -0.03266337513923645, 0.024751992896199226, 0.03806100785732269, -0.010062726214528084, -0.022346191108226776, -0.00722511438652873, -0.0031479753088206053, -0.003909426741302013, -0.0063499268144369125, -0.0012115753488615155, 0.006411614362150431, 0.006357637699693441, 0.03173806890845299, 0.002099292818456888, -0.031321678310632706, -0.053236059844493866, -0.004395213443785906, -0.04496997594833374, -0.002995684975758195, 0.033218562602996826, 0.003739787032827735, -0.008597654290497303, 0.026417545974254608, -0.0523107536137104, -0.008057891391217709, 0.01086465921252966, -0.025415129959583282, 0.0076145147904753685, -0.00960778258740902, 0.0294093769043684, -0.05715319886803627, -0.004815457854419947, -0.0017783265793696046, 0.06390794366598129, -0.046820592135190964, 0.019924968481063843, -0.02637128159403801, -0.030118778347969055, 0.005389919970184565, 0.00729451235383749, 0.011065143160521984, -0.017550010234117508, -0.01984785869717598, -0.060607682913541794, 0.0387704111635685, 0.012252621352672577, -0.007618370000272989, -0.04225573688745499, -0.04154633358120918, -0.0035740025341510773, -0.01680976338684559, -0.026355858892202377, 0.0040250904858112335, -0.03941812738776207, 0.0026024291291832924, 0.0007113306201063097, 0.01899966038763523, -0.04074440151453018, -0.019292674958705902, -0.01883001998066902, 0.0020838710479438305, 0.059589844197034836, 0.03122914955019951, -0.003868944477289915, 0.0021378472447395325, 0.01961653120815754, -0.027620447799563408, -0.0035527977161109447, -0.04971988871693611, -0.020618949085474014, 7.108486897777766e-05, 0.0005238593439571559, -0.006812580861151218, 0.012322019785642624, 0.02432018145918846, -0.01504396740347147, 0.015151920728385448, 0.023009328171610832, 0.023148125037550926, 0.0026409835554659367, -0.00039855719660408795, -0.016516750678420067, 0.026633452624082565, -0.05021338537335396, 0.03365037217736244, 0.005254979245364666, 0.006546555086970329, -0.019693640992045403, -0.00649257842451334, 0.024582352489233017, 0.012383706867694855, -0.011481531895697117, 0.0022766434121876955, -0.03741329163312912, -0.02168305404484272, -0.0213437732309103, -0.00261785089969635, -0.01859869249165058, -0.03179975599050522, 0.03420555591583252, -0.016948560252785683, -0.02145172655582428, 0.009476697072386742, -0.012884915806353092, 0.0193389393389225, 0.02202233299612999, 0.023379452526569366, 0.00152964994776994, 0.020464731380343437, -0.002949419664219022, 0.020834853872656822, -0.01842905394732952, 0.06705399602651596, 0.020557262003421783, 0.011566351167857647, 0.0018910984508693218, 0.030365528538823128, -0.002504114992916584, 0.03923306241631508, -0.013316726312041283, 0.020850276574492455, -0.024119697511196136, -0.00729451235383749, -0.04823939502239227, -0.010448270477354527, -0.020295090973377228, -0.03095155581831932, -0.009083441458642483, -0.0011354301823303103, -0.013609739951789379, 0.01155092939734459, -0.0028935156296938658, -0.005374498199671507, 0.011859365738928318, 0.021821849048137665, -0.006515711545944214, -0.023271499201655388, -0.03719738498330116, 0.025492237880825996, -0.024628616869449615, 0.014828062616288662, 0.03843113034963608, -0.01802808605134487, 0.05440811812877655, 0.02436644770205021, 0.004406780004501343, 0.01997123286128044, -0.016902294009923935, -0.008335484191775322, -0.023132702335715294, -0.00855138897895813, 0.020788589492440224, -0.010024171322584152, 0.017380371689796448, -0.031953971832990646, 0.02573898807168007, 0.001819772645831108, -0.01665554568171501, -0.03408218175172806, -0.04222489520907402, 0.01818230375647545, 0.006388481240719557, 0.03981909155845642, -0.0014139864360913634, -0.007703190203756094, -0.026695139706134796, 0.025754408910870552, 0.011111408472061157, -0.008242953568696976, 0.0037359315901994705, -0.026741404086351395, 0.030303841456770897, 0.02586236223578453, -0.015930721536278725, -0.015930721536278725, -0.048609521239995956, 0.013941309414803982, 0.031321678310632706, 0.025538504123687744, -0.025260912254452705, 0.011998161673545837, 0.035439301282167435, -0.017179887741804123, 0.05033676326274872, -0.03179975599050522, 0.01973990723490715, -0.01818230375647545, 0.023657044395804405, 0.05456233397126198, -0.028360694646835327, 0.01464300137013197, -0.0010882009519264102, -0.03254000097513199, 0.05428474396467209, -0.0041330428794026375, 0.024967897683382034, 0.04435310140252113, -0.0011354301823303103, -0.0006298842490650713, 0.01158948428928852, 0.0056173913180828094, -0.006322938948869705, -0.021667631343007088, 0.0036877384409308434, -0.04459984973073006, -0.018105195835232735, -0.045278411358594894, 0.02145172655582428, 0.02654092200100422, 0.0025870073586702347, -0.04953482747077942, -0.01484348438680172, 0.027204059064388275, 0.02546139433979988, 0.03688894957304001, -0.014434807002544403, 0.011951896362006664, -0.0009600071934983134, 0.00990079715847969, 0.030103357508778572, 0.020680636167526245, -0.010918635874986649, 0.017318682745099068, 0.003656894899904728, 0.009708024561405182, 0.021420883014798164, -0.03294096887111664, 0.004225573502480984, 0.036981482058763504, 0.04515503719449043, -0.03152216225862503, 0.013478654436767101, -0.011566351167857647, -0.014866617508232594, 0.010741285048425198, 0.025769831612706184, 0.014966858550906181, -0.0021879682317376137, 0.005004374776035547, -0.02506042830646038, 0.03676557540893555, -0.014928304590284824, -0.03031926229596138, 0.017781337723135948, -0.02168305404484272, 0.006916678044945002, -0.018691223114728928, 0.008736451156437397, -0.010741285048425198, -0.02229992486536503, -0.007417886517941952, -0.023194389417767525, -0.04496997594833374, -0.008212109096348286, 0.019323518499732018, 0.003377374727278948, -0.012861782684922218, -0.02139003947377205, 0.023071015253663063, -0.0322624109685421, -0.020125452429056168, -0.0059643820859491825, 0.0035508698783814907, -0.01807435229420662, 0.018722066655755043, 3.138577812933363e-05, 0.003421712201088667, 0.013301304541528225, -0.021713897585868835, 0.011126830242574215, -0.022700892761349678, -0.02527633309364319, 0.0013783235335722566, 0.0030284563545137644, -0.045802753418684006, 0.020526418462395668, 0.029764078557491302, -0.017411215230822563, -0.008104156702756882, 0.012769252061843872, 0.007699334528297186, 0.010124413296580315, -0.02060352824628353, 0.009499830193817616, 0.02900840900838375, 0.01664012484252453, 0.03605617210268974, -0.01653217151761055, 0.0074911401607096195, -0.028854191303253174, 0.021328352391719818, -0.0058525740168988705, -0.011450688354671001, 0.002718092640861869, -0.025615613907575607, -0.017642540857195854, 0.01916929893195629, -0.026278750970959663, -0.022916797548532486, -0.0005865104030817747, 0.005436185281723738, 0.024782836437225342, -0.03728991746902466, 0.010648754425346851, 0.00013831428077537566, -0.0026776103768497705, -0.03232409805059433, -0.012854072265326977, 0.007309934124350548, 0.024335604161024094, 0.00792680587619543, -0.0018988093361258507, 0.0007363910553976893, -0.0026506222784519196, -0.04389045014977455, 0.02922431379556656, 0.023950058966875076, 0.04157717898488045, -0.015884455293416977, -0.016686389222741127, 0.05576523765921593, 0.04077524319291115, -0.031491320580244064, 0.03432893007993698, -9.692843741504475e-05, 0.0019971232395619154, -0.00792680587619543, 0.022330768406391144, 0.01353263109922409, 0.018058929592370987, 0.03981909155845642, -0.01315479725599289, 0.0189842376857996, -0.005131604615598917, 0.01623915694653988, 0.014689266681671143, 0.03048890270292759, 0.0017320611514151096, 0.005370642524212599, 0.030365528538823128, 0.02115871198475361, 0.03405134007334709, 0.012715275399386883, -0.004614974372088909, 0.02671056054532528, -0.00811957847326994, -0.016455063596367836, 0.0023498970549553633, 0.006716194562613964, 0.00898319948464632, -0.03843113034963608, -0.0023768851533532143, -0.015067100524902344, 0.01029405277222395, -0.009962484240531921, 0.010895502753555775, -0.03008793480694294, 0.022747157141566277, -0.0013185640564188361, -0.009708024561405182, 0.014242034405469894, 0.02597031369805336, 0.0028433946426957846, -0.0141032375395298, 0.022855110466480255, 0.026232484728097916, -0.0418856143951416, 0.01559144165366888, -0.0035315926652401686, -0.003005323698744178, -0.002968696877360344, 0.020680636167526245, -0.03170722350478172, 0.04392129182815552, 0.01978617161512375, 0.010448270477354527, -0.017889291048049927, 0.024443555623292923, -0.02014087326824665, 0.007814997807145119, 0.005925827194005251, 0.010941768065094948, 0.0045301541686058044, -0.006986076477915049, 0.040250904858112335, -0.0019990510772913694, -0.006847280077636242, -0.007464152295142412, 0.000603377993684262, 0.023826684802770615, -0.011944185942411423, 0.011481531895697117, -0.007121017202734947, 0.015599153004586697, 0.03506917878985405, 0.005116182845085859, -0.005058350972831249, 0.009199105203151703, 0.0015441079158335924, 0.04216320812702179, -0.01579192467033863, -0.006342215929180384, -0.04077524319291115, -0.016778919845819473, 0.018151460215449333, -0.010579355992376804, 0.022963063791394234, -0.014342275448143482, 0.007275234907865524, -0.023579934611916542, 0.0314142107963562, -0.0006477157003246248, -0.025553924962878227, 0.011674304492771626, -0.017920134589076042, -0.004102199338376522, 0.0006800050614401698, -0.005999080836772919, 0.013131664134562016, 0.039448969066143036, 0.03713569790124893, 0.062273237854242325, 0.001743627479299903, 0.015036256983876228, 0.03241662681102753, -0.023364029824733734, 0.028746237978339195, -0.0036414728965610266, 0.0020067619625478983, 0.006955232471227646, 0.023364029824733734, 0.0094921188428998, -0.018459897488355637, -0.021251242607831955, 0.012129247188568115, 0.014943726360797882, -0.011682014912366867, 0.0035605086013674736, 0.006523422431200743, 0.017025670036673546, 0.01040971651673317, 0.00861307606101036, -0.010802972130477428, -0.03112119622528553, 0.005301244556903839, -0.016146626323461533, -0.023502826690673828, -0.008566810749471188, 0.03164553642272949, -0.06251998245716095, -0.022392457351088524, 0.01722615212202072, 0.04617287591099739, 0.003813040442764759, -0.018521584570407867, -0.008289218880236149, 0.01341696735471487, 0.015637706965208054, -0.016979403793811798, 0.009052597917616367, -0.009993327781558037, -0.008852113969624043, -0.015036256983876228, -0.03220072388648987, -0.015259873121976852, -0.027497073635458946, 0.017071934416890144, -0.009021754376590252, -0.028005992993712425, -0.018120616674423218, 0.036518827080726624, 0.003830390051007271, -0.026926465332508087, -0.03923306241631508, -0.0322624109685421, 0.005999080836772919, -0.03334193676710129, 0.009283924475312233, -0.006500289309769869, 0.0052742562256753445, 0.022407878190279007, 0.029949139803647995, 0.00022470047406386584, -0.025600191205739975, -0.00760680390521884, 0.05567270517349243, -0.016455063596367836, 0.013324436731636524, -0.018783755600452423, -0.004965820349752903, 0.004179308190941811, 0.002504114992916584, 0.009507540613412857, 0.016393374651670456, -0.012800095602869987, -0.0049311211332678795, -0.007691623643040657, -0.018043508753180504, -0.0044106352142989635, -0.0056212469935417175, 0.048362769186496735, -0.012830939143896103, -0.0013021783670410514, 0.005567270331084728, -0.014604446478188038, 0.01927725225687027, -0.010856948792934418, -0.0189842376857996, 0.0034853273537009954, -0.003959547728300095, -0.007059329655021429, -0.00785355269908905, 0.007032341789454222, 0.020634371787309647, -0.0041908747516572475, -0.006858846638351679, 0.007279090583324432, -0.00955380592495203, -0.01155092939734459, -0.007171137724071741, 0.03889378532767296, -0.004703649785369635, 0.013262749649584293, 0.01152779720723629, -0.004202440846711397, 0.007182704284787178, 0.015205896459519863, -0.009746578522026539, 0.0063075171783566475, -0.00567907840013504, 0.006573542952537537, -0.016732655465602875, -0.019955812022089958, 0.007263668812811375, 0.024011746048927307, 0.02374957501888275, 0.005540282465517521, 0.0032231565564870834, 0.011951896362006664, -0.011743701994419098, -0.008890668861567974, -0.007013064343482256, -0.021019916981458664, -0.01566855050623417, 0.02311728149652481, -0.013779380358755589, -0.021189555525779724, -0.031321678310632706, -0.015660839155316353, -0.014049261808395386, -0.029887452721595764, 0.01818230375647545, -0.03380458801984787, -0.011851654388010502, -0.016963982954621315, 0.023657044395804405, 0.009044886566698551, -0.0067046284675598145, -0.01227575447410345, 0.007286801468580961, 0.00491955503821373, 0.011620327830314636, -0.012306598015129566, 0.024104276672005653, -0.01910761184990406, 0.019076768308877945, -0.010533090680837631, -0.013887332752346992, -0.03139878809452057, 0.0012327802833169699, -0.02007918618619442, -0.01452733762562275, -0.0072675240226089954, -0.007656924892216921, 0.03682726249098778, -0.002980263205245137, 0.009029464796185493, 0.0004351839597802609, 0.01950857974588871, -0.003394724102690816, -0.003277132986113429, -0.009846820496022701, -0.00486172316595912, -0.004383647348731756, 0.003508460009470582, 0.01606951840221882, 0.03334193676710129, 0.013054555281996727, -0.02333318628370762, -0.028561176732182503, 0.022808844223618507, -0.0017339888727292418, 0.005254979245364666, -0.025985736399888992, -0.02322523295879364, -0.017364948987960815, -0.004580275155603886, 0.03365037217736244, 0.02396547980606556, 0.02425849437713623, -0.0070940288715064526, -0.024042589589953423, 0.008227531798183918, 0.007005353458225727, 0.01802808605134487, -0.002457849681377411, -0.01625457964837551, -0.007205836940556765, -0.030566010624170303, -0.02803683653473854, -0.016578437760472298, 0.006187998224049807, 0.021883536130189896, -0.03318771719932556, 0.01606951840221882, 0.0031479753088206053, -0.01682518608868122, 0.016285423189401627, 0.008975489065051079, -0.02556934766471386, 0.009746578522026539, 0.030057091265916824, 0.03170722350478172, 0.00990079715847969, -0.00593353807926178, -0.026247907429933548, 0.023502826690673828, -0.023872949182987213, -0.015676261857151985, -0.009546095505356789, 0.041608020663261414, -0.022562095895409584, -0.027080684900283813, 0.04244079813361168, 0.0043682255782186985, 0.017873868346214294, -0.022392457351088524, -0.007645358331501484, 0.014126370660960674, 0.0037706305738538504, -0.002261221641674638, 0.010309474542737007, -0.008975489065051079, -0.0038072573952376842, 0.01967822015285492, 0.0030978545546531677, 0.018151460215449333, 0.009183683432638645, 0.01392588671296835, 0.013455522246658802, -0.007367765996605158, -0.03525424003601074, 0.009592360816895962, -0.02362620085477829, 0.028977565467357635, -0.011165384203195572, 0.023471983149647713, -0.0018592909909784794, -0.01067188661545515, 0.011265626177191734, -0.004314248915761709, -0.013602029532194138, 0.0025927904061973095, 0.009245370514690876, -0.01559144165366888, -0.0025658023077994585, 0.013440100476145744, -0.018490741029381752, 0.0564129501581192, 0.005798597354441881, 0.004927265923470259, -0.03156843036413193, -0.01648590713739395, 0.0237958412617445, -0.00461882958188653, 0.012437683530151844, 0.016686389222741127, 0.010756706818938255, 0.022238237783312798, -0.019817015156149864, 0.022284504026174545, 0.00880584865808487, 0.013949019834399223, -0.01841363124549389, 0.03642629459500313, 0.0003014480462297797, 0.010139835067093372, 0.010880080983042717, -0.028453225269913673, 0.007255957927554846, -0.0004706059116870165, -0.005929682869464159, -0.01859869249165058, -0.013964441604912281, 0.004106054548174143, -0.004337381571531296, 0.007005353458225727, 0.012576479464769363, 0.011504664085805416, 0.016917716711759567, 0.024196807295084, 0.025091271847486496, -0.006218841765075922, 0.05289677903056145, -0.006438602227717638, -0.018043508753180504, 0.006565832067281008, 0.02115871198475361, -0.006824147421866655, 0.007136438973248005, -0.0038284624461084604, -0.013686848804354668, -0.0005590403452515602, 0.006103178020566702, -0.0004412081034388393, 0.03266337513923645, -0.009384166449308395, -0.005686789285391569, 0.0008775969035923481, 0.011373578570783138, -0.046943966299295425, -0.0075605385936796665, -0.006885834503918886, 0.008875247091054916, -0.0024000180419534445, 0.0088675357401371, -0.002105075865983963, 0.027990570291876793, -0.0016588076250627637, 0.01842905394732952, -0.0032617112156003714, -0.03762919828295708, -0.015175052918493748, -0.003944125957787037, -0.0044106352142989635, -0.014442517422139645, -0.0006241010269150138, 0.007186559494584799, 0.005320521537214518, 0.0016472411807626486, 0.013301304541528225, 0.0004154247872065753, 0.005594258662313223, -0.012699853628873825, 0.012322019785642624, -0.04231742396950722, 0.005112327169626951, -0.02569272182881832, 0.025985736399888992, 0.0056212469935417175, 0.026556342840194702, -0.0006718122749589384, 0.00955380592495203, 0.010263209231197834, -0.006099322810769081, -0.007949938997626305, -0.003654967062175274, -0.00043566591921262443, -0.0035393035504966974, 0.023086437955498695, 0.055240895599126816, 0.03380458801984787, -0.0008597654523327947, -0.016979403793811798, -0.017426636070013046, 0.008813560009002686, 0.013972152955830097, 0.0015142281772568822, -0.018120616674423218, 0.014835773035883904, -0.004846301395446062, 0.010463692247867584, 0.02860744297504425, -0.010988034307956696, -0.02197606861591339, -0.013447810895740986, -0.03827691078186035, -0.01067188661545515, -0.019200144335627556, 0.01235286332666874, -0.000844343681819737, 0.025723565369844437, 0.008597654290497303, -0.026016579940915108, -0.004044367466121912, 0.004418346099555492, 0.023302342742681503, 0.0004732565430458635, -0.01659385859966278, 0.025816095992922783, -0.013031423091888428, 0.006835713516920805, 0.008289218880236149, -0.005123893730342388, 0.03130625933408737, 0.0001272298686672002, 0.006134021561592817, 0.024875367060303688, 0.012807806953787804, -0.02535344287753105, -0.00972344633191824, 0.010078147985041142, -0.0017831458244472742, 0.0006616917089559138, 0.035439301282167435, 0.004125331994146109, -0.0068164365366101265, -0.004287261050194502, 0.002126280916854739, 0.014288299717009068, 0.01807435229420662, -0.013478654436767101, 0.0013388051884248853, 0.0028086956590414047, -0.027836352586746216, 0.039325594902038574, 0.005443896166980267, -0.0060183582827448845, -0.013949019834399223, -0.019601110368967056, -0.005409196950495243, -0.02122039906680584, 0.024983318522572517, -0.02396547980606556, 0.0050969053991138935, -0.025553924962878227, 0.00710945064201951, 0.006037635263055563, 0.013362991623580456, 0.002282426692545414, 0.027774665504693985, 0.0017744711367413402, -0.0029455642215907574, -0.01327046100050211, 0.007013064343482256, -0.037104856222867966, 0.004013523925095797, 0.005632813088595867, 0.0031749634072184563, 0.02597031369805336, 0.010949479416012764, -0.007464152295142412, 0.004495455417782068, -0.012190934270620346, 0.03135252371430397, -0.028175631538033485, -0.00505064008757472, -0.010802972130477428, -0.011635749600827694, -0.042471643537282944, -0.027558760717511177, -0.00012807323946617544, 0.053852930665016174, 0.014673844911158085, -0.017025670036673546, -0.0048231687396764755, 0.006743182893842459, 0.008936934173107147, 0.008636209182441235, -0.013540342450141907, -0.01842905394732952, -0.0070477635599672794, -0.008967777714133263, -0.011103697121143341, 0.033095188438892365, -0.017287839204072952, 0.015483489260077477, 0.023364029824733734, -0.012568769045174122, 0.005231846123933792, 0.03324940428137779, -0.026001157239079475, 0.020618949085474014, -0.015175052918493748, 0.014828062616288662, -0.0004624130961019546, -0.010116701945662498, -0.009908507578074932, -0.00940729957073927, -0.014033840037882328, -0.0330643430352211, -0.01647048443555832, -0.004503166303038597, -0.013771669007837772, 0.001522902981378138, -0.033835433423519135, 0.011682014912366867, 0.03602533042430878, -0.009916218928992748, -0.008073313161730766, -0.023610778152942657, 0.007124872412532568, -0.014712398871779442, -0.017241574823856354, 0.007641502656042576, -0.009245370514690876, 0.026232484728097916, -0.02546139433979988, 0.005810163915157318, 0.009777422063052654, 0.025445973500609398, -0.0033638805616647005, 0.0008332592551596463, 0.011142252013087273, 0.020233403891324997, -0.001158562838099897, 0.01547577790915966, -0.007942227646708488, 0.017364948987960815, 0.035901956260204315, 0.006642941385507584, -0.000761451490689069, -0.014257456175982952, -0.00026192967197857797, 0.007171137724071741, -0.014743242412805557, 0.003556653158739209, 0.0038342454936355352, 0.015761081129312515, -0.0022959208581596613, -0.009307057596743107, -0.01664012484252453, -0.0015913371462374926, 0.03587111085653305, -0.00966946966946125, 0.003600990865379572, -0.00015000112762209028, -0.029501907527446747, -0.008050180971622467, -0.0035315926652401686, 0.020156295970082283, -0.020433887839317322, -0.017519166693091393, -0.014820351265370846, -0.007360055111348629, -0.015259873121976852, 0.01504396740347147, 0.012406839989125729, -0.02751249447464943, -0.019878702238202095, -1.475161661801394e-05, -0.01756543293595314, 0.0011460327077656984, 0.008219820447266102, -0.00252532004378736, -0.013378413394093513, -0.02145172655582428, 0.004341237246990204, 0.0012636239407584071, 0.02586236223578453, -0.022608362138271332, -0.006214986089617014, 0.009947062470018864, 0.0130776884034276, 0.004414490889757872, 0.020295090973377228, 0.02825274132192135, 0.00411762110888958, 0.01376395858824253, 0.01292346976697445, 0.005443896166980267, -0.012676721438765526, 0.007653069216758013, 0.00015313367475755513, -0.006145588122308254, 0.003627978963777423, -0.034513991326093674, -0.02590862661600113, 0.0018679657950997353, -0.003963402938097715, 0.03291012719273567, 0.0038361733313649893, -0.023425716906785965, -0.00861307606101036, 0.02802141383290291, 0.004611118696630001, -0.013162507675588131, -0.015059389173984528, -0.006592820398509502, 0.0035180984996259212, -0.013895043171942234, 0.00330412108451128, -0.0003260265220887959, 0.01997123286128044, -0.014365408569574356, 0.006450168788433075, 0.0019691712222993374, -0.016732655465602875, 0.013478654436767101, 0.012823228724300861, -0.06791761517524719, -0.012198645621538162, 0.0069282446056604385, 0.019092191010713577, -0.0036511116195470095, -7.403669587802142e-05, 0.013895043171942234, -0.025954892858862877, -0.0025465250946581364, 0.0024173674173653126, 0.007699334528297186, 0.0001502420927863568, 0.00955380592495203, 0.0034833995159715414, -0.027543338015675545, -0.006912822835147381, -0.03806100785732269, 0.005266545340418816, -0.02334860898554325, 0.0008669944363646209, -0.004580275155603886, -0.005844863131642342, -0.02305559441447258, 0.028175631538033485, 0.004206296522170305, 0.033372778445482254, -0.013656005263328552, -0.020403044298291206, -0.003830390051007271, 0.011797678656876087, -0.01630084402859211, -0.011836232617497444, -0.030504323542118073, -0.013177929446101189, -0.004749915096908808, 0.013625161722302437, -0.008358616381883621, -0.006357637699693441, 0.0013985646655783057, -0.009137417189776897, 0.002049171831458807, 0.015421802178025246, -0.008543678559362888, 0.0015190475387498736, 0.012630456127226353, 0.0008718137396499515, 0.005413052625954151, 0.003294482361525297, -0.0012838649563491344, 0.018382787704467773, -0.008589943870902061, 0.0005662692710757256, 0.027959726750850677, -0.04240995645523071, -0.001633747131563723, -0.022269081324338913, 0.011967318132519722, -0.02316354587674141, -0.0061957091093063354, -0.011566351167857647, -0.025091271847486496, -0.004102199338376522, -0.0053976308554410934, -0.012908047996461391, 0.02122039906680584, -0.026864778250455856, 0.011620327830314636, 0.02529175579547882, 0.008320062421262264, -0.0010554295731708407, -0.014164925552904606, 0.00028096596361137927, -0.0193389393389225, 0.011936474591493607, -0.008512835018336773, -0.02037220075726509, -0.02654092200100422, 0.03506917878985405, 0.016963982954621315, -0.0065851095132529736, -0.020572684705257416, 0.011581772938370705, -0.011119118891656399, 0.03213903680443764, 0.011311891488730907, -0.03540845587849617, 0.00013168773148208857, -0.015514332801103592, -0.004383647348731756, 0.002197606721892953, -0.009654047898948193, 0.002773996675387025, 0.010440560057759285, -0.032354939728975296, -0.03621039167046547, -0.011643460020422935, 0.020341357216238976, -0.005775464698672295, 0.019416049122810364, 0.0024886932224035263, 0.015653129667043686, 0.007541261147707701, 0.00648101232945919, -0.015205896459519863, 0.005717633292078972, -0.008250663988292217, -0.004086777567863464, 0.02311728149652481, -0.002216883935034275, -0.014010706916451454, 0.022454144433140755, -0.0009021754376590252, 0.007356199435889721, -0.016007831320166588, -0.01333214808255434, -0.00112289993558079, 0.03472989797592163, 0.0012829011538997293, 0.0005180761800147593, -0.03392796590924263, -0.032755907624959946, -4.7590718168066815e-05, -0.012699853628873825, 0.0014776013558730483, 0.027558760717511177, 0.029656125232577324, 0.010278631001710892, 0.00903717614710331, 0.004946542903780937, -0.01478950772434473, -0.005748476833105087, -0.0016019396716728806, -0.017472902312874794, 0.0022380889859050512, -0.000984103768132627, 0.002552308142185211, -0.005039073992520571, 0.004722926765680313, 0.003994246479123831, 0.0062381187453866005, -0.016285423189401627, -0.022963063791394234, -0.006858846638351679, -0.0034178567584604025, 0.004645817913115025, 0.022793423384428024, -0.005686789285391569, -0.0023441140074282885, 0.004399069119244814, -0.0044761779718101025, 0.009854531846940517, -0.0049311211332678795, 0.02231534756720066, 0.002457849681377411, 0.0022573661990463734, -0.0030650831758975983, 0.009276214055716991, -0.003974969498813152, -0.0026660440489649773, 0.009893085807561874, -0.011119118891656399, -0.002681465819478035, 0.0008178374264389277, 0.057985976338386536, -0.0022130284924060106, 0.008505123667418957, -0.005524860695004463, 0.0021301363594830036, -0.018799176439642906, -0.020526418462395668, 0.01665554568171501, 0.014488782733678818, -0.015151920728385448, 0.0073793320916593075, -0.02077316679060459, 0.012252621352672577, -0.01273069716989994, -0.01923098787665367, -0.0040790666826069355, 0.005243412684649229, -0.004325815476477146, 0.006878123618662357, -0.008574522100389004, 0.03448314964771271, 0.005081483628600836, 0.0004154247872065753, 0.011836232617497444, -0.001586517901159823, 0.0047113606706261635, -0.0018583271885290742, 0.0036299065686762333, -0.016162049025297165, 0.004325815476477146, -0.0023711021058261395, -0.002386523876339197, -0.026756826788187027, -0.006214986089617014, -0.015468067489564419, 0.012167802080512047, 0.0021224254742264748, 0.012861782684922218, -0.026232484728097916, 0.0029860464856028557, -0.004121476784348488, 0.0039325593970716, 0.023471983149647713, 0.004715215880423784, -0.0042448509484529495, -0.012869494035840034, 0.008150422014296055, -0.0019817014690488577, -0.010918635874986649, -0.006558121182024479, 0.00022807398636359721, -0.008304640650749207, 0.008998621255159378, 0.00629209540784359, 0.011774545535445213, -0.0088675357401371, 0.005285822786390781, -0.010479114018380642, -0.013509498909115791, 0.006685351021587849, -0.021035337820649147, 0.0038111128378659487, -0.005443896166980267, -0.021127868443727493, -0.005856429226696491, -0.02202233299612999, -0.013162507675588131, -0.02860744297504425, 0.007583671249449253, -0.005517149809747934, 0.004005813039839268, 0.024628616869449615, 0.01189792063087225, -0.017349526286125183, 0.0037725584115833044, 0.0014997702091932297, 0.022053176537156105, -0.01401841826736927, -0.005409196950495243, 0.006766315549612045, -0.00233833072707057, -0.005494017153978348, -0.012892626225948334, -0.0294093769043684, 0.0006327758310362697, 0.004267983604222536, 0.008281507529318333, -0.012800095602869987, 0.00029397811158560216, -0.015198186039924622, 0.007521983701735735, 0.011720569804310799, -0.015175052918493748, 0.01997123286128044, 0.007811142597347498, 0.008335484191775322, -0.003556653158739209, -0.007128728087991476, 0.0031383365858346224, -0.015583731234073639, 0.0045879860408604145, 0.021667631343007088, -0.002635200507938862, -0.0032096626237034798, -0.011489242315292358, -0.01859869249165058, 0.025014162063598633, -0.018321100622415543, -0.013864199630916119, -0.006623663939535618, 0.018953394144773483, 0.017873868346214294, -0.0035200263373553753, 0.001688687363639474, -0.030936134979128838, 0.012823228724300861, 0.015468067489564419, -0.0153292715549469, -0.016270000487565994, -0.00955380592495203, -0.00026602609432302415, -0.009677181020379066, 0.014743242412805557, -0.007198126055300236, -0.0065388442017138, 0.0013754320098087192, -0.023317765444517136, -0.010147545486688614, -0.01583819091320038, -0.013740825466811657, 0.0019123033853247762, 0.015059389173984528, -0.00215134141035378, 0.005258834455162287, 0.003238578327000141, -0.0012973591219633818, 0.017580853775143623, 0.009931640699505806, 0.009029464796185493, -0.009792843833565712, 0.01284636091440916, 0.0064733014442026615, 0.005590402986854315, 0.015761081129312515, -0.006457879673689604, 0.011944185942411423, -0.00015710960724391043, -0.011805389076471329, 0.0025850795209407806, 0.00655041029676795, 0.05224906653165817, -0.008736451156437397, 0.008505123667418957, 0.010031881742179394, 0.0016588076250627637, 0.002078087767586112, -0.021837271749973297, 0.002459777519106865, -0.0010631404584273696, -0.010324896313250065, 0.007741744630038738, -0.0141032375395298, -0.030072513967752457, 0.01881459914147854, -0.007884396240115166, -0.0033176152501255274, 0.0035393035504966974, 0.0258006751537323, 0.025245489552617073, 0.007228969596326351, 0.00998561643064022, -0.0015527827199548483, -0.010116701945662498, -0.023826684802770615, 0.00835090596228838, -0.0104945357888937, 0.0026641162112355232, 0.003275205148383975, -0.006434747017920017, 0.010224654339253902, -0.006110888905823231, 0.00710945064201951, -0.0025850795209407806, -0.016007831320166588, -0.003832317888736725, -0.010116701945662498, 0.011435266584157944, -0.005814019124954939, -0.003581713419407606, 0.0015074810944497585, -0.015444934368133545, 0.010949479416012764, -0.0021879682317376137, -0.013069977052509785, 0.01104201003909111, -0.017087357118725777, -0.008597654290497303, 0.0033908686600625515, 0.012722986750304699, -0.008767294697463512, 0.003878583200275898, 0.00835090596228838, -0.011604906059801579, -0.006962943356484175, -0.014072393998503685, -0.0025754410307854414, -0.017380371689796448, -0.024011746048927307, -0.014511915855109692, -0.010186100378632545, -0.04632709175348282, -0.000285062356851995, 0.007734033744782209, 0.013802512548863888, -0.00679330388084054, 0.014735531993210316, 0.012406839989125729, 0.011797678656876087, 0.021837271749973297, 0.011381289921700954, 0.016115782782435417, 0.004144609440118074, 0.005413052625954151, -0.017241574823856354, -0.004568708594888449, -0.005528715904802084, -0.0006650651921518147, 0.010687308385968208, 0.018953394144773483, -0.005825585685670376, 0.003572074929252267, -0.0057831755839288235, -0.02064979262650013, -0.004796180408447981, 0.017195308580994606, 0.018274834379553795, 0.01421890128403902, -0.0029474918264895678, 0.01687145046889782, -0.012599612586200237, -0.004437623545527458, -0.00798078253865242, -0.0009966338984668255, 0.014002996496856213, 0.004391358233988285, 0.004857867490500212, -0.0016809763619676232, -0.013995285145938396, -0.022608362138271332, -2.7801412215922028e-05, 0.0070940288715064526, 0.011442977003753185, -0.01296202465891838, 0.013440100476145744, 0.021837271749973297, 0.023610778152942657, 0.011365868151187897, -0.012491659261286259, 0.020788589492440224, -0.014403963461518288, -0.009430431760847569, -0.03368121385574341, 0.0016549520660191774, 0.009569227695465088, 0.015352403745055199, 0.025091271847486496, -0.02442813478410244, 0.007537405472248793, -0.011435266584157944, 0.0050467848777771, 0.0033349646255373955, -0.0019441109616309404, 0.007629936560988426, 0.010186100378632545, 0.004121476784348488, -0.001187478774227202, -0.004846301395446062, 0.00068627018481493, -0.0045995526015758514, 0.03516170755028725, -0.006789448205381632, -6.879569264128804e-05, 0.008258375339210033, -0.019894124940037727, -0.00660824216902256, -0.004892566706985235, 0.012800095602869987, -0.0015277222264558077, 0.0009580794721841812, -0.003963402938097715, 0.007545116823166609, -0.004391358233988285, -0.02060352824628353, 0.018660379573702812, -0.0019797738641500473, 0.006346071604639292, -0.01589987799525261, -0.008798138238489628, 0.010679597966372967, 0.019246408715844154, 0.010656464844942093, 0.0034371342044323683, -0.004333526361733675, -0.014080105349421501, -0.0024270061403512955, 0.004672805778682232, 0.015090233646333218, 0.008497413247823715, -0.008682474493980408, 0.033434465527534485, -0.0019171227468177676, -0.0023537524975836277, -0.0019971232395619154, 0.00039349691360257566, -0.0050544957630336285, -0.018629536032676697, -0.006685351021587849, 0.020557262003421783, 0.014026128686964512, 0.01255334634333849, -0.01223719958215952, 0.01333214808255434, 0.020896540954709053, 0.03198481723666191, 0.004649673122912645, 0.00044265392352826893, 0.023441139608621597, 0.010910924524068832, 0.005810163915157318, -0.003309904132038355, 0.000992778455838561, -0.008065602742135525, -0.0036780997179448605, -0.015229029580950737, 0.008690185844898224, 0.004827023949474096, 0.008219820447266102, -0.01490517146885395, -0.018629536032676697, 0.0009773566853255033, 0.010633332654833794, -0.016563015058636665, 0.011520085856318474, 0.013694560155272484, -0.014851195737719536, 0.019030503928661346, 0.0005725343944504857, 0.006596675608307123, 0.010016459971666336, 0.021251242607831955, 0.007070896215736866, 0.010286342352628708, 0.01744205877184868, -0.013501787558197975, 0.005671367514878511, -0.004946542903780937, 0.006654507480561733, -0.004094488453119993, 0.004896421916782856, 0.000264580303337425, -0.019092191010713577, -0.001725314068607986, -0.011435266584157944, -0.02470572665333748, 0.004391358233988285, 0.017750494182109833, -0.0015325415879487991, 0.022808844223618507, -0.018783755600452423, 0.014319143258035183, -0.012568769045174122, 0.0009995255386456847, 0.001253021415323019, -0.02339487336575985, -0.01853700540959835, 0.009345611557364464, -0.003917137626558542, 0.006831858307123184, 0.00990079715847969, 0.0007108486606739461, 0.004834734834730625, -0.009322479367256165, -0.0023229089565575123, 0.011196228675544262, 0.012522502802312374, 0.011049721390008926, 0.009561517275869846, 0.021066181361675262, -0.009245370514690876, -0.014550469815731049, 0.003946053795516491, 0.016501327976584435, 0.013817934319376945, 0.0018149532843381166, -0.013116242364048958, 0.007510417606681585, 0.002681465819478035, 0.00666607404127717, 0.013501787558197975, -0.004109910223633051, -0.004013523925095797, 0.005216424353420734, 0.0008072349592112005, 0.013085398823022842, -0.001243382808752358, -0.026988154277205467, 0.01010128017514944, 0.019955812022089958, 0.02883877046406269, -0.008744161576032639, 0.02229992486536503, -0.01547577790915966, -0.023703308776021004, 0.002949419664219022, -0.00021578474843408912, 0.0025272478815168142, 0.010170678608119488, 0.020233403891324997, 0.014118659310042858, 0.002646766835823655, 0.007911384105682373, 0.006866557523608208, 0.015884455293416977, -0.0018525439081713557, 0.011234782636165619, -0.008374038152396679, 0.011427555233240128, 0.0024886932224035263, 0.01704109087586403, 0.03135252371430397, 0.0020915819332003593, -0.014319143258035183, 0.023718731477856636, -0.0073831877671182156, -0.0012385634472593665, 0.012453105300664902, 0.01602325215935707, -0.022006912156939507, -0.012306598015129566, 0.0031691803596913815, 0.0007884396472945809, 0.006561976857483387, 0.006789448205381632, 0.030735651031136513, 0.010548512451350689, 0.01566855050623417, 0.004075211007148027, 0.02832985110580921, -0.0060183582827448845, -0.017303261905908585, 0.0005132568185217679, 0.014542759396135807, -0.013887332752346992, -0.010995744727551937, -0.03042721562087536, -0.0026294172275811434, -0.01104201003909111, -0.007811142597347498, 0.02711152844130993, -0.03741329163312912, 0.011913342401385307, 0.010887792333960533, 0.014249744825065136, -0.006565832067281008, -0.017256995663046837, 0.01722615212202072, -0.005351365078240633, 0.017596276476979256, 0.0020915819332003593, 0.00929163582623005, -0.012399128638207912, -9.506095375400037e-05, 0.01881459914147854, -0.001242418889887631, -0.022778000682592392, -0.005760042928159237, -0.009021754376590252, -0.010849237442016602, -0.0047537703067064285, -0.0185832716524601, -0.015198186039924622, -0.00042048507020808756, 0.0008366327383555472, 0.000816391664557159, 0.02470572665333748, 0.0021320641972124577, -0.017179887741804123, -0.00044891901779919863, 0.015113365836441517, 0.0014351914869621396, 0.0009759109234437346, 0.00729451235383749, -0.007649213541299105, -0.0036858106032013893, -0.014080105349421501, 0.0025195369962602854, 0.011766835115849972, 0.034236401319503784, -0.015144209377467632, 0.014565891586244106, 0.007063185330480337, 0.009430431760847569, -0.022685470059514046, -0.00491955503821373, 0.006002936512231827, -0.0017098922980949283, -0.015090233646333218, 0.011512375436723232, 0.02317896857857704, 2.548964857851388e-06, 0.016393374651670456, -0.004121476784348488, 0.009183683432638645, 0.0258006751537323, 0.002829900709912181, 0.008582232519984245, -0.00014036249194759876, 0.0029205037280917168, 0.017349526286125183, 0.002662188606336713, 0.0005759079358540475, -0.026525499299168587, 0.003109420882537961, 0.013540342450141907, -0.00791909545660019, -0.001289648236706853, 0.0012935036793351173, 0.004321959801018238, -0.0022053176071494818, 0.00013963959645479918, -0.013748536817729473, 0.013016000390052795, 0.005324377212673426, -0.0070940288715064526, -0.006642941385507584, 0.0039672586135566235, 0.011188517324626446, -0.01198273990303278, 0.014951436780393124, -0.009962484240531921, 0.0006515711429528892, -0.01704109087586403, 0.0024636329617351294, -0.0038381009362637997, -0.016347110271453857, -0.016563015058636665, -0.01596156507730484, -0.005524860695004463, 0.0007686804165132344, -0.0007768732612021267, -0.02185269258916378, 0.0018583271885290742, 0.01636253111064434, 0.00843572523444891, -0.00012939855514559895, -0.016624702140688896, -0.007240536157041788, 0.003227011999115348, 0.006022213492542505, 0.016115782782435417, 0.02060352824628353, 0.0017773626605048776, 0.00773788895457983, 0.01642421819269657, -0.020618949085474014, 0.0003886776103172451, 0.01676349900662899, 0.0034621944651007652, 0.0037147265393286943, 0.005810163915157318, 0.0104714035987854, -0.009268502704799175, -0.02374957501888275, -0.011674304492771626, 0.009222237393260002, 0.0007431380799971521, -0.022870533168315887, -0.006642941385507584, 0.006380770355463028, -0.0018024231540039182, -0.0010891647543758154, -0.03095155581831932, -0.013347569853067398, 0.006114744581282139, -0.00955380592495203, 0.005147026386111975, -0.010031881742179394, 0.0014496493386104703, 0.0177350714802742, -0.01421890128403902, -0.004649673122912645, -0.009422721341252327, 0.0033079765271395445, -0.006642941385507584, 0.010895502753555775, -0.007456441409885883, -0.00935332290828228, -0.008998621255159378, -0.004429912660270929, -0.02139003947377205, -0.006041490938514471, 0.014080105349421501, 0.004071355797350407, 0.015259873121976852, 0.009877664037048817, -0.00980826560407877, -0.007830419577658176, -0.0019633881747722626, -0.012483948841691017, -0.011682014912366867, -0.01887628622353077, -0.004198585636913776, 0.019462313503026962, -0.02333318628370762, -0.009692602790892124, -0.022469565272331238, 0.014627579599618912, -0.0104945357888937, -0.0015624213265255094, 0.008574522100389004, -0.020110029727220535, -0.003766775131225586, 0.020865697413682938, 0.0061957091093063354, 0.0005845826817676425, -0.014496494084596634, -0.0016125421971082687, 0.010309474542737007, 0.03352699801325798, -0.03781425952911377, -0.005409196950495243, -0.008088734932243824, -0.002581224078312516, -0.03355783969163895, -0.01502083521336317, -0.009700313210487366, -0.015113365836441517, 0.006662218365818262, -0.0013966369442641735, -0.014766375534236431, 0.0011932619381695986, -0.011335024610161781, 0.0004992808098904788, -0.0063075171783566475, -0.013979863375425339, -0.017719650641083717, 0.009754289872944355, -0.013339858502149582, -0.005154737271368504, 0.012607323005795479, -0.010278631001710892, 0.007136438973248005, -0.02453608624637127, 0.010371161624789238, 0.006319083273410797, -0.002569657750427723, 0.016748076304793358, -0.013023711740970612, 0.03914053365588188, -0.005810163915157318, 0.020526418462395668, -0.007849697023630142, -0.002448210958391428, -0.00736391032114625, -0.005478594917804003, -0.010702730156481266, 0.02041846513748169, 0.006723905447870493, 0.0023055593483150005, 0.012792384251952171, -0.0012722986284643412, 0.025492237880825996, -0.02592404931783676, 0.01904592476785183, 0.020279670134186745, 0.002542669652029872, -0.005771609488874674, 0.007290656678378582, -0.018907129764556885, -0.030103357508778572, 0.0009706096607260406, 0.010602489113807678, -0.0066506522707641125, -0.02362620085477829, -1.6340483853127807e-05, 0.012830939143896103, 0.007040052674710751, -0.00011867558350786567, -0.011111408472061157, 0.006831858307123184, 0.0019190504681318998, -0.0225929394364357, -0.011072853580117226, -0.012661299668252468, 0.0023402583319693804, -0.004507021512836218, -0.02077316679060459, -0.014149502851068974, -0.03213903680443764, 0.0007532586460001767, 0.002218811772763729, 0.0051084719598293304, -0.006284384522587061, 0.0006043418543413281, 0.0036241235211491585, -0.004183163866400719, 0.029764078557491302, 0.013910464942455292, -0.009106573648750782, -0.00430653803050518, 0.03328024968504906, 0.002633272670209408, 0.001270370907150209, 0.024412712082266808, 0.009168261662125587, -0.016840606927871704, -0.013285882771015167, -0.003656894899904728, -0.0006125346990302205, 0.0023209811188280582, -0.0011055504437536001, -0.0011527796741575003, 0.005324377212673426, -0.0063075171783566475, -0.01161261647939682, -0.006083901040256023, -0.0010804899502545595, 0.03118288330733776, -0.005960526410490274, 0.011188517324626446, 0.008936934173107147, 0.004102199338376522, -0.013571185991168022, 0.011196228675544262, -0.0028645996935665607, -0.005112327169626951, 0.019585687667131424, -0.014434807002544403, 0.018799176439642906, 0.029393954202532768, -0.0371665433049202, -0.0237958412617445, 0.0025021873880177736, -0.0011161529691889882, 0.010417426936328411, -0.007348488550633192, -0.012815517373383045, 0.0005715705337934196, -0.0018795321229845285, 0.02569272182881832, 0.003562436206266284, -0.0012308525620028377, 0.002847250085324049, -0.0033927964977920055, -0.007973071187734604, -6.590410339413211e-05, 0.0072675240226089954, -0.004352803807705641, 0.007710901089012623, 0.013871910981833935, 0.0036800275556743145, 0.008906090632081032, -0.02882334776222706, 0.012908047996461391, -0.02214570716023445, 0.010502247139811516, 0.011913342401385307, -0.003589424304664135, 0.004846301395446062, -0.0019913401920348406, 0.005174014717340469, -0.027990570291876793, -0.012183223851025105, 0.006087756250053644, 0.00032650845241732895, -0.0066930619068443775, -0.00923765916377306, 0.018907129764556885, -0.015151920728385448, 0.014311431907117367, 0.0031768912449479103, -0.010324896313250065, -0.033095188438892365, 0.006592820398509502, -0.023040171712636948, -0.019246408715844154, 0.033496152609586716, 0.015930721536278725, 0.014072393998503685, 0.01223719958215952, 0.01716446503996849, 0.00010006099182646722, -0.018151460215449333, -0.005918116308748722, 0.011543218977749348, 0.0017561577260494232, 0.0131008205935359, 0.007375476881861687, -0.0141032375395298, 0.006820291746407747, 0.02402716688811779, 0.006442457903176546, 0.01392588671296835, 0.004460756201297045, -0.006905111949890852, 0.009792843833565712, -0.012715275399386883, 0.008790426887571812, -0.0153292715549469, 0.00935332290828228, 0.015005413442850113, 0.012368285097181797, -0.006561976857483387, -0.01435769721865654, 0.009430431760847569, 0.020125452429056168, 0.009731156751513481, -0.01957026682794094, -0.0028086956590414047, 0.0104714035987854, -0.018213147297501564, 0.007676201872527599, 0.008320062421262264, -0.011196228675544262, -0.002868455136194825, -0.0005060278926976025, -0.008150422014296055, -0.01077983994036913, 0.011057431809604168, -0.008127289824187756, -0.001067959819920361, 0.0030361672397702932, 0.0009354286594316363, 0.015776503831148148, 0.017010247334837914, -0.027990570291876793, 0.003924848511815071, 0.00020096535445190966, 0.015992408618330956, -0.010070436634123325, 0.005212569143623114, -0.0062959506176412106, 0.0004062680818606168, -0.010748996399343014, -0.004661239683628082, 0.0038477396592497826, 0.009615493938326836, 0.0029089374002069235, -0.031953971832990646, -0.0010544656543061137, -0.013085398823022842, -0.002625561784952879, -0.0007513309246860445, 0.015398669056594372, 0.005501728039234877, 0.004815457854419947, 0.002319053513929248, 0.02592404931783676, 0.01003959309309721, 0.012121536768972874, 0.005015940871089697, 0.007718611974269152, 0.02882334776222706, 0.006056912709027529, 0.01744205877184868, -0.01504396740347147, -0.004437623545527458, -0.008744161576032639, -0.0061301663517951965, -0.03599448502063751, 0.0013098892522975802, -0.0064154695719480515, -0.017025670036673546, 0.013794802129268646, 0.011604906059801579, -0.00024301387020386755, 0.01818230375647545, 0.0034255676437169313, -0.026510078459978104, -0.013817934319376945, -0.012892626225948334, 0.0006226552650332451, -0.0017320611514151096, 0.01035573985427618, -0.024181384593248367, -0.013864199630916119, 0.017241574823856354, 0.014681555330753326, -0.013378413394093513, 0.018722066655755043, 0.016208313405513763, -0.014504204504191875, 0.012854072265326977, 0.016609281301498413, -0.01241455040872097, 0.014296010136604309, 0.012838650494813919, 0.015113365836441517, -0.019955812022089958, 0.012337441556155682, 0.010371161624789238, 0.0013185640564188361, -0.006623663939535618, -0.01058706734329462, -0.03170722350478172, -0.0030959267169237137, -0.03417471423745155, -0.007988492958247662, 0.012221777811646461, 0.005170159041881561, 0.0019518218468874693, -0.003978824708610773, 0.00941500999033451, 0.001771579496562481, -0.0057870312593877316, 0.018336523324251175, 0.01035573985427618, -0.01077983994036913, -0.02248498797416687, 0.009384166449308395, -0.0007619333919137716, 0.010733573697507381, 0.0007918131304904819, 0.01579192467033863, -0.011597194708883762, 0.013802512548863888, -0.020125452429056168, 0.00649257842451334, 0.0030939991120249033, -0.007653069216758013, -0.0014544687001034617, -0.009931640699505806, 0.026818513870239258, 0.004414490889757872, 0.00461882958188653, -0.019246408715844154, 0.004125331994146109, -0.013440100476145744, 0.004572564270347357, 0.005817874800413847, 0.043057672679424286, -0.007136438973248005, 0.0034197845961898565, -0.018089773133397102, 0.002671827096492052, 0.00673547200858593, -0.0006351854535751045, -0.012545635923743248, 0.017149044200778008, 0.004603407811373472, 0.005948960315436125, 0.010571645572781563, 0.005093050189316273, -0.010972612537443638, 0.011250204406678677, -0.008088734932243824, 0.0141032375395298, -0.01876833289861679, -0.010934057645499706, -0.006457879673689604, -0.02345656044781208, -0.011242493987083435, 0.010085858404636383, -0.028052257373929024, 0.00023674876138102263, -0.002504114992916584, 0.011057431809604168, -0.016501327976584435, -0.015568309463560581, 0.0029821910429745913, -0.01955484412610531, 0.010479114018380642, -0.021605944260954857, 0.023379452526569366, 0.019246408715844154, 0.030180467292666435, -0.022747157141566277, -0.02512211538851261, -0.02968696877360344, 0.016208313405513763, -0.022053176537156105, -0.002477126894518733, 0.0209428071975708, -0.021868115290999413, 0.0031537585891783237, 0.0029262870084494352, 0.003309904132038355, -0.007514272816479206, 0.012144668959081173, 0.0030130345840007067, -0.01515963114798069, -0.02299390733242035, -0.003387013217434287, -0.008574522100389004, -0.017133621498942375, -0.040867775678634644, 0.02390379272401333, 0.0245977733284235, -0.017087357118725777, 0.0037552088033407927, -0.0014438661746680737, 0.010687308385968208, -0.024351025000214577, -0.009206815622746944, 0.015367825515568256, -0.004321959801018238, 0.0018496523844078183, 0.005447751376777887, 0.019709063693881035, 0.006334505043923855, 0.02225366048514843, 0.001734952675178647, -0.037104856222867966, -0.01881459914147854, -0.01086465921252966, 0.0237958412617445, 0.023487403988838196, 0.03920222073793411, -0.005875706672668457, 5.2861840231344104e-05, 0.009885375387966633, 0.021066181361675262, -0.00623426353558898, -0.007190415170043707, -0.01135815680027008, -0.0043682255782186985, -0.006658363156020641, -0.005941249430179596, -0.018043508753180504, -0.013440100476145744, 0.005837152246385813, 0.004954253789037466, 0.004113765899091959, -0.009815976954996586, -0.015576019883155823, -0.008312351070344448, -0.014519626274704933, 0.00878271646797657, -0.0030380950774997473, 0.013224194757640362, 0.002912792842835188, 0.0058949836529791355, -0.015699394047260284, 0.007340777665376663, -0.008852113969624043, -0.008050180971622467, 0.024613196030259132, -0.006496434099972248, 0.0322624109685421, -0.0012742263497784734, -0.0131008205935359, -0.021667631343007088, 0.015121077187359333, 0.01904592476785183, 0.03753666579723358, 0.026124533265829086, 0.006631374824792147, -0.01072586327791214, 0.011203939095139503, 0.0173341054469347, 0.0036973769310861826, 0.022438721731305122, -0.0016212168848142028, -0.02155967988073826, -4.728950807475485e-05, 0.006893545389175415, -0.010849237442016602, 0.026957308873534203, 0.005798597354441881, -0.007834275253117085, 0.00929163582623005, 0.008890668861567974, 0.0018843513680621982, 0.003107493044808507, -0.024813679978251457, 0.007132583297789097, -0.003695449326187372, -0.005875706672668457, -0.005347509868443012, -0.014481072314083576, 0.014696977101266384, -0.0010053087025880814, -0.005131604615598917, -0.01395673118531704, -0.02075774595141411, -0.021698474884033203, 0.01273069716989994, -0.01881459914147854, -0.0022592940367758274, -0.026510078459978104, 0.011543218977749348, -0.01104201003909111, 0.0027894184459000826, 0.005544137675315142, 0.01401841826736927, 0.0034178567584604025, 0.012098403647542, 0.005035218317061663, 0.006357637699693441, -0.023934636265039444, -0.004260272718966007, 0.00722511438652873, -0.003442917251959443, 0.008011626079678535, 0.015946142375469208, 0.004564853385090828, 0.005201002582907677, 0.006153299007564783, -0.012738408520817757, -0.014504204504191875, 0.014542759396135807, -0.004009668715298176, -0.012136958539485931, -0.003637617453932762, -0.005848718341439962, 0.0019479664042592049, 0.017704227939248085, -0.01923098787665367, 0.02151341363787651, 0.019724484533071518, 0.007016920018941164, 0.00010644657595548779, 0.0061957091093063354, -0.005366786848753691, -0.016748076304793358, -0.0031749634072184563, 0.019524000585079193, -0.016100361943244934, 0.03284843638539314, -0.00998561643064022, 0.004730637650936842, 0.009276214055716991, -0.007521983701735735, -0.002951347269117832, -0.00028120691422373056, 0.010602489113807678, -0.00722511438652873, 0.004283405374735594, 0.010826105251908302, 0.007637647446244955, 0.022346191108226776, 0.00549016147851944, 0.004838590510189533, 0.00855138897895813, -0.005058350972831249, 0.02276257984340191, 0.010972612537443638, -0.0009277177741751075, -0.0037976186722517014, -0.005181725602596998, -0.011219360865652561, 0.0010718152625486255, 0.016578437760472298, 0.0007537405472248793, 0.007872830145061016, -0.007564393803477287, 0.004722926765680313, 0.012244910933077335, -0.016146626323461533, 0.027373697608709335, 0.009677181020379066, 0.011327313259243965, -0.0013629017630591989, 0.007641502656042576, 0.005929682869464159, 0.02871539443731308, -0.0020684492774307728, -0.004684372339397669, 0.004773047752678394, -0.012098403647542, 0.008875247091054916, -0.047283243387937546, -0.001383142895065248, -0.0043103937059640884, 0.002868455136194825, 0.009584649465978146, -0.008489701896905899, -0.001391817582771182, 0.01335528027266264, -0.020742323249578476, -0.005158592946827412, -0.02556934766471386, 0.0005137387779541314, -0.019755328074097633, -5.1416045607766137e-05, 0.0008804884855635464, 0.0008062710985541344, -0.020958228036761284, -0.001716639380902052, 0.02271631360054016, 0.007757166400551796, -0.004784613847732544, -0.021883536130189896, -0.0009812121279537678, 0.001772543415427208, 0.0114738205447793, -0.011543218977749348, -0.003460266860201955, 0.0070361969992518425, -0.0005913297063671052, -0.017688807100057602, 0.004564853385090828, 0.03513086587190628, -0.015283005312085152, -0.002459777519106865, -0.002577368635684252, -0.013802512548863888, 0.009229948744177818, -0.000575425976421684, 0.016917716711759567, 4.4156957301311195e-05, -0.020911963656544685, -0.009815976954996586, -0.0245515089482069, -0.006500289309769869, 0.008890668861567974, -0.011836232617497444, -0.0038824386429041624, 0.016840606927871704, 0.015699394047260284, -0.008343194611370564, 0.01072586327791214, 0.009916218928992748, -0.01819772645831108, 0.02590862661600113, -0.0008337411563843489, 0.0034255676437169313, -0.005486306268721819, -0.005775464698672295, 0.015498911030590534, 0.013424678705632687, -0.011882498860359192, -0.009800555184483528, 0.004314248915761709, -0.010579355992376804, 0.010216943919658661, -0.013247327879071236, -0.003415929153561592, 0.01321648433804512, -0.018382787704467773, -0.003600990865379572, 0.011766835115849972, 0.016609281301498413, 0.001123863854445517, -0.02191437967121601, -0.008327772840857506, -0.003238578327000141, -0.0021397750824689865, 0.00032241205917671323, -0.02007918618619442, 0.009060308337211609, -0.023086437955498695, 0.013370702043175697, -0.004445334430783987, 0.0023229089565575123, -0.003294482361525297, -0.005640523973852396, -0.008559100329875946, 0.0003308458544779569, 0.00233833072707057, -0.007741744630038738, -0.02390379272401333, -0.004946542903780937, 0.0010371161624789238, 0.012021294794976711, -0.00022192936739884317, 0.013023711740970612, -0.024798257276415825, 0.003545086830854416, -0.0010718152625486255, -0.010579355992376804, 0.004341237246990204, 0.009021754376590252, 0.0020742323249578476, -0.008073313161730766, -0.024782836437225342, 0.005567270331084728, -0.00443376787006855, 0.0014429023722186685, 0.008081024512648582, 0.0402817465364933, 0.009453564882278442, -0.02248498797416687, -0.0010525379329919815, 0.008505123667418957, 0.002646766835823655, 0.05258834362030029, 0.017889291048049927, -0.013463232666254044, -0.0053976308554410934, -0.004800036083906889, -0.019601110368967056, 0.01623915694653988, 0.002336402889341116, -0.02791346237063408, -0.017873868346214294, 0.003986535593867302, 0.0011277192970737815, 0.010162967257201672, 0.0131008205935359, -0.0015845901798456907, -0.0021551968529820442, -0.009546095505356789, -0.013848777860403061, -0.0225466750562191, -0.010517668910324574, 0.004749915096908808, 0.005389919970184565, -0.003415929153561592, -0.012977446429431438, 0.0011450687889009714, -0.005929682869464159, -0.0031421922612935305, 0.011797678656876087, -0.011026588268578053, -0.006461734883487225, 0.0031691803596913815, -0.005628957878798246, -0.006110888905823231, -0.009222237393260002, 4.47292513854336e-05, 0.014026128686964512, 0.007707045413553715, 0.002793273888528347, 0.009160550311207771, -0.014296010136604309, -0.012707564979791641, -0.011735991574823856, -0.0030650831758975983, 0.009654047898948193, -0.0035315926652401686, -0.006831858307123184, 0.01333214808255434, 0.03988077864050865, -0.019601110368967056, -0.002633272670209408, 0.008451147004961967, 0.004800036083906889, -0.01378709077835083, -0.01648590713739395, 0.024921631440520287, -0.006604386493563652, 0.0065812538377940655, -0.005443896166980267, -0.00779572082683444, -0.015869034454226494, 0.007618370000272989, -0.007799576502293348, 0.009068019688129425, 0.0011951896594837308, -0.005339798983186483, 0.021436303853988647, 0.010332607664167881, -0.006785592995584011, 0.006180287338793278, 0.011373578570783138, 0.009453564882278442, -0.015367825515568256, -0.02117413468658924, 0.005089194513857365, -0.0038631614297628403, -0.002673754934221506, -0.025985736399888992, 0.0074487305246293545, -0.039788249880075455, -0.00043060563621111214, 0.006932099815458059, -0.014403963461518288, -0.012969735078513622, 0.003612557193264365, -0.0114738205447793, -0.004965820349752903, -0.01072586327791214, -0.003572074929252267, -0.0031421922612935305, 0.01997123286128044, -0.009006332606077194, 0.001838086056523025, -0.005867995787411928, -0.0019306167960166931, 0.015537465922534466, 0.01967822015285492, -0.014226612634956837, 0.00710945064201951, 0.009777422063052654, 0.003841956378892064, -0.015460356138646603, 0.02877708151936531, 0.0018486884655430913, -0.009692602790892124, -0.006465590558946133, -0.006396192125976086, -0.024443555623292923, -0.011581772938370705, -0.007965360768139362, 0.00467666145414114, -0.016408797353506088, 0.019153878092765808, -0.00460726348683238, 0.013640583492815495, 0.0052202800288796425, 0.012877204455435276, 0.0011460327077656984, -0.003766775131225586, -0.003171107964590192, 0.010340318083763123, -0.004294971935451031, 0.011998161673545837, 0.008327772840857506, -0.00046289502643048763, 8.656691352371126e-05, -0.006427036132663488, 0.004904132802039385, 0.005590402986854315, -0.0001019284754875116, 0.016054095700383186, -0.007772588171064854, -0.0002371102018514648, 0.005424618721008301, 0.011319602839648724, -0.02071147970855236, -0.004996663890779018, -0.014696977101266384, -0.014226612634956837, 0.023502826690673828, 0.0006785592995584011, -0.029208892956376076, 0.03531592711806297, 0.000862657034303993, 0.0008530184277333319, 0.019416049122810364, 0.009438143111765385, -0.0041870190761983395, -0.0023961623664945364, 0.009075730107724667, -0.005952815525233746, 0.022407878190279007, -0.0008308495744131505, 0.015699394047260284, -0.009137417189776897, -0.00165206054225564, 0.03420555591583252, -0.011265626177191734, 0.009361033327877522, 0.01315479725599289, 0.013918176293373108, -0.015460356138646603, 0.013887332752346992, -0.00642318045720458, -0.01072586327791214, 0.01682518608868122, -0.012892626225948334, -0.007903673686087132, 0.01802808605134487, -0.030134201049804688, 0.0036588225048035383, -0.022006912156939507, -0.010378872975707054, -0.024983318522572517, 0.008474280126392841, 0.006546555086970329, 0.016177469864487648, 0.0012125391513109207, -0.009206815622746944, -0.013571185991168022, -0.00043662977986969054, 0.005077628418803215, 0.017950978130102158, 0.009229948744177818, -0.005814019124954939, -0.00010524175013415515, 0.015745660290122032, -0.012753830291330814, 0.02390379272401333, -0.021482570096850395, 0.0027431531343609095, 0.007186559494584799, 0.022639205679297447, -0.00623426353558898, -0.0030380950774997473, -0.021143291145563126, 0.006885834503918886, 0.022392457351088524, -0.020973650738596916, -0.036241233348846436, -0.0005966309690847993, 0.02225366048514843, 0.016778919845819473, -0.01818230375647545, 0.006839569192379713], "f56de84c-1275-43ef-8612-2b179d6f6374": [-0.03876679018139839, 0.0012361486442387104, -0.014255939051508904, 0.023347849026322365, -0.039878591895103455, -0.03001866303384304, 0.014204737730324268, 0.028190039098262787, 0.009421061724424362, 0.009150425903499126, 0.027297671884298325, 0.005983252078294754, -0.010203711688518524, -0.009069966152310371, -0.0016905611846596003, -0.006089312024414539, -0.005025053862482309, -0.0015378713142126799, -0.001809421693906188, -0.05485866591334343, 0.05158177390694618, -0.014482688158750534, -0.039907850325107574, -0.019529685378074646, 0.010057422332465649, 0.011871415190398693, -0.026931947097182274, -0.001502213184721768, -0.048597462475299835, -0.00543100805953145, 0.013970674015581608, 0.031452301889657974, -0.024327989667654037, 0.0040083397179841995, 0.0016512458678334951, -0.03926417604088783, 0.027780428528785706, 0.04830488562583923, -0.04224848747253418, -0.0344073548913002, -0.03850346803665161, -0.013465973548591137, -0.027897460386157036, 0.0012681494699791074, -0.031247496604919434, -0.013926786370575428, 0.028043750673532486, -0.018476398661732674, 0.012134737335145473, -0.004516697023063898, 0.020290391519665718, -0.010211026296019554, -0.002799620619043708, -0.04397470876574516, 0.03540212661027908, -0.031598590314388275, -0.005328604951500893, 0.06495266407728195, -0.007767986971884966, -0.044413577765226364, -0.0510258749127388, -0.012814984656870365, 0.022879721596837044, 0.0028709368780255318, -0.004973852541297674, -0.006553782150149345, 0.0007373918779194355, 0.007468093186616898, -0.019983183592557907, 0.018183819949626923, -0.013641521334648132, 0.03233003988862038, -0.05403944477438927, 0.016062617301940918, -0.01296127401292324, 0.035928770899772644, -0.014007246121764183, 0.026478448882699013, 0.012149365618824959, 0.011651980690658092, -0.024547424167394638, -0.0066122980788350105, 0.035489898175001144, 0.03826940432190895, 0.0329444594681263, 0.020275762304663658, -0.0422777459025383, -0.04239477589726448, -0.022016610950231552, -0.023655056953430176, 0.00886516086757183, 0.01682332344353199, -0.01656000316143036, -0.027107495814561844, -0.013151451013982296, 0.0326518788933754, -0.0010660866973921657, 0.002155945636332035, 0.011000990867614746, -0.022440852597355843, -0.019675975665450096, 0.018110673874616623, -0.03762573003768921, 0.004725159611552954, 0.005635813809931278, 0.002867279574275017, -0.017920497804880142, -0.010225655511021614, 0.0006596754537895322, 0.020173359662294388, 0.010540178045630455, -0.022323820739984512, 0.0072120861150324345, 0.015696892514824867, -0.019705232232809067, -0.031042691320180893, -0.057930752635002136, 0.020217247307300568, 0.0006756759248673916, 0.0018359366804361343, 0.020012442022562027, -0.028848344460129738, 0.014797210693359375, 0.0038803364150226116, -0.0042168027721345425, 0.009457633830606937, -0.0126467514783144, 0.019266363233327866, 0.018768979236483574, -0.0030373414047062397, -0.0024265816900879145, -0.03663095831871033, 0.011454489082098007, -0.00814102590084076, -0.0023479508236050606, 0.024313360452651978, 0.0008091652998700738, 0.04570092633366585, -0.03935195133090019, 0.012244454585015774, -0.06068100035190582, -0.01288081519305706, -0.005021396558731794, 0.00731814606115222, 0.0028965375386178493, -0.01708664558827877, -0.05096735805273056, 0.01294664479792118, -0.018651947379112244, 0.030662337318062782, -0.03472919389605522, -0.003485353896394372, -0.00848480686545372, 0.028833715245127678, 0.0345536470413208, -0.03300297260284424, 0.002629558788612485, 0.02542516402900219, 0.02909703738987446, 0.012156680226325989, 0.05544382706284523, -0.022835833951830864, 0.0008992249495349824, -0.0014894127380102873, 0.018183819949626923, 0.03350035846233368, 0.04830488562583923, -0.0068171038292348385, 0.011096079833805561, 0.012003076262772083, 0.015506716445088387, -0.019032299518585205, 0.015799295157194138, 0.027853572741150856, 0.004315548576414585, -0.013041733764111996, 0.050440713763237, -0.0022437195293605328, 0.0342610664665699, -0.006919506471604109, -0.02589328959584236, -0.01097904797643423, 0.01239074394106865, -0.007980107329785824, -0.018183819949626923, 0.024269474670290947, -0.02464982680976391, -0.011659295298159122, 0.0005028711166232824, -0.011834843084216118, 0.010203711688518524, 0.015067847445607185, -0.02178254723548889, 0.00015680435171816498, 0.04145852103829384, 0.015565232373774052, -0.014021875336766243, 0.013158765621483326, 0.007870390079915524, 0.03452438861131668, 0.011973817832767963, -0.02557145245373249, -0.04338954761624336, 0.04564240947365761, -0.032125234603881836, 0.04777824133634567, -0.009794100187718868, -0.0650111734867096, 0.023552654311060905, -0.035665448755025864, 0.05635082349181175, -0.015462829731404781, 0.03668947517871857, -0.002080972073599696, -0.011849472299218178, 0.0038986224681138992, -0.0016786751803010702, 0.04122445732355118, -0.0050689405761659145, -0.034992516040802, 0.019939295947551727, 0.040727075189352036, -0.013517175801098347, -0.0040266262367367744, -0.014146221801638603, -0.006210001185536385, 0.0074132345616817474, 0.049445945769548416, -0.023640427738428116, -0.02976997010409832, 0.03759647160768509, -0.023143041878938675, 0.023274702951312065, -0.02582014538347721, 2.3329219402512535e-05, 0.006374577060341835, 0.01663314737379551, -0.03379293903708458, -0.00873349979519844, -0.00017829066200647503, -0.0005728158866986632, 0.06296312063932419, -0.031013432890176773, -0.019793007522821426, 0.0017874782206490636, 0.006491608917713165, -0.013824383728206158, 0.0028928802348673344, -0.02505943924188614, -0.002377208787947893, 0.015623748302459717, 0.028116894885897636, -0.005515124648809433, -0.023976894095540047, -0.011593464761972427, 0.03505102917551994, 0.02902389131486416, -0.05243025720119476, -0.013751238584518433, -0.015214136801660061, -0.007120654918253422, 0.00021429166372399777, 0.007029223721474409, 0.019485797733068466, 0.0290824081748724, -0.02159237116575241, 0.007266944739967585, -0.004809276200830936, 0.023625798523426056, 0.016355197876691818, -0.00742786331102252, 0.001960282912477851, -0.007841131649911404, 0.02112424373626709, 0.02593717724084854, -0.004377721343189478, -0.036104317754507065, 0.0030684280209243298, -0.012032333761453629, 0.020070957019925117, 0.004176573362201452, 0.01451194565743208, 0.012902758084237576, -0.013195337727665901, 0.0021230303682386875, -0.015916327014565468, -0.02086092159152031, 0.010035478509962559, -0.05453683063387871, 0.027780428528785706, 0.008177598938345909, -0.0008466520812362432, -0.0030062550213187933, 0.018315479159355164, 0.028058379888534546, -0.015053218230605125, 0.0024466966278851032, -0.018549542874097824, -0.02912629395723343, 0.00025920721236616373, 0.031715624034404755, 0.017847353592514992, 0.022879721596837044, 0.009640496224164963, 0.03900085389614105, -0.023625798523426056, 0.0005723587237298489, 0.023698944598436356, -0.03882530704140663, 0.03698205575346947, 0.04959223419427872, -0.014314454980194569, -0.04327251762151718, -0.010152510367333889, -0.0025765285827219486, 0.023391734808683395, -0.007157227490097284, -0.027868201956152916, -0.04268735647201538, -0.0055516972206532955, -0.0017015329794958234, -0.00849943608045578, -0.030603820458054543, 0.006963393185287714, 0.0435943529009819, -0.04207294061779976, 0.039732303470373154, 0.009150425903499126, -0.0036298150662332773, -0.02068537473678589, 0.004834877327084541, -0.01739385537803173, 0.001056029344908893, 0.012814984656870365, -0.05049923062324524, -0.018505657091736794, -0.0006039025029167533, -0.027180640026926994, -0.0014162679435685277, -0.036426153033971786, 0.00103317154571414, -0.019675975665450096, 0.0344073548913002, -0.011542263440787792, 0.02519110031425953, 0.018183819949626923, -0.020451311022043228, -0.013597634620964527, -0.02187032252550125, -0.009347916580736637, 0.0009170540142804384, -0.011235054582357407, 0.014138907194137573, 0.011403287760913372, 0.040873363614082336, -0.03437809646129608, -0.044033221900463104, -0.012558977119624615, 0.02134367823600769, -0.04982629790902138, -0.016179649159312248, -0.03016495145857334, -0.010584065690636635, -0.0024777830112725496, 0.0074754077941179276, 0.020144103094935417, -0.0005078997928649187, -0.013334313407540321, -0.035694707185029984, -0.028219297528266907, -0.03414403274655342, 0.00828731618821621, -0.0009947704384103417, -0.028555763885378838, -0.02466445602476597, -0.04341880604624748, 0.03768424689769745, 0.009165054187178612, 0.009289400652050972, 0.018359366804361343, 0.007833817973732948, -0.004469152539968491, -0.015053218230605125, -0.01052554976195097, 0.020100215449929237, -0.012127422727644444, -0.009662440046668053, -0.013261168263852596, -0.013875585049390793, -0.015989473089575768, 0.018783606588840485, -0.00029715109849348664, -0.027326930314302444, -0.027487849816679955, -0.014043818227946758, 0.018827494233846664, 0.008879789151251316, -0.02561534009873867, 0.008806644938886166, -0.056760434061288834, 0.03718686103820801, -0.01667703501880169, -0.017949756234884262, -0.031393785029649734, -0.0046739582903683186, -0.02533738873898983, 0.0009289400768466294, -0.0053761494345963, 0.023859862238168716, 0.019324880093336105, 0.026990463957190514, 0.01261749304831028, 0.02176791802048683, 0.0517573244869709, 0.022221416234970093, 0.015199507586658001, -0.013824383728206158, 0.03812311589717865, 0.01242000237107277, -0.0037011313252151012, 0.005240831058472395, 0.035782478749752045, -0.0006148742395453155, 0.006466008257120848, 0.015506716445088387, 0.0024393820203840733, -0.006787845864892006, 0.015667635947465897, 0.013934100978076458, -0.022894350811839104, 0.001154774916358292, 0.0830925926566124, -0.015462829731404781, 0.05424425005912781, 0.026639368385076523, 0.0046885875053703785, -0.0006939621525816619, 0.0016704463632777333, 0.013261168263852596, -0.016238166019320488, 0.003362836316227913, 0.031101206317543983, -0.018491027876734734, 0.008455549366772175, -0.032154493033885956, -0.009486892260611057, -0.0030775712803006172, -0.011842157691717148, 0.02938961610198021, 0.0023954950738698244, -0.005218887701630592, 0.027370817959308624, -0.044676896184682846, -0.0008329374250024557, -0.013882899656891823, 0.004059541504830122, 0.004900707397609949, -0.008009364828467369, 0.006820760667324066, -0.014029189944267273, -0.018315479159355164, 0.024093925952911377, 0.016179649159312248, -0.0033482073340564966, -0.0040156543254852295, -0.04584721475839615, -0.017949756234884262, 0.006444064900279045, -0.0027100180741399527, -0.01773032173514366, 0.02486926130950451, -0.031481560319662094, -0.00212851632386446, 0.04584721475839615, 0.03753795847296715, -0.010035478509962559, -0.013363570906221867, -0.02090480923652649, -0.03320777788758278, -0.023377105593681335, -0.02965293824672699, -0.02921406924724579, -0.024474279955029488, -0.03905937075614929, -0.0003517812001518905, 0.017847353592514992, -0.05076255276799202, -0.03478771075606346, 0.02955053560435772, -0.024167072027921677, 0.03130601346492767, 0.0011931760236620903, -0.005602898541837931, 0.03350035846233368, -0.01028417143970728, -0.045320574194192886, -0.04684198647737503, -0.020451311022043228, -0.0209925826638937, -0.03452438861131668, 0.049475204199552536, -0.03911788761615753, 0.022572511807084084, -0.02170940302312374, -0.009216255508363247, 0.026449192315340042, 0.0032988344319164753, 0.04561315104365349, -0.0209925826638937, -0.02511795423924923, -0.05368834733963013, 0.004308233968913555, -0.035782478749752045, 0.006871962454169989, -0.010079365223646164, 0.019983183592557907, -0.002984311431646347, -0.0009545407956466079, 0.03007717803120613, 0.0008672240655869246, -0.0027027036994695663, -0.011293570511043072, -0.0351388044655323, -0.0217240322381258, -0.028248555958271027, 0.02554219588637352, 0.005292032845318317, -0.03031124174594879, 0.044325802475214005, -0.045115768909454346, 0.0010395717108622193, 0.03013569489121437, -0.04646163433790207, 0.018169190734624863, 0.040171172469854355, 0.01522876601666212, 0.028277814388275146, 0.014789896085858345, -0.019471168518066406, -0.00525911757722497, 0.02137293666601181, 0.035987284034490585, 0.026858802884817123, 0.008996821008622646, -0.006173428613692522, 0.022484738379716873, 0.010591380298137665, 0.014921557158231735, -0.01500933151692152, 0.032242268323898315, -0.020027071237564087, 0.0438869334757328, -0.031891170889139175, 0.019149331375956535, -0.0061551425606012344, -0.013436716049909592, -0.01756940223276615, -0.012573606334626675, 0.006067368667572737, -0.003960795700550079, -0.028043750673532486, 0.009238199330866337, 0.0129759032279253, 0.043301772326231, 0.00886516086757183, -0.02170940302312374, -0.00814834050834179, 0.007113340310752392, -0.035577673465013504, 0.023011382669210434, 0.057696688920259476, -0.013487917371094227, 0.03004791960120201, 0.01739385537803173, -0.008228800259530544, 0.03938120976090431, -0.003260433441027999, 0.01465823594480753, -0.03414403274655342, -0.01041583251208067, 0.027692655101418495, 0.010306114330887794, 0.010167139582335949, 0.018783606588840485, 0.01664777658879757, -0.018096044659614563, -0.028131524100899696, -0.02166551537811756, -0.036045800894498825, 0.006012510042637587, 0.02039279416203499, 0.024445021525025368, -0.008945619687438011, -2.4914977984735742e-05, -0.020217247307300568, -0.009325973689556122, 0.015243394300341606, 0.0023461224045604467, 0.04710530862212181, 0.0172036774456501, 0.0581648163497448, -0.0012708924477919936, -0.010423146188259125, -0.023172300308942795, -0.04157555475831032, 0.023684315383434296, 0.008974878117442131, 0.0067329867742955685, -0.02603957988321781, 0.017979012802243233, 0.00549318129196763, -0.009179683402180672, 0.044793929904699326, -0.019061557948589325, 0.024020781740546227, 0.016223536804318428, 0.02147533930838108, 0.02489851973950863, 0.01511173415929079, -0.01048166211694479, 0.030837884172797203, -0.028833715245127678, 0.0584573931992054, -0.027473220601677895, 0.03777202218770981, -0.002411952707916498, -0.007738729007542133, 0.010357316583395004, -0.010357316583395004, -0.008104453794658184, -0.0003286948485765606, -0.022411594167351723, -0.00655012484639883, -0.02552756667137146, -0.01677943766117096, -0.014248624444007874, 0.022279933094978333, 0.020129473879933357, -4.7172739868983626e-05, -0.05406870320439339, 0.02089018002152443, 0.007533923722803593, 0.013700037263333797, 0.03036975860595703, -0.018461769446730614, -0.01063526701182127, -0.020495198667049408, 8.735956726013683e-06, 0.040551524609327316, 0.005237174220383167, -0.04780749976634979, 0.00424240343272686, 0.006239259149879217, 0.010020849294960499, 0.02582014538347721, -0.02622975781559944, -0.010467033833265305, -0.0026752743870019913, 0.006952421739697456, -0.009121167473495007, 0.026419933885335922, -0.022060498595237732, 0.019412653520703316, 0.02138756588101387, 0.005039682611823082, -0.008236114867031574, -0.0011438032379373908, -0.00637823436409235, -0.009245513938367367, 0.0007172770565375686, -0.004465495236217976, 0.004575212951749563, -0.005807704292237759, -0.007127969525754452, -0.004641043022274971, -0.00873349979519844, -0.004743446130305529, 0.032066717743873596, -0.011915301904082298, -0.03715760260820389, -0.011608093976974487, -0.036250606179237366, -0.00743517791852355, 0.009596609510481358, -0.028745941817760468, -0.02119738794863224, 0.003489011200144887, 0.02466445602476597, -0.031042691320180893, 0.01661851815879345, -0.02195809595286846, 0.009048022329807281, 0.00033075205283239484, 0.036426153033971786, 0.0162527933716774, -0.007468093186616898, 0.0255129374563694, -0.007848446257412434, 0.006491608917713165, -0.0081263966858387, 0.000808251032140106, 0.027590252459049225, -0.00736569007858634, -0.02552756667137146, 0.01691109873354435, 0.018812865018844604, -0.02103647030889988, -0.057287078350782394, 0.022177530452609062, 0.007906962186098099, -0.0035036401823163033, -0.027648767456412315, -0.0008608239004388452, 0.011556892655789852, -0.007702156901359558, 0.027473220601677895, -0.018578801304101944, 0.035255834460258484, 0.019997812807559967, 0.023552654311060905, -0.013407457619905472, 0.03408551961183548, -0.002909337868914008, -0.00872618518769741, -0.030808627605438232, 0.011973817832767963, 0.00013074648450128734, 0.0020681717433035374, 0.006714700721204281, 0.003960795700550079, 0.0217240322381258, -0.014109648764133453, 0.02086092159152031, 0.004498410504311323, -0.00024503536405973136, 0.02476685866713524, 1.2557491572806612e-05, 0.0007323632016777992, 0.0077972449362277985, -0.006056396756321192, 0.004860477987676859, 0.022967495024204254, -0.019222477450966835, -0.014804525300860405, 0.003465239191427827, 0.026800287887454033, 0.016004102304577827, 0.026244385167956352, -0.006052739452570677, 0.024313360452651978, 0.022499367594718933, -0.02154848352074623, 0.0688147097826004, -0.0027776770293712616, -0.0022345762699842453, -0.0061368560418486595, 0.02601032145321369, -0.006396520417183638, 0.03034050017595291, 0.04210219904780388, -0.0018999384483322501, 0.022806575521826744, 0.024401133880019188, 0.007471750490367413, -0.028585022315382957, 0.01026222761720419, 0.01260286383330822, 0.019661346450448036, 0.03291520103812218, 0.020202618092298508, 0.03291520103812218, 0.015623748302459717, 0.026595480740070343, 0.026405304670333862, 0.006597668863832951, -0.024357248097658157, 0.022001981735229492, -0.0071974569000303745, -0.023201558738946915, -0.0126467514783144, -0.006601326167583466, -0.013648835942149162, 0.018666574731469154, -0.012076221406459808, 0.015184879302978516, -0.027326930314302444, 0.023669686168432236, -0.0024064667522907257, -0.00862378254532814, -0.0005184144247323275, -0.012800355441868305, 0.0005997880944050848, -0.00015406141756102443, 0.0005184144247323275, -0.0018011928768828511, -0.036572445183992386, 0.0127564687281847, -0.0008859674562700093, 0.0005481294938363135, -0.012185938656330109, -0.002026113448664546, -0.03841569647192955, 0.003792562521994114, 0.03285668417811394, -0.0023753803689032793, 0.020231876522302628, 0.036104317754507065, -0.006520866882055998, -0.013202652335166931, 0.0034597532358020544, -0.010086679831147194, -0.0025344702880829573, -0.007841131649911404, 0.008418976329267025, 0.003322606673464179, -0.014702122658491135, -1.6671890989528038e-05, -0.0341147743165493, 0.040610041469335556, 0.010467033833265305, 0.011008305475115776, 0.018417883664369583, 0.0216508861631155, 0.022104384377598763, -0.031393785029649734, -0.01026222761720419, 0.01097904797643423, 0.005573640577495098, 0.014131592586636543, -0.03361739218235016, 0.008879789151251316, -0.02601032145321369, -0.0023205215111374855, 0.012354171834886074, -0.005701643880456686, 0.027268415316939354, 0.024503538385033607, 0.0023369791451841593, -0.04368212819099426, 0.05061626434326172, -0.012558977119624615, -0.04710530862212181, -0.005343234166502953, -0.011147281154990196, -0.016077246516942978, -0.0017317052697762847, 0.021928837522864342, 0.004944594576954842, 0.013473288156092167, 0.061090610921382904, 0.03300297260284424, -0.011827528476715088, 0.02154848352074623, 0.0010414003627374768, -0.013561062514781952, -0.0018459941493347287, -0.002393666421994567, 0.0023680657614022493, -0.0024028096813708544, 0.02568848431110382, -0.0024375533685088158, 0.019675975665450096, -0.04324325919151306, 0.004048569593578577, -0.01770106330513954, -0.0026387018151581287, 0.016238166019320488, 0.0037011313252151012, -0.0023333218414336443, 0.031423043459653854, -0.018944526091217995, -0.012339542619884014, -0.007307174149900675, -0.018798235803842545, 0.0004589841701090336, -0.03370516374707222, 0.02940424531698227, 0.035782478749752045, -0.040493011474609375, 0.00419485941529274, -0.005895478185266256, -0.0017710205866023898, -0.015872441232204437, 0.02146071009337902, -0.016018729656934738, -0.0001060029462678358, 0.014490002766251564, -0.040639299899339676, -0.014190108515322208, 0.0013769525103271008, -0.028233926743268967, 0.004845848772674799, -0.032388556748628616, -0.020290391519665718, -0.01500933151692152, 0.03019420988857746, 0.012134737335145473, -0.03004791960120201, -0.019851522520184517, -0.009830673225224018, -0.0018432511715218425, -0.031510818749666214, -0.05210841819643974, 0.005727244541049004, 0.019749119877815247, -0.03320777788758278, 0.01748162880539894, 0.00431189127266407, 0.009216255508363247, -0.011534948833286762, 0.027970604598522186, 0.030867142602801323, 0.02492777816951275, -0.03013569489121437, 0.017861980944871902, 0.01688184030354023, 0.03458290174603462, -0.023318590596318245, -0.02927258424460888, 0.008952934294939041, 0.036221347749233246, 0.02580551616847515, 0.02969682402908802, -0.01657463237643242, -0.005211573094129562, -0.009216255508363247, -0.010423146188259125, -0.014599720016121864, -0.02040742337703705, 0.0072047715075314045, -0.02040742337703705, -0.013217281550168991, 0.004176573362201452, 0.01666240580379963, 0.026844173669815063, 0.008119083009660244, -0.03233003988862038, -0.0062136584892869, -0.04643237590789795, -0.0014948986936360598, -0.004838534165173769, -0.012200566940009594, 0.023201558738946915, -0.01451926026493311, -0.027312301099300385, -0.026756400242447853, -0.006469665560871363, -0.01511173415929079, 0.011066821403801441, -0.00836046040058136, -0.022513996809720993, 0.02592254802584648, 0.0050689405761659145, -0.0008969391928985715, -0.015989473089575768, 0.015843182802200317, -0.002677102806046605, -0.019822264090180397, -0.010671839118003845, 0.003946166951209307, -0.005654099863022566, -0.004165601450949907, 0.01642834208905697, 0.005687015131115913, 0.011951874941587448, 0.02122664637863636, -0.023333219811320305, 0.02605420909821987, -0.018812865018844604, 0.004772704094648361, -0.004118057433515787, -0.017759578302502632, -0.0165453739464283, 0.04368212819099426, 0.0020334278233349323, -0.007164541631937027, -0.010788870975375175, -0.026741771027445793, -0.017818095162510872, 0.011491062119603157, 0.01686721108853817, -0.01734996773302555, -0.006264859810471535, -0.022865092381834984, 0.009399117901921272, 0.018798235803842545, 0.006052739452570677, 0.015916327014565468, -0.01634056866168976, -0.0127564687281847, -0.018373996019363403, -0.013246539048850536, 0.035285092890262604, 0.009881874546408653, 0.011812899261713028, -0.01462897751480341, 0.003717588959261775, -0.0295212771743536, 0.00016251880151685327, -0.011183853261172771, -0.01073766965419054, -0.014248624444007874, -0.009889189153909683, -0.00724865822121501, -0.015492087230086327, 0.012441945262253284, 0.026814915239810944, -0.00016160449013113976, -0.0040266262367367744, 0.026449192315340042, -0.014336397871375084, -0.004176573362201452, -0.009969647973775864, 0.005668729078024626, 0.008806644938886166, 0.018534915521740913, -0.01063526701182127, -0.007658269722014666, -0.010664524510502815, 0.03955675661563873, -0.00324763311073184, 0.009464948438107967, -0.009699012152850628, -0.005840619560331106, -0.017964385449886322, -0.008411661721765995, 0.009384489618241787, -0.011439860798418522, 0.012207881547510624, 0.014102334156632423, -0.015360426157712936, -0.013290426693856716, -0.003960795700550079, 0.01631131023168564, -0.006634241435676813, -0.03794756904244423, -0.009750213474035263, -0.04233626276254654, -0.03007717803120613, -0.01707201637327671, 0.022894350811839104, 0.018373996019363403, -0.02176791802048683, 0.009011450223624706, 0.007716785650700331, -0.019573573023080826, 0.009186998009681702, -0.009304029867053032, -0.012251769192516804, 0.02602495066821575, 0.007288888096809387, -0.011710496619343758, 0.02959442138671875, -0.035723961889743805, -0.006078340113162994, -0.003785247914493084, -0.015038589015603065, -0.0007268773042596877, -0.005292032845318317, 0.011754383333027363, -0.019690604880452156, -0.02093406766653061, 0.03230078145861626, -0.008660354651510715, 0.023874491453170776, -0.023874491453170776, -0.02116813138127327, -0.0011090593179687858, 0.015857812017202377, -0.012251769192516804, 0.010942474938929081, -0.010423146188259125, 0.006016166880726814, 0.01695498451590538, -0.018081417307257652, 0.015492087230086327, -0.01062795240432024, -0.013005160726606846, 0.035577673465013504, 0.002527155913412571, -0.012814984656870365, 0.0037157603073865175, -0.011088765226304531, 0.018447140231728554, -0.02198735438287258, 0.004801962058991194, 0.015214136801660061, -0.003924223128706217, 0.011256998404860497, -0.00260212947614491, -0.024693714454770088, 0.006231944542378187, -0.00885053165256977, -0.006751273293048143, 0.0008681383915245533, 0.008660354651510715, -0.00512745650485158, 0.035285092890262604, 0.003655415726825595, -0.007336432114243507, 0.00271916133351624, -0.013136821798980236, 0.02132904902100563, 0.00744249252602458, 0.015067847445607185, 0.008828587830066681, -0.002353436779230833, 0.013839012943208218, -0.00543100805953145, 0.022089757025241852, 0.036777250468730927, -0.02116813138127327, -0.011344771832227707, 0.026610109955072403, 0.0012782069388777018, 0.009757528081536293, -0.00036503872252069414, -0.03952749818563461, -6.611612479900941e-05, 0.026478448882699013, -0.011469118297100067, -0.00836777500808239, -0.004161944147199392, 0.015653006732463837, -0.04690050333738327, 0.006751273293048143, 0.008755442686378956, 0.0145412040874362, -0.0018267935374751687, 0.015638377517461777, 0.008923676796257496, 0.010320743545889854, 0.053542058914899826, 0.02481074631214142, 0.005782103631645441, -0.0008676812285557389, 0.02584940381348133, 0.0050725978799164295, -0.02109498530626297, 0.005771131720393896, -0.003134258557111025, 0.009486892260611057, 0.003935195039957762, 0.013268482871353626, 0.02058297209441662, -0.027400074526667595, 0.006085654720664024, -0.007665584329515696, 0.023406364023685455, -0.027063608169555664, -0.00018114788690581918, 0.003346378682181239, -0.003201917512342334, 0.010459719225764275, -0.015184879302978516, -0.024064667522907257, 0.018183819949626923, 0.009991591796278954, 0.00408514216542244, -0.0125370342284441, -0.02936035767197609, -0.01261017844080925, -0.027941348031163216, -0.006272174417972565, 0.01274183951318264, 0.002574700163677335, -0.0034469529055058956, 0.00363530102185905, -0.019851522520184517, -0.015916327014565468, -0.0038803364150226116, -0.015360426157712936, 0.03467067703604698, 0.005840619560331106, -0.03519732132554054, 0.018988413736224174, -0.015813924372196198, 0.013085620477795601, 0.022908978164196014, -0.026507707312703133, -0.004315548576414585, -0.01743774116039276, 0.021065728738904, -0.007076767738908529, 0.002161431359127164, 0.0063380044884979725, -0.01082544308155775, -0.00013177508662920445, -0.012010390870273113, 0.015535973943769932, 0.0414000079035759, -0.012939331121742725, -0.030867142602801323, -0.0031562019139528275, -0.0042131454683840275, -0.023815976455807686, 0.005460266023874283, -0.03920565918087959, -0.00625388789921999, -0.009069966152310371, 0.0014592405641451478, -0.008792015723884106, -0.011600779369473457, -0.01252971962094307, -0.011608093976974487, -0.007665584329515696, -0.009647810831665993, -0.003662730334326625, 0.003851078450679779, -0.0414000079035759, 0.029301842674613, 0.0006807046011090279, -0.0003563527425285429, -0.011988447047770023, -0.03253484517335892, 0.024591311812400818, -0.0017097617965191603, -0.011103394441306591, 0.02567385509610176, -0.023889120668172836, 0.022162901237607002, -0.018827494233846664, 0.008872474543750286, -0.006089312024414539, 0.003785247914493084, -2.5343560992041603e-05, 0.01463629212230444, -0.019193219020962715, 0.018417883664369583, -0.007936220616102219, 0.007658269722014666, 0.00019406253704801202, 0.002219947287812829, 0.023523395881056786, 0.0009280257509090006, 0.007577810436487198, 0.003414037637412548, -0.00838971883058548, -0.0016978756757453084, 0.0034963255748152733, 0.004911679308861494, -0.013553747907280922, 0.006795160006731749, -0.019383395090699196, -0.0025472708512097597, 0.009903817437589169, 0.008331202901899815, -0.011973817832767963, -0.018768979236483574, 0.01657463237643242, -0.01040120329707861, 0.036104317754507065, -0.02524961531162262, 0.004143658094108105, -0.017891239374876022, 0.022367706522345543, -0.0011520319385454059, 0.0219434667378664, -0.022967495024204254, 0.02068537473678589, -0.03013569489121437, 0.0034396382980048656, 0.009099224582314491, -0.0008759100455790758, -0.07981570065021515, -9.474549005972221e-05, 0.018432511016726494, -0.00847749225795269, 0.013356256298720837, 0.013765867799520493, -0.013700037263333797, -0.012712582014501095, 0.024020781740546227, 0.022426223382353783, -0.004900707397609949, 0.031071947887539864, -0.01726219430565834, -0.012566291727125645, -0.01667703501880169, -0.004315548576414585, 0.0014894127380102873, 0.013224596157670021, 0.022294562309980392, -0.005398092791438103, 0.007106025703251362, 0.0013065505772829056, 0.008989506401121616, 0.015565232373774052, -0.00858720950782299, -0.003649930004030466, 0.005690672434866428, 7.83450304879807e-05, -0.009464948438107967, 0.0068134465254843235, -0.023625798523426056, 0.027692655101418495, -0.009720955975353718, -0.00265698810108006, 0.015945585444569588, 0.011542263440787792, -0.01099367719143629, 0.036192089319229126, -0.011096079833805561, 0.011988447047770023, 0.0033024917356669903, -0.0027173326816409826, 0.0037559899501502514, -0.006630584131926298, 0.002424753038212657, -0.0336759053170681, -0.003148887539282441, 0.018886011093854904, 0.010093994438648224, 0.027414703741669655, -0.00630874652415514, -0.0006587611278519034, 0.010072051547467709, -0.011842157691717148, -0.004121714271605015, -0.030750110745429993, 0.009472263045608997, 0.011395974084734917, 0.008550637401640415, 0.0035146118607372046, -0.01039388868957758, 0.009801414795219898, -0.0327981673181057, 0.018198449164628983, 0.005975937470793724, 0.02947738952934742, -0.019515056163072586, -0.001734448131173849, 0.0024192670825868845, -0.008784701116383076, 0.011578835546970367, 0.008214171044528484, -0.022967495024204254, 0.022616399452090263, -0.003479868173599243, -0.011783641763031483, -0.016004102304577827, -0.022455479949712753, -0.0002717789902817458, -0.007548552472144365, 0.006871962454169989, 0.005489523988217115, 0.009362545795738697, -0.010130567476153374, 0.02169477380812168, -0.013188023120164871, -0.00860183872282505, 0.007043852936476469, -0.013005160726606846, 0.03496325761079788, 0.007892333902418613, -0.012434630654752254, -0.03867901861667633, 0.022411594167351723, -0.004524011164903641, 0.005379806738346815, 0.0032659191638231277, -0.040083397179841995, -0.004041254986077547, -0.026244385167956352, -0.03458290174603462, 0.006220972631126642, -0.0030483133159577847, -0.015726150944828987, 0.03007717803120613, 0.005094541702419519, -0.005529753398150206, -0.011798270046710968, -0.0035822708159685135, 0.0012791212648153305, -0.01085470151156187, 0.004224117379635572, -0.00021897751139476895, 0.027063608169555664, 0.004604470916092396, -0.007629011757671833, -0.011132651939988136, 0.003681016620248556, -0.0017061044927686453, -0.0013988959835842252, 0.027678025886416435, 0.03750870004296303, -0.00375233287923038, -0.00016914754814933985, 0.008982192724943161, -0.011008305475115776, -0.005496838595718145, 0.006901220418512821, 0.0034999828785657883, -0.00043406919576227665, 0.007091396953910589, -0.013934100978076458, -0.007234029471874237, -0.011249683797359467, -0.01070841122418642, 0.005303004290908575, -0.006045424845069647, -0.01679406687617302, -0.0036993026733398438, 0.035636190325021744, -0.017935127019882202, 0.024620570242404938, -0.0054712374694645405, 0.02084629237651825, -0.010101309046149254, 0.012207881547510624, -0.00020983439753763378, -0.022060498595237732, 0.007329117972403765, -0.00513477111235261, 0.023523395881056786, 0.0022930921986699104, 0.006776873953640461, 0.02109498530626297, 0.019529685378074646, -0.05605824291706085, -0.012705267407000065, -0.0014638120774179697, 0.005094541702419519, -0.005401750095188618, -0.019778378307819366, -0.01708664558827877, -0.026332160457968712, 0.007047509774565697, 0.00825074315071106, -4.260118294041604e-05, 0.03256410360336304, 0.014131592586636543, 0.009837987832725048, -0.02892148867249489, 0.007519294507801533, -0.03826940432190895, -0.00858720950782299, 0.0013166080461815, -0.01717441901564598, -0.00024983551702462137, 0.0070036230608820915, -0.013217281550168991, 0.03879604861140251, -0.0008818530477583408, 0.005800389684736729, -0.002558242529630661, -0.04251180961728096, -0.01638445444405079, 0.02124127559363842, -0.018549542874097824, -0.0019621115643531084, -0.003373807994648814, 0.009428376331925392, -0.0016494172159582376, 0.023508766666054726, -0.006619612220674753, -0.011703182011842728, -0.01666240580379963, -0.014914242550730705, -0.011059506796300411, 0.004531325772404671, -0.002755733672529459, 0.02109498530626297, -0.0037998768966645002, -0.0014135249657556415, 0.01261749304831028, -0.00032709480728954077, 0.013882899656891823, -0.002503383904695511, 0.0035420411732047796, 0.021065728738904, 0.04546686261892319, -0.021065728738904, -0.015316539444029331, -0.018125303089618683, -0.013334313407540321, -0.024474279955029488, -0.010810814797878265, 0.0015561574837192893, -0.0035456984769552946, -0.0010935161262750626, -0.0016494172159582376, -0.01759866066277027, 0.010211026296019554, 0.015462829731404781, 0.017935127019882202, 0.02516184188425541, 0.01082544308155775, -0.026771029457449913, 0.01645760051906109, 0.023377105593681335, 0.024254845455288887, 0.004161944147199392, -0.0023388077970594168, 0.0024448679760098457, -0.009757528081536293, 0.028190039098262787, 0.02911166474223137, -0.008696927689015865, -0.010584065690636635, 0.00033463785075582564, -0.020480569452047348, 0.03329555317759514, 0.039907850325107574, -0.01682332344353199, -0.010547492653131485, -0.002591157564893365, 0.0027630480471998453, -0.0005764731322415173, -0.022923607379198074, 0.008996821008622646, 0.009786786511540413, -0.010211026296019554, -0.03876679018139839, 0.0017509057652205229, -0.011769012548029423, -0.003393922932446003, 0.01262480765581131, -0.007958163507282734, 0.0006391034694388509, 0.01265406608581543, 0.00436674989759922, -0.004586184397339821, 0.03417329117655754, 0.005577297881245613, -0.02185569331049919, 0.02524961531162262, 0.010028163902461529, 0.019983183592557907, 0.0019529685378074646, -0.0011191167868673801, 0.026595480740070343, 0.013348941691219807, -0.019207848235964775, 0.02463519759476185, 0.031715624034404755, 0.001261749304831028, 0.027209898456931114, -0.02162162959575653, -0.023260073736310005, -0.005997880827635527, 0.000624931650236249, -0.01466555055230856, 0.01299053244292736, 0.03502177074551582, 0.020480569452047348, 0.011747068725526333, -0.010891273617744446, 0.005701643880456686, -0.011812899261713028, 0.00442160852253437, -0.02170940302312374, -0.018783606588840485, -0.014365656301379204, 0.0003572670684661716, -0.011227739974856377, -0.001722562126815319, 0.008031308650970459, -0.02182643488049507, -0.018886011093854904, -0.009033394046127796, 0.012697952799499035, -0.003942509647458792, -0.018154561519622803, 0.019661346450448036, -0.0214314516633749, -0.004856820683926344, -0.011330143548548222, 0.013348941691219807, 0.02067074552178383, 0.02148996852338314, 0.018637318164110184, 0.00625388789921999, 0.005727244541049004, -0.019076187163591385, -0.0024192670825868845, -0.01082544308155775, -0.011922616511583328, -0.0075997537933290005, -0.017920497804880142, 0.0059539941139519215, 0.00852137990295887, 0.044940218329429626, -0.004527668468654156, -0.019398024305701256, 0.006860990542918444, -0.004450866486877203, -0.01748162880539894, -0.02062685787677765, 0.009260143153369427, 0.014036504551768303, 0.01059869397431612, 0.007848446257412434, -0.003960795700550079, 0.004183887504041195, 0.008031308650970459, -0.03429032489657402, 0.02552756667137146, 0.004264346789568663, 0.015770038589835167, 0.008660354651510715, 0.018637318164110184, 0.01028417143970728, -0.005990566220134497, -0.026610109955072403, 0.017861980944871902, -0.007420549169182777, 0.02198735438287258, -0.0031671735923737288, 0.0015278138453140855, 0.008879789151251316, -0.00041646871250122786, 0.008097139187157154, 0.0016384455375373363, -0.020451311022043228, 0.0029422531370073557, -0.01770106330513954, 0.014190108515322208, -0.011871415190398693, 0.010913217440247536, 0.0006994479917921126, 0.0018624516669660807, 0.008653040044009686, -0.008104453794658184, 0.022236045449972153, 0.01641371287405491, -0.0012334056664258242, -0.0088578462600708, 0.005098198540508747, -0.0008027651347219944, 0.0005933879292570055, -0.008111768402159214, -0.020056327804923058, 0.0020645144395530224, 0.0018167361849918962, -0.014212051406502724, 0.02122664637863636, 0.009457633830606937, 0.02508869767189026, -0.010949789546430111, -0.0005554439849220216, -0.008119083009660244, -0.014380285516381264, 0.0030775712803006172, -0.00620634388178587, -0.027180640026926994, -0.018491027876734734, -0.02181180566549301, -0.008689613081514835, -0.04142926633358002, 0.011959189549088478, 0.009384489618241787, 0.0022400622256100178, 0.015331168659031391, 0.012046962976455688, -0.00825805775821209, -0.0016475885640829802, 0.018227705731987953, 0.0010715726530179381, 0.008777386508882046, 0.022075127810239792, -0.012068906798958778, -0.004494753200560808, -0.0037194176111370325, 0.0026716170832514763, -0.019968554377555847, 0.00840434804558754, -0.0014756980817764997, 0.012705267407000065, -0.03835717961192131, -0.004582527093589306, -0.02599569410085678, 0.01739385537803173, -0.007760672830045223, 0.01052554976195097, -0.004081484861671925, 0.011666609905660152, 0.001967597519978881, -0.010591380298137665, 0.0040193116292357445, 0.005891820881515741, -0.0069341352209448814, -0.003887650789692998, 0.014343712478876114, -0.0006546467775478959, 0.028424102813005447, 0.004922651220113039, -0.028804456815123558, 0.015418942086398602, 0.003335407003760338, -0.02944813296198845, -0.009267457760870457, 0.02096332423388958, 0.001766449073329568, 0.023538025096058846, -0.012149365618824959, -0.027765799313783646, 0.003924223128706217, 0.01644297130405903, -0.02042205259203911, -0.023903749883174896, -0.019705232232809067, -0.013809754513204098, -0.006765902042388916, -0.0020151417702436447, 0.006078340113162994, 0.010766927152872086, -0.009223570115864277, -0.014329083263874054, -0.007585125043988228, -0.010547492653131485, 0.0005805875407531857, -0.01644297130405903, -0.02061222866177559, 0.0048787640407681465, -0.0015762723051011562, 0.009545408189296722, -0.004944594576954842, -0.01237611472606659, 0.0077972449362277985, 0.02113887295126915, -0.013173394836485386, 0.0032549474854022264, 0.011593464761972427, 0.002165088662877679, 0.01752551458775997, -0.005207916256040335, 0.011205797083675861, -0.02936035767197609, -0.030633078888058662, 0.003670044708997011, -0.00733277527615428, 0.023742830380797386, -0.0030336843337863684, -0.005679700523614883, -0.0027173326816409826, 0.0059320502914488316, -0.0011556892422959208, -0.012112793512642384, 0.027443962171673775, 0.0020279421005398035, -0.0002217204455519095, 0.019032299518585205, 0.005602898541837931, -0.008221485652029514, 0.002598472172394395, 0.005771131720393896, 0.014490002766251564, 0.026844173669815063, 0.024605941027402878, 0.03434883803129196, -0.00816296972334385, -0.015653006732463837, -0.0054712374694645405, -0.0023113784845918417, -0.02608346752822399, 0.0012635779567062855, -0.0025472708512097597, 0.018110673874616623, -0.003986396361142397, -0.022192159667611122, -0.020158730447292328, -0.005489523988217115, 0.0034981542266905308, 0.014592405408620834, 0.007928906008601189, 0.014402228407561779, -0.023318590596318245, -0.00532129080966115, -0.007928906008601189, -0.010949789546430111, 0.02603957988321781, -0.007965478114783764, 0.02146071009337902, 0.009933075867593288, 0.01713053323328495, 0.002823392627760768, -0.008455549366772175, 0.013985302299261093, -0.0020754861179739237, 0.014416857622563839, -0.014950815588235855, 0.0018523943144828081, 0.012171309441328049, -0.0126467514783144, 0.012902758084237576, -0.019149331375956535, -0.009823358617722988, 8.760243508731946e-05, -0.009377175010740757, -0.00430457666516304, 0.004644700326025486, -0.045057252049446106, -0.018842123448848724, -0.0106425816193223, 0.005855248309671879, -0.027517106384038925, -0.005862562917172909, 0.005610213149338961, 0.005771131720393896, 0.013970674015581608, 0.006517209578305483, 0.018915267661213875, -0.0012800355907529593, 0.0023589227348566055, 0.006839047186076641, -0.0341147743165493, 0.014168164692819118, 0.00536883482709527, 0.0174231119453907, 0.026434563100337982, 0.010123252868652344, 0.02574700117111206, 0.02568848431110382, -0.01642834208905697, 0.006930478382855654, 0.008060567080974579, 0.006784188561141491, 0.011008305475115776, -0.013070991262793541, 0.022835833951830864, -0.00731814606115222, 0.011256998404860497, 0.014116963371634483, -0.020129473879933357, 0.008236114867031574, -0.002053542761132121, -0.01285155676305294, -0.0030940286815166473, 0.001237977179698646, 0.002827049931511283, -2.2429194359574467e-05, 0.019515056163072586, 0.0034963255748152733, -0.019266363233327866, 0.013970674015581608, 0.02159237116575241, 0.02064148709177971, 0.003942509647458792, 0.006656184792518616, 0.018988413736224174, 0.0022071469575166702, 0.010357316583395004, 0.01723293587565422, -0.011688552796840668, -0.013209966942667961, 0.026522336527705193, 0.011922616511583328, -0.022835833951830864, -0.005910106934607029, 0.00012091764074284583, 0.012588235549628735, -0.009618552401661873, 0.018622688949108124, 0.012566291727125645, 0.011988447047770023, 0.0037377038970589638, -0.005756502505391836, -0.0024265816900879145, -0.03227152302861214, 0.005760159809142351, 0.015770038589835167, 0.019193219020962715, -0.002046228153631091, -0.00531397620216012, -0.0326518788933754, 0.0040156543254852295, -0.013963359408080578, 0.0011447174474596977, -0.011096079833805561, -0.011052192188799381, -0.00108803017064929, 0.015755409374833107, 0.0010478005278855562, 0.011132651939988136, 0.0013742096489295363, -0.004600813612341881, 0.028980005532503128, 0.004432580433785915, 0.005522439256310463, 0.008075195364654064, 0.02170940302312374, -0.011900673620402813, 0.0028124209493398666, -0.015623748302459717, -0.014555832371115685, 0.007219400722533464, 0.009845302440226078, 0.01704275980591774, 0.01664777658879757, -0.005420036148279905, 0.026683256030082703, 0.005573640577495098, -0.00215228833258152, 0.011812899261713028, -0.011995761655271053, 0.004648357629776001, -0.013370885513722897, 0.0008105367887765169, 0.006981679704040289, -0.013663465157151222, 0.018944526091217995, -0.001249863300472498, -0.0010267713805660605, -0.0024704686366021633, 0.018871381878852844, -0.007899647578597069, 0.0412537157535553, 0.019061557948589325, 0.018900638446211815, 0.01097904797643423, -0.0149800730869174, 0.009918446652591228, -0.00512745650485158, -0.0035859281197190285, -0.014270567335188389, 0.011630036868155003, 0.00407051295042038, -0.00418754480779171, -0.017847353592514992, 0.00732546066865325, -0.010211026296019554, -0.007650955114513636, -0.0005659585585817695, -0.010225655511021614, -0.006458693649619818, 0.0348462238907814, 0.012346857227385044, 0.018198449164628983, 0.009421061724424362, 0.016018729656934738, 0.010474348440766335, 0.024327989667654037, -0.01073035504668951, 0.01733533851802349, 0.010350001975893974, -0.018886011093854904, -0.0009399118134751916, -0.0023004068061709404, 0.011278942227363586, -0.0069999657571315765, 0.022177530452609062, 0.0050725978799164295, 0.01736459694802761, -0.01699887216091156, -0.01075961347669363, -0.015755409374833107, 0.014241309836506844, -0.019997812807559967, 0.007680213078856468, -0.023552654311060905, -0.019880780950188637, -0.003297005780041218, -0.035606931895017624, -0.02096332423388958, 0.007950849831104279, -0.01084738690406084, 0.024123184382915497, -0.015170250087976456, -0.008002051152288914, 0.012302970513701439, 0.0034963255748152733, 0.039907850325107574, -0.010225655511021614, -0.01729145087301731, -0.008199541829526424, 0.008426290936768055, 0.012046962976455688, 0.006908534560352564, 0.00817028433084488, 0.01062795240432024, 0.004827562719583511, -0.024327989667654037, -0.010532864369452, -0.005010424647480249, -0.0006276745698414743, 0.0066086407750844955, 0.002196175279095769, -0.00813371129333973, -0.0059393648989498615, -0.003468896262347698, -0.005906449630856514, 0.0029075092170387506, -0.001789306872524321, 0.007186485454440117, 0.009852616116404533, -0.01715979166328907, -0.031861912459135056, -0.013041733764111996, 0.02141682244837284, 0.031920429319143295, -0.0065428102388978004, 0.0006747615989297628, 0.013648835942149162, -0.023991523310542107, -0.00430457666516304, -0.01740848273038864, -0.004567898344248533, 0.024576682597398758, -0.023962264880537987, 0.0072706020437181, 0.010905902832746506, 0.011044878512620926, 0.01027685683220625, -0.005094541702419519, -0.017671804875135422, 0.008038623258471489, -0.005825990345329046, 0.02567385509610176, 9.560265607433394e-05, 0.003655415726825595, 0.018081417307257652, -0.007424206007272005, -0.015331168659031391, 0.00542369345203042, -0.006008852738887072, -0.019061557948589325, 0.006290460471063852, 0.026346789672970772, -0.018725091591477394, 0.00045692696585319936, 0.0027429333422333, -0.015711521729826927, -0.0010615151841193438, -0.0048714494332671165, 0.007526609115302563, 0.02083166502416134, 0.023391734808683395, 0.02113887295126915, 0.0015342140104621649, -0.011871415190398693, -0.0020791434217244387, 0.00036023856955580413, 0.02538127638399601, 0.023786718025803566, 0.004805619362741709, -0.014687493443489075, -0.0032311754766851664, -0.011169224046170712, 0.018169190734624863, 0.010350001975893974, -0.027941348031163216, 0.0007204771391116083, 0.00079042196739465, -0.009699012152850628, 0.011256998404860497, -0.006118569988757372, 0.011659295298159122, -0.002503383904695511, 0.009589294902980328, -0.0028563078958541155, -0.00636360514909029, -0.018403254449367523, 0.01060600858181715, 0.014826469123363495, -0.005229859612882137, -0.001553414622321725, 0.012207881547510624, -0.011988447047770023, 0.008228800259530544, 0.013422086834907532, -0.024415763095021248, -0.018900638446211815, -0.0037779335398226976, -0.00040526839438825846, 0.010064736939966679, 0.030984174460172653, -3.0200839319149964e-05, -0.01644297130405903, 0.005774789024144411, 0.012017705477774143, -0.0017243907786905766, 0.008916362188756466, -0.004959223326295614, 0.012251769192516804, -0.026156611740589142, 0.0016027874080464244, -0.001190433045849204, -0.01660388894379139, 0.011074136011302471, 0.003829134861007333, 0.009684382937848568, 0.00520425895228982, -0.007753358222544193, 0.013721981085836887, 0.0013358085416257381, 0.008331202901899815, 0.0033335783518850803, 0.003243975806981325, 0.027517106384038925, 0.009969647973775864, -0.0057528456673026085, 0.011271627619862556, 0.001758220256306231, -0.017803465947508812, 0.027517106384038925, 0.004842191468924284, 0.011278942227363586, 0.009816044010221958, 0.02100721187889576, 0.0017006186535581946, -0.0016183305997401476, 0.019076187163591385, -0.013356256298720837, 0.012251769192516804, 0.02093406766653061, 0.00836046040058136, -0.006038110703229904, 0.023494137451052666, -0.014446115121245384, 0.007563181687146425, 0.01273452490568161, 0.00749735115095973, 0.018066788092255592, -0.0034030659589916468, 0.011483747512102127, -0.0037157603073865175, 0.009786786511540413, 0.0012398058315739036, -0.002848993521183729, 0.035899512469768524, -0.014914242550730705, 0.017861980944871902, 0.0009837987599894404, -0.006001538131386042, -0.012471203692257404, 0.0007584210834465921, 0.004044912289828062, 0.0010587722063064575, -0.0013531803851947188, -0.012112793512642384, 0.030896401032805443, -0.019573573023080826, 0.0018304508412256837, 0.02135830745100975, 0.0003188659902662039, 0.005924736149609089, -0.006049082148820162, -0.003840106539428234, -0.0024576683063060045, 0.01037194486707449, 0.030867142602801323, -0.005683357827365398, -0.00858720950782299, -0.00649526622146368, 0.01745237037539482, -0.027663396671414375, -0.005010424647480249, 0.019602829590439796, 0.0003003512101713568, -0.0038583928253501654, 0.008323888294398785, 0.0019145674305036664, -0.011966504156589508, -0.005383463576436043, 0.004227774683386087, 0.00408514216542244, 0.005427350755780935, -0.01702813059091568, -0.0003691531019285321, 0.005760159809142351, 0.0003693816834129393, 0.005635813809931278, 0.0026387018151581287, -0.02197272516787052, -0.007863075472414494, -0.0040156543254852295, 0.010167139582335949, -0.002503383904695511, 0.015067847445607185, 0.012866185978055, -0.01691109873354435, -1.003599322757509e-06, -0.02151922695338726, -0.00212120171636343, -0.010423146188259125, -0.003461581887677312, -0.014351027086377144, -0.0043192058801651, 0.005145743023604155, -0.01770106330513954, -0.014146221801638603, 0.0023954950738698244, 0.005895478185266256, 0.011681239120662212, -0.0007863075588829815, 0.00871887058019638, -0.01486304122954607, -0.0016457600286230445, -0.013634207658469677, -0.009618552401661873, -0.012595550157129765, -0.013451345264911652, 0.003571299137547612, 0.015872441232204437, -0.0014144392916932702, -0.001746334251947701, -0.023040639236569405, 0.028833715245127678, -0.006674470845609903, 0.02141682244837284, -0.0022034896537661552, -0.011352086439728737, -0.018944526091217995, 2.1393450424511684e-06, 0.004154629539698362, -0.005815018434077501, -0.018183819949626923, 0.006915849167853594, 0.026376046240329742, 0.015887070447206497, -0.008214171044528484, -0.002057200064882636, 0.022148272022604942, -0.012558977119624615, -0.008301944471895695, 0.023815976455807686, -0.01038657408207655, -0.026171240955591202, -0.0016229022294282913, 0.009720955975353718, -0.026946576312184334, 0.0021029154304414988, -0.014182793907821178, -0.001982226502150297, -0.0012114621931686997, -0.0027849916368722916, -0.0007968221325427294, -0.018256964161992073, 0.005164029076695442, 0.0027337903156876564, 0.02053908444941044, -0.02056834287941456, -0.0027173326816409826, -0.022821204736828804, 0.02590791881084442, -0.011849472299218178, 0.012463889084756374, 0.015945585444569588, -0.022616399452090263, 0.018856752663850784, 0.009955019690096378, 0.013524489477276802, -0.018227705731987953, -0.014080391265451908, -0.00738763390108943, 0.020334279164671898, -0.009720955975353718, 0.019398024305701256, -0.010320743545889854, 0.018330108374357224, 0.007124312222003937, 0.0009508835501037538, 0.016194278374314308, -0.02596643567085266, 0.020129473879933357, 0.010181768797338009, -0.0016695320373401046, -0.01773032173514366, -0.007928906008601189, 0.009421061724424362, -0.049241140484809875, -0.001829536515288055, 0.010225655511021614, -0.00636360514909029, -0.02039279416203499, -1.5514717233600095e-05, -0.013751238584518433, -0.011461803689599037, -0.019822264090180397, 0.01631131023168564, -0.006656184792518616, -0.018198449164628983, -0.002192517975345254, -0.008455549366772175, -0.006239259149879217, -0.010576751083135605, 0.00425703264772892, -0.010189083404839039, -0.0009266543202102184, -0.02889223024249077, 0.0019145674305036664, -0.015155620872974396, -0.0070182522758841515, 0.0072120861150324345, 0.01277109794318676, 0.019588200375437737, -0.013773182407021523, 0.01249314658343792, -0.0018907954217866063, -0.004845848772674799, -0.0008603667374700308, 0.0005792161100544035, 0.02064148709177971, -0.0036901596467942, 0.003000769065693021, -0.0004182973352726549, -0.006403835024684668, 0.020495198667049408, -0.0030025977175682783, 0.011783641763031483, 0.007563181687146425, -0.001505870372056961, 0.013326998800039291, -0.011476432904601097, 0.013305054977536201, -0.005409064702689648, -0.013195337727665901, -0.0010167139116674662, 0.026697883382439613, 0.00024114955158438534, 0.00046172711881808937, 0.015989473089575768, 0.006641556043177843, 0.0032951771281659603, 0.011951874941587448, -0.0032677478156983852, -0.016106504946947098, 0.004801962058991194, -0.014138907194137573, -0.017935127019882202, -0.01048166211694479, -0.03332481160759926, -0.020027071237564087, -0.010949789546430111, 0.011015620082616806, 0.011710496619343758, -0.0050689405761659145, -0.0107522988691926, 0.015609119087457657, 0.0020791434217244387, 0.022426223382353783, -0.022821204736828804, 0.0036023857537657022, 0.018315479159355164, -0.005006767809391022, -0.006681785453110933, -0.0029312814585864544, 0.01695498451590538, 0.0040119970217347145, 0.0011227740906178951, -0.007950849831104279, 0.011286255903542042, 0.013985302299261093, 0.0037194176111370325, 0.027985233813524246, 0.003792562521994114, 0.0033536930568516254, 0.01634056866168976, -0.00871887058019638, 0.0021943466272205114, 0.02524961531162262, 0.020100215449929237, -0.01651611551642418, -0.0247814878821373, -0.01677943766117096, -0.0011026591528207064, -0.01758403144776821, 0.0037559899501502514, 0.0072706020437181, -0.00749735115095973, 0.017671804875135422, -0.0024393820203840733, -0.0007703070878051221, -0.0338221974670887, 0.00514940032735467, -0.014438801445066929, -0.0042862906120717525, 0.03759647160768509, 0.0059393648989498615, 0.013524489477276802, 0.02580551616847515, 0.02519110031425953, 0.010686468333005905, -0.013041733764111996, -0.0018981099128723145, 0.02956516481935978, -0.006381891667842865, 0.0011931760236620903, 0.010913217440247536, 0.0021669173147529364, 0.013239224441349506, 0.018988413736224174, 0.007471750490367413, 0.0129759032279253, 0.014680178835988045, 0.014138907194137573, 0.006674470845609903, 0.00744249252602458, 0.03671873360872269, 0.004337491933256388, -0.009128482080996037, 0.026683256030082703, -0.011688552796840668, -0.027443962171673775, -0.0030446560122072697, 0.013773182407021523, 0.02549830824136734, -0.00017463341646362096, 0.013158765621483326, 0.0006153314025141299, 0.023903749883174896, -0.03715760260820389, 0.011520319618284702, 0.01667703501880169, -0.008206856437027454, 0.005928392987698317, 0.009230884723365307, 0.009633181616663933, -0.01672092080116272, -0.006045424845069647, 0.009735584259033203, -0.005796732380986214, -0.003445124253630638, -0.027765799313783646, 0.006096626631915569, -0.0006112169940024614, -0.011417916975915432, 0.005515124648809433, 0.007383976597338915, 0.03300297260284424, -0.00638554897159338, 0.022323820739984512, -0.036367639899253845, -0.005112827755510807, -0.013041733764111996, -0.0042862906120717525, 0.011571520939469337, 0.005357862915843725, 0.009516149759292603, -0.02567385509610176, 0.002953224815428257, -0.015755409374833107, 0.012441945262253284, 0.003953481093049049, 0.018037529662251472, 0.014468058943748474, -0.005233516916632652, -0.0028325358871370554, -0.015887070447206497, 0.017876610159873962, -0.009808729402720928, -0.0021852036006748676, 0.013890214264392853, 0.011147281154990196, -0.013231910765171051, 0.018739720806479454, -0.019910039380192757, -0.007116997614502907, -5.977308683213778e-05, 0.0008512236527167261, -0.011118022724986076, 0.006839047186076641, -0.023157671093940735, 0.0008992249495349824, -0.0023150357883423567, 0.010196397081017494, 0.007629011757671833, -0.0012123765191063285, 0.01073766965419054, -0.0326518788933754, 0.02147533930838108, -0.003256776137277484, -0.003938852343708277, 0.014299825765192509, 0.007245001383125782, -0.019178589805960655, -0.0007085911347530782, -0.0005673300474882126, -0.0006674471078440547, 0.019163960590958595, 0.006941449828445911, 0.011147281154990196, -0.002693560440093279, 0.01451194565743208, 0.0250009223818779, 0.02096332423388958, 0.01734996773302555, 0.028029121458530426, -0.005324948113411665, 0.0023369791451841593, 0.005021396558731794, 0.0011611750815063715, 0.022733431309461594, -0.010474348440766335, -0.02488389052450657, -0.016004102304577827, 0.011878729797899723, -0.049153365194797516, -0.003975424915552139, -0.0007296202820725739, -0.01073766965419054, 0.006180743221193552, -0.012902758084237576, 0.013977988623082638, -0.01466555055230856, 0.003335407003760338, -0.017671804875135422, 0.023143041878938675, -0.00375233287923038, -0.019778378307819366, 0.0040083397179841995, -0.023698944598436356, -0.005365177523344755, 0.01272721029818058, -0.006700071971863508, 0.013414772227406502, 0.003843763843178749, -0.006743958685547113, -0.02090480923652649, -0.0026387018151581287, -0.009282086044549942, 0.009976962581276894, -0.02062685787677765, 0.01726219430565834, 0.010350001975893974, -0.017818095162510872, -0.005178658291697502, -0.003042827360332012, 0.007738729007542133, -0.01049629133194685, 0.004790990147739649, 0.007548552472144365, -0.0016786751803010702, 0.0162527933716774, -0.02621512860059738, -0.007420549169182777, 0.0037742762360721827, 0.002803277922794223, -0.020041698589920998, -0.0020443997345864773, 0.011593464761972427, 0.01714516244828701, 0.010576751083135605, 0.01252240501344204, -0.009252828545868397, 0.00032709480728954077, 0.0011639180593192577, 0.00836777500808239, 0.004545954987406731, -0.00420217402279377, -3.902965545421466e-05, 0.006374577060341835, -0.019558943808078766, 0.005833304952830076, -0.023567283526062965, -0.006257545202970505, -0.03405626118183136, 0.023245446383953094, -0.008045937865972519, 0.009560036472976208, 0.019617458805441856, -0.005339576862752438, 0.009172368794679642, -0.009033394046127796, 0.02618587017059326, 0.030545305460691452, 0.01688184030354023, -0.032447073608636856, 0.014431486837565899, -0.009889189153909683, -0.007182828150689602, -0.015755409374833107, -0.020290391519665718, 0.017964385449886322, 0.00011977475514868274, 0.024020781740546227, 0.006941449828445911, 0.004549612291157246, -0.008433605544269085, -0.007906962186098099, -0.015770038589835167, -0.017979012802243233, 7.680213457206264e-05, 0.01705738715827465, -0.016179649159312248, -0.0005129285273142159, -0.02988700196146965, 0.015989473089575768, 0.004918993916362524, -0.002947739092633128, 0.0037669618614017963, 0.0038693645037710667, -0.004790990147739649, -0.022323820739984512, -0.014694808050990105, 0.02147533930838108, -0.0029422531370073557, 0.0003696102648973465, -0.002360751386731863, -0.028497248888015747, 0.010196397081017494, 0.01626742258667946, -0.019222477450966835, -0.03663095831871033, 0.005489523988217115, -0.008536008186638355, 0.04672495648264885, 0.013604949228465557, 0.02169477380812168, 0.0070036230608820915, 0.012441945262253284, -0.004381378646939993, 0.013451345264911652, -0.02039279416203499, -0.0033134634140878916, -0.012793040834367275, 0.003134258557111025, 0.00884321704506874, -0.011103394441306591, -0.01650148630142212, -0.005774789024144411, -0.0036133574321866035, 0.006974365096539259, -0.00837508961558342, -0.006871962454169989, -0.02065611630678177, -0.009538093581795692, -0.001710676122456789, 0.028819086030125618, 0.0061405133455991745, 0.012317598797380924, -0.006359947845339775, 0.0019767405465245247, 0.0030263697262853384, 0.0010505435056984425, -0.0177156925201416, -0.012149365618824959, -0.01086933072656393, 0.010818129405379295, 0.0009357974049635231, -0.012588235549628735, -0.018739720806479454, -0.013568377122282982, 0.0004637843230739236, 0.009384489618241787, 0.023742830380797386, 0.004600813612341881, -0.01050360593944788, 0.00435943529009819, -5.9373076510382816e-05, 0.030837884172797203, 0.01704275980591774, 0.02519110031425953, -0.015989473089575768, -0.009245513938367367, -0.006776873953640461, 0.00212120171636343, -0.02103647030889988, 0.0329444594681263, -0.001123688300140202, -0.0011684895725920796, -0.0024302389938384295, 0.008462863974273205, -0.013261168263852596, 0.002390009118244052, -0.011798270046710968, -0.01708664558827877, -0.009794100187718868, 0.006634241435676813, 0.009728270582854748, 0.0024412106722593307, 0.015667635947465897, -0.013765867799520493, 0.0017262193141505122, -0.007687527686357498, 0.00010297428525518626, -0.006513552274554968, -0.007135283667594194, 0.0003131515404675156, -0.01473869476467371, -0.019105445593595505, 0.022250674664974213, 0.007138940971344709, -0.005679700523614883, 0.010123252868652344, 0.02173866145312786, 0.006692757364362478, -0.00110723078250885, 0.011564207263290882, -0.00814102590084076, -0.023494137451052666, -0.009625867009162903, -0.0035091261379420757, -0.0163259394466877, -0.002267491538077593, 0.0072047715075314045, 0.0006624183733947575, -0.005266432184726, -0.011044878512620926, -0.014482688158750534, -0.00847017765045166, -0.0013156937202438712, -0.0072120861150324345, -0.019120072945952415, -0.011695867404341698, 0.01489229965955019, 0.006462350953370333, -0.0034085519146174192, 0.009786786511540413, 0.010357316583395004, 0.010320743545889854, -0.005303004290908575, -0.005218887701630592, 0.0035456984769552946, 0.008053252473473549, -0.003595071379095316, 0.01277109794318676, 0.03303223103284836, 0.007131626829504967, 0.013027104549109936, -0.01669166423380375, 0.02984311431646347, 0.01648685708642006, -0.007131626829504967, -0.002155945636332035, -0.019324880093336105, -0.003924223128706217, 0.00824342854321003, 0.01647222973406315, 0.0172768235206604, -0.0021047440823167562, -0.007084082346409559, -0.008104453794658184, 0.0009655125322751701, 0.008075195364654064, 0.0007241343846544623, -0.004271661397069693, 0.002693560440093279, 0.02466445602476597, -0.023303961381316185, 0.002459496958181262, -0.022396964952349663, -0.0037121030036360025, 0.014841098338365555, 0.012471203692257404, -0.0007191057084128261, 0.006429435685276985, -0.0036901596467942, -0.028936117887496948, -0.009889189153909683, 0.020100215449929237, 0.02508869767189026, 0.005445636808872223, -0.0070182522758841515, 0.019017670303583145, 0.010686468333005905, -0.006023481488227844, 0.0012480346485972404, 0.013356256298720837, 0.005383463576436043, -0.009347916580736637, -0.009764842689037323, -0.026478448882699013, 0.009699012152850628, -0.007329117972403765, 0.015140991657972336, 0.010357316583395004, -0.00013177508662920445, -0.000540357839781791, 0.02936035767197609, -0.006071025971323252, -0.0028435075655579567, -0.0028764228336513042, -0.011578835546970367, -0.007219400722533464, 0.003792562521994114, -0.012346857227385044, -0.040522269904613495, 0.016194278374314308, 0.0013385514030233026, 0.014797210693359375, 0.030808627605438232, 0.013495231978595257, -0.013239224441349506, -0.02083166502416134, -0.01746699959039688, 0.008301944471895695, -0.027180640026926994, -0.002464982680976391, -0.010247599333524704, -0.0024192670825868845, -0.0055480399169027805, 0.013027104549109936, 0.005229859612882137, 0.027502477169036865, -0.00035703848698176444, 0.007175513543188572, 0.010693782940506935, 0.004586184397339821, -0.004121714271605015, 0.010028163902461529, 0.00431189127266407, 0.003646272700279951, -0.015360426157712936, -0.01745237037539482, -0.006754930596798658, 0.013473288156092167, -0.006403835024684668, -0.003086714306846261, 0.036016542464494705, -0.012566291727125645, -0.01051092054694891, 0.011871415190398693, 0.001411696313880384, -0.0007652784115634859, 0.007921591401100159, 0.0002294920850545168, -0.01647222973406315, -0.008938305079936981, -0.013553747907280922, 0.01263212226331234, 0.019354136660695076, 0.004908022005110979, -0.010057422332465649, 0.006027138791978359, 0.005324948113411665, 0.0048751067370176315, -0.010342687368392944, -0.0061551425606012344, -0.024167072027921677, 0.0027173326816409826, -0.017949756234884262, -0.010935161262750626, 0.0011922616977244616, 0.02141682244837284, -0.020378166809678078, 0.004322862718254328, -0.008455549366772175, -0.0013687236933037639, -0.006824417971074581, -0.03689428046345711, 0.007563181687146425, -0.01743774116039276, 0.010657209903001785, -0.005767474416643381, 0.02936035767197609, 0.005420036148279905, -0.01026222761720419, -0.009099224582314491, 0.01454851869493723, -0.014358341693878174, -0.02905314974486828, 0.00826537236571312, 0.027151383459568024, 0.01663314737379551, 0.0054822093807160854, -0.0018075930420309305, 0.014372970908880234, -0.0148703558370471, -0.005734559148550034, -0.000869052717462182, -0.028175411745905876, -0.0011639180593192577, -0.014416857622563839, -0.0025362989399582148, 0.0030208840034902096, -0.020085586234927177, 0.026332160457968712, -0.01070841122418642, -0.012068906798958778, 0.010905902832746506, 0.011169224046170712, 0.0008781958022154868, -0.007259630132466555, -0.0012827784521505237, -0.011769012548029423, -0.011820213869214058, 0.04526205733418465, -0.0015579861355945468, 0.001985883805900812, 0.0004576127103064209, 0.015843182802200317, -0.007358375936746597, -0.008448234759271145, -0.007347404025495052, 0.004765389487147331, -0.020056327804923058, -0.006180743221193552, -0.020173359662294388, 0.018183819949626923, 0.022133642807602882, -0.0027575623244047165, 0.01261749304831028, -0.01682332344353199, -0.01038657408207655, -0.009677068330347538, 0.011827528476715088, -0.009055336937308311, 0.007457121275365353, -0.01249314658343792, -0.0037194176111370325, 0.010891273617744446, 0.000796364969573915, 0.023347849026322365, 0.009384489618241787, 0.0010660866973921657, -0.013539118692278862, 0.004714188165962696, 0.00637091975659132, -0.0252935029566288, 0.011695867404341698, 0.0024412106722593307, -0.003971767611801624, 0.0016210735775530338, 0.008579895831644535, 0.0106425816193223, -0.002349779475480318, -0.01756940223276615, -0.01629668101668358, -0.0009527121437713504, 0.011651980690658092, -0.03332481160759926, -0.00324763311073184, 0.02524961531162262, 0.027721913531422615, 0.01288812980055809, 0.0009005964384414256, -0.004432580433785915, -0.020217247307300568, -0.020144103094935417, -0.007694842293858528, -0.008945619687438011, 0.015506716445088387, -0.00045646983198821545, -0.024196328595280647, -0.02542516402900219, -0.0015890727518126369, 0.0016768465284258127, -0.00038332492113113403, -0.002786820288747549, 0.0036974740214645863, -0.013063676655292511, 0.013400143943727016, -0.009121167473495007, 0.010891273617744446, 0.011059506796300411, 0.011527634225785732, 0.00836046040058136, -0.007120654918253422, -0.0034670676104724407, -0.00826537236571312, -0.014899613335728645, -0.00637091975659132, -0.02146071009337902, 0.0031799739226698875, -0.0018816522788256407, 0.0007456206949427724, 0.003189117182046175, -0.021065728738904, -0.013853642158210278, 0.0011556892422959208, -0.024532794952392578, -0.0009143110946752131, 2.1000583728891797e-05, -0.0026204155292361975, 0.012193253263831139, -0.014292511157691479, 0.0022656628862023354, -0.032095976173877716, -0.017759578302502632, 0.00815565511584282, 0.007080425042659044, 0.0073803192935884, -0.005050654523074627, -0.010430460795760155, 0.0025801858864724636, 0.004322862718254328, 0.0020645144395530224, 0.006725672632455826, -0.012566291727125645, -0.005390778183937073, -0.003339064074680209, -0.023026010021567345, -0.0250009223818779, -0.018213076516985893, 0.000577387458179146, 0.00836777500808239, -0.01274183951318264, 0.024093925952911377, -0.012814984656870365, 0.02039279416203499, 0.004758074879646301, 0.02182643488049507, 0.00212851632386446, 0.027590252459049225, 0.001892623957246542, 0.004586184397339821, -0.00815565511584282, -0.003051970386877656, 0.022660287097096443, -0.0025417848955839872, -0.002834364539012313, 0.022865092381834984, -0.0037669618614017963, 0.007548552472144365, -0.004849506076425314, 0.0027886489406228065, -0.007526609115302563, -0.001013056724332273, -0.0023863520473241806, 0.021065728738904, 0.005094541702419519, -0.004150972235947847, 0.0018149075331166387, -0.0018158218590542674, 0.009911132045090199, -0.018169190734624863, -0.014555832371115685, 0.014841098338365555, 0.018198449164628983, 0.0044289231300354, 0.030867142602801323, 0.007914276793599129, -0.004809276200830936, 0.017671804875135422, -0.005778446327894926, 0.0003956681175623089, -0.0018533086404204369, -0.006235601846128702, -0.009867245331406593, -0.000902425090316683, -0.008879789151251316, 0.004578869789838791, -0.018578801304101944, 0.024254845455288887, -0.001324836746789515, -0.002393666421994567, 0.006462350953370333, -0.003887650789692998, 0.00724865822121501, -0.0025875004939734936, 0.019851522520184517, -0.03253484517335892, -0.005719930399209261, 0.00636360514909029, -0.006436750292778015, 0.006513552274554968, 0.001971254823729396, -0.00016823323676362634, -0.012346857227385044, -0.009274771437048912, 0.005028711166232824, 0.013041733764111996, 0.0027484192978590727, 0.014372970908880234, -0.017891239374876022, -0.006648870185017586, 0.008550637401640415, 0.012142051942646503, 0.016121134161949158, -0.0044874390587210655, -0.018534915521740913, 0.019368765875697136, -0.004864135291427374, 0.00215228833258152, 0.005621184594929218, -0.0002948653418570757, -0.009033394046127796, 0.011988447047770023, 0.005427350755780935, -0.01026222761720419, -0.01677943766117096, 0.0007140769739635289, -0.0014720408944413066, -0.004911679308861494, -0.04652014747262001, -0.007526609115302563, 0.009925761260092258, 0.00518231512978673, -0.031598590314388275, 0.0028800799045711756], "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2": [-0.029087873175740242, -0.014676893129944801, -0.013221761211752892, 0.0011919897515326738, -0.042339179664850235, -0.032382234930992126, 0.00554723059758544, 0.0053588757291436195, -0.01731385849416256, 0.02489236555993557, 0.015526335686445236, 0.007829645648598671, -0.010126834735274315, -0.005916553549468517, -0.01124219037592411, -0.0013000167673453689, -0.017757046967744827, 0.009897854179143906, 0.04541194811463356, -0.02150936797261238, 0.058707572519779205, -0.00019885732035618275, -0.04056642949581146, 0.0004925844841636717, 0.016501348465681076, -0.026517385616898537, -0.013280852697789669, -0.0012400017585605383, -0.04588468000292778, 0.009469440206885338, 0.01013422105461359, 0.033268608152866364, -0.007360605988651514, -0.0030727668199688196, -0.02515827864408493, -0.016043387353420258, 0.0054918318055570126, 0.01477291714400053, -0.017638863995671272, -0.025483282282948494, -0.05788028985261917, -0.012667776085436344, -0.023075297474861145, 0.009173981845378876, -0.03855731338262558, 0.005680186673998833, 0.03320951759815216, -0.01808205060660839, -0.0008891449542716146, 0.0013711113715544343, 0.01427063811570406, -0.0029841293580830097, -0.0005923016578890383, -0.02611851692199707, 0.0020866745617240667, -0.02663557045161724, 0.024005990475416183, 0.09407393634319305, 0.0008993013179861009, -0.06151442602276802, -0.016146797686815262, -0.04115734621882439, -0.007264581974595785, 0.013384263031184673, -0.027019664645195007, -0.01441836729645729, -0.012749027460813522, 0.00022413284750655293, -0.028142407536506653, -0.007489868905395269, 0.001990650547668338, 0.019160473719239235, -0.05445297434926033, 0.028733324259519577, 0.007235036231577396, -0.006965430453419685, 0.030314026400446892, 0.0022694894578307867, -0.002371053211390972, 0.01195129007101059, -0.03474590182304382, -0.017446815967559814, -0.011921743862330914, -0.0021402263082563877, 0.0463278666138649, 0.01184049341827631, -0.03125949203968048, -0.043550558388233185, -0.008258060552179813, -0.039148230105638504, 0.009705806151032448, 0.023518484085798264, -0.023282118141651154, -0.016708169132471085, 0.007323673460632563, -0.0029361173510551453, -0.014832008630037308, 0.00987569522112608, 0.01548201683908701, -0.021361637860536575, 0.01981048285961151, 0.04547103866934776, -0.05279840528964996, 0.0122098159044981, -0.04851426184177399, -0.007844419218599796, 0.005912859924137592, 0.011567194014787674, 0.020430944859981537, 0.007829645648598671, -0.0031854102853685617, -0.04476194083690643, 0.022055964916944504, 0.026724206283688545, -0.025763968005776405, -0.030550392344594002, -0.04591422528028488, -0.005048644263297319, 0.024508269503712654, -0.016663851216435432, 0.026236701756715775, -0.019825255498290062, 0.007212876807898283, 0.0007769631338305771, -0.005595242604613304, 0.013110963627696037, 0.006463151425123215, -0.021302547305822372, 0.013303011655807495, -0.03250041604042053, 0.008501813746988773, -0.0305208470672369, -0.03445044159889221, 0.0009630095446482301, -0.01159674022346735, 0.005432740319520235, 0.02880718931555748, 0.044289205223321915, -0.043314192444086075, 0.018894560635089874, -0.04290055111050606, -0.016501348465681076, -0.01588088646531105, 0.03489363193511963, 0.015777476131916046, 0.0027182167395949364, -0.040389154106378555, 0.006784462369978428, -0.04922335967421532, 0.02902878262102604, -0.030373116955161095, 0.013155282475054264, -0.02440485917031765, 0.02950151637196541, 0.023799169808626175, -0.006178772542625666, 0.0070319087244570255, 0.031082218512892723, -0.01245356909930706, 0.004557445179671049, 0.017476361244916916, -0.06742359697818756, -0.023104842752218246, 0.010185926221311092, 0.03784821555018425, 0.01133082713931799, 0.0682508796453476, -0.0015003744047135115, 0.001831841771490872, 0.006256330292671919, 0.03678456321358681, -0.02022412419319153, 0.004092098213732243, -0.0018909333739429712, 0.003438396379351616, -0.0439937487244606, 0.033091332763433456, 0.03755275532603264, 0.018865015357732773, -0.014233705587685108, -0.027640128508210182, -0.0007146398420445621, 0.025424189865589142, -0.025291234254837036, -0.005798370111733675, 0.015954749658703804, -0.00023544336727354676, -0.00012730099842883646, -0.00949898548424244, -0.01687067188322544, -0.012512660585343838, -0.011197871528565884, -0.007319980300962925, -0.008472267538309097, 0.002443071221932769, -0.01526042353361845, -0.020608220249414444, -0.002317501464858651, 0.003351605497300625, 0.04053688421845436, -0.0028400933369994164, -0.03832094743847847, -0.02145027555525303, 0.058175746351480484, -0.019352521747350693, 0.01588088646531105, -0.025276461616158485, -0.026443522423505783, 0.03684365376830101, -0.0537438727915287, 0.06730540841817856, -0.03436180576682091, 0.04810061678290367, 0.015201332047581673, 0.002614806406199932, -0.005720812361687422, -0.028703778982162476, 0.007113159634172916, -0.010688205249607563, -0.06399627774953842, 0.012918916530907154, 0.01834796369075775, 0.0020534354262053967, -0.0036396775394678116, -0.06151442602276802, -0.022573016583919525, 0.024050308391451836, 0.021317319944500923, -0.03374134376645088, -0.009683647193014622, 0.0004847363452427089, -0.029723109677433968, -0.003279587719589472, -0.008634770289063454, -0.004210281185805798, 0.015408152714371681, -0.0030413742642849684, 0.021775279194116592, -0.01610247977077961, 0.0019167859572917223, -0.0009482366149313748, 0.05200066789984703, -0.017417268827557564, 0.026665115728974342, -0.004609150346368551, 0.05474843084812164, 0.019130928441882133, 0.012276294641196728, 0.01548201683908701, -0.02171618863940239, 0.0049415407702326775, 0.034568626433610916, -0.005731891840696335, -0.017047947272658348, -0.013495059683918953, 0.05002109706401825, 0.032618600875139236, -0.0463574156165123, -0.006791848689317703, -0.016146797686815262, -0.007873964495956898, -0.0011310514528304338, 0.02833445556461811, 0.03270724043250084, 0.05217794328927994, -0.04434829577803612, -0.003626751247793436, 0.002668358152732253, 0.0244196318089962, 0.0032149560283869505, -0.0009907087078318, -0.0027403761632740498, 0.011205257847905159, 0.01633884571492672, -0.003115238854661584, -0.037464119493961334, -0.005864847917109728, -0.004930461291223764, -0.021790053695440292, 0.010968890972435474, 0.025823058560490608, -0.019130928441882133, 0.007242422550916672, 0.0066145737655460835, 0.010045583359897137, 0.004346930887550116, -0.028629913926124573, 0.026251474395394325, -0.03536636382341385, 0.010858094319701195, 0.004435568582266569, -0.00421766797080636, 0.02145027555525303, 0.039177775382995605, 0.051675666123628616, 0.01307403203099966, 0.005214839708060026, 0.00474949274212122, -0.019692298024892807, 0.0116115128621459, -0.037198204547166824, 0.01490587368607521, 0.008730794303119183, -0.0016453335992991924, 0.03572091460227966, -0.001841074787080288, 0.022307105362415314, 0.023104842752218246, -0.014344502240419388, 0.01834796369075775, 0.06736449897289276, 0.04414147511124611, -0.032293595373630524, -0.007777940947562456, -0.0045759109780192375, 0.022528698667883873, 0.013088804669678211, 0.015142240561544895, -0.02758103609085083, -0.029132192954421043, -0.013746199198067188, -0.005650640930980444, -0.06570993363857269, -0.004021926783025265, 0.03338679298758507, -0.0244196318089962, 0.04517558217048645, -0.011685377918183804, -0.01780136488378048, -0.006994976196438074, -0.012372317723929882, -0.01707749255001545, 0.01997298374772072, -0.013029713183641434, -0.021893464028835297, -0.023341208696365356, -0.03687320277094841, -0.04295964166522026, -0.013775745406746864, -0.03533681854605675, -0.028496956452727318, -0.0030709202401340008, 0.028482183814048767, -0.023607121780514717, 0.00904841162264347, 0.016161572188138962, 0.02369575947523117, 0.01209901925176382, -0.002784694777801633, 0.0030395276844501495, 0.0009907087078318, 0.01731385849416256, 0.012645617127418518, -0.015275196172297001, 0.06121896952390671, 0.01184049341827631, -0.0017810597782954574, -0.00904841162264347, 0.017432041466236115, -0.02586737833917141, 0.0036747632548213005, -0.014935418963432312, 0.00026752828853204846, -0.004719946999102831, 0.0022103977389633656, 0.06006668135523796, -0.002256563166156411, -0.02834922820329666, -0.02419803850352764, 0.02267642877995968, -0.040123242884874344, -0.007822259329259396, 0.016988854855298996, -0.03778912127017975, -0.006500083487480879, -0.0561666302382946, 0.030343571677803993, -0.017195675522089005, -0.034568626433610916, 0.013369490392506123, 0.017491133883595467, 0.017239993438124657, -0.02833445556461811, 0.0006878639687784016, 0.0007169481250457466, -0.0017155050300061703, 0.006082748528569937, 0.007873964495956898, -0.002129146596416831, -0.03329815715551376, -0.04319601133465767, 0.025468509644269943, 0.003698769025504589, -0.01685589924454689, 0.0010387207148596644, -0.028009450063109398, 0.0015779322711750865, -0.014314956963062286, -0.0071242391131818295, -0.044555116444826126, 0.029841292649507523, -0.005377341993153095, -0.02316393330693245, 0.01610247977077961, -0.0004745799524243921, -0.04564831405878067, -0.01734340563416481, -0.03400725498795509, 0.017180902883410454, 0.010791615583002567, 0.012246748432517052, -0.005513991229236126, 0.030845850706100464, 0.05321204662322998, 0.03956187143921852, 0.04168917238712311, 0.004904608707875013, 0.04727333411574364, 0.011633671820163727, -0.030225388705730438, 0.02223324030637741, 0.07156001031398773, 0.003418083768337965, 0.008450108580291271, 0.002878872212022543, 0.03291406109929085, 0.04969609156250954, 0.006392979994416237, 0.045293763279914856, -0.03533681854605675, 0.0022657960653305054, 0.05344841256737709, -0.03956187143921852, 0.0059645650908350945, 0.02221846766769886, -0.030875395983457565, 0.013391649350523949, -0.0023415074683725834, 0.019337749108672142, -0.00035639663110487163, 0.005351489409804344, 0.023784397169947624, -0.009122276678681374, -0.0004925844841636717, -0.040861889719963074, -0.011870038695633411, -0.040123242884874344, 0.00027514557586982846, 0.04618014022707939, -0.010570022277534008, -0.020327534526586533, 0.021642323583364487, -0.019662752747535706, -0.009196140803396702, -0.0268571637570858, -0.005140975117683411, 0.028423093259334564, -0.022159375250339508, -0.0028714858926832676, -0.028703778982162476, -0.025571919977664948, 0.027684446424245834, 0.02852650359272957, -0.007741008419543505, -0.0064926971681416035, -0.011515488848090172, 0.007493562065064907, 0.01306664478033781, 0.018746832385659218, 0.01658998616039753, -0.019677525386214256, -0.01452916394919157, -0.030432209372520447, 0.037198204547166824, 0.028999237343668938, 0.005853768438100815, -0.003506721230223775, -0.016959309577941895, 0.00867908913642168, -0.03368224948644638, -0.03953232616186142, -0.00940296147018671, -0.013849609531462193, -0.011013209819793701, 0.006019963882863522, -0.02371053211390972, -0.01978093571960926, -0.06056896224617958, 0.015762703493237495, -0.048927903175354004, 0.06033259257674217, 0.009956946596503258, 0.010525703430175781, 0.007829645648598671, 0.004542672075331211, -0.005314556881785393, -0.0013507986441254616, -0.040152788162231445, -0.012992780655622482, -0.026798071339726448, 0.015762703493237495, -0.03024016134440899, 0.008309765718877316, -0.01806727796792984, -0.025527600198984146, 0.0010618034284561872, -0.0072608888149261475, 0.049193814396858215, -0.006152919959276915, -0.03619364649057388, -0.020327534526586533, 0.011921743862330914, -0.043905109167099, 0.003992381040006876, 0.013716653920710087, 0.0006444685277529061, -0.008878523483872414, -0.00640405947342515, 0.03397770971059799, 0.04615059494972229, -0.016161572188138962, 0.029191283509135246, -0.027979904785752296, 0.002904724795371294, -0.038439132273197174, 0.006060589104890823, -0.008265446871519089, -0.04564831405878067, 0.037257298827171326, -0.02046049013733864, 0.003085693111643195, 0.00841317605227232, -0.02100708894431591, 0.04420056939125061, 0.008664315566420555, 0.015142240561544895, -0.0018650807905942202, -0.0012409250484779477, 0.003142938017845154, 0.020652538165450096, -0.006308035459369421, 0.049666546285152435, 0.011641059070825577, 0.0029804359655827284, -0.011419464834034443, 0.03953232616186142, 0.0059682587161660194, -0.0004175657231826335, -0.041866447776556015, 0.023725304752588272, 0.003792946459725499, 0.010784229263663292, -0.04981427639722824, -0.011471170000731945, 0.011493329890072346, -0.025232141837477684, -0.02047526277601719, -0.0032500417437404394, 0.011899584904313087, -0.004960007034242153, -0.026221927255392075, -0.0028216270729899406, -0.0003286974097136408, 0.019190018996596336, -0.007969988510012627, -0.007489868905395269, -0.01245356909930706, 0.01905706338584423, -0.008309765718877316, 0.03377088904380798, 0.05143929645419121, -0.002101447433233261, 0.04295964166522026, 0.016914989799261093, 0.015068375505506992, 0.013221761211752892, -0.018480919301509857, -0.01757977157831192, -0.01548201683908701, -0.008235901594161987, 0.01809682324528694, -0.01926388405263424, 0.017727499827742577, 0.0027496092952787876, 0.016959309577941895, 0.01661953143775463, -0.02657647803425789, -8.9156863396056e-05, -0.015304742380976677, 0.012874597683548927, -0.0010664199944585562, 0.031732227653265, -0.00416226964443922, -0.014536550268530846, -0.030698122456669807, 0.006149226799607277, -0.013266080059111118, 0.021671868860721588, -0.005650640930980444, -0.0011227417271584272, 0.05052337795495987, 0.01902751810848713, 0.005314556881785393, -0.03929596021771431, -0.05031655728816986, 0.03199813887476921, 0.003427316900342703, 0.012143338099122047, -0.031377676874399185, -0.006585028022527695, 0.016530893743038177, 0.01159674022346735, 0.04659378156065941, -0.016457030549645424, 0.019367294386029243, 0.00804385356605053, -0.029870837926864624, 0.039916422218084335, -0.00566910719498992, -0.0037578607443720102, 0.0019334055250510573, -0.03536636382341385, 0.06783723831176758, -0.00737907225266099, 0.010370587930083275, 0.018229780718684196, -0.019633207470178604, -0.0022454834543168545, 0.004369090311229229, 0.002110680565237999, -0.007873964495956898, -0.005462286062538624, -0.009425121359527111, -0.020061621442437172, 0.006706904619932175, -0.02220369502902031, 0.03604591637849808, 0.021435502916574478, -0.009417735040187836, -0.02564578503370285, -0.01451439131051302, 0.017092265188694, -0.023577576503157616, 0.027211712673306465, -0.03288451209664345, 0.0389709547162056, 0.002256563166156411, 0.025763968005776405, 0.042102813720703125, 0.021819598972797394, -0.03932550549507141, 0.013192215003073215, 0.01196606270968914, 0.0219525545835495, 0.014691665768623352, -0.051587026566267014, -0.005019098520278931, 0.006008883938193321, 0.03374134376645088, -0.01610247977077961, 0.010237631388008595, -0.013989952392876148, -0.0032223425805568695, 0.020622992888092995, 0.00891545508056879, 0.010193312540650368, 0.003453169483691454, 0.012719481252133846, 0.0031096991151571274, 0.009543304331600666, 0.00445034122094512, -0.016486575827002525, 0.017963867634534836, -0.02025366947054863, -0.0011919897515326738, -0.009868308901786804, 0.002930577378720045, 0.011929130181670189, -0.019441159442067146, -0.015201332047581673, 0.002932423958554864, -0.02273551933467388, -0.01784568466246128, 0.011685377918183804, -0.006219398230314255, -0.003911129664629698, 0.015201332047581673, 0.0463574156165123, -0.026251474395394325, 0.008871137164533138, -0.010414906777441502, 0.017047947272658348, 0.0035695061087608337, -0.004228747449815273, -0.00989046785980463, 0.013339944183826447, 0.025468509644269943, -0.0268571637570858, 0.02221846766769886, -0.04694833233952522, -0.033357247710227966, 0.013775745406746864, 0.0014588255435228348, -0.015097921714186668, 0.017978640273213387, 0.003294360591098666, -0.03705047443509102, -0.0022621029056608677, 0.015807021409273148, 4.766574056702666e-05, 0.0008166652987711132, -0.02004684880375862, 0.005369955208152533, 0.011316054500639439, 0.02707875706255436, 0.021154817193746567, -0.018894560635089874, 0.029117420315742493, 0.001944485236890614, 0.006296955980360508, -0.00989046785980463, 0.003270354587584734, -0.007198103703558445, -0.03799594193696976, -0.04033006355166435, -0.009196140803396702, -0.024582134559750557, 0.015186558477580547, 0.004679321311414242, 0.007427084259688854, 0.040418703109025955, -0.01927865669131279, 0.018244553357362747, 0.00022436368453782052, -0.010931958444416523, -0.006481617223471403, -0.003586125560104847, 0.007172251120209694, 0.03096403367817402, -0.023621894419193268, 0.007630211766809225, 0.016678623855113983, 0.001347105368040502, -0.041570987552404404, 0.006230477709323168, 0.0024375312495976686, 0.02363666705787182, 0.029087873175740242, -0.00977967120707035, 0.035248178988695145, 0.027669673785567284, -0.02390258014202118, 0.05149839073419571, 0.003936982247978449, -0.006507469806820154, 0.007467709481716156, 0.010961504653096199, -0.01268254965543747, 4.2876083170995116e-05, 0.03244132548570633, -0.011500716209411621, 0.030816305428743362, -0.027492398396134377, -0.013531992211937904, 0.009750124998390675, 0.012409250251948833, 0.003477175487205386, 0.033032242208719254, 0.021391185000538826, -0.00042495218804106116, 0.02926514856517315, 0.024301448836922646, 0.007375379092991352, 0.012113791890442371, -0.00034416280686855316, -0.04328464716672897, 0.04180735722184181, -0.003019214840605855, -0.022144602611660957, -0.021332092583179474, -0.031111763790249825, -0.023533256724476814, 0.013938247226178646, -0.0243900865316391, -0.006817701272666454, -0.0068952590227127075, 0.026502612978219986, 0.019426386803388596, 0.011943903751671314, 0.0026314258575439453, 0.008878523483872414, -0.005757744424045086, -0.022898022085428238, 0.006699517834931612, 0.04340283200144768, -0.022026419639587402, 0.04511648789048195, 0.0007534187752753496, 0.006175079382956028, 0.014543936587870121, 0.0009620862547308207, -0.044821031391620636, 0.035750459879636765, 0.037493664771318436, -0.0079256696626544, -0.005654334090650082, 0.01781613752245903, -0.03471635654568672, 0.010895026847720146, 0.01735817827284336, 0.022410515695810318, -0.010931958444416523, -0.016944535076618195, 0.015541109256446362, -0.014344502240419388, -0.005824222695082426, -0.010171153582632542, -0.003390384605154395, 0.013391649350523949, 0.007360605988651514, 0.03025493398308754, 0.00676968926563859, 0.03323906287550926, 0.011796174570918083, -0.026561705395579338, 0.011774014681577682, 0.0219820998609066, 0.004612843506038189, 0.004524205811321735, -0.026694661006331444, 0.001307403203099966, -0.006932191550731659, -0.004657162353396416, -0.005052337888628244, -0.014218932949006557, 0.01685589924454689, 0.016486575827002525, -0.005292397458106279, -0.03997551277279854, 0.032589055597782135, -0.012542206794023514, -0.03838003799319267, -0.01319960132241249, -0.020682083442807198, -0.02880718931555748, -0.016146797686815262, 0.0146251879632473, 0.0035381135530769825, 0.05658027157187462, 0.05096656456589699, 0.028216272592544556, -0.025512827560305595, -0.0036359841469675303, 0.007087307050824165, -0.021332092583179474, 0.01834796369075775, 0.020947996526956558, -0.0035787392407655716, 0.0030838465318083763, 0.028364000841975212, 0.027462853118777275, 0.02122868224978447, -0.060923509299755096, 0.01880592294037342, 0.008863749913871288, -0.002127300016582012, 0.011744469404220581, 0.0029176510870456696, 0.005011712200939655, 0.01488371379673481, -0.012623458169400692, -0.0342140756547451, -0.03539590910077095, 0.012992780655622482, -0.0028105475939810276, -0.01466212049126625, 0.010961504653096199, 0.022026419639587402, -0.041452806442976, 0.007962602190673351, -0.0029859759379178286, 0.008841590955853462, -0.002782848197966814, 0.003743087872862816, -0.021066179499030113, 0.0011218184372410178, 0.0022473300341516733, -0.005768824368715286, -0.005292397458106279, 0.0019924971275031567, -0.003504874650388956, 0.018141143023967743, -0.021598005667328835, -0.015659291297197342, -0.024567361921072006, 0.004690401256084442, -0.0019684911239892244, -0.020401397719979286, -0.016560440883040428, 0.005558310076594353, 0.014263251796364784, -0.038439132273197174, -0.018495691940188408, 0.0019297122489660978, 0.0021420728880912066, -0.04168917238712311, 0.019175246357917786, -0.008885909803211689, 0.04050733894109726, 0.005680186673998833, 0.0029822825454175472, 0.013206987641751766, -0.010695592500269413, 0.0009445433970540762, 0.03592773526906967, 0.01583656668663025, 0.009661488234996796, -0.01757977157831192, -0.01657521352171898, -0.009860922582447529, 0.002729296451434493, 0.0018022959120571613, 0.013731426559388638, 0.006204625125974417, 0.0019315589452162385, -0.009085344150662422, -0.018850242719054222, -0.03374134376645088, -0.004657162353396416, 0.02242528833448887, -0.021051406860351562, 0.004247213713824749, 0.005122508853673935, 0.0007349526276811957, 0.026000333949923515, -0.006695824675261974, -0.004247213713824749, -0.007578506600111723, -0.00701344246044755, -0.0009117659647017717, 0.0007728082127869129, 0.004472500644624233, 0.024020763114094734, 0.015378606505692005, -0.02193778194487095, -0.005761437583714724, -0.006710597779601812, -0.006618266925215721, -0.011973449029028416, 0.02907310053706169, -0.02298665978014469, 0.03241178020834923, 0.008383630774915218, 0.0003907898208126426, -0.001124588306993246, 0.0022861089091748, -0.0023064217530190945, -0.008612610399723053, 0.019441159442067146, -0.0005281317862682045, 0.006906338967382908, -0.01883547008037567, 0.01206208672374487, 0.01562974601984024, 0.0014643653994426131, 0.023488938808441162, -0.03000379540026188, 0.013864383101463318, 0.0025520215276628733, -0.008457494899630547, -0.016043387353420258, -0.013354716822504997, 0.004716253839433193, 0.02097754180431366, -0.0049563138745725155, -0.007024521939456463, -0.024005990475416183, -0.006167693063616753, -0.007822259329259396, -0.016191117465496063, 0.01319960132241249, -0.024995775893330574, -0.0020201965235173702, -0.03122994676232338, -0.001810605637729168, 0.013088804669678211, 0.01657521352171898, 0.0013360256562009454, 0.0032814342994242907, -0.004586990922689438, 0.0007571119931526482, -0.025956016033887863, 0.008376244455575943, -0.0006966353976167738, 0.0067733824253082275, -0.01907183602452278, -0.007526801433414221, -0.006241557653993368, 0.00641513941809535, -0.01060695480555296, 0.01635362021625042, -0.0019426386570557952, -0.02173096127808094, 0.04030051827430725, 0.016146797686815262, -0.010909799486398697, -0.014964965172111988, 0.015319515019655228, 0.005916553549468517, 0.0012021461734548211, -0.010163767263293266, -0.0031706374138593674, -0.012246748432517052, -0.007859191857278347, -0.022336650639772415, 0.010547863319516182, 0.018259325996041298, -0.03784821555018425, -0.02486282028257847, 0.04080279543995857, 0.006610880605876446, 0.00408471142873168, -0.01997298374772072, -0.019840028136968613, -0.012726868502795696, 0.010156380943953991, 0.015600200742483139, 0.011877425014972687, 0.029723109677433968, -0.0022805691696703434, -0.020563900470733643, -0.0010165614075958729, 0.006019963882863522, -0.0028899519238620996, -0.0015631592832505703, -0.016767261549830437, -0.0019389453809708357, -0.03374134376645088, -0.03580955043435097, -0.02046049013733864, 0.006751223001629114, 0.004117950797080994, -0.02732989750802517, 0.010688205249607563, -0.013953019864857197, -0.013391649350523949, 0.03956187143921852, 0.01331039797514677, -0.020194577053189278, 0.020815040916204453, 0.03122994676232338, -0.008974547497928143, 0.014034271240234375, -0.012593911960721016, -0.019869573414325714, 0.012712094932794571, -0.03923686966300011, -0.0011781401699408889, 0.0044688074849545956, 0.029235603287816048, -0.0066404263488948345, -0.0037800201680511236, 0.0317617729306221, -0.0020183497108519077, 0.015925204381346703, -0.008331925608217716, -0.03864595293998718, 0.00023336592130362988, 0.013613243587315083, -0.031377676874399185, 0.0029342707712203264, -0.004228747449815273, 0.001098735723644495, 0.010185926221311092, -0.007039295043796301, 0.024729862809181213, -0.014706439338624477, 0.015467244200408459, 0.031850408762693405, -0.011810947209596634, -0.017254767939448357, 0.002590800402686, -0.023621894419193268, 0.02317870780825615, -0.032293595373630524, 0.02273551933467388, 0.01562974601984024, 0.003600898664444685, -0.003796639619395137, -0.007630211766809225, -0.014964965172111988, 0.0015280735678970814, 0.006522242911159992, 0.013576311059296131, -0.01638316549360752, 0.0011144318850710988, -0.018628649413585663, 0.044318750500679016, 0.02852650359272957, 0.015105308033525944, -0.009203527122735977, -0.02244006097316742, 0.004923074506223202, 0.004313691984862089, 0.00561740156263113, 0.028452638536691666, 0.0028991850558668375, -0.0006578564643859863, -0.018658194690942764, 0.02004684880375862, 0.030904943123459816, 0.009114890359342098, -0.01632407307624817, 0.025040093809366226, -0.009757512249052525, 0.01451439131051302, 0.004535285755991936, -0.02171618863940239, 0.003565812949091196, 0.0207559484988451, -0.003035834524780512, -0.004258293192833662, -0.021863916888833046, 0.0005429047159850597, -0.02855604887008667, 0.005868541542440653, 0.011101847514510155, 0.028245817869901657, 0.005576776340603828, 0.005144668277353048, 0.01636839285492897, 0.00011622130841715261, 0.046977877616882324, 0.005321943201124668, -0.0016582600073888898, 0.004679321311414242, 0.01854001171886921, 0.00719071738421917, -0.013953019864857197, 0.005536150652915239, -0.014019498601555824, 0.004538978915661573, 0.019426386803388596, 0.02762535586953163, 0.03140722215175629, -0.015157013200223446, -0.01234277244657278, -0.00195371825248003, 0.0029435036703944206, -0.0011301281629130244, -0.0152456508949399, -0.004003460519015789, 0.0244196318089962, 0.018155915662646294, 0.001677649444900453, -0.0018069124780595303, 0.014359275810420513, -0.013502446003258228, 0.021154817193746567, -0.004731026943773031, -0.019840028136968613, -0.025675330311059952, 0.017284313216805458, 0.005299784243106842, 0.03297315165400505, -0.004756879527121782, 0.002694210736081004, 0.007659757509827614, -0.019101381301879883, -0.01136775966733694, 0.004457727540284395, 0.0058722347021102905, 0.013790518045425415, 0.00890068244189024, -0.039443690329790115, -0.006285876035690308, -0.03610501065850258, 0.024345766752958298, -0.0034033108968287706, 0.020844586193561554, 0.022277558222413063, -0.014994511380791664, -0.006245250813663006, -0.01635362021625042, 0.012889370322227478, -0.014218932949006557, -0.016914989799261093, 0.00640405947342515, -0.023075297474861145, 0.03315042704343796, 0.00063246552599594, -0.023858260363340378, -0.017683181911706924, -0.01099843718111515, 0.011744469404220581, -0.004033006262034178, 0.0062341708689928055, -0.0028308602049946785, 0.008132491260766983, -0.0013877309393137693, 0.01002342440187931, 0.018672967329621315, 0.009794443845748901, 0.00544012663885951, -0.006806621793657541, -0.0074086179956793785, -0.026177609339356422, -0.0006029196665622294, 0.010954118333756924, -0.010473998263478279, 0.006618266925215721, 0.011345600709319115, -0.01757977157831192, -0.011449011042714119, -0.018924107775092125, 0.01975139044225216, -0.012032541446387768, -0.0054548997431993484, 0.029575379565358162, -0.02391735278069973, 0.025557147338986397, -0.0036045918241143227, 0.007770554628223181, 0.02517305128276348, 0.009462053887546062, -0.011877425014972687, -0.0076523711904883385, 0.01803773269057274, 0.0010673432843759656, -0.006633040029555559, 0.00701344246044755, -0.01664907857775688, 0.0028567127883434296, 0.03391861915588379, -0.002465230645611882, -0.019219566136598587, -0.012261521071195602, -0.016471803188323975, -0.016191117465496063, 0.022558243945240974, 0.005484445486217737, -0.0041844286024570465, -0.015157013200223446, -0.019160473719239235, 0.007977374829351902, 0.004764265846461058, -0.013775745406746864, -0.0051040430553257465, -0.017668409273028374, 0.0015502329915761948, 0.0025317086838185787, 0.01243879646062851, -0.020105939358472824, -0.003078306559473276, -0.028378773480653763, -0.006016270723193884, -0.02173096127808094, 0.019101381301879883, 0.016250208020210266, -0.009860922582447529, 0.00713531905785203, 0.013288239017128944, 0.014964965172111988, 0.0038077193312346935, -0.057496193796396255, 0.0009962485637515783, 0.01208424661308527, -0.010673432610929012, 0.03294360637664795, 0.005185293965041637, -0.010629113763570786, 0.008472267538309097, 0.007689303252846003, 0.032145868986845016, -0.028171952813863754, 0.017727499827742577, 0.0021771586034446955, -0.0008803735254332423, -0.01808205060660839, -0.010200698859989643, 0.005285011138767004, 0.016220662742853165, 0.011899584904313087, -0.024050308391451836, -0.007829645648598671, 0.024286676198244095, 0.018613874912261963, 0.005536150652915239, -0.003600898664444685, -0.016693396493792534, -0.013701880350708961, 0.009927400387823582, 0.00505972420796752, 0.014085976406931877, 5.8976256696041673e-05, 0.011404692195355892, 0.023311663419008255, -0.009565464220941067, 0.020150259137153625, 0.018865015357732773, -0.02149459533393383, 0.020371852442622185, -0.013738812878727913, -0.00628218287602067, 0.01133821438997984, -0.01379790436476469, -0.012143338099122047, 0.005595242604613304, -0.014034271240234375, -0.0366663821041584, -0.04810061678290367, -0.012689935974776745, -0.005768824368715286, 0.016560440883040428, -0.01753545179963112, 0.014292797073721886, -0.02511395886540413, -0.01924911141395569, -0.006559175439178944, -0.03291406109929085, 0.03775957599282265, -0.015688838437199593, 0.020578673109412193, 0.003296207170933485, -0.014603029005229473, 0.031082218512892723, -0.022100284695625305, 0.0010017884196713567, 0.009942173026502132, 0.03634137660264969, 0.02125822752714157, -0.01181833352893591, 0.014795076102018356, -0.010496157221496105, 0.0018807770684361458, 0.003157711122184992, -0.015334287658333778, -0.007792713586241007, 0.03155495226383209, -0.004668241832405329, -0.028467411175370216, -0.01391608826816082, -0.00017554379883222282, -0.01834796369075775, 0.007246115710586309, 0.004538978915661573, 0.013495059683918953, 0.0014145068125799298, 0.009314324706792831, -0.001516070682555437, -0.018421826884150505, -0.01927865669131279, -0.00015719307702966034, 0.03976869210600853, 0.004114257637411356, -0.011545035056769848, -0.020667310804128647, -0.016235435381531715, -0.005935019347816706, 0.009595009498298168, -0.002241790294647217, -0.04130507633090019, -0.007984762080013752, -0.002467077225446701, 0.005901780445128679, 0.004435568582266569, -0.007615438662469387, -0.0026535852812230587, 0.0024282983504235744, 0.0069100321270525455, -0.031200401484966278, -0.007246115710586309, 0.02003207616508007, 0.017195675522089005, -0.029235603287816048, 0.012822892516851425, 0.0014329729601740837, 0.00816942285746336, 0.0017348944675177336, -0.026517385616898537, -0.006053202785551548, -0.008649542927742004, 0.00544012663885951, 0.02294234000146389, 0.035514093935489655, 0.05495525151491165, 0.026502612978219986, -0.009137049317359924, 0.021376410499215126, 0.012992780655622482, -0.016220662742853165, 0.012933689169585705, 0.016028614714741707, -0.006976509932428598, 0.01978093571960926, -0.02074117586016655, -0.020682083442807198, -0.00901886634528637, -0.016161572188138962, 0.00416226964443922, -0.005118815694004297, -0.029664017260074615, 0.006791848689317703, 0.039384596049785614, -0.010060356929898262, -0.017254767939448357, -0.025468509644269943, 0.014780303463339806, -0.00408471142873168, -0.012955848127603531, 0.009846149012446404, -0.017402496188879013, 0.022115057334303856, -0.0030210616532713175, -0.00031831019441597164, 0.004417102318257093, -0.00804385356605053, 0.002195624867454171, 0.009883081540465355, -0.07351003587245941, -0.027462853118777275, 0.0010137914214283228, -0.008154650218784809, -0.0037541675847023726, -0.0026591250207275152, -0.007430777419358492, -0.015216104686260223, 0.026074199005961418, -0.001853077788837254, -0.00015707765123806894, 0.003270354587584734, 0.032825421541929245, -0.00653701601549983, -0.022883249446749687, -0.0007091000443324447, -0.049193814396858215, 0.009380802512168884, -0.012556979432702065, -0.017963867634534836, 0.0007492639124393463, 0.01051093079149723, -0.010961504653096199, 0.021553685888648033, 0.019101381301879883, -0.006695824675261974, -0.008272833190858364, -0.029206058010458946, -0.004180735442787409, 0.015541109256446362, 0.0006306188879534602, 0.0034476295113563538, -0.01759454421699047, -0.008848977275192738, -0.013155282475054264, 0.01439620740711689, 0.0018170687835663557, -0.0019241725094616413, 0.0009413118241354823, 0.010141607373952866, -0.02809808775782585, -0.0009399268310517073, -0.015452471561729908, 0.0023433540482074022, -0.007681916933506727, -0.0033165200147777796, 0.01526042353361845, -0.00568387983366847, 0.00047688823542557657, 0.010097288526594639, -0.0043063051998615265, 0.0028991850558668375, 0.034036800265312195, -0.021332092583179474, 0.002396905794739723, -0.03202768415212631, 0.00987569522112608, -0.009794443845748901, -0.007146398536860943, -0.006551788654178381, -0.0007995841442607343, -0.0032740477472543716, -0.005192680284380913, -0.025246916338801384, 0.025453737005591393, -0.004313691984862089, 0.005096656270325184, 0.008368857204914093, 0.02317870780825615, -0.010097288526594639, 0.00634866114705801, -0.003331292886286974, -0.02317870780825615, 0.025069640949368477, -0.01830364391207695, 0.0128081189468503, -0.023828715085983276, 0.02806854248046875, 0.02468554489314556, 0.008420562371611595, 0.0032518883235752583, 0.01243879646062851, -0.028201498091220856, 0.02857082150876522, 0.03838003799319267, -0.020297987386584282, -0.013753585517406464, -0.0305208470672369, 0.006610880605876446, -0.013435968197882175, -0.026546932756900787, -0.014647346921265125, 0.011626285500824451, -0.023090070113539696, -0.010355815291404724, -0.014994511380791664, -0.007035601884126663, 0.003347912337630987, 0.01759454421699047, -0.011677990667521954, 0.001187373185530305, 0.006411446258425713, 0.010725137777626514, -0.011212644167244434, 0.032559510320425034, -0.009240459650754929, -0.016486575827002525, 0.024567361921072006, 0.004487273748964071, -0.011936517432332039, 0.014928032644093037, -0.0007492639124393463, -0.011013209819793701, -0.014994511380791664, -0.02588215097784996, 0.012357545085251331, 0.024345766752958298, 0.010341041721403599, 0.004490966908633709, -0.013155282475054264, -0.02419803850352764, -0.003028447972610593, -0.00030376811628229916, -0.021553685888648033, 0.02295711264014244, 0.014425753615796566, 0.009366029873490334, -0.0021236068569123745, -0.015437697991728783, 0.008102945052087307, -0.0010128681315109134, 0.002345200628042221, -0.020091166719794273, -0.0065037766471505165, 0.007471402641385794, -0.032086774706840515, -0.014913260005414486, -0.008649542927742004, 0.00804385356605053, 0.003382998052984476, -0.010533089749515057, -0.015954749658703804, -0.010643886402249336, -0.0067733824253082275, 0.003532573813572526, 0.011323440819978714, -0.0034901017788797617, -0.011271735653281212, -0.0029970556497573853, 0.010148993693292141, 0.015910431742668152, 0.0062600234523415565, 0.00892284233123064, -0.0037578607443720102, -0.006788155529648066, -0.01786045730113983, 0.009809217415750027, -0.009432507678866386, -0.02246960625052452, -0.005392114631831646, 0.006802928168326616, -0.0005595242255367339, -0.017771819606423378, 0.059653040021657944, -0.005288704298436642, 0.008021693676710129, 0.009063184261322021, 0.0028327067848294973, -0.01729908585548401, -0.012424022890627384, 0.020918451249599457, 0.007109466474503279, -0.008945001289248466, 0.005203760229051113, -0.008996706455945969, 0.0005461362889036536, -0.01613202504813671, -0.008937614969909191, 0.006972816772758961, 0.015747928991913795, 0.00828760676085949, 0.022159375250339508, 0.011449011042714119, 0.020667310804128647, -0.014063817448914051, -0.00762282544746995, 0.026546932756900787, -0.013399035669863224, 0.012224588543176651, 0.01803773269057274, 0.0033737649209797382, 0.0028327067848294973, 0.013037099502980709, 0.005610015243291855, 0.006633040029555559, -0.02880718931555748, -0.0020940611138939857, -0.010097288526594639, 0.023725304752588272, 0.009676260873675346, 0.022144602611660957, -0.011508102528750896, 0.025261688977479935, 0.00017981410201173276, -0.007918283343315125, 0.03140722215175629, 0.00713531905785203, 0.0022547165863215923, 0.005451206583529711, -0.005746664945036173, -0.0013905008090659976, -0.00634866114705801, 0.0005442896508611739, -0.006906338967382908, -0.002232557162642479, -0.00195371825248003, 0.0021679257042706013, -0.007009749300777912, -0.009713193401694298, 0.006681051570922136, -0.0016850358806550503, -0.012896756641566753, -0.0031189322471618652, -0.016279755160212517, -0.0009999418398365378, -0.030698122456669807, -0.009676260873675346, -0.01636839285492897, -0.023001432418823242, 0.013517219573259354, -0.01784568466246128, 0.009787057526409626, -0.0035381135530769825, -0.019840028136968613, 0.024271903559565544, 0.014196773059666157, -0.0024818500969558954, -0.002640658989548683, 0.02388780750334263, -0.011050142347812653, -0.01110923383384943, 0.006189852487295866, -0.009920014068484306, -0.004635002929717302, 0.011013209819793701, 0.015954749658703804, -0.011914357542991638, 0.008427949622273445, 0.0038187990430742502, 0.01855478435754776, -0.01635362021625042, -0.0041992017067968845, -0.026532160118222237, 0.005787290167063475, 0.01306664478033781, -0.008198969066143036, 0.012416636571288109, 0.009417735040187836, 0.0006366203888319433, -0.002335967496037483, 0.018155915662646294, -0.0005525994347408414, -0.027270805090665817, 0.006917418446391821, 0.021804826334118843, -0.023769624531269073, 0.006392979994416237, -0.01780136488378048, -0.01633884571492672, 0.03220495954155922, -0.005543536972254515, -0.015378606505692005, -0.015688838437199593, 0.011308668181300163, 0.015954749658703804, 0.025704875588417053, 0.013192215003073215, -0.030698122456669807, 0.015046216547489166, 0.00781487300992012, -0.011116620153188705, -0.024537814781069756, -0.012128565460443497, 0.003148477990180254, -0.0074086179956793785, -0.003032141365110874, -0.005070803686976433, 0.0007215646910481155, 0.004413409158587456, -0.014935418963432312, 0.0012963234912604094, -0.02560146525502205, -0.00037901767063885927, 0.0021069874055683613, 0.012468341737985611, -0.0026554318610578775, -0.008856363594532013, 0.007593279238790274, -0.003418083768337965, 0.004978473298251629, 0.020120713859796524, 0.038675498217344284, 0.0007995841442607343, 0.017697954550385475, 0.0010368741350248456, 0.013568924739956856, 0.019382067024707794, -0.009683647193014622, 0.020726403221488, -0.017047947272658348, -0.015437697991728783, 0.002668358152732253, 0.002371053211390972, 0.033091332763433456, -0.025675330311059952, 0.000668936176225543, 0.014263251796364784, -0.0032149560283869505, -0.014167227782309055, -0.026990119367837906, 0.005288704298436642, 0.0128081189468503, -0.0005022792029194534, 0.011279121972620487, -0.015659291297197342, 0.00929216481745243, -0.00568387983366847, -0.0011208951473236084, 0.012593911960721016, 0.027418535202741623, 0.007305207662284374, 0.009801830165088177, -0.016516121104359627, -0.0058574615977704525, -0.006765996105968952, -0.005056031048297882, -0.01681157946586609, -0.011508102528750896, -0.019190018996596336, -0.009979105554521084, 0.005946099292486906, -0.03619364649057388, 0.0012520047603175044, -0.011537648737430573, -0.0015003744047135115, 0.01013422105461359, -0.021612778306007385, 0.006862020120024681, -0.014108136296272278, -0.021908236667513847, 0.005887007340788841, 0.00040071539115160704, 0.016974082216620445, -0.010392746888101101, 0.005521378014236689, 0.009306937456130981, -0.013805290684103966, -0.013465514406561852, -0.023030977696180344, 0.012534820474684238, 0.016501348465681076, 0.010171153582632542, -0.018599102273583412, -0.007733622100204229, -2.185641642427072e-05, -0.002677591284736991, -0.0057503581047058105, -0.004668241832405329, -0.008162036538124084, -0.01440359465777874, -0.010326269082725048, -0.004413409158587456, -0.001487448113039136, -0.034332260489463806, -0.010148993693292141, 0.00021790052414871752, 0.015201332047581673, -0.015201332047581673, 0.005292397458106279, 0.0035085678100585938, 0.0014726751251146197, 0.01737295091152191, 0.006880486384034157, 0.013576311059296131, 0.011116620153188705, -0.005144668277353048, -0.007057761307805777, -0.012859824113547802, -0.012815505266189575, 0.0008785269455984235, 0.009173981845378876, 0.016959309577941895, -0.0017247380455955863, 0.008494427427649498, 0.005898087285459042, -0.02221846766769886, -0.010045583359897137, 0.005946099292486906, 0.016501348465681076, 0.008708634413778782, 0.002660971600562334, 0.015969524160027504, -0.015925204381346703, 0.005654334090650082, 1.1577408258744981e-05, -0.009491599164903164, -0.0019334055250510573, -0.00037070788675919175, -0.006271103397011757, -0.012150724418461323, -0.014056431129574776, 0.006367127411067486, -3.0440287446253933e-05, -0.00891545508056879, 0.00493784761056304, -0.006204625125974417, 0.006777075584977865, 0.03592773526906967, 0.027507171034812927, -0.020312761887907982, 0.010075129568576813, 0.01292630285024643, -0.020637765526771545, -0.0015419232659041882, -0.008568291552364826, 0.00102394784335047, -0.01907183602452278, 0.012667776085436344, 0.01638316549360752, -0.032825421541929245, 0.03155495226383209, 0.0004138725053053349, -0.0046867080964148045, -0.0071500916965305805, 0.008479654788970947, 0.0015807021409273148, 0.020194577053189278, 0.003358992049470544, 0.0011282815830782056, -0.00018154529971070588, -0.023341208696365356, 0.008272833190858364, -0.00066293467534706, 0.006684745196253061, 0.005473366007208824, 0.012394477613270283, -0.014521777629852295, -0.00791089702397585, -0.010326269082725048, 0.0048455167561769485, 0.006489004008471966, -0.012645617127418518, 0.013945633545517921, 0.010924572125077248, -0.014204160310328007, 0.006865713279694319, -0.0025427883956581354, -0.007578506600111723, -0.0026480453088879585, -0.004457727540284395, 0.001159674022346735, -0.009284778498113155, 0.011426851153373718, -0.014470072463154793, 0.014322343282401562, -0.02563101053237915, -0.009137049317359924, -0.002443071221932769, -0.015511563047766685, 0.011988222599029541, -0.0019592582248151302, 0.006440992001444101, 0.02956060692667961, 0.004147496540099382, -0.008575678803026676, 0.0074086179956793785, -0.025778740644454956, -0.012017767876386642, -0.0008711404516361654, -0.007331060245633125, 0.014972351491451263, -0.018746832385659218, 0.022070737555623055, 0.0004152574692852795, 0.028157180175185204, 0.009188754484057426, 0.006027350202202797, 0.0013027866370975971, 0.00622678454965353, 0.024227583780884743, 0.014462686143815517, 0.005144668277353048, -0.020829813554883003, 0.0015797788510099053, 0.00445034122094512, -0.009358642622828484, -0.01207685936242342, -0.012970621697604656, 0.013546764850616455, 0.007157478481531143, -0.005513991229236126, -0.0020312760025262833, -0.0034310100600123405, -0.023030977696180344, -0.0007118699722923338, -0.011382532306015491, -0.0034051574766635895, -0.010673432610929012, 0.025232141837477684, 0.003419930348172784, 0.002057128818705678, 0.002249176613986492, 0.010311496444046497, 0.01207685936242342, 0.008819431997835636, 0.01973661780357361, -0.005794676952064037, -0.01880592294037342, -0.001836458221077919, 0.009860922582447529, 0.0030635336879640818, 0.002764382166787982, 0.01084332074970007, -0.013421195559203625, 0.0006961736944504082, 0.0012261521769687533, -0.009720579721033573, 0.0003023831523023546, -0.0097648985683918, -0.004047779366374016, 0.010030810721218586, -0.015703611075878143, 0.007763167843222618, -0.003611978143453598, -0.019116153940558434, -0.009550690650939941, -0.023858260363340378, -0.01209901925176382, 0.010592181235551834, -0.011013209819793701, -0.001670262892730534, 0.001548386411741376, -0.001455132383853197, 0.026487840339541435, 0.009860922582447529, -0.015969524160027504, -0.0158956591039896, 0.01783091016113758, -0.0020996008533984423, 0.004978473298251629, 0.010924572125077248, -0.002956429962068796, 0.00038409585249610245, -0.01729908585548401, -0.0040662456303834915, 0.015467244200408459, 0.0010137914214283228, 0.010954118333756924, -0.007489868905395269, -0.010473998263478279, 0.010902413167059422, 0.01877637766301632, 0.01583656668663025, 0.006145533639937639, -0.005731891840696335, 0.020622992888092995, 0.006474230904132128, 0.0019038596656173468, -0.016560440883040428, 0.01084332074970007, 0.013059258460998535, 0.02465599961578846, -0.02517305128276348, 0.00832453928887844, 0.016220662742853165, -0.01013422105461359, -0.007375379092991352, -0.01232061255723238, 0.019396839663386345, 0.015068375505506992, -0.012394477613270283, -0.007131625898182392, -0.013864383101463318, 0.0075415740720927715, 0.00013503369700629264, 0.009343869984149933, -0.005923939868807793, 0.0015963984187692404, -0.016501348465681076, 0.03125949203968048, 0.017890002578496933, 0.0018327650614082813, 0.025704875588417053, 0.003477175487205386, -0.013243920169770718, 0.022868474945425987, -0.008812044747173786, -0.008420562371611595, 0.003392231184989214, 0.036725472658872604, -0.00750094885006547, -0.003419930348172784, 0.00804385356605053, -0.016412710770964622, -0.0019334055250510573, -0.0002136302355211228, 0.0029194976668804884, 0.012025154195725918, 0.03223450481891632, 0.0034254700876772404, 0.01735817827284336, -0.0034753286745399237, -0.0001788907975424081, -0.010939344763755798, 0.0024726169649511576, -0.0006195392343215644, 0.01834796369075775, -0.022336650639772415, -0.01488371379673481, -0.011995608918368816, 0.004553751554340124, 0.02511395886540413, -0.02639920264482498, -0.0037227750290185213, 0.0022122443187981844, 0.001260314485989511, -0.006610880605876446, -0.018126368522644043, 0.03483453765511513, 0.003355298889800906, 0.0008642156608402729, 0.015954749658703804, 0.004838130436837673, -0.01682635210454464, 0.001747820759192109, 0.022632109001278877, 0.00804385356605053, -0.016043387353420258, 0.0036839961539953947, 0.004055165685713291, 0.007342139724642038, 0.0158513393253088, -0.006939577870070934, -0.025010548532009125, 0.004930461291223764, -0.0061122942715883255, 0.007452936843037605, 0.03693229332566261, -0.013856995850801468, -0.006765996105968952, 0.011892198584973812, 0.0146251879632473, -0.007024521939456463, 0.006322808563709259, 0.002110680565237999, -0.0037467810325324535, -0.018924107775092125, -0.01319960132241249, -0.008745566941797733, 0.010835934430360794, 0.016752488911151886, -0.001670262892730534, 0.002614806406199932, 0.015216104686260223, -0.0026203461457043886, -0.00061723095132038, 0.0032740477472543716, 0.02461167983710766, -0.0016721095889806747, 0.006784462369978428, 0.02489236555993557, 0.01852523721754551, -0.01316266879439354, 0.007349526509642601, -0.004786425270140171, -0.007866578176617622, 0.016176344826817513, 0.000237751635722816, 0.01737295091152191, 0.03252996504306793, 0.0013157129287719727, 0.0076523711904883385, 0.016944535076618195, 0.010156380943953991, -0.031732227653265, 0.004719946999102831, 0.0050781904719769955, 0.013465514406561852, 0.002138379728421569, -0.005632174666970968, -0.008885909803211689, 0.020135486498475075, -0.0029231910593807697, -0.0037209284491837025, 0.009395575150847435, -0.0023507403675466776, -0.0027773084584623575, 0.004258293192833662, -0.0036322909872978926, -0.0051003494299948215, -0.009853535331785679, 0.037198204547166824, -0.00964671466499567, 0.007903510704636574, 0.008154650218784809, 0.005369955208152533, -0.02100708894431591, -0.01901274360716343, -0.008391017094254494, 0.00044549579615704715, 0.0003166944079566747, 0.02174573391675949, 0.000592763302847743, -0.015733156353235245, -0.0032518883235752583, 0.013140509836375713, 0.011072301305830479, 0.02201164700090885, -0.021184362471103668, -0.006754916161298752, 0.007028215564787388, 0.00019274040823802352, 0.020874131470918655, -0.007955215871334076, -0.007822259329259396, 0.007807486690580845, -0.01731385849416256, -0.001944485236890614, 0.0008231285028159618, 0.021908236667513847, -0.011788788251578808, -0.015807021409273148, -0.00421766797080636, 0.00446142116561532, -0.007042988203465939, -0.023533256724476814, 0.016072934493422508, 0.004302612040191889, -0.0010461071506142616, -0.013502446003258228, -0.009092730470001698, 0.0012520047603175044, -0.005573083180934191, 0.007168557960540056, -0.011714923195540905, -0.017875229939818382, -0.014580869115889072, 0.0029453502502292395, 0.0013895775191485882, 0.003948062192648649, 0.0016924223164096475, 0.010052969679236412, -0.029412878677248955, 0.012948461808264256, -0.0066145737655460835, -0.0077853272669017315, -0.005285011138767004, 0.014994511380791664, 0.0020645151380449533, -0.0008102021529339254, -0.01356153842061758, -0.014034271240234375, -0.032825421541929245, -0.010533089749515057, 0.01195129007101059, -0.0057355850003659725, 0.01809682324528694, 0.023843487724661827, -0.01062172744423151, -0.004073631949722767, 0.00603842968121171, 0.002119913697242737, 0.0007714232779107988, -0.004372783470898867, 0.00271267700009048, 0.03436180576682091, -0.006913725286722183, 0.0028714858926832676, -0.0018401514971628785, 0.017978640273213387, 0.010208086110651493, 0.013502446003258228, -0.00013064798258710653, -0.02292756736278534, -0.004021926783025265, -0.0008295916486531496, -0.010872866958379745, -0.002579720690846443, -0.02100708894431591, 0.0029545833822339773, 0.006832474377006292, 0.013133123517036438, -0.022838929668068886, -0.0001764671178534627, 3.8461519579868764e-05, -0.028452638536691666, -0.018924107775092125, 0.009329097345471382, 0.014573482796549797, -0.011847879737615585, 0.003767093876376748, -0.01319960132241249, -0.03270724043250084, 0.0010922725778073072, -0.006873099599033594, 0.012889370322227478, -0.002378439763560891, 0.004291532561182976, -0.013273466378450394, 0.006267410237342119, 0.008523973636329174, 0.016516121104359627, 0.015334287658333778, -0.011906971223652363, 0.01243879646062851, -0.020194577053189278, 0.0015077608404681087, -0.01781613752245903, 0.001700732042081654, 0.023828715085983276, -0.019204791635274887, 0.04443693533539772, 0.0022140908986330032, 0.004852903075516224, -0.02124345488846302, -0.0012141491752117872, -0.00804385356605053, -0.004014540463685989, -0.013997338712215424, 0.02174573391675949, -0.00892284233123064, 0.012202429585158825, 0.011906971223652363, 7.149860903155059e-05, 0.013450740836560726, -0.022115057334303856, 0.004409715998917818, -0.0012852437794208527, 0.002335967496037483, -0.02218892239034176, -0.01184049341827631, 0.0024172186385840178, -0.0231491606682539, -0.0005802986561320722, 0.022558243945240974, -0.019455932080745697, -0.005949792452156544, -1.4931611076463014e-05, 0.012261521071195602, -0.002450457541272044, -0.006330194883048534, -0.001888163504190743, -0.005661720409989357, -0.01809682324528694, 0.0195593424141407, -0.026916254311800003, -0.028452638536691666, -0.0030709202401340008, 0.005207453388720751, -0.023754850029945374, 0.001263084472157061, -0.028142407536506653, 0.009137049317359924, -0.012143338099122047, 0.010481384582817554, -0.008147263899445534, -0.003966528456658125, -0.0026886709965765476, -0.019854800775647163, 0.01905706338584423, 0.011655831709504128, -0.005971951875835657, -0.014455299824476242, 0.0019149393774569035, 0.005008019041270018, 0.0009246922563761473, 0.005362568888813257, 0.012571752071380615, -0.02099231444299221, 0.0018660040805116296, -0.00021974714763928205, 0.008701248094439507, 0.014699053019285202, -0.002843786496669054, -0.006204625125974417, -0.007837032899260521, 0.004210281185805798, 0.010185926221311092, -0.009439893998205662, 0.004875062499195337, 0.012387091293931007, -0.009853535331785679, 0.021671868860721588, 0.01583656668663025, -0.003621211275458336, 0.0067733824253082275, 0.02834922820329666, -0.012165497057139874, -0.017697954550385475, 0.013731426559388638, -0.004498353227972984, 0.005340409465134144, 0.0077853272669017315, -0.027758311480283737, -0.032293595373630524, 0.0005396731430664659, -0.0011624438920989633, 0.028644686564803123, -0.005694959778338671, -0.004609150346368551, 0.00252986210398376, -0.01123480312526226, 0.02419803850352764, 0.0034937949385493994, 0.0034513226710259914, 0.016560440883040428, -0.0010581101523712277, -0.015090534463524818, -0.014913260005414486, 0.0031909500248730183, -0.003796639619395137, 0.01452916394919157, -0.0036766098346561193, 0.02976742759346962, 0.017624089494347572, 0.0019518716726452112, 0.015304742380976677, -0.007548960857093334, 0.008649542927742004, 0.008250674232840538, -0.00891545508056879, 0.001902013085782528, 0.010496157221496105, 0.010518317110836506, -0.02486282028257847, -0.013192215003073215, 0.006695824675261974, -0.007102080155164003, -0.0013092497829347849, -0.014580869115889072, 0.017890002578496933, -0.01181833352893591, 0.016530893743038177, 0.0015336134238168597, 0.0071537853218615055, -0.025793513283133507, -0.02365143969655037, -0.010030810721218586, -0.005887007340788841, 0.024065082892775536, 0.020076394081115723, -0.005909166764467955, 0.000850366021040827, 0.015496790409088135, 0.013805290684103966, -0.019382067024707794, -0.01413768157362938, 0.01979570835828781, -0.009321711026132107, 0.004117950797080994, 0.002345200628042221, -0.010555249638855457, 0.006865713279694319, 0.02223324030637741, 0.016279755160212517, 0.002553868107497692, 0.0048455167561769485, -0.005580469500273466, 0.01784568466246128, -0.007608052343130112, 0.028895825147628784, -0.007131625898182392, -0.012364931404590607, 0.007689303252846003, -0.003743087872862816, -0.02047526277601719, -0.005166827701032162, 0.02201164700090885, 0.013613243587315083, 0.011153552681207657, -0.0025003161281347275, -0.007999534718692303, 0.014499618671834469, -0.0075563471764326096, 0.005528764333575964, 0.014300183393061161, -0.014721211977303028, 0.001902013085782528, 0.0053588757291436195, 0.0008669855888001621, -0.016944535076618195, 0.005140975117683411, 0.006156613118946552, -0.0041881222277879715, 0.011604126542806625, 0.0017275080317631364, 0.028511730954051018, -0.004103177692741156, -0.01664907857775688, 0.021671868860721588, -0.0015668525593355298, 0.015112694352865219, 0.0032555817160755396, 0.023621894419193268, -0.01809682324528694, 0.002276875777170062, -0.001560389413498342, 0.0013147896388545632, 0.002721909899264574, -0.0022694894578307867, -0.010444452054798603, -0.010370587930083275, -0.014964965172111988, -0.006540709175169468, 0.0031780237331986427, -0.009543304331600666, 0.01661953143775463, 0.012069473043084145, -0.006086441688239574, -0.015792248770594597, 0.01880592294037342, 0.008405789732933044, -0.004247213713824749, 0.016752488911151886, 0.015555881895124912, 0.0017579771811142564, -0.0005636791465803981, 0.01979570835828781, -0.018865015357732773, -0.001377574517391622, 0.001133821438997984, 0.000161925025167875, -0.02368098683655262, 0.011190485209226608, -0.011692764237523079, -0.005632174666970968, 0.02540941722691059, 0.004058858845382929, -0.004561138339340687, -0.00586115475744009, 0.003800333011895418, -0.036489106714725494, 0.00024352229957003146, -0.008331925608217716, 0.003382998052984476, 0.004324771463871002, 0.018215006217360497, -0.01684112474322319, -0.022750291973352432, -0.003384844632819295, 0.0018152222037315369, 0.0014643653994426131, 0.0005055107758380473, 0.01635362021625042, -0.018732059746980667, 0.01562974601984024, 0.0010645732982084155, -0.00204235571436584, 0.014049043878912926, 0.018407054245471954, 0.009572850540280342, -0.00246892380528152, -0.007386458572000265, 0.006865713279694319, 0.016397938132286072, -0.0008406713022850454, -0.011921743862330914, -0.008819431997835636, -0.0004921227809973061, -0.045057397335767746, -0.016752488911151886, -0.012372317723929882, -0.006156613118946552, -0.0015982449986040592, 0.00019631821487564594, 0.0019943437073379755, 0.003940675873309374, -0.00195371825248003, 0.005299784243106842, 0.0024116786662489176, -0.019574115052819252, -0.01613202504813671, -0.01112400647252798, 0.009565464220941067, 0.023976445198059082, 0.008154650218784809, 0.004915688186883926, -0.003340525785461068, -0.0007441857014782727, 0.007360605988651514, 0.0018853935180231929, -0.007726235780864954, -0.02170141600072384, 0.0073938448913395405, -0.014654734171926975, 0.005813142750412226, -0.004952620714902878, -0.0039295959286391735, -0.030816305428743362, -0.0036378309596329927, -0.024079855531454086, -0.0038926636334508657, 0.006555481813848019, 0.01803773269057274, -0.003560272976756096, 0.014928032644093037, -0.015777476131916046, -0.015349061228334904, -0.006828780751675367, -0.01099843718111515, -0.0029601233545690775, -0.005140975117683411, 0.013458127155900002, 0.009447280317544937, 0.010355815291404724, 0.014839394949376583, -0.01184049341827631, -0.011160939000546932, -0.01124219037592411, 0.0008757570176385343, -0.011426851153373718, -0.008361470885574818, -0.009070571511983871, 0.005879621021449566, -0.01073252409696579, 0.001661029877141118, -0.01084332074970007, -0.010562635958194733, -0.009676260873675346, 0.01109446119517088, 0.003264814615249634, 0.0020552820060402155, 0.0016896524466574192, 0.0012538513401523232, 0.00891545508056879, -0.006784462369978428, 0.025571919977664948, 0.037700485438108444, 0.018746832385659218, -0.00830237939953804, -0.017195675522089005, -0.007371685467660427, -0.00012233821325935423, -0.015585427172482014, -0.0019518716726452112, 0.012660389766097069, -0.010148993693292141, 0.013509832322597504, 0.0025446349754929543, -0.011515488848090172, 0.005971951875835657, -0.006418832577764988, -0.0054659792222082615, -0.019411612302064896, -0.013827450573444366, -0.0009136126027442515, -0.015408152714371681, -0.005502911750227213, -0.021538913249969482, 0.006924804765731096, 0.019130928441882133, -0.0017635170370340347, -0.003305440302938223, 0.0029601233545690775, -0.01025240495800972, -0.03592773526906967, -0.008974547497928143, 0.02880718931555748, -0.008878523483872414, 0.005266544874757528, -0.006717984098941088, -0.011552421376109123, 0.009720579721033573, 0.02345939166843891, -0.00586115475744009, -0.04251645505428314, -0.018362736329436302, 0.00045634465641342103, 0.010075129568576813, 0.02391735278069973, 0.020150259137153625, 0.00963194202631712, 0.009077957831323147, -0.011759242042899132, 0.012460955418646336, -0.0031318585388362408, 0.011943903751671314, -0.023282118141651154, -0.013635402545332909, 0.00903363898396492, -0.017461588606238365, -0.016974082216620445, -0.013509832322597504, 0.015304742380976677, 0.007748395204544067, 0.006485310848802328, -0.005133588798344135, -0.019854800775647163, -0.03128903731703758, 0.001998037099838257, -0.0012584679061546922, 0.009853535331785679, 0.011256963014602661, 0.012054700404405594, -0.004657162353396416, 0.007242422550916672, 0.015733156353235245, -0.012261521071195602, -0.0158661138266325, 0.01998775638639927, 0.00246892380528152, 0.030550392344594002, -0.007718848995864391, -0.01331039797514677, -0.02611851692199707, 0.007630211766809225, 0.011670604348182678, 0.02759580872952938, 0.006359740626066923, 0.0045500583946704865, -0.003043220844119787, 0.00925523228943348, 0.017491133883595467, 6.157306052045897e-05, 0.019574115052819252, 0.012424022890627384, 0.0014652886893600225, -0.012704708613455296, 0.0005004325648769736, -0.011670604348182678, 0.010525703430175781, 0.008501813746988773, -0.0017644403269514441, 0.010547863319516182, 0.019160473719239235, -0.011456397362053394, -0.002816087333485484, -0.028718551620841026, -0.005935019347816706, 0.006969123613089323, -0.007888738065958023, -0.012955848127603531, 0.0024818500969558954, 0.019692298024892807, -0.00416226964443922, 0.014979737810790539, -0.019382067024707794, 0.0007169481250457466, 0.0013406422222033143, 0.019854800775647163, 0.0011135085951536894, 0.0026314258575439453, -0.02125822752714157, 0.015777476131916046, -0.007345832884311676, -0.001168907037936151, 0.03252996504306793, 0.01905706338584423, -0.0006610880373045802, 0.004177042283117771, 0.007837032899260521, -0.0029287307988852262, -0.015334287658333778, -0.0035972052719444036, -0.0032168026082217693, -0.006969123613089323, -0.0023913660552352667, 0.009979105554521084, -0.011079687625169754, 0.024330994114279747, 0.005340409465134144, -0.008745566941797733, -0.016191117465496063, -0.0024190652184188366, -0.0023488937877118587, -0.012749027460813522, -0.013701880350708961, -0.01852523721754551, 0.0018198387697339058, 0.012446182779967785, -0.0064779240638017654, 0.02416849322617054, 0.003322059754282236, -0.020593445748090744, -0.01632407307624817, 0.008006921038031578, -0.006570254918187857, 0.0017228914657607675, -0.011685377918183804, 0.00598303135484457, 0.0038483450189232826, 0.02069685608148575, -0.007416004315018654, 0.005687572993338108, 0.011027982458472252, -0.0054807523265480995, 0.004974779672920704, 0.006071669049561024, 0.0016388704534620047, -0.005853768438100815, 0.0025963401421904564, 0.019441159442067146, 0.0012935535050928593, 0.005266544874757528, 0.0003014598332811147, 0.016678623855113983, 0.016988854855298996, -0.0016342540038749576, 0.013339944183826447, 0.02023889683187008, 0.014588255435228348, -0.011737083084881306, -0.005584162659943104, -0.002378439763560891, -0.00047019426710903645, -0.00628218287602067, -0.007113159634172916, 0.013834836892783642, 0.004609150346368551, -0.003706155577674508, 0.0054807523265480995, -0.013967793434858322, 0.008819431997835636, 0.02611851692199707, 0.016220662742853165, -0.01002342440187931, 0.02224801294505596, 0.005923939868807793, 0.022100284695625305, -0.008427949622273445, 0.005687572993338108, 0.024715090170502663, -0.019204791635274887, -0.012822892516851425, -0.0341254398226738, 0.016988854855298996, -0.015230877324938774, 0.004302612040191889, 0.02347416616976261, 0.0020183497108519077, -0.0050892699509859085, -0.00042310557910241187, -0.013657561503350735, -0.0035030280705541372, 0.006924804765731096, -0.012874597683548927, -0.025276461616158485, -0.019899118691682816, 0.0023839795030653477, -0.008967161178588867, 0.00015834720397833735, -0.006274796556681395, 0.011131392791867256, 0.03885277360677719, -0.007844419218599796, -0.006906338967382908, -0.007024521939456463, -0.002112527145072818, 0.004790118429809809, -0.025749195367097855, -0.003530727233737707, -0.00277361529879272, 0.007223956286907196, -0.026281019672751427, -0.0061122942715883255, 0.029841292649507523, 0.018909333273768425, -0.01707749255001545, -0.006935884710401297, 0.005543536972254515, -0.011995608918368816, -0.01133082713931799, 0.02391735278069973, -0.010614341124892235, -0.01062172744423151, -0.013576311059296131, -0.020327534526586533, -0.009417735040187836, 0.0183331910520792, -0.014839394949376583, -0.007294127717614174, 0.026015106588602066, -0.007489868905395269, -0.006256330292671919, 0.02096276916563511, 0.0018032192019745708, -0.01086548063904047, 0.0015954750124365091, -8.367472764803097e-05, 0.0061418404802680016, -0.01415245421230793, -0.01526042353361845, 0.020859358832240105, 0.013206987641751766, -0.007242422550916672, -0.002188238315284252, 0.005262851715087891, -0.015186558477580547, 0.006093828473240137, -0.014182000420987606, -0.0023876726627349854, -0.00225840974599123, -0.009321711026132107, -0.00010289106285199523, -0.008280220441520214, -0.006082748528569937, -0.00201465655118227, -0.013768359087407589, -0.020888904109597206, 0.008154650218784809, -0.008752953261137009, -0.0008471344481222332, -0.02780262939631939, 0.03125949203968048, -0.018200233578681946, 0.0013646482257172465, -0.011774014681577682, 0.022868474945425987, -0.009491599164903164, -0.01355415116995573, -0.01998775638639927, 0.01060695480555296, 0.005469672381877899, -0.02049003541469574, 0.004616536665707827, 0.008568291552364826, 0.01466212049126625, 0.016309300437569618, 0.006319115404039621, 0.012793346308171749, -0.004498353227972984, 0.0013572617899626493, 0.009129662998020649, -0.00841317605227232, -0.004099484533071518, 0.010872866958379745, 0.0024707703851163387, 0.0009870155481621623, -0.028615141287446022, 0.020711630582809448, -0.003104159142822027, 0.008708634413778782, 0.005831609014421701, 0.03374134376645088, 0.005665413569658995, -8.973393414635211e-05, -0.003715388709679246, 0.0015668525593355298, -0.02121390961110592, 0.048218801617622375, -0.00843533594161272, -0.011190485209226608, -0.027004892006516457, 0.00791089702397585, 0.000890068244189024, 0.006751223001629114, 0.013022326864302158, -0.030934488400816917, 7.680762792006135e-05, -0.02074117586016655, -0.005628481507301331, 0.01877637766301632, 0.029959475621581078, -0.008309765718877316, 0.005163134541362524, 0.004849209915846586, -0.013450740836560726, -0.010082515887916088, 0.004520512651652098, 0.013280852697789669, -0.004771652165800333, -0.0008711404516361654, 0.002930577378720045, 0.013081418350338936, 0.005717118736356497, 0.004660855513066053, 0.005177907645702362, 0.0031983365770429373, 0.0027773084584623575, 0.01707749255001545, -0.00445034122094512, -0.030121978372335434, -0.00549552496522665, -0.0016674930229783058, 0.03450953587889671, 0.0023913660552352667, 0.014839394949376583, 0.003645217278972268, 0.006777075584977865, 0.000607997877523303, -0.0013461820781230927, -0.005768824368715286, 0.021273000165820122, -0.02950151637196541, -0.022085512056946754, 0.03028448112308979, 0.031850408762693405, -0.00566910719498992, -0.0017321244813501835, 0.01379790436476469, -0.020622992888092995, -0.02492191083729267, -0.02224801294505596, -0.007667143829166889, 0.004431874956935644, 0.011677990667521954, -0.0017302779015153646, -0.023311663419008255, -0.015792248770594597, -0.008856363594532013, 6.307342846412212e-05, 0.013421195559203625, 0.029929930344223976, -0.007873964495956898, 0.014100749045610428, 0.0019463318167254329, -0.00022955727763473988, 0.00841317605227232, -0.0011430544545874, 0.014241091907024384, -0.0028677925001829863, -0.011641059070825577, -0.0010110215516760945, -0.027462853118777275, -0.009026252664625645, -0.007777940947562456, 0.005355182569473982, -0.011833107098937035, -0.00010439143079565838, 0.013886542059481144, -0.019190018996596336, -0.00940296147018671, -0.010075129568576813, -0.014366662129759789, 0.0007709616329520941, -0.030077658593654633, 0.01539338007569313, 0.008627383969724178, 0.025468509644269943, -0.0002776846813503653, -0.012483115307986736, -0.007859191857278347, 0.00658133439719677, 0.018983198329806328, 0.007837032899260521, 0.002884412184357643, -0.019086608663201332, 0.009240459650754929, 0.012039927765727043, -0.00653701601549983, 0.017875229939818382, -0.002171618863940239, 0.011212644167244434, -0.0029859759379178286, -0.004642389249056578, -0.022144602611660957, -0.01305187214165926, -0.006500083487480879, 0.004649775568395853, -0.009484212845563889, 0.01855478435754776, 0.0002168618084397167, 0.020903678610920906, -0.00047642659046687186, 0.02269120141863823, 0.010296722874045372, 0.005694959778338671, -0.00841317605227232, -0.004210281185805798, -0.008294993080198765, 0.0006758609670214355, 0.0061012147925794125, 0.0035731992684304714, -0.009720579721033573, 0.0015169939724728465, 0.004228747449815273, 0.0028216270729899406, -0.000723872915841639, 0.004358010366559029, -0.0006957120494917035, -0.009284778498113155, -0.021095726639032364, -0.0014495925279334188, -0.002110680565237999, 0.012276294641196728, 0.014817235991358757, -0.007659757509827614, 0.017505906522274017, -0.02366621419787407, -0.008198969066143036, 0.030181068927049637, 0.008693861775100231, 0.016397938132286072, 0.02880718931555748, 0.004804891534149647, -0.010533089749515057, 0.015747928991913795, -0.028615141287446022, 0.009698419831693172, -0.002302728360518813, -0.0015243804082274437, -0.003948062192648649, 0.004971086513251066, -0.0007903510704636574, 0.03923686966300011, -0.022838929668068886, 0.015363833867013454, -0.009609783068299294, -0.00682508759200573, 0.014329729601740837, -0.011035368777811527, 0.014676893129944801, 0.002649892121553421, 0.028260590508580208, -0.013642788864672184, -0.01682635210454464, 0.014388821087777615, -0.02363666705787182, 0.022543471306562424, -0.005946099292486906, -0.015999069437384605, -0.022838929668068886, -0.007375379092991352, 0.008782499469816685, 0.021317319944500923, 0.0018817003583535552, 0.014388821087777615, -0.00659241434186697, 0.004804891534149647, -0.0005525994347408414, 0.016279755160212517, 0.011980836279690266, 0.00013861151819583029, -0.007290434557944536, 0.021080952137708664, -0.009122276678681374, 0.008981933817267418, -0.012165497057139874, -0.00544012663885951, 0.00036932292277924716, 0.02069685608148575, 0.010577408596873283, 0.004531592130661011, -0.035307273268699646, 0.003061687108129263, 0.0023008817806839943, -0.007733622100204229, -0.040359608829021454, -0.010185926221311092, 0.018628649413585663, 0.004472500644624233, -0.03637092188000679, -0.015157013200223446], "c1f1e583-eb55-4df4-8f4b-f567d260900b": [-0.0364830307662487, 0.009887339547276497, -0.012132328934967518, 0.018069425597786903, -0.02304438315331936, -0.010966811329126358, -0.011811615899205208, 0.039080020040273666, -0.014314739964902401, 0.03995611518621445, 0.013618558645248413, -0.015777502208948135, 0.010075073689222336, -0.008056930266320705, -0.007004835642874241, 0.04533782973885536, -0.016364172101020813, 0.019414855167269707, 0.022058779373764992, -0.05510001257061958, 0.05021892115473747, -0.025516219437122345, -0.025719597935676575, -0.005147048272192478, -0.003799663856625557, 0.008854800835251808, -0.018085069954395294, 0.002473790431395173, -0.04321017488837242, 0.0011625837069004774, 0.004024554044008255, 0.030209576711058617, -0.015143899247050285, 0.018460538238286972, 0.016864797100424767, -0.01885165087878704, 0.005686784628778696, 0.012218372896313667, -0.019414855167269707, 0.002172633307054639, -0.027143249288201332, 0.010035961866378784, 0.039080020040273666, -0.019805967807769775, -0.013845403678715229, 0.006496388465166092, -0.018945518881082535, -0.010153296403586864, -0.027831608429551125, 0.003445706330239773, 0.00018895651737693697, 0.0213704202324152, -0.013900159858167171, -0.006770167965441942, 0.019790323451161385, -0.0461200587451458, 0.015480256639420986, 0.027628229930996895, -0.023983055725693703, -0.02942734956741333, 0.008557554334402084, -0.025156395509839058, -0.029333483427762985, 0.010035961866378784, 0.0037390412762761116, 0.009277203120291233, -0.01408789400011301, 0.00974653847515583, -0.01694301888346672, 0.003320550313219428, -0.002213700208812952, 0.02349807508289814, -0.07277832925319672, 0.008205552585422993, -0.022340379655361176, -0.04402369260787964, 0.04727775231003761, 0.007333370856940746, 0.029145749285817146, -0.009574448689818382, -0.009910806082189083, 0.007818350568413734, -0.011279702186584473, 0.017662668600678444, 0.03723396733403206, 0.002964637242257595, -0.014729319140315056, -0.053879741579294205, -0.05250302329659462, -0.03541920334100723, -0.009238091297447681, 0.006570700090378523, 0.012750287540256977, -0.01611386053264141, 0.014682386070489883, 0.0010560053633525968, -0.0025031238328665495, 0.019133253023028374, -0.007176925428211689, -0.025312840938568115, -0.0026361022610217333, -0.005827585235238075, -0.0013483624206855893, -0.0011635614791885018, 0.009089468978345394, -0.0033596616704016924, -0.012061928398907185, 0.008283775299787521, -0.019946768879890442, 0.06314130127429962, -0.00026033466565422714, -0.03745299205183983, 0.049155093729496, -0.004802868701517582, -0.08660808205604553, -0.036733344197273254, -0.026767781004309654, -0.006969635374844074, -0.010669565759599209, -0.01609821617603302, 0.006336032412946224, -0.01472149696201086, 0.013540335930883884, -0.004384377971291542, -0.03369830548763275, -0.023357274010777473, 0.021464286372065544, 0.038454242050647736, 0.02880156971514225, 0.026736492291092873, 0.00309566012583673, -0.006003586109727621, 0.00645336601883173, 0.013063177466392517, 0.022402958944439888, 0.001080449903383851, 0.018538761883974075, 0.03388603776693344, -0.010935522615909576, 0.03219643235206604, -0.0576031394302845, -0.003060460090637207, -0.019649522379040718, 0.04446173831820488, 0.0020240102894604206, 0.02140170894563198, -0.011357924900949001, 0.03998740389943123, -0.02266891486942768, 0.010966811329126358, -0.061482980847358704, -0.04198990389704704, -0.00719256978482008, 0.06939911097288132, 0.04418013617396355, -0.03196176141500473, -0.00545211648568511, 0.02690858207643032, 0.014142650179564953, 0.023764032870531082, 0.02288793958723545, -0.029599439352750778, -0.0064025213941931725, 0.010223696939647198, 0.005416916683316231, 0.007935685105621815, 0.05904243513941765, 0.003920909017324448, -0.04158314689993858, 0.014252161607146263, 0.00793177355080843, -0.008354175835847855, -0.0012036506086587906, 0.017678312957286835, -0.010278452187776566, -0.03191483020782471, 0.03008441999554634, -0.022590693086385727, 0.011162367649376392, -0.036295294761657715, -0.04718388617038727, -0.05165821686387062, 0.024843504652380943, -0.022575048729777336, 0.02812885493040085, 0.026079421862959862, -0.03388603776693344, -0.008463687263429165, -0.017912980169057846, 0.010779077187180519, -0.004407844506204128, 0.019555654376745224, -0.0009181380155496299, 0.00021193441352806985, -0.015276878140866756, -0.021511221304535866, -0.008385464549064636, -0.004278777167201042, 0.006457277107983828, 0.015237766318023205, -0.0024777015205472708, -0.019195830449461937, -0.020244013518095016, 0.01079472154378891, 0.021636376157402992, 0.05056310072541237, 0.014306917786598206, -0.02967766299843788, 0.0461200587451458, -0.011741215363144875, 0.009277203120291233, -0.03304123505949974, 0.026314089074730873, -0.014713674783706665, -0.03576338291168213, 0.011013745330274105, -0.014330384321510792, 0.024264657869935036, -0.001633874955587089, -0.01780346781015396, 0.03329154849052429, -0.0196808110922575, -0.03369830548763275, -0.007571949623525143, -0.03404248505830765, 0.017819112166762352, -0.006261720787733793, 0.00698919128626585, -0.026501823216676712, 0.000364957406418398, 0.0024405457079410553, -0.0230600293725729, 0.011256234720349312, -0.003432017518207431, 0.0149092311039567, 0.01630159467458725, 0.03360443934798241, -0.003256016643717885, -0.013039710931479931, -0.001276006456464529, -0.0073138149455189705, 0.022356025874614716, -0.049248963594436646, -0.004622956737875938, 0.03410506248474121, 0.036514319479465485, 0.03200869634747505, 0.062359072268009186, -0.01260948646813631, 0.015089143998920918, -0.025922976434230804, 0.0048693581484258175, -0.04295986145734787, 0.015323811210691929, -0.018742140382528305, 0.008424576371908188, 0.02099495194852352, -0.027205826714634895, -0.02290358394384384, -0.017693957313895226, 0.014635452069342136, -0.008674888871610165, -0.056007396429777145, 0.0027436583768576384, 0.039299044758081436, -0.01670835167169571, -0.0029998375102877617, 0.03191483020782471, -0.007501549553126097, 0.05015634372830391, 0.019320987164974213, -0.004931936040520668, -0.03111695870757103, 0.009441470727324486, 0.000990005093626678, 0.005573361646384001, 0.032071273773908615, 0.03219643235206604, 0.018585694953799248, 0.0038289972580969334, -0.03707752376794815, 0.01842924952507019, 0.009378892369568348, -0.021120106801390648, 0.020478682592511177, 0.021761532872915268, -0.028081919997930527, -0.01691173017024994, -0.016567550599575043, 0.005632028914988041, -0.010145474225282669, -0.003036993322893977, 0.00412624329328537, 0.01196023914963007, 0.011490902863442898, -0.001149872550740838, -0.00011983949661953375, 0.025250261649489403, 0.0030663267243653536, 0.0016397417057305574, 0.007051769178360701, 0.006664567161351442, -0.03754685819149017, -0.01481536403298378, 0.014322562143206596, -0.02307567372918129, 0.015777502208948135, 0.022731494158506393, -0.06398610025644302, 0.02817578800022602, 0.033103812485933304, 0.0013464068761095405, -0.022277802228927612, -0.001054049818776548, -0.018163291737437248, -0.004040198400616646, 0.0007289370405487716, -0.01568363606929779, 0.004008909221738577, -0.004615134559571743, -0.020901083946228027, -0.013540335930883884, -0.04061318561434746, -0.001758053433150053, 0.05334782600402832, -0.012961488217115402, -0.00560465082526207, -0.009965562261641026, -0.0275343619287014, 0.007767506409436464, -0.05691478028893471, -0.007028302643448114, -0.0008438265067525208, -0.017850402742624283, -0.031038735061883926, 0.006046608556061983, -0.04424271360039711, -0.01736542209982872, 0.01903938502073288, -0.04030029475688934, -0.013172688893973827, 0.004814602434635162, 0.038641974329948425, -0.0020807217806577682, -0.039893537759780884, -0.010896410793066025, 0.007712750229984522, 0.018961163237690926, -0.004270954988896847, -0.04339791089296341, 0.0010902277426794171, -0.023169539868831635, 0.04302244260907173, -0.003105438081547618, 0.05797860771417618, -0.00038451305590569973, -0.04427400231361389, 0.001547830062918365, 0.001247650827281177, -0.02561008557677269, -0.006050519645214081, -0.07234027981758118, -0.009042534977197647, 0.006758434232324362, 0.0006492477259598672, 0.018100714311003685, 0.013188334181904793, -0.03751556947827339, -0.02856690064072609, -0.002334945136681199, -0.014400784857571125, 0.015003099106252193, 0.013102289289236069, -0.013735892251133919, -0.01907067559659481, -0.05341040715575218, 0.04092607647180557, -0.0364830307662487, 0.013070999644696712, 0.03435537591576576, -0.004931936040520668, 0.012147973291575909, 0.029974907636642456, 0.006476833019405603, 0.01888294145464897, -0.001579119125381112, 0.004736379720270634, -0.030412955209612846, -0.014580696821212769, -0.02986539714038372, -0.027675163000822067, -0.0006174698355607688, -0.02266891486942768, 0.04014384746551514, -0.025156395509839058, -0.037327833473682404, 0.014752786606550217, 0.009433647617697716, -0.017036886885762215, -0.03491857647895813, 0.02561008557677269, 0.035888537764549255, 0.006367321126163006, 0.000442446704255417, 0.02479657158255577, -0.014166116714477539, -0.019383564591407776, -0.007611060980707407, -0.004626867827028036, 0.032697055488824844, 0.028441745787858963, 0.007071325089782476, 0.03520017862319946, 0.030209576711058617, 0.027018092572689056, 0.028895435854792595, 0.010786899365484715, 0.027581296861171722, -0.030381666496396065, -0.0342927984893322, -0.0233103409409523, 0.03591982647776604, 0.01756880059838295, 0.022684559226036072, 0.024436745792627335, -0.02837916649878025, 0.003355750348418951, 0.018053781241178513, 0.006926612928509712, -0.002510946011170745, 0.01568363606929779, 0.03410506248474121, -0.00866706669330597, -0.02667391300201416, 0.016473684459924698, -0.016270305961370468, 0.013352601788938046, -0.028723346069455147, 0.005491227842867374, 0.022966161370277405, -0.015143899247050285, -0.01760008931159973, 0.0009166713571175933, -0.04418013617396355, -0.038235217332839966, -0.005710251163691282, -0.050312791019678116, -0.01925840973854065, 0.021041885018348694, -0.013626380823552608, 0.010395786724984646, -0.01717768795788288, -0.06770949810743332, -0.04148927703499794, 0.008627954870462418, -0.016583194956183434, -0.0068210125900805, -0.03579467162489891, 0.04890478402376175, -0.05419263243675232, -0.019633878022432327, 0.043523065745830536, 0.037327833473682404, 0.01005160715430975, 0.03764072433114052, -0.020588193088769913, -0.01907067559659481, 0.01174903754144907, 0.0027886363677680492, 0.005784562788903713, 0.00952751561999321, -0.01733413338661194, -0.0036569074727594852, 0.027393560856580734, -0.008197730407118797, -0.02309131808578968, -0.02309131808578968, -0.001824542647227645, 0.0026204579044133425, -0.036326583474874496, -0.004916291683912277, 0.025484930723905563, -0.006089631002396345, -0.012734642252326012, 0.02074463851749897, 0.030193932354450226, -0.030428599566221237, -0.01669270731508732, 0.010215873830020428, 0.010403608903288841, 0.038610685616731644, -0.0028492589481174946, -0.014338206499814987, -0.013469935394823551, 0.022794071584939957, -0.021511221304535866, -0.0011410724837332964, -0.007227770052850246, -0.0007998262881301343, -0.021120106801390648, 0.026595691218972206, -0.022559404373168945, 0.03873584046959877, 0.0008115596720017493, -0.011905482970178127, 0.02349807508289814, 8.960462764662225e-06, 0.059793371707201004, 0.029912330210208893, -0.027346627786755562, -0.024937370792031288, 0.05040665715932846, -0.029771529138088226, 0.050907280296087265, 0.018929874524474144, 0.008987778797745705, 0.0028375256806612015, -0.010677387937903404, 0.02711196057498455, -0.012523441575467587, -0.02770645171403885, -0.03432408720254898, -0.006320387590676546, -0.016458040103316307, 0.022481180727481842, 0.012445218861103058, -0.0020592105574905872, -0.011537836864590645, -0.010513120330870152, -0.038016192615032196, -0.017490578815340996, -0.000510402605868876, -0.04552556574344635, 0.0034828621428459883, 0.013728070072829723, 0.01038014143705368, 0.01988418959081173, 0.03995611518621445, -0.009081645868718624, -0.019649522379040718, -0.017224621027708054, 0.02476528100669384, -0.023341629654169083, 0.00951969251036644, -0.005952741485089064, 0.021120106801390648, 0.00766972778365016, 0.006891412660479546, 0.00922244694083929, 0.016833508387207985, 0.008768755942583084, 0.03326025977730751, -0.009152046404778957, -0.011631703935563564, -0.008322887122631073, -0.03491857647895813, -0.005002336576581001, 0.006480744108557701, 0.02539106272161007, -0.01888294145464897, -0.01692737452685833, 0.01388451550155878, 0.02748742885887623, 0.03579467162489891, -0.022402958944439888, -0.030209576711058617, -0.019414855167269707, 0.013141400180757046, -0.017615733668208122, 0.004267043899744749, 0.04571329802274704, -0.03235287591814995, 0.02517203986644745, -0.006903146393597126, 0.017506223171949387, 0.019946768879890442, 0.007266881410032511, -0.003441795241087675, -0.005197893362492323, -0.015793146565556526, 0.013923626393079758, 0.023232119157910347, -0.011389213614165783, -0.026986803859472275, -0.014095716178417206, 0.0026087244041264057, 0.006324298679828644, -0.007227770052850246, 0.010880766436457634, -0.002616546582430601, -0.004180999007076025, 0.0516895093023777, -0.009973384439945221, -0.0010080940555781126, -0.012531263753771782, 0.007904395461082458, 0.0209480170160532, 0.0029353038407862186, -0.008635777048766613, 0.004267043899744749, 0.013595091179013252, 0.016411105170845985, 0.018914230167865753, 0.019743390381336212, -0.009691782295703888, 0.005397360771894455, 0.007372482214123011, 0.04001869261264801, 0.00640643248334527, 0.016348527744412422, 0.004744201898574829, -0.0058549633249640465, 0.031429849565029144, -0.014549407176673412, 0.007990440353751183, 0.002342767547816038, -0.001829431508667767, 0.021714599803090096, 0.022700205445289612, 0.026423601433634758, 0.02496866136789322, -0.011514369398355484, 0.046245213598012924, 0.0066489228047430515, 0.03920517861843109, 0.05190853029489517, -0.04317888617515564, -0.0011508503230288625, 0.009668315760791302, -0.011475258506834507, -0.05237786844372749, -0.00017661201127339154, -0.01343082357198, -0.024436745792627335, 0.005917541217058897, -0.03557564690709114, 0.013368246145546436, 0.0008306264644488692, 0.018335381522774696, -0.02561008557677269, 0.011107612401247025, 0.010513120330870152, 0.013047533109784126, 0.03213385120034218, -0.008174263872206211, 0.01628595031797886, 0.003924820106476545, -0.0031738828402012587, 0.044993650168180466, 0.0038954864721745253, -0.017897335812449455, -0.010333208367228508, 0.015730569139122963, 0.0179912019520998, 0.01470585260540247, -0.020275304093956947, -0.022199580445885658, 0.021432997658848763, 0.01695866510272026, -0.013305667787790298, -0.011084144935011864, -0.007470260374248028, -0.002518768422305584, -0.006242165341973305, 0.027393560856580734, 0.0011606281623244286, 0.026141999289393425, 0.014471184462308884, 0.02539106272161007, 0.01563670113682747, 0.01606692560017109, -0.03047553263604641, 0.030538111925125122, -0.018679561093449593, 0.001965343253687024, -0.02374838851392269, 0.003830952802672982, -0.002053343690931797, 0.0022880116011947393, -0.01652061752974987, -0.02858254499733448, -0.05053181201219559, -0.008150797337293625, 0.037797171622514725, -0.023435497656464577, -0.010059429332613945, -0.019211474806070328, -0.009871695190668106, -0.0033166392240673304, 0.02817578800022602, -0.025578796863555908, 0.029802817851305008, 0.010223696939647198, 0.03454310819506645, -0.021855400875210762, 0.02454625815153122, 0.014400784857571125, -0.04959314316511154, 0.005952741485089064, 2.7683474399964325e-05, -0.02542235143482685, -0.03005313128232956, -0.0005705362418666482, 0.005154870916157961, 0.009723071940243244, 0.03360443934798241, -0.024311590939760208, -0.006742789875715971, -0.006328210234642029, 0.02118268609046936, 0.004802868701517582, -0.014400784857571125, 0.01036449708044529, -0.0025891687255352736, 0.005467761307954788, 0.024687059223651886, -0.02875463478267193, 0.006770167965441942, -0.012664242647588253, 0.009902983903884888, -0.024483680725097656, 0.009996850974857807, -0.010325386188924313, 0.007317726034671068, -0.05278462544083595, -0.014306917786598206, 0.014056605286896229, -0.00640643248334527, 0.004806780256330967, 0.0055498951114714146, 0.03617013990879059, 0.00858884397894144, 0.030616333708167076, 0.014119182713329792, -0.026783425360918045, -0.012953666038811207, 0.0024366346187889576, 0.017678312957286835, 0.034793421626091, 0.01504220999777317, 0.037140101194381714, -0.008393287658691406, -0.0018646317766979337, -0.017881691455841064, 0.011537836864590645, -0.027862897142767906, 0.029067525640130043, 0.01332131214439869, -0.011076322756707668, 0.013344778679311275, 0.0466206818819046, -0.012202728539705276, 0.0520336888730526, 0.024859149008989334, -0.004145798739045858, -0.004814602434635162, 0.010035961866378784, -0.015010921284556389, -0.011694281361997128, 0.039705801755189896, -0.005991852842271328, 0.010567876510322094, 0.0034183284733444452, -0.008103863336145878, 0.01343864668160677, 0.0376720130443573, 0.005471672397106886, -0.007787061855196953, 0.03538791462779045, 0.018757784739136696, 0.025969909504055977, -0.001529252273030579, -0.01628595031797886, 0.03066326677799225, -0.03701494261622429, -0.05040665715932846, 0.010560053400695324, 0.006261720787733793, -0.014166116714477539, 0.0089956009760499, -0.05147048458456993, -0.039486780762672424, -0.008307242766022682, 0.0066059003584086895, 0.029912330210208893, -0.020916728302836418, 0.056883491575717926, -0.021432997658848763, 0.00384073075838387, 0.03413635119795799, 0.011936771683394909, -0.020603837445378304, 0.0025481018237769604, 0.01648932881653309, 0.019367920234799385, -0.01650497317314148, -0.024593191221356392, 0.050250209867954254, -0.027362272143363953, -0.005944919306784868, 0.01817893795669079, -0.02243424765765667, 0.015222121961414814, 0.026830358430743217, -0.0045955791138112545, -0.0028042809572070837, 0.003103482536971569, -0.02348243072628975, -0.010560053400695324, 0.032321587204933167, -0.00012497285206336528, 0.02349807508289814, 0.017271554097533226, 0.025031238794326782, -0.02565702050924301, -0.005471672397106886, -0.02099495194852352, -0.011795971542596817, 0.02986539714038372, 0.016786575317382812, -0.037327833473682404, 0.0007103591924533248, -0.007341193035244942, 0.003314683446660638, 0.012335707433521748, -0.009723071940243244, 0.027393560856580734, -0.0017952091293409467, 0.0004431800334714353, -0.02030659280717373, -0.02135477587580681, 0.001144983572885394, -0.023325985297560692, 0.018914230167865753, -0.017693957313895226, 0.03066326677799225, 9.484493057243526e-05, -0.004008909221738577, -0.04192732647061348, 0.025500575080513954, -0.017631378024816513, -0.04990603029727936, -0.015519367530941963, -0.019148897379636765, -0.00341050629504025, 0.008541909977793694, 0.001628986094146967, 0.011553481221199036, 0.00688359048217535, 0.04424271360039711, 0.041176386177539825, -0.027205826714634895, 0.02119833044707775, 0.018257159739732742, -0.019367920234799385, 0.007767506409436464, 0.04962443187832832, 0.04633907973766327, -0.027581296861171722, 0.02883285842835903, 0.045212674885988235, 0.01988418959081173, -0.040362872183322906, -0.011099790222942829, -0.0018401871202513576, 0.007568038534373045, 0.01152219157665968, -0.01760008931159973, 0.03792232647538185, -0.006003586109727621, -0.01927405409514904, -0.007771417498588562, 0.017631378024816513, -0.0077283950522542, -0.001211472786962986, -0.014252161607146263, 0.00030335711198858917, 0.014744964428246021, -0.007055680267512798, 0.018335381522774696, 0.006973546463996172, 0.006308654323220253, -0.014127004891633987, 0.002364278770983219, -0.004978870041668415, -0.02711196057498455, 0.013900159858167171, -0.005111848469823599, -0.008823511190712452, 0.027988053858280182, 0.00288054789416492, 0.038641974329948425, -0.02684600278735161, -0.011475258506834507, -0.04045673832297325, 0.01240610796958208, 0.0025872131809592247, 9.374492219649255e-05, -0.014948342926800251, 0.0006199142662808299, 0.013368246145546436, -0.03601369634270668, -0.05131404101848602, -0.01586354710161686, 0.04023771733045578, -0.045369118452072144, 0.006938346661627293, -0.004634690470993519, 0.03739041090011597, 0.0011146723991259933, 0.022168289870023727, -0.0047715799883008, -0.019743390381336212, -0.018257159739732742, 0.03645174205303192, -0.0009215602767653763, 0.0060974531807005405, -0.022575048729777336, 0.0006111141992732882, -0.00019836767751257867, -0.021432997658848763, 0.017631378024816513, 0.03086664527654648, -0.013907982036471367, -0.0006644033710472286, 0.022700205445289612, -0.03382346034049988, -0.013915804214775562, 0.003952197730541229, 0.01802249252796173, -0.0005050248000770807, -0.017521867528557777, 0.009699605405330658, -0.015057854354381561, -0.014213049784302711, -0.012578197754919529, -0.032290298491716385, -0.002812103135511279, -0.0006096475408412516, -0.043929822742938995, 0.020212724804878235, -0.014940520748496056, 0.03541920334100723, 0.003441795241087675, 0.0002957792894449085, 0.025312840938568115, 0.02966201864182949, 0.007337281946092844, -0.03748428076505661, 0.012312240898609161, -0.0008888045558705926, -0.0020024990662932396, 0.004857624880969524, -0.0042318436317145824, 0.03620142862200737, -0.002291922690346837, -0.016661418601870537, -0.017834758386015892, -0.006148297805339098, 0.008518443442881107, -0.01584790274500847, 0.005479494575411081, 0.0015214299783110619, 0.0020220547448843718, -0.0009508937364444137, -0.006175675895065069, 0.011389213614165783, 0.020165791735053062, -0.021307842805981636, -0.004036287311464548, -0.014166116714477539, 0.024514969438314438, 0.012468685396015644, 0.017819112166762352, -0.007004835642874241, -0.004220110364258289, -0.022183936089277267, -0.024264657869935036, -0.035700805485248566, -0.022762782871723175, 0.027690807357430458, -0.008823511190712452, -0.019336631521582603, -0.042646974325180054, -0.013415179215371609, -0.015926126390695572, -0.0009210713324137032, 0.017318489030003548, -0.005698517896234989, 4.754468682222068e-05, -0.01927405409514904, -0.03152371570467949, 0.001314140041358769, 0.0026713025290519, 0.024076921865344048, 0.013876693323254585, 0.0011625837069004774, -0.026767781004309654, 0.008925201371312141, -0.02586039900779724, -0.003950242418795824, 0.0010452497517690063, -0.03829779475927353, 0.05988723784685135, -0.004853713791817427, 0.0364830307662487, 0.00293334829621017, -0.0027201916091144085, 0.014095716178417206, 0.003293172223493457, -0.011709926649928093, -0.0009865828324109316, -0.018507471308112144, 0.005358249414712191, 0.00985604990273714, 0.01569928042590618, 0.03111695870757103, -0.003300994634628296, -0.005459939129650593, 0.02223086915910244, -0.01027063000947237, 0.01025498565286398, -0.014299094676971436, -1.0480608580110129e-05, -0.014127004891633987, 0.02327905222773552, 0.0038485529366880655, 0.013673313893377781, -0.0016612529288977385, 0.0009856050601229072, -0.02310696244239807, -0.011553481221199036, -0.007779239676892757, -0.005448205396533012, 0.006105275359004736, -0.008463687263429165, 0.0008184041944332421, -0.055131301283836365, -0.027612585574388504, -0.009832583367824554, 0.01609821617603302, -0.01113107893615961, -0.0001482563093304634, 0.032947368919849396, 0.009347602725028992, -0.02374838851392269, -0.0049554030410945415, -0.006738878786563873, -0.005053181201219559, -0.005150959361344576, 0.005354338325560093, -0.0016211637994274497, -0.0029900597874075174, 0.0035200179554522038, -0.004411755595356226, 0.010724321007728577, -0.016379816457629204, -0.004251399543136358, -0.005444294307380915, 0.020603837445378304, -0.013524691574275494, -0.033979907631874084, 0.02543799579143524, -0.007423326838761568, 0.0037820637226104736, -0.03238416463136673, -0.026595691218972206, -0.0002372345479670912, 0.012992776930332184, -0.015402033925056458, -0.03238416463136673, -0.003539573634043336, 0.010231519117951393, 0.010004673153162003, 0.0008922267588786781, 0.02755000628530979, 0.02686164714396, -0.017850402742624283, -0.026173288002610207, 0.012124505825340748, -0.018726496025919914, 0.00655896682292223, -0.010466186329722404, 0.017224621027708054, -0.022090068086981773, -0.013626380823552608, 0.004356999881565571, 0.00709870271384716, 0.014791897498071194, 0.01777217909693718, -0.013845403678715229, -0.015840081498026848, -0.010912055149674416, -0.004184910096228123, -0.010849477723240852, 0.018147647380828857, 0.014338206499814987, 0.055976107716560364, 0.00802564062178135, 0.05075083673000336, -0.022590693086385727, -0.028911080211400986, 0.008354175835847855, 0.017678312957286835, 0.020572548732161522, 0.022058779373764992, -0.012296595610678196, 0.041833456605672836, -0.006183498073369265, -0.024655770510435104, 0.007974795997142792, -0.008596666157245636, -0.022496825084090233, -0.0007885817904025316, 0.005518605932593346, 0.0062147872522473335, -0.008338531479239464, -0.015308166854083538, 0.014619807712733746, -0.011193657293915749, -0.003932642284780741, 0.001309251063503325, -0.01547243446111679, -0.008369820192456245, -0.024890437722206116, 0.0033381504472345114, 0.0027221471536904573, 0.03551306948065758, 0.018288448452949524, 0.015183011069893837, 0.012945843860507011, -0.022152645513415337, 0.04702743887901306, -0.006371232680976391, 0.002995926421135664, 0.008088218979537487, -0.0005690695834346116, -0.0049554030410945415, -0.029286548495292664, -0.007501549553126097, -0.015167365781962872, -0.01206975057721138, 0.009363248012959957, 0.00016854530258569866, 0.005201804451644421, -0.00836199801415205, 0.009457115083932877, -0.006551144644618034, -0.013399534858763218, -0.02603248879313469, 0.014940520748496056, -0.014588518999516964, 0.024687059223651886, -0.012390462681651115, -0.019180186092853546, -0.022762782871723175, 0.011928949505090714, 0.004693357273936272, 0.010779077187180519, -0.012648597359657288, -0.02540670707821846, 0.018789073452353477, -0.02118268609046936, -0.020588193088769913, 0.007685372605919838, 0.012468685396015644, 0.01472149696201086, -0.02310696244239807, 0.006864035036414862, -0.0139783825725317, -0.0023056117352098227, -0.01880471780896187, 0.03576338291168213, 0.007982618175446987, -0.015714924782514572, -0.004935847595334053, -0.030631978064775467, 0.015738390386104584, 0.013947092927992344, 0.01907067559659481, -0.0018049869686365128, -0.009785650297999382, 0.020869795233011246, -0.022293446585536003, -8.059068932197988e-07, 0.009613560512661934, 0.0013219623360782862, -0.002941170474514365, 0.00640643248334527, 0.03670205548405647, 0.014127004891633987, 0.010513120330870152, -0.012570375576615334, -0.002399478806182742, 0.024421101436018944, -0.01675528474152088, 0.005448205396533012, -0.01290673203766346, 0.012883265502750874, 0.017693957313895226, 0.004165354650467634, -0.022402958944439888, 0.017224621027708054, -0.004454778041690588, -0.005815851967781782, 0.00407930975779891, -0.0005089359474368393, 0.016192082315683365, 0.025954265147447586, -0.007008746732026339, 0.016442395746707916, -0.018538761883974075, -0.030553756281733513, 0.0036549519281834364, -0.01375153660774231, 0.004134065471589565, 0.0015439189737662673, -0.021339131519198418, 0.010513120330870152, -0.0002394345501670614, -0.004106687381863594, -0.00804128497838974, 0.01860133931040764, 0.00922244694083929, -0.007462438195943832, -0.003518062410876155, 0.025719597935676575, 0.030819712206721306, -0.011420502327382565, -0.009597915224730968, 0.00962138269096613, 0.0005773807060904801, 0.003975664731115103, 0.013031888753175735, 0.0069539910182356834, -0.024499325081706047, -0.0032208163756877184, 0.0058549633249640465, 0.0012202728539705276, 0.015276878140866756, 0.006742789875715971, 0.011827260255813599, 0.0005876474315300584, -0.02877027913928032, 0.017709601670503616, 0.027628229930996895, -0.004470422863960266, 0.001151828095316887, -0.004083220846951008, 0.00877657812088728, 0.016192082315683365, 0.01777217909693718, -0.008229020051658154, 0.004669890273362398, -0.012241840362548828, 0.01120930165052414, -0.020165791735053062, 0.02839481085538864, -0.013907982036471367, 0.01587137021124363, -0.010106362402439117, -0.012828510254621506, 0.030006198212504387, 0.014776253141462803, -0.06057559698820114, 0.015120432712137699, -0.01802249252796173, 0.008518443442881107, -0.021479930728673935, -0.0021139662712812424, -0.009073823690414429, 0.01587919145822525, -0.01590265892446041, 0.021448642015457153, -0.008283775299787521, 0.0026791247073560953, 0.00623825378715992, 0.009770005010068417, -0.005862785503268242, -0.017897335812449455, 0.008056930266320705, 0.018476182594895363, -0.009574448689818382, -0.0035649959463626146, -0.019399210810661316, 0.022199580445885658, -0.01176468189805746, -0.008080396801233292, 0.002497257199138403, -0.023435497656464577, 0.011983705684542656, -0.0016866752412170172, 0.0039365533739328384, 0.019101964309811592, 0.00603487528860569, 0.013219622895121574, 0.008760933764278889, -0.007266881410032511, 0.011420502327382565, 0.012562552466988564, -0.009105113334953785, 0.020384814590215683, -0.02198055572807789, -0.000741648196708411, 0.020447393879294395, 0.01356380246579647, -0.014463362284004688, 0.02282536029815674, 0.0016808086074888706, -0.010294096544384956, -0.009504048153758049, 0.013915804214775562, -0.00028820146690122783, 0.008330709300935268, -0.023247763514518738, 0.01925840973854065, -0.0021648111287504435, -0.017662668600678444, 0.020885439589619637, -0.019336631521582603, 0.020165791735053062, 0.03275963291525841, 0.02287229523062706, 0.006629366893321276, 0.002950948430225253, 0.031461138278245926, -0.017928624525666237, -0.012187084183096886, 0.013469935394823551, 0.01692737452685833, -0.007435060106217861, 0.004689446184784174, 0.018366672098636627, 0.011326635256409645, -0.0003361128328833729, 0.003682329785078764, -0.006144386716187, -0.002082677325233817, -0.005682873539626598, -0.027471784502267838, -0.0010882721981033683, -0.0007220925763249397, -0.0002350345312152058, 0.010606987401843071, -0.0036295296158641577, 0.006641100626438856, 0.015973059460520744, 0.00751328282058239, 0.00333423912525177, -0.03136727213859558, -0.00645336601883173, 0.004583845380693674, 0.04380466789007187, 0.009081645868718624, -0.016004348173737526, 0.008150797337293625, -0.04145798832178116, 0.020822862163186073, -0.010106362402439117, 0.03532533720135689, 0.004169265739619732, -0.03867326304316521, -0.009848227724432945, 0.017506223171949387, 0.0013845403445884585, 0.007235592231154442, 0.023153895512223244, -0.03657689690589905, 0.03488728776574135, 0.009105113334953785, -0.033541858196258545, -0.011170189827680588, 0.0034593953751027584, -0.017521867528557777, -0.0018157425802201033, -0.02346678636968136, 0.004728557541966438, 0.008745289407670498, 0.002268455922603607, -0.013047533109784126, -0.032071273773908615, 0.019211474806070328, 0.01844489388167858, 0.016896085813641548, 0.03219643235206604, -0.003388995071873069, -0.001340540125966072, -0.005592917557805777, 0.0017521866830065846, 0.0028101475909352303, -0.0066919452510774136, 0.010661743581295013, 0.00709870271384716, 0.017318489030003548, 0.018757784739136696, -0.02055690437555313, -0.019618233665823936, 0.00984040554612875, 0.007411593105643988, 0.01395491510629654, 0.024468036368489265, -0.015417678281664848, -0.020259657874703407, -0.0005328916013240814, -0.01652061752974987, -0.005119670648127794, -0.0075915055349469185, -0.013462113216519356, -0.022731494158506393, -0.02520332857966423, 0.0007132925093173981, -0.011271880008280277, 0.02015014737844467, 0.007004835642874241, 0.03213385120034218, -0.005483405664563179, -0.00417317682877183, 0.015746213495731354, 0.000803737435489893, -0.038454242050647736, -0.010489653795957565, -0.0030428599566221237, 0.011537836864590645, -0.004145798739045858, 0.017287198454141617, -0.005397360771894455, -0.022794071584939957, -0.017944268882274628, -0.013595091179013252, -0.0034046396613121033, 0.029536861926317215, 0.021964911371469498, 0.016239015385508537, -0.03469955548644066, 0.01821022666990757, -0.033760882914066315, -0.00777532858774066, -0.009120757691562176, 0.02837916649878025, -0.010896410793066025, 0.03892357647418976, -0.02346678636968136, 0.013415179215371609, -0.013509046286344528, -0.013587269000709057, 0.005784562788903713, -0.041145097464323044, -0.014252161607146263, -0.0025676575023680925, -0.021010596305131912, 0.005037536844611168, -0.014486829750239849, -0.009402358904480934, -0.0007866262458264828, 0.009292847476899624, 0.0005255582509562373, -0.024921726435422897, -0.013368246145546436, 0.003995220176875591, 0.002018143655732274, -0.004885002505034208, 0.0068210125900805, 0.019633878022432327, -0.03613885119557381, 0.007744039408862591, 0.01989983394742012, -0.002227389020845294, 0.007020479999482632, 0.015558479353785515, -0.014353850856423378, -0.003832908347249031, 0.04680841788649559, -0.03275963291525841, 0.02628280036151409, -0.020290948450565338, -0.006781901232898235, -0.03213385120034218, -0.010004673153162003, -0.015480256639420986, -0.013696780428290367, -0.034574396908283234, -0.012413930147886276, -0.030162641778588295, 0.014001849107444286, -0.009910806082189083, 0.009441470727324486, 0.0005964474985376, -0.0029372593853622675, -0.015003099106252193, -0.0005710251280106604, 0.02007192373275757, 0.0036999299190938473, 0.016677062958478928, -0.017678312957286835, -0.009887339547276497, -0.01543332263827324, 0.03670205548405647, 0.0069227018393576145, -0.003332283580675721, 0.001973165664821863, 0.013516868464648724, 0.005209626629948616, 0.018554406240582466, 0.025969909504055977, -0.02346678636968136, 0.00429442198947072, -0.0045095342211425304, 0.02902059257030487, 0.01240610796958208, -0.003377261571586132, -0.026376668363809586, 0.008291597478091717, -0.013814114965498447, -0.00620305398479104, 0.006601989269256592, -0.006382965948432684, 0.016802219673991203, 0.023451142013072968, -0.0022723672445863485, -0.013610736466944218, 0.024483680725097656, 0.0058549633249640465, -0.02435852400958538, 0.012351351790130138, -0.02262198179960251, 0.0016827641520649195, 0.0139783825725317, -0.02604813314974308, 0.011287524364888668, 0.007532838266342878, -0.002299745101481676, -0.0015771635808050632, -0.009245913475751877, 0.0013561847154051065, -0.012992776930332184, 0.002364278770983219, -0.007329459767788649, -0.014361673034727573, -0.0059410082176327705, -0.01775653474032879, -0.004673801362514496, 0.015714924782514572, -0.0014275627909228206, -0.003821175079792738, 0.017208976671099663, 0.0006639144849032164, -0.00046933573321439326, 0.0024483681190758944, 0.0028316588141024113, -0.015253410674631596, 0.013571624644100666, -0.007106524892151356, 0.0060544307343661785, 0.0012437396217137575, -0.00856537651270628, -0.01631723903119564, -0.012726820074021816, 0.0015800968976691365, -0.005467761307954788, -0.0006204031524248421, -0.010035961866378784, -0.006038786377757788, 0.014103538356721401, 0.0031113047152757645, 0.017474932596087456, -0.007873106747865677, 0.009832583367824554, -0.0058979857712984085, 0.010857299901545048, 0.012507797218859196, 0.001767831272445619, 0.009762182831764221, 0.007235592231154442, 0.007329459767788649, 0.010129828937351704, 0.0009362269775010645, -0.004576023202389479, -0.015754036605358124, 0.008416754193603992, -0.00962138269096613, -0.013626380823552608, 0.0029822373762726784, 0.04142669960856438, 0.004615134559571743, 0.002258678199723363, -0.012570375576615334, -0.0006722256657667458, -0.004063664935529232, -0.01004378404468298, 0.020400458946824074, 0.010239341296255589, 0.00784964021295309, 0.0065315887331962585, -0.002063121646642685, -0.0016006303485482931, -1.7607728750590468e-06, -0.011506547220051289, 0.04152056574821472, 0.023404208943247795, 0.04026900604367256, -0.0008736489107832313, 0.00890173390507698, -0.012421752326190472, 0.017005598172545433, 0.0014725407818332314, 0.013509046286344528, -0.008917379193007946, 0.018898585811257362, -0.006042697466909885, 0.0038465973921120167, 0.001037427457049489, 0.00013933404989074916, -0.0015644524246454239, 0.0038602864369750023, -0.009034712798893452, -0.02096366323530674, -0.001929165329784155, 0.013728070072829723, 0.008541909977793694, -0.0023740564938634634, -0.0070830583572387695, 0.01673964038491249, 0.004501712042838335, 0.0017805424286052585, 0.029943618923425674, 0.023576298728585243, -0.016426749527454376, -0.033792171627283096, 0.012640775181353092, 0.000670270062983036, -0.006195231340825558, -0.02731533907353878, -0.01991548016667366, 0.005456027574837208, 0.017302842810750008, 0.01795991323888302, 0.026423601433634758, 0.004482156131416559, -0.0062460764311254025, -0.00290988152846694, -0.006187409162521362, 0.00736074848100543, -0.002282144967466593, 0.0031132602598518133, -0.007086969446390867, -0.0006634255987592041, -0.005800207145512104, -0.01949307695031166, -0.004591668024659157, -0.009863872081041336, 0.00169351976364851, -0.004446955863386393, 0.001743386615999043, 0.025297194719314575, 0.00834635365754366, -0.036107562482357025, -0.02054126001894474, 0.014439895749092102, 0.00571416225284338, 0.01608256995677948, 0.0006810256745666265, -0.007794884033501148, -0.0031875718850642443, 0.003909175284206867, -0.012781576253473759, -0.014322562143206596, 0.00703612482175231, 0.02244989201426506, 0.02944299392402172, -0.0026224134489893913, 0.015128254890441895, -0.017459288239479065, -0.013344778679311275, -0.0167239960283041, 0.003844641847535968, -0.007532838266342878, 0.005467761307954788, -0.019117608666419983, -0.014572874642908573, 0.005479494575411081, 0.0015996525762602687, -0.021855400875210762, -0.017208976671099663, 0.007509371731430292, 0.009660493582487106, -0.012343529611825943, 0.007904395461082458, -0.0285512562841177, 0.003934597596526146, 0.0049123805947601795, -0.01650497317314148, 0.007004835642874241, -0.009331958368420601, -0.029974907636642456, 0.0005910696927458048, 0.020040635019540787, 0.006946168839931488, 0.003918953239917755, 0.032478030771017075, -0.00016891196719370782, -0.016145149245858192, -0.020901083946228027, -0.006777990143746138, 0.0072825257666409016, -0.017537511885166168, -0.002724102698266506, 0.01675528474152088, -0.007873106747865677, 0.0014422296080738306, -0.011670814827084541, -0.01491705421358347, 0.014604163356125355, 0.022277802228927612, 0.0007167147705331445, 0.01821022666990757, 0.0031093491706997156, -0.004689446184784174, 0.011537836864590645, 0.011702104471623898, -0.005495138932019472, 0.003823130624368787, -0.006731056608259678, -0.004517356399446726, 0.012257484719157219, 0.01165517047047615, 0.007654083427041769, -0.0007255147793330252, 0.03958064690232277, -0.003535662544891238, -0.009433647617697716, -0.027456140145659447, -0.006367321126163006, 0.03391733020544052, -0.02097930759191513, 0.005702428985387087, 0.0032814389560371637, 0.021057529374957085, 0.0008008040604181588, -0.02880156971514225, 0.037359122186899185, 0.001443207380361855, -0.013368246145546436, -0.0002002010151045397, 0.00034784621675498784, 0.003885708749294281, -0.017521867528557777, 0.0034828621428459883, 0.01822587102651596, 0.009816939011216164, 0.028050631284713745, 0.024405457079410553, -0.005729807075113058, -0.001975121209397912, 0.03202434256672859, 0.008135152980685234, -0.017490578815340996, 0.009668315760791302, -0.005721984896808863, 0.007212125696241856, 0.008807866834104061, -0.0065198554657399654, 0.02116704173386097, -0.012390462681651115, -0.006461188662797213, 0.00021987890067975968, -0.009801294654607773, 0.013642025180161, -0.009550982154905796, -0.012398285791277885, -0.0072707924991846085, 0.010372319258749485, 0.00766972778365016, -0.006601989269256592, 0.009042534977197647, 0.008487154729664326, -0.000629692105576396, -0.006187409162521362, -0.028707701712846756, 0.015175187960267067, 0.0018763651605695486, 0.004615134559571743, -0.004486067220568657, 0.013837581500411034, 0.005448205396533012, 0.0014256072463467717, 0.01522994413971901, -0.0066802119836211205, -0.005921452306210995, 0.004443044774234295, -0.015315989032387733, -0.0196808110922575, 0.009026890620589256, -0.04555685445666313, -0.005596828646957874, 0.013407357037067413, -0.005847140680998564, -0.02586039900779724, 0.028519967570900917, 0.02564137428998947, -0.008753111585974693, 0.02625151164829731, 0.030757134780287743, -0.011819438077509403, 0.004994514398276806, 0.011686459183692932, 0.013571624644100666, 0.0003432017401792109, 0.009167690761387348, -0.03135162591934204, 0.0006370254559442401, 0.011326635256409645, -0.0021804554853588343, 0.027878541499376297, -0.008510621264576912, -0.02748742885887623, 0.015128254890441895, -0.003040904412046075, 0.016145149245858192, 0.022340379655361176, 0.004384377971291542, 0.022950517013669014, -0.043491777032613754, 0.0035669514909386635, -0.0030780602246522903, -0.012765931896865368, -0.00672714551910758, -0.00581976305693388, -0.006113098002970219, 0.012820687144994736, -0.004220110364258289, -0.01356380246579647, -2.8386255507939495e-05, -0.024186434224247932, -0.0006404477171599865, -0.013868870213627815, -0.005530339200049639, 0.03739041090011597, 0.0275343619287014, -0.000705959158949554, 0.015394211746752262, 0.027284050360322, 0.003799663856625557, 0.01905503123998642, -0.0022547671105712652, -0.011921127326786518, 0.014252161607146263, 0.017866047099232674, 0.0017736979061737657, 0.009285025298595428, -0.0007220925763249397, 0.004607312381267548, 0.01556630153208971, 0.011475258506834507, 0.006860123947262764, 0.009973384439945221, 0.006042697466909885, 0.00046762460260652006, -0.012914554215967655, -0.01880471780896187, -0.025563152506947517, 0.004263132810592651, 0.009989028796553612, -0.006856212858110666, -0.00015668968262616545, 0.005655495449900627, -0.00826813094317913, 0.00261850212700665, -0.012421752326190472, 0.0034144173841923475, 0.001254495233297348, -0.00869835540652275, -0.012187084183096886, -0.0061717648059129715, -0.013360423967242241, -0.007787061855196953, 0.00672714551910758, -0.026533113792538643, 0.0064455438405275345, -0.015034387819468975, -0.013720247894525528, 0.017208976671099663, 0.009652671404182911, -0.005530339200049639, -0.01824151538312435, 0.0022528115659952164, -0.015167365781962872, -0.006515944376587868, 0.0007333370740525424, 0.0095431599766016, 0.0015879191923886538, -8.68393326527439e-05, -0.008197730407118797, 0.01717768795788288, 0.009887339547276497, 0.003559129312634468, 0.006105275359004736, 0.012836332432925701, -0.01174903754144907, 0.0019897879101336002, 0.0022743227891623974, 0.0015126299113035202, -0.003388995071873069, -0.00856537651270628, 0.0038641975261271, -0.005960563663393259, 0.024624481797218323, -0.00650029955431819, 0.009762182831764221, 0.004798957612365484, 0.023372918367385864, 0.00391699792817235, -0.02537541836500168, 0.0011469392338767648, -0.01966516673564911, -0.0011176057159900665, -0.027237117290496826, -0.002301700646057725, 0.02282536029815674, -0.001998587977141142, -0.0027847252786159515, -0.0005617361748591065, -0.0037937969900667667, -0.016661418601870537, -0.0029841929208487272, 0.009629204869270325, -0.004407844506204128, -0.0037957527674734592, 0.011882016435265541, 0.007618883159011602, -0.004783313255757093, 0.004732468631118536, 0.018491826951503754, 0.006120920181274414, 0.006218698341399431, 0.004951491951942444, 0.006523766554892063, 0.014760608784854412, -0.01969645544886589, -0.027878541499376297, -0.005495138932019472, -0.022105712443590164, -0.0075171939097344875, -0.010966811329126358, 0.00877657812088728, -0.018100714311003685, -0.006860123947262764, 0.000851648801472038, 0.012171439826488495, 0.018663916736841202, 0.013853225857019424, -0.001852898276410997, 0.0017903202679008245, -0.009128579869866371, -0.0012740509118884802, -0.008088218979537487, -0.006120920181274414, -0.01016111858189106, -0.016645774245262146, -0.007720572873950005, -0.019336631521582603, -0.00046102458145469427, 0.010919878259301186, 0.02158944308757782, -0.020869795233011246, -0.0073568373918533325, -0.0022097891196608543, 0.031023090705275536, -0.005193981807678938, 0.015495900996029377, 0.017083819955587387, 0.011193657293915749, 0.0010022273054346442, -0.010646098293364048, 0.006132653448730707, 0.008534087799489498, -0.0089956009760499, 0.00834635365754366, 0.021260907873511314, -0.019571300595998764, 0.030178287997841835, -0.0041614435613155365, -0.027284050360322, -0.004016731400042772, -0.005581183824688196, 0.003862241981551051, 0.01290673203766346, -0.005589006468653679, -0.016176437959074974, 0.011420502327382565, 0.0030682822689414024, 0.020494326949119568, 0.01860133931040764, -0.011459614150226116, 0.018710851669311523, -0.01589483581483364, 0.010606987401843071, -0.0036764631513506174, -0.011561303399503231, 0.029474282637238503, -0.014416429214179516, 0.007255148142576218, -0.010653921402990818, 0.008385464549064636, 0.0034769955091178417, 0.006066164467483759, -0.00931631401181221, 0.018100714311003685, 0.006437721662223339, 0.013524691574275494, -0.0190863199532032, -0.02453061379492283, 0.019195830449461937, -0.008275953121483326, -0.01993112452328205, 0.010434897616505623, -0.013462113216519356, -0.01174903754144907, -0.011874194256961346, 0.01589483581483364, -0.006981369107961655, 0.0038739752490073442, 0.027815964072942734, -0.00418882118538022, 0.0034809065982699394, 0.010536586865782738, -0.0001510674337623641, -0.005686784628778696, 0.012844154611229897, 0.003275572322309017, 0.013876693323254585, 0.004396111238747835, -0.014416429214179516, 0.005514694843441248, 0.018554406240582466, 0.005514694843441248, -0.0035669514909386635, -0.003928731195628643, -0.015941770747303963, -0.0012124506756663322, 0.0196808110922575, 0.002315389458090067, -0.0012916510459035635, 0.01005160715430975, -0.004900647327303886, -0.011905482970178127, 0.013477757573127747, -0.009590093046426773, 0.0021530776284635067, 0.0015654301969334483, 0.008549732156097889, -0.0017570756608620286, 0.006117009092122316, 0.0036099739372730255, -0.019602589309215546, -0.008408932015299797, -0.016270305961370468, -0.0026967248413711786, -0.006946168839931488, -0.015558479353785515, 0.00646509975194931, 0.0008257375448010862, 0.00455646775662899, -0.02284100465476513, -0.0003468684444669634, 0.009535337798297405, 0.01143614761531353, 0.034574396908283234, 0.0013464068761095405, -0.0022958340123295784, 0.024202078580856323, 0.006492477376013994, 0.012758109718561172, 0.00740768201649189, -0.01300842221826315, 0.012625130824744701, -0.014885764569044113, 0.008690533228218555, 0.01609821617603302, -0.0031758383847773075, 0.008166441693902016, -0.00032071274472400546, 0.0216207318007946, -0.008909556083381176, 0.0015419634291902184, -0.006418166216462851, -0.006156120449304581, -0.0034985067322850227, -0.01670835167169571, -0.022715849801898003, 0.028473034501075745, 0.005878429859876633, 0.001746320049278438, 0.013446468859910965, 0.01322744507342577, -0.0022958340123295784, 0.04784095659852028, -0.006770167965441942, -0.0005573361995629966, 0.008494976907968521, 0.0002666902437340468, 0.021010596305131912, -0.02116704173386097, 0.00771666131913662, -0.02393612265586853, 0.003332283580675721, 0.007043947000056505, 0.008846978656947613, 0.007349015213549137, 0.01025498565286398, 0.02473399229347706, 0.00847150944173336, -0.01697430945932865, -0.013141400180757046, 0.009535337798297405, 0.009073823690414429, -0.003879841882735491, -0.01630159467458725, 0.003138682572171092, 0.0028062365017831326, 0.003961975686252117, 0.02984975278377533, -0.005804118234664202, 0.015918303281068802, -0.013274379074573517, 0.02140170894563198, -0.015769680961966515, -0.0028942369390279055, -0.019133253023028374, -0.003967842552810907, 0.007990440353751183, -0.005017980933189392, 0.002508990466594696, 0.004380466882139444, 0.004454778041690588, 0.031461138278245926, 0.011185835115611553, 0.0023075672797858715, -0.03739041090011597, -0.00815861951559782, -0.010528764687478542, -0.004767668899148703, 0.02709631621837616, 0.00417317682877183, -0.015448967926204205, 0.02792547643184662, 0.011342279613018036, -0.01821022666990757, 0.0028297032695263624, 0.01778782345354557, -0.007521104998886585, -0.01268770918250084, 0.012218372896313667, -0.002125699771568179, -0.017647022381424904, -0.000314846052788198, 0.0015488078352063894, 0.0167239960283041, 0.0073998598381876945, -0.027393560856580734, 0.0029822373762726784, -0.004091043025255203, 0.000763159419875592, 0.00428268825635314, -0.005197893362492323, -0.018898585811257362, 0.01611386053264141, 0.011326635256409645, 0.022543760016560555, 0.005053181201219559, -0.0041184211149811745, -0.00025031238328665495, 0.0026634803507477045, 0.002268455922603607, -0.01971209980547428, 0.0005236026481725276, -0.017631378024816513, -0.005096203647553921, -0.018679561093449593, -0.00571416225284338, -0.0007528927526436746, -0.012296595610678196, -0.0025129017885774374, 0.0016993863973766565, -0.01120930165052414, -0.006285187788307667, 0.0016856974689289927, -0.0010071162832900882, -0.004431311506778002, 0.01907067559659481, -0.006609811447560787, -0.009214624762535095, -0.006355587858706713, 0.004533000756055117, -0.0055498951114714146, 0.010912055149674416, -0.004705090541392565, -0.002299745101481676, -0.010301918722689152, 0.019399210810661316, -0.007732306141406298, 0.021260907873511314, -0.013728070072829723, -0.010090718045830727, -0.03174274042248726, -0.00014092294441070408, -0.0008350264979526401, -0.007618883159011602, -0.00217067776247859, 0.008275953121483326, 0.0016993863973766565, 0.02790983021259308, -0.006113098002970219, 0.017866047099232674, -0.014236517250537872, -0.017443643882870674, -0.029552506282925606, 0.010450541973114014, -0.005788473878055811, -0.02453061379492283, 0.01989983394742012, 0.011600414291024208, -0.026110710576176643, -0.0220431350171566, -0.0052370042540133, -0.00354935135692358, 0.0004600467800628394, -0.013798470608890057, -0.004849802702665329, 0.010372319258749485, -0.014189583249390125, -0.013196156360208988, -0.001540985656902194, -0.013555980287492275, -0.01888294145464897, -0.004376555792987347, 0.0021315664052963257, 2.245844734716229e-05, -0.008518443442881107, 0.02434287965297699, -0.01281286496669054, -0.001996632432565093, 0.007759683765470982, -0.005017980933189392, -0.009989028796553612, 0.006695856340229511, -0.00962138269096613, -0.0004512467421591282, -0.010333208367228508, -0.00922244694083929, 0.010325386188924313, 0.004775491077452898, -0.020400458946824074, -1.569035703141708e-05, 0.019805967807769775, 0.0015488078352063894, 0.01864827238023281, -0.0032814389560371637, 0.0026634803507477045, 0.0006301809917204082, -0.014486829750239849, -0.007392037659883499, -0.017725246027112007, -0.009472759440541267, 0.01738106645643711, -0.011490902863442898, -0.004736379720270634, -1.5797302694409154e-05, 0.003692107740789652, 0.0010237385286018252, -0.0024679237976670265, -0.011248412542045116, 8.87948990566656e-05, -0.02964637242257595, -0.016012171283364296, -0.0005720029002986848, -0.0032227719202637672, 0.029098814353346825, 0.020384814590215683, -0.01650497317314148, -0.008127329871058464, -0.019117608666419983, -0.03407377377152443, -0.022356025874614716, -0.004212288185954094, -0.01711510866880417, 4.070020804647356e-05, -0.0035434847231954336, -0.009926450438797474, 0.030131353065371513, 0.006617633625864983, 0.020854150876402855, -0.0022547671105712652, -0.005225270986557007, -0.0026517468504607677, 0.005084470380097628, 0.006699767429381609, -0.0203535258769989, -0.03848553076386452, -0.0014588518533855677, 0.003257972188293934, 0.006300832144916058, 0.011569125577807426, -0.0048263357020914555, -0.006746700964868069, -0.023451142013072968, 0.03760943561792374, -0.0011645392514765263, 0.011506547220051289, -0.0066059003584086895, -0.004834157880395651, 0.0092068025842309, 0.008925201371312141, -0.008150797337293625, 0.01174903754144907, -0.009175513871014118, 0.017615733668208122, -0.007857462391257286, 0.001368895871564746, 0.02290358394384384, -0.019430499523878098, -0.009128579869866371, 0.015331633388996124, -0.009363248012959957, -0.01863262802362442, -0.004165354650467634, 0.004814602434635162, 0.02140170894563198, -5.1883598644053563e-05, -0.017068175598978996, 0.01165517047047615, 0.0015664079692214727, 0.020040635019540787, 0.001151828095316887, 0.0031641051173210144, 0.006261720787733793, -0.0032208163756877184, 0.013806292787194252, 0.004740290809422731, -0.002520723966881633, 0.0027866808231920004, 0.0013972516171634197, 0.01005160715430975, -0.004501712042838335, 0.02564137428998947, -0.006676300894469023, 0.022152645513415337, -0.012187084183096886, 0.023341629654169083, 0.013814114965498447, -0.011303168721497059, -0.007333370856940746, 0.01652061752974987, 0.025531863793730736, 0.0014304962242022157, 0.0074311490170657635, -0.013845403678715229, -0.0007206259178929031, -0.001552719040773809, 0.014330384321510792, 0.014885764569044113, -0.0002852681209333241, 0.033322837203741074, -0.02032223716378212, -0.0216207318007946, -0.038860999047756195, -0.01260948646813631, -0.04080091789364815, 0.0014872075989842415, 0.04590103402733803, -0.0008907601004466414, 0.010387963615357876, 0.01633288338780403, -0.007724483963102102, -0.002192188985645771, -0.0038720197044312954, 0.011068500578403473, 0.00826813094317913, 0.013070999644696712, 0.013900159858167171, -0.013939270749688148, -0.014369495213031769, 0.012938021682202816, 0.00549905002117157, 7.87115131970495e-05, 0.017506223171949387, 0.003527840133756399, -0.008080396801233292, 0.017490578815340996, -0.005479494575411081, 0.027002448216080666, 0.010818188078701496, 0.003961975686252117, 0.006566789001226425, 0.006414255127310753, -0.013595091179013252, 0.008494976907968521, -0.00364908529445529, -0.0074741714634001255, 0.007744039408862591, 0.007129991892725229, -0.025688309222459793, -0.015269055962562561, -0.006124831270426512, -0.005768918432295322, 0.005526428110897541, -0.01153001468628645, -0.01143614761531353, -0.01777217909693718, -0.009066001512110233, -0.00802564062178135, 0.014948342926800251, 0.006015319377183914, 0.0006971590919420123, 0.01736542209982872, 0.01152219157665968, 0.01716204360127449, 0.0021550331730395555, -0.005456027574837208, -0.0080647524446249, -0.02135477587580681, -0.025140751153230667, 0.010028139688074589, 0.019164541736245155, -0.03388603776693344, -0.015495900996029377, 0.002063121646642685, -0.015300344675779343, 0.0044352225959300995, 0.00378793035633862, -0.00338703952729702, -0.00012100061576347798, -0.0068366569466888905, 0.007141725160181522, 0.011827260255813599, -0.01142832450568676, -0.002172633307054639, 0.014877942390739918, 0.009597915224730968, -0.012570375576615334, -0.000471046834718436, 0.023873543366789818, -0.0011127167381346226, 0.003832908347249031, -0.0032012606970965862, 0.015081320889294147, -0.013329134322702885, 0.03219643235206604, -0.006077897734940052, 0.0005201804451644421, 0.0233103409409523, -0.005330871790647507, -0.001834320486523211, -0.011279702186584473, 0.008424576371908188, 0.009785650297999382, 0.012445218861103058, 0.005264382343739271, 0.01755315624177456, 0.009770005010068417, 0.009989028796553612, -0.018069425597786903, -0.007767506409436464, -0.004059753846377134, 0.02141735330224037, 0.001607474870979786, 0.002923570340499282, -0.013642025180161, -0.01695866510272026, 0.0023545008152723312, 0.013297845609486103, -0.0018851651111617684, 0.01928969845175743, 0.00974653847515583, -0.00529567152261734, 0.013157044537365437, -0.014713674783706665, -0.014885764569044113, -0.014541584998369217, 0.028003698214888573, 0.0012095172423869371, 0.00974653847515583, 0.004607312381267548, 0.010567876510322094, -0.007603238802403212, -0.007364659570157528, 0.0003168016264680773, -0.03338541463017464, -0.02794112078845501, -0.04418013617396355, -0.003877886338159442, 0.004533000756055117, 0.01800684817135334, -0.002941170474514365, -0.007783150766044855, -0.00931631401181221, 0.008518443442881107, 0.01888294145464897, 0.005397360771894455, 0.009762182831764221, -0.025969909504055977, 0.0027397472877055407, 0.000932804774492979, -0.008800044655799866, 0.002724102698266506, 0.003944375552237034, -0.02183975651860237, -0.002747569466009736, 0.007411593105643988, -0.012335707433521748, -0.007302081678062677, 0.015988703817129135, 0.0006991146947257221, 0.01544114574790001, -0.007352926302701235, -0.0027534363325685263, 0.03257190063595772, -0.01589483581483364, -0.020384814590215683, -0.01038014143705368, 0.006469010841101408, -0.004583845380693674, 0.006601989269256592, 0.046057477593421936, -0.008831334300339222, 0.008956490084528923, -0.022356025874614716, -0.012343529611825943, 0.015276878140866756, -0.007888751104474068, -0.005702428985387087, 0.007963063195347786, 0.015714924782514572, 0.013102289289236069, -0.0009577382006682456, 0.01271899789571762, 0.007693194784224033, 0.004036287311464548, -0.010090718045830727, -0.022105712443590164, 0.0007719594868831336, -0.013634203001856804, 0.03617013990879059, 0.009128579869866371, -0.0209480170160532, -0.0038485529366880655, -0.013376068323850632, -0.007118258625268936, 0.01697430945932865, -0.006144386716187, -0.001266228617168963, -0.017208976671099663, 0.002921614795923233, 0.0007792928372509778, -0.007219947874546051, 0.0017160087591037154, 0.022496825084090233, 0.016145149245858192, 0.008221197873353958, -0.008408932015299797, -0.002814058680087328, -0.007736217230558395, 0.013485579751431942, -0.01988418959081173, -0.005061003379523754, 0.007873106747865677, -0.012390462681651115, -0.005964474752545357, 0.015800969675183296, -0.011310990899801254, -0.01860133931040764, 0.04064447432756424, 0.009394536726176739, 0.013516868464648724, -0.001829431508667767, -0.009167690761387348, -0.0004453800502233207, 0.0013708514161407948, 0.006844479124993086, 0.019618233665823936, 0.015214299783110619, 0.009801294654607773, 0.006785812322050333, -0.003189527429640293, -0.015495900996029377, -0.018038136884570122, 0.014682386070489883, -0.00020472327014431357, -0.00317192729562521, -0.019133253023028374, -0.005765007343143225, 0.005092292558401823, 0.021667666733264923, 0.011490902863442898, -0.006160031538456678, -0.049655720591545105, 0.017193332314491272, -0.0011909394524991512, 0.02226215787231922, 0.012578197754919529, 0.04089478775858879, 0.007650172337889671, 0.01197588350623846, 0.009120757691562176, -0.010747788473963737, -0.007720572873950005, 0.004529089666903019, 0.00655896682292223, 0.012453041039407253, -0.010489653795957565, -0.0019927213434129953, -0.0060114082880318165, -0.010114184580743313, -0.004415667150169611, 0.003181705018505454, 0.008768755942583084, -0.008870445191860199, 0.007990440353751183, -0.006699767429381609, -0.02690858207643032, 0.014799719676375389, -0.008815689012408257, 0.0018616983434185386, 0.0023408120032399893, 0.01016111858189106, 0.014009671285748482, 0.024718347936868668, -0.0051157595589756966, -0.01070085447281599, 0.02015014737844467, -0.017083819955587387, 0.025500575080513954, 0.007904395461082458, -0.052596889436244965, -0.027565650641918182, -0.008729644119739532, 0.01427562814205885, 0.03520017862319946, 0.019008096307516098, -0.00794741790741682, -0.018538761883974075, 0.018476182594895363, 0.0025344130117446184, 0.014471184462308884, 0.006637189537286758, -0.0040753986686468124, -0.0013913848670199513, -0.010833833366632462, 0.010059429332613945, -0.0036099739372730255, 0.0038954864721745253, 0.017271554097533226, -0.00994991697371006, -0.0031113047152757645, 0.0058236741460859776, 0.0017492533661425114, 0.013149222359061241, -0.021292196586728096, -0.012007172219455242, 0.002792547456920147, -0.005424738861620426, 0.004364822059869766, 0.01427562814205885, 0.015237766318023205, 0.007912217639386654, 0.013211800716817379, -0.01313357800245285, 0.02395176701247692, 0.0015654301969334483, 0.0216207318007946, -0.0018920096335932612, -0.018507471308112144, -0.02606377750635147, -0.0006673367461189628, -0.0011322724167257547, 0.005123581737279892, 0.013446468859910965, 0.00802564062178135, 0.00962138269096613, 0.003854419570416212, 0.01903938502073288, 0.02202749066054821, -0.00847933255136013, -0.010208051651716232, -0.004067576490342617, 0.0020552994683384895, -0.013524691574275494, 0.00857319962233305, -0.019414855167269707, 0.008940845727920532, -0.0003546907100826502, -0.007493726909160614, 0.001161605934612453, 0.00746634928509593, 0.004611223470419645, 0.01332131214439869, 0.014173938892781734, -0.006590256001800299, -0.014025315642356873, 0.016254659742116928, 0.0184136051684618, 0.009668315760791302, 0.01991548016667366, -0.009699605405330658, 0.00783790647983551, 0.0035689070355147123, 0.006598078180104494, -0.004744201898574829, 0.0022606337442994118, 0.00858884397894144, -0.012453041039407253, -0.0031660606618970633, -0.0037390412762761116, 0.010520942509174347, -0.0006443588645197451, 0.0017629422945901752, -0.007165192160755396, -0.002454234752804041, 0.004693357273936272, 0.014166116714477539, 0.004411755595356226, -0.004427400417625904, 0.014870120212435722, 0.008440220728516579, -0.0006252920720726252, -0.005369982682168484, 0.0051861596293747425, -0.001323917880654335, -0.000763159419875592, 0.0004233799409121275, 0.018053781241178513, 0.008432398550212383, 0.009574448689818382, 0.00826813094317913, -0.020807217806577682, -0.009089468978345394, 0.016598839312791824, -0.010356674902141094, -0.0069539910182356834, 0.0016778751742094755, -0.0001681786379776895, -0.020916728302836418, 0.017287198454141617, 0.005671139806509018, -0.01569928042590618, 0.01880471780896187, -0.010215873830020428, 0.00396393146365881, 0.0209480170160532, -0.01631723903119564, 0.010763432830572128, 0.020869795233011246, 0.005788473878055811, 0.004321799613535404, -0.025484930723905563, 0.020666416734457016, -0.010528764687478542, 0.0006961813196539879, -0.0028160144574940205, -0.001149872550740838, -0.01049747597426176, 0.01628595031797886, -0.017834758386015892, -0.017208976671099663, -0.003797708312049508, -0.01131881307810545, -0.0171463992446661, -0.008839156478643417, 0.016270305961370468, -0.023764032870531082, -0.015589768067002296, 0.006504211109131575, 0.021432997658848763, -0.01088858861476183, -0.018961163237690926, -0.0042318436317145824, 0.013196156360208988, 0.006261720787733793, 0.017881691455841064, 0.005170515272766352, 0.010239341296255589, 0.01692737452685833, 0.011506547220051289, 0.008487154729664326, -0.015761857852339745, 0.031445492058992386, -0.0064025213941931725, -0.005456027574837208, 0.01608256995677948, -0.01131881307810545, -0.022934872657060623, 0.009895161725580692, -0.0021159218158572912, 0.004255310632288456, -0.010458364151418209, -0.0036080183926969767, -0.00043535776785574853, 0.00025275684311054647, 0.02199620008468628, -0.013462113216519356, -0.02158944308757782, 0.03160193935036659, 0.005592917557805777, 0.003492640098556876, 0.018382316455245018, -0.0023603676818311214, -0.0042318436317145824, 0.036326583474874496, 0.009245913475751877, 0.009167690761387348, 0.0018020536517724395, -0.03282221034169197, 0.03071020171046257, 0.018460538238286972, -0.0028961924836039543, 0.02262198179960251, -0.00783790647983551, -0.008260308764874935, 0.0119524160400033, 0.006007497198879719, -0.0032071275636553764, 0.0033088168129324913, -0.016364172101020813, -0.013203978538513184, 0.00869835540652275, 0.006007497198879719, -0.013086644001305103, -0.017412355169653893, -0.012421752326190472, 0.004767668899148703, 0.01293019950389862, 0.01196023914963007, -0.004830246791243553, 0.01886729523539543, -0.003400728339329362, 0.008307242766022682, -4.4764117774320766e-05, 0.00952751561999321, -0.008745289407670498, -0.006547233555465937, 0.009926450438797474, 0.01332131214439869, 0.00211787736043334, -0.007618883159011602, -0.003819219535216689, 0.02072899416089058, 0.021104462444782257, 0.005733718164265156, -0.007137814071029425, 0.010309741832315922, -0.008307242766022682, 0.008182086050510406, 0.005096203647553921, -0.03836037218570709, 0.01648932881653309, 0.003254061099141836, -0.01461198553442955, 0.002399478806182742, -0.021245263516902924, -0.010106362402439117, -0.006449454929679632, -0.014486829750239849, 0.006777990143746138, 0.004724646452814341, -0.016411105170845985, -0.013493401929736137, 0.0029392149299383163, 0.024937370792031288, -0.003422239562496543, 0.050500523298978806, 0.013063177466392517, 0.031445492058992386, 0.0063751437701284885, 0.00237992312759161, -0.012132328934967518, 0.021448642015457153, 0.0034593953751027584, -0.003126949304714799, 0.004384377971291542, 0.004470422863960266, 0.002248900244012475, 0.002303656190633774, 0.02119833044707775, 0.0011821393854916096, 0.013915804214775562, 0.0018851651111617684, -0.007661905605345964, -0.008721821941435337, 0.0037194855976849794, -0.027643874287605286, 0.00014080072287470102, -0.003058504546061158, -0.013610736466944218, -0.008549732156097889, -0.003289261134341359, 0.0019467654637992382, -0.012304417788982391, -0.022809715941548347, 0.01290673203766346, 0.019852900877594948, -0.005491227842867374, -0.018945518881082535, 0.012124505825340748, 0.027581296861171722, 0.003076104447245598, -0.0068366569466888905, 0.009449292905628681, 0.010958989150822163, 0.0011048945598304272, -0.036514319479465485, -0.005671139806509018, -0.0035865071695297956, 0.020619483664631844, -0.014314739964902401, 0.018742140382528305, -0.004411755595356226, 0.020369170233607292, -0.00043682445539161563, -0.011467436328530312, -0.006058341823518276, 0.014604163356125355, -0.010411431081593037, -0.00019323431479278952, 0.0381726399064064, 0.01290673203766346, 2.8294589355937205e-05, 0.000507958116941154, -0.017302842810750008, 0.017052531242370605, -0.0003260905505158007, -0.01395491510629654, 0.0035473958123475313, 0.0010286275064572692, -0.009644849225878716, 0.024029988795518875, -0.0033381504472345114, 0.01513607706874609, -0.006719323340803385, 0.0003468684444669634, 0.01459634117782116, -0.010419253259897232, -0.019618233665823936, -0.010294096544384956, 0.006762345787137747, -0.02498430572450161, -0.004806780256330967, -0.005299582611769438, -0.022293446585536003, -0.004533000756055117, -0.007685372605919838, -0.009770005010068417, -0.005240915808826685, -0.003508284455165267, -0.02349807508289814, -0.009871695190668106, -0.000420935481088236, -0.0014480962418019772, 0.007802706211805344, 0.01778782345354557, 0.0008628932991996408, -0.003944375552237034, -0.011357924900949001, 0.0022097891196608543, 0.015315989032387733, 0.01907067559659481, -0.007462438195943832, -0.0006531588733196259, 0.008964312262833118, 0.012077572755515575, -0.010427075438201427, -0.008518443442881107, -0.0063751437701284885, 0.0022547671105712652, -0.001264273072592914, -0.029255259782075882, -0.0184136051684618, -0.0161295048892498, -0.009183336049318314, 0.00804128497838974, 0.007235592231154442, 0.005471672397106886, -0.017318489030003548, 0.0025930798146873713, 0.01669270731508732, 0.015104788355529308, -0.003441795241087675, -0.0039267754182219505, 0.003277527866885066, 0.000911293551325798, -0.01692737452685833, 0.014604163356125355, 0.030131353065371513, 0.0028942369390279055, -0.01734977774322033, 0.009597915224730968, 0.01817893795669079, 0.009152046404778957, 0.014322562143206596, -0.009292847476899624, -0.006253898609429598, -0.030960513278841972, -0.0035689070355147123, 0.0022508560214191675, -0.01734977774322033, -0.008940845727920532, -0.008221197873353958, -0.010693032294511795, 0.01736542209982872, 0.00502189202234149, -0.004411755595356226, 0.01206975057721138, 0.006277365144342184, 0.006731056608259678, 0.004102776292711496, 0.00214721099473536, -0.0011762726353481412, 0.00963702704757452, 0.012101039290428162, 0.01886729523539543, -0.012523441575467587, -0.032290298491716385, -0.009269380941987038, 0.004517356399446726, -0.0021784999407827854, 0.011647348292171955, -0.007974795997142792, 0.0006458255229517817, 0.01817893795669079, 0.014776253141462803, 7.571704918518662e-05, -0.009285025298595428, 0.0053426050581038, 0.0160512812435627, -0.006414255127310753, 0.0044352225959300995, -0.003488728776574135, 0.03510631248354912, 0.002268455922603607, 0.0017629422945901752, -0.010200229473412037, -0.002151122083887458, 0.013907982036471367, -0.0017394755268469453, -0.0003258461074437946, 0.03516888990998268, 0.0027749475557357073, 0.0019633877091109753, -0.008150797337293625, -0.007047858089208603, 0.024076921865344048, -0.0044782450422644615, 0.010747788473963737, -0.000462735682958737, 0.006707589607685804, 0.014424251392483711, -0.004705090541392565, 0.020682061091065407, 0.0018880985444411635, 0.01184290461242199, 0.02262198179960251, 0.003854419570416212, -0.0016847196966409683, 0.00942582543939352, 0.0009548048838041723, 0.024014344438910484, 0.004779402166604996, 0.00039673535502515733, -0.01902374066412449, 0.0051861596293747425, 0.004697268363088369, 0.0008961379062384367, -0.008096041157841682, -0.0031641051173210144], "82829188-ab31-45aa-91e9-7d523c175c66": [-0.041211843490600586, 0.014818597584962845, 0.0017980685224756598, 0.015976062044501305, -0.014453082345426083, -0.021641548722982407, 0.020149027928709984, 0.018626047298312187, -0.013767741620540619, 0.014605380594730377, -0.013760126195847988, -0.011026376858353615, -0.02375849150121212, -0.01145281083881855, -0.021946145221590996, 0.014780523255467415, -0.011163445189595222, 0.009069346822798252, 0.0042719594202935696, -0.04270436614751816, 0.0657927468419075, -0.02878432534635067, -0.05686808004975319, 0.0023206411860883236, -0.0014306495431810617, 0.0047402759082615376, -0.02453521080315113, -0.0009480551816523075, -0.009960290975868702, 0.00040882499888539314, 0.02421538531780243, 0.002314929850399494, 0.04282620549201965, -0.02846449986100197, -0.010737010277807713, -0.04041989520192146, 0.0003362454881425947, 0.003369593759998679, 0.011171059682965279, -0.050654321908950806, -0.0537002831697464, 0.032073963433504105, 0.0020160451531410217, 0.00013028619287069887, -0.04246068745851517, 0.015100348740816116, 0.04057219251990318, 0.0030821312684565783, -0.04282620549201965, -0.01083600427955389, 0.010417184792459011, -0.02081914059817791, -0.006457436364144087, -0.006971442140638828, -0.004945878405123949, -0.03591187298297882, 0.028190363198518753, 0.08967307209968567, 0.012892027385532856, -0.039962999522686005, -0.01350883487612009, 0.0024577092844992876, -0.004584170412272215, -0.016113130375742912, 0.014894746243953705, 0.006617349106818438, -0.015069888904690742, -0.00681152893230319, -0.021078046411275864, 0.0102115822955966, 0.03767853230237961, 0.01179548166692257, -0.02081914059817791, 0.024032628163695335, 0.0021531132515519857, 0.004237692337483168, 0.06216805428266525, -0.003858851036056876, 0.024093547835946083, 0.009937445633113384, 0.00298884860239923, 0.0026747339870780706, 0.06445252150297165, 0.011643183417618275, 0.11050744354724884, 0.03405383601784706, -0.025129172950983047, -0.07267661392688751, -0.022113673388957977, -0.03073374181985855, 0.015443019568920135, 0.023469125851988792, -0.0025110135320574045, 0.021245574578642845, 0.016143590211868286, 0.011407122015953064, 0.03615555167198181, 0.004709816537797451, 0.0282512828707695, -0.022113673388957977, -0.01702691800892353, 0.02593635395169258, -0.023118840530514717, -0.0007605382706969976, -0.007432143669575453, -0.021078046411275864, -0.021702468395233154, -0.003489528549835086, -0.018382370471954346, 0.009549085982143879, 0.015366870909929276, -0.02499210461974144, -0.01763611100614071, 0.0069029079750180244, -0.02755071222782135, -0.004409027751535177, -0.02205275371670723, 0.01233613956719637, 0.013356536626815796, -0.03414521738886833, 0.03752623125910759, -0.017681799829006195, -0.0028441655449569225, 0.0031944510992616415, -0.016143590211868286, 0.022783784195780754, 0.009000813588500023, 0.002570029115304351, 0.003828391432762146, -0.007154199760407209, 0.0052276295609772205, -0.01250366773456335, 0.025251012295484543, 0.03420613706111908, 0.00479738786816597, 0.010599941946566105, 0.02910415269434452, 0.05299971252679825, -0.012671195901930332, 0.0472123883664608, -0.02895185351371765, -0.05595429241657257, -0.014392162673175335, 0.002905084751546383, 0.005871088709682226, -0.012983405962586403, -0.028753867372870445, 0.022692404687404633, -0.00040644535329192877, 0.02886047586798668, -0.0615893192589283, -0.042917583137750626, 0.01443023793399334, -0.011780251748859882, 0.018382370471954346, -0.04575032740831375, 0.0037293978966772556, 0.0349980853497982, 0.00010880979971261695, 0.020621152594685555, -0.01647864654660225, -0.04727330803871155, 0.010516178794205189, 0.017438123002648354, 0.03801358491182327, 0.016067441552877426, 0.02592112310230732, 0.02515963278710842, -0.02514440380036831, 0.024245845153927803, 0.03667336329817772, -0.040815871208906174, 0.031677987426519394, 0.002254010643810034, -0.012511282227933407, 0.025433769449591637, 0.03688658028841019, 0.035790033638477325, 0.005566492676734924, -0.007272230461239815, -0.0004219131078571081, 0.022920852527022362, -0.001091786427423358, -0.013432685285806656, -0.011582264676690102, 0.011772637255489826, 0.02631709910929203, 0.03713025897741318, 0.033170510083436966, -0.015283106826245785, -0.0139657286927104, -0.024717969819903374, -0.0005991975194774568, -0.0014039974194020033, 0.015564857982099056, -0.017118297517299652, -0.0029431593138724566, -0.010066899470984936, 0.009099806658923626, 0.0010289634810760617, -0.019082942977547646, -0.054279014468193054, -0.008300242014229298, 0.031221095472574234, -0.03676474094390869, 0.04788249731063843, -0.044379644095897675, -0.016691863536834717, 0.004420449957251549, -0.03743485361337662, 0.02817513421177864, -0.021245574578642845, 0.007470217999070883, 0.0010851233964785933, 0.0036475376691669226, 0.01079792995005846, -0.05239051952958107, 0.008840899914503098, 0.015031814575195312, -0.0015886587789282203, -0.025586068630218506, 0.024276304990053177, -0.013166164048016071, -0.009305409155786037, -0.04017621651291847, -0.037343475967645645, -0.02228120155632496, 0.04057219251990318, -0.010561867617070675, 0.018123464658856392, 0.03606417030096054, -0.03128201514482498, 0.012892027385532856, -0.0544617734849453, -0.026103880256414413, 0.028830016031861305, 0.020103339105844498, 0.006366057321429253, 0.006476473528891802, -0.0168593917042017, 0.010409570299088955, 0.0023758490569889545, -0.004744083620607853, 0.0009323494741693139, 0.02229643054306507, 0.01634157821536064, -0.0015382100827991962, 0.029134612530469894, -0.008833285421133041, -4.3398988054832444e-05, 0.003234429284930229, 0.021915685385465622, -0.0062213740311563015, 0.0012393251527100801, -0.01593037322163582, 0.01412564143538475, 0.010401954874396324, 0.01740766316652298, 0.014658684842288494, -0.010988302528858185, -0.011231979355216026, 0.015808533877134323, -0.0042871893383562565, 0.060249097645282745, 0.03539406135678291, -0.016889851540327072, -0.00812509935349226, -0.043770451098680496, 0.0028727215249091387, 0.030657591298222542, -0.04014575853943825, 0.029621966183185577, 0.014925206080079079, -0.023332057520747185, 0.017544731497764587, -0.00024331988242920488, 0.010599941946566105, -0.0004200093972031027, -0.025784054771065712, -0.025129172950983047, -0.03253085911273956, -0.015298336744308472, 0.006373672280460596, 0.03798312693834305, -0.0018656507600098848, -0.015915144234895706, 0.0019322811858728528, -0.02121511474251747, -0.007721509784460068, 0.014605380594730377, 0.007245578337460756, 0.018153924494981766, 0.020468853414058685, 0.01920478045940399, 0.006918137893080711, 0.018458520993590355, 0.009305409155786037, -0.005684523843228817, -0.03713025897741318, 0.03173890709877014, 0.009549085982143879, -0.040754951536655426, -0.01670709252357483, -0.017285825684666634, 0.038500938564538956, -0.04154689982533455, 0.05516234412789345, 0.02095620706677437, 0.0066516161896288395, 0.03170844912528992, 0.03289637342095375, -0.030764199793338776, -0.005277126561850309, -0.016372038051486015, -0.010424799285829067, 0.01400380302220583, -0.014536846429109573, 0.008102254942059517, 0.004561326000839472, -0.03685612231492996, 0.002394886454567313, 0.008422080427408218, -0.06877778470516205, 0.05068478360772133, 0.04255206882953644, -0.04800433665513992, 0.011612724512815475, -0.003523795399814844, -0.002817513421177864, -0.028662487864494324, 0.0017171602230519056, -0.03722163662314415, -0.020377475768327713, 0.02011856809258461, -0.005022027064114809, -0.03984116390347481, -0.05223822221159935, -0.02847973071038723, 0.0071427770890295506, -0.009076962247490883, -0.005444654263556004, 0.00735218683257699, -0.012739729136228561, -0.014993740245699883, 0.017453353852033615, 0.03907967358827591, -0.011894475668668747, 0.0036703823134303093, -0.012983405962586403, 0.0018409023759886622, 0.0008604838512837887, -0.017377205193042755, 0.005471306387335062, 0.035790033638477325, 0.013493604958057404, -0.023271137848496437, 0.00792711228132248, 0.014239865355193615, 0.002665215404704213, -0.019859662279486656, -0.0314343124628067, -0.014300784096121788, 0.013653517700731754, 0.024687509983778, 0.016920309513807297, 0.020621152594685555, 0.01261789072304964, -0.0021550171077251434, 0.013569753617048264, -0.02895185351371765, -0.0193418487906456, -0.0026119111571460962, -0.012473207898437977, 0.01841283030807972, -0.036186009645462036, -0.0385618582367897, 0.029926560819149017, 0.00614903261885047, -0.003891214495524764, 0.014110411517322063, -0.005326623562723398, 0.002246395917609334, -0.01559531781822443, 0.01250366773456335, 0.045841705054044724, 0.000797184940893203, 0.022067982703447342, -0.0042871893383562565, -0.017163986340165138, -0.0012431326322257519, -0.04852214828133583, -0.009023657999932766, -0.018930643796920776, -0.005220014601945877, -0.016509106382727623, -0.0193418487906456, 0.0035618699621409178, 0.007881422527134418, 0.0064003244042396545, -0.02863202802836895, -0.012549357488751411, 0.008391620591282845, 0.011513730511069298, 0.005174325313419104, 0.03173890709877014, -0.04419688507914543, 0.0034838172141462564, -0.007089472841471434, 0.018900183960795403, 0.018230073153972626, -0.006655423436313868, -0.0016495779855176806, 0.06192437559366226, 0.015024200081825256, 0.029423978179693222, 0.007013323716819286, 0.011726947501301765, 0.036795202642679214, -0.03642968833446503, -0.01079792995005846, 0.04069403186440468, 0.011658413335680962, -0.021306494250893593, 0.022098442539572716, -0.031068796291947365, 0.028418811038136482, -0.011308128014206886, 0.0315561518073082, 0.018275761976838112, -0.016113130375742912, -0.03938426822423935, 0.009564315900206566, -0.0029107958544045687, -0.0073940688744187355, 0.03813542425632477, -0.015465863980352879, 0.010462874546647072, -0.03350556641817093, 0.03256131708621979, -0.0004245307354722172, -0.013242312707006931, 0.009945061057806015, 0.008810441009700298, 0.006571659818291664, -0.034541189670562744, -0.03536359965801239, -0.018275761976838112, -0.022783784195780754, 0.016158821061253548, 0.004241500049829483, 0.04130322486162186, 0.02724611572921276, -0.036490608006715775, -0.03195212408900261, -0.005239051766693592, 0.012435133568942547, 0.022722864523530006, -0.012351369485259056, 0.0056921388022601604, -0.04349631443619728, -0.03405383601784706, 0.011323357932269573, 0.002606199821457267, 0.006027194205671549, -0.0013564042747020721, -0.029652424156665802, 0.0025757402181625366, 0.01672232337296009, -0.01013543363660574, 0.030124548822641373, -0.013090015389025211, 0.012800648808479309, 0.02190045639872551, 0.0386836975812912, -0.015176498331129551, -0.0006120476755313575, -0.030840350314974785, 0.035180844366550446, 0.002267336705699563, 0.022479187697172165, -0.034084297716617584, -0.023499585688114166, -0.01757519133388996, 0.014118026942014694, 0.014369318261742592, 0.015572472475469112, -0.017666570842266083, -0.00514386547729373, 0.030825119465589523, 0.010584712959825993, 0.04596354439854622, -0.010272501967847347, -0.0010042150970548391, -0.005532225593924522, -0.015153652988374233, -0.001593418070115149, -0.013242312707006931, -0.028753867372870445, -0.016204509884119034, -0.03286591172218323, 0.05665486305952072, -0.013074785470962524, 0.01663094386458397, 0.025601297616958618, -0.030368225648999214, 0.0428871214389801, -0.012358984909951687, 0.016615714877843857, 0.0005173373501747847, -0.011285283602774143, -0.012876797467470169, 0.008939893916249275, -0.02459613047540188, 0.01918955147266388, -0.006008157040923834, 0.024321993812918663, 0.004443294834345579, 0.00035837627365253866, 0.023423435166478157, -0.003004078520461917, -0.003575196024030447, -0.035881415009498596, -0.03636876866221428, -0.012054388411343098, -0.027505023404955864, -0.010965457186102867, -0.029606735333800316, -0.04273482412099838, 0.02707858756184578, -0.02421538531780243, -0.01871742680668831, 0.030550982803106308, -0.011201519519090652, 0.029225990176200867, 0.0329572930932045, 0.03280499577522278, -0.011643183417618275, 0.036094631999731064, 0.021930914372205734, 0.016387267038226128, -0.021108506247401237, 0.040907248854637146, 0.008955123834311962, -0.030398685485124588, -0.02057546190917492, 0.0349980853497982, 0.0005725453956983984, 0.016234969720244408, -0.0019741631112992764, 0.0059091635048389435, -0.03049006499350071, 0.0006796299130655825, 0.0020503122359514236, 0.002916507190093398, 0.014574920758605003, -0.01757519133388996, 0.03837910294532776, -0.009465321898460388, -0.001241228892467916, -0.020103339105844498, -0.019478917121887207, 0.03642968833446503, -0.010965457186102867, 0.0002817513304762542, 0.0032363329082727432, -0.015503938309848309, -0.024124007672071457, 0.036399226635694504, -0.02359096333384514, 0.012655965983867645, 0.024413373321294785, -0.007672012783586979, 0.022265970706939697, -0.0037122643552720547, 0.003257273929193616, 0.017240136861801147, -0.026789221912622452, -0.025098714977502823, -0.0537002831697464, -0.0112624391913414, -0.001966548152267933, -0.03399292007088661, 0.00796518661081791, 0.0028422619216144085, 0.00813271477818489, 0.01780363917350769, -0.006259448826313019, -0.03886645659804344, -0.001862795208580792, 0.002181669231504202, -0.005547455511987209, 0.03426705673336983, -0.002851780503988266, -0.005520803388208151, -0.024717969819903374, 0.010965457186102867, 0.007957572117447853, 0.006050039082765579, 0.015671467408537865, 0.017681799829006195, -0.0023872714955359697, 0.003933096304535866, 0.0185803584754467, -0.011475656181573868, -0.03816588595509529, 0.015328795649111271, -0.000613475451245904, 0.021763388067483902, -0.00435572350397706, 0.013265158049762249, -0.0066516161896288395, -0.010234426707029343, 0.022235510870814323, 0.00036837084917351604, 0.030840350314974785, 0.007595863658934832, 0.015107964165508747, 0.02785530872642994, 0.011125370860099792, -0.011018762364983559, 0.006259448826313019, -0.030429145321249962, 0.04474515840411186, -0.03621647134423256, 0.0428871214389801, 0.0050106048583984375, -0.0023587155155837536, 0.009906986728310585, -0.024413373321294785, 0.003308674553409219, -0.017133528366684914, -0.005041064694523811, 0.014727219007909298, -0.04264344647526741, 0.01571715623140335, 0.00624802615493536, 0.0002855587808880955, 0.032926831394433975, -0.021991834044456482, -0.023728031665086746, -0.004911611322313547, -0.009777532890439034, -0.005124828312546015, 0.01634157821536064, -0.011163445189595222, -0.008856129832565784, 0.015252646990120411, 0.011117755435407162, 0.02013379894196987, -1.30434927996248e-05, -0.04465378075838089, -0.00801087636500597, 0.003906444180756807, 0.02305792085826397, -0.009800377301871777, -0.038196343928575516, -0.013607827946543694, 0.02546422928571701, 0.022738095372915268, 0.03195212408900261, 0.015283106826245785, -0.00905411783605814, 0.010485718958079815, 0.017316285520792007, 0.005429424345493317, 0.030520522966980934, 0.016524335369467735, 0.005254281684756279, 0.03140385076403618, 0.004252922255545855, 0.03475441038608551, -0.02855587936937809, 0.023865099996328354, -0.008224093355238438, -0.0004019239859189838, 0.013181393966078758, -0.025525148957967758, -0.005958660040050745, 0.020468853414058685, -0.024169696494936943, -0.010500948876142502, -0.0408463291823864, -0.04246068745851517, -0.015747616067528725, 0.017514271661639214, -0.016661403700709343, -0.013326076790690422, 0.04358769580721855, -0.01508511882275343, -0.01617405004799366, 0.0017590421484783292, 0.0013116666814312339, -0.015062274411320686, 0.021154195070266724, 0.00874952133744955, -0.008178403601050377, 0.0008057517115958035, 0.015580087900161743, 0.004831654950976372, -0.01903725229203701, -0.04282620549201965, -0.0018190095433965325, 0.004344301298260689, -0.03901875391602516, 0.0009409162448719144, 0.01300625130534172, -0.027687780559062958, -0.007698664907366037, -0.008521074429154396, 0.013988573104143143, 0.010158278048038483, 0.01600652188062668, 9.262813546229154e-05, 0.012777804397046566, 0.020545003935694695, 0.02250964753329754, -0.008094639517366886, 0.015024200081825256, 0.0034362240694463253, 0.006347020156681538, 0.03149523213505745, 0.05851290002465248, -0.020605921745300293, -0.019098171964287758, -0.026180030778050423, 0.006666846107691526, -0.009564315900206566, 0.01125482376664877, 0.010028825141489506, 0.020011959597468376, 0.01763611100614071, -0.02260102704167366, -0.0019532220903784037, 0.007367416750639677, 0.014316014014184475, -0.0009870815556496382, -0.011993469670414925, -0.01780363917350769, 0.039506107568740845, 0.0012831108178943396, 0.02639324776828289, -0.033018212765455246, 0.006948597263544798, -0.04023713618516922, -0.005231437273323536, 0.004184388089925051, 0.014803367666900158, -0.0007795754936523736, 0.012655965983867645, -0.002535762032493949, 0.018367141485214233, -0.01911340095102787, 0.03096218779683113, 0.021930914372205734, 0.003152569057419896, -0.009373943321406841, 0.014948050491511822, 0.018397601321339607, 0.009922215715050697, 0.03947564586997032, -0.012770188972353935, 0.012267605401575565, 0.002465324243530631, -0.019981499761343002, 0.030520522966980934, 0.0059091635048389435, -0.002181669231504202, 0.021930914372205734, 0.01350121945142746, 0.016158821061253548, 0.032226260751485825, 0.017818868160247803, 0.02113896608352661, 0.05957898497581482, -0.011696487665176392, -0.0015991292893886566, 0.023042690008878708, -0.021915685385465622, -0.013904809020459652, 0.0017752238782122731, -0.012084848247468472, -0.02864725887775421, -0.005463691428303719, -0.02159585990011692, 0.01725536584854126, -0.010805544443428516, 0.026987209916114807, 0.05391350015997887, -0.022616256028413773, 0.012252375483512878, -0.009815607219934464, -0.008947508409619331, -0.02368234284222126, 0.018610818311572075, -0.01702691800892353, -0.012320909649133682, 0.04078540951013565, -0.010820774361491203, 0.01679847203195095, 0.014681529253721237, 0.019676905125379562, -0.01296817697584629, 0.05720313638448715, 0.02423061616718769, -0.0012726403074339032, -0.032926831394433975, 0.0047593130730092525, -0.002353004412725568, -0.013493604958057404, -0.010729395784437656, 0.006548814941197634, -0.026636924594640732, -0.019920581951737404, 0.04157736152410507, -0.0260886512696743, -0.0012659772764891386, 0.005349467974156141, -0.0009285419946536422, 0.02159585990011692, -0.019555065780878067, -0.018702197819948196, 0.01625019870698452, 0.01508511882275343, 0.012412289157509804, -0.004903996363282204, 0.006320368032902479, 0.007367416750639677, -0.013280387967824936, 0.021382642909884453, 0.0009528145310468972, -0.015534398145973682, -0.007527329958975315, -0.0026747339870780706, 0.011353817768394947, 0.018093004822731018, 0.002265433082357049, -0.001879928749985993, 0.015123194083571434, -0.022418268024921417, 0.0016410112148150802, -0.03469349071383476, -0.02854064851999283, -0.039658404886722565, 0.0021702467929571867, 0.0008485855651088059, -0.0002465324359945953, 0.007774814032018185, -0.005406579934060574, 0.05805600434541702, 0.06390424817800522, 0.006228988990187645, -0.0078052738681435585, 0.010028825141489506, -0.013805815950036049, -0.013074785470962524, 0.00905411783605814, -0.004713623784482479, 0.01757519133388996, -0.055832456797361374, 0.021260803565382957, -0.005650256760418415, -0.007447373121976852, -0.019022023305296898, -0.006529777776449919, -0.01941799744963646, -0.02864725887775421, -0.00979276280850172, -0.016036981716752052, -0.0174990426748991, 0.005615989677608013, -0.02081914059817791, 0.0006415554089471698, 0.027109047397971153, 0.01803208515048027, -0.012892027385532856, 0.0069067152217030525, -0.022540107369422913, 0.03524176403880119, -0.02027086727321148, -0.01742289401590824, -0.011848785914480686, 0.024885496124625206, -0.015991292893886566, 0.025982042774558067, -0.03411475569009781, 0.013775356113910675, 0.04011530056595802, -0.013821045868098736, -0.02167200855910778, -0.0010203967103734612, -0.00040549348341301084, -0.005772095173597336, 0.002469131723046303, -0.03271361440420151, -0.006872448138892651, -0.014803367666900158, -0.00808702502399683, -0.013607827946543694, 0.007614901289343834, -0.040511272847652435, 0.003936904016882181, -0.04974053427577019, -0.0450497567653656, 0.018230073153972626, 0.01408756710588932, -0.023179758340120316, 0.022265970706939697, -0.01175740733742714, 0.006628771312534809, 0.009153110906481743, 0.013242312707006931, 0.006613541394472122, 0.0026766378432512283, 0.005619796924293041, 0.05309109017252922, 0.024337224662303925, 0.002067445544525981, 0.017757950350642204, 0.0038055467884987593, -0.01559531781822443, -0.0047593130730092525, 0.012648350559175014, 0.012892027385532856, 0.022250741720199585, 0.01748381368815899, 0.006385094486176968, -0.004165350925177336, 0.0035713885445147753, -0.003914059139788151, 0.055527858436107635, -0.009800377301871777, 0.01655479520559311, 0.011567034758627415, -0.002901277272030711, 0.018138693645596504, -0.0030802274122834206, -0.007843348197638988, -0.0007909978739917278, -0.024550441652536392, -0.02020994760096073, -0.003936904016882181, -0.01133858785033226, 0.006057654041796923, -0.014422622509300709, 0.00870383158326149, -0.031525690108537674, -0.013904809020459652, 0.012732114642858505, -0.018626047298312187, -0.00298884860239923, 0.0042948042973876, 0.028677716851234436, -0.004671741742640734, -0.004317648708820343, -0.0057149832136929035, 0.025129172950983047, 0.007812888361513615, 0.0112624391913414, 0.024809347465634346, -0.010820774361491203, -0.006510740611702204, 0.0025795476976782084, -0.036186009645462036, 0.01454446092247963, -0.031769368797540665, 0.005162903107702732, -0.0304139144718647, 0.0071389698423445225, -0.023347286507487297, -0.008414465934038162, -0.035942334681749344, 0.010341036133468151, 0.038805536925792694, 0.0196616742759943, 0.011110140942037106, 0.0007705328171141446, -0.015435404144227505, -0.0045194439589977264, -0.030124548822641373, 0.006777261849492788, 0.007656782865524292, -0.0128844128921628, 0.015344025567173958, -0.002132172230631113, -0.009853682480752468, -0.0025091099087148905, -0.030459605157375336, 0.007348379585891962, -0.0055169956758618355, 0.00983083713799715, 0.011909705586731434, -0.0315561518073082, 0.013219468295574188, -0.012777804397046566, -0.009343483485281467, -0.024580901488661766, -0.028662487864494324, -0.009815607219934464, -0.013196623884141445, -0.021336952224373817, 0.015252646990120411, -0.011597494594752789, -0.013980958610773087, 0.02800760604441166, 0.0025281470734626055, 0.019174320623278618, 0.01920478045940399, -0.009975520893931389, 0.013333692215383053, 0.017301054671406746, -0.011094911023974419, 0.009366328828036785, 0.030459605157375336, 0.0032953484915196896, -0.008955123834311962, 0.025357620790600777, -0.0019551259465515614, -0.026652153581380844, -0.0056921388022601604, 0.03953656554222107, -0.009016042575240135, -0.002436768263578415, 0.022265970706939697, -0.043526776134967804, -0.005524610634893179, 0.015991292893886566, 0.0008166981278918684, -0.008444925770163536, 0.016844160854816437, 0.008955123834311962, -0.031677987426519394, -0.013242312707006931, 0.02011856809258461, -0.012244760990142822, 0.0005725453956983984, -0.022646715864539146, -0.002149305772036314, -0.08254552632570267, -0.02483980730175972, -0.035637736320495605, 0.03697796165943146, -0.0056312195956707, -0.029698114842176437, 0.01187924575060606, 0.0054408470168709755, -0.017209677025675774, 0.011894475668668747, -0.007512100040912628, -0.013059555552899837, 0.016189279034733772, 6.371530616888776e-05, -0.0064917029812932014, -0.004172965884208679, -0.0016124553512781858, -0.030977418646216393, 0.005216207355260849, -0.0014687241055071354, -0.016158821061253548, -0.009823222644627094, 0.010432414710521698, 0.006548814941197634, -0.024687509983778, 0.020697301253676414, -0.00970899872481823, 0.003457165090367198, -0.021961374208331108, -0.023895559832453728, 0.009480551816523075, 0.016143590211868286, -0.01358498353511095, -0.0028670101892203093, 0.0056578717194497585, 0.010417184792459011, -0.0025738365948200226, -0.0052276295609772205, 0.009145496413111687, -0.0021588243544101715, 0.021656779572367668, 0.018549898639321327, -0.01765133999288082, 0.006960019469261169, 0.025799285620450974, -0.006259448826313019, -0.0018180576153099537, -0.01734674535691738, -0.020605921745300293, 0.020225176587700844, 0.003940711263567209, 0.017072608694434166, -0.009686154313385487, -0.02051454409956932, 0.009495781734585762, 0.008566764183342457, 0.01083600427955389, -0.009282564744353294, -0.00013932889851275831, -0.0012364696012809873, 0.01905248314142227, 0.004386182874441147, 0.022859932854771614, -0.0005201929598115385, -0.020316556096076965, 0.016676632687449455, 0.02467227913439274, 0.030048400163650513, 0.031464770436286926, 0.004428064916282892, -0.0002848448930308223, -0.016052210703492165, 0.015519168227910995, 0.017544731497764587, 0.013592598959803581, -0.028205594047904015, 0.014894746243953705, 0.023773720487952232, 0.004416642710566521, -0.0030821312684565783, -0.01145281083881855, 0.005117213353514671, 0.003074516309425235, 0.003023115685209632, -0.025327160954475403, -0.02459613047540188, 0.008414465934038162, -0.03396245837211609, -0.0038017393089830875, 0.01632634736597538, 0.02267717570066452, 0.00557030038908124, 0.04389229044318199, -0.0012288546422496438, -0.010120203718543053, 0.02601250261068344, 0.00925210490822792, 0.015991292893886566, -0.018945874646306038, -0.01833668164908886, 0.009906986728310585, -0.0016514817252755165, -0.00748544791713357, -0.014833827503025532, -0.004211040213704109, -0.01579330489039421, 0.006457436364144087, 0.01346314512193203, -0.004546096082776785, -0.005802554544061422, 0.003575196024030447, 0.005372312851250172, -0.03713025897741318, 0.0013516449835151434, -0.013280387967824936, 0.015260261483490467, 0.002076964359730482, 0.01625019870698452, -4.6046356146689504e-05, 0.0028784326277673244, -0.008528688922524452, 0.012724500149488449, 0.011018762364983559, -0.03173890709877014, -0.023621423169970512, 0.00963285006582737, -0.0029793300200253725, -0.009122652001678944, 0.014369318261742592, 0.021230343729257584, 0.00932825356721878, 0.0028118023183196783, -0.0034914321731776, 0.0040701646357774734, -0.011132985353469849, 0.01195539440959692, 0.03365786373615265, -0.03210442140698433, 0.011825941503047943, -0.0478520393371582, 0.00019049151160288602, -0.008597223088145256, -0.00102134863846004, -0.007717702072113752, -0.0025281470734626055, -0.01617405004799366, -0.0018380467081442475, -0.02809898555278778, 0.009769918397068977, -0.007241771090775728, 0.001070845522917807, -0.00846777018159628, 0.012838723137974739, -0.02459613047540188, -0.02336251735687256, -0.025022564455866814, -0.009297794662415981, -0.0011898282682523131, 0.006682075560092926, -0.022920852527022362, -0.012732114642858505, -0.011704103089869022, 0.01693554036319256, -0.012229531072080135, 0.009480551816523075, -0.00975468847900629, -0.014415008015930653, -0.009107422083616257, -0.01710306853055954, 0.014978510327637196, 0.0037484350614249706, -0.03026161715388298, -0.014849057421088219, -0.03612508997321129, 0.025753594934940338, -0.019905351102352142, -0.0028651065658777952, -0.022250741720199585, 0.02785530872642994, 0.010318190790712833, 0.0009099806775338948, -0.0018418541876599193, 0.00850584451109171, 0.02639324776828289, 0.0012783515267074108, 0.005395157262682915, -0.00433287862688303, 0.010455259121954441, -0.024200156331062317, -0.0021873803343623877, 0.023164529353380203, 0.03783082962036133, -0.014384548179805279, 0.008353546261787415, 0.014376933686435223, 0.012678810395300388, 0.041120465844869614, 0.014902361668646336, -0.023392975330352783, -0.02313406951725483, -0.023667111992836, -0.01757519133388996, 0.009724228642880917, 0.0056959460489451885, 0.006522162817418575, 0.016966000199317932, -0.02963719516992569, 0.023819411173462868, 0.014194175601005554, -0.00030412012711167336, 0.013440300710499287, 0.0052618966437876225, 0.008437310345470905, 0.011947779916226864, -0.011856401339173317, -0.012282835319638252, -0.010424799285829067, -0.026499856263399124, -0.0013059555785730481, -0.01141473650932312, 0.03344464674592018, 0.0006824855227023363, 0.002722327131778002, -0.024580901488661766, 0.015496323816478252, 0.024200156331062317, 0.0017647533677518368, -0.04706008732318878, -0.035881415009498596, 0.013379381038248539, -0.018763115629553795, 0.015557242557406425, 0.023484354838728905, -0.006011964287608862, -0.016996460035443306, 0.0013773452956229448, 0.012945331633090973, 0.008231707848608494, 0.03198258578777313, -0.01029534637928009, -0.017209677025675774, -0.014772907830774784, -0.011848785914480686, 0.00466412678360939, 0.02406308799982071, 0.021078046411275864, -0.01888495497405529, 0.0051705180667340755, 0.022616256028413773, 0.025342391803860664, -0.004450909793376923, -0.016524335369467735, -0.017971167340874672, 0.006107150577008724, 0.010988302528858185, -0.007957572117447853, -0.013493604958057404, -0.027992377057671547, 0.002570029115304351, -0.010927382856607437, 0.005140058230608702, -0.00182852812577039, 0.01608267053961754, -0.027048129588365555, 0.02212890237569809, -0.024108776822686195, -0.0027375570498406887, 0.005037256982177496, -0.031525690108537674, -0.009122652001678944, -0.003487624693661928, -0.014399778097867966, -0.014810983091592789, -0.011498500593006611, 0.0064917029812932014, 0.025098714977502823, -0.0006415554089471698, -0.027139507234096527, -0.007763391826301813, -0.007474025245755911, -0.008300242014229298, -0.007226541172713041, -0.007051398511976004, 0.0005982456495985389, 0.0007681531715206802, 0.02451998181641102, 9.310406312579289e-05, -0.014186561107635498, 0.02832743152976036, -0.003944518975913525, -0.01346314512193203, -0.002836550585925579, -0.0013392707332968712, -0.006236603949218988, 0.03536359965801239, -0.012678810395300388, -0.019905351102352142, -0.012237146496772766, 0.004629859700798988, -0.009000813588500023, 0.00842969585210085, 0.009945061057806015, -0.010127818211913109, -0.0066516161896288395, -0.025586068630218506, -0.0002753262815531343, -0.014620610512793064, 0.010310576297342777, 0.015107964165508747, 0.0032972521148622036, -0.005433232057839632, 0.020331785082817078, -0.04319171980023384, -0.01602175273001194, -0.019372308626770973, 0.013272772543132305, 0.006857218686491251, 0.010348650626838207, -0.02430676482617855, -0.017209677025675774, -0.001742860535159707, -0.0038835995364934206, 0.03204350546002388, 0.0049915676936507225, -0.0421256348490715, 0.004530866164714098, -0.005753058008849621, -0.004915418568998575, 0.01600652188062668, -0.008026105351746082, -0.04858306795358658, 0.044135965406894684, -0.024550441652536392, -0.001575332717038691, 0.002899373648688197, 0.005791132338345051, -0.008741906844079494, 0.0007867144886404276, -0.014711989089846611, 0.006758224684745073, 0.03225672245025635, 0.05589337274432182, 0.0011184385512024164, 0.0155877023935318, 0.012366599403321743, 0.005418002139776945, -0.016600484028458595, 0.023773720487952232, 0.05263419821858406, 0.007283653132617474, 0.03396245837211609, 0.0037655686028301716, -0.011110140942037106, 0.006225181743502617, 0.00479738786816597, 0.02614957094192505, -0.011361432261765003, 0.00458797812461853, -0.007378839422017336, -0.021626319736242294, 0.0035675810649991035, -0.006190914660692215, -0.0015401137061417103, 0.010234426707029343, -0.0028936623129993677, 0.008878975175321102, 0.016905080527067184, -0.011018762364983559, 0.008399236015975475, -0.020027190446853638, 0.018093004822731018, 0.020560232922434807, -0.004134891089051962, -0.02707858756184578, -0.030931727960705757, -0.005109598860144615, -0.012176226824522018, 0.003914059139788151, -0.004862114321440458, 0.009960290975868702, 0.00846777018159628, 0.018900183960795403, -0.03472394868731499, -0.019783513620495796, -0.01133097242563963, 0.005018219817429781, 0.015557242557406425, 0.0025262434501200914, -0.015915144234895706, -0.009107422083616257, 0.0045422883704304695, -0.004671741742640734, 0.009663309901952744, 0.023956479504704475, 0.003967363387346268, -0.001946559059433639, -0.016524335369467735, -0.0035352178383618593, -0.039110131561756134, 0.00704378355294466, -0.0031906436197459698, 0.016128361225128174, 0.008406850509345531, 0.025662217289209366, 0.013485989533364773, 0.02738318406045437, 0.005779710132628679, 0.01608267053961754, -0.013333692215383053, -0.024961646646261215, -0.03111448511481285, -0.013135704211890697, 0.004241500049829483, -0.018016856163740158, -0.02190045639872551, -0.007972801104187965, 0.007078050635755062, 0.02514440380036831, -0.0009451996302232146, -0.005231437273323536, -0.015404945239424706, -0.002141691045835614, 0.020316556096076965, -0.0064383987337350845, 0.005726405419409275, 0.019022023305296898, -0.02413923665881157, -0.0027546905912458897, 0.021001897752285004, 0.005623604636639357, -0.010500948876142502, 0.018093004822731018, -0.0007143729017116129, 0.012191456742584705, 0.02561652660369873, -0.015184112824499607, 0.007363609503954649, -0.052116382867097855, -0.012214301154017448, -0.00792711228132248, -0.05028880760073662, -0.01585422456264496, -0.014521616511046886, -0.009221645072102547, 0.006240411661565304, -0.013531679287552834, 0.01864127814769745, -0.01586945354938507, 0.023667111992836, 0.019981499761343002, -0.002834646962583065, -0.024794118478894234, 0.021961374208331108, -0.01903725229203701, 0.007668205536901951, 0.026058191433548927, 0.0012107692891731858, 2.452533590258099e-05, -0.009358713403344154, 0.016981229186058044, 0.014133256860077381, 0.014963280409574509, -0.017438123002648354, 0.0157780759036541, 0.0011803096858784556, 0.010706551373004913, 0.017940707504749298, -0.004222462885081768, -0.02988087199628353, 0.00681152893230319, 0.0014363607624545693, -0.004686971660703421, -0.010599941946566105, 0.01446831226348877, 0.01941799744963646, -0.017057377845048904, -0.002194995293393731, -0.01570192538201809, -0.012008698657155037, -0.012785418890416622, -0.001813298324123025, -0.015671467408537865, 0.0006329886382445693, 0.016280658543109894, 0.029972251504659653, 0.0029431593138724566, 0.03615555167198181, -0.0020027190912514925, -0.012115308083593845, 0.01657002419233322, 0.012130537070333958, 0.014856671914458275, -0.007386453915387392, 0.0290127731859684, 0.024261074140667915, -0.014140871353447437, 0.010188737884163857, -0.027063358575105667, 0.013798200525343418, -0.0012393251527100801, 0.008155559189617634, -0.011163445189595222, -0.03807450458407402, -0.0036989382933825254, 0.022479187697172165, -0.006129995454102755, 0.0005087705794721842, 0.01663094386458397, 0.02282947301864624, -0.012716884724795818, -0.009038887917995453, 0.0030649977270513773, 0.010074513964354992, 0.004374760668724775, 0.0002969811321236193, 0.005014412570744753, 0.022463958710432053, 0.011902090162038803, -0.007264615502208471, -0.0020921940449625254, -0.00030150249949656427, -0.011224363930523396, -0.007512100040912628, 0.0030669013503938913, 0.014415008015930653, 0.009960290975868702, -0.00012160045298514888, 0.021397871896624565, -0.006160454824566841, -0.010539023205637932, 0.005524610634893179, -0.003573292400687933, -0.0027965724002569914, 0.01928092911839485, 0.013516449369490147, 0.0185803584754467, -0.004389990586787462, -0.003103072289377451, -0.01083600427955389, -0.0018685063114389777, -0.009335868991911411, 0.007580634206533432, 0.002301603788509965, 0.0039787860587239265, 0.0007262711878865957, 0.05906117334961891, 0.002215936314314604, 0.015153652988374233, -0.005737828090786934, 0.009000813588500023, -0.00920641515403986, -0.011468040756881237, 0.0018228169064968824, 0.014323629438877106, -0.010440029203891754, 0.010592327453196049, -0.006126187741756439, 0.002836550585925579, -0.003910251893103123, -0.033018212765455246, 0.022189822047948837, 0.027565941214561462, 0.027109047397971153, 0.0035790035035461187, 0.022463958710432053, -0.0010013595456257463, -0.00026747339870780706, -0.022159362211823463, -0.022311659529805183, -0.017925476655364037, 0.02088005840778351, -0.007557789329439402, 0.0004771211533807218, 0.026484625414013863, 0.0051057911477983, -0.010455259121954441, -0.023332057520747185, -0.016661403700709343, -0.008056565187871456, -0.010889308527112007, 0.00846777018159628, 0.005307585932314396, 0.012214301154017448, 0.00654119998216629, 0.013897194527089596, -0.007576826494187117, 0.0007081857766024768, 0.025799285620450974, 0.0393233485519886, -0.01896110363304615, -0.0078052738681435585, 0.016052210703492165, -0.0053761200979352, 0.021154195070266724, -6.966444925637916e-05, -0.01771225966513157, -0.011239593848586082, -0.00667446106672287, 0.005486536305397749, 0.020773449912667274, -0.01354690920561552, -0.009419633075594902, -0.00597769720479846, 0.007866192609071732, 0.00015122717013582587, -0.004150121007114649, -0.0025452806148678064, -0.016052210703492165, -0.026210488751530647, -0.006011964287608862, -0.026210488751530647, -0.00352189177647233, -0.014102797023952007, 0.0031068797688931227, -0.007797658909112215, -0.027063358575105667, 0.008726676926016808, -0.00217786175198853, -0.024702738970518112, 0.00623279670253396, 0.014963280409574509, 0.009884141385555267, 0.02019471861422062, 0.013592598959803581, 0.017834099009633064, -0.005414194893091917, -0.01121674943715334, -0.0029831374995410442, -0.01366113219410181, 0.009183570742607117, -0.012564586475491524, 0.02112373523414135, -0.022463958710432053, 0.015199342742562294, -0.023012232035398483, -0.007751969154924154, 0.007199889048933983, -0.004165350925177336, -0.0010175411589443684, 0.0077938511967659, -0.014673914760351181, 0.014384548179805279, 0.007169429212808609, 0.02243349887430668, 0.0006715391064062715, 0.007317919749766588, 0.024032628163695335, -0.019372308626770973, 0.016448186710476875, 0.01818438433110714, 0.008399236015975475, 0.017910247668623924, 0.0073559945449233055, -0.012808263301849365, 0.002318737329915166, -0.010569483041763306, -0.012237146496772766, 0.0029488704167306423, 0.013478375039994717, -0.02391078881919384, -0.019067712128162384, 0.007519714999943972, 0.01818438433110714, -0.0059320079162716866, 0.0008876119391061366, -0.023667111992836, -0.0017942610429599881, -0.001594369881786406, 0.0006077642901800573, 0.003188739763572812, 0.02011856809258461, -0.01500897016376257, -0.007595863658934832, -0.014605380594730377, 0.002703289967030287, 0.032774534076452255, 0.010021209716796875, 0.006990479305386543, -0.009031272493302822, 0.02701766975224018, 0.0018085390329360962, 0.008795211091637611, -0.024870267137885094, 0.010143048129975796, 0.004629859700798988, 0.025951582938432693, 0.018671737983822823, 0.010622787289321423, -0.009571930393576622, 0.0027965724002569914, 0.03010931983590126, -0.028449270874261856, -0.028662487864494324, -0.0029545817524194717, 0.016813701018691063, 0.02491595596075058, -0.039506107568740845, 0.0026804450899362564, -0.015686696395277977, -0.01404187735170126, -0.0023415822070091963, -0.016113130375742912, 0.03536359965801239, 0.0059015485458076, 0.01091215293854475, 0.008026105351746082, -0.0005263800267130136, -0.0006339405081234872, -0.0045384811237454414, 0.013333692215383053, -0.01284633856266737, -0.0004759313305839896, 0.02584497444331646, 0.021915685385465622, -0.00970899872481823, -0.002467227866873145, 0.0024729392025619745, 0.0046831644140183926, -0.01973782293498516, -0.005197170190513134, -0.01171933300793171, -0.013980958610773087, -0.0019912966527044773, -0.003855043789371848, 0.022859932854771614, 0.0007553030154667795, 0.018093004822731018, 0.01067609153687954, 0.0020864829421043396, 0.012328525073826313, -0.015336411073803902, 0.0009927927749231458, -0.008924663998186588, 0.0007829070091247559, 4.934069238515804e-06, -0.013562139123678207, 0.02127603441476822, 0.0010813159169629216, -7.620850374223664e-05, -0.0030288270208984613, -0.007093280553817749, -0.003438127925619483, 0.004150121007114649, 0.007032361347228289, 0.003921674098819494, 0.004725045990198851, -0.0012812070781365037, 0.02097143791615963, 0.02451998181641102, -0.01657002419233322, 0.0029793300200253725, 0.009122652001678944, -0.023042690008878708, -0.012587431818246841, -0.006251833867281675, -0.04045035317540169, -0.02817513421177864, 0.010264886543154716, 0.013767741620540619, -0.016509106382727623, 0.00667446106672287, 0.015435404144227505, 0.006998094264417887, 0.0005477969534695148, 0.007843348197638988, 0.008483000099658966, 0.009016042575240135, -0.004119661636650562, 0.0028460694011300802, -0.0007462603389285505, -0.018199613317847252, 0.016158821061253548, 0.03722163662314415, 0.02779438905417919, 0.008147943764925003, 0.01771225966513157, -0.00627087103202939, -0.01734674535691738, 0.02599727176129818, -0.0034476465079933405, 0.02724611572921276, 0.017163986340165138, -0.004919226281344891, 0.008635297417640686, -0.009191185235977173, -0.00974707305431366, -0.004066357389092445, -0.003527602879330516, -0.00820886343717575, 0.02081914059817791, -0.0023282559122890234, 0.0024862652644515038, -0.004218655172735453, -0.009434862062335014, -2.882359149225522e-05, -0.004923033528029919, -0.0007353138644248247, 0.004884959198534489, 0.006564044859260321, 0.01564100757241249, 0.006647808477282524, -0.022265970706939697, 0.005239051766693592, -0.00156200653873384, -0.02438291348516941, 0.0174990426748991, 0.01207723282277584, -0.014483542181551456, -0.0036779972724616528, 0.014194175601005554, 0.018610818311572075, -0.02212890237569809, 0.02089528925716877, 0.02925645001232624, 0.003323904238641262, -0.0007324583129957318, -0.00022701923444401473, 0.0013564042747020721, 0.01312047429382801, -0.01943322829902172, -0.00804133526980877, 0.02049931325018406, -0.020925749093294144, 0.0032287181820720434, 0.01600652188062668, -0.01037149503827095, 0.0066516161896288395, -0.013112859800457954, -0.02522055245935917, -0.01949414610862732, 0.006499317940324545, 0.011985854245722294, 0.01989012211561203, -0.0012516994029283524, 0.010569483041763306, 0.018930643796920776, -0.018047315999865532, 0.007024746388196945, -0.0005311393761076033, -0.004744083620607853, -0.010599941946566105, -0.0027432681526988745, 0.0027394606731832027, 0.008292627520859241, 0.024657050147652626, 0.004443294834345579, 0.007896652445197105, -0.013371766544878483, -0.005882510915398598, 0.01547347940504551, 0.020484084263443947, 0.022859932854771614, 0.0040701646357774734, 0.005410387180745602, 0.010226812213659286, 0.020240407437086105, -0.004226270131766796, 0.011658413335680962, 0.00462605245411396, -0.011201519519090652, 0.014597765170037746, -0.001977970590814948, 0.010120203718543053, 0.00412346888333559, 0.020560232922434807, 0.014559690840542316, 0.0058939335867762566, -0.009221645072102547, 0.01299863588064909, -0.004115853924304247, 0.022875163704156876, -0.009625234641134739, -0.018671737983822823, -0.005600759759545326, -0.005635026842355728, 0.007489255163818598, -0.002200706396251917, -0.003858851036056876, -0.008490614593029022, -0.007169429212808609, -0.00905411783605814, -0.009267334826290607, -0.005273318849503994, -0.024489521980285645, 0.01079031452536583, -0.009434862062335014, 0.004093009512871504, -0.013973343186080456, -0.013455530628561974, 0.0073750317096710205, -0.003744627581909299, 0.024733198806643486, -0.015359255485236645, 0.027916228398680687, 0.015808533877134323, -0.002589066280052066, -0.00842969585210085, 0.005181940272450447, 0.007843348197638988, 0.007420720998197794, -0.01617405004799366, 0.023194989189505577, 0.022859932854771614, -0.005543647799640894, 0.0006915281992405653, -0.03612508997321129, 0.00846777018159628, -0.009122652001678944, -0.009906986728310585, -0.0029602928552776575, 0.014742448925971985, -0.018519438803195953, -0.013988573104143143, -0.02847973071038723, 0.006830566097050905, 0.002364426851272583, -0.009762302972376347, -0.001930377446115017, -0.008277397602796555, -0.027200426906347275, 0.0040358975529670715, 0.01028773095458746, -0.0015696214977651834, -0.011125370860099792, 0.00560837471857667, 0.0337187834084034, 0.004877344239503145, -0.019022023305296898, -0.005833014380186796, 0.019905351102352142, 0.014993740245699883, 0.009480551816523075, 0.028753867372870445, 0.009488167241215706, 0.0017124009318649769, -0.035333141684532166, -0.0027394606731832027, -0.018306221812963486, -0.0029469667933881283, 0.014788137748837471, 0.015496323816478252, -0.023743262514472008, 0.014841441996395588, 0.013821045868098736, -0.008368776179850101, -0.005600759759545326, -0.0134250707924366, 0.010516178794205189, -0.004477561917155981, 0.018062544986605644, -0.028281742706894875, 0.016615714877843857, 0.012062003836035728, 0.030672822147607803, -0.01663094386458397, -0.006731572560966015, 0.008993198163807392, -0.027428874745965004, -0.008292627520859241, 0.005391350015997887, 0.005897740833461285, 0.010013595223426819, 0.002181669231504202, 0.0009632849832996726, -0.008064180612564087, 0.014057107269763947, -0.0013697303365916014, 0.019844431430101395, -0.0026556968223303556, 0.025525148957967758, -0.003122109454125166, 0.021078046411275864, -0.0020388897974044085, -0.011810711584985256, -0.003523795399814844, -0.001625781413167715, -0.0027908612973988056, -0.014361703768372536, 0.020605921745300293, -0.022326890379190445, -0.00983083713799715, 0.02561652660369873, -0.03451073169708252, -0.00211694254539907, 0.0007567307911813259, -0.0225857961922884, -0.02529670111835003, -0.005810169503092766, -0.011079681105911732, 0.004850692115724087, 4.256610918673687e-05, 0.009160726331174374, 0.010584712959825993, -0.015534398145973682, -0.005703561007976532, 0.007683435454964638, 0.026758762076497078, 0.025266241282224655, 0.004439487587660551, -0.01230568066239357, -0.0035847146064043045, -0.007649168372154236, -0.005958660040050745, 0.01989012211561203, -0.0543399341404438, -0.0054408470168709755, -0.012633120641112328, 0.010546637699007988, 0.01071416586637497, -0.008955123834311962, -0.022479187697172165, 0.017666570842266083, 0.0001787122164387256, -0.017133528366684914, 0.013029095716774464, -0.02228120155632496, 0.008543918840587139, 0.004199618007987738, -0.002254010643810034, -0.006404131650924683, 0.022783784195780754, 0.004698393866419792, 0.015069888904690742, -0.0013135704211890697, -0.00820886343717575, -0.0067125353962183, 0.004450909793376923, 0.001744764274917543, 0.0040320903062820435, 0.0335969440639019, -0.005509381182491779, 0.014239865355193615, 0.024657050147652626, 0.027032898738980293, -0.01850420981645584, 8.542967407265678e-05, 0.014247479848563671, 0.004968722816556692, 0.0026766378432512283, 0.00677345460280776, 0.017925476655364037, 0.0021626318339258432, 0.043831370770931244, -0.0028746251482516527, -0.016828931868076324, 0.003327711718156934, 0.0128844128921628, 0.010074513964354992, 0.013988573104143143, 0.0185803584754467, 0.015389715321362019, -0.014833827503025532, 0.02886047586798668, 0.009686154313385487, 0.0005725453956983984, 0.0017714163986966014, 0.00533804576843977, -0.008734291419386864, 0.010957842692732811, -0.003790317103266716, 0.006251833867281675, 0.02948489785194397, 0.015450634062290192, -0.0007119932561181486, 0.009640464559197426, -0.007763391826301813, -0.036033712327480316, 0.006354635115712881, 0.003287733532488346, 0.02407831698656082, 0.006168069783598185, 0.020788680762052536, -0.0014868094585835934, 0.009739458560943604, -0.01755996234714985, -0.012511282227933407, 0.007272230461239815, 0.0017847424605861306, -0.0027299420908093452, 0.010988302528858185, -0.0031430504750460386, 0.006282293237745762, 0.0218243058770895, 0.035942334681749344, -0.03451073169708252, 0.00667446106672287, 0.0028632027097046375, 0.012404673732817173, -0.005094368942081928, 0.010440029203891754, -0.021732928231358528, 0.003925481345504522, 0.01748381368815899, -0.02043839544057846, -0.004576555453240871, -0.001290725776925683, -0.0022235510405153036, 0.02855587936937809, -3.762832056963816e-05, 0.011361432261765003, -0.017834099009633064, -0.000788142264354974, 0.027489792555570602, 0.011026376858353615, 0.03256131708621979, 0.0010080225765705109, -0.00539896497502923, 0.0009076010319404304, 0.0027109046932309866, -0.00048711569979786873, 0.0015858031110838056, 0.0112624391913414, -1.0708454283303581e-05, 0.005558877717703581, 0.004131083842366934, -0.013447915203869343, 0.011087295599281788, 0.0006601167260669172, 0.04087679088115692, 0.006320368032902479, -0.01818438433110714, -0.010592327453196049, -0.018626047298312187, 0.018686966970562935, -0.0048126173205673695, 0.02406308799982071, -0.0024976874701678753, -0.019524605944752693, -0.01493282150477171, -0.021550171077251434, 0.007260808255523443, 0.029896100983023643, 0.005829206667840481, 0.03344464674592018, -0.01470437366515398, 0.012480823323130608, -0.006343212444335222, -0.00867337267845869, -0.017148757353425026, 0.007763391826301813, 0.0030097896233201027, 0.009769918397068977, -0.008955123834311962, -0.008939893916249275, -0.011460426263511181, 0.0015344026032835245, 0.009800377301871777, 0.003586618462577462, -0.002600488718599081, 0.004351915791630745, 0.005703561007976532, -0.016737552359700203, -0.024961646646261215, -0.007675820495933294, -0.0024044050369411707, 0.011270053684711456, -0.001108919968828559, 0.004584170412272215, -0.00694479001685977, 0.006168069783598185, 0.002084579085931182, 0.007062820717692375, 0.007771006785333157, 0.002263529459014535, 0.0185803584754467, -0.018671737983822823, 0.004999182652682066, -0.0018028278136625886, 0.016737552359700203, -0.0062023368664085865, -0.01701168902218342, -0.0017561865970492363, 0.0059320079162716866, 0.016615714877843857, -0.018001627177000046, 0.006133802700787783, 0.01787978783249855, 0.004131083842366934, -0.015915144234895706, 0.01679847203195095, -0.001966548152267933, -0.005783517379313707, -0.015146038495004177, 0.013013865798711777, -0.015290721319615841, 0.0026785414665937424, -0.0024082125164568424, 0.005060101859271526, 0.008109869435429573, -0.005345660727471113, -0.021169425919651985, -0.02854064851999283, 0.005311393644660711, 0.011871631257236004, 0.009419633075594902, -0.025555608794093132, 0.012252375483512878, -0.00022190298477653414, 0.03646014630794525, -0.01130051352083683, -0.024885496124625206, -0.0005582674639299512, -0.03984116390347481, 0.02250964753329754, -0.00929017923772335, -0.026332328096032143, -0.022768555209040642, -0.006834373809397221, 0.027916228398680687, -0.0042948042973876, -0.011247209273278713, 0.00979276280850172, 0.01964644528925419, 0.003118301974609494, -0.004313841462135315, -0.0021397871896624565, 0.004340493585914373, -0.01509273424744606, 0.020682072266936302, -0.02167200855910778, 0.018016856163740158, -0.004348108544945717, -0.0017361975042149425, -0.0040701646357774734, -0.007668205536901951, 0.004165350925177336, 0.009366328828036785, 0.027124278247356415, -0.016768012195825577, -1.0767946150735952e-05, 0.0011793577577918768, 0.00800326094031334, 0.009221645072102547, 0.002419634722173214, 0.0174990426748991, -0.014232249930500984, -0.007675820495933294, -0.02228120155632496, -0.024200156331062317, -0.001127005321905017, -4.045416062581353e-05, -0.010104973800480366, -0.0033467491157352924, -0.006293715909123421, -0.018077775835990906, -0.006190914660692215, 0.00708185788244009, -0.011285283602774143, 0.0023872714955359697, -0.0007938534254208207, -0.011468040756881237, 0.0073559945449233055, 0.009777532890439034, -0.014833827503025532, -0.0038226803299039602, 0.007059013471007347, -0.0009451996302232146, 0.023804180324077606, -0.0026081036776304245, 0.0029469667933881283, -0.02622571960091591, 0.012252375483512878, 0.0035333142150193453, -0.0061452253721654415, -0.00702093867585063, 0.014978510327637196, 0.0027451717760413885, -0.001742860535159707, -0.006278485991060734, -0.010325806215405464, -0.019951041787862778, -0.0016838450683280826, 0.0164177268743515, -0.011277668178081512, -0.00792711228132248, 0.024778887629508972, -0.00439379783347249, 0.012290450744330883, 0.010112588293850422, 0.0064193615689873695, 0.02701766975224018, 0.01443023793399334, -0.017042148858308792, 0.0010432414710521698, -0.0009927927749231458, -0.023392975330352783, -0.019022023305296898, -0.01579330489039421, -0.010767470113933086, 0.012823493219912052, -0.005772095173597336, 0.007820503786206245, 0.025479458272457123, -0.008962738327682018, 0.006533585023134947, -0.01594560220837593, 0.009335868991911411, 0.001057519344612956, -0.005867281462997198, 0.002347293309867382, -0.0009432958904653788, 0.02368234284222126, -0.006537392735481262, 0.005543647799640894, 0.01121674943715334, 0.031053567305207253, 0.030368225648999214, -0.01346314512193203, 0.015564857982099056, 0.00673538027331233, 0.026271408423781395, 0.006484088487923145, -0.007237963378429413, -0.02639324776828289, 0.03585095331072807, 0.014026647433638573, -0.012777804397046566, -0.02515963278710842, -0.030368225648999214, -0.025905894115567207, -0.023103609681129456, 0.006655423436313868, 0.015290721319615841, -0.0015448731137439609, 0.01778840832412243, -0.0034000533632934093, -0.006312753073871136, -0.01734674535691738, -0.00037765150773338974, -0.01958552561700344, -0.01338699646294117, 0.024565670639276505, 0.013219468295574188, 0.01392765436321497, 0.0037941245827823877, 0.0029317368753254414, 0.0021055201068520546, -0.013813430443406105, -0.00029674317920580506, 0.03080989047884941, 0.017163986340165138, 0.005558877717703581, -0.014491156674921513, 0.014102797023952007, -0.018397601321339607, 0.0021740542724728584, 0.013059555552899837, 0.006023386958986521, 0.010820774361491203, -0.0066516161896288395, 0.022890392690896988, -0.011932549998164177, 0.02267717570066452, 0.003986400552093983, -0.0002472463238518685, 0.015465863980352879, -0.0033619788009673357, -0.004877344239503145, 0.006895293015986681, 0.009434862062335014, 0.0017143046716228127, 0.012549357488751411, -0.008802825585007668, -0.006727765314280987, 0.021474020555615425, -0.012876797467470169, 0.00015372582129202783, 0.004839269444346428, -0.004805002827197313, -0.014201791025698185, 0.0074131060391664505, -0.004846884403377771, -0.0061642625369131565, 0.004961107857525349, -0.008597223088145256, 0.028342662379145622, 0.018367141485214233, -0.010089743882417679, -0.002333967247977853, -0.008901819586753845, 0.003841717727482319, -0.006133802700787783, 0.01626542955636978, 0.0112928980961442, -0.015656236559152603, -0.011353817768394947, -0.015191727317869663, -0.00874952133744955, 0.016981229186058044, 0.006777261849492788, -0.0023092187475413084, -0.022189822047948837, -0.010226812213659286, -0.016996460035443306, -0.015481093898415565, 0.012107692658901215, 0.023042690008878708, 0.0064155543223023415, 0.02817513421177864, -0.011277668178081512, 0.016036981716752052, 0.011209134012460709, 0.000553032208699733, 0.009282564744353294, -0.007424528710544109, 0.024626590311527252, 0.024870267137885094, -0.01911340095102787, -0.003645633812993765, 0.002246395917609334, -0.010379110462963581, 0.000923306739423424, -0.012610276229679585, -0.009389173239469528, -0.0008457299554720521, -0.015656236559152603, -0.0006891485536471009, 0.008635297417640686, 0.006465050857514143, -0.009259719401597977, 0.01400380302220583, 0.0005930104525759816, 0.0006634482415392995, -0.017057377845048904, 0.01338699646294117, -0.007934726774692535, 0.023042690008878708, -0.006948597263544798, 0.02531193196773529, -0.03268315643072128, -0.0016581447562202811, 0.007934726774692535, -0.008863745257258415, 0.012633120641112328, 0.013813430443406105, 0.006952404510229826, 0.0016362519236281514, 0.014239865355193615, -0.004412834998220205, 0.00596246775239706, -0.007550174370408058, 0.027185197919607162, 0.0073369573801755905, 0.001041337731294334, -0.0005187651258893311, 0.0006605926901102066, 0.013097629882395267, 0.010698935948312283, 0.005018219817429781, -0.024504750967025757, 0.0020750605035573244, -0.02870817668735981, -0.002212128834798932, -0.008962738327682018, 0.008262167684733868, -0.018778346478939056, 0.0031830286607146263, 0.008239323273301125, 0.005178132560104132, 0.005402772221714258, 0.002318737329915166, 0.014734833501279354, -0.019844431430101395, -0.011171059682965279, -0.01763611100614071, -0.011308128014206886, 0.021397871896624565, 0.018839266151189804, 0.021169425919651985, 0.009777532890439034, 0.0051705180667340755, -0.02135218307375908, -0.0014354088343679905, -0.016615714877843857, -0.020072879269719124, 0.02400216832756996, -0.011483270674943924, 0.01071416586637497, 0.013798200525343418, -0.0003055479028262198, -0.006190914660692215, 0.02809898555278778, -0.011026376858353615, -0.004153928719460964, 0.024824578315019608, 0.01886972412467003, 0.010599941946566105, 0.006335597950965166, -0.0056464490480721, -0.007988031022250652, 0.015991292893886566, 0.0005163854802958667, -0.005109598860144615, -0.006609734147787094, 0.004161543678492308, -0.018549898639321327, -0.0008928471361286938, 0.000406683306209743, -0.005235244520008564, 0.003839813871309161, 0.012694040313363075, -0.007500677835196257, -0.0028651065658777952, -0.0218243058770895, -0.014034262858331203, -0.004515636246651411, -0.017316285520792007, 0.018290992826223373, -0.023316826671361923, 0.024261074140667915, -0.02351481467485428, -0.0017657051794230938, 0.009960290975868702, 0.0024862652644515038, -0.005277126561850309, -0.005802554544061422, -0.002747075632214546, 0.006286100950092077, -0.0004126324492972344, 0.008688602596521378, 0.018763115629553795, -0.04495837539434433, -0.005905355792492628, -0.009259719401597977, -0.0026309483218938112, 0.006960019469261169, 0.004302419256418943, 0.011825941503047943, -0.01184117142111063, 0.005833014380186796, -0.0059472378343343735, 0.001958933426067233, -0.003504758235067129, 0.013935268856585026, -0.006556429900228977, -0.023423435166478157, 0.002651889342814684, -0.023316826671361923, -0.013097629882395267, -0.019311388954520226, -0.009739458560943604, -0.005292356479912996, 0.009191185235977173, -0.001663855859078467, -0.001224095351062715, 0.012762574478983879, 0.0160979013890028, -0.0061642625369131565, -0.0196616742759943, -0.005619796924293041, -0.027200426906347275, 0.005018219817429781, -0.008345931768417358, -0.04093770682811737, 0.008818055503070354, -0.011422351934015751, -0.015024200081825256, -0.009274949319660664, 0.00034695392241701484, -0.006556429900228977, 0.008399236015975475, 0.017925476655364037, 0.008490614593029022, -0.0007595864008180797, 0.013691592030227184, -0.013668747618794441, 0.01594560220837593, -0.0018409023759886622, -0.006011964287608862, 0.0031297244131565094, -0.009221645072102547, 0.0051895552314817905, 0.017285825684666634, -0.027520252391695976, -0.006137610413134098, -0.011186289601027966, -0.008947508409619331, 0.01559531781822443, -0.0017752238782122731, -0.018047315999865532, 0.006423169281333685, -0.008772365748882294, 0.007691049948334694, -0.006316560320556164, 0.008680987171828747, 0.00788903795182705, -0.010561867617070675, 0.01079031452536583, 0.00882566999644041, -0.008764751255512238, -0.005817784462124109, 0.01353929378092289, -0.01497089583426714, 0.0064422064460814, 0.012899642810225487, -0.03752623125910759, 0.008970353752374649, -0.007820503786206245, 0.012907257303595543, -0.0013564042747020721, 0.005973889958113432, 0.008254553191363811, 0.02847973071038723, 0.010493333451449871, 0.018702197819948196, 0.01943322829902172, 0.01063801720738411, -0.003925481345504522, -0.022951312363147736, 0.0066325790248811245, -0.01649387553334236, -0.006080498453229666, -0.0038988294545561075, -0.0008447780855931342, -0.0011488981544971466, 0.016889851540327072, 0.02592112310230732, 0.013813430443406105, 0.012907257303595543, -0.018626047298312187, -0.00023784667428117245, -0.004725045990198851, -0.0025414731353521347, -0.019143860787153244, -0.00735218683257699, -0.0007752921083010733, -0.009648079983890057, -0.0013963824603706598, -0.020940978080034256, -0.009343483485281467, -0.027352724224328995, 0.0019912966527044773, -0.007474025245755911, 0.006350827403366566, -0.025174863636493683, 0.02902800217270851, -0.004884959198534489, -0.008231707848608494, 0.02785530872642994, -0.012244760990142822, -0.007009516470134258, 0.01230568066239357, 0.008932279422879219, 0.010554253123700619, -0.006027194205671549, -0.029149841517210007, 0.01350883487612009, 0.012130537070333958, 0.008490614593029022, 0.005258089397102594, 0.014285554178059101, -0.00816317368298769, 0.008201248943805695, -0.013752511702477932, -0.015458249486982822, -0.012587431818246841, -0.010554253123700619, -0.011848785914480686, 0.009800377301871777, -0.008741906844079494, -0.015039429999887943, 0.006655423436313868, -0.013988573104143143, 0.0225248783826828, 0.025586068630218506, -0.003921674098819494, 0.003333423053845763, -0.010508563369512558, -0.0012954850681126118, 0.00030864146538078785, 0.006255641113966703, 0.0026119111571460962, -0.008833285421133041, -0.017773179337382317, 0.019676905125379562, 0.007173236925154924, 0.003721782937645912, -0.007451180834323168, 0.003508565714582801, 0.011650798842310905, 0.014986125752329826, 0.0038645623717457056, 0.004987760446965694, 0.017681799829006195, -0.013371766544878483, 0.03280499577522278, 0.013722051866352558, 0.005037256982177496, 0.017316285520792007, -0.003910251893103123, -0.0009732795297168195, 0.013227082788944244, 0.018702197819948196, 0.002333967247977853, -0.004405220504850149, -0.009000813588500023, -0.013813430443406105, -0.010592327453196049, 0.0052047851495444775, -0.007637745700776577, -0.012777804397046566, -0.005996734835207462, 0.007873808033764362, -0.01734674535691738, 0.01879357546567917, 0.00566929392516613, -0.002364426851272583, 0.0015315469354391098, -0.003457165090367198, 0.0013716340763494372, -0.010417184792459011, -0.00986891146749258, 0.006796299479901791, -0.006282293237745762, -0.0036018481478095055, -0.00702093867585063, -0.019783513620495796, 0.005935815628618002, -0.0019989116117358208, 0.0008281205082312226, 0.019387537613511086, 0.006525970064103603, 0.01655479520559311, 0.009929831139743328, -0.0069828643463552, -0.005528418347239494, -0.008109869435429573, -0.013067170046269894, -0.02631709910929203, 0.020758220925927162, 0.008985583670437336, -0.01765133999288082, -0.0006720150122419, 0.0014649166259914637, 0.00986891146749258, 0.016432955861091614, -0.002570029115304351, -0.005813977215439081, 0.007310305256396532, 0.018945874646306038, -0.0019570295698940754, -0.008848515339195728, 0.0037674722261726856, -0.015465863980352879, 0.011643183417618275, 0.010242042131721973, -0.006335597950965166, -0.0011127274483442307, 0.008323087356984615, -0.0077938511967659, -0.006758224684745073, 0.0128844128921628, -0.018595589324831963, -0.0033829198218882084, 0.005558877717703581, -0.021017126739025116, 0.0020274673588573933, -0.02584497444331646, -0.013440300710499287, 0.003874080954119563, 0.01564100757241249, -0.002318737329915166, 0.007382646668702364, 0.025982042774558067, -0.014521616511046886, -0.0036684786900877953, 0.015199342742562294, 0.026758762076497078, -0.01564100757241249, -0.0031316280364990234, 0.0034952396526932716, 0.016966000199317932, 0.0016838450683280826, 0.007439758628606796, 0.020910518243908882, -0.0012193360598757863, -0.003485721070319414, -0.016539564356207848, -0.020834369584918022, -0.014689144678413868, 0.004508021287620068, 0.00035314104752615094, -0.0038893106393516064, 0.004782157950103283, 0.0041082389652729034, -0.008368776179850101, 0.002179765375331044, 0.006449821405112743, 0.007496870122849941, -0.03825726360082626, 0.005212399642914534, -0.0029583889991045, -0.019296159967780113, -0.012092462740838528, -0.0001395668659824878, -0.009648079983890057, -0.0007748162024654448, 0.011658413335680962, -0.009610005654394627, 0.024093547835946083, 0.0036113669630140066, -0.004725045990198851, -0.004572748206555843, 0.004192003048956394, 0.01780363917350769, -0.004824039991945028, 0.0007248434121720493, 0.020834369584918022, 0.009686154313385487, -0.004515636246651411, -0.005322815850377083, 0.01734674535691738, -0.0064917029812932014, -0.010500948876142502, -0.0021759578958153725, -0.04169919714331627, 0.019463688135147095, 0.008254553191363811, -0.02980472333729267, 0.008018490858376026, -0.033688321709632874, -0.0071237399242818356, 0.008330701850354671, -0.019250469282269478, -0.0025376658886671066, 0.0052428594790399075, 0.01810823567211628, 0.004492791835218668, -0.013219468295574188, -0.009472937323153019, -0.0027623053174465895, 0.040907248854637146, 0.0076453606598079205, 0.00031125909299589694, -0.008620068430900574, 0.004805002827197313, -0.01695076934993267, 0.002248299540951848, -0.005935815628618002, -0.01640249788761139, -0.00029460148653015494, 0.010813159868121147, -0.0011860209051519632, -0.001494424301199615, 0.01780363917350769, 0.007828118279576302, 0.0013249927433207631, 0.004942070692777634, -0.00882566999644041, -0.01593037322163582, 0.004961107857525349, 0.01091215293854475, 0.007980416528880596, 0.001225999090820551, -0.0038360063917934895, 0.0017323900246992707, 0.005254281684756279, 0.012861567549407482, -0.00278515019454062, -0.002299700165167451, -0.01608267053961754, 0.02307314984500408, 0.006050039082765579, -0.038744617253541946, 0.002901277272030711, 0.010089743882417679, 0.011224363930523396, -0.0005497006932273507, -0.001373537816107273, -0.004930648487061262, -0.012062003836035728, 0.0003707504947669804, -0.018214844167232513, 0.009838452562689781, 0.0008257408626377583, -0.024337224662303925, -0.009366328828036785, 0.004770735744386911, -0.012062003836035728, -0.004207232967019081, 0.010074513964354992, 0.017864558845758438, -0.0008519170805811882, -0.021382642909884453, -0.010348650626838207, -0.0069828643463552, -0.007565404288470745, 0.0020712530240416527, -0.004207232967019081, -0.0026271408423781395, -0.0036951308138668537, -0.014810983091592789, -0.006841988768428564, 0.011064451187849045, 0.03396245837211609, -0.00874952133744955, 0.03502854332327843, 0.007397876586765051, -0.008977968245744705, 0.0059662749990820885, 0.005402772221714258, 0.016036981716752052, -0.0012536031426861882, 0.010485718958079815, -0.014338858425617218, -0.011460426263511181, -0.018839266151189804, -0.025890663266181946, -0.01670709252357483, -0.0007871903944760561, 0.0027261346112936735, -0.01067609153687954, 0.009366328828036785, 0.008886589668691158, -0.008452540263533592, -0.010181122459471226, -0.0027604016941040754, 0.0004178677045274526, 0.011125370860099792, 0.020392704755067825, -0.014902361668646336, 0.012244760990142822, -0.012160996906459332, -0.0010765566257759929, 0.024976875633001328, -0.0036513451486825943, 0.00828501209616661, -0.016204509884119034, -0.007424528710544109, -0.00871144700795412, -0.005307585932314396, 0.004066357389092445, 0.015481093898415565, -0.013569753617048264, 0.011369047686457634, -0.002985041355714202, -0.0247484277933836, -0.01033342070877552, -0.006240411661565304, -0.009465321898460388, 0.007649168372154236, -0.012084848247468472, 0.01196300983428955, 0.014201791025698185, -0.0029507742729038, -0.002629044698551297, 0.022403039038181305, 0.016509106382727623, 0.016372038051486015, -0.011026376858353615, -0.005555070471018553, -0.0003926433273591101, 0.010462874546647072, 0.019829202443361282, 0.005555070471018553, 0.0003255370247643441, -0.003188739763572812, 0.0012012507067993283, 0.028144674375653267, -0.0016533853486180305, 0.016113130375742912, -0.006575467064976692, 0.004401412792503834, -0.01964644528925419, 0.024352453649044037, -0.01347076054662466, 0.006133802700787783, 0.018747886642813683, 0.007241771090775728, 0.010242042131721973, 0.0038835995364934206, -0.024870267137885094, 0.03253085911273956, 0.011429966427385807, -0.017864558845758438, 0.023895559832453728, -0.0013326077023521066, -0.019981499761343002, 0.008262167684733868, 0.015747616067528725, -0.01347076054662466, 0.007729124743491411, 0.014072337187826633, -0.012343754991889, 0.014788137748837471, -0.01850420981645584, 0.011018762364983559, -0.03822680190205574, 0.024169696494936943, -0.03195212408900261, 0.016585255041718483, 0.016143590211868286, 0.004184388089925051, 0.009404403157532215, -0.004397605545818806, 0.01192493550479412, 0.006388902198523283, 0.005071524064987898, -0.0020407934207469225, -0.025890663266181946, -0.008764751255512238, -0.01748381368815899, 0.0012669292045757174, -0.022098442539572716, 0.00735218683257699, -0.013744896277785301, 0.005513188429176807, -0.014597765170037746, 0.005589337553828955, -0.018747886642813683, -0.026987209916114807, 0.01195539440959692, 0.029606735333800316, 0.02097143791615963, -0.01233613956719637, 0.0003348176833242178, 0.007988031022250652, -0.018397601321339607, 0.004420449957251549, -0.007904266938567162, 0.003605655627325177, 0.013265158049762249, 0.00971661414951086, -0.01091215293854475, 0.007317919749766588, -0.011871631257236004, -0.007268423214554787, -5.3334053518483415e-05, -0.012739729136228561, -0.05458361282944679, 0.026499856263399124, -0.004595592617988586, -0.010767470113933086, 5.214422708377242e-05, -0.01083600427955389], "36a400d2-2290-477c-837b-02475c4b2fbf": [-0.0062429397366940975, -0.00816410407423973, -0.0015219065826386213, 0.01597706414759159, -0.038274724036455154, -0.023459138348698616, 0.011506727896630764, 0.021352272480726242, 0.0179623793810606, 0.032278262078762054, -0.0029104456771165133, -0.0011234928388148546, 0.0014737930614501238, -0.0049261488020420074, 0.008049307391047478, 0.020839061588048935, -0.0005604802863672376, 0.012918057851493359, 0.022338178008794785, 0.00870432611554861, 0.06574501097202301, -0.012722226791083813, -0.022486738860607147, 0.007515837904065847, 0.020555445924401283, -0.012040196917951107, -0.02863176353275776, 0.016382230445742607, -0.03843679279088974, -0.00887314509600401, 0.017759796231985092, 0.018286513164639473, -0.0035046900156885386, 0.02629530429840088, -0.009217537008225918, -0.036573026329278946, -0.014491453766822815, -0.020501423627138138, -0.06990472227334976, -0.045324619859457016, -0.029144974425435066, 0.04978145286440849, -0.01098676398396492, -0.020028728991746902, -0.054292306303977966, -0.011567502282559872, 0.009568681009113789, -0.010189936496317387, -0.014234848320484161, 0.01921839639544487, 0.02322954311966896, -0.003923362120985985, 0.014694036915898323, -0.009055470116436481, 0.04454129934310913, -0.022473232820630074, 0.0019009059760719538, 0.034925349056720734, 0.00437579769641161, -0.048430897295475006, -0.01820548065006733, 0.02971220761537552, -0.013978242874145508, -0.008974437601864338, 0.03689716011285782, 0.0003509332309477031, -0.004338657483458519, -0.006472534034401178, -0.04632403329014778, 0.013856693170964718, -0.01156075019389391, 0.020528433844447136, -0.035033393651247025, 0.015112709254026413, 0.02102813869714737, -0.024472054094076157, 0.032764460891485214, 0.018259501084685326, 0.0419212244451046, 0.004453454632312059, -0.011513479985296726, 1.7646898413659073e-05, 0.03565464913845062, 0.025363421067595482, 0.05553481727838516, 0.04583783075213432, 0.0010146043496206403, -0.03225124999880791, -0.0005524613661691546, -0.022176111117005348, 0.019583046436309814, 0.026416853070259094, -0.02009625732898712, -0.011992927640676498, -0.025930654257535934, -0.004517605993896723, 0.027402758598327637, -0.022554267197847366, 0.025363421067595482, -0.00948764756321907, 0.011000269092619419, -0.019096845760941505, -0.016679352149367332, 0.01792186312377453, 0.014653520658612251, -0.0034304093569517136, 0.020285334438085556, 0.00584114994853735, -0.020528433844447136, 0.016341714188456535, -0.004851868376135826, -0.034655239433050156, 0.0028327887412160635, 0.018327029421925545, -0.031819071620702744, 0.006280079949647188, -0.009285064414143562, 0.017422158271074295, 0.0021625759545713663, -0.01663883589208126, -0.0008820811635814607, -0.026241282001137733, 0.0048653739504516125, -0.0032734074629843235, -0.013519054278731346, 0.014153814874589443, -0.0029678442515432835, -0.025241870433092117, 0.020271828398108482, 0.021500833332538605, 0.025376925244927406, 0.0001719847205094993, 0.03054955042898655, 0.0015961870085448027, 0.015828503295779228, -0.009082481265068054, -0.01145945768803358, 0.06428641080856323, 0.005787127651274204, 0.028577741235494614, -0.02382378838956356, -0.047134365886449814, -0.059802569448947906, 0.03668107092380524, 0.02682201936841011, -0.017152046784758568, -0.03984136879444122, 0.02426947094500065, -0.03176505118608475, 0.00212712399661541, -0.054076217114925385, -0.0028665526770055294, -0.01866466924548149, 0.011088055558502674, 0.032035160809755325, 0.0022554267197847366, -0.01241835206747055, 0.01562592014670372, 0.0066649881191551685, 0.06007268279790878, -0.006870947778224945, -0.04572978988289833, -0.024877220392227173, 0.028334641829133034, 0.0802229568362236, -0.0015050246147438884, 0.014869608916342258, -0.00043724215356633067, 0.016341714188456535, 0.010547833517193794, 0.0007326760096475482, 0.0005971984937787056, 0.036113835871219635, -0.005726352799683809, -0.006489416118711233, -0.03368283808231354, 0.03624889254570007, 0.017395146191120148, 0.00017462253163103014, 0.006114637013524771, -0.0020275204442441463, 0.002616700017824769, 0.022230133414268494, -0.010406025685369968, -0.004882256034761667, 0.009771264158189297, -0.0005047699087299407, 0.031657006591558456, 0.007110671605914831, 0.003268342697992921, -0.020514927804470062, -0.01084495522081852, 0.007130929734557867, 0.02971220761537552, -0.0076576462015509605, -0.02755131945014, 0.0053380681201815605, 0.005591297056525946, -0.014883114956319332, 0.028226597234606743, -0.005273916758596897, -0.0401114784181118, -0.0006592395948246121, 0.03543855994939804, -0.04753953218460083, 0.03697819262742996, -0.030252428725361824, -0.040921811014413834, -0.00766439875587821, -0.03376387059688568, 0.03846380114555359, -0.01032499223947525, 0.006901335436850786, 0.00967672560364008, -0.028199585154652596, 0.0010390831157565117, -0.013647357001900673, 0.03662704676389694, 0.025417443364858627, -0.02790246345102787, -0.02472865954041481, 0.02971220761537552, -0.00018200837075710297, 0.002240232890471816, -0.059694524854421616, 0.008467978797852993, -0.006995874457061291, 0.010770674794912338, -0.007488826755434275, -0.017449168488383293, 0.03187309578061104, -0.020568950101733208, 0.0353035032749176, -0.014653520658612251, -0.008954178541898727, 0.019893674179911613, 0.014207837171852589, -0.00978477019816637, -0.01095299981534481, -0.01308012381196022, 0.01904282346367836, 0.009467389434576035, -0.015004664659500122, -0.006050485651940107, -0.02873980812728405, -0.004004395101219416, 0.0137621546164155, 0.03757243603467941, 0.018259501084685326, 0.012715473771095276, -0.02838866412639618, 0.04562174528837204, 0.008400451391935349, -0.011601266451179981, -0.007022885140031576, 0.03878793492913246, 0.018880756571888924, -0.02507980354130268, 0.02214910089969635, 0.014383409172296524, 0.000655441137496382, -0.0004184609861113131, 0.005712847225368023, 0.032278262078762054, 0.01807042397558689, -0.0359247587621212, 0.04886307567358017, -0.031684018671512604, -0.005047698970884085, 0.020987622439861298, -0.0024495688267052174, -0.007360524032264948, -0.01802990771830082, 0.039949413388967514, 0.004227236844599247, -0.007313254754990339, -0.0046391561627388, -0.002182834316045046, 0.015544886700809002, -0.012600677087903023, -0.03859885782003403, 0.009541669860482216, 0.0026318938471376896, -0.0014991159550845623, 0.0034354738891124725, 0.014721048064529896, -0.01743566431105137, 0.012404846958816051, -0.03584372624754906, 0.03516845032572746, 0.007711668498814106, -0.010642372071743011, 0.031170805916190147, 0.00483836280182004, -0.003838952165096998, 0.027470286935567856, -0.030144384130835533, -0.01272897981107235, -0.04586484283208847, 0.021163195371627808, 0.011128571815788746, -0.01998821273446083, -0.0026943569537252188, -0.016868431121110916, 0.029280029237270355, -0.02605220302939415, 0.017867840826511383, 0.027429768815636635, 0.002370223868638277, 0.030630584806203842, 0.03065759502351284, -0.04035457968711853, -0.0424884557723999, 0.0051253559067845345, 0.0034185920376330614, 0.0251473318785429, -0.020933600142598152, -0.016301197931170464, 0.0041326978243887424, -0.0020292086992412806, -0.012978832237422466, -0.015045180916786194, -0.0730380043387413, 0.025430947542190552, 0.030468517914414406, -0.04297465458512306, 0.04980846494436264, 0.009055470116436481, 0.0031889977399259806, -0.04656713083386421, -0.025930654257535934, -1.9651628463179804e-05, -0.017489684745669365, -0.009143256582319736, -0.0182730071246624, -0.01269521564245224, -0.028064530342817307, -0.02490423247218132, -0.03373686224222183, -0.00939986202865839, 0.011797096580266953, -0.014829092659056187, 0.017003485932946205, -0.03138689696788788, 0.018543118610978127, 0.007164693437516689, 0.00727949058637023, -0.004227236844599247, -0.020771533250808716, 0.03244032710790634, 0.0008348117116838694, -0.01084495522081852, 0.01844858005642891, 0.0007740367436781526, 0.030630584806203842, -0.025201354175806046, -0.03054955042898655, -0.006607589777559042, 0.003163674846291542, -0.004939654376357794, -0.004470336716622114, -0.0034084629733115435, -0.010811191983520985, 0.0019447989761829376, -0.025268882513046265, 0.024472054094076157, 0.013802670873701572, -0.021770944818854332, 0.004048288334161043, -0.0011243369663134217, -0.039679303765296936, -0.010054880753159523, -0.0021068656351417303, -0.011864624917507172, -0.017570719122886658, -0.041029855608940125, 0.03438512608408928, 0.005243529099971056, -0.022513749077916145, 0.010270969942212105, 0.015247764997184277, 0.004777587950229645, -0.014369904063642025, 0.015720458701252937, 0.03219722956418991, 0.010858461260795593, 0.005155743099749088, -0.011054291389882565, -0.001710984157398343, -0.00298134982585907, -0.0317380391061306, -0.009690231643617153, -0.025349915027618408, -0.0030134255066514015, -0.03795059025287628, -0.024053381755948067, -0.017003485932946205, -0.03244032710790634, 0.019826145842671394, -0.027389252558350563, -0.020001716911792755, -0.01508569810539484, 0.004267753567546606, 0.015369314700365067, 0.012013185769319534, -0.03662704676389694, 0.007961520925164223, 0.001373345497995615, 0.00807631853967905, 0.004652661737054586, 0.011128571815788746, -0.0002920574916061014, 0.04635104164481163, 0.006138272117823362, 0.05088890716433525, 0.018826734274625778, -0.04691827669739723, 0.06434043496847153, -0.0197451114654541, 0.008083070628345013, 0.028415674343705177, 0.015423336997628212, -0.003258213633671403, 0.06217954680323601, -0.025620026513934135, 0.029307041317224503, 0.016908947378396988, 0.03100874088704586, 0.0030860179103910923, -0.013107134960591793, -0.008265395648777485, 0.04432521015405655, 0.008603034541010857, 0.009926578029990196, -0.002977973548695445, -0.010514069348573685, 0.0115269860252738, -0.007056649308651686, 0.018867252394557, -0.004733694717288017, -0.02622777596116066, -0.022270649671554565, -0.00889340415596962, -0.018056917935609818, -0.02814556285738945, -0.03978734835982323, -0.012195510789752007, -0.02047441154718399, 0.01698997989296913, -0.003963878378272057, 0.005172625184059143, 0.004190096631646156, -0.07217365503311157, -0.016125624999403954, -0.017030496150255203, 0.018394557759165764, 0.007509085349738598, -0.010649125091731548, 0.001912723295390606, -0.057317547500133514, -0.039220113307237625, -0.01692245341837406, 0.01622016355395317, 0.00614840118214488, -0.0025880008470267057, -0.022243639454245567, 0.014261859469115734, 0.00044483901001513004, 0.009629456326365471, 0.024053381755948067, 0.014086287468671799, -0.01133790798485279, 0.022621793672442436, 0.047107353806495667, -0.015679942443966866, -0.03989538922905922, -0.016260679811239243, 0.01245211623609066, -0.020042235031723976, -0.008933920413255692, -0.004217107780277729, -0.02291891537606716, -0.0197451114654541, -0.010547833517193794, -0.005250282119959593, 0.004547993652522564, -0.03435811772942543, -0.009035211987793446, 0.030819661915302277, -0.01508569810539484, 0.03006335161626339, -0.00028741496498696506, -0.007644140627235174, 0.026835525408387184, -0.013012596406042576, -0.03487132862210274, -0.009845545515418053, -0.05758766084909439, -0.006783161778002977, -0.03700520470738411, 0.029739217832684517, -0.034898336976766586, 0.009987353347241879, 0.03141390532255173, -0.008204621262848377, 0.02102813869714737, -0.005233400035649538, 0.03284549340605736, 0.007907498627901077, -0.0022419211454689503, -0.02175743877887726, 0.01820548065006733, -0.021960021927952766, 0.024985264986753464, 0.016166141256690025, 0.038139671087265015, 0.013127393089234829, 0.005905301310122013, 0.03641096130013466, 0.007975026965141296, -0.0006453120149672031, -0.022891905158758163, -0.02047441154718399, -0.022662309929728508, -0.011952410452067852, 0.010973257943987846, -0.009035211987793446, -0.024093899875879288, 0.02699759230017662, -0.04564875364303589, -0.018651163205504417, 0.02609272114932537, -0.023135004565119743, 0.002233480103313923, 0.03703221306204796, -0.015774480998516083, -0.006577202118933201, 0.005665577482432127, -0.013086876831948757, -0.0010458359029144049, -0.010581597685813904, 0.026146741583943367, 0.020555445924401283, -0.005905301310122013, -0.007022885140031576, 0.05256359651684761, 0.006263198330998421, -0.015018170699477196, -0.01875920780003071, 0.025363421067595482, -0.05494057387113571, 0.03281848505139351, -0.007914251647889614, 0.014653520658612251, -0.002059596125036478, -0.029523130506277084, 0.014923631213605404, -0.03160298243165016, -0.020704006776213646, -0.020839061588048935, -0.010372261516749859, 0.02009625732898712, 0.005253658629953861, 0.011182594113051891, -0.014761565253138542, 0.004693177994340658, 0.0034574205055832863, 0.016584813594818115, 0.022257143631577492, 0.021230721846222878, 0.05402219668030739, 0.006928346585482359, 0.022554267197847366, 0.03373686224222183, 0.021595371887087822, 0.033952951431274414, 0.006671741139143705, 0.008035801351070404, -0.07012081146240234, -0.010824697092175484, 0.014153814874589443, 0.002571118762716651, 0.00029606695170514286, 0.005533898714929819, 0.032980550080537796, 0.032629404217004776, 0.0006799199618399143, -0.022540761157870293, -0.0018840240081772208, 0.0030370603781193495, -0.0028226596768945456, 0.0007339421426877379, -0.011182594113051891, -0.005192883312702179, -0.039949413388967514, 0.0025474841240793467, 0.03125184029340744, 0.008717832155525684, 0.005652072373777628, 0.012877540662884712, 0.0227703545242548, 0.009332334622740746, 0.029144974425435066, -0.0059188068844377995, -0.026187259703874588, 0.02884785272181034, -0.002447880804538727, 0.032278262078762054, 0.027578331530094147, 0.03198114037513733, 0.009534917771816254, 0.007137682754546404, 0.018462086096405983, -0.010237205773591995, 0.014775070361793041, -0.0029627797193825245, 0.0016400801250711083, 0.018502602353692055, 0.003254837356507778, 0.020987622439861298, 0.03103575110435486, -0.016031086444854736, 0.035033393651247025, -0.02922600694000721, 0.017030496150255203, 0.024715153500437737, -0.01353256031870842, 0.021770944818854332, -0.020285334438085556, -0.017395146191120148, -0.020352862775325775, -0.014937137253582478, 0.01705750823020935, -0.0051287319511175156, 0.023418622091412544, -0.003977383952587843, -0.01807042397558689, 0.03319663926959038, 0.0009504529880359769, -0.01419433206319809, 0.0006309623713605106, 0.009143256582319736, -0.010372261516749859, 0.0406787134706974, -0.009068976156413555, 0.027578331530094147, -0.031927116215229034, 0.003994266036897898, 0.015166731551289558, 0.020987622439861298, -0.029631173238158226, 0.0161796472966671, 0.0017439039656892419, 0.011182594113051891, 0.019069835543632507, -0.003977383952587843, -0.0031552338041365147, -0.008839381858706474, 0.03127885237336159, 0.028658773750066757, 0.04624300077557564, -0.021055150777101517, 0.022095078602433205, -0.024715153500437737, 0.01677389070391655, 0.02611973136663437, 0.02144681103527546, -0.0012011497747153044, 0.014518464915454388, 0.0158690195530653, 0.029901284724473953, -0.025444453582167625, 0.00018643988005351275, -0.012722226791083813, -0.012985585257411003, -0.003197438782081008, -0.017638247460126877, 0.0070836604572832584, -0.006350984331220388, -0.03052254021167755, -0.00924454815685749, -0.05688537284731865, -0.035141438245773315, -0.0206769946962595, -0.03867989033460617, -0.005483252927660942, -0.022972937673330307, 0.04273155704140663, -0.03265641629695892, -0.01970459520816803, -0.021960021927952766, -0.0008424086263403296, 0.016301197931170464, 0.011830860748887062, 0.013681121170520782, -0.01443743146955967, 0.01946149580180645, -0.019029317423701286, 0.022027550265192986, -0.018867252394557, -0.057425592094659805, -0.008960931561887264, 0.015747470781207085, -0.03352077305316925, 0.019758617505431175, 0.016233669593930244, -0.024120910093188286, -0.025349915027618408, -0.009082481265068054, 0.009953589178621769, -0.006327349692583084, 0.005138861481100321, -0.016895441338419914, 0.021284744143486023, 0.007893993519246578, 0.024323493242263794, -0.009953589178621769, 0.010500564239919186, -0.0007689722115173936, 0.016085108742117882, 0.024093899875879288, 0.02462061494588852, -0.018421567976474762, -0.03079265169799328, -0.024053381755948067, 0.04359591007232666, 0.00819786824285984, 0.005638566799461842, 0.0037680480163544416, 0.000776569067966193, 0.01419433206319809, -0.0023195780813694, -0.005517016630619764, 0.003838952165096998, 0.0394902229309082, 0.022203121334314346, 0.0007335201371461153, -0.0006031071534380317, 0.038490813225507736, -0.049160197377204895, 0.003313923953101039, -0.0010551209561526775, 0.03233228251338005, -0.020663490518927574, 0.005246905609965324, -0.0064016301184892654, 0.03233228251338005, 0.008042554371058941, -0.015301786363124847, -0.020987622439861298, 0.0658530592918396, -0.028766818344593048, 0.02671397477388382, 0.036005791276693344, -0.011986174620687962, 0.024647627025842667, 0.03732933849096298, -0.008960931561887264, 0.01245211623609066, 0.03616786003112793, -0.010129161179065704, 0.007414546329528093, -0.022554267197847366, -0.015436842106282711, 0.014923631213605404, 0.010473553091287613, 0.019380463287234306, 0.005584544502198696, 0.025511981919407845, 0.020933600142598152, 0.011533739045262337, 0.026146741583943367, 0.03497936949133873, 0.03316962718963623, 0.002420869655907154, -0.02448556013405323, 0.03951723501086235, 0.004551370162516832, -0.026106225326657295, -0.02922600694000721, -0.005861408077180386, -0.028793830424547195, 0.010230452753603458, -0.01897529512643814, 0.010088644921779633, -0.015031675808131695, 0.016058096662163734, 0.010122409090399742, -0.006188917905092239, -0.008427462540566921, 0.01893477886915207, -0.0036228634417057037, 0.009629456326365471, 0.024282976984977722, 0.00889340415596962, -0.016908947378396988, 0.01705750823020935, -0.017111530527472496, -0.0007833218551240861, -0.017530202865600586, 0.014369904063642025, -0.041489046066999435, 0.039112068712711334, 0.0182459969073534, 0.016206659376621246, -0.013296213001012802, 0.014302375726401806, -0.03379088267683983, -0.021109173074364662, 0.0048147281631827354, 0.005091591738164425, -0.024472054094076157, -0.028334641829133034, 0.021635890007019043, -0.0036735092289745808, -0.022783860564231873, -0.012681710533797741, 0.0018080553272739053, 0.019258912652730942, -0.017489684745669365, -0.012897798791527748, -0.002739938208833337, 0.028928885236382484, -0.01455898117274046, -0.0071241771802306175, -0.008724584244191647, 0.01692245341837406, 0.024296483024954796, -0.006151777692139149, -0.014585992321372032, -0.02354017086327076, 0.0005486629088409245, -0.008589529432356358, 0.02828061953186989, -0.02029884047806263, 0.016854925081133842, 0.0014282118063420057, 0.020109761506319046, -0.03476328402757645, 0.010149420239031315, -0.03867989033460617, -0.058019839227199554, 0.0001943532843142748, 0.004342033993452787, -0.007401040755212307, -0.0077791959047317505, 0.024782681837677956, 0.0032447080593556166, 0.01813795231282711, 0.05542677268385887, 0.02507980354130268, -0.0053380681201815605, 0.011689052917063236, 0.008906909264624119, -0.00808982364833355, 0.019447989761829376, -0.03724830225110054, 0.00017937057418748736, -0.02828061953186989, 0.04297465458512306, 0.03330468386411667, 0.013127393089234829, -0.04062468931078911, 0.013046360574662685, -0.030711617320775986, 0.001530347508378327, 0.01083145011216402, -0.0011471275938674808, -0.001970121869817376, 0.02759183570742607, 0.012256285175681114, -0.03114379569888115, 0.02078503929078579, 0.002640334889292717, -0.04359591007232666, -0.024944748729467392, 0.018408063799142838, 0.0317380391061306, -0.044001076370477676, -0.008785359561443329, -0.008359935134649277, 0.001075379317626357, 0.012073960155248642, -0.013829682022333145, -0.03362881764769554, 0.001993756741285324, 0.008022296242415905, -0.02124422788619995, 0.018543118610978127, 0.017273597419261932, 0.027875453233718872, -0.00247657997533679, -0.0004342877946328372, 0.003724155016243458, -0.016800902783870697, -0.007509085349738598, -0.011621524579823017, -0.03660003840923309, 0.013924220576882362, -0.020352862775325775, 0.015382819809019566, -0.03198114037513733, -0.029280029237270355, 0.018110940232872963, 0.03271044045686722, -0.04959237575531006, 0.02640334703028202, -0.017219575121998787, -0.009514658711850643, 0.004281259141862392, -0.005172625184059143, 0.031819071620702744, 0.01911035180091858, -0.022689322009682655, 0.03549258038401604, 0.019934190437197685, 0.0002941677230410278, -0.00936609786003828, -0.027956485748291016, -0.00487550301477313, 0.015531380660831928, 0.005186130758374929, 0.0347362719476223, -0.00742805190384388, -0.0041833436116576195, -0.019610056653618813, -0.014032265171408653, -0.007130929734557867, -0.005972828716039658, 0.0022537384647876024, -0.017327619716525078, -0.001351398997940123, 0.01970459520816803, 0.008562518283724785, -0.0006318064406514168, 0.01921839639544487, -0.012006432749330997, -0.022729838266968727, -0.02281087264418602, -0.02675449289381504, -0.015909535810351372, -0.020879577845335007, 0.011824107728898525, 0.0008588684722781181, -0.01041277777403593, -0.005084839183837175, -0.016166141256690025, 0.03125184029340744, -0.011216358281672001, 0.010189936496317387, -0.02047441154718399, 0.019299428910017014, -0.0031332874204963446, 0.0021676404867321253, 0.02043389528989792, 0.03146792948246002, 0.002826036186888814, -0.008427462540566921, 0.007076907437294722, 0.004041535314172506, -0.008062812499701977, -0.03822070360183716, -0.013802670873701572, 0.004109063185751438, 0.00033362925751134753, 0.033466748893260956, -0.01915086805820465, 0.008663809858262539, 0.009669972583651543, -0.015018170699477196, -0.00844096764922142, -0.007475321181118488, -0.029631173238158226, 0.022797366604208946, 0.026349324733018875, -0.029009919613599777, -0.021919505670666695, 0.018367545679211617, -0.01454547606408596, -0.0036093578673899174, 0.0329265296459198, -0.026187259703874588, -0.018286513164639473, -0.01674688048660755, -0.03006335161626339, -0.004585133865475655, -0.018894262611865997, -0.004328528419137001, -0.04227236658334732, 0.0269300639629364, 0.04708034172654152, -0.026592426002025604, 0.004520982503890991, 0.012046949937939644, 0.00363636901602149, -0.0073470184579491615, -0.012715473771095276, -0.010493811219930649, -0.005645319353789091, -0.03343974053859711, -0.0017371511785313487, 0.01466702576726675, -0.015409830957651138, 0.04216432198882103, -0.0020612843800336123, 0.03627590462565422, 0.00530092790722847, -0.006063991226255894, 0.012512890622019768, 0.02012326754629612, -0.024877220392227173, -0.0299282968044281, 0.014761565253138542, 0.009791523218154907, -0.0028277242090553045, 0.013640603981912136, 0.011952410452067852, -0.009778017178177834, 0.0020731016993522644, 0.01009539794176817, -0.01743566431105137, -0.0003813207149505615, 0.025471465662121773, 0.013107134960591793, -0.023972349241375923, -0.0011471275938674808, 0.007569860201328993, -0.013660863041877747, 0.013525807298719883, -0.010541080497205257, -0.012810013256967068, -0.020150279626250267, 0.0014121739659458399, -0.015355808660387993, 0.005533898714929819, -0.029307041317224503, -0.0036667564418166876, -0.06871623545885086, -0.030117373913526535, -0.026795009151101112, 0.009845545515418053, 0.02671397477388382, 0.00661771884188056, -6.114425923442468e-05, 0.01911035180091858, -0.0006921594031155109, 0.021352272480726242, -0.01285052951425314, -0.006833807565271854, 0.04924122989177704, 0.030711617320775986, -0.00483161024749279, 0.013154404237866402, -0.007144435308873653, 0.0010458359029144049, 0.018394557759165764, -0.010257463902235031, 0.005121979396790266, 0.014113298617303371, -0.0005870693130418658, -0.004125945270061493, -0.025363421067595482, 0.041299968957901, -0.01419433206319809, 0.0030657595489174128, -0.020568950101733208, -0.03373686224222183, 0.0060200984589755535, 0.014869608916342258, 0.00350131350569427, 0.004065169952809811, 0.01163503061980009, 0.022459726780653, -0.00994008406996727, 0.0019279171247035265, 0.015072192065417767, -9.559396130498499e-05, 0.019015813246369362, 0.038517825305461884, -1.6156540368683636e-05, -0.020744523033499718, -0.02109566703438759, -0.03127885237336159, -0.026065709069371223, -0.02058245614171028, 0.0116822998970747, 0.022230133414268494, 0.012951821088790894, 0.01875920780003071, -0.005756739992648363, -0.014504959806799889, 0.0024006112944334745, -0.0017928616143763065, 0.00357897044159472, -0.009764512069523335, 0.01866466924548149, -0.00048029108438640833, 0.020690500736236572, 0.002437751507386565, -0.01033849734812975, -0.011668793857097626, -0.005250282119959593, 0.03295353800058365, 0.0044939713552594185, 0.03462822735309601, 0.03303457051515579, -0.010689642280340195, 0.005334691610187292, -0.014923631213605404, 0.025228364393115044, 0.01992068439722061, -0.0024630744010210037, -0.0017422158271074295, 0.027186669409275055, 0.0179623793810606, 0.005121979396790266, -0.016274185851216316, -0.010162925347685814, -0.005554156843572855, 0.013316471129655838, -0.014167320914566517, -0.01562592014670372, -0.008987942710518837, -0.009953589178621769, -0.04529761150479317, 0.016085108742117882, 0.014883114956319332, 0.009541669860482216, -0.004959912970662117, 0.0341150164604187, 0.02626829221844673, -0.01497765351086855, 0.011513479985296726, -0.015436842106282711, -0.019204890355467796, -0.006455652415752411, 0.00100700743496418, 0.014518464915454388, -0.04359591007232666, 0.011290638707578182, -0.024944748729467392, -0.016274185851216316, -0.01297207921743393, -0.012627688236534595, 0.009339086711406708, -0.025349915027618408, -0.011121819727122784, 0.005270540248602629, 0.011162335984408855, -0.018813230097293854, 0.014531970024108887, -0.014748059213161469, 0.01952902413904667, -0.0022706203162670135, -0.019434485584497452, -0.013505549170076847, 0.007252479903399944, -0.014288870617747307, 0.01443743146955967, 0.005257034674286842, -0.02252725511789322, 0.0018435074016451836, -0.00201401486992836, -0.01314765214920044, 0.0015970311360433698, 0.00831941794604063, 0.03303457051515579, -0.007758937776088715, 0.017908357083797455, -0.012384587898850441, 0.0011682299664244056, -0.005618308205157518, 0.010514069348573685, 0.006995874457061291, -0.030144384130835533, 0.020082751289010048, -0.026241282001137733, -0.00831941794604063, 0.005652072373777628, 0.016247175633907318, -0.010689642280340195, -0.00790074560791254, -0.0006039512809365988, 0.003197438782081008, -0.014950642362236977, 0.014396915212273598, -0.015923041850328445, -0.00661771884188056, 0.02549847587943077, 0.023864304646849632, 0.007948015816509724, -0.005250282119959593, -0.00858277641236782, -0.02316201664507389, -0.0011099872644990683, -0.0020511553157120943, -0.014477948658168316, -0.013451526872813702, 0.02437751553952694, 0.009062223136425018, 0.014342892915010452, -0.0007491359137929976, -0.007333512883633375, -0.023445632308721542, -0.01813795231282711, -0.00022241950500756502, -0.008494989946484566, -0.009183772839605808, -0.012256285175681114, -0.004726942162960768, -0.027929475530982018, 0.00444670207798481, -0.010777427814900875, -0.004152956418693066, -0.009285064414143562, 0.020622972398996353, 0.002363471081480384, -0.008454473689198494, -0.007907498627901077, -0.021082160994410515, 0.03446616232395172, 0.020352862775325775, 0.02503928728401661, -0.0009470765944570303, 0.0003749899915419519, 0.01389720942825079, 0.006486039608716965, 0.017638247460126877, 0.012614182196557522, -0.015923041850328445, 0.002628517337143421, 0.013208426535129547, -0.02521486021578312, 0.037680480629205704, 0.027645858004689217, 0.003946996759623289, -0.01419433206319809, -0.020771533250808716, -0.009298570454120636, 0.01754370704293251, -0.014248354360461235, -0.015031675808131695, 0.0021659524645656347, -0.021392788738012314, 0.012094219215214252, 0.021784450858831406, 0.010649125091731548, -0.00021988720982335508, 0.013451526872813702, 0.021649394184350967, -0.005206388887017965, -0.006941852159798145, -0.012100971303880215, -0.0076171294786036015, -0.015045180916786194, 0.0017911733593791723, -0.007610376924276352, 0.03100874088704586, -0.0036600036546587944, 0.008434215560555458, -0.010817945003509521, -0.0025896888691931963, 0.025052793323993683, 0.0027787666767835617, -0.047728609293699265, -0.03781553730368614, -0.004807975143194199, -0.0036329925060272217, 0.025971170514822006, -0.008373440243303776, -0.018408063799142838, -0.014613003470003605, 0.003551959292963147, 0.032143205404281616, 0.0060808733105659485, 0.00828565377742052, 0.003551959292963147, -0.02759183570742607, -0.021716922521591187, 0.00901495385915041, 0.007103918585926294, 0.039814356714487076, 0.04986248537898064, -0.03195412829518318, -0.000492530467454344, 0.009825286455452442, 0.030981728807091713, 0.0008078006212599576, 0.0014982718275859952, -0.024701649323105812, 0.020663490518927574, -0.006371242459863424, 0.0206499844789505, 0.012938315980136395, -0.006725763436406851, 0.003724155016243458, -0.012330565601587296, 0.00317380391061306, -0.009838792495429516, 0.014261859469115734, -0.013978242874145508, 0.03522247076034546, -0.015923041850328445, 0.01002786960452795, 0.014491453766822815, -0.0005756739992648363, 0.00861654058098793, -0.006860818713903427, 0.0065029216930270195, -0.016125624999403954, -0.0029695325065404177, 0.02702460251748562, -0.007218715734779835, 0.01002786960452795, -0.02790246345102787, -0.020595962181687355, 0.02814556285738945, -0.013370493426918983, 0.013539312407374382, -0.007893993519246578, 0.0008289030520245433, 0.010304734110832214, 0.007292996160686016, 0.02228415571153164, -0.002883434761315584, 0.03414202854037285, -0.025511981919407845, -0.0009597380412742496, -0.018840240314602852, 0.007853476330637932, -0.007860229350626469, 0.021325262263417244, -0.035141438245773315, 0.005439359694719315, -0.00514561403542757, 0.004119192250072956, -0.0032261379528790712, 0.018772711977362633, 0.0007799454615451396, -0.01508569810539484, -0.01813795231282711, -0.0014366527320817113, -0.0001922430528793484, 0.0021659524645656347, 0.012229274027049541, 0.013951231725513935, 0.010736911557614803, -0.0038693398237228394, 0.01681440882384777, -0.028604751452803612, -0.004358916077762842, 0.0024529453366994858, 0.00409893412142992, 0.011986174620687962, -0.0007554666372016072, -0.011115066707134247, -0.027632351964712143, -0.007022885140031576, -0.027740396559238434, 0.0502946637570858, -0.0013438020832836628, -0.032764460891485214, -0.013194921426475048, -0.0010711587965488434, -0.020622972398996353, 0.03176505118608475, -0.000906559987924993, -0.021257733926177025, 0.05591297149658203, 0.011331154964864254, -0.029901284724473953, 0.011067797429859638, -0.010243958793580532, -0.010736911557614803, 0.004230613354593515, -0.014572487212717533, 0.0012011497747153044, 0.005439359694719315, 0.022257143631577492, 0.017975885421037674, 0.008771853521466255, 0.03759944811463356, -0.010419530794024467, 0.0064016301184892654, 0.03484431654214859, 0.01681440882384777, 0.01478857547044754, 0.01358658168464899, -0.006533309351652861, 0.002378664677962661, -0.01681440882384777, 0.016868431121110916, 0.021946515887975693, 0.02779441885650158, 0.016976475715637207, -0.03146792948246002, -0.038031626492738724, -0.02162238396704197, 0.004878879524767399, 0.003371322527527809, 0.00529417535290122, -0.012046949937939644, 0.003865963313728571, 0.02501227706670761, -0.010068386793136597, 0.005429230630397797, -0.007941262796521187, 0.0008086447487585247, 0.03030645102262497, 0.00398413697257638, -0.0014450937742367387, -0.016625329852104187, 0.028766818344593048, -0.011290638707578182, 0.01358658168464899, 0.023688731715083122, 0.007333512883633375, -0.0013269201153889298, 0.015679942443966866, -0.00471681309863925, -0.017908357083797455, -0.0052772932685911655, -0.0010618737433105707, -0.002891875570639968, -0.007151187863200903, -0.00885963998734951, -0.0034236565697938204, -0.005733105354011059, -0.010473553091287613, -0.012148241512477398, 0.03905804827809334, -0.000194880849448964, 0.0025964416563510895, -0.03549258038401604, 0.0019262288697063923, -0.03006335161626339, -0.02417493239045143, 0.003585723228752613, 0.0040111481212079525, -0.001169918105006218, 0.015288281254470348, 0.003798435674980283, 0.018327029421925545, -0.0018451956566423178, 0.02898290753364563, -0.014180826023221016, -0.046783220022916794, -0.00409893412142992, 0.019029317423701286, 0.007603623904287815, -0.010649125091731548, -0.02133876644074917, 0.006661612074822187, 0.015747470781207085, 0.03006335161626339, 0.0027939605060964823, -0.015247764997184277, -0.02570105902850628, -0.00981853436678648, -0.005834396928548813, -0.007988532073795795, -0.014234848320484161, 0.015072192065417767, -0.004878879524767399, -0.0005267164087854326, -0.0015067127533257008, -0.010115656070411205, 0.027146153151988983, -0.004406185355037451, -0.00414282688871026, 0.005831020884215832, 0.03384490683674812, -0.0176517516374588, -0.014694036915898323, -0.03362881764769554, 0.00185701297596097, -0.02012326754629612, -0.024823198094964027, -0.009285064414143562, -0.008947426453232765, -0.009028458967804909, 0.02801050804555416, -0.004034782759845257, 0.01771927997469902, 0.0025373550597578287, 0.0017422158271074295, 0.03368283808231354, -0.008812370710074902, -0.03508741408586502, 0.02734873630106449, 0.020271828398108482, -0.0025002146139740944, 0.016017580404877663, 0.002628517337143421, -0.0018485719338059425, -0.024782681837677956, 0.03341272845864296, 0.00925805326551199, -0.00021418956748675555, -0.0206499844789505, 0.007563107181340456, -0.02501227706670761, 0.018475590273737907, 0.02884785272181034, -0.02025832235813141, -0.002194651635363698, 0.01761123538017273, 0.003264966420829296, -0.017773302271962166, -0.016557803377509117, 0.012317060492932796, 0.014761565253138542, -0.023445632308721542, -0.00742805190384388, -0.006854066159576178, -0.0071849520318210125, -0.01642274670302868, 0.02702460251748562, -0.022783860564231873, 0.010054880753159523, 0.019758617505431175, 0.03495236113667488, -0.008015543222427368, 0.023634711280465126, -0.011979421600699425, -0.0371132493019104, 0.035276494920253754, 0.005057828035205603, -0.001626574550755322, -0.024053381755948067, 0.016436252743005753, 0.0036093578673899174, -0.024404525756835938, -0.018853746354579926, -0.01946149580180645, 0.01771927997469902, -0.0029104456771165133, 0.018191974610090256, -0.023324083536863327, -0.03859885782003403, 0.002701109740883112, 0.028469696640968323, -0.01083145011216402, 0.005844526458531618, 0.01431588176637888, 0.011344661004841328, -0.0013471784768626094, -0.006644729990512133, -0.004277882631868124, -0.02168991044163704, 0.0022638675291091204, 0.006209176033735275, -0.012263038195669651, 0.006165282800793648, -0.0019211643375456333, -0.010007611475884914, 0.012290049344301224, -0.006982368882745504, -0.008906909264624119, -0.0212712399661541, -0.0036600036546587944, -0.01771927997469902, 0.0018114317208528519, -0.01018318347632885, 0.0115269860252738, 0.0025019028689712286, -0.011445952579379082, -0.00861654058098793, 0.0019144115503877401, -0.00835318211466074, 0.015882525593042374, 0.019339945167303085, 0.004534488078206778, 0.008967684581875801, 0.0031940622720867395, -0.021649394184350967, 0.00038722940371371806, 0.018867252394557, -0.010838203132152557, 0.002571118762716651, 0.0031704276334494352, -0.012810013256967068, 0.043163735419511795, 0.019123857840895653, 0.005182754248380661, -0.007752185221761465, 0.004321775399148464, 0.001525282859802246, -0.005260411184281111, 0.018367545679211617, 0.01604459248483181, -0.0019329816568642855, -0.0037781773135066032, 0.006840560585260391, -0.011277133598923683, 0.013573076575994492, -0.013100381940603256, 0.022432716563344002, 0.016679352149367332, 0.01754370704293251, -0.005976205226033926, 0.009980600327253342, 0.004058417398482561, 0.00029606695170514286, -0.010041375644505024, 0.021811461076140404, -0.01719256304204464, 0.021109173074364662, 0.017179058864712715, 0.021257733926177025, 0.013728390447795391, 0.016611825674772263, -0.006894582882523537, -0.0024411280173808336, -0.029847262427210808, 0.018475590273737907, 0.0017742915078997612, 0.009285064414143562, 0.0044331965036690235, 0.01299233827739954, -0.005986334290355444, 0.011013775132596493, 0.007299749180674553, -0.016098614782094955, 0.013167910277843475, 0.027564825490117073, -0.007988532073795795, -0.010574844665825367, 0.004774211440235376, -0.006908087991178036, 0.004095557611435652, -0.007144435308873653, -0.010716652497649193, -0.006472534034401178, -0.007468568626791239, 0.00850849598646164, 0.009737500920891762, -0.0037410371005535126, 0.006475910544395447, -0.006047109607607126, -0.008731337264180183, 0.0006069056107662618, -0.010365508496761322, -0.008218126371502876, -0.010703147388994694, -0.011425694450736046, -0.032629404217004776, -0.013397504575550556, -0.013681121170520782, -0.01659831963479519, 0.0006824522861279547, -0.005000429227948189, 0.006459028925746679, 0.0299553070217371, 0.004740447737276554, -0.028415674343705177, -0.0002405675913905725, 0.019245406612753868, -0.0050274403765797615, 0.002814218634739518, 0.0137621546164155, 0.01904282346367836, -0.003172115655615926, 0.0022655557841062546, -0.011391930282115936, -0.009285064414143562, 0.007691409904509783, 0.011175842024385929, 0.00808982364833355, -0.012263038195669651, 0.02479618787765503, -0.022837882861495018, -0.017665257677435875, -0.004956536460667849, -0.0034084629733115435, -0.0007841659244149923, 0.01412680372595787, -0.0020731016993522644, -0.007110671605914831, 0.008015543222427368, 0.022419210523366928, -0.0024326869752258062, -0.006469157990068197, -0.005976205226033926, -0.017273597419261932, 0.00796827394515276, -0.003460796782746911, -0.012019938789308071, 0.005094968248158693, 0.022378694266080856, -0.027713386341929436, 0.01771927997469902, -0.005753363948315382, -0.024850210174918175, 0.0016974786994978786, -0.0028327887412160635, -0.031089773401618004, 0.013350235298275948, 0.013924220576882362, 0.003477678867056966, 0.0013488667318597436, -0.013546065427362919, 0.0037511661648750305, 0.002525537507608533, 0.015909535810351372, 0.010595102794468403, 0.003128222655504942, -0.006962110288441181, -0.019231900572776794, -0.019177880138158798, -0.005881666671484709, 0.010595102794468403, 0.013843187130987644, -0.005939065013080835, 0.002566054230555892, 0.002826036186888814, -0.004571628291159868, 0.002368535613641143, 0.0028952520806342363, 0.006222681608051062, 0.002864864422008395, -0.02594415843486786, -0.008224879391491413, 0.014748059213161469, 0.004423067439347506, 0.009204031899571419, 0.013640603981912136, 0.02060946822166443, -0.005483252927660942, -0.01963706873357296, 0.008866393007338047, -0.0008424086263403296, 0.02887486293911934, -0.019974706694483757, -0.004861997440457344, 0.0065029216930270195, -0.019380463287234306, 0.004986923653632402, -0.01873219572007656, 0.003977383952587843, -0.01180384960025549, 0.006215929053723812, -0.020393379032611847, 0.0031906859949231148, 0.0038288231007754803, -0.011466210708022118, -0.0038524577394127846, 0.0006410914938896894, 0.01639573648571968, 0.006556943990290165, 0.022486738860607147, -0.01497765351086855, -0.00471681309863925, 0.02183847315609455, 0.0052367765456438065, -0.026497887447476387, 0.004669543355703354, -0.009480895474553108, -0.014045770280063152, -0.013120641000568867, -0.029523130506277084, 0.01175658032298088, 0.005088215693831444, -0.0056925886310637, 0.012209015898406506, 0.005138861481100321, 0.020839061588048935, -0.019366957247257233, 0.0002024777204496786, -0.0017911733593791723, -0.009987353347241879, 0.0033628817182034254, -0.020987622439861298, 0.004065169952809811, 0.009852297604084015, -0.008218126371502876, -0.02113618329167366, -0.007684657350182533, 0.009811781346797943, 0.029388073831796646, 0.008029048331081867, 0.008386945351958275, 0.000860978732816875, 0.0016248862957581878, 0.007090413011610508, 0.0023195780813694, -0.0026825396344065666, -0.01431588176637888, 0.003106276271864772, -0.011094808578491211, -0.020839061588048935, 0.011324402876198292, -0.03114379569888115, -0.022432716563344002, 0.00975100602954626, 0.013107134960591793, -0.007205210160464048, 0.005121979396790266, 0.013309718109667301, -0.0036161106545478106, 0.022608289495110512, -0.0005288266693241894, 0.013728390447795391, -0.008900156244635582, 0.021635890007019043, -0.0049058906733989716, -0.022864894941449165, -0.004119192250072956, 0.006982368882745504, 0.023283565416932106, 0.0063307262025773525, -0.004267753567546606, 0.019799133762717247, -0.019015813246369362, -0.017354629933834076, 0.009095987305045128, -0.012519643642008305, 0.034898336976766586, 0.01133790798485279, -0.017516696825623512, 0.010514069348573685, 0.012742484919726849, -0.013296213001012802, -0.011810602620244026, -0.012330565601587296, -0.009514658711850643, 0.011513479985296726, -0.009116245433688164, 0.012533149681985378, -0.0010027870303019881, -0.0038524577394127846, -2.293569195899181e-05, 0.014086287468671799, -0.0071241771802306175, -0.000748713850043714, 0.007488826755434275, 0.024985264986753464, 0.0037612952291965485, -0.0057634930126369, -0.0018975295824930072, 0.008427462540566921, -0.014721048064529896, 0.018705185502767563, 0.024431537836790085, -0.028658773750066757, 0.022864894941449165, 0.004895761609077454, 0.010824697092175484, -0.017975885421037674, -0.014923631213605404, 0.022581277415156364, 0.0007900745840743184, 0.001586057827807963, -0.010453294962644577, 0.020460905507206917, 0.034412138164043427, -0.01145945768803358, 0.009028458967804909, 0.005003805737942457, -0.010014364495873451, 0.004031406249850988, 0.024701649323105812, -0.0036329925060272217, 0.008589529432356358, -0.007070154882967472, -0.01326920185238123, -0.0032886010594666004, -0.028199585154652596, -0.004244118928909302, 0.005901924800127745, 0.00615515373647213, -0.005321186035871506, 0.004889008589088917, -0.01454547606408596, 0.016247175633907318, -0.007340265903621912, -0.03271044045686722, -0.017813818529248238, -0.014167320914566517, 0.016017580404877663, -0.0014113298384472728, 0.0137621546164155, -0.0036735092289745808, 0.005898548290133476, -0.006729139480739832, -0.01260743010789156, -0.0017759796464815736, -0.0026150119956582785, -0.0014805457321926951, 0.0017371511785313487, -0.009690231643617153, 0.02594415843486786, 0.013302965089678764, -0.004973418544977903, 0.0038794688880443573, -0.0088258758187294, -0.011088055558502674, 0.0051287319511175156, -0.0025289140176028013, 0.007232221309095621, -0.016274185851216316, 0.015315292403101921, -0.009393109008669853, 0.009426873177289963, 0.004868750460445881, 0.003754542674869299, 0.004939654376357794, 0.02748379111289978, 0.007826465182006359, 0.01002786960452795, 0.004470336716622114, -0.02029884047806263, 0.02430998720228672, -0.0012087465729564428, -0.002697733463719487, -0.024539582431316376, 0.006948604714125395, 0.005307680461555719, 0.009832039475440979, -0.015652930364012718, -0.01939396746456623, -0.002025832422077656, -0.031224828213453293, -0.012614182196557522, -0.009393109008669853, -0.01774629019200802, 0.017489684745669365, 0.036843135952949524, 0.007704915478825569, 0.0026420229114592075, 0.02501227706670761, 0.007684657350182533, 0.008724584244191647, 0.015274775214493275, 0.017948875203728676, -0.0005305148661136627, -0.013444773852825165, 0.004757329355925322, 0.001277962583117187, 0.017111530527472496, -0.005993087310343981, 0.01442392636090517, -0.03792358189821243, 0.02675449289381504, -0.014842597767710686, 0.007076907437294722, -0.010777427814900875, 0.015558391809463501, -0.012526396661996841, 0.03614084795117378, -0.005209765397012234, -0.0037410371005535126, -0.008657056838274002, -0.030711617320775986, -0.0035148190800100565, -0.01412680372595787, -0.013154404237866402, 0.0008888339507393539, 0.022405706346035004, 0.01716555282473564, -0.004409561865031719, 0.021770944818854332, 0.04516255483031273, 0.00781296007335186, -0.002623452804982662, 0.0033122359309345484, 0.020704006776213646, 0.024823198094964027, -0.0015742405084893107, 0.00089474261039868, 0.011081302538514137, -0.004534488078206778, -0.017732786014676094, 0.002864864422008395, 0.015747470781207085, -0.010108903050422668, 0.0015227505937218666, -0.004740447737276554, -0.030333463102579117, 0.03187309578061104, 0.008684067986905575, -0.01320167351514101, -0.013411009684205055, 0.00047311626258306205, -0.00207141344435513, -0.007367277052253485, -0.0035249481443315744, -0.02755131945014, -0.004946407396346331, 0.010520822368562222, 0.007596871349960566, -0.0049058906733989716, 0.007475321181118488, -0.005074710119515657, -0.014775070361793041, -0.006897958926856518, 0.005976205226033926, -0.008481484837830067, 0.03303457051515579, 0.0030657595489174128, 0.0031873094849288464, -0.004318399354815483, 0.00661771884188056, 0.01419433206319809, -0.001328608370386064, 0.0022165982518345118, 0.028064530342817307, -0.011297391727566719, 0.021122679114341736, -0.007401040755212307, -0.009251301176846027, 0.0019009059760719538, 0.00022410770179703832, -0.008015543222427368, -0.0011505039874464273, 0.020285334438085556, -0.044379234313964844, -0.02166290022432804, 0.026497887447476387, -0.02466113120317459, -0.00924454815685749, 0.010149420239031315, -0.024188438430428505, -0.023040466010570526, 0.01551787555217743, 0.01730060763657093, 0.009224290028214455, -0.0012627687538042665, -0.0018114317208528519, 0.010932741686701775, -0.004277882631868124, -0.018529612571001053, 0.0033679462503641844, 0.016125624999403954, -0.004699931014329195, 0.01164853572845459, -0.020528433844447136, 0.004892385099083185, 0.013795917853713036, 0.009602445177733898, 0.0394902229309082, -0.025660542771220207, 0.010176431387662888, -0.01058835070580244, 0.0019768746569752693, 0.02695707604289055, -0.012323813512921333, -0.004392679780721664, 0.013086876831948757, 0.00781296007335186, -0.0019667455926537514, 0.002240232890471816, -0.00422048382461071, 0.004338657483458519, 0.023702237755060196, -0.010905730538070202, -0.012236027047038078, 0.0091229984536767, -0.016733374446630478, 0.007414546329528093, 0.013492043130099773, -0.0005376896588131785, -0.009811781346797943, 0.012229274027049541, -0.004085428547114134, 0.02497175894677639, 0.040057457983493805, -0.019231900572776794, -0.012283296324312687, 0.01532879751175642, 0.006729139480739832, -0.015720458701252937, 0.01253990177065134, 0.006003216374665499, 0.009528164751827717, -0.026862535625696182, 0.01813795231282711, -0.007468568626791239, -0.0048552448861300945, 0.029739217832684517, -0.0056486958637833595, -0.010574844665825367, 0.007954767905175686, -0.009156761690974236, 0.013323224149644375, 0.020987622439861298, 0.009960342198610306, 0.011445952579379082, -0.016908947378396988, 0.018016401678323746, 0.0020005095284432173, 0.0015632673166692257, -0.005824267864227295, 0.0035924760159105062, -0.009163514710962772, 0.021230721846222878, -0.001936358050443232, 0.009237795136868954, 0.010763922706246376, 0.021325262263417244, 0.007596871349960566, 0.01295857410877943, -0.009568681009113789, 0.008312664926052094, 0.0020106385927647352, 0.0031552338041365147, 0.01890776865184307, -0.018853746354579926, -0.00422048382461071, -0.008083070628345013, 0.020933600142598152, -0.003815317526459694, -0.013768906705081463, 0.014802081510424614, -0.00016523194790352136, -0.01508569810539484, 0.004693177994340658, 0.011101560667157173, 0.010898977518081665, 0.014640014618635178, 0.04408211261034012, -0.026970580220222473, 0.006388124544173479, 0.012087466195225716, 0.024093899875879288, -0.005452865269035101, -0.011439199559390545, -0.02364821545779705, -0.007914251647889614, -0.00047860288759693503, -0.016733374446630478, 0.019650572910904884, -0.015652930364012718, 0.0011234928388148546, 0.02430998720228672, 0.01550437044352293, 0.018948284909129143, -0.009710489772260189, -0.00464590871706605, -0.007367277052253485, -0.0013210114557296038, 0.01705750823020935, -0.012506138533353806, -0.01550437044352293, -0.005476499907672405, -0.003589099505916238, -0.02717316336929798, 0.003663380164653063, 0.020285334438085556, 0.014815586619079113, 0.0046391561627388, 0.014802081510424614, -0.011871377006173134, -0.018354041501879692, 0.0035215718671679497, -0.0008812370360828936, -0.008157351054251194, 0.005115226376801729, -0.010905730538070202, -0.005311056971549988, 0.02413441613316536, -0.010736911557614803, 0.002133876783773303, -0.010777427814900875, -0.021635890007019043, 0.013046360574662685, -0.0018924650503322482, 0.02622777596116066, 0.01681440882384777, 0.008913662284612656, -0.0002924795262515545, -0.015409830957651138, 0.00901495385915041, -0.02490423247218132, -0.016611825674772263, 0.002132188528776169, 0.008927167393267155, -0.008245137520134449, -0.0013910714769735932, 0.01716555282473564, -0.0067021287977695465, -0.029739217832684517, -0.016652341932058334, -0.0010061634238809347, -0.0019903802312910557, -0.009163514710962772, -0.011513479985296726, -0.00510172126814723, 0.008589529432356358, -0.013822929002344608, -0.004416314419358969, -0.03808564692735672, -0.006769656203687191, 0.0068236785009503365, -0.004895761609077454, 0.010318239219486713, -0.0006706349086016417, -0.002420869655907154, 0.036464981734752655, -0.019475001841783524, 0.015598908998072147, 0.011986174620687962, -0.015045180916786194, -0.0010323303285986185, 0.006367866415530443, 0.008420709520578384, -0.012148241512477398, -0.0045952629297971725, 0.01580149121582508, 0.004250871483236551, 0.02106865681707859, -0.02137928456068039, -0.009271559305489063, 0.022486738860607147, -0.01838105171918869, -0.034574203193187714, 0.028550731018185616, -0.0058208913542330265, -0.01569344848394394, -0.014504959806799889, -0.00464590871706605, -0.020987622439861298, -0.013924220576882362, -0.004551370162516832, -0.003589099505916238, -0.012978832237422466, 0.0065029216930270195, -0.009811781346797943, 0.0006073276745155454, -0.002560989698395133, -0.005064580589532852, 0.014842597767710686, -0.0006731671746820211, 0.020244818180799484, -0.013768906705081463, 0.02525537647306919, -0.018988801166415215, -0.020568950101733208, 0.0033561289310455322, -0.03776151314377785, 0.04116491228342056, 0.014153814874589443, -0.01419433206319809, -0.010905730538070202, -0.0092918174341321, -0.004210354760289192, -0.00471681309863925, -0.013566323556005955, 0.021892495453357697, 0.0022723085712641478, 0.0034287211019545794, -0.01807042397558689, -0.012783002108335495, 0.0018941531889140606, -0.01959655061364174, 0.021541349589824677, 0.010345250368118286, -0.010682889260351658, -0.00828565377742052, -0.0034320976119488478, 0.002268932294100523, -0.011695805005729198, 0.010149420239031315, -0.009163514710962772, 0.008744842372834682, -0.016557803377509117, -1.656540007388685e-05, -0.0008972748764790595, -0.0025626779533922672, -0.008454473689198494, -0.0026200765278190374, 0.011081302538514137, -0.011702558025717735, -0.0025795598048716784, -0.025714565068483353, -0.006074120756238699, -0.006469157990068197, -0.003400021931156516, -0.024228954687714577, -0.012168499641120434, -0.011513479985296726, -0.005618308205157518, -0.006323973182588816, 0.0011513479985296726, 0.004531111568212509, -0.003825446590781212, -0.00010793887486215681, -0.011155582964420319, 0.024107404053211212, 0.01281676534563303, -0.005273916758596897, -0.004541240632534027, 0.012364329770207405, 0.019839651882648468, 0.011675546877086163, 0.003291977569460869, -0.01869167946279049, -0.03327767178416252, 0.02525537647306919, -0.009541669860482216, 0.007819713093340397, 0.021460317075252533, 0.0029914791230112314, 0.0008466290892101824, -0.019542528316378593, -0.0005161651642993093, 0.01761123538017273, -0.002572807017713785, 0.002240232890471816, 0.005155743099749088, -0.00247657997533679, -0.024944748729467392, 0.019961200654506683, 0.01083145011216402, -0.0200557392090559, 0.005645319353789091, -0.01175658032298088, -0.010703147388994694, 0.012283296324312687, -0.014626509509980679, -0.012762743979692459, -0.008272148668766022, -0.013438020832836628, -0.02406688779592514, -0.025174342095851898, 0.005098344758152962, 0.01635522022843361, 0.0015944988699629903, 0.009426873177289963, 0.0029003166127949953, -0.02309448830783367, 0.0077791959047317505, 0.01098676398396492, -0.008562518283724785, 0.012269791215658188, -0.007677904330193996, -0.0032041913364082575, -0.003923362120985985, 0.03384490683674812, 0.018610646948218346, 0.007110671605914831, -0.003440538654103875, 0.018367545679211617, -0.0071849520318210125, -0.011736322194337845, 0.013978242874145508, 0.0045446171425282955, 0.03687014803290367, 0.007455063052475452, -0.011945657432079315, -0.002172705251723528, 0.0018114317208528519, 0.03208918496966362, -0.02106865681707859, -0.000113953065010719, -0.0137621546164155, -0.002736561931669712, -0.031224828213453293, 0.005928935948759317, 0.00041402949136681855, 0.007704915478825569, 0.018178468570113182, 0.013681121170520782, 0.005395466927438974, -0.0035418302286416292, -0.020244818180799484, -0.026984086260199547, -0.011662041768431664, 0.02605220302939415, 0.006128142587840557, 0.0176517516374588, 0.010514069348573685, 0.025593014433979988, 0.01879972405731678, -0.03125184029340744, -0.0007444933871738613, 0.01063561998307705, -0.004791093524545431, 0.0045952629297971725, -0.010669383220374584, 0.006897958926856518, -0.01206720806658268, 0.011425694450736046, 0.01032499223947525, 0.009649714455008507, 0.014045770280063152, -0.003882845165207982, 0.027402758598327637, -0.007198457606136799, 0.005584544502198696, -0.004038159269839525, 0.009095987305045128, 0.010716652497649193, -0.0020106385927647352, -0.0017371511785313487, -0.004163085483014584, -0.00422048382461071, 0.019191384315490723, 0.0203393567353487, -0.00936609786003828, 0.004463583696633577, 0.03352077305316925, -0.021892495453357697, 0.0176517516374588, 0.014099792577326298, -0.03030645102262497, -0.012627688236534595, -0.004892385099083185, 0.00160462805069983, -0.020204300060868263, 0.0009749318123795092, -0.012425105087459087, -0.008170857094228268, -0.0033915808890014887, -0.018772711977362633, 0.009811781346797943, 0.002140629570931196, -0.012620935216546059, -0.007691409904509783, -0.0041833436116576195, 0.013870198279619217, 0.010885472409427166, 0.01473455410450697, -0.017314113676548004, 0.0051287319511175156, -0.016058096662163734, 0.001115051913075149, -0.005290798842906952, -0.0042238603346049786, -0.009204031899571419, -0.018853746354579926, -0.015355808660387993, -0.011506727896630764, 0.024364009499549866, -0.013107134960591793, 0.01946149580180645, -0.014477948658168316, 0.021109173074364662, -0.003919985610991716, -0.0029171984642744064, 0.00990631990134716, -0.0020342732314020395, 0.026308808475732803, 0.010736911557614803, 0.017489684745669365, -0.008805617690086365, 0.008224879391491413, -0.01520724780857563, 0.02204105630517006, -0.0017624740721657872, -0.0008736401796340942, -0.01743566431105137, -0.0050274403765797615, -0.0006351828342303634, 0.006398253608494997, 0.0008436747593805194, 0.013336729258298874, 0.005297551397234201, 0.0269300639629364, 0.005506887566298246, -0.0161796472966671, 0.012823518365621567, -0.007259232457727194, 0.00936609786003828, 0.0009648026316426694, 0.019380463287234306, -0.020150279626250267, -0.0055980500765144825, 0.03516845032572746, -0.012013185769319534, 0.014072781428694725, 0.011716063134372234, -0.003361193463206291, -0.0007951391744427383, 0.026106225326657295, -0.00885963998734951, 0.006678493693470955, -0.00955517590045929, 0.016476769000291824, 0.0030978352297097445, -0.011081302538514137, 0.003727531526237726, 0.0027686376124620438, -0.0006963798659853637, -0.005611555650830269, -0.015923041850328445, -0.022432716563344002, 0.011655288748443127, -0.044001076370477676, -0.012641193345189095, -0.0011412188177928329, 0.02539043128490448, -4.209932740195654e-05, -0.0004688957706093788, -0.001418082625605166, 0.01580149121582508, -0.018191974610090256, -0.0031552338041365147, 0.0113716721534729, -0.002809154102578759, -0.01692245341837406, -0.01694946363568306, -0.014491453766822815, 0.013370493426918983, -0.001328608370386064, 0.017003485932946205, 0.01508569810539484, 0.0006018410203978419, -0.002532290294766426, -0.0049261488020420074, 0.004514229483902454, -0.007839971221983433, 0.0011716063600033522, -0.0026487756986171007, 0.01133790798485279, 0.006310467608273029, -0.009973847307264805, -0.017597729340195656, 0.0051253559067845345, -0.016409242525696754, 0.0060707442462444305, 0.01365411002188921, 0.01681440882384777, 0.006921593565493822, 0.008339676074683666, -0.023040466010570526, -0.014059276320040226, 0.006789914797991514, -0.004301517270505428, 0.0006778097013011575, -0.01241835206747055, 0.009271559305489063, 0.01684141904115677, 0.018570128828287125, 0.015180236659944057, -0.008589529432356358, 0.02151433937251568, 0.009845545515418053, 0.01562592014670372, -0.009413367137312889, -0.008488237857818604, 0.005081462673842907, -0.0031501692719757557, -0.025538992136716843, 0.030468517914414406, -0.01657130755484104, 0.0005279825418256223, -0.020798545330762863, -0.0011353101581335068, 0.009028458967804909, 0.004622274078428745, 0.01058835070580244, 0.006043733097612858, -0.01060185581445694, 0.010439788922667503, 0.012209015898406506, 0.0353575274348259, 0.01004812866449356, -0.025295892730355263, 0.0011420629452914, -0.02078503929078579, 0.018124446272850037, -0.005469747353345156, -0.005034193396568298, 0.002189587103202939, 0.00036127344355918467, 0.012094219215214252, -0.012587171047925949, 0.009649714455008507, 0.0037511661648750305, 0.003535077441483736, -0.0002430998720228672, -0.0164632648229599, -0.019623562693595886, -0.0072457268834114075, 0.0023972350172698498, -0.005888419225811958, -0.007144435308873653, 0.0248367041349411, 0.0019144115503877401, -0.004551370162516832, 0.020217806100845337, 0.02653840370476246, 0.00821137335151434, 0.015544886700809002, -0.02001522295176983, 0.006320596672594547, -0.012499385513365269, -0.003855834249407053, 0.011378425173461437, -0.02776740863919258, -0.008292406797409058, -0.005419101566076279, -0.004858621396124363, -0.035870738327503204, 0.008454473689198494, -0.007218715734779835, 0.03379088267683983, 0.022729838266968727, 0.012377835810184479, -0.001941422582603991, 0.011121819727122784, -0.0092783123254776, 0.02584961988031864, -0.013404257595539093, -0.0035317009314894676, -0.00468304893001914, -0.0203663669526577, 0.006060615181922913, -0.012100971303880215, -0.023769766092300415, -0.02668696455657482, -0.0069350991398096085, 0.00739428773522377, 0.019380463287234306, 0.013167910277843475, -0.009224290028214455, 0.0006102820043452084, -0.011202853173017502, 0.030225418508052826, 0.009210783988237381, -0.0030438131652772427, -0.006678493693470955, -0.0022165982518345118, 0.0068135494366288185, 0.0019447989761829376, -0.0067122578620910645, 0.00429814076051116, 0.033709850162267685, 0.00021070765797048807, -0.0018975295824930072, 0.01217525266110897, -0.02741626463830471, -0.00870432611554861, 0.0045446171425282955, 0.014883114956319332, 0.034682247787714005, -0.0032835365273058414, -0.0006377151585184038, 0.01632820814847946, 0.007752185221761465, 0.021960021927952766, 0.009474142454564571, -0.006128142587840557, -0.014383409172296524, -0.011574255302548409, 0.005766869522631168, -0.00047185010043904185, -0.025484969839453697, -0.000686250685248524, 0.0008183518657460809, -0.012715473771095276, -0.01098676398396492, 0.018475590273737907, 0.010682889260351658, 0.008359935134649277, -0.012127982452511787, 0.01442392636090517, -0.009825286455452442, 0.005804009735584259, -0.012735732831060886, 0.0041124396957457066, 0.026349324733018875, 0.0026757868472486734, -0.015585402958095074, -0.002083230996504426, 0.0018367546144872904, -0.015652930364012718, -0.015153225511312485, 0.015409830957651138, -0.01056809164583683, -0.02214910089969635, 0.01229680236428976, -0.012384587898850441, 0.015463853254914284, 0.014113298617303371, 0.0017422158271074295, 0.004652661737054586, 0.00120959070045501, 0.003118093591183424, 0.015814997255802155, -0.0012526396894827485, 0.0036600036546587944, 0.009575434029102325, -0.0039605023339390755, 0.005155743099749088, 0.004963289014995098, -0.007921004667878151, 0.011067797429859638, 0.0025407313369214535, -0.014261859469115734, -0.01072340551763773, 0.010608608834445477, 0.008292406797409058, -0.012377835810184479, 0.011452705599367619, 0.0009808405302464962, -0.012776249088346958, -0.0010871966369450092, -0.013208426535129547, 0.007866982370615005, 0.02664644829928875, -0.014153814874589443, 0.004487218800932169, 0.008562518283724785, -0.0069756158627569675, -9.427506302017719e-05, 0.0006229434511624277, 0.008069565519690514, -0.000804424227681011, -0.010804438963532448, -0.00038216481334529817, 0.014531970024108887, 0.023729249835014343, 0.009744253009557724, -0.002751755528151989, 0.012121230363845825, 0.010156172327697277, 0.009629456326365471, 0.005621684715151787, 0.038139671087265015, 0.017030496150255203, 0.004527735058218241, 0.01663883589208126, 0.00990631990134716, 0.024296483024954796, -0.011169089004397392, -0.0023499655071645975, -0.01021694764494896, 0.0025863125920295715, -0.006327349692583084, 0.0034236565697938204, -0.0069350991398096085, -0.0007145279669202864, -0.017530202865600586, -0.014585992321372032, -0.03149494156241417, 0.013640603981912136, -0.00727949058637023, -0.0050274403765797615, 0.0051760016940534115, 0.013721637427806854, 0.014477948658168316, 0.006897958926856518, -0.003788306377828121, 0.008515248075127602, 0.009325581602752209, 0.007515837904065847, -0.021460317075252533, 0.006459028925746679, -0.00584114994853735, 0.011378425173461437, -0.019907178357243538, -0.007515837904065847, -0.011581008322536945, -0.002560989698395133, -0.004551370162516832, 0.008292406797409058, 0.008798864670097828, -0.0029526506550610065, 0.02151433937251568, -0.02040688507258892, -0.0113851772621274, -0.0018874004017561674, -0.02183847315609455, -0.0003998908505309373, 0.015842009335756302, 0.01004812866449356, -0.02503928728401661, 0.005314433481544256, 0.01848909631371498, 0.015450348146259785, 0.024917736649513245, -0.0023026959970593452, -0.01016967836767435, 0.01020344253629446, -0.0002582936140242964, 0.007144435308873653, -0.02141980081796646, 0.019623562693595886, 0.006870947778224945, 0.01497765351086855, -0.00861654058098793, -0.0045446171425282955, 0.021824967116117477, -0.01175658032298088, -0.024215448647737503, 0.01862415112555027, 0.011662041768431664, 0.019137362018227577, -0.021811461076140404, 0.010135914199054241, -0.014802081510424614, 0.00607749680057168, -0.028955897316336632, 0.005111850332468748, 0.00040896490099839866, 0.024404525756835938, -0.018178468570113182, -0.01952902413904667, 0.0230539720505476, 0.0007411169935949147, -0.004463583696633577, -0.006641353480517864, -0.00700262701138854, 0.014396915212273598, 0.015355808660387993, -0.004676296375691891, 0.016368724405765533, 0.01029122807085514, 0.002886811038479209, 0.014356398023664951, 0.028577741235494614, -0.0013041296042501926, -0.01349879615008831, -0.01994769461452961, -0.016193153336644173, -0.0045682517811656, -0.01719256304204464, -0.007421298883855343, -0.01782732456922531, -0.0006448899512179196, -0.013174662366509438, 0.026673458516597748, 0.011378425173461437, -0.013424515724182129, -0.026106225326657295, 0.008184362202882767, 0.005831020884215832, -0.012168499641120434, -0.009737500920891762, -0.020568950101733208, -0.00030809533200226724, -0.013485290110111237, 0.017732786014676094, 0.0034979372285306454, 0.025093309581279755, 0.004348786547780037, -0.012249533087015152, -0.008029048331081867, 0.011202853173017502, -0.0018806476145982742, -0.007921004667878151, 0.00011849009024444968, 0.024282976984977722, 0.023135004565119743, 0.008258642628788948, -0.014356398023664951, 0.0008955866796895862, -0.020325850695371628, -0.004315022844821215, 0.015679942443966866, -0.02507980354130268, 0.018435074016451836, 0.003021866548806429, -0.004213731270283461, 0.008846134878695011, -0.00952141173183918, 0.012614182196557522, 0.0033561289310455322, 0.004338657483458519, 0.00561493169516325, -0.004281259141862392, 0.0069350991398096085, -0.023904820904135704, 0.0063915010541677475, 0.002787207718938589, -0.0011893323389813304, 0.03708623722195625, 0.000546130642760545, -0.008413956500589848, 4.006821836810559e-05, -0.014275365509092808, -0.029982319101691246, 0.005912053864449263, -0.009095987305045128, -0.005246905609965324, 0.0020393377635627985, 0.01241835206747055, -0.0029104456771165133, 0.0018654539017006755, 0.008744842372834682, -0.00014096416998654604, -0.00109226128552109, -0.001401200657710433, -0.010716652497649193, 0.0040719229727983475, 0.013721637427806854, 0.007887240499258041, 0.010763922706246376, -0.011662041768431664, 0.001676376210525632, -0.003865963313728571, 0.021851977333426476, 0.01180384960025549, 0.002059596125036478, -0.009825286455452442, -0.018718689680099487, 0.032872505486011505, -0.0015472294762730598, -0.030954718589782715, -0.008819123730063438, 0.0049160197377204895, 0.009717242792248726, 0.000166076046298258, 0.009825286455452442, -0.0012923121685162187, -0.0010610297322273254, -0.005203012842684984, -0.014883114956319332, 0.015018170699477196, -0.011810602620244026, -0.022014044225215912, -0.008218126371502876, -0.0005575259565375745, -0.0035823467187583447, -0.013316471129655838, -0.008852886967360973, 0.010811191983520985, -0.009116245433688164, -0.018597140908241272, 0.00038195381057448685, -0.0021760815288871527, -0.0021912753582000732, -0.0037106494419276714, -0.022594783455133438, 0.000917533237952739, -0.016584813594818115, -0.0037916828878223896, 0.009534917771816254, 0.013154404237866402, 0.0032379552721977234, -0.004436572548002005, 0.012654699385166168, 0.009453884325921535, -0.005003805737942457, 0.007171446457505226, -0.01754370704293251, 0.01816496253013611, -0.014450937509536743, 0.012546654790639877, -0.00027053302619606256, -0.004402808845043182, -0.03357479348778725, -0.029253019019961357, 0.026430359110236168, -0.018705185502767563, 0.004676296375691891, -0.02168991044163704, -0.016557803377509117, -0.002896940102800727, -0.013431267812848091, -0.0112298633903265, 0.007387535180896521, -0.00887314509600401, -0.016679352149367332, 0.0212712399661541, 0.006047109607607126, 0.024715153500437737, -0.022311165928840637, -0.005503511056303978, 0.013370493426918983, 0.012458868324756622, 0.008002038113772869, -0.010628866963088512, -0.014410420320928097, 0.0016215099021792412, 0.0034371621441096067, -0.002138941315934062, 0.012019938789308071, -0.011202853173017502, -0.0013083500089123845, -0.021500833332538605, -0.022486738860607147, 0.001936358050443232, -4.7427689423784614e-05, -0.011824107728898525, 0.008542259223759174, -0.042083289474248886, 0.012317060492932796, -0.011162335984408855, 0.028334641829133034, 0.010804438963532448, -0.005581167992204428, 0.0053481971845030785, 0.017705773934721947, -0.022122088819742203, -0.008933920413255692, -0.013640603981912136, 0.005159119609743357, 0.02863176353275776, 0.0030370603781193495, -0.026281798258423805, -0.004959912970662117, -0.0056925886310637, 0.010014364495873451, -0.0113851772621274, -0.01380942389369011, -0.0021237474866211414, 0.004477089270949364, 0.00014233581896405667, 0.0077184210531413555, -0.008481484837830067, -0.016017580404877663, 0.003388204611837864, -0.004034782759845257, 0.004662790801376104, -0.02385079860687256, -0.030873684212565422, 0.005351573694497347, 0.0011842678068205714, 2.7485901227919385e-05, 0.005952570587396622, -0.0029408333357423544, -0.007178199011832476, 0.007238974329084158, 0.008576023392379284, -0.0011724504875019193, -0.0010534328175708652, 0.0006292741745710373, -0.0200557392090559, 0.0022942551877349615, -0.0024039875715970993, 0.03438512608408928, -0.010156172327697277, 0.0054494887590408325, -0.023445632308721542, 0.0019144115503877401, 0.006955357734113932, 0.0017253338592126966, 0.011364919133484364, 0.00742805190384388, 0.005371831823140383, -0.011763333342969418, -0.009129750542342663, 0.007752185221761465, -0.019583046436309814, -0.000917533237952739, -0.0028057778254151344, 0.007380782626569271, 0.006877700798213482, 0.0020393377635627985, -0.0005866472492925823, 0.0006676805787719786, -0.0011792032746598125, 0.0050173113122582436, -0.02444504387676716, -0.010277722962200642, 0.0028597998898476362, 0.008913662284612656, 0.039328157901763916, 0.006722386926412582, -0.0364919938147068, 0.022473232820630074, -0.012371082790195942, 0.014383409172296524, -0.01334348227828741, -0.007421298883855343, 0.009197278879582882, 0.005544027779251337, -0.0035148190800100565, 0.014153814874589443, 0.0018485719338059425, 0.008029048331081867, 0.01573396474123001, -0.002999919932335615, -0.036113835871219635, 0.0007398508605547249, 0.016085108742117882, 0.004304893780499697, -0.011581008322536945, -0.01126362755894661], "c8623e15-c59c-401d-8078-8912707394c5": [-0.030170397832989693, -0.011565820313990116, -0.006561234127730131, 0.03687827289104462, -0.029418393969535828, -0.010137013159692287, 0.027117261663079262, 0.017762333154678345, 0.002705333987250924, 0.047827448695898056, -0.0046210638247430325, 0.004557143896818161, -0.021883314475417137, 0.028335507959127426, 0.006692834664136171, 0.022379636764526367, -0.00019881103071384132, 0.003154656384140253, 0.019717542454600334, 0.003233616938814521, 0.0767645612359047, -0.011994462460279465, -0.024725887924432755, -0.0007604639395140111, -0.0044255428947508335, 0.0056024291552603245, -0.032667048275470734, 0.01905578002333641, -0.015160398557782173, -0.011949341744184494, 0.014641515910625458, -0.0008314343285746872, 0.03311825171113014, 0.04707544669508934, 0.007775720674544573, -0.05164762958884239, -0.019642341881990433, 0.006470993626862764, -0.028245266526937485, -0.025688454508781433, -0.02099594846367836, 0.04304470494389534, -0.03101264126598835, -0.005076026543974876, -0.04340566694736481, -0.028786709532141685, 0.008670604787766933, 0.008151722140610218, -0.021672753617167473, 0.02254507690668106, 0.014303114265203476, 0.012761506251990795, -0.04205206036567688, 7.678665133425966e-05, 0.03444178029894829, -0.04638360068202019, 0.029207831248641014, 0.08193834871053696, -0.01325030904263258, -0.07357606291770935, -0.022123955190181732, -0.0020886908750981092, -0.008941326290369034, -0.034802742302417755, 0.030140316113829613, -0.015243119560182095, 0.019612262025475502, 0.009933971799910069, -0.028831830248236656, 0.020845549181103706, -0.0068281954154372215, 0.03492306172847748, -0.013731591403484344, 0.03853268176317215, -0.013709031045436859, -0.008046441711485386, 0.009287248365581036, 0.017626971006393433, 0.020890668034553528, 0.0184541754424572, 0.035825464874506, 0.010919096879661083, 0.05991967022418976, 0.03095248155295849, 0.0350433811545372, 0.009828691370785236, -0.01452119555324316, -0.043766628950834274, -0.005282827652990818, -0.027297742664813995, 0.027733905240893364, 0.041811417788267136, -0.02807982638478279, -0.008745805360376835, 0.0092270877212286, 0.02344748191535473, 0.033749934285879135, -0.0028312946669757366, 0.03314833343029022, 0.011994462460279465, 0.001856509712524712, 0.032215848565101624, -0.03239632770419121, 0.01471671648323536, -0.009648210369050503, 0.005805470049381256, 0.006463473662734032, 0.025282371789216995, -0.02096586860716343, 0.004523303359746933, 0.025673413649201393, -0.05652061477303505, 0.004711304325610399, 0.006343152839690447, 0.004474423360079527, 0.011355259455740452, -0.030787039548158646, 0.015611601062119007, -0.01049797423183918, -0.015626640990376472, 0.013235269114375114, -0.02547789178788662, -0.0067755552008748055, -0.042262621223926544, -0.024214526638388634, 0.0265156589448452, 0.0009113347623497248, -0.011287578381597996, 0.019371621310710907, 0.02905743196606636, 0.016153044998645782, -0.0010311853839084506, 0.04286422207951546, 0.006113791838288307, -0.008482604287564754, 0.020845549181103706, -0.0006528333760797977, 0.026229895651340485, -0.011889182031154633, 0.04551127552986145, -0.05841566249728203, -0.0255831740796566, -0.028816789388656616, 0.026380296796560287, 0.02499661035835743, -0.016874967142939568, -0.042232539504766464, 0.006865795701742172, -0.013430790044367313, -0.0017794292652979493, -0.03868308290839195, -0.018860258162021637, 0.003619018942117691, 0.014385835267603397, -0.0048767453990876675, -0.03399057686328888, 0.007523799315094948, -0.0013761671725660563, -0.008572844788432121, 0.07291430234909058, -0.021838193759322166, -0.035825464874506, -0.02601933479309082, 0.015807121992111206, 0.042262621223926544, 0.008053962141275406, 0.052369553595781326, 0.01753673143684864, 0.011483099311590195, 0.010054292157292366, 0.016153044998645782, -0.014957358129322529, 0.029298072680830956, -0.003917940426617861, -0.02800462581217289, -0.03215568885207176, 0.0449698343873024, 0.02207883447408676, -0.005609949119389057, 0.009121807292103767, -0.017371291294693947, 0.009302288293838501, -0.004951945971697569, -0.02049962617456913, -0.014137673191726208, 0.03005007654428482, 0.016393685713410378, 0.05089562386274338, 0.03095248155295849, 0.007941161282360554, -0.016378644853830338, -0.019356580451130867, -0.015912402421236038, 0.03203536570072174, 0.019597221165895462, -0.005512188654392958, 0.013265348970890045, 0.004549623467028141, 0.006222832482308149, 0.04256341978907585, -0.00043005222687497735, -0.02598925493657589, -0.022650357335805893, 0.04656408354640007, -0.050775304436683655, 0.04894041642546654, -0.012430625036358833, -0.028786709532141685, -0.002906495239585638, -0.011656060814857483, 0.04151061549782753, -0.019115939736366272, -0.002022890606895089, 0.014934797771275043, -0.02758350409567356, 0.020334186032414436, -0.02400396578013897, 0.016890008002519608, 0.0110469376668334, -0.032245926558971405, -0.015731921419501305, 0.031163042411208153, 0.018785057589411736, -0.014303114265203476, -0.04304470494389534, -0.021627632901072502, -0.013919592835009098, 0.02857614867389202, -0.011693661101162434, -0.01128005888313055, 0.013062307611107826, -0.010415254160761833, 0.04142037406563759, -0.020770348608493805, -0.02159755304455757, 0.012844227254390717, 0.027267662808299065, -0.032727211713790894, -0.013776712119579315, -0.03495314344763756, 0.005929551087319851, 0.007971241138875484, 0.017882652580738068, 0.0055798692628741264, -0.005320427473634481, -0.011994462460279465, 0.022740598767995834, 0.025237251073122025, -0.001028365339152515, 0.02099594846367836, 0.00022101865033619106, 0.0008380143553949893, 0.013558630831539631, -0.00950532965362072, -0.04238294064998627, 0.02896719053387642, 0.02009354531764984, -0.011693661101162434, 0.02806478552520275, -0.008144202642142773, -0.004921865649521351, 0.00601979112252593, -0.02510189078748226, 0.03008015640079975, 0.0011844061082229018, -0.04087893292307854, 0.04945177584886551, -0.021687792614102364, 0.02603437565267086, 0.011362778954207897, -0.011580860242247581, 0.020394345745444298, -0.0031038960441946983, 0.031373605132102966, -0.009828691370785236, 0.005200107116252184, -0.02459052763879299, 0.008550284430384636, 0.012528385035693645, -0.02505677007138729, -0.01255846582353115, -0.0049030655063688755, 0.037690434604883194, -0.0058844308368861675, 0.004083381034433842, 0.017837533727288246, -0.0045157833956182, -0.006689074914902449, -0.0240340456366539, 0.025748614221811295, 0.004575944039970636, 0.033870257437229156, 0.02445516735315323, 0.017747292295098305, -0.020830508321523666, 0.006504833698272705, -0.018318815156817436, -0.026244936510920525, -0.01348343025892973, 0.02459052763879299, 0.009174447506666183, -0.009994132444262505, -0.018394015729427338, -0.03835219889879227, 0.024139326065778732, -0.024349886924028397, 0.005072266329079866, 0.02495148964226246, -0.0019326501060277224, 0.013378149829804897, -0.004590983968228102, -0.031373605132102966, -0.026756299659609795, -0.0359758660197258, -0.01277654618024826, -0.005109866615384817, -0.015431120060384274, 0.004331542644649744, -0.009061647579073906, 0.004545863717794418, 0.012663746252655983, 0.010911576449871063, -0.059829432517290115, 0.03657747060060501, 0.0421723797917366, -0.03949524462223053, 0.03435153886675835, 0.008836045861244202, -0.014385835267603397, -0.051316745579242706, -0.017717212438583374, -0.012393024750053883, -0.01695016771554947, -0.010392693802714348, -0.015002477914094925, -0.007681719958782196, -0.03693843260407448, -0.015348399989306927, -0.002756094327196479, -0.019913064315915108, -0.006158912088721991, -0.019898023456335068, 0.011678621172904968, 0.011460539884865284, -0.0011392859742045403, -0.015746962279081345, -0.010257333517074585, -0.01849929615855217, -0.0026564537547528744, 0.032245926558971405, 0.0009508149232715368, -0.0179879330098629, 0.054685723036527634, 0.005233947187662125, 0.014949837699532509, -0.031193122267723083, -0.025252291932702065, -0.0025624532718211412, 0.008843566291034222, 0.004301462322473526, -0.024169405922293663, -0.012671265751123428, 0.012468225322663784, 0.002028530463576317, 0.010821335949003696, 0.008693165145814419, 0.026816459372639656, -0.022860918194055557, -0.016153044998645782, -0.020740268751978874, -0.02009354531764984, 0.007640359923243523, 0.0011571460636332631, 0.005455788224935532, -0.04316502436995506, -0.015355919487774372, 0.03405073657631874, 0.02507181093096733, -0.0008652745163999498, 0.013047267682850361, 0.0009945251513272524, 0.00849764421582222, -0.02257515676319599, 0.04972250014543533, 0.010370134375989437, -0.011031897738575935, 0.014039913192391396, -0.034201137721538544, 0.006459713447839022, 0.017687132582068443, -0.02305644005537033, -0.010106932371854782, -0.03498322144150734, -0.011731261387467384, -0.033298734575510025, -0.02755342423915863, -0.007708040066063404, -0.033810097724199295, 0.0398562066257, -0.034802742302417755, 0.0038653002120554447, -0.020785387605428696, -0.006737954914569855, 0.03390033543109894, -0.007941161282360554, -0.018394015729427338, -0.007858441211283207, -0.012994627468287945, 0.004301462322473526, 0.014453515410423279, -0.024334846064448357, 0.014227913692593575, 0.054234523326158524, 0.009415089152753353, 0.027839185670018196, -0.0006424933671951294, -0.038201797753572464, 0.048759933561086655, -0.005226427223533392, -0.014709196984767914, 0.01606280356645584, 0.01054309494793415, -0.02043946646153927, 0.05056474357843399, -0.015686802566051483, 0.03314833343029022, 0.020334186032414436, 0.03585554659366608, 0.014934797771275043, -0.027222542092204094, -0.0046210638247430325, 0.05200859159231186, 0.030110236257314682, 0.02507181093096733, -0.004414263181388378, -0.00763283995911479, 0.035705145448446274, -0.007828360423445702, 0.0117839016020298, -0.016438806429505348, -0.02708718180656433, -0.001347967074252665, 0.0033219773322343826, 0.013032227754592896, -0.044849514961242676, -0.04313494637608528, -0.021868273615837097, -0.02947855368256569, 0.014972398057579994, 0.01155078038573265, 0.022244276478886604, -0.002917775185778737, -0.046233199536800385, -0.01097925752401352, 0.010482934303581715, 0.022244276478886604, -0.010167093016207218, -0.010663415305316448, 0.011287578381597996, -0.05158746987581253, -0.04593239724636078, 0.017100568860769272, 0.03645715117454529, -0.005591148976236582, 0.028305428102612495, -0.03155408427119255, 0.011663580313324928, -0.015686802566051483, 0.008843566291034222, 0.03435153886675835, -0.0035983386915177107, -0.00926468800753355, 0.04954201728105545, 0.06196512281894684, 0.0004700024437624961, -0.01950698159635067, -0.013077348470687866, 0.00762531952932477, -0.026410376653075218, 0.014130153693258762, 0.0027993344701826572, -0.041721176356077194, -0.023176761344075203, -0.028124947100877762, 0.02045450732111931, -0.0020642506424337626, -0.010114452801644802, 0.0018583897035568953, 0.030395997688174248, 0.006211552303284407, 0.02959887497127056, -0.005662589333951473, -0.022740598767995834, 0.013994792476296425, -0.0210109893232584, -0.053873561322689056, -0.003724299371242523, -0.0471356064081192, -0.011355259455740452, -0.04343574494123459, 0.01944682188332081, -0.04084885120391846, 0.01305478811264038, 0.028816789388656616, -0.025222212076187134, 0.027628622949123383, -0.03898388147354126, 0.042322780936956406, 0.022635318338871002, -0.00946020893752575, -0.020168745890259743, -0.005722749978303909, -0.03384017571806908, 0.020319145172834396, 0.01128005888313055, 0.05122650787234306, 0.016258325427770615, -0.019221220165491104, 0.016168083995580673, 0.0005550729110836983, -0.014273034408688545, -0.016348564997315407, -0.007666680030524731, -0.015686802566051483, -0.007061316631734371, 0.02105611003935337, -0.00652739405632019, -0.024650689214468002, 0.033298734575510025, -0.04238294064998627, -0.006200272124260664, 0.032697129994630814, -0.014325674623250961, 0.028380626812577248, 0.009309808723628521, 0.0339604951441288, -0.020304106175899506, 0.002207131590694189, -0.004444343037903309, 0.005173787008970976, 0.022138996049761772, 0.009783570654690266, -0.0037938598543405533, -0.025763653218746185, -0.017807452008128166, 0.04767704755067825, 0.020304106175899506, -0.02001834474503994, -0.017762333154678345, 0.016107924282550812, -0.016303444281220436, 0.003993140999227762, 0.0026357737369835377, 0.028771670535206795, 0.010061812587082386, -0.006869555916637182, -0.01174630131572485, -0.031854886561632156, -0.03615634888410568, -0.02102603018283844, -0.02254507690668106, 0.04039765149354935, 0.0036509789060801268, 0.017747292295098305, -0.018739936873316765, 0.007738120388239622, -0.0039555407129228115, 0.012881826609373093, -0.023733243346214294, 0.0092270877212286, 0.03732947260141373, -0.007192917633801699, 0.01472423691302538, 0.018815137445926666, 0.013724070973694324, 0.017807452008128166, -0.006963556166738272, -0.007463638670742512, -0.04400726780295372, -0.03161424398422241, 0.003602098673582077, -0.0044593834318220615, 0.005064746364951134, 0.01943178102374077, 0.011453019455075264, 0.03603602573275566, -0.012438144534826279, -0.0220186747610569, 0.009347409009933472, 0.013949672691524029, -0.0023030119482427835, 0.019762663170695305, -0.0073057180270552635, 0.011701180599629879, -0.02705710008740425, 0.0025831335224211216, 0.007471159100532532, 0.02495148964226246, 0.0200033038854599, 0.009700850583612919, 0.025417732074856758, -0.013317989185452461, 0.004959465935826302, 0.0010941657237708569, -0.016288405284285545, 0.030215516686439514, 0.01794281415641308, 0.020409386605024338, -0.0015810881741344929, 0.024831168353557587, -0.0037581396754831076, 0.011994462460279465, 0.029313111677765846, -0.006113791838288307, 0.014618956483900547, 0.015852242708206177, -0.014430955052375793, 0.04689496383070946, 0.011498140171170235, 0.04009684920310974, 0.03760019689798355, -0.014235434122383595, 0.039705805480480194, -0.022635318338871002, 0.019236261025071144, 0.028260307386517525, -0.01128005888313055, 0.019236261025071144, -0.007230517454445362, 0.0092270877212286, -0.007019956596195698, -0.02406412549316883, 0.02099594846367836, -0.020153705030679703, 0.013453350402414799, -0.0170554481446743, -0.0109717370942235, -0.003713019425049424, 0.0012793466448783875, -0.012663746252655983, 0.004816585220396519, 0.006482273805886507, -0.025267330929636955, 0.025628292933106422, -0.004760184790939093, 0.026320137083530426, -0.003921700641512871, 0.0053805881179869175, 0.030756959691643715, 0.024846209213137627, -0.013348069041967392, 0.030696799978613853, -0.005711469799280167, -0.0011374058667570353, 0.011219898238778114, -0.01476183719933033, 0.02559821307659149, -0.010294933803379536, 0.04114965349435806, 0.03642706945538521, 0.015822162851691246, -0.0017578091938048601, 0.02594413422048092, -0.002722254255786538, 0.018634656444191933, 0.0090315667912364, 0.04460887238383293, -0.0012530265375971794, 0.03044111840426922, 0.004715064540505409, 0.04136021435260773, -0.03486290201544762, 0.013573670759797096, -0.0038991402834653854, -0.011257498525083065, 0.010761176235973835, 0.0003783519787248224, 0.005132426507771015, -0.00037130192504264414, -0.023868603631854057, -0.039765965193510056, -0.028365587815642357, -0.048308730125427246, -0.006241632625460625, -0.01300966739654541, -0.01024229358881712, -0.0117839016020298, 0.052249230444431305, -0.027854224666953087, -0.0010011051781475544, -0.026365257799625397, 0.00852772407233715, -0.00946020893752575, 0.014032392762601376, 0.019867943599820137, -0.015671761706471443, 0.023206841200590134, -0.003910420462489128, -0.00046694744378328323, -0.040728531777858734, -0.0129871079698205, -0.006177712231874466, 0.013836871832609177, -0.02352268248796463, 0.014363274909555912, 0.0068056355230510235, -0.02095082961022854, -0.012152383103966713, 0.0030437358655035496, 0.015401040203869343, -0.002404532628133893, -0.0020811709109693766, -0.011648540385067463, 0.047225844115018845, 0.009527890011668205, 0.01950698159635067, 0.009595570154488087, 0.003996900748461485, -0.0204695463180542, 0.00451954361051321, 0.029313111677765846, 0.02507181093096733, 0.00011109682964161038, -0.024771008640527725, -0.02998991683125496, 0.023267000913619995, -0.013836871832609177, 0.013678951188921928, 0.009926451370120049, 0.007617799565196037, 0.011896701529622078, -0.016183124855160713, -0.0022484916262328625, 0.019627302885055542, 0.02946351282298565, 0.004094661213457584, -0.002992975525557995, -0.008851085789501667, 0.029298072680830956, -0.0379912368953228, 0.011400379240512848, -0.024364925920963287, 0.04048788920044899, -0.015160398557782173, -0.0061062718741595745, 0.004602264147251844, 0.01695016771554947, 0.017220890149474144, -0.03341905400156975, -0.010956697165966034, 0.03558482602238655, -0.02259019762277603, 0.038773320615291595, 0.021762993186712265, 0.0038615399971604347, 0.0056287492625415325, 0.05934814736247063, -0.017702171579003334, -0.011490619741380215, 0.040217168629169464, -0.00274481438100338, 0.0029252951499074697, -0.006561234127730131, -0.025808773934841156, 0.010716055519878864, 0.010325013659894466, 0.010415254160761833, 0.004346582572907209, 0.0024628129322081804, 0.01549128070473671, 0.01378423161804676, 0.03338897228240967, 0.006798115558922291, 0.030200477689504623, 0.012851746752858162, -0.023627962917089462, 0.024786049500107765, 0.002757974434643984, -0.020334186032414436, -0.028215186670422554, -0.0030380957759916782, -0.026094535365700722, 0.014085032977163792, -0.02953871339559555, 0.006877075880765915, -0.03465234115719795, 0.004098421428352594, 0.0053542680107057095, 0.015431120060384274, 0.0034892980474978685, 0.013799271546304226, -0.0043729026801884174, -0.004564663860946894, 0.01348343025892973, 0.006376993376761675, -0.040217168629169464, 0.028290387243032455, -0.011836541816592216, -0.014340714551508427, 0.009445169009268284, 0.02701198123395443, -0.0024214526638388634, 0.03585554659366608, 0.020153705030679703, -0.005094826687127352, -0.02245483733713627, 0.018664736300706863, -0.02959887497127056, -0.02409420534968376, -0.0015275079058483243, 0.002216531429439783, -0.020153705030679703, -0.013814311474561691, 0.021793073043227196, 0.0018574496498331428, -0.021296750754117966, -0.008542764000594616, -0.022304436191916466, 0.02959887497127056, -0.01402487326413393, -0.028907030820846558, -0.0008041741675697267, 0.01174630131572485, -0.005534749012440443, 0.010054292157292366, -0.009753490798175335, 0.005989711266011, 0.015047598630189896, -0.0028801748994737864, -0.02099594846367836, -0.018664736300706863, -0.011114617809653282, 0.01807817444205284, 0.002654573880136013, -0.007941161282360554, 0.024319807067513466, 0.03492306172847748, 0.02243979647755623, -0.013445829972624779, 0.030365917831659317, -0.008821005932986736, -0.05405404046177864, -0.019191140308976173, -0.0054069082252681255, 0.016739606857299805, 0.0015839082188904285, 0.02502669021487236, -0.013836871832609177, 0.021883314475417137, 0.03311825171113014, -0.02051466703414917, 0.0015397280221804976, 0.009858771227300167, 0.009324848651885986, -0.014318154193460941, 0.007347078062593937, -0.03847252205014229, -0.008211882784962654, -0.02653069794178009, 0.03296785056591034, 0.0060761915519833565, 0.023703163489699364, -0.03901396319270134, 0.006098751910030842, -0.04205206036567688, -0.0055761090479791164, 0.012671265751123428, -0.01046789437532425, 0.011204858310520649, 0.023658042773604393, 0.015716882422566414, -0.030185436829924583, 0.0015876683173701167, -0.008129162713885307, -0.023146679624915123, -0.011648540385067463, 0.02507181093096733, 0.030802080407738686, -0.016122963279485703, -0.002163891214877367, -0.013400710187852383, 0.029884636402130127, -0.0022353315725922585, -0.012686305679380894, -0.039194442331790924, -0.0009183847578242421, 0.0063318731263279915, -0.0075538791716098785, 0.02144715189933777, 0.0016948288539424539, 0.0359758660197258, -0.0036340588703751564, -0.0029365753289312124, 0.010558134876191616, 0.003365217475220561, 0.010490454733371735, 0.01224262360483408, -0.037239234894514084, -0.0006852635415270925, -0.00014111823111306876, 0.012663746252655983, -0.036757949739694595, -0.03817171975970268, 0.009655729867517948, 0.04247318208217621, -0.0184541754424572, 0.015611601062119007, -0.010873976163566113, 0.006271712481975555, -0.022184114903211594, 0.003895380301401019, 0.04710552468895912, 0.003224216867238283, -0.023958845064044, 0.04954201728105545, 0.017897693440318108, 0.002022890606895089, 0.013566150330007076, -0.022620277479290962, -0.012460704892873764, 0.017356250435113907, 0.005358027759939432, 0.03555474430322647, -0.00037177192280068994, -0.011603420600295067, -0.007700520101934671, -0.0027880545239895582, -0.023913724347949028, -0.0035532184410840273, -0.00034051676630042493, 0.00149742781650275, -0.014536235481500626, 0.012581025250256062, 0.023658042773604393, 0.002714734058827162, 0.024304766207933426, -0.010806296020746231, 0.01452119555324316, -0.013370629400014877, -0.013957192189991474, -0.010670935735106468, -0.000807934207841754, 0.029177751392126083, -0.00548210833221674, -0.00011708935926435515, -0.013114947825670242, -0.019251300022006035, 0.012844227254390717, 0.013438309542834759, 0.0051023466512560844, -0.003026815829798579, 0.015536400489509106, -0.02508684992790222, -0.007598999422043562, 0.01858953759074211, 0.008512684144079685, -6.87378560542129e-05, -0.013039748184382915, 0.023387322202324867, -0.004324022680521011, -0.005027146078646183, -0.01749161072075367, -0.014821996912360191, 0.01248326525092125, -0.00312645616941154, 0.035705145448446274, -0.025297410786151886, -0.0030775759369134903, 0.028606228530406952, -0.023116599768400192, -0.021281709894537926, -0.0038088997825980186, -0.035795386880636215, 0.023733243346214294, 0.020289065316319466, -0.027162380516529083, -0.03050127811729908, 0.015431120060384274, -0.02308651991188526, 0.010685975663363934, 0.012573505751788616, -0.014498635195195675, -0.015596561133861542, -0.0072831581346690655, -0.0054031480103731155, -0.008708205074071884, -0.03693843260407448, 0.006294272840023041, -0.026861580088734627, 0.025387652218341827, 0.05146714672446251, -0.016829848289489746, 0.02547789178788662, 0.002979815471917391, 0.031223202124238014, -0.01904073916375637, -0.008572844788432121, -0.02905743196606636, -0.0132578294724226, -0.016935128718614578, -0.01347590982913971, 0.01100933738052845, -0.017371291294693947, 0.034772660583257675, 0.008354763500392437, 0.01707048900425434, 0.02001834474503994, -0.019236261025071144, -0.024259645491838455, 0.012528385035693645, 0.0021206510718911886, 0.000682913581840694, 0.012265183962881565, 0.008918766863644123, -0.013701511546969414, 0.010167093016207218, 0.03146384283900261, -0.029794394969940186, -0.000834254315122962, 0.031132962554693222, 0.0051023466512560844, -0.006403313484042883, -0.012889347039163113, -0.017762333154678345, -0.026936780661344528, 0.004951945971697569, 0.004075861070305109, -0.005294107366353273, 0.03314833343029022, -0.0011195457773283124, -0.02601933479309082, -0.0022296917159110308, -0.0023161720018833876, 0.0018687297124415636, -0.002190211322158575, -0.012325344607234001, 0.00015369079483207315, -0.06623650342226028, -0.018153375014662743, -0.018739936873316765, 0.007580199278891087, 0.015852242708206177, 0.015506320632994175, 0.032817449420690536, 0.011859102174639702, -0.01255846582353115, 0.021642671898007393, 0.00502338632941246, -0.00823444314301014, 0.04352598637342453, 0.009324848651885986, -0.0024628129322081804, 0.012370464392006397, -0.0049030655063688755, -0.0014297474408522248, 0.025778694078326225, -0.011122138239443302, 0.011919261887669563, 0.020830508321523666, 0.0023462523240596056, -0.004910585470497608, -0.02110123075544834, 0.03432145714759827, -0.012423104606568813, 0.008655564859509468, -0.012122303247451782, -0.04057813063263893, 0.02003338374197483, -0.0012502064928412437, -0.005677629727870226, -0.0019251300254836679, 0.00028341147117316723, 0.03757011517882347, 0.003047495847567916, 0.005500908475369215, 0.0231015607714653, 0.0019166700076311827, 0.024846209213137627, 0.022875959053635597, 0.0012990867253392935, -0.014039913192391396, 0.0023725724313408136, -0.02510189078748226, -0.03290769085288048, -0.016423765569925308, -0.0029140152037143707, -0.0046248240396380424, 0.008813485503196716, 0.02600429579615593, -0.012896867468953133, -0.016604246571660042, 0.011573339812457561, -0.0070575568825006485, 0.00648979377001524, 0.0026696138083934784, 0.019401701167225838, -0.0033821375109255314, 0.014077513478696346, 0.004466903395950794, -0.013084867969155312, 0.006632674485445023, -0.0015904882457107306, 0.026365257799625397, -0.0044293031096458435, 0.03242640942335129, 0.01699528843164444, -0.002301132073625922, 0.000745423894841224, -0.008617964573204517, 0.020198825746774673, 0.027628622949123383, 0.007843401283025742, 0.004072101321071386, 0.04415766894817352, 0.014115113765001297, 0.010828856378793716, -0.005282827652990818, -0.029102550819516182, 0.0102347731590271, 0.021176429465413094, 0.0029365753289312124, -0.037720516324043274, -0.009663250297307968, -0.019356580451130867, -0.033178411424160004, 0.0056588295847177505, 0.00675675505772233, 0.026801420375704765, -0.0011251858668401837, 0.05242971330881119, 0.005478348582983017, -0.005538508761674166, 0.004797785077244043, -0.001584848272614181, -0.006207792088389397, 0.005034666042774916, -0.0030568959191441536, -0.004891785327345133, -0.02857614867389202, -0.001863089739345014, 0.00739219831302762, -0.01522055920213461, -0.011520699597895145, -0.0065837944857776165, 0.034802742302417755, -0.006098751910030842, -0.0072530778124928474, 0.00447818310931325, 0.004512023646384478, -0.016619287431240082, -0.00575659004971385, -0.014897197484970093, -0.0002535663079470396, -0.018138334155082703, -0.006380753125995398, 0.004553383681923151, 0.01699528843164444, -0.015152879059314728, 0.0006453133537434042, -0.015611601062119007, -0.02307148091495037, 0.006929716095328331, 0.0020905709825456142, 0.0017766092205420136, -0.025899015367031097, 0.0005555428797379136, 0.007790760602802038, -0.009121807292103767, -0.0012107263319194317, -0.00639579351991415, 0.008813485503196716, 0.017175769433379173, 0.00029445652035064995, 0.0200785044580698, -0.015837201848626137, 0.01804809458553791, -0.03344913572072983, -0.010129492729902267, -0.004433062858879566, -0.0001742534077493474, 0.00803140178322792, -0.007888521067798138, -0.011422939598560333, 0.006140111945569515, -0.01707048900425434, 0.005000825971364975, -0.02107114903628826, -0.006982356309890747, -0.0018001093994826078, 0.025718534365296364, -0.004718824755400419, 0.0016121084336191416, -0.0009982852498069406, -0.024214526638388634, 0.00873828586190939, -0.01947690173983574, -0.016754647716879845, -0.02009354531764984, 0.003726179478690028, -0.0021432111971080303, 0.017311129719018936, 0.0010509254643693566, -0.022695478051900864, 0.011407899670302868, -0.01747657172381878, -0.025327492505311966, -0.01305478811264038, -0.0027654943987727165, -0.026741258800029755, -0.012423104606568813, -0.0065499539487063885, 0.00926468800753355, -0.03561490401625633, -0.012347904033958912, -0.007095156703144312, 0.007598999422043562, 0.005173787008970976, 0.003013655776157975, -0.013197668828070164, -0.026620939373970032, 0.0361262671649456, 0.01000917237251997, -0.0031527765095233917, -0.0065499539487063885, 0.009422608651220798, 0.008347243070602417, -0.0022296917159110308, 0.015686802566051483, 0.021702833473682404, -0.004466903395950794, -0.0006030131480656564, -0.004639863967895508, 0.0020266505889594555, 0.012099742889404297, 0.013084867969155312, -0.004222502000629902, -0.012453184463083744, -0.01607784442603588, 0.003799499711021781, 0.022409716621041298, 0.003869060194119811, -0.008181802928447723, 0.015822162851691246, -0.05215899273753166, 0.016604246571660042, 0.020183784887194633, 0.0015181079506874084, -0.006745474878698587, -0.0039555407129228115, 0.026726219803094864, -0.0179879330098629, 0.020755307748913765, -0.02200363390147686, -0.009911411441862583, -0.024906368926167488, -0.01746153086423874, -0.003440417814999819, 0.043285343796014786, -0.004474423360079527, 0.022289395332336426, 0.014596396125853062, 0.0077832406386733055, 0.0035983386915177107, 0.017145689576864243, -0.08897710591554642, -0.018123295158147812, 0.009174447506666183, -0.005226427223533392, 0.029252951964735985, 0.0008041741675697267, -0.009422608651220798, -0.019672421738505363, 0.0028726549353450537, 0.038201797753572464, -0.00013336319534573704, 0.013340549543499947, -0.007245557848364115, -0.02453036792576313, -0.020800428465008736, 0.008678125217556953, 0.0003710669407155365, 0.04436822980642319, 0.012370464392006397, -0.021191470324993134, 0.021221550181508064, -4.5972115913173184e-05, 0.024680769070982933, -0.021221550181508064, 0.00010680805280571803, -0.021236591041088104, -0.00014805076352786273, -0.0019627301953732967, 0.03008015640079975, 0.011716220527887344, -0.009166928008198738, 0.017250970005989075, -0.008475083857774734, 0.012167423032224178, 0.0068582757376134396, 0.030200477689504623, -0.027869265526533127, 0.024755969643592834, -0.006455953698605299, 0.02048458717763424, 0.02406412549316883, -0.010873976163566113, 0.006666514556854963, -0.016408724710345268, -0.013363109901547432, -0.03245648741722107, -0.02409420534968376, 0.026786379516124725, 0.006497313734143972, 0.03353937342762947, -0.014972398057579994, -0.03444178029894829, 0.017687132582068443, -0.009129327721893787, -0.01898057945072651, -0.002034170553088188, -0.004974505864083767, 0.022364595904946327, 0.003075696062296629, 0.006925955880433321, 0.007068836595863104, 0.008550284430384636, -0.019401701167225838, 0.0049030655063688755, -0.01848425529897213, 0.015867281705141068, 0.0038483799435198307, 0.017235929146409035, -0.012355424463748932, 0.014942318201065063, -0.003549458459019661, 0.033689774572849274, -0.017611932009458542, 0.012400544248521328, -0.01004677265882492, -0.0013761671725660563, -0.02347756177186966, -0.02701198123395443, -0.00028505647787824273, -0.0022616516798734665, 0.0016938888002187014, 0.007271877955645323, 0.02498156949877739, -0.001234226394444704, 0.015671761706471443, -0.029899675399065018, 8.283793431473896e-05, 0.004955705720931292, 0.01379175204783678, 0.022800758481025696, 0.006410833448171616, -0.00502338632941246, -0.01528823934495449, 0.0025530532002449036, -0.02110123075544834, 0.04154069721698761, 0.003207296598702669, -0.023778364062309265, -0.008249483071267605, -0.013799271546304226, -0.0229511596262455, 0.02756846323609352, 0.005865630693733692, -0.01898057945072651, 0.02304139919579029, -0.013573670759797096, -0.012618625536561012, 0.011460539884865284, 0.010858936235308647, 0.0030644158832728863, -0.026726219803094864, -0.03191504627466202, -0.0042037018574774265, 0.011934301815927029, 0.03609618917107582, 0.032817449420690536, 0.011663580313324928, 0.011821501888334751, 0.00031795664108358324, 0.007963721640408039, 0.02901231124997139, 0.0431048646569252, 0.018123295158147812, 0.003525018459185958, -0.02350764162838459, -0.015431120060384274, -0.015055118128657341, -0.004824105184525251, 0.034231219440698624, -0.01701032929122448, 0.008174282498657703, -0.021221550181508064, -0.03149392455816269, -0.029298072680830956, 0.01255846582353115, 0.009136847220361233, 0.0051249065436422825, -0.010595735162496567, -0.009452689439058304, 0.028395667672157288, -0.018303776159882545, -0.006425873376429081, 0.00020915108325425535, 0.012761506251990795, 0.010257333517074585, 0.034802742302417755, -0.00846004392951727, -0.01479943748563528, 0.010588214732706547, -0.013671430759131908, 0.010904056951403618, 0.0007900741184130311, -0.012964547611773014, 0.02549293264746666, 0.009392528794705868, -0.0234926026314497, -0.02301131933927536, -0.012821666896343231, 0.003246776992455125, 0.013874472118914127, -0.005801710300147533, -0.008715725503861904, -0.014415915124118328, -0.013378149829804897, -0.003115176223218441, -0.020725227892398834, 0.0035607386380434036, 0.019221220165491104, -0.004557143896818161, -0.02204875461757183, -0.0024628129322081804, -0.03347921371459961, -0.0230263601988554, -0.0016468885587528348, 0.005076026543974876, -0.015107758343219757, 0.01594248227775097, -0.0250417310744524, 0.025402693077921867, 0.008933806791901588, 0.013393189758062363, -0.005087306257337332, -0.025312451645731926, 0.01155078038573265, 0.010625815019011497, -0.009362448938190937, -0.016890008002519608, -0.030335837975144386, -0.001955210231244564, 0.006470993626862764, 0.027327822521328926, 0.007685480173677206, -0.015182958915829659, -0.019612262025475502, 0.002784294541925192, 0.024801088497042656, -0.023883644491434097, -0.0056588295847177505, 0.015852242708206177, -0.016935128718614578, -0.005188826937228441, 0.00039127704803831875, -0.013032227754592896, 0.01649896614253521, 0.005801710300147533, 0.006091231480240822, 0.011994462460279465, 0.028636308386921883, -0.02407916449010372, -0.009723410941660404, -0.015115278773009777, -0.00873076543211937, -0.016408724710345268, -0.04136021435260773, -0.016258325427770615, -0.009392528794705868, -0.0017935293726623058, 0.01800297386944294, 0.0009451748919673264, 0.011302619241178036, -0.001273706671781838, 0.01908585987985134, 0.02908751182258129, -0.006940996274352074, -0.02949359267950058, 0.029117591679096222, 0.011332699097692966, 0.016694486141204834, 0.008121642284095287, -0.023643003776669502, -0.016138004139065742, -0.013227748684585094, 0.019146019592881203, 0.027733905240893364, 0.009054127149283886, -0.03660755231976509, 0.00903908722102642, -0.016844887286424637, 0.023658042773604393, 0.014927277341485023, -0.012498305179178715, -0.014596396125853062, 0.020650027319788933, -0.02994479611515999, -0.015303279273211956, -0.006008511409163475, 0.014942318201065063, 0.019356580451130867, -0.0013733471278101206, -0.007542599458247423, -0.019807783886790276, -0.010896536521613598, -0.004636104218661785, 0.035735227167606354, 0.03047119826078415, 0.0058769104070961475, 0.02943343296647072, 0.022184114903211594, -0.008655564859509468, 0.035735227167606354, 0.004816585220396519, -0.026199815794825554, 0.033328812569379807, -0.00662139430642128, 0.019777702167630196, -0.02544781193137169, 0.01325030904263258, 0.0015228078700602055, -0.034802742302417755, -0.007467398885637522, -0.003709259210154414, 0.014085032977163792, -0.0053768279030919075, 0.01699528843164444, -0.03042607754468918, -0.043255265802145004, -0.008550284430384636, 0.002233451697975397, 0.001135525875724852, 0.006617634557187557, 0.009979091584682465, 0.017100568860769272, -0.006561234127730131, -0.008174282498657703, -0.0022635317873209715, -0.021176429465413094, 0.006094991695135832, -0.017266009002923965, -0.02004842460155487, 0.011159738525748253, 0.013618790544569492, -0.015122798271477222, -0.005767870228737593, 0.0017117488896474242, -0.00539186829701066, -0.02260523848235607, -0.002652693772688508, -0.010889017023146152, -0.002773014362901449, -0.009918931871652603, 0.01428055390715599, -0.0033182173501700163, 0.0013150668237358332, -0.012295263819396496, 0.009362448938190937, -0.008941326290369034, 0.006971076130867004, 0.02702702023088932, 0.01255094539374113, 0.00973093044012785, 0.00539186829701066, -0.004997066222131252, -0.02544781193137169, -0.00625667255371809, -0.013671430759131908, 0.02293611876666546, 0.010137013159692287, -0.01398727297782898, 0.04451863095164299, -0.0017925893189385533, -0.015378479845821857, -0.007241797633469105, -0.0022917320020496845, -0.006031071301549673, 0.0022484916262328625, 0.016649367287755013, 0.018754977732896805, -0.015596561133861542, 0.011716220527887344, -0.0005400328082032502, 0.002573733450844884, 0.006726675201207399, 0.0007797340513207018, 0.024710848927497864, 0.033810097724199295, 0.016198163852095604, 0.01047541480511427, 0.01073109544813633, -0.002522973110899329, 0.00274481438100338, -0.015092718414962292, 0.01000165194272995, -0.009482769295573235, 0.025131970643997192, 0.011701180599629879, 0.0049820258282125, 0.0007064137025736272, -0.0012220063945278525, -0.005805470049381256, 0.01758185215294361, -0.020409386605024338, -0.0007369638187810779, -0.014972398057579994, 0.018108254298567772, -0.00749371899291873, 0.018679777160286903, -0.0015491280937567353, 0.0110469376668334, 0.009166928008198738, -0.006730434950441122, 0.015077678486704826, 0.01026485301554203, 0.001801989390514791, -0.020890668034553528, -0.003417857689782977, -0.006519874092191458, 0.021371951326727867, -0.017356250435113907, -0.005076026543974876, 0.002784294541925192, -0.0017982294084504247, 0.005000825971364975, 0.01696520857512951, -0.001357367029413581, -0.0024628129322081804, 0.0017794292652979493, -0.005440748296678066, 0.00128028669860214, -0.018363935872912407, -0.016905048862099648, -0.011671100743114948, -0.013310469686985016, -0.010219733230769634, -0.010670935735106468, -0.010129492729902267, -0.022815799340605736, 0.01901065930724144, -0.0027372941840440035, -0.0005362727679312229, 0.03384017571806908, 0.007098916918039322, -0.02051466703414917, -0.011197337880730629, 0.012656225822865963, 0.0049030655063688755, -0.0005781030049547553, -0.0022108915727585554, 0.016393685713410378, -0.008708205074071884, -0.004474423360079527, 0.0028989750426262617, -0.01944682188332081, 0.004587223753333092, 0.015807121992111206, 0.012686305679380894, -0.03008015640079975, 0.009415089152753353, -0.013536070473492146, -0.006399553269147873, 0.007271877955645323, 0.00876836571842432, 0.006433393340557814, 0.005737789906561375, -0.0014147073961794376, -0.022304436191916466, 0.010655895806849003, 0.02057482674717903, -0.008452524431049824, -0.008166762068867683, 0.01305478811264038, -0.013272869400680065, 0.013671430759131908, -0.0204695463180542, -0.014897197484970093, 0.0014767476823180914, 0.011415419168770313, -0.013859432190656662, 0.018348895013332367, -0.003534418297931552, -0.0077832406386733055, -0.005918270908296108, -0.005147466901689768, -0.03817171975970268, 0.023733243346214294, 0.012069663032889366, -0.00502338632941246, -0.011716220527887344, -0.01904073916375637, 0.0033614574931561947, -0.0038088997825980186, 0.014837036840617657, -0.0017803693190217018, -0.008414924144744873, -0.00648979377001524, -0.023748284205794334, -0.010701015591621399, -0.014385835267603397, -0.0038577800150960684, 0.005448268260806799, 0.009693330153822899, 0.008948846720159054, 0.012693826109170914, 0.017822492867708206, -0.0004215921799186617, -0.012295263819396496, -0.012152383103966713, 0.009317328222095966, -0.0060761915519833565, 0.011332699097692966, -0.0024082926101982594, -0.006636434700340033, -0.0008455343777313828, 0.0029741753824055195, 0.020890668034553528, -0.00625667255371809, -0.002756094327196479, 0.01047541480511427, -0.004925625864416361, 0.02610957622528076, -0.03648722916841507, -0.009106767363846302, -0.004805305041372776, -0.008324683643877506, -0.01552136056125164, -0.014671596698462963, 0.008053962141275406, -0.004959465935826302, 0.012377984821796417, -0.0036622590851038694, 0.009595570154488087, -0.0022748117335140705, -0.004598503932356834, -0.00015063578030094504, -0.004045781213790178, 0.013438309542834759, 0.014115113765001297, 0.036306750029325485, -0.010685975663363934, -0.00047799249296076596, 0.014656555838882923, -0.0015698082279413939, -0.029147671535611153, -0.0030719360802322626, 3.840801127807936e-06, -0.009249648079276085, -0.011332699097692966, -0.017356250435113907, 0.011986942030489445, 0.008821005932986736, 0.014197833836078644, 0.01707048900425434, 0.015401040203869343, -0.010076852515339851, -0.021672753617167473, 0.00187248969450593, -0.006666514556854963, -0.006155151873826981, 0.017160728573799133, -0.0245002880692482, -0.004496983252465725, -0.0036133788526058197, -0.0065537141636013985, -0.014468555338680744, 0.005952110979706049, -0.0031790966168045998, 0.004718824755400419, 0.009339888580143452, -0.014175273478031158, 0.0011233058758080006, 0.015596561133861542, 0.022800758481025696, 0.012528385035693645, -0.011753820814192295, -0.013092388398945332, -0.003713019425049424, -0.008911246433854103, -0.022725557908415794, 0.005267787259072065, -0.04370646923780441, -0.02556813322007656, 0.005722749978303909, 0.016183124855160713, -0.020740268751978874, 0.016859928146004677, 0.004369142930954695, 0.014814477413892746, 0.018303776159882545, 0.020920749753713608, 0.018228575587272644, -0.0026752538979053497, 0.011896701529622078, -0.011723740957677364, -0.013468390330672264, -0.005692669656127691, 0.007238037884235382, 0.0255831740796566, 0.014197833836078644, 0.0016318485140800476, 0.02206379547715187, -0.007189157418906689, -0.015746962279081345, 0.009723410941660404, -0.009557969868183136, 0.012648705393075943, 0.020800428465008736, -0.027357902377843857, 0.01053557451814413, 0.0021432111971080303, -0.017807452008128166, -0.010407733730971813, -0.006467233877629042, -0.0010180253302678466, 0.014739276841282845, -0.026620939373970032, 0.002470332896336913, -0.004222502000629902, -0.011227418668568134, -2.4131688405759633e-05, 0.0037675395142287016, -0.004263862036168575, -0.008204362355172634, 0.0005550729110836983, 0.014536235481500626, 0.008745805360376835, -0.013460869900882244, -0.002972295507788658, 0.003786339657381177, -0.025147011503577232, 0.0006645834655500948, 0.021823152899742126, -0.009490289725363255, 0.0007388438680209219, -0.003970580641180277, 0.0250417310744524, -0.0031884966883808374, -0.00042253220453858376, 0.015746962279081345, 0.005260267294943333, -0.0037919797468930483, -0.0028989750426262617, 0.011016856878995895, 0.029659034684300423, -0.01908585987985134, 0.010813816450536251, -0.0033069371711462736, -0.019281379878520966, 0.0031114162411540747, 0.030741920694708824, -0.01155078038573265, 0.006771795451641083, 0.01425799448043108, -0.032697129994630814, -0.0032542969565838575, -0.01955210231244564, -0.005820510443300009, 0.0037788196932524443, -0.00040044207707978785, -0.00224097166210413, -0.003286257153376937, -0.023116599768400192, 0.01858953759074211, 0.011911742389202118, -0.019717542454600334, 0.004846665076911449, -0.01278406661003828, -0.0015660481294617057, -0.004260102286934853, 0.01898057945072651, -0.019356580451130867, 0.017100568860769272, -0.023958845064044, -0.017205849289894104, -0.0005184126785025001, -0.005869390442967415, -0.006910915952175856, -0.0032937771175056696, -0.0026056936476379633, 0.016859928146004677, 0.01905578002333641, 0.0011186058400198817, -0.0014222273603081703, 0.0008065241854637861, -0.009580530226230621, 0.011114617809653282, -0.004320262465626001, -0.0028124945238232613, -0.011129657737910748, 0.011077017523348331, 0.00019622602849267423, -0.006813155487179756, -0.008452524431049824, 0.011768861673772335, 0.0024120525922626257, 0.029252951964735985, 0.01521303877234459, 0.020304106175899506, -0.008053962141275406, -0.009813651442527771, 0.0049068257212638855, 0.016243284568190575, 0.002504172967746854, -0.016649367287755013, -0.010385174304246902, -0.0027654943987727165, -0.005136186722666025, -0.001729608979076147, -0.006094991695135832, -0.004327782429754734, -0.025914054363965988, -0.02594413422048092, -0.006177712231874466, -0.026335177943110466, 0.00776068028062582, 0.010558134876191616, 0.008565324358642101, 0.006538674235343933, 0.022138996049761772, 0.007384678348898888, 0.02344748191535473, 0.0027241341304033995, 0.020770348608493805, 0.0012285864213481545, -0.007159077096730471, 0.018363935872912407, -0.0036396989598870277, 0.013536070473492146, -0.011332699097692966, 0.013355589471757412, -0.02752334251999855, 0.0007910141139291227, -0.011069498024880886, -0.00946772936731577, -0.0170554481446743, 0.01755177043378353, -0.016273364424705505, 0.022214194759726524, -0.02854606881737709, 0.004286422394216061, -0.000924964842852205, -0.0194618608802557, 0.012370464392006397, -0.017326170578598976, -0.02495148964226246, -0.006463473662734032, 0.021131310611963272, -0.011182297952473164, -0.01078373659402132, 0.011227418668568134, 0.028726549819111824, 0.02556813322007656, -0.014837036840617657, -0.013904551975429058, 0.012919426895678043, 0.006143872160464525, 0.0036547391209751368, 0.006929716095328331, 0.012957027181982994, -0.005440748296678066, -0.005745309870690107, -0.0020868107676506042, -0.0049293856136500835, -0.009610610082745552, 0.0073282779194414616, 8.592232006776612e-06, -0.0348929800093174, 0.021732913330197334, -0.004466903395950794, -0.014069993048906326, 0.0010199053213000298, -0.008106602355837822, 0.005700189620256424, -0.0027504542376846075, -0.0037656596396118402, -0.020304106175899506, -0.014656555838882923, 0.013874472118914127, 0.00946020893752575, -0.0028068546671420336, -0.013069828040897846, -0.014897197484970093, -0.017160728573799133, -0.010430294089019299, 0.009219568222761154, -0.002534253289923072, 0.018619617447257042, 0.002759854309260845, 0.005839310586452484, 0.0004906825488433242, 0.007583959493786097, 0.021627632901072502, 0.01449111569672823, -0.0160477627068758, 0.03558482602238655, 0.019266340881586075, 0.0175216905772686, -0.019672421738505363, -0.01601768285036087, 0.013626310974359512, 0.0009653849992901087, -0.012453184463083744, 0.01078373659402132, 0.008354763500392437, -0.024695808067917824, -0.011573339812457561, 0.026741258800029755, -0.013310469686985016, -0.0089563662186265, 0.02501164935529232, -0.017687132582068443, -0.007978761568665504, 0.0003240666992496699, 0.021402031183242798, 0.018198493868112564, -0.004715064540505409, 0.0047037843614816666, 0.017882652580738068, 0.002742934273555875, 0.004042020998895168, -0.0029497353825718164, 0.01797289401292801, -0.00041877219337038696, -0.0009259048383682966, -0.02795950509607792, 0.015897363424301147, 0.008437483571469784, -0.005207627080380917, 0.020274026319384575, -0.02804974652826786, 0.026380296796560287, 0.0075275590643286705, 0.002573733450844884, 0.01949194073677063, -0.0020134905353188515, -0.012814146466553211, -0.002058610785752535, 8.865421114023775e-05, -0.002970415400341153, 0.011911742389202118, -0.007986281998455524, 0.00356449862010777, 0.017220890149474144, -0.015431120060384274, -0.01601768285036087, 0.014588875696063042, -0.005670109298080206, 0.007865960709750652, 0.014506155624985695, -0.023733243346214294, -0.008948846720159054, 0.012227583676576614, -0.0004277022380847484, 0.017175769433379173, 0.019807783886790276, -0.0053505077958106995, -0.02260523848235607, 0.027944466099143028, 0.01801801286637783, -0.008572844788432121, 0.01606280356645584, -0.00137240719050169, 0.023868603631854057, -0.03009519726037979, -0.0003475668199826032, -0.015077678486704826, -0.01146805938333273, 0.029704155400395393, -0.004158581607043743, -0.007674199994653463, 0.024244606494903564, -0.0012746466090902686, -0.014829517342150211, 0.018138334155082703, -0.0015951882814988494, 0.01842409558594227, -0.004842905327677727, 0.018409056589007378, -0.008602924644947052, -0.0016600486123934388, -0.013145028613507748, 0.0016816688003018498, -0.013393189758062363, 0.024861250072717667, -0.0054031480103731155, -0.005132426507771015, 0.022650357335805893, 0.029117591679096222, 0.003816419979557395, -0.005673869512975216, -0.0033727374393492937, 0.0031339763663709164, 0.010648375377058983, 0.0012248263228684664, 0.006737954914569855, -0.026876619085669518, 0.006053631659597158, -0.015626640990376472, -0.016122963279485703, -0.0027372941840440035, -0.03155408427119255, 0.021853234618902206, 0.006403313484042883, -0.03555474430322647, 0.010099412873387337, 0.0008319043554365635, 0.020725227892398834, 0.010821335949003696, 0.019702503457665443, -0.011332699097692966, 0.006403313484042883, -0.005264027509838343, 0.011956862173974514, 0.0060799517668783665, -0.017401371151208878, -0.013957192189991474, -0.005982191301882267, -0.0044255428947508335, -0.010670935735106468, 0.02307148091495037, -0.018333856016397476, 0.0006674034520983696, 0.03254672884941101, 0.009527890011668205, -0.00331445736810565, -0.010167093016207218, -0.002797454595565796, 0.0026996941305696964, 0.005937071051448584, 0.009918931871652603, -0.010934136807918549, -0.004271382000297308, -0.007343318313360214, -0.00648979377001524, -0.032847531139850616, 0.0008060542168095708, 0.023387322202324867, 0.021898353472352028, 0.000435222260421142, 0.01949194073677063, 0.017130648717284203, -0.01027989387512207, 0.008633004501461983, 0.015303279273211956, 0.0030775759369134903, -9.024047176353633e-05, 0.004835385363548994, -0.012701346538960934, 0.024680769070982933, -0.014551275409758091, 0.0017286690417677164, -0.001624328433535993, -0.02699694037437439, 0.014340714551508427, -0.007572679314762354, 0.019115939736366272, 0.011663580313324928, -0.002246611751616001, 0.005839310586452484, -0.0330280102789402, 0.011926782317459583, -0.013573670759797096, -0.006719154771417379, -0.015686802566051483, 0.008805966004729271, 0.0048729851841926575, -0.0009860651334747672, 0.015611601062119007, -0.005474588368088007, -0.01692008785903454, -0.008204362355172634, 0.0031471364200115204, -0.022379636764526367, 0.003432897850871086, 0.012626145966351032, -0.007956201210618019, -0.0015134079148992896, -0.015197998844087124, 0.003182856598868966, -0.003325737314298749, -0.000990765169262886, 0.014837036840617657, 0.015566481277346611, -0.013107428327202797, -0.0034516979940235615, -0.005997231230139732, 0.017250970005989075, -0.0033576975110918283, 0.02203371375799179, 0.023206841200590134, 0.004778984934091568, -0.0007905440870672464, 0.010061812587082386, 0.019597221165895462, -0.009828691370785236, -0.02045450732111931, -0.006455953698605299, 0.005914510693401098, 0.00900148693472147, -0.02192843332886696, -0.008520204573869705, 0.005222667008638382, -0.00652739405632019, -0.0215524323284626, 0.011558299884200096, -0.004835385363548994, -0.008986447006464005, -0.004869225434958935, 0.01753673143684864, -0.032877612859010696, 0.011678621172904968, 0.008775885216891766, 0.010685975663363934, -0.014130153693258762, -0.0033426573500037193, 0.009903891943395138, -0.012460704892873764, -0.012332864105701447, -0.003910420462489128, 0.031824804842472076, -0.0017286690417677164, 0.006617634557187557, -0.015701841562986374, 0.03898388147354126, -0.0031471364200115204, -0.0018734297482296824, 0.01603272370994091, -0.033749934285879135, 0.029283031821250916, 0.019356580451130867, -0.016213204711675644, -0.018604576587677002, -0.017912732437253, -0.009257168509066105, -0.0055234688334167, -0.02803470566868782, 0.008670604787766933, -0.002413932466879487, 0.0184541754424572, -0.0013376269489526749, -0.007004916667938232, 0.01893545873463154, -0.020304106175899506, 0.015852242708206177, 0.01646888628602028, -0.0013169468147680163, -0.0033200972247868776, -0.00237633241340518, -0.0010321253212168813, -0.014919757843017578, -0.013295428827404976, 0.008933806791901588, 0.001703288871794939, -0.020830508321523666, -1.5774458006490022e-05, -0.0007444838993251324, -0.004286422394216061, -0.001927010016515851, -0.0007101736846379936, 0.0023970124311745167, -0.01652904599905014, -0.006057391408830881, 0.0009404749143868685, 0.00602731155231595, -0.011911742389202118, 0.0021074910182505846, -0.02907247096300125, -0.011385339312255383, -0.025342531502246857, -0.010791256092488766, -0.017837533727288246, -0.004583464004099369, -0.0010528054554015398, -0.012926947325468063, 0.006094991695135832, 0.00411722157150507, 0.02153739146888256, 0.0010443454375490546, 0.0024214526638388634, 0.0023030119482427835, 0.013927112333476543, 0.014408394694328308, -0.0028557348996400833, -0.011325178667902946, -0.018634656444191933, -0.020650027319788933, 0.030215516686439514, -0.013648871332406998, -0.008046441711485386, 0.0245002880692482, 0.011460539884865284, -0.001048105419613421, 0.008708205074071884, -0.0014814477181062102, 0.002321812091395259, -0.007098916918039322, 0.008888686075806618, 0.012889347039163113, -0.004263862036168575, -0.02854606881737709, 0.011310138739645481, -0.009024047292768955, 0.019206179305911064, 0.0070575568825006485, -0.004038261249661446, -0.007046276703476906, 0.01795785315334797, -0.010723575949668884, 0.0012981467880308628, -0.014664076268672943, -0.008369803428649902, -0.01702536828815937, -0.004395463038235903, 0.006903395988047123, 0.009595570154488087, 0.0013780471635982394, 0.010294933803379536, 0.005222667008638382, -0.002517333021387458, 0.003825819818302989, -0.010287413373589516, -0.0055234688334167, -0.0015162278432399035, 0.009181967936456203, -0.0002436962677165866, 0.0005705829826183617, 0.036818113178014755, 0.013739111833274364, -0.008369803428649902, -0.0011233058758080006, 0.008580364286899567, -0.008625485002994537, -0.014536235481500626, 0.013408229686319828, 0.005869390442967415, 0.04003668949007988, 0.0006622334476560354, -0.00973093044012785, 0.011490619741380215, 0.0092270877212286, 0.028907030820846558, -0.02249995619058609, 0.0019382900791242719, -0.011061977595090866, -0.0058919508010149, -0.03158416599035263, -0.017130648717284203, 0.013588710688054562, 0.01228774432092905, 0.016318485140800476, 0.007159077096730471, 0.00525650754570961, 0.004692504648119211, -0.014355754479765892, -0.021131310611963272, -0.029643993824720383, 0.030922401696443558, 0.0022503717336803675, 0.023733243346214294, 0.011355259455740452, 0.023297080770134926, 0.014551275409758091, -0.0014767476823180914, -0.001979650231078267, 0.008685645647346973, 0.008482604287564754, -0.0004368672671262175, -0.01699528843164444, -0.016589205712080002, -0.01944682188332081, 0.019732583314180374, 0.013769191689789295, 0.01325030904263258, 0.01000165194272995, -0.01603272370994091, 0.027147341519594193, -0.011934301815927029, -0.0031490162946283817, 0.0046812244690954685, -0.0012502064928412437, 0.021642671898007393, 0.007843401283025742, -0.0110469376668334, 0.0004803425108548254, 0.002269171876832843, 0.011054457165300846, 0.00067304348340258, -0.0249665305018425, 0.010595735162496567, 0.042713820934295654, -0.003470498137176037, 0.0029365753289312124, 0.004542103502899408, -0.03450194001197815, -0.010355093516409397, 0.007768200244754553, -0.006798115558922291, -0.0245754886418581, -0.005294107366353273, 0.005421948153525591, -0.015837201848626137, 0.008550284430384636, -0.013881992548704147, 0.002722254255786538, 0.007715560030192137, -0.005083546508103609, -0.013348069041967392, -0.0013272869400680065, 0.022394675761461258, 0.004068341106176376, -0.001306606805883348, -0.017205849289894104, -0.006346913054585457, -0.005707709584385157, 0.011437979526817799, -0.008309643715620041, -0.0004150121530983597, -0.010986777022480965, -0.005587389227002859, -0.007433558814227581, -0.009091727435588837, 0.019672421738505363, 0.0008934746729210019, 0.013408229686319828, -0.015318320132791996, 0.015190479345619678, -0.0056287492625415325, 0.012731426395475864, 0.0010781856253743172, 0.006185232196003199, 0.016694486141204834, 0.01743145100772381, 0.010249813087284565, -0.008053962141275406, 0.01601768285036087, -0.011768861673772335, 0.017687132582068443, -0.016318485140800476, -0.011212378740310669, -0.010693496093153954, -0.005515948869287968, -0.014122633263468742, 0.001030245330184698, 0.01994314417243004, 0.02798958495259285, 0.00625291233882308, 0.0084901237860322, 0.004790265113115311, -0.016619287431240082, 0.010753655806183815, 0.001927010016515851, -0.0042337821796536446, 0.0031245762947946787, 0.011693661101162434, -0.02856110781431198, 0.006155151873826981, 0.012723905965685844, -0.026846539229154587, 0.015055118128657341, 0.01803305372595787, -0.009242127649486065, -0.002929055131971836, 0.013160068541765213, -0.009806131012737751, 0.01598760299384594, -0.031132962554693222, 0.005136186722666025, 0.009159407578408718, -0.0013912072172388434, 0.00015733331383671612, -0.005038426257669926, 0.004673704504966736, -0.007008676417171955, -0.009520369581878185, -0.0369083508849144, 0.003455457976087928, -0.07207205146551132, -0.0014626475749537349, 0.0026075735222548246, 0.005504668690264225, -0.010204693302512169, -0.0046210638247430325, -0.0015284479595720768, 0.003549458459019661, -0.003842740086838603, 0.001769089256413281, -0.0017831892473623157, -0.0052527473308146, -0.0224849171936512, -0.010377653874456882, -0.0033689774572849274, 0.013205188326537609, 0.005594909191131592, 0.015085198916494846, 0.008873646147549152, 0.0065762740559875965, -0.013175108470022678, -0.006869555916637182, 0.006117552053183317, -0.008572844788432121, 0.007813320495188236, -0.0097685307264328, 0.01701032929122448, 0.010257333517074585, -0.006313072983175516, -0.015777042135596275, 0.007298198062926531, -0.009941491298377514, -0.0026696138083934784, 0.01743145100772381, 0.016408724710345268, 0.016905048862099648, 0.0032129366882145405, -0.02656077779829502, -0.004715064540505409, 0.00977605115622282, 0.020349225029349327, -0.013866952620446682, -0.0008981746505014598, 0.0033896577078849077, 0.0019852903205901384, 0.014430955052375793, 0.005203866865485907, 0.008617964573204517, 0.006666514556854963, -0.005794190336018801, 0.014032392762601376, -0.01274646632373333, -0.013964712619781494, 0.008602924644947052, 0.016905048862099648, -0.005440748296678066, 0.014355754479765892, -0.010994297452270985, 0.00331445736810565, -0.0102347731590271, 0.0019777703564614058, -0.0026301336474716663, -0.013799271546304226, 0.002970415400341153, 0.015536400489509106, 0.011595900170505047, -0.0022654118947684765, 0.022665398195385933, 0.011798941530287266, 0.016348564997315407, -0.015461200848221779, 0.007911081425845623, -0.018198493868112564, 0.00853524450212717, -0.0028670148458331823, -0.003021175740286708, 0.013114947825670242, -0.004008180927485228, 0.020243944600224495, -0.0055723488330841064, 0.010685975663363934, 0.0007886640960350633, -0.002731654327362776, 0.002714734058827162, -0.032787371426820755, -0.001742769032716751, 0.012859267182648182, 0.0036641389597207308, -0.01297958754003048, 0.0003849320055451244, 0.01843913644552231, 0.0038446199614554644, 0.01746153086423874, 0.01941674016416073, 0.005846830550581217, 0.0132578294724226, 0.01374663133174181, -0.001611168379895389, 0.0021996113937348127, -0.021251630038022995, 0.003684819210320711, 0.01655912585556507, -0.039314765483140945, -0.012415584176778793, 0.014776877127587795, -0.011949341744184494, -0.03964564576745033, 0.009430129081010818, -0.00017131588538177311, 0.05092570558190346, 0.01078373659402132, 0.008918766863644123, -0.00803140178322792, 0.012723905965685844, -0.013716551475226879, 0.01425799448043108, -0.004925625864416361, 0.0009268448338843882, -0.013866952620446682, -0.03104272112250328, -0.0044518630020320415, -0.0122501440346241, -0.019206179305911064, -0.02304139919579029, 0.0012379864929243922, 0.03161424398422241, 0.02459052763879299, 0.006519874092191458, -0.0031377363484352827, 0.03107280097901821, -0.026726219803094864, 0.020680107176303864, -0.001611168379895389, 0.0054069082252681255, 0.00903908722102642, -0.005448268260806799, 0.0048729851841926575, -0.004737624432891607, 0.016153044998645782, -0.005339227616786957, 0.02603437565267086, -0.005771629977971315, 0.001150566036812961, 0.013468390330672264, -0.03155408427119255, -0.0107762161642313, 0.0012511465465649962, 0.017205849289894104, 0.009144367650151253, 0.0013413869310170412, -0.001499307807534933, 0.019371621310710907, -0.005959630943834782, 0.016122963279485703, 0.008670604787766933, 0.0009888851782307029, -0.014731756411492825, -0.026801420375704765, 0.005858110263943672, 0.013438309542834759, -0.01699528843164444, 0.0006749235326424241, -0.0056212292984128, -0.0170554481446743, -0.004820344969630241, 0.030185436829924583, 0.009076687507331371, -0.003775059711188078, -0.006512354128062725, 0.018845217302441597, 0.005188826937228441, -0.0007872540736570954, -0.0120546231046319, 0.010881496593356133, 0.009761011227965355, 0.0048842653632164, -0.0019223099807277322, 0.019100898876786232, 0.0024496526457369328, -0.02398892492055893, -0.0026075735222548246, 0.002795574488118291, -0.010670935735106468, -0.006903395988047123, 0.018845217302441597, -0.015393519774079323, 0.017626971006393433, 0.013588710688054562, 0.005113626830279827, 0.008324683643877506, -0.004410502966493368, 0.025658372789621353, 0.009994132444262505, -0.002902735024690628, -0.001030245330184698, 0.011859102174639702, -0.008565324358642101, 0.004527063574641943, 0.009392528794705868, 0.0035738986916840076, -0.0007383738411590457, 0.004812825005501509, -0.025733573362231255, -0.009926451370120049, 0.0008572844672016799, -0.00461730407550931, -0.0026376538444310427, 0.0033445374574512243, 0.0075012389570474625, -0.02203371375799179, -0.012994627468287945, 0.0027260142378509045, 0.0049030655063688755, 0.0229511596262455, -0.0033069371711462736, 0.0016910687554627657, 0.011392859742045403, -0.007971241138875484, 0.005666349548846483, -0.004786504898220301, 0.0031922566704452038, -0.0075313192792236805, 0.00598595105111599, -0.017205849289894104, 0.014152714051306248, 0.0028707748278975487, -0.02197355404496193, -0.00043005222687497735, 0.014566316269338131, 0.015792082995176315, 0.02042442560195923, -0.0012596065644174814, 0.0214772317558527, 0.001089465687982738, 0.022108914330601692, 0.016634326428174973, 0.005241467151790857, 0.024319807067513466, -0.020364265888929367, -0.0015622881473973393, 0.016092883422970772, 0.013641350902616978, -0.008978926576673985, 0.0047075445763766766, -0.017867613583803177, -0.007091396953910589, -0.0009964051423594356, 0.015182958915829659, -0.03197520598769188, 0.01026485301554203, -0.009482769295573235, -0.011370299383997917, 0.004256342072039843, 0.01522807963192463, 0.015566481277346611, -0.0055761090479791164, -0.013596231117844582, -0.003483658190816641, 0.015716882422566414, 0.010302453301846981, -0.014671596698462963, 0.0017766092205420136, 0.006068671587854624, 0.001550068031065166, -0.004008180927485228, -0.013859432190656662, 0.0046248240396380424, -0.010249813087284565, 0.004365382716059685, 0.012919426895678043, 0.009332368150353432, 0.014972398057579994, 0.017732251435518265, -0.02107114903628826, -0.003944260533899069, -0.0109717370942235, -0.027327822521328926, -0.010445334017276764, 0.03805139660835266, 0.012588545680046082, -0.023282041773200035, 0.012656225822865963, 0.005899470765143633, 0.0007797340513207018, 0.019687462598085403, -0.0035287784412503242, -0.011377818882465363, 0.012370464392006397, 0.0033558174036443233, 0.0023387321271002293, -0.012408064678311348, 0.035284023731946945, -0.0012755866628140211, 0.00997157208621502, 0.01944682188332081, 0.011099577881395817, 0.026154696941375732, 0.0019702501595020294, -0.01795785315334797, 0.015731921419501305, 0.00822692271322012, 0.011580860242247581, -0.007903560996055603, 0.0067793154157698154, -0.025192130357027054, 0.004440583288669586, -0.0320955254137516, 0.007482438813894987, 0.006704114843159914, 0.02907247096300125, -0.011219898238778114, -0.0035588585305958986, 0.011701180599629879, -0.00042464720900170505, -0.005895710550248623, -0.003722419263795018, 0.011798941530287266, 0.0039781006053090096, 0.005967150907963514, 0.002996735507622361, 0.0169802475720644, 0.00025568134151399136, 0.010806296020746231, 0.02057482674717903, 0.01858953759074211, -0.008279562927782536, -0.01177638117223978, -0.024334846064448357, -0.0094978092238307, -0.00039550705696456134, -0.012693826109170914, 0.012581025250256062, -0.006448433734476566, 0.0030023755971342325, -0.007155317347496748, 0.0048993052914738655, 0.005038426257669926, -0.011144697666168213, -0.031734563410282135, 0.016724567860364914, -0.004636104218661785, -0.015145358629524708, -0.011896701529622078, -0.014235434122383595, -0.003218576777726412, -0.007813320495188236, 0.02401900477707386, -0.007926121354103088, 0.012528385035693645, 0.010595735162496567, -0.003216696670278907, -0.0012210663408041, 0.014573835767805576, 0.0003882220189552754, -0.025237251073122025, -0.00026696137501858175, 0.021778034046292305, 0.00031607665005140007, 0.003194136545062065, -0.005640029441565275, 0.003461098065599799, -0.028230227530002594, -0.0070274765603244305, 0.015190479345619678, -0.013092388398945332, 0.017250970005989075, 0.009114287793636322, 0.003966820426285267, 0.010798776522278786, -0.009324848651885986, 0.020258985459804535, 0.004684984218329191, -0.006899635773152113, 0.006110031623393297, 0.00899396650493145, 0.007595239672809839, -0.017386330291628838, 0.0032016567420214415, -0.0016384285409003496, -0.003117056330665946, 0.04265366122126579, 0.008745805360376835, 0.007181637454777956, -0.006497313734143972, -0.0023857324849814177, -0.017702171579003334, -0.01648392528295517, -0.009881331585347652, -0.0049331458285450935, -0.005662589333951473, 0.0058806706219911575, -0.013671430759131908, 0.028380626812577248, 0.011829021386802197, 0.0058505902998149395, -0.0003722419496625662, 0.015611601062119007, 0.004527063574641943, 0.0174464900046587, 0.007926121354103088, 0.002522973110899329, 0.010889017023146152, -0.02456044778227806, 0.011197337880730629, 0.012611106038093567, 0.013663911260664463, 0.012182462960481644, -0.0003555568400770426, -0.0059107509441673756, -0.028215186670422554, 0.004557143896818161, -0.005147466901689768, -0.010798776522278786, -0.0122501440346241, 0.007516279350966215, 0.011941822245717049, 0.012182462960481644, 0.00822692271322012, 0.00331445736810565, -0.015837201848626137, -0.0014541875571012497, -0.017657052725553513, 0.012430625036358833, -0.012964547611773014, -0.016724567860364914, -0.004335302393883467, -0.00029069650918245316, 0.0011656060814857483, -0.015882322564721107, -0.027327822521328926, 0.011753820814192295, -0.0056212292984128, -0.012370464392006397, -0.008241962641477585, -0.011347739025950432, -0.008106602355837822, 0.008745805360376835, -0.019732583314180374, 0.009896371513605118, -0.010294933803379536, -0.007226757705211639, 0.018363935872912407, 0.008084041997790337, -0.0018574496498331428, -0.014167753979563713, 0.00927220843732357, 0.016168083995580673, -0.004316502250730991, 0.019852902740240097, -0.01074613630771637, 0.015167918987572193, -0.016814807429909706, 0.0026902940589934587, -0.0019871704280376434, -0.007715560030192137, -0.013799271546304226, -0.0400066077709198, 0.020665068179368973, -0.0027767743449658155, 0.008429964073002338, -0.008572844788432121, 0.0039818608202040195, -0.004079621285200119, -0.006531153805553913, -0.012919426895678043, -0.001751229166984558, 0.004820344969630241, -0.001767209148965776, 0.02807982638478279, 0.0034780181013047695, -0.003481778083369136, -0.010994297452270985, 0.00010428178939037025, -0.0005278127500787377, 0.009069167077541351, 0.0061025116592645645, -0.020123625174164772, -0.019176099449396133, -0.0026301336474716663, 0.0026884139515459538, 0.008918766863644123, 0.007941161282360554, -0.011114617809653282, 0.029674073681235313, -0.008948846720159054, -0.023297080770134926, -0.0073282779194414616, -0.003013655776157975, -0.0032881370279937983, -0.008625485002994537, -0.013686471618711948, 0.016258325427770615, 0.005279067438095808, 0.02556813322007656, -0.00042699722689576447, 0.009069167077541351, 0.00822692271322012, 0.008512684144079685, -0.004512023646384478, -0.005779149942100048, 0.0026094536297023296, -0.00041524716652929783, 0.01857449673116207, 0.006948516238480806, -0.018288735300302505, -0.009482769295573235, -0.011881661601364613, 0.015416080132126808, -0.016213204711675644, -0.0053768279030919075, -0.0031584163662046194, 0.008407403714954853, 0.004042020998895168, 0.019852902740240097, 0.0021432111971080303, -0.0063055530190467834, 0.004842905327677727, -0.016935128718614578, 0.012829186394810677, -0.019747622311115265, -0.037269312888383865, 0.0016600486123934388, -0.004508263431489468, -0.020198825746774673, 0.0006951336399652064, -0.00726059777662158, -0.013415750116109848, -0.0077832406386733055, 0.013844392262399197, -0.022860918194055557, 0.005918270908296108, -0.005568589083850384, -0.019672421738505363, -0.0005799829959869385, -0.009415089152753353, 0.027237581089138985, -0.011588380672037601, 0.0006081831525079906, -0.01692008785903454, 0.013776712119579315, 0.0132578294724226, 0.01843913644552231, 0.004527063574641943, 0.009512849152088165, -0.00401570089161396, -0.002524853218346834, -0.012573505751788616, 0.015716882422566414, -0.016348564997315407, -0.01204710267484188, -0.006279232911765575, -0.0037036193534731865, 0.003237376920878887, -0.004609784111380577, 0.006440913304686546, 0.005162506829947233, 0.005681389477103949, -0.008520204573869705, -0.022680437192320824, -0.0006627034745179117, 0.0021150109823793173, -0.000147698272485286, 0.04241302236914635, 0.0051775467582046986, -0.029704155400395393, 0.011791421100497246, -0.0026263736654073, 0.016168083995580673, 0.0225601177662611, -0.00561746908351779, 0.006685314700007439, 0.021823152899742126, -0.01197190210223198, -0.0005832730093970895, 0.0010885256342589855, 0.013317989185452461, 0.010144532658159733, -0.013460869900882244, -0.0250417310744524, 0.0007698640110902488, 0.01842409558594227, 0.010294933803379536, -0.020875629037618637, 0.0037938598543405533], "8d40faef-053e-4772-aa32-67f33f070223": [-0.047267887741327286, 0.00040093972347676754, -0.01970251277089119, 0.027716582641005516, -0.020065413787961006, -0.02434462495148182, 0.011348224245011806, 0.035322386771440506, -0.01767631433904171, 0.011612839996814728, 0.007246684283018112, 0.028018999844789505, -0.035564322024583817, -0.01009319070726633, -0.013654159381985664, 0.02251499705016613, -0.03120950609445572, 0.004834902938455343, 0.01614910550415516, -0.027625856921076775, 0.051773909479379654, -0.0013410334940999746, -0.024919219315052032, -0.0007962090894579887, -0.028079483658075333, -0.013480269350111485, -0.002273803111165762, -0.0014317587483674288, -0.020745854824781418, 0.0016519566997885704, 0.026280097663402557, 0.01584668830037117, 0.004067518282681704, 0.01512844581156969, -0.0006771321059204638, -0.05283237248659134, 0.013994378969073296, 0.014674819074571133, 0.011816971935331821, -0.02587183378636837, -0.038134872913360596, 0.04868924990296364, -0.012096707709133625, 0.009170816279947758, -0.00925398152321577, -0.014901632443070412, 0.025992801412940025, 0.013072005473077297, -0.025750868022441864, -0.013442466966807842, 0.02859359420835972, -0.005549364723265171, -0.032358694821596146, -0.014584093354642391, -0.0004718188720289618, -0.061844419687986374, 0.033507879823446274, 0.1079026386141777, 0.007099255453795195, -0.04557434841990471, -0.0010735827963799238, -0.03910261020064354, -0.012081586755812168, -0.020065413787961006, -0.02133556827902794, -0.002871077973395586, -0.008036750368773937, 0.016678337007761, -0.01044097077101469, 0.04844731464982033, 0.008482816629111767, 0.03740907087922096, -0.028260933235287666, 0.01177916955202818, -0.009586640633642673, 0.023271042853593826, 0.02380027249455452, -0.02399684488773346, 0.014311918057501316, 0.009064970538020134, 0.004366155713796616, 0.02166822738945484, 0.04200581833720207, 0.009458113461732864, 0.0632053017616272, 0.01767631433904171, -0.03323570638895035, -0.056612592190504074, -0.051773909479379654, -0.03130023181438446, 0.03036273643374443, 0.03659254312515259, 0.0035836496390402317, -0.0013202422996982932, 0.024994822219014168, 0.01772167719900608, 0.029198428615927696, 0.010796312242746353, 0.013775126077234745, -0.02903209999203682, -0.014894071966409683, 0.05543316528201103, -0.012527653016149998, 0.006192002445459366, -0.0021906381007283926, -0.009692487306892872, -0.03411271795630455, 0.0162398312240839, -0.017888007685542107, 0.0020148579496890306, 0.021562382578849792, -0.03870946541428566, -0.02611376903951168, 0.0010187695734202862, 0.020760975778102875, 7.377337897196412e-05, -0.020866820588707924, -0.0014449895825237036, -0.007394112646579742, -0.03728810325264931, 0.03598770499229431, 0.013192972168326378, -0.01252009253948927, -0.009556399658322334, -0.024253899231553078, 0.0097529711201787, 0.006381013430655003, 0.013389543630182743, 0.032963529229164124, 0.011665762402117252, -0.034929245710372925, -0.015090643428266048, 0.0039616720750927925, 0.021259963512420654, -0.005069276783615351, -0.015249412506818771, 0.02868431806564331, 0.05086665600538254, -0.019521063193678856, 0.04977795481681824, -0.027837548404932022, -0.02562990039587021, 0.009465673938393593, 0.01066778413951397, -0.011325542815029621, -0.024858735501766205, -0.02848774753510952, 0.04224775359034538, 0.029364759102463722, 0.0295310877263546, -0.019384974613785744, -0.04630015045404434, 0.01614910550415516, -0.01352563127875328, 0.0034456716384738684, -0.036411091685295105, 0.015400621108710766, 0.023392008617520332, 0.03244942054152489, 0.025992801412940025, 0.003693276084959507, -0.017404139041900635, -0.004381276201456785, 0.019022073596715927, 0.011181894689798355, 0.02755025215446949, 0.03148168325424194, 0.021018030121922493, -0.02532748319208622, 0.021637985482811928, 0.04397153481841087, -0.027837548404932022, 0.0023078250233083963, 0.006774156354367733, -0.013729763217270374, 0.010456091724336147, 0.044606611132621765, 0.046874742954969406, 0.002336176810786128, -0.026038164272904396, -0.011363345198333263, 0.01385073084384203, -0.01752510480582714, -0.00938250869512558, -0.005594727583229542, 0.031239748001098633, 0.01959666609764099, 0.03365908935666084, -0.013298817910254002, -0.023195438086986542, -0.0055229030549526215, 0.017116840928792953, -0.026385944336652756, 0.026824450120329857, -0.03423368185758591, -0.006294068414717913, 0.012323521077632904, 0.01453873049467802, 0.012489850632846355, 0.00738277193158865, -0.03311473876237869, -0.02785266935825348, -0.015385500155389309, 0.0324796624481678, -0.04339693859219551, 0.04587676376104355, 0.000890714640263468, 0.004487122409045696, 0.010698026046156883, -0.00036644519423134625, 0.04282234609127045, -0.01493943389505148, -0.003980572801083326, 0.014107786118984222, -0.011000444181263447, 9.503712499281392e-05, -0.0138960937038064, 0.016995875164866447, -0.004547606222331524, -0.02656739577651024, 0.006335651036351919, 0.028941374272108078, 0.006910244468599558, -0.0038652762304991484, -0.05721743032336235, -0.0475098192691803, -0.005141100846230984, 0.023528097197413445, -0.03244942054152489, 0.013109806925058365, 0.015423302538692951, -0.022998865693807602, -0.0006034178077243268, -0.033296190202236176, -0.014531170018017292, 0.02497970126569271, 0.0021018029656261206, -0.019717633724212646, 0.029304275289177895, 0.010501454584300518, 0.011801850982010365, 0.016330555081367493, 0.029243791475892067, 0.02018638141453266, 0.022877898067235947, 0.009798333048820496, 0.00560228805989027, 0.03459658473730087, -0.011643080972135067, -0.01595253311097622, 0.016028137877583504, 0.011128971353173256, 0.036653026938438416, -0.01436484046280384, -0.04672353342175484, 0.025297241285443306, 0.03441513329744339, -0.008679388090968132, -0.00021216491586528718, -0.02977302297949791, 0.01044097077101469, 0.0030468583572655916, -0.01379780750721693, 0.027383923530578613, 0.027777066454291344, -0.004230067599564791, 0.030302252620458603, -0.042187269777059555, -0.007133277598768473, 0.021698469296097755, -0.04388080909848213, 0.02700589969754219, 0.022000888362526894, 0.03323570638895035, 0.007443255744874477, -0.008535739965736866, -0.011076048016548157, 0.002782242838293314, -0.009866377338767052, -0.01911279931664467, 0.0005481320549733937, 0.03311473876237869, 0.019082557410001755, 0.005314990878105164, 0.016965633258223534, -0.003973012324422598, -0.017101721838116646, -0.0390118844807148, -0.02824581228196621, 0.002079121768474579, 0.00425652926787734, 0.008618904277682304, 0.022741811349987984, 0.002443913137540221, -0.006577584892511368, -0.012716664001345634, 0.00418470473960042, -0.025055306032299995, 0.0070425523445010185, 0.03169337660074234, -0.024556316435337067, -0.006951827090233564, -0.004657232668250799, -0.04675377532839775, 0.03692520037293434, -0.030574429780244827, 0.0379231795668602, -0.010199037380516529, -0.027565373107790947, 0.01802409440279007, 0.009790772572159767, -0.013843170367181301, -0.02122972160577774, -0.017600709572434425, -0.02690005488693714, 0.020277107134461403, -0.00842233281582594, 0.03541311249136925, -0.000957341049797833, -0.034778036177158356, 0.021789195016026497, 1.136281389335636e-05, -0.0782657042145729, 0.05860855057835579, 0.04176388308405876, -0.044848546385765076, 0.028548231348395348, -0.015143566764891148, -0.01268642209470272, -0.022394031286239624, -0.008671827614307404, -0.007171079516410828, -0.042429205030202866, 0.027731703594326973, 0.006052134092897177, -0.016179347410798073, -0.04215702787041664, -0.03943526744842529, -0.01604325883090496, -0.03798366338014603, -0.0026858472265303135, 0.00425652926787734, -0.028896011412143707, 0.009397629648447037, 0.03459658473730087, 0.006335651036351919, -0.03762076050043106, 0.002046989742666483, -0.0057988595217466354, 0.0189615897834301, 0.0008600003202445805, -0.004320792853832245, 0.03423368185758591, 0.009178376756608486, 0.007329849060624838, 0.002992045134305954, 0.013366862200200558, 0.0038236938416957855, 0.01167332287877798, -0.01698075421154499, -0.029893988743424416, 0.0024930560030043125, -0.02166822738945484, 0.019022073596715927, 0.01698075421154499, 0.02671860344707966, 0.013820488937199116, -0.021002909168601036, -0.020897062495350838, -0.02227306365966797, -0.023134954273700714, 0.02838190086185932, 0.017736798152327538, 0.014319478534162045, -0.040070343762636185, -0.0184172373265028, 0.03341715410351753, -0.011401147581636906, -0.02829117514193058, 0.03214700147509575, -0.013480269350111485, 0.01717732474207878, 0.00625626603141427, 0.005923606920987368, 0.051622699946165085, 0.01167332287877798, -0.012482290156185627, -0.004109100438654423, -0.01428923662751913, 0.0017096051014959812, -0.03886067494750023, -0.015355258248746395, -0.010463652200996876, -0.026325460523366928, -0.027066383510828018, 0.023331524804234505, -0.007178639993071556, -0.014440445229411125, 0.014848709106445312, -0.02567526325583458, 0.021108755841851234, 0.02221257984638214, -0.015619874000549316, -0.013192972168326378, 0.007337409537285566, -0.006932925898581743, -0.008724750950932503, -0.005496441852301359, 0.022575480863451958, 0.01881038025021553, -0.013775126077234745, 0.0022851438261568546, 0.023331524804234505, 0.003634682623669505, 0.02818533033132553, -0.007885541766881943, -0.005175122991204262, 0.018644051626324654, -0.03544335439801216, -0.03145144134759903, 0.07052380591630936, 0.05153197422623634, -0.006052134092897177, 0.024495834484696388, -0.007012310437858105, 0.01081143319606781, -0.02423877827823162, 0.030483704060316086, -0.008210640400648117, -0.01599789597094059, -0.042489685118198395, 0.03293328732252121, -0.019082557410001755, -0.030771000310778618, 0.039919137954711914, -0.005693013314157724, 0.016164226457476616, 0.007870420813560486, 0.012860313057899475, -0.027671219781041145, 0.0008874069317243993, 0.04134050011634827, 0.03208651766180992, 0.0009554509306326509, -0.042277995496988297, -0.036804232746362686, -0.040856629610061646, -0.012830071151256561, 0.024526074528694153, 0.00436993595212698, 0.027323439717292786, 0.02384563535451889, -0.05234850198030472, 0.010554377920925617, 0.007915783673524857, 0.005919826682657003, 0.03529214486479759, 0.03456634283065796, 0.0027501110453158617, -0.036653026938438416, -0.025841591879725456, 0.02094242535531521, 0.030045198276638985, 0.01468994002789259, 0.007613365538418293, -0.04040300473570824, 0.012875434011220932, 0.010569498874247074, -0.0012474730610847473, 0.033840540796518326, -0.02414805255830288, 0.011045806109905243, 0.016874907538294792, 0.037197377532720566, -0.005651430692523718, -0.016164226457476616, -0.006490639876574278, -0.0013712752843275666, -0.00385771575383842, 0.008898640982806683, -0.009836135432124138, -0.006120178382843733, -0.0007376156863756478, 0.004506023600697517, 0.03432440757751465, -0.0029240010771900415, -0.015090643428266048, -0.012799829244613647, 0.06399158388376236, 0.00815015658736229, 0.044364675879478455, -0.0057988595217466354, -0.007084134500473738, -0.008838157169520855, -0.02537284418940544, -0.016995875164866447, 0.0059273866936564445, -0.035624805837869644, -0.013994378969073296, -0.04654208570718765, 0.03353812173008919, 0.012754466384649277, 0.009337146766483784, 0.006052134092897177, -0.019566426053643227, 0.0002438242663629353, -0.03241917863488197, 0.03396150842308998, -0.0053641339763998985, -0.022333547472953796, -0.04478806257247925, 0.01767631433904171, -0.01767631433904171, -0.02375490963459015, 0.008603783324360847, 0.025448448956012726, 0.007757014129310846, -0.00254786922596395, -0.014054862782359123, 0.0009904180187731981, -0.007292046677321196, -0.015786204487085342, 0.010062948800623417, -0.01093996036797762, -0.024904098361730576, -0.0029712538234889507, -0.016073500737547874, -0.016481764614582062, 0.04711667820811272, -0.04487878829240799, -0.00538303516805172, 0.006377233192324638, -0.010924839414656162, 0.01619446836411953, 0.025796229019761086, 0.023089591413736343, -0.014576532877981663, 0.005322551354765892, 0.020579524338245392, 0.008006508462131023, -0.0027179790195077658, 0.016814423725008965, -0.009337146766483784, -0.007481057662516832, -0.035624805837869644, 0.05367914214730263, 0.01352563127875328, 0.002379649318754673, 0.012550334446132183, 0.03293328732252121, -0.0070425523445010185, -0.014946994371712208, 0.0012786597944796085, 0.009889058768749237, 0.022484755143523216, -0.015151126310229301, 0.036017946898937225, -0.03012080304324627, -0.019188402220606804, -0.0014912972692400217, -0.02181943692266941, 0.029092581942677498, 0.009012047201395035, 0.037439312785863876, -0.0018324622651562095, -0.007371431216597557, -0.02528212033212185, -0.0060256728902459145, -0.0313909575343132, 0.022635964676737785, 0.03462682664394379, -0.011650641448795795, 0.026869812980294228, -0.010992883704602718, 0.005526683293282986, 0.02301398664712906, 0.011340663768351078, 0.00560228805989027, -0.01920352317392826, -0.01256545539945364, 0.007314728107303381, -0.022136975079774857, 0.008883520029485226, 0.0023739789612591267, 0.014311918057501316, 0.03943526744842529, -0.02271156944334507, -0.04763078689575195, -0.012928356416523457, 0.007046332582831383, -0.022545238956809044, 0.01920352317392826, -0.01446312665939331, -0.005405716598033905, -0.007545321714133024, 0.009941982105374336, -0.010010025463998318, 0.03816511482000351, 0.03311473876237869, -0.019642028957605362, 0.026824450120329857, -0.0022511216811835766, 0.0034626827109605074, -0.023528097197413445, -0.029243791475892067, 0.0470864363014698, 0.005390595644712448, 0.02705126255750656, -0.0004136979696340859, 0.026340581476688385, 0.005515342578291893, -0.013442466966807842, 0.030135923996567726, -0.002109363442286849, 0.02922867052257061, 0.019929327070713043, 0.01663297414779663, 0.041945334523916245, 0.018719656392931938, 0.011393587104976177, 0.016315434128046036, -0.011627960950136185, 0.057005736976861954, -0.03263086825609207, 0.016421280801296234, -0.010546817444264889, -0.017404139041900635, 0.022681327536702156, -0.008921322412788868, 0.006486859638243914, 0.00373485847376287, -0.004472001921385527, 0.01177916955202818, -0.03489900380373001, -0.0003239177167415619, 0.005613628774881363, -0.005424617324024439, 0.03178409859538078, -0.02615913189947605, -0.009231300093233585, 0.0006369673064909875, -0.005337672308087349, -0.017056358978152275, 0.04844731464982033, -0.017646072432398796, -0.0002570550423115492, -0.0357457734644413, 0.0013854510616511106, 0.0226662065833807, 0.010040267370641232, -0.013109806925058365, 0.012300839647650719, 0.012187433429062366, 0.02092730440199375, 0.00081605528248474, -0.02513091079890728, -0.008974244818091393, 0.005288529675453901, 0.024526074528694153, 0.003543957369402051, -0.0005041870172135532, 0.0008212530519813299, 0.02290813997387886, 0.015355258248746395, -0.0024722646921873093, -0.0005533298826776445, 0.02705126255750656, -0.005583386868238449, 0.025206515565514565, 0.012331081554293633, 0.04345742240548134, 0.005035254638642073, 0.025100668892264366, 0.011590158566832542, -0.008135036565363407, 0.013593675568699837, -0.001707714982330799, 0.002678286749869585, 0.017192445695400238, -0.0076549481600522995, -0.02650691196322441, -0.03217724338173866, -0.04995940253138542, 0.0033889682963490486, 0.015665236860513687, -0.01979323849081993, -0.008770112879574299, 0.03870946541428566, -0.011469190940260887, 0.0008836266933940351, 0.010251959785819054, 0.009450552985072136, -0.026975659653544426, 0.024374866858124733, 0.01599789597094059, 0.0028540671337395906, 0.0036157816648483276, 0.022182337939739227, 0.00851305853575468, -0.008490377105772495, -0.01207402627915144, -0.01673881895840168, -0.002234110841527581, -0.016769060865044594, -0.005507782567292452, 0.0013958467170596123, -0.021804315969347954, -0.014478247612714767, 0.0057497164234519005, 0.017993852496147156, -0.00023543690622318536, 0.000567978248000145, 0.01234620250761509, 0.002591341733932495, 0.0007749453652650118, 0.0023834295570850372, 0.01515868678689003, 0.038588497787714005, 0.008679388090968132, 0.01673881895840168, 0.028896011412143707, 0.0494755357503891, -0.01168088335543871, -0.0316026508808136, -0.04793320596218109, 0.024102691560983658, -8.848080324241892e-05, 0.0035723091568797827, 0.007333629298955202, 0.006747695151716471, 0.03568528965115547, -0.006596486084163189, -0.012527653016149998, 0.012678861618041992, 0.00846769567579031, 0.003156484803184867, -0.027837548404932022, 0.014485808089375496, 0.031663134694099426, 0.0016708577750250697, 0.004139342345297337, -0.024329503998160362, 0.034082476049661636, -0.01330637838691473, 0.0021188140381127596, 0.0065019805915653706, 0.01806945726275444, -0.006819519214332104, -0.012973719276487827, 0.00771543150767684, 0.001288110390305519, -0.01728317141532898, 0.05525171384215355, 0.010357806459069252, 0.002978814300149679, -0.005500222090631723, 0.025266999378800392, 0.0046458919532597065, -0.014395082369446754, 0.053044065833091736, -0.027187351137399673, 0.012194993905723095, 0.00518268346786499, -0.030453462153673172, 0.030695397406816483, 0.022545238956809044, -0.0052582877688109875, 0.004252749029546976, 0.02260572277009487, -0.010962641797959805, 0.03278207778930664, 0.02112387679517269, 0.00015569786773994565, 0.03498972952365875, -0.0024325724225491285, -0.007930904626846313, 0.02962181344628334, 0.006278947461396456, -0.01876501739025116, 0.00568923307582736, -0.014342159032821655, -0.03417320176959038, 0.013412225060164928, -0.02617425099015236, 0.0030714296735823154, -0.039223574101924896, 0.025115789845585823, 0.03136071562767029, 0.009541278705000877, 0.025690384209156036, 0.0152040496468544, -0.008898640982806683, -0.03940502554178238, 0.007197541184723377, -0.01822066679596901, -0.01375244464725256, 0.011658201925456524, -0.021547261625528336, 0.01177916955202818, 0.018084578216075897, 0.0065171015448868275, -0.02656739577651024, 0.053255755454301834, 0.038739707320928574, -0.019415216520428658, 0.0012361323460936546, 0.017222687602043152, 0.005772397853434086, -0.014916753396391869, -0.022031130269169807, -0.01053925696760416, -0.016617853194475174, 0.001541385194286704, 0.0006303518894128501, -0.03604818880558014, -0.03435464948415756, 0.010478773154318333, -0.014432884752750397, 0.02458655834197998, 0.01732853427529335, -0.01634567603468895, 0.011869894340634346, 0.031179264187812805, -0.008286245167255402, 0.026990780606865883, -0.03559456393122673, -0.01301152165979147, -0.004373716190457344, 0.008452574722468853, -0.01574084162712097, -0.014742862433195114, -0.040312279015779495, -0.00019302754662930965, 0.027489768341183662, 0.0060974969528615475, 0.006403694860637188, -0.01634567603468895, 0.009170816279947758, -0.014470687136054039, 0.027278076857328415, -0.02240915223956108, -0.028502868488430977, -0.02389099821448326, 0.01318541169166565, -0.005640089977532625, -0.0021660667844116688, 0.021562382578849792, 0.003980572801083326, 0.035322386771440506, 0.0019959567580372095, 0.006929145660251379, -0.014531170018017292, 0.011559916660189629, -0.03607843071222305, -0.017116840928792953, -0.0026442648377269506, -0.024405108764767647, -0.0073789916932582855, -0.018402116373181343, 0.00842233281582594, -0.021456535905599594, 0.009004486724734306, 0.0016065940726548433, -0.002542198868468404, -0.006040793377906084, -0.03027201257646084, -0.013389543630182743, -0.017615830525755882, -0.01036536693572998, -0.0007187145529314876, 0.011008004657924175, -0.0035250564105808735, 0.033991750329732895, 0.003099781461060047, -0.017071479931473732, 0.00023118415265344083, -0.019490821287035942, 0.013608796522021294, -0.020897062495350838, -0.009269102476537228, -0.008603783324360847, 0.029047220945358276, -0.003262331010773778, 0.009027168154716492, -0.06526173651218414, -0.00463077099993825, 0.014871390536427498, -0.00846769567579031, 0.005061716306954622, -0.004388836678117514, 0.000958286109380424, -0.009707608260214329, -0.008006508462131023, -0.032509904354810715, 0.008172838017344475, -0.009367388673126698, 0.01643640175461769, -0.008505498059093952, -0.013812928460538387, -0.037802211940288544, 0.0032982430420815945, -0.042338479310274124, -0.025418207049369812, 0.024571437388658524, 0.01560475304722786, -0.024994822219014168, 0.01787288673222065, 0.014122906140983105, 0.00718242023140192, 0.01406998373568058, 0.02092730440199375, 0.033054254949092865, 0.0022624623961746693, -0.032509904354810715, 0.03120950609445572, 0.0388001911342144, -0.001885385368950665, -0.0020980227272957563, -0.011529674753546715, 0.0019373634131625295, 0.0006043628673069179, -0.003247210057452321, 0.0240875706076622, 0.01924888603389263, -0.013707081787288189, -0.0015914731193333864, -0.010758509859442711, -0.029742781072854996, 0.002349407412111759, 0.019490821287035942, -0.007511299569159746, 0.007224002853035927, 0.03432440757751465, 0.003623342141509056, 0.015559390187263489, -0.02818533033132553, -0.006842200644314289, -0.01876501739025116, -0.025463569909334183, -0.013646598905324936, 0.0010679125552996993, 0.0021358251105993986, 0.011801850982010365, -0.009019607678055763, 0.02192528359591961, -0.04605821520090103, -0.027293197810649872, 0.00864158570766449, 0.03148168325424194, 0.02092730440199375, -0.006184441968798637, 0.03317522257566452, -0.0017596930265426636, 5.2598235924961045e-05, 0.02750488929450512, 0.008996926248073578, 0.0005074947257526219, 0.019823480397462845, 0.04309452325105667, -0.020897062495350838, -0.009238860569894314, -0.015166247263550758, -0.013722202740609646, 0.009042289108037949, -0.014720181934535503, -0.006373452953994274, -0.029092581942677498, 0.0006166485836729407, -0.005122199654579163, -0.009919300675392151, 0.0007040661876089871, -0.022136975079774857, 0.004301891662180424, 0.026053285226225853, 0.005897145252674818, -0.012762026861310005, -0.009458113461732864, -0.0036781553644686937, -0.01026708073914051, -0.00496343057602644, -0.012527653016149998, 0.0194000955671072, 0.014402642846107483, 0.01246716920286417, 0.010259520262479782, -0.022182337939739227, -0.002513847080990672, 0.0013107917038723826, -0.004502243362367153, 0.012633499689400196, 0.02414805255830288, -0.034294165670871735, -0.005205364432185888, -0.033144980669021606, -0.008830596692860126, -0.021244842559099197, -0.025009943172335625, -0.029652055352926254, 0.001602813834324479, -0.006706112530082464, 0.002906990237534046, 0.015340138226747513, -0.034294165670871735, 0.008218200877308846, 0.020549282431602478, 0.012134510092437267, 0.0036781553644686937, -0.008709629997611046, -0.010108311660587788, 0.030483704060316086, 0.0002589451614767313, -0.0010905938688665628, 0.016920270398259163, -0.0188557431101799, 0.00434347428381443, 0.005129760131239891, -0.0030581990722566843, -0.04291307181119919, -0.009987344965338707, 0.03559456393122673, 0.006464178208261728, -0.017147082835435867, -0.022031130269169807, -0.045695316046476364, -0.006286507938057184, 0.0033851880580186844, -0.014395082369446754, -0.0011709235841408372, 0.047267887741327286, 0.025735747069120407, -0.012187433429062366, -0.012905674986541271, 0.020367832854390144, 0.0083391685038805, -0.00807455275207758, -0.015861809253692627, -0.0002830440644174814, -0.07554394006729126, -0.00987393781542778, -0.03046858310699463, 0.03365908935666084, -0.0034059793688356876, 0.005791299045085907, 0.014795785769820213, 0.0026877373456954956, -0.0083391685038805, 0.012890554033219814, 0.016073500737547874, -0.01634567603468895, 0.02024686522781849, -0.0034607925917953253, -0.016648095101118088, 0.007023651152849197, -0.012709103524684906, -0.008301366120576859, 0.0007220222614705563, -0.010403169319033623, -0.02295350283384323, 0.018991831690073013, 0.015461104921996593, -0.011990861967206001, 0.005674112122505903, 0.009783213026821613, -0.006592705845832825, 0.00493696890771389, -0.010070509277284145, -0.04636063426733017, 0.03145144134759903, 0.006577584892511368, -0.009548839181661606, -0.021305326372385025, 0.018523083999753, 0.027126867324113846, 0.010773630812764168, 0.0004380331374704838, -0.01802409440279007, -0.01552914921194315, 0.0152569729834795, 0.0023531876504421234, -0.007946024648845196, 0.005515342578291893, 0.007488618139177561, -0.019339611753821373, 0.0014582203002646565, -0.020503919571638107, -0.03193530812859535, 0.0036838254891335964, 0.01283763162791729, 0.015498907305300236, 0.009465673938393593, -0.02197064645588398, 0.019823480397462845, 0.004286770708858967, 0.008649146184325218, -0.010244399309158325, -0.010599740780889988, -0.0042754304595291615, 0.06368916481733322, 0.036169156432151794, 0.011756488122045994, 0.0054510789923369884, -0.024405108764767647, -0.010796312242746353, 0.017842644825577736, 0.026537153869867325, 0.026280097663402557, 0.018885985016822815, -0.005991650745272636, -0.017464622855186462, 0.02044343575835228, 0.03151192516088486, 0.0024155613500624895, 0.007484837900847197, 0.02122972160577774, 0.029561329632997513, -0.001569736865349114, -0.01776704005897045, -0.028170209378004074, 0.008316487073898315, 0.01419095043092966, -0.009095212444663048, -0.029757902026176453, -0.030090561136603355, -0.002975034061819315, -0.026249855756759644, 0.005349013023078442, 0.003349276026710868, 0.029047220945358276, 0.0005816815537400544, 0.038134872913360596, -0.0034173200838267803, -0.015279654413461685, 0.01168088335543871, -0.005734595470130444, 0.004150683060288429, -0.005341452546417713, 0.0023059349041432142, -0.018039215356111526, -0.007545321714133024, -0.01323077455163002, -0.01177916955202818, -0.007254244759678841, -0.0027425505686551332, 0.012142070569097996, 0.035564322024583817, -0.00876255240291357, -0.011975741013884544, -0.01093239989131689, 0.018084578216075897, -0.028215572237968445, 0.017857765778899193, -0.01061486080288887, 0.007027431391179562, -0.017192445695400238, -0.022787174209952354, -0.020398074761033058, -0.0011340663768351078, 0.0034040892496705055, 0.02578110806643963, -0.00317160552367568, -0.018749898299574852, -0.024359745904803276, 0.011522114276885986, -0.026930296793580055, -7.891211862443015e-05, -0.024072449654340744, 0.011144092306494713, 0.004831122700124979, -0.010728267952799797, -0.0014421544037759304, 0.0012777147348970175, -0.00538303516805172, 0.004615650046616793, 0.028805285692214966, -0.0033114738762378693, 0.04379008337855339, -0.05026182159781456, 0.00851305853575468, -0.005995430983603001, 0.0032963529229164124, 0.013109806925058365, -0.028472626581788063, -0.01584668830037117, -0.00987393781542778, -0.010327564552426338, 0.009548839181661606, -0.018840622156858444, 0.014599214307963848, -0.012263037264347076, 0.023195438086986542, 0.0007895937305875123, -0.02166822738945484, -0.005114639177918434, -0.014372400939464569, -0.0064301565289497375, 0.003266111249104142, -0.02591719664633274, -0.01693539135158062, 0.002228440484032035, 0.011696004308760166, -0.022439394146203995, -0.009042289108037949, -0.022530118003487587, -0.0034778034314513206, -0.005549364723265171, 0.0028767483308911324, -0.0134046645835042, 0.011053366586565971, 0.0045400457456707954, -0.016572490334510803, -0.013472708873450756, 0.016723698005080223, -0.021154118701815605, -0.008573541417717934, -0.018885985016822815, 0.03396150842308998, 0.005772397853434086, -0.006040793377906084, 0.012867873534560204, 0.004547606222331524, 0.021396052092313766, -0.0012521982425823808, 0.015173807740211487, -0.01920352317392826, 0.013480269350111485, -0.015120885334908962, -0.0008396816556341946, 0.02428414113819599, 0.01552914921194315, -0.006418815813958645, 0.007885541766881943, 0.012709103524684906, -3.8422404031734914e-05, 0.02857847325503826, 0.018099699169397354, -0.006505760829895735, -0.005194024182856083, -0.027777066454291344, 0.019233765080571175, 0.000530648569110781, -0.004668573383241892, -0.0031678255181759596, 0.012716664001345634, -0.057398878037929535, 0.013593675568699837, 0.027338560670614243, -0.007046332582831383, 0.006127738859504461, -0.003991913516074419, 0.021290205419063568, -0.02236378937959671, 0.0005391540471464396, -0.0268093291670084, -0.003487254027277231, -0.029742781072854996, -0.0034211003221571445, -0.020125897601246834, 0.03474779427051544, -0.015415742062032223, 0.00960176158696413, 0.014705060981214046, 0.01402462087571621, -0.009397629648447037, -0.006184441968798637, -0.03214700147509575, -0.02404220774769783, 0.009019607678055763, -0.011181894689798355, 0.018644051626324654, 0.0027614515274763107, -0.007571783382445574, -0.009805893525481224, -0.013064444996416569, 0.03895140066742897, 0.0023758690804243088, 0.03347763791680336, 0.011287740431725979, -0.02813996747136116, -0.015105764381587505, 0.015559390187263489, -0.0016944841481745243, 0.015665236860513687, -0.006838420405983925, -0.017842644825577736, -0.013480269350111485, 0.00802162941545248, 0.015922291204333305, -0.000627516710665077, -0.02913794480264187, -0.004816001746803522, 0.01678418181836605, 0.023134954273700714, 0.009798333048820496, -0.011854773387312889, -0.03423368185758591, -0.0031905067153275013, -0.005432177800685167, -0.0038388145621865988, 0.005806419998407364, 0.00815015658736229, -0.028321417048573494, 0.028351658955216408, -0.01081143319606781, 0.0014449895825237036, 0.03471755236387253, -0.013245895504951477, -0.01010075118392706, 0.011854773387312889, -0.0034059793688356876, -0.021698469296097755, -0.002126374514773488, 0.019279127940535545, 0.01014611404389143, 0.02517627365887165, -0.015876928344368935, -0.013140048831701279, -0.006736354436725378, 0.0037669904995709658, -0.028034120798110962, 0.008407211862504482, 0.010010025463998318, 0.006452837493270636, 0.01737389713525772, -0.0014251434477046132, -0.01530233584344387, 0.024616800248622894, -0.016799302771687508, -0.007930904626846313, 0.0022983744274824858, 0.00583666143938899, 0.002154726069420576, 0.02301398664712906, 0.018901105970144272, -0.01022171787917614, 0.0010244399309158325, 0.016905149444937706, -0.0028805285692214966, 0.011023125611245632, -0.0018315172055736184, 0.007435695268213749, 0.009541278705000877, -0.007016090676188469, -0.00033903858275152743, -0.005288529675453901, 0.01787288673222065, -0.0028956495225429535, 0.005515342578291893, 0.0026707262732088566, 0.023528097197413445, -0.026295218616724014, -0.017661193385720253, -0.007329849060624838, 0.027141988277435303, 0.015067961998283863, 0.019672270864248276, -0.009412750601768494, -0.035866737365722656, -0.012633499689400196, -0.018825501203536987, 0.006093716714531183, -0.006335651036351919, -0.014160708524286747, 0.018084578216075897, -0.006668310146778822, -0.017948489636182785, 0.013691961765289307, -0.023921240121126175, -0.03287280350923538, 0.0485985241830349, -0.021199481561779976, -0.02216721698641777, -0.0026064624544233084, 0.005700573790818453, -0.004165804013609886, -0.017162203788757324, 0.01199842244386673, -0.010350245982408524, 0.01702611707150936, 0.03365908935666084, -0.003218858502805233, -0.004207386169582605, 0.02631033957004547, 0.015710599720478058, 0.0034626827109605074, 0.024253899231553078, 0.03565504774451256, -0.005511562805622816, 0.016466643661260605, 0.005980310030281544, -0.00938250869512558, 0.0037046167999505997, 0.006441496778279543, 0.019143041223287582, -0.010115872137248516, 0.012270597741007805, -0.010629981756210327, -0.005156221799552441, -0.01512844581156969, -0.022106733173131943, -0.0033908584155142307, 0.014395082369446754, -0.014357279986143112, -0.004933188669383526, 0.03864898160099983, -0.011348224245011806, 0.023074470460414886, -0.01985372230410576, 0.011635521426796913, 0.009813454002141953, 0.004230067599564791, -0.0226662065833807, -0.03238893672823906, -0.015340138226747513, 0.001540440134704113, -0.004487122409045696, 0.003579869633540511, 0.0017237808788195252, 0.007481057662516832, 0.027021020650863647, -0.045634832233190536, -0.030771000310778618, -0.024904098361730576, 0.030891967937350273, -0.00014754675794392824, -0.001318352180533111, -0.022998865693807602, -0.02859359420835972, -0.005311210639774799, -0.007144618313759565, -0.003010946325957775, -0.0001339615846518427, 0.015982775017619133, -0.0005320661584846675, -0.010380487889051437, 0.005640089977532625, -0.04306428134441376, -0.009193497709929943, -0.015461104921996593, 0.0011614729883149266, -0.010660223662853241, 0.026325460523366928, -0.015415742062032223, 0.013041763566434383, 0.013329059816896915, 0.004513584077358246, 0.002810594392940402, -0.017162203788757324, -0.005768617615103722, -0.011582598090171814, 0.02892625331878662, -0.023921240121126175, -0.004747957922518253, -0.016648095101118088, -0.00011996295506833121, 0.029092581942677498, 0.003708397038280964, 0.006811958737671375, -0.0067817168310284615, -0.008596222847700119, 0.027066383510828018, -0.005526683293282986, -0.00055380241246894, -0.007893102243542671, -0.023044228553771973, -0.009556399658322334, 0.005832881201058626, -0.012202554382383823, 0.0074999588541686535, 0.012421807274222374, 0.009722729213535786, 0.004978551529347897, 0.025614779442548752, -0.0036573640536516905, 0.007624706253409386, -0.008565980941057205, -0.018780138343572617, -0.013117367401719093, -0.05113883316516876, -0.018538204953074455, 0.01266374159604311, 0.0022492315620183945, 0.021456535905599594, -0.01419851090759039, 0.021002909168601036, -0.010153674520552158, 0.02903209999203682, 0.0024798251688480377, 0.012202554382383823, -0.026582514867186546, 0.022545238956809044, -0.015498907305300236, 0.009049849584698677, -0.0025856713764369488, 0.00868694856762886, 0.011446509510278702, -0.013555873185396194, 0.01989908516407013, 0.025161152705550194, 0.006101277191191912, 0.0007409233367070556, 0.0025043964851647615, -0.02018638141453266, 0.007125717122107744, 0.020020050927996635, -0.0007579343509860337, -0.008346728049218655, -0.007915783673524857, -0.004056177567690611, -0.031118780374526978, -0.030030077323317528, 0.01998980902135372, 0.014274115674197674, -0.004075078293681145, -0.004865144845098257, -0.0014780665514990687, -0.011703564785420895, -0.02848774753510952, 0.010622421279549599, -0.011076048016548157, 0.010463652200996876, 0.008754992857575417, 0.02903209999203682, 0.01145406998693943, 0.02493433840572834, 0.004861364606767893, 0.002319165738299489, 0.02522163651883602, 0.013064444996416569, 0.03432440757751465, 0.0021452754735946655, 0.001287165330722928, 0.014342159032821655, -0.02240915223956108, 0.003364396980032325, -0.013880972750484943, 0.02020150236785412, 0.01965714991092682, 0.00935226771980524, -0.010357806459069252, -0.024117810651659966, -0.004986112006008625, 0.0024363526608794928, 0.0049596503376960754, -0.012089147232472897, 0.034445375204086304, 0.022227700799703598, -0.00209235236980021, -0.0034437815193086863, 0.007571783382445574, 0.013049324043095112, 0.004377496428787708, -0.017903128638863564, -0.004948309622704983, 0.005197804421186447, 0.011650641448795795, -0.02419341541826725, -0.010259520262479782, 0.012013543397188187, -0.0007801431347616017, -0.01330637838691473, -0.012315960600972176, 0.0009568685200065374, 0.0076549481600522995, 0.008656706660985947, 0.0015763522824272513, 0.0041771442629396915, -0.006475518923252821, -0.004101539961993694, 0.022182337939739227, -0.009488355368375778, 0.014168269000947475, 0.0010206596925854683, 0.006490639876574278, -0.0037216278724372387, -0.006906464230269194, -0.01251253206282854, -0.007681409362703562, -0.005848002154380083, -0.002614022931084037, 0.0016774731921032071, 0.008157717064023018, -0.0054359580390155315, 0.08044310659170151, -0.008437453769147396, 0.01732853427529335, -0.005424617324024439, 0.005504002328962088, -0.026642998680472374, -0.004301891662180424, 0.013223214074969292, 0.017842644825577736, 0.0013325279578566551, 0.003353056265041232, 0.0020261986646801233, 0.008497937582433224, -0.00881547573953867, -0.023331524804234505, 0.01959666609764099, 0.024314383044838905, 0.006925365421921015, 0.01330637838691473, 0.019566426053643227, 0.000702176068443805, -0.003889847546815872, -0.003889847546815872, -0.02064000815153122, -0.01639103889465332, 0.037439312785863876, -0.01604325883090496, -0.010304883122444153, 0.022136975079774857, 0.023437371477484703, -0.019778117537498474, -0.01305688451975584, -0.00746971694752574, -0.002169847022742033, 0.009964663535356522, 0.018780138343572617, 0.011658201925456524, 0.017888007685542107, -0.00942787155508995, 0.0010490113636478782, 0.00745459645986557, -0.0004441759956534952, 0.01599789597094059, 0.01682954467833042, 0.00903472863137722, -0.014954554848372936, 0.0006478354334831238, 0.001077363034710288, -0.0032963529229164124, -0.010418289341032505, -0.014599214307963848, -0.010403169319033623, 0.001166198286227882, 0.010758509859442711, 0.005953848361968994, -0.011703564785420895, 0.002018638188019395, 0.0017407918348908424, 0.01133310329169035, -0.0015678467461839318, -0.01367684081196785, 0.009768092073500156, -0.008225761353969574, -0.0240875706076622, -0.01865917257964611, -0.008823036216199398, -0.005466199945658445, -0.0348687618970871, 0.0009970333194360137, -0.013555873185396194, -0.02789803221821785, 0.008868399076163769, -0.007344970013946295, -0.034384891390800476, 0.002661275677382946, 0.01728317141532898, 0.0005037144874222577, 0.009072531014680862, 0.01595253311097622, 0.015967654064297676, 0.0006865827017463744, 0.00218496797606349, -0.009798333048820496, -0.017888007685542107, 0.013820488937199116, 0.004449320491403341, 0.01044097077101469, -0.034929245710372925, 0.00019444513600319624, -0.01920352317392826, -0.022257942706346512, 0.004222507122904062, 0.014969675801694393, 0.010357806459069252, 0.024510955438017845, -0.00999490451067686, -0.0040334961377084255, 0.000688945350702852, 0.02092730440199375, 0.0035817595198750496, 0.008218200877308846, 0.02596255950629711, -0.016663216054439545, -0.0019487040117383003, -0.011862333863973618, -0.020428314805030823, 0.03746955469250679, 0.004615650046616793, -0.022968623787164688, 0.018432358279824257, 0.005488881375640631, -0.0019713854417204857, 0.013714642263948917, -0.00858866237103939, -0.02493433840572834, -0.006687211338430643, 0.017449501901865005, 0.004736617207527161, -0.02615913189947605, -0.004521144554018974, 0.0036762652453035116, 0.002423121826723218, 0.0037802213337272406, -0.014395082369446754, 0.003413539845496416, -0.015045280568301678, -0.027837548404932022, -0.007961145602166653, -0.015514028258621693, -0.010448531247675419, 0.007329849060624838, -0.0017171654617413878, 0.019022073596715927, 0.011310421861708164, 0.02764097787439823, -0.0036743751261383295, -0.014833588153123856, -0.020065413787961006, 0.025115789845585823, -0.004041056614369154, 0.018129941076040268, 0.005481320898979902, 0.00864158570766449, -0.008271124213933945, -0.00602189265191555, -0.004158243536949158, -0.005900925491005182, -0.012323521077632904, 0.002657495439052582, 0.008671827614307404, 0.04723764583468437, -0.04660256579518318, 0.005583386868238449, -0.029939351603388786, -0.015393060632050037, -0.022197458893060684, -0.030574429780244827, 0.03238893672823906, -0.002230330603197217, 0.00712193688377738, 0.008308926597237587, 0.005534243769943714, 0.0005122199654579163, -0.00842233281582594, 0.0023853196762502193, 0.00036833531339652836, 0.016375917941331863, 0.027777066454291344, 0.0065171015448868275, -0.00029934628400951624, -0.0079006627202034, -0.0008552750805392861, -0.0004989891895093024, -0.019037194550037384, 0.0014931873884052038, -0.021138997748494148, 0.008437453769147396, -0.00179560505785048, -0.006199562922120094, 0.011635521426796913, -0.005666551645845175, 0.00997222401201725, 0.0156954787671566, 0.0054851011373102665, -0.021834557875990868, -0.009216179139912128, 0.019143041223287582, -0.015007478184998035, 0.005069276783615351, 0.006063474807888269, -0.007545321714133024, 0.01362391747534275, 0.005541804246604443, -0.016013016924262047, -0.002483605407178402, 0.0022870339453220367, 0.01741925999522209, 0.017736798152327538, 0.003946551121771336, -0.007254244759678841, -0.010168795473873615, 0.009299344383180141, 0.01610374264419079, 0.01441776379942894, -0.028457505628466606, 0.007163519039750099, -0.012142070569097996, -0.01614910550415516, -0.0013741104630753398, 0.015544270165264606, -0.06628996133804321, -0.03716713562607765, 0.006634288467466831, -0.0007947915000841022, -0.017071479931473732, 0.008490377105772495, 0.004366155713796616, 0.013835609890520573, 0.008754992857575417, -0.0006005826289765537, 0.009904179722070694, 0.017600709572434425, 0.02785266935825348, 0.01182453241199255, -0.0016396709252148867, 0.0016859787283465266, 0.02493433840572834, 0.03371957316994667, 0.0316026508808136, 0.015264533460140228, 0.027535131201148033, -0.011559916660189629, -0.012414246797561646, 0.009677366353571415, -0.007019870914518833, 0.013072005473077297, 0.002869187854230404, -0.013964137062430382, 0.016118863597512245, -0.026476670056581497, -0.008392090909183025, -0.015143566764891148, 0.01330637838691473, -0.007220222614705563, 0.01974787563085556, -0.017192445695400238, -0.0134575879201293, 0.010818992741405964, -0.0033417155500501394, -2.3936479919939302e-05, -0.002823825227096677, -0.012482290156185627, 0.014576532877981663, 0.0006331870681606233, 0.01717732474207878, -0.0029996056109666824, -0.014667258597910404, 0.006573804654181004, -0.0011614729883149266, -0.026582514867186546, 0.0032547705341130495, 0.009639563970267773, -0.02112387679517269, -0.009450552985072136, 0.019672270864248276, 0.012935916893184185, -0.021562382578849792, 0.005568265914916992, -0.002632924122735858, 0.0033587266225367785, 0.007416794076561928, -0.002020528307184577, 0.0017578029073774815, 0.001525319297797978, -0.007246684283018112, 0.0007139893132261932, 0.003874726826325059, -0.028623836115002632, 0.007193760946393013, 0.025539174675941467, -0.016602732241153717, 0.010282201692461967, 0.005420837085694075, -0.018689414486289024, -0.0014610554790124297, -0.014999917708337307, 0.00754154147580266, 0.007352530490607023, -0.008308926597237587, 0.0310582984238863, 0.0019676052033901215, -0.02578110806643963, 0.014251434244215488, 0.01643640175461769, -0.002466594334691763, 0.006672090385109186, 0.002105583203956485, -0.0003357309033162892, 0.0061693210154771805, -0.005972749553620815, -0.008800354786217213, 0.010312443599104881, -0.020715612918138504, -0.0005150551442056894, 0.012232796289026737, 0.00873987190425396, 0.01935473270714283, 0.007666288875043392, 0.008376969955861568, 0.020579524338245392, 0.01168088335543871, -0.01088703703135252, -0.012709103524684906, 0.006690991576761007, -0.01619446836411953, 0.01295859832316637, -0.006403694860637188, 0.01654224842786789, -0.015173807740211487, 0.024722646921873093, 0.007598244585096836, -0.0020091875921934843, -0.007280705962330103, 0.019642028957605362, 0.003784001572057605, 0.02262084372341633, 0.01743438094854355, 0.018160182982683182, -0.012822510674595833, -0.012920795939862728, 0.006604046560823917, 0.002362638246268034, -0.008724750950932503, -0.013472708873450756, -0.0050995186902582645, -0.0012153411516919732, -0.019460579380393028, 0.0120437853038311, -0.011091168969869614, -0.005624969024211168, -0.005046595353633165, 0.005511562805622816, -0.00025918142637237906, -0.0036271223798394203, 0.004970991052687168, -0.008157717064023018, 0.024102691560983658, -0.01791824959218502, 0.011847213841974735, 0.006029452662914991, 0.01713196188211441, -0.014107786118984222, 0.028457505628466606, -0.0004073188465554267, -0.020972667261958122, -0.009269102476537228, 0.00824844278395176, 0.031663134694099426, -0.0032793418504297733, 0.012641060166060925, -0.003988133277744055, -0.006365892477333546, -0.003602550830692053, -0.00858866237103939, -0.00033053310471586883, 0.006278947461396456, -0.006403694860637188, 0.002243561204522848, -0.02187992073595524, 0.004755518399178982, 0.009836135432124138, -0.0158013254404068, -0.001391121419146657, -0.003396528773009777, -0.009821014478802681, 0.003708397038280964, -0.0036554739344865084, -0.013200532644987106, -0.024964580312371254, 0.0029088803566992283, 0.05213681235909462, -0.0023588580079376698, -0.01728317141532898, -0.00829380564391613, 0.007492398377507925, 0.015249412506818771, 0.02122972160577774, 0.0052091446705162525, -0.0007097365451045334, 0.008838157169520855, -0.020110776647925377, -0.002065890934318304, -0.017252929508686066, 0.007738112937659025, 0.010516575537621975, 0.028276054188609123, -0.010645102709531784, 0.02094242535531521, 0.0008103849249891937, -0.006199562922120094, -0.01979323849081993, -0.017963610589504242, 0.021259963512420654, 0.01278470829129219, 0.0024344625417143106, -0.01604325883090496, -0.007046332582831383, 0.02454119548201561, 0.03517117723822594, -0.016648095101118088, -0.0047177160158753395, -0.003065759316086769, -0.027096625417470932, -0.009616882540285587, 0.005432177800685167, -0.02833653800189495, 0.011703564785420895, -0.007439475506544113, -0.004634551238268614, 0.009783213026821613, 0.013979258015751839, 0.011794290505349636, 0.02262084372341633, -0.005632529500871897, 0.01861380971968174, -0.006993409246206284, 0.014062423259019852, 0.009715168736875057, -0.01924888603389263, 0.011348224245011806, 0.0066607496701180935, 0.006902683991938829, 0.0044039576314389706, 0.003216968383640051, -0.01998980902135372, -0.020171260461211205, 0.03435464948415756, -0.026325460523366928, 0.0009190663113258779, 0.0017426819540560246, -0.014085104689002037, -0.012164751999080181, -0.02059464529156685, 0.0019090117421001196, 0.006955606862902641, -0.002213319530710578, 0.013631477952003479, 0.01352563127875328, -0.007930904626846313, -0.004793320316821337, -0.018719656392931938, 0.008573541417717934, -0.007590684108436108, 0.011854773387312889, -0.012497411109507084, -0.0031508144456893206, -0.016451522707939148, 0.004199825692921877, 0.011582598090171814, -0.028608715161681175, 0.01229327917098999, 0.011363345198333263, -0.009805893525481224, 0.006982068531215191, -0.005984090268611908, 0.01194549910724163, 0.009019607678055763, -0.0040334961377084255, -0.012179872952401638, 0.012792268767952919, -0.003785891691222787, 0.009692487306892872, 0.007930904626846313, -0.007310947868973017, -0.007749453652650118, 0.028517989441752434, -0.004241408314555883, 0.02883552759885788, 0.0006549233221448958, 0.00418470473960042, -0.005167562514543533, 0.004218726884573698, -0.0021603964269161224, 0.013608796522021294, 0.015355258248746395, 0.0025989022105932236, -0.009473234415054321, 0.03831632435321808, 0.00898936577141285, 0.0019250776385888457, 0.017661193385720253, 0.01308712549507618, 0.026552274823188782, -0.017192445695400238, 0.004082638770341873, 0.013117367401719093, 0.0004711100773420185, 0.02913794480264187, -0.012807389721274376, -0.003186726476997137, 0.01767631433904171, 0.0033133639954030514, -0.007772135082632303, -0.007953585125505924, 0.021547261625528336, 0.014342159032821655, -0.007103035692125559, 0.017751919105648994, 0.019717633724212646, 0.007961145602166653, -0.00110760482493788, 0.00535657349973917, -0.0025384186301380396, 0.012013543397188187, 0.0027179790195077658, 0.020171260461211205, 0.023860756307840347, 0.029712539166212082, -0.00997222401201725, -0.0018022204749286175, -0.004626990761607885, -0.01723780855536461, -0.0033247044775635004, 0.01177916955202818, 0.004483342170715332, -0.005156221799552441, 0.012951037846505642, -0.014599214307963848, -0.022288184612989426, -0.0008283409988507628, -0.012867873534560204, 0.017600709572434425, 0.0013278026599436998, -0.0024363526608794928, -0.0019543743692338467, 0.003651693696156144, 0.01693539135158062, 0.011015565134584904, 0.018523083999753, -0.006059694569557905, 0.03541311249136925, -0.006914024706929922, 0.021834557875990868, 0.0002450055908411741, 0.0060974969528615475, -0.0009970333194360137, -0.003621452022343874, 0.0236490648239851, -0.004967210814356804, 0.03635060787200928, -0.013397104106843472, 0.001633055624552071, 0.025387965142726898, 0.015786204487085342, 0.0015215390594676137, -0.01273934543132782, -0.012777147814631462, 0.016708577051758766, 0.008883520029485226, 0.03447561711072922, -0.013117367401719093, -0.01787288673222065, -0.02000492997467518, -0.006411255337297916, -0.007481057662516832, -0.0002958023105747998, 0.008853278122842312, -0.010403169319033623, -0.00771543150767684, 0.018553325906395912, 0.011045806109905243, -0.008944003842771053, 0.0012021103175356984, 0.030786121264100075, -0.0010499564232304692, -0.0073789916932582855, -0.013177851215004921, -0.004317012615501881, 0.025009943172335625, -0.01782752387225628, 0.014115345664322376, 0.0065549034625291824, -0.015355258248746395, -0.0007820332539267838, 0.0013693851651623845, 0.012005982920527458, 0.009836135432124138, -0.006071035284548998, 0.04019131138920784, -0.011612839996814728, 0.015423302538692951, 0.006570024415850639, -0.0012474730610847473, -0.008445014245808125, -0.0008269234094768763, -0.002995825372636318, 0.005205364432185888, 0.006086156237870455, -0.017494864761829376, -0.02053416147828102, -0.0055229030549526215, 0.00044890126446262, -0.0012153411516919732, 0.0023097151424735785, 0.022288184612989426, -0.006917804945260286, -0.011612839996814728, -0.022817416116595268, -0.003708397038280964, -0.01323077455163002, 0.012557894922792912, 0.0012918906286358833, -0.011960620060563087, -0.01900695264339447, 0.006403694860637188, -0.01061486080288887, -0.004059957806020975, 0.0236490648239851, 0.012338642030954361, 0.00815015658736229, 0.006354551762342453, 0.01604325883090496, 0.007046332582831383, 0.025750868022441864, -0.008354288525879383, -0.01463701669126749, 0.0079006627202034, -0.0010130993323400617, 0.007719211746007204, -0.0061352988705039024, 0.014962115325033665, 0.014077544212341309, -0.0049936724826693535, -0.021562382578849792, 0.01684466563165188, 0.009201058186590672, -0.0016812534304335713, -0.019732754677534103, 0.0023399570491164923, -0.03341715410351753, 0.006607826799154282, -0.020307349041104317, 0.006513321306556463, 0.02192528359591961, -0.00023803580552339554, -0.018840622156858444, -0.01059218030422926, -0.01669345609843731, 0.012225235812366009, 0.009495915845036507, -0.020035171881318092, 0.015453544445335865, -0.004358595237135887, 0.02375490963459015, -0.006157980300486088, 0.0023834295570850372, 0.003188616596162319, -0.04596748948097229, 0.03768124431371689, -0.011363345198333263, -0.018039215356111526, -0.020110776647925377, -0.012247917242348194, -0.002872968092560768, -0.0007442310452461243, -0.00726936524733901, 0.013321499340236187, 0.0065889256075024605, 0.008437453769147396, -0.023785151541233063, -0.00010525553807383403, 0.006271386984735727, -0.019581545144319534, -0.004029715899378061, -0.007303387392312288, 0.013200532644987106, -0.003965452313423157, -0.01920352317392826, 0.0269151758402586, -0.021063392981886864, -0.012792268767952919, 0.003663034411147237, 0.023119833320379257, -0.008823036216199398, -1.4020781236467883e-05, 0.019959568977355957, 0.009609322063624859, -0.012573015876114368, -0.0009266267297789454, 0.00846769567579031, -0.011862333863973618, -0.0027104185428470373, 0.004180924501270056, 0.00868694856762886, 0.0007952640298753977, 0.0074281347915530205, -0.04379008337855339, -0.007946024648845196, -0.010902157984673977, -0.028306296095252037, -0.023422250524163246, 0.0016245500883087516, -0.011839653365314007, 0.0011198905995115638, -0.004623210523277521, -0.026053285226225853, 0.026325460523366928, -0.001328747719526291, 0.006536002736538649, 0.015226731076836586, 0.007613365538418293, -0.0023588580079376698, 0.009919300675392151, -0.003517495933920145, -0.005742155946791172, -0.017404139041900635, 0.01345002744346857, 1.6036407032515854e-05, -0.004294331185519695, -0.006052134092897177, -0.016466643661260605, -0.0017691435059532523, -0.0014837367925792933, 0.016028137877583504, -0.01177916955202818, -0.01915816217660904, -0.006165540777146816, 0.018840622156858444, -0.007276925723999739, -0.0017974951770156622, 0.027066383510828018, -0.0012229016283527017, 0.023512976244091988, 0.010607301257550716, 0.0010386158246546984, 0.006664529908448458, 0.012693982571363449, 0.00628272769972682, -0.005583386868238449, 0.004649672191590071, -0.01787288673222065, -0.0299695935100317, -0.012376444414258003, 0.003409759607166052, 0.015786204487085342, -0.016133984550833702, -0.006071035284548998, 0.02857847325503826, -0.011423829011619091, 0.004317012615501881, -0.019430337473750114, 0.0010423960629850626, 0.013245895504951477, -0.005133540369570255, -0.003973012324422598, -0.013608796522021294, 0.001688813790678978, -0.014727742411196232, 0.0004784342600032687, -0.012232796289026737, 0.005764837376773357, 0.016617853194475174, -0.015151126310229301, 0.021199481561779976, -0.00836940947920084, 0.021365810185670853, 0.0014629455981776118, -0.013102246448397636, -0.013691961765289307, 0.0236490648239851, 0.01110628992319107, -0.023029107600450516, -0.016678337007761, -0.03338691219687462, -0.016950512304902077, -0.016663216054439545, -0.009836135432124138, 0.010456091724336147, -0.001496967626735568, 0.0029372319113463163, -0.0015772973420098424, -0.0162398312240839, -0.026824450120329857, -0.0133517412468791, -0.009503476321697235, -0.008830596692860126, 0.034384891390800476, 0.013949016109108925, 0.005439738277345896, 0.007155959028750658, 0.002948572626337409, 0.008944003842771053, -0.014742862433195114, 0.0012314070481806993, 0.0110609270632267, -0.00031895615393295884, 0.0062411450780928135, -0.008830596692860126, -0.01723780855536461, 0.0058706835843622684, 0.0152569729834795, 0.009284223429858685, -0.00029792869463562965, -0.004902946762740612, -0.014621895737946033, 0.015680357813835144, -0.010130993090569973, 0.012489850632846355, 0.00811991561204195, 0.0029391220305114985, 0.03653205931186676, -0.0030865506269037724, -0.007292046677321196, 0.0235432181507349, 0.004577848128974438, 0.003606331069022417, -0.016360796988010406, -0.014901632443070412, -0.014606774784624577, 0.008460135199129581, -0.0027463308069854975, 0.00451736431568861, 0.020277107134461403, -0.016466643661260605, -0.006619167514145374, 0.017555346712470055, -0.006411255337297916, -0.012497411109507084, 0.006248705554753542, -0.006732574198395014, -0.0018182863714173436, -0.0003510880342219025, -0.006966947577893734, 0.007946024648845196, -0.006002991460263729, -0.015876928344368935, 0.004411518108099699, -0.00338140781968832, 0.025886954739689827, -0.008278684690594673, -0.008664267137646675, -0.03208651766180992, 0.01763095147907734, 0.012089147232472897, 0.016708577051758766, 0.0010962641099467874, -0.012671302072703838, -0.003472133306786418, -0.011733806692063808, -0.01032000407576561, 0.01246716920286417, 0.009790772572159767, 0.009269102476537228, 0.005779958330094814, -0.010970202274620533, 0.016330555081367493, -0.00987393781542778, 0.0014610554790124297, 0.010577059350907803, -0.00661538727581501, 0.007405453361570835, 0.02192528359591961, -0.01547622587531805, -0.00023248360957950354, 0.02567526325583458, -0.0013230774784460664, -0.004392616916447878, -0.017797281965613365, -0.02166822738945484, -0.012799829244613647, -0.014659698121249676, -0.005390595644712448, -0.00908765196800232, 0.019642028957605362, -0.010380487889051437, 0.029304275289177895, -0.004555166698992252, 0.0005670331884175539, -0.021063392981886864, -0.012232796289026737, -0.0072013214230537415, 0.008573541417717934, 0.003128133015707135, -0.00811991561204195, 0.0014629455981776118, -0.012270597741007805, 0.0072353435680270195, 0.0009611212299205363, 0.01424387376755476, 0.01850796304643154, 0.01649688556790352, -0.0115523561835289, 0.006520881783217192, -0.0034059793688356876, -0.000965373998042196, -0.028170209378004074, 0.013639038428664207, 0.0012748796725645661, 0.00023366491950582713, -0.00768896983936429, 0.0023985502775758505, 0.0023399570491164923, 0.004626990761607885, 0.003725408110767603, -0.017222687602043152, 0.009465673938393593, -0.036804232746362686, 0.00037896717549301684, 0.005878244061022997, 0.011212136596441269, -0.01268642209470272, -0.009677366353571415, 0.023936361074447632, -0.000695088179782033, 0.005968969315290451, 0.020413193851709366, 0.005375474691390991, 0.0006785496952943504, -0.013192972168326378, -0.006052134092897177, -0.0023116052616387606, 0.01911279931664467, 0.007057672832161188, 0.017691435292363167, 0.019339611753821373, 0.0052091446705162525, -0.02389099821448326, -0.000170228086062707, -0.008596222847700119, -0.010773630812764168, 0.011189455166459084, -0.027671219781041145, 0.009511036798357964, -0.0041771442629396915, -0.004366155713796616, 0.006146639585494995, 0.014334598556160927, -0.005488881375640631, -0.0019676052033901215, 0.02933451719582081, 0.006868661846965551, 0.005265848245471716, 0.003243429819121957, -0.030181286856532097, 0.005318771116435528, 0.0040712980553507805, 0.015483786351978779, -0.018386995419859886, 0.0036876057274639606, -0.006052134092897177, -0.0018296270864084363, 0.013812928460538387, -0.0029088803566992283, 0.01251253206282854, -0.006932925898581743, 0.009495915845036507, -0.00011937230010516942, 0.006698552053421736, -0.0226662065833807, -0.017313413321971893, 0.006800618022680283, -0.008482816629111767, 0.011151652783155441, -0.028669197112321854, 0.012671302072703838, -0.01802409440279007, -0.0016198247903957963, -0.009178376756608486, 0.008747432380914688, 0.0006327145383693278, 0.009684926830232143, 0.016950512304902077, -0.0051032984629273415, 0.018296271562576294, 0.012285718694329262, 0.021517019718885422, -0.05089689791202545, -0.0033171442337334156, 0.001272989553399384, 0.0009568685200065374, -0.0008264508796855807, -0.0007120991940610111, 0.00751507980749011, -0.0022624623961746693, 0.005848002154380083, 0.011544795706868172, -0.01335930172353983, 0.004506023600697517, 0.004313232377171516, 0.01261837873607874, -0.0335683636367321, -0.014977236278355122, -0.0006724068662151694, 0.009314465336501598, -0.0006398024270310998, -0.006895123515278101, 0.011128971353173256, 0.009624443016946316, 0.0009294619085267186, -0.008392090909183025, 0.011242377571761608, 0.018583567813038826, -0.0008307035895995796, 0.006176881492137909, 0.015922291204333305, -0.019490821287035942, 0.005167562514543533, 0.01081143319606781, -0.030151044949889183, 0.008286245167255402, 0.0024949461221694946, -0.01920352317392826, -0.025992801412940025, -0.0032396495807915926, -0.028654076159000397, 0.024465592578053474, 0.017797281965613365, 0.005386815406382084, 0.0031092320568859577, 0.0016292753862217069, -0.018991831690073013, 0.010433410294353962, 0.018523083999753, -0.0018069457728415728, -0.0008113299845717847, 0.012331081554293633, -0.004146902821958065, -0.013140048831701279, -0.02009565569460392, -0.011310421861708164, -0.0060105519369244576, 0.006997189484536648, 0.005409496370702982, -0.003409759607166052, 0.005696793552488089, -0.0034664629492908716, -0.014054862782359123, 0.0120437853038311, -0.015589632093906403, 0.003035517642274499, 0.0036705948878079653, -0.014682379551231861, 0.0050957384519279, 0.0021755173802375793, 0.0015546160284429789, -0.018885985016822815, 0.008928882889449596, 0.007242904044687748, 0.0023739789612591267, -0.0024722646921873093, -0.02330128289759159, 0.008996926248073578, 0.010463652200996876, 0.014062423259019852, -0.012913235463202, -0.0057119145058095455, 0.0034475617576390505, 0.022832537069916725, -0.002763341646641493, 0.030241770669817924, -0.0018721545347943902, 0.006498200353235006, -0.007246684283018112, -0.027021020650863647, 0.023739788681268692, -0.0058215404860675335, -0.006071035284548998, 0.006940486375242472, -0.0015971434768289328, -0.004335913807153702, 0.004649672191590071, 0.031179264187812805, 0.007885541766881943, 0.007670069113373756, -0.023180317133665085, 0.0011406817939132452, 0.015544270165264606, -0.006562463939189911, -0.012452049180865288, -0.0015754072228446603, 0.00819551944732666, -0.0029410121496766806, 0.004608089569956064, 0.0027879131957888603, 0.020216623321175575, -0.017449501901865005, 0.0011170554207637906, -0.012830071151256561, 0.013548312708735466, -0.02245451509952545, 0.03816511482000351, 0.004230067599564791, -0.009110333397984505, 0.019324490800499916, -0.004781980067491531, 0.010062948800623417, 0.008180398494005203, 0.013812928460538387, 0.0005349012790247798, -0.004494682885706425, -0.020519040524959564, 0.011295300908386707, 0.004022155422717333, 0.007386552169919014, 0.015370379202067852, -0.010456091724336147, -0.0029258911963552237, 0.008203079923987389, -0.02245451509952545, -0.014742862433195114, -0.013495390303432941, -0.007371431216597557, -0.002377759199589491, 0.007299607153981924, 0.009322025813162327, -0.01313248835504055, 0.0016614071791991591, 0.003984353039413691, 0.02750488929450512, 0.014803346246480942, -0.009117893874645233, -0.020972667261958122, 0.009798333048820496, -0.02690005488693714, 0.0038255839608609676, -0.008732311427593231, 0.0018041105940937996, -0.0179787315428257, -0.007862860336899757, 0.011885015293955803, 0.0002620165760163218, 0.0010282201692461967, 0.008565980941057205, 0.012867873534560204, -0.0015234291786327958, 0.00403727637603879, 0.02868431806564331, 0.010561938397586346, -0.0015763522824272513, -0.01560475304722786, 0.03341715410351753, -0.002020528307184577, 0.015052841044962406, 0.016028137877583504, -0.007397892884910107, -0.011975741013884544, 0.022998865693807602, 0.011733806692063808, 0.026385944336652756, -0.005893365014344454, -0.018356753513216972, -0.014841148629784584, 0.014319478534162045, 0.003579869633540511, -0.0005604177713394165, 0.0041053202003240585, -0.019279127940535545, -0.009957103058695793, 0.002275693230330944, 0.030922209843993187, 0.008679388090968132, -0.004218726884573698, -0.011227257549762726, 0.005519122816622257, -0.002079121768474579, 0.0012616488384082913, -0.022288184612989426, 0.0007881761412136257, -0.004619430284947157, 0.0013070114655420184, 0.006717453245073557, -0.03471755236387253, 0.0011869894806295633, 0.00359121011570096, 0.01088703703135252, 0.01168088335543871, 0.008966684341430664, 0.005352793261408806, 0.02181943692266941, -0.022348668426275253, -0.007794816046953201, -0.0031054518185555935, -0.014032181352376938, -0.014614335261285305, 0.02044343575835228, 0.00935226771980524, -0.028366779908537865, 0.0034173200838267803, 0.01817530393600464, 0.016769060865044594, 0.036501817405223846, 0.01261081825941801, -0.005008792970329523, 0.010448531247675419, 0.00561740854755044, 0.005874463822692633, -0.011892575770616531, 0.01757046766579151, 0.0034040892496705055, -0.01881038025021553, -0.002827605465427041, -0.0030317374039441347, 0.0074621569365262985, 0.008921322412788868, -0.009458113461732864, 0.01081143319606781, 0.013661719858646393, 0.00425652926787734, 0.015861809253692627, 0.015786204487085342, -0.005995430983603001, 0.0060823759995400906, -0.014349719509482384, 0.016602732241153717, -0.001884440309368074, 0.01565011590719223, 0.00487648556008935, -0.0009006377076730132, 0.007908223196864128, -0.018719656392931938, -0.010524136014282703, 0.01911279931664467, 0.016013016924262047, -0.006260046269744635, -0.010055388323962688, 0.0277921874076128, 0.007594464346766472, -0.015725720673799515, 0.014931874349713326, 0.023286161944270134, 0.0017870996380224824, -0.015665236860513687, -0.0005230880924500525, -0.005980310030281544, -0.008838157169520855, 0.009919300675392151, 0.009193497709929943, 0.008059431798756123, -0.013933895155787468, 0.002617803169414401, -0.0005434068152680993, 0.0015602862695232034, 0.006872442085295916, 0.012164751999080181, -0.025554295629262924, 0.00024157976440619677, 0.006316749844700098, -0.016874907538294792, -0.004059957806020975, -0.01335930172353983, 0.015052841044962406, -0.015196489170193672, 0.00829380564391613, -0.0028559572529047728, 0.0152040496468544, -0.003954111598432064, 0.010312443599104881, -0.006210903637111187, 0.006105057429522276, 0.006229804828763008, -0.00987393781542778, 0.014274115674197674, 0.0226662065833807, 0.021592624485492706, -0.00630918936803937, -0.00746971694752574, 0.01747974380850792, -0.0194000955671072, 0.0034040892496705055, 0.015438423492014408, -0.018976710736751556, 0.023709546774625778, 0.0018655392341315746, 0.005897145252674818, 0.007609585300087929, -0.030241770669817924, 0.01881038025021553, 0.010803872719407082, -0.0010376707650721073, 0.0061693210154771805, 0.0018050556536763906, 0.02399684488773346, -0.007923344150185585, 0.00019491765124257654, 0.003938990645110607, -0.005481320898979902, 0.049445293843746185, 0.019536184147000313, 0.024072449654340744, -0.010675344616174698, 0.012928356416523457, -0.015241852030158043, 0.012557894922792912, -0.01211938913911581, -0.002738770330324769, -0.023588581010699272, 0.0017908797599375248, -0.005122199654579163, 0.025055306032299995, 0.03220748528838158, 0.00013242587738204747, 0.0017303962958976626, 0.007571783382445574, -0.002753891283646226, -0.002648045076057315, -0.0003558133321348578, 0.0027482209261506796, -0.0033738475758582354, -0.02838190086185932, 0.005477540660649538, 0.010758509859442711, 0.009609322063624859, -0.0024609239771962166, -0.002648045076057315, -0.005851782392710447, 0.004982331767678261, 0.012005982920527458, -0.003262331010773778, -0.026098648086190224, 0.008240882307291031, -0.005205364432185888, 0.015143566764891148, 0.01634567603468895, -0.005163782276213169, 0.00027855506050400436, -0.01850796304643154, -0.02286277897655964, -0.02454119548201561, 0.007594464346766472, -0.007087914738804102, -0.016118863597512245, 0.002364528365433216, -0.0007806156645528972, 0.0070425523445010185, -0.005432177800685167, 0.0008108574547804892, 0.010115872137248516, -0.0015735171036794782, -0.023618822917342186, -0.015438423492014408, -0.009541278705000877, -0.00209235236980021, 0.009314465336501598, -0.013502949848771095, -0.014523610472679138, -0.005987870506942272, -0.01970251277089119, 0.011605279520154, 0.008777673356235027, 0.006687211338430643, -0.0226662065833807, 0.029213549569249153, -0.005125979892909527, -8.074316428974271e-05, 0.005999211221933365, -0.002392880152910948, 0.007946024648845196, -0.0012002201983705163, -0.012051345780491829, -0.010206596925854683, -0.0031054518185555935, -0.017736798152327538, -0.02083657868206501, 0.002823825227096677, 0.010947520844638348, 0.017298292368650436, 0.011635521426796913, 0.01743438094854355, -0.012066465802490711, -0.009231300093233585, -0.0030147263314574957, 0.014258994720876217, 0.010992883704602718, 0.016164226457476616, 0.017222687602043152, -0.011627960950136185, -0.01379780750721693, -0.014629456214606762, 0.0017606380861252546, 0.005205364432185888, 0.027520010247826576, -0.02157750353217125, -0.010917278937995434, -0.007855299860239029, -0.01318541169166565, 0.005651430692523718, 0.011847213841974735, 0.0022870339453220367, -0.023936361074447632, 0.011091168969869614, 0.025070426985621452, -0.006180661730468273, -0.013019082136452198, 0.01053925696760416, 0.0018749897135421634, -0.0030449682381004095, -0.004116660915315151, 0.003988133277744055, 0.009768092073500156, 0.01498479675501585, -0.0009015827672556043, 0.029243791475892067, 0.006570024415850639, 0.0014005720149725676, -0.005511562805622816, 0.009556399658322334, -0.005299870390444994, -0.0070425523445010185, 0.023240800946950912, 0.011514553800225258, -0.023860756307840347, -0.009390069171786308, 0.0008883519913069904, 0.021244842559099197, -0.017888007685542107, 0.02473776787519455, 0.0024458032567054033, -0.006449057254940271, -0.00131740712095052, 0.019022073596715927, -0.013691961765289307, 0.002003517234697938, 0.02201600931584835, -0.017933368682861328, 0.01831139251589775, -4.019438347313553e-05, -0.022484755143523216, 0.031723618507385254, 0.018644051626324654, -0.029304275289177895, -6.763052078895271e-05, -0.004112880676984787, -0.01826602965593338, 0.021562382578849792, 0.005114639177918434, -0.022000888362526894, 0.00033336825435981154, -0.010584619827568531, -0.023739788681268692, 0.02053416147828102, -0.010524136014282703, 0.02576598711311817, -0.006770376116037369, 0.010372927412390709, -0.01806945726275444, -0.005504002328962088, 0.015922291204333305, 0.013140048831701279, 0.005477540660649538, 0.007458376698195934, 0.004521144554018974, 0.0013646598672494292, -0.01758558861911297, -0.003182946238666773, -0.0013438686728477478, -0.010796312242746353, -0.0014298686292022467, 0.0026877373456954956, 0.009095212444663048, 0.0003385660529602319, -0.012323521077632904, 0.007038772106170654, -0.006804398261010647, -0.010010025463998318, -0.025357723236083984, -0.01881038025021553, 0.02567526325583458, 0.016133984550833702, 0.019687391817569733, 0.0030260670464485884, 0.006199562922120094, 0.008656706660985947, -0.006490639876574278, 0.017252929508686066, 0.013397104106843472, -0.00317160552367568, 0.021048272028565407, 0.016481764614582062, -0.007832618430256844, 0.01177160907536745, -0.01767631433904171, 0.0042981114238500595, -0.002003517234697938, 0.00762848649173975, -0.035624805837869644, -0.01643640175461769, 0.008921322412788868, 0.0007966816192492843, -0.011083608493208885, -0.025645021349191666], "e1c93542-3556-41e1-a259-89aec374e6ab": [-0.04574687406420708, -0.01245887577533722, -0.011822707951068878, 0.03716933727264404, -0.02870616503059864, -0.022673295810818672, 0.02753389999270439, 0.02408858947455883, -0.002174763474613428, 0.019871298223733902, 0.01561112143099308, -0.01107932161539793, -0.010964954271912575, -0.003341666189953685, -0.0015296611236408353, 0.0345102995634079, -0.04200134798884392, 0.012273028492927551, 0.016568945720791817, -0.014052867889404297, 0.0561542883515358, 0.006383118685334921, -0.027004951611161232, 0.014610407873988152, -0.014824846759438515, -0.003699063789099455, -0.007605418097227812, -0.0009158310131169856, 0.0015850577037781477, 0.014910622499883175, 0.01642598770558834, 0.007655453868210316, 0.03928513079881668, -0.010986397974193096, 0.0027573213446885347, -0.02794848196208477, 0.0019049284746870399, 0.002650102134793997, -0.009478180669248104, -0.049206484109163284, -0.018341638147830963, 0.07210851460695267, 0.0040957750752568245, 0.0018691887380555272, -0.017583955079317093, -0.00013972006854601204, 0.03651172295212746, 0.014188678935170174, -0.03093632496893406, 0.003595418529585004, 0.016511762514710426, 0.002517865039408207, -0.002994990674778819, 0.00103109166957438, 0.0007777862483635545, -0.04960676655173302, 0.02759108506143093, 0.09303770959377289, 0.013995684683322906, -0.04729083180427551, -0.0007433867431245744, -0.003977833781391382, -0.006601131055504084, -0.006969250738620758, -0.010564669035375118, -0.011901335790753365, -0.0061400881968438625, 0.036626093089580536, -0.02297350950539112, 0.015210836194455624, 0.026061423122882843, 0.02005714550614357, -0.014896326698362827, 0.041543882340192795, 0.009714063256978989, -0.014517485164105892, 0.04966394975781441, 0.017469588667154312, 0.028277287259697914, 0.013752654194831848, -0.016268732026219368, 0.04640448838472366, 0.035453829914331436, 0.0195853803306818, 0.07862744480371475, 0.03642594814300537, -0.043173614889383316, -0.04577546566724777, -0.011958518996834755, -0.03233732283115387, 0.030850548297166824, 0.02741953358054161, -0.0026929897721856833, 0.004546095617115498, 0.01754106767475605, 0.009842726401984692, 0.02117222547531128, -0.004042165353894234, 0.0166690181940794, -0.02152962237596512, -0.0037169335409998894, 0.03671186789870262, 0.007712637074291706, 0.025532474741339684, 0.0015001758001744747, -0.005696915555745363, -0.0039206501096487045, 0.01093636266887188, -0.01572548784315586, 0.01818438246846199, 0.02554677054286003, -0.01952819712460041, -0.018112903460860252, -0.0044674682430922985, 0.0038205788005143404, -0.016154365614056587, -0.034767623990774155, 0.006540373433381319, -0.011758376844227314, -0.04205853492021561, 0.014031424187123775, -0.0049678245559334755, -0.00022169810836203396, 0.003984981682151556, -0.04263037070631981, 0.011365239508450031, -0.0008966209134086967, 0.025246556848287582, 0.023931333795189857, 0.007333796005696058, -0.01789846457540989, -0.015268019400537014, 0.02743382938206196, 0.029621101915836334, -0.00502858217805624, -0.011622565798461437, 0.017641138285398483, 0.03402423858642578, -0.019613971933722496, 0.06118644401431084, -0.030907733365893364, -0.0444602444767952, 0.016211548820137978, -0.03139379248023033, -0.022644702345132828, -0.021672582253813744, -0.024860568344593048, 0.0730806365609169, 0.024488873779773712, 0.021129338070750237, -0.02111504226922989, -0.03954245522618294, -0.0061543844640254974, -0.0248462725430727, -0.020071441307663918, -0.04017147421836853, -0.018670443445444107, 0.0022265862207859755, -0.003852744586765766, 0.04403136670589447, -0.01922798343002796, -0.01336666475981474, -0.0003868827479891479, 0.022130051627755165, 0.030564630404114723, 0.006165106315165758, 0.04391700029373169, 0.058270081877708435, -0.0083345090970397, 0.008184402249753475, 0.023288019001483917, -0.01748388446867466, -0.00036633238778449595, 0.01871333085000515, -0.025060709565877914, -0.0083345090970397, 0.02783411368727684, 0.049092113971710205, 0.0054789031855762005, -0.0051429495215415955, 0.008992120623588562, 0.032423097640275955, -0.010800551623106003, -0.02473190426826477, -0.013145078904926777, 0.01982841081917286, 0.04649026319384575, 0.03519650176167488, 0.003625797340646386, -0.006143662612885237, -0.0022676868829876184, 0.0012142579071223736, -0.021887021139264107, 0.03591129556298256, -0.020371655002236366, -0.01280197687447071, 0.0027555343694984913, -0.02192990854382515, -0.002573261735960841, 0.02660466730594635, -0.013080746866762638, -0.0432593896985054, -0.011193688958883286, 0.04872042313218117, -0.033195074647665024, 0.0344817079603672, -0.013195114210247993, 0.017055006697773933, 0.004038591403514147, -0.0333380363881588, 0.0257326178252697, -0.02701924741268158, -0.0011266955407336354, -0.004546095617115498, -0.0018048571655526757, 0.024360211566090584, -0.012344508431851864, 0.02268759161233902, 0.017526771873235703, -0.00016507295367773622, 0.007955667562782764, 0.0350821353495121, 0.013238001614809036, -0.017927056178450584, -0.03971400484442711, -0.06924933195114136, -0.005528938956558704, 0.02643311582505703, -0.030621815472841263, 0.024231547489762306, 0.043831225484609604, -0.020500319078564644, -0.004070756956934929, -0.060843344777822495, -0.0028806235641241074, 0.0184131171554327, 0.03256605565547943, -0.017097894102334976, 0.024831974878907204, -0.006529651582241058, 0.017641138285398483, 7.448107226082357e-06, 0.005939946044236422, 0.004710498731583357, 0.03165112063288689, 0.012630426324903965, -0.007905632257461548, 0.029220815747976303, -0.0012491041561588645, 0.004274473525583744, 0.016297323629260063, 0.02215864323079586, 0.00444245059043169, -0.019857002422213554, -0.03245168924331665, 0.0362543985247612, 0.032365914434194565, -0.013809838332235813, -0.0041315145790576935, -0.0053859795443713665, -1.5287117776097148e-06, 0.01748388446867466, -0.02531803585588932, 0.047919850796461105, 0.02238737791776657, -0.0011016776552423835, 0.04643307998776436, -0.050207193940877914, -0.010335934348404408, 0.019213687628507614, -0.03153675049543381, 0.032709017395973206, 0.0006232118466868997, 0.0271907988935709, 0.0058148568496108055, -0.0026411672588437796, 0.019685452803969383, -0.012544650584459305, -0.0009622926590964198, -0.010986397974193096, -0.004924937151372433, 0.022673295810818672, 0.000496335735078901, 0.012880604714155197, 0.018027128651738167, -0.016969231888651848, -0.011937075294554234, -0.02291632443666458, -0.029563918709754944, 0.005539660807698965, 0.0024124328047037125, 0.005882762372493744, 0.004038591403514147, 0.019957074895501137, -0.0181271992623806, 0.0028216529171913862, -0.001439418294467032, -0.017512476071715355, 0.006079331040382385, 0.008120070211589336, -0.03699778392910957, -0.024817679077386856, -0.009392404928803444, -0.030135754495859146, 0.027962777763605118, -0.032137181609869, 0.03865610808134079, -0.025360923260450363, 0.0035721876192837954, 0.0010945297544822097, 0.007977111265063286, -0.014395969919860363, -0.027376646175980568, -0.0014179744757711887, -0.00622943788766861, 0.010771959088742733, -0.002217651344835758, 0.029792653396725655, -0.005957815796136856, -0.009992833249270916, 0.049149300903081894, -0.0033702580258250237, -0.06204419955611229, 0.06147236377000809, 0.024174364283680916, -0.024303028360009193, 0.010679036378860474, 0.016711905598640442, -0.03591129556298256, 0.0008716030861251056, -0.004842735826969147, -0.014896326698362827, -0.013967093080282211, 0.019370943307876587, 0.01644028350710869, 0.005661175586283207, -0.02420295588672161, -0.06187264993786812, -0.00700141629204154, -0.023116467520594597, -0.008155809715390205, 0.00011816453479696065, -0.028448838740587234, 0.016711905598640442, 0.01719796657562256, -0.0018620408372953534, -0.037683989852666855, 0.02030017599463463, 0.0042244382202625275, 0.015553937293589115, 0.00082960887812078, -0.010314490646123886, 0.0026894158218055964, 0.02391703799366951, 0.009521068073809147, 0.024345915764570236, -0.004320935346186161, 0.010357378050684929, 0.020829124376177788, -0.037741173058748245, -0.0160685908049345, 0.008949232287704945, -0.006619000807404518, 0.027991369366645813, -0.0010516420006752014, 0.02291632443666458, 0.03193703666329384, -0.01251605898141861, -0.01742669939994812, -0.037054967135190964, -0.0008626681519672275, 0.01714078150689602, 0.020843420177698135, 0.01782698556780815, -0.03439593315124512, 0.005861318204551935, 0.06067179515957832, 0.01479625515639782, -0.008205845952033997, 0.007855596020817757, -0.0016761941369622946, 0.017927056178450584, -0.005989981349557638, 0.009356665425002575, 0.05421004816889763, 0.01824156567454338, 0.03411001339554787, 0.0030289434362202883, -0.008148661814630032, 0.02461753785610199, -0.018155790865421295, -0.025818392634391785, 0.007219428662210703, -0.027004951611161232, -0.016754793003201485, 0.004546095617115498, 0.010035720653831959, -0.036168623715639114, 0.0195853803306818, -0.029306592419743538, -0.005564678460359573, 0.012301621027290821, -0.0026447412092238665, 0.011708340607583523, 0.01678338460624218, -0.025303740054368973, -0.0009533577249385417, -0.004381692968308926, 0.0072337244637310505, -0.002909215399995446, -0.024760495871305466, -0.004832013510167599, 0.0029735469724982977, 0.009099339134991169, 0.034767623990774155, -0.024417394772171974, -0.023245131596922874, 0.03722652047872543, -0.02760538086295128, -0.024631833657622337, 0.03934231400489807, 0.035939887166023254, -0.016754793003201485, 0.024989230558276176, -0.01160826999694109, 0.019313758239150047, -0.002290917793288827, 0.0426875539124012, 0.014982101507484913, -0.012873456813395023, -0.02350245788693428, 0.042544592171907425, -0.03087913990020752, -0.026790514588356018, 0.011358091607689857, -0.02497493475675583, -0.005793412681668997, 0.0029628248885273933, 0.02713361568748951, -0.002324870554730296, 0.006447450257837772, 0.021415255963802338, 0.010864882729947567, 0.016969231888651848, -0.04543236643075943, -0.04357389733195305, -0.03985696658492088, -0.03453889116644859, -0.00892064068466425, -0.0009037688141688704, 0.019985666498541832, 0.03942808881402016, -0.03553960472345352, 0.005571826361119747, 0.00912078283727169, 0.020371655002236366, 0.03825582563877106, 0.01988559402525425, 0.0271907988935709, -0.04200134798884392, -0.03293775022029877, 0.025346627458930016, 0.011694044806063175, 0.0027734043542295694, 0.036454539746046066, -0.03350958600640297, 0.024131476879119873, 0.02064327709376812, 0.003372045001015067, 0.03796990588307381, -0.013666879385709763, -0.00927089061588049, 0.029149336740374565, 0.02842024713754654, 0.010693332180380821, -0.01714078150689602, 0.00403501745313406, 0.012051442638039589, 0.023931333795189857, 0.02882053144276142, -0.017097894102334976, -0.005010712426155806, -0.006379544734954834, -0.00017557150567881763, 0.022659000009298325, 0.02017151191830635, -0.026919176802039146, -0.0056897676549851894, 0.031250834465026855, 0.015496754087507725, 0.007062173914164305, -0.0006491231615655124, 0.00457468768581748, -0.004231586121022701, -0.024460282176733017, -0.0362543985247612, 0.007469607051461935, -0.03962823003530502, -0.02168687805533409, -0.043774042278528214, 0.022301601245999336, 0.0020568224135786295, -0.013766949996352196, 0.0014823059318587184, -0.008563242852687836, -3.3052285743906396e-06, -0.03771258145570755, 0.015453866682946682, -0.015353795140981674, -0.007684045471251011, -0.03016434609889984, 0.011157948523759842, -0.03934231400489807, -0.014231567271053791, 0.005575400311499834, 0.03502495214343071, -0.006336656864732504, 0.004471042193472385, 0.027633972465991974, -0.013488180004060268, -0.024817679077386856, -0.025046413764357567, -0.041601065546274185, -0.002357036340981722, -0.022501744329929352, -0.005325222387909889, -0.021143633872270584, -0.012373100034892559, 0.04303065314888954, -0.047748301178216934, -0.00600785156711936, 0.03328085318207741, -0.02030017599463463, -0.005271612666547298, 0.0057683950290083885, 0.011944223195314407, -0.005954241845756769, 0.0011981750139966607, 0.006204419769346714, 0.00985702220350504, -0.014253010973334312, 0.009563956409692764, -0.008134366013109684, -0.02427443489432335, -0.027376646175980568, 0.027205094695091248, 0.013345221057534218, -0.007251594681292772, 0.003352388273924589, 0.018055720254778862, -0.012494615279138088, -0.004138662479817867, -0.003218364203348756, 0.009099339134991169, 0.010364526882767677, -0.0269048810005188, 0.02870616503059864, -0.033480994403362274, 0.0022230122704058886, -0.015053581446409225, -0.02128659375011921, 0.028920602053403854, -0.004417432472109795, -0.0008492657216265798, -0.020657572895288467, -0.019027840346097946, -0.027862705290317535, 0.021329481154680252, -0.016182957217097282, 0.031308017671108246, 0.022029979154467583, -0.0060578868724405766, 0.007033581845462322, -0.005589696113020182, 0.0018727626884356141, 0.012880604714155197, -0.010164383798837662, -0.0026626111939549446, -0.033423811197280884, -0.010478893294930458, -0.004585409536957741, -0.0037026377394795418, 0.00713365338742733, 0.015396682545542717, 0.01485343836247921, 0.02310217171907425, -0.010607556439936161, -0.02866327576339245, -0.004392414819449186, -0.004874901380389929, -0.035053543746471405, 0.02900637872517109, 0.00215510674752295, -0.033195074647665024, -0.02508930116891861, -0.007080043666064739, -0.00704430416226387, 0.03093632496893406, 0.03222295641899109, 0.006511781830340624, 0.014238715171813965, 0.007212280761450529, 0.0344817079603672, -0.01479625515639782, -0.05046452209353447, 0.03279479220509529, 0.004320935346186161, 0.013552512042224407, -0.008448876440525055, 0.007755524944514036, -0.011408126913011074, -0.018970657140016556, 0.025446699932217598, -0.02047172747552395, 0.037569619715213776, 0.01684056781232357, 0.0004409391258377582, 0.04983550310134888, 0.00470692478120327, 0.012080034241080284, 0.02694776840507984, -0.013559659942984581, 0.060500241816043854, -0.04494630545377731, 0.016969231888651848, 0.028048552572727203, -0.005157245323061943, 0.028606092557311058, -0.012373100034892559, 0.004085053224116564, -0.025246556848287582, 0.0019281592685729265, 0.019428126513957977, -0.03070759028196335, 0.01858466863632202, -0.0014063590206205845, -0.015039285644888878, -0.006876327097415924, -0.01642598770558834, 0.007315926253795624, -0.023173650726675987, -0.02607571892440319, -0.007112209685146809, 0.04566109925508499, -0.010121496394276619, -0.016769088804721832, -0.02497493475675583, 0.020271584391593933, 0.012344508431851864, 0.02942095883190632, -0.029907019808888435, -0.004113644827157259, 0.013809838332235813, 0.010786255821585655, -0.007827004417777061, -0.03811286389827728, -0.0061508105136454105, 0.0027358776424080133, 0.03725511208176613, 0.016597537323832512, 0.012365952134132385, -0.017555363476276398, 0.03004997782409191, 0.013252298347651958, 0.02164399065077305, 0.006922788918018341, 0.02234448865056038, -0.015253723599016666, 0.02064327709376812, 0.018198678269982338, 0.009942797012627125, -0.018098607659339905, 0.03313789144158363, -0.01614006981253624, -0.010343082249164581, 0.015010693110525608, -0.019385239109396935, -0.014510337263345718, 0.014781959354877472, -0.011451014317572117, -0.012365952134132385, -0.009978537447750568, -0.04088626801967621, 6.807304453104734e-05, 0.01947101391851902, -0.004349526949226856, -0.00412436667829752, 0.030278712511062622, -0.013967093080282211, -0.010343082249164581, -0.0034935602452605963, 0.0024213679134845734, -0.019142208620905876, 0.0046425932087004185, 0.006090052891522646, -0.014467448927462101, -0.0012598260072991252, 0.03116505965590477, 0.0032219381537288427, -0.032308731228113174, -0.03239450603723526, -0.004824865609407425, -0.013888465240597725, -0.014639000408351421, -0.010807699523866177, 0.011272315867245197, -0.01807001605629921, -0.01543956995010376, -0.005578974261879921, 0.039027802646160126, 0.010250159539282322, 0.026232974603772163, 0.006243733689188957, 0.00888490118086338, -0.005082191899418831, 0.012666165828704834, 0.011779820546507835, 0.030678998678922653, 0.009192262776196003, 0.0248462725430727, 0.025303740054368973, 0.050836216658353806, -0.0030128606595098972, -0.041486699134111404, -0.05315215140581131, 0.027819817885756493, -0.005157245323061943, 0.009049303829669952, 0.003956390079110861, 0.006018573418259621, 0.006068608723580837, -0.0034649684093892574, -0.017927056178450584, 0.014753366820514202, 0.013831282034516335, -0.002771617379039526, -0.02338808961212635, 0.009192262776196003, 0.03814145550131798, -0.02571832202374935, 0.015925630927085876, -0.030536038801074028, 0.024460282176733017, -0.022716183215379715, 0.0010739794233813882, 0.005414571613073349, 0.03831300884485245, 0.003441737499088049, -0.014567520469427109, -0.013888465240597725, 0.030278712511062622, -0.029907019808888435, 0.03453889116644859, 0.018112903460860252, 0.00024593411944806576, -0.01912791281938553, 0.01596851833164692, 0.020157216116786003, 0.0003140630142297596, 0.024102885276079178, -0.0031808374915271997, 0.026561779901385307, -0.006290195509791374, -0.03865610808134079, 0.003934945911169052, 0.008327361196279526, -0.0007862744387239218, 0.025189373642206192, 0.006865605246275663, 0.01449604146182537, 0.04320220649242401, 0.039799779653549194, 0.02210146002471447, 0.033595360815525055, 0.017169374972581863, -0.00596496369689703, 0.02819151245057583, -0.018084311857819557, -0.04168684035539627, 0.004013573285192251, -0.02554677054286003, -0.03614003211259842, 0.04128655418753624, -0.019456718116998672, -0.01391705684363842, -0.005418145563453436, 0.03462466597557068, 0.03279479220509529, 0.0019370942609384656, 0.001420654938556254, 0.017169374972581863, -0.0178412813693285, -0.02694776840507984, 0.014696183614432812, -0.007101487368345261, -0.004031443502753973, 0.039742596447467804, -0.021186521276831627, 0.008813421241939068, 0.021801244467496872, 0.005410997662693262, -0.017097894102334976, 0.04305924475193024, 0.03368113562464714, -0.02303069271147251, -0.025989944115281105, -0.007734081242233515, 0.014624704606831074, -0.015768375247716904, -0.014560372568666935, 0.00168423552531749, -0.025861280038952827, -0.012151514180004597, 0.01982841081917286, -0.03842737525701523, -0.02115792967379093, -6.673280586255714e-05, 0.019556788727641106, 0.014460301026701927, -0.0006862031295895576, -0.012973528355360031, 0.006347378715872765, 0.02174406126141548, -0.020314471796154976, 0.020972082391381264, -0.0409434549510479, 0.0034953472204506397, -0.0039206501096487045, 0.0022962787188589573, -0.008191550150513649, -0.016826272010803223, -0.0239742211997509, 0.013659731484949589, 0.0239742211997509, 0.006014999467879534, 0.019899889826774597, -0.002108644926920533, 0.01847030036151409, -0.019785523414611816, 0.009335221722722054, -0.02783411368727684, -0.009628287516534328, -0.004317361395806074, 0.004295917693525553, 0.00032478495268151164, -0.014810550957918167, 0.026390228420495987, -0.014238715171813965, 0.041200779378414154, 0.02503211796283722, 0.011479606851935387, -0.026390228420495987, -0.0030593222472816706, 0.016411691904067993, 0.0010355591075494885, 0.001687809475697577, -0.01708359830081463, 0.00019746209727600217, -0.03262323886156082, 0.01336666475981474, -0.007076469715684652, 0.022587519139051437, -0.0017110403859987855, -0.012080034241080284, -0.012994972057640553, -0.021786948665976524, -0.021243704482913017, -0.01888488233089447, -0.010042868554592133, -0.0021193670108914375, -0.016683313995599747, 0.012473171576857567, 0.025532474741339684, 0.014503189362585545, -0.020371655002236366, 0.01654035411775112, -0.023187946528196335, 0.017798393964767456, -0.019313758239150047, -0.008498911745846272, -0.006422432605177164, 0.013573955744504929, -0.0065260776318609715, 0.0004438429605215788, -0.0637597069144249, 0.004524651914834976, 0.009542512707412243, -0.011193688958883286, -0.020242992788553238, 0.015882743522524834, 0.025689730420708656, -0.010979250073432922, 0.001329518505372107, -0.021672582253813744, -0.0010239437688142061, 0.005786264780908823, 0.024059997871518135, -0.011065025813877583, 0.018670443445444107, -0.03419578820466995, 0.012723349966108799, -0.024932047352194786, -0.04497489705681801, 0.014453153125941753, 0.028934897854924202, -0.03290915861725807, 0.026218678802251816, 0.01365258265286684, 0.00883486494421959, 0.025103596970438957, 0.008098626509308815, 0.023716894909739494, 0.012973528355360031, -0.024874864146113396, 0.0473480150103569, 0.026461707428097725, 0.015067877247929573, 0.011329500004649162, 0.011829855851829052, -0.015539641492068768, 0.00726589048281312, 0.011207984760403633, 0.03262323886156082, 0.013988536782562733, -0.012029998935759068, 0.0019406682113185525, -0.011994258500635624, -0.01391705684363842, -0.00032612518407404423, 0.027505308389663696, -0.010922066867351532, 0.013195114210247993, 0.01052892953157425, -0.012794828973710537, 0.03648313134908676, -0.015353795140981674, 0.007519642822444439, -0.008198698051273823, -0.02859179675579071, -0.012994972057640553, -0.0031433107797056437, -0.00987846590578556, 0.009806985966861248, -0.0026197233237326145, 0.015825560316443443, -0.03473903238773346, -0.006501059979200363, 0.016740497201681137, 0.021658286452293396, 0.006847735494375229, 0.008984971791505814, 0.014510337263345718, -0.004696202464401722, -0.009628287516534328, 0.011551085859537125, 0.029306592419743538, 0.0009989258833229542, 0.018813403323292732, 0.03004997782409191, -0.007877039723098278, -0.01665472239255905, -0.0038170048501342535, -0.008241585455834866, 0.01552534569054842, -0.01918509602546692, 0.02408858947455883, -0.0368548259139061, 0.01829875074326992, -0.011879892088472843, -0.025003526359796524, -0.021186521276831627, -0.01771261915564537, 0.0018316620262339711, 0.02620438113808632, 0.010521781630814075, -0.008877753280103207, -0.014017128385603428, 0.0024160067550837994, -0.01333092525601387, -0.020914899185299873, 0.023288019001483917, -0.006529651582241058, 0.014281602576375008, 0.003988555632531643, 0.012637574225664139, -0.012308768928050995, -0.02614719793200493, -0.0065689655020833015, -0.0030664701480418444, 0.019385239109396935, 0.02315935492515564, -0.037340886890888214, 0.0031879853922873735, -0.020042849704623222, 0.018212974071502686, -0.014882029965519905, -0.020786236971616745, -0.020743349567055702, -0.0029074284248054028, -0.001690490054897964, -0.011065025813877583, -0.007641157601028681, -0.03539664298295975, 0.022844845429062843, 0.002887771464884281, 0.011879892088472843, 0.00013056176248937845, -0.012637574225664139, -0.006411710288375616, 0.024546056985855103, -0.010657592676579952, -0.014810550957918167, 0.009363813325762749, -0.01400283258408308, 0.006440302357077599, 0.034996360540390015, -0.023416681215167046, -0.03308070823550224, -0.01789846457540989, 0.040200065821409225, -0.007827004417777061, -0.027562491595745087, -0.008541799150407314, -0.028634684160351753, -0.0069084931164979935, 0.01759825088083744, -0.015711192041635513, -0.013702618889510632, 0.03336662799119949, 0.017755506560206413, -0.021329481154680252, -0.015182244591414928, 0.027262277901172638, -0.008906344883143902, 0.0075339386239647865, -0.011994258500635624, -0.002787700155749917, -0.0789705440402031, -0.012137217447161674, -0.02936377562582493, 0.02987842820584774, -0.012065738439559937, 0.004628296941518784, 0.009513920173048973, 0.0030110736843198538, 0.003330944338813424, 0.02274477481842041, 0.007276612333953381, -0.014810550957918167, 0.03170830383896828, -0.012787681072950363, -0.013909908942878246, 0.007183689158409834, -0.0040028514340519905, -0.011558233760297298, -0.005754099227488041, -0.009213706478476524, -0.013666879385709763, 0.010929214768111706, 0.009635435417294502, -0.0018316620262339711, -0.00722300261259079, 0.037340886890888214, -0.01157967746257782, -0.014431709423661232, -0.025818392634391785, -0.04097204655408859, 0.022430265322327614, -0.01166545320302248, -0.01412434782832861, 0.0012026424519717693, -0.004778404254466295, 0.023259427398443222, 0.007877039723098278, -0.007591122295707464, -0.020242992788553238, 0.01847030036151409, 0.012430284172296524, 0.009070747531950474, -0.012501763179898262, 0.0034899862948805094, 0.025575362145900726, -0.008763385936617851, 0.00367761985398829, -0.024174364283680916, -0.01632591523230076, -0.002850244753062725, 0.02403140626847744, 0.01907072775065899, 0.003041452495381236, -0.01971404440701008, 0.018813403323292732, 0.015811264514923096, 0.018513187766075134, -0.00435667484998703, -0.0002126514882547781, -0.027633972465991974, 0.05566822737455368, 0.033995646983385086, 0.01701211929321289, -0.007072895765304565, -0.037455253303050995, -0.0021676155738532543, 0.01935664750635624, 0.03711215406656265, 0.022315897047519684, 0.011043581180274487, -0.01689775288105011, -0.008949232287704945, 0.018327342346310616, 0.024588946253061295, 0.017641138285398483, 0.005150097422301769, 0.016011405736207962, 0.04374545067548752, -0.0050607481971383095, -0.014253010973334312, -0.013359516859054565, 0.009521068073809147, 0.030421672388911247, -0.008363100700080395, -0.025103596970438957, -0.02420295588672161, -0.004381692968308926, -0.03596848249435425, -0.00033103939495049417, -0.002994990674778819, 0.010157235898077488, -0.010114348493516445, 0.03691200911998749, 0.002937807235866785, -0.015182244591414928, -0.0030932750087231398, -0.015410978347063065, 0.01678338460624218, -0.017984241247177124, -0.008048591203987598, -0.01143671851605177, 0.0024821253027766943, 0.0009819495026022196, -0.00659398315474391, -0.01347388420253992, -0.022644702345132828, 0.006951380521059036, 0.03033589757978916, 0.01050033699721098, -0.009921353310346603, -0.013373812660574913, 0.00520370714366436, -0.008456024341285229, -0.0004985694540664554, -0.023288019001483917, 0.007012138143181801, -0.01327374204993248, -0.004892771132290363, 0.0002517418470233679, -0.0037884130142629147, -0.005550382658839226, 0.027619676664471626, 0.016154365614056587, -0.026747625321149826, -0.012859161011874676, 0.03205140307545662, -0.007748377043753862, -0.02111504226922989, 0.002705498831346631, 0.011393831111490726, 0.008842012844979763, -0.0022927047684788704, -0.004853457678109407, -0.006969250738620758, -0.00493923295289278, 0.02350245788693428, 0.016154365614056587, 0.011858447454869747, 0.03105069138109684, -0.03716933727264404, -0.01546816248446703, -0.015711192041635513, 0.003532873932272196, -0.0016386674251407385, -0.004438876640051603, -0.011065025813877583, 0.009278038516640663, -0.01854178123176098, 0.01672620140016079, -0.023130763322114944, 0.013052155263721943, -0.0067333681508898735, 0.03528227657079697, -0.022644702345132828, -0.029163632541894913, -0.01265901792794466, -0.011300907470285892, -0.01178696844726801, -0.010800551623106003, -0.03316648304462433, -0.017755506560206413, 0.013909908942878246, 0.01566830463707447, -0.0026107884477823973, 0.01117224432528019, -0.019142208620905876, -0.009513920173048973, -0.001445672707632184, -0.008856309577822685, -0.0007313245441764593, 0.004027869552373886, -0.02660466730594635, -0.01192992739379406, -0.024932047352194786, 0.024131476879119873, -0.03262323886156082, -0.00932807382196188, -0.03711215406656265, 0.037398070096969604, 0.008077182807028294, -0.020257288590073586, 0.00879912544041872, 0.015024988912045956, 0.026518892496824265, -0.007262316532433033, 0.024260139092803, -0.0137383583933115, 0.03087913990020752, -0.02268759161233902, -0.010757663287222385, 0.019971370697021484, 0.024345915764570236, -0.016125774011015892, 0.003913502208888531, -0.0032612518407404423, -0.005125079769641161, 0.021386664360761642, 0.009671174921095371, -0.006190123967826366, -0.006669036578387022, -0.00894208438694477, -0.0027626825030893087, 0.022902028635144234, -0.0011284825159236789, -0.0035239390563219786, -0.000767064280807972, -0.0508648082613945, 0.018899178132414818, 0.025775505229830742, -0.01421012356877327, 0.007726933341473341, 0.009585400111973286, 0.026461707428097725, -0.013430996797978878, 0.0017324842046946287, -0.028048552572727203, -0.0076983412727713585, -0.003145097754895687, 0.012044294737279415, -0.01058611273765564, 0.025232261046767235, -0.001985342940315604, 0.008520355448126793, 0.002473190426826477, 0.01947101391851902, -0.002882410539314151, 0.007869891822338104, -0.03485339879989624, -0.04860605672001839, 0.0024588946253061295, 0.00859898328781128, 0.014260158874094486, 0.0040028514340519905, 0.0063974144868552685, -0.00011252435797359794, -0.014303046278655529, 0.035453829914331436, -0.006833439692854881, 0.022315897047519684, -0.012115773744881153, -0.039685413241386414, -0.020914899185299873, 0.0008331828285008669, 0.019399534910917282, 0.036683276295661926, 0.016740497201681137, -0.020014258101582527, -0.013280889950692654, 0.007251594681292772, 0.025303740054368973, 0.005307352170348167, -0.021944204345345497, -0.010100052691996098, 0.007108635734766722, 0.02115792967379093, -0.009420997463166714, -0.0022051422856748104, -0.027119319885969162, 0.001596673158928752, 0.0018191530834883451, -0.022315897047519684, 0.01292349211871624, 0.021472439169883728, -0.02210146002471447, 0.027033543214201927, -0.015997109934687614, 0.005482477135956287, 0.036626093089580536, 0.006929936818778515, -0.017512476071715355, 0.0005137588595971465, -0.0036508149933069944, -0.019499605521559715, -0.006436728406697512, 0.012809124775230885, 0.013981388881802559, 0.012580391019582748, -0.023373793810606003, 0.004667610861361027, -0.0005106316530145705, -0.012544650584459305, -0.023073580116033554, -0.02151532657444477, -0.010335934348404408, 0.0061079226434230804, 0.01382413413375616, -0.005893484223634005, 0.002217651344835758, 0.01776980236172676, -0.012144365347921848, -0.01026445534080267, -0.007083617616444826, 0.01499639730900526, 0.008027146570384502, 0.019213687628507614, 0.013466736301779747, -0.01899924874305725, -0.01418153103441, 0.006029295269399881, -0.012058590538799763, 0.03147956728935242, 0.0021122191101312637, -0.013002119958400726, 0.02064327709376812, -0.008863457478582859, -0.00029306591022759676, 0.006658314727246761, 0.0007675110246054828, 0.008956380188465118, 0.006018573418259621, -0.007290908135473728, 0.020957786589860916, -0.028577500954270363, -0.009749802760779858, 0.0055575305595994, 0.012551798485219479, 0.018112903460860252, 0.028377357870340347, 5.215769124333747e-05, -0.019399534910917282, 0.0005508388276211917, -0.016268732026219368, 0.01911361701786518, 0.004152958746999502, 0.007684045471251011, 0.015568233095109463, -0.021672582253813744, -0.007462459150701761, 0.018670443445444107, -0.008992120623588562, -0.021887021139264107, 0.04568969085812569, -0.017555363476276398, -0.015010693110525608, 0.005107209552079439, -0.003214790252968669, 0.004024295601993799, -0.005461033433675766, 0.005500346887856722, -0.005167967174202204, 0.023173650726675987, 0.04448883607983589, 0.0005168860661797225, -0.001379554159939289, 0.005882762372493744, 0.025761209428310394, -0.008263029158115387, 0.008963528089225292, 0.05269468203186989, -0.004156532697379589, 0.02170117385685444, -0.005889910273253918, -0.018227269873023033, -0.012301621027290821, 0.01341670099645853, 0.020914899185299873, -0.021715469658374786, 0.00668333237990737, -0.010493189096450806, -0.018398821353912354, 0.003529299981892109, -0.01865614764392376, -0.0062330118380486965, 0.000854626705404371, 0.003425654722377658, 0.012537502683699131, 0.024231547489762306, -0.014245863072574139, 0.017040710896253586, -0.018613260239362717, 0.006272325292229652, 0.020543206483125687, 0.005107209552079439, -0.014152939431369305, -0.011779820546507835, -0.009042155928909779, 0.012737645767629147, -0.01969974860548973, -0.006036443170160055, 0.01712648570537567, -0.018384525552392006, 0.02098637819290161, -0.03782694786787033, -0.035882703959941864, -0.008291620761156082, 0.00739812757819891, 0.0013661518460139632, 0.004617575090378523, -0.02304498851299286, -0.00827017705887556, 0.017298037186264992, -0.018155790865421295, -0.0039206501096487045, -0.01771261915564537, -0.004946380853652954, -0.009942797012627125, -0.0045496695674955845, 0.006122218444943428, -0.02228730544447899, 0.0016610047314316034, -0.032423097640275955, 0.004106496926397085, 0.0002662611077539623, 0.02866327576339245, -0.002510717138648033, 0.021844133734703064, 0.011601122096180916, -0.00758397439494729, -0.016454579308629036, -0.012215845286846161, -0.018084311857819557, -0.014202974736690521, 0.026090014725923538, -0.030907733365893364, -0.006018573418259621, -0.005117931868880987, -0.008956380188465118, 0.019485309720039368, 0.01444600522518158, 0.012994972057640553, -0.005836300551891327, -0.012809124775230885, 0.02882053144276142, -0.010972102172672749, 0.0002519652189221233, -0.0026375933084636927, -0.02478908747434616, -0.02936377562582493, -0.002709072781726718, 0.026690442115068436, -0.008777681738138199, 0.007755524944514036, -0.00032880567596293986, 0.01120083685964346, 0.012315916828811169, -0.008777681738138199, 0.007448163349181414, -0.014224419370293617, -0.02185842953622341, -0.013016415759921074, -0.05115072429180145, -0.005675471853464842, -0.002660824218764901, -0.02100067399442196, 0.024574650451540947, -0.0027269425336271524, 0.017283741384744644, -0.02490345574915409, 0.020571798086166382, 0.006408136337995529, 0.023173650726675987, -0.03345240280032158, 0.030793365091085434, -0.011837003752589226, -0.005421719513833523, 0.01499639730900526, 0.006801273673772812, -0.0014983888249844313, -0.016125774011015892, 0.019871298223733902, 0.03010716289281845, 0.0037169335409998894, -0.013266594149172306, 0.00177269137930125, -0.004974972456693649, 0.011908483691513538, 0.009764098562300205, -0.002816291991621256, -0.015253723599016666, -6.589515396626666e-05, -0.032308731228113174, -0.019513901323080063, -0.010964954271912575, 0.018041424453258514, 0.014152939431369305, -0.020657572895288467, -0.0031844114419072866, 0.008141513913869858, -0.01248031947761774, -0.020443134009838104, -0.004106496926397085, 0.00429949164390564, 0.027862705290317535, -0.0020854142494499683, 0.021443847566843033, -0.011558233760297298, 0.011272315867245197, 0.01578267104923725, -0.020900603383779526, 0.043602488934993744, 0.0011383108794689178, 0.016597537323832512, -0.00123212777543813, 0.01837022975087166, 0.01754106767475605, -0.03411001339554787, -0.002523226197808981, -0.01324514951556921, 0.03070759028196335, 0.009928501211106777, 0.009756950661540031, -0.00758397439494729, -0.03016434609889984, 0.0016851290129125118, 2.6330140826757997e-05, -0.003414932871237397, -0.01807001605629921, 0.02215864323079586, 0.01239454373717308, -0.002299852669239044, -0.01969974860548973, 0.006644018925726414, 0.010278751142323017, 0.003645454067736864, 0.0015403830911964178, -0.0031093580182641745, 0.019957074895501137, 0.015768375247716904, -0.01608288660645485, -0.007483902852982283, -0.007101487368345261, -0.005010712426155806, -0.005675471853464842, -0.006165106315165758, 0.0014599686255678535, 0.013631138950586319, 0.005107209552079439, 0.009278038516640663, 0.01090777013450861, -0.016354508697986603, 0.0030343043617904186, 0.017440997064113617, -0.01248031947761774, 0.009742654860019684, 0.02152962237596512, -0.0027573213446885347, 0.003136162646114826, -0.006679758429527283, -0.011837003752589226, -0.02706213667988777, -0.015682600438594818, -0.007705489173531532, -0.0016333063831552863, 0.001549317967146635, 0.0015198327600955963, 0.08983542770147324, -0.008234437555074692, 0.01438882201910019, -0.011072173714637756, 0.0024267288390547037, -0.017212262377142906, -0.004328083246946335, 0.027390941977500916, 0.009342369623482227, -0.009056451730430126, 0.0016493892762809992, -4.428378088050522e-05, 0.0017164013115689158, 0.008291620761156082, -0.014481745660305023, 0.011386683210730553, 0.02140096016228199, 0.005414571613073349, 0.0016315194079652429, 0.014510337263345718, 0.00408147880807519, -0.010214419104158878, -0.0006089159287512302, -0.029449550434947014, -0.014739071018993855, 0.0012902048183605075, 0.0009694406180642545, -0.0012106839567422867, 0.028334470465779305, 0.027791226282715797, -0.007090765517205, -0.001008754363283515, -0.002969973022118211, -0.018313046544790268, 0.009714063256978989, 0.019842706620693207, 0.003182624466717243, 0.019799819216132164, 0.0016190104652196169, 0.01175122894346714, -0.0075696781277656555, -0.003806282998993993, 0.020914899185299873, 0.027147911489009857, -0.0018674017628654838, -0.01748388446867466, 0.014110052026808262, -0.003037878545001149, 0.003516790922731161, -0.002680480945855379, -0.02947814203798771, -0.01654035411775112, -0.002294491743668914, 0.013459588401019573, 0.00385989248752594, -0.013573955744504929, -0.0006955848075449467, 0.001002499833703041, 0.017055006697773933, -0.0014304833021014929, -0.01380269043147564, -0.0027072858065366745, -0.018155790865421295, -0.03205140307545662, -0.010250159539282322, -0.01771261915564537, -0.019842706620693207, -0.02456035278737545, 0.006447450257837772, -0.019785523414611816, -0.014345934614539146, 0.017469588667154312, 0.008177254348993301, -0.04331657290458679, 0.009106487035751343, 0.021558215841650963, -0.0016583242686465383, 0.02590416744351387, 0.01318796630948782, 0.026633258908987045, -0.005042877979576588, -0.001530554611235857, 0.00251429108902812, -0.008320213295519352, -0.005089339800179005, -0.0017771589336916804, 0.013631138950586319, -0.03302352502942085, 0.00771978497505188, -0.013874169439077377, -0.015768375247716904, 0.023759784176945686, 0.0036186492070555687, 0.005025008227676153, 0.017340924590826035, 0.0001591535547049716, 0.00408147880807519, 0.014603259973227978, 0.013030711561441422, 0.0032362339552491903, 0.01421012356877327, 0.01561112143099308, -0.010800551623106003, 0.002369545167312026, -0.0019692599307745695, 0.0005588802741840482, 0.023831263184547424, 0.003600779455155134, -0.006418858654797077, 0.005343092139810324, -0.0012240862706676126, 0.003579335520043969, 0.012887752614915371, 0.013395257294178009, -0.012373100034892559, -0.02421725168824196, 0.0008850054582580924, 0.008184402249753475, -0.009335221722722054, -0.008906344883143902, -0.0007331115193665028, -0.0062687513418495655, 0.012151514180004597, -0.01922798343002796, 0.0021300888620316982, 0.013202262111008167, -0.021300889551639557, -0.0014349508564919233, -0.011551085859537125, -0.015711192041635513, 0.011658305302262306, -0.0016368803335353732, 0.014438857324421406, 0.0017789459088817239, 0.01471047941595316, -0.00034176133340224624, -0.008427431806921959, -0.003899206407368183, 0.01854178123176098, 0.0025071431882679462, 0.012709054164588451, 0.018398821353912354, 0.013495327904820442, -0.004785552155226469, -0.0012446367181837559, -0.00192994624376297, -0.028863418847322464, -0.02578980103135109, 0.02151532657444477, -0.001963899005204439, 0.029964203014969826, -0.04240163415670395, 0.022959213703870773, -0.012301621027290821, 0.0038491706363856792, -0.021358072757720947, -0.02514648623764515, 0.029449550434947014, 0.0004333444230724126, 0.006854883395135403, -0.001087381737306714, 0.0032076421193778515, 0.006243733689188957, -0.0006571646081283689, -0.011586825363337994, -0.0074052754789590836, 0.009563956409692764, 0.02047172747552395, 0.012859161011874676, 0.0012115774443373084, -0.005092913750559092, 0.007248020730912685, 0.005346666090190411, -0.024303028360009193, -0.0025071431882679462, -0.017626842483878136, 0.0049785468727350235, -0.011093617416918278, -0.006586835253983736, 0.016597537323832512, -0.005646879784762859, 0.005582548212260008, 0.018956361338496208, 0.004206568002700806, -0.0010596835054457188, -0.007040730211883783, 0.022816253826022148, -0.011365239508450031, 0.005564678460359573, -0.000461936229839921, -0.023888446390628815, 0.023430977016687393, 0.0021694025490432978, -0.032823383808135986, -0.012673313729465008, 0.008441728539764881, 0.002887771464884281, 0.026804810389876366, 0.002730516716837883, -0.008984971791505814, 0.0030718313064426184, 0.0012544650817289948, 0.012887752614915371, 0.015453866682946682, -0.002639380283653736, 0.005947093944996595, 0.001307181199081242, -0.02806284837424755, -0.0031754765659570694, 0.002794848056510091, -0.05426723137497902, -0.026647554710507393, 0.005393127910792828, -3.6228375392965972e-06, -0.029735468327999115, 0.020743349567055702, -0.0021694025490432978, 0.012623278424143791, 0.015053581446409225, 0.014031424187123775, -0.00700141629204154, 0.010614704340696335, 0.01248031947761774, 0.016912048682570457, -0.002517865039408207, -0.0018870586063712835, 0.027848409488797188, 0.04228726774454117, 0.03411001339554787, 0.0006714604678563774, 0.01595422253012657, -0.008413136005401611, -0.008005702868103981, 0.004853457678109407, -0.003856318537145853, 0.012051442638039589, 0.0050607481971383095, -0.011129356920719147, 0.015153652057051659, -0.00025375219411216676, -0.02238737791776657, 0.0036132882814854383, 0.006440302357077599, 0.0020979230757802725, 0.026218678802251816, -0.02614719793200493, 0.004249455872923136, -0.0006629722774960101, 0.011536790058016777, -2.3007462004898116e-05, -0.005325222387909889, -0.0013572168536484241, -0.0026483151596039534, -0.0010444940999150276, 0.01911361701786518, -0.0007639370742253959, -0.001005180412903428, -0.005275186616927385, 0.0063152131624519825, -0.026418820023536682, 0.009485328570008278, 0.015339499339461327, -0.01824156567454338, -0.006701202597469091, -0.004853457678109407, 0.029392367228865623, -0.03167971223592758, 0.01718367077410221, 0.007258742582052946, -0.002957463962957263, -0.0014867734862491488, 0.00023029798467177898, 0.0006165106315165758, 0.02473190426826477, 0.0011686896905303001, -0.008027146570384502, -0.0063974144868552685, -0.012987824156880379, -0.001021263306029141, 0.011243724264204502, -0.027262277901172638, 0.016225844621658325, 0.00529305636882782, -0.03814145550131798, -0.005064322147518396, -0.013902761042118073, 0.01160826999694109, 0.01572548784315586, 0.005275186616927385, 0.01782698556780815, 0.015067877247929573, -0.0017289102543145418, 0.020857715979218483, 0.008077182807028294, -0.0014251223765313625, -0.0016645786818116903, 0.013359516859054565, 0.00027988688088953495, 0.013909908942878246, 0.005804134998470545, -0.01499639730900526, 0.0035346609074622393, -0.017355220392346382, -0.008062887005507946, 0.004446024540811777, 0.002882410539314151, 0.025275148451328278, -0.00020014257461298257, 0.009263741783797741, 0.017226558178663254, 0.004985694773495197, -0.0064867641776800156, -0.0025947056710720062, -0.005475329235196114, 0.002310574520379305, 0.01788416877388954, -0.004324509296566248, 0.02883482724428177, -0.016869159415364265, 0.02333090640604496, 0.013080746866762638, 0.023259427398443222, 0.01529661100357771, 0.002701924880966544, 0.011179392226040363, 0.024760495871305466, 0.005171541124582291, 0.0007438334869220853, -0.006601131055504084, -0.011451014317572117, 0.01081484742462635, 0.004556817468255758, -0.00812721811234951, -0.0013438144233077765, -0.01636880449950695, 0.004378119017928839, -0.02385985478758812, 0.002941381186246872, -0.020042849704623222, 0.016568945720791817, -0.0009748016018420458, -0.009899909608066082, -0.012308768928050995, -0.01371691469103098, -0.001530554611235857, -0.008012850768864155, 0.014910622499883175, -0.011065025813877583, -0.0021479588467627764, 0.012616130523383617, 0.004639019258320332, -0.013059303164482117, 0.01789846457540989, -0.0010820208117365837, -0.014924918301403522, 0.008170106448233128, 0.010657592676579952, 0.02584698423743248, -0.00011403212556615472, 0.003314861562103033, -0.013867021538317204, -0.008134366013109684, -5.4894015192985535e-05, -0.014360230416059494, -0.0007460672059096396, 0.015596825629472733, -0.012673313729465008, -0.007462459150701761, -0.027390941977500916, 0.00938525702804327, 0.0008716030861251056, -0.0033774059265851974, 4.149161031818949e-05, -0.0034399505238980055, -0.017355220392346382, 0.002753747394308448, 0.0019370942609384656, -0.01403857208788395, -0.029077857732772827, 0.015682600438594818, 0.03679764270782471, 0.006215142086148262, -0.022473152726888657, -0.0006017679697833955, 0.0072801862843334675, 0.02098637819290161, 0.019213687628507614, 0.012451727874577045, 0.01543956995010376, -0.0006500166491605341, -0.024460282176733017, -0.008770533837378025, -0.0020979230757802725, 0.001807537628337741, 0.004606853239238262, 0.018027128651738167, -0.027004951611161232, 0.017155077308416367, 0.003120079869404435, -0.012380247935652733, -0.022072866559028625, 0.0025947056710720062, 0.007676897570490837, 0.01591133512556553, -0.0032987785525619984, -0.019671157002449036, -0.006661888677626848, 0.026990655809640884, 0.023430977016687393, -0.015982814133167267, -0.004320935346186161, 0.005035730078816414, -0.02333090640604496, 0.002340953331440687, 0.013123635202646255, -0.016826272010803223, 0.015210836194455624, 0.003827726934105158, 0.012115773744881153, 0.019571084529161453, 0.00492851110175252, 0.013502475805580616, 0.03456748276948929, -0.020428838208317757, 0.027934186160564423, -0.004510356113314629, 0.01017867960035801, 0.008434579707682133, -0.01918509602546692, -0.002576835686340928, 0.016168661415576935, 0.001335773034952581, 0.0025089301634579897, 0.018627556040883064, -0.0184131171554327, -0.020600389689207077, 0.02047172747552395, -0.005339518189430237, 0.005053600296378136, 0.015553937293589115, -0.0184131171554327, -0.00546818133443594, -0.006619000807404518, -0.0015546790091320872, 0.005100061651319265, -0.008634722791612148, 0.00022728244948666543, 0.017440997064113617, -0.008763385936617851, -0.0033166485372930765, -0.027691155672073364, 0.02047172747552395, -0.013316629454493523, 0.004328083246946335, -0.00892064068466425, 0.007712637074291706, -0.006225863937288523, -0.01145816221833229, 0.015868447721004486, -0.02444598637521267, 0.015453866682946682, -0.009092191234230995, -0.01052892953157425, 0.0102287158370018, 0.007448163349181414, -0.00403501745313406, 0.013531068339943886, 0.012523206882178783, -0.028520317748188972, 0.02550388313829899, -0.022944917902350426, 0.009249445982277393, -0.0004914214950986207, -0.002439237665385008, -0.021801244467496872, 0.02812003158032894, -0.010543225333094597, 0.026647554710507393, 0.008456024341285229, -0.009714063256978989, -0.012723349966108799, 0.010879178531467915, 0.011536790058016777, -0.006250881589949131, 0.018799105659127235, 0.01207288634032011, -0.005471755284816027, 0.03479621559381485, 0.016883457079529762, 0.0003174136218149215, 0.011408126913011074, 0.014138643629848957, 0.01807001605629921, -0.011908483691513538, 0.0035900576040148735, 0.0041779763996601105, 0.01642598770558834, 0.03305211663246155, -0.015425274148583412, -0.019485309720039368, -0.00803429540246725, 0.003214790252968669, -0.004295917693525553, -0.010207271203398705, 0.01632591523230076, 0.014303046278655529, -0.008591835387051105, 0.01189418788999319, 0.025403812527656555, 0.008763385936617851, -0.005496772937476635, -0.006261603441089392, -0.0190135445445776, 0.0018620408372953534, -0.000235658953897655, 0.00543601531535387, 0.021915612742304802, 0.02355964109301567, 0.0011106126476079226, -0.010843439027667046, -0.014074312523007393, -0.023831263184547424, 0.00041480443906039, 0.0056039923802018166, -0.008513207547366619, -0.00574337737634778, 0.0160685908049345, -0.01583985611796379, -0.009392404928803444, -0.014131495729088783, -0.017641138285398483, 0.008363100700080395, 0.015768375247716904, -0.0025410959497094154, 0.006247307639569044, -0.0036400931421667337, 0.0033577491994947195, -0.0007974430918693542, 0.02741953358054161, -0.01789846457540989, 0.001901354524306953, 0.006994268391281366, 0.024703312665224075, 0.019342349842190742, 0.005982833448797464, -0.026861993595957756, -0.003548956708982587, 0.021243704482913017, 0.005582548212260008, 0.0236883033066988, 0.005800561048090458, 0.014431709423661232, 0.034653257578611374, 0.01040741428732872, 0.01654035411775112, -0.010578964836895466, 0.00318619841709733, 0.03782694786787033, 0.0026107884477823973, 0.015024988912045956, 0.004474616143852472, -0.03127942606806755, -0.02181554026901722, -0.011143652722239494, -0.005403849761933088, -0.0021479588467627764, 0.004824865609407425, 0.0025035692378878593, -0.010679036378860474, 0.025189373642206192, -0.0025875575374811888, 0.009621139615774155, 0.002517865039408207, 0.03882766142487526, 0.007912780158221722, -0.01585415191948414, 0.0007862744387239218, -0.01172263640910387, 0.029263705015182495, -0.013766949996352196, 0.001637773821130395, -0.012008554302155972, -0.024260139092803, -0.007726933341473341, -0.0102287158370018, 0.021429551765322685, 0.01924227923154831, 0.01076481118798256, 0.0432593896985054, -0.00827017705887556, 0.007998554967343807, -0.01087203063070774, -0.006118644494563341, -0.012637574225664139, -0.002137236762791872, 0.003414932871237397, -0.003645454067736864, -0.0013125421246513724, -0.011157948523759842, -0.022058570757508278, 0.0015922057209536433, 0.028434542939066887, 0.004045739304274321, -0.0010167957516387105, 0.00029172567883506417, 0.005589696113020182, -0.006954954471439123, -0.019370943307876587, -0.028677571564912796, -0.0013572168536484241, 0.017269445583224297, -0.005711211357265711, 0.010428857989609241, -0.005296630319207907, 0.003988555632531643, -0.008984971791505814, 0.005750525277107954, 0.013295185752213001, 0.023059284314513206, 0.024874864146113396, -0.007390979677438736, 0.0190135445445776, 0.0026125754229724407, 0.02836306206882, -0.024260139092803, 0.011129356920719147, -0.0029771209228783846, 0.0015144717181101441, 0.0006334870122373104, -0.006472467910498381, 0.0025035692378878593, 0.008727646432816982, 0.008999268524348736, -0.02051461488008499, 0.02385985478758812, -0.01081484742462635, -0.013559659942984581, -0.02999279461801052, -0.004960676655173302, -0.01578267104923725, 0.006761960219591856, -0.023716894909739494, 0.009892761707305908, 0.005414571613073349, -0.002712646732106805, 0.0035900576040148735, -0.018027128651738167, 0.004560391418635845, 0.026804810389876366, 0.001847744919359684, -0.028749052435159683, 0.014095756225287914, -0.006165106315165758, 0.027805522084236145, -0.019285166636109352, -0.024703312665224075, 0.007891335524618626, -0.02806284837424755, 0.03428156301379204, -0.014217271469533443, -0.02128659375011921, -0.03585411235690117, -0.0022748347837477922, 0.019213687628507614, -0.009949944913387299, -0.011236576363444328, 0.011072173714637756, 0.028806235641241074, 0.00533594423905015, -0.025403812527656555, 0.010436005890369415, -0.002775191329419613, -0.022601814940571785, 0.007812708616256714, -0.010914918966591358, -0.004263751674443483, -0.00031115917954593897, 0.020614685490727425, 0.024603242054581642, -0.023774079978466034, -0.0020228696521371603, 0.0021676155738532543, 0.00973550695925951, -0.010007129050791264, -1.6250416592811234e-05, 0.011007841676473618, 0.016411691904067993, 0.00017199752619490027, 0.01178696844726801, 0.013402405194938183, -0.007898484356701374, -0.010107200592756271, -0.018313046544790268, -0.015453866682946682, -0.004485337994992733, 0.001087381737306714, -0.03162252902984619, -0.008484615944325924, -0.0059220758266747, -0.024717608466744423, -0.03268042579293251, -0.0033774059265851974, -0.006090052891522646, 0.0059435199946165085, -0.0022390950471162796, -0.03127942606806755, -0.0027519604191184044, -0.005518216639757156, 0.002564326860010624, -0.0024874862283468246, 0.028506021946668625, 0.006215142086148262, 0.0014474596828222275, 0.0025589659344404936, -0.0017047858564183116, -0.01818438246846199, 0.006865605246275663, -0.001627945457585156, -0.010185827501118183, -0.0038098569493740797, 0.011193688958883286, 0.0005731761921197176, -0.0005258210003376007, 0.0032791218254715204, -0.012966379523277283, -0.030536038801074028, -0.0007728720083832741, 0.01026445534080267, -0.005972111597657204, 0.0028270138427615166, 0.02450316958129406, -0.020771941170096397, 0.014438857324421406, 0.009642583318054676, 0.010243011638522148, 0.005961389746516943, 0.017155077308416367, -0.003095061983913183, -0.00014642126916442066, -0.002076479373499751, -0.007144375238567591, -0.02233019284904003, -0.017097894102334976, 0.002253391081467271, 0.012830568477511406, -0.017326628789305687, 0.0007996768108569086, 0.021386664360761642, -0.01578267104923725, 0.005736229475587606, -0.012265880592167377, -0.0059327976778149605, 0.003280908800661564, 0.006997842341661453, 0.01543956995010376, -0.014781959354877472, 0.03336662799119949, -0.00771978497505188, 0.0073266481049358845, -0.005550382658839226, 0.023702599108219147, 0.02227300964295864, -0.02894919365644455, 0.01306645106524229, 0.004917789250612259, 0.030393080785870552, 0.009406701661646366, -0.012001406401395798, -0.007076469715684652, 0.028491726145148277, -0.00206218333914876, -0.022787662222981453, -0.007905632257461548, -0.036054257303476334, -0.012494615279138088, -0.014810550957918167, -0.0006714604678563774, 0.005343092139810324, 0.0008318425971083343, -0.007172967307269573, 0.004092201124876738, 0.01125802006572485, 0.000518673041369766, -0.004503208212554455, -0.019285166636109352, -0.008649018593132496, 0.022773366421461105, 0.01107932161539793, 0.0260185357183218, 0.008077182807028294, 0.0095067722722888, -0.0008041443070396781, -0.016039997339248657, 0.0036097143311053514, 0.015425274148583412, 0.007619713898748159, 0.014653296209871769, -0.016154365614056587, -0.012608982622623444, -0.004860605578869581, -0.007158671040087938, 0.00583272660151124, 0.02005714550614357, -0.012902048416435719, -0.003981407731771469, 0.01583985611796379, -0.0026572500355541706, -0.0017566084861755371, 0.005578974261879921, -0.008291620761156082, 0.013981388881802559, 0.008377396501600742, -0.0090635996311903, 0.022673295810818672, 0.007955667562782764, -0.0011543937725946307, -0.008877753280103207, -0.014510337263345718, 0.011207984760403633, 0.027905594557523727, -0.0009980323957279325, -0.004563965369015932, 0.01529661100357771, -0.013924204744398594, 0.0006392947398126125, 0.00816295761615038, 0.017112189903855324, -0.0060221473686397076, -0.005064322147518396, -0.020328767597675323, 0.01032163854688406, 0.011350943706929684, -0.0049678245559334755, 0.003554317867383361, 0.009370961226522923, -0.02128659375011921, 0.0042566037736833096, -0.0015752293402329087, 0.023316610604524612, -0.0043030655942857265, -0.0003739270905498415, -0.02806284837424755, 0.008405988104641438, 0.0090635996311903, 0.015482458285987377, -0.016225844621658325, -0.012280176393687725, -0.0074553112499415874, -0.017398107796907425, -0.005982833448797464, 0.01453178096562624, 0.016597537323832512, 0.006118644494563341, 0.014553224667906761, -0.01672620140016079, 0.0013688323087990284, 0.005003564525395632, 0.010886326432228088, 0.0014063590206205845, 0.002750173443928361, 0.007376683410257101, 0.031365200877189636, -0.003305926453322172, -0.0026536760851740837, 0.010078608058393002, -0.004746238235384226, -0.0024749774020165205, -0.02643311582505703, -0.009578252211213112, -0.010478893294930458, -0.02607571892440319, -0.003529299981892109, -8.074948709690943e-05, 0.024774791672825813, -0.0063152131624519825, 0.0043423790484666824, -0.001439418294467032, 0.000861327862367034, -0.0061079226434230804, -0.001162435277365148, -0.007426719181239605, 0.025761209428310394, -0.011686896905303001, 0.01248031947761774, -0.010750515386462212, -0.0035900576040148735, 0.030650407075881958, 0.011122209019958973, 0.023702599108219147, 0.022930622100830078, 0.00107487291097641, -0.007255168631672859, 0.012687609530985355, -0.0038098569493740797, 0.01117224432528019, -0.010972102172672749, 0.014281602576375008, 0.0003654389001894742, -0.002768043428659439, -0.0051429495215415955, -0.006633297074586153, 0.008191550150513649, -0.0075696781277656555, 0.008827717043459415, -0.025403812527656555, 0.00045970248174853623, -0.04005710780620575, 0.0012705479748547077, -0.010128644295036793, 0.0385989248752594, -0.007748377043753862, -0.007562530227005482, 0.03416719660162926, 0.019499605521559715, 0.00786274392157793, 0.011872743256390095, 0.02596135251224041, -0.009428145363926888, 0.002882410539314151, -0.007519642822444439, -0.006426006555557251, 0.024517465382814407, 0.007040730211883783, 0.021887021139264107, 0.011758376844227314, 0.014488893561065197, -0.014967805705964565, -0.009642583318054676, -0.01888488233089447, -0.018270159140229225, 0.009306630119681358, -0.0034274416975677013, 0.016883457079529762, -0.008934936486184597, -0.008062887005507946, 0.0032576778903603554, 0.018027128651738167, -0.013388109393417835, -0.0010784468613564968, 0.02210146002471447, 0.021586807444691658, 0.009671174921095371, 0.015939926728606224, -0.039914149791002274, -0.0047605340369045734, 0.0169549360871315, -0.00015680813521612436, -0.010285899043083191, -0.01799853704869747, -0.0035525308921933174, -0.01759825088083744, 0.006704776547849178, 0.0025035692378878593, 0.0013840217143297195, 0.0042566037736833096, 0.009849874302744865, -0.009320925921201706, -0.016568945720791817, -0.003777691163122654, -0.022201530635356903, 0.0025375219993293285, -0.01799853704869747, 0.0213437769562006, -0.0333380363881588, 0.002909215399995446, -0.023874150589108467, -0.004660462960600853, -0.003196920268237591, 0.005997129250317812, -0.002030017552897334, 0.00912078283727169, 0.013938501477241516, 0.01072907168418169, 0.01782698556780815, 0.009985685348510742, 0.014460301026701927, -0.04689054563641548, -0.025303740054368973, -0.006547521334141493, 0.01353821624070406, 0.0012428496265783906, -0.002928872127085924, 0.010478893294930458, -0.0023749060928821564, 0.010400266386568546, 0.007505346555262804, -0.0014715840807184577, 0.0042137159034609795, 0.001470690593123436, 0.002273047808557749, -0.03542523831129074, -0.01578267104923725, -0.00444245059043169, 0.014195826835930347, -0.014417413622140884, -0.009542512707412243, 0.008777681738138199, 0.021143633872270584, -0.0043852669186890125, -0.0166690181940794, 0.01160826999694109, 0.013137931004166603, 0.005854170303791761, 0.0026197233237326145, -0.001269654487259686, -0.028105735778808594, 0.004492485895752907, 0.005010712426155806, -0.020157216116786003, 0.010700480081140995, 0.008892049081623554, -0.0032737606670707464, -0.01818438246846199, -0.01310219056904316, -0.01145816221833229, 0.01160826999694109, 0.019513901323080063, 0.019313758239150047, -0.0026572500355541706, -0.004778404254466295, -0.01736951619386673, 0.019742636010050774, 0.007012138143181801, -0.004696202464401722, 0.0019942778162658215, 0.0019174374174326658, 0.0035578918177634478, -0.011801264248788357, -0.024946343153715134, -0.011572529561817646, -0.010271603241562843, -0.0019728338811546564, 0.01508217304944992, -0.011386683210730553, 0.0002023763081524521, 0.00561114028096199, -0.012873456813395023, -0.0041315145790576935, -0.00583272660151124, -0.0029145763255655766, 0.020614685490727425, -0.014331637881696224, -0.013166522607207298, -0.01040741428732872, 0.002080053323879838, -0.0043852669186890125, 0.020886307582259178, 0.0006040016887709498, -0.002526800148189068, 0.004860605578869581, -0.03411001339554787, 0.007376683410257101, -0.0017155078239738941, 0.015868447721004486, -0.0015064303297549486, 0.009313778020441532, -0.00013246043818071485, 0.020671868696808815, 0.01655464991927147, 0.008327361196279526, 0.0021854855585843325, -0.0007782329921610653, 0.004864179529249668, -0.01847030036151409, 0.007112209685146809, -0.0016895964508876204, -0.012244436889886856, -0.009420997463166714, -0.013502475805580616, 0.01837022975087166, 0.010335934348404408, 0.03268042579293251, 0.014517485164105892, 0.014081460423767567, -0.0190135445445776, 0.010557521134614944, 0.009370961226522923, 0.006093626841902733, -0.008720498532056808, -0.006719072349369526, 0.007655453868210316, -0.007641157601028681, -0.004521077964454889, 0.0034739032853394747, 0.010807699523866177, -0.021658286452293396, 0.003397062886506319, -0.022172939032316208, 0.00538240559399128, -0.010285899043083191, 0.03165112063288689, 0.0031004229094833136, -0.011329500004649162, 0.01742669939994812, -0.012508911080658436, -0.015997109934687614, -0.006254455540329218, 0.006783403921872377, 0.00932807382196188, 0.0012240862706676126, -0.02491775155067444, 0.014696183614432812, 0.011851299554109573, 0.010335934348404408, 0.005511068738996983, 0.006436728406697512, 0.0060221473686397076, 0.022601814940571785, -0.02094349078834057, -0.010214419104158878, -0.009814133867621422, -0.0011106126476079226, -0.01286630891263485, -0.009135079570114613, -0.0013536429032683372, 0.004313787445425987, 0.002868114737793803, -0.004438876640051603, 0.016883457079529762, 0.027290869504213333, -0.0074553112499415874, -6.500166637124494e-05, 0.005650453735142946, -0.020500319078564644, 0.001445672707632184, -0.004742664285004139, 0.01333092525601387, -0.007255168631672859, 0.001781626371666789, 0.01350962370634079, 0.0009605056839063764, -0.003963537979871035, 0.008005702868103981, 0.012208697386085987, -0.0022015683352947235, 0.00560041842982173, 0.016111478209495544, 0.006565391551703215, 0.01493921410292387, -0.008913492783904076, 0.02942095883190632, 0.00435667484998703, 0.008291620761156082, 0.00622943788766861, 0.0018834846559911966, 0.007155097089707851, 0.015039285644888878, 0.008384544402360916, 0.011629713699221611, -0.006554669700562954, -0.01642598770558834, -0.02378837577998638, 0.018556077033281326, -0.002898493316024542, -0.019213687628507614, 0.00015222898218780756, -0.007390979677438736, -0.009342369623482227, -0.0071979849599301815, 0.019542492926120758, 0.020500319078564644, -0.010128644295036793, -0.0006763747078366578, 0.010243011638522148, -0.009170819073915482, 0.002335592405870557, -0.022902028635144234, -0.00017668836517259479, 0.005321648437529802, 0.004217289853841066, -0.0065260776318609715, -0.031593937426805496, 0.009099339134991169, 0.0034470984246581793, 0.012551798485219479, 0.012894900515675545, 0.008298768661916256, -0.003277334850281477, 0.01508217304944992, -0.018627556040883064, -0.004556817468255758, -0.011386683210730553, -0.013852725736796856, 0.005654027685523033, 0.01619725301861763, 0.011922779493033886, -0.01485343836247921, 0.02526085264980793, 0.007094339467585087, 0.015639713034033775, 0.019399534910917282, -0.004074330907315016, 0.0053967018611729145, 0.0008144194725900888, 0.02554677054286003, 0.0022712608333677053, -0.020571798086166382, -0.002121153986081481, -0.00619727186858654, 0.003425654722377658, -0.011107913218438625, 0.012230141088366508, 0.005571826361119747, -0.0022927047684788704, -0.02683340199291706, 0.00264652818441391, 0.026533188298344612, -0.0035275130067020655, 0.005257316865026951, 0.0046318708918988705, -0.011536790058016777, 0.0204574316740036, -0.035110726952552795, -0.0020693312399089336, 0.0014778384938836098, 0.01107932161539793, -0.0065260776318609715, 0.0007460672059096396, 0.010614704340696335, -0.0008112922660075128, 0.001310755149461329, 0.025632545351982117, 0.017326628789305687, -0.010922066867351532, 0.0064796158112585545, 0.010607556439936161, 0.00676910812035203, -0.010879178531467915, 0.011965666897594929, 0.025632545351982117, 0.004417432472109795, -0.020100032910704613, -0.020628981292247772, -0.011415274813771248, -0.0014036785578355193, 0.010414562188088894, -0.0028484577778726816, -0.0035096430219709873, -0.01014294009655714, -0.0052680387161672115, 0.005125079769641161, 0.006597557105123997, 0.005082191899418831, 0.007941371761262417, -0.024760495871305466, -0.002137236762791872, 0.00044071575393900275, -0.020042849704623222, 0.0007232830976136029, -0.004985694773495197, -0.0006558243185281754, -0.022115755826234818, 0.013230853714048862, -0.010450301691889763, 0.020157216116786003, 0.0049320850521326065, -0.0011963880388066173, -0.01093636266887188, -0.006722646299749613, 0.01776980236172676, -0.011393831111490726, 0.0032844827510416508, 0.00726589048281312, -0.0005874720518477261, -0.014253010973334312, -0.021086450666189194, 0.009756950661540031, -0.020428838208317757, -0.009478180669248104, -0.0046747587621212006, -0.0225160401314497, 0.02620438113808632, 0.011529642157256603, 0.0006929043447598815, 0.009106487035751343, -0.03185126185417175, 0.009463884867727757, 0.0014697971055284142, -0.004635445307940245, 0.007426719181239605, 0.017869872972369194, 0.022029979154467583, -0.0035846964456140995, -0.005050026345998049, -0.0008984078885987401, 0.0030396655201911926, 0.04334516450762749, 0.016883457079529762, 0.004506782162934542, -0.013881317339837551, 0.014188678935170174, -0.011551085859537125, 0.002609001472592354, -0.000153234155732207, -0.015482458285987377, -0.011157948523759842, -0.00637239683419466, -0.014724775217473507, 0.01882769912481308, 0.025975648313760757, -0.003027156461030245, -0.011014989577233791, 0.0072801862843334675, 0.00812721811234951, 0.007669749669730663, 0.004435302689671516, 0.008470320142805576, 0.006093626841902733, -0.032137181609869, 0.01706930249929428, 0.014253010973334312, -0.007294482085853815, -0.0032541039399802685, 0.005646879784762859, 0.004717646632343531, 0.014810550957918167, 0.006157958414405584, 0.010564669035375118, -0.022673295810818672, 0.006118644494563341, -0.016683313995599747, 0.026418820023536682, 0.004220864269882441, 0.002457107650116086, -0.007287334185093641, -0.0076983412727713585, 0.0010641509434208274, -0.030135754495859146, -0.0011427784338593483, 0.00327554764226079, -0.02473190426826477, -0.015282315202057362, 0.007748377043753862, -0.0053037782199680805, 0.010536077432334423, -0.00020494511409197003, 0.011572529561817646, -0.00044227935723029077, -0.015310907736420631, -0.009742654860019684, 0.009935649111866951, -0.001404572045430541, 0.011715488508343697, -0.0016511762514710426, -0.000235658953897655, 0.000631700037047267, -0.012058590538799763, 0.003127227770164609, 0.008227289654314518, 0.021186521276831627, -0.01649746671319008, 0.020543206483125687, -0.016697609797120094, -0.007348091807216406, 0.00574337737634778, 0.008770533837378025, 0.015682600438594818, -0.0027894871309399605, 0.010957806371152401, -0.019857002422213554, 0.0026447412092238665, -0.008634722791612148, -0.039027802646160126, 0.0004051993601024151, 0.0073266481049358845, 0.019742636010050774, -0.002664398169144988, 0.0007764460169710219, 0.016454579308629036, -0.009313778020441532, -0.019328054040670395, 0.004781978204846382, 0.014896326698362827, 0.013531068339943886, 0.02836306206882, -0.007183689158409834, -0.008227289654314518, -0.007998554967343807, 0.011815560050308704, 0.020314471796154976, 0.008191550150513649, -0.027047840878367424, -0.021315185353159904, 0.007912780158221722, -0.003359536174684763, -0.007083617616444826, 0.012215845286846161, -0.004789126105606556, -0.010471745394170284, 0.006619000807404518, -0.003438163548707962, -0.01245887577533722, -0.006872753147035837, 0.01595422253012657, 0.006218716036528349, -0.001134736929088831, -0.01543956995010376, -0.0054789031855762005, 0.0013634712668135762, 0.00018763366097118706, -0.009656879119575024, 0.027633972465991974, 0.009835578501224518, -0.0020496745128184557, 0.00028457771986722946, -0.004052887205034494, -0.018270159140229225, -0.012029998935759068, 0.023373793810606003, -0.003020008560270071, -0.006472467910498381, -0.014152939431369305, -0.00047310488298535347, 0.022301601245999336, -0.011429570615291595, 0.019142208620905876, -0.0006343804998323321, -0.00015044199244584888, 0.005146523471921682, 0.01971404440701008, 0.0047212205827236176, -0.0074410149827599525, 0.01493921410292387, -0.010014276951551437, 0.010607556439936161, -0.008913492783904076, -0.021801244467496872, 0.027033543214201927, 0.02145814336836338, -0.01432448998093605, 0.015425274148583412, 0.0011383108794689178, -0.019914187490940094, 0.009885613806545734, -0.0023123614955693483, -0.015796968713402748, 0.013759802095592022, -0.027290869504213333, -0.00042977044358849525, 0.0111150611191988, -0.010257307440042496, 0.021415255963802338, 0.01771261915564537, 0.008584687486290932, -0.008227289654314518, -0.0014135069213807583, 0.008606131188571453, 0.0049320850521326065, 0.005528938956558704, 0.0006138301687315106, 0.004860605578869581, 0.0042101419530808926, -0.0016127560520544648, -0.004814143758267164, -0.012501763179898262, -0.0020854142494499683, -0.00609720079228282, 0.0038205788005143404, 0.001926372293382883, 0.011472458951175213, -0.0074553112499415874, 0.003223725128918886, -0.0071979849599301815, -0.0095067722722888, -0.02170117385685444, -0.006801273673772812, 0.005711211357265711, 0.02028588019311428, 0.030736181885004044, -0.02548958733677864, 0.003917076159268618, 0.012330212630331516, -0.010421710088849068, 0.010957806371152401, -0.0008564136805944145, 0.0018405969021841884, 0.00457468768581748, 0.011951371096074581, -0.015325203537940979, -0.006583261303603649, -0.010514633730053902, 0.009192262776196003, -0.0002957464021164924, -0.014260158874094486, -0.029220815747976303, -0.009692619554698467, 0.004785552155226469, 0.0021193670108914375, -0.00941384956240654, -0.01014294009655714], "5a4eece9-67b5-43df-a81c-2f3c91b9fbce": [-0.02620430663228035, 0.0009411550709046423, -0.01701480895280838, 0.026549099013209343, -0.054687246680259705, -0.022771362215280533, 0.010298832319676876, 0.03369981795549393, 0.0004670640337280929, 0.027628453448414803, -0.00010054525046143681, 0.030971450731158257, 0.0034760432317852974, -0.021677017211914062, -0.0031706010922789574, 0.023296047002077103, -0.0021081124432384968, 0.01914353482425213, -0.0008872810867615044, -0.012127736583352089, 0.07195690274238586, -0.026369206607341766, -0.015125940553843975, 0.004354891832917929, 0.0055017052218317986, -0.019608257338404655, -0.013102153316140175, 0.005007001105695963, -0.06005403399467468, -0.03477917239069939, 0.008612342178821564, 0.025754574686288834, -0.015021003782749176, 0.0059701744467020035, 0.005617885384708643, -0.040415793657302856, 0.004680946469306946, -0.005906462669372559, -0.009496812708675861, -0.011603050865232944, -0.03801723197102547, 0.03399963676929474, -0.0012358223320916295, -0.002239283872768283, -0.030056998133659363, -0.0003030997177120298, 0.0129597382619977, -0.011198293417692184, -0.011423158459365368, -0.03271041065454483, 0.012877287343144417, 0.03732764348387718, -0.022261667996644974, -0.01174546591937542, 0.03504901006817818, -0.04833105579018593, 0.01672998070716858, 0.07795331627130508, 0.01364182960242033, -0.07273643463850021, -0.019848112016916275, -0.004354891832917929, -0.0015834267251193523, -0.030941469594836235, 0.002441662596538663, -0.007885277271270752, 0.0018710668664425611, 0.0023610859643667936, -0.010433751158416271, 0.02403060719370842, -0.023895688354969025, 0.0294723492115736, -0.039876118302345276, 0.004729667212814093, -0.0016658772947266698, 0.008439945057034492, 0.039336442947387695, -0.024120554327964783, 0.022636443376541138, 0.001704291789792478, -0.012060277163982391, 0.004358639474958181, 0.030146945267915726, 0.030581684783101082, 0.040895506739616394, 0.023101164028048515, -0.015470734797418118, -0.04458329826593399, -0.028692815452814102, -0.029577285051345825, 0.02217172086238861, 0.024225492030382156, -0.026953857392072678, -0.01146063581109047, -0.007416808046400547, 0.020192906260490417, 0.02590448595583439, 0.008679801598191261, 0.009699190966784954, -0.026309242472052574, 0.0005893345223739743, 0.006195039954036474, -0.02190188318490982, 0.0015272103482857347, -0.001341696479357779, 0.0018757516518235207, -0.015320824459195137, 0.034659244120121, -0.03026687353849411, -0.0016199672827497125, 0.00566660612821579, -0.04113536328077316, 0.0010240741539746523, 0.009916560724377632, -0.03627827391028404, -0.015155922621488571, -0.03268042579293251, -0.010328814387321472, -0.012270151637494564, -0.039876118302345276, 0.03193087503314018, 0.006869635544717312, 0.004744658246636391, -0.013289541006088257, -0.013716785237193108, 0.01836400106549263, 0.020972440019249916, -0.005494209472090006, 0.009661713615059853, 0.0031556100584566593, 0.011550582014024258, -0.008822216652333736, 0.021512115374207497, -0.019608257338404655, 0.005535434931516647, 0.00045863157720305026, 0.014848606660962105, 0.06542082130908966, -0.018154127523303032, 0.031151343137025833, -0.017944253981113434, -0.034689225256443024, -0.015065977349877357, 0.030446765944361687, 0.0340895839035511, 0.00012156782031524926, -0.0323806069791317, 0.042004842311143875, -0.014278948307037354, 0.011655519716441631, -0.051479168236255646, -0.005096947308629751, -0.01921848952770233, 0.010336309671401978, 0.031750984489917755, -0.01672998070716858, -0.0010568670695647597, 0.036038417369127274, 0.0032905293628573418, 0.056096404790878296, 0.007326861843466759, -0.0458725281059742, -0.011685501784086227, 0.010193894617259502, 0.028812743723392487, 0.0443134605884552, 0.050099994987249374, 0.022471541538834572, -0.01245004404336214, 0.014346407726407051, 0.012030295096337795, -0.01026885025203228, 0.03642818331718445, -0.001898238086141646, 0.009129532612860203, -0.02731364220380783, 0.03885672986507416, 0.013431955128908157, 0.02974218688905239, -0.021167322993278503, -0.0259194765239954, 0.007817817851901054, -0.0028314292430877686, 0.008724774233996868, -0.007870286703109741, 0.03738760948181152, 0.00047315412666648626, 0.026279261335730553, 0.007128230761736631, -0.0173296220600605, -0.017074773088097572, 0.0083799809217453, 0.009444343857467175, 0.01227764692157507, -0.02163204364478588, -0.021467143669724464, 0.010388778522610664, 0.026863910257816315, -0.009736668318510056, 0.057145774364471436, -0.012892278842628002, -0.040625669062137604, -0.03558868542313576, 0.03513895347714424, -0.03456929698586464, 0.03265044465661049, -0.03906660154461861, -0.051479168236255646, 0.03244057297706604, -0.011625537648797035, 0.050129976123571396, -0.02780834585428238, 0.004058819264173508, 0.007042032666504383, -0.020612655207514763, -0.0006291544414125383, 0.003790854709222913, 0.04086552560329437, 0.005737813655287027, -0.015830518677830696, -0.01866382174193859, 0.013611847534775734, -0.007270645350217819, 0.008162611164152622, -0.04506301134824753, -0.008597350679337978, -0.013859199360013008, 0.04377378523349762, -0.019233480095863342, -0.015785545110702515, 0.012892278842628002, -0.01566561684012413, 0.0026815191376954317, -0.008424954488873482, 0.0003272258909419179, 0.010793535970151424, 0.020642636343836784, -0.013169612735509872, -0.00015705438272561878, 0.00013152278552297503, 0.015365797095000744, 0.027973245829343796, -0.006843401584774256, 0.01256997138261795, -0.00972917303442955, 0.01807917281985283, 0.005606641992926598, 0.041465166956186295, 0.00020905448764096946, -0.011138329282402992, -0.006120084784924984, 0.02891768142580986, 0.004283684305846691, -0.00797522347420454, -0.016430160030722618, 0.025784557685256004, 0.024495329707860947, -0.025874502956867218, -0.0023011218290776014, 0.005977669730782509, 0.006730968598276377, -0.004819613415747881, -0.007150717545300722, 0.023865707218647003, 0.03331005200743675, -0.028018219396471977, 0.02728365920484066, -0.016370195895433426, -0.010148921981453896, 0.015785545110702515, -0.014398876577615738, -0.008724774233996868, 0.0018588866805657744, 0.03187091276049614, 0.01646014116704464, -0.026294251903891563, -0.02242656797170639, 0.009137027896940708, 0.03127127140760422, -0.01146813202649355, -0.0007406501681543887, 0.04854092746973038, 0.019038597121834755, -0.011565573513507843, 0.02379075065255165, -0.0012873540399596095, -0.04722172021865845, 0.015050985850393772, -0.04698186367750168, 0.008132629096508026, -0.0005794966709800065, -0.0025184915866702795, 0.025035006925463676, 0.02026786096394062, 0.018049189820885658, -0.0037271426990628242, 0.000207649078220129, -0.025049997493624687, -0.02292127162218094, 0.024225492030382156, 0.013274549506604671, 0.003863935824483633, -0.0005902714910916984, -0.040955472737550735, 0.036847930401563644, -0.02490008808672428, 0.0062662470154464245, 0.020447753369808197, -0.022636443376541138, 0.04830107092857361, 0.028258075937628746, -0.026309242472052574, -0.058764804154634476, 0.004943289328366518, -0.01362683903425932, 0.015215886756777763, -0.012599953450262547, 0.020057987421751022, 0.0012208312982693315, -0.018229082226753235, -0.006165057886391878, -0.020687609910964966, -0.06260250508785248, 0.03265044465661049, 0.038496945053339005, -0.05591651052236557, 0.05642620474100113, -0.007019545882940292, -0.02674398198723793, -0.036038417369127274, -0.008634828962385654, -0.02136220596730709, -0.01972818374633789, -0.004774640314280987, -0.03804721310734749, -0.03945636749267578, -0.04266444966197014, -0.023281056433916092, -0.040625669062137604, -0.017404576763510704, 0.002175572095438838, 0.01566561684012413, 0.013334513641893864, -0.025874502956867218, 0.01807917281985283, 0.007892772555351257, 0.0016190303722396493, -0.011408167891204357, -0.023086173459887505, 0.007900268770754337, 0.0009631731663830578, 0.0023835725151002407, 0.027148740366101265, -0.018468938767910004, 0.029922079294919968, -0.01456377748399973, -0.027073785662651062, -0.00876974780112505, 0.009182000532746315, -0.012390079908072948, -0.03513895347714424, -0.03480915352702141, -0.015515707433223724, -0.005381776951253414, -0.017209693789482117, 0.026579082012176514, -0.015155922621488571, -0.03594847023487091, -0.012390079908072948, 0.00662977946922183, -0.04731166362762451, 0.0030206909868866205, 0.013589361682534218, 0.008814720436930656, -0.037177734076976776, -0.05870484188199043, 0.03699784353375435, 0.0028595374897122383, -0.019323427230119705, 0.019383391365408897, 0.0021549593657255173, 0.023655831813812256, -0.008552378043532372, 0.021437160670757294, 0.03501902520656586, 0.0034535566810518503, -0.021407179534435272, -0.01729963906109333, -0.0156955998390913, -0.0054829660803079605, -0.029382402077317238, -0.005449236370623112, -0.04539281502366066, 0.023385994136333466, -0.033100176602602005, -0.011130833998322487, -0.0017942378763109446, -0.04557270556688309, 0.014788642525672913, -0.02458527497947216, -0.0009987768717110157, -0.01617531292140484, -0.026009423658251762, 0.010486220009624958, -0.001211461960338056, -0.01524586882442236, 0.013559379614889622, -0.007795331533998251, 0.044433388859033585, -0.0026740236207842827, -0.0031668534502387047, 0.001877625472843647, 0.02999703399837017, 0.022591469809412956, 0.05834505707025528, 0.011790438555181026, -0.020597664639353752, 0.06101346015930176, -0.013694298453629017, -0.03645816445350647, 0.04164505749940872, 0.04641220346093178, -0.004302423447370529, 0.02380574308335781, -0.01726965792477131, 0.022516515105962753, 0.003863935824483633, 0.018034199252724648, -0.005366785917431116, -0.019008615985512733, -0.008627332746982574, 0.05648617073893547, 0.0021362206898629665, -0.003792728530243039, 0.021437160670757294, -0.0026196809485554695, 0.027733391150832176, 0.02239658683538437, 0.004441090393811464, -0.013446946628391743, -0.020147932693362236, 0.017164720222353935, -0.004830856807529926, -0.013401973061263561, -0.04134523868560791, -0.03459927812218666, -0.03561866655945778, -0.008132629096508026, 0.05285834148526192, -0.0006268121069297194, 0.01568060927093029, 0.005737813655287027, -0.08724774420261383, -0.004819613415747881, -0.023970643058419228, 0.007180699612945318, 0.019503319635987282, -0.0018813732312992215, 0.007053275592625141, -0.0453028678894043, -0.044163551181554794, 0.0022486532106995583, 0.03870681673288345, 0.008357495069503784, 0.00111683108843863, -0.039276476949453354, 0.010388778522610664, 0.0083799809217453, 0.0030712855514138937, 0.01783931627869606, -0.011408167891204357, -0.0032942770048975945, -0.00620253523811698, 0.048211127519607544, -0.004377378150820732, -0.012397575192153454, -0.017929261550307274, -0.010771049186587334, 3.100682079093531e-05, -0.024945059791207314, -0.0164751335978508, -0.011722979135811329, -0.018768759444355965, 0.007757853716611862, 0.01593545638024807, -0.005400515627115965, -0.019578274339437485, -0.006311220116913319, 0.04779137670993805, -0.008582360111176968, 0.059814177453517914, 0.009219478815793991, 0.0014588137855753303, 0.03103141486644745, -0.02104739472270012, -0.023281056433916092, -0.0009299117955379188, -0.04272441193461418, -0.02944236621260643, -0.0356486514210701, 0.02516992576420307, -0.00021865811140742153, 0.006210030987858772, 0.014886084944009781, -0.007027041632682085, 0.03079155832529068, -0.02374577894806862, 0.04692189767956734, 0.00406256690621376, -0.032020822167396545, -0.04155511409044266, 0.020867502316832542, -0.017164720222353935, 0.005696588195860386, 0.007735367398709059, 0.025799548253417015, 0.012120241299271584, 0.010073966346681118, 0.03112136200070381, 0.012742368504405022, 0.0022805090993642807, -0.011378185823559761, -0.00020811754802707583, -0.008987117558717728, -0.02055269107222557, -0.0017014809418469667, -0.01539577916264534, -0.02969721332192421, 0.046831950545310974, -0.018199101090431213, -0.025559691712260246, 0.010336309671401978, -0.030626658350229263, 0.02401561662554741, 0.03936642408370972, -0.008454936556518078, -0.013881686143577099, 0.010388778522610664, 0.003624079516157508, 0.006727220956236124, -0.0030000782571733, 0.014211488887667656, 0.005123181734234095, 0.013357000425457954, -0.00849241390824318, 0.047701429575681686, -0.01053868792951107, 0.006273742765188217, 0.002246779389679432, 0.030131954699754715, -0.03993608057498932, 0.00943684857338667, -0.017899280413985252, 0.00184202182572335, 0.009781641885638237, -0.020717592909932137, 0.005164407193660736, -0.009526794776320457, -0.021152332425117493, -0.013536892831325531, -0.01971319317817688, 0.02133222483098507, -0.0008882180554792285, 0.025499727576971054, -0.011618041433393955, -0.013154621236026287, -0.007038284558802843, 0.013267054222524166, -0.014391381293535233, 0.023056192323565483, 0.047401610761880875, 0.005910210311412811, 0.026848919689655304, 0.005479218438267708, 0.012607449665665627, 0.03322010487318039, 0.032020822167396545, 0.015260860323905945, -0.04350394383072853, -0.010733571834862232, 0.007652916479855776, -0.016969837248325348, 0.013342008925974369, -0.011430653743445873, 0.026114359498023987, 0.034959062933921814, -0.01785430684685707, -0.03184093162417412, -0.005096947308629751, 0.016355205327272415, 0.0026009422726929188, 0.01758446916937828, -0.0101189399138093, 0.009167009964585304, -0.019668221473693848, 0.00811014324426651, 0.029892098158597946, 0.020087968558073044, 0.014878588728606701, -0.005051974207162857, 0.018199101090431213, 0.00797522347420454, -0.00721817696467042, -0.01971319317817688, -0.03624828904867172, 0.03870681673288345, -0.016355205327272415, 0.039306458085775375, -0.002754600252956152, 0.03702782467007637, 0.0017061656108126044, 0.0020837520714849234, 0.038227107375860214, 0.0030937721021473408, 0.04182495176792145, 0.0060638682916760445, 0.0010615517385303974, 0.02888769842684269, 0.003848944790661335, 0.009376884438097477, 0.029292456805706024, -0.02647414430975914, 0.06236265227198601, -0.019248472526669502, 0.010920959524810314, 0.01893366128206253, -0.030116962268948555, 0.013454441912472248, -0.011318221688270569, -0.016685007140040398, -0.0020406527910381556, -0.010576166212558746, 0.012779845856130123, -0.023131147027015686, 0.011363194324076176, -0.002332977717742324, -0.014698697254061699, 0.02971220575273037, -0.006734716705977917, 0.008612342178821564, -0.006809671875089407, 0.013739271089434624, 0.00043099187314510345, 0.05750555917620659, -0.01914353482425213, 0.028018219396471977, -0.015080967918038368, 0.013911668211221695, 0.03912656754255295, 0.017644433304667473, -0.018783750012516975, 0.00906207226216793, 0.016430160030722618, 0.01782432571053505, 0.016640033572912216, -0.01833401992917061, 0.00024430680787190795, -0.012232673354446888, 0.014916067011654377, 0.025844521820545197, 0.03519891947507858, -0.008537386544048786, 0.016010411083698273, -0.01082351803779602, 0.019023606553673744, 0.010381282307207584, 0.030701613053679466, 0.005760299973189831, 0.026684017851948738, 0.03492908179759979, 0.031721003353595734, -0.0020612655207514763, 0.01969820261001587, -0.010058975778520107, -0.003401088062673807, 0.005621633026748896, 0.020372798666357994, 0.016864899545907974, 0.013536892831325531, -0.02001301385462284, -0.027208704501390457, -0.03756750002503395, -0.025020014494657516, -0.010935950092971325, -0.022531505674123764, -0.014451345428824425, -0.002587825059890747, 0.0458725281059742, -0.03885672986507416, -0.010943446308374405, -0.010028993710875511, 0.008559873327612877, 0.0037496292497962713, 0.03402961790561676, 0.004680946469306946, -0.008949640206992626, 0.015575671568512917, -0.005138172768056393, 0.034209512174129486, -0.01553069893270731, -0.03774739429354668, -0.027718398720026016, 0.01188788004219532, -0.04164505749940872, 0.01807917281985283, -0.0011393176391720772, -0.031481146812438965, -0.023850714787840843, 0.0009603623184375465, 0.029577285051345825, 0.0022936263121664524, -0.010988418944180012, -0.0071732038632035255, 0.01947333663702011, 0.010043984279036522, 0.024495329707860947, -0.006491112522780895, 0.011917862109839916, -0.001797985634766519, 0.026788955554366112, 0.0007617312949150801, 0.026684017851948738, -0.0021943107713013887, -0.031990841031074524, -0.033879708498716354, 0.03588850796222687, -0.001978814834728837, 0.011033391579985619, 0.0036521877627819777, -0.00039937018300406635, 0.03543877601623535, -0.015485725365579128, -0.01750951260328293, 0.005096947308629751, 0.012697395868599415, 0.005932697094976902, -0.015275850892066956, 0.014646228402853012, 0.04509299248456955, -0.023071182891726494, 0.0021437162067741156, 0.006760950665920973, 0.03049173764884472, 0.0019994275644421577, 0.00865731481462717, -0.01256997138261795, 0.018963642418384552, -0.005355542525649071, 0.004444838035851717, 0.008095151744782925, 0.04449335113167763, -0.03462925925850868, 0.03867683559656143, 0.04053572192788124, -0.02190188318490982, 0.008327513001859188, 0.036608073860406876, -0.0074692764319479465, -0.004920803010463715, 0.03651813045144081, -0.018229082226753235, -0.0020612655207514763, -0.011550582014024258, -0.014496318064630032, 0.014346407726407051, 0.029097573831677437, -0.002102490747347474, 0.00561413774266839, 0.03274039179086685, 0.0009575515286996961, 0.030071990564465523, 0.00866481103003025, 0.038496945053339005, 0.03250053524971008, -0.021961847320199013, -0.05105942115187645, 0.02623428776860237, -0.004677198827266693, -0.042244698852300644, -0.02080753818154335, -0.005996408872306347, -0.04653213173151016, 0.004145017359405756, -0.021662026643753052, 0.04320412501692772, -0.04536283016204834, 0.012877287343144417, 0.014766156673431396, 0.01890367828309536, -0.0051868935115635395, 0.007405564654618502, 0.002805195050314069, -0.00795273669064045, 0.033909689635038376, 0.013844208791851997, -0.01869380474090576, 0.00876974780112505, -0.023925671353936195, -0.004737162962555885, -0.002516617765650153, 0.012937251478433609, -0.04458329826593399, 0.04059568792581558, 0.052048828452825546, -0.009159514680504799, -0.010343804955482483, 0.020897483453154564, -0.0129597382619977, -0.022801343351602554, 0.006206282880157232, -0.01041126437485218, -0.022831326350569725, -0.0008516774396412075, 0.026324234902858734, -0.015298337675631046, -0.016834916546940804, 0.0022411576937884092, -0.015725580975413322, 0.027358613908290863, 0.007634177803993225, -0.01068859826773405, 0.0018635713495314121, 0.03402961790561676, 0.00236295978538692, 0.012420061975717545, -0.008777243085205555, -0.009916560724377632, 0.011175806634128094, 0.011797933839261532, -0.033100176602602005, -0.007742862682789564, -0.02160206250846386, -0.0037458816077560186, 0.038526926189661026, -0.012457539327442646, 0.021482134237885475, -0.012734873220324516, 0.009624236263334751, -0.04212477058172226, 0.03762746602296829, -0.029367411509156227, -0.05831507593393326, -0.011580564081668854, -0.008177602663636208, -0.022831326350569725, -0.009819119237363338, 0.013964137062430382, 0.013042189180850983, 0.0213771965354681, 0.05429748073220253, 0.04182495176792145, -0.0052018845453858376, 0.002066887216642499, -0.0035360073670744896, -0.018513912335038185, 0.007885277271270752, -0.036847930401563644, -0.009039586409926414, -0.02696884796023369, 0.013881686143577099, 0.015770554542541504, 0.00849241390824318, -0.01758446916937828, 0.01026885025203228, -0.02214173972606659, -0.027913281694054604, -0.01869380474090576, 0.024375401437282562, 0.015590663067996502, 0.012967233546078205, 0.008417458273470402, -0.019608257338404655, 0.014923562295734882, 0.013814226724207401, -0.0335199236869812, -0.023985635489225388, -0.00014393722813110799, 0.013461937196552753, -0.05459729954600334, -0.004306171089410782, -0.0020275358110666275, 0.024960050359368324, -0.0012957864673808217, -0.00010335606930311769, -0.02921750210225582, 0.007870286703109741, 0.02187190018594265, -0.015575671568512917, 0.014376389794051647, 0.010846003890037537, -0.002451032167300582, 0.0009308487642556429, -0.019668221473693848, -0.014316425658762455, -0.004253702238202095, -0.014766156673431396, -0.012472529895603657, -0.03339999541640282, -0.005048226565122604, -0.01565062627196312, 0.0010793536202982068, -0.04737162962555885, -0.024195509031414986, 0.024960050359368324, 0.04371381923556328, -0.04239460825920105, 0.01024636346846819, 0.01052369736135006, 0.005509200505912304, 0.015740573406219482, 0.008095151744782925, 0.03594847023487091, -0.0014522551791742444, -0.012974729761481285, 0.052048828452825546, 0.034689225256443024, 0.015515707433223724, -0.018498921766877174, -0.02028285339474678, 0.005632876418530941, 0.0023685814812779427, 0.014428858645260334, 0.033100176602602005, 0.0028876455035060644, -0.021677017211914062, -0.0036671787966042757, -0.011175806634128094, -0.031211307272315025, -0.02053770050406456, 0.0148411113768816, -0.008484918624162674, 0.011108347214758396, 0.02728365920484066, 0.002829555422067642, -0.00541175901889801, 0.004459829069674015, -0.026114359498023987, -0.024735186249017715, -0.01024636346846819, -0.016879890114068985, -0.03966624289751053, 0.004040080588310957, 0.03142118081450462, 0.006700986530631781, -0.01758446916937828, -0.01809416338801384, -0.03127127140760422, 0.032290659844875336, 0.0010840382892638445, 0.014661218971014023, -0.009774146601557732, 0.02777836285531521, -0.004707180894911289, 0.027448561042547226, 0.023415975272655487, 0.00782531313598156, 4.793027983396314e-05, -0.011767951771616936, 0.020597664639353752, 0.013446946628391743, 0.0022299145348370075, -0.013724280521273613, 0.010658616200089455, 0.010381282307207584, -0.006599797401577234, 0.019023606553673744, -0.02292127162218094, 0.010711085051298141, -0.004755901638418436, -0.013836713507771492, -0.00762668251991272, 0.0011486870935186744, -0.007765349466353655, 0.021137339994311333, -0.0022880046162754297, -0.009399370290338993, -0.01620529405772686, -0.011385681107640266, -0.023970643058419228, 0.008005205541849136, 0.010223876684904099, -2.6790596166392788e-05, -0.02786830998957157, -0.0039838640950620174, -0.011175806634128094, -0.0032642949372529984, -0.009976524859666824, 0.022486532106995583, -0.03157109022140503, 0.007188194897025824, 0.023415975272655487, -0.040415793657302856, -0.003314889734610915, -0.010501210577785969, -0.00439236918464303, -0.005647867452353239, -0.01539577916264534, -0.020747574046254158, -0.0071732038632035255, -0.03486911579966545, -0.022381596267223358, 0.01596543751657009, -0.030701613053679466, 0.039846137166023254, -0.002582203596830368, 0.02458527497947216, -0.01598042994737625, -0.017119746655225754, 0.005584155675023794, 0.016565078869462013, -0.020147932693362236, -0.03588850796222687, -7.87614262662828e-05, -0.006558571942150593, -0.002572834026068449, 0.0156955998390913, -0.0011767952237278223, -0.01646014116704464, 0.008672306314110756, 0.025814538821578026, -0.01496853493154049, -0.016400177031755447, 0.005625381134450436, -0.014653723686933517, -0.016355205327272415, -0.01969820261001587, -0.011775447987020016, 0.00932441558688879, 0.029637249186635017, -0.01325955893844366, -0.018753768876194954, -0.016010411083698273, 0.006434896029531956, -0.0004279468266759068, 0.0007729745702818036, -0.031721003353595734, 0.01595044694840908, -0.06955834478139877, -0.020987430587410927, -0.02110735885798931, 0.005557921249419451, 0.01731462962925434, 0.016325222328305244, 0.017194701358675957, 0.007855295203626156, -0.02833303064107895, 0.016565078869462013, 0.011812925338745117, -0.01217271015048027, 0.03804721310734749, 0.010148921981453896, -0.014496318064630032, 0.020192906260490417, -0.016130339354276657, 0.0016649403842166066, 0.01864883117377758, -0.012225178070366383, -0.020987430587410927, 0.027148740366101265, 0.012510007247328758, -0.023086173459887505, -0.019548293203115463, 0.02593446709215641, 0.009511803276836872, 0.0015328319277614355, -0.00942935235798359, -0.04677198827266693, 0.029037609696388245, 0.022771362215280533, -0.0046884422190487385, 0.0008755693561397493, 0.006052624899893999, 0.027133749797940254, 0.01092845480889082, -0.0056703537702560425, 0.022051792591810226, -0.002908258233219385, 0.0019731931388378143, 0.03049173764884472, 0.006805923767387867, -0.01893366128206253, -0.010980923660099506, -0.033370014280080795, -0.012952242977917194, -0.026938866823911667, -0.021257268264889717, 0.006056373007595539, 0.009684200398623943, 0.02376076951622963, -0.01280982792377472, -0.01918850839138031, 0.009122036397457123, -0.011108347214758396, 2.7302983653498814e-05, -0.005651615094393492, 0.0159054733812809, 0.0026365460362285376, 0.056306276470422745, 0.019593264907598495, -0.002319860504940152, -0.002327356021851301, -0.01887369714677334, 0.01888868771493435, 0.005284334998577833, 0.0248551145195961, 0.017764361575245857, -0.0016780574806034565, 0.009691695682704449, -0.021182313561439514, 0.01539577916264534, 0.02133222483098507, -0.01701480895280838, 0.005617885384708643, 0.01420399360358715, 0.0010128308786079288, -0.006685995496809483, -0.02350592240691185, -0.016864899545907974, 0.0020631393417716026, 0.016670016571879387, -0.012225178070366383, -0.017449548467993736, -0.024750176817178726, -0.01257746759802103, -0.029277466237545013, 0.0017773730214685202, 0.008260052651166916, 0.01972818374633789, 0.002724618185311556, 0.03576857969164848, 0.013859199360013008, -0.01752450503408909, 0.02941238507628441, -0.011955339461565018, -0.012202691286802292, -0.0068621402606368065, 0.0003166853275615722, -0.0003550998226273805, -0.032290659844875336, 0.007506754249334335, -0.017359603196382523, -0.0014953544596210122, -0.005235614255070686, 0.013979127630591393, 0.010606148280203342, -0.0296822227537632, -0.018543893471360207, -0.01563563570380211, 0.02139218896627426, -0.02401561662554741, 0.018978632986545563, 0.001993805868551135, 0.013731775805354118, -0.018738776445388794, -0.026084378361701965, -0.026923874393105507, 0.001153371762484312, 0.0009022721205838025, 0.01699981838464737, -0.0008535513188689947, -0.019578274339437485, -0.004197486210614443, -0.0014672462129965425, -0.002332977717742324, 0.0034779170528054237, -0.014683705754578114, 0.011648023501038551, -0.010066471062600613, -0.011603050865232944, -0.01920349895954132, 0.007431799080222845, -0.010321318171918392, 0.013896677643060684, 0.009182000532746315, -0.017689405009150505, 0.025769567117094994, -0.026863910257816315, 0.0041187833994627, 0.006116336677223444, 0.019098561257123947, 0.0031518624164164066, -0.029007626697421074, -0.008889676071703434, -0.003194961464032531, -0.004692189861088991, 0.018049189820885658, -0.013049684464931488, -0.009032090194523335, 0.0015918591525405645, 0.010313822887837887, 0.0009121099719777703, -0.015440752729773521, -0.019383391365408897, -0.03211076930165291, -0.0025840774178504944, -0.015575671568512917, -0.018543893471360207, -0.023026209324598312, 0.010253858752548695, -0.003007573774084449, -0.008155115880072117, -0.003706530202180147, -0.00015658591291867197, -0.016550088301301003, -0.011295734904706478, 0.004160008393228054, -0.021931864321231842, 0.00865731481462717, 0.007795331533998251, -0.002913879929110408, -0.008702288381755352, 0.0002172527019865811, -0.007480519823729992, -0.012202691286802292, -0.019098561257123947, 0.03184093162417412, 0.020927466452121735, -0.012367593124508858, 0.008192593231797218, -0.001870129955932498, 0.01921848952770233, 0.011295734904706478, -0.006543580908328295, -0.0036728002596646547, 0.0052955783903598785, 0.008807225152850151, -0.006386175286024809, 0.024510320276021957, -0.0025559691712260246, -0.015328319743275642, 0.004965776111930609, 0.012824819423258305, -0.0022149235010147095, 0.036578092724084854, 0.027748381718993187, 0.007862790487706661, 0.0009013352100737393, -0.02136220596730709, 0.0173296220600605, 0.00439236918464303, 0.011033391579985619, -0.013431955128908157, -0.0049695237539708614, -0.03624828904867172, 0.005846498534083366, 0.027448561042547226, -0.011528096161782742, -0.0025334826204925776, 0.013004711829125881, 0.012712386436760426, -0.009811623953282833, -0.0007832808769308031, -0.02083752118051052, 0.007323114201426506, -0.0221567302942276, 0.01974317617714405, -0.011670510284602642, 0.03888671100139618, -0.01617531292140484, 0.009159514680504799, -0.004414855968207121, 0.0032286914065480232, 0.0025559691712260246, -0.0011262005427852273, -0.05639622360467911, -0.027973245829343796, -0.0007181636174209416, -0.008372485637664795, 0.02785331755876541, -0.006689743604511023, -0.014166515320539474, -0.0008788486593402922, 0.0014363272348418832, 0.04965026304125786, -0.005089452024549246, 0.026624055579304695, 0.008162611164152622, -0.024765167385339737, -0.022276658564805984, 0.0028370509389787912, 0.006551076658070087, 0.035798560827970505, 0.02347593940794468, -0.020177915692329407, -0.004868334159255028, -0.017659423872828484, 0.02110735885798931, 0.013042189180850983, -0.008762252517044544, -0.020342815667390823, 0.00150003912858665, 0.003537881188094616, -0.0008558936533518136, 0.012135231867432594, -0.01539577916264534, -0.001709913369268179, -0.026354216039180756, 0.01280982792377472, -0.0035509984008967876, 0.02191687375307083, -0.023715795949101448, 0.03591848909854889, 0.001819535274989903, 0.006689743604511023, 0.02239658683538437, 0.006895869970321655, 0.0036709264386445284, 0.006183796562254429, 0.006652265787124634, -0.024255473166704178, 0.00036470344639383256, 0.02349093183875084, -0.0012601828202605247, 0.012112746015191078, -0.017899280413985252, -0.012749863788485527, 0.02404559962451458, -0.010913464240729809, -0.0003890638763550669, -0.010223876684904099, 0.018558884039521217, -0.00330552039667964, -0.002094995230436325, 0.013304531574249268, -0.007577961310744286, 0.03804721310734749, -0.02355089597404003, 0.003610962303355336, 0.003624079516157508, 0.023191111162304878, -3.375907908775844e-05, 0.007326861843466759, -0.025469746440649033, -0.004860838875174522, -9.258127101929858e-05, 0.01565062627196312, -0.004377378150820732, 0.013357000425457954, -0.008949640206992626, -0.01649012416601181, -0.0014841111842542887, 0.0011290112743154168, -0.0002357572375331074, 0.004834604449570179, 0.014593759551644325, 0.003313015913590789, 0.010021498426795006, 0.004167504142969847, 0.01120578870177269, -0.012532494030892849, -0.00500325346365571, -0.0010390651877969503, 0.014428858645260334, 0.020192906260490417, 0.007214429322630167, -0.018843714147806168, -0.05207880958914757, -0.010381282307207584, -0.026024414226412773, 0.02896265499293804, -0.011880384758114815, -0.04143518581986427, -0.001718345913104713, 0.011580564081668854, -0.020477736368775368, 0.021826928481459618, -0.015500716865062714, -0.023610860109329224, 0.05561669170856476, -0.010171407833695412, -0.01499102171510458, -0.0006408661720342934, -0.010831013321876526, -0.007491763215512037, -0.0028895195573568344, 0.0038751792162656784, -0.005111938342452049, 0.01026885025203228, 0.017359603196382523, 0.011985321529209614, 0.0012302007526159286, 0.020162925124168396, 0.0038451971486210823, 0.01133321225643158, 0.04113536328077316, 0.02782333642244339, -0.005156911443918943, 0.009804128669202328, -0.00038859539199620485, 0.003416079096496105, -0.010021498426795006, 0.015043490566313267, 0.030881505459547043, 0.0027602219488471746, 0.018019208684563637, -0.016550088301301003, -0.018738776445388794, -0.02912755496799946, -0.013994119130074978, 0.002537230495363474, 0.02512495219707489, 0.002044400665909052, -0.009309424087405205, 0.027613462880253792, -0.023311039432883263, 0.02029784396290779, -0.010583661496639252, 0.013469433411955833, 0.0030487990006804466, -0.005677849519997835, -0.0033879708498716354, -0.015290842391550541, 0.007338105235248804, 0.0035210163332521915, 0.00320245698094368, 0.023595867678523064, -0.006839653477072716, -0.00019605446141213179, 0.026818938553333282, -0.03747755289077759, -0.021766964346170425, -0.024735186249017715, 0.01553069893270731, -0.017134737223386765, -0.006007651798427105, -0.017974235117435455, -0.008739765733480453, -0.003639070549979806, -0.010666112415492535, 0.0073680873028934, 0.024180518463253975, 0.004973271396011114, 0.008170106448233128, -0.03190089389681816, -0.003509772941470146, -0.04209478944540024, -0.0026871406007558107, -0.012817323207855225, -0.005351794883608818, -0.007757853716611862, 0.02672899141907692, -0.007491763215512037, 0.018304036930203438, 0.01705978251993656, 0.016804935410618782, -0.004399864934384823, -0.046352241188287735, -0.007817817851901054, 0.017449548467993736, -0.01054618414491415, -0.021931864321231842, -0.013334513641893864, -0.0047034332528710365, 0.001312651322223246, 0.015006013214588165, -0.00020261302415747195, -0.007795331533998251, -0.03627827391028404, -0.0021718242205679417, 0.0040138461627066135, -0.017074773088097572, -0.010073966346681118, 0.01433141715824604, 0.0005279650213196874, 0.015350806526839733, 0.005516695789992809, -0.023640841245651245, 0.029772169888019562, -0.0007912448490969837, -0.0030544206965714693, 0.003654061583802104, 0.03750753775238991, -0.011678005568683147, -0.01622028648853302, -0.008162611164152622, -0.00757046602666378, -0.02867782488465309, -0.034449368715286255, -0.02725367806851864, 0.01188788004219532, -0.0137767493724823, 0.015425761230289936, -0.008117638528347015, 0.02379075065255165, 0.0020256617572158575, 0.007424303330481052, 0.03573859483003616, 0.007214429322630167, -0.022381596267223358, 0.016834916546940804, 0.015170914120972157, 0.011573068797588348, -0.00012812638306058943, -0.003828332293778658, 0.004336153157055378, -0.021257268264889717, 0.034719206392765045, 0.001848580315709114, -0.005220623221248388, 0.001724904403090477, 0.006153814494609833, -0.024735186249017715, 0.016115348786115646, 0.03372979909181595, -0.016130339354276657, -0.009384379722177982, -0.014646228402853012, 0.0205227080732584, -0.03217073157429695, -0.027118759229779243, 0.015193400904536247, 0.0031143848318606615, -0.01092845480889082, -0.008432449772953987, 0.004902064334601164, -0.00810264702886343, -0.015095958486199379, 0.021197304129600525, -0.005707831587642431, 0.017104756087064743, 0.021527107805013657, 0.03750753775238991, -0.0032830338459461927, 0.020612655207514763, -0.009946542792022228, -0.021122349426150322, 0.03384972736239433, 0.0027433570940047503, 0.007967728190124035, -0.004707180894911289, -0.0046884422190487385, 0.009774146601557732, -0.0313911996781826, -0.01041126437485218, -0.004830856807529926, 0.02705879509449005, -0.00246414914727211, 0.006273742765188217, -0.020957447588443756, -0.035828541964292526, -0.005554173607379198, 0.018753768876194954, -0.00418999046087265, 0.00022685632575303316, 0.016864899545907974, 0.017479531466960907, 0.003669052617624402, -0.01028384082019329, -0.007383078336715698, -0.004272441379725933, 0.00836499035358429, -0.010051480494439602, -0.005925201345235109, -0.00015646878455299884, 0.006573562975972891, -0.022846316918730736, -0.0011936600785702467, -0.011655519716441631, -0.017389586195349693, -0.012217682786285877, -0.009886578656733036, 0.0022299145348370075, 0.009256956167519093, 0.002014418598264456, 0.000151198502862826, -0.00013843271881341934, -0.003487286390736699, -0.004695937503129244, 0.01122827548533678, -0.002537230495363474, 0.022846316918730736, 0.010403769090771675, -0.005494209472090006, -0.002638419857248664, -0.010493715293705463, -0.005966426804661751, -0.0007322177407331765, -0.007491763215512037, -0.006269994657486677, 0.002400437369942665, 0.0012152097187936306, -0.014301435090601444, 0.0724366158246994, 0.011415663175284863, 0.0054717231541872025, -0.00866481103003025, 0.006985816173255444, -0.026878902688622475, -0.008882180787622929, 0.02269640751183033, 0.028542906045913696, -0.002501626731827855, 0.008462431840598583, -0.01553069893270731, 0.004939541686326265, 0.010883482173085213, -0.022561488673090935, 0.026818938553333282, 0.025214899331331253, 0.02104739472270012, -0.0019582021050155163, 0.016939854249358177, 2.5414467017981224e-05, -0.009751659817993641, -0.020222889259457588, 0.018588867038488388, -0.013851704075932503, 0.03576857969164848, -0.0005593525129370391, 0.012360097840428352, 0.014691201038658619, 0.026324234902858734, -0.0001297660346608609, -0.02214173972606659, -0.019848112016916275, 0.00894214492291212, 0.0027002578135579824, 0.015740573406219482, 0.0006094787386246026, 0.012105249799787998, -0.013004711829125881, 0.001797048724256456, 0.01405408326536417, 0.006925852037966251, 0.006311220116913319, 0.013814226724207401, 0.002956978976726532, -0.009189496748149395, 0.0007022356730885804, -0.0008577675325796008, -0.0027902040164917707, -0.0194583460688591, -0.008140124380588531, -0.006198787596076727, -0.002829555422067642, 0.013799235224723816, 0.008072664961218834, -0.003762746462598443, 0.006314967758953571, -0.00594394002109766, -0.002559717046096921, 0.006903365720063448, -0.024120554327964783, -0.0028089426923543215, -0.020192906260490417, -0.029847124591469765, -0.026414180174469948, -0.015103454701602459, -0.007135726511478424, -0.03453931584954262, 0.0011477500665932894, -0.010973428376019001, -0.01538078859448433, 0.023985635489225388, -0.0017895532073453069, -0.022066783159971237, 0.0037758636754006147, 0.02704380266368389, -0.011730474419891834, 0.010606148280203342, 0.0034629260189831257, 0.008679801598191261, 0.003980116453021765, 0.012517503462731838, -0.010531192645430565, -0.00419373856857419, 0.006033886224031448, 0.012794837355613708, 0.016340212896466255, -0.015815528109669685, 0.00459849601611495, -0.019113553687930107, -0.01752450503408909, -0.012779845856130123, -0.0039201523177325726, 0.002522239461541176, 0.017179710790514946, -0.006299976725131273, -0.011258257552981377, 0.00852989125996828, 0.0102613540366292, -0.005351794883608818, -0.003095645923167467, 0.01595044694840908, -0.011378185823559761, 0.005820264108479023, -0.0009434974053874612, -0.012592458166182041, 0.012839809991419315, 0.005636624060571194, -0.02675897441804409, 0.008357495069503784, -0.0060638682916760445, -0.01471368782222271, 0.006213778629899025, -0.003792728530243039, -0.027748381718993187, 0.01701480895280838, 0.014383885078132153, -0.014676210470497608, -0.016040394082665443, -0.014848606660962105, 0.0026327981613576412, 0.0018935534171760082, 0.01458626426756382, -0.011258257552981377, 0.0039988551288843155, -0.009969029575586319, -0.01975816674530506, -0.013559379614889622, -0.017899280413985252, -0.0012273899046704173, 0.009226974099874496, 0.005681597162038088, 0.010890977457165718, 0.013754262588918209, 0.004920803010463715, -0.007832808420062065, -0.005220623221248388, -0.0064873648807406425, 0.021467143669724464, -0.017644433304667473, 0.013072171248495579, 0.0005813705502077937, -0.0009289748850278556, 0.01069609448313713, 0.009654218330979347, 0.011303230188786983, -0.004339900799095631, -0.009167009964585304, -0.005325560458004475, -0.005325560458004475, 0.03942638635635376, -0.028782762587070465, 0.014466335996985435, -0.005587903317064047, -0.00256721256300807, 0.004935794044286013, -0.02516992576420307, 0.018214091658592224, -0.011115842498838902, -0.004628478083759546, -0.01092845480889082, 0.00013819847663398832, -0.015290842391550541, -0.0057677957229316235, -0.010276345536112785, 0.01619030348956585, 0.02164703607559204, 0.023041199892759323, 0.01756947673857212, -0.008305026218295097, -0.014084065333008766, 0.005745308939367533, 0.01917351596057415, -0.03277037292718887, 0.01646014116704464, -0.003618457820266485, -0.0004516045446507633, -0.014811129309237003, -0.030176926404237747, 0.008454936556518078, 0.003065663855522871, -0.0018401478882879019, 0.022786352783441544, -0.0042012338526546955, -0.0038751792162656784, -0.024630248546600342, -0.007997710257768631, -0.00526184868067503, -0.0010484346421435475, 0.003908908925950527, -0.013169612735509872, 0.011797933839261532, 0.005887723993510008, -0.006003904156386852, -0.027448561042547226, -0.003116258652880788, 0.020867502316832542, 0.03268042579293251, 0.010576166212558746, -0.0035772325936704874, -0.0020762565545737743, 0.004583504982292652, 0.009924056008458138, 0.004902064334601164, -0.026114359498023987, -0.005213127937167883, -0.003118132473900914, -0.013132135383784771, -0.020717592909932137, 0.01623527705669403, -0.0464421845972538, -0.03187091276049614, 0.006183796562254429, 0.0031631055753678083, -0.008402467705309391, 0.012614944949746132, 0.011700492352247238, 0.0056703537702560425, 0.019308436661958694, 0.008717278949916363, 0.01758446916937828, 0.00709075341001153, 0.030911486595869064, 0.011018401011824608, -0.03211076930165291, 0.006817167159169912, 0.007027041632682085, 0.014391381293535233, 0.027928274124860764, 0.012157718650996685, 0.026009423658251762, -0.011842907406389713, -0.003818962723016739, 0.009309424087405205, -0.0043886215426027775, 0.0052655963227152824, 0.021287251263856888, -0.005239361897110939, 0.027478542178869247, -0.005902715027332306, -0.010448741726577282, -0.011655519716441631, -0.006183796562254429, -0.004313666373491287, 0.0024247977416962385, -0.014233974739909172, -0.0019394634291529655, 0.0011524348519742489, 0.006558571942150593, -2.831312121998053e-05, -0.003691539168357849, -0.01229263748973608, 0.005123181734234095, 0.008724774233996868, 0.019773157313466072, -0.0017155350651592016, -0.015125940553843975, 0.009526794776320457, 0.0035285118501633406, -0.022006820887327194, 0.010868490673601627, 0.01756947673857212, -0.0305367112159729, -0.000514379411470145, 0.006037633866071701, 0.015021003782749176, -0.008327513001859188, -0.014743669889867306, 0.010741067118942738, 0.0013004711363464594, 0.009481821209192276, 0.0008989928173832595, 0.00987908337265253, 0.01863384060561657, -0.0029026365373283625, 0.0026515370700508356, 0.010621138848364353, -0.0296822227537632, 0.007600448094308376, 0.019248472526669502, 0.0016874269349500537, 0.011385681107640266, 0.0002211175742559135, -0.015485725365579128, 0.013289541006088257, -0.026414180174469948, 0.00023072119802236557, 0.005535434931516647, -0.010508705861866474, 0.021227287128567696, -0.004894568584859371, -0.027973245829343796, 0.020372798666357994, 0.00878473836928606, -0.0034329439513385296, -0.0018251568544656038, -0.0074730245396494865, 0.011580564081668854, 0.012667413800954819, 0.0014466335996985435, -0.0030431775376200676, 0.0043099187314510345, -0.01109335571527481, -0.00432116212323308, 0.0093019288033247, -0.0007776592392474413, 0.011190798133611679, 0.011722979135811329, -0.0018410849152132869, 0.038526926189661026, 0.0251399427652359, -0.003695286810398102, -0.000804830458946526, -0.015365797095000744, -0.016280248761177063, -0.00038203681469894946, 0.0018963642651215196, 0.007184447254985571, -0.018468938767910004, 0.0019544544629752636, -0.004028837196528912, -0.0021268511191010475, -0.011273248121142387, 0.00703453691676259, -0.008027692325413227, 0.02887270785868168, 0.02540978230535984, 0.019608257338404655, 0.012929756194353104, -0.02298123575747013, 0.016400177031755447, 0.004624730441719294, -0.001362309092655778, -0.014391381293535233, 0.004617234691977501, 0.014766156673431396, -0.00042560449219308794, -0.0011524348519742489, -0.007832808420062065, -0.008222575299441814, -0.01283231470733881, -0.009421857073903084, -0.006108841393142939, -0.007922754622995853, 0.014144029468297958, 0.0159054733812809, 0.007907764054834843, -0.015365797095000744, 0.015298337675631046, 0.019788147881627083, 0.0032905293628573418, 0.0013520027277991176, 0.032800354063510895, -0.006967077497392893, -0.016160322353243828, 0.0073456005193293095, -0.008822216652333736, 0.01571059040725231, -0.013334513641893864, 0.02539479173719883, -0.019833121448755264, 0.016655026003718376, -0.004407360218465328, 0.0028801499865949154, -0.0056741018779575825, 0.017959244549274445, -0.013334513641893864, 0.024510320276021957, -0.016565078869462013, 0.0018364001298323274, -0.003762746462598443, -0.028258075937628746, -0.016550088301301003, -0.006892122328281403, -0.015425761230289936, 0.0033767276909202337, 0.0021006169263273478, 0.008874684572219849, -0.004351144190877676, 0.00823007058352232, 0.04482315480709076, 0.0006741274846717715, -0.005632876418530941, 0.0019956796895712614, 0.015815528109669685, 0.019563283771276474, 0.007855295203626156, 0.009271946735680103, -0.003931395243853331, -0.00865731481462717, -0.01759945973753929, 0.001978814834728837, -0.0009247586713172495, 0.0014672462129965425, 0.0008886865107342601, 0.011940348893404007, -0.019068580120801926, 0.02379075065255165, 0.004006350412964821, -0.005310569424182177, -0.006067615933716297, -0.012315124273300171, 0.002494131214916706, -0.013469433411955833, 0.0034891602117568254, -0.030671630054712296, -0.01731462962925434, 0.01067360769957304, 0.015755563974380493, -0.017929261550307274, -0.0008193530375137925, 0.005722822621464729, -0.01525336503982544, -0.005370533559471369, 0.0008376233163289726, -0.010358796454966068, 0.025020014494657516, -0.020957447588443756, -0.00970668625086546, 0.015148427337408066, 0.01705978251993656, 0.016415169462561607, -0.0015927960630506277, -0.0008863441762514412, 0.023700805380940437, -0.02158707194030285, 0.01779434271156788, -0.010073966346681118, -0.01163303293287754, 0.013416964560747147, -0.003414205275475979, -0.01351440604776144, 0.018963642418384552, 0.007757853716611862, -0.028782762587070465, -0.016145329922437668, 0.02863285131752491, -0.019098561257123947, -0.011040887795388699, 0.01617531292140484, -0.030401792377233505, -0.01677495427429676, 0.001661192625761032, -0.001478489488363266, 0.014698697254061699, 0.0033804753329604864, 0.00812513381242752, 0.008042682893574238, 0.0025634646881371737, -0.007214429322630167, -0.00878473836928606, 0.007019545882940292, 0.008342503570020199, 0.004133774433284998, -0.017749369144439697, -0.0029532313346862793, 0.0010353174293413758, 0.01173796970397234, 0.034989044070243835, -0.029547303915023804, 0.00513442512601614, -0.005531686823815107, -0.00205939169973135, 0.012195196002721786, -0.008837207220494747, 0.005853993818163872, 0.00419373856857419, -0.002228040713816881, -0.0016902376664802432, 0.0038095933850854635, -0.002979465527459979, 2.6219648134429008e-05, 0.015065977349877357, -0.006745959632098675, -0.010883482173085213, 0.012877287343144417, -0.006543580908328295, 0.008694793097674847, 0.01917351596057415, -0.010276345536112785, -0.0058614895679056644, 0.011138329282402992, -0.00850740447640419, 0.013964137062430382, 0.028437968343496323, -0.009504307992756367, -0.003320511430501938, 0.018708795309066772, 0.0003337844682391733, -0.011925357393920422, 0.012862296774983406, -0.0023816986940801144, 0.02103240415453911, -0.026549099013209343, 0.020147932693362236, 0.008882180787622929, -0.011243266053497791, 0.03810717910528183, 0.001804544241167605, -0.0006005777977406979, 0.013656821101903915, -0.005273092072457075, 0.0027302398812025785, 0.01617531292140484, 0.011640528216958046, 0.011880384758114815, -0.008155115880072117, 0.02858787775039673, 0.021707000210881233, 0.014616246335208416, 0.00040546030504629016, 0.0008498035604134202, 0.000735965499188751, 0.01620529405772686, 0.004272441379725933, 0.021931864321231842, 0.022351613268256187, 0.028303049504756927, 0.0066710044629871845, 0.0070795100182294846, -0.006730968598276377, -0.006419904995709658, -0.010860995389521122, 0.011767951771616936, 0.005734066013246775, -0.01644515059888363, -0.0026327981613576412, -0.009279442019760609, 0.01109335571527481, 0.004501054063439369, -0.010763553902506828, 0.011513104662299156, -0.000485802796902135, 0.0017783099319785833, 0.009526794776320457, 0.022636443376541138, 0.015515707433223724, 0.019353408366441727, 0.03672800213098526, -0.010531192645430565, 0.017719388008117676, -0.0036634309217333794, 0.023985635489225388, -0.013611847534775734, 0.0029888348653912544, -0.020897483453154564, -0.0019085444509983063, 0.0067834374494850636, -0.022066783159971237, 0.01866382174193859, -0.0319608598947525, -0.007169456221163273, 0.03241058811545372, 0.001369804609566927, 0.0035847281105816364, -0.009541785344481468, -0.008904666639864445, -0.008724774233996868, -0.005333056207746267, 0.021826928481459618, -0.013566874898970127, -0.016115348786115646, -0.009571767412126064, -0.004219972528517246, -0.011648023501038551, -0.003942638635635376, 0.015238373540341854, 0.008439945057034492, 0.0025690863840281963, 0.011535591445863247, 0.0013716785470023751, -0.013739271089434624, 0.006592301651835442, 0.010014002211391926, 0.0017342738574370742, 0.01120578870177269, -0.02702881209552288, -0.0005757489125244319, 0.02083752118051052, -0.010291336104273796, 0.0009575515286996961, -0.011603050865232944, -0.009751659817993641, 0.00472591957077384, 0.004426099359989166, 0.02648913487792015, 0.007244411390274763, 0.008552378043532372, 0.015155922621488571, -0.023955652490258217, 0.011303230188786983, -0.003661557100713253, -0.006656013894826174, -0.0004644874425139278, 0.02190188318490982, -0.010741067118942738, 0.000728469982277602, -0.0009327226434834301, -0.020402779802680016, -0.020462743937969208, -0.011265752837061882, 0.0002070634945994243, 0.002411680528894067, 0.0007087942212820053, 0.015875492244958878, -0.009249460883438587, 0.004219972528517246, -0.02561965584754944, -0.0017661297461017966, -0.019068580120801926, 0.002951357513666153, 0.0017445801058784127, 0.008394972421228886, 0.00472591957077384, -0.00320245698094368, -0.013889181427657604, 0.02896265499293804, 0.013454441912472248, 0.01310964860022068, -3.929287413484417e-05, -0.001479426515288651, -0.008574864827096462, 0.003153736237436533, 0.002419176045805216, -0.0065623195841908455, -0.007139474153518677, 0.030131954699754715, 0.0074205556884408, 0.016085365787148476, -0.015223382972180843, 0.00036212688428349793, 0.019923068583011627, -0.007259402424097061, -0.03504901006817818, 0.018229082226753235, 0.002728366060182452, -0.01646014116704464, -0.0036671787966042757, -0.005704083945602179, -0.036038417369127274, -0.000794055697042495, -0.003646566066890955, -0.0008690108079463243, 0.015755563974380493, 0.012510007247328758, -0.015148427337408066, -0.002732113702222705, -0.0029813393484801054, -0.001603102427907288, -0.009789137169718742, -0.016520105302333832, 0.018199101090431213, -0.0128548014909029, 0.022081775590777397, -0.0183939840644598, -0.014541290700435638, 0.01592046581208706, -0.034479349851608276, 0.03426947444677353, 0.016355205327272415, -0.006626031827181578, -0.023895688354969025, -0.0027152488473802805, -0.013154621236026287, 0.000641334627289325, -0.018558884039521217, 0.0032305652275681496, 0.0007350285304710269, 0.007592952344566584, -0.02101741172373295, -0.008222575299441814, 0.0017811207799240947, -0.02083752118051052, 0.012052781879901886, 0.014256461523473263, -0.014683705754578114, -0.010028993710875511, -0.014166515320539474, 0.008874684572219849, -0.02594945952296257, -0.00194321118760854, 0.002332977717742324, -0.0015281472587957978, -0.01069609448313713, -1.4764106708753388e-05, 0.0009055514237843454, -0.010328814387321472, -0.02077755704522133, -0.00013398226292338222, 0.013012207113206387, -0.007922754622995853, 0.00439236918464303, -0.013297036290168762, -0.0018438956467434764, -0.004613487049937248, -0.0006183796213008463, -0.023730788379907608, -0.008702288381755352, -0.023595867678523064, -0.009189496748149395, -0.01405408326536417, -0.005951435770839453, 0.016325222328305244, -0.0033748538699001074, -0.008005205541849136, -0.0051868935115635395, 0.015755563974380493, 0.007353096269071102, 0.010381282307207584, 0.002522239461541176, 0.004635973367840052, 0.0037196471821516752, 0.011183301918208599, 0.002123103477060795, -0.01972818374633789, -0.028033209964632988, 0.018513912335038185, -0.004932045936584473, -0.0028970150742679834, 0.016415169462561607, -0.006745959632098675, -0.0059701744467020035, -0.010321318171918392, 0.009669208899140358, 0.012330115772783756, -0.013229576870799065, -0.0023048697039484978, 0.016430160030722618, -0.007435546722263098, 0.0014185254694893956, 0.01750951260328293, 0.012967233546078205, -0.00020964007126167417, 0.0008835333283059299, -0.015200896188616753, -0.017224684357643127, 0.014856102876365185, -0.013739271089434624, -0.001232074573636055, 0.008057674393057823, -0.024135544896125793, -0.027703408151865005, -0.01110085193067789, 0.007154465187340975, 0.016909873113036156, -0.005711579229682684, -0.008282539434731007, 0.01420399360358715, -0.022336622700095177, 0.0147361746057868, -0.007398069370537996, -0.001224579056724906, 0.01671499013900757, 0.009669208899140358, 0.00018082919996231794, -0.018588867038488388, 0.011603050865232944, 0.0010896598687395453, 0.0033654842991381884, -0.0040138461627066135, 0.010291336104273796, 0.0013510658172890544, -0.009564272128045559, 0.010238868184387684, -0.011018401011824608, 0.012532494030892849, 0.00984160602092743, -0.013686803169548512, -0.002190563129261136, 0.010726076550781727, 0.023341020569205284, -0.013896677643060684, -0.009481821209192276, -0.02299622818827629, -0.005617885384708643, -0.018843714147806168, -0.009541785344481468, 0.011565573513507843, 0.003878926858305931, 0.006982068531215191, 0.003777737496420741, 0.00018364001880399883, -0.02404559962451458, -0.013784244656562805, -0.01996804028749466, -0.00943684857338667, 0.027193713933229446, 0.00836499035358429, 0.014428858645260334, 0.01783931627869606, 0.019938059151172638, 0.018783750012516975, -0.02785331755876541, -0.008312521502375603, 0.010591156780719757, -0.016400177031755447, 0.0014916067011654377, 0.00024782033869996667, -0.002198058646172285, 0.0014091560151427984, 0.014376389794051647, 0.013409469276666641, -0.0004026494862046093, 0.005123181734234095, 0.005033235531300306, 0.014676210470497608, -0.007413060404360294, 0.01486359816044569, 0.0016780574806034565, 0.004317414481192827, 0.02349093183875084, -0.0012526873033493757, -0.01325955893844366, 0.001471930998377502, 0.003095645923167467, -0.0027377353981137276, 0.0045797573402523994, -0.008559873327612877, 0.009406866505742073, 0.009766650386154652, -0.006798428483307362, 0.00533680384978652, 0.02782333642244339, -0.02590448595583439, -0.011258257552981377, 0.001899175113067031, -0.002812690567225218, -0.025454755872488022, 0.005415506660938263, -0.006790932733565569, -0.007574213668704033, 0.005452984012663364, -0.013079666532576084, 0.0248551145195961, 0.006498607806861401, -0.0205227080732584, -0.003968873061239719, -0.0068621402606368065, 0.019008615985512733, -0.002392941853031516, 0.01240507047623396, -0.028557896614074707, 0.005115685984492302, 0.000924290157854557, -0.007705385331064463, -0.0012592457933351398, -0.0015871744835749269, -0.0029850872233510017, -0.019398381933569908, -0.01565062627196312, -0.005951435770839453, 0.013649324886500835, -0.006067615933716297, 0.017419567331671715, -0.01420399360358715, 0.01526835560798645, -0.0073755825869739056, -0.0036802957765758038, 0.0029251230880618095, -0.015830518677830696, 0.01726965792477131, 0.010718580335378647, -0.006105093751102686, 0.0033523673191666603, 0.007146969437599182, -0.014024101197719574, -0.0034179529175162315, -0.009534290060400963, -0.004561018198728561, -0.015815528109669685, 0.0008568305638618767, -0.00526184868067503, -0.010178904049098492, 0.012105249799787998, 0.013851704075932503, 0.018783750012516975, 0.012345106340944767, -0.000273820391157642, -0.023356011137366295, -0.001262056641280651, -0.0010343805188313127, 0.007428051438182592, 0.009669208899140358, 0.0011917862575501204, -0.0023011218290776014, -0.006431148387491703, 0.013536892831325531, -0.010373787023127079, 0.012255160138010979, 0.02834802307188511, 0.013357000425457954, -0.010081462562084198, 0.014421363361179829, -0.0005284335347823799, -0.0016761836595833302, -0.009092054329812527, 0.025829531252384186, -0.0018607606180012226, -0.007870286703109741, 0.004249954596161842, 0.0051868935115635395, -0.00044691984658129513, -0.0023985635489225388, -0.005550425965338945, -0.01834901049733162, 0.010216381400823593, -0.03810717910528183, -0.008687296882271767, 0.0027752129826694727, 0.022021811455488205, 0.0027377353981137276, -0.013207090087234974, 0.011273248121142387, -0.0005734065780416131, 0.0004073341842740774, 0.00675720302388072, -0.0015094084665179253, -0.010156417265534401, -0.01887369714677334, -0.02104739472270012, 0.004737162962555885, 0.01280982792377472, 0.004620982334017754, 0.029112564399838448, 0.008155115880072117, -0.002205554163083434, -0.007727871648967266, -0.014578768983483315, -0.009384379722177982, 0.00038109987508505583, 0.006603545043617487, -0.018453948199748993, 0.01728464849293232, 0.01041876059025526, -0.01563563570380211, -0.009339406155049801, 0.002923249267041683, -0.004055071622133255, 0.0005771543364971876, 0.01786929741501808, 0.020747574046254158, 0.00574156129732728, 0.000338937621563673, -0.027658434584736824, 0.0007917133625596762, 0.010358796454966068, 0.0011252635158598423, -0.012742368504405022, -0.013686803169548512, 0.0009092991822399199, 0.009122036397457123, 0.004493558779358864, -0.0011130833299830556, -0.0015628139954060316, 0.006633527111262083, 0.0068471492268145084, 0.0030694117303937674, 0.002704005455598235, -0.02696884796023369, -0.01650511473417282, 0.00381334125995636, -0.007787835784256458, 0.014833616092801094, -0.022621450945734978, 0.006521094590425491, -0.017689405009150505, -0.008072664961218834, -0.013949145562946796, 0.009256956167519093, -0.004538531880825758, 0.013297036290168762, 0.009916560724377632, 0.009609244763851166, 0.02404559962451458, 0.023400984704494476, 0.020927466452121735, -0.03241058811545372, 0.019518310204148293, -0.0040925489738583565, 0.00724066374823451, -0.010171407833695412, -0.0033729798160493374, 0.015088463202118874, 0.00045746040996164083, 0.005805273074656725, 0.001768940594047308, 0.00701579824090004, 0.007109492085874081, 0.0031556100584566593, 0.00340670975856483, -0.017614450305700302, -0.018004216253757477, -0.008912162855267525, 0.006045129615813494, -0.00942935235798359, -0.013424459844827652, 0.0329502671957016, 0.0063636889681220055, -0.004635973367840052, 0.009571767412126064, 0.009766650386154652, 0.01511844526976347, 0.0017961118137463927, -0.007900268770754337, 0.019773157313466072, -0.005048226565122604, 0.008005205541849136, 0.017494522035121918, -0.03480915352702141, 0.002777086803689599, 0.010208886116743088, -0.017734378576278687, -0.03705780580639839, 0.021152332425117493, -0.023041199892759323, 0.032560497522354126, 0.03372979909181595, 0.013716785237193108, 0.00999151635915041, 0.009286938235163689, -0.02434542030096054, 0.012345106340944767, 0.0033579887822270393, 0.004103792365640402, 0.0028614113107323647, -0.0014531922060996294, 1.6601385141257197e-05, -0.010838508605957031, -0.01975816674530506, -0.0319608598947525, 0.008005205541849136, 0.012599953450262547, 0.0071582128293812275, -0.0044860634952783585, -0.021287251263856888, -0.0033317545894533396, -0.006929599680006504, 0.03642818331718445, -0.007311870809644461, -0.004426099359989166, -0.00223553623072803, -0.010103948414325714, 0.013049684464931488, 0.006667256820946932, -0.009279442019760609, -0.00133420096244663, 0.010201389901340008, 0.0009884705068543553, 0.008012700825929642, 0.015021003782749176, -0.00823007058352232, -0.015223382972180843, 0.012727377936244011, 0.0005392082966864109, 0.023326030001044273, 0.005524191539734602, 0.0003553340502548963, -0.0002637482830323279, -0.005790282040834427, 0.039876118302345276, 0.004122531041502953, 0.004197486210614443, -0.007667907513678074, -0.005074460990726948, 0.0031218803487718105, 0.009564272128045559, -0.017734378576278687, 0.004358639474958181, 0.004358639474958181, 0.001746454043313861, -0.0009772272314876318, 0.0066597615368664265, 0.014174011535942554, -0.0009687948040664196, -0.026803946122527122, 0.005366785917431116, 0.0034704215358942747, 0.0012030295329168439, -0.00426494562998414, 0.0039051612839102745, 0.013169612735509872, -0.003605340840294957, -0.012390079908072948, 0.009549280628561974, 0.009354397654533386, -0.005913957953453064, -0.000891965813934803, 0.0022955001331865788, 0.002855789614841342, -0.02779335528612137, 0.020927466452121735, -0.010178904049098492, 0.00960174947977066, 0.016864899545907974, 0.005509200505912304, 0.008717278949916363, 0.010014002211391926, -0.004834604449570179, 0.006641022861003876, -0.002906384412199259, 0.0037308905739337206, 0.021557088941335678, -0.005842750892043114, 0.008260052651166916, 0.012060277163982391, -0.008634828962385654, 0.00934690237045288, -0.006210030987858772, -0.015223382972180843, -0.010208886116743088, 0.004231215920299292, 0.0014335165033116937, -0.009886578656733036, 0.014166515320539474, 0.009339406155049801, -0.018468938767910004, 0.012285142205655575, -0.0030694117303937674, 0.014174011535942554, 0.020747574046254158, -0.01995304971933365, -0.0008980559068731964, 0.006517346948385239, -0.0027639695908874273, 0.002799573354423046, -0.005010749213397503, 0.015515707433223724, -0.0027564740739762783, -0.004527288489043713, -0.0036334488540887833, 0.010868490673601627, 0.018843714147806168, 0.009009604342281818, 0.009751659817993641, 0.00970668625086546, -0.0022673921193927526, 0.007248159032315016, -0.004538531880825758, 0.0147361746057868, 0.010516202077269554, 0.013589361682534218, 0.018169118091464043, 0.019818130880594254, 0.02782333642244339, -0.010628634132444859, -0.005149416159838438, 0.012502511963248253, 0.008597350679337978, 0.013252063654363155, 0.002726492006331682, -0.0093019288033247, -0.0028314292430877686, 0.001037191366776824, -0.013566874898970127, -0.006532337516546249, 0.009871588088572025, -0.004441090393811464, 0.0011121464194729924, -0.00998402014374733, 0.025349818170070648, 0.006787185091525316, 0.010403769090771675, -0.010943446308374405, 0.012097754515707493, 0.01571059040725231, 0.022486532106995583, -0.022021811455488205, 0.005366785917431116, 0.0011945971054956317, -0.006937095429748297, -0.0007537673227488995, -0.03205080330371857, 0.013679306954145432, -0.0036371967289596796, 0.00586898485198617, -1.3431897059490439e-05, 0.005303074140101671, -0.010433751158416271, 0.04158509522676468, -0.025064988061785698, -0.014886084944009781, -0.0006127580418251455, -0.019938059151172638, -0.0011365067912265658, 0.014946049079298973, -0.009376884438097477, -0.019623247906565666, -0.0073493486270308495, 0.00851490069180727, 0.001407282194122672, 0.035228900611400604, -0.002625302644446492, -0.014833616092801094, -0.006940843071788549, -0.013319523073732853, 0.008694793097674847, -0.005880228243768215, 0.01460125483572483, 0.008327513001859188, 0.003815215080976486, -0.01623527705669403, -0.00642365263774991, 0.027373606339097023, -0.009271946735680103, -0.024960050359368324, 0.005625381134450436, 0.017779352143406868, 0.013154621236026287, -0.0007617312949150801, 0.015995420515537262, -0.014383885078132153, 0.002711500972509384, -0.01971319317817688, -0.004070062190294266, -0.0082375667989254, 0.026339225471019745, -0.00581651646643877, -0.017929261550307274, 0.01890367828309536, -0.014293938875198364, -0.0013951020082458854, 0.006528589874505997, -0.005846498534083366, 0.001914166146889329, 0.006015147548168898, 0.0074580335058271885, 0.014571272768080235, -0.00439236918464303, 0.009152018465101719, 0.013349505141377449, 0.00168930075597018, -0.000898524362128228, -0.009167009964585304, -0.007514249533414841, -0.010628634132444859, 0.007446790114045143, 0.0028089426923543215, 0.008552378043532372, -0.009654218330979347, 0.0027714651077985764, -0.008267548866569996, 0.002404185011982918, 0.006907113362103701, 0.010388778522610664, -0.011857897974550724, -0.010156417265534401, 0.0056890929117798805, -0.006614788435399532, -0.010178904049098492, -0.02777836285531521, 0.014398876577615738, -0.007802826818078756, 0.014833616092801094, -0.009849101305007935, 0.025334827601909637, -0.008619837462902069, -0.004557270556688309, 0.00998402014374733, 0.0156955998390913, -0.00266840192489326, 0.0005851183086633682, -0.002587825059890747, 0.021152332425117493, 0.026549099013209343, 0.009406866505742073, -0.01447383128106594, 0.02220170386135578, -0.0240006260573864, -0.001262056641280651, 0.006314967758953571, -0.014638733118772507, 0.009444343857467175, -0.0034048359375447035, -0.0013520027277991176, 0.000529370445292443, -0.01752450503408909, 0.014121542684733868, 0.00467345118522644, 0.00850740447640419, 0.00879223458468914, 0.0017155350651592016, 0.01947333663702011, -0.01593545638024807, -0.006869635544717312, 0.017674414440989494, -0.003946386277675629, 0.0508495457470417, 0.006626031827181578, 0.017239674925804138, -0.011393176391720772, 0.007506754249334335, -0.027178723365068436, 0.0009744164417497814, -0.0110783651471138, -0.001819535274989903, -0.006135075818747282, 0.005584155675023794, -0.007817817851901054, 0.012202691286802292, 0.01362683903425932, 0.0034310701303184032, -0.0010643625864759088, 0.006974572781473398, -0.01497603114694357, 0.009234469383955002, -0.0015871744835749269, -0.005527939181774855, 0.004943289328366518, -0.023131147027015686, -0.012382583692669868, 0.004452333319932222, 0.026039404794573784, -0.0029026365373283625, 0.0016321474686264992, -0.011640528216958046, 0.004501054063439369, 0.024465346708893776, -0.006708482280373573, -0.04002602770924568, 0.007735367398709059, 0.002023787936195731, 0.007510501891374588, 0.00388642237521708, 0.010995914228260517, 0.005216875579208136, -0.015770554542541504, -0.016040394082665443, -0.008814720436930656, 0.0043099187314510345, 0.0006001093424856663, -0.004819613415747881, -0.011603050865232944, -0.0055953990668058395, 0.005955183412879705, -0.002276761457324028, -0.007705385331064463, 0.006963329389691353, -0.016100358217954636, -0.024990033358335495, -0.007945241406559944, -0.00777284475043416, 0.0026065639685839415, 0.008604846894741058, -0.01866382174193859, -0.011678005568683147, -0.02675897441804409, -0.005089452024549246, 0.0036334488540887833, 0.016055384650826454, 0.0017886162968352437, -0.011258257552981377, 0.01120578870177269, -0.008964630775153637, -0.001782994600944221, 0.00894214492291212, -0.015133436769247055, 0.014541290700435638, -0.016924863681197166, -0.00540801091119647, -0.01785430684685707, -0.011820420622825623, -0.020462743937969208, -0.028857717290520668, 0.01646014116704464, -0.005089452024549246, -0.007750358432531357, -0.0027152488473802805, -0.011145824566483498, 0.0029982044361531734, -0.013117143884301186, -0.01571059040725231, 0.00891965813934803, -0.004774640314280987, 0.00540801091119647, 0.01947333663702011, -0.0021062386222183704, 0.003603466786444187, -0.024660231545567513, -0.01915852539241314, 0.0069558341056108475, 0.016595061868429184, -0.013169612735509872, -0.013544388115406036, -0.01230013370513916, 0.004373630508780479, 0.011865394189953804, 0.003942638635635376, -0.0009383442811667919, -0.018573876470327377, 0.01539577916264534, -0.003863935824483633, -0.01888868771493435, -0.004830856807529926, -0.00823007058352232, -0.010366291739046574, 0.009099550545215607, -0.02214173972606659, 0.006438643671572208, -0.009256956167519093, 0.03354990854859352, 0.0091969920322299, 0.014593759551644325, 0.01351440604776144, 0.0033729798160493374, -0.010073966346681118, 0.01538078859448433, -0.02299622818827629, 0.005119434092193842, 0.030431773513555527, 0.011183301918208599, -0.024510320276021957, 0.004463576711714268, -0.0006806860910728574, 0.014413867145776749, -0.022801343351602554, 0.001117768115364015, 0.007315618451684713, -0.006416157353669405, 0.005812768824398518, 0.013439451344311237, -0.008627332746982574, -0.00985659658908844, 0.01759945973753929, -0.011970330961048603, 0.002818312030285597, -0.02160206250846386, -0.026249278336763382, 0.023985635489225388, 0.00784779991954565, 0.0035791064146906137, -0.0028895195573568344, -0.0028445464558899403, -0.010306327603757381, 0.011070869863033295, 0.01039627380669117, 0.004501054063439369, -0.0044036125764250755, -0.005213127937167883, -0.0213771965354681, 0.009226974099874496, -0.0032886553090065718, 0.034719206392765045, -0.01013393048197031, 0.006247508339583874, -0.02110735885798931, 0.010846003890037537, -0.0031930876430124044, 0.004958280362188816, 0.004692189861088991, 0.009924056008458138, -0.0007954611210152507, -0.007997710257768631, -0.010935950092971325, 0.009924056008458138, 0.002805195050314069, -0.010583661496639252, -0.004122531041502953, -0.012899774126708508, -0.005063217598944902, -0.002709627151489258, -0.011115842498838902, 0.0019094813615083694, -0.0025128701236099005, 0.00347979087382555, -0.023580877110362053, -0.00825255736708641, 0.013454441912472248, 0.016130339354276657, 0.02218671143054962, -0.005366785917431116, -0.02239658683538437, 0.00985659658908844, -0.010088957846164703, 0.018049189820885658, -0.005269343964755535, -0.0067834374494850636, 0.01366431638598442, 0.014248966239392757, -0.012749863788485527, 0.009399370290338993, -0.0156955998390913, 0.011827915906906128, 0.009309424087405205, -0.002117481781169772, -0.02675897441804409, -0.010096453130245209, 0.01756947673857212, -0.007900268770754337, -0.01785430684685707, -0.005156911443918943], "033405c9-8636-4dfa-8ee3-4ce39b433530": [-0.035290032625198364, -0.006321691907942295, -0.009412886574864388, 0.025910314172506332, -0.04659345746040344, -0.027038002386689186, 0.004636792000383139, 0.03266318142414093, 0.010878882370889187, 0.040782541036605835, -0.00015961774624884129, 0.014699758030474186, 0.000150496736750938, -0.0014718000311404467, 0.006358176004141569, 0.009764459915459156, -0.005097817629575729, 0.0029800841584801674, 0.007953524589538574, 0.0021011498756706715, 0.03619218245148659, -0.02678593061864376, -0.01674286462366581, -0.01026196964085102, -0.007794321049004793, -0.0062719411216676235, -0.004404620733112097, 0.0003262835380155593, -0.04855696111917496, -0.0142486821860075, 0.004165816120803356, 0.020749477669596672, -0.01684900000691414, 0.0022155772894620895, 0.004218883812427521, -0.0414724200963974, 0.007091173902153969, -0.000888884300366044, -0.00582418218255043, -0.02129342220723629, -0.053810667246580124, 0.019369717687368393, 0.009903762489557266, -0.002298495499417186, -0.016835734248161316, -0.018812505528330803, 0.02145262435078621, -0.0033830669708549976, -0.021664895117282867, -0.010222169570624828, 0.02090868167579174, 0.03138955682516098, -0.027077803388237953, -0.01906457729637623, 0.02108115144073963, -0.06076253578066826, 0.028178958222270012, 0.08719026297330856, 0.003529003355652094, -0.07026165723800659, -0.028815770521759987, 0.00947922095656395, 0.002298495499417186, -0.027091071009635925, -0.01297505758702755, 0.0024742824025452137, -0.0037910251412540674, -0.011721332557499409, -0.006659998558461666, 0.0191972479224205, -0.012988324277102947, 0.04497488960623741, -0.030248599126935005, 0.0061691221781075, 0.01858696900308132, 0.004593674559146166, 0.0151375662535429, -0.011256990022957325, 0.021545493975281715, 0.008756173774600029, -0.020431071519851685, 0.004517389461398125, 0.035847242921590805, 0.034069474786520004, 0.053147319704294205, 0.02500816248357296, -0.016424458473920822, -0.034520551562309265, -0.04229497164487839, -0.03454708307981491, 0.03176102787256241, 0.04202963411808014, -0.015455973334610462, -0.010925316251814365, -0.012716352008283138, 0.021359756588935852, 0.022487444803118706, 0.004650058690458536, -0.0007918698829598725, -0.026759397238492966, -0.0020911998581141233, 0.0022719616536051035, -0.016557127237319946, -0.002532325219362974, -0.005913733970373869, 0.0009311726316809654, -0.03454708307981491, 0.009041412733495235, -0.023973342031240463, -0.009247049689292908, 0.0025273500941693783, -0.050042860209941864, 0.0006318375235423446, 0.02455708757042885, -0.008570436388254166, -0.002611926756799221, -0.012431113049387932, 0.016106052324175835, -0.01297505758702755, -0.01707453839480877, 0.04003959521651268, 0.013293463736772537, -0.008981711231172085, -0.025419436395168304, -0.013147527351975441, 0.01239794585853815, 0.008072926662862301, -0.017220474779605865, 0.010819180868566036, 0.006676582153886557, -0.0037346407771110535, -0.011111053638160229, 0.028736170381307602, -0.01796342246234417, -0.0036185551434755325, 6.115225551184267e-05, -0.01339296530932188, 0.06315058469772339, -0.010520675219595432, 0.02701146900653839, -0.013505734503269196, -0.015509041026234627, -0.0029834008309990168, 0.012630117125809193, 0.0409417450428009, 0.017658283933997154, -0.038235291838645935, 0.026600193232297897, -0.014235415495932102, 0.0059336344711482525, -0.049167241901159286, -0.005744580645114183, -0.011535595171153545, 0.009313385002315044, 0.02334979549050331, -0.01053394190967083, 0.01544270571321249, 0.043833933770656586, 0.019170712679624557, 0.043993137776851654, -0.015522307716310024, -0.05710086598992348, -0.006245407275855541, 0.020364737138152122, 0.036245252937078476, 0.03789035230875015, 0.031628359109163284, 0.01741947792470455, -0.009492488577961922, 0.009936930611729622, 0.007648385129868984, -0.004461004864424467, 0.01836143061518669, 0.011827467940747738, -0.0028955074958503246, -0.04107441380620003, 0.05123688280582428, 0.03852716460824013, 0.016331590712070465, -0.015389638021588326, -0.025910314172506332, 0.015190633945167065, 0.011197288520634174, -0.0010679878760129213, -0.003588704392313957, 0.047548674046993256, 0.0022537196055054665, 0.04311751946806908, 0.013757806271314621, -0.018785972148180008, -0.014898762106895447, 0.025021430104970932, 0.009439419955015182, 0.01979425922036171, -0.013399599120020866, -0.010003264993429184, 0.013432766310870647, 0.01768481731414795, 0.008072926662862301, 0.0381556898355484, -0.031363021582365036, -0.039455849677324295, -0.047946684062480927, 0.028497364372015, -0.05251050740480423, 0.052537042647600174, -0.04025186598300934, -0.026746129617094994, 0.022872187197208405, -0.015601908788084984, 0.06553862988948822, -0.023641668260097504, -0.012391312047839165, -0.004033146426081657, -0.01657039485871792, 0.009028146043419838, 0.000830426870379597, 0.023150792345404625, 0.012895455583930016, -0.03215903788805008, -0.007296811323612928, 0.015071231871843338, -0.017061270773410797, 0.003913744352757931, -0.05277584493160248, -0.016039717942476273, -0.021585294976830482, 0.03844756260514259, -0.01363840326666832, -0.007767787203192711, 0.007741253357380629, -0.018507366999983788, 0.00923378299921751, -0.02240784466266632, 0.006719700060784817, -0.003893843851983547, 0.031575292348861694, -0.0007035618764348328, -0.0025538839399814606, -0.026348121464252472, 0.015721311792731285, 0.018918640911579132, 0.0033498997800052166, 0.023522265255451202, -0.022991588339209557, 0.024689756333827972, 0.011688165366649628, 0.0338306687772274, -0.013956810347735882, -0.016013184562325478, 0.014354817569255829, 0.03072620928287506, 0.018202226608991623, 0.0019319966668263078, -0.024159079417586327, 0.02561844140291214, 0.024052944034337997, -0.03099154680967331, 0.009936930611729622, 0.0014054653001949191, -0.006567130330950022, -0.028576966375112534, -0.004391353577375412, 0.01791035570204258, 0.021704696118831635, -0.001824202830903232, 0.03250397741794586, -0.011356491595506668, -0.01946258544921875, 0.010527309030294418, -0.02601644955575466, 0.007973425090312958, -0.0065405964851379395, 0.02472955733537674, 0.018494099378585815, -0.020152466371655464, -0.018706370145082474, 0.004570457153022289, 0.005980068352073431, -0.0180695578455925, 0.006560496520251036, 0.03568803891539574, 0.003824192564934492, -0.027157405391335487, 0.01902477629482746, -0.011800933629274368, -0.04099481180310249, 0.009565455839037895, -0.0529085136950016, 0.019316649064421654, 0.00576448068022728, -0.013996610417962074, 0.021147485822439194, 0.015283502638339996, 0.0008996636606752872, -0.00014904566342011094, -0.010885516181588173, -0.01618565432727337, -0.03693513199687004, 0.030699675902724266, 0.012616850435733795, -0.018321629613637924, -0.007336611859500408, -0.02706453576683998, 0.028497364372015, -0.04608931392431259, 0.00884904246777296, 0.012106073088943958, -0.007263644132763147, 0.043833933770656586, 0.034573618322610855, -0.023097723722457886, -0.04823855683207512, 0.00442452123388648, -0.0073697795160114765, 0.012523981742560863, -0.010892149060964584, 0.02628178708255291, -0.0016550495056435466, -0.018003223463892937, -0.024596886709332466, -0.012464280240237713, -0.05964811518788338, 0.03322039172053337, 0.03192023187875748, -0.04720373451709747, 0.04537289962172508, 0.0012744544073939323, -0.00961852353066206, -0.03239784389734268, -0.011217189021408558, -0.03953545168042183, -0.01735314354300499, 0.012484180741012096, -0.028709635138511658, -0.03600644692778587, -0.0391639769077301, -0.015018164180219173, -0.033406127244234085, -0.014567088335752487, -0.0056284950114786625, 0.022832386195659637, -0.0047163935378193855, -0.03176102787256241, 0.01913091167807579, 0.023442665114998817, 0.014155813492834568, -0.019979996606707573, -0.032291706651449203, 0.02488875947892666, 0.0008092827047221363, 0.0009038095595315099, 0.0330611877143383, -0.005757847335189581, 0.0009502438479103148, -0.01708780601620674, -0.02012593299150467, -0.007296811323612928, -0.014766092412173748, -0.013101092539727688, -0.023084457963705063, -0.01785728707909584, -0.014646690338850021, -0.008232129737734795, -0.0031044615898281336, 0.023522265255451202, -0.0151375662535429, -0.02844429761171341, -0.024132544174790382, -0.010633444413542747, -0.051608357578516006, 0.010772746987640858, -0.00196848064661026, 0.014726291410624981, -0.03576764091849327, -0.050706204026937485, 0.02539290301501751, 0.00828519742935896, -0.021280154585838318, 0.018255295231938362, -0.005605277605354786, 0.03632485494017601, -0.020165732130408287, 0.02417234517633915, 0.04287871718406677, -0.01951565407216549, -0.023867206647992134, -0.011794300749897957, -0.013704738579690456, 0.0019618473015725613, -0.00984406191855669, -0.015310036949813366, -0.04914070665836334, -0.0026152434293180704, -0.028178958222270012, -0.01834816299378872, -0.006736283656209707, -0.027104336768388748, 0.011223822832107544, -0.0414724200963974, 0.006135954987257719, 0.006865635979920626, -0.017618482932448387, 0.00529682170599699, 0.002588709583505988, -0.018321629613637924, 0.011164121329784393, -0.018441032618284225, 0.027356408536434174, 0.001676608226262033, 0.009220516309142113, 0.012046372517943382, 0.04258684441447258, 0.024663222953677177, 0.051661424338817596, 0.023601867258548737, -0.02483569271862507, 0.0491141751408577, -0.014646690338850021, -0.0067595005966722965, 0.04441767930984497, 0.04818549007177353, -0.002658361103385687, 0.023309994488954544, -0.008689838461577892, 0.00507460068911314, -0.014155813492834568, 0.019979996606707573, 0.0008300122572109103, 0.005333305802196264, -0.03735967352986336, 0.05726006627082825, 0.011668264865875244, -0.005721363238990307, 0.009014878422021866, -0.004451055079698563, 0.03653712570667267, 0.011018184944987297, 0.01625198870897293, -0.01986059360206127, -0.030195532366633415, 0.011150854639708996, 0.006126004736870527, -0.014620156027376652, -0.04126014932990074, -0.039455849677324295, -0.008908743038773537, -0.005482558626681566, 0.04746907576918602, 0.00594690116122365, 0.01505796518176794, 0.008782707154750824, -0.09175408631563187, 0.019329916685819626, -0.015933582559227943, 0.0018374697538092732, 0.007150874938815832, 0.013731271959841251, 0.0021426090970635414, -0.037837281823158264, -0.0407029390335083, -0.005243754014372826, 0.04423194378614426, 0.008106093853712082, 0.0013689813204109669, -0.046328119933605194, 0.006583713926374912, 0.007973425090312958, -0.006218873430043459, 0.02340286411345005, 0.015721311792731285, 0.001014920067973435, -0.001139297615736723, 0.05025513097643852, 0.0024510652292519808, -0.010912049561738968, -0.017591949552297592, -0.002653385978192091, -0.004961831495165825, -0.02640119008719921, -0.023270195350050926, -0.011270256713032722, -0.027754416689276695, 0.002242111135274172, 0.01745927892625332, -0.017711350694298744, -0.03494509309530258, -0.004845745861530304, 0.04343592748045921, -0.008570436388254166, 0.054155606776475906, 0.008855675347149372, 0.001407952862791717, 0.02305792272090912, -0.022553781047463417, -0.0007499961066059768, 0.0033797502983361483, -0.04415234178304672, -0.031071148812770844, -0.03221210464835167, 0.029028041288256645, -0.014460952952504158, 0.01940951868891716, -0.0011591980000957847, -0.004789361730217934, 0.03717393800616264, -0.0230181235820055, 0.057525407522916794, -0.00018490782531443983, -0.033459197729825974, -0.02921377867460251, 0.034679755568504333, -0.0010588668519631028, 0.005648395046591759, 0.0037678079679608345, 0.015018164180219173, -0.0014137572143226862, 0.011741233058273792, 0.02052393928170204, 0.022434378042817116, 0.009412886574864388, -0.009691491723060608, 0.005286871455609798, -0.015084498561918736, -0.025605173781514168, -0.006102787796407938, -0.015708044171333313, -0.030036328360438347, 0.04537289962172508, -0.02411927841603756, -0.025578640401363373, 0.0032669813372194767, -0.03430828079581261, 0.025631707161664963, 0.027701348066329956, -0.00801322516053915, -0.02396007440984249, -0.010852348059415817, 0.006407926790416241, -0.012265276163816452, 0.004417887423187494, 0.02516736462712288, 0.003960178699344397, -0.004596990998834372, -0.01366493757814169, 0.06028492748737335, -0.0108722485601902, -0.0007686527096666396, 0.0025074495933949947, 0.03170796111226082, -0.03454708307981491, -0.00029933510813862085, -0.016384657472372055, 0.009021512232720852, 0.00773462001234293, -0.03934971243143082, 0.010182368569076061, -0.007024839054793119, -0.019727924838662148, -0.010805914178490639, -0.0277278833091259, 0.033804137259721756, 0.0020530573092401028, 0.02051067352294922, -0.019727924838662148, -0.02434481494128704, -0.013101092539727688, 0.0002653386036399752, -0.014288483187556267, 0.008610237389802933, 0.03775767982006073, 0.00831836462020874, 0.03489202633500099, -0.00892864353954792, 0.01752561330795288, 0.031124217435717583, 0.0318140983581543, 0.028974974527955055, -0.04792014881968498, -0.009134281426668167, 0.009459320455789566, -0.004116064868867397, 0.01225864328444004, 0.004182399716228247, 0.02900150790810585, 0.054102540016174316, -0.007582050282508135, -0.03234477341175079, -0.0047130766324698925, 0.01934318244457245, -0.012125973589718342, 0.023548800498247147, -0.01963505521416664, -0.008669938892126083, -0.013525635004043579, 0.00889547634869814, 0.0356084406375885, 0.011668264865875244, 0.01247754693031311, 0.0077080861665308475, 0.030301667749881744, 0.007926990278065205, -0.012683184817433357, -0.022089438512921333, -0.022527245804667473, 0.0440196730196476, -0.01797669008374214, 0.034520551562309265, 0.0017479179659858346, 0.04969791695475578, 0.013120993040502071, 0.004185716155916452, 0.03125688433647156, 0.0018772705225273967, 0.023203859105706215, 0.014460952952504158, -0.0005041433032602072, 0.029134176671504974, 0.007820854894816875, 0.015601908788084984, 0.021930234506726265, -0.013154160231351852, 0.03836796060204506, -0.022434378042817116, 0.018653303384780884, 0.018494099378585815, -0.02732987515628338, 0.013485834002494812, -0.018149159848690033, -0.01940951868891716, 0.002805955708026886, 0.003708106931298971, 0.0010439414763823152, -0.024026408791542053, 0.021227087825536728, 0.0012379703111946583, -0.013572068884968758, 0.022036369889974594, -0.02068314328789711, 0.0024892077781260014, -0.009452687576413155, 0.011807567439973354, -0.007243743631988764, 0.02860349975526333, -0.01951565407216549, 0.02860349975526333, -0.02833816222846508, -0.010958483442664146, 0.0330611877143383, 0.02362840250134468, -0.015376371331512928, 0.009591990150511265, 0.014315016567707062, 0.013598603196442127, -0.0009792651981115341, -0.009432787075638771, 0.008106093853712082, -0.02146589197218418, 0.016994936391711235, 0.02028513513505459, 0.024742823094129562, 0.001090375822968781, 0.017432745546102524, 0.01597338356077671, 0.020378004759550095, -0.003121045185253024, 0.0373862087726593, 0.0016666579758748412, 0.02273951657116413, 0.037465810775756836, 0.04375433549284935, -0.008709738962352276, 0.014951829798519611, 0.0003727177972905338, -0.003162504406645894, 0.005459341686218977, 0.021001549437642097, 0.01879923976957798, 0.00981752760708332, -0.02084234729409218, -0.021001549437642097, -0.0363779217004776, -0.04173776134848595, -0.02540617063641548, -0.004391353577375412, -0.014315016567707062, 0.001606956822797656, 0.05025513097643852, -0.048822302371263504, -0.0032023051753640175, -0.0020762744825333357, 0.007582050282508135, 0.01890537515282631, 0.02108115144073963, 0.021359756588935852, 0.005943584255874157, 0.020006529986858368, -0.008948544040322304, 0.013134260661900043, -0.023814138025045395, -0.053863734006881714, -0.028921905905008316, 0.010958483442664146, -0.044046204537153244, 0.017432745546102524, 0.0012910381192341447, -0.030036328360438347, -0.027157405391335487, -0.003033151850104332, 0.009525655768811703, -0.0015091132372617722, -0.027409477159380913, -0.013956810347735882, 0.016888801008462906, 0.02484895847737789, 0.02169143036007881, -0.0066102477721869946, 0.01708780601620674, 0.0173000767827034, 0.015601908788084984, 0.007349879015237093, 0.03192023187875748, -0.016331590712070465, -0.02794015407562256, -0.03510429710149765, 0.035130828619003296, -0.0004112748138140887, 0.0038109254091978073, 0.003283565165475011, 0.012543882243335247, 0.05025513097643852, -0.00937308557331562, -0.01852063462138176, 0.006782717537134886, 0.02019226737320423, 0.004945247899740934, -0.019807524979114532, 0.006437777541577816, 0.04470955207943916, -0.01668979786336422, -0.011781033128499985, -0.00898834504187107, 0.02373453788459301, 0.004212250001728535, 0.01596011593937874, 0.0002740450145211071, 0.021028082817792892, -0.0006330813048407435, -0.009014878422021866, -0.007641751319169998, 0.037731148302555084, -0.019157446920871735, 0.039455849677324295, 0.032026369124650955, -0.009591990150511265, 0.0011036427458748221, 0.040331464260816574, -0.025883778929710388, 0.006212239619344473, 0.042719513177871704, -0.011999937705695629, 0.015402905642986298, -0.012756153009831905, -0.000667907006572932, 0.024384615942835808, 0.015933582559227943, 0.0005049725295975804, 0.013472567312419415, 0.02606951631605625, 0.010640077292919159, 0.040278397500514984, 0.0014610206708312035, 0.021837366744875908, 0.025910314172506332, -0.018494099378585815, -0.043329790234565735, 0.0247958917170763, 0.006885536480695009, -0.025419436395168304, -0.019329916685819626, 0.0005331647116690874, -0.03428174555301666, 0.0013532268349081278, -0.023110991343855858, 0.031124217435717583, -0.045611705631017685, 0.005220536608248949, 0.015986649319529533, 0.009087846614420414, 0.006033136043697596, -0.012006571516394615, 0.004772778134793043, -0.00756878312677145, 0.03526349738240242, 0.010003264993429184, -0.01264338381588459, 0.01879923976957798, -0.013107726350426674, 0.009472588077187538, 0.004938614554703236, 0.007276910822838545, -0.03826182335615158, 0.042666446417570114, 0.030567005276679993, -0.01300822477787733, -0.012145874090492725, 0.028019756078720093, -0.025870513170957565, -0.02666652761399746, 0.00790045689791441, 0.005001632496714592, -0.026878800243139267, -0.014805893413722515, 0.01745927892625332, -0.009744559414684772, -0.026162385940551758, 0.0018905374454334378, -0.007004939019680023, 0.030911946669220924, -0.012378045357763767, -0.01857370138168335, 0.013718005269765854, 0.05296158418059349, -0.018759438768029213, 0.009359818883240223, -0.012610216625034809, -0.00115753966383636, 0.012278543785214424, 0.002208943711593747, -0.01991366222500801, -0.01366493757814169, -0.030301667749881744, 0.0014792626025155187, 0.04041106626391411, -0.012099440209567547, 0.022832386195659637, -0.02235477603971958, 0.025804178789258003, -0.037120867520570755, 0.03582071140408516, -0.033406127244234085, -0.05179409310221672, -0.03619218245148659, -0.0045240228064358234, -0.01913091167807579, -0.010746212676167488, 0.01658366248011589, 0.013678204268217087, 0.024649955332279205, 0.03759847953915596, 0.03186716511845589, -0.005313405301421881, 0.0002672042464837432, -0.0220098365098238, -0.012968423776328564, 0.018109358847141266, -0.0211209524422884, -0.019701389595866203, -0.021386289969086647, 0.016278522089123726, 0.014208881184458733, 0.007867289707064629, -0.02333652973175049, 0.003887210274115205, -0.02296505495905876, -0.018812505528330803, -0.015389638021588326, 0.019993262365460396, 0.015455973334610462, 0.0034394515678286552, 0.002457698807120323, -0.019449319690465927, 0.027648281306028366, 0.016039717942476273, -0.03287545219063759, -0.022633381187915802, 0.004839112516492605, 0.016013184562325478, -0.04290524870157242, 0.007349879015237093, -0.0005771114374510944, 0.016623463481664658, 0.012271909974515438, 0.004500805865973234, -0.032583579421043396, 0.010036432184278965, 0.0171806737780571, -0.024371350184082985, 0.015124299563467503, 0.018043024465441704, 0.002524033421650529, -0.008948544040322304, -0.002195676788687706, -0.004397987388074398, -0.003960178699344397, -0.0055057755671441555, -0.007694819010794163, -0.03138955682516098, -0.007396313361823559, -0.006245407275855541, 0.005071283783763647, -0.04290524870157242, -0.008577070198953152, 0.03327345848083496, 0.01554884109646082, -0.04829162359237671, 0.033512264490127563, 0.0007101953378878534, 0.007018205709755421, -0.0021973352413624525, 0.014155813492834568, 0.03709433600306511, -0.00043158981134183705, -0.00438140332698822, 0.0343613475561142, 0.03417561203241348, 0.017167406156659126, -0.002533983439207077, -0.014222148805856705, -0.01175449974834919, -0.0065704467706382275, 0.010653344914317131, 0.03343266248703003, 0.011097786948084831, -0.021532226353883743, -0.019940195605158806, -0.010036432184278965, -0.027197206392884254, -0.022434378042817116, 0.016212187707424164, -0.0010373080149292946, 0.014102745801210403, 0.022049637511372566, 0.0008125994354486465, -0.01120392233133316, -0.006394660100340843, -0.024079477414488792, -0.0173000767827034, -0.015535574406385422, -0.007960157468914986, -0.03261011466383934, -0.011708064936101437, 0.01901151053607464, 0.00460362434387207, -0.02019226737320423, -0.03425521403551102, -0.02622872032225132, 0.028683101758360863, 0.012882188893854618, 0.020218800753355026, -0.009572089649736881, 0.024875493720173836, -0.004096164368093014, 0.019754458218812943, 0.029081109911203384, 0.007641751319169998, 0.006460994482040405, -0.01308782584965229, 0.024862226098775864, 0.0020165732130408287, 0.00020522282284218818, -0.02738294191658497, -0.00010095303878188133, 0.0019286798778921366, -0.0076682851649820805, 0.010374738834798336, -0.025366369634866714, -0.0073697795160114765, -0.004878913518041372, 0.005121035035699606, 0.002397997537627816, -0.003893843851983547, -0.02561844140291214, 0.010414539836347103, 0.003016568021848798, -0.015654977411031723, -0.01623872108757496, -0.0026334854774177074, -0.021439358592033386, 0.007077906746417284, 0.007329978514462709, 0.0016368074575439095, -0.0028142475057393312, 0.007999958470463753, -0.011681531555950642, -0.010746212676167488, -0.006958504673093557, 0.023814138025045395, -0.03133648633956909, 0.004318385384976864, 0.038951706141233444, -0.04417887702584267, -0.0032404474914073944, -0.016504060477018356, -0.018732905387878418, -0.002255378058180213, -0.025976648554205894, -0.027051270008087158, 0.005263654515147209, -0.023853939026594162, -0.0037479077000170946, 0.01768481731414795, -0.022606847807765007, 0.02738294191658497, -0.00722384313121438, 0.02207617089152336, -0.028868839144706726, -0.024039676412940025, 0.00015868491027504206, 0.005031483247876167, -0.014673223719000816, -0.03099154680967331, -0.003857359755784273, -0.0006919532897882164, 0.0006388855981640518, 0.010321671143174171, 0.010321671143174171, -0.016716331243515015, 0.004875596612691879, 0.03154875710606575, -0.017618482932448387, -0.003325024154037237, 0.01319396123290062, -0.024543819949030876, -0.02540617063641548, -0.019993262365460396, -0.00964505784213543, 0.0024676488246768713, 0.023694736883044243, -0.008703106082975864, -0.009605256840586662, -0.03125688433647156, 0.008192328736186028, -0.0064543611370027065, -0.0014154155505821109, -0.02661346085369587, 0.012762785889208317, -0.062248434871435165, -0.014925295487046242, -0.028072822839021683, 0.0132271284237504, 0.007442747708410025, 0.010222169570624828, 0.018706370145082474, 0.013134260661900043, -0.021704696118831635, 0.006978405173867941, 0.01067324448376894, -0.019263582304120064, 0.029691388830542564, 0.02151896059513092, -0.018122626468539238, 0.015323303639888763, -0.010374738834798336, -0.0034427682403475046, 0.02251398004591465, -0.01991366222500801, -0.009140914306044579, 0.01042117364704609, 0.013784339651465416, -0.0297709908336401, -0.016490792855620384, 0.02799322083592415, -0.0067561836913228035, -0.0014361451612785459, -0.0010406248038634658, -0.03627178445458412, 0.042003098875284195, 0.02605625055730343, -0.007449381053447723, -0.011900436133146286, -0.0022470862604677677, 0.03192023187875748, 0.007575416937470436, 0.009386352263391018, 0.019475853070616722, -0.005091184284538031, 0.005346572492271662, 0.023774337023496628, 0.003402967471629381, -0.010275237262248993, -0.009691491723060608, -0.03812915459275246, -0.0171806737780571, -0.03245091065764427, -0.01256378274410963, 0.019038043916225433, 0.015323303639888763, 0.02155875973403454, -0.0027081118896603584, -0.00868320558220148, 0.01775115169584751, 0.002797663677483797, 0.009565455839037895, -0.002930333139374852, 0.016676530241966248, 0.006683215964585543, 0.03425521403551102, 0.02323039434850216, 0.0010290162172168493, 0.012868921272456646, -0.021824099123477936, 0.0169153343886137, 0.00951238814741373, 0.01647752709686756, 0.016331590712070465, -0.00028358062263578176, 0.0072503769770264626, -0.026547126471996307, 0.01956872083246708, 0.04009266197681427, -0.009061313234269619, -0.002175776520743966, 0.025326568633317947, 0.014766092412173748, -0.0009029803914017975, -0.01846756599843502, -0.017711350694298744, 0.002074616029858589, 0.006139271892607212, -0.01946258544921875, -0.016716331243515015, -0.016649996861815453, -0.003562170546501875, -0.02699820138514042, -0.004149232059717178, 0.013651670888066292, 0.03276931494474411, -0.003598654642701149, 0.031363021582365036, 0.007111074402928352, -0.017499079927802086, 0.028152424842119217, -0.023376330733299255, -0.006706432905048132, -0.00480926176533103, -0.0026202185545116663, -0.002371463691815734, -0.029877126216888428, 0.005552209913730621, -0.013174060732126236, -0.010832447558641434, 0.005482558626681566, 0.014261948876082897, 0.011429459787905216, -0.01841449737548828, -0.006059669889509678, -0.007170775439590216, 0.025273500010371208, -0.027966687455773354, 0.0064543611370027065, -0.005409590434283018, 0.014713024720549583, -0.0247958917170763, -0.025605173781514168, -0.02273951657116413, 0.0006488357903435826, -9.069190127775073e-05, 0.011396292597055435, 0.0027263539377599955, -0.0056948293931782246, -0.015389638021588326, 0.008802607655525208, -0.010786013677716255, 0.003422867739573121, -0.023110991343855858, 0.011575396172702312, -0.013240396045148373, -0.0099833644926548, -0.021386289969086647, 0.01239794585853815, -0.017167406156659126, 0.005727997049689293, 0.004361503291875124, -0.03149569034576416, 0.0335918664932251, -0.031575292348861694, -0.000935318530537188, 0.012152507901191711, 0.012769419699907303, 0.0011293473653495312, -0.026149118319153786, -0.012291810475289822, -0.016384657472372055, 0.005708096548914909, 0.017432745546102524, -0.008291831240057945, 0.0024709657300263643, -0.009333284571766853, 0.005976751912385225, 0.0015746187418699265, -0.010242070071399212, -0.02340286411345005, -0.024477485567331314, -0.0005232145194895566, -0.01192033663392067, -0.029426049441099167, -0.022633381187915802, 0.007389679551124573, -0.0027678131591528654, -0.005084550939500332, -0.013366431929171085, 0.0009212224395014346, -0.014155813492834568, -0.0050182160921394825, 0.011688165366649628, -0.02422541379928589, -0.004451055079698563, -0.002777763409540057, 0.0024759406223893166, -0.011455994099378586, 0.01708780601620674, -0.014938563108444214, -0.017034737393260002, -0.021492425352334976, 0.017260275781154633, -0.00020936873625032604, -0.010109400376677513, -0.0011782691581174731, -0.02362840250134468, 0.020722944289445877, 0.023137524724006653, 0.003200646722689271, -0.007416213862597942, 0.005124351475387812, 0.01195350382477045, -0.006567130330950022, 0.02211597189307213, 0.008291831240057945, -0.014487487263977528, 0.014726291410624981, 0.011270256713032722, -0.0014303408097475767, 0.03677592799067497, 0.03688206523656845, 0.0029850590508431196, -0.00015723385149613023, -0.013446033000946045, 0.008358165621757507, 0.00809946097433567, -0.0010945217218250036, -0.004252051003277302, 0.0041890330612659454, -0.039508916437625885, 0.0023863890673965216, 0.025910314172506332, -0.013154160231351852, -0.005834132432937622, 0.005565477069467306, 0.01455382164567709, -0.018043024465441704, 0.002691528294235468, -0.01802975684404373, 0.002126025501638651, -0.04691186174750328, 0.007509082090109587, 0.00490876380354166, 0.03555537015199661, -0.011051352135837078, 0.009107747115194798, 0.011741233058273792, -0.006872269324958324, 6.840760761406273e-05, 0.006384709849953651, -0.0440196730196476, -0.031124217435717583, -0.00633495906367898, -0.008669938892126083, 0.0239070076495409, -0.00011888412700500339, -0.024596886709332466, -0.011575396172702312, -0.0016981669468805194, 0.0534391924738884, -0.019117645919322968, 0.029930192977190018, 0.01205963920801878, -0.025300035253167152, -0.01635812409222126, 0.010613543912768364, 0.0036517223343253136, 0.03897823765873909, 0.025485772639513016, -0.0035124195273965597, -0.0035356367006897926, 0.00033892859937623143, 0.01869310438632965, -0.0019767724443227053, -0.010069599375128746, -0.015084498561918736, 0.006145905237644911, 0.0076749189756810665, 0.004693176131695509, -0.006451044697314501, -0.02328346110880375, -0.018281828612089157, -0.022155772894620895, 0.01300822477787733, 0.0009419519919902086, 0.026480792090296745, -0.02601644955575466, 0.033406127244234085, -0.0011641731252893806, 0.0036052882205694914, 0.02640119008719921, -0.007356512360274792, -0.00032856379402801394, 0.005044749937951565, 0.016225455328822136, -0.022368043661117554, 0.0056948293931782246, 0.01225864328444004, 0.005482558626681566, 0.014898762106895447, -0.003970128484070301, -0.020815812051296234, 0.019993262365460396, -0.0007296811090782285, -0.0011824150569736958, -0.00970475934445858, 0.017923621460795403, 0.0007238768739625812, 0.00037064484786242247, 0.01775115169584751, -0.0075223492458462715, 0.03802302107214928, -0.032291706651449203, 0.00667989905923605, -0.003648405661806464, 0.006308425217866898, 0.011084519326686859, 0.01244437973946333, -0.02584397792816162, -0.004709760192781687, 0.002532325219362974, 0.02063007466495037, -0.009545556269586086, 0.009545556269586086, -0.00043407734483480453, -0.01857370138168335, -0.009326651692390442, -0.013293463736772537, -0.00014313773135654628, -0.005363156087696552, 0.020218800753355026, 0.007230476476252079, 0.016663264483213425, 0.0023648301139473915, 0.014593622647225857, -0.00868320558220148, -0.0061691221781075, -0.008530635386705399, 0.010885516181588173, 0.016052985563874245, -0.0003194427990820259, -0.02052393928170204, -0.05534962937235832, -0.015389638021588326, -0.014009878039360046, 0.02738294191658497, -0.00174625962972641, -0.034122541546821594, 0.0011285182554274797, 0.008875575847923756, -0.011117687448859215, 0.023973342031240463, -0.012961789965629578, -0.02839122898876667, 0.05083887279033661, -0.006311741657555103, -0.031203817576169968, 0.002668311120942235, 2.94424785352021e-06, -0.019714657217264175, -0.0072503769770264626, 0.016769399866461754, 0.0003631821891758591, 0.013346531428396702, 0.0021409508772194386, 0.016450991854071617, -0.00024046309408731759, 0.017936889082193375, 0.008769440464675426, 0.00903477892279625, 0.032901983708143234, 0.01554884109646082, 0.00981752760708332, 0.007867289707064629, -0.00032006468973122537, -0.004616891499608755, -0.000457294489024207, 0.01791035570204258, 0.016490792855620384, 0.0026931867469102144, 0.01000989880412817, -0.00405968027189374, -0.02234151028096676, -0.02799322083592415, -0.0014170738868415356, -0.004510756116360426, 0.009519021958112717, -0.004550556652247906, 0.0012918672291561961, 0.02711760438978672, -0.013538901694118977, 0.033804137259721756, -0.00906794611364603, 0.009664958342909813, 0.0010688169859349728, -0.0009759485255926847, -0.021532226353883743, -0.01784401945769787, 0.012132607400417328, -0.006547229830175638, 0.0005808427813462913, 0.021996568888425827, -0.004208933562040329, -0.003963495139032602, 0.014819160103797913, -0.02206290327012539, -0.036404453217983246, -0.027436010539531708, 0.019276848062872887, -0.005210586823523045, -0.014288483187556267, -0.014898762106895447, -0.01266991812735796, -0.004318385384976864, -0.0029668172355741262, 0.0014295116998255253, 0.021877167746424675, 0.0011500769760459661, 0.0024145811330527067, -0.04356859624385834, 0.00334824132733047, -0.03563497215509415, -0.014116013422608376, -0.01596011593937874, -0.016928602010011673, -0.0006878073909319937, 0.01885230652987957, 0.007004939019680023, 0.023654935881495476, 0.007648385129868984, 0.015721311792731285, -0.004451055079698563, -0.03486549109220505, -0.0062653073109686375, 0.021638361737132072, -0.012245375663042068, -0.020882146432995796, -0.025273500010371208, -0.01305465865880251, 0.0022205524146556854, 0.018998242914676666, -0.0036152382381260395, -0.0030364685226231813, -0.0277278833091259, -0.002457698807120323, 0.0142486821860075, -0.005671612452715635, -0.0151375662535429, 0.009970097802579403, -0.0008246225770562887, 0.00318737979978323, 0.008437767624855042, -0.020139198750257492, 0.03547576814889908, -0.003764491295441985, -0.008391332812607288, -0.00415918231010437, 0.030540471896529198, -0.003588704392313957, -0.01397007703781128, -0.002152559347450733, -0.0027445959858596325, -0.014155813492834568, -0.041392821818590164, -0.024756090715527534, 0.010626810602843761, -0.010096133686602116, 0.016344856470823288, -0.009797627106308937, 0.02106788381934166, 0.011256990022957325, 0.011966770514845848, 0.017658283933997154, -0.0018324946286156774, -0.03138955682516098, 0.03775767982006073, 0.009280216880142689, 0.01331336423754692, -0.006145905237644911, 0.008364799432456493, 0.01280922070145607, -0.025804178789258003, 0.02966485545039177, 0.003169137751683593, 0.0016285156598314643, -0.008258664049208164, 0.008411233313381672, -0.03194676712155342, 0.017048005014657974, 0.04420540854334831, -0.0045605069026350975, -0.0014253658009693027, -0.007648385129868984, 0.022858919575810432, -0.031309954822063446, -0.03563497215509415, 0.008232129737734795, 0.01686226762831211, -0.028736170381307602, -0.015150833874940872, 0.00306466082111001, -0.00859033688902855, -0.02101481705904007, 0.018666569143533707, -0.020537206903100014, 0.009658324532210827, 0.02884230576455593, 0.042666446417570114, -0.002815905725583434, 0.03231824189424515, -0.020550474524497986, -0.004185716155916452, 0.03178756311535835, 0.005555526819080114, 0.020431071519851685, -0.0024145811330527067, -0.0052901883609592915, 0.02118728682398796, -0.016623463481664658, -0.011018184944987297, -0.02484895847737789, 0.034520551562309265, 0.0036981566809117794, 0.012795954011380672, -0.007907089777290821, -0.03298158571124077, -0.01841449737548828, 0.0173000767827034, -0.005462658125907183, 0.0009129305835813284, 0.01773788407444954, 0.012676551006734371, -4.3506199290277436e-05, -0.009731292724609375, -0.009320017881691456, -0.0018275195034220815, 0.010951850563287735, -0.013386331498622894, -0.008981711231172085, -0.0030580272432416677, 0.0046799094416201115, -0.02256704680621624, -0.00046309875324368477, -0.009797627106308937, -0.011011551134288311, -0.014195614494383335, -0.01680919900536537, -0.00906794611364603, 0.014116013422608376, -0.01120392233133316, 0.0002914578653872013, -0.006530646234750748, 0.0023598549887537956, -0.01305465865880251, 0.013930276036262512, -0.008537269197404385, 0.025034695863723755, 0.010726312175393105, -0.012550515122711658, -0.000402982986997813, -0.012729618698358536, -0.010341571643948555, -0.012378045357763767, -5.7887344155460596e-05, -0.01175449974834919, 0.006958504673093557, 0.009041412733495235, -0.02106788381934166, 0.0424807071685791, 0.006776084192097187, 0.017538880929350853, -0.009253683499991894, 0.010135933756828308, -0.035183899104595184, -0.010460973717272282, 0.016066251322627068, 0.021107684820890427, 0.01292198896408081, -0.002837464679032564, -0.0058473991230130196, 0.0010439414763823152, 0.000539798173122108, -0.021970035508275032, 0.01752561330795288, 0.025260234251618385, 0.030911946669220924, 0.004155865870416164, 0.015177367255091667, 0.0032255223486572504, -0.004988365340977907, -0.02167816273868084, 0.02429174818098545, -0.01958198845386505, 0.0432501919567585, -0.011217189021408558, 0.014686491340398788, 0.01630505733191967, 0.024198880419135094, -0.009956831112504005, -0.022527245804667473, -0.01524370163679123, 0.001219728379510343, -0.001940288464538753, 0.015336570329964161, 0.007203942630439997, 0.0038407761603593826, -0.014341550879180431, 0.012013204395771027, 0.007509082090109587, 0.006663315463811159, 0.00361192156560719, 0.020882146432995796, 0.013339897617697716, -0.007469281554222107, -0.006659998558461666, -0.0026003182865679264, -0.0030364685226231813, -0.017936889082193375, -0.013386331498622894, -0.001526526059024036, 0.0045638238079845905, 0.013081192970275879, 0.0036517223343253136, -0.003250397741794586, 0.016888801008462906, -0.0016965086106210947, -0.0007943573873490095, 0.000942781160119921, -0.00995019730180502, -0.0038706266786903143, -0.016450991854071617, -0.018931908532977104, -0.022089438512921333, -0.015031430870294571, -0.0025688093155622482, -0.032238639891147614, 0.009870595298707485, -0.009147548116743565, -0.01951565407216549, 0.03295505419373512, -0.00507460068911314, -0.017538880929350853, -0.0016044692602008581, 0.024424416944384575, -0.014354817569255829, -0.0007645068108104169, 0.006295158062130213, 0.00405968027189374, 0.014898762106895447, 0.008391332812607288, -0.005704779643565416, -0.003655039006844163, 0.015296770259737968, 0.01056710910052061, 0.020378004759550095, -0.016596928238868713, 0.011847368441522121, -0.02528676763176918, -0.025830712169408798, -0.010620176792144775, 0.0061492216773331165, 0.006102787796407938, 0.008557169698178768, -0.005976751912385225, -0.010938583873212337, 0.007257010322064161, 0.01958198845386505, -0.015814179554581642, 0.005286871455609798, 0.030460869893431664, -0.025074496865272522, 0.0038739433512091637, 0.0051741027273237705, -0.011688165366649628, 0.011263622902333736, 0.0027213790453970432, -0.030142463743686676, 0.007926990278065205, 0.0022951788268983364, -0.01657039485871792, 0.013021491467952728, 0.0033183908089995384, -0.02472955733537674, 0.019834060221910477, 0.010315037332475185, -0.009989998303353786, -0.01719394139945507, -0.0071840425953269005, -0.0004776094574481249, 0.007502448745071888, 0.0052072699181735516, -0.0013142551761120558, -0.0014693124685436487, -0.016172386705875397, -0.023429397493600845, -0.012039738707244396, -0.021426090970635414, -0.0036086048930883408, 0.006109421141445637, 3.7442798657139065e-06, 0.006630148272961378, 0.002260353183373809, 0.00722384313121438, -0.004172449465841055, -0.018056292086839676, -0.013167427852749825, 0.013983343727886677, -0.017061270773410797, 0.01784401945769787, 0.01045434083789587, -0.0006832468789070845, 0.004162499215453863, 8.499126852257177e-05, 0.01929011568427086, -0.0067230165004730225, -0.0045306566171348095, 0.0006579568143934011, 8.810070539766457e-06, 0.04216230288147926, -0.021585294976830482, 0.012484180741012096, -0.002469307277351618, -0.00207129935733974, -0.01383740734308958, -0.03364493325352669, 0.018122626468539238, -0.009897129610180855, -0.01008949987590313, -0.0073697795160114765, -0.001718067331239581, -0.00817906204611063, -0.01458035595715046, -0.0038838936015963554, 0.006470944732427597, 0.028072822839021683, 0.01791035570204258, 0.013001590967178345, 0.001699825399555266, -0.0181889608502388, 0.011356491595506668, 0.012762785889208317, -0.02451728656888008, 0.01488549541682005, -0.015097766183316708, 0.003296832088381052, -0.01724700815975666, -0.020139198750257492, 0.00019693098147399724, 0.008510734885931015, 0.003394675673916936, 0.01597338356077671, -0.0004361503233667463, -0.0030314933974295855, -0.02916071191430092, 0.004517389461398125, 0.0017993273213505745, -0.000648421177174896, -0.002139292424544692, -0.009976730681955814, 0.008378066122531891, 0.0047163935378193855, -0.007893823087215424, -0.021107684820890427, -0.001020724419504404, 0.02155875973403454, 0.02029840275645256, 0.015004897490143776, -0.006852369289845228, 0.005973435007035732, -0.0007479231571778655, 0.008550535887479782, 0.010175734758377075, -0.019661590456962585, -0.01097838394343853, -0.002699820091947913, -0.0086500383913517, -0.013983343727886677, 0.012961789965629578, -0.04701799899339676, -0.030036328360438347, 0.00550245912745595, 0.0020447655115276575, -0.008232129737734795, 0.01963505521416664, -0.0015953482361510396, -0.007993324659764767, 0.019369717687368393, 0.009465954266488552, 0.012550515122711658, 0.008975077420473099, 0.03314078971743584, 0.012145874090492725, -0.026361389085650444, 0.013001590967178345, 0.014898762106895447, 0.018096091225743294, 0.03242437541484833, 0.013877208344638348, 0.021266888827085495, -0.0075555164366960526, -0.011926969513297081, -0.00014728364476468414, -0.011243722401559353, 0.012331611476838589, 0.02300485596060753, -0.01294852327555418, 0.01444768626242876, -0.006494162138551474, -0.008490835316479206, -0.021611828356981277, 0.0032951736357063055, -0.01236477866768837, 0.0003752053598873317, -0.020431071519851685, -0.00229352037422359, 0.007336611859500408, 0.005180736072361469, -2.5147568521788344e-05, 0.0016475868178531528, -0.01968812383711338, 0.009459320455789566, 4.2003306589322165e-05, 0.01544270571321249, -0.0011608563363552094, -0.027051270008087158, 0.006208923179656267, 0.0021177337039262056, -0.015933582559227943, 0.018321629613637924, 0.02157202735543251, -0.030460869893431664, 0.003844092832878232, 0.005698146298527718, 0.021359756588935852, -0.014872227795422077, -0.008517368696630001, 0.0056251781061291695, 0.010494140908122063, -0.0009502438479103148, 0.0014618497807532549, 0.005711412988603115, 0.019648322835564613, -0.0012570415856316686, -0.0023880472872406244, 0.012278543785214424, -0.0312834195792675, 0.011011551134288311, 0.016769399866461754, 0.002714745467528701, 0.00551904272288084, -0.007170775439590216, -0.02368146926164627, 0.007475914899259806, -0.023190593346953392, -0.003973445389419794, -0.0017296759178861976, -0.010666611604392529, 0.012610216625034809, -0.005572110414505005, -0.029532184824347496, 0.021598560735583305, 0.010573742911219597, -0.021107684820890427, -0.005983385257422924, -0.001759526552632451, 0.013810873962938786, 0.016437726095318794, -0.007999958470463753, 0.00196848064661026, 0.01414254680275917, -0.013240396045148373, -0.013379698619246483, 0.016331590712070465, 0.01325366273522377, 0.0028407813515514135, 0.009751193225383759, -0.004099481273442507, 0.020417803898453712, 0.0237876046448946, -0.003708106931298971, -0.01114422082901001, -0.013678204268217087, -0.014567088335752487, 0.0019485802622511983, 0.0034792523365467787, 0.008159161545336246, -0.02572457678616047, 0.017538880929350853, -0.005243754014372826, 0.0007122682873159647, -0.008232129737734795, 0.00892864353954792, 0.0030497354455292225, 0.03409601002931595, 0.019767725840210915, 0.021916966885328293, 0.013001590967178345, -0.021028082817792892, 0.0064543611370027065, 0.011303423903882504, -0.003469302086159587, -0.01979425922036171, 0.0011948528699576855, 0.009764459915459156, -0.013545535504817963, -0.007548883091658354, -0.005837448872625828, -0.012928622774779797, -0.01740621216595173, -0.01117075514048338, -0.017167406156659126, -0.008464301005005836, 0.011197288520634174, 0.017645016312599182, 0.013207228854298592, -0.004139281809329987, 0.02045760490000248, 0.017645016312599182, 0.0066135642118752, 0.002011598087847233, 0.028072822839021683, -0.003213913645595312, -0.020935215055942535, 0.002323371125385165, -0.011124320328235626, 0.01757868193089962, -0.019555455073714256, 0.02057700790464878, -0.017552148550748825, 0.013956810347735882, -0.004978415556252003, -0.001392198377288878, -0.00655718008056283, 0.028364695608615875, -0.01757868193089962, 0.016159120947122574, -0.004931981209665537, 0.0019585303962230682, -0.006384709849953651, -0.020417803898453712, -0.012404578737914562, -0.00992366299033165, -0.014978363178670406, 0.0017993273213505745, -0.007011572364717722, -0.000829183089081198, -0.013160794042050838, 0.0026633362285792828, 0.04346246272325516, -0.010931950062513351, -0.004938614554703236, 0.0005435295170173049, 0.014222148805856705, 0.019091112539172173, 0.00207129935733974, 0.005499142222106457, 0.013041391968727112, 0.0019850642420351505, -0.016610195860266685, -0.00458704074844718, -0.00564176170155406, 0.01300822477787733, 0.011973404325544834, 0.007635117974132299, -0.021717963740229607, 0.033804137259721756, -0.0025721259880810976, -0.007621850818395615, -0.012915356084704399, -0.005446074530482292, 0.002152559347450733, -0.006378076504915953, 0.0095389224588871, -0.027197206392884254, -0.01619892194867134, 0.012961789965629578, 0.010295137763023376, -0.02151896059513092, -0.0010124326217919588, 0.011999937705695629, -0.021863900125026703, -0.01569477841258049, -0.0005364814423955977, -0.011960136704146862, 0.022500712424516678, -0.017830753698945045, -0.014514020644128323, 0.011057985946536064, 0.017339877784252167, 0.0114493602886796, -0.0024195562582463026, -0.003844092832878232, 0.02150569297373295, -0.025353102013468742, 0.020537206903100014, -0.011336591094732285, -0.011237089522182941, 0.01597338356077671, 0.00041935936314985156, -0.0028838987927883863, 0.02019226737320423, 0.006331642158329487, -0.030062861740589142, -0.007157508283853531, 0.03441441431641579, -0.02267318218946457, -0.017591949552297592, 0.025658242404460907, -0.017008204013109207, -0.022328242659568787, -0.008378066122531891, -0.00464674225077033, 0.01383740734308958, 0.0036086048930883408, 0.008537269197404385, 0.010500774718821049, -0.0014038069639354944, -0.012902089394629002, -0.006659998558461666, 0.021439358592033386, -0.004155865870416164, 0.004006612580269575, -0.008656671270728111, 0.0017512347549200058, 0.00923378299921751, 0.018043024465441704, 0.030009794980287552, -0.029266847297549248, 0.006215556524693966, -0.008331632241606712, -0.00048797426279634237, 0.0127826863899827, -0.009160814806818962, -0.006205606274306774, -0.00013702250726055354, 0.004802628420293331, -0.008902110159397125, -0.0013117676135152578, -0.0032570313196629286, 0.009611890651285648, 0.01657039485871792, -0.007117707747966051, -0.0042586843483150005, 0.01647752709686756, -0.0072172097861766815, 0.006182389333844185, 0.01940951868891716, -0.0009676566696725786, 0.005160835571587086, 0.013718005269765854, -0.006009919103235006, 0.025034695863723755, 0.02155875973403454, -0.006633464712649584, -0.007608584128320217, 0.021160753443837166, 0.0019419468007981777, 0.007276910822838545, 0.0064211939461529255, -0.006666631903499365, 0.02118728682398796, -0.02799322083592415, 0.019542187452316284, 0.012769419699907303, -0.012829121202230453, 0.027197206392884254, 0.007004939019680023, 0.0003845336614176631, 0.015522307716310024, 0.008378066122531891, 0.00929348450154066, 0.010726312175393105, 0.01712760701775551, 0.01205963920801878, -0.008278563618659973, 0.012683184817433357, 0.009227149188518524, 0.0006223019445315003, -0.00023362234060186893, 0.003641772083938122, 0.015721311792731285, 0.003641772083938122, 0.012484180741012096, 0.02113421820104122, 0.022633381187915802, 0.031018082052469254, -0.0034195510670542717, 0.011761132627725601, -0.012988324277102947, -0.008338265120983124, -0.0033416079822927713, 0.006693165749311447, 0.007880556397140026, -0.0017213841201737523, -0.006925337016582489, -0.014620156027376652, 0.008278563618659973, 0.004278584849089384, -0.011621830053627491, 0.007104440592229366, -0.004278584849089384, 0.0011608563363552094, 0.0015746187418699265, 0.003996662329882383, 0.015217168256640434, 0.016557127237319946, 0.027515612542629242, -0.013439400121569633, 0.018308361992239952, 0.0132271284237504, 0.007993324659764767, -0.02472955733537674, 0.0029751090332865715, -0.007761153858155012, -0.0012985006906092167, 0.019422784447669983, -0.0239070076495409, 0.0173000767827034, -0.024477485567331314, -0.005727997049689293, 0.01586724817752838, 0.0011766108218580484, -0.011097786948084831, -0.010819180868566036, -0.013545535504817963, -0.0076749189756810665, 0.006590347271412611, 0.028576966375112534, -0.02722373977303505, -0.013485834002494812, -0.016066251322627068, -0.01963505521416664, -0.010805914178490639, -0.0007669943734072149, 0.006222189869731665, 0.013678204268217087, 0.0010563792893663049, 0.016888801008462906, -0.0035024695098400116, -0.012537248432636261, 0.001072133774869144, 0.00633495906367898, -0.00043988163815811276, 0.00892864353954792, -0.03682899475097656, 0.004905447363853455, 0.028683101758360863, -0.01247754693031311, 0.00878934096544981, -0.01724700815975666, -0.009472588077187538, 0.0006749550229869783, 0.00787392258644104, 0.019436052069067955, 0.0090944804251194, 0.004169132560491562, 0.010951850563287735, -0.01455382164567709, 0.03043433651328087, -0.0010223827557638288, -0.00809946097433567, -0.00845766719430685, 0.020033063367009163, -0.009061313234269619, -0.0011102762073278427, 0.0006807593163102865, -0.017233742401003838, -0.00906794611364603, -0.008749539963901043, -0.007489181589335203, -0.0002846170973498374, 0.008278563618659973, 0.01668979786336422, -0.0151375662535429, -4.5967837650096044e-05, -0.018056292086839676, -0.007913723587989807, -0.01150906179100275, -0.0007922844379208982, -0.0012288494035601616, -0.007336611859500408, -0.011409559287130833, 0.006746233906596899, -0.015124299563467503, 0.02799322083592415, 0.019820792600512505, 0.017207207158207893, 0.01630505733191967, -0.0023449298460036516, -0.008689838461577892, 0.0015315011842176318, 0.0029386249370872974, -0.0003975933068431914, -0.01394354272633791, 0.022766051813960075, 0.008961810730397701, 0.017101071774959564, -0.009850694797933102, -0.00016469649563077837, 0.022155772894620895, -0.010268603451550007, -0.034069474786520004, 0.019038043916225433, 0.001829177956096828, -0.014155813492834568, -0.0007736278348602355, -0.014116013422608376, -0.03165489435195923, -0.003051393898203969, 0.002575442660599947, -0.005568793509155512, 0.01974119059741497, 0.0012329953024163842, -0.00906794611364603, -0.003213913645595312, -0.01397007703781128, 0.0015431097708642483, -0.004878913518041372, -0.016172386705875397, 0.020935215055942535, -0.01958198845386505, 0.026096049696207047, -0.012125973589718342, -0.018839040771126747, 0.014089479111135006, -0.023522265255451202, 0.02279258519411087, -0.002935308264568448, -0.006676582153886557, -0.024052944034337997, -0.009008245542645454, -0.011555495671927929, 1.3033722098043654e-05, -0.013996610417962074, 0.007588683627545834, 0.0032271805685013533, 0.003391358768567443, -0.01619892194867134, -0.021771032363176346, 0.0073631457053124905, -0.024862226098775864, 0.006991671863943338, 0.015203901566565037, -0.005980068352073431, -0.008742906153202057, -0.01763174869120121, 0.018600234761834145, -0.013180694542825222, -0.0028109306003898382, 0.007356512360274792, 0.0025853929109871387, -0.00302320159971714, -1.4147936781228054e-05, 0.005545576568692923, -0.009187349118292332, -0.023747803643345833, 0.006036452949047089, 0.01592031493782997, 0.0018407864263281226, -0.002505791373550892, -0.002439456759020686, -0.003930327948182821, -0.0010008240351453424, 0.000937806093133986, -0.032822385430336, -0.01266991812735796, -0.02727680653333664, -0.009737926535308361, -0.011595296673476696, -0.002936966484412551, -4.814444400835782e-05, -0.004208933562040329, -0.003291856963187456, -0.014381351880729198, 0.0180695578455925, 0.01686226762831211, 0.007535615935921669, 0.003927011042833328, -0.005532309412956238, 0.0017761101480573416, 0.009306751191616058, 0.00302320159971714, -0.02080254629254341, -0.01813589222729206, 0.022819118574261665, -0.009061313234269619, -0.0036185551434755325, 0.0022620114032179117, -0.023601867258548737, -0.002177434740588069, 0.002149242674931884, 0.009419520385563374, 0.016172386705875397, -0.014832427725195885, -0.012822487391531467, 0.0023830721620470285, -0.013366431929171085, -0.001312596839852631, 0.015893781557679176, 0.016013184562325478, 0.00011567104229470715, 0.00037064484786242247, -0.017326610162854195, -0.014487487263977528, 0.01536310464143753, -0.010381372645497322, -0.0052901883609592915, -0.004885546863079071, -0.021598560735583305, -0.015256969258189201, -0.004023196175694466, 0.0064576780423521996, 0.03327345848083496, -0.0034991526044905186, -0.002825855975970626, 0.010600276291370392, -0.021373024210333824, 0.013903742656111717, 0.005844082683324814, -0.00828519742935896, 0.022447645664215088, 0.002676603151485324, -0.002699820091947913, -0.009353185072541237, 0.0086500383913517, -0.007601950783282518, 0.0022056270390748978, -0.01536310464143753, 0.011867268942296505, -0.009890495799481869, -0.010580376721918583, 0.014407885260879993, -0.013917009346187115, 0.014792626723647118, 0.0053200386464595795, -0.001940288464538753, -0.004540606867522001, 0.005184052512049675, 0.018427764996886253, 0.001723042456433177, -0.016663264483213425, -0.03348572924733162, -0.004640108440071344, -0.017538880929350853, -0.009724659845232964, 0.004182399716228247, 0.009519021958112717, 0.0034162343945354223, 0.0041890330612659454, -0.001007457496598363, -0.02129342220723629, -0.008935277350246906, -0.010805914178490639, -0.006845735479146242, 0.03184062987565994, 0.02601644955575466, -0.0017479179659858346, 0.00590710062533617, 0.02068314328789711, 0.00950575526803732, -0.024159079417586327, -0.007257010322064161, 0.010023165494203568, -0.020205533131957054, 0.005084550939500332, 0.0028241975232958794, -0.002102808328345418, -0.007336611859500408, 0.01505796518176794, 0.019780991598963737, -0.004358186386525631, 0.005771114490926266, -0.005293504800647497, 0.014766092412173748, -0.008477567695081234, 0.019104378297924995, -0.0022902037017047405, 0.0002659604651853442, 0.010825814679265022, -0.0075157154351472855, -0.009883862920105457, 0.0027910303324460983, 0.008444400504231453, -0.0006786863668821752, 0.0014585331082344055, -0.0010165785206481814, 0.0007110245060175657, 0.007907089777290821, -0.015495773404836655, 0.007946890778839588, 0.025432704016566277, -0.03178756311535835, -0.003283565165475011, -0.006716383155435324, -0.012570415623486042, -0.018613502383232117, 0.000468903046566993, -0.00019382154277991503, -0.006261990871280432, 0.004298485349863768, -0.011661631055176258, 0.029877126216888428, -0.012278543785214424, -0.01596011593937874, 0.0013781023444607854, -0.0009800944244489074, 0.011721332557499409, -0.004596990998834372, 0.016928602010011673, -0.018825773149728775, 0.011150854639708996, -0.002134317299351096, 0.0001077937995432876, -0.001986722694709897, -0.002412922913208604, -0.005830815527588129, -0.02312425896525383, -0.015774378553032875, 0.0020961749833077192, 0.007237110286951065, -0.011926969513297081, 0.010573742911219597, -0.006281891372054815, 0.00842450000345707, -0.011608563363552094, -0.00594690116122365, 0.004593674559146166, -0.013319997116923332, 0.024159079417586327, 0.016596928238868713, -0.004762827884405851, 0.008053026162087917, 0.008125994354486465, -0.00872963946312666, 0.002278595231473446, -0.013067925348877907, -0.004003296140581369, -0.01834816299378872, -0.0009361476986669004, -0.013041391968727112, -0.01025533676147461, -0.000537310668732971, 0.011091153137385845, 0.021810831502079964, 0.008059659972786903, 0.004792678169906139, -0.03897823765873909, -0.0005252874689176679, 0.007960157468914986, 0.008278563618659973, 0.0026384606026113033, -0.002097833203151822, -0.022368043661117554, -0.006325008813291788, -0.00034100154880434275, -0.01455382164567709, 0.016941869631409645, 0.03160182759165764, 0.014301749877631664, -0.0067926677875220776, 0.008324998430907726, 0.0013416182482615113, -0.004514073021709919, -0.009996631182730198, 0.02267318218946457, -0.0007048056577332318, -0.0028722903225570917, 0.0020033062901347876, -0.00564176170155406, 0.0024892077781260014, -0.002562175737693906, -0.007860655896365643, -0.011024818755686283, 0.0008005762938410044, -0.042507242411375046, -0.009499121457338333, 0.010520675219595432, 0.017485812306404114, 0.006845735479146242, -0.015827447175979614, 0.01668979786336422, 0.006228823214769363, 0.007263644132763147, 0.003960178699344397, -0.008331632241606712, -0.010169101879000664, -0.012470914050936699, -0.03038126789033413, 0.009346552193164825, 0.017326610162854195, -0.000799747125711292, 0.032238639891147614, 0.0008159161661751568, -0.003993345890194178, -0.017658283933997154, -0.008165795356035233, -0.007170775439590216, -0.0005016557988710701, 0.004590357653796673, -0.022553781047463417, 0.020829079672694206, 0.012424479238688946, -0.011973404325544834, -0.008504102006554604, 0.006892169825732708, -0.004825845826417208, 0.007170775439590216, 0.010069599375128746, 0.019648322835564613, 0.012066272087395191, 0.009631791152060032, -0.024145811796188354, -0.002524033421650529, 0.005698146298527718, 0.005956851411610842, -0.021373024210333824, -0.0019237047526985407, -0.005230486858636141, 0.008072926662862301, 0.003645088989287615, -0.006507428828626871, 0.004135965369641781, -0.00034784231684170663, 0.005412907339632511, -0.003973445389419794, 0.0075223492458462715, -0.020484140142798424, -0.018759438768029213, 0.004643425345420837, -0.00312602031044662, 0.020205533131957054, -0.019807524979114532, 0.007993324659764767, -0.02638792246580124, -0.009134281426668167, -0.0007367291836999357, 0.016543861478567123, 0.0017296759178861976, 0.005339939147233963, 0.010242070071399212, 0.006139271892607212, 0.02701146900653839, 0.026693062856793404, 0.021319955587387085, -0.027701348066329956, 0.025101030245423317, -0.013505734503269196, -0.002784396754577756, -0.0012877213302999735, -0.011396292597055435, 0.01741947792470455, 0.0014966755406931043, 0.006560496520251036, 0.0038275092374533415, -0.002077932935208082, 0.0030082762241363525, 0.007389679551124573, -0.0012404578737914562, -0.024968361482024193, -0.019648322835564613, -0.001544768107123673, 0.00017443939577788115, -0.002043107058852911, -0.007741253357380629, 0.035183899104595184, -0.0075555164366960526, 0.0004477588809095323, 0.01274951919913292, 0.008225495927035809, 0.011800933629274368, 0.01829509623348713, -0.011661631055176258, 0.01651732809841633, -0.0105604762211442, 0.011475893668830395, 0.013784339651465416, -0.04585050791501999, 0.00027528879581950605, 0.00625204062089324, -0.019940195605158806, -0.04054373502731323, 0.011051352135837078, -0.024862226098775864, 0.02384067326784134, 0.0312834195792675, 0.01181420125067234, 0.016676530241966248, 0.0030812444165349007, -0.026865532621741295, 0.013127626851201057, 0.0051674689166247845, -0.00014904566342011094, -0.004805945325642824, 0.001852395012974739, -0.003482569009065628, -0.012663284316658974, -0.033246926963329315, -0.02610931731760502, 0.008994977921247482, 0.0211209524422884, 0.002648410852998495, -0.004278584849089384, -0.009731292724609375, -0.0030265182722359896, -0.0017844020621851087, 0.02291198819875717, -0.006407926790416241, 0.00029042139067314565, -0.0027263539377599955, -0.013704738579690456, 0.015774378553032875, -0.0047130766324698925, -0.0066069308668375015, -0.0035223697777837515, 0.01355880219489336, 0.01097838394343853, -0.004872279707342386, -0.0016426116926595569, -0.020643342286348343, -0.01696840301156044, 0.012331611476838589, 0.003973445389419794, 0.0180695578455925, -0.006965138018131256, 0.0006985867512412369, 0.008822508156299591, -0.005651711951941252, 0.030699675902724266, 0.011469260789453983, -0.00895517785102129, -0.01836143061518669, -0.006583713926374912, 0.007383046206086874, 0.010626810602843761, -0.0017081171972677112, 0.013187328353524208, 0.009605256840586662, 0.0036649892572313547, -0.004474272020161152, 0.01596011593937874, 0.017538880929350853, 0.008835774846374989, -0.0108722485601902, 0.002870631869882345, 0.006009919103235006, -0.0007321686716750264, -0.008311731740832329, -0.002255378058180213, 0.022248640656471252, -0.0025920262560248375, -0.017658283933997154, 0.005316722206771374, 0.00817906204611063, -0.016729598864912987, -0.007396313361823559, 0.0058109150268137455, 0.015111032873392105, -0.01958198845386505, 0.03234477341175079, -0.0051707858219742775, 0.013120993040502071, 0.013512367382645607, 0.005366472993046045, 0.0013648354215547442, 0.011031451635062695, 0.009863962419331074, 0.0005509921466000378, -0.0009295142372138798, -0.008975077420473099, 0.02052393928170204, -0.001407952862791717, -0.002446090104058385, 0.013286829926073551, -0.012616850435733795, 0.0028590233996510506, -0.011867268942296505, -0.019210513681173325, -0.01564170978963375, -0.0013001591432839632, -0.0012172408169135451, 0.011489161290228367, 0.014328284189105034, 0.0006140100886113942, -0.0160264503210783, 0.005399640183895826, -0.005048066843301058, 0.012026472017168999, 0.022858919575810432, -0.02921377867460251, -0.009737926535308361, 0.00787392258644104, -0.006971771363168955, 0.012663284316658974, -0.0007985033444128931, 0.013127626851201057, 0.006043086294084787, -0.020431071519851685, -0.005253704264760017, 0.019528919830918312, 0.01475282572209835, 0.006938604172319174, -0.000514093495439738, 0.009154180996119976, -0.0012363119749352336, 0.014726291410624981, 0.00635154265910387, 0.01708780601620674, 0.0006641756626777351, 0.010308404453098774, 0.01768481731414795, 0.009167448617517948, 0.03616565093398094, 0.0014668249059468508, -0.015482506714761257, 0.00667989905923605, 0.017777685075998306, 0.012696451507508755, -0.004487538710236549, 0.006325008813291788, -0.007993324659764767, -0.013379698619246483, 0.000912101415451616, 0.001692362711764872, 0.0077080861665308475, -0.008802607655525208, -0.011794300749897957, 0.0008324998198077083, 0.027130870148539543, 0.006222189869731665, 0.00698503851890564, -0.006126004736870527, 0.015323303639888763, 0.009790994226932526, 0.012590316124260426, -0.0198473259806633, 0.0104278065264225, -0.004842429421842098, -0.0034858856815844774, -0.004537289962172508, -0.020868880674242973, 0.003009934676811099, 0.006179072428494692, 0.00854390300810337, 0.0027545462362468243, 0.009956831112504005, -0.010991651564836502, 0.03192023187875748, -0.01114422082901001, -0.013771072961390018, -0.006198972929269075, -0.02579091116786003, -0.0007520690560340881, 0.01025533676147461, 0.0003105290816165507, -0.02910764329135418, -0.010553842410445213, 0.01192033663392067, -0.0012586999218910933, 0.04115401580929756, -0.0005928659229539335, -0.012019838206470013, 0.0005273604765534401, -0.019449319690465927, 0.01036810502409935, 0.003562170546501875, 0.018785972148180008, 0.01680919900536537, -0.0018822456477209926, -0.021717963740229607, 0.004457688424736261, 0.02533983625471592, -0.006812568288296461, -0.017101071774959564, 0.01158866286277771, 0.029903659597039223, 0.013890475034713745, 0.002691528294235468, 0.01653059385716915, -0.02268644981086254, 0.0061160544864833355, -0.01923704706132412, -0.006361492909491062, -0.004510756116360426, 0.026255253702402115, -0.0031973300501704216, -0.014567088335752487, 0.020324936136603355, -0.00781422108411789, 0.0038639933336526155, 0.0030862195417284966, -0.010693144984543324, -0.005087867379188538, -0.001296842354349792, -0.0003868139174301177, 0.015217168256640434, -0.0032354723662137985, 0.007396313361823559, 0.010208901949226856, 0.0035157364327460527, 0.0034626685082912445, -0.016450991854071617, -0.01657039485871792, -0.0030862195417284966, 0.0013863941421732306, -0.0033565331250429153, 0.0028125890530645847, -0.00031301661510951817, 0.0022155772894620895, -0.0114493602886796, 0.0024560403544455767, 0.005164152476936579, 0.007694819010794163, -0.017618482932448387, -0.00961852353066206, 0.006407926790416241, -0.008451034314930439, -0.00463015865534544, -0.028205491602420807, 0.013134260661900043, -0.0037777582183480263, 0.007694819010794163, -0.003185721579939127, 0.026586927473545074, -0.007489181589335203, 0.005615227855741978, 0.011389658786356449, 0.020988281816244125, -0.002048082184046507, -0.01014920137822628, -0.0017014837358146906, 0.028762703761458397, 0.028630033135414124, 0.007913723587989807, -0.006603614427149296, 0.013552168384194374, -0.017339877784252167, 0.0013648354215547442, 0.0036152382381260395, -0.02223537489771843, 0.021532226353883743, -0.010082866065204144, 0.004248734097927809, 0.007681552320718765, -0.009459320455789566, 0.013339897617697716, 0.00606962013989687, 0.012013204395771027, 0.005983385257422924, 0.0008308414835482836, 0.028205491602420807, -0.011980037204921246, 0.006258673965930939, 0.014819160103797913, -0.012305077165365219, 0.0371474027633667, -0.00834489893168211, 0.01714087277650833, -0.012875555083155632, 0.008882209658622742, -0.02185063250362873, 0.006470944732427597, -0.012630117125809193, -0.005104450974613428, -0.010460973717272282, -0.0035920212976634502, -0.008072926662862301, 0.0189584419131279, 0.027144137769937515, 0.00637475959956646, -0.006467628292739391, 0.0029983259737491608, -0.002837464679032564, 0.003907110542058945, 0.004321702290326357, -0.0019203880801796913, 0.006623514462262392, -0.01901151053607464, -0.015774378553032875, 0.009737926535308361, 0.023376330733299255, 0.0032304972410202026, -0.000781505077611655, -0.012205575592815876, 0.011907069012522697, 0.013094459660351276, -0.018931908532977104, -0.04043760150671005, 0.00034991526626981795, -0.005134301725775003, 0.008902110159397125, -0.0076749189756810665, 0.009804260917007923, 0.019276848062872887, -0.013233762234449387, -0.010965117253363132, -0.014938563108444214, 0.01036810502409935, -0.008431133814156055, -0.004212250001728535, -0.015708044171333313, -0.0016616829670965672, 0.00926031731069088, -0.016172386705875397, -0.007562149781733751, -0.002064666012302041, -0.014076212421059608, -0.020616808906197548, -0.015310036949813366, -0.001898829243145883, 0.00023362234060186893, 0.012417846359312534, -0.02089541405439377, -0.00823876354843378, -0.025353102013468742, -0.009764459915459156, 0.010587009601294994, 0.01946258544921875, 0.004650058690458536, -0.00961852353066206, 0.017923621460795403, -0.006965138018131256, -0.003446084912866354, 0.013903742656111717, -0.016875535249710083, 0.02084234729409218, -0.01383740734308958, 0.00010525443212827668, -0.0064245108515024185, -0.016424458473920822, -0.022368043661117554, -0.025313301011919975, 0.020590275526046753, -0.009054679423570633, 0.0008067951421253383, -0.012013204395771027, -0.016729598864912987, -0.010381372645497322, -0.011807567439973354, -0.009021512232720852, 0.008550535887479782, -0.005177419167011976, 0.0013117676135152578, 0.02427848055958748, 0.0036384554114192724, 0.00017754883447196335, -0.03144262358546257, -0.026865532621741295, 0.00022305025777313858, 0.013691470958292484, -0.0021426090970635414, -0.015522307716310024, -0.010693144984543324, -0.0014328283723443747, 0.009711392223834991, 0.0012611874844878912, 0.007117707747966051, -0.02195676788687706, 0.007754520513117313, -0.00801322516053915, -0.007641751319169998, -0.008570436388254166, -0.001067158649675548, -0.007303444668650627, 0.004885546863079071, -0.011701432056725025, 0.0038474095053970814, -0.0070646400563418865, 0.03215903788805008, 0.007263644132763147, 0.014076212421059608, 0.006520695984363556, 0.0013001591432839632, -0.01940951868891716, 0.0024477485567331314, -0.020324936136603355, -0.0034759356640279293, 0.033512264490127563, 0.01967485621571541, -0.03242437541484833, 0.007701452821493149, 0.007310078013688326, 0.02329672873020172, -0.019210513681173325, 0.0022520613856613636, 0.0019618473015725613, -0.008809241466224194, -0.010135933756828308, 0.013890475034713745, -0.012742886319756508, 0.004742927383631468, 0.028974974527955055, -0.014673223719000816, 0.01097838394343853, -0.028656568378210068, -0.029983261600136757, 0.015734579414129257, 0.004145915620028973, -0.003980078734457493, -0.006799301598221064, -0.005117718130350113, -0.0021542178001254797, 0.020762745290994644, -0.0021542178001254797, -0.008451034314930439, -0.006650048308074474, -0.007170775439590216, -0.030301667749881744, 0.008198962546885014, -0.00781422108411789, 0.028656568378210068, -0.015654977411031723, 0.003366483375430107, -0.03404293954372406, 0.0052802381105721, 0.0037014733534306288, 0.00981752760708332, 0.002139292424544692, 0.003668305929750204, 0.007827488705515862, -0.012769419699907303, -0.015721311792731285, 0.013585335575044155, 0.0007068786071613431, -0.006825835444033146, -0.0038142423145473003, 0.004600307904183865, 0.0017280175816267729, -0.0009087846847251058, -0.011077886447310448, -0.008610237389802933, -7.250169437611476e-05, 0.004033146426081657, -0.025883778929710388, -0.014421152882277966, 0.004245417658239603, 0.008298464119434357, 0.02900150790810585, -0.005147568881511688, -0.02134648896753788, 0.008524002507328987, -0.007800954394042492, 0.03109768219292164, -0.004693176131695509, -0.010029798373579979, 0.016039717942476273, 0.006732966750860214, -0.003353216452524066, 0.013784339651465416, -0.014527288265526295, 0.008159161545336246, 0.009061313234269619, 0.004789361730217934, -0.02445095032453537, -0.012557148933410645, 0.010520675219595432, -0.00017184819444082677, -0.020086131989955902, -0.007973425090312958], "539d2ce9-35c7-434d-825b-fd7c0df52057": [-0.02825523540377617, -0.012160656042397022, -0.010442152619361877, 0.028600316494703293, -0.05686935409903526, -0.02125699259340763, 0.013823946937918663, 0.03340384364128113, 0.027647893875837326, 0.02742704190313816, 0.009786498732864857, 0.002398313255980611, -0.0003584529331419617, -0.016853757202625275, 0.013465062715113163, 0.013520275242626667, -0.020884305238723755, 0.01635684072971344, 0.005238329991698265, -0.016536284238100052, 0.06713896989822388, -0.025315145030617714, -0.01878621242940426, 0.009289581328630447, 0.0017021122621372342, -0.015901334583759308, 0.0026088126469403505, 0.013347734697163105, -0.027647893875837326, -0.03848343715071678, 0.0025173663161695004, 0.018703391775488853, 0.01512835267931223, 0.0029642460867762566, 0.0010343804024159908, -0.019890470430254936, -0.0023465510457754135, 0.014231142587959766, -0.01921411231160164, -0.02396242693066597, -0.027385631576180458, 0.03884232044219971, 0.002900406252592802, 0.007163882255554199, -0.01536300778388977, 0.009144647978246212, 0.022195613011717796, 0.0012345274444669485, -0.02283056266605854, -0.019890470430254936, 0.002284436486661434, 0.034094005823135376, 0.0018461835570633411, -0.018109852448105812, 0.026184748858213425, -0.02929047867655754, 0.0034732406493276358, 0.08817511051893234, 0.022858168929815292, -0.06018213555216789, -0.031084900721907616, 0.022347448393702507, 0.010207497514784336, -0.019462570548057556, 0.008606321178376675, -0.009793399833142757, -0.004879445768892765, 0.014148322865366936, -0.011898394674062729, 0.008716747164726257, -0.000710866937879473, 0.011615428142249584, -0.022789152339100838, 0.020773878321051598, 0.023852001875638962, -0.016149792820215225, 0.04417037218809128, -0.0007656485540792346, 0.02639179863035679, 0.019697226583957672, -0.013892962597310543, 0.01679854467511177, 0.03903556615114212, 0.04265201836824417, 0.04869783669710159, 0.030091067776083946, -0.027647893875837326, -0.048780657351017, -0.01285081822425127, -0.029649363830685616, 0.03470135107636452, 0.026336584240198135, -0.032078735530376434, -0.005103748757392168, -0.0208290908485651, 0.01896565407514572, 0.03044995106756687, -0.004517110995948315, 0.013865356333553791, -0.015721892938017845, 0.005379813257604837, -0.005397067405283451, -0.016826150938868523, 0.01262306421995163, -0.00742614408954978, 0.007315718103200197, -0.001235390082001686, 0.024652589112520218, -0.020014699548482895, -0.0031229835003614426, 0.020332174375653267, -0.03892514109611511, -0.001966961892321706, 0.0073640295304358006, -0.03947727009654045, -0.022733939811587334, -0.03506023436784744, 0.02197476103901863, -0.02681969851255417, -0.05466083809733391, 0.030670803040266037, -0.005931943189352751, 0.011808672919869423, -0.016977988183498383, -0.008350960910320282, 0.013527177274227142, 0.0013069944689050317, 0.019738635048270226, 0.015280188992619514, 0.003923571668565273, 0.01565287634730339, -0.0251080971211195, 0.02397623099386692, -0.018869031220674515, 0.0032092537730932236, 0.023355085402727127, 0.00033365024137310684, 0.056924570351839066, -0.021049942821264267, 0.03713072091341019, -0.011277248151600361, -0.04201706871390343, -0.02323085628449917, 0.00653238408267498, 0.016563890501856804, -0.018013229593634605, -0.02053922414779663, 0.042265526950359344, -0.0063218846917152405, 0.01493510790169239, -0.054909296333789825, -0.012478130869567394, -0.034784168004989624, 0.0025311694480478764, 0.009827908128499985, -0.018013229593634605, -0.00804729014635086, 0.025591209530830383, -0.022029973566532135, 0.05463322997093201, -0.020442601293325424, -0.040388286113739014, -0.0015563154593110085, 0.011884591542184353, 0.0430937223136425, 0.015859924256801605, 0.04982970282435417, 0.03390076011419296, -0.0031471392139792442, 0.0014415760524570942, 0.0018392819911241531, -0.004134071059525013, 0.02096712402999401, 0.004886347334831953, 0.00047923129750415683, -0.0315266028046608, 0.04927757382392883, 0.021491646766662598, 0.037820883095264435, -0.00817842036485672, -0.015031729824841022, 0.017833787947893143, -0.006145893130451441, -0.018896637484431267, -0.015901334583759308, 0.032824110239744186, 0.006442663259804249, 0.023865804076194763, 0.011090904474258423, 0.01019369438290596, -0.024514557793736458, -0.01500412356108427, 0.00940000731498003, 0.03125054016709328, -0.022582102566957474, -0.021781515330076218, 0.005331502296030521, 0.009413810446858406, -0.00545918196439743, 0.04938799887895584, 0.002926287241280079, -0.06205937638878822, -0.027785925194621086, 0.02755127102136612, -0.03390076011419296, 0.02684730477631092, -0.04232073947787285, -0.03232719376683235, 0.015197369270026684, -0.028324251994490623, 0.046599745750427246, -0.04223791882395744, 0.004762118216603994, -0.003954628948122263, -0.015735695138573647, 0.020608240738511086, -0.00509684719145298, 0.050299011170864105, 0.012698981910943985, 0.004913954064249992, -0.019987093284726143, 0.01907607913017273, 0.00274511962197721, -0.0069188750348985195, -0.04941560700535774, -0.03390076011419296, -0.015197369270026684, 0.04524702578783035, -0.022029973566532135, -0.011939804069697857, 0.03961530327796936, -0.03069840930402279, -0.0017926960717886686, -0.03252043575048447, -0.0032368602696806192, -0.0028676234651356936, 0.04146493971347809, -0.002736492780968547, 0.011284150183200836, -0.025605013594031334, 0.021464040502905846, 0.016853757202625275, -0.01623261161148548, 0.00098520633764565, -0.002543247304856777, 0.014189732261002064, -0.006332237273454666, 0.037379179149866104, 0.014010290615260601, 0.004506758414208889, 0.004710356239229441, 0.026750681921839714, -0.004351472016423941, 0.0001249840424861759, -0.023037610575556755, 0.024362722411751747, 0.015694286674261093, -0.023479314520955086, 0.011028789915144444, 0.015086943283677101, -0.0067014736123383045, 0.011429084464907646, -0.022471677511930466, 0.0315266028046608, 0.02538416162133217, -0.0186619833111763, 0.042983293533325195, -0.03185788169503212, -0.030201492831110954, 0.020994730293750763, -0.008033487014472485, 0.008771959692239761, -0.023148035630583763, 0.02151925303041935, 0.02973218262195587, -0.02570163644850254, -0.014410584233701229, -0.013078571297228336, 0.01710221730172634, -0.014217338524758816, 0.0064288596622645855, 0.032796502113342285, 0.008309551514685154, -0.0009653642191551626, 0.03373512253165245, -0.009455220773816109, -0.029787395149469376, 0.010593988001346588, -0.03892514109611511, -0.004375627730041742, 0.005624820943921804, 0.007081062998622656, 0.026888715103268623, 0.023065216839313507, 0.005041634198278189, 0.018289295956492424, -0.0059422957710921764, -0.007750520016998053, -0.04187903553247452, 0.012008820660412312, 0.02294098772108555, -0.0065875970758497715, -0.009434515610337257, -0.019987093284726143, 0.0308364424854517, -0.02854510396718979, 0.026874911040067673, 0.0029469921719282866, 0.003989136777818203, 0.04524702578783035, 0.014217338524758816, -0.03688226267695427, -0.04088520258665085, 0.0028607218991965055, 0.0002650653768796474, -0.0019945683889091015, -0.004209988750517368, 0.005041634198278189, 0.004406685009598732, -0.0067808423191308975, -0.0032299584709107876, -0.02180912159383297, -0.05154130607843399, 0.040968019515275955, 0.03685465455055237, -0.04560590907931328, 0.028075793758034706, 0.013133784756064415, -0.03528108447790146, -0.019876668229699135, -0.0037786373868584633, -0.02857271023094654, -0.014534813351929188, -0.003895964939147234, -0.03185788169503212, -0.03989136964082718, -0.029897822067141533, -0.04176861047744751, -0.01334083266556263, -0.007453750353306532, 0.0014691825490444899, 0.02222321927547455, 0.020608240738511086, -0.012519540265202522, 0.028738349676132202, 0.018468737602233887, 0.002035978250205517, 0.013589291833341122, -0.01320970244705677, 0.021008534356951714, 0.0008260377217084169, -0.0017366203246638179, 0.0009161901543848217, 0.007895453833043575, 0.030311917886137962, -0.014866091310977936, -0.032216764986515045, -0.0015934116672724485, 0.012043328024446964, -0.010159186087548733, -0.035833217203617096, -0.022444071248173714, -0.01521117240190506, 0.003978784196078777, -0.0036889163311570883, 0.023175641894340515, 0.010248906910419464, -0.012761097401380539, -0.029594149440526962, 0.0016072149155661464, -0.0416029691696167, 0.001223312341608107, 0.006114835850894451, 0.015307795256376266, -0.03630252555012703, -0.04618564620614052, 0.05769754946231842, 0.023051412776112556, 0.004993322771042585, 0.002210244070738554, 0.011808672919869423, 0.011877689510583878, -0.020718665793538094, 0.018869031220674515, 0.03428725153207779, -0.0010964949615299702, 0.0072052921168506145, 0.008440682664513588, -0.011753460392355919, -0.0069188750348985195, -0.023479314520955086, -0.0035784903448075056, -0.03216155245900154, 0.010083268396556377, -0.012105442583560944, -0.028462285175919533, -0.0004380372411105782, -0.049995340406894684, 0.015307795256376266, -0.02468019537627697, -0.01026271004229784, -0.018454933539032936, -0.005345305427908897, 0.016908971592783928, 0.002551874378696084, -0.025867274031043053, 0.018744802102446556, -0.011511903256177902, 0.03268607705831528, -0.0021653834264725447, -0.00204460509121418, -0.011325559578835964, 0.019352145493030548, 0.02525993250310421, 0.05358418449759483, 0.0010792409302666783, -0.030201492831110954, 0.052176252007484436, -0.022168006747961044, -0.023644952103495598, 0.03097447380423546, 0.027178583666682243, -0.01205023005604744, 0.014341568574309349, -0.01924171857535839, 0.026005307212471962, 0.005069240462034941, 0.015169763006269932, 0.005438477266579866, -0.014797074720263481, 0.004168578889220953, 0.05780797451734543, 0.004316963721066713, 0.02194715477526188, 0.0036060968413949013, -0.012795604765415192, 0.019462570548057556, 0.010628496296703815, 0.02139502391219139, 0.0014338117325678468, -0.009496630169451237, 0.00975889153778553, -0.010400742292404175, 0.004465348552912474, -0.0344252847135067, -0.04519181326031685, -0.03762763738632202, -0.02396242693066597, 0.020207945257425308, 0.0002084505103994161, 0.021891942247748375, 0.02581206150352955, -0.07779507339000702, -0.00034378698910586536, -0.019572997465729713, 0.02840707078576088, 0.012070935219526291, 0.006038918159902096, 0.017695756629109383, -0.030670803040266037, -0.06056862324476242, 0.00889618881046772, 0.02840707078576088, -0.009199860505759716, 0.0064357612282037735, -0.04439122602343559, 0.0030298116616904736, 0.010248906910419464, 0.004789724946022034, 0.00882717315107584, 0.011194429360330105, -0.007909257896244526, 0.018993260338902473, 0.04234834387898445, 0.005690386518836021, -0.01591513678431511, -0.013119981624186039, 0.002060133730992675, 0.0015520020388066769, -0.01485228817909956, -0.022306038066744804, -0.016467267647385597, -0.035943642258644104, 0.010021153837442398, 0.0019790397491306067, 0.020497813820838928, -0.03199591487646103, 0.002462153322994709, 0.022499283775687218, 0.01047665998339653, 0.03188548982143402, 0.015169763006269932, -0.0018496343400329351, 0.024210885167121887, -0.026060519739985466, -0.016536284238100052, 0.0066462610848248005, -0.04521942138671875, -0.027344221249222755, -0.026640256866812706, 0.0402226448059082, 0.011284150183200836, -0.00026441834052093327, 0.022789152339100838, -0.009938334114849567, 0.028738349676132202, -0.014037896879017353, 0.04375627636909485, -0.008295748382806778, -0.034094005823135376, -0.03917359933257103, 0.01220206543803215, -0.012485031969845295, 0.016412055119872093, -0.004627536982297897, 0.037379179149866104, -0.0013535803882405162, 0.01371352095156908, 0.04439122602343559, 0.0020998180843889713, -0.011718952096998692, -0.020000897347927094, -0.015846122056245804, -0.010297218337655067, -0.030339526012539864, -0.0035163757856935263, -0.026074323803186417, -0.02469399943947792, 0.041133660823106766, -0.022278431802988052, -0.012712785974144936, 0.031112506985664368, -0.026612650603055954, 0.01557005662471056, 0.012740392237901688, -0.020553026348352432, 0.006332237273454666, 0.00019119646458420902, -0.004976068623363972, -0.003702719695866108, -0.019434964284300804, 0.028793562203645706, 0.01449340395629406, 0.003281720681115985, 0.0005931080668233335, 0.033376239240169525, -0.011518805287778378, 0.0005284053622744977, -0.0059630004689097404, 0.024583572521805763, -0.03931163251399994, 0.01428635511547327, -0.008882385678589344, -4.3458643631311134e-05, 0.0164810698479414, -0.020069913938641548, 0.008302649483084679, -0.011201330460608006, -0.017171232029795647, -0.022499283775687218, -0.01993188075721264, 0.021132763475179672, -0.012878424488008022, 0.0003168275288771838, -0.018841424956917763, -0.022043777629733086, -0.008433780632913113, 0.03287932276725769, -0.01019369438290596, 0.02240266092121601, 0.036219704896211624, 0.014879894442856312, 0.02710956707596779, -0.004634438548237085, 0.004254849161952734, 0.03072601556777954, 0.00491740508005023, 0.010945971123874187, -0.05427434667944908, -0.010124677792191505, 0.015252581797540188, -0.01824788562953472, 0.020304568111896515, -0.005524747539311647, 0.017392084002494812, 0.023769183084368706, 0.001228488516062498, -0.029953034594655037, 0.007681503891944885, 0.010159186087548733, -0.001020577154122293, 0.016591496765613556, 0.000221283218706958, -0.013154488988220692, -0.027054354548454285, -0.004103013779968023, 0.025066686794161797, 0.010711315087974072, 0.01706080697476864, 0.022071383893489838, 0.008985910564661026, 0.008488994091749191, 0.007150079123675823, -0.016729528084397316, -0.037820883095264435, 0.03492220118641853, -0.007150079123675823, 0.030643196776509285, -0.007063808850944042, 0.017764771357178688, -0.012498835101723671, 0.007695307023823261, 0.037682849913835526, -0.0008639966836199164, 0.03715832531452179, 0.006197655573487282, 0.0164810698479414, 0.03914599493145943, -0.0065875970758497715, 0.013389144092798233, 0.02956654317677021, -0.040664348751306534, 0.0474003329873085, -0.02871074341237545, 0.004551618825644255, 0.033790335059165955, -0.018551556393504143, 0.02151925303041935, -0.009372401051223278, -0.011242740787565708, -0.01695038005709648, 0.0038545553106814623, 0.022885775193572044, -0.022568300366401672, 0.027219992130994797, -0.007295013405382633, -0.010242004878818989, 0.011435985565185547, -0.006270122714340687, 0.020014699548482895, -0.020594436675310135, -0.007584881503134966, 0.003357638604938984, 0.03605406731367111, -0.015970351174473763, 0.005393616855144501, -0.008371666073799133, 0.01171205099672079, 0.02728900872170925, 0.025301342830061913, -0.031222932040691376, 0.0034559867344796658, 0.022775348275899887, 0.012698981910943985, 0.0032075282651931047, -0.02066345326602459, -0.0028624471742659807, 0.0004533502215053886, 0.019835257902741432, 0.04480532184243202, 0.045274633914232254, -0.01512835267931223, 0.008937599137425423, -0.010925265960395336, 0.026046717539429665, 0.00874435342848301, 0.026778288185596466, 0.01098047848790884, 0.016384446993470192, 0.024279901757836342, 0.01104259304702282, -0.01950398087501526, 0.024072853848338127, -0.009275778196752071, 0.0011025338899344206, 0.005714542232453823, 0.000534875609446317, -0.005925041623413563, 0.017116019502282143, -0.02527373470366001, -0.023037610575556755, -0.02470780350267887, -0.02024935558438301, -0.009027319960296154, -0.022485481575131416, -0.018841424956917763, -0.0029625208117067814, 0.04864262416958809, -0.038980353623628616, -0.01838591881096363, -0.016315432265400887, 0.0008234496344812214, -0.002146404003724456, 0.015224975533783436, 0.011442887596786022, -0.02064964920282364, 0.01579090766608715, 0.002203342504799366, 0.0165086779743433, -0.04201706871390343, -0.05181736871600151, -0.017681952565908432, 0.01500412356108427, -0.04502617567777634, 0.005945746321231127, 0.003281720681115985, -0.026585044339299202, -0.018744802102446556, 0.0062494175508618355, 0.019987093284726143, 0.023631149902939796, 0.0032368602696806192, -0.020580632612109184, 0.03252043575048447, 0.011822476051747799, 0.030339526012539864, -0.012422917410731316, 0.015473433770239353, 0.0036544082686305046, 0.027951564639806747, 0.009738187305629253, 0.032824110239744186, -0.007571077905595303, -0.03340384364128113, -0.03461853042244911, 0.04196185618638992, -0.0014113814104348421, 0.020787682384252548, 0.008288846351206303, -0.00070051453076303, 0.03483938053250313, -0.00635294197127223, -0.03343145176768303, -0.0013044063234701753, 0.01995948702096939, -0.00044515455374494195, -0.011173724196851254, -0.00548678869381547, 0.040277861058712006, -0.0243903286755085, 0.015197369270026684, -0.003944276366382837, 0.01594274491071701, -0.023286068812012672, 0.003975333645939827, 0.0016339587746188045, 0.031637031584978104, 0.007398537360131741, 0.0018962203757837415, -0.003449084935709834, 0.04508138820528984, -0.0215330570936203, 0.018330704420804977, 0.026350388303399086, -0.020553026348352432, 0.00480352807790041, 0.01591513678431511, 0.00778502831235528, 0.010773430578410625, 0.010607791133224964, -0.005400518421083689, -0.002146404003724456, -0.012781801633536816, -0.01456241961568594, 0.003554334631189704, 0.016274021938443184, 0.0032058029901236296, 0.013872258365154266, 0.032768893986940384, 0.024321312084794044, 0.05496450886130333, 0.02140882797539234, 0.0501885861158371, 0.02136741764843464, -0.0028538203332573175, -0.053915463387966156, 0.021905744448304176, -0.021477844566106796, -0.05121002718806267, -0.009738187305629253, 0.004651692230254412, -0.06001649424433708, 0.023603543639183044, -0.01493510790169239, 0.029897822067141533, -0.03188548982143402, 0.019766241312026978, 0.0258258655667305, 0.010676807723939419, -0.01737828180193901, 0.0064944252371788025, -0.014438190497457981, -0.009579449892044067, 0.04290047660470009, -0.0009386204183101654, -0.010014251805841923, 0.028821168467402458, -0.018606768921017647, 0.0029383650980889797, 0.003999489359557629, 0.02154686115682125, -0.050022948533296585, 0.036523375660181046, 0.049581244587898254, -0.011297953315079212, -0.014783271588385105, 0.007136275991797447, 0.004472250118851662, -0.02397623099386692, 0.010890757665038109, 0.00013307188055478036, -0.015404418110847473, -0.02681969851255417, 0.03028431162238121, -0.013582389801740646, -0.011146117933094501, 0.002821037545800209, 0.01710221730172634, 0.03216155245900154, -0.012698981910943985, -0.013858454301953316, 0.014327764511108398, 0.03232719376683235, 0.0007906669634394348, 0.0031971759162843227, 0.0033938719425350428, -0.001010224805213511, 0.00903422199189663, 0.019158899784088135, -0.01997329108417034, -0.006980989594012499, -0.0072052921168506145, 0.01750251092016697, 0.03569518402218819, 0.0008877209620550275, 0.03127814456820488, -0.004675847943872213, 0.014672845602035522, -0.035363905131816864, 0.023051412776112556, -0.02541176788508892, -0.03663380444049835, -0.00563517352566123, -0.021726302802562714, -0.024321312084794044, -0.0003077691653743386, 0.00760558620095253, -0.002139502437785268, 0.03856625780463219, 0.06912663578987122, 0.04820092022418976, -0.005676582921296358, -0.01707460917532444, 0.023479314520955086, -0.002808959688991308, 0.019628209993243217, -0.021602073684334755, -0.0010128128342330456, -0.032796502113342285, 0.017737165093421936, 0.027896352112293243, 0.005579960532486439, -0.010738922283053398, -0.004285906441509724, -0.02871074341237545, -0.008847878314554691, -0.025149505585432053, 0.012843916192650795, 0.015859924256801605, 0.00013177782238926739, -0.012505737133324146, -0.012643769383430481, 0.023893412202596664, 0.025204719975590706, -0.030891655012965202, -0.00968987587839365, 0.0015157684683799744, 0.014907500706613064, -0.038538649678230286, 0.0029435413889586926, -0.012381508015096188, 0.007695307023823261, -0.008592518046498299, 0.004113365896046162, -0.02611573413014412, 0.01320970244705677, 0.02168489247560501, -0.01305786706507206, 0.0033110526856034994, 0.014396781101822853, 0.008585616014897823, 0.00853040348738432, -0.018165066838264465, -0.011021888814866543, -0.011884591542184353, 0.014783271588385105, -0.00861322320997715, -0.024514557793736458, 0.012436720542609692, -0.019559193402528763, 0.0033438352402299643, -0.03401118889451027, -0.040415890514850616, 0.01953158713877201, 0.04036067798733711, -0.055903129279613495, 0.026916321367025375, 0.002060133730992675, 0.00474141351878643, 0.028213826939463615, 0.007943765260279179, 0.020456403493881226, 0.001511454931460321, -0.010007349774241447, 0.05968521535396576, 0.036827050149440765, 0.019145095720887184, 0.0021636581514030695, 0.005024380050599575, -0.006936129182577133, -0.0029469921719282866, 0.02710956707596779, 0.04626846686005592, 0.007992076687514782, -0.012215868569910526, -0.007833339273929596, -0.022637316957116127, -0.01635684072971344, -0.023562133312225342, 0.022747742012143135, -0.006905071437358856, 0.008875484578311443, -0.007419242523610592, -0.004824232775717974, -0.005169313866645098, 0.010317923501133919, -0.006218360271304846, -0.019310735166072845, -0.01896565407514572, -0.03403879329562187, -0.04408755525946617, -0.0018047738121822476, 0.02973218262195587, -0.00545918196439743, -0.013430554419755936, -0.01892424374818802, -0.01924171857535839, 0.022292235866189003, -0.015252581797540188, -0.0032420363277196884, -0.00249148509465158, 0.013734225183725357, -0.013140685856342316, 0.021602073684334755, 0.009814104996621609, 0.021298401057720184, 0.010317923501133919, -0.011139215901494026, 0.011111609637737274, 0.012567851692438126, 0.001406205235980451, -0.01936594769358635, 0.014838485047221184, 0.00790235586464405, -0.00653238408267498, 0.026943927630782127, -0.03961530327796936, 0.019490176811814308, -0.004969167057424784, -0.007322619669139385, -0.021284598857164383, 0.012077836319804192, -0.012367704883217812, 0.02799297496676445, 0.0072259968146681786, -0.0069602844305336475, -0.011850083246827126, -0.0031937251333147287, -0.022485481575131416, -0.0022723586298525333, 0.02180912159383297, -0.003895964939147234, -0.026005307212471962, -0.010773430578410625, -0.00423414446413517, 0.006704924628138542, -0.04563351720571518, 0.020773878321051598, -0.028683137148618698, 0.010994281619787216, 0.04331457242369652, -0.03475656360387802, 5.014459020458162e-05, -0.017764771357178688, 0.002831389894708991, -0.019158899784088135, -0.024045247584581375, -0.0171988382935524, -0.008192223496735096, -0.025729242712259293, -0.02599150501191616, -0.0014778095064684749, -0.0038580060936510563, 0.053915463387966156, 0.0018824171274900436, 0.0071914889849722385, -0.019904274493455887, -0.02383819781243801, 0.00804729014635086, 0.013644504360854626, -0.03497741371393204, -0.02942851185798645, 0.0005413458566181362, -0.018979458138346672, 0.013016456738114357, 0.0343976765871048, -0.010228201746940613, -0.019614405930042267, 0.012395311146974564, 0.03489459678530693, -0.0157633014023304, -0.023217052221298218, 0.019835257902741432, -0.0025415217969566584, -0.0236725602298975, -0.0030349877197295427, -0.0006875739782117307, -0.007543471641838551, 0.02280295453965664, -0.018151262775063515, -0.02150545082986355, -0.025480784475803375, 0.014728059060871601, -0.019338341429829597, 0.012733490206301212, -0.023852001875638962, 0.0165224801748991, -0.06470959633588791, -0.024224689230322838, -0.020566830411553383, 0.013368439860641956, 0.008433780632913113, -0.0019773144740611315, 0.00853730458766222, 0.005466083530336618, -0.011532608419656754, 0.020760076120495796, 0.005714542232453823, -0.01270588394254446, 0.03434246405959129, 0.023148035630583763, -0.014024093747138977, 0.0158047117292881, -0.010166087187826633, -0.004813880659639835, 0.014714255928993225, -0.012540245428681374, -0.01806844398379326, 0.026184748858213425, 0.0070189484395086765, -0.017005594447255135, -0.025342751294374466, 0.04624085873365402, 0.0073571279644966125, -0.014438190497457981, -0.015031729824841022, -0.0329897478222847, 0.02854510396718979, 0.016743332147598267, -0.008813370019197464, 0.022499283775687218, -0.0007483945228159428, 0.026433207094669342, 0.009227466769516468, -0.01777857542037964, 0.020056109875440598, 0.014659042470157146, 0.00046111454139463603, 0.04179621487855911, 0.009165352210402489, -0.018316902220249176, -0.0017469727899879217, -0.023341281339526176, -0.012340097688138485, -0.020898107439279556, 0.0016253317007794976, 0.010221300646662712, 0.020608240738511086, 0.026654059067368507, -0.024003837257623672, -0.011435985565185547, 0.011863886378705502, 0.0024310960434377193, 0.013879159465432167, -0.0010292042279615998, -0.0010447328677400947, -0.007929962128400803, 0.03362469747662544, 0.01169824693351984, -0.0003631977888289839, -0.004575774539262056, -0.02481822855770588, 0.014369174838066101, 0.009600155055522919, 0.01965581625699997, 0.01312688272446394, 0.0007393361302092671, 0.00010174499038839713, -0.012333196587860584, 0.015542450360953808, 0.019324539229273796, -0.0059975082986056805, 0.00267092720605433, 0.010235103778541088, 0.015404418110847473, -0.009972842410206795, -0.013409849256277084, -0.008778861723840237, -0.0063356878235936165, 0.024500753730535507, -0.012740392237901688, -0.002289612777531147, -0.0251218993216753, -0.0024155674036592245, -0.03757242485880852, -0.00975199043750763, 0.0065599908120930195, 0.0007854907307773829, -0.01677093841135502, 0.03042234480381012, 0.012588556855916977, -0.015142155811190605, 0.03216155245900154, -0.00998664554208517, -0.010794134810566902, -0.012975047342479229, -0.0016650160541757941, -0.0012750744353979826, -0.012926735915243626, 0.006597949657589197, -0.009475925005972385, -0.010221300646662712, -0.009413810446858406, 0.007929962128400803, 0.008751255460083485, -0.015556253492832184, -0.011594722978770733, -0.009772694669663906, 0.004568872973322868, -0.022043777629733086, -0.018551556393504143, -0.011387674137949944, 0.016991790384054184, -0.011097806505858898, -0.008088699541985989, -0.025356555357575417, 0.00982100609689951, -0.004696553107351065, 0.01456241961568594, 0.006183852441608906, -0.03572278842329979, 0.0005007988656871021, 0.011422182433307171, 0.0057248943485319614, -0.014962714165449142, -0.004144423175603151, 0.00831645354628563, -0.002632968360558152, -0.0024362721014767885, -0.013175194151699543, -0.00703620258718729, -0.010573282837867737, 0.012015721760690212, 0.011553313583135605, -0.021174171939492226, 0.021160369738936424, -0.007329521235078573, -0.00904112309217453, 0.0031436881981790066, 0.019007064402103424, -0.004123718477785587, -0.012892227619886398, -0.01068370882421732, -0.002760648261755705, -0.013651406392455101, 0.029953034594655037, -0.0071776858530938625, -0.018040837720036507, 0.017985623329877853, 0.017157429829239845, -0.01693657785654068, -0.02121558226644993, -0.016412055119872093, -0.022568300366401672, 0.0010447328677400947, -0.02739943563938141, -0.0179580170661211, -0.017116019502282143, 0.02038738876581192, 0.00048095668898895383, 0.0014562420547008514, 0.010890757665038109, -0.0029763239435851574, -0.01895185001194477, -0.002550148870795965, -0.00746065191924572, -0.005755951628088951, 0.002146404003724456, -0.013458160683512688, -0.011366969905793667, -0.023575937375426292, -0.0003703151014633477, -0.012450523674488068, 0.0025087392423301935, -0.03202351927757263, 0.03428725153207779, 0.010172989219427109, -0.01091836392879486, -0.006618654355406761, -0.009952137246727943, 0.026888715103268623, 0.012064033187925816, -0.010545676574110985, -0.007495160214602947, 0.015404418110847473, 8.605458424426615e-05, -0.010366234928369522, 0.03630252555012703, -0.001947982469573617, -0.013402947224676609, 0.0033076019026339054, -0.0034853185061365366, -0.004392881877720356, 0.02786874584853649, 0.027054354548454285, -0.0008316453313454986, -0.0023620796855539083, -0.01341675128787756, -0.0020825641695410013, 0.012353901751339436, 0.01679854467511177, 0.0005042496486566961, -0.01377563551068306, -0.03271368145942688, 0.0032127045560628176, 0.02051161788403988, -0.017626740038394928, 0.011801771819591522, 0.011870787478983402, 0.01169134583324194, -0.006905071437358856, 0.00043178265332244337, -0.011725854128599167, 0.008185322396457195, -0.022885775193572044, 0.020014699548482895, -0.006535835098475218, 0.0373239666223526, -0.01737828180193901, 0.017309265211224556, -0.01205023005604744, 0.002446624683216214, 0.0067877438850700855, 0.00516241230070591, -0.05148608982563019, -0.04466728866100311, -1.1444289157225285e-05, 0.0012802506098523736, 0.015901334583759308, -0.0031471392139792442, 0.004071956500411034, -0.00855110865086317, -0.004137521609663963, 0.039670515805482864, -0.012747293338179588, 0.03472895547747612, -0.006553088780492544, -0.031802669167518616, -0.029925428330898285, -0.005362559575587511, 0.010076366364955902, 0.044556863605976105, 0.03329341858625412, -0.024638786911964417, -0.010304120369255543, -0.017295461148023605, 0.019131293520331383, 0.01577710546553135, -0.010752725414931774, -0.019572997465729713, 0.005673132371157408, -0.00584912346675992, -0.007122472859919071, 0.002401764038950205, -0.017737165093421936, -0.011919098906219006, -0.018606768921017647, 0.01428635511547327, 0.0033058763947337866, 0.03315538540482521, -0.018413525074720383, 0.04891868680715561, -0.01751631312072277, 0.008502797223627567, 0.02023555152118206, 0.019020866602659225, -0.004009841941297054, -0.004348021000623703, 0.0037372277583926916, -0.024348918348550797, -0.017902804538607597, 0.018275491893291473, 0.005369461141526699, 0.0012483306927606463, -0.008206027559936047, -0.00423759501427412, 0.017433494329452515, -0.006649711634963751, 0.012271082028746605, -0.026654059067368507, 0.00516241230070591, -0.007681503891944885, -0.006218360271304846, 0.017557723447680473, -0.0008545069140382111, 0.04381148889660835, -0.018178869038820267, 0.0027899802662432194, -0.001365658245049417, 0.021270794793963432, -0.004175480455160141, 0.015376810915768147, -0.030201492831110954, -0.012236573733389378, -0.0019928431138396263, 0.005055437330156565, -0.00742614408954978, 0.01663290709257126, 0.0070051453076303005, -0.0330449603497982, -0.0001434243022231385, -0.012070935219526291, -0.00017545213631819934, -0.0014786722604185343, 0.007156980689615011, 0.017599133774638176, 0.01881381869316101, 0.0013647954910993576, 0.016591496765613556, -0.011615428142249584, -0.0013044063234701753, 0.005272838287055492, -0.0012172734132036567, 0.017267854884266853, 0.007301914971321821, -0.019752439111471176, -0.04105084016919136, -0.011325559578835964, -0.02408665604889393, 0.03260325640439987, 0.007232898846268654, -0.03373512253165245, -0.001323385746218264, 0.0005555804818868637, -0.015680482611060143, 0.031913094222545624, -0.004313513170927763, -0.007936864160001278, 0.055875521153211594, -0.011021888814866543, -0.020304568111896515, 0.000771687482483685, -0.008206027559936047, -0.008999713696539402, -0.002724414924159646, 2.9817158065270633e-05, 0.0035750395618379116, 0.024901047348976135, 0.03014628030359745, 0.015901334583759308, 0.009386204183101654, 0.006870563607662916, 0.00804729014635086, -0.002022174885496497, 0.02495626173913479, 0.025080490857362747, -0.011670640669763088, 0.0017788928234949708, 0.004651692230254412, -0.015583859756588936, -0.009344794787466526, 0.019572997465729713, 0.0329621396958828, -0.004154775757342577, 0.025301342830061913, -0.014355371706187725, -0.026308977976441383, -0.01606697402894497, -0.011939804069697857, 0.0018203024519607425, 0.016467267647385597, 0.01270588394254446, 0.019572997465729713, 0.037213537842035294, -0.010759626515209675, 0.01965581625699997, -0.01341675128787756, -0.0006867112824693322, 0.012733490206301212, -0.0030436147935688496, -0.006791194900870323, -0.0037786373868584633, 0.015114549547433853, 0.01020059548318386, -0.013609996065497398, 0.016260217875242233, 0.002634693868458271, -0.011014986783266068, 0.01765434630215168, -0.03497741371393204, -0.022485481575131416, -0.01234699971973896, 0.0082405349239707, -0.025480784475803375, -0.00412026746198535, -0.0193935539573431, 0.013727324083447456, 0.014369174838066101, -0.01420353539288044, 0.01169134583324194, 0.016439661383628845, -0.007757422048598528, -0.00405470235273242, -0.03373512253165245, -0.002729590982198715, -0.024072853848338127, -0.0006966323708184063, -0.009972842410206795, -0.0008510561310686171, -0.004092661198228598, 0.017723362892866135, 0.0007807458750903606, 0.023493116721510887, 0.013858454301953316, 0.007750520016998053, -0.01808224618434906, -0.04949842393398285, -0.009779596701264381, 0.013734225183725357, -0.009379303082823753, -0.024997670203447342, -0.021726302802562714, -0.009724384173750877, 0.012091639451682568, 0.012761097401380539, -0.0037820881698280573, 0.00020963673887308687, -0.035225871950387955, -0.00512790447100997, 0.01965581625699997, -0.00867533776909113, -0.010124677792191505, 0.018137458711862564, 0.0005089945625513792, 0.0012975047575309873, 0.0067463344894349575, 0.002325846115127206, 0.007329521235078573, 0.0018686138791963458, -0.010152284055948257, 0.0037579324562102556, 0.027910154312849045, -0.004427389707416296, -0.008606321178376675, -0.023506920784711838, -0.01147739589214325, -0.015114549547433853, -0.04105084016919136, -0.024017641320824623, -0.0006375372176989913, -0.024763016030192375, 0.011173724196851254, 0.006642810069024563, 0.016149792820215225, -0.004134071059525013, 0.011815574951469898, 0.03431485965847969, 0.017129823565483093, -0.032078735530376434, 0.029069626703858376, 0.010242004878818989, -0.0007078474736772478, 0.017405888065695763, -0.0069982437416911125, -0.0031419629231095314, -0.029207659885287285, 0.024473147466778755, 0.011153019033372402, 0.00018893186643254012, -0.015197369270026684, 0.007709110621362925, -0.031913094222545624, 0.026654059067368507, 0.03329341858625412, -0.008288846351206303, -0.011684443801641464, -0.003944276366382837, -0.0032799954060465097, -0.021560663357377052, -0.009082533419132233, 0.01270588394254446, 0.011456690728664398, -0.0215330570936203, -0.006629006937146187, 0.0017219544388353825, 0.004354922566562891, -0.01291983388364315, -0.0023206700570881367, -0.00889618881046772, 0.009213663637638092, 0.007998978719115257, 0.0315818153321743, -0.009558744728565216, 0.018869031220674515, -0.012126147747039795, -0.03125054016709328, 0.04839416593313217, -0.005303895566612482, 0.008337157778441906, -0.011787968687713146, 0.004734511952847242, 0.019545389339327812, -0.029318084940314293, -0.005176215432584286, -0.010904560796916485, 0.040664348751306534, -0.0037648342549800873, 0.007143177557736635, -0.008937599137425423, -0.04836655780673027, -0.011077101342380047, 0.015155958943068981, 0.007895453833043575, 0.002993578091263771, 0.012726589106023312, 0.011718952096998692, -0.003352462314069271, -0.023575937375426292, -0.004013292491436005, -0.017543919384479523, 0.01019369438290596, 0.0024103911127895117, 0.005800812505185604, 0.011180626228451729, 0.00811630580574274, -0.006804998032748699, 0.005866377614438534, -0.02194715477526188, -0.023852001875638962, -0.003895964939147234, -0.00826124008744955, 0.003954628948122263, 0.02053922414779663, -0.01256094966083765, 0.0033731672447174788, -0.005538550671190023, -0.009310286492109299, -0.00825433898717165, 0.004368726164102554, -0.006456466391682625, 0.011753460392355919, 0.02109135314822197, -0.010186792351305485, -0.0058042630553245544, -0.009227466769516468, -0.003706170478835702, -0.012208967469632626, -0.0073502263985574245, -0.0165224801748991, -1.920861359394621e-05, -0.0009075631387531757, -0.008689140900969505, 0.06476481258869171, 0.010711315087974072, 0.0029832255095243454, -0.008923796005547047, 0.0067877438850700855, -0.011353165842592716, -0.009869317524135113, 0.024500753730535507, 0.014714255928993225, -0.009220565669238567, 0.002632968360558152, -0.024473147466778755, 0.0062287128530442715, 0.01679854467511177, -0.02898680791258812, 0.016439661383628845, 0.013078571297228336, 0.008640829473733902, -0.006018213462084532, 0.013823946937918663, 0.0018030484206974506, -0.013672110624611378, -0.01521117240190506, 0.016191203147172928, -0.01062159426510334, 0.028227629140019417, 0.00444464385509491, 0.019559193402528763, 0.008454485796391964, 0.018482539802789688, -0.004813880659639835, -0.010304120369255543, -0.02567403018474579, -0.002581206150352955, -0.004872544202953577, 0.017336871474981308, 0.004879445768892765, 0.007695307023823261, -0.007412340957671404, 0.010297218337655067, 0.003016008296981454, -0.0036751131992787123, 0.011380773037672043, 0.03561236336827278, -0.00578355835750699, -0.009869317524135113, 0.014120716601610184, -0.005134806036949158, -0.0029021315276622772, -0.004575774539262056, -0.021850531920790672, -0.00989692471921444, -0.0019134744070470333, 0.006722178775817156, 0.014148322865366936, -0.002764099044725299, 0.00868223886936903, 0.0003726875293068588, 0.0035991952754557133, 0.0016538009513169527, -0.017405888065695763, -0.01047665998339653, -0.029069626703858376, -0.02915244735777378, -0.026874911040067673, -0.024183278903365135, -0.015459630638360977, -0.031222932040691376, -0.00037635400076396763, -0.00831645354628563, -0.0035612364299595356, 0.022430267184972763, -0.0009929706575348973, -0.033072568476200104, -0.001370834419503808, 0.032796502113342285, 0.001235390082001686, 0.023589739575982094, -0.006615203805267811, 0.005176215432584286, -0.0010361057939007878, 0.0075227669440209866, -0.012519540265202522, -0.0008152539376169443, -0.0026243412867188454, 0.0031419629231095314, 0.014769468456506729, -0.03530869260430336, 0.01335463672876358, -0.03453570976853371, -0.00876505859196186, 0.009054926224052906, -0.0061562457121908665, -0.011649936437606812, 0.020911911502480507, 0.005859476048499346, -0.006290827412158251, 0.01925552263855934, 0.017433494329452515, -0.0060837785713374615, 0.0004054702294524759, 0.016453463584184647, -0.017336871474981308, 0.010676807723939419, -0.0008398409700021148, -0.009924530982971191, 0.010276513174176216, 0.003992587793618441, -0.01837211474776268, 0.003537080716341734, -0.010649200528860092, -0.0033076019026339054, 0.005766304209828377, 0.0067808423191308975, -0.02193335071206093, 0.012636867351830006, 0.003913219086825848, -0.009531138464808464, -0.0032247824128717184, -0.013313226401805878, 0.0020584084559231997, -0.0003082005132455379, 0.007874749600887299, 0.0032161553390324116, 0.0026812797877937555, 0.015335401520133018, -0.013837750069797039, -0.012153754010796547, -0.010952872224152088, -0.00552129652351141, 0.010062563233077526, 0.013920568861067295, 0.010076366364955902, -0.006470269523561001, -0.0002672221453394741, -0.006622105371206999, -0.0010870052501559258, -0.0007807458750903606, 0.015473433770239353, -0.020332174375653267, 0.015818515792489052, 0.010248906910419464, 0.006252868566662073, 0.012629966251552105, 0.0025259931571781635, 0.007301914971321821, -0.017447298392653465, -0.023355085402727127, 0.00228098570369184, -0.012906030751764774, 0.03260325640439987, -0.031498998403549194, 0.024445541203022003, 0.005807714071124792, -0.003378343302756548, -0.00017502078844700009, -0.023189445957541466, 0.016191203147172928, -0.009669170714914799, -0.007343324366956949, -0.014741862192749977, 0.005728345364332199, -0.0061355410143733025, -0.0010395566932857037, -0.01512835267931223, 0.0021067196503281593, 0.020332174375653267, 0.015017926692962646, 0.02336888760328293, -0.004220341332256794, -0.020428797230124474, 0.011021888814866543, 0.02269252948462963, -0.028627922758460045, 0.02699914015829563, -0.006980989594012499, -0.009745088405907154, -0.0164810698479414, -0.020580632612109184, 0.015501040033996105, 0.0013061317149549723, -0.006632457487285137, 0.028600316494703293, 0.005058887880295515, 0.009703679010272026, -0.013810142874717712, -0.006007860880345106, -0.01034552976489067, -0.014451993629336357, 0.002808959688991308, -0.030505163595080376, 0.01751631312072277, 0.0075365700758993626, -0.0010723393643274903, -0.027012944221496582, 0.003802793100476265, 0.018178869038820267, 0.024928653612732887, 0.019421160221099854, -0.004168578889220953, 0.006466818507760763, -0.0027727261185646057, 0.005659329239279032, 0.00566968135535717, -0.010317923501133919, -0.01548723690211773, -0.00010449485125718638, -0.016743332147598267, -0.02022174932062626, 0.010021153837442398, -0.0502714067697525, -0.031637031584978104, 0.006311532109975815, 0.002677828771993518, -0.0010455955052748322, 0.013596192933619022, 0.00423759501427412, 0.0031436881981790066, 0.033955976366996765, 0.017254052683711052, 0.007094866130501032, 0.002391411690041423, 0.016577692702412605, 0.007771225180476904, -0.01765434630215168, 0.005742148496210575, 0.012471228837966919, 0.024431737139821053, 0.036385346204042435, 0.005441927816718817, 0.03102968819439411, -0.014659042470157146, -0.006542736664414406, 0.012298688292503357, -0.011366969905793667, 0.005417772568762302, 0.0071983905509114265, -0.008040388114750385, 0.015142155811190605, 0.017557723447680473, -0.016729528084397316, -0.010752725414931774, -0.009351695887744427, -0.0005827556014992297, 0.008012781850993633, -0.020856698974967003, 0.0073847342282533646, -0.007094866130501032, 0.004717257805168629, -2.790303733490873e-05, 0.014507207088172436, -0.003947726916521788, 0.0009524236666038632, 0.013389144092798233, 0.012464326806366444, -0.007557274773716927, -0.020125126466155052, -0.002274084137752652, 5.5913911637617275e-05, -0.020773878321051598, 0.012146852910518646, 0.02183672785758972, -0.026433207094669342, 0.010870052501559258, -0.004530914127826691, 0.02352072298526764, -0.021008534356951714, -0.007029301021248102, 0.014258748851716518, 0.0012655847240239382, -0.010932167060673237, -0.000536601000931114, 0.014534813351929188, 0.03558475524187088, 0.001057673362083733, 0.002318944549188018, -0.011656837537884712, -0.01735067553818226, 0.006970637012273073, 0.008447583764791489, -0.004748315084725618, 0.015680482611060143, -0.008074896410107613, -0.02412806637585163, -0.005207272712141275, -0.03130575269460678, -0.0023310224059969187, 0.00918605737388134, 0.0004291945369914174, 0.012616163119673729, -0.0006621242500841618, -0.007274308241903782, 0.027150975540280342, 0.005542001686990261, -0.002367255976423621, 0.0008734863949939609, -0.0036751131992787123, 0.02193335071206093, 0.02067725546658039, 0.006915424019098282, -2.8145672331447713e-05, 0.004482602700591087, -0.010041858069598675, -0.0073502263985574245, 0.0036923671141266823, 0.0003964118368458003, 0.020622042939066887, 0.008820271119475365, -0.000886858266312629, 0.02323085628449917, 0.02026315964758396, -0.0018392819911241531, -0.007343324366956949, -0.020056109875440598, -0.009655367583036423, 0.006994792725890875, -0.0020618592388927937, 0.017695756629109383, -0.01055257860571146, 0.01735067553818226, -0.0005693837301805615, 0.021905744448304176, 0.0034370070789009333, 0.007557274773716927, -0.00020100970868952572, 0.03260325640439987, 0.023079020902514458, 0.01104259304702282, 0.02412806637585163, -0.022195613011717796, 0.019628209993243217, 0.0011517079547047615, -0.009703679010272026, -0.004099562764167786, 0.009427614510059357, 0.0033196795266121626, -0.00047923129750415683, -0.0015701187076047063, -0.01500412356108427, -0.005179666448384523, -0.013748028315603733, -0.02987021580338478, -0.014396781101822853, -0.010752725414931774, 0.012781801633536816, 0.009475925005972385, 0.0038545553106814623, -0.00855110865086317, 0.010331726633012295, 0.010642299428582191, 0.014962714165449142, 0.008495895192027092, 0.025908684358000755, -0.01004876010119915, -0.01823408156633377, 0.01591513678431511, 0.0021722852252423763, 0.008502797223627567, -0.011111609637737274, 0.009455220773816109, -0.026460815221071243, 0.02211279235780239, -0.00045162480091676116, -0.00838546920567751, 0.004437742289155722, 0.019614405930042267, -0.023741574957966805, 0.015735695138573647, -0.018261687830090523, -0.00017340322665404528, 0.0036475067026913166, -0.0193935539573431, -0.004103013779968023, -0.006794645916670561, -0.023921018466353416, 0.005787008907645941, 0.004765569232404232, 0.005400518421083689, -0.013195899315178394, 0.005745599512010813, 0.03332102671265602, 0.0024362721014767885, -0.011636132374405861, 0.01141528133302927, 0.01708841323852539, 0.023644952103495598, 0.01156711671501398, 0.01529399212449789, 0.002303415909409523, -0.022595906630158424, -0.019421160221099854, -0.0005594626418314874, -0.007129374425858259, -0.004330766852945089, 0.001372559810988605, 0.0066462610848248005, -0.028959201648831367, 0.028903987258672714, -0.001018851762637496, -0.008033487014472485, -0.0038234980311244726, 0.011373871006071568, -0.008627026341855526, -0.003003930440172553, 0.0001325326884398237, -0.037544816732406616, -0.0022447521332651377, 0.014148322865366936, 0.01993188075721264, -0.021588269621133804, 0.006784293334931135, 0.00883407425135374, -0.01562527008354664, 0.004606831818819046, 0.012478130869567394, -0.006459916941821575, 0.022609710693359375, -0.016550086438655853, 0.0004606831935234368, 0.021464040502905846, 0.021270794793963432, 0.006670416332781315, 0.007619389332830906, -0.0011655112029984593, 0.03555715084075928, -0.02599150501191616, 0.0279791709035635, -0.004389430861920118, -0.0017357576871290803, -0.0032541141845285892, 0.003927022218704224, -0.01591513678431511, 0.007771225180476904, 0.018468737602233887, -0.03403879329562187, -0.012008820660412312, 0.02556360326707363, -0.02585347183048725, -0.012367704883217812, 0.018551556393504143, -0.03174745664000511, -0.018827620893716812, -0.0009826183086261153, -0.005238329991698265, 0.00545918196439743, -0.0021860883571207523, 0.006159696727991104, 0.013872258365154266, 0.001274211797863245, -0.00817842036485672, -0.0075227669440209866, 0.023051412776112556, 0.011912197805941105, -0.006159696727991104, -0.024611180648207664, 0.004282455891370773, 0.0038718092255294323, 0.004337668884545565, 0.04052631929516792, -0.027592679485678673, 0.010228201746940613, -0.018772408366203308, -0.0012535068672150373, 0.013037161901593208, -0.0013561685336753726, -0.006901620887219906, 0.003626801772043109, 0.006818801164627075, -0.016715725883841515, 0.008454485796391964, -0.015556253492832184, 0.00211879750713706, 0.011166822165250778, -0.004306611604988575, -0.01620500534772873, 0.012671375647187233, -0.015252581797540188, 0.011173724196851254, 0.009227466769516468, -0.009344794787466526, -0.018551556393504143, 0.007923061028122902, -0.00046801616554148495, 0.015073140151798725, 0.03489459678530693, -0.005207272712141275, -0.008813370019197464, 0.015997957438230515, 0.010380038060247898, 0.006280474830418825, 0.011373871006071568, 0.009151549078524113, 0.019724832847714424, -0.020000897347927094, 0.01356858666986227, 0.005348755978047848, -0.013396046124398708, 0.03801412880420685, -0.015997957438230515, -0.021850531920790672, -0.007336422801017761, 0.002569128293544054, 0.005579960532486439, 0.013540980406105518, 0.008509698323905468, 0.004989871755242348, -0.0034663390833884478, 0.01965581625699997, 0.01118752732872963, 0.01748870685696602, -0.0058698286302387714, 0.0069602844305336475, -0.0025001121684908867, 0.0066014002077281475, 0.004372176714241505, 0.015735695138573647, 0.02612953633069992, 0.024652589112520218, 0.0013466788223013282, 0.004341119434684515, -0.013437455520033836, -0.022168006747961044, 0.0020929165184497833, 0.010904560796916485, 0.008578714914619923, -0.007295013405382633, 0.012609261088073254, -0.008799566887319088, 0.01485228817909956, -0.005735246930271387, -0.021753909066319466, 0.007847143337130547, 0.008192223496735096, 0.004151324741542339, 0.009979743510484695, 0.022168006747961044, 0.013616898097097874, 0.01371352095156908, 0.041106052696704865, -0.017889000475406647, -0.008558009751141071, -0.002655398566275835, 0.016274021938443184, 0.0010723393643274903, 0.002798607340082526, -0.03514305502176285, -0.004185833036899567, 0.011242740787565708, -0.0165224801748991, 0.00982100609689951, -0.02426609955728054, 0.0033248558174818754, 0.04243116453289986, 0.002370706759393215, 0.008461386896669865, -0.008806467987596989, -0.0061355410143733025, 0.006956833880394697, -0.012747293338179588, 0.015404418110847473, -0.010663004592061043, -0.01493510790169239, -0.016591496765613556, -0.010524971410632133, -0.007515864912420511, -0.004727610386908054, 0.012119246646761894, 0.023051412776112556, 0.011456690728664398, 0.021077550947666168, -0.012291786260902882, 0.007405439391732216, 0.009213663637638092, 0.015459630638360977, 0.007094866130501032, 0.006183852441608906, -0.022913381457328796, -0.005134806036949158, 0.029207659885287285, -0.013513373211026192, -0.0017340322956442833, -0.02209899015724659, -0.012153754010796547, 0.002310317475348711, -0.002025625668466091, 0.028931595385074615, 0.009745088405907154, 0.01692277379333973, 0.024500753730535507, -0.01907607913017273, 0.017392084002494812, -0.019145095720887184, -0.011822476051747799, -0.006511679384857416, 0.023644952103495598, -0.0070120468735694885, -0.00975889153778553, -0.004427389707416296, -0.013941274024546146, -0.026032913476228714, 0.00405815290287137, 0.012208967469632626, 0.006722178775817156, -0.0021032688673585653, 0.006363294553011656, -0.003920120652765036, -0.003816596232354641, -0.020566830411553383, -0.02138122171163559, -0.01062159426510334, 0.005611017812043428, -0.007778126746416092, 0.020842894911766052, 0.0060699754394590855, -0.005293542984873056, 0.0007199253304861486, 0.03315538540482521, 0.0030418892856687307, 0.03014628030359745, 0.011829378083348274, -0.0073571279644966125, -0.007591783069074154, -0.0012069209478795528, 0.00825433898717165, -0.009765793569386005, 0.00031488644890487194, 0.025508390739560127, 0.01464523933827877, 0.008751255460083485, -0.014189732261002064, -0.007239800412207842, 0.012229671701788902, 0.005769755225628614, -0.030532769858837128, 0.012422917410731316, -0.0015683933161199093, -0.020746272057294846, -0.005241781007498503, -0.0031747454777359962, -0.017336871474981308, 0.0016969359712675214, 0.0018789662281051278, 0.00390976807102561, 0.004368726164102554, 0.007681503891944885, 0.0007151804747991264, -0.002381059108301997, 0.009241269901394844, 0.0011327285319566727, -0.016011759638786316, -0.022996200248599052, 0.013527177274227142, -0.0029832255095243454, 0.020594436675310135, -0.022733939811587334, -0.0344528928399086, 0.01922791637480259, -0.023769183084368706, 0.0244041308760643, 0.015017926692962646, -0.019338341429829597, -0.02365875616669655, -0.0012612711871042848, 0.0037406785413622856, -0.008737452328205109, -0.012312491424381733, 0.010186792351305485, 0.01176036149263382, 0.002798607340082526, -0.01609458029270172, -0.012333196587860584, 0.00023530214093625546, -0.01980765163898468, 0.020760076120495796, 0.009068729355931282, -0.012519540265202522, -0.0058836317621171474, 0.00023853726452216506, 0.0012940538581460714, -0.0244041308760643, 0.011856984347105026, 0.008288846351206303, -0.00498297018930316, 0.0009101512259803712, -1.3884119653084781e-05, 0.005259035155177116, -0.003540531499311328, -0.016412055119872093, 0.006456466391682625, 0.022871971130371094, -0.003930473234504461, -0.00840617436915636, -0.02625376544892788, -0.012291786260902882, -0.010732020251452923, -0.0042997095733881, -0.022568300366401672, 0.00853040348738432, -0.018151262775063515, -0.002481132745742798, -0.014797074720263481, -0.009351695887744427, 0.01793041080236435, -0.0017021122621372342, -0.005704189650714397, -0.014058602042496204, -0.0018806917360052466, 0.009517335332930088, 0.0016089403070509434, -0.010511168278753757, 0.013658307492733002, 0.008813370019197464, 0.002482858020812273, 0.00617349985986948, -0.016743332147598267, -0.03125054016709328, 0.014907500706613064, -0.011829378083348274, -0.017129823565483093, 0.011070200242102146, 0.0059491973370313644, -0.005014027468860149, -0.006718727760016918, 0.0030177338048815727, 0.0068326047621667385, -0.020125126466155052, -0.00036966806510463357, 0.009814104996621609, -0.006670416332781315, -0.003975333645939827, 0.024652589112520218, 0.005262485705316067, -0.011829378083348274, 0.010752725414931774, -0.010890757665038109, -0.007840241305530071, 0.00853730458766222, -0.021588269621133804, 0.00301255751401186, -0.006546187214553356, -0.02179531939327717, -0.02397623099386692, -0.00817842036485672, 0.0032799954060465097, 0.012236573733389378, -0.004503307398408651, -0.0031902743503451347, 0.012277983129024506, -0.01577710546553135, 0.019849061965942383, -0.0027968818321824074, -0.008661533705890179, 0.006811899598687887, 0.01993188075721264, 0.01577710546553135, -0.015611466020345688, 0.03453570976853371, -0.0015459631104022264, 0.002208518562838435, 0.002020449610427022, 0.027454648166894913, -0.001853085239417851, -0.0200975202023983, -0.00047578048543073237, -0.002805508906021714, 0.022789152339100838, 0.012747293338179588, -0.01541822124272585, -0.003878711024299264, 0.015694286674261093, 0.010276513174176216, -0.012416016310453415, -0.014948911033570766, -0.03130575269460678, 0.002453526249155402, -0.020718665793538094, -0.004044349770992994, 0.00984171126037836, 0.012505737133324146, 0.004596479702740908, 0.007598684635013342, 0.01824788562953472, -0.012761097401380539, -0.0018720646621659398, -0.019186506047844887, -0.022195613011717796, 0.01213304977864027, 0.008516600355505943, 0.03169224411249161, 0.012567851692438126, 0.022637316957116127, 0.012064033187925816, -0.014879894442856312, -0.008454485796391964, 0.012126147747039795, -0.013796339742839336, 0.0035111994948238134, -0.015390614047646523, -0.007722913753241301, -0.005573058966547251, -0.0025984602980315685, 0.017474904656410217, 0.018413525074720383, 0.0021722852252423763, 0.008413075469434261, 0.01120823249220848, 0.003183372551575303, 0.007322619669139385, 0.0005391891463659704, 0.004945011343806982, -0.001372559810988605, 0.00531079713255167, -0.011636132374405861, 0.007909257896244526, 0.005842221900820732, -0.006967186462134123, 0.005010576918721199, -0.000929130706936121, 0.019780045375227928, 0.019338341429829597, -0.009814104996621609, 0.014879894442856312, 0.017033200711011887, -0.023644952103495598, -0.007716012187302113, -0.006970637012273073, 0.002377608325332403, -0.011870787478983402, -0.004662044811993837, -0.01922791637480259, 0.0030246353708207607, 0.011815574951469898, -0.010994281619787216, 0.0179580170661211, 0.00853730458766222, -0.02139502391219139, -0.0069602844305336475, 0.0027675500605255365, 0.019200310111045837, 0.002933188807219267, 0.014231142587959766, -0.026184748858213425, -0.002394862473011017, 0.0018720646621659398, -0.0011853533796966076, -0.014113814570009708, -0.007446848787367344, -0.013727324083447456, -0.02336888760328293, -0.01562527008354664, -0.010297218337655067, 0.013016456738114357, -0.01936594769358635, 0.025729242712259293, -0.008723649196326733, 0.0016098030610010028, -0.0006082053296267986, 0.002482858020812273, 0.0036129984073340893, -0.008813370019197464, 0.016757136210799217, 0.028683137148618698, -0.0006629869458265603, -0.00326619204133749, 0.0004322140011936426, -0.012333196587860584, -0.007943765260279179, -0.020911911502480507, 0.004596479702740908, -0.01377563551068306, -0.0036958178970962763, -0.007295013405382633, 0.0015727068530395627, 0.00584912346675992, 0.015666678547859192, 0.005348755978047848, 0.020000897347927094, 0.0013794614933431149, -0.006625555921345949, 0.007722913753241301, -0.0027589229866862297, 0.024362722411751747, -0.004703454673290253, 0.02067725546658039, -0.009613958187401295, -0.0017219544388353825, 0.02093951776623726, 0.007239800412207842, 0.005873279180377722, 0.02167109027504921, 0.009289581328630447, -0.0028676234651356936, 0.015197369270026684, 0.0005728345131501555, 0.0033662656787782907, 0.0012224495876580477, 0.023741574957966805, 0.002834840677678585, -0.0014260474126785994, -0.003022909862920642, 0.005579960532486439, 0.007888552732765675, -0.004672397393733263, -0.00026765349321067333, -0.020069913938641548, 0.007129374425858259, -0.0387595035135746, -0.008371666073799133, -0.0036854655481874943, 0.030532769858837128, 0.0012595457956194878, -0.004986421205103397, 0.01777857542037964, 0.002229223493486643, 0.002824488328769803, -0.004189284052699804, 0.010780331678688526, -0.013582389801740646, -0.017985623329877853, -0.032492831349372864, -0.005887082777917385, 0.017474904656410217, -0.0010361057939007878, 0.03657859191298485, 0.004454996436834335, -0.0028486440423876047, -0.014030994847416878, -0.010566381737589836, -0.017902804538607597, -0.001941080903634429, 0.003109180135652423, -0.002384509891271591, 0.02138122171163559, 0.000974853930529207, -0.018579162657260895, -0.012961244210600853, 0.007577979471534491, -0.013527177274227142, 0.0017021122621372342, 0.024914851412177086, 0.02169869653880596, 0.00405470235273242, 0.006729080341756344, -0.024459343403577805, -0.0064357612282037735, 0.01707460917532444, 0.002993578091263771, -0.010041858069598675, -0.013382242992520332, 0.0059768036007881165, -0.00012228809646330774, 1.8305470803170465e-05, -0.0031540407799184322, -0.003259290475398302, 0.00810940470546484, 0.013527177274227142, 0.0058905333280563354, -0.018344508484005928, -0.014838485047221184, -0.016619103029370308, -0.0028538203332573175, -0.015183566138148308, 0.02454216405749321, -0.025315145030617714, 0.0075227669440209866, -0.02394862473011017, -0.003424929454922676, -0.00912394281476736, 0.004820782225579023, -0.00527973985299468, 0.005062338896095753, 0.012277983129024506, 0.016398251056671143, 0.030311917886137962, 0.029318084940314293, 0.02109135314822197, -0.034673742949962616, -0.0001220724225277081, -0.020442601293325424, 0.01291293278336525, -0.0034870440140366554, 0.011201330460608006, 0.01748870685696602, -0.0015813339268788695, 0.006553088780492544, 0.0004951913142576814, 0.001225037733092904, 0.0031040040776133537, 0.00746065191924572, -0.003076397581025958, -0.01577710546553135, -0.012664474546909332, -0.01413451973348856, 0.01120823249220848, -0.02423849329352379, -0.008696042001247406, 0.030781228095293045, 0.007646996062248945, -0.01020059548318386, -0.0029590700287371874, 0.010711315087974072, 0.011456690728664398, 0.00810940470546484, -0.015086943283677101, 0.006763588637113571, -0.017971821129322052, 0.0020135478116571903, 0.008716747164726257, -0.03218916058540344, 0.005324600264430046, 0.01011087466031313, -0.0012906030751764774, -0.016011759638786316, 0.012878424488008022, -0.022333644330501556, 0.0329621396958828, 0.03550193831324577, 0.019448768347501755, -0.0006660064100287855, 0.0009161901543848217, -0.01606697402894497, 0.016839955002069473, 0.0009368950268253684, -0.003930473234504461, 0.00566623080521822, -0.0015442377189174294, -0.00584912346675992, -0.016577692702412605, -0.0316094234585762, -0.029649363830685616, -0.007043104153126478, 0.00617349985986948, 0.016591496765613556, -0.008426878601312637, -0.028627922758460045, 0.015997957438230515, -0.007619389332830906, 0.01621880941092968, -0.0019859413150697947, -0.000354570773197338, 0.002053232165053487, -0.004327316302806139, -0.002205067779868841, 0.002712337067350745, -0.010248906910419464, -0.0059768036007881165, 0.01327181700617075, -0.006366745103150606, 0.0058974348939955235, 0.02854510396718979, -0.019876668229699135, -0.0030349877197295427, 0.0037613834720104933, 0.008716747164726257, 0.01892424374818802, 0.014879894442856312, 0.0002887896844185889, 0.005290092434734106, 0.012685178779065609, 0.03174745664000511, 0.00566623080521822, 0.0016417230945080519, -0.003543982282280922, -0.008903090842068195, -0.001861712196841836, 0.001279387972317636, -0.015873728320002556, 0.005566157400608063, 0.0015425122110173106, 0.013195899315178394, 0.0036958178970962763, 0.018634377047419548, 0.00939310621470213, 0.013402947224676609, -0.014396781101822853, 0.00671182619407773, -0.0008036074577830732, 0.004893249366432428, 0.006453015375882387, -0.010338627733290195, 0.019711028784513474, 0.003619900206103921, -0.0172402486205101, 0.01184318121522665, -0.008137010969221592, -0.013306325301527977, 0.0024345468264073133, -0.004945011343806982, 0.0008523501455783844, -0.023907214403152466, 0.023741574957966805, -0.0059699020348489285, 0.002129150088876486, 0.014838485047221184, 0.0038545553106814623, -0.010000448673963547, 0.002550148870795965, -0.0038476535119116306, 0.013437455520033836, 0.004689651541411877, -0.00855110865086317, 0.014948911033570766, -0.00015431593055836856, 0.0029918525833636522, 0.00213260087184608, -3.0733779567526653e-05, 0.0030815736390650272, 0.012926735915243626, -0.003179921768605709, -0.004289357457309961, 0.008199125528335571, -0.0001182980922749266, -0.011767263524234295, -0.0032178806141018867, 0.0002174010587623343, -0.014783271588385105, 0.0038303995970636606, -0.0021533058024942875, 0.012747293338179588, 0.031775061041116714, -0.017612935975193977, 0.009648465551435947, 0.0003025929327122867, 0.00566968135535717, -0.0018944948678836226, -0.00832335464656353, 0.019117489457130432, 0.006915424019098282, -0.002572579076513648, 0.0073571279644966125, 0.010870052501559258, 0.0037441293243318796, 0.008074896410107613, 0.011932902038097382, 0.012975047342479229, 0.00013846377260051668, -0.010103972628712654, -0.001960060326382518, 0.01608077622950077, 0.005507493391633034, 0.011995016597211361, 0.025577407330274582, 0.010718217119574547, 0.015266384929418564, -0.0017305813962593675, -0.0015865101013332605, 0.004451545421034098, 0.0061424425803124905, 0.008130108937621117, -8.098621037788689e-05, -0.008916893973946571, -0.006211458705365658, 0.00402364507317543, -0.017681952565908432, -0.016467267647385597, 0.009158451110124588, -0.0021481295116245747, -0.001687446259893477, -0.00778502831235528, 0.015749499201774597, 0.0061631472781300545, -0.0032058029901236296, -0.006597949657589197, 0.01563907228410244, 0.01062159426510334, 0.019752439111471176, -0.011594722978770733, 0.008716747164726257, 0.0012906030751764774, -0.0007238074904307723, -0.009952137246727943, -0.02468019537627697, 0.0012138225138187408, 0.007653897628188133, 0.008337157778441906, 0.009234368801116943, 0.006490974221378565, -0.009289581328630447, 0.032824110239744186, -0.030505163595080376, -0.01457622367888689, -0.004634438548237085, -0.012761097401380539, 0.014148322865366936, 0.012008820660412312, -0.0059975082986056805, -0.019186506047844887, 0.0028866028878837824, -0.0008074896177276969, -0.0071707842871546745, 0.026308977976441383, -0.010676807723939419, 0.0004328610375523567, -0.0036060968413949013, 0.0017978722462430596, 0.010524971410632133, -0.009524236433207989, -0.0006500463932752609, 0.004579225555062294, 0.017599133774638176, -0.02209899015724659, 0.0024379976093769073, 0.025632619857788086, -0.010697511956095695, -0.03257565200328827, 0.002581206150352955, 0.0236863624304533, 0.005183117464184761, -0.004755216650664806, 0.018454933539032936, -0.014672845602035522, 0.018165066838264465, -0.03169224411249161, -0.01979384943842888, -0.00039425509748980403, 0.023907214403152466, -0.014590026810765266, -0.010359332896769047, 0.0279791709035635, -0.011636132374405861, 0.0029573445208370686, 0.02251308783888817, 0.00042250860133208334, -0.002570853801444173, 0.02026315964758396, -0.004330766852945089, 0.0236725602298975, -0.00038174589280970395, 0.016287826001644135, 0.009469023905694485, 0.004078858066350222, -0.00853040348738432, -0.030394738540053368, -0.008840976282954216, -0.009317188523709774, 0.003271368332207203, -0.008992811664938927, 0.002810685196891427, -0.007419242523610592, 0.0011775890598073602, 0.0005327188409864902, 0.003543982282280922, 0.009192959405481815, 0.003262741258367896, -0.009158451110124588, 0.0005637761787511408, -0.0017581878928467631, -0.016384446993470192, -0.009883120656013489, -0.01678474247455597, 0.01011087466031313, -0.009082533419132233, 0.017916608601808548, -0.013168292120099068, 0.027012944221496582, -0.0023361986968666315, -0.006794645916670561, 0.00840617436915636, 0.007598684635013342, 0.006649711634963751, -0.009020418860018253, -0.013803241774439812, 0.0073640295304358006, 0.008930697105824947, -0.0012612711871042848, -0.01997329108417034, 0.017626740038394928, -0.031664635986089706, -0.00024285078688990325, -0.007398537360131741, -0.019614405930042267, 0.015031729824841022, -0.00220679328776896, -0.007557274773716927, 0.0036889163311570883, -0.024307508021593094, 0.01579090766608715, 0.006425409112125635, 0.00124574254732579, 0.004986421205103397, 0.005014027468860149, 0.020152732729911804, -0.013582389801740646, -0.009110139682888985, 0.00728120980784297, 0.009600155055522919, 0.04245877265930176, 0.004962265491485596, 0.009455220773816109, -0.018344508484005928, 0.0082405349239707, -0.024569770321249962, -0.0038303995970636606, 0.003619900206103921, -0.0037544816732406616, -0.004282455891370773, -0.0069982437416911125, -0.007439947221428156, 0.019780045375227928, 0.010752725414931774, -0.001941080903634429, -0.008378568105399609, 0.00778502831235528, -0.0028727997560054064, 0.00975199043750763, 0.008585616014897823, 0.0034180276561528444, 0.0064288596622645855, -0.02394862473011017, 0.0008730550180189312, 0.003806243883445859, 0.01808224618434906, 0.0013967155246064067, 0.005493690259754658, -0.0016141165979206562, 0.008295748382806778, 0.013499570079147816, -0.002719238633289933, -0.03459092229604721, 0.016425857320427895, -0.009061828255653381, 0.012968145310878754, -0.003619900206103921, 0.00888928771018982, 0.0021481295116245747, -0.009890022687613964, 0.005735246930271387, -0.007515864912420511, -0.004613733384758234, 0.006183852441608906, -0.010987380519509315, -0.023493116721510887, -0.006176950875669718, -0.001777167315594852, -0.001230213907547295, 0.0007928236736916006, 0.014058602042496204, -0.016757136210799217, -0.026032913476228714, -0.013161391019821167, -0.0017944214632734656, 0.001636546803638339, 0.015086943283677101, -0.012685178779065609, -0.002741668839007616, -0.017309265211224556, -0.006311532109975815, 0.0010421447223052382, 0.01270588394254446, 0.0018134008860215545, -0.013320128433406353, 0.0033973229583352804, -0.00903422199189663, -0.0002506151213310659, 0.0013604819541797042, -0.007308816537261009, 0.018192673102021217, -0.018703391775488853, 0.00456197140738368, -0.020553026348352432, -0.01306476816534996, -0.015901334583759308, -0.047345120459795, 0.007936864160001278, -0.001073202001862228, -0.0037682850379496813, -0.01980765163898468, -0.022361252456903458, 0.020276961848139763, -0.003619900206103921, -0.016881365329027176, -0.002757197478786111, -0.008730550296604633, -0.0009946960490196943, 0.01563907228410244, -0.00146228086668998, 0.003091926220804453, -0.015073140151798725, -0.02984260767698288, 0.022471677511930466, 0.0034335562959313393, -0.007764323614537716, -0.018772408366203308, -0.004292808007448912, 0.0011154745006933808, -0.0018927694763988256, 0.005210723727941513, 0.00670837564393878, -0.010380038060247898, 0.013561684638261795, -0.027358025312423706, -0.022361252456903458, -0.0070327515713870525, -0.008488994091749191, -0.005918140057474375, 0.018054639920592308, -0.02281675860285759, 0.0010326550109311938, -0.009379303082823753, 0.027523664757609367, -0.0061355410143733025, 0.010373136028647423, 0.00910323765128851, 0.007646996062248945, -0.011373871006071568, 0.004009841941297054, -0.01924171857535839, -0.00012767998850904405, 0.031388573348522186, 0.007433045655488968, -0.018772408366203308, -0.0063356878235936165, 0.006190754007548094, 0.016122186556458473, -0.0186757855117321, -0.0026692019309848547, 0.002310317475348711, -0.006080328021198511, 0.006818801164627075, 0.010172989219427109, -0.002270633354783058, -0.01133246161043644, 0.01082864310592413, 0.0010309296194463968, 0.0069188750348985195, -0.023852001875638962, -0.02825523540377617, 0.019034670665860176, 0.009358597919344902, 0.015583859756588936, 0.011622329242527485, -0.0005745599628426135, -0.0007772950339131057, 0.01291293278336525, -0.0019911176059395075, 0.0024000387638807297, -0.00319199962541461, -0.014879894442856312, -0.012816309928894043, 0.005193469580262899, -0.008592518046498299, 0.032216764986515045, -0.0035163757856935263, 0.012029524892568588, -0.01678474247455597, 0.019034670665860176, -0.002815861254930496, -5.8717694628285244e-05, 0.0035957444924861193, 0.004627536982297897, -0.0006440075230784714, -0.01536300778388977, 0.0036647606175392866, 0.011532608419656754, -0.012443622574210167, -0.0005900886026211083, -0.008937599137425423, -0.008012781850993633, -0.018910441547632217, 0.008847878314554691, -0.001281113363802433, -0.00390976807102561, -0.002196440938860178, -0.00635294197127223, -0.02901441417634487, -0.0008398409700021148, 0.008206027559936047, 0.012395311146974564, 0.02998064085841179, -0.03210633993148804, -0.026764485985040665, 0.010076366364955902, -0.015045533888041973, 0.007626290898770094, -0.01335463672876358, -0.005631722509860992, 0.0035577856469899416, 0.010207497514784336, -0.020635847002267838, -0.005203822162002325, -0.00910323765128851, 0.014534813351929188, 0.014244945719838142, -0.01097357738763094, -0.024514557793736458, 0.005014027468860149, 0.017916608601808548, -0.00154337496496737, -0.01285081822425127, 0.004824232775717974], "facc74ad-88ab-4424-8c73-5238bb1dbad7": [-0.014433628879487514, -0.010063369758427143, -0.019157109782099724, 0.012688295915722847, -0.04213733226060867, -0.013983444310724735, -0.005589222069829702, 0.015763407573103905, 0.021511925384402275, 0.018132073804736137, 0.0007060115458443761, 0.02343733236193657, 0.007957888767123222, -0.02532118372619152, 0.008969074115157127, 0.0040447404608130455, -0.00938462931662798, -0.004335629288107157, 0.0219274815171957, -0.009031407535076141, 0.09856977313756943, 0.014170443639159203, -0.024490073323249817, 0.005544203333556652, 0.01662222109735012, -0.03739999979734421, -0.02424073964357376, 0.0062194811180233955, -0.044963110238313675, -0.011469333432614803, 0.0031166665721684694, 0.014863036572933197, -0.003826573956757784, 0.026290813460946083, -0.00784014817327261, -0.010305777192115784, -0.008885962888598442, 0.02127644419670105, -0.016663776710629463, -0.032718073576688766, -0.012148073874413967, 0.021525777876377106, -0.010755962692201138, -0.006091351620852947, -0.044492147862911224, -0.009045259095728397, 0.00403435155749321, -0.006998647935688496, -0.00033655669540166855, -0.0006635902682319283, 0.007216814439743757, 0.018201332539319992, -0.018215185031294823, 0.0076392958872020245, 0.037954073399305344, -0.018201332539319992, -0.015569481067359447, 0.06881599873304367, -0.000987810199148953, -0.01709318533539772, -0.0019946666434407234, 0.02967066504061222, -0.00769470352679491, -0.036264147609472275, 0.019364887848496437, -0.03061259165406227, 0.01724555529654026, 0.007985591888427734, -0.030861925333738327, -0.012923777103424072, -0.02701110951602459, 0.021207183599472046, -0.042802222073078156, -0.0004908749833703041, 0.017674962058663368, -0.02875644341111183, 0.04150014743208885, -0.00349412951618433, 0.020417628809809685, 0.010229592211544514, -0.007417666260153055, 0.023395776748657227, 0.02576444298028946, 0.0039027591701596975, 0.0028188517317175865, 0.03343836963176727, 0.0086989626288414, -0.0161651112139225, 0.004778888542205095, -0.03257955610752106, 0.017300961539149284, 0.013429369777441025, -0.012965332716703415, -0.00962703675031662, -0.0026508979499340057, 0.019143259152770042, -0.013498629443347454, 0.0007722406880930066, 0.03648577630519867, 0.00018667534459382296, -0.006191777531057596, -0.013228517957031727, -0.016691481694579124, -0.0018613425781950355, 0.0053952960297465324, -0.012348925694823265, 0.010063369758427143, 0.022010592743754387, -0.02746822126209736, -0.009883295744657516, 0.018076665699481964, -0.06831733137369156, -0.004591888748109341, 0.021636592224240303, -0.046209774911403656, 0.0033694629091769457, -0.0117255924269557, 0.0015678564086556435, -0.030557183548808098, -0.03839733079075813, 0.0031824628822505474, 0.023215703666210175, 0.016511406749486923, 0.014918443746864796, -0.02142881415784359, 0.004674999974668026, 0.0058177774772048, -0.016414443030953407, 0.018367554992437363, 0.008837481029331684, 0.01850607432425022, 0.003123592585325241, 0.026803333312273026, -0.009488518349826336, 0.02217681333422661, 0.029282813891768456, 0.019212517887353897, 0.03011392429471016, -0.010887554846704006, 0.02189977653324604, -0.044658370316028595, -0.0487862192094326, -0.03884059190750122, 0.022329185158014297, -0.0023513517808169127, -0.005807388573884964, -0.023091036826372147, 0.024019110947847366, -0.024808665737509727, 0.03202547878026962, -0.04440903663635254, 0.015500221401453018, -0.0176888145506382, 0.014211999252438545, 0.00815874058753252, 0.02640162967145443, -0.06288740783929825, 0.008207221515476704, 0.03149911016225815, 0.07607436925172806, 0.010340407490730286, -0.032718073576688766, -0.03180385008454323, 0.03712296113371849, 0.05515807121992111, 0.02376977726817131, 0.04626518487930298, 0.010104925371706486, 0.016040444374084473, -0.003625722136348486, 0.010541259311139584, -0.00015929629444144666, 0.025196516886353493, 0.014281258918344975, 0.03498977795243263, -0.027232740074396133, 0.03778785094618797, 0.001677805557847023, 0.05718044191598892, -0.0219274815171957, -0.010859851725399494, -0.006752777379006147, -0.012210407294332981, -0.024462370201945305, -0.007604666519910097, 0.020002072677016258, -0.02404681406915188, 0.024032961577177048, -0.009412333369255066, -0.00907296221703291, -0.028146961703896523, 0.00838037021458149, 0.0009055648115463555, 0.02299407310783863, -0.022924814373254776, -0.041694071143865585, 0.010354259051382542, -0.018048962578177452, 0.0005990925710648298, 0.058288589119911194, 0.02731585130095482, -0.03507288917899132, -0.02777296118438244, 0.0013003424974158406, -0.009066036902368069, 0.011780999600887299, -0.04005955532193184, -0.038258813321590424, 0.011621703393757343, -0.022287629544734955, 0.024129925295710564, -0.01771651767194271, 0.027149628847837448, 0.031443703919649124, -0.04548947885632515, 0.02158118411898613, 0.004560722038149834, 0.03368770331144333, 0.004571110941469669, -0.002836166648194194, -0.020777776837348938, -0.0022595832124352455, -0.0013791249366477132, 0.002545277588069439, -0.06388473510742188, -0.0009471203666180372, -0.01336011104285717, 0.02594451792538166, -0.04535096138715744, -0.02097170241177082, 0.04335629567503929, -0.020126739516854286, 0.017661111429333687, -0.03590399771928787, 0.0015410184860229492, 0.0010129166767001152, -0.013741036877036095, 0.005488796159625053, -0.0028188517317175865, 0.004865462891757488, -0.009107592515647411, 0.05097481235861778, 0.0017314814031124115, -0.008131036534905434, -0.019032442942261696, 0.00853274017572403, 0.02529348060488701, 0.035488441586494446, 0.045434072613716125, -0.006804721895605326, -0.023811332881450653, 0.012134221382439137, 0.017203999683260918, -0.0038992962799966335, -0.017591850832104683, 0.01584651879966259, -0.0009384629083797336, -0.04252518340945244, 0.02454548142850399, 0.02250925824046135, 0.01584651879966259, 0.014461332932114601, 0.012833740562200546, 0.01784118451178074, 0.03476814553141594, -0.032856591045856476, 0.029698370024561882, -0.02421303652226925, 0.018076665699481964, 0.009183777496218681, -0.01975274085998535, -0.028922665864229202, -0.022246073931455612, 0.013997295871376991, -0.0009653008892200887, -0.016816148534417152, 0.00559268519282341, -0.017120888456702232, 0.00500744441524148, -0.007937110960483551, 0.005575370043516159, 0.014211999252438545, 0.022924814373254776, 0.011296184733510017, -0.02156733348965645, 0.0342140719294548, -0.0382034070789814, 0.019323332235217094, -0.026969553902745247, 0.00500744441524148, 0.032551851123571396, 0.004373722244054079, 0.04274681210517883, 0.011289258487522602, 0.04684695973992348, 0.02936592511832714, -0.022869406268000603, -0.03515600040555, -0.07153096050024033, 0.007445370312780142, 0.02331266552209854, 0.016996221616864204, -0.0025400833692401648, -0.032053183764219284, 0.012854518368840218, -0.011677110567688942, 0.0004181527765467763, 0.0440765917301178, -0.028811851516366005, 0.025875259190797806, -0.0030456758104264736, -0.024961035698652267, -0.04235896095633507, 0.016275925561785698, -0.01505696214735508, 0.008477333001792431, 0.00028612729511223733, -0.005308722145855427, 0.002240536967292428, -0.010977592319250107, -0.021664295345544815, -0.019835852086544037, -0.05648785084486008, 0.01972503587603569, 0.007334555499255657, -0.045267850160598755, 0.04676385223865509, 0.0018734629265964031, 0.0004408784443512559, -0.01955881342291832, -0.005765832960605621, 0.02176125906407833, -0.030861925333738327, -0.018242888152599335, -0.03496207296848297, -0.036236442625522614, -0.016248222440481186, -0.03354918584227562, -0.02856251783668995, 0.002441388787701726, 0.00644803699105978, -0.02094399929046631, 0.02202444337308407, -0.026346221566200256, 0.012909925542771816, 0.012598258443176746, -0.012674444355070591, -0.007327629253268242, -0.012404332868754864, 0.005267166532576084, 0.0009012360824272037, -0.0101672587916255, 0.020002072677016258, 0.018519924953579903, 0.05191674083471298, -0.02856251783668995, -0.007881703786551952, 0.009994111023843288, -0.0026179999113082886, -0.015791110694408417, 0.005440314766019583, -0.06632266193628311, -0.05169510841369629, -0.005720814689993858, -0.03507288917899132, 0.031609926372766495, -0.015888074412941933, -0.0200436282902956, -0.04100148007273674, 0.02576444298028946, -0.042968444526195526, 0.030945036560297012, -0.004893166478723288, -0.021373406052589417, -0.013152332976460457, -0.04382725805044174, 0.04640370234847069, -0.019794296473264694, -0.037981778383255005, 0.006970944348722696, 0.017481036484241486, -0.014135814271867275, -0.01660837046802044, 0.021691998466849327, 0.021982887759804726, 0.04150014743208885, -0.009973333217203617, 0.00923918467015028, -0.005492259282618761, 0.0018994350684806705, -0.03881288692355156, 0.01943414844572544, -0.016275925561785698, 0.012272740714251995, -0.015333999879658222, -0.036430370062589645, -0.013630221597850323, -0.026304665952920914, 0.014918443746864796, -0.011767148040235043, -0.013422444462776184, -0.00962703675031662, -0.01024344377219677, 0.01404577773064375, -0.021636592224240303, -0.025709036737680435, 0.0017245555063709617, -0.0064688147976994514, 0.047123998403549194, 0.0022301480639725924, 0.005911277607083321, -0.011753295548260212, 0.018284443765878677, 0.009876370429992676, 0.07003495842218399, 0.02593066543340683, -0.0014648332726210356, 0.04069674015045166, -0.01103992573916912, -0.00769470352679491, 0.0313882939517498, 0.050254516303539276, -0.040447406470775604, 0.03305051848292351, -0.005308722145855427, 0.02503029629588127, 0.022730888798832893, 0.0014864768600091338, -0.011351591907441616, -0.023091036826372147, 0.02112407423555851, 0.06011703610420227, -0.0075007774867117405, 0.0013999027432873845, -0.0031374443788081408, -0.023215703666210175, 0.021013258025050163, 0.05355125665664673, 0.010672851465642452, 0.007881703786551952, -0.017203999683260918, -0.005748518276959658, -0.040585923939943314, -0.015237036161124706, -0.01522318460047245, -0.011593999341130257, -0.032330222427845, -0.009377703070640564, 0.022758591920137405, 0.009599332697689533, -0.00023613078519701958, 0.016123555600643158, -0.06804029643535614, 0.010278074070811272, 0.0006484398036263883, 0.015126221813261509, 0.029919998720288277, -0.020445331931114197, 0.0002175173576688394, -0.02408836968243122, -0.041555553674697876, -0.0007345809717662632, -0.012715999968349934, 0.011026074178516865, 0.013644074089825153, -0.024476220831274986, 0.0042144255712628365, 0.027412813156843185, 0.00012953644909430295, 0.014946147799491882, -0.01943414844572544, -0.011808703653514385, 0.002311527729034424, 0.05778992548584938, 0.0050940182991325855, -0.01942029595375061, -0.03011392429471016, -0.01662222109735012, 0.0005943310097791255, -0.0063129812479019165, -0.019960517063736916, -0.01896318420767784, -0.007826295681297779, 0.02331266552209854, -0.007067907135933638, -0.010444295592606068, -0.023991405963897705, -0.012965332716703415, 0.022010592743754387, 0.011670185253024101, 0.061890073120594025, 0.025224221870303154, 0.0028881109319627285, 0.04446444287896156, -0.0193925928324461, -0.02483636885881424, 0.011372369714081287, -0.03482355549931526, -0.023021776229143143, -0.03648577630519867, 0.030169332399964333, -0.005925129633396864, -0.014973850920796394, 0.04922948032617569, -0.004796203691512346, 0.019364887848496437, -0.03318903595209122, 0.023561999201774597, -0.00830418523401022, -0.02407451719045639, -0.054133035242557526, 0.0007821967592462897, -0.033937036991119385, 0.024268442764878273, -0.0052567776292562485, 0.01360251847654581, -0.003170342417433858, 0.0031495646107941866, 0.02827162854373455, -0.005696573760360479, -0.004612666554749012, 0.0005571041256189346, 0.0031253239139914513, 0.006981333252042532, -0.03540533408522606, -0.008061777800321579, -0.0073622590862214565, -0.026457035914063454, 0.02404681406915188, -0.01365792565047741, -0.01799355447292328, 0.014336666092276573, -0.03476814553141594, 0.015043110586702824, 0.018741555511951447, 0.02875644341111183, 0.012840665876865387, -0.001482148072682321, -0.009786332957446575, 0.000838469888549298, -0.00977940671145916, 0.006385703571140766, 0.03770473971962929, -0.010575888678431511, -0.0017254212871193886, 0.04244207218289375, 0.005876647774130106, 0.012951481156051159, -0.019669629633426666, 0.03939466550946236, -0.05144577473402023, -0.00016697973478585482, -0.018048962578177452, -0.013353184796869755, 0.0028517500031739473, -0.03343836963176727, 0.009204555302858353, -0.01615125872194767, -0.012307370081543922, -0.01818748004734516, -0.014696814119815826, 0.009211481548845768, 0.0011375832837074995, 0.02296636998653412, -0.011462407186627388, -0.008525814861059189, 0.008477333001792431, 0.017356369644403458, -0.0020968241151422262, 0.020874740555882454, 0.03665199875831604, 0.01250822190195322, 0.022246073931455612, 0.012612110935151577, 0.01737022213637829, 0.024171480908989906, 0.014572147279977798, 0.009440036490559578, -0.030058518052101135, -0.010839073918759823, 0.004058592487126589, -0.017439480870962143, 0.00017596180259715766, 0.004474148154258728, 0.025653628632426262, 0.005703500006347895, -0.007757036946713924, -0.009301518090069294, 0.019780443981289864, 0.0004090624861419201, 0.005973611027002335, 0.017023924738168716, -0.005970147904008627, 0.005367592442780733, -0.0246839988976717, 0.03108355402946472, -0.0016596249770373106, -0.0007852268172428012, 0.010104925371706486, -0.01351248100399971, 0.0034837406128644943, 0.02595837041735649, 0.014572147279977798, -0.027301998808979988, -0.03648577630519867, 0.011822555214166641, 0.01940644346177578, -0.0005657615838572383, 0.004065518267452717, 0.05249851569533348, -0.011150740087032318, 0.009876370429992676, 0.03399244323372841, -0.007743184920400381, 0.033161330968141556, -0.015209333039820194, 0.00017736862355377525, 0.015417110174894333, 0.002545277588069439, 0.034851256757974625, 0.027759110555052757, -0.04141703620553017, 0.041056886315345764, -0.04753955453634262, 0.039699405431747437, 0.024767110124230385, -0.012847592122852802, 0.01117151789367199, -0.012445888482034206, -0.006309518124908209, -0.013353184796869755, -0.026484739035367966, 0.020583851262927055, -0.029449036344885826, 0.021165629848837852, -0.006323370151221752, -0.01846451871097088, 0.041694071143865585, -0.0161651112139225, -0.003520101774483919, 0.0027478609699755907, -0.0004216157249175012, 0.01785503700375557, 0.06327525526285172, -0.021345702931284904, 0.01544481422752142, -0.011822555214166641, 0.004626518581062555, 0.037178367376327515, 0.02669251710176468, -0.021636592224240303, 0.02036222070455551, -0.006371851544827223, 0.017924295738339424, 0.01893548108637333, -0.010437370277941227, -0.009564703330397606, 0.0005332962609827518, 0.017287110909819603, 0.024448517709970474, 0.028784146532416344, -0.019475702196359634, 0.00017855902842711657, -0.026124591007828712, 0.02406066656112671, 0.020154444500803947, 0.006292203441262245, 0.021982887759804726, 0.02611074037849903, 0.03554385155439377, 0.012840665876865387, -0.02296636998653412, 0.010077222250401974, -0.010686703026294708, -0.0010484120575711131, 0.0064999815076589584, -0.0013323749881237745, 0.01554177701473236, 0.008131036534905434, -0.028022294864058495, -0.0006835022941231728, -0.024961035698652267, -0.013076147995889187, -0.010700555518269539, -0.05867644399404526, -0.005558055359870195, -0.011663259007036686, 0.05457629635930061, -0.02281400002539158, 0.008034073747694492, -0.014849185012280941, 0.03692903742194176, -0.0038992962799966335, 0.01436437014490366, 0.0005332962609827518, -0.005308722145855427, 0.012535925954580307, -0.01788274012506008, 0.026844888925552368, -0.00784014817327261, -0.025667481124401093, 0.011074555106461048, 0.03449111059308052, -0.043577924370765686, 0.022010592743754387, -0.00022022279154043645, -0.031582221388816833, -0.0329119972884655, -0.005585758946835995, 0.010416592471301556, 0.019378740340471268, 0.008137962780892849, -0.0037330740597099066, 0.03584859147667885, 0.0021262592636048794, 0.037981778383255005, -0.015430962666869164, 0.011926444247364998, -0.01799355447292328, 0.0030110462103039026, 0.024462370201945305, 0.016040444374084473, -0.002541814697906375, -0.03665199875831604, -0.011538592167198658, 0.040475111454725266, -0.004124388564378023, 0.01706548035144806, -0.003830036846920848, -0.009149148128926754, 0.036402665078639984, -0.000445423589553684, -0.031028147786855698, 0.011697888374328613, -0.005152888596057892, -0.0007497314363718033, -0.0034058240707963705, 0.0009756897925399244, 0.03989333286881447, -0.035045184195041656, 0.010783666744828224, 0.019960517063736916, 0.007196036633104086, -0.012709073722362518, 0.02640162967145443, 0.01663607358932495, 0.011988777667284012, -0.007978666573762894, 0.03338296338915825, 0.007763962727040052, 0.031138962134718895, -0.03077881410717964, 0.03341066464781761, 0.03152681514620781, -0.015583332628011703, 0.015084666199982166, 0.03540533408522606, -0.028950368985533714, -0.0064757405780255795, 0.024961035698652267, -0.01615125872194767, -0.00901062972843647, -0.03011392429471016, -0.034851256757974625, 0.0013444953365251422, 0.021373406052589417, -0.0064514996483922005, 0.011254629120230675, 0.03396473824977875, -0.010825221426784992, 0.026498591527342796, 0.01628977805376053, 0.03498977795243263, 0.03313362970948219, -0.016566814854741096, -0.05499184876680374, 0.030169332399964333, 0.025653628632426262, -0.04213733226060867, -0.03806488588452339, 0.013235444203019142, -0.02124873921275139, 0.009904073551297188, -0.01343629602342844, 0.034685034304857254, -0.03908992558717728, 0.003301935037598014, 0.011441629379987717, 0.007348407059907913, -0.002863870235159993, 0.0052810185588896275, 0.007417666260153055, 0.02129029482603073, 0.012438962236046791, 0.007012499962002039, -0.009758628904819489, 0.01800740696489811, -0.01833985187113285, -0.008269554935395718, -0.0004579768283292651, 0.020597703754901886, -0.038563553243875504, 0.027274295687675476, 0.043577924370765686, -0.0004021365602966398, 0.004300999920815229, 0.007833221927285194, -0.007576962932944298, -0.02453162893652916, -0.00020139293337706476, -0.016968518495559692, -0.021207183599472046, -0.030806517228484154, 0.036264147609472275, -0.0017531249905005097, -0.01817362941801548, 0.0008337083272635937, -0.004657684825360775, 0.02669251710176468, -0.006652351468801498, -0.012002629227936268, -0.0035356851294636726, 0.014489036984741688, 0.01507081463932991, -0.023160295560956, 0.0008778611081652343, -0.0001278049749089405, 0.0014977314276620746, 0.019184814766049385, -0.032247111201286316, -0.009128370322287083, 0.0010085878893733025, -0.00764622213318944, 0.04487999901175499, -0.012965332716703415, -0.006700833328068256, -0.01597118377685547, -0.00023504860291723162, -0.02749592438340187, 0.03091733157634735, -0.033937036991119385, -0.055656738579273224, -0.01692696288228035, -0.031609926372766495, -0.002735740737989545, 0.004373722244054079, 0.0004216157249175012, -0.007673925720155239, 0.031111259013414383, 0.05139036849141121, 0.030834220349788666, 0.011988777667284012, -0.01833985187113285, 0.0010536063928157091, -0.006579629611223936, 0.002933129435405135, -0.048370666801929474, 0.011628629639744759, -0.023229554295539856, 0.026484739035367966, 0.022439999505877495, 0.008283407427370548, -0.035959407687187195, 0.01721785217523575, -0.028839554637670517, -0.015735702589154243, 0.010188036598265171, -0.005558055359870195, 0.006292203441262245, 0.036125630140304565, 0.0005861064419150352, -0.02342347986996174, 0.022412296384572983, 0.002183397999033332, -0.03462962806224823, -0.017758073285222054, -0.0015557360602542758, 0.012348925694823265, -0.057845331728458405, -0.01148318499326706, -0.0034837406128644943, 0.007937110960483551, 0.007833221927285194, 0.01218962948769331, -0.030695702880620956, -0.0007878240430727601, 0.008345740847289562, -0.009883295744657516, 0.027246592566370964, -0.004442981444299221, 0.017591850832104683, -0.0030214351136237383, -0.04238666594028473, -0.014419777318835258, 0.0036187961231917143, 0.0016310554929077625, -0.000760986062232405, -0.011102259159088135, -0.009336147457361221, -0.004255981184542179, 0.0013721990399062634, -0.03568236902356148, -0.05510266497731209, 0.013505554758012295, 0.05014370381832123, -0.036402665078639984, 0.01554177701473236, -0.004408351611346006, -0.007715481333434582, -0.007805518340319395, -0.0018665370298549533, 0.010104925371706486, 0.004952036775648594, -0.0100218141451478, 0.04083525761961937, 0.01832599937915802, 0.011240777559578419, -0.02845170348882675, -0.01406655553728342, 0.01677459292113781, 0.024905629456043243, 0.02624925784766674, 0.03917303681373596, 0.00547148147597909, -0.006635036785155535, -0.0011644212063401937, 0.0052879443392157555, -0.015098517760634422, -0.0012380091939121485, -0.012986110523343086, -0.024919480085372925, -0.008685111068189144, -0.013076147995889187, 0.02404681406915188, -0.010271147824823856, 0.02285555563867092, 0.007604666519910097, -0.01063129585236311, -0.0015185092343017459, -0.028811851516366005, -0.025044146925210953, -0.013076147995889187, 0.002207638928666711, -0.009142221882939339, -0.0012440694263204932, -0.012958407402038574, -0.0382034070789814, 0.032690368592739105, -0.028479406610131264, 0.020625406876206398, -0.00862277764827013, 0.044325925409793854, -0.0357377752661705, -0.014655258506536484, 0.00012142013292759657, 0.023561999201774597, 0.006029018200933933, -0.00752848107367754, -0.005284481216222048, 0.005599610973149538, 0.019046295434236526, -0.028022294864058495, 0.012411259114742279, 0.0023894442711025476, -0.007168333046138287, 0.0319700725376606, -0.04003185033798218, -0.0077016293071210384, 0.003895833157002926, -0.00382311106659472, -0.009530073963105679, -0.009994111023843288, -0.028340887278318405, 0.018741555511951447, 0.005786610767245293, -0.026207702234387398, -0.0006722476682625711, -0.006742388475686312, 0.0029106203000992537, 0.011129962280392647, 0.0026889906730502844, -0.007009036839008331, -0.03310592472553253, -0.029005777090787888, -0.013159259222447872, 0.03584859147667885, -0.024670148268342018, 0.025127258151769638, -0.04415970295667648, 0.017785776406526566, 0.01831214688718319, -0.04241436719894409, 0.00037551502464339137, 0.004605740774422884, 0.004086296074092388, -0.009530073963105679, -0.008816703222692013, -0.023575851693749428, -0.01987740769982338, -0.02343733236193657, -0.012549777515232563, -0.0020189073402434587, -0.010665925219655037, 0.03618103638291359, -0.003791944356635213, -0.02407451719045639, 0.012535925954580307, -0.0008341411594301462, -0.023395776748657227, 0.015347851440310478, -0.04022577777504921, -0.015957333147525787, 0.010728258639574051, 0.02187207341194153, -0.0024309998843818903, 0.007715481333434582, 0.030363257974386215, -0.006711222231388092, -0.019198665395379066, 0.01942029595375061, -0.027301998808979988, 0.0040759071707725525, 0.02171970345079899, 0.0011419119546189904, -0.025390444323420525, 0.005523425526916981, -0.009183777496218681, 0.002332305535674095, 0.04302385076880455, -0.013318555429577827, -0.015652591362595558, -0.008539666421711445, 0.005793537013232708, 0.0023617406841367483, 0.010575888678431511, -0.020902443677186966, -0.0020015924237668514, -0.06321985274553299, -0.023797480389475822, -0.010042591951787472, 0.022495407611131668, 0.011940295808017254, 0.005606536753475666, 0.007327629253268242, 0.026498591527342796, -0.021705850958824158, 0.04579422250390053, -0.01142777781933546, -0.005582296289503574, 0.017439480870962143, 0.016206666827201843, -0.01721785217523575, 0.015306295827031136, -0.016663776710629463, 0.01989125832915306, 0.01435051765292883, -0.007147555239498615, -0.018215185031294823, 0.03396473824977875, -0.011815628968179226, 0.005066314712166786, -0.017785776406526566, 0.014558295719325542, -0.026124591007828712, 0.006233333144336939, 0.0023911758325994015, -0.03554385155439377, 0.009349999949336052, 0.015403258614242077, -0.0026941851247102022, 0.009440036490559578, 0.02142881415784359, -0.00932922214269638, -0.0026093425694853067, 0.0012362777488306165, 0.023963702842593193, -0.005796999670565128, 0.0036361110396683216, 0.024600887671113014, -0.01096374075859785, -0.02440696209669113, -0.030252443626523018, -0.020583851262927055, -0.003598018316552043, -0.0176888145506382, 0.01101914793252945, 0.004827370401471853, 0.0036464999429881573, -0.003881981363520026, -0.019628074020147324, -0.014024999924004078, -0.014004222117364407, 0.020860888063907623, 0.014849185012280941, -0.004958963021636009, 0.016178961843252182, -0.005104407202452421, 0.027745258063077927, 0.010160333476960659, -0.0039131478406488895, 0.004255981184542179, -0.0009687638375908136, 0.029088888317346573, -0.0033140555024147034, -0.0013375694397836924, 0.024794813245534897, -0.0011765416711568832, -0.006191777531057596, -0.011067628860473633, 0.015375555492937565, 0.01676074042916298, 0.006465351674705744, -0.009585481137037277, 0.018395258113741875, 0.00013916782336309552, 0.004183259326964617, -0.01429511047899723, -0.004827370401471853, -0.015874221920967102, 0.0189216285943985, 0.016691481694579124, 0.0023530833423137665, -0.0072929998859763145, -0.011400073766708374, -0.027717554941773415, 0.006901685148477554, 0.003729610936716199, -0.00017412210581824183, 0.008186444640159607, 0.025750592350959778, 0.016816148534417152, -0.00469231465831399, 0.028327036648988724, 0.009924851357936859, -0.014253554865717888, 0.017300961539149284, 0.009834814816713333, 0.010471999645233154, -0.008096407167613506, 0.012009555473923683, -0.031914666295051575, -0.01660837046802044, 0.006690444424748421, -0.018699999898672104, 0.004841221962124109, -0.03745540603995323, -0.03185926005244255, 0.006666203495115042, 0.01878311112523079, -0.027440518140792847, 0.009599332697689533, -0.00784014817327261, 0.020071333274245262, -0.02223222143948078, -0.029892295598983765, -0.013768739998340607, 0.003972018603235483, -0.00019425057689659297, 0.02720503695309162, 0.024019110947847366, -0.04127851873636246, -0.005641166586428881, -0.0171070359647274, 0.0009142222115769982, -0.001154898083768785, -0.0025591296143829823, 0.02159503661096096, -0.023728221654891968, 0.011670185253024101, -0.018990889191627502, 0.006832425482571125, -0.007521555293351412, 0.01150396279990673, 0.02870103530585766, -0.023243406787514687, 0.012224258854985237, -0.00923225935548544, 0.008144889026880264, -0.0086989626288414, 0.0025522036012262106, -0.011233851313591003, -0.013934962451457977, -0.0026630184147506952, 0.0052325366996228695, -0.03133288770914078, 0.0005311319255270064, -0.0052325366996228695, -0.015181628987193108, 0.016262073069810867, 0.043716441839933395, 0.0087890001013875, 0.006939777638763189, 0.0008960416307672858, -0.023714369162917137, 0.009343073703348637, -0.016372889280319214, 0.0049866666086018085, -0.018090518191456795, 0.019503407180309296, -0.006932851858437061, -0.009647814556956291, 0.005090555176138878, -0.007666999939829111, -0.012051111087203026, -0.021317999809980392, -0.017674962058663368, -0.012438962236046791, -0.010174185037612915, 0.020223703235387802, -0.023492740467190742, -0.0176888145506382, -0.0013661388074979186, -0.013297777622938156, -0.021470369771122932, -0.02842399850487709, 0.03665199875831604, 0.019129406660795212, 0.009730925783514977, -0.012148073874413967, 0.009883295744657516, 0.031194370239973068, 0.0076392958872020245, -0.0008103332947939634, -4.442331919563003e-05, -0.006610796321183443, 0.019849702715873718, -0.002900231396779418, 0.015652591362595558, -0.006725073792040348, -0.015181628987193108, -0.01522318460047245, 0.01217577699571848, -0.002701111137866974, 0.04191570356488228, 0.03091733157634735, -0.0006358865648508072, -0.019614221528172493, -0.014779925346374512, -0.00447068503126502, 0.021054813638329506, 0.00815874058753252, -0.00877514760941267, -0.004702703561633825, -0.014308962970972061, 0.007805518340319395, 0.013263147324323654, -0.00854659266769886, 0.016372889280319214, 0.007015962619334459, 0.014184296131134033, 0.0011020879028365016, -0.005796999670565128, -0.005720814689993858, 0.00916299968957901, -0.0033729257993400097, 0.027689851820468903, -0.004567647818475962, 0.046209774911403656, -0.007777814753353596, 0.002931398106738925, -0.014863036572933197, -0.020473036915063858, 0.004733870271593332, -0.007743184920400381, -0.052415404468774796, -0.014405925758183002, 0.011628629639744759, -0.0010354259284213185, 0.007009036839008331, 0.0003359073889441788, -0.027398962527513504, -0.008075629360973835, 0.004242129623889923, 0.02652629464864731, -0.005229074042290449, 0.008331888355314732, -0.0012968796072527766, -0.02191362902522087, -0.017799628898501396, -0.0029192776419222355, -0.0037157591432332993, 0.03313362970948219, 0.010575888678431511, -0.05346814543008804, -0.00036252892459742725, -0.026831036433577538, 0.018852369859814644, 0.013692555017769337, -0.022453851997852325, -0.0156941469758749, 0.02425459213554859, 0.004332166630774736, 0.004945110995322466, 0.0024604350328445435, -0.013962666504085064, 0.012154999189078808, -0.01265366654843092, 0.01367870345711708, 0.010776740498840809, 0.009543925523757935, -0.0019340647850185633, 0.032856591045856476, -0.0145167401060462, -0.0016639536479488015, -0.0021037498954683542, 0.004003184847533703, -0.003791944356635213, 0.0013635415816679597, 0.006738925818353891, -0.020860888063907623, -0.022592369467020035, 0.026831036433577538, -0.009467740543186665, -0.007105999626219273, 0.00862277764827013, -0.006967481225728989, 0.02688644267618656, -0.015361703000962734, 0.014004222117364407, -0.013526332564651966, 0.0032205553725361824, 0.0035737776197493076, -0.003426601644605398, 0.006094814743846655, -0.01876925863325596, 0.033299852162599564, -0.022564666345715523, 0.02083318494260311, 0.009841740131378174, 0.013505554758012295, 0.005869721993803978, 0.023243406787514687, -0.01568029634654522, 5.822106322739273e-05, 0.006984795909374952, -0.009045259095728397, -0.00041771988617256284, 0.015721851959824562, -0.01756414771080017, -0.013713332824409008, -0.001513314782641828, 0.013076147995889187, -0.0001770439703250304, 0.0005588356289081275, 1.2323277587711345e-05, 0.016068147495388985, 0.01483533252030611, 0.007216814439743757, -0.004221351817250252, -0.033022813498973846, -0.00017217418644577265, 0.011109184473752975, -0.01243203692138195, 0.014959999360144138, 0.01544481422752142, -0.017965851351618767, -0.033937036991119385, -0.019184814766049385, -0.019295629113912582, 0.023091036826372147, -0.0009713610634207726, -0.04812133312225342, -0.021705850958824158, -0.005035148002207279, -0.008324963040649891, 0.029116591438651085, -0.013159259222447872, -0.016359036788344383, 0.04515703395009041, -0.0014007685240358114, -0.010714407078921795, 0.006489592604339123, -0.019129406660795212, -0.0038508146535605192, 0.00608788849785924, -0.020140592008829117, 0.0006813379586674273, -0.0005861064419150352, 0.026457035914063454, 0.0007436712621711195, 0.004082833416759968, 0.008629703894257545, 0.0025504720397293568, 0.0017410045256838202, 0.02656785026192665, 0.0024188796523958445, 0.008754369802772999, -0.00931536965072155, 0.015306295827031136, 0.007964815013110638, -0.005661944393068552, 0.025722887367010117, 0.0263877771794796, 0.011448555625975132, 0.02217681333422661, -0.03244103491306305, -0.03515600040555, -0.018575333058834076, -0.019184814766049385, 0.004913944285362959, 0.007715481333434582, -0.019060147926211357, 0.008034073747694492, 0.02811925858259201, -0.03476814553141594, 0.017605703324079514, -0.013948814012110233, 0.0011713472194969654, 0.013332406990230083, 0.004591888748109341, -0.004210962913930416, -0.01831214688718319, 0.0063683888874948025, -0.012667518109083176, 0.011240777559578419, 0.006389166694134474, 0.005689647980034351, 0.005530351772904396, 0.015264740213751793, -0.00686705531552434, -0.016414443030953407, -0.007583888713270426, -0.004010111093521118, 0.005159814842045307, -0.008719740435481071, 0.0029937312938272953, 0.004609203431755304, 0.0016743425512686372, 0.003158222185447812, -0.009620110504329205, 0.020556148141622543, -0.009744777344167233, 0.017605703324079514, -0.03665199875831604, 0.003490666626021266, -0.042165037244558334, -0.0052567776292562485, 0.009156073443591595, 0.006960555445402861, -0.0037053702399134636, 0.016525259241461754, -0.003978944383561611, 0.011684036813676357, 0.016996221616864204, 0.018215185031294823, -0.005932055413722992, -0.03136059269309044, 0.01126848068088293, 0.025376591831445694, -0.006264499854296446, -0.00322401849552989, -0.021691998466849327, -0.009426184929907322, 0.015181628987193108, 0.01955881342291832, 0.012106518261134624, -0.03246873989701271, -0.035017479211091995, -0.008899814449250698, 0.009453888982534409, -0.01024344377219677, -0.0025522036012262106, 0.023506591096520424, -0.009578554891049862, 0.012889147736132145, 0.0024916017428040504, -0.006641962565481663, 0.020140592008829117, -0.00021762556571047753, 0.013934962451457977, 0.006725073792040348, 0.019281776621937752, -0.013013814575970173, -0.006590018514543772, -0.014447481371462345, -0.008989851921796799, -0.021456517279148102, 0.009897148236632347, -0.005506110843271017, 0.0008029745076783001, -0.01815977692604065, 0.01814592443406582, 0.0028171201702207327, 0.018132073804736137, 0.019503407180309296, 0.016178961843252182, 0.03075111098587513, -0.01343629602342844, -0.02483636885881424, -0.002200712915509939, 0.0076323701068758965, -0.0039443145506083965, 0.008435777388513088, -0.0004151226603426039, -0.007112925872206688, -0.019337184727191925, 0.035017479211091995, 0.002171277767047286, 0.006967481225728989, 0.0035097128711640835, 0.016649926081299782, -0.025265777483582497, 0.01584651879966259, 0.02436540648341179, -0.028673332184553146, -0.01738407276570797, -0.0011358518386259675, -0.008685111068189144, -0.008560444228351116, -0.019808147102594376, 0.02081933245062828, -0.005229074042290449, -0.016857702285051346, -0.010998370125889778, -0.0015081203309819102, 0.006725073792040348, -0.032080888748168945, 0.0173979252576828, -0.008089480921626091, 0.013921110890805721, 0.006489592604339123, 0.018242888152599335, 0.001970425946637988, 0.014502888545393944, -0.0035807036329060793, -0.018824666738510132, 0.03864666447043419, -0.014108110219240189, 0.0029729537200182676, -0.00854659266769886, 0.0020587313920259476, 0.0031911202240735292, -0.034241776913404465, -0.012148073874413967, -0.006787407211959362, 0.023645110428333282, 0.009079888463020325, -0.004519166424870491, -0.008726666681468487, -0.021788962185382843, -0.007791666314005852, -0.00031209952430799603, -0.021498072892427444, 0.01241818442940712, 0.013069221749901772, 0.009467740543186665, -0.009613185189664364, -0.0019254073267802596, -0.004391036927700043, -0.027842221781611443, -0.01202340703457594, 0.007597740273922682, 0.0029210092034190893, 0.0038092590402811766, -0.012487444095313549, -0.01878311112523079, 0.0004423935024533421, -0.009599332697689533, -0.023631257936358452, -7.201880362117663e-05, -0.0041451663710176945, -0.003888907376676798, -0.010451221838593483, 0.00461959233507514, 0.002839629538357258, -0.006025555543601513, -0.004643833264708519, 0.01024344377219677, -0.012909925542771816, 0.007542333099991083, 0.013207740150392056, -0.004553796257823706, 0.010430444031953812, 0.0012033795937895775, 0.0011401805095374584, -0.012570555321872234, 7.456191815435886e-05, -0.003878518473356962, -0.020473036915063858, 0.007099073845893145, 0.0074315182864665985, -0.018409110605716705, 0.04720710963010788, 0.017771925777196884, 0.0017652453389018774, -0.002974685048684478, 0.00021546121570281684, -0.003525296226143837, -0.00764622213318944, 0.004481073934584856, 0.0026578239630907774, -0.008061777800321579, 0.002931398106738925, -0.022703183814883232, 4.0852140955394134e-05, -0.0006177059840410948, -0.020763926208019257, 0.010617444291710854, 0.021193332970142365, -0.01397651806473732, -0.017203999683260918, 0.010562037117779255, 0.014336666092276573, -0.020583851262927055, -0.017494888976216316, 0.019184814766049385, -0.0031166665721684694, 0.020930146798491478, 0.009647814556956291, 0.006787407211959362, 0.006389166694134474, 0.017674962058663368, -0.0003149131953250617, -0.008795925416052341, -0.01833985187113285, 0.009959480725228786, -0.0028517500031739473, 0.0064203329384326935, 0.0024188796523958445, 0.015624888241291046, 0.007009036839008331, 0.005457629449665546, 0.012002629227936268, -0.0026128054596483707, 0.008477333001792431, 0.013699481263756752, -0.016968518495559692, 0.003229212947189808, 0.0019098239718005061, -0.0037122962530702353, 0.007265296299010515, -0.00015507580246776342, -0.005582296289503574, -0.016262073069810867, -0.017785776406526566, 0.006025555543601513, 0.009003703482449055, -0.002463898155838251, -0.00027335764025337994, -0.015638740733265877, -0.0062125553376972675, 0.005391833372414112, -0.021858220919966698, -0.009197629056870937, -0.04222044348716736, -0.023700518533587456, -0.025196516886353493, -0.0031478332821279764, -0.0031114721205085516, -0.013235444203019142, 0.01631748117506504, -0.00633029593154788, -0.0025660553947091103, 0.029449036344885826, 0.014101184904575348, -0.02561207301914692, 0.0011038194643333554, 0.03402014821767807, 0.006714684888720512, 0.010908332653343678, -0.008089480921626091, 0.011621703393757343, -0.009218406863510609, 0.00474079605191946, -0.025196516886353493, -0.012667518109083176, 0.01435051765292883, -0.015140073373913765, -0.004342555534094572, 0.003471620148047805, 0.011400073766708374, -0.009904073551297188, 0.0015098517760634422, -0.021027110517024994, -0.009488518349826336, -0.006711222231388092, 0.014149665832519531, -0.01094296295195818, 0.004539944231510162, 0.004879314452409744, 0.020320666953921318, 0.0016648194286972284, -0.008601999841630459, 0.0018249814165756106, -0.003978944383561611, 0.022315332666039467, -0.00230979616753757, -0.02455933205783367, 0.010201888158917427, 0.023520443588495255, -0.025390444323420525, 0.0072237406857311726, -0.01630362868309021, -0.008830555714666843, 0.01755029521882534, -0.006929388735443354, -0.03451881557703018, 0.01646985113620758, 0.0037365369498729706, -0.018575333058834076, 0.002408490749076009, -0.007604666519910097, 0.007202962879091501, -0.013921110890805721, 0.008089480921626091, -0.017134740948677063, 0.00947466678917408, 0.005506110843271017, -0.008020222187042236, -0.008664333261549473, -0.0020154444500803947, 0.008394221775233746, 0.008539666421711445, -0.00047918749623931944, 0.026831036433577538, 0.011739443987607956, 0.002867333358153701, -0.005900888703763485, 0.013713332824409008, -0.009876370429992676, 0.015181628987193108, -0.03543303534388542, 0.013145406730473042, 0.0015098517760634422, -0.0033746573608368635, 0.006846277508884668, 0.0036084072198718786, 0.006835888605564833, 0.010146480984985828, -0.019032442942261696, 0.020223703235387802, -0.01973888836801052, 0.03576548025012016, -0.03180385008454323, -0.012861443683505058, 0.0014656990533694625, -0.01689925789833069, 0.010859851725399494, -0.024323850870132446, 0.014392073266208172, -0.024656295776367188, -0.01358174066990614, -0.017771925777196884, -0.003933925647288561, -0.005876647774130106, -0.007078296039253473, -0.004508777521550655, 0.01692696288228035, 0.004460296127945185, 0.015735702589154243, 0.0088444072753191, -0.01648370362818241, -0.028479406610131264, 0.008318036794662476, -0.005184055306017399, -0.02036222070455551, 0.032219406217336655, -0.015112370252609253, -0.0005809119902551174, -0.005575370043516159, -0.027246592566370964, 0.017328666523098946, -0.00481351837515831, -0.009952555410563946, 0.0338539257645607, -0.0012137684971094131, -0.0017271527322009206, -0.007019425742328167, 0.007445370312780142, -0.005488796159625053, -0.01087370328605175, 0.014766073785722256, -0.023880591616034508, -0.004882777575403452, 0.007999444380402565, -0.006680055521428585, -0.016663776710629463, -0.00784707348793745, 0.009516221471130848, 0.020417628809809685, 0.019198665395379066, -0.016649926081299782, -0.004598814528435469, 0.02250925824046135, 2.7392577976570465e-05, -0.007036740425974131, -0.01601273939013481, -0.016206666827201843, 0.008131036534905434, -0.014024999924004078, -0.016497554257512093, 0.026318518444895744, -0.02284170314669609, -0.0237420741468668, 0.001347958343103528, 0.012037258595228195, 0.009862517938017845, 0.007909406907856464, -0.004096684977412224, 0.01164940744638443, 0.016691481694579124, 0.0028067314997315407, 0.01566644385457039, 0.004280222114175558, 0.015638740733265877, -0.008290332742035389, -0.012154999189078808, -0.002896768506616354, 0.01126155536621809, -0.002245731418952346, 0.02670636959373951, 0.007050592452287674, 0.028479406610131264, -0.00808255560696125, 0.0001367870281683281, 0.02094399929046631, -0.002131453715264797, 0.022329185158014297, 0.009446962736546993, -0.006759703624993563, 0.010388888418674469, 0.021317999809980392, -0.03676281496882439, -0.0003248692082706839, -0.028313184157013893, -0.005717351567000151, 0.0022197591606527567, -0.01969733275473118, 0.0030889627523720264, -0.01586036942899227, 0.01989125832915306, -2.4037832190515473e-05, -0.0026664813049137592, 0.0011349860578775406, -0.008975999429821968, 0.021844370290637016, 0.01725940778851509, -0.006129444111138582, -0.006683518178761005, -0.007417666260153055, -0.002467361046001315, -0.02375592477619648, 0.008560444228351116, 0.011282333172857761, -0.01358174066990614, 0.01911555416882038, 0.005575370043516159, 0.015804963186383247, -0.022564666345715523, -0.011524740606546402, 0.011642481200397015, -0.003026629565283656, 0.0017903518164530396, -0.002837897976860404, 0.023949850350618362, 0.03629184886813164, 0.0028846480417996645, 0.0063822404481470585, -0.0061744628474116325, -0.00892059225589037, -0.004578036721795797, 0.019849702715873718, 0.007930184714496136, 0.006777018308639526, 0.006704295985400677, -0.015195480547845364, 0.004224814474582672, -0.03280118480324745, -0.010652073659002781, -0.0008172592497430742, 0.0061121294274926186, 0.002803268376737833, -0.018990889191627502, -0.01079751830548048, 0.01878311112523079, -0.008830555714666843, 0.0024569721426814795, 0.004249055404216051, -0.0042455922812223434, 0.009301518090069294, -0.013844925910234451, 0.00977940671145916, 0.0010250370251014829, -0.010880629532039165, 0.007833221927285194, -0.004477610811591148, -0.013983444310724735, -0.01226581446826458, 0.011912591755390167, 0.024309998378157616, 0.00045581249287351966, 0.03834192454814911, 0.023381926119327545, -0.011850259266793728, 0.022578516975045204, -0.007653147913515568, -0.007043666671961546, 0.00633029593154788, 0.0019912037532776594, 0.011219999752938747, 0.0018284444231539965, 0.006849740631878376, 0.001086504547856748, 0.013727184385061264, 0.026179999113082886, 0.013166184537112713, 0.0018596110166981816, 0.01924022100865841, 0.01366485096514225, 0.02267548069357872, 0.01404577773064375, -0.02485022135078907, 0.02016829513013363, -0.003532222006469965, -0.009266888722777367, -0.0219274815171957, 0.007957888767123222, 0.011351591907441616, -0.0022924814838916063, -0.009952555410563946, -0.01628977805376053, -0.00012477487325668335, -0.016871554777026176, -0.01864459179341793, -0.01613740622997284, 0.00447068503126502, -0.01483533252030611, 0.040669035166502, 0.0036361110396683216, -0.009827888570725918, 0.01644214801490307, 0.006964018102735281, 0.02016829513013363, 0.026678666472434998, 0.005790073890239, 3.5224824387114495e-05, -0.016663776710629463, 0.006454962771385908, 0.0024777499493211508, 0.0012613842263817787, 0.0039131478406488895, 0.0005211759125813842, -0.023160295560956, 0.012473592534661293, -0.012930703349411488, 0.0014267406659200788, -0.005790073890239, 0.019780443981289864, -0.010492777451872826, 0.019489554688334465, -0.012535925954580307, 0.00474079605191946, 0.011067628860473633, -0.03341066464781761, -0.011538592167198658, 0.01475222222507, -0.022883258759975433, 0.013616370037198067, 0.006198703311383724, 0.018076665699481964, -0.00986944418400526, 0.01987740769982338, 0.03152681514620781, -0.0026006849948316813, -0.0037365369498729706, 0.01522318460047245, 0.018118221312761307, 0.007750110700726509, -0.006870518438518047, 0.0036187961231917143, -0.003468157257884741, -0.0064999815076589584, 0.0030110462103039026, 0.0049554998986423016, 0.006811648141592741, -0.02346503548324108, -0.007542333099991083, 0.0030854998622089624, -0.0372614786028862, 0.020569998770952225, 0.001982546178624034, 0.002076046308502555, -0.005918203387409449, 0.0074938517063856125, -0.012750629335641861, 0.0009800185216590762, -0.027149628847837448, -0.013096925802528858, -0.010388888418674469, 0.015486369840800762, 0.025986073538661003, -0.007237592246383429, 0.001354018459096551, 0.015112370252609253, -0.00977248139679432, 0.01063129585236311, 0.016054295003414154, -0.005495721939951181, 0.011497036553919315, -0.013173110783100128, -0.004522629547864199, 0.014267407357692719, 0.026470888406038284, -0.008525814861059189, -0.008754369802772999, -0.015569481067359447, 0.02205214835703373, -0.006565777584910393, 0.025709036737680435, -0.0023513517808169127, -0.0041763330809772015, 0.012064962647855282, 0.014876888133585453, -0.03676281496882439, -0.000726356462109834, 0.010527406819164753, -0.0329119972884655, -0.013166184537112713, 0.02219066582620144, -0.015624888241291046, -0.00382311106659472, 0.013380888849496841, -0.024448517709970474, -0.007133703678846359, 0.0028465555515140295, -0.0052567776292562485, 0.01831214688718319, 0.003192851785570383, 0.003888907376676798, 0.0072999256663024426, 0.006880907341837883, 0.010271147824823856, 0.0020864352118223906, 0.0023305739741772413, 0.010887554846704006, 0.020847035571932793, -0.02419918403029442, -0.016539109870791435, 0.007978666573762894, 0.004359870217740536, 0.02983688749372959, -0.02471170201897621, 0.005724277812987566, -0.005637703463435173, 0.007389962673187256, 0.014669110998511314, -0.005447240546345711, -0.0027218887116760015, 0.01786888763308525, 0.0035737776197493076, 0.00679087033495307, -0.006818573921918869, -0.0040378146804869175, -0.004640370141714811, 0.021664295345544815, -0.009488518349826336, 0.005887036677449942, 0.012376628816127777, -0.004865462891757488, 0.02234303578734398, -0.004255981184542179, -0.008588148280978203, -0.015901925042271614, 0.01202340703457594, -0.013547110371291637, 0.018561480566859245, 0.03465733304619789, -0.006008240394294262, -0.013145406730473042, 0.005769296083599329, -0.004491462837904692, -0.005651555489748716, 0.026817183941602707, 0.03028014674782753, 0.021207183599472046, -0.015943480655550957, -0.0006216018227860332, -0.004442981444299221, 0.0017020462546497583, 0.03834192454814911, -0.005945907440036535, -0.02514111064374447, -0.01173251774162054, -0.0019946666434407234, -0.017439480870962143, 0.018409110605716705, 0.003726148046553135, 0.00041382404742762446, -0.006777018308639526, 0.017647258937358856, 0.012757555581629276, 0.012134221382439137, 0.003791944356635213, 0.005426462739706039, 0.0004575439670588821, 0.0065207588486373425, -0.005900888703763485, 0.00853274017572403, 0.014225851744413376, 0.018686147406697273, 0.01126848068088293, 0.016123555600643158, -0.004197110887616873, -0.02328496240079403, -0.0001009129045996815, 0.023354221135377884, 0.037344589829444885, -0.015306295827031136, 0.008318036794662476, -0.010804444551467896, 0.005152888596057892, 0.002041416708379984, -0.009654740802943707, 0.009197629056870937, -0.006295666564255953, 0.010458148084580898, 0.011607851833105087, 0.02252311073243618, 0.007459221873432398, 0.024739407002925873, 0.03928384929895401, -0.03620874136686325, 0.020611554384231567, -0.00777088850736618, 0.02404681406915188, -0.012799110263586044, -0.005765832960605621, -0.022869406268000603, -0.00527755543589592, -0.009156073443591595, -0.012902999296784401, 0.0042455922812223434, -0.03396473824977875, -0.005589222069829702, 0.020002072677016258, 0.012778333388268948, 0.020237555727362633, -0.004972814582288265, 0.01055511087179184, -0.012999963015317917, -0.019309481605887413, 0.016359036788344383, -0.006887833122164011, -0.005461092572659254, -0.010617444291710854, 0.004640370141714811, -0.01468296255916357, 0.00947466678917408, 0.012750629335641861, 0.006925925612449646, 0.013034592382609844, 0.018450666218996048, -0.002340962877497077, -0.012404332868754864, 0.0018301758682355285, -0.008186444640159607, 0.00955777708441019, 0.0013626759173348546, -0.015237036161124706, -0.014011147432029247, 0.015237036161124706, -0.004515703767538071, -0.0041382405906915665, -0.010077222250401974, -0.027869924902915955, 0.00691553670912981, -0.0001032936925184913, 0.022952517494559288, 0.007244518492370844, 0.008851333521306515, 0.01468296255916357, -0.011240777559578419, 0.01312462892383337, -0.004449907224625349, -0.009744777344167233, -0.004027425777167082, 0.016511406749486923, -0.0100218141451478, -0.0014734907308593392, -0.004598814528435469, -0.020583851262927055, -0.03169303759932518, -0.023049481213092804, 0.00029868053388781846, -0.002176472218707204, -0.0027928794734179974, 0.013429369777441025, -0.008816703222692013, 0.01505696214735508, -0.009336147457361221, -0.013616370037198067, -0.01847836934030056, 0.015569481067359447, -0.0034733517095446587, -0.004685388877987862, 0.005966684781014919, -0.00217474065721035, -0.005873185116797686, 0.026290813460946083, -0.009031407535076141, 0.013339333236217499, 0.009502369910478592, 0.013844925910234451, 0.004481073934584856, -0.0015046573244035244, -0.004328703507781029, 0.0014042314141988754, -0.007937110960483551, 0.02285555563867092, 0.0065207588486373425, 0.026983406394720078, -0.03122207336127758, -0.01566644385457039, 0.01644214801490307, -0.006641962565481663, -0.029144294559955597, 0.007937110960483551, -0.004387573804706335, -0.018866222351789474, -0.00184402777813375, -0.0020067868754267693, -0.013186962343752384, -0.007403814699500799, -0.01344322133809328, -0.0017375416355207562, -0.011898740194737911, 0.020999407395720482, -0.02410222217440605, 0.016705332323908806, 0.004481073934584856, -0.005980536807328463, -0.006811648141592741, -0.008643555454909801, 0.01803511008620262, -0.021013258025050163, 0.007383036892861128, -0.0042144255712628365, -0.0006198703777045012, 0.010839073918759823, -0.0342140719294548, 0.04535096138715744, 0.021539628505706787, -0.02018214762210846, 0.005416073836386204, -0.00907296221703291, -0.004913944285362959, -0.007653147913515568, -0.011829481460154057, 0.025542814284563065, -0.017342517152428627, -0.0025470091495662928, -0.0017046434804797173, -0.011787925846874714, 0.0023946387227624655, -0.02964296191930771, 0.023340370506048203, 0.007604666519910097, -0.00388544425368309, -0.019683480262756348, -0.0019998610951006413, 0.006202166434377432, -0.0334937758743763, 0.0030422129202634096, -0.01180177740752697, 0.0024656294845044613, -0.01770266704261303, -1.5448060366907157e-05, 0.003757314756512642, -0.02160888910293579, -0.011829481460154057, -0.009356925264000893, 0.015417110174894333, -0.009730925783514977, -0.0034802777227014303, -0.02284170314669609, -0.006292203441262245, -0.01831214688718319, -0.0016258610412478447, -0.019614221528172493, -0.015250888653099537, -0.01677459292113781, -0.001913286978378892, -0.005564981140196323, -0.014135814271867275, 0.015264740213751793, -0.0015756480861455202, -0.022495407611131668, -0.02641548030078411, 0.018215185031294823, 0.01771651767194271, 0.016719184815883636, -0.004771962761878967, 0.006454962771385908, 0.019849702715873718, -0.0016371157253161073, 0.025695184245705605, -0.012861443683505058, -0.03432488813996315, 0.012868369929492474, 0.0016587591962888837, 0.00027227544342167675, -0.00877514760941267, 0.013837999664247036, -0.006631573662161827, -0.032828886061906815, 0.02050074003636837, 0.002867333358153701, -0.010638222098350525, 0.006125981453806162, 0.008816703222692013, -0.018395258113741875, -0.02221836894750595, 0.021775109693408012, 0.004834296181797981, -0.008712814189493656, 0.00901755504310131, -0.009917926043272018, -0.0313882939517498, 0.009543925523757935, 0.0035460740327835083, -0.0075561851263046265, -0.011303110979497433, -0.010839073918759823, -0.032385628670454025, -0.02469785138964653, -0.0006263633840717375, 0.0037019073497503996, 0.0015695879701524973, -0.0041451663710176945, -0.0037365369498729706, -0.018880072981119156, 0.0205145925283432, -0.005675795953720808, -0.009620110504329205, 0.015943480655550957, -0.000923745334148407, -0.007833221927285194, 0.0024569721426814795, 0.01217577699571848, 0.02034837007522583, 0.015320147387683392, 0.003367731347680092, 0.011531665921211243, -0.005651555489748716, -0.0013315092073753476, 0.007015962619334459, 0.009841740131378174, 0.031249776482582092, 0.009287666529417038, -0.017300961539149284, -0.004958963021636009, 0.01644214801490307, 0.03230251744389534, -0.0024881388526409864, -0.023340370506048203, -0.014849185012280941, -0.005291407462209463, -0.015777258202433586, 0.0031409072689712048, -0.0005501782288774848, -0.004671536851674318, 0.009370777755975723, 0.002695916686207056, 0.021193332970142365, -0.01505696214735508, -0.01382414810359478, -0.007202962879091501, -0.011905666440725327, 0.007680851500481367, -0.009786332957446575, 0.01397651806473732, 0.001942722126841545, 0.01336011104285717, 0.010194962844252586, -0.016802296042442322, -0.0028863796032965183, 0.01586036942899227, -0.018533777445554733, 0.008262629620730877, -0.012868369929492474, -0.006157148163765669, -0.0013877823948860168, 0.012078814208507538, 0.01908785104751587, 0.009675518609583378, 0.002372129587456584, -0.004048203583806753, 0.006077499594539404, -0.015403258614242077, 0.0032447963021695614, -0.010901407338678837, 0.006853203289210796, 0.004823907278478146, 0.01583266630768776, -0.006042870227247477, -0.0156941469758749, 0.0018319073133170605, 0.01226581446826458, 0.0007090416620485485, -0.004391036927700043, 0.02253696136176586, 0.019766591489315033, -0.01753644458949566, 0.0012735045747831464, 0.014308962970972061, -0.017522592097520828, -0.02034837007522583, 0.01189181488007307, -0.007396888453513384, -0.01694081351161003, 0.006648888811469078, -0.0029279349837452173, -0.015264740213751793, 0.005551129579544067, -0.008851333521306515, -0.0006254976615309715, 0.013997295871376991, -0.025999926030635834, -0.018270591273903847, 0.003791944356635213, 0.028839554637670517, 0.009488518349826336, 0.012695222161710262, -0.015500221401453018, -0.006929388735443354, -0.015375555492937565, -0.011053777299821377, 0.011531665921211243, -0.009744777344167233, -0.023201851174235344, -0.01117151789367199, -0.01568029634654522, 0.002602416556328535, 0.02097170241177082, 0.0007315509137697518, 0.026318518444895744, -0.00422827759757638, 0.009592407383024693, -0.004920870065689087, 0.007383036892861128, 0.005402222275733948, -0.005530351772904396, 0.012182703241705894, -0.004983203485608101, 0.002711499808356166, 0.0012786990264430642, 0.010153407230973244, -0.001321120304055512, 0.004027425777167082, -0.01721785217523575, 0.008719740435481071, -0.009814037010073662, 0.013519407249987125, -0.0006852337974123657, 0.0004666342574637383, 0.0075007774867117405, 0.007729332894086838, 0.004082833416759968, 0.03061259165406227, -0.0005917337839491665, 0.004283685237169266, 0.00042637731530703604, -0.008595073595643044, -0.0064376480877399445, 0.008103333413600922, 0.010825221426784992, -0.02080547995865345, -0.005377981346100569, 0.018090518191456795, -0.015486369840800762, -0.0017539906548336148, 0.022246073931455612, 0.004688851535320282, -0.0031114721205085516, 0.01818748004734516, -0.013401666656136513, 0.0036880555562675, -0.002832703525200486, 0.02141496166586876, 0.0010172453476116061, 0.0017236897256225348, 0.015306295827031136, -0.00013884317013435066, 0.004920870065689087, -0.0063372221775352955, -0.004041277803480625, -0.015375555492937565, 0.01194722205400467, -0.054742515087127686, 0.0001539936347398907, 0.007867851294577122, 0.013914184644818306, -0.00316514796577394, 0.015721851959824562, -0.011573221534490585, -0.002280361019074917, -0.014641406945884228, -0.008955221623182297, 0.008692036382853985, -0.004463759250938892, 0.003393703605979681, -0.01896318420767784, -0.018589183688163757, 0.01544481422752142, 0.010028740391135216, 0.019447999075055122, 0.01924022100865841, -0.013027666136622429, 0.0030889627523720264, -0.019129406660795212, 0.006683518178761005, 0.003132249927148223, 0.022107554599642754, 0.006229870021343231, 0.017508739605545998, 8.154195529641584e-05, -0.01676074042916298, -0.003035286907106638, 0.01601273939013481, -0.00574159249663353, 0.004359870217740536, 0.008858258835971355, 0.014170443639159203, 0.0073553333058953285, -0.0020604629535228014, -0.0018336388748139143, -0.007715481333434582, 0.00986944418400526, -0.010658999904990196, -0.018907777965068817, -0.03213629499077797, 0.015126221813261509, 0.01048585120588541, -0.008151814341545105, 0.019323332235217094, -0.007729332894086838, 0.012902999296784401, 0.008276481181383133, 0.008906740695238113, -0.011815628968179226, -0.028479406610131264, -0.007660073693841696, 0.00831111054867506, -0.011933369562029839, 0.030972739681601524, -0.011898740194737911, 0.010458148084580898, -0.004311388824135065, 0.013727184385061264, 0.000609048584010452, -0.00488970335572958, 0.013020739890635014, 0.010638222098350525, 0.008186444640159607, 0.014211999252438545, 0.005700036883354187, 0.02777296118438244, 0.010880629532039165, -0.021539628505706787, 0.018422963097691536, -0.0038992962799966335, -0.008449628949165344, -0.01436437014490366, 0.008013295941054821, 0.0173979252576828, -0.015638740733265877, 0.01770266704261303, -0.006749314721673727, 0.005772759206593037, -0.003694981336593628, 0.019323332235217094, -0.003559925826266408, -0.0012648472329601645, -0.01989125832915306, -0.0027530554216355085, -0.0013098657364025712, -0.0062194811180233955, -0.02392214722931385, 0.01529244426637888, -0.0025504720397293568, 0.004782351665198803, 0.01584651879966259, 0.011109184473752975, -0.005485333036631346, 0.003201509127393365, -0.005166740622371435, 0.011607851833105087, -0.01047892589122057, -0.00427329633384943, 0.006590018514543772, -0.03582088649272919, 0.01024344377219677, -0.01109533291310072, 0.013851851224899292, -0.028216220438480377, 0.004363333340734243, -0.012625962495803833, 0.01586036942899227, 0.017300961539149284, 0.012861443683505058, -0.016649926081299782, 0.016525259241461754, 0.0005519097321666777, 0.01630362868309021, -0.005848944187164307, 0.006170999724417925, -0.0013652731431648135, -0.01818748004734516, 0.004086296074092388, -0.010132629424333572, -0.03091733157634735, -0.017494888976216316, 0.01250822190195322, -0.0008406342240050435, 0.025584369897842407, -0.0003207569243386388, -0.017439480870962143, 0.00632683327421546, -0.0023825184907764196, 0.041860293596982956, -0.006264499854296446, -0.0012960138265043497, -0.009079888463020325, -0.0031028147786855698, 0.012563629075884819, 0.008013295941054821, -0.008795925416052341, 0.008324963040649891, 0.021401111036539078, -0.002630120376124978, 0.0248640738427639, 0.022717036306858063, -0.006659277714788914, -0.0034664259292185307, -0.003132249927148223, 0.009294591844081879, 0.021539628505706787, 0.002669944427907467, -0.00442220363765955, 0.013526332564651966, 0.01226581446826458, 0.024891776964068413, 0.00011828182323370129, -0.006025555543601513, 0.006700833328068256, -0.01958651840686798, 0.0015375554794445634, 0.011282333172857761, -0.022952517494559288, 0.014766073785722256, 0.005371055565774441, 0.004522629547864199, -0.007680851500481367, 0.020528443157672882, 0.0016371157253161073, 0.013180037029087543, -0.005762370303273201, 0.013983444310724735, -0.010305777192115784, 0.004380648024380207, -0.013844925910234451, 0.011822555214166641, 0.016275925561785698, -0.014115036465227604, -0.011739443987607956, -0.0023894442711025476, -0.003365999786183238, -0.002777296118438244, -0.008830555714666843, -0.005215222015976906, 0.000871368043590337, -0.016968518495559692, -0.0026837962213903666, -0.007909406907856464, 0.013623296283185482, 0.011455480940639973, -0.003527027554810047, 0.00474079605191946, 0.00237039802595973, 0.0022613147739320993, 0.005616925656795502, 0.001812861068174243, 0.003591092536225915, 0.01818748004734516, -0.004661147948354483, 0.010783666744828224, 0.01691311039030552, 0.0012103054905310273, 0.01109533291310072, 0.01390033308416605, 0.002940055448561907, 0.006285277660936117, 0.009592407383024693, -0.005492259282618761, -0.03787096217274666, -0.0039443145506083965, 0.00948159210383892, -0.014239703305065632, -0.012501295655965805, -0.0077085550874471664, 0.01375488843768835, 0.00316341663710773, -0.0038334999699145555, 0.008505037054419518, 0.008608926087617874, 0.007604666519910097, -0.008650480769574642, -0.0004475879541132599, 0.003365999786183238, 0.004120925907045603, 0.002131453715264797, -0.00899677723646164, 0.027426665648818016, 0.022107554599642754, 0.008491184562444687, 0.008858258835971355, 0.009156073443591595, 0.01753644458949566, 0.0019808148499578238, 0.021539628505706787, 0.022121407091617584, -0.0014319351175799966, 0.007168333046138287, 0.0052186851389706135, 0.02141496166586876, 0.010471999645233154, -0.018699999898672104, 0.003364268457517028, -0.010111851617693901, 0.006801259238272905, -0.0010007962118834257, 0.007189110852777958, -0.0052567776292562485, 0.00474079605191946, 0.01568029634654522, 0.006981333252042532, -0.027759110555052757, 0.014267407357692719, -0.01969733275473118, 0.002377324039116502, -0.0022128333803266287, 0.014973850920796394, -0.003985870163887739, 0.0019600370433181524, -0.02313259243965149, 0.00493472209200263, 0.00667312927544117, 0.01072133332490921, -0.002964296145364642, 0.009204555302858353, -0.0036084072198718786, -0.0191017035394907, 0.005495721939951181, -0.02159503661096096, -0.0029417870100587606, -0.010929110459983349, 0.0036811295431107283, -0.004855073988437653, 0.006198703311383724, -0.010617444291710854, 0.020459184423089027, -0.016359036788344383, -0.011670185253024101, -0.0025470091495662928, -0.010354259051382542, 0.007334555499255657, 0.021498072892427444, -0.0011107453610748053, -0.011462407186627388, 0.011053777299821377, -0.0004965023254044354, -0.01505696214735508, 0.029919998720288277, -0.0029556388035416603, -0.006385703571140766, 0.010776740498840809, -0.0021937869023531675, 0.0064826663583517075, -0.0246839988976717, 0.017425628378987312, 0.0038681295700371265, 0.02576444298028946, -0.032551851123571396, -0.006378777790814638, 0.02252311073243618, -0.013069221749901772, -0.00015410184278152883, 0.012757555581629276, 0.002169546205550432, 0.016552962362766266, -0.028146961703896523, 0.014696814119815826, 0.0041139996610581875, -0.004602277651429176, -0.013554036617279053, -0.008387296460568905, -0.006849740631878376, 0.013990369625389576, -0.012812962755560875, -0.006115592550486326, 0.017910443246364594, 0.00894137006253004, 0.002837897976860404, 0.009758628904819489, 0.010610518045723438, -0.00014089929754845798, 0.016275925561785698, -0.0030526018235832453, 0.011704814620316029, 0.0020673887338489294, -0.0007934513851068914, 0.0004086296248715371, -0.003895833157002926, -0.005457629449665546, -0.0032188240438699722, -0.0029885368421673775, -0.015084666199982166, -0.001489073969423771, -0.010880629532039165, -0.004851610865443945, -0.007383036892861128, 0.008892888203263283, -0.005776221863925457, 0.005135573912411928, 0.019018592312932014, -0.002998925745487213, -0.011448555625975132, 0.00362918502651155, 0.01126848068088293, -0.02111022174358368, -0.011316962540149689, -0.004020499996840954, 0.0053952960297465324, -0.014225851744413376, 0.02983688749372959, -0.00454340735450387, 0.02532118372619152, -0.012058036401867867, -0.024753257632255554, 0.009606258943676949, 0.003267305437475443, 0.010769814252853394, -0.00948159210383892, -0.007092148065567017, 0.010264221578836441, 0.024642443284392357, -0.0036153332330286503, -0.006783944088965654, 0.025431999936699867, -0.028049999848008156, -0.002469092607498169, 0.0039616296999156475, -0.012750629335641861, -0.0020067868754267693, 0.006950166542083025, -0.015417110174894333, 0.0100218141451478, -0.00784707348793745, 0.02845170348882675, 0.0028171201702207327, 0.010915258899331093, 0.010284999385476112, -0.01633133366703987, 0.0040378146804869175, -0.028534814715385437, -0.004526092670857906, -0.009398480877280235, -0.005526888649910688, 0.035349924117326736, 0.017328666523098946, 0.001778231468051672, -0.004318314604461193, -0.0020206389017403126, -0.024296147748827934, 0.011905666440725327, 0.009370777755975723, 0.0030248980037868023, -0.0075561851263046265, 0.006309518124908209, 0.008117184974253178, -0.0061675370670855045, 0.0005891365581192076, -0.003933925647288561, -0.0072999256663024426, 0.004799666348844767, -0.012688295915722847, -0.00035495369229465723, -0.0007995115593075752, 0.001718495273962617, -0.008539666421711445, -0.003660351736471057, 0.014585999771952629, -0.0012051110388711095, 0.03288429602980614, -0.0030803054105490446, 0.005786610767245293, -0.002856944454833865, 0.005564981140196323, 0.02144266664981842, -0.007286073639988899, -0.03706755489110947, 0.006880907341837883, -0.010638222098350525, 0.005429925862699747, -0.008013295941054821, 0.010700555518269539, 0.0021245277021080256, 0.009959480725228786, -0.010589740239083767, -0.005887036677449942, 0.004910481162369251, -0.0063441479578614235, -0.013013814575970173, -0.0025245000142604113, -0.009509296156466007, 0.005485333036631346, -0.004782351665198803, -0.0016890601254999638, 0.015098517760634422, -0.028202369809150696, -0.022564666345715523, -0.003729610936716199, -0.016511406749486923, 0.007549258880317211, -0.007583888713270426, -0.03449111059308052, -0.016220517456531525, -0.015901925042271614, 0.00026534951757639647, 0.00527755543589592, 0.003127055475488305, -0.006614258978515863, -0.0032344073988497257, 0.005848944187164307, 0.017481036484241486, -0.01412888802587986, 0.015569481067359447, -0.0015574675053358078, 0.014336666092276573, -0.02501644380390644, -0.010866777040064335, 0.001709837932139635, -0.00493472209200263, -0.02839629538357258, -0.030695702880620956, 0.0062367962673306465, -0.01817362941801548, -0.008858258835971355, -0.013249295763671398, -0.023035628721117973, 0.019309481605887413, -0.0004978009383194149, -0.000412092573242262, 0.0037157591432332993, -0.008671258576214314, -0.0031132036820054054, 0.012847592122852802, 0.018686147406697273, 0.02654014714062214, -0.0037538516335189342, -0.014267407357692719, 0.003326175734400749, 0.007888629101216793, -0.0008068703464232385, 0.00036512615042738616, 0.0021626201923936605, 0.0073068514466285706, 0.017190147191286087, -0.008179518394172192, 0.013934962451457977, -0.008816703222692013, 0.006853203289210796, 0.004484537057578564, -0.021941332146525383, 0.003324444405734539, -0.018436813727021217, -0.01383107341825962, 0.012778333388268948, -0.011365444399416447, 0.016192814335227013, -0.00806870311498642, 0.005537277553230524, 0.00994562916457653, 0.0013410323299467564, -0.006631573662161827, 0.0051563517190515995, 0.008034073747694492, 0.01366485096514225, -0.0016959860222414136, 0.006222944241017103, 0.00979325920343399, 0.006967481225728989, -0.02219066582620144, -0.001412888872437179, -0.0006216018227860332, 0.0042455922812223434, -0.005582296289503574, -0.014766073785722256, 0.005655018147081137, -0.001150569412857294, -0.00134968978818506, 0.009820962324738503, -0.0065069072879850864, -0.010749036446213722, -0.004855073988437653, -0.0019721572753041983, 0.011697888374328613, -0.017051629722118378, -0.020750073716044426, 0.01568029634654522, 0.00970322173088789, -0.0075007774867117405, 0.007535407319664955, -0.01628977805376053, 9.588078683009371e-05, 0.0049174074083566666, 0.004685388877987862, 0.011739443987607956, -0.002642240608111024, 0.010070296004414558, -0.002978147938847542, 0.01419814769178629, 0.00916299968957901, 0.040779851377010345, -0.02342347986996174, 0.016372889280319214, -0.00023288425290957093, 0.009543925523757935, 0.001119402702897787, -0.004186721984297037, 0.014544444158673286, 0.022329185158014297, -0.004945110995322466, -0.0017436017515137792, 0.0023652035742998123, 0.023021776229143143, -0.009052185341715813, -0.00362918502651155, -0.005516499746590853, -0.015915777534246445, -0.011344666592776775, -0.008075629360973835, 0.007140629459172487, 0.004096684977412224, -0.002134916605427861, 0.007279147859662771, -0.02964296191930771, 0.0029868055135011673, 0.009571629576385021, -0.0006817707908339798, 0.01850607432425022, 0.007029814645648003, -0.046957775950431824, 0.0015938286669552326, -0.014627555385231972, 0.007119851652532816, -0.015250888653099537, -0.01187796238809824, 0.012667518109083176, 0.004017036873847246, 0.006364925764501095, 0.001882120268419385, -0.010755962692201138, 0.0031824628822505474, 0.01570799946784973, 0.0005545068997889757, -0.019129406660795212, 0.001216365722939372, 0.018727703019976616, 0.004217888694256544, -0.013332406990230083, -0.0019548425916582346], "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121": [-0.04345181956887245, -0.0019375549163669348, -0.010097067803144455, 0.011186174117028713, -0.02293446660041809, -0.013378439471125603, 0.009808981791138649, -0.004718288779258728, 0.005280408076941967, 0.00262966426089406, 0.029370732605457306, 0.004121037200093269, -0.010033829137682915, -0.02705199085175991, 0.007560504600405693, 0.0010311375372111797, -0.019041791558265686, 0.010434338822960854, 0.01632956601679325, -0.034598443657159805, 0.070602186024189, -0.01881694234907627, -0.04255243018269539, -0.025843434035778046, 0.024592718109488487, 0.018015922978520393, -0.01915421523153782, -0.0005392832099460065, -0.04463227093219757, -0.0023046890273690224, 0.02110757865011692, 0.043817199766635895, 0.0024645416997373104, 0.010364074259996414, -0.003274344839155674, -0.04749907925724983, 0.01620308868587017, 0.026644453406333923, -0.025196997448801994, -0.057673439383506775, -0.05677404627203941, -0.0024153562262654305, 0.011031591333448887, -0.004851792007684708, -0.043620456010103226, 0.009956537745893002, 0.012732001952826977, -0.01474157813936472, 0.004714775364845991, 0.0241711288690567, 0.021346479654312134, -0.036959342658519745, 0.014783737249672413, -0.014924267306923866, 0.012668763287365437, -0.026714719831943512, -0.016498200595378876, 0.04786445572972298, -0.008867431432008743, -0.04047258943319321, -0.03131004422903061, -0.007100269198417664, 0.007135401479899883, -0.00967547856271267, -0.0004997591604478657, -0.008572319522500038, 0.005132851656526327, -0.00046462673344649374, -0.035076241940259933, -0.005909278988838196, 0.005586060229688883, 0.04345181956887245, -0.04612188786268234, -0.0011444396805018187, -0.006018189713358879, -0.0051293387077748775, 0.027066044509410858, 0.013301147148013115, 0.006980818696320057, 0.020404929295182228, -0.0398823618888855, 0.017987817525863647, 0.04550355672836304, 0.016976002603769302, 0.04423878714442253, 0.026180705055594444, -0.029314521700143814, -0.02751573920249939, -0.006597875151783228, -0.02868213690817356, -0.0027842470444738865, 0.009598187170922756, 0.0008682108018547297, -0.0290896724909544, -0.01686357893049717, 0.021009208634495735, 0.0064924778416752815, 0.01244391594082117, 0.006464371923357248, -0.03372715786099434, -0.021978864446282387, 0.01147426012903452, -0.05739237740635872, 0.009738716296851635, -0.0036572886165231466, 0.005775775760412216, -0.007869670167565346, -0.011270491406321526, -0.026742825284600258, 0.032378070056438446, 0.023805752396583557, -0.008312338963150978, -0.015036690980196, 0.02248477190732956, -0.0290896724909544, -0.023285791277885437, -0.048257939517498016, 0.009710610844194889, -0.01287955790758133, -0.012886584736406803, 0.015893923118710518, -0.012767134234309196, 0.017889445647597313, -0.005923332180827856, -0.011607763357460499, -0.0012120697647333145, 0.0002755702007561922, 0.007609689608216286, 0.033305566757917404, 9.386953024659306e-05, -0.0012753080809488893, -0.027881115674972534, 0.00275262794457376, 0.006966765969991684, -0.009387391619384289, 0.01320277713239193, 0.007925882004201412, 0.04853900149464607, -0.04274917021393776, 0.01856398954987526, -0.06582416594028473, -0.034935712814331055, -0.04423878714442253, 0.008804193697869778, -0.00092749681789428, -0.01068729255348444, -0.03159110248088837, 0.009373338893055916, -0.02594180591404438, 0.020011447370052338, -0.030045276507735252, 0.009759795852005482, -0.010118147358298302, 0.045981358736753464, 0.02574506402015686, 0.002478594658896327, -0.00911335926502943, 0.011663975194096565, 0.007131888531148434, 0.029061567038297653, 0.01842346042394638, -0.06037161126732826, -0.008277206681668758, 0.004925570450723171, 0.05059073492884636, 0.020826520398259163, 0.05070316046476364, -0.009935458190739155, -0.0010153279872611165, 0.013364385813474655, 0.031787846237421036, -0.027810851112008095, 0.01620308868587017, 0.026546083390712738, 0.005217169411480427, -0.037943050265312195, 0.020770307630300522, 0.0010214761132374406, 0.022569090127944946, -0.025140784680843353, -0.012935769744217396, 0.016905738040804863, 0.0160204004496336, -0.010855928994715214, -0.021978864446282387, 0.029960958287119865, -0.005954951047897339, 0.006625981070101261, -0.013905425556004047, 0.0038997025694698095, -0.006562742870301008, 0.010258677415549755, 0.002729791682213545, 0.007181074004620314, 0.025899646803736687, 0.006460858508944511, 0.005280408076941967, 0.0049536763690412045, -0.010237597860395908, 0.013258988969027996, 0.014685366302728653, -0.052698682993650436, -0.027895169332623482, 0.060821305960416794, -0.016905738040804863, 0.029314521700143814, -0.02719251997768879, -0.05503147840499878, 0.026967672631144524, -0.04078175500035286, 0.04345181956887245, -0.01593608222901821, 0.05340133234858513, 0.006629494484513998, -0.014263777062296867, -0.0019112055888399482, -0.0017610143404453993, 0.03802736848592758, -0.012935769744217396, -0.019252585247159004, -0.0069702789187431335, 0.03580699861049652, -0.024410029873251915, -0.00741997454315424, -0.05795449763536453, -0.02051735483109951, 0.01447457168251276, 0.05469420552253723, -0.043789092451334, -0.007476186379790306, 0.0424962192773819, -0.020629778504371643, -0.005420937668532133, -0.029033461585640907, -0.009134438820183277, 0.034401699900627136, -0.010265703313052654, -0.0004874628211837262, 0.015781499445438385, -0.004317778628319502, -0.0018936393316835165, 0.07099566608667374, -0.012134750373661518, -0.006784077268093824, 0.002366170985624194, -0.0007382206968031824, -0.0014307692181318998, -0.0007948718266561627, 0.004851792007684708, 0.004816659726202488, 0.01783323474228382, 0.024859724566340446, -0.00914849154651165, -0.029173990711569786, -0.005470123142004013, 0.04985998198390007, 0.013343306258320808, -0.05261436477303505, 0.017664598301053047, -0.008017226122319698, 0.024325711652636528, 0.0018936393316835165, 0.038139794021844864, 0.028204334899783134, 0.03867380693554878, -0.03403632342815399, -0.007588610518723726, -0.028218388557434082, 0.01075053121894598, 0.009977617301046848, -0.019393116235733032, 0.004539113026112318, -0.003565944265574217, 0.0039734807796776295, 0.01967417448759079, 0.010132200084626675, -0.009886273182928562, -0.027473580092191696, -0.007546451408416033, 0.020896784961223602, 0.021093526855111122, -0.013132511638104916, 0.018156452104449272, 0.0008862161776050925, 0.005564981140196323, -0.01824077032506466, -0.02699577808380127, 0.022892307490110397, -0.06610523164272308, -0.005635245703160763, 0.013687605038285255, -0.012788213789463043, 0.03653775528073311, -0.007504292298108339, 0.03412064164876938, -0.017791075631976128, -0.007037030998617411, -0.019112056121230125, -0.058516617864370346, -0.006583821959793568, 0.025112679228186607, -0.04229947552084923, 0.023117154836654663, 0.0031443547923117876, 0.04266485199332237, -0.012999008409678936, 0.011593710631132126, 0.026250971481204033, -0.04522249475121498, 0.02078436128795147, 0.0450819656252861, 0.00028852527611888945, -0.023356055840849876, 0.015261538326740265, 0.006327355280518532, 0.014432412572205067, 0.0011646408820524812, -0.03308071941137314, -0.026321236044168472, -0.0053822919726371765, 0.004644510801881552, 0.015907974913716316, -0.04606567695736885, 0.017369486391544342, 0.02046114206314087, -0.049241650849580765, 0.02967989817261696, -0.0031601644586771727, 0.009197676554322243, -0.034991923719644547, -0.004799093585461378, -0.02338416315615177, 0.0031847571954131126, 0.00717053422704339, -0.04789256304502487, -0.010546763427555561, -0.006408160086721182, -0.0444355309009552, -0.006534636486321688, -0.020559512078762054, -0.0009635075693950057, -0.030832242220640182, 0.013034140691161156, -0.004194815177470446, 0.044266894459724426, 0.019884970039129257, -0.017861340194940567, 0.0016652783378958702, -0.025590481236577034, 0.024789460003376007, 0.0008928035385906696, -0.021093526855111122, -0.0050942059606313705, 0.022526931017637253, 0.03971372917294502, -0.026321236044168472, -0.005280408076941967, -0.016849525272846222, 0.025435898452997208, -0.03946077451109886, 0.02241450734436512, -0.03971372917294502, -0.028077857568860054, 0.0022660433314740658, -0.002202804898843169, 0.058460406959056854, -0.01641388237476349, -0.008565292693674564, -0.010160306468605995, -0.03012959286570549, -0.04733044281601906, -0.024424083530902863, 0.010286782868206501, -0.02019413560628891, -0.010841875337064266, -0.03125383332371712, 0.04710559546947479, 0.0014983991859480739, -0.030270123854279518, 0.010054908692836761, 0.024733249098062515, -0.004303725901991129, 0.0006161354249343276, 0.018353193998336792, 0.018732625991106033, 0.010012749582529068, 0.01055378932505846, -0.008452869020402431, -0.0014061764813959599, -0.011860717087984085, -0.006358974613249302, 0.02306094393134117, -0.033699050545692444, -0.03541351482272148, -0.03752146288752556, 0.003969967365264893, -0.0033094773534685373, -0.019112056121230125, 0.004908003844320774, -0.07498671114444733, 0.03566646948456764, -0.01765054650604725, -0.025801274925470352, -0.03881433606147766, 0.006931633222848177, -0.05089990049600601, -0.017299221828579903, -0.008579345420002937, 0.021866440773010254, -0.0010328942444175482, 0.017214903607964516, -0.0016389290103688836, 0.026841195300221443, 0.05736427381634712, 0.03487950190901756, 0.022976625710725784, -0.005909278988838196, 0.0463748425245285, 0.010216518305242062, -0.02261124737560749, 0.016287406906485558, 0.043817199766635895, -0.01068026665598154, 0.02686930261552334, 0.016976002603769302, 0.03038254752755165, -0.00012087760114809498, 0.01022354420274496, 0.01254931278526783, -0.0002531732607167214, 0.0010451904963701963, 0.07335656881332397, -0.042130839079618454, 0.02019413560628891, 0.03802736848592758, -0.010469472035765648, -0.005016914568841457, -0.025267262011766434, 0.027431420981884003, 0.019196374341845512, 0.015416121110320091, 0.00791182927787304, -0.009366312995553017, 0.014130273833870888, -0.019238533452153206, -0.02959557995200157, -0.01231743860989809, -0.003232185961678624, 0.0017469613812863827, 0.00918362382799387, 0.0080102002248168, 0.018015922978520393, -0.04595325142145157, -0.01408108789473772, -0.024606771767139435, -0.00524176238104701, 0.008733928203582764, -0.007792378775775433, -0.0037240402307361364, -0.007100269198417664, -0.03960130363702774, 0.02273772470653057, -0.00908525288105011, 0.015893923118710518, -0.00699135847389698, -0.029651792719960213, 0.0007575435447506607, 0.015795551240444183, 0.006576795596629381, 0.0023240118753165007, 0.027895169332623482, -0.021543221548199654, -0.004981782287359238, 0.04468848183751106, 0.021416744217276573, -0.02294852025806904, -0.004226434510201216, -0.019308798015117645, -0.02306094393134117, -0.014685366302728653, -0.027080096304416656, -0.023313896730542183, -0.023299844935536385, -0.0020868678111582994, 0.008874458260834217, 0.012732001952826977, -0.04856710508465767, -0.04645916074514389, 0.022512877359986305, -0.03392389789223671, 0.04789256304502487, 0.008733928203582764, 0.008438815362751484, 0.011839637532830238, -0.028977248817682266, -0.023032838478684425, -0.03150678426027298, -0.041990309953689575, -0.02379169873893261, -0.02979232184588909, 0.049185436218976974, -0.04985998198390007, 0.0008322000503540039, -0.030860349535942078, -0.006720838602632284, 0.00925388839095831, -0.02640555426478386, 0.028977248817682266, -0.03707176819443703, -0.01284442562609911, -0.06661113351583481, 0.0019603909458965063, -0.016765207052230835, 0.0078064315021038055, -0.006998385302722454, 0.015865817666053772, 0.003118005348369479, 0.0031865136697888374, 0.02372143417596817, 0.006018189713358879, -0.00029994334909133613, -0.017200849950313568, -0.049972403794527054, -0.013870293274521828, -0.028541605919599533, 0.004893951117992401, -0.008466921746730804, -0.03665017709136009, 0.02137458510696888, -0.032125115394592285, -0.004749908111989498, 0.028639977797865868, -0.03887054696679115, 0.02686930261552334, 0.03226564824581146, -0.008108570240437984, 0.021866440773010254, 0.0037486329674720764, -0.02306094393134117, 0.011938008479773998, 0.003966454416513443, 0.028316758573055267, 0.03634101152420044, -0.010061935521662235, 0.007996146567165852, 0.00908525288105011, 0.006042782217264175, 0.007588610518723726, -0.033755261451005936, 0.02817622944712639, -0.03707176819443703, 0.02254098281264305, -0.030635500326752663, 0.025000255554914474, -0.008762034587562084, -0.012654710561037064, 0.0007601784891448915, -0.004012126475572586, 0.012436889111995697, -0.00373458000831306, -0.02365116961300373, 0.02594180591404438, 0.021641593426465988, 0.0366220697760582, 0.0012647684197872877, -0.017889445647597313, 0.009823034517467022, 0.008319365791976452, 0.009331179782748222, 0.02633528783917427, 0.04985998198390007, -0.02606828138232231, 0.0014676583232358098, 0.006998385302722454, -0.010490551590919495, 0.01790349930524826, -0.01440430711954832, 0.008902564644813538, -0.05236141011118889, -0.0009441847214475274, 0.018999632447957993, 0.01274605467915535, -0.004454795271158218, 0.0026402040384709835, 0.02431165985763073, 0.0016020400216802955, -0.04156872257590294, -0.0035378383472561836, -0.028921037912368774, -0.0017408131388947368, 0.02359495684504509, 0.01711653172969818, -0.008045332506299019, -0.003811871400102973, -0.02365116961300373, -0.0003436393162701279, -0.005663351621478796, 0.0017575010424479842, 0.01258444506675005, 0.029202096164226532, 0.04946649819612503, 0.01483994908630848, 8.525110024493188e-05, -0.0290896724909544, -0.04241190105676651, 0.011713160201907158, 0.015008584596216679, -0.0054314774461090565, -0.01621714048087597, 0.01493832003325224, 0.0045356000773608685, 0.002905454020947218, 0.05092800781130791, -0.004409123212099075, 0.03991046920418739, 0.020756253972649574, 0.01091214083135128, 0.017678651958703995, 0.020151976495981216, -0.023370109498500824, 0.0071881003677845, -0.037605781108140945, 0.07498671114444733, -0.03448601812124252, 0.03844895958900452, -0.009499816223978996, -0.017228955402970314, 0.022316135466098785, -0.014256750233471394, 0.011734239757061005, -0.0034781130962073803, -0.0017671624664217234, 0.005543901585042477, -0.033361781388521194, 0.006478424649685621, -0.018929367884993553, 0.02398844063282013, 0.02085462585091591, -0.018086187541484833, -0.024100864306092262, 0.00185499363578856, -0.00722323264926672, 0.010272730141878128, 0.04038827121257782, -0.014418359845876694, 0.000728120154235512, -0.015781499445438385, 0.0035712141543626785, 0.025801274925470352, 0.010307862423360348, -0.045587874948978424, 0.00545958336442709, -0.01414432656019926, 0.00954197533428669, 0.014727525413036346, -0.028218388557434082, -0.030691713094711304, 0.005312027409672737, 0.02457866631448269, 0.008438815362751484, 0.043760985136032104, -0.03279966115951538, 0.01212069671601057, 0.01414432656019926, -0.0004799971648026258, 0.020166030153632164, 0.006510043982416391, -0.0027508712373673916, -0.001296387636102736, 0.002064031781628728, -0.0016521037323400378, -0.010399206541478634, -0.00746916001662612, -0.01582365855574608, -0.01691978983581066, -0.013090352527797222, -0.023833857849240303, 0.03575078770518303, -0.011938008479773998, -0.033361781388521194, 0.005312027409672737, -0.03282776474952698, -0.01770675741136074, 0.010567842982709408, -0.013153591193258762, -0.0145448362454772, 0.015458280220627785, 0.03732471913099289, -0.011087803170084953, 0.012261226773262024, -0.015922028571367264, 0.0016099447384476662, 0.01091214083135128, -0.0024557586293667555, -0.0032392123248428106, -0.008213968016207218, 0.008698795922100544, -0.00021233178267721087, 0.011621816083788872, -0.035076241940259933, -0.01770675741136074, 0.01953364536166191, -0.0008488879539072514, -0.023510638624429703, 0.016512254253029823, 0.025731010362505913, -0.028443235903978348, -0.04384530335664749, 0.010862954892218113, -0.0036994474940001965, 0.016835473477840424, -0.007609689608216286, -0.0015748123405501246, 0.004468848463147879, -0.004106984008103609, 0.04013531655073166, -0.016905738040804863, 0.009029041044414043, 0.028091911226511, 0.0015906218905001879, -0.018058082088828087, 0.04775203391909599, -0.014924267306923866, -0.024817567318677902, -0.026939567178487778, 0.014432412572205067, -0.0031812437810003757, 0.0290896724909544, 0.0029897720087319613, -0.001999036641791463, 0.031675420701503754, -0.011811531148850918, 0.016090665012598038, -0.0037837654817849398, -0.0050134011544287205, 0.03802736848592758, -0.0101251732558012, 0.008319365791976452, 0.031085196882486343, -0.040022894740104675, 0.008129649795591831, 0.010392180643975735, -0.015177221037447453, -0.008375577628612518, 0.009029041044414043, 0.009289021603763103, 0.03746525198221207, 0.016315512359142303, 0.0024522454477846622, 0.01476968452334404, 0.028091911226511, -0.037943050265312195, 0.061720699071884155, 0.013013061136007309, -0.026419606059789658, -0.001090862788259983, 0.004170222673565149, 0.003381498856469989, 0.017608387395739555, 0.031028984114527702, 0.00180053838994354, 0.013132511638104916, -0.00555795431137085, -0.018001869320869446, -0.030213911086320877, 0.00186729000415653, 0.02013792283833027, 0.037943050265312195, 0.03361473232507706, 0.019913075491786003, 0.014355121180415154, 0.012008273042738438, 0.03738093376159668, 0.020278453826904297, 0.007553477771580219, -0.020278453826904297, 0.017931604757905006, -0.002236180705949664, -0.04654347524046898, -0.006889474578201771, -0.012886584736406803, -0.012633631005883217, 0.01097537949681282, -0.027923274785280228, 0.008740955032408237, -0.006109533831477165, 0.053429439663887024, 0.016891684383153915, -0.03288397938013077, -0.0030916561372578144, -0.010694319382309914, 0.011059696786105633, -0.003987533506006002, -0.007300524041056633, 0.013441677205264568, -0.024086810648441315, 0.01595013402402401, -0.012155829928815365, 0.0026612835936248302, -0.0033797421492636204, -0.008017226122319698, -0.03510434925556183, 0.029173990711569786, 0.03679070621728897, 0.013448704034090042, -0.0017179771093651652, 0.006070888135582209, -0.009485762566328049, -0.01999739371240139, -0.002216857858002186, -0.008192888461053371, -0.035385407507419586, -0.01876073144376278, 0.0062184445559978485, 0.00550525588914752, -0.015373962931334972, 0.006274656392633915, -0.032574813812971115, 0.026813089847564697, 0.022245870903134346, 0.002729791682213545, 0.002137809991836548, 0.031225726008415222, 0.012071511708199978, -0.05059073492884636, 0.012001247145235538, 0.006450318731367588, -0.007757246028631926, 0.0222177654504776, -0.021515116095542908, -0.0021553761325776577, -0.034682758152484894, -0.004173735622316599, 0.023356055840849876, -0.028597818687558174, 0.021529167890548706, 0.022836096584796906, -0.01711653172969818, -0.027333050966262817, 0.04078175500035286, -0.012036379426717758, -0.030073381960392, -0.021641593426465988, -0.013455730862915516, -0.027150360867381096, -0.024691089987754822, 0.004268593154847622, 0.027684375643730164, 0.022653406485915184, 0.06514962762594223, 0.025829380378127098, -0.030410652980208397, 0.020081711933016777, 0.009563053958117962, 0.007996146567165852, -0.006671653129160404, 0.013308173976838589, -0.0013490862911567092, -0.01055378932505846, 0.029455050826072693, 0.01284442562609911, 0.020095763728022575, -0.02828865312039852, 0.00871987547725439, 0.0022309108171612024, -0.007904802449047565, 0.0035027058329433203, 0.0017777022439986467, -7.037469913484529e-05, 0.01822671853005886, -0.019168267026543617, -0.005947924684733152, -0.0029072107281535864, -0.010061935521662235, -0.009176596999168396, -0.02182428166270256, 0.03229375183582306, 0.03991046920418739, -0.048791952431201935, 0.0038575436919927597, 0.010610001161694527, -0.004827199503779411, -0.0004602351691573858, 0.028471341356635094, -0.03552594035863876, -0.0036081031430512667, 0.012486075051128864, -0.01493832003325224, -0.012760107405483723, 0.012408783659338951, -0.0111159086227417, 0.028007593005895615, -0.041259557008743286, -0.01580960489809513, -0.011403994634747505, 0.012197988107800484, 0.013350333087146282, -0.017158690840005875, -0.004468848463147879, -0.01672304794192314, 0.0010776880662888288, -0.032912082970142365, -0.04567219316959381, 0.021290268748998642, 0.021782122552394867, -0.02889293059706688, 0.02948315627872944, 0.008769060485064983, 0.014017850160598755, -0.008523133583366871, 0.006285196170210838, 0.04027584567666054, 0.0050134011544287205, -0.02653202973306179, 0.01901368424296379, 0.03386768698692322, 0.015992293134331703, -0.015064796432852745, -0.028457289561629295, -0.005709024146199226, 0.02464893087744713, 0.02463487721979618, 0.0107786376029253, -0.004946649540215731, 0.010933220386505127, -0.0189574733376503, -0.01290766429156065, -0.009162544272840023, -0.014629154466092587, 0.005083666183054447, -0.01758028008043766, 3.0432117910095258e-06, -0.011073749512434006, 0.00855826586484909, 0.04058501124382019, 0.016062557697296143, -0.012373650446534157, -0.013518968597054482, -0.053092166781425476, -0.010666212998330593, 0.0030846295412629843, 0.00521014304831624, 0.017692703753709793, -0.007946961559355259, -0.02948315627872944, -0.017538120970129967, -0.015149114653468132, 0.0036291826982051134, -0.004967729095369577, -0.00737078906968236, -0.017214903607964516, 0.020166030153632164, 0.015795551240444183, -0.017720811069011688, -0.012500127777457237, 0.013308173976838589, -0.005726590286940336, -0.0020288992673158646, -0.009921405464410782, 0.011319677345454693, -0.011347782798111439, -0.002712225541472435, 0.01254228688776493, 0.0013350333319976926, -0.009984644129872322, 0.030607394874095917, -0.02928641438484192, 0.028977248817682266, -0.009584133513271809, -0.009914378635585308, -0.034795183688402176, -0.015359909273684025, -0.0020095764193683863, 0.023876016959547997, 0.008312338963150978, -0.019688228145241737, -0.009626292623579502, -0.011930981650948524, -0.010905114002525806, -0.011909902095794678, 0.022723672911524773, -0.018409406766295433, -0.001606431556865573, -0.03861759603023529, -0.016652783378958702, -0.002569939009845257, -0.011671002022922039, 0.010195438750088215, -0.026124494150280952, -0.006629494484513998, -0.009064173325896263, -0.0277686920017004, 0.01876073144376278, -0.0003783326246775687, 0.02405870519578457, -0.031928375363349915, -0.0145448362454772, -0.016512254253029823, -0.016231194138526917, -0.014200538396835327, -0.01297792885452509, -0.028583765029907227, -0.0036713415756821632, 0.010736478492617607, 0.009689531289041042, -0.0023907634895294905, 0.018718572333455086, -0.006689219735562801, 0.025927752256393433, 0.01071539893746376, -0.02405870519578457, -0.0019270151387900114, -0.00888148508965969, -0.008438815362751484, 0.0006565377698279917, 0.009647372178733349, -0.006566255819052458, -0.03586320951581001, -0.028387023136019707, 0.0326591320335865, -0.008726902306079865, -0.007694007828831673, -0.011959088034927845, -0.001056608627550304, -0.011642895638942719, -0.008199915289878845, -0.006295735947787762, -0.00737078906968236, 0.007427000906318426, 0.009310100227594376, -0.032912082970142365, -0.012717949226498604, -0.0019059357000514865, -0.0006833262741565704, -0.019294744357466698, -0.02620881237089634, -0.00560713978484273, -0.05393534526228905, -0.02064383029937744, -0.023609010502696037, 0.0326872356235981, 0.009043093770742416, -0.01922447979450226, 0.018999632447957993, -0.004061311949044466, -0.02438192442059517, 0.021796176210045815, -0.004050772171467543, -0.009682504460215569, 0.02639150060713291, 0.0027104688342660666, -0.016821419820189476, 0.0297361109405756, -0.017285168170928955, -0.027600057423114777, 0.0003142158966511488, -0.015486386604607105, -0.01271092239767313, 0.0007289984496310353, 0.017931604757905006, -0.011453180573880672, -0.005586060229688883, 0.031225726008415222, 0.002239694120362401, 0.022119393572211266, -0.0183110348880291, -0.0173132736235857, -0.020685989409685135, 0.023805752396583557, -0.01562691666185856, 0.008410709910094738, -0.00356945744715631, -0.005747669842094183, 0.017228955402970314, -0.017425697296857834, 0.012155829928815365, -0.004911517258733511, -0.008705822750926018, 0.03679070621728897, -0.006014676298946142, -0.010307862423360348, 0.0010126930428668857, -0.005066100042313337, 0.009605213068425655, -0.029314521700143814, 0.018901260569691658, 0.01493832003325224, 0.01985686458647251, -0.0006416064570657909, -0.006295735947787762, -0.013856240548193455, 0.011671002022922039, -0.0006047174101695418, 0.007862643338739872, -0.0011435614433139563, 0.017411645501852036, -0.008108570240437984, 0.02823244035243988, 0.009036067873239517, 0.006383567117154598, -0.010771610774099827, -0.009766822680830956, 0.010764583945274353, 0.027136309072375298, 0.020601671189069748, 0.020826520398259163, -0.019112056121230125, -0.005016914568841457, -0.001323615200817585, 0.01967417448759079, 0.042974021285772324, -0.006791103631258011, -0.011333730071783066, 0.016441989690065384, -0.003363932715728879, 0.01587986946105957, -0.006176285445690155, -0.01776297017931938, -0.01582365855574608, 0.037352826446294785, -0.002183482050895691, -0.0043915570713579655, -0.024915937334299088, 0.019575804471969604, -0.05410398170351982, 0.01121427956968546, 0.003934835083782673, 0.011059696786105633, -0.012886584736406803, 0.019112056121230125, 0.00197795731946826, 0.01280929334461689, 0.01582365855574608, 0.02588559314608574, 0.011959088034927845, 0.003984020557254553, 0.0030758464708924294, 0.008431789465248585, -0.00555795431137085, -0.000789601937867701, 0.0002039878163486719, 0.007511319126933813, -0.00097668229136616, 0.006956226192414761, 0.02398844063282013, 0.00098897865973413, -0.006770024076104164, -0.00279478682205081, 0.013462756760418415, -0.047274231910705566, -0.0007013316499069333, -0.010406233370304108, 0.01121427956968546, 0.005016914568841457, -0.001661765156313777, -0.011256438679993153, 0.03263102471828461, -0.009464683942496777, 0.004254540428519249, 0.007841563783586025, -0.032518599182367325, -0.014755630865693092, -0.0073918686248362064, 0.0008545969612896442, 0.014158379286527634, 0.019786598160862923, 0.0031812437810003757, 0.012394730001688004, 0.0010126930428668857, -0.020798413082957268, -0.009696558117866516, -0.004644510801881552, 0.04482901468873024, 0.015247485600411892, -0.04229947552084923, 0.004138603340834379, -0.028063805773854256, 0.005533361807465553, -0.000522156129591167, -0.0042931861244142056, 0.010694319382309914, -0.02032061293721199, -0.0018110780511051416, -0.015163167379796505, 0.010399206541478634, 0.0048693581484258175, -0.0014817112823948264, -0.0011251168325543404, -0.017889445647597313, 0.0107856635004282, 0.008565292693674564, -0.03170352801680565, -0.03170352801680565, -0.01474157813936472, 0.021346479654312134, -0.010469472035765648, 0.013125485740602016, -0.028120016679167747, 0.011221306398510933, -0.009752769954502583, 0.009338206611573696, 0.010230571031570435, -0.001062756753526628, -0.011734239757061005, 0.0005076639936305583, -0.005445530638098717, -0.004732341971248388, 0.011909902095794678, -0.0010144496336579323, -0.03867380693554878, -0.008136676624417305, 0.008115597069263458, -0.007785351946949959, -0.004335344769060612, -0.007799405138939619, 0.028527554124593735, -0.02085462585091591, -0.009401445277035236, 0.018395353108644485, -0.017271114513278008, 0.03771820291876793, -0.01770675741136074, 0.005364725831896067, -0.019126107916235924, 0.01562691666185856, -0.0019516078755259514, -0.0001651225466048345, -0.013905425556004047, 0.021402692422270775, -0.003476356389001012, 0.012732001952826977, 0.008249100297689438, -0.0019955234602093697, 0.04215894639492035, 0.003197053447365761, -0.012113670818507671, -0.008776087313890457, -0.020180081948637962, -0.013919479213654995, 0.009127411991357803, 0.01411622017621994, -0.010869981721043587, -0.005153931211680174, -0.012830372899770737, -0.02248477190732956, -0.0010425556683912873, 0.006401133257895708, 0.004180761985480785, -0.006938660051673651, 0.021332425996661186, -0.007644822355359793, 0.01901368424296379, -0.007427000906318426, 0.0031109789852052927, -0.022245870903134346, 0.0029862585943192244, -0.005839013960212469, 0.021936705335974693, -0.007750219665467739, 0.008347471244633198, -0.021402692422270775, 0.018704518675804138, 0.01679331436753273, -0.006699759047478437, -0.06188933178782463, -0.005118798930197954, 0.023777645081281662, -0.0027561411261558533, 0.0012270009610801935, 0.02150106243789196, -0.013856240548193455, -0.004830712452530861, 0.010511630214750767, 0.0202503465116024, -0.01595013402402401, 0.029960958287119865, 0.0003436393162701279, -0.012570392340421677, -0.01940716803073883, 0.009682504460215569, 0.013757869601249695, 0.0027016857638955116, 0.022793937474489212, -0.02717846818268299, -0.009570080786943436, 0.007490239571779966, 0.024353818967938423, 0.011867742985486984, 0.0023907634895294905, -0.015725286677479744, 0.018535884097218513, -0.00011703499330906197, -0.004321292042732239, -0.0024346790742129087, -0.01935095712542534, 0.018339142203330994, -0.00037240402889437973, 0.002724522026255727, 0.02894914336502552, 0.00544201722368598, -0.01743975095450878, 0.026349341496825218, -0.012275279499590397, 0.006383567117154598, -0.002724522026255727, -0.011151040904223919, -0.009640345349907875, -0.0015194787411019206, -0.0042475140653550625, -0.03305261582136154, -0.020601671189069748, 0.016947897151112556, -0.0003126788651570678, 0.018353193998336792, -0.0025084572844207287, -0.0046796430833637714, -0.01856398954987526, -0.012162855826318264, 0.022920414805412292, -0.0418216735124588, 0.03738093376159668, 0.00934523344039917, 0.002879104809835553, 0.008649610914289951, 0.011073749512434006, 0.014755630865693092, -0.025646692141890526, 0.02386196330189705, 0.00543850427493453, 0.029202096164226532, 0.0014114463701844215, 0.015205326490104198, 0.006046295631676912, -0.01378597505390644, -0.010834849439561367, 0.00016578126815147698, -0.017931604757905006, 0.006098994053900242, -0.009366312995553017, -0.016652783378958702, -0.01414432656019926, -0.00275262794457376, -0.0002087087486870587, -0.010546763427555561, 0.004493440967053175, 0.01587986946105957, 0.004423175938427448, -0.01235257089138031, 0.01647009514272213, -0.005080153234302998, -0.007820484228432178, 0.01659657247364521, -0.010300835594534874, 0.03870191425085068, 0.004813146311789751, -0.025773169472813606, -0.035835105925798416, 0.004511007107794285, -0.01652630791068077, 0.0038821364287286997, 0.024719195440411568, -0.057027000933885574, 0.0018356707878410816, -0.015177221037447453, -0.024620825424790382, 0.000789601937867701, -0.007982093840837479, -0.012928743846714497, 0.04828604683279991, 0.017144639045000076, -0.012162855826318264, 0.0037486329674720764, 0.0012955092824995518, 0.0066857063211500645, 0.006088454741984606, 0.0048201726749539375, 0.002454001922160387, 0.01061702799052, 0.024213287979364395, -0.011488312855362892, 0.0014079331886023283, 0.013898399658501148, 0.016484148800373077, 0.01300603523850441, 0.03743714466691017, 0.02861187234520912, 0.005445530638098717, 0.002076328033581376, 0.004373990464955568, -0.007715087383985519, 0.009584133513271809, 0.022049129009246826, 0.0032462389208376408, 0.006594361737370491, 0.009401445277035236, -0.004381017293781042, -0.014172432944178581, -0.017538120970129967, -0.023243632167577744, 0.010504604317247868, 0.0029897720087319613, -0.023299844935536385, 0.013870293274521828, 0.02783895842730999, -0.010364074259996414, 0.03071981854736805, -0.014530783519148827, 0.024086810648441315, -0.013547074981033802, -0.003962941002100706, 0.019955234602093697, -0.02116379141807556, 0.015135061927139759, -0.0004720923607237637, 0.01075053121894598, 0.007096755784004927, 0.005115285515785217, 0.003959427587687969, 0.013069272972643375, -0.0326872356235981, -0.01300603523850441, -0.001997280167415738, -0.0009617509786039591, -0.016624677926301956, -0.00702297780662775, -0.00865663681179285, -0.011649922467768192, 0.009647372178733349, 0.005793341901153326, 0.005248788744211197, 0.01048352476209402, 0.020503301173448563, 0.005716050509363413, -0.032125115394592285, 0.0009678991627879441, -0.028204334899783134, 0.005034480709582567, 0.00525932852178812, -0.017158690840005875, -0.009162544272840023, 0.010827822610735893, 0.004746394697576761, 0.023833857849240303, 0.003077603178098798, -0.008642584085464478, -0.006471398286521435, -0.02438192442059517, -0.024325711652636528, 0.01147426012903452, -0.010188411921262741, -0.005677404813468456, -0.01218393538147211, -0.0009204703383147717, 0.005972517188638449, 0.029117779806256294, 0.0018356707878410816, -0.018732625991106033, 0.009942485019564629, -0.01104564405977726, 0.0011628842912614346, -0.0060744015499949455, -0.0145448362454772, 0.013462756760418415, 0.003158407751470804, -0.017622439190745354, 0.008684743195772171, 0.016062557697296143, 0.01966012269258499, 0.003167190821841359, -0.019182320684194565, 0.021810228005051613, 0.03665017709136009, -0.013504915870726109, 0.010701346211135387, -0.01810024119913578, -0.012162855826318264, -0.04066932946443558, -0.015781499445438385, 0.009619266726076603, -0.011059696786105633, -0.009900325909256935, -0.0027333050966262817, -0.004440742544829845, 0.02103731408715248, 0.009549001231789589, 0.020503301173448563, 0.009520895779132843, 0.008958776481449604, -0.012830372899770737, 0.021908599883317947, 0.016371725127100945, 0.009970590472221375, 0.018606148660182953, -0.006503017619252205, -0.003360419301316142, -0.012127723544836044, 0.026911461725831032, 0.02445218898355961, 0.025042414665222168, -0.008094517514109612, 0.004876384977251291, -0.009106332436203957, 0.03145057335495949, 0.04907301440834999, -0.017875393852591515, -0.016160929575562477, 0.013905425556004047, 0.0020534920040518045, -0.008670689538121223, -0.01476968452334404, -0.010118147358298302, -0.007609689608216286, -0.01973038725554943, -0.02339821495115757, -0.010820796713232994, -0.0031847571954131126, 0.002670066663995385, 0.013624366372823715, -0.022709619253873825, -0.01752406917512417, 0.01287955790758133, 0.020700043067336082, -0.01752406917512417, 0.04496954381465912, 0.00020991642668377608, -0.02136053331196308, 0.030804136767983437, 0.009984644129872322, 0.019055843353271484, 0.011249411851167679, 0.011966113932430744, 0.0008054115460254252, -0.005677404813468456, 0.0024135997518897057, 0.00720215355977416, 0.030410652980208397, 0.006088454741984606, 0.014994531869888306, -0.015022638253867626, -0.025323474779725075, -0.008586372248828411, 0.013244935311377048, -0.029426945373415947, 0.016638731583952904, 0.032181330025196075, 0.01680736616253853, -0.004440742544829845, -0.004749908111989498, 0.013856240548193455, -0.015711234882473946, 0.004623431246727705, -0.006095481105148792, -0.014088114723563194, -0.008424762636423111, -0.006278169807046652, -0.010005723685026169, 0.010792690329253674, -0.011987193487584591, -0.024691089987754822, -0.0016099447384476662, -0.003818897996097803, 0.00018719011859502643, -0.005399858579039574, -0.006668140180408955, 0.010293809697031975, -0.006798129994422197, -0.0057546962052583694, 0.00368539453484118, 0.010736478492617607, 0.012696869671344757, 0.02313120849430561, 0.008066412061452866, 0.0020622750744223595, 0.003984020557254553, -0.01430593617260456, -0.0033094773534685373, -0.021276215091347694, 0.001624876051209867, -0.009274967946112156, -0.006351947784423828, 0.00547363655641675, -0.004092931281775236, 0.05070316046476364, 0.0006749823223799467, -0.0036537754349410534, 0.01323790941387415, 0.0003721844404935837, -0.018128346651792526, -0.022526931017637253, 0.01022354420274496, 0.010047881864011288, -0.00043388581252656877, 0.01058189570903778, 0.004388043656945229, 0.007412948179990053, -0.0005678283050656319, -0.04674021899700165, 0.01235257089138031, 0.01287955790758133, 0.004121037200093269, 0.011797478422522545, 0.045110072940588, 0.014601048082113266, -0.006847315467894077, -0.02242855913937092, 0.018521830439567566, -0.01042028609663248, 0.02724873274564743, 0.008333418518304825, 0.001415837905369699, 0.017720811069011688, -0.012127723544836044, 0.010209491476416588, 0.0034816262777894735, -0.007546451408416033, 0.001972687430679798, -0.003557161195203662, 0.017875393852591515, -0.007504292298108339, 0.002485621254891157, -0.002466298406943679, 0.008410709910094738, 0.006467884872108698, -0.01673710159957409, 0.015542598441243172, 0.01967417448759079, -0.007349709514528513, -0.008108570240437984, 0.007167020812630653, -0.005101232323795557, -0.006056835409253836, -0.006176285445690155, -0.016301458701491356, -0.011249411851167679, 0.0028527553658932447, -0.009232808835804462, 0.03187216445803642, -0.001216461299918592, 0.022133447229862213, -0.02071409486234188, 0.0006126221851445735, -0.009036067873239517, -0.017271114513278008, 0.009794928133487701, -0.007462133653461933, -0.004609378054738045, -0.03150678426027298, -0.014910213649272919, -0.012212041765451431, -0.03187216445803642, 0.00522770918905735, -0.0017021674429997802, -0.022976625710725784, 0.012338518165051937, 0.004732341971248388, -0.012373650446534157, -0.0076659019105136395, 0.029511261731386185, 0.0013877319870516658, 0.017467856407165527, 0.01440430711954832, -0.001833914197050035, -0.00022550644644070417, 0.00370998727157712, 0.0034394674003124237, -0.017032213509082794, 0.0061376397497951984, 0.0016178495716303587, 0.007490239571779966, -0.017018161714076996, -0.008431789465248585, -0.02979232184588909, 0.021711857989430428, -0.014924267306923866, 0.012261226773262024, -0.0035958068910986185, 0.012865505181252956, -0.006127100437879562, -0.010097067803144455, 0.016118770465254784, 0.014558889903128147, -0.01496642641723156, 0.006654086988419294, 0.028260547667741776, -0.0020166030153632164, 0.022330189123749733, -0.006808669771999121, -0.024817567318677902, 0.018128346651792526, 0.0060287294909358025, -0.035132456570863724, -0.015008584596216679, -0.008382603526115417, 0.003864570055156946, 0.03412064164876938, 0.003118005348369479, -0.021585380658507347, -0.0061235870234668255, 0.01274605467915535, -0.004546139854937792, -0.011930981650948524, -0.009605213068425655, -0.02848539501428604, -0.004226434510201216, 0.0071494546718895435, 0.0016687916358932853, 0.015655022114515305, -0.004834225866943598, -0.0036643152125179768, -0.0024487320333719254, -0.013132511638104916, -0.0027719507925212383, -0.016189035028219223, -0.01434106845408678, 0.015697181224822998, -0.015865817666053772, 0.008579345420002937, -0.007560504600405693, -0.011902876198291779, -0.003397308522835374, 0.022119393572211266, -0.022470718249678612, 0.018212664872407913, 0.02457866631448269, 0.013680578209459782, 0.011579656973481178, 0.0070054116658866405, 0.013153591193258762, -0.022639354690909386, -0.029820427298545837, 0.002659526886418462, -0.014418359845876694, 0.029314521700143814, -0.003966454416513443, -0.004321292042732239, -0.0028053265996277332, 0.017594333738088608, -0.006710298825055361, -0.015655022114515305, 0.02880861423909664, 0.00010918508633039892, -0.004844765644520521, -0.0008985125459730625, -0.00710729556158185, 0.006394106894731522, -0.015247485600411892, 0.0013042923528701067, 0.015865817666053772, 0.011994220316410065, 0.018184559419751167, 0.010525683872401714, -0.008438815362751484, -0.020278453826904297, -0.0003458351129665971, 0.016315512359142303, -0.026222864165902138, -0.00529094785451889, -0.015008584596216679, 0.007560504600405693, 0.009556028060615063, -0.016582518815994263, -0.008502054028213024, -0.00732160359621048, -0.006935146637260914, 0.023103103041648865, 0.010019776411354542, 0.0008884119451977313, -0.010511630214750767, -0.008368550799787045, -0.01582365855574608, -0.0006108655943535268, 0.014334041625261307, -0.01595013402402401, 0.025435898452997208, 0.01876073144376278, 0.0030547669157385826, -0.01022354420274496, -0.008747980929911137, 0.0104554183781147, 0.004377503879368305, 0.016652783378958702, -0.010272730141878128, -0.005076639819890261, 0.007736166473478079, -0.0006965009379200637, -0.0005331350257620215, -0.0005906643928028643, -0.030691713094711304, 0.011614790186285973, -0.020011447370052338, 0.007968041114509106, 0.006520583759993315, -0.03249049559235573, -0.009429550729691982, -0.00542445108294487, 0.00934523344039917, -0.017341379076242447, 0.0033533929381519556, -0.00030850686016492546, 0.01621714048087597, 0.002399546792730689, 0.008473948575556278, 0.020601671189069748, 0.0030951693188399076, 0.007195126730948687, 0.01084890216588974, -0.016498200595378876, 0.005118798930197954, 0.004447768907994032, 0.016498200595378876, 0.021472956985235214, 0.002027142560109496, 0.023229580372571945, 0.013645445927977562, -0.017875393852591515, 0.009274967946112156, 0.00908525288105011, 0.010427312925457954, -9.946876525646076e-05, -0.008769060485064983, 0.0179737638682127, 0.004359937738627195, -0.00013141734234523028, 0.01810024119913578, -0.031057091429829597, -0.011403994634747505, -0.004707749001681805, -0.005730103701353073, -0.016877630725502968, 0.0013622610131278634, -0.0014913727063685656, -2.4222181309596635e-05, 0.0048201726749539375, 0.0012691599549725652, -0.014067035168409348, 0.01620308868587017, 0.01908395066857338, 0.017805129289627075, -0.007792378775775433, -0.0045356000773608685, 0.014783737249672413, -0.015317750163376331, 0.008495028130710125, 0.014896160922944546, -0.009970590472221375, -0.007869670167565346, 0.020278453826904297, 0.005354186054319143, -0.024606771767139435, 0.014586995355784893, 0.016694942489266396, 0.013603286817669868, -0.008410709910094738, 0.003232185961678624, 0.02143079787492752, 0.04887627065181732, -0.004219407681375742, 0.006450318731367588, -0.005427964497357607, -0.028148123994469643, -0.0012709165457636118, 0.008354498073458672, 0.0005739764892496169, 0.0015950134256854653, -0.005023940932005644, -0.02085462585091591, -0.0036081031430512667, -0.009738716296851635, -0.002116730436682701, -0.009464683942496777, -0.006706785876303911, 0.00537526560947299, 0.008930670097470284, 4.6145655687723774e-06, 0.011101855896413326, -0.0160204004496336, 0.0031707040034234524, 0.01580960489809513, -0.009717636741697788, -0.005413911305367947, -0.0009995183208957314, 0.007869670167565346, -0.007142428308725357, -0.00573713006451726, -0.0035185154993087053, -0.017805129289627075, 0.0186342541128397, 0.004749908111989498, 0.02110757865011692, 0.01804402843117714, 0.0020007933489978313, 0.02987664006650448, 0.014355121180415154, -0.01071539893746376, 0.013287094421684742, -0.014502677135169506, -0.00921875610947609, 0.0013631392503157258, 4.7840523620834574e-05, 0.008860405534505844, -0.019913075491786003, 0.017720811069011688, 0.0011453180341050029, 0.012914690189063549, 0.0007654483779333532, 0.013736790046095848, -0.004451282322406769, 0.03763388469815254, 0.0043072388507425785, 0.009176596999168396, 0.013483836315572262, -0.01888720877468586, -0.0005823204410262406, 0.00030762856476940215, -0.010265703313052654, -0.009352259337902069, 0.012190962210297585, 0.008509080857038498, -0.01836724765598774, -0.02053140662610531, 0.00020464655244722962, 0.0010487037943676114, -0.011621816083788872, -0.003400821704417467, -0.004739368334412575, -0.01307629980146885, 0.010497577488422394, 0.0006569768884219229, 0.022063182666897774, 0.010961325839161873, 0.013132511638104916, -0.004598838277161121, 0.015359909273684025, 0.0025049441028386354, 0.008073437958955765, 0.010729451663792133, -0.014882108196616173, 0.0016749397618696094, 0.0048201726749539375, 0.01928069069981575, -0.02033466473221779, 0.01824077032506466, 0.0013323983876034617, 0.011298597790300846, -0.015233432874083519, -0.0040683383122086525, -0.0011110638733953238, 0.002540076617151499, -0.028415130451321602, 0.0036748547572642565, -0.02934262715280056, -0.016498200595378876, 0.00022034636640455574, -0.01967417448759079, -0.012991981580853462, -0.010595948435366154, -0.011291570961475372, 0.018451565876603127, -0.009935458190739155, -0.009078226052224636, -0.013905425556004047, -0.0016345374751836061, 0.04634673520922661, 0.005951438099145889, -0.01824077032506466, -0.009464683942496777, 0.0029897720087319613, 0.011579656973481178, 0.023342004045844078, 0.013083326630294323, 0.002141323173418641, -0.00373458000831306, -0.028513500466942787, -0.01323790941387415, -0.005649298895150423, -0.008495028130710125, -6.0383907111827284e-05, 0.004911517258733511, -0.023960335180163383, 0.00704054394736886, 0.00712134875357151, -0.0006337016820907593, -0.010434338822960854, 0.01431296207010746, 0.011052670888602734, -0.007191613782197237, -0.012359597720205784, -0.03249049559235573, -0.01680736616253853, 0.005831987597048283, 0.03111330233514309, -0.006478424649685621, -0.0008308825781568885, 0.014284856617450714, -0.028654031455516815, 0.0012999008176848292, -0.01654035970568657, 0.0047745006158947945, 0.0066505735740065575, -0.021515116095542908, 0.0042615667916834354, 0.005810908041894436, 0.008811219595372677, -0.0036783681716769934, -0.0029599093832075596, -0.018648307770490646, 0.019322849810123444, 0.004071851726621389, 0.0431426540017128, 0.003031930886209011, -0.0006477546412497759, 0.013525995425879955, 0.0036959343124181032, 0.001999036641791463, -0.009759795852005482, -0.004043745808303356, -0.023960335180163383, -0.005213656462728977, 0.022583141922950745, -0.015865817666053772, 0.01378597505390644, -0.0007008924731053412, -0.027824904769659042, -0.011094829067587852, -0.004426689352840185, -0.0013684091391041875, 0.02424139343202114, 0.01883099600672722, 0.009225782938301563, -0.0021026774775236845, -0.016259299591183662, 0.007356736343353987, -0.002854512073099613, 0.02203507535159588, 0.01483994908630848, 0.009106332436203957, -0.027557898312807083, -0.008797166869044304, -0.0045672194100916386, -0.0002911602205131203, 0.007757246028631926, -0.013814081437885761, 0.0007013316499069333, 0.0032058365177363157, -0.012366624549031258, 0.019252585247159004, -0.007750219665467739, 0.010567842982709408, 0.001587986946105957, 0.004159682895988226, -0.013364385813474655, 0.0016687916358932853, -0.016104716807603836, 0.009029041044414043, 0.015345856547355652, 0.0010091797448694706, -0.005680918227881193, 0.01647009514272213, -0.009598187170922756, 0.010307862423360348, 0.012626604177057743, -0.016638731583952904, -0.014783737249672413, -0.011959088034927845, 0.0017777022439986467, 0.016652783378958702, 0.03549783304333687, -0.003077603178098798, -0.004672616720199585, -0.0014369174605235457, 0.01427782978862524, -0.018268877640366554, 0.007356736343353987, 0.005480662919580936, 0.008403683081269264, -0.021613486111164093, -0.006032242439687252, -0.0060744015499949455, 0.0019305284367874265, 0.014207565225660801, -0.010279756039381027, 0.011762346141040325, 0.0010100580984726548, -0.006485451478511095, 0.021978864446282387, 0.007546451408416033, 0.012359597720205784, 0.008677716366946697, 0.0030846295412629843, 0.01706032082438469, 0.004475874826312065, -0.0020903809927403927, 0.008101544342935085, 0.013610313646495342, -0.03145057335495949, 0.02490188367664814, 0.008312338963150978, 0.012464995495975018, 0.020868677645921707, 0.028063805773854256, 0.012275279499590397, 0.013083326630294323, 0.004609378054738045, -0.029202096164226532, 0.012310412712395191, 0.01659657247364521, 0.01953364536166191, -0.009654399007558823, 0.023679275065660477, -0.007258365396410227, 0.022386400029063225, -0.012036379426717758, 0.014783737249672413, 0.003532568458467722, 0.00543850427493453, 0.003458790248259902, 0.014615101739764214, 0.005761722568422556, 0.00741997454315424, 0.010342994704842567, 0.03423306345939636, -0.01842346042394638, 0.016765207052230835, 0.009366312995553017, -0.008473948575556278, -0.009197676554322243, 0.008747980929911137, 0.002884374698624015, 0.012212041765451431, 0.0074340277351439, 0.008305312134325504, 0.021894546225667, -0.0015300184022635221, -0.004816659726202488, 0.012275279499590397, 0.01652630791068077, 0.015205326490104198, -0.010406233370304108, 0.008326391689479351, 0.0014738064492121339, 0.011347782798111439, 0.015795551240444183, -0.010631080716848373, -0.0010487037943676114, -0.003885649610310793, 0.019294744357466698, -0.01307629980146885, 0.0017425697296857834, 0.012507153674960136, -0.005315540358424187, 0.0072794449515640736, 0.005969004239886999, 0.010392180643975735, -0.010645134374499321, 0.01104564405977726, 0.008284232579171658, 0.010631080716848373, 0.001944581395946443, -0.018339142203330994, -0.012310412712395191, 0.02053140662610531, -0.0039383480325341225, 0.0020815979223698378, -0.0008317608735524118, -0.02810596488416195, -0.01632956601679325, -0.00859339814633131, 0.005701997317373753, 0.0033428531605750322, 0.002251990372315049, 0.012921717017889023, -0.01457294262945652, -0.002847485477104783, -0.01496642641723156, -0.004971242509782314, -0.007398894988000393, -0.004303725901991129, -0.011038617230951786, -0.004279132932424545, -0.00267884973436594, -0.0176364928483963, 0.004605865105986595, -0.014952372759580612, -0.0003811871283687651, 0.017791075631976128, -0.0009318883530795574, 0.008726902306079865, -0.01300603523850441, -0.0045672194100916386, -0.02234424091875553, -0.014727525413036346, -0.01075053121894598, 0.009106332436203957, -0.001025867648422718, 0.027347102761268616, 0.015219379216432571, 0.008544213138520718, -0.023370109498500824, 0.021711857989430428, 0.0023292817641049623, 0.015542598441243172, -0.013062247075140476, -0.003307720646262169, -0.014825896359980106, 0.008157756179571152, 0.009801954962313175, 0.0021711857989430428, -0.008270179852843285, 0.013715710490942001, 0.008783114142715931, 0.013554100878536701, -0.01120725367218256, 0.009267942048609257, 0.015795551240444183, -0.0041983285918831825, -0.02443813532590866, 0.025829380378127098, 0.016905738040804863, -0.021515116095542908, -0.01264768373221159, -0.008066412061452866, -0.02783895842730999, -0.017552174627780914, -0.013223855756223202, -0.0016521037323400378, -0.008228020742535591, 0.012050432153046131, -0.008972829207777977, 0.00013504037633538246, 0.011790451593697071, -0.00557200750336051, 0.026841195300221443, -0.019505539909005165, 0.002376710530370474, -0.0261525996029377, 0.017987817525863647, -0.008157756179571152, -0.0068262359127402306, 0.019632015377283096, -0.02797948755323887, 0.022470718249678612, 0.009071200154721737, 0.0010487037943676114, 0.0017030457966029644, -0.0052382489666342735, 0.007191613782197237, 0.008776087313890457, 0.006207904778420925, 0.02175401709973812, -0.004813146311789751, -0.0016898710746318102, -0.002064031781628728, 0.009310100227594376, 0.004528573714196682, -0.02359495684504509, 0.010525683872401714, 0.00022660433023702353, -0.0034447372891008854, -0.014074061997234821, -0.006341408006846905, 0.007975067012012005, -0.03437359258532524, 0.006987845525145531, -0.004121037200093269, -0.006671653129160404, -0.015345856547355652, -1.5631198039045557e-05, 0.010054908692836761, 0.003557161195203662, -0.008958776481449604, 0.0058495537377893925, 0.005614166148006916, -0.012226094491779804, 0.009099305607378483, -0.01411622017621994, -0.014783737249672413, -0.021711857989430428, -0.00279478682205081, -0.014390253461897373, 0.008424762636423111, -0.01290766429156065, -0.011446153745055199, -0.01888720877468586, -0.0028211362659931183, 0.014727525413036346, 0.011495339684188366, 0.007771299220621586, -0.015725286677479744, 0.011579656973481178, 0.010132200084626675, 0.0008616234408691525, 0.007124862167984247, -0.005902252625674009, 0.007644822355359793, -0.0018883694428950548, 0.006281683221459389, -0.004893951117992401, -0.020882731303572655, 0.015640968456864357, -0.010511630214750767, 0.0072724181227386, 0.006158719304949045, -0.0021483495365828276, 0.0019674175418913364, -0.03867380693554878, 0.007953987456858158, 0.003980507142841816, -0.021290268748998642, 0.011656948365271091, 0.012162855826318264, -0.007001898251473904, 0.0032796147279441357, 0.007672928273677826, -0.0036748547572642565, -0.0028509986586868763, 0.011656948365271091, -0.005350673105567694, -0.012696869671344757, 0.0013622610131278634, 0.0056563252583146095, -0.010202464647591114, -0.0005871511530131102, -0.021318374201655388, -0.03487950190901756, -0.02144485153257847, 0.00891661737114191, 0.008038305677473545, -0.004876384977251291, -0.00875500775873661, 0.02495809644460678, -0.0033586628269404173, 0.021388638764619827, -0.022569090127944946, 0.008066412061452866, 0.015373962931334972, -0.0064573450945317745, 0.0025049441028386354, -0.011790451593697071, 0.016554413363337517, 0.015570703893899918, 0.0008150729699991643, -0.009296047501266003, 0.020025499165058136, 0.006014676298946142, 0.009338206611573696, 0.012022326700389385, 0.011635868810117245, 0.0010794446570798755, 0.01634361781179905, -0.009598187170922756, -0.011305623687803745, 0.018774783238768578, 0.013301147148013115, -0.008825273253023624, -0.011446153745055199, -0.01587986946105957, -0.02176806889474392, -0.011776398867368698, -0.004289672710001469, -0.010722425766289234, -0.008270179852843285, 0.012535260058939457, -0.0017812155419960618, -0.003720527049154043, -0.02450840175151825, -0.008762034587562084, -0.007679954636842012, -0.0008155121468007565, 0.017819181084632874, 0.0005182037129998207, 0.017594333738088608, 0.012001247145235538, 0.02613854594528675, -0.00535769946873188, -0.014685366302728653, -0.008958776481449604, 0.03842085227370262, 0.0022748264018446207, -0.0018760730745270848, 0.006583821959793568, 0.01783323474228382, 0.0015528545482084155, -0.012703895568847656, 0.0036748547572642565, 0.005139878019690514, 0.007785351946949959, 0.00704054394736886, 0.00550525588914752, 0.008410709910094738, 0.02051735483109951, 0.009780875407159328, -0.009823034517467022, 0.016821419820189476, -0.014432412572205067, -0.023693328723311424, -0.010490551590919495, 0.003074089763686061, 0.013090352527797222, 0.0069246068596839905, 0.004637483973056078, 0.003836464136838913, 0.02418518252670765, -0.03625669330358505, 0.014502677135169506, 0.008663663640618324, -0.0009714124025776982, 0.010427312925457954, 0.009092279709875584, 0.014270802959799767, -0.01842346042394638, -0.015373962931334972, -0.007750219665467739, -0.010146252810955048, 0.006067375186830759, -0.020011447370052338, 0.002273069927468896, 0.007890749722719193, -0.008783114142715931, -0.003421901259571314, -0.002515483880415559, 0.02365116961300373, -0.00013690679043065757, 0.014699419029057026, -0.021191896870732307, -0.012261226773262024, -0.0005511404015123844, -0.011031591333448887, 0.004317778628319502, -0.0003273905604146421, -0.005779288709163666, -0.020109817385673523, -0.008677716366946697, -0.006734891794621944, 0.01691978983581066, -7.893823931226507e-05, 0.03145057335495949, 0.014530783519148827, -0.0031935402657836676, -0.0027508712373673916, -0.020503301173448563, 0.028541605919599533, -0.013961637392640114, 0.005775775760412216, 0.013420597650110722, 0.007349709514528513, -0.012289333157241344, 0.013280068524181843, -0.014186485670506954, -0.003474599914625287, 0.00015930373047012836, -0.0042123813182115555, 0.00704054394736886, 0.010392180643975735, -0.003550134599208832, -0.007539425045251846, -0.0009020257857628167, -0.0008581102010793984, 0.004222921095788479, 0.006805156823247671, 0.001587986946105957, -0.016961948946118355, 0.030747925862669945, -0.015725286677479744, 0.004728828556835651, 0.0012946309288963675, 0.020573565736413002, -0.021009208634495735, -0.0035799972247332335, 0.003581753931939602, 0.009429550729691982, 0.005234736017882824, 0.010673239827156067, 0.007307550869882107, -0.007159994449466467, 0.019055843353271484, 0.010139226913452148, 0.01770675741136074, 0.013701657764613628, 0.027614109218120575, 0.0010732965311035514, -0.0005761722568422556, 0.02601207047700882, 0.014994531869888306, 0.020166030153632164, -0.011874769814312458, -0.006566255819052458, -0.02993285283446312, 0.0182969830930233, -0.04567219316959381, -0.006675166543573141, -0.008523133583366871, -0.011333730071783066, -0.016905738040804863, 0.0024381924886256456, 0.005543901585042477, -0.024086810648441315, -0.0008971950737759471, 0.0016670350451022387, 0.018451565876603127, -0.006337895058095455, -0.012036379426717758, -0.011193200014531612, -0.029230203479528427, 0.009696558117866516, 0.022765832021832466, 0.0020499788224697113, 0.017228955402970314, -0.003948887810111046, 0.0019094489980489016, -0.006253576837480068, -0.0036818813532590866, -0.020095763728022575, 0.02745952643454075, 0.0003879940486513078, 0.02058761939406395, -0.000703527417499572, -0.01680736616253853, -0.018929367884993553, 0.004047258757054806, -0.006481938064098358, -0.0014254993293434381, 0.011558577418327332, 0.009886273182928562, 0.006394106894731522, 0.019491486251354218, -0.012788213789463043, -0.023946281522512436, 0.005940898321568966, -0.0080102002248168, -0.0030372007749974728, -0.013427624478936195, 0.012078538537025452, 0.009352259337902069, 0.00888148508965969, 0.02137458510696888, -0.010160306468605995, 0.008136676624417305, -0.005329593550413847, 0.021318374201655388, -0.03302450850605965, -0.008846351876854897, 0.0025576427578926086, -0.006935146637260914, -0.02300473116338253, 0.011895849369466305, -0.016976002603769302, 0.018198611214756966, -0.025731010362505913, 0.018451565876603127, -0.0020868678111582994, -0.008530160412192345, 0.006366000976413488, 0.007848590612411499, -0.00046111346455290914, -0.007722113747149706, 0.0114391278475523, 0.03943266719579697, -0.002079841447994113, -0.017341379076242447, -0.006885961163789034, -0.0005546536413021386, 0.0013622610131278634, -0.007124862167984247, -0.0006661991938017309, 0.020475195720791817, 0.0015063040191307664, 0.028190283104777336, -0.007026491221040487, 0.004978268872946501, -0.010265703313052654, -0.0061235870234668255, -0.006671653129160404, -0.02698172628879547, -0.013610313646495342, 0.006320328917354345, -0.014994531869888306, 0.004556679632514715, -0.020011447370052338, 0.003516758792102337, 0.007216206286102533, -0.01842346042394638, -0.006534636486321688, 0.011256438679993153, 0.004728828556835651, -0.026096388697624207, -0.012753081507980824, 0.01568312756717205, -0.006510043982416391, 0.00024043774465098977, 0.008143703453242779, -0.043564245104789734, 0.009204703383147717, 0.020756253972649574, -0.010005723685026169, -0.027037937194108963, 0.00275262794457376, -0.003139084903523326, 0.016090665012598038, 0.018086187541484833, 0.02137458510696888, 0.006671653129160404, 0.009197676554322243, -0.00738484226167202, 0.004588298499584198, -0.015135061927139759, 0.0020253860857337713, -0.007996146567165852, 0.006748944520950317, 0.013589234091341496, -0.003720527049154043, -0.02849944867193699, -0.01097537949681282, -0.0005752939614467323, -0.0014755631564185023, -0.0142145911231637, 0.001674061524681747, -0.018325088545680046, -0.004110497422516346, 0.005312027409672737, 0.025969911366701126, 0.00037921094917692244, 0.005305000580847263, 0.01408108789473772, -4.397046359372325e-05, 0.008537186309695244, 0.005631732754409313, -0.023538745939731598, 0.002982745412737131, 0.0007311942172236741, 0.005470123142004013, 8.656856516608968e-05, -0.00859339814633131, -0.016231194138526917, -0.003098682500422001, -0.0072724181227386, 0.010954299941658974, 0.01706032082438469, -0.006987845525145531, -0.009977617301046848, 0.014825896359980106, 0.009865193627774715, 0.01966012269258499, 0.0014799546916037798, 0.002835189225152135, -0.006081427913159132, -0.0033217736054211855, -0.0006596118328161538, -0.003093412611633539, -0.023356055840849876, 0.02182428166270256, -0.001243688864633441, -0.002724522026255727, -0.006717325653880835, 0.017538120970129967, -0.01147426012903452, 0.01686357893049717, 0.0011163337621837854, -0.02508457377552986, -0.008705822750926018, 0.0109472731128335, 0.0013666525483131409, 0.007946961559355259, 0.010181386023759842, -0.021191896870732307, 0.0046761296689510345, -0.015345856547355652, 0.006144666578620672, 0.01810024119913578, 0.005779288709163666, 0.006928120274096727, -0.014755630865693092, -0.012408783659338951, 0.024747300893068314, 0.03142246976494789, -0.0037978184409439564, 0.011530471965670586, 0.010891061276197433, 0.002046465640887618, 0.0004327879287302494, -0.002675336552783847, 0.0014351607533171773, -0.015992293134331703, -0.013195750303566456, -0.004900977481156588, -0.008017226122319698, -0.010905114002525806, -0.006011163350194693, 0.004662076942622662, 0.004440742544829845, 0.007855617441236973, 0.004732341971248388, -0.01718679629266262, 0.0048201726749539375, -0.004156169481575489, -0.01874667778611183, -0.015078850090503693, -0.012233121320605278, 0.001247202162630856, 0.005733616650104523, 0.01607661135494709, 0.014699419029057026, 0.012914690189063549, -0.01738353818655014, 0.0006877178093418479, 0.010855928994715214, -0.00010391521209385246, 0.005378779023885727, 0.007757246028631926, 0.014130273833870888, 0.004208868369460106, 0.00737078906968236, -0.0009354016510769725, 0.01699005626142025, 0.01718679629266262, -0.0109472731128335, 0.010019776411354542, -0.0006262360257096589, 0.006425726227462292, 0.00360107677988708, 0.0070686498656868935, 0.027333050966262817, -0.008340445347130299, -0.0032427257392555475, -0.004233460873365402, 0.00961223989725113, 0.004043745808303356, 0.006141153164207935, -0.008052358403801918, -0.006801643408834934, 0.018915314227342606, -0.02660229429602623, 0.006390593480318785, -0.020559512078762054, -0.020348718389868736, 0.028091911226511, -0.008825273253023624, -0.0011479529784992337, 0.006854341831058264, -0.011656948365271091, -0.013329253531992435, -0.012802266515791416, 0.019505539909005165, 0.014811843633651733, 0.013427624478936195, -0.021852387115359306, 0.03142246976494789, 0.014685366302728653, -0.005034480709582567, -0.0063484348356723785, 0.006710298825055361, 0.009169571101665497, -0.016891684383153915, -0.012886584736406803, -0.01654035970568657, 0.00732160359621048, 0.001591500244103372, 0.009900325909256935, -0.000789601937867701, 2.8956828828086145e-05, 0.005747669842094183, -0.001421986147761345, -0.009605213068425655, 0.00027974217664450407, -0.001772432355210185, -0.015261538326740265, -0.016301458701491356, 0.007539425045251846, -0.004609378054738045, -0.02522510290145874, 0.005213656462728977, -0.000549822929315269, 0.019041791558265686, 0.03934834897518158, 0.0002382419625064358, -0.0028404591139405966, -0.01087700854986906, -0.0030055816750973463, -0.0035554044879972935, -0.020700043067336082, -0.007455106824636459, -0.008256127126514912, 0.007989120669662952, -0.04260864108800888, -0.0032479953952133656, 0.004359937738627195, 0.019842810928821564, -0.0064432923682034016, 0.0017820937791839242, 0.006643547210842371, 0.009584133513271809, -0.005701997317373753, 0.016765207052230835, -0.004788553807884455, 0.020180081948637962, -0.02855565957725048, -0.015781499445438385, -0.0018514804542064667, 0.0017680408200249076, -0.007869670167565346, 0.0007188978488557041, 0.028668083250522614, -0.01313953846693039, -0.003339339978992939, 0.02241450734436512, -0.0024803513661026955, 0.00016940430214162916, 0.008263153955340385, -0.01022354420274496, 0.00179351179394871, -0.007377815432846546, -0.014327015727758408, 0.01600634679198265, 0.016694942489266396, -0.009450630284845829, -0.004047258757054806, 0.0007294376264326274, 0.006014676298946142, 0.009352259337902069, -0.012717949226498604, -0.0053331064991652966, -0.01271092239767313, 0.009296047501266003, -0.023356055840849876, -0.005891712848097086, 0.007588610518723726, 0.008776087313890457, -0.011122935451567173, 0.001480833045206964, -0.005593087058514357, -0.017538120970129967, 0.009000934660434723, -0.019969288259744644, 0.010673239827156067, -0.017467856407165527, 0.016638731583952904, -0.006928120274096727, 0.03313693031668663, 0.0018532370449975133, -0.015036690980196, -0.018128346651792526, 0.01290766429156065, 0.0019147187704220414, -0.016976002603769302, -0.008312338963150978, 0.03246238827705383, 0.02116379141807556, 0.0023573876824229956, 0.0005976908723823726, 0.021585380658507347, -0.017397591844201088, -0.002322255400940776, 0.008537186309695244, -0.03038254752755165, -0.0002274826547363773, -0.003367445897310972, -0.014186485670506954, 0.006134126801043749, -0.03816790133714676, 0.010385153815150261, 0.005041507538408041, -0.0007900411146692932, 0.011059696786105633, 0.004876384977251291, 0.005115285515785217, -0.015992293134331703, -0.0024715682957321405, -0.009429550729691982, -0.013638419099152088, 0.03979804366827011, 0.004381017293781042, -0.0037661991082131863, -0.003720527049154043, 0.010476497933268547, -0.02241450734436512, -0.0005463096895255148, -0.0027333050966262817, 0.002938829828053713, -0.003356906119734049, -0.003063550218939781, 0.0007311942172236741, 0.004244000650942326, 0.01843751221895218, -0.01221906766295433, 0.004012126475572586, -0.022498823702335358, -0.009563053958117962, -0.02286420203745365, 0.015795551240444183, 0.0035308117512613535, -0.00013119776849634945, -0.0035132456105202436, 0.009232808835804462, 0.015556651167571545, 0.006077914964407682, 0.016708996146917343, 0.006151692941784859, 0.004085904452949762, -0.016779260709881783, 0.0074340277351439, -0.00028281626873649657, -0.026236917823553085, 0.021599434316158295, 0.00020903811673633754, -0.000528304313775152, -0.006306275725364685, 0.00944360438734293, 0.001990253571420908, -0.002374954055994749, -0.008698795922100544, -0.019899021834135056, 0.0068754213862121105, 0.009499816223978996, -0.04190599173307419, -0.017285168170928955, 0.0145448362454772, 0.02235829457640648, 0.01850777678191662, 0.004686669446527958, 0.004359937738627195, -0.009190650656819344, -0.027276838198304176, -0.006885961163789034, -0.00924686249345541, 0.003348123049363494, 0.012050432153046131, -0.016905738040804863, -0.014024876058101654, 0.011692081578075886, 0.001250715460628271, 0.009267942048609257, 0.003406091593205929, 0.008642584085464478, -0.005902252625674009, 0.017805129289627075, 0.0045320866629481316, -0.0027139822486788034, 0.006531123537570238, 0.01810024119913578, 0.017299221828579903, -0.02098110318183899, -0.015205326490104198, -0.00746916001662612, -0.02542184479534626, -0.02098110318183899, -0.017805129289627075, -0.002490891143679619, -0.008101544342935085, 0.0024838645476847887, -0.004872871562838554, -0.02098110318183899, 0.004300212487578392, -0.00902201421558857, -0.013736790046095848, 0.007560504600405693, -0.009935458190739155, 0.00902201421558857, 0.009169571101665497, -0.008333418518304825, 0.010708372108638287, -0.0297361109405756, -0.010511630214750767, 0.018015922978520393, -0.004893951117992401, -0.00361864292062819, -0.011720187030732632, -0.012275279499590397, 0.006727865431457758, 0.008431789465248585, 0.0036081031430512667, 0.00532608013600111, 0.0018918827408924699, -0.008965802378952503, -0.008937696926295757, -0.02979232184588909, -0.01430593617260456, -0.009963564574718475, 0.00538931880146265, -0.005045020487159491, -0.017931604757905006, 0.02327173762023449, -0.010216518305242062, 0.0145448362454772, -0.012753081507980824, 0.033165037631988525, 0.009134438820183277, 0.02672877162694931, -0.007511319126933813, 0.0032708316575735807, -0.01915421523153782, -0.0025664258282631636, 0.0069421730004251, 0.0049993484281003475, 0.014488624408841133, 0.026756878942251205, 0.0021641592029482126, 0.002192265121266246, -0.0034728432074189186, 0.00928199477493763, 0.0013842186890542507, -0.012310412712395191, -0.01732732728123665, 0.012928743846714497, 0.010820796713232994, 0.0005138121778145432, 0.015851764008402824, -0.005740643013268709, 0.0013982717646285892, -0.016568465158343315, -0.014137299731373787, 0.038786232471466064, 0.012928743846714497, -0.004802606534212828, 0.027009831741452217, 0.006604901514947414, -0.005146904848515987, 0.021613486111164093, -0.014615101739764214, 0.01238067727535963, -0.00281937955878675, -0.0032181330025196075, -0.013898399658501148, 0.009668451733887196, -0.0007838929304853082, 0.018353193998336792, -0.023749539628624916, 0.029455050826072693, 0.006373027339577675, 0.001972687430679798, 0.008242074400186539, -0.011031591333448887, 0.016652783378958702, 0.006271143443882465, 0.018268877640366554, -0.030354442074894905, 3.1598624445905443e-06, 0.012703895568847656, -0.022372348234057426, 0.0072934976778924465, 0.0017074373317882419, -0.0005388440331444144, -0.025126732885837555, -0.005037994123995304, 0.009029041044414043, 0.010300835594534874, -0.002786003751680255, 0.017791075631976128, -0.011713160201907158, -0.010532709769904613, 0.015893923118710518, 0.008846351876854897, 0.02195075899362564, -0.005817934405058622, 0.0004549653094727546, 0.011776398867368698, -0.012331492267549038, -0.012401756830513477, -0.00871987547725439, 0.006963252555578947, -0.007799405138939619, 0.02438192442059517, 0.020208189263939857, -0.006931633222848177, -0.010736478492617607, -0.0038505170959979296, -0.0031935402657836676, -0.0007101147784851491, -0.03308071941137314, -0.004173735622316599, 0.009710610844194889, -0.000602082465775311, -0.024915937334299088, -0.010083015076816082], "250e7d39-44bb-46ee-b0e8-16ae0d439d8e": [-0.04877758026123047, -0.023231711238622665, -0.014741468243300915, 0.03182714432477951, -0.03630518540740013, -0.028461100533604622, 0.017972268164157867, 0.017446324229240417, -0.027003483846783638, 0.00931672751903534, 0.030700121074914932, 0.005691468715667725, 0.007261788472533226, -0.01013569813221693, -0.019144373014569283, 0.046343207359313965, -0.018362971022725105, 0.003377313958480954, 0.0269584022462368, 0.005086632911115885, 0.07008583843708038, 0.002539559733122587, -0.06167072802782059, 0.010864506475627422, -0.025936568155884743, 0.01069920975714922, 0.0010133819887414575, 0.004834930878132582, -0.02811548113822937, -0.001884007710032165, 0.028941964730620384, 0.02251041680574417, 0.018017349764704704, 0.00033364593400619924, -0.015643086284399033, -0.03693631663918495, 0.007066437508910894, -0.01876869797706604, -0.0037605019751936197, -0.0371166430413723, -0.051452379673719406, 0.0539168044924736, 0.02069215290248394, -0.01080439891666174, -0.031135903671383858, 0.01483162958174944, 0.021939391270279884, 0.000815683277323842, -0.02079734019935131, -0.0010716115357354283, 0.02398306131362915, 0.003858177224174142, 0.0031274904031306505, 3.7567449908237904e-05, 0.017972268164157867, -0.0350128635764122, 0.03591448441147804, 0.08078504353761673, 0.007336923386901617, -0.08084515482187271, -0.004936363082379103, -0.014628765173256397, -0.02626716159284115, -0.007532273884862661, 0.0027198835741728544, -0.016289247199892998, -0.005214362405240536, 0.003888231236487627, -0.04817650094628334, 0.006416520569473505, 0.008302406407892704, 0.032368116080760956, -0.021789122372865677, 0.04814644530415535, -0.014380820095539093, -0.0014425901463255286, 0.061971265822649, 0.0007832813425920904, 0.020601989701390266, 0.02374262921512127, -0.026552675291895866, 0.05722274258732796, 0.038949932903051376, 0.0135693633928895, 0.07200928777456284, 0.013381525874137878, -0.04715466499328613, -0.045291319489479065, 0.0024362492840737104, -0.03819858282804489, 0.0175064317882061, 0.02598164975643158, 0.002567735267803073, 0.01708567701280117, 0.015643086284399033, 0.001725285197608173, 0.021022746339440346, -0.00010648024181136861, 0.02006101980805397, -0.009234079159796238, 0.017311081290245056, 0.040843334048986435, 0.00400093337520957, 0.011736071668565273, -0.005327064543962479, -0.019880695268511772, -0.007592381909489632, 0.012472393922507763, -0.035313405096530914, 0.02545570582151413, 0.037236858159303665, -0.020932583138346672, 0.0009673618478700519, 0.013772227801382542, -0.030489742755889893, -0.03768766671419144, -0.007637463044375181, -0.025395596399903297, 0.002329181879758835, -0.03032444603741169, 0.013554336503148079, 0.009564673528075218, -0.01018829271197319, -0.010781858116388321, -0.027844995260238647, 0.014072767458856106, 0.009023701772093773, 0.012179367244243622, 0.029392773285508156, -0.01425309106707573, -0.0029208692722022533, 0.004981444217264652, -0.0004735846887342632, 0.03882971778512001, 0.0122545026242733, -0.02006101980805397, 0.029002072289586067, 0.049528926610946655, -0.01743129827082157, 0.05403702333569527, -0.022675713524222374, -0.0539168044924736, -0.01708567701280117, -0.0035369754768908024, -0.013389039784669876, -0.03272876515984535, -0.04574212804436684, 0.06085927039384842, -0.007100248243659735, 0.012449853122234344, -0.03064001351594925, -0.03949090465903282, -0.010586507618427277, -0.013298877514898777, -0.0051542543806135654, -0.030384553596377373, -0.0009823888540267944, 0.023607386276125908, 0.003151909215375781, 0.03287903219461441, -0.027213862165808678, -0.058214522898197174, -0.006416520569473505, 0.027679698541760445, 0.05559982731938362, 0.01708567701280117, 0.03272876515984535, 0.020316477864980698, 0.0007396091823466122, 0.013546822592616081, 0.029017100110650063, -0.008918512612581253, 0.0032796384766697884, 0.011473099701106548, -0.01779194548726082, -0.0006536736618727446, 0.01747637800872326, 0.04706450179219246, 0.0010772466193884611, -0.033179573714733124, -0.006044602952897549, 0.021488582715392113, -0.008362514898180962, -0.02685321494936943, 0.015192276798188686, 0.013471688143908978, 0.047425150871276855, 0.029287584125995636, -0.0010659764520823956, -0.014313198626041412, -0.02027139626443386, -0.005394686013460159, -0.010150725021958351, 0.019129347056150436, -0.027604563161730766, -0.004617039579898119, 0.012074179016053677, -0.034261517226696014, -0.0040197172202169895, 0.0037586234975606203, -0.019144373014569283, -0.042075544595718384, -0.021127933636307716, 0.0374772883951664, -0.021203069016337395, 0.03140638768672943, -0.02825072407722473, -0.0060333325527608395, 0.02940780110657215, -0.02342706173658371, 0.0343216247856617, -0.04835682362318039, 0.014140388928353786, 0.0029358963947743177, -0.02269074134528637, 0.013471688143908978, -0.017942214384675026, 0.02500489540398121, 0.011345370672643185, -0.012960771098732948, -0.010045536793768406, 0.0005123261362314224, -0.015522871166467667, -0.004004690330475569, -0.0493786595761776, -0.06305321305990219, -0.0016623596893623471, 0.014981899410486221, -0.047395095229148865, 0.03864939510822296, 0.04390883818268776, 0.008550351485610008, -0.014839143492281437, -0.037447236478328705, -0.024043168872594833, 0.045952506363391876, 0.035523783415555954, -0.004910065792500973, 0.025756243616342545, 0.011630882509052753, 0.003613988868892193, 0.0021263177040964365, -0.009617267176508904, 0.008678081445395947, 0.018828807398676872, -0.0007015721639618278, 0.002945288084447384, 0.020887503400444984, -0.004861228168010712, 0.0010922736255452037, 0.01858837530016899, 0.010331048630177975, 0.016499623656272888, -0.009549645707011223, -0.03669588640332222, 0.03873955458402634, 0.034231461584568024, -0.0016849001403898, -0.023862844333052635, -0.009482024237513542, 0.01589854620397091, 0.031887251883745193, -0.007611165754497051, 0.017100702971220016, 0.005766603630036116, -0.022675713524222374, 0.02181917615234852, -0.02643245831131935, -0.025936568155884743, 0.04408916085958481, -0.013501741923391819, 0.023502197116613388, 0.003640285925939679, 0.011593315750360489, 0.0204817745834589, 0.008437649346888065, 0.003925798460841179, -0.008385054767131805, 0.0017046231077983975, -0.017070649191737175, -0.001343036419712007, 0.013261309824883938, -0.0029227477498352528, 0.014711413532495499, -0.004271419253200293, 0.019685344770550728, -0.02553083933889866, 0.006901140790432692, -0.03329978883266449, -0.012224448844790459, 0.011150019243359566, 0.009068782441318035, 0.012645203620195389, -0.004816147033125162, -0.011803693138062954, -0.00417374400421977, -0.014643792062997818, -0.01621411181986332, -0.0013806038768962026, 0.01425309106707573, 0.0002808166900649667, -0.017130758613348007, 0.003245827741920948, -0.03792809695005417, 0.036154914647340775, -0.05127205699682236, 0.033209625631570816, 0.015327519737184048, -0.015748275443911552, 0.005988251883536577, 0.023096468299627304, -0.011698503978550434, -0.022841010242700577, -0.013952551409602165, 0.009527105838060379, -0.005105416756123304, 0.011443045921623707, 0.029738394543528557, -0.009865212254226208, -0.04351813718676567, 0.032969195395708084, -0.006769654806703329, -0.07435350120067596, 0.04366840422153473, 0.02703353762626648, -0.02532046288251877, 0.024959813803434372, -0.009188998490571976, -0.02160879783332348, -0.00552241550758481, -0.011510667391121387, 0.005210605449974537, -0.018528267741203308, 0.017175838351249695, -0.007427085191011429, -0.023607386276125908, -0.02553083933889866, -0.03738712891936302, -0.02150360867381096, -0.04036246985197067, -0.016063842922449112, -0.009790077805519104, -0.00887343194335699, 0.008497757837176323, 0.022074634209275246, -0.004230095073580742, -0.021834202110767365, 0.009970401413738728, -0.001463252236135304, 0.017626648768782616, 0.0009382470743730664, -0.01099223643541336, 0.019685344770550728, 0.02622208185493946, 0.02811548113822937, -0.004252635408192873, 0.003989663440734148, -0.002404316794127226, 0.0381685309112072, -0.04559185728430748, 0.010571480728685856, -0.01133034285157919, -0.010353589430451393, 0.03176703676581383, 0.007408301346004009, 0.03441178426146507, -1.7683116311673075e-05, -0.008257325738668442, -0.02108285389840603, -0.013050932437181473, -0.023757657036185265, 0.011991530656814575, 0.02653764747083187, 0.025200245901942253, -0.03140638768672943, -0.00806948821991682, 0.04811638966202736, -0.01202909741550684, -0.0013364620972424746, 0.02363744005560875, -0.0019103048834949732, 0.009001160971820354, 0.03158671408891678, 0.018167618662118912, 0.018468158319592476, -0.003888231236487627, 0.024599166586995125, 0.0040197172202169895, 0.00015285256085917354, 0.012021584436297417, -0.027364131063222885, 0.0011692869011312723, -0.0007569841691292822, -0.009767537005245686, -0.010541426949203014, 0.009805104695260525, -0.019865667447447777, -0.03323968127369881, 0.00744211208075285, -0.01582341082394123, 0.008114569820463657, 0.017626648768782616, -0.016815191134810448, -0.0009016188560053706, 0.012269529514014721, -0.02643245831131935, -0.031706929206848145, -0.013246282935142517, 0.020436692982912064, 0.007100248243659735, -0.01414790190756321, 0.006593087688088417, 0.03387081250548363, -0.009023701772093773, 0.026357322931289673, 0.0008809567079879344, -0.016063842922449112, 0.045291319489479065, -0.02924250438809395, -0.01290066260844469, 0.031105849891901016, 0.046373263001441956, -0.005830468609929085, 0.010856993496418, -0.01559800561517477, 0.02269074134528637, 0.00964732188731432, 0.03873955458402634, 0.0006179845659062266, -0.007205436937510967, -0.014005145989358425, 0.01276541966944933, -0.0020906287245452404, -0.03064001351594925, 0.016229139640927315, -0.014996926300227642, 0.0071904100477695465, -0.008475217036902905, 0.0110298041254282, -0.0002310398267582059, -0.007592381909489632, 0.023547278717160225, -0.007753922138363123, -0.007791489362716675, -0.038679447025060654, -0.02237517386674881, -0.027319051325321198, -0.027995264157652855, -0.017235945910215378, -0.0060070352628827095, -0.0012340907705947757, 0.00894856732338667, -0.04922838881611824, -0.008745702914893627, -0.0009476389386691153, 0.01761162094771862, 0.03197741508483887, -0.005706495605409145, 0.039130255579948425, -0.05752328038215637, -0.0371166430413723, 0.0038769610691815615, 0.017656702548265457, 0.001884946832433343, 0.02903212606906891, -0.018573347479104996, 0.019760480150580406, 0.014343252405524254, 0.006157305091619492, 0.028340885415673256, 0.013065959326922894, -0.02650759369134903, 0.006018305663019419, 0.033600326627492905, 0.011773639358580112, -0.03284898027777672, 0.005120443645864725, 0.019354751333594322, 0.03134628012776375, 0.0025959108024835587, -0.023862844333052635, 0.005458550527691841, -0.020932583138346672, 0.018813779577612877, 0.0010246522724628448, -0.010316021740436554, -0.02611689269542694, -0.017311081290245056, 0.02766467072069645, 0.001831413246691227, 0.02258555218577385, 0.0020474260672926903, 0.02692834846675396, -0.002235263353213668, -0.003307814011350274, -0.015192276798188686, 0.00535711832344532, -0.03696637228131294, -0.03690626472234726, -0.04219575971364975, 0.02300630696117878, -0.0022859794553369284, 0.001409718650393188, 0.007979326881468296, -0.018603401258587837, 0.010789372026920319, -0.037657614797353745, 0.02226998470723629, -0.00101995631121099, -0.027995264157652855, -0.044029053300619125, 0.004128662869334221, -0.03612486273050308, 0.014486009255051613, 0.011540721170604229, 0.02664283663034439, 0.01018829271197319, -0.01299082487821579, 0.01992577686905861, 0.006540493108332157, -0.0024400060065090656, -0.011931422166526318, -0.040813278406858444, -0.002133831148967147, -0.01571822166442871, -0.00552241550758481, -0.03335989639163017, -0.021683933213353157, 0.013426607474684715, -0.03982149809598923, -0.009249106049537659, 0.01782199926674366, -0.005552469287067652, 0.003786799032241106, 0.01442590169608593, 0.010150725021958351, 0.006968762259930372, 0.02479451708495617, -0.00041699872235767543, 0.012750392779707909, -0.02916736900806427, 0.019174426794052124, -0.00826483964920044, -0.017776917666196823, -0.024238519370555878, 0.033209625631570816, 0.009346782229840755, 0.0034749892074614763, 0.023126522079110146, 0.011999043636023998, -0.011713530868291855, 0.006112224422395229, -0.0017083798302337527, -0.003756745019927621, 0.014140388928353786, -0.037627559155225754, 0.02177409455180168, -0.024659274145960808, 0.006476628594100475, -0.03390086814761162, -0.023096468299627304, 0.0339609757065773, 0.010879534296691418, 0.024343708530068398, -0.006653195712715387, -0.023276792839169502, -0.026868240907788277, 0.038499124348163605, -0.016604812815785408, 0.018302861601114273, 0.02429862692952156, -0.0033885841257870197, -0.0058191982097923756, 0.00810705590993166, 0.01674005575478077, 0.0053796591237187386, -0.012908176518976688, -0.01311104092746973, -0.03230800852179527, -0.006157305091619492, -0.007622435688972473, -0.014688873663544655, 0.004316499922424555, -0.001977926352992654, 0.012727852910757065, 0.03357027471065521, -0.02517019212245941, -0.012810501269996166, 0.009061269462108612, -0.009098836220800877, -0.01162336952984333, 0.036365292966365814, -0.011337856762111187, -0.008445163257420063, -0.02877666801214218, 0.0038469070568680763, -0.002567735267803073, 0.036575671285390854, -0.002195817418396473, -0.0024418842513114214, 0.018678536638617516, 0.0018079335568472743, 0.02945288084447384, -0.01353179570287466, -0.024914734065532684, 0.046794015914201736, -0.015169736929237843, 0.00747592281550169, -0.005327064543962479, 0.014102821238338947, 0.0037905557546764612, -0.011240181513130665, 0.0260868389159441, -0.007994353771209717, 0.03393092006444931, 0.015192276798188686, 0.020211288705468178, 0.02787504903972149, 0.015567951835691929, -0.00868559442460537, 0.029858609661459923, -0.016725029796361923, 0.06647936254739761, -0.02230003848671913, 0.021308258175849915, 0.042977165430784225, -0.014666332863271236, 0.00034068981767632067, -0.024073222652077675, 0.006901140790432692, -0.025095056742429733, 0.0013871780829504132, -0.0050002275966107845, -0.017912160605192184, 0.023862844333052635, -0.005041551776230335, -0.011097424663603306, 0.023366954177618027, -0.020226316526532173, -0.011292776092886925, -0.03837890923023224, -0.014824116602540016, -0.007753922138363123, 0.0504305474460125, 0.003138760570436716, 0.01138293743133545, -0.024358734488487244, 0.024208465591073036, 0.014072767458856106, 0.029317639768123627, -0.031286172568798065, -0.014328225515782833, -0.006003278773277998, 0.02076728641986847, 0.006769654806703329, -0.02766467072069645, -0.00950456503778696, 0.008693108335137367, 0.01652967929840088, 0.011488126590847969, 0.019730424508452415, -0.005511145107448101, 0.0274843480437994, 0.00753603084012866, -0.010879534296691418, 0.011307802982628345, 0.038469068706035614, -0.021864255890250206, 0.010594021528959274, 0.02177409455180168, 0.008272352628409863, -0.014711413532495499, 0.03801826015114784, -0.004233851563185453, -0.005676441825926304, 0.006149791646748781, -0.021759068593382835, -0.0009175849845632911, 0.0058717927895486355, -0.015207304619252682, -0.0016379408771172166, -0.03053482435643673, -0.04288700222969055, 0.011210127733647823, 0.015244871377944946, -0.004402905236929655, 0.009354295209050179, 0.019129347056150436, -0.01435828022658825, 0.007288085762411356, 0.007460895925760269, 0.009083809331059456, -0.008009380660951138, 0.009264133870601654, -0.0007889164844527841, 0.017491405829787254, -0.00543601019307971, 0.018964048475027084, 0.027649644762277603, -0.0297684483230114, -0.03164682164788246, -0.013073473237454891, -0.014087794348597527, -0.006315088365226984, 0.008798297494649887, 0.02024134248495102, -0.02230003848671913, -0.024779491126537323, -0.0068523031659424305, 0.031947359442710876, 0.003764258697628975, 0.01624416559934616, 0.017761891707777977, 0.0018915211549028754, -0.005327064543962479, 0.0147940618917346, 0.01687529869377613, 0.019550101831555367, -0.014463468454778194, 0.003884474514052272, 0.018438104540109634, 0.022330092266201973, 0.005875549279153347, -0.04372851178050041, -0.03146649897098541, 0.03042963519692421, 0.008460190147161484, 0.009707429446280003, -0.0020211287774145603, 0.0014820359647274017, 0.005109173245728016, -0.006521709728986025, 0.009241593070328236, -0.0003073487023357302, -0.006243710406124592, 0.017145784571766853, -0.014666332863271236, 0.008520297706127167, 0.051121786236763, -0.03218779340386391, 0.014598711393773556, -0.020857449620962143, 0.020361559465527534, -0.037627559155225754, -0.003255219664424658, -0.00342239486053586, 0.047815851867198944, 0.01284806802868843, 0.00469968793913722, 0.004605769645422697, 0.0137421740218997, -0.03822863847017288, 0.006217413116246462, 0.01500444021075964, -0.01477903500199318, -0.013035905547440052, 0.022014526650309563, 0.04502083361148834, -0.004857471212744713, 0.018332915380597115, -0.01380979549139738, 0.027334077283740044, 0.0055674961768090725, -0.031917307525873184, 0.01845313236117363, 0.03684615716338158, -0.0017074407078325748, 0.036365292966365814, 0.01209671888500452, 0.0009758145315572619, 0.029002072289586067, 0.032157737761735916, 0.016334326937794685, 0.02874661423265934, 0.011488126590847969, 0.011630882509052753, 0.014403360895812511, -0.018543293699622154, -0.03203752264380455, 0.000467714766273275, -0.03561394289135933, -0.025305435061454773, 0.01737118884921074, -0.029467908665537834, 0.017145784571766853, -0.014350766316056252, 0.043427973985672, 0.035944536328315735, 0.002225871430709958, -0.00903121568262577, 0.026177000254392624, -0.016394436359405518, -0.012457367032766342, 0.005214362405240536, -0.003480624407529831, -0.017145784571766853, 0.01926458813250065, -0.004068554844707251, 0.02166890539228916, 0.024388790130615234, 0.019129347056150436, -0.01425309106707573, 0.030204230919480324, 0.0549686960875988, -0.024043168872594833, -0.025335488840937614, 0.0017055622301995754, 0.01863345503807068, -0.023487171158194542, 0.0005423800903372467, -0.008760729804635048, -0.018227728083729744, -0.0007621496915817261, 0.009887753054499626, -0.05475831776857376, 0.008355000987648964, 0.014809089712798595, -0.0023216684348881245, 0.016935406252741814, 0.018933994695544243, -0.04757542163133621, -0.0018774333875626326, 0.019880695268511772, -0.017115730792284012, 0.004590742755681276, -0.011510667391121387, 0.01547778956592083, -0.018227728083729744, 0.0015064547769725323, 0.0003190885472577065, 6.721051613567397e-05, -0.0353735126554966, 0.007611165754497051, 0.021789122372865677, -0.011119965463876724, 0.014974386431276798, -0.008482730016112328, 0.017205892130732536, -0.030489742755889893, 0.027304023504257202, -0.02867147885262966, -0.03504291921854019, -0.038679447025060654, 0.010473805479705334, 0.0033453814685344696, -0.009624781087040901, 0.025681110098958015, -0.004414175637066364, 0.051242005079984665, 0.025365542620420456, 0.0052782269194722176, -0.05094146355986595, 0.011758612468838692, 0.018438104540109634, 0.0008509027538821101, -0.00154308311175555, -0.01311104092746973, 0.001312982407398522, -0.042526353150606155, -0.007723867893218994, 0.008362514898180962, 0.008024407550692558, -0.019414858892560005, 0.017416270449757576, -0.018573347479104996, -0.03308941051363945, -0.026913322508335114, -0.01879875175654888, -0.01295325718820095, 0.0005329882260411978, -0.026627808809280396, 0.004474283661693335, 0.018858861178159714, 0.012487420812249184, -0.01989572122693062, 0.008370027877390385, -0.019550101831555367, 0.02174404077231884, -0.04006192833185196, -0.014568657614290714, 0.0148842241615057, 0.011803693138062954, -0.019474966451525688, 0.005916873458772898, -0.04967919737100601, -0.007986839860677719, 0.019159400835633278, 0.006645682267844677, -0.013930010609328747, 0.005308280698955059, 0.033179573714733124, 0.00863299984484911, -7.99482295406051e-05, -0.037627559155225754, -0.019625237211585045, -0.00025381508748978376, 0.008392568677663803, -0.015808383002877235, 0.022750848904252052, -0.029227476567029953, 0.008114569820463657, -0.02787504903972149, -0.04928849637508392, -0.006709546782076359, 0.02632726915180683, -0.04417932406067848, 0.0208273958414793, 0.017521459609270096, 0.014155415818095207, 0.0061347647570073605, -0.0039708795957267284, 0.015199790708720684, 0.007261788472533226, -0.037026479840278625, 0.043157488107681274, 0.03354021906852722, 0.00827986653894186, -0.005631361156702042, 0.004203797783702612, -0.009887753054499626, 0.0019704129081219435, -0.007949273101985455, 0.01146558579057455, 0.005939414259046316, -0.0047635529190301895, -0.0065480065532028675, -0.014741468243300915, -0.015199790708720684, 0.010526400059461594, 0.01803237572312355, -0.0027856265660375357, 0.007378247566521168, 0.017235945910215378, 0.001147685688920319, 0.0009161762427538633, -0.010744291357696056, 0.0032570979092270136, -0.011165046133100986, -0.02398306131362915, -0.00021530844969674945, -0.0017966633895412087, -0.031135903671383858, 0.030159149318933487, -0.00747592281550169, 0.023487171158194542, -0.028656451031565666, 0.00896359421312809, 0.029182396829128265, -0.01008310355246067, 0.026732997968792915, -0.00039304947131313384, 0.028310831636190414, 0.01982058770954609, -0.0054660639725625515, 0.020601989701390266, 0.019910749047994614, -0.0074947066605091095, 0.023547278717160225, 0.033660437911748886, -0.00678468169644475, 0.002269074087962508, 0.013306391425430775, 0.008971107192337513, 0.007231734227389097, -0.034712325781583786, 0.02503494918346405, -0.024253547191619873, 0.011022290214896202, -0.018888914957642555, -0.021278204396367073, -0.032368116080760956, -0.0005902785924263299, -0.00534960487857461, 0.02867147885262966, 0.028866829350590706, 0.005811684764921665, -0.015567951835691929, 0.0011852530296891928, -0.0023930466268211603, -0.016409462317824364, 0.04300721734762192, 0.005518658552318811, -0.0019384805345907807, -0.013186175376176834, -0.0012932595564052463, -0.010999749414622784, -0.021067826077342033, -0.009249106049537659, -0.028025317937135696, 0.007686300668865442, 0.01669497601687908, -0.0332697331905365, -0.010563966818153858, -0.0028307074680924416, 0.014936818741261959, 0.007524760439991951, -0.021804148331284523, -0.027844995260238647, -0.01779194548726082, -0.020752260461449623, 0.006070900242775679, -0.002295371377840638, -0.056531500071287155, 0.04225586727261543, 0.016184058040380478, 0.020286424085497856, -0.004508093930780888, -0.017115730792284012, -0.0012481785379350185, 0.015244871377944946, -0.01789713464677334, -0.0024493979290127754, 0.0033115707337856293, -0.019354751333594322, 0.007783975917845964, 0.02514013834297657, -0.017867079004645348, -0.021127933636307716, -0.013223743066191673, 0.015537898056209087, -0.016604812815785408, 0.0005184308392927051, -0.010488832369446754, -0.02671797201037407, -0.014613738283514977, 0.01821270026266575, -0.011698503978550434, -0.0027424239087849855, 0.003561394289135933, 0.005759090185165405, -0.023577332496643066, -0.019805559888482094, 0.0204817745834589, -0.012412285432219505, 0.008197218179702759, -0.016920380294322968, -0.015387628227472305, -0.10140206664800644, -0.011082397773861885, -0.022886091843247414, 0.0392204187810421, -0.003330354578793049, -0.004504337441176176, 0.0034618405625224113, 0.00815965048968792, -0.012382231652736664, 0.002672924194484949, -0.004361581057310104, -0.023186631500720978, 0.01305844634771347, 0.009271646849811077, -0.007761435583233833, -0.013298877514898777, -0.013817308470606804, -0.021518636494874954, 0.000629724410828203, -0.0073181395418941975, -0.004136176314204931, 0.010962182655930519, 0.03182714432477951, -0.002541437977924943, -0.0023122765123844147, 0.026447486132383347, -0.0161089226603508, -0.0032871519215404987, -0.02142847329378128, -0.03242822363972664, 0.012622663751244545, -0.009391862899065018, -0.002464424818754196, -0.014944331720471382, 0.003454327117651701, 0.0048649851232767105, 0.004812390543520451, -0.01705562323331833, -0.005424739792943001, -0.0028926937375217676, -0.0008640513988211751, 0.0018915211549028754, -0.010954668745398521, -0.004474283661693335, 0.025395596399903297, 0.007513490039855242, -0.004241365008056164, -0.015064547769725323, -0.01358439028263092, 0.01300585176795721, 0.02601170353591442, 0.014012658968567848, -0.005597550421953201, -0.020857449620962143, 0.0034768676850944757, 0.007799002807587385, 0.013246282935142517, -0.00931672751903534, 0.003997176885604858, -0.02195441909134388, 0.06305321305990219, 0.03095557913184166, 0.023607386276125908, -0.01160834264010191, -0.020106099545955658, 0.008197218179702759, 0.018753672018647194, 0.04946881905198097, 0.03669588640332222, -0.0028570047579705715, -0.003275881754234433, -0.01774686388671398, 0.01489925105124712, 0.031676873564720154, 0.005214362405240536, 0.00903121568262577, 0.015417682006955147, 0.029182396829128265, 0.004594499245285988, -0.020466746762394905, -0.0148842241615057, 0.01012067124247551, 0.020406639203429222, -0.004376607947051525, -0.013306391425430775, -0.025065002962946892, -0.009173971600830555, -0.034892648458480835, 0.01964026317000389, -0.0024625463411211967, 0.02342706173658371, -0.01897907629609108, 0.024884680286049843, 0.017205892130732536, 0.0017947850283235312, 0.019880695268511772, -0.02058696374297142, -0.007280571851879358, -0.018858861178159714, -0.0123446648940444, -0.010105644352734089, -0.036575671285390854, -0.00037215257179923356, -0.006296304985880852, -0.0034731109626591206, -0.025500785559415817, -0.008708135224878788, 0.02314154990017414, 0.00026344176148995757, -0.0018971562385559082, -0.006807222031056881, 0.007273058407008648, -0.018933994695544243, 0.01855832152068615, -0.010180779732763767, 0.02058696374297142, -0.030925525352358818, 0.0072918422520160675, 0.00417374400421977, -0.008152136579155922, 0.008046948350965977, 0.020812368020415306, 0.01363698486238718, -0.03173698112368584, -0.005499874707311392, 0.014230550266802311, -0.0059319003485143185, -0.018393024802207947, 0.011217640712857246, 0.032368116080760956, 0.01834794320166111, -0.004331527277827263, 0.004230095073580742, -0.011683477088809013, -0.004466769751161337, 0.019790533930063248, 0.03904009610414505, 0.002686072839424014, 0.03561394289135933, -0.053766537457704544, -0.012479906901717186, -0.0013665159931406379, 0.01214931346476078, 0.011067370884120464, -0.025365542620420456, -0.010902074165642262, -0.00540971290320158, -0.002177033806219697, -0.014223037287592888, -0.00964732188731432, 0.0017797580221667886, -0.008272352628409863, 0.029047153890132904, -0.017626648768782616, -0.03390086814761162, -0.0016520286444574594, -0.011600828729569912, 0.0023742630146443844, -0.002537681255489588, -0.016679948195815086, -0.018498212099075317, 0.0025790054351091385, 0.006405250634998083, -0.0011871315073221922, 0.013832335360348225, -0.019144373014569283, -0.02166890539228916, -0.005552469287067652, -0.004643336869776249, 0.015973679721355438, -0.0031913549173623323, -0.018723618239164352, -0.010105644352734089, -0.042105600237846375, 0.010691696777939796, -0.027048565447330475, -0.01884383335709572, -0.014455955475568771, 0.019775506108999252, 0.013321418315172195, -0.013847362250089645, -0.00466587720438838, 0.0019272102508693933, 0.026462512090802193, -0.0043089864775538445, 0.025470731779932976, -0.010616561397910118, 0.02408825047314167, -0.028340885415673256, -0.00203052069991827, 0.024343708530068398, 0.037236858159303665, -0.022555498406291008, 0.004316499922424555, 0.005886819679290056, 0.0014604346361011267, 0.04820655286312103, 0.039160311222076416, -0.02251041680574417, -0.026131918653845787, -0.007919218391180038, 0.013013364747166634, 0.023892898112535477, 0.008182191289961338, -0.011112452484667301, 0.017536485567688942, -0.030204230919480324, 0.01732610911130905, 0.026462512090802193, -0.010406184010207653, -0.0007799941813573241, -0.0037323262076824903, 0.01209671888500452, -0.006694519892334938, 0.007768949028104544, -0.017867079004645348, -0.011037317104637623, -0.01687529869377613, -0.004609526135027409, -0.030715148895978928, 0.03483254089951515, -0.004369094502180815, 0.002838220912963152, -0.026041757315397263, 0.03143644332885742, 0.010526400059461594, -0.0024005600716918707, -0.04261651635169983, -0.051211949437856674, 0.008941053412854671, 0.0074796793051064014, 0.007351950276643038, 0.02016620710492134, -0.00030969668296165764, -0.0021695203613489866, -0.008520297706127167, 0.04673390835523605, -0.009046242572367191, 0.03239817172288895, -0.00738951750099659, -0.023607386276125908, -0.01437330711632967, -0.004474283661693335, 0.02139841951429844, 0.03021925687789917, 0.024839598685503006, -0.03314951807260513, -0.006671979557722807, 0.024103276431560516, 0.012156827375292778, -0.0027292752638459206, -0.023276792839169502, -0.021713986992836, 0.005289497319608927, 0.008294893428683281, -0.00413241982460022, -0.0039445823058485985, -0.0187386441975832, -0.0051542543806135654, -0.008745702914893627, -0.009234079159796238, 0.027228888124227524, 0.012983310967683792, -0.01926458813250065, 0.03372054547071457, -0.019730424508452415, -0.0031105850357562304, 0.031075796112418175, -0.0014444685075432062, -0.009339268319308758, 0.020677125081419945, 0.0033228411339223385, -0.024569112807512283, -0.01921950839459896, 0.00015097419964149594, 0.007611165754497051, 0.011240181513130665, -0.010962182655930519, 0.014313198626041412, -0.02184922993183136, -0.00616106204688549, 0.0016473326832056046, -0.029257530346512794, 0.015913572162389755, -0.007070194464176893, 0.013291364535689354, -0.01080439891666174, 0.00548860477283597, 0.03453199937939644, -0.007941759191453457, 0.0024061952717602253, 0.007498463150113821, 0.013614444062113762, 0.007152842823415995, 0.027093645185232162, -0.009767537005245686, -0.01743129827082157, -0.007167869713157415, 0.016679948195815086, -0.014936818741261959, 0.013606931082904339, 0.010353589430451393, -0.023757657036185265, 0.008114569820463657, -0.0031556659378111362, -0.00024160566681530327, -0.010541426949203014, 0.001583468052558601, 0.0005498935934156179, -0.002877666847780347, -0.007746408227831125, -0.013704606331884861, -0.016484597697854042, -0.023892898112535477, -0.006581817287951708, 0.006773411296308041, 0.009211539290845394, -0.00375111005268991, -0.018302861601114273, -0.0076562464237213135, 0.005180551670491695, -0.01631930097937584, 0.011172560043632984, 0.02324673905968666, -0.01729605533182621, 0.009497052058577538, 0.0047710663639009, -0.005883062724024057, -0.003591448301449418, -0.009226566180586815, -0.019565127789974213, 0.05223378539085388, -0.005030281841754913, -0.010984722524881363, -0.004602012690156698, 0.0013956307666376233, 0.0029809772968292236, -0.014531089924275875, 0.0053308214992284775, -0.005785387475043535, 0.027950184419751167, 0.045291319489479065, -0.009016187861561775, -0.008400081656873226, 0.004432959016412497, 0.02108285389840603, 0.008828351274132729, 0.01810751110315323, 0.03669588640332222, 0.0030129095539450645, 0.013779740780591965, 0.006998816039413214, 0.0020323991775512695, -0.013426607474684715, 0.0204817745834589, 0.027529427781701088, -0.018047403544187546, 0.014230550266802311, -0.010586507618427277, -0.045501697808504105, 0.004436715971678495, -0.012878121808171272, 0.0043991487473249435, 0.007254275027662516, 0.0027781131211668253, 0.012299583293497562, 0.015252385288476944, -0.0066494387574493885, 0.013847362250089645, -0.00545479403808713, 0.011300289072096348, 0.004996471107006073, 0.005544955842196941, -0.01813756488263607, -0.017566539347171783, -0.0015224209055304527, -0.004910065792500973, -0.007010086439549923, -0.0019760478753596544, 0.0033096924889832735, 0.014470982365310192, 0.011578288860619068, -0.027649644762277603, -0.027709752321243286, -0.009699915535748005, 0.006683249492198229, 0.000900210055988282, -0.00604084599763155, -0.007941759191453457, -0.011788666248321533, -0.011984016746282578, -0.01737118884921074, -0.0006795012741349638, -0.015853464603424072, -0.005090389866381884, 0.0055411988869309425, -0.020707178860902786, 0.0028325857128947973, -0.030519796535372734, -0.00472598522901535, -0.016274219378829002, 0.00018701546650845557, 0.003227044129744172, 0.01936977729201317, 0.014005145989358425, 0.023922953754663467, 0.013524282723665237, 0.004282689653337002, -0.005552469287067652, -0.0033378680236637592, -0.02787504903972149, -0.003125611925497651, 0.01495184563100338, -0.024013115093111992, -0.013073473237454891, -0.008167163468897343, 0.0012876243563368917, 0.006728330627083778, 0.005620090756565332, 0.00955715961754322, 0.0016266705933958292, -0.003275881754234433, 0.016619840636849403, -0.01677010953426361, -0.004579472355544567, 0.008497757837176323, -0.008077002130448818, -0.014921791851520538, 0.007182896602898836, 0.01953507401049137, -0.000700632983352989, -0.006037089508026838, -0.008077002130448818, -0.007874137721955776, 0.029347693547606468, -0.022570524364709854, 0.015342546626925468, -0.029648233205080032, -0.002115047536790371, -0.0008748520049266517, -0.03855923190712929, 0.007881651632487774, 0.0013054689625278115, -0.007280571851879358, 0.02892693690955639, 0.0005799475475214422, 0.019550101831555367, -0.018858861178159714, 0.01842307858169079, 0.01287060882896185, 0.007179140113294125, -0.027108673006296158, 0.029227476567029953, 0.013854876160621643, -0.003721056040376425, 0.013298877514898777, -0.02058696374297142, 0.010113158263266087, -0.022856038063764572, 0.026477539911866188, 0.021338311955332756, 0.006089683622121811, -0.011059857904911041, 0.003240192774683237, 0.011863800697028637, 0.020421667024493217, 0.03263860195875168, -0.02045172080397606, -0.013967578299343586, 0.00738951750099659, -0.011089911684393883, -0.014508550055325031, -0.0109396418556571, 0.014501036144793034, 0.010729264467954636, -0.0062850345857441425, 0.0025076274760067463, 0.013238769955933094, -0.0134792011231184, -0.012434826232492924, 0.00744211208075285, -0.011180073022842407, 0.009346782229840755, 0.001911244122311473, 0.02142847329378128, -0.028941964730620384, 0.008490243926644325, -0.0029358963947743177, -0.024328680709004402, 0.049528926610946655, 0.00038999709067866206, 0.019730424508452415, 0.0016689340118318796, 0.005206848960369825, -0.002594032557681203, -0.025651056319475174, -0.01438833400607109, -0.016379408538341522, 0.025966621935367584, -0.0014134753728285432, 0.005507388152182102, -0.010864506475627422, -0.03768766671419144, 0.0011101182317361236, 0.011067370884120464, -0.017551513388752937, -0.022540470585227013, 0.026883268728852272, 0.027334077283740044, -0.014921791851520538, -0.014501036144793034, 0.009790077805519104, 0.015259898267686367, 0.009880240075290203, -0.005165524315088987, -0.0061723324470222, -0.0030748958233743906, -0.003441178472712636, -0.01281801424920559, -0.005161767825484276, -0.0018811901099979877, -0.016619840636849403, -0.005623847246170044, -0.005439767148345709, 0.01416292879730463, 0.02111290767788887, -0.005312037654221058, 0.024463923647999763, -0.014065253548324108, -0.012930716387927532, 0.00032918478245846927, 0.006401493679732084, -0.011653423309326172, 0.01863345503807068, 0.02037658542394638, 0.003082409268245101, 0.0015111507382243872, -0.0009955374989658594, -0.012141800485551357, -0.019474966451525688, -0.005165524315088987, -0.009256619960069656, -0.008512784726917744, 0.015883518382906914, -0.003351016668602824, 0.09575191885232925, 0.003497529774904251, 0.009880240075290203, -0.0026954645290970802, -0.01157077495008707, -0.0080544613301754, 0.0005602246383205056, 0.01995583064854145, 0.01740124262869358, 0.003452448872849345, 0.023306846618652344, -0.011232667602598667, 0.007660003378987312, 0.011187586933374405, -0.023276792839169502, 0.0008363453671336174, 0.018783725798130035, 0.024418843910098076, 0.0006926498608663678, 0.031075796112418175, -0.0013111040461808443, 0.0015937990974634886, -0.004985200706869364, -0.006063386797904968, -0.003424273105338216, 0.01223947573453188, 0.015417682006955147, 0.0011908882297575474, 0.03486259654164314, 0.026252135634422302, -0.01420049648731947, -0.013208716176450253, 0.008415109477937222, -0.009782563894987106, 0.005195578560233116, 0.020541882142424583, 0.014020172879099846, 0.01012067124247551, -0.006270007696002722, 0.01806243136525154, -0.009850185364484787, -0.0030260581988841295, 0.023802736774086952, 0.03435167670249939, -0.0007724807364866138, -0.022570524364709854, 0.021263176575303078, -0.004872498568147421, -0.005605063866823912, -0.0014360158238559961, -0.026252135634422302, -0.011916395276784897, 0.00023162682191468775, -0.0009105411008931696, 0.017987295985221863, -0.023156577721238136, -0.01299082487821579, -0.007926732301712036, 0.002997882664203644, 0.00036910022026859224, -0.015282439067959785, -0.0110298041254282, -0.003963366150856018, -0.015673140063881874, -0.005559982731938362, -0.024524031206965446, -0.004320256877690554, -0.019489994272589684, -0.0027705994434654713, -0.007314382586628199, -0.008617972955107689, 0.018017349764704704, 0.009166457690298557, -0.038709502667188644, 0.004842444323003292, 0.039761390537023544, 0.009872726164758205, 0.01985064148902893, 0.00939937587827444, 0.015402655117213726, 0.004481797106564045, 0.003574542934074998, 0.0026654107496142387, -0.01842307858169079, -0.0001881894568214193, -0.0025038705207407475, 0.005285740364342928, -0.030234284698963165, 0.011886341497302055, -0.018498212099075317, -0.0053308214992284775, 0.011826233938336372, 0.007066437508910894, 0.001839865930378437, 0.018332915380597115, -0.01737118884921074, 0.010376130230724812, -0.002017372054979205, -0.002610937925055623, 0.0017788187833502889, 0.010331048630177975, 0.03429156914353371, -0.020526856184005737, 0.012277043424546719, -0.0006424034363590181, -0.0004977687494829297, 0.026357322931289673, -0.0010612804908305407, -0.011525694280862808, -0.00041394634172320366, -0.009196512401103973, 0.006390223279595375, 0.011826233938336372, 0.020015938207507133, -0.02832585759460926, -0.005856765434145927, 0.0055149020627141, 0.010203319601714611, -0.007107761688530445, -0.015432708896696568, -0.020932583138346672, -0.0006146974046714604, -0.0013064080849289894, -0.0027912615332752466, 0.01146558579057455, 0.009429430589079857, -0.029332665726542473, -0.0015552925178781152, -0.005841738544404507, -0.0018501969752833247, 0.01501946710050106, 0.005883062724024057, 0.023577332496643066, 0.005646388046443462, 0.00615354860201478, -0.0041136359795928, -0.0011937057133764029, 0.00471847178414464, 0.017671728506684303, -0.01613897643983364, 0.016604812815785408, 0.014801575802266598, 0.004500580485910177, 0.0070889778435230255, 0.010466291569173336, 0.012419799342751503, -0.02790510281920433, -0.02629721537232399, 0.0010565845295786858, -0.008617972955107689, 0.03372054547071457, -0.043427973985672, 0.011443045921623707, -0.013080986216664314, 0.015102115459740162, -0.004241365008056164, -0.01428314484655857, 0.02282598242163658, -0.003985906485468149, 0.003756745019927621, 0.0005531806964427233, -0.011841260828077793, 0.008475217036902905, -0.015222331508994102, -0.012840555049479008, -0.0029189910273998976, 0.02419343777000904, 0.01592859998345375, 0.013208716176450253, -0.010631588287651539, 1.004489058686886e-05, -0.012119259685277939, 0.0017525216098874807, -0.016589786857366562, -0.005537442397326231, -0.018408050760626793, -0.011255208402872086, -0.0013045297237113118, -0.002389289904385805, 0.02324673905968666, -0.005131714046001434, 0.006476628594100475, 0.01220190804451704, -0.01613897643983364, -0.005976981483399868, -0.0020192505326122046, 0.01069920975714922, -0.009669861756265163, -0.010856993496418, 0.0019535075407475233, -0.01071423664689064, 0.026417432352900505, -0.00408733868971467, -0.028656451031565666, -0.01995583064854145, -0.002992247464135289, -0.0008955140947364271, 0.029978826642036438, 0.0003050007508136332, -0.01761162094771862, -0.00406104139983654, 0.004237608518451452, 0.010541426949203014, 0.025515813380479813, -0.004887525457888842, 0.007126545533537865, 0.011893855407834053, -0.021022746339440346, -0.012389745563268661, -0.00469968793913722, -0.04943876713514328, -0.03182714432477951, 0.006052116397768259, 0.009204025380313396, -0.03308941051363945, 0.011037317104637623, 0.013231256045401096, 0.014718927443027496, -0.011803693138062954, 0.0003827183973044157, -0.009992942214012146, 0.00897862110286951, -0.010984722524881363, 0.011863800697028637, -0.006931194569915533, -0.00880581047385931, 0.021443501114845276, 0.028836775571107864, 0.03335989639163017, -0.00100211170502007, 0.03242822363972664, -0.014711413532495499, -0.02342706173658371, 0.018122538924217224, -0.011923909187316895, 0.021713986992836, 0.024253547191619873, -0.003933312371373177, 0.0050265248864889145, -0.0014519819524139166, -0.017446324229240417, -0.005297010764479637, 0.0008570074569433928, 0.0019272102508693933, 0.019054211676120758, -0.011758612468838692, -0.00413241982460022, -0.005432253237813711, -0.010376130230724812, -2.838103500835132e-05, -0.019489994272589684, -0.00016834914276842028, -0.012494934722781181, -0.0012303340481594205, 0.0147940618917346, 0.006998816039413214, -0.007814030162990093, 0.004406662192195654, 0.008888458833098412, -0.01845313236117363, 0.005973224528133869, 0.005274469964206219, -0.015838436782360077, -0.008294893428683281, -0.008204731158912182, 0.022705767303705215, -0.02587646059691906, 0.02335192821919918, 0.007768949028104544, 0.00744962552562356, 0.006018305663019419, -0.00756232813000679, 0.0006461601587943733, 0.008355000987648964, -0.010466291569173336, -0.007964299991726875, -0.008407595567405224, -0.02377268299460411, -0.008437649346888065, -0.0026710457168519497, -0.012194395065307617, 0.009106350131332874, 0.0011016655480489135, -0.023412035778164864, 0.004913822747766972, -0.01547778956592083, 0.007814030162990093, 0.013148607686161995, -0.010060563683509827, 0.023922953754663467, 0.004200040828436613, -0.013644497841596603, 0.02145852893590927, 0.006393980234861374, -0.0074947066605091095, 0.018813779577612877, -0.0027123698964715004, 0.0048649851232767105, 0.014290658757090569, 0.011292776092886925, -0.0038506637793034315, -0.011022290214896202, -0.006360169500112534, -0.00885840505361557, 0.015537898056209087, -0.014403360895812511, 0.01729605533182621, 0.006566790398210287, -0.008204731158912182, 0.0109396418556571, 0.012464880011975765, -0.0001278467389056459, 0.012089205905795097, -0.01036110334098339, -0.0014670089585706592, 0.004703444894403219, 0.009962888434529305, 0.026146946474909782, -0.001298894640058279, 0.0076562464237213135, -0.003914528526365757, 0.02801029197871685, -0.01358439028263092, -0.0018238998018205166, -0.002287857700139284, 0.009880240075290203, 0.00152523850556463, 0.006322601810097694, -0.022856038063764572, -0.029753420501947403, 0.019880695268511772, 0.008009380660951138, -0.0025696137454360723, 3.7538102333201095e-05, -0.01747637800872326, 0.007126545533537865, -0.019039183855056763, 0.018408050760626793, -0.020015938207507133, 0.0037886775098741055, -0.012878121808171272, 0.009068782441318035, -0.004489310551434755, -0.022360146045684814, 0.0026841943617910147, 0.00396712264046073, 0.0069274380803108215, -0.014771522022783756, 0.0029471665620803833, 0.015537898056209087, -0.0037661369424313307, -0.005612577311694622, 0.010586507618427277, -0.00400844682008028, -0.0006583695649169385, 0.009955374523997307, 0.0029960041865706444, 0.03582432121038437, -0.020391613245010376, 0.01603378728032112, -0.020181234925985336, -0.0049401200376451015, -0.0031500307377427816, -0.00834748800843954, 0.001942237257026136, 0.018648482859134674, -0.0015975558198988438, 0.006664465647190809, -0.02181917615234852, 0.0067245736718177795, -0.014666332863271236, -0.023712575435638428, -0.00939937587827444, -0.015237358398735523, -0.020301450043916702, 0.00894856732338667, 0.0037623802199959755, -0.0043841213919222355, -0.019204480573534966, 0.007532273884862661, 0.04532137140631676, 0.014839143492281437, -0.012524988502264023, -0.003604596946388483, 0.015402655117213726, 0.017341135069727898, 0.02737915888428688, 0.0148842241615057, 0.012742879800498486, 0.005736549850553274, -0.02366749383509159, -0.00868559442460537, -0.005334577988833189, 0.0047710663639009, 0.004981444217264652, 0.010691696777939796, -0.02058696374297142, 0.022435281425714493, 0.01001548208296299, -0.005740306340157986, -0.02142847329378128, -0.0039032581262290478, 0.02213474176824093, -0.000396806193748489, -0.010451264679431915, -0.022149769589304924, 0.0004670103662647307, 0.017731836065649986, 0.012630176730453968, -0.023682521656155586, -0.01992577686905861, -0.01603378728032112, -0.030023906379938126, -0.008445163257420063, 0.009812618605792522, 0.0003808400360867381, 0.007671273313462734, -0.013952551409602165, 0.004474283661693335, -0.008077002130448818, 0.013328931294381618, 0.01887388713657856, 0.028656451031565666, -0.01582341082394123, 0.01571822166442871, -0.013937524519860744, 0.028791693970561028, -0.00025264109717682004, -0.008234784938395023, 0.004643336869776249, 0.0029246259946376085, -0.006728330627083778, -0.02724391594529152, 0.00400844682008028, -0.01684524491429329, -0.014523576945066452, 0.011210127733647823, -0.0007320956792682409, 0.0035219485871493816, 0.0020361558999866247, -0.03630518540740013, -0.00203052069991827, -0.01141299121081829, 0.010578994639217854, 0.026988456025719643, 0.0047898502089083195, 0.0038995014037936926, 0.019730424508452415, -0.006296304985880852, 0.014050226658582687, -0.013193689286708832, 0.011112452484667301, -0.010947154834866524, 0.0015327519504353404, -0.028911910951137543, -0.01358439028263092, 0.0017187108751386404, -0.004331527277827263, 0.026312243193387985, -0.020091073587536812, 0.0076299491338431835, -0.006055873353034258, -0.0032477062195539474, 0.007269301917403936, -0.009527105838060379, 0.004988957662135363, 0.02542565017938614, 0.032157737761735916, -0.011645910330116749, 0.025230299681425095, -0.009587213397026062, 0.009519591927528381, 0.009962888434529305, -0.0036027184687554836, -0.003382948925718665, 0.02661278285086155, 0.014658819884061813, 0.020526856184005737, 0.001964777708053589, -0.007881651632487774, -0.018678536638617516, 0.016379408538341522, -0.007633706089109182, 0.009895266965031624, 0.015853464603424072, 0.00203052069991827, 0.0005301706260070205, 0.022841010242700577, 0.010856993496418, 0.004812390543520451, 0.02079734019935131, -0.007186653558164835, 0.0245090052485466, -0.016229139640927315, -0.00683727627620101, 0.00933175440877676, 0.007055167108774185, 0.02945288084447384, 0.0003674566396512091, -0.006352656055241823, 0.002011737087741494, -0.003591448301449418, -0.021653879433870316, 0.01311104092746973, 0.015703193843364716, 0.01613897643983364, 0.002522654365748167, 0.015282439067959785, 0.015838436782360077, 0.024629220366477966, -0.0014538603136315942, 0.006998816039413214, -0.018513239920139313, 0.015274926088750362, 0.008287379518151283, 0.011548234149813652, 0.006206142716109753, 0.018888914957642555, 0.0011692869011312723, -0.01684524491429329, -0.015244871377944946, -0.016890326514840126, -0.007592381909489632, 0.014230550266802311, 0.006307574920356274, -0.011886341497302055, 0.0006283156108111143, 0.011886341497302055, 0.010902074165642262, -0.019054211676120758, -0.020045991986989975, -0.00815965048968792, 0.0037717721424996853, -0.001698048785328865, 0.007025113329291344, -0.0011317194439470768, 0.01235969178378582, 0.00884337816387415, 0.034682270139455795, -0.01017326582223177, 0.022735821083188057, 0.021488582715392113, 0.021308258175849915, 0.003959609195590019, 0.0013496106257662177, -0.028656451031565666, -0.0024531546514481306, 0.021233122795820236, -0.002430614084005356, 0.006104710977524519, -0.011991530656814575, -0.0013007730012759566, 0.02429862692952156, -0.0022164795082062483, 0.013884929940104485, -0.018047403544187546, 0.0031049498356878757, 0.014974386431276798, 0.011923909187316895, 0.008520297706127167, 5.928613245487213e-05, -0.014959358610212803, -0.003929555416107178, 0.0003294195921625942, -0.01803237572312355, 0.0014651305973529816, 0.019775506108999252, 0.00607465673238039, -0.012750392779707909, 0.03269870951771736, -0.018813779577612877, 0.0008030042517930269, -0.013561849482357502, 0.015913572162389755, 0.007273058407008648, -0.018468158319592476, -0.03242822363972664, -0.009602240286767483, 0.02240522764623165, -0.011360397562384605, 0.009865212254226208, -0.020226316526532173, -0.022420255467295647, 0.0028739101253449917, -0.015207304619252682, 0.015252385288476944, 0.030489742755889893, 0.007799002807587385, 0.04111381992697716, -0.01834794320166111, 0.01705562323331833, -0.00028527784161269665, -0.004891281947493553, -0.010030509904026985, 0.010060563683509827, -0.0014162928564473987, -0.005447280593216419, 0.006070900242775679, -0.01792718842625618, -0.024463923647999763, -0.006131007801741362, 0.015748275443911552, -0.0009664226672612131, 0.002301006345078349, -0.0029471665620803833, 0.005601306911557913, 0.005864279344677925, -0.013088500127196312, -0.020211288705468178, -0.014380820095539093, 0.0032702465541660786, 0.002447519451379776, 0.010962182655930519, -0.004808633588254452, 0.005312037654221058, -0.0072918422520160675, 0.014854170382022858, -0.00200422341004014, 0.001981683075428009, -0.0032477062195539474, -0.03140638768672943, 0.006273764185607433, 0.01621411181986332, 0.019024157896637917, -0.00942191667854786, -0.0030748958233743906, 0.010503859259188175, 0.015913572162389755, 0.011089911684393883, -0.0036252590361982584, 0.01964026317000389, 0.012472393922507763, -0.014538603834807873, -0.01437330711632967, 0.019835613667964935, 0.00479736365377903, -0.014876710250973701, -0.03125612065196037, -0.002815680578351021, -0.019024157896637917, 0.010090617462992668, -0.0036252590361982584, 0.0010246522724628448, 0.008835864253342152, -0.007592381909489632, -0.008249811828136444, 0.007077707909047604, 0.003728569485247135, 0.010969695635139942, -0.011826233938336372, -0.028761640191078186, 0.006863573100417852, -0.002438127528876066, 0.019655290991067886, -0.014651305973529816, -0.028205642476677895, 0.011172560043632984, -0.021578744053840637, 0.04117392748594284, -0.01438833400607109, -0.02829580381512642, -0.01845313236117363, -0.004432959016412497, 0.02332187443971634, 0.0027875048108398914, 0.00474476907402277, 0.007904191501438618, 0.01884383335709572, 0.013682065531611443, -0.017311081290245056, -0.0035407321993261576, -0.004057284910231829, -0.01624416559934616, 0.008775756694376469, 0.003210138762369752, 0.0008833046886138618, -0.004211311228573322, 7.795246347086504e-05, 0.013892443850636482, -0.026838187128305435, -0.005954441148787737, 0.0061084674671292305, -0.012757906690239906, -0.025049977004528046, -1.3926371138950344e-05, 0.021488582715392113, 0.015335033647716045, 0.005890576168894768, 0.00801689364016056, 0.015380114316940308, -0.008550351485610008, -0.0018022984731942415, -0.03305935859680176, -0.02108285389840603, 0.009534618817269802, -0.00046020126319490373, -0.026492565870285034, -0.01483162958174944, -0.0034618405625224113, -0.017761891707777977, -0.02580132521688938, -0.007073950953781605, -0.003187598194926977, 0.0005597550189122558, -0.004256392363458872, -0.02790510281920433, 0.018197672441601753, -0.00027377280639484525, -0.010796885006129742, -0.002810045378282666, -0.0005747820250689983, -0.0007147207506932318, 0.01624416559934616, -0.013434120453894138, -0.017070649191737175, -0.03453199937939644, 0.019805559888482094, 0.011390451341867447, -0.002265317365527153, 0.01837799698114395, -0.0018971562385559082, -0.006025819107890129, -0.01160834264010191, 0.014155415818095207, -0.017626648768782616, -0.03738712891936302, -0.004188770893961191, 0.005721522960811853, -0.005334577988833189, 0.008039434440433979, 0.014816602692008018, -0.014328225515782833, 0.013539309613406658, 0.0013852997217327356, -0.0010960303479805589, -0.0010650372132658958, 0.0030429635662585497, 0.0015280561055988073, -0.007911705411970615, 0.0014641913585364819, -0.01139796432107687, -0.016574759036302567, -0.01075180433690548, -0.004545661620795727, 0.005556226242333651, -0.007761435583233833, -0.004981444217264652, 0.016169030219316483, -0.01942988485097885, 0.018573347479104996, -0.01295325718820095, -0.005019011441618204, -0.001671751611866057, 0.01075180433690548, 0.008640513755381107, 0.0009870848152786493, 0.01921950839459896, -0.00950456503778696, 0.0032833951991051435, 0.014298171736299992, 0.0229311715811491, 0.02024134248495102, -0.009602240286767483, 0.021729012951254845, 0.00034655974013730884, 0.030805310234427452, 0.010984722524881363, -0.009812618605792522, -0.016725029796361923, 0.024674301967024803, 0.009955374523997307, -0.02108285389840603, 0.00029020855436101556, -0.02832585759460926, -0.014673846773803234, -0.016154004260897636, 0.0034562055952847004, 0.013606931082904339, 0.008204731158912182, 0.004680904559791088, 0.0022446552757173777, 0.00690489774569869, -0.013599417172372341, -0.0018351699691265821, -0.018964048475027084, -0.0004954207688570023, 0.0360647514462471, 0.012524988502264023, 0.00870062131434679, 0.010571480728685856, 0.0037792855873703957, 0.0050002275966107845, -0.02003096416592598, -0.007753922138363123, 0.00810705590993166, 0.01433573942631483, 0.02464424818754196, -0.021037772297859192, -0.010255914181470871, -0.01803237572312355, -0.003568907966837287, -0.0015524749178439379, 0.007573598064482212, -0.01477903500199318, -0.0037473533302545547, 0.02545570582151413, -0.008535324595868587, 0.010270941071212292, 0.003112463280558586, 0.000971118628513068, 0.005206848960369825, 0.0006499168812297285, -0.0006903019384481013, 0.006972518749535084, 0.01006807666271925, -0.01813756488263607, -0.0065743038430809975, 0.0035200701095163822, 0.0005193700199015439, 0.008204731158912182, -0.016289247199892998, 0.001312043284997344, 0.01621411181986332, -0.020045991986989975, -0.010038022883236408, 0.001667055650614202, 0.006401493679732084, -0.01013569813221693, -0.0048386878333985806, -0.02377268299460411, 0.007182896602898836, 0.020301450043916702, 0.0026184513699263334, 0.013208716176450253, 0.012179367244243622, -0.01155574806034565, -0.0008748520049266517, 0.0025433164555579424, 0.013238769955933094, -0.002823194023221731, 0.0018962171161547303, -0.019279615953564644, 0.00400844682008028, 0.010669155977666378, 0.00203991262242198, -0.013193689286708832, -0.015357574447989464, -4.977687422069721e-05, -0.007573598064482212, -0.01848318614065647, 0.023922953754663467, 0.004339040722697973, 0.012472393922507763, 0.020421667024493217, -0.00892602652311325, 0.025726189836859703, 0.01358439028263092, 0.007438355125486851, 0.0019309669733047485, -0.00738951750099659, 0.01642449013888836, 0.0329090878367424, -0.0035764214117079973, -0.021713986992836, 0.008723162114620209, -0.0033115707337856293, 0.009286673739552498, -0.01624416559934616, -0.013298877514898777, -0.0013824822381138802, -0.015552924945950508, 0.011165046133100986, -0.014523576945066452, 0.006078413687646389, -0.013952551409602165, 0.015552924945950508, 0.004057284910231829, 0.011007263325154781, 0.009534618817269802, 0.00834748800843954, -0.024013115093111992, 0.016394436359405518, -0.009444457478821278, 0.011187586933374405, -0.01304341945797205, 0.0020361558999866247, 0.027153754606842995, -7.190644737420371e-06, 0.016304273158311844, 0.016649894416332245, 0.016725029796361923, -0.0004930727882310748, 0.017446324229240417, 0.0037492315750569105, 0.013629470951855183, -0.01603378728032112, 0.01761162094771862, 0.001981683075428009, -0.006044602952897549, 0.008084515109658241, -0.0018332916079089046, 0.02251041680574417, 0.004774822853505611, -0.014117848128080368, -0.01953507401049137, -0.007070194464176893, -0.03248833119869232, -0.012277043424546719, -0.004091095644980669, 0.030444663017988205, -0.012705312110483646, -0.008550351485610008, 0.018122538924217224, 0.01559800561517477, 0.009782563894987106, 0.009158944711089134, 0.03242822363972664, -0.014170442707836628, -0.013298877514898777, -0.007107761688530445, -0.017536485567688942, 0.025846406817436218, 0.010030509904026985, 0.011690990999341011, 0.00942191667854786, 0.01293823029845953, -0.015507844276726246, -0.012419799342751503, -0.01848318614065647, -0.02066209726035595, 0.020496800541877747, -0.002145101549103856, 0.011706017889082432, -0.0015196034219115973, -0.015658114105463028, -0.0094519704580307, 0.018918968737125397, -0.009143917821347713, 0.003989663440734148, 0.013486715033650398, 0.03696637228131294, 0.0068786004558205605, 0.020677125081419945, -0.03928052634000778, -0.010676669888198376, 0.020436692982912064, -0.0026654107496142387, -0.008061975240707397, -0.01824275404214859, -0.0006982850027270615, -0.016289247199892998, 0.007427085191011429, 0.008640513755381107, -0.0037041506730020046, -0.0017750620609149337, 0.0021432230714708567, 0.0005884002312086523, -0.021473554894328117, -0.017010541632771492, -0.010000455193221569, -0.008370027877390385, -0.01559800561517477, 0.009143917821347713, -0.033630382269620895, 0.030234284698963165, -0.02650759369134903, 0.00012749453890137374, -0.010826939716935158, -0.012975797988474369, 0.0037266912404447794, 0.009128890931606293, 0.011999043636023998, 0.007596138399094343, 0.016063842922449112, 0.015958653762936592, 0.014628765173256397, -0.04099360108375549, 0.0005550591158680618, 0.0011627125786617398, 0.02335192821919918, -0.00011722218914655969, 0.0008391629671677947, 0.012389745563268661, -0.003232679096981883, 0.006600601132959127, 0.0006536736618727446, 0.002870153170078993, -0.01346417423337698, -0.001029348117299378, -0.001073489896953106, -0.008760729804635048, -0.026041757315397263, -0.01795724220573902, 0.0010274697560817003, -0.0035350972320884466, 0.007881651632487774, 0.0028325857128947973, 0.033179573714733124, 0.0030748958233743906, -0.002896450459957123, 0.015613032504916191, 0.034231461584568024, -0.00021343008847907186, 0.0012002800358459353, 0.008865918032824993, -0.022224904969334602, -0.012637690640985966, -0.002565857023000717, -0.031045742332935333, 0.018287835642695427, 0.0281906146556139, -0.0014604346361011267, -0.020526856184005737, 0.0034900163300335407, -0.004677147604525089, 0.020151181146502495, 0.018723618239164352, 0.016394436359405518, -0.004226338118314743, 0.012119259685277939, -0.009790077805519104, 0.016920380294322968, -0.0008227271609939635, -0.013869903050363064, -0.013914983719587326, 0.005518658552318811, -0.00477857980877161, -0.010594021528959274, -0.030760228633880615, -0.014463468454778194, -0.01104483101516962, 0.000731626118067652, 0.00678468169644475, -0.011022290214896202, -0.017731836065649986, 0.003078652545809746, -0.006788438651710749, 0.009466997347772121, -0.005849251989275217, 0.011428019031882286, 0.009519591927528381, -0.0030711391009390354, -0.0054059564135968685, -0.0014547995524480939, -0.004928849637508392, -0.009008674882352352, 0.028310831636190414, -0.008783269673585892, 0.01146558579057455, 0.014921791851520538, -0.019444912672042847, -0.0123446648940444, -0.010962182655930519, 0.014929304830729961, 0.02087247557938099, 0.0001903026131913066, -0.0025696137454360723, 0.006987546104937792, 0.02177409455180168, -0.002421222161501646, 0.0010471927234902978, 0.010428724810481071, 0.015628060325980186, -0.005924386903643608, -0.004943876527249813, -0.014959358610212803, -0.008678081445395947, -0.0215336624532938, 0.001539326272904873, 0.00994786061346531, 0.005988251883536577, 0.023442089557647705, 0.02079734019935131, 0.008445163257420063, -0.010203319601714611, -0.016154004260897636, -0.008850891143083572, 0.015973679721355438, -0.01729605533182621, -0.019730424508452415, 0.0038957446813583374, -0.008693108335137367, -0.008242298848927021, -0.013020878657698631, -0.003737961407750845, -0.014628765173256397, 0.00880581047385931, -0.0028213155455887318, 0.005394686013460159, -0.026988456025719643, 0.015132169239223003, 0.015011953189969063, -0.01295325718820095, 0.025500785559415817, -7.578059012303129e-05, -0.0038412718567997217, 0.004354067612439394, 0.011540721170604229, 0.009204025380313396, -0.005875549279153347, -0.02016620710492134, 0.013930010609328747, 0.0031988683622330427, -0.0016182179097086191, 0.005188065115362406, 0.008723162114620209, 0.009016187861561775, 0.021593770012259483, -0.006822248920798302, -0.023442089557647705, -0.016379408538341522, -0.02706359140574932, -0.0030429635662585497, -0.011788666248321533, -0.015184763818979263, -0.005559982731938362, 0.0064127640798687935, 0.007096491754055023, 0.012742879800498486, 0.02532046288251877, -0.023682521656155586, 0.0033547733910381794, -0.0013223743299022317, -0.014027685858309269, -0.008941053412854671, 0.004030987620353699, 0.009812618605792522, -0.0050265248864889145, -0.009910293854773045, -0.005218118894845247, -0.0035707862116396427, -0.007660003378987312, -0.0008880006498657167, 0.014410873875021935, 0.015432708896696568, 0.016379408538341522, 0.013757200911641121, -0.02237517386674881, 0.022555498406291008, -0.007588624954223633, 0.024013115093111992, 0.024028141051530838, 0.014606225304305553, 0.006341385655105114, -0.004481797106564045, -0.0036384076811373234, 0.019835613667964935, 0.010150725021958351, 0.01837799698114395, -0.0004261557769495994, -0.004748526029288769, -0.005323308054357767, 0.027364131063222885, 0.0016323057934641838, -0.01512465626001358, 0.013321418315172195, -0.010684182867407799, -0.006619384977966547, -0.0006884235190227628, 0.024629220366477966, 0.01472644042223692, -0.005105416756123304, -0.0034073677379637957, 0.005240659229457378, 0.010203319601714611, 0.014140388928353786, -0.015079574659466743, 0.001587224774993956, 0.006198629271239042, -0.004598256200551987, -0.005725279450416565, -0.026582729071378708, 0.006469115149229765, 0.015988707542419434, 0.0033848274033516645, 0.014501036144793034, 0.006931194569915533, 0.005439767148345709, 0.01218688115477562, -0.01971539855003357, -0.007179140113294125, -0.011931422166526318, -0.008077002130448818, -0.005875549279153347, 0.017386216670274734, 0.00810705590993166, -0.01722091995179653, 0.0060333325527608395, -0.01368957944214344, 0.00544352363795042, 0.012352177873253822, -0.007603652309626341, -0.007498463150113821, 0.00026485053240321577, -0.003377313958480954, 0.01071423664689064, -0.020091073587536812, 0.006044602952897549, -0.005011497996747494, 0.0013505498645827174, -0.01779194548726082, -0.007577355019748211, 0.021894309669733047, -0.017942214384675026, -0.006194872781634331, -0.004523121286183596, 0.021683933213353157, -0.0016407584771513939, 0.008640513755381107, 0.009286673739552498, -0.012231961823999882, 0.012464880011975765, -0.030624985694885254, -0.020091073587536812, -0.0032176522072404623, 0.011533207260072231, -0.011202613823115826, 0.003351016668602824, 0.020391613245010376, -0.009271646849811077, 0.003963366150856018, 0.035734158009290695, 0.018047403544187546, -0.00552241550758481, 0.01416292879730463, 0.008708135224878788, 0.018092485144734383, 0.007359463721513748, 0.0078065162524580956, 0.027514401823282242, -0.004650850314646959, -0.013419093564152718, -0.010255914181470871, -0.015432708896696568, -0.01141299121081829, 0.007472165860235691, -0.013178661465644836, 0.015537898056209087, -0.0002944348962046206, -0.0004285037284716964, -0.01088704727590084, 0.0008908181916922331, 0.012592609971761703, -0.005755333695560694, -0.022330092266201973, -0.0007161295507103205, 0.0045606885105371475, -0.01732610911130905, 0.0017966633895412087, -0.007652489934116602, 0.003529462032020092, -0.01837799698114395, 0.020211288705468178, -0.0017760012997314334, 0.031015688553452492, 0.0045606885105371475, -0.008745702914893627, -0.00410612253472209, -0.0014698265586048365, 0.01092461496591568, -0.006702033337205648, -0.00044353073462843895, 0.0019891965202987194, 0.00670578982681036, -0.002975342096760869, -0.010789372026920319, 0.007964299991726875, -0.019700370728969574, -0.008272352628409863, -0.015154710039496422, -0.039160311222076416, 0.02114296145737171, 0.015365087427198887, -0.01024088729172945, -0.0032965438440442085, -0.029392773285508156, 0.004463013261556625, 0.005097903311252594, 0.0019272102508693933, 0.009444457478821278, 0.011751098558306694, 0.019550101831555367, -0.0133965527638793, -0.0025621000677347183, -0.0003190885472577065, -0.006480385549366474, 0.047244828194379807, 0.02055690996348858, 0.015199790708720684, -0.01663486659526825, 0.015703193843364716, -0.01428314484655857, 0.0046884180046617985, 0.0017891498282551765, -0.012141800485551357, -0.008219758048653603, 0.004808633588254452, 0.0054923612624406815, 0.009632294066250324, 0.015034493990242481, -0.003037328366190195, -0.006409007124602795, -0.002911477582529187, 0.006296304985880852, 0.0039032581262290478, 0.016995515674352646, 0.003694758750498295, 0.007622435688972473, -0.014598711393773556, 0.004609526135027409, 0.019234534353017807, -0.006131007801741362, 0.000988963176496327, -0.014395846985280514, -0.009083809331059456, -0.0016858393792062998, 0.018332915380597115, 0.0070138429291546345, -0.018047403544187546, 0.0015656235627830029, -0.0007687239558435977, 0.021278204396367073, 0.007299355696886778, -0.00043695641215890646, 0.005037795286625624, -0.0035707862116396427, -0.011037317104637623, -0.020647071301937103, 0.02124815061688423, 0.00400093337520957, -0.03209763020277023, -0.0029321396723389626, -0.003196990117430687, 0.010533913038671017, 0.010038022883236408, -0.004609526135027409, 0.005191821604967117, 0.0014087794115766883, 0.004380364902317524, 0.004451742861419916, 0.018528267741203308, 0.00020744277571793646, 0.005045308731496334, -0.002460668096318841, -0.007911705411970615, -0.009241593070328236, -0.014470982365310192, 0.008768242783844471, 0.008182191289961338, 0.015244871377944946, -0.0066757360473275185, 0.02542565017938614, -0.006431547459214926, 0.009549645707011223, 0.000997415860183537, -0.00151678582187742, 0.01774686388671398, -0.010060563683509827, 0.019805559888482094, -0.007566084619611502, 0.0017450081650167704, -0.01634935475885868, -0.017987295985221863, -0.011217640712857246, -0.00042451219633221626, 0.008407595567405224, -0.0052782269194722176, -0.005503631662577391, 0.0021976958960294724, -0.016078868880867958, -0.0135693633928895, -0.0012378474930301309, 0.006484142038971186, 0.014576171524822712, 0.01104483101516962, -0.0011195100378245115, -0.00472598522901535, 0.0024362492840737104, 0.0050528221763670444, 0.028040345758199692, 0.005815441254526377, -0.010879534296691418, -0.029077207669615746, 0.0065743038430809975, 0.00272176181897521, 0.006018305663019419, 0.017281027510762215, -0.005135470535606146, 0.00036299548810347915, 0.0033998542930930853, -0.0022239931859076023, -0.022555498406291008, -0.012472393922507763, -0.0005785387475043535, 0.008512784726917744, 6.732791371177882e-05, -0.014455955475568771, -0.0025902758352458477, -0.003228922374546528, 0.0035444889217615128, -0.0001864284713519737, 0.016063842922449112, 0.008557865396142006, -0.007776462472975254, 0.004493067041039467, 0.0006273764302022755, -0.019039183855056763, -0.006946221925318241, 0.01559800561517477, -0.004218824673444033, -0.018287835642695427, -0.003268368309363723, -0.0010471927234902978, 0.017025569453835487, -0.0031293686479330063, 0.002890815259888768, 0.007254275027662516, -0.0034881378524005413, 0.00892602652311325, 0.02366749383509159, 0.002823194023221731, -0.0033228411339223385, 0.020196260884404182, -0.002043669344857335, 0.006352656055241823, 0.0071904100477695465, -0.020211288705468178, 0.038709502667188644, 0.020677125081419945, 0.009519591927528381, 0.012059152126312256, -0.01351676881313324, -0.009872726164758205, 0.018858861178159714, 0.004538148175925016, -0.014688873663544655, 0.021173015236854553, -0.0046621207147836685, 0.003555759321898222, 0.016544705256819725, -0.010158238932490349, 0.00171119743026793, 0.005259443074464798, 0.02027139626443386, -0.009339268319308758, -0.004365338012576103, 0.01484665647149086, 0.0008757911855354905, 0.0015712586464360356, 0.012983310967683792, 0.009346782229840755, -0.008302406407892704, -0.011014776304364204, 0.0012293948093429208, -0.009805104695260525, 0.0004874376754742116, 0.0008330582058988512, 0.005259443074464798, -0.0016614205669611692, 0.005582523066550493, -0.01803237572312355, 0.0093693220987916, -0.011533207260072231, -0.009579700417816639, 0.003151909215375781, -0.01705562323331833, 0.0002068557805614546, 0.016484597697854042, 0.024493977427482605, -0.004868741612881422, -0.008467703126370907, 0.006330115720629692, -0.010841966606676579, 0.012066665105521679, 0.00416623055934906, -6.374726945068687e-05, 0.010541426949203014, 0.0031011931132525206, -0.012540015392005444, -0.011525694280862808, -0.004677147604525089, 0.0036553130485117435, 0.008182191289961338, -0.008272352628409863, -0.04610277712345123, 0.004741012118756771, 0.01271282508969307, 0.0014867319259792566, -0.018573347479104996, -0.012562555260956287], "33975052-fe24-499e-a051-aa9a7d5a83e5": [-0.01089861523360014, -0.0037863822653889656, -0.007699940819293261, 0.007838678546249866, -0.06412763148546219, -0.021951382979750633, 0.01426685694605112, 0.029982753098011017, -0.02486487291753292, 0.019777825102210045, 0.028256239369511604, 0.03280375152826309, 0.005464722868055105, -0.005017679184675217, -0.022413842380046844, 0.026683878153562546, -0.027593381702899933, 0.01420519594103098, 0.011353366076946259, 0.010089311748743057, 0.06721069663763046, -0.005688244476914406, -0.059564705938100815, 0.01543841976672411, -0.007037083152681589, -0.011152966879308224, 0.0039386083371937275, -0.014798684976994991, -0.03221797198057175, -0.006335686892271042, 0.009318547323346138, -0.0020001346711069345, 0.0034144881647080183, -0.02276839315891266, 0.00017233820108231157, -0.04846569150686264, -0.02005530148744583, -0.003123524598777294, -0.004628442693501711, 0.0006816451787017286, -0.02323085255920887, 0.008339675143361092, 0.03323537856340408, 0.026529725641012192, -0.03357451781630516, 0.034530263394117355, 0.0026437235064804554, -0.010667385533452034, 0.00706791365519166, 0.006435886491090059, 0.022352179512381554, 0.016509782522916794, -0.014436425641179085, 0.0036245216615498066, 0.01568506471812725, -0.015708187595009804, 0.020980218425393105, 0.084784135222435, 0.0012823600554838777, -0.014220611192286015, 0.011253166943788528, -0.008486120961606503, -0.013164663687348366, 0.002341198269277811, -0.034499432891607285, -0.013018217869102955, -0.01220120768994093, -0.016139816492795944, -0.022506333887577057, -0.009996820241212845, -0.005383792333304882, 0.045845091342926025, -0.023754972964525223, -0.005383792333304882, -0.006882930174469948, -0.001558871939778328, 0.022675901651382446, 0.025019027292728424, 0.022583410143852234, 0.027346735820174217, -0.04066555202007294, -0.00037309835897758603, 0.015261143445968628, 0.026683878153562546, 0.08034452795982361, 0.006312564015388489, -0.017203470692038536, -0.040172263979911804, -0.029057834297418594, -0.018267126753926277, -0.016741013154387474, 0.036503423005342484, -0.01641729101538658, -0.010027650743722916, -0.0047247884795069695, -0.0297361072152853, 0.025851452723145485, 0.00045330607099458575, 0.017665930092334747, -0.004709373228251934, 0.01211642287671566, 0.031061822548508644, -0.045074328780174255, 0.013072171248495579, -0.015939416363835335, -0.03798329085111618, -0.007707648444920778, -0.0008902333793230355, -0.032957904040813446, 0.03767498582601547, 0.009441869333386421, -0.03070727176964283, 0.0024356169160455465, 0.03601013496518135, -0.018005067482590675, -0.028749529272317886, -0.02400161698460579, -0.01712639443576336, 0.028317900374531746, -0.0356401652097702, 0.016972241923213005, 0.016741013154387474, -0.0165560282766819, 0.007653695065528154, -0.033266209065914154, 0.002813291735947132, 0.011206921190023422, -0.004308575298637152, 0.013241739943623543, 0.002215948887169361, -0.030599365010857582, -0.025219425559043884, -0.00433940626680851, 0.04109718278050423, 0.02279922366142273, 0.0004841366608161479, 0.014289979822933674, 0.046677518635988235, -0.017712175846099854, 0.03197132423520088, -0.061260391026735306, -0.07146531343460083, -0.007118013221770525, 0.013904597610235214, -0.00021990884852129966, -0.0029770792461931705, -0.006902199238538742, 0.04997639358043671, -0.002734288340434432, 0.0027901686262339354, -0.021535169333219528, -0.024541152641177177, -0.007372365798801184, 0.02246008813381195, 0.009642268531024456, -0.026051850989460945, 0.009010241366922855, 0.058023177087306976, 0.006906053051352501, -0.005094755440950394, -0.014875761233270168, -0.0594722144305706, -0.010335956700146198, 0.012501806020736694, 0.03130846843123436, 0.014151242561638355, 0.05204204097390175, 0.019407859072089195, -0.025974774733185768, 0.02767045795917511, 0.03354368731379509, 0.013896889984607697, 0.017943404614925385, -0.0318480022251606, 0.02369331195950508, -0.011561472900211811, 0.048681508749723434, 0.012555759400129318, 0.008085323497653008, -0.009495822712779045, -0.010991106741130352, 0.014945129863917828, 0.0029982752166688442, -0.016031907871365547, 0.014459548518061638, 0.004428043961524963, 0.0017101344419643283, 0.0065669165924191475, -0.004139007069170475, 0.0072683123871684074, -0.012417021207511425, -0.0112839974462986, 0.026776369661092758, 0.018544601276516914, -0.015006791800260544, -0.008324259892106056, 0.039370667189359665, 0.01721888594329357, 0.020841481164097786, 0.01099881436675787, -0.012247453443706036, -0.04285452514886856, -0.04723246768116951, 0.03675006702542305, -0.0391240231692791, 0.03406780585646629, -0.03357451781630516, 0.015230312943458557, 0.029828598722815514, -0.008385921828448772, 0.02844122238457203, -0.03961731120944023, 0.028764944523572922, -0.00891004130244255, 0.002595550613477826, -0.003256481373682618, -0.01758885383605957, 0.045012667775154114, 0.021118957549333572, -0.0416521318256855, 0.004381798207759857, -0.0075650569051504135, -0.006258610635995865, -0.024155769497156143, -0.052319519221782684, -0.004489705432206392, -0.023153776302933693, 0.025913113728165627, -0.02316919155418873, -0.016278553754091263, 0.01486805360764265, 0.003447245806455612, -0.02276839315891266, 0.0020598690025508404, 2.4628345272503793e-05, 0.030383549630641937, 0.023338759317994118, 0.015130113810300827, -0.004489705432206392, 0.014559747651219368, 0.014104996807873249, 0.02303045429289341, -0.013372769579291344, 0.028117502108216286, 0.03406780585646629, 0.013195494189858437, 0.0031158169731497765, 0.026791786774992943, 0.006485986057668924, -0.014390179887413979, 0.006651700474321842, 0.01942327432334423, 0.012224330566823483, -0.010073896497488022, -0.024741550907492638, 0.05210370197892189, 0.014128119684755802, -0.04152880981564522, 0.011939147487282753, -0.014474963769316673, -0.010914030484855175, 0.008339675143361092, -0.01902247592806816, 0.0022082412615418434, 0.04717080667614937, -0.0331120565533638, 0.019947394728660583, -0.0178200826048851, 0.0061584110371768475, 0.04880483075976372, -0.011900609359145164, -0.0215659998357296, 0.031693849712610245, -0.0011147186160087585, 0.018035897985100746, -0.015315097756683826, -0.017912574112415314, -0.018405864015221596, -0.011707917787134647, -0.0017563804285600781, 0.02389371022582054, 0.015800679102540016, 0.015762140974402428, 0.0015550180105492473, -0.02873411402106285, 0.052288684993982315, -0.024988196790218353, 0.015846924856305122, -0.03844575211405754, 0.003395219100639224, 0.002160068368539214, -0.025157764554023743, 0.02967444621026516, -0.0004446349630597979, 0.013018217869102955, -0.006154557224363089, 0.003530103014782071, -0.028287069872021675, -0.010073896497488022, 0.0010838881134986877, -0.01406645867973566, -0.02356998808681965, -0.01426685694605112, -0.02306128479540348, 0.00036177775473333895, -0.023647066205739975, 0.03382116183638573, -0.0017515630461275578, -0.008486120961606503, 0.02202845923602581, 0.03625677898526192, -0.01795882172882557, -0.009303132072091103, -0.0013864132342860103, -0.011391904205083847, 0.005784590262919664, 0.03508521616458893, 0.010752169415354729, -0.03351285681128502, -0.0215659998357296, 0.04066555202007294, -0.005453161429613829, -0.04633838310837746, 0.00836279895156622, -0.008940871804952621, -0.0471399761736393, 0.04118967428803444, -0.021180618554353714, -0.016602274030447006, -0.043810274451971054, -0.021288525313138962, -0.021643076092004776, -0.012987387366592884, -0.017835497856140137, -0.021334771066904068, -0.02907324954867363, -0.02970527671277523, -0.020779820159077644, -0.010536354966461658, -0.037335850298404694, -0.00827801413834095, -0.014644531533122063, -0.021843476220965385, -0.024911120533943176, -0.0005178576102480292, -0.005869374144822359, -0.03133929893374443, 0.004878941457718611, -0.0006378078833222389, 0.012232038192451, 0.0009933231631293893, -0.01244785264134407, 0.0294740479439497, 0.005187247414141893, 0.012733034789562225, -0.00574219785630703, -0.04270037263631821, -0.012455560266971588, -0.0030830593314021826, -0.00807761587202549, 0.0020752842538058758, -0.036503423005342484, -0.023539157584309578, 0.0016012639971449971, -0.0169259961694479, 0.005557214375585318, -0.009588314220309258, -0.005792297888547182, -0.014012504369020462, 0.008409044705331326, -0.02406327798962593, -0.006354955956339836, 0.013141540810465813, 0.018868323415517807, -0.03727418929338455, -0.02016320824623108, 0.04612256959080696, -0.021242279559373856, -0.00015186476230155677, 0.005668975412845612, 0.0010039211483672261, 0.06144537404179573, 0.02013237774372101, -0.028425807133316994, 0.015631111338734627, 0.02025569975376129, 0.023153776302933693, -0.032495446503162384, -0.000508704804815352, 0.0009321437100879848, -0.04800323396921158, 0.04371778294444084, -0.009542068466544151, 0.0037825284525752068, -0.009156686253845692, 0.011877486482262611, -0.027192583307623863, -0.016278553754091263, -0.005067778751254082, -0.014189780689775944, 0.018513770774006844, 0.0026841885410249233, 0.009079609997570515, 0.011376488953828812, 0.027824610471725464, -0.03283458203077316, -0.026514310389757156, -0.029782352969050407, 0.016679350286722183, 0.02603643573820591, -0.02033277601003647, -0.019099552184343338, 0.013981673866510391, 0.010860076174139977, 0.03770581632852554, 0.00491362577304244, 0.0034857839345932007, 0.040542230010032654, -0.016602274030447006, -0.040603891015052795, 0.03505438566207886, 0.053614404052495956, 0.009249177761375904, 0.002242925576865673, -0.028194578364491463, 0.03394448384642601, 0.03419112786650658, 0.04939061030745506, -0.014991376549005508, 0.01061343215405941, -0.004782595671713352, 0.011723333038389683, -0.00621621822938323, -0.012663666158914566, 0.02136560156941414, -0.028579959645867348, 0.008963994681835175, 0.002641796600073576, -0.019808655604720116, -0.030213981866836548, 0.006378078833222389, 0.059564705938100815, -0.013496092520654202, -0.029119495302438736, -0.017080148681998253, -0.005915620364248753, -0.03382116183638573, -0.01999364048242569, 0.01261742040514946, 0.02466447465121746, -0.006493693683296442, 0.013812106102705002, -0.040172263979911804, 0.00757661834359169, -0.021442677825689316, -0.006204656790941954, 0.012470975518226624, -0.0035320299211889505, -0.008170107379555702, -0.02552773244678974, -0.04485851526260376, 0.006316417828202248, 0.030059829354286194, -0.001357509521767497, -0.015199482440948486, -0.0449201762676239, 0.0021851183846592903, 0.005888643208891153, 0.010066188871860504, -0.012162669561803341, 0.008963994681835175, -0.006366517394781113, 0.005510968621820211, -0.017003072425723076, -0.019515765830874443, -0.03582514822483063, -0.002595550613477826, -0.001156147220171988, 0.004520535934716463, -0.01982407085597515, -0.009542068466544151, -0.003275750670582056, -0.032187141478061676, 0.01343443151563406, 0.009218347258865833, -0.027485474944114685, -0.024649059399962425, -0.03995645046234131, -0.014444133266806602, -0.005403061397373676, 0.0677039846777916, -0.0038249206263571978, 0.027994178235530853, 0.00906419474631548, -0.006077480968087912, 0.007272166199982166, 0.007372365798801184, -0.049513932317495346, -0.00824718363583088, -0.0012794695794582367, -0.01194685511291027, -0.009210639633238316, 0.02179723046720028, 0.01789715886116028, 0.0037940898910164833, -0.007815555669367313, -0.01455204002559185, 0.0029597370885312557, -0.0021446531172841787, -0.0030136904679238796, -0.008979410864412785, 0.03030647337436676, -0.001681230845861137, 0.011253166943788528, 0.016571443527936935, 0.0016754501266404986, -0.013842936605215073, -0.006189241539686918, 0.012733034789562225, -0.0007881070487201214, 0.006821268703788519, -0.002202460542321205, -0.0003942943876609206, 0.020548591390252113, 0.00989662017673254, -0.019299952313303947, -0.025558562949299812, -0.02196679823100567, 0.0119160246104002, -0.03841491788625717, -0.015423004515469074, 0.012987387366592884, -0.022213442251086235, 0.0012602005153894424, 0.026360157877206802, -0.024371584877371788, -0.036503423005342484, 0.00751110352575779, 0.01081383042037487, 0.00820864550769329, -0.05090130865573883, 0.055217593908309937, 0.017480947077274323, -0.012887188233435154, -0.012363067828118801, 0.02500361204147339, -0.028826605528593063, 0.015592572279274464, 0.023585403338074684, 0.011515227146446705, -0.03351285681128502, 0.0011108648031949997, -0.012047054246068, 0.010775292292237282, -0.002770899562165141, -0.0694921612739563, 0.04007977247238159, -0.011260874569416046, -0.017850913107395172, -0.017542608082294464, 0.010420740582048893, -0.00703322933986783, 0.005676683038473129, 0.03465358912944794, -0.00962685327976942, -0.013341939076781273, -0.04433439299464226, 0.03338953107595444, -0.019053306430578232, 0.025111518800258636, 0.02606726624071598, -0.016401875764131546, 0.05463181063532829, 0.0024857167154550552, 0.013226324692368507, -0.011738748289644718, 0.009834959171712399, 0.003547445172443986, -0.01581609435379505, -0.0030926938634365797, -0.002844122238457203, -0.03560933470726013, 0.02686886303126812, -0.003144720569252968, 0.0053992075845599174, 0.021535169333219528, 9.791122283786535e-05, -0.02096480317413807, -0.007287581451237202, 0.002905783476307988, -0.006169972475618124, 0.029165741056203842, -0.0022120950743556023, -0.020887726917862892, -0.009842666797339916, 0.009542068466544151, -0.019346198067069054, 0.012093299999833107, -0.0013979747891426086, -0.03323537856340408, 0.004031100310385227, 0.04199126735329628, 0.0027323614340275526, -0.043902765959501266, -0.0165560282766819, 0.029196571558713913, -0.015777556225657463, 0.027778364717960358, -0.015214897692203522, 0.030815178528428078, 0.020486930385231972, 0.013457554392516613, 0.031215976923704147, -0.010875492356717587, 0.02950487844645977, 0.0017101344419643283, 0.01672559790313244, 0.04377944394946098, 0.020301945507526398, -0.021334771066904068, 0.015970246866345406, -0.018005067482590675, 0.05204204097390175, -0.010567186400294304, 0.025358162820339203, -0.01001223549246788, 0.010567186400294304, -0.02363165095448494, 0.0024259823840111494, 0.006351102143526077, -0.010305126197636127, 0.0005404988187365234, 0.00786180142313242, -0.04837319999933243, 0.031123483553528786, -0.0234620813280344, -0.017496362328529358, 0.01595483161509037, -0.031000161543488503, -0.006651700474321842, -0.028086671605706215, 0.004643857944756746, 0.0014249514788389206, 0.024741550907492638, -0.006142995785921812, 0.03127763792872429, -0.0371200330555439, 0.013234032317996025, 0.04078887403011322, -0.014467256143689156, -0.010544062592089176, -0.015554034151136875, -0.01483722310513258, 0.01493742223829031, 0.009927451610565186, -0.032927073538303375, 0.003543591359630227, 0.004771034233272076, -0.004297013860195875, -0.007969708181917667, 0.03178634122014046, -0.011191505938768387, 0.002133091678842902, 0.011337950825691223, 0.010197218507528305, 0.018667925149202347, 0.04553678631782532, 0.009973697364330292, -0.00951123796403408, 0.031262222677469254, -0.00044270805665291846, -0.019870318472385406, 0.03428361937403679, -0.0003068607475142926, 0.005110170692205429, -0.0020887728314846754, -0.006640139035880566, -0.010436155833303928, -0.0033932921942323446, 0.015800679102540016, -0.006085188593715429, -0.0284720528870821, -0.056728292256593704, -0.0016272772336378694, 0.03234129399061203, -0.022136365994811058, 0.015145529061555862, -0.008570904843509197, -0.01598566211760044, -0.0496680848300457, 0.014058751054108143, 0.0052373469807207584, -0.011808116920292377, 0.016741013154387474, -0.014844930730760098, 0.018498355522751808, 0.012185792438685894, 0.007580472156405449, 0.036565084010362625, -0.03157052770256996, -0.03554767370223999, -0.022290518507361412, 0.011052767746150494, -0.02236759662628174, 0.003984854090958834, 0.04359446093440056, -0.018683340400457382, -0.021504338830709457, 0.012671373784542084, 0.007684525568038225, -0.0018903007730841637, 0.0006161301280371845, 0.0009952500695362687, 0.026807202026247978, 0.003298873547464609, 0.002285317750647664, 0.0042893062345683575, -0.009942866861820221, -0.007788578514009714, 0.0015367123996838927, 0.014613701030611992, 0.02336958982050419, -0.004559074062854052, -0.027947932481765747, -0.05259699374437332, 0.019299952313303947, 0.01649436727166176, -0.00032998371170833707, -0.001519370242021978, 0.004316282924264669, 0.023816633969545364, -0.0062932949513196945, -0.01632479950785637, -0.0028229262679815292, -0.009241470135748386, -0.006077480968087912, -0.027115507051348686, 0.0026707001961767673, 0.05157958343625069, -0.017604269087314606, -0.0017428919672966003, -0.017280546948313713, 0.032032985240221024, -0.015592572279274464, -0.0029635909013450146, 0.029489463195204735, 0.02993650734424591, -0.02700760029256344, 0.0036707676481455564, 0.01061343215405941, 0.040203094482421875, -0.026483479887247086, 0.038137443363666534, 0.011391904205083847, 0.0020695035345852375, 0.007908047176897526, 0.03601013496518135, 0.009249177761375904, -0.011538350023329258, 0.03305039554834366, 0.0006652664160355926, 0.010705923661589622, -0.01546925026923418, -0.004096615128219128, 0.027855440974235535, 0.0008748180698603392, -0.023354174569249153, 0.02683803252875805, 0.028919097036123276, -0.026560556143522263, 0.011854363605380058, 0.013141540810465813, -0.003643790725618601, 0.03961731120944023, -0.007742332760244608, -0.006089042406529188, -0.011792701669037342, 0.005194955039769411, -0.027285074815154076, -0.007757748011499643, -0.025126934051513672, -0.03588680922985077, 0.014698485843837261, -0.0128640653565526, 0.025342747569084167, -0.039339836686849594, 0.020286530256271362, 0.008725058287382126, -0.01885290816426277, -0.007630571722984314, 0.012378483079373837, 0.01678725890815258, -0.016031907871365547, 0.004058077000081539, -0.023924540728330612, -0.016478952020406723, 0.018883738666772842, -0.030953915789723396, -0.015130113810300827, 0.014197488315403461, 0.00290000275708735, -0.034376110881567, 0.04411857947707176, 0.027608796954154968, -0.018482940271496773, -0.024248261004686356, 0.004982994869351387, 0.0004911217256449163, 0.0034800032153725624, 0.0053221313282847404, -0.028394976630806923, -0.05484762787818909, 0.015392174012959003, 0.02340042032301426, -0.007410903926938772, -0.0038692394737154245, -0.009935159236192703, 0.015114698559045792, 0.012971972115337849, -0.005187247414141893, -0.02443324588239193, 0.014875761233270168, 0.025928528979420662, -0.0010655823862180114, -0.028579959645867348, -0.006324125453829765, 0.033728670328855515, -0.006135288160294294, 0.020486930385231972, 0.022151781246066093, 0.007792432326823473, -0.02907324954867363, -0.01675642840564251, 0.04316283017396927, -0.009395623579621315, 0.020317360758781433, -0.023045869544148445, -0.022814638912677765, -0.03431444987654686, 0.029412386938929558, -0.015353635884821415, -0.024618228897452354, -0.02116520330309868, -0.02059483714401722, 0.015769848600029945, -0.009249177761375904, 0.011052767746150494, -0.008355091325938702, 0.04476602375507355, 0.018405864015221596, 0.01745011657476425, -0.006871368736028671, 0.0019500351045280695, 0.02269131690263748, -0.026730123907327652, 0.02893451228737831, -0.02400161698460579, -0.00022629174054600298, -0.00114940304774791, -0.014243734069168568, 0.02844122238457203, -0.005811566952615976, -0.024618228897452354, -0.0024433245416730642, -0.022706732153892517, -0.017049318179488182, -0.024556567892432213, -0.01956201158463955, -0.0022930253762751818, 0.0046708351001143456, 0.0008107482572086155, 0.005368377082049847, 0.017943404614925385, 0.02262965589761734, -0.01956201158463955, -0.013234032317996025, -0.032557107508182526, -0.017080148681998253, -0.04155964031815529, -0.013072171248495579, 0.038630735129117966, 0.003530103014782071, 0.008848380297422409, 0.0038287744391709566, -0.06172284856438637, -0.005430038087069988, 0.05404603108763695, -0.014783269725739956, -0.01701848767697811, -0.009341670200228691, 0.011576888151466846, -0.013966258615255356, -0.022120950743556023, -0.042299576103687286, -0.003811432048678398, -0.02306128479540348, -0.005784590262919664, -0.031524281948804855, 0.006223926320672035, -0.005665121600031853, 0.0006965787033550441, -0.038969870656728745, -0.03807578235864639, 0.0037035250570625067, 0.00042127116466872394, -0.053984370082616806, 0.023307928815484047, 0.024972781538963318, 0.025681884959340096, 0.04519765079021454, 0.04041890799999237, 0.013665660284459591, -0.014482671394944191, -0.001928839017637074, 0.056327495723962784, 0.0013160809176042676, -0.001961596542969346, -0.011206921190023422, -0.014729316346347332, 0.01546925026923418, 0.01303363312035799, -0.008039077743887901, -0.012370775453746319, 0.010944860987365246, -0.012655958533287048, -0.019639087840914726, 0.0034299036487936974, -0.00830884464085102, 0.0038923623505979776, 0.03601013496518135, -0.02065649814903736, 0.0013700345298275352, 0.022043874487280846, 0.005788444075733423, 0.04118967428803444, -0.027408398687839508, -0.025620223954319954, -0.009179809130728245, -0.03053770214319229, -0.0169259961694479, -0.022244272753596306, -0.013742737472057343, 0.04189877584576607, -0.008100738748908043, 0.004998410120606422, -0.01675642840564251, -0.015029914677143097, 0.01876041665673256, 0.01678725890815258, 0.03428361937403679, 0.0034568803384900093, 0.030229397118091583, 0.01536905113607645, 0.0018218953628093004, 0.025681884959340096, 0.028657035902142525, -0.009927451610565186, 0.005248908419162035, 0.03468441963195801, -0.013156956061720848, 0.012478683143854141, -0.02830248512327671, 0.0035628604236990213, 0.004902064334601164, -0.019839486107230186, 0.0030233249999582767, -0.03545518219470978, 0.009041071869432926, -0.016078155487775803, -0.011754163540899754, -0.009280008263885975, -0.03298873454332352, -0.002857610583305359, 0.0032911659218370914, 0.022413842380046844, -0.01772759109735489, -0.014844930730760098, -0.01752719283103943, -0.0016166792484000325, -0.023677896708250046, 0.04442688450217247, -0.004478143528103828, 0.01452120952308178, -0.004986848682165146, -0.0005294191068969667, 0.019515765830874443, 0.005603460595011711, 0.012077884748578072, -0.004377944394946098, 0.02239842712879181, 0.0053722308948636055, -0.03730501979589462, -0.014644531533122063, 0.005576483439654112, 0.01486805360764265, -0.0035956180654466152, -0.004975287243723869, -0.02549690008163452, -0.0012900676811113954, -0.03320454806089401, -0.014182073064148426, -0.0028152186423540115, -0.02747005969285965, 0.06150703504681587, -0.007495688274502754, 0.038599904626607895, -0.0006734557682648301, 0.03634927049279213, 0.019716164097189903, -0.0019500351045280695, 0.0005390536389313638, -0.02306128479540348, 0.00880984216928482, -0.014629116281867027, 0.02042526751756668, 0.023184606805443764, -0.024017032235860825, -0.04963725432753563, -0.016293969005346298, 0.018714170902967453, 0.012709911912679672, 0.0010492036817595363, -0.01556944940239191, -0.03560933470726013, -0.002414420945569873, 0.01392001286149025, 0.0031562820076942444, -0.00027723447419703007, 0.01715722493827343, -0.006173826288431883, -0.01672559790313244, -0.013018217869102955, -0.0019770117942243814, -0.016047323122620583, -0.003732428653165698, -0.021905137225985527, -5.491699630510993e-05, -0.05379938706755638, -0.006011965684592724, 0.003372096223756671, 0.04599924758076668, -0.006605454720556736, -0.0107829999178648, 0.0060196733102202415, 0.01244785264134407, -0.011091305874288082, -0.009441869333386421, 6.954948185011744e-05, -0.026945939287543297, 0.013056755997240543, 0.02609809674322605, -0.01598566211760044, -0.010867783799767494, -0.020872311666607857, 0.006732631009072065, 0.0021061149891465902, 0.001135914702899754, -0.006825122516602278, -0.002005915390327573, 0.031755510717630386, -0.009950574487447739, 3.075532367802225e-05, 0.058331482112407684, -0.011669379658997059, 0.019870318472385406, -0.04985307157039642, -0.022136365994811058, 0.020579421892762184, -0.014104996807873249, 0.015345928259193897, -0.005719074979424477, 0.003075351705774665, -0.005233493167907, 0.012494098395109177, 0.005719074979424477, 0.008540074340999126, -0.0022737563122063875, 0.014575162902474403, 0.016509782522916794, -0.023939955979585648, -0.025882283225655556, -0.0032275777775794268, -0.017003072425723076, -0.013588584028184414, -0.004385652020573616, -0.002206314355134964, 0.015631111338734627, 0.021442677825689316, 0.0011975758243352175, 0.021041879430413246, -0.02025569975376129, 0.012363067828118801, 0.011083598248660564, -0.009387915953993797, -0.020671913400292397, -0.00012765792780555785, -0.01324944756925106, 0.08071449398994446, 0.03096933104097843, -0.0039655850268900394, 0.011592303402721882, -0.025111518800258636, 0.003981000278145075, -0.0066439928486943245, 0.01356546115130186, 0.007356950547546148, -0.009118148125708103, -0.00958060659468174, -0.011792701669037342, 0.009457284584641457, 0.04455020651221275, 0.0116000110283494, -0.007630571722984314, 0.03264959901571274, -0.009711637161672115, 0.003537810640409589, -0.013195494189858437, -0.019330782815814018, 0.005838543642312288, 0.01375044509768486, -0.012840942479670048, 0.003718940308317542, -0.026144342496991158, -0.007449442055076361, -0.011060475371778011, 0.009418746456503868, 0.008832965046167374, 0.01965450309216976, 0.018452109768986702, 0.02609809674322605, 0.014790977351367474, -0.011969977989792824, 0.03320454806089401, -0.014613701030611992, -0.021242279559373856, -0.013126125559210777, -0.01483722310513258, -0.0026495042257010937, -0.023585403338074684, -0.009665391407907009, 0.0005111134378239512, 0.009148978628218174, -0.004771034233272076, -0.004674688912928104, 0.05037719011306763, -0.0165560282766819, -0.019346198067069054, -0.03428361937403679, -0.0004759472794830799, -0.0022352179512381554, 0.014343934133648872, -0.007110305596143007, -0.006936883553862572, 0.000427774473791942, -0.02993650734424591, -0.004481997340917587, -0.0016388387884944677, -0.007854093797504902, 0.03354368731379509, -0.0026668463833630085, -0.03178634122014046, -0.0076498412527143955, -0.008509243838489056, -0.023785803467035294, -0.01423602644354105, -8.7493855971843e-05, 0.023847464472055435, -0.01525343582034111, -0.011137551628053188, -0.0012698350474238396, 0.007395488675683737, 0.00024953510728664696, -0.008432167582213879, 0.03261876851320267, -0.01865250989794731, 0.012424728833138943, -0.06018131971359253, 0.004771034233272076, -0.007484126836061478, 0.008825257420539856, -0.0068636611104011536, 0.003019471187144518, -0.014467256143689156, -0.0017130249179899693, 0.01675642840564251, -0.008586320094764233, -0.029797768220305443, -0.010466986335814, 0.011892901733517647, 0.025712715461850166, 0.003784455358982086, -0.02296879142522812, 0.01865250989794731, -0.01865250989794731, 0.022722147405147552, 0.003123524598777294, -0.012694496661424637, -0.015846924856305122, 0.01213183905929327, 0.014821807853877544, -0.02603643573820591, 0.007803994230926037, -0.007210505194962025, -0.03826076537370682, -0.014914299361407757, -0.035116046667099, -0.026945939287543297, 0.005892497021704912, 0.0181900504976511, 0.0037998706102371216, -0.02139643207192421, 0.004458874464035034, -0.017804667353630066, -0.01635563001036644, -0.014814100228250027, 0.016710182651877403, -0.0017380747012794018, -0.015361343510448933, 0.008193230256438255, -0.00028253349591977894, 0.005090901628136635, -0.015484665520489216, 0.01565423421561718, 0.022275103256106377, 0.005591899156570435, -0.020933972671628, -0.005225785542279482, 0.03187883272767067, 0.005491699557751417, -0.014274564571678638, 0.004620735067874193, 0.01919204369187355, -0.009588314220309258, 0.020116962492465973, 0.017434701323509216, -0.02082606591284275, -0.023107530549168587, -0.015361343510448933, -0.005703659728169441, -0.0013141540111973882, 0.0011282070772722363, -0.018452109768986702, -0.0029635909013450146, -0.02713092230260372, 0.019346198067069054, 0.009403331205248833, -0.004470435902476311, -0.0065399399027228355, -0.004844257142394781, -0.008732765913009644, -0.021935967728495598, 0.01148439571261406, -0.014128119684755802, -0.01343443151563406, -0.024387000128626823, 0.006254756823182106, -0.014636823907494545, 0.017064733430743217, -0.0027362152468413115, 0.005537945311516523, -0.020070716738700867, -0.006393494550138712, -0.016016492620110512, -0.00405422318726778, -0.037767477333545685, -0.039771467447280884, 0.010520939715206623, -0.006636285223066807, -0.008285721763968468, -0.007302996702492237, -0.0074802725575864315, -0.011754163540899754, -0.005842397455126047, 0.03181717172265053, -0.025250256061553955, 0.00782711710780859, -0.005403061397373676, -0.020409852266311646, -0.02369331195950508, -0.004520535934716463, 0.01572360284626484, 0.0471399761736393, 0.0014779416378587484, -0.013133833184838295, -0.022953376173973083, 0.003984854090958834, 0.021982213482260704, -0.004069638438522816, -0.02804042585194111, -0.02403244748711586, 0.01641729101538658, 0.003447245806455612, -0.0011638549622148275, -0.01658685877919197, -0.00640120217576623, -0.004300867673009634, -0.010574894025921822, -0.006277879700064659, 0.032187141478061676, 0.019099552184343338, -0.026575971394777298, 0.023955371230840683, -0.022444672882556915, -0.006536085624247789, 0.01213183905929327, -0.0007187382434494793, -0.008385921828448772, 0.0074301729910075665, -0.013295693323016167, -0.010605724528431892, 0.007391634862869978, 0.014097289182245731, 0.002206314355134964, 0.0024876436218619347, -0.01698765717446804, 0.009834959171712399, 0.009457284584641457, -0.007017814088612795, -0.0031004014890640974, -0.021843476220965385, 0.017542608082294464, -0.023277098312973976, -0.005965719930827618, 0.011260874569416046, -0.009341670200228691, 0.021211449056863785, -0.007183528505265713, 0.0059194741770625114, 0.024726135656237602, 0.023739557713270187, 0.0040233926847577095, 0.016879750415682793, -0.005954158492386341, -0.014683070592582226, -0.006767315324395895, 0.01959284208714962, -0.002163922181352973, 0.02039443701505661, 0.04081970453262329, -0.02082606591284275, 0.00836279895156622, -0.02420201525092125, -0.00030132089159451425, -0.007915754802525043, 0.027685873210430145, -0.00405422318726778, -0.00982725154608488, -0.00706791365519166, 0.016633104532957077, -0.015546326525509357, -0.006054357625544071, -0.015584864653646946, 0.009657683782279491, -0.008331967517733574, 0.02543523907661438, -0.015423004515469074, -0.021088125184178352, 0.0018112973775714636, -0.006543793715536594, 0.027577966451644897, -0.006112165283411741, -0.011792701669037342, 0.011014229618012905, 0.0053221313282847404, 0.00481342663988471, 0.008725058287382126, -0.03271126002073288, -0.0409121960401535, 0.010204926133155823, 0.00916439387947321, -0.0017428919672966003, 0.02045609802007675, -0.007900339551270008, -0.009187516756355762, 0.006597747094929218, 0.024710720404982567, -0.002612892771139741, 0.016478952020406723, 0.05099380016326904, -0.014929714612662792, 0.003333557862788439, 0.012532636523246765, -0.0003444355388637632, 0.004462728276848793, 0.01672559790313244, 0.0232000220566988, 0.0013652172638103366, 0.001915350672788918, 0.008039077743887901, 0.019176628440618515, -0.02266048640012741, 0.028857436031103134, 0.024479491636157036, -0.013588584028184414, 0.0178200826048851, -0.009218347258865833, -0.030984746292233467, -0.00516412453725934, -0.021041879430413246, -0.003029105719178915, 0.005087047815322876, 0.00010489628039067611, -0.007029375527054071, 0.04004894196987152, -0.0323721244931221, -0.012170377187430859, -0.013973966240882874, 0.010490109212696552, -0.0008757815230637789, -0.018606264144182205, -0.014636823907494545, 0.0014422937529161572, 0.022614240646362305, -0.012995094992220402, 0.020039886236190796, 0.010798415169119835, -0.006270172074437141, 0.014367057010531425, 0.00023231333761941642, -0.037798307836055756, -0.020101547241210938, -0.01112984400242567, 0.013781275600194931, -0.01745011657476425, 0.013973966240882874, -0.018837492913007736, -0.011438149958848953, 0.013241739943623543, -0.0048866490833461285, 0.0017611976945772767, -0.0035493720788508654, -0.006478278432041407, 0.01271761953830719, -0.010967983864247799, 0.029196571558713913, -0.04362529143691063, 0.0030926938634365797, -0.036935050040483475, -0.0011580741265788674, 0.004162129946053028, 0.01876041665673256, 0.01735762506723404, 0.024649059399962425, 0.009341670200228691, -0.0017178421840071678, -0.0032121625263243914, -0.00931083969771862, -0.0336361788213253, 0.007503395900130272, 0.00751110352575779, -0.030984746292233467, -0.01899164542555809, -0.012039346620440483, 0.012347652576863766, 0.008663397282361984, -0.006848245393484831, 0.022305933758616447, -0.008447582833468914, -0.006324125453829765, 0.011892901733517647, -0.008794426918029785, -0.01795882172882557, 0.0053914999589324, 0.013742737472057343, -0.010312833823263645, -0.01230140682309866, -0.003936681430786848, 0.010705923661589622, 0.013596291653811932, -0.015484665520489216, 0.010960276238620281, 0.037428341805934906, -0.011476688086986542, -0.0029115641955286264, -0.018745001405477524, 0.0165560282766819, 0.004686250351369381, -0.012255161069333553, -0.02182806096971035, 0.017835497856140137, 0.0023431251756846905, -0.0054839919321238995, -0.029628200456500053, 0.011962270364165306, 0.007985123433172703, 0.005668975412845612, 0.0028479760512709618, 0.007561203092336655, -0.008547781966626644, 0.00902565661817789, -0.013272570446133614, 0.007345389109104872, 0.004019538871943951, -0.002799803391098976, 0.01581609435379505, -0.036534253507852554, 0.028456637635827065, 0.006127580534666777, 0.000535199826117605, 0.002876879880204797, 0.01039761770516634, 9.556279837852344e-05, 0.010767584666609764, 0.005383792333304882, -0.025558562949299812, -0.023770388215780258, 0.007256750948727131, -0.008285721763968468, -0.028287069872021675, -0.026375573128461838, 0.005861666519194841, 0.02893451228737831, -0.02483404241502285, 0.0009278081706725061, 0.00941103883087635, 0.006748046260327101, -0.015669649466872215, 0.01741928607225418, -0.02523484081029892, -0.009326254948973656, 0.004104322753846645, -0.0009730905876494944, 0.0019529254641383886, -0.015261143445968628, 0.004165983758866787, -0.017141809687018394, 0.012339944951236248, 0.004266183357685804, 0.022120950743556023, -0.01999364048242569, -0.00891004130244255, 0.013303400948643684, -0.017912574112415314, -0.016602274030447006, -0.006162264849990606, 0.03792162984609604, -0.005036948248744011, 0.0013257155660539865, -0.012532636523246765, -0.03668840602040291, 0.002982859965413809, -0.015584864653646946, -0.013442139141261578, -0.007738478947430849, 0.010867783799767494, 0.003381730755791068, -0.021211449056863785, -0.002285317750647664, 0.0017486726865172386, 0.004925187211483717, 0.004189107101410627, -0.0007953329477459192, -0.0005371267325244844, 0.012640543282032013, -0.020579421892762184, -0.0064050559885799885, -0.009102732874453068, -0.0035647873301059008, -0.017373040318489075, -0.0016340214060619473, -0.004481997340917587, 0.006474424619227648, 0.026976769790053368, 0.007445588242262602, 0.009172101505100727, -0.006651700474321842, -0.014790977351367474, -0.012709911912679672, 0.00544930761680007, -0.019284537062048912, 0.014513501897454262, 0.015708187595009804, 0.0029443216044455767, -0.009241470135748386, 7.033229485386983e-05, 2.8888627639389597e-05, -0.008863795548677444, 0.0008304991060867906, 0.010960276238620281, -0.009557483717799187, -0.004794157110154629, -0.025311917066574097, 0.0647442489862442, 0.018775831907987595, 0.028764944523572922, 0.012424728833138943, -0.0014316956512629986, -0.026128927245736122, -0.02460281364619732, 0.006142995785921812, 0.027485474944114685, -0.011006521992385387, -0.009210639633238316, -0.006339540705084801, 0.008031369186937809, 0.01589317061007023, -0.01153064239770174, -0.01822088100016117, -0.011522934772074223, -0.006146849598735571, 0.00041862166835926473, 0.01695682667195797, 0.010890907607972622, -0.005352961830794811, 0.005638144910335541, 0.0020560151897370815, -0.0037940898910164833, 0.019546596333384514, 0.012077884748578072, -0.0030792055185884237, 0.028919097036123276, 0.03755166381597519, -0.00463229650631547, -0.018544601276516914, -0.013203201815485954, -0.012070177122950554, 0.0003526249201968312, 0.013796690851449966, 0.02403244748711586, 0.014313102699816227, -0.02477238141000271, 0.005842397455126047, -0.0016349849756807089, -0.007345389109104872, -0.000571329437661916, 0.012609712779521942, -0.005360669456422329, -0.01761968433856964, 0.019669918343424797, -0.0064320326782763, -0.013388184830546379, -0.0034896377474069595, -0.02079523541033268, -0.01089861523360014, -0.004227645229548216, 0.02005530148744583, 0.017403870820999146, -0.006674823351204395, -0.005268177483230829, -0.004686250351369381, 0.011176089756190777, 0.011376488953828812, -0.022984206676483154, -0.014051043428480625, -0.0110990134999156, -0.03930900618433952, -0.02276839315891266, -0.01885290816426277, -0.019238291308283806, -1.6273374058073387e-05, -0.0037305017467588186, -0.0257281307131052, -0.014629116281867027, -0.006254756823182106, 0.0026437235064804554, -0.023754972964525223, 0.005472430493682623, 0.027917101979255676, 0.006189241539686918, 0.021781815215945244, 0.01678725890815258, 0.0019066794775426388, 0.005141001660376787, 0.01598566211760044, -0.0034453189000487328, -0.012494098395109177, -0.004266183357685804, -0.004963725805282593, 0.005383792333304882, -0.019978225231170654, 0.013087587431073189, -0.019916564226150513, -0.008123861625790596, -0.011199213564395905, 0.0036707676481455564, -0.0028845875058323145, 0.011808116920292377, -0.007187382318079472, 0.012170377187430859, -0.014482671394944191, 0.006759607698768377, -0.013511507771909237, 0.0119160246104002, 0.01493742223829031, -0.009434161707758904, 0.011553765274584293, -0.0009017948759719729, 0.007461003493517637, 0.030398964881896973, -0.026113511994481087, -0.01792798936367035, 0.018282542005181313, -0.0005342363729141653, -0.009387915953993797, 0.006578478030860424, 0.006867514923214912, -0.013380477204918861, 0.011176089756190777, 0.006447447929531336, -0.006963860243558884, -0.012077884748578072, 0.0030869131442159414, -0.008039077743887901, -0.026622217148542404, -0.014444133266806602, -0.0007722100126557052, -0.006925322115421295, 0.004135153256356716, -0.02386287972331047, -0.005665121600031853, 0.009927451610565186, -0.02927364781498909, 0.014821807853877544, 0.009888912551105022, 0.006848245393484831, -0.002447178354486823, -0.003630302380770445, 0.0030637902673333883, 0.002321928972378373, -0.006173826288431883, 0.021088125184178352, -0.03084600903093815, 0.016648519784212112, 0.005364523269236088, 0.011962270364165306, 0.0038962161634117365, 0.006054357625544071, -0.0018074435647577047, -0.006736484821885824, -0.022953376173973083, -0.004350967705249786, 0.009503530338406563, 0.04162130132317543, -0.0396481417119503, 0.016108985990285873, -0.0053722308948636055, -0.006189241539686918, -0.005472430493682623, -0.017172640189528465, 0.03610262647271156, -0.01300280261784792, -0.0007558312499895692, 0.015970246866345406, -0.019608257338404655, -0.015746725723147392, -0.015661941841244698, -0.02566646970808506, 0.011607718653976917, 0.0024221285711973906, 0.028657035902142525, 0.004412628710269928, 0.0016417291481047869, -0.010220341384410858, -0.003506980137899518, 0.015091575682163239, -0.022783808410167694, -0.005044655874371529, -0.0018218953628093004, -0.014991376549005508, 0.009172101505100727, -0.01303363312035799, 0.021072709932923317, 0.006177680101245642, 0.016879750415682793, 0.006220072042196989, 0.0015434565721079707, 0.0005217114230617881, -0.027315905317664146, 0.019716164097189903, -0.008840672671794891, -0.018868323415517807, -0.010343664325773716, -0.013095295056700706, 0.018698755651712418, 0.013095295056700706, -0.017311377450823784, -0.01778925210237503, -0.023816633969545364, 0.007588179782032967, 0.03243378549814224, 0.004767180420458317, 0.0003213126037735492, -0.005094755440950394, -0.004370236769318581, 0.001740965060889721, 0.022383011877536774, 0.0038518973160535097, -0.012247453443706036, -0.006879076361656189, -0.013742737472057343, -0.004227645229548216, -0.011738748289644718, -0.03274209052324295, -0.025481484830379486, 0.007256750948727131, 0.008825257420539856, -0.009125855751335621, 0.02460281364619732, 0.018313372507691383, 0.012702204287052155, 0.01568506471812725, 0.0011243532644584775, -0.0015261144144460559, -0.004805719014257193, 0.014027920551598072, 0.013989381492137909, -0.029797768220305443, -4.299422653275542e-05, 0.007144989911466837, 0.019330782815814018, 0.02269131690263748, -0.001380632515065372, 0.02603643573820591, 0.005337546579539776, -0.022120950743556023, -0.0016292041400447488, -0.013041340745985508, 0.029720691964030266, 0.011576888151466846, 0.011230044066905975, 0.020379021763801575, 0.00027434411458671093, 0.001611861982382834, 0.010243465192615986, -0.0064821322448551655, -0.0023431251756846905, -0.014690778218209743, -0.008856087923049927, -0.007665256503969431, 0.005426184274256229, 0.0019249852048233151, -2.521545138733927e-05, -0.010120142251253128, 0.0053722308948636055, -0.018698755651712418, 0.007696087006479502, 0.027115507051348686, 0.0064821322448551655, -0.014891176484525204, 0.004038807936012745, 0.008355091325938702, -0.01498366892337799, 0.013627122156322002, -0.0024009323678910732, -0.01641729101538658, 0.002289171563461423, 0.01876041665673256, 0.02723882906138897, -0.028687868267297745, 0.011438149958848953, 0.00782711710780859, -0.0029443216044455767, 2.816603591782041e-05, -0.0037594055756926537, -0.0033354847691953182, 0.014605993404984474, 0.009781005792319775, 0.00551482243463397, 0.0066170161589980125, -0.011476688086986542, -0.010251172818243504, 0.010004527866840363, 0.004227645229548216, 0.001350765349343419, 0.017342209815979004, -0.03397531434893608, -0.005248908419162035, -0.014498086646199226, 0.009333962574601173, 0.017696760594844818, -0.011037352494895458, 0.013049048371613026, -0.007507249712944031, -0.01118379831314087, 0.000282292632618919, 0.016448121517896652, -0.009426454082131386, 0.010690508410334587, 0.016741013154387474, -0.020286530256271362, 0.013087587431073189, 0.010413032956421375, -0.006636285223066807, -0.0024433245416730642, 0.0031389398500323296, -0.004678542725741863, 0.00574219785630703, -0.007364658173173666, 0.01675642840564251, 0.031354714184999466, -0.01363482978194952, 0.029396971687674522, -0.009249177761375904, -0.015399881638586521, -0.003907777834683657, -0.002192826010286808, -0.01092944573611021, -0.0071295746602118015, 0.022182611748576164, 0.031755510717630386, -0.016047323122620583, 0.015561741776764393, -0.012339944951236248, 0.0026707001961767673, 0.012455560266971588, 0.001915350672788918, 0.012208915315568447, -0.014367057010531425, 0.008617150597274303, -0.0025916968006640673, -0.006015819497406483, -0.02460281364619732, 0.010459278710186481, 0.0068058534525334835, -0.00258206226862967, -0.017373040318489075, 0.005129440221935511, 0.007141136098653078, -0.010043065994977951, 0.0078117018565535545, -0.0073762196116149426, -0.0036283754743635654, -0.0068636611104011536, -0.007692233193665743, -0.010189510881900787, -0.005699805915355682, -0.006135288160294294, 0.03147803619503975, 0.0073184119537472725, 0.0015781410038471222, 0.010921738110482693, 0.00045234261779114604, -0.008046785369515419, 0.01324944756925106, 0.01859084889292717, -0.0024259823840111494, -0.005749905947595835, -0.0029674447141587734, 0.020718159154057503, 0.022213442251086235, -0.0037767477333545685, 0.008100738748908043, 0.02316919155418873, -0.0016099350759759545, -0.005715221166610718, -0.010413032956421375, 0.010459278710186481, 0.01061343215405941, 0.007977415807545185, 0.007125720847398043, -0.03093850053846836, 0.015261143445968628, -0.013303400948643684, -0.007923462428152561, -0.032526277005672455, -0.020486930385231972, 0.0006315454374998808, 0.016432706266641617, 0.0004282562294974923, 0.0009682733216322958, -0.016540613025426865, -0.0021716300398111343, 0.026575971394777298, -0.002096480457112193, -0.004165983758866787, -0.01701848767697811, 0.0058000055141747, 0.003921266179531813, 0.0159240011125803, 0.00902565661817789, -0.001334386644884944, -0.0076498412527143955, -0.018251711502671242, 0.0024298361968249083, 0.01350380014628172, 0.004258475732058287, 0.002834487706422806, 0.025620223954319954, -0.022475503385066986, 0.023523742333054543, 0.023415835574269295, -0.003219870151951909, -0.016833504661917686, -0.0023200020659714937, 0.02239842712879181, 0.011546057648956776, 0.007969708181917667, -0.013442139141261578, 0.019716164097189903, 0.01681808941066265, 0.017712175846099854, -0.015191774815320969, -0.010089311748743057, -0.0029308332595974207, -0.022521749138832092, -0.03064561076462269, 0.030260227620601654, 0.008694227784872055, -0.014513501897454262, 0.00799283105880022, -0.007141136098653078, -0.0006787547608837485, 0.019315367564558983, 0.0012505659833550453, 0.016108985990285873, 0.011769578792154789, 0.01198539324104786, -0.0021562145557254553, 0.035701826214790344, -0.010551770217716694, 0.001278506126254797, 0.008671104907989502, 0.0010935226455330849, 0.003755551762878895, 0.0033316309563815594, 0.014428718015551567, -0.007091036532074213, -0.004898210521787405, 0.015669649466872215, 0.00741861155256629, -0.007445588242262602, 0.008601735346019268, -0.016910580918192863, -0.011638549156486988, -0.0068636611104011536, 0.008370506577193737, 0.01695682667195797, -0.0006691202288493514, -0.0012496025301516056, 0.011492103338241577, -0.011515227146446705, -0.010189510881900787, -0.020409852266311646, 0.005931035615503788, -0.014528917148709297, -0.002738142153248191, -0.015739018097519875, -0.0034588072448968887, -0.004104322753846645, -0.0029712985269725323, 0.03200215473771095, -0.03033730387687683, 0.010775292292237282, -0.002196679823100567, -0.0006368444301187992, -0.0028055841103196144, -0.0006450338405556977, 0.00830884464085102, 0.0038769470993429422, 0.013365061953663826, -0.010875492356717587, 0.007356950547546148, -0.009958282113075256, 0.016648519784212112, 0.03604096546769142, -0.015291974879801273, 0.0059580123052001, 0.02841039188206196, -0.007006252184510231, 0.018667925149202347, 0.0024298361968249083, -0.006008111871778965, -0.005611168220639229, 0.005769175011664629, -0.016093570739030838, 0.01442101038992405, 0.03804495185613632, 0.010135557502508163, -0.000535199826117605, 0.0331120565533638, 0.004219937603920698, 0.010729046538472176, -0.0010511305881664157, 0.010490109212696552, 0.01556944940239191, 0.00019799021538347006, -0.0006339540705084801, 0.01180040929466486, 0.012709911912679672, 0.025450654327869415, 0.008848380297422409, -0.009811836294829845, 0.00899482611566782, 0.02242925763130188, -0.008755888789892197, -0.02540440857410431, 0.016047323122620583, 0.008663397282361984, -0.017280546948313713, 0.01321861706674099, 0.02726965956389904, -0.0034202688839286566, 0.005630437284708023, -0.010644262656569481, -0.01879124715924263, 0.01672559790313244, 0.013557753525674343, 0.02249091863632202, 0.0037574786692857742, 0.013881474733352661, 0.02987484447658062, -0.00634339451789856, -0.016509782522916794, -0.015746725723147392, -0.00574219785630703, 0.005433891899883747, 0.01789715886116028, 0.005009971559047699, 0.01913038268685341, 0.0009080573217943311, -0.0069176144897937775, -0.013588584028184414, -0.001866214326582849, -0.00877901166677475, -0.010066188871860504, -0.016340214759111404, 0.0009022766025736928, 0.004131299443542957, 0.007954292930662632, 0.006135288160294294, 0.016710182651877403, -0.018513770774006844, 0.011337950825691223, 0.016062738373875618, -0.008802134543657303, -0.0074301729910075665, 0.0016966460971161723, -0.01925370655953884, 0.023015039041638374, 0.001945217722095549, 0.003524322295561433, 0.006335686892271042, -0.015600280836224556, -0.006166118662804365, 0.025049857795238495, -0.00544930761680007, 0.010266588069498539, -0.01956201158463955, 0.003921266179531813, -0.0025377431884407997, -0.007464857306331396, 0.007545787841081619, 0.005379938520491123, -0.012971972115337849, -0.020702743902802467, 0.010937153361737728, -0.012463267892599106, -0.00027434411458671093, 0.0037671132013201714, 0.002651431132107973, -0.0004947346751578152, 0.01473702397197485, 0.0046130274422466755, -0.0008131568902172148, -0.010829245671629906, -0.010359079577028751, 0.005657413974404335, 0.0031254515051841736, -0.02506527304649353, -0.005738344043493271, 0.013889182358980179, -0.017804667353630066, -0.001017409609630704, -0.02343125082552433, -0.03047604113817215, -0.011862071231007576, -0.0014008651487529278, 0.008100738748908043, 0.008524659089744091, 0.022013043984770775, 0.023955371230840683, -0.016972241923213005, 0.03702754154801369, -0.01170021016150713, -0.006871368736028671, -0.00799283105880022, 0.023508327081799507, 0.0037497710436582565, 0.0012197353644296527, 0.005202662665396929, -0.022645071148872375, -0.008771304041147232, 0.0020733573473989964, 0.007888778112828732, 0.012047054246068, 0.001165781868621707, 0.0018517625285312533, 0.006096750032156706, -0.018513770774006844, -0.014120412059128284, -0.009965989738702774, -0.012609712779521942, 0.013935428112745285, 0.004898210521787405, 0.028857436031103134, -0.016371045261621475, 0.006277879700064659, -0.016509782522916794, -0.008000538684427738, -0.005272031296044588, 0.010605724528431892, -0.0015559815801680088, -0.008285721763968468, 0.004239206667989492, 0.009965989738702774, 0.0022082412615418434, -0.014652240090072155, -0.0038287744391709566, 0.008694227784872055, 0.010104726999998093, 0.023076700046658516, -0.009048779495060444, -0.004327844362705946, -0.006516816560178995, -0.013557753525674343, -0.009788713417947292, 0.0013950843131169677, 0.0074301729910075665, -0.012964264489710331, -0.023616233840584755, -0.02279922366142273, -0.006578478030860424, 0.012486390769481659, -0.007144989911466837, -0.01201622374355793, 0.02853371389210224, -0.002460666699334979, -0.004270037170499563, 0.010073896497488022, 0.00494831008836627, 0.005117878317832947, -0.012640543282032013, -0.02936614118516445, 0.010729046538472176, -0.007869509048759937, 0.009226054884493351, 0.002441397635266185, 0.016771843656897545, 0.008339675143361092, -0.011615426279604435, 0.027315905317664146, -0.0010588382137939334, -0.014798684976994991, -0.017835497856140137, -0.014744731597602367, 0.003481930121779442, -0.02463364414870739, -0.01134565845131874, 0.010135557502508163, 0.01859084889292717, -0.00834738276898861, 0.007969708181917667, 0.004902064334601164, -0.002350832801312208, -0.025250256061553955, 0.008355091325938702, 0.01632479950785637, 0.008732765913009644, 0.01300280261784792, -0.02663763239979744, 0.005403061397373676, -0.014898884110152721, -0.012232038192451, -0.0008911968325264752, -0.0031119631603360176, -0.031215976923704147, -1.681531830399763e-05, 0.009958282113075256, 0.009033364243805408, 0.0004268110205885023, -0.0003506980137899518, -0.001212027738802135, -0.0028595374897122383, -0.007657548878341913, -0.027023015543818474, -0.022645071148872375, 0.0011734894942492247, -0.005615022033452988, -0.012879480607807636, -0.022722147405147552, -0.016802674159407616, -0.015114698559045792, -0.021411847323179245, 0.012640543282032013, -0.001182160573080182, -0.004065784625709057, 0.004732496105134487, -0.032156310975551605, 0.011754163540899754, 0.009634560905396938, 0.012031638994812965, -0.006077480968087912, 0.022383011877536774, -0.0018739220686256886, 0.002165849320590496, 0.020486930385231972, 0.0005221932078711689, -0.024525737389922142, -0.0005934889195486903, 0.011045060120522976, 0.00122840644326061, -0.01300280261784792, 0.011692502535879612, -0.014582870528101921, -0.0033894383814185858, 0.010197218507528305, -0.0020733573473989964, -0.03588680922985077, -0.009719344787299633, 0.010466986335814, 0.0015550180105492473, 0.009788713417947292, 0.006073627155274153, -0.01635563001036644, 0.0018218953628093004, 0.01018180325627327, 0.00010838880552910268, -0.006682530976831913, 0.016879750415682793, 0.021319355815649033, 0.0006426252075470984, 0.023153776302933693, -0.026159759610891342, -0.03801412135362625, -0.0058847893960773945, -0.004470435902476311, 0.007040936965495348, -0.011176089756190777, -0.011892901733517647, 0.007064059842377901, -0.0035455182660371065, 0.023770388215780258, -0.019500350579619408, -0.008848380297422409, 0.016293969005346298, 0.015407589264214039, 0.0076768179424107075, 0.006632431410253048, 0.003695817431434989, -0.031185144558548927, 0.013889182358980179, 0.0007269275956787169, 0.018112974241375923, 0.0119160246104002, -0.011939147487282753, -0.0030503019224852324, -0.012609712779521942, 0.007037083152681589, 0.008632565848529339, -0.008069908246397972, -0.010066188871860504, 0.02921198680996895, 0.00605821143835783, 0.0001954611507244408, -0.02039443701505661, -0.015068452805280685, -0.0068906378000974655, -0.008863795548677444, -0.009125855751335621, 0.01290260348469019, 0.0012370775220915675, 0.01761968433856964, -0.003404853632673621, 0.0026495042257010937, -0.021812645718455315, -0.009326254948973656, -0.010906322859227657, -0.0007317448616959155, 0.023724142462015152, 0.013773567974567413, -0.01149981189519167, 0.01311841793358326, 0.007472564931958914, -0.000736562127713114, -0.004898210521787405, 0.0009490041993558407, 0.0178200826048851, 0.0014220611192286015, 0.01042844820767641, -0.007908047176897526, -0.007884924300014973, -0.0007505322573706508, 0.015739018097519875, -0.0037343555595725775, -0.013526923023164272, -0.018637094646692276, -0.01381981372833252, 0.01678725890815258, -0.009750175289809704, 0.006620869971811771, -0.018082143738865852, -0.00479030329734087, 0.004701665602624416, -0.003167843446135521, -0.00789263192564249, 0.013781275600194931, 0.003722794121131301, -0.01652519777417183, -3.2938154618022963e-05, -0.01839044876396656, 0.01180040929466486, 0.006069773342460394, -0.013781275600194931, 0.011715625412762165, 0.026745539158582687, -0.02964361570775509, -0.025990189984440804, -0.010104726999998093, -0.0012062470195814967, -0.013049048371613026, 0.00041428609983995557, -0.0044241901487112045, -0.009888912551105022, 0.014975961297750473, -0.006478278432041407, 0.008732765913009644, 0.00938020832836628, -0.010197218507528305, 0.004605319816619158, 0.012255161069333553, 0.03227963298559189, -0.002589769894257188, -0.001129170530475676, -0.020070716738700867, -0.008162399753928185, -0.002965517807751894, 0.003015617374330759, 0.0055610681883990765, -0.011037352494895458, -0.009226054884493351, -0.01792798936367035, -0.018174635246396065, 0.022290518507361412, 0.005715221166610718, 0.014582870528101921, 0.010282003320753574, 0.009403331205248833, 0.010667385533452034, -0.008717350661754608, -0.01375044509768486, 0.014405595138669014, -0.023816633969545364, 0.025743545964360237, 0.011068182997405529, -0.001354619162157178, -0.010312833823263645, 0.025651054456830025, -0.007657548878341913, -0.014336226508021355, -0.009935159236192703, -0.0015415296657010913, -0.02179723046720028, -0.025219425559043884, -0.009850374422967434, 0.006825122516602278, 0.001978938700631261, 0.002385517116636038, 0.01303363312035799, 0.009834959171712399, -0.008717350661754608, -0.008547781966626644, -0.006748046260327101, -0.026730123907327652, 0.0005091865314170718, -0.0013883401406928897, 0.020933972671628, -0.024756966158747673, 0.017974236980080605, 0.043378643691539764, -0.008886918425559998, 0.016710182651877403, 0.014467256143689156, 0.022336764261126518, 4.95577696710825e-05, 0.009989112615585327, 0.005191101226955652, -0.0012399678817018867, 0.0015954832779243588, 0.016247723251581192, 0.007746186573058367, -0.022537164390087128, 0.019916564226150513, -4.57942696812097e-05, -0.006879076361656189, 0.005981135182082653, -0.007152697537094355, -0.008856087923049927, 0.00428159860894084, -0.03027564287185669, -0.016663935035467148, 0.0038692394737154245, 0.006085188593715429, -0.015939416363835335, -0.017280546948313713, 0.006520670372992754, 0.026791786774992943, -0.001373888342641294, 0.009611438028514385, 0.025620223954319954, -0.003580202581360936, -0.0023489058949053288, -0.01375044509768486, -0.011707917787134647, 0.007530372589826584, 0.0033046542666852474, 0.02002447098493576, 0.015137821435928345, 0.006524524185806513, -0.009996820241212845, -0.0024953512474894524, -0.0035146877635270357, -0.017696760594844818, 0.013742737472057343, -0.006828976329416037, 0.01982407085597515, 0.0011609644861891866, -0.0228300541639328, -0.004258475732058287, 0.0004241615242790431, 0.0020386730320751667, -0.011291705071926117, 0.0021157495211809874, 0.018005067482590675, 0.003709305776283145, 0.008416752330958843, -0.027608796954154968, -0.019438689574599266, 0.012386190705001354, 0.003081132424995303, -0.028518298640847206, -0.007773163262754679, -0.010667385533452034, 0.002878806786611676, 0.004674688912928104, -0.012779281474649906, -0.027084676548838615, -0.003223723964765668, 0.0016330579528585076, 0.0024028595071285963, -0.003088840050622821, -0.017835497856140137, -0.004824988078325987, -0.008324259892106056, -0.020671913400292397, 0.016741013154387474, -0.006929175928235054, 0.012679081410169601, -0.026560556143522263, -0.0025146203115582466, -0.010590309277176857, -0.009010241366922855, 0.0053722308948636055, 0.01761968433856964, 0.006262464448809624, 0.018698755651712418, 0.007823263294994831, 0.021041879430413246, 0.0017178421840071678, -0.02102646417915821, 0.006721069570630789, -0.026313912123441696, 0.012563467025756836, -0.008532366715371609, 0.003898143069818616, 0.012810111977159977, -0.009611438028514385, 0.006882930174469948, 0.02406327798962593, 0.0003612960281316191, -0.0028556836768984795, 0.006204656790941954, -0.00773462513461709, -0.012478683143854141, -0.034098636358976364, -0.008239476010203362, 0.009572898969054222, -0.01220120768994093, -0.014821807853877544, 0.004940602462738752, 0.005657413974404335, -0.010374494828283787, -0.01678725890815258, -0.001644619507715106, 0.014683070592582226, -0.002849902957677841, -0.002645650412887335, 0.017110979184508324, -0.0039655850268900394, -0.0015627257525920868, 0.003127378411591053, -0.024047862738370895, 0.008516951464116573, 0.02443324588239193, -0.0060813347809016705, -0.01208559237420559, -0.013927720487117767, -0.018667925149202347, 0.006031234748661518, 0.02443324588239193, 0.015130113810300827, 0.008023661561310291, 0.019901148974895477, 0.001998207764700055, 0.011060475371778011, 0.01011243462562561, -0.012347652576863766, 0.007160405162721872, 0.0036553521640598774, -0.0015540545573458076, -0.010343664325773716, -0.027084676548838615, -0.008987118490040302, -0.013110710307955742, 0.0010116288904100657, -0.004096615128219128, -0.012995094992220402, -0.03323537856340408, -0.003034886671230197, -0.007171967066824436, 0.014659947715699673, 0.0024452514480799437, 0.01802048273384571, 0.010343664325773716, -0.006921468302607536, 0.014590578153729439, -0.001033788314089179, -0.010135557502508163, -0.019284537062048912, 0.02663763239979744, -0.006478278432041407, 0.016432706266641617, -0.002350832801312208, -0.028194578364491463, -0.011869778856635094, 0.0014374764868989587, 0.013241739943623543, 0.0023797363974153996, 0.00962685327976942, -0.0074301729910075665, -0.01652519777417183, 0.024094108492136, 0.01879124715924263, -0.0012630908749997616, 0.01413582731038332, 0.0033354847691953182, -0.004940602462738752, -0.001050167134962976, -0.0015058817807585, -0.011808116920292377, -0.0008435057825408876, -0.007449442055076361, 0.0078117018565535545, -0.0031620627269148827, 0.017635099589824677, 0.013688783161342144, 0.004705519415438175, -0.011060475371778011, -0.003630302380770445, 0.006393494550138712, -0.0011079744435846806, -0.010043065994977951, -0.01124545931816101, 0.011114428751170635, -0.0178200826048851, -0.006339540705084801, -0.0065322318114340305, 0.005033094435930252, -0.03502355515956879, 0.018082143738865852, 0.004952163901180029, -0.004956017713993788, -0.013496092520654202, 0.016139816492795944, 0.0012158815516158938, -0.0004942529485560954, 0.020440682768821716, 0.000835798098705709, -0.011507519520819187, 0.03477691113948822, 0.001265017781406641, -0.006112165283411741, 0.01360399927943945, -0.009457284584641457, 0.010906322859227657, 0.0039251199923455715, -0.0175580233335495, 0.018082143738865852, -0.0031389398500323296, 0.008409044705331326, -0.0022082412615418434, -9.417782712262124e-05, -0.019839486107230186, -0.0046477122232317924, -0.009449576959013939, -0.02329251356422901, -0.004944456275552511, -0.002285317750647664, 0.0027169459499418736, 0.0001264536113012582, 0.013210909441113472, 0.008894626051187515, 0.01738845556974411, -0.00043186917901039124, -0.001334386644884944, -0.007642133627086878, -0.010544062592089176, -0.014706193469464779, -0.003927046898752451, 0.01058260165154934, -0.0013526922557502985, 0.004239206667989492, -0.00810844637453556, 0.01021263375878334, 0.003320069517940283, 0.017342209815979004, -0.015669649466872215, 0.01672559790313244, 0.0026861154474318027, -0.006651700474321842, -0.0331120565533638, 0.02389371022582054, -0.01331881619989872, 0.028348730877041817, 0.008547781966626644, 0.021242279559373856, 0.002030965406447649, 0.00242405547760427, 0.02780919522047043, 0.02173556759953499, 0.010135557502508163, -0.0015916293486952782, -0.0017188056372106075, 0.001281396602280438, -0.016170646995306015, 0.021211449056863785, 0.004867380019277334, 0.025157764554023743, 0.006882930174469948, -0.012239745818078518, 0.010767584666609764, 0.03505438566207886, 0.031693849712610245, 0.011307120323181152, -0.004940602462738752, -0.0027111652307212353, 0.008216353133320808, 0.010143265128135681, 0.029396971687674522, -0.008655688725411892, -0.0014191707596182823, 0.0002358058700338006, -0.0047247884795069695, 0.009834959171712399, -0.027608796954154968, -0.017604269087314606, -0.004027246497571468, 0.009395623579621315, 0.020486930385231972, 0.00785794761031866, -0.01180040929466486, 0.017850913107395172, -0.005911766551434994, -0.016016492620110512, -0.006185387726873159, -0.012625128030776978, -0.011677087284624577, -0.004659273661673069, -0.020810650661587715, -0.031693849712610245, 0.00046655358164571226, 0.01283323485404253, 0.00962685327976942, 0.02904241904616356, -0.012147254310548306, -0.03625677898526192, -0.006096750032156706, -0.0024394707288593054, -0.0037690401077270508, -0.01598566211760044, 0.005141001660376787, 0.009973697364330292, -0.00332970404997468, -0.019068721681833267, -0.0025839891750365496, 0.019269121810793877, -0.009935159236192703, -0.009495822712779045, -0.0007712465594522655, 0.0039019971154630184, 0.008378214202821255, 0.002803657203912735, 0.023138361051678658, -0.005653560161590576, 0.009804128669202328, -0.012031638994812965, -0.0045860507525503635, -0.009642268531024456, 0.006578478030860424, -0.009272300638258457, 0.004058077000081539, 0.017110979184508324, -0.013904597610235214, 0.004959871526807547, 0.02122686430811882, 0.009102732874453068, -0.018236296251416206, 0.012825527228415012, 1.687553412921261e-05, 0.004034954123198986, 9.23111365409568e-05, 0.007908047176897526, 0.019577426835894585, 0.0026186734903603792, -0.015238020569086075, -0.012964264489710331, 0.008601735346019268, -0.000733190041501075, 0.004270037170499563, -0.0039386083371937275, 0.009002533741295338, 0.019546596333384514, 0.00849382858723402, -0.013542338274419308, -0.004863526206463575, 0.013858351856470108, -0.0024818629026412964, -0.01962367258965969, 0.008725058287382126, 0.0022930253762751818, -0.022737562656402588, -0.010197218507528305, -0.012363067828118801, 0.01839044876396656, -0.0188220776617527, 0.0020001346711069345, -0.001637875335291028, 0.01385064423084259, 0.01735762506723404, -0.00810844637453556, -0.008763596415519714, -0.014158950187265873, 0.015746725723147392, 0.0038364820647984743, -0.014197488315403461, 0.008285721763968468, 0.008524659089744091, 0.011569180525839329, -0.016710182651877403, 0.02266048640012741, -0.0028094379231333733, 0.017249716445803642, -0.0017159152776002884, -0.012031638994812965, 0.015238020569086075, -0.002215948887169361, -0.01612440124154091, 0.0006426252075470984, -0.014914299361407757, 0.0010838881134986877, -0.0009591205161996186, 0.0021562145557254553, 0.010775292292237282, 0.0038596049416810274, 0.017573438584804535, -0.015446127392351627, -0.013935428112745285, 0.010474693961441517, 0.00031456840224564075, 0.05216536298394203, 0.028025008738040924, 0.0006378078833222389, -0.006089042406529188, 0.01675642840564251, -0.03607179597020149, 0.006424325052648783, 0.029751522466540337, -0.008170107379555702, -0.007850239984691143, -0.001632094499655068, 0.007699940819293261, 0.03084600903093815, 0.02079523541033268, -0.00519880885258317, 0.013927720487117767, -0.012810111977159977, -0.013542338274419308, 0.0064050559885799885, 0.013180078938603401, -0.005950304679572582, 0.00820864550769329, -0.020116962492465973, 0.004258475732058287, 0.016401875764131546, -0.0011638549622148275, -0.03594847396016121, -0.012995094992220402, -0.0112839974462986, 0.010459278710186481, 0.03047604113817215, -0.016833504661917686, -0.039401497691869736, 0.005530237685889006, -0.02506527304649353, 0.031354714184999466, -0.012655958533287048, 0.004158276133239269, 0.008586320094764233, -0.00877901166677475, -0.01936161331832409, -0.01638646051287651, 0.004589904565364122, -0.009488115087151527, -0.016910580918192863, 0.01068280078470707, 0.0024124940391629934, 0.0031215976923704147, -0.004300867673009634, 0.0027130921371281147, -0.0066170161589980125, 0.0008979410631582141, -0.014544332399964333, -0.009873497299849987, -0.001632094499655068, -0.009919743053615093, 0.0181900504976511, -0.007549641653895378, -0.010636555030941963, -0.011576888151466846, -0.005268177483230829, 0.0040503693744540215, 0.0073184119537472725, 0.01872958615422249, -0.005368377082049847, 0.04442688450217247, 0.004139007069170475, -0.004393359646201134, 0.004443459212779999, -0.008470705710351467, 0.002017477061599493, -0.016648519784212112, 0.008054492995142937, -0.0071295746602118015, -0.02329251356422901, -0.015330513007938862, -0.019469520077109337, -0.018637094646692276, -0.013079879805445671, 0.013049048371613026, 0.010228049010038376, -0.00010242742428090423, -0.007094890344887972, -0.0046978117898106575, -0.014906591735780239, -0.006451301742345095, 0.005622729659080505, -0.0021677762269973755, 0.006459009367972612, 0.010019943118095398, -0.013665660284459591, 0.0007375255809165537, -0.010120142251253128, 0.011337950825691223, 0.006536085624247789, -0.0035821294877678156, -0.004894356708973646, 0.01575443334877491, -0.001716878730803728, 0.0038287744391709566, -0.008054492995142937, 0.009942866861820221, 0.009118148125708103, -0.008355091325938702, 0.000508704804815352, -0.03301956504583359, 0.00024423611466772854, -0.00408890750259161, 0.014282272197306156, 0.010644262656569481, -0.015384466387331486, 0.010019943118095398, -0.004686250351369381, 0.017249716445803642, 0.002192826010286808, 0.024525737389922142, 0.008123861625790596, 0.00741861155256629, 0.007765455637127161, 0.005692098289728165, -0.009241470135748386, 0.005518676247447729, 0.014444133266806602, 0.015029914677143097, -0.017912574112415314, -0.0037170134019106627, -0.010174095630645752, 0.0125480517745018, 0.0032776775769889355, 0.0016850846586748958, 0.0034568803384900093, 0.006979275494813919, -0.014644531533122063, 0.017604269087314606, -0.01962367258965969, -0.007195089943706989, 0.009688514284789562, -0.005796151701360941, 0.016972241923213005, -0.0018016628455370665, -0.027747534215450287, 0.03160135820508003, 0.006042796187102795, 0.008447582833468914, 0.015184067189693451, -0.0027766802813857794, -0.006204656790941954, 0.009041071869432926, 0.017665930092334747, -0.0045089744962751865, 0.017141809687018394, 0.0030098366551101208, 0.002385517116636038, 0.029165741056203842, -0.006771169137209654, 0.009858082048594952, -0.023045869544148445, 0.03422195836901665, -0.007518811151385307, -0.011114428751170635, 0.00011627710046013817, 0.021041879430413246, -0.0027747533749789, 0.012070177122950554, 0.011522934772074223, -0.006582331843674183, -0.004720934666693211, 0.012255161069333553, -0.007141136098653078, 0.0033663155045360327, -0.011977685615420341, -0.011260874569416046, -0.006485986057668924, -0.0011436223285272717, 0.0008415788761340082, 0.00574219785630703, -0.008054492995142937, 0.003664986928924918, -0.013056755997240543, -0.017403870820999146, 0.0032449199352413416, 0.019299952313303947, 0.0009297350770793855, -0.0006816451787017286, 0.011237751692533493, 0.009549776092171669, -0.014906591735780239, 0.011407319456338882, 0.013958550989627838, -0.0059425970539450645, -0.015700479969382286, 0.011060475371778011, -0.006366517394781113, -0.017280546948313713, -0.01181582547724247, -0.0031158169731497765, 0.010451571084558964, 0.0006946517969481647, -0.04436522349715233, -0.0006411800277419388, 0.0028653182089328766, 0.013796690851449966, -0.014713901095092297, -0.016633104532957077], "3660adda-30c8-457f-b96d-c7d302555cb0": [-0.02144923433661461, -0.015490309335291386, -0.0067074052058160305, 0.00039028600440360606, -0.04642753675580025, -0.0453861728310585, 0.031240960583090782, 0.037344519048929214, 0.009307202883064747, 0.02646803669631481, 0.01270610373467207, 0.03063349798321724, -0.002138776471838355, -0.01881689392030239, -0.001268260064534843, 0.02324269525706768, -0.022129014134407043, 0.022461671382188797, 0.017153602093458176, -0.010117153637111187, 0.06595313549041748, -0.010746311396360397, -0.04908880591392517, 0.01593867503106594, 0.001553912297822535, -0.020075209438800812, 0.0110789705067873, 0.003850882174447179, -0.044634073972702026, -0.02568701095879078, 0.0029758461751043797, 0.03138559311628342, 0.00488501600921154, -0.02505062147974968, -0.005120046436786652, -0.038790859282016754, 0.005253832787275314, -0.003060818649828434, -0.003429635427892208, 0.0037894127890467644, -0.013009835034608841, 0.04159675911068916, 0.04174139350652695, 0.012496383860707283, -0.023763379082083702, 0.02784205973148346, 0.01040642149746418, -0.0022183251567184925, -0.004443882033228874, -0.009256580844521523, 0.010601677931845188, 0.014123517088592052, -0.021232282742857933, -0.002769742626696825, 0.019800404086709023, -0.04515475779771805, 0.017457332462072372, 0.07879664748907089, 0.025470061227679253, -0.05091119557619095, 0.009704946540296078, 0.0017997903050854802, 0.02234596386551857, -0.008142898790538311, -0.00765837449580431, -0.016372578218579292, -0.005073040258139372, -0.014853919856250286, -0.031038472428917885, 0.007962105795741081, 0.0070509109646081924, 0.036708127707242966, -0.028521839529275894, 0.007011136971414089, -0.009733873419463634, -0.0028384437318891287, 0.0326005220413208, 0.012677176855504513, 0.010710153728723526, 0.002583526074886322, -0.03144344687461853, -0.012409604154527187, 0.034191496670246124, 0.039687588810920715, 0.06653167307376862, 0.022042233496904373, -0.027003182098269463, -0.04634075611829758, -0.047150708734989166, -0.02431298792362213, 0.004895863588899374, 0.027870986610651016, -0.015924211591482162, -0.015374601818621159, -0.0015882629668340087, -0.013060457073152065, 0.024168353527784348, 0.0157651137560606, -0.0024027335457503796, -0.030778130516409874, 0.01170812826603651, 0.04113393276929855, -0.036708127707242966, 0.01865779608488083, 0.011534567922353745, -0.017153602093458176, -5.429427619674243e-05, 0.015215504914522171, -0.053283192217350006, 0.008273068815469742, 0.00846109353005886, -0.025542378425598145, -0.012098640203475952, 0.011657506227493286, -0.04006363824009895, -0.02334393933415413, -0.016792016103863716, -0.02548452466726303, -0.01067399512976408, -0.0360138863325119, 0.030662424862384796, 0.01179490890353918, 0.015808504074811935, 0.0030698582995682955, -0.02244720794260502, 0.01531674899160862, 0.022273648530244827, 0.017529649659991264, 0.00888053234666586, 0.00270284921862185, 0.0015295053599402308, -0.03254266828298569, 0.008330922573804855, 0.004722302779555321, 0.004064217675477266, -0.009748336859047413, -0.010963262990117073, 0.07000289112329483, -0.010015909560024738, 0.033641885966062546, -0.0326005220413208, -0.038328029215335846, -0.0018513161921873689, -0.001381255453452468, 0.025788255035877228, 0.02649696357548237, -0.02766849845647812, 0.04370841756463051, 0.005170668009668589, 0.021478159353137016, -0.04981197416782379, -0.011021116748452187, -0.00610717386007309, 0.003836418967694044, -0.0009618165786378086, -0.02107318490743637, 0.007083453703671694, 0.049233440309762955, 0.01611223630607128, 0.017413942143321037, -0.011599652469158173, -0.07173850387334824, -0.01157072652131319, 0.01441278588026762, 0.017008967697620392, 0.0262076947838068, 0.06398611515760422, 0.02973676659166813, -0.047150708734989166, 0.021420307457447052, 0.02629447542130947, -0.008829910308122635, 0.017153602093458176, 0.00147617154289037, -0.006089094560593367, 0.0005202306783758104, 0.0487995371222496, 0.05209719389677048, 0.029852474108338356, -0.02298235520720482, -0.017963552847504616, 0.015157651156187057, -0.004718686919659376, 0.0029631906654685736, -0.010789701715111732, 0.0313277393579483, 0.021029794588685036, 0.01683540642261505, -0.0021893982775509357, -0.011534567922353745, -0.005152589175850153, -0.011476714164018631, 0.003948510158807039, 0.035637836903333664, -0.02685854770243168, -0.03349725157022476, 0.016893260180950165, 0.011700896546244621, 0.009668787941336632, 0.02667052298784256, -0.023098062723875046, -0.04848134145140648, -0.04321666061878204, 0.033555105328559875, -0.04596471041440964, 0.0515475831925869, -0.012677176855504513, -0.020769452676177025, 0.03442291170358658, -0.005195979028940201, 0.03384437412023544, -0.025267573073506355, -0.0018006942700594664, -0.002744431607425213, -0.013349724933505058, -0.0002012447512242943, -0.003981052897870541, 0.04278276115655899, 0.00574197294190526, -0.04171246662735939, -0.02045125886797905, 0.01221434772014618, -0.00896008126437664, -0.02603413350880146, -0.05201041325926781, -0.029968179762363434, -0.004067833535373211, 0.04457622393965721, -0.036534566432237625, -0.018166039139032364, 0.032484814524650574, -0.0026233005337417126, -0.013848712667822838, -0.0076077524572610855, 0.002549175638705492, 0.01712467521429062, 0.035811398178339005, 0.007629447616636753, 0.003829187247902155, -0.02079837955534458, 0.007752386387437582, 0.03343939781188965, -0.0036574341356754303, 0.0198148675262928, 0.01442001760005951, 0.040931444615125656, -0.033121202141046524, 0.04639860987663269, 0.016878796741366386, -0.015172114595770836, -0.008547874167561531, 0.0041763088665902615, -0.005785363260656595, 0.0006775202346034348, -0.002917992416769266, 0.05015909671783447, 0.03731559216976166, -0.03433613106608391, -0.0019308648770675063, -0.010138848796486855, 0.01026901975274086, -0.0037315592635422945, -0.022649696096777916, -0.016459356993436813, 0.029404107481241226, -0.010594446212053299, 0.016792016103863716, -0.02234596386551857, -0.0010259979171678424, 0.02749493718147278, 0.001327921636402607, -0.0008126627071760595, 0.0126193230971694, -0.005011570639908314, 0.023025745525956154, -0.018325136974453926, -0.016285797581076622, -0.00444026617333293, 0.007296788971871138, -0.0010693882359191775, 0.01131038460880518, 0.024616720154881477, 0.0013676959788426757, 0.012011859565973282, 0.02224472165107727, 0.005416546016931534, -0.023893550038337708, 0.02277986705303192, -0.049407001584768295, 0.0020447643473744392, -0.010883714072406292, -0.018787967041134834, 0.011375470086932182, 0.02746601030230522, 0.008396008051931858, -0.00038328030495904386, 1.3594755728263408e-05, -0.020248770713806152, -0.0014156060060486197, 0.026005206629633904, 0.014289846643805504, -0.020017355680465698, -0.0027480474673211575, -0.011512872762978077, 0.02522418275475502, -0.0169366504997015, 0.007528203539550304, -0.011100665666162968, -0.018513161689043045, 0.04908880591392517, 0.0538906566798687, -0.005691350903362036, -0.018889211118221283, -0.00026960697141475976, -0.005232137627899647, 0.009567543864250183, 0.014268151484429836, 0.022100087255239487, -0.016155626624822617, -0.03584032505750656, 0.01936650276184082, 0.001661483896896243, -0.07729244977235794, 0.043910905718803406, 0.025166328996419907, -0.03306334838271141, 0.03954295814037323, -0.022230258211493492, -0.026251085102558136, -0.04038183391094208, -0.02665605954825878, -0.030402082949876785, -0.029302863404154778, 0.007101533003151417, -0.00520321074873209, -0.04856812208890915, -0.03746022656559944, -0.031935203820466995, -0.009704946540296078, -0.031096326187253, 0.0019543678499758244, -0.014651431702077389, 0.01373300515115261, -0.002399117685854435, 0.029346253722906113, 0.0057745156809687614, 0.006729100365191698, 0.006497685797512531, -0.04477870836853981, 0.018527625128626823, 0.000851985125336796, -0.01302429847419262, 0.019308649003505707, 0.011209140531718731, 0.02494937740266323, -0.0046355221420526505, -0.005673271603882313, -0.012402372434735298, 0.0169366504997015, 0.0003362742136232555, 0.001483403262682259, -0.02746601030230522, -0.034914664924144745, 0.0040352907963097095, -0.025079548358917236, -0.007260630372911692, 0.00011169592471560463, 0.000720910495147109, -0.01392102986574173, 0.005347845144569874, -0.033641885966062546, 0.005564796272665262, 0.013573908247053623, 0.0011353774461895227, -0.032195545732975006, -0.03413364291191101, 0.02369106188416481, 5.087616591481492e-05, -0.009842349216341972, 0.016068845987319946, 0.01695111393928528, 0.0340757891535759, -0.0018657796317711473, -0.0096904831007123, 0.02487706020474434, 0.005611801985651255, 0.015924211591482162, -0.009813422337174416, -0.007506508380174637, -0.004317326936870813, -0.03783627599477768, 0.009958055801689625, -0.038328029215335846, 0.013501591049134731, -0.01972808875143528, 0.023199304938316345, -0.004631906282156706, -0.019757015630602837, 0.0008429454755969346, -0.054555974900722504, 0.02711888961493969, -0.0005798922502435744, -0.00928550772368908, 0.006703789345920086, 0.021405844017863274, -0.04683251306414604, -0.003256074618548155, -0.011961238458752632, 0.022288111969828606, 0.008403239771723747, 0.009654324501752853, 0.007199161220341921, 0.00928550772368908, 0.026019670069217682, 0.03540642186999321, 0.021564939990639687, 0.010977726429700851, 0.04171246662735939, -0.04503905028104782, -0.010073763318359852, 0.02774081565439701, 0.062308359891176224, 0.0043245586566627026, -0.001625325414352119, -0.011845530942082405, 0.019872721284627914, 0.017457332462072372, 0.016705235466361046, -0.023748915642499924, 0.007195545360445976, -0.03207983821630478, 0.027769742533564568, -0.00459574768319726, -0.018599942326545715, 0.009263812564313412, -0.008482788689434528, 0.0024497397243976593, 0.005467168055474758, -0.002077306853607297, -0.017978016287088394, 0.005351461004465818, 0.025701474398374557, -0.008106740191578865, 0.005083887837827206, -0.03511715307831764, -0.03361295908689499, -0.05163436383008957, 0.013566676527261734, 0.033381544053554535, 0.013009835034608841, -0.006920740474015474, 0.006790569983422756, -0.07781313359737396, 0.010297946631908417, -0.0110789705067873, -0.0011480329558253288, -0.0017500723479315639, 0.007235319819301367, 0.0117153599858284, -0.032195545732975006, -0.04278276115655899, 0.005951692350208759, 0.04587792977690697, 0.001477075507864356, -0.008027191273868084, -0.03361295908689499, 0.0053153024055063725, 0.028492912650108337, 0.006222880911082029, -0.00525021692737937, -0.0007417016313411295, 0.023083599284291267, -0.017370551824569702, -0.003037315560504794, -0.015056407079100609, -0.017688747495412827, -0.008005496114492416, 0.004848857410252094, 0.009198727086186409, -0.02722013369202614, -0.01764535717666149, -0.013877639546990395, -0.03291871398687363, 0.002964998595416546, 0.010551055893301964, -0.007083453703671694, -0.029433034360408783, -0.02703210897743702, -0.00614694831892848, -0.006020393222570419, 0.06421753019094467, -0.00020327867241576314, 0.013219554908573627, 0.001477075507864356, -0.009177031926810741, -0.012257738038897514, 0.009444605559110641, -0.04006363824009895, -0.025079548358917236, -0.0262076947838068, 0.012257738038897514, -0.01890367455780506, 0.01619901694357395, 0.02224472165107727, 0.011614115908741951, -0.0029559589456766844, -0.005510558374226093, 0.03925368934869766, 0.0003561614139471203, 0.00021412622299976647, -0.022490598261356354, 0.023980330675840378, -0.009516921825706959, 0.01657506451010704, 0.012228811159729958, 0.0045812842436134815, -0.030488863587379456, 0.01593867503106594, 0.031848423182964325, -0.00021209231636021286, 0.0035833092406392097, -0.0003401160647626966, -0.014492334797978401, 0.001947136246599257, -0.03659242019057274, -0.024385305121541023, -0.004165461286902428, -0.02558576874434948, 0.036794908344745636, -0.027162279933691025, -0.023922476917505264, -0.009162568487226963, -0.012503615580499172, 0.013045993633568287, 0.016473820433020592, -0.032484814524650574, -0.006457911338657141, 0.02144923433661461, 0.025600232183933258, 0.008207983337342739, -0.022562915459275246, 0.03170378878712654, 0.0026052212342619896, 0.006175875198096037, -0.00856233760714531, 0.037170957773923874, -0.03945617750287056, 0.019887184724211693, 0.015302285552024841, 0.019120624288916588, -0.017905699089169502, 0.013002603314816952, -0.012460225261747837, 0.007947642356157303, 0.010008677840232849, -0.051836851984262466, 0.036158520728349686, -0.0280156210064888, -0.021825281903147697, -0.019207404926419258, -0.014289846643805504, 0.016010992228984833, 0.004461961332708597, 0.00805611815303564, -0.02936071716248989, -0.006316893268376589, -0.03072027862071991, 0.033121202141046524, -0.008757593110203743, 0.0250361580401659, 0.04020827263593674, 0.003068050369620323, 0.057795777916908264, 0.00030282759689725935, -0.004132918547838926, 0.02622215822339058, 0.004049754235893488, 0.010435348376631737, -0.028348278254270554, -0.01793462596833706, 0.026684986427426338, -0.03989007696509361, 0.007716227788478136, -0.006320509128272533, 0.019684698432683945, 0.034914664924144745, -0.007803008425980806, -0.026236621662974358, -0.020335551351308823, 0.02251952514052391, -0.02082730643451214, 0.05105582997202873, -0.004823546390980482, 0.006711021065711975, -0.033815447241067886, 0.006541076116263866, 0.006844807416200638, 0.003970205318182707, 0.02152154967188835, -0.000577632337808609, 0.012539774179458618, 0.012604859657585621, 0.0074052647687494755, -0.024905987083911896, -0.01846977137029171, 0.030778130516409874, -0.0014147020410746336, 0.02442869544029236, 0.003632123116403818, 0.02749493718147278, 0.010326872579753399, 0.0012791076442226768, 0.01890367455780506, 0.008424934931099415, 0.03396008163690567, -0.006660399027168751, 0.03659242019057274, 0.02269308641552925, -0.007115996442735195, -0.004404107574373484, 0.01432600524276495, -0.04726641625165939, 0.06653167307376862, -0.027726352214813232, 0.015649406239390373, 0.0015927827917039394, -0.022736476734280586, -0.008258605375885963, -0.0003984216891694814, -0.0031150563154369593, -0.00012237398186698556, 0.001774479285813868, 0.008945617824792862, -0.025383280590176582, 0.03757593408226967, -0.015056407079100609, -0.003227147739380598, 0.014514029957354069, -0.018715649843215942, -0.016430430114269257, -0.027856523171067238, 0.009444605559110641, -0.012330055236816406, 0.028883425518870354, -0.02395140379667282, 0.019887184724211693, -0.023112526163458824, 0.0008429454755969346, 0.029129302129149437, 0.005434625316411257, 0.00032723459298722446, 0.0009089347440749407, 0.007701764348894358, 0.0246022567152977, 0.0063096615485847, -0.02144923433661461, 0.003424211638048291, 0.007448655087500811, -0.008439398370683193, 0.005564796272665262, 0.02361874468624592, -0.016603991389274597, 0.0030282759107649326, -0.006924356333911419, 0.020133063197135925, 0.006548307836055756, 0.03384437412023544, -0.00936505664139986, 0.030864911153912544, 0.013884871266782284, 0.0020339167676866055, -0.01955452747642994, 0.030257448554039, -0.005467168055474758, -0.0007091589504852891, -0.01269887201488018, 0.008323690854012966, 0.007933178916573524, 0.007940410636365414, 0.009169800207018852, -0.030488863587379456, -0.019077233970165253, -0.03890656679868698, 0.01302429847419262, 0.01243129838258028, -0.008844373747706413, 0.0011218180879950523, 0.025542378425598145, -0.02973676659166813, -0.013667920604348183, 0.008417703211307526, -0.008085045032203197, 0.001243853010237217, 0.022114550694823265, 0.006136100739240646, 0.01495516300201416, -0.003292233217507601, 0.002375614596530795, 0.026728376746177673, -0.03821232169866562, -0.06144055724143982, -0.036274224519729614, 0.013053225353360176, -0.025701474398374557, 0.011361006647348404, 0.023662135004997253, -0.02189759910106659, -0.01773213781416416, -0.009148105047643185, 0.0004284784372430295, 0.009466300718486309, 0.004295632243156433, -0.00039277190808206797, 0.020118599757552147, 0.016560601070523262, 0.013385883532464504, -0.003422403708100319, 0.01577957719564438, 0.012134798802435398, 0.011064507067203522, 0.005864911712706089, 0.011194677092134953, -0.010948799550533295, -0.04159675911068916, -0.03908012807369232, 0.022230258211493492, -0.010977726429700851, 0.001815157593227923, 0.00508750369772315, -0.00329946493729949, 0.03867515176534653, -0.009220422245562077, -0.025875035673379898, 0.000910742674022913, -0.013971651904284954, -0.011028348468244076, -0.019511137157678604, 0.008974544703960419, 0.0250361580401659, -0.013154469430446625, 0.006208417471498251, -0.027234597131609917, 0.03772056847810745, -0.010109921917319298, 0.00513450987637043, 0.0015078102005645633, 0.03659242019057274, -0.005911917891353369, 0.003686361014842987, -0.0013441928895190358, 0.03685276210308075, -0.03803876042366028, 0.04393983259797096, 0.021376917138695717, -0.017905699089169502, -0.002077306853607297, 0.028680937364697456, 0.018932601436972618, -0.029968179762363434, 0.03595603257417679, -0.013414810411632061, 0.0030644345097243786, -0.00765837449580431, 0.008034422993659973, 0.014297078363597393, 0.026106450706720352, -0.012915822677314281, 0.025730401277542114, 0.034191496670246124, -0.005333381704986095, 0.04865490272641182, 0.002643187763169408, 0.009336129762232304, 0.03497251868247986, -0.01929418556392193, -0.026641596108675003, 0.006071015261113644, -0.0018712033051997423, -0.04179924726486206, -0.01495516300201416, 0.0008533410727977753, -0.0479317344725132, -0.0032614984083920717, -0.02856522984802723, 0.02377784252166748, -0.04260919988155365, 0.029476424679160118, -0.00805611815303564, -0.008345386013388634, 0.017804455012083054, -0.0025112091097980738, -0.000523846538271755, -0.01738501526415348, 0.021507086232304573, 0.006888197734951973, -0.022403817623853683, 0.007011136971414089, -0.042117442935705185, -0.0101750073954463, 0.012127567082643509, 0.0044945040717720985, -0.05108475685119629, 0.0477292463183403, 0.060052067041397095, -0.0031295197550207376, -0.01569279655814171, -0.0032126842997968197, -0.005445472896099091, 0.01703789457678795, -0.0006693846080452204, -0.011035580188035965, -0.03254266828298569, -0.008367081172764301, 0.02548452466726303, -0.011758750304579735, -0.005488863214850426, -0.0007389897364191711, 0.006884581875056028, 0.009328898042440414, -0.0005975195090286434, 0.0032289556693285704, 0.00022022798657417297, 0.04723748937249184, 0.006960514932870865, -0.011129592545330524, -0.004527046345174313, 0.006324124988168478, 0.007846398279070854, -0.009842349216341972, 0.015606016851961613, 0.010833092033863068, -0.030141741037368774, -0.006580850575119257, 0.05253109708428383, -0.008273068815469742, 0.03164593502879143, -0.023821232840418816, -0.0078102401457726955, -0.026149841025471687, 0.023835696280002594, -0.006316893268376589, -0.05198148638010025, -0.01765982061624527, -0.016965577378869057, -0.007372722029685974, -0.009986982680857182, 0.010377494618296623, 0.007018368691205978, 0.030864911153912544, 0.04466300085186958, 0.021290136501193047, -0.03792305290699005, -0.005253832787275314, 0.011700896546244621, -0.034451838582754135, 0.02082730643451214, -0.00011615924449870363, 0.0010467891115695238, 0.0017274732235819101, 0.0005392139428295195, 0.0323980338871479, -0.0014255496207624674, -0.02317037805914879, -0.011346543207764626, 0.002739007817581296, -0.016719698905944824, -0.013291871175169945, 0.0052610645070672035, 0.009538616985082626, 0.008301995694637299, -8.757141040405259e-05, 0.008396008051931858, 0.01764535717666149, 0.013863176107406616, -0.029678912833333015, -0.008048886433243752, -0.03063349798321724, -0.008164593949913979, -0.04660109803080559, 0.004183540586382151, 0.020943013951182365, 0.012633786536753178, 0.011917848140001297, 0.017616430297493935, -0.038704078644514084, 0.0007972953608259559, 0.016444893553853035, -0.009647092781960964, -0.016546137630939484, 0.007036447990685701, -0.008432166650891304, -0.0032614984083920717, 0.008981776423752308, -0.012142030522227287, 0.006136100739240646, -0.025065084919333458, 0.005575643852353096, -0.02622215822339058, -0.0010033989092335105, -0.007636679336428642, 0.0065519236959517, -0.043997686356306076, -0.04171246662735939, 0.011961238458752632, 0.021839745342731476, -0.04457622393965721, 0.02892681583762169, 0.025094011798501015, -0.001559336087666452, 0.0246022567152977, 0.015707259997725487, 0.021232282742857933, -0.013964420184493065, -0.007195545360445976, 0.05015909671783447, 0.031848423182964325, 0.01747179590165615, -0.0038472663145512342, -0.008844373747706413, -0.016097772866487503, 0.015461382456123829, 0.004747613333165646, 0.026815157383680344, -0.0032596904784440994, -0.0010404613567516208, -0.021998843178153038, -0.00021243130322545767, -0.017775528132915497, -0.007115996442735195, 0.03164593502879143, 0.005420161876827478, 0.02358981780707836, 0.01544691901654005, -0.01702343113720417, 0.04038183391094208, -0.0018015982350334525, -0.028348278254270554, -0.007788544986397028, -0.03416256979107857, -0.018397454172372818, -0.024790281429886818, -0.003395284991711378, 0.027943303808569908, -0.016155626624822617, -0.013096615672111511, -0.012330055236816406, -0.01721145585179329, 0.02863754704594612, 0.012330055236816406, 0.017789991572499275, 0.0027534712571650743, 0.03656349331140518, 0.027943303808569908, 0.01684986986219883, 0.00968325138092041, 0.014080127701163292, -0.0063638994470238686, 0.008793751709163189, 0.024110499769449234, -0.0022056696470826864, 0.005525021813809872, 0.0032651142682880163, 0.008367081172764301, 0.014767139218747616, -0.017008967697620392, 0.002196629997342825, -0.02422620728611946, -0.004624674562364817, -0.009538616985082626, -0.002626916393637657, -0.015519236214458942, -0.011954006738960743, -0.013002603314816952, -0.006125253159552813, -0.0030499710701406, -0.017862308770418167, -0.022042233496904373, -0.02079837955534458, -0.020754989236593246, -0.0015493925893679261, 0.021102111786603928, -0.017978016287088394, 0.0006711924797855318, -0.0009907433995977044, -0.0096904831007123, -0.02415389008820057, 0.014080127701163292, 0.01883135735988617, -0.023401793092489243, 0.0009536809520795941, -0.004924790468066931, -0.032108765095472336, -0.02604859694838524, -0.003232571529224515, 0.0022255568765103817, -0.0009143585339188576, -0.02565808594226837, -0.03453861549496651, 0.013255713507533073, -0.030864911153912544, 0.004447497893124819, 0.006240960210561752, -0.03309227526187897, 0.061671968549489975, 0.011252530850470066, 0.03450969234108925, -0.007426959928125143, -0.007542666979134083, -0.0025582152884453535, 0.003628507489338517, -0.004555973224341869, -0.03398900851607323, 0.004809082951396704, -0.02431298792362213, 0.021376917138695717, 0.027249060571193695, 0.0081501305103302, -0.03529071435332298, 0.0032777697779238224, 0.03722881153225899, -0.0020411484874784946, -0.028232570737600327, -0.009610934183001518, -0.023300549015402794, -0.020161990076303482, -0.004375180695205927, -0.004367948975414038, 0.004718686919659376, 0.017413942143321037, 0.0024786663707345724, -0.020234307274222374, -0.01455741934478283, -0.0009319858509115875, -0.01220711600035429, -0.020205380395054817, -0.01991611160337925, 0.0021062337327748537, -0.06161411479115486, -0.016054382547736168, -0.003966589458286762, 0.01009545847773552, -0.004002748057246208, -0.0009654324385337532, 0.01278565265238285, 0.008569569326937199, -0.03225339949131012, -0.007354642730206251, 0.010782469995319843, -0.026511427015066147, 0.030835984274744987, 0.02577379159629345, -0.020653745159506798, 0.007586057297885418, 0.0016488285036757588, -0.001203174702823162, 0.011136824265122414, -0.008974544703960419, -0.013494359329342842, 0.010015909560024738, 0.04810529202222824, -0.02646803669631481, -0.007853629998862743, 0.04845241457223892, -0.006016777362674475, 0.008945617824792862, -0.021232282742857933, -0.023098062723875046, 0.010659531690180302, 0.011006653308868408, -0.009227653965353966, -0.01773213781416416, -0.008099508471786976, 0.007716227788478136, 0.017168065533041954, 0.01238790899515152, 0.014340468682348728, 0.004852473270148039, 0.015143187716603279, 0.020292161032557487, -0.01648828387260437, -0.017442869022488594, 0.00044926960254088044, -0.035261787474155426, -0.017327161505818367, -0.023835696280002594, 0.0026341481134295464, 0.02052357606589794, 0.0182094294577837, 0.021463697776198387, 0.004881400149315596, -0.01793462596833706, 0.009929128922522068, 0.018874747678637505, 0.016415966674685478, -0.02361874468624592, 0.011071738786995411, -0.012966444715857506, 0.06751518696546555, 0.027798669412732124, 0.019612381234765053, 0.017949089407920837, -0.02648250013589859, 0.014694822020828724, 0.018440844491124153, 0.032282326370477676, 0.018961526453495026, -0.012821811251342297, -0.0005826041451655328, -0.017963552847504616, 0.005969771649688482, 0.031848423182964325, 0.010449811816215515, 0.026178767904639244, 0.023662135004997253, -0.0078825568780303, 0.006165027618408203, -0.018715649843215942, -0.021738501265645027, 0.0018603558419272304, 0.00815736223012209, -0.01731269806623459, -0.0004621510743163526, -0.018614405766129494, 0.0040352907963097095, -0.012807347811758518, -0.0020791147835552692, -0.0009283699910156429, 0.03691061586141586, 0.017327161505818367, 0.028247034177184105, 0.017905699089169502, -0.007448655087500811, 0.048423487693071365, -0.009712178260087967, 0.00888053234666586, 0.004534278064966202, 0.0006965034990571439, -0.007448655087500811, -0.021550476551055908, 0.002876410260796547, -0.007068990264087915, -0.00765837449580431, 0.008179057389497757, 0.013711309991776943, 0.017949089407920837, -0.02170957438647747, -0.020971940830349922, -0.00847555696964264, -0.013942725025117397, -0.021955452859401703, -0.009256580844521523, -0.0187445767223835, 0.013299102894961834, -0.016647381708025932, -0.020118599757552147, -0.03098061867058277, 0.007188313640654087, 0.0052429852075874805, 0.038877639919519424, 0.018151575699448586, -0.00806334987282753, -0.0187445767223835, -0.004537893924862146, -0.00909748300909996, -0.001553912297822535, -0.01139716524630785, 0.01926525868475437, -0.005434625316411257, -0.0017229533987119794, -0.015880821272730827, 0.014535724185407162, -0.008034422993659973, -0.0005866719875484705, 0.03222447261214256, -0.012735030613839626, 0.03199305757880211, -0.04486548900604248, 0.0012429490452632308, 0.014282614924013615, -0.00475122919306159, -0.00017728973762132227, -0.01865779608488083, -0.00796933751553297, 0.001805214094929397, 0.010558287613093853, 0.00977003201842308, -0.011831067502498627, -0.0012284857220947742, -0.012185420840978622, 0.0163002610206604, -0.0019688312895596027, -0.012713335454463959, -0.0028059009928256273, -0.02791437692940235, 0.008301995694637299, 0.008019959554076195, -0.017428405582904816, -0.016141163185238838, 0.00829476397484541, 0.015591553412377834, -0.022722013294696808, 0.01731269806623459, 0.003514608135446906, -0.04350592941045761, -0.0005807962152175605, -0.0002576294355094433, -0.012373445555567741, 0.005760052241384983, 0.02045125886797905, -0.009950824081897736, -0.012510847300291061, 0.00715938676148653, -0.012597627937793732, -0.003091553458943963, -0.005676887463778257, 0.010572751052677631, -0.01230112835764885, -0.011332079768180847, 0.012178189121186733, 0.0024443159345537424, 0.007463118527084589, 0.012062481604516506, 0.007463118527084589, 0.002541943918913603, 0.0022436361759901047, -0.007199161220341921, -0.0020863465033471584, 0.02946196123957634, 0.009271044284105301, -0.01603991910815239, 0.009958055801689625, -0.001435493235476315, -0.004780156072229147, 0.04263812676072121, 0.015562626533210278, -0.01683540642261505, -0.01342927385121584, -0.020219843834638596, -0.003991900477558374, -0.0004899479099549353, 0.009234885685145855, -0.006103558000177145, -0.0019399045268073678, -0.03997685760259628, 0.012062481604516506, 0.03332369029521942, -0.027870986610651016, -0.00033446631277911365, 0.008323690854012966, -0.003756870049983263, -0.025614695623517036, 0.0013179780216887593, -0.011831067502498627, 0.0058070579543709755, -0.028348278254270554, 0.011107897385954857, -0.0075715938583016396, 0.01792016252875328, -0.006136100739240646, -0.010862018913030624, -0.014058432541787624, -0.00765837449580431, 0.0069822100922465324, 0.013581139966845512, -0.048597048968076706, -0.023676598444581032, 0.000661248923279345, 0.010008677840232849, 0.005177899729460478, -0.006320509128272533, -0.013978883624076843, -0.0036773213651031256, -0.0205525029450655, 0.0421752966940403, -0.042117442935705185, 0.03899334743618965, 0.00287098647095263, -0.03037315607070923, -0.03699739649891853, -0.005525021813809872, 0.007636679336428642, 0.03881978616118431, 0.01031964085996151, -0.016415966674685478, -0.015577089972794056, 0.0013957187766209245, 0.019655771553516388, 0.014224761165678501, -0.016010992228984833, -0.009639861062169075, 0.022418281063437462, 0.013118310831487179, 0.016083309426903725, 0.004002748057246208, -0.006609777454286814, -0.004013595636934042, -0.029490888118743896, -0.005235753487795591, 0.004809082951396704, 0.02196991629898548, -0.03821232169866562, 0.03890656679868698, 0.008092276751995087, -0.019684698432683945, 0.013465432450175285, -0.012395140714943409, -0.01415244396775961, -0.012460225261747837, -0.008222446776926517, -0.02539774402976036, 0.006016777362674475, 0.014065664261579514, 0.01409459114074707, -0.005705814342945814, -0.019684698432683945, 0.010522129014134407, 0.007824703119695187, 0.00434625381603837, -0.0021749348379671574, -0.03288978710770607, 0.030431009829044342, -0.005752820521593094, -0.0027950534131377935, 0.02082730643451214, -0.0026865778490900993, 0.03179056942462921, -0.007311252411454916, 0.019583454355597496, 0.01566386967897415, 0.017616430297493935, -0.005767283961176872, 0.018701186403632164, -0.022317036986351013, -0.003424211638048291, 0.004172693006694317, 0.02541220746934414, -0.004429418593645096, 0.020870696753263474, 0.0019977581687271595, -0.0443158820271492, -0.006316893268376589, -0.00776684982702136, -0.0002775166358333081, -0.002695617498829961, 0.02937518060207367, -0.006758027244359255, -0.0008894995553418994, -0.002335840370506048, 0.009748336859047413, 0.0022237489465624094, -0.013624530285596848, -0.004895863588899374, 0.010731848888099194, 0.0049356380477547646, -0.000982607714831829, -0.021217819303274155, -0.03161700814962387, 0.011201908811926842, -0.0006757123046554625, 0.030604571104049683, -0.0046174428425729275, -0.03384437412023544, 0.004252241924405098, 0.0151287242770195, 0.003328391583636403, 0.012995371595025063, -0.009256580844521523, -0.020422331988811493, 0.04072895646095276, 0.023315012454986572, 0.010341336019337177, 0.007238935679197311, -0.0071846977807581425, -0.008012727834284306, 0.003068050369620323, 0.031501300632953644, -0.004313711542636156, 0.016632918268442154, 0.01838299073278904, -0.013725773431360722, -0.009111946448683739, 0.01504194363951683, 0.014680358581244946, 0.0017084900755435228, 0.026540352031588554, 0.0360138863325119, -0.01657506451010704, -0.007752386387437582, 0.016647381708025932, 0.0117153599858284, -8.333408914040774e-05, 0.017775528132915497, 0.016097772866487503, -0.007470350246876478, 0.013118310831487179, -0.023821232840418816, -0.011187445372343063, -0.015649406239390373, -0.013689614832401276, -0.010305178351700306, 0.03268730267882347, 0.0032524587586522102, 0.01657506451010704, 0.024544402956962585, -0.010876482352614403, 0.014940700493752956, -0.01738501526415348, 0.003554382361471653, -0.0014336853055283427, -0.014268151484429836, -0.010702922008931637, -0.012004627846181393, 0.0006070111412554979, 0.00029039810760878026, 0.006844807416200638, 0.016083309426903725, -0.007390801329165697, 0.0015168498503044248, 0.0015945907216519117, -0.016603991389274597, -0.019670234993100166, -0.02505062147974968, 0.007600520737469196, -0.021507086232304573, 0.0028691785410046577, -0.0016931226709857583, -0.013624530285596848, 0.013465432450175285, -0.008446630090475082, 0.029404107481241226, -0.001167920185253024, 0.005322534125298262, -0.0037966445088386536, -0.028131328523159027, 0.01531674899160862, -0.04457622393965721, 0.015186578035354614, -0.02829042449593544, -0.0074558868072927, 0.00023774226428940892, 0.026699449867010117, -0.0005844120751135051, 0.025339890271425247, -0.003579693380743265, 0.007918715476989746, 0.0026341481134295464, -0.03595603257417679, -0.04145212471485138, 0.004928406327962875, 0.002588949864730239, -0.030228521674871445, -0.009625397622585297, 0.002833019942045212, 0.003174718003720045, 0.014687590301036835, -0.011440555565059185, 0.020653745159506798, -0.019583454355597496, -0.008518947288393974, 0.002560023218393326, -0.020566966384649277, -0.015634942799806595, 0.01585189439356327, 0.0022906421218067408, 0.000494015752337873, 0.006794185843318701, -0.015389065258204937, -0.0020682672038674355, 0.0169366504997015, -0.02053803950548172, 0.007285941392183304, 0.04848134145140648, -0.004566820804029703, 0.000613338896073401, -0.006052935961633921, -0.0008727762615308166, -0.008048886433243752, -0.03390222787857056, -0.019033843651413918, 0.018874747678637505, -0.0119829336181283, -0.0041582295671105385, -0.016097772866487503, 0.024284061044454575, -0.01674862578511238, 0.016256870701909065, 0.004913942888379097, 0.016965577378869057, -0.01793462596833706, 0.034017935395240784, 0.002814940642565489, 0.00569496676325798, 0.003977437037974596, -0.011823835782706738, 0.014658663421869278, -0.02370552532374859, 0.03899334743618965, 0.013588371686637402, -0.00329946493729949, -0.016155626624822617, 0.01066676340997219, -0.009538616985082626, 0.022129014134407043, 0.025209719315171242, -0.02458779327571392, -0.0197136253118515, -0.022114550694823265, 0.008222446776926517, -0.016965577378869057, -0.02675730362534523, -0.012547005899250507, 0.007426959928125143, -0.024096036329865456, 0.0036881689447909594, -0.0003893820394296199, 0.0012664521345868707, -0.023445183411240578, 0.0326005220413208, -0.045010123401880264, -0.009950824081897736, 0.011556263081729412, 0.02612091414630413, 0.0001881372882053256, 0.01755857653915882, -0.01203355472534895, 0.012395140714943409, 0.02758171781897545, -0.009415678679943085, 0.03335261717438698, -0.030431009829044342, 0.0017057781806215644, 0.030286375433206558, -0.024558866396546364, -0.003270538058131933, -0.00896731298416853, 0.037257738411426544, 0.00886606890708208, 9.909694199450314e-05, -0.020046282559633255, -0.031935203820466995, -0.01211310364305973, 0.002916184486821294, -0.009791727177798748, 0.005098351277410984, 0.018773503601551056, -0.00034260196844115853, -0.011614115908741951, -0.005568412132561207, -0.009712178260087967, -0.00313132768496871, 0.01463696826249361, -0.014788834378123283, -0.0052791438065469265, 0.007781313266605139, -0.015750650316476822, -0.02317037805914879, -0.009126409888267517, -0.012011859565973282, -0.015244431793689728, 0.0024732425808906555, -0.004787387792021036, 0.0016081500798463821, 0.014268151484429836, -0.012691640295088291, -0.006931588053703308, -0.01729823462665081, -0.004505351651459932, 0.0050947354175150394, 0.005380387417972088, 0.0009726641583256423, 0.010218397714197636, 0.004223315045237541, -0.0014544763835147023, -0.0067254845052957535, -0.012973676435649395, -0.008829910308122635, -0.009849580936133862, 0.002764318836852908, 0.002681154292076826, -0.0057202777825295925, -0.007249783258885145, -0.008446630090475082, 0.08209430426359177, 0.014738212339580059, 0.012865200638771057, 0.007101533003151417, 0.0020881544332951307, -0.03008388727903366, -0.0008556009270250797, 0.009712178260087967, 0.026612669229507446, 0.0041039916686713696, -0.023011282086372375, -0.006165027618408203, 0.011997396126389503, 0.010066531598567963, -0.024790281429886818, -0.0028619468212127686, 0.0035887330304831266, 0.015143187716603279, 0.006479606498032808, 0.026063060387969017, 0.010471506975591183, -0.010102690197527409, -0.018310673534870148, 0.0108113968744874, -0.015360139310359955, 0.02954874187707901, 0.00018293950415682048, 0.007123228162527084, 0.020292161032557487, 0.03731559216976166, -0.007911483757197857, -0.01050043385475874, -0.004906711168587208, -0.017775528132915497, 0.00154848862439394, 0.018035870045423508, 0.0015114260604605079, 0.022938964888453484, -0.016358114778995514, 0.004527046345174313, -0.005300838965922594, 0.004085912834852934, 0.01640150509774685, 0.02415389008820057, 0.00043254627962596714, -0.007586057297885418, 0.0019525600364431739, -0.0007746962946839631, 0.002375614596530795, -0.01202632300555706, -0.023575354367494583, -0.018137112259864807, 0.003666473785415292, 0.010630604811012745, 0.01936650276184082, -0.0036068123299628496, 0.004245010204613209, -0.0008284820942208171, -0.004736765753477812, 0.006703789345920086, -0.022288111969828606, 0.0007285941392183304, -0.007007521111518145, -0.03384437412023544, -0.015591553412377834, -0.02314145304262638, -0.002594373654574156, -0.01755857653915882, 0.004085912834852934, -0.015186578035354614, -0.02170957438647747, 0.004263089504092932, -0.0024009256158024073, -0.019438819959759712, -0.002713696798309684, 0.025730401277542114, -0.007831934839487076, 0.02027769759297371, 0.02565808594226837, 0.0027317760977894068, 0.016603991389274597, 0.0071304598823189735, -0.01964130811393261, -0.010739079676568508, -0.001126337912864983, 0.00232137693092227, -0.0005093831568956375, -0.01945328339934349, 0.009487994946539402, -0.026800693944096565, -0.02008967287838459, -0.010232861153781414, 0.0009545849170535803, 0.00888053234666586, 0.009357824921607971, 0.0021532399114221334, -0.007831934839487076, -0.006895429454743862, 0.01793462596833706, -0.016097772866487503, 0.0025292884092777967, 0.03711310401558876, -0.014166907407343388, -0.010739079676568508, 0.008121203631162643, -0.0055539486929774284, 0.026873011142015457, -0.011903384700417519, -0.01712467521429062, 0.007665606215596199, -0.011353774927556515, -0.011498409323394299, 0.0020881544332951307, 0.005044113378971815, -0.03450969234108925, 0.00950245838612318, -0.000994359259493649, -0.004736765753477812, -0.02152154967188835, -0.009979750961065292, -0.006971362512558699, -0.002852907171472907, -0.02126120962202549, -0.0163002610206604, 0.008352617733180523, -0.004465577192604542, -0.013986115343868732, -0.01026178803294897, -0.013277407735586166, -0.015649406239390373, 0.004349869675934315, 0.008757593110203743, 0.007282325532287359, -0.010059299878776073, 0.012778420932590961, 0.001488827052526176, -0.011961238458752632, -0.015707259997725487, 0.028406132012605667, -0.023662135004997253, 0.026786230504512787, -0.002626916393637657, 0.0011290498077869415, 0.011556263081729412, -0.0030590107198804617, 0.004125686828047037, -0.01712467521429062, -0.025527914986014366, -0.01719699241220951, -0.00886606890708208, 0.03181949630379677, -0.04243563860654831, 0.013682383112609386, -0.005412930157035589, 0.006439832039177418, -0.00028090650448575616, -0.024096036329865456, 0.024110499769449234, -0.023025745525956154, -0.0006336780497804284, 0.0050947354175150394, -0.0016171897295862436, -0.020306624472141266, -0.0005550332716666162, -0.008041654713451862, 0.004009979777038097, 0.014969626441597939, 0.02179635502398014, -0.0016813711263239384, 0.004917558748275042, -0.008085045032203197, -0.0019543678499758244, 0.02830488793551922, -0.01455018762499094, 0.012445761822164059, -0.0012095024576410651, 0.005253832787275314, 0.0002494937798473984, -0.022736476734280586, 0.01773213781416416, 0.010890945792198181, 0.004226930905133486, 0.015577089972794056, 0.006645935587584972, -0.015374601818621159, -0.009314434602856636, 0.010601677931845188, -0.018860284239053726, -0.008540642447769642, -0.006555539555847645, -0.003554382361471653, 0.0191784780472517, 0.0021369685418903828, -0.01945328339934349, -0.014268151484429836, -0.013342493213713169, 0.015924211591482162, 0.020610356703400612, 0.017978016287088394, -0.00736187444999814, 0.010428116656839848, -0.0012122143525630236, 0.014174139127135277, 0.008077813312411308, -0.004671680741012096, -0.023821232840418816, -0.0060999421402812, -0.01585189439356327, -0.015461382456123829, -0.007911483757197857, -0.03254266828298569, -0.028767718002200127, 0.011274226009845734, 0.0027733584865927696, -0.0013785435585305095, 0.004566820804029703, 0.016792016103863716, 0.0018241972429677844, 0.017052358016371727, 0.019395429641008377, 0.015591553412377834, 0.010464275255799294, 0.02820364385843277, 0.0053840032778680325, -0.021781891584396362, 0.0087865199893713, 0.01148394588381052, 0.012142030522227287, 0.01423199288547039, -0.004407723434269428, 0.015519236214458942, -0.0023828463163226843, -0.009582007303833961, 0.010297946631908417, -0.010919872671365738, 0.028594156727194786, 0.019409893080592155, -0.008576801046729088, 0.019120624288916588, -0.012409604154527187, 0.005449088755995035, -0.01229389663785696, -0.0020935782231390476, -0.0013125542318448424, -0.013364188373088837, -0.0209864042699337, -0.0012935709673911333, 0.01108620222657919, 0.008584032766520977, -2.5649949748185463e-05, -0.008829910308122635, -0.008612959645688534, -0.005467168055474758, 0.017428405582904816, 0.026337865740060806, -0.004259473644196987, -0.022837720811367035, -0.004989875480532646, 0.0027679346967488527, -0.019699161872267723, 0.002131544752046466, 0.012554237619042397, -0.029418570920825005, -0.012250506319105625, 0.0032163001596927643, 0.027957767248153687, -0.03714203089475632, 0.009762800298631191, -0.0043787965551018715, 0.006844807416200638, -0.005557564552873373, -0.003339239163324237, 0.016415966674685478, 0.025744864717125893, 0.008323690854012966, -0.0009789918549358845, 0.0010648684110492468, -0.020407868549227715, -0.005615417845547199, 0.008952849544584751, -0.000941025442443788, 0.003413364291191101, 0.011751518584787846, -0.024790281429886818, 0.0017121058190241456, -0.02944749779999256, -0.000494015752337873, 0.012829042971134186, 0.0018260051729157567, 0.015837430953979492, 0.005600954405963421, -0.01108620222657919, 0.0026648829225450754, -0.0009627205436117947, -0.017139138653874397, -0.002108041662722826, -0.002751663327217102, -0.0032181080896407366, 0.02784205973148346, -0.013819785788655281, -0.010297946631908417, -0.003102401038631797, 0.004758460912853479, -0.013089383952319622, 0.01401504222303629, 0.023662135004997253, 0.011057275347411633, 0.01203355472534895, -0.009271044284105301, 0.020653745159506798, 0.014629736542701721, -0.010999421589076519, -0.01890367455780506, -0.018252819776535034, -0.029302863404154778, -0.017442869022488594, 0.009610934183001518, 0.024341914802789688, -0.0349435918033123, -0.00626265536993742, -0.0008348097908310592, 0.0067074052058160305, 0.006758027244359255, 0.009350593201816082, 0.00581067381426692, 0.007401648908853531, 0.023083599284291267, 0.0037713334895670414, 0.01333526149392128, -0.02332947589457035, 0.017876772210001945, 0.01089817751199007, -0.018079260364174843, -0.008005496114492416, 0.009560312144458294, 0.02846398577094078, -0.010623373091220856, 0.0004418118915054947, -0.008396008051931858, 0.005192363169044256, -0.022288111969828606, -0.00986404437571764, -0.007687300909310579, 0.002916184486821294, 0.012677176855504513, -0.0028727944009006023, 0.01238790899515152, -0.008113971911370754, 0.027610644698143005, 0.0024316604249179363, -0.001339673181064427, 0.010862018913030624, 0.0280156210064888, 0.01431877352297306, -0.011737055145204067, -0.0108113968744874, 0.01593867503106594, 0.01593867503106594, -0.012894127517938614, 0.008215215057134628, -0.015070870518684387, 0.010782469995319843, -0.007918715476989746, -0.010124385356903076, 0.029490888118743896, 0.005318918265402317, -0.006425368599593639, 0.009401215240359306, -0.03618744760751724, -0.0002894941426347941, -0.01712467521429062, -0.02225918509066105, -0.017052358016371727, -0.020292161032557487, -0.011599652469158173, 0.014803297817707062, -0.006118021439760923, 0.005402082577347755, -0.026684986427426338, -0.004451113753020763, 0.029707839712500572, -0.00047503254609182477, -0.019597917795181274, -0.00838154461234808, 0.006537460256367922, 0.026974255219101906, 0.01738501526415348, 0.00896731298416853, 0.007860861718654633, -0.017674284055829048, -0.0035923488903790712, 0.0072714779525995255, -0.009025166742503643, 0.0008836237830109894, 0.008099508471786976, 0.018932601436972618, -0.03618744760751724, 0.03236910700798035, 0.005984235089272261, -0.008041654713451862, -0.008605727925896645, -0.0008162785670720041, 0.023199304938316345, 0.0038219555281102657, 0.005619033705443144, -0.01765982061624527, 0.012402372434735298, 0.010710153728723526, 0.017457332462072372, -0.007228088099509478, 0.004968180321156979, 0.012814579531550407, -0.03569569066166878, -0.011332079768180847, 0.007398033048957586, -0.0061614117585122585, 0.001339673181064427, -0.010739079676568508, -0.005767283961176872, -0.004812698811292648, 0.004906711168587208, -8.926634473027661e-05, 0.011700896546244621, 0.003239803249016404, 0.012004627846181393, -0.017992479726672173, 0.0286520104855299, -0.00016610320017207414, -0.0024913218803703785, 0.004986259620636702, -0.010297946631908417, -0.007506508380174637, -0.007723459508270025, 0.014629736542701721, -0.02008967287838459, -0.015244431793689728, 0.03205091133713722, -0.021651720628142357, 0.00018237452604807913, 0.025383280590176582, -0.01964130811393261, -0.00829476397484541, -0.005564796272665262, 0.0033970929216593504, 0.0205525029450655, 0.002567254938185215, 0.0011823836248368025, 0.01990164816379547, -0.006678478326648474, -0.01188892126083374, -0.012575932778418064, 0.018802430480718613, -0.015085333958268166, 0.0009744720882736146, -0.008974544703960419, 0.006291582249104977, 0.004458345472812653, -0.0025473677087575197, 0.036361005157232285, -0.0349435918033123, 0.0013550404692068696, -0.007680069655179977, -0.001107354648411274, 0.0006268983124755323, -0.017008967697620392, 0.0038038762286305428, -0.01423199288547039, 0.003991900477558374, -0.010768006555736065, 0.012460225261747837, -0.0070509109646081924, 0.015996528789401054, 0.020205380395054817, -0.0002757087058853358, 0.011332079768180847, 0.00837431289255619, -0.01773213781416416, 0.025065084919333458, 0.0060095456428825855, -0.01270610373467207, -0.005987850949168205, 0.008453861810266972, -0.007412496488541365, 0.0074920449405908585, 0.03413364291191101, -0.006562771275639534, 0.006537460256367922, 0.028782181441783905, 0.007868093438446522, 0.008793751709163189, -0.0009392175124958158, 0.0037785652093589306, 0.01504194363951683, -0.008902227506041527, 0.009661556221544743, 0.01220711600035429, -0.005962539929896593, 0.030517790466547012, 0.000649045396130532, 0.012076945044100285, 0.0026883857790380716, 0.006360283587127924, 0.0058576799929142, 0.0018449884373694658, 0.027986694127321243, 0.003476641606539488, -0.0070039052516222, 0.009148105047643185, 0.035348568111658096, 0.0060999421402812, 0.0008203464094549417, 0.00016011444677133113, -0.004986259620636702, 0.006584466435015202, 0.019149551168084145, 0.020957477390766144, 0.003662857925519347, 0.014651431702077389, 0.017717674374580383, 0.0018241972429677844, -0.00968325138092041, -0.0045812842436134815, 0.0010811396641656756, 0.004447497893124819, 0.0030083886813372374, 0.0004949197173118591, 0.020754989236593246, -0.0007272381917573512, 0.004765692632645369, 0.0015756074571982026, -0.015909748151898384, -0.00651214923709631, 0.00368093722499907, -0.0007597808726131916, 0.0073510268703103065, 0.010970494709908962, 0.02091408707201481, 0.009090251289308071, 0.02244720794260502, -0.0020158374682068825, 0.010543824173510075, 0.011440555565059185, 0.012091408483684063, -0.012568701058626175, -0.006797801703214645, -0.017168065533041954, 0.009835117496550083, 0.005506942514330149, -0.007304020691663027, -0.004704223480075598, -0.015013016760349274, -0.0006915316917002201, 0.01812264882028103, -0.0033537026029080153, 0.014051200821995735, -0.021752964705228806, 0.0032181080896407366, 0.0013731197686865926, -0.00022689469915349036, 0.01883135735988617, -0.006392826326191425, -0.021926525980234146, -0.024790281429886818, -0.0007905156235210598, -0.011368238367140293, 0.002883641980588436, 0.0027588950470089912, 0.006873734295368195, -0.006183106917887926, 0.010391958057880402, 0.000366330990800634, -0.000981703749857843, -0.022317036986351013, -0.00454874150454998, 0.0030825138092041016, 0.01270610373467207, -0.03812554106116295, -7.2034549702948425e-06, 0.01612669974565506, -0.019612381234765053, -0.00039390186429955065, -0.026627132669091225, -0.013624530285596848, -0.01747179590165615, 0.0075715938583016396, 0.011549031361937523, -0.0029071448370814323, 0.01449956651777029, 0.018180502578616142, -0.019568990916013718, 0.022808793932199478, -0.007040063850581646, 0.0026052212342619896, 0.012344518676400185, 0.022505061700940132, -0.007376337889581919, 0.0041763088665902615, -1.4887140423525125e-05, -0.028044547885656357, -0.015331212431192398, -0.004986259620636702, 0.006096326280385256, 0.010167775675654411, -0.0014074703212827444, 0.01612669974565506, 0.004791003651916981, 0.002019453328102827, -0.021478159353137016, -0.00959647074341774, -0.009140873327851295, 0.011961238458752632, -0.003585117170587182, 0.02205669693648815, -0.004241394344717264, 0.007651142776012421, -0.014940700493752956, -0.006168643478304148, 0.004530662205070257, -0.0002465558936819434, -0.025195255875587463, -0.002715504728257656, 0.0018965143244713545, 0.00419077230617404, 0.017428405582904816, -0.016792016103863716, 0.0037134799640625715, 0.012156493961811066, 0.015808504074811935, 0.023488573729991913, -0.005470783915370703, 0.002852907171472907, 0.010283483192324638, -0.002252675825729966, -0.01401504222303629, 0.0014300694456323981, 0.01197570189833641, -0.02677176706492901, -0.0020357246976345778, -0.014998553320765495, -0.020017355680465698, 0.0008461093530058861, -0.002489513950422406, -0.0019507521064952016, 0.014087359420955181, 0.009437373839318752, 0.0036935927346348763, 0.004454729612916708, -0.007311252411454916, -0.004852473270148039, -0.012720567174255848, -0.0197136253118515, 0.020465722307562828, -0.015302285552024841, 0.011686433106660843, -0.003548958571627736, -0.009205958805978298, 0.015172114595770836, -0.03187735006213188, 0.01211310364305973, -0.0010449811816215515, -0.017529649659991264, -0.023199304938316345, -0.0070039052516222, 0.002679346362128854, -0.0019543678499758244, -0.018672259524464607, 0.0017753832507878542, 0.02071159891784191, -0.0007403456838801503, -0.017992479726672173, -0.0003880260919686407, 0.004154613707214594, -0.025556841865181923, 0.011107897385954857, 0.006306045688688755, -0.006786954123526812, 0.010066531598567963, -0.02539774402976036, 0.004400491714477539, -0.03155915439128876, -0.0027173126582056284, 0.004096760414540768, 0.0073510268703103065, 0.0008791040163487196, -1.5974721463862807e-05, 0.005199594888836145, 0.0018730112351477146, -0.029939252883195877, -0.009220422245562077, 0.003084321739152074, -0.011758750304579735, -0.005080271977931261, -0.01819496601819992, -0.029678912833333015, 0.015389065258204937, -0.003382629482075572, -0.014022273942828178, -0.008142898790538311, -0.018223892897367477, -0.020480185747146606, -0.02306913584470749, -0.0036393548361957073, 0.001041365321725607, -0.0037315592635422945, 0.004107607528567314, -0.023488573729991913, 0.0074558868072927, 0.002865562681108713, 0.002673922572284937, -0.007897020317614079, 0.010297946631908417, -0.0012673560995608568, 0.011758750304579735, 0.013660688884556293, -0.01901938021183014, -0.018686722964048386, 0.006721868645399809, -0.002791437553241849, -0.009813422337174416, -0.0008207983919419348, -0.007586057297885418, 0.00028429634403437376, -0.0038255713880062103, 0.009422910399734974, 0.002471434883773327, -0.019511137157678604, -0.0009627205436117947, 0.0018657796317711473, -0.007199161220341921, 0.009227653965353966, 0.003868961473926902, -0.01692218706011772, -0.003699016524478793, 0.009198727086186409, -0.013783627189695835, -0.012460225261747837, 0.0069641307927668095, 0.011512872762978077, 0.004809082951396704, 0.02072606235742569, -0.014984089881181717, -0.02719120681285858, 0.0035001446958631277, 0.005966155789792538, 0.015490309335291386, -0.009408446960151196, -0.019236331805586815, 0.010645068250596523, -0.018889211118221283, 0.017862308770418167, -0.004328174516558647, -0.00398828461766243, 0.008352617733180523, -0.0038255713880062103, 0.0011760558700188994, 0.0035399189218878746, 0.007737922947853804, -0.018845820799469948, 0.004892247729003429, -0.001810637884773314, 0.01901938021183014, 0.018064796924591064, -0.01819496601819992, 0.002679346362128854, 0.0015448727644979954, 0.0014915389474481344, 0.005557564552873373, -0.007336563430726528, -0.014463407918810844, 0.024848133325576782, 0.019352039322257042, 0.0033735898323357105, -0.015620480291545391, -0.03242696076631546, -0.011780445463955402, -0.010225629433989525, -0.014376627281308174, 0.01162134762853384, 0.011455019004642963, 0.010616141371428967, -8.469002932542935e-05, -0.012771189212799072, -0.02677176706492901, -0.012886895798146725, -0.029085911810398102, 0.012452993541955948, 0.025441134348511696, 0.00033966408227570355, -0.00018327849102206528, 0.007311252411454916, 0.01764535717666149, 0.0031584466341882944, -0.016546137630939484, -0.005593722686171532, 0.021116575226187706, 0.0038400348275899887, 0.01703789457678795, -0.006718252785503864, -0.01319785974919796, -0.008186289109289646, 0.0030825138092041016, 0.011556263081729412, -0.009972519241273403, -0.01229389663785696, -0.013559444807469845, 0.012742262333631516, -0.01350882276892662, 0.015099797397851944, 0.0034802574664354324, -0.005286375526338816, -0.0023900780361145735, -0.0006214745226316154, -0.007126844022423029, 0.017601966857910156, 0.003597772680222988, -0.023184841498732567, -0.005109198857098818, -0.0015331212198361754, -0.004400491714477539, 0.00594446063041687, -0.018845820799469948, 0.01784784533083439, 0.028868962079286575, -0.021376917138695717, -0.027437083423137665, 0.009119178168475628, -0.005929997190833092, -0.014897310175001621, -4.1130315366899595e-05, -0.007220856379717588, -0.0005685926880687475, 0.008301995694637299, -0.009574775584042072, 0.01684986986219883, -0.0011941350530833006, -0.013704078271985054, -0.00012994467397220433, -0.0017844229005277157, 0.01081862859427929, 0.009958055801689625, 0.020118599757552147, -0.024182816967368126, 0.008511715568602085, 0.002881834050640464, -0.0034748336765915155, 0.0117153599858284, -0.007788544986397028, 0.003321159863844514, -0.025817181915044785, -0.025802718475461006, 0.0099074337631464, 0.0021695110481232405, -0.008989008143544197, 0.007629447616636753, 0.004451113753020763, 0.019785940647125244, -0.0021297368220984936, -0.0050766561180353165, 0.019670234993100166, -0.01631472446024418, 0.019221868366003036, 0.012286664918065071, 0.010840323753654957, -0.0004122071259189397, 0.00747758150100708, -0.01130315288901329, -0.006548307836055756, 0.0061614117585122585, -0.004082296974956989, -0.02207116037607193, -0.008099508471786976, -0.010746311396360397, -0.0029559589456766844, 0.01162857934832573, 0.00985681265592575, 0.01748625934123993, 0.005427393596619368, 0.0023376483004540205, -0.015345675870776176, -0.002601605374366045, -0.011332079768180847, 0.01585189439356327, 7.916738468338735e-06, 0.0010332296369597316, -0.030054960399866104, -0.008641885593533516, 0.024269597604870796, -0.011469482444226742, 0.0033555105328559875, 0.020060745999217033, 0.019207404926419258, -0.0008578608394600451, 0.018354063853621483, -0.004725918639451265, -0.012011859565973282, -0.008981776423752308, 0.024110499769449234, 0.013060457073152065, -0.0062481919303536415, 0.003800260368734598, 6.293842307059094e-05, 0.007434191647917032, -0.010652299970388412, -0.003764101769775152, -0.0052972231060266495, -0.008627423085272312, -0.021029794588685036, -0.0016388848889619112, -0.001607246114872396, -0.004422186873853207, -0.009328898042440414, -0.013899334706366062, 0.007499276660382748, 0.01883135735988617, 0.007224472239613533, 0.013443737290799618, 0.0025690628681331873, 0.005275527946650982, -0.004201619885861874, -0.008620191365480423, -0.010030372999608517, 0.02577379159629345, 0.002513017039746046, 0.02233150042593479, 0.019612381234765053, 0.00910471472889185, -0.021825281903147697, -0.01319062802940607, -0.015331212431192398, -0.014275383204221725, 0.0022291727364063263, -0.010956031270325184, 0.01648828387260437, 0.01197570189833641, -0.02286664769053459, -0.006660399027168751, 0.0007118708454072475, 0.004555973224341869, -0.0014544763835147023, 0.019655771553516388, 0.02386462315917015, 0.0036935927346348763, 0.0036248916294425726, -0.023199304938316345, -0.011332079768180847, -0.004552357364445925, 0.001786230830475688, -0.017905699089169502, -0.0005893838824704289, -0.004009979777038097, 0.010355799458920956, -0.0034097484312951565, 0.017616430297493935, -0.0021460081916302443, 0.008077813312411308, 0.00022282687132246792, 0.0035941568203270435, -0.012850737199187279, -0.024341914802789688, -0.011512872762978077, -0.008446630090475082, -0.005803442094475031, 0.012872432358562946, -0.021680647507309914, 0.010507665574550629, -0.012076945044100285, 0.005658808164298534, -0.010290714912116528, -0.015013016760349274, 0.006848423276096582, 0.014984089881181717, 0.014109053649008274, 0.00026418318157084286, 0.025282036513090134, 0.02496384084224701, 0.007947642356157303, -0.03398900851607323, 0.004657217301428318, -0.011346543207764626, 0.009979750961065292, -0.013262944296002388, 0.0006440736469812691, 0.012604859657585621, -0.00515620457008481, 0.011332079768180847, 0.010435348376631737, -0.0015069062355905771, 0.009017935022711754, 0.01243853010237217, 0.0025509835686534643, -0.011382701806724072, -0.024905987083911896, -0.004270321223884821, 0.013949956744909286, -0.013082152232527733, -0.025368817150592804, 0.025079548358917236, 0.002881834050640464, -0.012973676435649395, 0.0033717819023877382, -0.008634653873741627, 0.021940989419817924, -0.0031783338636159897, 0.0024316604249179363, 0.009198727086186409, -0.0061614117585122585, -0.00020587757171597332, 0.0010793317342177033, -0.01946774683892727, 0.014788834378123283, 0.01382701750844717, -0.007788544986397028, -0.02063928171992302, -0.00025875939172692597, -0.02558576874434948, 0.011816604062914848, 0.022924501448869705, 0.016517210751771927, 0.017818918451666832, 0.01351605448871851, -0.004013595636934042, 0.02730691432952881, 0.02179635502398014, -0.0149117736145854, 0.014702053740620613, -0.0004472356813494116, -0.004704223480075598, -0.01812264882028103, -0.01829621009528637, -0.022013306617736816, 0.004056985955685377, 0.007622215896844864, -0.007213624659925699, -0.009676019661128521, -0.016358114778995514, -0.004299248103052378, -0.016603991389274597, 0.021478159353137016, -0.001607246114872396, 0.01648828387260437, 0.0020411484874784946, -0.007651142776012421, 0.009336129762232304, 0.009379520080983639, -0.019482210278511047, -0.004577668383717537, 0.01553369965404272, -0.0006730004097335041, 0.01149117760360241, 0.005593722686171532, -0.02071159891784191, -0.012821811251342297, -0.001268260064534843, 0.008800983428955078, 0.018137112259864807, 0.017703210934996605, 0.004508967511355877, 0.01220711600035429, 0.011281457729637623, 0.03731559216976166, 0.004769308492541313, -0.001559336087666452, -0.0013080344069749117, -0.008706971071660519, -0.0010431732516735792, 0.005597338546067476, -0.007134075742214918, -0.005600954405963421, 0.004555973224341869, 0.010717385448515415, -0.012937517836689949, 0.01829621009528637, 0.006848423276096582, 0.006461527198553085, -0.025889499112963676, 0.003192797303199768, 0.013371420092880726, 0.007897020317614079, 0.0003755966026801616, -0.007257014978677034, 0.010789701715111732, -0.01603991910815239, -0.012228811159729958, -0.0027118888683617115, -0.009950824081897736, -0.004038906656205654, 0.00986404437571764, 0.00010480320634087548, -0.0035399189218878746, -0.014868383295834064, 0.013653457164764404, 0.005065808538347483, -0.005727509502321482, 0.015070870518684387, 0.006414521485567093, -0.007672837935388088, 0.023315012454986572, 0.003326583653688431, -0.011245299130678177, -0.004328174516558647, -0.010702922008931637, 0.014810529537498951, -0.005185131449252367, 0.0021893982775509357, 0.013696846552193165, -0.005713046062737703, 0.0028926816303282976, -0.00869973935186863, -0.010977726429700851, -0.028507376089692116, 0.0021875903476029634, 0.0042739370837807655, -0.013125542551279068, -0.004519815091043711, 0.0048018512316048145, 0.0004567272844724357, -0.002341264160349965, 0.010341336019337177, 0.012409604154527187, 0.0037062482442706823, -0.013776395469903946, 0.006682094186544418, -0.00016836309805512428, -0.0087865199893713, -0.0036718975752592087, 0.0034332512877881527, 0.007745154667645693, -0.009025166742503643, 0.004017211496829987, -0.010044836439192295, 0.006613393314182758, 0.006385594606399536, 0.0187445767223835, 0.008135667070746422, 0.01926525868475437, -4.463317236513831e-05, 0.011838299222290516, -0.009625397622585297, 0.023922476917505264, -0.0035706537310034037, 0.02181081846356392, 0.005105582997202873, 0.011115129105746746, 0.004574052523821592, -0.003407940501347184, 0.003661049995571375, 0.012098640203475952, 0.00606016768142581, 0.005749204661697149, -0.012178189121186733, -0.007032832130789757, -0.010203934274613857, 0.001858547911979258, -0.01220711600035429, 0.016690772026777267, 0.013060457073152065, 0.0017102978890761733, 0.003136751474812627, -0.004259473644196987, 0.019207404926419258, 0.00023909821175038815, 0.005647960584610701, -0.007687300909310579, 0.0013441928895190358, -0.0012474688701331615, 0.021564939990639687, -0.02133352681994438, 0.012192652560770512, 0.010240092873573303, -0.0035453427117317915, -0.0035453427117317915, -0.018975989893078804, 0.004270321223884821, -0.011295921169221401, 0.0051634362898766994, 0.009111946448683739, 0.010102690197527409, -0.0058251372538506985, 0.011447787284851074, -0.017862308770418167, -0.010702922008931637, -0.006204802077263594, -0.018411917611956596, -0.021507086232304573, -0.0019308648770675063, -0.024457622319459915, -0.023387329652905464, -0.0010223821736872196, 0.01748625934123993, -0.0007304020691663027, 0.03479895740747452, -0.010775238275527954, -0.035551056265830994, 0.00010067887342302129, -0.009755568578839302, 0.01650274731218815, -0.01157072652131319, 0.011353774927556515, 0.004592131823301315, -0.013675152324140072, -0.026337865740060806, -0.005933613050729036, 0.014029505662620068, -0.008280300535261631, -0.017269307747483253, -0.005778131540864706, 0.027451546862721443, -0.006580850575119257, 0.007781313266605139, 0.022996818646788597, -0.012481920421123505, 0.004592131823301315, -0.01449956651777029, -0.00797656923532486, -0.013761932030320168, 0.014448944479227066, -0.004490888211876154, -0.007701764348894358, 0.031674861907958984, -0.006580850575119257, -0.0018928984645754099, 0.013140005990862846, -0.00029152806382626295, -0.010066531598567963, 0.014897310175001621, -0.0017961744451895356, 0.007665606215596199, -0.006588082294911146, -0.002250867895781994, 0.028854498639702797, 0.011881689541041851, -0.007115996442735195, -0.011816604062914848, -0.0015674717724323273, -0.010442580096423626, 0.0062120333313941956, -0.00528999138623476, 0.01602545566856861, 0.0017021623207256198, -0.00018056661065202206, -0.01342927385121584, 0.002796861343085766, 0.004555973224341869, 0.003749638330191374, -0.014289846643805504, -0.007513740099966526, 0.008251373656094074, -0.0163002610206604, 0.003427827497944236, -0.026887474581599236, 0.021145502105355263, -0.014514029957354069, -0.003735175123438239, -0.003203644882887602, 0.03072027862071991, -0.01731269806623459, -0.014188602566719055, 0.009545848704874516, 0.010652299970388412, 0.004302863962948322, 0.003572461660951376, -0.01819496601819992, 0.0252386461943388, 0.02081284299492836, 0.005409314297139645, -0.013631762005388737, 0.02026323415338993, -0.019323112443089485, 0.022750940173864365, -0.0028854499105364084, -0.019597917795181274, 0.016806479543447495, -0.0015701836673542857, -0.012105871923267841, -0.0013839673483744264, -0.02486259676516056, -0.0027842060662806034, 0.005666039884090424, 0.005420161876827478, 0.01122360397130251, 0.009054092690348625, 0.006204802077263594, 0.0030626265797764063, -0.0021930141374468803, 0.009017935022711754, 0.011722591705620289, 0.04946485534310341, 0.0070039052516222, 0.01400057878345251, -0.014166907407343388, 0.008627423085272312, -0.029418570920825005, 0.01238790899515152, 0.0005306262755766511, -0.01748625934123993, 0.007000289391726255, 0.0021044258028268814, -0.007860861718654633, 0.017052358016371727, 0.016820942983031273, -0.00909748300909996, 0.0036068123299628496, -0.010254556313157082, -0.02026323415338993, 0.00040045561036095023, 0.001613573869690299, 0.012445761822164059, 0.024081572890281677, -0.009748336859047413, -0.012322823517024517, 0.01865779608488083, 0.0039376625791192055, -0.015417992137372494, -0.01026901975274086, 0.002303297631442547, 0.024255134165287018, 0.016719698905944824, -0.031848423182964325, -0.039427250623703, 0.015808504074811935, -0.018151575699448586, 0.027798669412732124, -0.0006508533260785043, 0.010471506975591183, 0.002990309614688158, -0.018238356336951256, -0.026193231344223022, -0.012756725773215294, 0.005890222731977701, -0.005846832413226366, -0.016907723620533943, 0.002373806666582823, 0.0026775384321808815, 0.008453861810266972, -0.008996239863336086, 0.007163002621382475, -0.007079837843775749, -0.0050585768185555935, -0.03453861549496651, -0.016444893553853035, -0.010109921917319298, -0.008309227414429188, 0.018238356336951256, -0.02000289224088192, -0.005550332833081484, -0.02205669693648815, -0.00691712461411953, -0.0053840032778680325, 0.00919149536639452, 0.014210297726094723, -0.006110789719969034, 0.010739079676568508, -0.004809082951396704, 0.012662713415920734, 0.012713335454463959, -0.0191784780472517, 0.012778420932590961, -0.02701764553785324, 0.003579693380743265, -0.02431298792362213, -0.01738501526415348, -0.013342493213713169, -0.02603413350880146, -0.011686433106660843, -0.011151287704706192, 0.011245299130678177, 0.0040895286947488785, -0.015186578035354614, -0.0045993635430932045, -0.002661267062649131, -0.008605727925896645, 0.007680069655179977, 0.0005857680225744843, 0.0073691061697900295, 0.023647671565413475, -0.001072100130841136, -0.025918425992131233, -0.009813422337174416, -0.022100087255239487, 1.831937515817117e-05, 0.022664159536361694, -0.011440555565059185, -0.001768151530995965, -0.007300404831767082, -0.0016208055894821882, 0.018802430480718613, 0.006439832039177418, 0.012315591797232628, -0.009661556221544743, -8.469002932542935e-05, -0.01333526149392128, -0.022201331332325935, -0.01936650276184082, -0.004903095308691263, 0.0022707548923790455, 0.01684986986219883, -0.0197136253118515, 0.00950245838612318, 0.0008081428823061287, 0.024746891111135483, 0.013566676527261734, 0.027003182098269463, 0.012677176855504513, 0.0015132339904084802, -0.0013432889245450497, 0.0163002610206604, -0.013617298565804958, 0.0008940193802118301, 0.03864622488617897, 0.027682961896061897, 0.0016108619747683406, 0.005170668009668589, 0.007018368691205978, 0.02134799025952816, -0.012460225261747837, -0.0028257882222533226, 0.01748625934123993, -0.017818918451666832, -0.0050404975190758705, 0.006114405579864979, -0.001029613777063787, 0.006718252785503864, 0.013682383112609386, -0.010420884937047958, 0.014564651064574718, -0.0050947354175150394, -0.012641018256545067, 0.04570436850190163, 0.015924211591482162, 0.006074631121009588, -0.0221579410135746, -0.002619684673845768, -0.02451547607779503, 0.008215215057134628, 0.0117153599858284, -0.003548958571627736, -0.004881400149315596, -0.010695690289139748, -0.007860861718654633, 0.02010413631796837, -0.002196629997342825, 0.011064507067203522, -0.0037785652093589306, 0.024992767721414566, -0.007578825578093529, 0.007249783258885145, -0.011209140531718731, 0.021116575226187706, 0.00910471472889185, 0.0060999421402812, 0.019438819959759712, -0.011744286864995956, -0.000982607714831829, 0.021102111786603928, -0.019858257845044136, -0.0022255568765103817, -0.01619901694357395, 0.001679563196375966, 0.00991466548293829, -0.0028800261206924915, 0.0033916691318154335, 0.011404396966099739, -0.006367515306919813, 0.007803008425980806, -0.018672259524464607, -0.013704078271985054, 0.01302429847419262, 0.019337575882673264, 0.012062481604516506, -0.007947642356157303, -0.01131038460880518, 0.0054997107945382595, -0.01674862578511238, 0.008142898790538311, 0.0064506796188652515, 9.943592885974795e-06, 0.010551055893301964, 0.01302429847419262, -0.01765982061624527, -0.012452993541955948, -0.009307202883064747, 0.0009012511000037193, -0.004939253907650709, -0.0022617154754698277, -0.033207982778549194, -0.0010115345939993858, 0.0078102401457726955, 0.005083887837827206, -0.008996239863336086, -0.015750650316476822], "3a76b360-9b3b-44fc-b257-8c654892e217": [-0.0073980409651994705, -0.006163223646581173, -0.004874088801443577, 0.004656818695366383, -0.04910300299525261, -0.04762556776404381, 0.025608882308006287, 0.027593281120061874, -0.014904716983437538, 0.02924453280866146, 0.01200778502970934, 0.039716944098472595, 0.004102780483663082, -0.0067933062091469765, -0.035168759524822235, 0.023827267810702324, -0.035574328154325485, 0.01900387555360794, 0.011088008992373943, -0.00034174747997894883, 0.06732470542192459, -0.0023555681109428406, -0.05217375233769417, 0.019467385485768318, -0.01234093215316534, -0.01565791852772236, 0.0006468306528404355, -0.007311133202165365, -0.038963738828897476, -0.03267739713191986, -0.0024786877911537886, 0.022306378930807114, 0.010284109972417355, -0.03719661012291908, -0.01124733965843916, -0.04525008425116539, 0.004577152896672487, -0.012869621627032757, -0.004493866115808487, 0.0076841129921376705, -0.005739547312259674, 0.03316987678408623, 0.056461211293935776, 0.009559877216815948, -0.01743953302502632, 0.03540051355957985, 0.01009580958634615, 0.004301944747567177, -0.014615023508667946, -0.007430631667375565, -0.008270741440355778, 0.0251019187271595, -0.023885207250714302, -0.005797485820949078, 0.027911942452192307, -0.03082336112856865, 0.010964889079332352, 0.09316534548997879, 0.03221388906240463, -0.04139716178178787, -0.009639542549848557, 0.0037406638730317354, 0.007669628597795963, -0.0029584921430796385, -0.02051028050482273, -0.022639526054263115, -0.013369343243539333, -0.0010990237351506948, -0.035168759524822235, 0.0021926157642155886, 0.0034853718243539333, 0.022639526054263115, -0.021755961701273918, 0.005768516566604376, -0.026448993012309074, 0.0010990237351506948, 0.03496597334742546, 0.02056821994483471, 0.028056789189577103, 0.0027086318004876375, -0.04223727434873581, -0.003947070334106684, 0.022364318370819092, 0.05350634083151817, 0.07798542082309723, 0.008784946985542774, -0.021900808438658714, -0.039745911955833435, -0.05585285648703575, -0.020611673593521118, 0.0004843308706767857, 0.018830060958862305, -0.012884106487035751, -0.025797182694077492, 0.007169907446950674, -0.02733255736529827, 0.017772680148482323, 0.017222262918949127, 0.005964059382677078, -0.031750377267599106, 0.011471851728856564, 0.04478657245635986, -0.06251580268144608, 0.0277960654348135, 0.009081883355975151, -0.02360999956727028, -0.0042222789488732815, 0.015889674425125122, -0.045510806143283844, 0.01974259316921234, -0.008480769582092762, -0.011348732747137547, -0.015252348966896534, 0.005728683900088072, -0.0403832383453846, -0.0228133425116539, -0.013731459155678749, -0.026492446660995483, -0.0020187997724860907, -0.0318952240049839, 0.03377823159098625, 0.006496370770037174, 0.022306378930807114, 0.03047572821378708, -0.022552618756890297, 0.009139821864664555, 0.027854004874825478, 0.03227182477712631, 0.008835643529891968, 0.0010003469651564956, 0.005677987355738878, -0.04154200851917267, 0.003043589647859335, 0.007713082246482372, 0.001978966873139143, 0.01635318249464035, -0.0021147606894373894, 0.056548118591308594, -0.0013932434376329184, 0.030620574951171875, -0.03925343230366707, -0.04107850044965744, -0.0013036195887252688, -0.004367125686258078, 0.02013367973268032, 0.023001642897725105, -0.016584938392043114, 0.04232418164610863, 0.008067956194281578, 0.02736152522265911, -0.03907961770892143, -0.016657361760735512, 0.006898320280015469, 0.011877422221004963, 0.002295818878337741, -0.02783951908349991, 0.00948745384812355, 0.05446232855319977, 0.021524207666516304, -0.007245952263474464, -0.004428685177117586, -0.06280549615621567, -0.010740377008914948, 0.010935919359326363, 0.013963214121758938, 0.021379360929131508, 0.06153084337711334, 0.02326236665248871, -0.05321664735674858, 0.02135039120912552, 0.017425047233700752, 0.0037261792458593845, 0.021017244085669518, -0.010255140252411366, -0.0043381559662520885, -0.002768381033092737, 0.04070189967751503, 0.04832082986831665, 0.02284231223165989, -0.025681305676698685, -0.01830861158668995, -0.00285347830504179, 0.00294581800699234, -0.002592754550278187, -0.024479078128933907, 0.036008868366479874, 0.022523649036884308, 0.00628996454179287, -0.0023917797952890396, 0.01754092611372471, -0.012847894802689552, -0.01982950232923031, 0.011797756887972355, 0.03887683153152466, -0.017280202358961105, -0.02734704129397869, 0.01939496211707592, 0.009378818795084953, 0.019568778574466705, 0.026840077713131905, -0.025608882308006287, -0.03873198479413986, -0.05556316301226616, 0.04603225365281105, -0.034792158752679825, 0.06848347932100296, -0.017294686287641525, -0.003657377092167735, 0.029809433966875076, 0.00948745384812355, 0.03316987678408623, -0.020727550610899925, 0.007807232905179262, -0.004595258738845587, -0.00871976651251316, -0.0036609983071684837, -0.011674636974930763, 0.03264842927455902, 0.011631183326244354, -0.03114202246069908, -0.021871838718652725, -0.007180770859122276, -0.008625616319477558, -0.030910268425941467, -0.05055147036910057, -0.029360409826040268, -0.006315312348306179, 0.030186034739017487, -0.018018919974565506, -0.026811107993125916, 0.04044117406010628, -0.0026144813746213913, -0.020684096962213516, -0.009835084900259972, 0.004178824834525585, 0.013970456086099148, 0.029027262702584267, 0.003769633127376437, -0.001728201168589294, -0.027202194556593895, 0.020307496190071106, 0.027173224836587906, -0.024435624480247498, 0.0255074892193079, 0.014767112210392952, 0.03227182477712631, -0.03525566682219505, 0.04565565288066864, 0.022972673177719116, -0.006083557847887278, -0.01197881530970335, 0.004095538053661585, -0.010081324726343155, 0.008118652738630772, -0.0015380900586023927, 0.049218881875276566, 0.026898017153143883, -0.028375452384352684, 0.014187726192176342, -0.013818367384374142, 0.02204565517604351, -0.003012809669598937, -0.0235520601272583, -0.02287128008902073, 0.03907961770892143, -0.025956513360142708, 0.019554292783141136, -0.03687794879078865, -0.0005354798631742597, 0.046206071972846985, 0.012029511854052544, -0.01670081540942192, 0.031084084883332253, -0.015527557581663132, 0.013709732331335545, -0.02620275318622589, -0.006210298743098974, -0.010291351936757565, -0.0031232552137225866, 0.0060111344791948795, 0.02097379043698311, 0.01977156288921833, 0.008879098109900951, 0.009147063829004765, -0.00266879890114069, 0.016584938392043114, -0.01977156288921833, 0.010921435430645943, -0.030272943899035454, -0.006764336954802275, -0.020771004259586334, -0.033285751938819885, 0.0021057077683508396, 0.0269849244505167, 0.01791752688586712, -0.0042222789488732815, 0.01499162521213293, -0.032069042325019836, 0.007445116061717272, 0.017033962532877922, 0.0050442833453416824, -0.025579912588000298, -0.017352623865008354, -0.01026238314807415, 0.013666278682649136, -0.01523786410689354, 0.01349246222525835, -0.003947070334106684, -0.01443396508693695, 0.029143139719963074, 0.049218881875276566, 0.004037599544972181, 0.0027502751909196377, 0.005381051916629076, -0.002726737642660737, 0.009820600971579552, 0.016642875969409943, 0.0216690544039011, -0.023392729461193085, -0.023711390793323517, 0.02282782644033432, -0.00550417136400938, -0.07190185785293579, 0.03487906605005264, 0.01862727478146553, -0.03247461095452309, 0.052318599075078964, -0.022364318370819092, -0.02358102984726429, -0.04617710039019585, -0.014173241332173347, -0.020799973979592323, -0.02201668545603752, -0.004229521378874779, -0.0008763220394030213, -0.03583505377173424, -0.048900216817855835, -0.025985483080148697, 0.0008269836544059217, -0.021205544471740723, 0.0022016686853021383, 0.0006441147997975349, -0.0033586309291422367, -0.0010782020399346948, 0.020336465910077095, 0.00782171729952097, -0.005348461214452982, 0.00818383414298296, -0.034357618540525436, 0.009219487197697163, 0.0008355839527212083, -0.011558759957551956, 0.009769904427230358, -0.00037049048114567995, 0.02276988886296749, 0.013832852244377136, -0.019641201943159103, -0.01826515793800354, 0.013550400733947754, -0.010646226815879345, 0.010523106902837753, -0.039021678268909454, -0.03722558170557022, 0.008263499476015568, -0.023711390793323517, -0.013210011646151543, 0.005906120873987675, 0.005949574988335371, -0.013057922944426537, 0.020799973979592323, -0.031026145443320274, 0.007347344886511564, -0.0012447756016626954, -0.0025239523965865374, -0.026014452800154686, -0.0242907777428627, 0.02773812785744667, -0.00928466860204935, -0.006228404585272074, 0.013470735400915146, 0.017338139936327934, 0.039774879813194275, -0.0035197727847844362, -0.029925310984253883, 0.023088550195097923, 0.009357091039419174, 0.01564343459904194, -0.008321437984704971, 0.002132866531610489, -0.013782155700027943, -0.03766012191772461, 0.022596072405576706, -0.03456040471792221, 0.027158740907907486, -0.019655685871839523, 0.01103731244802475, -0.005583837162703276, -0.015093017369508743, -0.004392473492771387, -0.03948518633842468, 0.03125790134072304, -0.0007346439524553716, -0.004023114684969187, 0.009813358075916767, 0.024116961285471916, -0.03131583705544472, -0.007180770859122276, -0.0201916191726923, 0.014173241332173347, 0.01787407323718071, -0.0017046636203303933, 0.0013633688213303685, 0.022538132965564728, 0.04003560543060303, 0.03412586450576782, 0.014846778474748135, 0.012094692327082157, 0.03960106521844864, -0.03847126290202141, -0.02439217083156109, 0.019988832995295525, 0.061125271022319794, -0.008133137598633766, 0.00950193777680397, -0.006626732647418976, 0.019641201943159103, 0.022219471633434296, 0.0341838002204895, -0.02097379043698311, 0.0011334248119965196, -0.016628392040729523, 0.01826515793800354, -0.006738988682627678, -0.00985681265592575, 0.02020610310137272, -0.00987129658460617, -0.0047582113184034824, 0.0028969324193894863, -0.008002775721251965, -0.006344282068312168, 0.004240384791046381, 0.04264284297823906, -0.023812783882021904, -0.002194426255300641, -0.034473493695259094, -0.031460683792829514, -0.04455481842160225, -0.002542058238759637, 0.038934770971536636, 0.03870301693677902, -0.003845677711069584, 0.002942197024822235, -0.07097484171390533, 0.011689121834933758, -0.016469059512019157, -0.00047844648361206055, -0.009349849075078964, 0.001600555144250393, 0.018757637590169907, -0.026926986873149872, -0.05924226716160774, -0.0010963078821077943, 0.043193262070417404, -0.013919759541749954, -0.00731475418433547, -0.03412586450576782, -0.006036482751369476, 0.020321980118751526, 0.013057922944426537, -0.024464594200253487, -0.007025061175227165, 0.019568778574466705, -0.01942393183708191, -0.0047908020205795765, -0.009364333935081959, -0.028607206419110298, -0.006985228043049574, 0.008111410774290562, 0.007792748045176268, -0.02048131264746189, -0.02327685058116913, -0.016874631866812706, -0.04910300299525261, -0.008495254442095757, 0.019090784713625908, -0.0042584906332194805, -0.030128097161650658, -0.02972252666950226, -0.004135370720177889, -0.017019476741552353, 0.05121776461601257, 0.012652352452278137, 0.01980053260922432, -0.011841210536658764, -0.015498587861657143, -0.0035976278595626354, 0.014477419666945934, -0.030504697933793068, -0.011066281236708164, -0.011645668186247349, 0.021437298506498337, -0.01781613379716873, 0.015556526370346546, 0.015136471949517727, 0.014919201843440533, -0.0028733948711305857, -0.019481869414448738, 0.0374283641576767, -0.0013932434376329184, 0.006550688296556473, -0.006387735716998577, 0.022262925282120705, -0.010385502129793167, 0.017743710428476334, 0.003063505981117487, -0.00407381122931838, -0.04536595940589905, 0.0016068922122940421, 0.02129245363175869, -0.01519441045820713, 0.005717820022255182, -0.00513481255620718, -0.012456809170544147, 0.02969355694949627, -0.01713535562157631, -0.017338139936327934, -0.011138704605400562, -0.026057906448841095, 0.03319884464144707, -0.026926986873149872, -0.015353741124272346, 0.0025963755324482918, -0.00952366553246975, 0.018105827271938324, 0.00985681265592575, -0.02094482071697712, 0.00029603028087876737, 0.008430073037743568, 0.02507294900715351, 0.012616140767931938, -0.029606647789478302, 0.04377264901995659, 0.01712086983025074, 0.00038610675255768, 0.00814762245863676, 0.03244564309716225, -0.04904506355524063, 0.02695595473051071, 0.016642875969409943, 0.023711390793323517, -0.0024135068524628878, 0.008488011546432972, -0.009422272443771362, 0.00495013315230608, 0.010849012061953545, -0.048147015273571014, 0.03505288064479828, -0.023421697318553925, -0.0186417605727911, -0.017946496605873108, -0.006105285137891769, 0.01234093215316534, 0.0007477706531062722, 0.001957239815965295, -0.035168759524822235, -0.008328680880367756, -0.03238770365715027, 0.03835538402199745, -0.018902484327554703, 0.029012776911258698, 0.03980385139584541, 0.0007287595653906465, 0.05750410631299019, 0.01385457906872034, -0.00125835498329252, -0.00019520345085766166, 0.016874631866812706, 0.012884106487035751, -0.014013910666108131, 0.000982241122983396, 0.03319884464144707, -0.03502391278743744, -0.004573531914502382, -0.014788839966058731, 0.022567102685570717, 0.03994869813323021, -0.003903616452589631, -0.02811472862958908, -0.021553177386522293, 0.021002760156989098, -0.026709716767072678, 0.051188793033361435, 0.007278542499989271, 0.00034038955345749855, -0.033285751938819885, 0.005315870977938175, -0.00025619746884331107, 0.014890232123434544, 0.014071849174797535, -0.005815591663122177, 0.01830861158668995, 0.014643993228673935, 0.011167674325406551, -0.02969355694949627, -0.011855695396661758, 0.017960980534553528, 0.0029729767702519894, 0.0051565393805503845, -0.00871976651251316, 0.02098827436566353, 0.01755541004240513, -0.007915867492556572, 0.011739818379282951, 0.0036972099915146828, 0.03415483236312866, 0.00047799383173696697, 0.04498935863375664, 0.011529791168868542, 0.0013570317532867193, -0.019597748294472694, 0.01181948371231556, -0.05139157921075821, 0.0678461566567421, -0.031460683792829514, 0.030301911756396294, 0.0023917797952890396, -0.020293010398745537, -0.01446293480694294, 0.000910270435269922, -0.004189688246697187, 0.00023028349096421152, -0.007930352352559566, 0.005268795881420374, -0.04145510122179985, 0.051565397530794144, -0.012782714329659939, -0.009038428775966167, 0.013202768750488758, -0.010754860937595367, -0.02169802412390709, -0.0318952240049839, 0.013014468364417553, -0.01197157334536314, 0.02852029912173748, -0.023494120687246323, 0.026912501081824303, -0.030910268425941467, -0.004693030379712582, 0.029606647789478302, -0.005840939935296774, 0.0018956800922751427, -0.01027686707675457, 0.010588287375867367, 0.02132142148911953, 0.003318798029795289, -0.026883531361818314, 0.011761545203626156, 0.008545950055122375, -0.004196930676698685, -0.002884258283302188, 0.01972810924053192, -0.015426164492964745, -0.0005852708709426224, 0.010718649253249168, 0.013383827172219753, 0.00281183491460979, 0.0320400707423687, 0.005819212645292282, 0.03114202246069908, 0.025391612201929092, -0.011891907081007957, -0.0224801953881979, 0.017280202358961105, -0.014376026578247547, 0.010986615903675556, -0.02513088844716549, 0.011218370869755745, -0.00619581388309598, 0.00856043491512537, 0.01083452720195055, -0.025232281535863876, -0.01157324481755495, -0.03699382767081261, 0.007068514823913574, 0.03079439140856266, -0.006977985613048077, -0.00040081774932332337, 0.032184917479753494, -0.01406460627913475, -0.01482505165040493, 0.019322538748383522, 0.001560722361318767, 0.008712523616850376, 0.007923110388219357, 0.001114413607865572, 0.012971014715731144, -0.004884952213615179, -0.0002731716667767614, 0.0185693372040987, -0.02892586961388588, -0.051594365388154984, -0.029751494526863098, 0.009009459987282753, -0.027506371960043907, 0.01745401695370674, 0.025348158553242683, -0.021524207666516304, -0.019090784713625908, 0.003729800460860133, -0.014245664700865746, 0.005145675968378782, -0.0034382964950054884, 0.0045083509758114815, 0.01745401695370674, 0.01868521422147751, 0.004714757204055786, 0.004638712853193283, 0.010812800377607346, 0.011594971641898155, 0.015889674425125122, 0.007293027359992266, 0.017946496605873108, -0.006746231112629175, -0.042063456028699875, -0.046206071972846985, 0.0236244834959507, -0.015614465810358524, 0.007256815675646067, -0.005964059382677078, -0.001335304812528193, 0.02704286389052868, -0.004454033449292183, -0.030186034739017487, -0.006807791069149971, -0.021379360929131508, -0.01982950232923031, -0.016092458739876747, 0.006590520963072777, 0.01441948115825653, -0.014506388455629349, -0.0009596088202670217, -0.03766012191772461, 0.03684898093342781, -0.010168232955038548, 0.012623382732272148, 0.01629524491727352, 0.026405537500977516, -0.01706293225288391, 0.007064893841743469, 0.01597658172249794, 0.03760218247771263, -0.03380719944834709, 0.051941998302936554, 0.0063334181904792786, -0.02391417697072029, 0.00990026630461216, 0.028375452384352684, 0.029751494526863098, -0.028621692210435867, 0.03302503004670143, -0.01026962511241436, 0.00030259363120421767, 0.008415588177740574, 0.004207794088870287, 0.021741477772593498, 0.008915308862924576, -0.02468186430633068, 0.028303029015660286, 0.03154759481549263, -0.014977140352129936, 0.038181569427251816, 0.002951249945908785, 0.007915867492556572, 0.02087239734828472, -0.02168353833258152, -0.004928406327962875, 0.0018350256141275167, -0.00589163601398468, -0.0266517773270607, -0.02427629381418228, -0.01255095936357975, -0.05205787345767021, -0.005569352302700281, -0.0366172231733799, 0.021147606894373894, -0.04666958004236221, 0.03227182477712631, -0.00855319295078516, -0.008524223230779171, 0.017685772851109505, -0.009813358075916767, 0.007973806001245975, -0.029548710212111473, 0.012862379662692547, 0.002346515189856291, -0.02356654405593872, 0.004066568799316883, -0.0282016359269619, -0.02056821994483471, 0.024913618341088295, 0.004750968888401985, -0.04490245133638382, 0.041628919541835785, 0.05339046195149422, 0.002446097321808338, -0.012232297100126743, 0.0002322072396054864, -0.0031630881130695343, 0.026811107993125916, -0.005167403258383274, -0.01981501653790474, -0.026159299537539482, -0.0042258999310433865, 0.02162560075521469, -0.0001534468901809305, -0.009248456917703152, -0.00741614680737257, 0.011920876801013947, 0.008821158669888973, 0.013028953224420547, -0.0014955413062125444, -0.005142054986208677, 0.020669613033533096, -0.003579522017389536, -0.023088550195097923, -0.0021980474703013897, 0.008220045827329159, -0.00986405462026596, 0.0067860642448067665, 0.019322538748383522, 0.018743151798844337, -0.026941470801830292, -0.0027285481337457895, 0.05162333324551582, -0.01500610914081335, 0.030736451968550682, -0.04417821764945984, -0.008516981266438961, -0.015440649352967739, 0.0224077720195055, 0.007267679087817669, -0.0418606735765934, -0.022364318370819092, -0.014303603209555149, 0.002116571180522442, 0.004960996564477682, 0.012167115695774555, 0.011877422221004963, 0.028781022876501083, 0.03383617103099823, 0.024102477356791496, -0.02931695617735386, -0.004555426072329283, 0.016483545303344727, -0.03615371510386467, 0.014347057789564133, 0.00618857191875577, -0.004110022913664579, -0.010211686603724957, -0.003407516749575734, 0.033256784081459045, 0.010892465710639954, -0.027969881892204285, -0.015295802615582943, 0.0012601655907928944, -0.023103035986423492, -0.004649576265364885, -0.009711965918540955, 0.017323656007647514, 0.01384733710438013, 0.0029584921430796385, 0.0022849554661661386, 0.008589404635131359, 0.015064048580825329, -0.038760956376791, -0.00782171729952097, -0.025348158553242683, -0.0022831447422504425, -0.05785173922777176, 0.005457096267491579, 0.026926986873149872, 0.022958189249038696, 0.0010275057284161448, 0.008082441054284573, -0.03198213502764702, -0.006764336954802275, 0.017700256779789925, -0.0020495797507464886, -0.018424490466713905, -0.0014692879049107432, -0.01005959790199995, 0.00303815770894289, 0.004215036518871784, -0.015121987089514732, 0.010045113041996956, -0.023885207250714302, 0.007097484078258276, -0.026869047433137894, 0.004254869185388088, 0.00041666036122478545, 0.003197489073500037, -0.044149249792099, -0.0351397879421711, 0.011276309378445148, 0.031779348850250244, -0.04837876930832863, 0.036269593983888626, 0.014774355106055737, 0.000526879564858973, 0.024174900725483894, 0.012891349382698536, 0.020814459770917892, -0.0021093289833515882, -0.003298881696537137, 0.036008868366479874, 0.03009912744164467, 0.018540367484092712, 0.010653468780219555, -0.00638049328699708, -0.008524223230779171, 0.014383269473910332, 0.015281317755579948, 0.023059582337737083, -0.011920876801013947, 0.002587322611361742, -0.02278437279164791, 0.00213829823769629, -0.007481327746063471, -0.00892255175858736, 0.044323064386844635, 0.0022903871722519398, 0.012442324310541153, 0.011674636974930763, -0.021176574751734734, 0.05530243739485741, -0.004055705387145281, -0.029838403686881065, -0.005004450678825378, -0.03699382767081261, -0.02284231223165989, -0.03737042844295502, 0.003385789692401886, 0.026796624064445496, -0.025000525638461113, -1.8063392417388968e-05, -0.012159873731434345, -0.0062935855239629745, 0.024479078128933907, 0.01181948371231556, 0.03357544541358948, 0.0070757572539150715, 0.031431715935468674, 0.015889674425125122, 0.013514189049601555, 0.005859045777469873, 0.0038384352810680866, -0.011088008992373943, 0.019916409626603127, 0.020756520330905914, -0.007669628597795963, -0.007915867492556572, -0.007245952263474464, 0.008408346213400364, 0.00493202731013298, -0.01406460627913475, 0.006952637806534767, -0.03473421931266785, 0.01257992908358574, -0.0016983265522867441, 0.0015118365408852696, -0.0053665670566260815, -0.018482428044080734, -0.008053472265601158, 0.010052355006337166, 0.009248456917703152, -0.012268508784472942, -0.01939496211707592, -0.017729226499795914, -0.012427839450538158, -0.011290794238448143, 0.016440091654658318, -0.008698039688169956, 0.010689680464565754, -0.0034455389250069857, 0.009371575899422169, -0.01600555144250393, 0.021799415349960327, 0.011384944431483746, -0.01635318249464035, 0.011355974711477757, 0.001114413607865572, -0.025029495358467102, -0.029954280704259872, -0.012217812240123749, 0.0056091854348778725, 0.0031069598626345396, -0.01675875298678875, -0.03722558170557022, 0.008495254442095757, -0.026825593784451485, 0.00617770804092288, 0.0038348142988979816, -0.019148722290992737, 0.06500716507434845, -0.002357378602027893, 0.04264284297823906, -0.02010471001267433, 5.767696166003589e-06, 0.012637867592275143, 0.009675754234194756, 0.0005744073423556983, -0.029070716351270676, -0.0053629460744559765, -0.011124220676720142, 0.03461834043264389, 0.0205247662961483, -0.01426014956086874, -0.04385955631732941, -0.00929191056638956, 0.03542948141694069, 0.0006029240321367979, -0.011667395010590553, -0.014231179840862751, -0.019872955977916718, -0.020090226083993912, -0.0064710224978625774, 0.003226458327844739, 0.01042895670980215, 0.027187710627913475, -0.0020640643779188395, -0.016874631866812706, -0.011319763027131557, 0.002342893974855542, -0.0008975963573902845, -0.01389079075306654, -0.019959863275289536, 0.013782155700027943, -0.06390632688999176, -0.02781055122613907, 0.009443999268114567, 0.020264042541384697, -0.00815486442297697, -0.006101663690060377, 0.010443441569805145, 0.008538708090782166, -0.03424173966050148, -0.01181224174797535, 0.013767670840024948, -0.02468186430633068, 0.026811107993125916, 0.029809433966875076, -0.020655127242207527, 0.0069997129030525684, 0.009270183742046356, 0.002199857961386442, 0.007383556105196476, -0.012268508784472942, -0.017033962532877922, 0.010218928568065166, 0.04368574172258377, -0.02352309040725231, -0.0026362084317952394, 0.05133363977074623, -0.015121987089514732, 0.02048131264746189, -0.025362642481923103, -0.022161532193422318, 0.0062972065061330795, -0.0004938364145345986, 0.00016940264322329313, -0.013934244401752949, -0.0012185222003608942, -0.002219774527475238, 0.02242225594818592, 0.011348732747137547, 0.020235072821378708, 0.01005959790199995, 0.01707741618156433, 0.015875188633799553, -0.015150955878198147, -0.02162560075521469, 0.0013570317532867193, -0.02818715199828148, -0.007524781860411167, -0.01861279085278511, 0.003780496772378683, 0.027564311400055885, 0.030997175723314285, 0.016918085515499115, 0.007162665016949177, -0.020032286643981934, 0.021364877000451088, 0.018728667870163918, 0.002107518259435892, -0.02285679616034031, 0.0005332166329026222, -0.0005938711110502481, 0.08522775024175644, 0.025695789605379105, 0.022943703457713127, 0.01943841576576233, -0.024450108408927917, 0.011269066482782364, 0.011877422221004963, 0.025652335956692696, 0.02278437279164791, -0.014499146491289139, 0.0007853402639739215, -0.01557101123034954, 0.003391221398487687, 0.04212139546871185, 0.015093017369508743, 0.02049579657614231, 0.0335175059735775, -0.014586054719984531, 0.0007808138034306467, -0.019119754433631897, -0.01667184568941593, 0.004019493702799082, 0.007093863096088171, -0.010747618973255157, 0.006967122200876474, -0.023291336372494698, 0.00953090749680996, -0.006130632944405079, -0.0076479013077914715, -2.012151526287198e-06, 0.0318952240049839, 0.013333131559193134, 0.02933144010603428, 0.010704165324568748, -0.004649576265364885, 0.03905064985156059, -0.007597205229103565, -0.0029367650859057903, 0.01181224174797535, 0.005395536310970783, -0.009052913635969162, -0.01565791852772236, -0.0076841129921376705, -0.012000542134046555, -0.0037623909302055836, 0.004761832766234875, 0.006941773928701878, 0.03047572821378708, -0.015904158353805542, -0.018728667870163918, -0.010588287375867367, -0.01868521422147751, -0.011964330449700356, -0.009205002337694168, -0.031026145443320274, 0.003125065704807639, -0.01275374460965395, -0.01785958744585514, -0.021379360929131508, -0.001038369140587747, 0.0009460294968448579, 0.036298561841249466, 0.009639542549848557, -0.007195255719125271, -0.004743726924061775, -0.013130346313118935, -0.0067136408761143684, -0.007959322072565556, -0.005395536310970783, 0.023682421073317528, -0.0022016686853021383, -0.002496793633326888, -0.009921993128955364, 0.016266275197267532, -0.006416704971343279, 0.006547067314386368, 0.03505288064479828, -0.012869621627032757, 0.01348522026091814, -0.037891875952482224, -0.00195361883379519, 0.007995533756911755, 0.006478264927864075, -0.0031467927619814873, -0.0019155965419486165, -0.0025565428659319878, -0.0023972115013748407, 0.010414471849799156, 0.004881331231445074, -0.010610015131533146, 0.008169349282979965, -0.006072694435715675, 0.0197860486805439, 0.007553751114755869, -0.007119211368262768, 0.0001958824141183868, -0.0182361900806427, 0.010247898288071156, 0.010218928568065166, -0.012000542134046555, -0.0231464896351099, 0.001989830518141389, -0.001080012647435069, -0.02782503515481949, 0.02850581519305706, 0.009458484128117561, -0.0472489669919014, 0.0012891348451375961, -0.009791631251573563, -0.014607781544327736, 0.005844560917466879, 0.017584379762411118, -0.007126453798264265, -0.009979931637644768, 0.00016928948753047734, -0.015049563720822334, -0.001729106530547142, -0.00023028349096421152, 0.007430631667375565, -0.014318088069558144, -0.01678772270679474, 0.022740919142961502, 0.003856541123241186, -0.003344146301969886, 0.00132987299002707, 0.012674079276621342, 0.0036809146404266357, 0.00021353560441639274, -0.011906391941010952, -0.005352082662284374, 0.02358102984726429, 0.004033978097140789, -0.019148722290992737, 0.017048446461558342, 0.004913921467959881, -0.0024008327163755894, 0.04635091871023178, 0.012471294030547142, -0.029751494526863098, -0.014115302823483944, -0.01519441045820713, -0.005945953540503979, 0.006152360234409571, 0.01406460627913475, -0.007064893841743469, 0.007347344886511564, -0.02925901673734188, 0.014781597070395947, 0.015860704705119133, -0.023856237530708313, 0.0022523649968206882, 0.012724775820970535, -0.004417821764945984, -0.017193293198943138, -0.001743591157719493, -0.007481327746063471, -0.001405917457304895, -0.026926986873149872, 0.009950962848961353, -0.005641775671392679, 0.015469619072973728, -0.005221720784902573, -0.013072406873106956, -0.019988832995295525, -0.015904158353805542, 0.0012972825206816196, 0.014144272543489933, -0.04892918840050697, -0.021755961701273918, 2.028418384725228e-05, -0.0011017395881935954, 0.008625616319477558, -0.004678545519709587, -0.00030168835655786097, -0.005913363303989172, -0.023711390793323517, 0.045394930988550186, -0.0440044030547142, 0.03044675849378109, 0.004776317160576582, -0.028723083436489105, -0.0426718145608902, -0.013535916805267334, 0.009016701951622963, 0.03655928745865822, -0.0028263195417821407, -0.010385502129793167, -0.008538708090782166, 0.002533005317673087, 0.019901925697922707, 0.012080207467079163, -0.012065723538398743, -0.010704165324568748, 0.018120311200618744, 0.013412796892225742, 0.020394403487443924, -0.0013968645362183452, -0.005500550381839275, 0.0042186579667031765, -0.021104151383042336, -0.004910300485789776, 0.007264058105647564, 0.022755403071641922, -0.03490803390741348, 0.031402748078107834, 0.0014222126919776201, -0.01671529933810234, 0.021987715736031532, -0.018830060958862305, -0.014557084999978542, -0.014071849174797535, -0.01043619867414236, -0.008010017685592175, -0.005163781810551882, 0.024102477356791496, 0.016063489019870758, -0.0045119719579815865, -0.019177692010998726, 0.015093017369508743, -0.007952079176902771, 0.0076479013077914715, -0.007481327746063471, -0.0289403535425663, 0.029751494526863098, -0.00970472302287817, -0.009726450778543949, 0.01593312807381153, -0.0003657377092167735, 0.027593281120061874, -0.011363217607140541, 0.02695595473051071, 0.016889115795493126, 0.013463493436574936, 4.3567146349232644e-05, 0.014028394594788551, -0.01275374460965395, 1.0410850336484145e-05, 0.0031015281565487385, 0.02127796784043312, 0.006127011962234974, 0.023349273949861526, 0.012637867592275143, -0.05017486959695816, -0.001978966873139143, -0.011377701535820961, -0.0002652503608260304, -0.004030357114970684, 0.028259575366973877, -0.011623941361904144, -0.0034654552582651377, -0.0035016669426113367, 0.004135370720177889, -0.005920605268329382, -0.01005959790199995, -0.003405706025660038, 0.016164882108569145, -0.003871025750413537, -0.006746231112629175, -0.01896042190492153, -0.025695789605379105, 0.01026238314807415, 0.004624228458851576, 0.030997175723314285, -0.011479094624519348, -0.030186034739017487, 0.00495013315230608, 0.01181948371231556, 0.012521989643573761, 0.01907629892230034, -0.010899707674980164, -0.0189749076962471, 0.033314723521471024, 0.019206661731004715, 0.014339814893901348, 0.013992182910442352, 0.00042163944453932345, -0.01235541608184576, -0.0024352336768060923, 0.030359851196408272, -0.004910300485789776, 0.0065036132000386715, 0.04568462446331978, -0.01214538887143135, -0.013818367384374142, 0.023754844442009926, 0.014803323894739151, 0.008372134529054165, 0.0235520601272583, 0.023392729461193085, -0.0205247662961483, -0.005471581127494574, 0.02581166662275791, 0.009386060759425163, -0.0045047299936413765, 0.014513631351292133, 0.013934244401752949, -0.011030069552361965, 0.009364333935081959, -0.02586960606276989, -0.013811125420033932, -0.014137029647827148, -0.015904158353805542, -0.004917542450129986, 0.03847126290202141, -0.003816708456724882, 0.021031728014349937, 0.030562635511159897, -0.018844544887542725, 0.0005458907107822597, -0.01486126333475113, 0.004124507308006287, -0.001114413607865572, -0.01565791852772236, -0.0015770175959914923, -0.01641112193465233, -0.0016050816047936678, -0.004330914001911879, 0.009950962848961353, 0.007626174483448267, -0.01443396508693695, -0.004142613150179386, -0.006174087058752775, -0.025594396516680717, -0.011652910150587559, -0.022233955562114716, 0.02164008468389511, -0.015701374039053917, 0.006706398446112871, -0.005308628547936678, -0.022567102685570717, 0.00513481255620718, -0.005022556520998478, 0.033314723521471024, -0.003068937687203288, 0.008980490267276764, -0.0047944230027496815, -0.029389379546046257, 0.017338139936327934, -0.03458937257528305, 0.022929219529032707, -0.036762069910764694, -0.011471851728856564, -0.0035759008023887873, 0.02928798645734787, -0.009002217091619968, 0.014810566790401936, -0.004345398396253586, -0.001344357617199421, -0.0007459601038135588, -0.010204444639384747, -0.038963738828897476, 0.011833968572318554, 0.009270183742046356, -0.03117099218070507, -0.013970456086099148, -0.005989407654851675, 0.00912533700466156, 0.010718649253249168, -0.007253194227814674, 0.016976023092865944, -0.004146234598010778, -0.006043725181370974, 0.009262940846383572, -0.0216690544039011, -0.011471851728856564, 0.020293010398745537, 0.00952366553246975, -0.005728683900088072, 0.0032952604815363884, -0.0025076570454984903, -0.0016892736312001944, 0.02051028050482273, -0.018801091238856316, 0.0023501364048570395, 0.040528085082769394, -0.007995533756911755, -0.0009288289584219456, 0.003443728433921933, 0.01984398625791073, -0.009958204813301563, -0.03679104149341583, -0.015614465810358524, 0.019105268642306328, -0.002536626299843192, -0.012840652838349342, -0.016121428459882736, 0.020452342927455902, -0.007850687019526958, 0.009777146391570568, 0.017251232638955116, 0.019163208082318306, -0.009255698882043362, 0.038645077496767044, -0.003615733701735735, -0.0008165728067979217, 0.01565791852772236, -0.00037049048114567995, 0.02171250805258751, -0.029519740492105484, 0.043540894985198975, 0.018916968256235123, -0.01671529933810234, -0.020061256363987923, 0.014194968156516552, -0.007553751114755869, 0.014180484227836132, 0.0070721362717449665, -0.025637852028012276, -0.009994416497647762, -0.021842870861291885, 0.00390723766759038, -0.011189401149749756, -0.018105827271938324, -0.009277425706386566, 0.011334247887134552, -0.023392729461193085, -0.006460159085690975, 0.00627910066395998, 0.007915867492556572, -0.021886324509978294, 0.042382121086120605, -0.04197654873132706, -0.014796081930398941, 0.017656803131103516, 0.014535358175635338, -0.004718378651887178, 0.01942393183708191, -0.012645109556615353, 0.006152360234409571, 0.017222262918949127, -0.011428398080170155, 0.018004434183239937, -0.01749747060239315, 0.008096925914287567, 0.024855678901076317, -0.017975464463233948, -0.0005866287974640727, -0.001319914823397994, 0.03345957025885582, 0.014151514507830143, 0.009842327795922756, -0.014361541718244553, -0.02931695617735386, -0.008096925914287567, -0.010849012061953545, -0.00570695661008358, -0.005562110338360071, 0.0197136253118515, 0.0015634382143616676, -0.004729242064058781, 0.003175762016326189, -0.00674261013045907, -0.002817266620695591, 0.0193804781883955, -0.006547067314386368, -0.005862666759639978, 0.009813358075916767, -0.023059582337737083, -0.016642875969409943, -0.006586899980902672, -0.010624499060213566, -0.019626716151833534, 0.007995533756911755, -6.965085049159825e-05, -0.002777433954179287, 0.014564326964318752, -0.012000542134046555, -0.009748177602887154, -0.022161532193422318, -0.008669069968163967, 0.009248456917703152, 0.004841498099267483, 0.005062389187514782, 0.006967122200876474, 0.00987129658460617, -0.001140667125582695, -0.01349246222525835, -0.011276309378445148, -0.006981607060879469, -0.007191634736955166, 0.0005907026352360845, 0.0037515272852033377, -0.004881331231445074, -0.007560993544757366, -0.00912533700466156, 0.07329238951206207, 0.011754303239285946, 0.008886340074241161, 0.015165440738201141, 0.001810582703910768, -0.032532550394535065, 0.0020025044213980436, 0.0022795237600803375, 0.029389379546046257, 0.0007464127265848219, -0.02468186430633068, -0.01161669846624136, 0.022581588476896286, 0.01389803271740675, -0.01972810924053192, -0.0022831447422504425, 0.005276037845760584, 0.004700272809714079, 0.003478129394352436, 0.02127796784043312, 0.007383556105196476, -0.0021763204131275415, -0.029563194140791893, 0.013564885593950748, -0.007589962799102068, 0.018772121518850327, 0.0007866981904953718, 0.007086620666086674, 0.019293569028377533, 0.03340163081884384, -0.00028245089924894273, -0.01006683986634016, -0.0028009715024381876, -0.020075740292668343, -0.008864613249897957, 0.0228133425116539, -0.0033731155563145876, 0.01935150846838951, -0.016889115795493126, 0.0019916410092264414, 0.004167961422353983, 0.0029675450641661882, 0.020046772435307503, 0.00835040770471096, 0.0008564056479372084, -0.009060155600309372, -0.006145117804408073, -0.001933702384121716, -0.002942197024822235, -0.007894140668213367, -0.021393844857811928, -0.016034521162509918, 0.005851803347468376, 0.019988832995295525, 0.028723083436489105, -0.006818654481321573, 0.007430631667375565, -0.0038746469654142857, -0.00061876664403826, 0.004899437073618174, -0.02055373415350914, -0.0008346786489710212, 0.0012311962200328708, -0.03777599707245827, -0.02010471001267433, -0.021031728014349937, -0.002082170220091939, -0.013028953224420547, 0.004254869185388088, -0.010327563621103764, -0.016164882108569145, -0.00015401269774883986, -0.003161277389153838, -0.007908625528216362, -0.006706398446112871, 0.023885207250714302, 0.006528961472213268, 0.015252348966896534, 0.020466826856136322, 0.013992182910442352, 0.017685772851109505, 0.006851245183497667, -0.013217253610491753, -0.02129245363175869, -0.012485778890550137, -0.001636766828596592, 0.0025782696902751923, -0.01749747060239315, 0.008292469196021557, -0.010602772235870361, -0.013275192119181156, -0.009654027409851551, -0.0004390663234516978, 0.010363775305449963, 0.010088566690683365, 0.0027032000944018364, -0.0012103745248168707, -0.01791752688586712, 0.007655143737792969, -0.01827964372932911, -0.007966564036905766, 0.028607206419110298, -0.009762662462890148, -0.00911809504032135, -0.0003799960541073233, -0.006351524032652378, 0.02095930464565754, -0.014187726192176342, -0.009139821864664555, 0.01352867390960455, -0.01295652985572815, -0.013601097278296947, 0.002393590286374092, 0.00021998579904902726, -0.03473421931266785, 0.0034962352365255356, -0.004490245133638382, 0.0003523846680764109, -0.012210570275783539, -0.012022268958389759, -0.009205002337694168, -0.009835084900259972, -0.02130693756043911, -0.0059713018126785755, -0.0019427553052082658, -0.008082441054284573, -0.025232281535863876, -0.008502496406435966, -0.0009894834365695715, -0.01710638590157032, 0.006405841559171677, 0.01352867390960455, -0.0020676853600889444, -0.007021439727395773, 0.00617046607658267, 0.0034238118678331375, -0.005710578057914972, -0.002891500713303685, 0.024508047848939896, -0.025724759325385094, 0.023334790021181107, -0.0027810551691800356, 0.0034745081793516874, -0.001376042841002345, -0.008705281652510166, -0.009950962848961353, -0.00953090749680996, -0.018091343343257904, -0.0065072341822087765, -0.002775623230263591, 0.036733102053403854, -0.04157098010182381, 0.00876322016119957, 0.0032825865782797337, 0.003794981399551034, 0.0017562652938067913, -0.0209303367882967, 0.02433423139154911, -0.025362642481923103, 0.0012339120730757713, 0.015527557581663132, 0.0021038970444351435, -0.019337022677063942, -0.0013579369988292456, -0.01594761200249195, 0.014368784613907337, 0.010124778375029564, 0.01197157334536314, 0.005330355372279882, 0.0040086302906274796, -0.006416704971343279, 0.004656818695366383, 0.02049579657614231, -0.0189749076962471, 0.0062175411731004715, 0.004316429141908884, 0.0029222804587334394, 0.003957933746278286, -0.014202211052179337, 0.017685772851109505, 0.001743591157719493, 0.005029798950999975, 0.010153748095035553, 0.0067136408761143684, -0.015744827687740326, -0.007495812606066465, 0.014499146491289139, -0.024986041709780693, -0.010689680464565754, -0.0012855137465521693, -0.007014197297394276, 0.022726435214281082, 0.01083452720195055, -0.024030053988099098, -0.0038999952375888824, -0.020003318786621094, 0.013905275613069534, 0.011145947501063347, 0.017193293198943138, -0.007763778790831566, 0.004649576265364885, 0.004454033449292183, 0.01500610914081335, 0.01671529933810234, 0.0010202634148299694, -0.021162090823054314, -0.0024569607339799404, -0.015078532509505749, -0.002116571180522442, -0.023334790021181107, -0.028665145859122276, -0.027564311400055885, 0.006127011962234974, 0.003579522017389536, -0.0018594684079289436, 0.017352623865008354, 0.02201668545603752, -0.000982241122983396, 0.014477419666945934, 0.03044675849378109, 0.0076841129921376705, 0.009545392356812954, 0.028433391824364662, 0.004392473492771387, -0.01977156288921833, 0.008067956194281578, 0.010443441569805145, 0.009081883355975151, 0.009965447708964348, -0.0076116896234452724, 0.023421697318553925, 0.0014502767007797956, -0.007966564036905766, 0.004707515239715576, 0.0008124989690259099, 0.03038882091641426, 0.012739259749650955, 0.00798104889690876, 0.01784510351717472, -0.013398312032222748, -0.0025148994754999876, -0.006717261858284473, 0.002326598856598139, -0.0045843953266739845, -0.01746850274503231, -0.021089667454361916, -0.003856541123241186, 0.013731459155678749, -0.0014041068498045206, -2.7017289539799094e-05, -0.006967122200876474, -0.0028299407567828894, -0.005315870977938175, 0.006746231112629175, 0.024928102269768715, -0.0037044521886855364, -0.01633869856595993, 0.002797350287437439, 0.006485507357865572, -0.018931452184915543, 0.00399052444845438, 0.0023410834837704897, -0.01898939162492752, -0.01292031817138195, 0.007003333885222673, 0.023363759741187096, -0.033720292150974274, 0.01063898392021656, 0.005105843301862478, 0.007865170948207378, -0.022668495774269104, -0.0067136408761143684, 0.01565791852772236, 0.021075183525681496, 0.008618373423814774, 0.003666430013254285, -0.003125065704807639, -0.017323656007647514, -0.0016358614666387439, 0.007387177553027868, -0.004410579334944487, 0.006746231112629175, 0.013376585207879543, -0.028042305260896683, -0.003565037390217185, -0.024986041709780693, 0.008234529756009579, 0.014361541718244553, 0.005772137548774481, 0.012022268958389759, 0.011283551342785358, -0.011428398080170155, 0.00294581800699234, 0.01121112797409296, -0.026767654344439507, -0.0006762526463717222, -0.010696922428905964, -0.011862938292324543, 0.018134796991944313, -0.008125895634293556, -0.0069997129030525684, -0.002654314273968339, 0.017019476741552353, -0.013354858383536339, 0.016845662146806717, 0.013630066998302937, 0.014021152630448341, 0.019525324925780296, -0.013738702051341534, 0.024073507636785507, 0.014021152630448341, -0.005945953540503979, -0.009610572829842567, -0.009719207882881165, -0.03319884464144707, -0.008480769582092762, 0.014390511438250542, 0.024421140551567078, -0.027260133996605873, -0.012471294030547142, -0.0022523649968206882, 0.003170330310240388, 0.0008953331271186471, 0.015064048580825329, 0.010146505199372768, -0.0014928254531696439, 0.025377128273248672, 0.010892465710639954, 0.010588287375867367, -0.01980053260922432, 0.007430631667375565, 0.004396094940602779, -0.021046213805675507, -0.011392186395823956, 0.011761545203626156, 0.020466826856136322, -0.002210721606388688, -0.003027294296771288, -0.0029838404152542353, 0.011254582554101944, -0.030128097161650658, 0.00036686932435259223, 0.00033993690158240497, 0.004855982959270477, 0.007122832350432873, -0.003001946257427335, 0.012840652838349342, -0.0024116961285471916, 0.020032286643981934, 0.002404453931376338, -0.006431189831346273, 0.014332572929561138, 0.024841194972395897, 0.020785490050911903, -0.009168790653347969, -0.011145947501063347, 0.010812800377607346, 0.018337581306695938, -0.008415588177740574, 0.010124778375029564, 0.002625345019623637, 0.00875597819685936, -0.019293569028377533, -0.015295802615582943, 0.029809433966875076, 0.006174087058752775, 0.00019271389464847744, 0.002674230607226491, -0.039398279041051865, 0.009262940846383572, -0.01602003537118435, -0.017367109656333923, -0.019612232223153114, -0.024522531777620316, -0.012232297100126743, 0.019525324925780296, 0.005692472215741873, -0.0019717246759682894, -0.031113052740693092, -0.00040511786937713623, 0.017584379762411118, 0.003903616452589631, -0.01781613379716873, -0.018004434183239937, -0.002429801970720291, 0.02589857578277588, 0.002076738281175494, 0.008299711160361767, 0.004881331231445074, -0.022320862859487534, -0.00856043491512537, 0.0028860687743872404, 0.00694539537653327, 0.007604447193443775, 0.0022487437818199396, 0.021755961701273918, -0.029070716351270676, 0.034067925065755844, 0.011928118765354156, -0.006127011962234974, -0.010718649253249168, 4.169998283032328e-05, 0.021799415349960327, -0.002346515189856291, 0.007843444123864174, -0.024913618341088295, 0.008582161739468575, 0.008038987405598164, 0.023001642897725105, -0.00495013315230608, -0.003586764447391033, 0.01007408183068037, -0.02427629381418228, -0.02201668545603752, 0.01709190011024475, 0.0017680340679362416, -0.004435927607119083, -0.006880214437842369, -0.0061849504709243774, 0.00609442126005888, 0.00011276535224169493, 0.005576594732701778, 0.01239162776619196, 0.0017653180984780192, 0.009835084900259972, -0.0006708208820782602, 0.030591605231165886, 0.002214342588558793, 0.0030906647443771362, 0.003896374022588134, -0.0020260419696569443, -0.0051529183983802795, -0.009197760373353958, 0.015324772335588932, -0.017323656007647514, -0.00985681265592575, 0.0254350658506155, -0.015353741124272346, 0.0059749227948486805, 0.02398660033941269, -0.02242225594818592, -0.005572973750531673, -0.013840094208717346, 0.0027538964059203863, 0.028723083436489105, 0.0026362084317952394, -0.004475760273635387, 0.023363759741187096, -0.005301386117935181, -0.007901382632553577, -0.011826726607978344, 0.019568778574466705, -0.017410563305020332, -0.00986405462026596, -0.002962113358080387, 0.008618373423814774, -0.002766570309177041, -0.011689121834933758, 0.030620574951171875, -0.031721409410238266, 0.008256257511675358, -0.00838661938905716, -0.0053991577588021755, -0.0011460988316684961, -0.01677323877811432, 0.0053629460744559765, -0.020307496190071106, 0.014361541718244553, -0.005431747995316982, 0.011652910150587559, -0.010233413428068161, 0.011102492921054363, 0.018902484327554703, 0.0014873937470838428, 0.014129787683486938, 0.014035637490451336, -0.026086876168847084, 0.02324788272380829, 0.0024261807557195425, -0.024189384654164314, -0.010899707674980164, 0.01140667125582695, -0.0009994417196139693, -0.004113643895834684, 0.031460683792829514, -0.0018793848576024175, 0.014651235193014145, 0.02852029912173748, 0.010045113041996956, 0.00751753943040967, -0.00950193777680397, 0.010696922428905964, 0.00896600540727377, 0.004044841974973679, 0.002208910882472992, 0.018120311200618744, -0.015049563720822334, 0.027680188417434692, -0.0005667124059982598, 0.010791072621941566, 0.0037261792458593845, 0.0023700527381151915, 0.006923668552190065, -0.004588016774505377, 0.026926986873149872, 0.009755419567227364, -0.01600555144250393, 0.0024370444007217884, 0.025681305676698685, 0.0020423373207449913, 0.009661269374191761, -0.008502496406435966, -0.00952366553246975, 0.008516981266438961, 0.025637852028012276, 0.02323339693248272, -0.004316429141908884, -0.0011035501956939697, 0.022147048264741898, -0.007640658877789974, -0.011030069552361965, -0.013383827172219753, 0.004196930676698685, 0.006174087058752775, 0.013007226400077343, 0.006282722111791372, 0.018743151798844337, -0.0015172683633863926, 0.0034763189032673836, 0.0039724186062812805, -0.012101935222744942, -0.003284397069364786, -0.0030870435293763876, -0.003360441420227289, 0.002925901673734188, 0.010863495990633965, 0.009009459987282753, 0.010008901357650757, 0.014542600139975548, -0.0005956817185506225, 0.008625616319477558, 0.007369071710854769, 0.006224783603101969, -0.010559318587183952, -0.011587729677557945, -0.01063898392021656, 0.008234529756009579, -0.0030725589022040367, 0.009052913635969162, -0.006941773928701878, -0.007347344886511564, 0.0026271555107086897, 0.01271029096096754, 0.0020640643779188395, 0.015759311616420746, -0.016280759125947952, 0.00040647582500241697, 0.003979661036282778, 0.002366431523114443, 0.019467385485768318, 0.004566289484500885, -0.024609440937638283, -0.024479078128933907, 0.0022577967029064894, -0.01980053260922432, -0.0039760395884513855, 0.00020900914387311786, 0.0047545903362333775, -0.005641775671392679, 0.0036338395439088345, 0.005037040915340185, 0.001866710837930441, -0.01557101123034954, -0.002982029691338539, -0.0003641534422058612, 0.008299711160361767, -0.02394314669072628, 0.003184814937412739, 0.013463493436574936, -0.015686888247728348, -0.0014050122117623687, -0.026043422520160675, -0.009241214022040367, -0.019221145659685135, 0.009110852144658566, 0.005616427399218082, -0.005388294346630573, 0.004483002703636885, 0.011935361661016941, -0.017251232638955116, 0.02014816366136074, -0.005344840232282877, 0.0054788230918347836, 0.007086620666086674, 0.019105268642306328, -0.00427659647539258, -0.0026615567039698362, -0.004312808159738779, -0.01827964372932911, -0.017613349482417107, 0.002509467536583543, -0.0007350965752266347, 0.009748177602887154, -0.0031956785824149847, 0.028665145859122276, 0.0029023641254752874, 0.007430631667375565, -0.014137029647827148, -0.01214538887143135, -0.0035722798202186823, 0.01255095936357975, -0.007405283395200968, 0.024174900725483894, -0.007104726508259773, 0.009885781444609165, -0.017222262918949127, -0.006561551708728075, 0.0023809163831174374, 0.004247627221047878, -0.02513088844716549, -0.009270183742046356, 0.001959050539880991, 0.007238709833472967, 0.0014430343871936202, -0.024957071989774704, 0.0030037567485123873, 0.017207778990268707, 0.002303061308339238, 0.020090226083993912, -0.006036482751369476, 0.00039357540663331747, -0.0016811260720714927, -0.004417821764945984, -0.01482505165040493, 0.0007427915697917342, 0.0028208878356963396, -0.01972810924053192, -0.001447560847736895, -0.0258406363427639, -0.021871838718652725, 0.004204173106700182, -0.0057214414700865746, -0.0009587035747244954, 0.011710848659276962, 0.0023139247205108404, 0.00950193777680397, 0.00010405192733742297, -0.008770463056862354, -0.0008319627377204597, -0.01867072843015194, -0.019583262503147125, 0.009552634321153164, -0.016266275197267532, 0.01503507886081934, -0.002342893974855542, -0.005301386117935181, 0.01519441045820713, -0.02620275318622589, 0.010081324726343155, 0.00047120414092205465, -0.012254023924469948, -0.023754844442009926, -0.011182159185409546, 0.0026108603924512863, -0.010001659393310547, -0.011551517993211746, -0.0018404573202133179, 0.020249556750059128, -0.0017064742278307676, -0.004917542450129986, 0.0025004148483276367, -0.001596028683707118, -0.022596072405576706, 0.014716416597366333, 0.0028064032085239887, -0.00521809933707118, 0.010552075691521168, -0.021075183525681496, -0.001477435464039445, -0.026043422520160675, -0.004113643895834684, 0.0042584906332194805, 0.004464896861463785, 0.002833561971783638, -1.403908845531987e-05, 0.005620048847049475, -0.0024116961285471916, -0.019670169800519943, -0.018482428044080734, -0.002020610263571143, -0.008017260581254959, -0.00228133425116539, -0.017946496605873108, -0.027289101853966713, 0.013992182910442352, -0.012080207467079163, -0.015136471949517727, -0.012601655907928944, -0.01630972884595394, -0.01629524491727352, -0.0247687716037035, 0.0006930005620233715, 0.00285347830504179, -0.00684400275349617, 0.0013887169770896435, -0.027882974594831467, 0.013869063928723335, 0.006264616269618273, -0.00037773282383568585, -0.011334247887134552, 0.01754092611372471, -0.004913921467959881, 0.010124778375029564, 0.024203870445489883, -0.009342607110738754, -0.01793201081454754, 0.012572686187922955, -0.0028878794983029366, -0.00990026630461216, -0.004627849441021681, -0.0018069616053253412, 0.0022342591546475887, -0.0054389904253184795, 0.009574361145496368, 0.00040081774932332337, -0.027462918311357498, -0.0033477675169706345, 0.006043725181370974, -0.004895815625786781, 0.01559998095035553, 0.003032726002857089, -0.018337581306695938, -0.013970456086099148, 0.016237305477261543, -0.013470735400915146, -0.007872413843870163, 0.012036753818392754, 0.005098600871860981, 0.009110852144658566, 0.0277960654348135, -0.02316097356379032, -0.030997175723314285, 0.00043386087054386735, 0.005989407654851675, 0.02127796784043312, -0.01565791852772236, -0.014904716983437538, 0.016874631866812706, -0.009270183742046356, 0.022958189249038696, -0.010863495990633965, -0.0008767746621742845, 0.011957088485360146, 0.007937594316899776, 0.004385231528431177, 0.009798874147236347, 0.006996091455221176, -0.019988832995295525, 0.003928964491933584, -0.008060714229941368, 0.019670169800519943, 0.011290794238448143, -0.017425047233700752, 0.010573803447186947, -0.004196930676698685, 0.0071119689382612705, 0.0044721392914652824, 0.0018232568399980664, -0.010313078761100769, 0.0273904949426651, 0.015266833826899529, 0.007195255719125271, -0.017048446461558342, -0.029519740492105484, -0.008017260581254959, -0.008306953124701977, -0.013760428875684738, 0.008618373423814774, 0.007734809536486864, 0.00464595528319478, -0.0022577967029064894, -0.010704165324568748, -0.019974349066615105, -0.013311403803527355, -0.036675162613391876, 0.0017933822236955166, 0.024594955146312714, 0.007162665016949177, -0.007093863096088171, 0.00989302434027195, 0.017033962532877922, -0.0028154561296105385, -0.0025945650413632393, 0.0024424761068075895, 0.026840077713131905, 0.009929236024618149, 0.012572686187922955, -0.005569352302700281, -0.023740360513329506, -0.006213919725269079, 0.0067860642448067665, 0.0009188707335852087, -0.014796081930398941, -0.006366008892655373, -0.007126453798264265, 0.010877980850636959, -0.013231738470494747, 0.017352623865008354, 0.0065760365687310696, -0.012304720468819141, 0.00014190442743711174, -0.0015172683633863926, -0.005348461214452982, 0.020814459770917892, -0.0003532899427227676, -0.02592754364013672, -0.010805557481944561, -0.0023483256809413433, -0.005037040915340185, 0.004023114684969187, -0.0216690544039011, 0.013919759541749954, 0.019670169800519943, -0.01483229361474514, -0.02318994328379631, 0.006981607060879469, 0.0006943584885448217, -0.007799990475177765, 0.0070757572539150715, -0.008010017685592175, -0.007137317210435867, 0.00016397089348174632, -0.026941470801830292, 0.00892255175858736, -0.0001585391437401995, -0.0012130903778597713, -0.0047980439849197865, 0.0008491632761433721, 0.01675875298678875, 0.008893582038581371, 0.015513072721660137, -0.019308054819703102, 0.007285784929990768, -0.0025493004359304905, -0.000798014341853559, 0.01562895067036152, -0.009958204813301563, 0.0051167067140340805, -0.01901836134493351, -0.02928798645734787, 0.01124009769409895, -0.007771021220833063, -0.007293027359992266, -0.0027086318004876375, 0.004110022913664579, 0.011428398080170155, -0.0029584921430796385, -0.0028045927174389362, 0.024030053988099098, -0.026144813746213913, 0.02048131264746189, 0.003968797158449888, 0.013181041926145554, 0.0005232584080658853, 0.018438974395394325, -0.004816149827092886, -0.019192175939679146, -0.0018449837807565928, -0.0051492974162101746, -0.026926986873149872, -0.008299711160361767, -0.012369900941848755, 0.0007762873428873718, 0.008495254442095757, 0.002533005317673087, 0.005460717715322971, 0.0029657345730811357, 0.00031390978256240487, -0.00474734790623188, -0.001984398579224944, -0.006876592990010977, 0.008459042757749557, -0.008459042757749557, -0.0033260404597967863, -0.03007015772163868, -0.005916984286159277, 0.021871838718652725, -0.010559318587183952, -0.007633416913449764, 0.019119754433631897, 0.022943703457713127, -0.006731746718287468, 0.01348522026091814, -0.009262940846383572, -0.010240656323730946, -0.002867962932214141, 0.02320442721247673, 0.015672404319047928, -0.004157098010182381, 0.013666278682649136, 0.0006386830355040729, 0.005199993494898081, -0.011174916289746761, 0.003472697688266635, -0.008879098109900951, 0.00039697025204077363, -0.008227287791669369, -0.0012339120730757713, -0.00600389251485467, -0.009241214022040367, -0.008698039688169956, -0.007140938192605972, 0.003881889395415783, 0.017222262918949127, 0.007003333885222673, 0.00913257896900177, 0.015107502229511738, 0.0017571705393493176, -0.000797561660874635, -0.00456266850233078, -0.009588846005499363, 0.022147048264741898, -0.002455150242894888, 0.020003318786621094, 0.025043979287147522, 0.006029240321367979, -0.02511640265583992, -0.003447349416092038, -0.013673520646989346, -0.018902484327554703, 0.011022827588021755, -0.009711965918540955, 0.01901836134493351, 0.00985681265592575, -0.01940944604575634, -0.007169907446950674, 0.0034908035304397345, 0.0029693555552512407, -0.005225341767072678, 0.016483545303344727, 0.02356654405593872, 0.00152360531501472, 0.006014755927026272, -0.023407213389873505, -0.013586612418293953, -0.001978966873139143, -0.004099159501492977, -0.01829412765800953, 0.008806674741208553, -0.009711965918540955, 0.007713082246482372, -0.003733421675860882, 0.01706293225288391, -0.007495812606066465, 0.010320321656763554, -2.850253167707706e-06, 0.004678545519709587, -0.004986344836652279, -0.020046772435307503, -0.02165456861257553, -0.0067860642448067665, -0.008082441054284573, 0.015382710844278336, -0.025579912588000298, 0.01670081540942192, -0.020278526470065117, 0.0056490181013941765, -0.01906181499361992, -0.015614465810358524, 0.01331864669919014, 0.019612232223153114, 0.01755541004240513, 0.005388294346630573, 0.020379919558763504, 0.022262925282120705, -0.003983282018452883, -0.015846220776438713, -0.0011732575949281454, -0.016454575583338737, 0.007057651411741972, -0.024957071989774704, 0.002782865660265088, 0.007778263185173273, -0.009357091039419174, 0.017294686287641525, 0.011435640044510365, -0.0003175309393554926, 0.0038999952375888824, 0.015484103001654148, -0.004454033449292183, 0.0025493004359304905, -0.027216680347919464, -0.004432306624948978, 0.004769074730575085, -0.01218160055577755, -0.017425047233700752, 0.02324788272380829, 0.004131749738007784, -0.0045445626601576805, 0.0007658764952793717, -0.011435640044510365, 0.014810566790401936, -0.004946512170135975, -0.0005495118675753474, 0.00484874052926898, 0.00013047512038610876, 0.0017272959230467677, 0.006329797208309174, -0.016845662146806717, 0.001908354228362441, 0.017671287059783936, -0.004131749738007784, -0.011225612834095955, -0.011189401149749756, -0.01748298667371273, 0.008125895634293556, 0.02434871718287468, 0.02323339693248272, 0.016280759125947952, 0.020408889278769493, 0.005029798950999975, 0.02017713338136673, 0.013441765680909157, -0.02287128008902073, 0.013130346313118935, 0.006485507357865572, -0.00815486442297697, -0.012507505714893341, -0.026854563504457474, -0.018511397764086723, -0.002286765957251191, 0.006112527102231979, -0.007285784929990768, -0.010617257095873356, -0.02055373415350914, 0.0022487437818199396, -0.01865624450147152, 0.02203117124736309, 0.005732304882258177, 0.024059023708105087, -0.002634397940710187, -0.008198319002985954, 0.011660153046250343, 0.0023356517776846886, -0.01594761200249195, -0.01707741618156433, 0.023667937144637108, 0.001908354228362441, 0.009806116111576557, 0.006134254392236471, -0.015093017369508743, -0.010363775305449963, -0.0010610014433041215, 0.013550400733947754, 0.02434871718287468, 0.019177692010998726, -0.0010510432766750455, 6.721788668073714e-05, 0.008987732231616974, 0.025348158553242683, 0.006413083989173174, 0.008017260581254959, -0.006394978147000074, -0.003467265982180834, 0.0011596782132983208, 0.005098600871860981, -0.008444557897746563, -0.0065434458665549755, -0.000414170790463686, -0.004454033449292183, -0.01565791852772236, 0.016237305477261543, 0.0017073794733732939, -0.0003605322854127735, -0.0239576306194067, 0.0033423358108848333, 0.00929191056638956, -0.0003625691751949489, 0.005055146757513285, -0.0005345745594240725, 0.011645668186247349, -0.007843444123864174, -0.01519441045820713, -0.0068621085956692696, -0.008162107318639755, -0.003487182315438986, 0.011833968572318554, -0.004128128755837679, -0.00815486442297697, -0.011537033133208752, 0.007872413843870163, 0.008343164809048176, -0.0058988784439861774, 0.02628966048359871, 0.00933536421507597, -0.0047944230027496815, 0.026796624064445496, 0.004667682107537985, -0.012029511854052544, 0.004345398396253586, -0.010747618973255157, 0.016831176355481148, -0.0021292453166097403, 0.0019373234827071428, 0.009950962848961353, -0.012029511854052544, -0.0010211686603724957, -0.01103731244802475, -0.006800548639148474, -0.0232189130038023, 0.007329239044338465, -0.002351946895942092, -0.0216690544039011, -0.0034600235521793365, -0.0032137844245880842, -0.003950691316276789, 0.004233142361044884, 0.009183275513350964, 0.012471294030547142, 0.004490245133638382, -0.008133137598633766, 0.005659881513565779, -0.0064710224978625774, -0.01124733965843916, -0.0029657345730811357, 0.0011497200466692448, 0.004519214387983084, -0.003961555194109678, 0.007209740579128265, -0.004921163897961378, 0.004602501168847084, 0.008328680880367756, 0.010255140252411366, 0.0015996497822925448, 0.023407213389873505, 0.00045196671271696687, 0.012442324310541153, -0.011450124904513359, 0.021886324509978294, -0.01638215221464634, 0.015368225984275341, 0.0015724911354482174, 0.00896600540727377, -0.007445116061717272, 0.00014892042963765562, 0.007756536360830069, 0.019699139520525932, 0.011334247887134552, 0.0026615567039698362, -0.016121428459882736, -0.0054389904253184795, -0.00814762245863676, 0.0067896852269768715, -0.016976023092865944, 0.03183728829026222, 0.012775471433997154, 0.001611418672837317, 0.009407787583768368, 0.01006683986634016, 0.01972810924053192, 0.0007387177320197225, 0.004707515239715576, -0.0071518016047775745, 0.006771579384803772, -0.003226458327844739, 0.016541482880711555, -0.015904158353805542, 0.00969748105853796, 0.013724217191338539, 0.012876864522695541, 0.0005581121076829731, -0.012637867592275143, -0.006239267997443676, -0.01641112193465233, 0.006250131409615278, 0.008263499476015568, 0.009031186811625957, 0.0009224918903782964, 0.006746231112629175, -0.00928466860204935, -0.012493020854890347, -0.00676071597263217, -0.021133121103048325, -0.015440649352967739, -0.005098600871860981, -0.019525324925780296, -0.031402748078107834, -0.004254869185388088, 0.00950193777680397, 0.002889689989387989, 0.03047572821378708, -0.004399715922772884, -0.04606122523546219, -0.00676071597263217, -0.002402643207460642, 0.023783814162015915, -0.015179925598204136, 0.004102780483663082, 0.01830861158668995, -0.011319763027131557, -0.029143139719963074, -0.007944837212562561, 0.010124778375029564, -0.012652352452278137, -0.016947053372859955, -0.00590974185615778, 0.018945937976241112, 0.00013590687012765557, 0.015411680564284325, 0.021958747878670692, -0.010899707674980164, 0.0014801513170823455, -0.014383269473910332, -0.006920047104358673, -0.004812528844922781, 0.012058480642735958, -0.0024261807557195425, 0.00042616590508259833, 0.03606680780649185, -0.003641081741079688, 0.0007776452694088221, 0.01867072843015194, 0.001861279015429318, -0.01100110076367855, 0.013275192119181156, -0.001105360803194344, 0.0013733269879594445, -0.010211686603724957, -0.010573803447186947, 0.022161532193422318, 0.009675754234194756, -0.014694689773023129, -0.008372134529054165, 0.004642334301024675, -0.0007486759568564594, 0.003729800460860133, -0.0009188707335852087, 0.017381593585014343, 0.004392473492771387, -0.0013841905165463686, -0.010950404219329357, -0.0030816118232905865, -0.0018775742501020432, 0.00246601365506649, -0.013050680048763752, -0.0004603406705427915, 0.010762103833258152, -0.017338139936327934, 0.0047980439849197865, -0.0300122182816267, 0.02051028050482273, -0.016947053372859955, 0.002080359496176243, -0.008589404635131359, 0.01982950232923031, -0.013774913735687733, -0.0076116896234452724, 0.0048270137049257755, 0.012739259749650955, 0.010986615903675556, 0.011269066482782364, -0.020640643313527107, 0.015020594000816345, 0.012297477573156357, 0.002674230607226491, -0.018178250640630722, 0.014325330033898354, -0.0228133425116539, 0.023117519915103912, -0.006811412051320076, -0.02318994328379631, 0.02213256247341633, -0.0026579354889690876, -0.012514747679233551, -0.008451799862086773, -0.02931695617735386, -0.005591079592704773, 0.00628996454179287, 0.0030146201606839895, 0.01100834272801876, 0.010552075691521168, 0.0031594668980687857, -0.009183275513350964, -0.005620048847049475, 0.009458484128117561, 0.011558759957551956, 0.05173921212553978, 0.017294686287641525, 0.014477419666945934, -0.009190517477691174, 0.003402085043489933, -0.036385469138622284, 0.011942603625357151, 0.006405841559171677, -0.018525881692767143, -0.0013642740668728948, 9.992153354687616e-05, -0.005265174433588982, 0.01465847808867693, 0.015686888247728348, -0.009682996198534966, 0.004989965818822384, -0.011363217607140541, -0.01975707896053791, -0.0051130857318639755, -0.0009039334254339337, 0.013137588277459145, 0.024508047848939896, -0.008640101179480553, -0.006775200366973877, 0.018496913835406303, -0.0037551485002040863, -0.020336465910077095, -0.010052355006337166, 0.004244005773216486, 0.025362642481923103, 0.020640643313527107, -0.03453143313527107, -0.031402748078107834, 0.013673520646989346, -0.020278526470065117, 0.027578795328736305, 0.0008609321084804833, 0.010914192534983158, 0.004497487563639879, -0.015165440738201141, -0.030359851196408272, -0.012985499575734138, 0.006673807743936777, -0.007676870562136173, -0.021176574751734734, 0.006021998357027769, -0.004396094940602779, 0.007235088385641575, -0.011602213606238365, -0.004102780483663082, -0.003621165407821536, 0.007188013289123774, -0.03244564309716225, -0.011145947501063347, -0.008516981266438961, -0.017960980534553528, 0.021770447492599487, -0.018047887831926346, -0.0005716914893127978, -0.029838403686881065, -0.009755419567227364, -0.008111410774290562, 0.008444557897746563, 0.016816692426800728, -0.007256815675646067, 0.01981501653790474, -0.010023386217653751, 0.017584379762411118, 0.010950404219329357, -0.023436183109879494, -0.002082170220091939, -0.027940912172198296, -0.0021183816716074944, -0.021017244085669518, -0.014977140352129936, -0.02208910882472992, -0.01641112193465233, -0.01898939162492752, -0.014151514507830143, 0.006098042707890272, 0.010088566690683365, -0.01066795364022255, -0.012319204397499561, -0.0008079725666902959, -0.006409463007003069, 0.010849012061953545, 0.0051529183983802795, 0.0026724201161414385, 0.021611114963889122, 0.007879655808210373, -0.03238770365715027, -0.000936071272008121, -0.020235072821378708, -0.0028607207350432873, 0.015150955878198147, 0.0014946360606700182, 0.0007165381102822721, -0.0040520839393138885, -0.004490245133638382, 0.017946496605873108, -0.008125895634293556, 0.007705840282142162, -0.0035559844691306353, -0.005232584197074175, -0.010783830657601357, -0.02204565517604351, -0.0182361900806427, -0.008589404635131359, 0.010414471849799156, 0.004928406327962875, -0.01678772270679474, 0.0068295178934931755, 0.00024103382020257413, 0.0277960654348135, 0.00895876344293356, 0.018511397764086723, -0.00031458874582313, -0.001775276381522417, 0.009219487197697163, 0.017787164077162743, -0.012572686187922955, 0.00617770804092288, 0.03577711433172226, 0.02017713338136673, 0.0019047330133616924, 0.0006767052691429853, -0.0005875341012142599, 0.014578811824321747, -0.004816149827092886, 0.0036447029560804367, 0.007799990475177765, -0.009682996198534966, -0.007336481008678675, 0.006029240321367979, -0.010682438500225544, 0.002315735211595893, 0.015440649352967739, -0.005493307951837778, 0.014122544787824154, 0.012529232539236546, -0.013449008576571941, 0.044728636741638184, 0.015426164492964745, 0.007959322072565556, -0.015831734985113144, -0.000894880504347384, -0.025594396516680717, 0.01716432347893715, 0.01674426905810833, -0.012109177187085152, 0.014962655492126942, -0.012616140767931938, -0.0015263212844729424, 0.02320442721247673, 0.0024225597735494375, -0.0012764608254656196, -0.011435640044510365, 0.034473493695259094, -0.009386060759425163, -0.00033925793832167983, -0.01294928789138794, 0.019337022677063942, 0.006724504288285971, -0.006449295673519373, 0.012449567206203938, -0.01158048678189516, -0.0008926172740757465, 0.0197136253118515, -0.01861279085278511, 0.0002623081672936678, -0.0201916191726923, 0.005913363303989172, 0.009581604041159153, -0.0010591908358037472, 0.008871855214238167, 0.01011029351502657, -0.008937036618590355, 0.0053665670566260815, -0.025579912588000298, -0.021220030263066292, 0.008292469196021557, 0.02130693756043911, 0.00875597819685936, -0.0005707861855626106, 0.009052913635969162, 0.009219487197697163, -0.016526998952031136, 0.011957088485360146, 0.009682996198534966, 0.0022976293694227934, 0.0018142039189115167, 0.017309170216321945, -0.004964618012309074, -0.010327563621103764, -0.012065723538398743, 0.0017064742278307676, 0.0029005534015595913, -0.0016096080653369427, -0.033691324293613434, -0.0021564040798693895, 0.005395536310970783, 0.006148738786578178, -0.010175474919378757, -0.010544833727180958], "1e7e0852-9143-4d50-ad65-62c25c4d9a09": [-0.02902224287390709, 0.005973744671791792, -0.0021248427219688892, 0.03344468027353287, -0.019417261704802513, -0.027543488889932632, 0.006761491298675537, 0.03231142833828926, -0.03051481395959854, 0.014842803589999676, 0.020868374034762383, 0.03875160217285156, 0.00798802636563778, -0.046960752457380295, 0.010150874964892864, 0.035904660820961, -0.005704252514988184, 0.0060981260612607, 0.03247727081179619, 0.010171604342758656, 0.04427964985370636, 0.00897616520524025, -0.0361257828772068, -0.000668548047542572, -0.027598770335316658, -0.0014528395840898156, -0.01492572482675314, 0.02030174992978573, -0.05364968627691269, -0.002639641985297203, 0.03380400314927101, 0.016404476016759872, 0.012983998283743858, 0.01827019266784191, 0.009750091470777988, -0.021504098549485207, 0.010371996089816093, -0.006626745220273733, -0.00550040602684021, -0.019666023552417755, -0.06871361285448074, 0.04895084723830223, -0.015602909959852695, -0.010206155478954315, -0.04057585820555687, 0.01677761971950531, 0.008575381711125374, 0.027128886431455612, -0.0029350470285862684, -0.013695734553039074, 0.0017465170240029693, -0.020453769713640213, -0.03891744464635849, 0.011042271740734577, 0.0165703184902668, -0.05959233641624451, 0.001737879472784698, 0.0644570142030716, -0.0019348161295056343, -0.07722680270671844, 0.017772668972611427, -0.030846497043967247, -0.0020125543233007193, -0.018657155334949493, -0.007037893868982792, -0.0151883065700531, -0.016210995614528656, -0.0027346552815288305, -0.08833817392587662, 0.01854659430682659, -0.003855812130495906, 0.03515837341547012, -0.016169534996151924, 0.023273073136806488, 0.03355523943901062, -0.018864456564188004, 0.046407945454120636, 0.007483592256903648, -0.0011988950427621603, 0.022817010059952736, -0.009052175097167492, 0.012362092733383179, 0.035130731761455536, 0.006491999141871929, 0.04469425231218338, 0.022043082863092422, -0.010427276603877544, -0.03372108191251755, 0.006419443525373936, -0.03836464136838913, 0.022360946983098984, 0.02276173047721386, 0.01965220458805561, -0.01809053122997284, -0.009342397563159466, -0.02390879951417446, 0.010427276603877544, 0.0037279759999364614, 0.036236342042684555, 0.0017845224356278777, -0.01813199184834957, 0.03529657423496246, 0.007386851590126753, 0.01857423409819603, 0.020771633833646774, -0.014801342971622944, -0.003700335742905736, -0.009017624892294407, -0.018560415133833885, 0.061692994087934494, 0.021849602460861206, -0.032670751214027405, -0.00025804745382629335, 0.02383969910442829, -0.030901778489351273, -0.009660260751843452, 0.0029557771049439907, 0.0008339575724676251, 0.002840033732354641, -0.01926524005830288, 4.739867654279806e-05, -0.0018432579236105084, -0.015367968007922173, 0.03247727081179619, 0.0014839348150417209, 0.008202238008379936, -0.0020972024649381638, -0.00937694776803255, -0.00436715641990304, -0.017662107944488525, -0.0067753116600215435, 0.017689747735857964, -0.009743181057274342, 0.030210772529244423, 0.007670164108276367, -0.04057585820555687, -0.006498909089714289, 0.07728208601474762, -0.0059011890552937984, 0.044611331075429916, -0.003441208740696311, -0.04093518108129501, -0.008457910269498825, -0.003344467841088772, 0.02407464012503624, -0.026659002527594566, -0.04347808286547661, 0.010524017736315727, -0.0025135334581136703, 0.012154791504144669, -0.04552346095442772, -0.04253831505775452, 0.0033824732527136803, 0.006737306248396635, 0.004564092960208654, -0.016058973968029022, 0.007739264518022537, 0.012514114379882812, -0.014317639172077179, 0.037756554782390594, -0.005199818406254053, -0.03374871984124184, -0.011719457805156708, 0.028828760609030724, 0.047126591205596924, 0.011090642772614956, 0.01392376609146595, 0.0190993994474411, -0.014511121436953545, 0.016957281157374382, 0.024641266092658043, -0.010834970511496067, -0.01813199184834957, -0.00677185645326972, -0.01399286650121212, -0.002605091780424118, 0.027170347049832344, 0.021462639793753624, 0.010551657527685165, -0.024779466912150383, -0.008402629755437374, 0.013709554448723793, -0.004933780990540981, -0.015423248521983624, -0.011546705849468708, -0.01362663321197033, 0.010869520716369152, 0.02089601382613182, 0.009522059001028538, 0.004415526986122131, -0.022982852533459663, 0.0228999312967062, -0.007932745851576328, 0.03770127519965172, -0.039967771619558334, -0.013460792601108551, 0.003197629237547517, -0.013937585987150669, -0.01878153719007969, -0.0053518395870924, -0.022637348622083664, -0.023273073136806488, -0.03847520053386688, 0.014497300609946251, -0.026714282110333443, 0.018463673070073128, -0.007227920461446047, -0.03695498779416084, 0.0033496504183858633, -0.015920773148536682, 0.04190259054303169, -0.039249125868082047, 0.017551546916365623, 0.009591160342097282, -0.021130956709384918, 0.011332494206726551, -0.0018553504487499595, 0.037480153143405914, -0.004111484158784151, -0.01498100534081459, -0.0379776768386364, 0.014276179485023022, -0.018518954515457153, -0.016252456232905388, -0.05171487107872963, -0.03549005463719368, -0.02287229150533676, 0.012500294484198093, -0.03159278258681297, -0.005953014828264713, 0.037341952323913574, 0.016210995614528656, -0.029243363067507744, -0.027515849098563194, -0.01981804519891739, 0.04071405902504921, 0.007062078919261694, -0.0025670863687992096, 0.028358876705169678, -0.012818156741559505, 0.0040458389557898045, 0.015519989654421806, 0.01923760026693344, -0.018933556973934174, 0.0028313961811363697, -0.03159278258681297, -0.015285047702491283, 0.008181508630514145, 0.01183001883327961, -0.012272262014448643, -0.007863645441830158, -0.018311653286218643, 0.01733042486011982, -0.017731208354234695, -0.05212947353720665, 0.0708695501089096, 0.028248315677046776, -0.013350231572985649, 0.010385816916823387, -0.0002286797243868932, 0.0409628227353096, 0.027280908077955246, 0.02587125636637211, 0.0200253464281559, 0.01100081205368042, -0.011919849552214146, -0.0056213317438960075, -0.04950365424156189, 0.002218128414824605, 0.013723374344408512, -0.03195210546255112, 0.03081885725259781, -0.012686865404248238, 0.010565478354692459, 0.01629391498863697, 0.018740076571702957, -0.013115289621055126, -0.03938732668757439, 0.020398490130901337, 0.0058009931817650795, 0.002363239647820592, 0.013820115476846695, 0.008561561815440655, 0.05127262696623802, -0.0082851592451334, -0.0009872744558379054, -0.006737306248396635, -0.027888992801308632, -0.03413568437099457, -0.024433963000774384, -0.00021302411914803088, -0.008837963454425335, 0.011774738319218159, 0.019624562934041023, 0.004788669757544994, 0.01278360653668642, -0.03358288109302521, -0.033914562314748764, -0.029879089444875717, 0.018836816772818565, 0.003942187875509262, 0.004190949723124504, 0.010910981334745884, -0.05124498903751373, 0.03988485410809517, -0.05760224163532257, 0.03095705807209015, 0.026023276150226593, -0.0026033641770482063, -0.019292881712317467, 0.038585763424634933, -0.037065550684928894, -0.021075675264000893, -0.0029782347846776247, 0.060587383806705475, -0.005738802719861269, -0.008672121912240982, -0.0006521366885863245, 0.0029765074141323566, -0.024890027940273285, 0.017827948555350304, -0.007732354570180178, -0.07374413311481476, 0.06849249452352524, 0.001157434657216072, -0.009300937876105309, 0.02459980547428131, -0.01753772608935833, 0.021421179175376892, -0.024364862591028214, -0.024337222799658775, 0.020536690950393677, -0.02034320868551731, -0.00556950643658638, -0.017012562602758408, -0.013751015067100525, -0.036761507391929626, -0.042704157531261444, -0.013391691260039806, -0.03131638094782829, -0.0033392852637916803, -0.03272603452205658, 0.003617415204644203, -0.009902112185955048, 0.045302338898181915, 0.00925256684422493, -0.015036284923553467, 0.009625710546970367, -0.027861353009939194, 0.018214911222457886, 0.0008862148970365524, 0.012120241299271584, 0.055225178599357605, 0.03081885725259781, 0.04452840983867645, -0.030210772529244423, 0.016542678698897362, 0.017067842185497284, 0.0053380196914076805, -0.002506623510271311, 0.03374871984124184, 0.006892782635986805, 0.00032801181077957153, 0.020536690950393677, -0.013142929412424564, 0.033057715743780136, -0.011726368218660355, 0.0005869230371899903, 0.01247265376150608, -0.011443055234849453, -0.030459534376859665, 0.016376836225390434, 0.019458722323179245, 0.021200057119131088, -0.028552358970046043, -0.010586208663880825, 0.017275143414735794, -0.007400671485811472, -0.03689970821142197, 0.025276990607380867, 0.007234830409288406, 0.029215723276138306, 0.00961880013346672, -0.0021922157611697912, 0.005797538440674543, -0.0005407120333984494, 0.012942537665367126, -0.02165612019598484, 0.024406323209404945, 0.028856400400400162, -0.018104350194334984, -0.010655309073626995, -0.019596923142671585, -0.01513302605599165, -0.025373730808496475, 0.025346091017127037, 0.0028227586299180984, -0.05749167874455452, 0.02453070506453514, -0.02092365361750126, 0.007704714313149452, -0.006782221607863903, 0.006958427838981152, -0.00865139253437519, 0.014870444312691689, -0.021213876083493233, -0.019831866025924683, 0.01505010575056076, 0.0107036791741848, -0.028939321637153625, 0.006903147324919701, 0.019762765616178513, 0.048342764377593994, -0.003800531616434455, 0.030155491083860397, 0.009674080647528172, -0.023121053352952003, 0.02649316005408764, -0.027723150327801704, -0.0011997587280347943, 0.04336751997470856, 0.05102386698126793, -0.0039905584417283535, 0.01499482523649931, 0.00032822773209773004, 0.030874136835336685, 0.030293691903352737, 0.03178626671433449, -0.0011056092334911227, -0.0093216672539711, -0.007110449485480785, 0.030625374987721443, 0.012175521813333035, -0.01361281331628561, 0.010109414346516132, -0.004201314877718687, 0.034052763134241104, 0.008851783350110054, -0.00655418960377574, 0.008160778321325779, -0.0034135684836655855, 0.008589201606810093, -0.009743181057274342, 0.0006560236215591431, -0.00866521243005991, -0.02455834485590458, -0.013688824139535427, -0.030625374987721443, -0.038834523409605026, -0.002019464271143079, -0.00044613060890696943, 0.02307959273457527, -0.03764599561691284, 0.008893243968486786, 0.024102281779050827, 0.04010597616434097, 0.012085691094398499, -0.014034327119588852, 0.026106197386980057, -0.05749167874455452, -0.021255336701869965, 0.006789131555706263, 0.010503287427127361, 0.0015763569390401244, 0.019970066845417023, -0.04773467779159546, 0.00880341324955225, 0.023328354582190514, 0.003152713878080249, -0.006405623629689217, -0.0023874249309301376, 0.015105386264622211, -0.004785215016454458, 0.04129450395703316, 7.590266613988206e-05, 0.006277787499129772, 0.01916849985718727, -0.030570095404982567, 0.027170347049832344, -0.0037936216685920954, 0.007138089742511511, -0.02649316005408764, 0.013281131163239479, -0.002864218782633543, 0.009722450748085976, -0.016680879518389702, -0.012286082841455936, -0.028414156287908554, 0.035572975873947144, -0.03919384628534317, 0.021960163488984108, -6.440389552153647e-05, 0.013101468794047832, 0.01378556527197361, -0.02068871259689331, -0.017758848145604134, -0.006409078370779753, -0.03261547163128853, -0.010662218555808067, -0.0747944638133049, 0.030735936015844345, -0.01767592690885067, 0.00026150248595513403, 0.0006650930736213923, -0.032394349575042725, 0.027819892391562462, -0.044086165726184845, 0.007138089742511511, -0.02469654567539692, -0.009086725302040577, -0.028828760609030724, 0.007559603080153465, -0.041211582720279694, 0.002016009297221899, -0.007877465337514877, 0.011608896777033806, 0.017164582386612892, -0.028524717316031456, 0.02591271512210369, 0.007020618300884962, 0.0023442369420081377, -0.022651169449090958, -0.003627780359238386, -0.0009769094176590443, -0.013647363521158695, 0.018035249784588814, -0.011408505029976368, -0.004032018594443798, 0.0179523304104805, -0.014248538762331009, -0.0019227234879508615, 0.017841769382357597, 0.0058562736958265305, 0.004432802088558674, 0.005486585665494204, 0.005358749534934759, -0.003354832995682955, 0.005921919364482164, -0.011788558214902878, 0.00887251365929842, -0.030846497043967247, 0.017993789166212082, -0.005883913952857256, -0.008616841398179531, -0.015077745541930199, 0.024890027940273285, 0.0024461604189127684, -0.0011842111125588417, -0.0033358302898705006, 0.00873431283980608, -0.03192446753382683, 0.004636648576706648, -0.013446971774101257, 0.003062882926315069, 0.024019360542297363, -0.03012785129249096, 0.03880688175559044, -0.01951400190591812, -0.017910869792103767, 0.0005713753635063767, -0.03148222342133522, 0.04577222093939781, 0.012320633046329021, 0.017731208354234695, -0.019707484170794487, -0.0016005421057343483, -0.017095481976866722, -0.011083732359111309, 0.00753196282312274, 0.004004378337413073, 0.014345279894769192, -0.0012757694348692894, 0.03477140888571739, 0.010005763731896877, -0.01988714560866356, 0.028994601219892502, 0.010869520716369152, -0.009570430032908916, -0.04306348040699959, 0.007753084413707256, -0.0009224927052855492, -0.011470695957541466, -0.004491537343710661, 0.019900966435670853, 0.04911668971180916, 0.028414156287908554, -0.02566395327448845, -0.016542678698897362, -0.0028262136038392782, -0.0013785564806312323, -0.007393761537969112, 0.03687206655740738, -0.02625821903347969, -0.0020747447852045298, -0.013702644035220146, 0.013516073115170002, 0.010959351435303688, 0.015575270168483257, 0.011180473491549492, 0.0005985837196931243, 0.03269839286804199, 0.0094944192096591, 0.017938509583473206, -0.011291034519672394, -0.031122898682951927, 0.02718416601419449, -0.0005355294561013579, 0.004795580171048641, -0.006650930270552635, 0.006025570444762707, 0.024890027940273285, -0.007172639947384596, 0.014013596810400486, -0.008036397397518158, 0.01122193317860365, 0.021573198959231377, 0.0030801582615822554, 0.01746862567961216, -0.002019464271143079, -0.019900966435670853, 0.021504098549485207, -0.014566401019692421, 0.04673963040113449, -0.008603021502494812, 0.011795468628406525, 0.00022176966012921184, 0.007642523851245642, 0.010095594450831413, -0.021158596500754356, -0.0043637012131512165, -0.010966261848807335, 0.011892208829522133, -0.004812855273485184, -0.028358876705169678, 0.02927100472152233, 0.008837963454425335, -0.018698615953326225, 0.02421284094452858, -0.02812393382191658, -0.045855142176151276, -0.030321333557367325, 0.0026189119089394808, -0.0009449503850191832, 0.039276767522096634, -0.0019417261937633157, 0.015340328216552734, -0.05237823724746704, -0.0036485104355961084, 0.0006625017849728465, 0.017275143414735794, -0.029464485123753548, 0.013357141055166721, -0.01822873204946518, 0.031426943838596344, 0.0037245210260152817, -0.01979040540754795, -0.005559141281992197, -0.013571352697908878, 0.011090642772614956, 0.01891973800957203, 0.0028141208458691835, 0.022153643891215324, 0.0263549592345953, -0.0008231606334447861, 0.0036381452810019255, 0.026092378422617912, 0.030763575807213783, -0.016321556642651558, 0.025207890197634697, 0.012382823042571545, -0.010973171330988407, -0.005828633438795805, 0.038972724229097366, 0.004930326249450445, -0.0090314457193017, -0.0018657156033441424, -0.023134872317314148, 0.02982380799949169, -0.027515849098563194, -0.026852484792470932, -0.024793285876512527, -0.018767716363072395, -0.07993554323911667, 0.005939194466918707, 0.012244622223079205, -0.0036346903070807457, -0.014117247425019741, 0.02345273643732071, -0.018657155334949493, -0.008900154381990433, 0.018145810812711716, -0.007037893868982792, -0.013364051468670368, -0.006495454348623753, 0.0059011890552937984, 0.010731319896876812, -0.0018518954748287797, 0.00021021690918132663, 0.029492126777768135, -0.022526787593960762, -0.06136131286621094, -0.009535879828035831, 0.0009060812881216407, -0.01422089897096157, 0.00942531879991293, 0.02570541389286518, -0.021573198959231377, -0.035213652998209, -0.013723374344408512, 0.013536802493035793, 0.014663142152130604, -0.004837040323764086, 0.012776696123182774, 0.006291607394814491, 0.006557644810527563, 0.004546817857772112, -0.004481172189116478, 0.02614765800535679, -0.007732354570180178, 0.02584361471235752, 0.019638383761048317, 0.008824143558740616, 0.0006085169734433293, -0.034052763134241104, -0.03148222342133522, 0.008457910269498825, 0.027267087250947952, 0.011042271740734577, 0.0023666946217417717, -0.004004378337413073, 0.02117241732776165, -0.0033928381744772196, 0.01259012520313263, 0.0002050343609880656, -0.006754581350833178, 0.029049882665276527, 0.0042946008034050465, 0.022664988413453102, 0.053290363401174545, -0.02996201068162918, -0.02276173047721386, -0.01590695232152939, 0.019431082531809807, -0.010945531539618969, -0.006519639398902655, -0.005161812994629145, 0.029519766569137573, -0.01221007201820612, -0.008264428935945034, -0.022789370268583298, 0.025760695338249207, -0.052184756845235825, 0.006744216196238995, 0.011284124106168747, -0.0027864808216691017, -0.007400671485811472, 0.04444549232721329, 0.010696768760681152, -0.00490268599241972, 0.020398490130901337, -0.0020885649137198925, 0.026272039860486984, -0.00015731177700217813, -0.03394220396876335, -0.0011712547857314348, -0.00956351961940527, -0.019914785400032997, 0.016335375607013702, 0.018740076571702957, 0.006796041503548622, 0.03463320806622505, 0.023950260132551193, -0.016749979928135872, 0.023494195193052292, -0.008485550992190838, 0.01896119862794876, 0.018795356154441833, 0.0053829350508749485, -0.02473800629377365, 0.003142348723486066, -0.030735936015844345, -5.393083847593516e-05, -0.00042388885049149394, -0.03385928273200989, -0.00327363982796669, -0.014773703180253506, 0.042427752166986465, 0.023549476638436317, -0.027612589299678802, 0.009314757771790028, 0.015920773148536682, 0.007414491847157478, -0.016860540956258774, -0.011698727495968342, 0.03344468027353287, -0.006108490750193596, -0.012603945098817348, -0.020246468484401703, 0.010800420306622982, 0.02473800629377365, -0.0037590712308883667, -0.0016549588181078434, 0.03195210546255112, 0.03604286164045334, 0.0107036791741848, -0.019113220274448395, 0.001827710191719234, 0.015782572329044342, -0.02089601382613182, -0.004926871042698622, -0.015450889244675636, -0.01878153719007969, -0.010427276603877544, 0.015962233766913414, -0.016376836225390434, -0.01836693286895752, 0.005085802171379328, -0.012977087870240211, 0.023991720750927925, -0.008070947602391243, -0.01687435992062092, -0.006101580802351236, 0.021559379994869232, -0.031426943838596344, -0.005220548715442419, -0.007746174465864897, 0.02310723252594471, -0.010524017736315727, -0.0016126347472891212, 0.008609931915998459, 0.0057111624628305435, -0.0009458141284994781, -0.01981804519891739, 0.019569283351302147, -0.03189682587981224, 0.004007833544164896, -0.004401706624776125, 0.016003692522644997, -0.05088566243648529, 0.03145458176732063, -0.013827024959027767, -0.028151575475931168, -0.02082691341638565, 0.014911903999745846, 0.016722340136766434, -0.0037141558714210987, 0.015423248521983624, -0.0040354738011956215, 0.04814928025007248, -0.008464820683002472, -0.005158357787877321, -0.04093518108129501, 0.01958310417830944, -0.010503287427127361, -0.005154903046786785, 0.022236565127968788, 0.004401706624776125, -0.016058973968029022, -0.007172639947384596, 0.001514166360720992, 0.008292068727314472, 0.009936662390828133, -0.001535760355181992, 0.010717499069869518, -0.03338939696550369, -0.021628480404615402, -0.0028244860004633665, -0.00300587504170835, -0.015989873558282852, 0.007469772361218929, -0.007421401794999838, 0.0005243006162345409, 0.03770127519965172, 0.008326619863510132, -0.030431894585490227, -0.00459173321723938, -0.0004109324945602566, 0.0009890019427984953, -0.048066359013319016, -0.009867561981081963, -0.0004992516478523612, 0.022844649851322174, -0.010980081744492054, 0.012327542528510094, -0.05586090683937073, 0.02618911862373352, -0.0081124072894454, 0.007297020871192217, -0.007165729533880949, 0.011671087704598904, 0.00018657156033441424, 0.021642301231622696, 0.01684672012925148, -0.02857999876141548, -0.02998965047299862, -0.002983417361974716, 0.017275143414735794, -0.010910981334745884, 0.008989985100924969, -0.03460557013750076, 0.014144888147711754, -0.027460569515824318, -0.016763798892498016, 1.755856465024408e-05, 0.024641266092658043, -0.03988485410809517, 0.014842803589999676, 0.001971093937754631, 0.014400560408830643, -0.00195900141261518, -0.01400668639689684, 0.016210995614528656, -0.01037890650331974, -0.009383858181536198, 0.018947377800941467, 0.025304630398750305, 0.002605091780424118, 0.015561449341475964, -0.013861575163900852, -0.005883913952857256, 0.010033403523266315, 0.0019019934115931392, 0.013647363521158695, 0.0027692054864019156, -0.005272374022752047, 0.006664750631898642, -0.003496489254757762, -0.022236565127968788, 0.001537487842142582, -0.01165726687759161, -0.00169296411331743, 0.0038350820541381836, 0.005628241691738367, -0.01587931253015995, -0.01829783245921135, -3.643975651357323e-05, -0.004450077190995216, 0.001850167871452868, -0.021006574854254723, -0.004405161831527948, 0.008748132735490799, -0.03438444808125496, 0.017247503623366356, -0.02600945718586445, 0.004837040323764086, -0.03654038533568382, -0.014034327119588852, 0.033776361495256424, -0.01378556527197361, 0.01933434046804905, -0.00011801083019236103, 0.013129109516739845, 0.0506369024515152, -0.0023666946217417717, 0.0203708503395319, 0.019140860065817833, -0.017703566700220108, 0.0006996433367021382, 0.032504912465810776, 0.02372913807630539, -0.011083732359111309, -0.013509162701666355, -0.012431194074451923, -0.0004465624806471169, -0.011339404620230198, 0.007352301385253668, -0.03601521998643875, 0.010572387836873531, -0.00024055638641584665, -0.012465744279325008, -0.0019866416696459055, -0.018311653286218643, -0.004287690855562687, 0.024226661771535873, 0.013274220749735832, 0.007497412618249655, -0.03822644054889679, -0.003398020751774311, -0.02459980547428131, -0.024779466912150383, 0.006650930270552635, 0.0034809415228664875, 0.006961883045732975, -0.004875045735388994, 0.0002764023083727807, -0.02078545279800892, -0.01691582053899765, -0.010848790407180786, -0.0203708503395319, 0.018256371840834618, 0.019458722323179245, -0.008457910269498825, -0.0186433345079422, -0.02147645875811577, 0.0180628914386034, -0.02442014403641224, -0.014676962047815323, -0.028386516496539116, -0.006402168422937393, -0.03634690120816231, 0.0024254301097244024, -0.02372913807630539, -0.04555109888315201, 0.033361759036779404, 0.03808823600411415, 0.017703566700220108, -0.022167464718222618, -0.0268110241740942, 0.00020827345724683255, -0.009833011776208878, -0.03325119614601135, -0.0021749406587332487, -0.010938621126115322, -0.018864456564188004, -0.005524591077119112, -0.0038385370280593634, 0.01138086523860693, -0.061416592448949814, -0.021711401641368866, 0.029215723276138306, 0.011049182154238224, -0.029934369027614594, 0.027598770335316658, -0.02559485286474228, -0.006858231965452433, -0.00512726278975606, -0.020149728283286095, 0.009881382808089256, -0.0013975591864436865, 0.011477605439722538, -0.014068877324461937, -0.025138789787888527, -0.006543824449181557, -0.010814240202307701, 0.01594841293990612, -0.025166429579257965, -0.005545321386307478, -0.06241163983941078, -0.010779689997434616, -0.026313498616218567, 0.017344243824481964, 0.012652315199375153, 0.023466555401682854, 0.002216401044279337, 0.0107036791741848, -0.008084767498075962, -0.0002156153932446614, -0.004636648576706648, -0.009135096333920956, 0.01435909979045391, 0.00873431283980608, -0.011408505029976368, 0.015589090064167976, -0.023369815200567245, -0.007400671485811472, 0.010800420306622982, 0.0011954399524256587, 0.00753196282312274, 0.007856735959649086, 0.021255336701869965, 0.0059011890552937984, 0.005410575307905674, 0.028856400400400162, -0.03242199122905731, 0.018795356154441833, -0.01527122687548399, -0.02379823848605156, 0.024475423619151115, 0.0026862849481403828, 0.005697342567145824, -0.023563295602798462, 0.018491314724087715, 0.02448924444615841, -0.004812855273485184, -0.023756777867674828, -0.018173450604081154, -0.034577928483486176, -0.0018881732830777764, 0.02605091780424118, -0.002995509887114167, 0.0004884547088295221, -0.005113442428410053, -0.011788558214902878, -0.0035172193311154842, -0.0066751157864928246, -0.011995860375463963, -0.015589090064167976, 0.025415191426873207, 0.023480376228690147, 0.00229241163469851, -0.01013705413788557, 0.02089601382613182, 0.025235529989004135, -0.004398251883685589, 0.00436024647206068, -4.8694313591113314e-05, -0.011560526676476002, 0.05516989901661873, 0.0162248145788908, 0.015464709140360355, -0.008464820683002472, -0.018353113904595375, 0.024655085057020187, 0.012085691094398499, 0.03772891312837601, 0.01868479512631893, -0.028234494850039482, -0.009798461571335793, -0.010952441021800041, 0.019845684990286827, 0.038834523409605026, 0.0012420827988535166, 0.005027066916227341, 0.032256148755550385, 0.016307735815644264, 0.006429808679968119, -0.0035621346905827522, -0.013336410745978355, -0.01574111171066761, 0.006519639398902655, -0.011843838728964329, -0.0020401945803314447, -0.01802143082022667, -0.01829783245921135, -0.015589090064167976, 0.03960844874382019, -0.002874583937227726, 0.03792239725589752, -0.026382599025964737, 0.00626051239669323, 0.032781314104795456, -0.0032114493660628796, 0.03576646000146866, -0.017136942595243454, -0.007614883594214916, -0.023190153762698174, 0.007352301385253668, -0.009909022599458694, -0.019320521503686905, 0.0071035390719771385, -0.015312687493860722, -0.011961310170590878, 0.007400671485811472, -0.004021653439849615, 0.007469772361218929, 0.004460442345589399, -0.011201203800737858, -0.028179215267300606, 0.014144888147711754, -0.03455028682947159, 0.028234494850039482, -0.012887257151305676, 0.020564330741763115, -0.005742257926613092, -0.014842803589999676, -0.006644020322710276, -0.0018035250250250101, 0.015298867598176003, 0.00986065249890089, -0.001025279751047492, -0.025926535949110985, -0.02501440793275833, -0.004709204193204641, 0.001236900337971747, -0.007117359433323145, -0.011111373081803322, 0.03369344025850296, 0.0013578262878581882, -0.0009890019427984953, 0.005804448388516903, 0.00525855366140604, -0.007010253611952066, -7.590266613988206e-05, 0.0354347750544548, -0.005690432619303465, 0.046988390386104584, -0.04060349985957146, -0.025401372462511063, -0.018242552876472473, -0.011360134929418564, 0.023881159722805023, -0.020260289311408997, -0.015395608730614185, 0.00399401318281889, -0.01279742643237114, 0.00010910333367064595, -0.02462744526565075, 0.010731319896876812, -0.010524017736315727, 0.02117241732776165, 0.001101290457881987, -0.024655085057020187, -0.003962918184697628, -0.016197174787521362, -0.01247265376150608, 0.016321556642651558, -0.022360946983098984, -0.02172522060573101, 0.019500182941555977, 0.015105386264622211, -0.003845446975901723, 0.0026897399220615625, -0.016902001574635506, -0.03502017259597778, 0.0151883065700531, -0.001850167871452868, 0.011512155644595623, -0.011152832768857479, -0.010966261848807335, -0.02193252369761467, -0.025000588968396187, 0.03772891312837601, -0.02172522060573101, 0.009625710546970367, -0.002261316403746605, 0.02982380799949169, 0.018035249784588814, -0.015685830265283585, 0.0093216672539711, -0.0036105050239712, 0.04309111833572388, 0.0040942090563476086, 0.024516884237527847, -0.020536690950393677, 0.006253601983189583, 0.0019399987068027258, 0.023093411698937416, 0.006872052326798439, 0.02193252369761467, -0.025166429579257965, 0.0054624006152153015, 0.008153867907822132, -0.002150755375623703, 0.03825407847762108, 0.029796168208122253, -0.011864569038152695, -0.027543488889932632, -0.017523905262351036, 0.01698492094874382, 0.010565478354692459, 0.0009881382575258613, -0.00020082354603800923, 0.01663941890001297, -0.02504204958677292, 0.002527353586629033, 0.02971324697136879, -0.007352301385253668, 0.008679032325744629, -0.009162736125290394, 0.023190153762698174, -0.02605091780424118, 0.0094944192096591, -0.017897048965096474, 0.007110449485480785, -0.003087068209424615, -0.01781412772834301, -0.02649316005408764, 0.016556497663259506, 0.005735347978770733, 0.0026862849481403828, -0.021559379994869232, 0.031122898682951927, -0.012583214789628983, -0.005745713133364916, -0.035213652998209, -0.03275367245078087, 0.008022576570510864, 0.0016290460480377078, 0.007241740357130766, 0.010959351435303688, -0.0044189817272126675, 0.0012109875679016113, -0.010088684037327766, 0.021918702870607376, -0.01730278506875038, 0.04643558710813522, -0.002128297695890069, -0.03372108191251755, -0.008312799036502838, 0.015934592112898827, 0.024959128350019455, 0.0365956649184227, 0.03490960970520973, -0.025401372462511063, 0.01013705413788557, 0.013695734553039074, 0.00798802636563778, -0.005141082685440779, -0.00327709480188787, 0.00020222715102136135, 0.03106761910021305, 0.005134172737598419, 0.01926524005830288, 0.014842803589999676, -0.027584949508309364, 0.011021541431546211, -0.01422089897096157, 0.02161465957760811, -0.013536802493035793, 0.006267422344535589, -0.01999770663678646, 0.03607049956917763, -0.015547629445791245, 0.00042604823829606175, 0.030984697863459587, -0.0022872290574014187, 0.000946677871979773, 0.019292881712317467, 0.01492572482675314, -0.02857999876141548, 0.0187538955360651, 0.0029989650938659906, -0.008105497807264328, -0.009342397563159466, -0.01829783245921135, -0.022126004099845886, -0.022540608420968056, -0.009328577667474747, -0.005908099468797445, -0.010572387836873531, 0.02075781300663948, 0.0016359561122953892, 0.016210995614528656, -0.0040147434920072556, -0.0042738704942166805, 0.027944272384047508, 0.009335488080978394, -0.00012783607235178351, 0.009722450748085976, 0.006153406109660864, 0.0014891173923388124, 0.02566395327448845, -0.0204814113676548, -0.007649433799088001, -0.012465744279325008, 0.023093411698937416, -0.0055315010249614716, -0.002871128963306546, -0.009556610137224197, -0.020771633833646774, 0.008471730165183544, -0.013709554448723793, -0.00012869981583207846, -0.01416561845690012, -0.01868479512631893, -0.006118855904787779, -0.003479213919490576, 0.003240816993638873, -0.0012438104022294283, -0.0028089385014027357, -0.02570541389286518, 0.0028607638087123632, -0.008146957494318485, -0.002762295538559556, -0.005966834723949432, 0.0029108617454767227, -0.00916964653879404, 0.009059085510671139, -0.00746286241337657, 0.009446049109101295, 0.02704596519470215, -0.02418520115315914, -0.008105497807264328, 0.011187382973730564, 0.010544748045504093, 0.02296903170645237, 0.0018778081284835935, -0.023051952943205833, 0.03515837341547012, 0.0066302004270255566, -0.01264540571719408, 0.005925374571233988, -0.0006853913655504584, 0.010544748045504093, -0.0032926425337791443, -0.012673045508563519, -0.01252102479338646, -0.009577339515089989, 0.03145458176732063, -0.015575270168483257, -0.004000923130661249, 0.018975017592310905, 0.007939656265079975, 0.011512155644595623, 0.006858231965452433, 0.017772668972611427, -0.0005601465236395597, 0.01930670067667961, -0.01836693286895752, 0.014690782874822617, -0.004322241060435772, 0.023355994373559952, 0.038032956421375275, -0.007829095236957073, 0.013322590850293636, -0.010019583627581596, -0.02200162410736084, -0.023397454991936684, 0.009909022599458694, 0.005137627944350243, -0.02812393382191658, -0.016736159101128578, 0.02614765800535679, 0.023134872317314148, 0.0022094908636063337, 0.016404476016759872, -0.008568471297621727, -0.01972130499780178, 0.017095481976866722, 0.004681563936173916, 0.003505126805976033, -0.024433963000774384, -0.015381787903606892, -0.003952553030103445, -0.0038385370280593634, 0.010337445884943008, -0.00505816238000989, 0.015962233766913414, 0.03247727081179619, -0.05832088738679886, -0.01861569471657276, -0.0018899007700383663, -0.00490268599241972, 0.011291034519672394, -0.022609708830714226, -0.00865139253437519, -0.002586089074611664, -0.012838887050747871, -0.010710589587688446, -0.007884375751018524, -0.0019572738092392683, -0.00849246047437191, 0.021835781633853912, -0.019486362114548683, 0.005503860767930746, -0.030044930055737495, -0.0031371661461889744, -0.01437291968613863, -0.01385466568171978, -0.010503287427127361, 0.017026381567120552, -0.00897616520524025, 0.03698262944817543, -0.013716463930904865, -0.011677997186779976, -0.0008870786405168474, -0.014566401019692421, -0.018809176981449127, 0.005244733765721321, 0.011491426266729832, -0.02383969910442829, -0.022374765947461128, -0.009294027462601662, 0.007552693132311106, 0.034025125205516815, 0.000990729546174407, 0.002504895906895399, -0.016487397253513336, -0.0053725698962807655, 0.021213876083493233, -0.003942187875509262, -0.008941615000367165, 0.013688824139535427, -0.009853742085397243, -0.029906729236245155, 0.0044638970866799355, 0.00746286241337657, 0.02248532697558403, 0.009065995924174786, -0.008527010679244995, 0.0034394811373203993, 0.02902224287390709, -0.022706449031829834, 0.03560061752796173, -0.02446160465478897, 0.0054520354606211185, -0.035683538764715195, -0.01979040540754795, -0.006609470117837191, 0.016819080337882042, -0.00616722647100687, 0.024475423619151115, -0.01827019266784191, 0.016445936635136604, -0.023964079096913338, 0.03736959025263786, 0.036650944501161575, -0.0023338720202445984, -0.008533921092748642, 0.02570541389286518, 0.006650930270552635, 0.000533801969140768, 0.025138789787888527, -0.018104350194334984, -0.0020350120030343533, -0.020743992179632187, 0.021891063079237938, 0.009508239105343819, 0.001860533026047051, -0.0029229542706161737, 0.01525740697979927, 0.008008756674826145, 0.003330647712573409, 0.034577928483486176, -0.0250835083425045, -0.015920773148536682, -0.0032390893902629614, -0.0042738704942166805, 0.004253140650689602, -0.007981116883456707, 0.017247503623366356, 0.005908099468797445, 0.0011565708555281162, -0.010731319896876812, -0.0005294831353239715, -0.03366580232977867, -0.015602909959852695, 0.03587701916694641, -0.03667858615517616, -0.012597034685313702, 0.003627780359238386, 0.03396984189748764, -0.009839922189712524, 0.03850284218788147, 0.008126228116452694, -0.00994357280433178, 0.02667282149195671, 0.00941149890422821, 0.028220675885677338, -0.016307735815644264, 0.005873548798263073, 0.0016549588181078434, -0.028966961428523064, -0.012375913560390472, -0.01608661375939846, 0.028524717316031456, -0.00961880013346672, -0.0073384810239076614, -0.023273073136806488, -0.024240482598543167, -0.0026793747674673796, 0.015685830265283585, -0.009224927052855492, 0.00937694776803255, 0.031841546297073364, 0.00865139253437519, 0.012603945098817348, -0.019389621913433075, 0.018007609993219376, 0.005082347430288792, -0.01423471886664629, -0.006972248200327158, -0.0081124072894454, 0.0036588755901902914, 0.0009078088332898915, -0.022582069039344788, -0.007766904775053263, 0.004719569347798824, -0.021849602460861206, -0.004636648576706648, -0.008644482120871544, -0.00262927683070302, -0.014055057428777218, -0.0033030074555426836, 0.010054133832454681, -0.00925256684422493, -0.003150986274704337, 0.0006815044325776398, 0.01604515314102173, -0.028828760609030724, -0.011836928315460682, 0.013253490440547466, 0.009017624892294407, 0.018975017592310905, -0.018311653286218643, -0.018284011632204056, 0.0014614771353080869, -0.004481172189116478, -0.016128074377775192, -0.01958310417830944, 0.026023276150226593, -0.0009967758087441325, 0.0591500923037529, 0.007766904775053263, 0.0043291510082781315, -0.007331571076065302, 0.006688935682177544, -0.0034170234575867653, 0.010337445884943008, 0.0041494895704090595, 0.008603021502494812, 0.008471730165183544, 0.013640454038977623, -0.007670164108276367, 0.006025570444762707, 0.00044073211029171944, -0.028828760609030724, -0.006834046915173531, 0.02386733889579773, 0.027529669925570488, 0.008091677911579609, 0.01985950581729412, 0.02407464012503624, -0.004412071779370308, -0.030183130875229836, -0.00040920497849583626, -0.008451000787317753, 0.010993901640176773, 0.01972130499780178, 0.020218828693032265, 0.01813199184834957, 0.015409428626298904, -0.009439138695597649, 0.00760106323286891, 0.008692852221429348, 0.00623632688075304, 0.001123748137615621, 0.01861569471657276, 0.008229878731071949, 0.008623751811683178, -0.010544748045504093, 0.004197860136628151, 0.002161120530217886, -0.0011418870417401195, 0.020522871986031532, 0.020260289311408997, -0.016584137454628944, 0.0021870331838726997, 0.013840845786035061, -0.00766325369477272, 0.006813316605985165, 0.006834046915173531, -0.00677876640111208, -0.02096511423587799, 0.0028555812314152718, 0.0023114143405109644, 0.0041253045201301575, -0.023134872317314148, -0.011539796367287636, 0.00436024647206068, -0.005089257378131151, -0.00030274689197540283, -0.0007182141416706145, 0.005458945408463478, -0.005013247020542622, -0.02545665204524994, -0.019776584580540657, -0.016473576426506042, 0.003966372925788164, -0.012203161604702473, -0.003655420383438468, -0.008015667088329792, -0.0013673276407644153, 0.014635502360761166, 0.007006798405200243, -0.03739723190665245, 0.004754119552671909, 0.011387774720788002, 0.012230802327394485, 0.009024535305798054, 0.015824031084775925, 0.02383969910442829, -0.0034774865489453077, -0.0014044692507013679, -0.00300933001562953, -0.008381899446249008, 0.0035690448712557554, -0.007628703489899635, 0.0038247168995440006, -0.018905917182564735, 0.020329389721155167, -0.029105162248015404, 0.002382242353633046, 0.0035897749476134777, 0.008077857084572315, 0.008008756674826145, 0.0187538955360651, 0.008513190783560276, 0.003142348723486066, -0.0040147434920072556, 0.02133825793862343, -0.01151906605809927, -0.011097552254796028, 0.025954175740480423, -0.011781647801399231, 0.010938621126115322, 0.014732242561876774, 0.007780724670737982, 0.005220548715442419, 0.003275367198511958, -0.008250609040260315, 0.010738229379057884, -0.004588278476148844, 0.0055764163844287395, -0.0044638970866799355, 0.01399286650121212, -0.03421860560774803, -0.008333529345691204, -0.00021410381305031478, 0.013453882187604904, -0.01499482523649931, -0.009991942904889584, -0.0067753116600215435, 0.008084767498075962, -0.0033237377647310495, -0.010724409483373165, 0.017358064651489258, -0.002484165597707033, -0.013315681368112564, -0.013066918589174747, 0.0035068541765213013, 0.0013327773194760084, 0.003890362335368991, 0.008900154381990433, 0.01001267321407795, -0.004201314877718687, 0.0040942090563476086, 0.002050559502094984, -0.0014951637713238597, 0.0023580570705235004, 0.003956007771193981, -0.013585173524916172, 0.0161142535507679, 0.013322590850293636, 0.002506623510271311, 0.012230802327394485, -0.00878959335386753, 0.014013596810400486, -0.01954164355993271, -0.025442831218242645, 0.006688935682177544, 0.0004612463526427746, 0.027446748688817024, -0.034190963953733444, 0.0006404759478755295, -0.007711624260991812, 0.00391800282523036, 0.007469772361218929, -0.02193252369761467, 0.028552358970046043, 0.00048068087198771536, 0.012389733456075191, 0.013695734553039074, -0.009370038285851479, 0.0072210100479424, -0.013903035782277584, 0.006177591625601053, -0.019182320684194565, 0.021213876083493233, 0.029934369027614594, -0.0009976396104320884, -0.01257630530744791, -0.007766904775053263, -0.01428999938070774, 0.002073017181828618, -0.016459757462143898, -0.02082691341638565, -0.024862388148903847, -0.008160778321325779, -0.0031889916863292456, -0.01303927879780531, 0.021780502051115036, 0.0033617429435253143, 0.0019244510913267732, 0.019845684990286827, -0.007960386574268341, -0.03410804271697998, -0.0014416107442229986, 0.01885063759982586, -0.003575954819098115, -0.013592083007097244, 0.004913051147013903, -0.02366003766655922, 0.0071588195860385895, -0.001893355743959546, -0.015215947292745113, -0.02352183684706688, -0.0008076129597611725, 0.009432228282094002, 0.013688824139535427, 0.009922842495143414, -0.01885063759982586, -0.020052988082170486, 0.0018467128975316882, 0.00866521243005991, 0.007324661128222942, -0.007207190152257681, -0.01744098588824272, -0.016611779108643532, -0.015796391293406487, -0.005610966589301825, 0.008527010679244995, -0.016197174787521362, -0.038972724229097366, 0.005358749534934759, -0.005355294793844223, -0.023756777867674828, 0.021849602460861206, 0.007746174465864897, 0.02186342142522335, -0.007614883594214916, -0.005814813543111086, -0.008934704586863518, 0.010468737222254276, 0.024572165682911873, -0.016376836225390434, -0.0016394112026318908, 0.005365659948438406, 0.016058973968029022, 0.032781314104795456, 0.010586208663880825, -0.002228493569418788, 0.02750203013420105, -0.009964303113520145, -0.01032362598925829, 0.012002769857645035, 0.0012792244087904692, 0.029049882665276527, 0.010938621126115322, -0.016266275197267532, 0.0011764373630285263, -0.00872049294412136, -0.007179549895226955, -0.019527822732925415, -0.002755385357886553, -0.01815963163971901, 0.015160666778683662, -0.0011634809197857976, 0.0007510368595831096, -0.010109414346516132, -0.0014312457060441375, -2.4495613615727052e-05, -0.017620647326111794, -0.005358749534934759, -0.017026381567120552, 0.010924801230430603, 0.009024535305798054, 0.006004840135574341, -0.005358749534934759, 0.0009069450898095965, -0.00821605883538723, -0.021973982453346252, -0.007227920461446047, 0.015312687493860722, -0.026852484792470932, -0.013198209926486015, 0.014276179485023022, 0.017786487936973572, -0.03134402260184288, 0.010206155478954315, 0.022167464718222618, -0.0013630088651552796, 0.012230802327394485, -0.009072905406355858, 0.019279060885310173, 0.01272832602262497, -0.01751008629798889, -0.009404588490724564, 0.004163309931755066, -0.00948059931397438, 0.00979155208915472, 0.014621681533753872, -0.0028262136038392782, -0.00798802636563778, 0.0006473860121332109, -0.01278360653668642, 0.01216170098632574, -0.019389621913433075, 0.02276173047721386, 0.007552693132311106, -0.00028093703440390527, 0.004412071779370308, 0.0033842006232589483, -0.0006266558775678277, 0.020633431151509285, -0.0029454119503498077, -0.02126915752887726, 0.015658190473914146, -9.852230869000778e-05, 0.00451572285965085, 0.016722340136766434, -5.12585902470164e-05, 0.003299552481621504, -0.0011211568489670753, -0.027488209307193756, 0.007303930819034576, 0.0063296128064394, 0.015920773148536682, 0.014621681533753872, 0.0040700240060687065, -0.0225544273853302, 0.019154679030179977, 0.011726368218660355, -0.002836578758433461, 0.02303813211619854, 0.011850749142467976, -0.008236788213253021, 0.011767827905714512, 0.0031889916863292456, 0.006606014911085367, -0.02625821903347969, 0.019251421093940735, 0.00904526561498642, 0.013426242396235466, -0.021434998139739037, 0.021075675264000893, -0.008430270478129387, 0.014842803589999676, 0.012983998283743858, -0.0035033992026001215, -0.0025342635344713926, -0.043256960809230804, 0.01347461249679327, 0.015782572329044342, -0.011553616262972355, -0.006284697446972132, -0.02034320868551731, 0.009204196743667126, -0.03455028682947159, -0.00443625682964921, -0.01896119862794876, 0.0018674430903047323, -0.0088586937636137, 0.00714499969035387, -0.011809288524091244, -0.017496265470981598, -0.0024565255735069513, 0.01569965109229088, 0.0035966848954558372, -0.010261435993015766, 0.015146845951676369, 0.011132102459669113, -0.001981459092348814, -0.017233682796359062, 0.008907063864171505, 0.002283774083480239, 0.008457910269498825, -0.0034256610088050365, -0.004605553578585386, 0.03524129465222359, 0.003351378021761775, 0.012838887050747871, -0.004370611626654863, 0.01995624601840973, 0.0020453771576285362, 0.00571807287633419, 0.010095594450831413, 0.020633431151509285, -0.0031268009915947914, 0.0288840401917696, -0.02874583937227726, 0.012956357561051846, 0.005161812994629145, -0.015478529036045074, -0.009535879828035831, -0.02805483341217041, -0.019279060885310173, 0.011463785544037819, 0.002674192190170288, 0.006588739808648825, -0.014131068252027035, -0.001358690089546144, 0.04018889367580414, 0.0004055339959450066, -0.01183001883327961, -0.009273297153413296, 0.010655309073626995, 0.009335488080978394, 0.029602685943245888, 0.011401594616472721, 0.004850860219448805, -0.0016748252091929317, -0.01532650738954544, 0.0022094908636063337, 0.004667744040489197, -0.015105386264622211, 0.006367618218064308, 0.011187382973730564, -0.010233795270323753, 0.034163326025009155, 0.013225850649178028, -0.014718422666192055, -0.004201314877718687, -0.005113442428410053, 0.014331459067761898, 0.014483480714261532, 0.0033392852637916803, -0.015229767188429832, -0.007552693132311106, 0.017427165061235428, 0.006312337704002857, -0.009888292290270329, -0.008174598217010498, -0.004913051147013903, -0.01767592690885067, -0.014386739581823349, 0.020591972395777702, 0.007255560718476772, 5.206836431170814e-05, -0.011249573901295662, -0.008457910269498825, -0.015008645132184029, 0.0006283833645284176, 0.007006798405200243, 0.004982151556760073, -0.014718422666192055, 0.00354140461422503, -0.01183001883327961, 0.027736971154808998, 0.0054969508200883865, -0.00942531879991293, 0.002817576052621007, -0.012790516950190067, 0.0014156980905681849, -0.018173450604081154, -0.014137977734208107, -0.02570541389286518, -0.02064725197851658, 0.016722340136766434, -0.007386851590126753, 0.003731431206688285, -0.02200162410736084, -0.023549476638436317, -0.030984697863459587, 0.007967296056449413, 0.0020678348373621702, 0.01903029903769493, 0.016653239727020264, 0.0107036791741848, 0.0058459085412323475, -0.011339404620230198, -0.004978696350008249, -0.01348843239247799, 0.004805944859981537, -0.017841769382357597, -0.001603997079655528, -0.021186236292123795, -0.0055764163844287395, -0.0011107918107882142, -0.018947377800941467, 0.016349196434020996, -0.010295986197888851, 0.008167687803506851, -0.007324661128222942, -0.005002881865948439, 0.024572165682911873, -0.012825067155063152, 0.027598770335316658, 0.022499147802591324, 0.010862610302865505, 0.0017326968954876065, 0.016902001574635506, 0.011664177291095257, 0.011387774720788002, 0.014842803589999676, 0.008478640578687191, 0.016376836225390434, 0.0036070500500500202, 0.021462639793753624, 0.015229767188429832, -0.007559603080153465, -0.0008508008322678506, -0.001503801322542131, 0.018145810812711716, 0.0013863303465768695, 0.002948867157101631, 0.02591271512210369, -0.009487508796155453, -0.0004057499463669956, 0.010371996089816093, 0.014262358658015728, 0.0032598196994513273, 0.02660372108221054, -0.005099622532725334, 0.017565365880727768, 0.006682025734335184, -0.008022576570510864, 0.00376598141156137, -0.013958316296339035, 0.03822644054889679, 0.006315792445093393, -0.004622828681021929, 0.014607861638069153, -0.00011142467701574787, -0.00398710323497653, 0.019071759656071663, 0.014621681533753872, 0.021117135882377625, -0.004083843901753426, 0.00677876640111208, 0.019638383761048317, -0.0006339977844618261, -0.0007562194368802011, 0.021600840613245964, -0.013481521978974342, 0.028552358970046043, 0.0165703184902668, 0.034163326025009155, 0.004674653988331556, 0.0201359074562788, 0.0008166824118234217, 0.017358064651489258, -0.020674891769886017, -0.01583785191178322, -0.004412071779370308, 0.025650134310126305, -0.01106991246342659, -0.02860763855278492, -0.010544748045504093, 0.0017076480435207486, -0.003150986274704337, -0.02068871259689331, -0.034190963953733444, 0.000328443682519719, 0.01063457876443863, 0.007670164108276367, -0.006388348061591387, 0.013101468794047832, 0.027543488889932632, 0.009300937876105309, 0.03916620835661888, -0.00956351961940527, 0.014773703180253506, 0.017523905262351036, -0.0020090993493795395, -0.008837963454425335, -0.012154791504144669, 0.00571807287633419, -0.008900154381990433, 0.011747097596526146, 0.0036934257950633764, 0.015727290883660316, -0.00968790054321289, -0.0034481186885386705, 0.01532650738954544, 0.015658190473914146, 0.016058973968029022, -0.022236565127968788, -0.011947489343583584, 0.0070240735076367855, 0.027004504576325417, 0.0014727059751749039, -0.019154679030179977, -0.018118171021342278, 0.005479675717651844, 0.011346315033733845, -0.016459757462143898, -0.0043084206990897655, 0.007677074056118727, 0.01670851930975914, -0.009148916229605675, 0.01018542516976595, 0.002428885316476226, -0.011525976471602917, -0.008195328526198864, 0.007690893951803446, -0.006191411521285772, -0.0004893184523098171, -0.020743992179632187, -0.014262358658015728, 0.019873324781656265, -0.007670164108276367, 0.00010305702744517475, -0.008713582530617714, -0.02605091780424118, 0.006346887908875942, -0.011664177291095257, 0.026935404166579247, 0.04129450395703316, 0.0037590712308883667, 0.026161478832364082, -0.01008177362382412, 0.010572387836873531, -0.01264540571719408, -0.0041702198795974255, 0.002572268946096301, 0.010876431129872799, -0.012493384070694447, 0.003931822720915079, 0.008796503767371178, -0.024157561361789703, -0.016667058691382408, -0.0179523304104805, 0.01286652684211731, -0.016197174787521362, 0.013080739416182041, -0.008506281301379204, -0.005227458663284779, 0.0014847986167296767, -0.009135096333920956, -0.0044189817272126675, -0.026852484792470932, -0.0011487971059978008, 0.00968790054321289, -0.012189341709017754, -0.011553616262972355, -6.50517176836729e-05, -0.01767592690885067, 0.01940344087779522, -0.00878959335386753, 0.0018415303202345967, -0.020978935062885284, -0.023411275818943977, 0.018187271431088448, 0.013875395990908146, 0.025097329169511795, -0.020246468484401703, -0.032256148755550385, 0.007407581899315119, 0.002653462113812566, 0.00961880013346672, 0.00904526561498642, 0.0042635053396224976, 0.009197286330163479, -0.009902112185955048, -0.01988714560866356, 0.019970066845417023, 0.007072444073855877, -0.02131061814725399, -0.001737879472784698, 0.0044638970866799355, -0.018422214314341545, -0.003752161283046007, -0.007303930819034576, -0.008533921092748642, 0.0022768639028072357, 0.0037936216685920954, -0.010724409483373165, 0.027750791981816292, 0.0031665340065956116, 0.009059085510671139, 0.005583326332271099, -0.012762876227498055, 0.030901778489351273, -0.018726255744695663, 0.009086725302040577, -0.007773814722895622, -0.0381987988948822, 0.0045433626510202885, -0.033195916563272476, 0.0492548905313015, -0.004913051147013903, -0.01196821965277195, -0.014151797629892826, -0.020702533423900604, 0.0052481889724731445, -0.003261547302827239, 0.004488082602620125, 0.004311875905841589, 0.0009950483217835426, -0.0031561688520014286, -0.003973283339291811, -0.011988949961960316, 0.007359211333096027, -0.013999776914715767, 0.02621675841510296, 0.017219863831996918, -0.014414380304515362, -0.0007177822408266366, -2.7019405024475418e-05, 0.01583785191178322, -0.040492936968803406, -0.011463785544037819, -0.00045951883657835424, -0.0031889916863292456, -0.010537837632000446, -1.0621514775266405e-05, 0.01430381927639246, 0.008851783350110054, -0.01663941890001297, -0.009888292290270329, 0.0008222968317568302, -0.008934704586863518, 0.0067753116600215435, -0.019486362114548683, -0.034163326025009155, 0.007656343746930361, 0.0007639932446181774, -0.0224438663572073, -0.024157561361789703, -0.007607973646372557, -0.0041598547250032425, -0.02801337279379368, 0.009010715410113335, -0.002537718741223216, -0.00878959335386753, -0.007138089742511511, -0.019596923142671585, 0.02421284094452858, 0.007207190152257681, -0.012009680271148682, -0.007780724670737982, 0.004301510751247406, 0.015022465027868748, 0.018242552876472473, -0.023673856630921364, -0.0028279409743845463, -0.026161478832364082, 0.013032368384301662, 0.0015340327518060803, -0.005669702310115099, 0.008658302016556263, 0.005106532480567694, -0.018740076571702957, -0.00956351961940527, 0.0020401945803314447, 0.010061044245958328, -0.012603945098817348, -0.001067603938281536, 0.008361170068383217, 0.002026374451816082, 0.015354148112237453, 0.013751015067100525, -0.006498909089714289, 0.012355183251202106, 0.0004130918823648244, -0.01590695232152939, 0.0014010141603648663, 0.016418296843767166, 0.0005204137414693832, -0.016031334176659584, 0.0027381102554500103, -0.004868135787546635, -0.02345273643732071, -0.01594841293990612, 0.0007609701133333147, 0.00655418960377574, -0.025815974920988083, -0.008962344378232956, 0.004837040323764086, -0.03137166053056717, 0.007649433799088001, 0.002473800675943494, -0.008029486984014511, -0.00012189773406134918, 0.005296559073030949, 0.007932745851576328, 0.004961421247571707, 0.009121276438236237, -0.0020177369005978107, -0.007234830409288406, 0.0040354738011956215, 0.018049070611596107, -0.00020157934341114014, -0.027280908077955246, -0.00014986188034527004, -0.004985606763511896, 0.02826213650405407, 0.002539446111768484, -0.017288964241743088, -0.008140048012137413, 0.021669941022992134, 0.0008391401497647166, -0.024959128350019455, -0.009646440856158733, -0.024060821160674095, -0.010959351435303688, -0.027128886431455612, 0.0055971466936171055, -0.00759415328502655, -0.004985606763511896, 0.022609708830714226, 0.001315502217039466, 0.0034515736624598503, -0.023121053352952003, 0.0036450554616749287, -0.004405161831527948, -0.00911436602473259, 0.026921585202217102, 0.01527122687548399, -0.004571002908051014, 0.020218828693032265, 0.01944490149617195, 0.002430612687021494, -0.015312687493860722, -0.0032114493660628796, 0.01847749389708042, 0.012963267974555492, 0.012963267974555492, -0.009342397563159466, -0.0017758847679942846, -0.013080739416182041, 0.01196821965277195, 0.015920773148536682, 0.006219051778316498, 0.006992978509515524, -0.01195439975708723, 0.027280908077955246, -0.007766904775053263, 0.014690782874822617, 0.012120241299271584, -0.008312799036502838, -0.00961880013346672, -0.017288964241743088, 0.019292881712317467, 0.011256483383476734, -0.006194866728037596, -0.009777731262147427, -0.012154791504144669, 0.00399401318281889, -0.003776346566155553, 0.016445936635136604, -0.011201203800737858, 0.006699300836771727, 0.012272262014448643, -0.01746862567961216, -0.010358176194131374, -0.009010715410113335, -0.005379479844123125, -0.0132327601313591, -0.01422089897096157, -0.035959940403699875, -0.010682948864996433, 0.02207072451710701, 0.003911092411726713, 0.017841769382357597, 0.0037798015400767326, 0.011270304210484028, -0.006115401163697243, -0.008333529345691204, 0.026161478832364082, -0.0010218247771263123, -0.0005925374571233988, -0.02041231095790863, 0.02193252369761467, 0.014759883284568787, 0.01889209821820259, 0.0068098618648946285, -0.006948063150048256, 0.0024910757783800364, -0.00654727965593338, -0.02283083088696003, 0.007449042052030563, 0.004944146145135164, -0.003717611078172922, 0.022637348622083664, -0.002993782516568899, 0.028801120817661285, -0.002993782516568899, 0.009287117049098015, -0.0007588107255287468, -0.026133837178349495, 0.02916044369339943, 0.03131638094782829, 0.001458885963074863, -0.028096294030547142, 0.021849602460861206, 0.006682025734335184, 0.022222746163606644, -0.012009680271148682, -0.009197286330163479, 0.007732354570180178, -0.010219975374639034, 0.009812281467020512, -0.017993789166212082, 0.024585984647274017, 0.0035966848954558372, 0.004823220428079367, 0.016183355823159218, 0.013267310336232185, 0.0015832670032978058, 7.719830318819731e-05, -0.006177591625601053, 0.018214911222457886, -0.011373954825103283, 0.005068527068942785, -0.011961310170590878, -0.001313774730078876, 0.0038247168995440006, -0.01498100534081459, 0.0176068264991045, 0.019900966435670853, 0.011740188114345074, 0.007010253611952066, 0.029215723276138306, -0.006291607394814491, 0.014649322256445885, -0.018145810812711716, 0.0011954399524256587, 0.0021697580814361572, -0.006274332292377949, 0.0068444120697677135, -0.0004577913205139339, 0.020840734243392944, -0.0022112184669822454, -0.015754930675029755, -0.03640218451619148, 0.005030522122979164, -0.057270556688308716, -0.0036485104355961084, 0.0001240571291418746, 0.020315568894147873, -0.011249573901295662, 0.004539907909929752, 0.005220548715442419, -0.009833011776208878, -0.00783600565046072, 0.006792586762458086, 0.013889215886592865, -0.010862610302865505, -0.012949448078870773, -0.0004068296402692795, -0.01158816646784544, 0.029326284304261208, 0.0013863303465768695, -0.00017016017227433622, 0.016031334176659584, 0.005147993098944426, -0.02363239787518978, -0.0018311652820557356, -8.41623404994607e-05, -0.021752862259745598, 0.01636301726102829, -0.024060821160674095, 0.0012619493063539267, -0.0032563647255301476, -0.008070947602391243, -0.003163078799843788, 0.011429235339164734, -0.010233795270323753, -0.004771394655108452, 0.010993901640176773, 0.03247727081179619, 0.0035258568823337555, -0.0014528395840898156, -0.015796391293406487, -0.017551546916365623, 0.005410575307905674, 0.003453301265835762, -0.0008184099569916725, 0.010655309073626995, 0.001571174361743033, 0.001948636258020997, 0.004550273064523935, 0.013619723729789257, 0.0019434536807239056, 0.009936662390828133, -0.012700686231255531, -0.0022215836215764284, -0.028773479163646698, -0.005479675717651844, -0.004871590528637171, -0.014400560408830643, -0.005096167325973511, 0.007614883594214916, -0.017316604033112526, 0.02483474649488926, -0.016072794795036316, 0.010261435993015766, -0.018629515543580055, -0.001748244627378881, 0.003710700897499919, 0.008015667088329792, 0.008119317702949047, 0.0031924466602504253, -0.0014442020328715444, 0.03551769629120827, 0.002620639279484749, -0.035904660820961, 0.011740188114345074, 0.000824888120405376, 0.010199245065450668, -0.010503287427127361, 0.005908099468797445, 0.03549005463719368, 0.005749167874455452, 0.01247265376150608, -0.0010304623283445835, -0.010669128969311714, -0.0068444120697677135, 0.013536802493035793, 0.006695845630019903, -0.018007609993219376, -0.012707595713436604, 0.003199356608092785, 0.00579408323392272, -0.0021438454277813435, 0.02124151773750782, 0.01944490149617195, 0.005455490667372942, -0.010544748045504093, 0.006992978509515524, 0.013115289621055126, 0.03054245375096798, -0.001926178578287363, -0.024171382188796997, 0.010219975374639034, -0.01378556527197361, -0.006509274244308472, 5.8519552112556994e-05, -0.02207072451710701, 0.0029730522073805332, 0.010130144655704498, -0.00980537198483944, -0.019486362114548683, 0.010890251025557518, -0.005020156968384981, 0.036236342042684555, -0.004132214467972517, 0.010302895680069923, -0.01181619893759489, 0.034716129302978516, -0.009729361161589622, 0.03524129465222359, 0.003254637122154236, -0.0059357392601668835, -0.010282165370881557, -0.005559141281992197, 0.006550734397023916, -0.03040425293147564, -0.018933556973934174, -0.017496265470981598, -0.01751008629798889, 0.00024163608031813055, 0.01214097160845995, 0.007642523851245642, -0.0015279864892363548, -0.008741223253309727, -0.016597958281636238, 0.012666136026382446, -0.007490502670407295, 0.0038696322590112686, 0.014048147015273571, -0.004121849313378334, -0.010876431129872799, -0.018104350194334984, -0.0019780038855969906, -0.006288152653723955, 0.019845684990286827, -0.005669702310115099, 0.015077745541930199, 0.01629391498863697, -0.011063002049922943, 0.0009846831671893597, -0.018767716363072395, 0.02057815156877041, 0.010973171330988407, 0.008451000787317753, -0.0007281473372131586, 0.021821962669491768, 0.025415191426873207, 0.011705637909471989, -0.014400560408830643, -0.0036070500500500202, 0.0037245210260152817, 0.003031787695363164, 0.0008693716372363269, 0.009086725302040577, -0.028828760609030724, -0.009964303113520145, 0.02168375998735428, 0.013129109516739845, -0.0033582879696041346, 0.026133837178349495, 0.008008756674826145, 0.008727402426302433, -0.013592083007097244, -0.017275143414735794, -0.012500294484198093, 0.03150986135005951, -0.02570541389286518, -0.021669941022992134, 0.012189341709017754, -0.017109302803874016, -0.009971213527023792, -0.0053829350508749485, -0.006523094605654478, 0.007324661128222942, 0.002819303423166275, 0.0057560778222978115, 0.0062432368285954, -0.006992978509515524, 0.01961074396967888, 0.01930670067667961, -0.00954969972372055, 0.011304854415357113, -0.0026120017282664776, 0.0037383411545306444, 0.004567548166960478, 0.001549580367282033, 0.0022198560182005167, -0.010800420306622982, -0.019140860065817833, 0.008603021502494812, -0.001537487842142582, 0.009798461571335793, -0.012500294484198093, 0.020011527463793755, 0.011353224515914917, 0.015450889244675636, -0.006519639398902655, -0.022734088823199272, -0.008658302016556263, -0.021573198959231377, -0.00987447239458561, -0.014828983694314957, -0.015243587084114552, 0.004823220428079367, -0.012382823042571545, -0.011781647801399231, 0.0026016368065029383, 0.017247503623366356, -0.013336410745978355, -0.0016575501067563891, 0.0026914675254374743, 0.004049293696880341, -0.008913974277675152, 0.010371996089816093, 0.0033012800849974155, -0.010233795270323753, 0.001147069619037211, -0.003106070915237069, 0.003907637670636177, -0.00474720960482955, 0.008561561815440655, 0.013847755268216133, 0.01077277958393097, 0.030155491083860397, 0.023964079096913338, -0.007511232513934374, 0.024572165682911873, -0.004187494982033968, 0.01574111171066761, 0.005151447840034962, 0.021061856299638748, 0.011836928315460682, -0.008077857084572315, -0.013550623320043087, 0.010040313936769962, -0.004854315426200628, -0.007773814722895622, -0.00873431283980608, -0.00661638006567955, 0.004861225374042988, -0.011629627086222172, 0.0013794202823191881, -0.009459869004786015, 0.012030410580337048, -0.013260400854051113, -0.012465744279325008, 0.00910054612904787, 0.02386733889579773, 0.014103427529335022, 0.005334564484655857, 0.0025774515233933926, 0.0056420620530843735, 0.004702294245362282, 0.013737194240093231, -0.009010715410113335, -0.0010408274829387665, 0.011180473491549492, -0.015713471919298172, -0.030072569847106934, -0.013101468794047832, -0.001882990705780685, -0.017136942595243454, -0.004868135787546635, 0.011975130066275597, 0.008755043148994446, 0.0134055120870471, 0.01885063759982586, -0.015146845951676369, -0.0054520354606211185, -0.016957281157374382, -0.005959924776107073, -0.03200738504528999, -0.0009509967057965696, 0.023466555401682854, -0.0020972024649381638, -0.002064379630610347, -6.138074968475848e-05, 0.005742257926613092, 0.03656802326440811, 0.009003804996609688, -0.021835781633853912, 0.0012507204664871097, 0.004857770632952452, 0.014262358658015728, -0.018947377800941467, 0.014455840922892094, -0.0007994073093868792, -0.0071035390719771385, -0.029879089444875717, -0.01423471886664629, 0.010710589587688446, -0.012272262014448643, -0.02165612019598484, 0.00897616520524025, 0.0054382155649363995, 0.00497178640216589, 0.006246692035347223, 0.014856623485684395, -0.012272262014448643, 0.006284697446972132, -0.02777843177318573, -0.0055315010249614716, -0.0010779689764603972, 0.010503287427127361, -0.0037348861806094646, 0.0007268516928888857, 0.01912703923881054, -0.01581021212041378, 0.003030060324817896, 0.02476564608514309, 0.01698492094874382, 0.011042271740734577, 0.0023200518917292356, -0.010454917326569557, 0.010959351435303688, 0.004474262241274118, 0.010302895680069923, 0.01827019266784191, -0.005365659948438406, -0.013018548488616943, -0.011857658624649048, -0.014718422666192055, -0.018256371840834618, 0.00021345600544009358, -0.0063296128064394, 0.004291145596653223, -0.019182320684194565, -0.0018916282569989562, -0.010005763731896877, -0.003408385906368494, 0.008969254791736603, -0.0009440866415388882, -0.021669941022992134, 0.0017033291514962912, -0.002437522867694497, -0.011484515853226185, 0.021075675264000893, -0.006257057189941406, -0.01254175417125225, -0.02453070506453514, 0.02390879951417446, 0.011104462668299675, 0.025276990607380867, 0.02110331505537033, -0.015423248521983624, -0.016335375607013702, 0.0011617534328252077, 0.011429235339164734, -0.0012178976321592927, 0.004995971452444792, 0.02442014403641224, 0.016902001574635506, -0.01254175417125225, -0.019735123962163925, 0.012997818179428577, -0.01889209821820259, -0.006526549346745014, 0.0009423590963706374, -0.03712083026766777, 0.014828983694314957, -0.011836928315460682, 0.0009527241927571595, 0.0006711393361911178, -0.0177173875272274, 0.003130256198346615, -0.00497178640216589, 0.0035224019084125757, 0.016528857871890068, 0.0088586937636137, 0.02473800629377365, -0.01520212646573782, 0.0041425796225667, -0.01532650738954544, 0.00035522013786248863, 0.03529657423496246, 0.02871819958090782, -0.0024357952643185854, -0.008913974277675152, -0.0003584592486731708, -0.030570095404982567, 0.02690776437520981, 0.0035033992026001215, 0.009190376847982407, -0.02064725197851658, -0.0031699889805167913, -0.0018000700511038303, 0.007559603080153465, 0.013585173524916172, 0.002553266240283847, 0.008153867907822132, 0.0020885649137198925, -0.00684095686301589, 0.0013725102180615067, 0.0022233109921216965, 0.012134061194956303, -0.0015789481112733483, -0.01705402135848999, -0.0011600259458646178, 0.025470472872257233, 0.0072141001001000404, 0.015644369646906853, 0.01416561845690012, 0.007808364927768707, -0.00904526561498642, 0.02207072451710701, -0.008513190783560276, -0.019154679030179977, 0.0058113583363592625, 0.010178514756262302, 0.01698492094874382, 0.009010715410113335, 0.005324199330061674, -0.00798802636563778, 0.002361512277275324, -0.022056903690099716, -0.0070689888671040535, 0.02137971855700016, -0.004132214467972517, -0.038447558879852295, -9.05325505300425e-05, 0.010793509893119335, 0.009010715410113335, -0.00986065249890089, -0.0013319136342033744, 0.012451923452317715, 0.007994936779141426, -0.02487620711326599, -0.014400560408830643, -0.0016955554019659758, 0.006557644810527563, 0.01011632476001978, -0.014856623485684395, -0.012182431295514107, -0.015409428626298904, -0.015409428626298904, 0.006447083782404661, 0.0029454119503498077, 0.02241622656583786, -0.0059011890552937984, 0.01857423409819603, 0.006215597037225962, 0.014607861638069153, 0.00496487645432353, -0.027736971154808998, 0.017233682796359062, -0.007559603080153465, 0.007483592256903648, -0.0036001401022076607, -0.00207128981128335, -0.02193252369761467, -0.02383969910442829, 0.01733042486011982, 0.00880341324955225, 0.03242199122905731, -0.004173674620687962, -0.01513302605599165, -0.01746862567961216, -0.003463666420429945, 0.006263967137783766, 0.007628703489899635, -0.0041702198795974255, 0.010268345475196838, 0.013827024959027767, -0.02251296676695347, -0.014635502360761166, -0.016542678698897362, 0.008589201606810093, 0.009093635715544224, 0.009204196743667126, -0.004481172189116478, -0.0040251086466014385, -0.004484627395868301, 0.012583214789628983, 0.002193943364545703, 0.0036381452810019255, -0.019458722323179245, -0.00948059931397438, 0.001157434657216072, -0.015285047702491283, -0.035545337945222855, -0.014414380304515362, 0.002093747491016984, -0.005185998044908047, -0.00029346151859499514, -0.019596923142671585, 0.013806294649839401, -0.0069687929935753345, 0.028939321637153625, -0.00034550289274193347, 0.005244733765721321, 0.010143964551389217, 0.014179438352584839, 0.011906029656529427, -0.004118394106626511, -0.01241737324744463, -0.00474029965698719, 0.013633543625473976, 0.0054969508200883865, 0.0010857428424060345, 0.0020367393735796213, -0.006619835272431374, 0.017233682796359062, -0.02131061814725399, -0.004208225291222334, 0.019762765616178513, -0.007366121280938387, 0.007614883594214916, 0.00790510606020689, -0.0033479228150099516, 0.005400210153311491, 0.024309583008289337, -0.010130144655704498, 0.0019987341947853565, 0.011090642772614956, -0.014455840922892094, 0.01636301726102829, 0.008271339349448681, -0.007932745851576328, -0.003353105392307043, -0.0054520354606211185, 0.0012524479534476995, 0.026023276150226593, 0.017620647326111794, 0.0042946008034050465, 0.0032684572506695986, -0.0012515841517597437, -0.023342175409197807, 0.018740076571702957, -0.008160778321325779, 0.003949097823351622, -0.004799034912139177, 0.0028141208458691835, -0.004957966506481171, 0.0018069801153615117, 0.011871478520333767, -0.0017793398583307862, 0.014179438352584839, 0.02251296676695347, -0.0007164865965023637, 0.0008538240217603743, -0.019500182941555977, -0.00046945203212089837, -0.02168375998735428, -0.004837040323764086, 0.001983186462894082, 0.0034170234575867653, -0.010109414346516132, 0.0028020283207297325, -0.0026413695886731148, 0.0002118364500347525, 0.006671660579741001, 0.00986065249890089, 0.011788558214902878, -0.014870444312691689, -0.003810896771028638, 0.01974894478917122, 0.022374765947461128, 0.009833011776208878, -0.005904644262045622, 0.014483480714261532, -0.013073829002678394, 0.022775549441576004, 0.002539446111768484, 0.006229416932910681, 0.006153406109660864, 0.020605791360139847, -0.01499482523649931, -0.00579408323392272, -0.0031268009915947914, 0.0016782802995294333, 0.0023666946217417717, 0.012030410580337048, -0.01974894478917122, -0.0043291510082781315, 0.017012562602758408, 0.0054174852557480335, -0.011726368218660355, -0.021352078765630722], "6af18d53-c5b3-4f1b-b368-c570bddf9677": [-0.04092947393655777, 0.0033543433528393507, -0.013157960958778858, 0.03796064481139183, -0.0111186932772398, -0.030725929886102676, 0.020536797121167183, 0.03239769861102104, -0.03257063776254654, 0.014512669295072556, 0.01304266694933176, 0.03530887886881828, -0.0344441719353199, -0.02268415316939354, -0.001578991417773068, 0.04343712702393532, -0.01182487141340971, -0.0034480199683457613, 0.011673547327518463, -0.003837138181552291, 0.03997829556465149, 0.009418102912604809, -0.020075619220733643, -0.004492874722927809, -0.049000076949596405, -0.009850456379354, -0.0015447634505107999, -0.009944132529199123, -0.03283005207777023, -0.02317415364086628, 0.03409828618168831, 0.014109139330685139, 0.01008104532957077, 0.0009953139815479517, -0.005620596930384636, -0.052084196358919144, 0.025537686422467232, -0.01677531935274601, 0.019600030034780502, 0.009562220424413681, -0.07655540853738785, 0.046060070395469666, -0.00388757954351604, -0.015002669766545296, -0.02364974282681942, -0.019902678206562996, 0.038104765117168427, 0.009936926886439323, -0.004024491645395756, -0.042140066623687744, 0.019989147782325745, 0.009410897269845009, -0.04735713079571724, 0.002062686951830983, -0.023375919088721275, -0.07165540754795074, 0.000867409398779273, 0.12209665775299072, 0.019412677735090256, -0.06168244779109955, 0.00405691796913743, -0.023765036836266518, -0.013258843682706356, -0.01404428668320179, -0.03758594021201134, -0.02709415927529335, -0.0009962148033082485, 0.012120313011109829, -0.058915384113788605, 0.020536797121167183, 0.0026607762556523085, 0.022266210988163948, -0.02455768547952175, 0.012271636165678501, -0.02174738608300686, 0.016083553433418274, 0.06197068467736244, -0.027843572199344635, 0.01307869702577591, 0.03248416632413864, -0.004766698461025953, -6.738636147929356e-05, 0.03352181613445282, 0.009684721007943153, 0.028967691585421562, 0.013057079166173935, -0.04283183068037033, -0.04193830117583275, -0.03657711669802666, -0.02413974329829216, 0.02960181050002575, 0.045570071786642075, 0.016559142619371414, 0.0030138648580759764, 0.01358310878276825, 0.010462957434356213, 0.004669419024139643, 0.008452513255178928, 0.019873853772878647, -0.01503149326890707, -0.022986799478530884, 0.06519892066717148, -0.030812399461865425, 0.016847379505634308, -0.01926855929195881, -0.0018663264345377684, -0.01674649678170681, -0.018447088077664375, -0.009641485288739204, 0.03366593271493912, 0.0030084603931754827, -0.0443883016705513, -0.008293983526527882, 0.007047363556921482, -0.008589425124228, -0.01634296588599682, -0.0033759609796106815, -0.010174721479415894, 0.0037110350094735622, -0.041102416813373566, 0.009201926179230213, 0.033694759011268616, -0.006052950397133827, 0.025220626965165138, 0.013222814537584782, 0.007378834765404463, 0.02217973954975605, -0.0030102620366960764, 0.030322398990392685, -0.034242406487464905, -0.0221365038305521, 0.0008741649216972291, -0.016587967053055763, 0.01673208363354206, -0.009958544746041298, -0.020983561873435974, 0.013395755551755428, 0.06444951146841049, -0.01678973250091076, 0.06496833264827728, -0.01082325167953968, -0.029183868318796158, -0.0009592845453880727, -0.0003571420966181904, 0.010124280117452145, -0.023462388664484024, -0.05779126659035683, 0.024543272331357002, 0.022338269278407097, 0.028837986290454865, -0.014635169878602028, -0.051046550273895264, 0.019888265058398247, 0.00027404914726503193, -0.017121203243732452, -0.028333572670817375, 0.016011495143175125, 0.012134724296629429, 0.014195609837770462, 0.01918208785355091, -0.0007620232063345611, -0.028333572670817375, -0.0031850049272179604, 4.134944174438715e-05, 0.006708686705678701, 0.03983417898416519, 0.006434862967580557, 0.020306207239627838, -0.03216710686683655, 0.020925914868712425, 0.04776066169142723, -0.02615739405155182, -0.02026297152042389, -4.5965720346430317e-05, -0.032368872314691544, 0.006780745927244425, 0.02373621240258217, 0.054534200578927994, 0.0147720817476511, -0.031302399933338165, -0.0171932615339756, 0.0032354460563510656, -0.025494450703263283, -0.012055459432303905, -0.007108613848686218, 0.003487652400508523, 0.015463847666978836, 0.01775532215833664, 0.000212348677450791, -0.006024126894772053, -0.021560033783316612, 0.03412711247801781, -0.013489432632923126, 0.02068091370165348, -0.0395459420979023, 0.005397214088588953, -0.01334531418979168, 0.0004321284359320998, -0.00863986648619175, -0.003952432423830032, -0.02814622037112713, -0.004514492116868496, -0.04594477638602257, 0.017957085743546486, -0.01830296963453293, 0.03297416865825653, 0.022885916754603386, -0.022280622273683548, 0.010477368719875813, -0.006323171313852072, 0.04842360317707062, -0.03357946500182152, 0.018879441544413567, 0.007840012200176716, -0.03343534469604492, 0.0067771426402032375, -0.01406590361148119, 0.02457209676504135, -0.017034731805324554, -0.007854423485696316, -0.022554446011781693, 0.0017780541675165296, -0.03242652118206024, 0.0024193786084651947, -0.03703829273581505, -0.03778770565986633, 0.00031435710843652487, 0.03101416490972042, -0.024932391941547394, 0.002810298465192318, 0.03634652495384216, 0.024312684312462807, -0.025407981127500534, -0.03210946172475815, -0.029688280075788498, 0.03190769627690315, -0.025523275136947632, -0.020306207239627838, 0.024010036140680313, -0.0011844687396660447, 0.010124280117452145, -0.0021563635673373938, 0.017337379977107048, 0.014930611476302147, 0.011817664839327335, -0.005274713970720768, 0.0023184961173683405, -0.00021640198247041553, 0.018475910648703575, -0.030235929414629936, 0.017957085743546486, 0.001265535014681518, 0.03346416726708412, -0.005188243463635445, -0.04254359379410744, 0.029457692056894302, 0.023837095126509666, 0.0085822194814682, -0.00834442488849163, -0.009021778590977192, 0.042053595185279846, 0.028679456561803818, 0.011868106201291084, 0.02170415036380291, 0.0067014810629189014, -0.023375919088721275, 0.007281555328518152, -0.01828855834901333, -0.011615900322794914, 0.036692410707473755, -0.041073594242334366, 0.04101594537496567, 0.028304750099778175, -0.0034282037522643805, 0.016400612890720367, 0.005321552511304617, -0.018922675400972366, -0.00651412783190608, 0.010354869067668915, 0.004492874722927809, 0.00938207283616066, 0.04173653572797775, 0.024889156222343445, 0.029861222952604294, 0.011940165422856808, -0.014945022761821747, 0.005685450043529272, -0.035770054906606674, -0.032743580639362335, -0.00651412783190608, -0.007324790582060814, 0.015204435214400291, 0.0270221009850502, 0.019917089492082596, 0.012703990563750267, -0.012329284101724625, -0.023534448817372322, -0.04121771082282066, 0.0012817482929676771, 0.009713544510304928, -0.014829728752374649, 0.017985910177230835, 0.006986113730818033, -0.07223187386989594, 0.024442389607429504, -0.047558896243572235, 0.01625649631023407, 0.017611203715205193, -0.022295033559203148, -0.0034390126820653677, 0.04395594820380211, 0.0004611771728377789, -0.0011160126887261868, -0.005681846756488085, 0.03888300061225891, 0.0023887536954134703, -0.001007023616693914, 0.02321738936007023, -0.002134745940566063, -0.04882713407278061, 0.026373570784926414, -0.005375596694648266, -0.06283538788557053, 0.07125187665224075, 0.03340652212500572, -0.01671767234802246, 0.032282400876283646, -0.02311650663614273, 0.009655897505581379, -0.017034731805324554, -0.014858552254736423, -0.0008719131001271307, -0.020075619220733643, 0.005941259209066629, 0.005199051927775145, 9.77862291620113e-05, -0.034790053963661194, -0.03268593177199364, -0.02865063212811947, -0.04043947532773018, -0.0034948582760989666, 0.015535905957221985, -0.031187105923891068, -0.009050602093338966, 0.038248881697654724, 0.0023509226739406586, -0.022352680563926697, 0.002693202579393983, -0.019542383030056953, -0.006748319137841463, 0.0009133470011875033, -0.002658974612131715, 0.07286599278450012, 0.0016906827222555876, 0.014829728752374649, -0.0038191236089915037, 0.03205181285738945, 0.013424579054117203, 0.007032951805740595, -0.0012556269066408277, 0.012646342627704144, 0.018620029091835022, -0.026027686893939972, 0.03366593271493912, -0.0017834586324170232, 0.03637535125017166, -0.008805601857602596, -0.02272738702595234, -0.00564581761136651, 0.006406039465218782, -0.020479148253798485, 0.020392678678035736, 0.03600064292550087, 0.0343865230679512, -0.044561244547367096, 0.0043163299560546875, 0.029918869957327843, 0.003970447462052107, -0.04980713501572609, 0.038133587688207626, -0.01877855882048607, 0.049461252987384796, 0.030754752457141876, 0.011089869774878025, 0.0221220925450325, 0.0035651158541440964, -0.016011495143175125, -0.0098432507365942, -0.004860375076532364, 0.015204435214400291, -0.01778414472937584, 0.0021761797834187746, -0.016948262229561806, -0.0010844869539141655, -0.029414456337690353, 0.02217973954975605, 0.0012222996447235346, -0.025840334594249725, 0.021343857049942017, -0.021588856354355812, 0.016155613586306572, 0.0295441634953022, -0.01582414284348488, -0.011760017834603786, 0.009778397157788277, -0.009353249333798885, -0.022857094183564186, -0.016170024871826172, 0.021315032616257668, -0.008005747571587563, -0.004121771082282066, 0.025321509689092636, 0.055370084941387177, -0.003521880367770791, 0.014844140037894249, -0.005328758154064417, 0.021329443901777267, 0.019974736496806145, -0.022813858464360237, -0.016184436157345772, 0.047501251101493835, 0.069061279296875, -0.02114209160208702, 0.002604930428788066, 0.0026805924717336893, 0.02320297621190548, 0.009468544274568558, 0.03649064525961876, -0.013640756718814373, -0.0006723999395035207, -0.013950609602034092, 0.014440610073506832, -0.012538254261016846, -0.02817504294216633, 0.048596546053886414, 0.009836044162511826, 0.03153298795223236, 0.025263862684369087, -0.014685611240565777, 0.013683991506695747, -0.007544570602476597, 0.03216710686683655, 0.01815885119140148, -0.0033381301909685135, -0.0295441634953022, -0.022568857297301292, -0.018461499363183975, -0.007840012200176716, -0.026402393355965614, 0.015982670709490776, 0.019138852134346962, 0.027800336480140686, -0.0343288779258728, 0.023981213569641113, 0.01531972922384739, 0.016400612890720367, -0.00882721971720457, -0.007976924069225788, 0.012956196442246437, -0.045051246881484985, -0.03283005207777023, 0.012005018070340157, 0.030754752457141876, -0.003923608921468258, 0.011140311136841774, -0.043177712708711624, 0.02756974846124649, 0.039747707545757294, -0.0025220627430826426, 0.007202290464192629, -0.01453428715467453, 0.014872964471578598, -0.004885595757514238, 0.027987690642476082, 0.016674436628818512, 0.004665816202759743, 0.019023558124899864, -0.021444739773869514, 0.01670326106250286, -0.02011885493993759, 0.0006377215613611042, -0.004413609858602285, 0.0063555981032550335, 0.007904864847660065, 0.024514449760317802, -0.01381369773298502, -0.010426927357912064, -0.012516637332737446, 0.04127535596489906, -0.023851506412029266, 0.043581243604421616, -0.01634296588599682, 0.002862541237846017, -0.009273984469473362, -0.03012063540518284, -0.016876202076673508, 0.0018555175047367811, -0.028506513684988022, -0.022352680563926697, -0.07436481863260269, 0.029745928943157196, -0.010362074710428715, 0.007976924069225788, 0.0069536869414150715, -0.015607965178787708, 0.008755160495638847, -0.03775888308882713, 0.022554446011781693, -0.031244754791259766, -0.04389830306172371, -0.026272688060998917, -0.00908663123846054, -0.00642045121639967, -0.018908264115452766, 0.0013384947087615728, 0.012156342156231403, 0.015651199966669083, -0.01775532215833664, 0.005029713734984398, 0.0028030925896018744, -0.022006798535585403, -0.005278316792100668, 0.0016798739088699222, 0.0058403764851391315, -0.019340617582201958, 0.004975669551640749, 0.007267143577337265, -0.00580074405297637, 0.03539535030722618, -0.010354869067668915, -0.007054569665342569, 0.020090030506253242, 0.02667621709406376, 0.026950040832161903, 0.020493561401963234, 0.004961257800459862, -0.008517365902662277, 0.006391627248376608, -0.004741477780044079, 0.03248416632413864, -0.005501699633896351, -0.010837663896381855, -0.010426927357912064, -0.003837138181552291, -0.02271297574043274, 0.027886807918548584, 0.009418102912604809, 0.0013375940034165978, 0.007508540991693735, -0.0005107176839374006, -0.006391627248376608, -0.023577682673931122, -0.00714464345946908, 0.0008903781999833882, 0.03758594021201134, -0.01820208691060543, 0.028420044109225273, -0.024384742602705956, -0.017092378810048103, 0.008481336757540703, -0.028924455866217613, 0.0344729945063591, 0.005444052629172802, 0.01768326200544834, -0.0036659983452409506, -0.005613390821963549, -0.01032604556530714, -0.01062148716300726, -0.016400612890720367, 0.006622216198593378, 0.014627963304519653, -0.0015907009365037084, 0.0344729945063591, -0.010599869303405285, -0.004244271200150251, 0.022568857297301292, 0.012401342391967773, 0.0014970243209972978, -0.03283005207777023, 0.0002479277609381825, 0.007739129476249218, -0.016054730862379074, 0.0011511414777487516, -0.00691045168787241, 0.02707974798977375, 0.03562593832612038, -0.027396807447075844, -0.026748277246952057, -0.00815707165747881, -0.011731194332242012, -0.00936045590788126, 0.03014945797622204, -0.00810663029551506, 0.002792283659800887, -0.005083757918328047, -0.0023707388900220394, -0.007328393403440714, 0.027915630489587784, 0.0012340092798694968, -0.014094727113842964, 0.023966802284121513, 0.003664196701720357, 0.016587967053055763, 0.007667070720344782, -0.012574284337460995, 0.03098534233868122, -0.006809569429606199, 0.012278842739760876, -0.008913690224289894, 0.00912266131490469, 0.011003399267792702, 0.0005872803158126771, 0.0006066461792215705, 0.0018951499368995428, 0.02664739452302456, 0.007486923132091761, 0.016660025343298912, 0.028218278661370277, 0.0014348735567182302, -0.024745037779211998, 0.01356869749724865, -0.02669062837958336, 0.05130596086382866, -0.004327138885855675, 0.023404741659760475, -0.0021779811941087246, -0.02817504294216633, 0.014901787973940372, -0.002633754163980484, -0.008589425124228, 0.006416847929358482, 0.012430165894329548, 0.016069142147898674, -0.03138887137174606, 0.02761298418045044, 0.025004450231790543, -0.012992225587368011, 0.02421180158853531, -0.033175934106111526, -0.012581489980220795, -0.022857094183564186, 0.00889927800744772, -0.00555574381724, 0.03784535080194473, -0.002183385659009218, 0.0022320253774523735, -0.03752829134464264, 0.0063555981032550335, 0.027872396633028984, 0.026503276079893112, -0.020868267863988876, 0.0003632220614235848, 0.00778236472979188, 0.017481496557593346, 0.01575208269059658, -0.034242406487464905, -0.0018825397128239274, -0.005350376013666391, 0.02710857056081295, 0.0017825579270720482, -0.009338838048279285, 0.02516297996044159, 0.024860331788659096, 0.013842521235346794, -0.00010628692689351737, 0.01631414331495762, 0.030927695333957672, -0.02311650663614273, 0.023073270916938782, 0.023390330374240875, 0.026431217789649963, 0.01327325589954853, 0.04634830728173256, 0.011680752970278263, 0.0011844687396660447, 0.00506934616714716, -0.016674436628818512, 0.017640026286244392, -0.0007043760851956904, -0.010924134403467178, -0.023577682673931122, -0.018461499363183975, -0.06006832793354988, -0.0021239370107650757, 0.042082417756319046, -0.01279046107083559, -0.003228240180760622, 0.03409828618168831, -0.007688688114285469, 0.023001212626695633, 0.023404741659760475, 0.012192371301352978, -0.027267100289463997, 0.0035362921189516783, 0.006636627949774265, 0.009201926179230213, -0.009252367541193962, 0.004853169433772564, 0.01680414378643036, -0.018879441544413567, -0.031158283352851868, -0.004388389177620411, 0.0011358289048075676, -0.007731923833489418, -0.019066793844103813, 0.0024878347758203745, -0.035654760897159576, -0.023548860102891922, -0.0006125009385868907, 0.021055620163679123, 0.01530531793832779, -0.016587967053055763, 0.009028984233736992, -0.01556472945958376, 0.010844869539141655, 0.0074148643761873245, 0.012574284337460995, 0.005141404923051596, -0.010225162841379642, 0.0030282766092568636, 0.021862680092453957, 0.03000533953309059, 0.007940894924104214, -0.026315921917557716, -0.024283861741423607, 0.02667621709406376, 0.014671199023723602, 0.01632855460047722, -0.0003979004395660013, 0.010008986108005047, 0.016126789152622223, -0.0072887614369392395, -0.0015582744963467121, 0.0013087703846395016, -0.014815316535532475, 0.024961214512586594, -0.012812078930437565, 0.015334141440689564, 0.052977729588747025, -0.024312684312462807, -0.009555014781653881, -0.017077967524528503, 0.01632855460047722, 0.010996193625032902, 0.008798396214842796, 0.00123130704741925, 0.015968259423971176, -0.003761476371437311, 0.007731923833489418, 0.0015825943555682898, 0.004644198343157768, -0.024500038474798203, 0.0295729860663414, 0.0037975057493895292, -0.0013781271409243345, -0.02118532732129097, 0.023361505940556526, -0.0016573554603382945, -0.005944862030446529, 0.036144763231277466, -0.01781296916306019, 0.025436803698539734, 0.009735162369906902, -0.024471214041113853, -0.0006651940639130771, 0.011558253318071365, -0.017971498891711235, 0.03104298934340477, 0.019398264586925507, -0.013799285516142845, 0.031331226229667664, 0.020335031673312187, -0.01576649397611618, 0.0018501131562516093, -0.023289447650313377, -0.0009052403620444238, 0.03343534469604492, 0.000399476703023538, -0.027987690642476082, 0.005375596694648266, -0.030870048329234123, 0.00033980290754698217, -0.00840207189321518, -0.04819301515817642, 0.0021401504054665565, -0.009814427234232426, 0.02911181002855301, 0.04124653339385986, 0.006596995517611504, 0.022035622969269753, 0.02364974282681942, 0.005429640877991915, -0.021387090906500816, 0.0044784629717469215, 0.008920895867049694, -0.010520604439079762, 0.011954577639698982, -0.004276697523891926, 0.03608711436390877, 0.024471214041113853, -0.010052220895886421, -0.006924863439053297, 0.026863571256399155, 0.05571596696972847, -0.001263733603991568, -0.016515906900167465, 0.023981213569641113, 0.02569621615111828, -0.012631931342184544, -0.01779855601489544, -0.03285887464880943, -0.006211480125784874, 0.02073856070637703, 0.015521494671702385, -0.019311795011162758, -0.02818945422768593, 0.017380615696310997, -0.03055298887193203, 0.023375919088721275, -0.003206622553989291, 0.0009250565781258047, 0.009663103148341179, 0.02017650194466114, -0.017351791262626648, 0.007011334411799908, -0.030898870900273323, -0.01928297057747841, -0.019614441320300102, -0.0014519875403493643, 0.0047739045694470406, 0.00815707165747881, -0.026517687365412712, -0.005616994109004736, 0.02317415364086628, -0.014137962833046913, 0.0008129148627631366, -0.018101204186677933, 0.018360616639256477, -0.030956517904996872, 0.03666358441114426, -0.028708279132843018, -0.01873532310128212, -0.038191236555576324, 0.023808272555470467, 0.013892962597310543, -0.00396684417501092, 0.011010604910552502, -0.00405691796913743, 0.04989360645413399, -0.009785603731870651, -0.011522223241627216, -0.019917089492082596, 0.0006260119844228029, -0.02519180253148079, -0.019931500777602196, 0.017395026981830597, -0.007501334883272648, -0.004431624431163073, -0.0003352992353029549, 0.008034571073949337, -0.021315032616257668, 0.02215091697871685, -0.012048253789544106, 0.008668689988553524, -0.023361505940556526, -0.029861222952604294, -0.017380615696310997, -0.01062148716300726, -0.014029874466359615, 0.0037110350094735622, -0.008041776716709137, 0.0025436803698539734, 0.018418263643980026, -0.01256707776337862, -0.02455768547952175, 0.006856407504528761, -0.010239574126899242, 0.006373612675815821, -0.02326062321662903, -0.02075297385454178, 0.009158690460026264, 0.021891504526138306, -0.020997973158955574, 0.015103552490472794, -0.0591459721326828, 0.014714434742927551, -0.00763104110956192, -0.0032318432349711657, -0.007803982589393854, -0.005227875895798206, 0.0057178763672709465, 0.00786163005977869, -0.0024247830733656883, -0.03611593693494797, -0.009475749917328358, -0.012711196206510067, 0.007739129476249218, -0.04003594443202019, 0.0013393954141065478, -0.04545477405190468, -6.186935206642374e-05, -0.036144763231277466, -0.010679134167730808, 0.011687959544360638, 0.03357946500182152, -0.034271229058504105, 0.0036677997559309006, 0.026315921917557716, -0.003725446993485093, 0.002547283424064517, 0.014109139330685139, 0.016126789152622223, -0.0005129695637151599, -0.012041048146784306, 0.006413245107978582, 0.04049712046980858, 0.007202290464192629, -0.00961986742913723, -0.010888105258345604, -0.0036335717886686325, -0.009915309026837349, 0.002255444647744298, -0.004262285772711039, 0.012941784225404263, -0.00453971279785037, -0.0023725403007119894, 0.0033759609796106815, -0.009000160731375217, -0.0017041937680914998, 0.003970447462052107, 0.015881789848208427, 0.014599139802157879, 0.02657533437013626, -0.008265160024166107, -0.027857983484864235, -0.014988258481025696, 0.00396684417501092, 0.00419743312522769, -0.018821794539690018, 0.00045847496949136257, 0.004734272137284279, -0.013539873994886875, 0.013835315592586994, -0.024327095597982407, 0.012833695858716965, -0.03738417476415634, -0.016184436157345772, 0.028492102399468422, -0.004121771082282066, 0.03507829084992409, 0.013900168240070343, 0.021026797592639923, 0.038710057735443115, -0.0034444171469658613, 0.0222085639834404, 0.0016042119823396206, -0.01032604556530714, 0.03213828429579735, 0.05182478576898575, 0.0035326892975717783, -0.012134724296629429, 0.022021209821105003, -0.005332360975444317, 0.010045015253126621, -0.014101933687925339, -0.002527467207983136, -0.04133300483226776, 0.001197079080156982, -0.007335599511861801, -0.0077103059738874435, -0.01056384015828371, -0.024903567507863045, 0.005991700571030378, 0.04038182646036148, -0.004240668378770351, 0.007187878713011742, -0.03262828662991524, 0.003417395055294037, 0.0010322441812604666, -0.024961214512586594, 0.002050076611340046, 0.029688280075788498, -0.0003267422434873879, -0.004665816202759743, -0.005685450043529272, -0.04081417992711067, -0.005660229362547398, -0.0015888995258137584, -0.013828109949827194, 0.0023329081013798714, 0.007969718426465988, -0.01356149185448885, -0.004716257099062204, -0.034300051629543304, -0.014491051435470581, -0.004341550637036562, -0.02951533906161785, -0.011882518418133259, 0.004226256627589464, -0.02261209301650524, -0.0011313252616673708, -0.0013547079870477319, -0.06277774274349213, 0.0344729945063591, 0.019412677735090256, 0.01772649772465229, -0.01585296541452408, -0.0196865014731884, 0.004395594820380211, 0.003293093293905258, -0.011334870010614395, 0.0038551529869437218, -0.008200306445360184, -0.024427978321909904, -0.010513398796319962, -0.016141200438141823, 0.0015285501722246408, -0.039776530116796494, -0.015925023704767227, 0.033233579248189926, 0.007695894222706556, -0.011219576001167297, 0.02217973954975605, -0.0443594790995121, -0.002985041355714202, -0.019888265058398247, -0.02013326622545719, 0.01929738186299801, 0.017553556710481644, 0.013712815009057522, 0.004276697523891926, -0.018836205825209618, 0.019311795011162758, 0.021300621330738068, -8.416258060606197e-05, -0.017913851886987686, -0.011752812191843987, -0.06825422495603561, -0.001839304342865944, -0.014260463416576385, 0.003213828429579735, 0.00037988569238223135, 0.015146788209676743, 0.010181927122175694, 0.009497367776930332, -0.02562415786087513, 0.0002695454459171742, 0.006125009618699551, -0.007155452389270067, 0.0006845598691143095, -0.0003395777312107384, -0.026820335537195206, 0.005224272608757019, -0.008726336993277073, -0.011767224408686161, 0.002082503167912364, -0.0024247830733656883, -0.008668689988553524, 0.013107520528137684, 0.005364787764847279, -0.0017942674458026886, 0.012257224880158901, 0.005858391523361206, -0.026877982541918755, 0.014483845792710781, -0.014714434742927551, -0.017020320519804955, 0.03213828429579735, -0.008517365902662277, 0.0018951499368995428, -0.015982670709490776, 0.02023414894938469, 0.024528861045837402, 0.011428547091782093, -6.462785677285865e-05, -0.025307098403573036, -0.04680948331952095, -0.004741477780044079, 0.009504573419690132, -0.002914783777669072, 0.010167515836656094, 0.00907942559570074, -0.009050602093338966, 0.0010538619244471192, -0.008488542400300503, -0.045541245490312576, -0.0196865014731884, 0.029342398047447205, 0.014959434978663921, 0.013597520999610424, -0.01821649819612503, 0.03210946172475815, -0.0034822479356080294, 0.005966479890048504, 0.007602217607200146, -0.005458464380353689, 0.0005327857215888798, 0.06854245811700821, 0.016126789152622223, 0.03190769627690315, -0.0006350193871185184, -0.03283005207777023, -0.004334344994276762, 0.014231639914214611, 0.024413567036390305, 0.02362091839313507, -0.0029742324259132147, -0.015362964943051338, -0.022050034254789352, 0.016587967053055763, 0.024860331788659096, -0.003729049814864993, 0.009108249098062515, 0.021574445068836212, 0.023491213098168373, 0.002352724317461252, -0.01925414800643921, -0.017178850248456, -0.0055485377088189125, 0.010405310429632664, -0.007890453562140465, -0.016616789624094963, -0.025768274441361427, -0.017063556239008904, -0.010888105258345604, 0.010066633112728596, -0.007249129004776478, 0.04969184100627899, -0.015103552490472794, 0.02709415927529335, 0.02419739030301571, -0.0034282037522643805, 0.01926855929195881, 0.006636627949774265, -0.004500080365687609, -0.004561330657452345, 0.007616629358381033, -0.024889156222343445, -0.013741638511419296, -0.0017041937680914998, -0.0008286777301691473, 0.0026463642716407776, -0.005379199516028166, 0.00812104158103466, 0.004741477780044079, 0.0074653057381510735, -0.01082325167953968, -0.023433566093444824, 0.00453971279785037, -0.037182409316301346, 0.032282400876283646, -0.010664721950888634, 0.015190022997558117, -0.020810620859265327, -0.01769767515361309, -0.0006998723838478327, -0.01136369351297617, 0.020536797121167183, 0.017366202548146248, -0.009699132293462753, -0.014001050963997841, -0.027886807918548584, -0.011133105494081974, -0.005353978835046291, 0.005238684359937906, -0.008481336757540703, 0.01820208691060543, 0.013460609130561352, -0.013467814773321152, 0.003422799287363887, 0.008279571309685707, -0.011723988689482212, 0.01919650100171566, 0.03747064620256424, 0.008214718662202358, 0.04234182834625244, -0.05257419869303703, -0.01765443943440914, -0.002014047233387828, -9.896844130707905e-05, 0.020104441791772842, -0.033262405544519424, -0.023548860102891922, 0.006240303628146648, -0.014130757190287113, 0.003554306924343109, -0.02859298512339592, 0.0029400044586509466, -0.035683583468198776, 0.00817148294299841, -0.022972388193011284, -0.019787384197115898, -0.0006705984706059098, -0.0005818759091198444, -0.01087369304150343, 0.03386769816279411, -0.005386405158787966, -0.018591204658150673, 0.008820013143122196, 0.017395026981830597, -0.01568002440035343, 0.003035482717677951, -0.00135110504925251, -0.020003560930490494, 0.015103552490472794, -0.004114564973860979, -0.0016375392442569137, -0.006128612440079451, 0.0011664540506899357, -0.011868106201291084, -0.017121203243732452, 0.03859476372599602, -0.020868267863988876, 0.00835163053125143, 0.007984129711985588, 0.033291228115558624, 0.0075950114987790585, 0.0029724310152232647, 0.013986638747155666, 0.010470163077116013, 0.035222407430410385, 0.0016852783737704158, 0.010542222298681736, -0.018360616639256477, 0.007551776245236397, 0.004853169433772564, -0.0023923565167933702, 0.0021923931781202555, 0.010686339810490608, -0.012379724532365799, -0.009648690931499004, 0.016155613586306572, 0.0031165489926934242, 0.034213580191135406, 0.030235929414629936, -0.01723649725317955, -0.009432514198124409, -0.02121414989233017, 0.03141769394278526, 0.0019275764934718609, 0.017495909705758095, 0.009028984233736992, 0.016847379505634308, -0.037153586745262146, 0.010801633819937706, 0.028924455866217613, -0.01381369773298502, 0.010246780700981617, -9.09181107999757e-05, -0.0009322624537162483, -0.021776210516691208, 0.007187878713011742, -0.026330335065722466, 0.003049894468858838, -0.014599139802157879, -0.008632659912109375, -0.011378105729818344, 0.02021973766386509, 0.005501699633896351, -0.006463686469942331, -0.007043760735541582, 0.02707974798977375, -0.0051269931718707085, -0.018389439210295677, -0.03608711436390877, -0.016400612890720367, 0.011032222770154476, -0.002842725021764636, 0.012516637332737446, 0.014916199259459972, 0.00014344231749419123, 0.018504735082387924, -0.020435914397239685, 0.03859476372599602, -0.0069500841200351715, 0.03000533953309059, 0.0072923642583191395, -0.013640756718814373, -0.0063051567412912846, 0.015175611712038517, 0.013705609366297722, 0.01575208269059658, 0.004709051456302404, -0.024975625798106194, 8.545739547116682e-05, 0.008445306681096554, -0.008128248155117035, -0.004413609858602285, -0.018879441544413567, 0.007407658267766237, 0.020810620859265327, 0.042197711765766144, 0.0071230255998671055, -0.006633025128394365, -0.03660593926906586, 0.00603853864595294, -0.01134928222745657, 0.014743258245289326, 0.0014312706189230084, 0.0025454817805439234, -0.012199577875435352, 0.02914063259959221, -0.0049324338324368, -0.013539873994886875, 0.030466517433524132, -0.001438476494513452, -0.010830458253622055, 0.03628887981176376, 0.013489432632923126, -0.010780016891658306, 0.00787604134529829, 0.0043091243132948875, -0.0005345871904864907, 0.010016191750764847, -0.00884163100272417, -0.014029874466359615, -0.0270365122705698, -0.01327325589954853, -0.014577522873878479, 0.0021185327786952257, 0.017005909234285355, -0.003992064855992794, 0.01380649209022522, 0.0027112173847854137, 0.0011088068131357431, 0.029371222481131554, 0.0016762709710747004, -0.009403690695762634, -0.0005895321373827755, 0.006845598574727774, -0.01130604650825262, 0.020507972687482834, 0.005728685297071934, -0.007904864847660065, -0.008142659440636635, 0.017322968691587448, -0.00835163053125143, 0.0031093431171029806, -0.037268880754709244, -0.014930611476302147, 0.010960163548588753, -0.020551208406686783, -0.00021876642131246626, -0.021574445068836212, 0.002113128313794732, -0.014166786335408688, -0.0040641240775585175, -0.004428021609783173, 0.005678243935108185, -0.011125899851322174, -0.021041208878159523, -0.008798396214842796, 0.0049468460492789745, 0.023937977850437164, -0.009987368248403072, -0.013021049089729786, -0.002017650054767728, -0.0049216253682971, -0.009850456379354, 0.009454132057726383, 0.014692816883325577, -0.00863986648619175, 0.016112377867102623, 0.02274180017411709, 0.005433243699371815, 0.004809933714568615, -0.012206783518195152, -0.014606346376240253, 0.041621241718530655, -0.018389439210295677, -0.015161199495196342, 0.00959825050085783, -0.00214555487036705, -0.0001986124407267198, -0.02422621287405491, 0.006795157678425312, -0.016011495143175125, -0.012350901030004025, 0.019326206296682358, -0.012725607492029667, -0.013438991270959377, 0.011197958141565323, 0.01405869796872139, 0.0019329809583723545, 0.004428021609783173, 0.03141769394278526, -0.008279571309685707, 0.006769936997443438, -0.007047363556921482, 0.022309446707367897, 0.004896404687315226, 0.015103552490472794, 0.02317415364086628, -0.024745037779211998, 0.013309285044670105, -0.010801633819937706, -0.013777668587863445, -0.011169134639203548, -0.013057079166173935, 0.008149865083396435, 0.002745445352047682, -0.014606346376240253, 0.010311633348464966, 0.02607092261314392, -0.006143024191260338, 0.0221076812595129, -0.004381183069199324, 0.022929152473807335, 0.0009736963547766209, 0.017611203715205193, -0.02458650805056095, -0.03651946783065796, -0.02803092636168003, 0.009821632876992226, -0.003590336302295327, -7.11581960786134e-05, 0.005707067437469959, 0.021977974101901054, 0.02862180955708027, -0.06825422495603561, -0.027396807447075844, -0.014916199259459972, 0.012812078930437565, 0.014829728752374649, -0.014332521706819534, -0.01429649256169796, -0.02075297385454178, -0.02951533906161785, -0.0031669901218265295, 0.0015195427695289254, -0.007739129476249218, 0.002048275200650096, 0.007205893285572529, -0.00835163053125143, 0.018115615472197533, -0.03061063587665558, 0.005173831712454557, -0.016645614057779312, -0.013136344030499458, -0.0052458904683589935, 0.01230766624212265, -0.005350376013666391, 0.018375027924776077, 0.0015852965880185366, -0.00011991056817350909, -0.0002499544352758676, -0.008445306681096554, -0.011968988925218582, 0.010470163077116013, 0.011968988925218582, -0.023332683369517326, 0.0018681278452277184, -0.016011495143175125, 0.0020915104541927576, 0.03242652118206024, 0.012329284101724625, 0.008949719369411469, 0.0023887536954134703, -0.0018681278452277184, 0.027973277494311333, -0.005912435706704855, -0.004723463207483292, 0.002134745940566063, -0.00863986648619175, -0.027396807447075844, 0.014094727113842964, -0.0026769894175231457, 0.015579141676425934, -0.010037809610366821, 0.0028589381836354733, -0.0007435581064783037, 0.021084444597363472, -0.003399380249902606, 0.020335031673312187, -0.028881220147013664, -0.004492874722927809, -0.029155045747756958, -0.03357946500182152, -0.006586186587810516, 0.02069532684981823, 0.007436482235789299, 0.017395026981830597, -0.019917089492082596, 0.014469433575868607, -0.0011898732045665383, 0.025364745408296585, 0.01405149232596159, 0.0024590110406279564, -0.01503149326890707, 0.02572503872215748, -0.015117964707314968, -0.004968463443219662, 0.009591043926775455, 0.0047847130335867405, 0.019931500777602196, -0.026042098179459572, 0.013799285516142845, 0.011378105729818344, 0.006629421841353178, 0.0015177413588389754, 0.00938207283616066, -0.00325706391595304, -0.0009944132762029767, 0.015420611947774887, -0.016011495143175125, -0.0075950114987790585, -0.015478258952498436, -0.0023275036364793777, -0.015579141676425934, -0.02854974940419197, 0.02069532684981823, 0.004456845112144947, 0.019441500306129456, -0.003348938887938857, -0.002570702461525798, -0.03012063540518284, 0.007602217607200146, 0.015103552490472794, -0.021805033087730408, -0.007573394104838371, 0.01058545708656311, 0.03306064009666443, 0.00835883617401123, 0.036778878420591354, 0.003592137945815921, 0.0038407412357628345, 0.004597359802573919, 0.01129884086549282, 0.024355920031666756, 0.011666341684758663, 0.002287871204316616, 0.007962511852383614, -0.015045905485749245, -0.013633550144731998, -0.007544570602476597, 0.02222297526896, -0.002406768500804901, -0.005480081774294376, -0.007277952507138252, -0.02556650899350643, -0.012242812663316727, 0.010549427941441536, 0.0009219039930030704, 0.0018447086913511157, 0.04404241964221001, 0.014022668823599815, 0.008322807028889656, -0.017351791262626648, 0.016386201605200768, 0.008618248626589775, -0.003469637595117092, -0.02963063307106495, -0.0046586100943386555, -0.002651768736541271, 0.009266778826713562, -0.025422392413020134, -0.02027738466858864, 0.008978542871773243, -0.02654651179909706, -0.00715184910222888, -0.012653549201786518, 0.0011187149211764336, 0.004096550401300192, 0.0027994895353913307, -0.007112216670066118, -0.0013105719117447734, -0.005465670023113489, -0.007940894924104214, 0.016097966581583023, -0.022309446707367897, 0.006294347811490297, 0.0008800197392702103, 0.012228401377797127, -0.0010691743809729815, -0.023001212626695633, -0.0040100798942148685, 0.0061790538020431995, -0.006856407504528761, -0.01923973485827446, -0.0032210343051701784, 0.022525623440742493, -0.005375596694648266, 0.0689459890127182, -0.011406929232180119, 0.009252367541193962, -0.006856407504528761, 0.006809569429606199, -0.01507472898811102, 0.0030066589824855328, -0.0004251477075740695, 0.013655168004333973, 0.010131485760211945, 0.01776973344385624, 0.005375596694648266, 0.01771208643913269, 0.003682211507111788, -0.030264751985669136, 0.0033903729636222124, 0.028852397575974464, 0.02063767798244953, 0.005876406095921993, 0.02419739030301571, 0.0007930986466817558, -0.012732814066112041, -0.023073270916938782, -0.018965911120176315, -0.010830458253622055, 0.022986799478530884, 0.0011241193860769272, -0.004507286474108696, 0.03504946455359459, 0.030668282881379128, -0.005206258036196232, -0.016559142619371414, 0.013294873759150505, -0.00018093548715114594, -0.000494054052978754, 0.01576649397611618, 0.02078179642558098, 0.008063394576311111, 0.000162920739967376, 0.0012204982340335846, 0.009533396922051907, 0.004719860386103392, 0.014411786571145058, 0.012199577875435352, -0.0004913518787361681, 0.001875333720818162, 0.012941784225404263, 0.00040060264291241765, 0.014901787973940372, 0.010542222298681736, -0.002345518209040165, -0.02262650616466999, 0.011161928996443748, 0.008315601386129856, 0.0029562178533524275, -0.019110029563307762, -0.013446196913719177, 0.0029039750806987286, 0.0031796004623174667, 0.008214718662202358, -0.005350376013666391, 0.018893852829933167, 0.002376143354922533, -0.02455768547952175, -0.014844140037894249, -0.011284428648650646, 0.008661484345793724, -0.012826490215957165, -0.0009601853089407086, -0.004154197406023741, -0.01977297104895115, 0.004824345465749502, -0.006856407504528761, -0.029284751042723656, 0.009028984233736992, 0.014512669295072556, -0.004939639940857887, 0.009425308555364609, 0.012185165658593178, 0.012812078930437565, 0.006791554391384125, -0.001095295767299831, -0.007112216670066118, -0.00762383546680212, 0.01619884930551052, -0.014080315828323364, 0.006330377422273159, -0.030668282881379128, 0.005224272608757019, -0.014887375757098198, -0.010275604203343391, 0.0033093064557760954, 0.020594444125890732, 0.0009232551092281938, 0.029428869485855103, 0.004089344292879105, 0.005339567083865404, 0.0027868791949003935, 0.005501699633896351, -0.006867216434329748, 0.005523317493498325, 0.041073594242334366, -0.002408569911494851, 0.007068981416523457, 0.009742368012666702, 0.004968463443219662, 0.014015463180840015, -0.01627090759575367, -0.007645452860742807, 0.00809942465275526, -0.0010601670946925879, -0.001597906812094152, 0.007101408205926418, 0.006146627012640238, -0.021415915340185165, -0.007407658267766237, -0.0021077238488942385, 0.006633025128394365, -0.022381504997611046, -0.011190752498805523, -0.0013637153897434473, 0.01779855601489544, -0.004370374139398336, -0.01916767656803131, 0.022957976907491684, -0.009980162605643272, -0.031302399933338165, -0.00810663029551506, 0.00651773065328598, -0.006078171078115702, 0.006114200688898563, 0.013309285044670105, 0.026215041056275368, 0.0004136633069720119, 0.005725082475692034, 0.004496477544307709, -0.011414134874939919, 0.00444603618234396, 0.00406052079051733, -0.00013691197091247886, 0.01380649209022522, -0.007746335584670305, 0.0053719934076070786, 0.009720750153064728, -0.003624564502388239, 0.018576793372631073, -0.016544731333851814, -0.00468022795394063, -0.0020194516982883215, -0.012711196206510067, 0.03749946877360344, -0.04159241542220116, 0.009454132057726383, -0.014080315828323364, -0.004943242762237787, 0.005397214088588953, -0.021963562816381454, 0.03839300200343132, -0.016602378338575363, 0.0021581649780273438, 0.02060885541141033, -0.015190022997558117, -0.008762366138398647, -0.022035622969269753, 0.0023004815448075533, 0.004755889531224966, 0.019355028867721558, 0.03110063634812832, 0.000433254346717149, -0.0005165725015103817, -0.009893692098557949, -0.017899438738822937, 0.017467085272073746, -0.0098432507365942, -0.01085928175598383, -0.03003416396677494, 0.005390008445829153, -0.006892437115311623, 0.0006778043461963534, 0.0066546425223350525, -0.011183546856045723, -0.00047468821867369115, 0.01874973438680172, -0.017899438738822937, -0.034818876534700394, -0.005505302455276251, 0.01105384062975645, -0.000537739775609225, -0.009230749681591988, 0.0068311868235468864, -0.005447655450552702, 0.005346772726625204, -0.0015141383046284318, -0.020392678678035736, -0.014959434978663921, -0.0017933667404577136, 0.01964326575398445, 0.006860010325908661, 0.0066546425223350525, -0.021070033311843872, -0.014599139802157879, 0.01827414520084858, 0.015982670709490776, 0.015377376228570938, -0.024471214041113853, 0.005094566848129034, -0.009677514433860779, -0.003280482953414321, -0.010059427469968796, -0.002952614799141884, -0.027699453756213188, -0.038162410259246826, 0.00024837814271450043, -0.010938546620309353, -0.019470324739813805, 0.002167172497138381, 0.003291291883215308, 0.021516798064112663, -0.010225162841379642, 0.004377580247819424, 0.0018122822511941195, 0.012300459668040276, 0.015636788681149483, 0.012098695151507854, -0.001543862628750503, 2.0533982024062425e-05, 0.025350332260131836, 0.03170593082904816, 0.02754092402756214, 0.015002669766545296, 0.024802684783935547, -0.020378267392516136, -0.0019293780205771327, 0.01182487141340971, -0.005620596930384636, 0.0135110504925251, 0.008092218078672886, -0.0074653057381510735, -0.0019672089256346226, -0.013157960958778858, -0.014231639914214611, -0.021430326625704765, -0.002484231721609831, -0.019355028867721558, 0.010246780700981617, -0.017596792429685593, 0.0014528882456943393, 0.0021599666215479374, -0.012516637332737446, -2.3405080355587415e-05, -0.01870649866759777, 0.0028499308973550797, 0.011767224408686161, 0.010145897977054119, 0.019383853301405907, 0.0028571367729455233, -0.014988258481025696, 0.018821794539690018, -0.011738399975001812, -0.017870616167783737, -0.008027365431189537, 0.009922515600919724, -0.029947692528367043, -0.024514449760317802, 0.008618248626589775, 0.024889156222343445, -0.010707957670092583, 0.005656626541167498, 0.017366202548146248, 0.0036461821291595697, 0.014649581164121628, 0.0010880898917093873, 0.002914783777669072, 0.004925228189677, -0.007068981416523457, -0.010030603967607021, 0.011651929467916489, -0.02804533764719963, 0.005145007744431496, 0.017827380448579788, -0.013871344737708569, -0.015665613114833832, 0.017092378810048103, -0.00961266178637743, 0.006049347575753927, -0.016977084800601006, 0.023433566093444824, 0.011183546856045723, -0.016645614057779312, 0.039228882640600204, -0.006110597401857376, -0.024298273026943207, 0.008092218078672886, -0.005058537237346172, -0.00936045590788126, 0.030351223424077034, -0.01307869702577591, 0.0013267850736156106, 0.020450325682759285, -0.00690684886649251, -0.010225162841379642, -0.004802728071808815, -0.013986638747155666, 0.007940894924104214, -0.00405691796913743, 0.0021527607459574938, 0.014202816411852837, 0.004579345230013132, -0.011089869774878025, 0.01683296635746956, 0.009828838519752026, 0.0028607395943254232, 0.008048983290791512, 0.016400612890720367, -0.027872396633028984, 0.009158690460026264, 0.004460447933524847, 0.009425308555364609, -0.003503865795210004, 0.014455022290349007, 0.007940894924104214, -0.0007777861319482327, -0.03406946361064911, 0.014844140037894249, -0.007551776245236397, 0.0098432507365942, 0.015334141440689564, 0.0034822479356080294, -0.014613552019000053, -0.03202299028635025, 0.016083553433418274, 0.024730626493692398, -0.01876414567232132, -0.00812104158103466, -0.0147864930331707, 0.0010007184464484453, -0.02063767798244953, 0.00603853864595294, -0.01874973438680172, -0.0037902998737990856, 0.006870819255709648, 0.014173991978168488, -0.008740748278796673, -0.012509430758655071, -0.0017564365407451987, -0.008935308083891869, 0.010426927357912064, -0.022871505469083786, 0.006690672133117914, 0.007429276127368212, 0.0005012599867768586, -0.021949151530861855, 0.010852075181901455, 0.014620757661759853, 0.002015848644077778, 0.004972066264599562, -0.0007255434175021946, 0.049461252987384796, 0.009706338867545128, 0.01332369726151228, -0.0014997265534475446, 0.012437372468411922, -0.0020338634494692087, 0.0015852965880185366, 0.008567807264626026, 0.023001212626695633, -0.005620596930384636, 0.016126789152622223, -0.03110063634812832, 0.009346043691039085, 0.002325701992958784, -0.007681482471525669, -0.011032222770154476, -0.009677514433860779, -0.018591204658150673, 0.012833695858716965, -0.013294873759150505, -0.011125899851322174, -0.012934578582644463, 0.008459718897938728, 0.04052594304084778, 0.0029255927074700594, -0.008466924540698528, -0.020349442958831787, 0.006398833356797695, 0.00541162583976984, 0.02517739124596119, 0.008135453797876835, 0.0009664904791861773, 0.009180308319628239, -0.015391788445413113, 0.0006728502921760082, -0.007184275891631842, 0.0037434615660458803, 0.010506192222237587, 0.02865063212811947, 0.0008980344864539802, 0.03308946266770363, 0.014649581164121628, -0.008027365431189537, -0.031158283352851868, -0.016458259895443916, 0.023303858935832977, -0.0019491941202431917, 0.007378834765404463, -0.013626344501972198, -0.009093837812542915, 0.007159055210649967, 0.023447977378964424, -0.015910612419247627, -0.018475910648703575, -0.0029382030479609966, -0.02609974518418312, -0.01680414378643036, 0.012783254496753216, 0.0008737145690247416, 0.0002197797439293936, -0.021387090906500816, -0.0025058493483811617, -0.014519874937832355, 0.013215608894824982, 0.0035362921189516783, 0.006377215497195721, -0.0014141566352918744, 0.004345153924077749, -0.01673208363354206, 0.01549267116934061, 0.016501495614647865, -0.013237225823104382, -0.007094202097505331, -0.0012015827232971787, 0.009540602564811707, -0.00961266178637743, -0.017870616167783737, -0.012740019708871841, -0.007310378830879927, 0.022986799478530884, -0.009252367541193962, 0.007007731590420008, -0.004330742172896862, -0.01356869749724865, -0.023462388664484024, -0.019023558124899864, -0.016861790791153908, 0.014375757426023483, 0.01774090901017189, 0.015190022997558117, 0.011025017127394676, -0.004622580483555794, 0.0014411787269636989, -0.010037809610366821, -0.00835163053125143, -0.011968988925218582, 0.003208423964679241, -0.033752404153347015, -0.0052458904683589935, -0.017106790095567703, -0.009266778826713562, 0.015463847666978836, -0.01925414800643921, 0.00652133347466588, 0.007825599983334541, -0.0047847130335867405, 0.016631202772259712, -0.007032951805740595, 0.0246153324842453, 0.022381504997611046, -0.0021959959995001554, -0.003118350403383374, 0.01776973344385624, 0.016097966581583023, 0.013734432868659496, 0.006856407504528761, 0.00840927753597498, 0.02948651649057865, 0.023822683840990067, 0.03314711153507233, 0.024283861741423607, -0.0010340457083657384, 0.0005683648632839322, 0.0012114908313378692, 0.015362964943051338, -0.010679134167730808, 0.004460447933524847, 0.012833695858716965, -0.002080701757222414, 0.012905755080282688, 0.013698403723537922, 0.014440610073506832, 0.00817148294299841, 0.017827380448579788, -0.0013655168004333973, 0.030322398990392685, -0.00253467308357358, -0.007854423485696316, 0.008315601386129856, -0.005303537473082542, 0.028809161856770515, 0.0052999346517026424, -0.00912266131490469, 0.027209453284740448, 0.004233462270349264, -0.010664721950888634, 0.010045015253126621, 0.025436803698539734, 0.023520035669207573, 0.009216337464749813, 0.01967208832502365, 0.0246153324842453, 0.020825032144784927, 0.002604930428788066, 0.019427089020609856, -0.009533396922051907, 0.022885916754603386, 0.019542383030056953, 0.039718884974718094, 0.023375919088721275, 0.022482387721538544, -0.012595901265740395, -0.0004269491764716804, -0.01556472945958376, -0.0066546425223350525, 0.0010196339571848512, 0.020450325682759285, -0.003729049814864993, -0.02906857430934906, -0.00222121668048203, -0.0034426155034452677, -0.008740748278796673, -0.02171856351196766, -0.017582379281520844, 0.00395603571087122, 0.017438262701034546, 0.013965021818876266, 0.00325886532664299, 0.005137802101671696, 0.029890045523643494, 0.017150025814771652, 0.029428869485855103, -0.0008638064609840512, 0.030697105452418327, 0.013957815244793892, 0.011637518182396889, -0.007688688114285469, 0.009346043691039085, 0.010246780700981617, 0.00506934616714716, 0.027209453284740448, -0.003916403278708458, 0.015103552490472794, -0.01583855412900448, -0.009699132293462753, 0.013395755551755428, 0.004258682951331139, 0.0016924842493608594, -0.014318110421299934, -0.009980162605643272, 0.01967208832502365, 0.016386201605200768, 0.009000160731375217, -0.017049143090844154, -0.0023905551061034203, -0.015290905721485615, 0.011010604910552502, -0.002568901050835848, -0.002486033132299781, 0.00580074405297637, -0.00018566435028333217, -0.009555014781653881, 0.024283861741423607, 0.0035164759028702974, -0.015103552490472794, -0.010852075181901455, 0.013388549908995628, -0.02421180158853531, -0.0005444952985271811, -0.025883568450808525, -0.009310014545917511, 0.008798396214842796, -0.01454149279743433, 0.0021113266702741385, -0.002687798347324133, -0.02308768220245838, 0.003208423964679241, -0.00540802301838994, 0.02117091417312622, 0.024759449064731598, 0.007486923132091761, 0.026344746351242065, -0.017005909234285355, 0.01568002440035343, 0.020839443430304527, 0.0017978703835979104, -0.0065321424044668674, 0.005771920550614595, -0.007767952978610992, 0.009504573419690132, 0.010707957670092583, -0.01928297057747841, -0.009432514198124409, -0.007890453562140465, -0.0014258661540225148, -0.007566187996417284, 0.008697513490915298, 0.01406590361148119, -0.005267508327960968, -0.008243542164564133, -0.007998541928827763, 0.00016562295786570758, -0.010268398560583591, 0.000495855521876365, -0.015103552490472794, -0.00937486719340086, -0.02854974940419197, 0.004510889295488596, -0.011457370594143867, 0.0027976881247013807, 0.006769936997443438, -0.009396485053002834, -0.002812099875882268, -0.001161049585789442, 0.027886807918548584, 0.013705609366297722, 0.015132375992834568, -0.013201196677982807, -0.01815885119140148, 0.017020320519804955, -0.0013105719117447734, 0.009475749917328358, -0.004665816202759743, 0.019383853301405907, 0.009273984469473362, -0.018533557653427124, -0.014447816647589207, 0.008020159788429737, 0.011709576472640038, -0.027065334841609, 0.00047603933489881456, 0.0007949001155793667, -0.028780339285731316, 0.0021581649780273438, -0.00739324651658535, 0.0003668249992188066, 0.023909155279397964, 0.007688688114285469, -0.012422960251569748, 0.0031687915325164795, -0.019989147782325745, 0.008726336993277073, -0.005274713970720768, -0.017582379281520844, 0.0270365122705698, -0.007371629122644663, 0.016876202076673508, -0.008005747571587563, -0.03101416490972042, 0.0021401504054665565, -0.026834746822714806, 0.045570071786642075, -0.0057178763672709465, -0.021026797592639923, -0.010109868831932545, -0.01255266647785902, 0.006074568256735802, -0.008567807264626026, -0.004845963325351477, -0.0008520968840457499, 0.011702370829880238, 0.0010817847214639187, -0.009281191043555737, -0.007731923833489418, 0.007731923833489418, -0.013619138859212399, 0.005105375312268734, 0.012956196442246437, 0.014029874466359615, -0.014101933687925339, -0.002826511627063155, 0.0221076812595129, -0.011817664839327335, -0.026359157636761665, 0.005807950161397457, 0.005995303392410278, -0.005494493525475264, -1.2047353266098071e-05, 0.00864707212895155, 0.012667960487306118, -0.02618621662259102, -0.00039429747266694903, 0.006856407504528761, 0.008747954852879047, 0.016559142619371414, -0.007180672604590654, -0.015377376228570938, 0.0009809022303670645, 0.006568172015249729, -0.027987690642476082, -0.00738604087382555, -0.016458259895443916, -0.012026635929942131, -0.017121203243732452, 0.010448545217514038, -0.008531778119504452, -0.008856043219566345, -0.014988258481025696, -0.025955628603696823, 0.00810663029551506, 5.973010047455318e-05, 0.0027670629788190126, -0.0031453724950551987, 0.0011187149211764336, -0.0058836122043430805, 0.017971498891711235, -0.021790621802210808, 0.012120313011109829, -0.03216710686683655, -0.0030679090414196253, 0.00603133300319314, -0.0050729489885270596, 0.010931340046226978, -0.0036443807184696198, -0.006218686234205961, 0.005865597166121006, 0.007955306209623814, -0.0014609949430450797, -0.02315974235534668, -0.011868106201291084, 0.008553395047783852, -0.004802728071808815, 0.018533557653427124, 0.02660415880382061, -0.016443848609924316, 0.022957976907491684, 0.00937486719340086, -0.007948100566864014, -0.0028589381836354733, 0.015651199966669083, 0.007022143341600895, -0.026503276079893112, 0.010347663424909115, -0.01085928175598383, -0.014685611240565777, -0.014570316299796104, 0.0009092936525121331, 0.021977974101901054, -0.020868267863988876, -0.016587967053055763, 0.02117091417312622, -0.016948262229561806, 0.011248399503529072, -0.007274349220097065, -0.0027292321901768446, -0.005779126659035683, 0.005213463678956032, 0.008315601386129856, -0.006629421841353178, 0.006917657796293497, -0.013539873994886875, -0.0030120634473860264, -0.0031687915325164795, 0.01823090948164463, 0.004918022081255913, -0.02562415786087513, 0.022929152473807335, -0.027483277022838593, 0.02072414942085743, -0.00194559118244797, -0.017438262701034546, -0.012718401849269867, 0.02075297385454178, -0.007472511380910873, -0.006712289527058601, -0.018519146367907524, -0.03383887559175491, -0.006200671195983887, -0.016645614057779312, -0.00809942465275526, 0.007566187996417284, 0.007032951805740595, 0.005602582357823849, -0.0017050945898517966, -0.012235607020556927, -0.027713866904377937, 0.002183385659009218, -0.013698403723537922, -0.0005832270253449678, 0.013993845321238041, 0.030725929886102676, -0.006027729716151953, 0.027267100289463997, 0.014945022761821747, 0.005638611502945423, -0.012495019473135471, 0.009511779062449932, 0.01129163522273302, 0.004910816438496113, 0.002322099171578884, -0.006222289055585861, -0.011990606784820557, -0.005026110447943211, 0.00786883570253849, 0.010217957198619843, -0.007739129476249218, -0.012574284337460995, -0.011125899851322174, 0.012516637332737446, -0.015925023704767227, 0.020407089963555336, 0.016487084329128265, 0.00246081268414855, 0.009468544274568558, -0.011320458725094795, 0.008214718662202358, 0.017567967996001244, 0.0028895633295178413, -0.02068091370165348, -0.03692299872636795, -0.010909723117947578, -0.013647962361574173, -0.0009511779062449932, 0.0008115637465380132, -0.007940894924104214, 0.02266974002122879, -0.01726531982421875, 0.0016906827222555876, 0.008726336993277073, -0.004492874722927809, -0.013107520528137684, -0.006578980479389429, -0.021502386778593063, -0.010513398796319962, 0.008632659912109375, -0.002606731839478016, 0.019355028867721558, -0.0032714756671339273, -0.0057214791886508465, -0.004586551338434219, -0.00753736449405551, 0.028982102870941162, -0.022280622273683548, -0.008820013143122196, -0.02808857336640358, 0.01830296963453293, 0.02415415458381176, 0.017596792429685593, -0.0018699293723329902, -0.0015312524046748877, 0.0022158122155815363, -0.0038191236089915037, -0.031850047409534454, 0.007331996690481901, -0.0010097258491441607, 0.0010610678000375628, 0.011695165187120438, -0.0037866970524191856, 0.010736781172454357, 0.012451783753931522, -0.004817139822989702, -0.00753736449405551, -0.02664739452302456, 0.019138852134346962, 0.022914741188287735, -0.020464736968278885, -0.01380649209022522, 0.014282080344855785, 0.01085928175598383, -0.0017141018761321902, -0.01501708198338747, -0.020349442958831787, -0.007191481534391642, -0.006081773899495602, 0.013496638275682926, 0.003087725257501006, 0.021949151530861855, -0.013741638511419296, 0.020983561873435974, 0.0015393589856103063, 0.010052220895886421, -0.005609788000583649, -0.009591043926775455, -0.007223908323794603, 0.0011403326643630862, 0.0013051674468442798, -0.0002724728547036648, 0.0007327492930926383, 7.65063232393004e-05, -0.009475749917328358, -0.006798760499805212, 0.004085741471499205, 0.008546189405024052, 0.0197297353297472, -0.0023004815448075533, 0.0047847130335867405, -0.004355962388217449, -1.4052900041860994e-05, -0.023909155279397964, 0.017827380448579788, 0.00044744095066562295, -0.0009989169193431735, 0.007079790346324444, -0.0004021789354737848, 0.01831738092005253, 0.00277967331930995, -0.005847582593560219, -0.024802684783935547, -0.0011376304319128394, -0.031244754791259766, 0.008027365431189537, 0.004413609858602285, 0.01776973344385624, -0.009980162605643272, 0.0034570274874567986, 0.014274874702095985, -0.0013655168004333973, -0.008913690224289894, 0.013121931813657284, 0.00468743359670043, -0.012293254025280476, -0.008668689988553524, 0.0011331267887726426, -0.010412516072392464, 0.03254181519150734, 0.004842360503971577, 0.014627963304519653, 0.028809161856770515, -0.0010268398327752948, -0.011471781879663467, -0.0034137920010834932, -0.007029348984360695, -0.007486923132091761, 0.0171932615339756, -0.02019091323018074, 0.0024139743763953447, 8.742775389691815e-05, -0.006708686705678701, 0.008726336993277073, 0.02854974940419197, 0.0002884609275497496, 0.00190595886670053, 0.015925023704767227, 0.01766885071992874, 0.008668689988553524, -0.0017672453541308641, -0.01918208785355091, 0.007277952507138252, 0.006092582829296589, 0.0030913283117115498, -0.012221194803714752, 0.008373248390853405, -0.010268398560583591, 0.00302107073366642, -0.005054934415966272, 0.0028391219675540924, 0.01678973250091076, -0.008719131350517273, -0.0036029466427862644, -0.009454132057726383, 0.0014808110427111387, -0.010852075181901455, -0.03104298934340477, 0.018533557653427124, -0.001127722323872149, 0.007659864611923695, -0.029385633766651154, 0.030725929886102676, -0.0172797329723835, -0.003851549932733178, -0.026229452341794968, 0.004705448634922504, 0.006445671897381544, 0.009439720772206783, 0.012192371301352978, -0.0010367479408159852, 0.008380454033613205, 0.013640756718814373, 0.005451258271932602, -0.030841223895549774, 0.006153833121061325, 0.01572326011955738, 0.002862541237846017, 0.002637356985360384, -0.0020752972923219204, 0.02016209065914154, 0.0061898622661828995, 0.003033681074157357, 0.0030480928253382444, -0.018000321462750435, -0.00564942043274641, 0.017178850248456, 0.009836044162511826, 0.0017357196193188429, -0.020090030506253242, 0.004128976725041866, 0.0070005254819989204, 0.005346772726625204, 0.010066633112728596, 0.02369297668337822, 0.00454331561923027, 0.004507286474108696, 0.0032642697915434837, 0.0007795876008458436, 0.006542951334267855, -0.002289672615006566, -0.005022507626563311, 0.013626344501972198, -0.018576793372631073, -0.0033543433528393507, 0.00835883617401123, -0.03395416960120201, 0.0003893434186466038, 0.011233988218009472, -0.009533396922051907, -0.009807220660150051, 0.0015726862475275993, -0.007209496572613716, 0.024384742602705956, 0.01869208738207817, -0.007681482471525669, 0.005901626776903868, 0.019571207463741302, -0.01452708151191473, 0.036173585802316666, 0.007068981416523457, -0.001771748997271061, -0.006384421605616808, 0.006413245107978582, -0.00864707212895155, -0.019124440848827362, -0.02373621240258217, -0.021315032616257668, -0.004219050519168377, 0.009331632405519485, 0.0048279487527906895, 0.0026103348936885595, 0.0005084658623673022, -0.0047775073908269405, -0.016544731333851814, 0.0017573372460901737, -0.009093837812542915, 0.008928101509809494, 0.0047775073908269405, -0.01356869749724865, 0.0072887614369392395, -0.013388549908995628, 0.0007223908323794603, -0.012768843211233616, 0.009468544274568558, -0.011003399267792702, 0.013611932285130024, 0.008257953450083733, -0.007133834529668093, 0.008906484581530094, -0.0002817054046317935, 0.007155452389270067, -0.014750463888049126, 0.0005080155096948147, 0.0017798556946218014, 0.027872396633028984, 0.013604726642370224, 0.00938207283616066, -0.018519146367907524, -0.00012103649351047352, -0.004514492116868496, -0.003608351107686758, 0.011803253553807735, -0.0032426519319415092, -0.0015690833097323775, -0.0017068960005417466, 0.015290905721485615, -0.0026643790770322084, -0.00038596565718762577, 0.03363711014389992, 0.0010808840161189437, -0.003366953693330288, -0.01870649866759777, -0.01573767140507698, -0.0013114726170897484, 0.01962885446846485, -0.02409650757908821, -0.01977297104895115, 0.00738604087382555, -0.005606185179203749, 0.001160148880444467, -0.006204274017363787, 0.003422799287363887, 0.01921091228723526, -0.01034045685082674, -0.0025652979966253042, 0.017380615696310997, -0.01284810807555914, 0.02709415927529335, 0.014195609837770462, -0.014872964471578598, 0.011716783046722412, -0.002253643237054348, 0.018130028620362282, 0.00021493829262908548, 0.013647962361574173, 0.0020698928274214268, -0.0030895269010215998, -0.020061207935214043, 0.009403690695762634, 0.0052530961111187935, 0.00048729853006079793, 0.002918386831879616, -0.0008183192694559693, 0.0020428707357496023, 0.010174721479415894, -0.014246051199734211, -0.026733864098787308, -0.02272738702595234, -0.022871505469083786, -0.0025544892996549606, -0.013979433104395866, -0.007090599276125431, 0.0014528882456943393, -0.016097966581583023, 0.002030260395258665, 0.007638247217983007, 0.0012610313715413213, -0.019845031201839447, -0.01619884930551052, -0.0014276676811277866, -0.017452673986554146, -0.0019311794312670827, -0.0001030217608786188, 0.0006949183298274875, -0.008567807264626026, -0.010780016891658306, 0.007047363556921482, -0.0004967562854290009, -0.01280487235635519, -0.0019473927095532417, 0.01676090806722641, 0.007436482235789299, 0.01380649209022522, 0.010736781172454357, -0.013626344501972198, 0.01158707682043314, -0.013878550380468369, 0.027324747294187546, 0.003212027018889785, 0.019527971744537354, 0.02068091370165348, -0.004907213617116213, -0.022756211459636688, 0.01081604603677988, -0.0011871709721162915, 0.02173297479748726, -0.006726701743900776, -0.0057214791886508465, -0.008279571309685707, 0.001631234074011445, 0.013186785392463207, 0.0111186932772398, 0.01304987259209156, -0.012912960723042488, -0.01332369726151228, 0.013662373647093773, 0.03588534891605377, 0.004341550637036562, 0.013258843682706356, -0.000399476703023538, 0.007796776480972767, -0.0007061775540933013, 0.002812099875882268, -0.00887766107916832, -0.0013646160950884223, 0.011255605146288872, -0.01507472898811102, -0.01583855412900448, -0.029400045052170753, 0.010527810081839561, -0.008308394812047482, 0.010008986108005047, 0.009043396450579166, 0.0061862594448029995, 0.00506934616714716, 0.0222085639834404, -0.01231487188488245, -0.010008986108005047, -0.010707957670092583, 0.004100153222680092, -0.025883568450808525, 0.008373248390853405, 0.01452708151191473, -0.002756254281848669, 0.0024031654465943575, 0.004082138650119305, 0.006488907150924206, 0.03104298934340477, 0.02024856023490429, 0.00381552055478096, 0.007890453562140465, -0.0064780982211232185, 0.0033525419421494007, -0.008560601621866226, 0.015579141676425934, 0.0017150025814771652, -0.012444578111171722, 0.0011043031699955463, -0.006914054974913597, 0.008755160495638847, 0.004276697523891926, -0.004647801164537668, -0.011399723589420319, 0.00817868858575821, 0.005512508563697338, 0.02359209582209587, 0.020925914868712425, -0.013734432868659496, 0.013856933452188969, -0.02503327466547489, 0.0049288310110569, -0.012408548034727573, 0.016847379505634308, -0.0034498213790357113, -0.0052999346517026424, 0.013489432632923126, -0.020291795954108238, -0.0024662169162184, 0.018922675400972366, 0.023375919088721275, 0.007162658032029867, -0.01081604603677988, 0.010253986343741417, 0.009173102676868439, 0.0009038892458193004, 0.015146788209676743, 0.022770622745156288, -0.00469103641808033, -0.01572326011955738, -0.0022284225560724735, -0.007058172486722469, -0.018922675400972366, 0.014757669530808926, 0.010477368719875813, 0.01452708151191473, -0.004993684124201536, -0.002954416209831834, 0.007342805620282888, -0.024269448593258858, 0.016155613586306572, 0.011471781879663467, -0.018130028620362282, -0.016025906428694725, 0.011723988689482212, -0.0027490484062582254, 0.013914580456912518, -0.020378267392516136, -0.013359726406633854, -0.020825032144784927, 0.018836205825209618, -0.0013285866007208824, 0.01111148763448, 0.010679134167730808, 0.0013844323111698031, -0.006798760499805212, -0.003244453575462103, 0.005145007744431496, 0.0020518782548606396, 0.007472511380910873, 0.026387982070446014, 0.009245160967111588, -0.00912266131490469, -0.005145007744431496, 0.008229129947721958, -0.019138852134346962, -0.0065285395830869675, 0.02017650194466114, -0.02960181050002575, 0.012682372704148293, 0.003125556278973818, 0.00714824628084898, -0.0009809022303670645, -0.025307098403573036, 0.017452673986554146, -0.006002509035170078, 0.009814427234232426, 0.00913707260042429, 0.0029796368908137083, 0.027468865737318993, -0.014073110185563564, -0.0012078878935426474, -0.007187878713011742, -0.011752812191843987, 0.04773183912038803, 0.03404064103960991, 0.006805966142565012, 0.0023329081013798714, 0.01585296541452408, -0.017596792429685593, 0.021776210516691208, -0.011565458960831165, -0.007840012200176716, -0.020335031673312187, 0.0040208883583545685, -0.009403690695762634, 0.012437372468411922, 0.01926855929195881, 0.0016762709710747004, -0.002084304578602314, 0.004892801865935326, 0.01058545708656311, 0.0004544216499198228, -0.005635008681565523, 0.00908663123846054, -0.010470163077116013, -0.011233988218009472, -0.0015555722638964653, 0.034300051629543304, 0.004024491645395756, 0.0006291645695455372, -0.0014682008186355233, -0.004453242290765047, 0.004665816202759743, 0.01206266600638628, -0.0014808110427111387, -0.019311795011162758, -0.005206258036196232, -0.0021113266702741385, 0.006640230771154165, 0.014188404195010662, 5.1736064051510766e-05, -0.006096185650676489, -0.010369280353188515, -0.02470180206000805, -0.004961257800459862, 0.014310904778540134, 0.00020840794604737312, -0.029947692528367043, 0.0008259755559265614, 0.0004800926544703543, -0.0009295602794736624, 0.0025743055157363415, -0.010707957670092583, 0.01033325120806694, 0.0013123733224347234, -0.019931500777602196, -0.007818394340574741, -0.01628531888127327, -0.004546918906271458, 0.008546189405024052, -0.01877855882048607, -0.011039428412914276, -0.013258843682706356, -0.01818767562508583, 0.0074148643761873245, 0.008870454505085945, 0.024355920031666756, -0.017596792429685593, 0.035770054906606674, -0.009706338867545128, 0.017539145424962044, -0.0008097622776404023, -0.018029145896434784, 0.007998541928827763, -0.012732814066112041, 0.0014627963537350297, -0.00777515908703208, 0.0009439720306545496, -0.011796047911047935, -0.011558253318071365, 0.010924134403467178, 0.014800905250012875, 0.030178282409906387, 0.021473562344908714, 0.0018933485262095928, -0.032224755734205246, -0.011176340281963348, -0.0019329809583723545, 0.011767224408686161, -0.00865427777171135, 0.013604726642370224, 0.010736781172454357, -0.023447977378964424, -0.013662373647093773, -0.017077967524528503, -0.0012628327822312713, 0.005267508327960968, 0.021516798064112663, -0.02027738466858864, 0.0049288310110569, -0.002619342179968953, 0.0046550072729587555, -0.004500080365687609, -0.005771920550614595, -0.007094202097505331, -0.012999432161450386, 0.011752812191843987, 0.0032300418242812157, -0.03355063870549202, -0.011334870010614395, 0.005912435706704855, 0.001336693181656301, -0.0011502407724037766, 0.006633025128394365, 0.004766698461025953, 0.006928466726094484, 0.02117091417312622, -0.008207513019442558, 0.010837663896381855, 0.004514492116868496, -0.009036190807819366, 0.008200306445360184, 0.014022668823599815, -0.0014889177400618792, -0.001560075907036662, 0.025739451870322227, 0.004381183069199324, 0.0002184286422561854, -0.004046109039336443, -0.0026787908282130957, 0.024932391941547394, -0.016458259895443916, -0.0031525783706456423, 0.006204274017363787, -0.011882518418133259, 0.005447655450552702, 0.017539145424962044, -0.013792079873383045, 0.015276494435966015, 0.02513415552675724, -0.02016209065914154, 0.005818759091198444, 0.012444578111171722, -0.006445671897381544, 0.027872396633028984, 0.017495909705758095, -0.022439152002334595, -0.004993684124201536, -0.0064780982211232185, -0.004474859684705734, 0.0442730076611042, 0.011875312775373459, -0.011212370358407497, 0.009324425831437111, -0.015218846499919891, -0.02078179642558098, 0.017092378810048103, -0.0026643790770322084, 0.005353978835046291, -0.005707067437469959, 0.00793368835002184, -0.02019091323018074, -0.004961257800459862, 0.01087369304150343, 0.0037110350094735622, 0.01570884697139263, 0.018403852358460426, 0.0027742688544094563, -0.006088980007916689, -0.018850617110729218, -0.01104663498699665, -0.012091489508748055, -0.01880738139152527, 0.011219576001167297, 0.0015060317236930132, 0.0020374662708491087, 0.002104120794683695, -0.020349442958831787, -0.006341186352074146, -0.006633025128394365, 0.0030462914146482944, 0.007285158149898052, -0.024413567036390305, -0.00395963853225112, 0.023851506412029266, 0.015334141440689564, 0.006143024191260338, -0.0004936037003062665, -0.0030643062200397253, 0.002606731839478016, 0.00836604181677103, 0.014916199259459972, -0.003673204220831394, 0.016097966581583023, 0.031215930357575417, -0.01776973344385624, -0.00037448128568939865, -0.01279766671359539, -0.016616789624094963, 0.001249321736395359, 0.012120313011109829, -0.02419739030301571, -0.00443883053958416, 0.01429649256169796, -0.005505302455276251, -0.012754430994391441, -0.022885916754603386], "6a666477-1bfa-452f-bad1-682e5993dab0": [-0.03617636486887932, -0.0036676828749477863, -0.006287966854870319, 0.03488945960998535, -0.0108958063647151, -0.036805517971515656, 0.03712009638547897, 0.028483524918556213, -0.020676294341683388, 0.02252085879445076, 0.02367907576262951, 0.0008986001485027373, -0.007371113169938326, -0.016987161710858345, 0.009880580008029938, 0.054736413061618805, -0.020533304661512375, 0.004918841645121574, 0.015757452696561813, -0.002775785280391574, 0.04715796560049057, 0.016987161710858345, -0.02702503092586994, 0.012268505990505219, -0.045442089438438416, 0.0022860460449010134, -0.0014656432904303074, 0.002137694275006652, -0.014413350261747837, -0.019375087693333626, 0.013748448342084885, 0.00985198188573122, 0.04215332865715027, -0.007456906605511904, -0.0027150146197527647, -0.03995129093527794, 0.01936079002916813, -0.013519665226340294, 0.004200318828225136, -0.0011439166264608502, -0.06486007571220398, 0.0574532151222229, 0.001145704067312181, -0.012618830427527428, -0.019289294257760048, -0.0007605258724652231, 0.02629578486084938, 0.015900442376732826, -0.005580168683081865, -0.013326629064977169, 0.025423547253012657, -0.011539258994162083, -0.017230244353413582, 0.012904809787869453, -0.01800238899886608, -0.0628582239151001, -0.0009651797008700669, 0.10432519763708115, 0.021763015538454056, -0.052076805382966995, -0.0025845367927104235, -0.016215018928050995, 0.01160360500216484, -0.006627567112445831, -0.02965603955090046, -0.02695353701710701, 0.0005853635957464576, 0.02522336319088936, -0.06222906708717346, 0.0023360922932624817, 0.010116512887179852, 0.0061700004152953625, -0.00873666349798441, 0.04461275041103363, 0.0023146439343690872, -0.006141402758657932, 0.0632585883140564, 0.010180857963860035, 0.011017347685992718, 0.02140554040670395, -0.009587451815605164, 0.016558194532990456, 0.02379346638917923, 0.01947518065571785, 0.055422764271497726, 0.02613849565386772, -0.053077735006809235, -0.049760375171899796, -0.006341588217765093, -0.028483524918556213, 0.02136264368891716, 0.044669944792985916, 0.009994971565902233, -0.0018570772372186184, 0.00022219240781851113, 0.0007542700623162091, 0.003026016987860203, -0.016944264993071556, 0.015414277091622353, 0.005401431582868099, -0.013927185907959938, 0.04341163858771324, -0.018102481961250305, 0.024537011981010437, -0.009115586057305336, -0.006545348092913628, 0.00012947259529028088, -0.011939629912376404, -0.02020442858338356, 0.05625210329890251, 0.021033767610788345, -0.024494115263223648, 7.395242573693395e-05, 0.0021412689238786697, -0.006234345957636833, -0.029598843306303024, -0.007428308948874474, 0.01665828563272953, -0.007671391125768423, -0.0428110808134079, -0.0023789892438799143, 0.005297764204442501, -0.005580168683081865, 0.019189201295375824, 0.0028186822310090065, 0.006012712139636278, -0.001068847137503326, 0.020261624827980995, 0.018731635063886642, -0.026424475014209747, -0.010781414806842804, -0.005415730644017458, -0.01977545954287052, 0.016715481877326965, -0.028369134292006493, -0.014241762459278107, -0.010667023248970509, 0.05487940087914467, -0.01336237695068121, 0.06611838191747665, -0.026896340772509575, -0.03752046823501587, -0.0028097452595829964, -0.024551311507821083, -0.013090696185827255, -0.01920350082218647, -0.052048210054636, 0.04221052676439285, 0.01747332699596882, 0.031600698828697205, -0.014105922542512417, -0.053964268416166306, -0.009480209089815617, -0.0013682316057384014, -0.01681557483971119, -0.05545135959982872, -0.006877799052745104, 0.00653462391346693, -0.02124825306236744, 0.024208135902881622, -0.01904621347784996, -0.032372843474149704, -0.005687410477548838, 0.0012681388761848211, 0.020175829529762268, 0.009530255571007729, 0.018030986189842224, 0.04206753522157669, -0.012061171233654022, 0.015714555978775024, 0.03294479846954346, -0.013140742667019367, -0.033945728093385696, 0.0040680537931621075, -0.02206329256296158, 0.007578447926789522, 0.023235807195305824, 0.039894092828035355, -0.0010983387473970652, -0.013240835629403591, -0.002098372206091881, 0.029026884585618973, -0.005951941478997469, -0.014971009455621243, -0.009537405334413052, -0.008043164387345314, 0.03131471946835518, 0.014699329622089863, 0.011188934557139874, 0.011975377798080444, -0.03297339752316475, 0.006927845533937216, -0.028526421636343002, 0.027368206530809402, -0.05187661945819855, -0.010073616169393063, 0.00043276691576465964, -0.02340739406645298, -0.02206329256296158, 0.0015192643040791154, -0.021877406165003777, -0.0385499931871891, -0.02729671075940132, 0.02965603955090046, -0.02001854218542576, 0.025652332231402397, 0.019189201295375824, -0.004582816269248724, 0.0012931620003655553, -0.02638157829642296, 0.04072343185544014, -0.04341163858771324, 0.008243349380791187, -0.009437312372028828, -0.02320721000432968, 0.025209063664078712, -0.007142329588532448, 0.029012586921453476, -0.0003244076215196401, -0.00020577094983309507, -0.018917521461844444, 0.005934067536145449, -0.018417058512568474, -0.017959492281079292, -0.022077592089772224, -0.06257224082946777, -0.010810012929141521, 0.02560943365097046, -0.02590971253812313, -0.0023664776235818863, 0.04778711870312691, 0.016786977648735046, -0.03423170745372772, -0.04641442000865936, -0.020376015454530716, 0.03955091908574104, 0.009573152288794518, -0.007621344644576311, 0.03712009638547897, -0.01785939931869507, 0.004586390685290098, 0.0032333519775420427, 0.0017221308080479503, -0.004557793028652668, 0.02738250605762005, -0.0017400045180693269, -0.015986235812306404, -0.00016857130685821176, 0.02140554040670395, -0.0036927061155438423, 0.029370060190558434, -0.012518738396465778, 0.006598969455808401, -0.01015940960496664, -0.028983987867832184, 0.04770132526755333, 0.02297842688858509, -0.0002336986071895808, -0.008050313219428062, -0.008979746140539646, 0.034346096217632294, 0.04484153166413307, -0.017802203074097633, 0.03188667818903923, -0.008064612746238708, -0.013812793418765068, 0.03208686411380768, -0.027396803721785545, -0.008136107586324215, 0.03883597254753113, -0.00807891134172678, 0.05482220649719238, -0.01045253872871399, -0.004368331748992205, 0.012590233236551285, 0.00988772977143526, -0.010931553319096565, -0.029284266754984856, 0.006681188475340605, 0.00940871424973011, 0.007985968142747879, 0.024923084303736687, 0.02352178655564785, 0.03920774534344673, 0.008100359700620174, -0.013326629064977169, 0.012032573111355305, -0.04346883296966553, -0.03320218250155449, -0.0135911600664258, 0.0017596655525267124, 0.008400637656450272, 0.009816234931349754, 0.032372843474149704, 0.0010161197278648615, -0.0015460748691111803, -0.01777360588312149, -0.027625586837530136, 0.003410301636904478, -0.0011278303572908044, -0.015113999135792255, 0.013369525782763958, 0.0015612675342708826, -0.04956018924713135, 0.01981835626065731, -0.049074023962020874, 0.030685564503073692, 0.009751889854669571, 0.007406860589981079, -0.02167722024023533, 0.034145914018154144, -0.018102481961250305, -0.006727660074830055, -0.015600163489580154, 0.054193053394556046, -0.0072495718486607075, 0.00401085801422596, 0.004268239252269268, -0.01924639753997326, -0.028798101469874382, 0.045327696949243546, -0.004904542583972216, -0.06503166258335114, 0.08241919428110123, 0.030142204836010933, -0.0010313123930245638, 0.004929565824568272, -0.006556072272360325, -0.005690985359251499, -0.008271947503089905, -0.006759832613170147, -0.0024558461736887693, -0.000990202883258462, 0.0006220046780072153, 0.009072689339518547, -0.0083863390609622, -0.029856225475668907, -0.05931207910180092, -0.017344636842608452, -0.03611917048692703, -0.006523899734020233, 0.006531049031764269, -0.02066199481487274, 0.0007573979673907161, 0.022763941437005997, 0.002007216215133667, -0.014227463863790035, 0.01715875044465065, -0.0074712056666612625, 0.0013226536102592945, 0.0009030685760080814, 0.0026899916119873524, 0.03937933221459389, 0.023264404386281967, 0.03211545944213867, -0.0024308229330927134, 0.008128957822918892, 0.024537011981010437, 0.030085008591413498, -0.008507880382239819, 0.025623733177781105, 0.025752423331141472, -0.005744606722146273, 0.04424097761511803, -0.0035354173742234707, 0.03011360578238964, 0.015357080847024918, -0.0011743019567802548, -0.0012779694516211748, -0.009973523207008839, -0.008372040465474129, 0.011238981038331985, 0.030714161694049835, 0.024494115263223648, -0.03852139413356781, 0.014971009455621243, 0.04833047837018967, 0.025924012064933777, -0.011946779675781727, 0.017058657482266426, 0.0024433345533907413, 0.04441256448626518, 0.016872771084308624, 0.007167352829128504, 0.012232759036123753, 0.001874950947239995, 0.031715091317892075, 0.00034630289883352816, 0.011417718604207039, 0.02552364021539688, -0.014048726297914982, -0.004325435031205416, -0.001412915880791843, -0.010116512887179852, -0.018903223797678947, 0.016786977648735046, 0.01993274874985218, -0.0381782203912735, 0.02340739406645298, -0.024236734956502914, 0.004707932006567717, 0.017602017149329185, 0.008500730618834496, 0.0025720251724123955, 0.018788831308484077, -0.01588614284992218, -0.023736270144581795, -0.0029884823597967625, 0.009994971565902233, -0.0250660739839077, -0.0038964662235230207, 0.018488552421331406, 0.05602331832051277, -0.004815174266695976, 0.026467371731996536, -0.01355541218072176, 0.011610753834247589, 0.029241370037198067, -0.02429393120110035, -0.014685030095279217, 0.023807765915989876, 0.05058971419930458, -0.013977231457829475, -0.0025738126132637262, -0.002266384894028306, 0.030256595462560654, 0.020275922492146492, 0.03251583129167557, -0.010002121329307556, -0.008543627336621284, 0.0024933808017522097, 0.01266887690871954, -0.009201379492878914, -0.01720164716243744, 0.02297842688858509, 0.0004942077212035656, 0.015871843323111534, 0.010359595529735088, 0.0006077057332731783, 0.02009003609418869, -0.004257515072822571, 0.027854371815919876, -0.0031296845991164446, 0.011403419077396393, -0.011003048159182072, -0.031143130734562874, -0.031257521361112595, -0.028669411316514015, -0.05499379336833954, 0.01777360588312149, 0.007778633385896683, 0.0389503613114357, -0.009723291732370853, 0.01638660579919815, 0.02093367464840412, 0.036147765815258026, -0.0011439166264608502, -0.012325702235102654, 0.03197247162461281, -0.06348737329244614, -0.02838343195617199, 0.01622931845486164, 0.023965055122971535, -0.012432944029569626, 0.04158136993646622, -0.041238196194171906, 0.027539793401956558, 0.0200471393764019, 0.006345162633806467, 0.010431090369820595, 0.004396929871290922, -0.0029152000788599253, 0.01700146123766899, 0.019389387220144272, 0.026538867503404617, 0.027697082608938217, 0.019074810668826103, -0.009823384694755077, 0.02479439415037632, -0.005544421263039112, -0.011396270245313644, -0.014456246979534626, 0.006820603273808956, 0.0043147108517587185, 0.004915266763418913, 0.005029658786952496, -0.017072957009077072, -0.001199325080960989, 0.012104067951440811, -0.009401565417647362, 0.02093367464840412, -0.009337219409644604, -0.0012851188657805324, -0.01927499659359455, -0.023049920797348022, -0.02915557660162449, 0.011317625641822815, -0.04092361778020859, -0.018760234117507935, -0.08567935973405838, 0.03963671252131462, -0.0016497423639521003, -0.008136107586324215, -0.0035890385042876005, -0.021505633369088173, 0.010874358005821705, -0.04398359730839729, 0.017530523240566254, -0.04152417555451393, -0.01654389500617981, -0.008629421703517437, -0.017187347635626793, -0.006802729330956936, -0.0013423147611320019, -0.007807231042534113, 0.028712308034300804, -0.0035211185459047556, -0.009072689339518547, 0.03566160053014755, -0.0014173842500895262, -0.027239516377449036, -0.012633129954338074, -0.03486086055636406, 0.004446975886821747, -0.010767115280032158, -0.01010221429169178, -0.0018177550518885255, -0.01116033736616373, 0.030914347618818283, -0.01761631667613983, -0.011095991358160973, 0.04118100181221962, 0.013827092945575714, 0.008364890702068806, 0.003583676414564252, -0.0018963993061333895, -0.012883361428976059, 0.02367907576262951, 0.0022556607145816088, 0.028712308034300804, -0.03909335285425186, -0.005866147577762604, -0.01455633994191885, -0.014334705658257008, -0.022106189280748367, 0.02302132360637188, 0.005716008599847555, -0.015028205700218678, -0.001860652002505958, -0.001040249248035252, -0.013841391541063786, 0.0014424073742702603, -0.016558194532990456, -0.0009517744183540344, 0.026152795180678368, -0.04018007218837738, 0.023350199684500694, -0.026653258129954338, 0.0021841658744961023, -0.001412915880791843, -0.034031521528959274, 0.03280181065201759, -0.004032306373119354, -0.003215478267520666, -0.0020501131657510996, -0.005698135122656822, -0.02706792764365673, 0.016086328774690628, -0.012475840747356415, -0.00930862221866846, 0.012718923389911652, -0.005272740963846445, 0.038893166929483414, -0.008028864860534668, -0.016958564519882202, 0.026538867503404617, -0.020075738430023193, -0.005269166082143784, -0.05699564889073372, -0.0035211185459047556, 0.017358936369419098, -0.00487951934337616, 0.007321066688746214, 0.014506293460726738, 0.025209063664078712, 0.011253280565142632, -0.013076397590339184, -0.024851590394973755, -0.004725805949419737, -0.012218459509313107, -0.008679468184709549, 0.03794943541288376, -0.011246130801737309, -0.017787903547286987, -0.022492261603474617, -0.009201379492878914, -0.020290222018957138, 0.028354834765195847, 0.01936079002916813, 0.017959492281079292, 0.019689666107296944, 0.016100626438856125, 0.03142911195755005, 0.0029616716783493757, -0.032830409705638885, 0.02093367464840412, 0.0001322653697570786, 0.00785012822598219, -0.004168146289885044, -0.002055475255474448, 0.003163644578307867, -0.01106739416718483, 0.0007439926848746836, -0.006992190610617399, 0.018560048192739487, 0.00060993991792202, 0.019804056733846664, 0.0331735834479332, -0.0008342548389919102, -0.02247796207666397, 0.033373769372701645, -0.02922707051038742, 0.031171729788184166, -0.004951014183461666, 0.01858864538371563, 0.019132006913423538, -0.005758905317634344, 0.019961345940828323, -0.003953661769628525, -0.008500730618834496, -0.013219387270510197, 0.025151867419481277, 0.020118635147809982, -0.030399585142731667, 0.03997988626360893, 0.013491067104041576, -0.007564148865640163, 0.0021573554258793592, -0.027911566197872162, -0.01990414969623089, -0.03288760408759117, -0.00622719619423151, -0.001419171574525535, 0.03385993465781212, -0.0007225442677736282, -0.010352445766329765, -0.033716943114995956, 0.014406200498342514, 0.00690282229334116, 0.0385499931871891, -0.03400292247533798, -0.00100271450355649, 0.006348737515509129, 0.014727926813066006, -0.008665168657898903, -0.03915054723620415, 0.006388059817254543, -0.0018856751266866922, 0.015357080847024918, 0.017072957009077072, -0.0023629029747098684, -0.008207602426409721, 0.03311638906598091, 0.01797378994524479, 0.01216841395944357, 0.030628368258476257, 0.0316292941570282, -0.026924937963485718, 0.017373234033584595, 0.004489873070269823, 0.004071628209203482, -0.008901101537048817, 0.06097075715661049, 0.00609135627746582, -0.005376408342272043, -0.011217532679438591, -0.0187030378729105, 0.017130151391029358, -0.004686483647674322, -0.030914347618818283, -0.01966106705367565, -0.008379189297556877, -0.05270596221089363, 0.0015398190589621663, 0.026967834681272507, 0.0033781288657337427, -0.005662387702614069, 0.02495168149471283, -0.007950221188366413, -0.0025201914831995964, 0.009859131649136543, 0.008922549895942211, -0.028397731482982635, -0.0040358807891607285, 0.0048080249689519405, -0.006581095512956381, -0.010974450968205929, 0.009036941453814507, 0.011732295155525208, -0.029212772846221924, -0.055193979293107986, 0.0028061706107109785, -0.009437312372028828, -0.010338147170841694, -0.01820257492363453, 0.022492261603474617, -0.02868371084332466, -0.029741832986474037, -0.006445255596190691, 0.024579908698797226, 0.020604798570275307, -0.009301472455263138, -0.00030139522277750075, -0.01218271255493164, 0.006781280972063541, 0.011660800315439701, 0.010795713402330875, 0.01306924782693386, -0.005104728043079376, 0.010295250453054905, 0.018116779625415802, 0.019174903631210327, 0.009280024096369743, -0.027353907003998756, -0.038893166929483414, 0.008493580855429173, 0.02182020992040634, 0.0262242890894413, -0.005984114017337561, 0.0066704642958939075, -0.000865980691742152, -0.009423013776540756, -0.0022485111840069294, 0.00023570939083583653, -0.0198612529784441, 0.009708993136882782, -0.005229844246059656, 0.0010080765932798386, 0.056938450783491135, -0.03320218250155449, -0.0018946119816973805, -0.021605726331472397, 0.007245996966958046, -0.012733221985399723, -0.006062758155167103, -0.0013726999750360847, 0.040809229016304016, 0.013155041262507439, -0.007349664811044931, -0.029970616102218628, 0.01820257492363453, -0.031085936352610588, 0.011682248674333096, -0.0005621277960017323, 0.0016533170128241181, -0.01927499659359455, 0.02151993289589882, 0.020075738430023193, 0.0008802796364761889, 0.006531049031764269, -0.004833047743886709, 0.03134331852197647, 0.007678540423512459, -0.03631935268640518, -0.01622931845486164, -0.003606912214308977, -0.01527128741145134, 0.026367278769612312, 0.007278169970959425, 0.004075203090906143, 0.04269668832421303, 0.03969390690326691, 0.003204754088073969, 0.0011966440360993147, 0.001302992575801909, 0.008979746140539646, 0.02286403439939022, -0.02113386057317257, -0.04950299486517906, 0.012726073153316975, -0.026367278769612312, -0.0068849483504891396, 0.008271947503089905, -0.037463270127773285, -0.010867208242416382, 0.001706938142888248, 0.04915981739759445, 0.0354614183306694, -0.014513442292809486, 0.01116033736616373, 0.03411731496453285, -0.005287040024995804, -0.01990414969623089, 0.00031077893800102174, 0.0038857420440763235, -0.009916327893733978, 0.027010733261704445, 0.0011296176817268133, 0.024808693677186966, 0.02302132360637188, -0.00786442682147026, -0.0007104795076884329, 0.02170581929385662, 0.03903615474700928, 0.004250365309417248, -0.04238211363554001, -0.006981466431170702, 0.03517543897032738, -0.013026351109147072, -0.004786576144397259, -0.016529595479369164, -0.016958564519882202, -0.004471999127417803, 0.029627442359924316, -0.028912493959069252, 0.0017668150831013918, 0.00817185454070568, -0.003946512471884489, 0.027911566197872162, -0.010638425126671791, 0.001178770326077938, 0.01893182098865509, 0.016643987968564034, -0.03671972453594208, 0.006234345957636833, -0.029799029231071472, 0.0024290354922413826, -0.012768969871103764, -0.0013298031408339739, 0.006384484935551882, 0.012926258146762848, -0.0034335374366492033, 0.010302399285137653, 0.021848808974027634, -0.010052167810499668, 0.006759832613170147, 0.005844699218869209, 0.031028740108013153, -0.02263525128364563, 0.038349807262420654, -0.013083547353744507, -0.015943339094519615, -0.024007951840758324, 0.013062098063528538, 0.024622805416584015, -0.0016729781636968255, 0.014885216020047665, -0.029970616102218628, 0.05302053689956665, 0.014685030095279217, -0.004522045608609915, -0.03019939921796322, -0.013090696185827255, 0.020275922492146492, -0.01847425475716591, 0.027668483555316925, -0.0014969222247600555, -0.007363963406533003, -0.0021305447444319725, 0.013519665226340294, 0.00993062648922205, 0.031143130734562874, -0.008958297781646252, -0.005873297341167927, -0.029284266754984856, -0.024036549031734467, -0.01750192418694496, -0.017716409638524055, -0.014463396742939949, 0.0006885842303745449, -0.02395075559616089, 0.008350592106580734, 0.022649550810456276, -0.0074712056666612625, -0.020504705607891083, 0.00993062648922205, -0.01570025645196438, 0.007985968142747879, -0.01570025645196438, -0.028469225391745567, 0.002827618969604373, 0.009744740091264248, -0.03486086055636406, 0.008264797739684582, -0.049102623015642166, 0.005994838196784258, 0.0020822857040911913, 0.003204754088073969, -0.034918054938316345, 0.007464056368917227, 0.018131079152226448, 0.016629688441753387, 0.0045113214291632175, -0.027968762442469597, -0.017173048108816147, 9.50098765315488e-05, 0.016300812363624573, -0.028826700523495674, 0.013712701387703419, -0.03268741816282272, 0.008436385542154312, -0.029598843306303024, -0.027010733261704445, -0.004175296053290367, 0.03872158005833626, -0.057824987918138504, 0.010502585209906101, 0.019575273618102074, 0.010495435446500778, 0.02170581929385662, 0.003260162426158786, 0.014842318370938301, 0.014913813211023808, -0.003165432019159198, 0.017559120431542397, 0.030914347618818283, 0.016958564519882202, 0.010381043888628483, 0.012633129954338074, -0.026209991425275803, -0.001731961383484304, 0.00505110714584589, 0.011524960398674011, 0.02054760232567787, -0.013004902750253677, 0.008221901021897793, -0.0006501557654701173, 0.004321860149502754, -0.01399867981672287, 0.011667950078845024, 0.01320508774369955, 0.019332190975546837, -0.0033834909554570913, -0.010824311524629593, 0.0011680461466312408, -0.007578447926789522, 0.0025702377315610647, 0.02297842688858509, -0.024422621354460716, -0.00011953035573242232, -0.0005907257436774671, -0.02749689668416977, 0.03145770728588104, -0.020847881212830544, 0.00913703441619873, -0.027096526697278023, -0.0038106723222881556, 0.023936456069350243, -0.011932481080293655, 0.019289294257760048, 0.014005829580128193, 0.004107375629246235, 0.035575807094573975, -0.016801275312900543, 0.004400504287332296, 0.016758378595113754, -0.01550007052719593, 0.017530523240566254, 0.037920836359262466, 0.014191715978085995, -0.007914473302662373, 0.011289027519524097, -0.0012350725010037422, 0.010595528408885002, -0.019989943131804466, 0.019346490502357483, -0.04003708437085152, 0.018173975870013237, 0.0005867041181772947, -0.01943228393793106, -0.0206333976238966, -0.02479439415037632, -0.004028731491416693, 0.042782481759786606, -0.0008838543435558677, 0.01788799650967121, -0.031171729788184166, 0.008507880382239819, -0.01747332699596882, -0.03631935268640518, 0.029212772846221924, 0.006330864038318396, 0.0040180073119699955, -0.0083863390609622, -0.00169442652259022, -0.02922707051038742, -0.027353907003998756, -0.009894879534840584, -0.018345562741160393, 0.01916060410439968, 0.013705551624298096, -0.017759306356310844, -0.005101153627038002, -0.025194764137268066, 0.01681557483971119, -0.003950087353587151, -0.009265724569559097, -0.019003314897418022, 0.003928638994693756, -0.030256595462560654, -0.0031958171166479588, -0.011138889007270336, -0.05310633033514023, 0.04229632019996643, 0.017244543880224228, 0.016958564519882202, -0.02079068496823311, -0.02479439415037632, -0.0061950236558914185, 0.017358936369419098, -0.023007024079561234, -0.00024129492521751672, -0.011489213444292545, -0.02895539067685604, -0.004572092089802027, 0.019189201295375824, 0.0007024363148957491, -0.047443944960832596, -0.021548530086874962, 0.038149621337652206, -0.0007127136923372746, -0.025938309729099274, 0.01843135803937912, -0.029856225475668907, -0.003853569272905588, 0.001700682332739234, -0.01351251546293497, 0.004071628209203482, -0.006066333036869764, 0.005472926422953606, -0.006652590353041887, -0.032058265060186386, 0.015871843323111534, -0.008271947503089905, 0.019232099875807762, -0.018459955230355263, -0.01376274786889553, -0.06508886069059372, -0.006237920373678207, -0.010745666921138763, 0.006338013336062431, -0.005265591200441122, 0.0055837430991232395, 0.011088842526078224, 0.005001060664653778, -0.00900119449943304, 9.635040623834357e-05, 0.005619490519165993, -0.005744606722146273, 0.008121808059513569, -0.0011921756668016315, -0.02320721000432968, 0.004497022368013859, -0.0038750176317989826, -0.007406860589981079, 0.0006662420928478241, 0.001386105315759778, -0.005419305060058832, 0.016072029247879982, 0.015185493975877762, -0.002849067561328411, 0.010938703082501888, 0.03772065043449402, -0.033917129039764404, 0.011596455238759518, -0.024394022300839424, -0.010795713402330875, 0.019189201295375824, -0.01588614284992218, 0.0011984314769506454, -0.006831327453255653, -0.00107510294765234, 0.020762087777256966, 0.008822456933557987, -0.013791345059871674, -0.025037476792931557, -0.018102481961250305, -0.005490799900144339, 0.012132666073739529, -0.007399710826575756, 0.013705551624298096, 0.011024496518075466, 3.7339272239478305e-05, 0.002057262696325779, -0.012926258146762848, -0.023764869198203087, -0.021577127277851105, 0.04063763841986656, 0.024165239185094833, -0.0018731635063886642, -0.01720164716243744, 0.02552364021539688, 0.007310342509299517, 0.011331924237310886, 0.004364756867289543, -0.003013505367562175, -0.009859131649136543, 0.06926415115594864, 0.014148819260299206, 0.03806382790207863, -0.004593540448695421, -0.02776857651770115, 0.012018274515867233, 0.023350199684500694, 0.026024105027318, 0.02568092942237854, -0.0002712333807721734, -0.031371913850307465, -0.02190600335597992, 0.01881742849946022, 0.020147232338786125, 0.005065406206995249, 0.004479148890823126, 0.01993274874985218, 0.03011360578238964, -0.002697140909731388, 0.0009365817531943321, -0.0040358807891607285, 0.0010098639177158475, 0.016300812363624573, -0.011975377798080444, -0.0068849483504891396, -0.02329300343990326, -0.01700146123766899, -0.020333118736743927, 0.013741298578679562, -0.011868135072290897, 0.03983689844608307, -0.03574739769101143, 0.014742226339876652, 0.02706792764365673, -0.009616049937903881, 0.021219654008746147, -0.015185493975877762, 0.0003997005696874112, -0.019832655787467957, 0.00563021469861269, -0.023435993120074272, -0.010188007727265358, -0.005426454823464155, -0.008007416501641273, -0.01226135715842247, -0.009673245251178741, 0.004557793028652668, 0.012325702235102654, 0.021348344162106514, -0.00825049914419651, -0.01924639753997326, -0.0016971075674518943, -0.01893182098865509, 0.011360522359609604, -0.012204160913825035, 0.008972596377134323, -0.01509969960898161, -0.0033352321479469538, 0.011238981038331985, -0.006906396709382534, 0.010366744361817837, 0.010917254723608494, 0.004468424711376429, -0.03712009638547897, -0.019117707386612892, 0.0034335374366492033, 0.0022074016742408276, -0.012954856269061565, 0.014563488774001598, 0.018345562741160393, 0.0020018541254103184, -0.013212237507104874, 0.011210382916033268, -0.000647474720608443, -0.00817185454070568, 0.015528668649494648, 0.02656746469438076, 0.011532110162079334, 0.04335444048047066, -0.04172436147928238, -0.02638157829642296, -0.00693141994997859, 0.0005277209565974772, 0.012525887228548527, -0.0187030378729105, -0.011010197922587395, 0.019117707386612892, -0.01988985203206539, 0.015199792571365833, -0.03243003785610199, 0.0018257983028888702, -0.015128297731280327, 0.017144450917840004, -0.02838343195617199, -0.027825772762298584, -0.012640278786420822, -0.0007305874023586512, -0.008815308101475239, 0.008071761578321457, -0.010609827004373074, -0.014971009455621243, 0.014084474183619022, 0.027811473235487938, 0.0009160269983112812, 0.019489480182528496, -0.007253146730363369, -0.029484452679753304, 0.0177307091653347, -0.018173975870013237, 0.00414669793099165, -0.012718923389911652, -0.0210194680839777, -0.012604531832039356, -0.020333118736743927, 0.03474646806716919, -0.024608507752418518, 0.015557266771793365, -0.006037735380232334, 0.03168649226427078, 0.01222560927271843, -0.01075996644794941, 0.024465518072247505, 0.006806304212659597, 0.02818324603140354, 0.0038213967345654964, 0.010045018047094345, -0.016558194532990456, 0.0188889242708683, -0.014134520664811134, 0.0003769116010516882, 0.021662922576069832, 0.019789759069681168, -0.019618170335888863, -0.006123528815805912, 0.00487951934337616, 0.0027400378603488207, 0.02159142680466175, 0.01509969960898161, -0.023707672953605652, -0.016143523156642914, -0.004736530128866434, 0.01615782268345356, 0.009680395014584064, 0.004936715587973595, 0.004096651449799538, -0.0005808951682411134, -0.042982667684555054, 0.009394415654242039, 0.026939237490296364, -0.014370453543961048, 0.013934334740042686, -0.0009347944287583232, 0.01106739416718483, -0.020876478403806686, 0.0022520858328789473, -0.0283405352383852, 0.007592746987938881, 0.0029241370502859354, -0.007592746987938881, -0.004461274947971106, 0.016372308135032654, 0.017244543880224228, 0.008007416501641273, -0.024608507752418518, 0.033259376883506775, -0.014599236659705639, -0.010188007727265358, -0.0381782203912735, -0.035146839916706085, 0.00044907667324878275, 0.011760893277823925, 0.00719237606972456, 0.01615782268345356, 0.0074712056666612625, 0.011560708284378052, -0.023035621270537376, 0.03031379170715809, -0.016286512836813927, 0.027239516377449036, -0.021076664328575134, -0.019489480182528496, -0.017244543880224228, 0.0026470946613699198, 0.019532376900315285, 0.043783411383628845, 0.011196084320545197, -0.01815967634320259, 0.008243349380791187, 0.0039000408723950386, -0.002489806152880192, -0.001876738271676004, -0.015514370054006577, -0.00786442682147026, 0.013920036144554615, 0.023307302966713905, 0.0007332684472203255, 0.012511588633060455, -0.025981206446886063, 0.009158482775092125, -0.009423013776540756, 0.00732821598649025, 0.015071102418005466, 0.02688204124569893, -0.016672585159540176, 0.028640814125537872, -0.015242689289152622, -0.007435458246618509, 0.04772992432117462, 0.020490407943725586, -0.016286512836813927, 0.023121416568756104, 0.010566930286586285, -0.009601750411093235, 0.007049386389553547, -0.0019035488367080688, 0.003571164794266224, -0.010566930286586285, -0.015171194449067116, -0.008179004304111004, -0.02020442858338356, -0.015857545658946037, -0.010152260772883892, -0.001516583259217441, 0.012039722874760628, 0.0012681388761848211, 0.022420765832066536, -0.002513041952624917, 0.00016309748752973974, 0.023707672953605652, 0.0200471393764019, -0.006766981910914183, 0.008615122176706791, 0.025981206446886063, -0.009344369173049927, 0.010288100689649582, -0.0040609040297567844, -0.008236199617385864, -0.01222560927271843, 0.017058657482266426, -0.00917993113398552, 0.015328483656048775, -0.025537939742207527, -0.029627442359924316, 0.008450684137642384, -0.029684636741876602, -0.00023258150031324476, -0.01731603778898716, -0.016329409554600716, -0.006209322717040777, 0.0019124856917187572, -0.0027025032322853804, 0.009151333011686802, -0.003728453302755952, -0.017716409638524055, -0.0048437719233334064, 0.001464749570004642, 0.018517151474952698, 0.0025344903115183115, 0.0083863390609622, 0.008036014623939991, 0.010130812413990498, -0.012139815837144852, 0.019403686746954918, 0.027096526697278023, 0.001978618325665593, 0.005451478064060211, 0.005354959983378649, 0.009744740091264248, 0.002230637473985553, -0.008028864860534668, -0.015428575687110424, 0.03651953861117363, -0.01216841395944357, -0.011532110162079334, 0.012983454391360283, -0.003013505367562175, 0.012125516310334206, -0.013369525782763958, -0.005354959983378649, -0.009909178130328655, 0.007317491807043552, 0.042896874248981476, -0.002679267432540655, -0.017344636842608452, 0.006119954399764538, 0.01747332699596882, 0.0023646901827305555, -0.00036484687007032335, 0.0393221341073513, -0.006784855853766203, 0.010831461288034916, -0.014198865741491318, 0.0026596062816679478, -0.006649015471339226, 0.012654578313231468, 0.029513049870729446, -0.033488161861896515, 0.011417718604207039, -0.012697475031018257, -0.021534230560064316, 0.0037034302949905396, 0.0049009681679308414, 0.0006778599927201867, -0.009437312372028828, 0.0011716209119185805, 0.01951807737350464, 0.01958957314491272, -0.007363963406533003, 0.01424891222268343, 0.0019071236019954085, 0.010960151441395283, 0.003957236651331186, 0.012947706505656242, -0.01727314107120037, -0.020504705607891083, -0.02066199481487274, 0.024436919018626213, -0.017573419958353043, -0.002813320141285658, 0.012575933709740639, 0.0009669670835137367, 0.016801275312900543, -0.07698559015989304, -0.036376550793647766, 0.002815107349306345, -0.0030278044287115335, 0.013183639384806156, -0.012132666073739529, -0.015299885533750057, -0.0028580042999237776, -0.009101287461817265, -0.007821530103683472, 0.0024683577939867973, -0.02206329256296158, -0.0005111877690069377, -0.004221767652779818, -0.00405732961371541, 0.002459420822560787, -0.02552364021539688, -0.0017185560427606106, -0.014549190178513527, -0.00752840144559741, 0.0001518147182650864, 0.014227463863790035, -0.004804450087249279, 0.021848808974027634, -0.002110883826389909, -0.006963592953979969, -0.008207602426409721, -0.018831728026270866, -0.01897471770644188, -0.008393488824367523, 0.018488552421331406, -0.03837840259075165, -0.007349664811044931, -0.009859131649136543, 0.008743813261389732, 0.02463710494339466, 0.011281877756118774, 0.012504438869655132, -0.007235272787511349, -0.007031512912362814, 0.03466067463159561, -0.00752840144559741, -0.008100359700620174, 0.009480209089815617, -0.015714555978775024, -0.030599771067500114, 0.009229977615177631, 0.031943872570991516, -0.0028186822310090065, 0.0082933958619833, -0.010967301204800606, -0.004647161345928907, 0.019446583464741707, -0.013133592903614044, 0.027425402775406837, -0.04192454740405083, 0.0015031780349090695, -0.015585864894092083, -0.0381782203912735, -0.007281744387000799, 0.008486432023346424, -0.0021394817158579826, 0.013247985392808914, -0.012154114432632923, 0.014012979343533516, -0.028969690203666687, 0.027739979326725006, 0.014527741819620132, 0.011367672123014927, -0.01208976935595274, 0.01970396377146244, -0.01951807737350464, -0.010931553319096565, 0.030370987951755524, -0.012368598952889442, 0.0035497164353728294, -0.024394022300839424, 0.01447769533842802, 0.010867208242416382, -0.0018910372164100409, -0.007721437606960535, 0.011117439717054367, 0.010495435446500778, 0.006584670394659042, 0.011775191873311996, -0.013812793418765068, -0.01615782268345356, -0.01284046471118927, -0.02290693111717701, 0.006877799052745104, -0.005780354142189026, 0.01650099828839302, 0.00029536287183873355, 0.014456246979534626, -0.0017668150831013918, 0.0010536544723436236, -0.0283405352383852, 0.008729513734579086, 0.020804984495043755, -0.011939629912376404, -0.004368331748992205, -0.0032369266264140606, 0.021448437124490738, -0.016829874366521835, 0.019332190975546837, 0.015156895853579044, -0.015800349414348602, 0.02752549573779106, 0.0008369358838535845, 0.01781650260090828, -0.0006760726100765169, 0.011968228034675121, 0.013734149746596813, -0.030857151374220848, -0.012268505990505219, -0.012347150593996048, 0.029513049870729446, -0.016443802043795586, -0.00421104347333312, -0.008901101537048817, -0.03620496392250061, -0.0018874624511227012, 0.006252219434827566, -0.004196744412183762, 0.006484577432274818, 0.029126977548003197, 0.013505366630852222, 0.008979746140539646, -0.02822614461183548, 0.015299885533750057, 0.009079838171601295, 0.005068980623036623, -0.008500730618834496, -0.011310475878417492, 0.009337219409644604, 0.016215018928050995, -0.018602944910526276, -0.005222694482654333, -0.0022574481554329395, -0.03806382790207863, -0.0083863390609622, -0.011410568840801716, -0.0035658027045428753, 0.013569711707532406, -0.005379983223974705, 0.00043522455962374806, -0.0011117439717054367, -0.007893024943768978, -0.0015594800934195518, 0.0239078588783741, -0.03351675719022751, -0.003515756456181407, 0.017902296036481857, 0.011210382916033268, 0.002282471163198352, -0.01993274874985218, -0.0034478362649679184, -0.017330337315797806, -0.00034518580650910735, -0.021376943215727806, -0.022549457848072052, 0.015514370054006577, 0.0013780620647594333, 0.08607973158359528, -0.00975903868675232, 0.0027525494806468487, -0.013298030942678452, 0.005780354142189026, -0.008057462982833385, 0.006938569713383913, 0.011846686713397503, 0.010280950926244259, -0.0011403419775888324, 0.015199792571365833, -0.011095991358160973, 0.0020661994349211454, 0.015399978496134281, -0.03131471946835518, 0.004150272812694311, 0.01831696555018425, 0.015457173809409142, 0.01499960757791996, 0.020962273702025414, 0.002504104981198907, -0.007285319268703461, -0.025323456153273582, -0.02610989846289158, -0.008636570535600185, 0.0026917788200080395, 0.01850285194814205, 0.008457833901047707, 0.020919376984238625, 0.028926793485879898, 0.0031171729788184166, -0.00408592727035284, 0.0025595135521143675, -0.011982527561485767, -0.012561635114252567, 0.02001854218542576, 0.011460615321993828, 0.014928112737834454, -0.000957136508077383, 0.015914740040898323, 0.0004233832296449691, -0.0038607188034802675, 0.031171729788184166, 0.028926793485879898, -0.011267579160630703, -0.004833047743886709, 0.03174368664622307, -0.006069907918572426, 0.025380650535225868, 0.010902956128120422, -0.018245471641421318, -0.018073882907629013, 0.00479015102609992, 0.00817185454070568, 0.0010000334586948156, -0.020175829529762268, -0.01297630462795496, 0.002811532700434327, 0.0011743019567802548, 0.0008843012037687004, -0.0053442358039319515, 0.007885875180363655, -0.009437312372028828, -0.03454628214240074, -0.00405732961371541, -0.023450292646884918, -0.0029759707394987345, -0.012826166115701199, -0.007464056368917227, -0.00265603163279593, -0.006838476750999689, 0.017802203074097633, 0.006255794316530228, -0.03134331852197647, -0.002736463211476803, 0.005179797764867544, 0.007020788732916117, 0.023192910477519035, 0.008093210868537426, 0.026624660938978195, 0.008193302899599075, -0.002318218583241105, 0.0022735344246029854, 0.0009294322808273137, -0.0020340268965810537, -0.005812526680529118, 0.004514896310865879, -0.03142911195755005, 0.009172781370580196, -0.020447511225938797, -0.0005773204611614347, 0.01800238899886608, 0.014070174656808376, 4.1360854083904997e-05, 0.019789759069681168, 0.01684417389333248, 0.0029098379891365767, 0.002212763763964176, 0.0007417584420181811, -0.005637364462018013, 0.006016286555677652, 0.028397731482982635, -0.003914339933544397, 0.017401833087205887, 0.008343442343175411, 0.016486698761582375, 0.01835986226797104, -0.01611492596566677, 0.017959492281079292, -0.007435458246618509, -0.0010643787682056427, 0.016443802043795586, 0.002069774316623807, 0.023650476709008217, -0.018574347719550133, -0.011639351956546307, -0.01777360588312149, 0.010616976767778397, -0.017330337315797806, -0.019132006913423538, -0.0016497423639521003, -0.002679267432540655, -0.007442608010023832, -0.020561901852488518, 0.01704435795545578, 0.004736530128866434, -0.027539793401956558, -0.0058804466389119625, 0.0076928394846618176, -0.01262598019093275, -0.0015746727585792542, 0.01054548192769289, 0.010802863165736198, -0.013255134224891663, -0.004600689746439457, 0.0012547336518764496, -0.007342515047639608, 0.006448830012232065, 0.010216605849564075, 0.011589305475354195, 0.013398123905062675, 0.00865801889449358, 0.00987343117594719, 0.01045253872871399, 0.0013038862962275743, 0.003217265708371997, -0.03451768681406975, -0.02347888983786106, 0.00825049914419651, -0.0029527349397540092, 0.017101554200053215, -0.043897803872823715, 0.011625053361058235, 0.0039036155212670565, 0.0120540214702487, 0.0027060778811573982, -0.005372833460569382, 0.03357395529747009, -0.009201379492878914, 0.005844699218869209, 0.014413350261747837, -0.007657092064619064, -0.0016381244640797377, -0.009766188450157642, -0.0056588128209114075, -0.012911959551274776, 0.013476768508553505, 0.02845492772758007, 0.008136107586324215, 0.0006233452004380524, 0.0011796640465036035, -0.018560048192739487, 0.014713628217577934, -0.01877453178167343, -0.018645841628313065, -0.023307302966713905, -0.009587451815605164, -0.012583083473145962, 0.0002908944443333894, 0.015428575687110424, -0.008093210868537426, -0.005619490519165993, 0.025237660855054855, -0.005455052480101585, -0.017258843407034874, -0.003034953959286213, 0.022921230643987656, 0.0014629621291533113, -0.018402758985757828, -0.010381043888628483, -0.019060511142015457, 0.022392168641090393, -0.005083279684185982, -0.02167722024023533, -0.02167722024023533, 0.007828679867088795, 0.01289766002446413, 0.006434531416743994, 0.00890825130045414, -0.017072957009077072, -0.0074211591854691505, 0.005086854565888643, 0.015643060207366943, 0.015800349414348602, -0.0012806504964828491, -0.011088842526078224, -0.014284659177064896, -0.010938703082501888, -0.017644913867115974, -0.011045945808291435, -0.036262158304452896, -0.032144058495759964, -0.0004260642745066434, -0.004976037424057722, -0.03743467479944229, 0.009322920814156532, 0.0013789557851850986, 0.02556653693318367, 0.0009222828084602952, 0.01081716176122427, -0.00531206326559186, 0.0033280826173722744, -0.0016247191233560443, 0.008271947503089905, 0.00125115888658911, 0.001796306692995131, 0.027754278853535652, 0.03977970406413078, 0.01927499659359455, -0.0019714687950909138, 0.017873698845505714, -0.013712701387703419, -0.010667023248970509, 0.00760704604908824, -0.011346223764121532, 0.02079068496823311, 0.012876211665570736, -0.012297104112803936, 0.0026810546405613422, 0.00040416899719275534, -0.012826166115701199, -0.012947706505656242, 0.007921623066067696, -0.011667950078845024, 0.024079445749521255, -0.02001854218542576, 0.009423013776540756, -0.017373234033584595, -0.001471005380153656, -2.3138059987104498e-05, -0.011088842526078224, 0.008915400132536888, -0.011081692762672901, 0.00531206326559186, 0.010395342484116554, 0.002698928350582719, -0.002471932442858815, 0.007664241828024387, -0.017330337315797806, -0.02077638730406761, -0.00703866221010685, 0.01380564458668232, -0.027039330452680588, -0.017830800265073776, -0.007950221188366413, 0.03477506712079048, -0.02193460240960121, 0.01306924782693386, 0.016686884686350822, 0.00875096209347248, 0.007735736668109894, 0.005941217299550772, 0.0031976045574992895, 0.00940871424973011, -0.004343308508396149, -0.006967167370021343, -0.00842208694666624, -0.011467764154076576, 0.0049009681679308414, 0.0050225090235471725, -0.016029132530093193, -0.01711585372686386, 0.005390707403421402, -0.03228704631328583, 0.003295909846201539, -0.014685030095279217, 0.01847425475716591, 0.013390974141657352, -0.0002812873281072825, 0.02915557660162449, -0.00015192643331829458, 0.0033030593767762184, 0.01977545954287052, 0.001628293888643384, -0.013905736617743969, 0.022735344246029854, -0.004275388550013304, 0.0008726833038963377, 0.025151867419481277, 0.011667950078845024, -0.019417986273765564, -0.004178870469331741, -0.012025424279272556, 0.005876871757209301, -0.008500730618834496, 0.005265591200441122, 0.01611492596566677, -0.013505366630852222, -0.00869376678019762, 0.0022592353634536266, 0.002641732571646571, -0.0037677756045013666, 0.0075212521478533745, 0.00209658476524055, -0.013962932862341404, 0.005165498703718185, 0.009494508616626263, 0.01661538891494274, -0.0036927061155438423, 0.012926258146762848, 0.013748448342084885, 0.020676294341683388, -0.014012979343533516, 0.015142597258090973, -0.0058053769171237946, 0.015171194449067116, 0.008607973344624043, -0.01366980466991663, -0.01062412653118372, -0.023607579991221428, 0.01800238899886608, 0.01835986226797104, -0.01631511189043522, -0.002334304852411151, -0.02683914452791214, -0.0040609040297567844, -0.025094671174883842, -0.0031725813169032335, -0.02826904132962227, 0.00719237606972456, 0.006155701354146004, 0.00354256690479815, -0.011389120481908321, -0.016400905326008797, -0.0001942647504620254, -0.0061521269381046295, 0.0007118200301192701, -0.02741110324859619, 0.0005464883288368583, 0.011789491400122643, 0.0016372307436540723, -0.02702503092586994, 0.008636570535600185, 0.00014734629075974226, 0.00988772977143526, 0.006752683315426111, 3.893114990205504e-05, 0.038264013826847076, 0.005833975039422512, -0.0004399163881316781, -0.019060511142015457, 0.019460882991552353, -0.008493580855429173, -0.008765261620283127, 0.01372699998319149, 0.02672475390136242, -0.008536478504538536, 0.008786709979176521, -0.027425402775406837, 0.018803130835294724, -0.0017444728873670101, 0.008793859742581844, -0.00034518580650910735, -0.015085401013493538, -0.01874593459069729, 0.005054681561887264, -0.0006434531533159316, -0.008443535305559635, -0.02174871601164341, 0.010152260772883892, 0.029684636741876602, 0.009301472455263138, -0.01266887690871954, -0.010516883805394173, 0.016872771084308624, 0.006277242675423622, 0.03523263335227966, 0.009208529256284237, 0.003985834773629904, -0.006606118753552437, -0.021305447444319725, -0.0034460490569472313, 0.0019982794765383005, -0.0058053769171237946, 0.0064166574738919735, 0.020876478403806686, -0.008050313219428062, 0.03331657126545906, 0.020233025774359703, -0.019232099875807762, -0.0063737607561051846, 0.005480075720697641, 0.010481136851012707, 0.01222560927271843, 0.009415864013135433, -0.020719191059470177, 0.0016542107332497835, 0.012297104112803936, 0.02077638730406761, -0.012239908799529076, -0.016529595479369164, 0.001601483323611319, -0.03088575042784214, -0.014813721179962158, 0.027654185891151428, 0.007185226771980524, 0.007135180290788412, -0.014971009455621243, 0.004407654050737619, -0.007145904470235109, 0.011853836476802826, 0.003753476543352008, 0.018688738346099854, -0.012218459509313107, 0.01420601550489664, -0.009608900174498558, 0.014470545575022697, 0.015242689289152622, -0.01627221517264843, -0.009358668699860573, 0.0051226019859313965, 0.004618563689291477, -0.0046292878687381744, -0.011138889007270336, -0.021562829613685608, -0.0072066751308739185, 0.015085401013493538, -0.002057262696325779, 0.00877241138368845, -0.006716935895383358, -0.02406514622271061, -0.011417718604207039, -0.002112671034410596, -0.01908911019563675, 0.010974450968205929, 0.009894879534840584, 0.012125516310334206, 0.020275922492146492, -0.012790418229997158, 0.00184814038220793, -0.013476768508553505, 0.005762480199337006, -0.02206329256296158, -0.004911692347377539, -0.03400292247533798, 0.004686483647674322, -0.0033280826173722744, -0.022735344246029854, 0.02020442858338356, -0.019031913951039314, 0.010831461288034916, -0.00962319876998663, -0.0010143324034288526, 0.015328483656048775, -0.0014290021499618888, 0.01634370908141136, 0.023736270144581795, 0.0064238072372972965, -0.01592903956770897, 0.026982134208083153, 0.006666889414191246, 0.01584324613213539, 0.00752840144559741, 0.007067260332405567, 0.012447243556380272, 0.02568092942237854, 0.023464590311050415, 0.02229207567870617, -0.001479048514738679, -0.010345296002924442, -0.007035087328404188, 0.02024732530117035, 0.0006389847258105874, -0.008686617016792297, 0.025194764137268066, 0.006920695770531893, 0.011768043041229248, 0.019460882991552353, 0.02013293281197548, 0.006252219434827566, 0.004461274947971106, 0.0005652557010762393, 0.02811175212264061, 0.002253873273730278, -0.009251425974071026, 0.0016702971188351512, -0.000348090281477198, 0.03454628214240074, -0.003349530976265669, -0.015299885533750057, 0.0055908928625285625, 0.0033119963482022285, -0.0022717469837516546, 0.004421952646225691, 0.012575933709740639, 0.013162191025912762, 0.009952074848115444, 0.009952074848115444, 0.03177228569984436, 0.012883361428976059, 0.001288693631067872, 0.010259502567350864, -0.01584324613213539, 0.0239078588783741, 0.016100626438856125, 0.03177228569984436, 0.019232099875807762, 0.014320407062768936, -0.007821530103683472, -0.0007305874023586512, -0.02240646816790104, -0.012111217714846134, 0.0030295918695628643, 0.01963246986269951, -0.011045945808291435, -0.0198612529784441, -0.0008195090340450406, -0.0017435792833566666, -0.008364890702068806, -0.023593280464410782, -0.030170802026987076, -0.007210249546915293, 0.02413664199411869, 0.01010221429169178, 0.012754671275615692, 0.0022878332529217005, 0.0271823201328516, 0.006981466431170702, 0.031943872570991516, -0.0025595135521143675, -0.005236993543803692, 0.014041577465832233, 0.004754403606057167, 0.00309929926879704, 0.0015210517449304461, -0.013548263348639011, 0.01253303699195385, 0.028126051649451256, 0.0026470946613699198, 0.012819016352295876, -0.006323714274913073, -0.0017042570980265737, 0.03188667818903923, 0.006702636834233999, 0.007885875180363655, -0.021562829613685608, 0.00458996556699276, 0.03363114967942238, 0.022992724552750587, -0.002214551204815507, 0.0016631475882604718, -0.012747521512210369, -0.017144450917840004, 0.01216841395944357, -0.013426722027361393, -0.003567590145394206, 0.009194230660796165, 0.018131079152226448, -0.01226135715842247, 0.026081299409270287, 0.002788296900689602, 0.006741958670318127, -0.012340000830590725, 0.012282805517315865, -0.013984381221234798, -0.0031815182883292437, -0.016257915645837784, -0.017459027469158173, 0.00979478657245636, -0.016872771084308624, -0.004218192771077156, -0.008679468184709549, -0.020504705607891083, -0.001860652002505958, -0.006155701354146004, 0.027825772762298584, 0.0271823201328516, 0.013012052513659, 0.032830409705638885, -0.013212237507104874, 0.020261624827980995, -0.00619859853759408, 0.008936849422752857, -0.0020501131657510996, 0.006241495255380869, -0.002920562168583274, -0.00225029862485826, 0.007385412231087685, -0.020147232338786125, -0.015328483656048775, 0.0023932880721986294, 0.0264101754873991, -0.008822456933557987, 0.004493447486311197, 0.001238647266291082, 0.00432900944724679, -0.0103166988119483, 0.001419171574525535, -0.018846027553081512, -0.008922549895942211, -0.0009759038803167641, -0.010667023248970509, 0.0006470278603956103, -0.016257915645837784, 0.0038213967345654964, -0.009508807212114334, -0.0006376442033797503, -0.002893751719966531, 0.008164704777300358, 0.0074712056666612625, -0.01661538891494274, 0.023664776235818863, 0.015371380373835564, 0.01615782268345356, -0.01858864538371563, -0.005104728043079376, 0.002815107349306345, 0.0022610228043049574, 0.006724085193127394, 0.00230391975492239, 0.011732295155525208, -0.005969814956188202, -0.005451478064060211, -0.012325702235102654, 0.00047454668674618006, -0.00437548104673624, -0.027711382135748863, -0.00886535458266735, 0.01002356968820095, -0.012597382068634033, 0.006813453510403633, -0.002084073144942522, 0.0013467831304296851, 0.0033316572662442923, 0.004958163946866989, 0.00811465922743082, 0.004371906630694866, 0.0006854563253000379, 0.013991530984640121, -0.003828546032309532, -0.02945585362613201, 0.0291126798838377, -0.01143201719969511, 0.010152260772883892, -0.01700146123766899, -0.04303986579179764, 0.004865220747888088, -0.01611492596566677, 0.04038025811314583, -0.011010197922587395, -0.017072957009077072, -0.023435993120074272, -0.009680395014584064, 0.021105263382196426, -0.005394281819462776, -0.005766055081039667, -0.0067634074948728085, 0.023693373426795006, 0.014971009455621243, -0.017215946689248085, 0.005247717723250389, -0.004661460407078266, -0.0029348612297326326, 0.015514370054006577, 0.002888389630243182, 0.0009035154362209141, -0.008622271940112114, 0.01499960757791996, 0.013319479301571846, -0.027168020606040955, -0.01627221517264843, 0.015457173809409142, -0.009451611898839474, -0.004186020232737064, -1.4131392163108103e-05, 0.0010080765932798386, 0.023922156542539597, -0.020919376984238625, -0.0026721179019659758, 0.009280024096369743, -0.002293195342645049, -0.00045242797932587564, -0.023007024079561234, -0.028926793485879898, 0.004261089488863945, 0.004668609704822302, -0.023721972480416298, -0.0008784922538325191, -0.011088842526078224, -0.00535853486508131, -0.023922156542539597, 0.0028991138096898794, -0.013619758188724518, -0.00476155336946249, -0.01447769533842802, -0.024122342467308044, 0.006495301611721516, 0.0011108503676950932, -0.0020411761943250895, -0.017459027469158173, 0.01231855247169733, -0.0011582155711948872, 0.014349005185067654, -0.02267814800143242, 0.007178077008575201, -0.026896340772509575, -0.005791078321635723, -0.0038213967345654964, -0.015028205700218678, 0.012940557673573494, 0.007750035263597965, -0.009701843373477459, 0.0032512256875634193, -0.005444328300654888, -0.0040680537931621075, -0.03365974873304367, -0.009944926016032696, 0.0010858271270990372, 0.002697140909731388, 0.019675366580486298, 0.022692447528243065, -0.023335900157690048, 0.014070174656808376, 0.013026351109147072, -0.007095857989042997, -0.002868728479370475, 0.01743043027818203, -0.0025237661320716143, -0.02131974697113037, 0.006938569713383913, -0.003292335197329521, -0.014198865741491318, -0.011996826156973839, -0.006402358412742615, 0.018688738346099854, -0.022277778014540672, -0.022149085998535156, 0.0187030378729105, -0.017988089472055435, 0.00290090125054121, -0.01106739416718483, -0.013240835629403591, -0.017516223713755608, 0.006402358412742615, 0.016014833003282547, 0.00162203807849437, 0.028983987867832184, -0.007985968142747879, -0.0015067526837810874, 0.01191818155348301, 0.025437846779823303, 0.011174635961651802, -0.04398359730839729, 0.021191056817770004, -0.014713628217577934, 0.02899828739464283, 0.005455052480101585, -0.01572885364294052, -0.006348737515509129, 0.02965603955090046, -0.010173709131777287, -0.021291149780154228, -0.010745666921138763, -0.028869597241282463, -0.0074211591854691505, -0.028798101469874382, -0.001810605637729168, 5.7251687394455075e-05, 0.0022199132945388556, 0.003621211275458336, 0.0011072756024077535, -0.0005219120066612959, -0.009916327893733978, 0.006677613593637943, -0.02093367464840412, -0.006012712139636278, 0.019031913951039314, 0.028397731482982635, 0.010073616169393063, 0.02645307220518589, 0.020490407943725586, 0.00760704604908824, -0.01924639753997326, 0.004986761603504419, 0.008007416501641273, 0.016515297815203667, 0.01320508774369955, -0.021276850253343582, -0.01634370908141136, -0.018345562741160393, -0.0042146178893744946, 0.004847346805036068, 0.01181808952242136, -0.01861724443733692, -0.0017730708932504058, 0.017058657482266426, -0.012661728076636791, 0.012497290037572384, 0.01143201719969511, -0.002382563892751932, -0.006481003016233444, -0.004471999127417803, 0.013934334740042686, 0.013197938911616802, 0.01366980466991663, -0.013255134224891663, -0.03320218250155449, -0.00904409121721983, -0.00039925373857840896, 0.0058625731617212296, 0.005973389837890863, -0.006523899734020233, 0.01231855247169733, -0.014463396742939949, -0.00172570557333529, 0.0027650611009448767, 0.011467764154076576, -0.004218192771077156, -0.02009003609418869, -0.027582690119743347, -0.0032119036186486483, 0.018245471641421318, -0.0013128231512382627, 0.012711773626506329, 0.012768969871103764, -0.008572225458920002, -0.0015970149543136358, -0.0019482331117615104, 0.02190600335597992, -0.0114749139174819, -0.01000927109271288, -0.019618170335888863, 0.01622931845486164, 0.022334972396492958, 0.020347418263554573, -0.00852217897772789, -0.009480209089815617, 0.006052033975720406, -0.013262283988296986, -0.020290222018957138, -0.0013726999750360847, 0.007800081744790077, 0.0027954464312642813, 0.016086328774690628, -0.0008217432769015431, 0.005054681561887264, 0.005001060664653778, 0.0024290354922413826, -0.008793859742581844, -0.026024105027318, 0.017215946689248085, 0.030056411400437355, -0.00339779001660645, -0.017830800265073776, -8.987118781078607e-05, 0.005505098961293697, 0.0018660140922293067, -0.013076397590339184, -0.021348344162106514, -0.0017310676630586386, -0.015514370054006577, 0.01527128741145134, 0.008036014623939991, 0.02545214630663395, -0.0009160269983112812, 0.003135046688839793, 0.0005393388564698398, 0.018960418179631233, -0.0026506693102419376, -0.004457700066268444, -0.007195950951427221, 0.018989017233252525, -0.0055837430991232395, 0.0188889242708683, -0.004371906630694866, 0.014856617897748947, 0.002686416730284691, -0.006627567112445831, 0.013326629064977169, 0.009594600647687912, 0.01527128741145134, 0.008586524054408073, 0.013741298578679562, -0.003914339933544397, 0.006280817557126284, -0.017230244353413582, 0.021391240879893303, -0.0005308488034643233, -0.004400504287332296, 0.0004580134991556406, -0.003996558953076601, 0.021662922576069832, 0.0010706344619393349, -0.000605024688411504, -0.029198473319411278, 0.00033088683267123997, -0.03174368664622307, 0.013269433751702309, -0.009358668699860573, 0.02510897070169449, -0.012232759036123753, -0.0031421962194144726, 0.01874593459069729, 0.004336159210652113, 0.0008275522268377244, 0.0017033633776009083, 0.025280557572841644, -0.024079445749521255, -0.0023486039135605097, -0.0021662921644747257, -0.013104995712637901, 0.034603480249643326, 0.0010759966680780053, 0.013219387270510197, 0.017416130751371384, 0.01355541218072176, -0.018231172114610672, 0.0017766455421224236, -0.010423940606415272, -0.021219654008746147, 0.009115586057305336, 0.0001475697208661586, 0.008372040465474129, -0.007871576584875584, -0.016358008608222008, 0.006756257731467485, 0.024150941520929337, -0.003764200722798705, -0.01006646640598774, 0.021534230560064316, 0.03288760408759117, 0.008901101537048817, -0.0009812660282477736, -0.027782876044511795, -0.006856350693851709, 0.013298030942678452, -0.004207468591630459, -0.009437312372028828, 0.005011784844100475, -0.007428308948874474, -0.009165632538497448, -0.0037749249022454023, 0.0068849483504891396, 0.004286112729460001, 0.0011877071810886264, -0.01000927109271288, -0.0039751105941832066, -0.022663848474621773, 0.005176222883164883, -0.025781022384762764, 0.008815308101475239, -0.006137827876955271, 0.01351251546293497, -0.027968762442469597, 0.009916327893733978, -0.02167722024023533, 0.007303193211555481, -0.012111217714846134, -0.010366744361817837, 0.010566930286586285, 0.012790418229997158, 0.02090507745742798, 0.011010197922587395, 0.016143523156642914, 0.020404614508152008, 0.0011778767220675945, -0.03077135793864727, -0.005287040024995804, -0.002720376942306757, 0.0165867917239666, -0.0013253346551209688, 0.002488018712028861, 0.017230244353413582, -0.00018577474111225456, 0.0009866281179711223, 0.002666755812242627, -0.014127370901405811, -0.0004224895383231342, 0.017144450917840004, 0.0026596062816679478, -0.009158482775092125, -0.011467764154076576, 0.006906396709382534, 0.0014486631844192743, -0.014198865741491318, 0.011460615321993828, 0.012518738396465778, 0.011839537881314754, -0.005919768940657377, -0.001994704594835639, -0.0020519006066024303, 0.009751889854669571, 0.001524626393802464, 0.0001598578819539398, -0.00177575193811208, -0.021033767610788345, 0.0045542181469500065, -0.01075996644794941, -0.02829763852059841, 0.0029652465600520372, 0.02016153186559677, -0.007735736668109894, -0.0140773244202137, -0.003163644578307867, -5.376073386287317e-05, 0.022606654092669487, 0.007857277989387512, 0.012232759036123753, 0.0033316572662442923, 0.025237660855054855, -0.011911032721400261, 0.04261089488863945, -0.005719583481550217, -0.0036301480140537024, -0.007245996966958046, -0.003950087353587151, 0.0008440854144282639, -0.02552364021539688, -0.012597382068634033, -0.01010221429169178, -0.017687810584902763, 0.006205747835338116, 0.017072957009077072, -0.0014736864250153303, -0.007685690186917782, -0.006413083057850599, -0.031486306339502335, -0.0019053361611440778, -0.00023995438823476434, -0.003971535712480545, 0.0231357142329216, -0.013305180706083775, -0.004968888126313686, -0.015385678969323635, 0.0077929324470460415, -0.007138755172491074, 0.014105922542512417, -0.012640278786420822, 0.005844699218869209, 0.013040649704635143, -0.02131974697113037, 0.00503323320299387, -0.012926258146762848, 0.01886032521724701, -0.00904409121721983, 0.01037389412522316, -0.0019071236019954085, 0.023936456069350243, 0.028855297714471817, -0.001294949441216886, -0.016029132530093193, -0.0023789892438799143, 0.003358467947691679, 0.0002958097029477358, 0.0007113731699064374, -0.007842978462576866, -0.004246790427714586, -0.016672585159540176, 0.006745533552020788, 0.014885216020047665, 0.005029658786952496, 0.03343096375465393, 0.0072745950892567635, 0.016100626438856125, -0.010252352803945541, -0.014456246979534626, -0.01160360500216484, 0.02518046647310257, -0.021348344162106514, -0.027940165251493454, 0.006834902334958315, -0.009108436293900013, 0.003449623705819249, -0.0009151333360932767, -0.009165632538497448, 0.004418378230184317, 0.006141402758657932, -0.012890511192381382, 0.0035246931947767735, -0.004082352388650179, 0.01990414969623089, 0.016601091250777245, -0.023121416568756104, 0.00993062648922205, 0.0015782475238665938, 0.0015523306792601943, -0.014134520664811134, 0.005126176401972771, 0.008758111856877804, -0.003229777328670025, -0.018231172114610672, 0.00593764241784811, 0.001874950947239995, -0.0037677756045013666, -0.00842208694666624, 0.017173048108816147, 0.0026077725924551487, 0.022892631590366364, -0.011460615321993828, -0.020147232338786125, -0.00324407615698874, -0.021620025858283043, -0.005329936742782593, -0.023650476709008217, -0.012776119634509087, 0.005040382966399193, -0.01631511189043522, 0.0029634591192007065, -0.0028705159202218056, 0.008207602426409721, -0.012111217714846134, -0.0006309415330179036, -0.007342515047639608, -0.008379189297556877, -0.01204687263816595, 0.0026256463024765253, 0.009801936335861683, -0.006259369198232889, 0.0019768308848142624, 0.004840197507292032, -0.01126042939722538, -0.0177307091653347, -0.0016291876090690494, 0.01160360500216484, 0.006237920373678207, 0.02865511178970337, 0.004336159210652113, -0.018188275396823883, 0.01970396377146244, -0.011346223764121532, 0.021348344162106514, 0.0032011792063713074, 0.012075470760464668, 0.010130812413990498, 0.0018132866825908422, -0.005494374781847, 0.00855792686343193, -0.00265603163279593, 0.008722364902496338, -0.0021073089446872473, -0.0027579115703701973, -0.010924404487013817, 0.011653651483356953, 0.01981835626065731, -0.0009830533526837826, 0.011911032721400261, -0.001634549698792398, -0.009952074848115444, 0.005508673842996359, 0.02629578486084938, 0.01715875044465065, 0.0011760892812162638, 0.008086061105132103, 0.011961078271269798, -0.0008105721790343523, 0.006159276235848665, -0.006309415213763714, -0.0009267512359656394, 0.022277778014540672, -0.009616049937903881, -0.02167722024023533, -0.02001854218542576, 0.0005411261809058487, -0.004983187187463045, 0.009201379492878914, 0.023035621270537376, 0.008793859742581844, 0.005372833460569382, 0.016486698761582375, -0.017516223713755608, -0.006001987960189581, -0.015428575687110424, 0.001647061319090426, -0.01060267724096775, 0.004457700066268444, 0.012962006032466888, 0.00842208694666624, 0.014163117855787277, -0.009694693610072136, 0.0075212521478533745, 0.01815967634320259, 0.013119294308125973, 0.005269166082143784, -0.003728453302755952, 0.01191818155348301, 0.016629688441753387, -0.014756524935364723, 0.004243216011673212, -0.005773204378783703, 0.013333778828382492, -0.013097845949232578, -0.002407587133347988, 0.01151066180318594, -0.010045018047094345, -0.02079068496823311, -0.00749980378895998, 0.015342782251536846, -0.009566003456711769, 0.014713628217577934, 0.006191448774188757, -0.017244543880224228, 0.014913813211023808, -0.032601624727249146, -0.013355227187275887, 0.0010867208475247025, 0.011467764154076576, -0.013576860539615154, 0.003867868334054947, 0.020619098097085953, -0.018445655703544617, 0.00039210423710756004, 0.028869597241282463, 0.02051900513470173, -0.0022342123556882143, 0.0053871325217187405, -0.0055837430991232395, 0.01863154210150242, -0.004725805949419737, 0.014928112737834454, 0.026781948283314705, 0.0017337487079203129, -0.014534891583025455, -0.020533304661512375, -0.012890511192381382, -0.012954856269061565, 0.008729513734579086, -0.00580180250108242, 0.006545348092913628, -0.007088708691298962, -0.0026935662608593702, 0.003254800336435437, -0.019074810668826103, 0.010488285683095455, 0.005773204378783703, -0.013269433751702309, -0.014055876061320305, -0.0043075610883533955, -0.00645955465734005, 0.014971009455621243, -0.007242422550916672, -0.022649550810456276, -0.027039330452680588, 0.019575273618102074, 0.003519331105053425, 0.022006096318364143, 0.017530523240566254, -0.003910765051841736, -0.0039679608307778835, -0.009430162608623505, 0.014270360581576824, -0.005190521944314241, 0.006001987960189581, 0.009008343331515789, -0.009222827851772308, -0.014642133377492428, -0.023779166862368584, 0.004404079169034958, -0.009458760730922222, -0.012926258146762848, 0.0012877999106422067, -0.028483524918556213, 0.020947974175214767, 0.0028991138096898794, -6.244623364182189e-05, 0.0006599862826988101, -0.021734416484832764, 0.009601750411093235, -0.0023539660032838583, 0.004614988807588816, 0.008858204819262028, 0.019989943131804466, 0.018531449139118195, -0.005726732779294252, -0.004951014183461666, -0.006320139393210411, 0.003022442338988185, 0.04429817199707031, 0.02799735963344574, 0.006956443190574646, -0.0071816518902778625, 0.020347418263554573, -0.0208192840218544, 0.014620685018599033, -0.0023915008641779423, 0.0007641005795449018, -0.011081692762672901, -0.006573946215212345, -0.02143413946032524, 0.02618139237165451, 0.016100626438856125, 0.008436385542154312, -0.002863366389647126, -0.0018114992417395115, 0.011825238354504108, 0.007414009887725115, 0.009108436293900013, 0.014799421653151512, 0.00593764241784811, -0.02001854218542576, 0.006774131674319506, 0.04072343185544014, -0.00794307142496109, -0.006455979775637388, 0.012404346838593483, 0.009637498296797276, -0.0002130321372533217, 0.0023629029747098684, 0.004350458271801472, -0.01715875044465065, -0.0020107910968363285, -0.0015979085583239794, 0.02193460240960121, 0.007124456111341715, 0.008207602426409721, -0.004990336485207081, -0.004779426846653223, -0.01820257492363453, -0.0005026977742090821, 0.0034549857955425978, 0.0003244076215196401, -0.03120032697916031, -0.013569711707532406, 0.002784722251817584, -0.0042146178893744946, 0.009051240980625153, -0.003935788292437792, 0.019460882991552353, 0.004182445351034403, -0.014163117855787277, -0.002318218583241105, 0.003077850677073002, 0.002942010760307312, 0.016872771084308624, -0.004464849829673767, 0.00359618803486228, -0.0022431490942835808, -0.015156895853579044, 0.006302265916019678, -0.0007149479351937771, 0.03385993465781212, -0.014670731499791145, 0.0200471393764019, -0.01320508774369955, 0.013584010303020477, -0.0015192643040791154, -0.012154114432632923, 0.014041577465832233, -0.014727926813066006, 0.013412422500550747, -0.016643987968564034, -0.003950087353587151, -0.001166258822195232, -0.023435993120074272, 0.0011814514873549342, 0.007621344644576311, 0.03208686411380768, -0.006384484935551882, 0.0009356880909763277, -0.0036122743040323257, -0.001118893502280116, -0.007921623066067696, -0.00224136165343225, 0.0034978827461600304, 0.0035979754757136106, 0.017144450917840004, -0.017830800265073776, -0.019675366580486298, -0.002824044320732355, 0.0036390849854797125, 0.020804984495043755, 0.012039722874760628, -0.019875552505254745, -0.0076928394846618176, 0.003006356069818139, 0.009058389812707901, -0.016186421737074852, 0.008665168657898903, -0.01958957314491272, -0.0037677756045013666, 0.008836756460368633, -0.01990414969623089, -0.036376550793647766, -0.014685030095279217, 0.006262943614274263, 0.0028061706107109785, 0.0032387140672653913, 0.006699061952531338, -0.0014298958703875542, -0.0017230245284736156, 0.01447769533842802, -0.020533304661512375, 0.007217399310320616, 0.012125516310334206, -0.008243349380791187, 0.019232099875807762, -0.0058983201161026955, -0.014270360581576824, -0.012911959551274776, 0.03388852998614311, -0.006813453510403633, 0.007435458246618509, -0.003867868334054947, -0.005419305060058832, 0.012604531832039356, -0.010702770203351974, -0.004686483647674322, 0.015357080847024918, -0.006523899734020233, 0.014027277939021587, 0.022149085998535156, 0.005619490519165993, 0.003644447075203061, 0.019031913951039314, -0.0005388919962570071, 0.007921623066067696, 0.014456246979534626, -0.008264797739684582, 0.014913813211023808, 0.009880580008029938, -0.008708065375685692, -0.0002886602305807173, 0.0010554419131949544, -0.008028864860534668, 0.0324014388024807, 0.009365817531943321, -0.011675099842250347, 0.014527741819620132, -0.022435065358877182, -0.005655237939208746, 0.004722231067717075, -0.008758111856877804, -0.0005259335739538074, 0.011639351956546307, 0.005086854565888643, -0.0010894018923863769, -0.006677613593637943, 0.002212763763964176, -0.0048437719233334064, 0.008393488824367523, 0.012561635114252567, -0.003792798612266779, -0.0003498776350170374, -0.013655505143105984, -0.006241495255380869, -0.02386496216058731, -0.009229977615177631, -0.002396862953901291, -0.004200318828225136, 0.00012109430099371821, 0.008543627336621284, -0.005372833460569382, -0.005494374781847, -0.006259369198232889, -0.00027748916181735694, 0.010266652330756187, -0.012983454391360283, -0.0104096420109272, 0.02247796207666397, 0.02383636310696602, -0.013505366630852222, -0.0038356955628842115, 0.0010590165620669723, -0.012218459509313107, 0.0034692848566919565, 0.013798494823276997, 0.0007909111445769668, 0.007993117906153202, 0.022435065358877182, -0.022120488807559013, -0.015542968176305294, -0.0014057663502171636, -0.00035054789623245597, -0.0023414543829858303, -0.008314844220876694, -0.021577127277851105, -0.0008932380587793887, 0.012575933709740639, -0.00393221341073513, -0.018231172114610672, -0.004021582193672657], "a07fd493-ee5f-4964-88e0-bb56a446eb61": [-0.029821109026670456, -0.024737102910876274, -0.01396204624325037, 0.04115768149495125, -0.019637921825051308, -0.023280194029211998, 0.03781893476843834, 0.018712176010012627, 0.004480754490941763, 0.02420593798160553, 0.02898642048239708, -0.024524636566638947, 0.00011678511509671807, -0.0002855010679922998, -0.006605413742363453, 0.04583193361759186, -0.04889751225709915, 0.016314346343278885, 0.026983171701431274, -0.015236841514706612, 0.058215659111738205, -0.020548488944768906, -0.025435205549001694, -0.014675324782729149, 0.003133872291073203, 0.011579392477869987, -0.01927369460463524, 0.005827636457979679, -0.013347412459552288, 0.0017120579723268747, 0.009060153737664223, -0.0028720838017761707, 0.024372875690460205, -0.0023048757575452328, 0.0064915926195681095, -0.029790757223963737, 0.006582649424672127, -0.0030314333271235228, -0.02663411945104599, -0.0345105342566967, -0.026285069063305855, 0.052812956273555756, 0.016283994540572166, -0.0048525696620345116, -0.011154460720717907, 0.01717938669025898, 0.01740702986717224, -0.008483460173010826, -0.034115955233573914, -0.010623295791447163, 0.006180481519550085, 0.022566916421055794, 0.005425469018518925, 0.016602693125605583, 0.0020696455612778664, -0.036544136703014374, 0.025966370478272438, 0.09803784638643265, 0.043798331171274185, -0.05050618201494217, -0.006715440656989813, 0.0040482343174517155, -0.020912716165184975, -0.00613495334982872, -0.012816247530281544, -0.011586980894207954, -0.017133858054876328, 0.030519211664795876, -0.02340160310268402, -0.0031661216635257006, 0.013066654093563557, 0.006411917973309755, -0.003716256469488144, 0.04164331778883934, 0.006131159141659737, -0.046074751764535904, 0.07770182192325592, 0.01640540361404419, 0.02030567079782486, 0.009462321177124977, -0.02847043238580227, 0.051082875579595566, 0.026148483157157898, 0.01248996052891016, 0.03611920401453972, 0.032871510833501816, -0.01994144357740879, -0.03845633193850517, -0.004237936343997717, -0.0325983427464962, 0.0049815671518445015, 0.03851703554391861, -0.0009404462180100381, 0.016784807667136192, -0.009416792541742325, 0.025890490040183067, 0.030367448925971985, -0.010046602226793766, 0.011359338648617268, -0.012376139871776104, -0.002638750709593296, 0.005326824262738228, 0.015244429931044579, 0.020958244800567627, 0.0022915967274457216, 0.007417337037622929, -0.007204871159046888, -0.0003623302618507296, -0.011230341158807278, 0.03560321778059006, 0.013658523559570312, -0.022126806899905205, -0.011996735818684101, -0.0035474218893796206, -0.01846935786306858, -0.02159564197063446, -0.028379375115036964, -0.0022802145686000586, -0.008870451711118221, -0.02913818322122097, 0.007295927964150906, 0.020396728068590164, -0.006954464595764875, 0.01353711448609829, -0.03432841971516609, -0.004564223345369101, -0.006059072446078062, 0.013582642190158367, 0.014485622756183147, -0.005478585604578257, -0.01810513064265251, -0.006332243327051401, 0.025632495060563087, 0.010031426325440407, -0.001236855168826878, -0.005000537261366844, 0.030564740300178528, 0.029623819515109062, -0.029532762244343758, 0.06088666245341301, -0.021990222856402397, -0.03596744313836098, 0.013476409949362278, -0.023447131738066673, -0.017649848014116287, -0.0242818184196949, -0.03757611662149429, 0.07903732359409332, 0.005277501419186592, 0.008528988808393478, -0.04716743156313896, -0.043980445712804794, -0.002572355093434453, -0.01733114756643772, -0.03727259114384651, -0.02306772768497467, -0.02634577266871929, 0.011807034723460674, 0.011420043185353279, 0.03159671649336815, -0.02564767189323902, -0.025541437789797783, -0.003395660547539592, 0.017270443961024284, 0.01798372156918049, 0.004287258721888065, 0.0459836944937706, 0.04546770453453064, -0.0017803505761548877, 0.012725191190838814, 0.012118144892156124, -0.026102954521775246, -0.0020525725558400154, 0.019637921825051308, -0.032871510833501816, -0.01736150123178959, 0.0245701652020216, 0.04619615897536278, 0.0056986394338309765, -0.015244429931044579, 0.00468942616134882, 0.004568017087876797, -0.004522488918155432, -0.012960420921444893, 0.005615170579403639, 0.016132233664393425, 0.04583193361759186, 0.024190763011574745, -0.01250513643026352, 0.0027525718323886395, -0.008878040127456188, 0.018697001039981842, 0.002718425588682294, 0.024934392422437668, -0.014174511656165123, -0.0012406491441652179, 0.013317059725522995, -0.02203575149178505, -0.015388602390885353, 0.023295370861887932, -0.0019463395001366735, -0.04267529770731926, -0.017270443961024284, 0.015138196758925915, -0.013666111044585705, 0.04759236425161362, -0.019304046407341957, 0.026497535407543182, 0.019880739971995354, -0.05168992280960083, 0.02578425593674183, -0.054573386907577515, 0.0022536562755703926, -0.0033083977177739143, -0.0034260128159075975, 0.020214613527059555, -0.012679662555456161, 0.027863387018442154, -0.005072623956948519, 0.01026665698736906, 0.01127586979418993, 0.035785332322120667, 0.01473602931946516, -0.0249495692551136, -0.045346297323703766, -0.04200754687190056, -0.007106225937604904, 0.009265031665563583, -0.03214305639266968, 0.009682375006377697, 0.0331750363111496, 0.00423034792765975, -0.005543083883821964, -0.05952080711722374, -0.02663411945104599, 0.025966370478272438, 0.04322163760662079, -0.012649309821426868, 0.024752279743552208, -0.004807041492313147, -0.00969755183905363, 0.0004830279794987291, -0.020336022600531578, 0.005986986216157675, 0.027575040236115456, 0.016951745375990868, -0.01162492111325264, 0.03278045728802681, 0.0030636826995760202, 0.01824171654880047, 0.026588592678308487, 0.019228165969252586, -0.01028183288872242, -0.003911649342626333, -0.03432841971516609, 0.033235739916563034, 0.03970077261328697, 0.018484534695744514, -0.031323544681072235, -0.008392403833568096, 0.012846600264310837, 0.032689400017261505, -0.02748398296535015, 0.03505687788128853, 0.010782645083963871, -0.007728447671979666, 0.04461784288287163, -0.02247585915029049, -0.00857451744377613, 0.037363648414611816, -0.020062852650880814, 0.00902980100363493, -0.004029264207929373, 0.02924441546201706, 0.019258517771959305, -0.00424931850284338, 0.016799982637166977, -0.0008939693216234446, 0.019121931865811348, -4.271993475413183e-06, 0.012171261943876743, 0.027711626142263412, -0.020836835727095604, -0.0016048764809966087, 0.019258517771959305, -0.013688875362277031, -0.04395009204745293, 0.005527907982468605, -0.046408627182245255, 0.004996743053197861, 0.005728991702198982, 0.025465557351708412, 0.0034601592924445868, 0.0010130071314051747, -0.024266643449664116, -0.024221114814281464, 0.02185363695025444, -0.02557179145514965, 0.009621670469641685, -0.007876414805650711, -0.006939288694411516, -0.039093729108572006, 9.502869943389669e-05, -0.04197719320654869, 0.02564767189323902, -0.04146120697259903, 0.01831759698688984, -0.014250392094254494, -0.019046051427721977, 0.0075728921219706535, 0.024600517004728317, -0.010995111428201199, -0.005914899520576, -0.011533863842487335, 0.002342816209420562, -0.006320861168205738, -0.011609744280576706, 0.008673162199556828, -0.001885634963400662, -0.017376676201820374, 0.02921406365931034, -0.021322472020983696, -0.06392189115285873, 0.03854738920927048, 0.04045958071947098, -0.026467181742191315, 0.007197282742708921, 0.02340160310268402, -0.024661222472786903, 0.003699183464050293, -0.01570730097591877, -0.02291596680879593, 0.008749042637646198, 0.0035739801824092865, -0.02104930207133293, 0.0007976957131177187, -0.014553914777934551, -0.07339179515838623, -0.0037200504448264837, -0.03463194519281387, 0.00950784981250763, 0.009674787521362305, -0.01532031036913395, 0.028091030195355415, -0.01538101490586996, -0.0070872558280825615, -0.030321922153234482, 0.017862312495708466, -0.013969633728265762, -0.004370727576315403, 0.0009608391555957496, -0.031627070158720016, -0.006518150679767132, -0.0063701835460960865, 0.008415168151259422, 0.025966370478272438, 0.002875878009945154, 0.0029157153330743313, 0.04039887711405754, -0.031505659222602844, -0.010448770597577095, 0.0008759476477280259, -0.0011505408911034465, 0.042584240436553955, -0.011708389967679977, 0.012535489164292812, 0.003403248731046915, -0.012080204673111439, -0.03123248927295208, -0.04297881945967674, -0.012102968990802765, 0.008088881149888039, 0.02608777955174446, 0.02803032472729683, -0.0498080812394619, -0.003583465237170458, 0.07120643556118011, 0.007311103865504265, 0.0252379160374403, 0.01975933089852333, -0.009249855764210224, 0.02472192607820034, 0.013567466288805008, -0.0002774387539830059, 0.04577123001217842, 0.005524113774299622, 0.02472192607820034, 0.01447803433984518, -0.010934406891465187, 0.019106756895780563, -0.017831960693001747, -0.023993471637368202, -0.003934413660317659, -0.0027108374051749706, -0.013946869410574436, -0.00030470837373286486, 0.0010993214091286063, -0.02417558617889881, 0.021686699241399765, -0.003583465237170458, 0.011647685430943966, -0.01248996052891016, -0.03363031893968582, 0.006324654910713434, 0.018120307475328445, -0.017315972596406937, -0.03378207981586456, -0.005558260250836611, 0.004420049954205751, -0.00481842365115881, -0.02435769885778427, 0.0018657163018360734, -0.005861782934516668, -0.0029555526562035084, 0.04546770453453064, -0.01530513446778059, -0.01736150123178959, 0.03748505935072899, -0.016466109082102776, -0.025040626525878906, 0.027423279359936714, 0.0389116145670414, -0.0011078580282628536, 0.007538746111094952, 0.010327361524105072, 0.012156086042523384, -0.010213539935648441, 0.05657663941383362, -0.0016219496028497815, 0.00914362259209156, 0.0019577215425670147, 0.014060690999031067, -0.015692126005887985, -0.014288333244621754, 0.00312628410756588, -0.02435769885778427, -0.005854194983839989, -0.019562039524316788, 0.029517585411667824, 0.01552518829703331, 0.004863951820880175, 0.016982097178697586, -0.014773969538509846, 0.009022213518619537, -0.05199344456195831, -0.05041512846946716, -0.046924613416194916, -0.018636295571923256, -0.025298619642853737, -0.004275876563042402, 0.022491034120321274, 0.027529511600732803, -0.03627096861600876, 0.010183188132941723, 0.010858525522053242, 0.0140531025826931, 0.052327319979667664, -0.0003995592414867133, 0.07290615886449814, -0.030595092102885246, -0.035330045968294144, 0.024114880710840225, 0.01107099186629057, -0.008437932468950748, 0.04006500169634819, -0.019546864554286003, 0.026512710377573967, 0.028561489656567574, -0.004272082354873419, 0.04109697788953781, 0.01655716449022293, 0.005178856663405895, 0.013438468798995018, 0.007868827320635319, 0.023902416229248047, -0.015517599880695343, -0.0036593459080904722, 0.0005823842366226017, 0.03369102254509926, 0.020320847630500793, -0.01942545548081398, 0.023234665393829346, 0.0065485029481351376, -0.01179185789078474, 0.016101881861686707, 0.010380477644503117, -0.01953168772161007, -4.096371412742883e-05, 0.03587638586759567, 0.004298640880733728, 0.004693220369517803, 0.020351199433207512, 0.01348399743437767, 0.010638471692800522, -0.025586966425180435, -0.03730294480919838, 0.014151747338473797, -0.035785332322120667, -0.017816783860325813, -0.04045958071947098, 0.021292120218276978, -0.01857559196650982, -0.009773432277143002, 0.009424380958080292, 0.014758792705833912, 0.010084543377161026, -0.027893738821148872, 0.030412977561354637, 0.0006876686820760369, -0.02560214325785637, -0.047774478793144226, 0.007997823879122734, -0.023902416229248047, 0.0019415969727560878, 0.017604319378733635, 0.04027746617794037, -0.011753917671740055, -0.001332654501311481, 0.03523898869752884, -0.027453631162643433, -0.014432505704462528, -0.039275843650102615, -0.02634577266871929, 0.017649848014116287, 0.0008854327606968582, 0.02895606867969036, -0.011002698913216591, -0.008953920565545559, 0.05633382126688957, -0.014994023367762566, -0.0016636840300634503, 0.03872950002551079, -0.008635221980512142, 0.00031822462915442884, -0.011890503577888012, 0.005197826772928238, 0.004727366846054792, 0.0023902414832264185, -0.00959890615195036, 0.010987523011863232, -0.022870438173413277, 0.0055772303603589535, -0.011207576841115952, -0.020138733088970184, -0.009386440739035606, 0.024585342034697533, -0.0012197820469737053, -0.005618964787572622, 0.0008640912710689008, 0.023447131738066673, -0.013119770213961601, 0.020836835727095604, 0.009052565321326256, -0.0020658515859395266, 0.01239890418946743, -0.0332660935819149, 0.025359325110912323, -0.017862312495708466, 0.006226010154932737, -0.02214198373258114, -0.012770718894898891, 0.04974737763404846, -0.0006141592748463154, -0.018879113718867302, -0.019728977233171463, -0.01824171654880047, -0.011829799041152, 0.009454733692109585, -0.012087793089449406, 0.004913274198770523, 0.022308921441435814, 0.004992948845028877, -0.019804857671260834, -0.010524651035666466, 0.01567694917321205, 0.009302971884608269, -0.012854187749326229, 0.012558253481984138, -0.041400499641895294, -0.013870988972485065, 0.002219510031864047, -0.001064226613380015, -0.006768557243049145, 0.011837386526167393, 0.0005349588464014232, 0.0127631314098835, -0.007762594148516655, -0.014379389584064484, -0.0012890230864286423, -0.013468821533024311, -0.013157710433006287, 0.0185452401638031, -0.009887252934277058, -0.023295370861887932, -0.012846600264310837, 0.009181562811136246, -0.005873165093362331, 0.04300917312502861, 0.013863400556147099, 0.015456895343959332, 0.01632952317595482, 0.0029327883385121822, 0.02973005175590515, -0.008528988808393478, -0.02928994409739971, 0.023932768031954765, -0.01094199437648058, -0.004814629442989826, 0.007660155184566975, 0.0006075197015888989, 0.0026046044658869505, -0.02505580149590969, 0.02947205863893032, -0.012391315773129463, 0.03399454802274704, 0.007997823879122734, -0.002841731533408165, 0.03308397904038429, -0.008908391930162907, -9.574008436175063e-05, 0.0350872278213501, -0.01149592362344265, 0.03836527466773987, -0.02118588797748089, 0.014060690999031067, 0.046772852540016174, -0.021899165585637093, 0.005706227384507656, -0.019182637333869934, 0.01538101490586996, -0.03872950002551079, 0.006404329556971788, 0.0056986394338309765, -0.006688882131129503, 0.024782631546258926, 0.0029934931080788374, -0.005892135202884674, -0.026755528524518013, -0.020002149045467377, -1.5894928537818487e-06, -0.025222739204764366, -0.014515974558889866, 0.007113814353942871, 0.035117581486701965, -0.010873702354729176, -0.02236962504684925, -0.008119232952594757, 0.029305120930075645, 0.011943619698286057, 0.037758227437734604, -0.023158784955739975, -0.011784270405769348, 0.013719228096306324, 0.012497548945248127, 0.005782108288258314, -0.04212895408272743, -0.005971809849143028, -0.00915879849344492, 0.032689400017261505, 0.025359325110912323, 0.02332572266459465, -0.019228165969252586, 0.038759853690862656, 0.023219488561153412, 0.022202687337994576, 0.005660699214786291, 0.019379926845431328, -0.030109455808997154, 0.03879020735621452, 0.012042264454066753, -0.0012757440563291311, -0.016966920346021652, 0.03879020735621452, -0.016466109082102776, 0.008308934979140759, -0.008847687393426895, -0.021383177489042282, 0.004867746029049158, 0.023416779935359955, -0.014144159853458405, -0.008437932468950748, -0.025222739204764366, -0.016435755416750908, 0.016602693125605583, 0.026770705357193947, 0.004757719114422798, -0.007060697767883539, 0.01283901184797287, -0.0151761369779706, 0.004279670771211386, 0.008946333080530167, 0.008878040127456188, -0.03335714712738991, 0.02542002871632576, 0.007341456133872271, -0.0075880684889853, -0.007178312633186579, 0.009545790031552315, 0.0023617863189429045, -0.03818316012620926, -0.03138425201177597, 0.007830886170268059, -0.0033861754927784204, -0.011177225038409233, -0.013165298849344254, 0.003429807024076581, -0.013203239068388939, -0.020320847630500793, 0.0075880684889853, 0.04631756991147995, 0.0052699134685099125, 0.013157710433006287, -0.009553378447890282, 0.021823285147547722, -0.024448756128549576, -0.0018638193141669035, 0.010653648525476456, 0.02821243926882744, 0.00045433558989316225, 0.017649848014116287, 0.011746330186724663, 0.04382868483662605, 0.014576679095625877, -0.0306406207382679, -0.03888126090168953, 0.020138733088970184, 0.01026665698736906, 0.0227035004645586, 0.006521944887936115, 0.007648773025721312, -0.0011827901471406221, -0.0017433586763218045, -0.013650935143232346, 0.00915879849344492, 0.0012216790346428752, 0.0021170710679143667, -0.03171812742948532, -0.005664492957293987, 0.05311647802591324, -0.03278045728802681, 0.015646597370505333, -0.0025780461728572845, 0.006313272751867771, -0.019486159086227417, -0.006821673363447189, -0.009849312715232372, 0.035785332322120667, -0.0012491857632994652, -0.03435877338051796, -0.019228165969252586, 0.043251991271972656, -0.0306406207382679, 0.011237929575145245, 0.004788071382790804, 0.009371264837682247, -0.02236962504684925, 0.021428706124424934, 0.0039382074028253555, -0.003553112968802452, 0.008081292733550072, 0.002192951738834381, 0.019167460501194, 0.0063056848011910915, -0.022506210952997208, -0.02692246623337269, 0.02252138778567314, 0.010213539935648441, 0.026543064042925835, 0.010479122400283813, 0.00769050745293498, 0.033569615334272385, 0.027575040236115456, 0.024372875690460205, 0.017680199816823006, 0.001842003664933145, 0.010964758694171906, 0.02056366577744484, -0.019137108698487282, -0.03970077261328697, 0.0044693723320961, -0.05511973053216934, -0.03171812742948532, 0.01637505181133747, -0.02092789299786091, -0.0022915967274457216, -0.015950119122862816, 0.05129534378647804, 0.02221786417067051, 0.03089861385524273, -0.01849971152842045, 0.005983192007988691, -0.02218751236796379, -0.02123141475021839, 0.011814622208476067, 3.8948131987126544e-05, 0.00228969962336123, 0.039124079048633575, -0.02387206256389618, 0.005630346946418285, -0.0031395633704960346, 0.007777770049870014, -0.02063954621553421, 0.039457954466342926, 0.03973112627863884, -0.02262762002646923, -0.04331269487738609, -0.018120307475328445, 0.02501027286052704, -0.0281062051653862, 0.01736150123178959, -0.001412329263985157, -0.00803576409816742, -0.0058845472522079945, 0.020411904901266098, -0.03991324082016945, -0.011981559917330742, -0.0004806567158084363, 0.019622744992375374, 0.017422204837203026, 0.019637921825051308, -0.03745470568537712, 0.006673706229776144, 0.016799982637166977, -0.019121931865811348, 0.016132233664393425, -0.039306193590164185, 0.006229804363101721, -0.020518137142062187, 0.007250399328768253, 0.006028720177710056, -0.019167460501194, -0.026027074083685875, 0.003333059139549732, 0.022779380902647972, 0.0013155813794583082, 0.021140359342098236, -0.018681824207305908, 0.028607018291950226, -0.016966920346021652, 0.017786432057619095, -0.020169086754322052, -0.01632952317595482, -0.0018467461923137307, -0.005524113774299622, 0.018712176010012627, -0.02387206256389618, 0.030731678009033203, -0.011374514549970627, 0.026573415845632553, 0.02696799486875534, 0.016208114102482796, -0.03244658187031746, 0.009462321177124977, 0.05129534378647804, -0.0058845472522079945, -0.0003566392115317285, -0.009211914613842964, 0.00044911878649145365, -0.036513786762952805, 0.00034525711089372635, 0.022066103294491768, 0.03991324082016945, -0.010463946498930454, 0.004055822733789682, -0.018408654257655144, -0.016435755416750908, -0.03414630889892578, 0.002211921848356724, 0.006707852706313133, -0.004215172026306391, -0.04316093400120735, 0.017665022984147072, 0.0020924098789691925, 0.009985897690057755, -0.007447689305990934, 0.015843886882066727, -0.007322486024349928, 0.03438912704586983, -0.01673927903175354, -0.014644972048699856, -0.026209188625216484, -0.005596200469881296, -0.014819497242569923, 0.005694845225661993, -0.0389116145670414, -0.0006520996103063226, 0.00816476158797741, -0.014174511656165123, -0.014887790195643902, 0.018742529675364494, 0.028485609218478203, 0.01250513643026352, -0.00879457127302885, -0.016314346343278885, -0.020958244800567627, 0.005178856663405895, 0.031111080199480057, 0.00048231659457087517, 0.023963119834661484, -0.034085601568222046, 0.006176687777042389, -0.019046051427721977, -0.023720301687717438, 0.0252379160374403, 0.03174847736954689, -0.05311647802591324, 0.04510347917675972, 0.004055822733789682, 0.02409970574080944, 0.0065485029481351376, 0.002247965196147561, 0.024934392422437668, 0.020411904901266098, -0.02807585336267948, 0.04443572834134102, 0.0204574316740036, 0.023538189008831978, 0.0012823835713788867, 0.0107067646458745, -0.017938192933797836, 0.011723565869033337, 0.01473602931946516, 0.011313810013234615, 0.009007037617266178, -0.003270457498729229, -0.013984810560941696, -0.031627070158720016, 0.00255717895925045, 0.014811909757554531, 0.021808108314871788, -0.003871812019497156, 0.007868827320635319, 0.005376146640628576, -0.016799982637166977, 0.021428706124424934, -0.013013537041842937, 0.01670892722904682, 0.008908391930162907, -0.01418210007250309, -0.012983185239136219, -0.01327911950647831, -0.009849312715232372, 0.03951866179704666, -0.0047918651252985, 0.016450932249426842, -0.01839347742497921, -0.00026297400472685695, 0.008141997270286083, 0.003333059139549732, 0.0010262862779200077, 0.019804857671260834, -0.0025780461728572845, -0.006730616558343172, -0.00425690645352006, 0.014136571437120438, 0.02417558617889881, -0.008900804445147514, 0.014561503194272518, 0.007307310122996569, 0.005808666348457336, -0.0007644979050382972, 0.016799982637166977, -0.011177225038409233, 0.004446608014404774, -0.01560106873512268, 0.01585906371474266, -0.014994023367762566, 0.03311432898044586, -0.01890946738421917, -0.00803576409816742, -0.021550115197896957, 0.004283464513719082, -0.013036301359534264, 0.03284116089344025, 0.005656905006617308, -0.0012719499645754695, -0.03211270645260811, 0.006707852706313133, -0.0042341421358287334, -0.010646060109138489, 0.04561946913599968, -0.0029270974919199944, 0.019622744992375374, -0.0021872606594115496, 0.006787527352571487, -0.034419476985931396, -0.03466229513287544, -0.003469644347205758, -0.030443331226706505, 0.009098093956708908, 0.01532031036913395, -0.012482372112572193, -0.006191863678395748, -0.01927369460463524, 0.033599965274333954, 0.013749579899013042, -0.0229918472468853, -0.013172886334359646, -0.01250513643026352, -0.014819497242569923, -0.00592248747125268, -0.010403241962194443, -0.022840086370706558, 0.03942760452628136, -0.004040646366775036, 0.02384171076118946, 0.01192085538059473, -0.004788071382790804, -0.01184497494250536, 0.03745470568537712, -0.020214613527059555, -0.018894290551543236, 0.0033463381696492434, -0.02214198373258114, -0.01250513643026352, 0.03211270645260811, -0.025738727301359177, -0.019379926845431328, -0.031505659222602844, 0.03196094557642937, 0.00433278689160943, -0.02195986919105053, -0.003672625171020627, -0.017528438940644264, -0.005535495933145285, 0.018894290551543236, -0.009705139324069023, -0.021094830706715584, 0.007861238904297352, 0.004086175002157688, -0.012254730798304081, -0.024084528908133507, 0.022566916421055794, -0.0018135483842343092, 0.019911091774702072, -0.02324984222650528, -0.016466109082102776, -0.0876573696732521, -0.013036301359534264, -0.026588592678308487, 0.021383177489042282, 0.0005340102943591774, -0.00036161887692287564, 0.003524657804518938, -0.015358250588178635, 0.00578590203076601, 0.010243892669677734, 0.020320847630500793, -0.016010824590921402, -0.008885628543794155, 0.018863938748836517, -0.009469909593462944, -0.006575061473995447, 0.004955008625984192, -0.02593601867556572, -0.0033596171997487545, -0.01942545548081398, -0.009318147785961628, -0.017604319378733635, 0.01538101490586996, -0.003968559671193361, -0.0038186954334378242, 0.03596744313836098, -0.016086705029010773, -0.002957449760288, -0.022642796859145164, -0.027529511600732803, 0.013552290387451649, 0.004655280150473118, -0.013764755800366402, -0.0021322472020983696, -0.011473159305751324, 0.0038471505977213383, 0.014781557023525238, -0.016875864937901497, -0.009758256375789642, 0.017482910305261612, -0.005175062455236912, 0.0011107035679742694, -0.000444376259110868, -0.0008484409190714359, 0.028500784188508987, 0.014204864390194416, 0.017315972596406937, -0.024251466616988182, -0.010585355572402477, -0.011283458210527897, 0.02769644930958748, 0.011457983404397964, -0.015365839004516602, -0.0175891425460577, 0.016799982637166977, 0.009280207566916943, 0.023538189008831978, -0.009773432277143002, 0.008536577224731445, -0.02983628585934639, 0.07527364045381546, 0.03526934236288071, 0.021428706124424934, -0.013362588360905647, -0.026315420866012573, -0.004272082354873419, 0.020912716165184975, 0.045710522681474686, 0.015813535079360008, 0.010585355572402477, -0.02534414827823639, -0.013226003386080265, 0.0100617790594697, 0.036331672221422195, 0.0015915973344817758, -0.003285633632913232, 0.007500805426388979, 0.04231106862425804, -0.0011107035679742694, 0.005759343970566988, -0.018590766936540604, 0.011063403449952602, 0.03435877338051796, -0.007937119342386723, -0.016724102199077606, -0.01560106873512268, -0.0024243879597634077, -0.032537639141082764, -0.005732785910367966, -0.003044712357223034, 0.014918142929673195, -0.013271532021462917, 0.036665547639131546, 0.01484226156026125, -0.012156086042523384, -0.00635500717908144, -0.024418404325842857, 0.02648235857486725, -0.029487233608961105, -0.01362817082554102, -0.012732778675854206, 0.0001990682358155027, 0.01107099186629057, 0.0010414624121040106, -0.00043014861876145005, -0.03281080722808838, 0.013172886334359646, 0.02634577266871929, 0.023158784955739975, -0.007626008708029985, -0.003888885024935007, -0.0003919711452908814, -0.015904592350125313, 0.0036422729026526213, -0.029866637662053108, 0.00312249013222754, -0.015236841514706612, 0.009583730250597, 0.013385352678596973, -0.013582642190158367, -0.00915879849344492, 0.005615170579403639, -0.012641722336411476, -0.019744154065847397, -0.0014227628707885742, 0.03402489796280861, -0.012801071628928185, -0.028895365074276924, 0.011435219086706638, 0.011533863842487335, 0.017573965713381767, -0.018924642354249954, -0.004082380793988705, -0.007083462085574865, -0.003484820481389761, 0.02932029590010643, 0.022491034120321274, 0.0077474177815020084, 0.023568540811538696, -0.04036852344870567, -0.009424380958080292, -0.012027088552713394, 0.023340897634625435, 0.0023371251299977303, -0.019820034503936768, 0.0038964732084423304, -0.0066016195341944695, -0.01666339859366417, 0.019637921825051308, -0.011746330186724663, 0.006282920483499765, -0.013324648141860962, 0.018302420154213905, -0.015054727904498577, -0.034237366169691086, -0.008362051099538803, -0.009940369985997677, -0.008506224490702152, -0.009560965932905674, -0.035785332322120667, -0.0012415976962074637, 0.0047918651252985, 0.011124107986688614, 0.016784807667136192, 0.015054727904498577, -0.020320847630500793, -0.014705676585435867, -0.007975059561431408, -0.014371801167726517, -0.007770182099193335, -0.007166930474340916, -0.01862112060189247, -0.004996743053197861, -0.026239540427923203, 0.022415153682231903, -0.024418404325842857, -0.007728447671979666, -0.028379375115036964, 0.0319305919110775, 0.004328993149101734, -0.021868813782930374, 0.004101350903511047, 0.006332243327051401, 0.00802058819681406, -0.014379389584064484, 0.015692126005887985, -0.019030876457691193, 0.041521910578012466, -0.030261216685175896, -0.02413005754351616, 0.0198352113366127, 0.01810513064265251, -0.014447682537138462, -0.002016529208049178, -0.018954994156956673, -0.009181562811136246, 0.014349037781357765, 0.01777125708758831, -0.012118144892156124, -0.018347948789596558, -0.005118152126669884, 0.011814622208476067, 0.023720301687717438, 0.012102968990802765, -0.005235766991972923, -0.011594568379223347, -0.05830671638250351, 0.009781019762158394, 0.002139835385605693, -0.01810513064265251, -0.0007298773271031678, 0.014227628707885742, 0.01994144357740879, -0.007519776001572609, 0.016162585467100143, -0.029077477753162384, 0.006753380876034498, -0.009652023203670979, 0.008362051099538803, -0.023963119834661484, 0.027529511600732803, -0.00492845056578517, 0.017665022984147072, -0.0198352113366127, 0.018514886498451233, 0.013468821533024311, 0.006992405280470848, -0.058519184589385986, -0.03329644352197647, 0.005903517361730337, 0.01689103990793228, 0.023705124855041504, -0.0016769631765782833, 0.008308934979140759, 0.02082165889441967, -0.00212845322676003, 0.037029772996902466, -0.00724660512059927, 0.02185363695025444, -0.014409742318093777, -0.020730603486299515, -0.017315972596406937, 0.00046382067375816405, 0.02630024589598179, 0.03171812742948532, 0.03924548998475075, -0.011420043185353279, -0.011549039743840694, -0.0019340089056640863, 0.006100806873291731, 0.024145234376192093, -0.032537639141082764, -0.008255818858742714, 0.0028056881856173277, 0.0146980881690979, -0.009705139324069023, -0.014303509145975113, -0.028015147894620895, -0.0016731690848246217, 0.003137666266411543, -0.02174740470945835, 0.01986556313931942, 0.027575040236115456, -0.015214077197015285, 0.02766609750688076, -0.023674773052334785, 0.0021170710679143667, 0.014538738876581192, 0.015487248077988625, -0.021413529291749, 0.011913266964256763, -0.008286170661449432, -0.020988596603274345, -0.007967472076416016, -0.0026728971861302853, 0.0145311513915658, 0.015494835563004017, -0.030215688049793243, 0.0013819769956171513, -0.017573965713381767, -0.013673699460923672, -0.010820585303008556, -0.030139807611703873, -0.003056094516068697, 0.010805409401655197, -0.0008821129449643195, 0.005235766991972923, 0.01802925020456314, 0.033387500792741776, -0.016678573563694954, 0.002149320440366864, -0.0009105682256631553, 0.016875864937901497, 0.0027886151801794767, 0.01743738166987896, 0.0019710008054971695, -0.030261216685175896, -0.01939510367810726, 0.00044058222556486726, -0.005395116750150919, -0.0017746594967320561, 0.005952839739620686, -0.02482816018164158, 0.025511085987091064, -0.015426543541252613, -0.00025467455270700157, 0.012975596822798252, -0.006692676339298487, 0.008847687393426895, -0.00435934541746974, -0.0040027061477303505, 0.005679669324308634, -0.012793483212590218, -0.029532762244343758, -0.00011293179704807699, -0.005782108288258314, 0.01184497494250536, 0.0030921378638595343, 0.0017035213531926274, -0.012755542993545532, 0.007861238904297352, -0.015722477808594704, 0.027241164818406105, 0.0041886139661073685, -0.0012472887756302953, 0.008483460173010826, -0.009545790031552315, 0.004264494404196739, 0.004958802834153175, 0.007755005732178688, -0.013180474750697613, 0.04546770453453064, -0.0113517502322793, -0.006332243327051401, -0.0007369911181740463, -0.006810291204601526, 0.007914355024695396, 0.0030997260473668575, 0.005793490447103977, -0.0006539966561831534, 0.013104594312608242, 0.039275843650102615, -0.007990236394107342, -0.013248767703771591, -0.00034667988074943423, 0.02564767189323902, -0.004712190479040146, 0.01931922137737274, 0.038972318172454834, -0.004605957306921482, 0.005383734591305256, -0.012376139871776104, 0.000901557388715446, -0.017012448981404305, 0.011253105476498604, 0.013802696019411087, -0.004237936343997717, 0.01604117639362812, -0.00500433100387454, -0.039488308131694794, 0.01353711448609829, -0.00015045717009343207, 0.009864488616585732, 0.01632952317595482, 0.0009660559589974582, 0.02715010941028595, 0.011579392477869987, -0.01585906371474266, 0.01927369460463524, -0.020396728068590164, 0.0047311605885624886, 0.013324648141860962, -0.0019861769396811724, -0.0033596171997487545, -0.003621405689045787, -0.010638471692800522, 0.029517585411667824, -0.017285620793700218, 0.003395660547539592, 0.02082165889441967, -0.013468821533024311, 0.015919767320156097, -0.04200754687190056, -0.03454088792204857, -0.005163680762052536, 0.012383727356791496, -0.0006734410999342799, 0.004435225855559111, -0.011086167767643929, -0.009204327128827572, 0.011753917671740055, -0.017133858054876328, 0.0002902436244767159, -0.01648128405213356, 0.004423843696713448, 0.0007365169003605843, 0.0037200504448264837, 0.015995647758245468, -0.02280973456799984, -0.0005264222272671759, -0.03082273341715336, 0.001291868626140058, -0.010046602226793766, 0.044466082006692886, -0.0070872558280825615, 0.01403792668133974, 0.016177762299776077, -0.01418210007250309, -0.009743079543113708, -0.027711626142263412, -0.02004767768085003, -0.0078157102689147, 0.00858969334512949, -0.027787506580352783, -0.010759880766272545, -0.0028588047716766596, -0.011731153354048729, 4.4994874770054594e-05, 0.013362588360905647, 0.010175599716603756, -0.010183188132941723, -0.013575054705142975, 0.021064477041363716, -0.022612443193793297, -0.0014445785200223327, 0.001023440738208592, -0.012626545503735542, -0.034419476985931396, 0.005649317055940628, 0.028485609218478203, -0.021732227876782417, -0.010076954960823059, -0.006298096850514412, -0.01526719331741333, 0.018014075234532356, -0.00036944408202543855, 0.015259605832397938, -0.029456881806254387, -0.01740702986717224, -0.01931922137737274, -0.04370727390050888, 0.0006924112676642835, -0.001036719884723425, -0.03520863875746727, 0.022870438173413277, -0.0015033860690891743, 0.004397285636514425, -0.02347748354077339, 0.012345787137746811, -0.0020772337447851896, 0.013999986462295055, -0.022870438173413277, 0.02807585336267948, -0.001359212794341147, -0.007861238904297352, 0.006571267265826464, -0.008528988808393478, 0.001613413100130856, -0.019106756895780563, 0.01880323328077793, 0.028424903750419617, -0.009743079543113708, -0.008544164709746838, 0.004640103783458471, 0.007003786973655224, 0.013074241578578949, 0.01637505181133747, 0.005163680762052536, -0.009356088005006313, -0.008096468634903431, -0.026907291263341904, -0.029927341267466545, -0.0059983679093420506, 0.026512710377573967, 0.0018116512801498175, -0.021216239780187607, 0.008786982856690884, 0.00613495334982872, -0.007185900583863258, 0.0019036566372960806, -0.008536577224731445, -0.001371543388813734, 0.020396728068590164, -0.0077474177815020084, 0.024934392422437668, -0.01957721635699272, -0.002249862300232053, -0.007921943441033363, -0.019440630450844765, 0.03994359076023102, 0.002581840381026268, 0.027620568871498108, -0.0020013530738651752, 0.010168011300265789, 0.007220047060400248, -0.03366067260503769, -0.0007241863058879972, -0.0005695793661288917, 0.015995647758245468, -0.0008626685012131929, 0.004879128187894821, 0.0005027095321565866, -0.023492660373449326, -0.0018638193141669035, -0.007629802916198969, -0.017422204837203026, -0.021413529291749, 0.008953920565545559, 0.003782652085646987, -0.008802159689366817, -0.018681824207305908, 0.01872735284268856, -0.003321676980704069, 0.01140486728399992, 0.0007099586655385792, -0.0022574502509087324, 0.014295920729637146, 0.000995934009552002, -0.010608119890093803, -0.0075880684889853, -0.0031794006936252117, -0.013825460337102413, -2.5757935873116367e-05, -0.015236841514706612, 0.011397278867661953, 0.025966370478272438, 0.00603251438587904, 5.868896550964564e-05, -0.0022802145686000586, -0.006385359447449446, 0.011632508598268032, 0.016496460884809494, -0.004192407708615065, 0.010691588744521141, 0.023598892614245415, 0.000538278603926301, 0.008050940930843353, -0.015980472788214684, -0.021352823823690414, -0.02174740470945835, -0.009689963422715664, 0.0008873297483660281, -0.008680750615894794, 0.00022396657732315361, 0.0028739809058606625, 0.09488120675086975, -0.014591855928301811, 0.015168548561632633, 0.001961515750735998, 0.0011733050923794508, -0.009257443249225616, -0.0070986379869282246, 0.014819497242569923, 0.011025463230907917, 0.001049050479196012, 0.001922626863233745, -0.015115432441234589, 0.011829799041152, 0.01846935786306858, -0.02373547852039337, 0.01375716831535101, 0.022202687337994576, 0.02332572266459465, -0.001858128234744072, 0.012338199652731419, -0.005110564175993204, 0.006810291204601526, -0.0027298075146973133, -0.010297008790075779, -0.006795115303248167, 0.0038566358853131533, 0.010168011300265789, 0.0002869238378480077, 0.03551216050982475, 0.024236289784312248, -0.007174518890678883, -0.0009684272226877511, 0.005770726129412651, -0.03329644352197647, -0.004727366846054792, 0.02947205863893032, 0.0032401052303612232, 0.01114687230437994, 0.012581017799675465, 0.013172886334359646, -0.012535489164292812, -0.00013279120321385562, 0.017862312495708466, 0.027104580774903297, 0.005717609543353319, -0.02567802369594574, 0.024039000272750854, -0.0027639539912343025, 0.008900804445147514, -0.0014493210474029183, -0.01862112060189247, -0.020290495827794075, -0.001722491579130292, 0.006787527352571487, 0.012527900747954845, -0.014022750779986382, 0.003407042706385255, -0.010334949009120464, 0.02185363695025444, 0.010524651035666466, -0.010668824426829815, -0.014007573947310448, -0.009044977836310863, -0.029563114047050476, -0.007899179123342037, -0.01997179538011551, -0.028576666489243507, -0.023265017196536064, 0.01648128405213356, -0.01836312562227249, -0.003949589561671019, 0.017224915325641632, 0.010168011300265789, -0.03563356772065163, 0.012876952067017555, 0.03505687788128853, 0.006757175084203482, 0.015138196758925915, 0.01440215390175581, 0.012345787137746811, -0.007125196047127247, 0.005266119260340929, -0.009644434787333012, -0.005459615029394627, -0.008362051099538803, -0.005410292651504278, 0.021474232897162437, -0.030003221705555916, 0.003325470956042409, -0.018954994156956673, -0.00857451744377613, 0.020988596603274345, 0.010934406891465187, -0.0028891570400446653, 0.020730603486299515, -0.006931700278073549, 0.009098093956708908, 0.014333860948681831, 0.0051598865538835526, -0.0016921393107622862, 0.018697001039981842, 0.02340160310268402, -0.009902428835630417, -0.0017395647009834647, 0.0034506740048527718, -0.0014360419008880854, 0.019046051427721977, -0.009295383468270302, -0.016268819570541382, -0.0006023029563948512, 2.100798155879602e-06, 0.011017875745892525, 0.004533871077001095, 0.016875864937901497, -0.0027392928022891283, -0.019516512751579285, 0.007906767539680004, 0.0013981015654280782, -0.015510011464357376, -0.01282383594661951, -0.004909480456262827, 0.009910017251968384, 0.014349037781357765, -0.006180481519550085, 0.011215165257453918, 0.00792953185737133, -0.02273385226726532, 0.000590920855756849, -0.010251480154693127, -0.01171597745269537, 0.02567802369594574, 0.00492845056578517, 0.023963119834661484, -0.005156092345714569, 0.019698625430464745, 0.005178856663405895, -0.019516512751579285, -0.00017571120406500995, 0.0178774893283844, 0.003594847396016121, 0.014561503194272518, 0.007413542829453945, 0.022946318611502647, -0.013575054705142975, 0.010471533983945847, 0.0036005384754389524, -0.022976670414209366, -0.015768006443977356, 0.011306221596896648, -0.010221128351986408, 0.03335714712738991, -0.04246282950043678, 0.025723552331328392, 0.0006449858192354441, 0.010122483596205711, -0.0047918651252985, 0.0016333317616954446, 0.02751433663070202, -0.015388602390885353, 0.0018657163018360734, -0.007011375389993191, -0.007861238904297352, 0.011306221596896648, -0.007303515914827585, 0.006385359447449446, 0.000956096628215164, 0.0077018896117806435, 0.009872077032923698, 0.019182637333869934, -0.0082937590777874, 0.006681294180452824, 2.501691233192105e-05, 0.007952296175062656, -0.021322472020983696, -0.00836963951587677, -0.013855813071131706, 0.011526276357471943, -0.0022650384344160557, 0.0056341406889259815, 0.005656905006617308, -0.011374514549970627, -0.019804857671260834, 0.022172335535287857, -0.012300258502364159, 0.0038737088907510042, -0.0020924098789691925, 0.020943067967891693, -0.006430888082832098, 0.00153563532512635, 0.003321676980704069, -0.0223240964114666, 0.020806483924388885, 0.000713278423063457, -0.03353926166892052, -0.02405417710542679, 0.01313494611531496, 0.003111107973381877, 0.03208235278725624, 0.00680649746209383, -0.006286714691668749, 0.006889966316521168, 0.0030883438885211945, 0.0058655766770243645, 0.014424918219447136, 0.00045409848098643124, -0.001803114777430892, 0.012087793089449406, -0.010623295791447163, -0.004715984687209129, -0.011609744280576706, -0.05235767364501953, -0.023022199049592018, 0.011913266964256763, -0.006518150679767132, -0.03417665883898735, 0.022248215973377228, -0.001439835992641747, -0.006984816864132881, 0.0044769602827727795, 0.007364220451563597, -0.012626545503735542, 0.0058655766770243645, 0.008331699296832085, 0.02236962504684925, -0.007117608096450567, -0.001750946743413806, 0.01828724518418312, 0.032173410058021545, 0.04246282950043678, -0.0005216796998865902, 0.00844551995396614, -0.009910017251968384, -0.010380477644503117, 0.005417881067842245, -0.007675331085920334, -0.006973434705287218, 0.010410829447209835, -0.003363411407917738, 0.017194563522934914, -0.0035075845662504435, -0.01370405126363039, 0.004955008625984192, 0.006745792925357819, 0.0031471513211727142, 0.01880323328077793, -0.022855261340737343, -0.0032780454494059086, -0.0016693751094862819, -0.0015100255841389298, -2.7699414204107597e-05, -0.007072079926729202, 0.0015593480784446, -0.011002698913216591, 0.005436851177364588, 0.011632508598268032, 0.016435755416750908, -0.0006241186056286097, 0.004135497380048037, 0.013203239068388939, -0.00851381290704012, 0.013324648141860962, 0.012019500136375427, -0.008688338100910187, -0.008028176613152027, -0.007504599634557962, 0.011442807503044605, -0.019622744992375374, 0.016936568543314934, 0.005888340994715691, 0.0018002692377194762, -0.009242267347872257, 0.0012691044248640537, -0.005023301113396883, 0.030473683029413223, -0.013984810560941696, -0.011829799041152, -0.010410829447209835, -0.021140359342098236, -0.013597819022834301, 0.007409748621284962, -0.012543076649308205, 0.012444431893527508, 0.009743079543113708, -0.028789130970835686, -0.0007279803394339979, -0.011898091062903404, 0.007276957388967276, 0.02384171076118946, -0.005300265736877918, 0.0134081169962883, 0.009227091446518898, -0.0008460696553811431, 0.0032932215835899115, 0.002587531227618456, -0.0022441712208092213, 0.01872735284268856, -0.0013819769956171513, 0.004040646366775036, 0.02774197794497013, -0.006981023121625185, -0.0015460689319297671, -0.007622214965522289, 0.005216796882450581, -0.0015840092673897743, 0.011928443796932697, -0.0007706632022745907, 0.011192400939762592, 0.0011144975433126092, -0.0007929531275294721, -0.0023617863189429045, -0.0031869886443018913, 0.0015555539866909385, 0.005364764481782913, 0.0030997260473668575, -0.005015713162720203, 0.016693750396370888, 0.0027563658077269793, 0.027969621121883392, -0.003685904201120138, 0.011116520501673222, -0.003162327455356717, 0.034449830651283264, -0.004196201916784048, -0.0036953892558813095, 0.005440644919872284, 0.023416779935359955, 0.012527900747954845, 0.006446063984185457, -0.001801217789761722, -0.016450932249426842, 0.010881289839744568, 0.010759880766272545, -0.011321398429572582, 0.008551753126084805, -0.01890946738421917, 0.011306221596896648, -0.019637921825051308, 0.003583465237170458, -0.006028720177710056, 0.0030181542970240116, 0.0007417337037622929, -0.014789145439863205, -0.0008142946171574295, -0.021808108314871788, 0.0028341435827314854, -0.0020563665311783552, 0.01640540361404419, -0.015221665613353252, -0.0016930877463892102, 0.019592393189668655, -0.0033046037424355745, -0.015069903805851936, 0.008096468634903431, 0.008202701807022095, -0.009371264837682247, 0.024145234376192093, -0.0030466094613075256, 0.022415153682231903, -0.007159342523664236, 0.004947420675307512, -0.0060628666542470455, -0.001656095962971449, 0.0017149035120382905, -0.008528988808393478, 0.013521937653422356, 0.023568540811538696, -0.0075615099631249905, -0.002488886471837759, -0.02582978457212448, 0.0005287934909574687, -0.014174511656165123, -0.015828710049390793, -0.0072731636464595795, 0.0012719499645754695, -0.018454182893037796, 0.009022213518619537, -0.014015162363648415, -0.026285069063305855, -0.01957721635699272, 0.022779380902647972, 0.02567802369594574, 0.021610818803310394, -0.011116520501673222, -0.0028967452235519886, 0.009811372496187687, 0.025905665010213852, 0.021656347438693047, 0.018681824207305908, 0.010987523011863232, 0.008999449200928211, -0.029896989464759827, -0.00959890615195036, -0.00871869083493948, 0.0037371236830949783, 0.005410292651504278, 0.014781557023525238, -0.024524636566638947, 0.011093756183981895, 0.009242267347872257, -0.013886164873838425, -0.02288561500608921, 0.0023466101847589016, 0.010183188132941723, 0.013924106024205685, -0.004325198940932751, -0.0242818184196949, 0.0031130050774663687, 0.01805960200726986, 0.010327361524105072, -0.01397722214460373, -0.011336574330925941, 0.004033058416098356, -0.025177210569381714, 0.011556628160178661, 0.01898534782230854, -0.007724653463810682, 0.014584267511963844, -0.0005553517839871347, 0.012156086042523384, 0.011776681989431381, 0.011078580282628536, -0.00435175746679306, 0.0242818184196949, -0.015350662171840668, 0.01968344859778881, -0.004522488918155432, 0.004632515832781792, 0.0066016195341944695, -0.0052243852987885475, -0.004139291122555733, 0.010236304253339767, 9.858560952125117e-05, -0.02376583032310009, 0.00712899025529623, -0.013590230606496334, -0.023978296667337418, 0.002987802028656006, 0.014197275973856449, 0.015502423979341984, 0.019167460501194, -0.02604225091636181, 0.00228590564802289, -0.008157173171639442, -0.011253105476498604, 0.007121402304619551, -0.018954994156956673, 0.0031680185347795486, 0.029881812632083893, -0.0011932237539440393, 0.002923303283751011, -0.017604319378733635, 0.011207576841115952, -0.008217877708375454, -0.002196745714172721, -0.01957721635699272, -0.012323022820055485, 0.0045528411865234375, -0.014994023367762566, 0.019850386306643486, -0.016754455864429474, 0.002035499317571521, -0.007899179123342037, -0.011374514549970627, 0.009841724298894405, 0.004397285636514425, -0.012444431893527508, 0.007140372414141893, 0.012186437845230103, -0.03278045728802681, 0.026102954521775246, -0.01780160889029503, 0.0017120579723268747, -0.01122275274246931, -0.003835768671706319, -0.012345787137746811, 0.029016774147748947, 0.002760159783065319, 0.021868813782930374, 0.008172350004315376, -0.013810284435749054, -0.013423292897641659, 0.0035474218893796206, 0.010463946498930454, -0.0016323832096531987, 0.015327897854149342, 0.017194563522934914, 0.0040596164762973785, 0.02501027286052704, 0.006514356937259436, 0.024008648470044136, 0.016056353226304054, 0.0010149041190743446, 0.025981545448303223, -0.009189151227474213, 7.819267193553969e-05, -0.006070454604923725, 0.006446063984185457, 0.014098631218075752, -0.012778307311236858, -0.014629796147346497, -0.00301246321760118, 0.0006848232005722821, -0.011670448817312717, 0.0057631381787359715, 0.027438456192612648, 0.008620046079158783, -0.0011533864308148623, 0.0025078565813601017, 0.018439006060361862, 0.023310545831918716, 0.015168548561632633, -0.009196738712489605, -0.030655795708298683, 0.009667199105024338, 0.008657986298203468, 0.0026273687835782766, 0.014280744828283787, 0.011647685430943966, 0.010365301743149757, -0.020609194412827492, -0.0146980881690979, -0.01795336976647377, 0.008908391930162907, 0.00936367642134428, -0.006552297156304121, -0.011192400939762592, 0.010995111428201199, 0.0005022352561354637, 0.012983185239136219, -0.01663304679095745, -0.013514350168406963, 0.0031281812116503716, 0.015350662171840668, -0.01588941551744938, 0.01761949434876442, -0.008953920565545559, 0.012034676969051361, -0.004370727576315403, 0.03715118393301964, -0.0036593459080904722, -0.004943626467138529, 0.017558790743350983, 0.025328973308205605, 0.01171597745269537, 0.007436307147145271, -0.047076378017663956, 0.003056094516068697, 0.014500798657536507, 0.0021834666840732098, 0.012125733308494091, -0.007542539853602648, 0.016496460884809494, 0.03211270645260811, 0.010350124910473824, 0.012808659113943577, -0.023447131738066673, 0.00712899025529623, 0.023204313591122627, -0.0022024367935955524, 0.00250216550193727, -0.004086175002157688, -0.01898534782230854, -0.025920841842889786, -0.00536097027361393, -0.0044693723320961, -0.007011375389993191, 0.0012216790346428752, 0.01105581596493721, -0.00023250315280165523, 0.03727259114384651, -0.007481835316866636, 0.012186437845230103, -0.00207343976944685, 0.021838460117578506, 0.013916517607867718, -0.0068558198399841785, -0.014637383632361889, -0.00747804157435894, 0.029456881806254387, -0.024995097890496254, -0.010403241962194443, -0.023598892614245415, -0.007216252852231264, -0.010623295791447163, -0.009098093956708908, 0.027241164818406105, 0.011002698913216591, 0.022931143641471863, 0.03718153387308121, -0.025192387402057648, 0.015236841514706612, -0.013423292897641659, -0.013142534531652927, -0.01094199437648058, -0.0019842798355966806, 0.0026672061067074537, -0.007011375389993191, 0.003833871567621827, -0.007075873669236898, -0.022840086370706558, 0.009333324618637562, 0.023826533928513527, -0.0014901069225743413, -0.006886172108352184, -0.007975059561431408, 0.0012321126414462924, 0.0007080616196617484, -0.01890946738421917, -0.02733222208917141, -0.0066585298627614975, 0.011632508598268032, -0.001344036660157144, 0.021990222856402397, 0.0002653452684171498, 0.006392947863787413, -0.005736579652875662, 0.014022750779986382, 0.009401616640388966, 0.01939510367810726, 0.024236289784312248, -0.01725526712834835, -0.0010518960189074278, 0.007557716220617294, 0.009560965932905674, -0.014235216192901134, 0.021565290167927742, 0.010221128351986408, 0.006692676339298487, -0.0022214071359485388, -0.01015283539891243, 0.01261895801872015, 0.0011277766898274422, 0.016906216740608215, -0.036513786762952805, 0.018742529675364494, -0.012983185239136219, -0.013886164873838425, -0.019562039524316788, 0.013749579899013042, -0.020730603486299515, -0.0008987118490040302, -0.025905665010213852, 0.004939832724630833, 0.01960756815969944, -0.00322872307151556, 0.017209738492965698, 0.0016086704563349485, 0.00422275997698307, 0.03308397904038429, -0.01640540361404419, -0.021823285147547722, -0.009841724298894405, -0.0028986420948058367, 0.020836835727095604, -0.006787527352571487, -0.0312628410756588, 0.008733866736292839, -0.025070978328585625, 0.0319305919110775, -0.018560415133833885, -0.013999986462295055, -0.02755986526608467, 0.01305906567722559, 0.01780160889029503, -0.006419505923986435, -0.004750130698084831, 0.010160423815250397, 0.027059052139520645, -0.0009722212562337518, -0.030048750340938568, 0.009925193153321743, 0.003082652809098363, -0.0051143579185009, 0.011708389967679977, -0.0044693723320961, 0.00312249013222754, 2.1756415662821382e-05, 0.013688875362277031, 0.02854631282389164, -0.027438456192612648, -0.012178849428892136, 0.009044977836310863, 0.004985360894352198, -0.006157717667520046, -1.4072013982513454e-05, -0.0008346875547431409, 0.013461233116686344, -0.015335486270487309, 0.008248230442404747, 0.0070417276583611965, -0.007280751597136259, -0.015919767320156097, -0.030215688049793243, -0.02707422897219658, 0.006518150679767132, 0.0036555519327521324, -0.027833035215735435, -0.000942343263886869, -0.010790233500301838, -0.00503088952973485, -0.019167460501194, -0.012725191190838814, -0.002705146325752139, 0.001520459190942347, -0.0036953892558813095, -0.019698625430464745, -0.002356095239520073, 7.173095946200192e-05, -0.0028701869305223227, -0.009826548397541046, 0.009356088005006313, -0.0067799389362335205, 0.010190775617957115, 0.0018334670457988977, -0.011450394988059998, -0.023265017196536064, 0.005717609543353319, -0.010350124910473824, -0.009196738712489605, 0.01640540361404419, 0.006256362423300743, -0.0002539631677791476, -0.008225466124713421, -0.004761512856930494, -0.0278178583830595, -0.024114880710840225, -0.0052699134685099125, 0.002836040686815977, -0.0016191040631383657, 0.014667736366391182, 0.02774197794497013, -0.014485622756183147, 0.007508393842726946, 0.003621405689045787, 0.011245517060160637, 0.0007910561398603022, 0.010699176229536533, -0.011313810013234615, -0.003723844652995467, -0.016921391710639, -0.006859614048153162, -0.02725634165108204, -0.021534938365221024, 0.00794470775872469, 0.005167474504560232, 0.0075728921219706535, -8.69070936460048e-05, 0.02376583032310009, -0.015115432441234589, 0.01263413392007351, -0.006692676339298487, -0.0054558212868869305, 0.021170711144804955, 0.007830886170268059, 0.02247585915029049, -0.008779395371675491, 0.02991216629743576, -0.006009750068187714, -0.003380484413355589, -0.0017158519476652145, 0.02148940972983837, 0.012110557407140732, -0.018196187913417816, 0.01931922137737274, 0.0127631314098835, 0.024448756128549576, 0.014364213682711124, -0.00589592894539237, -0.005417881067842245, 0.012945245020091534, -0.0151761369779706, -0.02038155123591423, -0.010812997817993164, -0.04143085330724716, -0.011981559917330742, -0.017194563522934914, 0.002543899929150939, 0.0023902414832264185, -0.005015713162720203, -0.010114895179867744, 0.0018666648538783193, 0.021383177489042282, -0.00328373652882874, -0.0061842757277190685, -0.02443358115851879, 0.002515444764867425, 0.016101881861686707, 0.016860688105225563, 0.023674773052334785, 0.008339286781847477, 0.005433056969195604, -0.0029384794179350138, -0.004890509881079197, -0.007967472076416016, 0.014265568926930428, 0.0037352265790104866, 0.00993278156965971, -0.023280194029211998, -0.011306221596896648, -0.015123019926249981, -0.014022750779986382, -0.0020563665311783552, 0.01971380226314068, -0.01761949434876442, 0.007428719196468592, 0.01717938669025898, 0.007227635011076927, -0.0017689684173092246, 0.003162327455356717, -0.021383177489042282, -0.0027013523504137993, 0.01028183288872242, -0.00041520962258800864, 0.017786432057619095, 0.017862312495708466, -0.010592943988740444, -0.0050384774804115295, -0.0023883446119725704, 0.014424918219447136, 0.008134409785270691, -0.01028183288872242, -0.0008474923670291901, 0.009394029155373573, -0.012011912651360035, -0.004378315526992083, -0.013339824043214321, 0.015418955124914646, -0.00020037243666592985, -0.010023838840425014, -0.024919217452406883, -0.00047852256102487445, 0.014364213682711124, 0.0009266928536817431, 0.002168290549889207, 0.010069366544485092, -0.029790757223963737, -0.004055822733789682, 0.003192679723724723, 0.011746330186724663, -1.969637378351763e-05, 0.0075615099631249905, -0.02461569383740425, -0.0019634126219898462, 0.014295920729637146, 0.0020696455612778664, -0.014652560465037823, -0.002610295545309782, -0.0021189681719988585, -0.025814609602093697, -0.01777125708758831, -0.0014094837242737412, 0.0037352265790104866, 0.00937885232269764, 0.021276943385601044, -0.008969096466898918, 0.008050940930843353, 0.011230341158807278, -0.0007165982387959957, 0.005766931921243668, -0.00384904770180583, 0.018514886498451233, 0.037879638373851776, 0.006070454604923725, -0.004393491428345442, 0.010471533983945847, -0.00969755183905363, -0.002676691161468625, -0.008688338100910187, -0.010866113938391209, -0.007121402304619551, -0.023568540811538696, 0.002669102977961302, 0.003979941830039024, 0.008415168151259422, -0.009743079543113708, -0.001911244704388082, 0.003714359598234296, 0.013089418411254883, -0.0077018896117806435, 0.0027260135393589735, -0.005186444614082575, 0.040672045201063156, -0.00446178438141942, 0.01179185789078474, -0.01754361391067505, 0.0036650369875133038, 0.019046051427721977, 0.01648128405213356, 0.01986556313931942, 0.018150659278035164, 0.0033444410655647516, -0.01567694917321205, 0.006180481519550085, -0.009545790031552315, 0.009834136813879013, -0.01037288922816515, 0.012057440355420113, -0.0031433573458343744, -0.005505143664777279, -0.003391866572201252, -0.013119770213961601, 0.006681294180452824, -0.01890946738421917, 0.006833055522292852, -0.01875770464539528, 0.00963684730231762, -0.037909988313913345, 0.004412462003529072, -0.003211650066077709, 0.048472579568624496, -0.011958795599639416, -0.016435755416750908, 0.025070978328585625, 0.014538738876581192, 0.011928443796932697, 0.015365839004516602, 0.028424903750419617, -0.014356625266373158, 0.001507180044427514, -0.0030750646255910397, -0.0052243852987885475, 0.017710551619529724, 0.006434681825339794, 0.0145311513915658, 0.01236096303910017, 0.017998898401856422, -0.026588592678308487, -0.004886716138571501, -0.02159564197063446, -0.016390228644013405, 0.012239553965628147, -0.004757719114422798, 0.012452020309865475, -0.011875326745212078, -0.0015005405293777585, 0.006544709205627441, 0.02582978457212448, -0.003945795353502035, 0.007409748621284962, 0.011586980894207954, 0.03256798908114433, 0.009750667959451675, 0.0227035004645586, -0.03414630889892578, -0.011306221596896648, 0.018332773819565773, -0.008126821368932724, -0.008217877708375454, 0.0040596164762973785, -0.0010964758694171906, -0.013226003386080265, 0.005452027078717947, -0.0004128383588977158, 0.0018609737744554877, -0.000740310933906585, 0.007223841268569231, -0.005262325517833233, -0.02358371578156948, -0.005398910492658615, -0.012133321724832058, 0.00042588033829815686, -0.015418955124914646, 0.023750653490424156, -0.043646570295095444, -0.007182106841355562, -0.020594017580151558, -0.01083576213568449, -0.019228165969252586, -0.010312184691429138, 0.0036593459080904722, 0.009340912103652954, 0.017725728452205658, 0.011890503577888012, 0.03171812742948532, 0.018666649237275124, 0.009037389419972897, -0.029745228588581085, -0.015517599880695343, 0.002585634356364608, 0.019304046407341957, -0.005558260250836611, -0.00892356876283884, 0.012482372112572193, -0.002625471679493785, 0.004074792843312025, 0.013036301359534264, 0.008278582245111465, -0.009136034175753593, 0.016420580446720123, -0.006282920483499765, -0.023826533928513527, -0.018347948789596558, -0.0013819769956171513, 0.012178849428892136, -0.0075273639522492886, -0.008286170661449432, -0.006647148169577122, 0.02066989801824093, -0.0036157146096229553, -0.020290495827794075, 0.007519776001572609, 0.017482910305261612, 0.004920862149447203, 0.007508393842726946, 0.004389697685837746, -0.023750653490424156, 0.006108395289629698, 0.005061241798102856, -0.02740810252726078, 0.013741991482675076, 0.016966920346021652, 0.009219503030180931, -0.013620582409203053, 0.0015697816852480173, -0.010243892669677734, 0.011268281377851963, 0.026588592678308487, 0.016314346343278885, -0.0010281832655891776, 0.00927262008190155, -0.004788071382790804, 0.014781557023525238, -0.00802058819681406, 0.0009864488383755088, 0.005326824262738228, 0.014356625266373158, 0.003403248731046915, -0.012345787137746811, -0.010342537425458431, -0.010327361524105072, -0.01942545548081398, -0.004924656357616186, 0.0064157117158174515, -0.010987523011863232, -0.010995111428201199, 0.016921391710639, -0.008612457662820816, 0.0162991713732481, -0.00844551995396614, -0.0017111094202846289, 0.019334398210048676, -0.007618420757353306, -0.0034487771335989237, -0.009993486106395721, -0.006878584157675505, -0.007189694792032242, 0.026072602719068527, 0.0018799440003931522, 0.0005183599423617125, 0.013127358630299568, -0.02674035355448723, 0.0009660559589974582, 0.0008531834464520216, 0.0035872594453394413, 0.00446178438141942, 0.004139291122555733, 0.0151761369779706, 0.007876414805650711, 0.014455270022153854, 0.005524113774299622, -0.0013117872877046466, -0.010031426325440407, 0.012216790579259396, -0.0014853643951937556, 0.0007578583317808807, -0.002744983648881316, -0.01588941551744938, 0.006085630971938372, -0.017057977616786957, 0.006468828301876783, 0.011237929575145245, 0.014455270022153854, 0.008225466124713421, 0.005770726129412651, -0.013597819022834301, -0.009576142765581608, 0.009750667959451675, 0.008832511492073536, -0.009553378447890282, 0.00567587511613965, 0.006757175084203482, 0.003727638628333807, -0.0032230319920927286, 0.0084606958553195, -0.004807041492313147, -0.004480754490941763, 0.006241186056286097, -0.01761949434876442, 0.00352655490860343, -0.017346324399113655, 0.014015162363648415, 0.013203239068388939, -0.025450382381677628, 0.011784270405769348, -0.0003068425285164267, -0.010744704864919186, 0.005285089835524559, 0.0008270994294434786, 0.019911091774702072, 0.006089424714446068, -0.019364750012755394, 0.025586966425180435, 0.004624927882105112, -0.005918693263083696, 0.0008455953793600202, -0.004541459027677774, -0.010160423815250397, 0.0331750363111496, -0.01632952317595482, -0.006749586667865515, -0.005770726129412651, -0.0002463751006871462, -0.0043555512093007565, -0.0075159817934036255, -0.008028176613152027, 0.012960420921444893, -0.004613545723259449, -0.002464225282892585, 0.01283901184797287, 0.014030338265001774, -0.02097342163324356, -0.003672625171020627, -0.005721403751522303, -0.007197282742708921, -0.008908391930162907, 0.008324110880494118, 0.004070998635143042, -0.010418417863547802, 0.0002128216001437977, 0.004192407708615065, -0.00446178438141942, -0.0013905134983360767, -0.008475872687995434, 0.010904054157435894, 0.006373977288603783, 0.004556634929031134, 0.010570179671049118, -0.0020639547146856785, 0.011852562427520752, -0.0019463395001366735, 0.016390228644013405, 0.00971272774040699, 0.0060628666542470455, -0.012793483212590218, 0.013521937653422356, -0.007607038598507643, 0.007743624038994312, 0.006165305618196726, 0.02221786417067051, -0.001857179799117148, 0.0028493197169154882, -0.01780160889029503, 0.02405417710542679, -0.0020373964216560125, -0.007785358000546694, -0.006726822815835476, 0.01119998935610056, 0.001211245427839458, -0.0016371257370337844, 0.020351199433207512, 0.025222739204764366, 0.006514356937259436, -0.005505143664777279, 0.012231966480612755, -0.0002639224985614419, 0.020548488944768906, -0.01438697800040245, 0.0047197784297168255, 0.012884540483355522, 0.003378587542101741, -0.016314346343278885, -0.020138733088970184, 0.009075329639017582, 0.01063088420778513, 0.011435219086706638, 0.010418417863547802, 0.0037105653900653124, -0.0019027082016691566, 0.014933318831026554, -0.023158784955739975, -0.005486173555254936, -0.005364764481782913, 7.433936116285622e-05, 0.005793490447103977, 0.028713250532746315, 0.0017196460394188762, -0.004693220369517803, 0.012990772724151611, -0.009993486106395721, 0.00724660512059927, 0.0037466087378561497, -0.007644978817552328, 0.010160423815250397, -0.005349588114768267, 0.007959883660078049, 0.0028720838017761707, -0.021686699241399765, -0.014614620245993137, -0.003431703895330429, -0.009485085494816303, -0.025222739204764366, 0.014250392094254494, 0.02265797182917595, -0.006021132227033377, -0.03275010362267494, 0.012315435335040092, 0.03715118393301964, -0.0024718132335692644, 0.010107306763529778, -0.0026008104905486107, -0.012884540483355522, 0.02048778533935547, -0.03542110323905945, -0.012778307311236858, 0.00578590203076601, 0.01079782098531723, -0.01050188671797514, -0.007861238904297352, 0.00927262008190155, -0.0033975576516240835, 0.0029934931080788374, 0.034449830651283264, 0.02828831970691681, 0.005801078397780657, 0.007064491510391235, 0.009211914613842964, 0.007110020145773888, -0.0011808931594714522, 0.006575061473995447, 0.0194558072835207, 0.007846063002943993, -0.007466659415513277, -0.02766609750688076, -0.019850386306643486, 0.008278582245111465, 0.010972347110509872, -0.00045054155634716153, 0.00033411214826628566, 0.0037447118666023016, -0.007079667877405882, 0.004450402222573757, 0.018636295571923256, 0.0070986379869282246, 0.009689963422715664, -0.014660147950053215, -0.017482910305261612, 0.003378587542101741, -0.008536577224731445, 0.0019254724029451609, -0.018697001039981842, -0.0012577223824337125, -0.01710350625216961, 0.031171785667538643, -0.014151747338473797, 0.01960756815969944, 0.001668426557444036, -0.007952296175062656, -0.006423300132155418, -0.013446057215332985, 0.013749579899013042, -0.010479122400283813, -0.0002459008537698537, 0.010866113938391209, -0.004283464513719082, 0.0023750653490424156, -0.01670892722904682, 3.722896144608967e-05, -0.019653096795082092, -0.0029119213577359915, -0.008582104928791523, -0.021034125238656998, 0.00985690113157034, 0.007326280232518911, -0.012444431893527508, 0.0048411875031888485, -0.03675660490989685, 0.01057776715606451, 0.002680485136806965, 0.0013478306354954839, 0.009750667959451675, 0.004215172026306391, 0.009538201615214348, -0.021732227876782417, -0.0016750660724937916, 0.005072623956948519, -0.0017727625090628862, 0.05168992280960083, 0.005440644919872284, 0.024160409346222878, -0.006506768520921469, 0.010987523011863232, -0.010691588744521141, 0.0016589415026828647, -0.00780812231823802, -0.003496202640235424, -0.02678588218986988, -0.0052054147236049175, -0.010471533983945847, 0.022931143641471863, 0.02004767768085003, 0.0038130043540149927, -0.013696463778614998, -0.005615170579403639, 0.01475120522081852, 0.025814609602093697, 0.00923467893153429, -0.00985690113157034, 0.00656747305765748, -0.017892666161060333, 0.003257178468629718, 0.012755542993545532, -0.008111645467579365, -0.0015460689319297671, -0.009371264837682247, -6.372791540343314e-05, 0.008726278319954872, 0.002314360812306404, 0.0026008104905486107, -0.0026463388931006193, -0.004659073892980814, -0.009424380958080292, 0.01072194054722786, 0.013301883824169636, 0.0024016236420720816, 0.0007018963224254549, -0.004298640880733728, -0.006400535814464092, -0.021398352459073067, 0.015418955124914646, 0.010031426325440407, -0.026664473116397858, -0.009545790031552315, 0.008134409785270691, 0.005190238822251558, 0.012452020309865475, -0.008908391930162907, 0.00645744614303112, 0.012945245020091534, -0.011245517060160637, 0.007022757548838854, 0.009462321177124977, 0.006286714691668749, 0.007159342523664236, 0.0035455250181257725, -0.006495386362075806, -0.0021720845252275467, -0.012649309821426868, -0.005808666348457336, 0.012770718894898891, 0.019562039524316788, -0.011298634111881256, 0.01526719331741333, -0.03205200284719467, -0.006279126740992069, 0.002314360812306404, 0.00031419345759786665, 0.014781557023525238, -0.015130608342587948, 0.010509475134313107, -0.01939510367810726, -0.003805416403338313, -0.007534951902925968, -0.02678588218986988, -0.006317066960036755, -0.0029157153330743313, 0.016177762299776077, -0.013772344216704369, 0.0011752020800486207, 0.012292671017348766, -0.02332572266459465, -0.019546864554286003, 0.0035455250181257725, 0.011002698913216591, 0.002477504312992096, -0.0012852291110903025, 6.632149620600103e-07, -0.021914342418313026, -0.0053344122134149075, 0.0003334007633384317, 0.01684551127254963, -0.00014369904238265008, -0.015570716001093388, -0.02479780837893486, 4.967813583789393e-05, 0.001115446095354855, -0.011382102966308594, 0.018514886498451233, 0.0023105668369680643, 0.004423843696713448, -0.009394029155373573, -0.009128446690738201, -0.02409970574080944, -0.003568289102986455, 0.010866113938391209, 0.006286714691668749, 0.010334949009120464, -0.010608119890093803, -0.003953383769840002, -0.007542539853602648, 0.003555010072886944, 0.004734954796731472, 0.031323544681072235, -0.0048411875031888485, -0.0038281804881989956, 0.012558253481984138, 0.005493761505931616, -0.023887239396572113, -5.901501572225243e-05, 0.021686699241399765, 0.0004450876440387219, 0.004985360894352198, 0.0014550121268257499, 0.0031243872363120317, 0.01802925020456314, -0.006301891058683395, 0.0178774893283844, -0.007512187585234642, -0.010274244472384453, 0.005178856663405895, 0.007443895097821951, 0.01596529595553875, 0.006408123765140772, 0.01927369460463524, -0.0018372610211372375, 0.0162991713732481, -0.010251480154693127, -0.012042264454066753, 0.024372875690460205, 0.013969633728265762, 0.0057100215926766396, 0.019288869574666023, -0.0075159817934036255, -0.023007024079561234, 0.011412454769015312, 0.0074590714648365974, -0.002638750709593296, 0.004586987197399139, -0.02888018824160099, 0.0011752020800486207, 0.008301346562802792, -0.01578318141400814, 0.008141997270286083, 0.014948494732379913, 0.020912716165184975, -0.018818410113453865, 0.0037200504448264837, -7.92597493273206e-05, 0.0020070441532880068, -0.003991323988884687, 0.006188069935888052, -0.0016997273778542876, -0.003716256469488144, 0.0007569098379462957, -0.0002890579926315695, 0.0008199856383726001, -0.016314346343278885, -0.006571267265826464, 0.0012472887756302953, -0.005019507370889187, 0.0028625987470149994, -0.013491585850715637, 0.00624498026445508, -0.009765843860805035, -0.0020658515859395266, -0.018196187913417816, -0.006229804363101721, 0.00023001332010608166, 0.020002149045467377, 0.01710350625216961, -0.02872842736542225, 0.015297546051442623, 0.012831423431634903, -0.006241186056286097, 0.00016444767243228853, -0.005144710186868906, 0.0025097536854445934, 0.010782645083963871, 0.020184261724352837, -0.011298634111881256, -0.011442807503044605, 0.003080755705013871, 0.010001074522733688, -0.016678573563694954, -0.024221114814281464, -0.02707422897219658, 0.009257443249225616, 0.004886716138571501, 0.012011912651360035, -0.01604117639362812, 0.0008854327606968582], "8ed46f10-7f86-45c1-bef1-178a05b08468": [-0.027265515178442, -0.0020931712351739407, -0.015683703124523163, 0.01402686070650816, -0.03238081559538841, -0.01282846461981535, -0.013841873034834862, 0.04127628728747368, -0.001001846743747592, 0.013166267424821854, -0.008372684940695763, 0.008420942351222038, -0.0022560404613614082, -0.02128157764673233, -0.015900861471891403, 0.020493371412158012, -0.032461244612932205, 0.011734627187252045, 0.0067439922131598, -0.016455823555588722, 0.0399894192814827, -0.011485296301543713, -0.02411268837749958, -0.016664939001202583, 0.00317896599881351, 0.00411797733977437, -0.022745391353964806, -0.0051193214021623135, -0.04616638645529747, 0.00285121682099998, -0.008975903503596783, 0.0271689984947443, 0.030402254313230515, -0.027973292395472527, 0.0005876361974515021, -0.032541673630476, -0.002607918344438076, -0.012498704716563225, 0.01298128068447113, -0.027555059641599655, -0.04063285514712334, 0.016198450699448586, -0.009474565275013447, 0.0012999377213418484, -0.03448805958032608, 0.010874033905565739, 0.025463899597525597, -0.004882055334746838, -0.04864360764622688, -0.020332513377070427, 0.01997862383723259, 0.04256315529346466, -0.04571598395705223, 0.009080462157726288, 0.021780239418148994, -0.047646284103393555, 0.004479908850044012, 0.08802177011966705, -0.0060241506434977055, -0.0626382976770401, -0.015193084254860878, -0.015796303749084473, 0.009514779783785343, -0.020799003541469574, -0.01602954789996147, -0.02464352175593376, 0.003914893604815006, -0.007600563578307629, -0.013246696442365646, 0.0017815077444538474, -0.0222628153860569, 0.004270792938768864, -0.04790366068482399, 0.013391469605267048, 0.012426318600773811, -0.011493339203298092, 0.05588224157691002, -0.005963828414678574, 0.0020127419847995043, 0.017742691561579704, -0.03283121809363365, 0.024386147037148476, 0.021136805415153503, 0.0007716180989518762, 0.06582329422235489, -0.003261405974626541, -0.01517699845135212, -0.048611436039209366, -0.030193138867616653, -0.006997344549745321, 0.010994678363204002, 0.02052554301917553, -0.04536209627985954, 0.008111289702355862, 0.024723950773477554, 0.017646176740527153, 0.008171611465513706, 0.02095986157655716, 0.020589886233210564, -0.02173198200762272, -0.018305696547031403, 0.010431673377752304, -0.0181126669049263, 0.013077795505523682, 0.017967892810702324, -0.001984591595828533, -0.013656886294484138, -0.013069752603769302, -0.009450436569750309, 0.008525500074028969, 0.0014135439414530993, -0.03986073285341263, -0.020235998556017876, 0.0005469188909046352, -0.017935721203684807, -0.016407566145062447, -9.620092168916017e-05, -0.01832178235054016, -0.013238653540611267, -0.05749082565307617, 0.04809669032692909, 0.04224143922328949, -0.03135132044553757, -0.03281513229012489, 0.012506747618317604, 0.0023002764210104942, 0.03371594101190567, 0.01931910403072834, 0.00673997076228261, -0.011654198169708252, -0.007946409285068512, -0.0032191805075854063, 0.024305718019604683, 0.025238696485757828, 0.0006223212694749236, 0.011605939827859402, 0.05005916208028793, 0.04748542606830597, -0.04111542925238609, 0.07914237678050995, -0.0375443734228611, -0.01347994152456522, 0.020010795444250107, 0.011356609873473644, 0.0017664273036643863, 0.008983946405351162, -0.04475083202123642, 0.03960335999727249, 0.0012526855571195483, 0.03212343901395798, -0.022118043154478073, -0.03276687487959862, -0.005541575141251087, 0.0003189522249158472, -0.008726573549211025, -0.027426373213529587, 0.054080624133348465, 0.0196247361600399, 0.019286932423710823, 0.030756143853068352, -0.0012436371762305498, -0.035292353481054306, 0.025126095861196518, 0.024820465594530106, 0.018804358318448067, 0.02160329557955265, 0.06601632386445999, 0.027571145445108414, 0.0009390114573761821, 0.016520166769623756, 0.02391965687274933, 0.0051193214021623135, 0.006792249623686075, 0.010230599902570248, -0.0022218578960746527, -0.0033438459504395723, 0.03963553160429001, 0.02663816697895527, 0.020782917737960815, -0.021040290594100952, -0.004234599880874157, 0.00965150911360979, -0.028729327023029327, -0.014219890348613262, 0.016109978780150414, 0.01245044730603695, -0.010222557000815868, 0.025254782289266586, -0.0009118665475398302, -0.005408866796642542, -0.029308417811989784, 0.005111278500407934, 0.025801701471209526, 0.015659574419260025, -7.791582902427763e-05, -0.018418297171592712, -0.011380738578736782, -0.013777529820799828, 0.01910998858511448, 0.027764175087213516, -0.027699831873178482, -0.047968003898859024, -0.07676167041063309, 0.028858013451099396, -0.017726605758070946, 0.035099323838949203, 0.0090080751106143, -0.03371594101190567, 0.040858056396245956, -0.004089827183634043, 0.058874208480119705, -0.047324568033218384, 0.012643477879464626, 0.0003332787018734962, -0.009949097409844398, 0.020782917737960815, -0.0209437757730484, 0.029308417811989784, -0.010737304575741291, -0.03146392107009888, -0.0172601155936718, 0.003955108113586903, -0.029437104240059853, -0.00497052725404501, -0.039442501962184906, -0.04166235029697418, -0.019174331799149513, 0.049608759582042694, -0.010013441555202007, 0.000667060085106641, 0.00778152933344245, -0.005927635356783867, -0.020879432559013367, -0.045008204877376556, -0.010721218772232533, -0.002525478368625045, 0.004648810252547264, 0.006784206721931696, 0.01375340111553669, 0.003199073253199458, 0.009402179159224033, 0.01594911888241768, -0.006623348221182823, 0.024965237826108932, 0.017967892810702324, 0.03969987481832504, 0.013552327640354633, 0.01680971309542656, -0.015418286435306072, -0.005091171246021986, 0.028101978823542595, 0.020252084359526634, -0.005473210010677576, -0.004713153932243586, -0.020895518362522125, 0.012949108146131039, 0.0003292572218924761, -0.02380705624818802, 0.002935667522251606, -0.017758777365088463, 0.01713142916560173, -0.0004946398548781872, -0.008975903503596783, 0.047549769282341, 0.03135132044553757, 0.006860614754259586, 0.02194109745323658, -0.010182342492043972, -0.0038988078013062477, 0.058230772614479065, -0.0129249794408679, -0.0021152892149984837, 0.03304033353924751, -7.15694623067975e-05, 0.009538908489048481, -0.006526833400130272, -0.0034142215736210346, -0.0025093925651162863, -0.023630112409591675, 0.008927646093070507, -0.015144826844334602, 0.02420920319855213, 0.016536252573132515, -0.003251352347433567, -0.0018941087182611227, -0.0036695844028145075, -0.03947467356920242, 0.031608693301677704, -0.029115386307239532, -0.02105637639760971, 0.003010064596310258, -0.02847195230424404, 0.014075118117034435, 0.03397331386804581, 0.024273546412587166, 0.02369445562362671, 0.0013652864145115018, -0.008477242663502693, -0.02303493581712246, 0.004660874605178833, 0.010262771509587765, -0.0069691939279437065, -0.01986602321267128, -0.031383492052555084, 0.041726693511009216, -0.02576952986419201, 0.03086874447762966, 0.014388792216777802, -0.0375443734228611, 0.008332469500601292, 0.045876841992139816, -0.027442459017038345, -0.015265471301972866, 0.004302964545786381, -0.00824399758130312, 0.015112655237317085, 0.02071857452392578, 0.03252558782696724, -0.013520156033337116, -0.051024314016103745, 0.00616088043898344, 0.0019564414396882057, -0.03416634351015091, 0.029903594404459, 0.0333942212164402, -0.0316891223192215, 0.020541628822684288, 0.00890351738780737, 0.00047981072566471994, -0.03635402023792267, -0.02030034177005291, -0.026026904582977295, -0.01559523120522499, 0.010013441555202007, -0.027104655280709267, -0.024080516770482063, -0.02588213048875332, -0.03035399690270424, -0.02446657605469227, -0.023549683392047882, -0.009965183213353157, 0.0008319400367327034, 0.004238621331751347, -0.025270869955420494, 0.023871399462223053, -0.00458044558763504, 0.026252105832099915, -0.011067064478993416, -0.027426373213529587, 0.011010764166712761, 0.0009892797097563744, -0.013841873034834862, 0.019270846620202065, 0.0047694542445242405, 0.026026904582977295, -0.01232176087796688, -0.03577492758631706, 0.012000043876469135, -0.007158203050494194, -0.019705165177583694, 0.013230610638856888, -0.030740058049559593, -0.024965237826108932, 0.0207507461309433, -0.009868668392300606, 0.040665026754140854, -0.020975947380065918, -0.02663816697895527, -0.023839227855205536, 0.010447759181261063, -0.04166235029697418, 0.005364630836993456, 0.023758798837661743, 0.020895518362522125, -0.04841840639710426, -0.02224672958254814, 0.06186617538332939, 0.005477231461554766, -0.012490661814808846, 0.025335213169455528, -0.02248801663517952, 0.016198450699448586, 0.01320648193359375, 0.02609124779701233, 0.05391976609826088, 0.0028914313297718763, 0.01560327410697937, -0.0007942388183437288, -0.02194109745323658, 0.0035087259020656347, -0.027088569477200508, -0.0005449081654660404, 0.009482608176767826, -0.00635793199762702, -0.00551342498511076, 0.006748013664036989, -0.03000010922551155, -0.0014075117651373148, -0.007451769430190325, -0.020139483734965324, -0.006434339564293623, 0.02335665374994278, -0.013536241836845875, 0.018064409494400024, 0.007680993061512709, -0.023372739553451538, -0.03332987800240517, -0.0020298331510275602, -0.010938377119600773, 0.021989356726408005, 0.009756067767739296, 0.012185030616819859, 0.01271586399525404, -0.0001892600703286007, 0.05556052178144455, 0.005067042540758848, 0.036160990595817566, 0.03221995756030083, -0.0526328980922699, -0.02446657605469227, 0.06443991512060165, 0.07090642303228378, -0.00928153470158577, -0.011919613927602768, 0.012514790520071983, 0.005525489337742329, -0.008919603191316128, 0.03976421803236008, -0.00982041098177433, 0.000890251190867275, -0.015160912647843361, 0.026766853407025337, -0.015193084254860878, -0.017388803884387016, 0.008042925037443638, -0.015160912647843361, 0.01671319641172886, 0.008252040483057499, 0.002304297871887684, -0.02213412895798683, -0.011107278987765312, 0.025029581040143967, -0.0038083246909081936, -0.012595219537615776, -0.026799025014042854, -0.009072419255971909, -0.04909401014447212, -0.0016126063419505954, 0.02412877418100834, 0.013809701427817345, 0.01298932358622551, 0.027635488659143448, -0.058134257793426514, -0.006502704694867134, -0.0011501382105052471, -0.008308340795338154, -0.009450436569750309, -0.022874077782034874, 0.018482640385627747, -0.03928164392709732, -0.052665069699287415, -0.002913549542427063, 0.027265515178442, -0.025624757632613182, 0.001356238150037825, -0.03953901678323746, 0.012587176635861397, 0.02847195230424404, 0.013311040587723255, 0.0048498837277293205, 0.003261405974626541, 0.015683703124523163, 0.0008791922009550035, 0.049254871904850006, 0.007234610617160797, -0.009876711294054985, -0.03250950202345848, -0.01593303307890892, -0.020992033183574677, -0.01931910403072834, -0.0033418352250009775, -0.027233343571424484, -0.013447769917547703, 0.02498132362961769, 0.008095203898847103, -0.019270846620202065, -0.030627457424998283, -0.0039028292521834373, 0.03175346553325653, 0.0026984012220054865, 0.07978580892086029, -0.009426307864487171, 0.0025274890940636396, 0.017115343362092972, -0.015000054612755775, 0.01167832687497139, -0.014871367253363132, -0.024096602573990822, 0.004660874605178833, -0.03310467675328255, 0.0360323004424572, -0.02607516199350357, -0.015289600007236004, -0.004709132481366396, 0.006321738939732313, -0.0019091892754659057, -0.031174376606941223, 0.043270934373140335, -0.01635126583278179, -0.04430042952299118, -0.030482683330774307, 0.0038143571000546217, -0.025721272453665733, -0.0020891495514661074, -0.0028029591776430607, 0.012530876323580742, 0.023742713034152985, 0.01319843903183937, 0.008276169188320637, 0.02290624938905239, -0.0020258117001503706, -0.010672961361706257, 0.0020157580729573965, 0.005352566484361887, -0.03045051172375679, -0.01413946133106947, -0.04516906291246414, -0.04549078270792961, 0.03316901996731758, -0.030418340116739273, -0.012209159322082996, 0.004753368441015482, -0.01543437223881483, 0.028536295518279076, 0.031174376606941223, 0.019914280623197556, -0.02729768678545952, -0.0005549617926590145, -0.0007801636820659041, 0.007741314824670553, -0.009120676666498184, 0.0386703796684742, 0.006494661793112755, -0.01845046877861023, -0.00021414287039078772, 0.024965237826108932, 0.012402189895510674, -0.0024892850778996944, 0.011983958072960377, 0.01766226254403591, -0.03035399690270424, -0.01658450998365879, -0.013978603295981884, 0.013616671785712242, 0.006828443147242069, -0.06884743273258209, 0.0025918325409293175, -0.00030889856861904263, 0.002378694945946336, -0.00992496870458126, -0.02750680223107338, 0.021538952365517616, 0.005855249240994453, 0.021426351740956306, -0.008207804523408413, -0.017083171755075455, 0.0019504092633724213, 0.020895518362522125, -0.020477285608649254, 0.00682442169636488, 0.03146392107009888, 0.0031427727080881596, 0.016938399523496628, -0.02017165534198284, 0.008911560289561749, 0.01635930873453617, -0.00701343035325408, 0.02326013706624508, -0.036836594343185425, -0.012233288027346134, 0.002535531995818019, -0.02478829398751259, 0.027973292395472527, -0.0016558370552957058, 0.02650947868824005, 0.030627457424998283, -0.009756067767739296, -0.047195881605148315, 0.006072408054023981, 0.012361975386738777, 0.005207793787121773, 0.014099246822297573, 0.011461167596280575, -0.007753379177302122, -0.01988210901618004, 0.010986634530127048, 0.013817744329571724, 0.0011752723949030042, -0.00033805417479015887, -0.002073063747957349, -0.008095203898847103, 0.0209437757730484, 0.010166256688535213, -0.015796303749084473, -0.011316394433379173, 0.03209126740694046, -0.012008086778223515, 0.018723929300904274, -0.02050945721566677, 0.01543437223881483, 0.022455845028162003, -0.01190352812409401, 0.06711016595363617, -0.011485296301543713, 0.048289719969034195, -0.0031186440028250217, 0.029855335131287575, 0.033876799046993256, 0.0001712891535134986, -0.01637539453804493, 0.02564084343612194, -0.046648964285850525, 0.06521203368902206, -0.02464352175593376, 0.016093892976641655, 0.005127364303916693, -0.005875356495380402, -0.013077795505523682, -0.007306997198611498, -0.021474609151482582, -0.013697100803256035, 0.005191707983613014, 0.017742691561579704, -0.03035399690270424, 0.0048498837277293205, 0.007520134560763836, 0.0016126063419505954, 0.024820465594530106, -0.01375340111553669, 0.01964082196354866, -0.02958187647163868, 0.0037399600259959698, -0.015852604061365128, 0.03976421803236008, -0.01102684997022152, -0.009772153571248055, -0.012563047930598259, 0.002268104813992977, 0.06437557190656662, -0.015474586747586727, -0.04954441636800766, -0.03260601684451103, -0.002410866552963853, 0.013383426703512669, 0.017292287200689316, -0.02401617355644703, -0.008099225349724293, 0.030965259298682213, 0.011445081792771816, 0.0035730693489313126, 0.021217234432697296, -0.011107278987765312, -0.009530865587294102, 0.008332469500601292, 0.01402686070650816, 0.018177010118961334, 0.0018368029268458486, 0.0017201805021613836, 0.027040312066674232, 0.05437016859650612, 0.03128697723150253, -0.011155536398291588, 0.026364706456661224, 0.022761477157473564, 0.004230578429996967, -0.01964082196354866, 0.009016118012368679, -0.006390103604644537, 0.023099279031157494, -0.015080483630299568, -0.012780207209289074, -0.01964082196354866, -0.028005464002490044, 0.015522844158113003, -0.006635412573814392, -0.008702444843947887, -0.002766766119748354, 0.032026924192905426, -0.023437082767486572, -0.0038726681377738714, -0.00040164354140870273, 0.00747589860111475, 0.013504070229828358, 0.018514811992645264, 0.005276158452033997, 0.03799477592110634, -0.00011844463006127626, -0.0021394179202616215, -0.010930334217846394, -0.036289677023887634, -0.02663816697895527, -0.027587231248617172, -0.004990634508430958, -0.03458457440137863, -0.007648821454495192, 0.011541596613824368, -0.029404932633042336, -0.01335929799824953, -0.0002499590045772493, 0.011428995989263058, 0.02227890118956566, 0.004435672890394926, 0.00431502889841795, 0.01101880706846714, 0.01624670810997486, 0.031914323568344116, -0.001728223403915763, 0.01085794810205698, 0.009949097409844398, 0.028134150430560112, 0.0065871551632881165, 0.04986613243818283, -0.022311072796583176, -0.02401617355644703, -0.03397331386804581, 0.022616703063249588, -0.008935688994824886, 0.005545596592128277, 0.011774841696023941, 0.01624670810997486, 0.06241309642791748, -0.00994105450809002, -0.010150170885026455, -0.004403501283377409, -0.017163600772619247, -0.01559523120522499, -0.013174310326576233, -0.012900850735604763, 0.057136937975883484, -0.019013473764061928, 0.0399894192814827, -0.007254717871546745, -0.009112633764743805, -0.024064430966973305, 0.0022017506416887045, -0.007367318961769342, 0.01909390278160572, 0.010415587574243546, 0.026589909568428993, 0.010254728607833385, 0.01101880706846714, -0.0298070777207613, 0.038155633956193924, 0.016970571130514145, 0.005296265706419945, -0.011203793808817863, 0.02292233519256115, -0.0011843206593766809, 0.01988210901618004, 0.02488480880856514, -0.0046447888016700745, 0.014203804545104504, -5.413265171227977e-05, -0.02477220818400383, 0.010664918459951878, 0.018177010118961334, 0.009844539687037468, 0.0345202311873436, 0.03429502993822098, -0.013447769917547703, 0.0196247361600399, -0.01282846461981535, -0.004451758693903685, 0.02913147211074829, -0.027329858392477036, -0.027651574462652206, 0.023099279031157494, -0.01035928726196289, -0.05144254490733147, -0.02499740943312645, -0.01294106524437666, -0.023823142051696777, 0.004210471175611019, -0.038702551275491714, 0.03157652169466019, -0.03915295749902725, 0.021538952365517616, 0.028069807216525078, 0.010568402707576752, -0.00016312056686729193, -0.004359265323728323, 0.010246685706079006, -0.006124686915427446, 0.031592607498168945, -0.0048498837277293205, -0.02260061725974083, 0.04288487508893013, -0.02062205784022808, 0.024530919268727303, -0.008581800386309624, 0.02030034177005291, -0.031254805624485016, 0.06482597440481186, 0.05272941291332245, -0.034648917615413666, -0.019142160192131996, 0.006197073496878147, -0.0009450436336919665, -0.02107246220111847, 0.01812875270843506, -0.02030034177005291, -0.018611326813697815, 0.009136762470006943, 0.010117999278008938, -0.013182353228330612, -0.014992011711001396, 0.00024279578065034002, -0.007367318961769342, 0.0030563112813979387, 0.00439545838162303, 0.0009314711787737906, 0.007608606480062008, 0.03022531047463417, 0.00412199879065156, -0.02213412895798683, -0.009096547961235046, -0.011549639515578747, -0.018466554582118988, 0.01616627909243107, -0.014380749315023422, 0.008050967939198017, -0.03162477910518646, -0.010769476182758808, 0.04642375931143761, 0.005497339181602001, 0.002366630593314767, -0.04462214559316635, 0.0030281611252576113, -0.030482683330774307, 0.03690093755722046, -0.02314753644168377, -0.033876799046993256, -0.042080581188201904, -0.021571123972535133, -0.005983935669064522, -0.00747589860111475, 0.01854698359966278, 0.02184458263218403, 0.05533532053232193, 0.03230038657784462, 0.02203761413693428, -0.009514779783785343, 0.008485285565257072, -0.005734605249017477, -0.036933109164237976, -0.0017975936643779278, -0.021748067811131477, 0.009965183213353157, -0.015241341665387154, 0.005634068511426449, 0.006852571852505207, 0.011662241071462631, -0.04333527758717537, -0.002766766119748354, -0.011613982729613781, -0.03712613880634308, -0.006864636205136776, -0.02260061725974083, -0.007041580509394407, -0.010327114723622799, -0.00812737550586462, -0.0025536285247653723, 0.039442501962184906, -0.009675637818872929, -0.013962517492473125, -0.01293302234262228, -0.006116644013673067, -0.008839174173772335, -0.02826283685863018, -0.002873334800824523, 0.008597886189818382, 0.018723929300904274, -0.010624703019857407, 0.004628702998161316, -0.04047199711203575, -0.022294986993074417, 0.03719048202037811, -0.008549628779292107, 0.024740036576986313, -0.004407522734254599, 0.020911604166030884, -0.010166256688535213, -0.012884764932096004, -0.035067152231931686, 0.01037537306547165, -0.022294986993074417, -0.006221202202141285, -0.03067571483552456, -0.030595285817980766, -0.021748067811131477, -0.0027828519232571125, -0.024611350148916245, -0.031238719820976257, 0.01756574772298336, 0.012514790520071983, -0.0375443734228611, 0.01582043245434761, 0.009490651078522205, 0.013013452291488647, 0.016857970505952835, 0.02161938138306141, 0.023533597588539124, -0.010270814411342144, -0.0076126279309391975, 0.030305739492177963, 0.02543172799050808, -0.0003146794333588332, -0.019077816978096962, -0.011855270713567734, -0.01625475101172924, 0.0027004119474440813, 0.018595241010189056, 0.009683681651949883, 0.010021484456956387, -0.02071857452392578, -0.007001366000622511, 0.021651552990078926, -0.002485263627022505, 0.023758798837661743, 0.033136848360300064, -0.006482597440481186, 0.01658450998365879, 0.021458523347973824, 0.027024226263165474, 0.00420242827385664, 0.0041702562011778355, -0.02313145063817501, -0.014075118117034435, -0.031077859923243523, -0.001484924927353859, -0.017597919330000877, 0.004407522734254599, 0.0004413554852362722, -0.0035026937257498503, 0.03157652169466019, -0.02105637639760971, -0.02620384842157364, 0.01364080049097538, 0.013922302052378654, 0.019077816978096962, 0.011525510810315609, 0.02639687806367874, -0.01875610090792179, -0.010246685706079006, 0.00616490188986063, 0.009402179159224033, -0.0026481328532099724, 0.002694379771128297, 0.036611393094062805, -0.006780185271054506, -0.00379424961283803, 0.0117909274995327, -0.00027119735023006797, 0.0013672971399500966, -0.022005442529916763, 0.016777541488409042, -0.02958187647163868, 0.0032654274255037308, -0.013085838407278061, -0.004327093251049519, -0.015120698139071465, -0.0068002925254404545, 0.004355243872851133, 0.010552316904067993, 0.00813139695674181, -0.025946475565433502, -0.012080472894012928, -0.004717175383120775, -0.0243378896266222, -0.009152848273515701, 0.03210735321044922, 0.010343201458454132, 0.0021072463132441044, -0.008143461309373379, -0.002006709575653076, -0.01008582767099142, -0.025833873078227043, 0.03111003153026104, -0.01952822133898735, -0.006655520293861628, 0.0070053874514997005, -0.027152912691235542, 0.001636735163629055, 0.0013984635006636381, 0.0018770175520330667, -0.010640788823366165, -0.011750712990760803, -0.013769486919045448, -0.018498726189136505, -0.03271861746907234, -0.011992000974714756, -0.01922258920967579, -0.018144838511943817, 0.05012350529432297, 0.007761422079056501, 0.014646166004240513, 0.006965172477066517, 0.004130041692405939, 0.002937678247690201, 0.0013974581379443407, 0.002410866552963853, 0.0012577123707160354, 0.024144859984517097, 0.0004534198669716716, 0.011083150282502174, 0.01722794398665428, -0.009088505059480667, -0.05163557454943657, -0.005324415862560272, 0.034874122589826584, -0.025335213169455528, 0.0011953796492889524, 0.022874077782034874, -0.012506747618317604, -0.010423630475997925, -0.001562338089570403, -0.002579767955467105, 0.011839184910058975, 0.026605995371937752, 0.0065871551632881165, -0.04233795404434204, -0.024482661858201027, 0.03439154475927353, -0.009522822685539722, 0.0013652864145115018, -0.015908904373645782, -0.025399556383490562, -0.0622522346675396, 0.007359276060014963, -0.014147504232823849, 0.030643543228507042, -0.014493349939584732, -0.0019835862331092358, 0.03109394572675228, 0.001273798174224794, -0.021667638793587685, 0.01178288459777832, -0.0007756395498290658, -0.011380738578736782, -0.00786195881664753, -0.0016799658769741654, -0.005847206339240074, 0.01113945059478283, 0.017951807007193565, -0.008260083384811878, 0.004455780144780874, -0.008750702254474163, -0.004668917506933212, -0.0036816487554460764, -0.00054892961634323, -0.0067560565657913685, -0.009772153571248055, 0.012112644501030445, -0.0017181697767227888, 0.012466533109545708, -0.007813701406121254, -0.03767305985093117, 0.014565736055374146, 0.005605918355286121, 0.00039737074985168874, 0.00015620866906829178, 0.004266771487891674, 0.001661869348026812, 0.012506747618317604, 0.013423641212284565, 8.344534580828622e-05, -0.009249363094568253, -0.010544274002313614, 0.01517699845135212, -0.0008585822070017457, -0.014461178332567215, 0.007680993061512709, -0.007065709214657545, -0.007572413422167301, -0.015619359910488129, -0.014694423414766788, -0.0005831120070070028, 0.00834855530411005, -0.0006746003055013716, 0.018788272514939308, -0.017646176740527153, 0.018723929300904274, 0.006108601111918688, 0.02684728242456913, -0.01544241514056921, -0.002967839129269123, -0.008734616450965405, 0.058552492409944534, 0.025673015043139458, 0.005690369289368391, -0.0019132107263430953, -0.0375443734228611, -0.00616892334073782, 0.016391480341553688, 0.017758777365088463, 0.016005419194698334, -0.004286878742277622, 0.021410265937447548, -0.005127364303916693, 0.028761498630046844, 0.03435937315225601, 0.003325749421492219, -0.009900839999318123, 0.004019451793283224, 0.016206493601202965, -0.016327137127518654, -0.01572391763329506, -0.023662284016609192, 0.0075362203642725945, 0.0059758927673101425, 0.0034725326113402843, -0.010117999278008938, -0.03680442273616791, 0.004592509940266609, -0.03532452508807182, 0.006567047908902168, 0.020348599180579185, 0.02729768678545952, 0.0013803669717162848, 0.043270934373140335, 0.005883399397134781, -0.011372695676982403, 0.032477330416440964, -0.0009390114573761821, -0.004166234750300646, -0.010930334217846394, 0.0038002817891538143, 0.003357921028509736, -0.015048312023282051, -0.0040677092038095, -0.007942387834191322, -0.014694423414766788, -0.01298932358622551, 0.0033760175574570894, 0.0388634130358696, -0.016109978780150414, -0.016681024804711342, -0.0018207170069217682, 0.002175611210986972, -0.030144881457090378, 0.007097880821675062, -0.006848550401628017, 0.012748035602271557, -0.01602954789996147, -0.008332469500601292, -0.004664896056056023, -0.007306997198611498, 0.009458479471504688, 0.019608650356531143, -0.0015603273641318083, -0.027217255905270576, -0.01997862383723259, -0.0013391469838097692, -0.00711798807606101, 0.007652842905372381, 0.007041580509394407, 0.01996253803372383, -0.0024671670980751514, 8.212579996325076e-05, 0.0022761477157473564, 0.015201127156615257, -0.019914280623197556, -0.002237943699583411, 0.03535669669508934, -0.03384462743997574, 0.03548538312315941, -0.03205909579992294, 0.007592520676553249, 0.0018337868386879563, 0.016841884702444077, 0.016399523243308067, -0.00439545838162303, -0.00570645509287715, 0.0012235299218446016, -0.013447769917547703, 0.010640788823366165, 0.0007505054236389697, -0.004532188177108765, 0.0033438459504395723, 0.014533564448356628, -0.036740079522132874, -0.014002732001245022, -0.017983978614211082, -0.003661541501060128, 0.0001511818409198895, 0.011163579300045967, -0.011750712990760803, 0.001025472884066403, -0.0030683756340295076, 0.023710541427135468, -0.003349878126755357, -0.008276169188320637, -0.001288878615014255, -0.01232176087796688, -0.0030784294940531254, -0.02116897702217102, -0.0052882228046655655, 0.0021394179202616215, -0.0023726627696305513, -0.025817787274718285, -0.03196258097887039, -0.0024430383928120136, -0.005364630836993456, -0.009563037194311619, -0.0038606037851423025, 0.0028813777025789022, 0.010190385393798351, -0.0013723239535465837, 0.012876722030341625, -0.0007540241931565106, 0.023871399462223053, 0.02303493581712246, 0.0003111606347374618, -0.016399523243308067, 0.015876732766628265, -0.016874056309461594, -0.003647466190159321, 0.02803763560950756, 0.01910998858511448, -0.009522822685539722, -0.004797604400664568, 0.011919613927602768, 0.0038063139654695988, 0.03001619502902031, 0.02314753644168377, 0.009386093355715275, -0.017388803884387016, 0.007520134560763836, 0.020123397931456566, 0.0016658907989040017, 0.00655096210539341, -0.002219847170636058, -0.0037620780058205128, -0.0311261173337698, 0.01986602321267128, 0.0035308438818901777, -0.02071857452392578, 0.017324458807706833, 0.012683692388236523, -0.016986656934022903, -0.005879377946257591, -0.0043391576036810875, -0.005907528102397919, -0.0196247361600399, -0.030257482081651688, 0.02464352175593376, -0.0026260148733854294, 0.03205909579992294, -0.0011551650241017342, -0.017324458807706833, -0.014219890348613262, -0.006977237295359373, 0.011155536398291588, -0.02139418013393879, -0.08634883910417557, -0.025399556383490562, 0.03416634351015091, 0.013423641212284565, 0.002664218656718731, 0.021136805415153503, -0.018965216353535652, 0.0011310363188385963, -0.007721207570284605, 0.0543379969894886, -0.012024172581732273, 0.04388219490647316, -0.007817722856998444, -0.021796325221657753, -0.011227922514081001, -0.004689025226980448, 0.008911560289561749, 0.023951830342411995, 0.007298953831195831, -0.01517699845135212, -0.010351244360208511, -0.0024892850778996944, 0.025496071204543114, 0.005336480680853128, -0.02749071642756462, -0.02031642757356167, 0.023276222869753838, 0.007785550784319639, 0.010616660118103027, -0.01188744232058525, -0.0314156636595726, -0.0038123461417853832, -0.0051635573618113995, 0.015530887059867382, 0.031496092677116394, 0.018836529925465584, 0.004978570155799389, 0.035967957228422165, 0.0011501382105052471, -0.010222557000815868, -0.012225245125591755, -0.0209437757730484, -0.017871377989649773, 0.0104718878865242, 0.02654165029525757, -0.019351275637745857, -0.016206493601202965, 0.006916915066540241, -0.0002900479594245553, -0.011211836710572243, 0.0016105956165120006, -0.02171589620411396, 0.012313717976212502, -0.010254728607833385, 0.00012774426431860775, -0.02073466032743454, 0.0030864723958075047, 0.008183675818145275, 0.014718552120029926, 0.002652154304087162, -0.012916936539113522, 0.019367363303899765, -0.021587209776043892, 0.013294954784214497, 0.0038404965307563543, 0.016777541488409042, -0.0076246922835707664, 0.009088505059480667, 0.002053961856290698, -0.013383426703512669, 0.0017272180411964655, 0.010021484456956387, -0.016431694850325584, 0.010640788823366165, 0.00905633345246315, -0.03067571483552456, 0.008022816851735115, -0.014702466316521168, -0.00035715612466447055, -0.006120665464550257, 0.02083117514848709, -0.00028828857466578484, 0.003402156988158822, -0.009144805371761322, 0.013109967112541199, -0.03767305985093117, -0.005746669601649046, -0.022230643779039383, 0.013431684114038944, 0.0016467887908220291, 0.008911560289561749, -0.018177010118961334, -0.03854169324040413, -0.005340502131730318, -0.015032226219773293, 0.03873472660779953, -0.004278835840523243, -0.023614026606082916, 0.013311040587723255, 0.019705165177583694, 0.006305652670562267, 0.012868679128587246, -0.04407522827386856, -0.03709396719932556, 0.041726693511009216, -0.0020569779444485903, -0.0014125385787338018, 0.020815089344978333, 0.017179686576128006, 0.0030341933015733957, 0.0071863532066345215, 0.0072305891662836075, 0.008183675818145275, 0.0271689984947443, 0.029855335131287575, 0.0040677092038095, 0.005219858139753342, -0.012699778191745281, 0.012008086778223515, -0.013616671785712242, 0.03310467675328255, 0.03680442273616791, -0.01035928726196289, 0.0038123461417853832, 0.002019779523834586, -0.004620660096406937, 0.0009405195014551282, 0.0031347298063337803, 0.014485307037830353, -0.0008550634374842048, 0.027651574462652206, -0.019496049731969833, -0.034423716366291046, -0.006482597440481186, -0.03156043589115143, -0.006189030595123768, 0.005195729434490204, -0.0036173053085803986, 0.01920650340616703, 0.022632788866758347, -0.02248801663517952, 0.015571101568639278, -0.022841906175017357, -0.006032193545252085, -0.025399556383490562, 0.010463844984769821, -0.030402254313230515, -0.020815089344978333, -0.004841840825974941, 0.02192501164972782, 0.01140486728399992, 0.010552316904067993, 0.003951086662709713, 0.010037570260465145, 0.015040269121527672, -0.046455930918455124, -0.031705208122730255, -0.01593303307890892, 0.0373513400554657, -0.011420953087508678, 0.005461145658046007, -0.015410243533551693, -0.026799025014042854, 0.00450001610442996, 0.013327126391232014, 0.007339168805629015, 0.00992496870458126, -0.0004431148699950427, 0.007825765758752823, -0.024289632216095924, 0.014887453056871891, -0.03609664738178253, 0.006305652670562267, -0.01347189862281084, 0.014461178332567215, -0.016343222931027412, 0.03033791109919548, 0.010841862298548222, 0.02411268837749958, 0.022938420996069908, 0.005280179902911186, -0.002008720301091671, -0.02401617355644703, -0.007701100315898657, -0.010898162610828876, -0.014718552120029926, -0.006808335892856121, -0.020589886233210564, -0.01123596541583538, -0.01452552154660225, 0.025045666843652725, 0.0003033690736629069, 0.012900850735604763, -0.012345889583230019, 0.004717175383120775, 0.01358449924737215, 0.00505095673725009, -0.013882087543606758, 0.014429006725549698, -0.015193084254860878, 0.004130041692405939, 0.0003280005184933543, 0.004138084594160318, 0.0016648854361847043, 0.0014507424784824252, 0.011710498481988907, -0.013335169292986393, 0.025994732975959778, -0.0097158532589674, 0.005473210010677576, -0.00504291383549571, -0.008533542975783348, -0.02454700507223606, -0.006571069359779358, -0.020911604166030884, 0.0009410221828147769, -0.015112655237317085, -0.011613982729613781, -0.003868646686896682, 0.02695988304913044, 0.014597907662391663, 0.008525500074028969, 0.006538897752761841, 0.0046327244490385056, -0.020927689969539642, 0.01734054461121559, 0.00797455944120884, -0.01660059578716755, -0.0007650831830687821, 0.0293405894190073, 0.00711798807606101, -0.03500280901789665, 0.017533576115965843, 0.023388825356960297, -0.0031588587444275618, -0.010254728607833385, 0.007652842905372381, -0.017195772379636765, 0.003729906165972352, 0.024080516770482063, -0.025174353271722794, -0.0040114084258675575, -0.004142106045037508, 0.01319843903183937, -0.02498132362961769, -0.03548538312315941, 0.019399534910917282, 0.00835659820586443, -0.008191718719899654, 0.0010375372366979718, 0.0024691778235137463, 0.004990634508430958, 0.005883399397134781, 0.005991979036480188, -0.014992011711001396, 0.00225000805221498, 0.01604563370347023, 0.010061698965728283, -0.01845046877861023, 0.02596256136894226, -0.016874056309461594, -0.013319083489477634, 0.0209437757730484, 0.009530865587294102, 0.008750702254474163, 0.005533532239496708, -0.004210471175611019, -0.001979564782232046, -0.003804303240031004, 0.000858079525642097, -0.017710519954562187, 0.00257775723002851, 0.017002742737531662, 0.009490651078522205, -0.0020519511308521032, -0.029984023422002792, -0.025351298972964287, 0.00030311773298308253, -0.01854698359966278, 0.0019353287061676383, 0.005324415862560272, 0.027683746069669724, -0.01833786815404892, 0.0024430383928120136, -0.014597907662391663, -0.005372673738747835, 0.020782917737960815, 0.011927656829357147, 0.009032204747200012, 0.012595219537615776, -0.004023473244160414, -0.02893844246864319, -0.014533564448356628, -0.016230622306466103, -0.003422264475375414, 0.003951086662709713, -0.029614048078656197, 0.0003953600244130939, 0.03043442592024803, 0.006072408054023981, 0.006643455475568771, -0.01206438709050417, -0.008453113958239555, 0.001119977212511003, 0.0006816378445364535, -0.020975947380065918, 0.022954506799578667, 0.021120719611644745, 0.0019634789787232876, -0.0194317065179348, -0.0026481328532099724, -0.005529510788619518, -0.0019906237721443176, 0.014541607350111008, -0.014083161018788815, 0.003166901646181941, 0.0033981355372816324, -0.013986646197736263, 0.0609331950545311, 0.018643498420715332, 0.02216630056500435, 0.008863302879035473, -0.011710498481988907, -0.027313772588968277, -0.015659574419260025, 0.01647190935909748, 0.008951774798333645, 0.013431684114038944, -0.00701343035325408, 0.010391458868980408, 0.002268104813992977, 0.001500005484558642, -0.013624714687466621, 0.0018518833676353097, 0.00834855530411005, 0.010882076807320118, 0.006780185271054506, 0.014702466316521168, -0.006663563195616007, -0.009458479471504688, -0.010126042179763317, 0.011356609873473644, -0.011453124694526196, 0.03426285833120346, 0.0015733970794826746, -0.0016015473520383239, 0.0193351898342371, 0.02488480880856514, -0.011758755892515182, -0.030482683330774307, 0.004745325539261103, -0.007761422079056501, -0.01690622791647911, 0.010053656063973904, 0.006792249623686075, 0.00673594931140542, 0.0024209204129874706, 0.004906184040009975, -0.013882087543606758, 0.01282846461981535, -0.0067560565657913685, 0.018788272514939308, -0.019608650356531143, -0.018193095922470093, 0.009748024865984917, -0.003995322622358799, 0.014541607350111008, -0.0025013494305312634, -0.016222579404711723, -0.03297599032521248, 0.0009681670344434679, 0.01724402979016304, 0.02443440444767475, 0.0031608694698661566, 0.02334056794643402, -0.01019842829555273, 0.016335180029273033, -0.0032795025035738945, -0.008038903586566448, 0.009506736882030964, 0.005497339181602001, -0.014171632938086987, -0.017485318705439568, -0.014622037298977375, -0.011686369776725769, -0.028069807216525078, 0.003347867401316762, -0.00327347032725811, -0.027683746069669724, 0.02195718325674534, 0.00954695139080286, -0.0335872545838356, -0.002449070569127798, 0.04307790473103523, -0.007327104452997446, -0.0013693078653886914, 0.010664918459951878, -0.00112500402610749, 0.02356576919555664, 0.007343190256506205, -0.011807013303041458, -0.006904850713908672, 0.013890130445361137, -0.011557682417333126, 0.016423651948571205, -0.003168912371620536, 0.006000021938234568, -0.011863313615322113, -0.01624670810997486, 0.0025817786809056997, 0.004298943094909191, -0.005477231461554766, 0.021796325221657753, 0.0005137418047524989, 0.004383394028991461, 0.003959129564464092, 0.023662284016609192, -0.02292233519256115, 0.02052554301917553, 0.014597907662391663, -0.0013069752603769302, 0.00589546374976635, -0.007351233158260584, 0.007383404765278101, 0.0181126669049263, -0.013311040587723255, -0.002314351499080658, -0.004371329676359892, -0.004745325539261103, -0.0201877411454916, 0.02290624938905239, 0.022616703063249588, -0.01875610090792179, -0.004230578429996967, 0.0004393447597976774, -0.01766226254403591, -0.022777562960982323, 0.0028351310174912214, -0.010496016591787338, -0.0005710476543754339, -0.010037570260465145, -0.01791963540017605, 0.016664939001202583, -0.0045120809227228165, -0.015096569433808327, -0.01167832687497139, -0.009506736882030964, -0.006518790498375893, 0.013343212194740772, 0.01976950839161873, 0.010126042179763317, -0.005469188559800386, 0.018418297171592712, -0.002091160276904702, 0.006345867644995451, -0.022745391353964806, 0.01097054872661829, -0.001944376970641315, 0.02543172799050808, 0.010504059493541718, -0.0033016204833984375, 0.02456309087574482, 0.011992000974714756, -0.0015341878170147538, 0.004616638645529747, -0.02356576919555664, 0.007138095796108246, -0.019061731174588203, 0.034198515117168427, -0.014268147759139538, 0.003187008900567889, -0.0020137473475188017, -0.004950419999659061, -0.0045563168823719025, -0.025142181664705276, 0.017549661919474602, 0.0034685111604630947, 0.001564348815008998, 0.003623337484896183, -0.007717186119407415, -0.010190385393798351, -0.0008726573432795703, 0.004274814389646053, 0.02279364876449108, 0.008774830959737301, 0.023742713034152985, 0.011211836710572243, 0.011734627187252045, 0.00543299550190568, -0.006044257897883654, -0.001532177091576159, -0.027426373213529587, 0.01058448851108551, -0.010560359805822372, 0.007150160148739815, 0.00137835624627769, -0.004628702998161316, 0.009032204747200012, -0.014227933250367641, -0.004878033883869648, 0.009490651078522205, -0.0015452469233423471, -0.0044638230465352535, -0.005987957585602999, 0.00965150911360979, -0.011171622201800346, -0.010689047165215015, 0.008718530647456646, -0.010415587574243546, 0.00608849385753274, 0.002702422672882676, -0.016986656934022903, -0.020155569538474083, -0.016423651948571205, 0.004222535528242588, -0.003054300555959344, 0.03196258097887039, -0.0069691939279437065, 0.0014266137732192874, 0.020782917737960815, 0.010681004263460636, 0.021152891218662262, -0.009860625490546227, -0.004628702998161316, 0.01347189862281084, -0.01245044730603695, -0.0010687035974115133, -0.0011410899460315704, -0.042627498507499695, -0.01820918172597885, -0.001885060453787446, 0.005380716640502214, -0.0050750854425132275, 0.001631708350032568, 0.005079106893390417, -0.006221202202141285, 0.010560359805822372, -0.0010616660583764315, 0.011034892871975899, 0.02499740943312645, -0.002640089951455593, 0.0030904938466846943, -0.005915571004152298, -0.005147471558302641, 0.00252346764318645, 0.015868689864873886, 0.027217255905270576, 0.020911604166030884, 0.011798970401287079, -0.0013079806230962276, -0.013906216248869896, -0.0090080751106143, -0.025833873078227043, 0.018611326813697815, 0.016890142112970352, -0.009136762470006943, 0.004869990982115269, -0.012619348242878914, -0.0077493577264249325, -0.003717841813340783, -0.014887453056871891, -0.016311051324009895, 0.006941043771803379, -0.03012879565358162, -0.010938377119600773, -0.005014763679355383, 0.00014125386951491237, -2.620234045025427e-05, -0.018402211368083954, -0.013817744329571724, -0.022101957350969315, 0.011163579300045967, 0.012538919225335121, 0.00275671249255538, -0.014203804545104504, 0.014445092529058456, 0.010608617216348648, -0.015522844158113003, 0.016021504998207092, 0.013713186606764793, -0.023437082767486572, 0.0015130751999095082, 0.010383415967226028, 0.026670338585972786, -0.024257460609078407, -0.00497052725404501, 0.02586604468524456, 0.015225255861878395, -0.0026762832421809435, -0.011855270713567734, 0.0008832136518321931, 0.02620384842157364, 0.014967883005738258, -0.005879377946257591, 0.011839184910058975, -0.025238696485757828, -0.008758745156228542, 0.022729305550456047, 0.012136773206293583, -0.008071075193583965, 0.011959828436374664, -0.03157652169466019, -0.013270825147628784, -0.011967871338129044, -0.01075339037925005, 0.015128741040825844, -0.0014758766628801823, 0.019479963928461075, 0.015345900319516659, -0.01780703477561474, -0.003906850703060627, -0.0007675965898670256, 0.016415609046816826, 0.01047993078827858, 0.0031226654537022114, -0.002998000243678689, 0.018498726189136505, 0.0046327244490385056, 0.0009953118860721588, -0.0022479973267763853, -0.01162202563136816, -0.011839184910058975, -0.00398727972060442, 0.020541628822684288, 0.032043009996414185, 0.015643488615751266, -0.01020647119730711, 0.017002742737531662, -0.006579112261533737, 0.014501392841339111, 0.0065750908106565475, -0.006096536759287119, -0.0121689448133111, 0.018177010118961334, 0.004676960874348879, 0.0035429082345217466, -0.0017935722135007381, 0.00888743158429861, -0.0018096580170094967, 0.018949130550026894, 0.00965955201536417, -0.004371329676359892, 0.011605939827859402, 0.0188687015324831, 0.004262750037014484, -0.004869990982115269, 0.003369985381141305, -0.02052554301917553, 0.007982602342963219, 0.00439545838162303, -0.005827099084854126, -0.009571080096065998, -0.0018267492996528745, 0.004709132481366396, -0.011823099106550217, 0.008654186502099037, -0.015096569433808327, 0.0030764187686145306, -0.005923613905906677, -0.0018589209066703916, 0.0028150235302746296, -0.01554697286337614, 0.0033538995776325464, 0.008678315207362175, -0.002227890072390437, -0.013632757589221, 0.020654229447245598, 0.028182407841086388, 0.016415609046816826, -0.005227901041507721, 0.008758745156228542, -0.002923603169620037, -0.021313749253749847, -0.01737271621823311, 0.0027748090215027332, 0.029967937618494034, 0.0034504146315157413, 0.007805658504366875, -0.0036776273045688868, 0.0014014795888215303, -0.003760067280381918, -0.013029538094997406, -0.004532188177108765, 0.013222567737102509, -0.012635434977710247, 0.012997366487979889, -0.023984001949429512, 0.013721229508519173, -0.014750723727047443, -0.019479963928461075, -0.007315040100365877, -0.006454446818679571, -0.007737293373793364, -0.0011531542986631393, -0.022841906175017357, -0.012112644501030445, -0.017935721203684807, 0.010238642804324627, 0.05009133368730545, 0.010431673377752304, -0.0028552382718771696, -0.006961151026189327, 0.0073552546091377735, 0.007516113109886646, 0.01364884339272976, 0.013270825147628784, -0.007717186119407415, 0.016093892976641655, -0.0036937131080776453, 0.007073752116411924, -0.004371329676359892, 0.013866001740098, 0.01756574772298336, 0.024418318644165993, -0.02718508429825306, 0.0349062941968441, 0.007528177462518215, -0.00720243901014328, -0.008437028154730797, -0.00916893407702446, 0.027104655280709267, -0.00036896916572004557, 0.0028793669771403074, -0.03435937315225601, 0.023710541427135468, -0.007789572235196829, 0.02694379724562168, -0.008935688994824886, -0.0039450544863939285, 0.015683703124523163, -0.010463844984769821, -0.005573746748268604, 0.01282846461981535, -0.01581238955259323, 0.010415587574243546, -0.005485274363309145, 0.009176976978778839, 0.0032171697821468115, 0.013319083489477634, -0.013246696442365646, 0.01320648193359375, 0.0062815239652991295, 0.03197866678237915, -0.01031907182186842, 0.03619316220283508, 0.006402167957276106, -0.0129249794408679, -0.0072748251259326935, 0.008935688994824886, -0.01347994152456522, -0.003000010969117284, 0.016069762408733368, -0.01555501576513052, -0.0041039022617042065, 0.01766226254403591, -0.02139418013393879, 0.007242653518915176, 0.020155569538474083, -0.03361942619085312, -0.002849206095561385, -0.026107333600521088, -0.02335665374994278, 0.00550940353423357, -0.005501360632479191, 0.015370029024779797, 0.013013452291488647, 0.00635793199762702, 0.012225245125591755, 0.001035526511259377, 0.002165557350963354, 0.00036645575892180204, 0.006036214996129274, -0.011059021577239037, -0.02173198200762272, -0.01845046877861023, -0.0018941087182611227, 0.016455823555588722, -0.034230686724185944, -0.004495994653552771, 0.002050945768132806, 0.01822526752948761, -0.007146138697862625, -0.004640767350792885, -0.009916925802826881, 0.009016118012368679, 0.031833894550800323, -0.02675076760351658, -0.005790905561298132, -0.01671319641172886, 0.01085794810205698, 0.012418275699019432, -0.005847206339240074, -0.0068163787946105, 0.03220387175679207, 0.011935699731111526, 0.018144838511943817, -0.00965955201536417, -0.015080483630299568, 0.006152837537229061, 0.004033526871353388, -0.011091193184256554, 0.0060241506434977055, 0.023292308673262596, -0.017067085951566696, -0.02173198200762272, 0.01780703477561474, 0.012868679128587246, 0.013777529820799828, 0.008605929091572762, -0.002326415851712227, 0.03538886830210686, -0.025689100846648216, 0.0036374125629663467, 0.0038183785509318113, 0.0050750854425132275, 0.013890130445361137, -0.0002870318712666631, -0.0032996097579598427, 0.013656886294484138, 0.006261416710913181, -0.003758056554943323, 0.004331114701926708, 0.018193095922470093, 0.007528177462518215, -0.0006208132253959775, 0.004890098236501217, 0.03128697723150253, 0.023115364834666252, 0.004721196833997965, 0.009217191487550735, -0.014959840103983879, -0.0029416996985673904, 0.002396791474893689, 0.02192501164972782, 0.03590361401438713, 0.022761477157473564, 0.004323071800172329, -0.030691800639033318, -0.016278879716992378, -0.023115364834666252, 0.005778841208666563, 0.013898173347115517, 0.010455802083015442, 0.0034705218859016895, 0.0064866188913583755, -0.009675637818872929, -0.0039008185267448425, -0.002991967834532261, -0.0010687035974115133, -0.006172944791615009, -0.0022841906175017357, -0.006185009144246578, 0.03429502993822098, 0.0006625358946621418, 0.016841884702444077, 0.016745369881391525, 0.014798981137573719, -0.009643466211855412, 0.019576478749513626, -0.008565714582800865, 0.013278868049383163, -0.00834855530411005, 0.0008218863513320684, -0.015225255861878395, 0.010021484456956387, 0.03000010922551155, -0.01101880706846714, 0.00796651653945446, -0.0390564426779747, 0.0030884831212460995, 0.03928164392709732, 0.00496248435229063, 0.016648853197693825, -0.006438361015170813, -0.008388770744204521, 0.011107278987765312, 0.0025294998195022345, 0.012096558697521687, -0.004946398548781872, -0.009040247648954391, -0.015410243533551693, -0.006723884958773851, -0.0050630210898816586, 0.00824399758130312, 0.015080483630299568, -0.009144805371761322, 0.009193062782287598, 0.020911604166030884, -0.02224672958254814, -0.009144805371761322, -0.00317896599881351, 0.018402211368083954, 0.01139682438224554, -0.001092832419089973, -0.02642904967069626, 0.002408855827525258, 0.02268104813992977, -0.01988210901618004, 0.003452425356954336, -0.014453135430812836, -0.023662284016609192, -0.005143450107425451, 0.003148804884403944, 0.014766809530556202, 0.014967883005738258, 0.0009264443651773036, 0.027329858392477036, -0.020799003541469574, 0.02618776261806488, 0.00786598026752472, 0.008087160997092724, -0.01561131700873375, 0.028327180072665215, 0.011798970401287079, 0.008678315207362175, -0.0012255406472831964, -0.01973733678460121, 0.0020278224255889654, -0.014573778957128525, 0.010262771509587765, 0.024144859984517097, 0.00515953591093421, 0.01769443415105343, -0.018193095922470093, -0.0033418352250009775, -0.010214514099061489, 0.0007409544195979834, -0.011010764166712761, 0.01976950839161873, -0.007278846576809883, -0.0025817786809056997, 0.0031729338224977255, 0.006297609768807888, -0.005883399397134781, -0.008742659352719784, 0.014340534806251526, 0.00850941427052021, 0.013174310326576233, 0.005364630836993456, 0.013021495193243027, -0.008300297893583775, 0.0019463876960799098, 0.0012657552724704146, -0.01097054872661829, 0.0037761530838906765, 0.0002417904179310426, 0.030273567885160446, 0.007656864356249571, 0.015305685810744762, 0.004399479832500219, -0.024595262482762337, -0.01506439782679081, 0.010817733593285084, 0.014195761643350124, -0.016616681590676308, -0.012667606584727764, -0.020799003541469574, -0.021008118987083435, -0.002495317254215479, -0.021635467186570168, -0.0007660885457880795, 0.015908904373645782, 0.0011229933006688952, -0.007134073879569769, -0.018707843497395515, -0.008022816851735115, 0.01031102892011404, -0.017646176740527153, -0.032252129167318344, 0.0021494715474545956, -0.01592499017715454, 0.022970592603087425, 0.0016246708109974861, 0.0037781638093292713, 0.004672938957810402, -0.03263818845152855, 0.03895992785692215, -0.008807002566754818, -0.020429028198122978, -0.010487973690032959, 0.0034584575332701206, 0.011147493496537209, 0.0012084493646398187, -0.007327104452997446, 0.009378050453960896, 0.016954485327005386, -0.021249406039714813, -0.025496071204543114, -0.01298128068447113, 0.016278879716992378, -0.024064430966973305, 0.008159547112882137, 0.010439716279506683, 0.017002742737531662, -0.0021374071948230267, -0.025286955758929253, 0.005935678258538246, -0.018723929300904274, -0.008726573549211025, -0.005284201353788376, 0.003164890920743346, -0.003514758078381419, -1.5371097106253728e-05, -0.012458490207791328, 0.003285534679889679, 0.0044316514395177364, 0.015040269121527672, -0.010013441555202007, 0.013246696442365646, 0.009474565275013447, -0.019801679998636246, -0.013126052916049957, -0.022986678406596184, -0.006394125055521727, -0.004423608537763357, -0.006945065222680569, -0.026766853407025337, -0.007250696420669556, -0.013656886294484138, 0.0026119397953152657, 0.009016118012368679, 0.004286878742277622, -0.008702444843947887, -0.01150942500680685, 0.009506736882030964, 0.011219879612326622, 0.011171622201800346, -0.0003455944242887199, -0.0021595251746475697, -0.007455790881067514, 0.007829787209630013, -0.004355243872851133, -0.01988210901618004, -0.03883124142885208, 0.0043391576036810875, -0.0166971106082201, 0.00036595307756215334, -0.007150160148739815, 0.011485296301543713, 0.001045580138452351, -0.002185664838179946, 0.025286955758929253, -0.005851227790117264, -0.0256569292396307, -0.004234599880874157, -0.01701882854104042, -0.0009887770283967257, -0.0015160912880674005, 0.011742670089006424, -0.009900839999318123, 0.00035363732604309916, 0.0011913581984117627, -0.0016508102416992188, 0.005453102756291628, 0.015506758354604244, -0.01216090191155672, -0.00044286352931521833, 0.0016930355923250318, -0.015490672551095486, -0.031608693301677704, -0.007130052428692579, 0.0036555093247443438, 0.004709132481366396, -0.0037258847150951624, -0.007894130423665047, 0.005987957585602999, -0.016986656934022903, 0.014718552120029926, -0.011847227811813354, 0.009731939062476158, 0.004676960874348879, 0.0027707875706255436, 0.015040269121527672, 0.010672961361706257, 0.017597919330000877, -0.000116559567686636, 0.008095203898847103, -0.008014773949980736, 0.005026828031986952, 0.022874077782034874, 0.001969511155039072, 0.0180161502212286, -0.009297620505094528, 0.005449081305414438, 0.003997333347797394, -0.017276201397180557, -0.012627391144633293, 0.021217234432697296, 0.005963828414678574, 0.022648876532912254, -0.016841884702444077, -0.022874077782034874, -0.018627412617206573, 0.004435672890394926, -0.006337824743241072, 0.011557682417333126, 0.01423597615212202, -0.00308044021949172, -0.010013441555202007, -0.010150170885026455, -0.024965237826108932, 0.0039128828793764114, -0.02761940285563469, 0.007150160148739815, 0.02041294239461422, 0.02009122632443905, 0.007001366000622511, 0.00747187715023756, 0.00014024849224369973, -4.728359999717213e-05, -0.01294106524437666, 0.011798970401287079, 0.0390564426779747, -0.008075096644461155, 0.016938399523496628, -0.02203761413693428, 0.001326077152043581, -0.012595219537615776, -0.0013803669717162848, 0.018064409494400024, 0.012756078504025936, -0.028021549805998802, -0.009370007552206516, 0.007150160148739815, -0.009410222060978413, 0.019817765802145004, 0.009957140311598778, 0.0006474554538726807, -0.004411544185131788, 0.007516113109886646, -0.011549639515578747, 0.009329792112112045, 0.005658197216689587, -0.014839195646345615, 0.012112644501030445, -0.003675616579130292, 0.008533542975783348, -0.015643488615751266, -0.028761498630046844, 0.0108499052003026, 0.02161938138306141, -0.006120665464550257, -0.022455845028162003, 0.007528177462518215, 0.002073063747957349, -0.00616892334073782, 0.003082450944930315, -0.006040236447006464, 0.0026360685005784035, -0.0011511435732245445, -0.01451747864484787, 0.0064504253678023815, 0.006912893615663052, -0.021748067811131477, -0.009072419255971909, 0.008638100698590279, 0.0027587232179939747, -0.011967871338129044, 0.011227922514081001, -0.017855292186141014, -0.007435683626681566, -0.009394136257469654, 0.009217191487550735, -0.009579122997820377, 0.004154170397669077, 0.004005376249551773, 0.010029527358710766, -0.00970781035721302, -0.0004431148699950427, 0.013697100803256035, 0.01561131700873375, 0.009386093355715275, -0.0026984012220054865, 0.01745314709842205, -0.010061698965728283, 0.00308446167036891, -0.0005770798306912184, -0.0012034225510433316, 0.024370061233639717, 0.005959806963801384, -0.006695734802633524, -0.0033740068320184946, 0.015796303749084473, 0.0055817896500229836, -0.016423651948571205, -0.008445071056485176, -0.013536241836845875, -0.015490672551095486, 0.00010374115663580596, -0.017710519954562187, -0.0008932673372328281, 0.005420931149274111, -0.006852571852505207, 0.021555038169026375, 0.009144805371761322, 0.013504070229828358, -0.015072440728545189, -0.003685670206323266, -0.00784989446401596, 0.011163579300045967, -0.020364684984087944, 0.015281557105481625, -0.0188687015324831, -0.0013250717893242836, 0.02009122632443905, -0.008191718719899654, 0.005819055717438459, 0.025383470579981804, 0.024707864969968796, -0.012185030616819859, -0.0004858429019805044, 0.005248008295893669, -0.00889547448605299, -0.0068807220086455345, 0.032364729791879654, 0.01364884339272976, -0.004331114701926708, 0.014646166004240513, 0.004705111030489206, 0.001092832419089973, 0.011831142008304596, 0.003643444739282131, -0.009804325178265572, 0.0017975936643779278, -0.02620384842157364, 0.004071730654686689, 0.0013240664266049862, 0.02618776261806488, -0.0012235299218446016, -0.005533532239496708, 0.008079118095338345, 0.004258728586137295, -0.008211825974285603, 0.029501447454094887, 0.007025494705885649, -0.01845046877861023, -0.007065709214657545, -0.014203804545104504, -0.0194317065179348, 0.0031829874496906996, 0.005352566484361887, 0.007910216227173805, 0.01385795883834362, -0.01019842829555273, -0.003772131633013487, -0.004652831703424454, -0.006040236447006464, -0.004491973202675581, 0.02160329557955265, -0.018193095922470093, 0.031029602512717247, -0.004483930300921202, -0.01756574772298336, -0.009739981964230537, 0.029517533257603645, 0.002133385743945837, 0.0005906522856093943, 0.004833797458559275, 0.03077222965657711, 0.013158224523067474, 0.010681004263460636, -0.02401617355644703, -0.006225223653018475, 0.00570243364199996, 0.014477264136075974, -0.00758447777479887, -0.03152826428413391, 0.0014788927510380745, 0.014437049627304077, 0.013021495193243027, 0.009096547961235046, -0.007544263266026974, 0.007166245952248573, 0.006788228172808886, -0.011356609873473644, 0.011437038891017437, -0.014839195646345615, -0.010689047165215015, -0.006900829263031483, -0.012249373830854893, 0.011581811122596264, -0.01997862383723259, 0.008042925037443638, -0.0011420953087508678, -0.004154170397669077, -0.011461167596280575, 0.005561682395637035, -0.016536252573132515, 0.012764121405780315, 0.013721229508519173, 0.00496650580316782, 0.006687691900879145, 0.013890130445361137, 0.012241330929100513, -0.03493846580386162, 0.002724540652707219, -0.009852582588791847, 0.007793594151735306, 0.001341157709248364, -0.0024691778235137463, 0.012024172581732273, -0.01737271621823311, 0.021892840042710304, 0.0036575200501829386, 0.001321050338447094, -0.007540241815149784, 0.029742734506726265, -0.007753379177302122, -0.018144838511943817, -0.020670317113399506, -0.025512157008051872, 0.0002777322370093316, -0.015627402812242508, -0.016109978780150414, 0.013431684114038944, -0.003128697630017996, -0.007041580509394407, -0.0032292341347783804, -0.0014115332160145044, 0.011179665103554726, -0.004652831703424454, 0.004383394028991461, 0.0067439922131598, -0.006832464598119259, -0.0007746341871097684, 0.011252051219344139, -0.026026904582977295, 0.009152848273515701, 0.0014859302900731564, 0.002131375018507242, -0.005123342853039503, 0.005095192696899176, -0.0055053820833563805, 0.014855281449854374, 0.016126064583659172, 0.008437028154730797, 0.005790905561298132, 0.012804335914552212, -0.013254739344120026, 0.012217202223837376, 0.014316406100988388, -7.713038939982653e-06, 0.004371329676359892, -0.00861397199332714, -0.0016337190754711628, -0.003514758078381419, -0.021152891218662262, -0.015217212960124016, 0.008726573549211025, 0.01724402979016304, 0.0018860658165067434, 0.005955785512924194, -0.014461178332567215, 0.0018790282774716616, -0.003675616579130292, 0.013053666800260544, -0.006663563195616007, 0.022118043154478073, -0.00496248435229063, -0.015804346650838852, 0.016319094225764275, 0.005823077168315649, -0.007327104452997446, -0.0010445747757330537, 0.014091203920543194, -0.022005442529916763, 0.0034182430244982243, 0.015506758354604244, -0.006209137849509716, -0.007178310304880142, -0.0027627446688711643, 0.009884754195809364, -0.009032204747200012, 0.012000043876469135, -0.005014763679355383, 0.0005157525301910937, -0.004845862276852131, 0.02139418013393879, -0.003876689588651061, 0.002229900797829032, -0.014565736055374146, -0.009965183213353157, -0.012474576011300087, 0.007423619274049997, 0.008207804523408413, 0.005187686532735825, -0.010399501770734787, 0.005469188559800386, 0.016841884702444077, 0.01735663041472435, 0.005067042540758848, 0.00655096210539341, -0.015088526532053947, -0.0025898218154907227, 0.010640788823366165, 0.010528188198804855, -0.02171589620411396, -0.001334120170213282, -0.0002370149304624647, -0.0016296976245939732, -0.006518790498375893, -0.009458479471504688, 0.007890108972787857, -0.03342639282345772, -0.005344523582607508, -0.010664918459951878, -0.004057655576616526, -0.02475612238049507, 0.01113945059478283, 0.020654229447245598, -0.0032493416219949722, 0.03164086490869522, -0.0008178649004548788, -0.006410210859030485, 0.009241320192813873, 0.008300297893583775, -0.0048136902041733265, -0.007029516156762838, -0.016745369881391525, 0.01123596541583538, -0.0012406210880726576, 0.0005278169410303235, 0.0024551027454435825, 0.0010586499702185392, 0.009522822685539722, 0.005863292142748833, -0.005284201353788376, -0.020107312127947807, -0.02628427743911743, 0.0022660940885543823, -0.02662208117544651, -0.0006288561853580177, -0.0033760175574570894, 0.004238621331751347, -0.010882076807320118, -0.006623348221182823, 0.013455812819302082, -0.00010229594772681594, -0.011388781480491161, 0.0020348599646240473, -4.0403130697086453e-05, -0.015265471301972866, 0.011179665103554726, -0.0043874154798686504, 0.018965216353535652, -0.004142106045037508, -0.01347189862281084, -0.003951086662709713, -0.0035871444270014763, 0.003937011584639549, -0.010069741867482662, -0.013560370542109013, 0.012361975386738777, 0.004628702998161316, 0.02771591767668724, -0.006860614754259586, 0.020268170163035393, -0.02729768678545952, 0.02654165029525757, -0.011324438266456127, -0.001658853143453598, 0.0055375536903738976, -0.013874044641852379, -0.01020647119730711, 0.0028069806285202503, 0.010825776495039463, 0.002595853991806507, -0.006028172094374895, -0.002366630593314767, -0.014050989411771297, 0.014750723727047443, 0.002583789639174938, -0.0009184014634229243, 0.004331114701926708, -0.008135418407619, 0.0018498726421967149, 0.009804325178265572, 0.02663816697895527, 0.000389327818993479, -0.0015010108472779393, -0.005553639493882656, 9.54468923737295e-05, 0.018788272514939308, -0.00044990109745413065, 0.009321749210357666, 0.004676960874348879, -0.01337538380175829, -0.005441038403660059, -0.00861397199332714, -0.028745412826538086, -0.0050750854425132275, 0.014155547134578228, 0.00505095673725009, -0.00411797733977437, 0.00569841219112277, -0.02388748526573181, 0.007829787209630013, -0.0018760121893137693, -0.013270825147628784, -0.012217202223837376, -0.00039385195123031735, -0.005947742611169815, 0.014107289724051952, 0.011919613927602768, -0.018643498420715332, -0.0013763455208390951, -0.006116644013673067, 0.006321738939732313, 0.03532452508807182, -0.006221202202141285, 0.006510747596621513, 0.0032774917781352997, -0.013608627952635288, -0.005955785512924194, -0.01560327410697937, -0.0020790959242731333, -0.008670272305607796, 0.0017503415001556277, -0.0004008895193692297, -0.007761422079056501, 0.015683703124523163, 0.00029331541736610234, -0.012965194880962372, 0.00720646046102047, 0.029984023422002792, 0.003731916891410947, -0.01085794810205698, 0.013729272410273552, -0.017195772379636765, 0.004797604400664568, -0.010447759181261063, 0.0041581918485462666, -0.007930323481559753, 0.02280973456799984, -0.006478575523942709, -0.013536241836845875, 0.003599208779633045, 0.001653826329857111, 0.0005569725180976093, 0.003581112250685692, 0.015394157730042934, -0.015916947275400162, -0.00020308385137468576, -0.001291894819587469, 0.021522866562008858, -0.004427629988640547, 0.018788272514939308, -0.0007394463755190372, -0.007351233158260584, 0.0034886186476796865, -0.0347132608294487, -0.02313145063817501, -0.013327126391232014, 0.012088515795767307, 0.00026591919595375657, 0.000915385375265032, -0.00039737074985168874, -0.0005685342475771904, -0.006796271074563265, -0.01112336479127407, 0.01976950839161873, 0.021571123972535133, -0.015321771614253521, -0.014461178332567215, 0.007508070208132267, -0.013866001740098, -0.02050945721566677, -0.014469221234321594, 0.028745412826538086, -0.009201105684041977, 0.007894130423665047, -0.020445114001631737, 0.020992033183574677, -0.0032493416219949722, -0.011115321889519691, -0.004085805732756853, -0.006132729817181826, -0.0005348544800654054, 0.007616649381816387, -0.006422275211662054, 0.02084726095199585, 0.013109967112541199, 0.009394136257469654, -0.00031493077403865755, 0.018257439136505127, -0.012772164307534695, 0.012080472894012928, 0.0048619480803608894, -0.026911625638604164, 0.018707843497395515, 0.0011611972004175186, -0.015675660222768784, 0.010930334217846394, -0.00020459189545363188, 0.009378050453960896, 0.006008064839988947, -0.01941562071442604, 0.003961140289902687, -0.002821055706590414, 0.02805372141301632, -0.009788239374756813, -0.00523996539413929, 0.0021595251746475697, -0.011195750907063484, 0.056364815682172775, 0.016857970505952835, 0.00011668524530250579, -0.0019031569827347994, 0.009329792112112045, -0.019946452230215073, 0.013496027328073978, 0.010061698965728283, -0.008581800386309624, -0.0022319115232676268, 0.00041798074380494654, -0.0048941196873784065, 0.024193117395043373, 0.007528177462518215, -0.013552327640354633, -0.015289600007236004, -0.005489295814186335, -0.0036313803866505623, -0.004130041692405939, 0.007809679955244064, 0.0034182430244982243, 0.008115311153233051, -0.009305663406848907, 0.0018136794678866863, 0.004878033883869648, 0.021008118987083435, -0.02390357106924057, -0.026139505207538605, -0.02213412895798683, 0.023726627230644226, 0.022118043154478073, -0.009289577603340149, -0.02575344406068325, 0.015981290489435196, -0.013962517492473125, 0.00196649506688118, -0.01573196053504944, 0.013946431688964367, 0.009892797097563744, -0.01101880706846714, -0.02248801663517952, -0.01385795883834362, 0.01423597615212202, -0.013069752603769302, -0.013077795505523682, -0.006494661793112755, -0.003589155152440071, -0.011855270713567734, 0.017195772379636765, -0.00647053262218833, 0.003380039008334279, -0.012233288027346134, -0.012538919225335121, -0.02071857452392578, -0.0026340577751398087, 0.003951086662709713, 0.01425206195563078, 0.0044316514395177364, 0.003665562951937318, -0.0013079806230962276, -0.012571090832352638, 0.00033202196937054396, 0.011187708005309105, -0.011300308629870415, -0.012265459634363651, 0.0193351898342371, -0.01151746790856123, -0.001952419988811016, 0.012112644501030445, 0.01701882854104042, 0.00419840682297945, -0.027249429374933243, -0.008006731048226357, -0.013045623898506165, -0.013874044641852379, -0.027796346694231033, -0.008316383697092533, 0.003918915055692196, -0.011766798794269562, 0.011613982729613781, 0.011227922514081001, -0.01964082196354866, -0.005871335044503212, -3.1606181437382475e-05, -0.012386104092001915, -0.01517699845135212, -0.00992496870458126, 0.0027908948250114918, 0.015868689864873886, 0.006490640342235565, -0.01233784668147564, -0.015482629649341106, -0.013455812819302082, 0.011654198169708252, 0.009892797097563744, 0.00017958342505153269, -0.00904829055070877, -0.0022721262648701668, 0.0008585822070017457, 0.007910216227173805, -0.0018016151152551174, 0.02345316857099533, 0.0034001462627202272, 0.004540231078863144, 0.0056380899623036385, -0.01270782109349966, 0.00196247361600399, -0.0009269470465369523, -0.0026561757549643517, 0.007258739322423935, -5.011118992115371e-05, 0.004560338333249092, 0.01478289533406496, -0.0021172999404370785, -0.018257439136505127, 0.02334056794643402, 0.0017231965903192759, 0.0027908948250114918, 0.014855281449854374, -0.0010918270563706756, 0.012627391144633293, 0.0230188500136137, 0.022182386368513107, 0.012257416732609272, -0.011654198169708252, 0.007496005855500698, 0.002585800364613533, 0.022439759224653244, -0.004085805732756853, 0.004262750037014484, -0.007290910929441452, -0.0019051677081733942, 0.0008545607561245561, 0.008103246800601482, -0.011372695676982403, -0.009032204747200012, 0.013664929196238518, -0.012482618913054466, -0.0009008075576275587, -0.001738277031108737, -0.011308351531624794, 0.03812346234917641, 0.017163600772619247, 0.002682315418496728, 0.008855259977281094, -0.013182353228330612, -0.01680971309542656, 0.025721272453665733, 0.0009817394893616438, -0.004278835840523243, 0.006776163820177317, -0.007242653518915176, -0.003965161740779877, 0.011332481168210506, -0.00012340862303972244, 0.01467029470950365, -0.012128730304539204, 0.016664939001202583, -0.0166971106082201, 0.004443715792149305, 0.003394114086404443, 0.014437049627304077, -0.003213148331269622, 0.010487973690032959, 0.016391480341553688, -0.00043808805639855564, 0.0041581918485462666, 0.012691735289990902, -0.012128730304539204, -0.002883388428017497, -0.018627412617206573, -0.004825754556804895, -0.01569978892803192, -0.001711132237687707, -0.006852571852505207, 0.010439716279506683, -0.006430318113416433, -0.009337835013866425, -0.025286955758929253, -0.0030502791050821543, 0.013270825147628784, 0.012772164307534695, 0.011975915171205997, 0.0034584575332701206, -0.007982602342963219, -0.010809690691530704, -0.014388792216777802, 0.00766892870888114, 0.004105912987142801, -0.0004883563378825784, 0.014091203920543194, 0.0032473308965563774, 1.8426466340315528e-05, 0.0024048343766480684, -0.006908872164785862, -0.004825754556804895, 0.008694401942193508, -0.002459124196320772, -0.028648898005485535, 0.006655520293861628, 0.02432180382311344, 0.013656886294484138, -0.013656886294484138, 0.005091171246021986], "64a43dd8-c4af-47f0-9faa-86d752cceb8f": [0.02808525040745735, -0.03262805938720703, -0.02025558613240719, 0.012379155494272709, -0.02491864562034607, -0.007682692259550095, -0.0027741200756281614, 0.02330194041132927, -0.013975819572806358, 0.015418829396367073, 0.006697303615510464, -0.01567269302904606, 0.010321530513465405, 0.015151605010032654, 0.012205460108816624, 0.040270667523145676, 0.01761006750166416, 0.037838928401470184, 0.024370836094021797, -0.01302049309015274, 0.060339197516441345, -0.019627608358860016, -0.01994827762246132, -0.0025937436148524284, 0.027256855741143227, 0.0035173369105905294, 0.007555760908871889, 0.0027590885292738676, -0.03856043517589569, 0.015605886466801167, -0.005100639536976814, 0.019534079357981682, 0.010107751004397869, 0.0026104452554136515, -0.017850568518042564, -0.029127424582839012, -0.00798999983817339, 0.03479257598519325, -0.0010805873898789287, 0.005695213098078966, -0.013909013010561466, 0.01173113752156496, 0.01513824425637722, 0.003974958322942257, -0.041312843561172485, -0.001925683580338955, -0.0012217151233926415, 0.0029778783209621906, -0.014550351537764072, -0.017423009499907494, 0.022794213145971298, 0.03238755837082863, -0.009392926469445229, 0.0213779266923666, 0.0099407359957695, -0.059109967201948166, -0.03155916556715965, 0.07199016958475113, 0.006052625365555286, -0.04836755990982056, -0.004552830476313829, -0.01567269302904606, 0.0140025420114398, -0.011477273888885975, -0.028218863531947136, -0.035113245248794556, -0.005668490659445524, -0.012653060257434845, -0.03105143830180168, 0.004442600533366203, -0.028486086055636406, 0.0089920898899436, -0.04099217429757118, 0.007348662242293358, 0.0023499017115682364, -0.027016354724764824, 0.06440100073814392, -0.006887700874358416, 0.0013670182088389993, 0.016273945569992065, -0.02145809307694435, 0.003176626283675432, 0.006633837707340717, 0.017997542396187782, 0.04879511520266533, 0.05002434924244881, 0.006283106282353401, -0.02233993262052536, -0.01587310992181301, -0.02052280865609646, -0.016648059710860252, 0.012392516247928143, -0.013581663370132446, -0.018652239814400673, -0.013033854775130749, 0.003670990699902177, 0.01871904730796814, -0.010134473443031311, 0.02006852813065052, 0.007174966391175985, -0.007749498356133699, 0.017997542396187782, -0.008631337434053421, 0.02739046886563301, 0.040003444999456406, -0.007074757479131222, 0.02338210679590702, -0.01276663038879633, -0.028646420687437057, 0.008410877548158169, 0.022126153111457825, -0.041847292333841324, -0.02346227504312992, 0.0163674745708704, -0.044973812997341156, -0.01026140432804823, -0.03524685651063919, -0.0066271573305130005, -0.007622567005455494, -0.03709070384502411, 0.021551622077822685, -0.021845567971467972, -0.01679503358900547, -0.0038981311954557896, -0.019667692482471466, -0.017195869237184525, 0.032253947108983994, 0.015739498659968376, 0.025239314883947372, -0.0026889422442764044, 0.00112401123624295, -0.040537893772125244, 0.02827230840921402, -0.0044659823179244995, 0.008731546811759472, 0.02164515107870102, 0.002710654167458415, 0.04443936422467232, -0.014991271309554577, 0.03885438293218613, -0.041580066084861755, -0.04099217429757118, -0.0004434249422047287, -0.019320301711559296, -0.0018004222074523568, 0.013762040063738823, -0.00022066863311920315, 0.05333792790770531, -0.015418829396367073, 0.00140376144554466, -0.07386073470115662, -0.015726137906312943, 0.0032901964150369167, 0.027524080127477646, 0.03003598563373089, -0.018972909078001976, -0.02056289277970791, 0.03492618724703789, 0.04120595380663872, 0.028566254302859306, 0.012786672450602055, -0.03890782594680786, 0.006947826128453016, 0.030383378267288208, 0.052055250853300095, 0.05488782748579979, 0.059911638498306274, 0.06744735687971115, -0.013788762502372265, 0.014456822536885738, 0.06744735687971115, 0.016995452344417572, 0.011657650582492352, 0.009245953522622585, 0.020442642271518707, -0.029341204091906548, 0.04077839478850365, 0.035834748297929764, 0.04409197345376015, -0.02739046886563301, -0.005638428032398224, -0.007829665206372738, 0.011156605556607246, 0.021057257428765297, 0.009052216075360775, 0.033990904688835144, 0.006329870317131281, 0.022486906498670578, -0.011417148634791374, 0.01748981513082981, -0.03559424728155136, 0.0032901964150369167, -0.020322391763329506, 0.03404434770345688, -0.01906643807888031, -0.03401762619614601, 0.009793762117624283, -0.011898152530193329, -0.01527185644954443, 0.036609698086977005, -0.02808525040745735, -0.033643510192632675, -0.049516621977090836, 0.013681872747838497, -0.007609205786138773, 0.02776458114385605, -0.010936145670711994, -0.02614787593483925, 0.02403680607676506, -0.014844297431409359, 0.04636337608098984, -0.03674330934882164, 0.010709005407989025, -0.015899833291769028, -0.027096521109342575, 0.013180827721953392, -0.0029678575228899717, 0.034765854477882385, 0.013548260554671288, -0.057720400393009186, 0.012412558309733868, 0.014830936677753925, -0.025827206671237946, -0.03174621984362602, -0.02164515107870102, 0.00032943717087619007, 0.01894618757069111, 0.014376655220985413, -0.027871470898389816, -0.020282307639718056, -0.0022864360362291336, -0.016434280201792717, -0.009767039678990841, -0.011069757863879204, 0.02025558613240719, -0.0018956208368763328, 0.01937374658882618, -0.0050338334403932095, 0.02318168804049492, -0.01702217385172844, -0.017997542396187782, 0.02446436509490013, -0.03522013500332832, 0.02426394633948803, 0.022326571866869926, 0.03356334567070007, 0.008831756189465523, 0.0024367496371269226, 0.020509447902441025, -0.004005020949989557, -0.019921554252505302, 0.012445961125195026, -0.009466413408517838, 0.008464322425425053, -0.030677324160933495, -0.0008425909327343106, -0.0001868480903794989, -0.05595672130584717, 0.03479257598519325, 0.019133243709802628, 0.004242182243615389, 0.027604246512055397, -0.0009235932375304401, 0.0212576761841774, 0.02861969918012619, -0.012619657441973686, 0.019654331728816032, -0.022780852392315865, 0.01192487496882677, 0.03845354542136192, -0.003305227728560567, -0.03986983373761177, 0.011129883117973804, 0.014269765466451645, 0.0009260984370484948, -0.0008292297134175897, 0.01683511771261692, -0.02907397970557213, 0.008711504749953747, -0.006400016602128744, -0.004592913668602705, -0.0010405037319287658, 0.005768700037151575, 0.0030029306653887033, -0.002927773864939809, 0.0212977584451437, -0.023248495534062386, 0.010254723951220512, -0.028833478689193726, -0.0163674745708704, 0.005564941558986902, -0.010869339108467102, 0.026321571320295334, 0.02156498283147812, 0.03513996675610542, -0.013080618344247341, 0.0027841408737003803, 0.013327800668776035, -0.014871019870042801, 0.008384155109524727, 0.014924464747309685, -0.023555802181363106, -0.019814666360616684, -0.032681506127119064, 0.032334115356206894, -0.04334374517202377, 0.001139042666181922, 0.014470184221863747, -0.018785852938890457, 0.026749130338430405, 0.02053617127239704, -0.0179841797798872, -0.01949399709701538, 0.008778311312198639, 0.009372884407639503, 0.029100703075528145, 0.0140025420114398, 0.0013010472757741809, -0.032868560403585434, -0.018665602430701256, 0.0034338294062763453, -0.00843759998679161, -0.05665150657296181, 0.015058076940476894, 0.028486086055636406, -0.03139882907271385, 0.043851472437381744, 0.005384565331041813, 0.016688143834471703, -0.01829148828983307, -0.0459090955555439, 0.011183327995240688, -0.017169147729873657, -0.0181845985352993, -0.027524080127477646, -0.03524685651063919, -0.011103160679340363, -0.03901471570134163, -0.031131604686379433, -0.009499816223978996, -0.009847206994891167, -0.016073528677225113, 0.00997413881123066, -0.03682347759604454, 0.0081837372854352, -0.008450961671769619, -0.008577892556786537, -0.008931964635848999, -0.007382065057754517, 0.01217205636203289, 0.0009386245510540903, -0.015071437694132328, 0.0494631752371788, 0.008130292408168316, 0.0012050135992467403, -0.019814666360616684, -0.030223043635487556, -0.005087278317660093, -0.006306488066911697, 0.01386892981827259, 0.024250585585832596, -0.037224315106868744, -0.014269765466451645, 0.0248117558658123, -0.027016354724764824, 0.05352498218417168, -0.008477684110403061, -0.0038847699761390686, -0.0027724497485905886, 0.01941382884979248, -0.03693036735057831, -0.004789991769939661, 0.0036142056342214346, 0.00803008396178484, 0.011022993363440037, -0.0230748001486063, 0.07364695519208908, -0.02372949756681919, -0.029474815353751183, 0.007141563575714827, -0.0001656580570852384, 0.025199230760335922, 0.004532788414508104, 0.018812574446201324, 0.012753269635140896, 0.02553326077759266, -0.0008893551421351731, -0.01552571915090084, -0.01875912956893444, -0.005057215690612793, -0.011617566458880901, 0.002974538132548332, 0.015044715255498886, 0.0015891481889411807, -0.02115078642964363, -0.02395663782954216, -0.002987899351865053, -0.03340300917625427, 0.00664385873824358, -0.027524080127477646, -0.0027941616717725992, 0.008791672065854073, -0.0025402989704161882, -0.0005711914855055511, 0.002032573102042079, -0.06498889625072479, -0.03115832805633545, 0.008096889592707157, 0.002860967768356204, -0.01367519237101078, 0.018238043412566185, -0.003994999919086695, -0.0051574246026575565, 0.026602156460285187, 0.05734628811478615, 0.021631788462400436, 0.0332159548997879, 0.036182139068841934, -0.018157877027988434, 0.0008025073329918087, 0.07027993351221085, 0.048821840435266495, -0.020830117166042328, 0.011457232758402824, 0.03019632026553154, 0.011951597407460213, 0.026508629322052002, 0.028913645073771477, 0.0007954091997817159, -0.00957330223172903, 0.017396287992596626, 0.06210287660360336, -0.028031805530190468, -0.020268946886062622, -0.005815464071929455, -0.02992909774184227, 0.014657240360975266, 0.014202959835529327, 0.02438419684767723, 0.0003505228378344327, -0.026508629322052002, -0.012973728589713573, -0.0280050840228796, 0.0043423911556601524, 0.002875999081879854, -0.008811714127659798, -0.03527357801795006, 0.011370384134352207, -0.020749948918819427, -0.0033820548560470343, -0.008337391540408134, -0.0130538959056139, -0.07941899448633194, -0.011791262775659561, 0.0328151173889637, 0.01209188997745514, -0.025012174621224403, -0.0031699456740170717, 0.03775876387953758, -0.0457487627863884, -0.04326357692480087, -0.022005902603268623, 0.01374867931008339, -0.010341571643948555, 0.006369953975081444, -0.039843108505010605, 0.019266856834292412, 0.012278946116566658, 0.01221214048564434, -0.012058486230671406, -0.009499816223978996, -0.008136972784996033, 0.014042625203728676, 0.020509447902441025, -0.0010597105138003826, -0.0196810532361269, -0.025105701759457588, -0.01396245788782835, 0.013842207379639149, -0.01960088685154915, -0.027898194268345833, -0.027630969882011414, -0.023168327286839485, 0.0012659741332754493, -0.002440089825540781, -0.012779991142451763, -0.033910736441612244, -0.028566254302859306, 0.019213411957025528, -0.005103979725390673, 0.059644415974617004, 0.03158588707447052, 0.014817574992775917, 0.023048076778650284, 0.01744973286986351, 0.006112750619649887, -0.004245522432029247, -0.040270667523145676, 0.0009361193515360355, -0.01683511771261692, 0.00843759998679161, 0.0008509416948072612, -0.025974180549383163, 0.017195869237184525, 0.03054371289908886, -0.017703594639897346, -0.008003361523151398, 0.05258969962596893, 0.014243043027818203, 0.006109410431236029, -0.028592975810170174, 0.01660797744989395, -0.0294213704764843, 0.022206321358680725, 0.020202141255140305, -0.015044715255498886, -0.011350343003869057, 0.00990065187215805, 0.01178458146750927, -0.00922591146081686, 0.0010530299041420221, -0.01964096911251545, -0.0025169167201966047, -2.690508154046256e-05, -0.004733206704258919, -0.014430100098252296, -0.02522595226764679, -0.0362088643014431, 0.012492725625634193, -0.0011482284171506763, 0.0036175460554659367, 0.007428829558193684, -0.007054715882986784, 0.0035473995376378298, 0.021190868690609932, -0.012806713581085205, -0.013595025055110455, 0.024491086602211, 0.005100639536976814, -0.011009631678462029, -0.048821840435266495, 0.03639591857790947, -0.004993749782443047, -0.01591319404542446, 0.02622804418206215, 0.0279249157756567, -0.0197612214833498, 0.021885652095079422, 0.011276856064796448, 0.03473912924528122, -0.04141973331570625, 0.012319030240178108, -0.03823976591229439, -0.017823847010731697, 0.0034638920333236456, -0.05133374407887459, 0.012559532187879086, 0.010802533477544785, -0.011564121581614017, -0.007221730891615152, -0.012339072301983833, 0.0028927007224410772, -0.008851797319948673, 0.017276037484407425, -0.002344891196116805, -0.019467273727059364, 0.003430489217862487, 0.009606705978512764, -0.0025686915032565594, 0.011276856064796448, 0.03789237514138222, -0.0006158680189400911, 0.030169598758220673, -0.0038547073490917683, 0.021471455693244934, 0.00791651289910078, -0.00756912212818861, 0.029261035844683647, -0.03527357801795006, -0.019320301711559296, -0.010722366161644459, 0.01240587793290615, 0.029261035844683647, 0.003714414779096842, 0.019467273727059364, 0.02426394633948803, -0.002440089825540781, -0.0010956187034025788, 0.01009438931941986, 0.009406287223100662, 0.016888562589883804, 0.025720316916704178, -0.009245953522622585, -0.0028860201127827168, -0.02322177216410637, 0.013708595186471939, -0.004589573480188847, 0.031986720860004425, -0.004482683725655079, -0.0034204681869596243, 0.0074689132161438465, 0.00024718226632103324, -0.0004060553328599781, -0.015017992816865444, -0.012893562205135822, 0.047592610120773315, 0.006633837707340717, 0.008023402653634548, -0.01140378788113594, 0.023275217041373253, 0.021965818479657173, -0.012051805853843689, 0.031024714931845665, 0.00046388429473154247, 0.024785032495856285, -0.005274335388094187, 0.01859879679977894, 0.025519900023937225, 0.004125271923840046, 0.02445100247859955, 0.03962933272123337, -0.04518759250640869, 0.04975712299346924, -0.03158588707447052, 0.02403680607676506, 0.009833846241235733, 0.0004943645326420665, 0.008658059872686863, -0.028299029916524887, -0.013521538116037846, -0.029448093846440315, -0.005845526698976755, 0.0019173327600583434, -0.01309398002922535, 0.021271036937832832, -0.031104883179068565, 0.0022162897512316704, 0.03436501696705818, -0.021444732323288918, -0.026682324707508087, -0.015164966695010662, -0.002755748340860009, 0.006136132869869471, 0.040618058294057846, -0.017235953360795975, 0.030490268021821976, -0.02915414795279503, 0.006283106282353401, 0.0593237467110157, 0.0014906093711033463, -0.02280757576227188, -0.0030680664349347353, 0.008825074881315231, 0.024624699726700783, 0.010715685784816742, -0.019427191466093063, -0.008524447679519653, 0.04748572036623955, -0.011771220713853836, 0.0035073161125183105, 0.02033575251698494, -0.013641789555549622, -0.014243043027818203, 0.007549080066382885, 0.01228562742471695, 0.026548711583018303, -0.002238001674413681, 0.0014655570266768336, 0.012138653546571732, 0.04406525194644928, 0.024865200743079185, -0.023622607812285423, 0.023368746042251587, -0.005287696607410908, 0.010348252020776272, -0.014456822536885738, 0.007923194207251072, 0.016073528677225113, -0.002996250055730343, -0.001350316684693098, -0.01941382884979248, 0.0060593062080442905, 0.004101889673620462, 0.04564187303185463, -0.03369695693254471, 0.001701048226095736, -0.03655625507235527, 0.012379155494272709, -0.013468093238770962, -0.015472274273633957, 0.010368294082581997, 0.018077708780765533, -0.012813394889235497, 0.030516989529132843, 0.0019624268170446157, 0.005782060790807009, 0.014376655220985413, -0.013474774546921253, 0.008350752294063568, -0.019974999129772186, -0.04588237404823303, 0.003497295081615448, 0.017423009499907494, -0.04435919597744942, -0.013695234432816505, 0.018972909078001976, -0.02561342716217041, -0.031372107565402985, -0.0005753668374381959, 0.006740727461874485, 0.011056396178901196, -0.004275585059076548, 0.00785638764500618, 0.031104883179068565, 0.004716504830867052, 0.016340753063559532, -0.03284183889627457, 0.021471455693244934, -0.004182056989520788, -0.002737376606091857, 0.007101479917764664, 0.005260974168777466, -0.014603795483708382, -0.04013705626130104, -0.01867896318435669, 0.025319481268525124, 0.00880503375083208, -0.0036309072747826576, 0.007502316031605005, 0.011216730810701847, 0.041580066084861755, -0.00044676524703390896, -0.0001881007046904415, -0.0009127372177317739, -0.015512357465922832, -0.0163674745708704, 0.007696053478866816, 0.0006805863231420517, 0.038266487419605255, -0.0001650317426538095, 0.012619657441973686, -0.026856020092964172, 0.0165678933262825, -0.014403377659618855, 0.017543260008096695, 0.007696053478866816, 0.0017453072359785438, 0.024638060480356216, 0.002359922742471099, 0.011851388029754162, 0.04387819394469261, -0.036342475563287735, 0.01937374658882618, 0.032601337879896164, -0.02250026725232601, -0.004683102015405893, 0.022366655990481377, 0.01357498299330473, -0.02553326077759266, 0.03420468047261238, -0.009593344293534756, 0.021057257428765297, -0.01169105339795351, -0.028753310441970825, 0.0013519867789000273, 0.03383056819438934, 0.005137383006513119, 0.0489020049571991, 0.02853953093290329, -0.00571859534829855, 0.020616337656974792, 0.016848478466272354, 0.0003590823616832495, 0.027524080127477646, -0.002371613634750247, -0.03492618724703789, 0.006089368835091591, 0.008724866434931755, -0.04633665457367897, -0.020442642271518707, -0.025853930041193962, -0.03473912924528122, 0.02522595226764679, -0.004202098585665226, 0.000853446894325316, -0.0522957518696785, 0.023635970428586006, 0.007589163724333048, -0.006243022624403238, 0.009980819188058376, 0.009506496600806713, 0.0009169126278720796, 0.01879921369254589, 0.0064902049489319324, 9.733845945447683e-05, -0.04125939682126045, -0.008825074881315231, -0.0035774623975157738, -0.02045600302517414, 0.002288106130436063, 0.017930734902620316, -0.05026485025882721, 0.03743809461593628, 0.030062709003686905, -0.011383745819330215, -0.02099045179784298, 0.0014238032745197415, -0.048287391662597656, -0.03246772661805153, 0.018050987273454666, 0.0071950084529817104, -0.03457879647612572, -0.01853198930621147, 0.017904013395309448, -0.014055986888706684, -0.044973812997341156, 0.005595004186034203, 0.022526990622282028, 0.03316250815987587, 0.013895652256906033, -0.0038580475375056267, 0.015164966695010662, 0.014309849590063095, -0.018037624657154083, -0.009853888303041458, -0.007963277399539948, 0.017823847010731697, 0.00040396765689365566, 0.007148243952542543, -0.013895652256906033, -0.016033444553613663, -0.018852658569812775, -0.015445551835000515, 0.0629579946398735, -0.013134063221514225, -0.002129441825672984, -0.046122875064611435, -0.009994180873036385, -0.025974180549383163, 0.041580066084861755, -0.03217377886176109, -0.029955819249153137, -0.0025954139418900013, -0.004789991769939661, 0.013788762502372265, -0.009346161969006062, 0.01188479084521532, 0.01949399709701538, 0.05878929793834686, 0.02049608714878559, 0.03647608682513237, -0.02348899655044079, 0.007969957776367664, -0.0027323663234710693, -0.006810873746871948, 0.0005022977711632848, -0.024584615603089333, 0.02907397970557213, -0.03682347759604454, -0.0045394692569971085, 0.02283429726958275, 0.020041806623339653, -0.011951597407460213, 0.009446371346712112, -0.004696463234722614, -0.021551622077822685, 0.005254293326288462, 0.003918173257261515, -0.02507898025214672, 0.0051841470412909985, 0.012445961125195026, 0.01606016792356968, 0.015191689133644104, 0.0077094146981835365, -0.016394197940826416, -0.006319849286228418, 0.009893971495330334, 0.004589573480188847, -0.04363769292831421, -0.013454732485115528, 0.01101631298661232, -0.002927773864939809, 0.00038789244717918336, -0.0027473976369947195, -0.020309029147028923, -0.0014271435793489218, 0.026027625426650047, 0.01714242435991764, -0.0020542850252240896, -0.006423398852348328, 0.028325753286480904, -0.00791651289910078, -0.007508996408432722, -0.009653469547629356, -0.023141605779528618, 0.012125292792916298, 0.010962868109345436, -0.02880675531923771, 0.015806304290890694, 0.0068542975932359695, 0.001504805637523532, -0.029207590967416763, -0.01159084402024746, -0.010962868109345436, 0.014764130115509033, -0.06691291183233261, 0.03444518521428108, 0.020549532026052475, -0.010161195881664753, -0.0035674413666129112, 0.01652780920267105, -0.012980409897863865, -0.013140744529664516, -0.009546579793095589, 0.05526193976402283, 0.05574294179677963, 0.0030947888735681772, 0.00957330223172903, -0.011831345967948437, -0.008477684110403061, -0.006089368835091591, 0.016942007467150688, 0.002358252415433526, 0.012492725625634193, -0.01814451441168785, 0.006236341781914234, -0.005311078391969204, -0.006146153900772333, 0.001635912456549704, 0.029955819249153137, -0.023475635796785355, 0.00542130833491683, 0.0130538959056139, 0.01121005043387413, 0.011677692644298077, 0.012158695608377457, -0.023021355271339417, -0.010942826047539711, -0.013815484941005707, -4.260188688931521e-06, -0.021885652095079422, -0.005952416453510523, 0.013260995037853718, 0.0031098201870918274, 0.008617976680397987, -0.021391287446022034, -0.03559424728155136, 0.013227592222392559, 0.0018321550451219082, 0.032494448125362396, 0.02088356204330921, 0.033135786652565, -0.009954096749424934, 0.005317759234458208, 0.006947826128453016, 0.014991271309554577, 0.005625066813081503, -0.007027993444353342, 0.03890782594680786, 0.008150334469974041, -0.016888562589883804, -0.021124063059687614, 0.023328661918640137, 0.004162014927715063, 0.00280752289108932, 0.02303471602499485, -0.013628427870571613, 0.0077094146981835365, 0.006096049211919308, 0.012880200520157814, -0.0022947867400944233, -0.03204016759991646, -0.014897742308676243, -0.003350321901962161, -0.012278946116566658, -0.018465183675289154, -0.020362474024295807, -0.009239272214472294, -0.021057257428765297, -0.02596081979572773, 0.03789237514138222, -0.007923194207251072, -0.0246915053576231, -0.010107751004397869, 0.0021093999966979027, 0.01324763335287571, -0.02195245772600174, 0.012846797704696655, -0.02869986556470394, -0.014430100098252296, 0.023408830165863037, -0.03436501696705818, 0.007729456294327974, 0.004569531884044409, 0.007883110083639622, -0.00015511522360611707, -0.004586233291774988, -0.035995084792375565, -0.007221730891615152, -0.04171367734670639, -0.04510742425918579, -0.011477273888885975, -0.016514448449015617, 0.051894914358854294, 0.009807123802602291, 0.01240587793290615, 0.0074087874963879585, -0.007976639084517956, -0.0031248515006154776, -0.013528219424188137, -0.038613878190517426, -0.008364113979041576, -0.012025083415210247, 0.01583302579820156, 0.010755768977105618, 0.013588344678282738, 0.0007711920188739896, -0.005240932106971741, -0.012038445100188255, 0.018117792904376984, -0.006663900334388018, 0.017690233886241913, 0.00598915945738554, -0.015338662080466747, -0.022139515727758408, 0.012265585362911224, -0.020402558147907257, -0.006784151308238506, 0.03428484871983528, -0.02923431433737278, -0.005267654545605183, -0.0228743813931942, 0.004836755804717541, -0.006967867724597454, 0.015579164028167725, -0.011951597407460213, -0.016153695061802864, -0.04783311113715172, -0.034177958965301514, -0.01698208972811699, 0.003991659730672836, 0.0017670192755758762, -0.0031131606083363295, 0.014563712291419506, 0.002845936454832554, -0.008698143996298313, 0.0017853908939287066, -0.006216300185769796, -0.029554983600974083, 0.006420058663934469, 0.017904013395309448, 0.0012091889511793852, -0.00023862275702413172, 0.017129063606262207, 0.003848026739433408, 0.021083978936076164, -0.011096480302512646, -0.0017887311987578869, 0.015966638922691345, 0.024330751970410347, -0.006513586733490229, -0.02680257521569729, 0.027604246512055397, -0.001660964684560895, 0.01728939823806286, -0.013314439915120602, -0.025760401040315628, 0.015779582783579826, 0.026775851845741272, 0.010395016521215439, 0.010929465293884277, -0.01579294353723526, 0.006797512527555227, -0.003921513445675373, 0.012065167538821697, 0.005444690585136414, -0.008203779347240925, 0.010769130662083626, 0.01606016792356968, -0.01286683976650238, -0.003378714434802532, -0.01663469895720482, -0.009366204030811787, 0.01309398002922535, -0.011904832907021046, 0.01740964874625206, 0.01173113752156496, 0.027550803497433662, -0.007562441285699606, 0.010936145670711994, -0.013394607231020927, -0.0050338334403932095, 0.0163674745708704, -0.022126153111457825, -0.010341571643948555, 0.01361506711691618, -0.0026020945515483618, 0.04545481503009796, 0.02638837695121765, 0.010388336144387722, -0.00595909683033824, -0.005741977598518133, -0.002523597329854965, 0.009152424521744251, 0.019520718604326248, 0.032521169632673264, -0.011744498275220394, 0.024143695831298828, 0.01710234023630619, 0.0050805979408323765, 0.051520802080631256, 0.013708595186471939, 0.006179556716233492, -0.002713994588702917, 0.016648059710860252, 0.0041787163354456425, -0.004101889673620462, -0.021124063059687614, -0.01488438155502081, -0.0003983308852184564, -0.013855568133294582, 0.010461823083460331, -0.018692323938012123, 0.012138653546571732, -0.018438462167978287, 0.016514448449015617, 0.01867896318435669, 0.018505267798900604, 0.016581254079937935, 0.020215502008795738, 0.01706225797533989, 0.010020903311669827, 0.056491170078516006, -0.009326119907200336, -0.018050987273454666, -0.00903217401355505, 0.007963277399539948, 0.005083938129246235, -0.011971638537943363, 0.021057257428765297, -0.01282675564289093, 0.0012734897900372744, 0.010201279073953629, -0.009145744144916534, 0.0036776713095605373, -0.007068077102303505, -0.019974999129772186, -0.03850698843598366, 0.00010109629511134699, -0.030597157776355743, 0.0019757880363613367, -0.022526990622282028, -0.01659461483359337, -0.015605886466801167, -0.03693036735057831, -0.0017970819026231766, -0.002304807770997286, -0.0013795442646369338, 0.037571705877780914, -0.00313487253151834, -0.03195999935269356, -0.016113612800836563, -0.011116521432995796, -0.03070404753088951, 0.0018672283040359616, -0.012820075266063213, 0.03412451595067978, -0.01671486534178257, 0.01461715716868639, 0.010020903311669827, 0.017543260008096695, -0.022206321358680725, 0.007235092110931873, 0.018692323938012123, -0.0212576761841774, 0.0229946319013834, -0.0099407359957695, 0.009292717091739178, -0.009219231083989143, 0.0246113371104002, 0.00811025034636259, -0.015071437694132328, -0.012926965020596981, -0.0019473955035209656, -0.009446371346712112, 0.0035841430071741343, -0.0037244355771690607, 0.010501906275749207, -0.0033436412923038006, 0.02573367953300476, 0.003066396340727806, -0.026134515181183815, 0.0023966659791767597, -0.021618427708745003, -0.004713164642453194, 0.007575802505016327, 8.669125236338004e-05, -0.00937956478446722, 0.023208411410450935, 0.032868560403585434, 0.01583302579820156, 0.0036041848361492157, -0.0013127382844686508, -0.002211279235780239, -0.013227592222392559, -0.009306078776717186, -0.02242010086774826, -0.007943235337734222, 0.013367884792387486, 0.010802533477544785, -0.03324267640709877, -0.018732408061623573, -0.020482726395130157, -0.002822554437443614, 0.014403377659618855, 0.008370794355869293, 0.0037277759984135628, -0.005514836870133877, 1.0947314876830205e-05, -0.0020108611788600683, 0.037838928401470184, 0.017262674868106842, 0.013775401748716831, 0.0008718185708858073, -0.006119431462138891, 0.0048835198394954205, -0.013321120291948318, 0.02773785963654518, -0.004946985747665167, -0.007782901171594858, -0.0002152406523237005, -0.0020125312730669975, -0.014390016905963421, 0.03342973068356514, -0.0063398913480341434, -0.011002951301634312, -0.00857121217995882, -0.0017135743983089924, 0.006002520676702261, 0.0036442684940993786, -0.006379975005984306, -0.00922591146081686, 0.011971638537943363, -0.011517358012497425, 0.004385815002024174, 0.024758310988545418, 0.0027206751983612776, 0.0002020882093347609, 0.0068542975932359695, 0.013788762502372265, -0.012800033204257488, 0.01363510824739933, 0.010321530513465405, 0.010996270924806595, -0.009853888303041458, 0.029261035844683647, -0.008664741180837154, 0.04719177260994911, -0.022126153111457825, 0.006757428869605064, -0.0015574153512716293, 0.0019206730648875237, 0.0013336151605471969, 0.010201279073953629, -0.05836173892021179, -0.03535374626517296, 0.022313211113214493, 0.013494815677404404, -0.014336572028696537, -0.002356582321226597, -0.014951187185943127, 0.006289786659181118, -0.004038423765450716, 0.04224812611937523, -0.025332842022180557, 0.018852658569812775, 0.012726547196507454, -0.010488545522093773, -0.02688274160027504, -0.011938235722482204, 0.014363294467329979, 0.031185049563646317, 0.026241404935717583, -0.049596790224313736, -0.011817985214293003, 0.0081837372854352, 0.026815935969352722, 0.03070404753088951, -0.021818846464157104, -0.006550330203026533, 0.02819214016199112, 0.01247936487197876, 0.006096049211919308, 0.005234251730144024, -0.011964958161115646, -0.001144888112321496, -0.021484816446900368, 0.013621747493743896, 0.016928644850850105, 0.007796262390911579, -0.015392106957733631, 0.023475635796785355, 0.00023110707115847617, -0.003674331121146679, 0.011737817898392677, 0.017382927238941193, -0.015205049887299538, 0.011911513283848763, 0.005417968146502972, -0.03775876387953758, -0.009286036714911461, 0.0013144084950909019, 0.017169147729873657, 0.0003382054856047034, -0.016474364325404167, -0.0013302748557180166, 0.006597094237804413, -0.010755768977105618, 0.027443913742899895, -0.033884014934301376, 0.011911513283848763, 0.0049035619013011456, 0.00425554346293211, 0.007936554960906506, -0.021204231306910515, 0.027524080127477646, -0.015017992816865444, 0.03190655633807182, 0.008010041899979115, 0.024905284866690636, 0.006062646396458149, 0.022981271147727966, -0.011524038389325142, 0.008531128987669945, 0.018665602430701256, -0.0002970780187752098, -0.006800852715969086, 0.009546579793095589, 0.023823026567697525, -0.022847658023238182, 0.01767687313258648, -0.009466413408517838, -0.00011377900227671489, -0.00017599211423657835, 0.01748981513082981, 0.0248117558658123, 0.004395836032927036, 0.00038329954259097576, -0.004893540870398283, -0.020402558147907257, -0.020309029147028923, -0.011664330959320068, -0.012098570354282856, 0.0057854014448821545, 0.014670602045953274, -0.009853888303041458, -0.029261035844683647, -0.020696504041552544, 0.0026204660534858704, 0.010181237012147903, 0.0014722376363351941, -0.01706225797533989, -0.015298578888177872, 0.0022964568343013525, 0.013461412861943245, 0.008063486777245998, -0.016661420464515686, -0.02199254184961319, 0.05333792790770531, 0.027630969882011414, -0.0049169231206178665, 0.013521538116037846, 0.012011722661554813, 0.0008459312375634909, 0.01763678900897503, -0.004319009371101856, -0.0022045986261218786, 0.00037557509494945407, 0.03519340977072716, -0.019387107342481613, 0.023235132917761803, 0.0032567933667451143, 0.012987090274691582, -0.0059223538264632225, 0.01536538451910019, 0.013802123256027699, 0.009693553671240807, -0.006887700874358416, 0.01409607008099556, 0.0036175460554659367, -0.013621747493743896, 0.030142875388264656, 0.010735727846622467, 0.00017828856653068215, 0.022513628005981445, -0.007609205786138773, -0.029822207987308502, -0.0017035534838214517, -0.01732948236167431, 0.002657209523022175, 0.013935735449194908, -0.024597976356744766, -0.003403766779229045, 0.018131153658032417, -0.01787729002535343, 0.00395825644955039, -0.017543260008096695, -0.014443461783230305, -0.0077094146981835365, 0.028031805530190468, -0.0015290228184312582, 0.005708574317395687, -0.0007010456756688654, -0.009426329284906387, 0.006062646396458149, 0.015445551835000515, -0.01579294353723526, 0.006827575154602528, -0.006112750619649887, -0.038533713668584824, -0.042461905628442764, -0.009339481592178345, 0.031799666583538055, 0.0016876871231943369, -0.008591254241764545, -0.003624226665124297, -0.007288536988198757, -0.011283536441624165, -0.007221730891615152, 0.0032384218648076057, -0.009038854390382767, -0.005424648988991976, 0.013508177362382412, -0.02107061818242073, 0.018558712676167488, -0.026334933936595917, 0.010308168828487396, -0.02334202267229557, 0.014951187185943127, -0.006787491496652365, 0.02364933118224144, -0.009439690969884396, 0.027951639145612717, -0.025666872039437294, 0.007555760908871889, -0.005070576909929514, -0.007261814549565315, 0.0020826775580644608, 0.012800033204257488, -0.01837165467441082, -0.01871904730796814, -0.004973708186298609, -0.005083938129246235, 0.010568711906671524, 0.01984138786792755, 0.010107751004397869, 0.01452362909913063, -0.0043023074977099895, 0.004272244870662689, 0.002316498663276434, -0.007949916645884514, -0.004622976761311293, 0.03367023542523384, -0.0063131689094007015, 0.008143654093146324, 0.007769539952278137, -0.005765359383076429, 0.027069799602031708, 0.02966187335550785, 0.0009578313329257071, -0.0005732791614718735, 0.032948728650808334, -0.010675601661205292, 0.011049715802073479, -0.003198338206857443, 0.031799666583538055, -0.006206279154866934, 0.003048024605959654, -0.01941382884979248, -0.006987909786403179, -0.014897742308676243, -0.019240133464336395, -0.003413787577301264, 0.0247315876185894, -0.011490635573863983, 0.009479774162173271, 0.014643879607319832, 0.0033887354657053947, -0.018465183675289154, 0.009600024670362473, 0.0007933214656077325, 0.010060986503958702, 0.0029311140533536673, 0.0089920898899436, -0.01552571915090084, -0.011904832907021046, 0.01859879679977894, 0.015418829396367073, -0.009546579793095589, -0.01452362909913063, 0.010468503460288048, -0.028833478689193726, 0.029367925599217415, 0.028646420687437057, -0.028566254302859306, -0.024504447355866432, -0.018612157553434372, -0.007863068953156471, -0.022366655990481377, -0.03003598563373089, -0.005351162049919367, -0.010468503460288048, -0.02037583664059639, -0.0074087874963879585, 0.004108570050448179, 0.01902635395526886, -0.021190868690609932, 0.034418459981679916, -0.026094431057572365, -0.01761006750166416, 0.007963277399539948, 9.909994332701899e-06, -0.022526990622282028, 0.00803008396178484, 0.010027583688497543, -0.024584615603089333, 0.03420468047261238, -0.0019323640735819936, 0.011510677635669708, -0.015686053782701492, -0.013628427870571613, -0.0031933276914060116, -0.022700686007738113, -0.0027357065118849277, -0.020429281517863274, 0.033135786652565, -0.012699824757874012, -0.00586556876078248, -0.010615476407110691, -0.03150571882724762, -0.0011515687219798565, 0.009499816223978996, -0.007883110083639622, 0.0009436350082978606, 0.01055535115301609, 0.012325710617005825, -0.020015083253383636, -0.006470162887126207, -0.0022029285319149494, -0.013040535151958466, 0.020509447902441025, 0.005147404037415981, -0.016434280201792717, -0.00809020921587944, -0.017904013395309448, -0.0015440541319549084, 0.0013987510465085506, -0.01822468265891075, -0.007174966391175985, -0.0029461453668773174, -0.01215201523154974, -0.0049302843399345875, -0.0028910303954035044, -0.021965818479657173, -0.003061385825276375, -0.011831345967948437, -0.005114000756293535, 0.005174126010388136, 0.000823801732622087, 0.004606274887919426, 0.017155785113573074, 0.013882290571928024, 0.010795853100717068, 0.008016722276806831, 0.0013144084950909019, -0.009052216075360775, -0.03126521781086922, 0.0073954262770712376, -0.018999632447957993, -0.016968728974461555, 0.007595844566822052, -0.012512767687439919, 0.046390101313591, 0.009927374310791492, 0.00425554346293211, 0.0003647191042546183, -0.008063486777245998, -0.0013093979796394706, -0.0034672324545681477, 0.019093159586191177, 0.011136563494801521, 0.023021355271339417, -0.00022296508541330695, -0.010415058583021164, 0.007328620180487633, -0.006159515120089054, -0.01540546864271164, 0.004148653708398342, 0.010435100644826889, 0.01163092814385891, -0.03527357801795006, 0.013468093238770962, 0.02326185628771782, 0.007716095075011253, 0.0026371676940470934, 0.0246113371104002, -0.00259040342643857, 0.024985451251268387, -0.007983319461345673, 0.005468072835355997, 0.008357432670891285, 6.884151662234217e-05, -0.004365773405879736, -0.009713595733046532, -0.010134473443031311, 0.008404197171330452, -0.020856838673353195, 0.009533219039440155, 0.012973728589713573, 0.011991680599749088, -0.016153695061802864, -0.01045514177531004, 0.015779582783579826, 0.0004651369235944003, 0.004108570050448179, 0.005200848449021578, -0.017850568518042564, -0.003954916261136532, -0.003527357941493392, -0.004850117024034262, -0.005270994734019041, -0.008751588873565197, -0.00861129630357027, -0.01595327816903591, 0.011430510319769382, 0.009807123802602291, 0.017730318009853363, -0.012031763792037964, 0.004836755804717541, 0.0261879600584507, -0.0030062708538025618, 0.0013645129511132836, -0.009640108793973923, -0.0038881103973835707, -0.01036161370575428, -0.01591319404542446, -0.006222980562597513, -0.01173113752156496, -0.00993405468761921, -0.020509447902441025, 0.0030714068561792374, -0.006874339655041695, -0.0035073161125183105, 0.022553712129592896, 0.020162057131528854, -0.023782942444086075, 0.003894791007041931, 0.020977091044187546, -0.00299457972869277, 0.018558712676167488, -0.01941382884979248, 0.0033987562637776136, 0.015966638922691345, 0.013334481976926327, -0.006974548567086458, 0.0005098134279251099, 0.0022981271613389254, -0.006834255997091532, 0.003580802585929632, -0.001828814740292728, 0.02518587000668049, -0.018465183675289154, -0.002116080606356263, 0.0021227612160146236, 0.015779582783579826, -0.003807943081483245, 0.0023114883806556463, -0.0021778761874884367, -0.01618041843175888, -0.002197918016463518, 0.018117792904376984, -0.01552571915090084, 0.016193779185414314, 0.008497726172208786, -0.003914832603186369, 0.027056438848376274, 0.009820484556257725, 0.0028676483780145645, 0.0010789171792566776, -0.000969522341620177, -0.026856020092964172, -0.015311939641833305, -0.00033716161851771176, -0.011296898126602173, -3.5255834518466145e-05, -0.012759950011968613, -0.03586146980524063, 0.01618041843175888, -0.004382474813610315, -0.018745768815279007, -0.011203369125723839, -0.002558670472353697, 0.008217140100896358, -0.00588227016851306, -0.002911072224378586, -0.009666831232607365, 0.011450551450252533, -0.005377884488552809, -0.011183327995240688, -0.008096889592707157, -0.010181237012147903, -0.014510267414152622, -0.0035306981299072504, 0.005878929514437914, 0.009733636863529682, 0.00468978239223361, 0.008678101934492588, 0.00297954841516912, 0.004846776835620403, -0.008678101934492588, 0.020856838673353195, -0.025239314883947372, 0.012779991142451763, 0.02256707288324833, -0.0034238086082041264, 0.0044526210986077785, 0.002172865904867649, 0.009620066732168198, 0.007261814549565315, -0.028833478689193726, 0.007275175768882036, -0.0014246383216232061, 0.03361678868532181, -0.0050204722210764885, -1.5018306839920115e-05, 0.01683511771261692, -0.008464322425425053, -0.006079347804188728, -0.01783720776438713, 0.023328661918640137, -0.011089798994362354, 0.0008709834655746818, 0.010020903311669827, -0.008617976680397987, -0.004369113594293594, -0.014924464747309685, -0.005147404037415981, 0.02187229134142399, 0.013281037099659443, 0.020856838673353195, 0.009312759153544903, -0.003377044340595603, -0.0015440541319549084, -0.0013060576748102903, -0.0008926954469643533, -0.030142875388264656, 0.004592913668602705, -0.012873520143330097, 0.0017853908939287066, 0.0012041785521432757, -0.011470593512058258, 0.011677692644298077, -0.02260715700685978, 0.008203779347240925, 0.02045600302517414, 0.011838026344776154, 0.013488135300576687, -0.02680257521569729, 0.006637177895754576, -0.0044927047565579414, -0.019547441974282265, 0.012045125477015972, -0.02907397970557213, -0.0005185817135497928, 0.0036876923404634, -0.01761006750166416, -0.02465142123401165, -0.014991271309554577, 0.011964958161115646, 0.007589163724333048, 0.030650602653622627, -0.016193779185414314, 0.011383745819330215, 0.01871904730796814, 0.012559532187879086, 0.0030730769503861666, 0.0016993781318888068, -0.0312384944409132, 0.009640108793973923, -0.017503177747130394, -0.004422558471560478, -0.0017302759224548936, -0.045508261770009995, -0.01663469895720482, -0.002695622853934765, 0.0002805852855090052, 0.004445940721780062, 0.006209619343280792, 0.004609615541994572, 0.018304849043488503, 0.012051805853843689, -0.007161605171859264, -0.007221730891615152, -0.0007678517140448093, 0.014216320589184761, -0.014109431765973568, -0.02049608714878559, -0.007829665206372738, 0.010488545522093773, -0.017048895359039307, 0.005808783229440451, -0.011771220713853836, 0.016901923343539238, -0.0001283928140765056, -0.01960088685154915, 0.011377065442502499, -0.01771695725619793, 0.01972113735973835, 0.007402107119560242, 0.003537378739565611, 0.00968687329441309, 0.005721935536712408, 0.009927374310791492, -0.0038279849104583263, -0.019694413989782333, -0.007943235337734222, -0.0026805915404111147, -0.02187229134142399, 0.02376958169043064, -0.007068077102303505, 5.9603495174087584e-05, -2.1020408894401044e-05, -0.03000926412642002, -0.005441350396722555, -0.0005640933522954583, 0.029261035844683647, 0.012619657441973686, 0.02091028355062008, -0.026722408831119537, -0.015539079904556274, 0.018545351922512054, -0.01540546864271164, 0.015806304290890694, 0.01691528409719467, -0.0140025420114398, 0.010668921284377575, 0.0180643480271101, 0.007535718847066164, -0.03187983110547066, 0.0003246355045121163, -0.0012392516946420074, 0.0195608027279377, 0.012653060257434845, -0.0014747428940609097, 0.015659330412745476, 0.01563260890543461, -0.007669331040233374, -0.0023666033521294594, -0.005975798703730106, -0.013361204415559769, -0.004609615541994572, 0.0036041848361492157, 0.02346227504312992, 0.004749908111989498, 0.010755768977105618, -0.01602008379995823, 0.010341571643948555, -0.025239314883947372, -0.014456822536885738, -0.004205438774079084, 0.008925284259021282, -0.001939044683240354, 0.008591254241764545, -0.0017043885309249163, 0.005792081821709871, -0.005237591918557882, -0.012332390993833542, 0.02499881200492382, 0.02076331153512001, -0.00028309051413089037, 0.03070404753088951, 0.011791262775659561, -0.0038046028930693865, 0.005708574317395687, -0.0035206773318350315, -0.002428398933261633, -0.00395825644955039, 0.007869749329984188, 0.01448354497551918, 0.01698208972811699, -0.01618041843175888, 0.02060297690331936, -0.00945305172353983, -0.014603795483708382, 0.01121005043387413, 0.014055986888706684, -0.005324439611285925, 0.0058889505453407764, 0.006236341781914234, 0.02268732525408268, -0.003908152226358652, -0.013301078230142593, -0.00945305172353983, 0.021792123094201088, 6.226529512787238e-05, 0.015044715255498886, 0.011671011336147785, 0.014416739344596863, 0.023742860183119774, 0.016273945569992065, -0.0015824675792828202, -0.039762943983078, -0.0021611747797578573, 0.03209361061453819, -0.006423398852348328, -0.017195869237184525, -0.006426739040762186, 0.007769539952278137, -0.01683511771261692, 0.00222464045509696, -0.01918668858706951, -0.012125292792916298, -0.005147404037415981, -0.020121973007917404, 0.0054580518044531345, -0.008925284259021282, -0.002850946970283985, 0.011357023380696774, 0.016394197940826416, -0.013668511994183064, 0.015565802343189716, 0.0043423911556601524, 0.007669331040233374, 0.015699414536356926, 0.02025558613240719, -0.010896061547100544, -0.02029566839337349, 0.010909423232078552, 0.005815464071929455, 0.015779582783579826, 0.007742817513644695, 0.011316940188407898, -0.010715685784816742, -0.006840936373919249, -0.010308168828487396, -0.009399606846272945, 0.01082257553935051, 0.0038847699761390686, -0.0034071069676429033, 0.01933366246521473, -0.025680234655737877, 0.009332801215350628, 0.004769949708133936, -0.021631788462400436, -0.00634657172486186, -0.014951187185943127, -0.014416739344596863, 0.016167057678103447, 2.4908729756134562e-05, -0.015044715255498886, -0.012051805853843689, 0.008116931654512882, 0.01829148828983307, 0.0064768437296152115, -0.017650149762630463, -0.007248453330248594, 0.01783720776438713, 0.011103160679340363, 0.020589616149663925, 0.010849297977983952, 0.0033386307768523693, -0.005648449063301086, -0.006092709023505449, 0.0014020913513377309, 0.005915672983974218, -0.005073917098343372, 0.008136972784996033, -7.494800229324028e-05, -0.032601337879896164, 0.03115832805633545, 0.00961338635534048, -0.018572073429822922, 0.00811025034636259, -0.008664741180837154, 0.019614247605204582, 0.010869339108467102, -0.0031649351585656404, -0.024410920217633247, 0.009753678925335407, 0.019266856834292412, 0.012319030240178108, -0.02056289277970791, -0.0014129473129287362, 0.0122455433011055, -0.021284397691488266, -0.0038981311954557896, 0.007288536988198757, -0.006062646396458149, 0.01338124554604292, -0.0010071008000522852, 0.006222980562597513, 0.019119882956147194, 0.03361678868532181, -0.012325710617005825, 0.0213779266923666, -0.012078528292477131, 0.003978298511356115, -0.0020025104749947786, 0.008324029855430126, -0.003487274283543229, -0.007088118698447943, 0.001268479274585843, -0.0012434270465746522, -0.01026808563619852, -0.0008200439042411745, 0.0071549247950315475, -0.0006743232370354235, 0.0013402957702055573, 0.017088979482650757, -0.008157014846801758, 0.015191689133644104, 0.011223411187529564, -0.012379155494272709, -0.005504815839231014, 0.002331529976800084, 0.00045344585669226944, 0.0140025420114398, -0.017342843115329742, 0.011985000222921371, 0.007969957776367664, 0.007348662242293358, 0.007522357627749443, -0.0015056406846269965, 0.0038012624718248844, -0.016581254079937935, -0.006901061628013849, -0.03278839588165283, -0.02091028355062008, -0.004546149633824825, 0.007114841137081385, 0.0332159548997879, -0.02295454777777195, 0.012412558309733868, -0.007295217365026474, 0.019012993201613426, 0.01121005043387413, 0.01116996631026268, -0.00395825644955039, 0.021230952814221382, 0.02445100247859955, -0.005534878931939602, -0.012278946116566658, -0.005087278317660093, -0.006610455457121134, 0.03508652001619339, -0.024130335077643394, -0.00012630513811018318, 0.01718250848352909, -0.0164877250790596, 0.018972909078001976, -0.00704803504049778, -0.02068314328789711, -0.0015014653326943517, 0.012098570354282856, -0.008818394504487514, 0.026548711583018303, 0.05499471724033356, -0.004716504830867052, -0.022780852392315865, 0.010321530513465405, 0.003473913064226508, -0.004145313519984484, -0.0056350878439843655, -0.0068542975932359695, 0.010415058583021164, -0.03147899731993675, -0.008604614995419979, -0.005103979725390673, 0.004175376147031784, 0.031799666583538055, -0.004820054396986961, -0.014496906660497189, 0.00336034270003438, 0.00020375836174935102, -0.017904013395309448, -0.009954096749424934, 0.01706225797533989, 0.02164515107870102, -0.007188327610492706, 0.0043757944367825985, 0.008491044864058495, 0.01740964874625206, -0.0008893551421351731, 0.001695202779956162, -0.00017411318549420685, 0.008310669101774693, 0.021164147183299065, 0.003026312682777643, 0.01886601932346821, 0.011664330959320068, 0.011096480302512646, -0.001200003083795309, -0.028486086055636406, -0.019173327833414078, -0.0006722355610691011, 0.004656379576772451, 0.0043156687170267105, -0.005551580339670181, -0.015311939641833305, 0.006349912378937006, -0.003457211423665285, -0.009005451574921608, -0.004830075427889824, -0.004532788414508104, -0.000460961542557925, 0.021230952814221382, 0.018572073429822922, 0.01984138786792755, -0.0005807948182336986, 0.02869986556470394, 0.02749735862016678, -0.0038580475375056267, 0.023716136813163757, 0.002182886702939868, 0.021965818479657173, -0.006233001593500376, -0.005364523269236088, -0.022166237235069275, 0.012666421011090279, 0.006186237558722496, 0.002359922742471099, 0.0058755893260240555, -0.02557334490120411, 0.0005031328182667494, 0.02477167174220085, 0.016688143834471703, 0.025319481268525124, -0.016955368220806122, 0.014804214239120483, -0.012612976133823395, 0.006296467501670122, 0.01249940600246191, 0.0027306959964334965, -0.013260995037853718, -0.014202959835529327, 0.0023766241502016783, 0.0008212965331040323, 0.000562005618121475, 0.013307759538292885, 0.018318209797143936, 0.0030881082639098167, -0.003771199844777584, -0.007021312601864338, -0.01652780920267105, -0.006901061628013849, 0.00770273432135582, 0.01527185644954443, 0.008758269250392914, -0.004556170664727688, -0.010876020416617393, 0.036876924335956573, -0.01488438155502081, 0.012131973169744015, -0.02010861225426197, -0.0230748001486063, -0.00014039702364243567, 0.0071081602945923805, -0.01413615420460701, 0.018705684691667557, 0.014189598150551319, 0.013695234432816505, -0.001695202779956162, 0.01357498299330473, -0.006834255997091532, -0.0022764152381569147, -0.010147834196686745, 0.025626789778470993, -0.01324763335287571, 0.009620066732168198, 0.003473913064226508, -0.02773785963654518, -0.021658511832356453, -0.01990819349884987, 0.01182466559112072, 0.00803008396178484, -0.012987090274691582, 0.018612157553434372, -0.004729866050183773, 0.023048076778650284, -0.012192098423838615, 0.001625056378543377, -0.024277307093143463, -0.005214209668338299, 0.006166195496916771, -0.01937374658882618, 0.015445551835000515, 0.0012509427033364773, -0.017382927238941193, 0.014256404712796211, 0.0009311088942922652, -0.00034488606615923345, -0.006400016602128744, -0.003026312682777643, 0.007268494926393032, -0.0035073161125183105, -0.0014488555025309324, 0.0003158672188874334, -0.0006730706663802266, -0.0019306939793750644, 0.005297717172652483, 0.021190868690609932, -0.011503996327519417, -0.009119021706283092, 3.637144118329161e-06, -0.02649526670575142, -0.016888562589883804, -0.006166195496916771, -0.0028793395031243563, -0.026909464970231056, 0.00035574205685406923, 0.00497036799788475, -0.023048076778650284, 0.0011323620565235615, -0.003144893329590559, -0.009286036714911461, -0.011243453249335289, 0.013428010046482086, -0.008036764338612556, 0.0011632598470896482, 0.009085618890821934, -0.007889791391789913, -0.009025493636727333, -0.01409607008099556, 0.000948645465541631, -0.03594163805246353, 0.02915414795279503, -0.018091069534420967, 0.0003311073232907802, 0.012913603335618973, -0.026361655443906784, 0.039762943983078, 0.010141153819859028, -0.037384647876024246, -0.011089798994362354, -0.012145334854722023, 0.01188479084521532, -0.01084261666983366, -0.014055986888706684, 0.023662691935896873, -0.00504719465970993, -0.02684265933930874, -0.025292759761214256, -0.010835936293005943, 0.031211772933602333, -0.030570434406399727, 0.016661420464515686, 0.004863478243350983, -0.01195827778428793, 0.014871019870042801, -0.017770402133464813, 0.025399649515748024, -0.034525349736213684, -0.007268494926393032, -0.00897204875946045, -0.007849707268178463, -0.029127424582839012, -1.5227074982249178e-05, -0.0012526129139587283, -0.004252203274518251, -0.018825937062501907, -0.003914832603186369, 0.0009319439996033907, -0.001990819349884987, -0.004816714208573103, -0.008157014846801758, -0.0245712548494339, -0.0017820505890995264, -0.004536128602921963, -0.010461823083460331, -0.021671872586011887, -0.014162876643240452, -0.011664330959320068, -0.012432600371539593, 0.004536128602921963, -0.0029778783209621906, -0.009753678925335407, -0.0017302759224548936, -0.025947457179427147, 0.036262307316064835, 0.02403680607676506, -0.002834245329722762, -0.0050805979408323765, 0.007802943233400583, 0.012486045248806477, 0.008825074881315231, -0.0036876923404634, -0.012272265739738941, -0.03174621984362602, 0.001362007693387568, 0.001531527959741652, -0.004696463234722614, 0.005124021787196398, -0.020736588165163994, -0.022780852392315865, -0.01064887922257185, 0.012272265739738941, -0.019694413989782333, -0.01783720776438713, -0.014603795483708382, -0.010929465293884277, 0.009833846241235733, -0.0007365363417193294, 0.003580802585929632, -0.003340301103889942, -0.011183327995240688, 0.007074757479131222, -0.002371613634750247, -0.007295217365026474, 0.014162876643240452, 0.005187487229704857, -0.005341141484677792, -0.016621338203549385, -0.024985451251268387, -0.023448912426829338, -0.00951317697763443, -0.0058488668873906136, 0.03073076903820038, -0.02526603639125824, -0.014390016905963421, -0.010855978354811668, -0.029715318232774734, 0.026989631354808807, 0.004442600533366203, 0.006276425439864397, 0.008617976680397987, 0.012860158458352089, 0.0004135710187256336, -9.739064989844337e-05, 0.014376655220985413, -0.004843436647206545, -0.0018488565692678094, -0.014764130115509033, 0.004339050967246294, 0.005745317786931992, -0.014416739344596863, 0.011123202741146088, 0.017904013395309448, 0.0247315876185894, 0.0014154525706544518, -0.0179841797798872, -0.013521538116037846, 0.007502316031605005, 0.02033575251698494, 0.001559920608997345, -0.02199254184961319, -0.006737387273460627, -0.02280757576227188, -0.011022993363440037, -0.015699414536356926, 0.010622156783938408, -0.01374867931008339, 0.020242223516106606, 0.009994180873036385, 0.004963687155395746, -0.026722408831119537, -0.0071682860143482685, -0.022967910394072533, 0.003931534476578236, 0.01344137080013752, 0.004205438774079084, 0.007622567005455494, 0.005454711616039276, 0.0031682755798101425, 0.0058488668873906136, -0.022045986726880074, -0.007402107119560242, 0.03089110367000103, -0.01759670488536358, 0.01606016792356968, -0.012586253695189953, -0.005177466664463282, -0.006179556716233492, 0.004546149633824825, 0.012592935003340244, 0.008978729136288166, 0.0015281876549124718, -0.008076847530901432, 0.01998836174607277, -0.016046805307269096, 0.0006045944755896926, 0.006927784066647291, 0.005240932106971741, -0.005965777672827244, 0.010775811038911343, -0.01752989925444126, -0.01007434818893671, 0.016300668939948082, -0.00870482437312603, 0.019654331728816032, -0.005815464071929455, 0.008617976680397987, -0.004222140647470951, -0.03244100138545036, 0.01736956462264061, -0.00045469848555512726, -0.005060555879026651, -0.027337023988366127, -0.004743227269500494, -0.0007177471998147666, -0.01188479084521532, 0.006256383843719959, -0.001070566475391388, -0.010528628714382648, 0.009579983539879322, -0.0006734881899319589, 0.028031805530190468, 0.018959548324346542, -0.01134366262704134, 0.0025052258279174566, 0.005838846322149038, 0.011891471222043037, 0.00037244355189614, 0.004920263309031725, -0.03153244033455849, -0.008524447679519653, 0.00044175481889396906, -0.015124882571399212, 0.007321939803659916, 0.000275783590041101, -0.01348145492374897, -0.04037755727767944, 0.004028403200209141, -0.019427191466093063, 0.024370836094021797, 0.004118591081351042, 0.011156605556607246, 0.0005361182847991586, 0.025626789778470993, -0.00385136716067791, 0.0013954107416793704, 0.005721935536712408, -0.015111521817743778, 0.025747040286660194, 0.014804214239120483, 0.003754498204216361, -0.010161195881664753, 0.0198013037443161, -0.007007951382547617, 0.0123657938092947, -0.001689357217401266, -0.0016066847601905465, -0.01134366262704134, 0.0009812134085223079, 0.0032734950073063374, -0.01209188997745514, -0.009272675961256027, 0.013100660406053066, 0.012225501239299774, 0.011223411187529564, -0.006096049211919308, -0.013655150309205055, -0.0036442684940993786, 0.010802533477544785, 0.0099407359957695, -0.002334870398044586, 0.010909423232078552, -0.025279397144913673, 0.0003943642950616777, 0.03000926412642002, -0.015726137906312943, 0.002550319768488407, 0.025720316916704178, 0.014590434730052948, -0.004726525861769915, 0.008831756189465523, -0.009606705978512764, -0.007261814549565315, -0.011190008372068405, 0.013695234432816505, 0.0073753846809268, 0.010388336144387722, 0.012005041353404522, 0.024290669709444046, 0.00039165030466392636, 0.005438010208308697, -0.005057215690612793, -0.008116931654512882, 0.0050071110017597675, -0.04451953247189522, 0.009546579793095589, 0.005992500111460686, 0.016688143834471703, -0.0006158680189400911, -0.005838846322149038, -0.0006359097897075117, -0.00025720318080857396, 0.0013469763798639178, -0.0066405185498297215, 0.024437641724944115, -0.000847601389978081, -0.005260974168777466, -0.025372926145792007, -0.017770402133464813, 0.026949549093842506, 0.003771199844777584, 0.010702324099838734, 0.003131532110273838, -0.0039114924147725105, -3.961388210882433e-05, -0.006343231536448002, 0.010274766013026237, 0.0004300637519918382, 0.011544080451130867, -0.021658511832356453, 0.012860158458352089, 0.012953687459230423, -0.043771304190158844, -0.010501906275749207, 0.014937826432287693, 0.002545309253036976, 0.013160785660147667, 0.004532788414508104, 0.030570434406399727, 0.015766220167279243, 0.012719865888357162, -0.012873520143330097, -0.024237224832177162, -0.007188327610492706, 0.006289786659181118, -0.015111521817743778, -0.0022830956149846315, 0.002767439465969801, -0.006757428869605064, -0.006536968983709812, 0.016501087695360184, -0.004639678169041872, 0.012653060257434845, 0.004141973331570625, -0.0029361245688050985, -0.009887291118502617, -0.027951639145612717, -0.020696504041552544, -0.010715685784816742, -0.017088979482650757, 0.03334956616163254, -0.01802426390349865, 0.0028943708166480064, -0.002874328987672925, 0.00016461420455016196, 0.002657209523022175, -0.01587310992181301, -0.010294808074831963, 0.018478544428944588, 0.018705684691667557, -0.01910652220249176, 0.004673080984503031, 0.029955819249153137, -0.005474753212183714, -0.027256855741143227, -8.355971658602357e-05, 0.002361592836678028, 0.0054847742430865765, -0.006860978435724974, -0.009753678925335407, 0.0019507358083501458, -0.01523177232593298, 0.007575802505016327, 0.0058622281067073345, 0.0037745400331914425, 0.0029311140533536673, 0.016821755096316338, 0.00618289690464735, -0.012051805853843689, -0.024678144603967667, -0.002288106130436063, -0.0035039756912738085, -0.004262223839759827, -0.016193779185414314, 0.012820075266063213, 0.002558670472353697, -0.010154514573514462, 0.014443461783230305, 0.005731956567615271, 0.014269765466451645, -0.009967458434402943, -0.012806713581085205, 0.00574865797534585, 0.0037043937481939793, -0.019507357850670815, 0.01906643807888031, -0.011250133626163006, 0.016126973554491997, 0.0024968748912215233, 0.0019891492556780577, -0.012352433055639267, 0.0009954096749424934, -0.01810443215072155, 0.01894618757069111, 0.029688594862818718, 0.01191819366067648, -0.00474656792357564, 0.023368746042251587, -0.0032050188165158033, 0.028111973777413368, -0.009386246092617512, -3.2019917853176594e-05, -0.006677261553704739, -9.937395225279033e-05, -0.0001045409808284603, -0.02845936454832554, -0.02511906437575817, -0.008083528839051723, -0.004021722357720137, 0.006967867724597454, 0.0005657635047100484, 0.004385815002024174, -0.004863478243350983, 0.0005135712563060224, 0.007983319461345673, 0.02099045179784298, -0.003674331121146679, 0.011617566458880901, -0.009680191986262798, -0.0022864360362291336, 0.008531128987669945, 0.0009937395807355642, -0.005939055234193802, 0.0073753846809268, 0.019881471991539, -0.0070012710057199, 0.019787942990660667, 0.0022597135975956917, -0.005808783229440451, 0.0010271425126120448, 0.0013102330267429352, 0.012987090274691582, 0.033803846687078476, 0.008123612031340599, 0.0005841351230628788, -6.586655945284292e-05, 0.0027457273099571466, 0.015498996712267399, -0.005277675576508045, 0.00857121217995882, -0.006119431462138891, -0.0040918686427176, -0.006934464909136295, 0.0027290259022265673, -0.004653039388358593, 7.019851182121783e-05, -0.005905651953071356, 0.012739907950162888, -0.013508177362382412, 0.03706397861242294, -0.014069347642362118, 0.005481434054672718, -0.01810443215072155, -0.012759950011968613, 0.008965367451310158, 0.024317391216754913, 0.004435919690877199, -0.0004697298281826079, 0.02614787593483925, -0.010234681889414787, -0.008076847530901432, -0.005885610356926918, -0.007148243952542543, -0.02391655556857586, 0.005117340944707394, -0.003807943081483245, -0.008497726172208786, -0.026375016197562218, 0.01140378788113594, 0.005103979725390673, 0.006760769058018923, 0.014496906660497189, 0.005571621935814619, -0.0013569972943514585, 0.01787729002535343, -0.008230501785874367, 0.0008513592183589935, 0.005651789251714945, -0.011397106572985649, -0.003293536836281419, -0.006253043655306101, 0.009279356338083744, 0.0045127468183636665, -0.001552404835820198, 0.023555802181363106, 0.020349113270640373, 0.006754088681191206, -0.01756998337805271, 0.008344071917235851, 0.0023782942444086075, -0.01771695725619793, 0.003483933862298727, -0.009105660952627659, 0.008444281294941902, -0.005605025216937065, 0.00277746026404202, 0.005107320379465818, 0.022393377497792244, -0.011657650582492352, 0.0011106501333415508, 0.005681851878762245, 0.015191689133644104, 0.0036175460554659367, -0.002927773864939809, 0.026869380846619606, -0.016300668939948082, 0.0122455433011055, 0.0016793363029137254, 0.010435100644826889, 0.0009160775225609541, 0.00756912212818861, 0.003268484491854906, 0.005571621935814619, 0.021738678216934204, 0.011370384134352207, 0.002712324494495988, 0.011069757863879204, -0.0036943729501217604, 0.012666421011090279, 0.0013244292931631207, 0.01937374658882618, 0.01894618757069111, 0.0005185817135497928, -0.0012158695608377457, 0.008070167154073715, 0.009372884407639503, 0.001990819349884987, 0.0017686893697828054, -0.013788762502372265, -0.0074087874963879585, 0.0070012710057199, -0.010248043574392796, 0.005681851878762245, -0.008751588873565197, -0.007068077102303505, -0.010515267960727215, 0.011183327995240688, 0.01567269302904606, 0.013975819572806358, -0.008263904601335526, -0.020669782534241676, 0.0016676452942192554, 0.006961187347769737, 0.018211321905255318, 0.0025402989704161882, 0.006293126847594976, 0.0014020913513377309, 0.0007820479804649949, 0.0028709887992590666, -0.03735792636871338, -0.022045986726880074, 0.0019607567228376865, -0.003497295081615448, -0.00206096563488245, 0.010789171792566776, -0.021244313567876816, 0.009920693933963776, -0.005591663997620344, -0.021230952814221382, -0.028058528900146484, -0.019934916868805885, -0.00955326110124588, 0.014603795483708382, -0.0024734928738325834, -0.040805116295814514, 0.010147834196686745, 0.006840936373919249, 0.0008233842090703547, 0.027951639145612717, 0.004486024379730225, -0.003076417138800025, 0.005982479080557823, -0.010682282969355583, 0.0071348827332258224, -0.011156605556607246, 0.008531128987669945, 0.014456822536885738, 0.008424239233136177, -0.04868822544813156, -0.03166605159640312, 0.009600024670362473, -0.018344933167099953, -0.0074689132161438465, 0.0007043859804980457, -0.0013269345508888364, 0.0082438625395298, -0.02360924705862999, 0.04556170478463173, -0.0009895641123875976, 0.010187918320298195, -0.02250026725232601, -0.013468093238770962, -0.004182056989520788, 0.018197959288954735, 0.000982883619144559, -0.02242010086774826, -0.00168017135001719, -0.00577872060239315, 0.0021444731391966343, 0.026281489059329033, 0.0042121196165680885, 0.00756912212818861, 0.021578343585133553, 0.00037745400913991034, 0.017850568518042564, -0.009045534767210484, 0.001066391123458743, 0.004556170664727688, -0.007174966391175985, -0.0034238086082041264, -0.02002844400703907, 0.005294376984238625, 0.005270994734019041, 0.006486864294856787, -0.02152489870786667, 0.006109410431236029, -0.0011782911606132984, -0.0013711935607716441, 0.0018204640364274383, -0.005745317786931992, 0.011043035425245762, 0.008397516794502735, -0.0214981772005558, 0.005407947115600109, 0.00607600761577487, -0.01910652220249176, 0.001219209865666926, -0.017663512378931046, 0.03639591857790947, -0.004826734773814678, 0.023061437532305717, -0.010562031529843807, 0.020268946886062622, 0.0002628399233799428, -0.01810443215072155, -0.014697324484586716, -0.00929939839988947, 0.010241363197565079, -0.0001797499426174909, -0.015245134010910988, 0.015926554799079895, 0.030677324160933495, 0.024718226864933968, 0.0025286078453063965, 0.015084799379110336, -0.018304849043488503, 0.00401504198089242, 0.00011336146417306736, -0.021324481815099716, 0.00623968243598938, 0.0015574153512716293, -0.021444732323288918, -0.008778311312198639, 0.008203779347240925, -0.006486864294856787, 0.0025269377510994673, -0.0004438424948602915, 0.013554941862821579, 0.002722345292568207, 0.027203410863876343, -0.0231148824095726, 0.013621747493743896, 0.008277266286313534, -0.014790852554142475, 0.03858715668320656, 0.009526538662612438, -0.001260963617824018, -0.0018739089136943221, 0.007021312601864338, -0.03174621984362602, 0.008931964635848999, 0.02153826132416725, -0.016153695061802864, -0.015766220167279243, 0.013514857739210129, 0.0027290259022265673, 0.001885599922388792, 0.0035874831955879927, -0.013407967984676361, -0.002795831998810172, -0.01667478308081627, -0.024785032495856285, 0.004552830476313829, 0.005868908949196339, -0.0023081479594111443, 0.008978729136288166, 0.0020392537117004395, 0.028031805530190468, 0.01363510824739933, 0.006486864294856787, -0.016995452344417572, -0.004673080984503031, -0.010862658731639385, 0.02661551907658577, 0.017342843115329742, -0.028940368443727493, -0.027163326740264893, 0.0018438461702317, 0.000823801732622087, -0.006974548567086458, -0.027363745495676994, 0.003580802585929632, -0.004813373554497957, -0.001625056378543377, -0.023315301164984703, -0.000150209161802195, 0.01269314344972372, 0.0003054287808481604, -0.011564121581614017, -0.013548260554671288, 0.0025018854066729546, 0.01540546864271164, 0.0022964568343013525, -0.004422558471560478, 0.004529448226094246, 0.002455121139064431, -0.029795484617352486, 0.00041753763798624277, 0.00014384170935954899, -0.005154084414243698, 0.0008734887233003974, -0.02006852813065052, -0.013935735449194908, -0.01587310992181301, -0.008043444715440273, 0.011357023380696774, -0.001924013369716704, 0.0038881103973835707, -0.0006918598664924502, 0.02338210679590702, -0.004743227269500494, -0.017904013395309448, 0.02002844400703907, -0.0163674745708704, 0.007595844566822052, -0.016541169956326485, -0.01321423053741455, 0.00680753355845809, -0.007642608601599932, -0.022660601884126663, -0.023048076778650284, 0.005147404037415981, -0.018478544428944588, 0.004432579502463341, 0.005451371427625418, -0.018398378044366837, -0.014563712291419506, 0.0002588733332231641, 0.014055986888706684, 0.01461715716868639, 0.003216709941625595, -0.001329439808614552, 0.009018812328577042, 0.0248117558658123, -0.004405857063829899, 0.0007386240758933127, 0.008063486777245998, -0.011657650582492352, 0.011791262775659561, 0.016554532572627068, -0.014657240360975266, 0.007903152145445347, 0.005835505668073893, 0.012626337818801403, 0.013708595186471939, -0.0018906103214249015, 0.004025062546133995, -0.0038446865510195494, -0.01448354497551918, -0.012005041353404522, -0.00206096563488245, -0.007362023461610079, -0.01461715716868639, 0.01110984105616808, -0.010602115653455257, -0.00542130833491683, -0.004716504830867052, 0.012385835871100426, -0.005357842892408371, 0.0279249157756567, 0.008130292408168316, 0.03981638699769974, 0.016821755096316338, -0.0008313173893839121, -0.003305227728560567, 0.02596081979572773, 0.018050987273454666, 0.011176646687090397, 0.007575802505016327, 0.02217959798872471, -0.0081837372854352, 0.01622050069272518, -0.007729456294327974, 0.0019724478479474783, 0.0074355099350214005, -0.004840095993131399, -0.017155785113573074, 0.0003678506473079324, 0.0035540801472961903, -0.017129063606262207, -0.013301078230142593, -0.015739498659968376, -0.00037808032357133925, -0.005561601370573044, -0.024437641724944115, 0.02984892949461937, 0.0228743813931942, 0.005858887918293476, 0.00558498315513134, -0.02060297690331936, -0.007388745900243521, 0.004703143611550331, 0.010321530513465405, -0.002227980876341462, 0.002887690206989646, 0.012980409897863865, -0.0061628553085029125, 0.017356203868985176, -0.007161605171859264, 0.024157056584954262, -0.011290217749774456, 0.002722345292568207, -0.01787729002535343, 0.003684351919218898, 0.00026743285707198083, 0.012739907950162888, 0.006894381251186132, 0.00015219245688058436, 0.00922591146081686, -0.01763678900897503, -0.018318209797143936, 0.03027648851275444, -0.010709005407989025, -0.003104809671640396, -0.00843759998679161, -0.015512357465922832, -0.007128202356398106, 0.012779991142451763, -0.004673080984503031, 0.015178327448666096, -0.001432154094800353, 0.009005451574921608, -0.019507357850670815, -0.0067641097120940685, 0.017035534605383873, 0.01886601932346821, 0.0012025083415210247, -0.00555492052808404, -0.02010861225426197, 0.006770790088921785, -0.02115078642964363, 0.022233042865991592, -0.001790401292964816, 0.010942826047539711, 0.0011549090268090367, 0.02280757576227188, -0.0005444690468721092, -0.00542130833491683, -0.006677261553704739, 0.016073528677225113, 0.008678101934492588, -0.010201279073953629, -0.03105143830180168, -0.0022547030821442604, 0.02422386221587658, 0.01875912956893444, -0.017302758991718292, -0.00612277165055275], "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1": [-0.020728206261992455, -0.013123327866196632, -0.02146903984248638, 0.03834189102053642, -0.04091212525963783, -0.004358063917607069, -0.009577913209795952, 0.005465533584356308, -0.004853212274610996, 0.020123444497585297, -0.0061647891998291016, 0.007892140187323093, 0.010454817675054073, -0.022890228778123856, 0.0015903342282399535, 0.03035903535783291, 0.006535205990076065, 0.010137317702174187, 0.020909635350108147, -0.01563308946788311, 0.0803123489022255, -0.0130099356174469, -0.02397879958152771, -0.0023283325135707855, 0.023464752361178398, -0.008096246980130672, -0.013433268293738365, -0.00555246789008379, -0.057512834668159485, -0.002906635869294405, -0.005771694239228964, 0.019473325461149216, 0.024145109578967094, 0.009147020056843758, -0.021060824394226074, -0.021000349894165993, -0.01195160299539566, 0.0019097239710390568, 0.0025059811305254698, -0.013365233317017555, -0.021529516205191612, 0.009524996392428875, -0.005329462233930826, -0.014552077278494835, -0.049560219049453735, 0.02030487358570099, 0.00086651009041816, 0.008353270590305328, -0.012820946983993053, -0.031568560749292374, 0.007997972890734673, 0.04354283958673477, -0.012329578399658203, 0.013425708748400211, 0.04992307722568512, -0.02830284647643566, -0.016268089413642883, 0.09162139147520065, 0.003961188718676567, -0.03994450718164444, 0.005083777941763401, -0.003280831966549158, 0.025445347651839256, -0.023812491446733475, 0.006074075121432543, -0.014106065966188908, 0.006361336912959814, 0.023615943267941475, -0.01622273214161396, -0.015678446739912033, -0.03002641722559929, -0.009706424549221992, -0.059478309005498886, 0.02543022856116295, -0.004505474586039782, -0.02654903754591942, 0.04581069573760033, 0.021650467067956924, 0.017643921077251434, 0.008859758265316486, -0.03061605989933014, 0.017976541072130203, 0.026428084820508957, 0.008572496473789215, 0.017885826528072357, 0.019957134500145912, 0.01084035262465477, -0.02981474995613098, -0.017114754766225815, -0.02372177690267563, -0.0026496120262891054, -0.008791722357273102, -0.017311302945017815, -0.0013295307289808989, 0.01146779302507639, 0.014567196369171143, -0.018173087388277054, 0.002128005027770996, 0.019155826419591904, -0.018641779199242592, 0.007177765015512705, 0.0014741065679118037, -0.011981840245425701, 0.031961653381586075, 0.016842612996697426, -0.02849939465522766, 0.0017556987004354596, 0.022376181557774544, -0.030268320813775063, 0.01951868273317814, -0.001982484245672822, -0.04387545958161354, 0.009812258183956146, -0.007676693610846996, -0.065193310379982, -0.01359957829117775, -0.0010980203514918685, -0.03362474963068962, -0.017175231128931046, -0.054882120341062546, 0.01242029294371605, -0.0007880800403654575, -0.0069434200413525105, 0.026715347543358803, 0.000532001256942749, 0.016600707545876503, 0.025657013058662415, 0.02555118128657341, 0.01761368289589882, -0.008859758265316486, 0.00801309198141098, -0.017719516530632973, 0.016706541180610657, -0.013304756954312325, 0.021242253482341766, 0.04063998535275459, 0.027607370167970657, 0.048774030059576035, -0.012639518827199936, 0.044964030385017395, -0.023827610537409782, -0.0447826012969017, -0.00602871784940362, 0.007230681832879782, -0.00788458064198494, 0.004278688691556454, -0.01681237481534481, 0.027425941079854965, -0.02089451625943184, 0.036618318408727646, -0.03716260567307472, -0.010742079466581345, -0.01297213789075613, 0.013622256927192211, 0.02285999059677124, -0.006905622314661741, -0.008731246925890446, 0.026367608457803726, 0.03389689326286316, 0.055728789418935776, 0.013773446902632713, -0.024477729573845863, -0.002301874104887247, 0.04813902825117111, 0.01720546931028366, 0.04493379220366478, 0.07214806973934174, 0.03199189156293869, -0.002522990107536316, 0.009978567250072956, 0.02325308695435524, 0.01313844695687294, 0.03138713166117668, 0.020985230803489685, 0.0047624981962144375, -0.02285999059677124, 0.038795460015535355, 0.022164516150951385, 0.04511522129178047, -0.03870474547147751, -0.007162645924836397, -0.007480145897716284, -0.00174530444201082, -0.024402134120464325, -0.0025305496528744698, 0.015587732195854187, -0.005480652675032616, 0.01238249521702528, -0.0019116138573735952, -0.008330591954290867, -0.019367491826415062, 0.010485055856406689, 0.011339281685650349, 0.015428981743752956, -0.020546777173876762, -0.027562012895941734, 0.004361843690276146, -0.05249331146478653, 0.027410821989178658, 0.04514545947313309, 0.001249210792593658, -0.020471181720495224, -0.03900712728500366, 0.046022363007068634, 0.009623270481824875, 0.008073568344116211, 0.002024061745032668, -0.04426855593919754, 0.04166807979345322, -0.023570585995912552, 0.04018641263246536, -0.05805712193250656, 0.040700461715459824, 0.0159052312374115, -0.0015865544555708766, 0.02285999059677124, -0.01004660315811634, 0.045417603105306625, 0.01761368289589882, -0.010288507677614689, -0.0015383624704554677, 0.0010082510998472571, -0.017764873802661896, 0.005102676805108786, -0.02213427796959877, -0.01812773197889328, -0.025929156690835953, 0.031084749847650528, -0.029467012733221054, -0.006055176258087158, 0.012594161555171013, -0.0035680937580764294, 0.0012180277844890952, -0.03592284396290779, -0.022693682461977005, -0.027365464717149734, -0.002558897715061903, 0.018838325515389442, 0.019851302728056908, 0.009698865003883839, -0.03507617861032486, 0.047141171991825104, -0.021922610700130463, 0.009570353664457798, -0.016313446685671806, 0.015799399465322495, 0.0050648790784180164, 0.01441600639373064, 0.010197794064879417, -0.00533702177926898, -0.020803801715373993, 0.021605109795928, -0.00502330157905817, 0.019458206370472908, -0.01471838727593422, 0.020395588129758835, -0.00805088970810175, -0.046748075634241104, 0.021862134337425232, 0.018944159150123596, 0.028091179206967354, 0.022361062467098236, -0.0020505201537162066, 0.014098506420850754, 0.0198361836373806, -0.00497416453436017, 0.02405439503490925, -0.029482131823897362, 0.018354516476392746, 0.035318080335855484, -0.019866421818733215, -0.03422950953245163, -0.019337253645062447, 0.01333499513566494, 0.0063424380496144295, -0.0036814867053180933, 0.009532555937767029, 0.003728733630850911, 0.018626660108566284, 0.017779992893338203, 0.0027233173605054617, 0.007691812701523304, 0.007465026807039976, 0.0194430872797966, 0.0023888086434453726, 0.015338268131017685, -0.043845221400260925, 0.007132407743483782, -0.01818820647895336, -0.009109222330152988, 0.010583329014480114, -0.03943046182394028, 0.04269617423415184, 0.031568560749292374, 0.046415459364652634, 0.02083403989672661, 0.004505474586039782, -0.004229552112519741, -0.015935469418764114, -0.002148793777450919, 0.010719400830566883, -0.02003272995352745, -0.005019521806389093, -0.029391417279839516, 0.02653391845524311, -0.007771187461912632, -0.020244397222995758, 0.030313678085803986, -0.022829752415418625, -0.003696605795994401, 0.01917094551026821, 0.00758597906678915, -0.03094867803156376, 0.005405057221651077, -0.007461247034370899, -0.008663211017847061, -0.021605109795928, 0.02405439503490925, 0.01991177722811699, -0.051465217024087906, -0.008912675082683563, -0.0012435411335900426, -0.03752546012401581, 0.01090082898736, 0.04934855177998543, -0.041093554347753525, 0.05315855145454407, 0.0006836641696281731, -0.006977437995374203, 0.006508747581392527, -0.03906760364770889, 0.0038232277147471905, -0.03286879509687424, -0.021363206207752228, -0.027546893805265427, -0.01602618396282196, -0.04578045755624771, -0.04169831797480583, -0.02476499043405056, -0.023086776956915855, -0.01146779302507639, -0.014068268239498138, 0.021453920751810074, -0.025974513962864876, 0.0026666210032999516, -0.014121185056865215, -0.0021412342321127653, -0.0029123055282980204, -0.03055558353662491, -0.020062968134880066, 0.0010743968887254596, -0.008126485161483288, 0.007982853800058365, -0.0008348546107299626, 0.04354283958673477, -0.01970011182129383, -0.02666999027132988, 0.0069396402686834335, 0.010288507677614689, -0.014642791822552681, 0.007945056073367596, -0.04971140995621681, -0.04723188653588295, 0.02529415674507618, -0.026836298406124115, 0.035439033061265945, -0.033594511449337006, -0.013607137836515903, -0.014385768212378025, 0.018535945564508438, -0.04405688866972923, 0.010129758156836033, 0.013161125592887402, 0.0002990735520143062, -0.038069747388362885, -0.033594511449337006, 0.06634235382080078, -0.03277808427810669, -0.0030200285837054253, 0.030918439850211143, 0.013932197354733944, 0.0009203716763295233, -0.006251723971217871, 0.03670903295278549, 0.04466164857149124, 0.02376713417470455, 0.01800677925348282, 0.009441841393709183, -0.02003272995352745, 0.0011188091011717916, -0.003828897373750806, 0.006229045335203409, 0.02260296791791916, 0.022361062467098236, -0.0067204139195382595, -0.029376298189163208, -0.00448279595002532, -0.009404043667018414, 0.0020561895798891783, -0.01195916160941124, -0.0172810647636652, -0.011377078481018543, -0.025868680328130722, 0.011331722140312195, -0.007642675656825304, -0.023752015084028244, -0.03178022429347038, -0.01616225577890873, 0.029346060007810593, 0.007132407743483782, 0.0008291849517263472, 0.006357557140290737, 0.012866304256021976, 0.001112194499000907, 0.054761167615652084, 0.01589011214673519, 0.0353483185172081, 0.0824894905090332, -0.02022927813231945, -0.02804582193493843, 0.03486451134085655, 0.05197926610708237, -0.026488561183214188, 0.0050119622610509396, 0.019473325461149216, 0.040700461715459824, 0.003655028296634555, 0.023343799635767937, -0.004263569600880146, -0.010492615401744843, 0.041879747062921524, 0.051858313381671906, -0.015587732195854187, -0.009237734600901604, -0.008829520083963871, -0.013062852434813976, 0.010371662676334381, 0.02804582193493843, 0.00847422331571579, -0.01346350647509098, -0.017659040167927742, 0.013667614199221134, -0.025399990379810333, 0.0184603501111269, -0.01415142323821783, -0.010704281739890575, -0.028620345517992973, 0.017296183854341507, 0.026095466688275337, -0.017492732033133507, -0.005250087473541498, -0.0034433617256581783, -0.06159497797489166, 0.002708198269829154, 0.008300353772938251, 0.0028631684836000204, 0.010968864895403385, -0.022482015192508698, 0.03952117636799812, -0.019367491826415062, -0.031084749847650528, 0.0048418729566037655, 0.005541129037737846, -0.005253867246210575, 0.022058682516217232, -0.013448387384414673, 0.014211899600923061, 0.04578045755624771, 0.004913688637316227, 0.019080230966210365, -0.006066515576094389, -0.0006463390309363604, 0.007608657702803612, 0.04925783723592758, 0.02521856129169464, -0.012624399736523628, -0.04587117210030556, -0.02305653877556324, -0.013017495162785053, -0.01912558823823929, -0.042333316057920456, 0.002003272995352745, -0.004350504372268915, 0.024205585941672325, 0.008088687434792519, -0.009910532273352146, -0.03580189123749733, 0.0056620812974870205, 0.019821064546704292, -0.015413862653076649, 0.06259283423423767, 0.026700228452682495, -0.0037551920395344496, 0.018490588292479515, -0.02851451188325882, -0.020607253536581993, 0.0014967850875109434, -0.022376181557774544, 0.005862408317625523, -0.015028327703475952, 0.030888201668858528, -0.007548181805759668, -0.03268736973404884, 0.009902972728013992, 0.009547675028443336, -0.011241007596254349, -0.028227251023054123, 0.058026883751153946, -0.0006487013888545334, -0.05104188621044159, -0.03752546012401581, 0.00346604036167264, -0.02963332273066044, 0.012858744710683823, 0.009736662730574608, -0.006724193692207336, 0.0046339863911271095, 0.006274402141571045, 0.024326538667082787, 0.010159996338188648, -0.012737792916595936, -0.009608151391148567, -0.008670770563185215, 0.01858130283653736, -0.015073684975504875, -0.02127249166369438, -0.014763744547963142, -0.02391832321882248, 0.04538736492395401, -0.03785808011889458, 0.0027270971331745386, 0.004316486418247223, -0.006104313302785158, 0.02431141957640648, 0.02187725342810154, 0.03362474963068962, -0.012760471552610397, 0.011369519867002964, 0.003159879706799984, 0.02266344428062439, -0.019654754549264908, 0.02765272743999958, 0.019004635512828827, -0.014143863692879677, 0.005510890856385231, 0.0341690331697464, 0.006761991418898106, -0.00486077181994915, 0.0010725070023909211, 0.05182807520031929, -0.029572846367955208, 0.0016819933662191033, -0.02390320599079132, -0.017099635675549507, 0.018883682787418365, -0.03686022385954857, -0.009766900911927223, -0.009638389572501183, 0.0014674919657409191, -0.0182638019323349, -0.011293924413621426, 0.02069796808063984, -0.0010082510998472571, 0.01950356364250183, -0.0013040173798799515, -0.014733506366610527, 0.01897439733147621, 0.01714499294757843, -0.012526126578450203, 0.016449516639113426, 0.02279951423406601, -0.0006732698529958725, 0.014688149094581604, 0.002169582527130842, 0.02521856129169464, 0.028363322839140892, -0.004214433021843433, 0.01675189845263958, -0.02246689610183239, -0.006425592582672834, 0.02405439503490925, -0.024598680436611176, 0.0076691340655088425, -0.011785292997956276, 0.010931067168712616, 0.0015109592350199819, -0.004479016177356243, -0.02541510947048664, 0.005522230174392462, 0.001499619917012751, 0.007151306606829166, 0.023963680490851402, -0.022572729736566544, -6.886250776005909e-05, -0.03480403497815132, 0.027698084712028503, 0.0018917700508609414, 0.010069281794130802, -0.0039044925943017006, -0.006580562796443701, 0.0023283325135707855, 0.02423582412302494, 0.02543022856116295, -0.014438685029745102, -0.02069796808063984, 0.02423582412302494, 0.021181777119636536, -0.0071135093457996845, -0.023101896047592163, 0.018490588292479515, -0.005828390829265118, 0.0027743440587073565, 0.051193077117204666, -0.010197794064879417, 0.044117365032434464, 0.002636382821947336, 0.017235707491636276, 0.01873249188065529, 0.004127498250454664, 0.008799281902611256, 0.01759856380522251, -0.06857997179031372, 0.06694711744785309, -0.03178022429347038, 0.02851451188325882, 0.029209988191723824, -0.012813388369977474, -0.0018048356287181377, -0.02810629829764366, -0.011150293052196503, -0.01667630299925804, -0.032354749739170074, 0.018309159204363823, -0.03755569830536842, 0.019427968189120293, 0.005473093129694462, -0.012352257035672665, 0.018157968297600746, -0.021710943430662155, 0.009744222275912762, -0.000566491624340415, -0.00560160493478179, -0.004822974558919668, 0.05772450193762779, -0.02193772979080677, 0.010356543585658073, 0.006474729627370834, 0.008564936928451061, 0.056726645678281784, 0.014627672731876373, -0.03843260556459427, -0.012390054762363434, -0.005000622943043709, 0.02174118161201477, 0.010802554897964, -0.023888086900115013, -0.022149397060275078, 0.035106416791677475, 0.018944159150123596, 0.01543654128909111, 0.01700892113149166, -0.023147253319621086, 0.014914934523403645, -0.019866421818733215, 0.02181677706539631, 0.018475469201803207, -0.006557884160429239, 0.011142733506858349, 0.022058682516217232, 0.04593164846301079, 0.006255503743886948, -0.023374037817120552, -0.001402291120029986, 0.004180415067821741, 0.013312316499650478, -0.008459104225039482, 0.009199936874210835, 0.015413862653076649, 0.020274635404348373, -0.02462891861796379, 0.0038477962370961905, -0.02181677706539631, 0.005291664507240057, 0.01589011214673519, -0.01643439754843712, -0.008186961524188519, -0.02403927594423294, 0.03713236749172211, -0.037616174668073654, 0.00763511611148715, -0.012095233425498009, 0.01584475487470627, 0.008625413291156292, 0.030585821717977524, -0.004925027955323458, 0.00811136607080698, 0.0019976033363491297, -0.023812491446733475, 0.007616217248141766, -0.01702404022216797, -0.013939756900072098, 0.01307041198015213, 0.03147784620523453, -0.03528784215450287, -0.0024889721535146236, 0.01136196032166481, -0.021136419847607613, -0.02146903984248638, 0.0017868817085400224, 0.005389938596636057, 0.02115153893828392, -0.003732513403519988, -0.00011498740059323609, 0.04012593626976013, 0.01634368486702442, 0.020924754440784454, -0.019367491826415062, 0.018747610971331596, -0.012125471606850624, 0.01471838727593422, 0.0060854144394397736, 0.027304990217089653, -0.003074835054576397, -0.025309275835752487, -0.0314173698425293, 0.0258233230561018, -0.007480145897716284, 0.01569356583058834, -0.010742079466581345, 0.004165295977145433, 0.051737360656261444, -0.0031334212981164455, -0.024749871343374252, 0.0013871720293536782, -0.011581186205148697, -0.020924754440784454, -0.00011067611194448546, 0.006149670109152794, 0.03949093818664551, -0.008451544679701328, 0.01228422112762928, -0.007601098157465458, -0.011981840245425701, -0.024190466850996017, 0.031356893479824066, 0.005000622943043709, 0.014038030058145523, 0.0018757061334326863, 0.034138794988393784, 0.0009496647980995476, 0.012488328851759434, -0.006886723451316357, 0.026700228452682495, 0.023600824177265167, -0.024190466850996017, -0.0032789420802146196, 0.019669873639941216, -0.020728206261992455, -0.00533702177926898, 0.034985464066267014, -0.030525345355272293, -0.004603748209774494, -0.0349552258849144, -0.027743441984057426, -0.00443365890532732, 0.01494517270475626, -0.0025418889708817005, 0.0443895049393177, 0.0279853455722332, -0.010129758156836033, 0.013735649175941944, 0.0260198712348938, 0.0033356386702507734, 0.032475702464580536, -0.024356776848435402, -0.039914269000291824, 0.02063749171793461, 0.0016923877410590649, -0.0583292618393898, -0.017069397494196892, -0.017250826582312584, -0.031054511666297913, 0.00010683729487936944, -0.04472212493419647, 0.03834189102053642, -0.05736164376139641, 0.031114988029003143, 0.019397730007767677, 0.017129873856902122, -0.003401784459128976, 0.0022943145595490932, 0.007347854319959879, 0.01694844663143158, 0.01635880395770073, 0.007476366125047207, -0.029799630865454674, 0.034380700439214706, -0.023101896047592163, -0.003838346805423498, 0.007548181805759668, 0.0034887189976871014, -0.02490106225013733, 0.0291646309196949, 0.0528259314596653, -0.025203442201018333, -0.019684992730617523, 0.007597318384796381, -0.0015553714474663138, -0.03507617861032486, 0.020214159041643143, -0.004943926818668842, -0.025188323110342026, -0.01951868273317814, 0.02376713417470455, 0.005098897032439709, -0.006557884160429239, 0.029058799147605896, -0.005794372875243425, 0.024250943213701248, 0.020924754440784454, -0.013471066020429134, 0.008572496473789215, -0.00023009291908238083, 0.024024156853556633, -0.018369635567069054, -0.027168918401002884, 0.018037017434835434, -0.016706541180610657, 0.029270464554429054, -0.035106416791677475, -0.015353387221693993, -0.02594427578151226, -0.0020429606083780527, 0.05464021861553192, -0.017432255670428276, -0.016993802040815353, -0.034985464066267014, 0.006104313302785158, -0.03147784620523453, 0.05170712247490883, -0.028272608295083046, -0.033019986003637314, -0.03305022418498993, -0.038523320108652115, -0.014544517733156681, 0.002252737293019891, 0.017704397439956665, -0.007223122287541628, 0.05098140984773636, 0.04033760353922844, 0.023933442309498787, -0.001507179462350905, -0.015738923102617264, -0.01582963764667511, -0.011309043504297733, 0.002925534499809146, -0.024780109524726868, 0.0271991565823555, -0.02647344209253788, 0.01649487391114235, 0.03002641722559929, 0.03943046182394028, -0.03483427315950394, 0.008685889653861523, -0.01270755473524332, -0.001946576638147235, -0.004339165054261684, -0.018233563750982285, -0.0009302935213781893, 0.016646064817905426, 0.004649105481803417, 0.006176128517836332, 0.029073918238282204, 0.0077485088258981705, -0.012495888397097588, 0.006452050991356373, 0.005272765643894672, 0.016116898506879807, -0.037676651030778885, -0.0023812490981072187, 0.010893269442021847, 0.013697851449251175, -0.01346350647509098, 0.008927794173359871, -0.0208189208060503, -0.0208189208060503, 0.012163269333541393, 0.0007535897311754525, -0.008708568289875984, -0.006058956030756235, 0.012148150242865086, -0.007945056073367596, -0.030918439850211143, -0.019397730007767677, -0.009532555937767029, -0.0051102363504469395, -0.0003586047678254545, -0.021862134337425232, -0.02233082428574562, 0.007219342514872551, -0.003091844031587243, -0.024946419522166252, -0.04538736492395401, -0.00817184243351221, 0.04874379187822342, -0.028937846422195435, 0.005132914520800114, -0.0006057065911591053, 0.016011064872145653, -0.002804582240059972, 0.01445380412042141, 0.00036876287776976824, -0.005896426271647215, 0.0015204086666926742, 0.06041569262742996, 0.029512370005249977, 0.0005296389572322369, -0.028620345517992973, -0.01576916128396988, -0.003292171284556389, 0.012080114334821701, 0.026564156636595726, 0.01622273214161396, 0.0071135093457996845, -0.008988270536065102, 0.012934340164065361, -0.004830533638596535, -0.019926896318793297, 0.007283598184585571, 0.021574873477220535, -0.015073684975504875, -0.0016706541646271944, -0.0002889154420699924, 0.007264699786901474, -0.021136419847607613, 0.023888086900115013, -0.01403047051280737, -0.01839987374842167, -0.01800677925348282, -0.031629037111997604, -0.022285467013716698, -0.01681237481534481, 0.016268089413642883, 0.0054428549483418465, 0.014937613159418106, 0.0022187193389981985, -0.03903736546635628, 0.010870590806007385, -0.0075406222604215145, 0.006652378477156162, 0.0006718524382449687, 0.02535463310778141, -0.026110585778951645, -0.025838442146778107, -0.004804075695574284, 0.00801309198141098, -0.014363089576363564, -0.005526009947061539, 0.006266842596232891, 0.008300353772938251, 0.0004448305699042976, 0.010999103076756, 0.018414992839097977, 0.010983983986079693, -0.010069281794130802, 0.011747495271265507, -0.03174998611211777, -0.007718270644545555, -0.007688032928854227, 0.010333864949643612, -0.007332735229283571, -0.008353270590305328, 0.006108093075454235, 0.026518799364566803, 0.02148415893316269, -0.045629266649484634, -0.007211782969534397, -0.022965824231505394, -0.007351634092628956, 0.012919221073389053, 0.014272375032305717, 0.004339165054261684, -0.018278921023011208, -0.045084983110427856, 0.006429372355341911, 0.013644935563206673, -0.01156606711447239, 0.023147253319621086, -0.024417253211140633, 0.010953745804727077, -0.005858628544956446, -0.031356893479824066, -0.00174530444201082, 0.008035770617425442, 0.005246307700872421, 0.011414876207709312, -0.021257372573018074, -0.011732376180589199, -0.03217332065105438, -0.019412849098443985, -0.037404511123895645, 0.0017396347830072045, -0.022618087008595467, 0.05043712258338928, 0.015376065857708454, -0.008428866043686867, 0.01833939738571644, 0.017719516530632973, -0.015859873965382576, -0.0043845223262906075, -0.03664855659008026, -0.02266344428062439, -0.005639402661472559, 0.020259516313672066, -0.007691812701523304, 0.013085531070828438, 0.02193772979080677, -0.024976657703518867, -0.017628801986575127, 0.024810347706079483, -0.018535945564508438, -0.0059644621796905994, 0.03326189145445824, -0.010318745858967304, -0.015179517678916454, 0.010749639011919498, -0.0005835005431436002, 0.0031863381154835224, 0.03344332054257393, -0.01930701546370983, -0.011543388478457928, -0.006822467781603336, 0.005620503798127174, -0.012594161555171013, 0.010787436738610268, -0.01879296824336052, -0.012034757062792778, -0.07632092386484146, -0.006482289172708988, -0.008496901020407677, 0.00486077181994915, 0.0037627515848726034, -0.006761991418898106, 0.022058682516217232, 0.017129873856902122, -0.030827725306153297, 0.040881890803575516, 0.0027308769058436155, -0.02378225326538086, -0.0034225729759782553, 0.024129990488290787, -0.009033627808094025, 0.020138563588261604, -0.0012104682391509414, -0.0025078710168600082, 0.003964968491345644, -0.013304756954312325, -0.020909635350108147, 0.022240109741687775, -0.0010413239942863584, -0.018672017380595207, -0.023570585995912552, 0.013229161500930786, -0.002245177747681737, -0.0017831019358709455, -0.009381365031003952, -0.026790941134095192, 0.006463390309363604, 0.01484689861536026, 0.006523866672068834, 0.015542374923825264, 0.003983867354691029, -0.01280582882463932, 0.010477496311068535, 0.0009302935213781893, 0.038734983652830124, -0.0007148471777327359, -0.011868447996675968, 0.010137317702174187, -0.007714490871876478, -0.02930070273578167, -0.0072420211508870125, -0.011687018908560276, 0.011898686178028584, -0.02580820396542549, 0.01950356364250183, 0.010847912169992924, -0.0019049992552027106, -0.01753808930516243, -0.00909410323947668, -0.019609397277235985, -0.003995206672698259, 0.010069281794130802, 0.0208189208060503, -0.02338915690779686, 0.014106065966188908, -0.010432139039039612, 0.065193310379982, 0.026564156636595726, 0.01722058840095997, -0.005832170136272907, -0.008481782861053944, 0.008035770617425442, 0.008927794173359871, 0.007302497047930956, 0.021363206207752228, 0.0015534815611317754, 0.0032865016255527735, 0.008648091927170753, 0.005193390883505344, 0.01372808963060379, 0.01297213789075613, -0.0002193442196585238, 0.011120054870843887, 0.014854458160698414, -0.0017264055786654353, -0.01366005465388298, -0.0231774915009737, -3.894924884662032e-05, 0.009668626822531223, 0.025853561237454414, 0.008383508771657944, -0.012994816526770592, 0.0003191535361111164, -0.046022363007068634, 0.013712970539927483, 0.009426722303032875, 0.02378225326538086, 0.007567080203443766, 0.03389689326286316, 0.018566183745861053, 0.003930951002985239, 0.0333828441798687, 0.017099635675549507, 0.00784678291529417, -0.0005513725336641073, 0.018354516476392746, 0.002753555541858077, -0.017689278349280357, 0.015723804011940956, -0.025793084874749184, -0.0057905931025743484, -0.0035454153548926115, 0.004947706591337919, 0.02233082428574562, -0.025339514017105103, -0.01833939738571644, 0.0075406222604215145, -0.00650496780872345, -0.017099635675549507, 0.00827767513692379, -0.026518799364566803, 0.007997972890734673, -0.017492732033133507, -0.02792487107217312, -0.004452557768672705, 0.014279934577643871, -0.0024322757963091135, 0.035771653056144714, -0.0036588080693036318, -0.032747846096754074, -0.00640291441231966, -0.004849432501941919, -0.004365623462945223, 0.021831896156072617, 0.012994816526770592, 0.018218444660305977, -0.011815531179308891, 0.008489342406392097, -0.019367491826415062, 0.010999103076756, -0.01260928064584732, 0.02370665781199932, 0.02732010930776596, -0.026065228506922722, 0.014279934577643871, -0.006792229600250721, 0.010545531287789345, -0.0172810647636652, 0.01616225577890873, 0.007733389735221863, -0.012715114280581474, -0.0002634020638652146, -0.0017084517749026418, -0.027970226481556892, 0.008580056019127369, 0.0016234071226790547, 0.005749015603214502, 0.0008821015944704413, 0.02030487358570099, -0.012934340164065361, 0.002035401063039899, 0.000515937281306833, -0.023207729682326317, 0.015648208558559418, 0.0050157420337200165, 0.010076841339468956, -0.000497510947752744, 0.0005249142413958907, 0.015224874950945377, -0.00264394236728549, 0.003679596818983555, -0.001990043791010976, -0.015512136742472649, -0.029663559049367905, -0.006195027381181717, -0.004770057741552591, -0.007287377957254648, 0.016963565722107887, -0.02003272995352745, -0.026881655678153038, -0.006229045335203409, -0.01488469634205103, -0.012095233425498009, -0.008678330108523369, 0.023963680490851402, 0.0002553700760472566, 0.018037017434835434, -0.0002804109826683998, 0.016373923048377037, 0.017069397494196892, 0.004089700989425182, -0.003063495736569166, -0.009237734600901604, 0.006100533530116081, -0.004199313931167126, 0.0014363089576363564, 0.028801774606108665, 0.003163659479469061, -0.01912558823823929, -0.01641927845776081, 0.013455946929752827, 0.009033627808094025, 0.024674275889992714, 0.019397730007767677, -0.006935860496014357, -0.00136260362342, 0.002411487279459834, -0.003333748783916235, 0.01688797026872635, 0.006599461659789085, -0.01073451992124319, 0.006663717795163393, -0.02227034792304039, 0.003949849866330624, 0.011641662567853928, -0.029965940862894058, 0.015277791768312454, 0.015512136742472649, 0.004429879132658243, -0.001184954890049994, 0.013032614253461361, -0.009993686340749264, -0.002925534499809146, -0.007155086379498243, 0.03713236749172211, -0.014491601847112179, 0.040035221725702286, -0.014544517733156681, 0.004902349319308996, -0.011777733452618122, -0.005703658331185579, 0.01403047051280737, -0.003365876618772745, -0.0595085471868515, -0.013085531070828438, 0.015738923102617264, 0.004622647073119879, 0.0034528111573308706, 0.010243150405585766, -0.005004402715712786, -0.014854458160698414, 0.0005565697210840881, 0.038734983652830124, -0.016857732087373734, 0.01805213652551174, 0.0029860108625143766, -0.015134160406887531, -0.022149397060275078, -0.013229161500930786, 0.014484042301774025, 0.007801425643265247, 0.006633479613810778, -0.032082606106996536, -0.003192007774487138, -0.018037017434835434, 0.02549070492386818, 0.017779992893338203, -0.016404161229729652, -0.017190350219607353, 0.021635347977280617, 0.009381365031003952, -0.010847912169992924, 0.014121185056865215, -0.027350347489118576, 0.013047733344137669, -0.01317624468356371, 0.013266959227621555, 0.007593538612127304, 0.01932213455438614, -0.013025054708123207, 0.043512601405382156, 0.006463390309363604, -0.006436931900680065, -0.008496901020407677, 0.011724816635251045, -0.010114639066159725, -0.0073667531833052635, 0.010159996338188648, -0.007695592474192381, -0.02364618144929409, -0.003027588129043579, 0.006871604360640049, -0.007514163851737976, -0.031235940754413605, 0.0033715462777763605, 0.017553208395838737, -0.020985230803489685, 0.008194521069526672, -0.024659156799316406, 0.012193507514894009, 0.0036739271599799395, 0.016600707545876503, -0.0011036900104954839, -0.016041303053498268, 0.025142965838313103, -0.01034898404031992, 0.0032581535633653402, 0.012306899763643742, 0.028030702844262123, -0.0018331838073208928, 0.01415142323821783, 0.009676186367869377, -0.008670770563185215, 0.015481898561120033, 0.0030464869923889637, -0.01025070995092392, 0.016646064817905426, 0.002882067346945405, -0.015149279497563839, 0.0007904423982836306, 0.0011263686465099454, -0.00017953861970454454, -0.002543778857216239, 0.005756575148552656, -0.0026099246460944414, -0.0037136145401746035, 0.003142870729789138, -0.005843509454280138, -0.022361062467098236, -0.006935860496014357, -0.0037816502153873444, 0.0015383624704554677, 0.006145890336483717, 0.010296067222952843, -0.020471181720495224, -0.02975427359342575, -0.009668626822531223, -0.010643805377185345, 0.031054511666297913, 0.013614697381854057, -0.029013441875576973, -0.012828506529331207, -0.0045092543587088585, 0.003526516491547227, 0.019866421818733215, -0.015935469418764114, -0.017326422035694122, 0.05206998065114021, -0.0054428549483418465, 0.0047624981962144375, 0.0152702322229743, -0.001986264018341899, 0.0012104682391509414, 0.01806725561618805, -0.022043563425540924, 0.0027384364511817694, 0.006811128463596106, 0.017840469256043434, -0.01805213652551174, -0.001064002513885498, -0.011218328960239887, 0.01702404022216797, -0.00778630655258894, 0.03519712761044502, 0.02792487107217312, -0.002660951344296336, -0.008353270590305328, 0.035499509423971176, 0.01655535027384758, -0.012148150242865086, 0.012941899709403515, 0.0021015468519181013, 0.0017405797261744738, 0.024417253211140633, -0.02588379941880703, -0.05430759862065315, -0.006047616712749004, -0.01530802994966507, -0.00902606826275587, 0.027562012895941734, -0.03368522599339485, 0.0018861005082726479, 0.03422950953245163, -0.03335260599851608, 0.007442348171025515, -0.025445347651839256, -0.006879163905978203, -0.018672017380595207, 0.014869577251374722, -0.015920350328087807, -0.013244280591607094, -0.001462767249904573, 0.0043353852815926075, 0.010537971742451191, 0.004709581378847361, 0.000411048938985914, 0.020274635404348373, 0.016268089413642883, -0.02128761075437069, -0.02246689610183239, -0.009018508717417717, -0.0010110859293490648, -0.00014894618652760983, -0.012941899709403515, -0.0011603864841163158, -0.002838600194081664, -0.013115768320858479, -0.0026987490709871054, 0.002647722139954567, -0.015859873965382576, 0.008663211017847061, 0.023857848718762398, -0.02313213422894478, 0.02543022856116295, -0.025717489421367645, 0.014325291849672794, 0.00490990886464715, 0.008942913264036179, -0.0039536296389997005, 0.026186181232333183, -0.007801425643265247, 0.00805088970810175, 0.01885344460606575, 0.012563923373818398, -0.0018898802809417248, -0.013667614199221134, 0.0031069631222635508, 0.01018267497420311, -0.014196780510246754, 0.004059462808072567, -0.028348203748464584, -0.013040173798799515, -0.0056620812974870205, 0.024417253211140633, 0.016056422144174576, -0.011014222167432308, 0.0034603707026690245, -0.002003272995352745, 0.013622256927192211, -0.005461753811687231, -0.00805088970810175, 0.02075844444334507, -0.021907491609454155, -0.003946070093661547, -0.006969878450036049, -0.011354400776326656, 0.015723804011940956, 0.0003425407921895385, 0.006470949854701757, -0.00486077181994915, 0.025037134066224098, -0.010976424440741539, 0.0021469038911163807, -0.0019938235636800528, 0.013251840136945248, -0.029179750010371208, 0.004894789773970842, -0.019065111875534058, -0.029013441875576973, -0.03522736579179764, -0.0003321464464534074, 0.01767415925860405, 0.026186181232333183, 0.025566300377249718, 0.01805213652551174, 0.01726594567298889, 0.009638389572501183, -0.019987372681498528, 0.005246307700872421, -0.0005291664856486022, -0.01175505481660366, -0.00919237732887268, -0.00042475058580748737, -0.023570585995912552, -0.037071891129016876, 0.035318080335855484, 0.0035680937580764294, -0.002849939279258251, 0.008557377383112907, 0.015678446739912033, -0.04363355413079262, 0.019745469093322754, 0.023147253319621086, -0.02576284669339657, -0.019095350056886673, -0.017553208395838737, 0.0030049094930291176, -0.008670770563185215, -0.01149047166109085, 0.00906386598944664, -0.013025054708123207, -0.017764873802661896, -0.007264699786901474, 0.016933327540755272, 0.011354400776326656, 0.01575404219329357, 0.018294040113687515, -0.020471181720495224, 0.009577913209795952, 0.011014222167432308, 0.013493744656443596, 0.0051064565777778625, 0.0206223726272583, 0.0009014728711917996, -0.009940769523382187, 0.03205236792564392, -0.030253201723098755, 0.006962318904697895, 0.004324045963585377, 0.013894399628043175, -0.012888982892036438, -0.02313213422894478, 0.017946302890777588, -0.002929314272478223, 0.013917078264057636, 0.010235590860247612, -0.0006019268766976893, -0.005968241952359676, -0.02437189593911171, -0.014967851340770721, -0.003261933336034417, -0.031114988029003143, -0.008625413291156292, 0.016252970322966576, 0.010167555883526802, -0.019548920914530754, 0.0011679460294544697, -0.02561165764927864, -0.015542374923825264, 0.0015808847965672612, 0.006875384133309126, 0.0020221718586981297, 0.008632972836494446, -0.018082374706864357, -0.018747610971331596, -0.02358570508658886, -0.010999103076756, -0.01584475487470627, 0.013040173798799515, -0.004550831392407417, 0.017522970214486122, -0.009358687326312065, 0.009305770508944988, 0.016767017543315887, -0.012291780672967434, -0.003063495736569166, -0.006452050991356373, -0.008527139201760292, 0.009351127780973911, 0.019367491826415062, 0.0038118883967399597, 0.008270115591585636, -0.005522230174392462, -0.0010621126275509596, -0.017779992893338203, 0.0023396718315780163, -8.386343688471243e-05, -0.01838475465774536, 0.004962825682014227, 0.006493628490716219, -0.0051064565777778625, 0.07753044366836548, 0.009978567250072956, 0.003445251611992717, 0.01195160299539566, 0.0007053978042677045, -0.008625413291156292, -0.009540115483105183, 0.017689278349280357, -0.010923507623374462, -0.00025371642550453544, -0.005280325189232826, -0.022708801552653313, -0.0029330940451472998, 0.005590265616774559, -0.026034990325570107, -0.0055335694923996925, 0.01805213652551174, 0.012390054762363434, -0.014007791876792908, 0.007468806579709053, 0.0051442538388073444, -0.020410707220435143, -0.018354516476392746, 0.019730350002646446, -0.014098506420850754, 0.022451777011156082, 0.017704397439956665, -0.007124848663806915, 0.026745585724711418, 0.006663717795163393, 0.007400771137326956, -0.011188090778887272, 0.001112194499000907, -4.8487239837413654e-05, -0.0174776129424572, 0.013214042410254478, 0.003912052139639854, 0.0004590046592056751, 0.013675173744559288, -0.0056129442527890205, 5.164688263903372e-05, 0.007026574574410915, 0.010432139039039612, 0.0018492478411644697, -0.015784280374646187, -0.003237364813685417, -0.0053143431432545185, -0.006198807153850794, 0.0020013831090182066, -0.004229552112519741, -0.01576916128396988, -0.014688149094581604, -0.01004660315811634, 0.02311701513826847, 0.020743325352668762, -0.001805780571885407, 0.0018265692051500082, -0.008920234628021717, 0.004792736377567053, -0.0037816502153873444, -0.015874993056058884, -0.007771187461912632, -0.01726594567298889, -0.02168070524930954, -0.021589992567896843, -0.007030354347079992, -0.01746249385178089, -0.024477729573845863, 0.004395861178636551, 0.004853212274610996, -0.013682732358574867, 0.01761368289589882, 0.014854458160698414, -0.02338915690779686, 0.0034433617256581783, 0.035953082144260406, 0.015512136742472649, -0.001837908523157239, -0.006818688008934259, 0.0014826110564172268, 0.008421306498348713, 0.008081127889454365, -0.025505824014544487, -0.014657910913228989, 0.016857732087373734, -0.014665470458567142, 0.012941899709403515, -0.0056620812974870205, 0.013410589657723904, 8.64620233187452e-05, 0.007083271164447069, 0.0021185558289289474, -0.024341657757759094, -0.008262556046247482, 0.014733506366610527, -0.00693208072334528, -0.0013200812973082066, -0.012064995244145393, 0.015950588509440422, -0.00045971336658112705, 0.009789579547941685, 0.003655028296634555, 0.002422826364636421, 0.007869461551308632, 0.00640291441231966, -0.017840469256043434, 0.004146397113800049, 0.0041123791597783566, -0.016797255724668503, 0.0018690915312618017, -0.016585588455200195, -0.01879296824336052, 0.014960291795432568, 0.0032676029950380325, -0.024387015029788017, 0.008391068316996098, -0.007567080203443766, -0.014310172758996487, -0.020380469039082527, -0.00778630655258894, -0.00469824206084013, -0.005295444279909134, 0.005726336967200041, -0.013750768266618252, 0.008353270590305328, 0.010696722194552422, 0.0011736155720427632, -0.005091337487101555, -0.02319261059165001, 0.002124225255101919, 0.012012078426778316, 0.01287386380136013, 0.009850055910646915, -0.003220355836674571, 0.009147020056843758, 0.0007554796175099909, 0.004550831392407417, -0.014567196369171143, 0.008935353718698025, -0.02140856347978115, 0.010023924522101879, 0.002857498824596405, -0.00932844914495945, 0.020319992676377296, 0.0071928841061890125, 0.003373436164110899, -0.0016555350739508867, -0.011014222167432308, 0.021181777119636536, -0.024674275889992714, 0.03604379668831825, -0.030842844396829605, -0.014786423183977604, 0.0015137940645217896, -0.005911545362323523, 0.012503447942435741, -0.03211284428834915, 0.017432255670428276, -0.01025070995092392, -0.009623270481824875, -0.008534698747098446, 0.0032581535633653402, -0.01773463562130928, -0.005590265616774559, 0.0005272765993140638, 0.025399990379810333, 0.0024058176204562187, 0.01722058840095997, 0.004773837514221668, -0.0021828117314726114, -0.0037344032898545265, -0.00913190096616745, -0.014174101874232292, -0.012926780618727207, 0.030298558995127678, -0.0004188446910120547, 0.0029557726811617613, 0.007945056073367596, -0.01759856380522251, 0.0010725070023909211, -0.016207613050937653, -0.015784280374646187, 0.02311701513826847, -0.012631959281861782, 0.00975934136658907, -0.011868447996675968, -0.0012312569888308644, -0.002067528897896409, -0.009472079575061798, 0.012541244737803936, -0.008980710990726948, -0.012526126578450203, 0.008723687380552292, -0.021332968026399612, -0.020183920860290527, -0.012813388369977474, 0.007593538612127304, 0.010568209923803806, 0.029194869101047516, -0.004138837568461895, 0.0053143431432545185, 0.022875109687447548, 0.011543388478457928, -0.005631843116134405, -0.00909410323947668, -0.016147136688232422, 0.013251840136945248, -0.03295950964093208, -0.016570469364523888, 0.015723804011940956, -0.04426855593919754, -0.019548920914530754, 0.006671277340501547, 0.011558507569134235, -0.003261933336034417, 0.007340294774621725, 0.0016262419521808624, 0.010863031260669231, 0.013954875990748405, 0.0015468669589608908, 0.010545531287789345, 0.024160228669643402, 0.011860888451337814, 0.006149670109152794, -0.008995830081403255, -0.010779877193272114, 0.003647468751296401, 0.003365876618772745, 0.03126617893576622, 0.003269492881372571, 0.010469936765730381, 0.0004783759359270334, -0.012677316553890705, 0.01359957829117775, -0.009782020002603531, 0.02482546679675579, 0.011059579439461231, -0.005956902634352446, -0.01073451992124319, 0.008980710990726948, -0.0152702322229743, 0.004165295977145433, -0.034138794988393784, -0.01126368623226881, -0.0016073430888354778, -0.024024156853556633, 0.008648091927170753, -0.010356543585658073, 0.004153956659138203, -2.9234084649942815e-05, -0.018898801878094673, -0.008360830135643482, -0.0012917331187054515, 0.018898801878094673, 0.011482912115752697, -0.002785683376714587, 0.0013777227140963078, 0.014007791876792908, 0.004664224572479725, -0.010122198611497879, 0.008534698747098446, 0.014287494122982025, -0.0009198992047458887, -0.004709581378847361, 0.015859873965382576, 0.00571499764919281, -0.03114522621035576, -0.0014325291849672794, 0.011384638026356697, 0.017522970214486122, -0.004240891430526972, 0.00507243862375617, 0.018097493797540665, 0.028726179152727127, 0.012269102036952972, 0.0030445971060544252, 0.011687018908560276, -0.02154463529586792, -0.019926896318793297, 0.01904999278485775, 0.013017495162785053, 0.016993802040815353, 0.019821064546704292, -0.013894399628043175, 0.0041161589324474335, -0.023872967809438705, -0.020667729899287224, -0.0013446498196572065, -0.012828506529331207, 0.004361843690276146, -0.0007819379679858685, -0.008927794173359871, 0.00919237732887268, -0.004135057795792818, 0.008020651526749134, 0.003252483904361725, 0.003192007774487138, -0.010296067222952843, 0.005956902634352446, 0.01346350647509098, -0.011724816635251045, -0.0030767249409109354, 0.011067138984799385, -0.00945696048438549, -0.017054278403520584, -0.008859758265316486, 0.016116898506879807, 0.02673046663403511, -0.004804075695574284, 0.015587732195854187, -0.0019881539046764374, -0.00656922347843647, 0.006111872848123312, 0.009638389572501183, -0.007937496528029442, 0.015262672677636147, 0.005594045389443636, 0.004361843690276146, 0.006285741459578276, 0.003197677433490753, 0.0033998945727944374, 0.037344034761190414, 0.012556363828480244, 0.0042711291462183, 0.011762614361941814, 0.01970011182129383, 0.017311302945017815, 0.013304756954312325, 0.011981840245425701, -0.025702370330691338, 0.01386416144669056, 0.00959303230047226, -0.020531658083200455, -0.006108093075454235, -0.022149397060275078, 0.012526126578450203, -0.02028975449502468, -0.0017727076774463058, -0.01264707837253809, 0.013977553695440292, -0.010500174947082996, -0.017160112038254738, -0.0015468669589608908, -0.0020580794662237167, -0.01205743569880724, 0.020183920860290527, 0.0027270971331745386, -0.002095877192914486, 0.011498031206429005, 0.025384871289134026, 0.014196780510246754, 0.011346841230988503, 0.00843642558902502, -0.0022565170656889677, -0.013478625565767288, -0.008587615564465523, -0.002838600194081664, 0.012836066074669361, 0.008632972836494446, 0.001971145160496235, -0.013085531070828438, 0.009071425534784794, -0.012888982892036438, -0.005178271792829037, 0.01734154112637043, 0.017190350219607353, -0.004777617286890745, 0.005560027435421944, -0.012730233371257782, 0.007185324560850859, 0.0037797605618834496, -0.024613799527287483, -0.009260413236916065, -0.01228422112762928, -0.021514397114515305, 0.012541244737803936, -0.015126600861549377, -0.0030200285837054253, -0.001636636327020824, 0.02272392064332962, 0.014302613213658333, 0.01740201748907566, -0.003980087582021952, 0.004962825682014227, 0.017099635675549507, 0.002761115087196231, -0.005522230174392462, 0.02122713439166546, -0.0042106532491743565, 0.000493731233291328, 0.0005376709159463644, -0.0022962044458836317, -0.00886731781065464, -0.0029727816581726074, 0.014446244575083256, 6.431498331949115e-05, -0.037616174668073654, 0.024160228669643402, 0.004558390937745571, -0.013418149203062057, -0.0002030440082307905, -0.005318122915923595, -0.001866256701759994, -0.008746366016566753, -0.021106181666254997, -0.01700892113149166, 0.0023283325135707855, 0.0057414560578763485, 0.026367608457803726, -0.029996179044246674, -0.010666484013199806, 0.02378225326538086, -0.00459618866443634, 0.014136304147541523, 0.009381365031003952, 0.0008995829848572612, 0.022739039734005928, -0.003995206672698259, 0.021998206153512, 0.002600475214421749, 0.020456062629818916, -0.002522990107536316, 0.010855471715331078, -0.013614697381854057, 0.018808087334036827, -0.006478509400039911, 0.024145109578967094, 0.01228422112762928, -0.0013153565814718604, 0.010469936765730381, 0.01702404022216797, -0.0293611790984869, -0.0017216808628290892, 0.005745235830545425, -0.01090082898736, -0.018641779199242592, 0.015020768158137798, -0.012163269333541393, 0.003972528036683798, 0.01971523091197014, -0.0293611790984869, -0.007487705443054438, -0.006659938022494316, -0.0293611790984869, 0.01540630403906107, -0.010719400830566883, 0.014710827730596066, 0.0039536296389997005, 0.00955523457378149, 0.010371662676334381, 0.005476872902363539, -0.0023963681887835264, 0.02976939268410206, 0.001919173402711749, -0.023026300594210625, -0.020728206261992455, -0.008345711044967175, 0.0029860108625143766, 0.01833939738571644, -0.03168950974941254, -0.009850055910646915, -0.0035321861505508423, 0.022890228778123856, 0.0023717996664345264, 0.004297587554901838, 0.005968241952359676, 0.014612553641200066, 0.013977553695440292, -0.012049876153469086, -0.008564936928451061, -0.014158982783555984, -0.009653507731854916, 0.019881539046764374, -0.006486068945378065, 0.005435295403003693, 0.02022927813231945, 0.010779877193272114, 0.0279853455722332, -0.007997972890734673, -0.005117795430123806, -0.002970891771838069, -0.0025173204485327005, -0.01366005465388298, 0.011928924359381199, 0.023615943267941475, -0.007676693610846996, -0.017492732033133507, 0.0037230639718472958, -0.002519210334867239, -0.008156723342835903, 0.015481898561120033, 0.009404043667018414, 0.026382727548480034, -0.014998089522123337, -0.00909410323947668, -0.006807348690927029, 0.004773837514221668, 0.037737127393484116, -0.0029690018855035305, -0.020546777173876762, -0.007306276820600033, -0.017900945618748665, -0.026292013004422188, 0.01431773230433464, 0.015920350328087807, 0.0017500290414318442, -0.001942796865478158, -0.002621263964101672, 0.014763744547963142, 0.034380700439214706, 0.0007030354463495314, 0.005083777941763401, -0.006009818986058235, 0.007294937502592802, -0.008549817837774754, 0.014824220910668373, 0.02181677706539631, 0.021559754386544228, 0.027834156528115273, -0.004694462288171053, -0.006924521178007126, -0.02621641755104065, 0.012699995189905167, 0.021847015246748924, 0.02146903984248638, -0.0037476324941962957, 0.008232317864894867, -0.00587752740830183, -0.0004580597160384059, 0.002704418497160077, -0.002284865127876401, 0.012722673825919628, -0.0012359817046672106, 0.01179285254329443, 0.018838325515389442, 0.006973658222705126, 0.007003895938396454, 0.010530412197113037, 0.035318080335855484, -0.02692701295018196, 0.011142733506858349, -0.00902606826275587, 0.03864426910877228, -0.0029803412035107613, -0.00607785489410162, -0.043784745037555695, 0.002938763704150915, -0.006368896458297968, -0.01859642192721367, 0.0003359262191224843, -0.032082606106996536, 0.005178271792829037, 0.025536062195897102, 0.005102676805108786, 0.018823206424713135, -0.0011670010862872005, -0.004316486418247223, -0.009388924576342106, -0.006478509400039911, -0.006157229654490948, -0.007997972890734673, -0.0018964947666972876, -0.007756068371236324, 0.00592666445299983, -0.0018775960197672248, 0.0038969330489635468, 0.015648208558559418, -0.007287377957254648, 0.006161009427160025, 0.014174101874232292, -0.004826753865927458, -0.015315589495003223, -0.0172810647636652, 0.007253360468894243, 0.006111872848123312, 0.004191754385828972, -0.02423582412302494, -0.0017812121659517288, 0.018445231020450592, -0.0017679829616099596, -0.00213556457310915, -0.011195650324225426, -0.02391832321882248, -0.0036625878419727087, 0.0020410707220435143, 0.012722673825919628, 0.011437554843723774, 0.0020580794662237167, 0.014839339070022106, -0.02246689610183239, 0.01694844663143158, 0.0010526633122935891, -0.002252737293019891, -0.031568560749292374, 0.026760704815387726, -0.011747495271265507, -0.003849686123430729, -0.0018180647166445851, -0.02187725342810154, -0.012397614307701588, -0.010016364976763725, 0.008859758265316486, 0.017583444714546204, -0.003301620716229081, 0.01833939738571644, -0.00522362906485796, 0.008451544679701328, 0.0071135093457996845, -0.023434514179825783, -0.0009959668386727571, 0.0229809433221817, -0.01596570760011673, -0.007816544733941555, 0.007548181805759668, 0.008035770617425442, -0.005862408317625523, 0.013720530085265636, -0.006875384133309126, 0.014431125484406948, 0.009162139147520065, -0.006803568918257952, -0.0009047801722772419, -0.006712854374200106, -0.007049253210425377, 0.0019692552741616964, -0.009298210963606834, 0.012783150188624859, 0.005824611056596041, 0.027425941079854965, -0.018702255561947823, -0.0007602043333463371, 0.008353270590305328, -0.010039043612778187, -0.02239130064845085, 0.0018530276138335466, 0.009449400939047337, -0.0198361836373806, 0.0006335823563858867, -0.020047849044203758, -0.02352522872388363, 0.01297213789075613, -0.027017727494239807, -0.0068489257246255875, -0.011120054870843887, 0.02140856347978115, -0.017250826582312584, 0.007589758839458227, -0.003551085013896227, 0.0022962044458836317, -0.011460233479738235, -0.025037134066224098, -0.00890511553734541, -0.025006895884871483, 0.023147253319621086, -0.011543388478457928, -0.002437945455312729, 0.005114015657454729, -0.027562012895941734, 0.040760938078165054, 0.009623270481824875, -0.015164398588240147, -0.0017358550103381276, 0.0034169035498052835, 0.011127614416182041, 0.01687285117805004, -0.0019153936300426722, 0.038523320108652115, -0.003783540101721883, -0.0010006915545091033, -0.025263918563723564, -0.003301620716229081, 0.021045705303549767, -0.030903320759534836, 0.024024156853556633, -0.008292794227600098, -0.004123718477785587, -0.009766900911927223, -0.00805088970810175, 0.002209269907325506, -0.03568093851208687, -0.0004719975986517966, -0.0051102363504469395, -0.010666484013199806, -0.01787070743739605, -1.5960629752953537e-05, 0.001644195755943656, -0.016252970322966576, -0.014544517733156681, -0.010424579493701458, 0.009260413236916065, -0.0025381091982126236, 0.0010262049036100507, -0.03226403519511223, -0.0013323655584827065, -0.016071541234850883, 0.005480652675032616, -0.01071184128522873, -0.0009487198549322784, -0.020803801715373993, -0.00850446056574583, -0.009691305458545685, -0.01970011182129383, 0.010288507677614689, 0.0021903712768107653, -0.018112612888216972, -0.01761368289589882, 0.011535828933119774, 0.00784678291529417, 0.010878150351345539, -0.00012922055611852556, 0.0013966214610263705, -0.002551338402554393, -0.004996843170374632, 0.008708568289875984, -0.017976541072130203, -0.03232451155781746, 0.014597434550523758, -0.007400771137326956, -0.0010262049036100507, 0.0020089426543563604, 0.0033205195795744658, -0.008829520083963871, -0.011029341258108616, 0.02673046663403511, -0.006818688008934259, -0.007302497047930956, -0.00044601171975955367, 0.00031749988556839526, -0.0034131237771362066, 0.00011965304292971268, 0.023963680490851402, -0.004592408891767263, -0.015935469418764114, 0.01376588735729456, -0.007997972890734673, -0.018611541017889977, 0.015451660379767418, -0.0033847754821181297, 0.0020656390115618706, -0.013342554681003094, -0.02804582193493843, -0.016993802040815353, -0.013909518718719482, 0.0016432508127763867, 0.00172073591966182, -0.013886840082705021, -0.013251840136945248, 0.0013087420957162976, -0.017175231128931046, 0.026231536641716957, -0.008731246925890446, -0.003590772394090891, 0.0152702322229743, 0.005703658331185579, 0.022890228778123856, 0.009955888614058495, 0.023404275998473167, 0.020803801715373993, 0.0012870084028691053, -0.010485055856406689, 0.004180415067821741, 0.005518450401723385, 0.015481898561120033, 0.011611424386501312, 0.011732376180589199, 0.009850055910646915, 0.016404161229729652, -0.010432139039039612, -0.01957915909588337, 0.01970011182129383, 0.030192727223038673, 0.01871737465262413, -0.014302613213658333, -0.013909518718719482, -0.022648325189948082, -0.004535712767392397, 0.0020467403810471296, -0.017916064709424973, 0.007907259277999401, 0.003961188718676567, -0.0069396402686834335, 0.019019754603505135, -0.01746249385178089, 0.0012359817046672106, -0.027471298351883888, -0.0016753787640482187, 0.009698865003883839, -0.012662197463214397, 0.030298558995127678, 0.017976541072130203, 0.004777617286890745, -0.0017046720022335649, -0.021771419793367386, 0.0036229004617780447, 0.02338915690779686, -0.01687285117805004, 0.00814916379749775, -0.00919237732887268, -0.006145890336483717, -0.003569983644410968, -0.0022470676340162754, 0.016585588455200195, 0.005858628544956446, -0.012715114280581474, 0.004513034131377935, 0.01622273214161396, -0.014650351367890835, 0.008156723342835903, 0.003494388423860073, 0.0013550440780818462, -0.008663211017847061, 0.012699995189905167, -0.008852198719978333, -0.006183688063174486, 0.00959303230047226, -0.01589011214673519, 0.003180668456479907, 0.003192007774487138, 0.010696722194552422, -0.02003272995352745, -0.02621641755104065, 0.0038704746402800083, -0.004358063917607069, -0.016041303053498268, -0.02904368005692959, 0.0036229004617780447, 0.003590772394090891, -0.006811128463596106, 0.009313330054283142, 0.008096246980130672, -0.009267972782254219, 0.011505590751767159, -0.008527139201760292, 0.013803685083985329, 0.004921248182654381, -0.03150808438658714, -0.021332968026399612, 0.014000232331454754, 0.0062933010049164295, 0.0054882122203707695, 0.005329462233930826, -0.026821179315447807, -0.009411603212356567, -0.01025070995092392, -0.011913805268704891, -0.013690291903913021, -0.01663094572722912, -0.0056923190131783485, 0.008081127889454365, -0.018808087334036827, -0.00773716950789094, 0.014801542274653912, 0.011823090724647045, 0.012919221073389053, -0.009411603212356567, 0.013607137836515903, -0.012699995189905167, 0.005586485844105482, 0.004849432501941919, -0.011770173907279968, 0.007400771137326956, 0.0016470305854454637, -0.009033627808094025, 0.0020165021996945143, 0.022875109687447548, -0.0005376709159463644, -0.009834936819970608, -0.010016364976763725, -0.005321902688592672, -0.022633206099271774, 0.007892140187323093, -0.01356178056448698, 0.012170828878879547, -0.0037381830625236034, -0.0014372539008036256, -0.0032052367459982634, 0.009184817783534527, 0.005733896512538195, -0.005208509974181652, 0.0019314575474709272, -0.001007306156679988, 0.00018957861175294966, 0.008300353772938251, 0.016842612996697426, -0.012518567033112049, -0.0039574094116687775, 0.015587732195854187, 0.000844303984194994, -0.007049253210425377, 0.016978684812784195, 0.010863031260669231, -0.015285351313650608, 0.013191363774240017, -0.00747258635237813, 0.0006638204213231802, -0.014990529976785183, 0.014914934523403645, 0.014279934577643871, -0.004403420723974705, 0.009237734600901604, 0.01116541214287281, 0.008073568344116211, -0.007340294774621725, 0.0012218075571581721, -0.008988270536065102, -0.004104819614440203, -0.031024273484945297, 0.01116541214287281, -0.007071931846439838, 0.02423582412302494, -0.004448777996003628, 0.016857732087373734, 0.0041615162044763565, 0.009056306444108486, -0.00207886821590364, 0.005529789719730616, 0.003915831912308931, -0.0022054901346564293, 0.007506604306399822, -0.018218444660305977, -0.029527489095926285, 0.014960291795432568, 0.008058449253439903, 0.015391184948384762, 0.01221618615090847, -0.012858744710683823, 0.0018813757924363017, -0.014431125484406948, -0.003995206672698259, -0.0032600434496998787, 0.020047849044203758, -0.010023924522101879, 0.01722058840095997, -0.004331605508923531, -0.023736895993351936, -0.008587615564465523, 0.02871106006205082, -0.012752912007272243, 0.014597434550523758, 0.003586992621421814, 0.029315821826457977, 0.018233563750982285, 0.0021053266245871782, -0.009532555937767029, -0.0011707807425409555, 0.0019182284595444798, 0.011702137999236584, -0.01885344460606575, -0.013750768266618252, 0.0069396402686834335, -0.0003600221825763583, 0.018883682787418365, 0.019291898235678673, -0.00545041449368, 0.005420176312327385, 0.00906386598944664, 0.0012076334096491337, -0.010689162649214268, -0.013682732358574867, -0.0037344032898545265, 0.006603241432458162, -0.008799281902611256, 0.022708801552653313, -0.019987372681498528, 0.012684876099228859, -0.0008778493502177298, 0.024553323164582253, -0.006913181859999895, -0.0032865016255527735, 0.0013115769252181053, 0.012601721100509167, 0.003380995709449053, -0.00630464032292366, -0.00939648412168026, 0.024946419522166252, 0.015179517678916454, -0.0038629150949418545, 0.013871720992028713, 0.002825370989739895, -0.0018086154013872147, -0.021559754386544228, 0.012102792970836163, 0.021514397114515305, -0.022361062467098236, 0.018944159150123596, -0.0011821200605481863, 0.0033923350274562836, -0.007816544733941555, 0.022754156962037086, -0.014211899600923061, 0.0034074541181325912, -0.018248682841658592, -0.002413376932963729, 0.004199313931167126, -0.001934292376972735, -0.020244397222995758, 0.02003272995352745, 0.005405057221651077, 0.0034698201343417168, 0.0029690018855035305, 0.0014098506653681397, -0.023857848718762398, -0.013085531070828438, 0.00400654599070549, -0.0027951328083872795, 0.005760354921221733, -0.008247436955571175, 0.0008632027893327177, -0.024341657757759094, 0.02115153893828392, -0.0007455577724613249, 0.00264394236728549, -0.019654754549264908, -0.001870036474429071, -0.013282078318297863, 0.018747610971331596, 0.031054511666297913, 0.014045589603483677, -0.0009789579780772328, 0.01405314914882183, 0.009615710936486721, 0.009018508717417717, -0.009834936819970608, 0.013531542383134365, 0.003352647414430976, 0.004014105536043644, -0.003927171230316162, -0.008066008798778057, -0.04094236344099045, -0.029330940917134285, 0.004399640951305628, 0.007733389735221863, 0.01248076930642128, 0.0001457570178899914, -0.020244397222995758, -8.392249583266675e-05, 0.0038402366917580366, 0.03395736962556839, -0.00266851088963449, 0.01077231764793396, -0.02095499262213707, -0.022240109741687775, 0.006036277394741774, 0.018959278240799904, -0.005352140869945288, 0.013954875990748405, 0.021605109795928, -0.013365233317017555, 0.018490588292479515, 0.014899815432727337, 0.011324162594974041, -0.01510392315685749, 0.008761485107243061, 0.004822974558919668, 0.008292794227600098, 0.017855588346719742, -0.0025248799938708544, 0.008572496473789215, 0.004577289801090956, 0.021786538884043694, -0.008549817837774754, 0.002417156705632806, 0.0005726336967200041, -0.009933210909366608, -0.007763627916574478, 0.004785176832228899, -0.0006709074950776994, 0.016797255724668503, -0.003607781371101737, 0.001959805842489004, -0.0035775431897491217, 0.013508863747119904, -0.006463390309363604, 0.011981840245425701, -0.02048630081117153, -0.019790826365351677, 0.006384015548974276, 0.032415226101875305, -0.02134808711707592, 0.011014222167432308, 0.0023358920589089394, -0.003783540101721883, -0.011006662622094154, -0.008814400993287563, 0.0025078710168600082, -0.01189112663269043, -0.004373183008283377, -0.004418539814651012, -0.005828390829265118, -0.025339514017105103, -0.0010630575707182288, -0.000659095705486834, 0.0012955128913745284, 0.029209988191723824, -0.001245431019924581, 0.003116412553936243, 0.004720920696854591, -0.01767415925860405, 0.0025494485162198544, -0.014461363665759563, 0.0024889721535146236, 0.010590888559818268, 0.003711724653840065, 0.006448271218687296, 0.012405173853039742, -0.010288507677614689, 0.012208626605570316, 0.003743852721527219, 0.005034640897065401, -0.009902972728013992, -0.005246307700872421, -0.007824104279279709, -0.041214507073163986, -0.014831779524683952, -0.003707944881170988, -0.0029274243861436844, -0.020456062629818916, -0.015262672677636147, -0.00011144387099193409, -0.00975934136658907, -0.031901177018880844, -0.0014845009427517653, 0.006546545308083296, 0.002188481390476227, -0.00035246266634203494, -0.011331722140312195, 0.012631959281861782, -0.018233563750982285, 0.010167555883526802, 0.0050610993057489395, 0.0026836299803107977, 0.010122198611497879, 0.00416907574981451, -0.006962318904697895, 0.02239130064845085, 0.01195160299539566, 0.013592018745839596, 0.01557261310517788, 0.01356178056448698, -0.006784670054912567, 0.012465650215744972, -0.006024938076734543, 0.011913805268704891, 0.001035654335282743, -0.0036172308027744293, -0.010159996338188648, -0.011369519867002964, 0.010696722194552422, 0.009162139147520065, 0.001129203476011753, -0.013637376017868519, -0.007680473383516073, 0.03268736973404884, -0.0017150662606582046, -0.0196396354585886, -0.00985761545598507, -0.021726062521338463, 0.013251840136945248, -0.0043202661909163, 0.00880684144794941, -0.0012681096559390426, 0.005794372875243425, -0.025596538558602333, -0.010628686286509037, 0.011218328960239887, 0.009404043667018414, -0.00533702177926898, 0.008103806525468826, 0.006924521178007126, -0.003530296264216304, 0.01643439754843712, -0.030132250860333443, 0.004059462808072567, -0.004864551592618227, 0.007861902005970478, -0.0060438369400799274, 0.0022149395663291216, -0.006198807153850794, 0.012533685192465782, -0.006308420095592737, -0.02109106257557869, -0.011883567087352276, -0.00269307941198349, -0.00533702177926898, 0.015353387221693993, -0.013146006502211094, -0.02733522839844227, 0.009713984094560146, -0.008066008798778057, -0.013675173744559288, 0.03153832256793976, -0.003949849866330624, 0.0018719263607636094, 0.001116919214837253, -0.02219475246965885, -0.003006799379363656, -0.0056167240254580975, 0.015459219925105572, -0.003753302153199911, 0.005590265616774559, -0.0246440377086401, -0.01838475465774536, 0.03008689358830452, -0.00528788473457098, -0.022240109741687775, 0.0021544634364545345, 0.00870100874453783, -0.003405564231798053, -0.02476499043405056, 0.03713236749172211, 0.0006879164138808846, -0.006788449827581644, -0.01405314914882183, -0.01746249385178089, -0.015648208558559418, 0.022482015192508698, -0.006841366179287434, -0.0029444333631545305, 0.007461247034370899, 0.009971007704734802, 0.0031012934632599354, 0.031235940754413605, 0.018551064655184746, -0.0009548619855195284, 0.00966106727719307, 0.00811136607080698, 0.01957915909588337, -0.0001952482562046498, 0.008156723342835903, 0.008285234682261944, -0.012843625620007515, 0.010923507623374462, -0.01162654347717762, -0.003813778283074498, -0.015247553586959839, 0.010976424440741539, -0.01392463780939579, 0.00020635129476431757, -0.0019503564108163118, 0.009139460511505604, -0.0006902787717990577, 0.0022565170656889677, 0.006811128463596106, 0.009570353664457798, -0.004550831392407417, -0.01057576946914196, 0.015164398588240147, -0.0035321861505508423, -0.004153956659138203, -0.015557494014501572, 0.02219475246965885, -0.01103690080344677, 0.020017610862851143, -0.013947316445410252, 0.02574772760272026, -0.009744222275912762, -0.022739039734005928, -0.0008074513170868158, -0.010999103076756, 0.01018267497420311, -0.007226902060210705, 0.0026193740777671337, 0.019155826419591904, 0.014340410940349102, -0.004256010055541992, 0.005541129037737846, 0.02462891861796379, -0.021786538884043694, -0.0021676926407963037, -0.003192007774487138, -0.01977570727467537, 0.0020505201537162066, -0.0019087790278717875, -0.01897439733147621, -0.005510890856385231, -0.005045980215072632, 0.009358687326312065, 0.007914818823337555, 0.0038099985104054213, 0.010719400830566883, -0.007075711619108915, 0.016540231183171272, -0.0305404644459486, -0.002776233945041895, 0.003881813958287239, -0.009351127780973911, 0.050799980759620667, 0.020713087171316147, -0.004308926872909069, 0.002031621290370822, 0.007347854319959879, -0.025974513962864876, 0.0026174841914325953, 0.009774460457265377, 0.006017378531396389, -0.01655535027384758, -0.0015525366179645061, 0.0098198177292943, 0.0010583329712972045, -0.008980710990726948, -0.0038440164644271135, -0.0005575146642513573, 0.002326442627236247, -0.0020410707220435143, 0.0034528111573308706, 0.007657794747501612, -0.007143747061491013, 0.006002259440720081, -0.005333242006599903, 0.023147253319621086, -0.004316486418247223, 0.018702255561947823, -0.013607137836515903, -0.008791722357273102, -0.01412874460220337, 0.020123444497585297, 0.016721660271286964, -0.006482289172708988, -0.02174118161201477, 0.01688797026872635, -0.008058449253439903, -0.005427735857665539, -0.008459104225039482, 0.013985113240778446, -0.009789579547941685, 0.004422319587320089, -0.026488561183214188, -0.012752912007272243, 0.02089451625943184, -0.0048078554682433605, -0.016978684812784195, -0.013977553695440292, -0.007075711619108915, 0.000177412512130104, 0.010787436738610268, -0.0014315842418000102, 0.01741713657975197, -0.005767914466559887, -0.01616225577890873, 0.000685081584379077, -0.011271245777606964, -0.0017991659697145224, -0.0017670380184426904, -0.01818820647895336, -0.014038030058145523, -0.01557261310517788, -0.01130148395895958, -0.005526009947061539, -0.0042106532491743565, -0.004683122970163822, -0.0026798502076417208, 0.00497416453436017, -0.00900338962674141, 0.010863031260669231, 0.009426722303032875, -0.0017386898398399353, 0.008708568289875984, -0.021786538884043694, -0.020047849044203758, -0.005820831283926964, -0.011286364868283272, -0.029663559049367905, -0.007688032928854227, -0.008980710990726948, -0.02411487139761448, -0.0026344929356127977, 0.016509993001818657, -0.03250594064593315, 0.0011792852310463786, 0.00016926239186432213, -0.0024738532956689596, 0.002252737293019891, -0.001676323707215488, -0.005117795430123806, 0.010794996283948421, 0.018505707383155823, 0.01403047051280737, -0.011906245723366737, -0.014960291795432568, 0.010568209923803806, 0.013380352407693863, -0.00666749756783247, 0.005008182488381863, -0.0022640766110271215, 0.008648091927170753, 0.014763744547963142, 0.0027875732630491257, 0.01162654347717762, -0.006709074601531029, 0.016857732087373734, 0.014181661419570446, -0.029451893642544746, 0.003006799379363656, -0.026488561183214188, -0.017326422035694122, 0.013055292889475822, -0.013833923265337944, 0.0059153251349925995, -0.010091960430145264, -0.008973151445388794, -0.0031447606161236763, 0.019367491826415062, -0.012669757008552551, 0.017749754711985588, 0.016328565776348114, 0.007389431819319725, 0.007824104279279709, 0.02201332524418831, 0.013516423292458057, 0.015179517678916454, 0.00502330157905817, 0.004444998223334551, 0.0007819379679858685, 0.016842612996697426, -0.0032676029950380325, -0.016313446685671806, 0.013539101928472519, -0.00850446056574583, -0.005231188610196114, 0.0035491951275616884, -0.0031466505024582148, -0.01396243553608656, 0.005484432447701693, -0.01366005465388298, -0.0024662937503308058, -0.017825350165367126, -0.02949725091457367, 0.02325308695435524, 0.011248567141592503, 0.006837586872279644, 0.0019163385732099414, 0.0010280947899445891, -0.008716127835214138, 0.021574873477220535, -0.01655535027384758, 0.008126485161483288, -0.008073568344116211, -0.0005116850952617824, -0.002148793777450919, 0.01608666032552719, -0.0007422504713758826, 0.01892904005944729, -0.022557610645890236, 0.020017610862851143, -0.013584459200501442, 0.005817051511257887, -0.004021665081381798, -0.010023924522101879, 0.0016999472863972187, -0.011324162594974041, -0.004565950483083725, -0.004361843690276146, 0.006433152128010988, 0.021332968026399612, -0.0017226258059963584, -0.021378325298428535, -0.008708568289875984, -0.02865058369934559, -0.021000349894165993, 0.011339281685650349, -0.010946186259388924, 0.018687136471271515, -0.010492615401744843, 0.019473325461149216, -0.026443203911185265, -0.015428981743752956, 0.008973151445388794, 0.006096753757447004, 0.003668257500976324, 0.008353270590305328, -0.026186181232333183, -0.0003267130523454398, -0.0042106532491743565, 0.0034490313846617937, -0.005968241952359676, 0.005178271792829037, 0.01616225577890873, 0.025793084874749184, 0.017447374761104584, -0.0023717996664345264, -0.016706541180610657, 0.005159372929483652, 0.008512020111083984, 0.0016583699034526944, -0.02620130032300949, 0.010492615401744843, 0.029603084549307823, 0.016056422144174576, -0.006501188036054373, 0.013244280591607094], "7e203c21-d2d0-443a-8ed1-f316aac108c5": [-0.015642086043953896, -0.028821101412177086, -0.017241479828953743, 0.022807376459240913, -0.03934512287378311, -0.017177505418658257, -0.018281087279319763, 0.01372281089425087, -0.011355706490576267, 0.015130278654396534, 0.006617497652769089, 0.002239153254777193, 0.0007622117991559207, -0.02028033137321472, -0.0015294216573238373, 0.034035131335258484, -0.004562275018543005, 0.013562871143221855, 0.011555630713701248, -0.01738542690873146, 0.0611288845539093, -0.01679364964365959, -0.023447133600711823, 0.01399470865726471, 0.013195010833442211, -0.011507648974657059, 0.002385098021477461, -0.0010246125748381019, -0.04225602373480797, -0.002820933237671852, -0.008500785566866398, 0.016521751880645752, 0.040016867220401764, -0.011651594191789627, 0.016905607655644417, -0.01757735386490822, -0.014554496854543686, 0.01780126802623272, -0.0030948298517614603, -0.022535478696227074, -0.027333663776516914, 0.001392473466694355, 0.013906741514801979, -0.010332093574106693, -0.04715017229318619, -0.004068461712449789, -0.019352681934833527, -0.014218623749911785, -0.03464290127158165, -0.01014016568660736, 0.016001949086785316, 0.036434222012758255, -0.012563249096274376, -0.01983250118792057, 0.02734965831041336, -0.03083634003996849, -0.014530505985021591, 0.07075724750757217, -0.005701844114810228, -0.028005409985780716, -0.004678231198340654, -0.014618472196161747, -0.0032707632053643465, 0.0040124827064573765, -0.020072409883141518, -0.027909446507692337, -0.016553740948438644, -0.008884640410542488, -0.02725369483232498, -0.018313074484467506, -0.027605561539530754, -0.019080784171819687, -0.05242817476391792, 0.014906363561749458, 0.011947481893002987, -0.031092243269085884, 0.060297198593616486, 0.015554118901491165, 0.01184352207928896, 0.017001571133732796, -0.038833316415548325, 0.014890369959175587, 0.006065706256777048, 0.014450536109507084, 0.0534517876803875, 0.009572380222380161, 0.005913763772696257, -0.048653602600097656, -0.02757357433438301, -0.026549961417913437, -0.0050021084025502205, 0.009860271587967873, -0.03387518972158432, -0.01620987057685852, 0.01530621200799942, 0.008060951717197895, 0.0025630309246480465, 0.010500029660761356, 0.018600966781377792, -0.0039265151135623455, 0.013706817291676998, 0.01748139038681984, -0.02487059496343136, 0.02866116166114807, 0.006193657871335745, -0.010643974877893925, -0.0051060691475868225, 0.0005847788997925818, -0.0029009031131863594, 0.04660637676715851, 0.0066934688948094845, -0.04110445827245712, 0.013354950584471226, -0.019400663673877716, -0.056362688541412354, -0.03573048859834671, 0.0034806837793439627, -0.010396068915724754, -0.021431896835565567, -0.03672211617231369, 0.014986333437263966, 0.012251367792487144, -0.006213650573045015, 0.014522508718073368, 0.001390474266372621, 0.005066084209829569, 0.035122718662023544, 0.003720593173056841, 0.013914738781750202, -0.008072947151958942, 0.014570490457117558, -0.019496627151966095, 0.024390777572989464, 0.03413109481334686, 0.01847301423549652, 0.014778411947190762, 0.03270763158798218, 0.03755379840731621, -0.010747935622930527, 0.07171688228845596, -0.056042809039354324, -0.03886530548334122, -0.01252326462417841, 0.005581889301538467, -0.01070795115083456, 0.04072060436010361, -0.04762998968362808, 0.037297897040843964, -0.047438062727451324, 0.031716007739305496, -0.040144819766283035, -0.0403047613799572, 0.01424261461943388, 0.02702977880835533, 0.031236188486218452, -0.020040422677993774, -0.012571246363222599, 0.02952483668923378, 0.02522246353328228, 0.01983250118792057, 0.0069693648256361485, -0.06698267161846161, 6.466305057983845e-05, 0.006009727716445923, 0.02427881956100464, 0.018824880942702293, 0.06627894192934036, 0.030004654079675674, -0.02685384638607502, 0.019688555970788002, 0.026182100176811218, 0.018904851749539375, -0.002483061049133539, -0.0008756688912399113, 0.024166861549019814, -0.02373502589762211, 0.03672211617231369, 0.00928448885679245, 0.030308539047837257, -0.0403047613799572, -0.002291133627295494, -0.018057171255350113, -0.00673745246604085, -0.03406711667776108, -0.00966834370046854, 0.01693759486079216, -0.00797298550605774, -0.015570112504065037, 0.010132168419659138, 0.018185123801231384, -0.03061242401599884, -0.012131412513554096, -0.0073092360980808735, 0.013866757042706013, -0.0038885297253727913, -0.044271260499954224, 0.0045422823168337345, -0.022903339937329292, 0.009444428607821465, 0.0321638397872448, -0.015282221138477325, -0.025574330240488052, -0.05793009698390961, 0.04900547116994858, -0.0002541538851801306, 0.015042312443256378, 0.013930732384324074, -0.030404502525925636, 0.03505874425172806, -0.019368676468729973, 0.02376701310276985, -0.04814179614186287, 0.020232349634170532, -0.007577134761959314, -0.04455915093421936, 0.01960858516395092, -0.01956060342490673, 0.044719088822603226, -0.007069326937198639, -0.04622252285480499, 0.01566607691347599, -0.007521156221628189, -0.013027073815464973, -0.006433567497879267, -0.015690067782998085, -0.009524398483335972, -0.002415086841210723, 0.03646621108055115, -0.026549961417913437, -0.011795539408922195, 0.038065604865550995, -0.014658457599580288, -0.02594219148159027, -0.00733722560107708, 0.022519484162330627, -0.0077170818112790585, -0.0006677475175820291, 0.02934890240430832, 0.003350733080878854, -0.00813292432576418, -0.0007742072339169681, 0.02816534973680973, -0.04446318745613098, 0.02408689260482788, 0.017225487157702446, 0.05262010172009468, 0.01861696131527424, 0.026613935828208923, 0.010627981275320053, 0.01209142804145813, -0.025030534714460373, 0.012051442638039589, -0.012355328537523746, 0.004270385485142469, -0.017353437840938568, 0.01842503249645233, 0.012851140461862087, -0.04008084535598755, -0.008508782833814621, 0.014522508718073368, 0.023511109873652458, -0.007009349763393402, -0.02069617435336113, 0.019848493859171867, 0.03899325430393219, -0.012243370525538921, 0.015786031261086464, 0.0023491117171943188, 0.011027829721570015, 0.059657443314790726, -0.011363702826201916, -0.03106025606393814, 0.013970717787742615, -0.01377079263329506, -0.006753446534276009, 0.0019472637213766575, 0.03333139792084694, 0.0051740435883402824, -0.006133680697530508, 0.0020202361047267914, -0.005629871040582657, 0.0070053511299192905, 0.011443672701716423, 0.009972229599952698, -0.004710218869149685, 0.01893683895468712, -0.023383157327771187, 0.014522508718073368, -0.02250349149107933, -0.021975690498948097, -0.01138769369572401, -0.025206468999385834, 0.014074677601456642, 0.03477085381746292, 0.036434222012758255, 0.027813483029603958, 0.012243370525538921, -0.002625007415190339, -0.019912470132112503, 0.007457180414348841, 0.009564383886754513, 0.007241262122988701, -0.027861464768648148, -0.03505874425172806, 0.010867890901863575, -0.020008433610200882, 0.009156537242233753, 0.013234995305538177, -0.032355766743421555, 0.006505540106445551, 0.04279981553554535, -0.0042543914169073105, -0.016633709892630577, 0.0003053845139220357, 0.00374258472584188, 0.014906363561749458, 0.0129071194678545, 0.02544637769460678, -0.014122660271823406, -0.04423927143216133, 0.015506137162446976, -0.0052780043333768845, -0.0244547538459301, 0.003876534290611744, 0.04683029279112816, -0.031955916434526443, 0.022791381925344467, -0.0017143517034128308, -0.021223975345492363, 0.003916519228368998, -0.04171222820878029, -0.013314965181052685, -0.028501223772764206, -0.02359107881784439, -0.023878971114754677, 0.0014004705008119345, -0.04551878944039345, -0.030148599296808243, -0.01656973548233509, -0.03297952935099602, -0.027013786137104034, 0.01152364257723093, 0.002361107151955366, -0.0278454702347517, -0.0035346634685993195, -0.029140980914235115, 0.015426167286932468, -0.011563627049326897, -0.017465395852923393, -0.02749360352754593, 0.0011655592825263739, -0.005609878804534674, 0.031636036932468414, 0.012987089343369007, 0.05633069947361946, -0.0004528287681750953, -0.040784578770399094, -0.008828661404550076, 0.017417414113879204, -0.01525823026895523, 0.02427881956100464, -0.05783412978053093, -0.018265092745423317, 0.01410666573792696, -0.013274980708956718, 0.05102070793509483, -0.019992440938949585, -0.011379697360098362, 0.00035486582783050835, 0.012899122200906277, -0.037201933562755585, -0.00855676457285881, 0.04311969503760338, -0.018217111006379128, -0.03201989084482193, -0.02725369483232498, 0.08444806933403015, -0.02114400453865528, -0.008540770970284939, 0.021655810996890068, -0.015298215672373772, 0.018489008769392967, 0.011851518414914608, 0.007817043922841549, 0.048973482102155685, 0.022695418447256088, 0.0008061951375566423, 0.000299636711133644, -0.022887345403432846, -0.008676718920469284, -0.018137142062187195, 0.013059061951935291, 0.01405868399888277, 0.009572380222380161, -0.01170757319778204, -0.01997644640505314, 0.0065455250442028046, -0.015873998403549194, -0.0001965506817214191, -0.018505003303289413, -0.01118776947259903, 0.03162004426121712, -0.006381587125360966, 0.03608235716819763, 0.01181953027844429, -0.027461616322398186, -0.036754101514816284, -0.00275095971301198, -0.003420706605538726, 0.013195010833442211, 0.01748139038681984, 0.011491654440760612, 0.02272740565240383, 0.020184367895126343, 0.05284401774406433, 0.01748139038681984, 0.0547952800989151, 0.038833316415548325, -0.03160404786467552, -0.025078516453504562, 0.0138107780367136, 0.07843434065580368, -0.004838170483708382, 0.0011505649890750647, 0.012331337668001652, 0.019448645412921906, 0.0009711327729746699, 0.035250671207904816, -0.0023371162824332714, -0.016065925359725952, 0.02870914526283741, 0.04398337006568909, -0.028229326009750366, -0.03320344537496567, 0.00792500376701355, -0.030692394822835922, 0.015178260393440723, 0.013530883938074112, -0.0017503381241112947, -0.0019152758177369833, -0.010148162953555584, 0.0138107780367136, -0.01688961312174797, -0.025414390489459038, -0.014866379089653492, -0.021975690498948097, -0.0511806458234787, 0.0016623714473098516, 0.016553740948438644, 0.013842765241861343, -0.0021271957084536552, 0.0066134994849562645, -0.0579620823264122, -0.007917006500065327, 0.01906479150056839, -0.005062086042016745, -0.02838926576077938, -0.033395372331142426, 0.03780970349907875, -0.05130859836935997, -0.04762998968362808, -0.002648998284712434, 0.018041178584098816, -0.01820111833512783, 0.005993733648210764, -0.02591020241379738, 0.013634844683110714, 0.02920495718717575, 0.01624985598027706, -0.0006012726225890219, -0.006469553802162409, -0.002940888050943613, -0.01145966723561287, 0.02934890240430832, 0.0021531858947128057, -0.018760906532406807, -0.03509072959423065, -0.008412819355726242, -0.019912470132112503, -0.03601837903261185, -0.03595440462231636, 0.003404712537303567, -0.012259364128112793, 0.016745667904615402, 0.006717459764331579, 0.006773438770323992, -0.038065604865550995, -0.033715251833200455, 0.017177505418658257, 0.006005729082971811, 0.06608700752258301, 0.009484414011240005, -0.01453850232064724, -0.005645865108817816, 0.0022491496056318283, -0.005142055451869965, -0.0012765172868967056, -0.031460102647542953, 0.01118776947259903, -0.01476241834461689, 0.03908921778202057, -0.012547255493700504, -0.013866757042706013, 0.021623823791742325, 0.004282380919903517, -0.019688555970788002, -0.010148162953555584, 0.035026755183935165, -0.006193657871335745, -0.03723392263054848, -0.03387518972158432, 0.01018814742565155, -0.030228570103645325, 0.023127254098653793, 0.02119198627769947, 0.013962720520794392, 0.01693759486079216, 0.010364080779254436, 0.021799756214022636, 0.0030728380661457777, -0.01510628778487444, 0.002551035489886999, -0.005817800294607878, 0.017737293615937233, -0.01703355833888054, -0.015378185547888279, -0.030804352834820747, -0.031236188486218452, 0.011747557669878006, -0.008252879604697227, -0.014250611886382103, 0.012627225369215012, -0.0244547538459301, 0.013498895801603794, 0.014138653874397278, 0.006345600355416536, -0.0023890966549515724, 0.022215599194169044, -0.005321987438946962, -0.00046057585859671235, -0.03627428412437439, 0.04040072485804558, -0.0059977322816848755, 0.008196900598704815, 0.010340089909732342, 0.028181344270706177, 0.017769280821084976, 0.018361058086156845, 0.011667587794363499, 0.02725369483232498, -0.03270763158798218, 0.004534285515546799, -0.020584216341376305, -0.011283732950687408, -0.00846879743039608, -0.06954170763492584, 0.005074081476777792, -0.0004885652451775968, -0.001056600478477776, -0.009956235066056252, -0.01775328628718853, 0.010675963014364243, -0.010196144692599773, 0.019496627151966095, -0.022663431242108345, -0.03088432177901268, -0.005074081476777792, 0.0375857874751091, -0.018489008769392967, -0.0005128061166033149, 0.022887345403432846, -0.007980981841683388, 0.003880532691255212, -0.010540014132857323, 0.03232377767562866, 0.0027089756913483143, -0.012347331270575523, 0.0074131968431174755, -0.016177883371710777, -0.0025830233935266733, 0.008972607553005219, 0.0022831365931779146, 0.018281087279319763, -0.005661859177052975, 0.0203762948513031, 0.01093986351042986, 0.006317611318081617, -0.032851576805114746, 0.009068571031093597, 0.014714435674250126, 0.004326364025473595, 0.03409910574555397, 0.00969233550131321, 0.001988248201087117, -0.044079333543777466, 0.02195969596505165, 0.00855676457285881, 0.008492788299918175, -0.015913981944322586, -0.012643218971788883, 0.00038285524351522326, 0.031636036932468414, 0.007029341999441385, -0.0008156915428116918, -0.014794405549764633, 0.03061242401599884, 8.834159234538674e-05, 0.003454693593084812, -0.01810515485703945, 0.013059061951935291, 0.014818396419286728, -0.010148162953555584, 0.04830173775553703, -0.018041178584098816, 0.04583866894245148, -0.010028207674622536, 0.01598595455288887, 0.03617832064628601, -0.009492410346865654, 0.013650838285684586, 0.02109602279961109, -0.043535538017749786, 0.07363615930080414, -0.040048856288194656, 0.02509451098740101, 0.043631501495838165, -0.009212516248226166, 0.011931488290429115, -0.01057200226932764, -0.014402554370462894, -0.02966878190636635, -0.0030968289356678724, 0.015866000205278397, -0.041456323117017746, 0.019896477460861206, -0.0018722920212894678, 0.009820287115871906, 0.023383157327771187, -0.013322962448000908, -0.014386559836566448, -0.022135630249977112, -0.0012735184282064438, -0.001921273535117507, 0.06180063262581825, -0.021575842052698135, 0.014170642010867596, -0.0032367759849876165, 0.019480634480714798, 0.07171688228845596, -0.0007692091166973114, -0.049517277628183365, -0.024166861549019814, 0.010356084443628788, 0.02055222913622856, 0.020088404417037964, -0.03288356587290764, -0.0029728759545832872, 0.04615854471921921, -0.006321609485894442, 0.010540014132857323, 0.010883884504437447, -0.021479878574609756, -0.01812114752829075, 0.004142433870583773, 0.02866116166114807, 0.03174799680709839, 0.0037645765114575624, 0.011691578663885593, 0.01698557659983635, 0.054411426186561584, 0.014210626482963562, -0.02092009037733078, 0.014746423810720444, 0.009604368358850479, 0.0006422571605071425, -0.02821333147585392, 0.013027073815464973, 0.006485547870397568, 0.005150052718818188, 0.005429946817457676, -0.006133680697530508, -0.020392289385199547, -0.0006642488297075033, 0.027925441041588783, -0.016505759209394455, 0.0038705363404005766, -0.03227579593658447, 0.02403891086578369, -0.01943265274167061, -0.002169179730117321, -0.008144919760525227, 0.026981797069311142, 0.021527860313653946, 0.019480634480714798, 0.003504674881696701, 0.02495056577026844, 0.012147407047450542, -0.04113644361495972, 0.012411306612193584, -0.014402554370462894, -0.040912531316280365, -0.011339711956679821, 0.01911277323961258, -0.026501979678869247, -0.0015634088777005672, 0.03899325430393219, -0.038737352937459946, -0.01666569896042347, 0.02989269606769085, 0.019720543175935745, 0.015866000205278397, -0.009404444135725498, 0.014978336170315742, 0.021543852984905243, 0.017145516350865364, 0.03563452512025833, 0.0018912848317995667, 0.015953967347741127, 0.011899500153958797, 0.005801806226372719, 0.00616966700181365, 0.024262825027108192, 0.0011565627064555883, -0.033843204379081726, -0.04609457030892372, 0.011779545806348324, -0.007873022928833961, 0.0134749049320817, -0.015386181883513927, 0.006041715387254953, 0.04289577901363373, -0.022631442174315453, 0.011195766739547253, -0.0044623129069805145, -0.028293302282691002, -0.02640601433813572, -0.011755554936826229, 0.009092561900615692, 0.05194835737347603, 0.0030248563271015882, 0.03150808438658714, -0.01852099597454071, -0.005493922624737024, -0.013802780769765377, 0.040240783244371414, -0.0006327607552520931, 0.024742644280195236, 0.007841034792363644, 0.02744562178850174, 0.030644413083791733, 0.028629174456000328, -0.029188962653279305, 0.0380336195230484, 0.025958184152841568, -0.0019822504837065935, 0.0019292704528197646, 0.013354950584471226, -0.0049741193652153015, -0.006209651939570904, 0.007633113767951727, -0.0039265151135623455, 0.0032847579568624496, -0.021655810996890068, -0.03912120684981346, 0.0065095387399196625, 0.03649820014834404, 0.005258011631667614, 0.04011283069849014, 0.04043271020054817, -0.014138653874397278, -0.003734587924554944, 0.00045582762686535716, -0.0024590701796114445, 0.02848522923886776, -0.026773875579237938, -0.05098871886730194, 0.013978714123368263, 0.011179772205650806, -0.04948528856039047, -0.03400314226746559, -0.02776550129055977, -0.03505874425172806, 0.002277138875797391, -0.02386297658085823, 0.023671049624681473, -0.026102129369974136, 0.019352681934833527, 0.007909009233117104, 0.013738805428147316, 0.012211382389068604, 0.0025150489527732134, -0.00447030970826745, 0.015690067782998085, 0.015586106106638908, 0.0008726700325496495, -0.035570550709962845, 0.022263580933213234, -0.015410172753036022, 0.0001430708944099024, 0.014690444804728031, 0.01671368069946766, -0.04382342845201492, 0.04193614423274994, 0.052460163831710815, -0.02255147323012352, -0.027413634583353996, 0.01956060342490673, -0.004010483622550964, -0.019720543175935745, 0.017721299082040787, -0.015458154492080212, -0.006713461596518755, 0.0024810617323964834, 0.009796295315027237, 0.008372833952307701, -0.0012415305245667696, 0.0010476039024069905, 0.0064935446716845036, 0.013506893068552017, 0.015218245796859264, -0.001973253907635808, 0.010899878107011318, 0.015298215672373772, -0.007821043021976948, -0.007817043922841549, -0.013706817291676998, 0.014130656607449055, -0.02752559259533882, 0.0289810411632061, -0.03142811730504036, -0.010771926492452621, -0.014682448469102383, -0.0190168097615242, 0.055403050035238266, -0.01553012803196907, 0.004050468560308218, -0.059113647788763046, -0.011379697360098362, -0.0448150560259819, 0.03800163045525551, -0.026182100176811218, -0.027813483029603958, -0.02989269606769085, -0.02798941731452942, 0.004094451665878296, 0.007389205973595381, -0.003242773935198784, 0.01589798927307129, 0.045390836894512177, 0.032675646245479584, 0.041456323117017746, -0.01157162431627512, -0.014418547973036766, 0.010444050654768944, -0.02376701310276985, 0.005985736846923828, -0.004246394149959087, 0.049517277628183365, -0.005022101104259491, 0.026821857318282127, 0.025462372228503227, 0.03477085381746292, -0.03924915939569473, -0.010364080779254436, 0.004366348963230848, -0.014738427475094795, -0.005517913494259119, -0.0278454702347517, 0.0004498299094848335, -0.011483658105134964, -0.00855676457285881, 0.005781813524663448, 0.01539417915046215, 0.0018003192963078618, -0.02893305942416191, -0.004830173682421446, -0.0013784787151962519, 0.009348465129733086, -0.058889731764793396, -0.008628737181425095, 0.015706060454249382, 0.015746045857667923, -0.005905766971409321, 0.0003703599504660815, -0.03908921778202057, -0.02079213783144951, 0.0380336195230484, -0.01797720231115818, -0.0022671427577733994, 0.0009451426449231803, 0.020072409883141518, 0.012059439904987812, -0.037745729088783264, -0.017897233366966248, -0.020024428144097328, -0.021863732486963272, -0.01195547915995121, -0.024470746517181396, -0.021943703293800354, 0.010931866243481636, -0.0015893990639597178, -0.026645924896001816, -0.029492847621440887, -0.009476416744291782, 0.013490898534655571, -0.046126559376716614, 0.009476416744291782, 0.01320300716906786, 0.0032467723358422518, 0.01410666573792696, 0.02866116166114807, 0.010763930156826973, -0.01113978773355484, -0.015618094243109226, 0.06141677498817444, 0.025030534714460373, -0.006265630945563316, -0.015698064118623734, -0.017513377591967583, -0.010747935622930527, -0.011067815124988556, 0.019128767773509026, -0.018680935725569725, 0.014906363561749458, -0.012547255493700504, 0.005142055451869965, -0.00542195001617074, -0.0003248771536163986, 0.01050802692770958, 0.03278760239481926, -0.002099206205457449, 0.01442654523998499, 0.002978873671963811, -0.0024570708628743887, 0.008620739914476871, 0.00989225972443819, -0.020136386156082153, -0.025206468999385834, -0.013306967914104462, -0.021543852984905243, -0.0190168097615242, -0.005305993836373091, 0.01190749742090702, 0.0022451509721577168, 0.020536234602332115, 0.008948616683483124, -0.00955638661980629, -0.0030948298517614603, -0.013570868410170078, 0.008500785566866398, -0.0015074299881234765, 0.016809644177556038, -0.00546993175521493, -0.017625335603952408, 0.008156916126608849, 0.011475660838186741, -0.013115040957927704, 0.0025830233935266733, 0.02376701310276985, 0.003612634027376771, -0.010795917361974716, -0.001462446991354227, 0.01815313659608364, 0.0025090512353926897, -0.00668947072699666, 0.028869083151221275, -0.01911277323961258, -0.0020592212677001953, -0.0035206687171012163, 0.005989735014736652, -0.009964232333004475, -0.008668722584843636, 0.0011735562002286315, 0.023607073351740837, 0.010316099040210247, -0.012779167853295803, -0.009196522645652294, -0.02047225832939148, -0.01743340864777565, -0.02368704415857792, 0.044943004846572876, 0.0038585409056395292, -0.021048041060566902, -0.041776202619075775, -0.009748313575983047, -0.012651216238737106, -0.023495115339756012, 0.019256718456745148, -0.00765310600399971, -0.021815750747919083, -0.012171397916972637, -0.034898802638053894, -0.007801050320267677, -0.01329097431153059, 0.014658457599580288, 0.006857406813651323, -0.005517913494259119, -0.026182100176811218, -0.011427679099142551, -0.03988891839981079, -0.032947540283203125, 0.008828661404550076, -0.009356462396681309, 0.07139700651168823, -0.011291730217635632, 0.0019502625800669193, 0.0038705363404005766, 0.016809644177556038, 0.015554118901491165, -0.01453850232064724, -0.01070795115083456, -0.00468622799962759, -0.004626250825822353, 0.0031468102242797613, 0.020040422677993774, -0.0024930573999881744, 0.003840547753497958, -0.022583460435271263, -0.019480634480714798, 0.01988048292696476, -0.021128011867403984, 0.01277117058634758, 0.014282599091529846, -0.0190168097615242, -0.0034526945091784, 0.007960990071296692, 0.006121685262769461, 0.018648948520421982, 0.024070898070931435, -0.010683960281312466, -0.02803739905357361, -0.007629115134477615, 0.01965656690299511, -0.008836658671498299, 0.005901768337935209, -0.014722432941198349, 0.003644621931016445, -0.04922938346862793, -0.013362946920096874, -0.0024750640150159597, 0.024966560304164886, -0.006513536907732487, -0.008884640410542488, 0.02734965831041336, 0.015290218405425549, -0.016921602189540863, 0.02386297658085823, -0.010532017797231674, -0.01567407324910164, -0.01580202393233776, 0.02309526689350605, -0.009108555503189564, 0.012835146859288216, 0.012419303879141808, -0.0007812046096660197, 0.011763552203774452, -0.015786031261086464, -0.0048981476575136185, 0.010388071648776531, 0.008548767305910587, -0.014186635613441467, -0.016585728153586388, 0.043503548949956894, -0.015738049522042274, 0.016361813992261887, -0.01693759486079216, -0.03630627319216728, 0.010412062518298626, 0.006109689828008413, 0.0025790247600525618, -0.009780301712453365, -0.002700978657230735, -0.003400714136660099, 0.011963476426899433, 0.016777655109763145, 0.011891503818333149, 0.001638380461372435, -0.00830885861068964, 0.0015224242815747857, -0.0052780043333768845, -0.011875509284436703, -0.005473930388689041, -0.013802780769765377, 0.01760934107005596, -0.01824910007417202, -0.009588374756276608, -0.00015319207159336656, 0.006817422341555357, -0.0022311564534902573, 0.014858381822705269, -0.015322206541895866, -0.002315124496817589, 0.0015064303297549486, 0.006925381254404783, -0.003300751792266965, 0.005861783400177956, 0.005417951382696629, 0.08041759580373764, 0.017641330137848854, 0.009412440471351147, -0.015562115237116814, -0.023159243166446686, 0.006117686629295349, -0.0013105045072734356, 0.01358686201274395, 0.028837095946073532, 0.001427460229024291, 0.024742644280195236, -0.001094586099497974, 0.0123393340036273, 0.04225602373480797, 0.000432586413808167, 0.0019652568735182285, -0.008812667801976204, 0.011891503818333149, -0.008120928891003132, -0.010492032393813133, -0.010987845249474049, -0.001656373729929328, -0.0006297618965618312, -0.005505918059498072, 0.010995842516422272, -0.03093230351805687, 0.003790566697716713, -0.021080028265714645, -0.0037065984215587378, 0.016825638711452484, 0.019368676468729973, 0.01666569896042347, 0.01928870566189289, 0.007697089575231075, -0.0023731025867164135, 0.024566709995269775, 0.005577890668064356, -0.004122441168874502, 0.0021751774474978447, 0.004658238496631384, -0.0038545425049960613, -0.02413487434387207, -0.003154807025566697, -0.019800512120127678, -0.006309614051133394, 0.008444806560873985, -0.0009396446985192597, 0.0362422950565815, -0.02509451098740101, -0.002325120847672224, -0.011923491023480892, -0.003014859976246953, -0.03573048859834671, 0.009116552770137787, -0.033619288355112076, -0.0030128606595098972, -0.018377050757408142, -0.019816506654024124, -0.008532773703336716, -0.00200924021191895, -0.005685850046575069, 0.027109749615192413, -0.01467445120215416, -0.03432302176952362, -0.010476038791239262, -0.027269689366221428, -0.027477610856294632, -0.002523045986890793, 0.00722126942127943, 0.015977958217263222, 0.003864538623020053, 0.010731942020356655, -0.00790101196616888, 0.007733075879514217, -0.019320694729685783, 0.01084390003234148, 0.035442598164081573, -0.030180588364601135, 0.00869271345436573, -0.03483482822775841, 0.01304306834936142, 0.003140812274068594, 0.04785390570759773, 0.01562609151005745, -0.01815313659608364, -0.0058417911641299725, -0.0016303835436701775, -0.005857785232365131, -0.009932244196534157, -0.0025530345737934113, -0.0026170103810727596, 0.011723566800355911, 0.019304700195789337, -0.017353437840938568, -0.011411684565246105, -0.0002696480369195342, -0.007245260290801525, -0.00022641438408754766, 0.004294376354664564, 0.017513377591967583, -0.009188525378704071, 0.014706439338624477, 0.005729833617806435, 0.008484791964292526, -0.00851677916944027, 0.00363462558016181, -0.001798319979570806, -0.017129523679614067, -0.0276215560734272, -0.018952833488583565, 0.0023571087513118982, 0.01888885721564293, -0.01229135226458311, -0.0009381452691741288, -0.019352681934833527, -0.021032046526670456, -0.01238731574267149, 0.0018832879140973091, 0.012899122200906277, 0.00041159437387250364, 0.007313234731554985, 0.004290377721190453, -0.006989357061684132, 0.01933668740093708, 0.016633709892630577, 0.005777815356850624, 0.0035146709997206926, -0.007233264856040478, -0.008492788299918175, 0.005577890668064356, 0.038417473435401917, -0.005238019395619631, -0.024614691734313965, -0.007489168085157871, 0.003906522877514362, 0.011947481893002987, 0.029540829360485077, 0.01997644640505314, -0.011307723820209503, -0.002800941001623869, -0.0009296484640799463, 0.006161670200526714, 0.01061998400837183, -0.00218517379835248, 0.0017933219205588102, 0.0100761903449893, -0.02319123037159443, 0.01032409630715847, 0.012923113070428371, -0.017673317342996597, 0.012563249096274376, 0.005046091973781586, -0.001214540796354413, -0.001427460229024291, 0.0100761903449893, -0.001500432612374425, 0.0068494100123643875, -0.011947481893002987, 0.036658138036727905, -0.013362946920096874, 0.0434715636074543, -0.006485547870397568, -0.006597505416721106, -0.016601722687482834, -0.006973362993448973, 0.0058257970958948135, -0.015450158156454563, -0.06410375982522964, -0.028133362531661987, 0.01571405865252018, 0.017001571133732796, 0.004442320205271244, 0.017241479828953743, -0.012211382389068604, 0.00398449320346117, -0.0070573315024375916, 0.05159648880362511, -0.012379319407045841, 0.021000059321522713, -0.0038305516354739666, -0.008236885070800781, -0.008972607553005219, -0.011043824255466461, 0.013346953317523003, 0.012587240897119045, -0.0011555630480870605, -0.03074037656188011, -0.01738542690873146, -0.008404822088778019, 0.021863732486963272, 0.013498895801603794, -0.028741132467985153, -0.027733514085412025, 0.030532455071806908, 0.009060573764145374, -0.002627006731927395, -0.0026350035332143307, -0.00989225972443819, 0.010859893634915352, 0.015458154492080212, 0.007944995537400246, 0.026438003405928612, 0.02835727669298649, -0.007893015630543232, 0.024614691734313965, -0.02304728515446186, -9.627609688322991e-05, -0.006817422341555357, 0.0032107860315591097, -0.011755554936826229, 0.005397958680987358, 0.01810515485703945, -0.022807376459240913, -0.02947685495018959, 0.010396068915724754, 0.0022291571367532015, -0.02056822180747986, -0.004214406479150057, 0.008292864076793194, -0.001324499142356217, -0.01676166243851185, 0.022439515218138695, -0.02391095831990242, 0.011371700093150139, 0.010116174817085266, 0.020808132365345955, 0.01588999107480049, -0.017961207777261734, 0.02527044527232647, -0.01066796574741602, 0.026469990611076355, 0.0022051662672311068, 0.0264859851449728, -0.006817422341555357, 0.010444050654768944, -0.005593884736299515, -0.0013095048489049077, 0.0013414927525445819, -0.00535397557541728, -0.00985227432101965, 0.009548389352858067, 0.0025610316079109907, -0.02947685495018959, 0.006801428273320198, -0.006505540106445551, -0.00019667563901748508, 0.0007662102580070496, 5.7322075008414686e-05, 0.0011735562002286315, -0.004326364025473595, 0.004574270453304052, 0.003434701357036829, -0.018776899203658104, -0.006293620448559523, -0.013394935056567192, 0.004092452581971884, -0.0035006762482225895, 0.003880532691255212, -0.016473770141601562, -0.032259803265333176, -0.0047142175026237965, -0.01679364964365959, 0.02662993036210537, 0.0012445293832570314, -0.034802839159965515, 0.0024950564838945866, 0.010156159289181232, 0.0028669158928096294, 0.021112017333507538, -0.01884087547659874, -0.025462372228503227, 0.04062463715672493, 0.009292486123740673, -0.010947860777378082, 0.014730430208146572, 0.0015574111603200436, 0.0014194633113220334, 0.009164534509181976, -0.011291730217635632, -0.000915653770789504, -0.0018572977278381586, 0.0271737240254879, -0.0026390021666884422, 0.0014224621700122952, 0.014610475860536098, 0.008612743578851223, -0.014882372692227364, 0.031460102647542953, 0.03160404786467552, -0.00030413499916903675, -0.0035666513722389936, 0.006725457031279802, 0.015953967347741127, -0.009428435005247593, 0.014690444804728031, 0.004482305143028498, 0.001570406137034297, 0.025110505521297455, -0.02613411843776703, -0.04142433777451515, 0.02527044527232647, -0.019544608891010284, -0.002519047586247325, 0.015098290517926216, -0.029364896938204765, 0.003682607552036643, 0.03377922624349594, -0.023447133600711823, -0.0016853627748787403, -0.012643218971788883, -0.009428435005247593, -0.016177883371710777, 0.01265921350568533, -0.0033087488263845444, -0.011451669968664646, 0.002171179046854377, 0.002005241811275482, 0.034802839159965515, -0.009148540906608105, -0.008820665068924427, -0.0019352681702002883, 0.01419463288038969, -0.03646621108055115, -0.025030534714460373, -0.0028689152095466852, 0.038065604865550995, 0.005525910295546055, 0.003174799494445324, -0.010244126431643963, -0.010779923759400845, -0.008052955381572247, 0.014266605488955975, 0.01869693025946617, -0.0011535638477653265, 0.004566273186355829, 0.016649704426527023, -0.03342736139893532, 0.025110505521297455, -0.03560253605246544, 0.022615447640419006, -0.025558335706591606, 0.013746801763772964, -0.005373967811465263, 0.0289810411632061, 0.0028769122436642647, 0.004210407845675945, -0.01415464747697115, 0.009132546372711658, -0.003946507815271616, -0.0192407239228487, -0.002694980939850211, 0.013011080212891102, -0.02487059496343136, -0.003976496402174234, -0.00026514974888414145, -0.01367482915520668, 0.00453828414902091, 0.02163981832563877, -0.012707195244729519, 0.002040228573605418, -0.005301995202898979, 0.0005492923082783818, 0.013746801763772964, -0.004290377721190453, -0.004710218869149685, 0.008572758175432682, -0.005082078278064728, 0.0004368348163552582, 0.0013344953767955303, 0.015034315176308155, 0.021255962550640106, 0.00946841947734356, 0.008932622149586678, -0.008092939853668213, 0.02368704415857792, -0.011987467296421528, 0.01807316578924656, -0.016049930825829506, 0.017561359331011772, -0.015690067782998085, 0.01611390709877014, -0.020360302180051804, -0.016409795731306076, -0.016177883371710777, -0.007833038456737995, -0.004338359460234642, 0.025414390489459038, -0.0013804780319333076, 0.0007197278318926692, 0.0041504306718707085, -0.009084564633667469, -0.0160739216953516, 0.008980603888630867, 0.00016143896209541708, -0.014418547973036766, 0.01549014262855053, 0.0028089378029108047, -0.0037645765114575624, -0.032083868980407715, 0.02798941731452942, 0.005709840916097164, -0.012875131331384182, 0.004024478141218424, 0.01367482915520668, -0.02205565944314003, 0.031044261530041695, 0.028293302282691002, -0.030004654079675674, -0.013226998969912529, -0.007813045755028725, 0.020088404417037964, -0.013962720520794392, -0.030964290723204613, -0.012267361395061016, -0.0070573315024375916, -0.020680179819464684, -0.005697845481336117, 0.0052780043333768845, 0.020168373361229897, 0.0018572977278381586, 0.02314324863255024, -0.01462646946310997, -0.0005577891133725643, 0.008796674199402332, 0.0019792516250163317, -0.012587240897119045, 0.02672589384019375, -0.006685472093522549, -0.019144760444760323, 0.018824880942702293, -0.008612743578851223, -0.012075434438884258, 0.008332849480211735, -0.005409954581409693, -0.01157162431627512, -0.015602100640535355, -0.0014944348949939013, -0.027829477563500404, 0.011363702826201916, -0.0019852493423968554, -0.002363106468692422, -0.014218623749911785, -0.0398569293320179, -0.004334361292421818, -0.007429190911352634, -0.024262825027108192, 0.010971851646900177, 0.010787921026349068, 0.002666991436854005, -0.020888101309537888, 0.011507648974657059, -0.015658078715205193, -0.007913008332252502, 0.024694662541151047, -0.005613877438008785, 0.00874069519340992, 0.005453937686979771, -0.011467663571238518, -0.008956613019108772, -0.01892084628343582, -0.008380831219255924, -0.013370944187045097, 0.0010186148574575782, -0.02403891086578369, -0.0020912091713398695, 0.026837851852178574, 0.009204519912600517, -0.0005737830651924014, -0.010579999536275864, -0.011251745745539665, -0.0005602881428785622, -0.0020242345053702593, -0.0010985846165567636, 0.019192742183804512, 0.01571405865252018, -0.000933646981138736, -0.011403688229620457, -0.003856541821733117, -0.006485547870397568, -0.011635600589215755, 7.672099309274927e-05, -0.0026889832224696875, 0.010747935622930527, 0.004846167750656605, -0.013386937789618969, 0.05959346517920494, 0.015538124367594719, 0.009004594758152962, 0.010180151090025902, -0.010396068915724754, -0.004162426106631756, -0.018409039825201035, 0.01960858516395092, 0.0037805705796927214, 0.007169289048761129, -0.004858163185417652, -0.01372281089425087, 0.007325230166316032, -0.005529908929020166, -0.017721299082040787, 0.0002091709029627964, 0.006429568864405155, 0.014834390953183174, -0.014986333437263966, 0.010651972144842148, 0.01377079263329506, -0.0013684825971722603, 0.0013095048489049077, 0.02109602279961109, -0.00621764874085784, 0.023495115339756012, 0.01247528288513422, -0.012331337668001652, 0.0045862658880651, 0.008324852213263512, 0.0023731025867164135, -0.01581002213060856, -0.006145676132291555, -0.013226998969912529, -0.017673317342996597, 0.008388827554881573, 0.016681691631674767, 0.00688539631664753, 0.005377966444939375, 0.002992868423461914, 0.0007487168768420815, 0.014346575364470482, 0.008284867741167545, 0.008964610286056995, -0.028277307748794556, -0.017625335603952408, 0.0031767988111823797, -0.007089319173246622, 0.008492788299918175, -0.011491654440760612, -0.01566607691347599, -0.023287193849682808, 0.0017933219205588102, 0.01145966723561287, 0.023878971114754677, 0.00034262044937349856, 0.0001260773278772831, -0.004630248993635178, -0.0013894746080040932, 0.0010975849581882358, -0.010060195811092854, 0.002816934837028384, -0.006257633678615093, -0.030644413083791733, -0.007853030227124691, -0.01549014262855053, -0.009204519912600517, -0.01698557659983635, -0.0034406990744173527, -0.022311562672257423, -0.018313074484467506, 0.014002704992890358, 0.02232755720615387, -0.02672589384019375, 0.0061296820640563965, 0.03704199194908142, -0.0018952833488583565, 0.014298593625426292, -0.006865404080599546, 0.0035286657512187958, 0.025926196947693825, 0.018648948520421982, -0.010524020530283451, 0.0023231215309351683, 0.0010815910063683987, -0.005094073712825775, -0.004574270453304052, 0.0038665379397571087, 0.018169129267334938, -0.005178042221814394, -0.002541039139032364, 0.008932622149586678, 0.0004463312216103077, -0.016921602189540863, 0.012283354997634888, 0.0028109371196478605, -0.00370260002091527, -0.000688239757437259, 0.006093695759773254, -0.012163400650024414, 0.012107421644032001, 0.011507648974657059, 0.015218245796859264, 0.00029363896464928985, -0.008964610286056995, -0.0070053511299192905, 0.013498895801603794, -0.010603990405797958, -0.02136792056262493, 0.006945373956114054, -0.010268117301166058, -0.024422764778137207, 0.01075593288987875, 0.011579621583223343, -0.019992440938949585, 0.008596749044954777, 0.004026477690786123, -0.020088404417037964, -0.020664187148213387, 0.00155441218521446, -0.010516023263335228, 0.001888285973109305, -0.0066214962862432, 0.003954504616558552, 0.0052100298926234245, 0.0019282709108665586, -0.022935327142477036, -0.00980429258197546, -0.012963098473846912, -0.010340089909732342, 0.004194413777440786, 0.01879289373755455, 0.019992440938949585, 0.003912520594894886, -0.006505540106445551, 0.009732319973409176, 0.019816506654024124, -0.014610475860536098, 0.004678231198340654, -0.006789432838559151, 0.014546499587595463, 0.005437943618744612, 0.002011239528656006, 0.020888101309537888, 0.002591020194813609, 0.01562609151005745, 0.008340845815837383, -0.015514133498072624, 1.7649575966061093e-05, -0.009844277985394001, 0.038065604865550995, -0.018664943054318428, -0.0022831365931779146, 0.006541526410728693, -0.0001915525645017624, 0.004454315640032291, -0.017689311876893044, 0.011331715621054173, -0.005965744145214558, -0.011803536675870419, -0.0013994708424434066, -0.018776899203658104, -0.01243529748171568, -0.011403688229620457, -0.011419681832194328, 0.02621408738195896, 0.004426326137036085, 0.02133593149483204, 0.01392273511737585, 0.011715570464730263, 0.009116552770137787, -0.00256902864202857, -0.003772573545575142, -0.021815750747919083, 0.025334419682621956, -0.004114444367587566, -0.0064935446716845036, -0.005817800294607878, -0.011931488290429115, 0.0055139148607850075, -0.016601722687482834, -0.008332849480211735, 0.02934890240430832, 0.006517535541206598, 0.004318367224186659, -0.016777655109763145, -0.006065706256777048, -0.014946348033845425, -0.000272896810201928, 0.012787165120244026, -0.016633709892630577, -0.000353366369381547, 0.018552985042333603, -0.021112017333507538, -0.015610096976161003, -0.03358729928731918, 0.012571246363222599, -0.00595374871045351, 0.02739764004945755, -0.010452047921717167, 0.006481549236923456, 0.011155781336128712, 0.005030097905546427, 0.018904851749539375, 0.006153672933578491, -0.012499273754656315, 0.014786409214138985, -0.02499854750931263, -0.003864538623020053, 0.011011836118996143, -0.051372576504945755, -0.023559091612696648, 0.009260497987270355, 0.008884640410542488, -0.008644730783998966, 0.023783007636666298, 0.0018532992107793689, 0.005457936320453882, 0.021255962550640106, 0.012979092076420784, -0.006665479391813278, 0.01988048292696476, 0.005142055451869965, 0.012315343134105206, -0.010699953883886337, -0.009652350097894669, -0.004322365391999483, 0.008268873207271099, 0.0192407239228487, 0.002766953781247139, 0.014858381822705269, 0.0037605781108140945, -0.01075593288987875, 0.007301239296793938, -0.01661771722137928, 0.012603234499692917, 0.005162048153579235, 0.01792922057211399, 0.004110445734113455, -0.004024478141218424, -0.0044623129069805145, -0.0032807595562189817, -0.03483482822775841, -0.01127573661506176, -0.0035706497728824615, -0.02821333147585392, 0.005349976941943169, -0.010611987672746181, -0.012939107604324818, -3.220657163183205e-05, -0.02947685495018959, 0.004938132595270872, -0.008956613019108772, 0.013490898534655571, 0.030692394822835922, 0.019528616219758987, -0.018233105540275574, 0.007773060817271471, 0.014306589961051941, -0.019480634480714798, 0.015746045857667923, -0.002836927305907011, -0.005745827220380306, 0.004222403280436993, 0.016185879707336426, 0.013698820024728775, -0.0246786680072546, -0.0007252257782965899, 0.006197656504809856, 0.019528616219758987, 0.0040124827064573765, -0.012579243630170822, 0.018824880942702293, 0.018409039825201035, 0.011259742081165314, -0.00453828414902091, 0.00535397557541728, -0.018185123801231384, -0.0009826284367591143, 0.024470746517181396, 0.009140543639659882, 0.0023491117171943188, 0.015786031261086464, -0.012555252760648727, -0.0001745589979691431, -0.0353146456182003, -0.011563627049326897, 0.015554118901491165, 0.001268520369194448, 0.014354572631418705, 0.009572380222380161, -0.006781435571610928, -0.013123038224875927, -0.0033227435778826475, 0.007473174016922712, 0.0033587298821657896, -0.0011505649890750647, -0.009348465129733086, 0.015538124367594719, 0.01780126802623272, -0.0013584863627329469, -0.01978451944887638, -0.0017213490791618824, -0.009932244196534157, -0.01725747436285019, -0.0020592212677001953, 0.027749506756663322, 0.020040422677993774, -7.672099309274927e-05, 0.01624985598027706, -0.0035546559374779463, 0.0049501280300319195, 0.0066414885222911835, 0.008140921592712402, -0.0069053890183568, 0.008668722584843636, -0.009868268854916096, 0.006345600355416536, 0.005317989271134138, 0.00966834370046854, -0.00830885861068964, 0.026933815330266953, 0.009972229599952698, 0.001533420174382627, 0.015034315176308155, -0.004786190111190081, 0.019032802432775497, 0.00027939435676671565, 0.007325230166316032, -0.04366349056363106, 0.007069326937198639, 0.002589021110907197, -0.01132371835410595, -0.020536234602332115, -0.0024950564838945866, 0.009428435005247593, -0.010364080779254436, -0.0005982737638987601, -0.025014542043209076, -0.005214028526097536, -0.007601125631481409, -0.002948884852230549, 0.013498895801603794, -0.00415442930534482, -0.01095585711300373, 0.008460801094770432, -0.006177664268761873, -0.004290377721190453, 0.012131412513554096, 0.028133362531661987, 0.006857406813651323, 0.005270007066428661, 0.015290218405425549, -0.00018667940457817167, -0.009980225935578346, -0.011315721087157726, 0.0008521777926944196, 0.008348843082785606, -0.00035911420127376914, 0.011627603322267532, -0.0052620102651417255, -0.005050090607255697, -0.016521751880645752, -0.012795161455869675, 0.008008971810340881, 0.0039005251601338387, 0.008812667801976204, 0.012051442638039589, -0.02359107881784439, 0.011507648974657059, -0.0005667856894433498, -0.025654299184679985, -0.025078516453504562, -0.004894149489700794, -0.012547255493700504, 0.00975631084293127, -0.017545364797115326, -0.00040634634206071496, -0.011291730217635632, 0.008492788299918175, 0.030500467866659164, -0.005977739579975605, 0.0007172288023866713, -0.01661771722137928, 0.03461091220378876, 0.009980225935578346, 0.005757822655141354, 0.01812114752829075, -0.0010256122332066298, 0.0011245748028159142, 0.004886152222752571, 0.00655352184548974, 0.0025090512353926897, -0.008072947151958942, 0.0014034693595021963, 0.027317671105265617, -0.027061767876148224, 0.02885309047996998, 0.007301239296793938, -0.006329606752842665, -0.008404822088778019, 0.001778327627107501, 0.013826771639287472, 0.002131194109097123, -0.014778411947190762, -0.036562174558639526, 0.02109602279961109, 0.000299636711133644, 0.03422705829143524, -0.006809425074607134, -0.01023612916469574, 0.008764686062932014, 0.0014414549805223942, -0.00023541098926216364, -0.0024590701796114445, 0.0076730987057089806, 0.010268117301166058, 0.0027569574303925037, 0.012099425308406353, 0.013826771639287472, 0.021351926028728485, -0.009196522645652294, 0.010524020530283451, -0.009732319973409176, 0.02490258403122425, -0.010771926492452621, 0.03432302176952362, 0.0071532949805259705, -0.010468041524291039, -0.010172153823077679, 0.005985736846923828, -0.023926952853798866, 0.008428812958300114, 0.008064950816333294, -0.0012825150042772293, -0.00025465371436439455, 0.012195388786494732, -0.019768524914979935, 0.012643218971788883, 0.029876703396439552, -0.02327120117843151, 0.0016353816026821733, 0.0025470368564128876, -0.01462646946310997, 0.01589798927307129, -0.007545147091150284, 0.013027073815464973, 0.014594481326639652, 0.004218405112624168, 0.0069533707574009895, -0.001126574003137648, 0.0039445082657039165, 0.0023890966549515724, 0.0016653703060001135, -0.030276551842689514, -0.009932244196534157, -0.006433567497879267, -0.012123416177928448, 0.030308539047837257, -0.02888507768511772, -0.012171397916972637, 0.0006247637793421745, 0.02272740565240383, -0.006945373956114054, -0.004354353528469801, 0.006489546038210392, 0.005194035824388266, 0.033267419785261154, -0.0011605611070990562, 0.0007677096873521805, -0.011691578663885593, 0.003942509181797504, 0.027045773342251778, -0.013362946920096874, -0.014978336170315742, 0.006913385819643736, -0.0015744046540930867, 0.01693759486079216, -0.004562275018543005, -0.0067974296398460865, 0.0017203495372086763, 0.001021113945171237, -0.007865025661885738, 0.010747935622930527, 0.04097650572657585, -0.008700709789991379, -0.017721299082040787, 0.009956235066056252, 0.0061816624365746975, -0.0074811712838709354, -0.009132546372711658, 0.001500432612374425, 0.01956060342490673, -0.022023672237992287, -0.003878533374518156, 0.00012145407526986673, 0.012851140461862087, 0.01385875977575779, -0.004146432038396597, -0.0038065605331212282, 0.0024870596826076508, 0.0013344953767955303, -0.02079213783144951, -0.016369810327887535, 0.004986114799976349, 0.0005297996685840189, -0.008860649541020393, -0.003790566697716713, 0.016377806663513184, 0.020984064787626266, 0.016273846849799156, 0.007069326937198639, -0.009492410346865654, 0.005341980140656233, 0.007281246595084667, 0.021847737953066826, 0.02119198627769947, 0.00542195001617074, 0.030468478798866272, -0.02376701310276985, -0.02173578180372715, -0.032403748482465744, 0.007561141159385443, 0.017689311876893044, 0.011267739348113537, -0.002007241128012538, 0.009436432272195816, -0.003172800177708268, -0.0018393044592812657, -0.0043023731559515, 0.0011475661303848028, 0.0019972447771579027, -0.0019612584728747606, -0.0034307027235627174, 0.02240752801299095, 0.010540014132857323, 0.013498895801603794, 0.014546499587595463, 0.023719031363725662, -0.011643596924841404, 0.00869271345436573, -0.005905766971409321, 0.02757357433438301, -0.008948616683483124, -0.004910143557935953, -0.03483482822775841, 0.012083430774509907, 0.007273249793797731, -0.011147785000503063, 0.008252879604697227, -0.035794466733932495, 0.0008716703741811216, 0.03995289281010628, 0.003968499600887299, 0.025846226140856743, -0.008088941685855389, 0.002712974091991782, -0.0031987903639674187, -0.0010895880404859781, 0.013195010833442211, 0.009868268854916096, -0.006721458397805691, 4.2171552195213735e-05, 0.0011095803929492831, -0.0017183502204716206, 0.004966122098267078, 0.012539258226752281, -0.010548011399805546, 0.007301239296793938, 0.0037405856419354677, -0.012219379656016827, -0.0143785635009408, -0.020728161558508873, 0.0003671111771836877, 0.01399470865726471, 0.013698820024728775, -0.029860708862543106, -0.0008061951375566423, 0.013394935056567192, -0.011099803261458874, 0.001479440601542592, -0.020904095843434334, -0.03400314226746559, 0.005861783400177956, 0.005134058650583029, 0.010851896367967129, 0.0009781301487237215, -0.0007996975909918547, 0.01487437542527914, -0.005645865108817816, 0.012595237232744694, -0.0038845310918986797, 0.007817043922841549, -0.018057171255350113, 0.018760906532406807, -0.018600966781377792, -7.54089851398021e-05, -0.007429190911352634, -0.02482261322438717, -0.016649704426527023, -0.015314209274947643, 0.0019722541328519583, 0.023351170122623444, 0.003582645207643509, 0.02458270452916622, -0.007601125631481409, 0.006009727716445923, 0.00016468772082589567, -0.007249258924275637, -0.009796295315027237, 0.012843144126236439, 0.0017033559270203114, -0.00673745246604085, 0.0043583521619439125, -0.0013424924109131098, -0.014930354431271553, 0.002696980256587267, -0.0002284136280650273, 0.0100761903449893, 0.004110445734113455, 0.004574270453304052, 0.0031448109075427055, 0.0007152295438572764, 0.0013454912696033716, -0.006033718585968018, -0.003422705689445138, 0.008180906996130943, -0.003474686061963439, 0.02237553894519806, -0.018313074484467506, 0.011691578663885593, -0.0021351927425712347, -0.02055222913622856, -0.03029254637658596, 0.003962501883506775, 0.001112579251639545, -0.02866116166114807, 0.0012785166036337614, -0.011331715621054173, -0.03061242401599884, 0.0036986013874411583, -0.009004594758152962, -0.009020589292049408, 0.0021451888605952263, 0.002942887134850025, -0.005917762406170368, -0.00563786830753088, -0.009764308109879494, 0.00842081569135189, 0.00021904218010604382, -0.016409795731306076, 0.009148540906608105, -0.024534722790122032, 0.01676166243851185, -0.005170044954866171, 0.0028429250232875347, 0.022119635716080666, -0.015234239399433136, 0.042096082121133804, -0.0016853627748787403, -0.009156537242233753, -0.013442916795611382, -0.00398449320346117, 0.005925759207457304, -0.008708707056939602, -0.007996976375579834, 0.013530883938074112, 0.0032187828328460455, -0.010228132829070091, -0.012763174250721931, -0.009924246929585934, 0.013434919528663158, -0.029540829360485077, 0.011211760342121124, 0.01703355833888054, 0.005325986072421074, -0.0014854383189231157, -0.024662675336003304, 0.004798185545951128, -0.0163058340549469, -0.0014214625116437674, -0.0005792809533886611, -0.010060195811092854, -0.01377079263329506, -1.5861189240240492e-05, -0.009884262457489967, -0.002523045986890793, 0.0027549583464860916, -0.005881776101887226, 0.0024410770274698734, 0.004114444367587566, 0.0013994708424434066, -0.005857785232365131, -0.013874753378331661, -0.009748313575983047, -0.012443294748663902, -0.014418547973036766, -0.0036186317447572947, -0.03342736139893532, -0.017049552872776985, -0.007325230166316032, 0.0003768574970308691, -1.2963848348590545e-05, -0.00058178004110232, -0.018728917464613914, -0.0114356754347682, 0.02413487434387207, 0.025430385023355484, 0.011363702826201916, 0.00038160569965839386, 0.008108933456242085, 0.0006507539073936641, 0.004570271819829941, 0.015562115237116814, -0.015698064118623734, -0.04184018075466156, -0.01492235716432333, 0.008980603888630867, 0.0019352681702002883, -0.0029868704732507467, 0.01028411090373993, -0.012243370525538921, -0.004206409677863121, 0.026326045393943787, -0.0010785921476781368, -0.023063279688358307, -0.009140543639659882, -0.0035546559374779463, 0.0032567684538662434, 0.0036706121172755957, 0.005497921258211136, -0.007581133395433426, -0.02563830465078354, 0.020760150626301765, -0.00306883966550231, 0.00017405918333679438, 0.010156159289181232, -0.005417951382696629, -0.007829039357602596, 0.015178260393440723, -0.025286437943577766, -0.022391533479094505, -0.011411684565246105, -0.007197278551757336, 0.024486741051077843, -0.011395690962672234, -0.029460860416293144, -0.005202033091336489, -0.01711352914571762, 0.02635803259909153, -0.007061330135911703, 0.013962720520794392, 0.00024253329320345074, 0.004050468560308218, 0.019304700195789337, 0.005126061849296093, 0.005034096539020538, 0.008876643143594265, 0.0028969047125428915, 0.003752581076696515, 0.003332739695906639, 0.02096807211637497, -0.008636734448373318, 0.0221836119890213, -0.0015883994055911899, 0.013866757042706013, 0.021080028265714645, -0.002557033207267523, -0.0246786680072546, 0.027461616322398186, 0.014418547973036766, 0.012747179716825485, -0.016809644177556038, -0.016377806663513184, -0.026933815330266953, 0.0048981476575136185, -0.000176058427314274, 0.011699575930833817, -0.0004193414351902902, 0.008380831219255924, 0.0006332605262286961, 0.006381587125360966, -0.03953704982995987, -0.012499273754656315, -0.04110445827245712, -0.0020692176185548306, 0.029045017436146736, 0.007809047121554613, 0.007645109202712774, 0.012667209841310978, 0.006097694393247366, -0.005022101104259491, -0.019768524914979935, 0.007936999201774597, 0.024646680802106857, -0.014658457599580288, 0.02010439895093441, -0.018265092745423317, -0.020488252863287926, -0.00750516215339303, -0.006853408645838499, -0.006505540106445551, 0.008892637677490711, -0.013258986175060272, -0.0123393340036273, 0.01620987057685852, -0.011243748478591442, 0.007281246595084667, -0.003080835100263357, -0.011931488290429115, -0.012875131331384182, 0.017017565667629242, -0.011083808727562428, 0.0007996975909918547, 0.009516401216387749, -0.013282977044582367, 0.0006567516829818487, -0.0017683313926681876, -0.004398337099701166, -0.01620987057685852, -0.03342736139893532, -0.013730808161199093, 0.0021391911432147026, -0.005266008898615837, -0.025014542043209076, -0.002345113316550851, -0.0038125584833323956, -0.010731942020356655, 0.0031987903639674187, -0.007373211905360222, -0.0039605023339390755, 0.01896882802248001, -0.0026390021666884422, 0.011115796864032745, 0.008836658671498299, -0.03206787258386612, -0.025462372228503227, -0.005865782033652067, -0.004830173682421446, 0.007597127463668585, 0.01519425492733717, -0.020088404417037964, -0.013434919528663158, -0.008324852213263512, -0.003460691310465336, 0.009708329103887081, 0.010292108170688152, -0.007441186346113682, 0.007281246595084667, -0.006981360260397196, -0.008068948984146118, 0.0075171575881540775, 0.0089406194165349, 0.009132546372711658, -0.011603612452745438, 0.015338200144469738, -0.005242018029093742, -0.00869271345436573, 0.013482902199029922, -0.012947103939950466, 0.017545364797115326, 2.1991683752276003e-05, -0.00039984879549592733, 0.0009481415036134422, 0.02653396688401699, 0.0011615607654675841, -0.011499651707708836, 0.00063376035541296, -0.012763174250721931, -0.03345934674143791, 0.001587399747222662, 0.00994024146348238, 0.012707195244729519, -0.0008156915428116918, -0.0037985637318342924, 0.023159243166446686, 0.0235430970788002, -0.00356065365485847, -0.012299349531531334, -0.005741829052567482, -0.0022151623852550983, 0.002005241811275482, 0.015586106106638908, 0.01973653770983219, -0.013930732384324074, -0.00010477288014953956, 0.025126498192548752, 0.00014606976765207946, -0.015546121634542942, 0.016809644177556038, 0.015618094243109226, -0.01242730114609003, 0.00535397557541728, -0.006577512715011835, -0.012307345867156982, -0.008500785566866398, 0.031172212213277817, 0.016585728153586388, 0.0009776303777471185, 0.012891125865280628, 0.013898744247853756, -0.008700709789991379, -7.708023076702375e-06, 0.010068193078041077, -0.013546877540647984, -0.004866159986704588, -0.03093230351805687, 0.005166046787053347, 0.001569406595081091, 0.02947685495018959, -0.0006492544780485332, -0.0017003570683300495, -0.0007996975909918547, 0.01204344630241394, -0.005697845481336117, 0.021623823791742325, 0.014482524245977402, -0.010212138295173645, 0.011979470029473305, -0.003262766171246767, -0.0244547538459301, 0.008972607553005219, 0.0058417911641299725, 0.008892637677490711, 0.016681691631674767, -0.0004348355869296938, 0.0029368894174695015, -0.014178638346493244, 0.00327676092274487, 0.00395250553265214, 0.006565517280250788, -0.005625872872769833, 0.016825638711452484, 0.0030128606595098972, -0.03358729928731918, -0.003062841948121786, 0.017353437840938568, -0.004090453498065472, 0.001498433412052691, -0.00046107565867714584, 0.033267419785261154, 0.008500785566866398, 0.004514292813837528, -0.014714435674250126, -0.008620739914476871, -0.004426326137036085, 0.0041864169761538506, -0.006221647374331951, -0.02042427659034729, 0.0037405856419354677, 0.008580755442380905, 0.01625785231590271, 0.018409039825201035, -0.01105182059109211, 0.0007632113993167877, 0.005689848680049181, -0.009596371091902256, -0.004394338466227055, -0.027557579800486565, -0.008380831219255924, 0.00021916712285019457, -0.02405490353703499, 0.019144760444760323, -0.03184396028518677, -0.004074459429830313, -0.001077592489309609, 0.00998822320252657, -0.012715192511677742, -0.022071653977036476, -0.010092183947563171, 0.015122282318770885, 0.01132371835410595, -0.0021052039228379726, 0.0009891260415315628, 0.025238456204533577, 0.0019542609807103872, -0.011851518414914608, 0.006717459764331579, -0.009628359228372574, 0.013219001702964306, -0.019080784171819687, 0.020888101309537888, 0.014698442071676254, -0.02776550129055977, 0.011491654440760612, 0.0034087111707776785, -0.0007527153939008713, -0.00037085977965034544, 0.02403891086578369, -0.012763174250721931, 0.011643596924841404, -0.01711352914571762, -0.010899878107011318, 0.0040204799734056, -0.019368676468729973, -0.01661771722137928, 0.0192407239228487, 0.006685472093522549, -0.004842169117182493, -0.00047357092262245715, -0.00673745246604085, -0.004446318838745356, -0.019672561436891556, -0.006289621815085411, 0.000985627295449376, 0.0003826053289230913, -0.0038145575672388077, 0.011075812391936779, -0.0077170818112790585, 0.005621874239295721, 0.00533398287370801, -0.00395250553265214, -0.018648948520421982, -0.0020012431778013706, -0.002291133627295494, 0.014522508718073368, 0.04027277231216431, 0.01392273511737585, -0.00423439871519804, 0.003282758640125394, 0.0012465286999940872, 0.011667587794363499, -0.0045422823168337345, 0.0029688773211091757, 0.0046982234343886375, -0.0063016172498464584, -0.007565139327198267, -0.00994024146348238, -0.02690182812511921, -0.013091050088405609, 0.0076730987057089806, 0.021991685032844543, 0.002748960629105568, 0.004854164551943541, -0.011467663571238518, -0.0032727625221014023, -0.0022311564534902573, 0.02242352068424225, 0.003592641558498144, 0.01884087547659874, -0.011043824255466461, -0.0031068252865225077, 0.012987089343369007, 0.012643218971788883, -0.007141299545764923, -0.010404066182672977, 0.02405490353703499, -0.01018814742565155, 0.031939923763275146, 0.016873620450496674, 0.0011415682965889573, -0.005949750076979399, -0.008412819355726242, 0.01415464747697115, 0.014698442071676254, 0.01911277323961258, 0.0008756688912399113, 0.0021971692331135273, 0.006753446534276009, 0.01852099597454071, -0.004032475408166647, 0.01852099597454071, -0.0014074677601456642, -0.016241857782006264, -0.007681095506995916, 0.0036946029867976904, -0.001427460229024291, -0.0032027889974415302, 0.0045942626893520355, 0.011691578663885593, 0.005337981507182121, 0.01399470865726471, -0.0069533707574009895, 0.0012465286999940872, -0.027701525017619133, -0.005573892500251532, 0.008772682398557663, 0.016409795731306076, -0.004710218869149685, 0.009516401216387749, 0.013330958783626556, 0.0032487716525793076, -0.0004175920912530273, -0.016153892502188683, 0.007861027494072914, -0.0020592212677001953, -0.008956613019108772, -0.017097534611821175, -0.01424261461943388, -0.03209986165165901, -0.007033340632915497, 0.004770196042954922, -0.00578581215813756, 0.013786787167191505, 0.00869271345436573, 0.0059737409465014935, 0.022631442174315453, -0.0012435298413038254, 0.011787543073296547, 0.002696980256587267, -0.005022101104259491, 0.006425570230931044, -0.0036746105179190636, 0.005541904363781214, 0.014898366294801235, -0.004846167750656605, 0.013514889404177666, 0.010364080779254436, 0.009292486123740673, -0.019464639946818352, -0.007913008332252502, -0.0022471502888947725, -0.026006165891885757, -0.009404444135725498, -0.012491276487708092, -0.000154191700858064, 5.22927257406991e-05, -0.0027389642782509327, -0.0019442648626863956, 0.012811155989766121, -0.0069053890183568, 0.005809803027659655, -0.004170422907918692, -0.0069053890183568, -0.002277138875797391, -0.010308102704584599, 0.02223159372806549, -0.023783007636666298, 0.009164534509181976, 0.0020732160191982985, 0.0070213451981544495, 0.00377657194621861, -0.003442698158323765, -0.012603234499692917, 0.007581133395433426, 0.01589798927307129, 0.014402554370462894, -0.006725457031279802, 0.016369810327887535, -0.023383157327771187, 0.010100181214511395, -0.009788298979401588, 0.007349221035838127, 0.0226474367082119, 0.0011015834752470255, 0.004786190111190081, 0.012603234499692917, 0.017001571133732796, -0.002888907678425312, 0.004068461712449789, -0.007329228799790144, -0.005505918059498072, 0.0317000150680542, -0.005881776101887226, -0.0042024110443890095, -0.013506893068552017, -0.008396824821829796, 0.010476038791239262, 0.005597883369773626, 0.020344307646155357, 0.007801050320267677, -0.004658238496631384, -0.02210364118218422, 0.0010556008201092482, 0.0036366248968988657, 0.009116552770137787, 0.002359108068048954, -0.0014424545224756002, -0.006821420509368181, -0.0035726490896195173, 0.0071532949805259705, -0.04404734447598457, -0.005949750076979399, 0.008252879604697227, 0.004078458063304424, -0.009740317240357399, 0.003824553918093443, -0.02527044527232647, -0.0018073165556415915, -0.012219379656016827, -0.01688961312174797, -0.02621408738195896, 0.0007267252076417208, -0.009740317240357399, 0.00733722560107708, -0.007657104637473822, -0.025574330240488052, 0.00038685373147018254, -0.01132371835410595, 0.0007837036391720176, 0.017465395852923393, -0.005665857810527086, -0.014282599091529846, 0.0012715192278847098, -0.005317989271134138, 0.006461556535214186, -0.01027611456811428, 0.006585509981960058, 0.003170801093801856, 0.0031787981279194355, -0.028549205511808395, -0.017241479828953743, 0.02907700464129448, 9.915000555338338e-05, -0.011795539408922195, 0.0033727246336638927, 0.000775706663262099, -0.006417573429644108, -0.01738542690873146, 0.02885309047996998, -0.0034167079720646143, -0.001745340065099299, -0.008644730783998966, 0.002329119248315692, -0.008612743578851223, 0.014346575364470482, -0.0076651014387607574, -0.011835524812340736, 0.014026695862412453, 0.0037465833593159914, 0.00032012895098887384, 0.030644413083791733, 0.009108555503189564, -0.00994024146348238, 0.026342039927840233, 0.003296753391623497, 0.015586106106638908, -0.012283354997634888, -0.0035366627853363752, 0.007501163519918919, -0.0013674829388037324, 0.008836658671498299, -0.021032046526670456, -0.005801806226372719, -0.0037965644150972366, 0.01892084628343582, -0.0009951237589120865, 0.0018832879140973091, 0.011715570464730263, -0.005689848680049181, 7.334726251428947e-05, -0.008796674199402332, 0.009028585627675056, 0.010587996803224087, -0.0221836119890213, -0.015738049522042274, 0.0034107102546840906, -0.00253504142165184, 0.001005619764328003, -0.016921602189540863, 0.03248371556401253, -0.0163058340549469, 0.017913226038217545, -0.016361813992261887, -0.0003248771536163986, 0.0021211979910731316, -0.004994111601263285, -0.0034287034068256617, -0.013482902199029922, 0.0035186694003641605, 0.004910143557935953, -0.01247528288513422, 0.020344307646155357, 0.01829708181321621, 0.015042312443256378, -0.006661481224000454, 0.01775328628718853, -0.016457777470350266, 0.01165959145873785, 0.0010715947719290853, -0.025254450738430023, 0.006877399515360594, 0.012323340401053429, -0.025238456204533577, 0.010084186680614948, -0.007733075879514217, -0.003082834417000413, 0.0026529969181865454, -0.00028864084742963314, 0.011579621583223343, 0.01372281089425087, 0.010260120034217834, -0.021543852984905243, -0.000987126724794507, 0.005082078278064728, -0.006721458397805691, 0.059529490768909454, 0.01449052058160305, -7.578384247608483e-05, 0.0023571087513118982, 0.005377966444939375, -0.026661917567253113, 0.01839304529130459, 0.018984820693731308, -0.0063895839266479015, -0.0019002814078703523, 0.004190415609627962, 0.00874069519340992, -8.503034769091755e-05, -0.0011965475277975202, -0.008644730783998966, -0.0048021841794252396, -0.006989357061684132, -0.021991685032844543, -0.004966122098267078, 0.005325986072421074, -0.0163058340549469, 0.006801428273320198, 0.0007832038681954145, 0.009164534509181976, -0.009220513515174389, 0.0052100298926234245, -0.03419506922364235, -0.03066040575504303, -0.023015297949314117, 0.013818774372339249, 0.017225487157702446, -0.017897233366966248, -0.020936083048582077, 0.007681095506995916, -0.007457180414348841, 0.005405955947935581, -0.011475660838186741, 0.012251367792487144, -0.0022091646678745747, 0.0027609560638666153, -0.0095084048807621, -0.009796295315027237, 0.01080391462892294, -0.005453937686979771, -0.003794565098360181, -0.004478306509554386, 0.006125683896243572, 0.01337894145399332, 0.0014204628532752395, -0.023783007636666298, 0.006193657871335745, 0.003260767087340355, -0.006437565665692091, -0.010108177550137043, 0.008980603888630867, -0.005162048153579235, 0.015921980142593384, -0.018329069018363953, -0.0068494100123643875, -0.002698979340493679, -0.0022111639846116304, -0.014298593625426292, 0.014306589961051941, -0.001516426564194262, -0.006909387186169624, 0.025814238935709, 0.003016859292984009, -0.004890150856226683, 0.009660347364842892, 0.006981360260397196, 0.011779545806348324, -0.02757357433438301, -0.027061767876148224, -0.01222737692296505, -0.001676366082392633, -0.03297952935099602, -0.01122775487601757, -0.0026469992008060217, -0.02191171422600746, 0.012035449035465717, 0.015546121634542942, -0.025286437943577766, -0.008916628547012806, 0.005593884736299515, -0.008812667801976204, -0.009820287115871906, -0.01362684741616249, 0.006429568864405155, 0.004362350329756737, 0.036114342510700226, 0.008756688795983791, -9.165284427581355e-05, -0.01852099597454071, -0.0030608426313847303, 0.010244126431643963, 0.010899878107011318, -0.014562493190169334, 0.013714813627302647, 0.010516023263335228, 0.017849251627922058, -0.003774572629481554, 0.017353437840938568, 0.01593797281384468, -0.008260875940322876, 0.001145566813647747, -0.020088404417037964, 0.0047142175026237965, -0.0021052039228379726, -0.0025130498688668013, 0.0287571270018816, -0.004162426106631756, 0.008092939853668213, -0.0017343441722914577, -0.005194035824388266, -0.00033712253207340837, 0.02359107881784439, -0.010995842516422272, 0.011419681832194328, 0.01792922057211399, 0.00451829144731164, -0.006273627746850252, 0.019864488393068314, 0.01530621200799942, 0.011027829721570015, 0.0006597505416721106, 0.01698557659983635, -0.0006487547070719302, 0.01688961312174797, 0.005369969643652439, -0.021128011867403984, 3.3112478377006482e-06, -0.00026290060486644506, -0.0011595615651458502, 0.0036406232975423336, -0.006925381254404783, -0.015961963683366776, -0.007329228799790144, -0.0044103325344622135, 0.0025310430210083723, -0.013458910398185253, -0.013370944187045097, 0.029956672340631485, 0.022215599194169044, 0.007960990071296692, 0.01181953027844429, -0.0021791760809719563, -0.005425948183983564, 0.022087648510932922, -0.0019152758177369833, -0.011715570464730263, 0.015314209274947643, 0.005689848680049181, -0.0011595615651458502, -0.001110580051317811, 0.010356084443628788, 0.02472664974629879, -0.0031628040596842766, 0.006321609485894442, -0.0011525641893967986, 0.007761065382510424, -0.011995464563369751, 0.007365215104073286, 0.006105691194534302, 0.004106447100639343, -0.0030908312182873487, -0.014330580830574036, -0.011219757609069347, 0.012347331270575523, -0.008396824821829796, -0.004072459880262613, -0.013051064684987068, -0.004758200608193874, -0.007293242029845715, 0.009676340967416763, -0.00797298550605774, 0.023607073351740837, -0.0017943215789273381, -0.0123393340036273, -0.019304700195789337, 6.478800059994683e-05, 0.008484791964292526, 0.014818396419286728, 0.014306589961051941, 0.0003528665693011135, 0.0017953211208805442, -0.002131194109097123, -0.014122660271823406, -6.71621019137092e-05, -0.0030948298517614603, 0.004886152222752571, 0.014386559836566448, 0.01467445120215416, 0.0061016930267214775, -0.006485547870397568, -0.011851518414914608, 0.026965804398059845, 0.010587996803224087, -0.014610475860536098, -0.019304700195789337, 0.004726212937384844, 0.03278760239481926, 0.0020172372460365295, -0.01829708181321621, -0.00046107565867714584], "a77e394f-eda1-4b8c-9199-7d2247c9d872": [-0.021512173116207123, -0.0012843789299950004, -0.011139427311718464, 0.020444832742214203, -0.009606064297258854, -0.002670230343937874, 0.00882435031235218, 0.036890897899866104, -0.03403463214635849, 0.02303050272166729, 0.017017316073179245, 0.023000435903668404, -0.004231779836118221, -0.008704086765646935, -0.021993227303028107, 0.03014109469950199, -0.02911885268986225, 0.016220569610595703, 0.041070058941841125, -0.012063954025506973, 0.0622364766895771, 0.00572380144149065, -0.04479823634028435, 0.01634083315730095, -0.009132525883615017, 0.001858450355939567, -0.004697801545262337, 0.009305405430495739, -0.01680685579776764, 0.028803160414099693, 0.02925414964556694, 0.010087119415402412, -0.016776788979768753, 0.033403247594833374, 0.006264988332986832, -0.03319278731942177, -0.0035064390394836664, 0.022128524258732796, -0.007824658416211605, -0.02581160143017769, -0.05018003657460213, 0.030577050521969795, 0.017167646437883377, -0.010064570233225822, -0.039777226746082306, -0.005727559793740511, -0.0018763019470497966, -0.0031155820470303297, -0.01181591022759676, -0.010846284218132496, 0.005701251793652773, -0.0030460546258836985, -0.008020087145268917, 0.015085580758750439, -0.011868526227772236, -0.0637999027967453, 0.009786460548639297, 0.06818953156471252, -0.010951515287160873, -0.06578425318002701, 0.015378722921013832, -0.023691952228546143, -0.009425668977200985, -0.012958415783941746, -0.024533798918128014, -0.011440086178481579, 0.002918274374678731, 0.011733229272067547, -0.04927805811166763, 0.0326816663146019, 0.026067161932587624, 0.05051076412200928, -0.01053810864686966, 0.03050188533961773, 0.013822811655700207, 0.006159757263958454, 0.0287881288677454, -0.004611362237483263, -0.004066416993737221, 0.014657140709459782, -0.055321309715509415, 0.020324569195508957, 0.010222416371107101, -0.000854060344863683, 0.07865247130393982, 0.0355679951608181, -0.01374764647334814, -0.043294940143823624, -0.019046766683459282, -0.023511556908488274, -0.0014516207156702876, 0.011334856040775776, 0.006460416596382856, -0.005960570648312569, 0.024022677913308144, 0.008155383169651031, 0.009027295745909214, -0.0014384668320417404, 0.04407665506005287, -0.045429620891809464, 0.0027453952934592962, 0.02767568826675415, 0.016100306063890457, 0.002051999792456627, 0.02483445778489113, 0.007982504554092884, -0.012101536616683006, 0.00582903204485774, -0.023797184228897095, 0.035026807337999344, 0.018836304545402527, -0.05005977302789688, -0.004912021104246378, 0.022639645263552666, -0.02478935942053795, -0.013011030852794647, -0.00028821013984270394, -0.0038634720258414745, -0.010898899286985397, -0.017723865807056427, 0.03436535969376564, 0.00893709808588028, -0.016355866566300392, 0.017032349482178688, -0.04332500696182251, -0.0054907905869185925, 0.005426900461316109, -0.016791822388768196, 0.008132833987474442, -0.009305405430495739, -0.018610810860991478, -0.011680614203214645, 0.01973828300833702, 0.02173766680061817, 0.010222416371107101, -0.03283199667930603, 0.04365573078393936, 0.04996957629919052, -0.024248173460364342, 0.0473538413643837, -0.008538723923265934, -0.010793669149279594, -0.016010107472538948, 0.02740509621798992, -0.015559119172394276, -0.0027829776518046856, -0.03905564174056053, 0.036199379712343216, -0.006317603401839733, 0.019257228821516037, -0.02581160143017769, -0.029404480010271072, 0.01806962490081787, 0.009553449228405952, 0.021211514249444008, -0.012296965345740318, 0.0024297030176967382, 0.005505823530256748, 0.007907339371740818, 0.030772479251027107, 0.007061735261231661, -0.04503876343369484, 0.005693735554814339, 0.0225644800812006, 0.05883902683854103, 0.008561274036765099, 0.03710135817527771, 0.04554988443851471, 0.00014163872401695698, 0.018234986811876297, 0.03205028176307678, -0.0071406583301723, 0.010786152444779873, 0.008035119622945786, -0.005487032234668732, -0.021467074751853943, 0.033042456954717636, 0.03899551182985306, -0.0012195493327453732, -0.018911469727754593, -0.012800569646060467, 0.003143768757581711, -0.009688746184110641, -0.01234958041459322, 0.014890152029693127, 0.05745599418878555, 0.010553141124546528, 0.03650004044175148, -0.02056509628891945, -0.014318899251520634, 0.007343603298068047, 0.022323952987790108, -0.011214591562747955, 0.019091865047812462, -0.024082809686660767, -0.007411251775920391, 0.005964329000562429, 0.011229624971747398, 0.02641291916370392, 0.02429327182471752, -0.032020214945077896, -0.027525359764695168, -0.02901362255215645, 0.041310589760541916, -0.04461783915758133, 0.02372201904654503, -0.002221120521426201, -0.0012853185180574656, 0.0200088769197464, -0.040468741208314896, 0.04398645460605621, -0.02483445778489113, 0.0026608349289745092, 0.02260958030819893, -0.026442985981702805, 0.005370526574552059, -0.03752228245139122, 0.02009907364845276, 0.00596808735281229, -0.024203073233366013, 0.003461340209469199, 0.010658372193574905, -0.00467901024967432, -0.026307689025998116, -0.07973484694957733, -0.058388035744428635, -0.011417536996304989, 0.010320130735635757, -0.03316272050142288, 0.022594546899199486, 0.021617403253912926, 0.015904877334833145, -0.0010880108457058668, -0.027329931035637856, 0.00021903500601183623, 0.022444216534495354, -2.7452777430880815e-05, 0.003536504926159978, 0.02832210622727871, -0.0051375157199800014, -0.01216166839003563, 0.051983993500471115, 0.01165806408971548, 0.005753867328166962, 0.015904877334833145, 0.0041791643016040325, 0.009756394661962986, 0.041761577129364014, -0.009305405430495739, -0.024503733962774277, -0.004077691584825516, 0.0011208954965695739, 0.016836920753121376, -0.03418496251106262, -0.026397885754704475, 0.058478232473134995, 0.02539067715406418, -0.011056745424866676, -0.033553577959537506, -0.017032349482178688, 0.004539955407381058, 0.0037751533091068268, 0.029239116236567497, 0.013837844133377075, 0.012417228892445564, 0.009801493026316166, 0.0424530915915966, -0.042513225227594376, 0.006343911401927471, 0.01718267984688282, -0.0469028502702713, -0.009606064297258854, 0.007084284909069538, 0.019602986052632332, 0.005265295971184969, 0.007884790189564228, 0.0012994118733331561, -0.01671665720641613, -0.0010842526098713279, -0.006561889313161373, -0.008207999169826508, 0.0044459993951022625, 0.01940755732357502, 0.01023744884878397, 0.003711263183504343, -0.0023319886531680822, -0.035688258707523346, -0.01021489966660738, -0.04762443155050278, -0.022158591076731682, 0.014176085591316223, -0.012522459961473942, 3.0095291094767163e-06, 0.008861932903528214, 0.01377019565552473, -0.005592262838035822, -0.01760360226035118, -0.040318410843610764, -0.02358672209084034, 0.01270285528153181, 0.0020839448552578688, -0.011748261749744415, 0.004231779836118221, -0.040378544479608536, 0.04918786138296127, -0.031930018216371536, 0.023391293361783028, -0.0040213181637227535, -0.022158591076731682, 0.012853184714913368, 0.04170144349336624, -0.016370898112654686, -0.03078751266002655, -0.019512789323925972, 0.0014412854798138142, 0.013086196035146713, -0.002209845930337906, 0.021602371707558632, 0.006742284633219242, -0.019648084416985512, 0.035117007791996, 0.0018387195887044072, -0.07684851437807083, 0.03165942430496216, 0.037071291357278824, -0.03376403823494911, 0.02531551383435726, -0.013056130148470402, -0.01464962400496006, -0.0011161976726725698, -0.029554808512330055, 0.01038026250898838, -0.032290808856487274, 0.012612657621502876, -0.02687894180417061, -0.01936245895922184, -0.0038709884975105524, -0.039807289838790894, -0.022594546899199486, -0.043715860694646835, -0.003378658788278699, -0.017423206940293312, -0.004175405949354172, -0.007279713172465563, 0.026638414710760117, -0.0037901862524449825, -0.02089582197368145, 0.004310702905058861, -0.0254508089274168, -0.00023477264039684087, 0.0009987526573240757, -0.01680685579776764, 0.04299427941441536, 0.0017776481108739972, 0.02627762220799923, -0.006464174948632717, -0.005081142298877239, 0.003553417045623064, 0.0035289884544909, -0.03514707088470459, -6.130630936240777e-05, -0.015814678743481636, -0.016821887344121933, 0.0015032965457066894, -0.0001604299177415669, 0.038153667002916336, 0.0014281317126005888, -0.02209845930337906, 0.010508042760193348, -0.015040481463074684, -0.024864524602890015, 0.002890087431296706, 0.034666016697883606, 0.006979053840041161, -0.01370254810899496, -0.020038941875100136, 0.025014853104948997, -0.03189995139837265, -0.013334239833056927, 0.029840435832738876, -0.008531207218766212, 0.024623997509479523, 0.01355973444879055, -0.00623492244631052, 0.06428095698356628, 0.022218722850084305, -0.028637798503041267, -0.017753932625055313, -0.018415382131934166, 0.04732377454638481, -0.018189888447523117, -0.009410636499524117, -0.005998153239488602, -0.017438240349292755, -0.02525538206100464, 0.04759436845779419, -0.010102152824401855, -0.028111644089221954, 0.010898899286985397, -0.01035771332681179, 0.04221256449818611, 0.01667155884206295, -0.02005397528409958, -0.0295698419213295, 0.015709448605775833, -0.02614232711493969, -0.00984659232199192, 0.002938944613561034, 0.021046150475740433, -0.008734152652323246, -0.004152856767177582, -0.0012496152194216847, -0.014747338369488716, 0.006189823150634766, 0.041490983217954636, 0.023752084001898766, -0.03074241429567337, 0.02901362255215645, -0.03394443541765213, -0.01713757961988449, 0.0644613578915596, 0.06885097920894623, -0.011778328567743301, 0.02865283191204071, -0.00037864281330257654, 0.01107177883386612, 0.019572921097278595, 0.028893359005451202, 0.015604217536747456, -0.00395742803812027, -0.019287293776869774, 0.022308919578790665, -0.029148919507861137, -0.02618742547929287, 0.01987357996404171, -0.0031061863992363214, 0.01142505370080471, 0.035026807337999344, 0.019091865047812462, -0.010064570233225822, -0.01072602067142725, 0.01269533857703209, 0.010545625351369381, -0.01634083315730095, -0.034064698964357376, -0.029554808512330055, -0.028171775862574577, 0.0011021042009815574, 0.011312305927276611, -0.01042536087334156, -0.004972153343260288, 0.00791485607624054, -0.06614504754543304, 0.023706985637545586, 0.012928349897265434, 0.0012496152194216847, 0.030516918748617172, -0.01582971215248108, 0.008388394489884377, -0.03776280954480171, -0.01582971215248108, 0.002392120659351349, 0.011733229272067547, 0.006092109251767397, 0.0015690657310187817, -0.03388430178165436, 0.006862548645585775, 0.02251938171684742, 0.002202329458668828, -0.004521164111793041, -0.008568789809942245, 0.014063338749110699, -0.012597625143826008, 0.04182170704007149, -0.022038327530026436, -0.033974502235651016, 0.00633639469742775, -0.027420127764344215, 0.009350504726171494, -0.011297273449599743, 0.00029924995033070445, -0.0018443568842485547, -0.005152548663318157, 0.03950663283467293, -0.003976219333708286, -0.02874302864074707, -0.02748025953769684, -0.028382238000631332, 0.07119612395763397, -0.008621405810117722, 0.040047820657491684, 0.016040174290537834, 0.02493968978524208, 0.003598516108468175, -0.02749529294669628, -0.014183602295815945, 0.015243426896631718, -0.03087770938873291, -0.021887997165322304, -0.034154895693063736, 0.001080494374036789, -0.018926503136754036, -0.021196480840444565, 0.021196480840444565, -0.00167147780302912, 0.007084284909069538, -0.03250126913189888, 0.01791929453611374, 0.006464174948632717, -0.009786460548639297, -0.03005089797079563, 0.01532610785216093, -0.047383904457092285, -0.014935250394046307, 0.005261537618935108, 0.012875734828412533, 0.003968702629208565, -0.010778635740280151, 0.027795951813459396, -0.008200482465326786, 0.01532610785216093, -0.023857316002249718, -0.015108129940927029, -0.003435032442212105, -0.007020394783467054, -0.005520856473594904, -0.0010955273173749447, -0.029960699379444122, 0.02224878780543804, -0.03496667742729187, -0.008613889105618, 0.014597008936107159, 0.007794592529535294, -0.0008794284658506513, 0.03854452073574066, -0.004787999205291271, -0.006625779438763857, 0.007854724302887917, 0.0038296477869153023, 0.02585669979453087, -0.0011594174429774284, 0.020159205421805382, -0.0029333073180168867, -0.011748261749744415, -0.02409784309566021, 0.03640983998775482, -0.001040093251504004, 0.021437007933855057, 0.000937211443670094, 0.01219173427671194, -0.02029450237751007, 0.0021929338108748198, -0.03385423868894577, -0.002036966849118471, 0.019723249599337578, -0.026007030159235, 0.03361371159553528, -0.014574459753930569, -0.026773711666464806, -0.01898663491010666, -0.028216876089572906, 0.038754984736442566, 0.018836304545402527, 0.046181268990039825, -0.02665344625711441, -0.015919910743832588, -0.018490547314286232, 0.006050768308341503, -0.00658068060874939, 0.02474426105618477, 0.014025756157934666, 0.022399118170142174, 0.0228952057659626, -0.004378350917249918, 0.0049683949910104275, 0.015619250945746899, 0.007617955096065998, -0.00027881452115252614, -0.024248173460364342, 0.010365229099988937, 0.01625063456594944, -0.005930504761636257, 0.011988789774477482, 0.003852197201922536, 0.009064878337085247, 0.03050188533961773, -0.03968702629208565, -0.01745327189564705, -0.004100241232663393, 0.010650855489075184, -0.006911405827850103, 0.02530048042535782, -0.020444832742214203, -0.003250878769904375, -0.012342064641416073, 0.0111168771982193, 0.008771735243499279, 0.02962997369468212, 0.021301710978150368, -0.027014238759875298, 0.010981581173837185, -0.007181999273598194, 0.02051999792456627, -0.0045437137596309185, -0.0006097746663726866, 0.03478628024458885, -0.017348041757941246, 0.00010205974103882909, -0.004438483156263828, 0.03319278731942177, 0.017017316073179245, -0.01497283298522234, 0.03105810657143593, -0.007418768480420113, 0.027329931035637856, 0.024248173460364342, -0.0025574832689017057, 0.03839419409632683, 0.029554808512330055, -0.018685976043343544, 0.010462943464517593, -0.011808394454419613, 0.07462363690137863, -0.02336122840642929, 0.021512173116207123, 0.010102152824401855, 0.00013741069415118545, 0.013852877542376518, -0.02414294146001339, 0.0023056811187416315, 0.006528065074235201, -0.014033272862434387, 0.009718812070786953, -0.020655294880270958, 0.03683076426386833, 0.003391812788322568, -0.009049844928085804, 0.026127293705940247, -0.034425489604473114, -0.03147902712225914, -0.022414151579141617, 0.0026044612750411034, 0.0012251866282895207, 0.057275597006082535, -0.01358228363096714, 0.02696913853287697, -0.02781098522245884, -0.003252757713198662, 0.03358364477753639, -0.000590983428992331, -0.02999076619744301, -0.003124977694824338, 0.01443916279822588, 0.027089403942227364, 3.2091855246108025e-05, -0.022323952987790108, -0.01806962490081787, 0.0029558567330241203, 0.03074241429567337, 0.0005064230062998831, 0.025571074336767197, 0.006839998997747898, 0.02531551383435726, 0.008749186061322689, -0.0026288898661732674, 0.009974372573196888, 0.022113490849733353, -0.014326415956020355, 0.02590179815888405, 0.03887524828314781, 0.014333931729197502, 0.007268438581377268, 0.019858546555042267, -0.01629573479294777, -0.002711571054533124, -0.00984659232199192, -0.01093648187816143, -0.0013990052975714207, -0.0010945877293124795, -0.0012862581061199307, -0.0015559118473902345, -0.01676175557076931, -0.030291425064206123, 0.013800261542201042, -0.011327339336276054, -0.008365845307707787, -0.0285626333206892, 0.03174962103366852, -0.024203073233366013, -0.005862856283783913, 0.01638593152165413, 0.022684743627905846, -0.002886329311877489, 0.011853492818772793, -0.0015399393159896135, 0.006922680418938398, -0.0036398565862327814, 0.010523075237870216, 0.036379776895046234, -0.016370898112654686, -0.05664421245455742, -0.03087770938873291, -0.0077570099383592606, -0.017333008348941803, -0.0006450081709772348, 0.01922716200351715, -0.0282319076359272, -0.016686590388417244, -0.013281624764204025, 0.009824042208492756, -0.008418460376560688, 0.019663117825984955, 0.02785608358681202, 0.03256140276789665, -0.011830943636596203, 0.01288325060158968, -0.002668351400643587, 0.027615556493401527, -0.00036619362072087824, -0.0005623268662020564, 0.013386855833232403, 0.014288833364844322, -0.006005669478327036, -0.0362294465303421, -0.03836412727832794, 0.019151996821165085, 0.020504964515566826, 0.015243426896631718, 0.008020087145268917, -0.0027228458784520626, 0.029404480010271072, 0.004160373006016016, 0.0007535273907706141, 0.013943075202405453, 0.013649932108819485, 0.007223339751362801, -0.020114107057452202, 0.02325599640607834, 0.023436391726136208, -0.008974679745733738, 0.004476065281778574, -0.007929889485239983, 0.04410671815276146, -0.0038183731958270073, 0.0044948565773665905, 0.0034557029139250517, 0.02887832559645176, 0.008298196829855442, -0.007290988229215145, 0.005614812485873699, 0.039296168833971024, -0.03881511464715004, -0.0026157358661293983, 0.02451876550912857, 0.005900438874959946, 0.005122482776641846, 0.024127908051013947, 0.01769379898905754, 0.009185141883790493, 0.033132653683423996, 0.0003269669832661748, 0.011898592114448547, -0.0018894558306783438, -0.026172392070293427, 0.029975732788443565, 0.014965316280722618, -0.001813351409509778, 0.011785844340920448, 0.025014853104948997, 0.001606648089364171, 0.012620174326002598, 0.031839821487665176, 0.02642795257270336, 0.022579513490200043, -0.01358228363096714, 0.003694351064041257, 0.029239116236567497, -0.002311318414285779, -0.024999821558594704, -0.003549658926203847, -0.044738102704286575, -0.03059208393096924, 0.006347669288516045, -0.027886150404810905, 0.008786767721176147, -0.0322306789457798, 0.033132653683423996, 0.01425876747816801, 0.015498987399041653, -0.005129999481141567, 0.00859133992344141, 0.010267514735460281, -0.019001668319106102, -0.017107514664530754, 0.026728611439466476, -0.015544085763394833, 0.0041904388926923275, -0.041851773858070374, 0.0032489995937794447, 0.019903644919395447, 0.0022662195842713118, -0.02303050272166729, 0.04843621328473091, 0.0440165214240551, -0.004934570752084255, -0.016280701383948326, 0.012454811483621597, -0.0050398013554513454, -0.019016701728105545, 0.010575691238045692, -0.009094944223761559, 0.01478492096066475, 0.011304790154099464, 0.025601139292120934, -0.0349065437912941, -0.03277186304330826, 0.007046702317893505, 0.010477976873517036, 0.01246984489262104, 0.018099689856171608, -0.011688129976391792, -0.004994702525436878, 0.03463594987988472, -0.02469916082918644, 0.007839690893888474, -0.043024346232414246, 0.006982812192291021, -0.00254245032556355, 0.003592878580093384, 0.007982504554092884, 0.01265775691717863, -0.0360189825296402, -0.0033053732477128506, 0.031328700482845306, 0.006159757263958454, 0.00280928541906178, -0.006430350709706545, -0.00475793331861496, -0.0377928726375103, 0.03830399364233017, -0.04392632469534874, -0.034936610609292984, -0.019016701728105545, 0.015002898871898651, 0.009613581001758575, -0.015949975699186325, 0.024639029055833817, 0.004551229998469353, 0.02214355766773224, -0.007711911108344793, 0.013552217744290829, -0.05435920134186745, 0.038153667002916336, -0.017393140122294426, -0.012567558325827122, -0.013326723128557205, -0.02327102981507778, -0.0046527027152478695, -0.025150150060653687, 0.01023744884878397, -0.02558610588312149, 0.0018152305856347084, -0.010057053528726101, -0.003363625844940543, 0.007944921962916851, -0.02554100751876831, -0.026728611439466476, 0.016055205836892128, 0.009981888346374035, -0.00342563702724874, -0.013627382926642895, 0.004660218954086304, 0.038694851100444794, -0.007054219022393227, -0.02469916082918644, -0.0142287015914917, 0.011349888518452644, 0.004818065091967583, -0.027420127764344215, -0.009087427519261837, -0.007073009852319956, 0.04100992903113365, -0.003916087560355663, 0.011327339336276054, -0.07462363690137863, -0.004310702905058861, 0.008388394489884377, -0.01982848159968853, 0.013431954197585583, -0.007441317662596703, 0.011229624971747398, -0.010996613651514053, 0.006967779248952866, -0.009245273657143116, -0.010485493578016758, -0.01265775691717863, 0.01019235048443079, -0.012394679710268974, -0.005415625870227814, -0.02376711741089821, 0.004002526868134737, -0.024353403598070145, -0.01936245895922184, 0.01634083315730095, -0.0015822196146473289, -0.013108745217323303, 0.01852061226963997, 0.01091393269598484, -0.007922372780740261, 0.016897052526474, 0.0019007305381819606, 0.026067161932587624, 0.003711263183504343, -0.028261974453926086, 0.015679381787776947, 0.008952130563557148, 1.717633676889818e-05, 0.005483273882418871, -0.01820491999387741, -0.016040174290537834, -0.004731625784188509, -0.003367384197190404, 0.012943383306264877, 0.021617403253912926, -0.00268714246340096, -0.021857930347323418, -0.006475449539721012, -0.010959031991660595, 0.009267822839319706, 0.020790589973330498, -0.014514327980577946, 0.0038277688436210155, 0.03469608351588249, -0.005111208185553551, 0.016415998339653015, -0.014566943049430847, -0.014123470522463322, -0.02042979933321476, -0.02187296375632286, -0.0042280214838683605, 0.01023744884878397, -0.020489931106567383, 0.03643990680575371, -0.020279468968510628, 0.023240964859724045, -0.032200612127780914, -0.038424257189035416, 0.02103111892938614, 0.0024184281937777996, 0.007445076014846563, -0.016957184299826622, 0.035537928342819214, 0.020535029470920563, 0.013672481290996075, 0.042874015867710114, 0.023090634495019913, -0.013431954197585583, 0.013409405015408993, 0.02763058990240097, -0.0030047139152884483, -0.017633667215704918, -0.016280701383948326, 0.011763295158743858, -0.000538368069101125, -0.02294030413031578, 0.00676859263330698, -0.022308919578790665, 0.011680614203214645, -0.002038845792412758, 0.009621097706258297, -0.020775558426976204, -0.03217054530978203, -0.023195864632725716, 0.021437007933855057, 0.012732921168208122, -0.038243863731622696, -0.03050188533961773, -0.007366152945905924, -0.009448218159377575, -0.01653626188635826, 0.01643102988600731, 0.004739142023026943, 0.019332392141222954, -0.0017945602303370833, -0.011064262129366398, -0.009696262888610363, 0.008215514943003654, 0.0034538237378001213, -0.019167030230164528, 0.009884174913167953, 0.014191119000315666, -0.029178984463214874, -0.0028581423684954643, -0.019121931865811348, 0.009545932523906231, -0.01318391039967537, -0.009237756952643394, -0.02907375432550907, -0.00893709808588028, -0.034154895693063736, -0.016972217708826065, -0.017859162762761116, -0.031869884580373764, 0.019347425550222397, 0.017753932625055313, 0.002189175458624959, 0.0024146700743585825, -0.028201842680573463, -0.00730226282030344, 0.015859778970479965, -0.027420127764344215, -0.022128524258732796, -0.009696262888610363, 0.0013614229392260313, -0.008734152652323246, 0.003143768757581711, 0.0033335599582642317, -0.05637361854314804, -0.028337139636278152, 0.012387163005769253, 0.0015916151460260153, -0.02901362255215645, -0.011222108267247677, -0.048406146466732025, -0.00556219695135951, 0.010485493578016758, -0.02358672209084034, 0.00748641649261117, 0.029284216463565826, -0.008696570061147213, -0.018655909225344658, -0.019197097048163414, 0.007862241007387638, -0.010575691238045692, 0.00703542772680521, -0.02480439282953739, -0.01913696527481079, -0.07871260493993759, -0.015108129940927029, -0.022865138947963715, 0.029930632561445236, 0.02665344625711441, 0.004382109269499779, 0.016987251117825508, 0.00015420533600263298, -2.5896631996147335e-05, 0.011327339336276054, -0.010673405602574348, -0.015544085763394833, 0.010718503966927528, 0.011394987814128399, -0.012259382754564285, 0.017122548073530197, -0.020354634150862694, -0.019151996821165085, -0.013123778626322746, -0.01787419617176056, -0.006644570734351873, 0.011928658001124859, 0.012920833192765713, 0.0141159538179636, 0.007249647285789251, 0.01602514088153839, -0.028577666729688644, -0.004352043382823467, -0.013762679882347584, -0.011853492818772793, 0.019512789323925972, 0.020535029470920563, -0.013168876990675926, -0.0212265457957983, 0.013507119379937649, 0.010741053149104118, 0.00970377866178751, -0.007046702317893505, -0.018039558082818985, -0.012988481670618057, -0.010011955164372921, -0.0008023845148272812, -0.003752603894099593, -0.012755471281707287, -0.011304790154099464, -0.018024524673819542, 0.012439779005944729, -0.030291425064206123, -0.020745491608977318, 8.109580085147172e-05, 0.012154152616858482, 0.023646853864192963, -0.0035308676306158304, -0.020129140466451645, 0.02687894180417061, 0.02536061219871044, 0.017287909984588623, -0.013168876990675926, -0.007151932921260595, -0.016355866566300392, 0.06464175134897232, 0.04239296168088913, 0.007557823322713375, -0.0012984724016860127, -0.020880788564682007, 0.014589492231607437, 0.010094636119902134, 0.033313050866127014, 0.03776280954480171, 0.010568174533545971, 0.011650548316538334, -0.009117493405938148, 0.025691337883472443, 0.05084148794412613, -0.002561241388320923, -0.017257843166589737, 0.0211213156580925, 0.032290808856487274, 0.006467933300882578, -0.013755163177847862, -0.01407085545361042, 0.004182922653853893, 0.023737052455544472, 0.0098916906863451, -0.019091865047812462, -0.023571688681840897, 0.001109620789065957, -0.02447366714477539, 0.00641907611861825, -0.00303477980196476, 0.013311690650880337, 0.0026570765767246485, 0.02447366714477539, 0.014499294571578503, -0.009282856248319149, 0.008147867396473885, -0.02799138054251671, 0.0024748018477112055, -0.03520720452070236, 0.003408724907785654, -0.010222416371107101, -0.014243734069168568, -0.007294746115803719, -0.00449109822511673, -0.005013493821024895, 0.0022643404081463814, -0.007899823598563671, 0.02154223807156086, -0.012575075030326843, -0.0183402169495821, -0.0017146975733339787, 0.030126061290502548, -0.036379776895046234, 0.011034196242690086, -0.027179600670933723, -0.002157230395823717, -0.01949775591492653, -0.024218106642365456, -0.02107621729373932, -0.013657448813319206, -0.0023996371310204268, 0.02967507392168045, -0.0005336702452041209, -0.022534415125846863, -0.011462636291980743, 0.018174855038523674, -0.024759292602539062, -0.005419383756816387, -0.0010861316695809364, 0.03370390832424164, -0.009275339543819427, -0.01643102988600731, 0.0019204613054171205, 0.004682768601924181, 0.0049308123998343945, 0.010808701626956463, 0.045670147985219955, -0.013777712360024452, 0.0462413989007473, -0.03797326982021332, -0.013574767857789993, -0.015333624556660652, 0.007663053926080465, 0.013138811103999615, -0.021091250702738762, -0.013033580966293812, -0.009583515115082264, -0.01409340463578701, -0.0033316807821393013, -0.03247120603919029, 0.021692568436264992, 0.0055997795425355434, 0.023301096633076668, -0.0005966207827441394, -0.026728611439466476, -0.009929273277521133, -0.019287293776869774, -0.004265603609383106, 0.00893709808588028, -0.03069731406867504, -0.02641291916370392, 0.02376711741089821, 0.0203396026045084, -0.0012731042224913836, -0.007787075825035572, -0.008132833987474442, -0.018701009452342987, -0.0007417828892357647, -0.011229624971747398, -0.006584438495337963, 0.006332636345177889, -0.0035045600961893797, -0.011161976493895054, -0.02071542665362358, 0.02094092033803463, -0.01109432801604271, -0.006964020896703005, 0.0017222140450030565, 0.024398501962423325, 0.022068392485380173, -0.01286070141941309, -0.00446854904294014, 0.009162591770291328, 0.03409476578235626, 0.015889843925833702, 0.026713578030467033, -0.0038672303780913353, 0.018881404772400856, -0.007704394403845072, 0.002890087431296706, 0.011192042380571365, 0.01796439290046692, -0.018084656447172165, 0.021857930347323418, 0.012950899079442024, 0.0038559555541723967, 0.0200088769197464, 0.02182786539196968, -0.0009198295301757753, -0.01513819582760334, -0.024909622967243195, 0.01973828300833702, 0.013259075582027435, 0.01112439390271902, -0.01158289983868599, 0.017678767442703247, -0.04332500696182251, 0.0038597136735916138, 0.035177137702703476, -0.018039558082818985, 0.009162591770291328, 0.006107142195105553, 0.0042392960749566555, -0.019663117825984955, 0.011455119587481022, -0.011372437700629234, 0.009463251568377018, -0.02285010740160942, 0.0007399037713184953, -0.028036480769515038, 0.029224084690213203, -0.0006652087322436273, -0.013266591355204582, -0.003149406285956502, 0.005468240939080715, 0.012973449192941189, 0.004607603885233402, -0.06181555241346359, -0.04299427941441536, 0.014754855073988438, 0.007847207598388195, 0.009455734863877296, -0.011019163765013218, -0.013965624384582043, -0.0007347361533902586, -0.013266591355204582, 0.04257335886359215, 0.00599063653498888, 0.02896852418780327, 0.011620482429862022, -0.03797326982021332, -0.015265976078808308, 0.021136349067091942, 0.007099317852407694, 0.025044919922947884, 0.013544701971113682, -0.017949359491467476, -0.01358228363096714, 0.002876933664083481, 0.021256612613797188, 0.011951207183301449, -0.029494676738977432, 0.0053442190401256084, 0.007099317852407694, 0.015168261714279652, 0.006125933490693569, 0.008117801509797573, -0.024924656376242638, -0.002164746867492795, -0.015333624556660652, -0.009906724095344543, 0.00660698814317584, 0.009350504726171494, -0.017152613028883934, 0.023240964859724045, -0.012477360665798187, 0.0006769532337784767, 0.022774942219257355, -0.008726635947823524, -0.007084284909069538, 0.03463594987988472, 0.005498306825757027, -0.03460588678717613, -0.004784241318702698, 0.0025894283317029476, -0.0032151753548532724, 0.007170724216848612, -0.02107621729373932, 0.0005938021349720657, -0.0011086812010034919, 0.002638285281136632, -0.011034196242690086, -0.020504964515566826, 0.01958795264363289, 0.010477976873517036, 0.005471999291330576, 0.014717272482812405, 0.004964636638760567, 0.035357534885406494, -0.016130371019244194, 0.012296965345740318, 0.008989713154733181, -0.0050172521732747555, 0.005735076032578945, 0.037221621721982956, 0.021948128938674927, -0.014860086143016815, -0.0021497139241546392, 0.015032964758574963, -0.010628306306898594, -0.0058064828626811504, 0.006422834470868111, 0.0015596700832247734, 0.022023294121026993, 0.013687514699995518, -0.0001924924144987017, 0.013995690271258354, 0.00652430672198534, -0.0009809009497985244, 4.02542864321731e-05, -0.008388394489884377, 0.0012571316910907626, -0.005919230170547962, -0.03965696319937706, -0.01021489966660738, 0.01089138351380825, 0.0043858676217496395, 0.008238065056502819, 0.006546856369823217, -0.03298232704401016, -0.0014384668320417404, -0.01894153654575348, -0.0031588017009198666, -0.0025029887910932302, -0.020414765924215317, 0.0026476809289306402, 0.011928658001124859, -0.005505823530256748, 0.0112822400406003, -0.01404830627143383, -0.026578282937407494, 0.03394443541765213, 0.009914240799844265, -0.015934942290186882, -0.0014224943006411195, -0.007512724492698908, -0.003931120503693819, -0.0023864831309765577, 0.02972017228603363, -0.008380877785384655, 0.0161153394728899, 0.013980657793581486, -0.017859162762761116, 0.013326723128557205, 0.01825002022087574, 0.034575819969177246, 0.004156614653766155, 0.010966547764837742, 0.0377928726375103, -0.007027911022305489, 0.003968702629208565, 0.0019204613054171205, -0.007546548265963793, -0.004164131358265877, 0.007670570630580187, 0.018460480496287346, 0.00045733098522759974, 0.009726328775286674, -0.02999076619744301, -0.026082193478941917, -0.010898899286985397, -0.011740745976567268, -0.006050768308341503, -0.01320645958185196, 0.002719087526202202, 0.008516174741089344, 0.010117185302078724, -0.025465842336416245, 0.017002282664179802, -0.016010107472538948, -0.0007901702192611992, 0.005475757643580437, 0.01269533857703209, -0.0015079942531883717, -0.01607023924589157, -0.01023744884878397, 0.001165054738521576, -0.01053810864686966, 0.007287229876965284, -0.00404010945931077, -0.015108129940927029, 0.01123714167624712, -0.03343331441283226, -0.03412482887506485, 0.00965868029743433, 0.028261974453926086, 0.01337182242423296, -0.00295397755689919, -0.008177933283150196, -0.010162284597754478, 0.0014751097187399864, -0.01228193286806345, 0.007794592529535294, -0.0018960327142849565, -0.005941779352724552, 0.026067161932587624, -0.013431954197585583, -0.00010112018208019435, -0.03580852225422859, 0.0017494612839072943, -0.02549590915441513, -0.0042392960749566555, -0.0024917139671742916, 0.02929924800992012, -0.008997229859232903, 0.02799138054251671, 0.010275031439960003, 0.009643646888434887, 0.005325427744537592, -0.0077194273471832275, -0.004265603609383106, -0.008328262716531754, 0.019978810101747513, -0.02809661254286766, -0.003500801743939519, -0.00457377964630723, -0.012274416163563728, 0.028156744316220284, -0.007106834091246128, -0.005389317870140076, -0.016370898112654686, -0.011552833952009678, -0.007317295763641596, -0.0015944339102134109, 0.010455426760017872, -0.0038352853152900934, -0.023331161588430405, 0.004066416993737221, 0.008140350691974163, 0.0049082632176578045, -0.000683999911416322, -0.011740745976567268, 0.020023910328745842, 0.005280328914523125, 0.018776172772049904, -0.023135732859373093, 0.019753316417336464, -0.014296350069344044, -0.007490174844861031, -0.012793052941560745, -0.018836304545402527, -0.013011030852794647, 0.0058064828626811504, -0.009591031819581985, 0.004855647683143616, -0.010605757124722004, 0.0222337543964386, -0.019046766683459282, 0.024248173460364342, 0.01829511858522892, -0.0024785601999610662, -0.02163243666291237, 0.013845360837876797, 0.021346811205148697, 0.003436911618337035, 0.0055509223602712154, -0.00826813094317913, 0.016521228477358818, -0.015025448985397816, 0.03367384150624275, 0.023135732859373093, 0.01193617470562458, -0.016551295295357704, 0.008373361080884933, -0.006351427640765905, 0.008561274036765099, 0.010545625351369381, 0.0014093404170125723, -0.0015718843787908554, -0.013492085970938206, 0.0012082745088264346, -0.01940755732357502, -0.02692404016852379, 0.006855031941086054, 0.005517098121345043, -0.0360189825296402, -0.016551295295357704, 0.003942395094782114, -0.023857316002249718, -0.01894153654575348, -0.003051691921427846, -0.010838767513632774, 0.009049844928085804, -0.0025330546777695417, 0.03337318077683449, -0.009575998410582542, 0.018655909225344658, 0.008140350691974163, -0.017212744802236557, 0.01982848159968853, -0.0030535710975527763, 0.022068392485380173, 0.01023744884878397, -0.003339197253808379, -0.01377019565552473, -0.03319278731942177, -0.0033936919644474983, -0.015559119172394276, 0.01885133795440197, 0.010222416371107101, -0.003311010543256998, -0.012913317419588566, -0.03418496251106262, -0.004562505055218935, 0.005355493631213903, -0.013845360837876797, -0.009538416750729084, 0.015183295123279095, 0.007181999273598194, 0.00038169638719409704, -0.005671185906976461, 0.015934942290186882, 0.008395911194384098, -0.000767151010222733, 0.0033222853671759367, -0.008072702214121819, 0.011034196242690086, -0.011304790154099464, -0.016836920753121376, -0.005464482586830854, 0.011853492818772793, -0.0048218234442174435, -0.004370834678411484, -0.016415998339653015, 0.0017015436897054315, 0.0011443844996392727, -0.00564112002030015, 0.0012392800999805331, -0.00914755929261446, 0.0013661206467077136, -0.010455426760017872, 0.0362294465303421, -0.016701623797416687, 0.009237756952643394, 0.008238065056502819, -0.0036285819951444864, 0.011845976114273071, -0.01760360226035118, -0.010229933075606823, -0.007772042881697416, 0.007929889485239983, -0.0021872965153306723, -0.014168569818139076, 0.0030986699275672436, -0.003363625844940543, 0.08220025151968002, 0.00617479020729661, 0.023105667904019356, -0.01002698764204979, -0.0021497139241546392, -0.022203689441084862, 0.0028919666074216366, 0.012289448641240597, 0.00935802049934864, 0.002209845930337906, 0.000683999911416322, -0.0025988237466663122, 0.0049683949910104275, -0.0049683949910104275, -0.01685195416212082, 0.0038709884975105524, 0.019798414781689644, 0.007358636241406202, -0.0033166478388011456, 0.016355866566300392, 0.016325799748301506, 0.004115274176001549, -0.02247428335249424, -0.005659911315888166, -0.008523691445589066, 0.02605212852358818, -0.011199559085071087, -0.0050773839466273785, 0.024533798918128014, 0.04852641001343727, -0.016055205836892128, -0.008275647647678852, 0.0005148790660314262, 0.01070347148925066, 0.014875118620693684, 0.01680685579776764, 0.007061735261231661, 0.012417228892445564, -0.011552833952009678, 0.006122175138443708, 0.011146944016218185, 0.0028562634252011776, 0.02182786539196968, 0.012379646301269531, -0.006832482758909464, -0.010342679917812347, 0.007080526556819677, -0.003327922662720084, -0.009448218159377575, -0.009463251568377018, -0.018265051767230034, -0.0240076445043087, 0.005423142109066248, 0.03069731406867504, 0.004205471836030483, -0.01481498684734106, -0.0052840872667729855, -0.0004326675261836499, -0.005926746409386396, -0.0007596345385536551, -0.005915471818298101, 0.0033730214927345514, -0.0033448347821831703, -0.018595777451992035, -0.020219337195158005, -0.007208306808024645, 0.003848439082503319, -0.034154895693063736, -0.0006421894649975002, -0.011530283838510513, -0.02080562338232994, 0.006945230066776276, -0.008771735243499279, -0.04762443155050278, -0.009252790361642838, 0.027375029399991035, -0.0028243183623999357, 0.012484877370297909, 0.01616043783724308, 0.019512789323925972, 0.012387163005769253, 0.005359251983463764, -0.021617403253912926, -0.012109053321182728, 0.022278854623436928, -0.020144173875451088, 0.013897975906729698, -0.0005191070958971977, 0.008538723923265934, -0.0282319076359272, -0.01825002022087574, 0.012582591734826565, 0.012176701799035072, 0.00900474563241005, 0.02042979933321476, -0.009252790361642838, -0.0030385381542146206, -0.010823735035955906, 0.023932481184601784, 0.004904504865407944, 0.030637182295322418, 0.01796439290046692, -0.020129140466451645, -1.3836493963026442e-05, -0.006753559689968824, -2.736469468800351e-05, 0.024548832327127457, 0.008035119622945786, -0.03232087567448616, 0.006700944155454636, 0.0010344559559598565, -0.016370898112654686, -0.0019975053146481514, -0.0015887964982539415, -0.025796568021178246, 0.011643031612038612, 0.019933711737394333, 0.00912501011043787, -0.02218865603208542, -0.007234614342451096, -0.001525845960713923, 0.006576922256499529, 0.0019824723713099957, -0.005517098121345043, 0.010064570233225822, -0.015145712532103062, -0.021061183884739876, -0.005013493821024895, -0.008681537583470345, -0.0025819118600338697, 0.012109053321182728, -0.007854724302887917, 0.019091865047812462, -0.0014967195456847548, 0.0050849006511271, 0.0004354862030595541, -0.006110900081694126, -0.008516174741089344, 0.03165942430496216, -0.022624611854553223, 0.006306328810751438, 0.008891998790204525, 0.021391909569501877, 0.0039123292081058025, 0.0049082632176578045, -0.007704394403845072, -0.008674020878970623, -0.014424130320549011, 0.022218722850084305, -0.008456042967736721, 0.05760632082819939, -0.022624611854553223, -0.009177625179290771, -0.012943383306264877, -0.002574395155534148, -0.004784241318702698, -0.019422590732574463, 0.032290808856487274, -0.002634527161717415, -0.0025349336210638285, 0.005287845619022846, -0.011455119587481022, -0.008764218538999557, -0.006576922256499529, 0.0019580437801778316, -0.003634219290688634, 0.022669712081551552, 0.02632272243499756, 0.013131295330822468, -0.012868218123912811, 0.003715021535754204, 0.006456658709794283, -0.004423449747264385, -0.027705755084753036, -0.014040789566934109, -0.02080562338232994, 0.024067776277661324, 0.00590795511379838, 0.0018932140665128827, 0.023421360179781914, -0.007907339371740818, 0.004709076136350632, 0.010365229099988937, -0.0043896259739995, -0.011131910607218742, -0.0023752085398882627, 0.026803776621818542, -0.017949359491467476, -0.008207999169826508, 0.005092416889965534, -0.015679381787776947, -0.006945230066776276, 0.0025311755016446114, -0.021662503480911255, -0.012567558325827122, -0.007693119812756777, 0.007952438667416573, 0.027014238759875298, -0.00015303088002838194, -0.016280701383948326, -0.010064570233225822, 0.0036079115234315395, 0.020865755155682564, 0.004547472111880779, -0.023421360179781914, 0.00011585953325266019, -1.8409509721095674e-05, -0.016355866566300392, -0.010229933075606823, 0.0034557029139250517, -0.04768456518650055, -0.032020214945077896, 0.008749186061322689, 0.007787075825035572, -0.015213361009955406, 0.014153536409139633, 0.009410636499524117, 0.010019470937550068, 0.008072702214121819, -0.008621405810117722, 0.009996921755373478, 0.020580129697918892, 0.027976347133517265, 0.01680685579776764, -0.015814678743481636, 0.00420171394944191, 0.018731074407696724, 0.012086504139006138, 0.011004130356013775, 0.005532131064683199, 0.02521028183400631, -0.0011490823235362768, -0.012184218503534794, 0.0016442305641248822, 0.0009902965975925326, 0.01718267984688282, 0.014326415956020355, -0.010477976873517036, 0.008553757332265377, -0.01460452564060688, -0.016325799748301506, -0.013424437493085861, -0.0006135329022072256, -0.0049082632176578045, 0.01529604196548462, -0.02396254613995552, -0.01473982259631157, 0.00042749993735924363, 0.009718812070786953, -2.8245531211723574e-05, -0.009027295745909214, -0.005949296057224274, -0.009087427519261837, 0.00588540593162179, 0.012635206803679466, 0.018144788220524788, -0.004987186286598444, -0.0010917690815404058, -0.001760735991410911, -0.009463251568377018, 0.006573163904249668, 0.013492085970938206, -0.02349652349948883, -0.0008845960255712271, 0.006077076308429241, 0.006964020896703005, -0.034455556422472, 0.010057053528726101, 0.007155691273510456, 0.012048921547830105, 0.009568482637405396, -0.00935802049934864, 0.008253097534179688, 0.019422590732574463, -0.010763603262603283, -0.007027911022305489, 0.006054526660591364, -0.0007873515714891255, -0.0020501206163316965, 0.018099689856171608, -0.018685976043343544, 0.007208306808024645, 0.00039015241782180965, -0.016175471246242523, 0.01423621829599142, -0.018655909225344658, 0.013867910020053387, 0.012560042552649975, -0.005768900271505117, 0.010553141124546528, 0.00895964726805687, -0.017753932625055313, 0.01778399758040905, -0.012214284390211105, -0.011740745976567268, 0.013634899631142616, 0.00107673613820225, -0.012063954025506973, 0.01685195416212082, -0.002619494218379259, -0.002279373351484537, -0.011169493198394775, -0.019723249599337578, -0.0014948404859751463, 0.012063954025506973, -0.006513032130897045, 0.011462636291980743, 0.021136349067091942, -0.008185449056327343, 0.026773711666464806, -0.0015512141399085522, -0.003666164353489876, 0.009936789982020855, 0.005325427744537592, -0.00935802049934864, 0.0036116698756814003, -0.005299120210111141, 0.018325183540582657, -0.020369667559862137, 0.025781534612178802, -0.011222108267247677, 0.009591031819581985, -0.0009339229436591268, 0.007606680504977703, 0.00793740525841713, 0.009741361252963543, 0.02191806398332119, 0.017348041757941246, -0.0019749558996409178, -0.02707437053322792, -0.0011725713266059756, 0.03162935748696327, -0.003521471982821822, -0.0025913072749972343, -0.011410020291805267, 0.027525359764695168, -0.0254508089274168, -0.0005642059841193259, -0.01441661361604929, -0.0031963842920958996, -0.0013726976467296481, 0.01165806408971548, -0.005081142298877239, -0.021903030574321747, 0.002886329311877489, 0.009530900046229362, 0.013274108059704304, -0.01704738289117813, -0.00842597708106041, 0.002929548965767026, 0.016325799748301506, -0.01441661361604929, 0.014161053113639355, 0.0012298844521865249, -0.026683513075113297, 0.001950527192093432, 0.0023019227664917707, 0.027555424720048904, 0.0038559555541723967, 0.00631384551525116, 0.011034196242690086, 0.006990328896790743, 0.006787383928894997, -0.006140966434031725, -0.0005961510469205678, 0.0015211481368169188, -0.005960570648312569, 0.017483338713645935, -0.02158733829855919, 0.007787075825035572, -0.0021196480374783278, -0.0186709426343441, -0.011019163765013218, -0.006839998997747898, -0.0008836564957164228, 0.0052352300845086575, -0.013116261921823025, -0.016821887344121933, -0.02251938171684742, 0.01441661361604929, 0.03932623565196991, 0.006084592547267675, -0.013086196035146713, 0.00713689997792244, -0.004720351193100214, 0.013153844512999058, 0.02614232711493969, 0.008831867016851902, -0.0025236590299755335, 0.025150150060653687, 0.0010551261948421597, -0.005584746599197388, -0.0036605270579457283, 0.0112822400406003, -0.002897603902965784, 0.035177137702703476, -0.01530355866998434, 0.011064262129366398, 0.0005853460752405226, -0.011560349725186825, -0.017859162762761116, -0.012552525848150253, 0.023556657135486603, 0.005133757367730141, -0.010259998962283134, -0.0240076445043087, -0.005629845429211855, 0.025420743972063065, 0.017287909984588623, -0.010831251740455627, 0.00034951642737723887, 0.0042242631316185, -0.026683513075113297, -0.004442241042852402, 0.01211657002568245, -0.02098601870238781, 0.016551295295357704, 0.0031230985186994076, -0.012364613823592663, 0.009162591770291328, 0.009688746184110641, 0.0049571203999221325, 0.01811472326517105, -0.010079602710902691, 0.006445383653044701, -0.0039123292081058025, 0.024503733962774277, -0.011462636291980743, -0.005753867328166962, -0.0009062059107236564, 0.008140350691974163, -0.006189823150634766, -0.014912701211869717, -0.00526905432343483, -0.012973449192941189, -0.014514327980577946, 0.035267334431409836, -0.009711295366287231, 0.005201405845582485, 0.004972153343260288, -0.018310151994228363, 0.001485444838181138, -0.009245273657143116, 0.0008888240554369986, 0.006907647475600243, -0.0016414119163528085, 0.006956504657864571, 0.009824042208492756, -0.006700944155454636, -0.005419383756816387, -0.024729227647185326, -0.0015963129699230194, -0.021091250702738762, 0.020324569195508957, -0.01954285427927971, -0.01230448205024004, 0.0052953618578612804, 0.004667735658586025, 0.01982848159968853, -0.0035233511589467525, 0.010320130735635757, 0.00035468401620164514, -0.010831251740455627, 0.018099689856171608, -0.005254021380096674, 0.00140464270953089, 0.023466458544135094, 0.010154767893254757, -0.014100921340286732, -0.003820252139121294, -0.014078372158110142, 0.016791822388768196, 0.003094911575317383, 0.0008061427506618202, -0.015709448605775833, 0.026728611439466476, -0.0021872965153306723, 0.005385559517890215, 0.008433493785560131, 0.004960878286510706, -0.013499602675437927, -0.0027021754067391157, -0.0036811972968280315, 0.012845668941736221, 0.031178370118141174, -0.007208306808024645, -0.010680921375751495, 0.026292655616998672, -0.008433493785560131, 0.016040174290537834, 0.033733975142240524, 9.771426994120702e-05, 0.01760360226035118, -0.021467074751853943, 0.012078987434506416, 0.006922680418938398, 0.01038026250898838, 0.029419513419270515, 0.00014304806245490909, -0.002318834885954857, 0.013176393695175648, -0.0013539064675569534, -0.008147867396473885, 0.0057463510893285275, 0.028532568365335464, 0.017393140122294426, 0.009831558912992477, 0.01564931683242321, 0.00949331745505333, 0.00021574653510469943, -0.0017099997494369745, 0.007290988229215145, -0.01811472326517105, 0.006911405827850103, 0.005396834574639797, 0.017227778211236, 0.012086504139006138, 0.026548216119408607, -0.007294746115803719, 0.002377087716013193, -0.007854724302887917, -0.0214520413428545, -8.297491876874119e-05, 0.026758678257465363, -0.010320130735635757, -0.018355250358581543, -0.002330109477043152, -0.003953669685870409, -0.007599163800477982, -0.003525230335071683, -0.008598855696618557, 0.011304790154099464, 0.009185141883790493, -0.011733229272067547, 0.005280328914523125, 0.008275647647678852, 0.006400284823030233, 0.02358672209084034, 0.03050188533961773, -0.01847551390528679, 0.024248173460364342, 0.017212744802236557, 0.018746107816696167, -0.005306636448949575, 0.013852877542376518, -0.007952438667416573, 0.0018603294156491756, 0.020700393244624138, -0.0020651535596698523, 0.020745491608977318, -0.017994459718465805, 0.008110284805297852, 0.019557887688279152, 0.02363182045519352, 0.006024460773915052, -0.02925414964556694, 0.002269977703690529, 0.006227405741810799, 0.0024748018477112055, 0.026954106986522675, -0.002735999645665288, -0.005930504761636257, -0.014551910571753979, -0.008147867396473885, -0.01736307516694069, 0.005058592651039362, 0.0035834829322993755, -0.014724789187312126, -0.010094636119902134, 0.016791822388768196, -0.012033888138830662, -0.020640261471271515, -0.010320130735635757, 0.011883558705449104, -0.0014525603037327528, -0.003916087560355663, -0.020324569195508957, 0.003388054436072707, 0.024548832327127457, -0.02294030413031578, -0.0021797800436615944, -0.003953669685870409, -0.02729986421763897, 0.005776416976004839, 0.004795515909790993, 0.008380877785384655, 0.022399118170142174, -0.0012007580371573567, 0.036469973623752594, -0.01996377669274807, 0.01927226036787033, -0.009598548524081707, -0.017287909984588623, 0.0014431646559387445, -0.005280328914523125, -0.010312614031136036, 0.015453888103365898, 0.0006694367039017379, -0.029780304059386253, -0.01996377669274807, -0.00644162530079484, 0.014882635325193405, 0.012417228892445564, 0.008711603470146656, 0.00947076827287674, -0.0008831867016851902, -0.009545932523906231, -0.02763058990240097, -0.007279713172465563, -0.01390549261122942, 0.0041190325282514095, 0.018505580723285675, -0.01386039424687624, 0.0028675380162894726, -0.00017193953681271523, -0.013830327428877354, 0.011207075789570808, 0.008666504174470901, 0.00044817026355303824, -0.0047729662619531155, -0.003294098423793912, 0.013266591355204582, 0.010440394282341003, 0.016010107472538948, -0.013071163557469845, -0.019151996821165085, -0.002854384249076247, -0.00045145873446017504, 0.015859778970479965, -0.009230240248143673, 0.012221800163388252, 0.014642108231782913, -0.012026372365653515, -0.024443600326776505, 0.017513403668999672, 0.0021102523896843195, -0.015679381787776947, -0.018565712496638298, -0.01680685579776764, -0.02660834789276123, -0.006482966244220734, -0.009455734863877296, -0.013830327428877354, 0.01825002022087574, -0.005156307015568018, -0.014514327980577946, 0.014551910571753979, -0.010297580622136593, 0.006956504657864571, 0.009598548524081707, -0.010793669149279594, 0.011222108267247677, -0.010477976873517036, 0.01638593152165413, -0.014529360458254814, -0.0016789942746981978, 0.012372130528092384, -0.026458019390702248, 0.0531264990568161, -0.0142287015914917, -0.015341141261160374, -0.020038941875100136, -0.0015991316176950932, 0.00847107544541359, -0.007922372780740261, -0.007046702317893505, 0.02051999792456627, 0.004284394904971123, -0.019167030230164528, -0.01718267984688282, -0.006452900357544422, 0.00764802098274231, -0.015544085763394833, 0.015724482014775276, 0.002343263477087021, 0.00917010847479105, -4.013684156234376e-05, -0.01764870062470436, 0.022489314898848534, -0.032381005585193634, -0.011056745424866676, -0.005693735554814339, 0.0028731755446642637, -0.010199867188930511, -1.2830870218749624e-05, 0.01918206363916397, 0.012078987434506416, -0.014544393867254257, -0.012424745596945286, 0.014822503551840782, -0.006467933300882578, 0.01051555946469307, -0.01147015206515789, -0.019978810101747513, 0.017393140122294426, -0.003617307171225548, -0.03328298404812813, -0.022038327530026436, 0.0006454779650084674, -0.018189888447523117, -0.011567866429686546, -0.003767636837437749, -0.012477360665798187, 0.004182922653853893, -0.01820491999387741, -0.014100921340286732, 0.02641291916370392, 0.017122548073530197, 0.0006407801411114633, 0.021106282249093056, 0.011552833952009678, 0.006855031941086054, 0.013973141089081764, -0.0016329558566212654, -0.00695274630561471, -0.03878505155444145, 0.012965932488441467, -0.0025649997405707836, -0.006948987953364849, 0.003927362151443958, -0.006843757349997759, -0.0014957800740376115, -0.0029690105002373457, 0.0017391261644661427, -0.02098601870238781, -0.023150766268372536, -0.007847207598388195, -0.0031588017009198666, -0.00609586713835597, 0.0034989225678145885, 0.02582663483917713, -0.006982812192291021, 0.0014910822501406074, 0.022354019805788994, -0.007437559310346842, 0.00535173574462533, 0.03147902712225914, 0.0024409776087850332, -0.012567558325827122, 0.007332328706979752, -0.004915779456496239, -0.03761247918009758, -0.024864524602890015, 0.0039837355725467205, 0.01760360226035118, -0.004472306929528713, -0.00510744983330369, 0.011109361425042152, -0.00808021891862154, 0.010447910986840725, -0.013401888310909271, -1.1751843885576818e-05, 0.017543470486998558, 0.000677892763633281, -0.0047241090796887875, -0.0022605820558965206, -0.004479823634028435, -0.008253097534179688, -0.0004772966494783759, -0.006975295953452587, 0.002230516169220209, 0.01945265755057335, 0.0024052744265645742, 0.009252790361642838, 0.011522768065333366, 0.024203073233366013, -0.0051149665378034115, -0.01815982162952423, -0.011357405222952366, 0.01880623959004879, 0.004746658727526665, -0.012905800715088844, -0.004209230188280344, -0.024413535371422768, -0.015769580379128456, -0.007599163800477982, -0.013116261921823025, -0.005396834574639797, -0.013386855833232403, 0.015498987399041653, 0.0017954998183995485, -0.004235537722706795, -0.03634971007704735, -0.007422526367008686, -0.00025321150314994156, -0.000329785660142079, 0.03574839234352112, 0.015889843925833702, 0.009117493405938148, 0.012424745596945286, 0.016415998339653015, 0.0019195217173546553, -0.022970370948314667, -0.0030498127453029156, 0.01211657002568245, 0.008478592149913311, 0.009064878337085247, -0.011680614203214645, 0.006016944069415331, -0.007039186079055071, 0.010831251740455627, 0.0051638237200677395, 0.00713689997792244, -0.021136349067091942, -0.014454196207225323, 0.02623252384364605, -0.0100044384598732, 0.013890460133552551, 0.0012665273388847709, -0.01165806408971548, 0.015604217536747456, -0.009373053908348083, -0.014980349689722061, 0.011913624592125416, 0.005419383756816387, 0.00027857962413690984, -0.010643339715898037, 0.0013369943480938673, -0.015333624556660652, -0.0013510877033695579, -0.01163551490753889, 0.01181591022759676, 0.038845181465148926, -0.00893709808588028, -0.019618019461631775, 0.0030667248647660017, -0.003760120365768671, -0.01638593152165413, 0.002318834885954857, -0.01940755732357502, -0.015453888103365898, 0.0010833130218088627, -0.01653626188635826, 0.008764218538999557, -0.009598548524081707, -0.01773889921605587, 0.015408788807690144, -0.006287537515163422, 0.030577050521969795, 0.008786767721176147, -0.005415625870227814, -0.032621532678604126, 0.005047318059951067, 0.005644878372550011, 0.004585054237395525, 0.004949603695422411, 0.0018791205948218703, 0.001505175605416298, -0.020910853520035744, -0.008583823218941689, 0.007625471334904432, 0.0050849006511271, 0.009884174913167953, -0.0009390905615873635, -0.006268746219575405, 0.018189888447523117, -0.0004643776919692755, -0.013484569266438484, 0.0052953618578612804, -0.007181999273598194, 0.027284830808639526, 0.02796131558716297, -0.0052465046755969524, -0.009861624799668789, 0.03571832552552223, -0.008719120174646378, -0.003927362151443958, -0.018701009452342987, -0.0022117248736321926, -0.011131910607218742, -0.014491777867078781, 0.007523999083787203, -0.011808394454419613, -0.0029727688524872065, -0.011274723336100578, 0.008861932903528214, 0.004430966451764107, 0.007099317852407694, -0.020069008693099022, 0.003716900711879134, -0.015844745561480522, 0.005998153239488602, 0.00561857083812356, -8.867100405041128e-05, -0.007088042795658112, -0.01607023924589157, 0.01685195416212082, 0.008260614238679409, 0.02080562338232994, 0.025646237656474113, 0.008771735243499279, -0.014619558118283749, 0.0037789116613566875, -0.009102459996938705, 0.005705010145902634, -0.015814678743481636, 0.018821272999048233, 0.006351427640765905, -0.0013097471091896296, 0.00264580175280571, 0.011530283838510513, 0.012477360665798187, -0.012101536616683006, 0.0009743240661919117, -0.022865138947963715, 0.009748877957463264, -0.05005977302789688, -0.00847107544541359, 0.00730226282030344, 0.036560170352458954, -0.011289756745100021, -0.007230855990201235, 0.028246941044926643, -0.0021403185091912746, -0.0019354942487552762, 0.031599294394254684, 0.013612349517643452, -0.005464482586830854, 0.002771702827885747, 0.013244042173027992, -0.017032349482178688, 0.016791822388768196, 0.007944921962916851, 0.005167581606656313, 0.02614232711493969, -0.0019768348429352045, -0.01616043783724308, -0.02502988651394844, -0.008072702214121819, -0.015250942669808865, 0.007670570630580187, -0.02191806398332119, 0.002935186494141817, -0.02920905128121376, -0.01042536087334156, 0.019257228821516037, 0.00842597708106041, 0.0025819118600338697, 0.0197833813726902, 0.005062351003289223, 0.019091865047812462, 0.005772658623754978, 0.02103111892938614, -0.03659023717045784, -0.014108438044786453, 0.0005604477482847869, 0.003096790751442313, -0.006306328810751438, -0.02748025953769684, -0.01796439290046692, -6.477093847934157e-05, 0.005438175052404404, 0.016010107472538948, 0.0007929889252409339, 0.014830020256340504, 0.00307612051256001, -0.0005529312184080482, -0.0142813166603446, 0.0007539971265941858, -0.023331161588430405, -0.012357097119092941, -0.005870372988283634, 0.02507498487830162, -0.03439542278647423, 0.015408788807690144, -0.01070347148925066, -0.003044175449758768, -0.0016367140924558043, 0.002367692068219185, -0.01404830627143383, 0.0026909008156508207, 0.024879558011889458, -0.006385251879692078, 0.014085887931287289, 0.022594546899199486, 0.005682460963726044, -0.044918499886989594, 0.010327647440135479, 0.0015718843787908554, 0.009959339164197445, -0.009801493026316166, 0.0025725162122398615, 0.00029361259657889605, -0.00882435031235218, 0.008298196829855442, 0.0049571203999221325, 0.0021158899180591106, -0.009064878337085247, 0.007208306808024645, -0.01035771332681179, -0.014852569438517094, -0.017107514664530754, -0.016415998339653015, 0.007448834367096424, 0.006509273778647184, 0.0020595162641257048, 0.018099689856171608, 0.013958107680082321, -0.008967163972556591, -0.004671494010835886, 0.01058320701122284, 0.03806346654891968, -0.013552217744290829, -0.0014337690081447363, 0.012898284010589123, -0.01894153654575348, -0.010094636119902134, 0.013807778246700764, -0.01773889921605587, 0.005389317870140076, 0.018189888447523117, -0.003979977685958147, -0.038754984736442566, -0.000588634517043829, -0.014469228684902191, 0.03728175163269043, 0.01940755732357502, 0.016821887344121933, 0.001736307516694069, 0.009666196070611477, -0.005934263113886118, 0.021857930347323418, 0.0027247248217463493, 0.005877889227122068, -0.003788307309150696, 0.005813999101519585, 0.013897975906729698, -0.030907776206731796, -0.01492773462086916, -0.012484877370297909, -0.0006445383769460022, -0.004975911229848862, 0.010057053528726101, -0.006704702507704496, -0.005355493631213903, -0.004509889520704746, -0.012499910779297352, 0.013244042173027992, -0.016175471246242523, 0.01372509729117155, 0.012612657621502876, -0.0036003950517624617, -0.004667735658586025, -0.0029934390913695097, -0.005810241214931011, -0.01573951356112957, 0.010981581173837185, -0.003023505210876465, 0.016596393659710884, -0.011973756365478039, -0.024112876504659653, -0.006452900357544422, 0.0045324391685426235, 0.013221492990851402, -0.005622328724712133, -0.015145712532103062, 0.0025349336210638285, 0.009365537203848362, 0.008914547972381115, 0.017438240349292755, -0.0040814499370753765, 0.007535273674875498, -0.012710371986031532, 0.001663021743297577, 0.00824558176100254, 0.014506811276078224, -0.014078372158110142, -0.017122548073530197, 0.008012570440769196, 0.009433185681700706, 0.007693119812756777, 0.021331777796149254, -0.005682460963726044, 0.023887380957603455, -0.025751469656825066, -0.010282548144459724, 0.013980657793581486, 0.010710987262427807, -0.007967471145093441, -0.012740437872707844, 0.004705318249762058, -0.0021309228613972664, 0.004896988160908222, -0.0023996371310204268, 0.0037695160135626793, -0.005009735468775034, -0.007636746391654015, -0.005569713655859232, 0.011379954405128956, -0.010094636119902134, 0.010808701626956463, 0.01023744884878397, -0.007606680504977703, 0.011492702178657055, -0.009410636499524117, 0.008501141332089901, 0.00634015304967761, 0.008478592149913311, -0.002384604187682271, -0.015063030645251274, -0.017077447846531868, 8.52944594953442e-06, -0.010793669149279594, 0.001485444838181138, 0.006817449815571308, 0.0001117489518946968, 0.007839690893888474, 0.019377492368221283, -0.0030329006258398294, -0.010042021051049232, -0.00756909791380167, -0.0033824171405285597, -0.019467689096927643, 0.0046902853064239025, 0.00373193365521729, 0.004359560087323189, -0.01671665720641613, -0.010568174533545971, 0.03616931289434433, 0.014191119000315666, -0.009598548524081707, -0.01829511858522892, -0.004235537722706795, -0.011101844720542431, 0.005701251793652773, -0.00346509856171906, -0.004513647872954607, -0.0006229284917935729, -0.004874438978731632, 0.0050285267643630505, -0.006122175138443708, 0.008561274036765099, 0.002347021596506238, 0.005705010145902634, 0.007306021172553301, 0.005889164283871651, 0.013574767857789993, -0.005870372988283634, 0.00596808735281229, -0.002700296463444829, 0.026067161932587624, 0.00810276810079813, 0.011507734656333923, 0.0022248788736760616, -0.0025274171493947506, -0.015453888103365898, 0.01195872388780117, 0.004874438978731632, 0.014942767098546028, -0.0005299120093695819, -0.005265295971184969, -0.0005891043110750616, 0.013612349517643452, -0.005359251983463764, 0.0012007580371573567, 0.004776724614202976, -0.02005397528409958, 0.006528065074235201, -0.008358328603208065, 0.03060711733996868, 0.01213911920785904, 0.002651439281180501, -0.01495028380304575, 0.007554064970463514, 0.010620789602398872, -0.0024823183193802834, -0.02260958030819893, 0.0020012634340673685, -0.0031963842920958996, -0.003699988592416048, -0.004975911229848862, -0.017814064398407936, 0.004254329018294811, 0.0032734281849116087, -0.0028675380162894726, 0.01093648187816143, 0.008568789809942245, -0.01492773462086916, 0.014987866394221783, -0.009688746184110641, -0.0047616916708648205, -0.0059041972272098064, -0.01671665720641613, -0.00805766973644495, 0.018956568092107773, -0.0019486481323838234, -0.02247428335249424, 0.0008653350523672998, 0.025796568021178246, 0.010177317075431347, 0.028622765094041824, 0.0020858237985521555, -0.01649116352200508, -0.01056065782904625, -0.007741976995021105, 0.0027980105951428413, -0.01731797493994236, 0.0038146148435771465, 0.007922372780740261, -0.007189515512436628, -0.03460588678717613, -0.010741053149104118, 0.007640504278242588, -0.007441317662596703, -0.015468921512365341, 0.013101229444146156, 0.0021309228613972664, 0.01731797493994236, 0.012868218123912811, 0.0183402169495821, -0.017588568851351738, 0.01620553620159626, -0.030817577615380287, 0.0027547909412533045, -0.007922372780740261, 0.02502988651394844, 0.014852569438517094, -0.008238065056502819, -0.0019749558996409178, 0.0007258103578351438, -0.0017954998183995485, 0.033132653683423996, 0.004261845722794533, 0.0032320874743163586, -0.003784548956900835, 0.0039236037991940975, 0.008523691445589066, -0.006866306997835636, 0.0007107773562893271, 0.0052239554934203625, -0.00047518263454549015, -0.010267514735460281, -0.009373053908348083, -0.0027341204695403576, -0.013018547557294369, 0.0033410764299333096, 0.005257779732346535, 0.01211657002568245, -0.024864524602890015, 0.012762987054884434, -0.0010654614306986332, -0.0003283763362560421, -0.010643339715898037, 0.007309779059141874, -0.019512789323925972, -0.002861900720745325, 0.016175471246242523, -0.02739006280899048, -0.00025649997405707836, -0.009914240799844265, 0.008358328603208065, -0.01407085545361042, 0.021046150475740433, 0.004149098414927721, 0.009155075997114182, -0.001031637191772461, -0.006640812382102013, -0.015363690443336964, 0.0018969723023474216, 7.60456605348736e-05, 0.0015436975518241525, -0.0037582411896437407, 0.018505580723285675, 0.028848260641098022, 0.0030667248647660017, -0.020174238830804825, 0.020880788564682007, -0.03914584219455719, 0.010508042760193348, -0.0026007029227912426, -0.025090018287301064, 0.02539067715406418, 0.00912501011043787, -0.015408788807690144, 0.0007135960622690618, -0.014995383098721504, 0.025044919922947884, 0.004171647597104311, 0.009966855868697166, 0.01582971215248108, -0.0027472744695842266, 0.027976347133517265, -0.020640261471271515, -0.009290372021496296, -0.005314153153449297, -0.0054907905869185925, 0.04651199281215668, 0.01778399758040905, 0.008922064676880836, -0.007204548455774784, 0.012402196414768696, -0.025345578789711, 0.027690721675753593, -0.005133757367730141, 0.015032964758574963, -0.01109432801604271, 0.015814678743481636, -0.005043559707701206, 0.012432262301445007, 0.02702927030622959, 0.001530543784610927, -0.001489203074015677, 0.005949296057224274, 0.003559054573997855, 0.014476745389401913, -0.008441009558737278, -0.005603537894785404, -0.009711295366287231, -0.018445448949933052, 0.015965009108185768, 0.013649932108819485, 0.014619558118283749, -0.00046461258898489177, -0.00023277607397176325, -0.021797798573970795, 0.006945230066776276, 0.02953977696597576, -0.006945230066776276, -0.010485493578016758, 0.005471999291330576, -0.008869449608027935, 0.02214355766773224, 0.008568789809942245, -0.003594757756218314, -0.00010388013470219448, -0.01598004251718521, -0.034756213426589966, -0.020444832742214203, 0.01815982162952423, -0.006625779438763857, -0.016400964930653572, 0.00032908099819906056, 0.012229316867887974, 0.015250942669808865, -0.004254329018294811, 0.0014967195456847548, 0.013484569266438484, 0.0214520413428545, -0.012214284390211105, -0.0014760493068024516, -0.008087735623121262, 0.00668591121211648, -0.001704362453892827, -0.020114107057452202, -0.018174855038523674, -0.013800261542201042, -0.018099689856171608, 0.00882435031235218, 0.013409405015408993, 0.005231471732258797, -0.007351120002567768, 0.035267334431409836, -0.005712526850402355, -0.0007173542981036007, -0.002784856827929616, -0.008065185509622097, -0.004382109269499779, -0.021391909569501877, -0.007024153135716915, -0.013567251153290272, -0.0027153294067829847, -0.02316579967737198, -0.01945265755057335, 0.006467933300882578, -0.011485185474157333, 0.020309535786509514, 0.0031982632353901863, -0.0012571316910907626, -0.0007840630714781582, -0.011079295538365841, -0.00033518814598210156, 0.017107514664530754, 0.009064878337085247, 0.0254508089274168, 0.00935802049934864, -0.016400964930653572, -0.027014238759875298, -0.01372509729117155, 0.0004533378523774445, 0.0018875766545534134, 0.024127908051013947, 0.0014459833037108183, -0.011612965725362301, 0.006328878458589315, 0.0018960327142849565, 0.008674020878970623, 0.0051375157199800014, -0.007430043071508408, -0.008613889105618, -0.004156614653766155, 0.009944306686520576, -0.016521228477358818, 0.005411867517977953, 0.010989097878336906, -0.005705010145902634, 0.0018828788306564093, -0.02414294146001339, 0.019678151234984398, -0.0020952194463461637, 0.007411251775920391, 0.0033467139583081007, 0.03045678697526455, 0.001522087724879384, -0.0030986699275672436, 0.006092109251767397, -0.003658647881820798, -0.020640261471271515, 0.001971197547391057, 0.015108129940927029, 0.004363317973911762, -0.01109432801604271, -0.006588196847587824, 0.004960878286510706, 0.01880623959004879, -0.017814064398407936, 0.005644878372550011, 0.003938636742532253, -0.011853492818772793, -0.008681537583470345, -0.0039123292081058025, -0.00824558176100254, 0.0126727893948555, 0.01713757961988449, -0.027660654857754707, 0.016506195068359375, -0.010981581173837185, -0.017814064398407936, 0.04233282804489136, 0.01931736059486866, -0.015904877334833145, -0.005705010145902634, -0.007159449625760317, -0.007869756780564785, 0.016566326841711998, 0.007606680504977703, -0.014476745389401913, -0.005347977392375469, -0.009252790361642838, -0.0047241090796887875, 0.011379954405128956, -0.006400284823030233, 0.010222416371107101, 0.013304173946380615, 0.01782909594476223, -0.013604833744466305, -0.0038785049691796303, 0.013086196035146713, 0.007313537411391735, 0.006122175138443708, 0.020925886929035187, 0.02080562338232994, -0.0018161700572818518, -0.014957800507545471, -0.004742900375276804, 0.01704738289117813, -0.010259998962283134, 0.0006525246426463127, 0.002985922619700432, 0.003694351064041257, 0.012048921547830105, -0.02131674438714981, 0.010695954784750938, -0.005663669668138027, 0.001622620620764792, -0.010222416371107101, -0.01649116352200508, 0.010943998582661152, 0.017753932625055313, 0.006013186182826757, -0.0004444120277184993, 0.002711571054533124, 0.017753932625055313, -0.007884790189564228, 0.015559119172394276, 0.014717272482812405, 0.0054795159958302975, 0.03162935748696327, 0.008598855696618557, 0.007031669374555349, 0.00660322979092598, -0.011537800543010235, 0.010184833779931068, 0.010605757124722004, 0.00793740525841713, -0.027239732444286346, -0.009899207390844822, 0.016145404428243637, 0.00880180113017559, -0.007490174844861031, -0.01694215089082718], "0eed630c-d594-4360-8a84-1ea74e62f0f5": [-0.027162393555045128, 0.005147912539541721, 0.004235309083014727, 0.011366060003638268, 0.0035342636983841658, -0.0154810706153512, 0.017820654436945915, 0.06272073835134506, -0.03131059184670448, 0.031111476942896843, 0.00304270233027637, 0.016725530847907066, -0.0026175123639404774, -0.003683598944917321, -0.0001961319358088076, 0.011200131848454475, -0.01504136249423027, -0.0035301155876368284, 0.0010344566544517875, -0.03793111443519592, 0.050707560032606125, -0.0017152794171124697, -0.06049730256199837, 0.0033517431002110243, -0.007329863961786032, -0.005666437093168497, -0.016576195135712624, 0.006666152272373438, -0.010362195782363415, -0.006288666743785143, -0.0027066986076533794, 0.0025635857600718737, 0.015422996133565903, 0.031493112444877625, 0.030381394550204277, -0.014958398416638374, 0.001015271176584065, 0.02095669135451317, -0.014585060067474842, -0.02112261950969696, -0.02452414110302925, 0.007051934953778982, -0.018899185582995415, 0.0117476936429739, -0.036636874079704285, 0.011067389510571957, -0.005226728040724993, -0.01269348245114088, -0.008408395573496819, -0.0009188256226480007, 0.006131035275757313, -0.03905942291021347, 0.004720648285001516, -0.03650413453578949, 0.027046244591474533, -0.02477303147315979, 0.008935215882956982, 0.059700850397348404, -0.021471066400408745, -0.008711213245987892, -0.017555169761180878, -0.02263256162405014, -0.019148077815771103, -0.013639271259307861, 0.008358616381883621, 0.0005164504982531071, 0.02153743803501129, 0.03889349475502968, -0.015364921651780605, 0.021670181304216385, 0.017455613240599632, 0.016849976032972336, -0.06109464541077614, -0.011772583238780499, 0.008246615529060364, 0.011034203693270683, 0.017571762204170227, 0.00044126444845460355, 0.014468911103904247, 0.004115011543035507, 0.012477776035666466, -0.029833832755684853, 0.021454473957419395, -0.009856116026639938, 0.06816317141056061, -0.011830657720565796, -0.02921989932656288, -0.06968970596790314, -0.015547442249953747, -0.0029244788456708193, 0.010826794430613518, 0.009101144038140774, 0.009657002054154873, -0.00549221271649003, -0.006035626400262117, 0.0021549882367253304, 0.014385947026312351, -0.0034077437594532967, 0.0034616703633219004, -0.03676961734890938, -0.010818497277796268, 0.031111476942896843, -0.02923649176955223, -0.0037478958256542683, 0.007885722443461418, -0.02452414110302925, 0.021205583587288857, -0.007466754410415888, -0.0011407542042434216, 0.030663471668958664, -0.00398019514977932, -0.01964586041867733, 0.017439020797610283, 0.017173536121845245, -0.013796903192996979, -0.03686917573213577, 0.010826794430613518, 0.012195698916912079, -0.02608386240899563, -0.04546424001455307, 0.01386327389627695, 0.00039096755790524185, 0.0014912767801433802, -0.008171947672963142, -0.05402611568570137, 0.008902030996978283, 0.003563301172107458, 0.020575055852532387, 0.035541750490665436, 0.033417873084545135, -0.013780309818685055, -0.004517386667430401, 0.01901533454656601, 0.046858031302690506, 0.02523762919008732, 0.02198544330894947, 0.007080972194671631, 0.039590392261743546, -0.027693362906575203, 0.01694953255355358, -0.06909237056970596, -0.047289445996284485, -0.006591484881937504, 0.016377082094550133, -0.004816056694835424, 0.008429136127233505, 0.0030115910340100527, 0.029767461121082306, 0.028738709166646004, 0.033849287778139114, -0.04891553893685341, -0.03650413453578949, -0.007168084383010864, 0.00234580528922379, 0.044335927814245224, -0.033218760043382645, -0.009374924935400486, -0.010345603339374065, -0.017256498336791992, 0.02306397445499897, 0.029336048290133476, -0.03258823603391647, 0.004957095254212618, 0.033434465527534485, 0.029949981719255447, 0.02543674409389496, 0.04201293736696243, 0.021919071674346924, -0.03356720879673958, 0.034280698746442795, 0.015929076820611954, -0.006342593114823103, -0.0006548966048285365, 0.018235472962260246, -0.011706211604177952, -0.006263777147978544, 0.010254343040287495, 0.009009883739054203, 0.019728824496269226, -0.004171011969447136, -0.04403726011514664, 0.012635407969355583, 0.01687486469745636, -0.00048248714301735163, 0.02538696490228176, 0.025254223495721817, 0.007848388515412807, 0.01986156776547432, 0.01590418629348278, -0.014759284444153309, -0.008354468271136284, -0.03243890032172203, -0.003426410723477602, -0.002461954951286316, 0.009217293933033943, 0.005152060650289059, -0.004554720129817724, 0.014253204688429832, -0.006404816173017025, 0.005695474334061146, 0.0014767581596970558, -0.018285252153873444, -0.007039490155875683, 0.033650174736976624, -0.012544147670269012, 0.013174673542380333, -0.01090975757688284, -0.025337187573313713, 0.022317299619317055, -0.04353947564959526, 0.03590679168701172, -0.033816102892160416, 0.018102731555700302, -0.025370372459292412, -0.009159218519926071, -0.008619952946901321, -0.02430843375623226, -0.013780309818685055, -0.03670324757695198, -0.03736695647239685, -0.015082843601703644, 0.019148077815771103, 0.00592777319252491, -0.059700850397348404, -0.05313010513782501, -0.003654561471194029, -0.03902623802423477, 0.026000898331403732, -0.015895890071988106, -0.012859410606324673, 0.00836691353470087, 0.003009516978636384, -0.004799463786184788, -0.017156941816210747, -0.010801904834806919, 0.022267520427703857, 0.05784245952963829, 0.0017401686636731029, 0.0006025256006978452, 0.011606655083596706, 0.020973283797502518, 0.02921989932656288, 0.007159787695854902, 0.006703486200422049, 0.05276506394147873, 0.02948538400232792, 0.010395381599664688, 0.027212172746658325, 0.013854977674782276, -0.0070146010257303715, -0.0082756532356143, 0.002281508408486843, 0.004351458512246609, -0.015315143391489983, -0.0288050789386034, -0.0031982597429305315, 0.013083413243293762, -0.01753857731819153, 0.022798489779233932, -0.028108183294534683, -0.017173536121845245, 0.035342637449502945, -0.022350484505295753, 0.006006589159369469, 0.05080711469054222, -0.05313010513782501, 0.010013747029006481, -0.0028560336213558912, 0.013639271259307861, 0.03793111443519592, 0.004289235454052687, 0.011963400058448315, -0.010536420159041882, -0.00012963115295860916, -0.02668120339512825, -0.01587100140750408, -0.007288381922990084, 0.002397657837718725, -0.017621541395783424, -0.032737571746110916, -0.044966455549001694, -0.01856732927262783, 0.02732832171022892, 0.036271832883358, -0.016476638615131378, 0.016908051446080208, -0.011664729565382004, -0.03162585198879242, -0.028124775737524033, -0.01727309264242649, 0.0006948229856789112, 0.037267401814460754, 0.019081706181168556, 0.027842698618769646, 0.02092350460588932, 0.002177803311496973, 0.0235285721719265, -0.02176973782479763, -0.022367076948285103, 0.048981908708810806, -0.024275248870253563, -0.013597789220511913, -0.0074833473190665245, 0.0021083210594952106, 0.01838480867445469, 0.00198387517593801, 0.05611680820584297, 0.01291748508810997, 0.007653423119336367, 0.041548341512680054, 0.025138072669506073, -0.05873847007751465, -0.01592078059911728, -0.03507715463638306, -0.001628167345188558, 0.030032945796847343, 0.0320240817964077, -0.008001872338354588, -0.03889349475502968, -0.0037458217702805996, 0.008536988869309425, 0.007699053268879652, -0.07294189184904099, 0.03799748420715332, 0.01526536513119936, -0.03494441136717796, -0.01368075329810381, -0.011598358862102032, -0.004575461149215698, -0.026996465399861336, -0.009192404337227345, -0.02520444430410862, 0.007027045823633671, 0.001367867924273014, -0.039391279220581055, -0.06102827191352844, -0.043008506298065186, -0.02475643903017044, 0.00033107795752584934, -0.05097304284572601, -0.022815082222223282, -0.02693009376525879, 0.005429989658296108, -0.035973165184259415, -0.007334012072533369, 0.014634838327765465, -0.006321852095425129, 0.02646549604833126, 0.002408028347417712, -0.012627111747860909, 0.0009250479051843286, -0.012768150307238102, 0.011714507825672626, -7.693609222769737e-05, 0.007168084383010864, -0.041083741933107376, -0.03238912299275398, 0.019529711455106735, -0.03232274949550629, 0.0342143289744854, 0.00983122643083334, -0.03520989418029785, -0.01709057204425335, -0.005064948461949825, 0.009018179960548878, -0.017986582592129707, 0.023877020925283432, -0.018268659710884094, -0.016667455434799194, 0.004724796395748854, 0.0009758633095771074, 0.025685634464025497, 0.017887026071548462, 0.008424988016486168, 0.009972264990210533, -0.0491146519780159, 0.04938013479113579, -0.01100931502878666, 0.007309122942388058, 0.024889182299375534, 0.0019413561094552279, -0.01680019684135914, -0.01576314866542816, -0.001344015821814537, 0.028025219216942787, 0.007085120305418968, -0.006263777147978544, 0.00929196085780859, -0.02649868279695511, -0.01919785514473915, -0.05512123927474022, 0.045132383704185486, -0.038561638444662094, -0.022167963907122612, 0.01303363498300314, -0.03998861834406853, -0.002260767389088869, -0.0057867346331477165, 0.015140919014811516, -0.01752198301255703, 0.014394243247807026, 0.0038702676538378, 0.0028290702030062675, -0.00048274642904289067, 0.012461183592677116, -0.02714580111205578, -0.0034824113827198744, -0.02176973782479763, 0.0331689827144146, 0.029618125408887863, -0.0170573852956295, -0.023744279518723488, 0.02094009891152382, 0.008408395573496819, 0.042776208370923996, -0.02047549933195114, -0.01559722051024437, -0.001138680032454431, -0.04679166153073311, -0.006226443685591221, 0.024490954354405403, 0.017040792852640152, 0.007155639585107565, 0.009731669910252094, 0.003895157016813755, 0.014543578028678894, 0.027195578441023827, 0.019380375742912292, -0.018716664984822273, -0.008375209756195545, -0.00972337368875742, 0.058838024735450745, 0.015630405396223068, 0.025337187573313713, -0.004596202168613672, -0.03783155605196953, -0.007902314886450768, -0.004175160080194473, 0.022167963907122612, -0.0061932578682899475, 0.01204636413604021, 0.031260810792446136, 0.0044095334596931934, -0.0022441744804382324, -0.02391020767390728, 0.0015379439573734999, -0.06043093279004097, -0.00048404274275526404, 0.03141014650464058, -0.025304000824689865, -0.02689690887928009, 0.022981010377407074, -0.019961124286055565, -0.024922367185354233, -0.015315143391489983, -0.0015037213452160358, 0.019264226779341698, -0.0019185410346835852, -0.012071252800524235, -0.0576765313744545, -0.021670181304216385, -0.024607103317975998, 0.008283949457108974, 0.0245407335460186, 0.023130346089601517, -0.004392940551042557, -0.023777464404702187, -0.022582784295082092, -0.015190697275102139, -0.007114157546311617, 0.02011045813560486, 0.0070892684161663055, 0.0641477182507515, 0.01420342642813921, -0.02751084230840206, 0.010270935483276844, -0.008860548958182335, 0.007155639585107565, 0.009441296570003033, 0.01354801096022129, -0.015713369473814964, -0.07533125579357147, 0.0004441163328010589, 0.0012983856722712517, -0.003422262379899621, -0.008619952946901321, -0.02752743475139141, -0.03925853595137596, 0.018716664984822273, 0.028705522418022156, 0.02601749077439308, -0.016393674537539482, -0.010362195782363415, 0.021023061126470566, 0.01676701195538044, -0.0025926230009645224, 0.0025698079261928797, 0.004392940551042557, -0.01860051415860653, -0.008300541900098324, 0.03336809575557709, -0.009598927572369576, 0.00918410811573267, 0.010146489366889, -0.020210014656186104, 0.03477848321199417, -0.012278662994503975, 0.0144025394693017, 0.0013865347718819976, -0.006769857369363308, -0.032355934381484985, 0.002526251832023263, -0.027013057842850685, 0.01204636413604021, -0.023163530975580215, 0.009424703195691109, 0.011755989864468575, -0.007520681247115135, 0.009598927572369576, -0.01526536513119936, -0.007093416526913643, -0.01838480867445469, -0.013116599060595036, 0.008910327218472958, -0.004679166246205568, -0.034081585705280304, -0.0025822524912655354, -0.035309452563524246, 0.01386327389627695, -0.057543788105249405, 0.00886884517967701, 0.013116599060595036, -0.02671438828110695, 0.0031609260477125645, 0.009217293933033943, 0.008221725933253765, 0.01035389956086874, 0.01204636413604021, 0.022101594135165215, 0.007939648814499378, -0.04758811369538307, 0.02857278101146221, -0.0029721830505877733, -0.016725530847907066, 0.003227297216653824, 0.01816910319030285, 0.011108871549367905, 0.022981010377407074, 0.0009457889245823026, 0.018185695633292198, -0.0021529141813516617, -0.006479483563452959, -0.011507098563015461, -0.006272073835134506, 0.001521351165138185, -0.02626638300716877, 0.008711213245987892, -7.000082405284047e-05, -0.004334865603595972, -0.007877426221966743, -0.005488064605742693, 0.00283114449121058, -0.006948229856789112, 0.01068575493991375, 0.02176973782479763, -0.012137624435126781, -0.0490482822060585, 0.005442434456199408, -0.02308056689798832, 0.02883826568722725, 0.01924763433635235, -0.006935785058885813, 0.058406613767147064, 0.002800032962113619, -0.014560171402990818, 0.02948538400232792, 0.005164504982531071, -0.028556188568472862, -0.051371268928050995, 0.012477776035666466, 0.04148196801543236, -0.02668120339512825, -0.0019869862589985132, -0.01792021095752716, 0.011531987227499485, -0.023545166477560997, -0.007437717169523239, -0.04284257814288139, 0.013597789220511913, 0.02369450032711029, 0.01664256677031517, 0.01548936776816845, 0.004803611896932125, 0.002779291942715645, 0.01354801096022129, 0.006238888017833233, -0.0004721166624221951, -0.00855358224362135, 0.025917934253811836, 0.01624433882534504, -0.0071390471421182156, 0.002551141194999218, 0.017887026071548462, -0.024009764194488525, -0.02520444430410862, 0.006446298211812973, 0.011274799704551697, -0.0006911933305673301, -0.0004850797704420984, -0.002430843422189355, 0.006562447641044855, -0.01377201359719038, 0.04008817672729492, -0.018003175035119057, 0.0010754200629889965, 0.008653138764202595, -0.01046175230294466, 0.04679166153073311, 0.027875883504748344, -0.012187402695417404, 0.008769288659095764, 0.0016012040432542562, 0.04543105140328407, -0.03474529832601547, 0.011880435980856419, 0.004229086916893721, -0.01111716777086258, -0.02432502619922161, -0.007541421800851822, 0.006765709258615971, -0.003565375227481127, 0.01399601623415947, -0.01538981031626463, -0.05097304284572601, -0.020774170756340027, -0.020375942811369896, 0.01796998828649521, 0.006844524759799242, -0.020226608961820602, -0.0007508236449211836, -0.003136036917567253, 0.0034139661584049463, -0.0031401850283145905, 0.02117239683866501, -0.01003863662481308, -0.01033730711787939, 0.008391802199184895, -1.0532531632634345e-05, 0.0384620800614357, 0.004886575974524021, -0.012228884734213352, 0.02344560995697975, -0.021603809669613838, 0.017571762204170227, -0.005653992295265198, -0.037665627896785736, -0.023594943806529045, 0.042809393256902695, -0.005811623763293028, 0.025752006098628044, 0.011042499914765358, -0.017820654436945915, 0.013705642893910408, 0.019762009382247925, 0.01056130975484848, -0.004065232817083597, -0.00597755191847682, 0.018932370468974113, 0.014394243247807026, 0.023611536249518394, 0.005890439730137587, -0.022682340815663338, 0.026797352358698845, 0.019314004108309746, -0.008221725933253765, 0.00940811075270176, -0.010204564779996872, -0.011606655083596706, 0.01811932399868965, -0.022516412660479546, -0.03011590987443924, -0.034247513860464096, -0.042809393256902695, 0.013315712101757526, 0.004550572019070387, -0.016808493062853813, -0.02201863005757332, -0.015879297628998756, -0.015953965485095978, -0.006122738588601351, -0.006840376649051905, 0.02006068080663681, -0.010959535837173462, 0.022466635331511497, -0.02284826897084713, 0.010221157222986221, 0.005956810899078846, -0.027676770463585854, -0.011050797067582607, -0.004038269631564617, -0.04075188562273979, -0.010005450807511806, 0.004206271842122078, -0.03250527009367943, -0.007172232493758202, 0.010544716380536556, -0.029750868678092957, -0.01610330119729042, 0.0005615621339529753, -0.0005034874193370342, 0.008835659362375736, 0.04655936360359192, 0.00838350597769022, 0.00866143498569727, -0.001624019118025899, 0.006819635629653931, -0.011648137122392654, 0.009905894286930561, 0.007848388515412807, 0.021869294345378876, 0.0075040883384644985, 0.03484485298395157, -0.052400022745132446, 0.0003059295122511685, -0.010627680458128452, -0.025519708171486855, -0.00486168684437871, -0.019927937537431717, 0.004641832318156958, -0.008109725080430508, 0.022981010377407074, 0.0066910418681800365, -0.03438025712966919, 0.009109440259635448, -0.008628249168395996, -0.03716784343123436, -0.00571621535345912, -0.0049114651046693325, 0.03710147365927696, -0.014435725286602974, 0.035973165184259415, 0.019529711455106735, -0.00036815248313359916, -0.014211722649633884, 0.02286486141383648, 0.03547538071870804, 0.015953965485095978, -0.007508236449211836, -0.013556307181715965, -0.02158721722662449, 0.010859979316592216, -0.019164670258760452, 0.03031502291560173, 0.01154028344899416, 0.004085973836481571, 0.022549599409103394, 0.011166946031153202, 0.019081706181168556, 0.008151207119226456, 0.025685634464025497, -0.0070768240839242935, 0.0309787355363369, -0.0016457971651107073, 0.006798894610255957, 0.01619456149637699, -0.042809393256902695, 0.015505960211157799, 0.004853390622884035, 0.026780759915709496, 0.027643583714962006, 0.03713465854525566, 0.02857278101146221, 0.01610330119729042, 0.01528195757418871, -0.02117239683866501, -0.012992152944207191, -0.0002138913987437263, -0.002472325460985303, -0.006089553236961365, -0.006525113712996244, 0.01100101787596941, 0.0052848029881715775, 0.02540355734527111, 0.02344560995697975, 0.013315712101757526, -0.012793038971722126, 0.004957095254212618, -0.022084999829530716, -0.024623697623610497, 0.03574086353182793, 0.02902078628540039, -0.0044219777919352055, -0.0010282342555001378, 0.000806824304163456, -0.02666460908949375, -0.006496076472103596, 0.03029843047261238, -0.008503803983330727, -0.002735735848546028, 0.01528195757418871, 0.011175242252647877, -0.005081541370600462, 0.02432502619922161, 0.00371263618580997, 0.018202288076281548, -0.024607103317975998, -0.02069120667874813, 3.334761277073994e-05, 0.000605118228122592, 0.008902030996978283, 0.011473912745714188, -0.006699338089674711, -0.025884749367833138, 0.04738900065422058, -0.008794177323579788, -0.021437881514430046, 0.005678881425410509, 0.0224168561398983, 0.01626093126833439, -0.014842248521745205, -0.022698933258652687, 0.009084551595151424, 0.025917934253811836, 0.03676961734890938, -0.011921918019652367, 0.01840140111744404, 0.02542015165090561, 0.0031816670671105385, -0.023611536249518394, 0.010801904834806919, 0.00840009842067957, -0.005517101846635342, -0.024441177025437355, 0.013299119658768177, -0.003258408745750785, 0.0288548581302166, 0.005483916494995356, -0.014070684090256691, 0.003094554878771305, 0.019961124286055565, -0.01624433882534504, -0.03686917573213577, -0.024009764194488525, 0.0012828299077227712, 0.0032190007623285055, 0.01838480867445469, 0.019894752651453018, -0.019927937537431717, 0.006433853413909674, 0.02473984658718109, -0.0003842267324216664, 0.012129328213632107, -0.018252067267894745, 0.00027092910022474825, -0.043041691184043884, 0.010901461355388165, 0.007412828039377928, 0.009739966131746769, -0.0245739184319973, 0.02629956789314747, 0.02734491415321827, 0.008084835484623909, -0.02308056689798832, -0.0044717565178871155, -0.01772109791636467, -0.015298550017178059, 0.004351458512246609, -0.009192404337227345, 0.01471780240535736, -0.014775877818465233, -0.019347190856933594, -0.029203306883573532, 0.010221157222986221, 0.004496645648032427, 0.010013747029006481, -0.020127050578594208, -0.010196267627179623, -0.0018646145472303033, -0.03374972939491272, -0.004587905947118998, 0.0015016472898423672, 0.023412423208355904, -0.020292978733778, 0.025486521422863007, -0.035574935376644135, 0.020176829770207405, 0.029369235038757324, -0.018202288076281548, -0.007943796925246716, 0.016941236332058907, -0.0025698079261928797, 0.01626093126833439, -0.028672337532043457, -0.04191338270902634, -0.011390948668122292, 0.008205133490264416, 0.017770875245332718, -0.007446013391017914, -0.024490954354405403, -0.008072391152381897, -0.007869130000472069, -0.050906673073768616, -0.0469244047999382, 0.019347190856933594, 0.034280698746442795, -0.035110339522361755, -0.019114891067147255, -0.011258206330239773, 0.02945219911634922, 0.03160925954580307, 0.02950197644531727, 0.024059541523456573, 0.008570174686610699, 0.03253845497965813, 0.018069546669721603, 0.018899185582995415, 0.001244459068402648, -0.03477848321199417, 0.02266574837267399, 0.00019418746524024755, 0.002868478186428547, -0.0028767746407538652, 0.009109440259635448, 0.0018179472535848618, -0.014336168766021729, 0.004894872196018696, -0.01559722051024437, 0.022284114733338356, 0.006558299530297518, 0.025884749367833138, -0.004162715747952461, 0.0017536502564325929, -0.0049322061240673065, 0.0040092323906719685, 0.04423637315630913, -0.016401970759034157, -0.025868156924843788, -0.00045630167005583644, -0.028058404102921486, -0.003781081410124898, -0.0298836100846529, -0.028473224490880966, 0.02712920866906643, -0.041083741933107376, 0.008035057224333286, 0.015613812953233719, -0.01271837204694748, 0.03673643246293068, -0.010221157222986221, -0.011150353588163853, 0.014037498272955418, 0.030912363901734352, -0.009806337766349316, 0.00629281485453248, -0.024723254144191742, 0.02779291942715645, 0.009524259716272354, -0.015804629772901535, -0.013672457076609135, -0.035774052143096924, 0.025088295340538025, -0.019098298624157906, -0.014568467624485493, 0.015729961916804314, 0.01535662543028593, -0.009988858364522457, -0.028124775737524033, 0.006595632992684841, -0.02115580439567566, -0.015190697275102139, -0.016849976032972336, -0.0018034286331385374, 0.0016675752121955156, 0.016484934836626053, 0.007512384559959173, -0.027245357632637024, -0.029933389276266098, 0.0040299734100699425, -0.03484485298395157, -0.008578470908105373, 0.007831796072423458, -0.038760751485824585, -0.011573469266295433, 0.015290253795683384, -0.017455613240599632, 0.0026921797543764114, -0.003490707604214549, 0.03242230787873268, 0.006429705303162336, 0.011673025786876678, -0.00735890120267868, -0.02860596589744091, 0.017156941816210747, 0.003998861648142338, 0.004343162290751934, -0.02090691216289997, 0.020359350368380547, -0.020326165482401848, 0.0024163248017430305, -0.033003054559230804, 0.035774052143096924, 0.00015516849816776812, -0.060729604214429855, 0.013448454439640045, 0.030431171879172325, 0.029369235038757324, 0.024889182299375534, 0.015663592144846916, -0.01206295657902956, 0.05153719708323479, -0.02518785186111927, 0.003984343260526657, 0.004529830999672413, 0.00403412152081728, -0.008561878465116024, 0.032555051147937775, 0.00650437269359827, -0.03587360680103302, 0.010105007328093052, 0.04566335305571556, 0.0061517758294939995, -0.02181951515376568, -0.008943513035774231, -0.015862705186009407, 0.002731587737798691, 0.01773769035935402, 0.005446582566946745, -0.006371630355715752, 0.010793608613312244, 0.0040299734100699425, -0.028489816933870316, -0.004372199531644583, -0.004115011543035507, -0.004683314356952906, -0.0066703008487820625, -0.0213715098798275, -0.01964586041867733, -0.06381586194038391, -0.01005522906780243, -0.021686773747205734, 0.030182281509041786, -0.009806337766349316, -0.0235285721719265, 0.02863915078341961, -0.002472325460985303, 0.0025428447406738997, 0.00688600679859519, -0.009988858364522457, -0.0031982597429305315, 0.01795339584350586, 0.0033455209340900183, -0.00017668725922703743, 0.002930701244622469, -0.027394693344831467, -0.01368075329810381, -0.010204564779996872, 0.006769857369363308, -0.02200203575193882, 0.0090679582208395, 0.026946688070893288, 0.011913621798157692, -0.020292978733778, 0.0224168561398983, -0.011482208967208862, -0.007039490155875683, -0.020757578313350677, -0.025735413655638695, 0.002034690696746111, -0.01698271743953228, 0.005782586522400379, -0.017870431765913963, 0.029186714440584183, -0.0019786900375038385, -0.006541706621646881, -0.021653588861227036, 0.016883160918951035, 0.016451748088002205, 0.032355934381484985, -0.004488348960876465, -0.03929172083735466, 0.010403677821159363, 0.014161944389343262, -0.025121480226516724, 0.0012268292484804988, -0.025702228769659996, 0.012262070551514626, 0.017206721007823944, 0.004496645648032427, -0.009325146675109863, -0.003606857266277075, -0.029800646007061005, 0.00847476627677679, -0.00040367140900343657, 0.020823948085308075, 0.0031194440089166164, -0.02666460908949375, 0.0014383873203769326, 0.017853839322924614, 0.009507667273283005, -0.0019185410346835852, 0.006819635629653931, -0.02522103674709797, 0.006836228538304567, 0.03929172083735466, 0.014394243247807026, 0.027875883504748344, -0.0026009194552898407, 0.019927937537431717, 0.012535851448774338, 0.0015638702316209674, -0.002889219205826521, 0.02945219911634922, -0.0040984186343848705, 0.010105007328093052, 0.01793680340051651, 0.0037458217702805996, 0.008047502487897873, -0.033633582293987274, 0.008333727717399597, 0.007923056371510029, 0.002366546308621764, -0.008984994143247604, -0.018932370468974113, 0.010486641898751259, 0.010694052092730999, -0.026515275239944458, 0.006653707940131426, 0.02135491743683815, 0.022134779021143913, 0.015381514094769955, 0.015306846238672733, -0.002192322164773941, 0.03799748420715332, -0.021471066400408745, 0.009872708469629288, -0.030016353353857994, -0.022317299619317055, 0.026548460125923157, 0.001620907918550074, 0.0015410551568493247, -0.024009764194488525, -0.0077405353076756, -0.005342877469956875, -0.009034773334860802, 0.021703366190195084, -0.026730980724096298, -0.027892475947737694, -0.034678924828767776, 0.005189394578337669, -0.028025219216942787, -0.0009457889245823026, 0.0016468341927975416, -0.010602791793644428, 0.041150111705064774, -0.022317299619317055, -0.005782586522400379, 0.006715930998325348, -0.0192144475877285, 0.02478962391614914, 0.022051814943552017, -0.05097304284572601, 0.020176829770207405, -0.017239905893802643, -0.030696656554937363, 0.010727236978709698, -0.003795600263401866, 0.017804061993956566, -0.041515156626701355, -0.005035911221057177, 0.008022612892091274, 0.01173110119998455, 0.02221774309873581, -0.0005708956159651279, 0.025569485500454903, -0.015821222215890884, 0.0016385377384722233, -0.030597100034356117, 0.013705642893910408, 0.023229902610182762, -0.02580178529024124, -0.01796998828649521, -0.005483916494995356, -0.006367482244968414, -0.003552930662408471, -0.003254260402172804, -0.01078531239181757, -0.016111597418785095, 5.7296969316666946e-05, -0.006006589159369469, 0.0470239594578743, -0.0019185410346835852, -0.028722114861011505, -0.02153743803501129, -0.004807760007679462, 0.004807760007679462, 0.0017495020292699337, -0.006064664106816053, -0.011706211604177952, 0.008520396426320076, 0.03152629733085632, -0.012801336124539375, 0.006251332815736532, -0.004426125902682543, -0.002762699266895652, -0.007338160183280706, -0.019098298624157906, -0.0009317887597717345, -0.0037478958256542683, -0.013689049519598484, -0.016161374747753143, -0.0035695235710591078, 0.005342877469956875, -0.015497663989663124, 0.011606655083596706, -0.024640290066599846, -0.0033662617206573486, 0.0016229820903390646, -0.0234953872859478, -0.006525113712996244, 0.008760991506278515, 0.008429136127233505, 0.01377201359719038, 0.021238768473267555, 0.0033247799146920443, -0.004154419060796499, -0.017256498336791992, 0.01946333982050419, 0.013431861996650696, 0.015605516731739044, -0.010187971405684948, -0.0004887094255536795, 0.003880638163536787, 0.00384330446831882, 0.020226608961820602, 0.02072439156472683, -0.034512996673583984, -0.024623697623610497, -0.016435155645012856, -0.018036359921097755, 0.00927536841481924, 0.011689619161188602, 0.010362195782363415, 0.007255196571350098, -0.031293999403715134, 0.01592078059911728, -0.002410102402791381, 0.0038993051275610924, 0.015273661352694035, -0.022715525701642036, 0.011805768124759197, 0.010204564779996872, -0.006288666743785143, -0.018019767478108406, -0.02266574837267399, 0.005442434456199408, 0.006048071198165417, -0.014493799768388271, 0.038793936371803284, -0.011656433343887329, 0.005172801669687033, 0.010403677821159363, 0.023346051573753357, 0.00948277860879898, 0.023196717724204063, -0.06335126608610153, -0.01056130975484848, 0.015978854149580002, -0.006097849458456039, -0.004724796395748854, 0.0021186915691941977, -0.02324649505317211, -0.011399244889616966, 0.0022047667298465967, 0.010071822442114353, -0.009540853090584278, 0.03783155605196953, -0.008147059008479118, -0.0065997811034321785, -0.007773721124976873, -0.009665299206972122, 0.00044437558972276747, 0.03311920538544655, 0.010046932846307755, -0.016833383589982986, -0.01023774966597557, 0.0018863925943151116, 0.020973283797502518, 0.010743830353021622, -0.017356056720018387, -0.013307415880262852, 0.0001459646737203002, -0.005031762644648552, -0.020458906888961792, 0.012203995138406754, -0.0029327752999961376, 0.004171011969447136, -0.022367076948285103, -0.04718988761305809, 0.02415909804403782, 0.009416406974196434, -0.015746556222438812, 0.00949937105178833, -0.01967904530465603, 0.0008451951434835792, 0.017339462414383888, 0.00448005273938179, -0.0019942456856369972, -0.007711498066782951, 0.0025241777766495943, -0.00951596349477768, 0.008250763639807701, 0.026764167472720146, -0.0028228480368852615, 0.005052503664046526, -0.04755492880940437, 0.0021072840318083763, 0.0006097849691286683, -0.011921918019652367, -0.013174673542380333, -0.010096711106598377, 0.004434422589838505, -0.002461954951286316, 0.01878303661942482, 0.0027502544689923525, -0.01366416085511446, 0.00016346487973351032, 0.012726668268442154, 0.004513238091021776, 0.001589796505868435, -0.008586768060922623, -0.004197975154966116, 0.022914640605449677, -0.00561251025646925, -0.01630241423845291, 0.014369354583323002, 0.016219450160861015, 0.012676890008151531, 0.018268659710884094, 0.03374972939491272, -0.0061600725166499615, -0.02523762919008732, -0.009316850453615189, -0.00034922632039524615, -0.0008773436420597136, 0.0013523121597245336, 0.004820204805582762, -0.005898735951632261, 0.004256050102412701, 0.003183741122484207, -0.04247753694653511, -0.02608386240899563, -0.026830537244677544, 0.02623319812119007, 0.014352761209011078, 0.01258562970906496, -0.01089316513389349, -0.020624835044145584, 0.0074626062996685505, 0.004038269631564617, 0.01815250888466835, 0.00737134600058198, -0.02754402719438076, 0.006267925724387169, -0.038793936371803284, 0.015713369473814964, 0.01183895394206047, -0.018700072541832924, -0.025934526696801186, 0.020757578313350677, 0.005853105802088976, 0.00992248672991991, -0.01964586041867733, 0.0117476936429739, 0.013697346672415733, -0.006894303485751152, -0.013589492999017239, 0.0013720161514356732, 0.031061697751283646, 0.04715670272707939, -0.004969540052115917, -0.03283712640404701, 0.0030012205243110657, -0.007989427074790001, -0.01375542115420103, 0.010519827716052532, 0.012859410606324673, -0.001579425996169448, 0.007636830676347017, -0.020774170756340027, 0.005541990976780653, -0.0031277404632419348, -0.02560267224907875, 0.040254101157188416, -0.021902479231357574, 0.021703366190195084, -0.038793936371803284, -0.009150922298431396, 0.008101428858935833, 0.006301111076027155, -0.01109227817505598, 0.02688031643629074, -0.011996585875749588, 0.005376063287258148, 0.01537321787327528, -0.030215466395020485, -0.0038412304129451513, -0.015945669263601303, 0.04416999965906143, 0.00920070055872202, -0.018666885793209076, -0.007387938909232616, -0.022549599409103394, 0.0021943962201476097, -0.0023022491950541735, 0.029385827481746674, -0.003801822429522872, -0.0021736552007496357, -0.014784174039959908, -0.001223718049004674, -0.06703486293554306, -0.007972834631800652, 0.0020388388074934483, -0.021719958633184433, -0.009233886376023293, 0.005886291619390249, -0.02052527852356434, -0.012237180955708027, -0.010403677821159363, -0.010279231704771519, 0.00023450276057701558, 0.03673643246293068, 0.007163936272263527, -0.012925781309604645, -0.021603809669613838, 0.0062015545554459095, -0.04954606294631958, -0.016401970759034157, 0.009233886376023293, -0.004438570700585842, 0.011025907471776009, 0.025337187573313713, -0.014925212599337101, 0.03753288462758064, 0.01599544659256935, -0.009739966131746769, -0.0053345812484622, -0.024275248870253563, -0.0288548581302166, 0.0022732119541615248, 0.010544716380536556, -0.007396235130727291, -0.013962830416858196, 0.0008265282376669347, -0.0032335196156054735, 0.03366676717996597, -0.0048575387336313725, -0.0122703667730093, -0.02498873881995678, 0.018832813948392868, 0.0027129207737743855, -0.014220018871128559, -0.0014985360903665423, 0.030248651280999184, -0.023346051573753357, -0.0011511245975270867, 0.00237899087369442, 0.017356056720018387, -0.027676770463585854, 0.03494441136717796, 0.00815950334072113, 0.01592078059911728, 0.03968994691967964, -0.02991679683327675, 0.0070892684161663055, -0.010735533200204372, -0.004106714855879545, 0.0235285721719265, -0.02011045813560486, -0.011424134485423565, -0.004683314356952906, 0.019961124286055565, 0.0018884666496887803, -0.015016472898423672, 0.006039774511009455, -0.02117239683866501, 0.011930214241147041, 0.02347879484295845, 0.012967263348400593, -0.020458906888961792, 0.0044842008501291275, -0.026764167472720146, 0.025486521422863007, 0.008885437622666359, -0.0028601817321032286, 0.005114726722240448, -0.0011666803620755672, 0.034878041595220566, 0.003210704308003187, -0.008968401700258255, 0.01098442543298006, 0.012768150307238102, 0.028788486495614052, 0.012129328213632107, 0.003125666407868266, 0.0037105621304363012, -0.01111716777086258, -0.02303078956902027, 0.027925660833716393, 0.019396968185901642, 0.0026901056990027428, 0.009126033633947372, 0.03676961734890938, -0.02006068080663681, -0.02344560995697975, -0.021039655432105064, 0.017588354647159576, -0.018268659710884094, 0.020857134833931923, -0.004733092617243528, -0.013390379957854748, 0.017190128564834595, 0.019596083089709282, -0.004144048783928156, -0.009009883739054203, -0.002399731893092394, -0.011125463992357254, 0.03457937017083168, -0.004919761326164007, 0.030215466395020485, 0.002895441371947527, 0.025320593267679214, 0.00042804208351299167, -0.006541706621646881, 0.014112166129052639, -0.013705642893910408, 0.015215585939586163, 0.006209850776940584, 0.006757412571460009, -0.009839522652328014, -0.024407990276813507, -0.007080972194671631, 0.0053387293592095375, -0.014883730560541153, -0.009358332492411137, 0.025884749367833138, -0.003781081410124898, -0.0048285010270774364, -0.023329459130764008, -0.02074098400771618, 0.019479932263493538, -0.002646549604833126, 0.004832649603486061, 0.0041108629666268826, 0.008711213245987892, -0.002814551582559943, -0.007122454233467579, 0.007786165457218885, 0.015638701617717743, -0.020624835044145584, -0.010826794430613518, 0.0018573551205918193, -0.0014570541679859161, -0.0038184153381735086, -0.002499288646504283, -0.0018656515749171376, -0.01033730711787939, 0.004981984384357929, -0.0044427188113331795, -0.0021757292561233044, -0.01526536513119936, -0.004326569382101297, 0.01728968508541584, 0.004380495753139257, 0.0066495598293840885, -0.0012693483149632812, 0.007209566421806812, -0.004459311719983816, -0.0057535492815077305, -0.0029535163193941116, -0.024076135829091072, -0.013531418517231941, 0.0007005267543718219, 0.04811908304691315, 0.016576195135712624, 0.016825087368488312, 0.0009794930228963494, -0.0029224047902971506, 0.006305259186774492, -0.016086706891655922, 0.013473344035446644, 0.01967904530465603, -0.015555738471448421, -0.009615520015358925, -0.006827932316809893, -0.018500957638025284, 0.012452887371182442, -0.03074643574655056, 0.020658019930124283, -0.003924194257706404, 0.020143644884228706, 0.007433569058775902, 0.03240571543574333, -0.01528195757418871, 0.0016675752121955156, -0.017654726281762123, -0.002777217887341976, 0.012187402695417404, 0.027245357632637024, -0.007363049779087305, 0.030232058838009834, 0.005048355553299189, 0.010146489366889, -0.012519258074462414, -0.016070114448666573, -0.018434587866067886, 0.009690187871456146, -0.008412543684244156, 0.016451748088002205, -0.012635407969355583, 0.02842344529926777, -0.0015037213452160358, 0.008030909113585949, -7.077860936988145e-05, -0.014983287081122398, 0.030845992267131805, 0.014692913740873337, -0.010718940757215023, 0.005417545326054096, 0.011349466629326344, 0.001114827929995954, 0.002868478186428547, -0.007230307441204786, -0.026000898331403732, -0.003411891870200634, -0.006637115031480789, 0.0033662617206573486, 0.008827363140881062, -0.01183895394206047, 0.0017857988132163882, -0.00960722379386425, 0.0002286693488713354, 0.0013274230295792222, 0.004621091298758984, 0.012909188866615295, -0.023362645879387856, -0.017239905893802643, -0.0025864008348435163, -0.017555169761180878, -0.004094270523637533, 0.015016472898423672, 0.011067389510571957, -0.002530400175601244, -0.004683314356952906, -0.008109725080430508, 0.006371630355715752, -0.01944674737751484, -0.015555738471448421, 0.0017297981539741158, -0.007811054587364197, 0.034015215933322906, 0.022815082222223282, -0.0037313031498342752, -0.01667575165629387, -0.010694052092730999, 0.003453373908996582, -0.01747220568358898, 0.009325146675109863, -0.02968449704349041, 0.013423564843833447, -0.013838385231792927, 0.0034243366681039333, -0.028556188568472862, -0.01195510383695364, -0.016401970759034157, -0.010254343040287495, 0.01815250888466835, 0.002609215909615159, -0.015240475535392761, 0.007309122942388058, 0.00034896706347353756, 0.02689690887928009, -0.003175444668158889, 0.001713205361738801, -0.007296678610146046, -0.00897669792175293, 0.018517551943659782, 0.023146938532590866, 0.004025825299322605, 0.015622109174728394, -0.0008249726379290223, -0.0048782797530293465, 0.004235309083014727, -0.00204402394592762, 0.0012714223703369498, -0.006002441048622131, 0.012461183592677116, -0.0006061552558094263, 0.004359755199402571, 0.020425722002983093, -0.008362765423953533, -0.0010168267181143165, -0.008163651451468468, -0.002731587737798691, -0.026813944801688194, -0.00852869264781475, 0.0122703667730093, 0.006944081746041775, -0.010013747029006481, -0.024076135829091072, -0.01003863662481308, -0.0005340803763829172, 0.004293384030461311, 0.01836821623146534, 0.001083716400898993, 0.005865550599992275, -0.008209281601011753, 0.021006468683481216, -0.0010505308164283633, 0.006998008117079735, -0.029750868678092957, 0.015729961916804314, 0.007670016027987003, 0.016435155645012856, 0.011772583238780499, 0.025884749367833138, 0.005666437093168497, -0.006657856050878763, 0.023146938532590866, 0.0012558666057884693, -0.029734276235103607, -0.0025967713445425034, 0.027909068390727043, 0.03376632183790207, -0.028705522418022156, 0.020027494058012962, -0.007985278964042664, -0.010013747029006481, -0.008196837268769741, -0.021670181304216385, 0.030862584710121155, -0.016700640320777893, -0.010171378962695599, 0.025254223495721817, -0.0017795765306800604, -0.009764855727553368, 0.004824352916330099, 0.01195510383695364, 0.005164504982531071, -0.008333727717399597, 0.016078410670161247, 0.00897669792175293, -0.015729961916804314, -0.02542015165090561, 0.025287408381700516, -0.0070685273967683315, -0.01899874210357666, 0.020608242601156235, -0.020857134833931923, -0.0014435725752264261, 0.012942374683916569, -0.01727309264242649, 0.03223978728055954, 0.010934647172689438, 0.01131628081202507, 0.01431127917021513, 0.019596083089709282, 0.00394078716635704, -0.008055798709392548, 0.004133678041398525, 0.00021376177028287202, -0.001966245239600539, -0.006068812217563391, 0.010187971405684948, 0.008487210609018803, -0.007690757047384977, 0.00027818846865557134, -0.014045794494450092, -0.003490707604214549, 0.0021342472173273563, -0.006072960328310728, 0.0053387293592095375, 0.015099436976015568, -0.0037790073547512293, -2.8875339921796694e-05, 0.008263207972049713, 0.025569485500454903, -0.017588354647159576, 0.002800032962113619, -0.017206721007823944, -0.005139615852385759, -0.0031132218427956104, 0.013340601697564125, -0.029153527691960335, -0.00918410811573267, 0.011648137122392654, 2.5067423848668113e-05, -0.0013066820101812482, -0.0066080777905881405, 0.01408727653324604, 0.018235472962260246, 0.018052952364087105, 0.020375942811369896, 0.006998008117079735, 0.00630940729752183, -0.002260767389088869, -0.005259913858026266, 0.011930214241147041, -0.0052557652816176414, 0.0048699830658733845, 0.02153743803501129, 0.017024200409650803, 0.008619952946901321, 0.021056247875094414, -0.009009883739054203, -0.027477655559778214, 7.51212501199916e-05, 0.00298877595923841, 0.024474361911416054, 0.027709955349564552, 0.0075165326707065105, 0.029419012367725372, -0.03560812398791313, -0.011216724291443825, 0.010179675184190273, -0.011805768124759197, -0.0144025394693017, 0.01357290055602789, -0.006276221945881844, 0.006433853413909674, -0.018484365195035934, 0.010212861001491547, -3.232677045161836e-05, -0.002202692674472928, 0.005181097891181707, -0.013539714738726616, 0.015331735834479332, 0.02304738201200962, 0.006815487518906593, -0.014809062704443932, -0.0011573469964787364, -0.013257637619972229, -0.02430843375623226, 0.011556876823306084, 0.014983287081122398, -0.00920070055872202, -0.010063525289297104, 0.035574935376644135, 0.01528195757418871, -0.007902314886450768, 0.02178633026778698, 0.00737134600058198, 0.004749685525894165, 0.008943513035774231, -0.009748262353241444, -0.002963886596262455, -0.005844809580594301, -0.01525706797838211, 0.005608362145721912, -0.019944529980421066, -0.0028124775271862745, 0.0020284682977944613, 0.021520845592021942, 0.02580178529024124, -0.0023126197047531605, 0.013539714738726616, -0.02819114550948143, -0.007375494111329317, -0.012552443891763687, 1.6049956684582867e-05, 0.001402090536430478, -0.01046175230294466, 0.011200131848454475, 0.0018729108851402998, -0.006027330178767443, 0.022981010377407074, 0.010710644535720348, 0.003279149765148759, 0.011341170407831669, -0.014784174039959908, 0.014410835690796375, 0.016401970759034157, 0.011664729565382004, -0.00725104846060276, 0.00020844690152443945, -0.022732120007276535, -0.01047004945576191, 0.0192144475877285, 0.006404816173017025, 0.005425841547548771, 0.0010577902430668473, -0.0016706862952560186, -0.009101144038140774, 0.004517386667430401, -0.006126886699348688, 0.010212861001491547, 0.004397088661789894, 0.017156941816210747, -0.011689619161188602, 0.0036773765459656715, 0.021288545802235603, -0.012071252800524235, 0.02067461423575878, 0.0008368987473659217, 0.010312417522072792, 0.004032047465443611, 0.01790361851453781, -0.005707919131964445, 0.019811788573861122, 0.0033185575157403946, -0.014485503546893597, 0.00013066820974927396, -0.024424582719802856, 0.01163984090089798, -0.007939648814499378, -0.00019366893684491515, -0.014336168766021729, 0.012734964489936829, 0.0015545367496088147, -0.009822930209338665, -0.004285087343305349, -0.011664729565382004, -0.008843955583870411, -0.02266574837267399, 0.01944674737751484, -0.0044842008501291275, -0.0022006183862686157, -0.00538850761950016, 0.025519708171486855, 0.02218455635011196, -0.009142626076936722, 0.006881858687847853, -0.0025324742309749126, 0.011822361499071121, -0.009881004691123962, 0.013506528921425343, 0.011233317665755749, 0.007873278111219406, -0.01901533454656601, 0.011274799704551697, 0.01836821623146534, -0.012884299270808697, -0.01399601623415947, -0.02198544330894947, 0.0017826876137405634, -0.008835659362375736, -0.010544716380536556, 0.0048907240852713585, 0.0007508236449211836, -0.005902884062379599, -0.00972337368875742, -0.022815082222223282, 0.02283167652785778, 0.003395299194380641, -0.004166863858699799, -0.016111597418785095, -9.826041787164286e-05, -0.009283664636313915, -0.0019983937963843346, 0.005832364782691002, 0.0013243118301033974, -0.0027004762087017298, -0.0018884666496887803, 0.01879962906241417, 0.001152161741629243, 0.0016157226637005806, 0.022815082222223282, 0.017372649163007736, -0.0013056449824944139, 0.032123636454343796, 0.017439020797610283, 0.003932490479201078, 0.004222864285111427, -0.019098298624157906, -0.02372768707573414, -0.02326308749616146, -0.01836821623146534, 0.003326853970065713, 0.0031007772777229548, -0.029933389276266098, 0.004212494008243084, -0.005210135132074356, 0.00886884517967701, 0.004455163609236479, -0.00657074386253953, -0.014161944389343262, 0.010312417522072792, 0.024208877235651016, -0.021305140107870102, 0.02157062478363514, 0.0213383249938488, 0.017887026071548462, 0.005554435774683952, 0.006823783740401268, 0.005056652240455151, -0.017156941816210747, -0.003185815177857876, 0.021205583587288857, 0.003996787592768669, -0.007831796072423458, -0.013041931204497814, 0.020375942811369896, -0.008877141401171684, 0.004907316993921995, -0.0015275735640898347, 0.00821342971175909, -0.0016561676748096943, 0.016991015523672104, 0.028771894052624702, 0.01732286997139454, 0.0038453785236924887, 0.011341170407831669, -0.0001603537384653464, 0.0010754200629889965, -0.009416406974196434, 0.0111918356269598, 0.005081541370600462, -0.012403109110891819, -0.007939648814499378, 0.024009764194488525, -0.03670324757695198, -0.010702348314225674, 0.014435725286602974, -0.03154288977384567, -0.009267072193324566, -0.009839522652328014, -0.02092350460588932, 0.004156493116170168, 0.014750988222658634, 0.007835944183170795, 0.006056367419660091, -0.007325715851038694, -0.03892667964100838, -0.00896010547876358, 0.010362195782363415, 0.0074211242608726025, 0.012427997775375843, -0.010378789156675339, 0.0008519359398633242, -0.009574038907885551, 0.022134779021143913, 0.0224168561398983, -0.03720102831721306, 0.0024536584969609976, -0.001965208211913705, 0.011963400058448315, 0.006019033957272768, -0.0066744489595294, -0.02180292271077633, 0.015331735834479332, 0.0002369657449889928, -0.0045381272211670876, -0.019778603687882423, -0.019164670258760452, 0.0040030102245509624, 0.005670585203915834, -0.03056391514837742, -0.004766278434544802, 0.01344015821814537, -0.007454310078173876, 0.01012989692389965, -0.008951809257268906, -0.006869413889944553, 0.00550465751439333, 0.012203995138406754, 0.008586768060922623, 0.004264346323907375, 0.03360039368271828, -0.004683314356952906, 0.01667575165629387, 0.01582952030003071, -0.0002662623883225024, 0.031957708299160004, 0.016708936542272568, 0.021653588861227036, 0.0019164669793099165, 0.006471187341958284, -0.0013512751320376992, 0.005330433137714863, -0.012419701553881168, 0.01399601623415947, 0.007562162820249796, 0.00048430199967697263, -0.00545487878844142, 0.008495507761836052, 0.01833503134548664, -0.02475643903017044, -0.002656920114532113, -0.0025428447406738997, -0.011142057366669178, 0.003405669704079628, 0.012759854085743427, -0.02049209363758564, 0.008055798709392548, 0.009773151949048042, 0.014784174039959908, 0.012187402695417404, 0.003864045487716794, 0.0037147102411836386, 0.019065113738179207, -0.004280939232558012, 0.005517101846635342, -0.00806824304163456, -0.0006408964400179684, -0.03290349617600441, 0.01163984090089798, -0.007748831994831562, -0.0029120342805981636, -0.008358616381883621, 0.019811788573861122, 0.01635219156742096, 0.003167148446664214, -0.004392940551042557, -0.029336048290133476, 0.014336168766021729, 0.0008877141517587006, -0.0080143166705966, 0.011573469266295433, 0.01109227817505598, 0.017837246879935265, 0.010826794430613518, 0.02391020767390728, -0.02135491743683815, -0.001911281724460423, -0.006964822765439749, -0.01790361851453781, 0.002130099106580019, -0.012369923293590546, -0.011979992501437664, -0.0080143166705966, -0.0009924561018124223, 0.02497214637696743, -0.004392940551042557, 0.009283664636313915, -0.012353330850601196, 0.005189394578337669, -0.002999146468937397, 0.001603278098627925, -0.022134779021143913, 0.004272643011063337, 0.01667575165629387, 0.00010247343016089872, 0.016883160918951035, 0.005351174157112837, -0.003511448623612523, 0.0006077108555473387, 0.003374558174982667, -0.006396519485861063, -0.0008462321711704135, 0.030049538239836693, -0.0003881156735587865, -0.005048355553299189, 0.0010194194037467241, -0.0022835824638605118, 0.022300707176327705, 0.0003240778751205653, 0.0037147102411836386, -0.003936639055609703, -0.012527554295957088, 0.009217293933033943, -0.006043923087418079, 0.006616374012082815, -0.025752006098628044, 0.01604522578418255, -0.021106025204062462, -0.03348424658179283, -0.013896459713578224, 0.002103135921061039, 0.02883826568722725, 0.00037722665001638234, 0.010105007328093052, 0.0203095730394125, -0.0030219615437090397, 0.0006170442793518305, -0.02459051087498665, -0.003702265676110983, -0.010743830353021622, 0.010959535837173462, 0.00032122599077410996, 0.00272743939422071, 0.007757128216326237, -0.0049529471434652805, 0.011780879460275173, -0.013589492999017239, 0.0011573469964787364, -0.00231884210370481, -0.007338160183280706, 0.007383790332823992, 0.013324008323252201, -0.00634674122557044, -0.019396968185901642, 0.012096142396330833, -0.016161374747753143, 0.015248771756887436, -0.015340032055974007, -0.0017650577938184142, -0.0057535492815077305, -0.013332304544746876, 0.0015804630238562822, 0.011814065277576447, -0.009864412248134613, 0.022317299619317055, -0.005160356871783733, -0.018434587866067886, -0.0022732119541615248, 0.004208345897495747, 0.012013178318738937, -0.009126033633947372, -0.014858840964734554, -0.005114726722240448, 0.001230977475643158, 0.01613648608326912, -0.018285252153873444, 0.0005921550909988582, -0.014327872544527054, -0.003606857266277075, -0.0018231325084343553, 0.0032501122914254665, -0.006462890654802322, -0.012876003049314022, 0.0025138072669506073, -0.012303551658987999, -0.015638701617717743, -0.0001599648385308683, -0.00545487878844142, 0.0014767581596970558, 0.004770426545292139, 0.018036359921097755, -0.00688600679859519, 0.010652570053935051, -0.013116599060595036, -0.005235024727880955, -0.007856684736907482, -0.018036359921097755, 0.004224938340485096, 0.007674164138734341, -0.005268210079520941, 0.0002714476431719959, 0.0003466336929704994, -0.0002639290178194642, -0.025768598541617393, -0.015713369473814964, 0.005313840229064226, -0.026133639737963676, -0.020243201404809952, -0.0095906313508749, 0.014361057430505753, -0.0003660783695522696, -0.018749849870800972, 0.030016353353857994, 0.014302982948720455, -0.0005172283272258937, -0.01143243070691824, 0.0001166032234323211, 0.010569605976343155, -0.0048575387336313725, 0.02623319812119007, -0.016543010249733925, -0.012510961852967739, 0.006632966920733452, -0.015331735834479332, -0.010926350951194763, -0.03610590472817421, -0.0070975651033222675, 0.020409129559993744, -0.002526251832023263, -0.018534144386649132, -1.1067259947594721e-05, 0.001822095480747521, 0.0053055440075695515, 0.0034077437594532967, 0.015116029419004917, 0.006321852095425129, -0.025785192847251892, -0.00949937105178833, 0.017455613240599632, -0.008686324581503868, 0.008711213245987892, 0.01732286997139454, -0.004894872196018696, 0.005189394578337669, -0.0006279333028942347, 0.002909960225224495, -0.031293999403715134, -0.011067389510571957, -0.02006068080663681, 0.00849135871976614, 0.014269797131419182, -0.004212494008243084, 0.014369354583323002, 0.008744399063289165, -0.01944674737751484, -0.007338160183280706, 0.007072675973176956, -0.016916347667574883, 0.0019330597715452313, -0.009673595428466797, 0.01680019684135914, -0.03544219583272934, 0.016493231058120728, 0.019363783299922943, -0.018019767478108406, 0.007906462997198105, 0.019081706181168556, -0.001637500710785389, -0.005799179431051016, -0.007989427074790001, -0.005550287663936615, -0.00045396829955279827, 0.029634719714522362, -0.0014311278937384486, -0.009217293933033943, -0.0008897882653400302, 0.013315712101757526, 0.003453373908996582, 0.00577014172449708, 0.00458375783637166, 0.021885886788368225, -0.008113873191177845, 0.009225590154528618, -0.01538981031626463, 0.014344464987516403, 0.0018895036773756146, 0.0041253818199038506, -0.023561758920550346, -0.0045671649277210236, -0.0010593457845970988, -0.001183273154310882, -0.021670181304216385, 0.011183538474142551, 0.013506528921425343, -0.005890439730137587, -0.02095669135451317, -0.027925660833716393, -0.018849406391382217, 0.01576314866542816, -0.009565741755068302, -0.0007015637820586562, 0.008902030996978283, 0.02329627424478531, -0.02369450032711029, 0.006981415208429098, -0.0030821103136986494, 0.03356720879673958, 0.014336168766021729, -0.004388792440295219, 0.014435725286602974, 0.004158567637205124, 0.02090691216289997, -0.01966245286166668, -0.008943513035774231, -0.006496076472103596, 0.02324649505317211, 0.006023182068020105, 0.001210236456245184, -0.013971127569675446, -0.017820654436945915, 0.004005084279924631, -0.010096711106598377, 0.007031193934381008, 0.010519827716052532, -0.001592907588928938, 0.05140445753931999, -0.008603360503911972, -0.0066620041616261005, -0.031227625906467438, 0.0048990207724273205, -0.005960959009826183, 0.0057950313203036785, 0.035574935376644135, 0.04586246609687805, 0.008449876680970192, 0.020840540528297424, -0.003754118224605918, -0.008047502487897873, -0.0008223800687119365, -0.008520396426320076, 0.017804061993956566, 0.00603147828951478, 0.014950101263821125, -0.003511448623612523, -0.017206721007823944, -0.02288145385682583, 0.0065458547323942184, 0.009374924935400486, 0.01752198301255703, -0.017190128564834595, 0.0009468259522691369, 0.011930214241147041, -0.008777584880590439, 0.024192284792661667, 0.029767461121082306, 0.0028601817321032286, -0.003832933958619833, -0.005181097891181707, -0.019728824496269226, 0.01770450361073017, 0.00564984418451786, 0.006881858687847853, 0.0020398758351802826, -0.0005314877489581704, -0.012660296633839607, 0.016849976032972336, 0.01621115393936634, 0.007342308759689331, 0.022931233048439026, -0.013108301907777786, -0.0342143289744854, -0.0006082293693907559, -0.006711782421916723, -0.004616943188011646, -0.014020905829966068, 0.013805199414491653, 0.02538696490228176, 0.0016810568049550056, -0.009150922298431396, 0.011424134485423565, 0.005367766600102186, -0.0024951405357569456, 0.004280939232558012, -0.010859979316592216, 0.004224938340485096, -0.01876644231379032, -0.030995327979326248, -0.0002186877536587417, 0.003633820451796055, -0.003357965499162674, -0.004200049210339785, 0.012643704190850258, -0.013357194140553474, 0.006010737270116806, -0.02797544002532959, -0.015846112743020058, 0.020790763199329376, 0.01967904530465603, 0.010851683095097542, 0.01483395230025053, 0.0008986031753011048, 0.012029770761728287, 0.003077962202951312, -0.0009867523331195116, 0.008885437622666359, 0.010196267627179623, 0.00021298398496583104, 0.013274230062961578, 0.012386515736579895, -0.0025801784358918667, -0.004446866922080517, -0.0010857905726879835, -0.01943015493452549, -0.006956526078283787, -0.01033730711787939, 0.006616374012082815, -0.007114157546311617, -0.005056652240455151, -0.005205987021327019, 0.04148196801543236, -0.01944674737751484, 0.000192372637684457, 0.013058523647487164, -0.0008980846614576876, 0.0033890767954289913, -0.0021176545415073633, -0.0288050789386034, 0.009947376325726509, 0.01858392171561718, -0.0025179556105285883, -0.014385947026312351, -0.0031920375768095255, -0.0009286775602959096, -0.006101997569203377, -0.0035384120419621468, 0.0006766746519133449, 0.02009386569261551, 0.007628533989191055, 0.00855358224362135, -0.006458742544054985, 0.0016883161151781678, 0.009540853090584278, 0.03544219583272934, -0.005915328860282898, -0.006948229856789112, -0.005869698710739613, 0.0074211242608726025, 0.009333442896604538, 0.020624835044145584, -0.014668024145066738, -0.015970557928085327, 0.0009613446309231222, -0.0512053444981575, 0.0009836412500590086, 0.005508805625140667, 0.02158721722662449, -0.018899185582995415, -0.0012195699382573366, -0.003009516978636384, -0.005886291619390249, 0.007329863961786032, 0.0030655176378786564, -0.008337875828146935, -0.010743830353021622, -0.011133760213851929, -0.017007607966661453, -0.011938510462641716, 0.006508520804345608, 0.012817928567528725, -0.002926552901044488, -0.002393509726971388, 0.006338445004075766, -0.013738827779889107, 0.026598239317536354, -0.008744399063289165, -0.011241613887250423, 0.013929645530879498, -0.0010111229494214058, 0.00849135871976614, 0.016775308176875114, -0.006350889336317778, -0.016559602692723274, -0.00198387517593801, 0.0016644640127196908, -0.006890154909342527, 0.02004408836364746, 0.001856318092904985, 0.010312417522072792, -0.019164670258760452, -0.004940502345561981, -0.009781448170542717, 0.002281508408486843, -0.0035093745682388544, -0.01357290055602789, 0.00033626321237534285, 0.005973403807729483, -0.027610398828983307, -0.00279795890673995, 0.01176428608596325, -0.002472325460985303, -0.0035778197925537825, -0.00821342971175909, -0.009217293933033943, -0.012793038971722126, -0.028224332258105278, 0.019695639610290527, 0.004575461149215698, -0.015215585939586163, 0.01323274802416563, -0.003447151742875576, -0.004314124584197998, 0.0008524544537067413, 0.0037313031498342752, -0.0071390471421182156, -0.020160237327218056, 0.01626093126833439, 0.014784174039959908, 0.012038067914545536, -0.004256050102412701, 0.02649868279695511, -0.004384644329547882, 0.024026356637477875, -0.03207385912537575, -0.006438001524657011, -0.021056247875094414, 0.01816910319030285, 0.002588474890217185, -0.00992248672991991, 0.0039055272936820984, -0.002787588397040963, 0.00474138930439949, 0.018003175035119057, -0.014261500909924507, 0.006259629037231207, 0.011556876823306084, -0.029203306883573532, -0.006715930998325348, 0.002737809903919697, 0.002399731893092394, 0.005608362145721912, -0.00768660893663764, -0.02858937345445156, 0.01314148772507906, 0.0025594374164938927, 0.0069938600063323975, 0.014593357220292091, 0.02459051087498665, 0.009980562143027782, -0.01610330119729042, 0.016128189861774445, 0.014460614882409573, -0.02434161864221096, -0.014253204688429832, -0.018500957638025284, -0.03457937017083168, 0.014950101263821125, 0.006097849458456039, -0.022947825491428375, -0.037267401814460754, -0.0007601570687256753, 0.00972337368875742, -0.007122454233467579, -0.006840376649051905, 0.0003624487144406885, 0.005226728040724993, 0.0061725168488919735, -0.001969356555491686, 0.004986132495105267, 4.3231990275671706e-05, -0.014526985585689545, 0.003922120202332735, -0.010694052092730999, 0.0026112899649888277, -0.0061808135360479355, 0.007018749136477709, -0.000666822656057775, 0.004749685525894165, -0.006367482244968414, 0.013489936478435993, -0.01035389956086874, -0.024690067395567894, 0.008852251805365086, -0.033185575157403946, 0.015398106537759304, 0.0049322061240673065, 0.0022172112949192524, 0.010569605976343155, -0.009847819805145264, 0.029419012367725372, 0.03074643574655056, -0.008877141401171684, -0.020375942811369896, 0.017654726281762123, -0.0037375253159552813, 0.020591650158166885, 0.005272358190268278, -0.054590269923210144, -0.024242062121629715, -0.013498232699930668, 0.009101144038140774, 0.0018998741870746017, 0.007840092293918133, -0.0245739184319973, -0.001969356555491686, 0.010320713743567467, 0.022068407386541367, -0.00046382026630453765, 0.027013057842850685, -0.001418683328665793, -0.03550856560468674, 0.008317135274410248, -0.01260222215205431, -0.00927536841481924, 0.014543578028678894, 0.01966245286166668, 0.022947825491428375, -0.009399814531207085, 0.010113304480910301, -0.0027647733222693205, 0.014991583302617073, -0.011988288722932339, -0.014883730560541153, -0.003770710900425911, -0.004977836273610592, 0.006446298211812973, -0.005205987021327019, 0.015680184587836266, -0.0033310020808130503, 0.005554435774683952, -0.0034098178148269653, 0.0044510154984891415, -0.023213310167193413, 0.02201863005757332, 0.016725530847907066, 0.0029389974661171436, -0.025785192847251892, 0.02259937673807144, -0.033202167600393295, -0.006006589159369469, 0.0052557652816176414, -0.009350036270916462, 0.017422426491975784, -0.011988288722932339, 0.015091140754520893, 0.015447885729372501, 0.004517386667430401, -0.024242062121629715, 0.0038412304129451513, 0.010702348314225674, -0.007873278111219406, 0.005035911221057177, 0.00789816677570343, -0.010486641898751259, 0.019513119012117386, -0.009540853090584278, -0.01673382706940174, -0.018915778025984764, -0.005940217990428209, -0.0005843772669322789, 0.02585156261920929, 0.014958398416638374, 0.010536420159041882, 0.002721217228099704, -0.01176428608596325, 0.022931233048439026, 0.007591200526803732, -0.013713939115405083, 0.002079283818602562, 0.009955672547221184, 0.00730497483164072, -0.034247513860464096, 0.017223313450813293, 0.0052972473204135895, -0.0020813578739762306, -0.015713369473814964, 0.03457937017083168, 0.0005527472239919007, -0.014385947026312351, -0.005803327541798353, -0.0013751272344961762, 0.010710644535720348, 0.020226608961820602, 0.023860428482294083, -0.006006589159369469, 0.017405834048986435, -0.02966790460050106, 0.018218880519270897, 0.002198544330894947, -0.008760991506278515, 0.005197690799832344, 0.011457320302724838, 0.014817359857261181, -0.013415268622338772, 0.020658019930124283, -0.007761276327073574, -0.006657856050878763, 0.0018200214253738523, -0.006238888017833233, 0.015505960211157799, 0.016559602692723274, 0.014278094284236431, -0.015398106537759304, -0.012817928567528725, 0.011722804978489876, -0.002208914840593934, 0.011274799704551697, 0.0062347399070858955, -0.01611989364027977, -0.01258562970906496, 0.00021713218302465975, -0.020342757925391197, 0.009491074830293655, -0.008603360503911972, 0.007396235130727291, 0.00029892942984588444, -0.00650437269359827, -0.003911749925464392, -0.022367076948285103, 0.005089837592095137, -0.02968449704349041, -0.003642116906121373, 0.005985848139971495, 0.017986582592129707, 0.010395381599664688, 0.013846681453287601, -0.01077701523900032, -0.00938322115689516, -0.012071252800524235, -0.006761561147868633, -0.028307296335697174, 0.013722235336899757, 0.013921349309384823, -0.02689690887928009, -0.011283095926046371, 0.017455613240599632, 0.005035911221057177, -0.0024930662475526333, 0.011755989864468575, -1.569347114127595e-05, 0.001989060314372182, 0.015987150371074677, -0.013091709464788437, -0.010088414885103703, -0.004388792440295219, 0.0022649154998362064, 0.026382531970739365, 0.025702228769659996, 0.0025345482863485813, 0.0011034203926101327, 0.005803327541798353, -0.01408727653324604, 0.0032293712720274925, -0.01078531239181757, -0.028971007093787193, -0.022516412660479546, -0.006823783740401268, -0.004459311719983816, -0.0022586933337152004, -0.029551755636930466, -0.004957095254212618, 0.002051283372566104, 0.00948277860879898, -0.01110057532787323, 0.026349347084760666, 0.020010901615023613, -0.023196717724204063, -0.014676320366561413, 0.015340032055974007, -0.0004321902815718204, -0.029186714440584183, 0.004936354234814644, -0.01462654210627079, -0.0040901219472289085, -0.023196717724204063, -0.011142057366669178, -0.008080687373876572, -0.00381634128279984, -0.012436293996870518, -0.008271505124866962, -0.00182624370791018, -0.022981010377407074, 0.004753833636641502, -0.0034347069449722767, 0.016717232763767242, -0.010511530563235283, 0.006944081746041775, -0.02540355734527111, -0.0009307516738772392, 0.01110057532787323, 0.011357762850821018, -0.03182496502995491, 0.006043923087418079, -0.004749685525894165, -0.019380375742912292, -0.03587360680103302, 0.002048172289505601, 0.015987150371074677, -0.0014622394228354096, 0.0062430365942418575, 0.02497214637696743, 0.010121600702404976, -0.004330717492848635, -0.016833383589982986, -0.009457889012992382, -0.005081541370600462, 0.007205417845398188, -0.016957828775048256, 0.017455613240599632, -0.009308554232120514, 0.006703486200422049, -0.0077405353076756, -0.007757128216326237, 0.007956241257488728, 0.007313271053135395, 0.008512100204825401, 0.005239172838628292, -0.03116125613451004, 0.003200334031134844, 0.0015203141374513507, -0.021437881514430046, 0.007487495429813862, -0.008968401700258255, -0.007914760150015354, 0.0075455703772604465, -0.009963968768715858, -0.0013004597276449203, -0.0006346741574816406, -0.013879867270588875, -0.006425557192414999, -0.017820654436945915, 0.024507546797394753, 0.015912482514977455, 0.04981154948472977, 0.029120342805981636, 0.019778603687882423, -0.0057120672427117825, -0.0026672906242311, -0.027245357632637024, 0.006064664106816053, -0.00793550070375204, -0.022084999829530716, 0.0017152794171124697, 0.005579324904829264, -0.01987816020846367, 0.013158081099390984, 0.01962926797568798, -0.012328441254794598, 0.028705522418022156, 0.004144048783928156, 0.011390948668122292, -0.0028518852777779102, 0.00834617204964161, 0.0011666803620755672, 0.0018345400458201766, -0.012162513099610806, -0.011374356225132942, 0.014651431702077389, 0.018036359921097755, 0.01173110119998455, 0.0006813413347117603, 0.004621091298758984, 0.0052848029881715775, 0.014576763845980167, -0.005907032638788223, -0.03610590472817421, 0.010204564779996872, 0.02815796062350273, 0.028074996545910835, 0.008134613744914532, 0.00419175298884511, 0.004129529930651188, 0.0009592705173417926, -0.01676701195538044, -0.022981010377407074, -0.011805768124759197, -0.000394856499042362, -0.014900323003530502, 0.008180243894457817, 0.008860548958182335, -0.004144048783928156, -0.014485503546893597, 0.02329627424478531, 0.020292978733778, -0.011341170407831669, -0.021504253149032593, 0.007918908260762691, -0.011108871549367905, 0.01408727653324604, 0.016742123290896416, -0.025702228769659996, -0.018733257427811623, 0.0013004597276449203, 0.012710075825452805, -0.008819066919386387, -0.0008897882653400302, 0.01943015493452549, -0.014344464987516403, 0.03285371884703636, 0.005620806943625212, -0.009939080104231834, 0.0018521699821576476, 0.02500533126294613, 0.010345603339374065, 0.012486073188483715, 0.013465046882629395, -0.012876003049314022, -0.012842817232012749, -0.014510393142700195, -0.012137624435126781, -0.005189394578337669, -0.004100492689758539, -0.0008742325007915497, -0.010735533200204372, -0.010196267627179623, 0.00018031692889053375, -0.013788606971502304, -0.0037686368450522423, -0.012096142396330833, 0.0006211925065144897, 0.003949083387851715, 0.002978405449539423, -0.021106025204062462, -0.007715646177530289, 0.008387654088437557, -0.0049529471434652805, 0.0234953872859478, -0.007022897247225046, -0.018086139112710953, -0.01770450361073017, 0.00550465751439333, 0.005363618489354849, -0.00416478980332613, -0.015555738471448421, 0.01228695921599865, 0.003575745737180114, 0.0062347399070858955, 0.009242182597517967, -0.019330598413944244, -0.009175811894237995, -0.020823948085308075, 0.007317419163882732, 0.00847476627677679, 0.015530848875641823, -0.0005931921768933535, -0.005907032638788223, 0.014817359857261181, -0.0019299485720694065, 0.021653588861227036, 0.03369995206594467, 0.01792021095752716, -0.003225223161280155, 0.00992248672991991, 0.004621091298758984, 0.006533409934490919, 0.02201863005757332, -0.02196885086596012, 0.004426125902682543, -0.008250763639807701, -0.0017308351816609502, 0.021670181304216385, 0.01548936776816845, 0.00458375783637166, -0.00864484254270792, -0.010096711106598377, -0.01303363498300314, 0.031260810792446136, -0.019048519432544708, 0.0004345236229710281, 0.002372768707573414, 0.02135491743683815, 0.014659727923572063, -0.019479932263493538, -0.007815202698111534, 0.02905397117137909, 0.02628297545015812, -0.007918908260762691, 0.023130346089601517, 0.004629387985914946, -0.009076254442334175, 0.010677458718419075, 0.029286270961165428, 0.014991583302617073, 0.002567733870819211, -0.010453456081449986, 0.0035570787731558084, 0.0035778197925537825, -0.027162393555045128, -0.009632113389670849, -0.02344560995697975, 0.008603360503911972, -0.002389361383393407, 0.005085689481347799, 0.0026610682252794504, 0.014377650804817677, 0.017870431765913963, -0.0001371497637592256, 0.024407990276813507, -0.010113304480910301, -0.019479932263493538, 0.018915778025984764, -0.0011231242679059505, -0.004380495753139257, -0.014145351946353912, -0.015788037329912186, 0.009665299206972122, -0.004986132495105267, 0.008777584880590439, -0.0012952744727954268, -0.007864980958402157, -0.012842817232012749, -0.005060800351202488, 0.007533125579357147, 0.013373786583542824, 0.005384359508752823, 0.011673025786876678, 0.016269227489829063, -0.006342593114823103, -0.006267925724387169, -0.01881622150540352, 0.011531987227499485, 0.007549718488007784, -0.003584042191505432, 0.010121600702404976, -0.010602791793644428, -0.000577636412344873, -0.007197121623903513, -0.018135916441679, 0.021039655432105064, 0.0012195699382573366, -0.0111918356269598, -0.038727566599845886, 0.005288951098918915, -0.009756559506058693, 0.005268210079520941, -0.00855358224362135, 0.02011045813560486], "829f1387-308e-421c-95ba-caff21e34bd6": [-0.018344342708587646, -0.022991960868239403, -0.005527192261070013, 0.007637443020939827, -0.02297748252749443, -0.003281204728409648, 0.011561133898794651, 0.005871057976037264, 0.012118559330701828, 0.007213945034891367, 0.0069605703465640545, 0.0023726748768240213, 0.006008604541420937, -0.023817239329218864, 0.00996125303208828, 0.02053060568869114, 0.017591455951333046, 0.022398339584469795, 0.030173329636454582, -0.015578935854136944, 0.06920754164457321, -0.017707284539937973, -0.024150246754288673, 0.01890900544822216, 0.014869486913084984, -0.012951076962053776, -0.022123247385025024, 0.0038332000840455294, -0.033503398299217224, 0.007087257690727711, 0.0031563271768391132, 0.022268032655119896, 0.027190744876861572, -0.003047737991437316, -0.017721764743328094, -0.007550571579486132, -0.005900015123188496, 0.0026188103947788477, -0.041785139590501785, -0.03547248616814613, -0.03498021513223648, 0.01552102155983448, -6.48142013233155e-05, -0.02270239032804966, -0.07262448221445084, 0.017026793211698532, 0.047547608613967896, -0.01612912118434906, -0.014529240317642689, -0.008752292953431606, 0.02642338164150715, -0.005114553030580282, -0.0016487466637045145, 0.0006967809749767184, 0.042248453944921494, -0.022181162610650063, 0.015506543219089508, 0.05484480410814285, 0.0020487168803811073, -0.07146620005369186, -0.004951669368892908, 0.004850319121032953, -0.0009456312982365489, -0.020892569795250893, 0.0242660753428936, -0.017316363751888275, 0.011872423812747002, -0.024787303060293198, -0.03770218417048454, -0.001781768398359418, 0.014471326023340225, 0.0021554965060204268, -0.05794321745634079, -0.013001751154661179, 0.002416110597550869, -0.029854800552129745, 0.053310077637434006, 0.0077749895863235, 0.016505563631653786, -0.004560748115181923, -0.0359068401157856, 0.009078060276806355, 0.04140869528055191, -0.014015250839293003, 0.0493139922618866, 0.021804718300700188, -0.005574247799813747, -0.040568940341472626, 0.00028436805587261915, 0.0025427979417145252, -0.011090581305325031, 0.01830090582370758, -0.018127163872122765, 0.00697866827249527, 0.021167661994695663, -0.006993147078901529, -0.00857131090015173, 0.011300520040094852, 0.015825072303414345, -0.013566415756940842, 0.012719419784843922, 0.009751313365995884, -0.05267301946878433, 9.76172013906762e-05, -0.0076446826569736, 0.015159057453274727, 0.010793770663440228, -0.007174129132181406, -0.029854800552129745, 0.021732326596975327, -0.0071596503257751465, -0.04030832648277283, 0.013197212480008602, 0.027885716408491135, -0.03558831289410591, -0.019082749262452126, 0.008527874946594238, -0.01830090582370758, -0.009910577908158302, -0.05400504916906357, 0.019213056191802025, 0.005367928184568882, 0.009881621226668358, 0.012009969912469387, -0.011394631117582321, 0.009461742825806141, 0.005758849438279867, -0.03023124486207962, 0.020689869299530983, -0.007420264650136232, 0.0017962469719350338, 0.009780270978808403, 0.017186056822538376, 0.0528467632830143, 0.012393651530146599, 0.006128052715212107, 0.016158077865839005, 0.05507646128535271, -0.043551523238420486, 0.052007004618644714, -0.03474855795502663, -0.04586809501051903, -0.030868301168084145, 0.03674659878015518, 0.012828009203076363, -0.006967809516936541, -0.031099958345294, 0.03660181164741516, -0.015607893466949463, 0.018720785155892372, -0.07441982626914978, -0.0026007122360169888, 0.014753658324480057, 0.008520635776221752, 0.023556625470519066, -0.009259042330086231, 0.018923485651612282, 0.014348258264362812, 0.005396885331720114, 0.03645702823996544, 0.014522001147270203, -0.0523255355656147, -0.0006361519335769117, 0.03382192924618721, 0.04986418038606644, -0.004839460365474224, 0.041785139590501785, -0.0021536864805966616, 0.0014152796939015388, 0.017200535163283348, 0.00545841921120882, -0.008549592457711697, 0.024961046874523163, 0.006319893524050713, -0.010627266950905323, -0.016722742468118668, 0.01945919170975685, 0.003009731648489833, 0.026206202805042267, -0.023498712107539177, 0.006450200919061899, 0.01817059889435768, -0.012183712795376778, -0.015897464007139206, -0.01145978458225727, 0.003018780844286084, 0.0023093312047421932, -0.009780270978808403, 0.020617477595806122, -0.008296217769384384, -0.015955379232764244, -0.010721377097070217, 0.001618884620256722, -0.0022912330459803343, 0.0005741656059399247, -0.02609037421643734, -0.019068270921707153, -0.007069159299135208, -0.0006931613315828145, 0.009888860397040844, -0.002988013904541731, -0.07401442527770996, -0.03231615573167801, 0.06266322731971741, -0.016346300020813942, 0.024975525215268135, -0.018315384164452553, -0.07349319756031036, 0.001594451954588294, -0.020588519051671028, 0.05617683380842209, -0.047402821481227875, 0.02913087233901024, 0.01708470657467842, -0.032895300537347794, 0.004969767294824123, -0.02236938290297985, 0.0379338413476944, 0.004651239141821861, -0.016621392220258713, -0.029116393998265266, 0.008969470858573914, 0.0015329180750995874, -0.022253554314374924, -0.04911129176616669, -0.02310778945684433, -0.0010180241661146283, 0.045433737337589264, -0.03254781290888786, 0.0006872793892398477, 0.03851298242807388, -0.0044666375033557415, -0.006442961748689413, -0.028016023337841034, 0.006566029507666826, 0.02520718239247799, 0.023209139704704285, 0.012379173189401627, -0.016766179352998734, 0.0011926718289032578, 0.0121330376714468, 0.03098412975668907, 0.0217468049377203, -0.005234001204371452, 0.012053405866026878, 0.017591455951333046, -0.00887536071240902, 0.013863226398825645, 0.008050082251429558, -0.00796321127563715, 0.007025723811239004, 0.02771197445690632, -0.005559768993407488, 0.002546417759731412, -0.0027599765453487635, 0.017243972048163414, 5.667001096298918e-05, -0.018952442333102226, 0.03179492801427841, 0.006410384550690651, 0.007025723811239004, 0.014927400276064873, 0.021471712738275528, 0.027350010350346565, 0.03318487107753754, -0.026264118030667305, 0.023368405178189278, -0.03422732651233673, -0.010113277472555637, 0.04291446879506111, -0.006899036467075348, 0.012292302213609219, -0.0025156508199870586, 0.014883965253829956, 0.005190565716475248, 0.013783593662083149, -0.007847382687032223, 0.01379083376377821, 0.008549592457711697, -0.002645957749336958, -0.03118683025240898, -0.0015546359354630113, 0.030926214531064034, 0.023498712107539177, 0.001033407635986805, 0.006866459734737873, -0.04418858140707016, 0.00993229541927576, -0.03295321390032768, -0.006167868617922068, 0.011278802528977394, 0.01077929139137268, 0.05632161721587181, 0.010055363178253174, 0.04966147989034653, 0.008629225194454193, -0.028768908232450485, -0.022325947880744934, -0.055539775639772415, 0.010453524067997932, -0.0007198561797849834, 9.049103391589597e-05, -0.019126184284687042, -0.021978462114930153, 0.014138318598270416, -0.006877318490296602, 0.03593580052256584, 0.02013968490064144, -0.028479337692260742, 0.004828601609915495, 0.044072750955820084, -0.012799051590263844, -0.04378318041563034, 0.011010948568582535, 0.0152893653139472, 0.019618455320596695, -0.001421614084392786, -0.01389218308031559, 0.00740216625854373, -0.043204039335250854, -0.02527957409620285, -0.009990209713578224, -0.05565560609102249, 0.027610624209046364, 0.05745094642043114, -0.022383861243724823, 0.03822341188788414, -0.01426862645894289, 5.751836215495132e-05, -0.03503812849521637, -0.0074998969212174416, -0.00945450272411108, -0.022195640951395035, 0.008679899387061596, -0.021124226972460747, -0.024034418165683746, -0.050588108599185944, -0.029796887189149857, -0.016650350764393806, -0.006298176012933254, 0.00041512760799378157, -0.013197212480008602, 0.0038295804988592863, -0.035617269575595856, 0.02921774424612522, -0.004991485271602869, 0.016896486282348633, 0.004575226455926895, -0.02900056540966034, 0.019270969554781914, 0.0009745884453877807, -0.014666786417365074, 0.021732326596975327, 5.3078645578352734e-05, 0.03770218417048454, -0.023629019036889076, 0.008245542645454407, 0.009599288925528526, -0.0024215399753302336, 0.002352766925469041, 0.029941672459244728, -0.010062603279948235, -0.028913695365190506, 0.006750631146132946, -0.0069641899317502975, 0.02846485935151577, -0.024975525215268135, -0.006757870316505432, -0.00045087156468071043, 0.01402249000966549, -0.031071001663804054, 0.0036142119206488132, 0.012415369972586632, 0.0001019720803014934, -0.004336330108344555, -0.048503194004297256, 0.06011500209569931, 0.022745825350284576, -0.04326195269823074, 0.02732105180621147, 0.015738200396299362, -0.035675182938575745, 0.0019256491214036942, 0.02277478389441967, 0.03535665571689606, 0.032634686678647995, 0.01341439038515091, 0.01270494144409895, -0.02026999182999134, 0.00833241455256939, -0.02345527522265911, 0.004455778282135725, -0.009005667641758919, 0.005965169053524733, -0.013530218973755836, -0.01291488017886877, -0.013602611608803272, -0.014529240317642689, 0.004101053811609745, -0.033387571573257446, -0.024034418165683746, -0.003170805750414729, -0.0049335709773004055, 0.024179203435778618, 0.006080997176468372, -0.0505591481924057, -0.005053019151091576, -0.021297968924045563, 0.02121109887957573, 0.01117745228111744, 0.03952648490667343, 0.010344934649765491, 0.04080059751868248, 0.01762041449546814, 0.06538520008325577, -0.012509480118751526, 0.00016616415814496577, 0.05177534744143486, -0.004169826861470938, -0.017461149021983147, 0.07424607872962952, 0.06648556888103485, -0.038455069065093994, 0.02651025354862213, -0.014522001147270203, 0.017504585906863213, -0.010620027780532837, 0.0243963822722435, -0.00789081770926714, -0.006493636406958103, -0.008766771294176579, 0.044622939079999924, -0.006406764965504408, -0.00843376386910677, 0.008491678163409233, -0.024903131648898125, 0.018344342708587646, 0.029854800552129745, 0.0005013203481212258, -0.00442320154979825, -0.00867266021668911, 0.001615264918655157, -0.014174515381455421, 0.02154410444200039, -0.009751313365995884, -0.0315922275185585, -0.02664056047797203, -0.0011700490722432733, 0.026655038818717003, -0.004209642764180899, 0.0010596499778330326, 0.013812551274895668, -0.024150246754288673, 0.012415369972586632, -0.00564302084967494, -0.005831242073327303, 0.007637443020939827, -0.017301885411143303, 0.005494615528732538, -0.050124794244766235, -0.02662608213722706, -0.0068592200987041, -0.025366446003317833, 0.0066927168518304825, 0.00413363054394722, -0.015680287033319473, 0.005103694275021553, 0.06689096987247467, 0.014341019093990326, 0.031679101288318634, -0.01056935265660286, -0.013139298185706139, 0.016505563631653786, 0.058985672891139984, 0.015839550644159317, -0.02934805117547512, -0.018735263496637344, 0.004130010958760977, -0.014927400276064873, -0.0037825251929461956, -0.020646434277296066, -0.0217468049377203, -0.024352947250008583, 0.02352766878902912, 0.018880048766732216, -0.027610624209046364, -0.006500875577330589, -0.026466816663742065, 0.019024834036827087, -0.0017410474829375744, 0.06909171491861343, -0.0036359296645969152, 0.005375167354941368, 0.03043394349515438, -0.020313426852226257, -0.017243972048163414, -0.005143510177731514, -0.03292425721883774, -0.005494615528732538, -0.0374126136302948, 0.041785139590501785, -0.03584892675280571, -0.0217468049377203, 0.018952442333102226, -0.0027871238999068737, -0.011626288294792175, -0.007043822202831507, 0.017316363751888275, -0.013689483515918255, -0.02249968983232975, -0.04039519652724266, -0.01315377652645111, -0.026191724464297295, 0.004723631776869297, 0.012118559330701828, 0.017663849517703056, 0.008716096170246601, 0.024019939824938774, 0.030260201543569565, 0.008361371234059334, 0.009432785212993622, -0.01598433591425419, -0.018720785155892372, 0.009027385152876377, -0.011966533958911896, -0.010163952596485615, -0.006667379289865494, -0.021442754194140434, 0.018923485651612282, 0.0006574173457920551, -0.00625112047418952, 0.01985011249780655, -0.03144744411110878, 0.010048124007880688, 0.029738973826169968, -0.024845218285918236, -0.019951462745666504, 0.014297583140432835, -0.0075360932387411594, 0.009599288925528526, -0.01992250606417656, 0.04621557891368866, 0.012031687423586845, 0.004767067730426788, 0.0004447634273674339, 0.04109016805887222, -0.003512861905619502, 0.004405103623867035, -0.020154163241386414, 0.030462902039289474, -0.05545290559530258, 0.01727292872965336, -0.020429255440831184, 0.008535114116966724, 0.01762041449546814, -0.034661684185266495, -0.0017193296225741506, -0.016824092715978622, -0.015564457513391972, 0.009801988489925861, -0.04288550838828087, 0.022586561739444733, -0.0005569722852669656, 0.03098412975668907, 0.004832221195101738, -0.009367631748318672, 0.012241627089679241, 0.03089725784957409, 0.017736243084073067, 0.021051833406090736, 0.04033728316426277, 0.01087340246886015, 0.012907641008496284, -0.008216585963964462, 0.019401276484131813, 0.023296011611819267, -0.011814509518444538, -0.00024342087272088975, -0.06862840056419373, 0.004694674629718065, 0.021775761619210243, -0.0216164980083704, 0.012596352025866508, -0.012451565824449062, 0.02358558215200901, 0.031128915026783943, -0.004672957118600607, -0.013030708767473698, 0.005335351452231407, 0.008354132063686848, 0.0007859145989641547, 0.007883578538894653, -0.00863646436482668, -0.004383385647088289, -0.03848402574658394, 0.024758346378803253, 0.0014550958294421434, 0.005349829792976379, -0.0106779420748353, -0.0055814869701862335, 0.0022695150692015886, 0.00874505378305912, 0.02609037421643734, -0.002003471367061138, -0.03286634385585785, -0.00022023255587555468, -0.004441299941390753, -0.01721501350402832, -0.0039309305138885975, 0.015897464007139206, 0.0024287793785333633, 0.021515147760510445, 0.04575226455926895, -0.014883965253829956, 0.02006729133427143, -0.00745646096765995, -0.007796707563102245, 0.038860470056533813, -0.011705920100212097, 0.010221866890788078, 0.017649371176958084, -0.04045310989022255, 0.05884088948369026, -0.03280843049287796, 0.025178225710988045, 0.018315384164452553, -0.006732532754540443, 0.010714137926697731, -0.01653452217578888, 0.0037933841813355684, 0.008491678163409233, -0.015303843654692173, 0.012603591196238995, -0.0009583000210113823, 0.027842281386256218, 0.008556831628084183, 0.018532563000917435, 0.029796887189149857, -0.02942044474184513, 0.01230678055435419, -0.0004047211550641805, -4.3577088945312425e-05, -0.010446284897625446, 0.047200120985507965, -0.005664738826453686, 0.013921140693128109, -0.00941830687224865, 0.00911425705999136, 0.046331409364938736, -0.009606528095901012, -0.04682368040084839, 0.002738258568570018, -0.011807270348072052, 0.02026999182999134, 0.007308055646717548, -0.024555645883083344, -0.011930338107049465, 0.028276637196540833, 0.024772824719548225, 0.002988013904541731, 0.0523255355656147, -0.011749356053769588, -0.005747990217059851, -0.016505563631653786, -0.006562409456819296, 0.025163745507597923, 0.006558789871633053, 0.02168889157474041, 0.02913087233901024, 0.031679101288318634, 0.026104852557182312, -0.02763958089053631, 0.0023817240726202726, 0.0017374277813360095, 0.008947753347456455, 0.0068592200987041, -0.01680961437523365, 0.0036449788603931665, 0.010924077592790127, -0.0243963822722435, -0.004553508944809437, -0.03790488466620445, -0.03857089951634407, 0.010004688985645771, -0.0338798426091671, -0.006207684986293316, -0.011582852341234684, 0.044420238584280014, -0.024497732520103455, -0.0005284676444716752, -0.0012623498914763331, 0.02404889650642872, 0.030376030132174492, -0.017663849517703056, -0.006442961748689413, -0.004636760335415602, -0.018344342708587646, -0.03674659878015518, 0.011640766635537148, -0.03332965821027756, -0.03686242550611496, 0.001830633613280952, 0.017374278977513313, -0.021457234397530556, 0.025989023968577385, 0.028435902670025826, -0.03735469654202461, -0.0068519809283316135, 0.015361757948994637, 0.0027364487759768963, 0.03550144284963608, 0.007673639338463545, 0.01436997577548027, 0.010323217138648033, -0.012951076962053776, 0.05684284865856171, -0.019821155816316605, 0.017866550013422966, -0.004900994244962931, 0.020689869299530983, 0.008795727975666523, 0.018329864367842674, 0.0008374945027753711, -0.009910577908158302, -0.025800803676247597, 0.02040029875934124, -0.002144637517631054, 0.02006729133427143, -0.014956357888877392, -0.001781768398359418, 0.045636437833309174, -0.003706512739881873, -0.005961549002677202, 0.011597330681979656, -0.017779678106307983, -0.0022767544724047184, -0.00040607849950902164, 0.012770094908773899, 0.043551523238420486, -0.004162587691098452, 0.013595372438430786, -0.001541967154480517, 0.013703961856663227, -0.016244949772953987, 0.004680196288973093, -0.0031653763726353645, 0.00282151042483747, 0.016158077865839005, 0.021717848256230354, -0.003534579649567604, 0.03495125472545624, -0.019879069179296494, 0.05441044643521309, 0.037383656948804855, -0.021370362490415573, -0.007586768362671137, 0.005878297612071037, 0.005519953090697527, 0.0060013653710484505, 0.03625432774424553, -0.014869486913084984, -0.007565050385892391, -0.02467147447168827, -0.02642338164150715, -0.0024088711943477392, 0.009374870918691158, -0.006649280898272991, 0.03518291190266609, 0.03231615573167801, 0.02582976035773754, 0.033040087670087814, 0.009396588429808617, 0.020602997392416, 0.03897629678249359, 0.004477496258914471, -0.05855131894350052, 0.05339694768190384, 0.006240261718630791, -0.057856347411870956, -0.039671268314123154, -0.007261000573635101, -0.015028750523924828, 0.003170805750414729, -0.01802581362426281, 0.028957130387425423, -0.013848748058080673, 0.02216668426990509, 0.028986087068915367, -0.005443940404802561, 0.007832903414964676, 0.004629521165043116, 0.01708470657467842, 0.018083728849887848, 0.00844100397080183, 0.006236642133444548, -0.00019274589431006461, 0.02533748932182789, -0.034719597548246384, 0.021703369915485382, 0.020646434277296066, 0.020704347640275955, -0.04282759502530098, 0.054526276886463165, 0.038397155702114105, 0.0011211838573217392, -0.008107996545732021, 0.015897464007139206, -0.004539030138403177, -0.013436108827590942, 0.0050892154686152935, -0.009584810584783554, -0.010344934649765491, -0.027407923713326454, 0.04656306654214859, 0.0040901945903897285, 0.014044208452105522, -0.0010560303926467896, 0.0204726904630661, 0.01715710014104843, 0.005628542043268681, 0.01470298320055008, 0.006327133160084486, 0.023831717669963837, 0.013899422250688076, -0.020516127347946167, 0.0076953573152422905, 0.00019342458108440042, -0.018648391589522362, -0.004499214235693216, 0.002769025508314371, -0.013124818913638592, -0.00945450272411108, -0.020212076604366302, 0.041785139590501785, -0.025844238698482513, -0.013798072934150696, -0.03173701465129852, -0.005758849438279867, -0.025989023968577385, 0.02804498001933098, -0.0399608388543129, -0.0409453809261322, -0.013921140693128109, -0.011966533958911896, -0.01056935265660286, -0.006862839683890343, 0.01406592596322298, 0.006406764965504408, 0.05863818898797035, 0.05249927565455437, 0.014471326023340225, -0.021703369915485382, -0.0152893653139472, 0.0014659547014161944, -0.013935619033873081, 0.009157692082226276, -0.02155858278274536, 0.008621986024081707, -0.0023618158884346485, 0.04004771262407303, 0.01966189220547676, 0.024497732520103455, -0.04065581038594246, -0.009946774691343307, 0.01903931237757206, -0.003862157231196761, -0.009338674135506153, 0.005704554729163647, -0.00976579263806343, 0.015260407701134682, -0.004615042824298143, 0.007329773623496294, 0.005342590622603893, 0.016968877986073494, -0.023629019036889076, -0.0154196722432971, 0.013088623061776161, 0.00999744888395071, -0.04227741062641144, -0.02276030369102955, -0.0009126020595431328, 0.006967809516936541, -0.017461149021983147, 0.01033045630902052, -0.03558831289410591, 0.006363329477608204, 0.0150432288646698, -0.017794156447052956, 0.0032015726901590824, 0.005559768993407488, 0.010866163298487663, 0.012878683395683765, -0.018662869930267334, -0.02635098807513714, 0.0005420412635430694, -0.022673433646559715, -0.017837591469287872, -0.03315591439604759, -0.02323809638619423, -0.012799051590263844, 0.0159264225512743, -0.026524731889367104, -0.04155348241329193, 0.006801305804401636, 0.021602019667625427, -0.024019939824938774, 0.024772824719548225, 0.012161994352936745, -0.004285655450075865, 0.007746032439172268, -0.015434150584042072, 0.024830739945173264, 0.01660691387951374, -0.016158077865839005, 0.014985314570367336, 0.02364349737763405, 0.003956268075853586, -0.004126390907913446, -0.018315384164452553, -0.024179203435778618, 0.012777334079146385, 0.007984928786754608, -0.012379173189401627, 0.0016740841092541814, -0.007869100198149681, -0.004365287255495787, 0.008288978599011898, 0.005114553030580282, 0.0006289127049967647, 0.014427890069782734, -0.029188787564635277, 0.010410088114440441, -0.02703148126602173, 0.006775968708097935, 0.005125412251800299, 0.002211600774899125, -0.0008813826716504991, -0.01074309553951025, -0.026872217655181885, -0.01494187954813242, -0.0007510755676776171, -0.007608485873788595, -0.006059279665350914, -0.0152893653139472, 0.00030789573793299496, 9.891801164485514e-05, -0.04207471013069153, 0.029377009719610214, -0.005852960050106049, -0.005342590622603893, -0.023686932399868965, 0.03726782649755478, 0.0036558376159518957, -0.021196618676185608, -0.0014270435785874724, 0.028957130387425423, -0.005979647394269705, 0.009092538617551327, 0.006573268678039312, 0.015376236289739609, -0.007673639338463545, 0.0005433986661955714, 0.02371588908135891, 0.01762041449546814, -0.0212255772203207, 0.02100839838385582, -0.042045753449201584, 0.026872217655181885, -0.0018315385095775127, 0.00843376386910677, -0.011445306241512299, -0.0006334372446872294, -0.015607893466949463, 0.015767157077789307, 0.01776519976556301, -0.011510459706187248, -0.01559341512620449, -0.006909895222634077, -0.022601040080189705, 0.0023654357064515352, 0.03422732651233673, -0.006873698905110359, -0.010887880809605122, -0.04586809501051903, -0.019908027723431587, 0.00205957586877048, -0.02942044474184513, 0.012118559330701828, -0.02183367684483528, 0.0016025961376726627, 0.02487417496740818, -0.032374072819948196, -0.012270583771169186, 0.0022695150692015886, -0.004061237443238497, -0.022050855681300163, -0.03193971514701843, -0.02277478389441967, -0.01728740707039833, -0.036833468824625015, -0.003389794146642089, -0.00854235328733921, -0.0305787306278944, 0.026278596371412277, 0.021587541326880455, 0.006747011560946703, 0.015390714630484581, -0.0035599172115325928, 0.0152893653139472, -0.0073442524299025536, -0.011380151845514774, -0.020689869299530983, -0.006348850671201944, -0.011409109458327293, 0.005834861658513546, 0.032692600041627884, 0.0014207091880962253, -0.04748969525098801, -0.021428275853395462, 0.028928173705935478, -0.03532769903540611, -0.00911425705999136, 0.002709301421418786, -0.00874505378305912, -0.016968877986073494, 0.0020975822117179632, -0.0034241806715726852, -0.007279098499566317, 0.028175288811326027, 0.008593028411269188, -0.03272155672311783, -0.012755615636706352, 0.0014225189806893468, -0.011698680929839611, 0.00048141228035092354, -0.019213056191802025, -0.013906662352383137, -0.07760510593652725, 0.007876339368522167, -0.02467147447168827, 0.028696516528725624, -0.0137184401974082, 0.010004688985645771, 0.00878124963492155, -0.002303901594132185, -0.019198577851057053, 0.022123247385025024, -0.0028088416438549757, -0.025250617414712906, 0.01246604509651661, 0.004636760335415602, -0.01747562736272812, 0.021167661994695663, -0.0024667854886502028, 0.00113928213249892, -0.015405192971229553, -0.005505474284291267, -0.006725293584167957, 0.021602019667625427, -0.011966533958911896, -0.004600564017891884, -0.014239668846130371, 0.008354132063686848, -0.0187063068151474, 0.0046693370677530766, -0.006301795598119497, -0.01612912118434906, -0.0075433324091136456, 0.013443347997963428, -0.0034513280261307955, 0.018518084660172462, 0.018474649637937546, -0.007731553632766008, -0.005530811846256256, 0.014203472062945366, 0.018547041341662407, -0.014869486913084984, 0.010344934649765491, 0.03631224110722542, -0.0012623498914763331, -0.0016749890055507421, -0.008687139488756657, -0.016433171927928925, 0.009070821106433868, -0.012900401838123798, 0.0031201308593153954, 0.01625942811369896, 0.004502833820879459, -0.00258261407725513, 0.00013698080147150904, -0.01321892999112606, -0.004575226455926895, 0.01298003364354372, 0.021399319171905518, -0.008455482311546803, 0.001865925034508109, 0.00486117834225297, 0.03906317055225372, 0.01903931237757206, -0.010352173820137978, -0.005538051016628742, -0.0002171784726670012, 0.01680961437523365, 0.010996470227837563, 0.022991960868239403, 0.022065334022045135, -0.0024432579521089792, 0.007355111185461283, -0.001943747396580875, 0.01511562243103981, 0.03665972873568535, 0.007329773623496294, -0.006348850671201944, 0.016187036409974098, 0.0006031227530911565, 0.0016777036944404244, -0.007659160997718573, -0.014254147186875343, -0.008520635776221752, 0.023469753563404083, 0.020212076604366302, -0.000809442310128361, -0.0283200740814209, -0.004549888893961906, -0.015825072303414345, -0.00533897103741765, 0.01023634523153305, 0.02290509082376957, 0.004567987285554409, 0.03993188217282295, 0.010055363178253174, -0.005067497957497835, 0.024497732520103455, 0.010431806556880474, 0.014630590565502644, 0.0036630770191550255, 0.0018125353381037712, 0.01524592936038971, -0.021167661994695663, 0.014616111293435097, -0.02568497508764267, -0.0016125502297654748, -0.02176128327846527, -0.009635484777390957, 0.009570331312716007, -0.01877869851887226, -0.028986087068915367, -0.006797686219215393, 0.0004967957502231002, -0.023397361859679222, 0.00399970356374979, -0.00401418237015605, 0.00898395013064146, -0.0028667559381574392, -0.012335737235844135, -0.009577570483088493, -0.0005836671334691346, -0.007565050385892391, 0.01534727867692709, 0.003735469887033105, -0.045433737337589264, -0.013189973309636116, -0.0026007122360169888, 0.004615042824298143, 0.007861861027777195, -0.009034624323248863, 0.018691828474402428, -0.002613381016999483, 0.0076446826569736, 0.00346399680711329, 0.0042458390817046165, -0.005744370631873608, 0.024700433015823364, 0.0389183834195137, -0.03246094286441803, 0.009816466830670834, -0.031331613659858704, 0.017446670681238174, -0.00806456059217453, 0.008774010464549065, 0.020993920043110847, -0.0023907730355858803, -0.00503492122516036, 0.011249844916164875, -0.023484231904149055, -0.001537442672997713, -0.021196618676185608, 0.012719419784843922, 0.015492064878344536, 0.026524731889367104, -0.01586850732564926, -0.007514375261962414, -0.02222459763288498, -0.008716096170246601, -0.00472725136205554, 0.002962676342576742, -0.003992464393377304, -0.000328030000673607, 0.013595372438430786, 0.02012520655989647, -0.011604569852352142, 0.008998428471386433, -0.017388757318258286, -0.010163952596485615, -0.01494187954813242, -0.00989609956741333, -0.010641745291650295, 0.0014188993955031037, 0.004756208509206772, -0.03749948367476463, -0.04329090937972069, 0.02168889157474041, 0.0013275034725666046, -0.016317343339323997, -0.008578550070524216, 0.028016023337841034, 0.0013238837709650397, 0.015738200396299362, -0.007213945034891367, -0.0014442368410527706, 0.03828132525086403, 0.015492064878344536, 0.0179534200578928, 0.0016025961376726627, 0.004647619556635618, -0.015028750523924828, 0.0005958834663033485, 0.011872423812747002, 0.018489127978682518, -0.0045136925764381886, -0.013334758579730988, 0.013066905550658703, -0.016853049397468567, 0.03605162724852562, 0.022065334022045135, -0.010062603279948235, -0.027538230642676353, -0.0052050440572202206, -0.0007035677554085851, 0.028421424329280853, 0.010127756744623184, -0.002743688179180026, -0.007861861027777195, -0.019908027723431587, 0.011206409893929958, 0.019299928098917007, -0.005302774719893932, 0.015578935854136944, 0.006866459734737873, 0.0010361223248764873, -0.007630203850567341, -0.018547041341662407, -0.018214035779237747, 0.001287687337026, -0.008079038932919502, 0.01843121275305748, -0.0149129219353199, 0.023223618045449257, -0.005281056743115187, -0.024019939824938774, -0.01430482231080532, 0.008491678163409233, 0.01559341512620449, -0.0178231131285429, -0.04607079550623894, -0.012596352025866508, 0.01776519976556301, 0.0022532267030328512, 0.00999744888395071, 0.001668654615059495, -0.01460887212306261, -0.0008307076641358435, -0.006801305804401636, 0.03286634385585785, -0.019285449758172035, 0.005277437157928944, -0.004484735429286957, -0.025844238698482513, 0.0004434060538187623, -0.0022984722163528204, 0.0039345500990748405, 0.006547931116074324, 0.031128915026783943, -0.026582645252346992, -0.011814509518444538, 0.0018858331022784114, 0.025540189817547798, 0.008708856999874115, -0.011915858834981918, -0.02771197445690632, 0.029261181131005287, -0.005983266979455948, 0.022311469539999962, 0.00035608222242444754, -0.020385820418596268, 0.010337695479393005, 0.02032790519297123, 0.011126777157187462, 0.01559341512620449, -0.0075795287266373634, -0.010706898756325245, 0.0351249985396862, -0.016968877986073494, 0.0046114232391119, -0.02236938290297985, -0.0011012759059667587, -0.022514168173074722, -0.008679899387061596, 0.003319211071357131, -0.017504585906863213, -0.021790239959955215, -0.0038259609136730433, -0.0009592049173079431, -0.0013636999065056443, -0.010996470227837563, -0.001873164321295917, 0.0077677504159510136, -0.0052014244720339775, 0.0043544284999370575, -0.032026585191488266, 0.0245266892015934, 0.004455778282135725, 0.026278596371412277, 0.0057335118763148785, -0.024961046874523163, 0.022861653938889503, 0.006309034768491983, 0.00836861040443182, 0.0023799140471965075, 0.019213056191802025, -0.014008011668920517, 0.026336509734392166, -0.0241357684135437, -0.01612912118434906, 0.004709153436124325, -0.006750631146132946, 0.0013953717425465584, 0.008549592457711697, -0.0008148717461153865, -0.004289275035262108, -0.004292894620448351, 0.00819486752152443, -0.00030857441015541553, -0.010272542014718056, 0.0008564976160414517, 0.009859902784228325, 0.0016143600223585963, 0.008687139488756657, -0.0074998969212174416, -0.026104852557182312, 0.009403828531503677, -0.0122633446007967, -0.009686159901320934, 0.023353924974799156, 0.009773031808435917, -0.01762041449546814, -0.018329864367842674, -0.011756595224142075, -0.02297748252749443, 0.028493816033005714, 0.0017618604470044374, -0.05009583383798599, -0.008245542645454407, -0.012842487543821335, -0.006406764965504408, 0.015535500831902027, -0.029434923082590103, -0.03272155672311783, 0.04818466678261757, 0.013993533328175545, 0.007014865055680275, 0.017432192340493202, -0.006645661313086748, 0.010395609773695469, -0.00715241115540266, -0.018040291965007782, 0.002258656080812216, 0.01321892999112606, 0.01695439964532852, 0.010844445787370205, 0.02527957409620285, -0.0011175642721354961, 0.0070040058344602585, -0.015463107265532017, 0.021775761619210243, 0.026322031393647194, 0.0005881917313672602, 0.004633140750229359, 0.008383089676499367, 0.0028613265603780746, 0.009910577908158302, 0.025916632264852524, 0.018474649637937546, 0.013921140693128109, 0.02183367684483528, -0.03483542799949646, -0.050182707607746124, -0.017519064247608185, -0.021384840831160545, -0.00156278011854738, -0.0008121569990180433, -0.017171578481793404, 0.017301885411143303, 0.027538230642676353, -0.011561133898794651, 0.007101736031472683, -0.021384840831160545, 4.790368984686211e-05, -0.017200535163283348, 0.020284470170736313, 0.0033101618755608797, -0.02467147447168827, -0.0021319687366485596, -0.0050892154686152935, 0.018822135403752327, 0.002959056757390499, 0.010989231057465076, -0.0058493404649198055, 0.01789550669491291, -0.022485211491584778, -0.010692420415580273, -0.0053570689633488655, -0.006446581333875656, -0.007615725509822369, -0.0015772586921229959, -0.004441299941390753, -0.012762854807078838, -0.007206705864518881, 0.014550957828760147, -0.00975855253636837, 0.008752292953431606, -0.005483756773173809, 0.01450752280652523, -0.035877883434295654, 0.01612912118434906, -0.023600060492753983, 0.004162587691098452, -0.00047779266606085, 0.01754802092909813, 0.005950690247118473, 0.014956357888877392, 0.009143213741481304, 0.031215786933898926, 0.018127163872122765, 0.028421424329280853, -0.003411511890590191, -0.043406739830970764, 0.011734876781702042, 0.02371588908135891, -0.014326539821922779, -0.0003153612487949431, -0.018489127978682518, -0.008216585963964462, -0.009845424443483353, 0.028884736821055412, -0.008042843081057072, -0.001969084842130542, -0.030810385942459106, -0.0002895712968893349, 0.013812551274895668, -0.0016025961376726627, -0.0007877244497649372, -0.004224121570587158, -0.02562705986201763, 0.01877869851887226, 0.006721673998981714, 0.01986459083855152, 0.006909895222634077, 0.014087644405663013, 0.0034024629276245832, -0.000343865918694064, 0.014478565193712711, -0.018199555575847626, 0.01809820719063282, -0.0356462262570858, -0.00342961004935205, -0.010685181245207787, -0.01715710014104843, -0.004882896319031715, -0.01521697174757719, -0.016302864998579025, 0.00976579263806343, -0.010627266950905323, 0.011336716823279858, -0.00486117834225297, 0.0072754789143800735, 0.03321382775902748, -0.006189586594700813, -0.01890900544822216, 0.005878297612071037, 0.012060645036399364, -0.0009008382330648601, 0.004111912567168474, -0.005429462064057589, -0.004444919526576996, -0.03277947008609772, 0.023831717669963837, 0.015492064878344536, -0.011162973940372467, -0.004698294214904308, 0.004053998272866011, -0.009251803159713745, 0.0187063068151474, 0.03234511613845825, -0.034401070326566696, -0.02194950543344021, -0.0003250890295021236, 0.004434060771018267, -0.0056936959736049175, -0.03570414334535599, 0.012661505490541458, -0.005342590622603893, -0.02664056047797203, 0.012270583771169186, -0.006678238045424223, 0.011503219604492188, -0.023672454059123993, 0.01006984245032072, -0.01145978458225727, -0.01565132848918438, 0.014384454116225243, 0.03277947008609772, -0.004227741155773401, 0.023411840200424194, 0.001431568176485598, -0.005462038796395063, 0.042798638343811035, 0.003416941501200199, 0.023165704682469368, 0.0017609555507078767, 0.02290509082376957, 0.00527019752189517, -0.006938852369785309, -0.00206681527197361, -0.004962528124451637, -0.003643169067800045, -8.336486644111574e-05, 0.001999851781874895, -0.017736243084073067, -0.03225824236869812, -0.01903931237757206, 0.009874381124973297, -0.018199555575847626, 0.007315295282751322, 0.022543126717209816, 0.013769115321338177, -0.01953158527612686, -0.002184453420341015, 0.002046907087787986, -0.001654176041483879, -0.000518513610586524, -0.010214627720415592, -0.009403828531503677, 0.01695439964532852, -0.013595372438430786, -0.004756208509206772, -0.002962676342576742, -0.011857944540679455, -0.020602997392416, -0.008752292953431606, -0.0214861910790205, 0.0015121051110327244, -0.00260976143181324, 0.0038512982428073883, 0.000719403731636703, 0.004158967640250921, -0.01699783466756344, 0.0022278891410678625, -0.0030133514665067196, 0.0022550364956259727, 0.018822135403752327, 0.01524592936038971, 0.01701231487095356, -0.010460763238370419, -0.00833241455256939, -0.00928075984120369, -0.0004275701357983053, -0.00796321127563715, -0.01953158527612686, -0.002698442665860057, 0.0058493404649198055, -0.008383089676499367, 0.04088746756315231, 0.0024993622209876776, 0.013059665448963642, 0.00826726108789444, -0.008057321421802044, -0.007253761403262615, -0.005610444117337465, 0.02242729812860489, -0.0004832221020478755, 0.00346399680711329, -0.0022731346543878317, 0.023875154554843903, -0.009700638242065907, 0.0048937550745904446, -0.05021166428923607, 0.01026530284434557, 0.00826726108789444, 0.017533542588353157, -0.014355497434735298, 0.01715710014104843, 0.00878124963492155, -0.015680287033319473, -0.026582645252346992, 0.019603976979851723, -0.009816466830670834, 0.025974545627832413, -0.004079335834830999, 0.002323809778317809, 0.020689869299530983, 0.019734283909201622, -0.0027961728628724813, -0.00782566424459219, -0.018547041341662407, 0.015028750523924828, 0.0030911737121641636, 0.010953034274280071, -0.0030423086136579514, 0.024295032024383545, 0.011300520040094852, 0.016302864998579025, 0.0003920524031855166, -0.003916451707482338, 0.013530218973755836, 0.010301498696208, -0.01953158527612686, -0.011184691451489925, 0.005114553030580282, -0.005150749348104, 0.02073330618441105, 0.005194185301661491, -0.017374278977513313, -0.027364488691091537, -0.011517698876559734, 0.007329773623496294, 0.01565132848918438, 0.0009365821606479585, 0.022745825350284576, -0.016491085290908813, 0.00891155656427145, -0.0028558969497680664, -1.3099990610498935e-05, 0.007615725509822369, -0.018590478226542473, -0.019806677475571632, -0.028305595740675926, -0.0015193443978205323, -0.01598433591425419, -0.00030043022707104683, -0.006660140119493008, -0.010829966515302658, -0.01693992130458355, 0.004477496258914471, 0.017721764743328094, -0.020849134773015976, 0.013899422250688076, 0.030665600672364235, -0.0027038720436394215, 0.027827803045511246, 0.0022984722163528204, 0.004995104856789112, 0.014616111293435097, -0.002705681836232543, -0.02154410444200039, -0.011669723317027092, 0.021240055561065674, -0.009012906812131405, 0.0067361523397266865, -0.0017084707506000996, 0.0009402018040418625, -0.01775072142481804, 0.0020903428085148335, -0.0076953573152422905, 0.005483756773173809, -0.0021500668954104185, 0.004864797927439213, 0.007666400168091059, -0.01620151475071907, 0.009425546042621136, 0.004405103623867035, -0.00552357267588377, 0.008469960652291775, 0.013341997750103474, -0.00951965618878603, 0.011445306241512299, 0.008136953227221966, -0.0015437770634889603, 0.016635870561003685, 0.0093531534075737, -0.017519064247608185, 0.003697463544085622, -0.02222459763288498, -0.018416734412312508, 0.017721764743328094, 0.01182898785918951, -0.015839550644159317, -0.005013203248381615, 0.007101736031472683, -0.00812971405684948, -0.018937963992357254, -0.013696722686290741, -0.0030911737121641636, 0.013935619033873081, 0.0039779855869710445, -0.015072186477482319, 0.02826215885579586, -0.003322830656543374, -0.021109748631715775, -0.0053570689633488655, -0.015405192971229553, -0.0044666375033557415, 0.012856965884566307, 0.00528467632830143, 0.023469753563404083, -0.012632547877728939, 0.01708470657467842, -0.004191544838249683, 0.010938555933535099, -0.0018840233096852899, 0.019806677475571632, -0.024685952812433243, 0.009251803159713745, 0.024961046874523163, 0.011568374000489712, 0.02284717559814453, 0.006551550701260567, 0.01250224094837904, 0.00045878952369093895, -0.020704347640275955, -0.00013777260028291494, -0.02080569788813591, 0.010822727344930172, -0.01135119516402483, -0.012856965884566307, -0.00993229541927576, -0.016230471432209015, -0.01653452217578888, -0.02839246578514576, 0.036283284425735474, -0.011032667011022568, 0.0020360483322292566, -0.013725679367780685, -0.004376146476715803, -0.005143510177731514, -0.0017609555507078767, 0.0036160217132419348, 0.023701410740613937, 0.017171578481793404, 0.028653079643845558, 0.009823706932365894, -0.014391694217920303, 0.0016605104319751263, -0.0037825251929461956, -0.001209865091368556, -0.0308393444865942, 0.035819970071315765, -0.00938934925943613, -0.007666400168091059, 0.005802284926176071, -0.015506543219089508, 0.007724314462393522, -0.01256739441305399, -0.008448243141174316, 0.027422402054071426, -0.004061237443238497, 0.023571103811264038, -0.0027310193981975317, -0.0017446670681238174, -0.012828009203076363, -0.022586561739444733, 0.0034694261848926544, -0.024309510365128517, 0.006656520534306765, 0.00945450272411108, -0.004897374659776688, -0.028146330267190933, -0.011068862862884998, 0.014203472062945366, 0.023802760988473892, 0.029319094493985176, 0.0007497182232327759, -0.006866459734737873, 0.00691351480782032, 0.02074778452515602, 0.0032667263876646757, -0.0033988431096076965, -0.009563092142343521, 0.004050378687679768, -0.018677348271012306, -0.01063450612127781, 0.004553508944809437, -0.026191724464297295, -0.017359798774123192, 0.001057840185239911, 0.02778436616063118, 0.0038151019252836704, -0.005386026110500097, 0.0006782303098589182, 0.006718054413795471, 0.005302774719893932, -0.00043096355511806905, 0.019285449758172035, -0.0009474410908296704, -0.000388885207939893, -0.0015075806295499206, 0.0062692188657820225, -0.009599288925528526, -0.0029047620482742786, 0.02894265204668045, 0.0046693370677530766, 0.00650449562817812, 0.017707284539937973, -0.007861861027777195, 0.0019075509626418352, 0.02095048315823078, -0.023484231904149055, 0.012285063043236732, 0.01481157261878252, -0.006189586594700813, -0.000368750945199281, 0.00521952286362648, -0.006938852369785309, 0.0002827844873536378, -0.020776741206645966, -0.01043904572725296, 0.014970836229622364, -0.024439817294478416, -0.00024070614017546177, -0.004549888893961906, 0.009172171354293823, -1.808406705094967e-05, -0.008180389180779457, -0.01152493804693222, 0.003237769240513444, 0.01885109208524227, 0.03028915822505951, -0.003844059072434902, -0.002046907087787986, 0.001960035879164934, 0.004564367700368166, -0.023078832775354385, 0.01559341512620449, 0.012458804994821548, -0.010909599252045155, -0.0031327996402978897, 0.011901380494236946, 0.010764813050627708, -0.023817239329218864, -0.01135119516402483, 0.02860964462161064, -0.002568135503679514, 0.012936597689986229, -0.014999793842434883, 0.021471712738275528, 0.02520718239247799, 0.00993229541927576, -0.007210325449705124, 0.013341997750103474, -0.014319300651550293, -0.0031798549462109804, 0.021095270290970802, 0.02093600481748581, 0.0038042429368942976, 0.015376236289739609, -0.011025427840650082, 0.0005479232058860362, -0.025713931769132614, -0.0028522773645818233, 0.002296662423759699, 0.02303539775311947, 0.01979219913482666, 0.007022104226052761, -0.012075123377144337, 0.006873698905110359, -0.017533542588353157, 0.02126901224255562, -0.007340632379055023, -0.0178231131285429, 0.0009954014094546437, -0.01638973504304886, 3.693165126605891e-05, 0.0057769473642110825, -0.014883965253829956, -0.0015745440032333136, -0.012473284266889095, 0.010496960021555424, -0.012878683395683765, 0.02404889650642872, 0.005939831491559744, -0.0038368196692317724, 0.025091353803873062, -0.0015636850148439407, -0.005451179575175047, 0.0053100138902664185, 0.0032504377886652946, -0.006685477681457996, 0.004401484038680792, -0.004003323148936033, -0.0020903428085148335, 0.0012315829517319798, 0.010685181245207787, 0.0011682392796501517, 0.029044002294540405, 0.020762262865900993, 0.006196825765073299, 0.0011257084552198648, 0.028276637196540833, 0.010547635145485401, -0.011235366575419903, 0.013798072934150696, -0.0389183834195137, 0.028754429891705513, 0.005744370631873608, -0.0047344909980893135, -0.011271563358604908, -0.007257380988448858, 0.008593028411269188, -0.013884943909943104, -0.012835248373448849, -0.006352470722049475, 0.003742709057405591, -0.01830090582370758, 0.014008011668920517, 0.00042327179107815027, -0.012784573249518871, 0.005223142448812723, 0.01419623289257288, 0.0008610221557319164, -0.008136953227221966, 0.0035671566147357225, 0.009345914237201214, 0.01802581362426281, 0.010084320791065693, -9.592049173079431e-05, -0.0007990358280949295, -0.014782615005970001, -0.0043109930120408535, 0.019777720794081688, 0.002007091185078025, -0.006515354383736849, 0.006515354383736849, -0.014471326023340225, 0.02752375230193138, -0.011387391947209835, 0.011742115952074528, -0.00972235668450594, 0.015506543219089508, -0.023165704682469368, 0.0038259609136730433, -0.027002524584531784, -0.005860199220478535, -0.0008488058811053634, -0.021862633526325226, -0.023498712107539177, -0.0011401870287954807, -0.010663463734090328, 0.0042024035938084126, -0.0009583000210113823, 0.018604956567287445, -0.0012469664216041565, 0.006942471954971552, 0.03639911115169525, 0.00594707066193223, -0.00728271808475256, -0.007594007533043623, -0.0053570689633488655, -0.005096455104649067, -0.0108082490041852, 0.004177066031843424, -0.0031472782138735056, 0.011003709398210049, -0.018141642212867737, 0.003876635804772377, -0.012234387919306755, -0.030462902039289474, -0.004872037097811699, 0.015810593962669373, -0.042595937848091125, 0.0045064534060657024, 0.017736243084073067, 0.0016532711451873183, -0.0160567294806242, -0.006417624186724424, 0.004361667670309544, -0.005686456337571144, 0.00019263278227299452, -0.02290509082376957, 0.012943836860358715, 0.012907641008496284, 0.022065334022045135, -0.0018451121868565679, -0.0045064534060657024, 0.00703296298161149, -0.01261083036661148, -0.004082955420017242, 0.01776519976556301, 0.005719033069908619, 0.008419285528361797, -0.003710132325068116, -0.0012089601950719953, 0.005766088608652353, 0.008853642269968987, -0.0019274590304121375, -0.0043978639878332615, 0.004900994244962931, 0.012234387919306755, -0.005885536782443523, 0.022108769044280052, 0.007329773623496294, 0.00430375337600708, -0.00826726108789444, -0.0028088416438549757, -0.015535500831902027, -0.014152797870337963, 0.009374870918691158, -0.02684325911104679, -0.0093531534075737, 0.027494795620441437, -0.02249968983232975, -0.00011741211346816272, 0.020226554945111275, -0.029304616153240204, -0.02474386803805828, -0.001369129284285009, -0.023020919412374496, 0.013465065509080887, 0.003735469887033105, 0.0108082490041852, 0.005071117542684078, 0.007948732003569603, 0.012350216507911682, 0.006088236812502146, 0.006464679259806871, 0.014753658324480057, 0.015636850148439407, -0.026756389066576958, -0.018040291965007782, -0.000648820714559406, 0.010533155873417854, 0.041582439094781876, -0.029087437316775322, -0.004455778282135725, 0.0013383623445406556, 0.008079038932919502, 0.005129031836986542, -0.00399970356374979, -0.006457440089434385, 0.01680961437523365, 0.01937231980264187, -0.0020758642349392176, 0.0053570689633488655, -0.0283200740814209, 0.017200535163283348, 0.02325257658958435, -0.014652308076620102, -0.006337991915643215, 0.015332800336182117, 0.019024834036827087, 0.009729595854878426, 0.0007963210809975863, -0.004010562784969807, -0.0001842623605625704, 0.007724314462393522, -0.01638973504304886, 0.0039309305138885975, 0.025844238698482513, -0.015260407701134682, 0.00040404245373792946, 0.004481115844100714, 0.013501262292265892, -0.010395609773695469, 0.015318321995437145, 0.02113870531320572, 0.02054508402943611, -0.014456847682595253, -0.0030332594178617, -0.011134016327559948, 0.0054222228936851025, 0.03469064086675644, -0.00516522815451026, -0.007948732003569603, 0.010554874315857887, -0.0010786531493067741, -0.0033354994375258684, 0.011800030246376991, 0.01931440643966198, 0.006055660080164671, -0.00357620557770133, 0.0065805078484117985, 0.0321134589612484, 0.014493043534457684, -0.00036128543433733284, 0.012256105430424213, -0.01992250606417656, -0.0032612967770546675, -0.01767832785844803, 0.01230678055435419, 0.03457481414079666, 0.011162973940372467, 0.0068917968310415745, -0.004343569744378328, -0.006815784610807896, -0.0140948835760355, -0.00691351480782032, 0.023600060492753983, 0.026191724464297295, -0.007177748717367649, 0.01734532043337822, -0.009331434965133667, 0.010685181245207787, -0.011734876781702042, -0.003460376989096403, -0.01267598383128643, 0.0017790537094697356, -0.0053534493781626225, 0.0185759998857975, 0.011872423812747002, 0.018662869930267334, 0.020907048135995865, 0.03469064086675644, -0.019705327227711678, 0.004140869714319706, -0.009027385152876377, 0.03130265697836876, -0.03063664399087429, 0.001245156629011035, -0.03002854436635971, -0.006254740059375763, 0.0058457208797335625, -0.014840529300272465, 0.01317549403756857, -0.021037355065345764, -0.0051978048868477345, 0.019473670050501823, 0.012393651530146599, 0.025844238698482513, -0.004553508944809437, -0.0035671566147357225, 0.004962528124451637, 0.002260466106235981, 0.01298003364354372, -0.016360778361558914, -0.007297196891158819, -0.00799940712749958, 0.01521697174757719, -0.0022134105674922466, 0.002229698933660984, 0.015448628924787045, 0.0032323396299034357, 0.011865184642374516, 0.016187036409974098, -0.006399525795131922, -0.011626288294792175, -0.0012985463254153728, 0.014239668846130371, 0.005027681589126587, 0.0033246404491364956, -0.033387571573257446, 0.0035400092601776123, 0.0269156526774168, -0.003597923554480076, 0.0015971667598932981, -0.01715710014104843, -0.023194661363959312, -0.015028750523924828, -0.008535114116966724, 0.026394424960017204, 0.012342976406216621, 0.018923485651612282, 0.001062364666722715, -0.02960866503417492, -0.0031273700296878815, 0.0025989024434238672, -0.0013709391932934523, -0.008455482311546803, 0.007753271609544754, 0.006721673998981714, 0.0068917968310415745, 0.000585476984269917, -0.033850885927677155, -0.014927400276064873, -0.024164725095033646, -0.006508115213364363, 0.010605549439787865, -0.010011928156018257, 0.004868417512625456, -0.0006135291769169271, 0.009027385152876377, -0.013834268786013126, -0.01348678395152092, -0.017403235659003258, 0.015072186477482319, -0.00249031325802207, 0.0050023444928228855, 0.016693785786628723, 0.006395906209945679, 0.0050023444928228855, 0.004643999971449375, 0.005451179575175047, -0.004799644462764263, -0.004050378687679768, 0.011488741263747215, 0.012118559330701828, -0.008165910840034485, 0.008802968077361584, -0.003563536796718836, -0.009816466830670834, 0.013472304679453373, -0.006500875577330589, 0.023339446634054184, -0.023701410740613937, 0.0006433912203647196, 0.01708470657467842, -0.024628039449453354, -0.017403235659003258, 0.01986459083855152, 0.01054039504379034, -0.014319300651550293, -0.016824092715978622, 0.0015510163502767682, -0.014449608512222767, -0.00833241455256939, -0.007029343396425247, -0.01054039504379034, -0.007420264650136232, 0.025308532640337944, -0.012777334079146385, -0.0043580480851233006, -0.0007261905120685697, 0.005288295913487673, -0.0040431395173072815, -0.015202493406832218, 0.01809820719063282, -0.016968877986073494, 0.01402973011136055, 0.0028269398026168346, -0.004951669368892908, 0.017330842092633247, -0.03457481414079666, 0.03532769903540611, 0.010721377097070217, -0.011336716823279858, -0.01796790026128292, -0.01627390645444393, 0.006620323751121759, -0.007622964680194855, -0.005364308599382639, 0.02968105860054493, -0.011257084086537361, 0.004995104856789112, -0.027017002925276756, 8.624926704214886e-05, 0.0008664516499266028, -0.03978709876537323, 0.013385433703660965, 0.004977006930857897, 0.012878683395683765, -0.01176383439451456, -0.00019206722208764404, 0.00819486752152443, -0.011271563358604908, 0.010185671038925648, -0.009396588429808617, 0.028406944125890732, -0.01638973504304886, -2.1746125639765523e-05, -0.006019463296979666, 0.006656520534306765, -0.0036775555927306414, -0.000675515562761575, -0.006880938075482845, -0.007264620158821344, 0.013508501462638378, -0.01971980556845665, -0.015622371807694435, -0.012285063043236732, -0.0021536864805966616, 0.003062216565012932, -0.004832221195101738, -0.0021283491514623165, -0.015405192971229553, -0.013660525903105736, -0.0005845720879733562, 0.02542436122894287, 0.009794749319553375, -0.018315384164452553, -0.012408130802214146, 0.03393775597214699, 0.006627563387155533, 0.001280448166653514, 0.0028124612290412188, -0.0013564606197178364, 0.008643703535199165, 0.004444919526576996, -0.008462721481919289, 0.0008175864932127297, -0.04213262349367142, 0.022745825350284576, 0.0022441775072366, 0.0075216144323349, 0.0025029820390045643, 0.005480136722326279, 0.003654027823358774, -0.0330980010330677, 0.018112685531377792, 0.022007418796420097, -0.013573654927313328, 0.024295032024383545, -0.0014623351162299514, -0.012176473625004292, -0.016172558069229126, 0.0078039467334747314, -0.007203086279332638, -0.001181812840513885, 0.014616111293435097, -0.0031273700296878815, -0.010272542014718056, -0.0007524329121224582, -0.01135119516402483, -0.007206705864518881, 0.0010958464117720723, -0.023397361859679222, -0.023353924974799156, -0.02894265204668045, 7.64649230404757e-05, -0.001880403608083725, -0.003869396634399891, 0.00498062651604414, 0.005682836752384901, -0.019908027723431587, 0.015680287033319473, -0.01267598383128643, 0.009874381124973297, 0.015130100771784782, -0.008165910840034485, 0.000161865827976726, 0.0007723409798927605, 0.00911425705999136, 0.014710222370922565, 0.009541374631226063, -0.0009320576209574938, 0.006779588293284178, 0.018112685531377792, 0.0051579889841377735, 0.017794156447052956, 8.624926522315945e-06, 0.012183712795376778, 2.3852870072005317e-05, -0.005498235113918781, -0.009056342765688896, 0.014225190505385399, 0.006786827463656664, 0.007235663011670113, -0.013124818913638592, -0.017099184915423393, -0.015767157077789307, -0.023498712107539177, 0.004093814175575972, -0.0023654357064515352, 0.01494187954813242, 0.01026530284434557, 0.0040901945903897285, 0.009331434965133667, -0.013689483515918255, -0.026061417534947395, -0.03196867182850838, -0.001386322663165629, 0.014587154611945152, -1.7165017197839916e-05, 0.00945450272411108, 0.010562113486230373, 0.018590478226542473, 0.010431806556880474, -0.028175288811326027, -0.0058493404649198055, 0.02750927396118641, -0.02168889157474041, 0.017374278977513313, -0.019126184284687042, 0.005570627748966217, -0.009917817078530788, -0.015578935854136944, 0.005038540810346603, 0.020110726356506348, -0.009382110089063644, -0.01267598383128643, 0.014999793842434883, -0.012495001778006554, -0.007441982626914978, 0.03023124486207962, 0.017996856942772865, -0.0019075509626418352, 0.006276458036154509, 0.004546269308775663, -0.0010153093608096242, -0.001640602364204824, 0.0032395790331065655, 0.013812551274895668, -0.005053019151091576, 0.004365287255495787, 0.0009175790473818779, -0.01789550669491291, 0.005414983257651329, 0.014167276211082935, -0.011611809022724628, -0.013233408331871033, 0.009490699507296085, 0.002130158944055438, -0.013993533328175545, 0.0025409881491214037, -0.016360778361558914, 0.00028730902704410255, 0.003949028439819813, -0.0001409397809766233, 0.006146151106804609, 0.009845424443483353, -0.010127756744623184, -0.009968492202460766, 0.011278802528977394, 0.013986294157803059, -0.0001191088231280446, 0.01607120782136917, -0.026133811101317406, -0.0036920341663062572, 0.010822727344930172, 0.0017926273867487907, -0.0033463584259152412, -0.010663463734090328, -0.01598433591425419, -0.004412342794239521, -0.027002524584531784, 0.006207684986293316, 0.030752472579479218, 0.006779588293284178, 0.019560541957616806, -0.025047916918992996, 0.01304518710821867, -0.01625942811369896, 0.0020089009776711464, 0.006678238045424223, -0.007318914867937565, 0.020501649007201195, 0.011901380494236946, 0.009468981996178627, -0.003601543139666319, 0.016968877986073494, -0.013609851710498333, -0.0038512982428073883, 0.0005130841745994985, -0.004864797927439213, -0.008614745922386646, 0.007369589526206255, 4.4906173570780084e-05, 0.001710280543193221, 0.002426969585940242, -0.005462038796395063, 0.019546063616871834, 0.01876422017812729, 0.0028939032927155495, -0.000388885207939893, 0.020356861874461174, -0.01708470657467842, 0.007666400168091059, 0.001717519829981029, 0.018344342708587646, -0.014883965253829956, -0.0005569722852669656, 0.02629307471215725, -0.027827803045511246, 0.0006691811722703278, 0.014818811789155006, 0.012856965884566307, 0.0007479083724319935, 0.009917817078530788, -0.0008370420546270907, -0.005791426170617342, 0.007550571579486132, 0.02215220406651497, 0.02141379751265049, -0.000719403731636703, 0.016766179352998734, 0.004434060771018267, 0.018315384164452553, -0.005983266979455948, -0.00413363054394722, -0.023875154554843903, 0.021182140335440636, -0.032287199050188065, 0.00020292613771744072, -0.016824092715978622, 0.02480178140103817, -0.010033645667135715, 0.007702596485614777, 0.007724314462393522, 0.010077081620693207, -0.010048124007880688, 0.013703961856663227, 0.003333689644932747, 0.005027681589126587, -0.014174515381455421, -0.029710015282034874, -0.02590215392410755, 0.03089725784957409, 0.018865570425987244, -0.0016804184997454286, 0.03547248616814613, -0.00388025538995862, 0.0028595165349543095, -0.0018749742303043604, 0.005512713920325041, -0.010909599252045155, 0.019285449758172035, -0.004756208509206772, 0.007043822202831507, -0.003988844808191061, -0.028088416904211044, -0.016910964623093605, 0.005986886564642191, -0.01918409951031208, 0.0007628393941558897, 0.0009791129268705845, 0.0330980010330677, 0.016491085290908813, 0.0023762944620102644, -0.012154755182564259, -0.025786325335502625, 0.0008424714906141162, -0.0004977007047273219, -0.006518973968923092, -0.02690117433667183, 0.01077929139137268, 0.0057769473642110825, 0.01122088823467493, 0.01985011249780655, 0.0012017209082841873, 0.020964963361620903, 0.011105059646070004, -0.0011094200890511274, -0.013935619033873081, -0.01267598383128643, 0.0017193296225741506, -0.012712180614471436, -0.0187063068151474, 0.01688200794160366, -0.019502626731991768, -0.0003698820946738124, -0.010598309338092804, 0.008419285528361797, -0.006971429102122784, -0.024164725095033646, -0.007449221797287464, 0.014442368410527706, -0.0014044208219274879, 0.0043978639878332615, 0.0014949118485674262, 0.02236938290297985, 0.008209346793591976, -0.04027936980128288, -0.007449221797287464, -0.0053100138902664185, -0.007615725509822369, -0.008853642269968987, 0.0005325397360138595, 0.010547635145485401, -0.009476221166551113, 0.013298561796545982, 0.00016537235933355987, -0.0004368454683572054, -0.01699783466756344, -0.001647841650992632, -0.009773031808435917, -0.007257380988448858, -0.017026793211698532, -0.03023124486207962, -0.006207684986293316, 0.006880938075482845, -0.01232849806547165, 0.00843376386910677, -0.017808634787797928, -0.020356861874461174, 0.008383089676499367, 0.015086664818227291, 0.002698442665860057, -0.005722653120756149, -0.0005044874851591885, 0.023093311116099358, -0.0019184098346158862, 0.0007691737846471369, 0.013646047562360764, -0.034256286919116974, 0.01023634523153305, 0.012082362547516823, -0.007557811215519905, -0.016577957198023796, 0.020298948511481285, 0.001862305449321866, 0.0013854177668690681, 0.025800803676247597, 0.0077749895863235, -0.00782566424459219, -0.0005940736155025661, 0.0025210801977664232, 0.025916632264852524, -0.007311675231903791, 0.0053136334754526615, -0.005190565716475248, -0.008274500258266926, 0.012161994352936745, -0.005519953090697527, -0.022543126717209816, -0.010829966515302658, 0.018995877355337143, 0.0002990728535223752, -0.001714805024676025, 0.006062899250537157, -0.01317549403756857, 0.017982378602027893, -0.00040766209713183343, 0.023571103811264038, -0.0003246365813538432, -5.2428240451263264e-05, 0.0015102953184396029, -0.000931152724660933, 0.011582852341234684, 0.010106038302183151, -0.009577570483088493, 0.008658181875944138, 0.010786531493067741, -0.02005281299352646, 0.007673639338463545, 0.002245987532660365, 0.006182347424328327, 0.004987865686416626, 0.00018154762801714242, -0.009548613801598549, 0.007014865055680275, 0.006037561688572168, -0.018474649637937546, 0.027668537572026253, 0.02643785998225212, 0.014312061481177807, 0.0007175938808359206, 8.183782483683899e-05, -0.0009745884453877807, -0.025395402684807777, -0.007796707563102245, -0.008216585963964462, -0.013834268786013126, 0.002504791831597686, -0.000911697163246572, 0.006775968708097935, -0.00467657670378685, 0.02054508402943611, -0.008795727975666523, 0.014956357888877392, -0.013341997750103474, -0.006522593554109335, -0.01552102155983448, 0.023571103811264038, -0.012154755182564259, 0.0048865159042179585, 0.024251597002148628, -0.018619434908032417, -0.0034621870145201683, -0.021935027092695236, -0.010953034274280071, 0.0004221406707074493, 0.001781768398359418, -0.0031382290180772543, 7.821818871889263e-05, -0.03208450227975845, 0.0070040058344602585, -0.0001303070894209668, -0.003601543139666319, 0.03874463960528374, 0.010858924128115177, 0.0006456535193137825, -0.012299541383981705, -0.004882896319031715, 0.006258359644562006, 0.004643999971449375, -0.001929268823005259, 0.005291915498673916, -0.0035291502717882395, -0.006164249032735825, 0.0015392524655908346, 0.01686752773821354, 0.0019799438305199146, 0.010011928156018257, -0.0031327996402978897, -0.02106631174683571, 0.0028106514364480972, -0.003174425335600972, -0.04253802448511124, 0.003717371728271246, -0.014840529300272465, -0.0031273700296878815, -0.01463782973587513, -0.003909212537109852, 0.004021421540528536, 0.005168847739696503, -0.0006058374419808388, 0.011010948568582535, 0.0033246404491364956, -0.013327519409358501, 0.010185671038925648, 0.008136953227221966, 0.01237193401902914, -0.011061623692512512, 0.0038332000840455294, 0.007246521767228842, 0.014167276211082935, 0.013168254867196083, -0.003938169684261084, 0.005690075922757387, 0.024295032024383545, 0.007514375261962414, 0.006341611500829458, -0.013805312104523182, 0.0333586148917675, -0.00740216625854373, 0.01667930744588375, 0.009186649695038795, 0.015636850148439407, 0.010055363178253174, -0.011170213110744953, 0.003735469887033105, -0.0017944371793419123, 0.008817446418106556, 0.008513396605849266, -0.011249844916164875, 3.645091783255339e-05, -0.003679365385323763, -0.0049299513921141624, -0.004810503218322992, -0.017330842092633247, 0.011105059646070004, -0.017909985035657883, -0.00021502931485883892, -0.007174129132181406, 0.014406172558665276, 0.002586233662441373, 0.006222163327038288, -0.00034047249937430024, 0.006406764965504408, 0.00045064534060657024, 0.003650408238172531, -0.0055778673849999905, 0.011199169792234898, -0.0073876879177987576, -0.020429255440831184, -0.024787303060293198, -0.032287199050188065, -0.00354905822314322, 0.0036847947631031275, 0.01699783466756344, -0.005567008163779974, 0.008187628351151943, -0.009367631748318672, 0.005291915498673916, -0.023686932399868965, -0.005820383317768574, -0.006080997176468372, -0.004053998272866011, -0.006667379289865494, 0.0077749895863235, 0.021471712738275528, -0.02176128327846527, -0.005462038796395063, 0.007485418114811182, 0.008469960652291775, 0.020284470170736313, -0.013921140693128109, 0.002374484669417143, 0.009613767266273499, -0.01256739441305399, -0.011358434334397316, -0.027842281386256218, 0.0035888743586838245, -0.017692806199193, 0.04152452573180199, -0.013660525903105736, -0.013841507956385612, 0.015332800336182117, 0.01439893338829279, -0.03321382775902748, -0.0019111706642434, 0.017432192340493202, 0.011676962487399578, -0.03857089951634407, 0.02894265204668045, 0.005910874344408512, 0.0068592200987041, -0.0338798426091671, 0.010468002408742905, -3.078816007473506e-06, 0.017996856942772865, -0.014319300651550293, -0.012864205054938793, 0.01304518710821867, -0.004640379920601845, 0.002504791831597686, -0.002211600774899125, 0.005795045755803585, -0.00118543254211545, -0.0002063195570372045, -0.009838185273110867, 0.0089767100289464, -0.01433377992361784, -0.0015184395015239716, 0.00945450272411108, -0.0134578263387084, -0.0071596503257751465, -0.012169234454631805, -0.004756208509206772, -0.01762041449546814, 0.006906275637447834, 0.0033481682185083628, 0.0019256491214036942, 0.010750334709882736, 0.00999744888395071, -0.00625112047418952, -0.009838185273110867, -0.001336552551947534, -0.0011067052837461233, -0.02616276778280735, -0.023064354434609413, 0.005664738826453686, -0.0057335118763148785, -0.017461149021983147, -0.013682244345545769, 0.005516333505511284, -0.016853049397468567, 0.02609037421643734, 0.006667379289865494, 0.02053060568869114, 0.005150749348104, -0.022050855681300163, -0.003255867399275303, -0.008216585963964462, 0.010004688985645771, -0.004082955420017242, -0.0023346685338765383, 0.02297748252749443, 0.013385433703660965, -0.00881020724773407, 0.0018116304418072104, 0.024410860612988472, -0.013776354491710663, 0.005288295913487673, 0.022470733150839806, -0.02284717559814453, -0.002169974846765399, 0.013667766004800797, -0.02474386803805828, -0.010648984462022781, -0.005632162094116211, 0.017649371176958084, 0.0034332298673689365, -0.00046014689723961055, 0.003632310079410672, 0.0022423677146434784, 0.00860750675201416, -0.013081383891403675, -0.0035146716982126236, -0.01741771399974823, -0.004615042824298143, 0.043754223734140396, 0.008448243141174316, -0.00582762248814106, -0.011981012299656868, -0.004307372961193323, -0.028682038187980652, 0.00830345693975687, -0.0027997924480587244, -0.018648391589522362, 0.006218543741852045, 0.009063581936061382, -0.006754250731319189, -0.005103694275021553, -0.005787806585431099, -0.021659933030605316, -0.004325471352785826, 0.006830262951552868, -0.010192910209298134, -0.00423859991133213, 0.017852071672677994, 0.02887025848031044, 0.0021754044573754072, -0.009338674135506153, 0.02277478389441967, 0.0037644270341843367, 0.018054770305752754, -0.009432785212993622, 0.0008795728208497167, -0.01355193741619587, -0.01341439038515091, 0.029999587684869766, -0.00034454462002031505, -0.027422402054071426, 0.016244949772953987, 0.007565050385892391, 0.010258063673973083, -0.007257380988448858, 0.008578550070524216, -0.004567987285554409, 0.0016767987981438637, -0.005957929417490959, -0.01315377652645111, 0.010648984462022781, -0.011908619664609432, -0.012234387919306755, -0.010149474255740643, 0.00011639409058261663, -0.021703369915485382, 0.0005090120830573142, 0.011105059646070004, 0.014102122746407986, -0.025974545627832413, -0.02474386803805828, -0.010757573880255222, -0.02025551348924637, 0.028233202174305916, 0.004752588924020529, -0.021297968924045563, -0.0044630179181694984, -0.007840143516659737, -0.013356476090848446, -0.004604183603078127, 0.013363715261220932, 0.026930131018161774, -0.012762854807078838, 0.009107017889618874, 0.004687435459345579, -0.00048729422269389033, -0.00430375337600708, 0.018474649637937546, 0.011886902153491974, -0.017649371176958084, -0.0016840380849316716, -0.010699659585952759, -0.009440024383366108, -0.033850885927677155, -0.016577957198023796, 0.002854087157174945, -0.010989231057465076, 0.01020014937967062, -0.0024323989637196064, -0.01728740707039833, 0.011517698876559734, -0.013580894097685814, -0.005512713920325041, 0.01117745228111744, -0.001142901717685163, -0.002955437172204256, 0.010620027780532837, 0.0034368494525551796, 0.003594303736463189, -0.016346300020813942, -0.01128604169934988, 0.0004316422273404896, 0.01640421524643898, 0.0016795136034488678, -0.009476221166551113, -0.015607893466949463, 0.000832517514936626, 0.009505177848041058, 0.013689483515918255, 0.013030708767473698, -0.0021428277250379324, 0.00528467632830143, -0.0026405283715575933, -0.025178225710988045, 0.003775285789743066, -0.007087257690727711, -0.0025228899903595448, 0.011343955993652344, -0.014522001147270203, 0.00042824880802072585, 0.017446670681238174, 0.001118469168432057, -0.00533897103741765, 0.011213649064302444, 0.010692420415580273, 0.006164249032735825, 0.015839550644159317, -0.00040585227543488145, -0.010953034274280071, 0.015607893466949463, 0.03848402574658394, 0.0033445486333221197, -0.005570627748966217, 0.008904317393898964, 0.009056342765688896, 0.006381427403539419, -0.006862839683890343, -0.0072284238412976265, 0.01640421524643898, 0.007528854068368673, -0.015390714630484581, 0.006971429102122784, -0.000671895919367671, -0.008940514177083969, -0.008687139488756657, -0.010489720851182938, -0.007148791570216417, -0.015680287033319473, -0.01195929478853941, 0.026133811101317406, 0.026683995500206947, 0.005342590622603893, 0.017229491844773293, -0.0017193296225741506, -0.010895119979977608, 0.02223907597362995, 0.015738200396299362, 0.007235663011670113, -0.005114553030580282, -0.01402249000966549, -0.013689483515918255, 0.013754636980593204, 0.0020487168803811073, 0.01986459083855152, -0.022658955305814743, 0.028928173705935478, -0.01885109208524227, 0.008535114116966724, 0.0027183506172150373, -0.002200742019340396, 0.019473670050501823, 0.012060645036399364, 0.005751609802246094, -0.014152797870337963, -0.0043109930120408535, -0.0002368602727074176, -0.02603246085345745, -0.010887880809605122, -0.006204065401107073, -0.009302478283643723, -0.014529240317642689, 0.006142531521618366, -0.005472897551953793, 0.010989231057465076, -0.011025427840650082, 0.010315977968275547, -0.010344934649765491, 0.0007356920978054404, 0.01843121275305748, 0.00570817431434989, 0.017837591469287872, 0.0040901945903897285, -0.02433846890926361, 0.011648005805909634, -0.008752292953431606, -0.005382406525313854, -0.010062603279948235, 0.0005723557551391423, 0.0027418783865869045, 0.009360392577946186, 0.010496960021555424, 0.0039345500990748405, -0.011148495599627495, 0.010692420415580273, -0.0013383623445406556, -0.005910874344408512, -0.03631224110722542, -0.01172039844095707, 0.013443347997963428, -0.001763670239597559, -0.012936597689986229, 0.0054222228936851025], "0c72e829-7c9a-47a6-af31-9fe3543bd78c": [-0.02483588270843029, -0.0055086566135287285, -0.006941773928701878, 0.012562336400151253, -0.04906531050801277, -0.01467771828174591, 0.020114177837967873, 0.0259332824498415, 5.803988824482076e-05, -0.009291796945035458, -0.02014305628836155, 0.024041712284088135, 0.016923055052757263, -0.024633731693029404, -0.0017516878433525562, 0.019421083852648735, 0.008844173513352871, -0.0006425562896765769, 0.007237783167511225, -0.03456808626651764, 0.06474657356739044, -0.016316598281264305, -0.023175345733761787, 0.011847582645714283, 0.012880004942417145, -0.016042247414588928, -0.014843772165477276, 0.009363994933664799, -0.05027822405099869, 0.006681863684207201, -0.014172337017953396, 0.023969516158103943, 0.008764756843447685, -0.018395882099866867, -0.016143323853611946, -0.009826057590544224, -0.012887224555015564, 0.013443144038319588, -0.01728404313325882, -0.034856874495744705, -0.018164848908782005, 0.015984490513801575, 0.007143926341086626, -0.012201350182294846, -0.05905742198228836, 0.008410989306867123, 0.06318710744380951, -0.01132776215672493, -0.016923055052757263, -0.022525569424033165, 0.01497372705489397, 0.010107627138495445, -0.018511397764086723, -0.006432782858610153, 0.04236539825797081, -0.02124045602977276, -0.010208703577518463, 0.04531104862689972, -0.011313322931528091, -0.06619051843881607, -0.01946440152823925, 0.009212380275130272, 0.016504311934113503, -0.02768045850098133, 0.0025088575202971697, -0.01547910925000906, 0.007948926649987698, -0.0005500534316524863, -0.019839828833937645, -0.004418476950377226, -0.008497626520693302, 0.0005789324059151113, -0.064053475856781, -0.005259575787931681, -0.007122267037630081, -0.021947989240288734, 0.05729580670595169, 0.00750852283090353, 0.024373820051550865, -0.004876930266618729, -0.018237046897411346, 0.01719740591943264, 0.04424252733588219, -0.009486730210483074, 0.04112360253930092, 0.01064910739660263, -0.0005365164251998067, -0.033095259219408035, -0.0022164583206176758, -0.011342201381921768, 0.008382110856473446, 0.016677584499120712, -0.0421343669295311, 0.021774716675281525, 0.01618664339184761, 0.0005744200316257775, -0.005523096304386854, 0.009847716428339481, 0.020345209166407585, 0.005198208149522543, -0.0008343304507434368, -0.0017119792755693197, -0.04100808873772621, -0.004039440769702196, -0.00429574167355895, 0.022886555641889572, -0.015161440707743168, 0.005313723813742399, -0.03606978803873062, -0.005808275658637285, 0.003651380306109786, -0.03881328925490379, 0.03286422789096832, 0.011609331704676151, -0.04149902984499931, 0.00669269310310483, 0.011010093614459038, -0.007436325773596764, -0.01737067848443985, -0.052906207740306854, 0.026453103870153427, 0.028546826913952827, 0.02701624296605587, 0.015363592654466629, -0.012735609896481037, 0.016071127727627754, 0.04302961379289627, -0.0007932682055979967, 0.017067451030015945, -0.010331438854336739, 0.02768045850098133, 0.0050935219042003155, 0.0033950796350836754, 0.030582791194319725, 0.00830991379916668, 0.026135435327887535, 0.031766828149557114, 0.026640817523002625, -0.04095032811164856, 0.05123123154044151, -0.03739821910858154, -0.04071929678320885, -0.028734540566802025, 0.0287634190171957, 0.0017255162820219994, 0.018727989867329597, -0.026785211637616158, 0.026915166527032852, -0.0063389260321855545, 0.03451032564043999, -0.05143338069319725, -0.005375091452151537, -0.0007427301025018096, -0.0015757068758830428, 0.008237715810537338, -0.002655057003721595, 0.0047578043304383755, 0.017312921583652496, 0.02290099486708641, 0.04513777419924736, 0.026222072541713715, -0.04941185563802719, -0.0014845577534288168, 0.019146732985973358, 0.05391697213053703, 0.02474924735724926, 0.053714819252491, 0.011515474878251553, -0.00792726781219244, 0.008945249952375889, 0.0008650143281556666, 0.012576775625348091, 0.027911489829421043, 0.006512199528515339, 0.007985025644302368, 0.0014313121791929007, 0.037975799292325974, 0.0022020188625901937, 0.03667624667286873, -0.014547763392329216, 0.005963500123471022, 0.022438932210206985, -0.027723776176571846, -0.032084494829177856, -0.014619960449635983, 0.010049869306385517, -0.019247809424996376, 0.0021911892108619213, 0.018814625218510628, 0.0073171998374164104, -0.016345476731657982, -0.00885139312595129, 0.004667557775974274, -0.0005279430188238621, 0.02148592658340931, -0.030813822522759438, -0.0014114578953012824, -0.0013726518955081701, 0.0016226351726800203, 0.054494548588991165, -0.00040453069959767163, -0.06636378914117813, -0.06232073903083801, 0.0542057603597641, -0.0012490139342844486, 0.017688347026705742, -0.0029131625778973103, -0.05755571648478508, 0.02155812457203865, -0.021933550015091896, 0.0431162491440773, -0.04470458999276161, 0.027752656489610672, 0.024821443483233452, -0.017803862690925598, 0.01305327843874693, -0.0025323214940726757, 0.027045121416449547, 0.0038372883573174477, -0.025875525549054146, -0.016331037506461143, 0.029600907117128372, -0.015190319158136845, -0.02031633071601391, -0.05536091700196266, -0.016966374590992928, -0.0035033756867051125, 0.04470458999276161, -0.043087370693683624, -0.018684670329093933, 0.026222072541713715, -0.03347068652510643, -0.028142521157860756, -0.015233637765049934, -0.003113510087132454, -0.009335115551948547, -0.004173005931079388, 0.018424760550260544, -0.00087313650874421, -0.004209104925394058, 0.01401350274682045, 0.026583058759570122, 0.021673640236258507, 0.009241258725523949, 0.01497372705489397, 0.029008889570832253, -0.01296664122492075, 0.014619960449635983, 0.005223477259278297, -0.0013897987082600594, -0.0034022994805127382, 0.02509579434990883, 0.019449962303042412, 0.0011217661667615175, 0.011472156271338463, 0.002072063507512212, -0.0030918510165065527, -0.029600907117128372, 0.02541346289217472, 0.015089243650436401, 0.017760545015335083, 0.019998662173748016, 0.00582993496209383, 0.01208583451807499, 0.04043050855398178, -0.013573098927736282, 0.02474924735724926, -0.031997859477996826, 0.0023518281523138285, 0.03563660383224487, -0.02986081875860691, 0.009385653771460056, 0.016128884628415108, 0.004519553389400244, 0.0003776823286898434, -0.006270338781177998, -0.007450764998793602, 0.0002046343288384378, 0.0005694564897567034, 0.01497372705489397, -0.006710742600262165, 0.011356640607118607, 0.025370143353939056, 0.03046727553009987, 0.009421752765774727, 0.008822514675557613, -0.029095526784658432, 0.014497225172817707, -0.028416872024536133, 0.003162243403494358, 0.022554447874426842, -0.005920181516557932, 0.026323148980736732, 0.02031633071601391, 0.04354943335056305, 0.0266696959733963, -0.03933310881257057, -0.009919914416968822, -0.029831938445568085, 0.010057088918983936, 0.007082558702677488, -0.001811250695027411, -0.021789155900478363, -0.011002874001860619, 0.02373848482966423, -0.014749915339052677, 0.030322881415486336, 0.015637943521142006, -0.03095821850001812, 0.0019421083852648735, 0.041325755417346954, -0.028980011120438576, -0.03491463139653206, 0.009299016557633877, -0.004284911789000034, -0.00497439643368125, -0.007833410985767841, 0.009544488042593002, 0.0006281168316490948, -0.04259642958641052, -0.00459175044670701, -0.02417166903614998, -0.027752656489610672, -0.00750852283090353, 0.049209702759981155, -0.022193461656570435, 0.038640014827251434, -0.013558659702539444, 0.003506985493004322, -0.014360049739480019, -0.005378701724112034, -0.004396817646920681, -0.038206830620765686, 0.006743231322616339, -0.005671100690960884, -0.022453371435403824, -0.0320267379283905, -0.05345490947365761, -0.02977418154478073, -0.010872919112443924, -0.004671167582273483, 0.0008117688121274114, 0.017139647156000137, -0.032171133905649185, 0.017991576343774796, 0.008114980533719063, 0.012569556012749672, 0.013024399057030678, -0.027925929054617882, -0.004458185285329819, 0.0009773714700713754, -0.0010215922957286239, 0.017168525606393814, -0.004014171659946442, 0.05102907866239548, -0.022366734221577644, -0.01988314650952816, -0.0021749448496848345, -0.001909619546495378, 0.0035232300870120525, 0.02356521040201187, -0.03280647099018097, -0.04328952357172966, 0.0029131625778973103, -0.00897412933409214, 0.030987096950411797, -0.029081087559461594, -0.018771307542920113, -0.015666821971535683, 0.010872919112443924, -0.0436071902513504, 0.015074803493916988, 0.018265925347805023, -0.019247809424996376, -0.029066648334264755, -0.056573834270238876, 0.04975840449333191, 0.0036567950155586004, -0.030756065621972084, 0.02759382128715515, 0.002996189519762993, -0.010252022184431553, -0.0033932747319340706, 0.018641352653503418, 0.035203419625759125, 0.03962189704179764, 0.013291529379785061, 0.0051548900082707405, -0.0023085097782313824, 0.006811818573623896, -0.029514271765947342, 0.004223544150590897, 0.00773955462500453, 0.0031604385003447533, -0.015248076990246773, -0.035867635160684586, 0.009876595810055733, -0.017847182229161263, 0.01363807637244463, -0.013666955754160881, -0.015955612063407898, -0.012800587341189384, -0.020489603281021118, 0.006147603038698435, -0.011970317922532558, -0.027810413390398026, -0.007429105695337057, -0.008757537230849266, 0.0171252079308033, 0.0038878265768289566, 0.027911489829421043, 0.00960224587470293, 0.03205561637878418, -0.00040385386091656983, 0.07572056353092194, -0.01506036426872015, 0.022438932210206985, 0.05143338069319725, -0.01702413149178028, -0.031102612614631653, 0.06844307482242584, 0.052559658885002136, -0.03396162763237953, 0.009284577332437038, -0.0007729627541266382, 0.029052207246422768, 0.004331840202212334, 0.016157763078808784, -0.0019060096237808466, -0.025557857006788254, -0.009479510597884655, 0.039390865713357925, 0.0032109764870256186, 0.02022969350218773, 0.008483187295496464, -0.0347413569688797, 0.03170907124876976, 0.028286917135119438, -0.007252222392708063, -0.014490005560219288, 0.009039106778800488, 0.008901931345462799, -0.015175879932940006, -0.01334206759929657, 0.01447556633502245, -0.00750852283090353, -0.020258571952581406, 0.01601336896419525, 0.03710943087935448, -0.006808208767324686, -0.0038661672733724117, 0.033846110105514526, -0.016417674720287323, 0.005277625285089016, 0.005313723813742399, -0.006364195141941309, -0.020778393372893333, -0.008374891243875027, 0.00650137010961771, -0.039217591285705566, -0.02265552431344986, 0.0009101376635953784, 0.0025323214940726757, -0.016821978613734245, 0.014251753687858582, -0.022381173446774483, 0.016489870846271515, 0.06838531792163849, 0.011825923807919025, 0.0315357968211174, -0.007963365875184536, -0.021413730457425117, -0.004790293052792549, 0.0342504158616066, 0.027290593832731247, -0.01953659951686859, -0.037455979734659195, 0.0008171835797838867, -0.014800453558564186, -0.010396416299045086, -0.03546333312988281, -0.044964499771595, -0.0053317733108997345, 0.0203885268419981, 0.00042167757055722177, -0.03162243217229843, -0.001672270824201405, -0.03944862261414528, 0.0320267379283905, -0.0051548900082707405, 0.0686163455247879, 0.005519486498087645, 0.008613142184913158, 0.01057690940797329, -0.027463866397738457, -0.025456780567765236, -0.002842770190909505, -0.029803059995174408, -0.017312921583652496, -0.05637168139219284, 0.032893106341362, -0.02844575047492981, -0.029268799349665642, 0.027882611379027367, -0.018598033115267754, -0.01371749397367239, -0.0016812954563647509, 0.025052474811673164, -0.03168019279837608, -0.04805454611778259, -0.03430817276239395, -0.00818717759102583, -0.031766828149557114, 0.013024399057030678, 0.007013970986008644, 0.025947721675038338, 0.004385988228023052, 0.021269334480166435, 0.020922787487506866, 0.007638478185981512, 0.007855069823563099, -0.000601945270318538, 0.0005459923413582146, 0.011421618983149529, -0.04103696718811989, -0.02031633071601391, -0.025297947227954865, -0.03583875671029091, 0.02492251992225647, 0.007876729592680931, -0.003053947351872921, 0.011883681640028954, -0.0301207285374403, 0.02417166903614998, 0.026713013648986816, 0.023810680955648422, 0.0009990306571125984, -0.0019186441786587238, 0.0109017975628376, 0.01586897484958172, -0.02207794599235058, 0.02986081875860691, 0.028676781803369522, 0.010728524066507816, 0.001218329998664558, 0.014287852682173252, 0.003238050499930978, 0.010461393743753433, -0.014143458567559719, 0.05108683556318283, -0.04279858246445656, 0.01023036241531372, -0.023680726066231728, -0.0003140584158245474, 0.020085299387574196, -0.023103147745132446, -0.01237462367862463, -0.0320267379283905, -0.0030268733389675617, 0.01128444354981184, -0.037889160215854645, 0.013731933198869228, -0.021601442247629166, 0.018020454794168472, 0.009811618365347385, -0.006974262651056051, 0.01103897299617529, 0.025023596361279488, -0.007775653153657913, 0.028806736692786217, 0.03910207748413086, 0.00492746802046895, 0.01270673144608736, -0.005375091452151537, 0.030178487300872803, 0.03295086324214935, -0.017601709812879562, 0.006176481954753399, -0.04562871530652046, -0.00526318559423089, 0.011630990542471409, -0.01263453345745802, 0.016085566952824593, -0.0015107293147593737, 0.018078213557600975, 0.0026929606683552265, -0.008050003089010715, -0.023464133962988853, -0.0016821979079395533, -0.008425429463386536, 0.002360852900892496, 0.017327360808849335, -0.00013931829016655684, -0.005692759994417429, -0.052819572389125824, 0.011089511215686798, 0.016821978613734245, 0.007205293979495764, -0.0077612134627997875, -0.0051548900082707405, 0.007782872766256332, 0.012598435394465923, 0.02232341654598713, -0.005436459556221962, -0.02736278995871544, 0.016403235495090485, -0.0015802192501723766, -0.021370410919189453, -0.017904939129948616, 0.02298763208091259, -0.024388259276747704, 0.01291610300540924, 0.03944862261414528, -0.021716957911849022, 0.046177417039871216, -0.005317333620041609, -0.004887759685516357, 0.040228355675935745, -0.008822514675557613, 0.012100273743271828, 0.01157323271036148, -0.05126010999083519, 0.056775983422994614, -0.03632969781756401, 0.021341532468795776, 0.016489870846271515, -0.012511798180639744, -0.00645805150270462, -0.024056151509284973, -0.011811484582722187, 0.0004449160769581795, -0.019247809424996376, 0.024287184700369835, -0.01128444354981184, 0.001089277327992022, 0.006234239786863327, 0.01363085675984621, 0.041989970952272415, -0.02106718346476555, 0.02441713958978653, 0.0008379403152503073, 0.007161975838243961, -0.011226685717701912, 0.07387231290340424, -0.018222607672214508, 0.006797379348427057, 0.005775786936283112, 0.035694364458322525, 0.05668934807181358, 0.006588006857782602, -0.05640055984258652, -0.0038517278153449297, 0.004855270963162184, 0.00851206574589014, 0.02265552431344986, -0.03531893715262413, -0.022886555641889572, 0.01719740591943264, 0.013666955754160881, 0.007804532069712877, 0.04998943582177162, -0.013450363650918007, -0.020994985476136208, -0.00582993496209383, 0.01728404313325882, 0.008613142184913158, 0.00384811800904572, 0.02910996600985527, 0.03245992213487625, 0.03962189704179764, 0.0169374942779541, -0.00922681950032711, 0.01711076870560646, -0.00415495689958334, 0.0056386119686067104, -0.0033517612610012293, -0.0012553312117233872, 0.008158299140632153, 0.0014015308115631342, 0.004934688098728657, 0.0004419830802362412, -0.02181803435087204, -0.019002338871359825, 0.009003007784485817, -0.0454554446041584, -0.009039106778800488, -0.011334981769323349, 0.04461795464158058, -0.034683600068092346, 0.004021391738206148, -0.017413998022675514, 0.02968754433095455, 0.01295942161232233, 0.007566280663013458, 0.002063038991764188, 0.014648839831352234, 0.0015729994047433138, -0.03448144719004631, 0.011789824813604355, -0.03488575294613838, -0.018670231103897095, 0.010981215164065361, 0.020070860162377357, -0.022020187228918076, 0.005941840820014477, 0.027810413390398026, -0.029384315013885498, -0.013796910643577576, 0.016677584499120712, -0.0061620427295565605, 0.04438692331314087, -0.0026803261134773493, 0.004010561853647232, 0.03451032564043999, -0.0036261111963540316, 0.0505092553794384, -0.017818301916122437, 0.01953659951686859, 0.024027273058891296, 0.02994745410978794, 0.0002802158996928483, 0.02912440523505211, -0.00702841067686677, -0.016042247414588928, -0.032171133905649185, 0.0197098720818758, 0.0039564138278365135, 0.02677077241241932, 0.0009439801797270775, -0.0036333310417830944, 0.053397148847579956, -0.007992245256900787, -0.017168525606393814, 0.007331639528274536, -0.010771842673420906, -0.008475967682898045, -0.011118389666080475, -0.0009611270506866276, 0.039564140141010284, -0.025962162762880325, 0.021168258041143417, 0.007421886082738638, 0.0022561666555702686, 0.002790427068248391, 0.006425562780350447, 0.005245136562734842, 0.016590947285294533, 0.010042649693787098, 0.03029400296509266, 0.006014037877321243, 0.024633731693029404, -0.013934086076915264, 0.06006818264722824, 0.0315357968211174, -0.02768045850098133, -0.012800587341189384, 0.012309646233916283, -0.00788394920527935, 0.00030616181902587414, 0.014323951676487923, -0.004407647531479597, -0.012049735523760319, -0.0231609046459198, -0.04528217017650604, 0.004418476950377226, 0.01578233763575554, -0.013248210772871971, 0.04750584810972214, 0.03664736822247505, 0.019680993631482124, 0.021110501140356064, -0.004003342241048813, 0.01685085892677307, 0.04629293084144592, -0.01376081258058548, -0.046033021062612534, 0.05501437187194824, 0.0005527608445845544, -0.05538979545235634, -0.03378835320472717, -0.013154354877769947, -0.023550771176815033, 0.015522426925599575, -0.00864202156662941, 0.0365896113216877, -0.030438397079706192, 0.024128349497914314, 0.031160369515419006, -0.005284844897687435, 0.0001383030175929889, 0.0016614411724731326, 0.015089243650436401, 0.018309244886040688, 0.03355732187628746, 0.003062971867620945, -0.0038733871188014746, 0.027536064386367798, -0.041239120066165924, 0.02256888709962368, 0.010540811344981194, 0.03286422789096832, -0.014706597663462162, 0.0523575097322464, 0.04918082430958748, -0.0025539807975292206, -6.565445073647425e-05, 0.03095821850001812, 0.014136238023638725, -0.01777498424053192, 0.012352963909506798, -0.025788888335227966, -0.007717895321547985, -0.016331037506461143, 0.021168258041143417, -0.01611444540321827, 0.003483521519228816, 0.008447088301181793, -0.004573701415210962, 0.016735343262553215, 0.014988167211413383, 0.013017179444432259, 0.00860592257231474, 0.005479777697473764, 0.022453371435403824, -0.028041444718837738, 0.002590079326182604, -0.0018392271595075727, -0.016995253041386604, 0.008670900017023087, -0.02768045850098133, 0.0022327026817947626, 0.001665051095187664, -0.01543579064309597, 0.0407770536839962, -0.016489870846271515, 7.129486766643822e-05, -0.0426253080368042, 0.002346413442865014, -0.03341292589902878, 0.03823570907115936, -0.022540008649230003, -0.033615078777074814, -0.028416872024536133, -0.02398395538330078, -0.030582791194319725, 0.0028915032744407654, 0.02064843848347664, 0.006779329851269722, 0.06855858862400055, 0.050047192722558975, 0.0047397552989423275, -0.025240188464522362, -0.0071403165347874165, 0.0036928937770426273, -0.01300995983183384, -0.003499765880405903, -0.021543685346841812, -0.004151346627622843, -0.011515474878251553, 0.023724043741822243, 0.009919914416968822, 0.007660137489438057, -0.04508001729846001, -0.015161440707743168, 0.009631124325096607, -0.015912292525172234, -0.0026767163071781397, 0.009595026262104511, -0.015204759314656258, 0.011125609278678894, -0.02450377494096756, 0.0040863691829144955, -0.0010955946054309607, 0.03404826298356056, -0.025702251121401787, -0.01679310016334057, -0.008237715810537338, 0.016923055052757263, -0.05056701600551605, -0.014648839831352234, -0.0028012567199766636, 0.028128081932663918, -0.0018482517916709185, 0.01679310016334057, -0.03156467527151108, -0.005577244330197573, 0.017515074461698532, -0.003913095686584711, -0.002914967481046915, -0.00224533723667264, 0.00769623601809144, -0.0005383213865570724, -0.015739019960165024, -0.02181803435087204, 0.008338792249560356, -0.02516799047589302, -0.014706597663462162, -0.011046192608773708, -0.018352562561631203, -0.010259241797029972, 0.010223142802715302, -0.025962162762880325, -0.03407714143395424, 0.00889471173286438, 0.017572831362485886, -0.023132026195526123, 0.015796776860952377, 0.019565477967262268, 0.008988568559288979, 0.01880018599331379, 0.010742963291704655, 0.028315795585513115, 0.008403769694268703, -0.012648973613977432, 0.03500126674771309, 0.02626539021730423, 0.01584009639918804, -0.023377496749162674, -0.02659749798476696, -0.004461795557290316, 0.009299016557633877, 0.005324553698301315, 0.019435523077845573, 0.014778794720768929, -0.001276087947189808, -0.0023409987334161997, 0.008447088301181793, 0.007465204689651728, -0.002637007739394903, 0.022135702893137932, -0.011927000246942043, 0.007667357102036476, -0.0022633865009993315, 0.0234063770622015, 0.003819239092990756, 0.014511664398014545, -0.012858345173299313, -0.026063239201903343, -0.027666019275784492, -0.0031441939063370228, -0.004144127015024424, -0.012352963909506798, -0.013370946981012821, -0.012880004942417145, 0.016735343262553215, -0.009342335164546967, -0.024186108261346817, 0.01228798646479845, 0.005501437000930309, -0.01578233763575554, -0.0035827928222715855, 0.02576000988483429, 0.003187512280419469, -0.008165518753230572, 0.012562336400151253, 0.026222072541713715, 0.00047605118015781045, 0.009356774389743805, 0.02945651300251484, 0.0073460787534713745, -0.00579022616147995, 0.003934754990041256, -0.004277692176401615, 0.011515474878251553, -0.014136238023638725, 0.028286917135119438, -0.04152790829539299, 0.014814893715083599, -0.008728657849133015, -0.014959287829697132, -0.0010486663086339831, -0.009060765616595745, -0.012468479573726654, 0.006956213153898716, 0.015421351417899132, -0.016995253041386604, 0.0005622367607429624, -0.003949194215238094, -0.026496421545743942, -0.0028030616231262684, 0.03557884693145752, 0.0133059686049819, -0.015175879932940006, -0.027954809367656708, -0.007602379657328129, 0.015507987700402737, -0.023781802505254745, 0.02837355248630047, -0.0023085097782313824, -0.0031315593514591455, 0.011544354259967804, -0.023132026195526123, -0.012815027497708797, 0.011934219859540462, 0.005169329233467579, -0.0033499563578516245, -0.025615615770220757, -0.022467810660600662, -0.03875552862882614, -0.031333643943071365, -0.03390387073159218, -0.008100541308522224, -0.02080727182328701, 0.01754395291209221, 0.019276687875390053, 0.005551975220441818, 0.015074803493916988, -0.009465070441365242, -0.004227153956890106, -0.007501303218305111, -0.02258332632482052, -0.006115114316344261, -0.007115047425031662, -0.004963567014783621, 0.01195587869733572, 0.02977418154478073, 0.00377592071890831, -0.040805935859680176, -0.0171252079308033, 0.047101542353630066, -0.03254655748605728, -0.0001504863175796345, 0.014085699804127216, -0.011219466105103493, -0.014186776243150234, -0.0012417942052707076, -0.0011244735214859247, -0.005620562471449375, 0.039044320583343506, 0.0046603381633758545, -0.024142788723111153, -0.01543579064309597, 0.013096597045660019, -0.0018347147852182388, 0.0003553462738636881, -0.021615883335471153, -0.011313322931528091, -0.05954836308956146, 0.004855270963162184, -0.009248478338122368, 0.027954809367656708, -0.011977538466453552, -0.006772110238671303, 0.01238184329122305, 0.011161708272993565, -0.021688079461455345, 0.028893373906612396, -0.003499765880405903, -0.021832473576068878, -0.002624373184517026, 0.008396550081670284, -0.015753459185361862, 0.02827247604727745, 0.006819038186222315, -0.011421618983149529, -0.003855337854474783, -0.005653051193803549, -0.005855204071849585, 0.015334714204072952, -0.02783929370343685, 0.001086569856852293, -0.015276956371963024, 0.01661982759833336, -0.012887224555015564, 0.012259108014404774, 0.007245002780109644, -0.0287056602537632, 0.0015215588500723243, 0.008324353024363518, -0.008064442314207554, 0.0056674908846616745, 0.004118857905268669, 0.0006046526832506061, 0.00497439643368125, 0.009811618365347385, 0.01754395291209221, -0.013522560708224773, -0.0013329433277249336, 0.02668413519859314, 0.012482919730246067, -0.014251753687858582, -0.012533457949757576, -0.00598154915496707, 0.004858880769461393, -0.02021525427699089, -0.003162243403494358, 0.010338658466935158, 0.0009511999087408185, -0.007064509205520153, 0.0016415868885815144, -0.01363085675984621, 0.003996122628450394, 0.011212246492505074, 0.017803862690925598, -0.0059057422913610935, 0.01236740406602621, -0.006028477568179369, 0.03113149106502533, 0.009465070441365242, -0.009436191990971565, -0.013147135265171528, -0.013226551935076714, 0.0061800917610526085, -0.009638343937695026, 0.007595159579068422, 0.011334981769323349, 0.010519151575863361, 0.010584129020571709, 0.0023879269137978554, 0.01578233763575554, 0.03673400357365608, 0.006403903942555189, -0.014749915339052677, -0.001235476927831769, 0.010360317304730415, -0.018930140882730484, 0.009306236170232296, -0.028041444718837738, -0.009031887166202068, 0.009595026262104511, 0.0192189309746027, -0.0056674908846616745, -0.03295086324214935, -0.0014168727211654186, -0.028503507375717163, -0.004566481336951256, 0.013688614591956139, 0.026828529313206673, 0.01371749397367239, 0.030322881415486336, 0.014988167211413383, -0.007161975838243961, 0.01702413149178028, 0.020908348262310028, 0.0007255832315422595, 0.002716424874961376, 0.0016758806305006146, 0.018684670329093933, -0.006375024560838938, 0.0004519101930782199, -0.022381173446774483, 0.005053813569247723, -0.01510368287563324, 0.0019782069139182568, 0.013529780320823193, -0.02450377494096756, -0.0247636865824461, 0.010923457331955433, 0.016677584499120712, -0.02625095099210739, 0.012309646233916283, -0.010692425072193146, 0.002333778887987137, -0.010865699499845505, -0.017240723595023155, -0.004620629362761974, -0.004122467711567879, 0.0026352028362452984, 0.005656661465764046, -0.003521424951031804, -0.050884682685136795, -0.026871848851442337, -0.006324486806988716, 0.0012815027730539441, -0.0024583193007856607, -0.013999063521623611, 0.022337855771183968, 0.00515849981456995, -0.0029257971327751875, 0.0006245069671422243, 0.008540945127606392, -0.009125743061304092, 0.014735476113855839, 0.0402861125767231, -0.041672300547361374, 0.00203415984287858, -0.025384582579135895, 0.011544354259967804, -0.0067540607415139675, 0.007790092378854752, 0.011732066981494427, -0.004219934344291687, -0.01128444354981184, 0.006057356484234333, -0.026727454736828804, -0.0055375355295836926, -0.009587806649506092, -0.0019547429401427507, 0.00349254603497684, 0.021442608907818794, -0.032431043684482574, 0.00029420413193292916, -0.009681662544608116, -0.0007355103734880686, 0.010208703577518463, 0.002301290165632963, -0.012403502129018307, -0.003855337854474783, 0.01660538651049137, 0.006190921645611525, -0.01661982759833336, 0.012511798180639744, -0.01695193536579609, -0.011746506206691265, -0.015565745532512665, -0.01620108261704445, -0.0009214184829033911, -0.009732200764119625, 0.020374087616801262, -0.03381723165512085, -0.03936198726296425, -0.0006786549347452819, -0.009104084223508835, -0.01430229190737009, -0.01986870728433132, 0.020922787487506866, 0.0115804523229599, 0.02809920348227024, 0.001057690940797329, -0.0036604050546884537, 0.052906207740306854, 0.020099738612771034, 0.0051729390397667885, 0.00248539331369102, 0.0033499563578516245, -0.007595159579068422, -0.0021713348105549812, 0.009255698882043362, 0.016735343262553215, -0.022280097007751465, -0.021601442247629166, 0.013320408761501312, -0.006465271580964327, 0.038293465971946716, 0.017067451030015945, -0.002331973984837532, -0.007100608199834824, -0.002436659997329116, -0.0026063239201903343, 0.017977137118577957, 0.01368139497935772, -0.006790159270167351, 0.0062883878126740456, -0.022872116416692734, 0.014403368346393108, 0.003739821957424283, -0.01224466785788536, 0.010410855524241924, 0.011392739601433277, -0.011024532839655876, 0.013204893097281456, 0.006060966290533543, -0.01869910955429077, 0.006060966290533543, -0.015291395597159863, 0.020532922819256783, -0.013031619600951672, 0.03976629301905632, -0.0006353365606628358, -0.00478307344019413, -0.013948525302112103, 0.00918350089341402, 0.021500365808606148, -0.0227277223020792, -0.045253291726112366, -0.010114846751093864, 0.0266696959733963, -0.0050465939566493034, 0.012006416916847229, 0.009428972378373146, -0.029312118887901306, 0.009631124325096607, -0.00011489529424579814, 0.04588862508535385, -0.0076817963272333145, 0.022453371435403824, -0.013522560708224773, -0.03774476796388626, -0.003564743557944894, 0.004270472563803196, 0.0044040377251803875, 0.005042984150350094, 0.024012833833694458, -0.03214225545525551, 0.0001348059595329687, -0.02692960575222969, 0.026048798114061356, 0.01695193536579609, -0.019348885864019394, -0.021096061915159225, 0.028128081932663918, 0.00459536025300622, 0.015190319158136845, -0.014309512451291084, -0.020114177837967873, 0.01569570042192936, 0.012829466722905636, 0.017053009942173958, 0.02147148735821247, 0.0031604385003447533, 0.012100273743271828, 0.030265122652053833, -0.01371027436107397, -0.004321010783314705, -0.010497492738068104, 0.021875793114304543, -0.009833277203142643, -0.0004431111447047442, 0.012540677562355995, -0.03378835320472717, -0.020359648391604424, 0.0022940703202039003, 0.005714419297873974, -0.00024479409330524504, -0.007587939966470003, 0.004469015169888735, 0.002194799017161131, 0.0005189183284528553, 0.006530249025672674, -0.02837355248630047, 0.01447556633502245, 0.005068252794444561, 0.021038303151726723, 0.005847983993589878, -0.01855471543967724, 0.023103147745132446, 0.004523163195699453, 0.01737067848443985, 0.007559061050415039, 0.03667624667286873, -0.009443411603569984, 0.02207794599235058, -0.016634266823530197, -0.003710943041369319, 0.011017313227057457, -0.019421083852648735, -0.01501704566180706, 0.02139929123222828, 0.004144127015024424, -0.025110233575105667, -0.0017959087854251266, 0.0011163513408973813, -0.000262617802945897, 0.008237715810537338, 1.2655685168283526e-05, 0.012410721741616726, 0.01472825650125742, -0.005945450626313686, 0.001158767263405025, -0.029600907117128372, -0.008627581410109997, -0.007790092378854752, -0.024980278685688972, 0.0037723109126091003, 0.018424760550260544, -0.018410321325063705, -0.023839561268687248, -0.01062022801488638, -0.0001252172514796257, 0.03451032564043999, -0.004147736821323633, -0.05059589445590973, -0.008114980533719063, -0.008815295062959194, -0.012988300994038582, 0.025312386453151703, -0.027131758630275726, -0.03491463139653206, 0.04288521781563759, -0.007667357102036476, -0.0013952135341241956, 0.01578233763575554, -0.004187445621937513, 0.009797178208827972, 0.005035764072090387, -0.005064642988145351, 0.001127180876210332, 0.026583058759570122, 0.01342870481312275, -0.0031983419321477413, 0.02157256379723549, -0.0014647034695371985, 0.019666554406285286, -0.015897853299975395, 0.023478573188185692, 0.04733257368206978, -0.006559127941727638, 0.004793903324753046, 0.013537000864744186, 0.003593622473999858, 0.007566280663013458, 0.011869242414832115, 0.021716957911849022, 0.015609064139425755, 0.020951667800545692, -0.03462584316730499, -0.04017059877514839, -0.009595026262104511, -0.03462584316730499, 0.009797178208827972, -0.010511931963264942, -0.00698509206995368, 0.01442502811551094, 0.025788888335227966, -0.0115804523229599, 0.016489870846271515, -0.03315301612019539, 0.0056819305755198, -0.008873052895069122, 0.026972925290465355, 0.0014592886436730623, -0.02492251992225647, 0.01196309830993414, 0.005631392356008291, 0.022294538095593452, -0.00721251405775547, 0.012389062903821468, 0.010468613356351852, 0.02459041215479374, -0.016879737377166748, -0.024142788723111153, -0.009436191990971565, 0.01056968979537487, 0.006728791631758213, -0.009587806649506092, -0.002396951662376523, -0.0037001133896410465, -0.010865699499845505, 0.01304605882614851, -7.988240213308018e-06, 0.006143993232399225, 0.0014267998049035668, 0.012995520606637001, -0.023507453501224518, 0.01803489401936531, -0.02801256626844406, 0.0033355168998241425, 0.009847716428339481, 0.006638545077294111, 0.005909352097660303, 0.019753191620111465, -0.012872785329818726, 0.043347280472517014, 0.016547629609704018, 0.006988702341914177, 0.0010486663086339831, -0.033095259219408035, 0.012576775625348091, 0.016258839517831802, -0.011753726750612259, -0.004248813260346651, -0.029138844460248947, -0.0024601242039352655, -0.004284911789000034, 0.02508135512471199, -0.021846914663910866, -0.00956614688038826, -0.022843237966299057, 0.011277223937213421, -0.0013636271469295025, -0.00818717759102583, -0.0022200681269168854, 0.0018861554563045502, -0.029976334422826767, 0.012511798180639744, 0.0029348216485232115, 0.023391935974359512, 0.007624038495123386, 0.00013300102727953345, 0.017399558797478676, -0.005042984150350094, 0.01845363900065422, -0.01236740406602621, 0.008367671631276608, -0.014078480191528797, 0.006302827503532171, -0.017312921583652496, -0.006360585335642099, 0.0003413580416236073, -0.005768567323684692, -0.018857944756746292, -0.0020449894946068525, 0.0020359649788588285, 0.01199197769165039, -0.006764890160411596, 0.0034564475063234568, 0.04103696718811989, -0.01363085675984621, -0.031766828149557114, 0.01539247203618288, 0.007291930727660656, -0.006613275967538357, 0.00926291849464178, 0.007645697798579931, 0.0025341263972222805, -0.030496153980493546, 0.030669428408145905, 0.022857677191495895, 0.012764489278197289, -0.00846874713897705, 0.01363085675984621, -0.014201216399669647, 0.018410321325063705, 0.030351759865880013, -0.034943509846925735, -0.03381723165512085, 0.00045010526082478464, -0.02298763208091259, 0.007833410985767841, -0.015045925043523312, 0.014843772165477276, 0.004479844588786364, -0.03306638076901436, 0.007353298831731081, 0.005342602729797363, 0.0015008021146059036, -0.008360451087355614, 0.014280633069574833, -0.011212246492505074, -0.017673907801508904, -0.0040358309634029865, 0.005938231013715267, -0.007252222392708063, 0.01828036457300186, 0.00564583158120513, -0.019161172211170197, 0.0459463857114315, -0.003099070629104972, 0.013991843909025192, 0.006306437309831381, 0.01610000617802143, -0.00990547426044941, -0.004173005931079388, -0.0026153484359383583, -0.009696101769804955, 0.004151346627622843, 0.014027941972017288, 0.00635336572304368, -0.01304605882614851, -0.02305983006954193, -0.015551306307315826, -0.0036622099578380585, -0.013067717663943768, 0.007443545386195183, 0.015233637765049934, 0.008750316686928272, -0.020778393372893333, -0.009392873384058475, -0.0033625909127295017, -0.006815428379923105, 0.015883414074778557, -0.0064688813872635365, -0.002434855094179511, 0.0035015707835555077, -0.010793501511216164, -0.023507453501224518, -0.0171829666942358, -0.01137108076363802, -0.022467810660600662, -0.0028535996098071337, -0.013017179444432259, -0.004385988228023052, -0.0035358646418899298, -0.0014403368113562465, -0.0005162109737284482, -0.010259241797029972, -0.005328163504600525, 0.0005333578446879983, 0.007136706728488207, 0.0013067717663943768, 0.02642422541975975, 0.01434561051428318, 0.028330234810709953, -0.012446820735931396, -0.004209104925394058, -0.006959823425859213, 0.00016763318853918463, -0.006201751064509153, -0.018265925347805023, 0.010418075136840343, 0.008692558854818344, -0.005035764072090387, 0.05489885434508324, 0.011818704195320606, 0.011060631833970547, -0.004898589104413986, -0.004537602420896292, -0.012078613974153996, -0.009883815422654152, 0.02424386516213417, -0.0009611270506866276, 0.005144060123711824, 0.01611444540321827, 0.005692759994417429, 0.0037795305252075195, -0.005793836433440447, -0.04490674287080765, 0.014778794720768929, 0.011356640607118607, 0.007775653153657913, -0.01878574676811695, 0.006060966290533543, 0.02366628684103489, -0.015464669093489647, -0.017500633373856544, 0.02736278995871544, -0.00036978573189117014, 0.028214719146490097, -0.0038408981636166573, -0.00616565253585577, 0.0015865364111959934, 0.017688347026705742, 0.0032452703453600407, -0.023796241730451584, -0.004057490266859531, 0.005234306678175926, -0.012504578568041325, 0.005941840820014477, 0.0011280833277851343, 0.019493279978632927, 0.01132054254412651, 0.00750852283090353, -0.0015657796757295728, 0.0014962897403165698, 0.004313790705054998, 0.004541212227195501, -0.03373059630393982, -0.018771307542920113, 0.008403769694268703, -0.007595159579068422, 0.011024532839655876, -0.0012959422310814261, -0.012807807885110378, -0.03705167397856712, -0.011674309149384499, 0.0030268733389675617, 0.014944848604500294, 0.005635002162307501, 0.020446285605430603, -0.026886288076639175, 0.014713817276060581, 0.010360317304730415, -0.014186776243150234, -0.00826659519225359, -0.015739019960165024, -0.02139929123222828, -0.02241005375981331, -0.00482278224080801, -0.007645697798579931, -0.02122601680457592, 0.008050003089010715, -0.010028209537267685, -0.017746105790138245, 0.017240723595023155, 0.015334714204072952, -0.007862289436161518, 0.021370410919189453, 0.04285633936524391, -0.01162377092987299, 0.008483187295496464, 0.005866033490747213, -0.005061033181846142, 0.018309244886040688, 0.005107961595058441, -0.024474896490573883, -0.013486462645232677, 0.016302159056067467, -0.01434561051428318, 0.015825655311346054, -0.010158165358006954, 0.0038084094412624836, -0.011811484582722187, -0.0021749448496848345, -0.0065771774388849735, -0.0009214184829033911, -0.011898120865225792, -0.003005214035511017, -0.005855204071849585, 0.003046727506443858, 0.006999531760811806, 0.006634935270994902, 0.00031631457386538386, 0.0008212446700781584, 0.009486730210483074, -0.003577378112822771, 0.00964556448161602, -0.0015387057792395353, -0.008201617747545242, 0.015594624914228916, 0.0027525234036147594, -0.022843237966299057, -0.008064442314207554, -0.006060966290533543, -0.008800854906439781, 0.012995520606637001, 0.017500633373856544, -0.010345878079533577, 0.0011082291603088379, -0.0042921314015984535, -0.025557857006788254, -0.021846914663910866, -0.0015504377661272883, -0.007068119011819363, 0.0065482985228300095, -0.0058443741872906685, -0.014706597663462162, 0.018655791878700256, -8.669320959597826e-05, -0.02467704936861992, -0.004425696562975645, -0.009818837977945805, -0.00036640148027800024, 0.008013904094696045, 0.0030738015193492174, 0.028416872024536133, 0.0076529174111783504, 0.012699511833488941, -0.004281301982700825, 0.012280766852200031, -0.012425161898136139, 0.018338123336434364, -0.013096597045660019, 0.013991843909025192, 0.03297974169254303, 0.007530182134360075, 0.03505902737379074, 0.009306236170232296, 0.005541145335882902, 0.018727989867329597, -0.02835911326110363, 0.008143859915435314, -0.028965571895241737, 0.020345209166407585, -0.013905206695199013, -0.00616565253585577, 0.00322902575135231, -0.009580586105585098, -0.009255698882043362, -0.01618664339184761, 0.026640817523002625, -0.012872785329818726, 0.00898134894669056, -0.016749782487750053, -0.005414800252765417, -0.003682064125314355, -0.012562336400151253, 0.002434855094179511, 0.017572831362485886, 0.011919780634343624, 0.026886288076639175, 0.008569823578000069, -0.007616818882524967, -0.006425562780350447, -0.00851206574589014, -0.0064688813872635365, -0.03211337327957153, 0.03205561637878418, -0.009291796945035458, 0.0036188915837556124, 0.0030719966161996126, -0.02222234010696411, 0.005858813878148794, -0.017240723595023155, -0.003564743557944894, 0.03194010257720947, -0.0002236989384982735, 0.002698375377804041, -0.007898388430476189, -0.007609599269926548, -0.007710675708949566, -0.014533324167132378, 0.010728524066507816, -0.019695432856678963, 0.00012916554987896234, -0.0066241053864359856, -0.01271395105868578, -0.018265925347805023, -0.01627327874302864, 0.014323951676487923, 0.013443144038319588, 0.02054736204445362, -0.0032831737771630287, -0.010815161280333996, 0.01778942346572876, 0.016634266823530197, 0.004025001544505358, -0.006699912715703249, -0.010916236788034439, -0.0011064241407439113, -0.01862691342830658, -0.00702841067686677, 0.013500901870429516, -0.018006015568971634, -0.016720902174711227, -0.0012679657666012645, 0.028055883944034576, 0.008995788171887398, 0.0017210040241479874, 0.0017137842951342463, -0.010685205459594727, 0.013197673484683037, 0.003974463324993849, 0.011732066981494427, 0.009046326391398907, 0.0005432849284261465, 0.016735343262553215, -0.004566481336951256, -0.006147603038698435, 0.0037867503706365824, 0.005328163504600525, 0.025716690346598625, 0.00516210962086916, 0.02181803435087204, -0.004248813260346651, -0.004978006239980459, 0.01955103874206543, -0.019695432856678963, 0.023622969165444374, 0.01929112896323204, -0.0023734874557703733, 0.003768700873479247, 0.008844173513352871, -0.020677316933870316, 0.0016036833403632045, -0.021789155900478363, 0.005338992923498154, 0.004122467711567879, -0.030236244201660156, 0.00396002409979701, -0.01372471358627081, 0.009833277203142643, -2.1461786673171446e-05, -0.02399839460849762, -0.004378768615424633, -0.006198141258209944, 0.017255162820219994, 0.023897318169474602, -0.007443545386195183, -0.01342148520052433, 0.020619560033082962, 0.0008338792249560356, -0.025788888335227966, 0.010028209537267685, 0.0054292394779622555, -0.006977872457355261, -0.005129620898514986, 0.007566280663013458, 0.012778928503394127, -0.014316732063889503, -0.00792726781219244, 0.028503507375717163, -0.005837154574692249, 0.020605118945240974, 0.0009584196377545595, 0.01651875115931034, 0.02783929370343685, 0.01103897299617529, -0.01064910739660263, 0.008714218623936176, -0.01611444540321827, 0.00241319602355361, 0.019276687875390053, 0.021789155900478363, -0.005071863066405058, 0.015955612063407898, -0.020258571952581406, -0.003981682937592268, -0.02560117468237877, 0.0007991342572495341, -0.0015405106823891401, 0.01497372705489397, 0.014778794720768929, -0.002929406939074397, -0.00851928535848856, 0.018670231103897095, -0.013074937276542187, 0.03228664770722389, -0.005692759994417429, -0.01947884075343609, -0.01291610300540924, -0.011349420994520187, 0.0030593620613217354, 0.0035250349901616573, -0.006642154883593321, -0.009154622443020344, -0.01061300840228796, 0.004050270654261112, -0.00459536025300622, 0.03396162763237953, 0.02333417907357216, 0.008100541308522224, 0.02551453933119774, 0.0004959054640494287, -0.005089912097901106, 0.019594356417655945, 0.004746974911540747, 0.0002277600287925452, 0.015161440707743168, -0.002391536720097065, 0.0046892170794308186, 0.0041946652345359325, 0.013782471418380737, 0.0035755729768425226, 0.03170907124876976, 0.019175613299012184, -0.0013374557020142674, 0.0049960557371377945, 0.02851794846355915, 0.013060498051345348, 0.010894577950239182, 0.012186910025775433, -0.024980278685688972, 0.016302159056067467, -0.004237983841449022, -0.00922681950032711, -0.0041657863184809685, -0.005097131710499525, -0.002019720384851098, -0.024474896490573883, -0.011450497433543205, -0.016648706048727036, 0.002254361752420664, -0.008627581410109997, -0.0037289923056960106, -0.008093321695923805, -0.0015648772241547704, -0.0034131291322410107, 0.016042247414588928, -0.00015781886759214103, -0.007100608199834824, 0.01703857071697712, 0.021543685346841812, 0.01946440152823925, 0.01443224772810936, 0.01196309830993414, -0.01477157510817051, 0.0006339828833006322, -0.012179690413177013, 0.009147402830421925, 0.004126077983528376, -0.005902132019400597, 0.009826057590544224, -0.00965278409421444, 0.01777498424053192, -0.004559261724352837, -0.009912693873047829, -0.0213126540184021, 0.02056180126965046, -0.014258974231779575, 0.005674710497260094, -0.026698574423789978, 0.005869643297046423, -0.0015540476888418198, -0.03673400357365608, -0.028041444718837738, 0.0023536330554634333, -0.014129018411040306, 0.003330102190375328, -0.0035250349901616573, 0.02583220601081848, -0.006573567632585764, 0.008374891243875027, 0.03413490206003189, 0.008815295062959194, -0.017096329480409622, -0.0006948993541300297, 0.007046460174024105, 0.003220001235604286, -0.015276956371963024, 0.009688882157206535, -0.014360049739480019, -0.005133230704814196, -0.0057974462397396564, -0.004703656304627657, -0.007631258573383093, -0.015753459185361862, -0.006328096613287926, 0.01611444540321827, -0.03439481183886528, 0.011334981769323349, 0.009428972378373146, 0.0019132293527945876, -0.00015601393533870578, -0.0005103449220769107, 0.011688748374581337, 0.0092701381072402, -0.007064509205520153, -0.037282705307006836, 0.007414666470140219, 0.01434561051428318, 0.032921984791755676, -0.009739420376718044, 0.002259776694700122, 0.013609197922050953, -0.012887224555015564, 0.0014863626565784216, 0.0157678984105587, -0.0024727587588131428, 0.004082759376615286, -0.007017581257969141, 0.006284778006374836, 0.021197138354182243, 0.016489870846271515, -0.008649241179227829, 0.005595293361693621, 0.00411163829267025, 0.013594758696854115, -0.005663881078362465, 0.031073734164237976, 0.011898120865225792, 0.003111705183982849, 0.0002239245513919741, -0.0021460657007992268, -0.023767363280057907, -0.005967109929770231, 0.011883681640028954, -0.02450377494096756, -0.019782070070505142, 0.01677866093814373, -0.0030070189386606216, -0.0018681060755625367, 0.022337855771183968, -0.031911224126815796, -0.002319339429959655, -0.011082290671765804, -0.01745731569826603, 0.023637408390641212, -0.013472022488713264, 0.014186776243150234, 0.0033282972872257233, 0.006533858831971884, 0.01862691342830658, -0.006699912715703249, 0.006382244639098644, 0.022612204775214195, 0.00919072050601244, -0.02215014211833477, -0.021038303151726723, 0.0065952264703810215, 0.0002752523578237742, 0.02609211765229702, -0.0342504158616066, 0.009039106778800488, -0.0016397819854319096, 0.02264108508825302, 0.002945651300251484, -0.00664937449619174, -0.0038300687447190285, 0.018078213557600975, 0.016663145273923874, -0.012973860837519169, 0.003140584100037813, -0.022438932210206985, 0.007999464869499207, 0.017139647156000137, -0.01888682320713997, 0.0017733470303937793, 0.020200815051794052, 0.018352562561631203, 0.013363727368414402, 0.005653051193803549, -0.00497078662738204, -0.006533858831971884, 0.01439614873379469, -0.016460992395877838, 0.011306102387607098, 0.024041712284088135, -0.010331438854336739, -0.001695734914392233, 0.0009863961022347212, 0.009472290053963661, -0.01601336896419525, 0.009306236170232296, 0.004855270963162184, 0.011833143420517445, -0.009241258725523949, -0.009703322313725948, -0.011811484582722187, -0.004718095995485783, 0.02300207130610943, -0.009378434158861637, -0.016995253041386604, 0.006349755916744471, -0.0006154822767712176, -0.00478307344019413, 0.008346011862158775, 0.017500633373856544, 0.0016090981662273407, 0.0047072661109268665, 0.0055086566135287285, 0.030813822522759438, 0.02014305628836155, 0.003266929415985942, 0.007573500741273165, -0.007143926341086626, -0.004880540072917938, -0.008071661926805973, 0.02256888709962368, 0.01601336896419525, -0.0003530900867190212, -0.0005893107736483216, -0.013645296916365623, -0.013168794102966785, -0.027406109496951103, 0.01128444354981184, 0.024705927819013596, 0.022135702893137932, -0.0038589476607739925, 0.021702518686652184, -0.014872651547193527, -0.0028012567199766636, -0.0030864360742270947, 0.004180225543677807, 0.003432983299717307, -0.005562804639339447, 0.0005464435671456158, 0.010540811344981194, 0.0032831737771630287, 0.018309244886040688, 0.021933550015091896, 0.033095259219408035, -0.009335115551948547, 0.013789691030979156, -0.00578661635518074, 0.01695193536579609, -0.02089390903711319, 0.008353231474757195, -0.01702413149178028, -0.0015657796757295728, -0.002747108694165945, -0.009869376197457314, 0.002346413442865014, -0.031102612614631653, -0.004992445930838585, 0.018265925347805023, 0.01953659951686859, 0.021023863926529884, -0.0037506516091525555, -0.0055880737490952015, 0.0031243397388607264, -0.0082232765853405, 0.020691756159067154, -0.01796269789338112, -0.0015585599467158318, -0.01996978372335434, 0.002487198216840625, -0.007201684173196554, 0.007631258573383093, 0.016980813816189766, 0.004223544150590897, 0.013926866464316845, 0.0213126540184021, 0.0016388795338571072, -0.019912024959921837, -0.016172204166650772, 0.005209037568420172, 0.0017282237531617284, 0.00022211961913853884, -0.03456808626651764, -0.0023409987334161997, 0.009927134029567242, -0.004014171659946442, 0.00015669077401980758, -0.020013101398944855, -0.026294270530343056, -0.005822715349495411, 0.005562804639339447, 0.025615615770220757, -0.0034817166160792112, 0.010042649693787098, 0.014605521224439144, -0.032777588814496994, 0.009161842055618763, -0.010107627138495445, 0.005133230704814196, -0.020850591361522675, 0.012728390283882618, 0.004588140640407801, 0.0020810882560908794, -0.004028611350804567, -0.03647409379482269, -0.010064308531582355, -0.023449694737792015, -0.004147736821323633, 0.016143323853611946, 0.0011984758311882615, 0.01628771983087063, -0.017645029351115227, -0.002609933726489544, -0.003783140331506729, -0.007638478185981512, -0.005920181516557932, 0.012836686335504055, -0.012215789407491684, 0.005375091452151537, 0.009717761538922787, -0.00396002409979701, 0.007421886082738638, 0.010714084841310978, -0.0009972257539629936, 0.010887358337640762, -2.9273764084791765e-05, 0.02440270036458969, 0.006779329851269722, -0.014634399674832821, 0.003869777312502265, 0.003478106576949358, -0.01703857071697712, 0.0103169996291399, -0.007107827812433243, 0.017471754923462868, -0.02215014211833477, -0.0033643958158791065, 0.014915969222784042, -0.01543579064309597, -0.015955612063407898, 0.004414867144078016, 0.002106357365846634, -0.024056151509284973, -0.014735476113855839, -0.014027941972017288, -0.01643211394548416, 0.001938498462550342, -0.020763954147696495, -0.007537401746958494, -0.007075339090079069, 0.02333417907357216, -0.00813663937151432, -0.005562804639339447, 0.0066746436059474945, 0.0011813289020210505, 0.006559127941727638, -0.025702251121401787, 0.023449694737792015, -0.034856874495744705, 0.012519017793238163, -0.001527876127511263, 0.0026785212103277445, 0.017298482358455658, -0.030409518629312515, 0.0407770536839962, 0.004469015169888735, -0.010865699499845505, -0.015753459185361862, -0.006508589722216129, 0.00721251405775547, -0.0013907011598348618, -0.01363085675984621, 0.027406109496951103, -0.006494150497019291, 0.010548030957579613, -0.026828529313206673, -0.001276087947189808, 0.01514700148254633, -0.027131758630275726, 0.020273011177778244, 0.011017313227057457, 0.009241258725523949, -0.015955612063407898, -0.00964556448161602, 0.00010034301521955058, -0.008750316686928272, 0.003221806138753891, -0.010930676944553852, 0.006032087374478579, -0.00396002409979701, -2.0418308849912137e-05, -0.003483521519228816, -0.0185402762144804, 0.003358981106430292, 0.0031532186549156904, -0.00952282827347517, -0.017486194148659706, 0.0010784476762637496, -0.01376081258058548, -0.009573366492986679, -0.022511130198836327, -0.006006818264722824, -0.006064576096832752, -0.019175613299012184, -0.014887090772390366, -0.0067251818254590034, -0.0092701381072402, -0.0016271474305540323, 0.017832741141319275, 0.00898134894669056, -0.027723776176571846, -0.01635991595685482, 0.026308709755539894, 4.8789606807986274e-05, 0.006248679477721453, -0.0008582458249293268, 0.005689150188118219, 0.02297319285571575, -0.011515474878251553, -0.0007382177864201367, -0.006097064819186926, -0.043174006044864655, 0.018265925347805023, 0.0018518617143854499, 7.687888137297705e-05, 0.007107827812433243, 0.005772177129983902, -0.0073280297219753265, -0.0085914833471179, 0.017558392137289047, 0.012829466722905636, -0.02415722794830799, 0.0013203087728470564, 0.008064442314207554, -0.014547763392329216, -0.00818717759102583, 0.009407312609255314, -0.001355504966340959, -0.011378300376236439, 0.020085299387574196, 0.004949127323925495, -0.014930409379303455, 0.0034149340353906155, -0.011768165975809097, 0.0062414598651230335, -0.001996256411075592, -0.02642422541975975, -0.02508135512471199, -0.027319472283124924, -0.002696570474654436, 0.003454642603173852, -0.0044509656727313995, 0.0008086101734079421, 0.009031887166202068, -0.02207794599235058, 0.021370410919189453, -0.01601336896419525, 0.005620562471449375, 0.009840496815741062, -0.00027728290297091007, -0.0033770303707569838, 0.004584530834108591, 0.020114177837967873, 0.0073460787534713745, 0.010085968300700188, 0.003895046189427376, 0.004140517208725214, 0.013522560708224773, 0.01019426342099905, 0.02392619661986828, 0.0033481514547020197, 0.021543685346841812, 0.008172738365828991, -0.014915969222784042, -0.010721304453909397, 0.023868439719080925, 0.009284577332437038, 0.0011064241407439113, -0.025644494220614433, -0.01300995983183384, -0.01838144101202488, -0.014569422230124474, 0.006396683864295483, -0.0042632524855434895, 0.00019933233852498233, -0.0026767163071781397, -0.012944982387125492, 0.006393074057996273, -0.020836150273680687, -0.012410721741616726, -0.03194010257720947, -0.002283240668475628, 0.00463867885991931, 0.003207366680726409, 0.02290099486708641, 0.017688347026705742, 0.013912426307797432, 0.0054978271946311, -0.024056151509284973, 0.002660471946001053, 0.03323965519666672, -0.026496421545743942, 0.015825655311346054, -0.028821175917983055, -0.005570024251937866, -0.011818704195320606, -0.008721438236534595, 0.009703322313725948, 0.021688079461455345, -0.007753993850201368, -0.0008568921475671232, 0.004718095995485783, -0.015464669093489647, -0.0018121531466022134, 0.011450497433543205, 0.006761280354112387, 0.007042849902063608, 0.008988568559288979, -0.005855204071849585, -0.0037217726930975914, 0.0009065277990885079, 0.0004128785221837461, 0.0031802926678210497, -0.002637007739394903, 0.007429105695337057, -0.004848050884902477, -0.025817766785621643, -0.0021406509913504124, 0.018395882099866867, -0.002747108694165945, -0.016331037506461143, 0.00784785021096468, 0.007421886082738638, -0.01069964561611414, 0.005205427762120962, -0.013652516528964043, -0.015825655311346054, -0.0017959087854251266, 0.008295473642647266, -0.0020756733138114214, 0.017919378355145454, -0.016331037506461143, -0.017991576343774796, 0.01703857071697712, 0.013291529379785061, 0.003941974602639675, 0.01023758202791214, -0.025615615770220757, -0.0071691954508423805, 0.011205026879906654, -0.0006569957477040589, -0.0017038570949807763, -0.023767363280057907, -0.018352562561631203, 0.009104084223508835, -0.015912292525172234, -0.0036405506543815136, 0.021774716675281525, 0.010078747756779194, 0.021009424701333046, -0.026207633316516876, 0.00482639204710722, -0.020994985476136208, 0.001511631766334176, 0.007245002780109644, -0.0039275349117815495, 0.01838144101202488, 0.011775385588407516, 0.008526504971086979, -0.001381676527671516, 0.02031633071601391, -0.00153058348223567, 0.0030719966161996126, -0.0003979878092650324, 0.00396724371239543, -0.01586897484958172, 0.006432782858610153, -0.006450831890106201, -0.007753993850201368, -0.0015486328629776835, -0.009493949823081493, 0.009876595810055733, 0.021745838224887848, 0.00205401424318552, 0.005783006548881531, 0.017673907801508904, -0.010208703577518463, 0.00047875859308987856, 0.0054617286659777164, 0.015291395597159863, -0.0016181227983906865, 0.0034275685902684927, 0.025456780567765236, -0.006479710806161165, -0.00669269310310483, 0.012778928503394127, 0.0103169996291399, 0.005295674782246351, -0.004898589104413986, -0.002398756565526128, -0.0034943511709570885, 0.0034510325640439987, 0.019276687875390053, 0.016576508060097694, -0.008678119629621506, 0.019435523077845573, 0.014417807571589947, 0.018482517451047897, -0.0013275285018607974, 0.009631124325096607, -0.007259442005306482, 0.00855538435280323, -0.024807004258036613, 0.01295942161232233, -0.013847448863089085, 0.015045925043523312, -0.011645430698990822, 0.006476100999861956, 0.006201751064509153, -0.011522694490849972, -0.009775519371032715, 0.009284577332437038, 0.015739019960165024, 0.005021324846893549, 0.0016903200885280967, -0.02776709571480751, -0.025572296231985092, 0.017991576343774796, 0.015262517146766186, 0.013645296916365623, 0.023507453501224518, -0.0033210774417966604, -0.0036766494158655405, -0.010439734905958176, 0.015970051288604736, -0.01838144101202488, 0.008006684482097626, -0.011508255265653133, 0.014064040966331959, -0.012894444167613983, -0.027117319405078888, -0.009407312609255314, 0.005342602729797363, -0.007963365875184536, 0.002440270036458969, 0.001355504966340959, 0.038206830620765686, 0.005941840820014477, 0.004183835815638304, -0.013226551935076714, -0.02155812457203865, 0.0036549901124089956, 0.005559194833040237, -0.011168927885591984, -0.04372270777821541, 0.010381977073848248, 0.015363592654466629, 0.007559061050415039, 0.012165251187980175, -0.0099487928673625, 0.010446954518556595, 0.0049166386015713215, 0.0013834814308211207, -0.004310180898755789, -0.017803862690925598, -0.018410321325063705, -0.01468493789434433, -0.015175879932940006, 0.009443411603569984, -0.009696101769804955, -0.0037650910671800375, -0.005663881078362465, 0.01836700178682804, -0.00578661635518074, -0.009530048817396164, -0.006284778006374836, 0.021615883335471153, 0.004461795557290316, 0.002579249907284975, -0.001931278733536601, 0.022265657782554626, 0.014316732063889503, -0.04147015139460564, 0.007573500741273165, 0.010750182904303074, -0.0059237913228571415, -0.016677584499120712, 0.004169396124780178, 0.01334206759929657, -0.016489870846271515, 0.005739688407629728, -0.0020522093400359154, 0.003010628977790475, -0.004873319994658232, 0.008006684482097626, -0.008995788171887398, 0.004830001853406429, -0.022872116416692734, -0.022669963538646698, -0.0052812350913882256, -0.011168927885591984, -0.019002338871359825, 0.015406911261379719, -0.006454441696405411, -0.01275726966559887, 0.006100675091147423, 0.009169061668217182, -0.022886555641889572, -0.023709604516625404, -0.0026424224488437176, 0.015984490513801575, 0.0025539807975292206, 0.010519151575863361, 0.011775385588407516, -0.024893641471862793, 0.015897853299975395, -0.001931278733536601, -0.0025467609521001577, -0.012309646233916283, 0.0020161105785518885, -0.009999331086874008, 0.014244534075260162, 0.040661539882421494, 0.014786014333367348, -0.010187043808400631, 0.006266728974878788, -0.014179556630551815, 0.014251753687858582, -0.003945584408938885, 0.015609064139425755, 0.008237715810537338, -0.007465204689651728, 0.01228798646479845, 0.005436459556221962, -0.027637140825390816, -0.016923055052757263, 0.011493816040456295, -0.005837154574692249, -0.004227153956890106, 0.0019565478432923555, -0.027550503611564636, 0.00534982280805707, -0.0007883046637289226, 0.020792832598090172, -0.0007571695605292916, -0.004071929957717657, 0.0037795305252075195, -0.009847716428339481, 0.012013636529445648, 0.022554447874426842, -0.005328163504600525, 0.004992445930838585, 0.010490273125469685, -0.018727989867329597, 0.011443277820944786, 0.025124672800302505, 0.0029637005645781755, 0.010201483964920044, 0.004057490266859531, -0.007855069823563099, 0.004848050884902477, 0.009696101769804955, -0.013183233328163624, 0.019088976085186005, 0.018251486122608185, 0.018857944756746292, 0.0025052474811673164, -0.007631258573383093, -0.0032163914293050766, -0.023767363280057907, -0.0035665484610944986, 0.012179690413177013, 0.0024727587588131428, -0.00011788471601903439, 0.005570024251937866, 0.0157678984105587, -0.0013139914954081178, 0.015609064139425755, -0.009443411603569984, 0.00028382576419971883, -0.019421083852648735, -0.007753993850201368, -0.004920248407870531, 0.016460992395877838, -0.011479376815259457, -0.004097198601812124, 0.01303883921355009, -0.00997767224907875, -0.010114846751093864, -0.009465070441365242, -0.018511397764086723, 0.0010558860376477242, -0.0005969817284494638, -0.014511664398014545, -0.00035850488347932696, -0.023391935974359512, 0.0006398488767445087, 0.0013500901404768229, -0.008346011862158775, 0.031593553721904755, 0.01098843477666378, -0.004025001544505358, -0.005934621207416058, -0.00241319602355361, -0.004905809182673693, -0.0077323345467448235, -0.0033553713001310825, 0.018352562561631203, -0.01270673144608736, -0.01578233763575554, -0.0017995185917243361, 0.004598970524966717, 0.01539247203618288, 0.010439734905958176, -0.0025774450041353703, -0.009847716428339481, -0.011739286594092846, -0.010158165358006954, -0.034019384533166885, 0.0008244033087976277, 0.001983621856197715, -0.0018482517916709185, -0.023969516158103943, 0.0027308643329888582, 0.002360852900892496, 0.0012535261921584606, -0.003187512280419469, 0.0062595088966190815, 0.007230563089251518, -0.005902132019400597, 0.0035376695450395346, -0.000635787786450237, 0.0203885268419981, -0.016143323853611946, 0.01170318853110075, -0.0013753592502325773, 0.01208583451807499, 0.01199197769165039, -0.012648973613977432, -9.200929866892693e-07, 0.0247636865824461, 0.003682064125314355, 0.018078213557600975, -0.005432849749922752, 0.02207794599235058, -0.009847716428339481, -0.000690838263835758, -0.004728925414383411, 0.01653319038450718, 0.015666821971535683, -0.011825923807919025, 0.00224533723667264, 0.00241319602355361, 0.0030431177001446486, 0.011111170053482056, -0.000911491340957582, 0.0020738684106618166, -0.0006254094187170267, 0.009248478338122368, -0.0007454375154338777, -0.011566013097763062, 0.011847582645714283, -0.01947884075343609, -0.0008483186829835176, -0.02064843848347664, 0.015796776860952377, -0.0032109764870256186, 0.005736078135669231, -0.01686529815196991, 0.0015450229402631521, 0.0030936559196561575, 0.0018699109787121415, 0.001381676527671516, 0.005274015478789806, -0.01510368287563324, -0.028214719146490097, -0.012547897174954414, -0.02610655687749386, 0.0034871313255280256, 0.008324353024363518, 0.017413998022675514, 0.0007634868379682302, 0.0036838690284639597, -0.020836150273680687, 0.010548030957579613, -0.012648973613977432, -0.006808208767324686, -0.0006195433670654893, -0.0018987898947671056, -0.000559078122023493, 0.016085566952824593, 0.00927735771983862, -0.025962162762880325, 0.00482278224080801, -0.0014195800758898258, -0.003162243403494358, 0.03003409132361412, -0.012677852064371109, 0.0016370746307075024, -0.0037362121511250734, -0.0020883078686892986, -0.012201350182294846, -0.0261787548661232, -0.0053606522269546986, -0.013623637147247791, 0.0171252079308033, -0.02431606315076351, -0.004230763763189316, 0.011862021870911121, 0.003126144642010331, -0.025774449110031128, -0.012829466722905636, 0.018323684111237526, 0.008151079528033733, -0.0320267379283905, 0.015825655311346054, 0.010353097692131996, -0.0026478373911231756, -0.019406644627451897, -0.002669496461749077, -0.00997767224907875, 0.014988167211413383, -0.006537468638271093, -0.0034600573126226664, 0.019652115181088448, 0.0018482517916709185, 0.012129152193665504, 0.013746372424066067, 0.008396550081670284, -0.017096329480409622, -0.005703589413315058, -0.005443679168820381, 0.012800587341189384, -0.005501437000930309, 0.012648973613977432, 0.0029257971327751875, -0.017587270587682724, 0.002360852900892496, -0.02542790211737156, -0.004801122937351465, -0.016417674720287323, 0.0021695299074053764, -0.0053317733108997345, 0.006512199528515339, 0.005187378730624914, 0.009717761538922787, 2.184251388825942e-05, -0.011919780634343624, 0.01236740406602621, 0.008836953900754452, -0.021283775568008423, -0.021529246121644974, 0.008035563863813877, -0.01962323673069477, -0.017053009942173958, -0.01372471358627081, 0.010822380892932415, -0.007096997927874327, 0.02441713958978653, -0.012143592350184917, 0.010706865228712559, -0.006739621516317129, -0.013219332322478294, 0.004956346936523914, -0.00952282827347517, 0.005783006548881531, -0.0050754728727042675, -0.011334981769323349, 0.021601442247629166, 0.012230228632688522, -0.0029492611065506935, -0.0002910455223172903, 0.018309244886040688, -0.020431846380233765, 0.010136505588889122, 0.012129152193665504, -0.02366628684103489, -0.008490406908094883, 0.007457984611392021, -0.028055883944034576, -0.00025675178039819, -0.013601978309452534, 0.014107359573245049, 0.004028611350804567, -0.007833410985767841, 0.006634935270994902, 0.008295473642647266, 0.012425161898136139, -0.025023596361279488, -0.01036753784865141, -0.0005423824768513441, -0.017515074461698532, 0.04279858246445656, 0.017688347026705742, -0.000767547928262502, -0.014237314462661743, 0.01438170950859785, -0.012612874619662762, 0.010179824195802212, 0.016489870846271515, -0.002440270036458969, -0.004266862757503986, 0.005779396742582321, -0.0015621698694303632, -0.0003742980770766735, 0.0026586668100208044, -0.011847582645714283, -0.011905340477824211, 0.007530182134360075, -0.011551573872566223, -0.004346279427409172, 0.00965278409421444, 0.011558793485164642, 0.0020792833529412746, -0.01064910739660263, 0.016807539388537407, 0.0062125809490680695, 0.014988167211413383, -0.01501704566180706, 0.0018338123336434364, -0.01828036457300186, -0.01819372922182083, 0.023435255512595177, -0.00025991041911765933, -0.02532682567834854, 0.02232341654598713, -0.00351240043528378, 0.010266461409628391, -0.0020883078686892986, 0.009667223319411278, -0.0006696303025819361, 0.010252022184431553, 0.0015504377661272883, -0.007443545386195183, 0.012468479573726654, -0.0025612004101276398, -0.019998662173748016, -0.007587939966470003, 0.003149608848616481, -0.008021123707294464, -0.0001568035950185731, -0.0025828597135841846, 0.009017447009682655, -0.026698574423789978, -0.013414264656603336, -0.009638343937695026, -0.026063239201903343, 0.021760277450084686, 0.011464936658740044, -0.019767630845308304, -0.01628771983087063, 0.006194531451910734, -0.018164848908782005, 0.008771976456046104, 0.009299016557633877, 0.02659749798476696, -0.013811350800096989, 0.02030189149081707, 0.0019330836366862059, -0.006974262651056051, 0.0026424224488437176, 0.01137108076363802, 0.01342148520052433, -0.024720367044210434, -0.015074803493916988, -0.00342034874483943, -0.009768299758434296, -0.031997859477996826, -0.020273011177778244, -0.010396416299045086, -0.01208583451807499, 0.01094511616975069, 0.018742429092526436, -0.01296664122492075, 0.017832741141319275, -0.004645898472517729, -0.01979650929570198, 0.007436325773596764, -0.014244534075260162, -0.0034582524094730616, 0.004775853827595711, 0.004667557775974274, -0.010865699499845505, -0.013472022488713264, -0.021919110789895058, 0.005414800252765417, 0.004162176512181759, -0.0030936559196561575, -0.01585453562438488, -0.016128884628415108, 0.01236740406602621, 0.01913229376077652, 0.017746105790138245, 0.016677584499120712, -0.0015630723210051656, -0.002543151145800948, -0.0043246205896139145, -0.020994985476136208, 0.011024532839655876, -0.0011939634568989277, 0.004797513131052256, 0.006782939657568932, -0.012533457949757576, -0.0019872316624969244, 0.0073785679414868355, -0.0034438129514455795, 0.0015522426692768931, 0.014786014333367348, 0.0012029880890622735, 0.0018717158818617463, 0.013407045044004917, 0.0037434317637234926, 0.011053412221372128, 0.0171829666942358, 0.02274216152727604, -0.0014484591083601117, 0.008410989306867123, 0.008389330469071865, 0.005512266419827938, 0.0069814822636544704, -0.011934219859540462, -0.00964556448161602, 0.008057222701609135, 0.0037795305252075195, -0.01514700148254633, 0.005227087065577507, 5.533248986466788e-05, -0.016143323853611946, 0.0006502272444777191, -0.023507453501224518, -0.003469082061201334, -0.009963232092559338, -0.007082558702677488, 0.010331438854336739, 0.02206350676715374, 0.004234373569488525, 0.018323684111237526, 0.00429574167355895, -0.0026947655715048313, 0.014699378050863743, 0.001847349340096116, 0.005353432614356279, 0.002407781081274152, 0.0036640148609876633, -0.006393074057996273, 0.012547897174954414, 0.0027055952232331038, 0.020605118945240974, -0.020792832598090172, 0.015739019960165024, -0.023680726066231728, -0.002655057003721595, 0.010844039730727673, 0.004469015169888735, 0.009342335164546967, 0.0061800917610526085, -0.006923724431544542, -0.009363994933664799, -0.0028030616231262684, 0.00986215565353632, -0.028503507375717163, -0.0032398554030805826, -0.005241526756435633, 0.002010695869103074, -0.016821978613734245, 0.005342602729797363, 0.0019493281142786145, 0.011176147498190403, -0.0063389260321855545, -0.00897412933409214, -0.024547094479203224, 0.0029510660097002983, 0.016302159056067467, 0.0033210774417966604, 0.023709604516625404, 0.005837154574692249, -0.036791764199733734, 0.009450631216168404, -0.00392392510548234, 0.0032633196096867323, -0.01195587869733572, -0.012677852064371109, 0.012807807885110378, 0.012417941354215145, 0.010533591732382774, -0.014872651547193527, -0.013204893097281456, 0.010114846751093864, -0.003952804021537304, -0.009761080145835876, -0.03194010257720947, -0.0002660020545590669, 0.01363807637244463, -0.0010522762313485146, -0.026640817523002625, 0.007703455630689859], "3473e066-8864-4ea6-b7bf-17c42665b599": [-0.034847334027290344, -0.011855732649564743, -0.01986239291727543, 0.009071765467524529, -0.024607622995972633, -0.017100462689995766, 0.024960210546851158, 0.03693347051739693, -0.008359246887266636, 0.029940498992800713, 0.01226708386093378, 0.005902156699448824, 0.008844053372740746, -0.03443598374724388, 0.0029437330085784197, 0.028412623330950737, 0.027237333357334137, 0.0024993265978991985, 0.006541220471262932, -0.022124825045466423, 0.021522488445043564, -0.004146568011492491, -0.05620821937918663, 0.030146175995469093, 0.016130847856402397, -0.010225018486380577, 0.02191914990544319, -0.0109081557020545, -0.04915648326277733, -0.01815822347998619, 0.01377292349934578, 0.006519183982163668, -0.0001587329461472109, -0.00261685554869473, -0.021331503987312317, -0.01873117685317993, -0.013618666678667068, -0.018672412261366844, -0.02302098274230957, -0.031967874616384506, 0.0036415611393749714, 0.027354862540960312, -0.0032797921448946, -0.010599642060697079, -0.036492738872766495, 0.007297812961041927, 0.03587571159005165, -0.009887122549116611, -0.0168800950050354, -0.030821967869997025, 0.013662740588188171, 0.01774687133729458, -0.003691143589094281, 0.007492470555007458, 0.044043973088264465, -0.037197913974523544, -0.010937537997961044, 0.04921524599194527, -0.009865086525678635, -0.052564822137355804, 0.03205602243542671, 0.009821012616157532, 0.006978281307965517, -0.03796185180544853, 0.0014360568020492792, -0.025459708645939827, 0.03290810436010361, 0.024284418672323227, -0.0031347174663096666, -0.009468425996601582, -0.013714158907532692, 0.004719521850347519, -0.04563061520457268, 0.01620430313050747, 0.014977595768868923, -0.03731544315814972, 0.04633578658103943, 0.021698782220482826, 0.010078107006847858, 0.01206140872091055, -0.022741852328181267, -0.0025195267517119646, 0.03217355161905289, -0.03217355161905289, 0.06182022765278816, 0.03290810436010361, -0.011503146030008793, -0.040723782032728195, -0.004712176509201527, -0.03190910816192627, 0.0033624297939240932, 0.04013613611459732, -0.01211282704025507, 0.020450036972761154, -0.008814671076834202, 0.013581939041614532, 8.0686375440564e-05, 0.01748243160545826, 0.019994612783193588, 0.010474767535924911, -0.005090472754091024, 0.006798315327614546, -0.023917140439152718, 0.009365588426589966, 0.021625326946377754, 0.005854410585016012, -0.027810286730527878, -0.014103474095463753, -0.05071374028921127, -0.011451726779341698, 0.008432702161371708, -0.05747165530920029, 0.004264097195118666, 0.027105113491415977, -0.04815748706459999, -0.00821968074887991, 0.0015398128889501095, -0.028162874281406403, -0.020023994147777557, -0.03155652433633804, 0.011782277375459671, 0.03643397241830826, 0.009358242154121399, 0.020185597240924835, -0.03922528773546219, 0.00042259920155629516, 0.034083396196365356, 0.0031916454900056124, 0.007918513379991055, -0.017291447147727013, 0.03446536511182785, -0.019377585500478745, 0.011385616846382618, 0.004319189116358757, 0.03193849325180054, 0.0096153374761343, 0.02949976548552513, 0.026664379984140396, -0.01283269189298153, 0.03514115512371063, -0.07075242698192596, -0.04765798896551132, -0.03276119381189346, 0.024019978940486908, -0.002626037457957864, 0.00232303305529058, -0.018716484308242798, 0.06540486216545105, -0.030792584642767906, 0.0332900732755661, -0.056795865297317505, -0.021992605179548264, -0.009644719772040844, 0.0063575818203389645, 0.001919027417898178, 0.004473445471376181, -0.010996302589774132, 0.048304397612810135, 0.03693347051739693, -0.005046399310231209, 0.01591048203408718, -0.040547486394643784, -0.006908498704433441, 0.01926005631685257, 0.026987584307789803, 0.02187507599592209, 0.062466636300086975, 0.02305036596953869, -0.02503366582095623, 0.017908474430441856, 0.02479860745370388, -0.0356406532227993, 0.03384833782911301, 0.028148183599114418, 0.015190616250038147, -0.0030447342433035374, 0.014676427468657494, 0.018936851993203163, 0.044543471187353134, -0.04762860760092735, -0.008579613640904427, 0.012120173312723637, -0.038343820720911026, -0.017526503652334213, 0.021463723853230476, 0.03593447804450989, -0.009571263566613197, 0.01889277808368206, 0.004704830702394247, -0.000968695618212223, -0.01521999854594469, -0.01003403402864933, 0.01899561658501625, 0.031233318150043488, 0.0017932347254827619, -0.030381232500076294, -0.004197987262159586, -0.029749514535069466, -0.02158125303685665, 0.03755049780011177, -0.006908498704433441, -0.0375211164355278, -0.03990107774734497, 0.027296097949147224, 0.00022036678274162114, -0.0015416492242366076, -0.02701696753501892, -0.03490609675645828, 0.02866237238049507, -0.024578241631388664, 0.02362331934273243, -0.041899070143699646, 0.009233367629349232, 0.021566562354564667, -0.01714453473687172, 0.01583702675998211, 0.012076099403202534, 0.0524766743183136, 0.011892460286617279, -0.04225165769457817, -0.014176929369568825, 0.00552018778398633, -0.005178619176149368, -0.034171540290117264, -0.06405327469110489, -0.0241228174418211, 0.01055556908249855, 0.03355451673269272, -0.060086674988269806, -0.012230356223881245, 0.015087778680026531, -0.002247741213068366, -0.009115839377045631, -0.004627702292054892, -0.006104159634560347, 0.01698293350636959, 7.781702151987702e-05, 0.007029700092971325, -0.004616683814674616, 0.010665751993656158, 0.01523469015955925, 0.0449548214673996, -0.001970446202903986, 0.0168800950050354, 0.006868097931146622, 0.019451040774583817, -0.012509487569332123, 0.006611003540456295, 0.024842681363224983, -0.0016077592736110091, -0.022727159783244133, 0.009960578754544258, 0.0007432787679135799, 0.0029639331623911858, -0.01909845508635044, 0.017967239022254944, 0.03969540446996689, 0.0015701133524999022, 0.012575597502291203, 0.026017971336841583, 0.03120393678545952, 0.03881393373012543, -0.02285938151180744, 0.001140398089773953, 0.019289439544081688, -0.008182953111827374, 0.01973017305135727, -0.023638010025024414, 0.019289439544081688, 0.007984623312950134, 0.005656080786138773, -0.003400993999093771, 0.04104698449373245, 0.009637373499572277, 0.013684776611626148, 0.011738203465938568, 0.019671408459544182, 0.0009255404584109783, 0.00036062105209566653, 0.035288065671920776, 0.006633040029555559, 0.002075120573863387, -0.005457750521600246, 0.026017971336841583, -0.006405327934771776, -0.009211331605911255, -0.026017971336841583, 0.006926862522959709, -0.04322127252817154, -0.008182953111827374, 0.004377953242510557, -0.006684458814561367, 0.03073382005095482, 0.03370142728090286, 0.047334782779216766, 0.03393648564815521, -0.01839327998459339, -0.005413677077740431, -0.03519992157816887, 0.012773927301168442, -0.006776278372853994, -0.030381232500076294, -0.008131533861160278, -0.04610073193907738, 0.021904457360506058, -0.05450405180454254, 0.01134154386818409, 0.00038495322223752737, -0.022771233692765236, 0.021551871672272682, 0.02882397547364235, -0.028515461832284927, -0.016116157174110413, 0.010188290849328041, 0.010731861926615238, 0.006313508376479149, 0.028295094147324562, 0.020229671150445938, -0.009233367629349232, -0.053505055606365204, 0.003428539726883173, -0.0033532478846609592, -0.02576822228729725, 0.02493082918226719, 0.01784970983862877, -0.04909771680831909, 0.013280771672725677, -3.288285370217636e-05, -0.02463700622320175, -0.0020181923173367977, 0.004311843309551477, -0.033672042191028595, -0.02594451606273651, -0.00788913108408451, -0.006798315327614546, -0.04207536205649376, -0.036463357508182526, -0.027237333357334137, 0.0035111773759126663, -0.024827990680933, 0.00042351739830337465, -0.01795254647731781, 0.038637641817331314, -0.040224283933639526, 0.0020090104080736637, 0.00880732573568821, 0.0071913027204573154, 0.01322200708091259, -0.03170343488454819, -0.002076956909149885, 0.0009365588193759322, 8.98683283594437e-05, 0.020126832649111748, -0.007639381568878889, 0.025077739730477333, -0.02030312642455101, -0.02775152400135994, -0.002708675106987357, 0.01451482530683279, 0.012098136357963085, -0.008234372362494469, -0.042633626610040665, -0.05832374095916748, 0.00444773631170392, -0.0057883006520569324, 0.0389314629137516, -0.014316495507955551, -0.019406966865062714, -0.0028684409335255623, 0.011356234550476074, -0.03384833782911301, 0.022139515727758408, 0.02620895579457283, -0.019788937643170357, 0.0008800898212939501, -0.03854949399828911, 0.055826250463724136, 0.02352048084139824, -0.031527139246463776, 0.010577605105936527, 0.0040841312147676945, 0.015352219343185425, 0.01667441986501217, 0.0036470701452344656, 0.021199284121394157, 0.05006733164191246, -0.01952449604868889, -0.0033734480384737253, -0.011047720909118652, 0.006265762262046337, -0.0038490730803459883, 0.025107121095061302, -0.009255404584109783, 0.01293553039431572, -0.021331503987312317, -0.006912171375006437, 0.0019024998182430863, -0.005645062308758497, 0.007415342144668102, -0.029382238164544106, -0.003885800950229168, -0.002117357449606061, -0.014338531531393528, -0.009020347148180008, -0.03828505426645279, -0.036022622138261795, -0.020450036972761154, -0.03393648564815521, 0.021889766678214073, 0.02660561539232731, 0.011348889209330082, 0.012009989470243454, 0.007301486097276211, 0.002727038925513625, 0.056090690195560455, 0.0071913027204573154, 0.011010993272066116, 0.05550304800271988, -0.0394015796482563, -0.012472759932279587, 0.05053744837641716, 0.04962659999728203, -0.03734482452273369, 0.009857740253210068, -0.005009671673178673, 0.02869175560772419, 0.03352513164281845, 0.004245733376592398, -0.04342694580554962, -0.020920153707265854, 0.007639381568878889, 0.0351705364882946, 0.0033238655887544155, -0.0050757816061377525, -0.009571263566613197, -0.023226657882332802, 0.015058396384119987, 0.0173502117395401, -0.016233686357736588, -0.008160916157066822, 0.0008741215569898486, 0.017835017293691635, -0.02963198721408844, 0.010511495172977448, 0.003243064507842064, -0.013677431270480156, -0.04560123383998871, 0.0194657314568758, 0.018878087401390076, -0.01690947823226452, -0.00012579270696733147, -0.022741852328181267, -0.045013587921857834, 0.009982614777982235, 0.032702431082725525, -0.015131852589547634, -0.005446732044219971, 0.0027068385388702154, 0.02808941900730133, -0.03446536511182785, 1.903819793369621e-05, 0.00393354706466198, 0.016498126089572906, -0.0030135156121104956, 0.016865404322743416, -0.03185034543275833, 0.009674102067947388, 0.04383829981088638, -0.006229034159332514, 0.0014975758967921138, -0.011047720909118652, -0.025724148377776146, -0.022257044911384583, 0.040253665298223495, 0.0241228174418211, -0.021816311404109, -0.015396292321383953, -0.01771748997271061, 0.012781273573637009, -0.02801596373319626, -0.05103694647550583, -0.03852011263370514, -0.013023676350712776, 0.025591928511857986, -0.0015471584629267454, -0.002761930227279663, 0.0010035870363935828, -0.02808941900730133, 0.010393965989351273, -0.017467740923166275, 0.05617883801460266, 0.008858744986355305, -0.008476775139570236, 0.02241864614188671, -0.019509805366396904, -0.020758550614118576, -0.0370509997010231, -0.01685071364045143, -0.017085770145058632, -0.045895054936409, 0.03258490189909935, -0.03314316272735596, 0.005432040896266699, 0.028060035780072212, -0.030821967869997025, 0.01784970983862877, 0.00419431459158659, 0.02479860745370388, 0.01110648550093174, -0.06387698650360107, -0.04295683279633522, 0.03514115512371063, -0.02432849258184433, 0.01436056848615408, 0.014962904155254364, 0.014544207602739334, -0.0010072598233819008, -0.0005711172125302255, 0.028677063062787056, -0.011576601304113865, 0.01350848376750946, 0.016130847856402397, 0.02490144595503807, 0.006713841110467911, -0.03655150160193443, -0.014507479965686798, -0.017629342153668404, -0.012906148098409176, 0.044043973088264465, 0.004462427459657192, 0.002581964014098048, 0.013677431270480156, -0.040547486394643784, -0.003402830334380269, 0.014198966324329376, 0.007261085323989391, 0.012840038165450096, 0.015205307863652706, 0.011437036097049713, 0.017232682555913925, -0.03258490189909935, 0.030175557360053062, -0.0155872767791152, 0.005296148359775543, -0.004601993132382631, 0.03866702318191528, -0.001285472884774208, 0.00295658758841455, 0.003107171505689621, 0.04157586395740509, -0.034817952662706375, 0.02399059757590294, 0.011451726779341698, -0.0035038318019360304, 0.010423348285257816, -0.04842192679643631, 0.01902499794960022, -0.02453416772186756, -0.009571263566613197, 0.001941064023412764, -0.02594451606273651, 0.02056756615638733, -0.01596924662590027, 0.017291447147727013, 0.008300482295453548, 0.005825028754770756, -0.016600964590907097, 0.008799980394542217, -0.0052300384268164635, 0.024916136637330055, 0.02127273939549923, 0.02077324129641056, 0.011143213137984276, -0.029014959931373596, 0.0032742831390351057, 0.03534683212637901, 0.009057074785232544, 0.006453074049204588, -0.042427949607372284, -0.02372615598142147, -0.010107489302754402, -0.018128840252757072, 0.0020806295797228813, -0.025415634736418724, 0.001957591623067856, 0.0020439019426703453, -0.00519331032410264, -0.0033734480384737253, 0.016703801229596138, 0.0073492322117090225, -0.00561935268342495, 0.027061041444540024, -0.024372566491365433, -0.002065938664600253, -0.02801596373319626, 0.03616953268647194, -0.015058396384119987, 0.01815822347998619, -0.026150191202759743, -0.023211967200040817, -0.002576455008238554, 0.03760926425457001, 0.02620895579457283, -0.0337601900100708, -0.008704488165676594, 0.029000267386436462, -0.0031604268588125706, -0.014992286451160908, 0.009365588426589966, 0.025092430412769318, -0.027222642675042152, 0.014683772809803486, 0.055385518819093704, -0.013890452682971954, 0.04298621416091919, -0.021698782220482826, -0.0017004969995468855, 0.03229107707738876, -0.013883107341825962, 0.005505496636033058, 0.019891774281859398, -0.04583628848195076, 0.03890208154916763, -0.010893464088439941, 0.02537156268954277, 0.019642025232315063, 0.00830782763659954, -0.01191449724137783, -0.017188608646392822, 0.00838862918317318, 0.008902817964553833, -0.014367913827300072, 0.022639013826847076, -0.024269727990031242, -0.0004666725581046194, 0.010349893011152744, 0.01386107038706541, 0.018716484308242798, -0.023784920573234558, 0.0017436521593481302, 0.0017032516188919544, -0.006522856652736664, 0.010695134289562702, 0.07586493343114853, -0.010886118747293949, 0.017306137830018997, -0.015396292321383953, 0.022874072194099426, 0.04254547879099846, 0.03581694886088371, -0.012377267703413963, 0.023975905030965805, 0.008976273238658905, 0.0229916013777256, 0.012685781344771385, -0.03190910816192627, -0.0072463941760361195, 0.0225214846432209, -0.01342033687978983, 0.014125511050224304, 0.012685781344771385, -0.012480105273425579, -0.002436889335513115, -6.611003482248634e-05, 0.019186601042747498, 0.005332875996828079, 0.014874757267534733, 0.013633358292281628, 0.02822163887321949, 0.0520065613090992, 0.0030337159987539053, -0.022271735593676567, 0.03043999709188938, 0.007283122278749943, 0.007624690420925617, -0.006420019082725048, 0.010775935836136341, 0.00032572963391430676, 0.03807938098907471, -0.008190298452973366, 0.0015223671216517687, -0.020141523331403732, -0.018613647669553757, 0.001946573262102902, -0.009115839377045631, -0.007253739982843399, 0.009916504845023155, 0.0449548214673996, -0.038138143718242645, 0.005035380832850933, -0.0005256665754131973, 0.017364902421832085, -0.003375284606590867, 0.027913125231862068, 0.0016610146267339587, 0.02278592437505722, -0.005358585622161627, -0.03405401483178139, 0.030616290867328644, -0.029367545619606972, -0.027707450091838837, -0.011003647930920124, 0.0015636859461665154, -0.029881736263632774, -0.007150901947170496, 0.02281530760228634, -0.030351851135492325, -0.017173917964100838, -0.00425307871773839, -0.0034928135573863983, 0.03276119381189346, 0.027134496718645096, -0.012612325139343739, 0.011855732649564743, 0.011657402850687504, 0.003202663967385888, -0.012531524524092674, 0.008689796552062035, -0.0015425675082951784, 0.025782912969589233, 0.01643936149775982, 0.022536175325512886, -0.009402316063642502, -0.03323131054639816, -0.02960260398685932, 0.013464409857988358, 0.005667098797857761, -0.019113145768642426, -0.007334541063755751, -0.010364584624767303, 0.029749514535069466, -0.015249380841851234, -0.02728140726685524, 0.00581401027739048, -0.011018338613212109, -0.019274746999144554, -0.010276437737047672, 0.013368917629122734, 0.023902449756860733, -0.00617394270375371, 0.0445728525519371, 0.0005890220636501908, 0.02153717912733555, -0.02020028792321682, 0.018878087401390076, -0.017320828512310982, 0.022257044911384583, 0.00838862918317318, 0.03393648564815521, 0.010526186786592007, 0.02184569276869297, -0.026062045246362686, 0.05385763943195343, 0.026972893625497818, -0.024240346625447273, 0.0034726131707429886, 0.012862074188888073, 0.0005830537993460894, -0.012076099403202534, 0.031762197613716125, -0.005523860454559326, -0.002280796179547906, -0.01912783645093441, -0.03919590637087822, 0.009035037830471992, 0.01936289481818676, 0.003277955809608102, 0.04701158031821251, 0.058500032871961594, -0.0007065510144457221, 0.04231042042374611, -0.014808647334575653, 0.018261060118675232, 0.058911386877298355, -0.03948972746729851, -0.052329763770103455, 0.010856736451387405, 0.011650057509541512, -0.02158125303685665, -0.020920153707265854, -0.0065889665856957436, -0.025621311739087105, -0.0072096665389835835, -0.0054246955551207066, 0.03143899515271187, -0.03132146596908569, 0.011730858124792576, 0.030586909502744675, 0.011635365895926952, -0.0018180259503424168, 0.004164932295680046, 0.0157048050314188, 0.003973947372287512, 0.0248720645904541, 0.015851717442274094, 0.002760093891993165, 0.024710461497306824, -0.052035942673683167, 0.017879091203212738, -0.009931196458637714, 0.021860385313630104, -0.03252613544464111, 0.03881393373012543, 0.056766483932733536, -0.005722190719097853, 0.0036268699914216995, -0.0009742047986947, 0.0012000807328149676, -0.004337552934885025, 0.03916652128100395, -0.014771919697523117, -0.020244361832737923, -0.025856368243694305, 0.017394283786416054, 0.0054246955551207066, -0.02694351226091385, 0.034377217292785645, 0.0002550286299083382, 0.005061090458184481, 0.015484439209103584, -0.0026535834185779095, -0.01045273058116436, 0.028236329555511475, 0.01493352185934782, -0.02171347290277481, -0.0016518326010555029, 0.0047819591127336025, -0.000566067174077034, 0.026120809838175774, 0.0194657314568758, 0.0008548394544050097, 0.011290124617516994, -0.01784970983862877, 0.0379912331700325, 0.012318503111600876, 0.016424670815467834, -0.031527139246463776, 0.013398299925029278, -0.006001322064548731, 0.03155652433633804, -0.03302563354372978, -0.04248671606183052, -0.016086775809526443, -0.010379275307059288, -0.0041024950332939625, 0.004183296114206314, -0.0063943094573915005, 0.014044709503650665, 0.03737420588731766, 0.06070370227098465, 0.016968242824077606, -0.008014005608856678, 0.0019080090569332242, -0.0014847212005406618, -0.028309784829616547, -0.004796650260686874, -0.0024736172053962946, 0.01627776026725769, -0.005762591492384672, 0.03878455236554146, 0.016336524859070778, 0.003459758358076215, -0.007374941371381283, -0.01234788540750742, -0.008036041632294655, -0.007778947241604328, 0.0004460131749510765, -0.007382287178188562, -0.0028335493989288807, -0.010504149831831455, -0.005865429062396288, 0.004249406047165394, 0.02516588568687439, 0.02905903197824955, -0.002418525516986847, -0.018407972529530525, -0.011135867796838284, 0.026253029704093933, -0.05103694647550583, -0.01145907212048769, 0.010136871598660946, 0.011811659671366215, -0.009769594296813011, 0.0014920667745172977, -0.04057687148451805, 0.011422344483435154, 0.005971939768642187, -0.014529515989124775, 0.007272103801369667, -0.021081754937767982, 0.0314096100628376, -0.00418696878477931, -0.02288876287639141, -0.03960725665092468, -0.004870106000453234, -0.01952449604868889, 0.009417006745934486, -0.020361891016364098, -0.004759922623634338, -0.007823020219802856, 0.0014057564549148083, -0.017879091203212738, -0.03164466843008995, 0.005817682947963476, 0.03581694886088371, -0.026561543345451355, 0.01560196839272976, 0.01751181297004223, -0.0012019171845167875, 0.012303811497986317, 0.015469747595489025, 0.008579613640904427, -0.012678435072302818, 0.0003305501595605165, 0.043133124709129333, 0.02456355094909668, 0.013589284382760525, -0.022962218150496483, -0.010695134289562702, -0.015719497576355934, 0.006265762262046337, 0.0014158565318211913, 0.010614333674311638, -0.005068435799330473, -0.008351900614798069, -0.0025140177458524704, -0.00845473911613226, -0.010540877468883991, 0.0006767096347175539, 0.025591928511857986, 0.003088807687163353, 0.008785288780927658, -0.0026774564757943153, 0.014198966324329376, -0.010695134289562702, 0.010790626518428326, -0.030645674094557762, -0.005949903279542923, -0.02869175560772419, -0.02228642627596855, -0.013626012951135635, -0.016703801229596138, 0.01596924662590027, -0.006563257426023483, 0.00484072370454669, 0.008058078587055206, -0.0018336352659389377, 0.020317817106842995, 0.0034946498926728964, 0.01973017305135727, 0.013170587830245495, 0.04895080626010895, -0.0124139953404665, -0.01721799187362194, 0.020993608981370926, 0.02979358844459057, -0.0031622631940990686, 0.02654685080051422, -0.011657402850687504, 0.011686785146594048, -0.013185279443860054, 0.009975269436836243, 0.0010035870363935828, 0.006860752590000629, -0.003753580851480365, 0.009255404584109783, -0.02939692884683609, -0.016101466491818428, -0.014243039302527905, -0.004018020816147327, -0.019686099141836166, -0.010533532127737999, 0.004870106000453234, 0.00867510586977005, 0.01276658196002245, -0.0037590900901705027, -0.023814303800463676, -0.012274429202079773, -0.009409661404788494, 0.013589284382760525, 0.02902965061366558, -0.009086457081139088, -0.014030017890036106, -0.0241228174418211, -0.016468744724988937, 0.014793956652283669, -0.042134128510951996, 0.023094438016414642, -0.0002559468266554177, -0.02503366582095623, -0.01481599360704422, -0.02861829847097397, -0.004172277636826038, 0.024813299998641014, -0.005858083721250296, -0.009556572884321213, -0.01661565527319908, -0.03519992157816887, -0.016762565821409225, -0.01567542366683483, -0.02748708240687847, 0.006195979192852974, -0.059851616621017456, 0.045219264924526215, 0.021904457360506058, 0.0192306749522686, 0.0034560856875032187, -0.023549864068627357, -0.01256825216114521, 0.00020142900757491589, -0.034347835928201675, -0.012384613044559956, 0.01335422694683075, -0.029485074803233147, 0.033642660826444626, 0.01627776026725769, 0.01909845508635044, -0.018378589302301407, -0.011833695694804192, 0.02503366582095623, -0.0194657314568758, -0.018261060118675232, 0.007316177245229483, -0.009916504845023155, -0.00974755734205246, -0.01745304837822914, -0.014221003279089928, 0.008102151565253735, 0.04131142422556877, -0.002460762392729521, -0.007837711833417416, -0.01886339671909809, -0.0021467397455126047, -0.017761562019586563, 0.007411669474095106, -0.004708503372967243, -0.015264072455465794, -0.0623491071164608, -0.018246369436383247, -0.007437378633767366, 0.015396292321383953, -0.018878087401390076, -0.008917508646845818, 0.006236379966139793, 0.016395287588238716, -0.015117160975933075, 0.01962733455002308, -0.013824342750012875, -0.028735827654600143, -0.014808647334575653, 0.015161234885454178, -0.015646040439605713, 0.009637373499572277, -0.01580764353275299, 0.0010210328036919236, 0.018672412261366844, -0.0001944277755683288, -0.01774687133729458, -0.011503146030008793, -0.00879263412207365, -0.006596312392503023, -0.008748561143875122, 0.03185034543275833, -0.016424670815467834, 0.02490144595503807, -0.01886339671909809, -0.013809651136398315, -0.0067432234063744545, 0.011451726779341698, -0.012979603372514248, -0.004697485361248255, -0.006085795816034079, -0.0029804606456309557, 0.016718493774533272, 0.008432702161371708, 0.01328811701387167, -0.013714158907532692, 0.008535539731383324, 0.01889277808368206, -0.0064310370944440365, -0.032349843531847, -0.027531156316399574, -0.027340171858668327, -0.00290700513869524, -0.01886339671909809, 0.00802135095000267, 0.008667759597301483, 0.0062400526367127895, -0.002912514377385378, 0.004271442536264658, -0.010085453279316425, -0.004418354015797377, 0.02570945769548416, 0.008770598098635674, -0.021287430077791214, 0.008638378232717514, -0.007764256093651056, 0.04375015199184418, 0.012369922362267971, 0.007786293048411608, 0.006074777338653803, -0.028397932648658752, 0.016586272045969963, 0.0015214489540085196, 0.029690749943256378, 0.03091011382639408, 0.00957860890775919, 0.03878455236554146, 0.012898801825940609, 0.01751181297004223, 0.032966870814561844, 0.010944883339107037, -0.0013772923266515136, 0.017408976331353188, 0.019436350092291832, -0.002552581951022148, 0.02017090655863285, -0.027105113491415977, -0.00646041939035058, -0.012083444744348526, 0.010533532127737999, -0.007305158767849207, -0.0168800950050354, -0.0010292965453118086, -0.020156214013695717, -0.004998653195798397, 0.0020402290392667055, 0.04345632717013359, 0.022021986544132233, 0.030645674094557762, 0.012289120815694332, -0.002075120573863387, 0.048803895711898804, 0.0016729511553421617, -0.000809847901109606, -0.015469747595489025, -0.002728875260800123, -0.005013344343751669, -0.00285742268897593, -0.0003592437715269625, -0.029808279126882553, -0.010048724710941315, -0.00688646174967289, -0.001457175356335938, 0.005083126947283745, -0.015690114349126816, -0.03155652433633804, -0.005733209196478128, 0.005850737914443016, -0.03572880104184151, 0.03091011382639408, -0.008322518318891525, 0.007962586358189583, -0.0211111381649971, -0.016028011217713356, 0.0015838862163946033, 0.0014167746994644403, -0.008249063044786453, 0.022462720051407814, 0.013199970126152039, -0.03831443563103676, -0.022066060453653336, 0.006052740849554539, -0.021728163585066795, 0.005957248620688915, -0.004205332603305578, 0.04113513231277466, -0.016248377040028572, -0.006798315327614546, -0.009321514517068863, 0.015528512187302113, -0.008395974524319172, 0.017732180655002594, 0.030998259782791138, -0.03093949519097805, 0.027531156316399574, -0.008263754658401012, 0.02472515217959881, 0.010408657602965832, -0.0008355573518201709, 0.009203986264765263, -0.01127543393522501, -0.005097818095237017, 0.007345559541136026, -0.03358389809727669, 0.0014121837448328733, -0.014375259168446064, 0.004014348145574331, -0.003235718933865428, 0.01748243160545826, -0.027589920908212662, 0.005898484028875828, -0.028750518336892128, -0.0015141033800318837, -0.010944883339107037, -0.0002951996575575322, 0.0009360997355543077, 0.003410175908356905, -0.004179623443633318, 0.01206140872091055, -0.019994612783193588, 0.02006806805729866, 0.0025746184401214123, -0.010202981531620026, -4.2466515878913924e-05, 0.002403834369033575, 0.002554418286308646, -0.0096153374761343, 0.009887122549116611, -0.004359589423984289, -0.01996522955596447, 0.002245904877781868, 0.002315687481313944, -0.02187507599592209, -0.009865086525678635, 0.017937855795025826, 0.008271099999547005, 0.008256408385932446, 0.013883107341825962, 0.007022354751825333, 0.03331945836544037, 0.0002977247058879584, -0.0028060036711394787, 0.006001322064548731, 0.0060637593269348145, 0.015352219343185425, -0.01970078982412815, 0.00772752845659852, 0.006981953978538513, -0.008719178847968578, -0.0187605582177639, 0.01711515337228775, -0.0018721994711086154, 0.04530740901827812, 0.013758232817053795, -0.01026909239590168, -0.002727038925513625, 0.003400993999093771, -0.016130847856402397, 0.01654219999909401, -0.011363579891622066, -0.004921524785459042, 0.010643715038895607, -0.023902449756860733, 0.01829044334590435, 0.000992568675428629, -0.0008617259445600212, -0.01701231487095356, 0.005626698490232229, -0.010085453279316425, 0.0025654365308582783, 0.001794152893126011, -0.013097132556140423, 0.012098136357963085, -0.0229916013777256, 0.009652065113186836, 0.0057883006520569324, 0.03446536511182785, -0.027369553223252296, -0.010526186786592007, -0.007477779407054186, 0.016791949048638344, 0.03161528706550598, -0.006633040029555559, -0.04836316406726837, -0.006273107603192329, 0.015616659075021744, -0.005920520983636379, 0.012906148098409176, 0.021258048713207245, -0.01784970983862877, 0.001446156995370984, 0.022124825045466423, 0.03619891777634621, -0.010004651732742786, 0.01761465147137642, 0.005468768998980522, -0.02955853007733822, 0.004770940635353327, -0.014030017890036106, 0.012678435072302818, 0.0007634790963493288, 0.023902449756860733, -0.02667907066643238, -0.005582625046372414, -0.032232314348220825, 0.02432849258184433, 0.01228177547454834, -0.027575230225920677, -0.020023994147777557, 0.0248720645904541, 0.027633994817733765, 0.014088782481849194, -0.006882789079099894, -0.020112141966819763, 0.0012570088729262352, 0.017644032835960388, -0.00289047765545547, 0.009710829704999924, -0.013097132556140423, -0.011973261833190918, 0.024578241631388664, -0.02090546116232872, 0.0023340515326708555, -0.0005885629216209054, 0.020582256838679314, -0.028603607788681984, -0.007551235146820545, -0.004961925558745861, -0.0281188003718853, -0.016160231083631516, 0.010217673145234585, 0.0213461946696043, -0.02419627271592617, 0.002545236377045512, -0.002076956909149885, -0.004458754323422909, 0.008990964852273464, 0.004399990197271109, -0.021463723853230476, 0.008351900614798069, -0.016101466491818428, 0.01016625389456749, -0.0014140201965346932, -0.005924193654209375, 0.018055384978652, -0.0019043362699449062, 0.012964911758899689, 0.009791630320250988, 0.010797971859574318, -0.004087803885340691, 0.02046472765505314, -0.0033018288668245077, 0.009248059242963791, 0.002725202590227127, -0.018231678754091263, 0.008366592228412628, 0.025959206745028496, -0.004366935230791569, -0.041428953409194946, -0.002783966949209571, -0.005898484028875828, -0.0002469944301992655, 0.009872431866824627, -0.0024093433748930693, 0.0025048358365893364, 0.01685071364045143, -0.012340540066361427, -0.00619965186342597, -0.017673416063189507, -0.011268087662756443, -0.011510491371154785, -0.032202932983636856, 0.020479420199990273, 0.009541881270706654, -0.012318503111600876, -0.027501774951815605, -0.007070100866258144, 0.00011982443538727239, 0.028001273050904274, 0.011165250092744827, -0.020861389115452766, -0.004910506308078766, -0.002422198187559843, -0.008256408385932446, -0.007977277040481567, -0.03370142728090286, -0.0412820428609848, 0.035288065671920776, -0.0016564236721023917, 0.00128363654948771, 0.013603975996375084, 0.009982614777982235, -0.001291900291107595, 0.01873117685317993, -0.0024681079667061567, -0.004928870126605034, 0.019818319007754326, 0.011385616846382618, -0.007070100866258144, 0.013310153037309647, -0.005707499571144581, 0.0248720645904541, 0.001137643470428884, 0.025048356503248215, 0.042398568242788315, -0.003755417186766863, -0.005384294781833887, 0.005858083721250296, 0.017893781885504723, 0.010136871598660946, 0.010768589563667774, 0.040723782032728195, 0.024813299998641014, 0.009057074785232544, -0.03264366462826729, -0.035317450761795044, -0.029279399663209915, -0.03725667670369148, 0.004098821897059679, 0.006544893141835928, -0.004293479491025209, 0.006926862522959709, 0.031057024374604225, -0.009240713901817799, 0.015690114349126816, -0.042369186878204346, -0.0008823852986097336, -0.00261685554869473, -0.009718175046145916, -0.010665751993656158, -0.029411619529128075, -0.000987977720797062, -0.004029039293527603, 0.027575230225920677, -0.010996302589774132, 0.016997624188661575, 0.012090791016817093, 0.011319506913423538, -0.022874072194099426, -0.01607208326458931, -0.01607208326458931, -0.008697141893208027, -0.003378957277163863, -0.009152567014098167, 0.001635305117815733, -0.0059131751768291, -0.012810655869543552, 0.005696481093764305, 0.006232707295566797, -9.715650230646133e-05, 0.0017436521593481302, 0.003555250819772482, -0.04186968877911568, 0.02631179429590702, -0.03358389809727669, -0.011841041967272758, 0.002075120573863387, 0.01583702675998211, 0.008241717703640461, 0.025547854602336884, -0.014926176518201828, 0.016836021095514297, 0.01427976693958044, 0.018202295526862144, 0.010790626518428326, -0.031027643010020256, -0.014294458553195, 0.005255747586488724, -0.013376263901591301, -0.008227026090025902, -0.02590044215321541, -0.003226537024602294, 0.005942557472735643, 0.019348204135894775, -0.01607208326458931, 0.0011881442042067647, -0.027340171858668327, 0.0018914815736934543, -0.005971939768642187, -0.004289806820452213, 0.005072108935564756, -0.0015379764372482896, -0.019877083599567413, -0.0033899755217134953, 0.007463088259100914, -0.00359014212153852, 0.018716484308242798, 0.004407335538417101, 0.006159251555800438, -0.008014005608856678, 0.023843685165047646, -0.017879091203212738, 0.005263093393296003, -0.026664379984140396, 0.009696138091385365, -0.0036654341965913773, -0.006735878065228462, -0.0018822995480149984, -0.014566244557499886, -0.005740554537624121, 0.0046607572585344315, -0.010188290849328041, -0.0004756249545607716, -0.026135500520467758, 0.01915721781551838, 0.031115788966417313, -0.007463088259100914, 0.010680443607270718, 0.03161528706550598, -0.009350896812975407, 0.01886339671909809, 0.004910506308078766, -0.009835704229772091, -0.010445385240018368, -0.02244802936911583, 0.011481109075248241, -0.01779094524681568, -0.0044514089822769165, 0.0034928135573863983, 0.014860066585242748, -0.0032742831390351057, 0.013133860193192959, 0.025915132835507393, -0.02973482385277748, -0.02691412903368473, -0.013133860193192959, -0.008704488165676594, -0.010856736451387405, -0.019921157509088516, -0.0014470751630142331, 0.023226657882332802, -0.03229107707738876, 0.0076981461606919765, 0.020112141966819763, 0.004620356950908899, -0.0047268676571547985, -0.0012643544469028711, -0.023300115019083023, -0.017041698098182678, 0.02620895579457283, 0.027457701042294502, -0.0022055041044950485, 0.002277123276144266, 0.008197643794119358, -0.011539873667061329, 0.04198721796274185, -0.010548222810029984, 0.033642660826444626, -0.004238387569785118, 0.011062412522733212, 0.013905143365263939, -0.01886339671909809, 0.0020126833114773035, -0.010746553540229797, 0.002446071244776249, 0.010584951378405094, -0.004671775735914707, -0.004510173574090004, -0.022697778418660164, -0.01868710294365883, -0.004087803885340691, -0.010827354155480862, 0.001955755054950714, 0.005729536060243845, 0.0012588452082127333, -0.023432334885001183, -0.020479420199990273, -0.008043387904763222, 0.0020145196467638016, 0.00838862918317318, -0.004675448406487703, 0.0012019171845167875, 0.0014020836679264903, 0.0011091794585809112, -0.025195268914103508, -0.0013938199263066053, -0.016733184456825256, -0.006776278372853994, 0.004870106000453234, -0.004352244082838297, 0.013692122884094715, -0.0026646016631275415, -0.0002642105973791331, -0.011297469958662987, -0.01889277808368206, 0.01176024042069912, 0.002436889335513115, 0.004837051033973694, 0.016630345955491066, 0.00837393756955862, 0.028530152514576912, 0.018834013491868973, 0.0002180712908739224, -0.01298694871366024, -0.009843049570918083, -0.008359246887266636, -0.0042420607060194016, -0.01261967048048973, 0.0028243674896657467, -0.013346881605684757, -0.00860899593681097, 0.07798045873641968, 0.008080115541815758, -0.0015636859461665154, -0.005413677077740431, -0.0036544157192111015, -0.015175925567746162, -0.015322837047278881, 0.011113830842077732, -0.0015205307863652706, -0.003255919087678194, 0.015748878940939903, -0.011363579891622066, 0.0012312993640080094, -0.016013318672776222, -0.03381895646452904, 0.012744545005261898, 0.0008860580855980515, 0.012032026425004005, -0.028941504657268524, 0.01221566554158926, -0.0034928135573863983, -0.023006292060017586, -0.01774687133729458, 0.0445728525519371, -0.002304669236764312, 0.022536175325512886, -0.0014718665042892098, -0.013471756130456924, 0.01464704517275095, 0.018848706036806107, -0.010562914423644543, -0.011973261833190918, -0.00444773631170392, 0.010225018486380577, -0.004598319996148348, 0.01226708386093378, -0.003882128046825528, 0.026385249570012093, -0.009593300521373749, 0.02785436064004898, -0.006563257426023483, 0.0044330451637506485, 0.0063759456388652325, 0.01751181297004223, -0.028632991015911102, -0.009909159503877163, -0.0014975758967921138, 0.004168604966253042, -0.003937219735234976, -0.01577826216816902, -0.002719693351536989, -0.03023432195186615, 0.01075389888137579, 0.011216669343411922, 0.0033238655887544155, -0.008954237215220928, 0.018231678754091263, -0.02550378255546093, 0.0026774564757943153, 0.015161234885454178, -0.00951249897480011, 0.0018418990075588226, -0.015763569623231888, -0.007062755525112152, -0.025195268914103508, -0.018540192395448685, -0.012810655869543552, -0.012913493439555168, 0.017394283786416054, -0.005050071980804205, -0.01501432340592146, 0.019171910360455513, 0.00642736442387104, -0.024387257173657417, 0.017937855795025826, 0.037638645619153976, 0.023638010025024414, 0.019950538873672485, 0.007543889340013266, -0.0019245365401729941, -0.0065706027671694756, 0.007275776471942663, -0.0267084538936615, -0.020288435742259026, 0.0007731201476417482, -0.018598956987261772, 0.009725520387291908, -0.02171347290277481, 0.003893146524205804, -0.01320731546729803, 0.006574275437742472, -0.01701231487095356, -0.008425356820225716, 0.011231360025703907, -0.005645062308758497, 0.005002325866371393, 0.004462427459657192, -0.0006179451593197882, -0.0007088464917615056, -0.0008966173627413809, 0.021067064255475998, 0.011664748191833496, -0.013736195862293243, 0.01305305864661932, -0.006948899012058973, -2.0630692233680747e-05, 0.012531524524092674, -0.008425356820225716, -0.024255037307739258, 0.004422026686370373, -0.006710168439894915, -0.0005848901346325874, -0.006129869259893894, 0.00837393756955862, -0.013853725045919418, -0.003388139186426997, 0.010371929965913296, -0.010305820032954216, -0.008631031960248947, 0.0032999925315380096, -0.005733209196478128, 0.007121519651263952, 0.009270096197724342, -0.020655712112784386, 0.010158908553421497, -0.00032848422415554523, -0.023432334885001183, -0.00619965186342597, -0.01270047202706337, -0.01377292349934578, 0.011304816231131554, 0.008946890942752361, 0.026297101750969887, -0.0020402290392667055, 0.007617345079779625, -0.006992972455918789, 0.0009457407868467271, -0.0013644376304000616, 0.009167257696390152, -0.01674787513911724, 0.0065595842897892, 0.0031494086142629385, 0.007580617442727089, 0.02664968930184841, -0.007239048834890127, 0.0034652675967663527, -0.007587962783873081, -0.0192306749522686, -0.0029841335490345955, -0.016483435407280922, 0.010636369697749615, -0.017232682555913925, -0.012964911758899689, -0.02205136977136135, -0.0008823852986097336, -0.008197643794119358, -0.01996522955596447, 0.03449474647641182, -0.014757229015231133, -0.003871109802275896, -0.005821355618536472, -0.011297469958662987, -0.01980362832546234, -0.012098136357963085, 0.0032173548825085163, 0.027207951992750168, 0.009505153633654118, 0.023740848526358604, 0.008432702161371708, -0.003083298448473215, -0.03020494058728218, -0.004502827767282724, 0.003210009541362524, -0.025797603651881218, 0.02211013436317444, -0.01815822347998619, -0.004043730441480875, -0.011943879537284374, -0.022565558552742004, 0.02124335803091526, -0.010893464088439941, 0.006581621244549751, 0.018128840252757072, -0.00578095531091094, -0.008175607770681381, -0.006581621244549751, -0.0005201573949307203, -0.010158908553421497, -0.013743541203439236, -0.0008011250756680965, 0.001994319260120392, 0.000739605980925262, 0.009027692489326, -0.0031806272454559803, -0.020259052515029907, -0.018305134028196335, 0.012810655869543552, 0.032731812447309494, 0.01926005631685257, -0.009439043700695038, -0.002965769497677684, 0.018716484308242798, 0.025151195004582405, 0.005556915421038866, -0.01657158136367798, -0.01427976693958044, 9.514794510323554e-05, -0.011708821170032024, 0.002710511442273855, 0.015748878940939903, -0.03255552053451538, -0.0173502117395401, 0.016013318672776222, 0.014316495507955551, 0.005332875996828079, 0.009262749925255775, 0.013890452682971954, 0.008763251826167107, 0.004671775735914707, -0.0028317130636423826, 0.016527509316802025, 0.00390049209818244, 0.00584706524387002, 0.001449829782359302, -0.007786293048411608, -0.0054246955551207066, 0.007639381568878889, 0.0023303786292672157, 0.03684532642364502, 0.0019961558282375336, 0.02667907066643238, -0.0075953081250190735, -0.02882397547364235, 0.036022622138261795, -0.006633040029555559, 0.03143899515271187, 0.022976908832788467, 0.0019245365401729941, 0.005758918356150389, 0.008204990066587925, -0.033877719193696976, 0.00713988346979022, -0.010930192656815052, -0.008763251826167107, -0.0037976540625095367, -0.019979922100901604, 0.00035120954271405935, -0.012230356223881245, -0.002075120573863387, -2.5565988835296594e-05, -0.02218358963727951, -0.002233050065115094, -0.0016619327943772078, 0.024446021765470505, 0.0229475274682045, -0.014588280580937862, -0.015278763137757778, -0.012627016752958298, -0.003955583553761244, -0.03749173507094383, 0.00966675579547882, 0.014632354490458965, -0.003404666669666767, -0.011892460286617279, 0.00196310062892735, 0.018745867535471916, -0.022007295861840248, 0.0015545040369033813, 0.026488086208701134, 0.015264072455465794, 0.012531524524092674, -0.022639013826847076, -0.005446732044219971, 0.01661565527319908, -0.010636369697749615, -0.02472515217959881, 0.016468744724988937, -0.008315172977745533, 0.013626012951135635, 0.021992605179548264, 0.005905829835683107, -0.0023358878679573536, 0.008344555273652077, -0.03561127185821533, 0.002418525516986847, -0.02080262452363968, -0.0023322151973843575, -3.905197809217498e-05, -0.006247397977858782, 0.0048186867497861385, -0.00788913108408451, -0.034817952662706375, 0.001613268512301147, -0.010797971859574318, 0.019436350092291832, 0.0023762884084135294, 0.0007524607353843749, -0.014566244557499886, -0.010577605105936527, -0.010004651732742786, 0.0017454884946346283, 0.010173599235713482, -0.0028776228427886963, -0.017805635929107666, 0.002758257556706667, 0.0038490730803459883, 0.015646040439605713, 0.017203299328684807, -0.004767267964780331, 0.022727159783244133, 0.002767439465969801, 0.00016091365250758827, -0.001428711344487965, 0.0024736172053962946, 0.004458754323422909, 0.0075034890323877335, -0.02265370450913906, 0.024078743532299995, -0.006471437867730856, -0.0070003182627260685, 0.0038307092618197203, 0.01567542366683483, 0.0069525716826319695, -0.00196310062892735, -0.011069757863879204, 0.029720133170485497, 0.015954554080963135, 0.018128840252757072, 0.008080115541815758, -0.027354862540960312, 0.007286794949322939, -0.0031677724327892065, -0.016454052180051804, -0.00915991235524416, -0.017673416063189507, 0.024783916771411896, -0.015763569623231888, -0.006052740849554539, -0.005270438734441996, 0.006622021552175283, -0.0038490730803459883, -0.009475771337747574, -0.010298473760485649, 0.005689135752618313, 0.00867510586977005, 0.014558898285031319, 0.011091794818639755, -0.009850394912064075, 0.01630714163184166, 0.02288876287639141, -0.0007712837541475892, 0.02362331934273243, 0.01162802055478096, 0.006225361488759518, 0.006071104668080807, -0.0007653154898434877, 0.007103155832737684, 0.010937537997961044, -0.01427976693958044, 0.004715849179774523, -0.008300482295453548, 0.000988895888440311, -0.009960578754544258, -0.014257730916142464, 0.009042383171617985, 0.013302807696163654, -0.007095810491591692, 0.002405670704320073, -0.04207536205649376, 0.0021595945581793785, 0.016483435407280922, -0.01226708386093378, -0.02009744942188263, -0.0031200263183563948, -0.01486741192638874, 0.004958252422511578, -0.008043387904763222, 0.008256408385932446, -0.007705491967499256, -0.0014681937173008919, 0.018598956987261772, 0.016233686357736588, 0.004429372493177652, -0.014595625922083855, 0.0031328811310231686, 0.024945519864559174, 0.0007942385855130851, 0.007815674878656864, 0.005013344343751669, -0.0020457382779568434, -0.002086138818413019, -0.014000636525452137, 0.0017509977333247662, -0.002104502636939287, -0.0017436521593481302, 0.022800616919994354, -0.02050880156457424, 0.014154892414808273, -0.011414999142289162, 0.013581939041614532, 0.00013222006964497268, -0.0064494009129703045, 0.0012514996342360973, 0.028735827654600143, 0.007947894744575024, -0.02913248911499977, 0.015278763137757778, 0.005314512178301811, 0.027927815914154053, -0.013897798024117947, -0.006776278372853994, 0.006489801686257124, -0.016218995675444603, 0.012553560547530651, 0.016498126089572906, 0.0213461946696043, 0.02728140726685524, -0.0005160255241207778, -0.0059131751768291, 0.005340221803635359, 0.010629024356603622, -0.01342033687978983, -5.707155287382193e-05, -0.0018180259503424168, 0.008557576686143875, -0.012200973927974701, 0.020229671150445938, 0.010540877468883991, 0.0016701965359970927, 0.0055422247387468815, -0.001953918719664216, -0.02043534629046917, -0.005924193654209375, 0.017129844054579735, -0.00821968074887991, -0.007742219604551792, 0.029250016435980797, 0.007007663603872061, -0.006383290980011225, 0.008227026090025902, -0.03252613544464111, 0.000893862743396312, 0.0028353859670460224, -0.0026315466966480017, 0.03370142728090286, -0.007705491967499256, 0.013148550875484943, -0.0013965744292363524, 0.011525182984769344, 0.0025231996551156044, -0.01169413048774004, 0.00291985971853137, 0.004381625913083553, 0.018745867535471916, -0.015748878940939903, -0.013067750260233879, 0.005373276770114899, -0.0016610146267339587, 0.028265712782740593, -0.03757988288998604, -0.011841041967272758, -0.0028427315410226583, 0.0036305426619946957, -0.0054944781586527824, 0.005725863389670849, -0.0002896905061788857, 0.022389264777302742, 0.012311157770454884, -0.007444724440574646, -0.00222386815585196, -0.01886339671909809, 0.013435027562081814, -0.0003675075131468475, -0.02056756615638733, 0.024783916771411896, 0.007639381568878889, 0.004741558339446783, 0.020185597240924835, 0.004403662867844105, 0.0013984108809381723, 0.00887343566864729, 0.01503636036068201, -0.004131877329200506, 0.014529515989124775, 0.021522488445043564, -0.013229352422058582, -0.014588280580937862, 0.007529198192059994, 0.015073087997734547, 0.007334541063755751, 0.017423667013645172, -0.002581964014098048, 0.006192306522279978, -0.01335422694683075, 0.0012395631056278944, -0.000652836577501148, 0.005274111405014992, 0.011304816231131554, -0.005986630916595459, 0.002288141753524542, 0.001944736810401082, 0.00026673561660572886, -0.006379618309438229, 0.022594939917325974, 0.0029841335490345955, -0.016894785687327385, 0.012494795955717564, 0.011672093532979488, 0.019686099141836166, 0.0030061702709645033, 0.01169413048774004, 0.003757253522053361, -0.008050733245909214, 0.009630028158426285, -0.006735878065228462, 0.025459708645939827, 0.004767267964780331, -0.002150412416085601, 0.016321832314133644, -0.0008658578153699636, -0.011943879537284374, -0.03138022869825363, 0.007573271635919809, 0.029852353036403656, 0.019318820908665657, 0.00802135095000267, 0.026987584307789803, -0.002554418286308646, 0.01139296218752861, -0.01852549985051155, 0.0026682743337005377, -0.00026765381335280836, -0.007239048834890127, 0.0013984108809381723, 0.008917508646845818, -0.00261685554869473, 0.011525182984769344, 0.023344187065958977, 0.03190910816192627, -0.002760093891993165, 0.025562547147274017, -0.005380622111260891, -0.000808011507615447, -0.0013212824705988169, -0.000488479679916054, -0.01068778894841671, 0.003055752720683813, 0.0025048358365893364, 0.004759922623634338, -0.021067064255475998, -0.010349893011152744, -0.008014005608856678, 0.023167893290519714, 0.0072647579945623875, 0.0038086725398898125, -0.014573589898645878, 0.006364927161484957, 0.0020439019426703453, -0.004884797148406506, 0.008704488165676594, -0.01795254647731781, 0.014889448881149292, -0.02902965061366558, -0.0003505209169816226, -0.009483116678893566, 0.010856736451387405, 0.03252613544464111, -0.004466100130230188, 0.01774687133729458, 0.009284786880016327, -0.0034964862279593945, 0.001116525032557547, -0.007823020219802856, -0.005362258292734623, -0.0023671064991503954, -0.00011190500663360581, -0.037432968616485596, 0.020244361832737923, -0.00646776519715786, -0.010709825903177261, -0.002809676341712475, -0.015646040439605713, -0.0157048050314188, -0.011481109075248241, 0.013853725045919418, 0.013567248359322548, -0.004594647325575352, -0.00678729685023427, 0.010474767535924911, -0.031057024374604225, 0.013919834978878498, 0.003226537024602294, 0.0052484022453427315, -0.022403955459594727, 0.014588280580937862, -0.0021687764674425125, 0.0017115153605118394, 0.004032711964100599, -0.023711465299129486, -0.03252613544464111, -0.008315172977745533, 0.015792952850461006, -0.009218676947057247, -0.008116843178868294, 0.01690947823226452, 0.000987977720797062, 0.01878994144499302, -0.02516588568687439, 0.007275776471942663, 0.005395313259214163, 0.005141891539096832, -0.025753531605005264, 0.0021853039506822824, 0.001798743847757578, -0.007426360622048378, -0.008799980394542217, 0.010812663473188877, -0.016924168914556503, 0.008667759597301483, -0.004032711964100599, 0.006273107603192329, -0.004737885668873787, -0.01902499794960022, 0.004264097195118666, -0.012149554677307606, 0.01899561658501625, 0.01038662064820528, -0.010570259764790535, 0.02939692884683609, -0.011987952515482903, -0.01322200708091259, 0.016659729182720184, -0.01521999854594469, -0.015175925567746162, 0.003412012243643403, 0.0031347174663096666, -0.02785436064004898, -0.010981610976159573, -0.010812663473188877, -0.01003403402864933, -0.009064420126378536, -0.01228177547454834, 0.0026829654816538095, 0.016160231083631516, 0.020729169249534607, 0.001630714163184166, 0.009865086525678635, 0.01293553039431572, -0.003406503237783909, -0.0013772923266515136, -0.025107121095061302, 0.02989642694592476, -0.01591048203408718, 0.01711515337228775, -0.002635219367220998, 0.006599985063076019, 0.004458754323422909, -0.02594451606273651, 0.021522488445043564, -0.005567933898419142, -0.003074116539210081, -0.018980925902724266, -0.01724737323820591, 0.012531524524092674, -0.00744105177000165, -0.012722508981823921, 0.017232682555913925, -0.0031806272454559803, -0.015763569623231888, -0.01748243160545826, -0.012788618914783001, 0.015087778680026531, -0.01959795318543911, 0.008109497837722301, 0.01591048203408718, 0.015440365299582481, 0.0036305426619946957, 0.003951910883188248, 0.006614676211029291, -0.017306137830018997, -0.006295144557952881, 0.00795524101704359, -0.006585293915122747, -0.02466638758778572, -1.540845914860256e-05, 0.010482112877070904, -0.015396292321383953, -0.009483116678893566, 0.0016793784452602267, -0.0024497441481798887, -0.02218358963727951, -0.004403662867844105, -0.007881784811615944, -0.014169584028422832, 0.017262063920497894, -0.0021540853194892406, -0.005887466017156839, -0.020288435742259026, -0.019480424001812935, -0.015719497576355934, -0.014404641464352608, -0.01580764353275299, 0.022829998284578323, 0.0035221956204622984, -0.004458754323422909, -0.011716167442500591, 0.010180945508182049, -0.008888126350939274, -0.0047268676571547985, 0.008410665206611156, 0.004851741716265678, 0.010996302589774132, -0.008138880133628845, -0.0008695306023582816, 0.0047819591127336025, -0.031791578978300095, 0.00064916379051283, -0.004245733376592398, -4.611059921444394e-05, 0.0013745378237217665, -0.012039371766149998, 0.001957591623067856, -0.014316495507955551, 0.009343551471829414, -0.014015327207744122, -0.010482112877070904, -0.005208001472055912, -0.0028500771149992943, -0.010746553540229797, -0.011187287047505379, 0.003918855916708708, 0.0056156800128519535, -0.008491466753184795, 0.005116181913763285, 0.0006060086307115853, -0.012149554677307606, 0.005953575950115919, -0.012002644129097462, -0.00425307871773839, -0.003351411549374461, -0.019113145768642426, -0.02764868550002575, -0.017276756465435028, -0.015087778680026531, 0.007999313995242119, -0.0033459023106843233, -0.007903821766376495, 0.009152567014098167, -0.02660561539232731, 0.007947894744575024, -0.015572586096823215, -0.012142209336161613, 0.02684067375957966, -0.010695134289562702, 0.003412012243643403, -0.0012074263067916036, 0.020949535071849823, 0.00613354193046689, 0.009145221672952175, 0.0012101809261366725, 0.005729536060243845, 0.0028482405468821526, 0.002598491497337818, 0.01889277808368206, -0.008689796552062035, 0.01400798186659813, -0.003742562374100089, -0.007279449142515659, -0.01755588687956333, 0.024313801899552345, 0.01745304837822914, 0.005935212131589651, -0.018540192395448685, -0.02388775907456875, -0.03567003458738327, -0.025885751470923424, -0.011224014684557915, -0.006699149962514639, 0.001297409413382411, 0.004161259159445763, 0.0062033249996602535, -0.012156900949776173, -0.018643029034137726, 0.014639699831604958, -0.015425674617290497, 0.017835017293691635, -0.007022354751825333, 0.012120173312723637, 0.018172914162278175, 0.005843392573297024, 0.01335422694683075, -0.0029694424010813236, -0.04016551747918129, -0.009475771337747574, 0.019480424001812935, -0.015881098806858063, 0.010371929965913296, -0.02114051952958107, 0.0003034634282812476, -0.004987634718418121, 0.004737885668873787, 0.013361572287976742, 0.00807276926934719, -0.012355230748653412, 0.01176024042069912, 0.01228177547454834, -0.033672042191028595, 0.0018666902324184775, 0.013794960454106331, -0.003729707794263959, 0.006464092060923576, 0.0021210303530097008, 0.0030043337028473616, -0.008748561143875122, -0.00713988346979022, -0.02335887774825096, 0.004411008208990097, 0.008932200260460377, 0.011400308459997177, 0.003729707794263959, -0.011121177114546299, 0.006085795816034079, 0.019215982407331467, -0.007235376164317131, -0.004098821897059679, 0.007253739982843399, 0.00023597609833814204, -0.0078524025157094, -0.013581939041614532, 0.004363262094557285, -0.006805660668760538, -0.000244698952883482, 0.006104159634560347, 0.012972258031368256, 0.023402951657772064, -0.03002864681184292, 0.002701329533010721, 0.009960578754544258, -0.0032999925315380096, -0.0002938223769888282, 0.014235693961381912, -0.006937881000339985, -0.003351411549374461, 0.007312504108995199, 0.0018767904257401824, 0.00922602228820324, -0.01892216131091118, -0.00588012021034956, -0.009637373499572277, -0.024313801899552345, 0.01364070363342762, 0.02097891829907894, 0.00874121580272913, 0.015998627990484238, -0.01761465147137642, 0.0155872767791152, 0.0022936509922146797, -0.01779094524681568, 0.006750569213181734, -0.018510809168219566, 0.019421659409999847, 0.008227026090025902, -0.005949903279542923, -0.000903962878510356, 0.015117160975933075, 0.002113684779033065, -0.015146543271839619, 0.01139296218752861, -0.001467275433242321, -0.002150412416085601, -0.003700325498357415, 0.004914178978651762, -0.008204990066587925, 0.012810655869543552, -0.00996792409569025, 0.001944736810401082, 0.019304130226373672, 0.018305134028196335, -0.007103155832737684, 0.004333879798650742, -0.01774687133729458, -0.0001313018728978932, 0.007573271635919809, 0.008418010547757149, -0.013449719175696373, -0.0004981207312084734, 0.02056756615638733, -0.02006806805729866, -0.000976959359832108, 0.028779901564121246, 0.0023028329014778137, 0.005791973322629929, 0.011855732649564743, -0.013809651136398315, -0.011819005012512207, -0.011077103205025196, 0.02067040465772152, 0.013780268840491772, -0.014485443010926247, 0.019788937643170357, 0.0023009965661913157, 0.026164881885051727, -0.01862833835184574, -0.0009379361290484667, 0.0009214085876010358, -0.007624690420925617, -0.02647339552640915, 0.0038490730803459883, 0.007279449142515659, 0.011437036097049713, -0.008116843178868294, 0.009850394912064075, 0.005472441669553518, -0.006581621244549751, -0.0028500771149992943, 0.008579613640904427, 0.01892216131091118, -0.011363579891622066, -0.008836708031594753, -0.029543839395046234, -0.02040596306324005, 0.020626330748200417, 0.022227661684155464, 0.014749882742762566, -0.0017399793723598123, 0.002739893738180399, 0.006195979192852974, -0.024049362167716026, 0.008212335407733917, -0.0023303786292672157, 0.01677725836634636, -0.005086799617856741, -0.010357238352298737, -0.005263093393296003, -0.015660732984542847, -0.01902499794960022, 0.007389632519334555, -0.010922846384346485, 0.01191449724137783, -0.0016481599304825068, 0.02808941900730133, 0.008028696291148663, -0.016630345955491066, 0.00031677723745815456, -0.014198966324329376, -0.004131877329200506, -0.0006537548033520579, -0.004594647325575352, -0.017232682555913925, 0.007485124748200178, -0.025107121095061302, 0.012032026425004005, 0.034083396196365356, -0.003415685147047043, 0.01342033687978983, 0.019215982407331467, -0.002611346310004592, -0.007705491967499256, -0.02194853127002716, -0.008124188520014286, -0.01436056848615408, -0.011819005012512207, 0.005567933898419142, 0.005347567144781351, 0.010599642060697079, 0.008116843178868294, 0.006475110538303852, -0.014992286451160908, -0.00838862918317318, 0.0005812174058519304, 0.005762591492384672, 0.01327342540025711, -0.0027068385388702154, -0.002245904877781868, 0.04057687148451805, 0.01986239291727543, -0.03167405351996422, 0.006405327934771776, 0.012318503111600876, 0.0046240296214818954, 0.003937219735234976, 0.0017335519660264254, 0.013743541203439236, -0.012862074188888073, 0.02281530760228634, -0.002572782104834914, -0.0018611811101436615, -0.0002550286299083382, 0.02174285613000393, 0.000984304933808744, -0.0008681532926857471, -0.00750716170296073, -0.01596924662590027, 0.009020347148180008, 0.0032669375650584698, -0.01630714163184166, 0.019950538873672485, -0.0034303762950003147, -0.002067774999886751, 0.024343183264136314, 0.015925172716379166, -0.00018662311777006835, -0.0008543803705833852, -0.016865404322743416, 0.01421365700662136, 0.0019906465895473957, 0.015543203800916672, 0.014735192060470581, -0.022124825045466423, 0.012076099403202534, -0.0015471584629267454, -0.0157048050314188, -0.013192624785006046, 0.010709825903177261, -0.020053377375006676, 0.019480424001812935, 0.03948972746729851, -0.0010889791883528233, -0.003415685147047043, 0.007419014815241098, 0.010342547670006752, 0.032026637345552444, 0.003698489163070917, 0.0035864694509655237, -0.014544207602739334, 0.015190616250038147, 0.005545897409319878, -0.004576283507049084, -0.012788618914783001, -0.03132146596908569, 0.011745549738407135, 0.002782130613923073, 0.006948899012058973, 2.8779671993106604e-05, -0.015998627990484238, 0.0023285422939807177, -0.004197987262159586, 0.030263705179095268, 0.0010063416557386518, -0.0229916013777256, -0.0013396464055404067, -0.02913248911499977, 0.021595943719148636, 0.022433338686823845, -0.018745867535471916, 0.0020622657611966133, -0.0005747899995185435, 0.0019098453922197223, 0.009203986264765263, 0.010180945508182049, -0.015925172716379166, -0.003048407146707177, -0.011672093532979488, 0.004675448406487703, -0.0016610146267339587, 0.013626012951135635, -0.011716167442500591, 0.014955558814108372, 0.023799613118171692, 0.01045273058116436, 0.0031530812848359346, -0.009945887140929699, 0.00749981589615345, -0.012891456484794617, 0.00294006010517478, 0.0006330953910946846, -0.0068276976235210896, 0.010548222810029984, -0.0024993265978991985, 0.023917140439152718, -0.00711417431011796, 0.023784920573234558, 0.001624286756850779, 0.004914178978651762, -0.02472515217959881, 0.007587962783873081, 0.0015095124254003167, 0.020361891016364098, -0.00034317534300498664, -0.012068754062056541, 0.01567542366683483, -0.004403662867844105, -0.008190298452973366, -0.011547219008207321, -0.02090546116232872, -0.00016665237490087748, 0.005174946505576372, 0.007529198192059994, 0.0054246955551207066, -0.01627776026725769, -0.0015627677785232663, -0.0017280428437516093, -0.0078524025157094, 0.01023236382752657, -0.0022201952524483204, -0.012296466156840324, 0.012002644129097462, 0.013141205534338951, 0.002132048597559333, 0.008976273238658905, -0.008917508646845818, -0.00013244961155578494, -0.004337552934885025, -0.003097989596426487, 0.007529198192059994, 0.02459293231368065, 0.006798315327614546, 0.009821012616157532, -0.007573271635919809, -0.018026001751422882, -0.007947894744575024, -0.015881098806858063, -0.017129844054579735, -6.519183807540685e-05, -0.0061849611811339855, -0.010915501043200493, -0.021786928176879883, 0.002802330767735839, 0.006023358553647995, 0.0010880610207095742, -0.022066060453653336, -0.0011817169142886996, -0.0015701133524999022, -0.021625326946377754, -0.004734212998300791, -0.0044330451637506485, 0.014382605440914631, -0.008946890942752361, 0.004455081652849913, 0.021816311404109, 0.004109840374439955, 0.010092798620462418, -0.006555911619216204, -0.00981366727501154, 0.02208075113594532, 0.022257044911384583, 0.0016812148969620466, -0.0026554197538644075, 0.025121813639998436, -0.020861389115452766, 0.0021522489842027426, 0.008491466753184795, 0.009468425996601582, -0.0015040033031255007, -0.011451726779341698, -0.005968267098069191, -0.002271614270284772, -0.00461301114410162, 0.02362331934273243, -0.0015306309796869755, 0.0005729536060243845, -0.0021981585305184126, 0.027633994817733765, 0.0030520798172801733, -0.008432702161371708, 0.009218676947057247, -0.005740554537624121, 0.0035185229498893023, 0.0053034937009215355, 0.005274111405014992, -0.009703483432531357, -0.009784284979104996, -0.018011311069130898, 0.001308427774347365, 0.010724516585469246, 0.007411669474095106, 0.0008240799652412534, -0.0017096789088100195, 0.001289145671762526, -0.01839327998459339, -0.01638059690594673, -0.018114149570465088, -0.0032853013835847378, -0.013177933171391487, -0.004572610836476088, 0.013258734717965126, 0.008858744986355305, -0.01845204457640648, 0.0168800950050354, -0.016028011217713356, -0.014191620983183384, -0.00561935268342495, -0.007742219604551792, -0.020259052515029907, 0.002238559303805232, 0.013684776611626148, -0.001955755054950714, -0.031732816249132156, -0.0070370458997786045, 0.004994980525225401, 0.020420655608177185, -0.019406966865062714, -0.010048724710941315, 0.008939545601606369, -0.008080115541815758, -0.010327856056392193, -0.02093484438955784, 0.002075120573863387, -0.0049178521148860455, 0.011708821170032024, -0.014984941110014915, -0.0005518351681530476, 0.025386253371834755, -0.015440365299582481, -0.029485074803233147, 0.006023358553647995, 0.008447392843663692, 0.0035130137111991644, -0.011833695694804192, 0.027325481176376343, 0.009527190588414669, 0.007536543998867273, -0.01627776026725769, -0.013523174449801445, -0.00743370596319437, 0.01962733455002308, -0.001310264109633863, 0.008557576686143875, 0.012465414591133595, -0.0031898091547191143, -9.566443623043597e-05, 0.006937881000339985, -0.008366592228412628, -0.009843049570918083, 0.007859748788177967, -0.007169265765696764, 0.009769594296813011, -0.01721799187362194, 0.0034652675967663527, -0.0023689428344368935, -0.02382899448275566, -0.005329203326255083, -0.0155872767791152, -0.007231703028082848, -0.004021693952381611, 0.004043730441480875, -0.003259591991081834, 0.004822359886020422, -0.0007933204178698361, -0.001462684478610754, -0.02573883906006813, -0.005692808423191309, 0.004767267964780331, 0.008256408385932446, -0.010129526257514954, -0.01975955441594124, 0.017408976331353188, -0.01493352185934782, -0.024181582033634186, -0.01256825216114521, 0.02701696753501892, -0.004142895340919495, 0.029720133170485497, 0.0015811315970495343, 0.017188608646392822, -0.011841041967272758, -0.03279057517647743, 0.019539188593626022, 0.001616941299289465, -0.002585636917501688, -0.012296466156840324, -0.02191914990544319, 0.010070761665701866, 0.021933840587735176, -0.002761930227279663, 0.0018822995480149984, 0.017497122287750244, -0.014088782481849194, 0.00685340678319335, 0.015513821505010128, -0.027369553223252296, 0.009490462951362133, 0.0002055608929367736, -0.018878087401390076, -0.0023726157378405333, -0.026517469435930252, 0.00055596703896299, -0.014030017890036106, 0.001762934261932969, 0.00490683363750577, -0.00802135095000267, 0.007668763864785433, -0.012972258031368256, -0.018172914162278175, 0.009071765467524529, -0.00012097218132112175, 0.05124262347817421, 0.019186601042747498, 0.013067750260233879, 0.006056413520127535, 0.023344187065958977, -0.018643029034137726, 0.005215347278863192, 0.0064310370944440365, 0.002576455008238554, -0.018363898620009422, 0.010107489302754402, -0.0007487879483960569, -0.0057515730150043964, -0.0009250813745893538, -0.018878087401390076, 0.002280796179547906, 0.008322518318891525, -0.027663376182317734, -0.003885800950229168, -0.0016463234787806869, -0.004803995601832867, 0.019744863733649254, -0.0014149383641779423, 0.010834700427949429, 0.009769594296813011, 0.012245047837495804, -0.006945226341485977, 0.0010320510482415557, 0.0064126732759177685, -0.007646727375686169, 0.018834013491868973, -0.008631031960248947, -0.03323131054639816, 0.028500769287347794, 0.01055556908249855, 0.013581939041614532, -0.014573589898645878, 0.015557894483208656, -0.0030208611860871315, 0.006497147027403116, -0.006890134420245886, -0.007305158767849207, 0.014529515989124775, 0.009218676947057247, -0.0148821035400033, -0.005351239815354347, 0.0014838030328974128, -0.012869419530034065, 0.004870106000453234, 0.008902817964553833, 8.240799070335925e-05, -0.013883107341825962, -0.019715480506420135, -0.0031420630402863026, -0.02325604110956192, 0.021081754937767982, -0.001795989228412509, -0.0033807936124503613, -0.01357459370046854, 0.0015838862163946033, 0.002297323662787676, -0.005990303587168455, -0.0006087632500566542, 0.023006292060017586, -0.0035093410406261683, 0.008234372362494469, -0.00390049209818244, -0.020053377375006676, -0.002255086787045002, 0.0032155185472220182, 0.02255086787045002, -0.01868710294365883, -0.0130016403272748, -0.0008474938804283738, -0.005979285109788179, -0.030528144910931587, -0.012303811497986317, -0.00740065099671483, -0.02050880156457424, 0.0009475771803408861, 0.012994294054806232, -0.01593986339867115, -0.003237555269151926, 0.0009989960817620158, 0.004881124012172222, -0.0059645939618349075, -0.008697141893208027, 0.0037609264254570007, 0.006071104668080807, 0.013435027562081814, -0.010952228680253029, -0.007437378633767366, -0.0023671064991503954, 0.0013341371668502688, 0.013133860193192959, -0.005791973322629929, -0.0013277098769322038, -0.007095810491591692, -0.0017408975400030613, 0.013031022623181343, 0.02020028792321682, -0.009152567014098167, -0.006577948573976755, 0.004576283507049084, 0.001941064023412764, -0.01604270190000534, -0.002637055702507496, -0.013831688091158867, 0.005641389638185501, 0.012164246290922165, -0.00444773631170392, -0.002416688948869705, 0.0023469061125069857, 0.0012046716874465346, 0.0137068135663867, 0.004601993132382631, -0.005398985929787159, 0.012649052776396275, 0.02285938151180744, 0.007837711833417416, -0.022257044911384583, 0.014397296123206615, 0.016218995675444603, 0.018745867535471916, -0.00033422294654883444, 0.005894811358302832, 0.02446071244776249, 0.004113513045012951, -0.000580758263822645, -0.00021187347010709345, -0.005208001472055912, -0.02490144595503807, -0.01627776026725769, 0.020494110882282257, -0.0036397245712578297, 0.009960578754544258, 0.013251389376819134, 0.0008254572167061269, -0.0026792928110808134, -0.011179941706359386, -0.01350848376750946, 0.027457701042294502, 0.01536691002547741, 0.005468768998980522, -0.010114835575222969, -0.005046399310231209, -0.007543889340013266, 0.008748561143875122, 0.009703483432531357, 0.014588280580937862, -0.024945519864559174, 0.00682035181671381, -0.013170587830245495, 0.004495482426136732, -0.0012588452082127333, 0.01199529878795147, -0.030763203278183937, 0.03155652433633804, -0.031527139246463776, 0.01046742219477892, 3.784684668062255e-05, 0.010886118747293949, 0.013133860193192959, 0.014132856391370296, 0.01016625389456749, -0.010202981531620026, 0.002379961311817169, 0.01110648550093174, -0.0168800950050354, -0.008851398713886738, 0.00128363654948771, 0.011547219008207321, -0.009321514517068863, 0.010849391110241413, -0.009372933767735958, 0.011547219008207321, -0.01464704517275095, 0.015792952850461006, -0.0026462378446012735, -0.00034042075276374817, 0.00750716170296073, 0.01147376373410225, 0.011774932034313679, 0.005608334671705961, -0.01949511468410492, 0.0008736624731682241, 0.0068974802270531654, 0.0020255378913134336, -0.015646040439605713, -0.008058078587055206, 0.010379275307059288, 0.0020567565225064754, 0.009064420126378536, -0.0017170244827866554, -0.0028353859670460224, 0.016365906223654747, 0.005623025819659233, -0.01327342540025711, -0.019715480506420135, -0.00519331032410264, 0.022139515727758408, -0.007286794949322939, -0.020082758739590645, 0.010849391110241413], "4f305c42-d33f-4b8e-bf77-2ea69ace07c8": [-0.03209145739674568, -0.017396656796336174, -0.004966042470186949, 0.017575861886143684, -0.030133988708257675, -0.03597882390022278, 0.013660925440490246, 0.010786755010485649, 0.002264184644445777, -0.013902162201702595, -0.0029103560373187065, 0.011565606109797955, -0.008884426206350327, -0.030492397025227547, 0.013447257690131664, -0.021670004352927208, -0.011861983686685562, 0.020580990239977837, 0.01568731851875782, -0.038653112947940826, 0.07184736430644989, -0.0061515518464148045, -0.013226698152720928, -0.004555939231067896, 0.012082543224096298, -0.014184754341840744, -0.02834193967282772, -0.0010493823792785406, -0.034269485622644424, 0.015825169160962105, 0.016197362914681435, 0.01769992709159851, 0.024826766923069954, -0.017396656796336174, -0.024192657321691513, -0.01943683624267578, 0.012709761038422585, 0.011027991771697998, -0.03063024766743183, -0.03300126641988754, -0.026742881163954735, 0.008333026431500912, -0.0012604650110006332, -0.003625452285632491, -0.06727074831724167, 0.010800539515912533, 0.05695957690477371, -0.04295402765274048, 0.001921282964758575, -0.006413466762751341, 0.022428179159760475, -0.010841894894838333, -0.00894645880907774, -0.022524673491716385, 0.02668774127960205, -0.014736154116690159, 0.0021366735454648733, 0.043891407549381256, -0.006889048498123884, -0.05014979466795921, -0.008374381810426712, 0.0004374580457806587, 0.02485433593392372, -0.02506111189723015, -0.01826511137187481, -0.019423050805926323, 0.006713290233165026, -0.01789291761815548, -0.03217416629195213, -0.02825922891497612, 0.0066374726593494415, 0.026177695021033287, -0.04532504826784134, -0.0035255111288279295, -0.01607329770922661, -0.023627473041415215, 0.03184332698583603, 0.007168194744735956, 0.018306465819478035, -0.0202777199447155, -0.00964260008186102, -0.00820206943899393, 0.0347106046974659, -0.03046482801437378, 0.026839375495910645, 0.009167018346488476, -0.013247375376522541, -0.026811804622411728, 0.00479028420522809, -0.011021099053323269, 0.003580651246011257, 0.021766498684883118, -0.00816760677844286, -0.015273768454790115, -0.005555350799113512, -0.009849375113844872, -0.016569558531045914, 0.022083554416894913, 0.029748007655143738, 0.004111373331397772, 0.003542742459103465, 0.023558547720313072, -0.06120535358786583, 0.019698750227689743, -0.03548256307840347, 0.01031806506216526, 0.020319074392318726, -0.0011880937963724136, -0.014391529373824596, 0.014543164521455765, 0.025433305650949478, -0.023337988182902336, 0.008856856264173985, 0.008408843539655209, -0.023144997656345367, -0.018775155767798424, 0.004817854147404432, -0.003449693787842989, -0.02376532182097435, -0.06070909649133682, 0.023972097784280777, 0.002953434130176902, 0.016927966848015785, 0.03672321140766144, -0.008891318924725056, 0.01844431646168232, 0.01907842606306076, -0.005875851958990097, 0.014805079437792301, -0.015811383724212646, 2.7502670491230674e-05, -0.017286377027630806, 0.008891318924725056, 0.035454992204904556, -0.0015215182211250067, 0.011606961488723755, 0.023269062861800194, 0.04673111438751221, -0.04907456412911415, 0.03788115084171295, -0.04579373821616173, -0.03575826436281204, -0.03300126641988754, 0.01633521355688572, -0.008401951752603054, -0.012199715711176395, -0.02927931770682335, 0.0063031865283846855, 0.0025157607160508633, 0.042071789503097534, -0.0666642114520073, -0.005572582129389048, 0.008884426206350327, 0.0125719103962183, 0.01435017492622137, -0.018499456346035004, -0.0036978235002607107, 0.022800372913479805, -0.004276792984455824, 0.003093007020652294, 0.021904349327087402, -0.04265075922012329, 0.013474827632308006, 0.012489200569689274, 0.0446082279086113, 0.020153654739260674, 0.04615214467048645, -0.017865346744656563, 0.0022745232563465834, 0.012923427857458591, 0.027583764865994453, -0.009167018346488476, 0.014984283596277237, 0.001250126282684505, 0.013750527054071426, 0.002255568979308009, 0.045187197625637054, 0.0154116190969944, 0.03755031153559685, -0.014556949026882648, -0.013137095607817173, 0.02128402516245842, -0.02074640989303589, -0.029748007655143738, -0.021573510020971298, -0.01105556171387434, -0.026480965316295624, -0.005662184674292803, -0.00858115591108799, -0.005648399703204632, -0.040334880352020264, -0.011937801726162434, -0.0012932043755427003, 0.00020354399748612195, 0.017272591590881348, -0.011131379753351212, 0.0047248052433133125, 0.015466758981347084, 0.0007650669431313872, 0.032422296702861786, 0.0008331303251907229, -0.07824360579252243, -0.03975591063499451, 0.05072876438498497, -0.010669582523405552, 0.015563253313302994, -0.004397411830723286, -0.0614810548722744, 0.027914604172110558, -0.03165033832192421, 0.053540900349617004, -0.014012441970407963, 0.02284172736108303, 0.03322182595729828, -0.02183542400598526, 0.009670170024037361, -0.017837777733802795, 0.022910652682185173, -0.018141046166419983, -0.03581340238451958, -0.00830545648932457, 0.013336977921426296, -0.013771205209195614, -0.02963772788643837, -0.05400959029793739, -0.020980754867196083, 0.011124487034976482, 0.044001687318086624, -0.044718507677316666, -0.030768098309636116, 0.048688583076000214, -0.012999245896935463, -0.019340340048074722, -0.03346995636820793, 0.002939649159088731, 0.024826766923069954, -0.02431672252714634, 0.01991930976510048, -0.012185931205749512, 0.010807432234287262, 0.018471887335181236, 0.05621518939733505, 0.015287553891539574, -0.003914936911314726, 0.01448802463710308, 0.01679011806845665, -0.019009500741958618, -0.0007926369435153902, 0.007616207003593445, -0.005055645015090704, 0.010235355235636234, 0.007740271743386984, 0.022055983543395996, 0.0024158195592463017, -0.008532908745110035, 0.0035634199157357216, -0.003580651246011257, -0.039507780224084854, 0.012971675954759121, -0.0049901665188372135, 0.004504245240241289, 0.020608559250831604, 0.015990588814020157, 0.02100832387804985, 0.07504548877477646, -0.021173745393753052, 0.0049074562266469, -0.014681014232337475, 0.0061791217885911465, 0.019588470458984375, -0.036089103668928146, 0.00479028420522809, 0.015287553891539574, 0.009132555685937405, 0.00936000794172287, -0.012923427857458591, -0.03661293163895607, -0.007250904571264982, -0.01935412548482418, 0.014874003827571869, 0.008608725853264332, 0.007947046309709549, 0.01640413887798786, 0.021670004352927208, -0.007719594519585371, -5.88015973335132e-05, -0.01954711601138115, 0.024440787732601166, -0.018954360857605934, 0.009332437999546528, 0.01640413887798786, -0.00013644986029248685, 0.04336757957935333, -0.0005035829381085932, 0.06754644960165024, 0.005417501088231802, -0.030575107783079147, -0.014108937233686447, -0.06727074831724167, -0.01412961445748806, -0.018030766397714615, -0.0046145254746079445, 0.007395647000521421, -0.0014896404463797808, 0.03614424169063568, -0.002944818465039134, 0.0462348572909832, 0.029527448117733, -0.04129983112215996, 0.002555392449721694, 0.044194675981998444, -0.0225522443652153, -0.015728672966361046, -0.0047110202722251415, 0.00798840168863535, 0.012165253981947899, 0.014681014232337475, -0.006272170227020979, -0.012640835717320442, -0.03173304721713066, -0.003804657142609358, -0.004111373331397772, -0.041520390659570694, 0.017231237143278122, 0.04091385006904602, -0.017589647322893143, 0.027997314929962158, -0.012840718030929565, -0.004583509173244238, -0.02597092092037201, -0.0020953183993697166, -0.009870052337646484, -0.014474239200353622, 0.017520722001791, -0.011779273860156536, -0.009442717768251896, -0.012048081494867802, -0.07620342075824738, -0.0013672986533492804, -0.009787342511117458, -0.0012940659653395414, -0.018182402476668358, -0.005748340860009193, -0.016541987657546997, 0.02991342730820179, 0.016004372388124466, -0.012702868320047855, 0.02441321685910225, -0.02762511931359768, 0.023723967373371124, 0.0008994705858640373, -0.0020539634861052036, 0.012523663230240345, 0.0027414897922426462, 0.03857040032744408, -0.01604572869837284, 0.006909726187586784, 0.000696572766173631, -0.0019040517508983612, -0.004200975876301527, 0.04560074582695961, -0.007588637061417103, -0.047310084104537964, -0.007354292087256908, 0.0022986470721662045, 0.03741246089339256, -0.011165841482579708, -0.0013759143184870481, -0.002851769793778658, 0.02769404463469982, -0.03606153279542923, -0.010883249342441559, 0.002009162213653326, -0.0039011521730571985, -0.02404102310538292, -0.05017736181616783, 0.033993784338235855, -0.004700681660324335, -0.036364804953336716, 0.02486812137067318, 0.019202491268515587, -0.021132389083504677, -0.010380097664892673, 0.0063169714994728565, 0.0319536067545414, 0.02963772788643837, 0.013688495382666588, 0.018954360857605934, -0.005924099590629339, 0.0017050309106707573, -0.04378112778067589, 0.01650063320994377, -0.00016057358880061656, -0.014598304405808449, -0.01844431646168232, 0.01753450743854046, -0.004014878533780575, -0.00521072605624795, -0.01201361883431673, -0.036475084722042084, 0.002815584186464548, -0.006702951155602932, -0.019933095201849937, -0.011689671315252781, -0.0050453064031898975, -0.057014718651771545, -0.006809785030782223, -0.014956713654100895, 0.00954610574990511, 0.027032366022467613, 0.03818442299962044, -0.0025260993279516697, 0.03410406410694122, 0.02972043864428997, 0.05009465292096138, -0.01917492039501667, 0.04447037726640701, 0.015466758981347084, -0.020112300291657448, -0.029775578528642654, 0.06743617355823517, 0.0669950544834137, -0.03804657235741615, 0.011048668995499611, -0.00153702637180686, 0.026260405778884888, 0.005689754616469145, -0.0010623057605698705, 0.020305290818214417, -0.00893956609070301, -0.016914183273911476, 0.04306430742144585, -0.02558494172990322, 0.013791882432997227, 0.002634656149893999, -0.0379638634622097, 0.01417096983641386, 0.034820884466171265, 0.010717829689383507, 0.0041975295171141624, 0.0007573128677904606, 0.013833237811923027, -0.009318653494119644, 0.028948478400707245, -0.00848466157913208, -0.008925780653953552, -0.023916957899928093, 0.0280662402510643, -0.0019247292075306177, -0.0023537869565188885, 0.006489283870905638, 0.05263109132647514, -0.0033549219369888306, 0.0025588388089090586, -0.004097588360309601, 0.004721358884125948, -0.018775155767798424, -0.014708584174513817, 0.007054468616843224, -0.01588030904531479, -0.016018157824873924, 0.01013196725398302, -0.024330507963895798, 0.0021607971284538507, -0.020691270008683205, -0.022717664018273354, 0.011441541835665703, 0.05778667703270912, 0.009876945056021214, 0.017120957374572754, 0.0025019757449626923, -0.021945703774690628, -0.014984283596277237, 0.03724704310297966, 0.0352068655192852, -0.00949785765260458, -0.01458451896905899, -0.010648904368281364, -0.025709006935358047, 0.0062618316151201725, -0.02872791886329651, -0.03528957441449165, -0.015259983949363232, 0.008319240994751453, 0.0020263935439288616, 0.008395059034228325, -0.009380686096847057, -0.04287131875753403, 0.027018580585718155, -0.03705405443906784, 0.05927545577287674, -0.00440085818991065, 0.003559973556548357, 0.017934272065758705, -0.016569558531045914, -0.02146322838962078, -0.014984283596277237, -0.02420644275844097, -0.02395831234753132, -0.04788905382156372, 0.04397411644458771, -0.03355266526341438, -0.026480965316295624, 0.010511054657399654, -0.016004372388124466, -0.03209145739674568, -0.012737330980598927, 0.02164243347942829, -0.026935869827866554, -0.01946440525352955, -0.03556527569890022, -0.016183577477931976, -0.03369051590561867, 0.0069441888481378555, -0.006154998205602169, 0.008870640769600868, -0.005748340860009193, 0.01826511137187481, 0.02118752896785736, 0.023324202746152878, 0.011668994091451168, 0.01417096983641386, -0.022731447592377663, 0.01769992709159851, -0.030685387551784515, -0.014012441970407963, -0.021904349327087402, -0.042705897241830826, 0.029748007655143738, -0.00231587840244174, 0.00999411754310131, 0.017837777733802795, -0.014529379084706306, 0.008836178109049797, 0.018968146294355392, -0.004576616454869509, 0.0028603854589164257, 0.006334202829748392, 0.0021091033704578876, 0.028231659904122353, -0.016927966848015785, 0.03286341577768326, 0.0420166477560997, 0.0032429189886897802, 0.006227369420230389, 0.011689671315252781, 0.0006379865808412433, 0.009167018346488476, -0.027997314929962158, 0.032890986651182175, -0.03901152312755585, 0.026370685547590256, -0.031788185238838196, -0.008133144117891788, 0.021807853132486343, -0.01862352155148983, -0.02000202052295208, -0.036475084722042084, -0.009773558005690575, 0.033993784338235855, -0.046648405492305756, -0.0011493235360831022, -0.012737330980598927, 0.016031943261623383, 0.018871651962399483, -0.028590068221092224, 0.014694799669086933, 0.020677484571933746, -0.006820123642683029, 0.033442385494709015, 0.04535261541604996, -0.016486847773194313, 0.026729095727205276, -0.0279008187353611, 0.012716652825474739, 0.02872791886329651, -0.03473817557096481, 0.012565018609166145, -0.035730693489313126, -0.0016826302744448185, 0.025116251781582832, -0.008615618571639061, -0.0017799867782741785, -0.0026243175379931927, 0.014198539778590202, -0.00651685381308198, -0.010414560325443745, -0.001440531457774341, -0.008450198918581009, -0.0181686170399189, 0.014295034110546112, 0.028507359325885773, 0.00848466157913208, -0.009339330717921257, -0.04176852107048035, 0.0039045982994139194, -0.0016404137713834643, 0.00245372811332345, -0.004449105355888605, 0.00028970016865059733, 0.02723914012312889, 0.014074474573135376, 0.020139871165156364, -0.0050453064031898975, -0.02697722613811493, 0.00536925345659256, 0.003115407656878233, -0.012399598024785519, -0.017755066975951195, 0.01652820222079754, -0.01578381285071373, 0.024440787732601166, 0.048578303307294846, -0.0322844460606575, 0.03209145739674568, -0.014212324284017086, 0.00046050481614656746, 0.03523443266749382, -0.011172734200954437, -0.0074921417981386185, 0.014040011912584305, -0.04212692752480507, 0.05745583772659302, -0.044360097497701645, 0.02459242194890976, -0.0015473651001229882, -0.0015301338862627745, 0.005465748719871044, -0.01916113682091236, 0.00081719143781811, 0.0016455831937491894, 0.008794823661446571, 0.016941752284765244, -0.024440787732601166, -0.0006246323464438319, -0.007919476367533207, 0.044167108833789825, 0.046924106776714325, -0.022621167823672295, -0.015066994354128838, 0.0005509688053280115, -0.0055243344977498055, -0.005951669532805681, 0.04502177610993385, -0.021504584699869156, -0.01087635662406683, 0.011317476630210876, 0.032615285366773605, 0.044277388602495193, -0.0034341856371611357, -0.050976891070604324, -0.0009279021178372204, -0.009125662967562675, 0.0068545863032341, 0.02423401176929474, -0.04466336593031883, -0.007312937173992395, 0.01891300641000271, 0.020167440176010132, 0.0018489117501303554, 0.03818442299962044, -0.019698750227689743, -0.016900397837162018, -0.00226935395039618, 0.0038770283572375774, 0.0051004462875425816, -0.003018912859261036, 0.0160595141351223, 0.010655797086656094, 0.01927141658961773, 0.012964783236384392, -0.017410442233085632, 0.02248331904411316, -0.006006809417158365, 0.0035082800313830376, 0.009325545281171799, 0.0002955157251562923, 0.006430697627365589, 0.0032119026873260736, -0.01632142812013626, 0.009029168635606766, -0.017727496102452278, -0.022042198106646538, 0.030023708939552307, -0.04322972893714905, -0.012785578146576881, 0.01588030904531479, 0.04358813911676407, -0.03570312261581421, -0.024068592116236687, -0.009511643089354038, 0.017217451706528664, 0.017934272065758705, -0.007230227347463369, 0.00012751115718856454, 0.005551904905587435, 0.0015637348406016827, -0.02652231976389885, 0.0012234178138896823, -0.03614424169063568, -0.015838952735066414, 0.02788703516125679, 0.017644787207245827, -0.010607549920678139, 0.0015577038284391165, 0.015439189039170742, -0.030216697603464127, -0.022690093144774437, 0.02018122561275959, -0.011214089579880238, 0.0390942320227623, 0.009704632684588432, 0.012585695832967758, 0.015149704180657864, -0.02184920944273472, 0.05185913294553757, -0.006823570001870394, 0.018885435536503792, 0.011386401951313019, 0.01787913218140602, -0.015632178634405136, 0.027942175045609474, 0.0024985293857753277, -0.011503574438393116, -0.03936992958188057, 0.01151046622544527, -0.0034565862733870745, 0.03881853073835373, -0.005479533690959215, -0.002879339735955, 0.030961086973547935, 0.0046696653589606285, -0.011248551309108734, -0.0043215942569077015, -0.027859464287757874, 0.006775322370231152, -0.008588048629462719, -0.013681602664291859, 0.0418512299656868, -0.02275901846587658, 0.0014637935673817992, 0.009794235229492188, 0.004021770786494017, -0.00026148403412662446, -0.007940154522657394, 0.022428179159760475, 0.016486847773194313, 0.016459278762340546, 0.014322604984045029, 0.016652267426252365, 0.012716652825474739, -0.016666052863001823, 0.08315105736255646, 0.018044551834464073, -0.012599480338394642, 0.014598304405808449, -0.013336977921426296, -0.005910314619541168, 0.004914348945021629, 0.026591245085000992, 0.002245230134576559, 0.010752292349934578, -0.010717829689383507, -0.04016945883631706, -0.0046972353011369705, 0.017189882695674896, 0.0012604650110006332, 0.06081937626004219, 0.031705476343631744, 0.024564852938055992, 0.023627473041415215, 0.0012018787674605846, 0.010669582523405552, 0.02313121221959591, 0.001505148597061634, -0.030216697603464127, 0.05092175304889679, -0.0076851318590343, -0.06214273348450661, -0.010531731881201267, 0.0008219300070777535, 0.0011553544318303466, 0.0308232381939888, -0.00568630825728178, 0.02485433593392372, -0.01669362187385559, 0.0530446395277977, 0.0434778593480587, -0.01032495778053999, 0.004762713797390461, -0.010166429914534092, -0.0017886024434119463, 0.015894092619419098, 0.013019923120737076, 0.000766359269618988, 0.011724133975803852, 0.03300126641988754, -0.036364804953336716, 0.00972531083971262, 0.013509290292859077, 0.018209971487522125, -0.021628649905323982, 0.04841288551688194, 0.04044516012072563, -0.0006366941961459816, -0.0015577038284391165, 0.0420166477560997, 0.004735143855214119, -0.007078592199832201, 0.012096328660845757, -0.0047110202722251415, -0.010752292349934578, -0.030602676793932915, 0.02696344070136547, -0.001440531457774341, -0.0016550603322684765, -0.003342860145494342, 0.008133144117891788, 0.009745988063514233, -0.0063445414416491985, 0.025474661961197853, 0.00362200615927577, 0.02769404463469982, 0.025116251781582832, -0.02377910725772381, 0.00500050513073802, 0.021394304931163788, -0.023420697078108788, 0.004393965471535921, -0.008974028751254082, 0.00858115591108799, 0.0012854503002017736, -0.006196353118866682, 0.007540389429777861, -0.013598892837762833, -0.009601245634257793, -0.011758596636354923, -0.019298985600471497, -0.033276963979005814, 0.028204089030623436, -0.0153289083391428, -0.023227708414196968, -0.009601245634257793, -0.011289906688034534, -0.010173322632908821, -0.012330673635005951, 0.018389176577329636, 0.0012587419478222728, 0.05955115705728531, 0.047282516956329346, 0.022634953260421753, -0.032973695546388626, -0.007071699947118759, 0.013268052600324154, -0.008615618571639061, 0.0074232169426977634, -0.0058310506865382195, 0.001976422965526581, 0.005775910802185535, 0.02045692503452301, 0.000743097101803869, 0.009422040544450283, -0.04764092341065407, -0.01073850691318512, 0.02395831234753132, -0.0047661601565778255, -0.006709843873977661, 0.006858032662421465, -0.012675298377871513, 0.017837777733802795, -0.02275901846587658, 0.003515172516927123, -0.0031705477740615606, 0.019326556473970413, -0.011034884490072727, -0.018775155767798424, -0.013295622542500496, 0.020415570586919785, -0.021766498684883118, -0.01790670119225979, 0.01064201258122921, 0.023820461705327034, -0.0038735822308808565, 0.02889333851635456, -0.03697134181857109, 0.013619570061564445, 0.021628649905323982, -0.012061866000294685, -0.0209256149828434, -0.012330673635005951, 0.0021745820995420218, 0.011110701598227024, -0.017120957374572754, -0.010193999856710434, 0.0009649493149481714, -0.010331849567592144, -0.007009667344391346, -0.01652820222079754, -0.0076644541695714, -0.023889387026429176, 0.008491553366184235, -0.03322182595729828, -0.03686106204986572, 0.01578381285071373, 0.009966547600924969, -0.029417168349027634, 0.029196608811616898, 0.02660503052175045, 0.025005972012877464, 0.015590823255479336, 0.013040600344538689, 0.009449610486626625, 0.006878709886223078, -0.02073262445628643, 0.021159959957003593, 0.040059179067611694, 0.008084896951913834, -0.013447257690131664, -0.0208429042249918, -0.003997647203505039, 0.009160125628113747, 0.009876945056021214, 0.006806338671594858, 0.014874003827571869, -0.0017196774715557694, -0.008560478687286377, 0.011910230852663517, 0.011724133975803852, 0.00011448003351688385, 0.01288896519690752, -0.02082912065088749, -0.003883920842781663, -0.018292682245373726, 0.030133988708257675, 0.024178871884942055, -0.0030895608942955732, -0.006671935319900513, -0.004235438071191311, -0.03672321140766144, -0.0160595141351223, -0.01045591477304697, 0.0034979411866515875, -0.004955703858286142, -0.013336977921426296, 0.0005582920857705176, -0.014942929148674011, -0.025198960676789284, 0.012213501147925854, -0.0030413134954869747, -0.021339165046811104, -0.0029878965578973293, 0.032229308038949966, 0.008043541572988033, -0.01412961445748806, -0.013523074798285961, 0.009876945056021214, -0.00451803021132946, 0.008208961226046085, 0.007106162142008543, 0.0087603610008955, 0.006203245371580124, 0.005148693919181824, 0.023227708414196968, 0.01151735894382, -0.007609314285218716, 0.032532576471567154, -0.0648997351527214, 0.021601079031825066, -0.013474827632308006, -0.0014922252157703042, -0.011930909007787704, -0.0251438207924366, 0.0013741911388933659, 0.006217030342668295, 0.012813148088753223, -0.009173911064863205, -0.0014741324121132493, -0.016996892169117928, -0.022097337990999222, -0.01834782212972641, 0.04265075922012329, 0.007960831746459007, -0.008153821341693401, -0.02551601640880108, -0.009525427594780922, 0.006885602604597807, -0.02384803257882595, 0.011427756398916245, 0.017465582117438316, 0.002124611521139741, 0.009484073147177696, -0.024261582642793655, -0.009111878462135792, 0.001324220560491085, 0.00722333462908864, -0.04488392546772957, -0.011731026694178581, -0.014942929148674011, -0.02540573664009571, -0.012916535139083862, -0.011799951083958149, -0.02723914012312889, -0.004228545818477869, 0.013240482658147812, 0.014805079437792301, -0.01279247086495161, 0.030216697603464127, 0.0004897979088127613, 0.028190303593873978, -0.008505338802933693, -0.00562082976102829, 0.0031464239582419395, -0.02047071047127247, -0.018113477155566216, -0.009670170024037361, 0.02448214218020439, -0.008822393603622913, -0.06357637047767639, -0.03457275405526161, 0.04901942238211632, -0.02285551279783249, -0.0003080083697568625, -0.0020005465485155582, -0.0223868228495121, -0.006227369420230389, 0.008588048629462719, -0.003866689745336771, -0.010931497439742088, 0.03396621346473694, 0.02660503052175045, -0.03054753690958023, -0.005744894500821829, 0.005979239474982023, 0.0031309158075600863, -0.00692695751786232, -0.014529379084706306, -0.0034428013022989035, -0.03901152312755585, -0.0007254350930452347, -0.007154409773647785, 0.018940575420856476, -0.014874003827571869, -0.021807853132486343, 0.0147637240588665, -0.002603640081360936, -0.026811804622411728, 0.02449592761695385, 0.0087603610008955, -0.013323192484676838, 0.014929143711924553, 0.004087249282747507, -0.029748007655143738, 0.022634953260421753, -0.007030345033854246, -0.01523241400718689, -0.015315123833715916, -0.0009253174648620188, -0.0022521226201206446, 0.0030413134954869747, -0.00019966695981565863, 0.004445659462362528, -0.010890142060816288, 0.0126132657751441, 0.0027690597344189882, 0.01989174075424671, -0.0010054426966235042, -0.01724502258002758, -0.012633942998945713, 0.0030533752869814634, -0.016169793903827667, 0.0154116190969944, 0.015632178634405136, -0.0087603610008955, 0.008967136032879353, -0.0011648316867649555, 0.02377910725772381, -0.010366312228143215, -0.005958561785519123, 0.027459699660539627, -0.011124487034976482, 0.01961604133248329, -0.005868959240615368, -0.001699861604720354, 0.016183577477931976, -0.024385647848248482, 0.006144659128040075, 0.0223868228495121, 0.01640413887798786, -0.012820040807127953, -0.004828192759305239, -0.011710348539054394, -0.008408843539655209, 0.005806927103549242, 0.033607807010412216, -0.007374969776719809, -0.0065823327749967575, 0.0015309954760596156, 0.03272556513547897, 0.014749939553439617, 0.0008447614382021129, -0.014460454694926739, -0.009146341122686863, -0.0023813568986952305, -0.0029379259794950485, 0.008987813256680965, 0.012737330980598927, 0.0036461297422647476, 0.008960243314504623, -0.013364547863602638, 0.025005972012877464, 0.040968991816043854, 0.0026363793294876814, -0.02292443811893463, 0.0026897962670773268, -0.0008839624933898449, 0.004617971833795309, -1.3293630217958707e-05, -0.010690259747207165, -0.009125662967562675, 0.017686141654849052, 0.005979239474982023, 0.0050590913742780685, -0.02717021480202675, 0.012420276179909706, -0.01843053102493286, -0.006296294275671244, 0.008415736258029938, 0.020429354161024094, 0.0005277066375128925, 0.016100868582725525, 0.013171558268368244, -0.0038460122887045145, 0.02769404463469982, 0.03799143061041832, 0.011172734200954437, 0.009925193153321743, 0.016459278762340546, 0.015590823255479336, -0.005289989989250898, 0.008346810936927795, -0.010304279625415802, 0.007299152202904224, 0.00025588387507013977, 0.006041271612048149, 0.01943683624267578, -0.006451375316828489, -0.019312771037220955, -0.008746576495468616, 0.006413466762751341, -0.028424648568034172, 0.0031240233220160007, -0.009601245634257793, 0.005469194613397121, 0.002115995856001973, -0.014667229726910591, -0.008980920538306236, 0.0033773225732147694, -0.00014043458213564008, 0.004883332643657923, -0.01403312012553215, -0.05152829363942146, -0.04025217145681381, -0.0017851562006399035, 0.01596301794052124, 0.013881484977900982, -0.009201481007039547, 0.008422628976404667, 0.013722957111895084, -0.0011872322065755725, -0.008794823661446571, 0.006685720290988684, -0.0004150574386585504, 0.017189882695674896, 0.04229234904050827, -0.025833070278167725, -0.009366900660097599, -0.019602255895733833, 0.011048668995499611, -0.00322224129922688, -0.0050453064031898975, 0.01430881954729557, 0.002407203894108534, -0.014570734463632107, 0.002519206842407584, -0.018223756924271584, -0.014639658853411674, -0.010945281945168972, 0.014805079437792301, -0.01907842606306076, 0.02475784160196781, -0.02540573664009571, -0.014474239200353622, -0.013998657464981079, 0.004617971833795309, 0.016748763620853424, 0.011214089579880238, 0.017286377027630806, -0.00025114527670666575, 0.02037421427667141, 0.007368077058345079, -0.0046558803878724575, 0.010517947375774384, -0.007857444696128368, -0.008643188513815403, -0.00616878317669034, -0.019423050805926323, -0.012585695832967758, 0.0022383376490324736, 0.013371440581977367, -0.03721947222948074, -0.025005972012877464, 0.007106162142008543, -0.017313947901129723, -0.013419687747955322, -0.02357233315706253, 0.02047071047127247, -0.016473062336444855, -0.0017886024434119463, 0.0032515344209969044, -0.033359676599502563, 0.06137077510356903, 0.0047041280195117, 0.003361814422532916, -0.0013302515726536512, 0.008677651174366474, -0.024165086448192596, -0.01714852824807167, 0.005731109529733658, 0.017189882695674896, -0.013240482658147812, -0.03140220791101456, 0.013654032722115517, -0.011634531430900097, 0.033635374158620834, -0.013743635267019272, -0.024785412475466728, -0.011779273860156536, -0.01519105862826109, -0.013199128210544586, 0.02384803257882595, 0.0168728269636631, -0.006816677283495665, -0.001356959925033152, -0.018871651962399483, 0.00020182086154818535, 0.005651846062391996, -0.005183156114071608, 0.012392706237733364, -0.007361184805631638, -0.006086072884500027, 0.011345046572387218, 0.016362782567739487, -0.02053963579237461, 0.011593176051974297, -0.006520300172269344, 0.014074474573135376, -0.020222580060362816, 0.02431672252714634, -0.0004391811671666801, -0.010952174663543701, -0.03300126641988754, 0.008725898340344429, 0.02340691350400448, -0.01659712754189968, -0.037853583693504333, -0.003510002978146076, 0.025571156293153763, -0.015342693775892258, 0.009284190833568573, 0.019423050805926323, -0.013109525665640831, 0.013219805434346199, 0.0038908133283257484, 0.013240482658147812, -0.027914604172110558, 0.024812981486320496, -0.011090024374425411, -0.02697722613811493, -0.0043767341412603855, 0.0062066917307674885, 0.00022831388923805207, -0.0070268986746668816, 0.018871651962399483, -0.02449592761695385, 0.0068545863032341, 0.004356056917458773, 0.013757419772446156, 0.005293436348438263, -0.021215099841356277, -0.017686141654849052, 0.02293822355568409, 0.00889821071177721, 0.006041271612048149, -0.00811935868114233, -0.02212490886449814, 0.011489789001643658, 0.02870034985244274, 0.011882660910487175, 0.026839375495910645, 0.0010631673503667116, -0.002407203894108534, 0.017203668132424355, -0.018237542361021042, -0.008140036836266518, -0.012413383461534977, -0.003573758527636528, -0.01596301794052124, 0.009167018346488476, 0.012358243577182293, -0.028314368799328804, -0.027404559776186943, 0.004259561654180288, 0.008388166315853596, 0.009532320313155651, 0.010159537196159363, 0.0037667485885322094, -0.013722957111895084, -0.0008740545017644763, -0.005424393340945244, -0.027128860354423523, 0.03539985418319702, 0.012110114097595215, 0.00908430851995945, -0.006489283870905638, -0.017851561307907104, 0.018113477155566216, 0.0087603610008955, 0.0050177364610135555, 0.005968900863081217, 0.0407208614051342, -0.018141046166419983, 0.024178871884942055, 0.011034884490072727, -0.019409265369176865, 0.005507103633135557, -0.0008516539237461984, -0.02506111189723015, 0.0009141171467490494, 0.01698310673236847, 0.002999958349391818, -0.006723628845065832, -0.007754056714475155, -0.0002474836364854127, -0.024978401139378548, -0.003639237256720662, 0.013578214682638645, 0.00024339123046956956, -0.013564430177211761, -0.0037150548305362463, -0.023999666795134544, -0.00476960651576519, -0.013088847510516644, -0.03250500559806824, 0.030161557719111443, 0.018416747450828552, -0.011682778596878052, -0.019381696358323097, -0.009332437999546528, 0.003005127888172865, 0.01961604133248329, 0.01243406068533659, -0.041961509734392166, 0.0022710771299898624, -0.019519545137882233, 0.015907878056168556, 0.012606373056769371, -0.036089103668928146, -0.026825590059161186, 0.023696398362517357, 0.0014681013999506831, 0.009511643089354038, 0.016459278762340546, 0.004163066856563091, 0.01201361883431673, 0.002774229273200035, 0.0026363793294876814, 0.00021334426128305495, 0.007443894632160664, 0.016018157824873924, -0.013654032722115517, 0.026370685547590256, -0.022042198106646538, 0.011986048892140388, -0.003217071993276477, 0.004607632756233215, 0.047668494284152985, -0.014501809142529964, -0.005558797158300877, 0.01918870583176613, 0.02120131440460682, 0.007561067119240761, 0.02285551279783249, 0.03531714528799057, 0.006268724333494902, 0.019050855189561844, -0.03217416629195213, -0.03173304721713066, -0.003161932108923793, -0.028865769505500793, 0.009477180428802967, -0.0063583264127373695, 0.00016175824566744268, 0.029582588002085686, 0.02430293709039688, 4.006262679467909e-05, 0.014474239200353622, -0.026163911446928978, 0.009125662967562675, -0.011903339065611362, 0.013474827632308006, 0.0019798690918833017, -0.025350596755743027, 0.03131949529051781, 0.004469783045351505, 0.008608725853264332, -0.005214172415435314, 0.015590823255479336, 0.010111290030181408, 0.008415736258029938, -0.02668774127960205, -0.02293822355568409, -0.00922215823084116, -0.0020522403065115213, -0.007175087463110685, -0.003491048701107502, -0.03035454824566841, -0.011951586231589317, 0.023544762283563614, 0.021683789789676666, 3.2927819120232016e-05, 0.014805079437792301, 0.012206608429551125, 0.016390353441238403, -0.021987058222293854, 0.026660170406103134, -0.036833494901657104, 0.007354292087256908, 0.015122134238481522, -2.3975651856744662e-05, 0.008415736258029938, 0.014818863943219185, 0.011538036167621613, 0.04074842855334282, 0.008401951752603054, -0.003191225230693817, -0.0017145081656053662, -0.02697722613811493, 0.0013052662834525108, 0.010931497439742088, 0.001531856949441135, 0.002407203894108534, -0.022235188633203506, -0.0022762464359402657, -0.010552410036325455, 0.015108348801732063, -0.01187576912343502, -0.008457091636955738, -0.006975204683840275, 0.01087635662406683, 0.0035634199157357216, -0.005810373462736607, -0.0018833742942661047, 0.004759267903864384, -0.010965959168970585, -0.0031826095655560493, -0.005837943404912949, 0.026949655264616013, -0.005262420047074556, 0.01880272664129734, 0.009015383198857307, 0.009284190833568573, 0.028590068221092224, -0.015590823255479336, 0.01862352155148983, -0.017727496102452278, -0.009615030139684677, -0.011744811199605465, -0.014363959431648254, 0.014667229726910591, 0.01215836126357317, -0.02229032851755619, -0.017479367554187775, -0.013047493062913418, 0.002255568979308009, 0.008319240994751453, 0.004397411830723286, 0.023889387026429176, 0.02008472941815853, -0.029858287423849106, 0.010193999856710434, 0.007940154522657394, 0.011124487034976482, 0.0160595141351223, -0.0042802393436431885, 0.008319240994751453, -0.022221403196454048, 0.029196608811616898, 0.047475505620241165, 0.025185177102684975, 0.0029224178288131952, 0.00999411754310131, -0.012137684039771557, 0.013909054920077324, 0.027018580585718155, -0.01677633263170719, -0.026866944506764412, 0.001444839290343225, -0.01778263784945011, 0.0043215942569077015, -0.018044551834464073, -0.008078004233539104, -0.004969488829374313, -0.02219383418560028, 0.010028580203652382, -0.021063463762402534, 0.010111290030181408, -0.01448802463710308, 0.0018954360857605934, -0.014667229726910591, -0.02275901846587658, 0.003008574014529586, 0.007257797289639711, -0.011386401951313019, 0.023530978709459305, 0.0068339086137712, -0.01716231182217598, 0.04480121657252312, 0.007595529314130545, 0.01833403669297695, 0.009256620891392231, 0.021339165046811104, -0.006764983758330345, -0.0038597972597926855, -0.0024554512929171324, 0.0223868228495121, 0.01677633263170719, 0.015618393197655678, 0.011889553628861904, -0.012744222767651081, -0.02357233315706253, -0.013295622542500496, -0.0004833362181670964, -0.027473485097289085, 0.025653867051005363, 0.02449592761695385, 0.005800034385174513, -0.010717829689383507, -0.015287553891539574, 0.017548292875289917, 0.0019591916352510452, 0.008519123308360577, -0.022317899391055107, -0.002750105457380414, 0.00401143217459321, -0.023544762283563614, -0.006661596242338419, 0.00040471868123859167, 0.0014870557934045792, -0.01716231182217598, -0.007092377170920372, -0.021146174520254135, -0.0012906197225674987, -0.008781038224697113, -0.0001740354928188026, -0.0050315214321017265, -0.001569765736348927, -0.016362782567739487, -0.00406312569975853, 0.01790670119225979, 0.001315605011768639, 0.014543164521455765, 0.016748763620853424, 0.030216697603464127, -0.016031943261623383, -0.01586652360856533, 0.004049340728670359, -0.01137261651456356, -0.012551233172416687, -0.012103221379220486, 0.010400774888694286, 0.00047342825564555824, -0.0030413134954869747, 0.037936292588710785, 0.0001944975956575945, 0.01982281543314457, -1.534657167212572e-05, -0.002560561988502741, -0.01679011806845665, -0.021945703774690628, 0.020387999713420868, 0.00015723504475317895, 0.005820712074637413, 0.013516183011233807, 0.006782215088605881, 0.015315123833715916, -0.003897705813869834, -0.05034278333187103, 0.0005216756835579872, -0.002994789043441415, 0.0017239853041246533, -2.1296731574693695e-05, 0.023903172463178635, 0.024523496627807617, -0.021683789789676666, -0.023820461705327034, 0.020222580060362816, -0.0006698643555864692, 0.024358076974749565, 0.0034462474286556244, -0.007816089317202568, 0.015301338396966457, 0.012730438262224197, 0.004866101313382387, -0.00738875474780798, -0.013309407979249954, -0.012220393866300583, -0.0014112383360043168, 0.013660925440490246, -0.005693200975656509, 0.02201462909579277, 0.013957302086055279, -0.0009227327536791563, 0.0021315040066838264, -0.01155182160437107, 0.01714852824807167, 0.008015971630811691, -0.02100832387804985, -0.004555939231067896, 0.011455326341092587, -0.00692695751786232, 0.014874003827571869, 0.004328486975282431, -0.02275901846587658, -0.02707372047007084, -0.0180859062820673, 0.0005130600766278803, 0.02642582543194294, 0.0015792428748682141, 0.027818109840154648, -0.010090612806379795, -0.0048075150698423386, -0.0020246703643351793, -0.020043374970555305, -1.8900513168773614e-05, -0.013364547863602638, -0.011296799406409264, -0.027997314929962158, 0.002041901694610715, -0.003935614600777626, -0.013592000119388103, 0.006292847916483879, -0.007760949432849884, -0.020773978903889656, 0.004245776683092117, 0.01797562651336193, -0.014639658853411674, 0.011420863680541515, 0.03256014734506607, -0.0012578803580254316, 0.02761133387684822, 0.009952763095498085, 0.011317476630210876, 0.0030309746507555246, -0.0028362616430968046, -0.00843641348183155, -0.02008472941815853, 0.011999833397567272, -0.021614864468574524, 0.00497982744127512, -0.013736742548644543, -0.0020677484571933746, -0.019698750227689743, 0.01863730698823929, -0.009897623211145401, 0.008188284002244473, -0.00830545648932457, 0.0004333656106609851, -0.0007978063076734543, 0.003594436217099428, 0.015535683371126652, 0.022055983543395996, -0.0208429042249918, 0.005010843742638826, 0.013281838037073612, -0.007006220985203981, 0.012689082883298397, -0.0044180890545248985, -0.008229639381170273, 0.017741281539201736, -0.007802304346114397, -0.02340691350400448, -0.012806255370378494, -0.011565606109797955, -0.0029603266157209873, 0.028755489736795425, 0.015011854469776154, -0.009449610486626625, -0.00531755993142724, 0.0023968650493770838, -0.0025846855714917183, -0.01679011806845665, -0.005906868260353804, -0.02064991556107998, 0.0023813568986952305, -0.003060267772525549, -0.007926369085907936, 0.027280494570732117, 0.003763302229344845, -0.02999613806605339, -0.0017618939746171236, -0.00021635972370859236, -0.002968942280858755, -0.01293721329420805, -0.009063631296157837, 0.033276963979005814, -0.00621358398348093, -0.0015473651001229882, 0.0025674544740468264, 0.0020246703643351793, 0.003439354943111539, 0.029610158875584602, -0.026770450174808502, 0.017300162464380264, 0.025557370856404305, 0.0153289083391428, 0.029141468927264214, 0.0008046987932175398, 0.007347399834543467, -0.004921241197735071, -0.026935869827866554, 0.0014922252157703042, -0.029665298759937286, 0.009304868057370186, -0.01677633263170719, -0.009311760775744915, -0.013137095607817173, -0.0032532576005905867, -0.004073464311659336, -0.009849375113844872, 0.018775155767798424, -0.012785578146576881, 0.02524031698703766, 0.0032119026873260736, -0.0009313483606092632, 0.010517947375774384, 0.0035496349446475506, 0.0011148611083626747, 0.01880272664129734, 0.026301760226488113, 0.013750527054071426, 0.006430697627365589, -0.012103221379220486, -0.0104214521124959, -0.0008460537646897137, 0.0016774609684944153, -0.03526200354099274, 0.013006137683987617, -0.01293721329420805, -0.0087603610008955, 0.014515594579279423, -0.019395479932427406, 0.005179709754884243, -0.014253679662942886, 0.002171135973185301, 0.035179294645786285, -5.422455069492571e-05, 0.02788703516125679, 0.004035555757582188, -0.004007985815405846, -0.008229639381170273, -0.007299152202904224, 0.01123476680368185, -0.007774734403938055, 0.02173892967402935, -0.0004691204521805048, -0.0017300161998718977, -0.006875263527035713, -0.011689671315252781, 0.017079602926969528, 0.024013452231884003, 0.03355266526341438, -0.0034048925153911114, -0.014791294001042843, 0.007485249545425177, 0.011048668995499611, 0.013592000119388103, -0.00024425279116258025, -0.009794235229492188, -0.00431470200419426, -0.005569135770201683, 0.00018771279428619891, 0.00826410111039877, -0.011882660910487175, -0.014040011912584305, -0.00651685381308198, 0.023434482514858246, -0.001388837699778378, -0.009842482395470142, -0.003663361072540283, -0.003546188585460186, 0.007919476367533207, 0.0023262170143425465, 0.020580990239977837, -0.0002597609127406031, -0.022414393723011017, 0.02441321685910225, 0.0074094319716095924, -0.011848199181258678, 0.008477768860757351, 0.005041860044002533, 0.017506936565041542, 0.0029430952854454517, 0.02624662034213543, 0.004318147897720337, -0.0032377494499087334, 0.02202841453254223, -0.016169793903827667, 0.012137684039771557, 0.004052787087857723, -0.015066994354128838, 0.008753468282520771, 0.0017765405355021358, -0.019381696358323097, 0.016803903505206108, -0.02597092092037201, 0.00036357910721562803, 0.0022865852806717157, -0.01943683624267578, -0.012709761038422585, -0.007629991974681616, 0.00546230236068368, -1.9452450942480937e-05, -0.006203245371580124, -0.00752660445868969, -0.005289989989250898, 0.029306888580322266, 0.022166263312101364, -0.0046558803878724575, -0.006392789073288441, 0.008794823661446571, 0.015604608692228794, -0.021421873942017555, -0.008215853944420815, -0.0009701186791062355, 0.0046145254746079445, -0.014226109720766544, 0.020126085728406906, 0.011951586231589317, -0.027225354686379433, 0.016624698415398598, 0.020966969430446625, 0.0033411369659006596, 0.0047110202722251415, -0.0005121985450387001, 0.0180859062820673, 0.033993784338235855, 0.004621417727321386, -0.009966547600924969, 0.0009184249793179333, -0.013143988326191902, -0.001773094292730093, 0.01781020686030388, 0.021973274648189545, -0.005362361203879118, 0.00820206943899393, -0.01870623044669628, -0.013447257690131664, -0.022276543080806732, 0.01031806506216526, -0.004407750442624092, 0.007891906425356865, 0.010407667607069016, 0.007126839831471443, -0.013178450055420399, 0.013226698152720928, -0.018595950677990913, 0.02597092092037201, 0.010380097664892673, -0.01936791092157364, -0.013281838037073612, -0.012813148088753223, -0.01435017492622137, 6.332479824777693e-05, -0.01288896519690752, -0.014846433885395527, -0.006430697627365589, 0.015494328923523426, -0.009787342511117458, 0.033607807010412216, 0.018554596230387688, 0.009808020666241646, 0.02872791886329651, 0.0008167606429196894, -0.01458451896905899, 0.011090024374425411, 0.0104214521124959, -0.006837354972958565, -0.0025347149930894375, -0.0012630496639758348, 0.0031843327451497316, -0.00015863508451730013, 0.023269062861800194, 0.004493906628340483, 0.018499456346035004, 0.011476004496216774, 0.009704632684588432, 0.010366312228143215, 0.023517193272709846, 0.008250316604971886, 0.00497982744127512, 0.016473062336444855, -0.02972043864428997, 0.009587460197508335, 0.006816677283495665, -0.00621358398348093, -0.005403716117143631, 0.00484197773039341, -0.006041271612048149, -0.024702701717615128, -0.017658572643995285, -0.006954527460038662, 0.003997647203505039, -0.020980754867196083, -0.008422628976404667, -0.002398588228970766, -0.009766665287315845, -0.008636295795440674, 0.008787930943071842, 0.0028586622793227434, -0.00546230236068368, 0.01659712754189968, 0.006437590345740318, 0.021890563890337944, -0.0004704127786681056, 0.013909054920077324, -0.0033945536706596613, -0.01925763115286827, -0.005069429986178875, 0.008567371405661106, 0.020346645265817642, -0.0010959067149087787, 0.005868959240615368, 0.0109108192846179, 0.01570110395550728, -0.020139871165156364, -0.008994705975055695, -0.004921241197735071, 0.007933261804282665, -0.01917492039501667, -0.006103304214775562, -0.03755031153559685, -0.011138271540403366, -0.00022917546448297799, -0.03167790547013283, -0.02715642936527729, 0.0011312307324260473, -0.01614222303032875, 0.012089435942471027, -0.012372028082609177, 0.014791294001042843, 0.0004387503722682595, -0.0032653193920850754, 0.024730272591114044, 0.005141801200807095, -0.022497102618217468, -0.011744811199605465, 0.0051004462875425816, 0.0014060689136385918, -0.0046007405035197735, 0.014184754341840744, -0.011855090968310833, 0.009504750370979309, -0.00918080285191536, -0.007726486772298813, -0.006175675429403782, -0.01964361034333706, -0.010304279625415802, 0.010366312228143215, -0.03528957441449165, 0.012785578146576881, 0.01705203205347061, 0.00614810548722744, 0.0022107677068561316, -0.00497982744127512, 0.016169793903827667, 0.010669582523405552, -0.020167440176010132, -0.02384803257882595, 0.010104397311806679, 0.02018122561275959, 0.03526200354099274, -0.016831472516059875, 0.012303103692829609, 0.027776755392551422, -0.017176097258925438, -0.016445493325591087, 0.014543164521455765, 0.00486265541985631, 0.006458267569541931, -0.019147351384162903, 0.006003363057971001, 0.013123310171067715, 0.023599902167916298, -0.013474827632308006, 0.007533497177064419, 0.0037150548305362463, 0.004207868129014969, -0.010042364709079266, 0.04061058163642883, 0.024096162989735603, 0.011999833397567272, 0.005875851958990097, -0.004207868129014969, -0.013964194804430008, -0.008588048629462719, -0.0008710390538908541, -0.0321190282702446, -0.015163488686084747, 0.02074640989303589, -0.01640413887798786, 0.0011122763389721513, 0.01771371252834797, -0.022538458928465843, -0.014832649379968643, -0.005365807097405195, -0.012868287973105907, 0.021973274648189545, 0.0028500466141849756, 0.011710348539054394, 0.0019419604213908315, -0.006551316473633051, 0.00043401180300861597, -0.014874003827571869, 0.023641258478164673, 0.013922839425504208, 0.024826766923069954, -0.019505761563777924, -0.016914183273911476, -0.008353703655302525, -0.011641424149274826, 0.017589647322893143, -0.029582588002085686, -0.004893671255558729, -0.0009347946033813059, 0.011634531430900097, 0.004194083157926798, -0.008870640769600868, 0.0098149124532938, 0.02173892967402935, 0.007760949432849884, -0.018830295652151108, -0.015494328923523426, -0.02881062962114811, 0.006585779134184122, 0.025281671434640884, -0.004338825587183237, 0.00312057719565928, 0.026563676074147224, 0.015218628570437431, 0.02652231976389885, 0.003787426045164466, -0.0007784211775287986, -0.009663278236985207, 0.005458856001496315, -0.014860219322144985, 0.009635708294808865, 0.027225354686379433, -0.010490377433598042, 0.008539801463484764, -0.008746576495468616, 0.018030766397714615, -0.011786166578531265, 0.017865346744656563, 0.013054385781288147, 0.014363959431648254, -0.0033256288152188063, -0.01596301794052124, -0.013130202889442444, 0.003839119803160429, 0.021063463762402534, -0.01916113682091236, -0.0060964119620621204, 0.006392789073288441, 0.00982180517166853, 0.0104628074914217, -0.011283013969659805, 0.01399176474660635, 0.012461630627512932, 0.008140036836266518, 0.01825132593512535, 0.029031189158558846, -0.0026225943583995104, 0.004152728244662285, 0.010821216739714146, -0.031788185238838196, 0.003111961530521512, 0.0027208123356103897, 0.012068758718669415, 0.024096162989735603, 0.0017748174723237753, -0.003911491017788649, 0.003921829629689455, -0.002472682623192668, -0.027390774339437485, 0.00738186202943325, 0.018554596230387688, 0.020884260535240173, -0.0031223001424223185, 0.017548292875289917, -0.0055381194688379765, -0.004576616454869509, -0.009745988063514233, 0.006547870114445686, 0.006251493003219366, -0.004645541775971651, -0.00196263799443841, 0.011813736520707607, 0.01844431646168232, 0.006086072884500027, 0.0043078092858195305, 0.033993784338235855, 0.004138943273574114, 0.017823992297053337, -0.005131462588906288, 0.010724722407758236, -0.03460032492876053, 0.00812625139951706, -0.007278474513441324, -0.008974028751254082, 0.0022521226201206446, 0.0025502231437712908, -0.0009227327536791563, -0.017948057502508163, -0.0019367911154404283, 0.010511054657399654, 0.020677484571933746, 0.0352068655192852, -0.007278474513441324, -0.004859209060668945, 0.002903463551774621, -0.0036668074317276478, 0.020512064918875694, -0.01679011806845665, -0.003935614600777626, -0.01909221149981022, 0.011889553628861904, -0.002865554764866829, -0.008843070827424526, 0.013488613069057465, -0.0012897581327706575, 0.0036426836159080267, 0.016293857246637344, 0.011675886809825897, -0.008560478687286377, -0.013467934913933277, 0.01891300641000271, -0.0029465416446328163, -0.0007788519142195582, -0.019037071615457535, -0.013874592259526253, 0.012592588551342487, -0.008739683777093887, 0.0014319157926365733, -0.012689082883298397, -0.0306578166782856, -0.01248230878263712, -0.006092965602874756, 0.012778685428202152, -0.00019945157691836357, 0.013412795029580593, 0.02449592761695385, -0.02908632904291153, 0.0024881907738745213, -0.002129780827090144, -0.006120535545051098, -0.014529379084706306, 0.013426580466330051, 0.01435017492622137, 0.010393882170319557, -0.01982281543314457, -0.03382836654782295, -0.005762125831097364, -0.020208794623613358, -0.0015284107066690922, 0.006895941216498613, -0.006296294275671244, 0.024371862411499023, -0.01652820222079754, 0.0017851562006399035, -0.012172145769000053, 0.00026773035642690957, -0.00893956609070301, 0.0087603610008955, -0.003115407656878233, 0.011648316867649555, 0.0019316216930747032, 0.018940575420856476, -0.0014887788565829396, 0.0059275454841554165, 0.011799951083958149, -0.0049281339161098, 0.003430739277973771, 0.016555773094296455, 0.009670170024037361, -0.014295034110546112, 0.015204844065010548, 0.009311760775744915, -0.02468891628086567, 0.006365219131112099, -0.00889821071177721, 0.02431672252714634, -0.014791294001042843, 0.0006982958875596523, 0.011565606109797955, -0.023007148876786232, -0.018871651962399483, 0.012957890518009663, 0.013323192484676838, -0.0279835294932127, -0.015563253313302994, -0.012413383461534977, -0.017217451706528664, -0.00890510343015194, -0.017575861886143684, 0.0011915400391444564, -0.0055381194688379765, 0.01862352155148983, -0.015990588814020157, 0.002200429094955325, 0.010380097664892673, 0.0063583264127373695, 0.013316300697624683, -0.01779642142355442, 0.022331682965159416, -0.022621167823672295, -3.831258072750643e-05, 0.015466758981347084, -0.0038460122887045145, 0.017465582117438316, -0.028314368799328804, 0.02889333851635456, 0.005400269757956266, 0.0020798102486878633, -0.011917123571038246, -0.0025433306582272053, 0.01127612218260765, -0.01991930976510048, 0.0008154683164320886, 0.02796974405646324, -0.014432884752750397, 0.008932673372328281, -0.002448558807373047, 0.014722369611263275, 0.0031188540160655975, -0.03468303382396698, 0.015135918743908405, 0.007809196598827839, 0.013771205209195614, -0.011220981366932392, -0.02045692503452301, 0.004783391486853361, -0.008567371405661106, -0.005972346756607294, 0.0013784989714622498, 0.010297387838363647, -0.006410020403563976, -2.0340938135632314e-05, -0.011903339065611362, -0.0076851318590343, -0.001693830592557788, 0.006682273931801319, -0.022414393723011017, 0.0026932423934340477, 0.007175087463110685, -0.022952008992433548, -0.020939400419592857, -0.022979578003287315, -0.002291754586622119, 0.00949785765260458, -0.017176097258925438, -0.01586652360856533, -0.010428344830870628, -0.010683367028832436, 0.015894092619419098, 0.001773094292730093, 0.011386401951313019, -0.014212324284017086, -0.0023089859168976545, 0.018788941204547882, -0.005882744677364826, 0.007044130004942417, -0.0019333448726683855, 0.01335076242685318, -0.007754056714475155, -0.006954527460038662, -0.01371606532484293, 0.007126839831471443, -0.04016945883631706, 0.02264873869717121, 0.004621417727321386, 0.008284779265522957, 0.0019833154510706663, 0.010724722407758236, -0.0011975710513070226, -0.022359253838658333, 0.006837354972958565, 0.010938389226794243, -0.019147351384162903, 0.00014377314073499292, 0.009022275917232037, -0.002338278805837035, -0.007154409773647785, 0.012565018609166145, -0.01716231182217598, -0.010069935582578182, 0.023696398362517357, 0.012372028082609177, -0.009980333037674427, 0.010828109458088875, 0.00788501463830471, 0.0024847444146871567, 0.012820040807127953, -0.01732773147523403, -0.033276963979005814, -0.015480543486773968, 0.005634614732116461, -0.0017257083673030138, -0.017768852412700653, -0.0063307564705610275, 0.007271582260727882, -0.010476591996848583, 0.030492397025227547, -0.02569522149860859, 0.0050590913742780685, 0.01458451896905899, 0.000495398067869246, -0.006578886415809393, -0.0007331891683861613, 0.010869464837014675, 0.0006035240949131548, 0.014046904630959034, -0.0028948478866368532, 0.013833237811923027, 0.004566277842968702, 0.014026227407157421, 0.02081533521413803, 0.010938389226794243, 0.0020763641223311424, 0.020773978903889656, -0.009311760775744915, -0.018402962014079094, 0.028024883940815926, 0.0018782048719003797, -0.002357233315706253, -0.024261582642793655, -0.007567959371954203, -0.01889922097325325, -0.021435659378767014, -0.0007594667840749025, -0.003013743320479989, -0.012082543224096298, 0.006775322370231152, -0.011124487034976482, 0.012778685428202152, -0.023089857771992683, -0.008146928623318672, -0.03468303382396698, -0.008643188513815403, 0.0032773814164102077, 0.008980920538306236, 0.01771371252834797, 0.02110482007265091, 0.014929143711924553, -0.002700134878978133, -0.015356479212641716, 0.004373288247734308, 0.02423401176929474, -0.005103892646729946, 0.004387073218822479, -0.031512487679719925, 0.01435017492622137, 1.2135906217736192e-05, -0.00284315412864089, 0.012227285653352737, 0.014942929148674011, -0.006492730230093002, -0.01570110395550728, 0.0022107677068561316, -0.00967706274241209, 0.012372028082609177, 0.010862572118639946, 0.0008822393720038235, -0.0034600323997437954, 0.006244600284844637, 0.0035668660420924425, -0.0001549734442960471, 0.006613349076360464, 0.01523241400718689, 0.00935311522334814, -0.008346810936927795, 0.0018023874145001173, 0.012041188776493073, -0.02845221944153309, -0.0019092210568487644, 0.00844330620020628, 0.0060964119620621204, -0.005893083289265633, 0.022979578003287315, 0.01852702721953392, -0.017079602926969528, 0.0021470121573656797, -0.01417096983641386, -0.011503574438393116, -0.0014939482789486647, -0.01059376448392868, 0.012661512941122055, 0.010752292349934578, -0.01063511986285448, -0.012440953403711319, 0.006044717971235514, 0.026949655264616013, 0.009201481007039547, 0.017451796680688858, -0.016541987657546997, -0.016624698415398598, 0.010621334426105022, 0.007250904571264982, 0.0036840385291725397, -0.0049281339161098, -0.02063613012433052, -0.0019126672996208072, -0.01872001588344574, 0.01403312012553215, 0.020126085728406906, 0.002072917763143778, 0.022965792566537857, -0.007760949432849884, 0.004914348945021629, -0.007940154522657394, -0.002281415741890669, 0.005214172415435314, -0.0029741115868091583, 0.012385813519358635, 0.012227285653352737, 0.012316888198256493, -0.018926791846752167, 0.01586652360856533, -0.014391529373824596, -0.009559890255331993, 0.007905691862106323, -0.0010717830155044794, -0.012530555948615074, 0.007891906425356865, -0.00546230236068368, 0.000520814151968807, 0.013557537458837032, -0.006310079246759415, 0.0054829795844852924, 0.0153289083391428, 0.0029379259794950485, 0.007747164461761713, 0.01462587434798479, -0.004207868129014969, -0.004555939231067896, 0.007106162142008543, 0.01604572869837284, 0.0087603610008955, -0.006475498899817467, 0.026673955842852592, -0.005190048832446337, 0.002837984822690487, -0.004910902585834265, 0.017506936565041542, -0.012061866000294685, 0.0013405903009697795, 0.01063511986285448, -0.005307221319526434, 0.008877533487975597, 0.024178871884942055, 0.026549890637397766, -0.0029051867313683033, 0.004717912990599871, 0.010083720088005066, 0.016445493325591087, -0.007726486772298813, 0.008994705975055695, -0.01787913218140602, 0.02110482007265091, -0.03744003176689148, -0.0012975122081115842, -0.00954610574990511, 0.00889821071177721, -0.01898193173110485, 0.01137261651456356, -0.00669605890288949, -0.008215853944420815, -0.0010399051243439317, 0.00908430851995945, 0.022069768980145454, 0.005348576232790947, 0.0021590739488601685, -0.017548292875289917, -0.03054753690958023, 0.01826511137187481, 0.025460876524448395, 0.006654703989624977, 0.028865769505500793, -0.002898294012993574, -0.00936000794172287, -0.01550811342895031, 0.0024812982883304358, -0.014053797349333763, 0.030795667320489883, -0.0181686170399189, 0.018458101898431778, -0.017865346744656563, -0.016376568004488945, -0.008381273597478867, -0.004542154259979725, -0.01670740731060505, -0.014081367291510105, 0.0016498910263180733, 0.012068758718669415, -0.008319240994751453, 0.007416324689984322, -0.008015971630811691, -0.0337456539273262, 0.00545540964230895, -0.01293721329420805, -0.013150880113244057, -0.03589611500501633, 0.01670740731060505, 0.01607329770922661, -3.917414142051712e-05, 0.0036151136737316847, -0.005648399703204632, 0.003501387545838952, 0.004773052874952555, 6.394404294951528e-08, -0.016018157824873924, -0.012537448666989803, -0.007940154522657394, -0.010614442639052868, -0.013654032722115517, 0.004511137958616018, -0.006451375316828489, 0.003189502051100135, -0.020663699135184288, 0.016445493325591087, 0.010662689805030823, -0.011861983686685562, 0.007505927234888077, 0.025915781036019325, 0.010511054657399654, -0.004025217145681381, -0.00031317773391492665, 0.035923682153224945, 0.015480543486773968, -0.030961086973547935, -0.021215099841356277, 0.01183441374450922, -0.0021556278225034475, -0.013454150408506393, -0.0012940659653395414, 0.007616207003593445, -0.005345129873603582, 0.026494750753045082, 0.0042388844303786755, -0.0004928134148940444, -0.0066650426015257835, -0.010262925177812576, -0.014543164521455765, 0.006758091505616903, -0.0069579738192260265, 0.0004807515360880643, -0.006044717971235514, -0.004342271946370602, -0.01943683624267578, -0.0001835126749938354, -0.00798150897026062, -0.016128437593579292, -0.009311760775744915, 0.01789291761815548, -0.01127612218260765, -0.025833070278167725, 0.009670170024037361, 0.021945703774690628, -0.020139871165156364, 0.003939060959964991, 0.005806927103549242, -0.023737752810120583, 0.011731026694178581, 0.016817687079310417, 0.0018695892067626119, -0.008519123308360577, 0.004087249282747507, -0.010828109458088875, -0.004455998074263334, 0.020139871165156364, 0.008215853944420815, -0.019505761563777924, 0.0008059911197051406, -0.007161302492022514, 0.011565606109797955, -0.001819618628360331, 0.01990552619099617, -0.004331932868808508, -0.00325842690654099, 0.01398487202823162, -0.002503698691725731, -0.017272591590881348, -0.005882744677364826, -0.00552778085693717, -0.0014922252157703042, -0.007905691862106323, -0.0015783814014866948, -0.03173304721713066, 0.013081955723464489, -0.00639968179166317, 0.007788519375026226, 0.005128016229718924, 0.007499034516513348, 0.006175675429403782, -0.01735530234873295, 0.020787764340639114, 0.01622493378818035, -0.014239894226193428, -0.013288729824125767, 0.002672564936801791, -0.014391529373824596, 0.022276543080806732, -0.008932673372328281, -0.00568630825728178, 0.004759267903864384, -9.982001756725367e-06, 0.011186519637703896, -0.0027294280007481575, 0.002750105457380414, -0.021780284121632576, 0.019850386306643486, 0.02955501899123192, 0.020139871165156364, -0.007195764686912298, 0.013019923120737076, 0.002825923031195998, -0.013323192484676838, -0.006086072884500027, 0.0012397875543683767, -0.012661512941122055, 0.01412961445748806, 0.0035392960999161005, 0.015797598287463188, -0.0016981384251266718, 0.017672356218099594, -0.013957302086055279, 0.009297975338995457, -0.0019522991497069597, -0.016569558531045914, -0.003018912859261036, 0.018595950677990913, 0.002450281986966729, -0.012992353178560734, 0.007505927234888077, -0.0061377668753266335, 0.0031102383509278297, -0.019946880638599396, -0.017589647322893143, 0.001023535500280559, 0.011882660910487175, -0.01120030414313078, -0.006895941216498613, -0.021614864468574524, 0.0074507868848741055, 0.008960243314504623, -0.013860807754099369, 0.027184000238776207, 0.011586284264922142, 0.0016929691191762686, -0.006682273931801319, -0.012516770511865616, -0.0074921417981386185, -0.0032119026873260736, -0.013405902311205864, 0.003897705813869834, -0.005358914844691753, -0.022869298234581947, 0.007161302492022514, 0.012172145769000053, 0.0028310923371464014, 0.015246198512613773, -0.0005522611318156123, -0.024923261255025864, 0.0023279401939362288, 0.005579474847763777, -0.04799933359026909, -0.016445493325591087, -0.006575440056622028, 0.001009750529192388, -0.011014207266271114, 0.007878121919929981, 0.013909054920077324, -0.005134908948093653, -0.006244600284844637, 0.003254980780184269, 0.012861395254731178, -0.017948057502508163, 6.413250957848504e-05, 0.012041188776493073, 0.019781460985541344, -0.002384803257882595, 0.020429354161024094, 0.012737330980598927, 0.013764312490820885, 0.006130874156951904, -0.019312771037220955, 0.005837943404912949, 0.01141397189348936, -0.012185931205749512, -0.0006190321873873472, -0.007126839831471443, 0.026632601395249367, -0.010655797086656094, -0.008015971630811691, -0.01725880801677704, 0.019133565947413445, 0.009201481007039547, -0.013660925440490246, 0.005651846062391996, 0.007319829426705837, 0.009966547600924969, -0.005713878199458122, -0.0021125497296452522, -0.010193999856710434, -0.011758596636354923, 0.00754728214815259, -0.004993612412363291, 0.005824158433824778, 0.018678661435842514, -0.016927966848015785, 0.0009115324355661869, -0.010566194541752338, 0.010745399631559849, -0.010766076855361462, 0.00515903253108263, -0.018871651962399483, 0.02019501104950905, -0.013013030402362347, -0.0031791632063686848, 0.006634026300162077, 0.00017037385259754956, 0.0012397875543683767, -0.028865769505500793, -0.02485433593392372, -0.02422022819519043, 0.011000421829521656, 0.02045692503452301, 0.01248230878263712, 0.01059376448392868, 0.0046834503300487995, -0.013502397574484348, 0.008491553366184235, -0.021159959957003593, 0.00843641348183155, -0.014515594579279423, -0.005724217277020216, -0.011034884490072727, 0.010428344830870628, 0.005193494725972414, -0.028093809261918068, 0.007629991974681616, -0.0073336148634552956, -0.001583550707437098, 0.03275313600897789, -0.005631168372929096, -0.006337649188935757, -0.0007435278967022896, 0.006933849770575762, -0.022979578003287315, -0.028672778978943825, -0.018209971487522125, -0.007092377170920372, 0.013426580466330051, -0.027032366022467613, -0.015108348801732063, 0.006365219131112099, 0.011145164258778095, -0.016211148351430893, -0.003115407656878233, 0.010469700209796429, 0.018099691718816757, -0.027308065444231033, 0.022497102618217468, 0.007623099256306887, 0.0038632433861494064, -0.023048503324389458, 0.0044318740256130695, -0.007154409773647785, 0.006699505262076855, -0.012502986006438732, -0.0004344425688032061, 0.023792892694473267, -0.004604186862707138, 0.005007397383451462, 0.015108348801732063, 0.007774734403938055, -0.013784989714622498, 0.0028690011240541935, -0.009435825981199741, 0.006489283870905638, -0.009284190833568573, -0.0011725857621058822, 0.011717241257429123, -0.0003364399017300457, -0.010490377433598042, -0.02183542400598526, -0.002672564936801791, -0.00826410111039877, -0.002725981641560793, 0.00017651249072514474, 0.015246198512613773, 0.010710936971008778, 0.016762547194957733, -0.007395647000521421, -0.01899571530520916, 0.01778263784945011, 0.002434773836284876, -0.02603984624147415, -0.026439610868692398, -0.0005203833570703864, -0.025460876524448395, -0.0016059513436630368, -0.017465582117438316, 0.007561067119240761, -0.01659712754189968, 0.018871651962399483, 0.0044043040834367275, 0.026742881163954735, 0.0023262170143425465, -0.023655042052268982, -0.010042364709079266, -0.007126839831471443, 0.014556949026882648, -0.008401951752603054, -0.006120535545051098, 0.01916113682091236, 0.012875180691480637, 0.0025950244162231684, 0.0037839796859771013, 0.020580990239977837, -0.01578381285071373, 0.020773978903889656, 0.011951586231589317, -0.025750361382961273, -0.007147517055273056, 0.00798840168863535, -0.023144997656345367, -0.0010269817430526018, -0.015590823255479336, 0.013957302086055279, 0.0034583094529807568, -0.008974028751254082, 0.0034703712444752455, 0.012068758718669415, 0.016128437593579292, -0.017961841076612473, -0.007181979715824127, -0.005303774960339069, -0.007016560062766075, 0.038846101611852646, 0.009918300434947014, -0.0126132657751441, -0.007657561916857958, 0.010476591996848583, -0.026205265894532204, 0.006478945259004831, 0.007636884227395058, -0.005283097270876169, -0.0021366735454648733, -0.0023779107723385096, -0.010338742285966873, 0.005569135770201683, 0.008408843539655209, -0.024744056165218353, -0.005617383401840925, -0.006079180631786585, 0.0006995882140472531, -0.004910902585834265, 0.005617383401840925, 0.013061277568340302, -0.011758596636354923, -0.00816760677844286, 0.02081533521413803, 0.009449610486626625, 0.014846433885395527, -0.0153702637180686, 0.008071111515164375, -0.007430109661072493, -0.007967724464833736, -0.005517442245036364, -0.003983862232416868, -0.02889333851635456, 0.011924016289412975, -0.006320417858660221, 0.015949232503771782, 0.004125158302485943, 0.008849963545799255, 0.014281249605119228, 0.010166429914534092, 0.006920064799487591, -0.01698310673236847, 3.360091432114132e-05, 0.008601834066212177, -0.03038211725652218, -0.014322604984045029, 0.025626296177506447, 0.002958603436127305, 0.008188284002244473, -0.006068842019885778, -0.008960243314504623, -0.027721615508198738, -0.02881062962114811, -0.016748763620853424, -0.02348962239921093, 0.022952008992433548, 0.021614864468574524, -0.006361772771924734, -0.01982281543314457, 0.007368077058345079, -0.021394304931163788, 0.0053795925341546535, 0.014818863943219185, 0.03418677672743797, -0.013357655145227909, 0.012516770511865616, 0.005352022126317024, 0.01169656403362751, 0.003148147137835622, 0.02459242194890976, 0.009752880781888962, -0.02707372047007084, 0.0006621102802455425, -0.001499979174695909, -0.020677484571933746, 0.0018334037158638239, -0.022331682965159416, -0.009146341122686863, -0.011758596636354923, 0.01825132593512535, 0.004118265584111214, -0.006954527460038662, 0.023723967373371124, -0.0066788275726139545, -0.019946880638599396, 0.010035472922027111, -0.020884260535240173, 0.004397411830723286, 0.00215735100209713, -0.00802975706756115, -0.014860219322144985, 0.0034479706082493067, -0.014984283596277237, 0.005972346756607294, -0.01477750949561596, 0.0057793571613729, -0.02358611859381199, -0.009104985743761063, 0.0069717587903141975, 0.009890730492770672, 0.017755066975951195, 0.0018213418079540133, 0.002462343778461218, -0.005996470805257559, -0.013791882432997227, -0.016390353441238403, 0.0010950451251119375, -0.0021831977646797895, 0.008498446084558964, 0.0065271928906440735, -0.0023451715242117643, 0.010228462517261505, 0.009945870377123356, -0.0020643023308366537, -0.006299740169197321, 0.025378165766596794, -0.002291754586622119, -0.00045835092896595597, 0.007312937173992395, -0.0039321682415902615, 0.007898799143731594, 0.0031688245944678783, 0.018954360857605934, 0.002093595452606678, 0.01395040936768055, 0.001444839290343225, -0.0029293103143572807, 0.012551233172416687, -0.006785661447793245, 0.0003769333125092089, 0.018306465819478035, -0.0006018009735271335, -0.01275111548602581, 0.012385813519358635, -0.002477851929143071, -0.0005565689643844962, 0.0025709006004035473, -0.015425403602421284, 0.003093007020652294, -0.015907878056168556, -0.014460454694926739, 0.013771205209195614, 0.02983071841299534, 0.00972531083971262, 0.0322844460606575, -0.008891318924725056, -0.00667538121342659, 0.02394452691078186, 0.0012570187682285905, 0.0025726237799972296, 0.006589225027710199, 0.004673111718147993, -0.0013543752720579505, 0.014708584174513817, 0.003556527430191636, 0.021504584699869156, -0.019202491268515587, 0.028011100366711617, -0.011724133975803852, -0.0037322859279811382, 0.01417096983641386, -0.006024040747433901, 0.006334202829748392, 0.008512231521308422, 0.01170345675200224, -0.02099454030394554, 0.00042539616697467864, 0.006937296129763126, -0.023558547720313072, 0.0044043040834367275, -0.0007586052524857223, -0.005403716117143631, -0.03413163498044014, -0.002839708002284169, 0.014184754341840744, 0.01137261651456356, -0.005596705712378025, -0.0015525345224887133, -0.010697152465581894, 0.006544423755258322, 0.01577002927660942, 0.006410020403563976, 0.009249728173017502, 0.009842482395470142, -0.019243845716118813, 0.010393882170319557, -0.0046834503300487995, -0.003773641074076295, -0.004194083157926798, -0.004090695641934872, -0.007678239606320858, 0.025102466344833374, 0.008608725853264332, -0.013977979309856892, -0.01753450743854046, -0.00036271754652261734, -0.004156174603849649, -0.003310120664536953, -0.03468303382396698, -0.0043767341412603855, 0.0024640669580549, 0.0010855679865926504, -0.026632601395249367, -0.005920653231441975], "7c42db89-d590-4f93-9be4-b85a62312c04": [-0.02588328719139099, -0.021055391058325768, -0.008971239440143108, 0.03986256569623947, -0.029241196811199188, 0.00923064909875393, 0.014699862338602543, 0.033290863037109375, -0.0018735118210315704, -0.0030372508335858583, -0.006297882180660963, 0.025105059146881104, -0.006225823890417814, -0.03334851190447807, 0.001086276606656611, 0.011341952718794346, -0.0060528842732310295, 0.0025976961478590965, 0.008041689172387123, -0.0440995879471302, 0.0633535236120224, -0.01458456926047802, -0.019181879237294197, -0.005476419348269701, 0.0158527921885252, -0.003548863809555769, -0.037124358117580414, 0.0034587911795824766, -0.016775136813521385, -0.005253038834780455, 0.019441287964582443, 0.010549312457442284, 0.029241196811199188, -0.004074888303875923, -0.012458853423595428, -0.0023797203321009874, 0.011637390591204166, -0.0004985522828064859, -0.04874012991786003, -0.03553907945752144, -0.03548143059015274, 0.016847195103764534, -3.8112004403956234e-05, 0.0002817023196257651, -0.05502360314130783, 0.008322715759277344, 0.049057185649871826, -0.02795856073498726, -0.010614165104925632, 0.010578135959804058, 0.026935335248708725, 0.009655791334807873, -0.027540624141693115, 0.008791093714535236, 0.032599106431007385, -0.027425330132246017, -0.010189021937549114, 0.03458791226148605, 0.005119731184095144, -0.0820886418223381, -0.0008624459733255208, 0.014325159601867199, 0.003793861484155059, -0.028866494074463844, 0.01041240245103836, -0.00853168498724699, 0.010556519031524658, -0.02091127447783947, -0.028145913034677505, -0.031417351216077805, 0.02021951600909233, 0.01333796326071024, -0.04764484614133835, -0.0022103837691247463, 0.004961203318089247, -0.055398304015398026, 0.05366890877485275, -0.010239462368190289, -0.002170751802623272, -0.004745028913021088, -0.01974393241107464, 0.018490120768547058, 0.04355194419622421, -0.037585530430078506, 0.03974727541208267, 0.015550147742033005, -0.006251044105738401, -0.03115794248878956, -0.006632952485233545, 0.018677471205592155, 0.005180981010198593, 0.012516500428318977, -0.015982497483491898, -0.009028885513544083, -0.00026031004381366074, -0.00023328825773205608, -0.005613329820334911, 0.030639125034213066, 0.014375600032508373, 0.010275491513311863, 0.0020428483840078115, 0.021934499964118004, -0.03208028897643089, 0.005263847764581442, 0.006838317960500717, 0.00014040079258847982, 0.01769748143851757, 0.0031525439117103815, -0.013107377104461193, 0.014815155416727066, 0.017611011862754822, -0.0442437008023262, -0.012257090769708157, -0.013309139758348465, -0.02402418665587902, -0.0509018748998642, 0.004319885745644569, -0.002657144097611308, -0.01592485047876835, -0.045886628329753876, 0.004413561429828405, 0.027987385168671608, -0.002320272382348776, 0.007400371599942446, 0.010664605535566807, -0.003937977831810713, 0.032599106431007385, -0.009662997908890247, 0.019815990701317787, -0.0034677982330322266, 0.0014033324550837278, 0.004853116348385811, 0.021689502522349358, 0.042139604687690735, -0.014973683282732964, 0.010859162546694279, 0.0319073460996151, 0.03314674645662308, -0.049230124801397324, 0.07545929402112961, -0.04064079374074936, -0.0318497009575367, 0.02406742051243782, 0.019830401986837387, -0.011695037595927715, -0.0072526526637375355, -0.021819207817316055, 0.023015372455120087, -0.0030786844436079264, 0.02781444415450096, -0.07165462523698807, -0.01493044849485159, -0.0005845717387273908, -0.009706232696771622, 0.004467605147510767, -0.01713542826473713, -0.001231293543241918, 0.017394836992025375, 0.00044721088488586247, 0.014959271065890789, 0.016818370670080185, -0.044070761650800705, 0.006625746842473745, 0.01955658197402954, 0.0314750000834465, 0.021127449348568916, 0.06260412186384201, 0.0026229165960103273, -0.010477254167199135, 0.013092965818941593, 0.01520426943898201, -0.011990475468337536, 0.014678244479000568, -0.026286812499165535, -0.006103325169533491, -0.021747149527072906, 0.038334935903549194, 0.01714983955025673, 0.02843414433300495, -0.02094009704887867, -0.02912590280175209, -0.0032336092554032803, -0.040266092866659164, -0.021257152780890465, 0.005310685373842716, -0.0028589069843292236, -0.011341952718794346, 0.02856384962797165, 0.02082480490207672, 0.012221061624586582, -0.032656751573085785, 0.0014321557246148586, 0.005263847764581442, -0.011695037595927715, 0.007602134719491005, -0.005180981010198593, -0.02288566716015339, 0.00827948097139597, 0.01520426943898201, 0.027093863114714622, -0.01720748469233513, -0.056983582675457, -0.04254313185811043, 0.03559672459959984, -0.017366014420986176, 0.021285977214574814, -0.0030786844436079264, -0.04176490381360054, 0.015103387646377087, -0.028866494074463844, 0.05136304721236229, -0.04484898969531059, 0.021920088678598404, 0.0057322257198393345, -0.014281924813985825, 0.023880070075392723, -0.04196666553616524, 0.05568653717637062, -0.019138643518090248, -0.017438070848584175, -0.028751200065016747, 0.018057771027088165, -0.014757508412003517, -0.010823133401572704, -0.04796190187335014, -0.00778227997943759, -0.018807176500558853, 0.04997953027486801, -0.021127449348568916, 0.0028426938224583864, 0.006737436633557081, 0.007310299202799797, -0.0020176281686872244, -0.03499143570661545, -0.015622206032276154, 0.033262040466070175, -0.007558899465948343, 0.023563014343380928, -0.017899243161082268, 0.0027183936908841133, 0.016789548099040985, 0.040323738008737564, 0.02536446787416935, 0.004431576002389193, 0.023073019459843636, 0.0222515556961298, 0.020623041316866875, 4.521226401266176e-06, -0.010030494071543217, -0.003157948376610875, 0.00041095662163570523, 0.01782718487083912, 0.021920088678598404, 0.005335905589163303, -0.02462947554886341, 0.009821525774896145, -0.027367684990167618, -0.01831718161702156, 0.019772754982113838, -0.0037578323390334845, 0.00570340221747756, 0.026243576779961586, 0.02030598558485508, 0.02986089698970318, 0.06571703404188156, -0.0014934050850570202, 0.012141797691583633, -0.0052242157980799675, 0.010996073484420776, 0.029659133404493332, -0.010275491513311863, 0.010016082786023617, 0.014901624992489815, -0.01962863840162754, 7.948914571898058e-05, -0.0024499769788235426, -0.04614603891968727, 0.023692719638347626, -0.0014573760563507676, -0.018230712041258812, -0.015247504226863384, 0.0008525379817001522, 0.021372446790337563, -0.014959271065890789, -0.002460785675793886, -0.025508584454655647, -0.03277204558253288, 0.03611554205417633, -0.023116253316402435, -0.008690212853252888, 0.02148773893713951, 0.005051276180893183, 0.055427126586437225, -0.009497263468801975, 0.07816867530345917, -0.009915200993418694, -0.010570930317044258, -0.022035380825400352, -0.0509018748998642, -0.011154601350426674, 4.455782982404344e-05, -0.006600526161491871, -0.011875182390213013, -0.004226210527122021, 0.001232194365002215, -0.025609465315937996, 0.07672751694917679, 0.03623083606362343, -0.046001922339200974, 0.005177377723157406, 0.044013116508722305, -0.022554200142621994, -0.006715819239616394, -0.006787877529859543, 0.024975353851914406, 0.003692980157211423, 0.0019203496631234884, -0.021689502522349358, -0.017942478880286217, -0.0378449372947216, 0.003790258662775159, -0.01270385179668665, -0.014829566702246666, -0.009086532518267632, 0.05623417720198631, -0.020781569182872772, 0.01964305154979229, 0.0022301997523754835, 0.008221834897994995, -0.01521868072450161, -0.006780671887099743, 0.0028210764285176992, 0.0004260437854100019, 0.002749018371105194, -0.02777121029794216, -0.009554910473525524, -0.04190901666879654, -0.06836877018213272, -0.034472618252038956, -0.010844751261174679, -0.008380362764000893, -0.01493044849485159, 0.01704895682632923, -0.028246793895959854, 0.03274322301149368, -0.014519716612994671, 0.011298717930912971, 0.002048252848908305, -0.018605412915349007, 0.023073019459843636, 0.0009817922255024314, -0.010707840323448181, 0.028290027752518654, 0.023318016901612282, 0.03885375335812569, 0.004064079374074936, -0.01397207472473383, 0.007112139370292425, -0.003404747461900115, -0.010167405009269714, 0.02594093233346939, -0.0011069932952523232, -0.041563138365745544, 0.006031266879290342, 0.01272546872496605, 0.03248381242156029, -0.020522160455584526, -0.020118635147809982, -0.024831237271428108, 0.03046618402004242, -0.02716592140495777, -0.008949621580541134, -0.01893688179552555, -0.004237018991261721, -0.00020649163343477994, -0.0189224686473608, 0.05000835284590721, 0.0032768442761152983, -0.018576590344309807, 0.02471594512462616, 0.00853168498724699, -0.028664730489253998, 0.029255608096718788, 0.008668594993650913, 0.014065749943256378, 0.017942478880286217, 0.003912757616490126, -0.003572282614186406, -0.020161869004368782, 0.0009475646656937897, -0.03556790202856064, -0.022510964423418045, 0.0046261330135166645, -0.027727974578738213, -0.019412465393543243, 0.009547704830765724, -0.022438907995820045, -0.026330046355724335, -0.0061393543146550655, -0.037643175572156906, 0.007104933261871338, 0.01334516890347004, 0.001110596233047545, 0.0006471722153946757, -0.02088245190680027, -0.03303145617246628, -0.0443589948117733, -0.01453412789851427, 0.01361178420484066, 0.025710346177220345, 0.031244412064552307, -0.0022049793042242527, 0.02718033269047737, 0.012293119914829731, 0.055427126586437225, -0.014959271065890789, 0.02653180994093418, 0.03608671948313713, -0.03037971444427967, -0.004827895667403936, 0.05972179397940636, 0.049230124801397324, -0.029428547248244286, 0.010981661267578602, -0.00459370668977499, -0.0023635071702301502, 0.032627929002046585, 0.002239207038655877, 0.026920923963189125, -0.0222659669816494, -0.025148293003439903, 0.035193197429180145, 0.0024445727467536926, -0.007803897373378277, -0.0010223250137642026, -0.021992146968841553, 0.014570157043635845, 0.027655916288495064, -0.002338286954909563, 0.006737436633557081, -0.00918020773679018, 0.017510129138827324, -0.013597371987998486, 0.0014384607784450054, -0.002242809860035777, -0.0015114196576178074, 0.003696582978591323, 0.017466895282268524, 0.051651280373334885, 0.012112974189221859, 0.02284243330359459, 0.04326371103525162, -0.005595315247774124, 0.012062533758580685, 0.00820021703839302, 0.013813546858727932, -0.04868248477578163, -0.023937717080116272, 0.016861606389284134, -0.020017752423882484, -0.03594260290265083, -0.007007654756307602, -0.009050503373146057, -0.021213918924331665, 0.006856332533061504, -0.02986089698970318, 0.024543004110455513, 0.05585947632789612, 0.006164574529975653, 0.01174547802656889, -0.01298487838357687, -0.02403859794139862, -0.005613329820334911, 0.05240068584680557, 0.021170683205127716, -0.030754417181015015, -0.020435690879821777, -0.00410010851919651, -0.0379314087331295, -0.0065536885522305965, -0.004395546857267618, -0.04738543927669525, 0.0015825770096853375, 0.025695934891700745, -0.0009484653710387647, -0.010023288428783417, -0.0031687570735812187, -0.0220497939735651, 0.03481849655508995, -0.006355528719723225, 0.06773465871810913, -0.007450812496244907, 0.018778353929519653, 0.017481306567788124, -0.014375600032508373, -0.01043401937931776, -0.022035380825400352, -0.03110029548406601, -0.0009862958686426282, -0.05274656414985657, 0.04626132920384407, -0.04043903201818466, -0.023735953494906425, 0.028073854744434357, 0.004799072630703449, -0.008928004652261734, -0.049864236265420914, 0.01104651391506195, -0.03043736144900322, -0.038911398500204086, -0.024442123249173164, -0.007508459035307169, -0.013698253780603409, 0.002368911635130644, -0.0036335319746285677, -0.0030336480122059584, 0.0034155561588704586, 0.0158095583319664, 0.007681398652493954, 0.01550691295415163, 0.014901624992489815, -0.010059317573904991, 0.004431576002389193, 0.01654455065727234, -0.010023288428783417, -0.014512510970234871, -0.009446823038160801, -0.04874012991786003, 0.019210701808333397, -0.008373157121241093, 0.02337566390633583, 0.003406548872590065, -0.020522160455584526, 0.0017555166268721223, 0.02216508612036705, 0.0016267126193270087, -0.015665441751480103, -0.010441225953400135, 0.00142404914367944, 0.009086532518267632, -0.035740841180086136, 0.033838506788015366, 0.03404026851058006, 0.007094124797731638, -0.0041253287345170975, 0.02986089698970318, 0.004964806139469147, 0.009072120301425457, -0.01763983443379402, -0.0035074304323643446, -0.01827394589781761, 0.016112200915813446, -0.021127449348568916, 0.013691048137843609, 0.020680688321590424, -0.02735327184200287, -0.017956890165805817, -0.019873637706041336, -0.011918417178094387, 0.02465829811990261, -0.03043736144900322, -0.0009205428068526089, 0.006222221069037914, 0.0190809965133667, 0.0008304701768793166, -0.011997681111097336, 0.004899953957647085, 0.021055391058325768, -0.0011394195025786757, -0.0005174675607122481, 0.019325995817780495, -0.003012030618265271, -0.0003787556488532573, -0.019398054108023643, 0.02791532687842846, 0.009699027054011822, -0.02906825579702854, 0.01493044849485159, -0.04234136641025543, 0.004074888303875923, -0.008877563290297985, -0.026964157819747925, 0.00011686930520227179, -0.0015042137820273638, 0.0016384221380576491, 0.0013916229363530874, -0.025177117437124252, 0.008668594993650913, 0.008315510116517544, -0.024341242387890816, 0.0045252516865730286, 0.002963391365483403, 0.014699862338602543, -0.01173827238380909, -0.015622206032276154, 0.01638602279126644, -0.0029327666852623224, 0.018605412915349007, -0.012451647780835629, 0.008524478413164616, -0.013734282925724983, 0.007108536083251238, 0.03032206930220127, -0.011010484769940376, -0.013056936673820019, 0.0005561988218687475, 0.005793475080281496, -0.005364729091525078, -0.008582125417888165, 0.02908266894519329, -0.030898533761501312, 0.02919796109199524, 0.05614770948886871, -0.02477359026670456, 0.02795856073498726, -0.015463678166270256, -0.00041973870247602463, 0.02102656662464142, -0.017928067594766617, -0.012112974189221859, 0.026358870789408684, -0.015391619876027107, 0.07263461500406265, -0.02351977862417698, 0.01697690039873123, 0.01782718487083912, -0.014411629177629948, 0.006413175258785486, -0.017538953572511673, 0.00667618727311492, 0.02279919758439064, -0.011968858540058136, 0.01075107604265213, -0.019239526242017746, 0.009324324317276478, 0.01899452693760395, 0.02099774405360222, 0.03986256569623947, -0.03429967910051346, 0.0008241650648415089, -0.0126606160774827, -0.009014474228024483, -0.003550665220245719, 0.05554242059588432, -0.017293956130743027, -0.011644596233963966, 0.0026409311685711145, 0.0443589948117733, 0.02722356840968132, -0.0030066261533647776, -0.061797067523002625, -0.01140680443495512, -0.015276326797902584, 0.015002505853772163, 0.0038515080232173204, -0.018216298893094063, -0.01579514518380165, 0.017265131697058678, 0.030264422297477722, 0.025739170610904694, 0.044704873114824295, 0.012458853423595428, -0.00695000821724534, -0.013201052322983742, 0.014721479266881943, -0.0017582187429070473, 0.012141797691583633, 0.023029783740639687, 0.027454154565930367, 0.005159363150596619, 0.004399149678647518, -0.0003053463879041374, 0.01828835718333721, 0.0011934631038457155, 0.008683007210493088, 0.01712101511657238, 0.0025274395011365414, -0.008711829781532288, 0.038882575929164886, -0.0032930574379861355, -0.0055448743514716625, -0.014426041394472122, -0.04551192745566368, 0.030149128288030624, -0.027468565851449966, -0.011630184948444366, -0.0023310810793191195, 0.05018129199743271, -0.017351601272821426, 0.008020072244107723, 0.004741426091641188, 0.024860061705112457, 0.019196290522813797, -0.005933988373726606, -0.007313902024179697, 0.016890428960323334, 0.0016546351835131645, -0.030177952721714973, -0.014916036278009415, -0.012610175646841526, -0.013035318814218044, 0.0158816147595644, 0.01637161150574684, 0.0027580256573855877, -0.0037866556085646152, 0.0005251237307675183, -0.025710346177220345, -0.006218618247658014, 0.051103636622428894, 0.00034024956403300166, 0.041505493223667145, 0.023145077750086784, 0.004060476552695036, 0.006496042013168335, -0.01765424571931362, 0.04493546113371849, -0.009886377491056919, 0.040957849472761154, -0.002275235950946808, 0.01706336997449398, -0.006233029533177614, 0.041563138365745544, 0.01013858150690794, -0.0049431887455284595, -0.039689626544713974, 0.0069680227898061275, -0.010700634680688381, 0.01591043919324875, -0.0051233344711363316, 0.006452807225286961, 0.034501440823078156, -0.005357523448765278, 0.00015875310054980218, -0.008474037982523441, -0.03274322301149368, 0.019873637706041336, -0.007695809938013554, -0.026474162936210632, 0.047875434160232544, -0.015117798931896687, 0.015103387646377087, 0.02024833858013153, 0.02020510472357273, 0.000411181797971949, 0.005173774901777506, -0.0031795657705515623, -0.0018392842030152678, 0.02608504891395569, 0.02269831672310829, 0.005328699946403503, 0.010109758004546165, -0.011291511356830597, 0.047904256731271744, 0.012430030852556229, -0.018792765215039253, -0.005382743664085865, -0.0012141797924414277, -0.005851121619343758, 0.022482141852378845, 0.02099774405360222, -0.004388341214507818, 0.00729228463023901, -0.02017628215253353, -0.04066962003707886, 0.012667822651565075, 0.008863152004778385, 0.01173827238380909, 0.0632382333278656, 0.03357909619808197, 0.015391619876027107, 0.012444442138075829, -0.007094124797731638, -0.01898011565208435, 0.025580642744898796, 0.004496428184211254, -0.026416515931487083, 0.049230124801397324, -0.008293893188238144, -0.053553614765405655, -0.04631897807121277, -0.015132211148738861, -0.021660679951310158, 0.02841973304748535, 0.004853116348385811, 0.03551025316119194, -0.012566940858960152, 0.0318497009575367, 0.047846611589193344, -0.0001317312999162823, -0.0035650767385959625, -0.0026607471518218517, 0.0062438384629786015, -0.003145338036119938, -0.0024013377260416746, -0.02333242818713188, 0.005602520890533924, 0.006712216418236494, -0.05511007085442543, 0.01772630400955677, 0.002033841097727418, 0.03533731400966644, -0.01237238384783268, 0.028909727931022644, 0.027612682431936264, -0.0008903684793040156, -0.005480022169649601, 0.04225489869713783, 0.013056936673820019, -0.01650131493806839, 0.02654622122645378, -0.018807176500558853, 0.007537282072007656, -0.018259534612298012, 0.037182003259658813, 0.002239207038655877, -0.005890753585845232, 0.018072184175252914, 0.007050889544188976, 0.01202650461345911, -0.023058606311678886, 0.009482852183282375, 0.020767157897353172, 0.008589331060647964, 0.022626258432865143, -0.014843977987766266, -0.0056349472142755985, -0.007746250834316015, -0.013035318814218044, 0.012682233937084675, 0.008711829781532288, 0.0018518944270908833, 0.00309669878333807, -0.01697690039873123, 0.03744141384959221, 0.007818308658897877, -0.02088245190680027, -0.03490496799349785, -0.011586950160562992, -0.0221074391156435, 0.014771920628845692, -0.018835999071598053, -0.027050629258155823, -0.021185094490647316, 0.009309913031756878, -0.012898408807814121, -0.006009649485349655, 0.01485839020460844, 0.008776682429015636, 0.04816366732120514, 0.026214754208922386, 0.02471594512462616, -0.027036216109991074, -0.012602970004081726, 0.006402366328984499, -0.0022374053951352835, -0.008855946362018585, -0.03412673994898796, 0.028967374935746193, -0.0002729202387854457, 0.022482141852378845, 0.004197387024760246, 0.02272713929414749, -0.027987385168671608, -0.02281360886991024, -0.004334297496825457, -0.013582960702478886, -0.002462587086483836, -0.006485233083367348, -0.0002425207057967782, -0.0029147521127015352, -0.010880780406296253, 0.01459177490323782, 0.0220786165446043, 0.008027277886867523, 0.00953329261392355, -0.014173837378621101, -0.010924015194177628, 0.006863538641482592, -0.02780003286898136, -0.029976189136505127, 0.017394836992025375, 0.012696645222604275, -0.02144450508058071, 0.023635072633624077, -0.03657671436667442, 0.002999420277774334, 0.009598145261406898, -0.020738335326313972, -0.008229040540754795, -0.02592652104794979, 0.020666277036070824, 0.005577300675213337, -0.017899243161082268, -0.010996073484420776, 0.0025454540736973286, -0.016616608947515488, -0.01700572296977043, -0.01638602279126644, -0.010023288428783417, -0.02161744423210621, 0.006957214325666428, -0.015045741572976112, -0.021920088678598404, 0.0016150032170116901, -0.005991634912788868, -0.050959520041942596, 0.013410021550953388, 0.02797297202050686, 0.007746250834316015, 0.0111041609197855, 0.02468712069094181, -0.005775460507720709, 0.014829566702246666, -0.017366014420986176, 0.0126534104347229, 0.028016207739710808, 0.0012006688630208373, 0.009936818853020668, -0.026488574221730232, -0.011313129216432571, 0.0025778801646083593, 0.03366556763648987, 0.003811876056715846, -0.004273048136383295, -0.008618154563009739, -0.011911211535334587, 0.008214629255235195, 0.0008511868654750288, 0.0038226847536861897, 0.02536446787416935, -0.02285684458911419, 0.0014159425627440214, -0.004244225099682808, 0.020060988143086433, -0.003647943725809455, 0.0036083117593079805, 0.0032696384005248547, -0.015016918070614338, -0.009619763121008873, 0.002390529029071331, -0.002080678939819336, -0.026445340365171432, -0.02983207255601883, -0.021213918924331665, -0.015665441751480103, -0.014368394389748573, -0.0319073460996151, -0.005368331912904978, -0.006265455856919289, 0.005725019611418247, 0.000615646771620959, 0.026128284633159637, -0.025508584454655647, -0.030033836141228676, -0.011651802808046341, 0.01363340113312006, -0.00681670056656003, 0.012336354702711105, 0.00977829098701477, -0.0067482455633580685, -0.011723860166966915, -0.0028174736071377993, 0.030667947605252266, -0.0007043684017844498, 0.0017762333154678345, 0.029486194252967834, -0.04614603891968727, 0.007897572591900826, 0.0025166308041661978, 0.0034479822497814894, 0.0027201951015740633, -0.010008876211941242, 0.010664605535566807, 0.0005877242656424642, 0.011341952718794346, -0.017553364858031273, -0.007195006124675274, -0.023764776065945625, -0.01846129819750786, -0.003927168902009726, 0.04222607612609863, 0.03565436974167824, 0.004773852415382862, -0.03559672459959984, -0.022525377571582794, -0.0070689041167497635, -0.05277538672089577, 0.018490120768547058, 0.012048122473061085, -0.0158816147595644, 0.016904842108488083, -0.026791218668222427, 0.008445214480161667, -0.0030534639954566956, 0.02470153197646141, -0.002271633129566908, -0.01844688504934311, -0.012336354702711105, -0.013712665066123009, -0.013431638479232788, -0.02661827951669693, -0.023822423070669174, -0.007861543446779251, 0.02409624494612217, 0.0030264421366155148, 0.004204592667520046, 0.009612556546926498, -0.002073473297059536, 0.0221218504011631, -0.008978445082902908, -0.004507237114012241, 0.01173827238380909, -0.0190665852278471, -0.01763983443379402, -0.00954049825668335, 0.0319073460996151, -0.0057322257198393345, -0.07113580405712128, -0.03222440183162689, 0.03752788156270981, -0.039603158831596375, 0.0048170872032642365, -0.009684614837169647, -0.009626968763768673, -0.01235797256231308, 0.011529303155839443, -0.011781507171690464, -0.018533354625105858, 0.03441496938467026, 0.01208415161818266, -0.038997869938611984, -0.014058544300496578, 0.010016082786023617, 0.0020158267579972744, 0.0126245878636837, -0.020536571741104126, 0.0036299291532486677, -0.03107147291302681, 0.00819301139563322, -0.025537407025694847, 0.030149128288030624, -0.01461339183151722, -0.007731839083135128, 0.010196227580308914, 0.013165023177862167, -0.013085759244859219, 0.006787877529859543, -0.006290676072239876, -0.014476481825113297, 0.013446050696074963, 0.013936045579612255, -0.01051328331232071, 0.016746314242482185, 0.0027670329436659813, -0.010621370747685432, -0.0094612343236804, -0.0021635459270328283, -0.0032209991477429867, 0.008711829781532288, -0.018129829317331314, 0.005177377723157406, -0.019498934969305992, 0.004550471901893616, -0.02471594512462616, 0.0012448044726625085, -0.0005476419464685023, -0.01273267436772585, 0.007832720875740051, -0.0020194295793771744, -0.008099336177110672, 0.026848865672945976, 0.008481243625283241, -0.0007124749245122075, 0.009951230138540268, 0.009273883886635303, 0.030725594609975815, -0.01971510984003544, -0.006686996202915907, 0.040957849472761154, 0.005440390203148127, 0.01834600418806076, -0.019441287964582443, 0.005184583831578493, 0.01895129308104515, -0.009713438339531422, -0.00881991721689701, 0.005624138284474611, 0.007955219596624374, -0.019801579415798187, 0.014750302769243717, -0.012156209908425808, -0.016112200915813446, 0.0055448743514716625, 0.020752746611833572, 0.01297767274081707, -0.003383130067959428, -0.004179372452199459, 0.017466895282268524, 0.010318726301193237, -0.0010592547478154302, 0.0014780927449464798, -0.004370326641947031, 0.0014519717078655958, 0.0057322257198393345, 0.01898011565208435, 0.0047162058763206005, 0.012040916830301285, 0.013035318814218044, -0.018014537170529366, 0.022395672276616096, 0.03677847981452942, 0.0035596725065261126, -0.018619826063513756, -0.011241070926189423, 0.004676573909819126, -0.007227431982755661, -0.004186578560620546, 0.00828668661415577, -0.008236246183514595, -0.009475646540522575, 0.02095450833439827, 0.007097727619111538, -0.019426876679062843, 0.02144450508058071, -0.019398054108023643, -0.0008313708822242916, 0.02609946019947529, 0.009922406636178493, -0.0010466446401551366, 0.0379314087331295, 0.006481630261987448, -0.004298268351703882, 0.05562888830900192, 0.017221897840499878, 0.011248276568949223, 0.0037758469115942717, -0.0005413368344306946, 0.013237081468105316, -0.01895129308104515, 0.025191528722643852, 0.00019872286065947264, -0.007695809938013554, -0.007148168049752712, 0.009014474228024483, 0.012509294785559177, 0.003291255794465542, -0.023058606311678886, -0.019268348813056946, -0.005789872258901596, -0.029947366565465927, 0.007638163398951292, -0.0013195648789405823, 0.006431189831346273, 0.011313129216432571, -0.010196227580308914, 0.007883161306381226, -0.023577425628900528, -0.005501639563590288, 0.0011277099838480353, -0.02791532687842846, -0.04121726006269455, -0.01388560514897108, -0.01139959879219532, -0.00568899093195796, 0.015045741572976112, -0.017596598714590073, 0.010642988607287407, 0.012473265640437603, 0.006917582359164953, -0.00584031268954277, 0.008401979692280293, -0.010397990234196186, 0.015362797304987907, 0.03233969584107399, -0.029457369819283485, -0.017380425706505775, -0.013316345401108265, 0.012487676925957203, -0.01397928036749363, -0.0018140638712793589, 0.012401207350194454, -0.002893134718760848, 0.001088978722691536, 0.013640607707202435, -0.0079191904515028, 0.007313902024179697, -0.013784723356366158, 0.004507237114012241, 0.0019797976128757, 0.0019437684677541256, -0.03248381242156029, -0.007119345013052225, -0.018634237349033356, 0.00041658617556095123, -0.006474424619227648, 0.0038767282385379076, 0.0016285141464322805, -0.0059592085890471935, 0.00951888132840395, 0.001741104992106557, 0.0006237533525563776, 0.017293956130743027, 0.001013317727483809, -0.013366786763072014, -0.016933664679527283, -0.010801516473293304, -0.0002447725273668766, -0.0011754485312849283, -0.0005102617433294654, -0.0509306974709034, -0.03242616727948189, -0.0046261330135166645, 0.0010475453455001116, -0.014065749943256378, -0.007270667236298323, 0.020579807460308075, 0.011514891870319843, -0.015535736456513405, -0.0068419212475419044, -0.02656063251197338, 0.04603074491024017, 0.00020930639584548771, 0.01655896194279194, -0.013777517713606358, 0.01452692225575447, -0.027050629258155823, -0.026272401213645935, 0.0029579869005829096, 0.0222371444106102, 0.011435627937316895, -0.020017752423882484, 0.03043736144900322, -0.007652575150132179, 0.012134592048823833, -0.00032651348737999797, -0.01488721277564764, -0.021401269361376762, 0.009670203551650047, 0.009057709015905857, 0.0025310423225164413, 0.01398648601025343, -0.011723860166966915, 0.005026055965572596, -0.017928067594766617, 0.009216236881911755, -0.0072490498423576355, 0.010837545618414879, 0.014786331914365292, 0.009396382607519627, -0.010390784591436386, -0.0008138067205436528, -0.0026931732427328825, -0.014044133014976978, 0.0056385500356554985, 0.0030786844436079264, 0.015420443378388882, -0.021156271919608116, 0.029543841257691383, -0.002050054259598255, -0.008618154563009739, -0.036461424082517624, 0.027007393538951874, 0.014973683282732964, -0.02027716301381588, -0.05257362499833107, 0.0012916423147544265, 0.05015246942639351, 0.006683393381536007, 0.010289903730154037, 0.00981431920081377, -0.008942415937781334, 0.018706295639276505, 0.0014861993258818984, 0.04061197116971016, -0.027093863114714622, 0.02595534548163414, -0.010902397334575653, -0.03043736144900322, -0.004319885745644569, -0.0013438845053315163, -0.0024986162316054106, 0.006870744284242392, 0.020060988143086433, -0.011514891870319843, 0.0035812899004667997, 0.027050629258155823, 0.004157755058258772, 0.0019689889159053564, -0.011831947602331638, -0.01273267436772585, 0.025667112320661545, 0.016962487250566483, 0.006741039454936981, -0.003768641036003828, -0.021343622356653214, -0.007180594373494387, 0.013417227193713188, 0.033809684216976166, 0.02019069343805313, -0.005166569259017706, 0.006020458415150642, 0.011695037595927715, -0.0158527921885252, 0.000916939927265048, -0.034559085965156555, -0.015622206032276154, -0.005249436013400555, -0.003815478878095746, 0.0025940933264791965, -0.022914491593837738, -0.01840365119278431, -0.003984815441071987, 0.02154538594186306, 0.011428422294557095, 0.021372446790337563, -0.002585086040198803, 0.010527695529162884, -0.003819081699475646, -0.00778227997943759, -0.028765613213181496, 0.01141401007771492, 0.012754292227327824, 0.018562179058790207, -0.001693366444669664, -0.00506929075345397, 0.026257988065481186, 0.015622206032276154, -0.004427973181009293, -0.002749018371105194, 0.004651353228837252, -0.016803959384560585, 0.01168062537908554, -0.011889594607055187, -0.021127449348568916, 0.011615773662924767, -0.01488721277564764, -0.0013808142393827438, 0.000964678474701941, 0.0023526984732598066, 0.004741426091641188, 0.004082093946635723, -0.00028913331334479153, -0.0001857749157352373, -0.01893688179552555, -0.001961783040314913, 0.010599753819406033, -0.009655791334807873, -0.009605350904166698, 0.014555745758116245, -0.03490496799349785, 0.002295051934197545, 0.0009538697195239365, -0.012278708629310131, 0.0190377626568079, 0.013201052322983742, -0.016270728781819344, -0.023245958611369133, -0.03334851190447807, -0.0111401891335845, 0.025220351293683052, -0.00556649174541235, -0.04311959445476532, 0.007551693823188543, -0.007609340362250805, -0.003042655298486352, 0.003211991861462593, -0.044618405401706696, -0.030783239752054214, 0.02144450508058071, 0.00618619192391634, -0.00016134270117618144, 0.03288733959197998, 0.004539663437753916, 0.006279867608100176, 0.001065559801645577, -0.007717427797615528, 4.0110491681843996e-05, 0.016097789630293846, 0.003402946051210165, -0.002289647702127695, 0.030120305716991425, -0.004399149678647518, 0.017452483996748924, -0.01325149368494749, 0.01270385179668665, 0.025551818311214447, -0.00889918114989996, 0.007050889544188976, 0.01774071529507637, 0.002925560809671879, 0.021905677393078804, 0.01102489698678255, 0.02279919758439064, 0.00695361103862524, 0.04384017735719681, -0.010549312457442284, -0.03458791226148605, -0.025681523606181145, -0.014548540115356445, 0.0002319371560588479, -0.0022554199676960707, 0.00695000821724534, 0.023635072633624077, 0.016097789630293846, -0.013193846680223942, -0.0003951938997488469, -0.010851956903934479, 0.008783888071775436, -0.0381619930267334, 0.01272546872496605, 0.0020698702428489923, -0.01595367304980755, 0.011904005892574787, 0.00166904681827873, -0.002797657623887062, 0.004197387024760246, 0.015982497483491898, 0.0043090772815048695, 0.011594155803322792, -0.05116128548979759, -0.036519069224596024, -0.02148773893713951, 0.008322715759277344, -0.0028589069843292236, 0.014685450121760368, -0.023202722892165184, -0.017423659563064575, -0.00046702686813659966, 0.016919253394007683, 0.005804283544421196, 0.001110596233047545, 0.001351090264506638, 0.010570930317044258, -0.02161744423210621, 0.029241196811199188, -0.031359706073999405, 0.006261853035539389, 0.013727077282965183, 0.019931282848119736, 0.005923179909586906, 0.011918417178094387, 0.02608504891395569, 0.04069844260811806, 0.005429581273347139, 0.006452807225286961, -0.00744360638782382, -0.028088266029953957, 0.012956054881215096, 0.013712665066123009, -0.004748631734400988, 0.0032678369898349047, -0.042831361293792725, -0.01706336997449398, -0.006128545384854078, 0.023245958611369133, 0.0026697544381022453, -0.003354306798428297, -0.012963260523974895, 0.0253068208694458, 0.016746314242482185, 0.001400630222633481, 0.007796691730618477, 0.009641380049288273, -0.009057709015905857, 0.005278259515762329, -0.0017690275562927127, 0.03726847469806671, -0.012956054881215096, 0.01575191132724285, 0.026157107204198837, 0.0003575885493773967, 0.030639125034213066, -0.016184259206056595, 0.009245060384273529, 0.00045644331839866936, 0.00881271157413721, -0.006762657314538956, -0.009915200993418694, -0.017265131697058678, 0.012314737774431705, -0.01719307340681553, 0.012350765988230705, -0.0071553741581737995, 0.005966414697468281, -0.009468440897762775, 0.0053178914822638035, 0.02986089698970318, 0.014108985662460327, -0.03219557926058769, 0.008956828154623508, 0.00042041426058858633, 0.01049887202680111, -0.0044387816451489925, 0.01521868072450161, -0.008574919775128365, -0.03608671948313713, 0.010016082786023617, 0.03285851702094078, 0.008517272770404816, 0.0031219192314893007, 0.013179435394704342, -0.015651030465960503, 0.008776682429015636, 0.020435690879821777, -0.008488450199365616, 0.0006926589412614703, 0.006398763507604599, -0.014418834820389748, -0.015607794746756554, -0.020032165572047234, 0.00506929075345397, 0.0027670329436659813, -0.01762542314827442, 0.0034912172704935074, -0.01964305154979229, 0.013244287110865116, -0.007703016046434641, -0.00744360638782382, -0.01173106674104929, -0.015319562517106533, 0.003525444772094488, 0.0025238366797566414, -0.018864823505282402, 0.0026769600808620453, 0.007530076429247856, -0.004676573909819126, 0.038450226187705994, -0.0017780348425731063, 0.03308910131454468, 0.0021671487484127283, 0.009374764747917652, 0.0021167080849409103, -0.010448431596159935, -0.0022049793042242527, 0.02017628215253353, -0.005580903496593237, 0.021127449348568916, 0.022006558254361153, -0.004395546857267618, -0.024269184097647667, -0.016760725528001785, -0.001929356949403882, -0.024398889392614365, 0.03375203534960747, 0.0158527921885252, 0.02094009704887867, -0.03525084629654884, -0.011579744517803192, 0.012682233937084675, 0.0021365240681916475, -0.005901562049984932, -0.0020230324007570744, -0.007277872879058123, 0.0222371444106102, -0.004636941943317652, -0.007796691730618477, 0.007378754206001759, -0.0011295115109533072, -0.007753456477075815, 0.009490057826042175, -0.029947366565465927, -0.004384738393127918, 0.0022193908225744963, 0.0019707903265953064, -0.008466832339763641, -0.019772754982113838, -0.002830083714798093, -0.0026715558487921953, -0.006124942563474178, -0.0014429644215852022, 0.006060090381652117, 0.018216298893094063, 0.015146622434258461, -0.005159363150596619, -0.006625746842473745, 0.018735118210315704, -0.010981661267578602, -0.004298268351703882, 0.0011970659252256155, 0.008848740719258785, 0.005530462600290775, 0.003923566080629826, 0.02839091047644615, 0.0053250971250236034, 0.007998454384505749, 0.006016855128109455, -0.01700572296977043, -0.012401207350194454, -0.008387568406760693, 0.013078553602099419, -0.01424589566886425, -0.002556262770667672, 0.005944797303527594, 0.014685450121760368, 0.007875955663621426, -0.013683842495083809, -0.05142069235444069, 0.016342787072062492, 0.005890753585845232, 0.0024968148209154606, -0.007018463686108589, 0.01645808108150959, 0.01556455995887518, -0.03248381242156029, -0.03245498985052109, 0.006092516239732504, 0.0018149645766243339, 0.024211537092924118, -0.006640158127993345, -0.0011880587553605437, 0.01776953972876072, 0.004381135571748018, -0.002419352298602462, -0.01838923990726471, -0.010369167663156986, -0.017899243161082268, 0.0033633140847086906, 0.0039631980471313, -0.02164626680314541, 0.015521325170993805, 0.016025731340050697, 0.017971301451325417, 0.0025904905050992966, 0.004921571351587772, -0.004925174172967672, 0.012797527015209198, -0.022583022713661194, -0.007803897373378277, 0.006683393381536007, -0.00855330191552639, 0.018475709483027458, 0.0016501315403729677, -0.022568611428141594, -0.02719474397599697, -0.019484523683786392, -0.005746637471020222, 0.015406032092869282, 0.018187476322054863, 0.026805629953742027, -0.014000898227095604, 0.0002920606639236212, -0.0017266933573409915, -0.020565396174788475, -0.003568679792806506, -0.007753456477075815, -0.0009826929308474064, -0.0319073460996151, -0.0025796815752983093, -0.020147457718849182, 0.013597371987998486, 0.0068743471056222916, -0.0023004563990980387, -0.020104223862290382, 0.004687382373958826, 0.005188186652958393, -0.017942478880286217, 0.023966539651155472, 0.029630310833454132, -0.011147395707666874, 0.0315902903676033, 0.011824741959571838, 0.01771189272403717, 0.01843247376382351, -0.005379140842705965, -0.0158383809030056, -0.016674255952239037, 0.014418834820389748, 0.0051305401138961315, 0.007342725060880184, -0.0026679527945816517, -0.0022662286646664143, -0.019340407103300095, 0.0014618796994909644, -0.012898408807814121, -0.002684165956452489, -0.00173840275965631, -0.010325932875275612, -0.010052111931145191, 0.01556455995887518, 0.018562179058790207, 0.014411629177629948, -0.011932829394936562, 0.015449266880750656, 0.009000062942504883, -0.004687382373958826, 0.017884831875562668, -0.005029658786952496, 0.002795856213197112, 0.015175445936620235, -0.01138518750667572, -0.014101779088377953, -0.015031329356133938, -0.022006558254361153, 0.00035781372571364045, 0.029947366565465927, 0.01174547802656889, -0.022280378267169, -0.017380425706505775, 0.006852729711681604, 0.005483624991029501, -0.015996908769011497, 0.005519654136151075, -0.013056936673820019, 0.007803897373378277, 0.002390529029071331, -0.0042117987759411335, 0.0317920558154583, 0.002750819781795144, -0.03395380079746246, -0.009648585692048073, 0.012819143943488598, 0.002032039687037468, 0.0033741227816790342, -0.000604387721978128, 0.03107147291302681, -0.0003571381967049092, 0.009129767306149006, -0.006611335091292858, -0.0012655211612582207, -0.008603742346167564, 0.008755064569413662, -0.02719474397599697, 0.028823258355259895, 0.027425330132246017, 0.0031183164101094007, 0.032685574144124985, 0.0011475259670987725, 0.020752746611833572, 0.005660167429596186, -0.02720915712416172, 0.01236517820507288, -0.025724759325385094, -0.004892748314887285, -0.004128932021558285, -0.0035812899004667997, -0.015276326797902584, -0.0017050759634003043, -0.009014474228024483, -0.03127323463559151, 0.02781444415450096, -0.016760725528001785, 0.010095346719026566, 0.006384351756423712, -0.004763043485581875, -0.00038776290602982044, 0.00029251104569993913, 0.0041109174489974976, 0.010102552361786366, 0.03395380079746246, 0.024600651115179062, 0.018187476322054863, -7.819434540579095e-05, 0.0052350242622196674, 0.007216623518615961, 0.003521841950714588, -0.038882575929164886, 0.006881553214043379, -0.00743640074506402, 0.015016918070614338, 0.012797527015209198, -0.0020410469733178616, 0.004276650957763195, -0.023880070075392723, -0.0074724298901855946, 0.03231087327003479, -0.001473589101806283, 0.01200488768517971, 0.008719035424292088, -0.0016636424697935581, -0.009641380049288273, -0.0012925430200994015, 0.0051305401138961315, -0.011450039222836494, 0.01765424571931362, 0.006730230990797281, -0.0006178985931910574, -0.005746637471020222, -0.02402418665587902, 0.023865658789873123, 0.011003279127180576, 0.024845648556947708, -0.002875120146200061, -0.010470048524439335, 0.026243576779961586, 0.01702013425529003, 0.012458853423595428, -0.00618619192391634, -0.0028372895903885365, -0.009929612278938293, -0.010023288428783417, -0.002900340361520648, 0.00493958592414856, -0.005613329820334911, -0.010887986049056053, 0.006160971708595753, 0.01763983443379402, 0.0045252516865730286, -0.0021545386407524347, -0.006492439191788435, -0.012538117356598377, 0.003981212619692087, -0.01459898054599762, 0.012783115729689598, -0.009223442524671555, -0.002918354934081435, 0.01645808108150959, 0.010095346719026566, -0.009288295172154903, -0.011536509729921818, 0.0126317935064435, 0.005173774901777506, 0.008791093714535236, 0.016141025349497795, 0.009021679870784283, 0.0060564870946109295, 0.009381970390677452, -0.008639771491289139, 0.0020428483840078115, 0.0032930574379861355, -0.007811103016138077, 0.007616546005010605, 0.01644366979598999, -0.030927356332540512, 0.013575755059719086, -0.01459898054599762, 0.0018951293313875794, 0.0052350242622196674, -0.023649483919143677, -0.01579514518380165, -0.014188249595463276, -0.012213855981826782, -2.4488510462106206e-05, -0.0004850414115935564, 0.003188573056831956, -0.012206650339066982, 0.02669033780694008, -0.00025670716422609985, -0.00950447004288435, -0.01396486908197403, 0.01076548732817173, 0.01360457856208086, -0.019340407103300095, 0.0006169978878460824, 0.01493044849485159, 0.0017951485933735967, -0.006499644834548235, 0.007818308658897877, 0.009259471669793129, -0.004128932021558285, 0.019960107281804085, 0.026747984811663628, 0.0020104222930967808, 0.01049166638404131, -0.01837482675909996, 0.01648690365254879, 0.021761560812592506, -0.003402946051210165, -0.0009745864663273096, -0.00010656724771251902, -0.018619826063513756, -0.015968086197972298, 0.029486194252967834, 0.010642988607287407, 0.0018464900786057115, 0.019383640959858894, -0.025479760020971298, -0.012321943417191505, -0.018562179058790207, 0.007310299202799797, 0.007544488180428743, 0.012595764361321926, 0.013662224635481834, -0.002736408030614257, -0.0064636156894266605, 0.020075399428606033, -0.02160303294658661, 0.03406909108161926, 0.018173065036535263, -0.009590939618647099, -0.00010363988258177415, 0.0009754871716722846, -0.008877563290297985, -0.006571703124791384, -0.026142695918679237, -0.015607794746756554, -0.01200488768517971, 0.0029850087594240904, -0.013402814976871014, 0.029356488958001137, 0.016083378344774246, 0.013078553602099419, 0.027079451829195023, -0.02287125587463379, -8.089652692433447e-05, 0.0005683586350642145, 0.016083378344774246, -0.003237212309613824, 0.009367559105157852, -0.0028697156812995672, 0.00492877746000886, 0.009309913031756878, 0.016285141929984093, 0.004672970622777939, 0.01974393241107464, 0.012487676925957203, 0.0003233609313610941, 0.011341952718794346, 0.008690212853252888, 0.014209866523742676, -0.014339570887386799, -0.0015384414000436664, -0.023101842030882835, 0.011522097513079643, 0.003451585303992033, -0.004752235021442175, -0.0018194682197645307, -0.004017241764813662, -0.0002546805189922452, -0.018807176500558853, -0.010952838696539402, -0.017899243161082268, 0.0039019486866891384, -0.024975353851914406, -0.0006021359004080296, 0.014173837378621101, -0.01836041547358036, -0.0041145202703773975, 0.002736408030614257, 0.0010016082087531686, -0.0019527757540345192, 0.014714273624122143, 0.026877688243985176, 0.018807176500558853, -0.006038472522050142, 0.010534901171922684, -0.007137359585613012, -0.006719422060996294, -0.0001835230941651389, 0.008502861484885216, 0.005757445935159922, 0.003622723277658224, 0.0016393228434026241, -0.009742261841893196, 0.026416515931487083, -0.00986476056277752, -0.018072184175252914, -0.018518943339586258, 0.0033633140847086906, -0.029687955975532532, 0.008481243625283241, -0.032656751573085785, -0.005588109139353037, -0.018864823505282402, -0.017553364858031273, -0.0010781700257211924, 0.00981431920081377, -0.012948849238455296, -0.0008151577785611153, -0.006503247655928135, 0.0036587524227797985, -0.004950394853949547, 0.006034869700670242, 0.03755670785903931, 0.014390012249350548, -0.006438395474106073, 0.01335958018898964, 0.004301871173083782, -0.01575191132724285, -0.019888048991560936, 0.0126245878636837, -0.020550983026623726, 0.019455699250102043, -0.012682233937084675, -0.0039019486866891384, -0.01396486908197403, -0.012221061624586582, -0.008863152004778385, 0.010225051082670689, -0.0380467027425766, 0.010095346719026566, 0.021718325093388557, -0.0034443794284015894, -0.008466832339763641, -0.020666277036070824, 0.0222227331250906, -0.0014889014419168234, -0.011176218278706074, -0.028160324320197105, 0.018490120768547058, 0.007854337804019451, 0.01843247376382351, -0.010397990234196186, 0.005970017518848181, 0.006492439191788435, -0.0039704036898911, -0.0009511675452813506, 0.008726241998374462, -0.0035614739172160625, -0.005627741105854511, -0.01549250166863203, 0.010520489886403084, 0.026171518489718437, 0.01841806247830391, -0.012588558718562126, 0.017567776143550873, 0.021747149527072906, 0.012747086584568024, -0.012040916830301285, 0.03285851702094078, 0.01461339183151722, 0.013402814976871014, -0.018533354625105858, -0.00493238028138876, -0.012170621193945408, -0.010642988607287407, 0.014036927372217178, -0.04222607612609863, -0.004889145493507385, 0.03406909108161926, -0.039574336260557175, -0.00882712285965681, 0.0254077035933733, -0.03467437997460365, -0.018129829317331314, -0.011212247423827648, -0.018072184175252914, 0.012963260523974895, 0.007652575150132179, 0.0019203496631234884, 0.004672970622777939, -0.0020608629565685987, -0.004251430742442608, 0.003449783893302083, 0.013532520271837711, 0.004136137664318085, 0.0158672034740448, -0.012228267267346382, -0.02164626680314541, -0.024543004110455513, -0.019282760098576546, 0.020709510892629623, -0.012192238122224808, -0.008690212853252888, 0.0072562554851174355, 0.021329211071133614, -0.0032534252386540174, -0.009662997908890247, -0.009223442524671555, 0.01834600418806076, 0.01325149368494749, -0.008409185335040092, -0.016213083639740944, -0.022554200142621994, 0.007213020697236061, 0.018245123326778412, -0.021343622356653214, 0.005761048756539822, 0.02716592140495777, 0.030149128288030624, 0.00371459755115211, -0.0038370962720364332, 0.007241843733936548, 0.0009200924541801214, 0.012336354702711105, -0.024312419816851616, 0.014188249595463276, 0.0190521739423275, 0.00027269506244920194, -0.006279867608100176, 0.0017798362532630563, 0.01650131493806839, -0.026373282074928284, 0.007274270057678223, 0.0005845717387273908, 0.025782404467463493, -0.006013252306729555, -0.018216298893094063, -0.011248276568949223, -0.0017537152161821723, 0.02462947554886341, 8.17972540971823e-05, -0.01423869002610445, 0.01843247376382351, -0.003284050151705742, 0.010542106814682484, -0.011241070926189423, 0.013705459423363209, 0.016962487250566483, 0.01642925851047039, 0.008358744904398918, 0.015045741572976112, 0.023779189214110374, 0.014447658322751522, 0.021300388500094414, -0.033896151930093765, -0.009439617395401001, -0.010859162546694279, 0.0058295042254030704, 0.03723965212702751, 0.021271565929055214, -0.0009844944579526782, 0.0022572213783860207, -0.0017555166268721223, -0.007558899465948343, 0.014015309512615204, 0.02269831672310829, 0.019340407103300095, -0.003305667545646429, 0.014829566702246666, 0.0008052497869357467, 0.0008201117743737996, -0.0013817149447277188, 0.0028372895903885365, 0.005357523448765278, -0.009922406636178493, -0.0002740461495704949, -0.0025508583057671785, 0.0111257778480649, 0.013143406249582767, 0.0220497939735651, 0.04098667576909065, 0.00022968534904066473, 0.005487227812409401, -0.005299876909703016, 0.010275491513311863, -0.028621496632695198, 0.007270667236298323, 0.0018969307420775294, -0.00584031268954277, 0.009987259283661842, -0.01387839950621128, -0.004409958608448505, -0.017884831875562668, 0.002318470971658826, 0.028693554922938347, 0.018518943339586258, 0.025638287886977196, -0.01719307340681553, -0.0017465093405917287, 0.0028156721964478493, 0.005364729091525078, 0.006762657314538956, -0.03049500845372677, 0.00493598310276866, -0.012430030852556229, 0.022208321839571, 0.005588109139353037, 0.004799072630703449, 0.011370775289833546, 0.007717427797615528, 0.0024986162316054106, 0.016054555773735046, -0.001880717696622014, -0.0077606625854969025, 0.005170172080397606, 0.029025021940469742, 0.010174610652029514, -0.008466832339763641, -0.02089686319231987, -0.002902141772210598, 0.009072120301425457, -0.017308367416262627, -6.368420145008713e-06, -0.015161034651100636, -0.015420443378388882, -0.0019924077205359936, -0.00617898628115654, 0.017380425706505775, -0.004146946594119072, 0.009028885513544083, 0.01459898054599762, -0.028073854744434357, 0.014973683282732964, -0.0007453514845110476, -0.016328375786542892, -0.01657337322831154, 0.02285684458911419, 0.019787168130278587, 0.018187476322054863, -0.014469276182353497, -0.027468565851449966, 0.004273048136383295, -0.012350765988230705, -0.003847904969006777, 0.002536446787416935, -0.005173774901777506, 0.0033308877609670162, -0.018475709483027458, -0.004373929463326931, -0.006827509496361017, 0.0014807949773967266, -0.007775073871016502, 0.005353920161724091, -0.007609340362250805, 0.0013123590033501387, 0.006449204403907061, 0.0254365261644125, 8.297945896629244e-05, 0.0010196227813139558, 0.007962425239384174, 0.006614937912672758, 0.01325869932770729, 0.01270385179668665, 0.012141797691583633, -0.024888884276151657, 0.00173840275965631, 0.009915200993418694, -0.02164626680314541, 0.017366014420986176, -0.012134592048823833, 0.02656063251197338, -0.0027237979229539633, 0.0018951293313875794, 0.01844688504934311, -0.030639125034213066, -0.004413561429828405, 0.01361898984760046, 0.014916036278009415, -0.019369229674339294, -0.016760725528001785, 0.008488450199365616, -0.007803897373378277, -0.016818370670080185, -0.013301934115588665, -0.003819081699475646, 0.004741426091641188, 0.007868750020861626, -0.0017284947680309415, 0.008315510116517544, 0.007191403303295374, 0.001206073211506009, -0.002053657313808799, -0.020623041316866875, 0.02347654476761818, -0.01909540966153145, 0.005242230370640755, 0.013028113171458244, -0.011435627937316895, 0.020565396174788475, -0.01702013425529003, 0.015002505853772163, 0.004910762887448072, 0.004997232463210821, -0.012754292227327824, 0.00667618727311492, 0.014562951400876045, -0.02033481001853943, -0.0056421528570353985, 0.033175572752952576, 0.010268285870552063, -0.011795918457210064, -0.016011320054531097, -3.74927549273707e-05, 0.01041240245103836, -0.04487781599164009, -0.0002956635726150125, 0.010801516473293304, 0.006423983722925186, -0.013849576003849506, -0.014757508412003517, 0.003894742811098695, -0.01836041547358036, -0.015060152858495712, -0.0046189273707568645, 0.017856009304523468, -0.003521841950714588, -1.633974716241937e-05, -0.001210576854646206, 0.009886377491056919, 0.009929612278938293, 0.01389281079173088, -0.021156271919608116, 0.0034840113949030638, 0.01423869002610445, -0.01841806247830391, -0.011716654524207115, -0.03591378033161163, -0.006546482909470797, 0.002505822107195854, -0.019311582669615746, -0.010650194250047207, -0.013784723356366158, -0.017221897840499878, 0.02143009379506111, 0.02085362747311592, -0.0018699088832363486, -0.01013137586414814, -0.001207874738611281, 0.010361962020397186, -0.012415618635714054, 0.004975615069270134, -0.008978445082902908, -0.0019924077205359936, -0.004564883653074503, -0.006391557864844799, 0.0006075402488932014, 0.008063307031989098, -0.03216675668954849, 0.01650131493806839, 0.004604515619575977, -0.0038515080232173204, 0.0079047791659832, 0.020089810714125633, -0.010073728859424591, -0.01635720022022724, 0.015305150300264359, 0.00855330191552639, -0.02282802015542984, 0.008942415937781334, -0.0032966602593660355, -0.013460461981594563, -0.02715151011943817, 0.008070512674748898, -0.0011439231457188725, 0.0014564753510057926, 0.015982497483491898, 0.019383640959858894, -0.011205041781067848, 0.009252266027033329, 0.005004438105970621, 0.0037758469115942717, 0.00015999159950297326, -0.029630310833454132, -0.038104347884655, -0.011767095886170864, 0.0031957789324223995, 0.005743034183979034, 0.00013195647625252604, -0.010275491513311863, 0.00222839810885489, -0.006265455856919289, 0.016631020233035088, -0.026330046355724335, 0.005516051314771175, 0.017856009304523468, -0.002413947833701968, -0.00506568793207407, 0.022035380825400352, 0.0221218504011631, -0.0005075595690868795, 0.01075828168541193, -0.0020104222930967808, 0.008675800636410713, 0.007796691730618477, -0.0023761175107210875, 0.0318208783864975, 0.010621370747685432, 0.0059592085890471935, 0.013518108054995537, -0.006355528719723225, 0.005516051314771175, 0.018562179058790207, 0.00883432850241661, 0.001061056274920702, -0.01771189272403717, 0.001713182427920401, -0.02337566390633583, -0.01762542314827442, -0.005480022169649601, -0.003211991861462593, -0.0012186834355816245, 0.0021653473377227783, -0.008589331060647964, 0.005710608325898647, -0.019253937527537346, -0.014743097126483917, -0.035798486322164536, -0.00520980404689908, -0.0016249112086370587, 0.012213855981826782, 0.009893584065139294, 0.02477359026670456, 0.00729588745161891, -0.0008633466786704957, -0.00915859080851078, 0.011644596233963966, 0.03233969584107399, -0.01834600418806076, 0.013539725914597511, -0.025119470432400703, 0.021271565929055214, -0.002750819781795144, -0.012170621193945408, 0.013496491126716137, 0.021040979772806168, -0.006636555306613445, -0.019325995817780495, 0.016803959384560585, -0.0008399277576245368, 0.006103325169533491, 0.02654622122645378, -0.006441998295485973, -0.011096954345703125, 0.017942478880286217, 0.007209417410194874, -0.0013312742812559009, 0.005897959228605032, 0.018533354625105858, 0.014289130456745625, -0.028102677315473557, 0.0063375141471624374, 0.007875955663621426, -0.016241906210780144, 0.011082543060183525, 0.01335237454622984, -0.000603486958425492, -0.00459370668977499, 0.01765424571931362, -0.00026593959773890674, -0.007739045191556215, -0.004896351136267185, -0.021963322535157204, -0.012617381289601326, 0.012213855981826782, 0.005098113790154457, 0.008949621580541134, 0.00333629222586751, -0.0014825963880866766, 0.00038235855754464865, 0.012747086584568024, 0.017841598019003868, 0.007976836524903774, 0.016241906210780144, -0.018173065036535263, -0.004035256337374449, 0.008243451826274395, 0.014317953959107399, 0.006791480351239443, -0.013842370361089706, -0.00019117927877232432, 0.012170621193945408, -0.02735327184200287, 0.008510067127645016, 0.021934499964118004, 0.013662224635481834, 0.02350536733865738, -0.02278478629887104, 0.016717489808797836, -0.017423659563064575, 0.0031507425010204315, -0.008005660027265549, -0.001621308270841837, 0.020579807460308075, 0.019383640959858894, 0.011017690412700176, -0.03409791365265846, -0.003554268041625619, -0.005988032091408968, -0.007731839083135128, -0.002972398651763797, -0.021199507638812065, 0.0015627610264346004, 0.005609726998955011, -0.001571768312714994, 0.007955219596624374, 0.02029157429933548, -0.0038298906292766333, 0.0009187413961626589, 0.018677471205592155, 0.00667618727311492, 0.0005422375397756696, 0.014087367802858353, 0.005498036742210388, -0.0037866556085646152, 0.004053270909935236, 0.004395546857267618, 0.010808722116053104, -0.013028113171458244, 0.01975834369659424, -0.001546547980979085, -0.0014771920396015048, 0.004871130920946598, 0.007530076429247856, 0.003044456709176302, -0.0046261330135166645, -0.00010397765436209738, 0.004741426091641188, -0.009338735602796078, 0.019916871562600136, 0.023692719638347626, 0.0061465599574148655, 0.022410083562135696, 0.006503247655928135, 0.005148554686456919, 0.003547062398865819, 0.0014312549028545618, -0.014829566702246666, 0.024240361526608467, -0.04245666041970253, 0.001161937601864338, -0.02339007519185543, 0.018576590344309807, -0.0025004176422953606, -0.0028192750178277493, 0.0006291577010415494, -0.0055484771728515625, -0.017394836992025375, -0.00284809828735888, 0.006730230990797281, -0.01175988931208849, 0.005764651577919722, -0.03461673483252525, -0.03398262336850166, 0.03458791226148605, 0.016011320054531097, 0.010059317573904991, 0.03046618402004242, -0.00693919975310564, -0.010311520658433437, -0.01657337322831154, 0.0062474412843585014, -0.013042524456977844, 0.016847195103764534, -0.005815092474222183, 0.02912590280175209, -0.00915859080851078, -0.011464451439678669, -0.0038262875750660896, -0.0005620535230264068, -0.01710660383105278, -0.003937977831810713, -0.0023599043488502502, 0.01237238384783268, -0.004860321991145611, 0.016285141929984093, -0.0018915263935923576, -0.02983207255601883, 0.014051338657736778, 0.004370326641947031, -0.013049730099737644, -0.04052550345659256, 0.018677471205592155, 0.012934437021613121, -0.013100171461701393, 0.022006558254361153, -0.01716425083577633, -0.00017733059939928353, 0.011702243238687515, -0.011370775289833546, 0.00016719741688575596, -0.010001670569181442, -0.005966414697468281, -0.000337322213454172, -0.020680688321590424, 0.005000835284590721, -0.023937717080116272, 0.0317920558154583, -0.008365950547158718, 0.0025274395011365414, -0.016717489808797836, 0.00026706550852395594, 0.00825786404311657, 0.023073019459843636, 0.007630957756191492, 0.009050503373146057, 0.00012306180724408478, 0.022294791415333748, 0.021703913807868958, -0.03594260290265083, -0.018879234790802002, -0.004672970622777939, 0.00011720707698259503, -0.006532071158289909, -0.0011511289048939943, 0.016861606389284134, -0.011824741959571838, 0.013136200606822968, -0.00015064656327012926, -0.012336354702711105, -0.01388560514897108, 0.00459010386839509, -0.015521325170993805, -0.004964806139469147, -0.012610175646841526, -0.0047162058763206005, -0.0029345680959522724, 0.0025796815752983093, -0.01592485047876835, 0.0004931479343213141, -0.016890428960323334, -0.023231547325849533, -0.01765424571931362, 0.00827227532863617, -0.00918020773679018, -0.005296273622661829, 0.016803959384560585, 0.0015546545619145036, -0.012350765988230705, -0.002422955119982362, 0.018230712041258812, -0.020608630031347275, 0.008474037982523441, 0.017221897840499878, 0.009648585692048073, -0.01237958949059248, 0.0013114582980051637, 0.0027183936908841133, 0.006823906674981117, 0.03098500333726406, -0.009727849625051022, -0.004164960701018572, 0.0016294148517772555, -0.0011556325480341911, 0.003700185799971223, -0.0004760341253131628, 0.0019401656463742256, -0.0036263263318687677, -0.0031039046589285135, 0.005879944656044245, 0.0038515080232173204, -0.019888048991560936, -0.0111185722053051, -0.009547704830765724, 0.005458404775708914, 0.002929163631051779, 0.005177377723157406, -0.007695809938013554, 0.016169847920536995, -0.015665441751480103, 0.00819301139563322, 0.011904005892574787, 0.011212247423827648, 0.008632565848529339, -0.022510964423418045, 0.01488721277564764, -0.000711123866494745, -0.005249436013400555, 0.008510067127645016, -0.009569321759045124, -0.015103387646377087, 0.00881991721689701, -0.0009277486242353916, 0.01299928966909647, -0.006762657314538956, 0.009403588250279427, -0.004788263700902462, -0.006766260135918856, 0.008445214480161667, -0.016631020233035088, 0.025695934891700745, 0.03484731912612915, 0.0018257732735946774, 0.00458650104701519, 0.0050404672510921955, -0.013698253780603409, -0.015146622434258461, -0.01834600418806076, -0.0039523895829916, -0.006506850477308035, 0.0038551108445972204, -0.0003857362607959658, 0.017567776143550873, 0.006391557864844799, 0.011911211535334587, -0.007335519418120384, 0.011161806993186474, 0.003999227192252874, -0.023231547325849533, 0.007364342454820871, 0.022655081003904343, 0.0014096375089138746, -0.0022031778935343027, 0.00987196620553732, -0.011197836138308048, -0.0016726497560739517, -0.023851247504353523, -0.028088266029953957, -0.006777068600058556, 0.02094009704887867, -0.005602520890533924, 0.000580068095587194, -0.023188311606645584, 0.002631923882290721, 0.00667979009449482, -0.011968858540058136, 0.02777121029794216, 0.015103387646377087, -0.012120180763304234, -0.013914428651332855, 0.004759440664201975, -0.007746250834316015, 0.005116128362715244, -0.01706336997449398, 0.0035290478263050318, 0.0033633140847086906, -0.008920799009501934, 0.0019743931479752064, 0.011341952718794346, 0.004885542206466198, 0.016285141929984093, -0.010895191691815853, -0.011205041781067848, -0.01719307340681553, 0.004071285482496023, -0.03732611984014511, -0.008625360205769539, -0.009547704830765724, -0.0035578710958361626, -0.023880070075392723, -0.01049166638404131, 0.011298717930912971, -0.009295500814914703, -0.0021203109063208103, 0.018129829317331314, 0.01175268366932869, -0.001740204286761582, 0.019225113093852997, 0.008949621580541134, 0.02405300922691822, -0.0071625798009335995, 0.0009871965739876032, 0.017279542982578278, 0.0221074391156435, -0.004615324549376965, -0.01422427874058485, -0.008481243625283241, 0.011997681111097336, 0.0076741925440728664, 0.020147457718849182, -0.023577425628900528, 0.017423659563064575, -0.021069802343845367, 0.010059317573904991, -0.004665764980018139, 0.012602970004081726, 0.01049887202680111, -0.008928004652261734, 0.005249436013400555, -0.0034623940009623766, 0.00881991721689701, -0.004366723820567131, -0.0030048247426748276, -0.013719871640205383, -0.02096892148256302, 0.0009079326409846544, 0.009562116116285324, -0.0005507944733835757, 0.0008196614217013121, -0.010527695529162884, 0.0016501315403729677, -0.0004107314452994615, 0.01040519680827856, -0.012314737774431705, 0.008041689172387123, -0.014620598405599594, 0.016919253394007683, -0.0025184322148561478, -0.008214629255235195, 0.006784274708479643, 0.0008304701768793166, -0.015982497483491898, -0.017308367416262627, -0.010390784591436386, -0.0379890538752079, 0.012581352144479752, 0.018850412219762802, 0.0069680227898061275, 0.01139239314943552, 0.001712281722575426, 0.0011033903574571013, 0.003058868460357189, -0.02716592140495777, -0.0017969500040635467, -0.013763106428086758, 0.006524865049868822, -0.007000449113547802, 0.0126245878636837, 0.0040208445861935616, -0.029687955975532532, 0.0010304314782842994, -0.004698191303759813, -0.00953329261392355, 0.009396382607519627, -0.009648585692048073, 0.0008908188319765031, -0.005307082552462816, 0.0027201951015740633, -0.011918417178094387, -0.02161744423210621, -0.01388560514897108, -0.01637161150574684, 0.017438070848584175, -0.013402814976871014, -6.873671372886747e-05, 0.014555745758116245, 0.004651353228837252, -0.021401269361376762, 8.737050666240975e-05, 0.017481306567788124, 0.00493238028138876, -0.019988929852843285, 0.01958540454506874, 0.010477254167199135, 0.009612556546926498, -0.027540624141693115, 0.014735891483724117, -0.001036736648529768, 0.016731901094317436, -0.014562951400876045, -0.017985712736845016, 0.022568611428141594, -0.0002711187698878348, 0.005198995117098093, 0.0021545386407524347, 0.0026283208280801773, -0.01958540454506874, -0.0015087174251675606, 0.002275235950946808, 0.007962425239384174, -0.020550983026623726, 0.006157368887215853, 0.005613329820334911, -0.020075399428606033, -0.01654455065727234, -0.0285062026232481, -0.01104651391506195, -0.013395609334111214, 0.0065500857308506966, 0.004597309976816177, -0.0004577944055199623, 0.008409185335040092, 0.02020510472357273, -0.005811489652842283, -0.025840051472187042, 0.014519716612994671, 0.006351925898343325, -0.03233969584107399, -0.013525314629077911, -0.014671038836240768, -0.007083315867930651, -0.028102677315473557, -0.002968795597553253, -0.0037758469115942717, -0.0045252516865730286, 0.013042524456977844, 0.0011700441827997565, 0.0111185722053051, -0.0027670329436659813, -0.015651030465960503, -0.00817860011011362, 0.0021887661423534155, 0.00979270227253437, -0.011248276568949223, -0.002455381443724036, 0.015593383461236954, 0.02339007519185543, -0.016847195103764534, -0.014353983104228973, 0.035077907145023346, -0.008466832339763641, 0.013640607707202435, 0.0024463741574436426, -0.0252491757273674, 0.002435565460473299, 0.0022157880011945963, -0.01838923990726471, 0.000988998101092875, -0.012682233937084675, 0.01651572808623314, 0.00372180319391191, -0.008012865670025349, -0.00048684285138733685, 0.01774071529507637, 0.007724633440375328, -0.011586950160562992, -0.02601299062371254, 0.001617705449461937, -0.008719035424292088, 0.03931492567062378, 0.005598918069154024, -0.005404361058026552, -0.008683007210493088, -0.0027418124955147505, -0.024528592824935913, 0.006589717697352171, -0.005620535463094711, -0.013575755059719086, -0.005926782730966806, 0.01763983443379402, -0.012941643595695496, 0.011659008450806141, 0.015333973802626133, -0.0015042137820273638, -0.008128158748149872, -0.012466059066355228, -0.011932829394936562, 0.004485619720071554, 0.009626968763768673, 0.015161034651100636, -0.0026679527945816517, -0.009972847998142242, 0.023894481360912323, 0.0036875756923109293, 0.026330046355724335, -0.0030768828000873327, 0.0002425207057967782, -0.0315038226544857, 0.0016825577476993203, 0.02148773893713951, 0.012574146501719952, -0.032599106431007385, 0.0038551108445972204, 0.000331692659528926, 0.003891139989718795, -0.01653013937175274, 0.012048122473061085, 0.008877563290297985, 0.019181879237294197, 0.004676573909819126, -0.011961652897298336, 0.00568899093195796, -0.006251044105738401, -0.024312419816851616, -0.0015078167198225856, 0.00915138516575098, -0.02347654476761818, 0.0048098815605044365, -0.004885542206466198, -0.0066581727005541325, -0.031388528645038605, -0.018504532054066658, -0.003761435393244028, -0.004770249128341675, 0.027727974578738213, 0.005872739013284445, -0.016904842108488083, -0.014008103869855404, 0.015679853036999702, -0.02019069343805313, 0.0018482914892956614, 0.018778353929519653, 0.025695934891700745, -0.020104223862290382, 0.015694264322519302, 0.011767095886170864, 0.0006197000620886683, 0.014145013876259327, 0.03277204558253288, 0.0029525826685130596, -0.023764776065945625, -0.001522228354588151, -0.009763878770172596, -0.01843247376382351, -0.01834600418806076, -0.007703016046434641, 2.0125615264987573e-05, -0.015636617317795753, -0.003604708705097437, -0.0066545698791742325, -0.011608567088842392, 0.010664605535566807, 0.0026679527945816517, -0.01075828168541193, -0.0038551108445972204, -0.012970466166734695, 0.009317118674516678, -0.009021679870784283, 0.01043401937931776, -0.01716425083577633, -0.003428166266530752, -0.028376499190926552, 0.008063307031989098, -0.008567714132368565, -0.004064079374074936, -0.004186578560620546, -0.012444442138075829, 0.006881553214043379, -0.0026445339899510145, 0.007767868228256702, 0.002995817456394434, -0.009396382607519627, -0.0009944024495780468, -0.013201052322983742, -0.016198672354221344, 0.00507289357483387, 0.004478414077311754, 0.0011997681576758623, 0.0059556057676672935, -0.0039019486866891384, 0.00037335127126425505, 0.010621370747685432, -0.0017248919466510415, -0.006795083172619343, 0.021271565929055214, -0.007090521510690451, -0.0004535159678198397, 0.017538953572511673, -0.0033164762426167727, -0.0014546738239005208, 0.014570157043635845, 0.0254221148788929, -0.001398828811943531, 0.0038082730025053024, -0.019426876679062843, -0.005613329820334911, 0.02792973816394806, -0.003999227192252874, 0.0004386539803817868, 0.015319562517106533, 0.002053657313808799, -0.012408412992954254, 0.013215464539825916, -0.006986037362366915, -0.012876790948212147, -0.002828282304108143, -0.0048098815605044365, -0.01520426943898201, 3.203209780622274e-05, -0.031964994966983795, 0.0190089400857687, 0.012415618635714054, -0.013078553602099419, 0.009972847998142242, -0.007587722968310118, 0.005285465158522129, 0.028232382610440254, 0.005155760329216719, 0.015362797304987907, -0.003208389040082693, -0.013244287110865116, -0.020723924040794373, 0.016198672354221344, 0.0015159233007580042, 0.01333075761795044, -0.02278478629887104, 0.023173900321125984, -0.023606248199939728, -0.006251044105738401, 0.002918354934081435, -0.007984043098986149, 0.000247024348936975, 0.02350536733865738, 0.013849576003849506, -0.011089748702943325, -0.015665441751480103, -0.011089748702943325, -0.02591210976243019, 0.0012132790870964527, 0.007450812496244907, 0.00166904681827873, -0.028217971324920654, -0.001834780559875071, 0.0008399277576245368, 0.01457736361771822, -0.005573697853833437, -0.0005953804356977344, -0.012566940858960152, 0.013842370361089706, 0.010181816294789314, 0.021329211071133614, 0.014015309512615204, -0.00038888881681486964, -0.01645808108150959, 0.012747086584568024, -0.016631020233035088, -0.007551693823188543, 0.007537282072007656, -0.012177826836705208, -0.0075661055743694305, 0.007803897373378277, -0.006895964499562979, 0.004600912798196077, -0.01235797256231308, 0.0027688343543559313, 0.00019658362725749612, -0.005843915976583958, -0.040323738008737564, 0.0013204655842855573, 0.003919963259249926, 0.003811876056715846, -0.009828731417655945, 0.0027129892259836197], "270348f2-a166-4b96-b28a-2d3bb355e69d": [-0.028639405965805054, -0.006303742527961731, -0.015395327471196651, 0.01530752144753933, -0.030644310638308525, -0.0011012342292815447, 0.007785469759255648, 0.002564668422564864, 0.0002718786126933992, -0.006058617495000362, 0.012856269255280495, 0.0259174183011055, -0.02350275218486786, -0.034683387726545334, 0.012673339806497097, 0.04407863691449165, 0.013156273402273655, 0.007800104096531868, 0.03061504289507866, -0.04524938389658928, 0.07469367980957031, -0.020180756226181984, -0.038224898278713226, -0.011985525488853455, 0.02054661512374878, -0.010617215186357498, -0.02269786410033703, 0.001982953166589141, -0.03652731701731682, -0.003221384482458234, 0.008707433007657528, 0.016141679137945175, 0.03395167365670204, -0.009190366603434086, -0.007090338505804539, -0.0027183289639651775, 0.021907608956098557, 0.005597635637968779, -0.036878541111946106, -0.044664010405540466, -0.016361193731427193, 0.015395327471196651, 0.006003738846629858, 0.009892814792692661, -0.060820322483778, 0.008151328191161156, 0.033922404050827026, -0.029649175703525543, -0.009717202745378017, 0.006161057855933905, 0.006241546478122473, 0.009336709976196289, -0.01339773926883936, -0.022258833050727844, 0.038429781794548035, -0.036146823316812515, -0.01000257208943367, 0.04779575765132904, -0.0009695251355879009, -0.06357157975435257, 0.0011277589946985245, -0.006541550625115633, 0.028112569823861122, -0.025273507460951805, 0.0110416105017066, -0.014246531762182713, -0.00912451185286045, -0.009900132194161415, -0.036615122109651566, -0.0104342857375741, 0.0007961996598169208, 0.022990550845861435, -0.04726892337203026, 0.022741766646504402, -0.0007879678159952164, -0.018629517406225204, 0.07328878343105316, 0.009461102075874805, 0.013309933245182037, 0.013617254793643951, -0.03840051218867302, 0.027483293786644936, 0.04583475738763809, -0.01940513774752617, 0.05552269145846367, 0.022317370399832726, -0.012300164438784122, -0.04296642541885376, 0.00963671412318945, -0.010778192430734634, 0.006651308387517929, 0.007189120166003704, -0.013046515174210072, -0.00023037655046209693, 0.007445221301168203, 0.002604912733659148, -0.017092911526560783, 0.024395447224378586, 0.015878260135650635, -0.003943955060094595, -0.0003299586824141443, 0.00031601032242178917, -0.037024885416030884, 0.0036878541577607393, 0.01652217097580433, 0.002936014672741294, -0.014283116906881332, -0.00895621720701456, -0.022975916042923927, 0.04598110169172287, 0.015146543271839619, -0.035883404314517975, -0.008648895658552647, -0.008239134214818478, -0.035737063735723495, -0.005140312481671572, -0.0029579661786556244, -0.016141679137945175, -0.009709885343909264, -0.03161017596721649, 0.02350275218486786, 0.03646877780556679, 0.04308350011706352, 0.013163589872419834, -0.017824627459049225, 0.0010134282056242228, 0.03638097271323204, -0.003096992615610361, 0.013163589872419834, -0.023722266778349876, 0.01617094688117504, 0.0039073689840734005, 0.006322035565972328, 0.033922404050827026, -0.0018082557944580913, 0.021658824756741524, 0.046625010669231415, 0.04334691911935806, -0.03942491486668587, 0.041444454342126846, -0.043668873608112335, -0.048439670354127884, -0.0122123584151268, 0.030644310638308525, -0.015556304715573788, -0.0030366259161382914, -0.03471265733242035, 0.022610057145357132, -0.007844006642699242, 0.02945892885327339, -0.051834836602211, -0.02524423971772194, -0.009980620816349983, 0.011568446643650532, 0.0223612729460001, -0.024146663025021553, 0.005158605519682169, 0.013375787995755672, 0.009358661249279976, 0.027439391240477562, 0.026283277198672295, -0.0479128323495388, 0.02328323759138584, 0.024951552972197533, 0.018497807905077934, 0.010075744241476059, 0.06913262605667114, 0.013170907273888588, -0.0033110198564827442, 0.011839182116091251, -0.01118063647300005, -0.014817270450294018, 0.04404936730861664, 0.013551400043070316, 0.010485505685210228, 0.005114702507853508, 0.04036151245236397, 0.003415289567783475, 0.03690781071782112, -0.02034173533320427, 0.009087925776839256, 0.01570264808833599, -0.026341814547777176, -0.02417593263089657, 0.002092710928991437, -0.008729384280741215, -0.03374679014086723, -0.004730551037937403, 0.016858762130141258, 0.025595463812351227, -0.022536886855959892, -0.006131789181381464, 0.021775899454951286, 0.006892774719744921, 0.011824548244476318, 0.006318376865237951, -0.007020825520157814, 0.0018933179089799523, 0.008978168480098248, 0.03907369077205658, -0.0008712006383575499, -0.05672270804643631, -0.05438121408224106, 0.03553218021988869, -0.010251356288790703, 0.0005076287197880447, -0.020927108824253082, -0.0456591472029686, 0.017839262261986732, -0.023341774940490723, 0.03699561581015587, -0.04914211854338646, 0.023473484441637993, 0.027000360190868378, -0.005154946818947792, 0.022668594494462013, -0.015892894938588142, 0.03778586909174919, -0.008100108243525028, -0.010653800331056118, -0.02530277706682682, 0.010478188283741474, 0.03444923833012581, -0.012753828428685665, -0.04194202274084091, -0.01523434929549694, -0.0004893357981927693, 0.037551719695329666, -0.03828343749046326, -0.0021823460701853037, 0.05774711072444916, -0.005308607593178749, -0.015761185437440872, -0.03383459895849228, -0.015102640725672245, 0.01218308974057436, 0.0040207854472100735, 0.02457105927169323, -0.02161492221057415, 0.008590358309447765, 0.017268523573875427, 0.0408005453646183, -0.012461141683161259, 0.017883164808154106, 0.011787962168455124, 0.01832219585776329, -0.0009750130120664835, 0.00446347426623106, 0.00297808856703341, 0.017897799611091614, 0.0364980474114418, 0.012124552391469479, 0.013536766171455383, 0.017429500818252563, -0.005469585303217173, 0.0038598075043410063, -0.003729927819222212, -0.03652731701731682, 0.0012055039405822754, -0.01994660682976246, 0.001600631163455546, 0.03696634620428085, 0.011334297247231007, 0.02511253021657467, 0.04156152904033661, -0.02584424801170826, 0.022536886855959892, -0.031522370874881744, 0.029385758563876152, 0.03550291433930397, -0.011773327365517616, 0.02067832462489605, 0.01826365850865841, 0.0039037105161696672, -0.006146423518657684, -0.010287942364811897, -0.02108808606863022, 0.018761225044727325, -0.00983427744358778, 0.012087966315448284, -0.0023286896757781506, 0.002057954203337431, 0.014744099229574203, 0.010119646787643433, -0.012944075278937817, 0.009007437154650688, -0.040917620062828064, 0.009205000475049019, -0.03321995586156845, -0.007880592718720436, 0.011861133389174938, 0.003279921831563115, 0.03281019255518913, -0.0015914846444502473, 0.05350315198302269, -0.00401346804574132, -0.028302816674113274, -0.028434526175260544, -0.04261520132422447, 0.0053634862415492535, -0.003336629830300808, 0.004361033905297518, -0.005089092068374157, -0.007829372771084309, 0.03439070284366608, -0.024073492735624313, 0.026693038642406464, -0.000427368504460901, -0.0173124261200428, -0.014063602313399315, 0.019888069480657578, -0.012570898979902267, -0.02436617948114872, -0.015395327471196651, 0.027336949482560158, -0.0021512482780963182, -0.01644900068640709, -0.014883125200867653, -0.005191532429307699, -0.04287862032651901, -0.01697583682835102, -0.024819843471050262, -0.027966227382421494, 0.020707592368125916, 0.04241032153367996, -0.01658070832490921, 0.029415026307106018, 9.96964517980814e-05, 0.013046515174210072, -0.026341814547777176, 0.008465966209769249, -0.012058697640895844, -0.03980540856719017, 0.007946447469294071, -0.027307681739330292, -0.03477119654417038, -0.0531519278883934, -0.04773722216486931, -0.0018247194821015, -0.033249225467443466, 0.008531820960342884, -0.005626904312521219, -0.005893981084227562, -0.021717362105846405, 0.030088206753134727, -0.005392754916101694, 0.00401346804574132, 0.023590559139847755, -0.04402009770274162, 0.0092635378241539, 0.0010417822049930692, -0.020253928378224373, 0.013668474741280079, 0.006962288171052933, 0.0355614498257637, 0.0062086195684969425, -0.0064903306774795055, -0.0036476096138358116, 0.010946487076580524, -0.027219874784350395, 0.009644031524658203, -0.026678403839468956, -0.02181980386376381, 0.014341654255986214, 0.010646483860909939, 0.029078437015414238, -0.020897839218378067, -0.006958629470318556, -0.014575804583728313, 0.018980741500854492, -0.01791243441402912, 0.009256221354007721, -0.011326980777084827, -0.01766365021467209, -0.041327379643917084, -0.03093699738383293, 0.05356169119477272, 0.014107504859566689, -0.014663610607385635, 0.02094174362719059, 0.001624411903321743, -0.02623937465250492, -0.0043024965561926365, 0.03509315103292465, 0.03067358024418354, 0.02899063006043434, 0.011063561774790287, 0.03286873176693916, 0.00016738027625251561, -0.0005785138346254826, -0.02544911950826645, -0.006318376865237951, 0.019683189690113068, 0.011297712102532387, -0.0333077609539032, -0.018073411658406258, 0.004397619515657425, -0.0035963894333690405, -0.019288063049316406, -0.019302695989608765, -0.0017542917048558593, 0.009724520146846771, -0.010858681052923203, -0.009475735947489738, -0.0037189519498497248, -0.02019539102911949, -0.023210065439343452, -0.005590318236500025, 0.018073411658406258, 0.02397105097770691, 0.03161017596721649, 0.004269569180905819, 0.03670292720198631, 0.010075744241476059, 0.051834836602211, 0.0036585854832082987, 0.009344027377665043, 0.050576284527778625, -0.01906854659318924, -0.014809953980147839, 0.06462525576353073, 0.0731717050075531, -0.032458968460559845, 0.0026158886030316353, 0.0006123557104729116, 0.007800104096531868, 0.0007856811862438917, 0.010726972483098507, 0.010331844910979271, -0.042527396231889725, 0.0002915435179602355, 0.03772733360528946, 0.010851364582777023, 0.006640332285314798, 0.017429500818252563, -0.032458968460559845, 0.001868622493930161, 0.024073492735624313, 0.014392875134944916, -0.015629475936293602, 0.01040501706302166, 0.014678244479000568, -0.02543448470532894, -0.001231114030815661, 0.0071159484796226025, -0.02476130612194538, -0.02081003412604332, 0.019053911790251732, 0.015351423993706703, -0.00018144297064282, 0.0059671527706086636, 0.02900526486337185, -0.03257604315876961, -0.002892111660912633, 0.02618083730340004, -0.01704900711774826, -0.002732963301241398, -0.017488038167357445, 0.020444175228476524, -0.04644940048456192, -0.031024804338812828, 0.027219874784350395, -0.008414746262133121, -0.021512482315301895, 0.012585533782839775, -0.028566233813762665, 0.01399774756282568, 0.06169838458299637, 0.006318376865237951, 0.01077087502926588, -0.017400231212377548, -0.024483254179358482, -0.009790374897420406, 0.06673260033130646, 0.008663530461490154, -0.04249812662601471, -0.022800303995609283, -0.02221493050456047, -0.03354191035032272, -0.0163758285343647, -0.030029669404029846, -0.029444295912981033, -0.0045585972256958485, 0.0037866358179599047, -0.0035726085770875216, -0.013653840869665146, -0.033395566046237946, -0.021395407617092133, 0.00821718294173479, -0.014824587851762772, 0.06099593639373779, 0.015600208193063736, 0.004807381425052881, 0.007726932410150766, -0.01732706092298031, -0.00701350811868906, -0.013514813967049122, -0.03307361155748367, -0.0037116347812116146, -0.05335680767893791, 0.05479097366333008, -0.028171107172966003, -0.03456631302833557, 0.011231857351958752, -0.004785429686307907, -0.016800224781036377, -0.011005024425685406, 0.0351809561252594, -0.013617254793643951, -0.043932292610406876, -0.046010371297597885, -0.012175772339105606, -0.0321955531835556, 0.016873395070433617, 0.001773499301634729, 0.011531861498951912, 0.018497807905077934, 0.0010811119573190808, 0.037288300693035126, 0.024263737723231316, 0.009614762850105762, -0.012505045160651207, 0.0004063316446263343, 0.007024483755230904, -0.03623462840914726, -0.009841594845056534, -0.02375153638422489, -0.015541670843958855, 0.039307840168476105, -0.0007980289519764483, -0.0062086195684969425, 0.009907449595630169, -0.044459130614995956, 0.011239174753427505, 0.02241981215775013, 0.009409881196916103, -0.003208579495549202, 0.0024000320117920637, -0.012446507811546326, 0.024468619376420975, -0.03576632961630821, 0.033337030559778214, 0.011970891617238522, 0.013105052523314953, 0.006314718164503574, 0.024322275072336197, 0.01442946121096611, 0.020371003076434135, -0.011846499517560005, 0.013375787995755672, -0.046946968883275986, 0.016478268429636955, -0.009614762850105762, -0.0013783720787614584, 0.01583435758948326, -0.01483922265470028, -0.01399774756282568, -0.007474489975720644, -0.021863706409931183, 0.01087331585586071, -0.045542072504758835, 0.004690306261181831, -0.012512361630797386, 0.019712457433342934, 0.010075744241476059, -0.02926868386566639, 0.010317211039364338, 0.0336882546544075, -0.019317330792546272, 0.014656293205916882, 0.02827354706823826, -0.004419571254402399, -0.0032323601190000772, -0.009541590698063374, 0.013595303520560265, 0.01605387218296528, -0.017166081815958023, -0.00029405878740362823, -0.025814978405833244, -0.004236641805619001, -0.0016372170066460967, -0.03597121313214302, 0.016727052628993988, 0.001576850307174027, 0.006431793328374624, 0.011253808625042439, -0.004452498629689217, -0.011626983992755413, -0.011736742220818996, -0.010141598992049694, 0.0028701601549983025, 0.012446507811546326, -0.0083269402384758, -0.0037902945186942816, -0.030176011845469475, 0.028683308511972427, -0.008480601012706757, 0.0011231857351958752, -0.0012164796935394406, 0.008136694319546223, -0.002207956276834011, 0.01791243441402912, 0.031727250665426254, -0.005484219640493393, -0.04972749203443527, 0.007902543991804123, -0.005195191130042076, -0.01764901541173458, -0.013866038993000984, 0.014963613823056221, -0.018483173102140427, 0.0067903343588113785, 0.04404936730861664, -0.020224660634994507, 0.03643951192498207, -0.010244038887321949, 0.005206167232245207, 0.007240340579301119, -0.008934265933930874, 0.0007975716143846512, 0.026019860059022903, -0.051776301115751266, 0.06093739718198776, -0.03951272368431091, 0.013851404190063477, -0.0012055039405822754, -0.0059671527706086636, 0.0016911810962483287, -0.014473363757133484, 0.025419851765036583, -0.0035396814346313477, -0.030293086543679237, 0.02120516076683998, -0.024410082027316093, 0.0025408875662833452, 0.012929440476000309, 0.016068506985902786, 0.03321995586156845, -0.02241981215775013, -0.003391508711501956, -0.010500140488147736, 0.008707433007657528, 0.0015567280352115631, 0.07346439361572266, -0.013953845016658306, -0.0035579742398113012, 0.0044744499027729034, 0.03286873176693916, 0.030439430847764015, -0.015351423993706703, -0.05335680767893791, -0.013668474741280079, -0.02073686197400093, 0.014773367904126644, 0.0004225666052661836, -0.03658585250377655, -0.00716351019218564, 0.011868450790643692, 0.01618558168411255, 0.015761185437440872, 0.04820552095770836, -0.002846379531547427, -0.028493063524365425, -0.003018332878127694, 0.011268443427979946, 0.027483293786644936, 0.001922586583532393, 0.01980026438832283, 0.015146543271839619, 9.66666848398745e-05, 0.003312848974019289, -0.027424756437540054, 0.00297808856703341, -0.007646443322300911, 0.006453744601458311, 0.004975676070898771, -0.0017204497708007693, 0.0007811079849489033, 0.013902624137699604, -0.005615928675979376, -0.005096409469842911, -0.036205362528562546, -0.01858561299741268, 0.014107504859566689, -0.05318119749426842, -0.011685521341860294, -0.004529328551143408, 0.0653277039527893, -0.020253928378224373, 0.010792827233672142, -0.00039146863855421543, 0.007123265881091356, 0.016463633626699448, 0.018512442708015442, 0.0021622239146381617, 0.0019244159338995814, -0.004887870047241449, -0.025668635964393616, 0.005154946818947792, -0.007200096268206835, -0.015000199899077415, 0.011707473546266556, 0.02315152809023857, -0.020107585936784744, 0.007280584890395403, 0.017034374177455902, -0.029210146516561508, -0.010807461105287075, 0.02034173533320427, 0.0025427169166505337, 0.033922404050827026, 0.005776906386017799, 0.0029488198924809694, 0.015483133494853973, 0.00012462056474760175, 0.039834678173065186, -0.027541831135749817, 0.02168809436261654, 0.005659831687808037, 0.009424515999853611, 0.0064647202380001545, 0.0379907488822937, 0.01191967073827982, -0.012058697640895844, -0.04343472421169281, 0.021512482315301895, -0.0036091944202780724, 0.0192734282463789, -0.0034518754109740257, 0.0014314214931800961, 0.038020018488168716, -0.023517386987805367, -0.011019659228622913, 0.004218348767608404, -0.030995534732937813, -3.961562106269412e-05, 0.001024403958581388, -0.006256180815398693, 0.03155164048075676, -0.004254934843629599, 0.028844287618994713, 0.014334337785840034, -0.0029689420480281115, -0.022639326751232147, 0.004891528747975826, -0.0020195392426103354, 0.013163589872419834, 0.004240300506353378, 0.023795438930392265, 0.018292926251888275, 0.01985880173742771, -0.01899537444114685, 0.060117874294519424, 0.020327100530266762, -0.02489301562309265, -0.009702568873763084, 0.019097816199064255, 0.00011718906171154231, -0.0013984942343086004, 0.03286873176693916, -0.02067832462489605, 0.008590358309447765, -0.02195151150226593, -0.03851758688688278, -0.006307401228696108, 0.012336749583482742, -0.005952518433332443, 0.05599099025130272, 0.03632243722677231, 0.007218388840556145, 0.016741687431931496, -0.009614762850105762, 0.003856149036437273, 0.044868890196084976, -0.0052793389186263084, -0.029210146516561508, 0.038693200796842575, -0.02120516076683998, -0.052332405000925064, -0.0333077609539032, -0.01631729118525982, -0.037551719695329666, 0.015248984098434448, -0.010990390554070473, 0.04103469476103783, -0.03860539197921753, 0.0321955531835556, 0.03128822147846222, -0.0073976595886051655, 0.010800143703818321, -0.00476713664829731, 0.014927028678357601, 0.004390302579849958, 0.00670984573662281, -0.021395407617092133, -0.02146857976913452, 0.023649096488952637, -0.033600449562072754, 0.019683189690113068, -0.005458609201014042, 0.010961121879518032, -0.02155638486146927, 0.05174703150987625, 0.052390944212675095, -0.005465926602482796, -0.021922243759036064, 0.015468498691916466, 0.01860024780035019, 0.006303742527961731, 0.027234509587287903, -0.024249104782938957, -0.004415912553668022, -0.019624652341008186, 0.030849192291498184, 0.0016555099282413721, 0.004858601372689009, 0.0013216639636084437, 0.01893683709204197, 0.021600287407636642, 0.016595343127846718, 0.008517187088727951, 0.007778152357786894, 0.007558637298643589, 0.028244279325008392, -0.031024804338812828, 0.007159851491451263, -0.0006086971261538565, -0.016288021579384804, 0.014919711276888847, -0.01279041450470686, 0.004500059876590967, 0.007880592718720436, -0.018907569348812103, 0.04492742940783501, -0.0011387347476556897, -0.011868450790643692, -0.047356728464365005, -0.01517581194639206, -0.008341575041413307, 0.022039318457245827, -0.025873515754938126, -0.03193213418126106, -0.02328323759138584, -0.005568366963416338, 0.0021933219395577908, 0.010953804478049278, 0.006603746674954891, 0.012014794163405895, 0.05569830536842346, 0.060176413506269455, 0.024819843471050262, -0.01946367509663105, -0.002061612904071808, 0.010156232863664627, -0.0029890642035752535, 0.0026195470709353685, -0.009022071957588196, 0.02296128123998642, -0.005751296412199736, 0.010163550265133381, 0.012929440476000309, 0.005396413616836071, -0.021995415911078453, -0.02148321270942688, 0.012300164438784122, -0.028478428721427917, -0.008290354162454605, -0.007046435493975878, 0.004331765230745077, 0.02758573368191719, -0.017034374177455902, 0.015424596145749092, 0.009929400868713856, 0.033454105257987976, -0.0027110117953270674, -0.01533679012209177, 0.003680536989122629, 0.033717524260282516, -0.04624452069401741, -0.025419851765036583, 0.013983113691210747, 0.023780804127454758, -0.015936797484755516, 0.02100028097629547, -0.04633232578635216, 0.0019116108305752277, 0.021366138011217117, -0.016024604439735413, -0.0034976075403392315, -0.024556424468755722, 3.3699001505738124e-05, 0.007090338505804539, -0.03046869859099388, -0.012563582509756088, 0.0010811119573190808, -0.013280664570629597, 0.0008263829513452947, -0.013902624137699604, -0.004829332698136568, 0.0027988178189843893, -0.007946447469294071, -0.016009969636797905, -0.05054701492190361, 0.01839536800980568, 0.012117234990000725, -0.047883566468954086, -0.002967112697660923, 0.019449040293693542, 0.012300164438784122, 0.01961001753807068, 0.019712457433342934, 0.024219835177063942, -0.016829492524266243, -0.01570264808833599, 0.03348337486386299, 0.04343472421169281, -0.005209825467318296, -0.014261165633797646, -0.022507617250084877, 0.0007152534672059119, 0.01732706092298031, 0.03234189376235008, 0.00758790597319603, 0.005930566694587469, -0.01650753803551197, 0.010470871813595295, 0.009914766065776348, -0.016273388639092445, 0.005118360742926598, 0.03418582305312157, -0.02228810265660286, 0.003631145926192403, -0.009387929923832417, 0.008985485881567001, -0.005432999227195978, 0.0035963894333690405, 0.006285449489951134, -0.025273507460951805, -0.020034413784742355, -0.009870863519608974, -0.0008899508975446224, -0.01416604220867157, -0.007404976990073919, -0.0017213644459843636, -0.00986354611814022, -0.013792866840958595, -0.03403947874903679, 0.00022740394342690706, -0.0038854177109897137, 0.007873275317251682, -0.007240340579301119, 0.03506388142704964, -0.01678558997809887, -0.030702847987413406, -0.01060258038341999, 0.024351544678211212, -0.003265287494286895, 0.0007317170966416597, 0.008568407036364079, 0.0045403046533465385, -0.01886366680264473, 0.012395286932587624, 0.023122260347008705, 0.013909941539168358, -0.007975716143846512, 0.02874184586107731, -0.03825416788458824, 0.029590638354420662, -0.017634382471442223, 0.01523434929549694, -0.02108808606863022, 0.012344066984951496, 0.0009457443375140429, 0.0061830091290175915, 0.008436697535216808, -0.00876597035676241, -0.0004513779713306576, -0.014846539124846458, -0.011136733926832676, 0.009300123900175095, 0.020897839218378067, 0.0016317290719598532, -0.006084227468818426, -0.030058937147259712, -0.002359787467867136, 0.013302616775035858, -0.040098097175359726, 0.02214175835251808, -0.010156232863664627, -0.0005437572253867984, -0.0018036826513707638, -0.018878299742937088, -0.007361073978245258, 0.015497767366468906, 0.004489084240049124, 0.008553772233426571, -0.02885892242193222, -0.013200175948441029, -0.029649175703525543, -0.015248984098434448, -0.014122139662504196, 0.0017286816146224737, -0.01718071661889553, 0.024819843471050262, 0.01838073320686817, -0.0050817751325666904, 0.026297912001609802, -0.005136653780937195, 0.006687893997877836, -0.022229565307497978, -0.005703734699636698, 0.019580749794840813, -0.015570939518511295, -0.021966146305203438, 0.015029468573629856, 0.02981015294790268, 0.014985566027462482, -0.04469328001141548, -0.023883245885372162, 0.017005104571580887, -0.029415026307106018, 0.005041530821472406, -0.0009137316956184804, -0.03307361155748367, -0.007167168892920017, 0.004372009541839361, 0.00668057706207037, -0.0011369053972885013, 0.039571259170770645, 0.011319663375616074, -0.02610766515135765, -0.021058818325400352, 0.006281791254878044, 0.008692799136042595, -0.002145760226994753, -0.02350275218486786, -0.017809994518756866, -0.055405616760253906, -0.010090378113090992, -0.013514813967049122, 0.03488827124238014, -0.030702847987413406, -0.019975876435637474, -0.004397619515657425, -0.00048750650603324175, -0.01791243441402912, 0.018307561054825783, -0.009907449595630169, -0.015688013285398483, 0.004693964961916208, 0.012300164438784122, -0.014788001775741577, 0.015790455043315887, 0.010353796184062958, -0.01134161464869976, 0.0044744499027729034, -0.01618558168411255, -0.0062525225803256035, 0.0086562130600214, -0.018029509112238884, 0.005568366963416338, -0.021512482315301895, 0.007137900218367577, -0.010822095908224583, 0.025288142263889313, -0.00845864973962307, -0.02195151150226593, -0.0020341735798865557, 0.0055317808873951435, -0.0030823582783341408, 0.015088005922734737, 0.006504965014755726, -0.011290394701063633, 0.016756320372223854, 0.010324527509510517, 0.009446467272937298, -0.008509869687259197, -0.0014762391801923513, 0.037288300693035126, -0.004295179154723883, -0.017209986224770546, 0.0034335823729634285, -0.005908615421503782, 0.01117332000285387, -0.022639326751232147, 0.006431793328374624, 0.014078236185014248, 0.012124552391469479, -0.0059012980200350285, -0.004101274069398642, -0.007126924116164446, -0.005341534502804279, 0.010295258834958076, 0.0059415427967906, -0.013946527615189552, -0.00350675405934453, -0.012073331512510777, 0.04644940048456192, 0.02013685368001461, -0.021922243759036064, 0.0029012581799179316, 0.007090338505804539, 0.011056245304644108, 0.005568366963416338, 0.020663689821958542, -0.0021585654467344284, 0.009761106222867966, 0.01873195730149746, -0.004393960814923048, 0.005678124725818634, 0.032049208879470825, 0.013317250646650791, -0.024132030084729195, 0.007024483755230904, -0.005348851904273033, -0.0018613053252920508, 0.005714710336178541, -0.009205000475049019, -0.004159811418503523, 0.010551360435783863, 0.019624652341008186, 0.00029405878740362823, -0.023063722997903824, -0.002689060289412737, -0.0239564161747694, 0.00845864973962307, 0.018775859847664833, 0.01718071661889553, 0.004445181228220463, 0.036146823316812515, 0.005652514286339283, 0.012666022405028343, 0.04296642541885376, 0.019053911790251732, 0.021702729165554047, -0.005648856051266193, 0.0008862923132255673, 0.0110416105017066, -0.01630265638232231, 0.006874482147395611, -0.015790455043315887, 0.0005533610237762332, -0.012270895764231682, -0.00983427744358778, 0.025214970111846924, -0.008817191235721111, -0.02490764856338501, 0.029971132054924965, 0.004715916700661182, -0.030380893498659134, 0.006270815152674913, 0.0006594600272364914, 0.0007609857711941004, 0.007243999280035496, 0.0034610216971486807, 0.0010692215291783214, -0.005432999227195978, 0.002846379531547427, 0.0019317331025376916, -0.00892694853246212, -0.048439670354127884, -0.005652514286339283, -0.007895227521657944, 0.004002492409199476, 0.009351343847811222, -0.0029524783603847027, 0.0005117446416988969, -0.0021238087210804224, -0.0006686064880341291, 0.0017661821329966187, 0.0005739405751228333, -0.0028262571431696415, 0.018073411658406258, 0.050986044108867645, -0.04085908085107803, 0.006230570841580629, -0.014487998560070992, 0.011795279569923878, 0.00761717464774847, -0.007258633617311716, 0.007265950553119183, 0.009336709976196289, 0.01804414391517639, 0.024395447224378586, -0.02812720462679863, 0.004745185375213623, -0.005963494069874287, 0.014678244479000568, 0.009768422693014145, 0.02670767344534397, -0.017678285017609596, -0.00889767985790968, -0.024717403575778008, 0.004247617442160845, -0.013251395896077156, -0.00208173505961895, 0.0024091785307973623, 0.007192778866738081, -0.0006974178249947727, 0.008963534608483315, -0.0036530974321067333, 0.03248823806643486, -0.010463554412126541, -0.001109466073103249, -0.012783097103238106, -0.022741766646504402, -0.015614842064678669, 0.008070839568972588, 0.009483053348958492, -0.03913222998380661, -0.03014674410223961, -0.0005208911024965346, -0.017488038167357445, -0.005831785034388304, -0.02281493879854679, 0.016200216487050056, -0.0006018372951075435, 0.005400071851909161, 0.006735455710440874, -0.021263698115944862, 0.03673219680786133, 0.0018137437291443348, 0.013192858546972275, -0.0211466234177351, 0.008670846931636333, -0.020356368273496628, -0.00670984573662281, 0.011561130173504353, 0.0061391061171889305, -0.006102520506829023, -0.018088046461343765, 0.02402958832681179, -0.0059269084595143795, 0.036556586623191833, 0.010412334464490414, -0.011890402063727379, -0.014217263087630272, 0.00043217040365561843, -0.0045842076651751995, 0.01994660682976246, 0.0012320285895839334, -0.0037427328061312437, 0.003526876214891672, -0.021263698115944862, 0.007401318289339542, -0.003228701651096344, -0.005604953039437532, 0.009029388427734375, 0.0009009266505017877, -0.005593976937234402, 0.002513448242098093, -0.008553772233426571, -0.011466006748378277, -0.0016491073183715343, -0.017078276723623276, 0.011714790016412735, -0.021497847512364388, 0.0333077609539032, -0.0075513203628361225, -0.004968359135091305, -0.03845905140042305, 0.009417198598384857, 0.022975916042923927, -0.024688133969902992, -0.07762055099010468, -0.006161057855933905, 0.03597121313214302, -0.0036073653027415276, -2.583875902928412e-05, 0.02187834121286869, -0.007544002961367369, 0.004412253852933645, -0.002390885492786765, 0.0419127531349659, -0.015658745542168617, 0.027688173577189445, -0.002268322976306081, -0.019288063049316406, 0.008758652955293655, -0.01440019253641367, -0.00010758527787402272, -0.00032035488402470946, 0.016068506985902786, -0.033922404050827026, -0.010083061642944813, 0.0018018533010035753, 0.009519639424979687, 0.012256260961294174, -0.029429661110043526, -0.024117395281791687, 0.03000039979815483, 0.015278252772986889, -0.0007321743760257959, -0.01339042279869318, -0.0163758285343647, 0.009702568873763084, 0.03128822147846222, 0.014217263087630272, 0.031580910086631775, -0.00983427744358778, -0.0007715041865594685, 0.027278412133455276, -0.022522252053022385, 0.005261045880615711, -0.007624492049217224, 0.004964700434356928, -0.017136814072728157, -0.011100147850811481, -0.0020305148791521788, -0.018980741500854492, -0.033658985048532486, 0.0025244238786399364, 0.0027622319757938385, -0.0021933219395577908, 0.0060988618060946465, -0.010214770212769508, 0.007423269562423229, 0.004031761083751917, -0.011729424819350243, -0.03895661607384682, 0.010412334464490414, 0.011831864714622498, 0.013141638599336147, -0.006135447882115841, -0.007734249345958233, 0.02187834121286869, -0.0009448296623304486, 0.01262211985886097, -0.012768463231623173, 0.028419891372323036, -0.008875728584825993, 0.025727173313498497, -0.007401318289339542, -0.01753194071352482, -0.014151408337056637, -0.02303445339202881, -0.01224894355982542, -0.0009896473493427038, -0.0022573471069335938, -0.01107087917625904, 0.007529368624091148, 0.001048184698447585, -0.00022797560086473823, -0.003936637658625841, 0.005981787107884884, 0.007394000887870789, -0.005147629417479038, -0.0008419319638051093, -0.0025353997480124235, -0.030439430847764015, 0.0006914726109243929, -0.0024110078811645508, -0.02255151979625225, -0.002184175420552492, 0.0049939691089093685, -0.003466509748250246, -0.019302695989608765, -0.023473484441637993, -0.013478228822350502, 0.0346248522400856, 0.005198849830776453, -0.051512882113456726, 0.0016847786027938128, -0.015570939518511295, -0.010931853204965591, 0.007756201084703207, -0.03860539197921753, -0.019888069480657578, 0.02994186244904995, -0.004686648026108742, 0.018073411658406258, 0.027424756437540054, -0.004423229955136776, 0.013580668717622757, 0.002407349180430174, -0.01150990929454565, 0.0017387426923960447, 0.01764901541173458, 0.04317130893468857, -0.024819843471050262, 0.03213701397180557, -0.006720821373164654, 0.019346600398421288, -0.01798560656607151, 0.015570939518511295, 0.041239574551582336, 0.009651347994804382, -0.007083021104335785, 0.010353796184062958, 0.0031719934195280075, 0.008539138361811638, 0.014144090935587883, 0.02906380221247673, 0.009029388427734375, 0.019375868141651154, -0.01974172703921795, -0.031054072082042694, -0.011846499517560005, -0.032254088670015335, -0.0033348004799336195, 0.0070281424559652805, 0.005667148623615503, 0.020107585936784744, 0.023341774940490723, -0.019302695989608765, 0.005224459804594517, -0.013807501643896103, 0.016551440581679344, -0.0064244759269058704, 0.01523434929549694, -0.0012100770836696029, -0.02228810265660286, 0.006636674050241709, 0.011378200724720955, 0.030176011845469475, -0.006512281950563192, 0.02040027268230915, 0.004895187448710203, 0.02932722121477127, -0.016829492524266243, -0.022639326751232147, -0.017356328666210175, 0.006036665756255388, -0.008261085487902164, 0.005754954647272825, -0.0038415146991610527, -0.02060515247285366, 0.011305028572678566, 0.010983073152601719, 0.0040171267464756966, 0.004456156864762306, 0.01631729118525982, 0.0185270756483078, -0.03093699738383293, 0.023385677486658096, -0.04381521791219711, 0.00956354197114706, 0.0049537247978150845, 0.02348811738193035, 0.01446604635566473, 0.02202468365430832, 0.011407469399273396, 0.014487998560070992, 0.010236721485853195, 0.015556304715573788, 0.001210991758853197, -0.031785789877176285, -0.0009676958434283733, 0.007254974916577339, -0.01959538273513317, 0.01605387218296528, -0.029415026307106018, -0.014590438455343246, -0.012556265108287334, 0.019492942839860916, 0.008707433007657528, -0.014048967510461807, -0.017956336960196495, 0.014670927077531815, 0.034215088933706284, 0.004862260073423386, 0.007415952626615763, 0.0062964255921542645, -0.020019778981804848, 0.01652217097580433, -0.001166174071840942, 0.03342483565211296, 0.0004047310212627053, 0.002004904905334115, 0.006007397081702948, 0.010119646787643433, 0.014246531762182713, -0.007946447469294071, 0.003236018819734454, 0.0001256495452253148, 0.004957383032888174, -0.0005094580119475722, -0.0033073611557483673, -0.021234430372714996, -0.013178224675357342, -0.024380812421441078, -0.002839062362909317, -0.010361113585531712, 0.005809833761304617, -0.015102640725672245, 0.006237888243049383, 0.026619866490364075, -0.0030823582783341408, -0.03263458237051964, 0.025141797959804535, 0.0057293446734547615, -0.0062269121408462524, 0.017488038167357445, 0.003918345086276531, -0.003415289567783475, -0.024117395281791687, 0.019566114991903305, 0.008700115606188774, 0.004609817638993263, 0.008429381065070629, 0.011773327365517616, -0.014187994413077831, 0.020166123285889626, 0.024673499166965485, -0.0253613144159317, -0.016858762130141258, -0.0060988618060946465, -0.0006064105546101928, -0.008129376918077469, -0.029356488958001137, 0.017809994518756866, 0.0005071713821962476, -0.020488077774643898, 0.000644368352368474, -0.0062269121408462524, 0.022112490609288216, -0.017678285017609596, -0.011729424819350243, -0.006007397081702948, -0.016390463337302208, -0.004704940598458052, 0.01429775170981884, -0.0006160142947919667, 0.021571019664406776, 0.004306154791265726, -0.00818791426718235, 0.04879089444875717, 0.008992803283035755, 0.014692879281938076, 0.011875768192112446, 0.026678403839468956, -0.0025482047349214554, -0.007394000887870789, 0.00505250645801425, 0.007836690172553062, 0.005733003374189138, 0.011897719465196133, 0.011539177969098091, -0.013178224675357342, -0.027000360190868378, -0.013609937392175198, 0.004675671923905611, -0.016024604439735413, 0.013902624137699604, 0.02247834950685501, 0.02348811738193035, -0.020927108824253082, -0.0055573913268744946, 0.010756241157650948, -0.003058577422052622, 0.009029388427734375, -0.007372049614787102, -0.0062086195684969425, 0.015936797484755516, -0.012424555607140064, 0.0020103927236050367, -0.018702687695622444, -0.013602620922029018, -0.023736901581287384, -0.0064244759269058704, -0.006475696340203285, 0.00993671827018261, -0.0019792946986854076, 1.846442319219932e-05, 0.0056854416616261005, -0.007372049614787102, -0.02100028097629547, 0.004050054121762514, -0.012914806604385376, 0.009761106222867966, 0.013017246499657631, 0.018014874309301376, 0.013244079425930977, -0.0044305468909442425, -0.004262251779437065, -0.005458609201014042, -0.0005378120695240796, -0.017751457169651985, -0.0036970004439353943, -0.00043056978029198945, -0.0032140673138201237, -0.0035140712279826403, 0.06187399476766586, 0.004404936917126179, 0.0071818032301962376, 0.0036000481341034174, -0.004887870047241449, -0.016946567222476006, -0.00980500876903534, 0.017692919820547104, -0.013822135515511036, -0.006387889850884676, 0.01358798611909151, 0.004650061950087547, -0.0017588649643585086, -0.007631808985024691, -0.042995695024728775, 0.012044062837958336, 0.013617254793643951, -0.007785469759255648, -0.0208685714751482, 0.009497687220573425, 0.017692919820547104, -0.024014955386519432, -0.029224779456853867, 0.0199319738894701, -0.003984199371188879, 0.024805208668112755, -0.0029890642035752535, -0.008465966209769249, 0.0012228821869939566, 0.014319702982902527, 0.0003825508465524763, -0.016858762130141258, -0.0016253265785053372, -0.001254894770681858, -0.01251967903226614, 0.01738559827208519, 0.0030805289279669523, 0.023122260347008705, 0.019712457433342934, 0.0019372209208086133, -0.003073211759328842, 0.00044131686445325613, 0.002720158314332366, 0.004854942671954632, -0.026210105046629906, -0.016829492524266243, 0.0023890561424195766, -0.007203754503279924, 0.005454950965940952, 0.01328798197209835, -0.013631889596581459, -0.03670292720198631, -0.006995215080678463, 0.01265138853341341, 0.020297830924391747, -0.002590278396382928, 0.01805877685546875, -0.02820037677884102, 0.020795399323105812, 0.0031994329765439034, -0.004130542743951082, 0.0005263789789751172, -0.007997667416930199, -0.016258753836154938, -0.03570779412984848, -0.01671241782605648, -0.021497847512364388, -0.009344027377665043, 0.017970971763134003, -0.0022500299382954836, -0.014927028678357601, 0.0009814155055209994, 0.01144405547529459, -0.010668435133993626, 0.01145137194544077, 0.025053992867469788, 0.002326860325410962, 0.006596429273486137, -0.0019719775300472975, -0.004946407396346331, 0.01925879344344139, -0.004661037586629391, -0.015892894938588142, -0.013251395896077156, 0.003665902651846409, -0.011136733926832676, 0.01311968732625246, -0.013053832575678825, -0.012395286932587624, -0.012914806604385376, 0.0027786956634372473, -0.004869577009230852, 0.008012302219867706, 0.004379326477646828, 0.009131829254329205, -0.0065342336893081665, 0.00201405119150877, 0.0035488277208060026, 0.0101050129160285, -0.01858561299741268, 0.016536805778741837, 0.00818791426718235, 0.0013939209748059511, 0.015117274597287178, -0.00565617298707366, -0.00459884200245142, 0.020283197984099388, -0.008802556432783604, -0.02531741000711918, -0.015805087983608246, -0.014707513153553009, -0.004119567107409239, 0.01577582024037838, 0.00791717879474163, -0.026429621502757072, -0.010653800331056118, 0.010646483860909939, -0.010397699661552906, -0.014487998560070992, -0.00808547344058752, -0.015556304715573788, 0.013653840869665146, 0.011685521341860294, -0.011392834596335888, 0.0247027687728405, 0.004675671923905611, -0.008312306366860867, 0.0013106882106512785, 0.0004751587694045156, 0.008612309582531452, 0.005136653780937195, -0.0003775202785618603, 0.03450777754187584, -0.005619587376713753, 0.012966026552021503, -0.014788001775741577, 0.006633015349507332, -0.004606158938258886, 0.019010009244084358, -0.004829332698136568, 0.01446604635566473, 0.01134161464869976, 0.02006368152797222, 0.01966855488717556, 0.007211071904748678, 0.0001990499149542302, -0.00027416524244472384, -0.019756361842155457, 0.008568407036364079, -0.024746671319007874, 0.019683189690113068, 0.00020202250743750483, -0.0008369014249183238, -0.008692799136042595, -0.005465926602482796, -0.0061647165566682816, -0.01999051123857498, 0.03035162389278412, -0.010478188283741474, -0.004247617442160845, -0.005722027737647295, 0.00290308753028512, -0.010939170606434345, -0.0068781403824687, 0.0152050806209445, 0.02154175005853176, 0.014209945686161518, 0.031785789877176285, 0.016478268429636955, -0.0020634422544389963, -0.003102480433881283, -0.0012283700052648783, 0.004928114358335733, -0.03149310126900673, 0.024322275072336197, -0.010097695514559746, 0.00595983536913991, 0.01712217926979065, -0.00684521347284317, 0.005934225395321846, -0.018761225044727325, -0.006043983157724142, 0.03529803082346916, -0.0013811159878969193, 0.017297791317105293, 0.00446347426623106, -0.003272604662925005, -0.020824668928980827, 0.0003263000980950892, 0.011905036866664886, -0.014407509006559849, 0.005908615421503782, 0.0034061430487781763, -0.006596429273486137, -0.021658824756741524, -0.021849071606993675, 0.006515940651297569, 0.003914686385542154, 0.021980781108140945, 0.006022031418979168, -0.0027183289639651775, 0.023590559139847755, 0.01161235012114048, 0.016814857721328735, 0.006980580743402243, -0.00029085754067637026, 0.0003912399697583169, -0.031229684129357338, -0.0024988139048218727, 0.003744562156498432, -0.0228295736014843, -0.0185270756483078, -0.0006054958794265985, 0.032927267253398895, -0.0022372249513864517, 0.005136653780937195, -0.0012329432647675276, 0.003965906333178282, 0.0025884490460157394, -0.014034333638846874, 0.012563582509756088, 0.013463594019412994, -0.009651347994804382, 0.009029388427734375, 0.006965946406126022, -0.0023341774940490723, -0.01912708394229412, 0.01215382106602192, 0.026751575991511345, -0.00849523488432169, 0.018205121159553528, 0.002780524780973792, -0.0101050129160285, 0.03073211759328842, -0.004423229955136776, 0.0026744259521365166, 0.017868531867861748, -0.001210991758853197, 0.00034367837361060083, -0.00023334914294537157, -0.019492942839860916, 0.014334337785840034, -0.014744099229574203, -0.002943331841379404, 0.011136733926832676, -0.01577582024037838, -0.011261126026511192, -0.004287862218916416, -0.015292886644601822, -2.185147241107188e-05, -0.015673380345106125, 0.005722027737647295, -0.012731877155601978, 0.01985880173742771, 0.01804414391517639, -0.005915932357311249, -0.01101234182715416, 0.00835620891302824, 0.0036604146007448435, -0.022273467853665352, 0.0004705855390056968, 0.01805877685546875, 0.01839536800980568, 0.004240300506353378, 0.004858601372689009, 0.008934265933930874, -0.020297830924391747, 0.009322075173258781, 0.025522291660308838, -0.0029817470349371433, 0.013609937392175198, -0.017224619165062904, 0.008407428860664368, 0.02979552000761032, 0.01070502121001482, -0.007990350015461445, 0.016127044335007668, -0.011656252667307854, -0.004851284436881542, 0.024322275072336197, 0.0037537086755037308, 0.0006649479037150741, 0.004273227881640196, -0.01912708394229412, -0.012000160291790962, -0.017268523573875427, -0.009717202745378017, 0.00303845526650548, 0.015527036041021347, 0.003517729928717017, 0.013675792142748833, 0.003086016746237874, 0.006402524653822184, -0.020897839218378067, 0.035415105521678925, 0.008802556432783604, -0.0023451531305909157, -0.002140272408723831, -0.016683150082826614, -0.0007280585123226047, -0.002998210722580552, -0.01000257208943367, 0.006387889850884676, -0.012146503664553165, 0.0023049088194966316, -0.004792746622115374, 0.02135150507092476, 0.01753194071352482, 0.0003974138235207647, 0.034537047147750854, -0.0007509246352128685, -0.015527036041021347, 0.008685481734573841, 0.008861093781888485, -0.008948899805545807, 0.01725388877093792, -0.014919711276888847, 0.012753828428685665, 0.0019994168542325497, 0.009548908099532127, 0.005718369036912918, 0.015570939518511295, 0.0137562807649374, 0.011034293100237846, 0.000294973433483392, 0.01906854659318924, 0.02637108415365219, -0.017005104571580887, 0.017283156514167786, -0.030966266989707947, 0.007357415277510881, -0.0011625154875218868, 0.001593313878402114, -0.0029378440231084824, -0.010426968336105347, 0.005422023590654135, -0.02779061533510685, -0.010953804478049278, -0.006526916287839413, 0.00535251060500741, -0.014685561880469322, 0.003852490335702896, 0.004975676070898771, -0.00785864144563675, 0.003958589397370815, 0.003757367143407464, 0.003900052048265934, -0.00446347426623106, 0.02348811738193035, 0.02604912780225277, 0.014531901106238365, 0.007057411130517721, 0.0040646884590387344, -0.009102560579776764, -0.011539177969098091, 0.000512201979290694, 0.009644031524658203, -0.005224459804594517, -0.0128196831792593, -0.00021482756710611284, -0.014707513153553009, 0.026868650689721107, -0.016273388639092445, -0.00963671412318945, -0.008912313729524612, 0.012578216381371021, -0.021366138011217117, -0.0016984982648864388, -0.048644550144672394, -0.010251356288790703, -0.01118063647300005, -0.011246491223573685, -0.019361233338713646, 0.007276926189661026, -0.009753788821399212, 0.008612309582531452, -0.00741961132735014, 0.01345627661794424, 0.0016170947346836329, 0.009958669543266296, 0.03248823806643486, 0.02476130612194538, -0.009929400868713856, -0.0011780644999817014, 0.00879523903131485, -0.0030128450598567724, -0.020927108824253082, 0.011787962168455124, -0.008253769017755985, 0.01224894355982542, -0.019551480188965797, 0.0006480269366875291, -0.02100028097629547, -0.014502632431685925, -0.008919631130993366, 0.01745876856148243, -0.03933710977435112, -0.0027000359259545803, 0.012234309688210487, 0.0007774494006298482, -0.001420445740222931, -0.00045366460108198225, 0.018614882603287697, 0.007024483755230904, -0.014773367904126644, -0.03377605974674225, 0.007909861393272877, 0.021512482315301895, 0.03509315103292465, -0.006526916287839413, -0.0030604067724198103, 0.025829613208770752, -0.01178064476698637, 0.0008442185935564339, 0.00835620891302824, 0.0012466629268601537, -0.0023853976745158434, -0.004320789128541946, 0.0003571693960111588, 0.015658745542168617, 0.013405056670308113, -0.006497647613286972, -0.00040267306030727923, 0.01813194900751114, 0.013185542076826096, -0.02013685368001461, 0.026693038642406464, 0.015248984098434448, 0.0075074173510074615, 0.0007422355120070279, -0.003929320722818375, -0.0228295736014843, -0.02664913609623909, 0.008509869687259197, -0.011992842890322208, -0.01144405547529459, 0.017488038167357445, -0.017107544466853142, 0.00716351019218564, 0.014517267234623432, -0.03696634620428085, -0.00429883785545826, -0.009483053348958492, -0.00895621720701456, 0.01617094688117504, -0.005231777206063271, 0.008904997259378433, 0.003089675446972251, 0.008107425644993782, 0.013573351316154003, -0.0003164676309097558, 0.016595343127846718, 0.031171146780252457, 0.018088046461343765, -0.0223612729460001, -0.017809994518756866, -0.02053198032081127, -0.009190366603434086, 0.01691729947924614, -0.035415105521678925, -0.012497727759182453, 0.0004506919940467924, 0.009380612522363663, -0.011217222549021244, -0.0046720136888325214, -0.009307441301643848, 0.016009969636797905, 0.014809953980147839, -0.015936797484755516, 0.007990350015461445, -0.014590438455343246, 0.010507456958293915, 0.012483092956244946, -0.015058737248182297, 0.0010372089454904199, 0.016961202025413513, 0.017136814072728157, 0.005151288118213415, 0.0030604067724198103, -0.017092911526560783, -0.012036746367812157, 0.013763598166406155, -0.005612269975244999, 0.0053598275408148766, 0.008780605159699917, -0.002085393760353327, -0.0074379038996994495, 0.0009402564610354602, 0.010324527509510517, -0.017605112865567207, 0.009724520146846771, 0.012768463231623173, 0.02187834121286869, -0.0018256341572850943, -0.014714830555021763, -0.0157172828912735, -0.0006795822409912944, 0.03155164048075676, -0.007529368624091148, -0.011985525488853455, 0.0077196150086820126, -1.1954713954764884e-05, 0.005952518433332443, 0.0030439430847764015, 0.01592216268181801, 0.010968439280986786, 0.0006233314634300768, 0.016829492524266243, 0.04094688594341278, 0.026283277198672295, 0.01738559827208519, 0.0074415626004338264, -0.010668435133993626, -0.011824548244476318, -0.009505004622042179, 0.018673419952392578, 0.034010209143161774, 0.015117274597287178, 0.005886663682758808, -0.016361193731427193, -0.0002046521258307621, -0.017692919820547104, 0.010565994307398796, 0.024219835177063942, 0.03998102247714996, -0.014663610607385635, 0.012161137536168098, -0.0017817310290411115, 0.001034465036354959, -0.008853776380419731, 0.01779535971581936, 0.004693964961916208, -0.009768422693014145, -0.005147629417479038, 0.004789088387042284, 0.011890402063727379, 0.021234430372714996, 0.018336830660700798, 0.030234549194574356, -0.008685481734573841, 0.009512322023510933, -0.009307441301643848, 0.006684235297143459, -0.022771036252379417, 0.0001817859592847526, -0.016258753836154938, -0.009980620816349983, 0.0007271438371390104, -0.008136694319546223, 0.009592810645699501, -0.01268797367811203, -0.0017853896133601665, 0.03269311785697937, 0.018541710451245308, 0.016624612733721733, -0.0074379038996994495, 0.0039512719959020615, 0.00999525561928749, -0.005070799496024847, 0.011787962168455124, -0.013792866840958595, 0.0024530815426260233, -0.00282076932489872, 0.011078196577727795, -0.0052756802178919315, 0.0020908815786242485, 0.010039158165454865, 0.007829372771084309, 0.007565954700112343, 0.021029548719525337, -0.009768422693014145, -0.0059671527706086636, 0.005733003374189138, 0.01493434514850378, -0.001000623102299869, 0.0042768861167132854, -0.025053992867469788, -0.012329433113336563, 0.014151408337056637, -0.005568366963416338, 0.0041451770812273026, -0.004331765230745077, -0.017488038167357445, -0.006991556845605373, 0.0028975997120141983, 0.019756361842155457, -0.0028628429863601923, 0.003726269118487835, 0.026078397408127785, -0.034741926938295364, 0.001709474017843604, -0.008400112390518188, 0.0013847745722159743, -0.008978168480098248, 0.011217222549021244, 0.021731996908783913, -0.0006457403069362044, -0.004269569180905819, -0.029283316805958748, -0.01238065306097269, -0.020561249926686287, 0.0030366259161382914, 0.011092830449342728, 0.0034957784228026867, 0.002195151289924979, -0.011253808625042439, 0.008129376918077469, -0.01530752144753933, -0.005992762744426727, -0.0029488198924809694, 0.0042585935443639755, -0.01191235426813364, 0.011187953874468803, 0.009687934070825577, 0.01073428988456726, 0.004957383032888174, 0.008436697535216808, 0.009819643571972847, 0.018673419952392578, -0.008319622837007046, 0.017063641920685768, 0.004957383032888174, -0.0043463995680212975, -0.007741566747426987, 0.006153740454465151, -0.022200295701622963, 0.02047344297170639, 0.006197643466293812, 0.030058937147259712, -0.019170986488461494, 0.0031555299647152424, 0.01372701209038496, -0.011122099123895168, -0.02247834950685501, 0.017707552760839462, 0.0010262331925332546, -0.007946447469294071, -0.021731996908783913, 0.006340328603982925, -0.011736742220818996, -0.0041488357819616795, -0.026766210794448853, 0.003486631903797388, 0.008619626984000206, 0.014319702982902527, -0.008319622837007046, -0.009607445448637009, 0.01309041865170002, 0.008378160186111927, -0.0021731997840106487, -0.016009969636797905, 0.019770994782447815, -0.018966106697916985, 0.0008222670876421034, 0.01221967488527298, 0.001302456366829574, 0.011348932050168514, -0.01999051123857498, 0.030849192291498184, 0.008348891511559486, -0.0033658985048532486, -0.017107544466853142, -0.029707713052630424, 0.016258753836154938, -0.013500180095434189, -0.005711051635444164, 0.018366098403930664, -0.0006987897795625031, -0.0013180053792893887, -0.019112449139356613, 0.007240340579301119, 0.01671241782605648, -0.03875173628330231, 0.01145137194544077, -0.0018805129220709205, 0.013185542076826096, -0.012344066984951496, -0.013448960147798061, 0.010990390554070473, -0.014678244479000568, -0.0023451531305909157, -0.004093957133591175, 0.009080609306693077, -0.014956297352910042, -1.8364384231972508e-05, 0.0035360227338969707, -0.011714790016412735, 0.0032122379634529352, -0.0030805289279669523, -0.017400231212377548, -0.005524463951587677, 0.005250070244073868, -0.012827000580728054, -0.0009503175388090312, -0.02148321270942688, 0.002729304600507021, -0.0083269402384758, -0.006764724384993315, -0.0023488118313252926, 0.0005007688887417316, -0.020839301869273186, -0.005140312481671572, 0.02846379391849041, 0.011246491223573685, -0.008400112390518188, -0.012673339806497097, 0.019449040293693542, -0.014239214360713959, 0.0023012501187622547, -0.002811622805893421, 0.0017177058616653085, 0.002859184518456459, 0.0021677117329090834, -0.005261045880615711, 0.005374461878091097, -0.037024885416030884, 0.029415026307106018, 0.008744019083678722, -0.004353716503828764, 0.00046875624684616923, 0.015892894938588142, 0.001973806880414486, -0.033805329352617264, 0.008853776380419731, 0.0033329713623970747, -0.02417593263089657, 0.018175851553678513, 0.0018677078187465668, -0.010126964189112186, -0.019785629585385323, 0.008787921629846096, -0.013163589872419834, -0.005875688046216965, 0.014634341932833195, 0.0014158725971356034, -0.013522131368517876, -0.0012466629268601537, -0.002248200820758939, 0.009300123900175095, 0.0060110557824373245, -0.02457105927169323, -0.0351809561252594, -0.025053992867469788, 0.007265950553119183, -0.002840891480445862, -0.01175137609243393, -0.02041490562260151, 0.00553543958812952, -0.02187834121286869, 0.018219755962491035, -0.02806866727769375, 0.013800184242427349, 0.005253728479146957, -0.009709885343909264, 0.008868411183357239, 0.009607445448637009, 0.010631849057972431, 0.0014131285715848207, 0.02625400945544243, 0.015000199899077415, 0.0022939329501241446, 0.013961161486804485, 0.014092870987951756, 0.020912474021315575, 0.009673300199210644, 0.0025116188917309046, 0.012848951853811741, -0.010887949727475643, -0.010009889490902424, 0.03758098930120468, 0.015585573390126228, 0.008151328191161156, -0.031024804338812828, -0.008378160186111927, -0.024146663025021553, -0.013236762024462223, 0.003987858071923256, -0.008641578257083893, 0.0073537565767765045, 0.0037207813002169132, -0.004350057803094387, 0.00595617713406682, -0.026663770899176598, -0.013917258940637112, -0.01671241782605648, -0.008590358309447765, 0.003936637658625841, -0.014487998560070992, 0.03020528145134449, 0.023912513628602028, 0.012175772339105606, 0.0032890683505684137, -0.02054661512374878, -0.001878683571703732, 0.030849192291498184, -0.013324568048119545, 0.008619626984000206, -0.022039318457245827, 0.012036746367812157, 0.0018988058436661959, -0.013939210213720798, 0.0022500299382954836, 0.023253967985510826, -0.008641578257083893, -0.004818357061594725, 0.011656252667307854, -0.006603746674954891, 0.0005085433949716389, 0.01914171874523163, -0.0024091785307973623, -0.00802693609148264, 0.0034207773860543966, -0.004364692140370607, 0.0040171267464756966, 0.00912451185286045, 0.012409921735525131, 0.00805620476603508, -0.008539138361811638, 0.009307441301643848, -0.0009695251355879009, -0.024732036516070366, 0.009344027377665043, 0.010090378113090992, -0.003367727855220437, -0.01180991344153881, 0.011546495370566845, 0.014283116906881332, -0.021790534257888794, -0.004050054121762514, -0.01410018838942051, 0.001797280041500926, 0.009739154018461704, 0.003929320722818375, 0.004511035978794098, 0.016961202025413513, -0.018907569348812103, -0.011085513979196548, 0.015278252772986889, 0.012087966315448284, 7.700178684899583e-05, 0.01933196559548378, -0.026868650689721107, -0.005239094141870737, 0.0015823381254449487, 0.006724480073899031, 0.0009059571893885732, -0.004419571254402399, -0.012483092956244946, -0.002100028097629547, -0.033249225467443466, 0.0008542796713300049, 0.009307441301643848, 0.01732706092298031, 0.0342443585395813, -0.014012382365763187, 0.009387929923832417, -0.013734329491853714, -0.004350057803094387, 0.005323241930454969, -0.004657379351556301, 0.02738085389137268, 0.014217263087630272, 0.002930526854470372, -0.01298797782510519, 0.01570264808833599, -0.019492942839860916, -0.014824587851762772, 0.009790374897420406, 0.0009215062018483877, -0.007829372771084309, 0.006980580743402243, -0.003011015709489584, 0.0012731876922771335, 0.009739154018461704, 5.865169805474579e-05, 0.009929400868713856, 0.010317211039364338, 8.614825492259115e-05, 0.005074457731097937, 0.024732036516070366, -0.012841634452342987, 0.0045842076651751995, 0.004068347159773111, 0.019039278849959373, -0.019375868141651154, -0.013368470594286919, 0.019010009244084358, -0.012256260961294174, -0.005436657927930355, 0.011575764045119286, -0.0012384311994537711, 0.0006699784426018596, -0.005297631490975618, 0.007317170966416597, -0.0059415427967906, -0.0005510744522325695, 0.01980026438832283, 0.022097855806350708, -0.0010079402709379792, 0.024483254179358482, 0.009029388427734375, 0.006962288171052933, -0.0008062607375904918, 0.009387929923832417, -0.01412945706397295, 0.0077196150086820126, -0.02893209271132946, 0.005118360742926598, -0.007690346334129572, 0.021292967721819878, -0.005604953039437532, 0.01429775170981884, 0.0062269121408462524, -0.008700115606188774, -0.01279041450470686, 0.008480601012706757, 0.004880553111433983, 0.0036567561328411102, -0.0015164836077019572, -0.02350275218486786, -0.020312465727329254, 0.016609977930784225, 0.018366098403930664, 0.0027695491444319487, 0.021717362105846405, -0.002153077395632863, -0.009402564726769924, -0.015000199899077415, 0.002145760226994753, -0.0074818069115281105, 0.02839062176644802, -0.01811731420457363, 0.007946447469294071, -0.010580629110336304, -0.015614842064678669, -0.009541590698063374, 0.008078156970441341, -0.011363565921783447, -0.004913480021059513, 0.004467132966965437, 0.019624652341008186, 0.003995175007730722, -0.005341534502804279, -0.008195231668651104, -0.01598070003092289, -0.010353796184062958, 0.0010134282056242228, -0.004247617442160845, -0.028712578117847443, 0.018966106697916985, 0.0017231936799362302, 0.002577473409473896, 0.027468658983707428, -0.011422103270888329, 0.007331805303692818, 0.00017698407464195043, -0.008619626984000206, -0.013441642746329308, -0.013785549439489841, -0.006995215080678463, -0.014414826408028603, -0.010163550265133381, 0.009351343847811222, -0.013214810751378536, 0.004072005394846201, 0.003750049974769354, 0.008114742115139961, -0.002954307710751891, -0.005308607593178749, 0.006084227468818426, 0.005206167232245207, 0.01805877685546875, 0.004408595617860556, -0.0033256541937589645, 0.025141797959804535, 0.019097816199064255, -0.024717403575778008, -0.004211031831800938, -0.0068342373706400394, -0.003954930696636438, 0.0010372089454904199, -0.00022546033142134547, 0.020649055019021034, -0.011129416525363922, 0.022053953260183334, -0.0038232216611504555, 0.002764061326161027, -0.01611240953207016, 0.004167128819972277, -0.00882450770586729, -0.007185461465269327, -0.0036439511459320784, -0.028566233813762665, -0.008670846931636333, -0.012629436329007149, -0.01598070003092289, 0.010331844910979271, -0.0032195551320910454, -0.005886663682758808, -0.01311968732625246, 0.006358621176332235, -0.007829372771084309, -0.01779535971581936, 0.007704980671405792, 0.015000199899077415, -0.008202548138797283, 0.0016628270968794823, 0.01289285533130169, -0.021658824756741524, 0.012300164438784122, -0.006347645539790392, 0.0030750411096960306, -0.0049098217859864235, 0.005546415224671364, -0.017473403364419937, 0.004082981497049332, 0.02315152809023857, 0.01533679012209177, -0.01947830803692341, 0.003526876214891672, 0.005586660001426935, 0.007851324044167995, -0.00610983744263649, 0.009212317876517773, 0.000549245101865381, 0.0010655629448592663, 0.007287902291864157, -0.005059823393821716, -0.020385637879371643, -0.014444095082581043, -0.004997627809643745, -0.0073098535649478436, 0.014861173927783966, 0.002967112697660923, -0.0336882546544075, 0.025258872658014297, -0.01415872573852539, 0.02247834950685501, 0.004086639732122421, 0.008583040907979012, -0.001759779523126781, 0.002332348143681884, 0.01592216268181801, 0.007291560526937246, -0.01416604220867157, 0.003998833708465099, 0.009270855225622654, -0.0157172828912735, 0.021512482315301895, 0.008012302219867706, 0.0024567400105297565, 0.003181139938533306, 0.004686648026108742, -0.0011616008123382926, -0.014253848232328892, 0.02443934977054596, -0.01880512945353985, 0.023327140137553215, 0.030790654942393303, 0.01087331585586071, 0.023239335045218468, 0.0009343112469650805, -0.010865998454391956, -0.022536886855959892, -0.00701350811868906, -0.008268402889370918, -0.02670767344534397, 0.007024483755230904, -0.01399774756282568, 0.011378200724720955, 0.005418364889919758, 0.01791243441402912, -0.011151367798447609, 0.012563582509756088, -0.014378240332007408, -0.010192818939685822, -0.00956354197114706, 0.018205121159553528, -0.009761106222867966, -0.005711051635444164, 0.006362279877066612, -0.023912513628602028, 0.0007207413436844945, -0.022580789402127266, -0.026941822841763496, -0.004097615834325552, -0.007961081340909004, 0.0017506331205368042, 0.0011112953070551157, -0.026619866490364075, 0.0006754663190804422, 0.009892814792692661, -0.015570939518511295, 0.02073686197400093, 0.008465966209769249, -0.005513488315045834, 0.002323201624676585, -0.010748923756182194, 0.0032268723007291555, -0.0028975997120141983, -0.006581794936209917, 0.017707552760839462, -0.005992762744426727, -0.017151448875665665, -0.00208173505961895, 0.01778072491288185, -0.003193944925442338, 0.009044023230671883, -0.012973343953490257, -0.0025719855912029743, -0.009417198598384857, -0.008107425644993782, -0.04656647518277168, -0.006739114411175251, -0.009117194451391697, 0.0028134521562606096, -0.011824548244476318, -0.009775740094482899, -0.0031390662770718336, 0.0011652593966573477, 0.00025587232084944844, 0.008348891511559486, -0.005703734699636698, -0.005692759063094854, 0.009870863519608974, 0.021453944966197014, 0.017341693863272667, -0.021029548719525337, 0.015146543271839619, 0.007350097876042128, 0.010580629110336304, 0.015161178074777126, 0.001050928607583046, 0.01175137609243393, 0.0175904780626297, 0.008480601012706757, 0.009453784674406052, -0.009826960042119026, 0.012534313835203648, -0.01751730591058731, 0.008319622837007046, -0.010536725632846355, 0.002244542120024562, 0.004273227881640196, -0.008407428860664368, 0.010990390554070473, 0.004946407396346331, 0.0034939490724354982, -0.007536686025559902, -0.005026896484196186, -0.0034573632292449474, -0.026605233550071716, 0.008744019083678722, -0.009087925776839256, -0.013909941539168358, 0.009658665396273136, -0.011824548244476318, 0.0016390462405979633, -0.010887949727475643, -0.0019042936619371176, -0.006022031418979168, 0.00349943689070642, -0.01449531503021717, 0.01358798611909151, 0.003380532842129469, -0.0006448256899602711, -0.00023780805349815637, 0.01161235012114048, -0.009622079320251942, -0.02281493879854679, -0.007412293925881386, -0.02779061533510685, 0.006651308387517929, 0.012168454937636852, 0.017283156514167786, -0.010251356288790703, 0.007276926189661026, -0.013331885449588299, 0.008012302219867706, -0.008970851078629494, -0.010368430987000465, -0.012278212234377861, -0.004789088387042284, -0.0027183289639651775, 0.012512361630797386, 0.005173239856958389, -0.023180797696113586, 0.0028847944922745228, -0.01564411073923111, -0.0012201382778584957, 0.022434445098042488, -0.022610057145357132, -0.0035213883966207504, -0.009658665396273136, -0.003638463094830513, -0.02342958003282547, -0.03035162389278412, 0.002482350217178464, -0.015088005922734737, 0.02719060704112053, -0.017736822366714478, -0.004152494482696056, 0.007119607180356979, 0.010148915462195873, -0.011495275422930717, -0.009497687220573425, 0.019375868141651154, 0.0060110557824373245, -0.01966855488717556, 0.0265759639441967, 0.0053598275408148766, 0.006991556845605373, -0.02108808606863022, 0.004543962888419628, -0.004818357061594725, 0.028697943314909935, -0.025800343602895737, -0.0024933258537203074, 0.013961161486804485, -0.010383064858615398, 0.02315152809023857, 0.008334257639944553, 0.004265910480171442, -0.00821718294173479, 0.005407389253377914, 0.000732631713617593, 0.013939210213720798, -0.015058737248182297, 0.009731837548315525, 0.018439270555973053, -0.01846853829920292, -0.015000199899077415, -0.01946367509663105, 0.004620793275535107, -0.002057954203337431, 0.021834436804056168, 0.004225666169077158, -0.0013353836257010698, 0.009146463125944138, 0.013339201919734478, -0.010514774359762669, -0.002584790578112006, 0.013112369924783707, 0.0069037508219480515, -0.017897799611091614, -0.020839301869273186, -0.011685521341860294, -0.014319702982902527, -0.017092911526560783, -0.014283116906881332, 0.013039198704063892, -0.011356249451637268, 0.02664913609623909, -0.02141004242002964, 0.010317211039364338, -0.0028975997120141983, -0.029019899666309357, 0.0011314175790175796, -0.0029652833472937346, 0.015819722786545753, -0.00969525147229433, -0.015000199899077415, 0.02019539102911949, 0.032312627881765366, -0.011100147850811481, -0.0012055039405822754, 0.0346248522400856, -0.015014834702014923, 0.007243999280035496, -0.005469585303217173, -0.011122099123895168, -0.0015750209568068385, 0.011868450790643692, -0.021292967721819878, -0.005239094141870737, -0.013873355463147163, 0.029385758563876152, 0.005593976937234402, -0.012914806604385376, 0.004891528747975826, 0.012673339806497097, -0.0005954347434453666, -0.014209945686161518, -0.011575764045119286, 0.003021991578862071, 0.001183552318252623, 0.045688413083553314, 0.014575804583728313, 0.006889116484671831, 0.0005908615421503782, 0.0025866199284791946, -0.03166871517896652, 0.00848791841417551, 0.01751730591058731, -0.001997587503865361, -0.003054918721318245, -0.005220801569521427, 0.004982993472367525, 0.002703694626688957, 0.002804305637255311, -0.009556224569678307, -0.01415872573852539, 0.01352944876998663, -0.014546535909175873, -0.0026543037965893745, 0.0033183370251208544, 0.020692959427833557, 5.050562685937621e-05, -0.01208064891397953, 0.030644310638308525, 0.005458609201014042, 0.009556224569678307, -0.004525670316070318, 0.0011606862535700202, -0.019244158640503883, -0.00034299236722290516, 0.02154175005853176, 0.004972017370164394, -0.030380893498659134, 0.021234430372714996, 0.010507456958293915, 0.011078196577727795, -0.007500099949538708, 0.006457403302192688, 0.01306114997714758, 0.0069878981448709965, -0.01617094688117504, -0.01486849132925272, 0.0011579422280192375, -0.003631145926192403, -0.020985646173357964, -0.001993929035961628, 0.003530534915626049, -0.023590559139847755, -0.0007394915446639061, 0.0031006510835140944, 0.013353836722671986, -0.03608828783035278, -0.025961322709918022, -0.007141558453440666, -0.010214770212769508, 0.011905036866664886, 0.014846539124846458, -0.015497767366468906, -0.016083141788840294, 0.0044707912020385265, -0.013346519321203232, -0.0014460558304563165, 0.014231896959245205, 0.013763598166406155, -0.009453784674406052, 0.007704980671405792, -0.01107087917625904, -0.0060549587942659855, -0.00048064664588309824, 0.022390542551875114, 0.005308607593178749, -0.0223612729460001, -0.017707552760839462, -0.011334297247231007, -0.01925879344344139, -0.023063722997903824, -0.014414826408028603, -0.002112833084538579, -0.011766010895371437, 0.007185461465269327, 0.02121979556977749, -0.0024238128680735826, 0.006750090047717094, -0.002326860325410962, -0.012285529635846615, 0.0016792906681075692, 0.007170827127993107, -0.0020469785667955875, -0.003863466205075383, 0.009673300199210644, -0.015878260135650635, -0.01084404718130827, -0.025946687906980515, 0.012197723612189293, 0.010265990160405636, 0.01306114997714758, -0.014473363757133484, -0.014685561880469322, 0.0009027559426613152, 0.011378200724720955, 0.01691729947924614, 0.015688013285398483, -0.007734249345958233, 0.006329352501779795, 0.0043024965561926365, -0.010763558559119701, 0.0024969845544546843, -0.0003217268385924399, -0.0036274874582886696, 0.013346519321203232, -0.011648936197161674, 0.008751336485147476, 0.0175904780626297, -0.0043427408672869205, -0.011195271275937557, 0.018073411658406258, -0.013712378218770027, 0.00491713872179389, 0.021395407617092133, 0.007426928263157606, -0.007631808985024691, 0.016068506985902786, 0.03266385197639465, 0.012497727759182453, -0.0020725885406136513, 0.004701282363384962, 0.001926245167851448, 0.010324527509510517, 0.0029726005159318447, -0.004511035978794098, 0.008539138361811638, 0.009183049201965332, -0.010258673690259457, 0.013346519321203232, -0.012841634452342987, -0.009819643571972847, -0.011436738073825836, -0.003808587323874235, -0.0018366099102422595, -0.010968439280986786, -0.017136814072728157, 0.040976155549287796, 0.008502552285790443, -0.008151328191161156, 0.016566075384616852, -0.005725685972720385, -0.008904997259378433, 0.025756441056728363, -0.006673259660601616, 0.011063561774790287, -0.013075783848762512, -0.001457946258597076, -0.009592810645699501, 0.017941702157258987, 0.009548908099532127, 0.022771036252379417, -0.02443934977054596, 0.021995415911078453, -0.016609977930784225, 0.005678124725818634, -0.003757367143407464, -0.002936014672741294, 0.0009009266505017877, 0.009344027377665043, 0.0018329513259232044, -0.015117274597287178, 0.00760254031047225, 0.005312265828251839, -0.029897959902882576, -0.006175692193210125, -0.006234229542315006, -0.016258753836154938, -0.02893209271132946, 0.00223905430175364, 0.0029140631668269634, 0.01819048635661602, -0.006215936504304409, 0.0028939410112798214, -0.017341693863272667, -0.002136613940820098, 3.698600994539447e-05, 0.002871989505365491, 0.010822095908224583, -0.003192115807905793, -0.026093030348420143, -0.0001786990324035287, -0.007061069831252098, -0.018907569348812103, -0.01745876856148243, -0.018775859847664833, -0.0004266825271770358, 0.01605387218296528, 0.017209986224770546, -0.00015423224249389023, -0.0023177138064056635, 0.007404976990073919, -0.013595303520560265, -0.015292886644601822, -0.03439070284366608, 0.004112250171601772, 0.012117234990000725, 0.01150990929454565, -0.012812365777790546, 0.014378240332007408], "5179c470-17ef-44b7-bf30-d724ca8e6a1f": [-0.009355997666716576, -0.0008036824292503297, -0.0036423688288778067, 0.008009864948689938, -0.024513011798262596, -0.020615918561816216, 0.017968274652957916, 0.006418303586542606, -0.0276812594383955, 0.022668585181236267, 0.014904148876667023, 0.02217773161828518, -0.02434939332306385, -0.010233587585389614, 0.007184335496276617, 0.021984362974762917, -0.0010830422397702932, 0.023471804335713387, 0.01701631397008896, -0.031206492334604263, 0.06538785994052887, 0.010270773433148861, -0.03206920623779297, 0.028216736391186714, 0.004648250062018633, -0.005957197397947311, -0.015677617862820625, 0.023129692301154137, -0.03504408523440361, 0.00943036936223507, 0.001301510026678443, 0.008716398850083351, 0.050156477838754654, -0.003904530080035329, 0.003714881371706724, -0.04146982729434967, -0.0030845787841826677, 0.00912544410675764, 0.006775289308279753, -0.01521651167422533, -0.020288681611418724, 0.037959467619657516, -0.016570081934332848, -0.01062775868922472, -0.06889822334051132, 0.02207360975444317, 0.03873293846845627, -0.03560931235551834, -0.010590572841465473, -0.0059274486266076565, 0.010017908178269863, -0.026402059942483902, 0.002521210815757513, -0.002153069479390979, 0.018756618723273277, -0.03769173100590706, 0.020035816356539726, 0.07104013860225677, -0.01212263572961092, -0.08787795901298523, -0.009579113684594631, -0.020526671782135963, -0.0015032440423965454, -0.009184942580759525, 0.0029283976182341576, -0.030938751995563507, 0.027532514184713364, -0.01596023142337799, -0.04218379780650139, 0.02436426840722561, 0.02735402248799801, 0.027844877913594246, -0.03638278320431709, -0.00015443810843862593, -0.0017960838740691543, 0.009839415550231934, 0.03480609506368637, 0.0105087636038661, 0.01475540455430746, 0.016376715153455734, 0.008166045881807804, 0.0013861082261428237, 0.0572366937994957, 0.007749562617391348, 0.08055975288152695, 0.023382557556033134, -0.02812749147415161, -0.04780632257461548, -0.0038413137663155794, -0.012256505899131298, 0.00488252192735672, 0.02091340720653534, -0.025598842650651932, 0.010977307334542274, 0.025524470955133438, 0.01320846751332283, 0.03492509201169014, -0.00763800460845232, 0.005492372438311577, -0.022266976535320282, 0.006883128546178341, 0.03897092863917351, -0.058872874826192856, 0.010307959280908108, -0.015945356339216232, 0.013922438956797123, -0.003051111241802573, -0.0008989715715870261, -0.028439853340387344, 0.024408889934420586, 0.01350595522671938, -0.05316110700368881, 0.00519488425925374, 0.0007743984460830688, -0.03989314287900925, -0.03552006930112839, -0.016971690580248833, -0.026119446381926537, -0.024884872138500214, -0.03287242352962494, 0.021419135853648186, -0.0358770526945591, 0.015209074132144451, -0.00356241874396801, -0.014033996500074863, 0.033259157091379166, 0.012672988697886467, -0.0017021892126649618, 0.01988707296550274, 0.015930483117699623, -0.015826361253857613, -0.005789860151708126, 0.02561371773481369, 0.04274902492761612, 0.004960612393915653, 0.011646655388176441, -0.009616299532353878, 0.047836072742938995, -0.01287379302084446, 0.048550043255090714, -0.03168247267603874, -0.07014767080545425, -0.031652722507715225, 0.029555432498455048, 0.027963872998952866, -0.0014149273047223687, -0.04447445645928383, 0.014227364212274551, -0.0021363357082009315, 0.02664005011320114, -0.04126158729195595, -0.031414732336997986, 0.021434010937809944, -0.0055667441338300705, 0.019024357199668884, -0.036829013377428055, 0.0031533727888017893, 0.014978520572185516, 0.006682324223220348, 0.02481050044298172, -0.0015729678561910987, -0.07294405996799469, 0.018131893128156662, 0.018221139907836914, 0.055362518876791, 0.027651509270071983, 0.034300368279218674, 0.01506032980978489, -0.022118233144283295, 0.022147981449961662, 0.0210175272077322, -0.02207360975444317, 0.009720420464873314, -0.004968049470335245, -0.021091898903250694, -9.447568299947307e-05, 0.04155907407402992, 0.014160429127514362, 0.014390981756150723, -0.021657126024365425, -0.018295511603355408, -0.004109052941203117, -0.023456929251551628, 0.0048193056136369705, -0.009779918007552624, 0.01533550675958395, 0.006340213119983673, -0.002275783335790038, 0.022222353145480156, 0.008656901307404041, -0.02402215637266636, -0.018682247027754784, -0.03308066725730896, 0.008203231729567051, 0.00726614473387599, -0.015015707351267338, -0.013305150903761387, -0.017373299226164818, 0.011483036912977695, 0.0035717154387384653, -0.0022460343316197395, -0.04435546323657036, -0.03032890148460865, 0.04215405136346817, -0.050364717841148376, 0.013714197091758251, -0.02549472264945507, -0.05687970668077469, 0.0033783481922000647, -0.03388388454914093, 0.059348855167627335, -0.03197995945811272, 0.007043028715997934, 0.009898913092911243, 0.007269863039255142, -0.002329702954739332, -0.0333186574280262, 0.03962540253996849, -0.013163844123482704, -0.030581766739487648, -0.0266549251973629, 0.02262396365404129, -0.02446838840842247, -0.016019729897379875, -0.03822720795869827, -0.05298261344432831, 0.005994383245706558, 0.019217725843191147, -0.021285267546772957, -0.00781649723649025, 0.009385746903717518, -0.00737770227715373, -0.003396941116079688, -0.036025796085596085, -0.021523257717490196, 0.019589584320783615, 0.026803668588399887, 0.001247590291313827, -0.0027666385285556316, -0.007727250922471285, 0.01108886580914259, 0.011393790133297443, 0.017209680750966072, 0.008113984949886799, 0.012501933611929417, -0.0008933936478570104, 0.012427560985088348, 0.013067160733044147, 0.019039232283830643, -0.03700750693678856, -0.0036293535958975554, 0.02089853212237358, -0.003160810098052025, -0.025569094344973564, -0.031771719455718994, 0.032664183527231216, 0.036025796085596085, -0.019485464319586754, 0.02180587127804756, -0.017655912786722183, 0.022014113143086433, 0.021776121109724045, 0.02585170790553093, 0.029317442327737808, 0.014480228535830975, -0.019931696355342865, 0.019693706184625626, -0.012539119459688663, -0.006964937783777714, 0.03650177642703056, -0.016733700409531593, 0.039803896099328995, 0.0005670865066349506, 0.010925247333943844, 0.01056826114654541, 0.0070764957927167416, -0.017834406346082687, 0.010679819621145725, -0.00883539393544197, -0.02481050044298172, -0.027368895709514618, -0.02457250840961933, 0.03388388454914093, 0.026372311636805534, 0.028767090290784836, -0.019113603979349136, -0.024661755189299583, -0.0007190842879936099, -0.03171222284436226, 0.014450480230152607, -0.006994686555117369, 0.014108368195593357, 0.02240084670484066, 0.015588371083140373, 0.037394240498542786, 0.0033021168783307076, -0.01159459538757801, -0.009408058598637581, -0.026848291978240013, 0.027606885880231857, -0.001384248840622604, -0.016733700409531593, 0.008307352662086487, -0.03897092863917351, 0.04941275715827942, -0.02469150349497795, 0.06895771622657776, 0.020645666867494583, -0.02171662449836731, 0.03986339271068573, 0.05339909717440605, -0.02942156419157982, -0.029213322326540947, -0.005496090743690729, 0.001435379614122212, 0.006805038079619408, 0.008575092069804668, -0.00976504385471344, 0.0063811177387833595, -0.03215845301747322, 0.02561371773481369, 0.05203065276145935, -0.0719325989484787, 0.043462999165058136, 0.03950640559196472, -0.03343765065073967, 0.024438640102744102, -0.03079000860452652, -0.01545450184494257, -0.0486987866461277, -0.021404262632131577, -0.017864154651761055, -0.05051346495747566, 0.007957804016768932, -0.023471804335713387, -0.036829013377428055, -0.041083093732595444, -0.02033330500125885, -0.00450694328173995, -0.037067003548145294, -0.0005150260985828936, -0.016108974814414978, -0.009095695801079273, -0.02872246690094471, 0.02607482299208641, -0.011356604285538197, 0.01778978295624256, 0.005328753963112831, -0.015543748624622822, 0.016346964985132217, 0.0008701524347998202, -0.014205052517354488, 0.019366469234228134, -0.0010560824302956462, 0.034419361501932144, -0.03444911167025566, 0.002331562340259552, -0.007113682106137276, -0.008069362491369247, 0.014963646419346333, 0.014056308194994926, -0.007913180626928806, -0.03168247267603874, -0.0016445508226752281, 0.0058753881603479385, 0.024869997054338455, -0.012553993612527847, -0.021672001108527184, 0.008753584697842598, 0.014725656248629093, -0.02643181011080742, -0.003683273447677493, 0.04158882424235344, -0.010471577756106853, -0.002675532829016447, -0.031176742166280746, 0.03322941064834595, 0.019901948049664497, -0.02446838840842247, 0.03516308218240738, 0.0024282457306981087, -0.01710556074976921, -0.01985732465982437, -0.003324428340420127, 0.021761247888207436, 0.008203231729567051, 0.0026736734434962273, -0.013803442940115929, 0.005975790321826935, 0.02170174941420555, -0.02894558198750019, 0.009326249361038208, -0.03230719640851021, -0.015707366168498993, 0.0015487968921661377, 0.0014772139256820083, 0.0016501287464052439, -0.006362524814903736, 0.013974498957395554, -0.049799490720033646, -0.011921831406652927, 0.00407558586448431, -0.0039751832373440266, 0.016346964985132217, -0.0011880927486345172, -0.03974439576268196, -0.002867040690034628, -0.012249068357050419, 0.01395218726247549, 0.007351672276854515, -0.0019485463853925467, 6.45525724394247e-05, 0.04503968358039856, -0.009497304446995258, 0.04081535339355469, 0.0010467859683558345, -0.011579720303416252, 0.029927292838692665, -0.020972903817892075, -0.02171662449836731, 0.039595652371644974, 0.058783628046512604, -0.02954055927693844, 0.02805311791598797, -0.005871669389307499, 0.027428394183516502, 0.027740756049752235, 0.020705165341496468, 0.0021623659413307905, -0.03721575066447258, -0.002143773017451167, 0.05452955141663551, -0.004469757433980703, -0.026506181806325912, 0.009408058598637581, -0.023709794506430626, 0.023248687386512756, -0.00826272927224636, 0.0007460441556759179, -0.002945131156593561, -0.011877208948135376, 0.02183561958372593, 0.007039309944957495, 0.018206266686320305, -0.02907945215702057, -0.03504408523440361, -0.028186988085508347, 0.021196020767092705, 0.022430595010519028, 0.007667753379791975, 0.012472184374928474, 0.011163237504661083, -0.03653152659535408, -0.006570766214281321, -0.026342563331127167, -0.02860347181558609, -0.006288152653723955, -0.007794185541570187, -0.003584730438888073, -0.06122303009033203, -0.027041658759117126, -0.00993609894067049, 0.007537602446973324, 0.010099717415869236, 0.006994686555117369, -0.040964096784591675, -0.005838202312588692, 0.021553006023168564, 0.01337952259927988, 0.016376715153455734, 0.011222735047340393, -0.013074597343802452, 0.027725882828235626, 0.03090900368988514, -0.014792591333389282, -0.014933898113667965, -0.013022537343204021, 0.028871210291981697, -0.010679819621145725, -0.009006449021399021, -0.005477497819811106, -0.04248128831386566, -0.02457250840961933, 0.0033318656496703625, 0.030938751995563507, -0.023129692301154137, 0.011735902167856693, -0.014294298365712166, 0.017388174310326576, -0.013022537343204021, 0.042213547974824905, -0.027755631133913994, 0.0280233696103096, -0.004618501290678978, -0.025583967566490173, -0.022683460265398026, -0.015796612948179245, -0.031087497249245644, -0.010873186402022839, -0.022252103313803673, 0.03159322589635849, -0.014621535316109657, 0.01038976851850748, 0.03549031913280487, -0.007608255837112665, 0.011676404625177383, -0.01735842414200306, -0.0007260566344484687, -0.015134702436625957, -0.005774985998868942, -0.013862941414117813, -0.029451312497258186, -0.043016765266656876, 0.015320632606744766, 0.0012847763719037175, 0.017492294311523438, 0.007254988886415958, -0.013535704463720322, 0.027160655707120895, 0.008827956393361092, -0.012665552087128162, -0.025524470955133438, -0.02985292114317417, -0.021776121109724045, -0.0064331782050430775, -0.008939514867961407, -0.003398800501599908, -0.011535096913576126, 0.013677011243999004, -0.015409878455102444, -0.0007381421164609492, 0.021315015852451324, 0.003370910882949829, 0.016287468373775482, 0.021880242973566055, -0.005016391631215811, -0.029436437413096428, 0.02504849061369896, 0.017492294311523438, 0.020184561610221863, -0.027889501303434372, 0.031325485557317734, 0.00468543590977788, -0.004038399551063776, -0.0306710135191679, 0.03787022456526756, 0.008761021308600903, 0.02457250840961933, -0.003986339084804058, 0.02573271282017231, -0.04774682596325874, 0.016034603118896484, 0.000370930356439203, 0.001115579972974956, 0.020303556695580482, -0.03334840387105942, 0.009601425379514694, -0.02446838840842247, -0.034508608281612396, -0.01090293563902378, -0.027859751135110855, 0.006217499263584614, 0.0007548758294433355, 0.010188964195549488, 0.002857744228094816, -0.013409271836280823, -0.008463533595204353, 0.0216125026345253, -0.0018871895736083388, 0.020645666867494583, 0.03620428964495659, -0.007652878761291504, 0.04759807884693146, 0.013052286580204964, 0.00689056608825922, 0.02043742500245571, -0.005860513541847467, -0.020764661952853203, -0.04242178797721863, -0.009147755801677704, 0.018087269738316536, -0.0293025691062212, 0.02985292114317417, -0.00425407849252224, 0.017388174310326576, 0.016971690580248833, -0.007273581810295582, -0.0126432403922081, 0.011840022169053555, 0.04399847611784935, 0.016138724982738495, 0.027666384354233742, -0.008842830546200275, 0.015781737864017487, -0.029942167922854424, 0.013587764464318752, -0.0018156064907088876, 0.005042421631515026, 0.011587157845497131, -0.006213780492544174, -0.004283827263861895, 0.004012369550764561, 0.004272671416401863, -0.004689154680818319, -0.02284707874059677, 0.005983227398246527, 0.0010793237015604973, 0.020883657038211823, -0.012085449881851673, -0.000981710385531187, -0.004272671416401863, 0.008396598510444164, 0.0196490827947855, -0.001514399889856577, 0.013535704463720322, -0.004514380358159542, 0.006827349774539471, 0.05191165581345558, 0.002781512914225459, -0.01618334650993347, 0.011721027083694935, -0.018087269738316536, 0.04158882424235344, -0.033497150987386703, 0.029153823852539062, 0.008299915120005608, -0.005548151209950447, -0.004272671416401863, -0.008604840375483036, 0.02207360975444317, 0.019619334489107132, -0.0220438614487648, 0.00488624069839716, -0.013282839208841324, 0.022787580266594887, 0.002989754546433687, 0.020065566524863243, 0.016689077019691467, -0.02781512774527073, -0.012591179460287094, -0.021091898903250694, -0.000955680210608989, -0.019455716013908386, 0.043373752385377884, -0.0022348787169903517, 0.0186227485537529, -0.02434939332306385, 0.013253090903162956, 0.04747908562421799, 0.0005461694090627134, -0.04572390764951706, -0.008344538509845734, -0.0003393222577869892, 0.019440840929746628, 0.005529558286070824, -0.02011018991470337, -0.002569552743807435, 0.015766864642500877, 0.008857705630362034, 0.005893981084227562, 0.04736008867621422, -0.0060947854071855545, -0.0015422893920913339, 0.005098200868815184, -0.013610076159238815, 0.0206754170358181, 0.020377928391098976, 0.01390012726187706, 0.030522270128130913, 0.02744326926767826, 0.02689291536808014, -0.02241572178900242, 0.021285267546772957, 0.016941942274570465, -0.008790770545601845, 0.0156329944729805, -0.01488183718174696, -0.007734687998890877, 0.0017142746364697814, 0.0019801545422524214, -0.026907790452241898, -0.03629353642463684, -0.02918357402086258, -0.015075204893946648, 0.0021902553271502256, -0.006953781936317682, -0.006425740662962198, 0.019321845844388008, -0.01825088821351528, -0.019143352285027504, -0.003049252089112997, -0.004808149766176939, 0.007965241558849812, -0.007162023801356554, 0.004358199425041676, 0.026104573160409927, -0.004559003747999668, -0.023739542812108994, 0.0019522650400176644, -0.020630793645977974, -0.05012672767043114, -0.009735294617712498, 0.00297302077524364, -0.024974117055535316, 0.019678831100463867, 0.012390375137329102, -0.028291109949350357, -0.00781649723649025, 0.006994686555117369, 0.016570081934332848, 0.02803824469447136, 0.009549365378916264, 0.004648250062018633, 0.02537572756409645, 0.004700310528278351, 0.00976504385471344, -0.0009528912487439811, -0.004901114851236343, 0.0007074636523611844, 0.0038636254612356424, 0.012048264034092426, 0.025450099259614944, -0.011527660302817822, -0.019232599064707756, -0.02228185161948204, 0.004968049470335245, 0.025673214346170425, 0.023010697215795517, 0.005336191039532423, 0.0013926157262176275, 0.02954055927693844, 0.0010040219640359282, -0.008463533595204353, 0.0040793041698634624, 0.0013238216051831841, -0.009393183514475822, 0.018816117197275162, 0.0038413137663155794, 0.02733914740383625, -0.035430822521448135, 0.03138498589396477, -0.02079441212117672, 0.0047040292993187904, -0.02629793994128704, -0.014978520572185516, 0.008307352662086487, 0.01630234345793724, 0.027963872998952866, 0.02356104925274849, -0.007660316303372383, 0.027086282148957253, -0.03596629947423935, 0.04367123916745186, 0.02504849061369896, 0.014435605145990849, 0.0014223644975572824, 0.01825088821351528, 0.01976807788014412, 0.009289062581956387, 0.04227304458618164, 0.004008650779724121, 0.008783333003520966, -0.013431583531200886, -0.002249753102660179, 0.005243225954473019, -0.007020717021077871, -0.004023525398224592, 0.031890712678432465, 0.02241572178900242, -0.0031180460937321186, 0.028856337070465088, 0.026595426723361015, 0.030388399958610535, 0.037751227617263794, -0.009913788177073002, -0.03415162116289139, 0.01643621176481247, -0.00620262511074543, -0.04628913477063179, -0.0003026010817848146, -0.010307959280908108, -0.02918357402086258, 0.003904530080035329, -0.03242619335651398, 0.0156329944729805, -0.0182806383818388, 0.030046287924051285, 0.017834406346082687, -0.011609469540417194, 0.00982454139739275, 0.016406463459134102, 0.015692492946982384, -0.014175303280353546, 0.012144947424530983, 0.013156406581401825, -0.014324047602713108, 0.015766864642500877, -0.035460568964481354, 0.03653152659535408, 0.041529323905706406, 0.032812926918268204, -0.01710556074976921, 0.028186988085508347, 0.058515891432762146, 0.01850375346839428, 0.0030436741653829813, 0.011163237504661083, 0.0031477948650717735, -0.011386353522539139, 0.001539500430226326, 0.007366546895354986, -0.01189208310097456, -0.01954496279358864, 0.03629353642463684, -0.02309994399547577, 0.0021381950937211514, 0.008850268088281155, 0.027264775708317757, 0.022118233144283295, -0.004462319891899824, 0.0011704294010996819, 0.0111483633518219, 0.018905362114310265, 0.0029878951609134674, -0.02631281316280365, -0.006291871424764395, 0.0019522650400176644, -0.007273581810295582, -0.0055667441338300705, 0.02390316128730774, 0.005804734770208597, 0.00043716790969483554, 0.0019801545422524214, 0.043462999165058136, 0.002257190179079771, 0.006310464348644018, 0.009712982922792435, -0.004417696967720985, -0.03034377656877041, 0.024200649932026863, -0.037037257105112076, -0.023352809250354767, -0.0222967267036438, 0.0005852147005498409, -0.02216285653412342, -0.029257945716381073, 0.009616299532353878, -0.012881230562925339, 0.045307423919439316, 0.04328450560569763, -0.013543141074478626, -0.02745814248919487, 0.006020413711667061, -0.00016257254173979163, -0.02309994399547577, 0.01458434946835041, 0.002229300793260336, 0.024319645017385483, 0.00019290237105451524, 0.02527160570025444, 0.005682020913809538, -0.007548758294433355, -0.02332305908203125, -0.004440008662641048, -0.0018936970736831427, -0.017417922616004944, -0.015484251081943512, 0.012985351495444775, 0.01597510650753975, 0.010560824535787106, 0.0009473133832216263, -0.019782952964305878, 0.007098807487636805, 0.005131667945533991, -0.01679319702088833, 0.017284052446484566, -0.00726614473387599, 0.012301129288971424, -0.040845103561878204, -0.015201636590063572, -0.020392803475260735, 0.023977532982826233, -0.013141532428562641, 0.021047275513410568, -0.042689528316259384, 0.021419135853648186, 0.021657126024365425, -0.0016138724749907851, 0.013186155818402767, 0.0010477155447006226, -0.0036776955239474773, 0.015603246167302132, 0.005391970276832581, -0.03584730625152588, -0.024379141628742218, -0.02077953703701496, -0.006611670833081007, -0.024855121970176697, -0.0252864807844162, -0.04331425204873085, 0.008039613254368305, -0.03334840387105942, -0.05134642869234085, 0.016272593289613724, 0.030581766739487648, -0.028781963512301445, 0.016376715153455734, 0.010412080213427544, 0.014852088876068592, 0.0105087636038661, -0.011899519711732864, 0.012487058527767658, -0.01997631974518299, 0.0034155340399593115, 0.014115805737674236, 0.023144567385315895, 0.023010697215795517, -0.009006449021399021, -0.009088258258998394, -0.02836548164486885, 0.012115199118852615, 0.0043210131116211414, -0.00244312034919858, -0.001061660354025662, -0.011133488267660141, 0.006388554815202951, 0.0031273425556719303, -0.002333421492949128, 0.021091898903250694, 0.036025796085596085, 0.0027201559860259295, 0.006604233756661415, 0.006500112824141979, 0.0106351962313056, 0.021553006023168564, -0.007623129989951849, -0.0141381174325943, -0.00970554631203413, -0.04587265104055405, -0.02100265398621559, 0.008991574868559837, -0.013037411496043205, 0.008701523765921593, -0.029124075546860695, -0.0021121648605912924, -0.02722015231847763, -0.030522270128130913, 0.02848447673022747, -0.025078238919377327, 0.007905744016170502, -0.011029367335140705, 0.05571950227022171, 0.024661755189299583, -0.016004854813218117, 0.001590631203725934, 0.02481050044298172, -0.012353189289569855, -0.01287379302084446, 0.016584957018494606, -0.00588654400780797, 0.004306138958781958, 0.004730059299618006, 0.009541927836835384, 0.02171662449836731, -0.025598842650651932, 0.01850375346839428, -0.03507383540272713, 0.009385746903717518, 0.004261515568941832, -0.004097897093743086, -0.021523257717490196, -0.025345977395772934, -0.008634589612483978, 0.015915608033537865, -0.011609469540417194, -0.0076119741424918175, -0.021657126024365425, 0.005012672860175371, -0.03236669301986694, 0.004611064214259386, 0.031206492334604263, -0.015900732949376106, -0.004466038662940264, -0.02516748569905758, -0.008612277917563915, 0.004358199425041676, -0.018652498722076416, 0.013699322938919067, -0.017730284482240677, 0.001538570737466216, 0.018429381772875786, -0.031860966235399246, -0.012286254204809666, -0.01573711633682251, -0.0005889332969672978, -0.006983530707657337, -0.018801242113113403, -0.031771719455718994, 0.01297047734260559, -0.024974117055535316, 0.012806858867406845, -0.013528266921639442, -0.04563466086983681, 0.04631888121366501, 0.02870759181678295, 0.01734355092048645, 0.014227364212274551, -0.013476206921041012, 0.002999051008373499, -0.0016910333652049303, -0.008634589612483978, -0.017492294311523438, 0.002729452447965741, -0.02100265398621559, 0.005756393074989319, 0.032009709626436234, 0.016227969899773598, -0.04985899105668068, -0.005652272142469883, 0.023709794506430626, -0.00757850706577301, -0.019619334489107132, -0.0012317862128838897, -0.026803668588399887, -0.014331484213471413, 0.000555001082830131, 0.0034397051203995943, 0.006440615281462669, 0.01044926606118679, 0.00826272927224636, -0.03596629947423935, -0.012263943441212177, 0.006589359138160944, -0.010538512840867043, -0.009631173685193062, -0.0319502130150795, -0.020050691440701485, -0.07728738337755203, -0.01689731888473034, -0.009051072411239147, 0.03435986489057541, -0.01746254600584507, 0.00832966435700655, 0.04001213610172272, 0.011505348607897758, -0.0010049516567960382, 0.007645441684871912, -0.01920285075902939, -0.0014818621566519141, 0.008827956393361092, 0.007809060160070658, -0.0150380190461874, 0.013691885396838188, -0.004294983111321926, -0.004209455102682114, -0.0029265382327139378, 0.007478104904294014, 0.007920618169009686, 0.018325261771678925, 0.027755631133913994, -0.006109660025686026, -0.007868558168411255, 0.025598842650651932, -0.005529558286070824, -0.0020024662371724844, -0.018459130078554153, -0.013305150903761387, 0.007418606895953417, 0.008493282832205296, -0.010017908178269863, -0.004930863622575998, 0.029019955545663834, 0.01584123633801937, 0.010888060554862022, 0.007898306474089622, 0.015543748624622822, -0.01859300024807453, 0.01874174363911152, 0.03010578639805317, 0.0014474650379270315, 0.001299650757573545, -0.0035233735106885433, -0.03251544013619423, -0.004971768241375685, -0.03504408523440361, -0.02354617603123188, 0.007135993335396051, 0.01051620114594698, 0.0074372002854943275, 0.003261212259531021, -0.022207479923963547, 0.005957197397947311, -0.012308565899729729, 0.01551399938762188, -0.0068124751560389996, 0.010241024196147919, -0.006968656554818153, 0.027175528928637505, 0.015290883369743824, 0.004696591757237911, 0.004187143873423338, -0.035549815744161606, 0.016257720068097115, 0.01953008770942688, 0.031295739114284515, 0.0360555462539196, 0.0027164374478161335, 0.0012819874100387096, -0.006953781936317682, 0.020258933305740356, 0.03563906252384186, 0.0016742997104302049, 6.861978909000754e-05, 0.014547163620591164, 0.0030938752461224794, 0.018072396516799927, -0.00017198525893036276, -0.0186227485537529, 0.003183121560141444, 0.021850494667887688, 0.0031366392504423857, -0.010077405720949173, -0.026134321466088295, -0.010940121486783028, -0.04331425204873085, -0.0005034054629504681, 0.0105087636038661, 0.019336720928549767, 0.019574711099267006, 0.03822720795869827, 0.02515261061489582, 0.006444334052503109, 0.03772147744894028, 0.006150564644485712, 0.0021716624032706022, 0.0008915343787521124, -0.008232980966567993, -0.0004267093609087169, -0.01587098464369774, -0.0024821655824780464, -0.009266750887036324, -0.006481519900262356, -0.0296446792781353, 0.010672382079064846, -0.0038338766898959875, -0.02448326349258423, -0.018756618723273277, -0.022118233144283295, -0.010479015298187733, -0.028112616389989853, -0.008351976051926613, 0.005711769685149193, -0.004042118322104216, 0.0130299748852849, -0.001379600609652698, -0.011936706490814686, 0.004986642859876156, -0.010426954366266727, 0.029391814023256302, 0.010969869792461395, -0.0526256263256073, -0.007470667362213135, -0.0025342260487377644, -0.01207057572901249, 0.0024096528068184853, -0.008939514867961407, 0.03079000860452652, -0.0009305796702392399, 0.003499202663078904, 0.01343902014195919, 0.009809667244553566, -0.013000225648283958, 0.02962980605661869, 0.037840474396944046, -0.008418910205364227, 0.027517640963196754, -0.022311599925160408, 0.021463759243488312, -0.006871972698718309, 0.0011592735536396503, 0.022802455350756645, -0.006660012528300285, -0.013862941414117813, 0.010464140214025974, -0.019663957878947258, -0.004228048492223024, -0.01090293563902378, 0.008694087155163288, -0.000716760172508657, 0.033378154039382935, -0.02812749147415161, -0.01182514801621437, -0.03260468691587448, 5.299004988046363e-05, -0.0018713854951784015, 0.018444256857037544, -0.014301735907793045, -0.017715411260724068, 0.006440615281462669, 0.0314444825053215, -0.013044849038124084, 0.005507246591150761, -0.006927751936018467, -0.012509370222687721, -0.013907563872635365, -0.007749562617391348, -0.0010216853115707636, 0.007846246473491192, -0.011988766491413116, -0.02399240806698799, -0.023471804335713387, 0.03787022456526756, -0.00738513981923461, 0.006819912698119879, 0.016332091763615608, 0.021642252802848816, 0.012152384966611862, 0.006741821765899658, -0.010211275890469551, -0.012286254204809666, 0.05012672767043114, 0.005577899981290102, 0.00958655122667551, 0.008166045881807804, 0.010999619029462337, -0.01836988516151905, -0.0038673439994454384, 0.014971083961427212, 0.01609410159289837, -0.0146512845531106, 0.006656294222921133, 0.016465961933135986, 0.01545450184494257, 0.021448886021971703, 0.030165283009409904, -0.012992789037525654, -0.010114592500030994, -0.024736126884818077, -0.005603930447250605, 0.014480228535830975, 0.005232070107012987, -0.007734687998890877, 0.0005494231591001153, -0.012799421325325966, 0.01896486058831215, 0.01521651167422533, 0.004090460017323494, 0.01080625131726265, 0.014725656248629093, 0.0061394087970256805, -0.01710556074976921, -0.004328450653702021, -0.010828563012182713, -0.00042066661990247667, -0.012918416410684586, -0.00032770162215456367, -0.021969489753246307, 0.021880242973566055, 0.005730362609028816, -0.011646655388176441, -0.0070058424025774, 0.017388174310326576, 0.018355010077357292, -0.004845336079597473, -0.06336494535207748, -0.02470637857913971, 0.012472184374928474, 0.017551792785525322, 0.007712376303970814, 0.0036014642100781202, -0.004830461461097002, -0.005239507649093866, 0.003990057855844498, 0.02482537366449833, 0.003911967389285564, 0.02976367436349392, -0.010865749791264534, -0.020422551780939102, -0.01407118234783411, -0.007016998250037432, -0.002768497681245208, 0.024438640102744102, 0.015677617862820625, -0.03804871439933777, -0.009660922922194004, 0.030031414702534676, 0.015885859727859497, -0.01734355092048645, -0.010545949451625347, -0.014993395656347275, 0.021047275513410568, 0.0008608559146523476, 0.02399240806698799, -0.004350761882960796, -0.02506336383521557, 0.002997191622853279, 0.0027573418337851763, 0.0035661375150084496, 0.0009417354594916105, 0.0038115649949759245, -0.028514225035905838, 0.028514225035905838, -0.004373073577880859, 0.01120042335242033, 0.0007767225615680218, -0.006280715577304363, -0.021523257717490196, 0.0023520146496593952, -0.012197008356451988, -0.024081654846668243, -0.014993395656347275, -0.001488369656726718, 0.01006253156810999, 0.008656901307404041, -0.014695907011628151, 0.011155799962580204, 0.017611289396882057, -0.00867921207100153, -0.011869771406054497, -0.023501552641391754, 0.02839522995054722, 0.009482430294156075, 0.004436289891600609, 0.0063588060438632965, -0.003186840331181884, 0.008820519782602787, 0.016941942274570465, 0.012479621917009354, 0.01125992089509964, 0.0196490827947855, -0.011609469540417194, 0.01930697076022625, -0.014740530401468277, -0.005774985998868942, 0.002841010456904769, 0.023516425862908363, 0.002653221134096384, 0.005507246591150761, 0.007020717021077871, -0.028811713680624962, -0.01679319702088833, -0.011936706490814686, -0.0003023686585947871, -0.004202018026262522, -0.0036126200575381517, 0.006775289308279753, -0.005023828707635403, 0.01825088821351528, 0.002363170264288783, -0.020273808389902115, -0.005306442268192768, -0.018771493807435036, 0.008195794187486172, 0.024557635188102722, -0.0065484545193612576, -0.026491306722164154, -0.016852695494890213, -0.002788949990645051, -0.027547389268875122, 0.034984588623046875, 0.008872579783201218, -0.05012672767043114, 0.00889489147812128, 0.004458601586520672, -0.017031189054250717, 0.022445470094680786, -0.01372163463383913, -0.025673214346170425, 0.031295739114284515, 0.00712483748793602, 0.012115199118852615, 0.0016064351657405496, 0.005339909810572863, -0.00488624069839716, -0.006176594644784927, -0.009802229702472687, 0.0027722164522856474, 0.024066779762506485, 0.021672001108527184, -0.013684447854757309, 0.014286861754953861, 0.0016110835131257772, 0.013015099801123142, -0.009787355549633503, 0.03079000860452652, 0.036799266934394836, -0.005696895066648722, 0.010925247333943844, -0.002606738591566682, -0.003945434466004372, 0.0053175981156528, 0.006834786850959063, 0.028975332155823708, -1.2543012417154387e-05, 0.03079000860452652, -0.029332317411899567, -0.02481050044298172, -0.011602031998336315, -0.010553386993706226, -0.017373299226164818, 0.0220438614487648, -0.006957500707358122, -0.00537337688729167, 0.006224936340004206, -0.018459130078554153, -0.00413508340716362, -0.014911586418747902, 0.000612174510024488, -0.00106351962313056, 0.015484251081943512, -0.0010542231611907482, -0.04465295001864433, -0.010538512840867043, -0.008865142241120338, 0.02803824469447136, 0.008128860034048557, -0.01701631397008896, -0.0022348787169903517, 0.005994383245706558, -0.013453895226120949, -0.02354617603123188, 0.00769750215113163, -0.01545450184494257, 0.0036814140621572733, -0.008478407748043537, -0.0003541966434568167, -0.01768566109240055, -0.0085007194429636, -3.887099228450097e-05, 0.011178111657500267, 0.004402822349220514, -0.005741518456488848, 0.0053696585819125175, -0.029213322326540947, 0.023575924336910248, -0.04976974427700043, -0.00020998468971811235, -0.016049478203058243, -0.0016631438629701734, -0.0009133811108767986, 0.02033330500125885, -0.005246944725513458, 0.017611289396882057, 0.005975790321826935, 0.018652498722076416, -0.007195490878075361, -0.016808072105050087, 0.004856491461396217, 0.00028005708009004593, 0.0028521663043648005, 0.00222372286953032, -0.01988707296550274, -0.01338696014136076, 0.010069969110190868, 0.03192046284675598, -0.0206754170358181, 0.0017728426028043032, -0.024751001968979836, 0.004670561756938696, 0.008932077325880527, -0.007162023801356554, -0.01664445362985134, 0.01767078787088394, -0.021880242973566055, 0.02342718094587326, 0.01257630530744791, 0.015766864642500877, 0.009110569953918457, 0.03150397911667824, -0.004153676331043243, 0.013788568787276745, 0.05640372633934021, -0.013803442940115929, 0.018102144822478294, -0.02998679131269455, -0.005183728411793709, -0.010642633773386478, -0.01929209753870964, -0.008597403764724731, 0.0024338236544281244, 0.023412305861711502, 0.013409271836280823, -0.010174090042710304, 0.011230172589421272, -0.0020061847753822803, 0.0293025691062212, 0.04248128831386566, -0.007411169819533825, -0.021627377718687057, 0.013632387854158878, 0.004045836627483368, 2.1396475858637132e-05, 0.01188464555889368, -0.02458738349378109, -0.0003404843155294657, -0.020467175170779228, 0.013996810652315617, 0.011914394795894623, -1.8593000277178362e-05, -0.021315015852451324, 0.0065484545193612576, -0.003499202663078904, 0.024037031456828117, 0.042897772043943405, -0.02861834689974785, -0.05101919174194336, -0.008091673254966736, -0.0008692227420397103, -0.004964331164956093, -0.02193973958492279, 0.0008431925671175122, 0.010761628858745098, -0.017492294311523438, -0.006131971720606089, -0.0034675945062190294, -0.013981936499476433, -0.02470637857913971, 0.0016426915535703301, -0.02689291536808014, -0.02170174941420555, 0.025301354005932808, 0.03111724555492401, 0.01108886580914259, 0.03147423267364502, 0.005049858707934618, -0.001985732465982437, 0.023010697215795517, 0.014450480230152607, 0.034062378108501434, -0.013729071244597435, 0.016332091763615608, 0.01395962480455637, -0.013186155818402767, -0.004529254976660013, -0.01768566109240055, 0.027398645877838135, -0.010196401737630367, -0.0005089833866804838, -0.02928769402205944, -0.04661637172102928, -0.004603626672178507, 0.015811488032341003, -0.015558622777462006, 0.0025360852014273405, 0.018176516517996788, 0.010151778347790241, -0.01149791106581688, -0.008932077325880527, -0.003099453169852495, 0.007942929863929749, 0.008991574868559837, -0.015134702436625957, -0.004596189595758915, 0.010151778347790241, -0.001409349380992353, -0.0004308927746023983, 0.0002737819158937782, 0.003447142196819186, -0.02448326349258423, 0.0030343777034431696, -0.015484251081943512, 0.009452681057155132, 0.022147981449961662, -0.011959018185734749, 0.013833192177116871, -0.008775896392762661, -0.02655080519616604, -0.007530164904892445, 0.005986946169286966, -0.005220914259552956, 0.018102144822478294, 0.016064351424574852, -0.0013154547195881605, -0.007459511514753103, -0.0008668986265547574, -0.017968274652957916, 0.005972071550786495, -0.0006465715705417097, -0.003558700205758214, -0.00706533994525671, 0.004715184681117535, -0.005339909810572863, 0.07062365114688873, 0.01108886580914259, 0.008188357576727867, -0.012821733020246029, -0.0008018231601454318, -0.021344764158129692, -0.008656901307404041, 0.020422551780939102, 0.006228655111044645, -0.005968353245407343, -0.0038673439994454384, 0.006979812402278185, 0.00537337688729167, -0.0011629922082647681, -0.031176742166280746, 0.004990361165255308, 0.026952413842082024, 0.014004248194396496, 0.0010644493158906698, 0.019455716013908386, 0.0034211119636893272, -0.003426689887419343, -0.017284052446484566, 0.006786445155739784, -0.005756393074989319, 0.02872246690094471, -0.001277339062653482, 0.006444334052503109, 0.007002124097198248, 0.02491462044417858, 0.0008557428373023868, -0.012308565899729729, -0.007254988886415958, 0.006343931891024113, 0.0025360852014273405, 0.015424752607941628, 0.005165135487914085, 0.026104573160409927, -0.006444334052503109, 0.008946951478719711, -0.005496090743690729, 0.0032779460307210684, 0.024200649932026863, 0.03941715881228447, -0.014152991585433483, -0.001881611649878323, 0.018652498722076416, -0.004045836627483368, 0.012836607173085213, -0.0026978442911058664, -0.01575198955833912, -0.03516308218240738, 0.0009965847712010145, 0.005503528285771608, 0.010010471567511559, 0.0029953322373330593, 0.00689056608825922, -0.009103133343160152, -0.013082034885883331, 0.005016391631215811, -0.014896712265908718, 0.016689077019691467, -0.0023185471072793007, -0.026937538757920265, -0.020199434831738472, -0.017998024821281433, -0.0003363009018357843, -0.004220610950142145, 0.010352582670748234, -0.004968049470335245, -0.007403732743114233, 0.003770660376176238, 0.0041239275597035885, -0.02445351332426071, 0.001647339784540236, 0.01575198955833912, 0.01108142826706171, 0.022028986364603043, 0.01677832379937172, 0.01062775868922472, 0.00668976129963994, -0.014487666077911854, 0.001194600248709321, -0.008976700715720654, 0.013915001414716244, -0.0015776160871610045, 0.003261212259531021, -0.020645666867494583, 0.005425437353551388, -0.019604459404945374, -0.0015227667754516006, 0.004934582393616438, 0.004547847900539637, -0.0006753907073289156, 0.007228958420455456, -0.00040486257057636976, -0.01177308801561594, -0.000192669962416403, 0.021657126024365425, -0.002019199775531888, 0.006250966805964708, 0.02113652229309082, -0.01545450184494257, 0.005239507649093866, 0.003610760672017932, -0.0007734688115306199, 0.025331104174256325, 0.0014112087665125728, -0.017060937359929085, 0.01734355092048645, -0.023813914507627487, -0.00574895553290844, 0.00017837659106589854, 0.0006437826086767018, -0.028558848425745964, 0.0023501552641391754, -0.0016575659392401576, -0.007095088716596365, -0.021225769072771072, -0.011676404625177383, -0.0027722164522856474, 0.002465431811287999, -0.02296607382595539, -0.01056826114654541, 0.031057747080922127, 0.00011266196088399738, -0.01619822159409523, -0.014115805737674236, -0.015603246167302132, -0.029213322326540947, 0.014457916840910912, 0.01395218726247549, 0.008091673254966736, -0.017998024821281433, 0.02171662449836731, -0.010880623944103718, 0.012732486240565777, -0.01246474776417017, 0.027175528928637505, -0.004016087856143713, 0.017328675836324692, 0.01679319702088833, 0.011468162760138512, 0.022549590095877647, 0.0010207557352259755, 0.034627605229616165, -0.01723942905664444, -0.031652722507715225, -0.004611064214259386, -0.013647262006998062, 0.026744171977043152, -0.02550959587097168, -0.004726340528577566, -0.027071408927440643, -0.012189570814371109, -0.008552780374884605, -0.01884586550295353, 0.03772147744894028, -0.003341162111610174, -0.00456644082441926, 0.004622220061719418, -0.011966454796493053, 0.0028094023000448942, 0.007013279478996992, -0.001884400611743331, 0.005975790321826935, 0.0130299748852849, 0.01893511228263378, 0.018786367028951645, -0.02158275432884693, -0.016451086848974228, -0.010761628858745098, 0.022341348230838776, -0.008418910205364227, 0.003339302958920598, -0.010084843263030052, -0.004633375443518162, 0.0007051395368762314, -0.024215523153543472, 0.017328675836324692, 0.00039068542537279427, 0.004949456546455622, 0.01664445362985134, 0.0019541243091225624, -0.008359412662684917, -0.009408058598637581, 0.0017328676767647266, -0.018756618723273277, -0.0170014388859272, 0.004480913281440735, -0.016912193968892097, 0.0071731796488165855, -0.013015099801123142, -0.006816193927079439, -0.03433011472225189, -0.013238215819001198, 0.014271986670792103, 0.006585640832781792, 0.0099955964833498, 0.0018611593404784799, 0.002021059161052108, -0.0016129427822306752, 0.025896331295371056, -0.002262768102809787, -0.014547163620591164, -0.008515594527125359, -0.017715411260724068, -0.009489866904914379, -0.02286195382475853, -0.011163237504661083, -0.031652722507715225, -0.034865595400333405, 0.002363170264288783, 0.005622523371130228, -0.014666158705949783, -0.013766257092356682, 0.012472184374928474, 0.020154811441898346, 0.017626164481043816, -0.00017465799464844167, 0.017893902957439423, 0.011304544284939766, 0.0017133449437096715, -0.0029581463895738125, -0.014569475315511227, -0.02079441212117672, 0.005964634474366903, 0.030611515045166016, 0.01407118234783411, -0.0009245369583368301, 0.026922663673758507, -0.0013981936499476433, 0.005726644303649664, 0.023635422810912132, -0.010188964195549488, 0.028335733339190483, 0.01631721667945385, -0.011408665217459202, 0.0106351962313056, -0.004733778070658445, -0.01572224125266075, -0.007117400411516428, -0.018801242113113403, -0.00430985726416111, 0.0038059870712459087, -0.010836000554263592, -0.0027480453718453646, 0.006507549900561571, -0.008113984949886799, -2.4287106498377398e-05, -0.0029860357753932476, -0.010017908178269863, -0.011007056571543217, 0.01183258555829525, 0.029927292838692665, 0.006228655111044645, -0.0032853831071406603, -0.0055667441338300705, -0.0025360852014273405, -0.028811713680624962, -0.0011741479393094778, 0.0015515858540311456, -0.018236014991998672, -0.020645666867494583, 0.0006423881859518588, 0.03020990639925003, -0.02793412283062935, -0.002123320708051324, 0.023144567385315895, -0.0001407257659593597, 0.0015469376230612397, -0.00488252192735672, 0.016004854813218117, 0.010441828519105911, -0.004529254976660013, 0.002521210815757513, -0.003556841053068638, -0.011111176572740078, 0.00519860303029418, 0.007749562617391348, 0.009051072411239147, 0.005696895066648722, 0.00046064157504588366, -0.028350606560707092, -0.009162630885839462, -0.023129692301154137, 0.007214084267616272, 0.01920285075902939, 0.0025844271294772625, 0.027383770793676376, 0.019678831100463867, -0.01551399938762188, 0.012769673019647598, -0.007950366474688053, 0.0016677920939400792, 0.02195461466908455, -0.01908385567367077, 0.0022385972552001476, 0.004804431460797787, 0.004968049470335245, -0.0141381174325943, -0.018697120249271393, -0.004815586842596531, -0.02571783773601055, 0.013416709378361702, -0.003714881371706724, 0.013870378024876118, -0.009579113684594631, -0.01951521262526512, 0.013877815566956997, 0.009065946564078331, 0.0036423688288778067, 0.0019708580803126097, 0.012598617002367973, -0.019708579406142235, 0.0005615085829049349, 0.005693176761269569, 0.022832203656435013, -0.010910372249782085, 0.015900732949376106, -0.006050162483006716, 0.015662742778658867, 0.0015004550805315375, -0.0006144986837171018, -0.011676404625177383, 0.011408665217459202, 0.01074675377458334, -0.01297047734260559, -0.004358199425041676, -0.04361174255609512, 0.027502765879034996, 0.0017403048695996404, -0.008850268088281155, -0.024780750274658203, -0.008805644698441029, 0.016138724982738495, -0.010047657415270805, -0.011505348607897758, -0.016614705324172974, 0.0013470628764480352, -0.018012898042798042, 0.02092828042805195, -0.012658114545047283, -0.02124064415693283, 0.007400013972073793, 0.014376107603311539, 0.004908551927655935, -0.00726614473387599, 0.025331104174256325, 0.010865749791264534, 0.008314789272844791, 0.005284130573272705, 0.02183561958372593, 0.012628366239368916, -0.017254304140806198, -0.009088258258998394, 0.011282232590019703, 0.010404642671346664, 0.005153979640454054, -0.0010244742734357715, -0.013238215819001198, 0.018578125163912773, -0.011817711405456066, -0.012747361324727535, 0.0042503597214818, -0.005838202312588692, -0.032128702849149704, 0.009593987837433815, -0.02919844724237919, -0.009006449021399021, -0.002811261685565114, -0.017254304140806198, -0.025331104174256325, -0.010865749791264534, -0.031265988945961, 0.01618334650993347, 0.004120208788663149, -0.004369355272501707, 0.004257797263562679, -0.0018695262260735035, 0.038197461515665054, 0.024423765018582344, -0.005209758877754211, -0.026253316551446915, 0.008032175712287426, -0.011810273863375187, 0.02540547586977482, 0.010196401737630367, -0.01125992089509964, -0.0006674887263216078, -0.013825754635035992, -0.003025081241503358, -0.008708961308002472, -0.013141532428562641, 0.0071806167252361774, 0.008820519782602787, -0.0296446792781353, 0.027502765879034996, 0.006355087272822857, -0.0058530764654278755, -0.001164851477369666, -0.009913788177073002, 0.012918416410684586, 0.005637397523969412, 0.011430976912379265, -0.018994608893990517, 0.002818698761984706, 0.006150564644485712, 0.010412080213427544, -0.003588448977097869, -0.0022702054120600224, -0.0029060859233140945, -0.022668585181236267, -0.00850815698504448, 0.013491081073880196, 0.007474386133253574, 0.001354500069282949, -0.0005814961041323841, -0.004945738241076469, -0.018176516517996788, 0.0055109653621912, 0.0023984969593584538, -0.0034434236586093903, -0.005168854258954525, 0.01470334455370903, -0.004380510654300451, 0.02952568419277668, 0.001591560780070722, 0.0027443268336355686, -0.008158608339726925, -0.008076799102127552, -0.0012791984481737018, -0.007950366474688053, 0.002143773017451167, -0.022237228229641914, -0.004741215147078037, 0.027978746220469475, -0.017165057361125946, 0.0019429685780778527, -0.0017570385243743658, -0.029124075546860695, -0.02100265398621559, -0.007091370411217213, 0.0013321884907782078, 0.010233587585389614, 0.010910372249782085, 0.014286861754953861, 0.01886073872447014, -0.0027740756049752235, 0.006325338501483202, -0.013015099801123142, 0.014480228535830975, 0.010783940553665161, 0.016064351424574852, -0.01609410159289837, -0.011936706490814686, 0.0002812191378325224, 0.0001248055195901543, 0.026506181806325912, -0.023233812302350998, 0.0011899520177394152, 0.0011323137441650033, 0.001296861795708537, 0.004339606035500765, -0.008798208087682724, 0.0051576984114944935, 0.0020619637798517942, 0.0013610075693577528, 0.0033374435734003782, 0.0032221670262515545, -0.014361233450472355, 0.020987778902053833, 0.010880623944103718, -0.009274188429117203, 0.0002656474825926125, 0.005815890617668629, 0.011840022169053555, 0.006905440241098404, -0.0035531222820281982, 0.000205801276024431, -0.0016873148269951344, 0.000850164913572371, 0.0011732183629646897, 0.007284737657755613, 0.03569855913519859, -0.02287682704627514, 0.00946755614131689, 0.017254304140806198, 0.01688244380056858, -0.018117019906640053, 0.022118233144283295, 0.02219260483980179, 0.007645441684871912, 0.003822720842435956, 0.005458904895931482, -0.005116793792694807, 0.014681032858788967, 0.021196020767092705, 0.018652498722076416, -0.003508499125018716, 0.0033355841878801584, 0.0018537221476435661, 0.0013135954504832625, 0.0039751832373440266, 0.008017301559448242, 0.011542534455657005, 0.0010969870490953326, 0.017403047531843185, 0.02586658112704754, 0.002201411174610257, -0.004231766797602177, -0.011483036912977695, -0.01545450184494257, 0.012866356410086155, -0.010233587585389614, 0.017209680750966072, 0.02594095468521118, 0.02251984179019928, -0.0004585498827509582, -0.003422971349209547, 0.00046110639232210815, -0.022594213485717773, -0.003162669250741601, 0.020020943135023117, -0.0005805664113722742, -0.01509751658886671, 0.01642133854329586, -0.003900811541825533, -0.0003500132297631353, -0.017507169395685196, -0.028558848425745964, 0.0035196549724787474, 0.012531681917607784, 0.002206989098340273, 0.021761247888207436, 0.012189570814371109, 0.016346964985132217, 0.022683460265398026, 0.03102799877524376, -0.010590572841465473, 0.008225543424487114, 0.007786748465150595, 0.007455793209373951, -0.008314789272844791, -0.01188464555889368, -0.02113652229309082, 0.005734081380069256, 0.017715411260724068, -0.009631173685193062, 0.0047635268419981, -0.018474005162715912, -0.0004894607118330896, 0.03804871439933777, 0.004837898537516594, 0.021448886021971703, -0.010360020212829113, -0.00793549232184887, 0.01477027963846922, 0.00844865944236517, 0.01770053617656231, -0.006819912698119879, -0.00039393920451402664, 0.00037743791472166777, -4.46522535639815e-05, -0.013074597343802452, 0.0013684447621926665, 0.015305757522583008, -0.001356359338387847, 0.013714197091758251, 0.01997631974518299, -0.01585611142218113, -0.005336191039532423, -0.007786748465150595, 0.01108142826706171, -0.006522424519062042, 0.005272974725812674, -0.024200649932026863, -0.002143773017451167, 0.03159322589635849, -0.007920618169009686, 0.009988159872591496, -0.019708579406142235, -0.025598842650651932, 0.0021251798607409, -0.00042345558176748455, 0.026342563331127167, 0.011616906151175499, 0.011185549199581146, 0.01621309667825699, -0.026714423671364784, 0.016451086848974228, 0.0013721634168177843, -0.00488624069839716, 0.00259930151514709, 0.004391666501760483, 0.01108886580914259, 0.002867040690034628, 0.011587157845497131, -0.02458738349378109, -0.017060937359929085, -0.02677392028272152, 0.005321316886693239, 0.013543141074478626, -0.006648856680840254, 0.006091067101806402, 0.0014390982687473297, 0.0066451383754611015, -0.017150184139609337, -0.006920314859598875, -0.017432797700166702, 0.005120512098073959, -0.004302420187741518, 0.019024357199668884, -0.010300521738827229, -0.005280412267893553, 0.00032770162215456367, 0.003521514357998967, -9.029225475387648e-05, 0.0009631174034439027, -0.007228958420455456, -0.006741821765899658, 0.005518402438610792, -0.004064430017024279, 0.009779918007552624, -0.011646655388176441, -0.011163237504661083, 0.002305532107129693, 0.0043358877301216125, 0.019812701269984245, -0.01332002505660057, 0.003028799779713154, 0.0033374435734003782, -0.01521651167422533, -0.020987778902053833, 0.002149350941181183, 0.006853379774838686, -0.02549472264945507, -0.0023761854972690344, -0.0046519688330590725, -0.03798921778798103, 0.007898306474089622, 0.002117742784321308, -0.009928662329912186, 0.007459511514753103, 0.01337952259927988, -0.0043135760352015495, -0.002019199775531888, -0.0034917653538286686, 0.0033541773445904255, 0.010069969110190868, 0.006808756850659847, 0.008880017325282097, -0.008433785289525986, 0.031325485557317734, -0.002495180582627654, -0.009415495209395885, 0.0013861082261428237, -0.02284707874059677, 0.049353260546922684, 0.00712483748793602, -0.027502765879034996, -0.02180587127804756, -0.0071508679538965225, 0.009906350634992123, 0.009854289703071117, -0.012308565899729729, 0.007422325666993856, 0.004588752519339323, 0.0140116848051548, -0.019098730757832527, -0.00821066927164793, 0.003904530080035329, -0.025226982310414314, 0.012925853952765465, -0.004187143873423338, 0.015290883369743824, 0.011007056571543217, -0.007474386133253574, -0.009065946564078331, -0.016287468373775482, -1.4917977750883438e-05, 0.0036293535958975554, 0.01293329056352377, -0.00982454139739275, -1.4329683835967444e-05, 0.004633375443518162, 0.0055109653621912, 0.0005694106221199036, -0.007288455963134766, -0.00303251831792295, -0.010583135299384594, 0.00902132410556078, -0.01780465617775917, -0.0199911929666996, -0.008597403764724731, 0.0010309818899258971, 0.0021065869368612766, 0.0049159894697368145, -0.00856765452772379, -0.018399633467197418, -0.014242238365113735, 0.009616299532353878, 0.0032258855644613504, -0.00381900230422616, 0.0002519351546652615, -0.0009686953271739185, 0.022088484838604927, 0.004499506205320358, -0.02376929111778736, 0.00250075850635767, 0.006392273586243391, 0.008232980966567993, 0.0126432403922081, -0.010940121486783028, -0.005336191039532423, -0.03316991403698921, 0.017284052446484566, -0.0007037450559437275, -0.007452074438333511, 0.006827349774539471, 0.00626212265342474, 0.0062844338826835155, -0.009616299532353878, 0.004380510654300451, 0.0012884949101135135, 0.0011332433205097914, 0.005752674303948879, 0.006343931891024113, -0.014316610060632229, -0.0061170971021056175, 0.009437806904315948, -0.01350595522671938, 0.0007590592140331864, 0.022311599925160408, 0.004670561756938696, 0.0020359335467219353, 0.007333079352974892, -0.003960309084504843, 0.005484934896230698, 0.009244440123438835, -0.017194807529449463, -0.0236651711165905, -0.022564465180039406, -0.002015481237322092, 0.006388554815202951, -0.004246641416102648, 0.010270773433148861, 0.010107154957950115, -0.023129692301154137, 0.0022683460265398026, -0.0034397051203995943, 0.0050610145553946495, 0.00867921207100153, -0.008872579783201218, 0.011267358437180519, -0.0015720381634309888, 0.026625176891684532, 0.0009422003058716655, 0.009608862921595573, 0.011423539370298386, 0.03376488760113716, 0.010880623944103718, -0.01033027097582817, -0.007031872868537903, -0.0006047373171895742, 0.026357436552643776, 0.0005382673698477447, -0.019128479063510895, -0.004830461461097002, 0.020303556695580482, 0.0032054332550615072, -0.008255291730165482, -0.003244478488340974, -0.022014113143086433, -0.010739317163825035, -0.005414281506091356, -0.0018713854951784015, 0.008166045881807804, 0.01090293563902378, 0.024527886882424355, 0.004038399551063776, -0.008121422491967678, -0.029019955545663834, 0.0020898531656712294, -0.016391588374972343, -0.004897396080195904, 0.030700761824846268, 0.017611289396882057, 0.0186227485537529, 0.02183561958372593, 0.012687863782048225, 0.030700761824846268, -0.03650177642703056, -0.0032537749502807856, 0.026922663673758507, -0.005172572564333677, 0.010590572841465473, -0.0242601465433836, -0.008069362491369247, -0.017194807529449463, 0.00993609894067049, 0.006790163926780224, -0.0003079465532209724, -0.0021251798607409, -0.008396598510444164, 0.020720040425658226, -0.016629578545689583, 0.006143127102404833, 0.030730510130524635, 0.00419086217880249, 0.003610760672017932, 0.0006679535144940019, -0.011423539370298386, 0.011059116572141647, -0.014800027944147587, -0.0037799570709466934, 0.01051620114594698, -0.0002814515319187194, -0.01165409293025732, 0.020615918561816216, -0.006849661469459534, 0.010412080213427544, 0.015930483117699623, -0.006626545451581478, -0.022594213485717773, 0.014056308194994926, 0.00931137427687645, -0.013855503872036934, -0.0008464463171549141, -0.011988766491413116, 0.006790163926780224, 0.0121300732716918, -0.0018295511836186051, 0.01446535438299179, -0.002180958865210414, -0.004547847900539637, -0.01735842414200306, 0.009207253344357014, 0.010672382079064846, 0.0016101538203656673, 0.003393222577869892, -0.02182074449956417, 0.004525536205619574, 0.010426954366266727, 0.009698108769953251, -0.007690065074712038, -0.012769673019647598, -0.006180313415825367, -0.011542534455657005, -0.0306710135191679, 0.003025081241503358, 0.02527160570025444, 0.010159214958548546, 0.029555432498455048, -0.001565530663356185, 0.001351711107417941, -0.005488653667271137, -0.021672001108527184, -0.003822720842435956, -0.004845336079597473, 0.026699548587203026, 0.019559836015105247, -0.012434998527169228, -0.010151778347790241, 0.003369051730260253, -0.009608862921595573, -0.0012587461387738585, -0.0029414126183837652, -0.008463533595204353, -0.00856765452772379, -0.0015831940108910203, 0.0037353336811065674, 0.009489866904914379, 0.015915608033537865, -0.00799498986452818, 0.024542760103940964, 0.004242922645062208, 0.006236092187464237, -0.0006033428362570703, 0.013416709378361702, -0.00827016681432724, -3.358360845595598e-05, 0.001749601331539452, 0.024780750274658203, -0.009162630885839462, -0.0045701595954597, 0.020764661952853203, -0.021315015852451324, -0.0024319645017385483, 0.013007663190364838, 0.011029367335140705, -0.010196401737630367, 0.02332305908203125, 0.0006498253787867725, -0.009088258258998394, -0.0009575395379215479, 0.03311041370034218, 0.012330877594649792, -0.008374287746846676, 0.004968049470335245, -0.0010300521971657872, 0.0006461067823693156, -0.004856491461396217, -0.006845942698419094, -0.02193973958492279, -0.00259930151514709, -0.0425407849252224, -0.00883539393544197, -0.017760034650564194, 0.01575198955833912, -0.011527660302817822, -0.0018016616813838482, 0.0060724737122654915, 0.011914394795894623, -0.01332002505660057, 0.005670865066349506, 0.008827956393361092, -0.004971768241375685, -0.03376488760113716, -0.012769673019647598, -0.025673214346170425, 0.024037031456828117, 0.021657126024365425, -5.484935172717087e-05, 0.03102799877524376, -0.0006261192611418664, -0.010129466652870178, -0.009861727245151997, -0.010925247333943844, -0.022936325520277023, 0.004889959003776312, 0.002922819694504142, 0.007809060160070658, 0.0012011078651994467, -0.015201636590063572, -0.0059274486266076565, 0.014205052517354488, -0.013796006329357624, -0.002682969905436039, 0.01338696014136076, 0.01872687041759491, 0.013758820481598377, -0.015320632606744766, -0.016272593289613724, -0.007176897954195738, 0.0015487968921661377, 0.007117400411516428, -0.011877208948135376, -0.005332472268491983, 0.00023008837888482958, -5.153020993020618e-06, 0.0050833262503147125, 0.03206920623779297, -0.008166045881807804, 0.0017663349863141775, 0.0057787043042480946, -0.019158227369189262, -0.009422932751476765, -0.012442436069250107, -0.005953478626906872, -0.01710556074976921, -0.03569855913519859, 0.011795399710536003, -0.016733700409531593, 0.009750169701874256, -0.013312588445842266, -0.0008524890872649848, -0.009534490294754505, -0.00750041613355279, 0.0016296764370054007, 0.012732486240565777, -0.010486451908946037, 0.0033560364972800016, 0.013937313109636307, 0.01596023142337799, 0.012725049629807472, -0.04010138288140297, -0.002180958865210414, -0.003238900564610958, 0.0005247874069027603, -0.0008348257397301495, -0.001164851477369666, 0.001775631564669311, -0.008880017325282097, 0.013052286580204964, 0.0016250282060354948, -0.017090685665607452, 0.00243940157815814, 0.003499202663078904, -0.003315131878480315, -0.027264775708317757, -0.011237609200179577, -0.008292478509247303, 0.006276996806263924, -0.013119220733642578, -0.0019057824974879622, 0.00964604876935482, 0.0026420652866363525, -0.013833192177116871, 0.007314486429095268, 0.004670561756938696, 0.009378309361636639, -0.004692873451858759, -0.0007149008451960981, 0.012174696661531925, -0.01642133854329586, -0.002177240327000618, 0.0037186001427471638, -0.04387947916984558, 0.016808072105050087, 0.017284052446484566, -0.0040941787883639336, -0.011854897253215313, 0.005206040106713772, -0.003926841542124748, 0.01688244380056858, 0.019396217539906502, 0.008195794187486172, 0.0014502539997920394, 0.016748575493693352, -0.003019503317773342, 0.027889501303434372, 0.0014474650379270315, -0.0040718670934438705, -0.012546557001769543, -0.014056308194994926, -0.00977248139679432, -0.0090138865634799, -0.021880242973566055, -0.01587098464369774, 0.013082034885883331, 0.005581618752330542, 0.007455793209373951, -0.0020136218518018723, -0.026729296892881393, 0.008671775460243225, -0.01884586550295353, 0.014963646419346333, 0.005596492905169725, 0.0025955827441066504, 0.007734687998890877, -0.01039720606058836, 0.00545146781951189, 0.0071508679538965225, -0.018102144822478294, -0.0014948772732168436, 0.008180920034646988, -0.00827016681432724, 0.008880017325282097, -0.00238176342099905, -0.01859300024807453, -0.016510583460330963, -0.009065946564078331, 0.011542534455657005, 0.008158608339726925, 0.023605672642588615, -0.015826361253857613, 0.02103240229189396, 0.023739542812108994, 0.02479562535881996, -0.003644227981567383, 0.014554600231349468, 0.0027108595240861177, -0.020303556695580482, -0.006964937783777714, -0.003638650057837367, -0.015246259979903698, -0.016153598204255104, -0.007913180626928806, 0.022252103313803673, -0.004406541120260954, 0.0346871018409729, -0.0002621613093651831, 0.012420124374330044, -0.01770053617656231, -0.009616299532353878, -0.0005219985032454133, 0.01735842414200306, -0.016971690580248833, -0.011683841235935688, 0.026848291978240013, -0.019277222454547882, 0.0013349774526432157, -0.01470334455370903, 0.0014753545401617885, -0.01419017743319273, 0.0017607571789994836, 0.01389268971979618, 0.0002877266670111567, -0.004681717604398727, 0.010471577756106853, -0.003618197748437524, -0.006563329137861729, 0.011512786149978638, -0.0034062375780194998, 0.0031161869410425425, -0.0053250351920723915, 0.014271986670792103, 0.006845942698419094, -0.006050162483006716, -0.023010697215795517, 0.002391059882938862, 0.00757850706577301, -1.183851168207184e-06, 0.007957804016768932, 0.0055109653621912, -0.005815890617668629, 0.010754191316664219, -0.00487880315631628, -0.0252864807844162, -0.006604233756661415, -0.007552476599812508, -0.035906802862882614, 0.018295511603355408, -0.003941716160625219, -0.003051111241802573, -0.013543141074478626, 5.5139866162789986e-05, 0.021880242973566055, 0.0055109653621912, -0.012427560985088348, 0.00500151701271534, 0.012501933611929417, -0.01120042335242033, 0.005473779048770666, 0.004949456546455622, 0.02378416620194912, -0.010099717415869236, -0.005652272142469883, 0.00889489147812128, 0.00712483748793602, 0.00016896388842724264, -0.0050610145553946495, 0.009988159872591496, 0.021790996193885803, 0.005752674303948879, 0.010248461738228798, -0.017209680750966072, 0.039803896099328995, -0.0210175272077322, 0.022668585181236267, -0.008017301559448242, -0.0013981936499476433, 0.019455716013908386, -0.003501062048599124, -0.009088258258998394, 0.004707747604697943, 0.007913180626928806, -0.0003711627796292305, -0.006295589730143547, -0.004350761882960796, -0.002312969183549285, -0.00032072924659587443, -0.005507246591150761, -0.0033262877259403467, 0.008017301559448242, -0.02034818008542061, 0.0066005149856209755, -0.0026048794388771057, 0.027755631133913994, 0.0030083474703133106, 0.0012699018698185682, -0.009296500124037266, -0.008017301559448242, -0.0028540254570543766, -0.007210365496575832, -0.01667420193552971, 0.009348560124635696, -0.002231159945949912, -0.01384062971919775, -0.02698216214776039, -0.026372311636805534, 0.00228507979772985, 0.0003897557617165148, 0.0008069362374953926, 0.002259049564599991, 0.012301129288971424, 0.00750041613355279, 0.007448356132954359, -0.010285647585988045, -0.001196459517814219, -0.008597403764724731, -0.009422932751476765, -0.03055201843380928, 0.0009514967678114772, -0.0026420652866363525, -0.006976093631237745, 0.006905440241098404, 0.003692569909617305, 0.005165135487914085, 0.034389615058898926, -0.012368063442409039, -0.005994383245706558, -0.002807543147355318, -0.007600818295031786, 0.003499202663078904, -0.021686876192688942, 0.005864232312887907, -0.01419017743319273, 0.030819756910204887, 0.01816164329648018, -0.008552780374884605, 0.007537602446973324, 0.014257112517952919, -0.015134702436625957, 0.00619890633970499, 0.012189570814371109, -0.012025952339172363, -0.011921831406652927, 0.029243070632219315, -0.007474386133253574, 0.0033597550354897976, -0.020377928391098976, 0.003900811541825533, -0.0033114133402705193, 0.015647869557142258, -0.00895438902080059, -0.005678302142769098, 0.03560931235551834, -0.017298927530646324, -0.006362524814903736, 0.014056308194994926, 0.013796006329357624, -0.006131971720606089, 0.021508382633328438, -0.008731273002922535, 0.01000303402543068, -0.007455793209373951, -0.0013461331836879253, 0.017313802614808083, 0.005949759855866432, -0.005332472268491983, -0.014985958114266396, -0.011029367335140705, -0.0190541073679924, 0.019559836015105247, 0.011735902167856693, 0.006310464348644018, -0.006373680662363768, -0.006682324223220348, -0.01458434946835041, -0.010181526653468609, 0.011215297505259514, 0.007809060160070658, -0.031533729285001755, -0.00010632871999405324, -0.010010471567511559, -0.01482233963906765, -0.0125168077647686, -0.0130299748852849, 0.01557349693030119, -0.0015246260445564985, 0.01848888024687767, 0.010702131316065788, 0.02539060078561306, -0.006723228842020035, -0.014889274723827839, -0.00545146781951189, -0.00594232277944684, 0.004086741246283054, -0.005161416716873646, -0.002474728273227811, 0.011795399710536003, 0.026030199602246284, -0.005934885703027248, 0.0018407070310786366, 0.015647869557142258, -0.01698656566441059, 0.015365255065262318, 0.0196490827947855, -0.02861834689974785, 0.01686757057905197, 0.010865749791264534, -0.027725882828235626, 0.0036423688288778067, -0.015484251081943512, 0.0015218370826914907, 0.008106548339128494, -0.008857705630362034, 0.003554981667548418, 0.014390981756150723, -0.004748652223497629, -0.012234194204211235, -0.010605446994304657, -0.01596023142337799, -0.0007209435570985079, 0.045337170362472534, 0.026342563331127167, 0.0048713660798966885, -0.003664680290967226, -0.004220610950142145, -0.010865749791264534, 0.009043634869158268, 0.0012587461387738585, -0.01344645768404007, 0.008411473594605923, 0.017269179224967957, -0.009289062581956387, 0.012338315136730671, 0.005246944725513458, -0.013364648446440697, 0.005518402438610792, 0.008902328088879585, -0.010709567926824093, -0.0005071240593679249, 0.016599830240011215, 0.010932683944702148, 0.001039348659105599, -0.01270273793488741, -0.00022323221492115408, 0.01269530039280653, 0.002095431089401245, -0.0026662361342459917, -0.006912877317517996, -0.0005926518933847547, 0.009638611227273941, 0.03721575066447258, 0.013364648446440697, -0.026699548587203026, 0.004994079936295748, 0.006537298671901226, 0.0015636712778359652, 0.018994608893990517, 0.010850874707102776, -0.0015302039682865143, -0.010791377164423466, -0.029659554362297058, -0.012799421325325966, 0.014063745737075806, -0.012918416410684586, -0.02100265398621559, -0.009363435208797455, 0.00700956117361784, -0.007359109353274107, -0.009608862921595573, -0.004209455102682114, 0.012286254204809666, -0.0072252401150763035, -0.0156329944729805, -0.00024519520229659975, -0.007295893505215645, 0.015484251081943512, 0.008188357576727867, -0.028975332155823708, 0.015439627692103386, -0.005968353245407343, -0.011170674115419388, -0.00018999722669832408, 0.0099955964833498, 0.040845103561878204, -0.009564239531755447, 0.020526671782135963, 0.001963420771062374, 0.006871972698718309, 0.0009161700727418065, 0.001562741701491177, 0.015201636590063572, -0.010947558097541332, 0.011758212931454182, -0.016689077019691467, -0.0002886563306674361, -0.026387186720967293, -0.023293310776352882, -0.006057599559426308, -0.004968049470335245, 0.018474005162715912, -0.0006777148810215294, -0.0001236434472957626, 0.00763800460845232, -0.004596189595758915, -0.005522121209651232, -0.006723228842020035, 0.005228351801633835, 0.0028521663043648005, 0.01722455583512783, 0.0032054332550615072, -0.016808072105050087, -0.014866963028907776, -0.013929875567555428, 0.0045999083667993546, 0.013639825396239758, 0.009199816733598709, -0.004224329721182585, 8.105386223178357e-05, 0.001483721425756812, 0.013602638617157936, 0.00994353648275137, 0.020065566524863243, -0.0010188964661210775, 0.02219260483980179, -0.00832966435700655, -0.03224769979715347, -0.01269530039280653, -0.010047657415270805, 0.0017393751768395305, 0.016346964985132217, -0.010888060554862022, 0.024527886882424355, 0.018429381772875786, -0.0016491991700604558, -0.0010579416994005442, 0.018548376858234406, -3.134663711534813e-05, 0.011386353522539139, 0.015164450742304325, 0.0005061944248154759, 0.004741215147078037, 0.009541927836835384, 0.03459785506129265, 0.011073990724980831, 0.009638611227273941, -0.005146542564034462, 0.006764133460819721, 0.02330818586051464, -0.005466341972351074, 0.007388858124613762, 0.007433481514453888, -0.00525438180193305, -0.003692569909617305, 0.009177505038678646, -0.005224633030593395, -0.009385746903717518, 0.00312920194119215, 0.0014762842329218984, 0.010285647585988045, -0.003052970627322793, -0.011423539370298386, 0.01453228946775198, 0.007600818295031786, -0.0034638759680092335, 0.004982924088835716, -0.005395688582211733, -0.02641693502664566, 0.018087269738316536, 0.005670865066349506, 0.005079607479274273, -0.007801623083651066, -0.010776503011584282, -0.01643621176481247, 0.01677832379937172, -0.007162023801356554, 0.01044926606118679, -0.023724667727947235, 0.03650177642703056, -0.026684673503041267, 0.007734687998890877, 0.013862941414117813, 0.014123243279755116, 0.015528873540461063, 0.01676344871520996, 0.013394397683441639, -0.014666158705949783, -0.002636487362906337, 0.010531075298786163, -0.02330818586051464, -0.022341348230838776, -0.004157394636422396, -0.0035661375150084496, -0.002811261685565114, 0.00228322041220963, -0.01874174363911152, 0.004350761882960796, -0.004603626672178507, -0.0018611593404784799, -0.015484251081943512, -0.0030083474703133106, 0.017403047531843185, 0.010553386993706226, 0.026729296892881393, -0.0035977454390376806, -0.013967061415314674, 0.00562624167650938, -0.012806858867406845, -0.0016082945512607694, -0.0004090460133738816, 0.00844865944236517, 0.0017886466812342405, 0.0196490827947855, -0.006503831595182419, 0.001116509665735066, -0.02091340720653534, -0.008106548339128494, -0.008783333003520966, -0.022252103313803673, -0.04777657240629196, -0.005496090743690729, 0.01039720606058836, -0.009556801989674568, -0.014368670992553234, 0.005213477183133364], "52ee1b52-84d7-4379-b769-db8143089438": [-0.002788594691082835, -0.01253709476441145, -0.006885067094117403, -0.01783275231719017, -0.0027529578655958176, -0.04555833339691162, 0.019885443150997162, 0.025530342012643814, -0.019415033981204033, 0.00557718938216567, -0.0014495347859337926, 0.02142496034502983, 0.0028046313673257828, -0.032244350761175156, -0.026029260829091072, 0.005498788319528103, -0.01472520548850298, 0.007066816091537476, 0.01546645537018776, -0.049321599304676056, 0.08262080699205399, 0.009408166632056236, -0.01679215207695961, 0.011061723344027996, 0.016293233260512352, -0.026100534945726395, -0.02829577401280403, 0.026000751182436943, -0.04880842566490173, -0.024831857532262802, 0.008873611688613892, 0.017319578677415848, 0.024332938715815544, -0.00922998134046793, -0.00727707426995039, -0.017690204083919525, 0.018260395154356956, 0.003716938430443406, -0.028466830030083656, -0.030419738963246346, -0.04473155364394188, 0.02973550744354725, 0.010028250515460968, -0.01903015561401844, -0.06283514946699142, -0.0024999352172017097, 0.02296447940170765, 0.008830847218632698, -0.00010490640124771744, 0.005477406084537506, 0.02564438059926033, -0.0037276295479387045, -0.017661694437265396, 0.015380926430225372, 0.02350616082549095, -0.0323868989944458, 0.007462386507540941, 0.02290746010839939, -0.004034107550978661, -0.06049736216664314, 0.003688428783789277, 0.019129937514662743, 0.019015900790691376, -0.005602135322988033, -0.001609901199117303, -0.05288529768586159, 0.0031378373969346285, -0.01387704536318779, -0.08085320889949799, 0.021054336801171303, 0.01647854596376419, 0.015951119363307953, -0.035865072160959244, 0.004105381667613983, -0.007273510564118624, 0.018516981974244118, 0.003483516164124012, 0.018730804324150085, 0.003955706488341093, 0.019415033981204033, -0.0581025555729866, 0.0009648716077208519, 0.01231614500284195, -0.004704083316028118, 0.08091022819280624, 0.012137959711253643, 0.011346818879246712, -0.02945041097700596, -0.02759728766977787, -0.020056501030921936, 0.00527783902361989, 0.028081951662898064, -0.0007590679451823235, 0.003173474222421646, 0.008260655216872692, -0.016236213967204094, 0.014019593596458435, -0.0028046313673257828, 0.017875516787171364, -0.020013736560940742, 0.009301255457103252, -0.006582152564078569, -0.014668187126517296, 0.0041980380192399025, -0.011802972294390202, 0.010812263935804367, -0.00038198402035050094, -0.01357769500464201, -0.013071649707853794, 0.06551504880189896, -0.006371894385665655, -0.02788238413631916, 0.03697694465517998, -0.003146746661514044, -0.024204647168517113, -0.04915054142475128, 0.014019593596458435, 0.010455894283950329, -0.009757408872246742, -0.02892298437654972, 0.02592947706580162, -0.013634714297950268, 0.016364507377147675, 0.03931473195552826, 0.0014664622722193599, 0.0022380033042281866, 0.022565344348549843, 0.012822190299630165, 0.028595123440027237, 0.006653426680713892, -0.004682701081037521, -0.012815062887966633, 0.020013736560940742, 0.05165938660502434, 0.03515233099460602, 0.003586863400414586, 0.008716808632016182, 0.0728135034441948, -0.013812898658216, 0.0623219758272171, -0.047867611050605774, -0.015338161960244179, -0.018531236797571182, 0.008745318278670311, 0.0216387826949358, -0.0017595766112208366, -0.04689828306436539, 0.015922609716653824, 0.003973525017499924, 0.04219420254230499, -0.021524744108319283, -0.025558851659297943, 0.03723353147506714, 0.0230642631649971, 0.0027280119247734547, 0.01682066172361374, 0.003745448077097535, -0.0033463137224316597, 0.02403358928859234, 0.038887087255716324, 0.003000634955242276, -0.06562908738851547, -0.023777002468705177, 0.022066427394747734, 0.015651768073439598, -0.012672514654695988, -0.008887866511940956, 0.010313346050679684, -0.020455634221434593, 0.022608108818531036, 0.009964103810489178, 0.022037917748093605, -0.0028010676614940166, -0.0006975941359996796, -0.01332823559641838, -0.009778791107237339, 0.03033421002328396, -0.004661318846046925, -0.006817357148975134, -0.012280507944524288, -0.0008107416215352714, 0.008631279692053795, -0.003952142782509327, -0.007376857567578554, -0.028837455436587334, 0.021510489284992218, 0.00861702486872673, -0.02069796621799469, -0.007355475332587957, 0.0022878949530422688, -0.04621405526995659, -0.015737297013401985, 0.007152344565838575, 0.04533025622367859, -0.004500952549278736, -0.007227182388305664, 0.017177030444145203, 0.0030808181036263704, 0.023164046928286552, 0.009372529573738575, -0.04404732584953308, -0.05151683837175369, -0.06773880124092102, 0.055679239332675934, -0.05738981440663338, 0.050604529678821564, -0.006475241854786873, -0.012957611121237278, -0.021938133984804153, -0.05764640122652054, 0.0512317419052124, -0.03121800720691681, -0.0049998704344034195, -0.01133969146758318, -0.0208547692745924, 0.00016860752657521516, -0.018730804324150085, -0.0011786936083808541, 0.02255108952522278, -0.009564968757331371, -0.039143674075603485, 0.0182033758610487, -0.003937887959182262, -0.011496494524180889, -0.04119636490941048, -0.027739835903048515, 0.010798009112477303, -0.0045472802594304085, -0.022223228588700294, 0.013064522296190262, 0.04205165430903435, 0.020199047401547432, 0.0077261002734303474, -0.013527803122997284, 0.008232145570218563, 0.03458213806152344, 0.017034482210874557, 0.031075458973646164, 0.030134642496705055, -0.029179571196436882, 0.00664629926905036, 0.025031425058841705, 0.0044546243734657764, 0.0039129420183598995, 0.023677218705415726, -0.005484533496201038, -0.03087589144706726, 0.00412676390260458, 0.020897533744573593, -0.020298831164836884, 0.011068850755691528, 0.03771819546818733, -0.02397656999528408, -0.013470783829689026, -0.013349617831408978, 0.01305739488452673, 0.025943731889128685, -0.018288904801011086, -0.016621094197034836, -0.02132517658174038, 0.02293596975505352, -0.024660799652338028, 0.035266369581222534, 0.0038773049600422382, 0.008110979571938515, -0.014276179485023022, 0.026000751182436943, -0.06260707229375839, -0.003895123489201069, 0.02801067754626274, -0.0332706980407238, -0.021410705521702766, 0.008153744041919708, -0.004625681787729263, -0.03626420348882675, 0.0038274130783975124, -0.031360555440187454, -0.0039414516650140285, -0.0012668950948864222, -0.03116098791360855, -0.017847007140517235, -0.013071649707853794, -0.011881373822689056, 0.03740458935499191, 0.007398239802569151, -0.014924773015081882, -0.010327600874006748, -0.0009728899458423257, -0.04552982375025749, 0.013449401594698429, -0.005541552789509296, -0.04022704064846039, 0.018944626674056053, 0.01968587562441826, 0.001148402108810842, 0.0007835684227757156, -0.008652661927044392, -0.005099653732031584, -0.02967848815023899, -0.006977723445743322, -0.009465185925364494, -0.018288904801011086, -0.0002360950893489644, -0.007252128329128027, 0.027426229789853096, -0.0128079354763031, 0.019186956807971, -0.002911542309448123, 0.002767212688922882, 0.013150051236152649, 0.05901486054062843, -0.019429288804531097, -0.02246556058526039, 0.0026674289256334305, 0.016335997730493546, 0.015837080776691437, -0.0072663831524550915, -0.023905295878648758, 0.009115942753851414, -0.02759728766977787, 0.016735132783651352, 0.008973395451903343, -0.06146668642759323, 0.027055606245994568, 0.042764391750097275, -0.02791089378297329, 0.043933287262916565, -0.028837455436587334, 0.024532506242394447, -0.023962315171957016, -0.028267264366149902, 0.0060333432629704475, -0.020869024097919464, 0.0052564567886292934, -0.004358404316008091, -0.010926302522420883, -0.017120011150836945, -0.043306075036525726, -0.013948319479823112, -0.0211968831717968, -0.01754765585064888, -0.005627081263810396, -0.010904920287430286, -0.004123200196772814, 0.0443609319627285, 0.038259875029325485, 0.01406948547810316, -0.0008753336733207107, -0.04031256586313248, 0.013278343714773655, 0.000819205422885716, -0.00028554140590131283, 0.0459289588034153, -0.024817602708935738, 0.00922998134046793, -0.0007318947464227676, -0.002266512718051672, -0.022978734225034714, 0.006596407387405634, -0.008852229453623295, 0.032244350761175156, -0.006927831564098597, -0.01468244194984436, -0.003383732633665204, 0.006824484560638666, 0.018759313970804214, -0.00045103070442564785, -0.015238378196954727, 0.030476756393909454, 0.008296292275190353, -0.0399419441819191, 0.008453095331788063, 0.036435261368751526, -0.008759573101997375, -0.04131040349602699, -0.025245247408747673, 0.009857192635536194, -0.0022308758925646544, -0.0011822573142126203, 0.028808945789933205, 0.02457527071237564, -0.0035708267241716385, 0.0008267782395705581, -0.020370105281472206, 0.042792901396751404, 0.020184792578220367, 0.010135160759091377, -0.01924397610127926, 0.019015900790691376, 0.01984267868101597, -0.0071844179183244705, 0.006268547382205725, -0.009372529573738575, -0.026727745309472084, -0.016549820080399513, -0.01163904182612896, 0.02488887682557106, -0.004308512434363365, -0.011083105579018593, -0.04031256586313248, 0.0060689798556268215, 0.012358909472823143, 0.028424065560102463, 0.03244391828775406, 0.011945520527660847, -0.02718389965593815, -0.013492166064679623, -0.029008513316512108, -0.013128669001162052, -0.0060689798556268215, 0.002733357483521104, -0.003969961311668158, 0.01433319877833128, -0.015266887843608856, 0.04319203644990921, -0.001963598420843482, 0.025444813072681427, 0.01903015561401844, -0.04208016395568848, -0.02996358461678028, 0.012686769478023052, 0.06944937258958817, -0.004696955904364586, 0.043933287262916565, -0.021809840574860573, 0.01729106903076172, 0.03723353147506714, 0.03384089097380638, -0.031018439680337906, -0.01780424267053604, -0.02312128245830536, 0.02324957400560379, 0.0048323762603104115, 0.0043726591393351555, 0.0008690971881151199, -0.02290746010839939, 0.013648969121277332, 0.007790246978402138, -0.006375458091497421, -0.012558476999402046, 0.00907317828387022, 0.0015805006260052323, -0.024076353758573532, -0.01063407864421606, -0.0012579858303070068, -0.044560495764017105, -0.021966643631458282, 0.012971865944564342, 0.015951119363307953, -0.00417309207841754, -0.010220689699053764, -0.00234669609926641, -0.035551466047763824, 0.020213302224874496, 0.00893063098192215, -0.00503907073289156, -0.025872457772493362, -0.0066391718573868275, -0.010890665464103222, -0.03868751972913742, -0.02280767634510994, -0.00877382792532444, 0.012501457706093788, 0.003230493515729904, 0.00734122097492218, -0.04704083129763603, -8.964931475929916e-05, 0.029621468856930733, 0.018103592097759247, 0.007106016390025616, 0.011068850755691528, 0.020370105281472206, -0.01163904182612896, 9.493917605141178e-05, 0.0017497764201834798, -0.027069861069321632, -0.013634714297950268, 0.018944626674056053, 0.011781590059399605, 0.0028010676614940166, -0.024646544829010963, -0.03686290606856346, -0.006240037735551596, 0.002651392249390483, -0.010890665464103222, -0.013477911241352558, -0.014596913009881973, -0.02434719353914261, 0.007847266271710396, -0.006264983676373959, 0.03506680205464363, -0.02309277281165123, 0.00427643908187747, -0.02199515327811241, -0.0022843312472105026, -0.02681327424943447, -0.011688933707773685, -0.017747223377227783, -0.009693262167274952, -0.03951429948210716, 0.02835279330611229, -0.025402048602700233, -0.013256961479783058, 0.024432722479104996, 0.0011519658146426082, 0.017305323854088783, -0.03894410654902458, 0.010106651112437248, -0.0131999421864748, 0.01267964206635952, -0.018830588087439537, -0.0015662459190934896, -0.035522956401109695, 0.0006588389514945447, 0.010762372054159641, 0.020583927631378174, -0.0014557711547240615, 0.004989179316908121, 0.038601990789175034, -0.008909248746931553, -0.0013648968888446689, -0.01590835489332676, -0.02665647119283676, 0.005495224613696337, -0.02098306268453598, -0.0032643487211316824, 0.017590420320630074, 0.002761867130175233, 0.00686012115329504, -0.004026980139315128, -0.009800173342227936, -0.009600605815649033, -0.002120401244610548, -0.009279873222112656, 0.03597911074757576, -0.004522334318608046, -0.023363612592220306, 0.008723936043679714, 0.014418727718293667, 0.03754713758826256, -0.020655201748013496, 0.02135368622839451, 0.00951507780700922, -0.010569932870566845, -0.03518084064126015, 0.020926043391227722, -0.011539258994162083, -0.0030594358686357737, -0.026670726016163826, 0.02069796621799469, -0.03355579450726509, 0.005659154616296291, -0.01650705561041832, 0.011788717471063137, 0.014882008545100689, -0.034354060888290405, 0.014696696773171425, -0.01877356879413128, -0.03626420348882675, -0.021510489284992218, -0.026357119902968407, 0.009956976398825645, 0.010577060282230377, -0.0012909501092508435, -0.009636242873966694, 0.01426905207335949, -0.00531703932210803, 0.02142496034502983, -0.006264983676373959, 0.021310921758413315, 0.023335102945566177, 0.03478170558810234, 0.06728264689445496, 0.013884172774851322, -0.0003944569907616824, 0.03629271313548088, -0.018502727150917053, 0.01357769500464201, -0.026513922959566116, -0.0016811751993373036, 0.017633184790611267, -0.02403358928859234, -0.0005866740248166025, 0.01033472828567028, 0.03808882087469101, 0.030761852860450745, -0.029065532609820366, -0.030818872153759003, -0.027811110019683838, 0.007252128329128027, -0.014539893716573715, 0.024190392345190048, 0.008859356865286827, 0.026627961546182632, -0.06032630428671837, 0.02434719353914261, 0.0017292851116508245, 0.0018638147739693522, 0.004846631083637476, -0.015651768073439598, 0.012180724181234837, -0.003681301372125745, 0.03452511876821518, 0.01159627828747034, -0.009728899225592613, 0.005456023849546909, 0.01666385866701603, -0.007383984979242086, -0.014924773015081882, 0.015551984310150146, -0.0024304429534822702, 0.012173596769571304, -0.000547473318874836, -0.011959775350987911, 0.022593853995203972, 0.022351521998643875, 0.01991395279765129, 0.05405419319868088, -0.016549820080399513, -0.0020562545396387577, 0.015837080776691437, -0.027796855196356773, 0.04929308965802193, -0.00079247762914747, 0.017504891380667686, -0.00633982103317976, -0.02173856645822525, 0.011332564055919647, -0.020526908338069916, 0.013820026069879532, -0.012936228886246681, 0.009151579812169075, 0.007989814504981041, -0.017333833500742912, 0.034952763468027115, 0.005880103912204504, 0.00638614920899272, 0.027896638959646225, -0.0065215700305998325, -0.02910829707980156, -0.034040458500385284, 0.003766830312088132, -0.011909883469343185, 0.007562170270830393, -0.007312711328268051, -0.009037541225552559, -0.01694895513355732, 0.02580118365585804, 0.016649603843688965, -0.011225652880966663, -0.058074045926332474, 0.0051744915544986725, -0.002041999716311693, 0.010833646170794964, 0.004155273549258709, -0.007854393683373928, 0.010313346050679684, 0.0074695139192044735, 0.02756877802312374, 0.0140338484197855, 0.025558851659297943, -0.04059766232967377, 0.010869283229112625, 0.018445707857608795, 0.014668187126517296, 0.028124716132879257, -0.011190015822649002, -0.014796479605138302, 0.030476756393909454, 0.025587361305952072, 0.0104273846372962, -0.01419065147638321, 0.017276814207434654, 0.0014557711547240615, 8.40810316731222e-05, -0.006746083032339811, 0.003770394017919898, -0.008638407103717327, -0.021724311634898186, 0.0038773049600422382, -0.007626316510140896, -0.008859356865286827, -0.034981273114681244, -0.0230642631649971, -0.0031378373969346285, -0.01250858511775732, -0.019201211631298065, 0.029507430270314217, -0.01855974644422531, -0.03814584016799927, -0.013135796412825584, 0.0067496467381715775, -0.01007814146578312, -0.014468619599938393, 0.029878055676817894, 0.019700130447745323, -0.0022005843929946423, -0.0184029433876276, 0.03478170558810234, -0.027540268376469612, -0.05787447839975357, -0.014625422656536102, -0.02665647119283676, -0.021154120564460754, 0.011646169237792492, 0.03814584016799927, -0.02186685986816883, -0.02220897376537323, 0.003691992489621043, 0.005413259379565716, 0.024076353758573532, 0.013399509713053703, -8.248015546996612e-06, 0.03871602937579155, 0.013727369718253613, 0.017747223377227783, -0.011696061119437218, 0.0040055979043245316, 2.4235940145445056e-05, 0.021068591624498367, 0.018003810197114944, 0.002788594691082835, -0.011097359471023083, -0.02882320061326027, -0.03204478323459625, 0.013884172774851322, -0.0037561391945928335, 0.028153225779533386, -0.002353823510929942, -0.008396076038479805, 0.0024340066593140364, 0.01283644512295723, 0.0031057640444487333, 0.008417458273470402, 0.015195614658296108, -0.006892194505780935, -0.010313346050679684, -0.008944885805249214, 0.01637876220047474, -0.024646544829010963, -0.018360178917646408, -0.008809464983642101, 0.028851710259914398, -0.012701024301350117, -0.007590679917484522, 0.00427643908187747, 0.018802078440785408, -0.0047789206728339195, -0.0020455634221434593, -0.0020990190096199512, 0.04493112117052078, -0.04895097389817238, 0.036093149334192276, 0.03948578983545303, 0.015680277720093727, -0.012715279124677181, 0.019386524334549904, 0.030761852860450745, 0.012971865944564342, 0.046042997390031815, 0.00812523439526558, 0.01679215207695961, -0.00510321743786335, -0.00929412804543972, 0.015238378196954727, -0.0014388436684384942, 0.0060689798556268215, 0.01637876220047474, 0.025601616129279137, 0.002581900218501687, 0.016621094197034836, 0.025915222242474556, 0.03843093290925026, 0.028409810736775398, -0.012693896889686584, -0.009671879932284355, 0.03569401428103447, -0.0009889266220852733, -0.02785387448966503, -0.0008494968642480671, -0.02371998317539692, -0.028409810736775398, -0.0001732848904794082, -0.03446809947490692, 0.023235319182276726, -0.0006980395992286503, 0.0425933338701725, 0.002735139336436987, -0.036150164902210236, 0.014468619599938393, 0.004761102609336376, 0.025444813072681427, 0.0029845982789993286, -0.004408296197652817, 0.006828048266470432, 0.014169269241392612, 0.01887335255742073, -0.06819494813680649, 0.020241811871528625, 0.0211968831717968, 0.02674200013279915, -0.01937226951122284, 0.050205398350954056, 0.03780372440814972, 0.008324801921844482, 0.011867118999361992, 0.020469889044761658, 0.02290746010839939, 0.012337527237832546, -0.0016972118755802512, -0.00773322768509388, -0.0017506673466414213, -0.009158707223832607, 0.03563699498772621, -0.0364067517220974, -0.006211528088897467, -0.019899697974324226, 0.03261497616767883, 0.026699235662817955, -0.04031256586313248, -0.0009114161366596818, 0.016678113490343094, 0.027297938242554665, -0.027369210496544838, -0.015480710193514824, -0.01455414853990078, 0.04555833339691162, -0.0019546891562640667, -0.0019760713912546635, -0.0035013346932828426, 0.020612437278032303, -0.01798955537378788, 0.012209233827888966, 0.03452511876821518, 0.016720877960324287, 0.007562170270830393, -0.021824095398187637, 0.011111614294350147, -0.058302123099565506, 0.02551608718931675, -0.03569401428103447, -0.028709162026643753, -0.021852605044841766, 0.00230036792345345, -0.0002993507368955761, -0.012936228886246681, 0.034667667001485825, -0.0013292598305270076, 0.03084738180041313, 0.03389791026711464, -0.0006993759889155626, -0.03985641524195671, 0.007255692034959793, 0.008374693803489208, -0.015338161960244179, 0.038231365382671356, -0.024233156815171242, -0.012202106416225433, 0.008502987213432789, 0.005591444205492735, 0.001133256359025836, 0.026727745309472084, -0.02793940342962742, -0.02129666693508625, 0.0009773445781320333, 0.01055567804723978, -0.030704833567142487, 0.0053776223212480545, -0.007868648506700993, -0.00742674944922328, -0.0044011687859892845, 0.014226287603378296, -0.002788594691082835, -0.0010370365343987942, -0.03543742746114731, 0.003259003162384033, 0.01472520548850298, 0.025273757055401802, -0.03777521476149559, -0.009001905098557472, -0.010120905935764313, 0.03295709192752838, 0.027226664125919342, -0.00045370348379947245, -0.043363094329833984, 0.011318309232592583, 0.03720502182841301, 0.0032732579857110977, 0.012558476999402046, 0.016022391617298126, 0.010291963815689087, 0.005815957207232714, 0.019728640094399452, -0.0007149672019295394, -0.012921974062919617, -0.03959982842206955, 0.0011911665787920356, 0.0002396587806288153, -0.013107286766171455, -0.03726204112172127, 0.013299725949764252, -0.028965748846530914, -0.010997576639056206, 0.01452563889324665, -0.019172701984643936, -0.009557841345667839, 0.02387678623199463, -0.008274910040199757, -0.0010406002402305603, 0.020313085988163948, 0.013948319479823112, 0.03506680205464363, -0.012629751116037369, -0.01754765585064888, 0.02749750390648842, 0.024361448362469673, -0.002576554659754038, 0.013100159354507923, -0.01710575632750988, 0.0014370618155226111, 0.03378387168049812, 0.01637876220047474, -0.017191285267472267, 0.0011475111823529005, -0.011482239700853825, -0.019129937514662743, 0.0036011182237416506, 0.0031111096031963825, 0.012415928766131401, 0.027454739436507225, -0.0019742895383387804, 0.027169644832611084, 0.003481734311208129, -0.006578589323908091, 0.02215195633471012, -0.024931641295552254, -0.003405114868655801, -0.00332314963452518, -0.03951429948210716, -0.0013942973455414176, 0.01830315962433815, -0.007555042859166861, 0.006044034380465746, -0.0007586224819533527, 0.00954358745366335, -0.017376597970724106, -0.04735443741083145, 0.01940077915787697, 0.01208094134926796, -0.0021756384521722794, -0.005181618966162205, 0.028723416849970818, 0.00822501815855503, 0.010406002402305603, 2.8370388463372365e-05, 0.016122175380587578, -0.0015404090518131852, -0.014910518191754818, 0.03235838934779167, -0.0013862791238352656, -0.011781590059399605, -0.006061852909624577, -0.01559474878013134, 0.015295397490262985, -0.012009667232632637, 0.005972760263830423, -0.03937175124883652, 0.029906565323472023, 0.0016624657437205315, 0.008695426397025585, -0.005085398908704519, -0.03181670978665352, -0.011489367112517357, 0.0038773049600422382, 0.007298456504940987, -0.02252257987856865, -0.039115164428949356, 0.001159984152764082, -0.0330711305141449, 0.009586350992321968, 0.006396840326488018, 0.017975300550460815, 0.004925032611936331, -0.03178820013999939, -0.00877382792532444, 0.007676208391785622, 0.011068850755691528, 0.01208094134926796, -0.019828423857688904, 0.00868117157369852, 0.00809672474861145, -0.015352416783571243, -0.03780372440814972, -0.03141757473349571, 0.011646169237792492, 0.012180724181234837, -0.017847007140517235, -0.0136418417096138, 0.00419091060757637, -0.01238029170781374, 0.023834021762013435, -0.013399509713053703, -0.022636618465185165, 0.05069005861878395, -0.018531236797571182, 0.018545491620898247, 0.007704718038439751, -0.0065750256180763245, 0.0027511760126799345, 0.007383984979242086, -0.003980652429163456, -0.02942190133035183, 0.00640396773815155, 0.006175891030579805, 0.0013942973455414176, 0.02135368622839451, 0.026927312836050987, -0.07247138768434525, -0.02545906789600849, 0.027868129312992096, -0.02538779377937317, -0.02205217257142067, 0.006714009679853916, -0.02627159282565117, -0.02012777328491211, 0.004850194789469242, 0.005830212030559778, -0.0015448636841028929, -0.008403203450143337, 0.017405107617378235, -0.023734237998723984, -0.016849171370267868, 0.012323272414505482, -0.009479440748691559, 0.000516736414283514, -0.048124197870492935, -0.012045304290950298, -0.052600204944610596, -0.012736661359667778, 0.009279873222112656, 0.038887087255716324, 0.002683465601876378, 0.00664629926905036, 0.0036207186058163643, 0.00445106066763401, -0.00029445067048072815, 0.00230036792345345, -0.0049428511410951614, -0.010291963815689087, 0.0054061319679021835, 0.026043515652418137, -0.022722147405147552, 0.0128079354763031, -0.002551608718931675, -0.01764743961393833, -0.024389958009123802, -0.013991083949804306, 0.013527803122997284, 0.003691992489621043, 0.011646169237792492, 0.0027208845131099224, -0.0030825999565422535, 0.025758419185876846, -0.04176655784249306, 0.008581387810409069, -0.03920069336891174, -0.0015208086697384715, 0.009821555577218533, 0.011460857465863228, -0.00012818181130569428, 0.0004205165314488113, 0.013648969121277332, 0.020740730687975883, 0.000759958871640265, 0.0184029433876276, -0.012957611121237278, -0.036720357835292816, 0.01326408889144659, 0.03173118084669113, -0.01452563889324665, -0.0009711080929264426, -0.009629115462303162, -0.02434719353914261, -0.0021792021580040455, -0.03332771733403206, -0.0026888111606240273, 0.0008196508861146867, 0.03472468629479408, 0.010833646170794964, 0.019543327391147614, -0.013506420888006687, 0.04413285478949547, 0.009351147338747978, 0.033156659454107285, -0.01666385866701603, 0.009087433107197285, -0.007223618682473898, 0.022536834701895714, -0.010284836404025555, 0.02059818245470524, 0.005281402729451656, -0.029222335666418076, 0.021567508578300476, 0.011197143234312534, 0.03426853194832802, 0.005997706204652786, 0.010149415582418442, -0.004069744609296322, -0.010277708992362022, 0.03455362841486931, 0.04413285478949547, -0.0007608497980982065, 0.015295397490262985, 0.026328610256314278, 0.012294762767851353, 0.013820026069879532, 0.004554407671093941, -0.020327340811491013, -0.0014281525509431958, 0.016521310433745384, -0.02022755704820156, -0.02126815728843212, -0.027640052139759064, -0.004974924493581057, -0.0055201705545187, 0.03247242793440819, 0.0036278460174798965, 0.02350616082549095, 0.008830847218632698, 0.026129044592380524, 0.03272901475429535, -0.010840773582458496, 0.01170318853110075, 0.010612696409225464, -0.02343488670885563, -0.020997317507863045, 0.005630644969642162, 0.008959140628576279, -0.00018252822337672114, -0.008396076038479805, 0.0008281146292574704, -0.02126815728843212, -0.003194856457412243, 0.014204905368387699, 0.007790246978402138, -0.0011778026819229126, -0.026613706722855568, -0.01299324817955494, 0.009130197577178478, -0.020341595634818077, 0.01830315962433815, -0.02712688036262989, 0.005562934558838606, -0.006008397322148085, -0.003458570223301649, -0.016592584550380707, -0.014318943955004215, 0.0007831229595467448, 0.011261289939284325, -0.001355096697807312, -0.04319203644990921, -0.02457527071237564, -0.005584316793829203, -0.003813158255070448, -0.01887335255742073, -0.026627961546182632, 0.03575103357434273, -0.015181359834969044, 0.014447237364947796, 0.013820026069879532, 0.0014637894928455353, -0.014568403363227844, 0.005071144085377455, 0.02551608718931675, -0.034639157354831696, 0.037661176174879074, -0.026228828355669975, -0.015666022896766663, 0.015152850188314915, 0.005138854496181011, 0.006557207088917494, -0.0025141900405287743, -0.026699235662817955, 0.006051161792129278, -0.009279873222112656, 0.007982687093317509, -0.03141757473349571, 0.00968613475561142, -0.004900086671113968, 0.010313346050679684, -0.028438320383429527, -0.0050925263203680515, -0.018089337274432182, -0.03424002230167389, -0.002197020687162876, 0.022265993058681488, -0.022380031645298004, -0.009023287333548069, 0.022878950461745262, 0.018787823617458344, -0.010769499465823174, 0.011332564055919647, -0.0031431829556822777, -0.02999209426343441, -0.012715279124677181, -0.03335622698068619, -0.001758685684762895, -0.009978358633816242, -0.009009032510221004, -0.018189121037721634, -0.012943356297910213, 0.01814635656774044, -0.026342865079641342, -0.013777261599898338, 0.0026424832176417112, 0.03215882182121277, 0.012893464416265488, 0.031930748373270035, 0.007633443921804428, -0.003405114868655801, 0.023805512115359306, 0.009258490987122059, 0.020926043391227722, 0.013741624541580677, 0.0003779748803935945, -0.03141757473349571, -0.002993507543578744, 0.021239647641777992, 0.014611167833209038, -0.02056967280805111, -0.013677477836608887, 0.01485349889844656, -0.00397708872333169, 0.018388688564300537, 0.027583032846450806, -0.0022290940396487713, -0.007882903330028057, -0.019044410437345505, -0.014183524064719677, 0.030505266040563583, -0.012430183589458466, -0.012822190299630165, 0.01811784692108631, -0.015152850188314915, 0.007711845450103283, 0.01811784692108631, -0.02996358461678028, 0.016521310433745384, 0.0010370365343987942, 0.001886978861875832, 0.007245000917464495, -0.0006837848341092467, -0.0032340572215616703, -0.013770134188234806, -0.005238638259470463, -0.016906190663576126, -0.031103968620300293, 0.013869917951524258, 0.0024945896584540606, -0.0031146733090281487, -0.015566239133477211, 0.01855974644422531, 0.02450399659574032, -0.006183018442243338, -0.018374433740973473, -0.01843145303428173, -0.0020829823333770037, 0.0100353779271245, 0.02913680672645569, -0.02044137939810753, -0.022608108818531036, 0.0035476628690958023, -0.009964103810489178, 0.03746160864830017, -0.014924773015081882, 0.01707724668085575, -0.015666022896766663, -0.03500978276133537, -0.023734237998723984, 0.001045054872520268, 0.002270076423883438, 0.0390581451356411, 0.012501457706093788, -0.00870968122035265, -0.012708151713013649, 0.013841408304870129, 0.01622195914387703, 0.011232780292630196, -0.01305739488452673, -0.036207184195518494, 0.016649603843688965, -4.4490559957921505e-05, 0.01228763535618782, -0.008952013216912746, -0.01606515608727932, 0.0010236726375296712, -0.01183148194104433, 0.005709046497941017, -0.0104273846372962, 0.014568403363227844, -0.027554523199796677, 0.052942316979169846, -0.005170927848666906, -0.008011195808649063, 0.006322002504020929, -0.0072663831524550915, -0.012715279124677181, 0.005502352025359869, -0.0037490117829293013, -0.013841408304870129, -0.0033463137224316597, 0.011190015822649002, 0.0023431323934346437, 0.002136437688022852, -0.01326408889144659, 0.007597807329148054, 0.009821555577218533, 0.0060974895022809505, -0.01679215207695961, -0.011475112289190292, 0.008581387810409069, -0.010940557345747948, 0.003100418485701084, -0.0007127398857846856, -0.006910013034939766, 0.023990824818611145, 0.00427643908187747, 0.015452200546860695, 0.004814557731151581, 0.02785387448966503, -0.005352676380425692, 0.029621468856930733, -0.018973136320710182, -0.006101053208112717, 0.0042621842585504055, 0.015794316306710243, -0.016278978437185287, 0.011175760999321938, -0.009536460041999817, -0.04863736778497696, -0.01094768475741148, -0.015095830895006657, -0.000290886964648962, 0.011168633587658405, 0.0178612619638443, 0.009144452400505543, 0.0036991199012845755, -0.01118288841098547, 0.019643111154437065, 0.008510114625096321, -0.023206811398267746, -0.0004944633110426366, -0.008652661927044392, -0.020740730687975883, -0.011959775350987911, -0.02129666693508625, -0.012779425829648972, 0.014996047131717205, -0.012950483709573746, 0.021182628348469734, -0.006510878913104534, -0.03144608438014984, -0.012765171006321907, -0.0003851022629532963, -0.013185687363147736, 0.02132517658174038, -0.007462386507540941, -0.030191661790013313, 0.015395181253552437, 0.005684100557118654, 0.01394119206815958, 0.016749387606978416, -0.012166469357907772, 0.006991978269070387, 0.010619823820888996, 0.004294257611036301, 0.0016642475966364145, 0.001301641226746142, -0.001238385564647615, 0.0015724824042990804, 0.03298560157418251, 0.008502987213432789, -0.001416570506989956, 0.0024678618647158146, 0.0017577947583049536, 0.03215882182121277, -0.005199437495321035, -0.002995289396494627, -0.012686769478023052, 0.0017987772589549422, 0.009586350992321968, 0.015822825953364372, 0.015651768073439598, -0.005227947141975164, 0.024190392345190048, -0.021952388808131218, -0.026314357295632362, -0.0036296278703957796, -0.00579813914373517, -0.013363872654736042, -0.00367061048746109, -0.0013194597559049726, 0.02022755704820156, 0.016991719603538513, 0.0017185939941555262, -0.0003744111745618284, -0.027454739436507225, -0.01625046879053116, 0.015423690900206566, 0.020085010677576065, -0.005997706204652786, -0.022992989048361778, 0.0030540903098881245, -0.0016188104636967182, -0.006824484560638666, 0.0029810345731675625, 0.005527297966182232, -0.00526002049446106, 0.010370365343987942, -0.04148146137595177, -0.029564449563622475, 0.0016678113024681807, -0.0013711333740502596, 0.005791011732071638, 0.003294639987871051, 0.002004580805078149, -0.020612437278032303, 0.003230493515729904, 0.0005599462892860174, -0.004404732491821051, 0.014810734428465366, -3.121021291008219e-05, 0.009707516990602016, -0.0348387248814106, 0.004051926080137491, -0.045444294810295105, -0.00036372005706653, -0.007348348386585712, -0.017975300550460815, 0.0024054970126599073, 0.012038176879286766, -0.010912047699093819, 0.01424054242670536, -0.023620199412107468, 0.004465315490961075, 0.0019796350970864296, -0.02252257987856865, -0.004543716553598642, 0.012843572534620762, 0.02069796621799469, -0.039713867008686066, -0.0006828939076513052, 0.007109580095857382, -0.001835305243730545, 0.03962833806872368, -0.028709162026643753, 0.022950224578380585, -0.015038811601698399, -0.008403203450143337, 0.0035512263420969248, -0.006343384739011526, -0.023891041055321693, 0.005463151261210442, -0.009985486045479774, -0.016122175380587578, 0.010990449227392673, 0.04384775832295418, -0.008274910040199757, 0.017476381734013557, 0.015523474663496017, -0.004176655784249306, 0.03506680205464363, -0.01723404973745346, 0.02051265351474285, -0.008089597336947918, -0.0016829570522531867, -0.036748867481946945, -0.022707892581820488, -0.002195238834246993, -0.0017675949493423104, 0.0055201705545187, -0.021496234461665154, -0.01170318853110075, 0.016179194673895836, -0.020911788567900658, 0.017918281257152557, 0.035865072160959244, -0.007612062152475119, -0.03925771266222, 0.04940712824463844, -0.0019457798916846514, -0.03863050043582916, 0.02803918719291687, -0.0131999421864748, 0.030077623203396797, -0.023292338475584984, 0.026670726016163826, 0.023320848122239113, -0.0043192035518586636, -0.019928207620978355, 0.010904920287430286, -0.014375963248312473, 0.003667046781629324, 0.016236213967204094, -0.03711949288845062, -0.004982051905244589, 0.01713426597416401, -0.014383090659976006, -0.007045433856546879, -0.032244350761175156, -0.0038594864308834076, -0.014468619599938393, -0.01887335255742073, -0.0021560380700975657, 0.01274378877133131, -0.010655460879206657, 0.0027012841310352087, 0.013150051236152649, -0.0321873314678669, -0.009629115462303162, 0.011938393115997314, 0.009857192635536194, 0.0013470783596858382, 0.03378387168049812, 0.0017631403170526028, -0.011140123941004276, 0.010976194404065609, 0.004105381667613983, 0.0182033758610487, -0.0013942973455414176, 0.0007630771142430604, 0.004935723729431629, -0.016107920557260513, -0.01543794572353363, -0.017590420320630074, 0.01767594926059246, -0.013299725949764252, -0.016991719603538513, -0.026513922959566116, -0.04287843033671379, 0.0049998704344034195, 0.01133969146758318, -0.01017792522907257, 0.009885702282190323, 0.026043515652418137, 0.0036563556641340256, 0.005716173909604549, 0.0066961911506950855, 0.010527168400585651, 0.009308382868766785, 0.012259125709533691, 0.0057731932029128075, 0.0029810345731675625, 0.01609366573393345, 0.0004721901786979288, -0.0047432840801775455, -0.007825884036719799, 0.007202236447483301, -0.012815062887966633, -0.01066258829087019, -0.014204905368387699, -0.015395181253552437, -0.0015653549926355481, -0.0105984415858984, -0.0026478285435587168, -0.004568662494421005, -0.013399509713053703, 0.011111614294350147, 0.004458188079297543, -0.02025606669485569, 0.014611167833209038, 0.0005528188776224852, 0.008859356865286827, -0.0068066660314798355, -0.014119377359747887, -0.007540788035839796, 0.017718713730573654, 0.00822501815855503, -0.0031788197811692953, -0.002068727510049939, 0.022893205285072327, -0.02374849282205105, 0.04202314466238022, 0.002508844481781125, 0.0070632523857057095, -0.010577060282230377, -0.0038879960775375366, -0.03446809947490692, -0.0077261002734303474, 0.011018958874046803, 0.021154120564460754, -0.010356110520660877, -0.007326966151595116, 0.01947205327451229, 0.007180854212492704, 0.02022755704820156, -0.019871188327670097, 0.00803257804363966, 0.010569932870566845, 0.006257856264710426, -0.0092014716938138, -0.00510321743786335, 0.016335997730493546, 0.0029810345731675625, -0.026200318709015846, 0.0013577694771811366, -0.014867753721773624, 0.01991395279765129, 0.01751914620399475, 0.009287000633776188, 0.016136430203914642, 0.03215882182121277, 0.007159471977502108, -0.007825884036719799, 0.0005719737382605672, -0.004597172141075134, 0.005345548968762159, 0.0004543716786429286, 0.003962833900004625, 0.012715279124677181, -0.0042621842585504055, 0.008082469925284386, 0.010997576639056206, -0.007376857567578554, 0.0286093782633543, 0.034068964421749115, -0.022094937041401863, 0.0012205670354887843, 0.012237743474543095, -0.0028794691897928715, 0.019643111154437065, 0.01887335255742073, -0.012893464416265488, -0.027611542493104935, 0.002038436010479927, 0.017761478200554848, 0.00734122097492218, -0.006945650093257427, 0.0178612619638443, -0.009522205218672752, -0.01222348865121603, -0.009736026637256145, -0.001626828801818192, 0.008011195808649063, 0.02293596975505352, -0.018759313970804214, -0.021824095398187637, -0.009187216870486736, 0.0044011687859892845, -0.03116098791360855, 0.006788847502321005, -0.006468114443123341, -0.013128669001162052, 0.009928466752171516, 0.01354918535798788, -0.02044137939810753, 0.004137455020099878, 0.02158176340162754, -0.0014744806103408337, 0.00831767451018095, 0.03147459402680397, 0.02645690366625786, -0.00316991051658988, -0.006881503388285637, -0.011396710760891438, -0.0067781563848257065, 0.02028457634150982, -0.015366671606898308, 0.009629115462303162, -0.020056501030921936, 0.018046574667096138, -0.027654306963086128, -0.007683335803449154, 0.010234944522380829, -0.010185052640736103, 0.02350616082549095, -0.0001980080414796248, -0.002400151453912258, 0.007248564623296261, -0.007106016390025616, 0.013677477836608887, -0.009486568160355091, -0.001125238137319684, 0.015238378196954727, -0.019514817744493484, -0.01052004098892212, 0.012330399826169014, 0.027084115892648697, 0.011125869117677212, -0.009978358633816242, 0.006029779557138681, 0.013584822416305542, -0.02025606669485569, -0.015366671606898308, -0.00453658914193511, 0.008089597336947918, -0.03540891781449318, -0.010013995692133904, 0.015380926430225372, -0.011567768640816212, 0.003611809341236949, -0.005245765671133995, -0.00393076054751873, 0.004287130199372768, -0.016264723613858223, -0.0017462127143517137, -0.0017087939195334911, -0.0010655460646376014, -0.008495859801769257, -0.008146616630256176, -0.0008187599596567452, 0.008039705455303192, 0.009258490987122059, -0.0007693135994486511, 0.011959775350987911, -0.0250741895288229, 0.00954358745366335, 0.014283306896686554, 0.01578006148338318, -0.008339056745171547, 0.01931525021791458, -0.019144192337989807, 0.027511758729815483, 0.011731698177754879, 0.02145346999168396, 0.010406002402305603, 0.00234669609926641, -0.0005893468041904271, -0.0048074303194880486, -0.022579599171876907, 0.025345029309391975, -0.01848847232758999, 0.04912203177809715, -0.028310028836131096, -0.0019226158037781715, -0.009258490987122059, -0.011774462647736073, 0.00014399572683032602, -0.01528114266693592, 0.019928207620978355, -0.01845996268093586, -0.004625681787729263, 0.018003810197114944, -0.0023164045996963978, -0.014390218071639538, 0.007833011448383331, -0.007882903330028057, -0.006717573385685682, -0.00343006057664752, 0.031332045793533325, 0.014504256658256054, -0.019201211631298065, -0.014910518191754818, 0.002991725690662861, -0.011496494524180889, -0.009864320047199726, -0.015708787366747856, -0.018260395154356956, 0.011931265704333782, -0.0023360049817711115, -0.02135368622839451, 0.00038866596878506243, 0.021781330928206444, -0.008367566391825676, 0.019828423857688904, -0.01354918535798788, -0.01625046879053116, 0.008745318278670311, 0.025630125775933266, -0.018345924094319344, -0.008560005575418472, 0.007173726800829172, -0.025088444352149963, -0.014375963248312473, -0.01439734548330307, -0.014326071366667747, -0.020812004804611206, -0.00588366761803627, -0.0008748882100917399, 0.01406948547810316, 0.016720877960324287, -0.002786812838166952, -0.019144192337989807, -0.001854905509389937, 0.020712221041321754, -0.001535063493065536, -0.02054116316139698, -0.02249407023191452, -0.01676364243030548, -0.01682066172361374, -0.015067321248352528, -0.017191285267472267, -0.01036323793232441, -0.03449660912156105, -0.0001707234769128263, 0.01890186220407486, -0.007875775918364525, 0.004130327608436346, -0.010092396289110184, -0.005199437495321035, 0.0018014500383287668, 0.0012731315800920129, 0.015537729486823082, -0.008182253688573837, -0.004415423609316349, 0.003873741254210472, -0.016364507377147675, 0.0006828939076513052, 0.017333833500742912, 0.019543327391147614, 0.028267264366149902, 0.011667551472783089, 0.016934700310230255, 0.012009667232632637, -0.012779425829648972, 0.005031943321228027, -0.0037561391945928335, 0.017162775620818138, 0.013178559951484203, -0.018830588087439537, 0.011567768640816212, -0.006902885623276234, -0.030961420387029648, 0.009614860638976097, -0.008175126276910305, -0.009287000633776188, 0.007790246978402138, -0.04019853100180626, -0.007825884036719799, -0.012622623704373837, 0.013705987483263016, -2.333109478058759e-05, -0.011446602642536163, -0.006275674793869257, 0.005908613558858633, -0.004333458375185728, 0.025687145069241524, -0.023933805525302887, -0.005245765671133995, 0.008602770045399666, -0.010748117230832577, -0.00614381767809391, 0.0005728646647185087, 0.011104486882686615, -0.0051744915544986725, -0.007833011448383331, 0.0002257380838273093, 0.01811784692108631, -0.051773425191640854, 0.005163800437003374, 0.015680277720093727, -0.01055567804723978, 0.004597172141075134, -0.01231614500284195, 0.010477276518940926, 0.01666385866701603, 0.00042630755342543125, -0.00742674944922328, 0.015295397490262985, 0.0012437311233952641, 0.013841408304870129, 0.017918281257152557, 0.00219345698133111, -0.0029596523381769657, 0.0010013994760811329, -0.02249407023191452, 0.0008735518204048276, -0.022066427394747734, 0.008353311568498611, 0.02280767634510994, 0.004076872020959854, 0.021211137995123863, 0.009251363575458527, -0.002296804217621684, 0.0019297432154417038, -0.012202106416225433, -0.002635355805978179, -0.005969196557998657, -0.011824354529380798, -0.009009032510221004, 0.011296926997601986, 0.001990326214581728, -0.0027030659839510918, -0.01593686453998089, -0.01063407864421606, -0.007148780860006809, -0.0035048983991146088, 0.009436676278710365, 0.023905295878648758, 0.0048893955536186695, -0.017120011150836945, 0.020968807861208916, 0.0018531236564740539, -0.00011582022852962837, 0.01416214182972908, 0.011667551472783089, -0.012658259831368923, 0.0014994265511631966, 0.021125610917806625, 0.03389791026711464, -0.018987391144037247, -0.0003853249945677817, 0.00838182121515274, 0.0022843312472105026, 0.00286699621938169, 0.007918540388345718, 0.011617659591138363, 5.334412708180025e-05, 0.01578006148338318, -0.0019475617446005344, 0.005049761850386858, -0.023520415648818016, 0.02731219306588173, 0.014361708424985409, -0.024247411638498306, -0.017918281257152557, -0.004607863258570433, -0.004978488199412823, -0.0001656006497796625, -0.00954358745366335, -0.01754765585064888, 0.006282802205532789, -0.0028171043377369642, -0.0005911286571063101, -0.016877681016921997, -0.0190871749073267, -0.005598571617156267, 0.005309911910444498, 0.00191014283336699, -0.010954812169075012, -0.002059818245470524, 0.012166469357907772, 0.010840773582458496, -0.0044546243734657764, 0.021310921758413315, -0.007626316510140896, -0.017590420320630074, -0.013898427598178387, 0.0030825999565422535, 0.015609003603458405, 0.003741884371265769, 0.004390477668493986, -0.006885067094117403, 0.02488887682557106, -0.004704083316028118, -0.01011377852410078, 0.007661953568458557, 0.012430183589458466, -0.0012437311233952641, 0.00453658914193511, -0.024546761065721512, -0.00039712974103167653, -0.006051161792129278, -0.022323012351989746, -0.02066945657134056, -0.006974159739911556, -0.012294762767851353, 0.015038811601698399, 0.004315639846026897, 0.026414139196276665, 0.005787448026239872, 0.008909248746931553, 0.03421151265501976, 0.001730176038108766, -0.015266887843608856, -0.005794575437903404, 0.015637513250112534, 0.0036492282524704933, 0.008716808632016182, -0.0026727744843810797, -0.010149415582418442, 0.013178559951484203, 0.0055807530879974365, 0.005309911910444498, -0.0036474463995546103, -0.0065215700305998325, 0.007241437211632729, 0.01833166927099228, -0.026143299415707588, 0.011774462647736073, 0.0025409176014363766, -0.0226223636418581, -0.016307488083839417, -0.007287765387445688, 0.0012722406536340714, -0.002191675128415227, -0.008545750752091408, -0.04205165430903435, 0.009800173342227936, -0.004315639846026897, 0.012294762767851353, -0.008659789338707924, 0.0031912927515804768, -0.004280002787709236, -0.016236213967204094, -0.02101157233119011, 0.015224124304950237, -0.000993381254374981, -0.0022772038355469704, -0.0017337397439405322, -0.001355096697807312, 0.0069527775049209595, 0.015110085718333721, -0.005502352025359869, 0.01354918535798788, -0.005598571617156267, 0.00855287816375494, -0.0009595260489732027, 0.03954280912876129, 0.010605568997561932, -0.0035262806341052055, 0.00516736414283514, 0.0027297937776893377, -0.0015261542284861207, -0.023263828828930855, 0.0063184392638504505, -0.02548757754266262, -0.006863684859126806, 0.02457527071237564, -0.01773296855390072, 0.01893037185072899, 0.011068850755691528, 0.007818756625056267, -0.013342490419745445, -0.010619823820888996, -0.0014495347859337926, 0.010284836404025555, 0.0272836834192276, 0.009365402162075043, 0.022821931168437004, -0.0069242678582668304, -0.014311816543340683, -0.02179558575153351, 0.01079088170081377, -0.01773296855390072, 0.0015519910957664251, -0.016877681016921997, -0.005954941734671593, 0.01871654950082302, -0.009180089458823204, -0.001626828801818192, -0.024176137521862984, 0.0029275789856910706, -0.010805136524140835, 0.0003430060751270503, -0.0010013994760811329, -0.007476641330868006, 0.005224383436143398, 0.02709837071597576, 0.016236213967204094, -0.016307488083839417, 0.019614601507782936, -0.015951119363307953, 0.02079774998128414, 0.013271216303110123, 0.008324801921844482, 0.004012725315988064, 0.00351737136952579, -0.011296926997601986, -0.010562805458903313, -0.006460987031459808, -0.011104486882686615, 0.026627961546182632, 1.5298850485123694e-05, -0.017376597970724106, 0.0022077118046581745, 0.03338473662734032, -0.030391229316592216, 0.009415294043719769, 0.015095830895006657, 0.013934064656496048, 0.004729029256850481, 0.008367566391825676, 0.011460857465863228, -0.002783249132335186, 0.0028224498964846134, -0.004704083316028118, 0.004696955904364586, -0.001306986785493791, 0.02898000366985798, 0.004721901845186949, -0.015509219840168953, 0.013342490419745445, 0.0005630645318888128, 0.00734122097492218, -0.01660683937370777, 0.0182033758610487, 0.014140759594738483, -0.002220184775069356, 0.013192814774811268, 0.019115682691335678, -0.003414024133235216, -0.0023377868346869946, 0.018160611391067505, -0.015865590423345566, 0.02590096741914749, -0.005195873789489269, 0.028723416849970818, -0.0002434452180750668, 0.006293493323028088, -0.008196508511900902, -0.00018375324725639075, -0.007159471977502108, -0.01163904182612896, 0.004533025436103344, 0.010940557345747948, -0.0049998704344034195, -0.01590835489332676, 0.01689193584024906, -0.017918281257152557, -0.0006677481578662992, -0.018987391144037247, -0.017690204083919525, -0.008053960278630257, 0.0013239142717793584, -0.024831857532262802, 0.021025827154517174, 0.006995541974902153, 0.007626316510140896, 0.01814635656774044, 0.02942190133035183, -0.01572304219007492, 0.003684865077957511, 0.02142496034502983, 0.024618035182356834, -6.063857290428132e-05, 0.004094690550118685, -0.013157178647816181, 0.01530965231359005, -0.005341985262930393, -0.014176396653056145, 0.017618929967284203, -0.011525004170835018, 0.001385388197377324, -0.009679007343947887, 0.015566239133477211, 0.018317414447665215, -0.010562805458903313, -0.009493695572018623, 0.014390218071639538, 0.009899957105517387, 0.018802078440785408, -0.014511384069919586, -0.005523734260350466, 0.0017177030676975846, -0.002811758778989315, -0.02079774998128414, -0.001641974551603198, 0.020170537754893303, -0.003638537134975195, 0.012879209592938423, 0.019700130447745323, -0.026941567659378052, -0.021125610917806625, -0.01253709476441145, 0.003045181045308709, -0.007982687093317509, -0.01312154158949852, -0.04071170091629028, 0.01855974644422531, 0.00438691396266222, -0.003962833900004625, -0.002120401244610548, -0.01937226951122284, -0.019885443150997162, -0.0037846488412469625, 0.002188111422583461, 0.021596018224954605, 0.011966902762651443, 0.011995412409305573, 0.031018439680337906, -0.01947205327451229, 0.010933429934084415, -0.019928207620978355, -0.021838350221514702, -0.007825884036719799, 0.0018148139351978898, -0.004500952549278736, -0.003798903664574027, 0.016592584550380707, -0.032301370054483414, -0.021496234461665154, 0.004476006608456373, 0.008887866511940956, 0.005498788319528103, 0.0021079282741993666, 0.009215726517140865, -0.004436805844306946, 0.004803866613656282, -0.00861702486872673, -0.005737556144595146, -0.0066676815040409565, 0.011731698177754879, 0.004465315490961075, 0.011788717471063137, 0.0077831195667386055, 0.008488732390105724, 0.011318309232592583, 6.02487925789319e-05, -0.027540268376469612, -0.011353946290910244, -0.005441769026219845, -0.015209869481623173, 0.029507430270314217, -0.006482369266450405, 0.010056760162115097, -0.010242071934044361, -0.013093031942844391, -0.0022878949530422688, 0.004119636490941048, 0.01312154158949852, -0.0078116292133927345, 0.0004292030353099108, 0.017319578677415848, -0.021410705521702766, -0.01616493985056877, 0.008132361806929111, -0.0018246141262352467, -0.031075458973646164, -0.0007465950329788029, -0.009329765103757381, -0.023862531408667564, -0.0025694272480905056, -0.009094560518860817, 0.0014085521688684821, -0.006304184440523386, 0.016806406900286674, -0.01329259853810072, 0.003962833900004625, 0.0015430818311870098, 0.011147251352667809, 0.016749387606978416, -0.01416214182972908, 0.0208547692745924, -0.015822825953364372, 0.01994246244430542, 0.0037775214295834303, -0.02759728766977787, 0.00825352780520916, -0.025416303426027298, 0.05462438613176346, -0.0010539641370996833, -0.016050901263952255, -0.01290059182792902, -0.02324957400560379, 0.011745953001081944, 0.0061509450897574425, 0.00393076054751873, 0.019044410437345505, 0.009329765103757381, 0.018189121037721634, -0.014753715135157108, 0.002220184775069356, -0.002998853102326393, -0.02910829707980156, 0.01965736597776413, 0.01726255938410759, 0.013648969121277332, 0.002421533688902855, -0.011888501234352589, 0.0032108931336551905, -0.013663223944604397, 0.00020881051023025066, -0.00230036792345345, 0.003196638310328126, -0.0026246646884828806, -1.7150303392554633e-05, -0.003128928132355213, 0.0026496103964746, -0.03575103357434273, -0.025658635422587395, -0.018032319843769073, -0.0024625163059681654, 0.01137532852590084, -0.021239647641777992, -0.018759313970804214, -0.004825248848646879, 0.004055489785969257, -0.0011893847258761525, -0.011603405699133873, -0.025416303426027298, -0.002350259805098176, -0.016207704320549965, -0.0017426490085199475, -0.0014379527419805527, 0.008880739100277424, -0.016293233260512352, -0.0052030012011528015, 0.024062098935246468, 0.022094937041401863, -0.009764536283910275, -0.01036323793232441, 0.03093291074037552, 0.012829317711293697, 0.02350616082549095, 0.008923503570258617, 0.003200202016159892, -0.02567289024591446, 0.013221324421465397, -0.011824354529380798, -0.006649862974882126, 0.018060829490423203, 0.002353823510929942, 0.006824484560638666, 0.0005688554956577718, 0.003383732633665204, -0.0009889266220852733, -0.027212409302592278, -0.017048737034201622, 0.012373164296150208, -0.020469889044761658, 0.000125397666124627, 0.02999209426343441, -0.0078116292133927345, -0.003071908839046955, 0.023263828828930855, 0.010291963815689087, 0.011824354529380798, 0.008524368517100811, -0.007209363859146833, -0.001255313167348504, 0.005983451381325722, -0.012038176879286766, -0.031902238726615906, -0.030049113556742668, -0.007045433856546879, 0.011054595932364464, -0.0030843818094581366, 0.012430183589458466, 0.0017747222445905209, -0.022508325055241585, 0.013071649707853794, -0.0014192432863637805, -0.007747482508420944, -0.0010887101525440812, -0.012921974062919617, 0.014425855129957199, 0.023762747645378113, 0.015765806660056114, 0.0023841150104999542, 0.010669715702533722, 0.01124703511595726, 0.01600813679397106, 0.0027440486010164022, -0.0043441494926810265, 0.010192180052399635, 0.011938393115997314, 0.023050008341670036, -0.01085502840578556, -0.006781720090657473, -0.01997097209095955, 0.018816333264112473, -0.007455259095877409, -0.023491906002163887, -0.007227182388305664, -0.025886712595820427, -0.025159718468785286, -0.012401673942804337, -0.0023039316292852163, -0.008267782628536224, -0.016706623136997223, 0.03187372907996178, 0.010591314174234867, -0.010377492755651474, -0.016236213967204094, 0.0008704335778020322, -0.030106132850050926, 0.012750916182994843, 0.013962574303150177, 0.01991395279765129, 0.004732592962682247, 0.013378127478063107, 0.031617142260074615, 0.012893464416265488, -0.025715654715895653, -0.00208654603920877, 0.02025606669485569, 0.009586350992321968, 0.005309911910444498, -0.012515712529420853, 0.0025426994543522596, -0.005716173909604549, 0.004098254255950451, 0.0030059805139899254, 0.011931265704333782, -0.005937123205512762, -0.0029008514247834682, 0.014710950665175915, -0.0036955561954528093, 0.014896263368427753, -0.004793175496160984, -0.025587361305952072, 0.025473322719335556, -0.014896263368427753, 0.008153744041919708, 0.0072378735058009624, -0.005096090026199818, 0.008153744041919708, -0.010092396289110184, -0.008153744041919708, 0.0011457293294370174, 0.04399030655622482, -0.01861676573753357, 0.015680277720093727, 0.026129044592380524, -0.020027991384267807, -0.03424002230167389, 0.008695426397025585, 0.0021453469526022673, -0.0016535564791411161, -0.007555042859166861, -0.022579599171876907, -0.01694895513355732, 0.005195873789489269, -0.01052004098892212, 0.002788594691082835, -0.00899477768689394, 0.007326966151595116, -0.017405107617378235, -0.009964103810489178, 0.0461285263299942, 0.006264983676373959, 0.006158072501420975, -0.025872457772493362, 0.018132101744413376, -0.006728264503180981, 0.011852864176034927, 0.0005590553628280759, -0.002551608718931675, 0.00764057133346796, -0.0031360555440187454, -0.019985226914286613, 0.0055522434413433075, 0.010013995692133904, -0.003064781427383423, 0.01978565938770771, -0.008431713096797466, 0.006108180619776249, -0.015209869481623173, -0.008780955336987972, -0.0013862791238352656, -0.004144582431763411, 0.01430468913167715, 0.015238378196954727, -0.0001245067542186007, -0.008417458273470402, 0.013820026069879532, -0.003041617339476943, 0.0038309767842292786, 0.012294762767851353, -0.012266253121197224, -0.014924773015081882, -0.0030558721628040075, 0.0059478143230080605, -2.9651093427673914e-05, 0.009187216870486736, 0.005003434140235186, 0.007287765387445688, 0.01924397610127926, 0.009429548867046833, 0.001068218844011426, 0.012059559114277363, 0.0029739071615040302, 0.008289164863526821, 0.0010477276518940926, 0.009671879932284355, -0.007248564623296261, 0.004472442902624607, 0.019044410437345505, -0.014062358066439629, 0.002289676805958152, 0.008331929333508015, 0.01569453254342079, 0.0009363620192743838, 0.022693637758493423, -0.013413764536380768, 0.011952647939324379, 0.004949978552758694, 0.018246140331029892, 0.023320848122239113, -0.016834916546940804, 0.002396587748080492, 0.00844596792012453, 0.004718338139355183, -0.00020034672343172133, 0.003326713340356946, -0.00907317828387022, 0.00034812887315638363, -0.029649978503584862, 0.0022397851571440697, -0.009301255457103252, 0.022864695638418198, -0.005463151261210442, 0.0033195859286934137, -0.0004055935423821211, -0.0032750398386269808, -0.012216361239552498, 0.02192387916147709, 0.02652817778289318, -0.0256158709526062, -0.003128928132355213, 0.0017524491995573044, -0.012522839941084385, 0.017818497493863106, 0.002503498923033476, -0.005238638259470463, 0.021952388808131218, 0.021125610917806625, -0.020754985511302948, -0.0216387826949358, -0.01710575632750988, -0.011867118999361992, -0.002293240511789918, -0.008780955336987972, 0.016464291140437126, -0.00987857487052679, -0.015794316306710243, 0.017148520797491074, -0.002141783246770501, -0.0021756384521722794, -0.011268417350947857, 0.021367941051721573, 0.026442648842930794, -0.0077546099200844765, -0.01329259853810072, -0.012401673942804337, -0.010006868280470371, -0.00406261719763279, 0.006721137091517448, -0.007911412976682186, 0.0007786683272570372, -0.001837087096646428, 0.003923633135855198, 0.001471807830967009, 0.008538623340427876, 0.005498788319528103, 0.01290059182792902, 0.00031316009699366987, -0.0026228828355669975, -0.005470278672873974, -0.00578032061457634, -0.0166353490203619, -0.00779737439006567, -0.010719607584178448, 0.00910168793052435, -0.030733343213796616, 0.008666916750371456, -0.019714385271072388, -0.0025444813072681427, -0.018089337274432182, -0.009301255457103252, 0.01590835489332676, 0.010890665464103222, 0.0065857162699103355, 0.022479815408587456, 0.02277916669845581, 0.016179194673895836, 0.007287765387445688, -0.02192387916147709, -0.011631914414465427, -0.011147251352667809, 0.006418222561478615, -0.015295397490262985, 0.0008281146292574704, 0.014083740301430225, -0.007130962330847979, 0.00818938110023737, -0.000710067106410861, -0.005366931203752756, 0.005794575437903404, 0.0005969196208752692, 0.013399509713053703, -0.004614990670233965, -0.011589150875806808, 0.006917140446603298, -0.005815957207232714, -0.003916505724191666, 0.0022772038355469704, 0.006172327324748039, 0.001083364593796432, -0.008723936043679714, -0.0038844323717057705, 0.021239647641777992, -0.0015805006260052323, -0.003962833900004625, -0.011717443354427814, 0.039115164428949356, -0.011460857465863228, 0.015566239133477211, 0.003544099163264036, -0.00822501815855503, -0.010263454169034958, -0.0003826522151939571, -0.009807300753891468, -0.011382455937564373, -0.002225530333817005, -0.013371000066399574, 0.01468244194984436, 0.024361448362469673, 0.016393017023801804, 0.005331294145435095, 0.025116953998804092, -0.016906190663576126, 0.02567289024591446, 0.00962198805063963, -0.0003336513473186642, -0.01409799512475729, -0.0190871749073267, -0.003353441134095192, -0.016435781493782997, -0.019129937514662743, -0.014318943955004215, 0.006596407387405634, -0.00742674944922328, 0.014411600306630135, 0.013135796412825584, -0.020142028108239174, 0.0032679124269634485, -0.003909378312528133, 0.01569453254342079, 0.010213562287390232, 0.014668187126517296, 0.008745318278670311, 0.014739460311830044, 0.02319255657494068, -0.01975714974105358, 0.0054061319679021835, -0.0010005085496231914, 0.013342490419745445, -0.008809464983642101, 0.00764057133346796, -0.007448131684213877, -0.019272485747933388, 0.009778791107237339, -0.02199515327811241, 0.016207704320549965, -0.005587880499660969, 0.017789987847208977, -0.005709046497941017, -0.0001191611954709515, 0.011282672174274921, 0.0246322900056839, 0.006489496678113937, 0.0013515329919755459, 0.0026638652198016644, -0.021524744108319283, -0.009415294043719769, 0.003870177548378706, -0.021538998931646347, -0.027540268376469612, 0.004810994025319815, 0.003948579076677561, 0.0052315108478069305, 0.011090232990682125, -0.005776756908744574, 0.004055489785969257, -0.007968432269990444, -0.016720877960324287, 0.015295397490262985, 0.012701024301350117, -0.025316519662737846, -0.017162775620818138, 0.021382195875048637, -0.0050355070270597935, -0.019956717267632484, -0.008845102041959763, -0.015152850188314915, 0.006642735563218594, 0.004155273549258709, -0.0058943587355315685, 0.006268547382205725, -0.000943489430937916, 0.013128669001162052, 0.0005425732233561575, -0.0108193913474679, 0.026756254956126213, 0.0025694272480905056, -0.0031039821915328503, -0.002123964950442314, 0.0014922991394996643, -0.01843145303428173, -0.002913324162364006, -0.0014281525509431958, -0.0032447483390569687, -0.01253709476441145, -0.0008655334822833538, -0.005862285383045673, 0.012002539820969105, 0.01055567804723978, -0.005876540206372738, -0.005926432088017464, -0.009094560518860817, -0.008859356865286827, -0.010840773582458496, -0.03002060391008854, -0.002009926363825798, 0.00742674944922328, -0.004094690550118685, -0.027540268376469612, 0.005309911910444498, 0.02059818245470524, -0.0028046313673257828, 0.005416823085397482, -0.00516736414283514, -0.009864320047199726, 0.0054061319679021835, 0.013677477836608887, 0.007562170270830393, 0.005630644969642162, -0.0182033758610487, 0.018417198210954666, 0.0059763239696621895, 0.003000634955242276, 0.0050283800810575485, 0.01780424267053604, -0.0034977709874510765, 0.01676364243030548, 0.022536834701895714, 0.015623258426785469, -0.003945015370845795, 0.034097474068403244, -0.007334093563258648, 0.004144582431763411, -0.0007906957762315869, 0.013093031942844391, 0.011318309232592583, 0.0016998846549540758, -0.02366296388208866, -0.003424715017899871, 0.0025890276301652193, 0.0005755374440923333, -0.0023342231288552284, 0.001339950948022306, -0.0052564567886292934, -0.025444813072681427, -0.0024660800117999315, -0.0005189637304283679, 0.015837080776691437, -0.008602770045399666, -0.005616390146315098, 0.004219420254230499, 0.0268417838960886, 0.005053325556218624, 0.007013360504060984, -0.005178055260330439, -0.003068345133215189, -0.0056342086754739285, -0.002120401244610548, -0.004928596317768097, 0.005969196557998657, 0.004725465551018715, -0.017005974426865578, -0.024147627875208855, -0.0011492930352687836, -0.012102323584258556, -0.016264723613858223, 0.008374693803489208, 0.0027903765439987183, 0.012758043594658375, -0.011197143234312534, 0.002685247454792261, -0.01528114266693592, -0.0012072031386196613, -0.02236577682197094, 0.0041695283725857735, -0.011168633587658405, 8.53060555527918e-05, 0.0065750256180763245, -0.027982167899608612, 0.01140383817255497, 0.007740355096757412, 0.008609897457063198, 0.031930748373270035, -0.008132361806929111, -0.022422796115279198, -0.001301641226746142, -0.009379656985402107, 0.011090232990682125, -0.03116098791360855, -0.01516710501164198, -0.014062358066439629, 0.008025450631976128, -0.006867248564958572, -0.014311816543340683, 0.005292093381285667, 0.022579599171876907, -0.024275919422507286, 0.007152344565838575, 0.012672514654695988, 0.01903015561401844, -0.014497129246592522, 0.012116578407585621, -0.016991719603538513, 0.008417458273470402, -0.02066945657134056, 0.014432982541620731, -0.011745953001081944, -0.0014388436684384942, -0.0015225905226543546, -0.008146616630256176, 0.019415033981204033, 0.002013490069657564, -0.012066686525940895, 0.015922609716653824, 0.005480969790369272, -0.01513859536498785, 0.017405107617378235, -0.018659530207514763, -0.011239907704293728, 0.002125746803358197, 0.0020740730687975883, 0.017034482210874557, 0.01924397610127926, -0.00046996286255307496, -0.019101427868008614, -0.003934324253350496, -0.004989179316908121, -0.01975714974105358, 0.002321750158444047, 0.005498788319528103, -0.011496494524180889, 0.006232910323888063, -0.01335674524307251, 0.007223618682473898, 0.0011644387850537896, -0.0059228683821856976, -0.02434719353914261, -0.004280002787709236, 0.008488732390105724, -0.018445707857608795, 0.004440369550138712, -0.00677459267899394, -0.002394805895164609, -0.028495339676737785, 0.02028457634150982, 0.005919304676353931, 0.02148197963833809, 0.008937758393585682, -0.010391747578978539, -0.011161506175994873, -0.0014040975365787745, 0.0038915597833693027, -0.012822190299630165, -0.0182033758610487, 0.009336892515420914, 0.01632174290716648, 0.011453730054199696, -0.018516981974244118, 0.011938393115997314, -0.01893037185072899, 0.0033712596632540226, 0.0005078271497040987, -0.014696696773171425, 0.005466714967042208, -0.004614990670233965, -0.013107286766171455, 0.003681301372125745, -0.009764536283910275, -0.0030594358686357737, -0.013499293476343155, 0.00030269171111285686, 0.007106016390025616, -0.006518006324768066, 0.00419091060757637, -0.004572226200252771, -0.005541552789509296, -0.015209869481623173, -0.003916505724191666, 0.04316352680325508, 0.02431868389248848, -0.0031360555440187454, 0.004066180903464556, -0.004985615611076355, -0.018445707857608795, 0.011845736764371395, -0.014226287603378296, -0.021524744108319283, 0.010277708992362022, 0.00290976045653224, -0.005908613558858633, 0.014347453601658344, 0.015423690900206566, -0.000953289563767612, 0.006856557447463274, 0.0023377868346869946, -0.004625681787729263, -0.009572096168994904, 0.01827464997768402, 0.011745953001081944, -0.0032144568394869566, -0.005306348204612732, 0.0040305438451468945, 0.012879209592938423, 0.0010940557112917304, 0.0005942468997091055, -0.01039887499064207, -0.0068708122707903385, 0.018132101744413376, 0.025530342012643814, -0.02290746010839939, -0.010384620167315006, -0.012850699946284294, -0.017091501504182816, 0.01357769500464201, 0.004208729136735201, 0.01027058158069849, -0.006810229737311602, -0.0062364740297198296, -0.021310921758413315, -0.009465185925364494, 0.009579223580658436, -0.021467724815011024, -0.032843053340911865, -0.011546386405825615, 0.012786553241312504, -0.005712610203772783, -0.020455634221434593, 0.00723074609413743, -0.005573625676333904, 0.002888378454372287, -0.007205800153315067, -0.000620083708781749, -0.019115682691335678, 0.01780424267053604, -0.008025450631976128, -0.02350616082549095, -0.0010343637550249696, -0.013869917951524258, -0.027583032846450806, -0.01299324817955494, -0.0018406506860628724, 0.026898803189396858, -0.0018103593029081821, 0.013905555009841919, 0.0007118489593267441, 0.0013390600215643644, -0.001575155183672905, -0.002605064306408167, 0.009044668637216091, -0.015922609716653824, 0.0012945138150826097, -0.008695426397025585, -0.009115942753851414, -0.02394806034862995, -0.029193826019763947, -0.017604675143957138, -0.000315832847263664, 0.02148197963833809, 0.007433876860886812, -0.008053960278630257, 0.007462386507540941, -0.010327600874006748, -0.013085904531180859, 0.013542057946324348, -0.004390477668493986, -0.008959140628576279, 0.00041561643593013287, -0.005840903148055077, -0.030391229316592216, -0.009978358633816242, -0.00834618415683508, -0.001446862006559968, 0.013299725949764252, 0.009080305695533752, -0.0034906435757875443, -0.0003528062370605767, -0.0031111096031963825, 0.003102200338616967, 0.010812263935804367, 0.0211968831717968, -0.003201983869075775, -0.0046328091993927956, -0.015095830895006657, -0.026670726016163826, 0.0011555295204743743, 0.0026246646884828806, 0.0058373394422233105, 0.018531236797571182, -0.027654306963086128, 0.017376597970724106, 0.004654191434383392, -0.001161766005679965, 0.0013354963157325983, 0.004329894669353962, 0.015494965016841888, 0.013734497129917145, 0.008702553808689117, -0.005131727084517479, 0.006460987031459808, -0.002809976926073432, 0.020783495157957077, 0.0027957221027463675, 0.01394119206815958, -0.0038630501367151737, 0.017904026433825493, 0.032557956874370575, -0.01430468913167715, 0.00012461812002584338, -0.008852229453623295, -0.0016090102726593614, -0.006942086387425661, 0.009436676278710365, 0.0010156542994081974, 0.00838182121515274, 0.00736260274425149, 0.009636242873966694, 0.0092014716938138, -0.003405114868655801, -0.002731575630605221, 0.030790362507104874, 0.028751926496624947, -0.008695426397025585, 0.009030414745211601, 0.005880103912204504, -0.02829577401280403, 0.0039129420183598995, 0.009465185925364494, -0.00786152109503746, -0.003738320665434003, -0.006503751501441002, -0.014739460311830044, 0.004504516255110502, -0.004746847786009312, 0.012230616062879562, -0.006803102325648069, 0.021824095398187637, -0.027169644832611084, -0.0035975545179098845, 0.003381950780749321, 0.008695426397025585, 0.014504256658256054, 0.015922609716653824, 0.002268294570967555, 0.0049072140827775, -0.016834916546940804, 0.0071844179183244705, -0.02186685986816883, -0.001468244125135243, -0.00816087145358324, 0.03292858228087425, 0.0024446977768093348, 0.011902756057679653, -0.011931265704333782, 0.0005332184955477715, -0.00022551535221282393, -0.0002372087474213913, -0.02999209426343441, -0.011382455937564373, -0.00809672474861145, 0.016706623136997223, 0.010327600874006748, 0.011510749347507954, -0.013648969121277332, 0.018673785030841827, -0.0005862285615876317, 0.013207069598138332, 0.009664752520620823, 7.08842053427361e-05, 0.019956717267632484, 0.02176707610487938, 0.005128163378685713, -0.011204270645976067, -0.00013920701167080551, 0.010904920287430286, 0.0019725076854228973, -0.009379656985402107, -0.027668561786413193, 0.006026215851306915, -0.013705987483263016, -0.005716173909604549, -0.030961420387029648, -0.009949848987162113], "a1e179c3-b165-44f2-8a8d-4ee950a281ae": [-0.0015285010449588299, 0.014226491563022137, -0.004372952505946159, -0.018087968230247498, -0.01582527905702591, -0.04471183195710182, 0.03625722974538803, 0.002802957547828555, -0.012946107424795628, -0.00561607675626874, 0.006655965931713581, 0.04043033346533775, 0.009165924973785877, -0.012431244365870953, -0.033791303634643555, -0.02043195255100727, -0.009938220493495464, 0.014402628876268864, -0.0009696031338535249, -0.044874418526887894, 0.062217190861701965, -0.003671789774671197, -0.02345338836312294, 0.009152376092970371, 0.016909200698137283, -0.035877857357263565, -0.013847118243575096, 0.01172669418156147, -0.03427907079458237, -0.014578767120838165, 0.011049241758883, 0.0026200455613434315, 0.02368372119963169, -0.027057431638240814, -0.034089382737874985, -0.023209504783153534, 0.013481294736266136, 0.01559494435787201, -0.005368806887418032, -0.0014472068287432194, -0.0325176939368248, -3.3211024401680334e-06, 0.020011931657791138, -0.0003052768006455153, -0.04687967896461487, -0.020310010761022568, 0.004251011181622744, 0.0010669868206605315, 0.005219767335802317, -0.011448938399553299, 0.01814216375350952, 0.007695854641497135, -0.022816583514213562, -0.0065848333761096, -0.002249140525236726, -0.014077452011406422, 0.024157937616109848, 0.06378887593746185, 0.00033936111140064895, -0.018751870840787888, 0.010710516013205051, 0.02205783687531948, 0.00920657254755497, -0.0014861603267490864, -0.017275026068091393, -0.048478465527296066, -0.013440647162497044, -0.013901314698159695, -0.06552315503358841, -0.0113947419449687, 0.010412436909973621, 0.028154904022812843, -0.035417187958955765, -0.0014624494360759854, -0.024076644331216812, 0.0368804857134819, -0.012485439889132977, 0.0024015672970563173, 0.017098888754844666, 0.024035995826125145, -0.021109404042363167, -0.018196361139416695, -0.006053033284842968, 0.018765419721603394, 0.08286592364311218, -0.00765520753338933, 0.016909200698137283, -0.03273447975516319, -0.033493224531412125, -0.00084596814122051, 0.007553589530289173, 0.026813549920916557, -0.00425439840182662, -0.008434277027845383, 0.001871461165137589, 0.00907108187675476, -0.003705662442371249, 0.011448938399553299, 0.021908797323703766, 0.003956319764256477, 0.01493104174733162, 0.00912527833133936, -0.0451183021068573, 0.025567037984728813, -0.022410111501812935, -0.013806471601128578, 0.018169261515140533, 0.008352982811629772, -0.009450455196201801, 0.043736301362514496, 0.00864428747445345, -0.04278786852955818, 0.03845217451453209, -0.004376339726150036, -0.028940748423337936, -0.020459050312638283, 0.01671951450407505, -0.0054636504501104355, 0.025431547313928604, -0.04094519838690758, -0.013162892311811447, -0.005080889910459518, 0.06330111622810364, 0.04186653345823288, 0.0063409507274627686, 0.009226895868778229, 0.01692275144159794, 0.026827098801732063, 0.028588473796844482, 0.008874621242284775, 0.010791810229420662, -0.03178604692220688, 0.0323009118437767, 0.03427907079458237, 0.024659251794219017, 0.024334074929356575, 0.013901314698159695, 0.056147221475839615, -0.014768453314900398, 0.031108595430850983, -0.0769585445523262, -0.03281577304005623, -0.029482711106538773, 0.03167765587568283, 0.02335854433476925, -0.0010678337421268225, -0.03154216334223747, 0.016380788758397102, 0.006137715186923742, 0.01837249845266342, -0.02627158723771572, -0.03330354019999504, 0.024063093587756157, 0.06622770428657532, 0.04322143644094467, 0.007208089344203472, -0.028940748423337936, 0.011923154816031456, -0.0065170880407094955, 0.03181314468383789, 0.014700707979500294, -0.07955995947122574, -0.020391304045915604, -0.0007138650398701429, 0.010019514709711075, 0.01612335816025734, -0.015202022157609463, 0.01180798839777708, -0.022152679041028023, 0.018128614872694016, 0.04124327749013901, 0.01960545964539051, -0.004393276292830706, -0.015025884844362736, -0.0008916961960494518, 0.0033364510163664818, 0.04308594763278961, -0.011780889704823494, 0.029184632003307343, -0.014809099957346916, -0.0019053337164223194, 0.01841314509510994, -4.8850637540454045e-05, -0.015540748834609985, -0.033791303634643555, 0.004095197189599276, 0.003322901902720332, -0.028209101408720016, 0.01928028278052807, 0.008793327026069164, -0.06048291176557541, -0.014619413763284683, 0.022220425307750702, 0.03135247901082039, 0.007180991116911173, -0.02766713872551918, 0.042814966291189194, 0.008203943260014057, 0.032328009605407715, 0.01818281039595604, -0.011591203510761261, -0.05647239834070206, -0.05663498491048813, 0.05966997146606445, -0.02667805925011635, 0.026393529027700424, -0.015513650141656399, 0.006716936361044645, -0.013725177384912968, -0.044034380465745926, 0.0329783633351326, -0.02627158723771572, 0.00503346836194396, -0.014091000892221928, -0.019131243228912354, 0.022897876799106598, -0.01678726077079773, -0.0087052583694458, 0.011374418623745441, -0.010453084483742714, -0.006479828152805567, 0.02010677568614483, 0.019320931285619736, -0.014091000892221928, -0.03772052749991417, 0.011672497726976871, 0.01493104174733162, 0.020824873819947243, -0.011089889332652092, -0.004400050733238459, 0.054819416254758835, 0.011767340824007988, -0.01134732086211443, -0.013677755370736122, 0.013379676267504692, 0.03243640065193176, -0.0013870829716324806, 0.040891002863645554, -0.010486956685781479, -0.03452295437455177, 0.013820020481944084, 0.004931850358843803, -0.01531041506677866, 0.0029232052620500326, 0.016272395849227905, -0.008969464339315891, -0.045768655836582184, -0.004613447934389114, 0.028019413352012634, -0.02182750217616558, -0.004515217617154121, 0.004972497466951609, -0.020120324566960335, -0.015703337267041206, -0.011801213957369328, -0.019293831661343575, 0.01923963613808155, -0.02896784618496895, 0.0016013270942494273, -0.026623863726854324, 0.009884024038910866, -0.020973913371562958, 0.018399596214294434, 0.0029164308216422796, 0.046960972249507904, -0.03769342973828316, 0.024510212242603302, -0.03154216334223747, 0.005429777782410383, 0.03969868645071983, -0.0279381200671196, -0.02106875739991665, 0.025119919329881668, 0.004765874706208706, -0.03330354019999504, -0.009917897172272205, -0.016705965623259544, -0.007905865088105202, -0.009240444749593735, -0.03154216334223747, 0.01596076786518097, -0.02869686670601368, -0.004396663513034582, 0.04571446031332016, -0.008075227960944176, 0.006540799047797918, 0.003576946444809437, -0.00754681508988142, -0.02656966634094715, 0.012939332984387875, -0.011503134854137897, -0.011550555936992168, 0.011442163959145546, 0.05148635059595108, -0.002171233529224992, -0.00938948430120945, -0.002416810020804405, -0.012505763210356236, -0.03636562079191208, -0.031298283487558365, -0.004623609595000744, -0.019497068598866463, -0.012200910598039627, -0.0039461576379835606, 0.04235429689288139, -0.011848635040223598, 0.02116359956562519, -0.013691304251551628, 0.005538169760257006, 0.008739130571484566, 0.06097067892551422, 0.014741355553269386, 0.012187360785901546, 0.009633366949856281, 0.004687967710196972, 0.029076239094138145, -0.004857330583035946, -0.035417187958955765, -0.011096663773059845, -0.018562184646725655, 0.008562993258237839, 0.01923963613808155, -0.03834378346800804, 0.01228897925466299, 0.03807280212640762, -0.02544509619474411, 0.04395308345556259, -0.044874418526887894, 0.01747826114296913, -0.04278786852955818, -0.027992315590381622, -0.012817391194403172, -0.021868150681257248, -0.03875025361776352, -0.002592947566881776, -0.011286349967122078, -0.011286349967122078, -0.05549686774611473, 0.0057041458785533905, -0.015323963947594166, -0.012099292129278183, -0.010310819372534752, -0.022247523069381714, -0.0030603893101215363, 0.02484893798828125, 0.0359591506421566, -0.0022474469151347876, 0.004698129370808601, -0.013718402944505215, 0.017437614500522614, 0.0007392694824375212, 0.0012431243667379022, 0.01566269062459469, -0.027382608503103256, 0.013955511152744293, 0.0020137259270995855, -0.015296866185963154, -0.02826329693198204, 0.0026149647310376167, -0.005900606978684664, 0.012072194367647171, -0.04200202226638794, -0.04560606926679611, -0.00166907231323421, 0.0034025025088340044, 0.03427907079458237, 0.013928412459790707, -0.00014131225179880857, 0.03414357826113701, 0.026732254773378372, -0.05240768566727638, 0.005849797744303942, 0.0370972715318203, -0.026014156639575958, -0.03371001034975052, -0.04907462000846863, 0.016136907041072845, 0.0034956522285938263, 0.022410111501812935, 0.018304752185940742, 0.005660111550241709, -0.002203412586823106, -0.0013294995296746492, -0.029347220435738564, 0.04926430806517601, 0.008535894565284252, 0.02196299284696579, -0.010879878886044025, 0.03148796781897545, 0.025702528655529022, -0.027084531262516975, 0.030078867450356483, 0.014605864882469177, -0.0015420500421896577, -0.013061273843050003, -0.0011745323427021503, 0.010053387843072414, 0.012424468994140625, -0.012668352574110031, -0.02686774544417858, 0.003593882778659463, 0.021055208519101143, 0.00882719922810793, 0.024659251794219017, 0.030133064836263657, -0.03520040586590767, 0.00426456006243825, -0.029807887971401215, -0.00015115647693164647, 0.012187360785901546, 0.007634883746504784, -0.007553589530289173, -0.009653691202402115, -0.012397371232509613, 0.026420626789331436, 0.005629626102745533, 0.03910252824425697, 0.002020500600337982, -0.04240849241614342, -0.02226107195019722, 0.008495247922837734, 0.046500302851200104, -0.010676642879843712, 0.024591507390141487, -0.03495652228593826, 0.018995754420757294, 0.02246430702507496, 0.03452295437455177, -0.007228412665426731, -0.008386855944991112, -0.014389079995453358, -0.00043610972352325916, 0.023737916722893715, 0.014538119547069073, -0.007783923298120499, -0.024537310004234314, 0.014307785779237747, -0.003549848450347781, -0.012627705000340939, -0.0304582417011261, -0.0007011627894826233, 0.02617674507200718, -0.0135693633928895, 0.0006181749631650746, -0.0053078364580869675, -0.011984125711023808, -0.021109404042363167, 0.019632559269666672, 0.004342467058449984, 0.020513245835900307, -0.002120424760505557, 0.027477452531456947, -0.021976541727781296, 0.012539636343717575, -0.004186653066426516, -0.004850556142628193, -0.014389079995453358, -0.006073357071727514, -0.01951061747968197, -0.04693387448787689, -0.027626492083072662, -0.0038784125354140997, 0.018995754420757294, -0.005643174983561039, -0.006415470503270626, -0.05826086923480034, -0.012505763210356236, 0.015581395477056503, 0.02684064768254757, -0.0011508215684443712, 0.0009924671612679958, 7.806575740687549e-05, -0.049345601350069046, -0.006720323581248522, 0.001956142717972398, -0.01903640106320381, -0.025187665596604347, -0.001954448875039816, 0.005372194107621908, -0.0018342012772336602, -0.0011813068995252252, -0.005128311458975077, -0.021542973816394806, -0.002586172893643379, -0.025065723806619644, -0.005439939443022013, -0.02136683650314808, -0.031135693192481995, -0.013291607610881329, 0.001830813940614462, 0.04568736255168915, -0.014605864882469177, 0.006554347928613424, -0.037503741681575775, 0.005819312762469053, -0.011320223100483418, 0.006550960708409548, -0.023846309632062912, -0.015527199022471905, -0.03650111332535744, 0.021705562248826027, -0.012763195671141148, -0.019713852554559708, 0.027911022305488586, 0.000757476023864001, 0.025621233507990837, -0.036474015563726425, -0.027477452531456947, 0.007092922460287809, 0.014226491563022137, -0.003112891921773553, -0.018833165988326073, -0.025770273059606552, 0.0027369060553610325, 0.010575025342404842, 0.0015691481530666351, -0.02902204357087612, -0.008928816765546799, 0.02537735179066658, -0.016299495473504066, 0.007519716862589121, 0.0008413106552325189, -0.025431547313928604, 0.00998564250767231, 0.009220121428370476, 0.006943882908672094, -0.005924317520111799, -0.030810516327619553, 0.009118503890931606, 0.004650707822293043, -0.009653691202402115, -0.0020442113745957613, -0.001638586982153356, -0.005812537856400013, 0.035877857357263565, -0.0019104145467281342, -0.04051163047552109, 0.015649141743779182, 0.026786452159285545, 0.03547138720750809, -0.029103336855769157, 0.008075227960944176, 0.021922346204519272, -0.03669079765677452, -0.011665723286569118, 0.008420728147029877, -0.00842750258743763, 0.01442972756922245, -0.021583620458841324, 0.016773711889982224, -0.047394540160894394, 0.000923875137232244, -0.023941153660416603, -0.0017969413893297315, 0.01818281039595604, -0.020987462252378464, -0.0010576719650998712, -0.01708533987402916, -0.04706936329603195, 0.005047017242759466, -0.03316804766654968, -0.0039461576379835606, 0.01560849417001009, -0.012979979626834393, 0.018304752185940742, 0.011272801086306572, -0.027409708127379417, 0.024997977539896965, -0.01084600668400526, 0.03132538124918938, 0.01990353874862194, 0.017925379797816277, 0.08768938481807709, 0.0033804853446781635, 0.0010915445163846016, 0.014199393801391125, -0.02902204357087612, 0.0038648636545985937, 0.017600202932953835, -0.007330030668526888, 3.83713049814105e-05, -0.03094600699841976, -0.005060566123574972, -0.00534170912578702, 0.022044287994503975, -0.0031772498041391373, -0.02866976708173752, -0.03758503496646881, -0.016082709655165672, -0.010155005380511284, 0.004691354930400848, 0.04005096107721329, 0.023507583886384964, 0.010940849781036377, -0.039129626005887985, 0.023399190977215767, -0.01295288186520338, -0.0020780840422958136, 0.005063953809440136, -0.01006693672388792, 0.014389079995453358, -0.005680434871464968, 0.010954398661851883, 0.0051452480256557465, -0.004477957729250193, -0.019957736134529114, 0.01487684529274702, 0.017207279801368713, -0.022437209263443947, 0.015635591000318527, -0.024266330525279045, 0.02342628873884678, 0.006513700820505619, -0.020689383149147034, 0.01894155703485012, 0.004450859501957893, 0.014673610217869282, 0.0416768454015255, -0.009613043628633022, -0.013826794922351837, 0.00046617165207862854, -0.029347220435738564, 0.03969868645071983, 0.014809099957346916, 0.04110778495669365, -0.0034668606240302324, 0.004505055490881205, 0.0023473710753023624, 0.003766633104532957, 0.004803134594112635, -0.024537310004234314, 0.004942012019455433, 0.010175328701734543, -0.025824470445513725, 0.05262447148561478, -0.0017749242251738906, 0.004864105023443699, 0.027355510741472244, 0.00706582423299551, -0.03330354019999504, -0.016177553683519363, -0.011360869742929935, -0.01035146601498127, 0.007838119752705097, -0.006219009403139353, -0.022112032398581505, 0.01841314509510994, 0.04156845435500145, 0.02677290327847004, -0.01880606636404991, -0.03850637003779411, 0.0012566734803840518, 0.00445424672216177, 0.000760439841542393, -0.005260414443910122, -0.006737260147929192, 0.02342628873884678, 0.003563397331163287, 0.019022852182388306, -0.01814216375350952, 0.0323009118437767, -0.04289625957608223, -0.000682532845530659, 0.038235388696193695, 0.021624267101287842, 0.04072841256856918, -0.013887765817344189, 0.004972497466951609, 0.03016016259789467, 0.03422487527132034, -0.003570172004401684, -0.048613954335451126, 0.014321334660053253, -0.010344691574573517, 0.019849343225359917, -0.008434277027845383, 0.00888817012310028, -0.019984833896160126, -0.027328412979841232, 0.02528250776231289, 0.007838119752705097, -0.009253994561731815, -0.018155712634325027, -0.0064459554851055145, 0.00850879680365324, -0.011950252577662468, -0.003570172004401684, 0.020824873819947243, -0.012451567687094212, -0.044766027480363846, 0.001303248223848641, -0.013379676267504692, -0.008413953706622124, -0.02404954470694065, 0.022504955530166626, 0.015540748834609985, -0.012925784103572369, -0.026515470817685127, 0.03048533946275711, -0.022965623065829277, -0.042381394654512405, -0.005107988137751818, 0.0028198938816785812, 0.005141860339790583, 0.027314864099025726, 0.02812780626118183, -0.02285723015666008, -0.012614156119525433, 0.00960626918822527, -0.003895348869264126, 0.009680788964033127, 0.013596461154520512, 0.0036988877691328526, 0.044467948377132416, 0.00434585427865386, 0.013095146976411343, -0.00854266993701458, -0.01265480276197195, -0.006188523955643177, 0.01880606636404991, 0.01635369099676609, 0.011367644183337688, 0.0038547017611563206, -0.03891284018754959, -0.025797370821237564, 0.024469565600156784, -0.0004729461797978729, 0.03471263870596886, 0.005362032447010279, 0.002730131382122636, -0.007479069754481316, -0.0019053337164223194, 0.006357886828482151, -0.0067575834691524506, 0.006964206229895353, -0.011042467318475246, -0.017424065619707108, -0.018968654796481133, 0.028317492455244064, -0.024591507390141487, -0.015351061709225178, -0.017722144722938538, 0.005890444852411747, -0.022437209263443947, -0.02839878760278225, 0.041216179728507996, 0.006581446155905724, -0.01781698688864708, 0.0013498230837285519, 0.0164891816675663, 0.04514539986848831, -0.02746390365064144, 0.04330272972583771, 0.022843681275844574, 0.022748837247490883, 0.005572042427957058, 0.007485844660550356, 0.02551284246146679, -0.004776036366820335, 0.02411729097366333, -0.002755535999312997, 0.012356724590063095, -0.0020238878205418587, 0.012139939703047276, -0.00909140519797802, -0.015716886147856712, -0.018453791737556458, 0.00590399419888854, 0.030295653268694878, -0.013772598467767239, 0.0015793099300935864, 0.03639272227883339, 0.042381394654512405, 0.023101111873984337, -0.020486148074269295, 0.015771081671118736, 0.026827098801732063, -0.007601011078804731, -0.03235510736703873, -0.004183265846222639, -0.007424873765558004, -0.027477452531456947, 0.017789889127016068, -0.023236602544784546, 0.024361172690987587, -0.011272801086306572, 0.030729221180081367, -0.022003641352057457, -0.029509808868169785, 0.011835086159408092, 0.008481699042022228, 0.007980383932590485, -0.004958948586136103, -0.005819312762469053, 0.0098501518368721, 0.008894944563508034, 0.012139939703047276, -0.052028313279151917, 0.0006994691793806851, 0.028778159990906715, 0.012343174777925014, -0.006429019384086132, 0.04544347897171974, 0.03902123495936394, 0.0011169490171596408, 0.008949141018092632, 0.02265399508178234, 0.023304348811507225, 0.014036805368959904, -0.02043195255100727, 0.01560849417001009, -0.00610384251922369, 0.0003903816977981478, 0.044196967035532, -0.0366366021335125, 1.978106956812553e-05, -0.030214358121156693, 0.05251607671380043, 0.03273447975516319, -0.033222246915102005, 0.010398888029158115, 0.01891445927321911, 0.0020289686508476734, 0.016909200698137283, -0.035417187958955765, 0.010419211350381374, 0.03842507675290108, -0.017261477187275887, 0.011984125711023808, 0.01027017179876566, 0.03682629019021988, -0.017437614500522614, 0.010012740269303322, 0.03354742377996445, 0.017261477187275887, -0.008949141018092632, -0.012316077016294003, 0.0011686047073453665, -0.03254479169845581, 0.03858766332268715, -0.016340142115950584, -0.010696967132389545, -0.021881699562072754, -0.00784489419311285, 0.02239656262099743, 0.011577654629945755, 0.024401821196079254, -0.007980383932590485, 0.032924167811870575, 0.05533427745103836, 0.029618199914693832, -0.022098483517766, -0.01864347793161869, 0.017261477187275887, -0.0032941102981567383, 0.023344995453953743, -0.03422487527132034, -0.02507927268743515, 0.01161152683198452, -0.01353549025952816, 0.008549444377422333, 0.0334390290081501, -0.03582366183400154, -0.011299898847937584, 0.006811779923737049, 0.010263397358357906, -0.031162790954113007, -0.0031111983116716146, 0.013223862275481224, -0.01605561189353466, -0.007269059773534536, -0.004820070695132017, -0.0031349090859293938, -0.012017997913062572, -0.00304345297627151, -0.01442972756922245, -0.011963802389800549, 0.024537310004234314, -0.009728210046887398, -0.0106495451182127, -0.00561607675626874, 0.043275631964206696, 0.034089382737874985, 0.02100101113319397, -0.05365419760346413, 0.0038072802126407623, 0.05135086178779602, 0.004105358850210905, -0.010392113588750362, -0.005077502690255642, -0.00810910016298294, -0.010934075340628624, -0.0040647117421031, -0.013257735408842564, -0.007377452217042446, -0.02143458090722561, 0.013108695857226849, 0.01182831171900034, -0.004626997280865908, -0.014619413763284683, 0.017329221591353416, -0.01531041506677866, -0.019348029047250748, 0.010344691574573517, -0.011780889704823494, -0.01788473315536976, 0.027612943202257156, 0.0021288928110152483, 6.864494207547978e-05, 0.05560525879263878, 0.043709203600883484, 0.004183265846222639, -0.01560849417001009, -0.0013887765817344189, 0.054792314767837524, 0.021610718220472336, 0.006252881605178118, -0.0008815344190225005, -0.005768503528088331, 0.008054903708398342, 0.04202912002801895, 0.009396258741617203, -0.020513245835900307, 0.016976946964859962, -0.01367098093032837, -0.012221233919262886, 0.013562588952481747, 0.008170071057975292, -0.0028842517640441656, 0.028615571558475494, -0.021841051056981087, 0.009999191388487816, 0.008935592137277126, -0.0095046516507864, 0.027314864099025726, -0.0039461576379835606, -0.00454570259898901, -0.0038614762015640736, -0.02780262939631939, -0.010879878886044025, -0.004650707822293043, -0.010263397358357906, 0.016164004802703857, -0.014497472904622555, -0.014768453314900398, -0.021515874192118645, -0.03698887676000595, 0.01361678447574377, 0.0230198185890913, -0.010500505566596985, 0.011706369929015636, 0.024469565600156784, -0.013542265631258488, 0.0035735592246055603, 0.016611123457551003, 0.025716077536344528, 0.0003008310159202665, -0.008393630385398865, 0.029645299538969994, -0.005138473119586706, 0.007485844660550356, 0.010534378699958324, -0.0062122344970703125, 0.015838827937841415, -0.00842750258743763, 0.023046916350722313, -0.050375331193208694, 0.04704226553440094, 0.004105358850210905, 0.0027978767175227404, -0.007831345312297344, -0.047096461057662964, 0.007235187105834484, 0.007472295314073563, 0.012024772353470325, -0.02464570291340351, -0.017275026068091393, -0.009809505194425583, -0.022911425679922104, -0.0010458164615556598, 0.003841152647510171, 0.03089180961251259, -0.006219009403139353, -0.025255410000681877, 0.004488119389861822, 0.029672397300601006, 0.00416294252499938, 0.006229171063750982, -0.00358710833825171, 0.004623609595000744, -0.009159150533378124, -0.01501233596354723, -0.021285541355609894, -0.029536906629800797, -0.0004117637872695923, -0.005036855582147837, -0.014009706676006317, -0.020594540983438492, -0.0008048976305872202, -0.016705965623259544, 0.022884327918291092, -0.020486148074269295, -0.003912285435944796, 0.02872396446764469, -0.024035995826125145, -0.0015886249020695686, 0.013589686714112759, 0.0010890041012316942, 0.010100808925926685, -0.019483519718050957, -0.0011753791477531195, -0.01880606636404991, -0.004047775641083717, 0.016109807416796684, -0.003104423638433218, 0.014104550704360008, 0.03227381408214569, -0.056580789387226105, -0.027355510741472244, 0.011252477765083313, -0.00861041434109211, -0.013860668055713177, -0.01884671486914158, -0.028588473796844482, -0.015811730176210403, 0.011604752391576767, 0.010019514709711075, 0.0054907482117414474, -0.0017766178352758288, 0.014727805741131306, -0.014890394173562527, -0.007628109306097031, 0.02528250776231289, -0.012160263024270535, -0.003355080960318446, -0.04175813868641853, 0.01923963613808155, -0.0373411551117897, -0.013813246041536331, 0.026827098801732063, 0.04796360060572624, 0.005741405766457319, -0.008515571244060993, 0.0016013270942494273, -0.004667644388973713, -0.0036853388883173466, -0.006710161920636892, -0.005917543079704046, -0.02872396446764469, -0.0015725353732705116, 0.02402244694530964, -0.013874216936528683, 0.010724064894020557, -0.007512942422181368, -0.01837249845266342, -0.020594540983438492, -0.022179778665304184, 0.0053078364580869675, -0.012146714143455029, 0.028371689841151237, 0.0015073306858539581, 4.236721360939555e-05, 0.04205621778964996, -0.036311425268650055, 0.01602851413190365, -0.025323154404759407, 0.003158619860187173, 0.004711678717285395, 0.004244236741214991, -0.0020001770462840796, 0.007614560425281525, 0.018155712634325027, 0.004372952505946159, 0.0021864762529730797, 0.02013387344777584, -0.0017749242251738906, -0.009443680755794048, 0.008569767698645592, 0.006781294476240873, -0.028940748423337936, -0.00869170855730772, 0.011062790639698505, -0.024008898064494133, 0.027084531262516975, -0.018006673082709312, 0.008339433930814266, 0.00358372088521719, 0.03682629019021988, 0.01621820032596588, 0.01765439845621586, -0.021190697327256203, 0.034848131239414215, 0.006747421808540821, 0.017166633158922195, -0.012614156119525433, -0.004698129370808601, -0.003797118319198489, 0.04043033346533775, -0.028344590216875076, 0.0099043482914567, 0.002802957547828555, -0.016909200698137283, 0.010791810229420662, 0.01142861507833004, 0.008684934116899967, -0.0019239636603742838, 0.010737613774836063, -0.0020120323169976473, -0.02003902941942215, 0.026623863726854324, 0.03831668570637703, -0.0012456647818908095, 0.030376946553587914, 0.026379980146884918, -0.0013599848607555032, 0.017342770472168922, 0.017207279801368713, -0.015771081671118736, 0.0021390547044575214, 0.022017190232872963, -0.005087664350867271, -0.0027775531634688377, -0.006469666492193937, 0.004074873868376017, 0.01509363017976284, 0.028019413352012634, 0.0010974722681567073, -0.0052299294620752335, -0.002880864543840289, 0.02766713872551918, 0.024361172690987587, 0.007275834213942289, 0.02956400439143181, 0.024930233135819435, -0.024198584258556366, -0.018128614872694016, 0.0009433518862351775, 0.012810616753995419, -0.00021911338262725621, -0.006300303619354963, 0.0016123356763273478, 0.0035058141220360994, -0.004677806049585342, 0.007451971992850304, 0.03698887676000595, 0.00561607675626874, -0.012580282986164093, -0.019483519718050957, 0.004474570509046316, -0.021407483145594597, -0.002662386279553175, -0.0246186051517725, 0.007628109306097031, 0.0019205763237550855, -0.011015369556844234, -0.006943882908672094, -0.010669868439435959, -0.01609625853598118, 0.012532861903309822, -0.0007710250210948288, -0.058206673711538315, -0.03384550288319588, -0.01287158764898777, 0.012939332984387875, -0.02368372119963169, -0.017275026068091393, 0.035146210342645645, -0.014361982233822346, 0.012363499030470848, 0.03075632080435753, 0.007601011078804731, -0.009416582994163036, -0.002135667484253645, 0.024076644331216812, -0.01084600668400526, 0.016272395849227905, -0.016407886520028114, -0.01134732086211443, 0.010283720679581165, 0.010527604259550571, 0.0024523762986063957, 0.001543743652291596, -0.017261477187275887, 0.013521941378712654, -0.010080485604703426, 0.004281496629118919, -0.030702123418450356, 0.010473407804965973, -0.003915672656148672, 0.012810616753995419, -0.023602427914738655, -0.002616658341139555, -0.0062630437314510345, -0.01559494435787201, 0.021976541727781296, 0.018833165988326073, -0.008718807250261307, 0.01054792758077383, 0.0027843276038765907, 0.006683063693344593, -0.00717421667650342, 0.009281092323362827, -0.014185844920575619, -0.02959110215306282, -0.00928786676377058, -0.029374318197369576, -0.008115874603390694, -0.0065035391598939896, 0.00901011098176241, -0.028019413352012634, 0.010906976647675037, 0.012214459478855133, -0.023900505155324936, -0.008115874603390694, -0.010507280007004738, 0.03016016259789467, 0.0014065597206354141, 0.013996157795190811, 0.010554702021181583, -0.010696967132389545, 0.04083680734038353, -0.003952932544052601, 0.004677806049585342, 0.035877857357263565, -0.01035146601498127, -0.016543377190828323, -0.007194539997726679, 0.024496663361787796, -0.019415773451328278, -0.0106495451182127, -0.008894944563508034, 0.01190960593521595, 0.017044691368937492, 0.0025573812890797853, 0.015554297715425491, -0.016611123457551003, -0.0015081774909049273, -0.032924167811870575, -0.0038072802126407623, 0.015052983537316322, -0.011591203510761261, -0.002391405403614044, 0.02368372119963169, -0.013183215633034706, 0.0057244691997766495, 0.0060225483030080795, -0.027518099173903465, 0.005565267987549305, -0.013826794922351837, -0.006429019384086132, 0.01386744249612093, 0.00938948430120945, 0.0019070273265242577, 0.0001811125548556447, -0.0060428716242313385, -0.0164891816675663, -0.03295126557350159, 0.016136907041072845, 0.011205055750906467, -0.014985238201916218, -0.020486148074269295, -0.0006897308048792183, 0.007783923298120499, -0.019090596586465836, -0.00840717926621437, -0.022870779037475586, -0.0014082533307373524, -0.0020611477084457874, 0.011570880189538002, 0.007804247085005045, -0.011950252577662468, -0.0029079625383019447, -0.008664610795676708, 0.01784408465027809, -0.030512437224388123, 0.005660111550241709, -0.011896057054400444, -0.028507178649306297, -0.03075632080435753, -0.003648079000413418, -0.002059454098343849, 0.023507583886384964, -0.0019138018833473325, -0.00794651173055172, -0.014280688017606735, 0.017329221591353416, 0.010676642879843712, 0.007621334865689278, -0.013278058730065823, -0.037070173770189285, 0.009484327398240566, -0.002796183107420802, 0.005609302315860987, -0.009132052771747112, -0.016272395849227905, -0.005077502690255642, -0.007025177124887705, -0.005023306235671043, 0.012180586345493793, 0.03791021183133125, -0.00503346836194396, 0.04492861405014992, -0.004159555304795504, -0.027612943202257156, 0.007445197086781263, -0.0038547017611563206, -0.013061273843050003, 0.017058240249753, -0.0010026289382949471, -0.02024226449429989, -0.008522345684468746, 0.012498988769948483, 0.01903640106320381, 0.0025912539567798376, 0.012377047911286354, 0.01761375181376934, 0.001996789826080203, -0.005978513974696398, -0.021570071578025818, 0.004799747373908758, -0.0019917087629437447, -0.011679272167384624, 0.006869363132864237, -0.007431648205965757, 0.0005652490071952343, 0.02624448947608471, 0.0016707659233361483, 0.028344590216875076, 0.003515975782647729, 0.038994137197732925, 0.0023338221944868565, 0.022735288366675377, -0.013366127386689186, -0.01976804807782173, 0.008271688595414162, 0.02796521782875061, -0.030295653268694878, 0.017491810023784637, 0.011150859296321869, -0.03585075959563255, -0.020716480910778046, -0.027491001412272453, -0.0002595488040242344, 0.006110616959631443, 0.022518504410982132, 0.011652174405753613, -0.006208847276866436, -0.004467796068638563, 0.014782002195715904, -0.013887765817344189, -0.023873407393693924, 0.0004039307532366365, -0.005741405766457319, -0.019551264122128487, -0.004582962486892939, -0.007750050630420446, 0.003875025315210223, 0.022775935009121895, 0.007526491768658161, 0.005206218454986811, -0.008068453520536423, -0.02663741260766983, -0.024456016719341278, -0.0033889536280184984, 0.01788473315536976, 0.01279029343277216, -0.005829474423080683, -0.014782002195715904, -0.008657836355268955, 0.0002743680670391768, 0.003739534877240658, 0.021841051056981087, -0.01298675499856472, 0.007912639528512955, 0.0036853388883173466, 0.008915267884731293, 0.003549848450347781, -0.005131698679178953, 0.0017275025602430105, 0.006479828152805567, 0.039156723767519, -0.0002874936908483505, -0.009748534299433231, 0.007689080201089382, 0.0019375126576051116, 0.03032275103032589, -0.01116440910845995, 0.0054975226521492004, 0.0014268832746893167, 0.013440647162497044, -0.01405035424977541, 0.014077452011406422, 0.014754904434084892, -0.019659657031297684, 0.002135667484253645, -0.03300546109676361, -0.033493224531412125, 0.015716886147856712, -0.00619529839605093, -0.017342770472168922, -0.010961173102259636, -0.0034025025088340044, 0.01960545964539051, 0.03208412602543831, -0.018426693975925446, -0.005355258006602526, -0.010696967132389545, -0.014361982233822346, 0.008800101466476917, 0.01335257850587368, -0.009524974972009659, -0.0016106420662254095, 0.02487603761255741, -0.01279029343277216, -0.0036243682261556387, -0.013555814512073994, -0.010771486908197403, -0.007187765557318926, -0.012559959664940834, -0.05091729015111923, 0.002476087072864175, 0.014483923092484474, 0.006910010240972042, 0.004267947282642126, 0.011970576830208302, -0.002919818041846156, -0.040918100625276566, 0.0015081774909049273, 0.0013642188860103488, -0.018101517111063004, 0.021271992474794388, -0.003780181985348463, 0.00021996018767822534, -0.016164004802703857, 0.0035295248962938786, -0.04216461256146431, 0.00810910016298294, -0.019984833896160126, 0.010635996237397194, 0.004159555304795504, 0.002638675505295396, -0.012329625897109509, 0.026230940595269203, -0.027111629024147987, -0.005219767335802317, 0.0006545879878103733, -0.019117694348096848, -0.001451440853998065, 0.0038784125354140997, 0.012038322165608406, -0.03140667453408241, -0.019226087257266045, 0.008664610795676708, 0.002259302418678999, 0.04411567375063896, -0.008535894565284252, 0.025296056643128395, -0.020906168967485428, 0.006002224516123533, -0.004284883849322796, -0.02654256857931614, -0.027030333876609802, 0.007695854641497135, 0.0016055612359195948, -0.008678159676492214, 0.009599494747817516, 0.027911022305488586, 0.0031891053076833487, 0.0147142568603158, 0.014321334660053253, -0.008156522177159786, 0.04839716851711273, -0.004830232821404934, 0.011442163959145546, -0.02226107195019722, -0.005856572184711695, -0.02036420628428459, -0.0006554347928613424, -0.010039838030934334, 0.01598786748945713, 0.0016944768140092492, -0.03999676555395126, -0.020052578300237656, 0.007709403522312641, -0.018535086885094643, 0.009660465642809868, 0.02972659282386303, 0.002250834135338664, -0.030973104760050774, 0.03373710811138153, -0.006015773396939039, -0.03121698834002018, 0.03547138720750809, 0.0019375126576051116, 0.02272173948585987, -0.03725985810160637, 0.025553489103913307, 0.03896703943610191, -0.018453791737556458, -0.0033906472381204367, 0.011069565080106258, -0.01493104174733162, 0.01644853502511978, -0.004342467058449984, -0.046960972249507904, -0.010398888029158115, 0.026190293952822685, -0.011001820676028728, -0.0031857178546488285, -0.014754904434084892, -0.005355258006602526, -0.00114065979141742, -0.014402628876268864, -0.005111375357955694, 0.01765439845621586, 0.0135693633928895, 0.0025252022314816713, 0.009890799410641193, -0.023209504783153534, -0.009403033182024956, 0.003925834316760302, 0.003394034458324313, 0.006130940280854702, 0.012675127014517784, -0.0011626769555732608, -0.01230930257588625, 0.0015073306858539581, 0.005036855582147837, 0.013189990073442459, -0.005168958567082882, 0.00434585427865386, 0.01501233596354723, -0.01201122347265482, -0.028317492455244064, -0.0005097826360724866, 0.021813953295350075, -0.02869686670601368, -0.017627300694584846, -0.016434984281659126, -0.04747583344578743, 0.007722952403128147, -0.0020696157589554787, -0.004864105023443699, 0.0073571284301579, 0.025417998433113098, -0.0020289686508476734, 0.0015039433492347598, 0.00821071770042181, 0.015351061709225178, 0.0049894340336322784, 0.020025480538606644, -0.00907108187675476, 0.0005063953576609492, 0.01940222457051277, -0.007560363970696926, 0.006794843357056379, -0.0022389788646250963, 0.01566269062459469, -0.017708593979477882, -0.013887765817344189, -0.010378564707934856, 0.001778311445377767, 0.017071789130568504, -0.0027606168296188116, 0.0017969413893297315, -0.0007833038689568639, -0.009193023666739464, -0.003375404514372349, -0.0035904955584555864, -0.035877857357263565, 0.010534378699958324, 0.001979853492230177, 0.012478665448725224, -0.016733063384890556, -0.007431648205965757, 0.00242189085111022, 0.0014573686057701707, -0.0174105167388916, 0.0034346815664321184, 0.006296916399151087, 0.018928008154034615, -0.031000202521681786, 0.042814966291189194, 0.014009706676006317, 0.00942335743457079, -0.009450455196201801, -0.0008823812240734696, -0.030404044315218925, -0.012979979626834393, 0.010995045304298401, 0.0014971689088270068, -0.019686754792928696, -0.009999191388487816, -0.0013167973374947906, 0.02402244694530964, 0.03062083013355732, -0.020025480538606644, 0.009314964525401592, -0.004349241964519024, -0.00591415585950017, -0.01531041506677866, 0.014470374211668968, 0.03295126557350159, 0.007878766395151615, -0.017640849575400352, -0.005263802129775286, -0.003549848450347781, 0.01522912085056305, 0.001225341227836907, 0.0028165066614747047, 0.0005445020506158471, 0.0370972715318203, 0.018033772706985474, -0.007404549978673458, -0.024144388735294342, -0.008759453892707825, -0.008969464339315891, 0.013122244738042355, 0.007153892889618874, 0.015188473276793957, -0.01560849417001009, 0.005544944666326046, 0.001969691598787904, -0.00059319386491552, 0.034089382737874985, 0.041947826743125916, -0.01802022196352482, -0.0029384479857981205, 0.011604752391576767, -0.007316481322050095, 0.027707785367965698, 0.01131344772875309, -0.01313579361885786, -0.015879474580287933, -0.012153488583862782, 0.026989687234163284, 0.002198331756517291, -0.005162184126675129, 0.011889282613992691, -0.008393630385398865, -0.015554297715425491, 0.0004712525405921042, 0.0012465117033571005, -0.0027589232195168734, -0.005917543079704046, -0.039888374507427216, -0.017166633158922195, -0.002171233529224992, 0.01094762422144413, -0.027382608503103256, 0.01260738167911768, -0.003065470140427351, -0.0008798407507129014, 0.005870121531188488, 0.018629929050803185, -0.0019290444906800985, 3.0379487725440413e-05, 0.013203538954257965, 0.006916784681379795, 0.009348837658762932, 0.029184632003307343, 0.0058938320726156235, 0.0019510617712512612, -0.007086147554218769, -0.0007384226773865521, -0.0018189585534855723, 0.011015369556844234, -0.01094762422144413, 0.00725551089271903, -0.010940849781036377, 0.015933670103549957, -0.02624448947608471, 0.0009281092206947505, 0.007180991116911173, -0.020296461880207062, 0.02212558127939701, -0.013589686714112759, 0.004593124613165855, -0.0006931180832907557, -0.02896784618496895, 0.009748534299433231, -0.005077502690255642, 0.02020161785185337, 0.011902831494808197, -0.01602851413190365, -0.010805359110236168, 0.0029790950939059258, 0.006056420970708132, 0.014009706676006317, -0.01999838277697563, 0.005595753435045481, 0.003990191966295242, -0.013853892683982849, -0.012885136529803276, 0.0028215874917805195, -0.004975884687155485, -0.02086552046239376, 0.0069845300167799, 0.01348806917667389, -0.0061140041798353195, 0.002935060765594244, -0.010940849781036377, -0.008468150161206722, -0.0018409757176414132, -0.02581091970205307, -0.0019832407124340534, -0.007973609492182732, 0.006828716024756432, -0.018331849947571754, -0.0004488119448069483, 0.015567846596240997, -0.004610060714185238, 0.010026289150118828, -0.008149747736752033, 0.013955511152744293, -0.027030333876609802, 0.004477957729250193, 0.01131344772875309, 0.02040485292673111, 0.007912639528512955, 0.00473538925871253, -0.015865925699472427, 0.0207300316542387, 0.02375146746635437, 0.01738341711461544, 0.01930738240480423, -0.004091809969395399, -0.014185844920575619, -0.01257350854575634, -0.017667947337031364, 0.02169201336801052, -0.016963398084044456, 0.05430455133318901, -0.029184632003307343, 0.007377452217042446, -0.005744792986661196, -0.008264914155006409, 0.007628109306097031, -0.015649141743779182, 0.010500505566596985, -0.015039433725178242, 0.0018443630542606115, 0.02537735179066658, 0.013928412459790707, -0.012072194367647171, 0.013284833170473576, -0.012885136529803276, -0.007235187105834484, -0.01142861507833004, 0.015500101260840893, 0.021773306652903557, -0.014565217308700085, -0.01239059679210186, 0.005826087202876806, -0.001869767438620329, -0.0008057444356381893, -0.007695854641497135, -0.000488612218759954, -0.001785086002200842, 0.006903235800564289, -0.0014319641049951315, 0.013149343430995941, 0.031596358865499496, -0.0006308771553449333, 0.017369868233799934, -0.007682305295020342, -0.0015589863760396838, -0.02285723015666008, 0.0246186051517725, -0.013325480744242668, -0.006401921156793833, 0.015269767493009567, -0.02581091970205307, 0.003858088981360197, -0.0085291201248765, -0.0028097322210669518, -0.009443680755794048, -0.010392113588750362, -0.0005000442615710199, 0.026095449924468994, 0.007126794662326574, -0.004694742150604725, -0.01131344772875309, -0.0029299799352884293, 0.013853892683982849, 0.007512942422181368, -0.004623609595000744, -0.011408291757106781, -0.029509808868169785, -0.01605561189353466, -0.006327401380985975, -0.014253589324653149, -0.017938928678631783, -0.015865925699472427, -0.0025370577350258827, 0.0029282860923558474, -0.008088776841759682, 0.011719919741153717, -0.017532456666231155, -0.013406774960458279, -8.36229810374789e-05, 0.009646915830671787, 0.010398888029158115, -0.009477552957832813, -0.024361172690987587, 0.008664610795676708, -0.026949040591716766, -0.010236299596726894, 0.01761375181376934, 0.005290899891406298, 0.03547138720750809, 0.005226542241871357, 0.03208412602543831, 0.008955915458500385, -0.018494438380002975, 0.011306673288345337, 0.01201122347265482, 0.01861638016998768, 0.004809909034520388, -0.021624267101287842, 0.015865925699472427, -0.005284125450998545, -0.02404954470694065, 0.029780788347125053, -0.007512942422181368, -0.0040647117421031, 0.0029011880978941917, -0.038397978991270065, -0.000542808382306248, -0.005138473119586706, 0.003182330634444952, -2.2890468244440854e-05, 0.004183265846222639, -0.010900202207267284, 0.0050741154700517654, 8.923312998376787e-05, 0.01602851413190365, -0.007601011078804731, 0.0007087841513566673, 0.010121132247149944, -0.005250252783298492, -0.0021305864211171865, -0.0053992923349142075, -0.012837715446949005, -0.012228008359670639, -0.008115874603390694, 0.00842750258743763, 0.017830535769462585, -0.021082306280732155, 0.023778565227985382, 0.004542315378785133, 0.00319757335819304, -0.0037361476570367813, 0.0033652426209300756, 0.012593832798302174, 0.007932962849736214, 0.00686597591266036, 0.0026488371659070253, 0.007980383932590485, 0.004538928158581257, 0.015296866185963154, 0.007472295314073563, 0.01076471246778965, -0.0005732937133871019, -0.0061207786202430725, -0.029997574165463448, -0.001272762892767787, -0.02166491374373436, -0.0026928717270493507, 0.006645803805440664, 0.0008645980851724744, 0.011597977951169014, -0.0014929347671568394, 0.0008159062126651406, -0.00882719922810793, 0.005087664350867271, -0.0004143042315263301, -0.012681901454925537, -0.010202426463365555, -0.011462487280368805, 0.0055415574461221695, 0.010188877582550049, 0.01451102178543806, -0.014917492866516113, -0.00784489419311285, 0.007580687757581472, 0.014294236898422241, -0.004142618738114834, 0.028913650661706924, 0.008576542139053345, -0.013095146976411343, 0.01946997083723545, 0.004728614818304777, 0.0024659251794219017, 0.006225783843547106, 0.023697270080447197, -0.01944287121295929, -0.017559556290507317, 0.030837614089250565, 0.023250151425600052, -0.007391001097857952, -0.0022626896388828754, 0.004183265846222639, -0.011205055750906467, 0.017532456666231155, 0.018887361511588097, 0.01671951450407505, -0.0019612235482782125, 0.014890394173562527, 7.589579035993665e-05, 0.01190960593521595, -0.006307078059762716, 0.012708999216556549, 0.001311716390773654, -0.028913650661706924, -0.006032709963619709, -6.7851047788281e-05, -0.012864813208580017, 0.007072598673403263, -0.017695045098662376, -0.013129019178450108, 0.0016428210074082017, -0.005446713883429766, -0.008088776841759682, -0.017803438007831573, -0.006852427031844854, -0.01635369099676609, 0.0034516179002821445, -0.0061072297394275665, -0.0022711576893925667, 0.0022237361408770084, -0.0012067114003002644, 0.010229525156319141, -0.001381155219860375, 0.03522750362753868, -0.025553489103913307, -0.020675834268331528, -0.002679322613403201, 0.010425985790789127, -0.00036010806798003614, 0.0006325707654468715, 0.008813650347292423, 0.007892315275967121, 0.014483923092484474, -0.005649949423968792, -0.021786855533719063, 0.011631850153207779, 0.023832760751247406, 0.006025935523211956, 0.0026640798896551132, -0.007451971992850304, -0.0003789497131947428, -0.001265141530893743, -0.01928028278052807, -0.022504955530166626, -0.01249221432954073, -0.009450455196201801, 0.008312336169183254, -0.004095197189599276, 0.020377755165100098, 0.004908139817416668, 0.0012846182798966765, -0.002454069908708334, 0.002935060765594244, 0.0009907735511660576, 0.0059581901878118515, 0.009782406501471996, 0.0052299294620752335, 0.020079676061868668, 0.009999191388487816, -0.007343579549342394, 0.008556218817830086, 0.006821941584348679, 0.013501618057489395, -0.0005389977595768869, -0.0013091759756207466, 0.005097826011478901, 0.00407148664817214, -0.024564409628510475, 0.01818281039595604, 0.0009619818301871419, -0.012553185224533081, -0.002249140525236726, -0.01831830106675625, -0.00898978766053915, -0.002159378258511424, -0.00042721815407276154, -0.0320570282638073, 0.011110212653875351, -0.0009365773876197636, 0.011665723286569118, -0.012722548097372055, 0.017004044726490974, -0.010757937096059322, -0.012885136529803276, -0.014172295108437538, 0.02308756299316883, 0.017925379797816277, -0.005372194107621908, -0.004057937301695347, -0.005572042427957058, 0.009911122731864452, 0.031894437968730927, -0.005534782540053129, 8.648097718833014e-05, 7.070905121508986e-05, 0.011814762838184834, 0.0023338221944868565, 0.03891284018754959, 0.005165571346879005, -0.005758341867476702, 0.02180040441453457, -0.007221638225018978, -0.014660061337053776, -0.024808291345834732, 0.000970449938904494, -0.021583620458841324, -0.0057244691997766495, 0.005338321439921856, -0.008718807250261307, 0.006378210615366697, 0.012322851456701756, 0.0095046516507864, -0.0010263397125527263, -0.0017148003680631518, 0.0019917087629437447, 0.012322851456701756, 0.01745116338133812, 0.013521941378712654, 0.03980707749724388, -0.00947077851742506, -0.015351061709225178, -0.01003306359052658, 0.0020560668781399727, -0.012641253881156445, 0.00920657254755497, -0.010920525528490543, 0.002872396493330598, -0.008285237476229668, -0.013339029625058174, -0.001957836328074336, -0.034251973032951355, 0.01386744249612093, 0.004786198493093252, 0.009111729450523853, -0.012526087462902069, 0.0017207280034199357, 0.005389130674302578, 0.027721336111426353, 0.01383356936275959, -0.018819615244865417, 0.01330515742301941, -0.01612335816025734, 0.028452983126044273, 0.035417187958955765, 0.013840343803167343, -0.0035193630028516054, 0.007059049792587757, -0.0053992923349142075, -0.006659353151917458, -0.015838827937841415, -0.010358240455389023, 0.009619818069040775, -0.015974318608641624, -0.014036805368959904, -0.0025963347870856524, 0.03674499690532684, -0.015323963947594166, 0.018453791737556458, 0.010453084483742714, 0.028615571558475494, -0.00012130624236306176, -0.0057888273149728775, 0.005602527875453234, 3.675706102512777e-05, 0.015811730176210403, -0.013711628504097462, 0.00725551089271903, 0.0012609075056388974, 0.03362871706485748, 0.0026810162235051394, -0.0029553843196481466, 0.010595348663628101, 0.013772598467767239, 0.008671385236084461, -0.025106370449066162, -0.0023863245733082294, 0.011448938399553299, 0.002896107267588377, 0.013941962271928787, 0.007492619100958109, -0.002054373035207391, 0.013643883168697357, 0.0031569262500852346, -0.006469666492193937, 0.02988918125629425, 0.001443819492124021, 0.012708999216556549, 0.009057532995939255, 0.006137715186923742, 0.010256622917950153, -0.0013870829716324806, -0.011177957989275455, -0.014145197346806526, -0.001125417067669332, 0.002181395422667265, 0.00610384251922369, -0.008549444377422333, 0.01003306359052658, -0.006832103244960308, -0.018521538004279137, -0.007526491768658161, -0.010053387843072414, 0.003844540100544691, 0.0005017378716729581, -0.027409708127379417, 0.02391405589878559, 0.020879069343209267, 0.011096663773059845, 0.017396967858076096, 0.022816583514213562, -0.013244186528027058, -0.006886299233883619, 0.029401415959000587, 0.021908797323703766, -0.014998787082731724, 0.008352982811629772, -0.00059404072817415, 0.021407483145594597, -0.02205783687531948, -0.01287158764898777, 0.012099292129278183, -0.010581799782812595, 0.013799697160720825, -0.011868958361446857, 0.005297674331814051, 0.014687159098684788, -0.012614156119525433, 0.0006893074023537338, -0.002958771539852023, 0.007214863784611225, 0.007851668633520603, -0.015039433725178242, -0.01335257850587368, -0.002489635953679681, 0.0113947419449687, -0.017640849575400352, -0.013298382051289082, 0.013095146976411343, 0.007289383560419083, 0.021475227549672127, -0.008583316579461098, -0.009518200531601906, -0.016475632786750793, -0.021217796951532364, 0.001996789826080203, -0.004156168084591627, -0.00786521751433611, -0.025919312611222267, 0.0015361224068328738, 0.008088776841759682, 0.0030502276495099068, -0.00534170912578702, -0.01180798839777708, -0.019198989495635033, -0.008034580387175083, -0.004257785622030497, 0.013040950521826744, 0.005602527875453234, -0.004918301478028297, 0.02587866596877575, -0.008637513034045696, 0.01990353874862194, -0.025892214849591255, -0.023534681648015976, 0.004278109408915043, -0.0018274267204105854, 0.0015157988527789712, 0.0030451465863734484, 0.011123761534690857, -0.017207279801368713, -0.023805662989616394, 0.005507684778422117, 0.011516683734953403, 0.00591415585950017, -0.005175733007490635, 0.028209101408720016, -0.009721435606479645, 0.005419615656137466, -0.004914914257824421, -0.0035430737771093845, -0.006564509589225054, 0.006422244943678379, 0.0019307381007820368, 0.028778159990906715, -0.005348483566194773, 0.013203538954257965, -0.0003082406474277377, 0.005839636083692312, -0.02613609842956066, -0.007099696900695562, 0.01665177009999752, -0.01699049584567547, 0.02338564209640026, -0.004596511833369732, 0.0005216380232013762, 0.0030451465863734484, -0.009958543814718723, -0.011516683734953403, 0.014998787082731724, 0.021881699562072754, -0.013610010035336018, -0.006713549140840769, 0.004457633942365646, -0.010737613774836063, -0.01335257850587368, 0.0002709807886276394, 0.006066582631319761, -0.029618199914693832, 0.007241961546242237, -0.018291203305125237, -0.016001416370272636, 0.010155005380511284, -0.006618706043809652, 0.0025963347870856524, 0.011150859296321869, 0.013379676267504692, -0.006479828152805567, 0.018101517111063004, -0.0057956017553806305, 0.0026742417830973864, 0.02093326672911644, -0.015080081298947334, 0.020323559641838074, -0.007960060611367226, 0.014944590628147125, 0.005975126288831234, -0.022112032398581505, 0.007126794662326574, -0.026813549920916557, 0.05300384387373924, 0.003634529886767268, -0.006019161082804203, -0.0003838189004454762, -0.023588877171278, 0.009003336541354656, -0.001218566787429154, -0.0010771485976874828, 0.03598624840378761, 0.0036074318923056126, 0.022830132395029068, 0.011577654629945755, 0.0008764535305090249, -0.010094034485518932, -0.03259899094700813, 0.01662467233836651, 0.018887361511588097, 0.02913043461740017, -0.01346774585545063, -0.019456420093774796, -0.00012786906154360622, -0.0113947419449687, -0.006378210615366697, 0.003168781753629446, 0.00966724008321762, -0.022450758144259453, -1.6473197320010513e-05, -0.005768503528088331, 0.0031772498041391373, -0.0345771498978138, -0.010893427766859531, -0.02212558127939701, -0.0009060920565389097, 0.005165571346879005, -0.017695045098662376, -0.016895651817321777, 0.002343983855098486, 0.0033127402421087027, 0.002132280031219125, -0.019781598821282387, -0.03105439804494381, 0.0021153439301997423, -0.011421840637922287, 0.010812133550643921, -0.006791456136852503, -0.0028520729392766953, 6.0917751397937536e-05, -0.019497068598866463, 0.01559494435787201, 0.009403033182024956, -0.008075227960944176, -0.02079777605831623, 0.0338996984064579, -0.011706369929015636, 0.020093224942684174, 0.0024422144051641226, 0.013325480744242668, -0.026623863726854324, -0.0008396170451305807, 0.00280803837813437, -0.012228008359670639, 0.002677629003301263, 0.012593832798302174, -0.002343983855098486, 0.016543377190828323, -0.004996208474040031, -0.0031552326399832964, -0.025621233507990837, -0.010798584669828415, 0.014822649769484997, -0.006635642144829035, 0.01113053597509861, 0.012322851456701756, -0.012532861903309822, -9.367890925204847e-06, 0.015107179060578346, 0.0019510617712512612, 0.012485439889132977, -0.0013303463347256184, 0.0015157988527789712, 0.002142441924661398, 0.011923154816031456, -0.013982608914375305, -0.03005176968872547, -0.005257027223706245, -0.01658402383327484, 0.023534681648015976, -0.01365065760910511, -0.014782002195715904, -0.0007888081599958241, -0.006002224516123533, 0.01669241674244404, -0.01479555107653141, -0.009396258741617203, 7.197927334345877e-05, -0.0003565091174095869, 0.010541153140366077, 0.01547300349920988, 0.016462083905935287, 0.0009645222453400493, 0.0052299294620752335, 0.02913043461740017, 0.024889586493372917, -0.0069574317894876, 0.002406648127362132, 0.001010250300168991, 0.01413164846599102, 0.015120727941393852, -0.011570880189538002, 0.0033669364638626575, -0.03278867527842522, 0.039265118539333344, -0.007391001097857952, -0.01917189173400402, -0.009701112285256386, -0.0063341762870550156, -0.0032162033021450043, -0.0015649141278117895, 0.0006063195178285241, -0.009694337844848633, -0.02455086074769497, 0.042842064052820206, 0.006970981135964394, 0.010283720679581165, -0.02329079993069172, 0.005948028527200222, -0.03585075959563255, 0.014700707979500294, -0.000780339993070811, 0.018900910392403603, 0.00367856421507895, 0.01589302346110344, 0.016340142115950584, 0.014538119547069073, -0.01976804807782173, 0.005047017242759466, 0.01547300349920988, 0.014917492866516113, 0.007411324884742498, -0.004698129370808601, -8.764534868532792e-05, -0.016543377190828323, 0.020377755165100098, -0.004830232821404934, -0.002708114217966795, -0.01944287121295929, -0.011794438585639, 0.01715308427810669, -0.013596461154520512, 0.012512538582086563, -0.020784227177500725, -0.004315369296818972, 0.01669241674244404, 0.008739130571484566, 0.007675530854612589, 0.007668756414204836, 0.008176845498383045, 0.01937512680888176, -0.022979171946644783, -0.0028046511579304934, 0.008149747736752033, 0.030837614089250565, -0.025255410000681877, -0.010046612471342087, 0.021014560014009476, -0.0016783872852101922, -0.04338402673602104, 0.004349241964519024, 0.002711501671001315, -0.006910010240972042, -0.00978918094187975, -0.009538523852825165, -0.0099043482914567, 0.005853184964507818, -0.0006575518054887652, 0.0037225985433906317, -0.011177957989275455, -0.0059378668665885925, -0.019388675689697266, 0.005138473119586706, 0.022938523441553116, -0.001149127958342433, 0.0113947419449687, -0.024063093587756157, 0.009396258741617203, -0.005673660431057215, 0.009362386539578438, 0.013901314698159695, 0.0011525151785463095, -0.0006893074023537338, -0.009260769002139568, -0.011855409480631351, 0.013806471601128578, 0.014619413763284683, -0.0012693756725639105, 0.014524570666253567, -0.017207279801368713, 0.0033669364638626575, -0.023846309632062912, -0.008447825908660889, 0.005118149798363447, -0.0066796764731407166, 0.0034279071260243654, 0.004332305397838354, 0.011137310415506363, -0.006412082817405462, 0.02567543089389801, -0.0019002527697011828, -0.008156522177159786, 0.00019995418551843613, -0.009037209674715996, -0.01827765442430973, -0.00909140519797802, -0.012532861903309822, 0.0020374369341880083, 0.005172345787286758, 0.02656966634094715, 0.006479828152805567, 0.01758665405213833, 0.014578767120838165, -0.0022694640792906284, 0.012776744551956654, 0.0056194644421339035, 0.00667628925293684, 0.009179474785923958, 0.006886299233883619, -0.005443326663225889, 0.00465409504249692, 0.012112841941416264, -0.02272173948585987, -0.0008120955899357796, 0.0021627654787153006, 0.0009806117741391063, 0.008556218817830086, 0.020689383149147034, -0.010317593812942505, 0.015283316373825073, 0.002132280031219125, 0.01509363017976284, 0.028371689841151237, -0.003641304327175021, -0.00018344129784964025, -0.0004979271907359362, -0.0017833923920989037, -0.0025099595077335835, 0.005924317520111799, -0.00397325586527586, -0.006561122369021177, -0.03566107153892517, -0.001839282107539475, -0.00998564250767231, 0.011753791943192482, -0.012485439889132977, -0.015134277753531933, -0.014158746227622032, 0.0011736855376511812, -0.012620930559933186, 0.01434843335300684, 0.02780262939631939, -0.01582527905702591, 0.002889332827180624, -0.011821537278592587, -0.013996157795190811, 0.010304044932126999, 0.014565217308700085, 0.007668756414204836, 0.002228816971182823, 0.02106875739991665, -0.015906572341918945, -0.022437209263443947, -0.01582527905702591, -0.006730485241860151, -0.0012524393387138844, -0.014307785779237747, 0.024456016719341278, -0.007512942422181368, 0.006401921156793833, 0.007072598673403263, -0.0035125885624438524, 0.007912639528512955, -0.0054636504501104355, 0.009802729822695255, 0.007431648205965757, -0.011408291757106781, -0.002645449945703149, 0.000359261262929067, -0.0006804158329032362, -0.00842750258743763, 0.011760566383600235, -0.013643883168697357, -0.008000708185136318, 0.007120020221918821, 0.01132699754089117, -0.0054975226521492004, -0.01777634024620056, 0.007790697738528252, 0.0012151794508099556, 5.811267692479305e-05, 0.0010085566900670528, -0.012214459478855133, -0.004359403625130653, -0.028154904022812843, -0.008651061914861202, -0.008847522549331188, 0.010378564707934856, -0.0038208290934562683, 0.01880606636404991, -0.020824873819947243, 0.0063477251678705215, -0.01522912085056305, 0.003858088981360197, 0.008928816765546799, 0.006845652125775814, 0.007336805108934641, 0.017532456666231155, 0.0162588469684124, 0.02411729097366333, 0.013034176081418991, -0.027992315590381622, -0.0039461576379835606, -0.011862183921039104, -0.001033114269375801, -0.004467796068638563, 0.0034109707921743393, 0.006456117611378431, -0.0032653184607625008, 0.01685500517487526, -0.0011677579022943974, -6.404038140317425e-05, -0.004691354930400848, 0.0021627654787153006, 0.0007172522600740194, -0.0025963347870856524, -0.012932558543980122, 0.01612335816025734, -0.01433488354086876, -0.011415066197514534, -0.00319757335819304, 0.00039440407999791205, 0.00861041434109211, 0.0025523004587739706, -0.00010077097977045923, 0.009917897172272205, -0.006520475260913372, -0.008556218817830086, -0.00453554093837738, 0.03238220512866974, -0.0033974216785281897, 0.01121183019131422, 7.237621957756346e-06, -0.0006850733188912272, -0.011523458175361156, -0.0007951592560857534, 0.00017867796123027802, -0.003299191128462553, -0.023344995453953743, -0.019686754792928696, 0.010940849781036377, 0.019456420093774796, 0.025160565972328186, 0.005128311458975077, 0.042516887187957764, -0.01758665405213833, 0.027883924543857574, 0.003499039448797703, -0.001615723012946546, -0.021407483145594597, -0.002567542949691415, -0.0037700203247368336, -0.011625075712800026, -0.02736905962228775, -0.015649141743779182, -0.005853184964507818, -0.0013625252759084105, 0.013420323841273785, 0.0019121082732453942, -0.02902204357087612, 0.005890444852411747, -0.004484732169657946, 0.007011628244072199, -0.003121359972283244, 0.01765439845621586, 0.011780889704823494, -0.0010305738542228937, 0.041920728981494904, -0.0010000885231420398, -0.008949141018092632, -0.012939332984387875, 0.02391405589878559, -0.022816583514213562, 0.012370273470878601, -0.007953286170959473, -0.014294236898422241, 0.01722082868218422, -0.008217492140829563, 0.025485742837190628, -0.004755713045597076, 0.020743580535054207, -0.00968756340444088, 0.004118908196687698, 0.002963852370157838, 0.012695450335741043, -0.008170071057975292, 0.030729221180081367, 0.013637108728289604, -0.02883235737681389, -0.005643174983561039, 0.012045096606016159, -0.017275026068091393, -0.021935895085334778, 0.015147826634347439, -0.0031891053076833487, 0.004000354092568159, 0.007187765557318926, -0.006012386176735163, 0.0012168731773272157, -0.010615672916173935, -0.006808392237871885, 0.008535894565284252, -0.009524974972009659, -0.014782002195715904, -0.021353285759687424, 0.00806167908012867, -0.01209251768887043, -0.013562588952481747, -0.00802780594676733, -0.01933448016643524, -0.007201314438134432, 0.006300303619354963, -0.011774115264415741, 0.0025506066158413887, -0.013176441192626953, 0.007824570871889591, 0.002677629003301263, -0.013440647162497044, 0.014294236898422241, 0.006998078897595406, -0.001763068838045001, 0.009877249598503113, -0.027477452531456947, -0.023006269708275795, 0.002311804797500372, 0.010304044932126999, -0.007187765557318926, -0.005883670412003994, 0.0009992417180910707, 0.00717421667650342, 0.002142441924661398, 0.010215976275503635, -0.004203589633107185, 0.0009077856666408479, 0.003688726108521223, 0.0030891811475157738, -0.005890444852411747, -0.030973104760050774, -0.0029079625383019447, 0.012505763210356236, 0.003321208292618394, -0.014646511524915695, 0.022003641352057457, 0.017667947337031364, -0.0001238466938957572, 0.0006876137922517955, -0.008251365274190903, -0.01930738240480423, 0.007235187105834484, 0.0019307381007820368, 0.0065170880407094955, 0.009741759859025478, -0.014863296411931515, 0.04584994912147522, -0.012424468994140625, 0.013047724962234497, -0.008739130571484566, 0.003107811091467738, -0.010107583366334438, 0.011306673288345337, 0.006208847276866436, -0.010493731126189232, -0.021109404042363167, 0.024212133139371872, -0.01861638016998768, 0.0025624621193856, -0.0014624494360759854, 0.012919009663164616, 0.01426713913679123, 0.004149393178522587, -0.014605864882469177, 0.012438018806278706, -0.0028842517640441656, -0.0055551063269376755, 0.009538523852825165, -0.002057760488241911, 0.0025827856734395027, -0.004047775641083717, 0.009416582994163036, 0.008021031506359577, -0.004549090284854174, -0.0062698181718587875, 0.007980383932590485, 0.01867057755589485, 0.03406228497624397, -0.008651061914861202, 0.003604044672101736, -0.0009171006386168301, -0.013501618057489395, -0.0030383721459656954, 0.0164891816675663, 0.005924317520111799, 0.0028368302155286074, 0.013237412087619305, -0.010588574223220348, -0.004047775641083717, -0.007451971992850304, -0.021082306280732155, -0.016638221219182014, 0.006882912013679743, -0.000193179672351107, 0.008874621242284775, -0.017098888754844666, -0.0036379171069711447, -0.013941962271928787, 0.0053146108984947205, -0.03398099169135094, 0.011984125711023808, -0.021515874192118645, -0.012648028321564198, -0.011923154816031456, -0.027883924543857574, 0.016380788758397102, 0.002313498640432954, -0.004477957729250193, 0.023968251422047615, -0.012058645486831665, -0.02945561148226261, 0.0016944768140092492, -0.010046612471342087, 0.00648660259321332, -0.02322305366396904, -0.009213346987962723, -0.0025353641249239445, -0.005118149798363447, -0.01589302346110344, -0.009152376092970371, 0.008949141018092632, 0.0063612740486860275, 4.9168193072546273e-05, -0.01421294268220663, 0.014104550704360008, 0.021773306652903557, -0.01758665405213833, 0.0058599598705768585, 0.0008798407507129014, 0.009301415644586086, -0.013982608914375305, 0.006811779923737049, -0.005077502690255642, -0.00018344129784964025, -0.0030959555879235268, 0.000830725475680083, 0.028290394693613052, 0.01818281039595604, -0.009267543442547321, 0.014592316001653671, 0.00746552087366581, -0.020906168967485428, 0.011841860599815845, -0.0008633278775960207, -0.014944590628147125, -0.005924317520111799, -0.004806521814316511, 0.022965623065829277, 0.020892620086669922, 0.009741759859025478, -0.01990353874862194, 0.005494135431945324, 0.01313579361885786, -0.016367239877581596, -0.00015623736544512212, 0.017871184274554253, 0.024306977167725563, 0.0017427452839910984, -0.011618301272392273, -0.003471941454336047, 0.006815167143940926, -0.006053033284842968, -0.026949040591716766, -0.00746552087366581, -0.008657836355268955, -0.028182001784443855, 0.0018121841130778193, -0.012180586345493793, -0.0014963221037760377, -0.020255815237760544, 0.006744034588336945, 0.009734985418617725, 0.007059049792587757, 0.012085743248462677, -0.014863296411931515, -0.029238827526569366, 0.0057956017553806305, 0.022640446200966835, -0.0017215748084709048, -0.014321334660053253, 0.0030603893101215363, 0.003983417525887489, 0.004230687860399485, -0.01724792830646038, 0.016895651817321777, -0.012695450335741043, 0.010276946239173412, -0.004779423587024212, -0.009281092323362827, 0.004152780864387751, 0.0031704753637313843, -0.017071789130568504, 0.01171314436942339, -0.00267085456289351, -0.004061324521899223, -0.01944287121295929, -0.0055618807673454285, 0.004549090284854174, 0.009321738965809345, 0.007892315275967121, 0.008447825908660889, -0.008962689898908138, -0.00810910016298294, -0.003329676575958729, 0.04078260809183121, 0.03934641182422638, -0.0015547523507848382, 0.006401921156793833, -0.009037209674715996, -0.033520326018333435, 0.018386047333478928, -0.001715647173114121, -0.024157937616109848, 0.013955511152744293, -0.005826087202876806, 0.003905510762706399, 0.011503134854137897, 0.02003902941942215, -0.0022965623065829277, 0.015418807044625282, 0.003431294346228242, -0.006219009403139353, -0.016109807416796684, 0.002137361094355583, -0.008217492140829563, 0.009856926277279854, -0.018589282408356667, 0.003912285435944796, 0.005375581327825785, -0.014456825330853462, -0.004969110246747732, -0.01463296264410019, -0.0054839737713336945, 0.012512538582086563, 0.021475227549672127, -0.017789889127016068, -0.025296056643128395, -0.0172885749489069, -0.018169261515140533, 0.01615045592188835, 0.009301415644586086, 0.0069845300167799, -0.0013057887554168701, -0.011889282613992691, -0.007147118449211121, -0.010486956685781479, 0.010967947542667389, -0.015445904806256294, -0.022071385756134987, -0.002315192250534892, 0.018684126436710358, 0.006337563507258892, -0.01531041506677866, 0.008881395682692528, -0.01662467233836651, 0.010696967132389545, -0.002211880637332797, -0.0024269716814160347, -0.017938928678631783, 0.010940849781036377, -0.0005694830906577408, -0.0171801820397377, -0.0027673912700265646, 0.000605472712777555, -0.015513650141656399, -0.014768453314900398, -0.004068098962306976, 0.04137876629829407, 0.000834536156617105, 0.004748938605189323, -0.0026979525573551655, 0.021868150681257248, -0.004481344949454069, -0.0016089484561234713, -0.0016064080409705639, -0.01658402383327484, 0.006483215373009443, 0.006242719944566488, -0.00571430753916502, -0.009972093626856804, -0.03165055811405182, -0.028886552900075912, -0.0011940090917050838, 0.016543377190828323, 0.024076644331216812, 0.009199798107147217, 0.006456117611378431, 0.0011880814563483, -0.018629929050803185, 0.007777148857712746, -0.01171314436942339, 0.0015725353732705116, -0.006618706043809652, -0.006252881605178118, -0.027883924543857574, -0.006496764719486237, -0.009565621614456177, -0.005246865563094616, 0.0066864509135484695, 0.019727401435375214, -0.012078968808054924, 0.01479555107653141, 0.003238220466300845, 0.00023160390264820307, 0.002694565337151289, 0.014307785779237747, 0.010276946239173412, -0.013298382051289082, 0.0022576088085770607, -0.031108595430850983, -0.00608690595254302, 0.0016639914829283953, 0.009680788964033127, 0.00968756340444088, -0.03200283274054527, 0.02388695627450943, -0.0032517695799469948, -0.005087664350867271, -0.002415116410702467, 0.005500910338014364, 0.002740293275564909, 0.020743580535054207, 0.013345804065465927, -0.016434984281659126, 0.01421294268220663, 0.004017290193587542, 0.020147422328591347, 0.018033772706985474, 0.0017596815014258027, -0.011686046607792377, 0.01774924248456955, 0.029943378642201424, -0.0012710692826658487, -0.015323963947594166, -0.0016961704241111875, 0.008258139714598656, -0.0007308013155125082, 0.009545298293232918, -0.002569236559793353, 0.006435793824493885, -0.002462537959218025, -0.008474924601614475, 0.020811324939131737, 0.00521638011559844, -0.003190798917785287, 0.01990353874862194, 0.0325176939368248, 0.0030078866984695196, 0.0015835440717637539, 0.008495247922837734, -0.01308837253600359, 0.003329676575958729, 0.01076471246778965, -0.004284883849322796, -0.002345677465200424, 0.0036142063327133656, 0.000760439841542393, 0.01509363017976284, -0.0024100353475660086, 0.012363499030470848, -0.027450354769825935, 0.020255815237760544, -0.011415066197514534, -0.00890849344432354, 0.004566026385873556, 0.019090596586465836, 0.00824459083378315, 0.004640546161681414, 0.010453084483742714, -0.01180798839777708, -0.018900910392403603, -0.0056533366441726685, -0.041812337934970856, 0.004857330583035946, -0.014470374211668968, 0.00648660259321332, -0.005551719106733799, 0.014917492866516113, -0.0017901668325066566, 0.02471344918012619, 0.007262285333126783, -0.0029079625383019447, -0.03422487527132034, -0.007120020221918821, -0.006090293172746897, 0.007831345312297344, 0.00397325586527586, 0.011293124407529831, -0.024605056270956993, 0.012228008359670639, 0.006097068078815937, 0.014592316001653671, 0.02839878760278225, -0.005511071998625994, -0.0017800050554797053, 0.020513245835900307, 0.0014895475469529629, -0.013928412459790707, -0.00029490332235582173, 0.0020746965892612934, -0.008339433930814266, -0.023439839482307434, -0.023995349183678627, 0.00840717926621437, -0.011868958361446857, 0.007140344008803368, -0.035715267062187195, 0.009592720307409763], "cad669ae-bc96-48f6-86be-a7411388ef8e": [-0.03755362704396248, 0.01236539613455534, -0.0028717052191495895, 0.03232574462890625, 0.002359808422625065, -0.02979893423616886, 0.03296470642089844, 0.036275699734687805, -0.0458311103284359, 0.011298036202788353, 8.236638677772135e-05, 0.0266767255961895, -0.006672812160104513, -0.04005139321088791, -0.00831378623843193, 0.021289102733135223, -0.00908344704657793, -0.002047587651759386, 0.013519886881113052, -0.032441917806863785, 0.061108145862817764, 0.011893434450030327, -0.020809879526495934, -0.014013631269335747, -0.02647341974079609, 0.005540104117244482, -0.02894214168190956, 0.02596515230834484, -0.04170688986778259, -0.031018773093819618, 0.022567028179764748, 0.018892988562583923, 0.03371984511613846, 0.007431581150740385, -0.0028934881556779146, -0.032006263732910156, 0.035898130387067795, 0.013236709870398045, -0.015131817199289799, -0.0035397126339375973, -0.07801163196563721, 0.03232574462890625, -0.013759498484432697, -0.02271224744617939, -0.02811439335346222, -0.007885390892624855, 0.03383602201938629, 0.032790444791316986, -0.008967272005975246, -0.038221634924411774, 0.008059653453528881, 0.01091320626437664, -0.039731912314891815, 0.015567474067211151, -0.011450516059994698, -0.07743076235055923, 0.004959227982908487, 0.06401252746582031, -0.0024632769636809826, -0.06296695023775101, 0.0017371820285916328, -9.0478228230495e-05, 0.006621985230594873, -0.01274296548217535, -0.019822390750050545, -0.0646514892578125, 0.0011054794304072857, 0.016598528251051903, -0.08829313516616821, 0.015247992239892483, -0.00401167431846261, 0.003018739400431514, -0.02205876260995865, 0.02268320508301258, -0.0009248633868992329, 0.018834901973605156, 0.0359271764755249, -0.008676833473145962, -0.0032274918630719185, 0.0348815992474556, -0.009431972168385983, -0.0014984783483669162, 0.03276140242815018, 0.011174600571393967, 0.056693486869335175, -0.002927977591753006, -0.01635165698826313, -0.03322610259056091, -0.02692359872162342, -0.022697726264595985, 0.014086240902543068, 0.04429178684949875, -0.00029021105729043484, 0.0027083340100944042, 0.0060628922656178474, 0.004567136988043785, 0.009061664342880249, 0.019343167543411255, 0.015044686384499073, -0.01529155857861042, -0.025122882798314095, 0.028956664726138115, -0.018123328685760498, 0.017702193930745125, -0.009940238669514656, -0.00022554321913048625, -0.0008567919721826911, -0.01768767088651657, -0.006654659751802683, 0.06645220518112183, 0.001512092654593289, -0.016700182110071182, 0.02175380289554596, -0.002230926649644971, -0.0115449083968997, -0.029639193788170815, 0.004636115860193968, 0.011697388254106045, -0.015741737559437752, -0.013062447309494019, 0.006897901184856892, 0.009294014424085617, 0.007315406110137701, 0.03000224009156227, 0.018224982544779778, -0.029682759195566177, 0.010092718526721, 0.015959566459059715, 0.004185936879366636, -0.027896566316485405, 0.002388852182775736, -0.011348863132297993, -0.00691968435421586, 0.008466266095638275, 0.011210905387997627, 8.94004333531484e-05, -0.0015220764325931668, 0.040109481662511826, -0.0016709258779883385, 0.03220956772565842, -0.03851207345724106, -0.015930522233247757, 0.007173817604780197, 0.008546137250959873, 0.020838923752307892, -0.00985310785472393, -0.046063460409641266, 0.003650441998615861, 0.031134948134422302, 0.04388517513871193, -0.027664214372634888, -0.042200636118650436, 0.018108805641531944, 0.006088305730372667, -0.012648573145270348, -0.02369973622262478, 0.012663095258176327, 0.009330319240689278, -0.016787312924861908, 0.01960456185042858, 0.0013305689208209515, -0.0424039401113987, -0.003750280011445284, 0.010252459906041622, 0.012677616439759731, 0.026400810107588768, 0.0049737500958144665, 0.012423483654856682, -0.02473079226911068, 0.014369417913258076, 0.027315689250826836, -0.00917057879269123, -0.011312558315694332, -0.003287394531071186, -0.03618856891989708, 0.031309209764003754, 0.0417359322309494, 0.020345179364085197, 0.015088251791894436, -0.018907511606812477, -0.007464255206286907, 0.00879300944507122, -0.026415331289172173, -0.016061218455433846, -0.010956771671772003, -0.0007923510274849832, 0.03220956772565842, 0.01113103423267603, 0.009903933852910995, 0.017193926498293877, -0.021361712366342545, 0.026807423681020737, -0.02808535099029541, 0.034126460552215576, -0.042839597910642624, -0.00507177272811532, -0.008016087114810944, -0.013040664605796337, -0.009352101944386959, 0.0007102115778252482, -0.028651705011725426, -0.025544017553329468, -0.03929625451564789, 0.004777704365551472, -0.032616183161735535, 0.023133382201194763, 0.010942249558866024, -0.0012924488401040435, 0.00545660313218832, -0.03941243141889572, 0.057419583201408386, -0.056867752224206924, 0.009555408731102943, -0.005884998943656683, -0.01802167482674122, 0.013759498484432697, 0.006654659751802683, 0.0144492881372571, 0.005017315503209829, -0.0023253189865499735, -0.026023240759968758, 0.012423483654856682, -0.024687226861715317, -0.018152372911572456, -0.034765422344207764, -0.0557640865445137, -0.016990620642900467, 0.0028263244312256575, -0.03778597712516785, -7.760139124002308e-05, 0.03737936541438103, 0.025340711697936058, -0.025544017553329468, -0.03273235633969307, -0.01867515966296196, 0.04484362155199051, 0.006589311175048351, 0.0016545887337997556, 0.031076861545443535, -0.0028299547266215086, -0.000873129116371274, 0.006012065801769495, 0.014245981350541115, -0.016947055235505104, 0.01854446344077587, -0.008459005504846573, -0.030147459357976913, 0.0041169580072164536, 0.00511533860117197, -0.0335165411233902, 0.023380255326628685, 0.0037248667795211077, -0.005540104117244482, -0.01645331084728241, -0.03845398500561714, 0.030525028705596924, 0.0321514829993248, 0.003142175730317831, -0.003913651220500469, -0.021492408588528633, 0.04864835739135742, 0.019517431035637856, 0.031454429030418396, 0.033981241285800934, 0.01648235321044922, -0.02914544939994812, 0.0015837944811210036, -0.043188124895095825, 0.011690127663314342, 0.028099872171878815, -0.01635165698826313, 0.02339477650821209, 0.010274242609739304, -0.005732519086450338, 0.006712747272104025, 0.009954760782420635, -0.021986152976751328, -0.03613048046827316, 0.011733693070709705, -0.03322610259056091, 0.0017453505424782634, 0.011791780591011047, 0.00025186417042277753, 0.04333334416151047, -0.0018034381791949272, -0.01084059663116932, 0.0025122882798314095, -0.032819487154483795, -0.04469840228557587, -0.015306079760193825, 0.01448559295386076, 0.005518320947885513, 0.012300047092139721, 0.034939687699079514, 0.0009557224111631513, 0.010884162038564682, -0.012394439429044724, -0.02730116806924343, -0.02306077443063259, -0.014667117036879063, 0.0019150752341374755, -0.0003389955381862819, 0.008626007474958897, -0.047050949186086655, 0.02449844218790531, -0.04199732840061188, 0.04768991097807884, 0.012140306644141674, -0.0071919700130820274, -0.0005155273829586804, 0.04016757011413574, -0.024091828614473343, -0.01087690144777298, -0.00797252170741558, 0.04658624902367592, -0.01236539613455534, -0.01850089803338051, -0.02233467809855938, 0.015015642158687115, -0.042200636118650436, 0.02828865684568882, -0.008589702658355236, -0.04313003644347191, 0.0615728460252285, 0.031047817319631577, -0.01819593831896782, 0.01275748759508133, -0.01809428445994854, 0.025631150230765343, -0.02490505389869213, -0.01303340308368206, 0.009431972168385983, -0.022755812853574753, 0.0011953336652368307, -0.02442583255469799, 0.006258937995880842, -0.02049039676785469, -0.06006256863474846, -0.004196828231215477, -0.02271224744617939, -0.018892988562583923, 0.006694594863802195, 0.01298257615417242, -0.002802726346999407, 0.039760954678058624, 0.020170915871858597, 0.01053563691675663, 0.006600202526897192, -0.01748436503112316, 0.02301720716059208, 0.000879482424352318, -0.0015747182769700885, 0.05056524649262428, 0.0024251569993793964, 0.020345179364085197, -0.022189458832144737, 0.017498886212706566, 0.015785302966833115, 0.00471961684525013, -0.016467832028865814, 0.0241208728402853, 0.008016087114810944, -0.01751340925693512, 0.008190350607037544, 0.009824063628911972, 0.03218052536249161, -0.011145556345582008, -0.005645387805998325, 0.015959566459059715, -0.01260500680655241, -0.024788878858089447, 0.039731912314891815, 0.03775693476200104, 0.012677616439759731, -0.05102995038032532, -0.012888183817267418, 0.027184993028640747, 0.016235481947660446, -0.020809879526495934, 0.03078642301261425, 0.0028589987196028233, 0.006229894235730171, 0.012968054972589016, 0.007086685858666897, 0.028709791600704193, -0.011457777582108974, 0.02271224744617939, -0.008546137250959873, 0.025195492431521416, 0.029305189847946167, 0.014289547689259052, -0.005511060357093811, -0.020940575748682022, -0.0054457117803394794, -0.015088251791894436, 0.009722410701215267, 0.018791336566209793, -0.03691466525197029, 0.004193197935819626, -0.03888964280486107, 0.01912533864378929, 0.001955010462552309, 0.007104838266968727, 0.007228274364024401, 0.012902705930173397, -0.021390754729509354, -0.03746649622917175, -0.012140306644141674, 0.007119360379874706, -0.022770335897803307, -0.02613941580057144, 0.012764748185873032, 0.04559876024723053, 0.0030604898929595947, 0.01834115758538246, 0.005826911423355341, 0.02263963781297207, 0.012401700951159, -0.04527927562594414, -0.01130529772490263, 0.01768767088651657, 0.05120421200990677, -0.003855563933029771, 0.002456015907227993, 0.011610257439315319, 0.000746516278013587, 0.03984808549284935, 0.03525916859507561, -0.015320601873099804, -0.018529942259192467, 0.0015928706852719188, 0.007402537390589714, 2.7824182325275615e-05, -0.013265753164887428, 0.02268320508301258, -0.022421810775995255, 0.015828868374228477, 0.020330656319856644, 0.003826519940048456, 0.009678845293819904, -0.002488690195605159, 0.007271840237081051, -0.006142762955278158, 0.014347635209560394, -0.022479897364974022, -0.0383087657392025, -0.01645331084728241, -0.005612713284790516, -0.016032174229621887, 0.018762292340397835, 0.004480005241930485, 0.02202971838414669, -0.030554072931408882, 0.017121316865086555, 0.023307645693421364, 0.026792900636792183, -0.021405277773737907, -0.011951521970331669, 0.012546919286251068, -0.05846516042947769, -0.031105905771255493, 0.018617073073983192, 0.02435322292149067, 0.014986598864197731, 0.0064985491335392, -0.05111708119511604, 0.01236539613455534, 0.01998213119804859, -0.0005627235514111817, -0.01566912792623043, -0.011944260448217392, 0.011530387215316296, -0.006810769904404879, 0.023452864959836006, 0.03464924916625023, 0.017760280519723892, 0.004167784471064806, -0.020243525505065918, 0.03766980394721031, 0.0016191916074603796, -0.0034453202970325947, -0.04678955301642418, 0.020504919812083244, -0.004498157650232315, 0.00789991207420826, -0.005674431566148996, -0.010731682181358337, -0.009192361496388912, 0.017252014949917793, -0.014746987260878086, 0.031483475118875504, -0.011377906426787376, 0.023917565122246742, -0.015436776913702488, -0.021666672080755234, -0.04199732840061188, -0.011421472765505314, -0.045337364077568054, -0.01953195221722126, -0.09932977706193924, 0.04292672872543335, -0.006433200556784868, -0.008270220831036568, 0.0027664215303957462, -0.030525028705596924, 0.03136729821562767, -0.05239500850439072, 0.009163317270576954, -0.03584004193544388, -0.021492408588528633, -0.014790552668273449, -0.024759836494922638, -0.017295580357313156, 0.005010054912418127, -0.007014076691120863, 0.027562562376260757, 0.017019664868712425, -0.036101438105106354, 0.010659072548151016, -0.008429961279034615, -0.028753357008099556, 0.0017725791549310088, -0.012336351908743382, 0.0021038600243628025, -0.020548485219478607, 0.007264579180628061, 0.011632040143013, -0.0072500575333833694, 0.03360367193818092, -0.0023815911263227463, -0.010956771671772003, 0.024788878858089447, 0.005042728967964649, 0.01227826438844204, 0.007442472502589226, 0.004570767283439636, -0.011966044083237648, 0.022944597527384758, 0.002915270859375596, 0.030495984479784966, -0.026633160188794136, 0.011740954592823982, -0.004781334660947323, -0.015335123986005783, -0.03578195720911026, 0.027039773762226105, 0.005572778172791004, -0.004490897059440613, -0.007747432217001915, 0.01922699250280857, -0.029537539929151535, -0.016061218455433846, -0.015465821139514446, 0.019415777176618576, 0.01723749190568924, -0.026604115962982178, 0.031076861545443535, -0.016642095521092415, -0.034765422344207764, 0.02066466026008129, -0.030525028705596924, 0.03737936541438103, 0.012844618409872055, 0.0007646686863154173, -0.0011817194754257798, 0.01594504341483116, -0.015407733619213104, 0.00831378623843193, -0.018355678766965866, 0.001129985204897821, 0.01381758600473404, -0.008466266095638275, 0.04385613277554512, -0.0115449083968997, -0.019270557910203934, 0.04792226105928421, -0.0021909913048148155, 0.0001930958533193916, -0.01627904735505581, -0.02144884318113327, 0.0010664518922567368, -0.013977326452732086, -0.01015806756913662, 0.0037575410678982735, 0.04882261902093887, 0.008713138289749622, -0.03177391365170479, -0.0335165411233902, -0.024861488491296768, -0.01945934258401394, 0.00190055335406214, 0.04798034951090813, -0.0017734867287799716, 0.01579982414841652, -0.02959562838077545, 0.011443255469202995, -0.011486820876598358, 0.026589594781398773, 0.016366178169846535, 0.0020003914833068848, 0.009882151149213314, -0.016235481947660446, 0.0270252525806427, 0.020882489159703255, -0.03305184096097946, 0.018965598195791245, -0.0009711519232951105, 0.006738160736858845, -0.015422255732119083, 0.008422700688242912, 0.01342549454420805, -0.006847074721008539, 0.0009384776349179447, -0.010426722466945648, 0.013164100237190723, 0.02576184645295143, 0.009381146170198917, 0.038976773619651794, -0.015611040405929089, 0.005064511671662331, 0.02452748455107212, -0.012416222132742405, 0.042026370763778687, 0.014805074781179428, 0.003242013743147254, 0.00437109125778079, -0.015843389555811882, 0.014456548728048801, -0.012183872051537037, -0.011123773641884327, -0.0018660638015717268, 0.03232574462890625, 0.015233471058309078, -0.04063227027654648, 0.036856576800346375, 0.019372211769223213, -0.0031839259900152683, 0.02541332133114338, -0.020199960097670555, -0.03392315283417702, -0.03810545802116394, -0.005017315503209829, -0.00018560800526756793, 0.01635165698826313, 0.005910412408411503, -0.011733693070709705, -0.01935769058763981, 0.026313679292798042, 0.020054740831255913, 0.020432310178875923, -0.04696381837129593, 0.017629584297537804, 0.016308091580867767, 0.012844618409872055, 0.007478777319192886, -0.02897118590772152, -0.0007283639279194176, 0.0022327417973428965, 0.02233467809855938, 0.0003344574652146548, -0.00946101639419794, 0.012292786501348019, 0.03174486756324768, 0.014659855514764786, 0.013418233953416348, 0.015567474067211151, 0.027562562376260757, -0.020780835300683975, 0.02849196270108223, 0.0070794252678751945, 0.00866957288235426, -0.007979783229529858, 0.046470072120428085, 0.015509386546909809, -0.007456994615495205, -0.010390417650341988, -0.015727214515209198, 0.021085795015096664, -0.028274135664105415, -0.016671137884259224, -0.005895890295505524, 0.0020022066310048103, -0.04615059122443199, -0.01569817215204239, 0.010651811957359314, -0.010027370415627956, -0.004817639477550983, 0.03746649622917175, -0.023786868900060654, -0.0020494027994573116, 0.004095175303518772, 0.008633268065750599, -0.028724312782287598, -0.014550941064953804, 0.012866401113569736, 0.014391200616955757, -0.0002591251104604453, -0.0053622107952833176, 0.045714933425188065, -0.043943263590335846, -0.045685891062021255, -0.006222633179277182, -0.012256481684744358, -0.0254859309643507, -0.007231905125081539, 0.005496538244187832, -0.02606680616736412, -0.025064796209335327, 0.000579514482524246, 0.007351710926741362, 0.01625000312924385, 0.006287981756031513, -0.006378743797540665, 0.002799095818772912, 0.017252014949917793, 0.0039717392064630985, -0.008647790178656578, 0.020882489159703255, 0.0005518321413546801, 0.0321514829993248, 0.018181415274739265, 0.018254024907946587, 0.0011100175324827433, -0.025093838572502136, -0.0239466093480587, 0.010426722466945648, 0.008473527617752552, 0.016976097598671913, -0.0008654143312014639, 0.0045598759315907955, 0.00510444724932313, -0.0029461300000548363, -0.000491021666675806, 0.002372515155002475, -0.012902705930173397, 0.003768432419747114, 0.0020294352434575558, 0.015654604882001877, 0.04141645133495331, -0.020446831360459328, -0.01720844954252243, -0.008524353615939617, -0.003127653617411852, -0.0030024023726582527, -0.010412200354039669, 0.010426722466945648, 0.020359700545668602, -0.011334341019392014, 0.00019298240658827126, -0.03708892688155174, 0.0241208728402853, -0.040516093373298645, 0.015567474067211151, 0.014224198646843433, 0.009809541516005993, -0.01877681352198124, 0.021289102733135223, 0.014667117036879063, -0.00909796915948391, 0.027388298884034157, -0.0006108272937126458, 0.03903486207127571, 0.013781281188130379, -0.027591604739427567, 0.0006407787441276014, -0.010920466855168343, -0.022596072405576706, 0.034533072263002396, 0.01834115758538246, 0.009954760782420635, 0.04016757011413574, 0.024759836494922638, 0.010593724437057972, 0.015451299026608467, -0.022799380123615265, 0.009635278955101967, 0.02507931739091873, -0.009344841353595257, -0.0174407996237278, 0.008161306381225586, -0.022073283791542053, -0.010303286835551262, 0.007228274364024401, -0.02606680616736412, 0.01864611729979515, -0.01710679568350315, 0.04536641016602516, 0.024846967309713364, -0.012496093288064003, 0.017150361090898514, 0.023685215041041374, 0.0032365680672228336, -0.026212025433778763, -0.0239466093480587, 0.01854446344077587, 0.003421722212806344, 0.016584007069468498, -0.032064348459243774, 0.028157958760857582, 0.028201526030898094, -0.006258937995880842, 0.01309875212609768, 0.02555854059755802, 0.04696381837129593, 0.006574789062142372, -0.026081329211592674, 0.006320655811578035, 0.038221634924411774, -0.01720844954252243, 0.00253588636405766, -0.01559651829302311, -0.00827748142182827, 0.003692192491143942, 0.027417343109846115, -0.022697726264595985, -0.016061218455433846, 0.004853944294154644, -0.004759551957249641, 0.021913543343544006, -0.03325514495372772, -0.0010446690721437335, -0.005808759015053511, 0.01683088019490242, -0.03389411047101021, -0.0061790673062205315, -0.029377799481153488, 0.012467049062252045, -0.010862379334867, -0.017949065193533897, 0.0029933261685073376, 0.018631594255566597, -0.010702638886868954, 0.00362139823846519, 0.013977326452732086, -0.004204089287668467, -0.0019441191107034683, 0.004697834141552448, 0.02528262324631214, -0.04641198366880417, 0.049171146005392075, -0.010767986997961998, -0.02654602937400341, -0.0359271764755249, 0.023932088166475296, 0.01799263060092926, 0.001560196396894753, 0.018965598195791245, -0.009744193404912949, 0.05312110111117363, 0.03854111582040787, 0.007827302441000938, -0.040893662720918655, 0.0006525777862407267, -0.0027591604739427567, 0.001493032556027174, 0.023423820734024048, 0.005271448753774166, -0.0015837944811210036, 0.005957608576864004, 0.0062190028838813305, -0.0052641876973211765, 0.02609585039317608, -0.019473865628242493, 0.0047050947323441505, -0.02982797846198082, -0.008117740973830223, -0.013403711840510368, 0.004091544542461634, -0.003421722212806344, -0.008611485362052917, -0.010579202324151993, 0.010034631006419659, 0.0027137796860188246, -0.0062081110663712025, -0.023452864959836006, -0.006066522561013699, 0.001913259970024228, 0.01877681352198124, -0.0270252525806427, -0.007344449870288372, 0.004447331186383963, 0.041445497423410416, -0.001929597114212811, 0.0136796273291111, -0.045889195054769516, 0.02356904000043869, 0.0290728397667408, 0.021100318059325218, -0.0010446690721437335, -0.00899631530046463, 0.00879300944507122, 0.018123328685760498, 0.015160861425101757, -0.036246657371520996, -0.007631257176399231, -0.019793346524238586, 0.0020947838202118874, -0.0023706997744739056, 0.0007537772762589157, -0.053818151354789734, 0.014035413973033428, -0.04388517513871193, -0.004363830201327801, -0.0001263858866877854, 0.02281390130519867, -0.020345179364085197, 0.0012289156438782811, 0.011160078458487988, 0.010528375394642353, -0.0056490181013941765, 0.014028153382241726, 0.017295580357313156, -0.014137067832052708, -0.010630029253661633, 0.0036286592949181795, 0.040341831743717194, 0.0074932994320988655, 0.008626007474958897, 0.0007451548590324819, 0.011995087377727032, 0.0005749763804487884, 0.013970065861940384, 0.00760221341624856, 0.011101990938186646, 0.005511060357093811, 0.005369471851736307, 0.0031548822298645973, -0.011080208234488964, 0.0068833795376122, 0.010463027283549309, 0.01768767088651657, 0.011762737296521664, 0.01265583373606205, -0.006320655811578035, -0.018457332625985146, -0.007747432217001915, 0.020751791074872017, 0.004084283951669931, -0.013229449279606342, 0.002138349460437894, -0.0014367602998390794, -0.012271003797650337, 0.024237047880887985, -0.009090707637369633, 0.0004860297776758671, -0.04336238652467728, -0.0025667455047369003, 0.017368189990520477, -0.002757345326244831, 0.031222080811858177, 0.004654268268495798, 0.014594507403671741, 0.020432310178875923, 0.011624779552221298, 0.007682084105908871, 0.018326634541153908, -0.009076186455786228, 0.014616290107369423, 0.039760954678058624, 0.01751340925693512, -0.01226374227553606, 0.0024414940271526575, -0.027954652905464172, 0.011421472765505314, -0.027184993028640747, 0.005895890295505524, -0.027388298884034157, 0.015567474067211151, -0.014957554638385773, 0.0009956576395779848, -0.018529942259192467, -0.038192592561244965, -0.007253687828779221, 0.02226206846535206, -0.016264526173472404, 0.015625562518835068, -0.045918241143226624, 0.00019683978462126106, -0.03061215952038765, -0.025907065719366074, 0.007870868779718876, 0.015509386546909809, 0.008473527617752552, -0.030641203746199608, -0.005485646892338991, -0.02185545675456524, -0.008633268065750599, 0.0009965652134269476, -0.00802334863692522, 0.006814400665462017, 0.015393211506307125, -0.007928956300020218, -0.018631594255566597, -0.036827534437179565, 0.012873662635684013, -0.00433478644117713, -0.03392315283417702, -0.002372515155002475, 0.00271014915779233, -0.016003131866455078, 0.014587245881557465, -0.0016736487159505486, -0.053992416709661484, 0.031628694385290146, 0.016264526173472404, 0.0079507390037179, -0.022930076345801353, -0.020940575748682022, -0.0021020446438342333, -0.010463027283549309, -0.023046251386404037, 0.0008536152890883386, -0.006211741827428341, -0.01409350149333477, -0.005638126749545336, 0.014405722729861736, 0.01693253219127655, -0.061514757573604584, -0.015756258741021156, 0.03653709590435028, 0.0072210137732326984, -0.014492853544652462, 0.030873553827404976, -0.03862824663519859, -0.0073952763341367245, -0.01423146016895771, -0.018442809581756592, 0.028477441519498825, -0.0017308286624029279, 0.027867522090673447, -0.004447331186383963, -0.027649693191051483, 0.010506592690944672, 0.003258350770920515, 0.016845401376485825, -0.03543343022465706, -0.014289547689259052, -0.057826194912195206, -0.0011544908629730344, 0.005768823903053999, 0.011639300733804703, 0.01489946711808443, 0.007369862869381905, 0.011109251528978348, 0.008008826524019241, 0.0006335178040899336, -0.008880140259861946, 0.020882489159703255, -0.011000337079167366, 0.013788541778922081, -0.0016772792441770434, -0.020229004323482513, 0.0033563736360520124, -0.010513854213058949, -0.017934544011950493, -0.001258866977877915, -0.0025885282084345818, -0.006030218210071325, 0.006828922312706709, 0.011769997887313366, -0.004505418706685305, 0.002385221654549241, 0.00543845072388649, -0.026255590841174126, 0.0025921587366610765, -0.023205991834402084, -0.012002348899841309, 0.011392428539693356, -0.007101207971572876, -0.0068942708894610405, -0.009657061658799648, 0.018355678766965866, 0.03630474582314491, -0.000243922506342642, -0.001389564131386578, -0.03040885366499424, -0.04135836288332939, 0.0007682991563342512, 0.015886956825852394, -0.006796248257160187, 0.021492408588528633, 0.02008378505706787, -0.0009584452491253614, 0.009606235660612583, -0.017760280519723892, 0.005253296345472336, -0.015915999189019203, 0.03630474582314491, 0.03154156357049942, 0.008778487332165241, -0.012953532859683037, 0.05007150396704674, 0.0018088838551193476, 0.024745313450694084, 0.0039318036288022995, 0.016584007069468498, 0.00018231788999401033, 0.020737269893288612, 0.0034725486766546965, 0.026052284985780716, 5.282623988023261e-06, -0.03825067728757858, 0.009751453995704651, 0.0075804307125508785, 0.02682194486260414, -0.0028009109664708376, 0.005191578529775143, -0.013440016657114029, -0.001489402144216001, 0.021986152976751328, 0.0270252525806427, 0.00399352191016078, 0.003768432419747114, 0.020824400708079338, 0.028346743434667587, 0.013527147471904755, 0.007173817604780197, -0.014884945005178452, -0.009359363466501236, 0.019648127257823944, -0.003793845884501934, -0.006309764459729195, -0.026153936982154846, -0.016671137884259224, -0.0010437613818794489, 0.04342047497630119, -0.02041778899729252, 0.02979893423616886, -0.02979893423616886, 0.023859478533267975, 0.029377799481153488, -0.0015883325831964612, 0.02404826320707798, 0.005289601162075996, -0.005191578529775143, -0.015378689393401146, 0.006618354935199022, -0.009076186455786228, -0.0031222079414874315, 0.00546386418864131, -0.010898684151470661, -0.013861151412129402, -0.005946717225015163, 0.016642095521092415, 0.00030359841184690595, 0.008763965219259262, -0.014049936085939407, -0.03944147378206253, 0.004748660605400801, -0.03308088332414627, 0.028375787660479546, -0.014957554638385773, 0.023002685979008675, -0.0017017849022522569, -0.015480343252420425, 0.0034108306281268597, -0.013723193667829037, 0.02452748455107212, -0.0006357868551276624, -0.004418287426233292, -0.016133828088641167, -0.02483244426548481, -0.0077546932734549046, 0.01887846738100052, 0.008204871788620949, -0.019488386809825897, 0.030147459357976913, -0.010833336040377617, -0.0036903773434460163, 0.021013185381889343, 0.011261731386184692, -0.009591713547706604, 0.0027882044669240713, 0.032441917806863785, -0.008611485362052917, 0.061514757573604584, -0.03348749503493309, -0.0210422296077013, -0.005300492513924837, 0.005972130224108696, 0.012387178838253021, -0.01731010153889656, -0.0174407996237278, 0.015277036465704441, -0.019285080954432487, 0.004625224508345127, -0.021231014281511307, -0.007264579180628061, -0.023801390081644058, 0.02551497519016266, -0.025732802227139473, -0.01662757247686386, -0.0050463592633605, -0.013904716819524765, -0.0080378707498312, 0.009264971129596233, -0.024367744103074074, -0.022218503057956696, 0.017222970724105835, 0.023104339838027954, -0.005492907948791981, 0.01150860358029604, -0.0006906977505423129, -0.021986152976751328, 0.02124553546309471, -0.0006194497109390795, 0.015683649107813835, -0.015073729678988457, -0.020156394690275192, -0.023002685979008675, -0.015015642158687115, 0.03252905234694481, -0.027548039332032204, 0.007246426772326231, 0.004469113890081644, 0.034939687699079514, 0.02147788740694523, 0.01184986811131239, 0.009243187494575977, 0.011174600571393967, 0.04057418182492256, 0.0009030805085785687, 0.005354949738830328, -0.013991848565638065, 0.0008309248369187117, -0.019241513684391975, -0.009845846332609653, 0.018529942259192467, 0.027315689250826836, -0.02661863900721073, -0.012677616439759731, 0.009192361496388912, 0.003601430682465434, 0.02846292033791542, 0.032064348459243774, -0.037640757858753204, -0.029406843706965446, -0.009294014424085617, 0.02627011388540268, 0.007257318589836359, -0.0022164045367389917, 0.008546137250959873, 0.020258046686649323, -0.02059205062687397, 0.009119751863181591, 0.017905499786138535, -0.01839924417436123, 0.01751340925693512, 0.0050463592633605, 0.009722410701215267, -0.0068652271293103695, -0.01014354545623064, -0.012583224102854729, 0.01197330467402935, -0.017629584297537804, -0.012568702921271324, -0.016598528251051903, 0.0087203998118639, 0.01200960949063301, -0.0001763049076544121, -0.010187110863626003, 0.03581099957227707, -0.006186328362673521, -0.018994642421603203, -0.05042002722620964, -0.015640083700418472, 0.004367460962384939, 0.008488048799335957, 0.014659855514764786, 0.010862379334867, 0.0027246710378676653, 0.0028208785224705935, -0.009664323180913925, 0.03572386875748634, -0.020127350464463234, 0.041445497423410416, -0.005848694127053022, -0.03604334965348244, -0.025631150230765343, -0.0071919700130820274, -0.0028971186839044094, 0.01781836897134781, 0.00435293884947896, -0.02719951421022415, 0.01758601889014244, 0.016337135806679726, -0.007515082135796547, -0.0019350429065525532, -0.013904716819524765, -0.01819593831896782, 0.011327080428600311, 0.01549486443400383, 0.004160523880273104, 0.007362602278590202, -0.016874445602297783, 0.004127849359065294, -0.006462244316935539, 0.02076631411910057, -0.003910020925104618, 0.021565018221735954, -0.018123328685760498, 0.04371091350913048, -0.002497766399756074, -0.013977326452732086, 0.02339477650821209, -0.005812389776110649, -0.010317808017134666, 0.025471407920122147, 8.66208501975052e-05, -0.029682759195566177, 0.005311383865773678, 0.005100816488265991, 0.004109696950763464, -0.01125447079539299, -0.01130529772490263, -0.011907956562936306, -0.020722748711705208, -0.004392873961478472, -0.025921586900949478, -0.0046179634518921375, 0.002397928386926651, -0.013222187757492065, 0.02733021229505539, -0.005467494484037161, -0.010397679172456264, 0.013381929136812687, 0.000747877755202353, 0.00394995603710413, 0.004236763808876276, 0.0189801212400198, 0.004984641447663307, 0.01720844954252243, -0.00021646704408340156, -0.011472298763692379, -0.0014512821799144149, 0.026182981207966805, -0.011980565264821053, 0.006262568291276693, -0.024600094184279442, -0.036275699734687805, -0.007536864839494228, -0.030728336423635483, -0.00022168584109749645, -0.016584007069468498, -0.004868466407060623, -0.009054402820765972, -0.00012695314944721758, -0.0004433716821949929, 0.006872488185763359, -0.008930967189371586, -0.037030838429927826, -0.0016772792441770434, -0.014275025576353073, 0.010092718526721, -0.007195600308477879, -0.007072164211422205, 0.008495310321450233, 0.019110817462205887, -0.024483919143676758, 0.012764748185873032, 0.021811889484524727, -0.026458898559212685, -0.00439650472253561, 0.0068652271293103695, 0.008132263086736202, 0.009686105884611607, 0.004160523880273104, -0.02637176588177681, 0.02120197005569935, -0.0094900606200099, -0.008938227780163288, 0.004421917721629143, 0.00026366321253590286, 0.008502570912241936, -0.012735703960061073, -0.014754247851669788, -0.008981794118881226, -0.016743747517466545, 0.016990620642900467, -0.0003383148286957294, 0.005369471851736307, -0.0007878129254095256, -0.0036740400828421116, 0.008248438127338886, 0.0058160200715065, 0.02692359872162342, 0.00010256090172333643, 0.003158512758091092, -0.022450853139162064, 0.0071375127881765366, -0.0033600041642785072, 0.012053174898028374, 0.022247547283768654, -0.0282160472124815, 0.026328200474381447, -0.00875670462846756, -0.03078642301261425, -0.007776476442813873, -0.002045772271230817, -0.0024741683155298233, 0.0020494027994573116, -0.00730451475828886, 0.02346738614141941, 0.00947553850710392, 0.008662312291562557, 0.010659072548151016, -0.014006370678544044, 0.006658290047198534, -0.005253296345472336, 8.299037290271372e-05, -0.017600540071725845, -0.023176949471235275, -0.015451299026608467, 0.006712747272104025, -0.020127350464463234, -0.019502907991409302, 0.005158904008567333, 0.01847185380756855, 0.011733693070709705, -0.06273459643125534, -0.024672703817486763, -8.900334796635434e-05, 0.0023035360500216484, -0.0020312503911554813, -0.01078976970165968, -0.0056490181013941765, -0.011530387215316296, -0.013563452288508415, -0.0008980886195786297, -0.014732465147972107, -0.008604224771261215, 0.013636061921715736, 0.007747432217001915, -0.03174486756324768, 0.007322666700929403, -0.031134948134422302, -0.009235926903784275, -0.009431972168385983, -0.02332216687500477, -0.0075513869524002075, 0.02384495548903942, -0.009736932814121246, 0.02271224744617939, -0.004044348374009132, -0.005514690652489662, -0.003917281981557608, -0.0030949795618653297, -0.0020439571235328913, -0.007907173596322536, 0.009889412671327591, -0.030292678624391556, -0.02182641252875328, 0.002439678879454732, 0.00028658058727160096, 0.03787310793995857, -0.00584143353626132, 0.006596572231501341, -0.011392428539693356, 0.006607463583350182, 0.02014187164604664, -0.00037575411261059344, -0.0014267764054238796, 0.0076385182328522205, -0.02869527041912079, -0.03061215952038765, 0.0071375127881765366, 0.017121316865086555, 0.003641365794464946, 0.01347632147371769, 0.012960793450474739, -0.014463810250163078, 0.02028709091246128, -0.024309657514095306, 0.010615507140755653, -0.025529496371746063, -0.013381929136812687, -0.04449509456753731, -0.027475429698824883, 0.00015996777801774442, 0.008030609227716923, -0.0009439233690500259, -0.007300883997231722, -0.010985815897583961, 0.019575517624616623, -0.015306079760193825, 0.020098306238651276, 0.018631594255566597, 0.007631257176399231, -0.023525474593043327, 0.031018773093819618, -0.009824063628911972, -0.006607463583350182, 0.027489952743053436, -0.00798704382032156, 0.007769215386360884, -0.018428288400173187, 0.011806302703917027, 0.020054740831255913, 0.019270557910203934, -0.028201526030898094, 0.014166111126542091, -0.0014177003176882863, -0.00015713146422058344, 0.01826854795217514, -0.02473079226911068, -0.001987684750929475, -0.00879300944507122, 0.002430602675303817, 0.01375223696231842, -0.018079763278365135, 0.015364168211817741, -0.019183427095413208, 0.023046251386404037, -0.015218948945403099, -0.0016863553319126368, -0.031657736748456955, 0.009932978078722954, 0.02470174804329872, -0.013708671554923058, -0.017063230276107788, 0.0034761792048811913, 0.0080378707498312, 0.000866775750182569, 0.0352301225066185, 0.014151589013636112, 0.0047050947323441505, 0.010971293784677982, 0.01200960949063301, 0.019502907991409302, 0.007329927757382393, 0.0024705377873033285, 0.014318590983748436, -0.021129360422492027, -0.018210459500551224, -0.02541332133114338, 0.020882489159703255, -0.020882489159703255, -0.01723749190568924, -0.014078979380428791, -0.017658628523349762, -0.009671583771705627, 0.01423146016895771, 0.00018685597751755267, 0.005478385835886002, 0.02866622619330883, 0.021419798955321312, 0.01594504341483116, -0.019212471321225166, 0.01655496284365654, 0.014674377627670765, 0.0023162427823990583, -0.009156056679785252, -0.004777704365551472, -0.001422238303348422, 0.016816357150673866, -0.03218052536249161, -0.016700182110071182, 0.00896001048386097, -0.017673149704933167, 0.0012833727523684502, -0.018892988562583923, 0.004305742681026459, 0.005137121304869652, 0.0010265166638419032, 0.0033781565725803375, -0.00577971525490284, 0.007623996119946241, 0.009896673262119293, 0.009214144200086594, -0.022871989756822586, -0.010187110863626003, 0.008262960240244865, 0.011399690061807632, 0.0015238916967064142, -0.0189801212400198, -0.013432755134999752, 0.007653039880096912, -0.005685322917997837, -0.019285080954432487, -0.014696160331368446, 0.03427167981863022, -0.01058646384626627, 0.048416007310152054, 0.0019096295582130551, -0.0030949795618653297, -0.02114388346672058, 0.013505364768207073, -0.023423820734024048, 0.001384118339046836, 0.0036558876745402813, 0.012372656725347042, -0.002243633149191737, 0.018936553969979286, 0.005696214269846678, 0.015828868374228477, 0.018486374989151955, -0.02730116806924343, 0.014209676533937454, 0.024135394021868706, 0.014275025576353073, 0.00858244113624096, 0.008647790178656578, 0.01874776929616928, -0.0013260308187454939, -0.03444594144821167, -0.002494135871529579, 0.001107294694520533, 0.01854446344077587, 0.012045914307236671, 0.007769215386360884, 0.007769215386360884, 0.029189014807343483, 0.0026919967494904995, -0.006146393250674009, 0.008829314261674881, -0.006574789062142372, -0.019648127257823944, 0.014064458198845387, 0.0023634389508515596, 0.015378689393401146, 0.0011608442291617393, -0.0015765335410833359, 0.007718388456851244, 0.009867629036307335, 0.027489952743053436, 0.024396788328886032, -0.008930967189371586, -0.006433200556784868, 0.022668682038784027, -0.006041109561920166, 0.026212025433778763, 0.02301720716059208, -0.006785356905311346, -0.022218503057956696, -0.00042726146057248116, 0.0038410420529544353, 0.007812781259417534, -0.003957217093557119, -8.792555308900774e-05, -0.008633268065750599, -0.0071919700130820274, -0.0047341384924948215, 0.0030151091050356627, 0.011014859192073345, 0.0011308927787467837, -0.01945934258401394, -0.028303178027272224, -0.014681638218462467, 0.004541723523288965, -0.025456886738538742, 0.0025957892648875713, 0.008146784268319607, -0.0028172482270747423, 0.01990952156484127, 0.010673594661056995, -0.023510951548814774, -0.0020203590393066406, 0.0013051555724814534, 0.00896001048386097, 0.007348080165684223, 0.015451299026608467, 0.0259941965341568, -0.004843052942305803, -0.003209339454770088, -0.010905944742262363, -0.007188339252024889, 0.008713138289749622, -0.02364164963364601, 0.021899022161960602, -0.021782847121357918, 0.0009339395328424871, -0.028143437579274178, -0.00507903378456831, 0.00403708778321743, -0.005688953213393688, 0.014943032525479794, 0.015567474067211151, 0.01265583373606205, -0.008212133310735226, 0.011951521970331669, 0.010564680211246014, -0.0045017884112894535, 0.0031240233220160007, 0.021187448874115944, -0.015611040405929089, 0.0042585465125739574, 0.015727214515209198, 0.015393211506307125, 0.007878129370510578, -0.02051944099366665, 0.007776476442813873, 0.0007841824553906918, -0.015640083700418472, 0.0037466497160494328, 0.0016536811599507928, 0.012408961541950703, -0.026386288926005363, -0.017934544011950493, 0.0005908597377128899, 0.0159014780074358, -0.012554180808365345, -0.010266982018947601, -0.008814792148768902, 0.017876455560326576, -0.02369973622262478, -0.00938840676099062, 0.01375223696231842, -0.005598191637545824, -0.01566912792623043, -0.007565908599644899, 0.01802167482674122, 0.008531615138053894, 0.00985310785472393, 0.02046135440468788, 0.01796358823776245, -0.009076186455786228, 0.003174849785864353, 0.005939456168562174, 0.0017389972927048802, 0.0007142958347685635, 0.012212916277348995, 0.0022490788251161575, 0.036827534437179565, 0.010833336040377617, 0.005253296345472336, 0.017760280519723892, -0.006447722669690847, 0.011029381304979324, -0.02513740584254265, -0.019314123317599297, 0.016496876254677773, -0.019619083032011986, 0.03679848834872246, -0.04429178684949875, 0.009068924933671951, -0.007054011803120375, 0.005783345550298691, 0.007740171626210213, -0.01627904735505581, 0.02223302610218525, -0.0012978946324437857, 0.0015674573369324207, 0.012147567234933376, -0.005569147877395153, -0.00017414931789971888, -0.0009235019097104669, 0.003467103000730276, -0.00010414923599455506, 0.007188339252024889, 0.0239466093480587, 0.014630812220275402, -0.021724758669734, -0.003361819311976433, -0.010753464885056019, -0.004592549987137318, -0.015059207566082478, -0.017702193930745125, -0.012575963512063026, -0.000302463915431872, -0.0035142991691827774, -0.0067200083285570145, 0.012750226072967052, 0.00875670462846756, 0.008255698718130589, 0.015349646098911762, -0.01953195221722126, -0.04141645133495331, 0.012452526949346066, 0.023380255326628685, 0.00760221341624856, -0.015306079760193825, 0.002528625540435314, -0.020679181441664696, 0.0030441528651863337, -0.006912423297762871, -0.010034631006419659, -0.02763517200946808, 0.0036831162869930267, -0.002564930124208331, 0.015611040405929089, 0.01227826438844204, -0.016671137884259224, -0.016090262681245804, 0.016743747517466545, 0.012713921256363392, 0.00971514917910099, -0.01809428445994854, -0.015059207566082478, -0.022349201142787933, -0.020040219649672508, -0.008989054709672928, -0.011058425530791283, -0.004741399548947811, -0.03252905234694481, 0.0011399689828976989, -0.004015304613858461, -0.020069262012839317, -0.00726094888523221, -0.0021528713405132294, 0.023205991834402084, -0.0010455766459926963, 0.005278709810227156, 0.016642095521092415, 0.0006303411209955812, 0.001370504149235785, -0.0012824650621041656, -0.00584143353626132, 0.007979783229529858, 0.015175383538007736, 0.0321514829993248, 0.03000224009156227, 0.025064796209335327, 0.031483475118875504, 0.0025249950122088194, -0.02008378505706787, 0.0007419782341457903, 0.002949760528281331, 0.014151589013636112, 0.011232688091695309, -0.015306079760193825, 0.0071084690280258656, 0.00437109125778079, -0.015059207566082478, -0.010136284865438938, -0.0005659001762978733, -0.015625562518835068, 0.01672922633588314, -0.023278601467609406, -0.008981794118881226, -0.023815913125872612, 0.002185545628890395, -2.4902785298763774e-05, -0.025253580883145332, -0.001768948626704514, 0.002305351197719574, -0.0005536473472602665, 0.008168567903339863, -0.010179850272834301, -0.006055631209164858, 0.02049039676785469, -0.014797814190387726, -0.012016870081424713, -0.0137667590752244, 0.01569817215204239, -0.022697726264595985, -0.019096296280622482, -0.006070153322070837, 0.03735031932592392, -0.011479560285806656, 0.010528375394642353, 0.01887846738100052, -0.001566549763083458, -0.0018951076781377196, 0.0019659018144011497, 0.008785747922956944, 0.012045914307236671, -0.019953086972236633, -0.003659518202766776, -0.0021728388965129852, -0.00469420338049531, 0.013207665644586086, 0.017876455560326576, -0.005013685207813978, -0.02127457968890667, 0.015262514352798462, -0.018442809581756592, 0.0049447063356637955, -0.009112491272389889, 0.026720291003584862, 0.012336351908743382, -0.004937445279210806, 0.023336689919233322, 0.0087203998118639, 0.007921694777905941, 0.0007723834132775664, -0.0058632162399590015, -0.004981010686606169, 0.021797368302941322, -0.006647398695349693, 6.909246440045536e-05, 0.024687226861715317, 0.0006303411209955812, 0.0002988334163092077, -0.008466266095638275, -0.014049936085939407, 0.010020109824836254, 0.0005055435467511415, 0.016642095521092415, 0.012162089347839355, -0.003216600278392434, -0.021318145096302032, 0.01665661670267582, 0.012256481684744358, 0.004857574589550495, 0.025660192593932152, 0.02226206846535206, -0.012764748185873032, 0.010303286835551262, 0.007682084105908871, 0.02162310481071472, -0.008836574852466583, 0.009613496251404285, 0.006309764459729195, -0.000289757241262123, -0.028724312782287598, 0.024614617228507996, -0.005583669524639845, 0.005478385835886002, 0.009882151149213314, 0.0024215264711529016, -0.0016346210613846779, -0.02490505389869213, 0.03305184096097946, 0.016395222395658493, -0.019299602136015892, 0.0015847020549699664, -0.02089701034128666, -0.003599615301936865, -0.01206043642014265, 0.002477798843756318, -0.019619083032011986, 0.0023906673304736614, -0.0008204872137866914, 0.0033073623199015856, -0.018210459500551224, -0.024571051821112633, -0.007892651483416557, 0.002410635119304061, -0.0012634050799533725, -0.03157060593366623, 0.0029769891407340765, 0.0038882382214069366, 0.008154045790433884, -0.029087360948324203, 0.005623605102300644, -0.007289992645382881, 0.0008064191206358373, -0.009250449016690254, -0.024512963369488716, 0.031454429030418396, 0.013185882940888405, 0.004026195965707302, -0.01049933210015297, 0.01665661670267582, -0.0072500575333833694, -0.0094900606200099, 0.014717943035066128, 0.017150361090898514, 0.0006398711120709777, 0.01960456185042858, -0.01960456185042858, 0.008371873758733273, 0.003419906832277775, -0.019038207828998566, -0.006128240842372179, -0.014028153382241726, -0.03136729821562767, 0.01274296548217535, 0.001846096245571971, 0.004817639477550983, -0.0008676833822391927, -0.003939064685255289, 0.030554072931408882, 0.004385612905025482, -0.002844476606696844, -0.0035233753733336926, 0.016322612762451172, 0.014645333401858807, 0.03944147378206253, 0.015218948945403099, 0.015015642158687115, -0.0002400651283096522, -0.001357797416858375, -0.004574397578835487, -0.006582050118595362, -0.01092772837728262, 0.0030750117730349302, 0.012931750155985355, -0.011377906426787376, 0.03220956772565842, 0.006502179894596338, -0.020170915871858597, -0.007740171626210213, -0.004886618349701166, 0.0057760849595069885, -0.00879300944507122, 0.0001114669066737406, -0.030699292197823524, -0.01084059663116932, 0.0013042478822171688, 0.015814347192645073, -0.010150806047022343, -0.007068533916026354, -0.013360145501792431, -0.014855901710689068, -0.0011544908629730344, 0.006592941470444202, 0.008749443106353283, -0.005761562846601009, -0.023830434307456017, -0.01113103423267603, -0.00938840676099062, 0.022668682038784027, -0.000937570002861321, 0.009504581801593304, -0.011602995917201042, 0.013628801330924034, -0.004603441804647446, 0.024861488491296768, 0.0007369862869381905, -0.003171219490468502, -0.011617518030107021, -0.001601946889422834, -0.009962021373212337, -0.00728636234998703, -0.013781281188130379, -0.016017653048038483, -0.0005196116399019957, 0.008778487332165241, -0.019865956157445908, 0.02124553546309471, -0.012764748185873032, -0.00430937297642231, -0.017774803563952446, -0.0044727446511387825, -0.018689682707190514, 0.016119306907057762, 0.017179405316710472, 0.014638072811067104, 0.01192247774451971, 0.006963249761611223, -0.007373493630439043, -0.007275470532476902, 0.007878129370510578, -0.019648127257823944, -0.00874218251556158, -0.03499777242541313, -0.0013686888851225376, -0.008429961279034615, -0.007351710926741362, 0.009279492311179638, -0.02114388346672058, 0.008531615138053894, -0.0059793912805616856, -0.0060338485054671764, 0.018834901973605156, 0.0004356569261290133, 0.014703421853482723, 0.02876788005232811, 0.00980228092521429, -0.005133491009473801, 0.027722302824258804, 0.000614911608863622, 0.00908344704657793, -0.0003038253344129771, 0.015233471058309078, 0.02127457968890667, 0.011893434450030327, 0.020403265953063965, 0.00252317963168025, -0.000651670154184103, -0.00437109125778079, 0.001579256379045546, 0.009548148140311241, 0.002377960830926895, -0.002768236678093672, 0.007856346666812897, -0.024992186576128006, 0.0029443148523569107, 0.0027518996503204107, 0.03273235633969307, 0.0009225943358615041, 0.01970621570944786, -0.006995924282819033, 0.00755864754319191, 0.0046179634518921375, -0.012670355848968029, 0.006513071246445179, -0.011907956562936306, 0.019038207828998566, 0.0038119980599731207, -0.017745759338140488, 0.013832107186317444, -0.0032982861157506704, -0.007834563963115215, 0.00866957288235426, 0.010259720496833324, 0.005351319443434477, -0.0068652271293103695, 0.027591604739427567, 0.026400810107588768, 0.005253296345472336, 0.0019078142940998077, 0.025064796209335327, -0.004930184222757816, 0.04066131263971329, 0.012830096296966076, 0.03258713707327843, 0.017121316865086555, 0.014601767994463444, -0.010172589682042599, 0.014870422892272472, -0.009228666312992573, -0.008713138289749622, -0.005794237367808819, 0.016714705154299736, -0.019880477339029312, -0.02089701034128666, 0.0077546932734549046, 0.005997543688863516, -0.015523908659815788, -0.020258046686649323, -0.04135836288332939, -0.006556636653840542, 0.009482799097895622, 0.009555408731102943, 0.012067697010934353, 0.0018306666752323508, 0.015814347192645073, 0.00044927120325155556, 0.03563673794269562, -0.006146393250674009, 0.004966489039361477, 0.018442809581756592, 0.00866957288235426, 0.00154385925270617, 0.0032057089265435934, 0.019677171483635902, 0.005347688682377338, 0.006930575706064701, -0.018617073073983192, 0.0075804307125508785, -0.019822390750050545, -0.000568169227335602, 0.0064985491335392, 0.010274242609739304, 0.0174407996237278, -0.020650139078497887, -0.021013185381889343, 0.031831998378038406, 0.021724758669734, 0.017455320805311203, -0.01902368664741516, -0.005427559372037649, -0.008981794118881226, 0.006825292017310858, -0.02226206846535206, -0.007507821079343557, 0.008604224771261215, 0.02927614562213421, -0.0007524157990701497, 0.018805857747793198, -0.0144492881372571, -0.004044348374009132, -0.018283069133758545, 0.00652396259829402, -0.01799263060092926, -0.006985032930970192, -0.03630474582314491, -0.009918455965816975, 0.011668344959616661, -0.015059207566082478, -0.004418287426233292, -0.0014068088494241238, -0.01963360607624054, -0.0024614615831524134, -0.01044850517064333, 0.03525916859507561, 0.04161975905299187, 0.008684094995260239, 0.027068817988038063, -0.010281503200531006, 0.0167582705616951, -0.004323895089328289, -0.012968054972589016, -0.0051480126567184925, 0.007311775349080563, -0.01414432842284441, 0.0020947838202118874, 0.009148795157670975, -0.015857912600040436, -0.01854446344077587, -0.003278318326920271, 0.003541527781635523, -0.009330319240689278, 0.012902705930173397, -0.0032765031792223454, -0.011617518030107021, 0.0032238613348454237, -0.00014964361616875976, 0.0005241497419774532, -0.0049047707580029964, 0.0014431135496124625, -0.010049153119325638, 0.0018415581434965134, -0.012808313593268394, -0.0016300830757245421, -0.0073952763341367245, 0.002757345326244831, -0.008734921924769878, -0.01809428445994854, -0.011210905387997627, -0.012546919286251068, 0.029566584154963493, 0.0012343613198027015, 0.012902705930173397, -0.0040879142470657825, -0.0270252525806427, 0.006687333807349205, 0.0016881705960258842, 0.001746258232742548, 0.009969282895326614, 0.015349646098911762, -0.0008091420168057084, -0.01693253219127655, -0.00046787739847786725, 0.015030164271593094, 0.0026030500885099173, -0.029639193788170815, 0.009214144200086594, 0.010993076488375664, -0.02134718932211399, 0.0021619475446641445, -0.002004021778702736, 0.002686551073566079, 0.0029316081199795008, 0.007827302441000938, 0.00019718013936653733, 0.010121762752532959, 0.0044328090734779835, 0.007231905125081539, 0.0024741683155298233, -0.010129023343324661, 0.024948621168732643, -0.020737269893288612, 0.02364164963364601, 0.0005141659639775753, -0.028753357008099556, 0.012147567234933376, -0.0282160472124815, 0.05846516042947769, -0.004450961481779814, -0.02374330349266529, -0.009700627997517586, -0.012713921256363392, 0.018515419214963913, 0.00836461316794157, -0.003142175730317831, -0.0038954990450292826, 0.019619083032011986, 0.022523462772369385, -0.010709899477660656, -0.004766813013702631, 0.010441244579851627, -0.02168119326233864, 0.03584004193544388, 0.014768769964575768, -0.0013305689208209515, -0.005271448753774166, -0.019691692665219307, 0.0019277819665148854, -0.02049039676785469, -0.014957554638385773, 0.01683088019490242, -0.0025013969279825687, -0.014354895800352097, -1.1196326340723317e-05, 0.002401558915153146, 0.01193699985742569, -0.03151251748204231, -0.006592941470444202, -0.01084059663116932, 0.0013986402191221714, 0.005946717225015163, 0.0011018490185961127, -0.029769890010356903, -0.003232937538996339, 0.007184708956629038, -0.005173426121473312, -0.011958782561123371, -0.03656613826751709, 0.006487657781690359, -0.02586350031197071, 0.0033527431078255177, -0.005634496454149485, -0.006462244316935539, -0.007631257176399231, -0.013345624320209026, 0.008437222801148891, 0.021419798955321312, -0.015015642158687115, 0.0035687563940882683, 0.000764214841183275, 0.008822052739560604, 0.020258046686649323, -0.017368189990520477, -0.006287981756031513, -0.013149578124284744, 0.0045889196917414665, -0.010600985027849674, -0.017905499786138535, 0.027489952743053436, 0.0049737500958144665, 0.00023802298528607935, 0.006168175954371691, 0.0024705377873033285, -0.011777259409427643, -0.02253798581659794, -0.005670801270753145, 0.021884499117732048, -0.009468276984989643, 0.006712747272104025, 0.03578195720911026, -0.00976597610861063, 0.020359700545668602, 0.007573169656097889, -0.010630029253661633, 0.002385221654549241, 0.010492071509361267, -0.010187110863626003, -0.006415048148483038, 0.004857574589550495, -0.006055631209164858, -0.012321829795837402, -0.017019664868712425, 0.002581267384812236, 0.005768823903053999, -0.01529155857861042, -0.006596572231501341, 0.014986598864197731, -0.01902368664741516, 0.0038337809965014458, 0.0015910554211586714, -0.011740954592823982, -0.009533626027405262, 0.0018388353055343032, 0.009649801068007946, 0.01197330467402935, 0.013454537838697433, 0.0003399031702429056, -0.0005863216356374323, 0.010557419620454311, 0.026037761941552162, -0.007097577676177025, -0.023220514878630638, 0.01792002096772194, -0.008604224771261215, 0.027272123843431473, -0.014943032525479794, -0.014681638218462467, -0.01306970790028572, 0.02038874477148056, -0.0034907010849565268, -0.032064348459243774, -0.014819596894085407, -0.018863944336771965, -0.011769997887313366, -0.018137849867343903, 0.008604224771261215, -0.0017834705067798495, -0.002443309174850583, 0.025936109945178032, 0.002376145450398326, -0.011958782561123371, -0.02127457968890667, 0.008843835443258286, -0.014071718789637089, 0.004047979135066271, 0.013527147471904755, 0.03784406557679176, 0.0009865814354270697, 0.021100318059325218, 0.017353666946291924, 0.007300883997231722, -0.01665661670267582, -0.0026502462569624186, 0.01306970790028572, 0.020272569730877876, 0.0003614590968936682, -0.008139523677527905, 0.0011091099586337805, -0.023583561182022095, 0.009562669321894646, 0.020432310178875923, 0.007177447900176048, -0.005837802775204182, -0.009214144200086594, 0.009613496251404285, -0.008851096965372562, 0.029305189847946167, 0.009206883609294891, -0.015785302966833115, 0.01150860358029604, -0.01188617292791605, 0.01168286707252264, -0.0031476214062422514, -0.0034362440928816795, -0.02192806638777256, -0.0283903107047081, 0.00899631530046463, -0.008030609227716923, 0.03287757560610771, -0.0013786726631224155, 0.007740171626210213, 0.015828868374228477, -0.004970119334757328, -0.019967610016465187, 0.0074932994320988655, -0.0009271323797293007, -0.011116513051092625, -0.024208003655076027, -0.010281503200531006, -0.004930184222757816, 0.006843444425612688, -0.004091544542461634, 0.016613051295280457, 0.002639354905113578, 0.003200263250619173, -0.01973525807261467, -0.002610311144962907, 0.028317701071500778, -0.006799878552556038, 0.006044739857316017, -0.027373777702450752, 0.022073283791542053, 0.006821661256253719, 0.01685992255806923, -0.0038119980599731207, 0.0012815574882552028, 0.0022200350649654865, 0.003550603985786438, -0.016438787803053856, 0.01457272469997406, 0.002004021778702736, -0.0024705377873033285, 0.03171582520008087, -0.004665159620344639, 0.020301612094044685, -0.0016264525474980474, 0.001650050631724298, -0.0012497907737269998, -0.01710679568350315, 0.006291612051427364, 0.03098972886800766, -0.01635165698826313, -0.015349646098911762, 0.004806748125702143, 0.00047967644059099257, 0.011566691100597382, 0.0009225943358615041, -0.01569817215204239, 0.0029316081199795008, 0.001374134561046958, 0.006407787557691336, -0.013527147471904755, 0.019502907991409302, 0.0007982505485415459, 0.014819596894085407, 0.009991065599024296, 0.024367744103074074, -0.0013605202548205853, 0.005768823903053999, 0.001335107022896409, 0.025166448205709457, -0.011414211243391037, -0.005315014626830816, 0.0002152190572815016, 0.007486038375645876, -0.0058341724798083305, -0.01877681352198124, 0.0024451245553791523, 0.008008826524019241, 0.01819593831896782, -0.00016212336777243763, 0.0283903107047081, -0.01594504341483116, 0.022160416468977928, -0.029944153502583504, 0.017731236293911934, 0.004247655160725117, -0.010542897507548332, 0.002025804715231061, 0.0031821108423173428, 0.02301720716059208, 0.006001174449920654, -0.012459788471460342, -0.022523462772369385, -0.0007850900874473155, -0.05428285524249077, 0.004981010686606169, 0.002969728084281087, 0.019851434975862503, -0.00866957288235426, 0.004127849359065294, 0.002947945147752762, -0.005605452693998814, -0.008132263086736202, 0.007435211446136236, 0.007369862869381905, -0.033168014138936996, -0.017905499786138535, 0.009831325151026249, -0.0011463223490864038, 0.03485255315899849, 0.018529942259192467, 0.004022565670311451, 0.018108805641531944, 0.01579982414841652, -0.023888520896434784, -0.002995141316205263, -0.007061272859573364, -0.013396450318396091, 0.014427505433559418, -0.017527930438518524, 0.0038192591164261103, -0.002860813867300749, -0.015567474067211151, -0.003111316589638591, 0.01594504341483116, 0.002301720902323723, -0.008429961279034615, 0.01915438286960125, 0.025326190516352654, 0.005042728967964649, -0.008633268065750599, -0.010506592690944672, 0.009068924933671951, 0.017092274501919746, 0.01597408764064312, 0.0011608442291617393, 0.008858357556164265, -0.011239948682487011, 0.0027228558901697397, -0.015320601873099804, 0.001884216209873557, 0.008437222801148891, 0.003851933404803276, -0.015059207566082478, -0.015727214515209198, -0.02001117542386055, -0.003902760101482272, -0.019139861688017845, 0.00683981366455555, 0.0016945239622145891, 0.00824117660522461, -0.03191913291811943, 0.02733021229505539, -0.0028717052191495895, 0.008248438127338886, -0.03159964829683304, 0.01338918972760439, 0.006371482741087675, 0.010339590720832348, 0.006429570261389017, 0.0167582705616951, 0.018079763278365135, 0.011907956562936306, 0.0004161431279499084, -0.027068817988038063, 0.006386004388332367, -0.0028263244312256575, 0.00292071676813066, -0.012909967452287674, 0.0009947499493137002, 0.03252905234694481, -0.007206491660326719, -0.0028136176988482475, -0.00010806333739310503, -0.02152145281434059, -0.005017315503209829, 0.016409743577241898, 0.011022120714187622, -0.006716377567499876, -0.01754245162010193, 0.0046470072120428085, -0.00755864754319191, 0.00029338771128095686, 0.014282286167144775, 0.018181415274739265, 0.014006370678544044, -0.003171219490468502, 0.008052391931414604, 0.007820041850209236, 0.014761509373784065, -0.0031857413705438375, -0.01892203278839588, 0.019488386809825897, -0.019967610016465187, 0.00913427397608757, -0.008466266095638275, -0.020751791074872017, -0.0024868750479072332, 0.012082219123840332, -0.014151589013636112, -0.003040522336959839, 0.005612713284790516, -0.005514690652489662, 0.03252905234694481, 0.014790552668273449, 0.009497321210801601, 0.007213752716779709, 0.023917565122246742, -0.025602106004953384, 0.028535528108477592, 0.0032637964468449354, -0.0012924488401040435, -0.010659072548151016, -0.016017653048038483, -0.0029443148523569107, -0.01710679568350315, -0.025645671412348747, -0.025442365556955338, -0.013229449279606342, -0.0009384776349179447, 0.018558984622359276, 0.011392428539693356, -0.008161306381225586, -0.016947055235505104, -0.01625000312924385, 0.004970119334757328, -0.014238720759749413, 0.005681692622601986, 0.023888520896434784, 0.0016827249201014638, 0.004487266298383474, -0.0253116674721241, 0.0042875902727246284, -0.0032057089265435934, 0.01829759031534195, -0.0011481374967843294, 0.004959227982908487, 0.005830541718751192, -0.017426276579499245, 0.012082219123840332, -0.013055185787379742, 0.02571828104555607, -0.006513071246445179, 0.016235481947660446, -0.011711910367012024, 0.013156839646399021, 0.021013185381889343, 0.006995924282819033, -0.02011282742023468, -0.01370141003280878, 0.0021238275803625584, -0.0076675619930028915, -0.00045017883530817926, 0.002443309174850583, -0.028346743434667587, -0.009076186455786228, 0.01566912792623043, 0.013062447309494019, 0.007587691769003868, 0.025340711697936058, -0.00011441666720202193, 0.011820824816823006, -0.0031240233220160007, -0.023961130529642105, -0.0007959814975038171, 0.028927620500326157, -0.023104339838027954, -0.023264080286026, 0.010680856183171272, -0.011072946712374687, -0.019372211769223213, -0.004171415232121944, -0.005903151351958513, 0.012953532859683037, 0.0030332612805068493, 0.004810378421097994, 0.01594504341483116, -0.004294851329177618, 0.018283069133758545, 0.019619083032011986, -0.02028709091246128, 0.010129023343324661, -0.008495310321450233, 0.010680856183171272, -0.014957554638385773, 0.009504581801593304, -0.006022957153618336, -0.011196383275091648, -0.014035413973033428, 0.00946101639419794, 0.0007229181937873363, 0.015218948945403099, -0.007340819109231234, 0.014427505433559418, -0.004777704365551472, 0.007155665196478367, -0.016235481947660446, -0.015030164271593094, -0.024295134469866753, -0.023932088166475296, 0.005514690652489662, -0.013861151412129402, -0.005271448753774166, 0.006995924282819033, -0.029159970581531525, -0.0020276198629289865, 0.009308536536991596, -0.0009176023886539042, -0.013178622350096703, -0.008233916014432907, -0.0008899200474843383, -0.008052391931414604, -0.004262176807969809, -2.478224132573814e-06, -0.0010546528501436114, -0.01518990471959114, 0.005307753570377827, -0.0022817531134933233, -0.004625224508345127, -0.012554180808365345, 0.00543845072388649, 0.007878129370510578, 0.011072946712374687, 0.015509386546909809, -0.0012879108544439077, 0.0005450249882414937, 0.009671583771705627, -0.012438005767762661, 0.02031613513827324, -0.003797476179897785, 0.011160078458487988, 0.009068924933671951, 0.002599419793114066, -0.030292678624391556, 0.005144382361322641, -0.0024505702313035727, 0.005347688682377338, -0.0007242796709761024, -0.005895890295505524, -0.0032492745667696, -0.00014771493442822248, 0.01597408764064312, -0.0005967592587694526, 0.011443255469202995, -0.002285383641719818, -0.0043747215531766415, 0.006077414378523827, 0.033777933567762375, 0.007340819109231234, 0.010041892528533936, 0.01092772837728262, 0.0002402920217718929, 0.005587300285696983, 0.015073729678988457, -0.0022817531134933233, -0.001017440459690988, 0.01439846120774746, -0.011711910367012024, -0.027562562376260757, -0.01690348982810974, 0.009831325151026249, -0.018355678766965866, 0.0012806497979909182, 5.49109245184809e-05, 0.01158121321350336, 0.004788595717400312, 0.01884942315518856, -0.004832161590456963, 0.0010791585082188249, -0.022349201142787933, 0.006985032930970192, -0.021869977936148643, 0.004323895089328289, 0.01932864636182785, -0.004984641447663307, -0.00656026741489768, -0.006966880522668362, 0.0065094404853880405, 0.022363722324371338, -0.00048330691060982645, -0.00017199372814502567, 0.007104838266968727, -0.0028535528108477592, 0.016438787803053856, -0.02120197005569935, 0.0059213037602603436, -0.013694149442017078, 0.006019326392561197, 0.0018016229150816798, -0.008204871788620949, 0.0007628534222021699, -0.007994304411113262, -0.00943923369050026, 0.004951966926455498, 0.009243187494575977, 0.009395668283104897, 0.013541669584810734, 0.012677616439759731, -0.02117292769253254, 0.0025213644839823246, -0.022349201142787933, 0.0030550442170351744, 0.003350927960127592, 0.00802334863692522, 0.008480788208544254, 0.0007487853290513158, 0.010971293784677982, -0.005376732442528009, 0.0016055773012340069, 0.024295134469866753, 0.024672703817486763, -0.004777704365551472, 0.006102827377617359, -0.01346179936081171, 0.00946101639419794, 0.012517875991761684, 0.018442809581756592, 0.017847413197159767, -0.0014621735317632556, -0.007486038375645876, -0.014630812220275402, -0.003612322034314275, -0.010390417650341988, -0.003296470735222101, -0.007449733559042215, 0.02056300640106201, 0.0015865173190832138, -0.0022127742413431406, -0.011602995917201042, -0.007870868779718876, 0.005427559372037649, 0.0035233753733336926, -0.012597746215760708, -0.003964478150010109, 0.006905162241309881, -0.01014354545623064, 0.018965598195791245, -0.0042875902727246284, -0.00798704382032156, -0.021565018221735954, 0.0224072877317667, 9.756899817148224e-05, 0.029769890010356903, 0.02518097124993801, -0.010993076488375664, -0.01007093582302332, 0.01758601889014244, 0.013287536799907684, -0.0024160807952284813, -0.007311775349080563, 0.0210422296077013, 0.005267818458378315, -0.002185545628890395, -0.01693253219127655, 0.008734921924769878, -0.01877681352198124, -0.016685660928487778, -0.0015238916967064142, -0.03363271430134773, 0.009954760782420635, -0.002849922515451908, 0.0023253189865499735, 0.0012752041220664978, -0.023932088166475296, -0.002628463553264737, -0.004142371471971273, 0.004323895089328289, 0.00474503031000495, -0.0007274562958627939, 0.006723638623952866, -0.004596180748194456, -0.0035542345140129328, -0.008916445076465607, 0.00023734226124361157, 0.04124218970537186, 0.03979000076651573, 0.007914434187114239, -0.00394995603710413, -0.0001073258972610347, -0.02205876260995865, 0.009018098935484886, -0.0008989962516352534, -0.011152817867696285, -0.01627904735505581, -0.001473972573876381, -0.016220958903431892, 0.015088251791894436, 0.018762292340397835, 0.014405722729861736, 0.006008435040712357, 0.009962021373212337, 0.00543845072388649, -0.01443476602435112, 0.008836574852466583, 0.016206437721848488, 0.011820824816823006, -0.010513854213058949, -0.0002983796293847263, 0.0318029560148716, -0.007409798447042704, 0.01617739349603653, 0.003917281981557608, 0.01129077561199665, 0.007885390892624855, 0.009468276984989643, -0.013265753164887428, -0.01312053482979536, -0.008357352577149868, -0.0063061341643333435, 0.005271448753774166, 0.01700514182448387, 0.009548148140311241, -0.008698617108166218, 0.0015447668265551329, -0.01313505694270134, -0.004171415232121944, 0.019720736891031265, -0.018602551892399788, -0.025093838572502136, -0.013200405053794384, 0.009657061658799648, -0.00014692076365463436, -0.0013877488672733307, 0.00951184332370758, 0.0012697584461420774, -0.002869890071451664, -0.007326297461986542, -0.015001120045781136, -0.015160861425101757, 0.011152817867696285, 0.006106458138674498, -0.018907511606812477, -0.0062480466440320015, -0.010956771671772003, -0.027388298884034157, -0.003191187046468258, -0.005075403023511171, 0.03668231517076492, -0.006716377567499876, 0.013236709870398045, 0.0035451583098620176, 0.01617739349603653, -7.760139124002308e-05, -0.023961130529642105, 0.024512963369488716, -0.01274296548217535, 0.0005835987394675612, -0.004425548482686281, -0.0008263867348432541, -0.013774019666016102, -0.023714259266853333, -0.0065384842455387115, 0.018617073073983192, 0.03020554780960083, 0.009773236699402332, -0.008444483391940594, -0.0075804307125508785, -0.006985032930970192, -0.005267818458378315, 0.002506842603906989, -0.006044739857316017, 0.00913427397608757, -0.0022654160857200623, -0.022044241428375244, -0.02261059544980526, -0.01778932474553585, 0.007188339252024889, 0.01375223696231842, 0.004821270238608122, -0.004167784471064806, -0.004160523880273104, -0.0035034078173339367, 0.01587243378162384, -0.0123145692050457, 0.005819650366902351, -0.007355341222137213, -0.012488831765949726, 0.006244415882974863, -0.02733021229505539, -0.037815023213624954, -0.007348080165684223, -0.008640529587864876, -0.004806748125702143, 0.010717160068452358, -0.006897901184856892, 0.021129360422492027, -2.4874421796994284e-05, 0.014543680474162102, 0.002635724376887083, -0.009678845293819904, 0.009686105884611607, 0.00615728460252285, -0.0005740687483921647, -0.005895890295505524, 0.00723553542047739, -0.0022654160857200623, 0.015509386546909809, 0.003162143286317587, 0.02523905783891678, 0.012002348899841309, 0.008488048799335957, 0.022871989756822586, -0.011087468825280666, 0.00473776925355196, 0.008342830464243889, -0.016874445602297783, 0.011225426569581032, 0.01905272901058197, 0.0016001316253095865, 0.016395222395658493, 0.014405722729861736, -0.013149578124284744, 0.00292071676813066, 0.014674377627670765, -0.0039717392064630985, 0.01447107084095478, 0.014224198646843433, -0.020185437053442, -0.0040879142470657825, -0.007812781259417534, -0.012822835706174374, 0.011697388254106045, 0.007500560022890568, -0.0019713477231562138, 0.003559680189937353, -0.016976097598671913, -0.028433876112103462, 0.002348917070776224, -0.014086240902543068, 0.017978109419345856, -0.0014648964861407876, 0.01520442683249712, -0.01015806756913662, -0.0012261926895007491, 0.014732465147972107, -0.0005500168772414327, 0.011958782561123371, 0.021986152976751328, -0.0058160200715065, -0.001037408015690744, -0.02811439335346222, -0.009177839383482933, -0.028128916397690773, -0.005300492513924837, 0.0023543627467006445, 0.02076631411910057, -0.005144382361322641, 0.0043166340328752995, -0.0075513869524002075, -0.008800270035862923, 0.0049338145181536674, 0.0002666129730641842, 0.01052111480385065, -0.0115449083968997, -0.01559651829302311, 0.020199960097670555, 0.01809428445994854, 0.011980565264821053, -0.026081329211592674, -0.0013106012484058738, -0.006004804745316505, 0.01058646384626627, 0.015146339312195778, 0.0034689183812588453, 0.010310547426342964, 0.032819487154483795, -0.012880923226475716, -0.005242404993623495, 0.0013523517409339547, -0.006887009833008051, 0.005794237367808819, 0.00728636234998703, -0.01423146016895771, 0.010426722466945648, 0.008778487332165241, 0.005681692622601986, -0.016598528251051903, -0.006763573735952377], "b3493286-134f-4c81-a543-24c1f94dee97": [-0.0025720621924847364, -0.0037764532025903463, -0.00471086660400033, 0.004242043476551771, -0.002390999346971512, -0.050438929349184036, 0.006809255573898554, 0.030030563473701477, -0.010333513841032982, 0.009848524816334248, 0.012648532167077065, 0.029409777373075485, -0.002686843043193221, -0.027314620092511177, -0.011212962679564953, -0.00446190545335412, -0.01985224522650242, 0.03065134957432747, 0.04671420902013779, -0.02640930749475956, 0.068700410425663, 0.015907661989331245, -0.005215256009250879, 0.026137713342905045, -0.009040208533406258, -0.026241177693009377, -0.034195009618997574, 0.02095155604183674, -0.0376352034509182, 0.0020094739738851786, -0.002528412966057658, 0.016825910657644272, -0.012467469088733196, -0.01663191430270672, -0.004836963955312967, -0.016321521252393723, 0.0052249557338654995, 0.0032575142104178667, -0.0067122578620910645, -0.01830027811229229, -0.04438626021146774, 0.033108633011579514, 0.005942740477621555, -0.02055063098669052, -0.05612947791814804, 0.04110126197338104, 0.043868936598300934, -0.022904448211193085, 0.01885640062391758, 0.00634689861908555, 0.007753368932753801, -0.04260149598121643, -0.033108633011579514, -0.009389401413500309, 0.011710884980857372, -0.03683335334062576, -0.0017653625691309571, 0.031168673187494278, -0.0027660580817610025, -0.05488790199160576, -0.002898621838539839, 0.002620561048388481, 0.0003999144537374377, 0.00674459058791399, -0.026590369641780853, -0.008497020229697227, 0.009253603406250477, -0.021999133750796318, -0.06471702456474304, -0.022917380556464195, 0.014226364903151989, 0.04855070263147354, -0.030987609177827835, 0.020343702286481857, 0.01431689690798521, -0.0026803764048963785, 0.01608872599899769, 0.021197283640503883, -0.0051990896463394165, -0.015067013911902905, -0.010100719518959522, -0.006996784824877977, 0.026124779134988785, -0.007999096997082233, 0.09368707984685898, 0.010023120790719986, 0.006424497347325087, -0.024378815665841103, -0.01892106607556343, -0.03779039904475212, 0.004597702529281378, -0.004371373914182186, 0.009880857542157173, -0.01476955320686102, -0.00995198916643858, -0.02263285405933857, -0.008193093352019787, 0.004258209839463234, 0.032668907195329666, -0.00364388944581151, 0.01672244630753994, 0.03018576093018055, 0.003449893556535244, 0.014950616285204887, 0.0009045058395713568, 0.05162877216935158, -0.002041806699708104, -0.03396221250295639, -0.010501643642783165, 0.037531737238168716, 0.022878581658005714, -0.015506737865507603, -0.008419421501457691, 0.0007505216053687036, -0.023421769961714745, -0.022904448211193085, 0.01239633746445179, -0.015972327440977097, -0.026318775489926338, -0.043946534395217896, 0.01400650292634964, -0.03398808091878891, 0.003944583237171173, 0.05085279047489166, -0.005916874390095472, -0.012816661968827248, -0.010598641820251942, -0.0052281892858445644, 0.025633323937654495, -0.013101189397275448, -0.020796358585357666, -0.0021517376881092787, -0.006162602920085192, 0.03660055622458458, 0.0020595896057784557, -0.019127994775772095, 0.009538130834698677, 0.08178866654634476, -0.01348918117582798, 0.07030411064624786, -0.025697989389300346, -0.025607457384467125, -0.027702612802386284, 0.011141830123960972, 0.01324345264583826, -0.018145082518458366, -0.04379133880138397, 0.007643437944352627, -0.01726563461124897, 0.03566937893629074, -0.034324340522289276, -0.03489339351654053, 0.021287815645337105, 0.009809724986553192, 0.013838373124599457, 0.0014679022133350372, -0.0043390411883592606, 0.002369983121752739, 0.01730443350970745, 0.010715039446949959, 0.007733969483524561, -0.04839550703763962, -0.014782486483454704, 0.007915032096207142, 0.0442051962018013, 0.017576027661561966, 0.005050359759479761, 0.0036083234008401632, -0.027728479355573654, 0.020641162991523743, 0.01267439778894186, -0.010605108924210072, -0.023835627362132072, 0.019218526780605316, -0.002657743636518717, -0.00995198916643858, 0.05010266974568367, -0.015920596197247505, 0.029875366017222404, 0.003695621620863676, -0.017045771703124046, 0.00019924994558095932, 0.0019237925298511982, 0.021236082538962364, -0.012971858493983746, 0.030961744487285614, -0.01105776522308588, 0.011096565052866936, -0.023072578012943268, 0.011090097948908806, -0.034789931029081345, -0.014084101654589176, 0.011549222283065319, 0.010281781665980816, -0.022464724257588387, -0.017356164753437042, 0.0071649146266281605, 0.01986517943441868, -0.0037279543466866016, 0.008872078731656075, -0.030858280137181282, -0.05395672470331192, -0.033677686005830765, 0.025775587186217308, -0.054163653403520584, 0.025465194135904312, -0.023538168519735336, -0.038023192435503006, -0.003021485870704055, -0.01624392159283161, 0.04464492201805115, -0.02474094182252884, 0.0031023176852613688, -0.0007270804489962757, -0.00940233375877142, -0.004591235890984535, -0.01717510260641575, 0.030470287427306175, -0.004361674189567566, -0.030082296580076218, -0.03134973719716072, 0.010986633598804474, -0.014679022133350372, -0.02953910641372204, -0.06187175586819649, -0.027625015005469322, 0.004578303080052137, 0.02489613927900791, -0.0442051962018013, -0.025775587186217308, 0.03140146657824516, 0.018778802827000618, -0.0029503540135920048, -0.02483147382736206, -0.010915501974523067, 0.032461978495121, 0.021171417087316513, 0.0026900763623416424, -0.0036762221716344357, -0.020692894235253334, 0.0003890021762344986, 0.02308551035821438, 0.031013475731015205, 0.026538636535406113, -0.002707859268411994, -0.003566291183233261, 0.007733969483524561, 0.002958437195047736, 0.03217745199799538, -0.01832614466547966, -0.029228713363409042, 0.016062859445810318, -0.018985731527209282, -0.005667913239449263, 0.0027256421744823456, 0.037997327744960785, 0.03256544470787048, -0.0017896121134981513, 0.018145082518458366, -0.03184119239449501, 0.0031281837727874517, 0.003986615687608719, 0.00026290485402569175, -0.02644810639321804, 0.015351541340351105, 0.003650355851277709, 0.01673537865281105, -0.044903580099344254, -0.004232343751937151, 0.029358044266700745, -0.04107539728283882, -0.01454969123005867, -0.012836061418056488, 0.0004950937000103295, -0.009130739606916904, 0.016463784500956535, -0.0011170930229127407, -0.008820346556603909, 0.009454065933823586, -0.010967234149575233, -0.004765832331031561, 0.007119649089872837, -0.004836963955312967, 0.04260149598121643, 0.006401864346116781, -0.021249016746878624, -0.021986201405525208, -0.013890105299651623, -0.012667931616306305, 0.03065134957432747, 0.00020733309793286026, -0.041877247393131256, -0.008387088775634766, 0.026849031448364258, 0.038540516048669815, -0.008729814551770687, -0.03543658182024956, -0.027055960148572922, -0.03018576093018055, 0.03657469153404236, -0.011006033048033714, -0.00594597402960062, 0.03070308268070221, -0.021417146548628807, 0.03429847210645676, -0.029487375169992447, 0.03595390543341637, 0.016838843002915382, -0.028814855962991714, 0.033134497702121735, 0.050361331552267075, -0.013191720470786095, -0.033108633011579514, -0.008723348379135132, 0.009757992811501026, 0.03241024538874626, 0.022438857704401016, -0.014821285381913185, 0.00030392687767744064, -0.008387088775634766, 0.031453199684619904, -0.004646201618015766, -0.0698385164141655, 0.032617174088954926, 0.02966843731701374, -0.03176359459757805, 0.04350681230425835, -0.03072894923388958, -0.01571366749703884, -0.03931650146842003, -0.03833358734846115, 0.00020561543351504952, -0.018170949071645737, -0.008497020229697227, -0.01615339145064354, -0.018584806472063065, -0.038023192435503006, -0.054680973291397095, -0.002660976955667138, -0.014704888686537743, 0.010973700322210789, -0.02322777360677719, -0.03758347034454346, -0.011135363951325417, 0.04860243573784828, 0.012124743312597275, 0.0012803728459402919, -0.007539973594248295, -0.04694700613617897, -0.01879173517227173, 0.0007573922630399466, -0.024340016767382622, 0.014329829253256321, -0.0009845291497185826, 0.008296557702124119, 0.0026043946854770184, -0.012971858493983746, -0.0055515156127512455, 0.007514107506722212, 0.004681767430156469, 0.02969430387020111, -0.0113034937530756, -0.02638344094157219, -0.003284997073933482, 0.007721036206930876, 0.02205086499452591, 0.02047303318977356, 0.0032736805733293295, 0.009906723164021969, 0.01777002401649952, -0.03393634781241417, 0.015584336593747139, 0.02364163286983967, -0.015584336593747139, -0.020770493894815445, -0.010469311848282814, -0.006835121661424637, 0.0011591254733502865, -0.017045771703124046, 0.026616236194968224, 0.031996387988328934, 0.02902178466320038, -0.006224034819751978, -0.030884144827723503, 0.0538015253841877, 0.019722916185855865, -0.0025558958295732737, -0.002153354464098811, 0.022956179454922676, -0.016606047749519348, -0.019218526780605316, 0.008826812729239464, -0.04190311208367348, -0.02902178466320038, -0.019140927121043205, 0.013120588846504688, -0.012836061418056488, -0.021339546889066696, 0.006472995970398188, -0.0473608635365963, 0.009816192090511322, 0.0002819002838805318, 0.0034369605127722025, 0.01621805690228939, 0.025516925379633904, -0.02423655241727829, 0.011665618978440762, 0.006013872567564249, -0.001547925523482263, -0.01185314916074276, 0.019735848531126976, 0.012486868537962437, 0.022206062451004982, 0.019528919830918312, 0.03603150323033333, -0.011762617155909538, 0.024637477472424507, 0.007449442055076361, -0.04327401518821716, -0.027418086305260658, 0.02969430387020111, 0.06626899540424347, -0.009919656440615654, 0.04580889642238617, -0.004500704817473888, 0.019102128222584724, 0.01987811177968979, 0.008128427900373936, -0.02097742259502411, 0.008678082376718521, -0.030496153980493546, 0.029409777373075485, -0.0027983905747532845, 0.01668364554643631, 0.000862473389133811, 0.0036083234008401632, 0.016308587044477463, 0.01476955320686102, 0.004332575015723705, 0.01628272235393524, 0.027831943705677986, 0.010449911467730999, -0.015312742441892624, -0.01374784205108881, -0.014394494704902172, -0.019166793674230576, -0.048757631331682205, -0.004429572727531195, 0.0029390377458184958, 0.011445757001638412, -0.03344489261507988, 0.006249900907278061, -0.03559177741408348, 0.02959083952009678, 0.002400699071586132, 0.024443481117486954, -0.03766106814146042, -0.006353365257382393, 0.0025607456918805838, -0.03887677565217018, -0.024546945467591286, -0.023279506713151932, 0.0002253181446576491, 0.01892106607556343, -0.006945052649825811, -0.010909035801887512, 0.019606517627835274, 0.03652295842766762, 0.011736751534044743, 0.02163700759410858, 0.020162640139460564, 0.03952343016862869, -0.02154647745192051, 0.008251291699707508, -0.012286406010389328, 0.01769242435693741, 0.003407861106097698, -0.01001665461808443, 0.0005993664381094277, 0.0007848750101402402, -0.004216177389025688, -0.026085980236530304, -0.006776922848075628, -0.008555218577384949, -0.008516419678926468, -0.02218019589781761, 0.011814349330961704, -0.03657469153404236, 0.00634689861908555, -0.024909071624279022, 0.038100793957710266, -0.008671616204082966, -0.024973737075924873, 0.01714923605322838, -0.004503937903791666, -0.030832413583993912, -0.006511795334517956, -0.012622665613889694, -0.044437989592552185, -0.03228091448545456, 0.022451790049672127, -0.01733030006289482, -0.005506250075995922, 0.03194465488195419, -0.0013935371534898877, 0.00223095272667706, -0.0430670864880085, -0.009867924265563488, -0.03766106814146042, 0.022878581658005714, -0.016450852155685425, 0.012409270741045475, -0.028944186866283417, 0.008134894073009491, 0.000888339476659894, -0.0067381239496171474, -0.02972017042338848, 0.0035436581820249557, 0.028788989409804344, -0.0204600989818573, 0.008277158252894878, -0.011756150983273983, -0.022969113662838936, 0.007585239131003618, -0.03440193831920624, -0.011723818257451057, -0.0018704436952248216, -0.013670243322849274, 0.020718760788440704, -0.01079910434782505, 0.017420830205082893, 0.012034211307764053, 0.007397709880024195, -0.006246667820960283, 0.027831943705677986, -0.03015989437699318, -0.014433293603360653, 0.005283154547214508, 0.04053220897912979, 0.026176512241363525, -0.023861493915319443, 0.010630974546074867, 0.0083353566005826, 0.005697012413293123, -0.00686098774895072, 0.009816192090511322, -0.013657310046255589, 0.010462844744324684, -0.010294714942574501, 0.0031960823107510805, -0.016981106251478195, 0.007151981815695763, -0.029254579916596413, -0.004465138539671898, 0.013385715894401073, -0.04254976660013199, 0.01730443350970745, -0.03807492554187775, -0.00343049387447536, -0.02263285405933857, -0.029332177713513374, 0.0032995466608554125, 0.018778802827000618, -0.005157057195901871, -0.02432708442211151, 0.002114555099979043, -0.03160839527845383, -0.004284075926989317, 0.011212962679564953, 0.009738593362271786, 0.03065134957432747, 0.005089158657938242, 0.055767349898815155, 0.012001878581941128, -0.009007875807583332, 0.03613496571779251, -0.013211119920015335, 0.0188176017254591, -0.04531744122505188, -0.006401864346116781, 0.035281386226415634, -0.01076030544936657, -0.008956143632531166, -0.0025461961049586535, 0.028918320313096046, 0.029254579916596413, -0.014911817386746407, -0.013372783549129963, 0.011484556831419468, 0.04200657457113266, -0.00041789948591031134, 0.011161230504512787, 0.0035436581820249557, -0.000432449160143733, -0.04099779948592186, 0.004697933793067932, 0.028866587206721306, 0.012170008383691311, 0.012739063240587711, -0.004575069528073072, 0.0253875944763422, 0.010048987343907356, 0.014717821031808853, -0.01836494356393814, -0.035902172327041626, 0.012163542211055756, 0.0032009321730583906, 0.014873018488287926, -0.014989415183663368, 0.012060077860951424, -0.0021679040510207415, 0.011381092481315136, -0.007236046716570854, 0.0013975787442177534, 0.00351132545620203, 0.003837885335087776, 0.017472563311457634, 0.03732480853796005, 0.010643907822668552, 0.012861927039921284, 0.006996784824877977, -0.020046241581439972, 0.05018027126789093, -0.030056430026888847, 0.014588491059839725, -0.0027207923121750355, -0.011704418808221817, 0.018196813762187958, -0.0097256600856781, 0.009745060466229916, 0.008425887674093246, 0.009609263390302658, -0.0008608567295596004, 0.0015649001579731703, 0.04588649421930313, -0.02796127460896969, 0.018662404268980026, 0.03732480853796005, -0.02264578640460968, -0.04477424919605255, -0.023059643805027008, 0.015235143713653088, -0.021843936294317245, 0.02594371698796749, -0.017925219610333443, 0.013877172954380512, -0.01403236947953701, 0.017899353057146072, -0.0012431902578100562, 4.746331615024246e-05, -0.03078068047761917, 0.0062563675455749035, 0.0034207941498607397, 0.011193562299013138, -0.0031281837727874517, -0.0097256600856781, 0.000323730637319386, -0.0005601631128229201, 0.016877641901373863, 0.011497489176690578, 0.0198910441249609, -0.014704888686537743, 0.0022228695452213287, 0.01714923605322838, -0.001018478418700397, 0.016450852155685425, 0.007119649089872837, -0.008464687503874302, 0.03437606990337372, -0.0005573340458795428, 0.0002821023517753929, -0.017071638256311417, 0.019231459125876427, -0.0036115567199885845, -0.002053123200312257, -0.00757230632007122, -0.023395903408527374, -0.005040660034865141, -0.02313724346458912, -0.008270691148936749, -0.00728777889162302, -0.020214371383190155, -0.04531744122505188, 0.015183411538600922, -0.002795157488435507, 0.007695170119404793, -0.011122430674731731, 0.026189444586634636, -0.010993100702762604, -0.012409270741045475, 0.0014735604636371136, -0.001540650730021298, -0.005593548063188791, 0.0033755283802747726, 0.002452431246638298, -0.009441133588552475, 0.00015459046699106693, -0.013172321021556854, 0.007895632646977901, 0.005687312688678503, -0.06559647619724274, -0.027081826701760292, 0.006977385375648737, -0.026085980236530304, 0.01787348836660385, 0.0430670864880085, -0.024456415325403214, -0.03217745199799538, -0.014135833829641342, -0.015558470040559769, 0.02265872061252594, -0.0006183618679642677, 0.011225895024836063, 0.02265872061252594, 0.0033819950185716152, 0.013120588846504688, 0.002494463697075844, 0.008529352955520153, -0.0023101677652448416, 0.019037462770938873, 0.014756620861589909, 0.004148278851062059, -0.010120118968188763, -0.029202846810221672, -0.020201439037919044, -0.0038669847417622805, 0.014562624506652355, 0.01665778085589409, 0.009757992811501026, -0.005907174665480852, -0.014730754308402538, 0.014329829253256321, -0.005215256009250879, 0.0027919241692870855, -0.006262833718210459, 0.015002348460257053, 0.017446696758270264, -0.006418030709028244, 0.0430670864880085, -0.037480004131793976, -0.020136773586273193, -0.020770493894815445, 0.05437058210372925, -0.011374625377357006, -0.024559879675507545, 0.0013709042686969042, 0.04252389818429947, -0.02485734038054943, 0.006191702093929052, -0.01321758609265089, 0.04048047587275505, -0.03895437344908714, 0.03898024186491966, 0.018597738817334175, 0.023835627362132072, -0.01886933296918869, 0.03711787983775139, 0.04084260016679764, 0.01343744806945324, 0.037557605654001236, 0.02325364015996456, 0.004672067705541849, 0.01571366749703884, -0.028142336755990982, 0.006392164621502161, 0.003546891501173377, -0.003163749584928155, 0.011710884980857372, 0.020628228783607483, 0.0153774069622159, 0.04221350699663162, 0.020356634631752968, 0.01268086489289999, 0.04135992377996445, -0.013398649170994759, -0.004633268341422081, 0.025646256282925606, 0.016851775348186493, -0.03993728756904602, -0.008626350201666355, -0.011937214061617851, -0.019593585282564163, 0.00645036343485117, -0.016606047749519348, 0.009648062288761139, 0.005832809489220381, 0.03230678290128708, 0.021856870502233505, -0.02318897470831871, 0.015972327440977097, -0.01614045724272728, 0.02318897470831871, -0.0231760423630476, -0.004878996405750513, 0.008412955328822136, -0.0026237943675369024, 0.0005290429689921439, -0.06197521835565567, 0.010242982767522335, 0.013424515724182129, 0.0080508291721344, -0.035410717129707336, 0.048317909240722656, 0.04805924743413925, 0.019541852176189423, 0.010501643642783165, 0.020757559686899185, 0.001980374800041318, 0.029513241723179817, -0.007494707591831684, 0.003863751422613859, -0.0031136339530348778, -0.03517792001366615, 0.033082764595746994, -0.019697049632668495, 0.0012739063240587711, -0.023421769961714745, 0.03388461470603943, 0.023421769961714745, -0.03383288159966469, 0.014808353036642075, 0.021261949092149734, 0.010857303626835346, -0.016825910657644272, -0.018054550513625145, -0.027857810258865356, 0.041747916489839554, -0.006705791223794222, -0.00632749916985631, 0.01514461264014244, 0.017640693113207817, -0.012189407832920551, 0.0032187150791287422, 0.0407908670604229, -0.00805729627609253, 0.015998193994164467, -0.01265499833971262, -0.0004015310842078179, -0.033237963914871216, 0.020731693133711815, -0.023098444566130638, -0.03807492554187775, -0.007701636757701635, 0.009014341980218887, 0.0034013944678008556, -0.01879173517227173, 0.019697049632668495, -0.0016416901489719748, 0.03998902067542076, -0.007966764271259308, -0.006275766994804144, -0.03654882684350014, -0.005053592845797539, 0.0016360320150852203, -0.029332177713513374, 0.04024767875671387, -0.011820816434919834, 0.004956595133990049, 0.011956613510847092, 0.0023715996649116278, 0.0069838520139455795, -0.019554786384105682, -0.018507206812500954, -0.04151511937379837, 0.006456829607486725, 0.008930277079343796, -0.026693833991885185, 0.0016384569462388754, -0.012144142761826515, -0.0032494310289621353, -0.004057747311890125, 0.008037895895540714, 0.00766930403187871, 0.013139988295733929, -0.03015989437699318, 0.004807864781469107, -0.006350132171064615, 0.013877172954380512, -0.04195484519004822, -0.016476716846227646, -0.02321484126150608, 0.018455475568771362, 0.01156215462833643, 0.01077970489859581, -0.05318073928356171, 0.0019157093483954668, 0.015183411538600922, -0.010702106170356274, 0.0027725244872272015, 0.010482244193553925, 0.01156862173229456, 0.013579712249338627, 0.005587081424891949, -0.003812019247561693, -0.020149705931544304, -0.025646256282925606, 0.009279469959437847, -0.007197247352451086, -0.002898621838539839, -0.023887360468506813, 0.014394494704902172, -0.031039342284202576, -0.019580651074647903, 0.01182728260755539, -0.003921950235962868, -0.04211004078388214, 0.030082296580076218, 0.00916307233273983, -0.0023570500779896975, 0.019774647429585457, 0.005751978140324354, 0.016347385942935944, -0.016412051394581795, -0.019709981977939606, 0.02642223984003067, 0.026797298341989517, 0.01826147921383381, 0.010081320069730282, -0.022361259907484055, -0.00831595715135336, 0.03189292550086975, -0.0156619343906641, 0.0005448051379062235, -0.014420361258089542, 0.0012957308208569884, -0.020162640139460564, 0.01136815920472145, 0.002753125037997961, 0.012486868537962437, 0.015170478262007236, -0.014135833829641342, 0.015170478262007236, 0.00674459058791399, -0.008509952574968338, 0.042265236377716064, -0.03241024538874626, -0.024689210578799248, -0.009660995565354824, -0.03502272441983223, -0.021947400644421577, -0.0006915145204402506, -0.017382031306624413, 0.018597738817334175, -0.01893399842083454, -0.009001409634947777, -0.013333983719348907, -0.041877247393131256, 0.04252389818429947, 0.002727258950471878, 0.01892106607556343, -0.014873018488287926, 0.04539503902196884, 0.026771431788802147, 0.0008810646831989288, 0.012124743312597275, 0.02687489613890648, -0.001297347480431199, 0.0018769102171063423, 0.03706614673137665, -0.006996784824877977, 0.009298869408667088, -0.027625015005469322, -0.0038217189721763134, 0.013114121742546558, 0.008522885851562023, 0.000829332391731441, -0.043377481400966644, 0.020201439037919044, 0.014420361258089542, 0.001918942667543888, 0.01505408063530922, -0.031116940081119537, 0.0016142074018716812, 0.017976952716708183, 0.004468372091650963, -0.03305689990520477, -0.014226364903151989, -0.001032219734042883, -0.008865611627697945, -0.015235143713653088, 0.03629016503691673, 0.001507509732618928, 0.0031039342284202576, 0.00216467073187232, -0.010191250592470169, 0.00838062260299921, -0.0008826812845654786, -0.0034207941498607397, -0.008167226798832417, 0.0153774069622159, 0.029280446469783783, -0.023072578012943268, -0.02371923066675663, -0.016399119049310684, 0.026590369641780853, -0.004322874825447798, -0.016890576109290123, -0.03341902419924736, 0.02308551035821438, -0.019515985623002052, 0.015416206791996956, -0.02430121786892414, -0.012861927039921284, 0.03861811384558678, 0.004904862493276596, 0.002606011461466551, -0.002057973062619567, -0.009615729562938213, -0.00022410566452890635, 0.02690076269209385, -0.01987811177968979, -0.010191250592470169, -0.012609732337296009, -0.01608872599899769, 0.0012528900988399982, 0.01885640062391758, -0.00430024228990078, -0.06130269914865494, -0.048783499747514725, 0.0407908670604229, 0.010805570520460606, -0.010029586963355541, 0.0036762221716344357, -0.015067013911902905, -0.0030829180032014847, 0.010107185691595078, 0.0071390485391020775, -0.01985224522650242, 0.015778332948684692, -0.00014600211579818279, -0.02312430925667286, -0.013825439848005772, -0.012687331065535545, -0.00783096719533205, -0.013081789016723633, -0.04787818342447281, 0.006291933357715607, -0.04190311208367348, -0.008238358423113823, -0.008406488224864006, 0.028788989409804344, 0.0027515082620084286, 0.0031702162232249975, -0.010501643642783165, 0.0043422747403383255, -0.0015543920453637838, 0.020731693133711815, -0.010482244193553925, 0.004232343751937151, 0.007339511066675186, 0.029823634773492813, -0.029849501326680183, 0.021184351295232773, -0.0022632854524999857, -0.007559373043477535, -0.007876233197748661, 0.0014970016200095415, 0.00993258971720934, -0.005056825932115316, 0.023887360468506813, 0.0022665185388177633, -0.0008592401281930506, 0.032073985785245895, -0.03556591272354126, 0.02752155065536499, -0.01888226717710495, -0.010152451694011688, 0.020938623696565628, -0.002405548933893442, -0.013476247899234295, -0.007507640868425369, 0.013877172954380512, 0.007255446165800095, 0.002845273120328784, 0.0011583170853555202, 0.0040415809489786625, -0.005444817710667849, 0.00743004260584712, 0.027211155742406845, -0.005299320910125971, 0.010107185691595078, -0.02000744268298149, -0.033082764595746994, 0.006537661422044039, -0.02154647745192051, -0.03491925820708275, 0.023538168519735336, 0.03779039904475212, 0.009415267035365105, -0.009176005609333515, -0.011904881335794926, 0.011982479132711887, 0.0046947007067501545, 0.028995918110013008, -0.009615729562938213, -0.011982479132711887, -0.0008495403453707695, 0.03952343016862869, 0.009874390438199043, 0.010915501974523067, 0.012706730514764786, -0.015817131847143173, 0.036859218031167984, 0.0022632854524999857, 0.05374979227781296, 0.008826812729239464, -0.013159387744963169, -0.00781156774610281, -0.001231065602041781, 0.02969430387020111, 0.04254976660013199, 0.0014161700382828712, 0.011672086082398891, 0.016851775348186493, -0.006537661422044039, 0.012286406010389328, 0.0030231026466935873, -0.01346331462264061, -0.004125645849853754, 0.010792638175189495, -0.018183881416916847, -0.010003721341490746, -0.032591309398412704, -0.004355207551270723, -0.02634464204311371, 0.007339511066675186, 0.0035598245449364185, 0.0166707132011652, 0.01404530182480812, 0.0014097033999860287, 0.029254579916596413, -0.007455908693373203, 0.01457555778324604, 0.0011453840415924788, 0.004326108377426863, -0.0034207941498607397, 0.009680395014584064, -0.001975524704903364, -0.012312272563576698, -0.009984321892261505, 0.004639734979718924, -0.016929375007748604, 0.009324735961854458, 0.007158448453992605, -0.004458672367036343, -0.023072578012943268, -0.023059643805027008, -0.030315089970827103, -0.00527022173628211, -0.017899353057146072, -0.002523563103750348, -0.03807492554187775, 0.008684549480676651, 0.0007044475642032921, -0.010165384970605373, -0.03680748492479324, -0.0043099420145154, -0.0018817600794136524, 0.014873018488287926, 0.007016184739768505, -0.048317909240722656, -0.03546244651079178, -0.005726112052798271, -0.0025300297420471907, 0.0022600521333515644, -0.020757559686899185, 0.024378815665841103, -0.009085474535822868, 0.008943210355937481, -0.015235143713653088, -0.0011332592694088817, 0.001188224763609469, 0.004688234068453312, 0.028142336755990982, -0.012402803637087345, 0.03122040443122387, -0.013055923394858837, -0.012713197618722916, -0.0023780663032084703, -0.008037895895540714, -0.005218489561229944, -0.00343049387447536, -0.0036083234008401632, -0.004588002804666758, -0.006547361146658659, 0.008128427900373936, -0.028840722516179085, 0.002636727411299944, -0.020279036834836006, 0.016334453597664833, -0.020253170281648636, -0.011523355729877949, -0.015442072413861752, -0.012473935261368752, -0.00040375394746661186, 0.01831321232020855, -0.019697049632668495, -0.01663191430270672, 0.026719700545072556, 0.021132618188858032, -0.008671616204082966, 0.0005132808000780642, -0.006599093321710825, -0.05072345957159996, 0.008037895895540714, -0.027262888848781586, -0.005790777038782835, -0.008167226798832417, 0.0009934206027537584, -0.01678711175918579, -0.006117336917668581, 0.014019436202943325, -0.02487027272582054, 0.003763520158827305, -0.0068545215763151646, 0.006573227234184742, 0.022309526801109314, -0.00038253565435297787, 0.0023715996649116278, -0.021818071603775024, 0.0354883149266243, 0.022490590810775757, 0.025542791932821274, 0.00289700529538095, 0.013333983719348907, -0.020279036834836006, 0.004112713038921356, -0.002942271064966917, 0.020796358585357666, -0.032099854201078415, 0.005991239566355944, -0.0018397276289761066, -0.015390340238809586, 0.025995448231697083, 0.005949207115918398, -0.01536447461694479, -0.01162682007998228, -0.017071638256311417, -0.013385715894401073, 0.018765868619084358, -0.01454969123005867, -0.021714607253670692, -0.004545970354229212, -0.01429103035479784, 2.9250943043734878e-05, 0.019283190369606018, -0.013941837474703789, 0.0068545215763151646, 0.008412955328822136, 0.004649434704333544, -0.007397709880024195, -0.006692857947200537, -0.007151981815695763, -0.0007674962398596108, -0.006356598809361458, -0.0009732127073220909, -0.020589429885149002, 0.03010816127061844, 0.00403511431068182, 0.0014970016200095415, -0.01828734576702118, 0.014459160156548023, 0.0059298076666891575, -0.003407861106097698, 0.01734323240816593, -0.007488241419196129, 0.011736751534044743, 0.018649471923708916, 0.016463784500956535, -0.02163700759410858, -0.002780607668682933, 0.013269318267703056, 0.003142733359709382, 0.0027870743069797754, -0.014084101654589176, 0.011969545856118202, -0.007643437944352627, -0.03952343016862869, -0.01773122325539589, 0.006751056760549545, 0.011950146406888962, 0.03985968977212906, 0.029202846810221672, -0.01990397833287716, -0.010456378571689129, -0.00015115512360353023, 0.0002127892366843298, 0.0009279469959437847, -0.018649471923708916, -0.007746902294456959, 0.024947870522737503, 0.0015414590016007423, 0.02432708442211151, -0.01021065004169941, -0.027392219752073288, 0.008458220399916172, -0.010204183869063854, 0.004610635805875063, -0.0019318757113069296, 0.006107637193053961, -0.01939958892762661, 0.03140146657824516, -0.011859615333378315, 0.005425418261438608, 0.015248076990246773, -0.0019625916611403227, -0.013890105299651623, 0.001356354565359652, -0.008969076909124851, -0.018752936273813248, -0.005855442490428686, 0.029358044266700745, 0.0019577417988330126, 0.017407897859811783, -0.024546945467591286, 0.007507640868425369, -0.0029358044266700745, 0.013269318267703056, 0.001750812865793705, -0.018662404268980026, 0.018183881416916847, 0.004225877113640308, 6.491789827123284e-05, 0.015493804588913918, -0.011309959925711155, 0.026616236194968224, 0.0016408818773925304, 0.024650411680340767, 0.008044362999498844, 0.016994040459394455, -0.011264694854617119, 0.028970053419470787, -0.01350211352109909, 0.0016513899900019169, 0.003521025413647294, 0.023589899763464928, 0.012195874936878681, 0.012596799992024899, 0.005140890832990408, -0.015817131847143173, -0.0068803876638412476, 0.005076225847005844, -0.00024633435532450676, -0.0023376503959298134, -0.001944808755069971, -0.004031881224364042, 0.0042646764777600765, -0.014523825608193874, 0.01670951209962368, -0.0025364961475133896, -0.012124743312597275, -0.01292012631893158, -0.0052281892858445644, -0.0020967721939086914, -0.0012165158987045288, -0.015920596197247505, -0.021701673045754433, 0.015209277160465717, -0.010294714942574501, 0.027676746249198914, -0.019296124577522278, -0.03442780300974846, 0.0016497733304277062, -0.0067381239496171474, 0.0070097181014716625, 0.02255525439977646, -0.013825439848005772, -0.016463784500956535, 0.027392219752073288, 0.014937683008611202, -0.0003849605855066329, 0.015778332948684692, -0.013269318267703056, -0.01103836577385664, 0.019179726019501686, 0.03142733499407768, -0.0033916947431862354, -0.0067122578620910645, 0.0005116641405038536, -0.0198910441249609, 0.001679681008681655, 0.014368629083037376, 0.012454535812139511, 0.011820816434919834, 0.0032057820353657007, 0.02480560727417469, -0.02754741534590721, -0.0050438931211829185, -0.009454065933823586, 0.008244825527071953, 0.021132618188858032, 0.013670243322849274, 0.020796358585357666, 0.004332575015723705, 0.013030056841671467, -0.036445360630750656, 0.0025736787356436253, -0.00809609517455101, 0.006692857947200537, -0.004911329131573439, -0.011426357552409172, -0.013566778972744942, 0.012745529413223267, 0.02542639523744583, -0.016593115404248238, -0.0008972309879027307, -0.01778295636177063, -0.016606047749519348, 0.01607579179108143, 0.01672244630753994, -0.004727032966911793, -0.01885640062391758, -0.013101189397275448, 0.00216467073187232, 0.012907193042337894, 0.02432708442211151, 0.003947816323488951, -0.012667931616306305, 0.003737654071301222, -0.0453433059155941, -0.038049060851335526, -0.00236836657859385, 0.0009012725786305964, 0.010715039446949959, 0.00889794435352087, -0.006017105653882027, -0.026667967438697815, 0.021158484742045403, -0.002568828873336315, 0.011672086082398891, 0.007927965372800827, -0.015299809165298939, 0.021132618188858032, -0.036988548934459686, 0.021973267197608948, -0.04893869534134865, 0.02256818860769272, -0.01895986497402191, 0.006101170554757118, 0.0183778777718544, 0.014924750663340092, -0.0030570519156754017, 0.034324340522289276, -0.027107691392302513, 0.0010855686850845814, -0.002487997291609645, -0.039006106555461884, -0.027857810258865356, 0.011128897778689861, 0.026163578033447266, -0.0227363184094429, 0.017511362209916115, -0.012428670190274715, 0.0016368402866646647, 0.012855460867285728, -0.014885950833559036, 0.008826812729239464, -0.013631444424390793, -0.030496153980493546, -0.002568828873336315, -0.009803258813917637, -0.0322033166885376, 0.010850836522877216, -0.027806077152490616, -0.014200499281287193, 0.006191702093929052, 0.024158954620361328, -0.013346916995942593, 0.035824574530124664, 0.012881327420473099, 0.012558000162243843, 0.05235302448272705, -0.011652686633169651, 0.04480011761188507, -0.02904765121638775, -0.013683176599442959, -0.008328890427947044, -0.014640223234891891, 0.014756620861589909, 0.0038734511472284794, -0.016890576109290123, -4.61750641989056e-05, -0.03714374452829361, 0.009395867586135864, -0.020822225138545036, 0.020304903388023376, 0.05020613595843315, -0.016580181196331978, -0.01939958892762661, 0.046584878116846085, -0.0018558939918875694, 0.003957516048103571, 0.020692894235253334, -0.012273472733795643, 0.01185314916074276, -0.022400058805942535, 0.03923889994621277, 0.010546909645199776, -0.016877641901373863, -0.00805729627609253, 0.015739532187581062, 0.0021824536379426718, 0.0005359136266633868, 0.017989885061979294, -0.023589899763464928, -0.021391279995441437, 0.0007889166008681059, -0.014497959055006504, 0.0014808352570980787, -0.010669773444533348, -0.015778332948684692, -0.002738575218245387, -0.014097034931182861, 0.009460533037781715, -0.011879014782607555, -0.007151981815695763, -0.022425925359129906, 0.02161114104092121, -0.023447636514902115, -0.022762184962630272, 0.014084101654589176, 0.012228207662701607, 0.003407861106097698, 0.030496153980493546, -0.009913190267980099, -0.013282251544296741, 0.01348918117582798, 0.009195405058562756, 0.010242982767522335, -0.020085040479898453, 0.022438857704401016, 0.0026722934562712908, -0.02039543353021145, -0.01268086489289999, 0.0010144368279725313, 0.03603150323033333, -0.001893076580017805, -0.008561684750020504, -0.026719700545072556, -0.03484166041016579, 0.00029240839648991823, 0.011904881335794926, 0.0009530048118904233, 0.01051457691937685, 0.01787348836660385, -0.009370001032948494, 0.008910877630114555, -0.003854051697999239, 0.022775117307901382, 0.0012124743079766631, 0.0017475796630606055, -0.004697933793067932, -0.0024233320727944374, 0.025452259927988052, -0.016567248851060867, -0.00092875532573089, -0.0015754082705825567, 0.008257757872343063, -0.014433293603360653, 0.0006058330181986094, -0.022218994796276093, -0.018132148310542107, -0.0015131679829210043, -0.011788483709096909, 0.0040415809489786625, -0.0013038140023127198, -0.0033140964806079865, 0.002620561048388481, 0.015015281736850739, -0.01322405319660902, -0.00038314188714139163, -0.004355207551270723, 0.009305336512625217, 0.003598623676225543, -0.015778332948684692, -0.0036374228075146675, -0.001070210593752563, -0.004326108377426863, 0.016437917947769165, -0.008218958973884583, 0.006395397707819939, -0.011516889557242393, 0.048861097544431686, 0.005648513790220022, 0.023318305611610413, -0.012570933438837528, -0.0052281892858445644, -0.023538168519735336, 0.001330488477833569, 0.027650879696011543, 0.016036992892622948, 0.009066074155271053, -0.012577399611473083, 0.013107655569911003, 0.005920107942074537, -0.00471086660400033, -0.03137560188770294, -0.0077404361218214035, 0.017485495656728745, 0.002206703182309866, 0.011180629953742027, 0.010947834700345993, 0.015778332948684692, -0.006725190673023462, -0.019671183079481125, -0.008005564101040363, -0.008826812729239464, 0.00728777889162302, -0.0008143785526044667, 0.014614356681704521, 0.01185314916074276, 0.02215433120727539, 0.006654059048742056, 0.0020094739738851786, 0.000987762352451682, -0.008742747828364372, 0.010915501974523067, 0.0006684774998575449, 0.0166707132011652, 0.017601894214749336, -0.0018364944262430072, 0.003178299404680729, 0.012758462689816952, -0.004756132606416941, 0.023421769961714745, 0.01674831099808216, -0.01127762719988823, 0.009751526638865471, 0.010443445295095444, -0.001873676897957921, 0.013941837474703789, 0.014924750663340092, -0.013734908774495125, -0.02959083952009678, 0.01937372237443924, 0.00840002205222845, 0.004481304902583361, -0.023602832108736038, 0.008173692971467972, 0.004730266518890858, -0.00863928347826004, -0.009602796286344528, -0.013398649170994759, 0.010566309094429016, -0.004403706640005112, -0.03510032221674919, -0.018106283619999886, -0.008212492801249027, 0.008768614381551743, -0.004536270629614592, 0.02915111556649208, -0.01784762181341648, -0.011937214061617851, -0.0035598245449364185, 0.00222610286436975, -0.015985261648893356, -0.0017136303940787911, 0.019011596217751503, 0.0013620128156617284, 0.024094289168715477, 0.035255517810583115, 0.019296124577522278, 0.011859615333378315, -0.005490083713084459, -0.010100719518959522, -0.020253170281648636, 0.02417188696563244, -0.010359380394220352, -0.001410511787980795, -0.017019905149936676, 0.027418086305260658, -0.030418554320931435, -0.01425223145633936, -0.007404176518321037, 0.009027275256812572, 0.02108088694512844, 0.013269318267703056, 0.005839276127517223, -0.0033852283377200365, -0.0183778777718544, 0.0364970937371254, -0.015894729644060135, 0.0009513881523162127, 0.0023780663032084703, -0.02316310815513134, -0.02255525439977646, 0.013030056841671467, 0.00013387737271841615, 0.011387558653950691, 0.01828734576702118, -0.007345977704972029, 0.003475759644061327, -0.008005564101040363, -0.013152921572327614, 0.0034886926878243685, 0.006641125772148371, -0.021908601745963097, -0.00040132898720912635, -0.002006240887567401, 0.013967704027891159, -0.0058748419396579266, -0.020679961889982224, -0.005729345139116049, -0.0033302628435194492, -0.010508110746741295, -0.013424515724182129, 0.016295654699206352, -0.0006025996990501881, -0.027055960148572922, -0.0037796865217387676, 0.012286406010389328, -0.01162682007998228, -0.01075383834540844, -0.009176005609333515, 0.003951049409806728, -0.020615296438336372, 0.010029586963355541, 0.01343744806945324, -0.001760512706823647, -0.007326578255742788, 0.019192660227417946, -0.01784762181341648, 0.018158014863729477, 0.016515515744686127, 0.007604638580232859, 0.008412955328822136, -0.00431964173913002, 0.0026933096814900637, -0.012564467266201973, -0.024585746228694916, 0.0002804857213050127, -0.016554316505789757, 0.009719193913042545, -0.03771280124783516, -0.0027822244446724653, -0.006841588299721479, -0.012797262519598007, -0.0014436527853831649, -0.018675336614251137, 0.02039543353021145, -0.02633170783519745, 0.013540913350880146, 0.02847859635949135, -0.015933528542518616, 0.00039688326069153845, 0.009454065933823586, -0.00403511431068182, -0.005897474940866232, 0.0161016583442688, 0.008535819128155708, 0.01663191430270672, -0.003692388301715255, -0.015351541340351105, -0.0047205667942762375, 0.029487375169992447, -0.024016691371798515, 0.0012326822616159916, -0.006382464896887541, 0.010327047668397427, 0.006925653200596571, -0.022361259907484055, 0.013618511147797108, 0.0007210180629044771, 0.004229110199958086, 0.023046711459755898, -0.008477619849145412, -0.009977854788303375, -0.001868827035650611, 0.02648690529167652, -0.020667027682065964, -0.021391279995441437, -0.00035242584999650717, -0.01726563461124897, 0.01215060893446207, -0.0005832001334056258, -0.0025963117368519306, -0.00999725516885519, -0.019270258024334908, 0.005428651813417673, 0.017123369500041008, 0.02530999667942524, -0.012564467266201973, -0.017588960006833076, -0.009357068687677383, 0.0162309892475605, 0.001663514762185514, -0.007902098819613457, -0.025077201426029205, -0.0168000441044569, -0.010934901423752308, -0.03569524362683296, 0.00037586703547276556, -0.02594371698796749, -0.026202378794550896, -0.002390999346971512, 2.3302240151679143e-05, -0.006013872567564249, 0.003407861106097698, 0.006647592410445213, 0.002918021520599723, 0.008542285300791264, -0.006990318652242422, 0.006563527509570122, -0.003737654071301222, -0.0024136321153491735, -0.0022649019956588745, 0.0069838520139455795, -0.003592157270759344, 0.016450852155685425, 0.022865649312734604, 0.013566778972744942, -0.011613886803388596, 0.009486398659646511, 0.006641125772148371, 0.008270691148936749, 0.012803728692233562, -0.01895986497402191, 0.02966843731701374, 0.014368629083037376, -0.0025817619170993567, 0.022231929004192352, -0.0035824573133140802, -0.012642065063118935, -0.00391871714964509, 0.012454535812139511, -0.01996864378452301, -0.002620561048388481, -0.02594371698796749, 0.004073913674801588, 0.008387088775634766, 0.012861927039921284, -1.688622978690546e-05, -0.0012747145956382155, 0.003407861106097698, -0.010327047668397427, -0.001986841205507517, 0.03716961294412613, -0.012331672012805939, 0.0029374209698289633, 0.001960975117981434, -0.004406939726322889, -0.032125718891620636, -0.0056549799628555775, 0.00911780633032322, -0.01611459255218506, 0.004830497782677412, 0.008102561347186565, 0.02155940979719162, -0.04368787258863449, 0.00914367288351059, 0.0021873037330806255, -0.013159387744963169, 0.008167226798832417, -0.02154647745192051, 0.01568780094385147, 0.02092568948864937, -0.010204183869063854, -0.01729149930179119, -0.0016909975092858076, 0.0025526625104248524, 0.017537228763103485, 0.011465157382190228, 0.011491023004055023, 0.003281763754785061, -0.002866289345547557, -0.02201206609606743, 0.004642968066036701, -0.02320190891623497, 0.026124779134988785, 0.01720096915960312, 0.008904411457479, 0.022477656602859497, 0.0126937972381711, -0.011458690278232098, 0.017071638256311417, -0.0037441207095980644, -0.01774415746331215, 0.012448069639503956, -0.015855930745601654, -0.011115964502096176, 0.009130739606916904, -0.02324070781469345, -0.011006033048033714, -0.009298869408667088, -0.019050396978855133, -0.008199559524655342, -0.007197247352451086, 0.005192623473703861, 0.014433293603360653, 0.007772768381983042, -0.020641162991523743, 0.0035856906324625015, 0.0015939995646476746, -0.01720096915960312, 0.0004015310842078179, -0.00887854490429163, -0.018196813762187958, 0.00015064992476254702, 0.020330769941210747, 0.020227303728461266, -0.029487375169992447, 0.01668364554643631, 0.007895632646977901, 0.010113651864230633, 0.01290072686970234, 0.010643907822668552, 0.0002509821788407862, -0.0031491999980062246, 0.011497489176690578, -0.010967234149575233, 0.0062272679060697556, -0.03072894923388958, 0.017110437154769897, 0.01831321232020855, -0.011439290829002857, -0.01001665461808443, -0.009738593362271786, 0.00889794435352087, -0.012357537634670734, -0.022904448211193085, -0.02201206609606743, -0.010844370350241661, -0.021184351295232773, 0.004348741378635168, -0.006996784824877977, -0.016463784500956535, 0.005958906840533018, 0.007462375331670046, 0.008257757872343063, -0.011271161027252674, 0.014898884110152721, 0.0009190555429086089, 0.0038152525667101145, 0.002253585495054722, 0.01937372237443924, 0.016929375007748604, -0.007300711702555418, -0.0024540480226278305, 0.01617925614118576, 0.010656841099262238, 0.009570463560521603, -0.006647592410445213, 0.007805101107805967, 0.029228713363409042, -0.00634689861908555, -0.0025073967408388853, 0.017407897859811783, 0.001020903349854052, -0.00888501200824976, 0.005942740477621555, -0.032073985785245895, 0.006589393597096205, 0.0009497715509496629, -0.017705358564853668, -0.02149474434554577, -0.0056032477878034115, -0.01263559889048338, 0.00992612261325121, -0.0006466529448516667, 0.009719193913042545, -0.019321991130709648, -0.010546909645199776, 0.03931650146842003, -0.0002109705237671733, -0.015067013911902905, -0.014355695806443691, -0.002253585495054722, 0.0013765625189989805, 0.002318250946700573, 0.009091940708458424, 0.008975543081760406, 0.005011560395359993, -0.006647592410445213, 0.00471086660400033, 0.004516870714724064, -0.008199559524655342, 0.005755211226642132, 0.010061919689178467, -0.010288248769938946, 0.023344172164797783, 0.02966843731701374, 0.013068856671452522, -0.009441133588552475, -0.01985224522650242, 0.010359380394220352, 0.019321991130709648, -0.007662837393581867, -0.017136303707957268, 0.017123369500041008, 0.021210217848420143, 0.012338138185441494, -0.003241347847506404, 0.004403706640005112, 0.00863928347826004, -0.029771901667118073, -0.020654095336794853, 0.021210217848420143, 0.0017702124314382672, 0.011445757001638412, -0.014368629083037376, 0.008328890427947044, -0.009583396837115288, 0.02591785043478012, -0.0129783246666193, 0.013631444424390793, 0.0039639826864004135, 0.0023829161655157804, -0.021999133750796318, 0.04617102071642876, 0.005503016524016857, 0.003546891501173377, 0.008432354778051376, -0.01779588870704174, 0.005195856560021639, -0.012208808213472366, -0.007675770670175552, -0.035410717129707336, -0.019296124577522278, 0.02966843731701374, -0.015273942612111568, -0.006511795334517956, 0.010087786242365837, -0.01839081011712551, -0.012331672012805939, -0.014989415183663368, 0.016541382297873497, 0.012726129963994026, 0.007533506955951452, -0.0025009303353726864, 0.030910011380910873, -0.02099035494029522, -0.016386186704039574, -0.027262888848781586, 0.02578851953148842, -0.013709043152630329, 0.008328890427947044, -0.011743217706680298, -0.009803258813917637, 0.008393555879592896, -0.0067381239496171474, 0.008186626248061657, -0.010592175647616386, -0.0035145587753504515, -0.01563606783747673, 0.006582926958799362, -0.00671872403472662, -0.024042557924985886, 0.00863928347826004, 0.010339980944991112, 0.011782016605138779, -0.01933492347598076, 0.005169990472495556, 0.005027726758271456, 0.005858676042407751, 0.02912524901330471, 5.299523036228493e-05, -0.0015673250891268253, 0.008755681104958057, -0.011103031225502491, -0.005056825932115316, -0.007656371220946312, 0.0018397276289761066, 0.005157057195901871, -0.0015600502956658602, -0.004613868892192841, 0.009363534860312939, 0.03328969329595566, -0.02476680837571621, 0.022412991151213646, 0.01320465374737978, 0.0011001183884218335, 0.0027919241692870855, 0.001016053487546742, 0.027081826701760292, 0.009757992811501026, 0.010650373995304108, -0.004206477664411068, 0.009059607982635498, -0.00912427343428135, 0.02541346102952957, 0.007617571856826544, -0.020046241581439972, 0.010333513841032982, 0.014097034931182861, 0.017446696758270264, -0.009783859364688396, 0.028323398903012276, 0.024055490270256996, -0.007630505133420229, 0.018610673025250435, 0.02157234214246273, -0.005515949800610542, -0.00920833833515644, 0.00859401747584343, -0.021934468299150467, 0.01156862173229456, 0.022839782759547234, 0.007274845615029335, -0.0030683681834489107, 0.005984772928059101, -0.008102561347186565, 0.01189194805920124, -0.007908565923571587, -0.0051732235588133335, 0.008109028451144695, 0.018520141020417213, -0.0086198840290308, -0.0214688777923584, 0.009395867586135864, -0.012228207662701607, -0.005380152724683285, -0.022878581658005714, -0.018610673025250435, 0.010436979122459888, -0.0016077408799901605, -0.017705358564853668, -0.00455890316516161, -0.005913641303777695, 0.007358910515904427, 0.012402803637087345, 0.033651821315288544, -0.012887793593108654, 0.02164994180202484, 0.007585239131003618, 0.005237889010459185, -0.022257795557379723, -0.015312742441892624, -0.001282797777093947, 0.0010524276876822114, 0.006030038930475712, -0.00029200423159636557, -0.002636727411299944, 0.0027967740315943956, 0.0012916892301291227, 0.005920107942074537, 0.015946462750434875, 0.01933492347598076, -0.030340956524014473, -0.006964452564716339, 0.01457555778324604, 0.00111062650103122, 0.013877172954380512, -0.0110189663246274, -0.010909035801887512, -0.012066544033586979, -0.002539729466661811, -0.010934901423752308, -0.0005371260922402143, 0.008723348379135132, -0.012331672012805939, 0.007378310430794954, 0.016476716846227646, -0.0044974712654948235, -0.015480872243642807, -0.01052104402333498, -0.009964922443032265, -0.008917344734072685, -0.0004243660077918321, -0.02201206609606743, -0.00702265091240406, 0.011536289006471634, -0.009040208533406258, -0.0029293380212038755, -0.008367689326405525, -0.01946425437927246, 0.009648062288761139, 0.0006021955632604659, 0.01892106607556343, 0.005635580513626337, 0.003960749600082636, 0.02212846465408802, -0.02205086499452591, 0.010242982767522335, -0.03272064030170441, -0.009499331936240196, 0.00944759976118803, 0.006802788935601711, 0.002795157488435507, 0.009505798108875751, 0.0033755283802747726, -0.0313238687813282, -0.012525667436420918, -0.006776922848075628, 0.022826848551630974, -0.0021921535953879356, 0.0017621293663978577, -0.001847810810431838, -0.006004172842949629, -0.010896102525293827, -0.01429103035479784, -0.004536270629614592, -0.02860792726278305, 0.0038411186542361975, 0.0035339584574103355, 0.012480402365326881, -0.004426339641213417, 0.017369098961353302, 0.0006717107607983053, 0.0003702088142745197, -0.009984321892261505, -0.008522885851562023, -0.021236082538962364, -0.005169990472495556, 0.02373216301202774, 0.0017637459095567465, 0.027909541502594948, -0.022878581658005714, -0.003588923951610923, 0.0023780663032084703, 0.004542737267911434, 0.027055960148572922, -0.006925653200596571, -0.02635757438838482, 0.0016861476469784975, -0.016968173906207085, -0.025749720633029938, 0.011943680234253407, -0.007507640868425369, -0.02798713929951191, -0.010462844744324684, -0.006285466719418764, -0.035798706114292145, -0.01769242435693741, -0.01027531549334526, -0.0129783246666193, -0.00811549462378025, -0.0019011596450582147, -0.009673927910625935, 0.020369568839669228, -0.02324070781469345, 0.02858206070959568, 0.006030038930475712, -0.005027726758271456, 0.018985731527209282, -0.020343702286481857, 0.001292497618123889, 0.0018882266012951732, -0.01676124520599842, 0.014135833829641342, -0.01886933296918869, 0.04461905360221863, -0.009240671060979366, -0.01617925614118576, -0.019748780876398087, -0.02974603697657585, -0.005839276127517223, -0.011025432497262955, -0.01990397833287716, -0.0012771396432071924, -0.005609714426100254, -0.0009481548913754523, 0.016825910657644272, 0.012473935261368752, -0.0062822336331009865, -0.030470287427306175, 0.0014234448317438364, 0.0031766826286911964, 0.01616632379591465, 0.005402785260230303, 0.0014630523510277271, 0.011872548609972, -0.01486008521169424, 0.001169633585959673, -0.014381561428308487, 0.005105325020849705, 0.015002348460257053, -1.9500628695823252e-05, 0.00994552206248045, 0.023305373266339302, -0.02902178466320038, -0.025012535974383354, -0.013799574226140976, -0.011193562299013138, -0.003588923951610923, -0.030004696920514107, -0.021365413442254066, 0.016463784500956535, -0.01188548095524311, -0.010708573274314404, -0.01787348836660385, -0.0029115548823028803, -0.006149669643491507, -0.015584336593747139, -0.0011534672230482101, -0.009796792641282082, 0.008555218577384949, -0.010527510195970535, -0.018145082518458366, 0.022374192252755165, 0.01567486859858036, 0.004552436992526054, -0.023926159366965294, 0.02700422704219818, 0.009285936132073402, 0.012454535812139511, 0.014704888686537743, -0.00860048457980156, -0.019632384181022644, 0.008852679282426834, -0.000552888261154294, 0.005512716248631477, 0.003456359962001443, -0.001679681008681655, -0.0022244860883802176, -0.01324345264583826, -0.005464217625558376, -0.006835121661424637, -0.01106423232704401, -0.010863769799470901, 0.007798634469509125, -0.000308372633298859, 0.005512716248631477, 0.02749568410217762, -0.008031429722905159, 0.002348966896533966, 0.029875366017222404, -0.0014299113536253572, -0.0068803876638412476, 0.01128409430384636, 0.003537191776558757, -0.0040415809489786625, 0.009874390438199043, -0.006240201182663441, -0.039549294859170914, -0.017550161108374596, -0.0024993137922137976, -0.005409251898527145, -0.018119215965270996, 0.019567718729376793, 0.006324266083538532, -0.0153774069622159, 0.023020844906568527, 0.012318738736212254, 0.0033464289736002684, -0.005810176953673363, 0.001320788636803627, -0.013308118097484112, -0.009512265212833881, 0.01108363177627325, -0.009137206710875034, 0.005638813599944115, 0.00592657458037138, 0.012622665613889694, 0.006369531620293856, -0.011297027580440044, -0.007119649089872837, -0.006595860235393047, 0.0193866565823555, 0.0006256367196328938, -0.008419421501457691, -0.001776678953319788, 0.019102128222584724, 0.009531664662063122, -0.017407897859811783, -0.0011470007011666894, -0.024482281878590584, -0.015467938967049122, -0.013605577871203423, 0.008406488224864006, -0.015972327440977097, -0.008186626248061657, 0.04239456728100777, 0.013424515724182129, -0.009337668307125568, -0.022218994796276093, -0.004381073638796806, -0.00946699921041727, -0.005237889010459185, 0.021882737055420876, 0.023421769961714745, -0.005758444778621197, 0.021882737055420876, 0.035850439220666885, 0.003398161381483078, -0.019658250734210014, 0.012486868537962437, 0.018507206812500954, -0.00208383915014565, 0.005848975852131844, -0.020266104489564896, -0.0005569298518821597, 0.0019124761456623673, 0.008173692971467972, -0.012286406010389328, -0.0014873017789795995, -0.008464687503874302, -0.03295343369245529, 0.033755283802747726, -0.010133052244782448, 0.02419775351881981, 0.002036956837400794, -0.017524294555187225, -0.007462375331670046, -0.01486008521169424, 0.008826812729239464, 0.017601894214749336, 0.00044457390322349966, -0.007177847903221846, 0.010171851143240929, 0.00499539403244853, -0.019528919830918312, 0.016011128202080727, -0.015506737865507603, 0.0030570519156754017, 0.022930314764380455, -0.004904862493276596, -0.02801300585269928, 0.0037505871150642633, 0.0030053197406232357, -0.01507994718849659, -0.002056356519460678, -0.003183149266988039, -0.013120588846504688, 0.007785701658576727, -0.005819876678287983, 0.01832614466547966, -0.015881797298789024, 0.0005173223908059299, 0.004911329131573439, 0.006026805378496647, 0.03028922528028488, 0.015209277160465717, 0.008180160075426102, -0.02149474434554577, 0.013042990118265152, 0.013081789016723633, 0.003947816323488951, -0.000898039317689836, -0.012583866715431213, -0.004752899054437876, -0.012732597067952156, -0.017886420711874962, 0.01833907701075077, 0.01673537865281105, -0.003737654071301222, 0.0003027144121006131, 0.019671183079481125, 0.0016497733304277062, -0.018597738817334175, -0.002580145373940468, -0.003317329566925764, -0.005732578691095114, 0.029306313022971153, 0.00700325146317482, 0.018145082518458366, -0.011115964502096176, 0.024469347670674324, 0.001944808755069971, 0.0029083217959851027, 0.0034434269182384014, -0.0011752917198464274, -0.028814855962991714, -0.014614356681704521, 0.003327029524371028, 0.008044362999498844, 0.035410717129707336, 0.0001804565981728956, 0.003666522214189172, 0.00726837944239378, 0.00807022862136364, 0.0023877660278230906, 0.004216177389025688, -0.01784762181341648, 0.0026949262246489525, -0.012305805459618568, 0.01132936030626297, -0.011478089727461338, -0.006321032531559467, 0.011988946236670017, 0.006275766994804144, 0.01075383834540844, 0.01298479177057743, 0.012596799992024899, 0.000567033828701824, 0.018119215965270996, -0.015972327440977097, -0.005836043041199446, -0.014161699451506138, 0.021766338497400284, 0.015092880465090275, 0.0005007518921047449, -0.003640656126663089, 0.015817131847143173, -0.0018397276289761066, -0.01134229265153408, -0.001228640670888126, -0.016903508454561234, 0.008044362999498844, -0.028142336755990982, -0.016269788146018982, -0.01378664094954729, 0.025685055181384087, -0.006010639481246471, -0.007585239131003618, 0.004465138539671898, 0.002780607668682933, 0.002728875493630767, 0.00835475604981184, 0.016334453597664833, -0.013030056841671467, -0.0010289865313097835, 0.0036018569953739643, -0.01027531549334526, 0.009829125367105007, -0.012790795415639877, -0.013333983719348907, 0.027055960148572922, 0.004950128495693207, -0.027211155742406845, -0.01937372237443924, -0.0057746111415326595, -0.020240237936377525, 0.008910877630114555, -0.011982479132711887, 0.026111846789717674, -0.01777002401649952, -0.010870235972106457, -0.000382737722247839, -0.012260540388524532, -0.004817564506083727, -0.0033205628860741854, 0.019257325679063797, 0.019218526780605316, -0.0024782975669950247, 0.00738477660343051, -0.035281386226415634, -0.02422362007200718, -0.005338120274245739, -0.01186608150601387, 0.0029261047020554543, -0.0015422672731801867, 0.0015026598703116179, 0.00942820031195879, 0.01134229265153408, 0.01886933296918869, 0.008257757872343063, 0.0018187114037573338, -2.320120074728038e-05, 0.0053187208250164986, -0.014666088856756687, -0.0015341840917244554, -0.011381092481315136, -0.00966746173799038, -0.02154647745192051, 0.013385715894401073, -0.020201439037919044, -6.703972758259624e-05, -0.02422362007200718, 0.009376468136906624, -0.001842960948124528, -0.006731657311320305, 0.023434704169631004, 0.007960298098623753, 0.01217647548764944, 0.021701673045754433, 0.01717510260641575, 0.03489339351654053, 0.009822658263146877, -0.032048121094703674, -0.010941368527710438, -0.027159424498677254, 0.012797262519598007, -0.011704418808221817, 0.0024103987962007523, -0.0010128201683983207, 0.0025300297420471907, 0.014381561428308487, 0.015558470040559769, -0.011394024826586246, 0.001594807836227119, 0.006990318652242422, -0.011549222283065319, -0.008503486402332783, -0.006123803555965424, -0.0013595878845080733, 0.0033496622927486897, 0.0028533560689538717, -0.010727972723543644, 0.016838843002915382, 0.0069062537513673306, -0.015209277160465717, 0.0013418048620224, 0.022969113662838936, 0.022348325699567795, -0.015842998400330544, -0.00604297174140811, 0.015752466395497322, -0.001358779496513307, -0.0014145533787086606, 0.002538112923502922, -0.02095155604183674, -0.016399119049310684, 0.007695170119404793, -0.010960767976939678, -0.013088256120681763, 0.0008705565705895424, -6.032059536664747e-05, 0.012098876759409904, 0.017601894214749336, 0.0006244242540560663, 0.006224034819751978, 0.026098912581801414, 0.005435117986053228, 0.03916130214929581, -0.0023457335773855448, 0.001453352509997785, -0.006919186562299728, -0.013877172954380512, 0.0006979810423217714, -0.010999566875398159, -0.00999078806489706, -0.00014640626613982022, 7.860874757170677e-05, -0.0009101640316657722, 0.007798634469509125, -0.010171851143240929, -0.0035565912257879972, -0.0004845855582971126, -0.034220874309539795, 0.0016530066495761275, 0.017912287265062332, 0.01991691067814827, 0.015881797298789024, -0.001831644563935697, 0.009156606160104275, -0.0046656010672450066, -0.008438820950686932, -0.014084101654589176, 0.01270026434212923, -0.01773122325539589, 0.01930905692279339, -0.010087786242365837, -0.013333983719348907, 9.593702998245135e-05, -0.01664484664797783, 0.017394965514540672, 0.010508110746741295, 0.016011128202080727, -0.0010176701471209526, 0.012202341109514236, 0.022943247109651566, 0.023486435413360596, 0.006463296245783567, -0.0016909975092858076, 0.010042520239949226, -0.006912719924002886, 0.005761677864938974, 0.010333513841032982, -0.02746981754899025, -0.006673458497971296, 0.013088256120681763, 0.02541346102952957, -0.0005852209287695587, 0.0215982086956501, -0.00141778658144176, -0.003310863161459565, -0.027159424498677254, -0.009809724986553192, 0.0004991352325305343, 0.004439272452145815, -0.002324717352166772, -0.012208808213472366, 0.014653156511485577, -0.0018558939918875694, -0.014847151935100555, -6.309918535407633e-05, -0.0017023138934746385, -0.004568603355437517, 0.00032494310289621353, -0.010411112569272518, 0.004552436992526054, 0.010960767976939678, 0.010081320069730282, 0.012144142761826515, -0.005570915061980486, 0.028271667659282684, 0.004775532055646181, -0.005289621185511351, -0.0011356843169778585, -0.005920107942074537, -0.0051764571107923985, -0.006628192961215973, -0.023848561570048332, 0.01235107146203518, 0.0015503504546359181, -0.005105325020849705, 0.0031087840907275677, 0.01343744806945324, -0.0014541608979925513, 0.003663289127871394, -0.0041450452990829945, -0.013023590669035912, 0.013644377700984478, 0.0043681408278644085, -0.017498429864645004, 0.0038734511472284794, 0.008290090598165989, -0.0053187208250164986, -0.027676746249198914, -0.019321991130709648, 0.0161016583442688, -0.0021064719185233116, 0.0028533560689538717, 0.0029164047446101904, 0.013230519369244576, 0.0012108576484024525, 0.001474368735216558, 0.011730284430086613, -0.001960975117981434, -0.0018187114037573338, 0.014937683008611202, 0.012241140939295292, 0.0035080923698842525, 0.009150139056146145, -0.0029875366017222404, -0.005522416438907385, 0.009518731385469437, 0.009939055889844894, 0.008820346556603909, -0.011697951704263687, 0.04141165688633919, 0.007236046716570854, 0.02039543353021145, 0.00022168071882333606, 0.008438820950686932, -0.00041911195148713887, -0.0025461961049586535, -0.011950146406888962, 0.002861439250409603, -0.009557530283927917, 0.00838062260299921, -0.012558000162243843, -0.00619493518024683, 0.005325186997652054, -0.016618981957435608, 0.006421263795346022, 0.028323398903012276, 0.026202378794550896, -0.004914562683552504, 0.0007877041352912784, 0.007966764271259308, 0.021753406152129173, 0.004749665968120098, 0.013812507502734661, -0.014303963631391525, -0.004917795769870281, -0.006679925136268139, 0.002748275175690651, -0.005722878500819206, 0.004465138539671898, 0.006298399996012449, -0.014885950833559036, -0.009654528461396694, -0.015972327440977097, 0.0004566986463032663, 0.0002329971466679126, -0.0034434269182384014, 0.013165853917598724, 0.016360320150852203, -0.0003017040144186467, 0.017459629103541374, -0.02687489613890648, 0.003187999129295349, -0.005292854271829128, -0.009344135411083698, -0.014588491059839725, -0.008212492801249027, 0.003210631897673011, -0.020589429885149002, 0.019515985623002052, 0.014239298179745674, 0.018649471923708916, 0.04531744122505188, 0.002565595554187894, -0.025723854079842567, -0.004969527944922447, 0.007805101107805967, 0.016036992892622948, -0.012422203086316586, -0.0013401882024481893, 0.003116867272183299, 0.0069062537513673306, -0.018623605370521545, -0.014135833829641342, 0.005072992295026779, 0.01104483287781477, -0.033625952899456024, -0.0083353566005826, 0.003239731304347515, 0.02214139699935913, 0.00019591563614085317, 0.0022891515400260687, -0.023460568860173225, 0.006418030709028244, -0.010197716765105724, 8.38628038764e-05, -0.00702265091240406, 0.0062563675455749035, 0.00674459058791399, 0.0002202661707997322, 0.028970053419470787, -0.013385715894401073, -0.003980149049311876, 0.018714137375354767, 0.010404646396636963, 0.008555218577384949, 0.009602796286344528, -0.029849501326680183, -0.0015131679829210043, -0.0020030075684189796, -0.007604638580232859, 0.02904765121638775, 0.02259405516088009, 0.00415797857567668, -0.02051183208823204, 0.0038475850597023964, -0.0051473574712872505, -0.004623568616807461, 0.01457555778324604, -0.00838062260299921, -0.0028420398011803627, 0.0028226401191204786, 0.0021549710072577, 0.0032995466608554125, -0.0031702162232249975, 0.007197247352451086, -0.032668907195329666, -0.009376468136906624, 0.006925653200596571, -0.01886933296918869, 0.003065135097131133, -0.018520141020417213, -0.002431415021419525, -0.021701673045754433, 0.003960749600082636, 0.01614045724272728, 0.023822695016860962, -0.0021921535953879356, -0.004410173278301954, -0.0027256421744823456, -0.005645280238240957, -0.00207898928783834, 0.005667913239449263, -0.004520104266703129, 0.024146022275090218, 0.016360320150852203, 0.011419891379773617, -0.024003757163882256, 0.008581085130572319, -0.00674459058791399, 0.018649471923708916, 0.007106715813279152, -0.010598641820251942, 0.022529389709234238, 0.006511795334517956, -0.030082296580076218, 0.005751978140324354, -0.011174162849783897, 0.007436509244143963, -0.013657310046255589, -0.00920187123119831, 0.008438820950686932, -0.00404481403529644, 0.0182485468685627, -0.018727069720625877, 0.007514107506722212, -0.015545536763966084, -0.0005848167929798365, 0.032591309398412704, 0.006427730433642864, -0.00033929073833860457, -0.007979697547852993, -0.00541248545050621, -0.024340016767382622, 0.013004191219806671, 0.005205556284636259, -0.017045771703124046, 0.005732578691095114, 0.0037796865217387676, -0.022839782759547234, 0.016502583399415016, 0.02532292902469635, -0.01186608150601387, 0.0058522094041109085, -0.0022600521333515644, -0.000867323309648782, 0.0010475778253749013, -0.0016764478059485555, 0.00940880086272955, -0.003475759644061327, -0.011917813681066036, 0.00887854490429163, 0.022490590810775757, 0.0023602833971381187, 0.00510855857282877, -0.0006147244712337852, -0.005923341028392315, 0.01778295636177063, 0.021300747990608215, -0.01476955320686102, -0.022865649312734604, 0.0010451528942212462, -0.0048240311443805695, 0.01324345264583826, 0.018028683960437775, 0.0037053213454782963, 0.0014937683008611202, -0.0014218281721696258, -0.021236082538962364, -0.02324070781469345, -0.004135345574468374, -0.018701203167438507, -0.04055807366967201, 0.0034175608307123184, 0.012499801814556122, 0.009007875807583332, -0.020343702286481857, -0.0012933058897033334, 0.007869766093790531, 0.016295654699206352, -0.02153354324400425, 0.0026270276866853237, -0.01051457691937685, 0.017032839357852936, 0.008497020229697227, -0.005380152724683285, -0.006841588299721479, -0.009040208533406258, -0.023615766316652298, 0.008917344734072685, 0.010889635421335697, 0.022891514003276825, -0.009551064111292362, 0.032539576292037964, -0.010501643642783165, 0.012512735091149807, 0.013890105299651623, -0.007721036206930876, 0.015002348460257053, -0.011691485531628132, 0.01726563461124897, -0.016606047749519348, -0.010637441650032997, -0.020641162991523743, -0.03256544470787048, -0.0014056619256734848, -0.013903038576245308, 0.03171186149120331, -0.00484343059360981, -0.01665778085589409, 0.010346447117626667, -0.008632817305624485, -0.015584336593747139, 0.018119215965270996, 0.002518713241443038, 0.011911347508430481, 0.003485459368675947, -0.019244391471147537, -0.024999603629112244, 0.004403706640005112, -0.011374625377357006, -0.01160742063075304, 0.024637477472424507, 0.009266536682844162, 0.0004692275542765856, 0.00027563582989387214, -0.005486850161105394, 0.008613417856395245, -0.0017637459095567465, 0.018093349412083626, 0.009790325537323952, -0.015868863090872765, -0.01720096915960312, -0.03517792001366615, -0.02152061089873314, 0.024003757163882256, 0.009227737784385681, 0.005056825932115316, -0.016864709556102753, 0.013838373124599457, -0.002067672787234187, 0.021132618188858032, 0.0017540461849421263, 0.027159424498677254, 0.0015164011856541038, 0.009370001032948494, 0.026616236194968224, 0.013476247899234295, 0.007869766093790531, -0.003414327511563897, 0.03230678290128708, 0.00418707774952054, 0.009505798108875751, -0.0067639900371432304, 0.013644377700984478, 0.015558470040559769, -0.014368629083037376, 0.0057940105907619, -0.00033140965388156474, -0.004448972176760435, -0.0051247249357402325, 0.003711787983775139, -0.004888696596026421, 0.008083161897957325, 0.02099035494029522, 0.003740887390449643, 0.01136815920472145, -0.006560294423252344, -0.021960334852337837, 0.021921535953879356, 0.02541346102952957, -0.009893789887428284, 0.00757230632007122, -0.004103012848645449, -0.03078068047761917, 0.018429609015583992, 0.029513241723179817, -0.0006058330181986094, 0.004597702529281378, 0.009505798108875751, -0.013256385922431946, 0.007488241419196129, 0.0012965392088517547, -0.010314114391803741, -0.004888696596026421, 0.025710921734571457, -0.011510422453284264, -0.0003221140068490058, -0.0018203280633315444, 0.00039142710738815367, 0.025064269080758095, 0.009576930664479733, 0.02207673154771328, 0.012344605289399624, -0.02695249579846859, 0.01103836577385664, -0.031116940081119537, -0.008716882206499577, -0.006104404106736183, 0.005868375767022371, 0.002277835039421916, 0.003459593281149864, -0.007798634469509125, 0.0003611152642406523, -0.0032898469362407923, -0.012739063240587711, -0.008160760626196861, -0.005881308577954769, 0.0068545215763151646, 0.003310863161459565, 0.009221271611750126, 0.005515949800610542, -0.017938153818249702, 0.009518731385469437, -0.004086846485733986, 0.017576027661561966, 0.011406958103179932, -0.0007379926973953843, 0.005997706204652786, 0.020110907033085823, -0.0006599901826120913, -0.010850836522877216, -0.017394965514540672, 0.00371502130292356, -0.007843900471925735, 0.008173692971467972, -0.043998267501592636, -0.01884346641600132, -0.011387558653950691, -0.009854990988969803, -0.016308587044477463, -0.027237022295594215], "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef": [-0.006778079085052013, 0.034835219383239746, -0.0035910126753151417, -0.009708399884402752, -0.02982354909181595, -0.051732491701841354, 0.028865031898021698, 0.010817540809512138, -0.008380170911550522, 0.014473595656454563, 0.0007603943813592196, 0.050198864191770554, 0.003098061541095376, 0.011796596460044384, -0.03554726019501686, -0.025674542412161827, -0.02355211414396763, 0.035382941365242004, 0.021484456956386566, -0.02196371555328369, 0.04548844322562218, -0.005110945552587509, -0.012269007973372936, 0.01402172353118658, 0.004802851006388664, -0.03171319514513016, -0.01402172353118658, 0.0075038131326437, -0.01685619354248047, 0.007353188935667276, 0.008072076365351677, 0.00656925980001688, 0.00041015082388184965, -0.03743690624833107, -0.03217875957489014, -0.024674946442246437, 0.004535835701972246, 0.022018488496541977, 0.009667321108281612, 0.014925467781722546, -0.03174057975411415, 0.00330345775000751, 0.015404725447297096, 0.010783308185636997, -0.04020291194319725, 0.008695111609995365, 0.031028540804982185, -0.02158030867576599, 0.022484052926301956, -0.02227865718305111, 0.00938661303371191, -0.030864223837852478, -0.02897457778453827, -0.012508637271821499, -0.008284319192171097, -0.025770394131541252, 0.025606077164411545, 0.07980332523584366, 0.011474808678030968, -0.02823515050113201, 0.010242430493235588, 0.009146983735263348, -0.008010457269847393, 0.003960725851356983, -0.04491333290934563, -0.01127625908702612, -0.01419973373413086, -0.0077160559594631195, -0.04600878059864044, -0.03450658544898033, 0.0015387609601020813, 0.058003924787044525, -0.025921018794178963, 0.007750288583338261, -0.019129246473312378, 0.019923444837331772, 0.012152616865932941, 0.007743441965430975, 0.019457880407571793, -0.0007223104475997388, 0.018800612539052963, -0.02681106887757778, 0.007007438223809004, 0.012892043218016624, 0.08588305860757828, -0.019718049094080925, -0.0014600256690755486, -0.0326990969479084, -0.025962097570300102, -0.01340553443878889, 0.004056577570736408, 0.014377743937075138, -0.010406747460365295, -0.02253882586956024, -0.013576698489487171, 0.00281906477175653, -0.00743534741923213, 0.02612641453742981, 0.02466125413775444, 0.016801420599222183, 0.017842095345258713, 0.04636479914188385, -0.052964869886636734, 0.03152149170637131, -0.008462329395115376, 0.020758723840117455, 0.01510347705334425, -0.001773255062289536, -0.019909752532839775, 0.01577443815767765, 0.01715744100511074, -0.037491679191589355, 0.0007009149994701147, 0.008147387765347958, -0.039189621806144714, -0.007681822869926691, 0.006829428486526012, -0.029111508280038834, 0.014418822713196278, -0.04948682337999344, -0.015651201829314232, -0.026769990101456642, 0.05378645658493042, 0.0469399094581604, 0.0018280274234712124, 0.007538045756518841, -0.0022114338353276253, 0.013432920910418034, 0.03171319514513016, -0.008222700096666813, 0.0023911558091640472, -0.011728131212294102, 0.010126039385795593, 0.012515483424067497, 0.002386020729318261, 0.02789282239973545, 0.017212213948369026, 0.06222139671444893, -0.0221280325204134, 0.027221862226724625, -0.06090686097741127, -0.052882712334394455, -0.041188813745975494, 0.02766004018485546, 0.011700744740664959, -0.021265367045998573, -0.03954564034938812, 0.01639062725007534, -0.020676564425230026, 0.013590390793979168, -0.03773815557360649, -0.045187193900346756, 0.015500577166676521, 0.03801201656460762, 0.038231104612350464, -0.015226715244352818, -0.031247630715370178, 0.025208977982401848, -0.005285532679408789, 0.00618585292249918, 0.022251270711421967, -0.06567205488681793, -0.010050727985799313, -0.016486478969454765, 0.037875086069107056, 0.029221052303910255, 0.010981857776641846, 0.017171133309602737, -0.0430784597992897, 0.017513461410999298, 0.03831326216459274, -0.00840755645185709, -0.015555349178612232, -0.01773255132138729, 0.009311300702393055, -0.0022764760069549084, 0.06293343752622604, -0.0024630443658679724, 0.05460803955793381, -0.006312514189630747, -0.014377743937075138, 0.006829428486526012, -0.003577319672331214, 0.013953258283436298, -0.013590390793979168, 0.015760745853185654, -0.01165966596454382, 0.0029885168187320232, 0.015514270402491093, 0.00877042394131422, -0.04075063392519951, -0.009318146854639053, 0.021484456956386566, 0.0121183842420578, 0.0022405318450182676, -0.030097410082817078, 0.03012479655444622, 0.010386208072304726, 0.006658264901489019, 0.029056735336780548, -0.007900912314653397, -0.05236237496137619, -0.0373273603618145, 0.04220210015773773, -0.0225114393979311, 0.00794199202209711, -0.023757509887218475, -0.022990696132183075, 0.015267794951796532, -0.015021318569779396, 0.0323156900703907, -0.018608909100294113, 0.004706999287009239, 0.002856720704585314, -0.0027728506829589605, 0.02027946524322033, -0.016376934945583344, 0.004001805558800697, -0.006959512829780579, -0.013268603943288326, 0.0017835248727351427, 0.010612144134938717, 0.01006442029029131, -0.029686616733670235, -0.0415448322892189, 0.006216662470251322, 0.013528772629797459, 0.05537485331296921, -0.028645941987633705, -0.018677374348044395, 0.04239380359649658, 0.003045000834390521, -0.012933122925460339, -0.02861855737864971, -0.007887219078838825, 0.019553732126951218, 5.1456063374644145e-05, 0.013939565047621727, -0.03801201656460762, -0.03220614418387413, 0.012440172024071217, 0.006973205599933863, -0.0011245450004935265, 0.019759127870202065, 0.003998382017016411, -0.007236797828227282, -0.013925871811807156, -7.573990296805277e-05, 0.024017678573727608, -0.021799398586153984, -0.042147327214479446, -0.0021018891129642725, -0.011159867979586124, -0.015349953435361385, -0.006730153225362301, 0.005963340401649475, 0.02155292220413685, -0.015363645739853382, 0.015582735650241375, -0.02774219959974289, -0.01823919452726841, 0.00018881486903410405, -0.017061589285731316, -0.024976195767521858, 0.05255407840013504, -0.029111508280038834, 0.023031776770949364, -0.01819811575114727, 0.008660878986120224, 0.06446706503629684, -0.03335636481642723, -0.023483648896217346, 0.023374103009700775, 0.007948838174343109, 0.004515296313911676, -0.015555349178612232, 0.0005199094885028899, -0.007209411356598139, -0.004672766663134098, -0.017842095345258713, 0.021950021386146545, -0.010653223842382431, 0.003625245299190283, 0.051157381385564804, -0.01838981918990612, 0.0030107679776847363, 0.003745059948414564, -0.0022747644688934088, -0.006339900195598602, 0.02123798243701458, -0.013747861608862877, -0.0015122306067496538, 0.004097656812518835, 0.04872001335024834, 0.030234340578317642, -0.010016494430601597, -0.012227929197251797, -0.026140106841921806, -0.02746833674609661, 0.005008247215300798, -0.011625432409346104, -0.011556967161595821, 0.00620296923443675, -0.010461520403623581, 0.046145711094141006, -0.01577443815767765, 0.025989484041929245, -0.00512806186452508, -0.017677778378129005, 0.028755487874150276, 0.07224474102258682, 0.018800612539052963, 0.018362432718276978, -0.00741480803117156, 0.009420845657587051, 0.026112720370292664, 0.019225098192691803, -0.017321757972240448, -0.01688358001410961, -0.0068431212566792965, 0.02831730805337429, 0.018417205661535263, -0.046310026198625565, 0.006473408080637455, 0.027440950274467468, -0.026372890919446945, 0.04149005934596062, -0.04904864728450775, -0.02227865718305111, -0.06353593617677689, -0.03554726019501686, -0.020649177953600883, -0.03467090055346489, -0.03902530297636986, -0.016322162002325058, -0.020594406872987747, -0.035875894129276276, -0.04943205416202545, 0.010454673320055008, -0.01954003795981407, 0.01723959855735302, -0.027988674119114876, -0.0346161313354969, 0.0005982168368063867, 0.026181187480688095, 0.006285128183662891, -0.010584757663309574, 0.009989108890295029, -0.019375720992684364, 0.004689882975071669, 0.0007595385541208088, -0.02831730805337429, -0.009954876266419888, -0.004467370454221964, 0.009865870699286461, 0.013871099799871445, -0.035382941365242004, -0.018567828461527824, 0.00544300302863121, 0.0057442509569227695, 0.004316746257245541, -0.040230296552181244, -0.03875144198536873, -0.0009045997285284102, 0.006956089287996292, 0.016459092497825623, 0.032452620565891266, 0.0051246387884020805, 0.016034606844186783, 0.023072855547070503, -0.04592662304639816, 0.006384402979165316, 0.01904708705842495, -0.021183209493756294, -0.016404321417212486, -0.03836803510785103, 0.0054327333346009254, 0.008243239484727383, -0.001792083028703928, 0.023825975134968758, 0.011105095036327839, 0.016787728294730186, -0.012536022812128067, -0.027728505432605743, 0.05091090500354767, 0.019485266879200935, 0.01544580515474081, -0.0012854387750849128, 0.025208977982401848, -0.003755329642444849, -0.05447110906243324, 0.03546510264277458, -0.011591199785470963, -0.004991130903363228, -0.019403107464313507, 0.019991910085082054, -0.024976195767521858, 0.0016491614514961839, 0.012720880098640919, -0.03182274103164673, 0.001891357940621674, 0.008078922517597675, -0.008209006860852242, 0.022497745230793953, 0.03779292479157448, -0.03475306183099747, 0.012132077477872372, -0.014857001602649689, 0.005449849646538496, 0.010838080197572708, 0.009537236765027046, -0.0003243550600018352, 0.0034763331059366465, 0.021224288269877434, 0.0184719767421484, 0.006014689337462187, 0.02850901149213314, 0.006168736610561609, -0.037491679191589355, -0.03031649999320507, 0.02051224745810032, 0.04452992603182793, -0.015130863524973392, 0.02727663330733776, -0.0067815026268363, 0.01692465879023075, 0.019266176968812943, 0.01723959855735302, -0.001341066905297339, 0.012104691006243229, -0.009715246967971325, 0.006326207425445318, 0.010749075561761856, 0.017458688467741013, 0.003027884289622307, -0.003680017776787281, 0.012803038582205772, -0.003045000834390521, -0.0005622725002467632, -0.006411788985133171, 0.012488097883760929, 0.04370833933353424, 0.003888837294653058, 0.0043578254990279675, -0.014514674432575703, 0.003878567600622773, -0.04335232079029083, -0.0024288117419928312, -0.0041763922199606895, 0.02693430706858635, -0.018403511494398117, 0.03883359953761101, -0.028536397963762283, 0.017294371500611305, -0.009797405451536179, -7.77189779910259e-05, -0.020361624658107758, -0.020074069499969482, -0.003086080076172948, -0.03762860968708992, -0.029577072709798813, -0.017458688467741013, 0.011207793839275837, -0.005487505346536636, -0.008448636159300804, -0.036451004445552826, -0.008777270093560219, 0.0150076262652874, 0.02023838646709919, 0.007017708383500576, -0.003176796715706587, 0.010365668684244156, -0.04959636926651001, 0.010749075561761856, -0.01739022321999073, 0.0011536427773535252, -0.01440513040870428, -0.019923444837331772, -0.008654032833874226, 0.0015327702276408672, 0.012892043218016624, 0.0018776648212224245, -0.02985093556344509, -0.0017664085607975721, -0.014309278689324856, -0.018252888694405556, 0.006446021609008312, -0.04455731436610222, -0.009359226562082767, -0.00415585283190012, 0.05690848082304001, 0.006507640704512596, -0.014624219387769699, 0.002447639824822545, 0.0051794108003377914, -0.005333458073437214, 0.018115956336259842, -0.016678182408213615, -0.03628668561577797, -0.03636884689331055, 0.01951265148818493, -0.01042728777974844, -0.002081349492073059, 0.03012479655444622, 0.00288068363443017, 0.009352380409836769, -0.034835219383239746, -0.040805406868457794, -0.018115956336259842, 0.016760341823101044, 0.010180812329053879, -0.007948838174343109, -0.01796533353626728, 0.018458284437656403, -0.0005370258586481214, -0.02404506504535675, -0.049541596323251724, -0.011940374039113522, 0.017595618963241577, -0.010406747460365295, 0.009906950406730175, -0.00041421595960855484, -0.025250056758522987, 0.01209784485399723, -0.012419631704688072, 0.002192605985328555, -0.022182805463671684, -0.0380941741168499, 0.013261756859719753, -0.005460119340568781, 0.006309091113507748, 0.033109888434410095, 0.00798307079821825, 0.0014523232821375132, 0.03420533612370491, -0.02451062947511673, -0.029494915157556534, 0.014240812510251999, 0.05559394136071205, 0.03343852236866951, -0.03217875957489014, 0.0030997730791568756, 0.020758723840117455, -0.024811876937747, 0.0075448923744261265, -0.006024959497153759, -0.007818753831088543, 0.023606885224580765, 0.0014942584093660116, -0.006062615197151899, -0.03228830546140671, 0.0012332338374108076, -0.03960041329264641, -0.01762300543487072, 0.02151184342801571, -0.020115148276090622, -0.004840507172048092, -0.030836837366223335, -0.029029348865151405, -0.00339075131341815, -0.01989605836570263, -0.010913392528891563, 0.02138860523700714, -0.017554540187120438, 0.0002103172882925719, -0.004142159596085548, -0.040531545877456665, 0.010372514836490154, -0.007407961413264275, 0.01723959855735302, 0.02185416966676712, -0.00921544898301363, 0.08369216322898865, 0.019170325249433517, -0.008914201520383358, 0.012693493627011776, -0.01908816583454609, 0.015678586438298225, 0.0031973363365978003, -0.010413594543933868, 0.015870289877057076, -0.03488999232649803, -0.006069461815059185, -0.0150076262652874, 0.003950456157326698, -0.005795599892735481, -0.024099837988615036, -0.027386179193854332, 0.010995551012456417, 0.021867863833904266, 0.01881430484354496, 0.02793390303850174, 0.01588398404419422, -0.003820371814072132, -0.021908942610025406, 0.005658668931573629, 0.010797000490128994, 0.017020510509610176, 0.005562817677855492, -0.0015832633944228292, 0.018170729279518127, 0.00873619131743908, -0.005121215246617794, -0.0315488763153553, -0.02104627899825573, -0.013343915343284607, 0.011851368471980095, 0.03951825574040413, -0.01966327615082264, 0.01966327615082264, -0.024209382012486458, 0.023483648896217346, -0.002721501514315605, -0.009701553732156754, 0.002362057799473405, -0.014049110002815723, 0.01915663108229637, 0.03382192924618721, 0.010242430493235588, 0.012768805958330631, -0.011105095036327839, -0.02650982141494751, 0.04055893048644066, -0.01273457333445549, 0.03146671876311302, 0.011262565851211548, 0.009708399884402752, 0.0034831794910132885, 0.01273457333445549, -0.00262564979493618, -0.0032469737343490124, -0.011878754943609238, 0.0018776648212224245, -0.008482868783175945, 0.061235494911670685, -0.02774219959974289, 0.009509850293397903, 0.026756295934319496, -0.0034489468671381474, -0.036724865436553955, -0.00266844080761075, 0.003041577525436878, -0.010112346149981022, 0.028481625020503998, -0.014336664229631424, -5.9104935644427314e-05, 0.025496533140540123, 0.04132574424147606, 0.01615784503519535, -0.007969377562403679, -0.015610122121870518, 0.0006576962186954916, 0.0019238790264353156, 0.003748483257368207, -0.004056577570736408, -0.010297203436493874, 0.013693089596927166, -0.0024630443658679724, 0.01463791262358427, -0.009105904027819633, 0.013384995050728321, -0.012837271206080914, -0.01280988473445177, 0.039573028683662415, 0.009797405451536179, 0.028673328459262848, 0.009756325744092464, 0.016034606844186783, 0.03212398663163185, 0.01819811575114727, -0.007346342317759991, -0.0492403507232666, 0.01548688393086195, -0.01588398404419422, 0.020950427278876305, -8.039340900722891e-05, 0.0036594781558960676, -0.019786514341831207, -0.019211404025554657, 0.013747861608862877, 0.006055768579244614, -0.021457070484757423, -0.03305511921644211, 0.018143342807888985, 0.015555349178612232, 0.0001843218196881935, 0.003219587728381157, 0.02427784726023674, -0.00917437020689249, -0.024907728657126427, 0.016376934945583344, -0.020868267863988876, 0.0016029472462832928, -0.016527559608221054, 0.0021720663644373417, -0.000727873295545578, -0.004823390860110521, -0.008989512920379639, 0.0072162579745054245, -0.0016560079529881477, -0.04978807270526886, -0.012981048785150051, 0.02204587310552597, -0.009229142218828201, 0.015117170289158821, 0.02640027552843094, -0.017636699602007866, -0.02204587310552597, 0.007996764034032822, -0.012919429689645767, 0.009817944839596748, 0.002444216515868902, 0.0150076262652874, 0.034260109066963196, 0.002420253586024046, 0.004737808834761381, 0.0022114338353276253, -0.009509850293397903, -0.011337878182530403, 0.013364454731345177, 0.004097656812518835, 0.010810693725943565, -0.0007009149994701147, -0.04379050061106682, -0.01406280230730772, 0.013686242513358593, 0.009263374842703342, 0.02527744323015213, 0.010776461102068424, 0.0060968478210270405, -0.015473190695047379, 0.005959917325526476, -0.0058709122240543365, -0.005597050301730633, -0.01626739092171192, 0.004748078528791666, 0.0033154392149299383, -0.01708897575736046, 0.048227060586214066, -0.026605673134326935, -0.00879096332937479, -0.02666044421494007, 0.027262941002845764, -0.024962501600384712, -0.05055488646030426, 0.039490871131420135, 0.023689044639468193, -0.024962501600384712, 0.006113964598625898, 0.025222670286893845, 0.032644324004650116, -0.010488905943930149, 0.051349084824323654, -0.0005798167549073696, 0.02327825129032135, 0.006603492423892021, 0.023647965863347054, 0.03297295793890953, -0.0077160559594631195, 0.022401893511414528, 0.008482868783175945, 0.0018091994570568204, 0.02015622705221176, 0.00023492205946240574, -0.009913796558976173, -0.005052749998867512, -0.026961693540215492, 0.006199546158313751, 0.02200479432940483, 0.003474621335044503, 0.027564188465476036, 0.035574644804000854, 0.01585659757256508, 0.026769990101456642, -0.028837645426392555, 0.020868267863988876, 0.01989605836570263, 0.0054772356525063515, -0.03458874300122261, -0.030946381390094757, -0.0022644945420324802, -0.028837645426392555, 0.02436000667512417, -0.006685650907456875, 0.018211808055639267, -0.014802229590713978, 0.019786514341831207, 0.006915010046213865, -0.010550525039434433, 0.006261165253818035, -0.004039461258798838, 0.010975010693073273, -0.021484456956386566, 0.0031288708560168743, 0.013699935749173164, -0.006360440049320459, 0.002591417171061039, -0.05537485331296921, 0.005415617022663355, 0.024373698979616165, 0.010146578773856163, -0.023346716538071632, 0.03836803510785103, 0.05406031757593155, 0.015281487256288528, -0.00032649459899403155, 0.018649987876415253, 0.005398500245064497, 0.03242523595690727, -0.028645941987633705, 0.011830829083919525, 0.006069461815059185, -0.019019700586795807, 0.03195967152714729, -0.016363242641091347, -0.00043817886034958065, -0.02897457778453827, 0.05414247512817383, 0.02620857208967209, -0.02531852200627327, 0.030864223837852478, 0.027879130095243454, -0.010536831803619862, 0.03798462823033333, -0.03866928443312645, 0.00838701706379652, 0.030836837366223335, -0.023264558985829353, 0.011057169176638126, 0.02778327837586403, 0.03612237051129341, -0.01838981918990612, 0.00031365733593702316, 0.04398220404982567, 0.0015789843164384365, -0.0015319143421947956, -0.003748483257368207, -0.0070656342431902885, -0.014569447375833988, 0.025756701827049255, -0.009324993938207626, -0.02504466101527214, -0.003139140782877803, 0.00045401148963719606, 0.020032988861203194, 0.001913609215989709, 0.013720475137233734, -0.009468771517276764, 0.0400112085044384, 0.019416799768805504, 0.023634271696209908, -0.011741824448108673, -0.024989888072013855, 0.015117170289158821, -0.01577443815767765, 0.027906516566872597, -0.02878287434577942, -0.006661687977612019, 0.008927893824875355, -0.009872717782855034, 0.011632279492914677, -0.008030996657907963, -0.020991506054997444, -0.029330598190426826, 0.012241621501743793, 0.0069697825238108635, -0.02878287434577942, -0.009968568570911884, 0.011721284128725529, -0.01734914444386959, -0.005932530853897333, -0.007168332114815712, -0.0017766783712431788, 0.0020642331801354885, 0.004556375555694103, -0.0033667883835732937, -0.023565806448459625, 0.008188467472791672, -0.017554540187120438, -0.023182399570941925, -0.012180003337562084, 0.03365761414170265, 0.013241217471659184, 0.02277160808444023, -0.05266362056136131, -0.013788941316306591, 0.02870071493089199, -0.015555349178612232, -0.01628108322620392, -0.019567424431443214, 0.0008382737869396806, -0.003950456157326698, -0.014186040498316288, -0.02785174362361431, -0.012344320304691792, -0.0030039213597774506, 0.01854044198989868, -0.004320169799029827, 0.0015747052384540439, 0.003505430882796645, 0.013309682719409466, -0.024223074316978455, -0.03382192924618721, 0.006367286667227745, 0.005915414541959763, -0.04239380359649658, 0.02774219959974289, 0.012323779985308647, 0.00271294335834682, 0.05898983031511307, 0.03598544001579285, -0.011296798475086689, -0.01834874041378498, 0.0033616535365581512, 0.05548439919948578, 0.017225906252861023, 0.02455170825123787, -0.0016970873111858964, -0.009660474956035614, -0.003721097018569708, 0.03324682265520096, -0.009783712215721607, 0.0020984660368412733, 0.0016226310981437564, -0.011413189582526684, -0.01900600828230381, 0.030343886464834213, 0.0124059384688735, 0.0018519903533160686, 0.02132013998925686, -0.023757509887218475, -0.004275667015463114, 0.017828403040766716, -0.012823577970266342, 0.044420380145311356, -0.0044536772184073925, -0.017417609691619873, -0.00985217746347189, -0.03913484886288643, -0.026263345032930374, -0.019635889679193497, -0.019170325249433517, 0.021457070484757423, -0.032836027443408966, -0.02682476118206978, -0.022525131702423096, -0.01904708705842495, 0.02965923212468624, 0.013487692922353745, 0.007805061060935259, 0.003923070151358843, 0.030562974512577057, -0.004289360251277685, -0.00288068363443017, 0.022114338353276253, 0.02561976946890354, -0.0014908351004123688, 0.014857001602649689, 0.04055893048644066, -0.005799023434519768, 0.026715217158198357, 0.0019221673719584942, 0.004980861209332943, 0.009578315541148186, 0.008017303422093391, 0.015596428886055946, -0.037464290857315063, 0.04359879717230797, 0.013152211904525757, -0.0005733981379307806, 0.0009936047717928886, -0.052691008895635605, 0.01525410171598196, 0.01639062725007534, 0.012234775349497795, -0.03631407395005226, -0.0005447281873784959, -0.01548688393086195, 0.010666916146874428, -0.016568638384342194, 0.029577072709798813, 0.021525535732507706, -0.011187253519892693, 0.0052307602018117905, -0.0007094732136465609, 0.022292349487543106, -0.011378956958651543, -0.005802446510642767, 0.008476022630929947, 0.006380979437381029, 0.007750288583338261, -0.012782499194145203, 0.0008986089960671961, -0.018704760819673538, 0.020306851714849472, -0.004888433031737804, -0.016061993315815926, -0.042996302247047424, 0.012289547361433506, -0.019142938777804375, 0.005713441409170628, -0.029248438775539398, -0.006699344143271446, 0.014651605859398842, -0.005864065606147051, -0.013871099799871445, 0.015349953435361385, -0.013672549277544022, 0.010310896672308445, -0.009434538893401623, -0.018458284437656403, -0.009530390612781048, -0.01213892363011837, -0.003573896363377571, 0.0023500765673816204, 0.02620857208967209, 0.007346342317759991, -0.04113404080271721, -0.04168176278471947, 0.018786918371915817, 0.015199328772723675, 0.0017681200988590717, -0.013980643823742867, -0.023182399570941925, -0.008092615753412247, 0.010153425857424736, 0.007462733890861273, 0.0031870666425675154, 0.029056735336780548, -0.009838484227657318, -0.017759935930371284, -0.007750288583338261, 0.010755921714007854, -0.0034951609559357166, -0.020649177953600883, -0.02812560461461544, 0.01585659757256508, -0.04392743110656738, -0.006206392776221037, 0.012515483424067497, 0.03565680608153343, -0.005891451612114906, -0.009372919797897339, -0.0035567800514400005, -0.006086578126996756, -0.00967416726052761, 0.008065229281783104, -0.018677374348044395, -0.017184827476739883, 0.0038751442916691303, 0.023949213325977325, -0.020101455971598625, 0.02038900926709175, -0.0022884574718773365, -0.01194722019135952, -0.0035670497454702854, -0.004713845904916525, -0.007428500801324844, -0.01800641231238842, 0.03439703956246376, 7.916317554190755e-05, 0.007401114795356989, 0.061235494911670685, -0.030179569497704506, 0.03209660202264786, -0.0067233070731163025, -0.005514891818165779, 0.016938351094722748, -0.00777082797139883, -0.01934833452105522, 0.00576136726886034, 0.02112843655049801, -0.008852582424879074, 0.013131672516465187, 0.006302244495600462, 0.024811876937747, 0.021347526460886, 0.006928703282028437, 0.0081747742369771, -0.027879130095243454, -0.008085769601166248, 0.0026804222725331783, -0.02965923212468624, 0.02389444038271904, 0.003967572469264269, -0.02716708928346634, 0.02219649776816368, 0.031247630715370178, 0.01009865291416645, -0.003977842628955841, -0.021840477362275124, 0.009509850293397903, 0.0012186849489808083, 0.010324588976800442, -0.01708897575736046, -0.03316466137766838, -0.001968381693586707, 0.05455326661467552, -0.007989917881786823, 0.0017398782074451447, 0.008209006860852242, 0.0009191486169584095, 0.03165842220187187, 0.007839293219149113, 0.019841287285089493, -0.0016714127268642187, -0.0009045997285284102, -0.00426197424530983, -0.006579529494047165, 0.009057978168129921, 0.03390409052371979, -0.0016654219944030046, 0.02062179334461689, 0.0238533616065979, -0.01439143717288971, 0.017787322402000427, 0.010009648278355598, -0.01358354464173317, 0.004463946912437677, 0.011166714131832123, -0.017787322402000427, 0.011796596460044384, -0.012768805958330631, 0.010167119093239307, -0.0077160559594631195, 0.0016662777634337544, 0.010790154337882996, 0.0014429092407226562, 0.00277456222102046, 0.018800612539052963, 0.019882366061210632, 0.01069430261850357, 0.029960479587316513, 0.016226310282945633, 0.0006885056500323117, -0.0027694273740053177, 0.0029577072709798813, 0.004628264345228672, -0.020416395738720894, -0.01600722223520279, -0.006665111053735018, 0.01647278666496277, 0.005757944192737341, 0.007921451702713966, 0.03132978826761246, -0.01402172353118658, -0.006548719946295023, -0.02523636445403099, -0.016637103632092476, -0.02055332623422146, -0.027495723217725754, -0.020909346640110016, 0.013302836567163467, 0.007900912314653397, -0.023072855547070503, -0.016020914539694786, -0.009653627872467041, -0.015870289877057076, 0.015897676348686218, -0.004772041458636522, -0.05816824361681938, -0.04606355354189873, -0.013741015456616879, 0.009824791923165321, -0.009906950406730175, -0.014966546557843685, 0.02823515050113201, 0.0015267794951796532, -0.0022422433830797672, 0.009872717782855034, 0.0021481034345924854, 0.0040052286349236965, -0.006432328838855028, 0.021374912932515144, 0.008708804845809937, 0.006541873328387737, -0.011187253519892693, -0.015117170289158821, -0.001459169783629477, 0.00029440142679959536, -0.009393459185957909, 0.013898485340178013, 0.0018810881301760674, 0.005737404339015484, -0.005576510448008776, 0.001727040857076645, -0.02678368240594864, 0.00309292646124959, -0.013610931113362312, 0.021457070484757423, -0.02523636445403099, -0.0007270174683071673, -0.016171539202332497, 0.010393055155873299, 0.022456666454672813, 0.012063611298799515, -0.011748670600354671, -0.0025811472442001104, -0.00012987040099687874, 0.013473999686539173, -0.007743441965430975, 0.01421342696994543, -0.016376934945583344, -0.04162698984146118, 0.006288551259785891, -0.019416799768805504, -0.01421342696994543, -0.00502194045111537, 0.017951639369130135, -0.01804749108850956, 0.012125230394303799, 0.005884604994207621, -0.0234699547290802, 0.008017303422093391, -0.012070458382368088, 0.012303240597248077, 0.002454486209899187, -0.004077117424458265, -0.004587185103446245, -0.02416830323636532, 0.04009336605668068, 0.000401378667447716, -0.002603398635983467, 0.017513461410999298, 3.431295772315934e-05, -0.004083964042365551, 0.0007642455748282373, 0.007353188935667276, -0.0073737287893891335, -0.010249277576804161, 0.008250086568295956, -0.0002569593780208379, 0.011365263722836971, 0.013254910707473755, 0.0007770828087814152, -0.027454644441604614, -0.0014129556948319077, -0.03382192924618721, -0.007551738526672125, 0.010591604746878147, -0.017759935930371284, -0.007209411356598139, 0.008489714935421944, -0.012782499194145203, -0.0008245807257480919, 0.005217066965997219, -0.016212617978453636, -0.004991130903363228, -0.011022936552762985, 0.004652227275073528, -0.007113560102880001, 0.003864874364808202, -0.0038374883588403463, 0.007832447066903114, -0.003474621335044503, -0.0034917378798127174, -0.019403107464313507, 0.01954003795981407, 0.0023380951024591923, -0.009715246967971325, -0.020827189087867737, 0.0032058944925665855, 0.00859925989061594, -0.012358013540506363, -0.008517101407051086, -0.011721284128725529, 0.0028755487874150276, -0.0007026266539469361, 0.0008618088322691619, 0.009064825251698494, 0.001256340998224914, 0.013679396361112595, -0.006367286667227745, 0.0028669906314462423, -0.036642707884311676, 0.010317742824554443, -0.006702767219394445, -0.03190489858388901, -0.024181995540857315, 0.0016251985216513276, 0.011707590892910957, 0.025537611916661263, 0.016418013721704483, -0.014651605859398842, -0.006367286667227745, 0.0024904306046664715, 0.006630878429859877, -0.007476426661014557, -0.016253696754574776, -0.003916223533451557, 0.017937947064638138, 0.0042825136333703995, 0.011837675236165524, -0.008927893824875355, -0.019841287285089493, 0.0072162579745054245, -0.008263779804110527, -0.0029268977232277393, 0.02147076465189457, 0.03280864283442497, 0.013001588173210621, 0.024346312507987022, -0.004320169799029827, -0.018115956336259842, 0.015377338975667953, -0.00919490959495306, -0.01692465879023075, 0.010146578773856163, -0.0018982045585289598, -0.018800612539052963, -0.009277068078517914, 0.025304829701781273, 0.029193665832281113, 0.020649177953600883, 0.00831170566380024, 0.016404321417212486, -0.005720288027077913, 0.00026829895796254277, -0.00447421707212925, -0.007325802929699421, 0.004956898279488087, 0.0031117545440793037, -0.0008716506999917328, 0.004768618382513523, 0.0065658362582325935, 0.03458874300122261, 8.772135333856568e-05, 0.03343852236866951, 0.009797405451536179, 0.03195967152714729, -0.008688265457749367, 0.015952449291944504, -0.010132886469364166, -0.0055730873718857765, 0.01050259917974472, 0.025962097570300102, -0.0032178759574890137, 0.02074502967298031, 0.017568234354257584, -0.013905332423746586, -0.013549312017858028, -0.015938755124807358, -0.00029097814694978297, 0.003926493227481842, 6.0014241171302274e-05, -0.0059256842359900475, -0.010379361920058727, -0.009242835454642773, 0.012714033015072346, -0.0238533616065979, -0.016952045261859894, -0.01592506282031536, 0.0014634488616138697, 0.00531976530328393, -0.0025862823240458965, -0.0022405318450182676, -0.019211404025554657, 0.013501386158168316, 0.0049979775212705135, 0.015610122121870518, -0.014747457578778267, -0.03143933415412903, -0.015391032211482525, -0.014925467781722546, 0.023141320794820786, 0.030343886464834213, -0.008065229281783104, -0.006333053577691317, -0.0011099959956482053, 0.001427504583261907, -0.010071267373859882, 0.026441356167197227, -0.015048705041408539, -0.008825195953249931, 0.004327016416937113, 0.023456262424588203, 0.0025332216173410416, 0.0014420534716919065, 0.005419040098786354, -0.019882366061210632, 0.0068431212566792965, 0.0007415663567371666, 0.005374537780880928, 0.021018892526626587, 0.0019238790264353156, 0.02682476118206978, -0.02839946746826172, 0.009804251603782177, 0.01743130199611187, 0.01233062706887722, 0.002618803409859538, 0.0067472695372998714, 0.02774219959974289, -0.002831046236678958, -0.014336664229631424, -0.041763924062252045, 0.0016534405294805765, 0.010016494430601597, -0.002302150707691908, -0.015404725447297096, -0.018800612539052963, -0.00360128260217607, 0.01866368018090725, 0.04017552360892296, -0.04713161289691925, -0.009188062511384487, -0.0017869481816887856, -0.02023838646709919, 0.0013076900504529476, 0.010379361920058727, -0.007271030452102423, -0.0014078207314014435, 0.016513865441083908, -0.0167329553514719, 0.003238415578380227, -0.0006380123668350279, -0.00857872050255537, -0.008202160708606243, -0.007243644446134567, -0.03981950506567955, -0.0052307602018117905, 0.01704789698123932, 0.0092359883710742, 0.00854448787868023, 0.011673358269035816, -0.01685619354248047, -0.0480901300907135, 0.009989108890295029, -0.009311300702393055, -0.0012700340012088418, 0.008654032833874226, -0.018513057380914688, 0.01007811352610588, -0.02274422161281109, 0.02455170825123787, -0.0457896888256073, 0.018102264031767845, -0.029248438775539398, 0.0150076262652874, 0.014144960790872574, 0.002759157447144389, -0.0024510629009455442, 0.03960041329264641, -0.021922636777162552, -0.0014138114638626575, -0.007264183834195137, -0.026057949289679527, -0.019184017553925514, 0.011016090400516987, 0.019827593117952347, -0.017828403040766716, -0.0028977999463677406, -0.006952666211873293, 0.007668130099773407, 0.013070053420960903, 0.008222700096666813, 0.003204182954505086, -0.017171133309602737, -0.009961722418665886, -0.005689478479325771, -0.027947595342993736, -0.02416830323636532, 0.015993528068065643, -0.015021318569779396, -0.005312918685376644, 0.00026872687158174813, 0.0234699547290802, -0.010509446263313293, 0.02889241836965084, 0.01107770949602127, 0.003991535399109125, 0.06402888894081116, 0.0031220244709402323, 0.032452620565891266, -0.03943609818816185, -0.013994337059557438, 0.0063193608075380325, 0.0007941991789266467, -0.0024339465890079737, 0.017568234354257584, -0.016226310282945633, -0.02285376563668251, -0.03883359953761101, 0.0028207763098180294, -0.022689448669552803, 0.016979429870843887, 0.03593066707253456, 0.004847353789955378, -0.013932717964053154, 0.017321757972240448, -0.01611676625907421, 0.003642361843958497, 0.020923040807247162, 0.003758752951398492, 0.004114773124456406, -0.03237046301364899, 0.037382133305072784, 0.023442568257451057, -0.03705349937081337, 0.004885009489953518, 0.01277565211057663, -0.0008515389636158943, 0.020060375332832336, -0.008339091204106808, -0.036998726427555084, -0.025496533140540123, 0.005894875153899193, -0.013343915343284607, -0.0014446208951994777, 6.706136900902493e-06, -0.013186445459723473, 0.012337473221123219, -0.009913796558976173, 0.00881150271743536, 0.0038101021200418472, 0.0152951804921031, -0.007921451702713966, 0.015336260199546814, -0.014158654026687145, -0.0092359883710742, -0.0005464398418553174, 0.010817540809512138, -0.001739022321999073, 0.008256932720541954, -0.006380979437381029, -0.015048705041408539, 0.006175583228468895, 0.0026427663397043943, 0.007346342317759991, -0.019594810903072357, 0.026537207886576653, 0.014706377871334553, -0.015213022008538246, -0.023538419976830482, 0.017910560593008995, 0.02859117090702057, -0.01127625908702612, -0.013597237877547741, -0.015979835763573647, -0.037683382630348206, 0.004570068325847387, -0.0003115177678409964, 0.0008626646012999117, 0.010769614949822426, 0.01719851978123188, -0.00857872050255537, -0.003721097018569708, -0.0010415306314826012, 0.01858152262866497, -0.0015259236097335815, 0.010132886469364166, -0.022977003827691078, -0.004152429290115833, 0.022648369893431664, -0.02766004018485546, 0.011303645558655262, -0.002656459342688322, 0.009311300702393055, -0.014665299095213413, 0.0010184234706684947, -0.010119193233549595, 0.00273177120834589, 0.02678368240594864, -0.0045495289377868176, 0.004727539140731096, -0.006644571665674448, 0.003823795123025775, -0.00020090329053346068, 0.004244857467710972, -0.026030562818050385, 0.0009790558833628893, 0.002081349492073059, 0.012926275841891766, -0.008243239484727383, -0.014487288892269135, -0.00011874475603690371, -0.016527559608221054, -0.026715217158198357, 0.019882366061210632, 0.0005678352899849415, 0.0073121096938848495, -0.020293157547712326, 0.05529269576072693, 0.013063207268714905, 0.020991506054997444, -0.008455482311546803, -0.00618585292249918, -0.030672520399093628, -0.004101080354303122, 0.012939969077706337, 0.007969377562403679, -0.011461115442216396, -0.019293563440442085, -0.006661687977612019, 0.024538015946745872, 0.018129650503396988, -0.011563814245164394, -0.0013402111362665892, 0.008065229281783104, -0.0033530951477587223, 0.001527635264210403, 0.02927582524716854, 0.027345098555088043, 0.0012298105284571648, -0.014952853322029114, -0.008421249687671661, 0.0006059192237444222, 0.014596832916140556, -0.018992314115166664, 0.0010509445564821362, -0.004460523836314678, 0.02774219959974289, 0.010797000490128994, -0.00349687272682786, -0.023401489481329918, -0.024401085451245308, -0.005429309792816639, 0.012625028379261494, 0.014281892217695713, 0.012447018176317215, -0.017376530915498734, 0.0031288708560168743, 0.00018924276810139418, 0.009242835454642773, 0.023921826854348183, 0.027605267241597176, -0.009516697376966476, -0.0018964929040521383, 0.006305667571723461, -0.00722310459241271, 0.02142968401312828, 0.0008023294503800571, -0.010037034749984741, -0.024414777755737305, 0.0036868643946945667, 0.017801016569137573, -0.0010312608210369945, -0.014610526151955128, 0.006535026710480452, -0.0007094732136465609, -0.006408365909010172, -0.0017749667167663574, -0.01048205979168415, -0.005217066965997219, -0.025140512734651566, -0.05490928888320923, -0.011091402731835842, -0.0089484341442585, 0.0033821931574493647, -0.008325397968292236, 0.02727663330733776, -0.020923040807247162, -0.006463137920945883, -0.0007021987112239003, 0.019649583846330643, -0.004101080354303122, -0.008654032833874226, 0.0184719767421484, 0.005395077168941498, 0.02238820120692253, 0.030645133927464485, 0.004477640148252249, 0.01440513040870428, -0.0012212523724883795, -0.007887219078838825, -0.012837271206080914, 0.017225906252861023, -0.004974014591425657, 0.008482868783175945, -0.012378552928566933, 0.023415181785821915, -0.020252078771591187, -0.010762767866253853, -0.005785330198705196, -0.004929512273520231, 0.012125230394303799, 0.002483583986759186, 0.008804656565189362, -0.006199546158313751, -0.044995490461587906, 0.022306041792035103, -0.013610931113362312, 0.013713628984987736, 0.003041577525436878, -0.015240408480167389, -0.008270625956356525, 0.004686459898948669, -0.01862260140478611, 0.0131795983761549, 0.0007411384722217917, -0.004340709187090397, -0.0041113500483334064, -0.008065229281783104, -0.004169545602053404, 0.006586376111954451, -0.003649208229035139, -0.010536831803619862, 0.01569228060543537, -0.001860548509284854, 0.010961318388581276, -0.009968568570911884, -0.02927582524716854, -0.009783712215721607, -0.014281892217695713, -0.02077241614460945, -0.015158249996602535, 0.012816731818020344, 0.011447422206401825, -0.031411945819854736, 0.004946628585457802, 0.026633059605956078, -0.028070833534002304, -0.0006298820953816175, -0.01021504495292902, 0.0063980957493186, -0.01743130199611187, 0.011214639991521835, 0.008606106974184513, 0.006832851562649012, 0.01050259917974472, 0.0025588960852473974, -0.015514270402491093, 0.015432111918926239, 0.021169515326619148, 0.004022344946861267, 0.016363242641091347, -0.012878350913524628, -0.0124059384688735, -0.02300439029932022, -0.011878754943609238, -0.0032212992664426565, -0.018143342807888985, 0.017787322402000427, -0.03669748082756996, 0.006072884891182184, -0.004128466360270977, -0.007709209341555834, -0.005771636962890625, -0.02012884058058262, 0.010132886469364166, -0.02066287212073803, 0.017554540187120438, 0.023483648896217346, 0.010372514836490154, -0.002603398635983467, 0.015281487256288528, -0.01087231282144785, -0.004149006213992834, 0.0051554483361542225, -0.000126019207527861, 0.03146671876311302, -0.0039025305304676294, -0.01280988473445177, -0.0022884574718773365, 0.03543771430850029, -0.015240408480167389, 0.008256932720541954, 0.010762767866253853, -0.004258550703525543, 0.014322970993816853, -0.005994149949401617, 0.013994337059557438, 0.004104503430426121, 0.013330222107470036, 0.019882366061210632, 0.005566240753978491, 0.012193695642054081, -0.03390409052371979, 0.018951235339045525, -0.014227120205760002, -0.011611740104854107, 0.011830829083919525, -0.01815703697502613, 0.0338493175804615, 0.0016602870309725404, 0.005415617022663355, -0.0031305826269090176, -0.02216911129653454, 0.00722310459241271, 0.017403917387127876, 0.009550930000841618, -0.0171163622289896, -0.0070656342431902885, -0.005922261159867048, 0.012262161821126938, 0.01877322606742382, 0.008256932720541954, -0.01127625908702612, -0.0205807127058506, -0.007579124998301268, -0.024633867666125298, -0.009413998574018478, -0.03442442789673805, -0.014802229590713978, -0.005864065606147051, -0.010167119093239307, -0.007887219078838825, 0.016486478969454765, 0.00062517513288185, -0.004683036357164383, 0.013939565047621727, 0.014911774545907974, 0.011296798475086689, 0.0015456074615940452, -0.024579094722867012, 0.007188871968537569, -0.010571065358817577, -0.009249681606888771, 0.013295989483594894, 0.0071409461088478565, 0.023305637761950493, -0.017061589285731316, 0.025537611916661263, -0.0021823360584676266, -0.002855009166523814, 0.014295585453510284, 0.010838080197572708, 0.03220614418387413, 0.0031374290119856596, -0.009715246967971325, 0.018129650503396988, 0.0008314272854477167, -0.011604893021285534, 0.013117979280650616, -0.0003155829035677016, -0.014528367668390274, -0.009311300702393055, -0.03223353251814842, 0.009256528690457344, 0.01881430484354496, -0.0007856410229578614, -2.164952275052201e-05, 0.017417609691619873, 0.002427099971100688, -0.010030187666416168, -0.0058058700524270535, 0.018691066652536392, 0.0025212401524186134, 0.004467370454221964, 0.017554540187120438, 0.004025768022984266, -0.028645941987633705, -0.006952666211873293, -0.010632683522999287, -0.020594406872987747, 0.001614928711205721, 0.01339184120297432, 0.023333024233579636, -0.014514674432575703, 0.023250864818692207, -0.010228737257421017, 0.004149006213992834, 0.0010098653146997094, -0.004227741155773401, 0.01258394867181778, 0.006630878429859877, -0.006613762117922306, -0.00819531362503767, -0.005086982622742653, -0.005576510448008776, 0.007086173631250858, 0.003543086815625429, 0.014993933029472828, 0.005063019692897797, 0.0013804346090182662, -0.03267171233892441, -0.0007283011800609529, -0.01766408607363701, 0.007243644446134567, 0.00574082788079977, 0.003625245299190283, 0.0021566615905612707, 0.003580742748454213, -0.020334238186478615, 0.0032178759574890137, 0.011440576054155827, -0.012837271206080914, 0.004522142931818962, -0.012221082113683224, -0.0037039807066321373, 0.004104503430426121, -0.0018964929040521383, 0.003296611364930868, -0.0025143935345113277, -0.017951639369130135, -0.007394268177449703, 0.003642361843958497, -0.0014668721705675125, 0.02531852200627327, 0.010954471305012703, -0.012289547361433506, 0.007332649547606707, 0.005210220348089933, -0.00637755636125803, -0.015514270402491093, 0.0023569229524582624, -0.02281268686056137, -0.018608909100294113, 0.017499767243862152, 0.010810693725943565, -0.012844117358326912, 0.01208415161818266, 0.003079233458265662, -0.0004037321778014302, 0.015801824629306793, 0.016596024855971336, 0.009112751111388206, -0.010995551012456417, 0.006004419643431902, -0.007339495699852705, 0.01823919452726841, -0.0029542839620262384, 0.0075585851445794106, 0.005501198582351208, -0.014665299095213413, -0.00512806186452508, -0.004289360251277685, -0.00370740401558578, 0.0002603826578706503, -0.018923848867416382, -0.01360408402979374, -0.004354402422904968, -0.016828807070851326, -0.00852394849061966, -0.009475617669522762, 0.002028288785368204, -0.0038956839125603437, 0.011378956958651543, 0.0037655995693057775, 0.0031254475470632315, 0.023072855547070503, -0.0053403046913445, 0.003322285832837224, 9.808477443584707e-06, 0.035218626260757446, 0.0001321169111179188, -0.015349953435361385, 0.014857001602649689, 0.01796533353626728, -0.007175178732722998, 0.008729344233870506, -0.00017041477258317173, 0.012515483424067497, 0.02127906121313572, -0.008934740908443928, -0.014555754140019417, 0.018786918371915817, 0.015240408480167389, 0.0004993698676116765, 0.0017441572854295373, -0.020594406872987747, 0.005237606819719076, 0.004142159596085548, -0.013063207268714905, -0.02646874077618122, -0.012289547361433506, -0.006949242670089006, 0.012186849489808083, -0.008113155141472816, 0.005809293128550053, -0.010016494430601597, -0.008866275660693645, -0.003786139190196991, 0.004847353789955378, -0.004125043284147978, 0.004991130903363228, -0.005877758376300335, 0.003683441085740924, 0.009728940203785896, 0.01970435492694378, 0.006401519291102886, 0.0008926182636059821, -0.014487288892269135, 0.00463511049747467, 0.005665515549480915, -0.008277472108602524, 0.007051941007375717, 0.009413998574018478, -0.013206984847784042, 0.03354806825518608, 0.01954003795981407, 0.013761554844677448, 0.005388230551034212, -0.026578286662697792, 0.0011433729669079185, 0.01481592282652855, 0.0013453459832817316, -0.010091806761920452, 0.017883174121379852, 0.01908816583454609, 0.018115956336259842, -0.013652009889483452, 0.020032988861203194, 0.0026273615658283234, -0.02204587310552597, -0.007360035553574562, 0.02935798279941082, 0.017376530915498734, 0.008708804845809937, -0.005501198582351208, 0.002168643055483699, 0.00023663369938731194, 0.028673328459262848, -0.005812716204673052, 0.007935144938528538, 0.00983163807541132, 0.0025161050725728273, -0.021361218765378, 0.0323156900703907, -9.293649441133311e-07, 0.0031305826269090176, 0.021251674741506577, -0.014487288892269135, -0.010461520403623581, -0.016445400193333626, -0.004631687421351671, -0.02682476118206978, -0.012152616865932941, 0.010132886469364166, 0.0020402702502906322, -0.018403511494398117, 0.019991910085082054, 8.991438517114148e-05, 0.00981109868735075, -0.010550525039434433, 0.01739022321999073, 0.014857001602649689, -0.000839985441416502, 0.0053368816152215, 0.05008932203054428, -0.0167329553514719, -0.023374103009700775, -0.01406280230730772, 0.015623815357685089, -0.0038956839125603437, 0.012515483424067497, -0.01604830101132393, -0.005542277824133635, -0.00658979918807745, -0.00985217746347189, 0.0070450943894684315, -0.025564998388290405, 0.007271030452102423, 0.004792581312358379, 0.010625837370753288, -0.02115582302212715, -0.01256340928375721, 0.0060215359553694725, 0.005042480304837227, 0.011645972728729248, -0.019649583846330643, 0.0030997730791568756, -0.005566240753978491, 0.019567424431443214, 0.043571408838033676, -0.0007479850319214165, 0.0009756326326169074, 0.013871099799871445, 0.008626646362245083, 0.003977842628955841, -0.017513461410999298, 0.0009816233068704605, -0.01027666311711073, -0.012864657677710056, -0.009030592627823353, -0.0013307970948517323, 0.03215137496590614, -0.012898890301585197, 0.03404102101922035, 0.012700340710580349, 0.013542464934289455, -0.005439579952508211, -0.005193104036152363, 0.023333024233579636, 0.013788941316306591, 0.020183613523840904, -0.0127961914986372, 0.006517910398542881, 0.0029012232553213835, 0.03639623150229454, -0.0004317602142691612, 0.0023346717935055494, 0.017513461410999298, 0.025195283815264702, 0.011337878182530403, -0.017362836748361588, 0.001788659836165607, 0.02374381758272648, 0.00542588671669364, 0.023949213325977325, 0.0096193952485919, 0.0004955186741426587, 0.008900508284568787, -0.0007924875244498253, -0.01700681634247303, 0.011741824448108673, 0.02038900926709175, 0.00370740401558578, 0.0058195628225803375, 0.00510752247646451, 0.010454673320055008, 0.010584757663309574, -0.010221891105175018, -0.010488905943930149, 0.0010381073225289583, 0.013480846770107746, 0.0011904429411515594, -0.009256528690457344, 0.010112346149981022, -0.0017193384701386094, -0.01927986927330494, -0.0068431212566792965, -0.01467899139970541, 0.02093673311173916, 0.0005263281054794788, -0.02535960078239441, 0.0053711142390966415, 0.009393459185957909, 0.01192668080329895, 0.021635081619024277, 0.021292753517627716, -0.008462329395115376, 0.008955280296504498, 0.011741824448108673, 0.00669592060148716, -0.028481625020503998, -0.007531199138611555, 0.008318551816046238, 0.00690816342830658, -0.015993528068065643, -0.0008061806438490748, 0.00034575050813145936, 0.009400306269526482, 0.00857872050255537, -0.00022101501235738397, 0.009941183030605316, 0.014802229590713978, -0.030426044017076492, 0.01004388090223074, -0.004566645249724388, -0.0021549498196691275, 0.000886627531144768, -0.0014968258328735828, -0.016486478969454765, -0.018362432718276978, 0.01681511290371418, -0.01766408607363701, -0.012173156253993511, 0.009968568570911884, -0.0014702954795211554, 0.01400803029537201, -0.00174843636341393, 0.01109824888408184, -0.008873121812939644, -0.014624219387769699, -0.00701086176559329, -0.0023877325002104044, 0.0028738370165228844, -0.013275450095534325, -0.020840881392359734, 0.01658233068883419, 0.00271294335834682, -0.004426291212439537, -0.006329630501568317, -0.018937543034553528, -0.0006713892798870802, -0.006209815852344036, 0.005754520650953054, -0.003438676940277219, -0.00415585283190012, 0.013925871811807156, -0.019416799768805504, 0.026728909462690353, -0.02831730805337429, -0.00597361009567976, 0.01900600828230381, 0.0008284319192171097, 0.014665299095213413, 0.013186445459723473, -0.0004706999461632222, -0.017787322402000427, -0.010283510200679302, -0.003864874364808202, 0.019101860001683235, -0.0016038031317293644, -0.0076955161057412624, 0.01658233068883419, -0.008482868783175945, 0.003618398914113641, -0.010858619585633278, -0.0016825383063405752, -0.020909346640110016, -0.001838297233916819, 0.0011365264654159546, 0.02720816805958748, -0.021142130717635155, 0.020950427278876305, -0.005542277824133635, 0.0019529769197106361, -0.010913392528891563, -0.0015165096847340465, 0.0011707590892910957, -0.0041763922199606895, 0.011420036666095257, -0.0016851058462634683, 0.009900103323161602, -0.006973205599933863, -0.0007317244308069348, 0.00013639600365422666, 0.015527963638305664, 0.039189621806144714, -0.016376934945583344, -0.013261756859719753, -0.006103694438934326, -0.007585971616208553, -0.02138860523700714, 0.004970591515302658, 0.0037655995693057775, -0.030152183026075363, -0.0030775219202041626, -0.01361777726560831, -0.027988674119114876, 0.006719883531332016, -0.010920238681137562, -0.008017303422093391, 0.010297203436493874, -0.006891047116369009, -0.0011185542680323124, 0.024798184633255005, -0.01834874041378498, 0.012590795755386353, 0.009544082917273045, -0.007976224645972252, 0.017499767243862152, -0.008085769601166248, 0.001956400228664279, 0.0037382133305072784, -0.01154327392578125, 0.0071204062551259995, -0.012166310101747513, 0.037573836743831635, -0.0010209910105913877, -0.0033154392149299383, -0.013576698489487171, -0.018033798784017563, 0.004457100760191679, -0.01681511290371418, -0.010954471305012703, 0.017034202814102173, -0.001959823304787278, 0.009078518487513065, 0.03108331188559532, 0.013070053420960903, -0.016527559608221054, -0.026879534125328064, -0.0031562570948153734, 0.00510752247646451, 0.036998726427555084, -0.011358417570590973, -0.008784117177128792, 0.0026222264859825373, -0.0028618555516004562, -0.006346746813505888, -0.003519123885780573, 0.016418013721704483, -0.010057574138045311, -1.853381036198698e-05, 0.00604207580909133, 0.018951235339045525, -0.01823919452726841, -0.008010457269847393, -0.014925467781722546, -0.007524352520704269, -0.012625028379261494, -0.02551022544503212, -0.015171943232417107, 0.015377338975667953, -0.009283914230763912, 0.0017099245451390743, -0.013645163737237453, -0.010557372123003006, -0.007935144938528538, -0.016979429870843887, 0.009311300702393055, -0.011666512116789818, -0.005285532679408789, 0.008517101407051086, -0.029193665832281113, 0.015952449291944504, 0.005583357065916061, -0.0026119567919522524, -0.026030562818050385, 0.03031649999320507, -0.016828807070851326, 0.011509041301906109, 0.004268820397555828, 0.00656925980001688, -0.02742725796997547, 0.004398904740810394, 0.012378552928566933, -0.012837271206080914, -0.002127563813701272, 0.014898081310093403, -0.010139732621610165, 0.01728067919611931, -0.007168332114815712, -0.011296798475086689, -0.013220678083598614, 0.0014326394302770495, 0.017992720007896423, 0.012645567767322063, 0.011707590892910957, 0.01025612372905016, -0.015117170289158821, 0.0050732893869280815, 0.02466125413775444, -0.005884604994207621, 0.00023321043408941478, 0.007613357622176409, 0.0025366446934640408, 0.0024647561367601156, 0.01838981918990612, -0.01650017313659191, -0.030042637139558792, 0.00031130382558330894, -0.009605702012777328, 0.015432111918926239, -0.02242927998304367, -0.01026981696486473, -0.0036868643946945667, 0.003033019369468093, 0.02785174362361431, -0.014432515949010849, 0.0006273146718740463, 0.00025588960852473974, 0.010543678887188435, -0.00470357621088624, -0.00699374545365572, 0.018841691315174103, -0.005583357065916061, 0.0008639483712613583, 0.015747053548693657, 0.023867053911089897, -0.0025777241680771112, -0.005480659194290638, -0.006439175456762314, -0.006189276464283466, 0.010557372123003006, -0.0010406747460365295, 0.0016448823735117912, -0.015240408480167389, 0.04710422828793526, 0.0026342079509049654, -0.012043071910738945, -0.013453460298478603, -0.0073874215595424175, 0.009708399884402752, -0.009311300702393055, -0.0011313915019854903, -0.013453460298478603, -0.009859024547040462, 0.0492403507232666, 0.0009670744184404612, 0.010529985651373863, -0.03505430743098259, 0.010434133931994438, -0.021648773923516273, 0.0023466532584279776, 0.005487505346536636, 0.011584353633224964, -0.0040052286349236965, 0.026537207886576653, 0.021265367045998573, 0.0004831092956010252, -0.011324184946715832, 0.01834874041378498, 0.00790775939822197, 0.014596832916140556, 0.006233778782188892, -0.005627859849482775, -0.0037279436364769936, -0.018266580998897552, 0.02351103350520134, -0.022223884239792824, -0.014336664229631424, -0.022881152108311653, -0.03620452806353569, 0.037108272314071655, -0.019909752532839775, 0.017910560593008995, -0.01700681634247303, -0.00047497902414761484, -0.004720692522823811, 0.010297203436493874, -0.0020659449510276318, 0.018827997148036957, 0.004518719390034676, 0.003923070151358843, -0.012481250800192356, 0.006206392776221037, -0.014172347262501717, 0.0003761320549529046, -0.023798588663339615, -0.020019296556711197, 0.010824386961758137, 0.00703140115365386, -0.03335636481642723, 0.0033359788358211517, 0.011817135848104954, -0.010584757663309574, -0.007366882171481848, 0.018786918371915817, -0.0039093769155442715, 0.006473408080637455, 0.00012655409227591008, 0.014747457578778267, -0.011529581621289253, -0.014172347262501717, -0.0006046354537829757, 0.015267794951796532, 0.010386208072304726, -0.0065658362582325935, 0.015076091513037682, -0.01834874041378498, -0.0004959465586580336, 0.010509446263313293, 0.006090001668781042, 0.007243644446134567, -0.01128995232284069, -0.013884792104363441, -0.022497745230793953, -0.015349953435361385, 0.0200056042522192, 0.019498959183692932, -0.003151122247800231, 0.0014728629030287266, 0.004648803733289242, -0.0010458097094669938, -0.025345908477902412, -0.0031836433336138725, 0.003082656767219305, -0.008161081001162529, 0.016760341823101044, 0.00131282489746809, 0.02974138967692852, -0.01696573756635189, 0.03442442789673805, 0.004255127627402544, -0.01046836655586958, -0.0077160559594631195, -0.0068739308044314384, -0.029494915157556534, -0.01626739092171192, -0.009010052308440208, 0.014980239793658257, 0.020498555153608322, 0.022059567272663116, 0.006528180092573166, 0.006980052217841148, 0.017034202814102173, -0.005100675858557224, 0.009927489794790745, -0.015404725447297096, -0.0007368593942373991, 0.0007325802580453455, 0.012768805958330631, -0.0070656342431902885, -0.000628170499112457, 0.01943049393594265, -0.0013735879911109805, 0.002740329597145319, 0.014596832916140556, 0.00035730405943468213, 0.011577506549656391, 0.012816731818020344, -0.01379578746855259, -0.00491581903770566, -0.01858152262866497, 0.022456666454672813, 0.019225098192691803, 0.005504622124135494, -0.00722310459241271, -0.00040522986091673374, -0.005768213886767626, -0.010646376758813858, -0.003546510124579072, -0.009961722418665886, 0.0005284676444716752, -0.0205807127058506, -0.013590390793979168, -0.01626739092171192, 0.010858619585633278, -0.017075281590223312, -0.018608909100294113, -0.007996764034032822, 0.013624623417854309, 0.0004570068558678031, -0.001440341817215085, 0.022018488496541977, 0.003854604670777917, 0.00873619131743908, -0.00917437020689249, -0.014898081310093403, 0.009482464753091335, 0.00667538121342659, -0.0028515858575701714, 0.004594031255692244, 0.00898266676813364, -0.013323375955224037, -0.019759127870202065, 0.0024134069681167603, -0.018937543034553528, 0.013727322220802307, -0.02227865718305111, 0.028262536972761154, -0.008058383129537106, 0.00764759024605155, -0.004309899639338255, -0.0027009618934243917, 0.013747861608862877, 0.001054367865435779, 0.0066924975253641605, -0.0004208485479466617, -0.005692902021110058, 0.005312918685376644, -0.022648369893431664, -0.0077160559594631195, -0.010988703928887844, 0.003587589366361499, -0.006035229191184044, -0.0037724461872130632, 0.004970591515302658, 0.014309278689324856, 0.005152024794369936, -0.01743130199611187, 0.004073693882673979, -0.01650017313659191, 0.0006080587627366185, 0.012275854125618935, -0.013384995050728321, -0.001727040857076645, -0.03198705613613129, -0.008996360003948212, -0.016486478969454765, 0.013480846770107746, 0.013631470501422882, 0.01730806566774845, -0.018252888694405556, 0.017034202814102173, -0.001341066905297339, 0.004768618382513523, 0.012227929197251797, 0.008763576857745647, 0.00607973150908947, 0.011529581621289253, 0.009359226562082767, 0.030645133927464485, 0.012590795755386353, -0.032836027443408966, -0.005795599892735481, -0.018074877560138702, 0.003881990909576416, 0.002286745933815837, -0.0024373698979616165, -0.009167523123323917, 0.00637755636125803, 0.02551022544503212, 0.0163495484739542, -0.00938661303371191, -0.009146983735263348, 0.0036594781558960676, -0.018841691315174103, -0.0032332807313650846, -0.009550930000841618, 0.007113560102880001, -0.006915010046213865, 0.001381290378049016, -0.015336260199546814, 0.005360844545066357, 0.005302648991346359, 0.0008712228154763579, 0.006028382573276758, 0.01444620918482542, 0.0060591921210289, -0.020361624658107758, 0.00296797719784081, 0.011899294331669807, 0.0035704730544239283, -0.009496157057583332, -0.002314132172614336, -0.010721689090132713, -0.017266985028982162, 0.003573896363377571, -0.006014689337462187, -0.000936264987103641, -0.01915663108229637, -0.011016090400516987, 0.011426882818341255, 0.014418822713196278, 0.018567828461527824, 0.0024253884330391884, 0.040421999990940094, 0.00302959606051445, 0.04124358668923378, 0.00023492205946240574, -0.003748483257368207, -0.0076955161057412624, 0.004268820397555828, -0.0032863414380699396, -0.006305667571723461, -0.025962097570300102, -0.00034724819124676287, -0.007058787625283003, -0.001502816565334797, 0.010167119093239307, -0.00983163807541132, -0.02489403635263443, 0.0075448923744261265, -0.023921826854348183, 0.0025982637889683247, 0.0073121096938848495, 0.018335046246647835, 0.017718857154250145, -0.015308873727917671, 0.025154205039143562, 0.009995955042541027, -0.016952045261859894, -0.027290327474474907, 0.020224692299962044, -0.02708492986857891, 0.024387391284108162, -0.006990321911871433, -0.0085581811144948, 0.008352784439921379, -0.0064905243925750256, 0.019868671894073486, 0.00604207580909133, 0.02093673311173916, -0.0131795983761549, 0.018252888694405556, 0.014309278689324856, 0.01525410171598196, -0.007298416458070278, 0.0300152525305748, 0.018937543034553528, -0.016527559608221054, 0.007722902577370405, 0.00840755645185709, -0.01335076242685318, -0.009537236765027046, 0.00938661303371191, 0.0046111480332911015, -0.001527635264210403, 0.018458284437656403, 0.0027608692180365324, -3.712110992637463e-05, -0.02123798243701458, 0.0036457849200814962, -0.0005806725821457803, -0.01361777726560831, -0.0018810881301760674, -0.023305637761950493, -0.0024527746718376875, -0.019553732126951218, -0.00135647167917341, -0.00398126570507884, -0.010899699293076992, -0.020567020401358604, 0.0005716864834539592, -0.011789750307798386, 0.0014891234459355474, -0.01027666311711073, -0.009749479591846466, 0.0078119076788425446, -0.009256528690457344, 0.0127961914986372, 0.01573335938155651, -0.006449445150792599, 0.006760962773114443, -0.0296318456530571, 0.0018057761481031775, 0.004234587773680687, -0.004090810660272837, 0.006832851562649012, 0.006309091113507748, 0.003267513355240226, 0.0200056042522192, 0.002009460935369134, -0.003394174622371793, -0.0037724461872130632, 0.0019016277510672808, -0.012241621501743793, 0.013206984847784042, 0.007401114795356989, -0.02897457778453827, 0.004946628585457802, 0.012892043218016624, -0.0029577072709798813, -0.011618586257100105, 0.004946628585457802, 0.011105095036327839, 0.0009850466158241034, -0.003478044643998146, 0.0011793173616752028, -0.004012075252830982, 0.00025717332027852535, -0.006357016507536173, 0.0011990010971203446, 0.0037108270917087793, -0.00015030305075924844, 0.03324682265520096, -0.007866679690778255, 0.010879159905016422, -0.004025768022984266, -0.022757913917303085, -0.010776461102068424, 0.006309091113507748, -0.007859833538532257, -0.009989108890295029, -0.026564592495560646, 0.029522299766540527, -0.006449445150792599, 0.030261727049946785, -0.004847353789955378, 0.01127625908702612, 0.005220490507781506, 0.004641957115381956, 0.0023911558091640472, 0.02034793049097061, -0.005288955755531788, 0.003625245299190283, -0.004200355149805546, -0.0035328171215951443, 0.01296735554933548, 0.005330034997314215, 0.021292753517627716, 0.029494915157556534, 0.012939969077706337, -0.0075448923744261265, 0.01777363009750843, 0.02208695374429226, 0.03185012564063072, -0.0023192670196294785, 0.007243644446134567, -0.011221487075090408, -0.007236797828227282, -0.006216662470251322, 0.01915663108229637, 0.005511468276381493, 0.0050732893869280815, 0.012364859692752361, -0.009078518487513065, 0.009441385045647621, -0.022949617356061935, -0.009324993938207626, -0.0032709366641938686, 0.0006029238575138152, 0.008339091204106808, 0.00813369546085596, -0.003310304367914796, 0.0007621059776283801, -0.016144152730703354, 0.004292783327400684, -0.020210999995470047, -0.008092615753412247, -0.014117575250566006, -0.020074069499969482, -0.024223074316978455, -0.02142968401312828, 0.019444186240434647, 0.0025161050725728273, 0.004778888076543808, 0.032726485282182693, -0.001692808116786182, -0.031220244243741035, 0.00042940673301927745, 0.007709209341555834, 0.002108735730871558, -0.011844522319734097, 0.004289360251277685, 0.008441790007054806, -0.005668939091265202, -0.006668534595519304, -0.0037382133305072784, 0.010208197869360447, -0.005610743537545204, -0.008743037469685078, -0.023497341200709343, 0.005412193480879068, 0.023072855547070503, 0.0008917624363675714, 0.002389444038271904, -0.006839698180556297, 0.01107770949602127, -0.009509850293397903, -0.008448636159300804, -0.002659882651641965, 0.013056360185146332, 0.003043289063498378, 0.003714250400662422, 0.03354806825518608, 0.003994958940893412, 0.0003350527840666473, 0.01439143717288971, 0.014774843119084835, -0.0028858184814453125, 0.008051536045968533, -0.0011647683568298817, -0.002257648156955838, -0.007900912314653397, -0.013193291611969471, 0.034342266619205475, 0.01854044198989868, 0.005470389034599066, -0.022716835141181946, 0.007661283481866121, 0.010776461102068424, -0.00036971340887248516, 0.013172752223908901, 0.013241217471659184, 0.03267171233892441, 0.002747175982221961, 0.002974823582917452, -0.002659882651641965, 0.0034883145708590746, 0.008612953126430511, -0.029604459181427956, -0.01111878827214241, -0.014049110002815723, -0.023223480209708214, -0.003002209821715951, -0.024633867666125298, -0.0015815518563613296, -0.004077117424458265, -0.002971400273963809, 0.01685619354248047, 0.005987303331494331, -0.0008797809714451432, -0.015377338975667953, -0.02723555453121662, 0.005918837618082762, 0.014911774545907974, 0.013268603943288326, -0.0029166280291974545, 0.01723959855735302, 0.00764759024605155, 0.0072915698401629925, -0.02043008990585804, 0.012700340710580349, -0.009503004141151905, 0.021717239171266556, 0.0018485670443624258, -0.018074877560138702, 0.014049110002815723, 0.007442194037139416, -0.033602841198444366, 0.007353188935667276, -0.0070450943894684315, 0.005665515549480915, -0.010543678887188435, -0.014583139680325985, 0.004652227275073528, 0.008318551816046238, 0.015432111918926239, -0.0010714842937886715, 0.006168736610561609, -0.005381383933126926, 0.0001919172063935548, 0.042612895369529724, 0.02850901149213314, -0.006216662470251322, 0.001408676616847515, -0.013063207268714905, -0.039655186235904694, 0.016418013721704483, 0.012857810594141483, -0.023209786042571068, -0.0013145365519449115, -0.004258550703525543, -0.012193695642054081, 0.01719851978123188, 0.02062179334461689, -0.0150076262652874, 0.004018921870738268, -0.0034472353290766478, -0.004142159596085548, -0.00525129958987236, -0.009865870699286461, -0.011392650194466114, 0.007428500801324844, -0.027262941002845764, 0.008955280296504498, 0.008352784439921379, -0.006935549899935722, -0.008530794642865658, -0.0028755487874150276, -0.005504622124135494, 0.013480846770107746, 0.027331406250596046, -0.01109824888408184, -0.03598544001579285, -0.004758348688483238, -0.004621417727321386, 0.01692465879023075, 0.013864252716302872, 0.0035944359842687845, 0.002423676894977689, -0.01482961606234312, -0.008934740908443928, -0.025181591510772705, 0.00047326739877462387, -0.0209641195833683, -0.024346312507987022, 0.012885197065770626, 0.01828027330338955, 0.0037655995693057775, -0.021333832293748856, -0.005288955755531788, 0.00022871738474350423, 0.02162138745188713, -0.007394268177449703, 0.0005515747470781207, -0.0028139299247413874, 0.010393055155873299, 0.00813369546085596, 0.0021566615905612707, 0.000684226572047919, 0.01192668080329895, -0.01402172353118658, 0.0024767376016825438, 0.006654841359704733, 0.03571157529950142, -0.0037279436364769936, 0.019444186240434647, -0.004429714288562536, 0.031932283192873, 0.0061926995404064655, 0.0008459761738777161, -0.006822581868618727, -0.019334642216563225, 0.014144960790872574, -0.002961130579933524, -0.012816731818020344, -0.0025469146203249693, -0.03601282462477684, -0.01792425476014614, -0.01854044198989868, 0.01828027330338955, 0.017869481816887856, -0.0009790558833628893, 0.00879096332937479, 0.0022508015390485525, -0.023483648896217346, 0.003864874364808202, -0.0015721378149464726, 0.011509041301906109, -0.002933744341135025, -0.0071204062551259995, -0.024948809295892715, 0.006357016507536173, -0.012885197065770626, -0.0110640162602067, 0.018485670909285545, 0.027988674119114876, -0.01400803029537201, 0.011461115442216396, -0.0005674074054695666, 0.0015978123992681503, -0.006250895094126463, 0.013871099799871445, 0.01463791262358427, -0.015637507662177086, 0.00024305233091581613, -0.03970995917916298, -0.020361624658107758, 0.013378147967159748, 0.01643170788884163, 0.005737404339015484, -0.02104627899825573, 0.01938941515982151, -0.0018314507324248552, 0.013111133128404617, -0.0020830612629652023, 0.023962905630469322, -0.01150219514966011, 0.01487069483846426, 0.0234699547290802, -0.00218404782935977, 0.020224692299962044, 0.006048922426998615, 0.030946381390094757, 0.01927986927330494, -0.0012743130791932344, -0.023730123415589333, 0.011878754943609238, 0.01377524808049202, -0.008414403535425663, 2.7680365747073665e-05, 0.006415212526917458, 0.008003611117601395, -0.0051554483361542225, 0.010119193233549595, -0.010577911511063576, 0.003098061541095376, 0.009578315541148186, -0.019909752532839775, 0.023593192920088768, 0.007147792726755142, -0.023839669302105904, 0.01762300543487072, 0.025633463636040688, -0.002043693559244275, -0.005576510448008776, 0.0034729097969830036, -0.021607695147395134, 0.017979025840759277, 0.025948403403162956, -0.0004831092956010252, 0.0026547478046268225, 0.017362836748361588, 0.006980052217841148, 0.02555130422115326, 0.0037313669454306364, -0.005391654092818499, -0.02362057939171791, 0.02523636445403099, -0.002165219746530056, -0.005610743537545204, 0.0012606200762093067, 0.02127906121313572, 0.012508637271821499, 0.002214857144281268, 0.02661936543881893, -0.007106713484972715, -0.020252078771591187, 0.002336383331567049, -0.04819967597723007, -0.00037655996857210994, -0.009071671403944492, -0.01773255132138729, -0.0024681794457137585, 0.017143748700618744, -0.0016868173843249679, 0.028180377557873726, -0.0001685961615294218, -0.013754707761108875, -0.023921826854348183, -0.00472411559894681, 0.0002578152052592486, 0.006849967874586582, -0.007894066162407398, 0.008927893824875355, -0.027564188465476036, 0.00043004858889617026, 0.007852986454963684, 0.013754707761108875, 0.0323156900703907, -0.0012426478788256645, -0.012631874531507492, 0.02316870726644993, -0.006805465556681156, -0.013542464934289455, -0.009188062511384487, -0.004525566007941961, -0.013145365752279758, -0.013268603943288326, -0.027796970680356026, -0.010304049588739872, -0.006439175456762314, -0.0010500887874513865, -0.022648369893431664, -0.00898266676813364], "0969b5a3-21bb-47da-ae53-9e00bdb2279c": [-0.031387943774461746, 0.012371686287224293, -0.00230405293405056, 0.044399064034223557, -0.009139757603406906, -0.029553040862083435, 0.02500748820602894, 0.04061805456876755, -0.03680924326181412, 0.013469847850501537, 0.0028340197168290615, 0.03883875533938408, -0.01581907831132412, -0.03280581906437874, -0.01232303399592638, 0.026884092018008232, -0.022894570603966713, -4.3195563193876296e-05, 0.02186591364443302, -0.00962628424167633, 0.050793420523405075, 0.005650663748383522, -0.018974553793668747, 0.002450010972097516, -0.04428785666823387, 0.004569878801703453, -0.02921942248940468, 0.01903015561401844, -0.03199957683682442, -0.008687982335686684, 0.0204063318669796, 0.016569718718528748, 0.011023311875760555, -0.007270103320479393, 0.00032080375240184367, -0.026606077328324318, 0.03005346842110157, 0.009800043888390064, 0.0023110031615942717, 0.000703726545907557, -0.0789007768034935, 0.022519249469041824, -0.017348162829875946, -0.011085865087807178, -0.025410611182451248, 0.020753851160407066, 0.05643713101744652, 0.013045874424278736, -0.0013014597352594137, -0.05671514943242073, -0.0033431355841457844, -0.014637512154877186, -0.048013266175985336, 0.013574103824794292, -0.017667880281805992, -0.07828914374113083, 0.007805283181369305, 0.06933704763650894, 0.0008674950222484767, -0.061608217656612396, -0.004795765969902277, -0.016083192080259323, -0.0044968994334340096, -0.006036410108208656, -0.044176653027534485, -0.031193330883979797, -0.0030164674390107393, 0.01422048918902874, -0.06171942502260208, -0.0009435148676857352, -0.0073604583740234375, 0.026383664458990097, -0.012045018374919891, 0.03906116634607315, 0.0106271393597126, 0.008562874980270863, 0.05362917482852936, -0.01374091301113367, -0.011009410955011845, 0.012190976180136204, 0.017181353643536568, -0.0022675632499158382, 0.043787430971860886, 0.00941777229309082, 0.06027374416589737, -0.0038783152122050524, -0.02463216707110405, -0.03130453824996948, -0.019391575828194618, -0.03419589623808861, 0.014943329617381096, 0.03722626715898514, 0.002668948145583272, 0.004646332934498787, -0.0048687453381717205, -0.001764529151841998, 0.0015117089496925473, 0.023923227563500404, 0.022088326513767242, 0.0009730540332384408, -0.024771174415946007, 0.06233105808496475, -0.00696428632363677, 0.022936273366212845, -0.0021407187450677156, 0.01623610034584999, -0.015096237882971764, -0.022157829254865646, -0.021323783323168755, 0.038171518594026566, 0.006884356960654259, -0.019516684114933014, -0.016097093001008034, 0.004208458587527275, -0.01782078854739666, -0.01681993342936039, 0.00010496168397367, -0.00390611682087183, -0.017987597733736038, -0.022366341203451157, 0.007735779508948326, 0.0004930429859086871, 0.005369172897189856, 0.035724982619285583, 0.019683493301272392, -0.03547476977109909, -0.007023364771157503, 0.009765291586518288, 0.007144996430724859, -0.03208298236131668, -0.008569825440645218, 0.004973000846803188, -0.01782078854739666, -0.008236207067966461, -0.0033778874203562737, -0.0032701564487069845, -0.0011164057068526745, 0.03141574189066887, -0.012045018374919891, 0.03903336822986603, -0.014171836897730827, -0.028093459084630013, 0.002940013073384762, 0.009139757603406906, 0.0184602253139019, -0.02160179801285267, -0.053990595042705536, -0.0009217949118465185, 0.016333406791090965, 0.03305603563785553, -0.031137729063630104, -0.04011762514710426, 0.0103004714474082, -0.009452524594962597, -0.016083192080259323, -0.037949107587337494, 0.010189265944063663, 0.0212542787194252, -0.010175365023314953, 0.00029734618146903813, -0.0013718323316425085, -0.033751074224710464, 0.01292771752923727, 7.873483991716057e-05, 0.028969207778573036, 0.043342605233192444, 0.019169164821505547, 0.012538495473563671, -0.038532938808202744, 0.013275236822664738, 0.029136016964912415, -0.02625855803489685, -0.014957230538129807, 0.006929534487426281, -0.022755563259124756, 0.03525235503911972, 0.046372972428798676, 0.020892860367894173, 0.04181352257728577, -0.015304749831557274, -0.022088326513767242, -0.0014726129593327641, -0.022157829254865646, 0.0029747651424258947, -0.004295338410884142, 0.001553411246277392, 0.013900771737098694, 0.035363562405109406, 0.01583297923207283, 0.012392537668347359, -0.006418681237846613, 0.02585543505847454, -0.03369547054171562, 0.022713860496878624, -0.04306459054350853, -0.012747007422149181, -0.021170875057578087, -0.01410928275436163, -0.0284687802195549, 0.010550685226917267, -0.01602759025990963, -0.024284647777676582, -0.025396710261702538, -0.006714072544127703, -0.03330624848604202, 0.0001056132823578082, 0.002387457527220249, -0.02200492098927498, 0.022130027413368225, -0.02485457994043827, 0.0569375604391098, -0.04309239238500595, 0.011843456886708736, 0.004865270107984543, -0.009466425515711308, 0.01283041201531887, 0.006926059257239103, 0.03472412750124931, -0.015082336962223053, -0.014790421351790428, -0.019878102466464043, 0.009619333781301975, -0.029330627992749214, -0.02023952268064022, -0.04804106801748276, -0.06633447855710983, -0.02143498882651329, 0.022102227434515953, -0.044982895255088806, -0.015388154424726963, 0.0288580022752285, 0.016958940774202347, -0.03583618998527527, -0.04242515563964844, -0.033139437437057495, 0.041174083948135376, 0.006926059257239103, -0.016736529767513275, 0.021754708141088486, 0.0027749415021389723, 0.002196321962401271, 0.01041167788207531, 0.03611420467495918, -0.00444824667647481, 0.004410019610077143, 0.0023110031615942717, -0.0006754905916750431, -0.0022032721899449825, 0.01032827328890562, -0.03450171649456024, -0.0010981609812006354, -0.00789563823491335, 0.0012597574386745691, -0.01451240573078394, -0.035558175295591354, 0.042981185019016266, 0.02844097837805748, 0.018098805099725723, 0.016110993921756744, -0.026355862617492676, 0.030275879427790642, 0.037559885531663895, 0.014985031448304653, 0.018891148269176483, 0.015012833289802074, -0.00941777229309082, -0.005400449503213167, -0.033778876066207886, 0.010634089820086956, 0.04584474489092827, -0.02464606799185276, 0.01686163619160652, -0.004198032896965742, 0.0026741609908640385, 0.032944828271865845, 0.011092815548181534, -0.007016414310783148, -0.02607784792780876, 0.02282506600022316, -0.006571589503437281, 0.0039686704985797405, 0.030331483110785484, 0.0003370937192812562, 0.04353721812367439, -0.007673225831240416, -0.012482892721891403, -0.0003496912831906229, -0.029386231675744057, -0.02404833398759365, -0.015082336962223053, 0.015096237882971764, 0.014248291030526161, 0.01093295682221651, 0.03102652169764042, 0.02883020043373108, 0.009327417239546776, -0.037726692855358124, -0.0480966679751873, -0.01700064353644848, 0.014637512154877186, -0.004865270107984543, 0.005205838941037655, 0.022699959576129913, -0.051766473799943924, 0.025341106578707695, -0.04829128086566925, 0.05401839688420296, 0.024354152381420135, -0.028746794909238815, 0.011600193567574024, 0.039561595767736435, -0.02243584580719471, -0.013594954274594784, -0.005734068341553211, 0.043954238295555115, -0.01784859038889408, 0.0023005777038633823, -0.016555819660425186, 0.0037462578620761633, -0.03085971251130104, 0.04325919970870018, -0.013150129467248917, -0.050765618681907654, 0.06483320146799088, 0.02944183349609375, -0.02200492098927498, -0.0009296141215600073, -0.019502783194184303, -0.008041596040129662, -0.028969207778573036, -0.005782721098512411, 0.005511655937880278, -0.03224978968501091, 0.0014595809625461698, -0.034779731184244156, -0.0008648885996080935, -0.0400342233479023, -0.049570150673389435, -0.009431673213839531, -0.03266681358218193, -0.0016724365996196866, -0.001821001060307026, 0.00910500530153513, -0.005893927067518234, 0.04470488056540489, 0.003617675742134452, 0.010710544884204865, 0.0023353295400738716, -0.026119548827409744, 0.009772242046892643, 0.0008887805743142962, -0.018293416127562523, 0.029803253710269928, 0.02421514317393303, 0.018738240003585815, -0.023075280711054802, 0.0174176674336195, 0.01843242347240448, -0.0001434603036614135, -0.002147669205442071, 0.01965569145977497, 0.010654941201210022, -0.02322818897664547, 0.0026741609908640385, 0.008236207067966461, 0.02564692310988903, -0.006251872051507235, -0.004090302158147097, -0.001687206095084548, -0.008868692442774773, -0.02685629017651081, 0.03667023405432701, 0.02748182602226734, 0.021782508119940758, -0.04086826741695404, -0.00961238332092762, 0.02301967702805996, 0.01310842763632536, -0.031554751098155975, 0.026967497542500496, 0.004218884278088808, 0.023297693580389023, 0.00650556106120348, 0.0017019757069647312, 0.03828272596001625, -0.009542879648506641, 0.009438623674213886, -0.009271814487874508, 0.024006633087992668, 0.002573380246758461, -0.007165847811847925, 0.0017436780035495758, -0.03186056762933731, -0.011259624734520912, -0.018752140924334526, 0.02524380199611187, -0.003174588782712817, -0.05304534360766411, 0.02121257781982422, -0.03344525769352913, 0.019711293280124664, -0.0031641630921512842, -0.006762725301086903, -0.0027957926504313946, 0.014262191951274872, -0.014665313996374607, -0.033389654010534286, 0.00455945311114192, 0.019141362980008125, -0.01883554458618164, -0.016917238011956215, 0.023853724822402, 0.06233105808496475, 0.0340568907558918, 0.009654086083173752, 0.009424722753465176, 0.016750428825616837, 0.0007397817098535597, -0.04092387109994888, -0.005602010991424322, 0.034918736666440964, 0.043175797909498215, -0.004281437490135431, 0.011794804595410824, 0.02367301471531391, 0.003198915161192417, 0.03566937893629074, 0.019752996042370796, -0.011996366083621979, -0.0022032721899449825, -0.0018713913159444928, 0.016124894842505455, -0.0005829635774716735, -0.009869547560811043, 0.025577420368790627, -0.0075411684811115265, 0.02046193554997444, 0.023561807349324226, 0.015096237882971764, 0.019711293280124664, 0.003701080335304141, 0.006547263357788324, 0.005786196328699589, 0.017097948119044304, -0.0204063318669796, -0.01442900113761425, -0.032889224588871, -0.023103082552552223, -0.01390772219747305, 0.012823461554944515, -0.0021268180571496487, 0.02863558940589428, -0.03986741229891777, 0.011697499081492424, 0.021115271374583244, 0.037587687373161316, -0.01679213158786297, -0.008166703395545483, 0.024493159726262093, -0.054352015256881714, -0.02364521287381649, 0.004840943496674299, 0.02460436522960663, 0.012475942261517048, 0.005091157741844654, -0.042369551956653595, 0.023186486214399338, 0.0232698917388916, -0.006491660140454769, -0.0037219314835965633, -0.00941777229309082, 0.018321216106414795, -0.008423867635428905, 0.02727331407368183, 0.01783468946814537, 0.04034003987908363, 0.012163175269961357, -0.03625321388244629, 0.03169376030564308, 0.005956480745226145, 0.018752140924334526, -0.04704020917415619, 0.0182656142860651, -0.001893980079330504, 0.020684348419308662, -0.01531864982098341, 0.022477546706795692, -0.024173442274332047, 0.016667025163769722, -0.02025342360138893, 0.03553037345409393, 0.0036593780387192965, 0.008868692442774773, 0.011551541276276112, -0.02162959985435009, -0.03828272596001625, -0.001271920627914369, -0.027106504887342453, -0.030275879427790642, -0.09730540215969086, 0.048986319452524185, -0.013414244167506695, -0.0034908312372863293, 0.01320573315024376, -0.023492304608225822, 0.02427074685692787, -0.05151626095175743, -0.008535074070096016, -0.05749358981847763, -0.023728616535663605, -0.002910474082455039, -0.019474981352686882, -0.022769464179873466, 0.010133662261068821, -0.01804320141673088, 0.01001550629734993, 0.003082496114075184, -0.03680924326181412, -0.00032210693461820483, 0.000374234834453091, -0.012295232154428959, 0.005188462790101767, -0.014456802047789097, -0.0041563306003808975, -0.03241660073399544, 0.006185843143612146, 0.0027002247516065836, -0.010078059509396553, 0.043982040137052536, 0.0024308974388986826, -0.0005660220631398261, 0.049987174570560455, 0.018543628975749016, 0.017320360988378525, 0.0030129922088235617, -0.008062447421252728, -0.0015907695051282644, 0.021879814565181732, 0.016958940774202347, 0.024340251460671425, -0.02403443306684494, 0.006363078020513058, -0.00730485562235117, -0.0024778125807642937, -0.014846024103462696, 0.012385587207973003, 0.007436912972480059, 0.0011224872432649136, 9.855430107563734e-05, 0.005855700001120567, -0.016708727926015854, -0.00941082276403904, -0.02764863520860672, 0.006599391344934702, 0.02003101259469986, -0.034835334867239, 0.038171518594026566, -0.027606932446360588, -0.01919696480035782, 0.01684773527085781, -0.02766253612935543, 0.035919591784477234, 0.016069291159510612, 0.004378743004053831, -0.01222572848200798, 0.003923492971807718, -0.02545231208205223, -0.007374359294772148, -0.00830571074038744, -0.008667130954563618, 0.02265825681388378, -0.027787642553448677, 0.03350085765123367, -0.008326562121510506, -0.020336829125881195, 0.040173228830099106, -0.0036072502844035625, 0.002752352738752961, -0.027718137949705124, -0.024798976257443428, 0.016541918739676476, -0.010210116393864155, -0.014248291030526161, -0.009327417239546776, 0.04184132069349289, 0.010571536608040333, -0.025952739641070366, -0.02086505852639675, -0.00972358975559473, 0.0015673119341954589, 0.007742729503661394, 0.02746792510151863, -0.006342227105051279, -0.0013370804954320192, -0.012065869756042957, -0.00018440242274664342, 0.012482892721891403, 0.04100727662444115, 0.012295232154428959, -0.0007780088344588876, 0.012184026651084423, -0.005087682511657476, 0.0038296624552458525, -0.003982570953667164, -0.04281437769532204, 0.029108215123414993, -0.005376123357564211, 0.00792344007641077, -0.018501926213502884, 0.009362169541418552, 0.010085009969770908, -0.001389208366163075, -0.0020069237798452377, -0.011273525655269623, 0.00761762261390686, 0.006105913780629635, 0.006887832190841436, 0.031526949256658554, 0.002950438763946295, 0.01162104494869709, 0.020559241995215416, -0.020128317177295685, 0.03831052780151367, -0.005094632972031832, -0.0018262139055877924, -0.0001870088162831962, -0.0024812878109514713, 0.00900769978761673, -0.0102031659334898, -0.024562662467360497, 0.019752996042370796, 0.020948462188243866, 0.016166597604751587, -0.02465996891260147, 0.03819932043552399, 0.004059025086462498, 0.003299695672467351, 0.03002566657960415, -0.03530795872211456, -0.029803253710269928, -0.02764863520860672, 0.002684586448594928, 0.002192846732214093, 0.026564374566078186, -0.0008792238077148795, 0.004931298550218344, -0.021198676899075508, 0.024368053302168846, 0.01983640156686306, 0.02564692310988903, -0.030915316194295883, 0.01884944550693035, 0.011940762400627136, 0.01583297923207283, 0.002114654751494527, -0.02845487929880619, -0.005442152265459299, 0.00034382689045742154, 0.006860030815005302, 0.005727117881178856, -0.019308172166347504, 0.0344461128115654, 0.019780797883868217, 0.012538495473563671, 0.008979897946119308, 0.0024169967509806156, 0.04826347902417183, -0.013157079927623272, 0.03358426317572594, 0.00293306284584105, 0.0032406174577772617, -0.0005938235553912818, 0.048791706562042236, 0.013706160709261894, -0.000324496126268059, -0.004736687988042831, -0.02446535788476467, 0.020475836470723152, -0.01725085824728012, -0.021351585164666176, -0.011183170601725578, -0.008131951093673706, -0.05921728536486626, 0.0039964718744158745, 0.007680176291614771, 0.0012623638613149524, -0.002595969010144472, 0.03544696792960167, -0.024534862488508224, 0.0204063318669796, 0.018863346427679062, 0.0027245511300861835, -0.02146279066801071, -0.0029765027575194836, -0.004086826927959919, 0.0013249173061922193, 0.0052475412376224995, 0.0004191951302345842, 0.02724551223218441, -0.02944183349609375, -0.05201668664813042, -0.014470702968537807, 0.00910500530153513, -0.02941403165459633, -0.012177076190710068, -0.004663708619773388, -0.023909326642751694, -0.023964930325746536, -0.003397000953555107, -0.0046880352310836315, 0.018891148269176483, 0.00019613119366113096, 0.0026967497542500496, -0.020378531888127327, 0.011482037603855133, 0.0005564652383327484, 0.004159805830568075, 0.01921086572110653, 0.008243157528340816, 0.023103082552552223, 0.00941082276403904, 0.021504493430256844, -0.007902588695287704, -0.019183063879609108, -0.009445574134588242, 0.00660286657512188, 0.02966424636542797, 0.008389115333557129, -0.0012119734892621636, 0.005497755017131567, -8.101543062366545e-05, 0.005595060531049967, -0.005775770638138056, -0.00107470341026783, -0.03864414617419243, 0.016194399446249008, 0.019377674907445908, 0.022491447627544403, 0.04843028634786606, -0.03066510148346424, -0.013733962550759315, -0.011461186222732067, 0.01201721653342247, 0.005271867383271456, -0.023172585293650627, 0.006543788127601147, 0.036781441420316696, -0.012086721137166023, 0.005025128833949566, -0.02542451024055481, 0.017334261909127235, -0.02442365512251854, 0.016277803108096123, -0.0028114309534430504, 0.008076348342001438, -0.017125749960541725, 0.02546621300280094, 0.019099660217761993, -0.012149274349212646, 0.014804321341216564, 0.006686271168291569, 0.030720705166459084, 0.023589609190821648, -0.04587254673242569, 0.004010372795164585, -0.005132860038429499, -0.034779731184244156, 0.041952528059482574, 0.012156224809587002, 0.017278658226132393, 0.06305389851331711, 0.027968352660536766, -0.009946001693606377, 0.013699210248887539, -0.031165529042482376, 0.012482892721891403, 0.01822391152381897, 0.002060789382085204, -0.023283792659640312, 0.004086826927959919, -0.014248291030526161, -0.00782613456249237, 0.002441322896629572, -0.017070148140192032, 0.010974658653140068, -0.022282937541604042, 0.031109927222132683, 0.04868050292134285, -0.003044269047677517, 0.015874681994318962, 0.009647135622799397, 0.012705305591225624, -0.03869974613189697, -0.015443757176399231, 0.018905049189925194, -0.008382164873182774, -0.002496926113963127, -0.027968352660536766, 0.023339394479990005, 0.01303892396390438, -0.011037212796509266, 0.010397776961326599, 0.021685203537344933, 0.05207229033112526, 0.00920231081545353, -0.02225513570010662, 0.005935629364103079, 0.02381202206015587, -0.008979897946119308, -0.002847920637577772, -0.014185736887156963, -0.0039860461838543415, -0.014039779081940651, 0.019739095121622086, -0.01622220128774643, -0.009952952153980732, 0.009028551168739796, -0.01271920558065176, 0.01659752056002617, -0.023339394479990005, 0.012197926640510559, -0.0019739095587283373, 0.0035724982153624296, -0.016500215977430344, -0.00812500063329935, -0.027787642553448677, 0.0003123329661320895, -0.01962788961827755, -0.020114416256546974, 0.01542985625565052, 0.020767752081155777, 0.00010311548976460472, -0.004281437490135431, 0.020336829125881195, -0.03344525769352913, -0.003324022050946951, 0.016069291159510612, 0.018293416127562523, -0.03569718077778816, 0.043370407074689865, -0.004149380140006542, -0.028691193088889122, -0.027384519577026367, 0.01982250064611435, 0.01883554458618164, -0.0037288819439709187, 0.012253530323505402, -0.0061302403919398785, 0.06110779196023941, 0.012920767068862915, 2.0403183953021653e-05, -0.03425149992108345, 0.0023075281642377377, -0.004684560000896454, -0.01053678523749113, 0.024381952360272408, 0.017695682123303413, 0.010849552229046822, 0.000999986776150763, 0.008291809819638729, -0.0017063197446987033, -0.009438623674213886, -0.0032944828271865845, -0.00496605085209012, -0.026675580069422722, -0.016486315056681633, -0.005487329326570034, 0.012441190890967846, -0.0036837044171988964, 0.0038296624552458525, -0.01070359442383051, 0.003614200511947274, 0.004670659080147743, -0.0015203969087451696, -0.019725194200873375, -0.007534218020737171, -0.00660286657512188, 0.0037149812560528517, -0.03558597341179848, -0.016986742615699768, -0.009000749327242374, 0.023742517456412315, -0.01704234629869461, 0.02023952268064022, -0.04854149371385574, 0.013059774413704872, 0.016541918739676476, 0.005108533427119255, -0.000910500530153513, -0.01884944550693035, 0.006835704203695059, 0.013601904734969139, 0.010335223749279976, -0.04820787534117699, -0.007311805617064238, -0.00782613456249237, 0.008111100643873215, -0.005546407774090767, 0.0014335170853883028, -0.04325919970870018, 0.010390826500952244, -0.05607571080327034, -0.020739950239658356, 0.00913280714303255, 0.041952528059482574, -0.033167239278554916, 0.006780101452022791, 0.017070148140192032, 0.013358641415834427, -0.0024482733570039272, 0.011134518310427666, 0.004476048517972231, -0.023561807349324226, -0.012594099156558514, 0.0046602338552474976, 0.029747651889920235, 0.017487170174717903, 0.009146708063781261, 0.003044269047677517, 0.009334367699921131, -0.00691215880215168, 0.00048739579506218433, 0.025730328634381294, 0.0048583196476101875, 0.011516788974404335, -0.0007966879638843238, 0.012281331233680248, -0.007284004241228104, 0.01541595533490181, -0.0018157883314415812, 0.017751285806298256, 0.0009304828708991408, 0.010557635687291622, -0.006571589503437281, -0.01986420340836048, -0.001721958047710359, 0.011148418299853802, 0.007044216152280569, -0.016667025163769722, -0.00725620286539197, -0.016514116898179054, -0.014832123182713985, 0.03400128707289696, -0.02705090120434761, -8.780291682342067e-05, -0.05007058009505272, 0.003812286537140608, 0.03642002120614052, -0.013497648760676384, 0.03144354373216629, -0.006988612934947014, 0.02121257781982422, 0.024979686364531517, 0.00701293908059597, 0.023325495421886444, 0.021963218227028847, -0.008542024530470371, 0.02460436522960663, 0.05304534360766411, 0.012552396394312382, -0.011502888053655624, -0.0013362116878852248, -0.01966959238052368, 0.01100246049463749, -0.017723483964800835, -0.0023474928457289934, -0.02160179801285267, 0.007985993288457394, -0.006536837667226791, -0.0008965997840277851, -0.00941082276403904, -0.048597097396850586, -0.0018349018646404147, 0.017904194071888924, -0.01451240573078394, 0.010258769616484642, -0.026592176407575607, -0.002460436662659049, -0.005098107736557722, -0.04045124351978302, 0.01840462163090706, 0.012288281694054604, 0.0026793736033141613, -0.004180657211691141, -0.015735672786831856, -0.01541595533490181, -0.023492304608225822, -0.006349177565425634, -0.004111153073608875, 0.006832228973507881, 0.03163815662264824, -0.0036350516602396965, -0.006696696858853102, -0.025799831375479698, 0.02963644452393055, -0.0027367144357413054, -0.03589179366827011, -0.01960008777678013, 0.006363078020513058, -0.01919696480035782, 0.0070094638504087925, -0.0010364762274548411, -0.04648417979478836, 0.01623610034584999, 0.030359284952282906, 0.004034698940813541, -0.030136872082948685, -0.029970062896609306, -0.004305764101445675, -0.014929428696632385, -0.03667023405432701, 0.007471664808690548, -0.018182208761572838, -0.022950174286961555, 0.0021650451235473156, 0.015888581052422523, 0.004020798020064831, -0.05365697667002678, -0.020545341074466705, 0.04064585641026497, 0.02623075619339943, -0.007798332720994949, 0.03144354373216629, -0.03122113272547722, -0.0003738004306796938, -0.018724339082837105, -0.018112706020474434, 0.02322818897664547, 0.016528017818927765, 0.00859762728214264, -0.0021737331990152597, -0.03422369807958603, 0.0016985004767775536, 0.011794804595410824, 0.013365591876208782, -0.031971774995326996, -0.013782614842057228, -0.05877246335148811, 0.006807902827858925, -0.011843456886708736, 0.0047158366069197655, 0.012392537668347359, 0.010710544884204865, 0.00831961166113615, 0.006283148657530546, 0.0012241366785019636, -0.00046350384945981205, 0.01212842296808958, -0.0036837044171988964, 0.015666170045733452, -0.007078967988491058, -0.028607787564396858, 0.012184026651084423, -0.00950117688626051, -0.008437768556177616, 0.013914672657847404, 0.007138045970350504, -0.017292559146881104, 0.008618478663265705, 0.014790421351790428, -0.008590676821768284, 0.005421300884336233, 0.011238773353397846, -0.019502783194184303, 0.013636657036840916, -0.006995563395321369, -0.020684348419308662, 0.02502138912677765, -0.017306460067629814, -0.02360351011157036, -0.009000749327242374, 0.011739201843738556, 0.023325495421886444, 0.006550738587975502, -0.010390826500952244, -0.01423439010977745, -0.02566082403063774, -0.005330945830792189, 0.012580198235809803, 0.0036350516602396965, 0.020726051181554794, 0.012093671597540379, -0.003836612915620208, 0.0020329877734184265, -0.007582870777696371, -0.0226165559142828, -0.0018835545051842928, 0.030109070241451263, 0.022797266021370888, -0.005893927067518234, -0.013268286362290382, 0.03199957683682442, 0.012601049616932869, 0.022741662338376045, 0.009966853074729443, 0.0004721918376162648, 0.012399488128721714, 0.030164673924446106, 0.02062874473631382, 0.012545445933938026, 0.00015062789316289127, -0.022088326513767242, 0.02342280000448227, 0.005998183041810989, 0.027745939791202545, 0.006022509187459946, -0.0019009305397048593, -0.012385587207973003, 0.00800684466958046, 0.015930283814668655, 0.0274262223392725, 0.0023005777038633823, -0.006046835798770189, 0.020767752081155777, 0.018696537241339684, 0.01320573315024376, 0.004767964594066143, -0.011315228417515755, -0.008173653855919838, 0.01273310650140047, -0.0041667562909424305, 0.00701293908059597, -0.037754494696855545, -0.016903338953852654, -0.012670553289353848, 0.025897137820720673, -0.012392537668347359, 0.03939478471875191, -0.02226903662085533, 0.019127462059259415, 0.02883020043373108, -0.0020329877734184265, 0.02806565724313259, -0.0012580198235809803, 0.012121472507715225, -0.0043578920885920525, 0.012753957882523537, -0.01460971124470234, -0.015263047069311142, 0.0032110782340168953, -0.006790526676923037, -0.005118959117680788, 0.0017732171108946204, 0.00900769978761673, -0.005633287597447634, -0.003143311943858862, -0.013018072582781315, -0.03628101199865341, -0.009271814487874508, -0.03553037345409393, 0.008986848406493664, -0.00900769978761673, 0.031193330883979797, -0.0025403660256415606, -0.02503529004752636, -0.008875642903149128, -0.012774809263646603, 0.022199532017111778, 0.006418681237846613, 0.00227972655557096, -0.009577631950378418, -0.037142861634492874, -0.006164992228150368, 0.023394998162984848, 0.02185201272368431, -0.022116128355264664, 0.019377674907445908, -0.004653283394873142, -0.007346557918936014, 0.0003310121246613562, 0.00923011265695095, 0.00019602259271778166, -0.0011224872432649136, 0.03942258656024933, 0.0047262622974812984, 0.05443542078137398, -0.02883020043373108, -0.020990164950489998, -0.014901626855134964, -0.007051166146993637, 0.008159752935171127, -0.016152696684002876, -0.007582870777696371, 0.007092868443578482, -0.015165741555392742, 0.006880881730467081, -0.016124894842505455, -0.011238773353397846, -0.02941403165459633, 0.03102652169764042, -0.026731183752417564, -0.013998077251017094, -0.009063303470611572, 0.0015586239751428366, -0.010849552229046822, 0.007707977667450905, -0.026689480990171432, -0.026522671803832054, 0.012295232154428959, 0.02486848086118698, -0.009952952153980732, 0.009591531939804554, -0.007270103320479393, -0.030998719856142998, 0.027704237028956413, 0.009035501629114151, 0.008361314423382282, -0.014762619510293007, -0.005855700001120567, -0.024520961567759514, -0.01451240573078394, 0.02841317653656006, -0.017987597733736038, 0.01320573315024376, 0.006182367913424969, 0.025563519448041916, 0.021143073216080666, 0.0002725854283198714, -0.0008162359008565545, 0.0018713913159444928, 0.03961719945073128, 0.002682848833501339, -0.0005547276814468205, -0.019572285935282707, 0.008055496960878372, -0.003324022050946951, 0.0010338699212297797, 0.005011227913200855, 0.028524383902549744, -0.034529514610767365, -0.0023249040823429823, 0.0040068975649774075, -0.003794910619035363, 0.03311163932085037, 0.022741662338376045, -0.046984609216451645, -0.029914461076259613, -0.006721023004502058, 0.024785075336694717, 4.751240339828655e-05, -0.005216264631599188, 0.0045281765051186085, 0.010050257667899132, -0.017931995913386345, 0.008055496960878372, 0.012482892721891403, -0.005921728443354368, 0.011899060569703579, 0.014289992861449718, 0.01321963407099247, -0.02201882191002369, -0.015693971887230873, -0.017320360988378525, 0.0168338343501091, -0.015124039724469185, -0.0045455521903932095, -0.01452630665153265, 0.01562446728348732, 0.010884304530918598, 0.004590729717165232, -0.016986742615699768, 0.03781009837985039, -0.014164886437356472, -0.013511549681425095, -0.04072926193475723, -0.007165847811847925, 0.014971130527555943, 0.013177931308746338, 0.006787051912397146, 0.011071964167058468, 0.012218778021633625, 0.006714072544127703, -0.010432529263198376, 0.013664457947015762, -0.022380242124199867, 0.046956807374954224, 0.00295738922432065, -0.03539136424660683, -0.019711293280124664, -0.0055568334646523, 0.013455946929752827, 0.019391575828194618, 0.01961398869752884, -0.029692048206925392, 0.020086614415049553, 0.0029660770669579506, -0.01665312424302101, -0.014804321341216564, -0.01659752056002617, 0.007784432265907526, 0.01801539957523346, 0.021573998034000397, 0.010814799927175045, 0.018877247348427773, -0.025104792788624763, 0.005727117881178856, -0.002496926113963127, 0.025799831375479698, 0.0052093141712248325, 0.014998932369053364, -0.011919911950826645, 0.024006633087992668, -0.0034908312372863293, -0.011676647700369358, 0.020156119018793106, -0.009751391597092152, -0.011183170601725578, 0.025202099233865738, 0.0027992678806185722, -0.03389007970690727, 0.005709741730242968, 0.007853935472667217, -0.0012684453977271914, 0.002498663729056716, -0.007325706537812948, -0.009257913567125797, -0.026675580069422722, -0.004927823320031166, -0.01201721653342247, -0.0117322513833642, 0.012392537668347359, -0.00320412777364254, 0.022964075207710266, -0.009452524594962597, -0.006039885338395834, 0.02061484381556511, 0.005633287597447634, 0.003697605337947607, 0.012197926640510559, 0.02521600015461445, -0.0003006041806656867, 0.010974658653140068, 0.0014734817668795586, -0.00425016088411212, -0.0007919095805846155, 0.02724551223218441, 0.011989415623247623, 0.0060815876349806786, -0.011572392657399178, -0.01764007844030857, -0.003118985565379262, -0.01843242347240448, -0.00019558820349629968, -0.025327205657958984, -0.012997221201658249, -0.01865483447909355, 0.003836612915620208, 0.0061476160772144794, 0.005084207281470299, -0.011204021982848644, -0.028121260926127434, -0.01002245582640171, -0.004555977880954742, 0.025327205657958984, 0.000321455328958109, -0.006693221628665924, -0.00902160070836544, 0.012601049616932869, -0.017389865592122078, 0.017084049060940742, 0.01725085824728012, -0.024701671674847603, 0.009396921843290329, -0.004764489363878965, 0.015596665441989899, 0.01523524522781372, 0.002156357280910015, -0.016945039853453636, 0.026578275486826897, -0.011544590815901756, -0.011037212796509266, 0.0033657243475317955, -0.0034769305493682623, -0.001588163198903203, -0.007645424455404282, 0.0028913605492562056, -0.009730540215969086, -0.012552396394312382, 0.010946857742965221, -0.013191832229495049, -0.01744546741247177, -0.00715889735147357, 0.005004277918487787, 0.019391575828194618, 0.010335223749279976, 0.028802398592233658, -0.00766627537086606, 0.009542879648506641, -0.007555069401860237, 0.010474231094121933, 0.010668842121958733, 0.0066688950173556805, 0.029803253710269928, -0.017473269253969193, 0.010647990740835667, -0.018668735399842262, -0.007534218020737171, -0.015596665441989899, -0.005529032088816166, -0.0004991245805285871, -0.00862542912364006, -0.006721023004502058, 0.02022562175989151, 0.014998932369053364, -0.014985031448304653, 0.0012597574386745691, -0.008048546500504017, -0.00010246389138046652, -0.012941618449985981, -0.006126765161752701, -0.02022562175989151, -0.023853724822402, -0.025382809340953827, 0.012288281694054604, -0.006995563395321369, -0.010244868695735931, -0.0007510760333389044, 0.016931138932704926, 0.017362063750624657, -0.05482464283704758, -0.02806565724313259, -0.0027332392055541277, 0.0001449807023163885, 0.0006646306137554348, -0.010668842121958733, -0.009661036543548107, -0.01312232855707407, -0.010439479723572731, -0.01170444954186678, 0.0021667827386409044, -0.016319505870342255, 0.007527267560362816, 0.009973803535103798, -0.035168953239917755, 0.023506205528974533, -0.03767108917236328, 0.0012058919528499246, -0.01804320141673088, -0.018140505999326706, -0.0016889437101781368, 0.023853724822402, -0.0009617596515454352, 0.03550257161259651, 0.0015925071202218533, -0.003805336309596896, -0.0054073999635875225, -0.011356930248439312, -0.016486315056681633, -0.00722145102918148, 0.017709583044052124, -0.019349873065948486, -0.014359496533870697, -0.00852812360972166, 0.001358800451271236, 0.011614094488322735, 0.012121472507715225, -0.0037532083224505186, -0.010731395334005356, -0.006536837667226791, 0.018724339082837105, -0.0045351264998316765, 0.0011016360949724913, 0.01233693491667509, -0.03703165426850319, -0.024896282702684402, -0.003360511502251029, 0.008889543823897839, 0.0015916383126750588, 0.01982250064611435, 0.019155263900756836, -0.0023631311487406492, 0.03372327238321304, -0.01783468946814537, 0.026578275486826897, -0.03350085765123367, -0.016375109553337097, -0.026717282831668854, -0.02500748820602894, 0.007860885933041573, 0.015749573707580566, -0.016333406791090965, 0.0060989633202552795, -0.019099660217761993, 0.010342174209654331, -0.019933706149458885, 0.033778876066207886, 0.03063729964196682, 0.006182367913424969, -0.013977225869894028, 0.02564692310988903, -0.008055496960878372, 0.01523524522781372, 0.01292771752923727, -0.005973856430500746, -0.006804427597671747, -0.01604149118065834, 0.01372701209038496, 0.00929961632937193, 0.011836507357656956, -0.018293416127562523, 0.015485459007322788, 0.009487276896834373, 0.0054595279507339, 0.018112706020474434, -0.013886870816349983, -0.012906866148114204, -0.017695682123303413, -0.0075411684811115265, 0.015082336962223053, -0.008243157528340816, 0.022727761417627335, -0.006780101452022791, 0.027606932446360588, -0.010793949477374554, -0.009674936532974243, -0.03222198784351349, -0.002847920637577772, 0.0282741691917181, -0.011739201843738556, -0.019127462059259415, 0.001977384788915515, 0.01599978841841221, -0.007450813427567482, 0.02863558940589428, 0.011593243107199669, 0.003009516978636384, 0.009341318160295486, 0.015012833289802074, 0.014345596544444561, 0.0006837442051619291, 0.01433169562369585, 0.011516788974404335, -0.023381097242236137, -0.011398633010685444, -0.004333565477281809, 0.033945683389902115, -0.010481181554496288, -0.006387404631823301, -0.010265720076858997, -0.0062692477367818356, -0.020086614415049553, 0.012343885377049446, 0.005216264631599188, 0.007423012051731348, 0.022783365100622177, 0.014679214917123318, 0.011787854135036469, -0.02600834332406521, 0.017473269253969193, 0.00859762728214264, -0.002450010972097516, -0.019739095121622086, -0.0028218566440045834, -0.0031085601076483727, 0.0035863991361111403, -0.030136872082948685, -0.01342119462788105, 0.009077203460037708, -0.01684773527085781, 0.008854791522026062, -0.02162959985435009, 0.005157186184078455, 0.005355272442102432, 0.0012771333567798138, 0.007944290526211262, -0.004973000846803188, 0.02046193554997444, 0.009487276896834373, 0.017167452722787857, -0.015944184735417366, -0.012726156041026115, 0.002015611855313182, 0.014018927700817585, 0.011933811940252781, -0.019363773986697197, -0.010029406286776066, -3.7113972211955115e-05, -0.014373397454619408, -0.009786142967641354, -0.01783468946814537, 0.021546196192502975, -0.00024565268540754914, 0.045372117310762405, 0.00460810586810112, 0.0048478939570486546, -0.014387298375368118, 0.013198782689869404, -0.020698249340057373, 0.011384732089936733, 0.008854791522026062, 0.0164446122944355, 0.008472519926726818, 0.023742517456412315, 0.0009356956579722464, 0.018529728055000305, 0.0017714796122163534, -0.031165529042482376, 0.003937393426895142, 0.030887514352798462, 0.016347307711839676, 0.019725194200873375, 0.017181353643536568, 0.011982465162873268, -0.004514275584369898, -0.028010055422782898, -0.006783576682209969, 0.003642002120614052, 0.013073675334453583, 0.0015099713345989585, 0.009959902614355087, 0.0019739095587283373, 0.023992732167243958, -0.0018731289310380816, -0.0023474928457289934, 0.011391682550311089, -0.008701883256435394, -0.013101477175951004, 0.015958085656166077, 0.006060736253857613, 0.016180498525500298, 0.004430870991200209, -0.005497755017131567, 0.0057479687966406345, 0.014859925024211407, 0.019572285935282707, 0.008743585087358952, 0.001322310883551836, -0.0008240551105700433, 0.016972841694951057, -0.00425016088411212, 0.021949317306280136, 0.01982250064611435, -0.007888687774538994, -0.025994442403316498, 0.01031437236815691, 0.0008796582114882767, 0.004184132441878319, -0.013386443257331848, -0.0027871045749634504, -0.002161569893360138, -0.006085062865167856, -0.002486500423401594, -0.0031711135525256395, 0.006390879862010479, -0.016263902187347412, -0.028552183881402016, -0.022505348548293114, -0.02101796679198742, 0.00325278053060174, -0.009674936532974243, 0.011954663321375847, -0.002295364858582616, -0.012343885377049446, 0.01253154594451189, 0.007944290526211262, -0.023770319297909737, -0.011739201843738556, 0.0048791710287332535, 0.008243157528340816, 0.01725085824728012, 0.017695682123303413, 0.022964075207710266, 0.0026116075459867716, 0.00033796249772422016, -0.01191296149045229, -0.010578487068414688, 0.015165741555392742, -0.020781653001904488, 0.022380242124199867, -0.02124037966132164, 0.0021633075084537268, -0.02702309936285019, -0.006182367913424969, -0.00843081809580326, 0.006085062865167856, 0.009389971382915974, 0.02983105555176735, 0.015707870945334435, -0.01141253300011158, -0.0009304828708991408, 0.02161569893360138, -0.007999894209206104, -0.006515986751765013, 0.015026734210550785, -0.012844312936067581, 0.0064812349155545235, 0.008111100643873215, -0.00275409035384655, 0.0035029943101108074, -0.005181512795388699, 0.001456105848774314, -0.0030738080386072397, -0.008034645579755306, 0.0018957176944240928, 0.0005555964889936149, 0.012524595484137535, -0.019113561138510704, -0.012357786297798157, -0.009389971382915974, 0.02966424636542797, -0.021156974136829376, -0.02124037966132164, -0.013859068974852562, 0.013511549681425095, -0.020503638312220573, -0.02181030996143818, 0.029803253710269928, -0.000849684642162174, -0.027996154502034187, -0.007235351484268904, 0.021782508119940758, -0.0054282513447105885, 0.0010955545585602522, 0.01433169562369585, 0.01372701209038496, 0.002472599735483527, 0.007429962512105703, 0.00029756338335573673, -0.010710544884204865, 0.004291863180696964, 0.009473375976085663, -0.0001620308612473309, 0.03708725795149803, 0.005942579824477434, -0.0018105754861608148, 0.02422904409468174, -0.011544590815901756, 0.011662747710943222, -0.028941405937075615, -0.01744546741247177, -0.00941777229309082, -0.022519249469041824, 0.004111153073608875, -0.0504320003092289, 0.007228401023894548, -0.0066584693267941475, 0.004295338410884142, 0.005820948164910078, -0.01531864982098341, 0.023589609190821648, -0.0034977816976606846, 0.015040635131299496, 0.004837468266487122, -0.014943329617381096, 0.012288281694054604, -0.0010651466436684132, 0.006335276644676924, -0.0015056272968649864, 0.020183920860290527, 0.01623610034584999, 0.01441510021686554, -0.010550685226917267, -0.006123289931565523, -0.02160179801285267, 0.01441510021686554, -0.024896282702684402, -0.01053678523749113, -0.006314425263553858, 0.002790579805150628, 0.0011555015807971358, -0.00720755010843277, 0.014595810323953629, -0.007005988620221615, 0.013080625794827938, 0.017473269253969193, -0.01643071137368679, -0.03742087632417679, 0.005157186184078455, 0.01964179053902626, 0.009813944809138775, -0.021587898954749107, -0.0037775347009301186, -0.016945039853453636, 0.028399275615811348, -0.0002641146711539477, -1.6751515431678854e-05, -0.026522671803832054, -0.0035585975274443626, 0.0005838323850184679, 0.008847841061651707, 0.014018927700817585, -0.022366341203451157, -0.019363773986697197, 0.012357786297798157, 0.017375964671373367, 0.012642751447856426, -0.012455090880393982, -0.017779087647795677, -0.017709583044052124, -0.013914672657847404, -0.026147350668907166, 0.0013978963252156973, -0.018557529896497726, -0.027593031525611877, -0.005306619685143232, -0.013101477175951004, -0.019697392359375954, -0.006922584027051926, 0.011217922903597355, 0.030581697821617126, 0.003433490637689829, 0.0055498830042779446, 0.019586186856031418, 0.009688837453722954, 0.00112770008854568, -0.005449102260172367, 0.007353507913649082, 0.007423012051731348, 0.01413708459585905, 0.028552183881402016, 0.017598377540707588, 0.012378636747598648, 0.02324208989739418, -0.0010703593725338578, -0.00993210170418024, 0.007395210675895214, 0.002184158656746149, 0.028079558163881302, 0.010960758663713932, -0.0025386284105479717, 0.005956480745226145, 0.01340729370713234, -0.004444771911948919, -0.02062874473631382, 0.008694932796061039, -0.018766041845083237, 0.008333512581884861, -0.015290848910808563, -0.001225005486048758, -0.008542024530470371, 0.005306619685143232, -2.055250843113754e-05, -0.014901626855134964, 0.0037532083224505186, -0.0003575104638002813, 0.0010486394166946411, 0.01444290205836296, -0.008952097035944462, -0.0011720088077709079, 0.02179640904068947, -0.006338751874864101, -0.03430710360407829, -0.015735672786831856, 0.01031437236815691, -0.02425684593617916, -0.013087576255202293, -0.0045281765051186085, 0.04161890968680382, -0.0019478455651551485, 0.005438677035272121, 0.007582870777696371, 0.0011294377036392689, 0.005011227913200855, -0.0017271708929911256, 0.008361314423382282, 0.011572392657399178, -0.021295981481671333, -0.020698249340057373, -0.00650556106120348, -0.009605432860553265, 0.010557635687291622, 0.007596771698445082, -0.0028896229341626167, -0.016152696684002876, 0.014679214917123318, -0.015110138803720474, 0.008173653855919838, -0.01070359442383051, 0.03528015688061714, 0.01171835046261549, -0.0021911091171205044, 0.0220327228307724, 0.0109190559014678, -0.006335276644676924, 0.013115378096699715, -0.0029539139941334724, -0.013212683610618114, 0.034362707287073135, -0.007707977667450905, 0.010349124670028687, 0.027356717735528946, -0.013414244167506695, -0.0028600837104022503, 0.004267537035048008, -0.02442365512251854, 0.007756630424410105, -0.007026840001344681, 0.013462897390127182, 0.012121472507715225, 0.0004978213692083955, -0.01819610968232155, 0.018362918868660927, 0.009591531939804554, -0.005157186184078455, 0.014929428696632385, 0.006057261023670435, -0.015263047069311142, 0.008090249262750149, -0.0015447232872247696, 0.014484603889286518, -0.01321963407099247, 0.019892003387212753, 0.00892429519444704, 0.006227545440196991, -0.03261120989918709, 0.0226165559142828, -0.009063303470611572, 0.007082443218678236, 0.0015073649119585752, -0.008861741982400417, 0.00455945311114192, -0.025355007499456406, 0.030275879427790642, 0.01822391152381897, -0.007958191446959972, 0.0029643394518643618, -0.022560952231287956, 0.0010060683125630021, -0.018891148269176483, -0.00255079148337245, -0.02265825681388378, -0.0069920881651341915, -0.011155368760228157, 0.0029069988522678614, -0.01680603250861168, -0.013191832229495049, -0.0032562557607889175, 0.006234495900571346, 0.005713216960430145, -0.030553895980119705, 0.014171836897730827, 0.0026967497542500496, 0.002099016448482871, -0.021101370453834534, 0.005775770638138056, 0.008736634626984596, 0.007652374915778637, -0.003120723180472851, -0.01844632439315319, 0.026967497542500496, 0.01943327859044075, 0.0007063329685479403, -0.005275342613458633, 0.02303357794880867, 0.0019009305397048593, -0.002901786006987095, 0.0174176674336195, 0.012295232154428959, -0.0038609392940998077, 0.016166597604751587, -0.028691193088889122, 0.017084049060940742, 0.0007193649071268737, -0.016680926084518433, -0.005807047244161367, -0.016055390238761902, -0.027092603966593742, 0.004986901767551899, 0.0037184564862400293, -0.009369120001792908, -0.014554107561707497, -0.012948568910360336, 0.026328060775995255, 0.007958191446959972, -0.006502085831016302, -0.0046880352310836315, -0.0033570362720638514, 0.012475942261517048, 0.029497437179088593, 0.021991020068526268, 0.024103937670588493, -0.010272670537233353, -0.014568008482456207, -0.011120617389678955, -0.003749733092263341, -0.005751444026827812, 0.0009565468644723296, 0.01021706685423851, -0.001989547861739993, 0.038783151656389236, 0.02104576863348484, -0.004017322789877653, 0.0013961587101221085, -0.011349979788064957, 0.01053678523749113, 0.0018036251422017813, 0.002653309842571616, -0.01523524522781372, -0.012601049616932869, 0.01761227659881115, 0.02064264565706253, -0.007297905161976814, -0.005518606398254633, 0.003346610814332962, -0.02100406587123871, -0.0005034685600548983, 0.013553252443671227, 0.007687126751989126, 0.005727117881178856, -0.028552183881402016, -0.0009322204859927297, -0.019155263900756836, 0.024965785443782806, 0.0014213538961485028, 0.008875642903149128, -0.008674081414937973, 0.008694932796061039, -0.017348162829875946, 0.021504493430256844, -0.004427395761013031, -0.002901786006987095, -0.009348268620669842, -0.009383020922541618, -0.006192793603986502, 0.005431726574897766, -0.0234645027667284, -0.020781653001904488, -0.01361580565571785, 0.016889438033103943, -0.009278764948248863, 0.001595982350409031, -0.016277803108096123, -0.011377781629562378, -0.019739095121622086, -0.013031973503530025, -0.005973856430500746, 0.0166392233222723, 0.006908683571964502, 0.013358641415834427, 0.01743156835436821, 0.0015151840634644032, -0.008083298802375793, -0.009563731029629707, 0.018891148269176483, -0.019294271245598793, -0.006700172089040279, -0.03330624848604202, -0.008562874980270863, -0.005025128833949566, -0.005344846751540899, 0.022491447627544403, -0.01562446728348732, 0.0036802291870117188, -0.004934773780405521, -0.002317953621968627, 0.010043307207524776, -0.012663602828979492, 0.007784432265907526, 0.01586078107357025, 0.0017454156186431646, -0.008368264883756638, 0.022574853152036667, 0.009355219081044197, 0.006363078020513058, 0.006411730777472258, 0.007409111130982637, 0.025132594630122185, 0.0218381118029356, 0.03008127026259899, 0.0072005996480584145, -0.0071727982722222805, 0.0034109018743038177, -0.014985031448304653, 0.012573247775435448, 0.00480619166046381, -0.0007250120979733765, 0.0035759734455496073, -0.016291704028844833, 0.010745296254754066, 0.008312661200761795, 0.024771174415946007, -0.0007910407730378211, 0.0226165559142828, 0.0020677398424595594, 0.01561056636273861, 0.003843563375994563, -0.018501926213502884, 0.0062900991179049015, -0.010912105441093445, 0.013706160709261894, 0.004368317313492298, -0.014998932369053364, 0.015930283814668655, 5.614608380710706e-05, -0.0006668026326224208, 0.017987597733736038, 0.018696537241339684, 0.013400344178080559, -0.005184987559914589, 0.032555606216192245, 0.023186486214399338, 0.0009322204859927297, -0.004260586574673653, 0.026175152510404587, -0.015680070966482162, 0.03130453824996948, 0.025744229555130005, 0.01801539957523346, 0.01743156835436821, 0.01321963407099247, -0.00892429519444704, 0.022352440282702446, -0.009744441136717796, -0.004774915054440498, -0.0036002998240292072, 0.0226165559142828, -0.020767752081155777, -0.021268179640173912, 0.005122434347867966, 0.011134518310427666, -0.010835651308298111, -0.017931995913386345, -0.038783151656389236, -0.005563783925026655, 0.009535929188132286, 0.0077496799640357494, 0.0005868732114322484, -0.0010043306974694133, 0.016069291159510612, -0.0009252700838260353, 0.040590252727270126, -0.00656811473891139, 0.01680603250861168, -0.0004037739709019661, -0.012545445933938026, -0.011009410955011845, -0.007165847811847925, 0.029191620647907257, -0.006012083496898413, 0.01601368933916092, -0.009195360355079174, -0.0019374199910089374, -0.011878209188580513, -0.001902668154798448, 0.016110993921756744, 0.003947819117456675, 0.02160179801285267, -0.03544696792960167, -0.019377674907445908, 0.030331483110785484, 0.014623611234128475, 0.01554106269031763, -0.011085865087807178, -0.0045281765051186085, -0.017667880281805992, 0.0061302403919398785, -0.010251819156110287, -0.0014508930034935474, 0.00870883371680975, 0.021713005378842354, -0.005782721098512411, 0.01923866756260395, 0.0015230033313855529, -0.0054456270299851894, -0.015388154424726963, -0.002620295388624072, -0.011822606436908245, 0.0028218566440045834, -0.028010055422782898, -0.01919696480035782, 0.01743156835436821, -0.014651413075625896, -0.0030546945054084063, 0.004837468266487122, -0.017737384885549545, 0.0050390297546982765, -0.016972841694951057, 0.027370618656277657, 0.036753639578819275, 0.010634089820086956, 0.02122647874057293, -0.014164886437356472, 0.01353240106254816, -0.008979897946119308, -0.0063005248084664345, 0.003433490637689829, 0.016194399446249008, -0.003822712227702141, 0.010078059509396553, 0.0006320506799966097, -0.01261495053768158, -0.0110163614153862, -0.009278764948248863, 0.01392162311822176, -0.01779298670589924, 0.011558491736650467, -0.00913280714303255, -0.011780903674662113, -0.000867929426021874, 0.00058209482813254, 0.0027228135149925947, -0.012545445933938026, -0.009111955761909485, -0.011558491736650467, 0.008660180494189262, -0.02181030996143818, 0.007798332720994949, -0.009925151243805885, 0.005546407774090767, 0.009556780569255352, -0.021198676899075508, -0.021448889747262, -0.004281437490135431, 0.020587041974067688, 0.008701883256435394, 0.019155263900756836, -0.01261495053768158, -0.020281225442886353, 0.02062874473631382, 0.0006433450616896152, 0.009403872303664684, 0.014971130527555943, 0.007423012051731348, -0.004034698940813541, -0.022741662338376045, -0.012218778021633625, 0.013643607497215271, 0.0024951884988695383, -0.025758130475878716, -0.0013996339403092861, 0.008576775901019573, -0.02325599081814289, 0.003565547987818718, 0.0011416008928790689, -0.006356127560138702, -0.00010821967589436099, -0.007106769364327192, 0.002762778429314494, 0.02086505852639675, 6.613726145587862e-05, 0.00950117688626051, -0.005080732051283121, -0.009959902614355087, 0.026314159855246544, -0.01986420340836048, 0.009403872303664684, -0.0014604497700929642, -0.02080945484340191, 0.015958085656166077, -0.020350730046629906, 0.04512190446257591, -0.0014430738519877195, -0.022783365100622177, -0.01686163619160652, -0.0103004714474082, 0.006700172089040279, -0.0055568334646523, -0.014484603889286518, -0.01720915548503399, 0.007263153325766325, 0.006304000038653612, 0.005268392618745565, -0.0041285292245447636, 0.01253154594451189, -0.018071003258228302, 0.024187343195080757, 0.009654086083173752, 0.009070252999663353, -0.00017973262583836913, -0.010786999017000198, 0.004840943496674299, -0.022477546706795692, -0.015068436041474342, 0.013706160709261894, 0.003930442966520786, 0.00029560859547927976, -1.2903011338494252e-05, 0.013386443257331848, 0.02101796679198742, -0.019892003387212753, -0.0032944828271865845, -0.005233640316873789, -0.0030512192752212286, 0.0011563703883439302, -0.0023961456026881933, -0.029692048206925392, 0.00822230614721775, 0.002886147703975439, -0.008257058449089527, -0.013608855195343494, -0.01819610968232155, 0.0034977816976606846, -0.019113561138510704, 0.003106822492554784, -0.007867836393415928, -0.006158041767776012, 0.001831426634453237, -0.02725941315293312, 0.011982465162873268, 0.0174176674336195, -0.003457817016169429, 0.0021789460442960262, -0.000815367151517421, 0.012934667989611626, 0.016583619639277458, -0.020183920860290527, -0.018376819789409637, -0.014901626855134964, 0.0077496799640357494, 0.0010495082242414355, -0.017528872936964035, 0.021101370453834534, 0.008757486008107662, -0.0017810363788157701, 0.003774059470742941, 0.0017245644703507423, -0.012156224809587002, -0.02325599081814289, 0.004274487029761076, 0.022324638441205025, -4.311411248636432e-05, 0.004173706751316786, 0.026480969041585922, -0.00862542912364006, 0.024729471653699875, 0.007113719824701548, -0.017139650881290436, -0.004017322789877653, 0.01201026700437069, -0.0034491289407014847, -0.005018178373575211, 0.005327470600605011, -0.002050363691523671, -0.012142323888838291, -0.009994654916226864, 0.010578487068414688, -0.0010251818457618356, -0.027954451739788055, 0.0016003262717276812, 0.017556674778461456, -0.011231823824346066, 0.011746152304112911, 0.0036906548775732517, -0.0036802291870117188, -0.003867889754474163, 0.007284004241228104, -0.004277962259948254, -0.005025128833949566, 0.011683598160743713, -0.005400449503213167, -0.0022536625619977713, 0.0018036251422017813, 0.027787642553448677, -0.0019391576061025262, -0.029080413281917572, 0.013900771737098694, -0.022380242124199867, 0.028691193088889122, -0.006745349150151014, -0.009508127346634865, 0.0033066461328417063, 0.023075280711054802, 0.000339700112817809, -0.025744229555130005, -0.018154406920075417, -0.020378531888127327, -0.0016759117133915424, -0.025799831375479698, 0.011155368760228157, -0.0052093141712248325, 0.008090249262750149, 0.031387943774461746, -0.003603775054216385, -0.008083298802375793, -0.02446535788476467, 0.0054073999635875225, 0.0026984873693436384, -0.01250374410301447, 0.019183063879609108, 0.034362707287073135, -0.006908683571964502, 0.026161251589655876, 0.020378531888127327, -0.0017193516250699759, -0.0109190559014678, 0.007951240986585617, 0.003652427811175585, 0.0113082779571414, -0.001553411246277392, -0.015193543396890163, -0.004410019610077143, -0.019155263900756836, 0.010265720076858997, 0.012371686287224293, -0.002462174044921994, -0.0036837044171988964, -0.027092603966593742, 0.020906761288642883, -0.016945039853453636, 0.035363562405109406, 0.013643607497215271, -0.00929961632937193, -0.005251016467809677, -0.004990376997739077, 0.008111100643873215, 0.006686271168291569, -0.002048626309260726, -0.029580842703580856, -0.01822391152381897, 0.012892965227365494, -0.023895425722002983, 0.015137939713895321, 9.507910726824775e-05, 0.0012171863345429301, 0.01381041668355465, -0.004500374663621187, -0.005615911912173033, 0.0075411684811115265, 0.009306566789746284, -0.015902481973171234, -0.019085759297013283, 0.0027610408142209053, -0.0029799779877066612, 0.009959902614355087, 0.0024569614324718714, 0.02303357794880867, 0.0006376978708431125, 7.319625001400709e-05, -0.0077496799640357494, 0.004691510461270809, 0.018321216106414795, -0.0056089614517986774, 0.0031867518555372953, -0.02567472495138645, 0.018098805099725723, 0.016736529767513275, 0.01302502304315567, -0.005317044910043478, -0.01023096777498722, -0.0066132922656834126, -0.0028965731617063284, -0.019961507990956306, 0.01823781244456768, 0.011822606436908245, -0.0005899139796383679, 0.018766041845083237, 0.00725620286539197, 0.013984176330268383, -0.012329984456300735, 0.0033031709026545286, -0.00585222477093339, -0.011502888053655624, 0.016361208632588387, 0.02503529004752636, -0.008882593363523483, -0.021295981481671333, 0.007548118941485882, 0.004048599861562252, 0.009403872303664684, -0.007589821238070726, -0.009946001693606377, -0.006484709680080414, -0.004827043041586876, 0.007833085022866726, -0.007846985943615437, 0.030303681269288063, -0.00621016975492239, 0.014345596544444561, 0.00030082138255238533, 0.02124037966132164, -0.004253636114299297, 0.0019339448772370815, -0.014720916748046875, 0.01844632439315319, -0.014901626855134964, -0.0037844849284738302, 0.0037219314835965633, -0.009987704455852509, -0.0014343858929350972, -0.0036941301077604294, 0.011586292646825314, 0.01819610968232155, 0.013476798310875893, 0.0010642778361216187, 0.023339394479990005, -0.017890293151140213, 0.007937340997159481, -0.040757063776254654, 0.017501071095466614, -0.005765344947576523, -0.003655902808532119, 0.0010130187729373574, 0.003174588782712817, 0.025355007499456406, 0.00048522380529902875, -0.01423439010977745, -0.02022562175989151, 0.004997327458113432, -0.0465397834777832, -0.0035360087640583515, -0.0012910341611132026, 0.02182421088218689, -0.010641040280461311, -0.0014882513787597418, 0.00715889735147357, 0.0025664300192147493, 0.006164992228150368, 0.0005269261309877038, -0.0001411797129549086, -0.02460436522960663, -0.008917344734072685, 0.007193649187684059, 0.0015256096376106143, 0.0256052203476429, 0.009035501629114151, -0.0018366394797340035, 0.019919805228710175, -0.0010364762274548411, -0.02080945484340191, -0.004017322789877653, 0.000807113538030535, -0.017501071095466614, 0.023103082552552223, -0.023742517456412315, 0.01351850014179945, -0.0040138475596904755, -0.006251872051507235, -0.007881737314164639, 0.013796515762805939, 0.004277962259948254, -0.007770531345158815, 0.011558491736650467, 0.019794698804616928, 0.005827898625284433, 0.002427422208711505, -0.02465996891260147, -0.0023301169276237488, 0.020295126363635063, 0.009320467710494995, 0.005167611874639988, 0.008062447421252728, -0.01622220128774643, 0.005473428871482611, -0.015179642476141453, 0.008736634626984596, 0.008069397881627083, -0.006915634032338858, -0.019711293280124664, -0.007388260215520859, -0.022686058655381203, -0.008952097035944462, -0.017459368333220482, 0.0002823594259098172, -0.0009574156138114631, 0.01413708459585905, -0.01541595533490181, 0.024368053302168846, -0.005807047244161367, 0.019683493301272392, -0.021295981481671333, 0.015096237882971764, 0.004083351697772741, 0.012934667989611626, 0.006710597313940525, 0.005873076152056456, 0.008347413502633572, 0.016555819660425186, -0.003508207155391574, -0.036753639578819275, 0.0075620198622345924, -0.0054178256541490555, 0.005125909578055143, -0.008722733706235886, -0.0006754905916750431, 0.02064264565706253, -0.0015508048236370087, 0.003287532366812229, 0.01392857264727354, -0.025772029533982277, -0.011996366083621979, 0.01701454445719719, -0.007499466184526682, -0.010432529263198376, -0.009042452089488506, 0.0008231863030232489, -0.0023457552306354046, 0.005946055054664612, 0.004086826927959919, 0.021587898954749107, 0.013448996469378471, -0.013720061630010605, 0.012288281694054604, 0.004472573287785053, 0.02083725668489933, -0.014248291030526161, -0.01321963407099247, 0.00110337371006608, -0.011370831169188023, -0.0026255082339048386, -0.007485565263777971, -0.023283792659640312, -0.005633287597447634, 0.013782614842057228, -0.017459368333220482, -0.005132860038429499, 0.010995510034263134, 0.004072926007211208, 0.03511334955692291, 0.009980753995478153, 0.009563731029629707, 0.004955625161528587, 0.02364521287381649, -0.01041167788207531, 0.030387086793780327, 0.004542076960206032, -0.002171995583921671, -0.0037219314835965633, -0.012872114777565002, -0.0016124894609674811, -0.013476798310875893, -0.03022027760744095, -0.012024166993796825, -0.008312661200761795, 0.0018279514042660594, 0.017501071095466614, 0.00272976397536695, -0.0006533362902700901, -0.01680603250861168, -0.032333195209503174, -0.00019482799689285457, -0.010029406286776066, 0.010342174209654331, 0.028913604095578194, -0.010571536608040333, -0.004284912720322609, -0.0216435007750988, -0.005946055054664612, -0.01700064353644848, 0.023283792659640312, -0.008952097035944462, 0.019377674907445908, 0.006067686714231968, -0.009577631950378418, 0.0027019623667001724, -0.0033083835151046515, 0.020336829125881195, -0.0008353494922630489, 0.01562446728348732, -0.011919911950826645, 0.02124037966132164, 0.03188836947083473, 0.0027871045749634504, -0.01444290205836296, -0.01371311116963625, 0.007874786853790283, 0.0010408202651888132, 0.013268286362290382, -0.0011772215366363525, -0.025368908420205116, -0.0018731289310380816, 0.017695682123303413, 0.01681993342936039, 0.0032093406189233065, 0.029803253710269928, 0.0029695522971451283, 0.00970968883484602, -0.01921086572110653, -0.015374253503978252, -0.012976369820535183, 0.02561912126839161, -0.014401199296116829, -0.027301115915179253, 0.0029295876156538725, -0.014554107561707497, -0.001419616281054914, 0.001904405653476715, -0.0004061631625518203, 0.0036454773508012295, 0.006561164278537035, 0.0050286040641367435, 0.016736529767513275, 0.003019942669197917, 0.004121578764170408, 0.02403443306684494, -0.016986742615699768, 0.0076940772123634815, -0.0012623638613149524, 0.0014639250002801418, -0.02005881257355213, 0.008542024530470371, 0.003007779363542795, -0.012934667989611626, -0.031749363988637924, 0.01725085824728012, 0.009063303470611572, 0.014554107561707497, 0.002451748587191105, 0.014873825944960117, -0.009939051233232021, 0.011614094488322735, -0.011711400002241135, -0.021963218227028847, -0.010696643963456154, -0.01819610968232155, 0.00640825554728508, -0.017084049060940742, -0.007985993288457394, 0.011996366083621979, -0.02966424636542797, -0.018376819789409637, 0.0023631311487406492, 0.002717600902542472, -0.009737490676343441, -0.0008931245538406074, 0.012190976180136204, -0.014074531383812428, -0.012879065237939358, 0.0011129304766654968, -0.0007211025222204626, -0.009563731029629707, -0.00245869904756546, 0.005827898625284433, -0.002472599735483527, -0.015971986576914787, -0.013101477175951004, 0.00913280714303255, 0.005553358234465122, 0.002326641697436571, -0.005713216960430145, 0.0015447232872247696, 0.015596665441989899, -0.00616151699796319, 0.03508554771542549, -0.007916489616036415, 0.013052824884653091, -0.0026341963093727827, 0.0027749415021389723, -0.02182421088218689, 0.00923011265695095, -0.0037323571741580963, 0.012538495473563671, -0.012281331233680248, -0.003697605337947607, 0.006776626221835613, -0.0004002987698186189, 0.018891148269176483, 0.013553252443671227, 0.02404833398759365, -0.001092948135919869, -0.004590729717165232, 0.0016985004767775536, 0.02641146630048752, 0.007638473995029926, 0.010397776961326599, 0.0022484497167170048, 0.0008509878534823656, -0.0009061565506272018, 0.016500215977430344, -0.001533428905531764, -0.0026741609908640385, 0.011488988064229488, -0.010085009969770908, -0.021504493430256844, -0.02124037966132164, 0.01744546741247177, -0.009577631950378418, -0.0064812349155545235, 0.005834848619997501, 0.011454235762357712, 0.013539351522922516, 0.025327205657958984, -0.00327710690908134, -0.0014734817668795586, -0.01001550629734993, -0.00792344007641077, -0.019183063879609108, -0.006255347281694412, 0.022324638441205025, 0.003930442966520786, -0.003018205054104328, -0.005449102260172367, 0.015457658097147942, 0.027773741632699966, 0.007092868443578482, -0.002655047457665205, -0.000746297650039196, 0.006415206007659435, 0.01533255074173212, -0.012197926640510559, 0.012823461554944515, -0.0015021520666778088, 0.007318756077438593, 0.002693274524062872, -0.007193649187684059, 0.003106822492554784, -0.014456802047789097, -0.013289137743413448, -0.006116339471191168, 0.0021059669088572264, 0.0033309722784906626, 0.02500748820602894, 0.009181459434330463, -0.023853724822402, -0.004514275584369898, -0.012573247775435448, -0.016194399446249008, 0.002436110284179449, 0.014401199296116829, 0.011899060569703579, 0.0037045555654913187, 0.017153551802039146, -0.017945896834135056, 0.010064158588647842, 0.023144785314798355, 0.024785075336694717, 0.007770531345158815, 0.0005021653487347066, -0.01965569145977497, 0.013796515762805939, 0.010307421907782555, 0.015082336962223053, 0.025730328634381294, -0.009125856682658195, -0.011808705516159534, -0.012051968835294247, -0.0008101543644443154, -0.01350459922105074, 0.0024343726690858603, 0.0014387298142537475, 0.014345596544444561, 0.003360511502251029, 0.00015790408360771835, -0.0022362866438925266, -0.011461186222732067, 0.006467333994805813, 0.012879065237939358, -0.011676647700369358, -0.006429106928408146, 0.008375214412808418, -0.007388260215520859, 0.015040635131299496, -0.010349124670028687, -0.004566403571516275, -0.012468991801142693, 0.014637512154877186, 0.004555977880954742, 0.027718137949705124, 0.014345596544444561, -0.010495082475244999, -0.004482998978346586, 0.013789565302431583, 0.0003831400244962424, 0.006137190852314234, -0.0007163241389207542, 0.03422369807958603, 0.003079020883888006, -0.0021633075084537268, -0.021573998034000397, 0.007499466184526682, -0.012906866148114204, -0.006074637174606323, 0.003546434221789241, -0.03191617131233215, 0.02021172270178795, -0.0010495082242414355, -0.0075411684811115265, 0.0025629547890275717, -0.020753851160407066, 0.004389168694615364, -0.00020080099056940526, 0.0019426328362897038, 0.00720755010843277, 0.005296193994581699, 0.01940547674894333, -0.013657508417963982, 0.0008714045980013907, -0.008486420847475529, -0.001504758489318192, 0.03708725795149803, 0.030331483110785484, 0.004451721906661987, -0.003926967736333609, 8.948621689341962e-05, -0.03208298236131668, 0.006467333994805813, 0.009285715408623219, -0.009237063117325306, -0.025160396471619606, -0.0015316912904381752, -0.03188836947083473, 0.020350730046629906, 0.024785075336694717, 0.0016081455396488309, -0.0023718192242085934, 0.008562874980270863, 0.007186698727309704, -0.009695787914097309, -0.009167558513581753, 0.012899915687739849, 0.011384732089936733, -0.021323783323168755, 0.0004007331735920161, 0.03611420467495918, 0.004055550321936607, 0.012197926640510559, 0.01542985625565052, 0.012747007422149181, 0.0014647938078269362, 0.007944290526211262, -0.0059599559754133224, -0.01905795745551586, 0.0034873560070991516, 0.004198032896965742, 0.006780101452022791, 0.016361208632588387, 0.006446482613682747, -0.007005988620221615, -0.002740189665928483, -0.01551326084882021, -0.010877354070544243, 0.010453380644321442, -0.02043413370847702, -0.03144354373216629, -0.0004272315127309412, 0.011204021982848644, 0.005181512795388699, -0.0009886923944577575, -0.002460436662659049, 0.014359496533870697, -0.003749733092263341, -0.010592387989163399, -0.013574103824794292, -0.006884356960654259, 0.007297905161976814, 0.01823781244456768, -0.0005938235553912818, -0.008048546500504017, 0.0043648420833051205, -0.027773741632699966, 0.009800043888390064, 0.002620295388624072, 0.032138582319021225, -0.012955519370734692, 0.022964075207710266, -0.00017712623230181634, 0.02046193554997444, 0.01170444954186678, -0.026536572724580765, 0.02201882191002369, -0.02143498882651329, 0.007290954701602459, -0.010946857742965221, -0.004111153073608875, -0.01332388911396265, -0.021282080560922623, 0.00395476957783103, 0.007388260215520859, 0.033917881548404694, 0.0010521146468818188, -0.011565442197024822, -0.009320467710494995, -0.0075411684811115265, -0.0103004714474082, 0.006696696858853102, 0.0019878102466464043, 0.02525770105421543, 0.0064499578438699245, -0.027203809469938278, -0.02785714529454708, -0.01232303399592638, 0.01050898339599371, 0.001916568842716515, 0.009466425515711308, -0.00112770008854568, -0.003447391325607896, -0.0038852656725794077, 0.018182208761572838, -0.0047158366069197655, -0.0006455170805566013, -0.01070359442383051, -0.016194399446249008, 0.0012258742935955524, -0.02823246642947197, -0.045177508145570755, -0.008083298802375793, 0.002993878675624728, -0.005553358234465122, 0.004236259963363409, 0.00027432304341346025, 0.019892003387212753, -0.004552502650767565, 0.037976909428834915, 0.0013440308393910527, 0.004284912720322609, 0.002569905249401927, 0.0005999051500111818, 0.008243157528340816, 0.007464714348316193, 0.01070359442383051, 0.0023092657793313265, 0.020309027284383774, 0.0033500860445201397, 0.02000321075320244, -0.0010017243912443519, 0.0021198675967752934, 0.010140612721443176, -0.01212842296808958, 0.007131095975637436, 0.011773953214287758, -0.017695682123303413, 0.006286623887717724, 0.015374253503978252, -0.002378769451752305, 0.01645851321518421, 0.02826026827096939, -0.020142218098044395, 0.00650556106120348, 0.012962469831109047, -0.015554963611066341, -0.010196215473115444, 0.006950385868549347, -0.02725941315293312, -0.009786142967641354, -0.00720755010843277, -0.01362970657646656, 0.02605004608631134, 0.0172230564057827, 0.004597680177539587, 0.0045351264998316765, -0.012635800987482071, -0.01946108043193817, 0.005991232581436634, -0.00405207509174943, 0.009389971382915974, -0.00024891068460419774, 0.011231823824346066, -0.004587254486978054, -0.002872247016057372, 0.009445574134588242, -0.0022866770159453154, 0.013275236822664738, 0.02324208989739418, -0.0002161135635105893, -0.0011650584638118744, -0.023964930325746536, 0.00015790408360771835, -0.026689480990171432, -0.0034769305493682623, 0.007631523534655571, -0.003393525956198573, -0.011468136683106422, 0.0017549723852425814, -0.004809666890650988, -0.00420150812715292, 0.0020103990100324154, -0.005810522474348545, 0.02062874473631382, -0.00980699434876442, -0.0014508930034935474, 0.01684773527085781, 0.011697499081492424, 0.006696696858853102, -0.03144354373216629, -0.012795660644769669, -0.007235351484268904, 0.013115378096699715, 0.013991126790642738, 0.004399594385176897, 0.0012345622526481748, 0.027926649898290634, -0.01565226912498474, 0.00010083489178214222, -0.007443862967193127, -0.013768713921308517, 0.00298171560280025, 0.014401199296116829, -0.020587041974067688, 0.0010859977919608355, 0.012649701908230782, -0.006338751874864101, -0.007242301944643259, -0.01805710233747959], "433c4723-5242-4c38-8142-e9763b695dd5": [-0.026017500087618828, -0.0026982335839420557, -0.0009822597494348884, 0.017359673976898193, 0.007403174880892038, -0.0170074924826622, 0.01378648728132248, 0.03853466361761093, -0.027866460382938385, 0.009963837452232838, 0.003246684791520238, 0.014696292579174042, -0.004582044202834368, -0.03325192257761955, -0.021805983036756516, 0.011020385660231113, -0.0005365284159779549, 0.028512129560112953, 0.03601068630814552, -0.0441695861518383, 0.0641559585928917, -0.019575491547584534, -0.048395778983831406, 0.0007699411944486201, -0.01185681950300932, 0.020602691918611526, -0.017491742968559265, 0.011842144653201103, -0.020485296845436096, 0.025210415944457054, 0.013067447580397129, 0.017271628603339195, 0.017242280766367912, 0.03982599824666977, -0.0012583195930346847, -0.019619513303041458, 0.026531100273132324, 0.010954351164400578, -0.004699438810348511, -0.008811905980110168, -0.03219537436962128, -0.00590639840811491, 0.016288451850414276, -0.0005090141203254461, -0.050274088978767395, 0.011798121966421604, 0.03874010220170021, -0.02836538664996624, -0.008687174879014492, 0.007153712213039398, 0.003987736068665981, -0.01549604069441557, -0.009252134710550308, -0.012862008064985275, 0.004912215750664473, -0.03827052563428879, -0.004978249780833721, 0.02372831292450428, -0.00402809027582407, -0.031050778925418854, -0.01624443009495735, -0.012106281705200672, 0.016493892297148705, 0.0006397069664672017, -0.04610659182071686, -0.03319322317838669, 0.03589329123497009, -0.019810279831290245, -0.06351029127836227, -0.03395628556609154, 0.03533567115664482, 0.047720763832330704, 0.0032723648473620415, 0.03066924773156643, -0.011071745306253433, -0.01369110494852066, 0.03894554451107979, 0.026619145646691322, -0.006053140852600336, -0.004732455592602491, 0.021351078525185585, 0.0028211306780576706, 0.03457260876893997, -0.03245950862765312, 0.062277648597955704, 0.030493156984448433, 0.0362161248922348, -0.0324888601899147, -0.013170167803764343, -0.00496357586234808, 0.013815836049616337, 0.022319581359624863, 0.006992294918745756, -0.016288451850414276, 0.006262249778956175, 0.045196786522865295, -0.018577640876173973, 0.024007124826312065, 0.029994230717420578, 0.004233530256897211, 0.0003501191968098283, 0.037800949066877365, -0.005447826813906431, 0.01346365362405777, -0.018269481137394905, 0.021791307255625725, 0.006408992223441601, -0.01885645091533661, 0.0021589535754173994, 0.029847487807273865, 0.024579420685768127, -0.018606988713145256, -0.014703629538416862, -0.004453644622117281, -0.01512918435037136, -0.044873952865600586, 0.008745871484279633, 0.018240131437778473, -0.02261306717991829, -0.035130228847265244, 0.02162989042699337, 0.027763741090893745, 0.019032543525099754, 0.016523240134119987, 0.004097793251276016, -0.005899060983210802, -0.005502855405211449, 0.00171689095441252, 0.025342483073472977, -0.01841622404754162, -0.008070854470133781, 0.007718672044575214, 0.007916774600744247, 0.004035427235066891, -0.00849640928208828, 0.0232734102755785, 0.03601068630814552, 0.05153607577085495, -0.01907656528055668, 0.06556469202041626, -0.03336931765079498, -0.04425763338804245, 0.033838894218206406, 0.012913367711007595, 0.006511712446808815, -0.007681986317038536, -0.02738220989704132, -0.0005103898583911359, -0.009516271762549877, 0.03498348593711853, -0.023860381916165352, -0.05253392830491066, 0.032723646610975266, 0.002479953458532691, -0.001429825322702527, -0.014769664034247398, -0.02682458609342575, -0.004460981581360102, -0.014622921124100685, 0.024227239191532135, -0.014402806758880615, -0.051800213754177094, -0.001217965385876596, -0.0015829880721867085, 0.014835698530077934, 0.029715420678257942, 0.030493156984448433, -0.00613018125295639, -0.006834546569734812, 0.024344632402062416, 0.02892300859093666, -0.009164088405668736, -0.01843089796602726, 0.01114511676132679, -0.0156574584543705, -0.011071745306253433, 0.028849637135863304, 0.002859650645405054, 0.03137361258268356, -0.00615586107596755, -0.031843189150094986, 0.007032649591565132, -0.014035950414836407, 0.006357632577419281, -0.0014518366660922766, -0.001953513827174902, -0.01797599531710148, -0.013984589837491512, -0.01070488803088665, 0.016596611589193344, -0.039004240185022354, -0.03331061825156212, -0.017711857333779335, 0.009655676782131195, -0.006849220953881741, 0.011541321873664856, -0.0037896332796663046, -0.0019315022509545088, -0.010000523179769516, -0.0021607880480587482, -0.015525389462709427, -0.07020176202058792, -0.04510873928666115, 0.018152086064219475, -0.0348660908639431, 0.019898325204849243, -0.008357003331184387, -0.027000676840543747, 0.03389758989214897, -0.026325661689043045, 0.06198416277766228, -0.041674960404634476, 0.0016196737997233868, 0.009574968367815018, -0.031402960419654846, 0.011042396537959576, -0.028306689113378525, 0.024975627660751343, -0.00449399882927537, -0.02349352464079857, -0.06791257113218307, 0.011291859671473503, -0.025342483073472977, -0.033075831830501556, -0.04798490181565285, -0.03298778459429741, -0.004736124537885189, 0.028394734486937523, -0.03847596421837807, -0.04936428368091583, 0.034690000116825104, 0.002280016429722309, -0.03022901900112629, -0.021321730688214302, -0.011269847862422466, 0.04158691316843033, 0.010910328477621078, -0.02162989042699337, 0.026531100273132324, -0.012605207972228527, -0.012744612991809845, 0.022275559604167938, 0.00046476200805045664, 0.005418478511273861, 0.0005255226860754192, 0.007946123369038105, 0.023023948073387146, -0.027176769450306892, -0.0031513019930571318, -0.0123117221519351, -0.029554001986980438, 0.006357632577419281, -0.010081231594085693, -0.030082276090979576, -0.00038772201514802873, 0.008841254748404026, 0.011123104952275753, -0.0333399660885334, 0.001583905192092061, -0.021277708932757378, -0.0025056335143744946, 0.020397251471877098, 0.01722760684788227, 0.03653896227478981, 0.02956867776811123, -0.021321730688214302, 0.027411557734012604, 0.010763585567474365, -0.004626067355275154, 0.022598393261432648, 0.020133113488554955, -0.0017590795177966356, 0.010770922526717186, -0.012817984446883202, -0.03231276944279671, 0.020925525575876236, -0.019678210839629173, -0.017242280766367912, -0.004648078698664904, -0.021761959418654442, -0.014622921124100685, 0.012040248140692711, 0.019927674904465675, 0.017931971698999405, -0.012759287841618061, -0.03521827608346939, -0.029935533180832863, -0.004710444249212742, -0.018562965095043182, 0.013184841722249985, -0.001654525171034038, 0.00642366660758853, 0.038681406527757645, 0.03991404548287392, 0.06351029127836227, 0.02725014090538025, -0.047397930175065994, -0.015540064312517643, -0.04305434226989746, 0.031314916908741, -0.021453799679875374, -0.0033512390218675137, 0.009817094542086124, -0.019722234457731247, 0.044081542640924454, -0.024535398930311203, 0.05285676196217537, 0.007230752147734165, -0.062629833817482, 0.010007860139012337, 0.04437502846121788, -0.049716465175151825, -0.03000890463590622, -0.037037886679172516, 0.01589224673807621, 0.01822545751929283, 0.03829987347126007, -0.029407259076833725, -0.017374349758028984, -0.03477804735302925, -0.003435616148635745, 0.0013216024963185191, -0.054470933973789215, 0.04323043301701546, 0.04246737062931061, -0.04279020428657532, 0.003822650294750929, -0.0319899320602417, -0.015525389462709427, -0.048630569130182266, -0.031491007655858994, -0.039884697645902634, -0.02672186680138111, -0.012590533122420311, -0.008562442846596241, -0.04945232719182968, -0.044873952865600586, -0.060927614569664, -0.010902991518378258, 0.00042211488471366465, 0.02063203975558281, -0.01863633655011654, -0.015936270356178284, -0.025870757177472115, 0.029055077582597733, -0.0090540312230587, 0.03653896227478981, -0.024594096466898918, -0.02361091785132885, 0.01158534549176693, 0.0008744954830035567, -0.0047507984563708305, 0.017931971698999405, 0.011511974036693573, 0.02736753411591053, -0.001889313687570393, 0.015466692857444286, 0.03433781862258911, 0.013096796348690987, 0.012164979241788387, 0.028952356427907944, 0.004266547504812479, -0.01897384598851204, 0.013705778867006302, 0.01119647640734911, 0.03025836870074272, 0.0232734102755785, -0.001201456761918962, 0.0011427596909925342, 0.009457574225962162, -0.04378805682063103, 0.00018652387370821089, 0.03278234601020813, 0.008657826110720634, -0.020470622926950455, -0.004149152897298336, 0.02359624393284321, 0.035247623920440674, -0.042438022792339325, 0.028512129560112953, 0.011467951349914074, 0.016171058639883995, 0.013617733493447304, 0.004538021516054869, 0.0450206957757473, 0.020676063373684883, 0.008709185756742954, 0.025650644674897194, 0.03213667497038841, -0.0026450392324477434, -0.04669356346130371, 0.02196739986538887, -0.015525389462709427, -0.02757297456264496, -0.02748492918908596, 0.020177137106657028, -0.017242280766367912, -0.000838726875372231, -0.016508566215634346, -0.061103709042072296, 0.006504375021904707, 0.0068418835289776325, 0.007916774600744247, 0.003072427585721016, 0.030845340341329575, -0.012392430566251278, -0.015936270356178284, -0.023038621991872787, -0.012964727357029915, -0.04070645570755005, 0.022598393261432648, -0.003419107524678111, 0.03753681108355522, 0.02538650669157505, 0.0414695180952549, 0.006133849732577801, 0.03445521369576454, -0.008657826110720634, -0.051917608827352524, -0.006075152661651373, 0.029187146574258804, 0.058432988822460175, -0.045695710927248, 0.017345000058412552, 0.019810279831290245, 0.0002980713325086981, 0.035805247724056244, -0.012781298719346523, 0.0015866566682234406, -0.013404956087470055, -0.0016196737997233868, 0.025797387585043907, 0.002435930771753192, -0.010338031686842442, 0.005051621235907078, -0.036157429218292236, -0.011174465529620647, 0.018621662631630898, -0.005777998361736536, 0.023581570014357567, -0.010330693796277046, 0.016831399872899055, -0.02362559363245964, -0.006482363678514957, -0.0009391540079377592, -0.04173365607857704, -0.026355009526014328, -0.0010125254048034549, -0.00028568992274813354, 0.04358261451125145, 0.005381792783737183, 0.03518892824649811, -0.016831399872899055, 0.011218488216400146, 0.019017869606614113, 0.010352705605328083, -0.030434459447860718, -0.016919447109103203, 0.03375084698200226, -0.05520464479923248, -0.036920491605997086, -0.011878830380737782, 0.011123104952275753, 0.0027275821194052696, 0.01226036250591278, -0.040999941527843475, 0.011079082265496254, 0.029157796874642372, 0.019003193825483322, 0.009861117228865623, 0.04193909466266632, 0.02857082523405552, -0.012040248140692711, 0.016581937670707703, 0.029289865866303444, 0.03577589988708496, -0.03398563712835312, 0.012561185285449028, 0.01865101233124733, -0.003279701806604862, -0.01931135356426239, -0.06051673740148544, -0.02901105396449566, 0.010939677245914936, -0.0031109475530683994, -0.017946645617485046, -0.0008685340289957821, -0.02647240273654461, 0.020778782665729523, -0.005000261589884758, 0.03003825433552265, -0.03263560310006142, -0.0058330269530415535, -0.014380795881152153, -0.0006108169909566641, -0.017256954684853554, -0.010822282172739506, -0.000523688446264714, -0.015378646552562714, -0.04246737062931061, 0.02647240273654461, -0.0078067178837955, -0.032723646610975266, 0.019575491547584534, 0.012920704670250416, 0.0009263140382245183, -0.041997794061899185, -0.015716155990958214, -0.0297887921333313, 0.009626328945159912, -0.01721293292939663, -0.007436192128807306, -0.03918033093214035, 0.02537183277308941, 0.0054918499663472176, 0.0008066269219852984, -0.011167128570377827, 0.02948063053190708, 0.02052932046353817, 0.02352287247776985, -0.010763585567474365, -0.004259210079908371, -0.0007561840466223657, 0.02581206150352955, -0.015378646552562714, 0.0085037462413311, -0.014520201832056046, -0.026575123891234398, 0.02581206150352955, 0.012047585099935532, 0.00039505917811766267, 0.01168806478381157, 0.0010409568203613162, 0.0026982335839420557, 0.03069859743118286, -0.02559194713830948, -0.018166759982705116, 0.020778782665729523, 0.010741573758423328, 0.022818507626652718, -0.024197889491915703, -0.0037364389281719923, 0.017726531252264977, -0.02450604923069477, -0.006863895338028669, 0.007667311932891607, -0.0015371310291811824, -0.012172316201031208, -0.014850372448563576, 0.028761591762304306, -0.029715420678257942, -0.012920704670250416, -0.03022901900112629, 0.010983699932694435, 0.019722234457731247, -0.04314238578081131, 0.0012069595977663994, -0.015041138045489788, -0.010235311463475227, -0.0214097760617733, -0.009112728759646416, -0.01186415646225214, 0.01631780155003071, -0.01539332140237093, -0.009332843124866486, -0.002918347716331482, 0.006563072558492422, 0.003072427585721016, -0.027308838441967964, 0.011996225453913212, 0.008591791614890099, 0.00593207823112607, 0.036040034145116806, -0.0020635707769542933, 0.004284890368580818, 0.033604104071855545, -0.018166759982705116, -0.0008125883177854121, -0.02283318154513836, -0.011937527917325497, 0.02229023352265358, 0.001741653773933649, 0.005158009938895702, -0.0016829567030072212, 0.009582305327057838, 0.010785596445202827, -0.007014306727796793, -0.030522504821419716, -0.007740683387964964, 0.028937682509422302, -0.0019149937434121966, 0.029055077582597733, 0.0019278337713330984, -0.008973322808742523, -0.04425763338804245, 0.006486032158136368, 0.011768774129450321, 0.005744981113821268, 0.004046433139592409, 0.020015720278024673, -0.0021571193356066942, 0.014564224518835545, 0.01474031526595354, -0.0203092060983181, -0.030375761911273003, 0.010631516575813293, -0.00499292416498065, 0.010690214112401009, -0.007282112259417772, -0.002278182189911604, -0.004427964333444834, 0.031608402729034424, 0.010029871016740799, -0.015525389462709427, 0.0406184121966362, 0.00784340314567089, 0.02735286019742489, 0.010616842657327652, 0.010235311463475227, 0.01380116119980812, 0.015745503827929497, -0.020235834643244743, 0.042878251522779465, 0.0012784968130290508, 0.026956655085086823, 0.0043912786059081554, -0.015143858268857002, 0.026648495346307755, -0.019663536921143532, 0.004956238437443972, -0.01334625855088234, 0.003292541950941086, -0.001623342395760119, -0.023787010461091995, 0.019340703263878822, -0.0060311295092105865, 0.024799535050988197, 0.04126407951116562, -0.04003144055604935, -0.013272887095808983, -0.01445416733622551, 0.0246234443038702, -0.023023948073387146, 0.019237982109189034, -0.0099858483299613, 0.021145639941096306, 0.011394579894840717, 0.019810279831290245, 0.0478968545794487, 0.013456315733492374, -0.042555417865514755, -0.011013047769665718, 0.01303076185286045, 0.01445416733622551, 0.007175723556429148, -0.003529164707288146, 0.015041138045489788, -0.00900267157703638, -0.013353596441447735, 0.01975158229470253, -0.0022084794472903013, -0.011790785007178783, 0.029612699523568153, 0.043523918837308884, -0.015804201364517212, 0.019237982109189034, 0.021483147516846657, -0.0044426387175917625, 0.027837112545967102, 0.003497981932014227, 0.004372935742139816, -0.006144855171442032, 0.01919396035373211, 0.025078346952795982, -0.008423037827014923, 0.00876788329333067, 0.011783448047935963, -0.004556364379823208, -0.014909069985151291, -0.002190136583521962, 0.013265550136566162, -0.015378646552562714, -0.0170955378562212, -0.007777369115501642, -0.026795238256454468, -0.005000261589884758, -0.004185838624835014, 0.024579420685768127, -0.008041506633162498, 0.017594464123249054, -0.004578375723212957, -0.014835698530077934, -0.009560294449329376, 0.01352235022932291, -0.004035427235066891, -0.026076197624206543, -0.005579895339906216, 0.0031916562002152205, -0.00037419417640194297, 0.005513861309736967, -0.05232848599553108, 0.0007653554785065353, 0.014270738698542118, -0.011570670641958714, -0.004061107523739338, 0.016728680580854416, -0.030287716537714005, -0.0034117703326046467, -0.009156751446425915, 0.0003991863050032407, 0.01378648728132248, 0.030551854521036148, 0.003263193415477872, 0.011658716946840286, 0.006915254984050989, 0.020265182480216026, 0.0035915302578359842, -0.0011821967782452703, -0.003530998947098851, 0.022921226918697357, 0.005231381393969059, 0.0004193634376861155, -0.03269429877400398, -0.011511974036693573, -0.024638118222355843, 0.003705256152898073, -0.006632775068283081, 0.004215187393128872, 0.012671241536736488, -9.303264960180968e-05, 0.02738220989704132, -0.006929929368197918, -0.014806349761784077, 0.011878830380737782, -0.0156574584543705, 0.012884018942713737, -0.00429956428706646, 0.0011904510902240872, 0.05253392830491066, -0.03627482429146767, 0.005381792783737183, 0.01788794994354248, 0.02860017493367195, -0.03357475623488426, -0.028277339413762093, -0.009413551539182663, 0.0507730133831501, 0.0005782584194093943, -0.007201403379440308, 0.017022166401147842, 0.04237932339310646, -0.03363345190882683, 0.038446616381406784, 0.019678210839629173, -0.005282741505652666, -0.02482888475060463, 0.037800949066877365, 0.025665318593382835, -0.0024139191955327988, 0.030522504821419716, 0.021600542590022087, -0.007487552240490913, 0.002560662105679512, -0.046634867787361145, -0.016405846923589706, 0.01207693386822939, -0.001887479447759688, 0.023787010461091995, 0.01809338852763176, -0.020470622926950455, 0.04105864092707634, 0.007296786643564701, 0.0039730616845190525, 0.014256064780056477, 0.009868454188108444, -0.006904249545186758, 0.03025836870074272, 0.013984589837491512, -0.024960951879620552, -0.007667311932891607, -0.011225825175642967, -0.04956972226500511, 0.00012622175563592464, 0.0042371987365186214, 0.018944498151540756, -0.005752318538725376, 0.020397251471877098, 0.018401548266410828, -0.0132435392588377, 0.019267331808805466, -0.022231535986065865, 0.022877205163240433, 0.0009611654095351696, 0.010015197098255157, -0.0012133796699345112, -0.0016114194877445698, 0.019692884758114815, -0.03874010220170021, 0.022216862067580223, 0.018269481137394905, -0.005312089808285236, -0.026017500087618828, 0.015716155990958214, 0.04437502846121788, 0.006276923697441816, -0.005752318538725376, 0.021248359233140945, 0.023111993446946144, 0.02804255113005638, 0.011306533589959145, 0.0014811853179708123, -0.019370051100850105, -0.041997794061899185, 0.018709708005189896, -0.010198625735938549, 0.012979402206838131, -0.012825322337448597, 0.010440750978887081, 0.0031494677532464266, 0.0016169223235920072, 0.024418003857135773, 0.00827629491686821, 0.004464650060981512, -0.010851630941033363, -0.03322257474064827, -0.030815990641713142, 0.017829252406954765, -0.014967766590416431, 0.022466324269771576, 0.0076086148619651794, -0.0030375763308256865, -0.0009565796935930848, 0.007179392036050558, 0.030551854521036148, -0.008731197565793991, 0.01357370987534523, 0.007689323276281357, -0.012788636609911919, -0.0170955378562212, 0.05461767688393593, -0.016303125768899918, -0.04340652376413345, -0.027778415009379387, 0.014490853063762188, 0.008026831783354282, -0.013837846927344799, 0.005888055544346571, -0.017036840319633484, 0.057669926434755325, 0.0008194668916985393, -0.0006892326637171209, -0.02791048400104046, -0.011768774129450321, -0.011225825175642967, -0.008158900775015354, 0.0247114896774292, -0.006955609191209078, 0.01577485166490078, 0.003745610360056162, 0.02359624393284321, -0.00806351751089096, 0.01863633655011654, -0.030815990641713142, -0.0406184121966362, -0.004666421562433243, 0.003059587674215436, -0.0038006389513611794, -0.03521827608346939, -0.01240710448473692, -0.010668202303349972, 0.0072674378752708435, 0.014835698530077934, 0.006042135413736105, 0.0001891606516437605, -0.004655415657907724, 0.02051464468240738, -0.0011739424662664533, -0.024887580424547195, -0.015818875283002853, -0.01631780155003071, -0.006254912354052067, 0.0034924789797514677, -0.004655415657907724, 0.006009118165820837, -0.03862270712852478, 0.005979769863188267, 0.020455949008464813, -0.021116290241479874, -0.004013415891677141, -0.013353596441447735, 0.0042371987365186214, 0.02636968344449997, 0.010947014205157757, -0.023860381916165352, -0.03683244809508324, -0.019355377182364464, 0.0029733763076364994, -0.014887058176100254, -0.020397251471877098, -0.012054922059178352, -0.00474712997674942, -0.00832765456289053, -0.02604684978723526, -0.009010008536279202, -0.010514122433960438, -0.032958436757326126, 0.02526911348104477, 0.021101616322994232, 0.008511083200573921, -0.008173574693500996, 0.01168806478381157, 0.002437765011563897, -0.03953251242637634, -0.018460245802998543, 0.010286671109497547, 0.052475228905677795, 0.00976573396474123, 0.025988152250647545, 0.001935170846991241, -0.014666943810880184, 0.02980346605181694, -0.00618154089897871, -0.00949425995349884, 0.0008268040255643427, -0.0026633820962160826, -0.0038923530373722315, 0.003358576213940978, -0.003925370052456856, -0.007201403379440308, 0.051037151366472244, -0.007946123369038105, 0.010858967900276184, 0.002547822194173932, 0.03595199063420296, 0.032283417880535126, -0.035922639071941376, -0.011952201835811138, -0.02120433747768402, -0.044316329061985016, -0.014065299183130264, 0.009112728759646416, -0.01665530912578106, -0.00296420487575233, -0.0059027294628322124, 0.0015518052969127893, -0.017961319535970688, -0.038123782724142075, 0.023214712738990784, -0.004171164706349373, 0.03741941601037979, -0.002168125007301569, 0.01907656528055668, 0.015143858268857002, -0.034044332802295685, -0.01141659077256918, 0.01424138993024826, 8.672729745740071e-05, 0.003065090626478195, 0.030052928254008293, -0.009501596912741661, 0.017506416887044907, -0.012238350696861744, -0.01203291118144989, 0.008379015140235424, -0.0028633191250264645, 0.022715788334608078, -0.011291859671473503, -0.0022286565508693457, -0.001170273986645043, 0.016934121027588844, 0.005290078464895487, -0.017403697595000267, 6.184980156831443e-05, 0.006335620768368244, 0.037800949066877365, -0.0011124939192086458, 0.008613803423941135, 0.011240499094128609, -0.021351078525185585, -0.0005562469596043229, 0.034161727875471115, -0.006585083901882172, -0.007274774834513664, -0.005726638250052929, -0.02769036963582039, 0.01070488803088665, -0.04058906063437462, -0.017711857333779335, -0.0004065234388690442, 0.0019186623394489288, -0.012891355901956558, -0.03137361258268356, -0.0054148100316524506, -0.02526911348104477, 0.006368638016283512, 0.01831350289285183, -0.006060478277504444, -0.02240762859582901, 0.022011421620845795, -0.005675278138369322, -0.001124416827224195, -0.01280331052839756, -0.014307424426078796, 0.047075096517801285, -0.008665163069963455, 0.0002483163552824408, 0.02361091785132885, -0.012054922059178352, -0.001074891071766615, 0.025298461318016052, 0.0025514906737953424, -0.023889729753136635, 0.020499970763921738, -0.03853466361761093, -0.008180911652743816, -0.015525389462709427, -0.009780408814549446, -0.07043655216693878, -0.030815990641713142, 0.043201085180044174, 0.024329958483576775, -0.006210889667272568, 0.02117498777806759, -0.022877205163240433, -0.00496724434196949, 0.011570670641958714, -0.003947381861507893, -0.004736124537885189, -0.0034264447167515755, -0.0008258869056589901, -0.0406184121966362, -0.012649230659008026, -0.005275404080748558, -0.0033182217739522457, -0.010051882825791836, -0.03730202466249466, -0.011020385660231113, -0.024535398930311203, 0.01186415646225214, -0.0047507984563708305, 0.027719717472791672, -0.010800271295011044, -0.010352705605328083, -0.011754099279642105, -0.00037419417640194297, -0.026736540719866753, 0.0016554424073547125, -0.016581937670707703, 0.004908547271043062, 0.010396728292107582, 0.005590901244431734, -0.005279072560369968, 0.026780564337968826, 0.009010008536279202, -0.005444158334285021, -0.00828363187611103, 0.01301608793437481, 0.004538021516054869, 0.0232734102755785, 0.025973478332161903, 0.0021626222878694534, -0.011878830380737782, 0.006530055310577154, -0.012414442375302315, 0.026002826169133186, -0.026868609711527824, -0.007194066420197487, 0.01187149342149496, -0.002435930771753192, -0.0260615237057209, -0.0010730568319559097, 0.014644932933151722, 0.007373826578259468, 0.015760177746415138, -0.007894763723015785, 0.011482625268399715, 0.016185732558369637, -0.005528535693883896, 0.028115922585129738, -0.01609768718481064, 0.0184455718845129, 0.014644932933151722, -0.0033805875573307276, -0.01995702274143696, -0.013881870545446873, -0.021659240126609802, 0.023478850722312927, 0.007208740804344416, -0.008936637081205845, -0.03157905489206314, -0.01677270419895649, 0.002056233584880829, -0.007373826578259468, 0.029730094596743584, -0.011959539726376534, -0.00447198748588562, -0.00024808707530610263, 0.02528378739953041, 0.0031733133364468813, 0.014879721216857433, 0.012737276032567024, -0.01445416733622551, 0.02460877038538456, 0.0279251579195261, 0.03853466361761093, 0.03730202466249466, 0.010448087938129902, 0.01753576658666134, -0.029744768515229225, 0.032166026532649994, 0.02482888475060463, -0.013720452785491943, -0.02161521650850773, -0.01539332140237093, 0.005400135647505522, 0.01888580061495304, 0.009890465997159481, -0.0031934904400259256, -0.008180911652743816, -0.0035053188912570477, 0.0009148497483693063, 0.0019865308422595263, -0.03386824205517769, 0.0071830605156719685, -0.022671764716506004, -0.009574968367815018, 0.0027587648946791887, 0.013390282168984413, 0.003822650294750929, 0.02076410874724388, 0.03099208138883114, -0.0013463653158396482, 0.028292015194892883, 0.008709185756742954, 0.013096796348690987, -0.010991036891937256, 0.014923743903636932, 0.0029715420678257942, -0.013133482076227665, 0.005117655731737614, -0.019458096474409103, -0.024241913110017776, 0.01897384598851204, 0.0040831188671290874, 0.001450919546186924, -0.015481366775929928, -0.029744768515229225, -0.02636968344449997, 0.00833499152213335, -0.011746762320399284, -0.004571038763970137, -0.03733137249946594, -0.01643519476056099, -0.013757138513028622, -0.012568522244691849, -0.02240762859582901, -0.003077930537983775, -0.01699281856417656, 0.011343219317495823, 0.0051323301158845425, -0.04185105115175247, -0.033838894218206406, 0.005036947317421436, 0.004138147458434105, 0.033721499145030975, -0.0006053140969015658, 0.02207011915743351, 0.007227083668112755, -0.020910851657390594, 0.0044683185406029224, -0.00036295916652306914, -0.0031916562002152205, 0.0005163512541912496, 0.02041192539036274, -0.011233162134885788, 0.023214712738990784, -0.0005250641261227429, -0.02195272408425808, -0.0014481681864708662, -0.008562442846596241, 0.003637387417256832, -0.005609244108200073, -0.00474346149712801, 0.001726979506202042, -0.01097636204212904, 0.019399400800466537, -0.03213667497038841, 0.00590639840811491, -0.029407259076833725, 0.013713115826249123, -0.024109844118356705, -0.03289973735809326, -0.0037089246325194836, -0.010558145120739937, 0.009530945681035519, 0.013654419220983982, -0.009787745773792267, 0.006240237969905138, 0.00931816827505827, 0.023919079452753067, -0.002357056364417076, -0.010249985381960869, -0.01763848587870598, 0.001935170846991241, -0.0027716048061847687, -0.030610550194978714, 0.008621140383183956, -0.00917142629623413, -0.007623289246112108, -0.025181066244840622, 0.008621140383183956, 0.016537915915250778, -0.02008909173309803, -0.009751060046255589, -0.0027991191018372774, 0.017829252406954765, 0.020837480202317238, -0.003211833303794265, -0.005275404080748558, -0.020602691918611526, 0.009787745773792267, 0.022671764716506004, 0.011108431033790112, -0.008907289244234562, 0.004571038763970137, -0.032048631459474564, -0.0038299874868243933, 0.02948063053190708, 0.02383103221654892, -0.02570934034883976, 4.4911324948770925e-05, -0.009105391800403595, -0.012098944745957851, -0.0014500024262815714, -0.010969025082886219, -0.021938050165772438, 0.0012060424778610468, -0.00036479346454143524, 0.013698441907763481, 0.028761591762304306, 0.005183689761906862, -0.00015132852422539145, 0.011453276500105858, -0.021483147516846657, 0.007304123602807522, 0.013272887095808983, 0.0007644383586011827, 0.010763585567474365, -0.0014279909664765, 0.008430374786257744, -0.0017847594572231174, 0.005473507102578878, -0.0062255640514194965, -0.017403697595000267, -0.031725797802209854, 0.00689324364066124, -0.02374298684298992, 0.013896544463932514, -0.0041271415539085865, -0.0003634177555795759, -0.015275927260518074, 0.02196739986538887, 0.0008102954598143697, -0.008459723554551601, -0.037566158920526505, 0.005275404080748558, 0.006885906681418419, 0.01821078360080719, 0.006383312400430441, -0.0297887921333313, 0.0032723648473620415, 0.01689009740948677, -0.007304123602807522, 0.017345000058412552, -0.0034576274920254946, 0.030551854521036148, -0.012392430566251278, -0.017022166401147842, -0.007968135178089142, 0.003685078816488385, 0.013404956087470055, 0.04014883562922478, 0.015305275097489357, -0.00758660351857543, -0.017168909311294556, 0.016508566215634346, -0.014380795881152153, -0.022260885685682297, -0.02063203975558281, -0.031608402729034424, 0.002857816405594349, 0.006632775068283081, 0.020485296845436096, -0.0068822382017970085, -0.03322257474064827, 0.00882657989859581, 0.0061485241167247295, 0.005689952522516251, 0.024036472663283348, -0.01634714938700199, -0.011930190958082676, 0.013324247673153877, -0.017066190019249916, 0.017477069050073624, 0.02782243676483631, 0.001693962374702096, -0.0198836512863636, 0.008679836988449097, 0.0022745137102901936, -0.009347517043352127, -0.02240762859582901, 0.0021479479037225246, -0.017711857333779335, 0.009853780269622803, 0.0011555996024981141, -0.011277184821665287, -0.017242280766367912, 0.01025732234120369, 0.00823227223008871, -0.010756248608231544, 0.015804201364517212, 0.01985430344939232, -0.001373879611492157, 0.00236072507686913, -0.009083379991352558, 0.021938050165772438, -0.0033604104537516832, -0.008129552006721497, 0.0181080624461174, 0.016728680580854416, -0.01722760684788227, 0.005264398641884327, 0.02230490744113922, 0.008635814301669598, -0.011666053906083107, 0.01986897736787796, -0.011130442842841148, -0.007799380458891392, -0.005077301524579525, -0.02041192539036274, -0.0020507308654487133, -0.0076526375487446785, -0.0002691813569981605, -0.02096954733133316, -0.002907342044636607, 0.009567631408572197, -0.004229861777275801, -0.004666421562433243, 0.017080863937735558, -0.01589224673807621, -0.03110947646200657, -0.005069964099675417, -0.007124363444745541, 0.02098422311246395, 0.019795605912804604, -0.026002826169133186, -0.011600019410252571, -0.007777369115501642, -0.009186100214719772, 0.02063203975558281, -0.017374349758028984, -0.038446616381406784, 0.004948901478201151, 0.012935378588736057, 0.0042812214232981205, 0.013507676310837269, -0.049070797860622406, -0.03627482429146767, 0.02427126094698906, -0.0007979140500538051, 0.003138461848720908, 0.0011730253463611007, -0.008591791614890099, 0.007021643687039614, -0.005847701337188482, 0.007703997660428286, -0.006658455356955528, 0.003072427585721016, 0.00546616967767477, -0.014710967428982258, 0.011541321873664856, 0.005205701105296612, 0.021879354491829872, -0.009105391800403595, 0.007696660701185465, 0.01600964181125164, -0.00037052560946904123, -0.02415386773645878, -0.008951311931014061, -0.022143490612506866, 0.029935533180832863, 0.0007988311699591577, 0.028556151315569878, -0.001536213792860508, 0.013441641815006733, -0.02073475904762745, 0.012862008064985275, -0.005268067121505737, -0.008467060513794422, 0.011445939540863037, -0.01731565222144127, 0.0026266963686794043, 0.0011546824825927615, 0.03407368063926697, -0.020265182480216026, 0.0009492425597272813, -0.025753363966941833, 0.0017755880253389478, -0.002870656317099929, 0.022774484008550644, -0.014439492486417294, -0.014057961292564869, -0.02286253124475479, 0.01168806478381157, -0.005763323977589607, 0.020177137106657028, -0.018298828974366188, -0.006680466700345278, 0.009061369113624096, -0.05825689807534218, -0.03771290183067322, -0.025533249601721764, -0.016728680580854416, 0.0017205595504492521, 0.005803678184747696, 0.0023643935564905405, -0.02882028929889202, 0.017051514238119125, -0.003232010407373309, -0.006254912354052067, -0.0028651533648371696, 0.010110579431056976, 0.01731565222144127, -0.031843189150094986, 0.02604684978723526, -0.029539328068494797, -0.002501965034753084, 0.010807608254253864, 0.01875373162329197, 0.005326764192432165, 0.00521303853020072, 0.00690058059990406, 0.007513232063502073, -0.00425187312066555, 0.01168806478381157, -0.009560294449329376, -0.0514480322599411, -0.03545306250452995, 0.014813686721026897, 0.0008602797752246261, -0.013008750043809414, -0.004560032859444618, -0.0181080624461174, 0.016963468864560127, 0.005741312634199858, -0.012473138980567455, 0.0029275191482156515, 0.0052093700505793095, -0.02647240273654461, 0.015848223119974136, 0.0020709079690277576, -0.028629522770643234, 0.00756459217518568, -0.02339080534875393, -0.018152086064219475, 0.015319949947297573, 0.03891619294881821, -0.008833917789161205, 0.03633351996541023, -0.002920181956142187, -0.00927414558827877, 0.04880665987730026, -0.027837112545967102, 0.013984589837491512, -0.049276236444711685, -0.0013060109922662377, 0.019458096474409103, 0.0011482625268399715, -0.010829620063304901, -0.01668465882539749, 4.5771146687911823e-05, -0.01665530912578106, -0.008848591707646847, 0.013713115826249123, -0.011724750511348248, 0.00593574671074748, 0.03501283377408981, 0.011724750511348248, -0.017462395131587982, 0.03583459556102753, -0.005418478511273861, -0.012018236331641674, 0.03733137249946594, -0.008173574693500996, 0.012201664969325066, -0.023860381916165352, 0.013412293046712875, -0.0006530054961331189, -0.010037208907306194, -0.008100203238427639, 0.01973690837621689, 0.013404956087470055, -0.017080863937735558, 0.03474869951605797, -0.019810279831290245, -0.014556887559592724, -0.011387242004275322, -0.02372831292450428, 0.01976625621318817, -0.014777000993490219, -0.02261306717991829, -0.020793456584215164, -0.02108694240450859, 0.014600910246372223, -0.00881924293935299, 0.0026101877447217703, -0.008393689058721066, 0.023566896095871925, -0.001787510933354497, -0.025753363966941833, 0.005154341459274292, 0.019223308190703392, -0.011695402674376965, 0.015319949947297573, -0.010969025082886219, -0.0008855011546984315, 0.009112728759646416, 0.012025573290884495, 0.02726481482386589, -0.015848223119974136, 0.02117498777806759, 0.01909123919904232, -0.018827103078365326, -0.013911218382418156, 0.017154235392808914, 0.02835071086883545, 0.01186415646225214, -0.006966615095734596, -0.022128816694021225, -0.02716209553182125, 0.01213563047349453, 0.023302758112549782, -0.006750169210135937, 0.012451128102838993, 0.01159268245100975, -0.0029091762844473124, 0.003296210430562496, -0.011724750511348248, -0.0020415594335645437, -0.011174465529620647, 0.011900842189788818, -0.003600701689720154, -0.012399767525494099, 0.01646454446017742, 0.002419422147795558, -0.0027550964150577784, -0.005583564285188913, 0.013705778867006302, -0.02672186680138111, 0.00024281350488308817, 0.0001915681641548872, -0.023787010461091995, 0.0013170167803764343, 0.006973952054977417, -0.010249985381960869, -0.0007291283691301942, 8.993729716166854e-05, 0.008833917789161205, 0.01373512763530016, -0.0051763528026640415, 0.006207221187651157, 0.0055688899010419846, 0.009846442379057407, -0.010961688123643398, -0.019237982109189034, 0.016816725954413414, 0.00689691212028265, -0.004736124537885189, 0.009743723087012768, 0.005913735367357731, 0.01777055487036705, -0.0067978608421981335, 0.03744876757264137, -0.005781666841357946, 0.008811905980110168, 0.0008777054608799517, -0.006042135413736105, -0.021894028410315514, -0.0031091133132576942, 0.019355377182364464, 0.004934227094054222, 0.0038960217498242855, -0.00976573396474123, 0.010183950886130333, 0.0012518996372818947, 0.004791152663528919, -0.025679992511868477, 0.0024927936028689146, 0.02892300859093666, 0.01665530912578106, 0.007946123369038105, 0.02019181102514267, -0.004394947085529566, 0.0051323301158845425, -0.013353596441447735, -0.0055615524761378765, -0.009861117228865623, 0.023317433893680573, 0.00429956428706646, 0.017961319535970688, 0.028394734486937523, -0.003807975910604, 0.009068706072866917, -0.028057226911187172, 0.0028798277489840984, -0.024109844118356705, -0.002465279307216406, 0.0038299874868243933, 0.013727790676057339, 0.0357172004878521, -0.004427964333444834, 0.010690214112401009, 0.014065299183130264, -0.03407368063926697, 0.011981550604104996, 0.018577640876173973, -0.012054922059178352, -0.007681986317038536, -0.0008038755040615797, -0.004372935742139816, 0.012553847394883633, 0.01721293292939663, -0.025635968893766403, -0.011820133775472641, 0.010029871016740799, -0.008474397473037243, 0.0099858483299613, -0.014688955619931221, 0.014909069985151291, -0.006056809797883034, -0.008298305794596672, -0.003543838858604431, -0.005829358473420143, 0.0020232165697962046, -0.00949425995349884, -0.008100203238427639, -0.019135262817144394, -0.0023056964855641127, 0.024564746767282486, -0.01512918435037136, 0.017961319535970688, -0.011357894167304039, -0.02085215412080288, 0.01119647640734911, 0.009428225457668304, -0.009780408814549446, -0.014219379052519798, 0.013265550136566162, -0.00733714085072279, 0.03389758989214897, 0.014432155527174473, 0.019472772255539894, 0.030551854521036148, 0.007527906447649002, 0.00954561959952116, -0.00966301467269659, 0.008379015140235424, -5.94996236031875e-05, -0.00041569487075321376, -0.016171058639883995, 0.018724383786320686, -0.024770187214016914, 0.004490329883992672, -0.0026138564571738243, 0.011555996723473072, -0.013309572823345661, 0.007946123369038105, 0.0008703683270141482, -0.00026138563407585025, -0.010176613926887512, 0.016200406476855278, -0.012619881890714169, 0.014865047298371792, 0.00806351751089096, 0.006199883762747049, -0.020001046359539032, -0.010345368646085262, 0.007050991989672184, 0.02186467871069908, 0.0004961741506122053, -0.009061369113624096, -0.010536134243011475, 0.0033604104537516832, -0.0045526959002017975, 0.00021965564519632608, 0.025577273219823837, -0.024315284565091133, -0.010756248608231544, -0.02118966169655323, -0.0051323301158845425, -0.013177504763007164, 0.003277867566794157, -0.015628110617399216, 0.013551698997616768, -0.022598393261432648, -0.028512129560112953, 0.02770504355430603, 0.01258319616317749, -0.036597657948732376, -0.0015325453132390976, 0.008745871484279633, 0.0026266963686794043, -0.006548398174345493, 0.01065352838486433, 0.017271628603339195, -0.00976573396474123, -0.0032099990639835596, -0.0011024053674191236, 0.008613803423941135, -0.00021885315072722733, 0.02340547926723957, -0.004853518679738045, 0.023420153185725212, 0.016391173005104065, 0.007076672278344631, 0.0004223441646900028, 0.014322098344564438, -0.004020753316581249, -0.009574968367815018, -0.03518892824649811, -0.00804884359240532, -0.01577485166490078, 0.0032540219835937023, -0.028057226911187172, -0.009685025550425053, -0.021571192890405655, -0.016391173005104065, 0.002331376541405916, -0.004105130210518837, 0.021938050165772438, -0.02208479307591915, 0.010088568553328514, 0.020382577553391457, -0.01307478453963995, 0.022671764716506004, 0.0011766939423978329, -0.009200774133205414, -0.001648105215281248, 0.017741207033395767, 0.027103397995233536, 0.01600964181125164, -0.005007598549127579, -0.01689009740948677, -0.0028046220541000366, 0.015363972634077072, -0.018401548266410828, -0.014322098344564438, -0.0017590795177966356, 0.0007864497601985931, 0.00877522025257349, -0.011306533589959145, 0.0020177136175334454, -0.010521459393203259, -0.01092500239610672, 0.01187149342149496, -0.0056716096587479115, -0.005968763958662748, 0.0049378955736756325, -0.0012372253695502877, -0.003499816171824932, -0.01517320703715086, 0.005275404080748558, -0.021571192890405655, 0.03363345190882683, 0.0043215760961174965, 0.011519310995936394, 0.0004516927292570472, -0.013911218382418156, 0.011724750511348248, 0.005370786879211664, 0.02660447172820568, -0.006324615329504013, -0.005844032391905785, 0.016259104013442993, 0.01374246459454298, 0.0010327025083824992, -0.02052932046353817, -0.006434672512114048, -0.008437711745500565, 0.006144855171442032, -0.02452072501182556, 0.004064776003360748, -0.0028963363729417324, -0.03410302847623825, 0.0020360564813017845, 0.00017448638391215354, -0.024124518036842346, -0.007260100916028023, 0.011255173943936825, 0.004882866982370615, 0.007858077995479107, -0.020940199494361877, 0.027998529374599457, -0.00427755294367671, -0.015804201364517212, -0.00849640928208828, 0.019179286435246468, 0.007681986317038536, 0.009362191893160343, 0.02274513617157936, 0.026736540719866753, -0.010580156929790974, 0.01821078360080719, 0.0085477689281106, 0.00496357586234808, 0.01258319616317749, -0.013537024147808552, 0.02926051802933216, 0.01517320703715086, -0.020133113488554955, 0.014219379052519798, 0.002390073612332344, -0.022451650351285934, -0.0043142386712133884, 0.00474712997674942, -0.0016490223351866007, 0.014542212709784508, -0.006408992223441601, -0.015936270356178284, -0.01634714938700199, 0.004039096180349588, -2.7156018404639326e-05, -0.008100203238427639, -0.0029715420678257942, -0.013038098812103271, 0.011115767993032932, 0.003718096064403653, -0.010044545866549015, 0.004655415657907724, 0.00011487210576888174, -0.014065299183130264, -0.008445048704743385, -0.023889729753136635, -0.005047952756285667, -0.017477069050073624, -0.005543209612369537, -0.007491220720112324, 0.02713274583220482, -0.0318138413131237, 0.026355009526014328, 0.019237982109189034, -0.007017975207418203, 0.014432155527174473, -0.010690214112401009, -0.002577170729637146, 0.018562965095043182, -0.012495150789618492, -0.008041506633162498, -0.00927414558827877, -0.0016930452547967434, 0.010778259485960007, 0.0030999418813735247, 0.01418269332498312, -0.0023937420919537544, 0.0026505421847105026, -0.012348407879471779, -0.002782610710710287, -0.02393375337123871, 0.009457574225962162, 0.013221527449786663, 0.02286253124475479, 0.033486708998680115, 0.0188711266964674, -0.010462762787938118, 0.023009274154901505, -0.009178763255476952, 0.0011996225221082568, 0.03011162579059601, 0.007403174880892038, -0.009905139915645123, -0.006196215283125639, -0.0023185363970696926, -0.01092500239610672, 0.0003010520595125854, -0.028776265680789948, 0.00321366754360497, -0.012634556740522385, 0.012120956555008888, 0.04381740465760231, 0.008731197565793991, -0.01963418908417225, 0.020133113488554955, 0.011754099279642105, -0.010029871016740799, 0.011123104952275753, 0.002547822194173932, -0.03298778459429741, 0.00917142629623413, 0.02726481482386589, 0.027998529374599457, -0.015569412149488926, 0.009589643217623234, 0.009897802956402302, 0.026516426354646683, 0.0030394105706363916, 0.021233685314655304, 0.014116658829152584, -0.0006314526544883847, 0.0055175297893583775, -0.0044426387175917625, 0.001232639653608203, -0.023875055834650993, 0.007139037828892469, 0.011908179149031639, -0.01307478453963995, -0.003888684557750821, -0.011673390865325928, 0.0014490853063762188, -0.005976100917905569, -0.006746500730514526, -0.014483516104519367, -0.001966353738680482, -0.02923116832971573, -0.006353963632136583, 0.00040514772990718484, -0.006827209610491991, 0.0038923530373722315, 0.009604317136108875, -0.01677270419895649, -0.013353596441447735, 0.006111838389188051, -0.004582044202834368, 0.010660865344107151, -0.016185732558369637, 0.006012786645442247, 0.0033824217971414328, -0.0037859645672142506, -0.005814684089273214, 0.01446150429546833, 0.013559035956859589, -0.011401916854083538, 0.003310884814709425, -0.006977621000260115, 0.013889207504689693, -0.012517161667346954, -0.004306901711970568, 0.01909123919904232, 0.0031623076647520065, -0.028834963217377663, 0.00183520233258605, -0.03281169384717941, 0.024652792140841484, -0.00017093245696742088, -0.006937266327440739, -0.03700853884220123, 0.0018031023209914565, -0.03110947646200657, 0.0020672394894063473, 0.00949425995349884, -0.0019241651752963662, -0.010719562880694866, 0.008877940475940704, 0.03022901900112629, -0.004376604221761227, 0.010029871016740799, -0.016758030280470848, -0.006335620768368244, -0.007359152194112539, 0.006133849732577801, 0.004101461730897427, -0.005576226860284805, -0.001062051160261035, -0.010572819970548153, -0.006962946616113186, -0.009912476874887943, -0.005183689761906862, 0.00543315289542079, 0.023919079452753067, -0.007938786409795284, 0.022260885685682297, 0.0170074924826622, 0.01280331052839756, 0.012421779334545135, -0.008870603516697884, 0.01910591498017311, 0.01450552698224783, -0.005979769863188267, -0.026853935793042183, 0.016405846923589706, 0.006287929601967335, 0.013977252878248692, -0.0033163875341415405, 0.005235049873590469, 0.014446830376982689, -0.015525389462709427, -0.015407995320856571, 0.018841776996850967, -0.013353596441447735, 0.0023698965087532997, -0.00954561959952116, 0.0011812796583399177, -0.007487552240490913, 0.015745503827929497, -0.021365754306316376, 0.027294162660837173, 0.009868454188108444, -0.006581415422260761, -0.018812429159879684, 0.03510088101029396, 0.027499603107571602, 0.012010899372398853, -0.018181433901190758, -0.013360933400690556, -0.004831507336348295, 0.001403228146955371, -0.002355222124606371, -0.03630417212843895, -0.010360042564570904, 0.02152717113494873, -0.010594830848276615, -0.004207849968224764, 0.005998112726956606, -0.017403697595000267, -0.0027275821194052696, -0.01731565222144127, -9.618532931199297e-05, -0.0002726206439547241, -0.0040170843712985516, -0.0018462080042809248, 0.02185000479221344, -0.00035562203265726566, -0.012106281705200672, -0.0056789470836520195, 0.013067447580397129, 0.006665792316198349, 0.010029871016740799, -0.022451650351285934, -0.028086574748158455, -0.0044683185406029224, -0.007982809096574783, -0.012253024615347385, -0.02912844903767109, -0.022803833708167076, -0.009883128106594086, 0.008012157864868641, -0.004648078698664904, -0.006922592408955097, 0.025122370570898056, 0.01843089796602726, 0.016141708940267563, -0.003125621937215328, -0.008716522715985775, -0.013705778867006302, 0.01785860024392605, 0.015466692857444286, 0.004923221189528704, 0.004765472840517759, 0.026516426354646683, 0.012054922059178352, -0.0011290025431662798, -0.003059587674215436, 0.007571929134428501, 0.010499448515474796, 0.0008478983072564006, -0.011064408347010612, 0.005370786879211664, 0.02430061064660549, -0.012942716479301453, 0.008217597380280495, 0.02161521650850773, -0.0008258869056589901, -0.008709185756742954, 0.0038153131026774645, 0.005583564285188913, -0.00062044698279351, 0.01141659077256918, -0.001762747997418046, 0.008246946148574352, -0.00182878237683326, 0.003899690229445696, 0.0037969702389091253, -0.009200774133205414, 0.0002347885019844398, 0.009127402678132057, 0.00758660351857543, -0.010858967900276184, -0.0016838738229125738, 0.007792043499648571, -0.010103242471814156, 0.0214097760617733, 0.013581047765910625, -0.014923743903636932, 0.0005947669851593673, 0.028512129560112953, -0.0042041814886033535, -0.007153712213039398, 0.0035383361391723156, 0.0032246734481304884, 0.026853935793042183, 0.012201664969325066, -0.015921594575047493, -0.006654786411672831, -0.011159790679812431, -0.016860749572515488, 0.0005475341458804905, 0.020397251471877098, -0.012707927264273167, -0.01307478453963995, 0.01909123919904232, 0.003011896274983883, -0.004449975676834583, -0.003859336022287607, -0.0019773594103753567, -0.0020250508096069098, -0.014865047298371792, -0.015965618193149567, 0.007902100682258606, -0.002766102086752653, 0.0033017133828252554, 0.01495309267193079, 0.022906553000211716, -0.008246946148574352, 0.03313452750444412, -0.014256064780056477, 0.012964727357029915, -0.01655258983373642, -0.004655415657907724, 0.0016847909428179264, 0.012553847394883633, -0.0009107225923798978, -0.010616842657327652, -0.0036777418572455645, -0.015437344089150429, -0.011328545399010181, 0.016420520842075348, 0.0061778724193573, 0.003077930537983775, -0.03269429877400398, -0.00686756381765008, 0.015378646552562714, -0.008158900775015354, 0.010565483011305332, -0.011761436238884926, 0.005121324211359024, -0.011519310995936394, -0.0006562155322171748, 0.0015031966613605618, -0.014035950414836407, 0.013779150322079659, -0.001887479447759688, -0.009149414487183094, 0.0060971640050411224, -0.005495518445968628, 0.007373826578259468, -0.020265182480216026, 0.02824799157679081, -0.012069596908986568, 0.002778941998258233, -0.0058256895281374454, -0.01395524200052023, 0.0067208209075033665, -0.01932602934539318, 0.00025794634711928666, -0.0029697075951844454, -0.01885645091533661, 0.004174833185970783, 0.012722602114081383, 0.020133113488554955, 0.010470099747180939, -0.00424820464104414, 0.027881134301424026, -0.023860381916165352, 0.007216077763587236, -0.003637387417256832, -0.017359673976898193, 0.0012234682217240334, 0.004974581301212311, 0.013140819035470486, 0.002729416359215975, -0.002883496228605509, -0.017609138041734695, -0.0035658504348248243, -0.005040615797042847, 0.0044426387175917625, -0.006273255217820406, 0.005510192830115557, -0.014160681515932083, -0.0073114605620503426, -0.007637963630259037, -0.0038740101736038923, -0.00010048443800769746, -0.0016416852595284581, -0.00041569487075321376, -0.029642049223184586, 0.01875373162329197, -0.018049366772174835, 0.026208266615867615, -0.009457574225962162, 0.0015600594924762845, -0.00425187312066555, 0.016024315729737282, 0.010609505698084831, 0.0015894081443548203, 0.0005837612552568316, 0.010249985381960869, 0.01741837151348591, -0.006636443547904491, 0.008687174879014492, 0.006027461029589176, -0.010470099747180939, 0.028658872470259666, -0.008379015140235424, -0.005543209612369537, -0.0016361824236810207, -0.013360933400690556, -0.01753576658666134, -0.007777369115501642, 0.011966876685619354, -0.03477804735302925, -0.01373512763530016, 0.0057229697704315186, -0.02107226848602295, -0.001009774045087397, -0.012018236331641674, -0.008188248611986637, 0.008907289244234562, 0.010572819970548153, 0.0017462394898757339, -0.0013913053553551435, -0.012663904577493668, 0.010741573758423328, 0.013001413084566593, -0.03207797929644585, 0.010558145120739937, -0.0013436138397082686, 0.0031292904168367386, -0.007307792082428932, -0.013001413084566593, 0.023126667365431786, -0.015745503827929497, 0.04355326667428017, -0.010638854466378689, -0.008965985849499702, -0.013126145116984844, -0.03245950862765312, 0.021820656955242157, -0.029612699523568153, -0.00023432992747984827, 0.006431004032492638, -0.004270215984433889, 0.01373512763530016, 0.011702739633619785, -0.01549604069441557, 0.0022763479501008987, -0.01963418908417225, 0.01015460304915905, -0.0013087624683976173, 0.0061852093786001205, -0.0030981076415628195, -0.010330693796277046, -0.0030834334902465343, -0.0032558562234044075, -0.0046297358348965645, 0.022378278896212578, 0.01832817681133747, 0.004332581534981728, -1.6608879377599806e-05, -0.0021057594567537308, 0.01042607706040144, -0.03827052563428879, -0.004284890368580818, -0.007359152194112539, 0.0040060789324343204, -0.010822282172739506, -0.013881870545446873, -0.01656726375222206, 0.004185838624835014, -0.004589381627738476, -0.0030981076415628195, 0.007740683387964964, -0.022598393261432648, -0.014094647020101547, -0.01766783557832241, 0.014490853063762188, -0.002901839092373848, 0.019252657890319824, -0.0010583825642243028, 0.0009593311697244644, 0.0014353281585499644, 0.014923743903636932, 0.01545201800763607, -0.002808290533721447, 0.0065667410381138325, -0.0018196109449490905, -0.0005998112610541284, -0.013221527449786663, -0.007487552240490913, -0.019252657890319824, -0.007439860608428717, 0.0067978608421981335, 0.009670351631939411, 0.013845184817910194, -0.0009235625620931387, 0.006830878090113401, -0.007630626205354929, 0.012120956555008888, -0.013698441907763481, -0.02383103221654892, 0.005803678184747696, 0.006078821141272783, 0.0062255640514194965, 0.0014894395135343075, 0.02130705676972866, -0.017168909311294556, 0.0021296050399541855, 0.02286253124475479, -0.00472145015373826, -0.004325244575738907, 0.005319427233189344, -0.000761686940677464, -0.0054074726067483425, 0.011996225453913212, -0.005293746944516897, -0.027059374377131462, -0.009024683386087418, -0.0033622446935623884, 0.014916406944394112, -0.024652792140841484, 0.01697814278304577, 0.015246578492224216, -0.016699332743883133, 0.02948063053190708, -0.00894397497177124, 0.020837480202317238, -0.006555735133588314, -0.0018737222999334335, 0.002811959246173501, 0.00124089396558702, 0.005047952756285667, -0.00343378190882504, 0.0007749854703433812, 0.005312089808285236, 0.007527906447649002, 0.014659606851637363, -0.0030540847219526768, 0.011203814297914505, -0.0023020280059427023, 0.02371363900601864, 0.004270215984433889, -0.022231535986065865, -0.005796341225504875, 0.023684289306402206, -0.0015426338650286198, 0.0025991820730268955, -0.010778259485960007, -0.02494627796113491, -0.021468473598361015, -0.0025881764013320208, -0.007373826578259468, -0.02273046225309372, -0.013874532654881477, 0.029994230717420578, 0.01015460304915905, -0.009618991054594517, -0.02813059836626053, -0.003741941647604108, -0.00898799765855074, -0.010448087938129902, 0.027308838441967964, 0.028306689113378525, -0.016831399872899055, 0.04405219107866287, 0.01797599531710148, -0.0073774950578808784, -0.007065666373819113, 0.02139510214328766, 0.03501283377408981, 0.005044284276664257, 0.0057486495934426785, -0.02010376565158367, -0.012348407879471779, -0.0060641467571258545, 0.012275036424398422, -0.018137412145733833, 0.021101616322994232, -0.009428225457668304, -0.0030357418581843376, 0.01866568624973297, -0.020778782665729523, 0.03495413810014725, 0.017579788342118263, -0.01226036250591278, -0.026853935793042183, -0.009949162602424622, 0.012443790212273598, 0.006163198035210371, 0.0034576274920254946, 0.008012157864868641, 0.010374716483056545, 0.007502226158976555, -0.025914780795574188, 0.005315758287906647, 0.0037969702389091253, 0.00178567657712847, 0.022686438634991646, -0.013316910713911057, -0.034807395190000534, 0.023434827104210854, 0.011167128570377827, -0.0005067212623544037, -0.012392430566251278, 0.014857710339128971, -0.017168909311294556, 0.021453799679875374, 0.010961688123643398, 0.016699332743883133, -0.017462395131587982, 0.004387610126286745, -0.005777998361736536, 0.03721397742629051, 0.006746500730514526, -0.0025936791207641363, 0.006467689294368029, -0.020045068114995956, -0.010191288776695728, 0.017256954684853554, 0.017286304384469986, -0.00948692299425602, 0.01866568624973297, -0.010338031686842442, 0.010117917321622372, -0.01843089796602726, 0.008342329412698746, 0.014388132840394974, 0.014754990115761757, 0.009325506165623665, 0.006607095245271921, 0.001818693708628416, -0.0074215177446603775, 0.0054845125414431095, -0.015950944274663925, -0.0025459877215325832, 0.029598025605082512, 0.0007951626321300864, -0.0006695140618830919, -0.012546510435640812, 0.013478327542543411, 0.00321366754360497, -0.0004182170087005943, -0.011533984914422035, 0.0022378279827535152, -0.00714270630851388, -0.00900267157703638, -0.0024469364434480667, -0.0004819584428332746, 0.03885749727487564, -0.010448087938129902, 0.026560449972748756, 0.017374349758028984, 0.0014564223820343614, -0.010763585567474365, 0.008929300121963024, -0.01719825714826584, -0.004167495761066675, -0.014997115358710289, 0.024462027475237846, -0.006038466934114695, -5.568775304709561e-05, 0.003807975910604, 0.0010446254163980484, -0.0021956393029540777, 0.008122215047478676, 0.03709658235311508, -0.009083379991352558, 0.015202555805444717, -0.022319581359624863, -0.0005058041424490511, -0.035482414066791534, 0.04284889996051788, 0.01612703502178192, 0.008202923461794853, 0.011123104952275753, 0.002920181956142187, 0.018401548266410828, 3.857730916934088e-05, -0.004295895807445049, -0.016640635207295418, 0.004978249780833721, -0.04493264853954315, -0.01463025901466608, -0.02041192539036274, 0.02440332993865013, -0.0017489909660071135, 0.01785860024392605, 0.006434672512114048, 0.014784338884055614, -0.006757506635040045, 0.012209001928567886, 0.008973322808742523, -0.008401026017963886, -0.0014637595741078258, -0.0037327702157199383, -0.011225825175642967, 0.002340547973290086, 0.007593940477818251, -0.00966301467269659, 0.027308838441967964, 0.008357003331184387, -0.02085215412080288, -0.003217336256057024, -0.007689323276281357, -0.00954561959952116, 0.031080128625035286, -0.008716522715985775, 0.00756459217518568, -0.0012500653974711895, -0.01334625855088234, -0.006522717885673046, 0.00019076565513387322, -0.0019370050868019462, 0.007483883295208216, 0.009751060046255589, 0.014278075657784939, 0.0038776788860559464, -2.1395217117969878e-05, -0.02337612956762314, -0.02572401612997055, -0.0017838423373177648, -0.015041138045489788, -0.0064897011034190655, -0.024329958483576775, -0.015231903642416, 0.017168909311294556, -0.0034851417876780033, 0.021233685314655304, 0.011211151257157326, -0.0013601224636659026, -0.0012931710807606578, 0.020250508561730385, -0.015099835582077503, -0.029598025605082512, 0.002579004969447851, -0.006570409517735243, -0.010726899839937687, 0.001117996871471405, -0.007549917791038752, 0.014344110153615475, -0.0031164505053311586, 0.0035695189144462347, -0.009024683386087418, -0.006232901010662317, 0.008584454655647278, 0.013867195695638657, 0.009068706072866917, 0.008907289244234562, 0.017491742968559265, 0.018064040690660477, 0.01975158229470253, -0.019384725019335747, -0.010147265158593655, -0.014160681515932083, 0.000581009837333113, -0.005279072560369968, 0.00402442179620266, -0.015510715544223785, 0.004156490322202444, 0.01941407471895218, 0.009582305327057838, -0.009567631408572197, -0.011849482543766499, -0.01733032613992691, -0.0047838157042860985, -0.018724383786320686, -0.02130705676972866, 0.008437711745500565, -2.1667494365829043e-05, 0.0044756559655070305, -0.014791675843298435, 0.007293117698282003, 0.012700590305030346, 0.0017049680463969707, 0.011247836984694004, 0.008613803423941135, 0.009751060046255589, -0.014777000993490219, -0.0016737852711230516, 0.020896175876259804, 0.002591844880953431, -0.00010570068116066977, -0.0009547454537823796, -0.024667467921972275, -0.0023827364202588797, 0.014476178213953972, -0.0071903979405760765, -0.011768774129450321, 0.007069334853440523, 0.01719825714826584, -0.006691472139209509, 0.005697289947420359, -0.0006456683622673154, 0.001403228146955371, 0.02901105396449566, 0.0005998112610541284, 0.023009274154901505, 0.010961688123643398, 0.0007740683504380286, -0.021659240126609802, -0.0008125883177854121, -0.008320317603647709, -0.003402598900720477, -0.001326188212260604, -0.016699332743883133, -0.0036905817687511444, 0.0061778724193573, 0.018284155055880547, -0.017462395131587982, -0.0030027248430997133, 0.0059430841356515884, -0.030287716537714005, -0.002571667777374387, 0.02207011915743351, 0.009193437173962593, 0.01301608793437481, -0.010998373851180077, 0.035599805414676666, 0.0090540312230587, -0.012634556740522385, 0.005759655497968197, 0.01545201800763607, -0.029216494411230087, 0.02196739986538887, -0.02130705676972866, -0.01285467017441988, -0.0013784653274342418, -0.017154235392808914, 0.0035346674267202616, -0.011445939540863037, 0.015261252410709858, -0.009670351631939411, 0.0333399660885334, 0.025914780795574188, 0.02879093959927559, -0.0022818506695330143, -0.0023955763317644596, 0.0006988626555539668, -0.007549917791038752, 0.007946123369038105, 0.006779517978429794, -0.022686438634991646, 0.004171164706349373, 0.0033475705422461033, 0.009501596912741661, 0.021453799679875374, 0.02095487341284752, 0.018592314794659615, -0.007748020347207785, -0.0057559870183467865, -0.003497981932014227, -0.0013858024030923843, 0.011541321873664856, 0.005282741505652666, -0.012715265154838562, 0.02437398210167885, -0.01047743670642376, 0.013632407411932945, 0.014967766590416431, -0.016038989648222923, -0.010411402210593224, 0.020367901772260666, -0.0036153760738670826, 0.013133482076227665, -0.005077301524579525, 0.014813686721026897, -0.0009464911418035626, 0.003516324795782566, 0.041352126747369766, 0.0006562155322171748, 0.005983438342809677, 0.0013069282285869122, 0.005961426999419928, -0.005396467167884111, 0.01490173302590847, -0.019707560539245605, 0.008078192360699177, -0.005950421094894409, -0.011035059578716755, 0.001139091094955802, 0.03014097362756729, 0.007179392036050558, -0.0018856452079489827, -0.002155285095795989, -0.01633247546851635, 0.00855510588735342, 0.004255541600286961, -0.012942716479301453, -0.005051621235907078, -0.010389391332864761, 0.0026615478564053774, -0.02095487341284752, -0.01843089796602726, 0.020015720278024673, -0.006170535460114479, -0.021351078525185585, -0.011680727824568748, 0.027969179674983025, 0.009853780269622803, -0.004703107289969921, 0.0029733763076364994, -0.0014123995788395405, -0.007197734899818897, 0.012473138980567455, -0.0025093022268265486, 0.023581570014357567, -0.015026464127004147, 0.009574968367815018, 0.012671241536736488, 0.013859858736395836, 0.014872384257614613, 0.003077930537983775, -0.022319581359624863, 0.03533567115664482, -0.022598393261432648, 0.011064408347010612, -0.008760546334087849, -0.0050149355083703995, -0.0028009535744786263, 0.006192546803504229, -0.0019333366071805358, 0.02008909173309803, -0.008019494824111462, 0.0108736427500844, -0.0019021537154912949, 0.006243906915187836, 0.009883128106594086, -0.00615219259634614, 0.0010758083080872893, 0.011240499094128609, 0.029055077582597733, -0.0014949424657970667, -0.015202555805444717, -0.013316910713911057, 0.013845184817910194, 0.0002547363401390612, 0.020045068114995956, -0.01755044050514698, 0.010059219785034657, -0.01164404209703207, 0.009839105419814587, 0.006955609191209078, -0.006386980880051851, 0.01110109407454729, -0.012436453253030777, 0.0008080026018433273, -0.023200038820505142, 0.01187149342149496, 0.0011106596793979406, 0.004457313101738691, -0.006269586738198996, 0.011387242004275322, 0.010682877153158188, 0.012942716479301453, -0.014703629538416862, -0.002811959246173501, -0.007469209376722574, -0.002531313570216298, 0.004754467401653528, -0.006431004032492638, 0.008569780737161636, -0.0002820213558152318, -0.006254912354052067, 0.0029568676836788654, 0.0203092060983181, 0.0170074924826622, -0.004486661404371262, -0.007355483714491129, 0.008393689058721066, 0.011570670641958714, -0.0005819269572384655, -0.00881924293935299, 0.0014600909780710936, -0.009398877620697021, 0.01334625855088234, -0.0031934904400259256, -0.0036740731447935104, -0.01578952744603157, 0.008298305794596672, -0.014938418753445148, 0.009259471669793129, 0.016508566215634346, 0.0017306481022387743, 0.0005351526779122651, 0.0156574584543705, -0.01697814278304577, 0.003376919077709317, -0.012561185285449028, 0.0002083060098811984, -0.0010317853884771466, 0.009743723087012768, -0.02770504355430603, 0.006342958193272352, 0.0123557448387146, -0.008026831783354282, -0.011974213644862175, 0.008474397473037243, 0.016479218378663063, -0.001249148161150515, 0.025019649416208267, -0.015217229723930359, 0.012377756647765636, 0.004761804360896349, -0.01236308179795742, 0.018929822370409966, 0.018812429159879684, 0.0018764737760648131, -0.005620249547064304, -0.007513232063502073, -0.0156574584543705, 0.007975472137331963, 0.0026468734722584486, 0.009186100214719772, -0.004193176049739122, -0.0031292904168367386, -0.006966615095734596, -0.030082276090979576, 0.01775588095188141, -0.008797232061624527, -0.04082385078072548, -0.03354540839791298, -0.0033512390218675137, -0.018621662631630898, -0.0017838423373177648, -0.02283318154513836, 0.0024634450674057007, -0.020558668300509453, 0.014175355434417725, 0.009626328945159912, 0.01964886300265789, -0.005165346898138523, -0.020661387592554092, 0.0005984355229884386, -0.00496724434196949, -0.0008235940476879478, 0.009552957490086555, -0.00784340314567089, 0.015833549201488495, 0.02218751423060894, 0.006335620768368244, 0.00971437431871891, 0.014828361570835114, -0.020030394196510315, 0.004846181254833937, -0.0033457360696047544, -0.008188248611986637, 0.01843089796602726, 0.004611392971128225, -0.0042738844640553, 0.01876840554177761, -0.0037566160317510366, 0.00810754019767046, 0.00017391316941939294, -0.00615219259634614, 0.004761804360896349, 0.009743723087012768, 0.01346365362405777, -7.387297046079766e-06, -0.00321366754360497, 0.007245426531881094, -0.008393689058721066, 0.04842512682080269, 0.017961319535970688, 0.004482992924749851, 0.001286751008592546, -0.012920704670250416, -0.02352287247776985, 0.010675539262592793, -0.004328913055360317, -0.010191288776695728, 0.013390282168984413, 0.00613018125295639, -0.02594412863254547, 0.024975627660751343, 0.018460245802998543, 0.001406896742992103, -0.015407995320856571, -0.0027569306548684835, 0.007931449450552464, -0.01213563047349453, 0.0037547817919403315, 0.00094557402189821, -0.010741573758423328, -0.008973322808742523, 0.02063203975558281, 0.005554215516895056, 0.008665163069963455, 0.017726531252264977, -0.014997115358710289, -0.01931135356426239, 0.000498925568535924, 0.012414442375302315, 0.003778627375140786, -0.029187146574258804, 0.008518420159816742, 0.00970703735947609, 0.024770187214016914, -0.006431004032492638, 0.008914626203477383, 0.009230122901499271, -0.0037896332796663046, -0.005656935274600983, -0.020133113488554955, -0.002854147693142295, -0.010756248608231544, -0.03727267310023308, -0.008085529319941998, 0.02361091785132885, -0.017080863937735558, 0.006526386830955744, -0.0021772964391857386, 0.017814578488469124, -0.0070803407579660416, -0.01646454446017742, 0.0003588320396374911, 0.0005305669619701803, 0.006570409517735243, -0.0054074726067483425, 0.0030082277953624725, 0.00137204525526613, -0.00618154089897871, -0.024696815758943558, -0.00476914132013917, 0.0030320733785629272, 0.016259104013442993, -0.00922278594225645, 0.005873381160199642, -0.0012977567967027426, 0.021571192890405655, 0.0039730616845190525, -0.006735495291650295, 0.019164610654115677, -0.0038960217498242855, 0.014490853063762188, -0.02098422311246395, -0.004482992924749851, -0.007509563583880663, -0.007212409283965826, -0.013911218382418156, -0.006856557913124561, 0.016156384721398354, -0.004413289949297905, -0.017271628603339195, 0.01951679401099682, -0.008070854470133781, -0.015584086999297142, 0.0017526594456285238, -0.012047585099935532, 0.005917403846979141, 0.008357003331184387, -0.00709501514211297, -0.021703261882066727, -0.0017599966377019882, 0.003059587674215436, 0.015363972634077072, 0.0028468105010688305, -0.006464020814746618, 0.002166290767490864, 0.004956238437443972, 0.000597518403083086, 0.005326764192432165, 0.001250982517376542, 0.015510715544223785, -0.003230176167562604, -0.00357135315425694, -0.013375607319176197, -0.027837112545967102, -0.0060641467571258545, 0.00521670700982213, 0.016038989648222923, 0.022436976432800293, -0.005979769863188267, 0.025958804413676262, 0.006027461029589176, 0.013808499090373516, -0.016904771327972412, 0.004229861777275801, 0.008760546334087849, 0.011137779802083969, 0.02650175243616104, 0.02217283844947815, 0.011761436238884926, -0.00783606618642807, 0.02493160404264927, -0.005847701337188482, 0.008364340290427208, 0.005403804127126932, 0.008474397473037243, 0.017594464123249054, -0.015730829909443855, 0.021541845053434372, 0.00620355224236846, -0.024036472663283348, -0.0034557932522147894, -0.0014307424426078796, -0.005506523884832859, 0.021233685314655304, 0.016391173005104065, -0.009596980176866055, 0.002184633631259203, 0.006937266327440739, -0.012319059111177921, 0.0026652163360267878, 0.009751060046255589, -0.008738534525036812, 0.02569466643035412, -0.023434827104210854, -0.022451650351285934, 0.021336404606699944, 0.013603058643639088, -0.0017297308659180999, -0.006493369583040476, 0.008848591707646847, -0.02760232239961624, 0.022260885685682297, -0.0034154390450567007, -0.017843926325440407, -0.00881924293935299, 0.0319899320602417, -0.020617365837097168, 0.012267699465155602, 0.020162463188171387, -0.00640165526419878, 0.01854829117655754, 0.002514804946258664, 0.014762327075004578, 0.012678579427301884, 0.0024524391628801823, 0.003307216102257371, 0.00041408988181501627, -0.0008735783048905432, 0.01043341401964426, -0.005227712914347649, -0.021717935800552368, -0.013170167803764343, -0.011878830380737782, 0.011944864876568317, -0.013478327542543411, -0.016420520842075348, -0.0013647081796079874, 0.0014564223820343614, -0.005352444015443325, 0.010044545866549015, -0.004350924398750067, 0.015525389462709427, 0.003763953223824501, 0.0031274561770260334, -0.0005906398291699588, 0.012319059111177921, -0.007326134946197271, -0.01071222499012947, 0.012898693792521954, 0.016611287370324135, 0.005998112726956606, -0.013287561945617199, -0.00024166707589756697, 0.010910328477621078, -0.002525810617953539, -0.011115767993032932, -0.054911162704229355, -0.005447826813906431, 0.001764582353644073, 0.0076526375487446785, -0.018020017072558403, -0.025445204228162766], "702aa6c4-d709-4041-97ee-4c6a5c57bce3": [-0.01898062601685524, -0.032805684953927994, -0.0007996216299943626, 0.003754745004698634, 0.016389274969697, -0.056060004979372025, 0.0019197702640667558, 0.023118646815419197, -0.012149500660598278, 0.013743655756115913, 0.013987867161631584, 0.022793032228946686, 0.002984801772981882, -0.01980823092162609, -0.02031021937727928, 0.005399778019636869, 0.005006326828151941, 0.021056421101093292, 0.02914251945912838, -0.04132593795657158, 0.05505602806806564, 0.0018485421314835548, -0.038259733468294144, -0.0018146238289773464, -0.00505720404908061, -0.0017993607325479388, -0.0369572751224041, -0.0026829298585653305, -0.03378253057599068, 0.008432065136730671, 0.006814166903495789, 0.018437935039401054, 0.032805684953927994, 0.023905549198389053, -0.02797573432326317, -0.022955840453505516, 0.01731185056269169, 0.026401929557323456, -0.01914343424141407, -0.04561319947242737, -0.05947896093130112, 0.003249363973736763, 0.02503163367509842, -0.006668318994343281, -0.047322675585746765, 0.0037717041559517384, 0.0167827270925045, -0.0222503412514925, 0.011593242175877094, 0.029196789488196373, 0.02006600983440876, -0.04829952120780945, -0.009768442250788212, -0.019523316994309425, 0.02838275209069252, -0.004171939101070166, -0.008825516328215599, 0.029956556856632233, -0.02821994572877884, -0.04675285145640373, -0.011647511273622513, 0.003910768777132034, 0.04007774963974953, 0.0038463242817670107, -0.027921464294195175, -0.012434413656592369, 0.015290326438844204, -0.02821994572877884, -0.08444275707006454, -0.017922379076480865, 0.014218511059880257, 0.05774234980344772, -0.013072075322270393, 0.013485877774655819, 0.002893222728744149, 0.015127518214285374, 0.009218967519700527, 0.01872284896671772, 0.015181788243353367, 0.012461547739803791, -0.022616658359766006, -0.013031373731791973, 0.015615941025316715, -0.0052098361775279045, 0.04216710850596428, 0.031177612021565437, -0.0007775748381391168, -0.025167306885123253, -0.010433238931000233, -0.03855821490287781, 0.0009946513455361128, 0.05011753737926483, -1.5912406524876133e-05, -0.005338725168257952, -0.009313938207924366, -0.009436043910682201, -0.008371012285351753, -0.019753960892558098, 0.002957667224109173, 0.0035003586672246456, 0.0017840975197032094, 0.020011739805340767, -0.00911721307784319, 0.008696626871824265, -0.015358162112534046, -0.00906294398009777, -0.0015695648035034537, -0.02679537981748581, 0.01847863756120205, 0.02258952334523201, 0.006549605168402195, -0.004894396755844355, 0.020622268319129944, 0.025967776775360107, -0.022128235548734665, -0.028355617076158524, 0.013974299654364586, 0.028437022119760513, 0.012040962465107441, -0.04097319021821022, -0.015995824709534645, -0.02629339136183262, 0.020635833963751793, 0.021775485947728157, -0.013458742760121822, -0.035139258950948715, 0.013295935466885567, -0.004195681773126125, 0.028844039887189865, 0.005443871486932039, -0.01797664724290371, -0.01183745265007019, 0.02341712825000286, -0.005898375529795885, 0.005087730474770069, -0.004446676466614008, 0.011355814523994923, 0.06903032958507538, -0.033565454185009, 0.03904663398861885, -0.040593307465314865, -0.02637479454278946, -0.034542299807071686, 0.014747634530067444, 0.0180444847792387, -0.016416409984230995, -0.037988387048244476, -0.009341073222458363, -0.021137824282050133, 0.020513730123639107, -0.03815119341015816, -0.035573411732912064, 0.012034178711473942, 0.03334837779402733, -0.0022199463564902544, -0.017651032656431198, -0.013160263188183308, 0.023742742836475372, -0.008113234303891659, -2.7717531338566914e-05, -0.021802620962262154, -0.055463045835494995, 0.0017637466080486774, 0.022711629047989845, 0.013791141100227833, -0.011864587664604187, 0.0028983105439692736, 0.010636748746037483, 0.000696171133313328, 0.01731185056269169, 0.038503944873809814, -0.006814166903495789, -0.01729828305542469, 0.006685277912765741, -0.018370099365711212, -0.01545313373208046, 0.035736218094825745, -0.007034635171294212, -0.01922483742237091, 0.0011226924834772944, -0.01595512218773365, 0.0042906529270112514, 0.017230447381734848, 0.00847955048084259, -0.021626247093081474, -0.004629834555089474, -0.0025930467527359724, 0.019034896045923233, -0.03603469952940941, -0.021300632506608963, -0.043713781982660294, -0.03752709925174713, -0.009578500874340534, 0.011301545426249504, 0.01880425214767456, -0.012230903841555119, -0.012400494888424873, -0.005213228054344654, 0.03367399051785469, -0.009042592719197273, -0.02292870543897152, -0.05741673335433006, -0.048245251178741455, 0.04976478964090347, -0.01846507005393505, 0.03231726586818695, -0.01457125972956419, -0.015833016484975815, -0.0012185114901512861, -0.04886934906244278, 0.08693914115428925, -0.02805713750422001, -0.011294761672616005, -0.01150505430996418, -0.03834113851189613, 0.006454634014517069, -0.008343878202140331, 0.007278846576809883, 0.015358162112534046, -0.042275648564100266, -0.011878155171871185, 0.033891066908836365, -0.019251972436904907, -0.010908094234764576, -0.02031021937727928, -0.0024471983779221773, 0.001254973467439413, 0.026754679158329964, -0.014245645143091679, -0.028409887105226517, 0.03451516479253769, 0.0051352158188819885, 0.014598394744098186, -0.034542299807071686, 0.01904846355319023, 0.05557158589363098, 0.043795183300971985, 0.0006558932363986969, 0.020893612876534462, -0.04979192093014717, -0.002343747764825821, 0.005569369066506624, -0.003486791392788291, 0.006190072279423475, 0.025045201182365417, -0.008649141527712345, -0.02106998860836029, 0.015303893014788628, 0.01577874831855297, -0.001042136806063354, -0.020120278000831604, 0.028328483924269676, -0.0004981735837645829, -0.0027609418611973524, -0.020133845508098602, 0.013791141100227833, 0.019089164212346077, -0.031096208840608597, 0.004419541917741299, -0.003764920635148883, 0.012841431424021721, 0.0121766347438097, 0.009951600804924965, 0.009456395171582699, 0.030336441472172737, -0.025994911789894104, 0.0078011867590248585, -0.015290326438844204, -0.02485525980591774, 0.010419672355055809, -0.0047994256019592285, -0.013153479434549809, -0.006610658019781113, -0.019129866734147072, -0.019618289545178413, 0.02797573432326317, -0.016986235976219177, -0.011233708821237087, -0.008181070908904076, -0.007550192065536976, -0.02149057388305664, -0.01112517062574625, 0.031096208840608597, 0.017447523772716522, 0.01964542269706726, 0.011308329179883003, -0.0034053875133395195, -0.0235120989382267, -0.040430497378110886, 0.0010997977806255221, -0.00434153014793992, -0.02158554457128048, 0.011369382031261921, 0.026320526376366615, 0.023715607821941376, 0.018532905727624893, -0.017773138359189034, -0.03484077751636505, -0.04569460451602936, -0.00982271134853363, 0.004629834555089474, -0.019455481320619583, -0.013207748532295227, -0.009625986218452454, 0.026578303426504135, -0.01797664724290371, 0.050660230219364166, 0.026659708470106125, -0.009381774812936783, 0.0030780769884586334, 0.023525666445493698, -0.009592067450284958, 0.0009149435209110379, -0.019672557711601257, 0.032887089997529984, 0.03885669261217117, 0.03115047700703144, -0.048326656222343445, -0.033538319170475006, -0.014964710921049118, -0.008187854662537575, -0.001975735416635871, -0.06723944842815399, 0.04667144641280174, 0.04854373261332512, -0.028681233525276184, 0.03961646184325218, -0.00067158043384552, 0.029712345451116562, -0.049846190959215164, -0.015561671927571297, -0.016918400302529335, -0.006671710405498743, -0.010942012071609497, -0.0040769679471850395, -0.03231726586818695, -0.046807121485471725, -0.04998186603188515, -0.015018980018794537, -0.013506228104233742, 0.019102731719613075, -0.021802620962262154, -0.02778579294681549, -0.01415067445486784, 0.012739676982164383, -0.008560954593122005, -0.011070901528000832, -0.019428346306085587, -0.008160719648003578, 0.00014765017840545624, 0.0007813905831426382, -0.01036540325731039, 0.045287586748600006, 0.015887286514043808, 0.018749982118606567, -0.022616658359766006, -0.015032547526061535, 0.010724935680627823, 0.008723761886358261, 0.007122822571545839, 0.043116819113492966, 0.0037479614838957787, 0.0023997128009796143, 0.015819450840353966, 0.002618485363200307, 0.03340264782309532, 0.01075207069516182, 0.009653120301663876, -0.0060917092487216, -0.0015755005879327655, -0.06094422936439514, -0.0001294191461056471, 0.014313481748104095, 0.012793946079909801, -0.01655208319425583, -0.03310416638851166, 0.02585923857986927, -0.0012210552813485265, -0.012576869688928127, 0.018939925357699394, 0.01647068001329899, 0.029603807255625725, 0.01453055813908577, -0.041434478014707565, -0.005487965419888496, 0.004690887406468391, 0.015588806010782719, -0.005382818635553122, 0.020540863275527954, 0.004154979716986418, -0.024583913385868073, 0.013791141100227833, -0.001807840191759169, -0.028328483924269676, -0.0027219357434660196, 0.018532905727624893, 0.0010718152625486255, 0.0025031634140759706, -0.027772225439548492, -0.038829557597637177, 0.0180444847792387, 0.014544125646352768, 0.04862513765692711, -0.04157014936208725, 0.009958384558558464, -0.030010826885700226, -0.006973582785576582, -0.025425085797905922, -0.008262474089860916, -0.003948078956454992, 0.044283606112003326, -0.01423207763582468, 0.03853107988834381, 0.02267092652618885, 0.020527295768260956, 0.0051216487772762775, 0.017935946583747864, 0.022440282627940178, -0.018682146444916725, -0.026334093883633614, 0.006637792568653822, 0.048082444816827774, -0.036143235862255096, 0.02990228869020939, -0.010026221163570881, 0.011918856762349606, 0.053699299693107605, 0.025153739377856255, -0.03207305446267128, 0.028355617076158524, -0.025465786457061768, 0.01663348637521267, 0.0038564996793866158, 0.024244731292128563, 0.0014457633951678872, -0.03418954834342003, 0.0009700605878606439, -0.0014406756963580847, -0.002537081716582179, 0.006315569393336773, -0.0008081012056209147, 0.050578825175762177, -0.03055351786315441, 0.003944687079638243, 0.013323070481419563, -0.006909138057380915, -0.025804968550801277, -0.02419046312570572, -0.016104362905025482, 0.029006848111748695, 0.011952774599194527, 0.010962363332509995, -0.008696626871824265, 0.020038874819874763, -0.010473941452801228, 0.025465786457061768, -0.03663165867328644, -0.011287977918982506, 0.033972471952438354, -0.030689191073179245, -0.08541960269212723, -0.020364489406347275, 0.01982179842889309, 0.012916051782667637, 0.007828321307897568, -0.06327780336141586, 0.002766029443591833, 0.006115451920777559, 0.024733154103159904, -0.004426325671374798, 0.03999634459614754, 0.013445176184177399, -0.02401408739387989, 0.007550192065536976, 0.031014805659651756, 0.01823442615568638, -0.03115047700703144, 0.013580848462879658, 0.019170569255948067, -0.029251057654619217, -0.019672557711601257, -0.06273511052131653, -0.023661337792873383, -0.017908811569213867, 0.02199256233870983, 0.013825059868395329, -0.022725196555256844, -0.030580652877688408, 0.03242580220103264, -0.03131328523159027, 0.03172030299901962, -0.013241666369140148, -0.027026023715734482, -0.007109255529940128, -0.008296392858028412, -0.020269518718123436, -0.01145756896585226, -0.004219424445182085, -0.00848633423447609, -0.031774573028087616, 0.03703867644071579, -0.002508251229301095, 0.012712542898952961, 0.025045201182365417, 0.01271932665258646, 0.01822085864841938, -0.0403219610452652, 0.01242762990295887, 0.011701780371367931, 0.01923840492963791, -0.04238418862223625, 0.011382948607206345, -0.004467027261853218, 0.012359793297946453, 0.00978200975805521, -0.005830538924783468, -0.01653851568698883, 0.016579218208789825, 0.046318698674440384, -0.014761202037334442, -0.0005291239940561354, -0.01104376744478941, -0.007529841270297766, 0.03307703137397766, 0.011281194165349007, 0.006078142207115889, -0.003329071681946516, -0.01661991886794567, 0.017271149903535843, 0.004110886249691248, 0.010921661742031574, 0.008873001672327518, -0.03380966559052467, 0.009619202464818954, 0.031855978071689606, -0.00045111210783943534, -0.009551365859806538, 0.0033663816284388304, -0.012637922540307045, 0.011064117774367332, -0.023132214322686195, -0.020880045369267464, 0.035302065312862396, -0.04569460451602936, 0.016850562766194344, 0.007794403005391359, -0.002262344118207693, 0.010711368173360825, -0.02511303685605526, 0.016986235976219177, -0.028274213895201683, 0.028654098510742188, -0.02720239944756031, 0.016335006803274155, 0.016307871788740158, -0.04325249418616295, -0.006732763256877661, -0.010066922754049301, -0.011287977918982506, 0.01486974023282528, -0.030037960037589073, 0.0035919377114623785, 0.006817558780312538, -0.008581305854022503, 0.003981997258961201, -0.008520253002643585, -0.008540603332221508, 0.012502249330282211, 0.00034511773264966905, 0.01712190918624401, 0.022874435409903526, 0.008174287155270576, 0.045206181704998016, 0.012909268029034138, -0.020432325080037117, 0.028002869337797165, -0.02752801403403282, 0.018410800024867058, -0.047404080629348755, 0.009612418711185455, 0.029033981263637543, -0.004300828091800213, -0.007258495315909386, 0.010758854448795319, -0.00902224238961935, 0.013072075322270393, -0.005928901955485344, -0.014286347664892673, -0.009551365859806538, 0.0034019958693534136, -0.0019909986294806004, 0.04222137853503227, 0.006766681559383869, -0.0209885835647583, -0.020798642188310623, 0.011627160012722015, -0.006583523470908403, -0.004755332134664059, -0.0024183678906410933, 0.022277476266026497, 0.040511902421712875, 0.002389537403360009, 0.045287586748600006, -0.015914421528577805, -0.025411518290638924, 0.002757549984380603, -0.0044127581641077995, 0.008934054523706436, 0.013173829764127731, -0.0031238666269928217, -0.012115581892430782, 0.02041875757277012, 0.033131301403045654, -0.0077129993587732315, 0.021938294172286987, 0.01988963410258293, 0.0149104418233037, 0.02142273634672165, 0.016809862107038498, -0.026306958869099617, 0.039914943277835846, -0.026157718151807785, 0.04927636682987213, -0.01838366687297821, 0.02602204494178295, 0.002241993322968483, -0.03937225043773651, 0.004972408525645733, -0.02007957547903061, 0.002818602602928877, -0.012882133945822716, 0.0176374651491642, -0.018627876415848732, -0.042791206389665604, 0.040186285972595215, -0.05492035299539566, 0.009015458635985851, 0.011118386872112751, -0.021612679585814476, -0.019184134900569916, -0.006159545853734016, -0.004616267513483763, -0.009673471562564373, -0.0042024655267596245, -0.00911721307784319, 0.013987867161631584, -0.028599828481674194, 0.026836082339286804, 0.024475375190377235, -0.0027321113739162683, -0.019536884501576424, -0.0020927530713379383, -0.011308329179883003, 0.0167962945997715, -0.025737132877111435, -0.017827408388257027, 0.024122625589370728, 0.016864130273461342, 0.0033358552027493715, -0.0030187200754880905, 0.025669295340776443, -0.015059682540595531, 0.02663257345557213, 0.014082837849855423, 0.0029559715185314417, 0.026062747463583946, 0.009130780585110188, -0.015480267815291882, 0.01982179842889309, -0.019414778798818588, -0.013214532285928726, -0.017908811569213867, 0.02158554457128048, 0.0044636353850364685, 0.0031289542093873024, 0.0052742804400622845, -0.02066296897828579, 0.013268801383674145, -0.025208009406924248, -0.005694866180419922, -0.02946813590824604, -0.01687769778072834, -0.043442435562610626, -0.011274410411715508, 0.006993933580815792, -0.015833016484975815, -0.011471136473119259, 0.01988963410258293, -0.020839344710111618, -0.024488942697644234, 0.02174835279583931, 0.0006809079204685986, -0.02283373475074768, -0.012631138786673546, -0.024054789915680885, -0.010657099075615406, -0.005369251593947411, -0.02652403526008129, 0.03332124277949333, 0.008309959433972836, -0.062192417681217194, -0.00047612679190933704, -0.03340264782309532, -0.011233708821237087, 0.035139258950948715, 0.031693167984485626, -0.028002869337797165, -0.03587189316749573, -0.012332658283412457, -0.0073398989625275135, 0.00906972773373127, 0.008845867589116096, -0.00438562361523509, 0.004229600075632334, 0.007584110368043184, 0.007672297768294811, -0.01352657936513424, 0.009646337479352951, 0.016402842476963997, 0.029033981263637543, -0.008493117988109589, -0.0044636353850364685, -0.01922483742237091, -0.019333375617861748, -0.029441000893712044, 0.01276681199669838, -0.0026354442816227674, 0.0066038742661476135, -0.00235053151845932, -0.004572173580527306, 0.014367750845849514, -0.014055703766644001, -0.014829038642346859, 0.004022698849439621, 0.016836995258927345, 0.010962363332509995, -0.007821537554264069, -0.013370555825531483, 0.04124453663825989, -0.028518425300717354, -0.013580848462879658, -0.01515465322881937, 0.009497096762061119, -0.01611793041229248, -0.020106710493564606, -0.012590437196195126, 0.03299562633037567, -0.0008750896668061614, -0.003298545256257057, -0.00844563264399767, 0.039752133190631866, -0.022318176925182343, 0.04146161302924156, 0.026049179956316948, -0.007936859503388405, -0.0034545690286904573, 0.03565481677651405, 0.008662709034979343, 0.015249623917043209, 0.020283086225390434, 0.023145781829953194, -0.0013007631059736013, 0.007645163219422102, -0.011444001458585262, -0.0176374651491642, 0.00504024513065815, 0.010087274014949799, 0.009802361018955708, 0.02427186630666256, -0.004877437837421894, 0.034569431096315384, -0.011199790984392166, -0.011701780371367931, 0.023200051859021187, -0.007136390078812838, -0.019251972436904907, 0.01739325374364853, 0.016497813165187836, -0.027921464294195175, -0.018261561170220375, -0.003527493216097355, 0.010446806438267231, 0.005460830871015787, -0.013112777844071388, -0.005783053580671549, 0.010691017843782902, 0.047241274267435074, 0.010345051996409893, -0.017746003344655037, 0.01923840492963791, -0.0022250341717153788, 0.012061312794685364, -0.008961189538240433, -0.0010056747123599052, -0.009497096762061119, -0.001987606752663851, 0.02694462053477764, -0.03408101201057434, -0.010419672355055809, 0.023878414183855057, 0.009334289468824863, -0.030255036428570747, 0.038992367684841156, 0.039345115423202515, 0.02073080651462078, -0.02165338024497032, 0.009144347161054611, -0.0038768507074564695, 0.032371532171964645, -0.00027664535446092486, 0.002491292078047991, -0.006200247444212437, -0.03896523267030716, 0.009049376472830772, -0.021531274542212486, 0.015425998717546463, -0.044799163937568665, 0.03163890168070793, 0.01957758702337742, -0.02478742226958275, 0.008411714807152748, 0.017515359446406364, 0.011274410411715508, -0.02678181417286396, -0.019021328538656235, -0.013268801383674145, 0.06729371845722198, -0.0005961123970337212, 0.004348313435912132, -0.0035715869162231684, -0.0006906593916937709, -0.004273693542927504, -0.0009183353395201266, 0.012977104634046555, -0.02250812016427517, 0.02325432002544403, 0.0037377860862761736, -0.023864848539233208, -0.018003782257437706, 0.021205659955739975, -0.007170308381319046, -0.027840061113238335, -0.01082669012248516, 0.0076994323171675205, 0.007400951813906431, 0.0022148587740957737, 0.032778549939394, -0.007991128601133823, 0.023064378648996353, 0.014354183338582516, -0.0026252688840031624, -0.052098359912633896, -0.032371532171964645, 0.007821537554264069, -0.0028050353284925222, 0.010636748746037483, -0.007529841270297766, 0.006539429537951946, -0.002676146337762475, 0.03030930645763874, 0.012291956692934036, 0.003480007639154792, -0.04512477666139603, -0.01602295972406864, -0.029033981263637543, -0.011070901528000832, -0.017596764490008354, -0.019374078139662743, -0.011484703980386257, -0.005942468997091055, -0.028084272518754005, -9.444099850952625e-05, 0.008072532713413239, 0.015412431210279465, -0.011661077849566936, 0.013377339579164982, -0.012027394957840443, 0.0045891329646110535, -0.004738373216241598, -0.012461547739803791, 0.0008072532364167273, 0.014422019943594933, 0.0066038742661476135, -0.0010667274473235011, -0.03155749663710594, 0.00501650245860219, 0.02215537056326866, -0.0018332789186388254, -0.02165338024497032, -0.0032731066457927227, -0.01671489141881466, 0.026334093883633614, 0.016253603622317314, -0.022318176925182343, -0.023986954241991043, -0.014055703766644001, -0.0008051333716139197, -0.034379489719867706, 0.0394536554813385, -0.0017433956963941455, 0.01419137604534626, -0.02870836667716503, -0.022236773744225502, 0.012359793297946453, -0.0014898570952937007, -0.05660269781947136, 0.03655025735497475, 0.005850890185683966, -0.00010917421604972333, 0.004775682929903269, 0.0067056287080049515, 0.00911042932420969, 0.005871240980923176, -0.00801147986203432, 0.04349670559167862, 0.030499247834086418, -0.0018977235304191709, 0.011579674668610096, -0.00705498643219471, 0.004334746394306421, 0.022372446954250336, 0.01956401951611042, -0.007550192065536976, 0.0007016828167252243, -0.002915269462391734, -0.008744113147258759, -0.007584110368043184, 0.014476289041340351, -0.008594872429966927, 0.02344426140189171, -0.037065811455249786, 0.004829952027648687, -0.010202595964074135, 0.013377339579164982, 0.02946813590824604, 0.0094428276643157, 0.004395799245685339, 0.004483986645936966, -0.04140734300017357, -0.02360706962645054, -0.001230382826179266, -0.0369572751224041, 0.01854647323489189, -0.038585349917411804, -0.03090626746416092, 0.0022691278718411922, -0.027650119736790657, 0.025506488978862762, -0.0352749302983284, 0.018030917271971703, 0.02268449403345585, 0.025343680754303932, 0.03231726586818695, -0.016185766085982323, -0.020839344710111618, 0.0411631315946579, -0.002235209569334984, 0.010026221163570881, 0.005772878415882587, 0.004833343904465437, 0.005525275133550167, -0.01754249446094036, -0.027338072657585144, 0.000744080578442663, 0.006559780333191156, 0.02249455265700817, -0.05817650258541107, 0.015588806010782719, -0.00071652204496786, -0.013553714379668236, -0.0046264431439340115, -0.011986693367362022, 0.011308329179883003, 0.027555149048566818, 0.010596047155559063, -0.012034178711473942, -0.009015458635985851, 0.007997912354767323, -0.02199256233870983, 0.004524688236415386, 0.04015915095806122, -0.003785271430388093, 0.000144364355946891, -0.012956753373146057, -0.05258678272366524, -0.0019825189374387264, -0.014693365432322025, 0.010609613731503487, 0.008052181452512741, 0.022372446954250336, 0.01998460479080677, -0.03370112553238869, -0.010840257629752159, -0.018627876415848732, 0.016809862107038498, -0.012739676982164383, -0.01519535481929779, -0.031693167984485626, 0.020269518718123436, -0.04338816553354263, 0.026998890563845634, -0.026727544143795967, -0.010623181238770485, 0.06105276569724083, -0.008472766727209091, 0.008961189538240433, 0.018329396843910217, 0.019862499088048935, 0.013669036328792572, 0.023159349337220192, 0.011518621817231178, -0.019916769117116928, -0.02762298472225666, -0.016579218208789825, -0.008418497629463673, 0.011857803910970688, -0.013133128173649311, -0.05866492539644241, -0.01088095922023058, 0.038585349917411804, -0.003110299352556467, -0.005549018271267414, 0.013872545212507248, 0.002657491248100996, -0.006960015278309584, 0.017013370990753174, 0.0014991846401244402, -0.011254060082137585, -0.007462004665285349, 0.0007733350503258407, -0.03223586082458496, -0.016742024570703506, -0.004300828091800213, 0.021802620962262154, -0.00673954701051116, -0.03720148652791977, 0.0050707715563476086, -0.02889830991625786, -0.01579231582581997, -0.022630225867033005, 0.023050811141729355, -0.005681299138814211, 0.0006580131594091654, -0.004633226431906223, 0.007197442930191755, -0.016904832795262337, 0.013987867161631584, -0.009795577265322208, -0.0015432782238349319, 0.023797011002898216, 0.03370112553238869, -0.04108172655105591, 0.018193723633885384, 0.005277672316879034, 0.008520253002643585, -0.007930075749754906, -0.021300632506608963, 0.018519338220357895, -0.00020001140364911407, 0.02241314947605133, 0.011518621817231178, -0.010046571493148804, 0.037228621542453766, -0.02176191844046116, 0.04414793476462364, -0.045558929443359375, 0.0007529841386713088, 0.011817102320492268, 0.006722588092088699, -0.0030543343164026737, 0.0009157914901152253, 0.0026829298585653305, 0.006875219754874706, -0.013797924853861332, -0.00848633423447609, 0.0076994323171675205, 0.00434153014793992, -0.00438901549205184, 0.01562950760126114, -0.019346943125128746, 0.030797729268670082, -0.008662709034979343, -0.007733350154012442, 0.0019774313550442457, -0.02922392450273037, 0.006471593398600817, 0.02090718038380146, 0.029413865879178047, 0.004829952027648687, 0.008465983904898167, -0.012597220949828625, 0.015425998717546463, -0.003144217422232032, 0.015141085721552372, -0.014611962251365185, -0.0011294761206954718, 0.008961189538240433, 0.053536493331193924, -0.013696170412003994, 0.029658077284693718, 0.01579231582581997, -0.016321439296007156, 0.007753701414912939, 0.01940121315419674, 0.02878977172076702, 0.019523316994309425, -0.0022843910846859217, 0.0040260907262563705, -0.019753960892558098, 0.0302279032766819, 0.027650119736790657, -0.008655925281345844, -0.0009861717699095607, 0.024326134473085403, -0.009639553725719452, 0.02007957547903061, 0.012359793297946453, -0.006878611631691456, -0.017935946583747864, 0.02066296897828579, -0.004378839861601591, -0.017488226294517517, -0.01671489141881466, 0.009422477334737778, -0.011240492574870586, 0.01822085864841938, -0.0055965036153793335, 0.013587632216513157, 0.008615223690867424, 0.0028796554543077946, 0.02124636247754097, 0.0041651553474366665, 0.0394807867705822, 0.022453850135207176, -0.008221772499382496, -0.006454634014517069, 0.013960732147097588, -0.004314395599067211, -0.025723565369844437, -0.011681429110467434, -0.013126344420015812, -0.00508094672113657, 0.0167962945997715, 0.015032547526061535, 0.018872087821364403, -0.001896027592010796, -0.028192810714244843, -0.029603807255625725, 0.011789967305958271, -0.005247145891189575, 0.010297566652297974, -0.021192094311118126, -0.00193672941531986, 0.023715607821941376, -0.003125562332570553, -0.009191833436489105, 0.021802620962262154, -0.005742351990193129, 0.005939077585935593, -0.006936272606253624, -0.04810957983136177, -0.03201878443360329, -0.011193007230758667, -0.0039175525307655334, -0.004582349210977554, -0.0011930727632716298, 0.022969407960772514, -0.00772656686604023, -0.006057790946215391, -0.01586015149950981, -0.002579479245468974, 0.01773243583738804, 0.007475572172552347, 0.016647053882479668, 0.0022097709588706493, 0.008784814737737179, -0.03139469027519226, -0.00839136354625225, 0.011450785212218761, -0.016158632934093475, 0.0027338070794939995, -0.005138607695698738, -0.0047485483810305595, -0.00176883430685848, -0.010670666582882404, 0.0012778682867065072, -0.030336441472172737, 0.01587371900677681, -0.011939207091927528, 0.014164241962134838, -0.01149827055633068, -0.026429064571857452, -0.004144804552197456, -0.020893612876534462, 0.012393711134791374, 0.017094774171710014, 0.001779009704478085, -0.008452416397631168, 0.006753114052116871, 0.01621290110051632, -0.01183745265007019, -0.0054201288148760796, -0.011396516114473343, -0.03047211468219757, 0.007577326614409685, -0.019957471638917923, -0.008113234303891659, -0.031964514404535294, -0.0001325989724136889, -0.017189744859933853, -0.012074880301952362, 0.012156284414231777, -0.02283373475074768, 0.006295218598097563, -0.026388362050056458, 0.008839083835482597, -0.013200964778661728, -0.028681233525276184, 0.015507402829825878, -0.041027460247278214, 0.021951861679553986, 0.024244731292128563, 0.03386393561959267, 0.010901310481131077, 0.012325875461101532, -0.01988963410258293, 0.010107624344527721, 0.0046027000062167645, 0.020255951210856438, -0.01689126528799534, 0.01729828305542469, -0.005627030041068792, -0.00031819514697417617, 0.020350921899080276, -0.005328549537807703, -0.010670666582882404, -0.0016374012921005487, -0.0289797130972147, -0.0014898570952937007, 0.004273693542927504, 0.0060340482741594315, -0.0009649728890508413, -0.0005261561018414795, -0.02946813590824604, 0.006152762100100517, -0.007909725420176983, 0.010189028456807137, 0.012020611204206944, -0.02881690487265587, -0.0038802423514425755, 0.004283869173377752, -0.002211466897279024, -0.00953779835253954, 0.005369251593947411, -0.016945533454418182, -0.01611793041229248, 0.0033019371330738068, 0.0014712021220475435, -0.005579544231295586, 0.005827147513628006, -0.03066205605864525, -0.007821537554264069, -0.0053489007987082005, 0.0001551757741253823, -0.023579934611916542, -0.007136390078812838, 0.02679537981748581, -0.0066547514870762825, -0.005108081270009279, -0.009246102534234524, -0.0013363772304728627, 0.01352657936513424, 0.007468788418918848, 0.02234531193971634, -0.0008666100911796093, 0.020106710493564606, -0.029712345451116562, -0.034053876996040344, -0.02007957547903061, 0.007536624558269978, 0.010311134159564972, 0.05340081825852394, 0.004334746394306421, -0.013411257416009903, -0.004358489066362381, 0.013221316039562225, 0.004941882099956274, -0.00778761925175786, 0.001623834017664194, -0.024895960465073586, 0.01012119185179472, -0.009076511487364769, 0.009198617190122604, -0.019550452008843422, -0.01305172499269247, 0.011810318566858768, -0.014164241962134838, 0.006607266142964363, 0.0034647444263100624, 0.004066792782396078, -0.01113195437937975, 0.023539233952760696, -0.02670040912926197, -0.0013262017164379358, 0.039507921785116196, -0.01276681199669838, -0.010982714593410492, -0.011728914454579353, 0.011742481961846352, -0.007672297768294811, -0.006271475926041603, 0.007021068129688501, 0.019631855189800262, 0.012102015316486359, 0.002245384966954589, -0.003329071681946516, -0.02846415527164936, -0.008404931053519249, 0.003744569607079029, -0.023634204640984535, 0.011301545426249504, -0.0029322286136448383, 0.0289797130972147, 0.014544125646352768, -0.012000259943306446, 0.007319548167288303, 0.0031153869349509478, 0.009843062609434128, -0.014991845935583115, 0.022603090852499008, -0.029115386307239532, 0.023457828909158707, -0.024393972009420395, 0.004504337441176176, 0.007448437623679638, 0.019943904131650925, -0.010738503187894821, 0.003825973253697157, -0.0016535123577341437, -0.02613058313727379, -0.011260843835771084, -0.025004498660564423, -0.00022576804622076452, -0.026836082339286804, 0.008710194379091263, 0.003379948902875185, 0.007048202678561211, -0.010263647884130478, 0.032887089997529984, -0.02393268421292305, -0.012217337265610695, 0.016823429614305496, -0.023159349337220192, 0.004100710619240999, 0.005284456070512533, -0.019862499088048935, 0.006987149827182293, 0.02385128103196621, 0.0018909397767856717, 0.03150322660803795, -0.004483986645936966, -0.05255964770913124, -0.01847863756120205, 0.003468136303126812, 0.013404473662376404, 0.020540863275527954, -0.011572890914976597, -0.021544842049479485, 0.025058768689632416, 0.027419475838541985, -0.0035715869162231684, 0.02442110702395439, -0.008567738346755505, 0.010243297554552555, 0.0069532315246760845, -0.0027338070794939995, 0.0011252363910898566, -0.00017595068493392318, 0.0029915855266153812, -0.014652663841843605, -0.004263518378138542, 0.021259929984807968, -0.0001428804243914783, 0.0012405583402141929, 0.0005744895897805691, 0.02032378688454628, -0.017664600163698196, 0.008649141527712345, 0.007360250223428011, 0.01797664724290371, -0.009212183766067028, 0.03617037087678909, 0.01571091264486313, 0.009198617190122604, 0.012115581892430782, -0.02838275209069252, -0.030282171443104744, -0.012821081094443798, -0.0020215248223394156, 0.011274410411715508, -0.018695713952183723, -0.01619933359324932, 0.020052442327141762, 0.039942074567079544, -0.0017077815718948841, -0.002352227456867695, -0.004511121194809675, 0.012685407884418964, 0.02024238370358944, 0.003605504985898733, -0.007163524627685547, -0.008493117988109589, -0.015046115033328533, -0.0013372251996770501, -0.014272780157625675, 0.0013109385035932064, -0.020106710493564606, 0.0012990671675652266, -0.009001891128718853, -0.04517904669046402, -0.042872607707977295, -0.006278259214013815, -0.011905289255082607, 0.019265539944171906, -0.0027643335051834583, 0.006946448236703873, -0.021436303853988647, -0.0032731066457927227, 0.003965037874877453, 0.010202595964074135, 0.011735698208212852, -0.01689126528799534, -0.0041515883058309555, -0.008954405784606934, 0.007719783112406731, -0.029359595850110054, 0.0021877242252230644, -0.013804708607494831, -0.00033579021692276, 0.009354640729725361, 0.005002934951335192, 0.022291043773293495, 0.027894331142306328, -0.0011803534580394626, 0.00774691766127944, -0.00019025991787202656, -0.05833930894732475, -0.03633318096399307, 0.028111407533288002, -0.00035656511317938566, -0.016077227890491486, 0.0024471983779221773, -0.0057932292111217976, 0.016090795397758484, 0.03204591944813728, 0.0038395405281335115, 0.005477789789438248, -0.009008674882352352, -0.02317291684448719, -0.0018095361301675439, -0.010982714593410492, -0.029522404074668884, 0.02705315873026848, 0.012549735605716705, -0.00353766861371696, 0.012000259943306446, 0.05299380049109459, -0.001946904812939465, 0.03039070963859558, -0.005671123508363962, 0.008974757045507431, 0.039426520466804504, -0.013153479434549809, 0.028247078880667686, -0.04241131991147995, 0.010650316253304482, -0.010568912141025066, 0.00017213488172274083, 0.0047349813394248486, -0.01755606196820736, 0.020785074681043625, 0.01137616578489542, -0.029359595850110054, 0.011111603118479252, -0.0022386014461517334, 0.007509490009397268, 0.027948599308729172, -0.0003783999418374151, -0.01872284896671772, 0.039833538234233856, 0.019089164212346077, 0.006417323835194111, 0.024122625589370728, 0.007523057516664267, 0.014286347664892673, -0.031041938811540604, 0.03310416638851166, 0.019794663414359093, -0.02041875757277012, -0.013662252575159073, 0.012230903841555119, 0.0180580522865057, -0.0019350334769114852, 0.0461558923125267, -0.026225555688142776, -0.015520969405770302, 0.015805883333086967, -0.015819450840353966, 0.02603561244904995, 0.00911042932420969, -0.01549383532255888, 0.01948261633515358, -0.029875153675675392, 0.006892179138958454, -0.020717239007353783, 0.0013821667525917292, -0.014327049255371094, 0.026225555688142776, -0.011247276328504086, -0.028084272518754005, 0.015317460522055626, 0.0024268473498523235, -0.02208753488957882, 0.021259929984807968, -0.00219450774602592, -0.010901310481131077, 0.011138738133013248, 0.006244341377168894, 0.011973125860095024, 0.0055965036153793335, 0.008954405784606934, -0.0005719456821680069, -0.010731719434261322, -0.020866477862000465, 0.007584110368043184, 0.025547191500663757, 0.0007419607136398554, 0.00948352925479412, -0.018844954669475555, -0.04070184379816055, 0.012502249330282211, 0.011817102320492268, -0.015005413442850113, 0.006244341377168894, 0.014978278428316116, 0.015358162112534046, -0.013255233876407146, -0.005050420295447111, 0.029251057654619217, -0.007014284376055002, 0.01079277228564024, -0.00409731874242425, -0.016918400302529335, 0.005379427224397659, 0.0014457633951678872, 0.012542951852083206, 0.005837322678416967, -0.0025608243886381388, -0.025560757145285606, -0.004090535454452038, 0.006556388922035694, -0.017868109047412872, 0.001807840191759169, -0.00978879351168871, 0.0008390515577048063, -0.0018824603175744414, -0.012407278642058372, 0.00024484703317284584, 0.0012532776454463601, 0.0018756766803562641, 0.0032578434329479933, 0.009497096762061119, 0.009659904055297375, 0.0023081337567418814, -0.010887742973864079, -0.0019706476014107466, -0.01011440809816122, 0.0061425864696502686, 0.003724218811839819, -0.007997912354767323, -0.007970777340233326, -0.008506685495376587, 0.03475937619805336, 0.00168488675262779, 0.008703410625457764, -0.0007296653348021209, -0.0025150347501039505, -0.002884743269532919, -0.010005869902670383, 0.010589263401925564, 0.026429064571857452, -0.00044517641072161496, -0.007462004665285349, 0.006820950657129288, -0.0013643597485497594, 0.0074145193211734295, -0.03098767064511776, -0.013960732147097588, 0.002626964822411537, 0.011030199937522411, 0.01444915495812893, 0.022128235548734665, 0.0018604134675115347, 0.0031747438479214907, -0.034053876996040344, 0.0022657359950244427, -0.005328549537807703, 0.012529384344816208, 0.014028568752110004, 0.015466700308024883, 0.014761202037334442, 0.0037886633072048426, -0.006030656397342682, -0.010969147086143494, -0.007251712027937174, -0.012061312794685364, -0.014381318353116512, 0.01780027337372303, 0.0009776921942830086, 0.021599112078547478, -0.01457125972956419, 0.009246102534234524, -0.0032341007608920336, -0.023471396416425705, 0.027840061113238335, 0.03739142790436745, -0.012631138786673546, 0.009239318780601025, 0.002954275580123067, -0.0003622888179961592, 0.0012905875919386744, 0.01285499893128872, -0.016063660383224487, -0.004232991952449083, 0.011694996617734432, -0.0026354442816227674, -0.0046264431439340115, -0.01082669012248516, 0.031123343855142593, 0.001985910814255476, -0.008635574951767921, 0.006474984809756279, 0.00024908679188229144, -0.0026557953096926212, 0.006607266142964363, -0.013892896473407745, -0.016755592077970505, -0.009456395171582699, 0.004999543074518442, 0.0012541256146505475, 0.0024862042628228664, 1.2487463436627877e-06, -0.0011354119051247835, -0.007977561093866825, 0.0025031634140759706, 0.002175852656364441, -0.008425281383097172, 0.020608700811862946, -0.002048659371212125, 0.030580652877688408, 0.024163328111171722, 0.018682146444916725, 0.009436043910682201, 0.011145521886646748, 0.0031357379630208015, -0.0041278451681137085, 0.009313938207924366, -0.014042136259377003, -0.0036970842629671097, -0.02173478528857231, 0.023810578510165215, -0.01906203106045723, 0.005928901955485344, -0.016687756404280663, 0.008025046437978745, 0.010975930839776993, 0.0015822842251509428, -0.003944687079638243, 0.0017188049387186766, -0.02200612984597683, 0.020703671500086784, -0.022779464721679688, -0.0007852063863538206, 0.007692648563534021, -0.010216162540018559, 0.004317787475883961, 0.0031459133606404066, 0.017583196982741356, 0.00848633423447609, 0.014625528827309608, -0.00021347269648686051, -0.004616267513483763, 0.0005350596620701253, 0.011030199937522411, 0.014639096334576607, 0.013418041169643402, -0.026144150644540787, 0.000461711548268795, 0.004775682929903269, -0.007529841270297766, -0.0047349813394248486, -0.0005842410610057414, -0.021694082766771317, 0.004134628921747208, -0.027324505150318146, -0.010012653656303883, 0.007719783112406731, 0.0026015262119472027, -0.026741111651062965, -0.009008674882352352, 0.005118256900459528, 0.015086816623806953, -0.016240036115050316, -0.007835105061531067, 0.022793032228946686, -0.028437022119760513, -0.0030712932348251343, -0.005837322678416967, -0.0023657947313040495, 0.006607266142964363, 0.019265539944171906, 0.0025269060861319304, 0.017026938498020172, 0.01647068001329899, 0.01079277228564024, -0.003652990562841296, 0.011823886074125767, 0.002438718918710947, -0.031367555260658264, -0.036984410136938095, 0.006196855567395687, -0.0023640987928956747, 0.010575695894658566, -0.02713456191122532, 0.00018665610696189106, -0.0025031634140759706, 0.00026032220921479166, 0.007495922967791557, -0.01704050600528717, 0.0044500683434307575, -0.018098752945661545, 0.020255951210856438, 0.029006848111748695, -0.014679797925055027, 0.0016162024112418294, -0.012373360805213451, 0.006176504772156477, -0.004965624772012234, 0.007190659176558256, 0.012529384344816208, -0.0029661469161510468, 0.005552409682422876, -0.010507859289646149, 0.015249623917043209, 0.006800599861890078, -0.029875153675675392, -0.013906463049352169, -0.020527295768260956, -0.007163524627685547, 0.013031373731791973, -0.0042669097892940044, 0.009137564338743687, 0.002420063829049468, -0.01046037394553423, 0.025737132877111435, -0.004755332134664059, 0.001777313882485032, -0.008920487016439438, 0.012264822609722614, -0.0039548627100884914, -0.027310937643051147, 0.0024641575291752815, -0.014299914240837097, 0.015520969405770302, 0.012821081094443798, 0.008805165998637676, 0.005474397912621498, -0.023118646815419197, 0.0029000064823776484, 0.005365859717130661, 0.013038157485425472, -0.0073263319209218025, -0.01557523850351572, -0.007082120981067419, 0.006003521848469973, -0.0034019958693534136, -0.012943186797201633, -0.024163328111171722, -0.02268449403345585, -0.00022258820536080748, -0.009856630116701126, 0.010263647884130478, -0.020947882905602455, -0.023946251720190048, 0.005840714555233717, 0.004154979716986418, -0.010697801597416401, 0.006390189286321402, -0.0025269060861319304, -0.013635117560625076, 0.008635574951767921, -0.00034935749135911465, -0.003456264967098832, -0.012278389185667038, -0.01137616578489542, -0.002621877007186413, 0.001521231373772025, 0.0006910833762958646, 0.01965899020433426, 0.02115139178931713, 0.012576869688928127, -0.013641901314258575, 0.026727544143795967, 0.013621550053358078, -0.010331484489142895, 0.006207031197845936, -0.0073398989625275135, 0.018410800024867058, 0.021300632506608963, -0.018329396843910217, 0.020459460094571114, -0.012644706293940544, -0.02359350211918354, 0.004782466683536768, 0.010568912141025066, -0.004175330977886915, 0.01605009287595749, -0.0058814166113734245, -0.00041380207403562963, 0.0009208792471326888, 0.015005413442850113, -2.2921285562915727e-05, 0.0022589522413909435, -0.02106998860836029, -0.02284730225801468, 0.0025913508143275976, 0.02603561244904995, -0.004178722854703665, 0.0034596568439155817, 0.0016170503804460168, 0.0029678428545594215, -0.007848672568798065, -0.008174287155270576, -0.008221772499382496, -0.03139469027519226, -0.006152762100100517, 0.018763549625873566, 0.015249623917043209, -0.045721739530563354, 0.026836082339286804, 0.028599828481674194, -0.0004952057497575879, 0.0063189612701535225, -0.025804968550801277, 0.01443558745086193, 0.019251972436904907, 0.001070967293344438, 0.0003056878049392253, 0.007841888815164566, -0.009612418711185455, 0.016321439296007156, 0.014584827236831188, 0.021042853593826294, 0.004650185815989971, -0.015086816623806953, -0.019116299226880074, -0.004629834555089474, -0.02694462053477764, 0.015819450840353966, 0.003924336284399033, 0.0016178983496502042, 0.0035410604905337095, 0.009748091921210289, -0.0026931052561849356, 0.0017993607325479388, -0.003218837548047304, -0.004738373216241598, 0.010440022684633732, 0.005830538924783468, -0.00974130816757679, -0.0059458608739078045, 0.006213814951479435, -0.0007733350503258407, -0.0046264431439340115, -0.024868827313184738, -0.004541647620499134, 0.017827408388257027, 0.004751940257847309, 0.027148129418492317, 0.003924336284399033, -0.011009848676621914, 0.023973386734724045, 0.0020215248223394156, -0.012922835536301136, 0.008764463476836681, -0.0018434543162584305, -0.021816188469529152, 0.009992302395403385, 0.01444915495812893, 0.0022080750204622746, -0.01797664724290371, 0.004460243508219719, 0.003251059679314494, 0.028762636706233025, -0.0008784814854152501, 0.02024238370358944, 0.00501650245860219, 0.004758724011480808, 0.008330310694873333, -0.008004696108400822, 0.006098493002355099, -0.019292674958705902, 0.01831582933664322, 0.011247276328504086, -0.02478742226958275, -0.004338138271123171, -0.006508903112262487, -0.0059831710532307625, -0.00743487011641264, -0.016145065426826477, 0.0013380731688812375, -0.0043245707638561726, -0.016145065426826477, -0.006417323835194111, -0.0038700669538229704, -0.027690820395946503, 0.010290782898664474, 0.01511395163834095, 0.019781095907092094, -0.005138607695698738, 0.012312307953834534, -0.0006580131594091654, -0.0016577522037550807, -0.014788337051868439, 0.0010268735932186246, 0.010256865061819553, 0.013736872002482414, -0.00778761925175786, 0.016511380672454834, 0.004497553687542677, -0.00982949510216713, 0.01569734513759613, 0.00046891917008906603, 0.018112320452928543, 0.0003332463384140283, -0.014299914240837097, 0.017488226294517517, 0.005379427224397659, -0.0025167306885123253, 0.0008962885476648808, -0.03617037087678909, -0.0011735698208212852, -0.005969603545963764, -0.034650836139917374, -0.019767528399825096, -0.01721687987446785, -0.026157718151807785, 0.005318374373018742, 0.00973452441394329, 0.0009641249198466539, -0.013513011857867241, -0.006312177516520023, 0.019360510632395744, -0.004402582999318838, -0.008588088676333427, -0.018003782257437706, 0.010473941452801228, 0.006152762100100517, 0.019129866734147072, -0.0008492270135320723, -0.006966799031943083, 0.01016189344227314, -0.014286347664892673, 0.01602295972406864, -0.007672297768294811, -0.016090795397758484, 0.0016543603269383311, 0.0031408255454152822, -0.015018980018794537, 0.015425998717546463, 0.022806599736213684, 0.0002912725612986833, 0.006366446614265442, -0.013621550053358078, 0.0010200899560004473, 0.011959558352828026, -0.005128432530909777, -0.03964359685778618, 0.015982257202267647, 0.017271149903535843, 0.017990214750170708, -0.003992172423750162, 0.005504924338310957, 0.030879132449626923, -0.008845867589116096, -0.03383680060505867, 0.009056160226464272, 0.011226925067603588, 0.022969407960772514, -0.009971952065825462, 0.008411714807152748, -0.0006881155422888696, 0.011159088462591171, -0.0074280863627791405, 0.010962363332509995, -0.0054201288148760796, 0.0005134367966093123, 0.013906463049352169, 0.03617037087678909, 0.023037243634462357, 0.0014550909399986267, 0.006013697478920221, -0.005796621087938547, -0.0010692713549360633, -0.0002185604244004935, -0.014204943552613258, -0.034569431096315384, -0.01830226182937622, 0.02518087439239025, -0.009564933367073536, -0.01149827055633068, 0.014951144345104694, -0.02058156579732895, -0.030526382848620415, 0.0021402386482805014, 0.006468201521784067, 0.013546930626034737, 0.026076314970850945, 0.0016026351368054748, 0.017746003344655037, -0.010060139000415802, -0.005969603545963764, 0.006396973039954901, 0.014245645143091679, -0.01012119185179472, 0.0035105340648442507, -0.0021097122225910425, 0.00010694833326851949, 0.0016187462024390697, -0.015046115033328533, 0.00953779835253954, -0.015344595536589622, -0.008228556253015995, -0.00835066195577383, 0.012576869688928127, 0.02115139178931713, -0.01704050600528717, 0.005535450764000416, 0.03234439715743065, 0.004439892712980509, -0.01957758702337742, -0.006634400691837072, -0.001997782150283456, -0.0011828973656520247, 0.02786719612777233, 0.0031187788117676973, -0.005657556466758251, 0.011701780371367931, -0.004426325671374798, 0.005694866180419922, -0.001111669116653502, -0.007285629864782095, 0.013865761458873749, 0.003064509714022279, -0.014503424055874348, 0.011667861603200436, 0.033619724214076996, -0.008465983904898167, 0.0037004759069532156, 0.01448985654860735, 0.013323070481419563, -0.005019893869757652, 0.002876263577491045, 0.0003889993822667748, -0.0036597740836441517, 0.005718608852475882, -0.0020588350016623735, -0.0009505576454102993, -0.022738764062523842, 0.004846911411732435, 0.010189028456807137, -0.007590894121676683, 0.018668578937649727, 0.005369251593947411, 0.025642162188887596, -0.01457125972956419, 0.015005413442850113, 0.0234985314309597, 0.00151105597615242, 0.013682602904736996, 0.020120278000831604, 0.013167046941816807, 0.012787162326276302, 0.01838366687297821, -0.006878611631691456, 0.027338072657585144, 0.001705237664282322, 0.023824146017432213, -0.00778761925175786, -0.005481181666254997, -0.004239775240421295, 0.0026303566992282867, -0.001136259757913649, 0.007482355460524559, 0.006329136900603771, -0.004012523218989372, -0.018356531858444214, -0.006200247444212437, 0.020635833963751793, -0.010942012071609497, 0.0055965036153793335, -0.010026221163570881, -0.0012329267337918282, 0.007536624558269978, -0.0008632182725705206, -0.01988963410258293, 0.015670210123062134, 0.01180353481322527, 0.008506685495376587, 0.0045518227852880955, 0.018329396843910217, -0.0024064965546131134, 0.0037954470608383417, 0.006000129971653223, -0.0024234557058662176, -0.02914251945912838, -0.007211009971797466, 0.018370099365711212, 0.019971037283539772, 0.006037440150976181, 0.005718608852475882, 0.008296392858028412, -0.010216162540018559, -0.006671710405498743, 0.0017908811569213867, 0.004867262206971645, 0.012142716906964779, -0.02747374400496483, -0.010548560880124569, 0.016647053882479668, -0.008615223690867424, 0.011918856762349606, -0.01754249446094036, -0.016511380672454834, 0.007333115674555302, 0.008160719648003578, -0.013825059868395329, -0.0020198291167616844, 0.015331028029322624, 0.0076994323171675205, -0.003931119572371244, 0.01107768528163433, -0.005155567079782486, 0.0013753831153735518, -0.0038564996793866158, 0.015059682540595531, 0.006820950657129288, -0.001828191103413701, -0.023878414183855057, -0.009931249544024467, -0.0005935685476288199, -0.014652663841843605, 0.00873732939362526, 0.003125562332570553, -0.02518087439239025, -0.008282825350761414, -0.009232535026967525, 0.0076248119585216045, 0.002547257114201784, 0.010351835750043392, 0.01577874831855297, -0.01865501143038273, -0.0022284260485321283, -0.01309921033680439, -0.014896875247359276, 0.0016306176548823714, 0.0010387449292466044, -0.010596047155559063, 0.003646206809207797, -0.003161176573485136, -0.008364228531718254, -0.0100804902613163, 0.010670666582882404, 0.017610331997275352, 0.005345508921891451, -0.010338268242776394, 0.009463178925216198, -0.01671489141881466, -0.011104819364845753, -0.029522404074668884, -0.009137564338743687, -0.0043991911225020885, 0.0037818795535713434, -0.011945990845561028, 0.022616658359766006, 0.005406561773270369, 0.010168677195906639, -0.008323526941239834, 0.01562950760126114, -0.020025307312607765, 0.016497813165187836, 0.01318739727139473, -0.024706019088625908, 0.00736703397706151, 0.002704976825043559, 0.021463438868522644, -0.010521426796913147, -0.030634921044111252, 0.00031056354055181146, -0.008628791198134422, 0.027948599308729172, -0.016348574310541153, 0.0002078549878206104, -0.007373817265033722, -0.017678167670965195, -0.02653760276734829, 0.009971952065825462, 0.001539886463433504, -0.034216683357954025, -0.004558606538921595, -0.017176177352666855, -0.0017739220056682825, -0.0072381445206701756, 0.0004888460971415043, 0.0032374924048781395, -0.013214532285928726, 0.01830226182937622, -0.007997912354767323, 0.007217793725430965, -0.011688212864100933, 0.008513469249010086, 0.022630225867033005, -0.012251255102455616, 0.02786719612777233, -0.015439566224813461, 0.011179439723491669, -0.01339090708643198, -0.019441913813352585, 0.014082837849855423, -0.014177808538079262, 0.02652403526008129, -0.003486791392788291, 0.00606457469984889, -0.007509490009397268, -0.0209885835647583, 0.010446806438267231, -0.022209638729691505, -0.01041288860142231, 0.001963864080607891, 0.004863870330154896, 0.01410997286438942, 0.0015008804621174932, 0.01486974023282528, -0.01108446903526783, -0.020622268319129944, 0.017827408388257027, 0.003785271430388093, 0.0009938033763319254, -0.010806339792907238, 0.0035512358881533146, -0.0019028112292289734, -0.016307871788740158, -0.01054177712649107, 0.013465526513755322, 0.002282695146277547, -0.0128075135871768, -1.5567924492643215e-05, -0.011606808751821518, 0.010548560880124569, -0.01670132391154766, -0.011274410411715508, -0.004714630078524351, -0.006960015278309584, -0.008547387085855007, -0.013628333806991577, -0.02629339136183262, 0.005623638164252043, -0.011566107161343098, -0.004205857403576374, -0.015059682540595531, -0.028437022119760513, 0.0027592459227889776, -0.012909268029034138, 0.004558606538921595, -0.0022555605974048376, 0.007597677409648895, 0.011538973078131676, 0.0027304154355078936, 0.009775226004421711, 0.0064207157120108604, 0.004477202892303467, -0.026334093883633614, 0.014055703766644001, 0.007183875422924757, 0.00017669264343567193, 0.0025557365734130144, -0.008323526941239834, -0.0047994256019592285, 0.013682602904736996, 0.010643532499670982, -0.007875806652009487, 0.013363772071897984, -0.0033256798051297665, 0.0065156868658959866, -0.0038361488841474056, 0.0077129993587732315, 0.0024743329267948866, -0.031123343855142593, 0.005002934951335192, 0.003853107802569866, 0.007468788418918848, 0.009571717120707035, 0.025804968550801277, -0.008214988745748997, -0.003683516988530755, 0.0038395405281335115, 0.008934054523706436, -0.011145521886646748, 0.0012498857686296105, -0.005026677623391151, -0.021463438868522644, 0.016931967809796333, -0.021707650274038315, -0.052016954869031906, -0.005454047117382288, 0.0007262735161930323, 0.022725196555256844, -0.020255951210856438, -0.008995107375085354, 0.011281194165349007, -0.0128007298335433, 0.013004238717257977, -0.015588806010782719, -0.01720331236720085, 0.006329136900603771, -0.00035190136986784637, -0.014747634530067444, -0.0033969080541282892, 0.005766094662249088, -0.010026221163570881, -0.00010307953925803304, 0.006966799031943083, 0.03155749663710594, 0.006834518164396286, -0.020866477862000465, 0.01773243583738804, 0.01477476954460144, 0.0201609805226326, 0.0014245645143091679, -0.017406821250915527, -0.01605009287595749, 0.007597677409648895, -0.0010981018422171474, -0.0036224641371518373, -0.017501793801784515, -0.0022267301101237535, -0.011579674668610096, -0.014123539440333843, 0.009571717120707035, -0.013275585137307644, 0.004104102496057749, 0.02627982385456562, 0.004294044338166714, -0.008601656183600426, -0.023050811141729355, -0.003183223307132721, -0.02786719612777233, -0.0062172068282961845, 0.025492921471595764, 0.025248710066080093, -0.022725196555256844, 0.02914251945912838, 0.021775485947728157, -0.003466440364718437, -0.007299197372049093, -0.003050942439585924, 0.03568194806575775, 0.013743655756115913, 0.003247668035328388, -0.004877437837421894, -0.012712542898952961, 0.001576348440721631, 0.01930624060332775, 0.003995564300566912, 0.01571091264486313, -0.00019333376258146018, -0.016172198578715324, 0.016986235976219177, -0.02267092652618885, 0.03291422501206398, -0.0011091252090409398, -0.004504337441176176, -0.002528602024540305, -0.013736872002482414, 0.013987867161631584, 0.0039887805469334126, 0.005409953650087118, 0.010718151926994324, -0.003958254121243954, 3.5481622035149485e-05, -0.013397689908742905, 0.014693365432322025, -0.019618289545178413, 0.002789772115647793, 0.01603652723133564, -0.018872087821364403, -0.03703867644071579, 0.01313991192728281, 0.00042609742376953363, -0.005192876793444157, -0.01647068001329899, -0.015059682540595531, -0.020785074681043625, 0.015561671927571297, -0.01318061351776123, -0.009137564338743687, -0.00806574895977974, 0.008886569179594517, 0.005179309751838446, 0.017325418069958687, 0.016429977491497993, 0.006929488852620125, -0.008289609104394913, -0.00676328968256712, 0.0004969016881659627, 0.016687756404280663, 0.01747465878725052, 0.0017501793336123228, 0.00017308883252553642, 0.023702040314674377, -0.030933400616049767, -0.019604722037911415, -0.003530884860083461, 0.011403299868106842, -0.007943643257021904, 0.012916051782667637, 0.0277179554104805, 0.003252755617722869, -0.006037440150976181, -0.015073249116539955, 0.0026948011945933104, -0.016253603622317314, 0.01175604946911335, -0.001797664794139564, 0.019374078139662743, -0.009531015530228615, 0.018085185438394547, 0.005504924338310957, -0.0037208269350230694, -0.007807970512658358, -0.021775485947728157, 0.0055591934360563755, -0.018777117133140564, -0.009802361018955708, 0.004229600075632334, 0.03410814702510834, 0.020445892587304115, -0.002677842043340206, 0.0015178396133705974, 0.01736612059175968, -0.007760484702885151, 0.008248906582593918, 0.0038768507074564695, 0.007163524627685547, 0.0037072596605867147, 0.01856004074215889, -0.03712008148431778, 0.00886621791869402, -0.0005185245536267757, -0.002340356120839715, 0.005565977189689875, -0.00707533722743392, 0.017773138359189034, 0.0022250341717153788, 0.024719586595892906, -0.03231726586818695, 0.005433696322143078, -0.02519444189965725, 0.03907376900315285, 0.00402948260307312, -0.00286608817987144, 0.004711238667368889, 0.005220011342316866, 0.009327505715191364, -0.00218263640999794, -0.009558149613440037, -0.017026938498020172, -0.004243167117238045, -0.03744569793343544, -0.0022504727821797132, -0.012773595750331879, -0.0021504140459001064, -0.0005694018327631056, 0.009286804124712944, 0.009666687808930874, -0.0001243314181920141, 6.094677155488171e-05, -0.01247511524707079, 0.029278192669153214, -0.004154979716986418, -0.015344595536589622, 0.0021198876202106476, -0.0289797130972147, 0.012705759145319462, 0.016511380672454834, 0.011016632430255413, 0.0100737065076828, 0.01972682774066925, -0.02249455265700817, -0.013669036328792572, -0.013465526513755322, -0.018424367532134056, 0.011233708821237087, -0.015005413442850113, 0.012481899000704288, -0.00781475380063057, -0.012990672141313553, -0.009605634957551956, -0.002808427205309272, -0.012346225790679455, -0.02210110053420067, 0.01448985654860735, 0.01739325374364853, -0.0014398277271538973, 0.004307611845433712, 0.0018824603175744414, -0.033619724214076996, 0.008649141527712345, -0.022657359018921852, -0.012814297340810299, -0.00018496019765734673, 0.011817102320492268, -0.007211009971797466, -0.00031565126846544445, 0.03172030299901962, 0.0023200050927698612, 0.021395603194832802, -0.013513011857867241, 0.0036224641371518373, -0.01812588796019554, -0.0167827270925045, -0.003832757007330656, -0.01381149236112833, 0.009795577265322208, -0.0006703084800392389, -0.005759310908615589, -0.005026677623391151, -0.022277476266026497, 0.01579231582581997, 0.0004426325613167137, -0.012956753373146057, 0.007957210764288902, -0.00269819307141006, -0.004582349210977554, 0.016185766085982323, 0.02527584508061409, 0.023878414183855057, 0.0024692451115697622, -0.019699692726135254, -0.029495269060134888, -0.023620637133717537, 0.014951144345104694, -0.002808427205309272, 0.014313481748104095, -0.008045397698879242, -0.008262474089860916, 0.03885669261217117, -0.00436527281999588, 0.0032832820434123278, 0.006129019428044558, -0.0014991846401244402, -0.008411714807152748, -0.017447523772716522, -0.010711368173360825, 0.025737132877111435, -0.009951600804924965, -0.008187854662537575, -0.008635574951767921, -0.007346682716161013, 0.009049376472830772, -0.007916508242487907, -0.005467614158987999, 0.014299914240837097, -0.007536624558269978, -0.003903985256329179, 0.002124975435435772, 0.012902484275400639, -0.00973452441394329, -0.005949252750724554, -0.016253603622317314, -0.004935098346322775, -0.016986235976219177, 0.023159349337220192, 0.00873054563999176, -0.010378969833254814, 0.0006669166614301503, 0.009144347161054611, -0.00436866469681263, 0.010724935680627823, -0.0027982518076896667, 0.005857673939317465, 0.025994911789894104, -0.011382948607206345, 0.01796307973563671, -0.0013889503898099065, -0.020771507173776627, -0.024081924930214882, -0.009456395171582699, -0.0025319939013570547, -0.008465983904898167, 0.0023386601824313402, -0.016307871788740158, -0.013709737919270992, -0.0008276041480712593, 0.007828321307897568, 0.006145978346467018, 9.883976599667221e-05, 0.009639553725719452, -0.021354900673031807, -0.005467614158987999, 0.0209885835647583, 0.0055083162151277065, 0.01747465878725052, -0.015236057341098785, 0.03486791253089905, -0.0020181331783533096, -0.012977104634046555, -0.013336637988686562, 0.008282825350761414, -0.006125627551227808, 0.018777117133140564, -0.0019214662024751306, -0.00982271134853363, -0.004646793939173222, -0.03207305446267128, 0.020093142986297607, -0.004497553687542677, 0.008906920440495014, 0.004083751700818539, 0.0014669622760266066, 0.010528210550546646, 0.033891066908836365, 0.0058067962527275085, 0.009836278855800629, 0.007509490009397268, -0.018112320452928543, 0.0002768573467619717, 0.0062680840492248535, -0.013655468821525574, -0.0019299457781016827, 0.00868984404951334, 0.0025845670606940985, 0.0005634661647491157, 0.016389274969697, -0.003615680383518338, -0.0008271801634691656, 0.009910899214446545, -0.00575252715498209, -0.013004238717257977, 0.009341073222458363, -0.010134759359061718, -0.005901767406612635, 0.017420388758182526, 0.004979192279279232, -0.005186093505471945, 0.014422019943594933, -0.009259669110178947, 0.007183875422924757, 0.007936859503388405, -0.00024081923766061664, 0.006590306758880615, -0.0016289217164739966, 0.019428346306085587, 0.007821537554264069, -0.000318407139275223, 0.02729737013578415, 0.01443558745086193, 0.0022776073310524225, 0.005599895492196083, -0.0010048267431557178, -0.03315843641757965, 0.0009183353395201266, -0.01174926571547985, 0.0026337485760450363, 0.005467614158987999, -0.009225751273334026, -0.0006902354652993381, 0.01898062601685524, 0.012502249330282211, -0.005331941414624453, -0.00032434280728921294, -0.009056160226464272, 0.0033138084691017866, 0.001369447447359562, -0.010813123546540737, -0.0008267561788670719, -0.009185049682855606, -0.0008895048522390425, -0.035980429500341415, -0.01796307973563671, 0.002667666645720601, 0.006875219754874706, -0.0068887872621417046, -0.0042533427476882935, 0.0004926619003526866, 0.009646337479352951, 0.007007500622421503, 0.014137106947600842, 0.008167503401637077, -0.010860608890652657, 0.010555344633758068, 0.00109131820499897, 0.01209523156285286, 0.013797924853861332, 0.008126801811158657, -0.007495922967791557, 0.022033264860510826, 0.024923095479607582, -0.01372330542653799, -0.015887286514043808, 0.03416241332888603, -0.00873732939362526, -0.01771887019276619, -0.003486791392788291, 0.015724478289484978, 0.014842606149613857, 0.0057355682365596294, -0.001461874577216804, -0.000375644100131467, 0.006926096975803375, -0.009639553725719452, -0.0038191897328943014, -0.008547387085855007, 0.013336637988686562, -0.011335463263094425, 0.01705407351255417, 0.03134042024612427, 0.02192472666501999, -0.0030085446778684855, -0.020378056913614273, -9.083718759939075e-05, 0.008547387085855007, -0.0032561474945396185, 0.020676536485552788, 0.004728197585791349, 0.0013304415624588728, -0.004222816321998835, -0.003890417981892824, 0.0003669525613076985, -0.0010921661742031574, -0.002233513630926609, 0.004270301666110754, -0.016904832795262337, -0.026252688840031624, -0.007651946507394314, -0.021626247093081474, 0.008452416397631168, 0.013112777844071388, 0.00507755484431982, 0.009510664269328117, 0.018166590481996536, -0.01705407351255417, 0.012102015316486359, -0.04062043875455856, -0.01965899020433426, -0.025140171870589256, 0.0024353270418941975, -0.012997455894947052, -0.010446806438267231, 0.0028813513927161694, -0.0035139259416610003, 0.012393711134791374, 0.028084272518754005, -0.0005405713454820216, -0.016443544998764992, 0.0004413606075104326, 0.0009954993147403002, -0.0009302067337557673, -0.023891981691122055, -0.01645711250603199, 0.009185049682855606, -0.00125921331346035, -0.01780027337372303, -0.02173478528857231, 0.004372056573629379, 0.0013601199025288224, -0.012298740446567535, 0.014408452436327934, -0.0029881936497986317, 0.0035512358881533146, -0.014137106947600842, 0.007509490009397268, -0.002096144948154688, 0.016335006803274155, -0.02878977172076702, -0.011559323407709599, -0.00126514898147434, -6.947931979084387e-05, -0.00535229267552495, -0.012122365646064281, 0.04056617245078087, -0.0004057465121150017, -0.011389732360839844, 0.016226468607783318, 0.004633226431906223, -0.008276041597127914, 0.008642357774078846, -0.003646206809207797, -0.007848672568798065, -0.015466700308024883, -0.010127975605428219, 0.02838275209069252, 0.02946813590824604, -0.006261300295591354, -0.008323526941239834, 0.0058067962527275085, 0.018247993662953377, -0.00030632378184236586, 0.011254060082137585, 0.005203052423894405, -0.0018807643791660666, -0.010813123546540737, -0.004663752857595682, -0.0021911158692091703, 0.010263647884130478, -0.0064037567935884, -0.040593307465314865, -0.010005869902670383, -0.014001434668898582, -0.012949969619512558, 0.014720500446856022, -0.008472766727209091, -0.003724218811839819, -0.015249623917043209, 0.014001434668898582, 0.009191833436489105, 0.016565650701522827, 0.002045267727226019, -0.010908094234764576, -0.001907898928038776, 0.00038815144216641784, 0.018017349764704704, -0.01107768528163433, 0.006346095819026232, 0.01015510968863964, 0.008289609104394913, -0.004480594769120216, 0.0040260907262563705, 0.01222412008792162, -0.0025964383967220783, 0.003154392819851637, -0.005196268670260906, -0.027731522917747498, 0.012353009544312954, -0.0049249231815338135, -0.01255651842802763, 0.02050016261637211, -0.022386014461517334, 0.009951600804924965, -0.01705407351255417, -0.0009064640034921467, 0.007258495315909386, -0.003605504985898733, -0.004582349210977554, -0.0031577846966683865, 0.011654295027256012, -0.017759570851922035, -0.0023776660673320293, 0.03739142790436745, 0.017338985577225685, -0.01636214181780815, 0.0049249231815338135, 0.00835744570940733, -0.03907376900315285, 0.005382818635553122, -0.014761202037334442, -0.011430434882640839, 0.0001423504581907764, 0.00982949510216713, -0.0176374651491642, 0.024407539516687393, 0.02050016261637211, 0.008567738346755505, 0.0006486856145784259, -0.015059682540595531, -0.0011303240898996592, -0.00134909653570503, 0.021354900673031807, -0.004066792782396078, -0.003931119572371244, -0.0029508837033063173, 0.0210021510720253, 0.018342964351177216, 0.0024285432882606983, 0.0031272582709789276, 0.0007763028843328357, -0.019916769117116928, 0.0034308263566344976, 0.016755592077970505, -0.027568716555833817, -0.02007957547903061, 0.0049622333608567715, -0.004178722854703665, 0.018505772575736046, 0.01050107553601265, 0.005206444300711155, -0.007265279069542885, 0.00035762504558078945, -0.00814036838710308, -0.016850562766194344, -0.014001434668898582, -0.0033765570260584354, -0.022223206236958504, -0.014177808538079262, 0.03812406212091446, -0.0075162737630307674, -0.025465786457061768, 0.018437935039401054, -0.004751940257847309, 0.012000259943306446, -0.019211269915103912, 0.01663348637521267, -0.008296392858028412, 0.013316286727786064, 0.0019418171141296625, -0.014096405357122421, -0.003754745004698634, -0.023959819227457047, -0.0005812732269987464, 0.0008971364586614072, 0.00969382282346487, 0.027894331142306328, -0.005572760943323374, 0.014299914240837097, 0.008248906582593918, 0.005847498308867216, 0.021558409556746483, -0.00092935876455158, 0.00978200975805521, -0.002923749154433608, 0.016999803483486176, -0.005148783326148987, -0.002796555869281292, -0.006807383615523577, -0.018342964351177216, -0.010697801597416401, -0.016579218208789825, 0.004039658233523369, -0.00814036838710308, -0.001279564225114882, -0.0030865564476698637, -0.005213228054344654, -0.01613149791955948, 0.014842606149613857, 0.003985388670116663, 0.006946448236703873, -0.0005490509211085737, -0.007780835963785648, -0.008886569179594517, -0.014299914240837097, -0.015615941025316715, 0.009720956906676292, 0.008934054523706436, -0.008805165998637676, -0.006590306758880615, 0.008527036756277084, -0.006980366073548794, 0.012393711134791374, -0.0009030721848830581, 0.006342703942209482, 0.0038090143352746964, -0.012190202251076698, -0.019916769117116928, -0.04493483528494835, -0.010317916981875896, -0.012217337265610695, 0.010222946293652058, 0.016077227890491486, -0.01982179842889309, 0.006787032354623079, -0.002369186608120799, 0.019170569255948067, -0.007984344847500324, 0.0188992228358984, 0.006848085206001997, 0.037228621542453766, 0.008079316467046738, -0.006912529934197664, 0.007963994517922401, -0.015385297127068043, 0.018085185438394547, -0.001586523954756558, 0.014937576837837696, 0.017352553084492683, 0.00776726845651865, 0.02519444189965725, -0.006454634014517069, -0.005386210512369871, 0.0009751483448781073, -0.0036326395347714424, -0.0033053290098905563, 0.008004696108400822, -0.013974299654364586, 0.005409953650087118, 0.01956401951611042, 0.013112777844071388, 0.010256865061819553, -0.012827864848077297, -0.009727740660309792, 0.011851020157337189, 0.017840974032878876, 0.009090078063309193, 0.021300632506608963, -0.012868566438555717, -0.02176191844046116, 0.01931980811059475, 0.03348404914140701, -0.004494161810725927, 0.00886621791869402, 0.006346095819026232, -0.01788167655467987, 0.014123539440333843, -0.006770073436200619, -0.011152305640280247, -0.029088251292705536, 0.028355617076158524, -0.002598134335130453, -0.001985910814255476, -0.0005295479204505682, -0.0014262604527175426, 0.01545313373208046, 0.008364228531718254, 0.0050843385979533195, -0.017149044200778008, -0.004684103652834892, 0.006305393762886524, -0.027433043345808983, -0.0053624678403139114, -0.011111603118479252, 0.010555344633758068, -0.013974299654364586, 0.008289609104394913, 0.0037072596605867147, 0.010378969833254814, -0.005586327984929085, -0.013221316039562225, -0.0024234557058662176, 0.004958841484040022, -0.01457125972956419, 0.00806574895977974, -0.005009718704968691, 0.00409731874242425, 0.0149104418233037, 0.0022979583591222763, -0.012007043696939945, 0.01655208319425583, 0.0088187325745821, -0.007835105061531067, 0.008520253002643585, 0.037988387048244476, 0.0003190430870745331, -0.021897591650485992, 0.0006037440034560859, 0.01577874831855297, 0.01113195437937975, -0.0024556778371334076, -0.06088995933532715, 0.005009718704968691, 0.0034596568439155817, 0.014164241962134838, -0.02954953908920288, -0.016172198578715324], "9f2b3683-b974-4b5b-b968-6e44eb6bb66b": [-0.026337310671806335, -0.012415094301104546, 0.0018465961329638958, -0.015533789992332458, -0.03115711361169815, -0.01821974851191044, 0.019428430125117302, 0.028441309928894043, 0.004323646426200867, 0.014257960021495819, 0.0019902202766388655, 0.05145101621747017, 0.013437250629067421, -0.02660590596497059, -0.021069848909974098, 0.002820255933329463, 0.007110327482223511, 0.008900966495275497, 0.016399266198277473, -0.030470700934529305, 0.0809965580701828, -0.00972913671284914, -0.03718559816479683, 0.046735670417547226, 0.014496712014079094, -0.012049506418406963, -0.026322389021515846, 0.015429336577653885, -0.027008799836039543, -0.0162948127835989, 0.008416001684963703, 0.021472742781043053, 0.02703864313662052, -0.013385023921728134, 0.004032667726278305, -0.027933962643146515, -0.01662309654057026, 0.0007237164536491036, -0.01884647272527218, -0.03864794969558716, -0.033604320138692856, 0.012325562536716461, 0.017757166177034378, -0.003312681568786502, -0.06887990236282349, 0.00846822839230299, 0.004767575301229954, -0.01392967626452446, 0.008498072624206543, -0.0006183299119584262, 0.026516374200582504, -0.006849193014204502, -0.013302952982485294, 0.017607947811484337, 0.01721997559070587, 0.00028584935353137553, 0.01914491131901741, 0.03384307026863098, 0.004234114196151495, -0.024248231202363968, 0.0012776952935382724, 0.007908654399216175, 0.0026859580539166927, -0.011333250440657139, 0.024561593309044838, -0.03548448905348778, 0.010505080223083496, -0.018697252497076988, -0.052137430757284164, -0.001496862038038671, -0.002130114007741213, 0.025039097294211388, -0.0323210284113884, -0.01787654310464859, 0.006707434076815844, -0.03169430419802666, 0.04034905880689621, -0.004998866468667984, 0.017921308055520058, -0.005554710514843464, -0.001917475601658225, 0.013399945572018623, 0.004014015197753906, -0.012586697936058044, 0.0689992755651474, 0.028739750385284424, -0.010430470108985901, -0.025352459400892258, 0.0012161420891061425, -0.010803519748151302, 0.007841505110263824, 0.0007544930558651686, -0.014839918352663517, 0.019846245646476746, -0.00640899408608675, -0.008028030395507812, 0.007449802942574024, 0.015712853521108627, -0.01092289574444294, 0.01525773387402296, 0.023681195452809334, -0.0021245181560516357, -0.03987155482172966, 0.010706527158617973, -0.02596426010131836, 0.009199406020343304, 0.005360724404454231, -0.0045959725975990295, 0.0009107076330110431, 0.005006327293813229, -0.010064881294965744, -0.047063954174518585, 0.010930356569588184, -0.004998866468667984, -0.030619921162724495, -0.0012058832217007875, 0.010102186352014542, -0.002560986438766122, -0.02171149291098118, -0.048496462404727936, -0.011728683486580849, 0.01599637232720852, 0.003353717038407922, 0.02469589188694954, 0.00537937693297863, 0.000741436320822686, 0.011340711265802383, -0.004495249129831791, 0.019667182117700577, -0.004685504361987114, 0.004898143000900745, 0.008975576609373093, 0.031753990799188614, 0.04894412308931351, 0.04837708920240402, -0.002107730833813548, 0.022666500881314278, 0.03936420753598213, -0.009244171902537346, 0.05321181192994118, -0.04542253538966179, -0.03103773668408394, -0.021487664431333542, 0.032679155468940735, 0.021263834089040756, -0.026784969493746758, -0.04321407899260521, 0.024964487180113792, -0.028202559798955917, 0.04163235053420067, -0.058016691356897354, -0.03685731440782547, 0.02357674203813076, 0.021129535511136055, -0.0018363372655585408, -0.018130216747522354, 0.010684143751859665, 0.032679155468940735, -0.016085904091596603, 0.02217407524585724, 0.016503719612956047, -0.07138679176568985, 0.0060135615058243275, -0.0021786103025078773, 0.05282384157180786, -0.0022662770934402943, 0.019726868718862534, 0.007020795717835426, -0.00781912263482809, 0.02374088391661644, 0.013676002621650696, 0.01052746269851923, 0.01563824526965618, -0.04142343997955322, -0.013534244149923325, -0.01306420098990202, 0.022845564410090446, 0.015697931870818138, -0.010885590687394142, -0.014966755174100399, -0.036469340324401855, 0.008430923335254192, -0.004111007787287235, -0.03942389413714409, -0.020458046346902847, -0.0027344543486833572, 0.0038424120284616947, 0.03784216567873955, 0.009781363420188427, -0.010699066333472729, -0.011452626436948776, -0.014295265078544617, 0.00863237027078867, 0.0005726313102059066, -0.0060135615058243275, -0.03682746738195419, 0.02105492539703846, 0.005890455096960068, 0.005114511586725712, -0.004263958428055048, -0.0257702749222517, -0.0632692351937294, -0.03372369334101677, 0.04330361261963844, -0.021607039496302605, 0.004939178470522165, -0.05428619682788849, -0.06846208870410919, -0.010094725526869297, -0.00997534953057766, 0.04491518810391426, -0.01965225860476494, 0.011407860554754734, 0.019174756482243538, -0.014593705534934998, 0.013937138020992279, -0.0242034662514925, 0.024457139894366264, 0.01630973443388939, -0.013922215439379215, -0.006438838317990303, 0.012773222289979458, -0.03244040533900261, -0.016414187848567963, -0.05270446464419365, 0.011639151722192764, 0.026844657957553864, -0.003146674484014511, -0.020458046346902847, -0.004346029367297888, 0.0443183071911335, -0.0024677240289747715, 0.005386837758123875, -0.027590757235884666, -0.018115295097231865, 0.04175172373652458, 0.03897623345255852, -0.0011126208119094372, 0.013370102271437645, -0.004853377118706703, 0.029366474598646164, 0.010340938344597816, 0.0004425302322488278, 0.02596426010131836, 0.011176569387316704, -0.011691378429532051, 0.007744512055069208, 0.003016107017174363, 0.002577773528173566, 0.0029825326055288315, -0.015384570695459843, 0.005495022516697645, 0.0216816496104002, 0.02497940883040428, -0.012556853704154491, 0.03828982263803482, -0.005140624940395355, -0.015227889642119408, 0.028888970613479614, -0.018130216747522354, 0.014280343428254128, 0.006509717553853989, 0.03512636199593544, 0.0032138233073055744, 0.0534505657851696, -0.004663121420890093, 0.038827016949653625, -0.03548448905348778, 0.012668768875300884, 0.03056023269891739, -0.009124795906245708, -0.011131803505122662, 0.036976687610149384, 0.0056890081614255905, -0.0017934365896508098, 0.0077370512299239635, -0.019697025418281555, -0.007774356286972761, -0.014265421777963638, -0.007886270992457867, -0.022815721109509468, -0.013579010032117367, 0.04318423569202423, 0.01085574645549059, 0.012071888893842697, 0.02293509617447853, -0.017205053940415382, 0.020771408453583717, -0.05903138965368271, -0.005349533166736364, 0.005043632350862026, 0.017921308055520058, 0.041692037135362625, 0.0064649516716599464, 0.02800857275724411, 0.00023898498329799622, 0.0009811207419261336, -0.033126816153526306, -0.08398095518350601, -0.03855841979384422, -0.000490094069391489, -0.03524573892354965, -0.010900513269007206, 0.0005101455026306212, 0.045183781534433365, -2.2324693418340757e-05, 0.06279172748327255, 0.01581730879843235, -0.03070945292711258, 0.013743151910603046, 0.029978275299072266, -0.03864794969558716, -0.0032156885135918856, -0.003079525427892804, 0.011251179501414299, -0.006476143375039101, 0.015018981881439686, -0.0306796096265316, 0.004625816363841295, -0.04775036498904228, -0.01996562071144581, -0.02402440272271633, -0.06201578676700592, -0.004498979542404413, 0.04966037720441818, -0.03005288541316986, 0.05601714551448822, -0.02866514027118683, 0.01352678332477808, -0.058494195342063904, 0.002066695364192128, -0.01992085576057434, -0.06219485029578209, -0.004107277374714613, -0.011527236551046371, -0.014921989291906357, -0.04727286100387573, -0.06482111662626266, -0.013549165800213814, 0.01723489724099636, 0.002148766303434968, 0.0048571075312793255, -0.01580238714814186, -0.018428657203912735, 0.02688942477107048, 0.009385931305587292, 0.015198045410215855, -0.00506974570453167, -0.024501904845237732, 0.01865248568356037, 0.0008752678986638784, -0.0037566106766462326, 0.03387291356921196, 0.0027904119342565536, -0.002603887114673853, 0.018010839819908142, -0.022815721109509468, 0.0057524265721440315, -0.016802160069346428, 0.03593214973807335, 0.036170899868011475, -0.04369158297777176, -0.01741396076977253, 0.02690434642136097, -0.00822947733104229, 0.0018316741334274411, -0.00672235619276762, -0.0068118879571557045, -0.004446752835065126, 0.018756940960884094, -0.04401986673474312, 0.0047936891205608845, 1.957053791556973e-05, 0.013877449557185173, -0.018697252497076988, -0.014437024481594563, 0.026158247143030167, -6.190293788677081e-05, -0.019234443083405495, 0.01771240122616291, -0.029933510348200798, -0.006312001496553421, 0.021726416423916817, 0.015891918912529945, 0.01439225859940052, 0.04413924366235733, 0.011064655147492886, -0.007729590404778719, 0.01975671388208866, 0.009139718487858772, -0.06971552968025208, 0.020920628681778908, -0.021562274545431137, -0.04094593599438667, 0.0017160286661237478, 0.016175435855984688, -0.0055621713399887085, -0.029515694826841354, -0.026023948565125465, -0.01234794594347477, -0.01851818896830082, -0.037752632051706314, 0.015891918912529945, -0.00989327859133482, 0.049003809690475464, -0.024472061544656754, -0.018697252497076988, -0.022562047466635704, 0.02593441680073738, 0.0001367460354231298, 0.04712364077568054, 0.005827036686241627, 0.053569938987493515, -0.012482243590056896, 0.030008120462298393, -0.02435268647968769, 0.005148086231201887, 0.004655660595744848, -0.019861167296767235, -0.02818763628602028, 0.07007365673780441, 0.05932982638478279, -0.03861810639500618, 0.028396544978022575, -0.0313660204410553, 0.02421838790178299, 0.016488797962665558, 0.03524573892354965, -0.007408767472952604, 0.009266555309295654, -0.027292316779494286, 0.014578782953321934, 0.02166672796010971, -0.015198045410215855, 0.011176569387316704, -0.0240691676735878, 0.032500091940164566, 0.0133626414462924, 0.0011611172230914235, -0.009654526598751545, -0.013243265450000763, -0.003480553859844804, -0.010915434919297695, 0.003633504267781973, -0.006696242373436689, -0.020025309175252914, -0.014660853892564774, -0.024486983194947243, 0.031246645376086235, 0.015697931870818138, 0.01724981889128685, 0.047720521688461304, -0.0011592520168051124, 0.011974896304309368, -0.021248912438750267, -0.0013308548368513584, -0.023233536630868912, -0.017115522176027298, 0.019264288246631622, -0.030590077862143517, -0.03936420753598213, -0.02339767850935459, -0.0019268018659204245, -0.02153242938220501, -0.004801149945706129, -0.04055796563625336, 0.006222469266504049, 0.03003796376287937, 0.022084543481469154, 0.019547805190086365, 0.00700587360188365, 0.0034525750670582056, -0.0033182771876454353, 0.0544055700302124, 0.003612986532971263, -0.037245284765958786, -0.029694758355617523, 0.0025124899111688137, 0.0032138233073055744, -0.020666955038905144, -0.007707207463681698, -0.021577196195721626, -0.024740656837821007, 0.04378111660480499, -0.001345776836387813, 0.002180475741624832, 0.010437930934131145, -0.06774582713842392, 0.012579236179590225, -0.012907519936561584, 0.057688407599925995, -0.004495249129831791, -0.004234114196151495, 0.010572229512035847, -0.028366701677441597, -0.028844203799962997, -0.001838202471844852, -0.025382302701473236, 0.00011500423715915531, -0.01821974851191044, 0.04097578302025795, -0.010266328230500221, -0.00846822839230299, 0.03769294545054436, 0.0007642856216989458, -0.007446072530001402, -0.02023421786725521, -0.003489880124107003, 0.03581277281045914, 0.0057188523933291435, -0.016832003369927406, -0.03464885801076889, -0.024457139894366264, 0.010296172462403774, 0.023218614980578423, 0.018085449934005737, -0.02102508209645748, -0.006662668194621801, 0.01756318099796772, -0.003465631976723671, -0.00791611522436142, -0.03402213379740715, -0.0066850511357188225, 0.004622085951268673, 0.012243491597473621, 0.005696469452232122, -0.018712174147367477, -0.02545691281557083, -0.03306712582707405, -0.006554483436048031, -0.007375192828476429, -0.0008552164654247463, -0.003969248849898577, 0.02136828750371933, 0.02089078351855278, -0.004457944072782993, -0.0047936891205608845, -0.022502359002828598, -0.00537937693297863, -0.013795378617942333, -0.008759207092225552, 0.0015546847134828568, 0.00506974570453167, -0.014034130610525608, 0.005457717459648848, 0.019383663311600685, -0.00700587360188365, 0.033634163439273834, -0.038498733192682266, 0.02341260015964508, -0.031753990799188614, 0.026038870215415955, -0.02371104061603546, 0.010788598097860813, 0.02484511211514473, -0.028202559798955917, -0.00775197334587574, 0.003549568122252822, -0.02418854460120201, 0.007722129113972187, -0.02199501171708107, 0.00014700490282848477, 0.011497392319142818, -0.0029545538127422333, -0.00942323636263609, -0.020383436232805252, 0.0006435107789002359, -0.006338114850223064, 0.002299851505085826, 0.023188769817352295, 0.034738391637802124, 0.005644242279231548, 0.016354499384760857, 0.0012860889546573162, 0.02133844420313835, 0.02609855867922306, -0.013161194510757923, -0.016056060791015625, -0.026620827615261078, -0.0010921030770987272, 0.016503719612956047, -0.027023721486330032, 0.009923122823238373, -0.020055152475833893, 0.00743861123919487, 0.0177273228764534, -0.01820482686161995, -0.013041818514466286, -0.011721222661435604, -0.008692058734595776, 0.01692153513431549, 0.017787011340260506, -0.004047589376568794, 0.007028256542980671, -0.037752632051706314, 0.0052152350544929504, 0.0029414971359074116, 0.024501904845237732, -0.01085574645549059, 0.015444258227944374, 0.025725508108735085, 0.024501904845237732, 0.031216800212860107, 0.02327830344438553, -0.012146499007940292, 0.006658937316387892, -0.002710206201300025, 0.00010404589556856081, -0.014996598474681377, 0.022726189345121384, -0.0020405820105224848, 0.01107211597263813, 0.028068261221051216, -0.012855293229222298, 0.010579690337181091, 1.7647000277065672e-05, 0.027277395129203796, 0.03861810639500618, 0.015369648113846779, -0.02866514027118683, 0.017995918169617653, -0.02292017452418804, 0.042348604649305344, -0.030619921162724495, 0.02612840197980404, 0.01802576333284378, -0.023531977087259293, 0.019368741661310196, -0.01170630007982254, 0.005084667820483446, -0.00430872431024909, -0.01494437176734209, 0.0167723149061203, -0.017622869461774826, 0.020666955038905144, -0.001699241460300982, -0.009855973534286022, 0.033932603895664215, -0.007259547710418701, 0.006983490660786629, 0.012049506418406963, 0.0025945608504116535, -0.02009991928935051, 0.022427748888731003, -0.01280306652188301, -0.0013019435573369265, -0.0011387342819944024, 0.02375580556690693, 0.03008272871375084, 0.023860260844230652, -0.0395432710647583, -0.001685252063907683, 0.006088171619921923, 0.025561366230249405, 0.017846697941422462, 0.005356993991881609, 0.02233821712434292, 0.03402213379740715, 0.020637109875679016, 0.004260228015482426, 0.047720521688461304, -0.004696696065366268, 0.0031019083689898252, 0.02389010414481163, -0.009758980944752693, -0.0008048547897487879, 0.028038417920470238, 0.004252766724675894, 0.02136828750371933, 0.019831323996186256, 0.01945827342569828, -0.0028724828734993935, 0.026322389021515846, -0.000698535586707294, 0.0161605142056942, -0.0007624203572049737, -0.010430470108985901, -0.007960881106555462, 0.007625136524438858, 0.011982357129454613, 0.0028743480797857046, -0.036946844309568405, -0.04966037720441818, -0.017488570883870125, -0.014340030960738659, 0.001282358425669372, -0.02435268647968769, 0.03446979448199272, -0.0020610997453331947, -0.0008323671645484865, 7.560085941804573e-05, 0.007796739228069782, -0.009326242841780186, 0.011303406208753586, -0.004025206435471773, 0.007759434171020985, -0.01251208782196045, -0.021010160446166992, 0.034559328109025955, -0.01790638640522957, -0.050078194588422775, 0.0028500999324023724, -0.00909495260566473, -0.015862073749303818, 0.013355179689824581, 0.032380715012550354, -0.026053791865706444, -0.015697931870818138, 0.005327150225639343, -0.013429789803922176, 0.02327830344438553, 0.010520001873373985, 0.012534470297396183, 0.014660853892564774, -0.0257702749222517, 0.007662441115826368, -0.009288937784731388, 0.0067186253145337105, -0.020487891510128975, 0.02799365110695362, 0.006084440741688013, 0.05109288915991783, -0.013392484746873379, -0.022696344181895256, -0.03945373743772507, 0.03127649053931236, -0.0011713760904967785, 0.03497714176774025, -0.03184352442622185, 0.00426768884062767, 0.025904573500156403, -0.002480780705809593, 0.008923348970711231, -0.00443183071911335, -0.02308431640267372, 0.01675739325582981, -0.02308431640267372, -0.0015863939188420773, 0.04819802567362785, -0.045512065291404724, -0.014974215999245644, 0.010975122451782227, 0.007557987235486507, -0.0013802839675918221, -0.0186823308467865, 0.006617901846766472, 0.010930356569588184, 0.008207093924283981, 0.02533753775060177, -0.013750612735748291, 0.032380715012550354, -0.027904119342565536, 0.038230136036872864, 0.009900739416480064, -0.004879490472376347, -0.010184257291257381, 0.024486983194947243, 0.007524413056671619, -0.0022905252408236265, 0.01568301022052765, -0.0032399368938058615, -0.0009386863675899804, -0.015936683863401413, -0.029396317899227142, -0.005248809698969126, 0.006132937502115965, 0.006416455376893282, 0.0471833273768425, 0.03482792153954506, 0.010318554937839508, 0.037722788751125336, -0.00942323636263609, 0.02797872945666313, 0.05828528851270676, -0.01075875386595726, -0.005834497511386871, 0.035842616111040115, 0.02008499763906002, -0.05201805382966995, -0.036976687610149384, -0.0011685782810673118, -0.02866514027118683, 0.0038610645569860935, -0.019100146368145943, 0.03730497136712074, -0.0045325541868805885, 0.008498072624206543, 0.023054473102092743, -0.016011293977499008, -0.00657313596457243, 0.005457717459648848, 0.00443183071911335, 0.022815721109509468, 0.012944824993610382, -0.006039674859493971, -0.001537897507660091, 0.00910987425595522, -0.014989137649536133, 0.014869761653244495, -0.0029564190190285444, 0.022218842059373856, -0.01614559255540371, 0.0335446298122406, 0.00498767476528883, 0.002557255793362856, 0.0027437806129455566, 0.012661307118833065, -0.0013858797028660774, -0.020846018567681313, -0.01901061460375786, -0.04461674764752388, 0.017324429005384445, -0.016906613484025, 0.017652712762355804, -0.02471081353724003, 0.018383890390396118, -0.012176343239843845, 0.022845564410090446, 0.018115295097231865, -0.006957377307116985, 0.00022487904061563313, 0.01319849956780672, -0.009915661998093128, 0.015235350467264652, -0.014563861303031445, 0.007613944821059704, 0.045989569276571274, -0.00831154827028513, 0.01914491131901741, 0.005233887583017349, 0.011586924083530903, -0.0007008671527728438, -0.0030011849012225866, 0.04258735477924347, -0.014817534945905209, -0.006879036780446768, -0.01723489724099636, -0.012877676635980606, -0.032350871711969376, 0.031097425147891045, -0.043124549090862274, -0.03100789338350296, -0.025889649987220764, -0.001633957726880908, 0.010885590687394142, 0.008818895556032658, 0.03402213379740715, 0.012340485118329525, 0.053390875458717346, 0.03524573892354965, 0.02436760812997818, -0.02721770852804184, 0.034410107880830765, 0.004323646426200867, -0.009214328601956367, 0.029560459777712822, -0.024322841316461563, 0.022233763709664345, 0.01319849956780672, -0.022263607010245323, 0.012579236179590225, 0.012706073932349682, -0.02850099839270115, 0.0006211277795955539, -0.013176116161048412, -0.010564767755568027, -0.028530843555927277, 0.010579690337181091, -0.019398584961891174, 0.022218842059373856, -0.006200086325407028, -0.008856200613081455, 0.011445165611803532, 0.009318782016634941, -0.014220654964447021, 0.0058158449828624725, -0.020383436232805252, 0.015160740353167057, -0.03214196488261223, -0.02468097023665905, 0.01432510931044817, 0.025874728336930275, -0.009952967055141926, 0.022502359002828598, -0.06380642205476761, -0.006431377027183771, 0.00704690907150507, -0.010497619397938251, 0.0005679681780748069, -0.02835177816450596, 0.023636430501937866, -0.0011890960158780217, -0.004622085951268673, -0.002885539550334215, -0.022054700180888176, -0.004663121420890093, 0.002624404849484563, -0.013235803693532944, -0.004111007787287235, -0.025680743157863617, 0.005569632165133953, -0.027426615357398987, -0.025382302701473236, 0.01067668292671442, 0.01851818896830082, -0.032858218997716904, 0.01140039972960949, 0.01817498169839382, -0.002644922584295273, 0.03527558222413063, 0.025233082473278046, 0.03288806229829788, -0.018115295097231865, 0.001973432954400778, 0.012892598286271095, 0.015489024110138416, -0.009132257662713528, 0.0005633051041513681, -0.01693645678460598, 0.005744965746998787, 0.016339577734470367, 0.002214050153270364, 0.004387064836919308, 0.016056060791015625, 0.002579638734459877, -0.02278587780892849, 0.0033891566563397646, 0.0040923552587628365, 0.01978655718266964, 0.009699292480945587, -0.03485776484012604, 0.015459180809557438, 0.006457490846514702, 0.005196582525968552, 0.002174879889935255, 0.005024979822337627, -0.0007945959223434329, -0.014272882603108883, -0.0232484582811594, -0.010728909634053707, 0.005756156984716654, -0.04282610863447189, -0.003292163833975792, -0.02171149291098118, 0.01963733695447445, -0.006699972786009312, -0.020144684240221977, 0.03587246313691139, -0.04142343997955322, 0.005416681990027428, 0.009684370830655098, 0.04924256354570389, 0.005495022516697645, -0.02469589188694954, 0.0035663554444909096, 0.011534697376191616, 0.00355702918022871, -0.0068864980712533, 0.016070982441306114, -0.006229930557310581, 0.0011853654868900776, -0.008565221913158894, -0.0023166388273239136, 0.0019529153360053897, -0.008580143563449383, 0.019980542361736298, -0.054524946957826614, 0.01067668292671442, 0.016235124319791794, 0.00972913671284914, -0.010326016694307327, -0.005218965467065573, 0.011378016322851181, -0.003189575159922242, 0.02166672796010971, -0.015414414927363396, -0.022502359002828598, -0.009550073184072971, -0.011489931493997574, -0.006602980196475983, 0.0398118682205677, 0.00692753354087472, -0.002952688606455922, -0.017205053940415382, -0.014728003181517124, 0.011430243030190468, -0.009236711077392101, -0.004629547242075205, -0.003806972410529852, 0.00021939986618235707, 0.023845337331295013, -0.0162948127835989, -0.003126156749203801, -0.003676404943689704, 0.013899832963943481, -0.004204270429909229, -0.01306420098990202, -0.02265157923102379, -0.014354953542351723, -0.04861583933234215, -0.022263607010245323, -0.008490611799061298, -0.022203918546438217, 0.047063954174518585, 0.007595292292535305, 0.015474102459847927, -0.004200540017336607, 0.005778540391474962, 0.01851818896830082, -0.0009811207419261336, -0.008169788867235184, 0.000661696947645396, 0.00047843626816757023, -0.023696118965744972, -0.010408087633550167, 0.011579463258385658, -0.0018335393397137523, -0.07693777233362198, -0.0177273228764534, 0.03178383782505989, -0.011355633847415447, -0.013474555686116219, 0.010870669037103653, -0.029381396248936653, -0.012847832404077053, 0.010258867405354977, -0.00546144787222147, -0.00909495260566473, 0.002148766303434968, 0.018010839819908142, -0.025203239172697067, 0.0029414971359074116, 0.031903211027383804, -0.016324656084179878, 0.004219192545861006, -0.022875409573316574, 0.0013551031006500125, -0.057539187371730804, 0.006457490846514702, -0.0024005749728530645, 0.046765513718128204, -0.025203239172697067, -0.023039551451802254, 0.020995238795876503, 0.0305453110486269, -0.023546898737549782, 0.009527689777314663, -0.009371008723974228, -0.005756156984716654, 0.0027866815216839314, 0.009035264141857624, 0.007270738948136568, 0.011251179501414299, -0.0010790462838485837, -0.0018950925441458821, 0.0031354830134660006, 0.017787011340260506, 0.011407860554754734, 0.022830642759799957, -0.003008645959198475, 0.004965291824191809, -0.007225973065942526, 0.03211212158203125, -0.030157338827848434, 0.008520456030964851, -0.03085867315530777, 0.014578782953321934, -0.0015957201831042767, 0.004879490472376347, -0.018279436975717545, -0.0008356313919648528, 0.0066813207231462, 0.014086357317864895, -0.006741008255630732, 0.036469340324401855, 0.011258640326559544, 0.0012096137506887317, -0.0016628691228106618, 0.03533526882529259, 0.013802839443087578, 8.253724809037521e-05, 0.004204270429909229, -0.018786784261465073, 0.0019268018659204245, -0.006274696439504623, -0.02675512619316578, 0.0011807023547589779, 0.02514355070888996, -0.004334837663918734, 0.006069519091397524, -0.024248231202363968, -0.00680442713201046, 0.001713230856694281, 0.010236483998596668, -0.01551886834204197, -0.006856653839349747, -0.010094725526869297, 0.012997052632272243, 0.0006173973088152707, -0.0008207093924283981, -0.012601619586348534, -0.009288937784731388, 0.00692753354087472, 0.003396617714315653, 0.045333001762628555, 0.029187411069869995, -0.007304313592612743, 0.0005810249713249505, -0.004719079006463289, -0.00783404428511858, 0.0436318963766098, 0.015309960581362247, 0.014347492717206478, -0.0031448090448975563, 0.0022457593586295843, -0.007405037060379982, -0.007121519185602665, -0.017801932990550995, -0.003273511305451393, 0.02391994744539261, 0.02089078351855278, -0.01769747957587242, -0.03542480245232582, -0.007677363231778145, -0.005961334332823753, 0.0038797170855104923, 0.006479873787611723, 0.03148539736866951, 0.010937817394733429, 0.023173848167061806, 0.005931490566581488, -0.008587604388594627, 0.023308146744966507, 0.0006971366819925606, -0.018548032268881798, -0.010661761276423931, -0.01226587500423193, 0.006699972786009312, -0.025546444579958916, 0.017130443826317787, -0.01866740733385086, -0.0008360976935364306, -0.001999546540901065, 0.01757810264825821, 0.005890455096960068, -0.02641192078590393, -0.017816854640841484, -0.022427748888731003, -0.0031746530439704657, -0.028844203799962997, 0.00950530730187893, -0.011668995022773743, -0.004651930183172226, 0.0084533067420125, -0.008199633099138737, 0.006755930371582508, -0.020055152475833893, -0.006524639669805765, 0.016682783141732216, -0.023054473102092743, -0.0186823308467865, 0.003230610629543662, -0.002064830157905817, 0.0040587810799479485, 0.003946865908801556, 0.008214554749429226, 0.025501679629087448, 0.01550394669175148, -0.000737239490263164, 0.005312228109687567, 0.00747964670881629, -0.019368741661310196, 0.00846822839230299, 0.0443183071911335, -0.01754825934767723, 0.020159607753157616, -0.03294775262475014, -0.004219192545861006, 0.0004306392802391201, 0.001858720206655562, 0.01960749365389347, 0.008236938156187534, -0.008953193202614784, 0.00853537768125534, -0.021472742781043053, -0.0007176544168032706, -0.012467321939766407, 0.019562726840376854, -0.00628588767722249, 0.022368060424923897, -0.004360951483249664, -0.00934116542339325, -0.018562953919172287, -0.022741110995411873, 0.007311774417757988, 0.009885817766189575, 0.006125476211309433, -0.010296172462403774, 0.0071700154803693295, 0.015757620334625244, -0.007774356286972761, 0.011228797025978565, -0.008333930745720863, -0.021741338074207306, -0.004323646426200867, -0.016518641263246536, 0.008953193202614784, -0.014914527535438538, -0.012153959833085537, -0.04694457724690437, -0.06523893773555756, 0.0108408248052001, 0.005181660410016775, -0.024278076365590096, -0.009438158012926579, 0.02245759405195713, -0.004271419253200293, 0.0014912663027644157, -0.00822947733104229, -0.01273591723293066, 0.016682783141732216, 0.024770502001047134, 0.00692753354087472, 0.00036978552816435695, 0.010967661626636982, -0.022218842059373856, -0.005674086045473814, 0.011848059482872486, 0.013899832963943481, -0.02293509617447853, -0.021875634789466858, 0.009124795906245708, 0.006767122074961662, 0.029082955792546272, 0.02514355070888996, -0.01945827342569828, -0.025829963386058807, -0.012952286750078201, -0.012191264890134335, 0.042647045105695724, 0.011206413619220257, -0.01881662756204605, -0.011534697376191616, -0.013728229328989983, -0.000986716477200389, 0.0006281224777922034, 0.019413508474826813, 0.025755353271961212, 0.015444258227944374, 0.0023987097665667534, 0.00332014262676239, -0.0038610645569860935, -0.0021618232131004333, 0.004566128831356764, 0.015697931870818138, -0.0016003833152353764, -0.019428430125117302, 0.03051546774804592, -0.0018148869276046753, -0.018264515325427055, -0.05840466544032097, 0.00917702354490757, 0.006524639669805765, -0.02690434642136097, -0.03118695691227913, -0.0015789329772815108, 0.01804068498313427, -0.013385023921728134, 0.003376099979504943, -0.023009706288576126, -0.002919113961979747, -0.012870215810835361, 0.0014894009800627828, 0.05171961337327957, -0.012527009472250938, 0.024173621088266373, -0.009191945195198059, -0.012303180061280727, -0.006438838317990303, 0.0006831472855992615, 0.0033723695669323206, 0.01345963403582573, 0.02739677205681801, -0.016578329727053642, -0.004304993897676468, 0.008162328042089939, 0.038827016949653625, -0.0177273228764534, -0.004674313124269247, -0.026531295850872993, 0.01424303837120533, 0.005133164115250111, 0.014757847413420677, -0.018637564033269882, -0.004144582431763411, 0.010400625877082348, 0.012825448997318745, 0.01463100966066122, 0.0120345838367939, 0.0029284402262419462, -0.0177273228764534, 0.03169430419802666, -0.010870669037103653, 0.00982612930238247, -0.030097652226686478, -0.00783404428511858, -0.010229023173451424, 0.020517734810709953, 0.011161647737026215, -0.011564541608095169, -0.006300809793174267, 0.010184257291257381, -0.0058158449828624725, 0.001635823049582541, 0.01020664069801569, -0.007024526130408049, 0.0003138280881103128, -0.022681422531604767, -0.011392938904464245, -0.024412373080849648, 0.022069621831178665, 0.016085904091596603, 0.015608400106430054, -0.001733748591504991, -0.0003194238233845681, 0.027754899114370346, 0.007446072530001402, 0.003853603731840849, 0.016220202669501305, 0.009714215062558651, -0.01771240122616291, 0.03160477429628372, -0.03814060240983963, -0.006976029835641384, -0.020204372704029083, -0.011363094672560692, 0.0035812773276120424, -0.010743832215666771, -0.009035264141857624, -0.011019888333976269, -0.004069972317665815, -0.019219521433115005, -0.00029517558868974447, 0.004980213940143585, 0.006338114850223064, 0.017801932990550995, -0.012594158761203289, -0.005252540111541748, 0.012698612175881863, -0.020980317145586014, 0.013220882043242455, -0.0015145818470045924, -0.01045285351574421, 0.010214101523160934, 0.00019899870676454157, -0.01257177535444498, -0.0010958336060866714, 0.01399682555347681, -0.0008542838622815907, 0.024561593309044838, -0.014660853892564774, -0.03999093174934387, -0.023845337331295013, 0.015242811292409897, -0.005700199864804745, 0.020920628681778908, -0.018488343805074692, -0.030918361619114876, 0.02769521065056324, 0.0026542488485574722, -0.010460314340889454, 0.015086131170392036, -0.011892825365066528, 0.007043178658932447, 0.01927920989692211, 0.0010706527391448617, 0.005991178564727306, 0.00711405836045742, 0.00957991648465395, 0.015056286938488483, 0.02453175000846386, 0.021308600902557373, 0.005592015106230974, -0.012109193950891495, 0.015876995399594307, 0.020323749631643295, -0.012549392879009247, -0.015712853521108627, 0.014780229888856411, 0.011982357129454613, -0.00680069625377655, 0.02375580556690693, 0.01535472646355629, 0.004812341649085283, 0.02200993336737156, -0.02296494133770466, -0.01596652902662754, -0.0207266416400671, -0.013011974282562733, 0.01463847141712904, 0.0008239735616371036, -0.004935448057949543, 0.028366701677441597, 0.03038116917014122, -0.03309697285294533, -0.016876770183444023, -0.025441991165280342, 0.012139038182795048, -0.0067820437252521515, 0.010005193762481213, 0.004420639015734196, -0.02341260015964508, 0.02326337993144989, -0.005327150225639343, 0.005916568450629711, 0.0004168830637354404, -0.0012954151025041938, -0.006047136150300503, -0.003122426103800535, -0.03417135402560234, -0.03670809417963028, -0.0232484582811594, 0.011639151722192764, 0.0031093694269657135, -0.012661307118833065, -0.00830408651381731, -0.019697025418281555, -0.01013949140906334, 0.00684173172339797, 0.008677136152982712, 0.010221562348306179, -0.02295001968741417, 0.0035421070642769337, -0.020652033388614655, 0.024278076365590096, -0.060016240924596786, 0.025068940594792366, -0.007446072530001402, 0.019682103767991066, 0.0010837094159796834, 0.02171149291098118, 0.0035887383855879307, 0.03557402268052101, 0.006651476491242647, -0.007166285067796707, -0.016876770183444023, -0.04631785303354263, -0.013041818514466286, 0.009296399541199207, 0.03491745516657829, -0.023770729079842567, -0.005987448152154684, -0.0017477379878982902, 0.0042490363121032715, 0.019711947068572044, 0.0027046105824410915, 0.006871575955301523, -0.03467870131134987, 0.0004327376664150506, -0.009527689777314663, -0.010154413059353828, -0.017846697941422462, 0.0027661637868732214, -0.017458727583289146, 0.0033033553045243025, 0.005024979822337627, 0.025591211393475533, -0.00675966078415513, 0.01726474054157734, 0.007968341931700706, 0.010385704226791859, 0.03888670355081558, -0.015608400106430054, 0.029843978583812714, -0.042945485562086105, 0.00752068217843771, -0.022263607010245323, -0.00044999123201705515, -0.005819575861096382, -0.010415548458695412, -0.018264515325427055, -0.007345349062234163, -0.007662441115826368, 0.014250499196350574, 0.0020405820105224848, -0.0010725179454311728, 0.03634996339678764, -0.010870669037103653, -0.016832003369927406, 0.005409221164882183, -0.002131979214027524, 0.002889270195737481, 0.013302952982485294, -0.00781912263482809, 0.0016871173866093159, -0.034260887652635574, 0.016832003369927406, 0.019174756482243538, 0.005834497511386871, -0.0009699292713776231, 0.013474555686116219, 0.00021765119163319468, -0.009288937784731388, 0.018936004489660263, -0.03118695691227913, -0.03461901471018791, 0.04014015197753906, 0.00855029933154583, -0.014451946131885052, -0.015951605513691902, 0.0022476245649158955, 0.005043632350862026, -0.01580238714814186, 0.010408087633550167, 0.004745192360132933, -0.00426768884062767, -0.01912998966872692, 0.005957603920251131, -0.006826810073107481, -0.03100789338350296, -0.004491518717259169, 0.028127949684858322, 0.015004060231149197, 0.019741792231798172, 8.976508979685605e-05, -0.011385477147996426, 0.03500698506832123, -0.0015966527862474322, 0.006237391382455826, -0.01550394669175148, 0.00747964670881629, 0.01565316691994667, -0.010437930934131145, -0.020219294354319572, -0.00925163272768259, -0.00758783146739006, -0.005614398512989283, -0.005666625220328569, -0.030276715755462646, -0.03306712582707405, 0.010064881294965744, 0.020637109875679016, -0.03461901471018791, 0.014004286378622055, 0.016727549955248833, 0.011422782205045223, -0.01662309654057026, -0.005640511866658926, 0.009296399541199207, -0.013310413807630539, 0.00601729191839695, 0.0021618232131004333, 0.0026300004683434963, -0.003055277280509472, -0.01298213005065918, 0.009139718487858772, 0.015048826113343239, -0.0034301921259611845, -0.014966755174100399, -0.011549619026482105, 0.0011881634127348661, 0.014892145060002804, 0.02105492539703846, -0.00355702918022871, 0.005495022516697645, 0.010564767755568027, -0.01914491131901741, 0.0026766317896544933, -0.002904192078858614, -0.012989590875804424, 0.01630973443388939, 0.015906840562820435, 0.025188317522406578, -0.009229250252246857, -0.008557761088013649, -0.004961561411619186, 0.002167418831959367, 0.00173188338521868, -0.0010893051512539387, -0.00451390165835619, 0.000986716477200389, -0.009281476959586143, 0.042796265333890915, 0.010020115412771702, 0.02517339587211609, -0.005722582805901766, -0.01243001688271761, -0.0027904119342565536, 0.004942908883094788, -0.011258640326559544, 0.007606483995914459, 0.011340711265802383, 0.0015668087871745229, 0.01644403114914894, 0.001376553438603878, -0.002967610489577055, -0.028590530157089233, 0.03339540958404541, 9.996566404879559e-06, 0.0120345838367939, -0.016175435855984688, 0.0035812773276120424, 0.01290005911141634, -0.016041137278079987, -0.03133617714047432, 0.0026579792611300945, -0.011504853144288063, 0.0034078091848641634, 0.0058568804524838924, 0.011877902783453465, 0.03279853239655495, 0.01835404708981514, 0.0026542488485574722, -0.017115522176027298, -0.015891918912529945, -0.02372596226632595, 0.010191718116402626, -0.00342273130081594, 0.010818442329764366, -0.007121519185602665, 0.0001573803456267342, 0.019831323996186256, -0.00486456835642457, -0.013422328978776932, 0.017369195818901062, 0.008445845916867256, -0.016846925020217896, -0.0009153707651421428, 0.008542838506400585, -0.010079803876578808, 0.025412147864699364, -0.0004049921117257327, -0.021084770560264587, -0.02135336585342884, 0.004379603546112776, 0.0305453110486269, 0.020353592932224274, 0.00010911704157479107, 0.009938044473528862, -0.015533789992332458, -0.003460036125034094, -0.0015891918446868658, -0.007565448526293039, -0.009430697187781334, 0.0016078442567959428, -0.02929186448454857, -0.022427748888731003, -0.014108740724623203, -0.013183576986193657, 0.008609987795352936, 0.0040289368480443954, -0.021263834089040756, -0.006047136150300503, -0.016250045970082283, 0.014787690714001656, -0.013728229328989983, 0.018712174147367477, 0.022994784638285637, -0.000957805139478296, 0.019980542361736298, 0.01627988927066326, 0.01769747957587242, 0.02027898281812668, 0.00029400980565696955, 0.000261367968050763, -0.016070982441306114, 0.015712853521108627, 0.0026337311137467623, 0.004584780894219875, -0.010885590687394142, 0.025874728336930275, -0.023293225094676018, 0.002391248708590865, -0.01154215820133686, -0.008744285441935062, -0.006565675139427185, 0.004155774135142565, 0.00628588767722249, 0.01945827342569828, 0.0035383766517043114, 0.02309923805296421, 0.004114738665521145, 0.0032380716875195503, 0.00966198742389679, -0.01409381814301014, 0.030470700934529305, -0.0016815216513350606, 0.006931263953447342, 0.020204372704029083, -0.002779220463708043, -0.023203693330287933, 0.010049959644675255, -0.006043405272066593, -0.02660590596497059, 0.008975576609373093, 0.012877676635980606, -0.014765308238565922, 0.006080710329115391, 0.01337756309658289, -0.0038386816158890724, -0.014414641074836254, -0.00422665337100625, -0.018786784261465073, -0.00839361920952797, -0.00871444121003151, -0.016235124319791794, 0.029172487556934357, 0.008251859806478024, -0.028038417920470238, -0.00659924978390336, 0.010699066333472729, -0.010408087633550167, -0.014190811663866043, 0.004950369708240032, 0.025039097294211388, -0.017503492534160614, 0.004849646240472794, -0.006177703384310007, 0.011452626436948776, -0.0022905252408236265, 0.004965291824191809, -0.023039551451802254, 0.015063747763633728, 0.016414187848567963, 0.015414414927363396, 0.00025087594985961914, 0.018742017447948456, 0.009430697187781334, -0.005077206529676914, -0.02818763628602028, 0.0035999298561364412, -0.02165180630981922, 0.009378470480442047, -0.02517339587211609, -0.004215461667627096, -0.006032214034348726, -0.019532883539795876, 0.01085574645549059, -0.021069848909974098, 0.017040912061929703, -0.02723263017833233, 0.024889877066016197, 0.011676455847918987, -0.005924029741436243, 0.00379391573369503, -0.011266101151704788, -0.0030272984877228737, 0.00013814496924169362, 0.0071065970696508884, 0.010945279151201248, 0.0162948127835989, -0.01769747957587242, -0.010878129862248898, 0.009990271180868149, -0.00822947733104229, -0.03482792153954506, 5.777898877568077e-06, -0.009266555309295654, -0.017980996519327164, 0.008580143563449383, -0.013966981321573257, 0.019861167296767235, 0.00018839011318050325, -0.0026300004683434963, 0.02545691281557083, -0.016832003369927406, -0.0033481211867183447, 0.002835177816450596, 0.00015936217096168548, -0.02372596226632595, -0.012400172650814056, -0.005703930277377367, -0.00018792379705701023, 0.023696118965744972, 0.011974896304309368, -0.0051107811741530895, -0.023203693330287933, -0.009587378241121769, 0.013086584396660328, 0.012325562536716461, 0.01804068498313427, 0.01028124988079071, -0.017622869461774826, 0.0006519043818116188, 0.020487891510128975, -0.0034730928018689156, -0.01178837101906538, -0.011691378429532051, -0.0026188089977949858, -0.012236030772328377, -0.015474102459847927, 0.01865248568356037, -0.009602299891412258, -0.02945600636303425, -0.001517379772849381, 0.009490384720265865, -0.004495249129831791, 0.006222469266504049, 0.004767575301229954, -0.01992085576057434, 0.006998412776738405, -0.010937817394733429, 0.007311774417757988, -0.011736144311726093, -0.0027904119342565536, 0.007434880826622248, 0.015548712573945522, -0.005640511866658926, 0.020338671281933784, 0.015265194699168205, 0.01044539175927639, -0.006703703664243221, 0.012191264890134335, -0.008087717927992344, -0.0028930006083101034, 0.027471382170915604, -0.003719305619597435, 0.02909787744283676, 0.010064881294965744, -0.014437024481594563, -0.002797872992232442, -0.0007876012241467834, -0.035365112125873566, 0.000268595787929371, -0.007636327762156725, -0.005662894807755947, 0.004663121420890093, -0.020323749631643295, -0.005550979636609554, -0.005412951577454805, -0.005983717739582062, -2.602604763524141e-05, -0.001754266326315701, -0.01044539175927639, -0.011974896304309368, 0.016026215627789497, 0.010393165051937103, -0.01090797409415245, -0.007259547710418701, 0.007960881106555462, 0.0037360929418355227, -0.03288806229829788, 0.01037078257650137, 0.01146008726209402, -0.004435561131685972, -0.008154867216944695, 0.0226366575807333, 0.0014586243778467178, -0.026009026914834976, 0.011019888333976269, 0.016996145248413086, -0.017801932990550995, 0.018548032268881798, -0.013026895932853222, 0.0028724828734993935, 0.018786784261465073, -0.008692058734595776, 0.002480780705809593, 0.006979760248214006, -0.013108966872096062, -0.008856200613081455, 0.009065108373761177, 0.012243491597473621, 0.008348852396011353, -0.00185032666195184, -0.01248970441520214, 0.004394525662064552, -0.023009706288576126, 0.016966301947832108, 0.02657606266438961, 0.013123889453709126, 0.004562397953122854, 0.013922215439379215, -0.03130633383989334, 0.01563824526965618, -0.01695138029754162, 0.01992085576057434, 0.011407860554754734, -0.016384344547986984, -0.0017412095330655575, 0.012780683115124702, 0.005356993991881609, 0.0013271244242787361, 0.00012811926717404276, -0.011049732565879822, -0.011907747015357018, -0.0011219470761716366, -0.0012459860881790519, 0.04766083136200905, 0.018562953919172287, -0.0019529153360053897, 0.010400625877082348, -0.004204270429909229, -0.0060135615058243275, 0.006162781268358231, 0.019711947068572044, -0.01248970441520214, 0.0017794471932575107, 0.01962241530418396, 0.002169284038245678, -0.005610667634755373, 0.014847379177808762, 1.907508158183191e-05, 0.00876666884869337, 0.014563861303031445, 0.002814660081639886, 0.005155547056347132, 0.008289164863526821, 0.010236483998596668, 0.0008682732004672289, 0.017279664054512978, -0.030948204919695854, 0.030769141390919685, -0.003698787884786725, -0.011974896304309368, -0.014698158949613571, -0.012250952422618866, -0.009669449180364609, -0.013758073560893536, -0.014429563656449318, -0.005289845168590546, -0.0056890081614255905, -0.022278528660535812, -0.0008915888611227274, -0.000545118935406208, -0.017801932990550995, 0.0018811032641679049, 0.01517566293478012, -0.0032604546286165714, 0.005647972691804171, 0.004491518717259169, 0.013892371207475662, 0.007990725338459015, -0.006323192734271288, -0.004756384063512087, 0.00704690907150507, -0.01391475461423397, 0.008811434730887413, 0.018070528283715248, 0.011564541608095169, -0.005442795343697071, 0.00498767476528883, -0.01581730879843235, 0.019861167296767235, -0.013810300268232822, -0.006666398607194424, -0.02782950922846794, 0.008654753677546978, -0.001646081916987896, -0.0008146473555825651, -0.02881436049938202, -0.022427748888731003, 0.007132710888981819, -0.0027885467279702425, -0.022353138774633408, 0.003249263158068061, -0.0036297738552093506, 0.001388677628710866, -0.00040755682857707143, 0.014429563656449318, -0.012161420658230782, 0.0059202988632023335, 0.03557402268052101, -0.008125022985041142, -0.003251128364354372, -0.023770729079842567, -0.006073249503970146, -0.020681876689195633, -0.005659164395183325, -0.006009831093251705, -0.015227889642119408, 0.008893505670130253, -0.010184257291257381, 0.0005348600680008531, 0.003831220557913184, -0.014108740724623203, 0.006009831093251705, 0.026710359379649162, -0.02339767850935459, -0.00383495120331645, -0.0012515818234533072, -0.01108703762292862, -0.0038424120284616947, -0.016966301947832108, 0.0128179881721735, 0.0084533067420125, 0.00747964670881629, -0.045959725975990295, 0.018906159326434135, -0.0031448090448975563, 0.008035491220653057, -0.004540015012025833, 5.901763142901473e-05, -0.003379830392077565, -0.015757620334625244, -0.017130443826317787, 0.02090570703148842, 0.008669675327837467, -0.0006313866470009089, 0.010743832215666771, 0.0023856530897319317, -0.009781363420188427, 0.02057742327451706, -0.019861167296767235, 0.0015817307867109776, 0.01028871163725853, 0.0183391235768795, -0.0011433974141255021, 0.0357232429087162, 0.013228342868387699, -0.006054596975445747, -0.00494663929566741, -0.010721448808908463, -0.005916568450629711, -0.003292163833975792, 0.0012870215578004718, -0.03127649053931236, -0.02026406116783619, 0.027187863364815712, -0.014362414367496967, -0.004069972317665815, 0.0152055062353611, -0.0257702749222517, -0.02817271463572979, -0.003251128364354372, -0.0051107811741530895, 0.0147951515391469, 0.011512313969433308, -0.0024621281772851944, 0.018712174147367477, 0.00048543093726038933, 0.015078669413924217, 0.008110101334750652, 0.01219872571527958, -0.010146952234208584, 0.010870669037103653, -0.014936910942196846, 0.004789958242326975, 0.004629547242075205, 0.007509490940719843, 0.018473422154784203, -0.021457819268107414, -0.01037078257650137, -0.012952286750078201, 0.00813994463533163, 0.011422782205045223, -0.0068118879571557045, -0.01439225859940052, 0.0281577929854393, 0.021129535511136055, -0.01116910856217146, -0.004625816363841295, -0.031067579984664917, 0.0162948127835989, 0.016966301947832108, -0.012377790175378323, -0.009624683298170567, 0.037424348294734955, 0.02390502579510212, -0.003187709953635931, -0.004461674485355616, -0.003271646099165082, -0.0026505182031542063, 0.006252313498407602, -0.013989364728331566, 0.022905252873897552, 0.028232403099536896, -0.01756318099796772, 0.014422101899981499, 0.0028799439314752817, 0.004334837663918734, 0.0004301729495637119, 0.0022457593586295843, 0.010326016694307327, 0.01912998966872692, -0.0008580143330618739, 0.0029340360779315233, 0.0008421597303822637, 0.0009256296325474977, 0.015951605513691902, 0.003353717038407922, -0.013959520496428013, 0.010169335640966892, 0.0116242291405797, 0.008587604388594627, 0.00525627052411437, 0.007494568824768066, 0.01996562071144581, 0.0071700154803693295, 0.00042854086495935917, 0.022248685359954834, 0.004125929903239012, 0.006065788678824902, 0.013698386028409004, -0.00855029933154583, 0.017040912061929703, -0.009535150602459908, 0.01273591723293066, 0.008401080034673214, 0.015697931870818138, -0.00934116542339325, 0.011079576797783375, -0.016533562913537025, -0.03133617714047432, 0.0005129433702677488, 0.016369421035051346, 0.009736597537994385, -0.008871122263371944, 0.01627988927066326, -0.0019006882794201374, 0.0100574204698205, -0.017846697941422462, 0.01131832879036665, 0.013250726275146008, -0.0096470657736063, -0.012191264890134335, 0.0014642201131209731, -0.0023166388273239136, 0.015876995399594307, 0.032858218997716904, 0.042497824877500534, -0.014362414367496967, 0.012914981693029404, 0.007322966121137142, 0.023144004866480827, -0.016220202669501305, -0.0016059790505096316, -0.009199406020343304, 0.0030049155466258526, 0.009393392130732536, -0.016026215627789497, -0.013496939092874527, -0.015369648113846779, -0.009945505298674107, 0.013743151910603046, -0.004301263485103846, 0.02229345217347145, -0.0032343410421162844, -0.0036223127972334623, -0.006185164209455252, 0.008259320631623268, 0.003461901331320405, -0.008639832027256489, -0.02660590596497059, -0.010326016694307327, 0.013877449557185173, -0.00042667562956921756, -0.0013075392926111817, 0.0070954058319330215, -0.004834724590182304, 0.01265384629368782, 0.011661534197628498, -0.024501904845237732, 0.001678723725490272, 0.006073249503970146, 0.01352678332477808, 0.009326242841780186, -0.0019454542780295014, -0.03208227455615997, 0.004327376838773489, 0.018398812040686607, 0.00026882896781899035, 0.00342273130081594, -0.008841278031468391, -0.023218614980578423, -0.0015117840375751257, -0.00672235619276762, 0.00708794454112649, 0.01178837101906538, 0.012586697936058044, -0.012728456407785416, -0.02327830344438553, 0.015280116349458694, -0.013205960392951965, -0.008789051324129105, -0.013370102271437645, 0.004588511772453785, 0.006382880732417107, 0.007931036874651909, -0.004875760059803724, -0.03769294545054436, -0.011198952794075012, -0.004633277654647827, 0.012914981693029404, -0.0013616314390674233, 0.0070730228908360004, -0.001357901026494801, -0.010482696816325188, 0.010900513269007206, -0.007412497885525227, 0.006341845262795687, -0.01352678332477808, 0.008624909445643425, 0.00032851690775714815, 0.029530616477131844, 0.005778540391474962, 0.02339767850935459, -0.0017393443267792463, 0.008609987795352936, 0.00482353288680315, -0.0035626247990876436, -0.010557306930422783, -0.0024472062941640615, 0.020383436232805252, -0.00502871023491025, 0.006050866562873125, 0.00019072166469413787, -0.017980996519327164, 0.008692058734595776, -0.009430697187781334, 0.025218160822987556, 0.004111007787287235, 0.00017941360420081764, 0.006737277843058109, -0.022248685359954834, -0.025740431621670723, 0.016056060791015625, 0.009751520119607449, -0.026322389021515846, -0.01510851364582777, 0.016682783141732216, 0.003032894339412451, 0.00037118446198292077, 0.012870215810835361, -0.00035113305784761906, 0.0058867246843874454, 0.02009991928935051, -0.013496939092874527, 0.0161605142056942, -0.01248970441520214, 0.004275149665772915, 0.021771181374788284, -0.004055050667375326, 0.03273884207010269, -0.006028483621776104, 0.008319009095430374, -0.007464725058525801, -0.013802839443087578, 0.02262173593044281, -0.025889649987220764, 0.038379356265068054, 0.005002596881240606, -0.012064428068697453, -0.0070021431893110275, 0.005700199864804745, 0.008975576609373093, -0.0072222426533699036, 0.00026253375108353794, 0.015295038931071758, -0.008997959084808826, -0.008557761088013649, -0.017607947811484337, -0.003614851739257574, 0.006323192734271288, -0.0267252828925848, 0.02133844420313835, 0.01037078257650137, 0.012527009472250938, -0.0031075042206794024, -0.007692285347729921, -0.0012618406908586621, -0.019697025418281555, -0.021069848909974098, -0.01298213005065918, 0.021726416423916817, -0.0039655184373259544, -1.5956618881318718e-05, -0.006039674859493971, -0.0038647952023893595, -0.009609760716557503, -0.004655660595744848, 0.0004956898046657443, 0.0007969274884089828, 0.0026784969959408045, -0.025635976344347, -0.02339767850935459, -0.01726474054157734, -0.007043178658932447, 0.0025497947353869677, -0.0178616214543581, -0.007061831187456846, -0.009371008723974228, -0.01790638640522957, 0.0035458377096801996, 0.01313135027885437, -0.001527638640254736, -0.007255817297846079, -0.016488797962665558, 0.01675739325582981, 0.021174302324652672, 0.005356993991881609, -0.007625136524438858, 0.005107050761580467, -0.0006677589844912291, 0.013153732754290104, -0.007050639949738979, 0.014921989291906357, -0.04345283284783363, 0.02594933845102787, 0.0062970793806016445, 0.005554710514843464, 0.0037099795881658792, 0.0153398048132658, -0.013161194510757923, -0.01693645678460598, 0.01901061460375786, 0.009035264141857624, -0.004924256354570389, -0.011422782205045223, 0.017369195818901062, 0.016026215627789497, -0.016518641263246536, -0.0024863763246685266, 0.009117335081100464, -0.00798326451331377, 0.0021879365667700768, 0.006435107905417681, -0.008401080034673214, 0.018264515325427055, -0.005133164115250111, -0.008721902966499329, -0.002848234726116061, -0.02087586186826229, -0.04446752741932869, -0.015757620334625244, -0.009990271180868149, 0.007576639764010906, -0.012146499007940292, 0.010326016694307327, -0.006084440741688013, 0.013787917792797089, 0.020204372704029083, -0.014541477896273136, -0.001644216594286263, 0.006289618089795113, 0.005144355818629265, 0.003010511165484786, -0.0031019083689898252, 0.013817762024700642, 0.008371235802769661, 0.020293904468417168, -0.004424369893968105, 0.004237845074385405, 0.004495249129831791, 0.007285661064088345, 0.005010057706385851, -0.008072796277701855, 0.03897623345255852, 0.011736144311726093, -0.013399945572018623, -0.006039674859493971, 0.02165180630981922, 0.004935448057949543, 0.014422101899981499, -0.0061403983272612095, -0.018906159326434135, -0.0133626414462924, -0.014272882603108883, 0.013191037811338902, -0.0061403983272612095, 0.017160287126898766, 0.019085224717855453, -0.004540015012025833, -0.0019958161283284426, -0.009855973534286022, -0.003441383596509695, -0.0347682349383831, -0.00982612930238247, -7.641690172022209e-05, 0.008542838506400585, 0.002195397624745965, 0.013840144500136375, 0.009154640138149261, 0.0042788805440068245, -0.024113934487104416, 0.00876666884869337, 0.027560913935303688, -0.020846018567681313, 0.016563408076763153, -0.0357232429087162, 0.009288937784731388, -0.016906613484025, 0.006009831093251705, 0.006259774323552847, 0.02436760812997818, -0.01448925118893385, -0.005629320163279772, 0.007789278402924538, -0.01914491131901741, 0.02102508209645748, 0.005994908977299929, 0.0074833775870501995, 0.0019678373355418444, 0.005987448152154684, 0.004010284319519997, 0.01596652902662754, -0.0025050288531929255, 0.005931490566581488, 0.011475009843707085, 0.00029540873947553337, 0.003049681428819895, 0.014481790363788605, -0.02735200524330139, -0.004528823774307966, 0.007225973065942526, -0.013011974282562733, -0.0183391235768795, -5.531627903110348e-05, -0.0010976988123729825, -0.016652939841151237, -0.010721448808908463, -0.013892371207475662, -0.008378696627914906, 0.01519058458507061, -0.014504172839224339, 0.00847569014877081, -0.0020592345390468836, -0.003549568122252822, -0.009199406020343304, 0.01314627192914486, 0.016399266198277473, 0.012071888893842697, 0.005181660410016775, -0.009102413430809975, -0.01288513746112585, 0.007774356286972761, 0.01077367551624775, 0.008990498259663582, -0.010863208211958408, 0.003792050527408719, -0.0009606030071154237, -0.026949111372232437, -0.0010146952699869871, 0.022830642759799957, 0.01898076944053173, 0.005849419627338648, -0.006688781548291445, 0.019876088947057724, 0.012661307118833065, -0.008938271552324295, 0.01898076944053173, -0.009952967055141926, 0.018443578854203224, 0.007364001590758562, 0.0023185040336102247, -0.00704690907150507, 0.00878159049898386, -0.0017663904000073671, 0.0077370512299239635, -0.020219294354319572, -0.00982612930238247, 0.007617675233632326, -0.01385506708174944, -0.0021786103025078773, 0.01251208782196045, 0.0071364413015544415, -0.006976029835641384, 0.02708340995013714, 0.011691378429532051, 0.007863888517022133, 0.0015127166407182813, -0.00554351881146431, -0.003719305619597435, 0.005868072155863047, 0.00863237027078867, 0.0037584758829325438, -0.02500925399363041, -0.006006100680679083, 0.018115295097231865, 0.001096766209229827, 0.0147951515391469, 0.027620600536465645, 0.010221562348306179, 0.021010160446166992, 0.02991858683526516, -0.01627988927066326, -0.005465178284794092, 0.0008710711263120174, 0.039006080478429794, 0.024949565529823303, 0.00048123413580469787, 0.023845337331295013, -0.002195397624745965, 0.007285661064088345, 0.0030683339573442936, 0.010430470108985901, -0.010243945755064487, 0.006043405272066593, -0.04998866096138954, -0.002885539550334215, -0.015742698684334755, 0.015533789992332458, -0.01645895466208458, 0.0034507098607718945, -0.011967435479164124, 0.0011928265448659658, -0.02594933845102787, 0.004189348313957453, 0.024337762966752052, -0.01738411746919155, 0.007252086419612169, -0.016205279156565666, -0.03133617714047432, 0.015876995399594307, 0.006185164209455252, 0.00916956178843975, 0.031395863741636276, -0.003991632256656885, -0.010243945755064487, -0.02533753775060177, -0.002089078538119793, -0.005170469172298908, 0.004032667726278305, -0.012437477707862854, 0.018443578854203224, -0.016742471605539322, -0.04252766817808151, -0.014272882603108883, 0.003400348126888275, -0.004111007787287235, -0.003849873086437583, 0.006744739133864641, 0.0031149652786552906, -0.006345575675368309, 0.004816072061657906, -0.011519775725901127, -0.011303406208753586, 0.01804068498313427, 0.0005959469126537442, -0.012504626996815205, -0.025546444579958916, 0.004379603546112776, -0.0003606924437917769, 0.012624002993106842, -0.001913745072670281, -0.018115295097231865, 0.0152055062353611, 0.01314627192914486, 0.0031485396903008223, -0.0030608728993684053, -0.002796007553115487, 0.0005996774416416883, -0.007259547710418701, -0.018756940960884094, 0.015324882231652737, -0.009162100963294506, 0.015086131170392036, 0.002301716711372137, -0.00342273130081594, 0.006263504736125469, -0.011273562908172607, 0.012280796654522419, 0.009520228952169418, -0.009348626248538494, 0.004293802194297314, 0.006121745798736811, 0.045512065291404724, 0.01818990521132946, -0.02597918175160885, -0.009803746826946735, -0.00894573237746954, 0.0036857312079519033, 0.002598291262984276, 0.009930583648383617, 0.0031783836893737316, -0.002458397764712572, 0.0076102144084870815, 0.004916795529425144, -0.004972752649337053, -0.0021189225371927023, 0.006972299423068762, -0.015697931870818138, -0.0022028586827218533, -0.015563634224236012, 0.004633277654647827, 0.0004928919370286167, -0.0052376179955899715, 0.004006553906947374, 0.0005423210095614195, -0.0175930242985487, -0.005121972877532244, 0.0011256774887442589, 0.010706527158617973, -0.01329549215734005, -0.008841278031468391, -0.002277468563988805, 0.016235124319791794, -0.01818990521132946, 0.007427420001477003, 0.0013961385702714324, -0.04100562632083893, -0.009400852955877781, 0.005588284693658352, -0.0037137100007385015, -0.0035887383855879307, 0.004323646426200867, 0.005491292104125023, 0.016518641263246536, 0.021935323253273964, 0.002277468563988805, -0.009363547898828983, -0.0032007666304707527, -0.00022942558280192316, 0.001064124284312129, -0.016518641263246536, -0.009527689777314663, -0.006278426852077246, -0.005696469452232122, -0.0026430573780089617, 0.018592799082398415, -0.0035048022400587797, -0.020308826118707657, -0.016175435855984688, 0.007054370362311602, 0.006229930557310581, -0.009967888705432415, -0.0018139543244615197, 0.028918813914060593, -0.0065582143142819405, 0.016324656084179878, 0.006028483621776104, 0.014183350838720798, 0.017757166177034378, -0.010557306930422783, 0.020159607753157616, 0.006334384437650442, 0.0008253725245594978, 0.0034320573322474957, 0.026859579607844353, -0.016324656084179878, 0.01075875386595726, 0.013825222849845886, -0.02023421786725521, 7.260625807248289e-06, -0.004540015012025833, 0.0013672271743416786, -0.02391994744539261, 0.0018773727351799607, -0.020040230825543404, 0.01695138029754162, 0.02469589188694954, 0.015138357877731323, 0.016981223598122597, -0.0015033903764560819, -0.007457263767719269, -0.01319849956780672, -0.0058867246843874454, 0.005024979822337627, -0.01853311061859131, -0.02104000374674797, 0.007472185883671045, 0.0052786534652113914, -0.00018419329717289656, 0.0145564004778862, -0.003059007693082094, 0.020532656461000443, -0.014250499196350574, 0.011161647737026215, 0.005032440647482872, 0.00605832738801837, -0.019741792231798172, -0.007416228298097849, 0.012765761464834213, -0.0035159937106072903, -0.010833363980054855, 0.004610894713550806, 0.00636795861646533, -0.015086131170392036, -0.014108740724623203, -0.004704156890511513, -0.007759434171020985, -0.020189451053738594, 0.008505533449351788, 0.015384570695459843, 0.0002898130042012781, 0.03629027679562569, 0.014086357317864895, 0.0007437678868882358, -0.006737277843058109, 0.003379830392077565, -0.0020126032177358866, 0.005271192640066147, -0.0019752983935177326, 0.012594158761203289, 0.011378016322851181, -0.010482696816325188, -0.0014716811710968614, 0.009833591058850288, 0.017622869461774826, 0.011639151722192764, -0.000855682825203985, -0.016488797962665558, 0.0031317523680627346, 0.013220882043242455, -0.046437229961156845, 0.0021842061541974545, -0.0006868778145872056, -0.00684173172339797, -0.008416001684963703, -0.022532202303409576, 0.01927920989692211, -0.0016945783281698823, 0.009288937784731388, 0.011751065962016582, 0.009154640138149261, -0.005263731349259615, 0.00020272920664865524, 0.015018981881439686, 0.007863888517022133, -0.009050186723470688, 0.0096470657736063, 0.004424369893968105, 0.021398132666945457, 0.0019752983935177326, 0.003984170965850353, -0.011251179501414299, 0.01036332082003355, 0.01376553438603878, 0.013153732754290104, -0.017443805932998657, 0.0019976813346147537, -0.018607720732688904, 0.023382756859064102, 0.0025684472639113665, 0.016727549955248833, 0.0071923984214663506, -0.018294358626008034, 0.00869951955974102, 0.004047589376568794, 0.000645376043394208, -0.0015640109777450562, -0.0029638800770044327, -0.02150258608162403, -0.012452399358153343, -0.015787463635206223, 0.010087264701724052, 0.0014427697751671076, 0.0011443300172686577, -0.004077433608472347, 0.009042724967002869, 0.00020471103198360652, 0.02217407524585724, -0.0036036602687090635, 0.006472412496805191, 0.003984170965850353, 0.004443022422492504, -0.005107050761580467, 0.004969022236764431, -0.00806533545255661, 0.005345802288502455, -0.01630973443388939, -0.005207774229347706, -0.01319849956780672, -0.026232857257127762, -0.007300583180040121, -0.0052152350544929504, 0.002600156469270587, 0.006920072250068188, 0.010796058923006058, -0.0026803622022271156, -0.017115522176027298, -0.013273108750581741, -0.011176569387316704, -0.022069621831178665, 0.010102186352014542, -0.008572682738304138, -0.007457263767719269, 0.010102186352014542, -0.01739903911948204, 0.007878810167312622, -0.007640058174729347, -0.0023781920317560434, 0.010236483998596668, 0.0032809723634272814, -0.01820482686161995, 0.009900739416480064, 0.015876995399594307, -0.007505760528147221, -0.027889197692275047, -0.012042044661939144, -0.018145138397812843, 0.00853537768125534, -0.011825676076114178, -0.019353820011019707, 0.0032809723634272814, -0.007050639949738979, -0.005957603920251131, 0.0015239081112667918, 0.011281023733317852, 0.014810074120759964, -0.02896358072757721, 0.01457132212817669, 0.007322966121137142, 0.014824995771050453, -0.031574927270412445, -0.00987835694104433, -0.004995135590434074, 0.0026430573780089617, -0.022681422531604767, -0.011064655147492886, 0.030769141390919685, 0.015295038931071758, -0.009162100963294506, -0.004614625126123428, -0.00024085023324005306, -0.0052040438167750835, 0.004155774135142565, -0.008624909445643425, 0.00700587360188365, -0.015444258227944374, -0.0006817483808845282, 0.010415548458695412, -0.0060769799165427685, -0.002536738058552146, 0.012161420658230782, -0.01211665477603674, -0.010661761276423931, -0.00624485220760107, -0.0023539436515420675, 0.014966755174100399, 0.008968115784227848, 0.0076102144084870815, 0.004849646240472794, 0.008162328042089939, 0.017055833712220192, -0.020816175267100334, -0.039632800966501236, -0.002865021815523505, 0.018950926139950752, 0.001656340784393251, -0.014340030960738659, -4.756384078064002e-05, 0.004383334424346685, -0.01431018766015768, 0.023024627938866615, 0.017816854640841484, 0.011355633847415447, 0.012280796654522419, -0.013414868153631687, -0.014183350838720798, 0.0029284402262419462, 0.006513447966426611, 0.012937364168465137, -0.002557255793362856, 0.019100146368145943, 0.006386611144989729, 0.0023352913558483124, -0.011579463258385658, 0.01790638640522957, -0.005868072155863047, 0.01100496668368578, 0.003765936940908432, -0.009617221541702747, 0.010505080223083496, -0.0007945959223434329, -0.020502813160419464, 0.01399682555347681, 0.007255817297846079, 0.010415548458695412, -0.0009032466332428157, -0.009184484370052814, 0.005830767098814249, 0.007968341931700706, 0.002501298440620303, 0.00871444121003151, -0.012847832404077053, 0.0009773903293535113, -0.002969475695863366, 0.04393033683300018, 0.006867845542728901, -0.007759434171020985, -7.449336408171803e-05, -0.007774356286972761, -0.023845337331295013, 0.02009991928935051, -0.004998866468667984, -0.021427975967526436, 0.00018489276408217847, 0.015056286938488483, -0.003204497043043375, 0.015742698684334755, 0.012467321939766407, -0.00593522097915411, -0.0002650984679348767, -0.009617221541702747, -0.008356314152479172, -0.0014595569809898734, 0.017518414184451103, 0.0018083584727719426, -0.008035491220653057, -0.002710206201300025, 0.017130443826317787, 0.002732589142397046, 0.0177273228764534, -0.005550979636609554, -0.01313135027885437, -0.022412827238440514, -0.026203012093901634, 0.03464885801076889, -0.0013634967617690563, -0.036767780780792236, 0.0027046105824410915, -0.002820255933329463, -0.0014791421126574278, -0.0072334338910877705, 0.005121972877532244, 0.001660071313381195, -0.01020664069801569, 0.003118695691227913, -0.027560913935303688, 0.005614398512989283, -0.009982810355722904, -0.018697252497076988, 0.00395805761218071, 0.011333250440657139, -0.02265157923102379, -0.004096086136996746, 0.004368412308394909, 0.0002324566012248397, -0.011378016322851181, -0.008333930745720863, -0.017354272305965424, -0.00987835694104433, 0.013981903903186321, -0.0040289368480443954, -0.00879651214927435, 0.006118015386164188, 0.003329468658193946, -0.009818668477237225, 0.004461674485355616, 0.02403932437300682, 0.02453175000846386, -0.010467775166034698, 0.02674020454287529, -0.004189348313957453, -0.012631463818252087, -0.002799738198518753, 0.013966981321573257, 0.008938271552324295, -0.026680516079068184, -0.00399909308180213, 0.007371462415903807, -0.0178616214543581, -0.03369385004043579, -0.033932603895664215, -0.003092582104727626, -0.012042044661939144, 0.00934116542339325, -7.571743481094018e-05, -0.0019771635998040438, -0.001494996715337038, -0.018637564033269882, -0.01884647272527218, -0.004401986952871084, -0.00855029933154583, 0.0064873346127569675, 0.01708567701280117, 0.005398029461503029, -0.0037528802640736103, -0.029217254370450974, -0.019741792231798172, 0.0005297306342981756, -0.0017384117236360908, -0.006405263673514128, -0.0027027451433241367, -0.006282157264649868, 0.0006323193083517253, 0.00831154827028513, 0.003808837616816163, 0.00711405836045742, 0.009594839066267014, 0.003480553859844804, 0.0022681422997266054, -0.019353820011019707, -9.973251144401729e-05, -0.006931263953447342, -0.0016097095794975758, 0.006692511960864067, -0.005401759874075651, 0.011310867965221405, 0.004286341369152069, -0.01660817302763462, 0.0008053210913203657, 0.020622188225388527, -0.003016107017174363, 0.01754825934767723, 0.014504172839224339, -0.0026132133789360523, 0.016488797962665558, 0.013952059671282768, 0.022547125816345215, -0.0073901149444282055, 0.01234794594347477, -0.004543745424598455, 0.00822947733104229, 0.013116428628563881, -0.025098785758018494, 0.0010128299472853541, 0.013698386028409004, 0.003316411981359124, -0.023785650730133057, 0.012340485118329525, -0.0178616214543581, -0.0065805972553789616, 0.006121745798736811, -0.004909334238618612, 0.0036726745311170816, 0.0025106247048825026, -0.022353138774633408, 0.003059007693082094, 0.012952286750078201, -0.0028090644627809525, 0.004327376838773489, 0.001611574785783887, 0.0009363548015244305, 0.030425935983657837, 0.016727549955248833, 0.008706980384886265, -0.006588058080524206, 0.0008370302966795862, -0.02230837382376194, 0.02832193486392498, 0.0009876491967588663, 0.013183576986193657, -0.029321707785129547, 0.01695138029754162, -0.0215473510324955, 0.013302952982485294, 0.02562105469405651, 0.0050473627634346485, 0.013556626625359058, 0.023472288623452187, 7.291955989785492e-05, 0.01044539175927639, 0.005166738759726286, 0.007460994645953178, -0.028038417920470238, 0.009154640138149261, 0.01257177535444498, 0.0034134050365537405, -0.0008953193319030106, 0.007766894996166229, -0.011810754425823689, 0.02296494133770466, -0.0017253549303859472, -0.009684370830655098, -0.020517734810709953, 0.0003933343105018139, -0.009848512709140778, 0.004125929903239012, 0.02007007598876953, -0.0026374615263193846, -0.009453079663217068, 0.0039058306720107794, -0.01614559255540371, 0.006688781548291445, 0.0025068940594792366, -0.013720768503844738, 0.010109647177159786, 0.016667861491441727, 0.0017468052683398128, 0.006274696439504623, -0.005002596881240606, -0.011445165611803532, 0.012713534757494926, -0.019876088947057724, -0.03846888616681099, 0.006084440741688013, -0.005133164115250111, -0.0006435107789002359, -0.014459406957030296, -0.010393165051937103], "05636a71-c471-4479-9045-250d59b4d199": [0.0011257299920544028, -0.01509977038949728, -0.0037848246283829212, -0.016601841896772385, -0.032597582787275314, -0.02184591442346573, 0.014019332826137543, 0.02145063318312168, -0.02179321087896824, -0.007049194537103176, 0.004522684030234814, 0.06809390336275101, 0.0004107226268388331, -0.017985329031944275, -0.013288061134517193, -0.012622670270502567, 4.953891448167269e-07, -0.003959407564252615, 0.01739240624010563, -0.03130633011460304, 0.08316732197999954, -0.035522669553756714, -0.03718285262584686, 0.03359896317124367, -0.009888636879622936, -0.024784177541732788, -0.010705552063882351, 0.016272440552711487, -0.033783428370952606, -0.012075862847268581, 0.02023843489587307, 0.002808148739859462, 0.009717348031699657, -0.019118469208478928, -0.005372540559619665, -0.0369720384478569, 0.0024227488320320845, 0.027827847748994827, 0.00800445955246687, -0.02313716895878315, -0.018103912472724915, -0.008887255564332008, 0.021938147023320198, -0.006011579651385546, -0.04635339602828026, 0.02149016223847866, -0.008808199316263199, 0.00031643142574466765, 0.012780782766640186, -0.023387514054775238, 0.0019895858131349087, -0.025205811485648155, -0.005267132073640823, 0.008228451944887638, 0.013202416710555553, 0.0006069224909879267, 0.01298501156270504, 0.06034637615084648, 0.01437508687376976, -0.0026796821039170027, 0.002737327478826046, 0.020620541647076607, -0.021147584542632103, -0.004809263627976179, -0.009855696000158787, -0.02313716895878315, -0.0032347238156944513, -0.004733501002192497, -0.07721173763275146, -0.03017318807542324, -0.00644309539347887, 0.028302187100052834, -0.03554902225732803, -0.0028262657579034567, -0.01508659403771162, -0.006334393285214901, 0.00934182945638895, 0.008834551088511944, 0.0073654199950397015, 0.010560615919530392, 0.013531818054616451, 0.01592986285686493, -0.01154223270714283, 0.016325144097208977, 0.08775258809328079, 0.003929761238396168, 0.03307192400097847, -0.019513752311468124, -0.021951323375105858, -0.00998745672404766, -0.0005295131122693419, 0.02446795254945755, -0.0077936421148478985, 0.01707617938518524, 0.012820310890674591, 0.0017326525412499905, -0.01437508687376976, 0.029171807691454887, -0.009552646428346634, 0.04782911390066147, 0.036708515137434006, 0.008920195512473583, -0.042690448462963104, 0.029698850587010384, -0.02321622520685196, -0.01023780182003975, 0.016852186992764473, -0.017919447273015976, -0.011970454826951027, 0.0065715620294213295, 0.01589033380150795, -0.057711161673069, 0.012240564450621605, -0.010112629272043705, -0.04914672300219536, 0.011015189811587334, 0.023888206109404564, -0.011114010587334633, -0.0006719792727380991, -0.06930609792470932, -0.017840391024947166, 0.017932623624801636, 0.03865857422351837, 0.024046318605542183, -0.0019862917251884937, 0.0002779326168820262, 0.0001571863394929096, 0.0401606447994709, 0.02748527005314827, -0.006196044385433197, 0.03309827297925949, 0.009486766532063484, 0.022689184173941612, 0.03299286589026451, 0.03997617959976196, 0.0073390682227909565, 0.045272957533597946, 0.023875029757618904, 0.007167779374867678, 0.035522669553756714, -0.03744637593626976, -0.031042808666825294, -0.013307825662195683, 0.04137284308671951, -0.009051956236362457, -0.021160759031772614, -0.03860586881637573, -0.014915305189788342, -0.0010763198370113969, 0.033783428370952606, -0.04292761906981468, -0.03633958473801613, 0.01217468362301588, 0.02011985145509243, 0.036866627633571625, -0.014401438646018505, -0.016786307096481323, 0.024731473997235298, 0.01444096677005291, 0.009625115431845188, 0.04448239505290985, -0.06793578714132309, 0.023545628413558006, 0.005497713107615709, 0.039528194814920425, 0.0067099109292030334, 0.03130633011460304, -0.013768987730145454, -0.020712774246931076, 0.020897239446640015, 0.010514499619603157, 0.007866110652685165, 0.009677819907665253, -0.012780782766640186, -0.015455523505806923, 0.03351990878582001, 0.029408976435661316, 0.0008564441814087331, 0.01744510978460312, -0.03784165903925896, -0.02724810130894184, 0.013432998210191727, 0.02430984005331993, -0.007516944780945778, -0.03768354654312134, -0.0004413981514517218, -0.0014205444604158401, 0.025416629388928413, 0.01716841198503971, -0.009078308939933777, -0.009071720764040947, -0.013090420514345169, 0.01852554641664028, 0.0024705121759325266, -0.010540851391851902, -0.02463924139738083, 0.028381243348121643, -0.011673993431031704, 0.03560172766447067, 0.006245454773306847, -0.018393786624073982, -0.06419378519058228, -0.05220356956124306, 0.023967262357473373, -0.029514385387301445, 0.0052572498098015785, -0.05918688327074051, -0.0486723817884922, -0.0054186563938856125, 0.005639355629682541, 0.03568078204989433, -0.01228668075054884, -0.02017255499958992, 0.0160220954567194, -0.03881668671965599, 0.01716841198503971, 0.002215225948020816, 0.024072669446468353, 0.01876271516084671, -0.01731334812939167, 0.0075696492567658424, 0.04050322249531746, 0.002773561514914036, -0.011746461503207684, -0.06772497296333313, 0.03041035681962967, 0.01516565028578043, 0.02622036822140217, -0.01571904495358467, -0.03618147224187851, 0.05349482223391533, 0.0022448720410466194, 0.00017715631111059338, -0.023795973509550095, -0.019513752311468124, 0.03415235877037048, 0.025508861988782883, 0.00019702334247995168, -0.0035015391185879707, -0.024889586493372917, -0.0005731587880291045, 0.013209004886448383, 0.0037914125714451075, 0.035338204354047775, 0.0244020726531744, -0.01284007541835308, -0.005207839421927929, 0.028117721900343895, 0.008439269848167896, -0.006140046287328005, -0.03135903552174568, -0.004183400422334671, 0.007530121132731438, -0.00577441044151783, -0.021345224231481552, 0.02716904506087303, 0.0024540419690310955, -0.026786940172314644, 0.022807767614722252, -0.013492289930582047, 0.025008169934153557, 0.008333860896527767, 0.03454764187335968, 0.005790880415588617, 0.07262647151947021, -0.006311335135251284, 0.02008032239973545, -0.02724810130894184, 0.00681202532723546, 0.020752301439642906, -0.005293483845889568, -0.022214844822883606, 0.04709125682711601, -0.019632335752248764, -0.016246087849140167, 0.006284982897341251, -0.014638607390224934, -0.009177128784358501, -0.005860054865479469, -0.01857825182378292, 0.007286363746970892, 0.003186960704624653, 0.023453395813703537, 0.02033066749572754, 0.013544994406402111, 0.01292571984231472, -0.020673245191574097, 0.04466686025261879, -0.04593176022171974, -0.001254196627996862, -0.008294332772493362, -0.0014691312098875642, 0.0185518991202116, 0.03283475339412689, 0.029145454987883568, -0.025390276685357094, -0.00682520167902112, -0.04925213009119034, -0.07257376611232758, -0.01735287718474865, -0.00013752517406828701, -0.025060875341296196, -0.011700345203280449, 0.00016068622062448412, 0.05331035703420639, 0.0021641685161739588, 0.06893716752529144, 0.009565822780132294, -0.034020598977804184, 0.020884063094854355, 0.008603970520198345, 0.016140678897500038, 0.011818929575383663, -0.032307710498571396, 0.011983631178736687, -0.019685041159391403, 0.010402503423392773, -0.026839643716812134, -0.001959939720109105, -0.03855316340923309, -0.004453510046005249, -0.021081702783703804, -0.0430857315659523, 0.008847727440297604, 0.03207053989171982, -0.03557537496089935, 0.04846156761050224, -0.05051703006029129, -0.00031231390312314034, -0.0574476420879364, -0.008333860896527767, -0.0006036284612491727, -0.09581634402275085, -0.022465189918875694, -0.02297905646264553, -0.004110932350158691, -0.052493441849946976, -0.06082071363925934, 0.02322940155863762, 0.015600460581481457, 0.0032874280586838722, 0.016825834289193153, -0.029751554131507874, 0.0011438471265137196, 0.015271059237420559, 0.013129948638379574, 0.0230712890625, -0.007576236966997385, -0.027063636109232903, 0.024968642741441727, 0.0008000341476872563, -0.00236180960200727, 0.011963866651058197, -0.001647008117288351, 0.022241197526454926, -0.010672612115740776, -0.014730839990079403, -0.015442348085343838, -0.020949942991137505, -0.008188923820853233, 0.023466570302844048, -0.03570713475346565, -0.04290126636624336, 0.016694074496626854, -0.023730091750621796, -0.001828178996220231, 0.003359896596521139, 0.029514385387301445, -0.0040351697243750095, 0.03196513280272484, -0.05357388034462929, -0.0035081272944808006, 0.006676970981061459, -0.020857710391283035, -0.02429666370153427, -0.008030811324715614, 0.040951207280159, -0.030752934515476227, -0.02428348734974861, 0.013044304214417934, -0.022333430126309395, 0.008241628296673298, 0.0009412651415914297, -0.0087093785405159, 0.03315097838640213, 0.039923474192619324, -0.012774194590747356, -0.0032083718106150627, 0.03942278400063515, 0.01604844629764557, -0.05497054010629654, 0.02896098978817463, 0.0028262657579034567, -0.029092751443386078, 0.0016618311638012528, -0.002493570325896144, -0.026562945917248726, -0.026180841028690338, -0.03720920532941818, -0.008294332772493362, -0.008459033444523811, 0.007108486723154783, -0.016878539696335793, -0.01444096677005291, 0.048092637211084366, -0.0274589192122221, -0.024072669446468353, -0.03847410902380943, 0.013024539686739445, -0.006578150205314159, 0.039607249200344086, 0.001031027059070766, 0.030990103259682655, 0.005682177841663361, 0.02184591442346573, 0.0045622121542692184, 0.026391657069325447, 0.004855379927903414, -0.055286768823862076, -0.04593176022171974, 0.030858343467116356, 0.04026605188846588, -0.042426928877830505, 0.0001596568472450599, -0.02600955218076706, 0.028038665652275085, -0.023624684661626816, 0.02320305071771145, -0.013228768482804298, 0.01089660543948412, -0.02591731958091259, -0.003009083680808544, 0.0017721806652843952, -0.0051880753599107265, 0.016707250848412514, -0.01585080660879612, 0.0400288850069046, 0.00863691046833992, 0.0019319404382258654, -0.025363923981785774, -0.007879287004470825, 0.01861777901649475, -0.011594937182962894, -0.004911378026008606, 0.011581760831177235, -0.006380509119480848, -0.026681531220674515, 0.0016478316392749548, 0.03167526051402092, 0.03792071342468262, 0.010389327071607113, 0.023980436846613884, -0.014651783742010593, 0.008050575852394104, -0.008775259368121624, 0.009855696000158787, -0.0401606447994709, -0.012761018238961697, -0.0007724468014203012, -0.03631323575973511, -0.008972899988293648, -0.022359780967235565, 0.00717436708509922, -0.017063003033399582, 0.01090978179126978, -0.03346720337867737, 0.005290189757943153, 0.01152905635535717, 0.020594188943505287, 0.008986076340079308, -0.0026516830548644066, -0.0137953395023942, -0.007681645918637514, 0.03560172766447067, 0.01228009257465601, -0.03515373915433884, -0.03502197936177254, 0.0017425345722585917, -0.005998403299599886, -0.01747146248817444, 0.0031770786736160517, -0.026286248117685318, -0.0137953395023942, 0.007404948119074106, 0.003718944266438484, 0.0064793298952281475, 0.01299159973859787, -0.06082071363925934, -0.010389327071607113, -0.03565442934632301, 0.05887065827846527, 0.02145063318312168, 0.0009017369011417031, -0.0036827099975198507, -0.022228021174669266, -0.03926467150449753, 0.004904789850115776, -0.0026829761918634176, -0.013953451998531818, -0.007312715984880924, 0.015547756105661392, -0.0068383775651454926, 0.002309105359017849, 0.02896098978817463, 0.01749781332910061, 0.01726064458489418, -0.029567088931798935, -0.01307065598666668, 0.008874079212546349, 0.00946041475981474, -0.00436127744615078, -0.017998503521084785, -0.026734234765172005, 0.025008169934153557, 0.018235674127936363, 0.007754113990813494, -0.029672497883439064, -0.0035048332065343857, 0.01428285427391529, -0.025482509285211563, -0.000560806249268353, -0.0016980653163045645, -0.00608734181150794, 0.006110399961471558, -0.0017326525412499905, 0.0014024273259565234, -0.025442980229854584, -0.053758345544338226, 0.010837312787771225, -0.007872698828577995, -0.009229833260178566, 0.0092759495601058, -0.004025287926197052, 0.011726697906851768, 0.016825834289193153, 0.011140362359583378, -0.01307724416255951, -0.01500753778964281, 0.008274568244814873, 0.003356602508574724, -0.036813925951719284, 0.018051208928227425, 0.0201462022960186, -0.032439470291137695, 0.01751098968088627, 0.01305747963488102, -0.023479746654629707, 0.03639229014515877, -0.021332047879695892, 0.030647525563836098, -0.024810530245304108, 0.0007341538439504802, -0.022438837215304375, 0.022333430126309395, 0.029514385387301445, -0.016153855249285698, 0.011094246059656143, -0.0065485043451189995, -0.036892980337142944, 0.012655610218644142, -0.036787573248147964, -0.0156268123537302, 0.011838694103062153, -0.013571346178650856, -0.013406645506620407, -0.02163509838283062, -0.011891398578882217, -0.00028513825964182615, -0.0036267118994146585, 0.019171174615621567, 0.03604971244931221, -0.0033038982655853033, 0.020791830494999886, -0.006779085379093885, 0.005948993377387524, 0.029883313924074173, -0.0372355580329895, 0.014546375721693039, 0.006653912831097841, 0.00781999435275793, 0.013663578778505325, -0.019157998263835907, -0.019737744703888893, -0.02727445401251316, 0.008834551088511944, -0.0007481534266844392, -0.017669102177023888, -0.025324396789073944, -0.005962169263511896, -0.0019418225856497884, -0.013393470086157322, 0.026576122269034386, 0.005445008631795645, -0.018196145072579384, -0.01856507547199726, 0.008195511996746063, 0.011996806599199772, 0.030568469315767288, 0.01704982854425907, -0.009467002004384995, 0.01896035671234131, 0.012306444346904755, 0.014243326149880886, 0.008050575852394104, -0.0051946635358035564, 0.008801611140370369, -0.0016412435797974467, 0.008155983872711658, -0.033994246274232864, 0.0228736475110054, 0.0014328970573842525, 0.019329287111759186, 0.03022589161992073, -0.013848043978214264, 0.020949942991137505, 0.005438420455902815, 0.02459971234202385, 0.035206444561481476, 0.013406645506620407, -0.0039692893624305725, 0.007312715984880924, -0.033915191888809204, 0.04888319969177246, -0.02620719186961651, 0.024257134646177292, -0.005777704529464245, 0.006163104437291622, 0.0026253308169543743, 0.0061828684993088245, 0.008353625424206257, -0.008590794168412685, -0.0032446058467030525, 0.020686421543359756, 0.0016980653163045645, 0.038289643824100494, -0.010494735091924667, -0.01146317645907402, 0.02888193354010582, -0.013479114510118961, -0.019039412960410118, -0.024981819093227386, -0.002114758361130953, -0.006805437617003918, 0.019856330007314682, -0.011891398578882217, -0.010560615919530392, 0.010349798947572708, 0.037973418831825256, 0.014493671245872974, 0.030647525563836098, -0.021252991631627083, -0.020884063094854355, -0.020831357687711716, 0.003722238354384899, 0.009091484360396862, 0.00789905060082674, 0.03133268281817436, 0.03757813572883606, -0.004545742180198431, -0.01573222130537033, 0.0230712890625, -0.0006835083477199078, 0.0019780567381531, 0.04856697469949722, -0.004189988598227501, -0.005932522937655449, 0.022702358663082123, 0.005273719783872366, 0.03180702030658722, 0.025192635133862495, 0.004166930448263884, -0.027643384411931038, 0.016430553048849106, -0.00797151867300272, 0.026180841028690338, 0.003471893025562167, 0.006976725999265909, -0.02286047302186489, -0.0019302935106679797, 0.009618527255952358, 0.02593049593269825, -0.022109435871243477, -0.026365306228399277, -0.0045622121542692184, -0.012504084967076778, -0.00754329701885581, 0.004130696412175894, 0.030937399715185165, -0.0029102633707225323, -0.001793591771274805, 0.002590743824839592, -0.01902623660862446, -0.019698217511177063, -0.00036666516098193824, 0.008195511996746063, 0.006304746959358454, -0.0048323217779397964, -0.022755064070224762, 0.02722175046801567, -0.008248216472566128, -0.03462669625878334, 0.007325891871005297, 0.022267548367381096, 0.0008860903326421976, 0.013090420514345169, 0.017603222280740738, -0.02597002312541008, -0.02292635291814804, 0.000223787224967964, -0.01575857400894165, 0.010336622595787048, 0.01587715744972229, 0.014230149798095226, 0.01704982854425907, -0.03997617959976196, 0.007694821804761887, -0.004522684030234814, 0.015310587361454964, -0.01581127755343914, 0.035074684768915176, 0.010369562543928623, 0.044113464653491974, 0.004061521962285042, -0.022781414911150932, -0.02864476479589939, 0.020620541647076607, -0.00010067336552310735, 0.03734096884727478, -0.0152578828856349, 0.009315477684140205, 0.007055782712996006, 0.011673993431031704, -0.0013637227239087224, -0.017734983935952187, -0.018143441528081894, -0.016865363344550133, -0.025350747630000114, -0.006765909027308226, 0.048382509499788284, -0.04134649038314819, -0.0020472309552133083, -0.0011520821135491133, -0.004012111574411392, -0.011700345203280449, -0.030831990763545036, 0.014915305189788342, 0.011048129759728909, -0.005520771257579327, 0.016285615041851997, 0.022017203271389008, 0.03760448843240738, -0.026444362476468086, 0.026655178517103195, 0.0019665276631712914, 0.00358718354254961, -0.01735287718474865, 0.022069908678531647, 0.012102215550839901, -0.029672497883439064, 0.03033130057156086, 0.00022749298659618944, 0.014823072589933872, -0.008498561568558216, 0.002790031721815467, -0.013821692205965519, 0.0067099109292030334, -0.010053337551653385, 0.033809781074523926, 0.05454890802502632, -0.01519200298935175, 0.02735351026058197, 0.003982465714216232, 0.022386133670806885, 0.043770886957645416, -0.03209689259529114, 0.019724568352103233, -0.0001862148492364213, 0.011160126887261868, -0.019157998263835907, -0.024955466389656067, 0.008373389020562172, -0.03146444261074066, 0.02442842349410057, -0.01445414312183857, 0.03902750462293625, -0.016246087849140167, 0.018406962975859642, -0.011028366163372993, -0.023848677054047585, 0.012523849494755268, -0.006667088717222214, -0.032571230083703995, -0.001651125610806048, 0.017814040184020996, 0.011120598763227463, 0.003541067475453019, 0.005181487649679184, -0.02893463708460331, 0.019645512104034424, -0.007227071560919285, -0.008235040120780468, 4.796911161975004e-05, 0.03894844651222229, 0.015495051629841328, 0.013406645506620407, 0.01861777901649475, 0.023769620805978775, 0.003402718808501959, -0.028249481692910194, -0.0077014099806547165, -0.024151725694537163, 0.0033417793456465006, -0.026233544573187828, 0.03728826344013214, -0.0518609918653965, -0.0009280890808440745, -0.008584205992519855, 0.03196513280272484, 0.03222865238785744, 0.001410662429407239, 0.016957595944404602, 0.016667721793055534, -0.017998503521084785, 0.036761220544576645, -0.010619908571243286, -0.006074165925383568, 0.05043797567486763, -0.012438205070793629, 0.02444159984588623, 0.01516565028578043, 0.01600891910493374, 0.008123043924570084, 0.008597382344305515, 0.04342830926179886, 0.0011627876665443182, -0.010698964819312096, -0.019381990656256676, -0.03652404993772507, -0.021134408190846443, 0.03918561711907387, -0.0160220954567194, -0.021332047879695892, -0.020501956343650818, -0.004433745983988047, 0.033994246274232864, 0.019171174615621567, 0.04327019676566124, 0.025548389181494713, 0.04648515582084656, 0.048118989914655685, 0.02150333672761917, -0.027880553156137466, 0.01081096101552248, 0.02442842349410057, -0.007964931428432465, 0.008445857092738152, -0.005902877077460289, 0.006031343713402748, 0.016153855249285698, -0.02608860842883587, 0.0002657859295140952, -0.0006019814754836261, -0.045457422733306885, 0.011693757027387619, 0.004552330356091261, -0.016865363344550133, -0.023927733302116394, 0.007167779374867678, -0.013755811378359795, -0.0015531285898759961, -0.014111565425992012, 0.010468383319675922, 0.019856330007314682, -0.004973964300006628, -0.0004533389874268323, 0.016364673152565956, -0.026246720924973488, 0.02756432816386223, -0.026905523613095284, -0.014823072589933872, -0.004904789850115776, 0.05209815874695778, 0.008347037248313427, 0.02312399260699749, -0.0457472950220108, -0.01881542056798935, 0.029672497883439064, -0.00926277320832014, -0.020462429150938988, -0.0372355580329895, -0.0062751006335020065, -0.028065018355846405, 0.004756559152156115, -0.019157998263835907, -0.0021855796221643686, -0.00855785422027111, 0.005082666873931885, -0.0060511077754199505, 0.00472361920401454, 0.006564974319189787, 0.007055782712996006, -0.02880287729203701, -0.036629460752010345, -0.0008745613158680499, 0.02192497067153454, -0.03620782494544983, 0.026628825813531876, 0.03452128916978836, -0.013953451998531818, 0.05027986317873001, 0.025442980229854584, 0.03304557129740715, -0.03425776958465576, -0.00016614193737041205, 0.02753797546029091, 0.02033066749572754, -0.008182336576282978, 0.0023519275709986687, -0.004446921870112419, 0.022254373878240585, 0.020567836239933968, 0.016825834289193153, -0.02292635291814804, 0.0186836589127779, -0.015060242265462875, -0.021411104127764702, 0.010554027743637562, 0.0037980007473379374, 0.007154603023082018, 0.03172796219587326, -0.021411104127764702, 0.0015630106208845973, 0.019105292856693268, -0.007095310837030411, 0.023400690406560898, 0.009631703607738018, 0.004453510046005249, -0.033757079392671585, -0.030542118474841118, -0.013110184110701084, -0.008142807520925999, -0.023585155606269836, 0.017550518736243248, -0.03734096884727478, -0.00871596671640873, -0.018103912472724915, -0.01733970083296299, 0.018024856224656105, -0.006568268407136202, 0.006364039145410061, 0.01574539765715599, 0.04954200237989426, 0.006037931423634291, -0.004450215958058834, -0.007589413318783045, 0.014625431969761848, -0.0062783947214484215, -0.004845497664064169, 0.005748058203607798, 0.01227350439876318, -0.007161191198974848, 0.005319836083799601, -0.001846296014264226, 0.009756876155734062, -0.02172733098268509, 0.021292520686984062, -0.03792071342468262, 0.02162192203104496, 0.008426093496382236, -0.0041735186241567135, 0.00302884797565639, -0.014744016341865063, 0.015350115485489368, 0.006426625419408083, 0.02018573135137558, -0.00854467786848545, -0.004242692608386278, -0.021055351942777634, -0.005109019111841917, -0.025469332933425903, 0.027880553156137466, 0.006364039145410061, 0.0007917991606518626, -0.023769620805978775, -0.012510673142969608, 0.023954086005687714, -0.01090319361537695, 0.005807350389659405, 0.012471145018935204, 6.654942262684926e-05, 0.008992664515972137, -0.01596939004957676, -0.00580405630171299, -0.03462669625878334, 0.03338814899325371, -0.018130265176296234, -0.01896035671234131, -0.02856570854783058, -0.01071214023977518, -0.029277214780449867, -0.004756559152156115, -0.021134408190846443, -0.0006876258994452655, 0.028486652299761772, 0.008913607336580753, 0.001762298634275794, 0.003068376099690795, 0.002243224997073412, 0.02152968943119049, -0.022214844822883606, -0.00608734181150794, -0.0020011148881167173, 0.012965247966349125, -0.024810530245304108, 5.373363819671795e-05, 0.022109435871243477, -0.0027257984038442373, -0.046564213931560516, -0.02004079520702362, 0.026457536965608597, -0.008920195512473583, 0.006258630659431219, -0.014572727493941784, -0.015126122161746025, -0.01152905635535717, 0.016101151704788208, -0.03351990878582001, -0.008663262240588665, 0.003511421149596572, 0.016206558793783188, -0.0015885393368080258, -0.005853466689586639, 0.02018573135137558, -0.010613320395350456, 0.004710443317890167, -0.029488032683730125, 0.009091484360396862, -0.042453281581401825, -0.013782164081931114, -0.003462010994553566, 0.029962370172142982, -0.019052589312195778, -0.0348375141620636, 0.018472842872142792, 0.022320253774523735, -0.03162255510687828, 0.017708631232380867, -0.01437508687376976, -0.02155604213476181, -0.01718158833682537, 0.02437571994960308, -0.004710443317890167, 0.008248216472566128, 0.011160126887261868, 0.003939643502235413, -0.007806818466633558, 0.004315161146223545, 0.012326208874583244, 0.012135155498981476, 0.0048323217779397964, 0.0018924123141914606, -0.010389327071607113, 0.03607606515288353, -0.036734867841005325, 0.018248848617076874, -0.018103912472724915, 0.02711634151637554, 0.011944103054702282, 0.006176280323415995, -0.023545628413558006, -0.009559234604239464, 0.010764844715595245, -0.004321749322116375, 0.019184350967407227, 0.026865996420383453, 0.014309206046164036, 0.0056887660175561905, 0.002327222377061844, 0.004888319876044989, -0.007385184057056904, 0.010507911443710327, 0.010758256539702415, -0.007095310837030411, 0.009486766532063484, -0.0023667505010962486, 0.005991815589368343, 0.029619792476296425, 0.042426928877830505, 0.02145063318312168, 0.010119217447936535, -0.014572727493941784, -0.002396396826952696, 0.015271059237420559, 0.0303840059787035, -0.01587715744972229, -0.015126122161746025, -0.01707617938518524, 0.039580896496772766, -0.013861220329999924, -0.0021476985421031713, -0.00402858154848218, 0.006426625419408083, 0.022491542622447014, 0.016786307096481323, 0.020699597895145416, 0.025482509285211563, 0.014256501570343971, 0.017919447273015976, 0.00039960534195415676, -0.019685041159391403, 0.0378943607211113, 0.012438205070793629, 0.02454700879752636, -0.016628192737698555, 0.0025643915869295597, -0.005566887091845274, -0.0027702676597982645, -0.0011034953640773892, -0.00608075363561511, 0.023413866758346558, 0.014559551142156124, 0.007029430475085974, -0.014480494894087315, 0.0019385284977033734, 0.004608328454196453, 0.008874079212546349, 0.0093747703358531, 0.00854467786848545, 0.023690564557909966, 0.02164827473461628, 0.015271059237420559, 0.008373389020562172, 0.026813291013240814, 0.021226640790700912, -0.006739557255059481, -0.00789246242493391, 0.013492289930582047, -0.00612357584759593, -0.005649237893521786, 0.017893096432089806, -0.01079778466373682, 0.01577174849808216, 0.014388262294232845, 0.007721174042671919, 0.023716917261481285, -0.020910413935780525, -0.007747525814920664, -0.004812557715922594, -0.003117786254733801, -0.013176064938306808, -2.8282216590014286e-05, -0.0013085479149594903, -0.009895224124193192, -0.016364673152565956, -0.014862600713968277, -0.00726659968495369, -0.023888206109404564, -0.01723429188132286, 0.016272440552711487, -0.026286248117685318, -0.019039412960410118, -0.023756444454193115, -0.019513752311468124, 0.01590351015329361, -0.007516944780945778, 0.012952071614563465, 0.015442348085343838, 0.016272440552711487, -0.0010590262245386839, 0.01596939004957676, -0.0009972633561119437, -0.016364673152565956, 0.005929229315370321, 0.04993728548288345, 0.017642751336097717, 0.027089988812804222, -0.013518642634153366, -0.00019671452173497528, -0.009157365188002586, -0.011496116407215595, 0.00377494259737432, 0.013768987730145454, -0.004779617302119732, 0.01569269225001335, -0.02155604213476181, -0.005902877077460289, -0.0070689585991203785, 0.019764097407460213, -0.019302934408187866, 0.01853872276842594, 0.01428285427391529, 0.0034389528445899487, -0.010619908571243286, -0.03046306222677231, 0.02035702019929886, -0.00642003770917654, -0.008426093496382236, -0.003471893025562167, 0.005583357531577349, 0.0030881401617079973, -0.004726913291960955, 0.02454700879752636, -0.025350747630000114, -0.02457336150109768, 0.004782911390066147, -0.015205178409814835, -0.005889700725674629, -0.01594303734600544, -0.0009667937410995364, -0.042716801166534424, -0.03307192400097847, 0.002818030770868063, -0.009335242211818695, -0.01216150727123022, -0.014823072589933872, 0.031200921162962914, -0.002918498357757926, -0.00608075363561511, -0.005813938565552235, 0.0062487488612532616, 0.016351496800780296, 0.020462429150938988, -0.006673676893115044, 0.009928165003657341, 0.009882048703730106, -0.01162128895521164, -0.01869683526456356, 0.005023374687880278, 0.00571841187775135, -0.006337686907500029, -0.010474971495568752, 0.004572094418108463, 0.017985329031944275, 0.014902128838002682, 0.009829344227910042, -0.022372957319021225, -0.01869683526456356, -0.017734983935952187, -0.0015457171248272061, 0.03481116145849228, -0.002804854651913047, -0.0156268123537302, 0.01598256640136242, -0.005675589665770531, 0.011015189811587334, -0.00504972692579031, 0.010204861871898174, 0.018143441528081894, 0.0037485903594642878, 0.013123360462486744, 0.016535962000489235, 0.0032396649476140738, 0.0017853567842394114, 0.013360529206693172, -0.0031886077485978603, -0.000567394308745861, -0.006495799869298935, 0.028539355844259262, 0.014019332826137543, -0.015495051629841328, -0.04493037983775139, 0.0031787254847586155, -0.003900115145370364, -0.04482497274875641, -0.018986709415912628, -0.02150333672761917, 0.011133774183690548, 0.00015996565343812108, -0.002977790543809533, 0.0031721375416964293, -0.0012986658839508891, -0.011338003911077976, 0.007556472904980183, 0.04503579065203667, -0.02290000021457672, 0.026431186124682426, -0.003946231212466955, -0.03135903552174568, -0.014730839990079403, 0.003580595599487424, -0.0006880376022309065, -0.003946231212466955, 0.010514499619603157, -0.024981819093227386, -0.0005056314985267818, 0.008070339448750019, 0.0018413549987599254, 0.0005509242182597518, -0.005481242667883635, -0.02457336150109768, 0.015363291837275028, -0.004473274108022451, -0.00536924647167325, -0.02716904506087303, -0.017879920080304146, -0.0011191420489922166, 0.006558386143296957, -0.012754430994391441, 0.0074313003569841385, 0.023980436846613884, 0.005797468591481447, 0.03325638547539711, -0.006532033905386925, 0.018051208928227425, -0.025153107941150665, -0.0021164054051041603, -0.0013332529924809933, 0.020884063094854355, 0.013676755130290985, -0.03156984969973564, -0.010132393799722195, 0.018130265176296234, 0.004213046748191118, -0.009190305136144161, 0.013676755130290985, 0.0230712890625, -0.004081286024302244, -0.016667721793055534, -0.003409306751564145, -0.011805754154920578, 0.012649022042751312, 0.0057546463795006275, 0.02301858551800251, 0.006617678329348564, 0.0032478999346494675, 0.02716904506087303, 0.007938578724861145, 0.01152905635535717, 0.008327272720634937, 0.016944419592618942, -0.016391023993492126, 0.025442980229854584, -0.018038032576441765, -0.0022333429660648108, -0.0017738277092576027, 0.020528309047222137, -0.0006559209432452917, 0.0011907868320122361, 0.008327272720634937, -0.009684407152235508, -0.0054878308437764645, -0.011193066835403442, -0.00020350843260530382, 0.009974281303584576, 0.0014460730599239469, 0.010870253667235374, -0.013288061134517193, -0.013215593062341213, 0.015429171733558178, -0.01598256640136242, -0.008188923820853233, 0.004871849901974201, -0.001737593556754291, 0.010250978171825409, 0.006077460013329983, -0.004048346076160669, -0.016456903889775276, 0.009322065860033035, 0.0069108461029827595, 0.007372008170932531, -0.016232911497354507, -0.03167526051402092, -0.019592808559536934, 0.007576236966997385, 0.0032083718106150627, 0.013848043978214264, -0.008379977196455002, -0.02890828624367714, 0.008162572048604488, -0.006433213595300913, 0.0024803942069411278, 0.001313488930463791, -0.013446173630654812, -0.009084896184504032, 0.03146444261074066, 0.01516565028578043, 0.0001386574876960367, -0.010916369967162609, 0.003361543407663703, -0.0054581849835813046, 0.020765477791428566, 0.010554027743637562, 0.0077936421148478985, -0.013110184110701084, 0.007655293680727482, 0.026642002165317535, -0.0172869972884655, 0.01018509827554226, 0.01727382093667984, 0.01890765316784382, -0.0019978208001703024, 0.019210701808333397, 0.025574741885066032, -0.0071348389610648155, 0.0015119534218683839, -0.04864602908492088, -0.003392836544662714, -0.01297842338681221, -0.0010392620461061597, -0.0003841646248474717, 0.006591326557099819, -0.01736605353653431, 0.021108055487275124, 0.023954086005687714, -0.03589159995317459, -0.011094246059656143, -0.01362405065447092, -0.009908400475978851, -0.01090978179126978, 0.0017277115257456899, 0.002643448067829013, -0.005158429499715567, 0.011476351879537106, -0.017840391024947166, 0.010336622595787048, -0.014888953417539597, -0.02027796395123005, -0.008814787492156029, -0.005039844661951065, -0.04493037983775139, -0.02898734249174595, -0.014585903845727444, 0.02308446541428566, -0.0028262657579034567, 0.004344807472079992, -0.010270742699503899, -0.03923831880092621, -0.011054717935621738, -0.002437571994960308, 0.01453319936990738, 0.010705552063882351, -0.00718754343688488, -0.0004957494093105197, -0.026444362476468086, 0.023664211854338646, -0.059977445751428604, 0.03283475339412689, -0.01578492484986782, 0.019144821912050247, -0.0010318505810573697, 0.010666023939847946, -0.007510357070714235, 0.028460299596190453, -0.020739125087857246, -0.02300540916621685, -0.003102963324636221, -0.018341081216931343, -0.01884177327156067, 0.0033137802965939045, 0.02458653599023819, -0.019750921055674553, -0.007194131147116423, -0.0018018268747255206, -0.014480494894087315, 0.01146976463496685, -0.005221015773713589, 0.03135903552174568, -0.026418009772896767, -0.000995616428554058, -0.012813722714781761, -0.013848043978214264, -0.028302187100052834, 0.020436076447367668, -0.012464556843042374, -0.009328654035925865, -0.011581760831177235, 0.014678136445581913, -0.00539889233186841, 0.019421519711613655, 0.01716841198503971, 0.009539471007883549, 0.04917307198047638, -0.016865363344550133, 0.028328539803624153, -0.037973418831825256, 0.002928380388766527, -0.012793959118425846, -0.0010145569685846567, -0.025429803878068924, 0.008439269848167896, -0.018512370064854622, -0.03209689259529114, -0.009163953363895416, 0.005230897571891546, -0.0037881184834986925, 0.011963866651058197, 0.048487916588783264, 0.02006714604794979, -0.0035081272944808006, 0.0007864463841542602, -0.010297094471752644, 0.0028377948328852654, 0.029804257676005363, 0.0005937464302405715, 3.5204797313781455e-05, -0.0316489078104496, 0.029567088931798935, 0.042822208255529404, -0.008584205992519855, 0.0008169159991666675, 0.011397295631468296, -0.002309105359017849, -0.0030041427817195654, 0.00545489089563489, -0.039607249200344086, -0.011805754154920578, 0.03272934630513191, -0.0035443613305687904, 0.0020982883870601654, 0.0017112414352595806, 0.013676755130290985, 0.010310270823538303, -0.022043555974960327, 0.0007666822639293969, -0.009012428112328053, 0.017550518736243248, -0.01856507547199726, 0.004110932350158691, -0.019013062119483948, -0.01567951776087284, -0.0017491226317360997, 0.036603108048439026, 0.02880287729203701, 0.011772814206779003, -0.009671231731772423, 0.005395598243921995, 0.03481116145849228, -0.01736605353653431, 0.013940276578068733, -0.017655925825238228, 0.003771648509427905, 0.025614269077777863, -0.013169476762413979, -0.014941656962037086, -0.0123327961191535, 0.0030189657118171453, 0.0007831523544155061, -0.025508861988782883, -0.027801496908068657, -0.038131531327962875, -0.0012616082094609737, -0.007352244108915329, -0.022702358663082123, 0.012675373815000057, 0.03030494786798954, 0.004809263627976179, 0.0012558436719700694, 0.011160126887261868, 0.007503768894821405, 0.007398360408842564, 0.01372945960611105, -0.00798469502478838, -0.006884493865072727, 0.0023568684700876474, -0.02330845780670643, 0.005336306057870388, 0.0031507264357060194, 0.02149016223847866, 0.0025940376799553633, -0.004390923772007227, -0.021292520686984062, 0.017655925825238228, 0.021951323375105858, 0.0001497748016845435, -0.009578999131917953, 0.005830408539623022, -0.0014938362874090672, 0.001006321981549263, -0.012102215550839901, -0.011713521555066109, 0.005586651619523764, 0.009051956236362457, 0.01371628325432539, -0.0026170958299189806, -0.012418440543115139, 0.005379128269851208, -0.0013876042794436216, -0.0057809981517493725, 0.00435468927025795, -0.008452445268630981, 0.004726913291960955, -0.012550201267004013, 0.056973304599523544, 0.018182968720793724, 0.030621174722909927, -0.0023288694210350513, -0.011779401451349258, -0.019223878160119057, 0.00135137012694031, 0.0043975114822387695, 0.004499625880271196, 0.0025050994008779526, 0.0018742951797321439, 0.00862373411655426, 0.012405265122652054, 0.005573475267738104, -0.03338814899325371, 0.012537025846540928, 0.0038968210574239492, -0.0014856013003736734, -0.0064496835693717, 0.0007304481114260852, 0.041162025183439255, -0.0010705552995204926, -0.027037285268306732, -0.010540851391851902, 0.0014930128818377852, 0.003827646840363741, -0.0014913658378645778, 0.0013785457704216242, 0.013044304214417934, 0.014296029694378376, 0.002468865131959319, 0.0027389745227992535, -0.0045984466560184956, -0.01861777901649475, 0.005468066781759262, 0.009236421436071396, 0.013136536814272404, 0.0013241944834589958, -0.005510888993740082, 0.008597382344305515, -0.0046939728781580925, -0.016325144097208977, 0.023571979254484177, -0.0013851338298991323, -0.000424928090069443, -0.0073654199950397015, 0.00463138660416007, -0.005346188321709633, 0.014045684598386288, -0.008874079212546349, -0.014757192693650723, -0.005991815589368343, -0.0033730724826455116, 0.032465822994709015, 0.020805006846785545, 0.0026335660368204117, 0.016865363344550133, -0.013913923874497414, -0.00652873981744051, -0.00652873981744051, -0.012767606414854527, -0.01437508687376976, 0.0009906754130497575, -0.0288555808365345, -0.026892347261309624, -0.013413233682513237, -0.011641053482890129, -0.004209752660244703, -0.0006110399845056236, -0.03644499555230141, 0.009822756052017212, -0.018512370064854622, -0.00041607540333643556, -0.014137917198240757, 0.0043283370323479176, 0.025442980229854584, 0.01902623660862446, 0.013689931482076645, 0.01587715744972229, 0.022228021174669266, 0.02027796395123005, 0.0008103279978968203, -0.016272440552711487, -0.0043052793480455875, 0.009091484360396862, -0.00936818215996027, 0.014757192693650723, -0.00863032229244709, 0.020501956343650818, -0.016140678897500038, -0.004084580112248659, -0.010916369967162609, -0.01749781332910061, 0.0031161392107605934, 0.005168311297893524, -0.0001475101598771289, 0.005649237893521786, -0.01757686957716942, 0.012952071614563465, -0.004153754562139511, 0.015613636933267117, 0.008261392824351788, -0.010501323267817497, 0.003541067475453019, 0.010481559671461582, 0.0026912111788988113, 0.028117721900343895, -0.0020044087432324886, -0.017590045928955078, 0.0023206344339996576, -0.004914672113955021, -0.021911796182394028, 0.006963550113141537, -0.0045325662940740585, -0.0203438438475132, 0.007648705504834652, 0.015363291837275028, -0.007167779374867678, -0.012616082094609737, -0.010988838039338589, -0.02290000021457672, -0.008491973392665386, -0.023519275709986687, -0.01604844629764557, 0.016641369089484215, 0.006077460013329983, -0.041188377887010574, 0.007964931428432465, 0.003537773387506604, -0.004364571534097195, -0.003880351083353162, 0.014862600713968277, 0.022465189918875694, -0.016298791393637657, -0.0038968210574239492, -0.005695353727787733, 0.02170097827911377, 0.007530121132731438, 0.01363722700625658, -0.02005396969616413, 0.016101151704788208, 0.023809147998690605, 0.0016107738483697176, 0.01740558072924614, -0.010046749375760555, -0.0028756761457771063, -0.0048982021398842335, -0.0228736475110054, 0.004572094418108463, -0.03001507557928562, 0.031148217618465424, -0.0433492511510849, 0.006798849441111088, -0.007233659271150827, -0.005589945241808891, 0.008485385216772556, -0.025100402534008026, 0.009480178356170654, -0.012655610218644142, 0.01218785997480154, 0.008676438592374325, 0.015508227981626987, -0.02178003452718258, -0.005372540559619665, -0.0007917991606518626, 0.014151093550026417, -0.01010604202747345, 0.010949309915304184, 0.01283348724246025, -0.006996490526944399, -0.009256185032427311, 0.011331415735185146, -0.0034949511755257845, -0.011107422411441803, -0.01896035671234131, -0.0015893627423793077, -0.018275201320648193, 0.011509292759001255, -0.007714585866779089, 0.03146444261074066, 0.005741470027714968, 0.007602589204907417, 0.009789816103875637, -0.001567128230817616, 0.010698964819312096, 0.001790297799743712, 0.026536595076322556, -0.023835500702261925, -0.018235674127936363, 0.015613636933267117, -0.0026615650858730078, 0.030752934515476227, -0.0008387388661503792, 0.003322015283629298, -0.01000063307583332, -0.013953451998531818, 0.00934841763228178, 0.01500753778964281, 0.018341081216931343, 0.00188747129868716, -0.010501323267817497, 0.009177128784358501, 0.012517261318862438, 0.0015490110963582993, 0.006650618743151426, -0.00340601266361773, -0.004743383266031742, -0.014309206046164036, -0.011673993431031704, 0.01017851009964943, -0.005889700725674629, -0.02010667510330677, -0.00402858154848218, 0.0003055199922528118, -0.0014921893598511815, 0.012438205070793629, 0.006084047723561525, -0.013136536814272404, -0.0019895858131349087, -0.009493354707956314, 0.002430983819067478, 0.0021476985421031713, -0.017748158425092697, 0.00934841763228178, 0.019342463463544846, -0.0010194979840889573, 0.02013302594423294, 0.0008160924771800637, 0.017590045928955078, 0.00046610328718088567, 0.012036334723234177, 0.006713205017149448, -0.006617678329348564, 0.02438889630138874, -0.00945382658392191, 0.01856507547199726, -0.0012006688630208373, -0.014809896238148212, 0.004549036268144846, 0.0009173835278488696, -0.036787573248147964, 0.002911910181865096, 0.003308839164674282, -0.006620972417294979, -0.0030239068437367678, -0.011746461503207684, -0.006858141627162695, 0.01154882088303566, -0.013116772286593914, -2.1295300030033104e-05, -0.0038441168144345284, -0.004476568195968866, 0.008656674064695835, 0.011067894287407398, 0.00873573124408722, -0.005023374687880278, -0.004845497664064169, 0.008656674064695835, 0.006156516261398792, -0.030700230970978737, 0.0005402186652645469, -0.002755444496870041, -0.008959723636507988, -0.0022102848161011934, 0.011061306111514568, 0.0035509495064616203, -0.02470512129366398, 0.024046318605542183, -0.007609177380800247, -0.003465305082499981, 0.017669102177023888, -0.008452445268630981, 0.019078942015767097, 0.021990852430462837, -0.007325891871005297, 0.00541206868365407, 0.009104660712182522, 0.004278927110135555, -0.005586651619523764, -0.00039095853571780026, 0.01502071414142847, 0.008781847544014454, -0.0019286464666947722, -0.008472209796309471, 0.002472159219905734, -0.012932307086884975, 0.012082451023161411, 0.006792261265218258, 0.005576769355684519, -0.0043349252082407475, 0.022399310022592545, -0.016496432945132256, -0.009131012484431267, -0.01308383233845234, 0.008459033444523811, 0.004740089178085327, -0.016180207952857018, -0.009598762728273869, 0.021002646535634995, -0.004348101560026407, 0.01081754919141531, -0.00572500005364418, -0.004749971441924572, -0.011726697906851768, 0.015508227981626987, 0.0031787254847586155, 0.0400288850069046, 0.030858343467116356, -0.009875460527837276, 0.00573158822953701, -0.0050563146360218525, -0.007240247447043657, -0.0027439154218882322, 0.00792540330439806, -0.02137157693505287, -0.006008285563439131, 0.0031507264357060194, 0.00800445955246687, 4.818785328097874e-06, 0.01569269225001335, -0.009763464331626892, -0.008267981000244617, 0.0068383775651454926, 0.018406962975859642, 0.011146950535476208, 0.0072995396330952644, 0.01603526994585991, 0.017879920080304146, 0.017682278528809547, -0.018327906727790833, 0.03720920532941818, -0.003356602508574724, -0.007609177380800247, -0.010751668363809586, -0.011120598763227463, 0.00011714344873325899, 0.0036794161424040794, -0.011041542515158653, -0.01087684091180563, 0.0018347670556977391, -0.008762083016335964, -6.155692972242832e-05, -0.016733601689338684, 0.0010680847335606813, 0.008775259368121624, 0.008287744596600533, 0.007055782712996006, 0.009170540608465672, -0.012945483438670635, 0.002343692583963275, 0.010758256539702415, -0.010507911443710327, 0.009928165003657341, -0.006568268407136202, -0.006067577749490738, 0.011100834235548973, 0.02875017374753952, 0.0010120865190401673, 0.0030222597997635603, 0.009710759855806828, -0.0036497698165476322, 0.01749781332910061, -0.01380851585417986, -0.017010299488902092, -0.006798849441111088, 0.014506847597658634, 0.0043349252082407475, -0.005968757439404726, -0.022241197526454926, -0.024876410141587257, 0.013676755130290985, -0.0014608962228521705, -0.01703665219247341, -0.0063409809954464436, -0.0200144425034523, 0.0004899849300272763, -0.021134408190846443, 0.018314730376005173, -0.0005875701317563653, -0.00789905060082674, 0.01861777901649475, -0.012023159302771091, 0.00782658252865076, -0.01007968932390213, -0.018130265176296234, -0.001315959496423602, 0.011944103054702282, 0.010567204095423222, -0.008683026768267155, 0.007457652594894171, -0.01570586860179901, -0.00934182945638895, 0.004944318439811468, -0.002546274568885565, -0.0009807932656258345, 0.019355639815330505, -0.0261281356215477, -0.009526294656097889, 0.008188923820853233, 0.0003625476674642414, 0.005784292239695787, -0.010850489139556885, 0.0080110477283597, 0.005115607287734747, 0.006294864695519209, -0.03473210707306862, 0.0027801496908068657, -0.0004817498556803912, 0.002277812222018838, -0.016957595944404602, 0.0031951956916600466, -0.00790563877671957, -0.02138475328683853, -0.00396270165219903, 0.020989470183849335, -0.004911378026008606, -0.003333544358611107, 0.008867491967976093, 0.011357767507433891, 0.005869936663657427, 0.03354626148939133, -0.0014864248223602772, -0.00234039849601686, 0.005701941903680563, 0.02437571994960308, 0.009065132588148117, 0.0465378612279892, 0.014493671245872974, -0.00034628345747478306, 0.01016533374786377, -0.013900748454034328, -0.023334810510277748, -0.010534264147281647, 0.0043052793480455875, -0.046564213931560516, -0.016272440552711487, 0.014309206046164036, -0.008030811324715614, 0.0013324295869097114, 0.011963866651058197, -0.0019171173917129636, -0.014032509177923203, -0.019592808559536934, 0.006588032469153404, 0.023611508309841156, 0.0020669952500611544, -0.001828178996220231, 0.0275906790047884, -0.001044203178025782, 0.006077460013329983, -0.004871849901974201, 0.016364673152565956, -0.009150777012109756, 0.008610558696091175, -0.006189456209540367, 0.006976725999265909, -0.006429919507354498, -0.0033862486016005278, 0.017537342384457588, -0.025522036477923393, 0.0011240830644965172, -0.0018891182262450457, 0.004614916630089283, 0.006393685471266508, -0.014335558749735355, -0.009592175483703613, 0.02467876859009266, 0.02175368182361126, -0.021411104127764702, -0.009611939080059528, -0.023927733302116394, 0.018103912472724915, 0.025429803878068924, -0.002569332718849182, 0.0011010249145328999, 0.02581191062927246, 0.021160759031772614, 0.008972899988293648, -0.016246087849140167, -0.010633083991706371, 0.00391329126432538, 0.0032890751026570797, -0.002870735013857484, 0.00654191616922617, 0.01592986285686493, 0.003518009325489402, 0.01591668650507927, 0.011146950535476208, 0.021187111735343933, -0.01583763025701046, 0.002211931860074401, 0.016562312841415405, 0.006301452871412039, 0.02297905646264553, -0.004549036268144846, -0.0015646576648578048, -0.002368397545069456, 0.025363923981785774, 0.001787003711797297, -0.019276581704616547, 0.009302301332354546, 0.00344883487559855, 0.0030914342496544123, -0.0034850691445171833, 0.007464240770787001, 0.020739125087857246, -0.0022794592659920454, 0.005593239329755306, 0.016140678897500038, 0.015126122161746025, 0.010949309915304184, -0.002618742873892188, -0.021292520686984062, 0.029224511235952377, 0.009737111628055573, -0.0008041516994126141, 0.005958875175565481, 0.002396396826952696, -0.004203164484351873, 0.010600144043564796, -0.01867048442363739, -0.030858343467116356, -0.011489528231322765, 0.020778654143214226, 0.0029893196187913418, -0.006304746959358454, 0.026365306228399277, 0.011891398578882217, -0.00048051460180431604, -0.002169109648093581, 0.004934436175972223, 0.022372957319021225, -0.019487399607896805, -0.014572727493941784, 0.01355817075818777, 0.006327805109322071, 0.01573222130537033, 0.023427043110132217, 0.019764097407460213, -0.006578150205314159, 0.022122612223029137, 0.00762235326692462, 0.004420569632202387, -0.031148217618465424, -0.0077672903425991535, -0.016417376697063446, 0.01080437283962965, 0.0035311852116137743, -0.02138475328683853, -0.019381990656256676, -0.0027883846778422594, -0.006624266505241394, -0.0021262874361127615, 0.00359377171844244, 0.019869506359100342, -0.014823072589933872, -0.004460097756236792, -0.006555092055350542, 0.006713205017149448, 0.013373705558478832, -0.011067894287407398, -0.024125374853610992, -0.013742635026574135, 0.02006714604794979, -0.008762083016335964, -0.000386635132599622, 0.0188813004642725, -0.005507594905793667, 0.015442348085343838, 0.0017227705102413893, -0.02039654739201069, -0.008834551088511944, -0.02316352166235447, 0.012062687426805496, -0.005445008631795645, -0.004809263627976179, -0.010362975299358368, -0.016219735145568848, 0.016562312841415405, 0.004908083938062191, 0.0006340981344692409, -0.0002853441401384771, -0.022504718974232674, 0.0003726355789694935, -0.019869506359100342, 0.002827912801876664, 0.012102215550839901, 0.008880667388439178, 0.005593239329755306, -0.013222181238234043, 0.028513003140687943, -0.026180841028690338, -0.026404833421111107, 0.000835856597404927, 0.0049673765897750854, 0.003214959753677249, 0.006739557255059481, -0.0006905081099830568, -0.019474223256111145, -0.007484004832804203, 0.0079122269526124, 0.0032478999346494675, -0.003051905892789364, 0.0029794375877827406, 0.012938895262777805, -0.01146976463496685, 0.0010713787050917745, -0.008801611140370369, 0.002402984770014882, -0.02474464848637581, 0.011028366163372993, -0.012596317566931248, 0.02722175046801567, 0.004295397084206343, 0.018314730376005173, -0.009862284176051617, 0.028407596051692963, 0.008327272720634937, -0.00544830271974206, 0.0002204932097811252, 0.0026945052668452263, 0.007016254588961601, -0.0025133343879133463, -0.0005488654715009034, 0.016101151704788208, -0.01736605353653431, -0.008445857092738152, -0.004588564392179251, 0.023492923006415367, -0.001880883239209652, 0.0045358603820204735, 9.882048470899463e-05, -0.004970670212060213, -0.020515132695436478, 0.016878539696335793, 0.0007917991606518626, -0.01453319936990738, -0.011199655011296272, 0.0020768772810697556, -0.014137917198240757, 0.0074971807189285755, 0.0004016640887130052, -0.009012428112328053, 0.008821375668048859, 0.019540103152394295, -0.0019451165571808815, 0.01889447681605816, -0.004749971441924572, 0.00013556935300584882, 0.025614269077777863, 0.004390923772007227, 0.024164902046322823, -0.00942747388035059, 0.00726659968495369, -0.011785989627242088, -0.01365040335804224, 0.01380851585417986, -0.017616398632526398, 0.022399310022592545, -0.002187226666137576, -0.008149395696818829, -0.018156617879867554, -0.002445806981995702, 0.016101151704788208, -0.006624266505241394, -0.0051221949979662895, 0.01733970083296299, -0.013360529206693172, -0.0012566671939566731, -0.0007794465636834502, -0.004914672113955021, 0.006364039145410061, -0.03860586881637573, 0.020501956343650818, 0.005425244569778442, 0.02171415463089943, 0.0034883629996329546, -0.010474971495568752, 0.01089660543948412, -0.01160811260342598, -0.016364673152565956, -0.018314730376005173, 0.016285615041851997, -0.019421519711613655, -1.7782540453481488e-05, 0.0012994894059374928, -0.00025652151089161634, -0.006930610164999962, -0.0037354142405092716, -0.018288377672433853, -0.019052589312195778, -0.004384335596114397, -0.019816800951957703, -0.016812657937407494, 0.007464240770787001, -0.01154882088303566, 0.009078308939933777, -0.012728078290820122, -0.013162888586521149, 0.004891613963991404, -0.024243958294391632, 0.003521303180605173, 0.006060989573597908, 0.0025363925378769636, -0.008933371864259243, -0.019368814304471016, 0.025074051693081856, 0.008834551088511944, -0.008821375668048859, -0.008327272720634937, 0.014493671245872974, -0.01594303734600544, 0.011884810402989388, -0.005968757439404726, -0.0008630322408862412, -0.020778654143214226, 0.023492923006415367, 0.008518326096236706, 0.0014584256568923593, 0.007707997690886259, 0.011502704583108425, -0.0017672396497800946, -0.005402186419814825, 0.019013062119483948, -0.007938578724861145, -0.02022525854408741, -0.0043349252082407475, 0.03554902225732803, 0.026786940172314644, -0.016707250848412514, -0.005988521501421928, -0.0078134061768651, 0.0006921551539562643, 0.0023140462581068277, 0.010231214575469494, 0.003952819388359785, 0.009150777012109756, 0.0013456055894494057, 0.002075230237096548, 0.008287744596600533, -0.009308889508247375, -0.022320253774523735, -0.011232594959437847, 0.0022102848161011934, 0.02137157693505287, -0.020949942991137505, -0.0021756975911557674, 0.0021822857670485973, 0.018038032576441765, 0.026338953524827957, -0.019869506359100342, -0.005277013871818781, 0.011357767507433891, 0.0129981879144907, -0.004364571534097195, -0.0006913316319696605, 0.007121663074940443, -0.0013563111424446106, 0.010639672167599201, 0.004232810810208321, 0.011726697906851768, -0.0074313003569841385, 0.0063409809954464436, 0.012220799922943115, 0.0011084364959970117, 0.026325777173042297, 0.0005521594430319965, -0.0078134061768651, -0.0012097274884581566, 0.033836133778095245, -0.008050575852394104, 0.005290189757943153, -0.01283348724246025, -0.0035608315374702215, -0.011153538711369038, 0.0036761220544576645, 0.002584155648946762, -0.022267548367381096, 0.0024095727130770683, 0.026286248117685318, -0.00861714594066143, -0.0049640825018286705, -0.01849919557571411, 0.01902623660862446, -0.020646892488002777, 0.009005839936435223, 0.015350115485489368, 0.009552646428346634, -0.011838694103062153, 0.030963752418756485, 0.004166930448263884, -0.002556156599894166, -0.00926936138421297, 0.006884493865072727, 0.010955898091197014, 0.001724417437799275, 0.01434873417019844, -0.017734983935952187, -0.008505149744451046, 0.0002439630770822987, 0.015231531113386154, -0.00726001150906086, 0.005395598243921995, -0.017629574984312057, -0.0019517046166583896, 0.015323762781918049, -0.016562312841415405, 0.026576122269034386, -0.007049194537103176, -0.003074964042752981, -0.0007255070377141237, 0.017866743728518486, 0.012135155498981476, 0.016325144097208977, -0.0038671749643981457, -0.004493038170039654, -0.0158244539052248, 0.007615765556693077, -0.0008263863273896277, 0.02586461417376995, -0.03628688305616379, -0.016904890537261963, 0.0143619105219841, 0.0068383775651454926, -0.00726659968495369, 0.004127402324229479, -0.00426904484629631, -0.007516944780945778, -0.002121346304193139, 0.006686852779239416, -0.01565316505730152, 0.022162141278386116, 0.0016190089518204331, 0.019289758056402206, 0.012075862847268581, -0.008867491967976093, -0.007022842299193144, 0.01516565028578043, 0.016219735145568848, 0.0014674841659143567, 0.011173303239047527, -0.015389643609523773, -0.000525807321537286, 0.014296029694378376, 0.021094879135489464, -0.005286896135658026, -0.018288377672433853, 0.0025050994008779526, -0.014243326149880886, -0.0024540419690310955, -0.00234039849601686, 0.005988521501421928, 0.014151093550026417, 0.028539355844259262, -0.01603526994585991, 0.020752301439642906, -0.00998745672404766, -0.013353941962122917, 0.02155604213476181, 0.0011026719585061073, 0.01006651297211647, 0.008781847544014454, 0.009822756052017212, -0.0059160529635846615, 0.013097008690237999, 0.006377215497195721, -0.007866110652685165, -0.022228021174669266, 0.005537241231650114, 0.0007329186191782355, 0.004140578210353851, -0.001362075679935515, 0.0032199008855968714, 0.0001414368161931634, -0.004621504805982113, 0.01993538625538349, 0.006258630659431219, 0.00544830271974206, 0.0022415779531002045, -0.004081286024302244, -0.008801611140370369, 0.016483256593346596, 0.017023475840687752, -0.007227071560919285, -0.010988838039338589, -0.012576553970575333, 0.014401438646018505, -0.013992981053888798, 0.008353625424206257, 0.019197525456547737, 0.007734349928796291, 0.014915305189788342, 0.021147584542632103, -0.022636478766798973, 0.012807134538888931, -0.026905523613095284, 0.028302187100052834, 0.039607249200344086, 0.004980552475899458, 0.007319303695112467, 0.007879287004470825, -0.0033796606585383415, 0.0011002013925462961, -0.0013324295869097114, -0.001665125135332346, 0.005751352291554213, -0.03278204798698425, -0.005076078698039055, -0.004611622542142868, 0.011838694103062153, -0.006452977657318115, 0.0018693541642278433, -0.01583763025701046, 0.00648591760545969, -0.021147584542632103, -0.0009742052643559873, 0.032334063202142715, -0.019250230863690376, 0.021173935383558273, -0.01732652448117733, -0.014994361437857151, 0.012418440543115139, 0.017972152680158615, 0.02023843489587307, 0.01885494776070118, 0.008854315616190434, -0.02461288869380951, -0.01892082951962948, -0.001828178996220231, -0.011239183135330677, 0.011871634051203728, -0.015468699857592583, 0.019144821912050247, -0.012029747478663921, -0.02475782483816147, -0.00614334037527442, -0.0029300274327397346, -0.004308572970330715, -0.012089039199054241, -0.004064816050231457, 0.002305811271071434, -0.00865008682012558, 0.008241628296673298, 0.002518275287002325, -0.002083465224131942, 0.009737111628055573, 0.0022284018341451883, -0.004117520060390234, -0.012965247966349125, -0.0011199654545634985, 0.0007679175469093025, 0.0018512370297685266, -0.00789246242493391, 0.002730739302933216, -0.004931142088025808, 0.009117837063968182, -0.002908616326749325, -0.0017293584533035755, 0.0015333645278587937, -0.02321622520685196, 0.007292951922863722, -0.010040161199867725, 0.023492923006415367, -0.004226222634315491, 0.021028999239206314, 0.00012640787463169545, 0.006103811785578728, -0.006663794629275799, 0.008149395696818829, 0.007095310837030411, 0.014836248941719532, -0.001661007641814649, 0.015033889561891556, 0.009888636879622936, 0.03486386686563492, 0.018222497776150703, -0.033757079392671585, -0.010494735091924667, -0.012728078290820122, -0.008090103976428509, 0.004983846563845873, 0.020620541647076607, 0.0010392620461061597, -0.0023288694210350513, 0.012859839014708996, 0.004522684030234814, -0.0011965513695031404, -0.0056920601055026054, 0.03012048453092575, -0.005336306057870388, -0.011074482463300228, -0.012029747478663921, -0.0067724972032010555, -0.013742635026574135, -0.01452002301812172, -0.005214427597820759, -0.0018067678902298212, -0.0004294573445804417, 0.011146950535476208, 0.006311335135251284, 0.005744764115661383, 0.007734349928796291, -0.024810530245304108, -0.008610558696091175, 0.0188813004642725, -0.0025446275249123573, 0.014757192693650723, -0.00783317070454359, -0.002747209509834647, -0.0034191887825727463, 0.005586651619523764, 0.0016725367167964578, 0.0029102633707225323, -0.0006279218359850347, -0.006004991475492716, 0.028539355844259262, 0.016456903889775276, 0.0029036751948297024, -0.0054186563938856125, 0.014757192693650723, -0.01160811260342598, 0.01145658828318119, -0.004015405662357807, -0.018314730376005173, -0.008478797972202301, -0.0072995396330952644, -0.01226032804697752, 0.01228668075054884, -0.018472842872142792, 0.0020785240922123194, -0.022083085030317307, 0.005596533417701721, -0.0011800812790170312, -0.018011679872870445, -0.005197957623749971, 0.018038032576441765, -0.021226640790700912, 0.006690146867185831, -0.005787586327642202, 0.032544881105422974, 0.016759954392910004, 0.002111464273184538, 0.022135788574814796, 0.01897353306412697, -0.0143619105219841, -0.0072731878608465195, 0.030621174722909927, -0.02174050733447075, 0.0087093785405159, -0.00435468927025795, 0.007754113990813494, 0.01442779041826725, 0.0004018699692096561, 0.01598256640136242, -0.01856507547199726, 0.008347037248313427, -0.009223245084285736, 0.013940276578068733, 0.02318987436592579, 0.024994995445013046, 0.008103279396891594, 0.022741887718439102, -0.004789499565958977, -0.01509977038949728, 0.0007110957521945238, -0.004624798893928528, -0.010402503423392773, -0.014190621674060822, 0.012154920026659966, 0.013268297538161278, -0.006891082040965557, 0.01720794104039669, 0.0009198540356010199, 0.019526928663253784, -0.00608075363561511, -0.00029769670800305903, -0.010376150719821453, 0.0054219504818320274, -0.0043316311202943325, -0.01752416603267193, 0.005524064879864454, 0.005738175939768553, -0.017866743728518486, 0.01848601922392845, 0.00023799267364665866, -0.013966628350317478, -0.0047631473280489445, -0.01081754919141531, -0.009835932403802872, -0.020725950598716736, -0.0011866693384945393, 0.019092118367552757, -0.014730839990079403, 0.02176685817539692, 0.0016659486573189497, 0.0009651467553339899, 0.00928253773599863, -0.005902877077460289, -0.007253423798829317, -0.0037881184834986925, -0.007931990548968315, 0.016615018248558044, 0.01081754919141531, -0.0004078403871972114, 0.002330516465008259, 0.004364571534097195, 0.007484004832804203, 0.00871596671640873, -0.009249597787857056, -0.00944723840802908, 0.0030222597997635603, -0.007148014847189188, -0.043823592364788055, 0.01573222130537033, -0.0036860040854662657, -0.016153855249285698, -0.0029893196187913418, -0.00015924510080367327, 0.013031127862632275, -0.016694074496626854, -0.00536265829578042, 0.01017851009964943, -0.0050859609618783, -0.004657738842070103, -0.03149079531431198, 0.0010285564931109548, 0.0028328539337962866, -0.005253955721855164, 0.03296651318669319, 0.0027570915408432484, 0.01574539765715599, 0.0022234609350562096, -0.010277330875396729, -0.009756876155734062, 0.008999251760542393, -0.002290988340973854, 0.00789246242493391, -0.019013062119483948, 0.0027916787657886744, -0.01860460266470909, 0.019724568352103233, -0.004944318439811468, 0.020923590287566185, 0.008419505320489407, -0.013531818054616451, 0.010442031547427177, 0.008215276524424553, 0.0030041427817195654, 0.0024952171370387077, -9.408533514942974e-05, 0.0012072569224983454, -0.002762032439932227, 0.0092759495601058, 0.0027043872978538275, 0.0114368237555027, 0.012102215550839901, -0.00018940592417493463, 0.019737744703888893, 0.0011142009170725942, 0.017800863832235336, -0.008030811324715614, 0.01442779041826725, -0.003325309371575713, 0.0003876645350828767, -0.014072037301957607, 0.014546375721693039, 0.006956961937248707, 0.0009470296208746731, -0.01585080660879612, -0.01889447681605816, -0.008347037248313427, -0.0257987342774868, -0.012411853298544884, -0.005428538657724857, -0.005217721685767174, 0.001987938769161701, 0.011594937182962894, -0.011904573999345303, -0.01079119648784399, -0.019619159400463104, -0.007516944780945778, -0.04166271537542343, 0.012846662662923336, -0.009882048703730106, -0.004021993838250637, 0.0038539988454431295, -0.010679200291633606, 0.005721705965697765, -0.011245771311223507, -0.018196145072579384, 0.007016254588961601, -0.018433313816785812, -0.03478481248021126, 0.0003701650712173432, 0.004542448092252016, -0.009750287979841232, -0.030647525563836098, 0.004357983358204365, -0.0065715620294213295, -0.0010022043716162443, -0.022333430126309395, -0.01517882663756609, 0.0025265105068683624, -0.011041542515158653, -0.0078134061768651, -0.010870253667235374, -0.01235914882272482, 0.023756444454193115, -0.017866743728518486, 0.0012698431964963675, 0.0008354448364116251, 0.011377532035112381, -0.01885494776070118, -0.0006505681667476892, -0.0031688434537500143, -0.00503655057400465, 0.00197146856226027, -0.007484004832804203, 0.013663578778505325, 0.02602272853255272, -0.0022992233280092478, 0.02454700879752636, 0.004180106334388256, 0.0021229933481663465, 0.008689614944159985, -0.004779617302119732, -0.005207839421927929, -0.015402819961309433, 0.0034191887825727463, 0.020594188943505287, -0.0028328539337962866, 0.008834551088511944, -0.004713736940175295, 0.005929229315370321, -0.0016420671017840505, -0.00718095526099205, -0.011996806599199772, 0.006156516261398792, 0.03491657227277756, 0.004677502904087305, 0.002473806031048298, -0.005158429499715567, 0.013782164081931114, -0.001295371912419796, -0.041082970798015594, 0.00011590819485718384, 0.002808148739859462, -0.02573285438120365, 0.00031787256011739373, -0.005744764115661383, 0.0024952171370387077, -0.014968009665608406, 0.002365103689953685, 0.01718158833682537, 0.00855126604437828, 0.0021229933481663465, -0.01598256640136242, -0.005807350389659405, 0.026839643716812134, 0.008880667388439178, 0.01739240624010563, -0.01852554641664028, 0.021266167983412743, -0.0022069907281547785, -0.011996806599199772, -0.02017255499958992, 0.010863665491342545, -0.023545628413558006, 0.02753797546029091, -0.01363722700625658, -0.022333430126309395, 0.019645512104034424, -0.008083515800535679, -0.03607606515288353, 0.002090053167194128, 0.0027109752409160137, 0.0027752085588872433, -0.003165549598634243, -0.01578492484986782, 0.007951755076646805, 0.0035443613305687904, 0.011232594959437847, 0.00649909395724535, -0.0028723820578306913, 0.01873636431992054, 0.002421101788058877, 0.038078825920820236, 0.02288682386279106, -0.011489528231322765, -0.0073654199950397015, -0.014243326149880886, -0.02898734249174595, 0.008953136391937733, 0.0061005181632936, -0.012009982950985432, -0.01089660543948412, 0.021252991631627083, -0.005767822265625, 0.013426410034298897, 0.0005352776497602463, -0.012767606414854527, 0.0010013809660449624, -0.002473806031048298, -0.020989470183849335, 0.002208637772127986, -0.004015405662357807, -0.01749781332910061, -0.002455689013004303, -0.0040351697243750095, 0.02184591442346573, 0.011074482463300228, 0.0008370918803848326, -0.019658688455820084, -0.017853567376732826, -0.014019332826137543, -0.007411536294966936, 0.02761703170835972, -0.010264154523611069, -0.03438952937722206, 0.011370943859219551, 0.0029926137067377567, 0.007036018650978804, 0.01235914882272482, -0.007121663074940443, 0.005230897571891546, -0.004809263627976179, 0.003117786254733801, -0.02751162275671959, 0.0076355296187102795, -0.001685712719336152, -0.010270742699503899, 0.009901812300086021, 0.019592808559536934, 0.005118900910019875, -0.009210068732500076, -0.0027916787657886744, -0.016812657937407494, 0.0031293153297156096, -0.015218354761600494, -0.01867048442363739, -0.011746461503207684, 0.0035970655735582113, -0.005263837985694408, 0.00617298623546958, 0.0005966286989860237, 0.007029430475085974, -0.0245338324457407, -0.0023074583150446415, 0.019421519711613655, 0.028539355844259262, -0.006176280323415995, 0.022030379623174667, -0.009025604464113712, 0.011845282278954983, 0.005020080599933863, -0.0020011148881167173, -0.010277330875396729, -0.01739240624010563, -0.001964880619198084, -0.005580063443630934, -0.006070871837437153, -0.013861220329999924, -0.025113578885793686, -0.018420137465000153, -0.003982465714216232, 0.014915305189788342, 0.009671231731772423, 0.004430451896041632, 0.0035443613305687904, -0.00926277320832014, -0.02756432816386223, -0.0037518844474107027, -0.008505149744451046, 0.021292520686984062, 0.004740089178085327, 0.019263407215476036, -0.018354257568717003, -0.01723429188132286, -0.010507911443710327, 0.0023667505010962486, -0.0028097957838326693, 0.0023008703719824553, -0.0038605870213359594, 0.008307509124279022, -0.002949791494756937, 0.0036662400234490633, 0.011845282278954983, 0.014124740846455097, 0.02329528145492077, -0.015139298513531685, 0.0016865362413227558, -0.012550201267004013, 0.006400273181498051, 0.0018644131487235427, 0.00341260083951056, 0.0037914125714451075, -0.028592059388756752, 0.03591795265674591, 0.007951755076646805, -0.00999404489994049, 0.011515880934894085, 0.01890765316784382, -0.002874029101803899, 0.013307825662195683, 0.009644879028201103, -0.002141110599040985, 0.03193878009915352, 0.0013052539434283972, 0.023519275709986687, -0.0014016039203852415, 0.015231531113386154, -0.013953451998531818, 0.00682520167902112, 0.014809896238148212, -0.0019237054511904716, -0.0019978208001703024, 0.0072007193230092525, 0.002134522423148155, -0.011344592086970806, 0.01744510978460312, -0.011687169782817364, -0.002821324858814478, 0.0053527760319411755, -0.01704982854425907, 0.012319620698690414, 0.02583826333284378, -0.023413866758346558, -0.0005109842750243843, 0.03570713475346565, -0.0015835983213037252, -0.01009945385158062, -0.0027801496908068657, -0.008478797972202301, 0.0275906790047884, 0.021345224231481552, 0.014915305189788342, 0.00753670884296298, 0.007016254588961601, -0.007233659271150827, 0.019276581704616547, 0.00391987944021821, -0.002752150408923626, -0.018354257568717003, 0.006564974319189787, -0.014717664569616318, 0.01857825182378292, 0.008913607336580753, 0.007655293680727482, 0.0033187211956828833, 0.015481876209378242, 0.01290595531463623, -0.010059925727546215, -0.018301554024219513, -0.0005262190825305879, -0.025153107941150665, -0.006996490526944399, -0.0027076813858002424, 0.0033384854905307293, 0.010949309915304184, 0.019105292856693268, 0.002330516465008259, 0.02313716895878315, -0.006354157347232103, -0.016839010640978813, -0.020515132695436478, 0.0026763880159705877, -0.0028904990758746862, -0.003524597268551588, 0.013979804702103138, 0.0014213679824024439, -0.005112313199788332, 0.00161571498028934, -0.007213895209133625, 0.002131228568032384, 0.017866743728518486, -0.010409090667963028, 0.0005838643410243094, 0.028196778148412704, -0.0020768772810697556, -0.002615448785945773, -0.0038572929333895445, -0.004776323214173317, 0.00025899201864376664, -0.02301858551800251, -0.04126743599772453, 0.00218063872307539, 0.004124108236283064, 0.012622670270502567, -0.019816800951957703, 0.00681861350312829], "c94bb528-4956-46d5-a4df-e650f74f362b": [-0.024034595116972923, 0.01429340336471796, -0.0032160156406462193, 0.014361144043505192, -0.022652672603726387, -0.02869519218802452, 0.009043456986546516, 0.041836995631456375, -0.019672058522701263, 0.01784304529428482, 0.010296669788658619, 0.08091014623641968, 0.024237819015979767, -0.019590768963098526, -0.01629854366183281, 0.02923712320625782, -0.00110418233089149, -0.003996733576059341, 0.023750081658363342, -0.00339722353965044, 0.06866253167390823, -0.007085734512656927, -0.033626753836870193, 0.017964979633688927, -0.014428885653614998, -0.014266306534409523, -0.008040886372327805, 0.02595844678580761, -0.029426798224449158, -0.008284754119813442, -0.009808932431042194, 0.007864758372306824, 0.012139231897890568, -0.00907055288553238, -0.001294704619795084, -0.019279159605503082, -0.008081531152129173, 0.011089242063462734, -0.009957963600754738, -0.029724858701229095, -0.03533383458852768, 0.017463693395256996, 0.006658964790403843, -0.014510175213217735, -0.04267698526382446, 0.03351837024092674, -0.020850755274295807, 0.021961713209748268, 0.02956227958202362, -0.003915444016456604, 0.01881851814687252, -0.007593793794512749, -0.01983463764190674, 0.006530256476253271, 0.0077292765490710735, -0.04224344342947006, 0.017477242276072502, 0.05722780525684357, -0.009456678293645382, -0.018466264009475708, 0.01643402688205242, -0.0035564154386520386, -0.014320499263703823, -0.026432635262608528, -0.02174494042992592, -0.02645973116159439, -0.002147397492080927, 0.0014767592074349523, -0.06454385817050934, -0.00033214379800483584, -0.033003535121679306, 0.022490093484520912, -0.011522785760462284, 0.011529560200870037, 0.005178818479180336, -0.028993254527449608, 0.02923712320625782, -0.0021219945047050714, -0.012484711594879627, 0.008149271830916405, 0.0027621493209153414, -0.021758489310741425, -0.00029255752451717854, -0.011346658691763878, 0.07787533849477768, 0.011007952503859997, -0.02654102072119713, -0.024793297052383423, -0.027679074555635452, -0.023533308878540993, 0.012979223392903805, 0.0022151388693600893, 0.011841170489788055, 0.015675324946641922, 0.015553390607237816, 0.0025538450572639704, 0.008813136257231236, 0.030456464737653732, 0.009165390394628048, 0.004345600958913565, 0.05495170131325722, 0.035523511469364166, -0.04099700227379799, 0.002403120743110776, -0.00877926591783762, -0.006906220223754644, -0.0005025553982704878, -0.00877926591783762, -0.0106353759765625, -0.014523723162710667, 0.002120301127433777, -0.049234338104724884, 0.02858680672943592, -0.016921764239668846, -0.040292493999004364, -0.00010521062358748168, -0.002003447385504842, -0.004067861940711737, -0.009023134596645832, -0.04939691722393036, 0.004281247034668922, 0.0431918203830719, -0.023059120401740074, 0.029074544087052345, -0.009057004936039448, 0.0009856350952759385, -0.0038307674694806337, 0.01254567876458168, 6.917016435181722e-05, -0.050128523260354996, 0.01990237832069397, 0.023587502539157867, 0.00883345864713192, 0.038097675889730453, 0.036065440624952316, -0.016962409019470215, 0.0205120500177145, 0.0431918203830719, -0.0031533550936728716, 0.03956088796257973, -0.05058916285634041, -0.00816282071173191, -0.018588198348879814, 0.018981097266077995, -0.0009068859508261085, -0.012444066815078259, -0.03752865269780159, 0.0018391748890280724, 0.004721565172076225, 0.04777112603187561, -0.04462793469429016, -0.06557352840900421, 0.012972448952496052, 0.013365347869694233, 0.004606404807418585, -0.007519278675317764, -0.013114705681800842, 0.029914535582065582, -0.009463452734053135, 0.028288744390010834, 0.02790939435362816, -0.03685123845934868, 0.016921764239668846, 0.000519914086908102, 0.039750564843416214, 0.014428885653614998, 0.026730695739388466, 0.012559227645397186, -0.025362323969602585, 0.020688176155090332, 0.02578231878578663, -0.012654065154492855, 0.009896996431052685, -0.018547553569078445, -0.00011198475112905726, 0.019130127504467964, 0.016786281019449234, 0.028071973472833633, 0.011712461709976196, -0.012701483443379402, -0.034304168075323105, 0.024075239896774292, 0.002653763396665454, -0.026337796822190285, -0.021650101989507675, -0.023858467116951942, 0.011366981081664562, 0.05571040138602257, 0.004518341273069382, -0.003925605211406946, -0.0004125865234527737, 0.03110678121447563, -0.011800525709986687, 0.01281664427369833, -0.028315842151641846, 0.002335379598662257, 0.011190854012966156, 0.00415592547506094, 0.009517645463347435, -0.0029552120249718428, -0.02988743782043457, -0.03609253838658333, -0.03340998291969299, 0.038016386330127716, -0.025606190785765648, -0.008792813867330551, -0.03880218788981438, -0.057878121733665466, -0.015458553098142147, -0.012410196475684643, 0.06459805369377136, -0.005280430428683758, -0.0002514893712941557, 0.013243413530290127, -0.005683490540832281, 0.008427010849118233, -0.010161187499761581, 0.034087397158145905, 0.0035835120361298323, 0.0004784225602634251, -0.013277284801006317, 0.013737925328314304, -0.02704230509698391, -0.018655939027667046, -0.05847424641251564, -0.015187587589025497, 0.00012256932677701116, 0.0032227898482233286, -0.012538905255496502, -0.009131520055234432, 0.04294795170426369, 0.002074575750157237, -0.027882296591997147, -0.02131139673292637, -0.02812616527080536, 0.0460098534822464, 0.02826164849102497, 0.001456436817534268, -0.01002570427954197, -0.012694709934294224, 0.03620092198252678, 0.008880877867341042, 0.04866531118750572, -0.007099282927811146, 0.004013668745756149, -0.027353916317224503, -0.004697855561971664, 0.00491124065592885, 0.01590564474463463, -0.019482383504509926, -0.02387201599776745, -0.022232677787542343, 0.04042797535657883, -4.104166873730719e-05, -0.03666156157851219, 0.04655178636312485, 0.0024996520951390266, -0.01925206184387207, 0.012864062562584877, -0.011576979421079159, 0.008664106018841267, 0.016596606001257896, 0.011583752930164337, 0.02484748885035515, 0.03915444016456604, 0.004765596706420183, 0.02155526541173458, -0.022056549787521362, 0.01968560740351677, 0.00415592547506094, -0.024292010813951492, 0.0011101097334176302, 0.03205515816807747, -0.01875077746808529, 0.00955151580274105, 0.01077763270586729, -0.011427948251366615, -0.028722288087010384, 0.02005140855908394, -0.00869120191782713, -0.012572775594890118, 0.016284996643662453, 0.02888486720621586, 0.05202527716755867, 0.023235248401761055, 0.01625789888203144, -0.008562494069337845, -0.024684909731149673, -0.04907175898551941, -0.027421656996011734, -0.009463452734053135, 0.008460882119834423, 0.02209719456732273, 0.01434759609401226, 0.010181509889662266, -0.0032041610684245825, 0.0003382828435860574, -0.05397622659802437, -0.05327171832323074, -0.035279642790555954, -0.0010059574851766229, 0.007282183971256018, 0.0005017085932195187, -0.01759917661547661, 0.0473104864358902, -0.015025008469820023, 0.057986509054899216, 0.0012176489690318704, -0.026148121803998947, -0.003522544866427779, 0.03460222855210304, -0.00793249998241663, 0.01734175905585289, -0.017206277698278427, 0.03874799236655235, -0.03533383458852768, -0.004206731449812651, 0.009951189160346985, 0.005497202277183533, -0.0416744165122509, -0.0009636192698962986, -0.01597338542342186, -0.05205237492918968, 0.008738621138036251, 0.042595695704221725, -0.01472694706171751, 0.01918432116508484, -0.014252758584916592, 0.0009365227306261659, -0.044790513813495636, 0.013135028071701527, -0.010506667196750641, -0.06833737343549728, 0.004342213738709688, -0.004995916970074177, -0.00915861688554287, -0.05053497105836868, -0.05646910518407822, -0.0021694134920835495, 0.02426491491496563, 0.0014759124023839831, 0.01716563291847706, -0.015458553098142147, 0.014266306534409523, 0.02242235280573368, 0.02589070424437523, 0.011028274893760681, 0.013229865580797195, -0.020146246999502182, 0.008406688459217548, 0.000814165105111897, -0.008792813867330551, 0.06757866591215134, 0.005375267937779427, 0.012030845507979393, -0.0017731271218508482, -0.005310914013534784, -0.004189796280115843, -0.025877157226204872, 0.0106895687058568, 0.04549502208828926, -0.027733266353607178, -0.01662370190024376, 0.012552453204989433, -0.02066108025610447, -0.0021219945047050714, -0.003309160005301237, 0.010350862517952919, -0.01537726353853941, -0.006357516162097454, -0.041620220988988876, 0.0009314421331509948, 0.015146942809224129, 0.01885916292667389, -0.03303063288331032, -0.009612482972443104, 0.03433126583695412, -0.013670183718204498, -0.04541373252868652, 0.017179179936647415, -0.030293885618448257, 0.002403120743110776, 0.00850830040872097, 0.014361144043505192, 0.009842803701758385, 0.01701660081744194, 0.009077327325940132, 0.006289775017648935, 0.04758145287632942, 0.020674629136919975, -0.047500163316726685, -0.00968022458255291, -0.01002570427954197, -0.031594518572092056, -0.006523482035845518, 0.005368493963032961, 0.004894305020570755, -0.04714790731668472, -0.011949555948376656, -0.0008103546570055187, -0.007207668852061033, -0.02782810479402542, 0.005873166024684906, -0.03099839575588703, 0.04703952372074127, -0.027286173775792122, -0.02079656347632408, -0.037149298936128616, 0.017368854954838753, -0.019197870045900345, 0.02869519218802452, 0.00782411452382803, 0.03492738679051399, 0.009050230495631695, -0.00595784280449152, -0.00636429013684392, 0.01301309373229742, 0.009524418972432613, -0.02570102922618389, -0.027733266353607178, 0.04010281711816788, 0.03424997627735138, -0.04156602919101715, -0.0019373997347429395, 0.006462514866143465, 0.021108172833919525, -0.004616566002368927, 0.02671714872121811, -0.0073837959207594395, 0.01025602500885725, -0.014740495011210442, -0.013419541530311108, 0.002635134616866708, -0.015607583336532116, 0.020810110494494438, 0.004765596706420183, 0.05836585909128189, 0.004779145121574402, 0.006306710187345743, -0.03238031640648842, -0.01177342887967825, -0.002931502414867282, 0.013351799920201302, 0.01929270662367344, -0.004633501172065735, 0.02263912558555603, -0.026771340519189835, -0.02448168769478798, 0.024129431694746017, 0.022910090163350105, 0.012030845507979393, 0.02333008497953415, 0.012606645934283733, -0.0033396435901522636, 0.026581665500998497, 0.009653127752244473, -0.045765988528728485, -0.01749078929424286, 0.006807995494455099, -0.06010003387928009, -0.006283000577241182, -0.017748206853866577, 0.02945389412343502, -0.031594518572092056, 0.0004398947348818183, -0.047093715518713, 0.01005957555025816, 0.03359965980052948, 0.008576042018830776, 0.01777530275285244, -0.020281730219721794, -0.003072065534070134, -0.010350862517952919, 0.05335300788283348, 0.03923572972416878, -0.03219063952565193, -0.02780100889503956, 0.012010523118078709, 0.0036173826083540916, -0.004304956179112196, 0.016203707084059715, -0.04408600553870201, -0.014591464772820473, 0.0392899252474308, -0.011441497132182121, 0.018114009872078896, 0.017003053799271584, -0.04934272542595863, 0.03126936033368111, -0.01961786486208439, 0.037989292293787, 0.01182762160897255, 0.006655577570199966, 0.020159795880317688, -0.022869445383548737, -0.021135268732905388, 0.0024014271330088377, -0.021948164328932762, -0.0008006168645806611, -0.048936277627944946, 0.008765717037022114, -0.004660598002374172, 0.029806148260831833, 0.005663168150931597, -0.009795384481549263, 0.01640693098306656, -0.04373374953866005, -0.012125683017075062, 0.009863126091659069, 0.019224965944886208, 0.0023218311835080385, -0.02220558002591133, -0.04354407265782356, 0.03143193945288658, -0.007377021946012974, 0.0012938578147441149, -0.012450841255486012, -0.003790122689679265, 0.030564850196242332, -0.004399794153869152, -0.005802037660032511, -0.01257955003529787, -0.005791876465082169, 0.007803791668266058, 4.614872523234226e-05, -0.013209543190896511, -0.008196691051125526, -0.04289375618100166, -0.019441738724708557, 0.0004970513982698321, -0.021826229989528656, 0.004813015460968018, -0.007302506361156702, -0.014266306534409523, -0.0011151903308928013, 0.01312147919088602, -0.0015123233897611499, -0.017504338175058365, 0.0045522116124629974, 0.003131339093670249, -0.005503976251929998, -0.011908911168575287, -0.0005059424438513815, -0.022259773686528206, -0.020579790696501732, -0.003956088796257973, -0.01875077746808529, 0.02711004763841629, -0.014754043892025948, -0.001369219971820712, -0.02700166031718254, 0.024034595116972923, -0.031459033489227295, -0.0025047326926141977, 0.021040432155132294, -0.006025583948940039, 0.027570687234401703, -0.027313271537423134, -0.031025491654872894, 0.01593274064362049, -0.02350621297955513, 0.015634680166840553, -0.0018290136940777302, 0.0011846250854432583, -0.012979223392903805, -0.013886955566704273, -0.009998608380556107, 0.0001485015091020614, 0.0024437655229121447, 0.027679074555635452, 0.030077114701271057, -0.014496627263724804, 0.045982759445905685, -0.0226797703653574, -0.014212113805115223, 0.02912873588502407, -0.02066108025610447, -0.028099069371819496, -0.035523511469364166, 0.002138929907232523, 0.003453110111877322, -0.014320499263703823, 0.01643402688205242, -0.019672058522701263, 0.02076946571469307, 0.015038557350635529, -0.03674285113811493, -0.02141978219151497, -0.015363714657723904, -0.0091179721057415, 0.0068892850540578365, 0.03340998291969299, 0.0061034862883389, -0.011563430540263653, -0.01571596972644329, 0.00650654686614871, -0.007051863707602024, 0.01636628620326519, 0.004477696493268013, 0.010526989586651325, 0.02823455259203911, 0.04048217087984085, 0.03154032304883003, 0.023343633860349655, -0.01773465797305107, 0.020430760458111763, -0.00752605265006423, 0.005761392880231142, -0.04254150390625, 0.011983426287770271, -0.003387062344700098, -0.009957963600754738, 0.026866178959608078, -0.0007743671303614974, 0.024278463795781136, 0.020498501136898994, 0.00902990810573101, 0.02174494042992592, 0.014645657502114773, -0.018032720312476158, 0.0028823900502175093, -0.015174039639532566, 0.029914535582065582, -0.03286805376410484, 0.018032720312476158, -0.0029298090375959873, 0.008948618546128273, 0.012965674512088299, -0.006990896537899971, -0.009673450142145157, 0.009341518394649029, 0.019333351403474808, 0.01701660081744194, -0.014117276296019554, 0.024535879492759705, 0.009951189160346985, -0.015201135538518429, 0.024562977254390717, -0.021677199751138687, 0.020037861540913582, -0.0196449626237154, -0.02047140523791313, -0.029941631481051445, 0.02956227958202362, -0.01593274064362049, -0.005476879887282848, 0.003661414375528693, 0.016569508239626884, 0.014957267791032791, 0.018466264009475708, -0.02700166031718254, 0.004257537424564362, -0.0031669032759964466, 0.017964979633688927, 0.015743065625429153, -0.022761059924960136, 0.02270686626434326, 0.021352041512727737, 0.008989263325929642, 0.007817340083420277, 0.022625576704740524, 0.001122811227105558, 0.008806361816823483, 0.03872089833021164, 0.004240602254867554, 0.018628843128681183, 0.05180850625038147, -0.015119845978915691, 0.021135268732905388, 0.03544222190976143, 0.0226797703653574, -0.009957963600754738, 0.05346139147877693, 0.00444382568821311, 0.004321891814470291, -0.0037833487149327993, 0.003962862771004438, -0.012369551695883274, 0.007017993368208408, 0.002592796226963401, 0.014862429350614548, -0.028966156765818596, -0.04703952372074127, -0.002453926717862487, 0.0038815734442323446, -0.008305076509714127, -0.005683490540832281, 0.009280551224946976, 0.01287083700299263, 0.01126536913216114, 0.017856592312455177, -0.00633719377219677, -0.00659799762070179, 0.0228965412825346, 0.01690821535885334, 0.00749895628541708, -0.011136661283671856, 0.004941723775118589, 0.021717844530940056, -0.0213791374117136, -0.026012638583779335, 0.0046470495872199535, -0.0029552120249718428, -0.008501526899635792, 0.001595306326635182, 0.028071973472833633, -0.027665525674819946, -0.02628360316157341, 0.0007134000188671052, -0.02782810479402542, 0.02815326303243637, 0.004718177951872349, 0.020755918696522713, 0.007099282927811146, -0.017829496413469315, 0.00662509398534894, -0.007593793794512749, 0.007532826624810696, -0.011319562792778015, 0.04628081992268562, 0.022043002769351006, 0.07744179666042328, -0.00502978777512908, -0.029535183683037758, -0.05419299751520157, 0.010736987926065922, -0.012809869833290577, 0.029480990022420883, -0.03544222190976143, 0.003739316947758198, 0.01305373851209879, -0.012328906916081905, 0.007261861581355333, 0.0011770041892305017, -0.03804348409175873, 0.008711524307727814, -0.03438545763492584, 0.004836725071072578, 0.061021316796541214, -0.04365245997905731, -0.01434759609401226, 0.008738621138036251, -0.0014166388427838683, 0.00650654686614871, -0.028099069371819496, 0.009849577210843563, 0.0191030316054821, 0.006747028324753046, 0.02513200230896473, -0.009002812206745148, 0.02645973116159439, -0.036580272018909454, 0.03384352847933769, -0.0010288201738148928, -0.009686998091638088, -0.04267698526382446, 0.022002357989549637, 0.008169594220817089, -0.032434508204460144, 0.017978526651859283, 0.0038477028720080853, 0.02617521770298481, -0.013561797328293324, -0.026378441601991653, -0.0026571503840386868, 0.002211751649156213, -0.002342153573408723, 0.05048077926039696, 0.031133877113461494, -0.003195693250745535, 0.025050712749361992, 0.008562494069337845, 0.018344329670071602, 0.04278537258505821, -0.019387545064091682, 0.009693772532045841, 0.013473734259605408, 0.008562494069337845, -0.03042936883866787, -0.019333351403474808, 0.014550819993019104, -0.02902035042643547, 0.010276347398757935, 0.013155350461602211, 0.031215166673064232, -0.00752605265006423, 0.005273655988276005, 0.020593339577317238, -0.025660384446382523, 0.0004206308221910149, 0.0061271958984434605, -0.009314421564340591, 0.00926700234413147, 0.01885916292667389, 0.017246922478079796, 0.01287083700299263, -0.0034683519043028355, -0.012742128223180771, 0.03129645809531212, 0.0099308667704463, 0.0017019988736137748, 0.0015893790405243635, 0.02869519218802452, 0.03427707031369209, 0.020430760458111763, -0.006679287180304527, 0.005243172403424978, 0.007336377166211605, -0.029155833646655083, -0.006367677357047796, -0.03148613125085831, 0.017978526651859283, -0.018398523330688477, 0.02079656347632408, -0.04403181001543999, 0.014117276296019554, 0.021826229989528656, 0.013331477530300617, 0.024562977254390717, 0.016068223863840103, 0.01614951342344284, 0.010242477059364319, 0.00025911026750691235, 0.032136447727680206, -0.005923971999436617, 0.0013472040882334113, 0.022991379722952843, 0.005595427006483078, 0.02440039813518524, 0.01564822904765606, 0.05199818313121796, 0.004951884970068932, -0.01629854366183281, 0.03601124882698059, -0.006757189519703388, 0.0012235762551426888, -0.0091179721057415, -0.0010525296675041318, -0.030077114701271057, 0.026310700923204422, -0.013080835342407227, -0.02216493710875511, -0.04034668579697609, 0.011983426287770271, 0.01564822904765606, 0.015174039639532566, 0.032217737287282944, 0.009314421564340591, 0.04126796871423721, 0.014469530433416367, 0.01586499996483326, -0.0011702300980687141, 0.029724858701229095, 0.004714790731668472, -0.01039828173816204, 0.015770161524415016, 0.002450539730489254, 0.03303063288331032, 0.006896059028804302, -0.04403181001543999, -0.030483560636639595, 0.004277859814465046, -0.04506147652864456, 0.001150754396803677, -0.000946683925576508, -0.015390811488032341, -0.029155833646655083, 0.0044743092730641365, -0.017206277698278427, 0.021148817613720894, -0.012213747017085552, 0.015797259286046028, 0.013155350461602211, 0.02066108025610447, -0.01516049075871706, 0.005873166024684906, -0.050562068819999695, -0.0018036107067018747, -0.03042936883866787, -0.021175913512706757, 0.03525254502892494, 0.03666156157851219, -0.008135723881423473, 0.021582361310720444, -0.058420050889253616, -0.012118909507989883, 0.016650797799229622, 0.01011376827955246, -0.007783469278365374, -0.027638429775834084, 0.009781836532056332, -0.002923034830018878, 0.0050636581145226955, -0.009348291903734207, -0.022381708025932312, 0.005033174529671669, 0.020688176155090332, 0.013832762837409973, -0.002923034830018878, -0.021866874769330025, 0.005368493963032961, -0.024346204474568367, -0.00897571537643671, -0.00418302183970809, 0.015025008469820023, -0.022056549787521362, -0.00401028199121356, 0.04950530454516411, -0.0013107931008562446, 0.043246012181043625, 0.01896754838526249, 0.028640998527407646, -0.03514415770769119, 0.021907519549131393, 0.0011016420321539044, 0.003002630779519677, 0.003905282821506262, 0.004176247864961624, -0.0006913841352798045, 0.013263735920190811, -0.003891734639182687, -0.009395711123943329, 0.016854021698236465, 0.026202313601970673, -0.009653127752244473, -0.017246922478079796, 0.0006016269326210022, -0.0022761058062314987, 0.020213987678289413, 0.008494752459228039, -0.02645973116159439, 0.008623461239039898, 0.021948164328932762, -0.020891400054097176, 0.011651494540274143, -0.009192487224936485, 0.0068283178843557835, -0.0021033657249063253, -0.060696158558130264, 0.010330540128052235, 0.0018324007978662848, -0.06313484162092209, 0.008264431729912758, -0.030022921040654182, 0.004975594580173492, -0.030700333416461945, -0.016745636239647865, 0.027313271537423134, -0.02834293805062771, 0.015228232368826866, 0.02228686958551407, 0.040319591760635376, 0.024061691015958786, -0.024034595116972923, 0.01434759609401226, 0.011116338893771172, 0.004467535298317671, 0.005155108869075775, 0.007268636021763086, -0.00508398050442338, 0.009260228835046291, 0.00908410083502531, -0.025253936648368835, 0.016813376918435097, -0.01968560740351677, 0.005266882013529539, -0.04088861867785454, 0.031242262572050095, 0.002010221593081951, 0.004982368554919958, -0.010730213485658169, -0.024075239896774292, 0.04289375618100166, 0.0014682915061712265, -0.0022151388693600893, 0.003956088796257973, -0.028532613068819046, -0.00997151155024767, 0.004264311399310827, -0.03219063952565193, 0.011881815269589424, -0.0043354397639632225, 0.024752652272582054, -0.023235248401761055, 0.0099308667704463, -0.012985996901988983, -0.005012852139770985, 0.012342454865574837, 0.013649861328303814, 0.0040915715508162975, 0.015499197877943516, -0.006083163898438215, 0.008894425816833973, -0.018683036789298058, 0.030944202095270157, -0.021189462393522263, -0.008298303000628948, -0.02098623849451542, -0.01499791257083416, -0.030727429315447807, -0.014916623011231422, -0.026148121803998947, -0.03403320163488388, 0.029182929545640945, -0.0011448271106928587, 0.00496543338522315, -0.026486827060580254, 0.001039828173816204, 0.008765717037022114, -0.022882994264364243, -0.03238031640648842, 0.0038172192871570587, 0.011421174742281437, -0.03232612460851669, 0.008860555477440357, 0.006252516992390156, 0.008935070596635342, -0.06925865262746811, -0.019224965944886208, 0.03479190543293953, 0.008386366069316864, -0.01553984172642231, 0.0009703933610580862, -0.06405612081289291, 6.573017890332267e-05, 0.010411829687654972, -0.0234384723007679, -0.011292465962469578, -0.006035745143890381, 0.02580941468477249, -0.021501071751117706, -0.015133394859731197, 0.032244835048913956, -0.005517524667084217, 0.0005258414312265813, -0.020932044833898544, -0.0015368795720860362, -0.03831445053219795, -0.0006655577453784645, 0.0032312574330717325, 0.030483560636639595, -0.022733962163329124, -0.03129645809531212, 0.010499893687665462, 0.031052587553858757, -0.015336618758738041, 0.018791422247886658, -0.009219584055244923, -0.014252758584916592, -0.016108868643641472, 0.016461122781038284, 0.005114464089274406, 0.01918432116508484, -0.00820346549153328, -0.010134090669453144, -0.005907036829739809, 0.027990683913230896, -0.0002764689561445266, 0.018235944211483, -0.0022947348188608885, 0.01045247446745634, -0.014957267791032791, 0.01925206184387207, -0.025335226207971573, 0.0009365227306261659, -0.024454589933156967, 0.016230802983045578, 0.031350649893283844, -0.02007850632071495, -0.00491124065592885, -0.01299954578280449, 0.010228928178548813, 0.019455285742878914, -0.0031296457163989544, 0.030591947957873344, -0.007864758372306824, 0.0017290953546762466, -0.011658268980681896, 0.01762627251446247, 0.020633984357118607, -0.0012862369185313582, 0.008725072257220745, -0.009253454394638538, -0.0036817367654293776, 0.004379471763968468, -0.005107690114527941, -0.0022371546365320683, 0.02188042365014553, 0.007227991241961718, 0.008277980610728264, -0.018154654651880264, 0.008393140509724617, 0.01961786486208439, 0.007654760964214802, 0.003905282821506262, 0.00700444495305419, -0.0191030316054821, 0.02689327485859394, -0.0009780143154785037, 0.014090179465711117, -0.01961786486208439, -0.02389911189675331, 0.007058638148009777, -0.0037291557528078556, 0.020457856357097626, 0.03032098151743412, -0.004122055135667324, -0.014483078382909298, 0.002013608580455184, -0.010838599875569344, 0.02484748885035515, 0.03284095600247383, 0.0009407565812580287, 0.0007887621759437025, 0.026473280042409897, -0.011217950843274593, -0.0019424802158027887, -0.018574649468064308, -0.004423503298312426, 0.016230802983045578, 0.012430518865585327, -0.02274751104414463, -0.03097129799425602, -0.01106891967356205, -0.008758943527936935, 0.016447575762867928, 0.0006092478288337588, 0.03200096637010574, -0.0020661079324781895, 0.015309521928429604, 0.015228232368826866, -0.007424440700560808, 0.023777177557349205, -0.001202407176606357, -0.017978526651859283, -0.0196449626237154, -0.018547553569078445, -0.0026944081764668226, -0.01755853183567524, 0.029372604563832283, -0.0015792178455740213, 0.009145068004727364, -0.007404118310660124, 0.00908410083502531, 0.007905403152108192, 0.005937520414590836, -0.001099948538467288, -0.019753348082304, 0.011455045081675053, -0.0397234670817852, 0.022192033007740974, -0.005683490540832281, -0.003786735702306032, -0.0044472129084169865, -0.016989504918456078, 0.013202768750488758, -0.018371425569057465, 0.003959476016461849, 0.013751473277807236, -0.021826229989528656, -0.008853781037032604, -0.014076631516218185, -0.006008648779243231, 0.03227192908525467, -0.012003748677670956, 0.016718540340662003, 0.023560406640172005, 0.02484748885035515, -5.149393109604716e-05, 0.030917106196284294, -0.00084634218364954, -0.014564367942512035, -7.986058335518464e-05, 0.042270537465810776, -0.004017055965960026, 0.033653851598501205, -0.03601124882698059, -0.022828800603747368, -0.013236640021204948, -0.011556657031178474, 0.01903529092669487, -0.004799467511475086, -0.0032498864457011223, 0.016217254102230072, -0.006665738765150309, -0.001243898645043373, -0.017287567257881165, 0.01096053421497345, -0.00624574301764369, 0.018588198348879814, -0.0032160156406462193, -0.010012156330049038, -0.011705687269568443, -0.023993950337171555, -0.007769920863211155, 0.0006211025756783783, -0.010093445889651775, -0.013439863920211792, 0.01467275433242321, 0.019441738724708557, -0.009890221990644932, 0.024603620171546936, -0.008481204509735107, -0.024644264951348305, 0.013873407617211342, -0.02769262157380581, 0.005791876465082169, -0.008840233087539673, 0.0025724738370627165, -0.04527825117111206, -0.048042092472314835, 0.010106993839144707, -0.01853400468826294, -0.0191030316054821, -0.0030839203391224146, 0.025402966886758804, -0.0014589771162718534, -0.00973441731184721, -0.0230049267411232, 0.017788851633667946, 0.023302989080548286, 0.013643086887896061, -0.0034209329169243574, -0.004680920392274857, 0.01903529092669487, -0.023302989080548286, -0.0018916743574663997, -0.0037223815452307463, 0.017856592312455177, -0.02988743782043457, -0.008725072257220745, 0.009531193412840366, 0.014577916823327541, 0.011793751269578934, 0.029751956462860107, -0.02559264376759529, -0.012396648526191711, 0.006360902916640043, 0.005615749396383762, 0.021108172833919525, 0.002404814353212714, -0.0019780443981289864, 0.026866178959608078, 0.0008950312039814889, 0.004033991135656834, 0.019550124183297157, 0.01662370190024376, 0.004149151500314474, 0.015309521928429604, 9.086853242479265e-05, -0.012836966663599014, -0.004999304190278053, -0.0027621493209153414, 0.004626727197319269, 0.002885777037590742, -0.007587019819766283, -0.010560860857367516, 0.015797259286046028, 0.013040190562605858, -0.028315842151641846, -0.05310913920402527, 0.031377747654914856, -0.02209719456732273, -0.013812440447509289, -0.01316212397068739, -0.0040306043811142445, 0.012877611443400383, -0.005249946843832731, -0.002797713503241539, 0.0004170320462435484, -0.0181275587528944, -0.001048295758664608, -0.009781836532056332, 0.049586594104766846, -0.017572078853845596, 0.025511354207992554, 0.0007625124417245388, -0.03340998291969299, 0.0036783497780561447, -0.0023269117809832096, 0.005883327219635248, -0.001591919339261949, 0.023059120401740074, -0.030050016939640045, 0.002662230981513858, 0.006079777143895626, 0.007797017693519592, -0.01730111427605152, -0.004403180908411741, -0.012857289053499699, 0.018655939027667046, 0.009863126091659069, 0.009937641210854053, -0.012911481782793999, -0.026093928143382072, -0.005653006955981255, -0.00023264884657692164, 0.012938578613102436, 0.012213747017085552, 0.010188283398747444, -0.004250763449817896, 0.03251579776406288, 0.009849577210843563, 0.0005309220287017524, -0.01129924040287733, 0.009998608380556107, -0.0009424501331523061, 0.02750294655561447, 0.013704054057598114, -0.01983463764190674, 0.006526869256049395, -0.0013395831920206547, -0.004674145951867104, 0.005378655157983303, 0.009192487224936485, -0.005304139573127031, -0.013737925328314304, -0.03414158895611763, -0.0219210684299469, -0.023275893181562424, 0.005104302894324064, 0.020322374999523163, 0.012410196475684643, -0.006462514866143465, 0.008819910697638988, 0.01684047468006611, 0.016393382102251053, 0.01191568560898304, 0.017978526651859283, 0.007959596812725067, -0.01853400468826294, 0.029914535582065582, 0.0037325427401810884, -0.0007718268316239119, -0.0008573501836508512, -0.0064659020863473415, 0.00429818220436573, -0.011075694113969803, -0.008894425816833973, -0.010621828027069569, -0.009057004936039448, -0.028288744390010834, -0.0002544530725572258, 5.736836828873493e-05, -0.01788369007408619, -0.0005736837047152221, -0.003637704998254776, -0.010235702618956566, 0.004975594580173492, -0.013805666007101536, -0.0011185773182660341, -0.006418483331799507, -0.012775999493896961, 0.014740495011210442, 0.010892792604863644, 0.010974082164466381, -0.00703154131770134, 0.004728339146822691, 0.01946883462369442, 0.002608038019388914, -0.007634438574314117, -0.021081076934933662, -0.02018689177930355, 0.01738240383565426, -0.004006894771009684, 0.02322169952094555, -0.006540417671203613, -0.024427494034171104, 0.015472101047635078, -0.0024200561456382275, -0.007180572021752596, 0.02174494042992592, -0.019333351403474808, 0.005890101660043001, 0.006296548992395401, 0.009775062091648579, -0.0067165447399020195, 0.005124625284224749, 0.0204036645591259, -0.0071331532672047615, 0.025402966886758804, 0.018114009872078896, 0.023262344300746918, -0.009165390394628048, 0.005219463258981705, 0.01440178882330656, -0.01153633464127779, 0.009341518394649029, 0.00621864665299654, 0.005473492667078972, 0.0035360930487513542, 0.02328944019973278, 0.02246299758553505, -0.00758024537935853, 0.004220279864966869, -0.012213747017085552, -0.010601505637168884, -0.02725907787680626, -0.003878186456859112, 0.017206277698278427, -0.005385429132729769, -8.86457710294053e-05, 0.02923712320625782, 0.03508996590971947, -0.022300418466329575, 0.004609792027622461, -0.022950734943151474, -0.0007722502341493964, -0.013033416122198105, -0.0005182205350138247, 0.0011871653841808438, -0.012267939746379852, 0.005822360049933195, -0.009477000683546066, -0.0030906943138688803, -0.016447575762867928, -0.01043892651796341, 0.009632805362343788, 0.007207668852061033, -0.05053497105836868, -0.025281034409999847, -0.01043892651796341, 0.01020183227956295, -0.0043625361286103725, -0.015201135538518429, -0.0023116699885576963, -0.020539145916700363, -0.015445004217326641, -0.007363473530858755, 0.017680466175079346, 0.007844436913728714, -0.021189462393522263, -0.00216263928450644, -0.029535183683037758, 0.022449448704719543, -0.058528438210487366, 0.04023830220103264, -0.007783469278365374, 0.005659781396389008, 0.004711403977125883, 0.02847842127084732, 0.0006266065174713731, 0.015187587589025497, -0.006591223180294037, -0.029535183683037758, 0.0009077326976694167, -0.02671714872121811, -0.01781594753265381, 0.003922218456864357, 0.022761059924960136, -0.029426798224449158, -0.006492998450994492, -0.003637704998254776, 0.0055649434216320515, 0.008731846697628498, 0.010120542719960213, -0.003549641463905573, -0.04603695124387741, 0.012261166237294674, 0.00572413532063365, -0.012830192223191261, -0.03427707031369209, -0.0018154653953388333, -0.02632424794137478, -0.032244835048913956, -0.007390569895505905, 0.016217254102230072, -0.0030703721567988396, 0.009686998091638088, 0.009869899600744247, 0.0053922031074762344, 0.029914535582065582, -0.012423744425177574, 0.036065440624952316, -0.03519835323095322, -0.003126258496195078, -0.02469845861196518, 0.006472676061093807, -0.012857289053499699, 0.019590768963098526, -0.021081076934933662, -0.009747965261340141, -0.01272858027368784, 0.021257203072309494, -0.006963800173252821, 0.02133849263191223, 0.03227192908525467, 0.007316054776310921, -9.727219730848446e-05, 0.0221378393471241, -0.02177203632891178, -0.003117790911346674, 0.027489397674798965, -0.020932044833898544, 0.002403120743110776, -0.026839083060622215, 0.02411588467657566, 0.017097890377044678, -0.005676716566085815, -0.004907853435724974, 0.007803791668266058, 0.00029827316757291555, -0.012281488627195358, 0.004687694367021322, -0.03522544726729393, -0.025104906409978867, 0.02793649025261402, 0.0037935099098831415, 0.013704054057598114, -0.018154654651880264, 0.011116338893771172, 0.017897237092256546, -0.00930087361484766, 0.017572078853845596, 0.01391405239701271, -0.0013912358554080129, -0.0022015904542058706, 0.012660839594900608, -0.013704054057598114, -0.01907593570649624, -0.012044393457472324, 0.03340998291969299, 0.00953796785324812, 0.031215166673064232, -0.008386366069316864, -0.006662351544946432, 0.03359965980052948, -0.004765596706420183, -0.0012870837235823274, -0.018804971128702164, -0.01444243360310793, 0.019807539880275726, -0.030917106196284294, -0.026920372620224953, -0.003210935043171048, 0.009151842445135117, 0.009544741362333298, -0.012681161984801292, -0.02552490122616291, -0.030673237517476082, 0.005507363472133875, 0.019455285742878914, -0.01701660081744194, 0.01564822904765606, 0.03032098151743412, 0.007776695303618908, 0.000505519041325897, 0.008176368661224842, 0.020566241815686226, -0.009273776784539223, 0.006679287180304527, -0.0021812680643051863, -0.007356699556112289, 0.011671816930174828, 0.005758006125688553, -0.00874539464712143, 0.01278277300298214, 0.007437989115715027, -0.00014352676225826144, -0.004338826984167099, -0.009314421564340591, 0.011563430540263653, 0.016488220542669296, -0.0023235247936099768, -0.011380529962480068, -0.0004873136058449745, -0.021081076934933662, 0.00802056398242712, -0.0038951216265559196, -0.01229503657668829, 0.008487978018820286, 0.013778570108115673, 0.022774606943130493, -0.008237335830926895, -0.021013334393501282, -0.009890221990644932, -0.00456237280741334, -0.020430760458111763, -0.006929929833859205, 0.0037460909225046635, 0.016569508239626884, 0.0013006319059059024, 0.044790513813495636, -0.0014589771162718534, 0.025010067969560623, -0.007627664599567652, 0.00047588226152583957, -0.015621131286025047, 0.01043892651796341, -0.003400610527023673, 0.012186650186777115, 0.0006096712313592434, 0.019279159605503082, 0.008670879527926445, 0.012064715847373009, 0.0021084463223814964, -0.029047446325421333, 0.007471859455108643, 0.0067165447399020195, 0.012003748677670956, -0.014306951314210892, -0.005249946843832731, 0.014510175213217735, -0.006073002703487873, -0.030808718875050545, -0.004623339977115393, -0.002416668925434351, 0.0034683519043028355, -0.0054260739125311375, 0.015363714657723904, 0.029210025444626808, 0.016244351863861084, 0.005774941295385361, -0.01745014451444149, 0.004816402681171894, -0.009368614293634892, 0.011488915421068668, 0.003752865130081773, 0.016596606001257896, -0.002965373219922185, -0.0049925297498703, 0.019062386825680733, -0.02580941468477249, -0.01281664427369833, 0.007092508487403393, 0.0004983215476386249, -0.0222462248057127, -0.0006630174466408789, 0.014049534685909748, -0.006252516992390156, 0.013555023819208145, -0.012376326136291027, -0.019712703302502632, -0.0015809113392606378, -0.002189735881984234, 0.03053775429725647, 0.018615294247865677, -0.010554086416959763, 0.005483653862029314, -0.01705724559724331, 0.004203344229608774, -0.0030771461315453053, -0.002946744207292795, -0.011488915421068668, -0.006594610400497913, -0.03259708732366562, -0.024522332474589348, -0.02376363053917885, -0.00859636440873146, 0.000615175231359899, -0.003200773848220706, -0.0189946461468935, -0.005470105912536383, 0.005554782226681709, 0.013209543190896511, -0.01643402688205242, 0.01669144257903099, 0.01701660081744194, 0.01849335990846157, 0.01749078929424286, 0.013527926988899708, 0.007688631769269705, 0.016637250781059265, -0.007783469278365374, -0.0007256781100295484, -0.015309521928429604, 0.0189946461468935, 0.007647986989468336, 0.021257203072309494, -0.024630717933177948, 0.015363714657723904, -0.018235944211483, 0.01697595603764057, -0.002157558687031269, -0.002000060398131609, -0.003576737828552723, 0.00714670168235898, 0.00453527644276619, 0.013941148295998573, 0.0009238212369382381, 0.021135268732905388, 0.00798669271171093, 0.003315933980047703, 0.010289895348250866, 0.0017528047319501638, 0.028397131711244583, -0.0003666495031211525, 0.019929474219679832, 0.010621828027069569, -0.014645657502114773, -0.002083043335005641, -0.003392142942175269, 0.006415096111595631, -0.01853400468826294, 0.006730093155056238, 0.007112830877304077, -0.01005957555025816, -0.005331236403435469, 0.014713399112224579, 0.0040238299407064915, -0.01751788705587387, -0.011685364879667759, -0.020972689613699913, -0.005720748566091061, -0.016962409019470215, -0.02333008497953415, 0.019224965944886208, 0.018479812890291214, -0.03126936033368111, 0.006486224476248026, 0.018723681569099426, -0.01690821535885334, -0.01467275433242321, 0.02261202782392502, 0.01842561922967434, -0.011461819522082806, 0.013324703089892864, -0.009334743954241276, 0.0206204354763031, 0.009016360156238079, 0.004565760027617216, -0.016881119459867477, 0.022557836025953293, 0.011868266388773918, 0.01516049075871706, 0.008474430069327354, -0.001660507288761437, -0.01396824512630701, 0.0047249519266188145, -0.0205120500177145, -0.006201711017638445, -0.02066108025610447, 0.021623006090521812, -0.02498297207057476, 0.010479571297764778, -8.1448262790218e-05, -0.009002812206745148, 0.014835333451628685, -0.016596606001257896, 0.009707320481538773, -0.014686302281916142, 0.03143193945288658, 0.02055269479751587, -0.0023167505860328674, -0.0076615349389612675, -0.007864758372306824, -0.010377959348261356, -0.007715728133916855, 0.00496543338522315, 0.016664346680045128, -0.0012515195412561297, -0.007011218927800655, -0.012389874085783958, 0.007783469278365374, -0.0008281367481686175, -0.005443009082227945, -0.01749078929424286, -0.005720748566091061, -0.00787830725312233, 0.01167859137058258, -0.018154654651880264, 0.02357395365834236, -0.004714790731668472, 0.01730111427605152, 0.02487458661198616, -0.011739558540284634, -0.02270686626434326, 0.0014649045187979937, 0.025768769904971123, -0.01651531644165516, -0.015309521928429604, 0.014659206382930279, 0.004575921222567558, 0.017328212037682533, -0.0020847369451075792, -0.003190612653270364, -0.022043002769351006, -0.012803095392882824, 0.011421174742281437, 0.011868266388773918, 0.022232677787542343, -0.016339188441634178, -0.012085038237273693, 0.009612482972443104, 0.017937881872057915, 0.006845253054052591, -0.01694886013865471, -0.0003528895613271743, -0.020159795880317688, -0.0015368795720860362, -0.005713974125683308, -0.004199957475066185, 3.989059678133344e-06, -0.022910090163350105, 0.00310932332649827, 0.004267698619514704, -0.013798892498016357, 0.023885563015937805, 0.006167840678244829, -0.011597301810979843, 0.009903769940137863, 0.0012591404374688864, 0.014103727415204048, -0.010655698366463184, -0.014862429350614548, 0.005067045334726572, 0.015417908318340778, 0.007349925581365824, 0.01766691729426384, 0.004345600958913565, 0.008474430069327354, 0.007207668852061033, 0.03032098151743412, -0.012938578613102436, -0.0005182205350138247, 0.0244139451533556, 0.008040886372327805, 0.023641696199774742, 0.017043698579072952, -0.01088601816445589, -0.003874799469485879, -0.005520911887288094, -0.023560406640172005, -0.01330438069999218, 0.010418604128062725, -0.013941148295998573, 0.006330419797450304, -0.006611545570194721, -0.013155350461602211, -0.0011998668778687716, -0.010086671449244022, -2.0137144019827247e-05, -0.0016122417291626334, -0.0007193273631855845, -0.010601505637168884, 0.015214684419333935, 0.0046199532225728035, -0.014144372195005417, 0.002741826931014657, 0.0036715755704790354, -0.003979798406362534, -0.03183838725090027, -0.005050110165029764, -0.003559802658855915, -0.0019729638006538153, -0.01749078929424286, 0.01679982990026474, 0.01130601391196251, -0.02166365087032318, 0.02333008497953415, -0.007085734512656927, 0.0003958629094995558, 0.019048837944865227, -0.018913356587290764, 0.005527685862034559, 0.021961713209748268, -0.004762209486216307, -0.00025932196876965463, 0.009138294495642185, 0.001405630842782557, -0.005351558327674866, 0.006841865833848715, -5.911482367082499e-05, 0.002608038019388914, -0.010865695774555206, -0.014984363690018654, 0.015919193625450134, -0.018181750550866127, 0.02094559371471405, 0.007810565643012524, 0.013778570108115673, 0.005852843634784222, -0.009693772532045841, -0.01892690546810627, 0.02335718274116516, -0.01505210530012846, 0.010906340554356575, 0.010127316229045391, -0.013168898411095142, -0.006360902916640043, 0.02945389412343502, -0.00016681282431818545, -0.0044743092730641365, -0.008305076509714127, -0.026378441601991653, -0.0002455620269756764, -0.007234765216708183, 0.020606886595487595, 0.0423247329890728, 0.018899807706475258, -0.0012091812677681446, 0.0057105873711407185, 0.00476898392662406, 0.00010780384764075279, 0.008013789542019367, 0.0032769828103482723, -0.020823659375309944, 0.005216076038777828, 0.008433785289525986, 0.012091812677681446, 0.0007273716619238257, 0.025660384446382523, -0.0010576102649793029, 0.0021778810769319534, 0.009192487224936485, 0.014212113805115223, 0.002675779163837433, -0.001906916149891913, 0.009334743954241276, 0.0003674962790682912, 0.00816282071173191, -0.026270056143403053, 0.02700166031718254, 0.004017055965960026, -0.010676020756363869, -0.0037054461427032948, -0.023384278640151024, -0.015743065625429153, -0.006614932790398598, -0.0025402968749403954, -0.02022753655910492, 0.008528622798621655, -0.0018103847978636622, 0.002741826931014657, -0.007810565643012524, -0.0010000301990658045, 0.007153475657105446, -0.0030314207542687654, 0.004714790731668472, -0.009639579802751541, 0.002291347598657012, 0.010676020756363869, 0.012234069406986237, -0.007647986989468336, -0.006205098237842321, -0.005415912717580795, -0.007546375039964914, 0.002320137806236744, 0.004288021009415388, 0.02047140523791313, -0.009957963600754738, 0.016921764239668846, -0.004074635915458202, 0.015404359437525272, -0.008670879527926445, -0.02484748885035515, -0.01049311924725771, 0.011902136728167534, -0.007539601065218449, -0.0002849366283044219, -0.028180358931422234, -0.022381708025932312, 0.009842803701758385, 0.0043083433993160725, -0.01339244470000267, -0.013568571768701077, -0.007566697429865599, -6.943477637832984e-05, -0.006943477783352137, 0.012931804172694683, -0.018086913973093033, -0.012220521457493305, 0.0457930825650692, -0.01164472009986639, 0.009531193412840366, -0.01690821535885334, 0.0017697401344776154, 0.0038104450795799494, 0.016772732138633728, -0.0011820847867056727, 0.0005008618463762105, 0.006943477783352137, -0.006537030450999737, -0.004962046165019274, -0.009253454394638538, -0.018466264009475708, 0.001369219971820712, 0.03565899282693863, -0.009023134596645832, 0.006205098237842321, 0.004938337020576, -0.0098224813118577, -0.0012498260475695133, -0.01353470142930746, 0.0018324007978662848, 0.020159795880317688, 0.02166365087032318, -0.022666221484541893, 0.004348988179117441, -0.0090637793764472, 0.0121527798473835, -0.018588198348879814, -0.01178697682917118, -0.003280369797721505, -0.023045571520924568, -0.02307266928255558, 0.031594518572092056, 0.0009543048217892647, -0.010391507297754288, 0.002260864246636629, -0.006513320840895176, 0.0035428672563284636, 0.018506908789277077, 0.006089938338845968, -0.007478633895516396, 0.0005491274641826749, 0.02005140855908394, 0.004145764280110598, 0.036607369780540466, -0.005473492667078972, -0.008589589968323708, -0.006567514035850763, -0.024278463795781136, -0.012044393457472324, -0.013582119718194008, -0.0006782592390663922, -0.030456464737653732, -0.010262799449265003, 0.019780443981289864, -0.02259848080575466, -0.0015986934304237366, -0.001359905581921339, -0.014740495011210442, -0.019848184660077095, -0.021270751953125, -0.003949314821511507, 0.011475367471575737, 0.018804971128702164, 0.008386366069316864, 0.011908911168575287, -0.007810565643012524, 0.014279855415225029, -0.013128253631293774, 0.022910090163350105, -0.019915927201509476, -0.008792813867330551, -0.015512745827436447, 0.01727401837706566, -0.012464389204978943, -0.009829254820942879, 0.01636628620326519, -0.03574028238654137, -0.012051167897880077, -0.005188979674130678, -0.010391507297754288, 0.013148576021194458, -0.005432847887277603, 0.00854217167943716, 0.02682553417980671, 0.026053283363580704, -0.024535879492759705, 0.002653763396665454, -0.014428885653614998, 0.028207454830408096, 0.01575661450624466, -0.006194937042891979, 0.0006985816289670765, 0.028397131711244583, 0.019726252183318138, -0.0007726735784672201, 0.005134786479175091, 0.002069495152682066, -0.0035293190740048885, 0.01788369007408619, -0.0014437353238463402, 0.011495689861476421, 0.008576042018830776, -0.006056067533791065, 0.02858680672943592, 0.0055920397862792015, 0.021406233310699463, -0.010554086416959763, 0.016704991459846497, 0.017964979633688927, -0.0004949345020577312, 0.008298303000628948, -0.014415337704122066, 0.01632564142346382, 0.006242355797439814, 0.021433331072330475, 0.007370247505605221, -0.012897933833301067, 5.498684186022729e-05, 0.012281488627195358, -0.00897571537643671, 0.009686998091638088, 0.01472694706171751, 0.02257138304412365, 0.00586639204993844, 0.022002357989549637, 0.008345721289515495, 0.005270269233733416, 0.005249946843832731, 0.012525356374680996, -0.009524418972432613, 0.03205515816807747, -0.011285691522061825, 0.0189946461468935, 0.015675324946641922, 0.009842803701758385, -0.003674962790682912, 0.007885080762207508, -0.007519278675317764, -0.04330020397901535, -0.004972207359969616, 0.00865055713802576, -0.008806361816823483, -0.00560558820143342, 0.00865055713802576, 0.007776695303618908, -0.0050026909448206425, -0.0057376837357878685, 0.0018053042003884912, 0.010554086416959763, -0.011834396049380302, 0.00017305772053077817, -0.01571596972644329, -0.010371184907853603, 0.028857771307229996, 0.03132355213165283, 0.022991379722952843, 0.008088304661214352, 0.009178939275443554, 0.010757310315966606, -0.008711524307727814, -0.012389874085783958, -0.0037698005326092243, 0.001994979800656438, 0.011129886843264103, -0.0001621556148165837, -0.022517191246151924, -0.015119845978915691, -0.020241085439920425, -0.012173102237284184, 0.010540538467466831, -0.002064414555206895, 0.01353470142930746, -0.017802400514483452, -0.0034090783447027206, 0.005060271359980106, 0.01953657530248165, 0.006296548992395401, -0.016677895560860634, -0.02261202782392502, -0.0031008555088192225, 0.011610849760472775, -0.01548564899712801, -0.00011336074385326356, 0.009571838192641735, 0.0052872044034302235, -0.010892792604863644, 0.0020457857754081488, -0.022652672603726387, 0.0027164239436388016, -0.007370247505605221, 0.02552490122616291, -0.003061904339119792, -0.01049311924725771, -0.01564822904765606, 0.00047207181341946125, 0.01571596972644329, 0.0037325427401810884, -0.00531768798828125, -0.017653368413448334, -0.026581665500998497, 0.004799467511475086, -0.017531434074044228, 0.00595784280449152, 0.025321679189801216, -0.005138173699378967, 0.00540913874283433, -0.0014928476884961128, 0.036038342863321304, -0.015472101047635078, -0.007519278675317764, 0.002093204529955983, 0.012864062562584877, 0.002525055082514882, -0.0005715667502954602, 0.002469168510288, -0.023479117080569267, -0.007803791668266058, 0.000844225287437439, 0.024292010813951492, -0.0025081196799874306, 0.016379833221435547, -0.00839991495013237, -0.01478113979101181, 0.006242355797439814, -0.009097649715840816, 0.00589348841458559, 0.0005677563021890819, 0.00930087361484766, -0.015688873827457428, 0.012789547443389893, -0.020701725035905838, 0.01936044916510582, -0.0017011520685628057, 0.0016156287165358663, -0.001503008883446455, 0.00908410083502531, -0.008047659881412983, -0.0027435205411165953, 0.014808236621320248, 0.014306951314210892, 0.008914748206734657, 0.016921764239668846, -0.007587019819766283, 0.001712160068564117, -0.017138535156846046, 0.016935311257839203, 0.012132457457482815, -0.008677653968334198, 0.004000120796263218, -0.010228928178548813, -0.01838497444987297, 0.013778570108115673, 0.017544982954859734, -0.016569508239626884, -0.012640517204999924, 0.015187587589025497, -0.003448029514402151, 0.019089482724666595, -0.0013726070756092668, 0.004850273486226797, 0.0002582634915597737, 0.0030602109618484974, 0.003996733576059341, 0.02361459843814373, -0.0016105481190606952, 0.0032888376154005527, 0.025064261630177498, -0.007688631769269705, 0.021108172833919525, -0.008874103426933289, 0.0006388846668414772, -0.022300418466329575, -0.01892690546810627, 0.010018930770456791, -0.010120542719960213, 0.03154032304883003, -0.017748206853866577, -0.014903074130415916, -0.012450841255486012, -0.008657331578433514, 0.007194120436906815, 0.000784104922786355, -0.0002102095604641363, 0.0009314421331509948, -0.0035360930487513542, -0.0034226265270262957, 0.005883327219635248, -0.018520457670092583, 0.029291315004229546, -0.021934615448117256, 0.022882994264364243, 0.01643402688205242, 0.022368159145116806, 0.008142498321831226, -0.01301309373229742, 0.001308252802118659, -0.032217737287282944, -0.022043002769351006, -0.0008531163330189884, 0.00543623510748148, -0.0029060994274914265, -1.8271613953402266e-05, 0.01305373851209879, -0.0007515044417232275, -0.004003507550805807, -0.011360207572579384, -0.007492181845009327, -0.014374692924320698, -0.01148214191198349, -0.009910544380545616, -0.031675808131694794, -0.01368373166769743, -0.006868962664157152, -0.007241539191454649, -0.01871013268828392, -0.0057376837357878685, -0.0004957812489010394, -0.025226840749382973, 0.0005491274641826749, 0.007234765216708183, -0.005185592453926802, -0.010682794265449047, -0.014198565855622292, 0.005707200150936842, 0.008061208762228489, -0.005944294389337301, 0.010784406214952469, -0.009294099174439907, 0.004359149374067783, 0.01831723377108574, -0.0189946461468935, -0.0005643692566081882, -0.041836995631456375, 0.021324945613741875, 0.002064414555206895, 0.005761392880231142, 0.013473734259605408, 0.009795384481549263, -0.015458553098142147, 0.007803791668266058, 0.009659902192652225, 0.008183143101632595, -0.016569508239626884, -0.016772732138633728, 0.01950947940349579, 0.03468351811170578, -0.011272143572568893, -0.0076954057440161705, 0.0011947862803936005, 0.010120542719960213, 0.00337012717500329, -0.004477696493268013, 0.008928296156227589, 0.022395256906747818, 0.01164472009986639, 0.010594731196761131, -0.00337012717500329, -0.013405992649495602, -0.023695887997746468, -0.0029382766224443913, -0.006296548992395401, 0.005043335724622011, -0.010154413059353828, -0.006262678187340498, 0.0038849604316055775, 0.007038315758109093, 0.009517645463347435, -0.023777177557349205, -0.004453986883163452, 0.00679444707930088, 0.008501526899635792, -0.007180572021752596, 0.016962409019470215, 0.012742128223180771, 0.006289775017648935, 0.001234584255144, -0.0014479691162705421, 0.004718177951872349, -0.005338010378181934, 0.01211213506758213, 0.015607583336532116, -0.01842561922967434, 0.024142980575561523, -0.001949254423379898, -0.009422807954251766, -0.0057105873711407185, 0.03021259605884552, -0.009314421564340591, -0.0022574770264327526, -0.0009077326976694167, -0.013006319291889668, -0.0076615349389612675, -0.023966852575540543, 0.022124292328953743, -0.012701483443379402, 0.021948164328932762, 0.020593339577317238, -0.016881119459867477, -0.0030652915593236685, -0.02076946571469307, 0.01777530275285244, -0.03728478401899338, -0.0016427251975983381, 0.005212688818573952, 0.008487978018820286, -0.008467655628919601, 0.004789306316524744, 0.02847842127084732, -0.007492181845009327, -0.010520216077566147, -0.0017324824584648013, 0.018032720312476158, -0.0007443069480359554, 0.011326336301863194, -0.029968727380037308, 0.0044472129084169865, -0.022774606943130493, -0.0009551515686325729, -0.010432152077555656, 0.019739799201488495, -0.01548564899712801, -0.005270269233733416, 0.007715728133916855, -0.015282425098121166, 0.014361144043505192, -0.0007730969809927046, 0.0040238299407064915, -0.01708434335887432, 0.005825747270137072, 0.004433664493262768, 0.01092666294425726, 0.006056067533791065, -0.008867328986525536, -0.013189220800995827, -0.0019136902410537004, -0.00044624548172578216, 0.01824949122965336, -0.010723439045250416, 0.001085553434677422, 0.002738439943641424, -0.009775062091648579, -0.017680466175079346, 0.003925605211406946, 0.01601403020322323, -0.007316054776310921, -0.009145068004727364, -0.014334048144519329, -0.008101853542029858, 0.01734175905585289, -0.008467655628919601, 0.005351558327674866, 0.006421870086342096, 0.0018544166814535856, 0.0007294885581359267, 0.008840233087539673, 0.017748206853866577, 0.0001594036293681711, -0.005913810804486275, -0.01705724559724331, 0.006330419797450304, 0.016501767560839653, 0.01164472009986639, 0.0019746574107557535, -0.009287324734032154, 0.016677895560860634, -0.010791180655360222, -0.02055269479751587, 0.0043354397639632225, 0.010804728604853153, 0.019441738724708557, 0.0191030316054821, -0.01395469717681408, 0.026486827060580254, 0.005019626580178738, -0.00357335084117949, 0.022666221484541893, -0.010750535875558853, 0.013439863920211792, 0.020037861540913582, -0.0008891038596630096, -0.01669144257903099, -0.004813015460968018, 0.009023134596645832, 0.007099282927811146, -0.01831723377108574, -0.006665738765150309, 0.008169594220817089, -0.016786281019449234, 0.00589348841458559, -0.0031499681062996387, 0.010276347398757935, -0.006066228728741407, 0.027286173775792122, 0.006222033407539129, 0.014848881401121616, 0.008684427477419376, -0.0006816462846472859, -0.00522623723372817, 0.011834396049380302, 0.017544982954859734, 0.010520216077566147, -0.009050230495631695, -0.013324703089892864, 0.012945352122187614, 0.000881482963450253, 0.01957722008228302, 0.023668792098760605, 0.004149151500314474, 0.024468138813972473, 0.02350621297955513, -0.007336377166211605, 0.01333825197070837, -0.0234384723007679, 0.025619739666581154, 0.020606886595487595, -0.007471859455108643, 0.016718540340662003, -0.016244351863861084, 0.022381708025932312, 0.013697280548512936, 0.012897933833301067, -0.019821088761091232, -0.005615749396383762, -0.037257686257362366, 0.0021152205299586058, -0.009172164835035801, 0.01907593570649624, -0.010147638618946075, 0.009666675701737404, 0.00233876658603549, -0.001289624022319913, -0.006835091859102249, 0.0018849002663046122, 0.026662955060601234, 0.0004208424943499267, 0.017260469496250153, -0.01438824087381363, -0.016163062304258347, 0.014144372195005417, 0.008474430069327354, -0.0013946229591965675, 0.013155350461602211, 0.003979798406362534, -0.01877787336707115, -0.01931980438530445, 0.005676716566085815, 0.006435418501496315, 0.004938337020576, -0.019888829439878464, 0.01734175905585289, -0.008792813867330551, -0.028722288087010384, -0.005300752818584442, 0.007085734512656927, -0.003979798406362534, -0.012593097984790802, 0.009815706871449947, 0.007078960537910461, 0.006201711017638445, -0.000960232166107744, -0.020064957439899445, -0.012626968324184418, 0.020742369815707207, 0.020159795880317688, -0.016989504918456078, -0.016393382102251053, -0.008752169087529182, 0.011217950843274593, -0.007871532812714577, -0.014740495011210442, -0.0024234431330114603, 0.006692835129797459, 0.002013608580455184, 0.009829254820942879, -0.007078960537910461, 0.0029755341820418835, -0.004047539550811052, -0.004216892644762993, -0.0013582119718194008, 0.00374947814270854, -0.011400852352380753, 0.03194677084684372, -0.006818156689405441, 0.0022845736239105463, 0.00377657450735569, -0.0030331143643707037, -0.004047539550811052, 0.017612723633646965, -0.008149271830916405, 0.004033991135656834, -0.008515074849128723, 0.04733758419752121, 0.016786281019449234, -0.02834293805062771, 0.008305076509714127, -0.01461856160312891, -0.008413462899625301, 0.00850830040872097, 0.029399702325463295, 0.017368854954838753, 0.004006894771009684, 0.0006283000693656504, 0.0018069978104904294, -0.010154413059353828, -0.007478633895516396, 0.00968022458255291, -0.008007015101611614, 0.0032905309926718473, -0.0077225021086633205, 0.005205914843827486, -0.001786675420589745, -0.02393975667655468, 0.009598935022950172, 0.002525055082514882, 0.009273776784539223, -0.0031347263138741255, 0.00621864665299654, 0.00991731882095337, -0.011441497132182121, -0.015133394859731197, 0.004166086670011282, 0.01467275433242321, -0.019739799201488495, 0.02487458661198616, -0.017680466175079346, -0.01914367638528347, -0.007302506361156702, 0.004020443186163902, -0.010804728604853153, -0.011217950843274593, -0.011658268980681896, -0.0066826739348471165, 0.00973441731184721, -0.0002294734731549397, 0.014320499263703823, -0.013290832750499249, 0.014713399112224579, -0.0010084977839142084, 0.006255904212594032, -0.0071670240722596645, -0.019265610724687576, 0.008047659881412983, -0.011007952503859997, -0.003359965980052948, 0.017097890377044678, -0.0014191791415214539, -0.016230802983045578, -0.0220294538885355, -0.004061087965965271, 0.0008374511962756515, -0.018263040110468864, 0.009402485564351082, 0.0037088333629071712, -0.01723337359726429, 0.02120301127433777, 0.0017985301092267036, 0.017246922478079796, 0.03384352847933769, -0.012992771342396736, 0.0039459276013076305, 0.010289895348250866, -0.010879244655370712, -0.012593097984790802, 0.017639821395277977, -0.010120542719960213, 0.010181509889662266, 0.01159052737057209, -0.006401547696441412, 0.0035327060613781214, -0.002232074039056897, 0.02491523139178753, -0.026988113299012184, 0.00714670168235898, -0.024684909731149673, 0.018981097266077995, 0.01716563291847706, 0.019997216761112213, 0.016854021698236465, -0.005863004829734564, -0.001137206214480102, -0.01953657530248165, -0.001656273496337235, 0.0012405115412548184, -0.014970815740525723, 0.0024302173405885696, 0.008718298748135567, 0.011841170489788055, -0.0009382162825204432, 0.02368234097957611, 0.007065412122756243, 0.011285691522061825, -0.00036940150312148035, -0.003939153626561165, -0.0004652976931538433, 0.010642150416970253, -0.01961786486208439, -0.015661776065826416, -0.0006558199529536068, -0.014903074130415916, -0.002445459133014083, -0.004873982630670071, 0.002733359346166253, -0.018845615908503532, -0.007255087606608868, -0.002914567245170474, 0.0014174856478348374, -0.013317929580807686, -0.003525931853801012, 0.027570687234401703, -0.011387303471565247, 0.03235321864485741, -0.011427948251366615, -0.005446396302431822, -0.005480267107486725, 0.01590564474463463, -0.0001446910755475983, 0.009151842445135117, -0.012010523118078709, 0.006025583948940039, 0.010587956756353378, 0.010987630113959312, -0.007255087606608868, 0.006723318714648485, 0.004694468341767788, 0.016650797799229622, 0.005476879887282848, -0.018547553569078445, -0.002287960611283779, -0.001034747576341033, -0.01129924040287733, 0.008223787881433964, -0.01020183227956295, -0.009382163174450397, -0.0024996520951390266, -0.00825765822082758, 0.011631172150373459, -0.02782810479402542, 0.003813832299783826, 0.010594731196761131, -0.0032735958229750395, -0.011170531623065472, -0.02732681855559349, 0.009565063752233982, -0.007078960537910461, -0.019523028284311295, 0.015363714657723904, -0.000349079113220796, 0.0004652976931538433, -0.004067861940711737, -0.0230049267411232, -0.0060425191186368465, -0.0022761058062314987, 0.013561797328293324, 0.01701660081744194, -0.01766691729426384, 0.005656394176185131, -0.01881851814687252, 0.030050016939640045, -0.0077225021086633205, 0.02556554600596428, -0.001837481395341456, -0.01946883462369442, 0.0022015904542058706, 0.01096053421497345, 0.0012032538652420044, -0.0022845736239105463, 0.008806361816823483, -0.006902833003550768, -0.005649620201438665, 0.002250703051686287, 0.020417211577296257, -0.00024259834026452154, 0.01866948790848255, -0.0061881630681455135, 0.017639821395277977, -0.00926700234413147, 0.017978526651859283, -0.00659799762070179, -0.00026419086498208344, 0.003912057261914015, 0.009869899600744247, -0.009178939275443554, 0.011746332049369812, 0.015323069877922535, -0.002525055082514882, -0.011854718439280987, -0.022788155823946, -0.019739799201488495, -0.019712703302502632, -0.00048053948557935655, -0.013040190562605858, 0.002328605391085148, 0.012091812677681446, 0.0052093020640313625, -0.007851210422813892, -0.004606404807418585, -0.0198617335408926, -0.01020183227956295, -0.03435835987329483, 0.022219128906726837, -0.026527471840381622, -0.0015902257291600108, 0.00010510478023206815, -0.015404359437525272, 0.002453926717862487, -0.01220019906759262, -0.010018930770456791, 0.017612723633646965, -0.009239906445145607, -0.027299722656607628, -0.0004602170956786722, 0.017179179936647415, 0.00508398050442338, -0.029535183683037758, 0.006747028324753046, -0.018899807706475258, 0.003928992431610823, -0.007708954159170389, -0.004667371977120638, -0.012322132475674152, -0.016704991459846497, -0.008413462899625301, -0.01946883462369442, 0.0031465808860957623, 0.015499197877943516, -0.003840928664430976, 0.006635255180299282, -0.0073837959207594395, 0.012762450613081455, -0.029210025444626808, -0.029318412765860558, -0.007316054776310921, 0.0018340942915529013, -0.0244139451533556, 0.001160068903118372, 0.026039736345410347, 0.03338288515806198, -0.0034277071245014668, 0.013263735920190811, 0.005229624453932047, 0.007390569895505905, -0.005534459836781025, -0.0031669032759964466, 0.0029484378173947334, -0.023452019318938255, 0.02292363904416561, 0.019875282421708107, -0.015025008469820023, -0.00953796785324812, 0.0010965614346787333, 0.0022151388693600893, -0.008223787881433964, -0.008061208762228489, -0.0098224813118577, 0.02758423611521721, 0.02578231878578663, 0.01263374276459217, -0.0004894305020570755, -0.006655577570199966, 0.02977905236184597, -0.00482317665591836, -0.031594518572092056, -0.004254150204360485, -0.0014183323364704847, -0.018154654651880264, 0.0028281970880925655, 0.007038315758109093, -0.006550578400492668, -0.014930170960724354, 0.01036441046744585, 0.002797713503241539, 0.0010923276422545314, 0.026554569602012634, -0.008183143101632595, -0.010540538467466831, 0.0026944081764668226, 0.0076615349389612675, 0.016501767560839653, -0.006330419797450304, 0.02263912558555603, -0.004918014630675316, -0.004582695197314024, -0.023262344300746918, 0.024779748171567917, -0.011136661283671856, 0.013853085227310658, -0.011807299219071865, -0.02242235280573368, 0.02595844678580761, -0.010709891095757484, -0.007776695303618908, 0.009246679954230785, 0.0005940060364082456, 0.019672058522701263, 0.004318504594266415, -0.014659206382930279, 0.005415912717580795, 0.005233011208474636, 0.012416970916092396, 0.01115698367357254, -0.020823659375309944, -0.004504792857915163, 0.005683490540832281, 0.036607369780540466, 0.017694013193249702, -0.0008505760342814028, -0.017870141193270683, -0.01087247021496296, -0.01708434335887432, 0.0192114170640707, 0.007627664599567652, -0.005297365598380566, -0.007261861581355333, 0.017043698579072952, -0.01751788705587387, 0.022368159145116806, 0.017680466175079346, -0.009057004936039448, 0.0005643692566081882, 0.010445700027048588, -0.005863004829734564, -0.005239785648882389, 0.008338947780430317, 0.005412525497376919, -0.014496627263724804, 0.001693531172350049, 0.009104423224925995, 0.01267438754439354, 0.006001874338835478, -0.0048976922407746315, -0.008528622798621655, -0.012931804172694683, -0.027191337198019028, 0.029535183683037758, -0.00869120191782713, -0.03086291253566742, 0.01810046099126339, 0.007905403152108192, 0.007593793794512749, 0.01129924040287733, 0.0046199532225728035, 0.008386366069316864, -0.011685364879667759, 0.01171923615038395, -0.018181750550866127, -0.0030602109618484974, -0.0002807028067763895, -0.02826164849102497, 0.014198565855622292, 0.009578612633049488, -0.01619015820324421, 0.0017900624079629779, -0.0013836149591952562, 0.007587019819766283, -0.0011160370195284486, -0.003773187519982457, -0.014916623011231422, 0.006750415079295635, 0.015594035387039185, 0.00531768798828125, -0.010567634366452694, 0.002399733755737543, 0.014916623011231422, -0.020891400054097176, 0.003498835489153862, 0.016935311257839203, 0.0199701189994812, -0.018954001367092133, 0.018154654651880264, -0.011875040829181671, -0.0005702966009266675, 0.01675918512046337, 0.0015021621948108077, 0.002408201340585947, -0.028749385848641396, 0.004548824857920408, -0.004748661536723375, -0.010994404554367065, 0.002675779163837433, -0.027706170454621315, -0.0221378393471241, 0.007742824498564005, 0.01777530275285244, 0.005280430428683758, -0.00047757578431628644, -0.002538603264838457, -0.0058494568802416325, -0.02376363053917885, -0.014266306534409523, -0.01440178882330656, 0.004006894771009684, 0.012769225053489208, -0.010486344806849957, -0.017219824716448784, -0.01918432116508484, 0.002946744207292795, 0.0037968968972563744, 0.002724891761317849, -0.015214684419333935, 0.0016215561190620065, 0.00607638992369175, 0.0045522116124629974, 0.01866948790848255, -0.0012659145286306739, -0.0071331532672047615, 0.01679982990026474, -0.006228807847946882, -0.000677412492223084, -0.020742369815707207, -0.011583752930164337, 0.012626968324184418, -0.0010144251864403486, 0.001465751207433641, -0.0009432968799956143, 0.009754739701747894, 0.0008450720342807472, -0.0012498260475695133, 0.009361840784549713, 0.01849335990846157, 0.004792693071067333, 0.011089242063462734, 0.02228686958551407, -0.016704991459846497, 0.023492664098739624, 0.00877926591783762, 0.017246922478079796, 0.006428644526749849, 0.013697280548512936, -0.002101672114804387, -0.003590286010876298, 0.015241780318319798, -0.02292363904416561, 0.0004155502247158438, 0.01505210530012846, -0.0006266065174713731, -0.007905403152108192, 0.017463693395256996, -0.012769225053489208, 0.01395469717681408, 0.02270686626434326, -0.011908911168575287, 0.0034819000866264105, 0.01406308263540268, -0.014970815740525723, 0.007180572021752596, 0.013676958158612251, -0.016921764239668846, -0.013399219140410423, -0.011834396049380302, 0.008840233087539673, 0.03381643071770668, 0.02689327485859394, 0.009036682546138763, 0.013927600346505642, -0.008792813867330551, -0.009747965261340141, 0.015851451084017754, -0.0020898175425827503, 0.011820848099887371, -0.008338947780430317, 0.015919193625450134, -0.0031990804709494114, 0.011637946590781212, 0.023479117080569267, 0.003939153626561165, 0.022733962163329124, 0.014970815740525723, 0.0024149755481630564, 0.010039253160357475, -0.004640275612473488, -0.006848640274256468, -0.027855200693011284, 0.002606344409286976, 0.006665738765150309, 0.0027011821512132883, 0.006039132364094257, 0.008352495729923248, -0.014252758584916592, 0.01263374276459217, -0.000617292127572, -0.00593074643984437, 0.0012659145286306739, -0.001888287253677845, -0.010316992178559303, -0.005527685862034559, 0.02155526541173458, -0.008379592560231686, 0.008792813867330551, -0.0025826350320130587, -0.011759880930185318, 0.008589589968323708, 0.012979223392903805, -0.009280551224946976, -0.007654760964214802, 0.03170290216803551, -0.018588198348879814, -0.003331175772473216, 0.0011532946955412626, -0.028099069371819496, -0.0013099464122205973, -0.012376326136291027, -0.021257203072309494, 0.0067436411045491695, 0.002203284064307809, -0.0036580273881554604, -0.0051483348943293095, 0.0029856953769922256], "3082a394-1cd7-49c3-b83e-c91ddfda982e": [-0.008678779006004333, 0.0036900779232382774, -0.009232291020452976, 0.02604343369603157, -0.04436608776450157, -0.038972899317741394, -0.018535545095801353, 0.018095573410391808, -0.011801152490079403, 0.02040896937251091, 0.0017625443870201707, 0.033466167747974396, -0.015484134666621685, -0.033750019967556, -0.008125267922878265, 0.011730189435184002, -0.02611439675092697, 0.021572763100266457, 0.022779135033488274, -0.006716651376336813, 0.05353451520204544, -0.006312162149697542, -0.030570875853300095, 0.038291655480861664, -0.01481708139181137, -0.018038803711533546, -0.016662120819091797, 0.0012010493082925677, -0.03590729460120201, 0.01478869654238224, 0.034175798296928406, 0.01054510660469532, 0.01613699458539486, 0.00308511801995337, -0.017357558012008667, -0.02730657532811165, 0.022921061143279076, 0.022126274183392525, 0.010786381550133228, -0.033381011337041855, -0.04025023430585861, 0.05080953240394592, 0.03531120717525482, -0.03326747193932533, -0.049588967114686966, 0.04095986485481262, 0.015512519516050816, -0.03497058525681496, -0.004282619338482618, -0.002446450525894761, 0.032756537199020386, -0.0046055009588599205, -0.013057198375463486, -0.00014015199849382043, 0.009537432342767715, -0.032046906650066376, 0.019273560494184494, 0.027193034067749977, -0.009253580123186111, -0.06738650053739548, -0.0021253428421914577, -0.032642997801303864, 0.02963416278362274, -0.00578348757699132, -0.0024393543135374784, -0.024439670145511627, -0.007990437559783459, -0.019273560494184494, -0.03641822934150696, 0.010410277172923088, 0.027022723108530045, 0.056600116193294525, -0.007692392915487289, -0.0025812804233282804, -0.014490651898086071, -0.006305065471678972, 0.010665744543075562, 0.002872228855267167, -0.008018823340535164, 0.021586954593658447, -0.027278190478682518, -0.0037291075568646193, 0.021615341305732727, 0.010949595831334591, 0.06545630097389221, 0.011091521941125393, -0.02601504884660244, -0.03502735495567322, -0.035197664052248, -0.03797941654920578, 0.022764941677451134, -0.015398978255689144, 0.007089207414537668, 0.022693978622555733, 0.0028509399853646755, -0.01975610852241516, 0.023062987253069878, 0.02323329821228981, 0.020025769248604774, -0.05259780213236809, 0.01118377409875393, 0.014519036747515202, -0.0029556103982031345, 0.01765560358762741, 0.01189340464770794, 0.033295854926109314, 0.008976823650300503, -0.018109766766428947, 0.0030230253469198942, 0.03150758892297745, 0.016364075243473053, 0.011460530571639538, 0.028498753905296326, -0.004073278047144413, 0.002920128870755434, -0.043911926448345184, -0.01052381843328476, 0.018081381916999817, -0.03301200270652771, -0.02886776253581047, 0.026965953409671783, 0.012730768881738186, -0.000275647034868598, 0.03235914558172226, -0.022665593773126602, -0.014256473630666733, -0.008203326724469662, 0.01979868672788143, 0.021558569744229317, 0.028470369055867195, -0.012226930819451809, -0.001944387098774314, 0.020749591290950775, 0.011162484996020794, 0.03599245101213455, 0.018478773534297943, -0.028314251452684402, 0.040392160415649414, -0.03820649906992912, 0.03210367634892464, -0.03423256799578667, -0.032614611089229584, -0.010644455440342426, 0.004928382579237223, 0.03866066038608551, -0.015200282447040081, -0.004782908596098423, 0.02671048603951931, -0.0175278689712286, 0.0546131506562233, -0.04941865801811218, -0.025007372722029686, 0.04936188831925392, 0.0038426483515650034, -0.01626472733914852, -0.04408223554491997, 0.01829427108168602, 0.002256624400615692, 0.011410855688154697, -0.02381519414484501, 0.03349455073475838, -0.03570859879255295, 0.013639095239341259, 0.03497058525681496, 0.018407810479402542, 0.006489569321274757, 0.005854450166225433, -0.0027267546392977238, -0.002489028498530388, 0.027562042698264122, 0.012049523182213306, -0.016009259968996048, -0.0144480736926198, 0.0018627796089276671, -0.01818072982132435, -0.0003253211616538465, 0.03357970714569092, -0.015512519516050816, 0.020252849906682968, 0.012588842771947384, -0.019273560494184494, -0.0041158562526106834, -0.018606508150696754, 0.008607815951108932, -0.01225531566888094, 0.022296585142612457, 0.005719620734453201, 0.011843730695545673, -0.003331714542582631, -0.022807519882917404, 0.009665165096521378, -0.015257052145898342, 0.005769294686615467, -0.008196230977773666, -0.0022956542670726776, 0.007177910767495632, 0.039710912853479385, 0.004846775438636541, 0.0036900779232382774, 0.030656030401587486, -0.01765560358762741, -0.05994957312941551, -0.04720460996031761, 0.020125117152929306, -0.032614611089229584, 0.020976673811674118, -0.018052995204925537, -0.003459447994828224, 0.008657489903271198, -0.04064762592315674, 0.04132886976003647, -0.00667407363653183, -0.011375374160706997, -0.0014955459628254175, 0.007486599963158369, -0.013461687602102757, -0.03871743008494377, 0.003626211080700159, 0.01622214913368225, -0.026398248970508575, -0.017825914546847343, 0.00755756301805377, -0.0253479965031147, -0.030485719442367554, -0.02736334688961506, -0.011786960065364838, 0.01755625568330288, -0.011006366461515427, -0.05705428123474121, -0.00839492678642273, 0.05983603000640869, 0.01975610852241516, 0.0028740030247718096, -0.03250107169151306, 0.005779939237982035, 0.017939455807209015, 0.027065301313996315, 0.012063715606927872, 0.008040111511945724, -0.027689775452017784, 0.020863132551312447, 0.056571733206510544, 0.0034079996403306723, 0.023744231089949608, 0.037723951041698456, -0.006461184471845627, -0.001953257480636239, 0.026497596874833107, -0.015881527215242386, -0.04984443634748459, 0.0006404413725249469, 0.034090641885995865, -0.030372178182005882, -0.005020634736865759, -0.03321069851517677, 0.037638794630765915, 0.014249376952648163, -0.006429250817745924, -0.015697022899985313, -0.04362807422876358, 0.006141850724816322, 0.009906440041959286, 0.014731925912201405, -0.01014771405607462, 0.03306877613067627, 0.010474143549799919, -0.00048520974814891815, -0.03088311292231083, -0.01375263649970293, 0.020550895482301712, -0.06131206080317497, -0.01085024792701006, 0.002966254949569702, -0.01957160420715809, 0.013802310451865196, -0.020068345591425896, 0.021501800045371056, 0.00843040831387043, 0.007912378758192062, -0.027987821027636528, 0.014646770432591438, 0.019202597439289093, 0.03162112832069397, 0.024141624569892883, 0.0057586501352488995, -0.01958579756319523, 0.021232139319181442, -0.033295854926109314, -0.030457334592938423, -0.002719658426940441, -0.0073162890039384365, -0.007273711264133453, 0.009218098595738411, 0.014802888967096806, 0.03287007659673691, -0.010396084748208523, -0.004995797760784626, -0.024439670145511627, -0.009345831349492073, 0.005407383199781179, -0.0016161830862984061, 0.015895720571279526, 0.022906867787241936, -0.014348725788295269, 0.022239815443754196, -0.00918261706829071, 0.06812451034784317, 0.032756537199020386, -0.0366453118622303, 0.019472256302833557, 0.04371323063969612, 0.008998112753033638, -0.00170932209584862, 0.007309192791581154, -0.03570859879255295, -0.005499635357409716, 0.033324241638183594, -0.02753365784883499, -0.009317446500062943, -0.024226780980825424, 0.017073705792427063, -0.008870379067957401, -0.043344222009181976, 0.036191146820783615, 0.022921061143279076, -0.0309966541826725, 0.008387831039726734, -0.006446991581469774, 0.012517879717051983, -0.009537432342767715, -0.015796370804309845, 0.003399129258468747, -0.02178565226495266, 0.016718890517950058, 0.007337577641010284, -0.0378091037273407, -0.020054154098033905, -0.042521052062511444, -0.01823749952018261, -0.009587106294929981, -0.010417373850941658, 0.0026238581631332636, -0.014355821534991264, 0.020536702126264572, 0.020919902250170708, 0.015995068475604057, 0.008373637683689594, 0.009729032404720783, -0.010424469597637653, 0.0073162890039384365, 0.000820953631773591, -0.04010830819606781, 0.005339968483895063, 0.0023258135188370943, -0.005865094717592001, -0.0028793250676244497, 0.015739601105451584, -0.011652130633592606, 0.016293112188577652, 2.8745573217747733e-05, -0.006773421540856361, -0.027661390602588654, 0.002877551130950451, -0.015398978255689144, 0.03917159512639046, 0.006049598567187786, 0.000317559577524662, -0.009253580123186111, 0.01545574888586998, 0.023034600540995598, 0.010339314118027687, 0.031223734840750694, 0.0023861320223659277, 0.0019568055868148804, -0.05291003733873367, -0.029861245304346085, 0.04754523187875748, 0.00042777403723448515, -0.002497898880392313, 0.030457334592938423, -0.015569290146231651, 0.009587106294929981, 0.004899997729808092, -0.014192607253789902, 0.03162112832069397, 0.030627645552158356, 0.003984574228525162, 0.003063828917220235, 0.011488915421068668, -0.014845467172563076, -0.04135725647211075, -0.015810564160346985, -0.014064873568713665, 0.024453861638903618, -0.02384357899427414, 0.034090641885995865, -0.022992024198174477, -0.006759229116141796, 0.0033388107549399137, -0.02536218799650669, -0.004460026975721121, -0.017414329573512077, 0.01828007772564888, 0.014575807377696037, 0.013724250718951225, -0.03817811235785484, -0.00017574439698364586, -0.02239593304693699, -0.0008151878719218075, -0.007891089655458927, -0.0004652513889595866, 0.013071390800178051, 0.010679936967790127, -0.015299630351364613, 0.009054883383214474, -0.013830695301294327, 0.008685875684022903, 0.026213744655251503, -0.05989279970526695, -0.023701652884483337, 0.035481516271829605, 0.036219533532857895, 0.013319761492311954, 0.008898764848709106, -0.03091149777173996, -0.0024783839471638203, 0.05268295854330063, -0.012425627559423447, -0.008288482204079628, -0.01683243177831173, -0.01696016453206539, -0.00756465969607234, 0.020267043262720108, -0.01684662513434887, 0.014660962857306004, -0.02394292876124382, 0.0006156043382361531, 0.003028347622603178, 0.0011336344759911299, -0.013071390800178051, 0.0492483451962471, 0.012383049353957176, 0.0018184278160333633, 0.024326128885149956, -0.025844737887382507, -0.0025014469865709543, -0.027647199109196663, -0.012872694991528988, 0.008260097354650497, 0.024155817925930023, -0.008551045320928097, 0.03673046827316284, -0.017329173162579536, 0.011808249168097973, -0.010644455440342426, -0.008494275622069836, 0.009821283631026745, 0.00035215404932387173, 0.0395406037569046, -0.012191449292004108, -0.03306877613067627, 0.017187247052788734, 0.009906440041959286, 0.020267043262720108, -0.013475880026817322, -0.043202295899391174, -0.01606603153049946, 0.042634591460227966, 0.00440680468454957, -0.004499056376516819, -0.007231133058667183, 0.002001157496124506, -0.019145827740430832, 0.02459578774869442, 0.0140151996165514, -0.005219331011176109, -0.012929464690387249, -0.02050831727683544, 0.030428949743509293, 0.020181886851787567, -0.02113279141485691, -0.009920632466673851, -0.03919998183846474, -0.009956113994121552, -0.009125846438109875, 0.022239815443754196, 0.005655753891915083, -0.005414479412138462, 0.007997534237802029, -0.022779135033488274, 0.03877420350909233, -0.0022885578218847513, 0.029236771166324615, -0.0035854072775691748, 0.0008786110556684434, -0.02598666399717331, -0.026894990354776382, -0.011815344914793968, 0.0025014469865709543, -0.06494536995887756, 0.05396029353141785, -0.0064647323451936245, -0.012127582915127277, 0.054414454847574234, -0.013525554910302162, -0.01605183817446232, -0.04166949540376663, -0.0035020257346332073, 0.0029183547012507915, -0.008494275622069836, -0.025617655366659164, 0.05625949427485466, -0.014263570308685303, -0.020678628236055374, -0.022963637486100197, 0.008614912629127502, -0.023531341925263405, -0.017329173162579536, 0.03289846330881119, -0.014476459473371506, 0.008671683259308338, -0.0036368556320667267, 0.013844887726008892, 0.013894562609493732, -0.039086438715457916, -0.030712801963090897, 0.003205755027011037, -0.012837213464081287, 0.027633005753159523, -0.0015771534526720643, -0.03292685002088547, -0.018762625753879547, 0.02387196570634842, -0.005957346875220537, 0.031195349991321564, 0.031223734840750694, -0.004438737872987986, -0.008614912629127502, 0.03536797687411308, 0.031904980540275574, -0.023502957075834274, 0.009899343363940716, 0.010573492385447025, -0.015469941310584545, -0.011751478537917137, 0.004488411825150251, 0.0071885553188622, 0.031252119690179825, 0.021530184894800186, 0.02812974713742733, -0.001423695939593017, 0.020763784646987915, -0.01159536000341177, -0.011751478537917137, 0.00616313936188817, -0.027562042698264122, 0.04853871464729309, -0.060176651924848557, -0.0017385943792760372, -0.015739601105451584, -0.018847782164812088, 0.022041117772459984, 0.0018237499753013253, 0.008643297478556633, -0.008196230977773666, 0.0034541257191449404, -0.016491809859871864, 0.013504265807569027, -0.0023967765737324953, 0.01511512603610754, 0.0034807368647307158, 0.019230982288718224, 0.08055723458528519, -0.0032678477000445127, -0.011205063201487064, 0.04422416165471077, -0.014057776890695095, -0.0015523163601756096, -0.0323023721575737, 0.00877812784165144, 0.01967095397412777, -0.0143771106377244, 0.013930044136941433, -0.004350034054368734, -0.004616145510226488, 0.0067485845647752285, -0.020011575892567635, -0.021941769868135452, -0.03582213819026947, 0.017300788313150406, 0.003640403738245368, 0.017116283997893333, -0.006060243118554354, -0.0033157477155327797, -0.032614611089229584, 0.0420101173222065, -0.00806849729269743, -0.011815344914793968, 0.0231765266507864, 0.020735397934913635, 0.00884909089654684, 0.020110923796892166, 0.02739173173904419, -0.014859659597277641, -0.03323908522725105, 0.02601504884660244, 0.022381741553544998, 0.022750748321413994, 0.005347064696252346, 0.015668638050556183, -0.0034009034279733896, 0.03210367634892464, 0.02733496017754078, 0.005836709402501583, 0.023361030966043472, 0.01304300595074892, 0.02249528281390667, 0.045331187546253204, 0.011822441592812538, -0.004456478636711836, -0.00036967307096347213, -0.03392032906413078, 0.05293842405080795, -0.029804473742842674, 0.048850953578948975, 0.025135107338428497, -0.024311935529112816, 0.015313822776079178, -0.02733496017754078, 0.04453640058636665, -0.008891668170690536, 0.003427514573559165, 0.007990437559783459, -0.01830846257507801, 0.048794183880090714, -0.020749591290950775, 0.0069650220684707165, 0.026540175080299377, -0.02814394049346447, -0.022935252636671066, -0.03451642021536827, -0.020621858537197113, 0.016704699024558067, 0.013135258108377457, -0.0056486576795578, -0.008182037621736526, -0.006798258516937494, 0.005723168607801199, 0.01968514546751976, 0.010467047803103924, -0.05915478616952896, -0.0031915626022964716, 0.014476459473371506, 0.01686081662774086, 0.004860967863351107, -0.01828007772564888, -0.002132439287379384, 0.01300752442330122, 0.03675885125994682, -0.002664661966264248, 0.015611867420375347, -0.035424746572971344, -0.002347102388739586, 0.02744850143790245, -0.00806140061467886, 0.0077420673333108425, 0.002047283574938774, 0.01367457676678896, 0.006205717567354441, -0.017967840656638145, 0.014341629110276699, 0.00035237582051195204, 0.023020409047603607, 0.0002098953555105254, 0.010623166337609291, 0.004137144889682531, -0.015441556461155415, -0.015867333859205246, -0.0033530034124851227, -0.031166965141892433, -0.006177332252264023, -0.030712801963090897, -0.03326747193932533, -0.016605349257588387, 0.010169003158807755, -0.01747109927237034, 0.011368278414011002, 0.008551045320928097, 0.001729723997414112, 0.013873273506760597, 0.030400564894080162, 0.005701879970729351, -0.00881360936909914, -0.000969532469753176, 0.02329006791114807, -0.005928961560130119, -0.0075220814906060696, 0.020238658413290977, 0.018578123301267624, -0.005857998505234718, -0.010757995769381523, -0.008302674628794193, -0.015171896666288376, -0.015484134666621685, -0.0074582151137292385, 0.03607760742306709, -0.019514834508299828, -0.0365033857524395, 0.00210937624797225, -0.03800780326128006, 0.017939455807209015, -0.002355972770601511, 0.02531961165368557, 0.027718162164092064, 0.023588113486766815, -0.02395712025463581, -0.01964256726205349, 0.022793326526880264, 0.026227938011288643, 0.006613754667341709, 0.003588955383747816, 0.015342208556830883, -0.004506152588874102, -0.03579375520348549, -0.058047764003276825, 0.014270666055381298, 0.00987805426120758, 0.004985153209418058, -0.029179999604821205, -0.002503221156075597, 0.01825169287621975, 0.025717003270983696, -0.021473415195941925, 0.020721206441521645, 0.00210937624797225, 0.009054883383214474, -0.01267399825155735, 0.006493117660284042, 0.02469513565301895, -0.013426206074655056, -0.015810564160346985, -0.03233075886964798, 0.03357970714569092, -0.007933666929602623, 0.004094567149877548, 0.021615341305732727, 0.03153597190976143, 0.012411435134708881, 0.012581746093928814, 0.011268929578363895, 0.03863227739930153, 0.0011380696669220924, 0.02957739308476448, 0.019245175644755363, 0.021686304360628128, -0.008338156156241894, 0.020153502002358437, 0.0013083809753879905, 0.025078335776925087, 0.02943546697497368, 0.014689348638057709, 0.0035286368802189827, 0.005528020206838846, -0.006074436008930206, -0.014142933301627636, 0.006840836722403765, -0.02262301556766033, 0.02043735422194004, 0.009934824891388416, -0.003810714930295944, 0.04203850030899048, -0.009423891082406044, 0.02327587455511093, 0.06205007806420326, -0.04209527373313904, -0.02392873540520668, 0.026880796998739243, 0.0021679208148270845, -0.03312554582953453, 0.004357130266726017, 0.0073162890039384365, -0.02316233515739441, 0.015271245501935482, 0.0025866026990115643, 0.01626472733914852, -0.0012196771567687392, 0.03247268497943878, 0.009253580123186111, -0.015015778131783009, 0.0281013622879982, -0.030570875853300095, 0.004172626417130232, -0.014036488719284534, -0.00525481253862381, 0.0038178113754838705, 0.04422416165471077, 0.01511512603610754, -0.03525443747639656, -0.001201936393044889, 0.013553939759731293, -0.0031826922204345465, -0.01617957279086113, 0.06732972711324692, 0.020536702126264572, -0.012886887416243553, -0.02468094415962696, 0.028342636302113533, 0.018861975520849228, 0.014888044446706772, 0.015441556461155415, -0.025631848722696304, -0.023020409047603607, -0.02876841463148594, 0.028356829658150673, -0.02821490354835987, 0.0025528951082378626, -0.0036581445019692183, 0.03460157662630081, 0.013475880026817322, 0.0013740217546001077, -0.014859659597277641, -0.003902966855093837, -0.0018521351739764214, 0.017797529697418213, -0.0008981259306892753, -0.02801620587706566, 0.0349138118326664, -0.03184821084141731, -0.013199124485254288, 0.02191338501870632, 0.010644455440342426, -0.014660962857306004, -0.009970306418836117, 0.04203850030899048, -0.006067339330911636, 0.007749163545668125, 0.014930622652173042, 0.011176678352057934, -0.03744009882211685, 0.01051672175526619, -0.018819397315382957, -0.03579375520348549, -0.0036368556320667267, 0.0007730535580776632, 0.0016410201787948608, -0.026313092559576035, 0.02456740289926529, -0.0014095032820478082, 0.05293842405080795, -0.0023204912431538105, 0.01896132342517376, -0.01755625568330288, 0.017967840656638145, 0.017854299396276474, -0.012113390490412712, 0.002245980082079768, -0.012780442833900452, 0.009672261774539948, 0.027732353657484055, 0.0028846473433077335, -0.005694783758372068, -0.027718162164092064, -0.022268200293183327, -0.03860389068722725, -0.005847353953868151, -0.01163084153085947, -0.03295523300766945, -0.007085659075528383, 0.027661390602588654, -0.029052266851067543, -0.011283122934401035, 0.008189134299755096, 0.03284169360995293, 0.01826588436961174, -0.029747704043984413, -0.016435038298368454, -0.03497058525681496, 0.04904964938759804, -0.011943078599870205, 0.011077329516410828, -0.0034576738253235817, 0.030712801963090897, 0.012411435134708881, 0.01015481073409319, -0.04235073924064636, 0.01900390163064003, 0.03653176873922348, -0.008160749450325966, -0.00335122924298048, 0.00317559577524662, -0.00020823215891141444, 0.009317446500062943, -0.011744381859898567, -0.008508468046784401, -0.008416215889155865, -0.0010511399013921618, 0.0020277686417102814, 0.003086891956627369, 0.018606508150696754, -0.01964256726205349, 0.004367774818092585, -0.027732353657484055, -0.023346837610006332, 0.01825169287621975, -0.003109954996034503, -0.02120375446975231, 0.02111859992146492, -0.0014849015278741717, -0.006737940013408661, 0.026199553161859512, -0.007869800552725792, 0.021601147949695587, -0.006276680622249842, -0.01270238310098648, 0.041073404252529144, 0.018010418862104416, -0.00755756301805377, 0.002293880097568035, -0.010665744543075562, -0.006436347495764494, 0.015370593406260014, 0.0253479965031147, 0.006439895369112492, 0.010715418495237827, 0.009523238986730576, -0.007294999901205301, -0.011574070900678635, -0.007536274380981922, 0.03565182909369469, 0.03105342388153076, -0.03854712098836899, 0.017414329573512077, -0.01226241234689951, -0.01230499055236578, 0.02394292876124382, -0.025660233572125435, -0.0010812992695719004, -0.0059750876389443874, -0.0435996875166893, -0.015540904365479946, 0.006631495431065559, 0.007990437559783459, 0.021288910880684853, -0.015029970556497574, -0.008160749450325966, -0.023644883185625076, -0.0504121407866478, 0.010388988070189953, -0.008146556094288826, 0.010992174036800861, -0.014504844322800636, 0.030059941112995148, 0.015171896666288376, 0.003063828917220235, 0.005723168607801199, 0.029889630153775215, 0.008927149698138237, 0.016619542613625526, 0.029009688645601273, -0.021615341305732727, 0.02377261593937874, -0.04232235252857208, -0.0020738947205245495, 0.0012684642570093274, -0.015711216256022453, 0.00917552039027214, -0.028583910316228867, 0.008955534547567368, -0.012901079840958118, 0.01021867711097002, -0.0021963058970868587, -0.027888473123311996, 0.0028119103517383337, -0.004598404746502638, 0.01957160420715809, -0.030372178182005882, -0.02111859992146492, -0.020820554345846176, -0.002350650494918227, 0.004261330235749483, 0.024737713858485222, 0.00667407363653183, 0.02114698477089405, -0.01336943544447422, -0.016293112188577652, 0.030627645552158356, 0.001947935321368277, -0.00013915407180320472, 0.007827222347259521, 0.02263720892369747, 0.005371901672333479, -0.044649939984083176, -0.02876841463148594, -0.020621858537197113, -0.0020508316811174154, -0.018450388684868813, -0.021970154717564583, -0.020721206441521645, 0.010012884624302387, -0.013220413587987423, 0.012191449292004108, -0.004332293290644884, -0.03590729460120201, 0.018081381916999817, 0.013816502876579762, -0.0011132325744256377, 0.00884909089654684, -0.010332217440009117, 0.003640403738245368, -0.004133597016334534, 0.010204484686255455, -0.0046800123527646065, 0.0056663984432816505, 0.013277184218168259, 0.017854299396276474, 0.004924834705889225, 0.02101925015449524, -0.028683258220553398, 0.008536852896213531, 0.04907803609967232, 1.150377283920534e-05, 0.0022175947669893503, -0.0008564351010136306, -0.029350310564041138, -0.0014396625338122249, -0.005602531600743532, -0.013241702690720558, 0.00127289944794029, 0.018677471205592155, 0.033295854926109314, -0.03644661605358124, -0.037723951041698456, -0.004811293911188841, 0.004967412445694208, -0.0087639344856143, -0.029208384454250336, 0.009281964972615242, -0.0435996875166893, 0.0023754877038300037, -0.012014041654765606, 0.03023025207221508, -0.013951332308351994, 0.0009331639157608151, -0.003672337159514427, 0.017187247052788734, -0.004630337934941053, 0.004460026975721121, -0.012099197134375572, 0.019869649782776833, -0.012106293812394142, 0.014490651898086071, -0.03281330689787865, 0.025504114106297493, -0.007302096113562584, -0.02184242196381092, -0.013617806136608124, 0.01755625568330288, -0.008962631225585938, 0.010566395707428455, 0.015072548761963844, 0.009317446500062943, -0.0013270087074488401, 0.034885428845882416, -0.022069504484534264, 0.036191146820783615, -0.005528020206838846, 0.010048366151750088, 0.003388484939932823, 0.013901658356189728, -0.018478773534297943, 0.01411454752087593, 0.0008644184563308954, 0.008373637683689594, 0.02120375446975231, 0.006975666154175997, 0.005503183230757713, 0.006798258516937494, 0.005134175531566143, 0.019287751987576485, 0.0008870379533618689, 0.008969727903604507, 0.013937139883637428, -0.010942500084638596, -0.005049020051956177, -0.02885356917977333, -0.007543370593339205, -0.021558569744229317, 0.037667177617549896, 0.005205138586461544, 0.020054154098033905, -0.02111859992146492, 0.01605183817446232, 0.013156546279788017, 0.025035759434103966, -0.010637358762323856, -0.0011611327063292265, 0.012141775339841843, 0.043287452310323715, -0.00035769803798757493, 0.010098040103912354, 0.006663429085165262, -0.015186089091002941, 0.007078562863171101, 0.005095146130770445, 0.03079795651137829, -0.01297204289585352, 0.0024819320533424616, 0.0024304839316755533, -0.01823749952018261, 0.038376808166503906, 0.02529122494161129, 0.01832265593111515, -0.004247137811034918, 0.036191146820783615, 0.006791162304580212, 0.002840295433998108, 9.945913188857958e-05, -0.02116117626428604, 0.006457636132836342, 0.03255784139037132, 0.009729032404720783, -0.02805878408253193, -0.03023025207221508, -0.0025954730808734894, -0.0058792876079678535, 0.013156546279788017, -0.012226930819451809, 0.022140467539429665, 0.030400564894080162, 0.003977478016167879, 0.008316867984831333, -0.013163642957806587, 0.0393986776471138, 0.005748006049543619, -0.010765092447400093, -0.00839492678642273, 0.011311507783830166, -0.011155389249324799, 0.012418530881404877, 0.02236754819750786, -0.0010200936812907457, -0.018847782164812088, 0.015697022899985313, 0.017385942861437798, 0.016690505668520927, -0.006276680622249842, -0.03514089435338974, -0.011162484996020794, -0.004211656283587217, -0.0144125921651721, 0.023332646116614342, 0.000881715735886246, 0.0076001412235200405, 0.002991091925650835, -0.03088311292231083, -0.010403180494904518, -0.004073278047144413, 0.012851405888795853, 0.008295578882098198, 0.0024393543135374784, -0.035595059394836426, -0.03434610739350319, 0.007213392294943333, 0.009423891082406044, -0.0031596291810274124, -0.027746547013521194, 0.011900501325726509, -0.025532500818371773, -0.01757044717669487, -0.011708900332450867, 0.00149998115375638, 9.105999197345227e-06, 0.004243589472025633, 0.016435038298368454, -0.050355371087789536, 0.019529027864336967, -0.027263997122645378, -0.010488336905837059, -0.0046055009588599205, -0.009828380309045315, 0.004857419524341822, -0.001638359040953219, 0.0029219030402600765, 0.002712561981752515, -0.012893983162939548, 0.004034248646348715, -0.014618385583162308, 0.007380155846476555, -0.023687461391091347, 0.008529757149517536, -0.01829427108168602, 0.0029094843193888664, -0.009019401855766773, 0.001749238814227283, -0.012766250409185886, 0.012241123244166374, -0.011283122934401035, -0.019514834508299828, 0.026937568560242653, -0.0007016470190137625, -0.015895720571279526, -0.017925262451171875, -0.0037610407453030348, -0.03181982412934303, -0.0033121996093541384, -0.025759581476449966, 0.0028615843039005995, -0.020721206441521645, 0.019458064809441566, -0.0016277146060019732, -0.008991016075015068, 0.021473415195941925, -0.014100355096161366, -0.0032359142787754536, -0.020011575892567635, 0.0288961473852396, -0.00041291615343652666, -0.0021643724758177996, -0.010949595831334591, 0.0012072586687281728, 0.008345252834260464, 0.014689348638057709, 0.027093686163425446, 0.012716575525701046, 0.016605349257588387, -0.03105342388153076, -0.017953647300601006, -0.002180339302867651, -0.015200282447040081, -0.020139308646321297, -0.008238808251917362, 0.017059514299035072, 0.0014609515201300383, 0.01818072982132435, -0.009686454199254513, -0.013631998561322689, -0.011801152490079403, -0.008118171244859695, -0.014589999802410603, 0.01511512603610754, -0.030599260702729225, -0.019160019233822823, -0.010665744543075562, -0.017385942861437798, 0.0061134654097259045, 0.024099046364426613, -0.04623951390385628, 0.007855608128011227, -0.0036616926081478596, 0.014071970246732235, -0.012397241778671741, -0.004076826386153698, -0.03579375520348549, -0.0084020234644413, -0.006287324707955122, 0.004839678760617971, -0.014391303062438965, 0.018052995204925537, 0.008437504991889, 0.012908175587654114, -0.033437781035900116, -0.0048183901235461235, -0.025674426928162575, -0.016335690394043922, 0.0015682830708101392, -0.014774504117667675, 0.004350034054368734, -0.012170160189270973, 0.01337653212249279, -0.006457636132836342, -0.010658647865056992, -0.010949595831334591, -0.016449231654405594, 0.011900501325726509, -0.026965953409671783, 0.011141196824610233, 0.012886887416243553, -0.02610020339488983, -0.01832265593111515, -0.020962480455636978, 0.01156697515398264, 0.004853871650993824, -0.011112811043858528, -0.026412442326545715, -0.022097889333963394, -0.027845894917845726, 0.02029542811214924, -0.0010369473602622747, -0.023573920130729675, 0.005066760815680027, 0.00951614324003458, 0.015995068475604057, 0.009700646623969078, -0.01749948412179947, -0.019500641152262688, 0.0034346107859164476, -0.009892246685922146, 0.00420101173222065, 0.01832265593111515, 0.008976823650300503, -0.017982032150030136, 0.04164110869169235, -0.026980146765708923, 0.023460378870368004, 0.026398248970508575, -0.011822441592812538, -0.023573920130729675, 0.018847782164812088, 0.006053146906197071, -0.00544286472722888, -0.013873273506760597, -0.01197146438062191, 0.009345831349492073, 0.02885356917977333, 0.01017609890550375, 0.007621429860591888, -0.01085734460502863, 0.007302096113562584, -0.015711216256022453, -0.025717003270983696, -1.322933894698508e-05, 0.00015977771545294672, -0.008912957273423672, 0.005017086397856474, 0.011510204523801804, 0.031138580292463303, -0.011446337215602398, 0.021572763100266457, 0.004105211701244116, -0.0007047516410239041, 0.0030514104291796684, 0.027874279767274857, 0.017130477353930473, -0.00423649325966835, -0.01085024792701006, 0.009061979129910469, -0.025433151051402092, 0.013490073382854462, 0.007014696020632982, -0.02678144909441471, 0.003526862943544984, -0.01957160420715809, -0.0002718771283980459, 0.013880369253456593, -0.0012507234932854772, 0.0021608243696391582, 0.0018947130301967263, -0.011155389249324799, 0.0067485845647752285, -0.013057198375463486, -0.0032926849089562893, -0.010346410796046257, -0.0011345215607434511, 0.011354085989296436, -0.007309192791581154, -0.014291955158114433, -0.034771885722875595, 0.017357558012008667, -0.0023151689674705267, 0.007422733586281538, 0.01232627872377634, -0.03173466771841049, -0.0260718185454607, 0.010417373850941658, 0.004736782517284155, 0.012234027497470379, -0.015966683626174927, -0.01058058813214302, 0.003299781121313572, 0.003601374104619026, 0.013937139883637428, 0.010644455440342426, -0.0019284205045551062, -0.006227006204426289, 0.006138302385807037, 0.03783749043941498, 0.002104053972288966, 0.02109021320939064, 0.012851405888795853, -0.017726566642522812, 0.02047993242740631, -0.009253580123186111, 0.007883992977440357, 0.019330330193042755, -0.010410277172923088, 0.03888774290680885, -0.011538589373230934, -0.010396084748208523, 0.0029981881380081177, 0.0033778403885662556, -0.009643875993788242, 0.005080953240394592, 0.014071970246732235, -0.0056663984432816505, 0.009289061650633812, -0.013866176828742027, -0.004151337314397097, 0.005921865347772837, -0.012347567826509476, 0.011276026256382465, -0.009998691268265247, -0.02236754819750786, -0.004995797760784626, 0.0363614596426487, -0.018138151615858078, 0.006858577486127615, -0.02451063133776188, 0.007429829798638821, -0.008941342122852802, 0.006219909992069006, -0.0019301945576444268, -0.013142353855073452, -0.011417952366173267, -0.004623241722583771, 0.009324543178081512, -0.010935403406620026, 0.012155967764556408, 0.006826643832027912, 0.004545182455331087, -0.017102090641856194, -0.041158560663461685, -0.006432799156755209, 0.011751478537917137, -0.005343516357243061, 0.013192027807235718, 0.005045471712946892, -0.014845467172563076, 0.01368167344480753, 0.0024641912896186113, 0.0031773699447512627, 0.01904647797346115, -0.01698855124413967, 0.005347064696252346, -0.031110193580389023, 0.046807218343019485, -0.033295854926109314, 0.0175278689712286, -0.012801731936633587, -0.00109726598020643, 0.004786456935107708, 0.02116117626428604, 0.013624902814626694, 0.02255205251276493, -0.01747109927237034, -0.010907018557190895, 0.0011788734700530767, -0.017073705792427063, -0.009799995459616184, -0.022793326526880264, 0.03352293744683266, -0.01683243177831173, -0.00017496822692919523, 0.0037965222727507353, -0.00598218385130167, 0.021515991538763046, 0.0018822945421561599, 0.00880651269108057, -0.01014771405607462, -0.01684662513434887, -0.013915850780904293, -0.005119983106851578, -0.016321498900651932, 0.009750320576131344, -0.03241591528058052, -0.0022814616095274687, 0.0034399330615997314, 0.017215631902217865, -0.0010626714210957289, 0.0225236676633358, 0.013653287664055824, 0.006787614431232214, 0.030741186812520027, -0.0075220814906060696, 0.020621858537197113, -0.00913294218480587, -0.014107451774179935, -0.009778706356883049, -0.006478925235569477, 0.010431566275656223, 0.026540175080299377, -0.016364075243473053, -0.014873852021992207, -0.02673887088894844, 0.00951614324003458, -0.012439819984138012, -0.0028119103517383337, 0.04342937842011452, 0.014362918213009834, -0.028654873371124268, 0.04311713948845863, 0.0037255592178553343, -0.0021395354997366667, -0.0015576386358588934, 0.010786381550133228, 0.028512947261333466, -0.013482976704835892, 0.012404338456690311, 0.024042276665568352, -0.024893833324313164, 0.009906440041959286, 0.0070288884453475475, 0.006883414462208748, 0.009026497602462769, 0.014632578007876873, -0.01967095397412777, -0.02822909504175186, -0.006205717567354441, -0.007784645073115826, -0.0020543797872960567, -0.012950753793120384, -0.018407810479402542, -0.0034878330770879984, -0.004264878574758768, -0.01751367747783661, 0.009047786705195904, 0.002668210072442889, -0.04990120604634285, 0.005918317008763552, -0.025773774832487106, -0.014192607253789902, 0.03323908522725105, 0.003086891956627369, 0.0140151996165514, 0.024056468158960342, -0.014589999802410603, 0.006507310084998608, 0.015555096790194511, 0.0027941695880144835, 0.029350310564041138, -0.022878482937812805, 0.013830695301294327, 0.029832860454916954, -0.018563929945230484, 0.0015984423225745559, 0.017357558012008667, 0.027789125218987465, 0.009047786705195904, -0.009608394466340542, -0.03593568131327629, -0.022864289581775665, 0.0014813533052802086, -0.003489607246592641, 0.0020916354842483997, 0.019869649782776833, 0.012241123244166374, 0.001706660958006978, -0.001182421576231718, -0.00015301404346246272, 0.015072548761963844, -0.0003379614499863237, 0.012042427435517311, -0.014547422528266907, -0.004442286211997271, 0.007841415703296661, 0.010899921879172325, 0.016449231654405594, 0.007926571182906628, 0.027164649218320847, -0.013475880026817322, 0.0029946400318294764, -0.019145827740430832, -0.0006240311777219176, 0.012496590614318848, -0.01819492131471634, 0.006038954481482506, -0.0043251970782876015, -0.016023453325033188, -0.019301945343613625, 0.00914713554084301, -0.016491809859871864, 0.015626059845089912, -0.018024610355496407, 0.014916430227458477, 0.006294421385973692, -0.009487757459282875, -0.00916842371225357, 0.006156043149530888, 0.008210423402488232, 0.014987393282353878, -0.006922443863004446, 0.004978056997060776, -0.02100505866110325, 0.06102820858359337, -0.004094567149877548, 0.01747109927237034, -0.025589270517230034, 0.001666744239628315, -0.03014509752392769, 0.00563091691583395, 0.005229975562542677, 0.02029542811214924, 0.0007686183671467006, -0.0174569059163332, 0.008572334423661232, 0.002437580144032836, -0.012886887416243553, -0.00981418788433075, -0.0009908213978633285, 0.015328015200793743, -0.006588917691260576, 0.01833684742450714, -0.0042506856843829155, 0.010977981612086296, -0.005918317008763552, -0.016406653448939323, -0.001578927505761385, -0.008082689717411995, 0.013206221163272858, -0.01226950902491808, 0.0007025340455584228, 0.01769818179309368, 0.041811421513557434, 0.005843806080520153, -0.011091521941125393, 0.013156546279788017, -0.021430836990475655, 0.005332872271537781, 0.010530914179980755, 0.000312459102133289, 0.013795213773846626, 0.006262487731873989, -0.001916001900099218, 0.014291955158114433, 0.009601298719644547, 0.02530541829764843, 0.025106722488999367, -0.00884199421852827, -0.006542791612446308, 0.0365033857524395, 0.0010112232994288206, 0.024822870269417763, 0.018720049411058426, -0.02120375446975231, -0.015995068475604057, 0.017215631902217865, 0.021544378250837326, 0.0016144090332090855, -0.015980875119566917, 0.005432220175862312, -0.007135333027690649, 0.007287903688848019, -0.0008910296019166708, -0.0018237499753013253, 0.014774504117667675, -0.01263851672410965, -0.021501800045371056, -0.02807297743856907, -0.01512931939214468, -0.003007058519870043, 0.0068905106745660305, 0.0034771887585520744, -0.014589999802410603, -0.012780442833900452, 0.013355243019759655, 0.013830695301294327, -0.013688769191503525, 0.011346989311277866, 0.022211430594325066, -0.015555096790194511, 0.02588731423020363, 0.040477316826581955, 0.018067188560962677, 0.007330481428653002, -0.006784066092222929, -0.007075014524161816, -0.020891517400741577, 0.023105563595891, -0.022665593773126602, 0.00025191876920871437, -0.02531961165368557, 0.022381741553544998, -0.026327285915613174, -0.0038036187179386616, -0.005677042994648218, 0.0031826922204345465, 0.004268426448106766, 0.013113969005644321, 0.016718890517950058, -0.003354777581989765, -0.03105342388153076, 0.041243717074394226, 0.005350613035261631, 0.011503107845783234, 0.02672467939555645, -0.015867333859205246, -0.0028793250676244497, 0.010836055502295494, -0.001507964450865984, -0.001607312704436481, -0.005286746192723513, 0.004651627037674189, 0.02118956297636032, 0.003441707231104374, -0.016463425010442734, 8.03878137958236e-05, 0.008856186643242836, -0.03536797687411308, 0.0035818591713905334, 0.018705856055021286, 0.013184932060539722, -0.019174212589859962, 0.000289839634206146, 0.010502529330551624, 0.01052381843328476, -0.012681093998253345, 0.0003847526968456805, -0.004147789441049099, -0.015952490270137787, -0.027760738506913185, -0.010069654323160648, 0.0029378696344792843, 0.007862703874707222, 0.0075220814906060696, -0.001953257480636239, 0.003736203769221902, -0.008558141998946667, 0.0020455094054341316, 0.004999345634132624, 0.0013003975618630648, 0.011013463139533997, -0.005992828402668238, -0.025717003270983696, 0.014533229172229767, 0.007628526072949171, 0.01906067132949829, -0.004271974787116051, -0.016633735969662666, -0.010907018557190895, 0.0018139926251024008, -0.025787966325879097, -0.01341201364994049, 0.001094604842364788, 0.02949223667383194, -0.021402452141046524, -0.0015753793995827436, -0.007181459106504917, -0.006652784533798695, -0.0012507234932854772, -0.009076172485947609, 0.006720199249684811, -0.026213744655251503, 0.005705427844077349, 0.008260097354650497, -0.004098115488886833, -0.007862703874707222, 0.003959737252444029, 0.0006732618203386664, -0.01474611833691597, 0.031365662813186646, 0.003498477628454566, 0.029208384454250336, 0.005414479412138462, -0.01837942562997341, 0.008529757149517536, -0.009466469287872314, -0.0040448931977152824, 0.010119329206645489, 0.006564080715179443, 0.006940184626728296, 0.010112232528626919, -0.017158862203359604, 0.030372178182005882, 0.002066798508167267, 0.0077420673333108425, 0.017258210107684135, -0.013582324609160423, -0.010992174036800861, 0.0010635585058480501, 0.020011575892567635, -0.009863861836493015, -0.028243288397789, 0.01304300595074892, -0.015654444694519043, 0.01764141023159027, 0.009572913870215416, 0.003413321916013956, -0.008551045320928097, -0.0013252346543595195, 0.004300360102206469, 0.0048183901235461235, 0.022296585142612457, -0.013057198375463486, -0.01900390163064003, 0.004286167211830616, 0.02117536962032318, 0.0017332721035927534, -0.012695287354290485, -0.015143511816859245, -0.011737286113202572, -0.015044162981212139, -0.030741186812520027, 0.0034239664673805237, -0.0175278689712286, -0.022239815443754196, 0.0015097386203706264, 0.017754951491951942, -0.014547422528266907, 0.021416643634438515, -0.013553939759731293, -0.00012906402116641402, -0.003214625408872962, 0.00598218385130167, 0.015895720571279526, 0.001023641787469387, -0.009423891082406044, 0.008359445258975029, -0.019230982288718224, 0.0038142630364745855, 0.01055220328271389, 0.02536218799650669, 0.01626472733914852, -0.009494854137301445, -0.005918317008763552, 0.02043735422194004, -0.029889630153775215, 0.029946399852633476, -0.010133521631360054, 0.030826343223452568, 0.010750900022685528, -0.008692971430718899, 0.0176697950810194, -0.005190946161746979, -0.017982032150030136, -0.007323385216295719, 0.011779863387346268, -0.010090943425893784, -0.012823020108044147, -0.020621858537197113, -0.005063212476670742, -0.00020834302995353937, 0.036219533532857895, -2.1233470761217177e-05, -0.0023595208767801523, -0.0009473565150983632, -0.007777548395097256, 0.008983920328319073, 0.015058356337249279, 0.00228500971570611, 0.0004883143701590598, 0.0063299029134213924, 0.004126500338315964, -0.017953647300601006, -0.0087284529581666, 0.011765670962631702, -0.01096378918737173, -0.020962480455636978, 0.022736556828022003, 0.025575077161192894, -0.04064762592315674, 0.005155464634299278, 0.009232291020452976, -0.0072417776100337505, 0.0037255592178553343, -0.007507889065891504, 0.026894990354776382, 0.004069730173796415, 0.02170049585402012, -0.012922368943691254, 0.01300042774528265, -0.001806009211577475, 0.008721357211470604, 0.009402601979672909, 0.009452275931835175, -0.004087470937520266, -0.019869649782776833, -0.03150758892297745, 0.0014591773506253958, -0.0225946307182312, 0.011645033955574036, 0.016619542613625526, 0.018038803711533546, 0.015952490270137787, 0.010786381550133228, -0.0037255592178553343, 0.011240544728934765, -0.018123958259820938, -0.006972118280827999, 0.017343366518616676, -0.009161327965557575, -0.010360603220760822, 0.014263570308685303, 0.013248798437416553, -0.004697753116488457, -0.0034434811677783728, -0.02608601190149784, 0.002792395418509841, 0.003365421900525689, -0.0029094843193888664, 0.019529027864336967, -0.002327587455511093, -0.0017811721190810204, 0.03570859879255295, -0.0048148417845368385, -0.020962480455636978, 0.023687461391091347, 0.009594202041625977, -0.01748529262840748, 0.020650243386626244, 0.00477581238374114, 0.011857923120260239, -0.009736128151416779, 0.012560456991195679, -0.0005739135667681694, 0.009026497602462769, 0.004279070999473333, -0.007905282080173492, 0.01095669250935316, 0.0030904400628060102, 0.01832265593111515, -0.01266690157353878, 0.011488915421068668, -0.009203905239701271, 0.013028813526034355, 0.000561495020519942, -0.010502529330551624, 0.004460026975721121, -0.0012835438828915358, -0.008210423402488232, 0.006759229116141796, -0.01606603153049946, -0.0011611327063292265, 0.015810564160346985, -0.013206221163272858, -0.004559374880045652, -0.013057198375463486, -0.015370593406260014, 0.00577639089897275, -0.000622257124632597, -0.0035162183921784163, -0.018038803711533546, 0.0061844284646213055, 0.025617655366659164, 0.013993910513818264, -0.012113390490412712, 0.00913294218480587, 0.00813946034759283, -0.01552671194076538, -0.009388409554958344, 0.0071708145551383495, 0.013475880026817322, -0.006344095338135958, -0.012908175587654114, 0.0075930445455014706, 0.021345680579543114, -0.008622008375823498, 0.004154885653406382, 0.007465311326086521, 0.009743224829435349, -0.00013937584299128503, -0.015626059845089912, -0.05782068148255348, 0.01411454752087593, -0.0076001412235200405, -0.03851873427629471, -0.010325121693313122, -0.0057941316626966, -0.001190404873341322, -0.008231712505221367, -0.018052995204925537, -0.002132439287379384, -0.01400810293853283, -0.02465255744755268, 0.045359570533037186, -0.017754951491951942, -0.0006821321439929307, -0.01270947977900505, 0.001241853111423552, 0.005347064696252346, 0.020196080207824707, 0.007131785154342651, 0.014001007191836834, 0.016662120819091797, -0.0024570950772613287, 0.00044107961002737284, -0.006620851345360279, -0.0027427212335169315, 0.012801731936633587, 0.024879639968276024, -0.011268929578363895, 0.00029893178725615144, 0.0075930445455014706, 0.009388409554958344, 0.0022069504484534264, -0.0006040728185325861, 0.01964256726205349, 0.02036639116704464, 0.01698855124413967, -0.017300788313150406, 0.009033594280481339, 0.02188500016927719, 0.012979138642549515, 0.0062589398585259914, 0.0028278769459575415, 0.007976245135068893, -0.009523238986730576, -0.02394292876124382, 0.009906440041959286, -0.005400286987423897, 0.01622214913368225, -0.018549736589193344, 0.011134100146591663, -0.007351770531386137, 0.023332646116614342, -0.005070308689028025, 0.014703541062772274, 0.009580009616911411, 0.01091411430388689, 0.003821359481662512, 0.03289846330881119, 0.005535116884857416, -0.018507160246372223, -0.01691758818924427, 0.002033090917393565, -0.00218211323954165, -0.0019887390080839396, -0.013447495177388191, -0.005041923839598894, -0.022764941677451134, 0.03020186722278595, -0.017073705792427063, 0.015654444694519043, -0.0013624902348965406, -0.00403070030733943, -0.02895291894674301, -0.012226930819451809, -0.009906440041959286, 0.02672467939555645, -0.002449998864904046, 0.00776335597038269, 0.021601147949695587, -0.0039668334648013115, -0.005762198474258184, -0.003778781509026885, 0.020891517400741577, -0.02181403711438179, 0.01757044717669487, -0.0014857884962111712, 0.019117441028356552, 0.005772843025624752, -0.00810397882014513, 0.01979868672788143, -0.020891517400741577, -0.01839361898601055, -0.0143771106377244, -0.015952490270137787, 0.007784645073115826, -0.0023541986010968685, -0.001519495970569551, 0.015370593406260014, 0.019543219357728958, -0.0232474897056818, 0.010566395707428455, -0.02177145890891552, 0.023460378870368004, 0.008082689717411995, 0.006670525297522545, -0.008515563793480396, 0.037525251507759094, 0.008785223588347435, -0.0005193607066757977, 0.0072240368463099, -0.0006994294235482812, 0.015186089091002941, 0.007813029922544956, -0.0030407661106437445, 0.025447344407439232, 0.03514089435338974, -0.027150457724928856, 0.011645033955574036, 0.02822909504175186, 0.006141850724816322, 0.007571755908429623, 0.016875009983778, 0.01757044717669487, 0.02177145890891552, 0.015441556461155415, -0.008600720204412937, 0.025816351175308228, -0.003214625408872962, 0.012610130943357944, 0.0176697950810194, -0.013617806136608124, 0.01683243177831173, -0.00021610461408272386, 0.011801152490079403, -0.01617957279086113, 0.012560456991195679, 0.014646770432591438, -0.0054535092785954475, 0.006759229116141796, 0.015441556461155415, 0.0176697950810194, -0.002205176278948784, 0.006620851345360279, -0.005088049452751875, 0.012226930819451809, -0.0015159478643909097, 0.013014620169997215, 0.0071033998392522335, 0.01471773348748684, -0.0009588880348019302, 0.007891089655458927, 0.006347643677145243, -0.016562772914767265, -0.0072453259490430355, 0.00367943337187171, -9.945913188857958e-05, 0.004204559605568647, 0.010268351063132286, -0.034175798296928406, -0.007827222347259521, -0.015257052145898342, -0.021402452141046524, 0.013908755034208298, 0.014845467172563076, -0.00378232984803617, -0.006624399218708277, -0.005116434767842293, 0.012099197134375572, 0.0037468483205884695, 0.010878633707761765, -0.024170009419322014, 0.01476031169295311, -0.009033594280481339, 0.01819492131471634, 0.0009296157513745129, -0.0032642995938658714, 0.021544378250837326, 0.0007783757755532861, 0.0039668334648013115, -0.01615118607878685, 0.013830695301294327, 0.008593623526394367, 0.010197388008236885, 0.005960894748568535, 0.0074511184357106686, 0.02236754819750786, -0.008664586581289768, -0.017031127586960793, 0.02188500016927719, -0.013802310451865196, -0.00030048409826122224, -0.00013250128540676087, -0.02326168306171894, 0.01512931939214468, -0.008721357211470604, -0.01616537943482399, 0.004967412445694208, -0.007969148457050323, 0.0014919978566467762, 0.02033800631761551, 0.029066458344459534, -0.010275447741150856, -0.003963285591453314, 0.006266036070883274, 0.01979868672788143, -0.009785802103579044, 0.007500792853534222, -0.024737713858485222, 0.005180301610380411, 0.02751946449279785, -0.0026238581631332636, -0.0004843227216042578, -0.005428672302514315, -0.021345680579543114, 0.008323963731527328, -0.020125117152929306, 0.007216940633952618, 0.003152532735839486, 0.0015833626966923475, 0.012439819984138012, -0.036815620958805084, 0.014703541062772274, -0.013773924671113491, -0.02320491150021553, -0.0028456177096813917, 0.015015778131783009, 0.01898970827460289, 0.009154231287539005, -0.012163064442574978, -0.03218883275985718, -0.009764513932168484, 0.004562923219054937, 0.011779863387346268, 0.012567553669214249, 0.006102820858359337, 0.010126424953341484, 0.005439316853880882, -0.008224615827202797, -0.026341479271650314, -0.0034878330770879984, 0.006762777455151081, 0.0204941239207983, 0.0070324367843568325, 0.015398978255689144, 0.0060460506938397884, 0.013192027807235718, 0.017002742737531662, 0.005868643056601286, -0.01303590927273035, 0.014128739945590496, 0.006940184626728296, 0.00664923619478941, 0.023559726774692535, -0.001891164924018085, 0.007862703874707222, -0.016335690394043922, -0.01606603153049946, 0.007259518373757601, 0.0011602456215769053, 0.026852412149310112, -0.007493696641176939, -0.015583482570946217, 0.00477581238374114, -0.001502642291598022, -0.016676312312483788, 0.011056040413677692, -0.007976245135068893, -0.021260526031255722, 0.006947281304746866, -0.0032270438969135284, -0.000537101470399648, -0.007422733586281538, 0.001562073826789856, -0.012986235320568085, 0.0005712524289265275, 0.016449231654405594, -0.01054510660469532, 0.014433881267905235, -0.009643875993788242, 0.029719319194555283, -0.008309771306812763, -0.02320491150021553, 0.008331060409545898, -0.019117441028356552, -0.004513248801231384, 0.022665593773126602, 0.0015017552068457007, 0.01400810293853283, -0.02047993242740631, 0.03565182909369469, -0.015995068475604057, -0.014526133425533772, -0.029066458344459534, -0.010999270714819431, 0.025461537763476372, -0.011914693750441074, -0.014561614952981472, -0.007720778230577707, 0.0008746194071136415, -0.006865673698484898, -0.004027152433991432, 0.005712524522095919, 0.002038413193076849, -0.006755680777132511, 0.01542736403644085, -0.008721357211470604, 0.009594202041625977, -0.0010254158405587077, -0.009934824891388416, 0.01690339483320713, -0.013937139883637428, -0.020593471825122833, -0.00635119155049324, 0.03522605076432228, -0.005034827161580324, -1.469156541133998e-05, -0.002886421512812376, -0.0068869623355567455, -0.022282393649220467, -0.01605183817446232, -0.007876897230744362, 0.005769294686615467, -0.019160019233822823, -0.010467047803103924, -0.019358715042471886, -0.002616761950775981, -0.005020634736865759, 0.001780285150744021, -0.002489028498530388, -0.02248108945786953, -0.03377840295433998, -0.027718162164092064, 0.0026930472813546658, -0.020863132551312447, -0.00012207859253976494, -0.008210423402488232, -0.005488990806043148, 0.011332796886563301, 0.005567050073295832, 0.011233448050916195, -0.00361201842315495, 0.022239815443754196, 0.0021076020784676075, -0.014270666055381298, 0.017783336341381073, -0.01334105059504509, -0.03162112832069397, -0.011474722996354103, -0.014355821534991264, -0.002395002404227853, 0.0029893177561461926, 0.014142933301627636, -0.0006528599187731743, -0.004296811763197184, 0.04130048677325249, -0.0019709982443600893, -0.015668638050556183, -0.005449960939586163, 0.0005867755971848965, -0.006592466030269861, 0.002934321528300643, 0.04700591415166855, -0.01368167344480753, -0.021274717524647713, 0.021232139319181442, 0.006546339951455593, 0.01022577378898859, 0.01686081662774086, -0.01196436770260334, 0.004619693383574486, 0.00109992700163275, -0.030684417113661766, -0.03221721947193146, -0.004431641660630703, -0.017286594957113266, 0.007891089655458927, -0.017797529697418213, 0.011765670962631702, 0.006085080094635487, 0.00013871055853087455, 0.020877324044704437, -0.006266036070883274, -0.0020579281263053417, 0.012085004709661007, -0.0027622361667454243, 0.009352928027510643, 0.003205755027011037, 0.002061476232483983, -0.020763784646987915, -0.005645109340548515, 0.011283122934401035, 0.02263720892369747, 0.017414329573512077, -0.02100505866110325, -0.00918261706829071, 0.009913535788655281, 0.01676146872341633, -0.006266036070883274, -0.004293263424187899, -0.01297204289585352, 0.02187080681324005, -7.146199641283602e-05, -0.0010103362146764994, -0.0061808801256120205, -0.02949223667383194, -0.0037574926391243935, -0.017244016751646996, 0.005755102261900902, -0.011673418805003166, -0.0005601644515991211, 0.03233075886964798, -6.747032603016123e-05, 0.003959737252444029, -0.01096378918737173, -0.0254189595580101, -0.041045017540454865, 0.01617957279086113, 0.027689775452017784, 0.019841264933347702, 0.006613754667341709, -0.015441556461155415, 0.005634464789181948, 0.0035765368957072496, -0.021601147949695587, 0.012312086299061775, 0.02672467939555645, -0.004332293290644884, -0.002432258101180196, -0.027633005753159523, 0.0023116208612918854, -0.02104763686656952, 0.0012604809598997235, -0.0203521978110075, -0.012517879717051983, -0.013951332308351994, -0.02739173173904419, 0.009345831349492073, -0.007149525918066502, 0.028300058096647263, -0.011453433893620968, 0.0032926849089562893, -0.0008582092123106122, 0.023502957075834274, 0.011063137091696262, 0.011715997010469437, -0.004211656283587217, -0.00950904656201601, -0.0029094843193888664, -0.0018184278160333633, -0.006574725266546011, 0.0012063715839758515, -0.015796370804309845, 0.003037218004465103, 0.006305065471678972, -0.008934246376156807, -0.043911926448345184, 0.018152344971895218, -0.008338156156241894, -0.03377840295433998, 0.006603110581636429, 0.003455899888649583, -0.008551045320928097, -0.0042542340233922005, -0.01674727536737919, 0.015867333859205246, -0.011652130633592606, -0.006475376896560192, 0.004268426448106766, 0.011453433893620968, 0.030769571661949158, 0.013624902814626694, 0.013695865869522095, -0.0006581821362487972, 0.008515563793480396, -0.004428093321621418, -0.015753794461488724, 0.0017483517294749618, 0.005723168607801199, -0.01512931939214468, -0.012723672203719616, -0.008494275622069836, 0.007380155846476555, 0.02047993242740631, 0.0005291181150823832, 0.00546060549095273, -0.003952641040086746, 0.00526190921664238, -0.015484134666621685, 0.00839492678642273, -0.00013638207747135311, -0.01192178949713707, 0.012617227621376514, 0.011190870776772499, 0.007401444483548403, -0.012957850471138954, 0.02184242196381092, -0.006730843801051378, 0.00109726598020643, -0.003455899888649583, -0.0019089056877419353, -0.002100505866110325, -0.02952062338590622, -0.019926419481635094, 0.007004051469266415, 0.02963416278362274, -0.01297204289585352, -0.013199124485254288, -0.0009784027934074402, 0.001967450138181448, -0.011148292571306229, 0.01229079719632864, -0.005936057772487402, 0.005843806080520153, -0.016037646681070328, 0.008785223588347435, 0.00670955516397953, 0.0024198393803089857, 0.020125117152929306, 0.024822870269417763, 0.02316233515739441, 0.020125117152929306, -0.002038413193076849, -0.0021590504329651594, 0.015271245501935482, -0.0036155665293335915, 0.019557412713766098, -0.005471250042319298, 0.019557412713766098, 0.0012383050052449107, -0.01623634248971939, 0.0033813887275755405, 0.002503221156075597, 0.0007788193179294467, -0.01688920147716999, 0.002783525036647916, -0.02801620587706566, -0.009225194342434406, -0.04027861729264259, -0.005038375500589609, 0.011460530571639538, 0.04717622697353363, -0.013497169129550457, -0.030372178182005882, 0.009615491144359112, 0.00015756011998746544, -0.0028456177096813917, 0.004460026975721121, -0.0016623090486973524, -0.002208724385127425, 0.010169003158807755, -0.0015443330630660057, -0.0176697950810194, 0.020763784646987915, 0.005464153829962015, -0.008082689717411995, 0.034715116024017334, 0.01974191702902317, -0.022069504484534264, -0.033295854926109314, -0.009218098595738411, -0.008146556094288826, 0.013270087540149689, -0.0021359873935580254, 0.020082538947463036, -0.010715418495237827, -0.02106182835996151, -0.007749163545668125, -0.005077405367046595, 0.002350650494918227, -0.010495432652533054, 0.01226241234689951, 0.015569290146231651, 0.0006049598450772464, -0.006670525297522545, -0.015257052145898342, -0.018663277849555016, -0.004733234643936157, -0.007621429860591888, -0.01163084153085947, -0.008302674628794193, 0.0043216487392783165, 0.005439316853880882, 0.004821937996894121, 0.018138151615858078, 0.012773346155881882, -0.00022264651488512754, -0.005967991426587105, -0.0006865673349238932, -0.0003661249065771699, -0.014462266117334366, -0.01894713006913662, -0.003180918050929904, -0.012943657115101814, 0.0024020986165851355, -0.02101925015449524, -0.00367943337187171, -0.017314979806542397, 0.009317446500062943, -0.018535545095801353, 0.004548730328679085, 0.0013420884497463703, 0.012752057053148746, 0.01769818179309368, 0.014604192227125168, 0.023460378870368004, 0.009792898781597614, 0.03814972937107086, -0.030088325962424278, -0.0035871814470738173, -0.027746547013521194, -0.001732385135255754, -0.005485442467033863, 0.0008839333313517272, 0.016520194709300995, -0.007734970655292273, 0.01830846257507801, 0.0204941239207983, -0.011652130633592606, 0.002834973158314824, -0.0034310626797378063, -0.014107451774179935, -0.015654444694519043, -0.005056116264313459, -0.016633735969662666, -0.015739601105451584, 0.0036616926081478596, -0.00880651269108057, 0.0042506856843829155, 0.0029467400163412094, -0.005886383820325136, -0.003014154965057969, 0.010012884624302387, -0.0009943695040419698, -0.009196809493005276, 0.007642718963325024, 0.012120486237108707, -0.016704699024558067, -0.004520345479249954, -0.0028243288397789, -0.024439670145511627, -0.0033121996093541384, 0.004978056997060776, 0.008316867984831333, -0.03352293744683266, -0.014299051836133003, -0.03451642021536827, -0.0002678854507394135, 0.020707013085484505, 0.008373637683689594, 0.0112973153591156, 0.005134175531566143, 0.02256624586880207, 0.013979718089103699, 0.0144480736926198, 0.006173783913254738, -0.0169459730386734, 0.0013429754180833697, 0.008629105053842068, 0.0036474999506026506, -0.0006227006088010967, -0.011801152490079403, 0.0023116208612918854, 0.012801731936633587, 0.01515770424157381, -0.015186089091002941, -0.008281386457383633, -0.004665819462388754, -0.008203326724469662, 0.012461109086871147, 0.003991670906543732, 0.011119907721877098, 0.025149298831820488, 0.0017554480582475662, 0.004626790061593056, -0.004289715550839901, 0.003063828917220235, -0.023346837610006332, 0.009338735602796078, 0.013227509334683418, 0.002895291894674301, -0.008011726662516594, -0.005049020051956177, -0.00333348847925663, 0.010743803344666958, 0.01478869654238224, -0.012120486237108707, 0.021515991538763046, 0.009977403096854687, 0.015711216256022453, 0.015186089091002941, 0.011723093688488007, 0.017414329573512077, -0.0033778403885662556, -0.001995835453271866, -0.028995495289564133, 0.012581746093928814, 0.028328442946076393, -0.02672467939555645, -0.0018290722509846091, -0.00307269929908216, 0.02871164306998253, -0.011907597072422504, 0.02032381296157837, -0.010467047803103924, -0.010729610919952393, -0.025518307462334633, 0.0006014117388986051, 0.0053860945627093315, -0.006035406142473221, -0.018407810479402542, -0.023659076541662216, 0.005499635357409716, -0.010388988070189953, -0.009416794404387474, 0.0025670877657830715, -0.01054510660469532, -0.02453901804983616, 0.008586526848375797, -0.009665165096521378, -0.024439670145511627, 0.000578348757699132, -0.009558720514178276, 0.013192027807235718, -0.015597674995660782, 0.022679785266518593, -0.010765092447400093, -0.01608022302389145, 0.01226241234689951, -0.02384357899427414, 0.010729610919952393, -0.0037894260603934526, -0.0053789978846907616, -0.004768716171383858, 0.0011336344759911299, -0.007514985278248787, 0.0005269005196169019, 0.010012884624302387, -0.010757995769381523, -0.0038178113754838705, -0.013965525664389133, 0.0017980259144678712, -0.00109726598020643, -0.010381892323493958, -0.009083268232643604, -0.016349883750081062, 0.009757417254149914, -0.0050986940041184425, -0.012837213464081287, -0.019429678097367287, 0.01018319558352232, -0.00954452808946371, -0.0002561322180554271, 0.0025191877502948046, 0.003807166824117303, -0.015895720571279526, 0.00401295954361558, 0.022239815443754196, -0.014646770432591438, -0.00264869537204504, 0.02395712025463581, 0.019557412713766098, -0.001040495466440916, -0.00910455733537674, 0.006443443708121777, -0.005034827161580324, 0.014703541062772274, 0.00944518018513918, -0.015328015200793743, -0.0011389567516744137, 0.029094845056533813, 0.0008058739476837218, -3.2737243600422516e-05, -0.017982032150030136, 0.012986235320568085, -0.0059502506628632545, 0.005162560846656561, -0.011659226380288601, 0.018010418862104416, -0.008203326724469662, -0.001145165995694697, 0.0026238581631332636, -0.02611439675092697, -0.006081532221287489, 0.0070998515002429485, 0.002118246629834175, 0.0116237448528409, 0.005194494035094976, -0.012446916662156582, -0.007954956032335758, 0.005364805459976196, 0.024936409667134285, 0.001043156604282558, 0.011829538270831108, -0.0048893531784415245, 0.004612597171217203, -0.015824757516384125, 0.010701226070523262, 0.009970306418836117, -0.004616145510226488, 0.003530411049723625, 0.002810136182233691, -0.012688190676271915, -0.026455018669366837, 0.017982032150030136, -0.0007322498131543398, -0.008345252834260464, 0.02117536962032318, 0.007962052710354328, -0.004548730328679085, -0.003924255724996328, -0.024028083309531212, -0.003941996488720179, -0.0349138118326664, 0.006095724646002054, -0.01894713006913662, -0.0008604268077760935, -0.009714839048683643, -0.002536928514018655, 0.001227660453878343, 0.01542736403644085, 0.00984966941177845, 0.02876841463148594, 0.004484863951802254, -0.014660962857306004, -0.006376028526574373, 0.005936057772487402, 0.008863283321261406, -0.005549309309571981, 0.00507385702803731, 0.005354160908609629, 0.009736128151416779, -0.0036191148683428764, -0.017187247052788734, -0.0017146443715319037, 0.012439819984138012, -0.006088628433644772, 0.01754206232726574, 0.0033778403885662556, 0.023559726774692535, 0.018152344971895218, 0.0063228062354028225, -0.025489922612905502, 0.01515770424157381, -0.009317446500062943, -0.020834747701883316, -0.0026611138600856066, 0.011943078599870205, -0.010687032714486122, 0.0008453471818938851, 0.017769144847989082, -0.001689807279035449, -0.0015132867265492678, 0.022722363471984863, 0.01900390163064003, -0.02319072000682354, 0.010999270714819431, 0.011666323058307171, -0.009778706356883049, -0.0068940590135753155, 0.018620699644088745, 0.029889630153775215, -0.0017244017217308283, -0.003156081074848771, -0.016009259968996048, 0.0018104444025084376, 0.008288482204079628, 0.00492128636687994, 0.011446337215602398, 0.005549309309571981, -0.0016960165230557323, -0.015413171611726284, -0.0015567515511065722, 0.001567395986057818, 0.008309771306812763, 0.0011017011711373925, -0.02821490354835987, -0.009693550877273083, 0.010729610919952393, -0.014675155282020569, -0.001391762518323958, -0.01891874521970749, 0.030826343223452568, 0.003682981478050351, 0.0012152419658377767, 0.013951332308351994, 0.018663277849555016, 0.01050962507724762, -0.016364075243473053, 0.006901155225932598, -0.004410352557897568, 0.02811555378139019, 0.01199984923005104, -0.01764141023159027, 0.012404338456690311, 0.026242129504680634, 0.003892322536557913, 0.004229397047311068, 0.024340320378541946, -0.016633735969662666, 0.008267194032669067, -0.0011806475231423974, -0.02032381296157837, 0.01974191702902317, 0.01329847238957882, -0.019514834508299828, 0.01476031169295311, -0.005233523901551962, 0.017754951491951942, -0.013511361554265022, -0.003881677985191345, 0.003512670285999775, -0.010126424953341484, 0.006915347650647163, -0.008323963731527328, 0.007805933710187674, -0.01226950902491808, 0.004697753116488457, 0.0395406037569046, 0.002180339302867651, 0.025575077161192894, 0.0011079104151576757, -0.003544603707268834, -0.01835104078054428, -0.0051661087200045586, -0.0056876870803534985, -0.02117536962032318, 0.015583482570946217, 0.0037610407453030348, 0.0033210699912160635, 0.00039096196996979415, 0.025177685543894768, 0.009778706356883049, 0.0021625985391438007, 0.00042378235957585275, 0.007273711264133453, -0.008948438800871372, 0.006120561622083187, 0.015569290146231651, -0.013255895115435123, -0.014973199926316738, 0.01304300595074892, 0.008927149698138237, -0.008089786395430565, 0.0026203100569546223, -0.015995068475604057, 0.005049020051956177, -0.004243589472025633, 0.024141624569892883, -8.936907397583127e-05, -0.006918895989656448, 0.009331638924777508, -0.00988515093922615, 0.004264878574758768, 0.0023382320068776608, 0.01981288008391857, -0.0018876167014241219, 0.0017882684478536248, -0.011375374160706997, -0.019316138699650764, -0.00404844107106328, -0.0026522434782236814, -0.011637937277555466, 0.0030886661261320114, 0.0041087595745921135, 0.0003570327826309949, -0.01615118607878685, -0.029407082125544548, -0.010346410796046257, 0.0088348975405097, -0.0176697950810194, -0.015654444694519043, 0.0027267546392977238, 0.036219533532857895, 0.006173783913254738, -0.011119907721877098, -0.010573492385447025, -0.01818072982132435, -0.01366748008877039, -0.01234047207981348, 0.012127582915127277, 0.03999476507306099, -0.002104053972288966, 0.015924105420708656, -0.02256624586880207, -0.0144125921651721, 0.012028234079480171, 0.003228818066418171, -0.0008409119909629226, -0.011694707907736301, 0.020664434880018234, -0.017754951491951942, -0.009998691268265247, 0.004637434147298336, -0.019543219357728958, -0.01263142004609108, 0.00873554963618517, 0.011751478537917137, -0.004577115643769503, 0.02818651683628559, 0.003308651503175497, -0.00669181440025568, -0.020025769248604774, 0.01058058813214302, 0.0008990129572339356, 0.028002014383673668, 0.0017740759067237377, -0.018748434260487556, -0.024354513734579086, -0.01542736403644085, -0.030514104291796684, -0.008536852896213531, -0.003988122567534447, 0.0005663736956194043, -0.0010697677498683333, -0.00813236366957426, 0.007834319025278091, -0.003180918050929904, 0.0036297591868788004, 0.0073872520588338375, -0.012752057053148746, 0.005371901672333479, 0.00010722070874180645, -0.031138580292463303, -0.016477616503834724, 0.013546843081712723, 0.01833684742450714, 0.007145977579057217, -0.004736782517284155, 0.019912227988243103, 0.0053115831688046455, 0.009558720514178276, -0.004087470937520266, 0.005389642436057329, 6.031857992638834e-05, 0.020678628236055374, 0.018521351739764214, 0.017811721190810204, 0.009466469287872314, -0.005520923994481564, 0.01978449337184429, 0.00880651269108057, -0.010112232528626919, -0.024113239720463753, 0.031337276101112366, 0.01021867711097002, 0.00017252887482754886, -0.0009198583429679275, -0.0051661087200045586, -0.0026859508361667395, 0.00019459394388832152, -0.015654444694519043, -0.006067339330911636, 0.007351770531386137, 0.03570859879255295, 0.013262990862131119, 0.004729686304926872, -0.014320340007543564, -0.009736128151416779, -0.012397241778671741, 0.02258043736219406, 0.003927804064005613, 0.00954452808946371, 0.001052026986144483, -0.017244016751646996, 0.004782908596098423, 0.010899921879172325, -0.005801227875053883, 0.009338735602796078, -0.0031081808265298605, 0.008111074566841125, 0.020153502002358437, -0.006574725266546011, -0.0006399978883564472, -0.01769818179309368, 0.014299051836133003, -0.025489922612905502, 0.0018840685952454805, -0.004481315612792969, 0.0023062985856086016, 0.016491809859871864, -0.011389567516744137, -0.0006954377167858183, -0.009033594280481339, -0.0063937692902982235, 0.006205717567354441, -0.01958579756319523, 0.004130048677325249, 0.002421613549813628, 0.0037149148993194103, 0.000490531965624541, -0.001962127862498164, 0.006993406917899847, 0.008352349512279034, -0.008011726662516594, -0.0015407848404720426, -0.012361760251224041, 0.0006271357997320592, 0.010062558576464653, 0.010530914179980755, 0.01370296161621809, 0.023048793897032738, 0.011268929578363895, 0.004523893352597952, 0.006273132283240557, 0.01193598285317421, 0.024184202775359154, -0.006670525297522545, 0.006014117039740086, 0.025447344407439232, -0.01259593851864338, -0.012645612470805645, -0.01696016453206539, 0.002641598926857114, -0.015242859721183777, -0.0073162890039384365, -0.02946385182440281, -0.004662271589040756, -0.012645612470805645, 0.00350379990413785, -0.013596517033874989, 0.0076001412235200405], "447a6e0c-677f-4539-85ca-5c72307a10ff": [-0.042719196528196335, -0.047902241349220276, 0.0014108450850471854, 0.002632440999150276, -0.015003549866378307, -0.04825687035918236, 0.023405537009239197, 0.033335160464048386, -0.023446455597877502, -0.012582521885633469, -0.021946100518107414, 0.001248875050805509, 0.004364668857306242, -0.02718370407819748, -0.04315566271543503, 0.00590935256332159, -0.024169353768229485, 0.016803976148366928, 0.021100446581840515, -0.04923892021179199, 0.08462002128362656, 0.0006951928953640163, -0.021632390096783638, 0.0006031256634742022, -0.0032973710913211107, -0.009991000406444073, -0.00862704124301672, 0.024428507313132286, -0.020473025739192963, 0.0060662077739834785, 0.02718370407819748, 0.0022147283889353275, 0.02468765899538994, 0.0037713467609137297, -0.015890123322606087, -0.021291401237249374, -0.013209943659603596, 0.03071635775268078, -0.013005349785089493, -0.06186918169260025, -0.05035736784338951, 0.05363086983561516, -0.003201893763616681, -0.023691968992352486, -0.0449015311896801, -0.031316500157117844, -0.0032445176038891077, -0.00021098741854075342, -0.014144254848361015, -0.007392657920718193, 0.013148564845323563, -0.020745817571878433, 0.002204498741775751, 0.022314369678497314, 0.017485955730080605, 0.0006291260942816734, 0.029243281111121178, 0.031671129167079926, -0.014389768242835999, -0.02678815647959709, 0.013387258164584637, 0.02318730391561985, 0.0033382896799594164, -0.016803976148366928, -0.023405537009239197, -0.037072405219078064, -0.007031208835542202, -0.027688369154930115, -0.041246119886636734, 0.008947571739554405, 0.010250152088701725, -0.013169024139642715, -0.016394788399338722, -0.004436276853084564, 0.008572482503950596, -0.002932511968538165, 0.045883581042289734, 0.014676199294626713, 0.006707268767058849, -0.010898033156991005, -0.04127340018749237, 0.0034491114784032106, -0.01233700942248106, -0.010638880543410778, 0.051066625863313675, 0.027661088854074478, 0.026228932663798332, -0.03107098676264286, -0.011518633924424648, -0.03328059986233711, 0.010632060468196869, 0.03128921985626221, -0.028070276603102684, -0.012787115760147572, -0.03025261126458645, -0.012309730052947998, 0.019872883334755898, -0.009861423633992672, 0.024974090978503227, -0.02309182658791542, -0.008183754049241543, 0.0007783091277815402, 0.008845274336636066, 0.012780296616256237, -0.009765946306288242, 0.02828850969672203, 0.008429266512393951, -0.02291451208293438, 0.003050153376534581, 0.029734307900071144, -0.01224835216999054, -0.025942500680685043, 0.011655029840767384, -0.015058107674121857, -0.0315074548125267, -0.003375798696652055, 0.011402697302401066, 0.02921600267291069, 0.004490835126489401, -0.018754437565803528, 0.030770916491746902, -0.008088276721537113, -0.017854223027825356, 0.019040867686271667, 0.012377928011119366, 0.0023255501873791218, 0.010420647449791431, -0.036226753145456314, 0.0016572102904319763, 0.004374898504465818, -0.023228222504258156, -0.005721808411180973, 0.029625190421938896, 0.041791703552007675, 0.02005019783973694, -0.02300998941063881, 2.874437086575199e-05, 0.05324896052479744, -0.020759455859661102, 0.06017787382006645, -0.041682589799165726, -0.026938190683722496, -0.014144254848361015, 0.008913472294807434, 0.014444326050579548, 0.013510013930499554, -0.044574182480573654, 0.016640299931168556, -0.037072405219078064, 0.0378362238407135, -0.04367396980524063, -0.02913416549563408, 0.012875773012638092, 0.001509732217527926, 0.011102627031505108, -0.01677669584751129, -0.0012292680330574512, 0.007665449753403664, -0.004514704458415508, 0.02718370407819748, 0.015890123322606087, -0.06628841161727905, 0.014389768242835999, 0.01863167993724346, 0.025656068697571754, 0.013939660973846912, 0.004364668857306242, 0.01807245798408985, -0.01965465024113655, 0.028452185913920403, 0.019736487418413162, -0.010004639625549316, -0.0020595781970769167, 0.006523134186863899, -0.02504228800535202, -0.012507504783570766, 0.048475105315446854, 0.007167604751884937, -0.005326259881258011, 0.005697939079254866, -0.021004969254136086, 0.0016265211161226034, -0.010093296878039837, -0.00806781742721796, -0.040864214301109314, 0.034562721848487854, 0.005616101436316967, 0.004821595270186663, 0.0005319440388120711, -0.050030019134283066, -0.012575702741742134, -0.030634520575404167, -0.027197344228625298, 0.024346668273210526, -0.02384200319647789, -0.0014619935536757112, 0.02542419731616974, -0.004102106671780348, -0.01270527858287096, -0.018304331228137016, -0.03180752322077751, -0.05472203716635704, -0.05150309205055237, 0.04056414216756821, -0.03033444844186306, 0.03868187963962555, 0.0033689788542687893, 0.007733647711575031, 0.006748187355697155, -0.02438758686184883, 0.019600091502070427, -0.02995254099369049, 0.007242622319608927, 0.00022420076129492372, 0.003120056353509426, 0.003498554928228259, -0.032980531454086304, 0.012207433581352234, 0.0033792085014283657, -0.019272740930318832, -0.020091116428375244, 0.02606525644659996, 0.021864263340830803, -0.019641010090708733, -0.013080366887152195, -0.02392384223639965, -0.02801571786403656, -0.021836984902620316, -0.03128921985626221, 0.03829997032880783, 0.03210759535431862, 0.01428065076470375, -0.009090786799788475, -0.00653677387163043, 0.020200233906507492, 0.03712696582078934, 0.010161494836211205, 0.028915932402014732, 0.061541832983493805, -0.03060724027454853, -0.004139615688472986, 0.06203285604715347, 0.0066458904184401035, -0.02894321084022522, 0.03442632779479027, -0.026188014075160027, -0.012146055698394775, 0.014539803378283978, 0.013898742385208607, -0.004739757627248764, 0.02579246461391449, 0.027197344228625298, -0.0009360169060528278, -0.015317260287702084, -0.030661799013614655, 0.03404441848397255, 0.01584920473396778, -0.006622021086513996, 0.0060014198534190655, -0.012180154211819172, 0.016476625576615334, 0.00679592601954937, 0.031016428023576736, -0.016258392482995987, 0.006570872850716114, -0.004143025726079941, 0.011259482242166996, -0.012139235623180866, -0.026378968730568886, -0.02030934952199459, -0.05518578365445137, -0.005370588507503271, 0.026378968730568886, -0.023419177159667015, -0.011041248217225075, 0.020936772227287292, -0.019545532763004303, 0.003921382129192352, 0.023023629561066628, -0.03472639620304108, 0.003358749207109213, -0.029843423515558243, 0.008981670252978802, 0.009145345538854599, 0.011375418864190578, 0.009731847792863846, 0.01271209865808487, -0.01789514347910881, -0.04672923684120178, -0.0014952401397749782, -0.004940941464155912, 0.009097606875002384, 0.020172953605651855, 0.03311692550778389, 0.0031609751749783754, -0.0019061327911913395, 0.008961210958659649, 0.011586831882596016, -0.04157347232103348, -0.008647500537335873, -0.014185174368321896, -0.010945770889520645, -0.009991000406444073, -0.013748707249760628, 0.031943920999765396, 0.006011649500578642, 0.023146385326981544, 0.016285670921206474, 0.00586502393707633, 0.044192273169755936, 0.08107372373342514, -0.02541055716574192, -0.020854933187365532, -0.003380913520231843, 0.006151455454528332, 0.011811885051429272, -0.01640842668712139, -0.031398337334394455, -0.025437835603952408, -0.02243712544441223, 0.006601561792194843, 0.022955430671572685, -0.04713842272758484, 0.026733597740530968, 0.020432107150554657, -0.02662448026239872, 0.022505324333906174, -0.020568503066897392, 0.030088936910033226, -0.014185174368321896, -0.020009279251098633, 0.007597251795232296, -0.02772928774356842, -0.010502484627068043, -0.010877572931349277, -0.028124835342168808, -0.038054458796978, -0.048938851803541183, -0.023992039263248444, -0.010072837583720684, -0.026201652362942696, -0.026951830834150314, -0.015085387043654919, -0.013578211888670921, 0.03628131002187729, 0.009274921379983425, -0.0002862182736862451, 0.018768075853586197, -0.03701784834265709, 0.040127675980329514, 0.000714373541995883, 0.014621640555560589, 0.0331987626850605, -0.0071198660880327225, 0.007344919256865978, -0.014608001336455345, -0.003948661498725414, 0.003157565137371421, 0.02978886477649212, -0.007310820277780294, 0.04220089316368103, -0.02096405066549778, -0.012998529709875584, 0.005970730911940336, -0.011252662166953087, 0.018577123060822487, 0.002571062883362174, -0.059686847031116486, 0.004647690337151289, -0.018495284020900726, -0.04083693400025368, 0.021264120936393738, 0.02457854151725769, -0.004821595270186663, -0.055785924196243286, -0.04127340018749237, 0.037890780717134476, 0.023064548149704933, 0.004569262731820345, 0.015549133531749249, -0.003423537127673626, 0.01837252825498581, 0.023337339982390404, -0.02161874994635582, 0.04866605997085571, 0.019736487418413162, 0.012459766119718552, 0.022109776735305786, 0.020977690815925598, 0.029079606756567955, -0.046129096299409866, 0.01835888810455799, -0.01770418882369995, -0.05229419097304344, -0.015658250078558922, -0.007904143072664738, 0.011225382797420025, -0.00718806404620409, 0.01568552851676941, -0.01754051260650158, -0.005793415941298008, 0.027865683659911156, 0.03480823338031769, 0.004760216921567917, 0.02419663406908512, -0.013550933450460434, -0.0022726966999471188, -0.010134215466678143, -0.019368218258023262, -0.019872883334755898, 0.038818273693323135, 0.0030075297690927982, 0.014676199294626713, 0.016203833743929863, 0.023432817310094833, -0.023405537009239197, 0.0008290313417091966, 0.014335209503769875, -0.02048666402697563, -0.0028455595020204782, 0.03737247735261917, 0.060614340007305145, 0.024046598002314568, 0.022655360400676727, -0.04102788865566254, 0.00032138286042027175, 0.007549513131380081, 0.041491635143756866, 0.004408997483551502, -0.027661088854074478, -0.027592891827225685, -0.002383518498390913, 0.01303262822329998, -0.002221548231318593, -0.005353539250791073, -0.04116428270936012, 0.001829410088248551, -0.0029597911052405834, 0.012848494574427605, -0.029052328318357468, -0.023078186437487602, 0.01228245161473751, -0.004910252522677183, 0.006963010877370834, 0.007972341030836105, -0.03767254948616028, -0.02496045082807541, 0.006274211686104536, 0.011702768504619598, -0.0024244370870292187, -0.014662560075521469, 0.050493765622377396, -0.024905892089009285, 0.018536202609539032, -0.021100446581840515, 0.0009164100047200918, 0.01075481716543436, -0.020745817571878433, -0.0030160543974488974, -0.03663593903183937, -0.024333029985427856, -0.02339189685881138, 0.0016367508796975017, 0.03388074412941933, 0.03887283429503441, -0.03985488414764404, 0.007754107005894184, 0.03281685337424278, 0.018508924171328545, 0.04367396980524063, 0.027606531977653503, -0.008763437159359455, -0.01493535190820694, 0.011204923503100872, -0.005564952734857798, -0.01182552520185709, -0.032598622143268585, 0.011279941536486149, 0.025546953082084656, 0.0019453465938568115, 0.0033365848939865828, -0.0030348089057952166, -0.018795356154441833, 0.029625190421938896, -0.038245413452386856, 0.028343068435788155, -0.008974850177764893, -0.04831143096089363, 0.020841294899582863, 0.004337389953434467, 0.047902241349220276, 0.0011124791344627738, 0.018522564321756363, -0.020009279251098633, 0.013134925626218319, -0.01837252825498581, -0.011443616822361946, -0.026883631944656372, -0.016858533024787903, -0.01252796407788992, 0.02328278124332428, 0.002187449252232909, -0.04064597934484482, 0.03633587062358856, -0.0009743782575242221, 0.01075481716543436, -0.03505374863743782, 0.015153585001826286, -0.005213733296841383, 0.02561515010893345, -0.026215292513370514, 0.013155384920537472, -0.05294888839125633, 0.0027773615438491106, 0.0018379348330199718, 0.015289980918169022, -0.01118446420878172, -0.013578211888670921, 0.01419881358742714, -0.011048068292438984, -0.01331224013119936, -0.03843636438250542, 0.0076859090477228165, 0.03860004246234894, 0.039009228348731995, 0.0042112236842513084, -0.02198701910674572, 0.011961921118199825, 0.015303620137274265, 0.0016179963713511825, -0.01790878176689148, 0.0018583942437544465, -0.026951830834150314, -0.014294290915131569, 0.010366088710725307, -0.012821215204894543, -0.0053944578394293785, 0.02607889659702778, 0.030034378170967102, 0.012814395129680634, -0.030498124659061432, -0.002484110416844487, 0.021946100518107414, 0.012439306825399399, -0.007774566765874624, 0.01773146726191044, 0.022846313193440437, 0.00922718271613121, -0.00904304813593626, 0.022150695323944092, -0.014989909715950489, -0.009118066169321537, -0.01992744207382202, -0.013250862248241901, 0.024073876440525055, -0.01995472051203251, 0.01743139699101448, -0.0051387157291173935, -0.01575372740626335, -0.005275111645460129, -0.016203833743929863, 0.02736101858317852, 0.01965465024113655, 0.01234382949769497, -0.021918822079896927, 0.0021669899579137564, 0.011893723160028458, 0.007317640352994204, -0.00913852546364069, 0.03759071230888367, 0.018999949097633362, 0.011539093218743801, 0.06503356993198395, 0.00755633320659399, -0.006086667068302631, 0.04042774438858032, -0.024469425901770592, -0.018413446843624115, -0.03851820155978203, 0.027047308161854744, 0.01548093557357788, -0.007126686163246632, 0.025028647854924202, 0.00908396765589714, 0.00862022116780281, 0.015712808817625046, -0.008101916871964931, -0.03794534131884575, -0.03551749512553215, -0.015071747824549675, 0.006727728061378002, 0.03292597085237503, -0.005131896119564772, 0.00213459599763155, -0.040755096822977066, 0.03579028695821762, -0.010979870334267616, 0.004940941464155912, 0.005084157455712557, 0.021768786013126373, 0.035026468336582184, -0.02310546673834324, 0.038736436516046524, 0.022709917277097702, -0.04462873935699463, 0.01511266641318798, 0.022109776735305786, 0.035108305513858795, 0.00877025630325079, 0.01642206683754921, 0.0007199146202765405, 0.005807055626064539, 0.02913416549563408, -0.01844072714447975, 0.013523654080927372, 0.012105136178433895, 0.0018890833016484976, 0.04683835431933403, -0.01819521375000477, -0.0038054457399994135, 0.01578100584447384, -0.02245076559484005, 0.028806814923882484, -0.011013968847692013, 0.014294290915131569, 0.014144254848361015, -0.018304331228137016, 0.019340939819812775, -0.031943920999765396, 0.011627750471234322, -0.020077476277947426, -0.011566372588276863, -0.011225382797420025, -0.050793834030628204, 0.051148463040590286, -0.0029990049079060555, 0.009861423633992672, 0.023119105026125908, -0.01526270154863596, -0.02104588784277439, -0.03188936412334442, -0.02300998941063881, -0.020923132076859474, 0.016094716265797615, -0.008606581948697567, -0.01428065076470375, -0.006202603690326214, 0.003764526918530464, -0.004576082807034254, -0.0012616621097549796, -0.05335807800292969, -0.000490172766149044, -0.004548803437501192, 0.012146055698394775, 0.007222163025289774, -0.015071747824549675, 0.015126305632293224, 0.014717117883265018, 0.012166514992713928, 0.020336629822850227, 0.0285613015294075, -0.033607952296733856, 0.01827705092728138, 0.007617711089551449, 0.0016742597799748182, 0.02197338081896305, -0.01726772077381611, -0.028179394081234932, 0.025151405483484268, 0.009629550389945507, 0.01882263459265232, -0.023310059681534767, 0.009970540180802345, 0.024824054911732674, -0.009950080886483192, -0.015426376834511757, 0.0035599330440163612, -0.00537740858271718, -0.01568552851676941, 1.4425465451495256e-05, 0.000873786280862987, -0.02521960251033306, -0.05185772106051445, 0.0020595781970769167, 0.009806865826249123, -0.016544822603464127, -0.02123684249818325, 0.024251190945506096, 0.0050193690694868565, -0.019900161772966385, -0.004204403609037399, -0.0012914987746626139, -0.006703858729451895, 4.819144305656664e-05, 0.002671654801815748, 0.02355557307600975, -0.004388538189232349, 0.020241152495145798, 0.012036938220262527, 0.007638170849531889, -0.04972994700074196, -0.010522943921387196, 0.0024551262613385916, 0.027988439425826073, -0.01010693609714508, 0.03164384886622429, -0.01790878176689148, -0.03227126970887184, 0.00598437013104558, -0.004865923896431923, 0.005241012666374445, 0.020554862916469574, -0.010243332013487816, 0.04582902416586876, 0.02422391250729561, 0.003237697761505842, -0.01773146726191044, 0.02374652773141861, -0.006523134186863899, 0.026133455336093903, 0.006697039119899273, 0.004374898504465818, 0.006918682251125574, -0.04869333654642105, -0.00843608658760786, 0.008204213343560696, 0.03985488414764404, 0.025478754192590714, -0.007263082079589367, 0.007897322997450829, -0.01005919836461544, 0.01108216680586338, -0.017049487680196762, 0.0038668238557875156, 0.02051394432783127, 0.03235310688614845, -0.02385564334690571, 0.007658630143851042, 0.04471057653427124, -0.03128921985626221, -0.008661139756441116, -0.012071037665009499, 0.02051394432783127, -0.01717224344611168, -0.0014619935536757112, -0.015030828304588795, 0.03423537313938141, 0.0005617806455120444, -0.002543783513829112, -0.020282071083784103, -1.4012547580932733e-05, -0.04506520554423332, 0.047820404171943665, 0.01108216680586338, 0.03295325115323067, 0.0042896512895822525, 0.0315074548125267, -0.011614111252129078, 0.022218892350792885, 0.014594362117350101, 0.018236132338643074, -0.0028830685187131166, -0.013612311333417892, -0.023323699831962585, 0.015699168667197227, 0.00559223210439086, 0.026188014075160027, -0.0007216195808723569, 0.02561515010893345, -0.012923511676490307, 0.029652468860149384, -0.005135305691510439, 0.014635280705988407, 0.030552683398127556, -0.009309020824730396, 0.010979870334267616, 0.04481969401240349, 0.013339519500732422, -0.020663980394601822, -0.022887233644723892, -0.00709940679371357, -0.011007149703800678, 0.009104426950216293, -0.026365328580141068, 0.011839164420962334, 0.007113046478480101, 0.03322604298591614, -0.006431066896766424, -0.016572102904319763, 0.015085387043654919, 0.03243494778871536, 0.01726772077381611, 0.011655029840767384, -0.001479043043218553, -0.010468386113643646, -0.000684963189996779, 0.011682309210300446, -0.048638779670000076, 0.02847946435213089, 0.008006439544260502, 0.007808665744960308, -0.01696765050292015, 0.05701348930597305, 0.028179394081234932, -0.02197338081896305, -0.029843423515558243, 0.02059578150510788, 0.017595071345567703, 0.005483115557581186, 0.004538573790341616, -0.024919532239437103, 0.007781386375427246, -0.017404116690158844, -0.0009147050441242754, -0.012950791046023369, 0.008183754049241543, -0.027020027860999107, 0.02382836490869522, 0.03308964520692825, -0.04776584729552269, -0.05684981122612953, 0.0013929432025179267, 0.01297807041555643, -0.032516784965991974, -0.0014304521027952433, -0.02225981093943119, 0.03890011087059975, -0.00250456971116364, 0.010659339837729931, -0.008606581948697567, -0.02198701910674572, -0.030470844358205795, -0.0009948376100510359, 0.03988216072320938, 0.01154591329395771, 0.0028472645208239555, -0.04803863912820816, 0.004351029172539711, -0.03718152269721031, 0.016653940081596375, -0.02921600267291069, -0.0003013497043866664, -0.04231001064181328, -0.0012071037199348211, 0.0012454651296138763, -0.018672598525881767, 0.029979819431900978, -0.007235802710056305, 0.02774292789399624, 0.03497191146016121, 0.03270773962140083, -0.025915222242474556, -0.0077200080268085, 0.0029819554183632135, 0.009991000406444073, 0.01984560489654541, -0.034917350858449936, 0.013107646256685257, -0.007549513131380081, -0.0003085957432631403, 0.008708878420293331, 0.015017189085483551, -0.004784086253494024, -0.014771676622331142, -0.00502959918230772, 0.008940751664340496, -0.02744285576045513, -0.0042112236842513084, 0.00456585269421339, 0.010270611383020878, -0.02011839672923088, -0.009036228992044926, 0.04607453569769859, -0.00440217787399888, -0.01526270154863596, -0.0018839684780687094, 0.0048693339340388775, 0.03745431452989578, -0.02456490322947502, -0.009991000406444073, -0.001977740554139018, 0.009404497221112251, 0.010891213081777096, 0.024182993918657303, -0.04454690217971802, -0.004906842485070229, 0.024414867162704468, -0.018904471769928932, -0.01773146726191044, 0.0014747807290405035, 0.008981670252978802, 0.0030331038869917393, -0.005479705519974232, 0.00253696390427649, 0.014130615629255772, -0.017567792907357216, 0.023978399112820625, 0.014157894998788834, 0.01921818219125271, -0.017022209241986275, 0.011000329628586769, -0.02410115674138069, -0.017281360924243927, -0.0018174754222854972, -0.016926731914281845, -0.04449234530329704, 0.01535817887634039, -0.016449345275759697, -0.01224153209477663, 0.02839762717485428, 0.0006913567194715142, 0.020977690815925598, -0.006321950349956751, 0.00783594511449337, 0.016285670921206474, 0.015235422179102898, -0.005503574851900339, 0.015508214011788368, -0.0010545108234509826, 0.01957281306385994, 0.041682589799165726, 0.01809973642230034, -0.013571392744779587, 0.00783594511449337, 0.006151455454528332, -0.019627369940280914, -0.0029563813004642725, 0.0013852708507329226, 0.04757489264011383, 0.026869993656873703, -0.01733591966331005, 0.022750837728381157, 0.020241152495145798, 0.01493535190820694, 0.024837695062160492, 0.005807055626064539, -0.0018379348330199718, -0.02022751234471798, -0.03183480352163315, -0.00755633320659399, -0.0014935351209715009, -0.011320860125124454, 0.00586502393707633, -0.012841674499213696, 0.01724044233560562, -0.013475915417075157, -0.03022533282637596, -0.005943451542407274, -0.005438786465674639, 0.0044942451640963554, 0.028124835342168808, 0.025396917015314102, 0.01883627474308014, -0.003423537127673626, -0.014730758033692837, 0.03311692550778389, 0.008831635117530823, -0.013837364502251148, 0.012671179138123989, -0.017295001074671745, 0.023705607280135155, 0.003386028343811631, -0.02410115674138069, -0.0005425999406725168, -0.01938185840845108, 0.010863933712244034, -0.02774292789399624, -0.006812975276261568, -0.0055274441838264465, 0.014321570284664631, -0.005663840100169182, -0.03175296634435654, 0.007617711089551449, 0.007904143072664738, 0.04282831400632858, -0.024796774610877037, -0.03936385735869408, -0.014785315841436386, -0.035381097346544266, -0.0024738807696849108, 0.02644716575741768, 0.023691968992352486, -0.007454036269336939, -0.006816385313868523, -0.018672598525881767, 0.015003549866378307, 0.00297002075240016, 0.02948879450559616, -0.020145675167441368, 0.025301439687609673, 0.007604071870446205, -0.030088936910033226, -0.028724977746605873, -0.022123415023088455, 0.018331609666347504, -0.007760927081108093, -0.03980032354593277, 0.0044806054793298244, -0.02809755690395832, -0.026119815185666084, 0.009206723421812057, -0.016108356416225433, -0.0032905512489378452, 0.02178242616355419, -0.01779966615140438, 0.0010323465103283525, 0.01126630138605833, 0.031671129167079926, -0.01155273336917162, 0.03876371681690216, -0.0001258465345017612, -0.029079606756567955, -0.003251337446272373, 0.002305090893059969, -0.01760871149599552, -0.01359185203909874, -0.01242566667497158, -0.06421519070863724, -0.020814014598727226, 0.03396258130669594, -0.02021387219429016, -0.007235802710056305, 0.0021158414892852306, -0.0064481161534786224, -0.0033775034826248884, 0.0170767679810524, 0.009793225675821304, -0.01419881358742714, 0.028452185913920403, 0.01164139062166214, -0.018399806693196297, 0.0031217613723129034, 0.004610181786119938, -0.03767254948616028, -0.015153585001826286, -0.025192324072122574, -0.0020936771761626005, -0.02652900293469429, -0.011211743578314781, 0.005322850309312344, 0.013025809079408646, -0.001520814374089241, -0.012412027455866337, -0.00440217787399888, -0.014185174368321896, 0.0010008049430325627, 0.01957281306385994, -0.016490265727043152, 0.009915982373058796, 0.0032564522698521614, -0.0015387162566184998, -0.028697697445750237, 0.005506984423846006, -0.0010792325483635068, 0.00031818606657907367, -0.008777076378464699, -0.01696765050292015, 0.006867534015327692, 0.012732557952404022, 0.020200233906507492, 0.014171534217894077, -0.004582902416586876, 0.03349883481860161, -0.027401937171816826, -0.0038838733453303576, -0.013700968585908413, 0.0005583707243204117, 0.007324459962546825, 0.014867153950035572, 0.0008230640087276697, -0.006008239462971687, 0.02625621110200882, 0.009281741455197334, -0.006195784080773592, 0.00317631964571774, -0.01642206683754921, -0.038245413452386856, 0.00895439088344574, 0.009568172506988049, -0.018413446843624115, -0.015317260287702084, -0.003911152482032776, -0.021277761086821556, 0.004415817558765411, -0.02382836490869522, -0.003699738997966051, -0.0037542972713708878, 0.0292978398501873, -0.006083257496356964, 0.015630969777703285, -0.01994108036160469, 0.01874079741537571, -0.0034098976757377386, 0.03014349564909935, -0.003877053502947092, -0.0019589862786233425, 0.013332699425518513, 0.021468715742230415, 0.012132415547966957, 0.028233952820301056, -0.01688581332564354, -0.035490214824676514, 0.016381148248910904, 0.012466585263609886, 0.03619947284460068, 0.02125048264861107, -0.0050193690694868565, 0.009247642010450363, -0.01288941316306591, 0.03985488414764404, 0.022873593494296074, -0.009568172506988049, 0.013182664290070534, 0.01474439725279808, 0.003948661498725414, 0.00024870940251275897, 0.010966231115162373, -0.0071198660880327225, -0.01288941316306591, 0.026842713356018066, 0.01090485230088234, -0.019368218258023262, -0.028124835342168808, -0.012746197171509266, -0.02978886477649212, -0.0022505323868244886, -0.010495664551854134, -0.0002059791295323521, -0.002560833003371954, 0.025628790259361267, 0.012466585263609886, -0.022137055173516273, -0.005827514920383692, -0.01358503196388483, -0.027415577322244644, -0.026378968730568886, -0.004719298332929611, 0.01891811192035675, -0.012418847531080246, -0.01038654800504446, -0.033335160464048386, -0.0011789720738306642, -0.0033178303856402636, 0.010536584071815014, 0.029570631682872772, -0.004562443122267723, -0.020541222766041756, -0.04274647682905197, 0.014962630346417427, -0.009056688286364079, 0.03303508833050728, -0.022205254063010216, 0.0077268281020224094, 0.010400188155472279, -0.0051659950986504555, -0.01613563485443592, -0.027715647593140602, -0.004122566431760788, 0.008886192925274372, 0.002627326175570488, -0.04312838613986969, -0.03461727872490883, 0.01799061894416809, 0.020268430933356285, -0.020200233906507492, -0.01947733573615551, 0.020363908261060715, -0.021482354030013084, 0.02337825857102871, -0.00549675477668643, 0.006073027849197388, 0.004804545547813177, 0.005551313515752554, 0.02783840335905552, -0.010686619207262993, 0.018972670659422874, -0.04983906447887421, -0.006860713940113783, -0.0028472645208239555, 0.024878613650798798, 0.04127340018749237, -0.003955481108278036, -0.011095806956291199, -0.0031268761958926916, -0.01196874026209116, 0.023350978270173073, -0.012923511676490307, 0.009554533287882805, -0.009349939413368702, 0.03870915621519089, -0.018140655010938644, -0.011907362379133701, -0.004524934105575085, -0.017117686569690704, -0.006400377955287695, 0.029734307900071144, 0.02125048264861107, -0.01968192867934704, 0.007951880805194378, 0.015153585001826286, 0.016667580232024193, -0.010870753787457943, -0.01717224344611168, -0.028506744652986526, -0.008081457577645779, -0.037072405219078064, -0.009636370465159416, -0.02513776533305645, -0.0007267344044521451, -0.019409136846661568, -0.005056878086179495, 0.021864263340830803, -0.015044468455016613, -0.005827514920383692, 0.007692729122936726, 0.03216215595602989, 0.012534783221781254, -0.00844290666282177, 0.005493345204740763, -0.019886523485183716, 0.018877193331718445, 0.0031302860006690025, 0.014758036471903324, 0.0033365848939865828, 0.010468386113643646, -0.016108356416225433, 0.008524743840098381, 0.010645700618624687, 0.017745107412338257, -0.03838180750608444, -0.020977690815925598, 0.009479515254497528, -0.009152165614068508, 0.033798906952142715, 0.007992800325155258, -0.007672269828617573, -0.007822304964065552, -0.04007311537861824, 0.0022283680737018585, 0.03829997032880783, -0.02208249643445015, -0.023160025477409363, -0.0012275631306692958, -0.008831635117530823, 0.014867153950035572, 0.0028779536951333284, -0.012964430265128613, -0.0009539188467897475, -0.010713898576796055, 0.015617331489920616, 0.006587922107428312, -0.01586284302175045, -0.019054507836699486, -0.01928638108074665, 0.005807055626064539, -0.023964760825037956, -0.02763381041586399, 0.024783136323094368, 0.009363578632473946, 0.007972341030836105, -0.03865459933876991, 0.006789105944335461, 0.005264881998300552, -0.012575702741742134, -0.046047259122133255, -0.024005679413676262, -0.0027569022495299578, 0.01614927500486374, 0.007945061661303043, -0.01164139062166214, -0.010986690409481525, -0.01038654800504446, 0.021468715742230415, 0.00895439088344574, -0.012473405338823795, -0.006768646650016308, -0.005367178935557604, -0.01938185840845108, -0.005861613899469376, 0.0056911190040409565, 0.00519327400252223, 0.031234662979841232, 0.0022726966999471188, -0.007897322997450829, -0.007440396584570408, 0.01872715726494789, 0.02412843517959118, 0.005097797140479088, -0.036499544978141785, -0.011955101042985916, 0.0026511955074965954, -0.00913852546364069, -0.0033399946987628937, -0.0011551028583198786, -0.024537622928619385, 0.00651631411164999, -0.010366088710725307, 0.00012467437773011625, -0.002709163585677743, 0.017308639362454414, -0.02347373589873314, 0.012296090833842754, -0.023350978270173073, -0.007931421510875225, -0.0013383848126977682, -0.00407823733985424, -0.008579302579164505, 0.011702768504619598, 0.03284413367509842, 0.008265592157840729, -0.02596978098154068, 0.0037713467609137297, 0.004296470899134874, 0.011314040049910545, -0.012330189347267151, -0.0028660190291702747, 0.014171534217894077, -0.006035518832504749, -0.013359978795051575, -0.021959740668535233, -0.0022079087793827057, 0.004981860518455505, 0.006444706581532955, -0.005312620662152767, 0.014962630346417427, 0.018986310809850693, -0.010775276459753513, 0.03118010424077511, 0.013380438089370728, 0.02067761868238449, -0.007297181058675051, 0.03191664069890976, 0.0020987919997423887, -0.0076859090477228165, -0.0011389057617634535, -0.0030331038869917393, -0.019641010090708733, 0.006939141545444727, -0.011129905469715595, -0.028806814923882484, -0.01072071772068739, -0.012623441405594349, -0.0003039071161765605, -0.001986265415325761, 0.0033519293647259474, 0.003498554928228259, 0.0002721524506341666, -0.023255500942468643, 0.019068147987127304, -0.022559883072972298, -0.019818324595689774, -0.0060014198534190655, 0.008395167998969555, -0.019136345013976097, 0.014403407461941242, 0.012139235623180866, -0.02142779715359211, 0.012330189347267151, -0.012637080624699593, 0.013932841829955578, -0.02560151182115078, -0.03745431452989578, -0.021100446581840515, 0.00559223210439086, 0.008388347923755646, 0.016844894737005234, -0.016353869810700417, -0.02521960251033306, 0.022928152233362198, 0.0011593651724979281, -0.01243248675018549, -0.0046647400595247746, -0.0033007808960974216, 0.009193084202706814, 0.02635168842971325, 0.004050958435982466, 0.004726117942482233, 0.007242622319608927, 0.011886903084814548, -0.010829835198819637, 0.037781666964292526, -0.005936631932854652, -0.002213023602962494, -0.004988680128008127, 0.005871843546628952, 0.038818273693323135, -0.031207382678985596, 0.016490265727043152, -0.0020851523149758577, 0.02280539460480213, -0.0034303569700568914, 0.02568334899842739, 0.018959030508995056, -0.005752497352659702, -0.003375798696652055, -0.012787115760147572, -0.010263792239129543, 0.005380818620324135, 0.010338809341192245, -0.004221453331410885, -0.016681218519806862, -0.02160511165857315, 0.019136345013976097, 0.011054888367652893, -0.016353869810700417, -0.013728247955441475, -0.028834093362092972, -0.0019658058881759644, 0.014989909715950489, -0.01621747389435768, -0.0020578731782734394, -0.013319060206413269, 0.007917782291769981, 0.011689129285514355, -0.00456585269421339, 0.006905042566359043, 0.007167604751884937, -0.0076859090477228165, 0.003092777216807008, -0.05843200534582138, -0.05082111433148384, 0.0029512664768844843, -0.007290360983461142, 0.015467295423150063, 0.017390478402376175, 0.002804640680551529, -0.023214582353830338, 0.00931583996862173, 0.007433576975017786, -0.013366798870265484, -0.0028285100124776363, -0.01066615991294384, 0.005892302840948105, -0.014212452806532383, 0.017117686569690704, -0.03199847787618637, 0.0024142074398696423, -0.007413117215037346, -0.028261231258511543, -0.0052444227039813995, 0.018017899245023727, -0.007365379016846418, 0.013823725283145905, 0.00718806404620409, 0.003285436425358057, -0.011075347661972046, -0.03819085285067558, 0.001727965660393238, 0.019531892612576485, 0.025642430409789085, -0.01400785893201828, 0.0008609991637058556, 0.011716408655047417, -0.016367508098483086, 0.03570844605565071, 0.0031677947845309973, 0.002426142105832696, -0.007351739332079887, -0.011675489135086536, 0.003529244102537632, -0.007795026060193777, -0.014676199294626713, 0.004787496291100979, -0.01909542642533779, -0.015494574792683125, 0.022791756317019463, 0.01038654800504446, -0.016094716265797615, 0.018140655010938644, 0.026392607018351555, 0.007406297605484724, 0.041873544454574585, -0.019791046157479286, 0.020077476277947426, -0.028152113780379295, -0.0038565942086279392, -0.031207382678985596, -0.025355998426675797, -0.006175324786454439, 0.023419177159667015, -0.00670044869184494, -0.0008311625570058823, 0.005401277914643288, 0.008790715597569942, -0.02309182658791542, -0.011382238008081913, 0.03295325115323067, -0.01209831703454256, -0.030880032107234, 0.020991329103708267, 0.01535817887634039, -0.026924552395939827, 0.01679033599793911, -0.01260980125516653, 0.028070276603102684, -0.02793388068675995, 0.032898690551519394, 0.03911834582686424, -0.016462985426187515, -0.007413117215037346, 0.00895439088344574, 0.011873263865709305, 0.014880793169140816, 0.011723227798938751, -0.015058107674121857, -0.005738857667893171, 0.017867863178253174, -6.830451457062736e-05, 0.019122706726193428, -0.007679089438170195, -0.009377218782901764, -0.005002319812774658, -0.011648210696876049, 0.0024909302592277527, -0.005022779107093811, 0.017922421917319298, -0.0022147283889353275, 0.007951880805194378, -0.004122566431760788, 0.014526164159178734, 0.024251190945506096, 0.0015608806861564517, -0.0015873073134571314, 0.009650010615587234, 0.003380913520231843, -0.02170058898627758, 0.018222492188215256, 0.011996019631624222, 0.017404116690158844, -0.008511104620993137, 0.022941790521144867, 0.02086857333779335, -0.027579251676797867, 0.008695239201188087, 0.002804640680551529, 0.018317969515919685, 0.0014739282196387649, -0.014321570284664631, -0.023132745176553726, -0.021495994180440903, -0.0008205065969377756, -0.0005613543908111751, -0.01623111218214035, 0.01760871149599552, 0.00950679462403059, -0.004200994037091732, 0.011511814780533314, -0.007269901689141989, 0.0042760116048157215, -0.004968220833688974, -0.0024755855556577444, 0.005196684040129185, -0.004327159840613604, -0.00602869875729084, -0.01631294935941696, 0.0023681737948209047, -0.0016495379386469722, 0.011668669991195202, -0.004044138360768557, 0.0003759412211365998, -0.0054353768937289715, -0.013059907592833042, -0.004190764389932156, -0.004214633256196976, 0.007263082079589367, -0.005060288123786449, 0.0038020359352231026, 0.0008460808312520385, -0.0014688133960589767, 0.00718806404620409, 0.025847023352980614, 0.013046268373727798, 0.013148564845323563, 0.006304900627583265, -0.020077476277947426, -0.014512524008750916, -0.00330589571967721, 0.0038259050343185663, -0.003237697761505842, -0.006444706581532955, -0.009261282160878181, -0.008749797008931637, 0.027020027860999107, 0.009909162297844887, 0.03128921985626221, 0.006386738270521164, -0.005653610453009605, -0.016844894737005234, -0.014116976410150528, -0.005943451542407274, 4.310323856770992e-05, -0.009152165614068508, -0.014962630346417427, 0.00454198382794857, -0.009220363572239876, 0.007733647711575031, -0.028534023091197014, 0.014512524008750916, 0.007078947499394417, 0.014444326050579548, -0.009991000406444073, 0.004354439210146666, 0.025574231520295143, -0.009547713212668896, -0.02236892841756344, -0.0014730757102370262, -0.011041248217225075, 0.011593651957809925, 0.009431776590645313, -0.005588822066783905, 0.019422776997089386, 0.021741507574915886, -0.009240822866559029, -0.003529244102537632, -0.005830924957990646, -0.014130615629255772, 0.025751546025276184, 0.003894102992489934, 0.0011465781135484576, 0.013018989004194736, -0.006410607602447271, -0.006403787527233362, 0.010325170122087002, 0.013878283090889454, 0.031671129167079926, 0.01854984275996685, -0.014553442597389221, -0.0068504842929542065, 0.016476625576615334, -0.008013259619474411, 0.015549133531749249, 0.021318679675459862, -0.022300729528069496, -0.0071198660880327225, 0.005602461751550436, -0.002139710821211338, -0.008088276721537113, -0.010857113637030125, 0.008286051452159882, 0.0023801084607839584, -0.005090977065265179, -0.003706558607518673, 0.004978450480848551, -0.004654510412365198, -0.0062980810180306435, -0.01846800558269024, -0.008763437159359455, -0.0018328200094401836, 0.01677669584751129, -0.008238312788307667, 0.002782476367428899, -0.009254462085664272, -0.015099026262760162, 0.002344304695725441, 0.006345819681882858, -0.021004969254136086, -0.01483987458050251, 0.03641770780086517, -0.02206885814666748, 0.013025809079408646, 0.025001369416713715, 0.02105952799320221, -0.005418327171355486, 0.011054888367652893, -0.009240822866559029, -0.015712808817625046, 0.013394078239798546, -0.010127396322786808, 0.01271209865808487, -0.0015063222963362932, 0.025260521098971367, -0.039009228348731995, 0.007917782291769981, -0.001173857250250876, -0.0031865492928773165, 0.005929811857640743, 0.011232202872633934, 0.0012267106212675571, 0.01799061894416809, -0.020200233906507492, 0.029434235766530037, -0.0007501774816773832, 0.0046647400595247746, 0.007269901689141989, -0.013735068030655384, 0.008204213343560696, 0.01437612809240818, 0.02123684249818325, 0.019027229398489, 0.008422447368502617, 0.0013903857907280326, 0.013714607805013657, -0.009002129547297955, -0.014594362117350101, -0.00018083113536704332, -0.00871569849550724, -0.01863167993724346, -0.0031950741540640593, 0.009036228992044926, -0.013980580493807793, -0.0017867863643914461, -0.0005374851170927286, -0.014867153950035572, 0.009861423633992672, -0.01404877845197916, -0.014730758033692837, 0.00922718271613121, 0.0020101347472518682, -0.031016428023576736, -0.009152165614068508, -0.007433576975017786, 0.009274921379983425, 0.026501724496483803, -0.022928152233362198, -0.003703148802742362, -0.019177263602614403, 0.011723227798938751, 0.0004952876479364932, 0.03737247735261917, -0.017499594017863274, 0.022123415023088455, -0.015371818095445633, 0.008265592157840729, 0.013523654080927372, 0.00563656073063612, 0.0069152722135186195, -0.004272601567208767, 0.015576411969959736, -0.0005745677626691759, -0.018945390358567238, 0.01200965978205204, -0.0023937481455504894, 0.028997769579291344, -0.03221671283245087, 0.001294056186452508, -0.0014696659054607153, -0.013012168928980827, -0.002068102825433016, -0.015289980918169022, 0.011900542303919792, -0.016162915155291557, 0.004497654736042023, 0.0016802269965410233, 0.0018618040485307574, -0.0065401834435760975, 0.008190574124455452, 0.003658820176497102, 0.00040833523962646723, 0.025533312931656837, 0.02485133334994316, 0.02680179476737976, -0.019149985164403915, 0.0008435234194621444, 0.002647785469889641, -0.009656829759478569, -0.014908072538673878, 0.0020033149048686028, -0.018017899245023727, 0.0028336248360574245, 0.003999809734523296, -0.007842764258384705, 0.01535817887634039, 0.015699168667197227, 0.007399477995932102, 0.02366468869149685, -0.019722847267985344, -0.009943261742591858, -0.0003324650169815868, 0.03647226467728615, -0.010522943921387196, -0.01260980125516653, 0.011845984496176243, -0.00046204112004488707, -0.0017492774641141295, -0.0011806770926341414, -0.018890833482146263, -0.0071471454575657845, -0.023337339982390404, 0.0024159124586731195, 0.005922992248088121, 0.017976980656385422, -0.00184304965659976, -0.018317969515919685, -0.008313330821692944, 0.0020203643944114447, -0.007488135248422623, 0.0003782855055760592, -0.014144254848361015, -0.003079137532040477, -0.00653677387163043, -0.021591471508145332, -0.01298489049077034, -0.02178242616355419, -0.01809973642230034, 0.0037747565656900406, 0.004088467452675104, 0.0009624435915611684, 0.0029256921261548996, -0.009097606875002384, -0.009806865826249123, -0.018331609666347504, 0.006990290246903896, -0.0013520243810489774, -0.003733837977051735, -0.0015583231579512358, 0.007876863703131676, -0.002726213075220585, -0.013598672114312649, 0.027415577322244644, 0.0266108401119709, 0.020432107150554657, -0.0025812925305217505, 0.008429266512393951, 0.00598437013104558, -0.015071747824549675, 0.006253752391785383, -0.0040066298097372055, 0.007515414152294397, 0.02913416549563408, -0.005472885444760323, 0.008633860386908054, -0.017322279512882233, -0.012391568161547184, -0.0014969450421631336, -0.0010067722760140896, -0.015221782959997654, 0.00022739754058420658, -0.005813875235617161, -0.011129905469715595, -0.01483987458050251, 0.020923132076859474, -1.9859990061377175e-05, 0.0008580154972150922, 0.004047548398375511, -0.021823344752192497, -0.01771782711148262, 0.023801084607839584, -0.0038224952295422554, -0.0006662087398581207, -0.003229173133149743, 0.002787591191008687, -0.023323699831962585, 0.0025062747299671173, 0.004074827767908573, -0.01404877845197916, -0.01819521375000477, 0.02245076559484005, 0.0042760116048157215, -0.026174373924732208, 0.018236132338643074, 0.027797484770417213, -0.005298980977386236, 0.01154591329395771, -0.001616291468963027, 0.014798955991864204, 0.019695568829774857, -0.002448306418955326, -0.018945390358567238, 0.00834742933511734, -0.005319440271705389, -0.002073217649012804, 0.014212452806532383, 0.021591471508145332, 0.0037611171137541533, -0.004010039381682873, -0.023310059681534767, 0.001117593958042562, -0.036499544978141785, 0.0026256211567670107, 0.020623059943318367, -0.006799336057156324, 0.022764476016163826, 0.007222163025289774, 0.011777786538004875, 0.0051250760443508625, -0.01410333625972271, -0.007460855878889561, -0.0029819554183632135, -0.016449345275759697, -0.001616291468963027, 0.021768786013126373, 0.022969070822000504, 0.013632770627737045, -0.004944351501762867, -0.02745649591088295, 0.000714373541995883, 0.015603691339492798, 0.0017492774641141295, 0.042419128119945526, 0.011627750471234322, -0.0009709683363325894, 0.027401937171816826, -0.00774046778678894, -0.0027551972307264805, 0.016081077978014946, 0.015562772750854492, -0.010652519762516022, 0.007290360983461142, 0.022559883072972298, 0.00885891355574131, -0.011859623715281487, 0.021209564059972763, 0.00616850471124053, -0.00590935256332159, -0.0022096135653555393, 0.026651760563254356, 0.011102627031505108, 0.01612199656665325, 0.002431256929412484, 0.012555243447422981, 0.012555243447422981, -0.008142835460603237, 0.009636370465159416, 0.01568552851676941, 0.0008004734409041703, -0.011129905469715595, 0.005674069747328758, 0.003031398868188262, 0.0002932511852122843, -0.00537740858271718, 0.003258157055824995, 0.009520433843135834, -0.016067437827587128, 0.013114466331899166, -0.009465876035392284, -0.006816385313868523, -0.009881882928311825, 0.02512412518262863, 0.0009232297888956964, -0.021564193069934845, 0.0017271131509914994, 0.0007812927942723036, 0.012316550128161907, -0.008497464470565319, 0.008545203134417534, 0.00010885032679652795, -0.011027608998119831, -0.009670469909906387, 0.020091116428375244, 0.002400567987933755, -0.001756097306497395, -1.8461398212821223e-05, -0.025369638577103615, 0.018127014860510826, -0.0007893912843428552, -0.02448306418955326, 0.00016889648395590484, 0.002758607268333435, -0.005629741121083498, 0.009118066169321537, -0.013448636047542095, 0.0030944820027798414, -0.0003693345352075994, -0.0015736677451059222, -0.011348139494657516, -0.013080366887152195, -0.01651754416525364, -0.004235093016177416, -0.005469475872814655, 0.013926021754741669, -0.007849584333598614, 0.006304900627583265, 0.02531507983803749, -0.017567792907357216, -0.010659339837729931, -0.00299218506552279, 0.01706312783062458, 0.015821924433112144, 0.009097606875002384, -0.002935921773314476, -0.004835234954953194, 0.001548946020193398, 0.013550933450460434, 0.0026784746441990137, 0.007290360983461142, -0.02448306418955326, 0.0065674628131091595, 0.0065538231283426285, -0.017581431195139885, 0.016653940081596375, 0.018754437565803528, -0.0023391898721456528, -0.01209831703454256, 0.004702248610556126, 0.006465165875852108, -0.009827325120568275, -0.007085767108947039, -0.019245462492108345, 0.010488845407962799, 0.004981860518455505, 0.00151228962931782, -0.007235802710056305, 0.020841294899582863, 0.005657020024955273, -0.024155715480446815, -0.03202575817704201, 0.002269286895170808, 0.012405207380652428, -0.004105516709387302, -0.00728354137390852, 0.004668149631470442, 0.001492682727985084, 0.026037978008389473, -0.013284960761666298, 0.017976980656385422, -0.014239732176065445, 0.02096405066549778, -0.00554108340293169, 0.027620170265436172, 0.0025454885326325893, -0.004391948226839304, 0.0007258819532580674, -0.0030211692210286856, 0.008933931589126587, -0.022191613912582397, 0.005919582210481167, -0.031671129167079926, -0.021591471508145332, 0.017213163897395134, -0.0011269712122157216, 0.010100116953253746, 0.018031539395451546, -0.013728247955441475, -0.028452185913920403, -0.005234193056821823, 0.013387258164584637, 0.0040066298097372055, 0.022409847006201744, 0.015317260287702084, 0.02782476507127285, -0.0048556942492723465, -0.010079657658934593, -0.02059578150510788, 0.006853894330561161, -0.027961160987615585, 0.0006998814642429352, -0.0024909302592277527, -0.01020241342484951, 0.00825877208262682, -0.0013119580689817667, 0.005189863964915276, -0.02030934952199459, -0.012541603296995163, -0.007031208835542202, -0.008565662428736687, 0.01835888810455799, -0.008204213343560696, 0.03199847787618637, 0.03453544154763222, 0.01687217317521572, -0.014880793169140816, 0.003778166603296995, -0.018495284020900726, 0.015630969777703285, 0.014062417671084404, 0.018399806693196297, -0.01005919836461544, 0.009349939413368702, 0.005916172172874212, 0.00452152406796813, -0.008777076378464699, 0.0002162088203476742, -0.0019623960833996534, -0.01975012756884098, -0.031398337334394455, -0.00025936533347703516, 0.04034590721130371, -0.01224835216999054, -0.005090977065265179, 0.010175134055316448, 0.012043758295476437, 0.011948280967772007, 0.009636370465159416, 0.00022079086920712143, -0.004910252522677183, -0.0032172384671866894, 0.002744967583566904, 0.011218562722206116, 0.008729337714612484, 0.03068907931447029, -0.011723227798938751, -0.0012923511676490307, -0.006512904539704323, 0.003723608097061515, -0.00010368219955125824, -0.01770418882369995, -0.0065811024978756905, 0.0014611411606892943, -0.0031694998033344746, -0.00470565864816308, 0.019136345013976097, -0.0009172624559141695, -0.003907742444425821, 0.021564193069934845, -0.017390478402376175, 0.029161443933844566, -0.001028084079734981, 0.02774292789399624, -0.0045590330846607685, 0.0033655690494924784, -0.0030723176896572113, 0.022041577845811844, -0.0020595781970769167, -0.009731847792863846, -0.0059605007991194725, 0.004698839038610458, -0.017131324857473373, -0.01882263459265232, 0.010154674760997295, -0.013523654080927372, -0.003515604417771101, -0.009827325120568275, -0.01965465024113655, 0.015576411969959736, 0.010529763996601105, -0.0021533502731472254, 0.02486497350037098, 0.016012879088521004, 0.009384037926793098, 0.021823344752192497, 0.029625190421938896, -0.02048666402697563, -0.0042896512895822525, 0.00556154316291213, 0.004132796078920364, -0.0004910252755507827, 0.004538573790341616, -0.00568088935688138, -0.007999619469046593, 0.008006439544260502, -0.00035931795719079673, 0.005210323724895716, -0.01368732936680317, 0.006666349712759256, 0.0003548424574546516, 0.006117356475442648, 0.015740087255835533, -0.01224835216999054, -0.00941131729632616, 0.011293580755591393, 0.015344539657235146, 0.011314040049910545, -0.013510013930499554, -0.005524034146219492, -0.0026205063331872225, 0.0036520003341138363, -0.009499974548816681, 0.005455836188048124, 0.0021840394474565983, 0.018945390358567238, 0.009377218782901764, -0.01155273336917162, -0.023541932925581932, -0.008736157789826393, -0.01154591329395771, 0.011961921118199825, 0.02170058898627758, -0.007085767108947039, -0.03699056804180145, -0.011054888367652893, 0.019804684445261955, -0.004685199353843927, 0.0026153915096074343, -0.009997819550335407, -0.04381036385893822, -0.002823395188897848, 0.005660430062562227, 0.02410115674138069, 0.01882263459265232, 0.01224153209477663, 0.020459385588765144, -0.0024585360661149025, 0.0075222342275083065, -0.013421356678009033, -0.02142779715359211, -0.013530474156141281, -0.007788205984979868, 0.010986690409481525, 0.0051114363595843315, -0.004859104286879301, -0.03971848636865616, -0.02114136517047882, -0.012753017246723175, 0.023951120674610138, 0.00810873694717884, 0.0024551262613385916, 0.014785315841436386, -0.011470895260572433, -0.007433576975017786, -0.022791756317019463, 0.002173809800297022, -0.00693573197349906, 0.010256972163915634, 0.01567189022898674, 0.005544493440538645, 0.0013170730089768767, 0.01038654800504446, -0.006451526191085577, 0.003241107566282153, -0.015549133531749249, 0.0026580151170492172, 0.018304331228137016, 0.0015063222963362932, 0.014144254848361015, 0.009793225675821304, 0.02699274942278862, -0.013537293300032616, -0.011218562722206116, 0.012357468716800213, -0.004811365623027086, 0.014880793169140816, -0.0076995487324893475, 0.011661849915981293, 0.0037577070761471987, -0.0066322507336735725, -0.006451526191085577, -0.0007689319318160415, 0.007419937290251255, -0.034071698784828186, 0.002501159906387329, 0.0024892252404242754, -0.0002491356572136283, 0.005322850309312344, 0.0016589151928201318, -0.00053663260769099, -0.004255552310496569, 0.02280539460480213, -0.008279231376945972, 0.010072837583720684, 0.0018106555799022317, 0.01243248675018549, -0.000910442671738565, -0.021004969254136086, 0.003201893763616681, 0.0030075297690927982, -0.0027995258569717407, -0.0018311149906367064, -0.005380818620324135, 0.0019641011022031307, -0.030661799013614655, 0.03532654047012329, -0.0015174044528976083, 0.010707078501582146, -0.004487425088882446, -0.0015736677451059222, 0.011109446175396442, 0.0005703053902834654, 0.0011303810169920325, 0.01233700942248106, 0.005554723087698221, 0.008633860386908054, -0.009793225675821304, -0.0009036228875629604, -0.007399477995932102, 0.00983414426445961, 0.020282071083784103, 0.006990290246903896, -0.00036400658427737653, -0.01067297998815775, 0.010134215466678143, 0.008920292370021343, -0.013394078239798546, -0.022014299407601357, 0.0010579207446426153, -0.001145725604146719, -0.014608001336455345, -1.623697426111903e-05, -0.007876863703131676, -0.0004905990208499134, -0.013557752594351768, 0.01038654800504446, -0.008927111513912678, 0.011211743578314781, -0.003549703396856785, -0.03625402972102165, -0.04888429120182991, 0.00030689078266732395, -0.0025233242195099592, -0.008272411301732063, -0.01863167993724346, -0.019627369940280914, -0.0009130000835284591, -0.017035849392414093, 0.012186974287033081, 0.002008429728448391, 0.01743139699101448, -0.013891923241317272, 0.006666349712759256, 0.03559933230280876, 0.015726447105407715, -0.0026972289197146893, 0.00834742933511734, 0.025997059419751167, 0.0010792325483635068, 0.005953681189566851, -0.0005089272162877023, 0.031589291989803314, -0.02448306418955326, 0.01404877845197916, -0.013339519500732422, -0.00233066501095891, 0.009936441667377949, -0.0005809612921439111, 0.007876863703131676, -0.011791425757110119, 0.007658630143851042, -0.0036622299812734127, -0.01949097402393818, -0.00115425034891814, 0.01228245161473751, -0.020759455859661102, 0.014621640555560589, 0.02356921136379242, -0.008640680462121964, -0.01358503196388483, 0.02995254099369049, -0.0018413447542116046, 0.012180154211819172, 0.01816793531179428, -0.008265592157840729, -0.010495664551854134, 0.011907362379133701, -0.017213163897395134, -0.01605379767715931, -0.00286260899156332, -0.008333790116012096, 0.013325880281627178, -0.0037747565656900406, -0.016012879088521004, -0.0077131884172558784, -0.007856404408812523, 0.016681218519806862, -0.006400377955287695, 0.0009667059639468789, 0.018495284020900726, -0.004569262731820345, -0.008006439544260502, -0.008913472294807434, 0.016558462753891945, -0.005554723087698221, 0.007781386375427246, 0.015808286145329475, 0.01965465024113655, -0.0018225902458652854, -0.014226092956960201, 0.006652710027992725, 0.021946100518107414, 0.028888652101159096, 0.014785315841436386, -0.025383278727531433, -0.018986310809850693, 0.0027500824071466923, -0.013264501467347145, -0.01928638108074665, -0.008245132863521576, -0.02625621110200882, -0.014689838513731956, -0.014989909715950489, -0.004160074982792139, 0.012398387305438519, 0.0046783797442913055, 0.03420809283852577, 0.012016478925943375, 0.0045863124541938305, -0.010379727929830551, -0.014730758033692837, -0.017690548673272133, -0.0031217613723129034, 0.012746197171509266, 0.014676199294626713, 0.018863553181290627, 0.021291401237249374, 0.01826341077685356, 0.004115746356546879, -0.024346668273210526, 0.007290360983461142, 0.017104046419262886, 0.016940372064709663, 0.0020800374913960695, -0.0025096845347434282, -0.006393557880073786, -0.02421027235686779, 0.006577692460268736, 0.015726447105407715, 0.01650390401482582, 0.0003603835648391396, -0.0009948376100510359, 0.014485244639217854, -0.010468386113643646, 0.026938190683722496, 0.011484535411000252, -0.012466585263609886, 0.005841154605150223, 0.004634050652384758, -1.1654923582682386e-05, -0.009152165614068508, -0.00452152406796813, 0.011607291176915169, 0.010959411039948463, -0.01200965978205204, -0.004811365623027086, 0.02339189685881138, -0.013018989004194736, 0.005145535338670015, 0.021959740668535233, -0.008470186032354832, -0.030443565919995308, 0.004743167664855719, 0.004221453331410885, -0.0035701626911759377, 0.0004918777267448604, -0.015126305632293224, 0.0052307830192148685, 0.012487045489251614, -0.00844290666282177, 0.009022588841617107, -0.0033161253668367863, -0.014758036471903324, 0.001305138343013823, -0.0035531132016330957, 0.022014299407601357, 0.015699168667197227, 0.011150364764034748, -0.008033718913793564, 0.025574231520295143, 0.004105516709387302, 0.02744285576045513, -0.009609091095626354, 0.009704568423330784, -0.006761827040463686, -0.028615860268473625, 0.0023238451685756445, 0.008695239201188087, 0.017595071345567703, 0.004258962348103523, 0.011129905469715595, -0.0017407527193427086, 0.019327299669384956, -0.0018464595777913928, -0.007078947499394417, 0.0048693339340388775, -0.006025289185345173, 0.008272411301732063, 0.00728354137390852, 0.004681789316236973, -0.005015959497541189, 0.01215287484228611, 0.009404497221112251, 0.023541932925581932, 0.001025526667945087, -0.03559933230280876, -0.019518254324793816, -0.022409847006201744, -0.020568503066897392, 0.005871843546628952, 0.026869993656873703, 0.004978450480848551, 0.004576082807034254, -0.0028609042055904865, -0.0032973710913211107, -0.009336299262940884, -0.011934641748666763, -0.00454198382794857, 0.0075358739122748375, -0.011429976671934128, 0.01687217317521572, -0.01612199656665325, 0.011757327243685722, 0.012971250340342522, 0.0027432625647634268, 0.011600472033023834, -0.006328769959509373, -0.0019487565150484443, -0.02013203501701355, 0.012732557952404022, -0.02144143544137478, 0.0033365848939865828, -0.00792460236698389, 0.024796774610877037, 0.01535817887634039, -0.02689727209508419, 0.002187449252232909, 0.00032394027221016586, 0.016203833743929863, 0.0029955951031297445, -0.0017288180533796549, -0.01809973642230034, 0.005745677277445793, -0.04108244553208351, 0.02366468869149685, -0.014389768242835999, 0.033635228872299194, -0.0012224483070895076, -0.010420647449791431, -0.001268481952138245, -0.004340799525380135, -0.019040867686271667, 0.025847023352980614, 0.02310546673834324, -0.009186264127492905, -0.01252796407788992, -0.010277431458234787, -0.022982709109783173, 0.021836984902620316, 0.0077200080268085, 0.00023336487356573343, 0.019613731652498245, 0.008599761873483658, -0.0005430261953733861, -0.03426264971494675, 0.00066663499455899, -0.0012812690110877156, -0.010775276459753513, -0.021850623190402985, 0.025396917015314102, -0.014430686831474304, -0.007733647711575031, 0.020854933187365532, 0.008449726738035679, 0.007392657920718193, 0.01893175207078457, 0.006021879147738218, 0.028534023091197014, 0.006434476934373379, 0.011382238008081913, -0.007999619469046593, -0.010154674760997295, 0.004685199353843927, -0.0038395447190850973, 0.0012701868545264006, -0.01724044233560562, 0.007501774933189154, -0.007856404408812523, 0.010338809341192245, 0.022709917277097702, 0.004992090165615082, 0.02142779715359211, 0.001624816213734448, -0.0095136146992445, -0.015180864371359348, -0.013851003721356392, -0.006806155666708946, -0.004010039381682873, -0.01516722422093153, 0.015071747824549675, -0.016258392482995987, 0.006870943587273359, -0.0027023437432944775, -0.005950271151959896, 0.003196778940036893, -0.01067297998815775, 0.008736157789826393, -0.01136177871376276, 0.004408997483551502, 0.011682309210300446, 0.020718537271022797, 0.04771128669381142, 0.01779966615140438, -0.008211033418774605, -0.034453604370355606, 0.008142835460603237, 0.0008337199687957764, -0.011955101042985916, -0.0024636511225253344, -0.001465403474867344, -0.0014475015923380852, 0.0025096845347434282, 0.011245842091739178, -0.003733837977051735, -0.002901822794228792, -0.0005063698044978082, -0.001277006696909666, -0.020732177421450615, -0.010959411039948463, 0.012186974287033081, 0.02206885814666748, -0.004692018963396549, 0.00443286681547761, -0.01883627474308014, 0.0027347379364073277, -0.019136345013976097, -0.0015148470411077142, 0.013823725283145905, -0.0037474774289876223, 0.006547003518790007, 0.0024363717529922724, 0.011743687093257904, -0.01376916654407978, -0.0035599330440163612, 0.002299975836649537, -0.013537293300032616, 0.0010758227435871959, -1.1341905519657303e-05, 0.021632390096783638, -0.011232202872633934, -0.004981860518455505, -0.021836984902620316, 0.006911862641572952, 0.02678815647959709, 0.009568172506988049, -0.013994219712913036, -0.000634667172562331, -0.01687217317521572, 0.0024551262613385916, -0.0005775514291599393, 0.006103716790676117, -0.022055217996239662, -0.015017189085483551, 0.0006755859358236194, -0.02005019783973694, -0.001672554761171341, 0.0024363717529922724, -0.020759455859661102, -0.01001827884465456, 0.01816793531179428, 0.004351029172539711, -0.022478045895695686, 0.005183044355362654, -0.006182144396007061, 0.015030828304588795, 0.009349939413368702, 0.0006099454476498067, 0.008511104620993137, -0.010284251533448696, -0.00015515033737756312, -0.019818324595689774, 0.012132415547966957, -0.004862513858824968, 0.010045558214187622, -0.00431352062150836, 0.023487374186515808, 0.0027722467202693224, -0.0213459599763155, -0.005145535338670015, -0.02051394432783127, 0.02607889659702778, 0.006069617811590433, 0.015044468455016613, -0.01057068258523941, 0.012930331751704216, 0.014962630346417427, 0.013455456122756004, -0.005428556818515062, -0.010734357871115208, -0.0039657107554376125, -0.018863553181290627, 0.007590432185679674, 0.01696765050292015, -0.014948991127312183, -0.014962630346417427, 0.003084252355620265, 0.011443616822361946, 0.004511294420808554, 0.01298489049077034, -0.02764745056629181, -0.00835424941033125, -0.021032247692346573, 0.0011337909381836653, 0.023350978270173073, 0.005309210624545813, -0.03568116948008537, -0.00950679462403059, 0.011648210696876049, -0.017595071345567703, -0.009650010615587234, -0.00010053870209958404, -0.022314369678497314, 0.002103906823322177, 0.0023596491664648056, 0.0022675818763673306, -0.01209831703454256, -0.013175844214856625, 0.01754051260650158, -0.02180970460176468, -0.013394078239798546, 0.023705607280135155, -0.009547713212668896, 0.015153585001826286, -0.0008763436926528811, -0.01901358924806118, -0.006666349712759256, -0.0003776461526285857, 0.011170824989676476, 0.007269901689141989, -0.005919582210481167, 0.007801845669746399, 0.014457966201007366, 0.0016768171917647123, 0.019040867686271667, 0.003972530830651522, -0.004385128151625395, 0.00693573197349906, -0.02013203501701355, 0.016394788399338722, -0.006185554433614016, 0.001714325975626707, 0.006420837249606848, -0.012466585263609886, -0.003275206545367837, -0.010045558214187622, 0.0012591046979650855, -0.0019334119278937578, -0.010427466593682766, -0.012377928011119366, -0.01734955981373787, 0.008517924696207047, 0.0014884202973917127, 0.00700392946600914, 0.0021686949767172337, -0.010973050259053707, 0.006509494502097368, 0.007563152816146612, 0.007426756899803877, -0.0033314700704067945, 4.7845125664025545e-05, 0.007379018235951662, 0.02753833308815956, 0.02718370407819748, 0.02152327448129654, 0.003367273835465312, 0.030907312408089638, 0.0014756332384422421, 0.015399097464978695, -0.0012429077178239822, 0.011389058083295822, -0.0048147751949727535, 0.006369688548147678, -0.004599951673299074, 0.007863223552703857, -0.00315415533259511, -0.003045038552954793, 0.018290691077709198, -0.011934641748666763, 0.006223062984645367, -0.011682309210300446, -0.006639070808887482, -0.012398387305438519, 0.0068368446081876755, -0.005585412494838238, 0.0002909069007728249, 0.006383328232914209, 0.021673308685421944, 0.0036929191555827856, 0.011832344345748425, -0.007972341030836105, -0.00514894537627697, -0.004132796078920364, -0.009813684970140457, -0.024442145600914955, -0.009991000406444073, -0.014362488873302937, -0.009274921379983425, -0.021277761086821556, -0.03374434635043144, 0.00895439088344574, -0.008995309472084045, 1.824827995733358e-05, 0.0006930616800673306, 0.010829835198819637, 0.02005019783973694, -0.00050977966748178, -0.011702768504619598, -0.015399097464978695, -0.01799061894416809, 0.01698129065334797, -0.017199523746967316, 0.002968315966427326, 0.007985980249941349, -0.028915932402014732, 0.022287091240286827, 0.0075222342275083065, -0.004859104286879301, 0.028534023091197014, -0.0012071037199348211, -0.03551749512553215, -0.005179634317755699, 0.015917401760816574, 0.00746767595410347, -0.01117764413356781, -0.01196874026209116, -0.006905042566359043, 0.000376154319383204, -0.01587648317217827, -0.01080937497317791, 0.024905892089009285, 0.003172909840941429, -0.0025847023352980614, 0.001947051496244967, -0.003812265582382679, 0.013550933450460434, 0.013203123584389687, 0.011007149703800678, 0.003010939573869109, 0.017131324857473373, -0.010263792239129543, -0.004923892207443714, 0.001224153209477663, -0.011245842091739178, -0.019327299669384956, -0.007856404408812523, 0.02291451208293438, 0.009274921379983425, -0.02141415700316429, 0.012568882666528225, 0.0042896512895822525, -0.013325880281627178, 0.000293464312562719, -0.00251479959115386, -0.003275206545367837, 0.0007037176401354373, 0.017008569091558456, 0.012718917801976204, 0.015821924433112144, -0.018427086994051933, -0.015276341699063778, -0.02355557307600975, -0.0030961870215833187, -0.006502674892544746, 0.010325170122087002, 0.005605871789157391, -0.02161874994635582, -0.0007378166192211211, -0.007290360983461142, 0.01604015752673149, -0.002801230875775218, -0.018113376572728157, -0.03475367650389671, 0.012650719843804836, 0.009111246094107628, 0.00598437013104558, -0.003420127322897315, -0.005530853755772114, 0.0022897461894899607, -0.02598341926932335, 0.024414867162704468, 0.03374434635043144, 0.01891811192035675, 0.014635280705988407, -0.012780296616256237, 0.00868159905076027, -0.005155764985829592, 0.006202603690326214, -0.013912382535636425, -0.004688609391450882, 0.005012549459934235, 0.0030569732189178467, 0.011873263865709305, -0.01526270154863596, 0.009199903346598148, -0.02337825857102871, 0.009370398707687855, -0.013278141617774963, -0.012261991389095783, 0.015494574792683125, 0.004674969706684351, 0.0011380533687770367, 0.01553549338132143, -0.00959545187652111, 0.0010596256470307708, -0.0048147751949727535, 0.0011448730947449803, 0.005070517770946026, 0.007815484888851643, 0.008047358132898808, 0.0035803925711661577, -0.004050958435982466, -0.011620931327342987, -0.013298600912094116, 0.03933657705783844, 0.025942500680685043, 0.00452152406796813, -0.00020448729628697038, -0.015562772750854492, -0.024783136323094368, 0.00024274208408314735, -0.007488135248422623, -0.011150364764034748, -0.012357468716800213, 0.01145043596625328, 0.006710678339004517, 0.01928638108074665, 0.022559883072972298, 0.0018328200094401836, -0.006591332145035267, 0.008483825251460075, 0.0002113070950144902, -0.020077476277947426, 0.022014299407601357, 0.009704568423330784, -0.010591141879558563, 0.008749797008931637, -0.0024636511225253344, 0.007249442394822836, 0.015180864371359348, 0.003258157055824995, -0.008777076378464699, -0.01108216680586338, -0.025287801399827003, 0.007938241586089134, -0.030880032107234, -0.03227126970887184, -0.00412938604131341, -0.01002509891986847, 0.014171534217894077, 0.005568362772464752, 0.000333317497279495, 0.00150717468932271, 0.002405682811513543, -0.013387258164584637, -0.01901358924806118, 9.217379556503147e-05, 0.0030569732189178467, -0.019900161772966385, 0.005871843546628952, 0.03459000214934349, 0.003941841423511505, -0.012677999213337898, 0.009145345538854599, -0.004139615688472986, 0.018031539395451546, -0.015590052120387554, -0.006847074255347252, -0.009186264127492905, 0.033362437039613724, -0.009588631801307201, -0.02363741025328636, -0.007617711089551449, -0.005943451542407274, -0.017117686569690704, 0.0052171433344483376, 0.013237222097814083, 0.015153585001826286, -0.003437176812440157, 0.010352449491620064, 0.010461566038429737, 0.005520624108612537, -0.0045590330846607685, 0.008095096796751022, 0.003319535404443741, -0.00252673402428627, 0.009765946306288242, -0.0009189674165099859, 0.003546293592080474, -0.017826944589614868, -0.03810901567339897, -0.014594362117350101, -0.01568552851676941, 0.020091116428375244, 0.004139615688472986, 0.007304000668227673, 0.015985600650310516, -0.015399097464978695, -0.02225981093943119, -0.005039828829467297, 0.005350129213184118, -0.002405682811513543, -0.0074813151732087135, -0.003179729450494051, -0.016572102904319763, -0.002683589467778802, -0.011832344345748425, 0.0077268281020224094, 0.008149655535817146, -0.007863223552703857, -0.007126686163246632, 0.012903052382171154, -0.005295570939779282, -0.01661302149295807, -0.010945770889520645, 0.001280416501685977, -0.0071471454575657845, -0.00755633320659399, 0.0007868338725529611, -0.034453604370355606, -0.0021755145862698555, 0.006741367746144533, 0.013844184577465057, 0.004497654736042023, -0.022573521360754967, 0.00886573363095522, 0.004153255373239517, 0.009438596665859222, -0.015221782959997654, 0.02005019783973694, -0.0009675584733486176, 0.01909542642533779, -0.0025676528457552195, -0.02392384223639965, 0.0021840394474565983, -0.004848874174058437, 0.008667959831655025, 0.00381567538715899, 0.0025864073541015387, -0.015385458245873451, 0.012030119076371193, 0.02577882632613182, -0.017213163897395134, 0.011859623715281487, 0.00797916017472744, -0.00029815291054546833, 0.0010323465103283525, 0.016572102904319763, -0.006096896715462208, -0.008674779906868935, 0.024796774610877037, 0.01410333625972271, 0.014539803378283978, -0.017867863178253174, -0.0065811024978756905, 0.005755907390266657, 0.021932462230324745, -0.0003352355561219156, 0.02384200319647789, 0.0016989815048873425, -0.028888652101159096, 0.012882593087852001, 0.009991000406444073, -0.01604015752673149, 0.0008486382430419326, 0.004514704458415508, -0.016353869810700417, 0.01891811192035675, -0.006171914748847485, 0.03368978947401047, -0.022409847006201744, 0.021291401237249374, -0.02234164997935295, -0.020745817571878433, 0.015808286145329475, 0.006489035207778215, 0.010454745963215828, 0.03262589871883392, 0.012671179138123989, 0.0015029123751446605, -0.007058488205075264, 0.009820505045354366, -0.022096136584877968, -0.0002866445283871144, -0.010325170122087002, -0.018686238676309586, -0.02476949617266655, 0.006226473022252321, -0.008633860386908054, 0.010141035541892052, -0.00977958645671606, -0.014035138301551342, -0.01790878176689148, -0.003921382129192352, 0.012043758295476437, 0.016490265727043152, 0.021359598264098167, 0.01516722422093153, 0.00429306086152792, 0.006407197564840317, 1.6756450349930674e-05, 0.02114136517047882, 0.002221548231318593, 0.012882593087852001, 0.028915932402014732, 0.01173686794936657, 0.027115505188703537, 0.0081701148301363, -0.02029571123421192, 0.017867863178253174, 0.01624475233256817, 0.006321950349956751, -0.02820667251944542, -0.003005824750289321, -0.01155273336917162, 0.005929811857640743, -0.010911672376096249, -0.0030944820027798414], "9d43bf2f-9b6d-4c9b-a597-06f9ca591520": [-0.017610611394047737, -0.004962921608239412, -0.006303024478256702, 0.004001379478722811, 0.018246592953801155, -0.009441287256777287, 0.01897342875599861, 0.02692318893969059, -0.03379783779382706, 0.03049679473042488, 0.020729945972561836, 0.026514343917369843, -0.006231097970157862, -0.0009274720214307308, -0.0280134417116642, 0.008381319232285023, -0.01998796872794628, 0.02297102101147175, 0.0089415879920125, -0.025726938620209694, 0.03921881690621376, -0.006798937916755676, -0.05099960416555405, 0.012651476077735424, 0.035221222788095474, 0.008616025559604168, -0.027513742446899414, 0.017777178436517715, -0.008426746353507042, -0.004459436982870102, 0.006480947602540255, 0.02669605240225792, 0.003810206661000848, 0.00024346141435671598, 0.02607521414756775, -0.012636333703994751, 0.0020309744868427515, -0.020033396780490875, -0.024500403553247452, -0.008555456064641476, -0.0552394762635231, -0.0020839727949351072, 0.0018965856870636344, -0.03464581444859505, -0.03625090792775154, 0.006950362119823694, -0.01650521717965603, -0.026317492127418518, 0.01944284327328205, 0.022456180304288864, 0.024878963828086853, -0.033737268298864365, 0.0024436048697680235, 0.015611815266311169, 0.05063618719577789, -0.02278931252658367, -0.006783795543015003, 0.04972764477133751, -0.031223630532622337, -0.07256238162517548, -0.01571781188249588, -0.01773175038397312, -0.024636685848236084, -0.010963098146021366, 0.023379866033792496, 0.015028832480311394, 0.03525150939822197, -0.0006028568022884429, 0.004039235413074493, -0.02085108496248722, -0.0010230584302917123, 0.03252587839961052, -0.0521504282951355, 0.008979443460702896, -0.0025193169713020325, -0.03449438884854317, 0.04630546271800995, -0.009365574456751347, 0.022395610809326172, 0.010758675634860992, -0.009320147335529327, -0.0016779672587290406, 0.024409549310803413, 0.0026650624349713326, 0.07540915906429291, -0.017837747931480408, -0.016141798347234726, -0.05009106174111366, 0.007101785857230425, 0.010243833996355534, 0.0064317346550524235, 0.044639796018600464, -0.014612416736781597, 0.00622731214389205, -0.014082432724535465, 0.006961718667298555, 0.017095770686864853, -0.0016032016137614846, 0.02963367849588394, 0.004179302603006363, 0.013878010213375092, 0.00890373159199953, -0.01765603944659233, 0.0007121660164557397, 0.011250803247094154, 0.0031666546128690243, 0.019503412768244743, -0.024318695068359375, 0.0007490756106562912, 0.00256852968595922, -0.011061524040997028, -0.03652346879243851, 0.04015764594078064, -0.005659472197294235, -0.043458689004182816, -0.01868572272360325, -0.031314484775066376, -0.013158746063709259, -0.015006119385361671, -0.032556161284446716, 0.01197763904929161, 0.000693711219355464, 0.002481460804119706, 0.0016609320882707834, -0.03664460778236389, 0.01112966425716877, 0.027756020426750183, 0.005216557066887617, 0.034888092428445816, 0.014324710704386234, -0.035221222788095474, 0.008918873965740204, 0.007094214670360088, 0.039582233875989914, 0.01031197514384985, 0.024727540090680122, -0.007465203758329153, 0.05090875178575516, -0.032798439264297485, 0.010122695006430149, -0.09739591926336288, -0.03340413421392441, -0.03167790174484253, 0.02039681375026703, 0.0014233856927603483, 0.0003821090213023126, -0.033888693898916245, 0.044851791113615036, 0.0025344593450427055, 0.04654774069786072, -0.05772283300757408, -0.040581632405519485, -0.0427924245595932, 0.002172934589907527, 0.04848596826195717, -0.01377958431839943, 0.010395257733762264, 0.0020177247934043407, 0.015089401975274086, 0.028694849461317062, -0.0003906266065314412, -0.04951564967632294, -0.005258198827505112, 0.023788711056113243, 0.040823910385370255, 0.0043496545404195786, 0.02948225475847721, 0.005742755252867937, -0.027210893109440804, 0.022274471819400787, -0.003104192204773426, -0.019972827285528183, 0.0020631521474570036, 0.010947955772280693, -0.019200563430786133, -0.008298035711050034, 0.007680982816964388, 0.05648115277290344, 0.0089415879920125, -0.029376257210969925, -0.05539090186357498, 0.01642950437963009, 0.0071585699915885925, -0.01609637215733528, 0.04569976404309273, 0.01303003542125225, 0.0045805759727954865, 0.011992781423032284, 0.025545230135321617, -0.00360767706297338, -0.021532494574785233, -0.0005616884445771575, -0.019473128020763397, 0.005670829210430384, -0.0062803104519844055, -0.01151579525321722, -0.0171260554343462, 0.0004308486240915954, -0.03834055736660957, -0.01882200315594673, 0.0091460095718503, -0.015596672892570496, -0.019518554210662842, 0.034282393753528595, -0.05175672471523285, -0.0014498848468065262, -0.028982555493712425, -0.021759629249572754, 0.015127258375287056, -0.03231388330459595, 0.029436826705932617, -0.0599033385515213, 0.00804818607866764, -0.019972827285528183, 0.0020196177065372467, -0.003766672220081091, -0.0028619137592613697, 0.024636685848236084, -0.0023376080207526684, -0.03976394236087799, -0.010152979753911495, 0.020275674760341644, -0.009645708836615086, -0.02068451978266239, -0.06953390687704086, -0.03437324985861778, -0.018413159996271133, -0.004641145933419466, -0.00809361319988966, 0.03749258443713188, -0.02972453273832798, -0.005667043384164572, 0.0032688656356185675, -0.01633865013718605, -0.0175046157091856, 0.026272065937519073, 0.06499118357896805, 0.003887811442837119, -0.014960692264139652, 0.001475437660701573, 0.0013514593010768294, 0.034524671733379364, 0.0334647037088871, -0.00484556844457984, 0.04367068409919739, 0.010523968376219273, 0.027680307626724243, 0.008502458222210407, 0.0025912432465702295, -0.006507446523755789, -0.01626293919980526, 0.022289613261818886, -0.008351033553481102, -0.01642950437963009, -0.032404735684394836, 0.021138790994882584, 0.028149722144007683, -0.020639091730117798, 0.010516397655010223, -0.014286855235695839, -0.013809869065880775, 0.026014644652605057, -0.0021880769636482, 0.013825011439621449, 0.008790163323283195, -0.03827998787164688, 0.02387956529855728, -0.013219315558671951, 0.007790765259414911, 0.030405940487980843, 0.010009126737713814, 0.004008950665593147, -0.015430105850100517, 0.039794228971004486, 0.0009993984131142497, 0.010069696232676506, -0.040823910385370255, 0.0260600708425045, -0.007309993728995323, -0.01529382448643446, -0.02833143249154091, -0.02715032361447811, 0.010410400107502937, -0.0069087203592062, 0.011008525267243385, -0.008252608589828014, -0.006420378107577562, 0.014566989615559578, -0.042671285569667816, -0.01307546254247427, 0.00570111395791173, 0.04288327693939209, 0.03821941837668419, 0.008237466216087341, 0.006882220972329378, -0.0006463912432081997, -0.0010154872434213758, 0.0018521049059927464, -0.026029786095023155, 0.022213902324438095, -0.012431911192834377, -0.003603891469538212, 0.0011016096686944366, -0.018080025911331177, 0.035524070262908936, -0.01602065935730934, 0.06281067430973053, 0.01003941148519516, -0.0319201797246933, 0.06087245047092438, 0.03943081200122833, -0.031556762754917145, -0.061114728450775146, -0.01921570673584938, 0.007544700987637043, 0.014067290350794792, 0.021926196292042732, -0.01311331894248724, -0.023395009338855743, -0.01580866612493992, 0.006515017710626125, 0.026817191392183304, -0.07771079987287521, 0.004444294609129429, 0.043700966984033585, -0.02901284024119377, 0.02068451978266239, 0.013764441944658756, -0.014642701484262943, -0.024803252890706062, -0.011447655037045479, -0.03649318590760231, -0.02833143249154091, 0.008404032327234745, -0.007733981125056744, -0.032344166189432144, -0.06232612207531929, -0.015399821102619171, 0.015028832480311394, -0.043307267129421234, -0.013938579708337784, -0.018806861713528633, 0.019261132925748825, -0.023773569613695145, 0.002598814433440566, -0.00283920019865036, 0.004323155619204044, 0.014718413352966309, -0.02980024367570877, 0.013204173184931278, 0.0009691136656329036, -0.027725735679268837, 0.02863427996635437, -0.021032795310020447, 0.004277728032320738, -0.04000622406601906, -0.026802049949765205, -0.00021033741359133273, -0.03628119081258774, 0.02568151243031025, 0.01758032664656639, -0.011606650426983833, -0.023697856813669205, -0.017459187656641006, -0.009759277105331421, 0.003560357028618455, -0.0004850300319958478, -0.03570578247308731, -0.01868572272360325, -0.023607002571225166, -0.0210176520049572, -0.0033010432962328196, 0.025348378345370293, 0.0033445777371525764, 0.004345869179815054, -0.023561574518680573, 0.04412495717406273, 0.018655437976121902, -0.006840579677373171, 0.007927047088742256, 0.0022997520864009857, -0.0036133553367108107, -0.004421581048518419, -0.008684166707098484, 0.012280486524105072, 0.02248646505177021, -0.002108579268679023, -0.05478520691394806, -0.014370137825608253, 0.01758032664656639, -0.02560579963028431, 0.030996493995189667, -0.02186562679708004, -0.014725985005497932, -0.005810896400362253, -0.016353793442249298, 0.005947177764028311, -0.007677196990698576, -0.01913999393582344, -0.03051193803548813, -0.01594494841992855, 0.0009639084455557168, 0.008123897947371006, 0.008396461606025696, 0.014226285740733147, -0.033979546278715134, -0.035675495862960815, -0.024454977363348007, 0.022380467504262924, 0.01835259050130844, -0.018655437976121902, -0.008335891179740429, 0.02389470860362053, 0.015074259601533413, 0.03588749095797539, -0.003416504245251417, -0.012272915802896023, 0.04158103093504906, -0.01889771595597267, -0.010955526493489742, 0.006681584287434816, 0.026090355589985847, 0.0037269233725965023, 0.04164160043001175, 0.017262335866689682, 0.0021010080818086863, 0.007533344440162182, -0.0032764370553195477, 0.00513705937191844, -0.01983654499053955, 0.012401626445353031, 0.04942479729652405, 0.002791880164295435, 0.006594515405595303, 0.009077869355678558, -0.013749299570918083, -0.0008517600363120437, 0.00030403101118281484, 0.02652948535978794, -0.006609657779335976, -0.029845671728253365, 0.004826640244573355, 0.014233856461942196, -0.016823207959532738, -0.05611773580312729, -0.044155240058898926, -0.0498184971511364, 0.02963367849588394, 0.00969113688915968, -0.009395859204232693, -0.009070297703146935, -7.914270099718124e-05, -0.02333443984389305, 0.004152803216129541, -0.0014214928960427642, -0.025817792862653732, 0.005629187449812889, -0.01913999393582344, 0.007601485121995211, -0.04324669763445854, 0.026635482907295227, -0.022698458284139633, 0.007347850129008293, 0.004993206821382046, 0.02506067231297493, 0.00886587519198656, -0.004909923300147057, 0.006480947602540255, 0.010380115360021591, 0.007245638873428106, 0.007889190688729286, -0.021593064069747925, 0.0035376434680074453, 0.02194133773446083, 0.012348627671599388, -0.02545437589287758, -0.0032177602406591177, -0.0036871745251119137, -0.004084662534296513, 0.0006974968127906322, -0.01331016980111599, -0.06014561653137207, 0.02669605240225792, 0.0005526976310648024, 0.014468563720583916, 0.0014252784894779325, -0.0005938660469837487, -0.049757927656173706, -0.009728992357850075, 0.005470192059874535, 0.023516148328781128, -0.02442469261586666, -0.015626957640051842, 0.021335642784833908, -0.0009686404373496771, 0.00782104954123497, -0.023289011791348457, -0.010304403491318226, -0.019351987168192863, -0.0010315760737285018, 0.02465182915329933, -0.030845070257782936, -0.020169677212834358, 0.008699309080839157, -0.029694247990846634, 0.028603995218873024, -0.011288659647107124, 0.029709389433264732, -0.040490780025720596, -0.018458586186170578, -0.03670518100261688, 0.03352527692914009, -0.03461552783846855, 0.017307763919234276, 0.006435520481318235, 0.04582090303301811, -0.002377356868237257, -0.013189030811190605, 0.04351925849914551, 0.011485510505735874, -0.0085630277171731, -0.00501970574259758, -0.016611212864518166, -0.02957310900092125, -0.009009728208184242, -0.02147192507982254, -0.01159907877445221, -0.0018634616862982512, -0.017958886921405792, -0.04294385015964508, -0.025711797177791595, 0.020502811297774315, -0.030209088698029518, 0.010690534487366676, 0.008706880733370781, -0.004478365182876587, -0.007344064302742481, 0.00537176663056016, 0.019942542538046837, 0.013575161807239056, -0.04460951313376427, 0.01970026269555092, 0.005390694830566645, -0.006825437303632498, -0.006503661163151264, 0.01003941148519516, -0.0004651556082535535, 0.011334086768329144, -0.015392250381410122, 0.015157543122768402, -0.01913999393582344, 0.004114947281777859, -0.009645708836615086, 0.02203219383955002, -0.010864672251045704, -0.05944906547665596, -0.019033998250961304, -0.0031685472931712866, -0.007287280168384314, -0.027362318709492683, -0.002320572966709733, 0.02927025966346264, 0.015732955187559128, 0.02419755607843399, 0.01580866612493992, -0.008684166707098484, -0.020911654457449913, 0.0064468770287930965, 0.011417370289564133, 0.029467111453413963, 0.028755418956279755, 0.01330259907990694, 0.044791221618652344, 0.0036720321513712406, -0.022849882021546364, 0.025181813165545464, -0.005068918690085411, -0.022153332829475403, -0.057631976902484894, -0.020245390012860298, 0.02406127378344536, -0.0003780868137255311, 0.019245991483330727, -0.00055411719949916, 0.0026783121284097433, -0.00801032967865467, -0.010349830612540245, -0.0026650624349713326, -0.01579352468252182, -0.0031590834259986877, 0.00937314610928297, 0.007828621193766594, -0.02864942140877247, 0.020745089277625084, 0.0028997696936130524, 0.021214503794908524, 0.0015114009147509933, 0.003045515390112996, 0.035372648388147354, 0.009395859204232693, -0.023924993351101875, 0.032707586884498596, 0.019488269463181496, 0.022819597274065018, -0.026559770107269287, 0.019473128020763397, -0.0033559345174580812, 0.015490676276385784, -0.012787757441401482, 0.00782104954123497, 0.00041665261960588396, -0.01396129373461008, 0.035281792283058167, -0.013461594469845295, 0.009002157486975193, -0.00366635387763381, -0.006499875336885452, 0.04881909862160683, 0.007658269256353378, 0.00045829423470422626, -0.01084952987730503, -0.005511833820492029, 0.03358584642410278, -0.0028903058264404535, 0.010539110749959946, 0.028452571481466293, -0.023682715371251106, -0.022395610809326172, -0.007995187304913998, 0.013295027427375317, 0.00937314610928297, -0.004243657924234867, -0.008956730365753174, -0.016474932432174683, -0.008154182694852352, -0.02325872704386711, 0.020427098497748375, -0.021593064069747925, 0.011137235909700394, 0.0045010787434875965, -0.02039681375026703, -0.0028997696936130524, -0.01695948839187622, 0.0213962122797966, -0.005966105964034796, -0.006325738038867712, -0.0012776401126757264, 0.010410400107502937, 0.016868634149432182, 0.006435520481318235, -0.04597232863306999, 0.01797403022646904, -0.019155137240886688, 0.014884979464113712, -0.0076847681775689125, -0.023395009338855743, -0.03252587839961052, 0.016141798347234726, 0.006356022786349058, 0.013469165191054344, 0.03379783779382706, -0.009721421636641026, -0.0014404208632186055, 0.0040733059868216515, -0.011023667640984058, -0.012674189172685146, 0.014953120611608028, -0.0027407745365053415, 0.018155738711357117, 0.011795930564403534, 0.016459789127111435, -0.01354487705975771, 0.049000807106494904, 0.006253811530768871, 0.000387787411455065, 0.01874629221856594, -0.031072206795215607, 0.00141960009932518, 0.00478499848395586, -0.00395216653123498, -0.007457632105797529, -0.01953369751572609, -0.03573606535792351, -0.004463222809135914, 0.01202306617051363, 0.0006364540313370526, -0.018655437976121902, 0.0018984784837812185, -0.032011035829782486, -0.003441110486164689, -0.02940654195845127, 0.024682113900780678, -0.01529382448643446, -0.0025231025647372007, -0.020442241802811623, -0.005031062755733728, 0.0033010432962328196, -0.03873426094651222, 0.011137235909700394, -0.02870999090373516, -0.06123586744070053, -0.02584807761013508, -0.004603289999067783, -0.016596071422100067, -0.010168122127652168, 0.013014893047511578, -0.02271360158920288, -0.00038258222048170865, 0.011894355528056622, 0.01812545396387577, 0.020714804530143738, -0.003884025849401951, -0.008646311238408089, 0.003586856182664633, 0.005697328131645918, 0.02023024670779705, 0.021138790994882584, 0.006685370113700628, 0.006026675458997488, 0.0014129752526059747, 0.02387956529855728, 0.02792258746922016, -0.031708188354969025, -0.010243833996355534, -0.01202306617051363, -0.03143562376499176, -0.0054739778861403465, 0.005598902702331543, -0.0221684742718935, 0.00047509282012470067, 0.037008028477430344, 0.010516397655010223, 0.004190659616142511, 0.017398618161678314, 0.02241075225174427, -0.01042554248124361, 0.0056405444629490376, 0.02693833038210869, 0.02769545093178749, -0.003844277001917362, 0.016989773139357567, 0.022683316841721535, 0.009047584608197212, -0.008472173474729061, -0.00596989132463932, -0.004917494487017393, 0.024848679080605507, 0.022380467504262924, 0.002538244938477874, -0.015043974854052067, 0.02786201797425747, -0.008298035711050034, 0.02942168526351452, -0.0021918625570833683, 0.0039408099837601185, 0.004656288307160139, 0.02006368152797222, 0.013628160580992699, -0.0025458161253482103, 0.023485863581299782, -0.015490676276385784, 0.03873426094651222, -0.015180256217718124, -0.0024757825303822756, 0.029239974915981293, -0.038401126861572266, 0.03470638394355774, 0.01882200315594673, 0.021653633564710617, 0.03057250753045082, 0.032011035829782486, 0.02701404318213463, 0.024682113900780678, 0.006621014792472124, -0.02942168526351452, -0.008441888727247715, 0.005856323521584272, -0.028755418956279755, -0.016368934884667397, -0.0001298934075748548, 0.0014990976778790355, -0.013317741453647614, -0.013878010213375092, 0.00250985287129879, -0.019049139693379402, 0.0022429681848734617, 0.03291957825422287, -0.015346823260188103, -0.013938579708337784, 0.009516999125480652, 0.011099379509687424, 0.007063929922878742, -0.004743357188999653, 0.018504014238715172, -0.00025647442089393735, -0.04418552666902542, 0.0013315848773345351, 0.001106341602280736, 0.015702668577432632, 0.009320147335529327, 0.028513140976428986, -0.022834740579128265, 0.02560579963028431, 0.003265080042183399, 0.017913460731506348, 0.0019278168911114335, -0.012007923796772957, -0.030178803950548172, -0.01735319197177887, 0.03955195099115372, 0.02574208192527294, -0.018731148913502693, -0.01891285926103592, 0.042671285569667816, -0.023077018558979034, 0.007079072296619415, 0.026317492127418518, 0.030935924500226974, -0.008260179311037064, 0.0032234385143965483, -0.013279885053634644, 0.012818042188882828, 0.01533168088644743, 0.012469766661524773, -0.012000352144241333, 0.01084952987730503, 0.008101183921098709, 0.026726337149739265, -0.012825612910091877, 0.00913843885064125, -0.0009416680550202727, 0.02381899580359459, -0.040823910385370255, 0.033979546278715134, -0.01689891889691353, 0.02940654195845127, -0.0021918625570833683, -0.001652414444833994, -0.011818643659353256, 0.008260179311037064, -0.026287207379937172, -0.02280445583164692, -0.016929203644394875, -0.007559843361377716, -0.01588437892496586, -0.0210025105625391, 0.03051193803548813, -0.010857101529836655, 0.005697328131645918, 0.04709286615252495, -0.012227488681674004, -0.007393277250230312, -0.00366635387763381, -0.004270156845450401, -0.003632283303886652, 0.02366757206618786, -0.018186023458838463, 0.03885539993643761, -0.02256217785179615, 0.021138790994882584, 0.00789676234126091, -0.022668173536658287, -0.03930967301130295, 0.027574311941862106, -0.0028732705395668745, -0.012818042188882828, -0.0064128064550459385, -0.0045805759727954865, -0.0007433972205035388, -0.005076489876955748, -0.003564142622053623, 0.006200813222676516, 0.01671721041202545, 0.01078138966113329, -0.006215955596417189, 0.004224729724228382, 0.007927047088742256, -0.01953369751572609, -0.012545478530228138, 0.005750326439738274, 0.0089415879920125, 0.01221234630793333, -0.01882200315594673, 0.010652679018676281, -0.01108423713594675, 0.0012359984684735537, 0.011447655037045479, -0.014211143366992474, -0.004061948973685503, 0.031708188354969025, 0.0019836544524878263, 0.023001305758953094, -0.013984006829559803, -0.009327718988060951, -0.012007923796772957, 0.018534298986196518, 0.0038688834756612778, -0.007495488505810499, -0.009872845374047756, -0.028921985998749733, -0.0011508224997669458, -0.04009707644581795, -0.02637806162238121, -0.010834387503564358, 0.07310751080513, -0.047032296657562256, 0.004739571362733841, -0.009433715604245663, 0.035826921463012695, 0.022425895556807518, 0.0026555985677987337, 0.034282393753528595, 0.013991578482091427, 0.024863822385668755, 0.012280486524105072, 0.0037856001872569323, -0.008040614426136017, -0.005966105964034796, 0.012378912419080734, -0.00980470422655344, -0.005894179455935955, -0.006817866116762161, -0.0009402484283782542, -0.009834988974034786, -0.019806260243058205, 0.006223526783287525, 0.0019174064509570599, -0.013893152587115765, 0.016050944104790688, 0.014937978237867355, -0.013946151360869408, -0.017141196876764297, -0.01673235185444355, -0.0009889880893751979, 0.025408947840332985, -0.026317492127418518, -0.02357671782374382, -0.005220342427492142, -0.04473065212368965, -0.01466541551053524, -0.01649007387459278, -0.03461552783846855, 0.02007882297039032, -0.02030595950782299, 0.008229894563555717, 0.015611815266311169, 0.013870438560843468, 0.02777116373181343, -0.02590864710509777, -0.01983654499053955, -0.009327718988060951, 0.027044327929615974, 0.00782104954123497, -0.028074011206626892, -0.006435520481318235, 0.007442489732056856, -0.021123649552464485, -0.02761973813176155, 0.008706880733370781, -0.009751706384122372, 0.007733981125056744, 0.0020934368949383497, -0.02342529408633709, 0.009895558468997478, -0.02948225475847721, -0.01182621531188488, -0.021971622481942177, -0.016747495159506798, -0.015452819876372814, -0.01047096960246563, -0.007211568299680948, -0.027952872216701508, 0.006181885022670031, 0.003306721802800894, 0.01031197514384985, -0.002939518541097641, -0.03446410223841667, -0.018640294671058655, -0.020896513015031815, -0.004716857802122831, 0.014256570488214493, -0.028104295954108238, -0.00599260488525033, -0.004962921608239412, -0.025893505662679672, 0.005568617954850197, -0.010243833996355534, 0.027407744899392128, -0.008638739585876465, 0.0011290552793070674, 0.022001909092068672, -0.03982451558113098, 0.021259929984807968, 0.0007519148057326674, 0.02761973813176155, -0.03652346879243851, 0.022229043766856194, -0.021214503794908524, 0.007328921929001808, -0.05969134345650673, -0.009055155329406261, 0.007715052925050259, -0.05690514296293259, 0.03449438884854317, 0.0544520728290081, 0.007287280168384314, 0.020639091730117798, 0.003707995405420661, 0.010682963766157627, 0.021502209827303886, -0.008313178084790707, -0.020669376477599144, -0.012091207318007946, -0.005723827518522739, 0.014536704868078232, 0.0396730899810791, 0.01556638814508915, -0.01735319197177887, -0.0012606048258021474, 0.027135182172060013, -0.008040614426136017, -0.015626957640051842, 4.495400389714632e-06, -0.01564209908246994, -0.006272739265114069, 0.014324710704386234, -0.0011754288570955396, -0.003827241715043783, 0.003853740869089961, 0.026877760887145996, 0.004096019547432661, -0.015218112617731094, -0.00903244223445654, -0.0175046157091856, -0.0007954492466524243, -0.03961252048611641, -0.025348378345370293, -0.06426434963941574, -0.013507021591067314, -0.0019836544524878263, 0.03019394725561142, -0.019579123705625534, 0.0007377188303507864, 0.03837084397673607, -0.005750326439738274, 0.005333910696208477, -0.004962921608239412, -0.015990374609827995, 0.008237466216087341, 0.018958285450935364, -0.0027350960299372673, -0.005519405007362366, 0.0007821996114216745, -0.025575514882802963, 0.004777427297085524, -0.025106100365519524, -0.004603289999067783, -0.005863894708454609, 0.03228359669446945, 0.028225434944033623, 0.00011486930452520028, -0.02381899580359459, 0.030163662508130074, -0.002405748935416341, -0.00316097610630095, -0.0171260554343462, -0.03331328183412552, 0.012197203934192657, -0.007283494807779789, -0.025817792862653732, -0.006889792159199715, 0.016535501927137375, -0.007325136102735996, 0.0241218451410532, -0.008608454838395119, 0.00141960009932518, -0.0033029362093657255, 0.007018502801656723, 0.022819597274065018, -0.012545478530228138, -0.009093011729419231, -0.02038167044520378, -0.03991536796092987, -0.016050944104790688, -0.02901284024119377, 0.004841782618314028, 0.0060304612852633, -0.010879814624786377, -0.026029786095023155, -0.004262585658580065, -0.01897342875599861, -0.008472173474729061, 0.0013647088780999184, 0.0175197571516037, -0.007309993728995323, 0.013862867839634418, -0.0068443650379776955, 0.026484059169888496, 0.006568016484379768, -0.013900724239647388, -0.02171420305967331, -0.008184467442333698, 0.004981849808245897, 0.013597875833511353, 0.026408346369862556, 0.020987367257475853, 0.014559417963027954, 0.01571781188249588, -0.01279532816261053, -0.007219139486551285, 0.032253313809633255, 0.004607075359672308, -0.004966707434505224, 0.02148706652224064, 0.03709888085722923, 0.023137588053941727, -0.00250985287129879, -0.0396730899810791, 0.004951565060764551, -0.0030171233229339123, -0.01307546254247427, -0.021305358037352562, -0.006700512487441301, 0.019003713503479958, -0.02225932851433754, 0.016050944104790688, -0.0009728992590680718, 0.024863822385668755, 0.0022978594060987234, 0.017292622476816177, 0.019518554210662842, -0.001846426515839994, 0.0513630248606205, -0.01533168088644743, 0.009577568620443344, -0.008358605206012726, -0.026105498895049095, 0.016247795894742012, -0.03394926339387894, 0.01073596253991127, -0.017792319878935814, -0.020290816202759743, -0.03352527692914009, 0.009532141499221325, -0.0008896160288713872, -0.028361717239022255, -0.020578522235155106, -0.01882200315594673, -0.0006861400324851274, -0.02404613234102726, 0.001787749701179564, 0.005807110574096441, -0.021911052986979485, 0.022774171084165573, 0.012666618451476097, -0.00999398436397314, 0.015914663672447205, -0.016853492707014084, 0.02124478854238987, 0.011659648269414902, -0.047971125692129135, 0.014506420120596886, 0.001845480059273541, -0.013825011439621449, -0.004667644854635, -0.02163849025964737, 0.0014110824558883905, -0.0058676800690591335, 0.002615849720314145, 0.00404680659994483, 0.011311373673379421, 0.0057730404660105705, 0.03176875784993172, 0.007851334288716316, -0.0221684742718935, 0.022077620029449463, -0.034888092428445816, 0.02692318893969059, 0.00824503693729639, 0.007366777863353491, 0.014483706094324589, 0.003514929674565792, 0.02637806162238121, 0.008926445618271828, -0.0020139391999691725, 0.01089495699852705, -0.008373747579753399, -0.0009459268185310066, 0.02722603641450405, 0.029618535190820694, 0.026256922632455826, -0.022425895556807518, -0.022925594821572304, -0.005863894708454609, 0.008434317074716091, 0.012038208544254303, 0.014521562494337559, -0.012076064944267273, 0.016308365389704704, 0.03749258443713188, 0.006613443605601788, 0.016444647684693336, -0.01603580266237259, -0.015551245771348476, -0.017080627381801605, -0.006454448215663433, -0.015021261759102345, 0.0067459396086633205, -0.035826921463012695, -0.002500389004126191, 0.009297434240579605, 0.0019609408918768167, -0.004739571362733841, 0.00847974419593811, 0.013560019433498383, -0.002318680053576827, -0.009774419479072094, -0.0046487171202898026, -0.011947354301810265, 0.01182621531188488, 0.04164160043001175, 0.0019117280608043075, 0.005337696056813002, 0.004527577664703131, 0.020805658772587776, 0.001936334534548223, 0.0009251060546375811, -0.0046297889202833176, 0.051635585725307465, 0.014074861072003841, -0.013628160580992699, -0.010675392113626003, -0.002405748935416341, 0.0214113537222147, 0.01821630820631981, -0.0397033728659153, -0.006492304150015116, -0.013014893047511578, -0.002701025689020753, 0.00813146959990263, -0.005632973276078701, -0.002674526534974575, -0.002570422599092126, -0.029376257210969925, 0.010834387503564358, -0.006708083674311638, 0.022940736263990402, -0.011909497901797295, -0.004001379478722811, -0.0056064738892018795, -0.003526286454871297, 0.0021842913702130318, -0.012341056950390339, -0.013234457932412624, -0.015467962250113487, -0.018004314973950386, -0.024500403553247452, 0.016868634149432182, 0.002852449659258127, 0.006776224356144667, -0.004520006477832794, 0.021275073289871216, 0.023940134793519974, 0.007593913935124874, -0.08522143214941025, -0.004947779234498739, -0.008176896721124649, -0.0005583760212175548, 0.004285299219191074, -0.0009643816156312823, -0.006806509103626013, -0.009426144883036613, 0.025651225820183754, 0.02613578364253044, -0.024303553625941277, 0.031556762754917145, -0.0014536704402416945, -0.0013098176568746567, -0.00938071683049202, -0.02872513420879841, 0.011901927180588245, 0.03603891283273697, 0.0178983174264431, -0.014574560336768627, -0.011992781423032284, 0.0029735888820141554, 0.02419755607843399, 0.010327117517590523, 0.004031664226204157, -0.004205801989883184, 0.0012984608765691519, -0.007889190688729286, 0.0005948124453425407, 0.001165018416941166, -0.008351033553481102, 0.0033483633305877447, 0.0031685472931712866, -0.029588250443339348, 0.0038310273084789515, 0.011235660873353481, -0.04149017855525017, 0.017020057886838913, -0.0007443436188623309, 0.018155738711357117, -0.01003184076398611, -5.761210195487365e-05, -0.0016438969178125262, -0.013423738069832325, -0.005651901010423899, -0.012999750673770905, 0.004273942671716213, -0.008169325068593025, 7.512050069635734e-05, -0.00395216653123498, -0.06250783056020737, 0.0068595074117183685, 0.028664564713835716, -0.002924376167356968, 0.025878362357616425, -0.03930967301130295, 0.008366175927221775, 0.028603995218873024, 0.015377108007669449, -0.007245638873428106, -0.0038613120559602976, 0.009471572004258633, 0.008502458222210407, 0.023864423856139183, 0.0021748272702097893, -0.006738368421792984, -0.013809869065880775, 0.009759277105331421, -0.00688600679859519, -0.005636758636683226, 0.0022524320520460606, 0.007609056308865547, 0.010448256507515907, 0.03198074921965599, 0.031556762754917145, -0.006734582595527172, -0.02210790477693081, -0.000530930410604924, -0.0002940937993116677, -0.00537176663056016, -0.0009785776492208242, 0.019003713503479958, -0.00937314610928297, 0.0016050945268943906, -0.000871634460054338, -0.007306208368390799, -0.005947177764028311, -0.014460992999374866, 0.023985562846064568, 0.010576967149972916, 0.012749901041388512, -0.008381319232285023, -0.02902798168361187, 0.005598902702331543, -0.015430105850100517, 0.014877408742904663, 0.0018095169216394424, -0.04009707644581795, -0.033646415919065475, -0.028134580701589584, -0.011061524040997028, 0.0032915794290602207, 0.00024677382316440344, -0.02792258746922016, 0.025636084377765656, 0.01882200315594673, -2.2403062757803127e-05, -0.014112717472016811, 0.006507446523755789, 0.007067715283483267, 0.014339853078126907, -0.03712916746735573, 0.00044741062447428703, -0.013249600306153297, 0.01528625376522541, -0.007927047088742256, -0.019276276230812073, -0.015748096629977226, -0.020033396780490875, 0.006378736346960068, 0.00449350755661726, 0.007510630879551172, 0.0014404208632186055, 0.022274471819400787, -0.007567414548248053, -0.005409622564911842, 0.009797133505344391, -0.014135430566966534, 0.02079051546752453, 0.01412028819322586, 0.017065485939383507, -0.027801448479294777, -0.015581530518829823, -0.03137505427002907, 0.0022637888323515654, 0.007874048314988613, -0.0021786128636449575, -0.015089401975274086, -0.0006402396247722208, 0.027377460151910782, -0.029073409736156464, 0.00941857323050499, -0.022274471819400787, 0.021593064069747925, 0.0003913364198524505, 0.012356199324131012, -0.0005853484035469592, -0.03137505427002907, -0.007457632105797529, -0.00698064686730504, 0.019412558525800705, 0.0010249512270092964, -0.00039228281821124256, -0.016156941652297974, -0.010622394271194935, 0.017686324194073677, -0.0015568280359730124, 0.00018336500215809792, -0.009289862588047981, -0.0005039580282755196, -0.009305004961788654, 0.0009251060546375811, 0.00032603481668047607, -0.018504014238715172, -0.010380115360021591, 0.006178099662065506, 0.036372046917676926, 0.02637806162238121, -0.025227239355444908, -0.04264099895954132, 0.006904934532940388, -0.030133377760648727, -0.002966017695143819, 0.005322553683072329, 0.004266371484845877, -0.002161577809602022, 0.024091560393571854, -0.0245155468583107, 0.02645377442240715, 0.0029641250148415565, 0.032344166189432144, 0.003690960118547082, -0.043064989149570465, 0.0007178444066084921, 0.0011621792800724506, 0.00523169944062829, -0.004474579356610775, -0.020517952740192413, 0.009766848757863045, 0.010539110749959946, 0.01836773194372654, -0.00601531844586134, -0.007688554003834724, -0.014831981621682644, 0.003024694509804249, 0.009070297703146935, -0.012977037578821182, -0.0018672472797334194, 0.012537907809019089, -0.0048947809264063835, -0.009411001577973366, -0.007790765259414911, 0.012522765435278416, -0.006208384409546852, 0.007321350742131472, 0.009751706384122372, 0.0388856865465641, 0.059115931391716, -0.024530688300728798, 0.010637536644935608, -0.016596071422100067, 0.00023482550750486553, -0.006901149172335863, -0.018080025911331177, -0.003340792143717408, -0.002335715340450406, 0.007593913935124874, 0.012931610457599163, 0.006757296156138182, 0.016156941652297974, -0.013484307564795017, 0.010561824776232243, 0.028815988451242447, 0.012098778039216995, -0.014877408742904663, 0.009486714377999306, -0.0319201797246933, -0.00020489560847636312, -0.002260003238916397, -0.015748096629977226, 0.0015000440180301666, -0.021275073289871216, 0.030315086245536804, -0.007567414548248053, 0.0003837652038782835, 0.0009719528607092798, 0.009289862588047981, 0.008199609816074371, 0.019624551758170128, 0.030769357457756996, -0.02669605240225792, 0.0016164513071998954, 0.004224729724228382, 0.0064317346550524235, 0.021744487807154655, -0.032707586884498596, 0.006586944218724966, 0.024258125573396683, -0.04242900758981705, -0.031950466334819794, -0.013507021591067314, 0.0042360867373645306, -0.027407744899392128, 0.012954323552548885, -0.008335891179740429, -0.01844344474375248, 0.021108506247401237, 0.036462899297475815, 0.00381209934130311, 0.016777779906988144, -0.009441287256777287, 0.003172332886606455, 0.029194548726081848, -0.0005474924109876156, 0.03455495834350586, 9.07952562556602e-05, 0.009047584608197212, 0.003573606489226222, -0.0048985667526721954, -0.00029977221856825054, -0.00752955861389637, 0.016156941652297974, -0.00185872963629663, 0.008396461606025696, -0.016611212864518166, -0.01938227377831936, 0.0029584465082734823, 0.00988798774778843, -0.015127258375287056, -0.008926445618271828, 0.022743886336684227, 0.020260531455278397, 0.005163558758795261, -0.017640896141529083, -0.010327117517590523, -0.010402829386293888, 0.01094038411974907, 0.01618722639977932, -0.01027411874383688, 0.007101785857230425, 0.0016173976473510265, 0.0038367058150470257, -0.00016585660341661423, -0.007972474209964275, -0.014400423504412174, -0.007775622885674238, -0.0015265432884916663, 0.0046297889202833176, 0.0030322656966745853, 0.009168723598122597, -0.0051938435062766075, -0.015324109233915806, 0.0008091720519587398, -0.0023603218141943216, 0.00015402660937979817, -0.0007448168471455574, 0.0037288160528987646, 0.03437324985861778, 0.0019571552984416485, 0.02195648103952408, 0.009910700842738152, -0.015187827870249748, -0.003452467266470194, 0.0012009816709905863, 0.0010571288876235485, -0.00443293759599328, 0.0009615424205549061, -0.009532141499221325, 0.04482150450348854, -0.002966017695143819, 0.002377356868237257, 0.005000778008252382, -0.005330124869942665, -0.02365243062376976, -0.009834988974034786, 0.022622747346758842, 0.02366757206618786, -0.013287456706166267, -0.0006397664546966553, -0.0015767024597153068, -0.015430105850100517, 0.009918272495269775, -0.007222925312817097, 0.005958534777164459, 0.007400848437100649, 0.013870438560843468, -0.005519405007362366, 0.03004252351820469, -0.010773818008601665, 0.00960785336792469, -0.009289862588047981, 0.019654836505651474, 0.0007178444066084921, 0.0039559523575007915, -0.016550643369555473, 0.02731689065694809, 0.021532494574785233, 0.014037005603313446, -0.014839552342891693, -0.015657242387533188, -0.021335642784833908, 0.009585139341652393, -0.01046339888125658, 0.01720176637172699, -0.014566989615559578, 0.01906428299844265, -0.01735319197177887, 0.014915264211595058, 0.0024473904632031918, 0.004478365182876587, 0.026362920179963112, 0.014059718698263168, -0.012636333703994751, -0.014127859845757484, 0.011568794026970863, -0.0014981512213125825, 0.005651901010423899, -0.004099804908037186, -0.006072102580219507, -0.02188076823949814, 0.016126656904816628, -0.00038045280962251127, 0.00960785336792469, -0.006401449907571077, 0.0091460095718503, -0.023289011791348457, -0.005799539387226105, 0.0018114097183570266, -0.021835342049598694, 0.011493082158267498, -0.013711444102227688, -0.01544524822384119, -0.003791278460994363, -0.036160051822662354, -0.02086622826755047, 0.014180858619511127, 0.004754713736474514, -0.007022288162261248, -0.004796355497092009, -0.019972827285528183, 0.013287456706166267, -0.017640896141529083, -0.013317741453647614, 0.02045738324522972, 0.003039836883544922, 0.020820800215005875, 0.016611212864518166, -0.01727747917175293, -0.008267750963568687, -0.005398266017436981, -0.0171260554343462, -0.010069696232676506, 0.003734494559466839, 0.002309216186404228, 0.016914062201976776, -0.016611212864518166, 0.01552096102386713, -0.02023024670779705, -0.009297434240579605, -0.007105571683496237, 0.019972827285528183, 0.006405235268175602, -0.003736387472599745, -0.01268176082521677, -0.006518803536891937, 0.0035092514008283615, 0.02506067231297493, -0.013279885053634644, -0.011175091378390789, 0.01486983709037304, -0.0002072616043733433, 0.01851915568113327, 0.0014830088475719094, -0.004841782618314028, 0.024394407868385315, 0.00899458583444357, -0.009009728208184242, -0.0032688656356185675, -0.013491879217326641, -0.0045010787434875965, -0.011818643659353256, 0.004815283231437206, -0.0004455178277567029, -0.00414144666865468, 0.02474268339574337, -0.006276525091379881, -0.015437677502632141, -0.00782104954123497, -0.01031197514384985, -0.017640896141529083, -0.009781991131603718, 0.016247795894742012, 0.007192640099674463, -0.0023735712748020887, -0.01003941148519516, -0.01221234630793333, -0.03806799650192261, -0.011727789416909218, -0.002848664065822959, 0.00871445145457983, 0.002021510386839509, 0.01026654802262783, 0.011561223305761814, -0.010539110749959946, 0.007150998804718256, -0.013204173184931278, 0.007105571683496237, 0.0017830176511779428, 0.01868572272360325, 0.010925241746008396, 0.0318898968398571, 0.021820198744535446, 0.0035792849957942963, 0.026968615129590034, -0.00809361319988966, -0.03749258443713188, -0.018246592953801155, 0.0052544130012393, 0.018413159996271133, -0.02248646505177021, 0.009441287256777287, -0.0087523078545928, 0.002570422599092126, -0.03400983288884163, -0.020729945972561836, 0.029512539505958557, -0.01735319197177887, -0.00029882582020945847, 0.016838349401950836, -0.021456781774759293, 0.006231097970157862, 0.004008950665593147, 0.007484131492674351, 0.01221991702914238, 0.0026234209071844816, 0.025272667407989502, 0.028513140976428986, -0.012189632281661034, -0.01923084817826748, 0.004130089655518532, -0.007851334288716316, -0.022759027779102325, 0.009933414869010448, -0.01093281339854002, -0.020487667992711067, 0.008616025559604168, -0.02169905975461006, 0.023167872801423073, 0.009797133505344391, 0.012250201776623726, 0.010561824776232243, -8.990800415631384e-05, -0.005216557066887617, -0.012598477303981781, -0.004126304294914007, -0.011303802020847797, -0.014407994225621223, -0.009759277105331421, -0.000915168842766434, 0.013855296187102795, -0.007090429309755564, 0.005610259249806404, -0.04803169518709183, -0.026877760887145996, 0.01291646808385849, 0.010857101529836655, 0.009448857977986336, 0.005523190833628178, 0.006617228966206312, -0.009834988974034786, 0.01664149761199951, 0.012197203934192657, -0.013446452096104622, -0.004800140857696533, -0.005076489876955748, -0.0011129664489999413, -0.011924640275537968, 0.015505818650126457, -0.04318612813949585, -0.01073596253991127, -0.0006411860231310129, 0.005508048459887505, -0.01650521717965603, -0.007643126882612705, 0.001522757695056498, 0.0047812131233513355, 0.02085108496248722, -0.006738368421792984, -0.0040505919605493546, 0.010258976370096207, -0.01353730633854866, -0.0034486816730350256, 0.009978841990232468, -0.006306809838861227, -0.004989420995116234, 0.020714804530143738, 0.014650272205471992, -0.00011356800678186119, 0.019155137240886688, -0.001077003194950521, 0.0005370820290409029, 0.002055580960586667, -0.024394407868385315, 0.014309568330645561, 0.016550643369555473, 0.005398266017436981, 0.012341056950390339, -0.015626957640051842, -0.006624800153076649, 0.011841357685625553, 0.0008654828416183591, -0.020563380792737007, 0.00933528970927, -0.013007322326302528, 0.012946752831339836, 0.0018625152297317982, -0.0025458161253482103, -2.3793088985257782e-05, -0.0029451968148350716, 0.008593312464654446, 0.0010240048868581653, 0.014597274363040924, 0.03222302719950676, 0.006568016484379768, -0.00591310765594244, 0.0015416856622323394, -0.009660851210355759, -0.009789561852812767, 0.015021261759102345, 0.010788960382342339, 0.0046487171202898026, -0.011273517273366451, 0.02521209791302681, 0.009539712220430374, -0.002388713648542762, 0.016278080642223358, 7.612605259055272e-05, -0.004978064447641373, 0.004504864104092121, -0.007359206676483154, 0.011334086768329144, 0.013650874607264996, -0.016323508694767952, 0.004909923300147057, -0.012151776812970638, -0.013597875833511353, -0.011038810014724731, 0.0013401024043560028, 0.013703872449696064, -0.002687776228412986, 0.019094567745923996, -0.03631147742271423, -0.004830425605177879, -0.007116928230971098, 0.005383123643696308, 0.023546433076262474, 0.007154784165322781, 0.030072808265686035, 0.013946151360869408, -0.026120640337467194, 0.014801696874201298, -0.009093011729419231, 0.005576189141720533, 0.012378912419080734, -0.015369536355137825, 0.010001556016504765, -0.011175091378390789, 0.013332883827388287, -0.019624551758170128, -0.004512435290962458, 0.0018227664986625314, -0.017307763919234276, 0.012560620903968811, 0.007836191914975643, 0.005848752334713936, 0.0012880504364147782, -0.0047471425496041775, 0.004020307213068008, -0.011334086768329144, -0.006064531393349171, 0.005916893016546965, -0.000531876808963716, 0.010925241746008396, -0.011947354301810265, 0.006060746032744646, 0.018958285450935364, -0.02257731929421425, 0.013454022817313671, 0.009426144883036613, 0.012984608300030231, 0.0064658052287995815, 0.016853492707014084, -0.0028316290117800236, 0.0072721377946436405, -0.004936422687023878, 0.003077693050727248, -0.013370740227401257, -0.023092161864042282, 0.017368333414196968, -0.0029584465082734823, 0.0005981248104944825, -0.03400983288884163, -0.012704473920166492, 0.010380115360021591, -0.013340454548597336, 0.0011404120596125722, -0.016611212864518166, 0.010115123353898525, 0.0010287368204444647, 0.014233856461942196, -0.020957082509994507, -0.025545230135321617, 0.01596008986234665, 0.03207160532474518, 0.013423738069832325, -0.0118716424331069, 0.018155738711357117, -0.000650176836643368, 0.00015296190395019948, 0.01814059540629387, 0.004330726806074381, 0.008025472052395344, 0.009108154103159904, -0.0010874136351048946, 0.024015847593545914, 0.01292403880506754, -0.019669977948069572, -0.00224675377830863, -0.009448857977986336, 0.010599680244922638, -0.012590906582772732, -0.012818042188882828, 0.011212947778403759, 0.0022827167995274067, -0.006605872418731451, 0.001772607327438891, -0.0334344208240509, 0.011742931790649891, -0.002286502392962575, -0.007964902557432652, -0.034827522933483124, -0.023834139108657837, -0.026029786095023155, 0.004803926683962345, -0.00212940014898777, -0.0012076064012944698, 0.0005995444371365011, -0.009797133505344391, 0.018473729491233826, 0.02023024670779705, 0.0012624976225197315, -0.004429152235388756, 0.018488870933651924, -0.0011744824005290866, 0.031102491542696953, 0.02949739620089531, 0.0007197372033260763, 0.008199609816074371, -0.035221222788095474, -0.026484059169888496, -0.006212169770151377, -0.010069696232676506, 0.010804102756083012, -0.0005205200286582112, -0.022441036999225616, 0.01673235185444355, -0.014090003445744514, -0.017565185204148293, 0.001964726485311985, 0.00457300478592515, -0.002801344031468034, 0.013325312174856663, 0.01936713047325611, -0.02583293616771698, 0.007067715283483267, 0.024303553625941277, 0.0221684742718935, 0.004697929602116346, 0.010115123353898525, 0.0011754288570955396, -0.024621544405817986, -0.009675993584096432, -0.0026650624349713326, 0.008699309080839157, 0.019594267010688782, -0.012674189172685146, 0.02256217785179615, -0.008691738359630108, 0.0005129488417878747, 0.000731094041839242, 0.010637536644935608, -0.009501856751739979, 0.003352148924022913, 0.004523792304098606, 0.033040717244148254, -0.008139040321111679, 0.004720643628388643, -0.010561824776232243, -0.003176118480041623, -0.02109336480498314, -0.0029603394214063883, 0.023319296538829803, -0.013340454548597336, 0.0005853484035469592, 0.017928602173924446, -0.013809869065880775, -0.0015161328483372927, 0.017065485939383507, -0.01564209908246994, -0.0031988320406526327, -0.015657242387533188, 0.0012161240447312593, 0.029164263978600502, 0.028437428176403046, 0.010319545865058899, 0.02094193920493126, -0.000284156616544351, -0.020184820517897606, -0.01112209353595972, 0.017716608941555023, 0.0002978794218506664, 0.00980470422655344, 0.0022051120176911354, -0.007650698069483042, -0.0067459396086633205, 0.016520358622074127, 0.021275073289871216, -0.017095770686864853, -0.008820448070764542, 0.0037572081200778484, -0.0026783121284097433, 0.010175692848861217, -0.009009728208184242, -0.015081831254065037, 0.005265770014375448, -0.0015255968319252133, -0.003382433671504259, -0.022153332829475403, 0.0007954492466524243, 0.01279532816261053, -0.0060304612852633, -0.02777116373181343, -0.0034089330583810806, -0.022849882021546364, 0.0029735888820141554, -0.0008768396219238639, 0.010947955772280693, -0.012999750673770905, -0.0006137404125183821, 0.01136437151581049, 0.007476560305804014, 0.016868634149432182, 0.007037430536001921, -0.011212947778403759, 0.015361965633928776, 0.004217158537358046, 0.013658445328474045, 0.005436121951788664, 0.010652679018676281, -0.001268176012672484, -0.00023234120453707874, -0.007249424234032631, 0.005379337817430496, 0.007597699761390686, 0.012901325710117817, 0.011795930564403534, -0.008381319232285023, 0.0058714658953249454, -0.008570598438382149, -0.0004504864336922765, 0.017322907224297523, 0.003397576045244932, -0.01047096960246563, 0.0011565008899196982, -0.01642950437963009, 0.023788711056113243, 0.021986765787005424, -0.006159171462059021, 0.018034599721431732, 0.002258110558614135, -0.003427861025556922, 0.012583334930241108, 0.0033616130240261555, 0.011008525267243385, 0.024636685848236084, 0.010440684854984283, 0.008434317074716091, -0.009191437624394894, 0.0042020161636173725, -0.026287207379937172, -0.003990022465586662, 0.00461086118593812, 0.008532742969691753, -0.012159347534179688, 0.008494886569678783, 0.0075371298007667065, 0.01556638814508915, -0.017065485939383507, -0.003734494559466839, -0.005625401623547077, -0.004546505864709616, -0.014498848468065262, 0.000848447612952441, 0.010417971760034561, 0.006787580903619528, 0.0326773002743721, 0.034585244953632355, -0.00027398281963542104, 0.004379939287900925, 0.012371341697871685, -0.019412558525800705, -0.0016760744620114565, -0.02434897981584072, -0.011311373673379421, 0.017943745478987694, 0.005436121951788664, 0.013128461316227913, -0.01202306617051363, -0.004890995565801859, -0.015672383829951286, 0.028346573933959007, 0.016293223947286606, 0.00015012270887382329, -0.023531289771199226, -0.01586923561990261, 0.03352527692914009, -0.009660851210355759, 0.022910451516509056, 0.002330036833882332, -0.007014716975390911, -0.014748698100447655, -0.0019779761787503958, -0.014733555726706982, 0.007707481738179922, 0.018095169216394424, -0.00620459858328104, -0.014498848468065262, 0.011190233752131462, 0.002557172905653715, 0.012984608300030231, -0.009017299860715866, 0.006363593973219395, -0.009812275879085064, -0.02047252655029297, -0.016126656904816628, 0.002733203349635005, 0.003974880091845989, -0.025469517335295677, 0.00794218946248293, -0.01571781188249588, -0.032011035829782486, -0.0070980004966259, -0.002511745784431696, 0.01977597549557686, 0.0064128064550459385, 0.007359206676483154, 0.01695948839187622, -0.020714804530143738, 0.004856924992054701, -0.0213962122797966, 0.013802298344671726, -0.01596008986234665, -0.0018398016691207886, -0.012189632281661034, 0.00513705937191844, 0.007048787549138069, -0.005928250029683113, 0.0014574560336768627, -0.009350432083010674, 0.013014893047511578, -0.002750238636508584, -0.014521562494337559, 0.008229894563555717, 0.0056064738892018795, 0.010675392113626003, -0.015271111391484737, 0.0007008092361502349, -0.01588437892496586, -0.005383123643696308, -0.0007930832216516137, 0.013484307564795017, -0.001652414444833994, -0.0008176896371878684, 0.011371943168342113, 0.01074353326112032, 0.008722023107111454, 0.01618722639977932, -0.0070260739885270596, -0.005227913614362478, -0.02777116373181343, 0.006356022786349058, 0.013666016981005669, -0.017171481624245644, -0.009259577840566635, 0.0034354322124272585, -0.00646201940253377, 0.008335891179740429, -0.027680307626724243, -0.0043004415929317474, -0.0006383468280546367, -0.015202970243990421, -0.023289011791348457, 0.010554253123700619, -0.0023962848354130983, -0.02107822149991989, -0.015611815266311169, 0.008570598438382149, -0.009123296476900578, 0.005523190833628178, 0.00871445145457983, 0.008638739585876465, 0.004285299219191074, 0.011962496675550938, -0.004682787228375673, 0.010213549248874187, 0.0006657924386672676, -0.012598477303981781, 0.000243934613536112, -0.007964902557432652, -0.004459436982870102, -0.0015899520367383957, 0.00824503693729639, -0.013560019433498383, -0.019503412768244743, 0.00875987857580185, -0.03073907271027565, 0.0005243056220933795, 6.991530244704336e-05, -0.020972225815057755, -0.032798439264297485, -0.011954925023019314, 0.006753510795533657, 0.010887386277318, -0.016702067106962204, 0.017625754699110985, -0.004096019547432661, -0.01221991702914238, -0.025620941072702408, -0.005220342427492142, 0.02584807761013508, -0.025651225820183754, 0.01159150805324316, 0.011909497901797295, 0.009350432083010674, 0.017156340181827545, 0.0032537232618778944, -0.01401429157704115, -0.04966707527637482, 0.0012038208078593016, 0.027574311941862106, -0.006545302923768759, -0.019518554210662842, -1.721265107335057e-05, 0.008843162097036839, 0.013749299570918083, -0.010690534487366676, -0.010168122127652168, 0.005924464203417301, -0.04139932245016098, 0.0005673668347299099, -0.01467298623174429, -0.02864942140877247, 0.0020442241802811623, 0.005091632250696421, -0.005265770014375448, -0.0004036396276205778, -0.018413159996271133, -0.0024322480894625187, -0.033040717244148254, -0.006291667465120554, 0.012568192556500435, 0.014688128605484962, 0.01412028819322586, 0.009168723598122597, 0.015006119385361671, 0.01306789182126522, -0.014074861072003841, 0.011697504669427872, 0.015180256217718124, 0.01806488446891308, 0.009940985590219498, -0.03394926339387894, -0.003959737718105316, -0.03011823445558548, 0.024000704288482666, 0.005182486493140459, 0.017065485939383507, -0.008623597212135792, -0.006848150864243507, 0.004535148851573467, -0.006984432227909565, 0.009638138115406036, -0.014370137825608253, -0.012007923796772957, 0.01874629221856594, 0.00956999696791172, -0.002066937740892172, 8.854755287757143e-05, 0.012439481914043427, -0.007881619967520237, 9.357530507259071e-05, 0.011879213154315948, 0.02188076823949814, -0.017625754699110985, 0.0018114097183570266, -0.027347175404429436, 0.011069094762206078, -0.004637360107153654, -0.016232654452323914, -0.02233504131436348, -0.00851760059595108, 0.022940736263990402, 0.00013036660675425082, -0.011894355528056622, 0.02086622826755047, 0.021275073289871216, -0.0009728992590680718, -0.00910058245062828, -0.012144205160439014, -0.006189456209540367, -0.001093092025257647, -0.01720176637172699, -0.014688128605484962, 0.029618535190820694, 0.037553153932094574, 0.007760480511933565, 0.014998547732830048, 0.015914663672447205, 0.01362058985978365, 0.0009558640304021537, -0.009698707610368729, 0.0044859363697469234, -0.005988819524645805, 0.014301997609436512, -0.003706102492287755, -0.014582131989300251, 0.005939606577157974, 0.024454977363348007, 0.01812545396387577, -0.014029433950781822, -0.0005011188331991434, -0.006427949294447899, -0.029149120673537254, -0.03352527692914009, -0.011508224532008171, -0.00036862283013761044, 0.02677176520228386, 0.018534298986196518, 0.010667821392416954, -0.01463512983173132, -0.008199609816074371, -0.00022193080803845078, -0.018882574513554573, -0.004455651622265577, 0.012378912419080734, 0.031950466334819794, 0.013764441944658756, 0.026862619444727898, 0.034524671733379364, -0.006022890098392963, -0.026953473687171936, -0.0032764370553195477, 0.01396129373461008, 0.007109357044100761, 0.00917629525065422, -0.017762035131454468, -0.021138790994882584, 0.00387077615596354, 0.0035963200498372316, 0.012348627671599388, -0.00371745927259326, -0.003948381170630455, -0.00898701511323452, 0.015384678728878498, -0.008729593828320503, 0.016474932432174683, 0.018019456416368484, 0.0010665928712114692, -0.003210189053788781, -0.01401429157704115, -0.02754402719438076, 0.0027142753824591637, 0.010046983137726784, -0.010145408101379871, 0.020502811297774315, -0.003410825738683343, -0.00903244223445654, 0.0237432848662138, -0.015301396138966084, 0.004754713736474514, 0.015778381377458572, -0.007446275558322668, -0.0008579116547480226, -0.0023565362207591534, 0.007101785857230425, -0.008828019723296165, -0.025666369125247, -0.003813992254436016, 0.01159150805324316, 0.01773175038397312, -0.007014716975390911, -0.004735786002129316, 0.007313779555261135, -0.0014886872377246618, -0.0062651680782437325, -0.00414144666865468, 0.009865273721516132, -0.007828621193766594, -0.005897965282201767, -0.0036701394710689783, -0.003751529846340418, 0.014226285740733147, 0.00667401310056448, -0.0060191042721271515, -0.021259929984807968, -0.000796868815086782, -0.012575764209032059, -0.01861000992357731, 0.0035243937745690346, 0.019033998250961304, 0.002971696201711893, 0.010334688238799572, -0.004584361799061298, 0.013219315558671951, -0.01705034263432026, -0.021805057302117348, 0.004228515550494194, 0.010622394271194935, 0.0016287544276565313, 0.028831131756305695, 0.036917172372341156, 0.0016808065120130777, 0.002085865708068013, -0.018261734396219254, -0.01898857019841671, 0.016702067106962204, -0.017958886921405792, 0.002570422599092126, -0.0037042098119854927, -0.00984256062656641, -0.0004781686293426901, 0.02895227074623108, 0.008441888727247715, 0.0028164866380393505, -0.011387085542082787, 0.0050272769294679165, -0.00469035841524601, -0.0009889880893751979, -0.022198759019374847, 0.012462195940315723, -0.003280222648754716, 0.016474932432174683, -0.023516148328781128, -0.0054588355123996735, 0.012598477303981781, -0.012272915802896023, 0.0006250972510315478, 0.02475782483816147, 0.005076489876955748, 0.004255014471709728, 0.0171260554343462, -0.015732955187559128, -0.015089401975274086, -0.006647513713687658, 0.03534236177802086, -0.018488870933651924, -0.014839552342891693, 0.0031855825800448656, 0.0035357505548745394, 0.00021991970425006002, -0.004584361799061298, -0.02443983405828476, -0.005966105964034796, -0.0015170793049037457, -0.051877863705158234, -0.0024436048697680235, -0.0043496545404195786, 0.015430105850100517, -0.01851915568113327, -0.0068784356117248535, -0.007518202066421509, 0.005330124869942665, -0.0027123824693262577, 0.006064531393349171, 0.018428301438689232, -0.005004563368856907, -0.03222302719950676, -0.027438029646873474, -0.014460992999374866, 0.0032877938356250525, -0.0015852201031520963, -0.00913843885064125, -0.008139040321111679, 0.030466509982943535, -0.01306789182126522, 0.004618432372808456, 0.009320147335529327, -0.01580866612493992, 0.008169325068593025, -0.010122695006430149, 0.010690534487366676, 0.0028865202330052853, -0.021653633564710617, -0.0003210662107449025, -0.00567840039730072, -0.016293223947286606, -0.012068493291735649, 0.0024606401566416025, 0.026499200612306595, 0.011303802020847797, -0.017852891236543655, -0.009486714377999306, -0.019397415220737457, 0.00956999696791172, 0.008040614426136017, -0.019351987168192863, -0.033737268298864365, 0.0008157968404702842, -0.004701715428382158, 0.016141798347234726, -0.0036701394710689783, -0.0038650978822261095, 0.011894355528056622, -0.010826816782355309, -0.02607521414756775, -0.014256570488214493, -0.023395009338855743, 0.007601485121995211, -0.015369536355137825, -0.01588437892496586, 0.0021521137095987797, -0.01268176082521677, 0.015854094177484512, -0.008706880733370781, 0.012590906582772732, -0.011477939784526825, -0.028619136661291122, -0.005201414693146944, 0.005140845198184252, -0.012719616293907166, -0.011424941010773182, 0.01443070825189352, -0.015702668577432632, 0.020972225815057755, -0.023516148328781128, -0.017534900456666946, -0.021653633564710617, 0.01798917166888714, -0.0034032545518130064, 0.0012889968929812312, 0.005704899318516254, -0.0018729256698861718, 0.016944346949458122, 0.013014893047511578, -0.0021956481505185366, 0.007313779555261135, 0.020835943520069122, -0.014127859845757484, -0.009327718988060951, 0.0009842560393735766, 0.000583455606829375, 0.014604845084249973, -0.010433114133775234, -0.0056064738892018795, -0.0022902879863977432, 0.013711444102227688, -0.010387687012553215, -0.009282291866838932, 0.016217511147260666, 0.01486226636916399, -0.009077869355678558, 0.005390694830566645, 0.013590304180979729, -0.0005332964356057346, -0.020290816202759743, 0.002996302442625165, -0.037310875952243805, 0.021835342049598694, 0.028664564713835716, -0.009698707610368729, -0.00913843885064125, -0.0003698058135341853, 0.023924993351101875, 0.007200211752206087, 0.003974880091845989, 0.01529382448643446, 0.007980044931173325, 0.016944346949458122, 0.0010590216843411326, 0.018928000703454018, 0.007775622885674238, -0.012113920412957668, 0.015929805114865303, 0.005663258023560047, -0.008775020949542522, 0.0011158057022839785, 0.010955526493489742, 8.53534511406906e-05, 0.020805658772587776, -0.016126656904816628, 0.012530336156487465, -0.011470368131995201, -0.02148706652224064, -0.019185421988368034, -0.01938227377831936, 0.005924464203417301, -0.010372544638812542, 0.021138790994882584, 0.00712071405723691, -0.019715406000614166, 0.005102988798171282, 0.016232654452323914, -0.007934617809951305, -0.008260179311037064, 0.014105145819485188, -0.006371165160089731, 0.01983654499053955, 0.007866477593779564, -0.032556161284446716, -0.01938227377831936, -0.01656578667461872, 0.011069094762206078, 0.009501856751739979, 0.0035054658073931932, -0.01883714646100998, 0.0075712003745138645, 0.01326474267989397, 0.027271464467048645, 0.0022070049308240414, 0.011758074164390564, -0.017247194424271584, -0.031223630532622337, -0.002477675210684538, -0.017625754699110985, -0.009282291866838932, 0.009789561852812767, 0.014551847241818905, 0.013393453322350979, -0.011644505895674229, 0.026044929400086403, 0.006427949294447899, 0.01977597549557686, -0.01765603944659233, -0.010561824776232243, 0.005038633942604065, 0.001091199228540063, -0.0028089152183383703, 0.0026518129743635654, 0.005629187449812889, -0.006208384409546852, 0.0018691400764510036, -0.003887811442837119, 0.011258374899625778, -0.023607002571225166, 0.015339251607656479, 0.007298637181520462, 0.00014160510909277946, -0.011038810014724731, 0.015975233167409897, -0.011811072938144207, 0.015195399522781372, 0.005708685144782066, 0.01867057941854, -0.0010296832770109177, -0.005288483574986458, 0.024606401100754738, 0.012325914576649666, 0.007525773253291845, -0.0012161240447312593, -0.002913019387051463, 0.015732955187559128, -0.013332883827388287, 0.0024171057157218456, -0.000988041632808745, 0.004224729724228382, 0.0048947809264063835, -0.002066937740892172, -0.011076666414737701, -0.014248998835682869, -0.0008768396219238639, -0.011530938558280468, 0.012151776812970638, -0.003601998556405306, 0.0012662832159548998, 0.01163693517446518, -0.002706704195588827, 0.03243502229452133, 0.005288483574986458, -0.011879213154315948, 0.006870864424854517, 0.00443293759599328, 0.007525773253291845, -0.023092161864042282, 0.007586342748254538, 0.004993206821382046, -0.00847974419593811, -0.010607251897454262, 0.021032795310020447, 0.0118716424331069, -0.010637536644935608, -0.013022464700043201, -0.011243232525885105, 0.014332282356917858, 0.020639091730117798, 0.014763840474188328, -0.003696638625115156, 0.03310128673911095, -0.013946151360869408, 0.03625090792775154, 0.005314982496201992, -0.002704811282455921, 0.007843763567507267, 0.016172083094716072, 0.007219139486551285, -0.012038208544254303, 0.03391897678375244, 0.009297434240579605, -0.015308966860175133, -0.013658445328474045, -0.007688554003834724, 0.014218714088201523, 0.0015426321187987924, -0.011773216538131237, 0.01594494841992855, -0.015732955187559128, 0.015778381377458572, -0.0011574472300708294, 0.01338588260114193, 0.01564209908246994, -0.021850483492016792, -0.018382875248789787, 0.0039370241574943066, 0.009713849984109402, 0.025166669860482216, -0.014884979464113712, 0.0089415879920125, -0.005420979578047991, -0.01977597549557686, -0.0141960009932518, -0.013045177794992924, 0.000835198035929352, -0.004909923300147057, 0.0038480625953525305, 0.009229293093085289, 0.010258976370096207, 0.01861000992357731, 0.01467298623174429, -0.009683565236628056, -0.006901149172335863, -0.03119334578514099, -0.011424941010773182, -0.03034537099301815, 0.001388368895277381, 0.005511833820492029, -0.003471395466476679, 0.00894915871322155, 0.015316538512706757, 0.021502209827303886, 0.009638138115406036, 0.002894091419875622, -0.005186272319406271, 0.00852517131716013, -0.011576365679502487, 0.0002995356044266373, -0.0017839641077443957, -0.0004791150277014822, -0.014642701484262943, 0.012136634439229965, 0.018186023458838463, 0.00045569162466563284, 0.01821630820631981, 0.00245117605663836, -0.015346823260188103, 0.010001556016504765, 0.009592710994184017, -0.027983156964182854, -0.016005517914891243, 0.015414963476359844, -0.00402409303933382, 0.005205200053751469, -0.0023849280551075935, -0.005155987571924925, 0.010554253123700619, -0.008790163323283195, -0.01906428299844265, -0.009698707610368729, 0.036220621317625046, 0.0002045407163677737, -0.0007689500343985856, 0.011258374899625778, -0.02319815754890442, -0.0020915439818054438, 0.005856323521584272, -0.0008706880616955459, -0.013650874607264996, -0.027574311941862106, -0.0015341144753620028, 0.005012134555727243, 0.007007145788520575, 0.015823809430003166, 0.002099115401506424, -0.011773216538131237, 0.0002479568065609783, 0.015990374609827995, -0.01758032664656639, 0.023364724591374397, -0.005190057680010796, 0.006882220972329378, -0.022819597274065018, 0.0007372456602752209, 0.011947354301810265, -0.009017299860715866, -0.0210025105625391, -0.010099980980157852, -0.020835943520069122, -0.0015890056965872645, -0.02574208192527294, -0.010910099372267723, 0.017958886921405792, -0.00581846758723259, 0.009479142725467682, 0.008396461606025696, 0.03042108379304409, -0.0138174407184124, -0.009600281715393066, -0.009297434240579605, -0.005879037082195282, 0.0025874576531350613, -0.013552448712289333, 0.010440684854984283, 0.015975233167409897, 0.013166317716240883, -0.0021767201833426952, -0.0030190162360668182, 0.01330259907990694, -0.01524839736521244, 0.020487667992711067, 0.0046297889202833176, -0.025242382660508156, 0.00655665947124362, -0.003855633782222867, -0.025272667407989502, -0.0038045281544327736, -0.016777779906988144, -0.012484909035265446, -0.011394656263291836, -0.004410224035382271, -0.0006407128530554473, 0.02023024670779705, -0.003338899463415146, -0.0013845833018422127, -0.016141798347234726, 0.01524839736521244, -0.0022675744257867336, 0.047274574637413025, 0.02132049947977066, 0.027650022879242897, -0.003808313747867942, -0.019957683980464935, -0.017216909676790237, 0.0020934368949383497, -0.005595116876065731, -0.020654235035181046, 0.004962921608239412, 0.01031197514384985, 0.013688730075955391, 0.004671430680900812, 0.002702918602153659, -0.013378310948610306, 0.00256852968595922, -0.014831981621682644, -0.015854094177484512, -0.008335891179740429, 0.03049679473042488, -0.013136032968759537, 0.012855898588895798, -0.008653881959617138, -0.02109336480498314, 0.02272874303162098, 0.012136634439229965, -0.002612064126878977, -0.010629964992403984, 0.012886183336377144, 0.006613443605601788, 0.027665166184306145, -0.001507615321315825, -0.03049679473042488, 0.016156941652297974, 0.008419174700975418, 0.005860108882188797, -0.0004987528081983328, 0.012590906582772732, 0.005932035390287638, 0.00999398436397314, -0.010221120901405811, -0.015702668577432632, -0.0069920034147799015, -0.012659046798944473, -0.007533344440162182, 0.012780185788869858, 0.031253915280103683, -0.003990022465586662, 0.006310595665127039, -0.0043004415929317474, -0.0037250304594635963, 0.008017901331186295, -0.01151579525321722, 0.017459187656641006, -0.0065983012318611145, 0.009698707610368729, 0.009630566462874413, -0.03288929536938667, -0.021184219047427177, -0.01626293919980526, 0.012537907809019089, -0.002099115401506424, 0.01249248068779707, 0.019806260243058205, -0.00941857323050499, 0.001183000043965876, 0.00381209934130311, -0.011409798637032509, 0.0010864672949537635, 0.018958285450935364, 0.014385280199348927, -0.015467962250113487, -0.011621792800724506, -0.008494886569678783, -0.03098135255277157, -0.02225932851433754, -0.018852289766073227, -0.010622394271194935, -0.026105498895049095, 0.01953369751572609, 0.000901919265743345, 0.0013230672338977456, 0.007113142870366573, -0.006806509103626013, 0.003340792143717408, -0.013991578482091427, -0.005685971584171057, 0.015929805114865303, 0.013893152587115765, -0.007612842135131359, -0.00790433306246996, 0.005129488185048103, 0.0050462051294744015, 0.004251229111105204, 0.007836191914975643, -0.009236864745616913, -0.003982451278716326, 0.010872243903577328, 0.008457031100988388, 0.008706880733370781, 0.004940208047628403, 0.01688377745449543, -0.007325136102735996, 0.003997593652456999, -0.004917494487017393, -0.028906842693686485, -0.010478541254997253, -0.0012218024348840117, 0.0026612768415361643, 0.004622217733412981, -0.008184467442333698, -0.0003970148100052029, -0.006761081982403994, -0.00015958670701365918, -0.0016959488857537508, 0.03002738021314144, 0.023864423856139183, 0.015240826644003391, -0.0027521313168108463, 0.012931610457599163, -0.006287882104516029, 0.019124852493405342, 0.03534236177802086, -0.011667219921946526, 0.004834211431443691, 0.0017035200726240873, 0.014370137825608253, 0.012787757441401482, 0.01481683924794197, 0.019109709188342094, -0.016217511147260666, -0.020835943520069122, -0.012734758667647839, 0.03337385132908821, -0.005250627640634775, 0.00023103991406969726, 0.00688600679859519, 0.017701465636491776, 0.0035944273695349693, -0.011765644885599613, -0.01074353326112032, 0.006189456209540367, 0.022213902324438095, 0.017413761466741562, 0.0031704402063041925, 0.005621616262942553, -0.01938227377831936, 0.014165716245770454, 0.015657242387533188, 0.01031197514384985, -0.005863894708454609, -0.016126656904816628, -0.007340278942137957, 0.011159949004650116, -0.01773175038397312, 0.010637536644935608, -0.00706014409661293, 0.007559843361377716, -0.005311197135597467, 0.001287104096263647, 0.0018511584494262934, 0.015687527135014534, 0.003925667144358158, 0.021184219047427177, 0.0326773002743721, -0.01097824051976204, -0.011848928406834602, 0.028740275651216507, -0.011190233752131462, -0.0009984520729631186, -0.012424339540302753, -0.011705075390636921, 0.01268176082521677, 0.0077377669513225555, -0.010168122127652168, 0.001447992050088942, 0.0011053952621296048, -0.004955350421369076, -0.012802899815142155, -0.008214752189815044, 0.008199609816074371, 0.005065132863819599, 0.027831733226776123, -0.002331929747015238, -0.021305358037352562, -0.0016476825112476945, -0.014021863229572773, -0.0036682465579360723, -0.00575789762660861, 0.0020006897393614054, -0.0009345700382255018, 0.013628160580992699, -0.013688730075955391, -0.010675392113626003, -0.01859486848115921, 0.028846273198723793, 0.012431911192834377, -0.01780746318399906, -0.019669977948069572, -0.009274720214307308, 0.010107552632689476, -0.003829134628176689, -0.011144806630909443, 0.003764779306948185], "2505f174-98d2-49b4-93f6-9c62039cb6b5": [-0.017289185896515846, 0.0080873379483819, -0.004207987803965807, 0.03795047849416733, 0.002661248669028282, -0.02659105323255062, 0.016331851482391357, 0.038121938705444336, -0.004765242338180542, 0.03635015711188316, 0.009637649171054363, 0.03369247913360596, 0.004122256301343441, -0.02459065243601799, 0.015603132545948029, 0.016517601907253265, 0.0026844674721360207, 0.024633517488837242, 0.06389854103326797, -0.013302670791745186, 0.011866668239235878, -0.003063115058466792, -0.020289788022637367, 0.043808795511722565, 0.027676984667778015, 0.03500702977180481, -0.020689869299530983, 0.01888950727880001, -0.05689713731408119, -0.015746017917990685, 0.012759705074131489, 0.02183295600116253, -0.00019077491015195847, -0.019446762278676033, 0.003634658409282565, -0.0014020672533661127, 0.025362234562635422, -0.0272911936044693, -0.0248478464782238, -0.03180638700723648, -0.06418431550264359, 0.02656247653067112, -0.03529280051589012, -0.057011447846889496, -0.017832152545452118, 0.00254336791113019, -0.033635325729846954, 0.00696211215108633, 0.012295326218008995, -0.03409256041049957, 0.04300863668322563, -0.03403540328145027, -0.00764439208433032, 0.02633385919034481, 0.02753409929573536, 0.002150431741029024, 0.027877025306224823, -0.0013020471669733524, -0.015803173184394836, -0.051267437636852264, -0.005443950183689594, 0.00819450244307518, -0.009594783186912537, 0.009530484676361084, 0.05358218774199486, 0.028634320944547653, -0.005143890157341957, -0.043094366788864136, -0.05909758061170578, 0.0056582787074148655, 0.010002008639276028, -0.04249424487352371, -0.028434280306100845, 0.0019575359765440226, 0.04809537157416344, -0.026219550520181656, 0.018232231959700584, 0.05229621380567551, 0.021775800734758377, -0.041808392852544785, -0.024247726425528526, -0.0026255270931869745, -0.009659082628786564, -0.017803573980927467, 0.06315553933382034, -0.002409412292763591, 0.027005422860383987, -0.02709115296602249, -0.002452278044074774, -0.019018104299902916, 0.011202248744666576, -0.0043580178171396255, 0.016760507598519325, -0.04935276508331299, -0.059726279228925705, 0.003004174679517746, 0.021432874724268913, 0.001075215870514512, 0.00868745893239975, -0.019160989671945572, -0.009780535474419594, -0.03417829051613808, 0.012952600605785847, 0.026776805520057678, 0.04566631093621254, 0.02734834887087345, 0.0161460991948843, -0.015174475498497486, -0.017074856907129288, 0.0495813824236393, -0.037578973919153214, -0.027862736955285072, 0.003740036627277732, -0.033120933920145035, -0.06052643805742264, -0.023233236744999886, -0.0016119307838380337, -0.006794221233576536, -0.010787880048155785, -0.004722376819700003, -0.004786675330251455, -0.011973832733929157, -0.01910383626818657, 0.04100823402404785, 0.02456207387149334, 0.017732132226228714, 0.005508248694241047, -0.012388201430439949, 0.026133818551898003, 0.013374113477766514, -0.011923822574317455, 0.002750552259385586, -0.006462011951953173, -0.025390813127160072, 0.0043937391601502895, 0.01587461680173874, 0.008887498639523983, 0.0372074693441391, 0.010666427202522755, 0.028877226635813713, -0.050495851784944534, -0.010737869888544083, -0.004975999239832163, 0.009709091857075691, -0.004983143415302038, -0.03146345913410187, -0.014059965498745441, 0.032377928495407104, -0.03203500434756279, 0.034149713814258575, -0.07378624379634857, -0.045294810086488724, -0.04003661125898361, 0.016474736854434013, 0.004379450809210539, -0.010259202681481838, -0.012523943558335304, -0.003638230497017503, 0.04409456625580788, 0.024976443499326706, 0.02801991067826748, -0.02633385919034481, -0.0015699580544605851, 0.03194927051663399, 0.02831997163593769, 0.017674976959824562, 0.010237770155072212, -0.0014672589022666216, -0.016731930896639824, 0.033663902431726456, -0.026419591158628464, 0.0014154628152027726, 0.026905402541160583, 0.007851576432585716, -0.012981178238987923, 0.006240538787096739, 0.020718446001410484, 0.039865147322416306, 0.021775800734758377, 0.022032994776964188, -0.0248049795627594, 0.019232433289289474, -0.019918285310268402, 0.001678015454672277, 0.03572145849466324, -0.023204658180475235, -0.009844833984971046, 0.022175880149006844, 0.009651937521994114, 0.00041124329436570406, -0.014717240817844868, 0.015074455179274082, 0.0186180230230093, 0.03423544391989708, -0.017303474247455597, -0.01392422430217266, 0.01710343360900879, 0.025390813127160072, -0.012795425951480865, -0.02413341775536537, -0.024719249457120895, -0.0346926786005497, -0.022147303447127342, 0.013874214142560959, -0.03895067796111107, 0.019275298342108727, 0.006847803480923176, -0.0074372077360749245, 0.01716058887541294, -0.0161175224930048, 0.023433275520801544, -0.04569488763809204, 0.0038722059689462185, 0.007222878746688366, 0.0446661114692688, 0.0015440600691363215, -0.017746420577168465, 0.025362234562635422, 0.02777700498700142, -0.05506819859147072, -0.019461050629615784, 0.0321778878569603, -0.033663902431726456, -0.012966888956725597, -0.06326984614133835, 0.02557656355202198, -0.017403494566679, 0.035092759877443314, -0.0072657447308301926, -0.011316557414829731, -0.00620124489068985, -0.005376079585403204, -0.0022665264550596476, -0.0010537829948589206, -0.012316758744418621, 0.04266570881009102, 0.05984058603644371, -0.0005197472055442631, 0.0007202338892966509, 0.0055618309415876865, 0.03769328072667122, 0.029834561049938202, -0.004708088003098965, -0.030606145039200783, -0.010266346856951714, -0.001131477183662355, 0.0008841060916893184, 0.05489673838019371, 0.005811881273984909, 0.003218503436073661, -0.047266632318496704, 0.007176440674811602, -0.01591748185455799, 0.0029416619800031185, -0.046523626893758774, 0.050981663167476654, 0.005376079585403204, -0.01688910461962223, 0.03789332136511803, 0.00211471039801836, 0.0323493517935276, -0.0019164562691003084, -0.010680715553462505, 0.023204658180475235, -0.017760708928108215, 0.02204728312790394, 0.01713201031088829, -0.004915272817015648, 0.028905803337693214, 0.00484740175306797, 0.009166126139461994, -0.017474936321377754, 0.006415573880076408, 0.03354959189891815, 0.02904868870973587, 0.012323902919888496, -0.04092250391840935, 0.006726350635290146, 0.06909959018230438, 0.02559085190296173, -0.023990530520677567, 0.008873210288584232, -0.02206157147884369, 0.00035989368916489184, 0.03943648934364319, 0.004872406832873821, -0.002405840205028653, -0.012916878797113895, -0.04875264689326286, -0.009016095660626888, -0.011002209037542343, -0.01734633930027485, 0.058211687952280045, 0.017560668289661407, 0.02313321642577648, -0.0004239690606482327, -0.020818466320633888, 0.013509855605661869, -0.010987920686602592, 0.020904196426272392, -0.010194904170930386, 0.008837488479912281, -0.0024362034164369106, -0.029105843976140022, 0.039607953280210495, -0.02457636222243309, 0.021732935681939125, 0.02083275467157364, -0.028991535305976868, 0.06332699954509735, 0.007122858893126249, -0.03872206062078476, 0.025633718818426132, 0.038836367428302765, 0.03252081573009491, 0.03646446391940117, -0.04392310604453087, -0.02437632344663143, -0.014360026456415653, -0.042579978704452515, 0.04323725402355194, 0.0061083692125976086, -0.06081220880150795, 0.007672969251871109, 0.04486615210771561, -0.035607147961854935, 0.0012002410367131233, 0.019689667969942093, 0.024119127541780472, 0.008708891458809376, -0.052267637103796005, -0.03003460168838501, -0.04292290285229683, -0.001373490085825324, -0.01714630052447319, -0.009823400527238846, -0.035378530621528625, -0.0016163960099220276, -0.007283605169504881, -0.026962555944919586, -0.020932774990797043, -0.0620696060359478, 0.02710544317960739, -0.04312294349074364, 0.030406104400753975, 0.03394967317581177, 0.007530083414167166, -0.007094281725585461, -0.02510504052042961, 0.019403895363211632, 0.0008215935085900128, 0.009266146458685398, 0.016946259886026382, -0.0016342566814273596, 0.005236765835434198, -0.006744211073964834, -0.05261056497693062, 0.007019266486167908, -0.0005313566653057933, 0.01590319350361824, 0.045837774872779846, -0.004761670250445604, -0.03197785094380379, -0.020189767703413963, -0.026205262169241905, -0.04246566817164421, 0.01404567714780569, -0.01684623956680298, -0.03354959189891815, 0.008501706644892693, -0.03374963253736496, 0.014745817519724369, 0.027434078976511955, -0.003234578063711524, -0.0020361230708658695, -0.014702952466905117, 0.027176884934306145, 0.0030613290145993233, 0.010709293186664581, 0.0033899664413183928, -0.011609474197030067, 0.0105521185323596, 0.01787501759827137, -0.0005974413943476975, 0.004972427152097225, 0.001364559750072658, -0.019032392650842667, -0.012702550739049911, -0.0049295611679553986, -0.006019065622240305, -0.025133617222309113, 0.02704828791320324, -0.013438412919640541, -0.03952221944928169, -0.005808309186249971, 0.005436806008219719, 0.005936906207352877, 0.005779732018709183, 0.017832152545452118, -0.010630706325173378, -0.04989573359489441, -0.005665423348546028, 0.01016632653772831, 0.005936906207352877, 0.024004818871617317, 0.010766447521746159, -0.006076219957321882, -0.01586032658815384, 0.022018706426024437, 0.0027201890479773283, 0.011037930846214294, 0.006404857616871595, -0.019189566373825073, -0.0235904511064291, -0.001140407519415021, 0.028377126902341843, 0.010387799702584743, 0.013131207786500454, -0.04915272444486618, 0.05506819859147072, 0.013552721589803696, 0.026219550520181656, 0.011395145207643509, 0.009480474516749382, 0.021418586373329163, -0.01154517475515604, -0.013345536775887012, -0.0043580178171396255, 0.016246119514107704, -0.0067656440660357475, -0.00421870406717062, 0.06984259188175201, 0.0011136163957417011, -0.005533253774046898, -0.012488221749663353, -0.0105521185323596, -0.015017300844192505, 0.000657274853438139, -0.024404900148510933, 0.0004934026510454714, -0.03520707041025162, -0.0038614897057414055, 0.020718446001410484, -0.01352414395660162, -0.012131007388234138, -0.015403092838823795, -0.023876221850514412, 0.01328123826533556, 0.029348749667406082, -0.002032550983130932, -0.008001606911420822, 0.026190973818302155, 0.0012600744375959039, -0.0236190278083086, 0.03597865253686905, -0.0036900267004966736, -0.02554798685014248, -0.0211471039801836, 0.005418945103883743, -0.016803374513983727, -0.015460247173905373, 0.022418787702918053, 0.04618069902062416, -0.01313835196197033, 0.017489226534962654, -0.013867069967091084, -0.0015520973829552531, -0.004111540038138628, 0.01105936337262392, 0.022161591798067093, 0.01734633930027485, 0.01179522555321455, -0.029834561049938202, 0.004015091806650162, 0.0043937391601502895, -0.021661492064595222, -0.009401887655258179, -0.021775800734758377, -0.03423544391989708, -0.004836685489863157, -0.005058158654719591, -0.01637471653521061, 0.03306378051638603, -0.0036685937084257603, -0.039636529982089996, 0.02777700498700142, -0.014595787972211838, -0.04169408604502678, 0.02757696621119976, 0.0007992676110006869, 0.006787077058106661, 0.008030183613300323, -0.012095285579562187, 0.0034524789080023766, 0.0105521185323596, -0.025948066264390945, -0.014960146509110928, -0.021032795310020447, 0.0223616324365139, -0.03597865253686905, 0.006415573880076408, -0.02557656355202198, 0.023276101797819138, 0.008373109623789787, -0.008973230607807636, 0.0024201287887990475, 0.012702550739049911, -0.0010073451558128, -0.06515593826770782, -0.00842311978340149, -0.04746667295694351, 0.050553008913993835, -0.05538254976272583, 0.03943648934364319, 0.00994485430419445, 0.02830568328499794, -0.014831549488008022, -0.0026416017208248377, 0.015160187147557735, 0.023776201531291008, 0.0011127233738079667, -0.018746621906757355, -0.010459243319928646, -0.00752293923869729, -0.026619629934430122, -0.0011305841617286205, 0.02056127041578293, 0.028405703604221344, -0.010680715553462505, -0.028105642646551132, 0.0011984548764303327, -0.0018735905177891254, -0.024976443499326706, 0.013709895312786102, 0.002500502159819007, -0.025433678179979324, -0.02206157147884369, 0.03546426445245743, 0.019532492384314537, 0.01179522555321455, -0.05489673838019371, 0.03009175695478916, -0.02679109387099743, 0.0009778749663382769, -0.004618784412741661, 0.010009152814745903, 0.0012752560433000326, -0.015488823875784874, -0.033378131687641144, -0.005543970037251711, -0.002784487558528781, 0.018460849300026894, -0.0030684731900691986, 0.011852379888296127, -0.037378933280706406, -0.04043668881058693, 0.03183496370911598, 0.0422370508313179, 0.011959544382989407, -0.0323493517935276, -0.005794020369648933, 0.0074443519115448, 0.009809112176299095, 0.025219349190592766, -0.019275298342108727, 0.025633718818426132, -0.01840369589626789, -0.016731930896639824, 0.016731930896639824, 0.01041637733578682, 0.03074903041124344, -0.0013252660864964128, 0.0347784124314785, -0.0021736507769674063, 0.006276260130107403, 0.033435285091400146, 0.012002409435808659, -0.019218144938349724, -0.02629099227488041, 0.014745817519724369, 0.019946862012147903, 0.00795159675180912, 0.004754526074975729, -0.00793016329407692, 0.025376522913575172, -0.0032310059759765863, -0.023261813446879387, -0.020032593980431557, -0.042122744023799896, 0.014731529168784618, 0.010123461484909058, -0.007215734571218491, -0.016074655577540398, 0.025433678179979324, -0.0022826010826975107, 0.026076665148139, 0.033349551260471344, -0.005969055462628603, 0.0021557898726314306, 0.010987920686602592, 0.014688663184642792, 0.03000602498650551, 0.005690428428351879, -0.01464579813182354, -0.019503915682435036, 0.00953762885183096, 0.01690339297056198, 0.021761512383818626, 0.002746980171650648, 0.0105735519900918, 0.013495567254722118, 0.00980196800082922, 0.021004216745495796, -0.0062191057950258255, -0.003790046786889434, 0.025733739137649536, 0.02879149466753006, 0.021218545734882355, -0.015060166828334332, 0.020446961745619774, 0.011666628532111645, 0.008751757442951202, 0.033892519772052765, 0.01937531866133213, -0.001519948011264205, 0.011245114728808403, -0.015217341482639313, 0.007237167563289404, -0.0018646600656211376, -0.01714630052447319, -0.02386193349957466, -0.04286574944853783, 0.006440578959882259, -0.003252438735216856, 0.01415284164249897, -0.013316959142684937, -0.017446359619498253, 0.019246721640229225, 0.0015637067845091224, -0.013231228105723858, -0.02133285440504551, -0.005915473215281963, -0.013895646668970585, 0.020232634618878365, -0.00941617600619793, -0.0346926786005497, -0.007290749344974756, 0.0186608899384737, -0.0021289989817887545, 0.014295727014541626, -0.014467190019786358, 0.025762315839529037, -0.00047018370241858065, 0.032149311155080795, 0.04046526923775673, -0.013531288132071495, 0.004122256301343441, -0.011616618372499943, -0.011345135048031807, 0.029720252379775047, 0.020961351692676544, -0.0020521976985037327, 0.008001606911420822, 0.008937508799135685, 0.01814649999141693, -0.016231831163167953, 0.027977045625448227, 0.012452499940991402, 0.02730548195540905, 0.006976400502026081, 0.006622758228331804, -0.02530508115887642, 0.02809135429561138, -0.014360026456415653, -0.02461922913789749, 0.003218503436073661, -0.04395168274641037, -0.003800763050094247, -0.003173851640895009, 0.019189566373825073, -0.029491635039448738, -0.01810363493859768, -0.053010642528533936, 0.019961150363087654, 0.009623360820114613, -0.007808710914105177, -0.0248478464782238, -0.04020807147026062, 0.005061730742454529, 0.007012122310698032, 1.7497932276455685e-05, 0.015946058556437492, -0.011952400207519531, -0.017303474247455597, 0.0034381903242319822, 0.015760308131575584, -0.013631308451294899, -0.018017902970314026, 0.001147551811300218, -0.01958964765071869, -0.012016698718070984, -0.016217542812228203, 0.007558660581707954, -0.016288984566926956, 0.0028470002580434084, 0.04069388657808304, -0.015688864514231682, -0.05978343263268471, -0.027648407965898514, 0.0019343169406056404, 0.009351877495646477, 0.026705361902713776, -0.033892519772052765, -0.0014985151356086135, 0.010845034383237362, 0.021204257383942604, 0.001852157642133534, 0.034121137112379074, -0.010037729516625404, 0.023761913180351257, -0.013231228105723858, 0.030434682965278625, 0.0012189947301521897, 0.008473129943013191, 0.02033265307545662, -0.004132972564548254, 0.027705563232302666, 0.002825567265972495, 0.001996829407289624, 0.011523742228746414, 0.0063405586406588554, 0.02507646381855011, 0.0010895044542849064, 0.007308610249310732, 0.0020521976985037327, 0.010637850500643253, -0.007044271565973759, 0.02336183376610279, 0.047066591680049896, -0.016288984566926956, -0.010580696165561676, -0.008251656778156757, 0.009830545634031296, -0.006787077058106661, -0.026619629934430122, -0.027219751849770546, 0.03257796913385391, 0.013638452626764774, -0.019932573661208153, -0.05829741805791855, 0.017732132226228714, -0.0011761289788410068, 0.035664305090904236, 0.003757897298783064, -0.015803173184394836, 4.14982860093005e-05, 0.019303875043988228, 0.01810363493859768, 0.013516999781131744, 0.026162395253777504, 0.014174274168908596, 0.010423521511256695, 0.002559442538768053, -0.029977448284626007, 0.006383424624800682, -0.01513160951435566, 0.0034614093601703644, 0.021004216745495796, 0.015074455179274082, -0.006672768387943506, 0.039579376578330994, -0.005729721859097481, -0.006565603893250227, 0.00133241037838161, -0.002405840205028653, 0.013088341802358627, -0.007501506246626377, -0.0027969900984317064, -0.00476881442591548, 0.0028148507699370384, -0.0036864543799310923, 0.010880756191909313, -0.002663034712895751, 0.018932372331619263, -0.022718846797943115, -0.004390167072415352, 0.030663300305604935, -0.0073871975764632225, -0.02281886711716652, 0.005915473215281963, 0.006086936220526695, 0.010494964197278023, 0.0063405586406588554, -0.0009930565720424056, 0.013388402760028839, -0.022504517808556557, -0.05529681593179703, 0.011723782867193222, 0.012495365925133228, -0.028605744242668152, 0.02753409929573536, -0.0031202693935483694, 0.025147905573248863, 0.02160433866083622, 0.022776002064347267, -0.005858318880200386, 0.015703152865171432, -0.05915473401546478, -0.03826482594013214, 0.019789688289165497, -0.00422942079603672, 0.0019432472763583064, -0.02407626248896122, -0.011723782867193222, -0.021690068766474724, -0.0067799328826367855, 0.010137749835848808, 0.021647203713655472, -0.012688261456787586, -0.003372105536982417, 0.004415172152221203, -0.031406305730342865, 0.028462857007980347, -0.00015683952369727194, 0.012138151563704014, -0.014624364674091339, 0.023719048127532005, 0.02429059147834778, 0.024462053552269936, 0.023761913180351257, -0.011645195074379444, -0.004579490981996059, -0.04515192285180092, 0.024476343765854836, -0.011087940074503422, 0.03997945412993431, -0.03080618567764759, -0.002807706594467163, -0.04518049955368042, 0.0136598851531744, -0.024176282808184624, -0.01836082898080349, 0.007222878746688366, 0.014402891509234905, 0.00646558403968811, 0.014367170631885529, 0.012681117281317711, -0.0010243128053843975, -0.012731127440929413, 0.04320867732167244, 0.015731729567050934, -0.008651737123727798, 0.010652138851583004, -0.006261971779167652, 0.013738472945988178, 0.02306177280843258, 0.011923822574317455, -0.011102229356765747, 0.0051010241732001305, -0.02260453812777996, 0.038836367428302765, 0.005861891433596611, -0.0235904511064291, -0.013531288132071495, -0.01641758158802986, -0.005533253774046898, 0.012059563770890236, -0.019046681001782417, -0.0009269718430005014, -0.012866869568824768, 0.003381035989150405, 0.01376704964786768, 0.010995064862072468, 0.005719005595892668, 0.010452098213136196, -0.03277800977230072, 0.028434280306100845, -0.028505723923444748, -0.026705361902713776, -0.012045275419950485, 0.027977045625448227, -0.016531890258193016, -0.03526422381401062, 0.015588844195008278, -0.0024790691677480936, -0.005822597537189722, -0.03755039721727371, -0.017746420577168465, -0.009716236963868141, 0.008908931165933609, -0.01914670132100582, -0.0010609272867441177, 0.022233035415410995, -0.011073651723563671, 0.00052867759950459, -0.011009353213012218, 0.02883436158299446, 0.007730123586952686, 0.017403494566679, -0.022032994776964188, -0.002561228582635522, -0.00941617600619793, -0.008637448772788048, -0.03849344328045845, 0.03995087742805481, -0.06767073273658752, 0.017446359619498253, -0.015431669540703297, -0.01191667839884758, -0.010859323665499687, -0.020718446001410484, -0.03272085636854172, 0.00833024363964796, 0.02187582105398178, 0.03400682657957077, 0.0008716035517863929, 0.010787880048155785, -0.001587818842381239, 0.004461610224097967, -0.014574354514479637, 0.026391012594103813, -0.02829139493405819, 0.020061170682311058, 0.005415373016148806, 0.02260453812777996, 0.0022700985427945852, -0.002807706594467163, 0.001375276129692793, 0.01838940568268299, 0.026976844295859337, -0.011388001032173634, 0.005386795848608017, 0.011738071218132973, 0.0060976529493927956, 0.0235475841909647, -0.013952801004052162, -0.04166550934314728, -0.017774997279047966, -0.06189814209938049, 0.012852580286562443, 0.0044437493197619915, -0.007551516406238079, 0.010152038186788559, -0.006447723135352135, 0.003502488834783435, -0.0006086043431423604, 0.00515460642054677, 0.025205060839653015, -0.0014395747566595674, -0.02330467849969864, 0.016474736854434013, 0.015617421828210354, 0.004643789492547512, -0.02204728312790394, 0.03329239785671234, -0.007651536259800196, -0.011723782867193222, -0.01203813124448061, -0.008037327788770199, -0.009359021671116352, 0.017674976959824562, 0.015817461535334587, -0.0037186038680374622, 0.010459243319928646, 0.011402289383113384, 0.0021057799458503723, 0.0011761289788410068, 0.01228103693574667, -0.02506217546761036, -0.0013815273996442556, 0.01636042818427086, -0.03200642764568329, -0.006019065622240305, 0.0027791294269263744, 0.024462053552269936, 0.013609875924885273, -0.018446560949087143, -0.04063672944903374, -0.021690068766474724, -0.026891114190220833, -0.01464579813182354, -0.02384764514863491, 0.005615413188934326, -0.020961351692676544, 0.01914670132100582, -0.007344331592321396, -0.019203856587409973, 0.009623360820114613, -0.02084704302251339, 0.010594984516501427, -0.00945189781486988, 0.004915272817015648, 0.00732289906591177, 0.014267150312662125, 0.01078073587268591, -0.012995466589927673, 0.013309814967215061, -0.029605943709611893, -0.016760507598519325, -0.03346386179327965, 0.010402088984847069, 0.014024244621396065, -0.022647405043244362, 0.023747624829411507, 0.019218144938349724, 0.0148887038230896, 0.0211328137665987, -0.003593578701838851, -0.015817461535334587, 0.014774395152926445, -0.03552141785621643, -0.017460647970438004, 0.003182781860232353, -0.01886093057692051, -0.014917280524969101, 0.025719448924064636, 0.0027273332234472036, 0.0014279652386903763, -0.004750953987240791, 0.023890510201454163, 0.002884507644921541, -0.007837288081645966, 0.00905181746929884, 0.016789084300398827, -0.006769216153770685, 0.00941617600619793, 0.011137950234115124, -0.020761311054229736, 0.006251255050301552, 0.011123661883175373, 0.0018503714818507433, -0.023633316159248352, 0.002784487558528781, -0.02751981094479561, -0.008966085501015186, -0.014302872121334076, -0.0002471478364896029, -0.03249223902821541, -0.013974234461784363, 0.005694000516086817, 0.016303272917866707, 0.005340357776731253, -0.02357616275548935, 0.01376704964786768, 0.0014645797200500965, -0.028648609295487404, 0.0006389675545506179, 0.02210443839430809, -0.006476300302892923, 0.01006630714982748, 0.006479872390627861, 0.00818021409213543, 0.009523340500891209, -0.0063048372976481915, 0.018275097012519836, 0.006944251246750355, 0.003779330290853977, 0.022704558447003365, 0.002211158163845539, -0.0021807949524372816, -0.011945255100727081, -0.024247726425528526, 0.04275144264101982, -0.017432071268558502, -0.022404497489333153, -0.009030384942889214, -0.034864142537117004, -0.01044495403766632, 0.01586032658815384, 0.003182781860232353, -0.02461922913789749, 0.0003284141421318054, -0.004675938747823238, 0.005265343002974987, -0.012981178238987923, -0.025490831583738327, -0.010009152814745903, 0.002766626887023449, -0.015803173184394836, 0.009987719357013702, 0.006872808560729027, 0.0021843670401722193, -0.006361991632729769, -0.010473531670868397, -0.0055618309415876865, 0.000441606534877792, 0.012123863212764263, -0.00662990240380168, -0.009894844144582748, -0.003661449532955885, -0.01392422430217266, -0.01837511733174324, 0.0050045764073729515, 0.003584648249670863, -0.010102028027176857, 0.019403895363211632, 0.022304479032754898, 0.022761713713407516, 0.008244512602686882, 0.007837288081645966, -0.00447232648730278, -0.0211471039801836, -0.0011055790819227695, 0.018217943608760834, 0.02954879030585289, 0.01341697946190834, -0.010580696165561676, 0.03354959189891815, -0.01167377270758152, 0.004590207245200872, 0.030148910358548164, -0.01663191057741642, 0.027991333976387978, 0.02013261429965496, 0.012974033132195473, 0.005983344279229641, 6.173114525154233e-05, -0.016546178609132767, -0.02037551999092102, 0.004115112125873566, 0.015060166828334332, 0.015188763849437237, -0.0017146299360319972, 0.0036935987882316113, -0.027605542913079262, 0.011309413239359856, 0.003463195404037833, 0.012688261456787586, -0.0009743027621880174, 0.012516798451542854, -0.005844030529260635, -0.025219349190592766, 0.05764014273881912, -0.0033345981501042843, -0.008358821272850037, 0.0009975216817110777, 0.01277399342507124, 0.014181418344378471, -0.023919088765978813, 0.0025040742475539446, -0.015174475498497486, 0.002398695796728134, 0.008780334144830704, -0.019703956320881844, -0.008408831432461739, -0.03132057562470436, 0.005754726938903332, -0.026462456211447716, -0.004465182311832905, -0.029220152646303177, 0.017717843875288963, -0.004450893495231867, -0.006647763308137655, 0.02310463972389698, -0.000849277654197067, 0.0050510140135884285, 0.015003012493252754, 0.0020450535230338573, 0.002998816315084696, -0.0015869258204475045, -0.00422942079603672, -0.024704961106181145, 0.0013154427288100123, 0.007594381924718618, 0.0044937594793736935, 0.0036078672856092453, 0.020975640043616295, -0.008858921937644482, 0.020061170682311058, 0.0024969298392534256, -0.004107967484742403, -0.0031291996128857136, 0.020818466320633888, 0.0049402774311602116, 0.007430063094943762, 0.03409256041049957, -0.034806989133358, -0.008101626299321651, 0.0035471408627927303, -0.006408429704606533, -0.0009421534487046301, -0.002586233662441373, 0.020446961745619774, 0.001352950232103467, -0.004829541314393282, 0.03672165796160698, -0.008401687256991863, -0.009473330341279507, 0.0073871975764632225, 0.010809313505887985, 0.008658881299197674, -0.009751957841217518, -0.01313835196197033, -0.0092947231605649, -0.009409031830728054, 0.02204728312790394, 0.01613181084394455, -0.028877226635813713, 0.027634119614958763, 0.04820967838168144, 0.0011037930380553007, 0.006658479571342468, -0.009866266511380672, -0.019318165257573128, 0.0017182021401822567, -0.008780334144830704, 0.004104395397007465, 0.005543970037251711, 0.002441561548039317, -0.013516999781131744, 0.0025844473857432604, 0.009244713000953197, -0.01934674195945263, 0.007822999730706215, 0.007079992908984423, 0.01814649999141693, 0.0002904600987676531, -0.012731127440929413, 0.008758901618421078, 0.008937508799135685, 0.013674174435436726, -0.0009591211564838886, -0.012523943558335304, -0.02809135429561138, 0.0061333742924034595, 0.02507646381855011, 0.0248049795627594, -0.017303474247455597, 0.03500702977180481, -0.00966622680425644, -0.01080216933041811, 0.01964680105447769, -0.004633073229342699, 0.03580718860030174, 0.001912884064950049, -0.01661762222647667, 0.01153088640421629, 0.01710343360900879, -0.020404096692800522, 0.007894442416727543, 0.0028648609295487404, -0.013724184595048428, 0.007247883826494217, -0.010494964197278023, -0.010316357016563416, 0.013738472945988178, 0.04815252497792244, -0.014731529168784618, 0.009859122335910797, 0.009244713000953197, 0.01128798071295023, -0.00689424155279994, -0.01788930594921112, 0.00012926702038384974, -0.03497845306992531, -0.017946461215615273, -0.018289387226104736, 0.0012100643943995237, 0.014345737174153328, -0.018289387226104736, -0.0372360460460186, 0.014974434860050678, 0.010709293186664581, 0.008894642814993858, -0.057983070611953735, 0.0022165165282785892, -0.011366567574441433, 0.0285771656781435, -0.003184567904099822, -0.008780334144830704, -0.024247726425528526, 0.026133818551898003, 0.017203453928232193, -0.020018305629491806, -0.037607550621032715, 0.0056975726038217545, -0.003261369187384844, -0.010637850500643253, -0.016674775630235672, 0.0011118303518742323, -0.009480474516749382, 0.0310062263160944, 0.028405703604221344, -0.02710544317960739, -0.011109373532235622, 0.01814649999141693, 0.002868433017283678, 0.01154517475515604, 0.01817507855594158, 0.01833225227892399, 0.01758924499154091, -0.02283315546810627, -0.006319126114249229, 0.02684824727475643, -0.002961308928206563, 0.008237368427217007, -0.0063405586406588554, -0.01329552661627531, -0.01641758158802986, -0.0073729087598621845, -0.027419790625572205, 0.01666048727929592, -0.0034739116672426462, 0.016931971535086632, -0.012002409435808659, 0.016517601907253265, -0.0016771224327385426, -0.008880354464054108, 0.0021790089085698128, -0.002961308928206563, 0.020947063341736794, -0.00953762885183096, -0.0069478233344852924, -0.01203813124448061, -0.029891716316342354, -0.01860373467206955, 0.016188964247703552, -0.0062691159546375275, -0.0014074253849685192, -0.04272286221385002, -0.007130003068596125, 0.008401687256991863, 0.012002409435808659, -0.0036578772123903036, -0.002725547179579735, 0.036893121898174286, -0.004115112125873566, -0.00041369913378730416, -0.009873410686850548, 0.010873612016439438, -0.04666651412844658, 0.020761311054229736, -0.002916657133027911, -0.0012368555180728436, 0.0111665278673172, -0.0039222161285579205, 0.013817059807479382, 0.008265945129096508, -0.0008265052456408739, -0.03372105583548546, -0.03826482594013214, 0.012731127440929413, -0.0003074278065469116, -0.011016497388482094, 0.012723983265459538, 0.005104596260935068, -0.011480876244604588, 0.00422942079603672, 0.012095285579562187, 0.004115112125873566, -0.02556227520108223, 0.000700140546541661, -0.007494362071156502, 0.004082962870597839, 0.0038793503772467375, 0.014059965498745441, -0.035607147961854935, 0.02436203509569168, -0.007480073254555464, 0.017317762598395348, -0.004018663894385099, -0.022233035415410995, -0.03074903041124344, -0.008566005155444145, -0.0023611884098500013, 0.03257796913385391, -0.0031470605172216892, -0.03180638700723648, 0.035664305090904236, 0.01464579813182354, -0.021032795310020447, -0.012881157919764519, -0.018489426001906395, 0.0063405586406588554, 0.0017566026654094458, -0.018246520310640335, -0.0057082888670265675, -0.0011761289788410068, -0.008215934969484806, -0.0033078070264309645, 0.0011877384968101978, 0.0028470002580434084, 0.004161549732089043, 0.017432071268558502, -0.007062132004648447, -0.006937107071280479, -0.018818063661456108, 0.021747224032878876, 0.00670848973095417, 0.026691073551774025, 0.019775399938225746, -0.006937107071280479, -0.007858720608055592, 0.04149404540657997, 0.03866490721702576, -0.032377928495407104, -0.0038543452974408865, -0.03406398370862007, 0.021975841373205185, 0.008616015315055847, 0.002243307651951909, -0.024962155148386955, 0.017474936321377754, 0.01004487369209528, -0.012009554542601109, -0.014088543131947517, -0.02503359690308571, -0.013324104249477386, -0.008158780634403229, -0.005668995436280966, 0.007594381924718618, -0.004122256301343441, -0.006176240276545286, -0.004483042750507593, 0.006276260130107403, 0.020232634618878365, 0.004865262657403946, -0.0049652825109660625, -0.005804737098515034, -0.012095285579562187, -0.03032037429511547, -0.01341697946190834, -0.0017441001255065203, -0.037578973919153214, 0.005361790768802166, -0.007851576432585716, -0.001237748540006578, -0.009094683453440666, -0.013931368477642536, 0.010216336697340012, 0.032692279666662216, 6.366373327182373e-06, 2.4781760657788254e-05, -0.0497242696583271, 0.01593177020549774, -0.0198897086083889, -0.00028532513533718884, 0.018703754991292953, -0.010680715553462505, -0.013395546935498714, 0.012131007388234138, -2.411198329355102e-05, 0.0080587612465024, -0.016531890258193016, 0.022904599085450172, -0.0021647203247994184, -0.007494362071156502, 0.004025808535516262, 0.005922617856413126, 0.03669308125972748, -0.014467190019786358, -0.02710544317960739, -0.0028541444335132837, -0.0011939897667616606, 0.031377729028463364, -0.01913241297006607, 0.014917280524969101, -0.007408630568534136, -0.015960346907377243, -0.011380856856703758, -0.00833024363964796, -0.00732289906591177, 0.01758924499154091, -0.016946259886026382, 0.0027559103909879923, -0.016689065843820572, -0.021918686106801033, -0.019232433289289474, 0.016060367226600647, -0.009266146458685398, 0.015245918184518814, 0.05115312710404396, -0.026491032913327217, 0.009766246192157269, -0.02309034951031208, 0.012916878797113895, -0.006447723135352135, -0.004829541314393282, 0.0033167374785989523, 0.008415975607931614, -0.030148910358548164, 0.007344331592321396, -0.019503915682435036, 0.019246721640229225, 0.0035989368334412575, 0.007973029278218746, 0.045094769448041916, -0.010587840341031551, -0.02306177280843258, 0.01564599946141243, -0.016217542812228203, 0.012316758744418621, -0.021518606692552567, -0.0010332431411370635, -0.011873812414705753, -0.024419188499450684, 0.035664305090904236, -0.0105521185323596, -0.02010403573513031, 0.0080873379483819, 0.003840056713670492, -0.008258800953626633, 0.0029666670598089695, 0.02011832594871521, -0.022018706426024437, 0.00793016329407692, -0.012874013744294643, 0.005686855874955654, 0.0011287981178611517, -0.013359825126826763, -0.0017441001255065203, 0.014074254781007767, -0.03557857125997543, 0.007708690594881773, 0.009337589144706726, -0.00595833919942379, 0.011645195074379444, 0.019403895363211632, -0.025219349190592766, -0.018017902970314026, 0.010287780314683914, 0.0003878010902553797, 0.0012609674595296383, 0.013188362121582031, -0.0006769216270186007, 0.004447321407496929, 0.02284744381904602, -0.006869236472994089, 0.028977246955037117, -0.004547341726720333, 0.030834762379527092, 0.008566005155444145, -0.023719048127532005, 0.004290147218853235, 0.0029863137751817703, 0.005308208521455526, 0.013209795579314232, -0.006215533707290888, -0.00016230937035288662, -0.012195305898785591, 0.0028648609295487404, 0.011616618372499943, -0.01934674195945263, 0.003584648249670863, 0.014831549488008022, -0.008958941325545311, 0.0017378489719703794, -0.006136946380138397, 0.020775599405169487, 0.0056832837872207165, -0.00820879079401493, -0.0020968494936823845, -0.004808108322322369, 0.011559464037418365, 0.008001606911420822, -0.02909155562520027, 0.004872406832873821, -0.009380455128848553, 0.0016726573230698705, -0.011709493584930897, -0.021061372011899948, 0.005415373016148806, -0.0007809603703208268, 0.008294522762298584, 0.012981178238987923, -0.02211872674524784, 0.004440177232027054, -0.008694603107869625, -0.002620168961584568, -0.006647763308137655, 0.0056582787074148655, 0.0173320509493351, -0.007380053400993347, 0.009230424650013447, -0.006033354438841343, 0.0037507531233131886, -0.0055761197581887245, 0.006029781885445118, 0.0077515565790236, 0.0010448526591062546, 0.0005648455698974431, 0.01566028781235218, 0.03580718860030174, 0.005790448281913996, 0.013931368477642536, 0.0037686137948185205, 0.010637850500643253, -0.011859524063766003, -0.006444151047617197, -0.00522247701883316, 0.008651737123727798, 0.003627514000982046, 0.01079502422362566, 0.010730725713074207, -0.016446160152554512, -0.0013359825825318694, -0.020461251959204674, 0.026362435892224312, 0.010630706325173378, 0.00396508164703846, -0.0014574354281648993, 0.02038980834186077, 0.01167377270758152, 0.003459623083472252, -0.010680715553462505, 0.029491635039448738, -0.00036078671109862626, 0.013366969302296638, 0.021404298022389412, 0.013352680951356888, 0.03932218253612518, 0.005797592457383871, -0.005515392869710922, -0.004275858402252197, 0.013238372281193733, -0.006047642789781094, -0.004168693907558918, 0.007465784903615713, 0.0007126430864445865, -0.008801767602562904, -0.021490029990673065, 0.00238440721295774, -0.003704315284267068, -0.014067109674215317, 0.005247482098639011, 0.01341697946190834, -0.015445958822965622, -0.00147261715028435, -0.004890267737209797, 0.0014109975891187787, -0.0068013654090464115, 0.009887699969112873, -0.03492129594087601, -0.019060969352722168, 0.0014377887127920985, -0.00578330410644412, -0.0148887038230896, -0.013274094089865685, 0.0025665867142379284, -0.012245316058397293, -0.0004061083309352398, -0.017060568556189537, -0.008351677097380161, 0.012566808611154556, -0.010473531670868397, -0.014324304647743702, -0.004722376819700003, -0.030463259667158127, -0.028448568657040596, -0.012566808611154556, 0.00226295436732471, -0.004007947631180286, -0.010687860660254955, 0.02410483919084072, 0.007544371765106916, -0.019018104299902916, 0.005769015289843082, 0.020504117012023926, -0.006397712975740433, 0.004129400476813316, 0.000414368900237605, -0.0045294808223843575, -0.0029648810159415007, 0.005018864758312702, -0.011273692362010479, -0.008387397974729538, 0.006261971779167652, -0.015460247173905373, 0.02309034951031208, 0.014202851802110672, 0.011859524063766003, -0.011366567574441433, -0.01289544627070427, -0.01317407377064228, 0.010852178558707237, 0.028920091688632965, 0.015231629833579063, 0.0062941210344433784, -0.008237368427217007, -0.006015493534505367, 0.017232030630111694, -0.009951998479664326, 0.007158580236136913, 0.0075086504220962524, -0.006276260130107403, 0.0025397955905646086, 0.027162596583366394, -0.002859502797946334, 0.012559664435684681, 0.008115915581583977, 0.006397712975740433, 0.00030162304756231606, 0.012924023903906345, -0.027705563232302666, -0.003559643169865012, 0.0014806544641032815, -0.012345335446298122, -0.011452299542725086, -0.003459623083472252, 0.0010430666152387857, 0.011523742228746414, -0.008730323985219002, -0.026491032913327217, 0.0020164763554930687, -0.014874415472149849, 0.018989527598023415, 0.011295124888420105, 0.009830545634031296, -0.006515593733638525, -0.015703152865171432, -0.013709895312786102, -0.015345938503742218, 0.01660333387553692, -0.03203500434756279, -0.019518204033374786, 0.009473330341279507, 0.017060568556189537, -0.009701947681605816, 0.0029738114681094885, -0.009151837788522243, 0.03003460168838501, -0.020032593980431557, 0.005279631353914738, 0.021032795310020447, 0.005922617856413126, 0.021647203713655472, -0.0063298423774540424, 0.010866467840969563, -0.0023272528778761625, -0.027262616902589798, -0.023876221850514412, 0.00906610582023859, 0.010152038186788559, 0.0034792700316756964, 0.0017423140816390514, -0.01964680105447769, -0.006022637709975243, -0.011595184914767742, -0.036321576684713364, 0.003993658814579248, 0.001267218729481101, 0.005501104518771172, -0.008201646618545055, -0.01514589786529541, -0.0211471039801836, 0.001946819480508566, 0.0005706502706743777, -0.004293719306588173, 0.007155008148401976, 0.031920693814754486, 0.020246922969818115, -0.005265343002974987, -0.012988322414457798, -0.015460247173905373, 0.009594783186912537, -0.03194927051663399, -0.0015083386097103357, -0.010609272867441177, 0.00477953115478158, 0.015303072519600391, -0.021704357117414474, 0.007815854623913765, -0.008951797150075436, 0.007551516406238079, 0.0038722059689462185, -0.011173672042787075, -0.003543568542227149, 0.00415083346888423, 0.014117119833827019, -0.005165322683751583, -0.00546181108802557, 0.007287177257239819, -0.00732289906591177, 0.020932774990797043, 0.00045857421355322003, -0.005179611500352621, -0.0067049176432192326, -0.012395345605909824, -0.0014708309900015593, 0.011588040739297867, -0.0007546158158220351, -0.00664061913266778, 0.004736665170639753, -0.0018664462259039283, -0.0011020069941878319, 0.003088120138272643, 0.012295326218008995, -0.027005422860383987, -0.017760708928108215, 0.007915874943137169, -0.007980173453688622, 0.006758499890565872, -0.015188763849437237, -0.025633718818426132, 0.010523541830480099, -0.013652740977704525, -0.011380856856703758, -0.0001107365169445984, 0.013395546935498714, -0.018960949033498764, -0.0016994483303278685, -0.018532292917370796, -0.007051415741443634, 0.0022772429510951042, 0.004000803455710411, -0.009959142655134201, 0.0008997342083603144, -0.001723560388199985, 0.014602932147681713, 0.006794221233576536, -0.0056832837872207165, -0.019018104299902916, 0.023704759776592255, -0.010852178558707237, -0.010909332893788815, -0.005815453361719847, 0.0005197472055442631, 0.019975438714027405, 0.029405904933810234, -0.0004056618199683726, 0.00440445588901639, 0.0018610879778862, -0.008594582788646221, -0.0044080279767513275, 0.00191109802108258, -0.021518606692552567, 0.00289165205322206, 0.002450492000207305, 0.004697371739894152, 0.004122256301343441, -0.012581097893416882, -2.0023551769554615e-05, 0.006565603893250227, -0.0033060209825634956, 0.003790046786889434, -0.012209594249725342, 0.03380678594112396, -0.006537026725709438, 0.010437809862196445, 0.01017347164452076, 0.014431469142436981, -0.006444151047617197, 0.006654907483607531, 0.026376724243164062, -0.0235904511064291, -0.007165724411606789, 0.02479069121181965, 0.004118684213608503, -0.030234642326831818, 0.011709493584930897, -0.004950994160026312, -0.010266346856951714, 0.0032988765742629766, -0.012874013744294643, -0.004686655476689339, 0.02504788711667061, 0.002243307651951909, -0.004390167072415352, 0.023690471425652504, -0.007594381924718618, 0.007873008958995342, 0.01864660158753395, -0.006483444478362799, 0.012874013744294643, -0.005515392869710922, -0.031206265091896057, -0.011073651723563671, -0.014874415472149849, 0.0023254668340086937, 0.012609674595296383, 0.02283315546810627, 0.017232030630111694, 0.0011037930380553007, -0.011945255100727081, 0.010287780314683914, -0.001400281093083322, -0.011759503744542599, -0.011323702521622181, 0.005165322683751583, 0.006733494810760021, 0.01717487722635269, 0.0024558501318097115, -0.01167377270758152, -0.015817461535334587, -0.009044673293828964, -0.0049902875907719135, 0.049009840935468674, -0.0024290592409670353, 0.010987920686602592, 0.008937508799135685, -0.005493960343301296, 0.008708891458809376, -0.0022093721199780703, -0.0022397353313863277, 0.006637047044932842, -0.00620124489068985, -0.00033980037551373243, -0.010666427202522755, 0.015831749886274338, 0.010837890207767487, -0.02504788711667061, -0.006626330316066742, 0.006204817444086075, 0.001648545265197754, 0.004068674053996801, 0.0223330557346344, -0.006111941300332546, 0.012981178238987923, -0.01864660158753395, -0.0008305239025503397, 0.006937107071280479, -0.025405101478099823, 0.015588844195008278, 0.0031184833496809006, -0.008387397974729538, -0.015788884833455086, -0.0005786876427009702, 0.016831951215863228, -0.0025576564949005842, -0.007247883826494217, -0.020446961745619774, -0.0018039336428046227, -0.021004216745495796, -0.001386885647661984, -0.00396508164703846, 0.004118684213608503, 0.01890379562973976, 0.02559085190296173, 0.010580696165561676, -0.00831595528870821, 0.012845436111092567, -0.006240538787096739, 0.02561943046748638, 0.004036524798721075, -0.008158780634403229, 0.016989124938845634, -0.03174923360347748, -0.02038980834186077, 0.007001405581831932, 0.013874214142560959, -0.020718446001410484, 0.0034614093601703644, -0.013752761296927929, 0.02333325706422329, -0.002654104260727763, -0.005322497338056564, 0.020161191001534462, 0.008816055953502655, -0.006072647869586945, 0.013466989621520042, -0.027676984667778015, -0.02213301509618759, 0.010394943878054619, -0.0003893638786394149, 0.0010127032874152064, -0.008137348107993603, -0.006126230116933584, 0.015074455179274082, 0.003797190962359309, 0.0007706904434598982, -0.029234440997242928, -0.01006630714982748, 0.014802971854805946, -0.01466008648276329, -0.02184724435210228, -0.008851776830852032, 0.018489426001906395, 0.016817662864923477, 0.01586032658815384, 0.00933044496923685, 0.02780558355152607, -0.01041637733578682, -0.006101225037127733, -0.006647763308137655, 0.003057756694033742, 0.0039579374715685844, 0.03003460168838501, 0.007844432257115841, 0.0023951237089931965, 0.040322382003068924, 0.018575157970190048, -0.012723983265459538, -0.0002462548145558685, -0.010394943878054619, 0.01404567714780569, 0.013581298291683197, 0.0004987608408555388, -0.01388850249350071, 0.0272911936044693, 0.0031202693935483694, 0.0030363239347934723, -0.007122858893126249, 0.009480474516749382, -0.004429460968822241, -0.015488823875784874, 0.005861891433596611, 0.003868633881211281, 0.009509052149951458, 0.011623762547969818, 0.01717487722635269, 0.018017902970314026, -0.017303474247455597, 0.03349243849515915, -0.012573952786624432, 0.027148308232426643, -0.0012770420871675014, 0.008601726964116096, -0.0007162152323871851, 0.026762517169117928, -0.012866869568824768, -0.01080216933041811, -0.005454666446894407, -0.015345938503742218, -0.011030785739421844, 0.005279631353914738, 0.03452121838927269, -0.026119530200958252, -0.0009760888642631471, 0.009601928293704987, -0.02311892807483673, 0.020532693713903427, -0.02506217546761036, -0.010059162974357605, -0.004047241061925888, 0.007537227589637041, 0.0310062263160944, 0.004597351420670748, 0.023190369829535484, -0.0016288984334096313, 0.014788683503866196, -0.005326069425791502, -0.032920897006988525, -0.00484740175306797, 0.02827710658311844, -0.009594783186912537, -0.005894040688872337, 0.001540487864986062, -0.003023821394890547, -0.013516999781131744, 0.03692169860005379, 0.018518004566431046, -0.00198254082351923, -0.019318165257573128, 0.002534437458962202, 0.01156660821288824, 0.005197471939027309, -0.011952400207519531, 0.012495365925133228, 0.024004818871617317, 0.0001935656473506242, -0.019318165257573128, -0.008601726964116096, -0.0111665278673172, 0.016046078875660896, 0.0016914110165089369, -0.017760708928108215, 0.015388804487884045, 0.00933044496923685, 0.0021665063686668873, -0.0069013857282698154, -0.008537428453564644, -0.0008760687778703868, -0.01067357137799263, -0.007794422097504139, 0.018546581268310547, 0.006111941300332546, 0.03057756833732128, -0.013717039488255978, -0.0024040541611611843, 0.001344019896350801, 0.02187582105398178, 0.03283516317605972, -0.010037729516625404, -0.0111665278673172, -0.015560267493128777, -0.009123260155320168, 0.016931971535086632, -0.00010448526154505089, 0.011266548186540604, -0.0004105734988115728, -0.007130003068596125, -0.00966622680425644, -0.01908954791724682, -0.009644793346524239, 0.020518405362963676, 0.017017701640725136, -0.002604094333946705, 0.0045294808223843575, -0.025133617222309113, 0.017674976959824562, 0.010080595500767231, -0.0032417222391813993, 0.0012931168312206864, 0.00908753927797079, -0.002963094972074032, 0.012631107121706009, -0.006412001792341471, 0.025247925892472267, 0.011430866084992886, 0.006054786965250969, 0.009916276670992374, 0.037607550621032715, 0.021018505096435547, 0.0030541846062988043, 0.0021915114484727383, 0.011309413239359856, -0.012481077574193478, 0.006658479571342468, 0.013545576483011246, 0.01708914525806904, 0.023633316159248352, 0.010637850500643253, -0.007401485927402973, 0.0010394944110885262, -0.015088743530213833, 0.003082761773839593, -0.02007545903325081, -0.00906610582023859, -0.010316357016563416, 0.02088990807533264, 0.02261882647871971, 0.010109172202646732, 0.00621196161955595, 0.011716637760400772, 0.01313835196197033, -0.006651335395872593, -0.029891716316342354, -0.02580518089234829, 0.004672366660088301, -0.01936103031039238, -0.010009152814745903, -0.00570471677929163, -0.0056475624442100525, -0.0008265052456408739, 0.020818466320633888, 3.787032619584352e-05, 0.020675579085946083, -0.019461050629615784, -0.00818021409213543, 0.010344934649765491, 0.0260623749345541, 0.020932774990797043, -0.004636645317077637, 5.1907745728385635e-06, -0.005729721859097481, 0.0031595630571246147, -0.02957736700773239, 0.0028041345067322254, 0.0020968494936823845, -0.008737468160688877, -0.00953762885183096, -0.0036489469930529594, -0.02083275467157364, -0.0038186239544302225, -0.02461922913789749, -0.00359536474570632, -0.00012134132703067735, -0.013759905472397804, -0.012924023903906345, 0.00138242042157799, 6.71451780362986e-05, -0.017574956640601158, 0.0001955749758053571, -0.02809135429561138, -0.01591748185455799, 0.006526310462504625, -0.011980976909399033, 0.02829139493405819, 0.02013261429965496, -0.011702349409461021, -0.020161191001534462, -0.0023861934896558523, -0.0009993078419938684, -0.026219550520181656, 0.0032899463549256325, -0.02581946924328804, 0.006444151047617197, -0.008787478320300579, -0.004822396673262119, -0.0039114998653531075, -0.025462254881858826, -0.023490430787205696, -0.009659082628786564, 0.006276260130107403, -0.010330645367503166, 0.004290147218853235, -0.021432874724268913, -0.0026951839681714773, -0.00014857893984299153, -0.016703354194760323, -0.011152239516377449, -0.05115312710404396, -0.008837488479912281, -0.014424324966967106, 0.023904800415039062, 0.009709091857075691, 0.012859724462032318, 0.003363175317645073, 0.004590207245200872, -0.016503313556313515, -0.013088341802358627, -0.00918755866587162, -0.02213301509618759, -0.004865262657403946, -0.006451295223087072, 0.0034864142071455717, 0.0068870969116687775, 0.017060568556189537, 0.001084146206267178, 0.022190170362591743, 0.001945033436641097, -0.00236297445371747, 0.011173672042787075, 0.005151034332811832, -0.0050045764073729515, 0.004704515915364027, 0.02776271663606167, -0.015817461535334587, -0.017703553661704063, -0.011252258904278278, 0.02309034951031208, 0.0026523182168602943, -0.03554999455809593, -0.020404096692800522, 0.006837087217718363, -0.003464981447905302, 0.013852781616151333, -0.013917080126702785, 0.031663499772548676, -0.008094482123851776, -0.008744613267481327, 0.015031589195132256, -0.0235904511064291, 0.016717642545700073, -0.013895646668970585, 0.011037930846214294, 0.010380655527114868, -0.010180615819990635, 6.552654667757452e-05, -0.013124063611030579, 0.0023594023659825325, -0.009723381139338017, -0.018789486959576607, 0.001630684593692422, 0.0004813466512132436, -0.012195305898785591, 0.04546627029776573, -0.002884507644921541, 0.015174475498497486, 0.008594582788646221, -0.0073371874168515205, -0.014367170631885529, -0.023533295840024948, 0.0008412403403781354, -0.0013797413557767868, 0.018975239247083664, 0.017960749566555023, -0.016460448503494263, -0.0006916567217558622, -0.003943649120628834, -0.0018682322697713971, -0.025405101478099823, 0.006344130728393793, -0.0025219349190592766, -0.005340357776731253, -0.019203856587409973, -1.5739768059575e-05, -0.0008733896538615227, 0.0161175224930048, -0.02010403573513031, -0.012309614568948746, 0.014295727014541626, -0.01864660158753395, -0.01043066568672657, -0.035378530621528625, -0.019875418394804, 0.0062083895318210125, 0.006687056738883257, -0.009580494835972786, -0.012295326218008995, -0.020947063341736794, 0.0021825809963047504, -0.020661290735006332, -0.001499408157542348, 0.011973832733929157, 0.00917327031493187, -0.01191667839884758, -0.0050045764073729515, 0.011616618372499943, 0.012981178238987923, -0.012602530419826508, -0.003498916747048497, 0.004511619918048382, 0.030406104400753975, 0.005401084665209055, -0.008215934969484806, 0.008101626299321651, -0.01914670132100582, 0.002800562186166644, -0.007165724411606789, 0.006658479571342468, 0.017989326268434525, -0.005390367936342955, 0.0008028397569432855, -0.005251054186373949, 0.011459443718194962, -0.008344532921910286, -0.017703553661704063, 0.004225848242640495, -0.0009564420324750245, -0.0026148108299821615, -0.0012725769774988294, 0.001648545265197754, 0.005247482098639011, -0.014331448823213577, 0.01766068860888481, -0.0036935987882316113, -0.0030916922260075808, 0.016046078875660896, -0.0148887038230896, 0.019446762278676033, -0.015588844195008278, -0.02031836472451687, -0.023247525095939636, -0.013109775260090828, 0.01567457616329193, 0.0028452142141759396, -0.008258800953626633, 0.01438145898282528, 0.00484740175306797, 0.006833515129983425, 0.009351877495646477, -0.0017512444173917174, -0.003229219699278474, 0.0004974213079549372, -0.00301310489885509, -0.007219306658953428, 0.014874415472149849, 0.023261813446879387, 0.0018378690583631396, 0.02310463972389698, 0.003865061793476343, 0.006504877470433712, 0.019275298342108727, -0.031663499772548676, 0.004547341726720333, 0.00776584492996335, 0.0019736106041818857, -0.0036578772123903036, -0.017274897545576096, -0.010023441165685654, 0.013109775260090828, 0.011359423398971558, -0.0087017472833395, 0.00025764101883396506, -0.014674374833703041, -0.02088990807533264, -0.0397222600877285, 0.010466387495398521, 0.006872808560729027, -0.008773189969360828, 0.0397222600877285, 0.01403138879686594, -0.00930901151150465, 0.0015583486529067159, -0.002046839566901326, -0.031149111688137054, -0.006365563720464706, 0.018560869619250298, 0.0014493981143459678, 0.02313321642577648, 0.020989928394556046, 0.010623561218380928, -0.007558660581707954, -0.021218545734882355, 0.00868745893239975, 0.024204859510064125, -0.004007947631180286, 0.01738920621573925, -0.013502711430191994, -0.005440378095954657, -0.007144291419535875, 0.0032220755238085985, 0.0050903079099953175, 0.024004818871617317, -0.011823802255094051, -0.01168806105852127, 0.016989124938845634, 0.004904556088149548, 0.032863739877939224, 0.004615212325006723, 0.006179812364280224, -0.01081645768135786, -0.009730525314807892, -0.02407626248896122, -0.010423521511256695, -0.020732734352350235, 0.01155231986194849, 0.01191667839884758, 0.009244713000953197, -0.0007930163410492241, 0.007487217430025339, -0.01786072924733162, 0.01528878416866064, -0.0010484247468411922, -0.009673370979726315, -0.008858921937644482, -0.006015493534505367, 0.0056725675240159035, 0.011923822574317455, 0.0043580178171396255, -0.010502108372747898, 0.016531890258193016, 6.937776925042272e-05, -0.013424123637378216, -7.233595533762127e-05, -0.004429460968822241, -0.012059563770890236, 0.004925989080220461, -0.011473732069134712, -0.003804335370659828, 0.01551740150898695, 0.0373217798769474, -0.0117809372022748, 0.005483243614435196, -0.010766447521746159, 0.013988522812724113, -0.0055868360213935375, -0.006283404305577278, 0.021732935681939125, -0.020061170682311058, -0.01388850249350071, 0.0025469399988651276, 0.0322350449860096, 0.006051214877516031, 0.007487217430025339, -0.013938512653112411, 0.02313321642577648, -0.006987117230892181, -0.003527493914589286, 3.672612365335226e-05, -0.02086133137345314, 0.005340357776731253, 0.01593177020549774, 0.027605542913079262, 0.0002690272231120616, 0.005393940024077892, -0.001077001914381981, -0.00708356499671936, 0.009130404330790043, -0.007680113427340984, 0.009487619623541832, 0.0003118929744232446, -0.002337969373911619, -0.008165925741195679, 0.026633918285369873, -0.0002542921283748001, 0.016288984566926956, -0.00020216112898197025, 0.02007545903325081, -0.009430465288460255, -0.00992342084646225, -0.011066507548093796, 0.012959744781255722, 0.0002886740257963538, 0.0020379091147333384, -0.018503714352846146, -0.0031881402246654034, 0.004729520995169878, 0.024119127541780472, 0.0032560108229517937, 0.017274897545576096, 0.016989124938845634, 0.018703754991292953, 0.01253108773380518, -0.020289788022637367, -0.003466767491772771, -0.004793819505721331, -0.0014315374428406358, -0.003277443815022707, -0.0004061083309352398, -0.012523943558335304, 0.011337990872561932, -0.005654706619679928, -0.01044495403766632, -0.03454979509115219, -0.00953762885183096, 0.015245918184518814, -0.012981178238987923, 0.006354847457259893, 0.0025255070067942142, -0.0009207205730490386, -0.007344331592321396, 0.010809313505887985, -0.016731930896639824, -0.0031149110291153193, -0.0032042148523032665, 0.013045476749539375, 0.007537227589637041, -0.03252081573009491, -0.020532693713903427, -0.021532895043492317, -0.017317762598395348, 0.01017347164452076, 0.007415774744004011, -0.01963251270353794, 0.016789084300398827, -0.009030384942889214, -0.01963251270353794, 0.0014306444209069014, 0.013202650472521782, -0.002636243589222431, 0.014495767652988434, -0.009216136299073696, -0.0005018864758312702, -0.006047642789781094, -0.01102364156395197, -0.007019266486167908, 0.006669196300208569, -0.018317963927984238, 0.018217943608760834, 0.006437006872147322, 0.019718244671821594, 0.014760106801986694, 0.005293920170515776, -0.013988522812724113, -0.030177487060427666, -0.013466989621520042, 0.02557656355202198, 0.014145697467029095, -0.011316557414829731, -0.0027184030041098595, 0.016246119514107704, 0.0069478233344852924, 0.0031595630571246147, -0.006983545143157244, 0.02657676488161087, 0.011209393851459026, 0.0018280455842614174, -0.010280635207891464, -0.00696211215108633, 0.015317360870540142, 0.003972226288169622, -0.012288181111216545, 0.0273197703063488, -0.006361991632729769, 0.0025237209629267454, -0.025976644828915596, 0.022218747064471245, -0.017989326268434525, 0.011430866084992886, -0.0035203497391194105, -0.007801566272974014, -0.019489627331495285, -0.0285771656781435, 0.019732533022761345, 0.019918285310268402, 0.025447966530919075, -0.024276303127408028, -0.017817862331867218, -0.030177487060427666, 0.010745014995336533, -0.013095486909151077, 0.0009189345291815698, 0.007587237749248743, -0.007587237749248743, 0.02556227520108223, -0.0020593421068042517, -0.015617421828210354, 0.011352279223501682, 0.01741778291761875, -0.004047241061925888, -0.01563170924782753, 0.0028041345067322254, -0.0004648254835046828, 0.007480073254555464, -0.014917280524969101, -0.018189366906881332, -0.0017762494971975684, 0.0017405280377715826, -0.018046479672193527, 0.017817862331867218, 0.016946259886026382, -0.003182781860232353, -0.008780334144830704, -0.002337969373911619, 0.008187358267605305, 0.0028237812221050262, -0.024947866797447205, 0.004879551008343697, -0.02900582365691662, 0.010709293186664581, 0.015574555844068527, 0.00030073002562858164, -0.012552520260214806, -0.006247682962566614, -0.008337387815117836, 0.013702751137316227, 0.009516196325421333, 0.017946461215615273, 0.006612041965126991, -0.0020379091147333384, 0.013652740977704525, 0.004908128175884485, -0.0032488666474819183, -0.010544974356889725, -0.014424324966967106, -0.003797190962359309, 0.004086534958332777, -0.0039222161285579205, 0.019961150363087654, 0.0009385813027620316, -0.012966888956725597, -0.021018505096435547, 0.0017833937890827656, -0.0001553883485030383, 0.008658881299197674, -0.023233236744999886, -0.0037221759557724, 0.011438011191785336, 0.0037328924518078566, 0.008037327788770199, -0.007155008148401976, -0.013638452626764774, -0.02204728312790394, -0.01155231986194849, -0.018260808661580086, 0.0024987158831208944, 0.028105642646551132, -0.013681318610906601, 0.0020182623993605375, 0.014588643796741962, -0.017517803236842155, -0.018803775310516357, -0.006104797124862671, 0.01289544627070427, 0.0186323132365942, 0.014274294488132, -0.023776201531291008, 0.013945656828582287, 0.013459845446050167, 0.024390611797571182, -0.0049545662477612495, 0.007430063094943762, -0.00905181746929884, -0.004850973840802908, -0.005533253774046898, -0.024662094190716743, -0.019403895363211632, 0.0019789687357842922, 0.026448167860507965, 0.02011832594871521, -0.006922818720340729, 0.0223330557346344, 0.006197672802954912, -0.017046280205249786, 0.0044437493197619915, -0.012109573930501938, 0.006154807284474373, 0.02061842568218708, -3.301443939562887e-05, -0.007276460994035006, 0.00404366897419095, -0.0044580381363630295, 7.31731706764549e-05, -0.010109172202646732, 0.011723782867193222, 0.0018914511892944574, 0.005579691845923662, 0.009494763799011707, -0.002534437458962202, -0.006022637709975243, 0.010380655527114868, -0.01860373467206955, -0.0024844272993505, 0.00858029443770647, 0.008737468160688877, -0.0186180230230093, -0.00908753927797079, 0.011395145207643509, 0.002200441900640726, -0.014510056003928185, -0.0072657447308301926, -0.0025719450786709785, 0.008573150262236595, 0.004207987803965807, 0.01690339297056198, 0.005179611500352621, 0.010516397655010223, 0.01191667839884758, -0.022447364404797554, 0.012816859409213066, 0.005815453361719847, 0.01963251270353794, 0.019218144938349724, -0.002073630690574646, -0.00908753927797079, -0.001215422642417252, 0.0039079273119568825, -0.011030785739421844, 0.01056640688329935, 0.008537428453564644, -0.00607979204505682, 0.0074729290790855885, -0.016474736854434013, 0.012231026776134968, -0.0055261095985770226, 0.015417381189763546, 0.007208590395748615, -0.014917280524969101, 0.007694402243942022, 0.011702349409461021, 0.006844231393188238, 0.010609272867441177, 0.005426089279353619, -0.001310084480792284, 0.009766246192157269, 0.008123059757053852, 0.04626643285155296, 0.01193096674978733, 0.03154919296503067, 0.008980374783277512, 0.012431067414581776, -0.018560869619250298, 0.025447966530919075, -0.012509654276072979, 0.013945656828582287, -0.003757897298783064, -0.012373913079500198, 0.0029148708563297987, 0.009823400527238846, 0.0034971307031810284, -0.0028630748856812716, 0.0019771826919168234, -0.0161746758967638, -0.012388201430439949, 0.011852379888296127, -0.0068156542256474495, -0.014302872121334076, 0.013124063611030579, 0.00435087364166975, -0.005247482098639011, 0.00868745893239975, -0.0013422337360680103, -0.0016994483303278685, 0.0050045764073729515, 0.009430465288460255, 0.0026076664216816425, -0.040808193385601044, -0.005268915090709925, 0.002441561548039317, -0.008608871139585972, -0.01053783018141985, -0.012595386244356632, 0.010216336697340012, -0.005201044492423534, -0.002387979533523321, 0.0023004619870334864, -0.0006880845758132637, -0.012431067414581776, 0.01551740150898695, -0.01841798424720764, -0.021990129724144936, -0.01787501759827137, -0.01563170924782753, -0.01566028781235218, -0.017774997279047966, 0.021961553022265434, -0.007087137084454298, -0.00033980037551373243, 0.019446762278676033, 0.015617421828210354, 0.020461251959204674, -0.0030613290145993233, -0.01043066568672657, 0.02180437743663788, -0.010373511351644993, 0.005726149771362543, -0.027205461636185646, -0.010709293186664581, 0.007801566272974014, -0.021918686106801033, -0.008866066113114357, 0.004668794572353363, 0.024962155148386955, 0.014088543131947517, -0.015445958822965622, 0.010787880048155785, 0.009759102016687393, -0.02381906844675541, 0.008751757442951202, 0.023176081478595734, -0.011538030579686165, -2.916322227974888e-05, 0.00464736158028245, -0.026233838871121407, 0.001928958692587912, 0.0005371614242903888, -0.025433678179979324, -0.009951998479664326, 0.015717441216111183, -0.0062941210344433784, 0.005047441925853491, 0.00026032011373899877, -0.015445958822965622, -0.004275858402252197, 0.009259002283215523, -0.00917327031493187, -0.00726931681856513, 0.002952378476038575, -0.010059162974357605, 0.013559865765273571, 0.0161746758967638, -0.0014895847998559475, 0.00465807830914855, -0.00917327031493187, -0.008394542150199413, 0.002621955005452037, -0.011702349409461021, -0.011309413239359856, 0.0012636465253308415, 0.01093791052699089, -0.013274094089865685, 0.018518004566431046, 0.003063115058466792, 0.00980196800082922, -0.022961752489209175, 0.0044544655829668045, -0.00992342084646225, 0.0005237658624537289, -0.0016476522432640195, -0.008794622495770454, 0.006976400502026081, -0.018203655257821083, -0.009044673293828964, -0.014438613317906857, 0.03009175695478916, -0.0009582281345501542, 0.0029845277313143015, -0.009959142655134201, -0.008308811113238335, 0.0015217340551316738, -0.010966487228870392, 0.0025308653712272644, 0.004515192471444607, 0.020918486639857292, 0.0024183427449315786, 0.0025576564949005842, -0.014674374833703041, 0.011852379888296127, 0.012381057254970074, 0.010980776511132717, -0.03532137721776962, 0.018746621906757355, -0.005736866034567356, -0.023147504776716232, -0.007172868587076664, 0.008844632655382156, -0.0013466989621520042, 0.008651737123727798, -0.013445557095110416, 0.0013538432540372014, -0.022290188819169998, 0.01205241959542036, 0.0026737512089312077, -0.009130404330790043, 0.014267150312662125, 0.015017300844192505, 0.04498045891523361, 0.001612823805771768, -0.0004983143298886716, -0.013366969302296638, -0.018046479672193527, -0.026391012594103813, 0.009337589144706726, 0.009494763799011707, -0.026148106902837753, -0.0043580178171396255, -0.007901586592197418, 0.001486012595705688, 0.023976242169737816, 0.003107766853645444, 0.001289544627070427, -0.0018485854379832745, 0.008044471964240074, -0.005676139611750841, -0.028362836688756943, 0.015588844195008278, -0.023533295840024948, 0.0008849991136230528, -0.015174475498497486, -0.013202650472521782, 0.013252660632133484, 0.005897612776607275, -0.01340269111096859, -0.0155031131580472, 0.002782701514661312, 0.006426290143281221, 0.013195506297051907, 0.00045567183406092227, -0.020546982064843178, 0.01142372190952301, 0.010466387495398521, -0.01886093057692051, -0.014495767652988434, 0.010502108372747898, 0.002938089892268181, -0.01069500483572483, -0.013438412919640541, 0.002561228582635522, 0.01278828177601099, 0.01104507502168417, -0.023790491744875908, 0.020289788022637367, 0.029220152646303177, 0.0260337982326746, -0.01403138879686594, 0.013066909275949001, 0.003990086726844311, 0.03026321902871132, -0.023390410467982292, 0.010387799702584743, 0.011273692362010479, 0.021304277703166008, -0.012252460233867168, -0.017832152545452118, -0.03940791264176369, 0.016560466960072517, 0.008287378586828709, -0.006076219957321882, -0.0049795713275671005, 0.023761913180351257, -0.005854746792465448, -0.004872406832873821, 0.004018663894385099, 0.0063405586406588554, -0.008730323985219002, -0.004157977644354105, 0.017232030630111694, -0.000844812486320734, -0.0009582281345501542, 0.0025255070067942142, -0.0011850593145936728, -0.031892117112874985, -0.022790290415287018, 0.011873812414705753, -0.007837288081645966, 0.013124063611030579, -0.01714630052447319, -0.004997431766241789, 0.007544371765106916, -0.01016632653772831, -0.01838940568268299, -0.0030291795264929533, 0.0028184230905026197, -0.021161392331123352, 0.01092362217605114, -0.011638050898909569, -0.034606948494911194, 0.008530284278094769, -0.0050152926705777645, -0.002579089254140854, 0.007130003068596125, 0.00012960191816091537, -0.007022838573902845, -0.0029041545931249857, 0.0014985151356086135, -0.012616818770766258, 0.004486615303903818, 0.032120734453201294, -0.006404857616871595, -0.034864142537117004, -0.013166929595172405, -0.002629099413752556, -0.03026321902871132, -0.0009135762811638415, -0.005926189944148064, -0.00043289942550472915, -0.007558660581707954, 0.003254224779084325, -0.026433879509568214, -0.0014324304647743702, 0.008994663134217262, 0.019218144938349724, 0.032406505197286606, 0.034635525196790695, -0.00894465297460556, -0.015974635258316994, 0.0033417423255741596, 0.0035310660023242235, 0.010723581537604332, -0.012709694914519787, 0.0016914110165089369, 0.023390410467982292, 0.03457837179303169, 0.02184724435210228, -0.011330846697092056, 0.0029220152646303177, 0.004129400476813316, -0.016517601907253265, 0.01784644089639187, 0.006372707895934582, 0.00830166693776846, -0.01156660821288824, 0.014231428503990173, 0.021432874724268913, -0.002741621807217598, -0.0002520595444366336, -0.01637471653521061, 0.02429059147834778, 0.016717642545700073, -0.005315353162586689, 0.02161862701177597, 0.007201445754617453, -0.022990331053733826, 0.01277399342507124, 0.017975037917494774, 0.01551740150898695, -0.027191173285245895, -0.0007948024431243539, -0.02560514025390148, 0.014845837838947773, -0.010087739676237106, 0.005518965423107147, 0.00028108322294428945, 0.014874415472149849, -0.015360226854681969, -0.00957335066050291, -0.00152262719348073, -0.009751957841217518, 0.017803573980927467, 0.023504719138145447, -0.0016824806807562709, 0.01016632653772831, -0.021232834085822105, 0.02283315546810627, -0.016303272917866707, 0.003850773209705949, -0.012030987069010735, 0.021289989352226257, 0.007601526100188494, -0.0009251857409253716, -0.003661449532955885, 0.01763211190700531, 0.009516196325421333, 0.0006729029701091349, -0.003815051633864641, -0.01403138879686594, -0.008616015315055847, 0.0033310260623693466, 0.018032191321253777, -0.00818021409213543, -0.015974635258316994, 0.0031970704440027475, 0.0039043554570525885, 0.0073371874168515205, -0.0092947231605649, 0.018189366906881332, 0.0105735519900918, 0.010094883851706982, -0.00706927664577961, -0.016789084300398827, -0.007915874943137169, 0.00664061913266778, 0.009723381139338017, 0.0034435484558343887, -0.019218144938349724, 0.00040164313395507634, 0.00953762885183096, 0.007630103267729282, 0.009058961644768715, -0.009701947681605816], "a88df31e-35ea-45b1-b79f-9a4ec0846da3": [-0.016127927228808403, -0.0030811121687293053, -0.0009282956016249955, 0.05401528626680374, 0.02330736070871353, -0.036855410784482956, -0.007138892542570829, 0.046084001660346985, -0.004514787811785936, 0.033641617745161057, -0.006586061790585518, 0.04319453984498978, 0.029572779312729836, 0.00897060614079237, -0.004157290328294039, -0.01763162761926651, -0.005355090834200382, 0.041720323264598846, 0.04567122459411621, -0.02656537853181362, 0.02714032307267189, -0.013459594920277596, -0.012353933416306973, 0.0034330813214182854, 0.022157471626996994, 0.023366330191493034, -0.04325350746512413, 0.029425358399748802, -0.03602984920144081, -0.010253175161778927, -0.004109377972781658, 0.01959233544766903, 0.010901830159127712, -0.01910584419965744, 0.012324448674917221, 0.008727360516786575, 0.011550485156476498, -0.026403214782476425, -0.012626662850379944, -0.03968590497970581, -0.04749925062060356, 0.01240553054958582, -0.01421881653368473, -0.04602503404021263, -0.029071547091007233, 0.004728549160063267, -0.03328780457377434, 0.00012588425306603312, 0.015169686637818813, -0.019120587036013603, 0.035646550357341766, -0.016850292682647705, -0.004109377972781658, 0.03187255933880806, 0.051450151950120926, -0.026476925238966942, 0.014631597325205803, -0.018899453803896904, -0.013017330318689346, -0.0680498257279396, -0.02040315419435501, 0.019577592611312866, -0.005627820733934641, 0.012184398248791695, 0.04974006116390228, 0.006689256522804499, -0.01477901916950941, -0.03378903865814209, -0.048000484704971313, -0.005369833204895258, 0.002493268344551325, -0.02740568295121193, -0.023631688207387924, 0.01683555170893669, 0.02540074847638607, -0.028644023463129997, 0.04514050483703613, 0.0454353466629982, 0.02298303321003914, -0.02066851407289505, -0.012693002820014954, -0.020123053342103958, 0.003200892359018326, -0.00914751272648573, 0.039214156568050385, -0.01240553054958582, 0.03405439853668213, -0.030339373275637627, 0.014299898408353329, -0.000988646293990314, 0.012693002820014954, 0.012184398248791695, -0.007842831313610077, -0.012228624895215034, -0.0550767220556736, -1.4115909834799822e-05, 0.016997715458273888, -0.002098915632814169, 0.053897351026535034, 0.0021505129989236593, 0.03128287196159363, -0.03788736090064049, 0.03319935128092766, 0.03367110341787338, 0.03682592511177063, 0.05770082771778107, 0.02124345861375332, -0.001109347795136273, -0.013968200422823429, 0.050772011280059814, -0.03588242456316948, 0.0001455788587918505, 0.02495848387479782, -0.0188404843211174, -0.029749685898423195, -0.0001849680847954005, 0.011218786239624023, 0.03440820798277855, -0.04054094851016998, 0.001259533572010696, 0.0024582557380199432, -0.00901483278721571, -0.031666167080402374, 0.03154823184013367, 0.003145609050989151, 0.04245743155479431, 0.024516217410564423, 0.01051116269081831, 0.016850292682647705, -0.008196642622351646, 0.0008379998616874218, 0.017867501825094223, 0.0056130788289010525, -0.010216319002211094, 0.028275469318032265, 0.015479272231459618, -0.008520970121026039, 0.06244780495762825, -0.01677658222615719, 0.03779890760779381, -0.05525362864136696, 0.01428515650331974, -0.0006058107828721404, 0.00332620064727962, 0.0017773520667105913, -0.009471840225160122, 0.0015903109451755881, 0.035292740911245346, -0.044786691665649414, 0.04897346720099449, -0.059617310762405396, -0.06085565313696861, -0.01901739090681076, 0.015228655189275742, -0.007116779685020447, -0.023897048085927963, -0.003062684554606676, -0.0008485958096571267, 0.04714543744921684, 0.055990736931562424, 0.013098412193357944, -0.040423013269901276, 0.003226691158488393, 0.03656056523323059, 0.04596606642007828, 0.0005611235974356532, 0.024442506954073906, 0.002039946848526597, -0.020786451175808907, 0.021081294864416122, -0.01196326594799757, 0.014904327690601349, 0.0020712739787995815, -0.0091696260496974, -0.0200051162391901, -0.009862507693469524, 0.028334438800811768, 0.053897351026535034, 0.009235965088009834, 0.018000181764364243, -0.020874904468655586, 0.00045101807336322963, -0.025680849328637123, -0.011801102198660374, 0.04248691722750664, 0.009317046962678432, -0.012442385777831078, 0.019562851637601852, 0.006328073795884848, -0.01392397377640009, -0.009980444796383381, -0.021390879526734352, 0.023174680769443512, 0.018648836761713028, -0.008439888246357441, 0.010665955021977425, -0.016938745975494385, 0.04071785509586334, -0.0023900733795017004, -0.010172093287110329, -0.023189423605799675, -0.033051930367946625, -0.0366785041987896, 0.027877431362867355, -0.054840847849845886, 0.01589205302298069, -0.016319574788212776, -0.010658584535121918, 0.020388411357998848, -0.03455563262104988, 0.039744872599840164, -0.07878211885690689, 0.01040059607475996, -0.003563917940482497, 0.028983093798160553, -0.009847764857113361, -0.04404958337545395, 0.002491425722837448, 0.02509116195142269, -0.025017451494932175, -0.009471840225160122, 0.03656056523323059, -0.03726818785071373, -0.021980565041303635, -0.06221193075180054, 0.008454631082713604, -0.01937120221555233, 0.028054337948560715, 0.00503444904461503, 0.020594801753759384, 0.011204044334590435, 0.018044408410787582, 0.007544302381575108, -0.014734792523086071, 0.008307209238409996, 0.03594139590859413, 0.036265723407268524, 0.015095975250005722, 0.00524452468380332, -0.02531229518353939, 0.022201698273420334, 0.010304772295057774, -0.01611318439245224, -0.004724863450974226, 0.022039534524083138, -0.00805659219622612, 0.008985348977148533, 0.024118179455399513, 0.0022721360437572002, -0.020167279988527298, -0.0495336689054966, 0.010334257036447525, -0.025695590302348137, -0.008071334101259708, -0.02758258767426014, 0.04239846393465996, 0.008955864235758781, -0.023513751104474068, 0.0211107786744833, 0.006991471163928509, 0.02357271872460842, 0.009412871673703194, -0.007879686541855335, 0.02102232538163662, 0.01919429749250412, -0.012294964864850044, 0.035204287618398666, -0.019489141181111336, 0.03762200102210045, 0.02049160748720169, -0.005296122282743454, -0.014985409565269947, 0.03880137577652931, 0.0057273306883871555, 0.013135267421603203, 0.02307148650288582, -0.053720444440841675, -0.0019809782970696688, 0.036855410784482956, 0.01959233544766903, -0.03387749195098877, -0.003648685524240136, -0.029897108674049377, 0.0037850504741072655, 0.030339373275637627, -0.016924003139138222, 0.014027168974280357, 0.025253325700759888, -0.0404524952173233, -0.0015331850154325366, -0.008447259664535522, -0.0028323382139205933, 0.045995552092790604, 0.02311571314930916, 0.00500865001231432, 0.015494014136493206, -0.004993908107280731, 0.004997593350708485, -0.01090920064598322, 0.00866102147847414, -0.002073116833344102, -0.0003123495844192803, -0.027037128806114197, -0.010761779733002186, 0.04428545758128166, -0.016761839389801025, 0.04817739129066467, 0.02811330556869507, -0.031754620373249054, 0.047794096171855927, 0.05212828889489174, -0.05531259626150131, -0.007798604667186737, 0.03110596537590027, 0.02597569301724434, 0.02771526761353016, -0.024118179455399513, 0.0044816178269684315, -0.015449787490069866, -0.03181358799338341, 0.020255733281373978, -0.00125308393035084, -0.0445508174598217, 0.004146233666688204, 0.04284072667360306, -0.05790721997618675, 0.008860040456056595, -0.0038624468725174665, 0.04696853458881378, 0.009022204205393791, -0.029970819130539894, -0.049799028784036636, -0.03815272077918053, -0.014830616302788258, -0.016997715458273888, -0.007308427710086107, -0.03361213207244873, -0.012980475090444088, 0.022467058151960373, -0.032698117196559906, -0.01945965550839901, -0.06840363889932632, 0.034172333776950836, -0.03605933114886284, 0.022658705711364746, 0.04142548143863678, 0.013208978809416294, 0.013621759600937366, -0.03255069628357887, 0.01950388215482235, 0.0010024671209976077, -0.007636440917849541, 0.0073563395999372005, -0.004706435836851597, 0.02196582406759262, 0.0030958543065935373, -0.016216380521655083, -0.006375985685735941, -0.014697937294840813, -0.0035510186571627855, 0.038359109312295914, -0.016570191830396652, -0.018545642495155334, -0.014041910879313946, 0.010312143713235855, -0.0265948623418808, 0.004057780373841524, -0.008904267102479935, -0.019076360389590263, -0.004864913877099752, -0.036265723407268524, -0.0012401845306158066, 0.012914135120809078, -0.00011246658687014133, -0.01749894767999649, -0.007466905750334263, 0.022260667756199837, -0.003047942416742444, -0.018781516700983047, 0.012973103672266006, -0.025784043595194817, 0.0012024077586829662, 0.0366785041987896, 0.011882184073328972, 0.025990433990955353, 0.015656176954507828, -0.011263012886047363, -0.014447320252656937, -0.039833325892686844, 0.007404251489788294, -0.030604731291532516, 0.012604549527168274, 0.0011839800281450152, -0.03771045431494713, -0.026506410911679268, -0.012501354329288006, 0.0017091695917770267, 0.003914044238626957, -0.004780146759003401, -0.016702871769666672, -0.02879144623875618, -0.02405921183526516, -0.006980414502322674, 0.02522384189069271, 0.03181358799338341, -0.013113154098391533, -0.019223781302571297, 0.00016918935580179095, -0.01767585426568985, -0.008771587163209915, 0.035823456943035126, -0.006995156407356262, -0.00690670358017087, 0.022555509582161903, 0.022083761170506477, 0.022526025772094727, 0.0010559074580669403, 0.026462184265255928, -0.04384319484233856, 0.018811000511050224, 0.01941542886197567, 0.0073968805372715, 0.012162284925580025, 0.0074521638453006744, 0.022835612297058105, -0.022378604859113693, -0.0454353466629982, -0.008778958581387997, -0.013931344263255596, -0.01379129383713007, -0.001984663773328066, 0.019356461241841316, -0.022526025772094727, 0.011248270981013775, 0.0019441228359937668, -0.007688038516789675, -0.013997684232890606, -0.0008859118679538369, 0.004923882428556681, -0.01059961598366499, -0.028098564594984055, 0.0036523710004985332, -0.004186774604022503, 0.015788856893777847, -0.016172153875231743, 0.011653680354356766, -0.024663640186190605, 0.0013894488802179694, 0.024442506954073906, -0.00456269970163703, -0.005638877395540476, 0.05271797627210617, -0.018368735909461975, -0.020064083859324455, -0.012346561998128891, -0.011550485156476498, -0.03794632852077484, -0.03039834089577198, 0.010636471211910248, -0.0162900909781456, -0.011712648905813694, -0.0030589988455176353, 0.029351647943258286, -0.005812097806483507, 0.007923913188278675, -0.015464529395103455, -0.004083579406142235, 0.04036404564976692, 0.02865876629948616, 0.028850413858890533, 0.016938745975494385, 0.004455818794667721, 0.001988349249586463, 0.010688068345189095, 0.009774054400622845, -0.01825079880654812, -0.010828118771314621, -0.004658523481339216, -0.023734882473945618, -0.013444853015244007, -0.006832992658019066, -0.031312353909015656, 0.001186744193546474, 0.016172153875231743, -0.031223902478814125, 0.015641435980796814, -0.002788111800327897, -0.04316505417227745, 0.02307148650288582, -0.002399287186563015, 0.010120495222508907, 0.0003982687776442617, -0.0019975630566477776, 0.0017745879013091326, 0.019474398344755173, -0.016540708020329475, -0.030516277998685837, -0.015951020643115044, 0.015110718086361885, -0.030811121687293053, 0.03190204128623009, -0.04169083759188652, 6.0062800912419334e-05, 0.009287563152611256, -0.0022795069962739944, 0.007496390026062727, 0.019872436299920082, 0.007485333364456892, -0.026757026091217995, -0.013098412193357944, -0.06975992023944855, 0.06757807731628418, -0.05386786535382271, 0.010319514200091362, 0.0036210438702255487, 0.022688189521431923, -0.0011673950357362628, 0.029042061418294907, 0.0284818597137928, 0.01674709841609001, -0.005705217365175486, -0.014594742096960545, -0.01571514643728733, -0.003527062712237239, -0.03862446919083595, -0.010186835192143917, -0.007710151374340057, -0.010275288484990597, -0.018781516700983047, -0.05487033352255821, -0.0009223066153936088, 0.01736626960337162, -0.004728549160063267, 0.026948675513267517, 0.011189302429556847, -0.030250919982790947, 0.00426417076960206, 0.01394608709961176, 0.025592396035790443, -0.0013009959366172552, -0.046260908246040344, 0.02245231531560421, -0.007946026511490345, 0.0017202262533828616, -0.02214272879064083, 0.019312234595417976, 0.006917760241776705, -0.0236611720174551, -0.027420423924922943, 0.0021265570539981127, -0.015774115920066833, 0.015833083540201187, -0.003281974233686924, 0.01923852413892746, -0.008027108386158943, -0.049975935369729996, -0.019120587036013603, 0.027287743985652924, 0.01200749259442091, -0.04319453984498978, -0.005303493235260248, 0.02080119214951992, 0.0162900909781456, 0.014041910879313946, -0.03172513470053673, 0.014005055651068687, -0.0033704270608723164, -0.01856038346886635, 0.026034660637378693, 0.022304894402623177, 0.009479211643338203, 0.021685723215341568, 0.034172333776950836, 0.0054877703078091145, 0.0036523710004985332, 0.03732715919613838, 0.0051671285182237625, -0.00575681496411562, -0.04018713906407356, -0.008579939603805542, 0.012346561998128891, 0.008063963614404202, -0.002006777096539736, -0.0021468275226652622, 0.011506258510053158, 0.008948493748903275, -0.023322103545069695, -0.03440820798277855, -0.0601775124669075, 0.016083700582385063, 0.006799823138862848, -0.014557886868715286, -0.018000181764364243, 0.017395753413438797, -0.0006532621337100863, 0.020211506634950638, 0.032521214336156845, -0.00852834153920412, -0.008904267102479935, 0.0066818855702877045, 0.03204946219921112, 0.03199049457907677, 0.02080119214951992, -0.0013212664052844048, -0.026137856766581535, 0.026845479384064674, 0.011063993908464909, 0.017690597102046013, -0.016982972621917725, 0.01749894767999649, 0.0023237336426973343, -0.008675763383507729, 0.03281605616211891, -0.03614778444170952, 0.018442446365952492, 0.0055909655056893826, 0.016496481373906136, 0.006357558071613312, -0.005915293004363775, 0.032521214336156845, 0.011299868114292622, -0.010990282520651817, 0.04254588484764099, -0.003337257308885455, 0.001765374094247818, 0.025327036157250404, -0.015494014136493206, -0.023631688207387924, 0.0054140593856573105, 0.0006491158856078982, -0.01847193017601967, -0.021494073793292046, 0.002425085986033082, -0.02771526761353016, -0.0013314016396179795, -0.015611951239407063, -0.004304711706936359, 0.003987755160778761, 0.0033833265770226717, -0.007975510321557522, -0.018427705392241478, -0.005130272824317217, -0.02214272879064083, 0.02896835096180439, -0.007805975619703531, -0.037474580109119415, -0.017970697954297066, 0.023086227476596832, 0.0033556849230080843, -0.0009043395984917879, -0.03697334602475166, 0.01968078874051571, -0.0019754499662667513, 0.02601991966366768, 0.009604519233107567, -0.008690505288541317, 0.00426417076960206, 0.012575065717101097, 0.005344034172594547, 0.001116718864068389, 0.04808893799781799, -0.016186894848942757, 0.026535894721746445, 0.007562729995697737, 0.007761748973280191, -0.004783832002431154, 0.0020602173171937466, 0.005812097806483507, 0.01848667301237583, 0.03508634865283966, 0.00953080877661705, -0.006136425770819187, 0.02298303321003914, -0.007842831313610077, -0.008734731934964657, -0.003047942416742444, -0.03659005090594292, -0.03290450945496559, 0.021169746294617653, 0.01950388215482235, -0.011454661376774311, -0.030103497207164764, -0.049799028784036636, 0.0069214459508657455, -0.009294934570789337, -0.0006610939162783325, -0.028732476755976677, -0.01571514643728733, -0.02339581400156021, 0.012847795151174068, -0.006423897575587034, 0.007536930963397026, -0.02762681432068348, -0.015597209334373474, 0.002425085986033082, 0.018678320571780205, -0.010761779733002186, -0.028201758861541748, -0.0037666228599846363, -0.027199292555451393, -0.046850595623254776, -0.009818281047046185, 0.003534433664754033, -0.03659005090594292, 0.004695379175245762, 0.05192190036177635, -0.017425237223505974, -0.04726337641477585, -0.018737290054559708, 0.0073673962615430355, 0.017395753413438797, 0.022245924919843674, -0.02441302314400673, 0.011594711802899837, -0.005255581345409155, 0.0371207669377327, -0.012722487561404705, 0.009796167723834515, -0.004371051676571369, 0.035233769565820694, -0.0030718983616679907, 0.021169746294617653, -0.0011489674216136336, -7.227115565910935e-05, 0.005130272824317217, -0.02513538859784603, 0.007805975619703531, 0.016009990125894547, 0.0034588801208883524, 0.01104925200343132, 0.028496602550148964, 0.0072531444020569324, -0.010717553086578846, 0.0026167340110987425, -0.004319454077631235, 0.020697997882962227, -0.011174559593200684, 0.008344064466655254, 0.03815272077918053, -0.008690505288541317, -0.001383920549415052, 0.010776521638035774, 0.007444792427122593, -0.0330224446952343, -0.01567091979086399, -0.011675793677568436, 0.029381131753325462, 0.03004452958703041, -0.017218846827745438, -0.04602503404021263, 0.006471809931099415, 0.014130364172160625, 0.030457310378551483, 0.00897060614079237, -0.0074521638453006744, 0.013584903441369534, -0.005506197921931744, 0.006022173911333084, -0.009788796305656433, 0.040423013269901276, 0.005812097806483507, 0.01932697556912899, -0.01006889808923006, -0.024973224848508835, -0.009965702891349792, -0.02102232538163662, 0.023322103545069695, 0.036707986146211624, 0.020639028400182724, -0.006409155670553446, 0.028511343523859978, -0.011476774699985981, 0.020904388278722763, 0.0045848130248487, -0.030545763671398163, -0.017248330637812614, -0.009007462300360203, -0.012693002820014954, -0.006420212332159281, -0.014712679199874401, -0.024000242352485657, 0.007286314386874437, 0.010584873147308826, 0.001043929485604167, 0.015833083540201187, -0.029513811692595482, 0.01901739090681076, -0.0266538318246603, -0.010054155252873898, 0.009243336506187916, -0.017218846827745438, -0.01741049438714981, 0.019032133743166924, -0.01096079871058464, 0.002896835096180439, -0.008697876706719398, -0.011712648905813694, -0.002476683584973216, 0.008380919694900513, -0.02789217419922352, 0.04006920009851456, -0.015656176954507828, 0.04360732063651085, 0.03154823184013367, 0.031489260494709015, -0.005683104041963816, 0.011793730780482292, -0.04166135564446449, -0.03561706840991974, 0.015029636211693287, -0.007544302381575108, 0.002871036296710372, -0.015095975250005722, -0.01571514643728733, -0.04201516509056091, -0.03172513470053673, -0.0007679745904169977, 0.017955955117940903, -0.009176996536552906, 0.014609484001994133, -0.0026425328105688095, -0.020683255046606064, 0.026476925238966942, 0.0005500669940374792, -0.01732204295694828, 0.0038550756871700287, 0.021390879526734352, 0.0390077643096447, 0.02767104096710682, 0.017734821885824203, -0.025931466370821, 0.016570191830396652, -0.0340249128639698, 0.036766957491636276, -0.017749564722180367, 0.03815272077918053, -0.030870091170072556, -0.00016527347906958312, -0.03151874616742134, 0.0021357708610594273, -0.043902162462472916, -0.022349119186401367, -0.010739666409790516, -0.004441076889634132, 0.013511192984879017, -0.008712618611752987, 0.02700764313340187, 0.00017713630222715437, 0.011417806148529053, 0.027700524777173996, 0.020299959927797318, -0.03546964377164841, 0.029970819130539894, 0.012611920945346355, -0.008535712957382202, 0.01856038346886635, -0.00866102147847414, -0.005071304272860289, 0.020860161632299423, -0.018958423286676407, 0.024973224848508835, 0.017557917162775993, -0.024884771555662155, -0.00622856430709362, -0.010208948515355587, 0.0056757330894470215, 0.018987907096743584, -0.023852821439504623, -0.021995307877659798, 0.013135267421603203, 0.007783862296491861, 0.018648836761713028, 0.009176996536552906, 0.011543113738298416, -0.004039352759718895, -0.017823275178670883, 0.00868313480168581, -0.024162406101822853, -0.029027320444583893, 0.005447229370474815, 0.0051671285182237625, -0.010997653938829899, -0.031843073666095734, 0.004573756363242865, -0.011882184073328972, 0.0002065054577542469, -0.01847193017601967, -0.003659742185845971, 0.010009929537773132, 0.009516066871583462, 0.0063723004423081875, 0.0031621940433979034, 0.03222636878490448, 0.0047912029549479485, 0.0025577654596418142, 0.016629161313176155, 0.006844049319624901, 0.018309766426682472, 0.008469372987747192, -0.017926471307873726, -0.0013876061420887709, -0.006062714848667383, -0.00852834153920412, -0.024840544909238815, 0.028732476755976677, -0.05150911957025528, 0.030516277998685837, -0.023130454123020172, 0.0056757330894470215, 0.009287563152611256, -0.0012107001384720206, -0.009729827754199505, 0.014181961305439472, 0.0067334831692278385, 0.031312353909015656, 0.007326855324208736, -0.01472742110490799, 0.01441783644258976, 0.0017036412609741092, -0.0004984693950973451, 0.04160238429903984, -0.03187255933880806, 0.049120888113975525, 0.01328268926590681, 0.029970819130539894, 0.002439828123897314, 0.013938715681433678, -0.006073771510273218, 0.007960768416523933, 0.012774084694683552, -0.024044468998908997, 0.013496451079845428, 0.00180222955532372, 0.016997715458273888, 0.020565317943692207, -0.004850171972066164, -0.03821168839931488, -0.01950388215482235, -0.0372387059032917, -0.005878437776118517, 0.022481799125671387, -0.030457310378551483, -0.003659742185845971, 0.007702780421823263, -0.009272821247577667, 0.028540829196572304, -0.019798725843429565, 0.03555809706449509, -0.005292436573654413, -0.014970666728913784, -0.0007665925077162683, -0.0026388473343104124, 0.014712679199874401, -0.007404251489788294, 0.0037316102534532547, -0.0011950366897508502, -0.000169419712619856, -0.012700374238193035, -0.002314519602805376, -0.013444853015244007, -0.011638938449323177, 0.0006560262991115451, 0.0016216379590332508, 0.0073563395999372005, 0.010407967492938042, -0.024162406101822853, -0.00810081884264946, -0.006070085801184177, -0.0018593553686514497, -0.013363771140575409, 0.0020196763798594475, -0.028511343523859978, -0.0013903703074902296, 0.012973103672266006, 0.02481106109917164, -0.02370539866387844, -0.0307521540671587, -0.02986762300133705, -0.033140383660793304, -0.01959233544766903, 0.014521030709147453, -0.023145196959376335, -0.0006325309514068067, -0.025680849328637123, -0.006748225539922714, 0.0003464408509898931, -0.010835490189492702, 0.014513660222291946, -0.0018068364588543773, 0.018899453803896904, 0.002084173262119293, -0.0012982317712157965, -0.007264201063662767, 0.01589205302298069, 0.005038134288042784, -0.023557977750897408, 0.016216380521655083, -0.026801252737641335, -0.002933690557256341, -0.02637373097240925, -0.0030958543065935373, -0.015405560843646526, -0.026992902159690857, 0.02656537853181362, 0.03349419683218002, 0.016393285244703293, 0.005845267791301012, 0.0020565318409353495, 0.001973607111722231, 0.004695379175245762, -0.02610837109386921, 0.0034809934441000223, 0.007102037314325571, -0.013850262388586998, 0.007131521590054035, 0.020476864650845528, -0.005579908844083548, -0.018088635057210922, -0.007227345835417509, 0.02472260780632496, -0.014661082066595554, 0.0014318326720967889, 0.012869908474385738, 0.00526663800701499, -0.011277754791080952, 0.009073801338672638, -0.002399287186563015, -0.015272881835699081, -0.002555922605097294, 0.04313557222485542, -0.00044295593397691846, -0.00955292209982872, -0.0033962258603423834, -0.019828209653496742, 0.007146263960748911, -0.0238823052495718, -0.003672641469165683, -0.04935676231980324, 0.015184428542852402, -0.000600743165705353, 0.010953427292406559, -0.006645030342042446, -0.03355316445231438, 0.01428515650331974, -0.007864944636821747, -0.006103255786001682, -0.011189302429556847, -0.00020949996542185545, -0.005860010161995888, 0.023852821439504623, 0.014137734659016132, 0.025327036157250404, 0.0227176733314991, -0.019607078284025192, 0.0017828803975135088, -0.0010061527136713266, 0.007079923991113901, 0.021213972941040993, 0.0014373610028997064, -0.002555922605097294, -0.023086227476596832, -0.04098321497440338, 0.032432761043310165, -0.03694386035203934, -0.029027320444583893, -0.012840424664318562, -0.0026093630585819483, 0.0033206723164767027, 0.017381010577082634, -0.011292497627437115, -0.02405921183526516, 0.006534464191645384, 0.007334226276725531, -0.017469463869929314, 0.0037666228599846363, -0.024044468998908997, -0.003995126113295555, 0.006925131194293499, 0.021390879526734352, -0.0021615696605294943, 0.011882184073328972, -0.013776551932096481, -6.942781510588247e-06, -0.015656176954507828, -0.03017720952630043, -0.007805975619703531, 0.02500270865857601, 0.005270323716104031, 0.0019220096291974187, 0.01276671327650547, -0.015302365645766258, -0.0037666228599846363, 0.002922633895650506, 0.010459564626216888, -0.009781425818800926, 0.013842891901731491, 0.02615259774029255, 0.004090950358659029, -0.003490207251161337, 0.0007306584739126265, -0.010135237127542496, -0.015125459991395473, 0.004920197185128927, 0.02472260780632496, 0.031312353909015656, 0.016997715458273888, -0.03859498351812363, 0.0200051162391901, -0.010968170128762722, -0.0026867592241615057, 0.03455563262104988, -0.004717492498457432, 0.027774237096309662, 0.002981602679938078, 0.03544016182422638, -0.0026314761489629745, 0.002544865943491459, -0.021980565041303635, -0.00848411489278078, 0.005878437776118517, -0.0013894488802179694, -0.002555922605097294, 0.006232249550521374, 0.0008089762413874269, -0.02031470090150833, 0.02128768339753151, 0.009471840225160122, -0.005001279059797525, -0.00821138545870781, 0.04098321497440338, 0.0025614509359002113, 0.0006504979683086276, 0.04696853458881378, -0.028275469318032265, 0.004953367169946432, -0.015508756041526794, -0.02285035327076912, 0.024073952808976173, -0.016275348141789436, 0.01098291203379631, -0.0032174771185964346, -0.007798604667186737, -0.005203983746469021, 0.002121028723195195, -0.0013415368739515543, -0.023100970312952995, 0.003248804248869419, -0.02196582406759262, 0.00402829609811306, -0.028098564594984055, 0.00550251267850399, -0.0038071637973189354, 0.00671874126419425, 0.0027641556225717068, 0.017513690516352654, 0.003530748188495636, 7.204080611700192e-05, -0.006070085801184177, -0.0029392188880592585, 0.004212573170661926, -0.007938655093312263, -0.00692881690338254, 0.005889494437724352, -0.009176996536552906, 0.003556546987965703, -0.001066042692400515, 0.022511282935738564, 0.00859468150883913, -0.004536900669336319, 0.012722487561404705, -0.004076208453625441, -0.011137704364955425, 0.01435149647295475, -0.006254362873733044, -0.005996374879032373, 0.02280612662434578, -0.028820930048823357, -0.010135237127542496, 0.001208857400342822, 0.013017330318689346, -0.007747007068246603, 0.005004964768886566, 0.026668574661016464, 0.00023000079090707004, -0.014594742096960545, 0.019783983007073402, 0.0014373610028997064, -0.02339581400156021, 0.016393285244703293, 0.0134374825283885, -0.0020712739787995815, -0.01437360979616642, -0.017793791368603706, -0.014889584854245186, -0.022599736228585243, 0.009862507693469524, -0.00550251267850399, 0.004805945325642824, 0.02883567288517952, 0.04982851445674896, 0.01945965550839901, 0.015014893375337124, -0.003737138584256172, -0.018177088350057602, -0.002332947449758649, -0.009383386932313442, 0.005609393119812012, -0.004949681460857391, -0.019828209653496742, -0.015729889273643494, -0.002028890186920762, -0.012184398248791695, -0.028732476755976677, -0.002355060540139675, 0.0021707837004214525, 0.021626753732562065, 0.013039443641901016, -0.008204014040529728, 0.011270384304225445, -0.0034404525067657232, 0.03567603603005409, 0.005683104041963816, 0.013334287330508232, -0.019268007948994637, 0.00868313480168581, 0.00615853862836957, 0.021390879526734352, 0.007415308151394129, 0.0220542773604393, -0.0034072825219482183, -0.008815813809633255, 0.022791385650634766, 0.004183088894933462, 0.04245743155479431, -0.001208857400342822, 0.0022389660589396954, -0.0031179676298052073, 0.015361334197223186, -0.010702811181545258, 0.007901799865067005, 0.018442446365952492, -0.007360025309026241, 0.005001279059797525, -0.01972501538693905, -0.006895646918565035, -0.006645030342042446, 0.004743291065096855, -0.006103255786001682, 0.014837987720966339, 0.006188023369759321, 0.01968078874051571, 0.004411592613905668, 0.0008914401987567544, -0.0026683316100388765, -0.01705668307840824, -0.03476202115416527, -0.02977916970849037, 0.00801236554980278, 0.014410465024411678, -0.02084541879594326, -0.017425237223505974, 0.0020933873020112514, 0.016717612743377686, 0.0042825983837246895, -0.04357783496379852, 0.011904297396540642, 0.009258078411221504, 0.01528762374073267, -0.016172153875231743, -0.024221375584602356, -0.0307521540671587, 0.008933750912547112, 0.04027559235692024, 0.008933750912547112, -0.024250859394669533, 0.035292740911245346, 0.016865035519003868, -0.021685723215341568, -0.006788766477257013, 0.0027051870711147785, -0.0033409427851438522, 0.039214156568050385, 0.033848006278276443, -0.02178891748189926, -0.006552891805768013, 0.012000121176242828, 0.007216289173811674, 0.011395692825317383, 0.008063963614404202, 0.0022426515351980925, 0.025017451494932175, -0.017911728471517563, -0.01437360979616642, -0.005576223600655794, -0.015538240782916546, 0.012685631401836872, -0.0005284144426696002, 0.006368614733219147, -0.003363056108355522, 0.009965702891349792, -0.019975632429122925, 0.03160719946026802, 0.01098291203379631, 0.029115773737430573, -0.011226157657802105, -0.003490207251161337, -0.021317169070243835, 0.010275288484990597, 0.03249172866344452, -0.005572537891566753, 0.020815934985876083, -0.005509883631020784, 0.0018068364588543773, -0.0142409298568964, -0.029440101236104965, -0.020815934985876083, 0.015538240782916546, -0.01853089965879917, 0.010739666409790516, -0.04472772404551506, 0.0010614357888698578, 0.003965641837567091, 0.02655063569545746, 0.0172335896641016, 0.001977292587980628, 0.023322103545069695, -0.0023532179184257984, 0.0066597722470760345, -0.0010181306861341, -0.005004964768886566, -0.019960889592766762, 0.011668422259390354, -0.006530778482556343, 0.0037961071357131004, 0.005248210392892361, -0.007113093975931406, -0.009235965088009834, 0.005428801756352186, 0.006313331425189972, -0.018398219719529152, -0.03290450945496559, 0.007076238747686148, -0.00023345598310697824, 0.008292467333376408, 0.016894519329071045, 0.021096035838127136, 0.0033667415846139193, -0.017705338075757027, -0.009331789799034595, 0.0009646903490647674, -0.032786570489406586, 0.0034349241759628057, -0.016924003139138222, -0.008004995062947273, 0.0011581812286749482, -0.0119411526247859, -0.022201698273420334, 0.019032133743166924, 0.00026720171445049345, 0.01098291203379631, -0.013548048213124275, -0.05121427774429321, -0.030811121687293053, -0.012250738218426704, -0.011528371833264828, 0.025857754051685333, -0.018766773864626884, -0.02517961524426937, 0.024162406101822853, 0.020727481693029404, -0.020196763798594475, -0.0023311045952141285, -0.01180847268551588, 0.016496481373906136, -0.012265480123460293, -0.007658553775399923, 0.0039214156568050385, 0.007975510321557522, 0.008248240686953068, -0.006070085801184177, -0.010319514200091362, 0.013201607391238213, 0.0025503942742943764, -0.0033943832386285067, -0.009317046962678432, -0.0054030027240514755, -0.010769150219857693, 0.032255854457616806, -0.018103376030921936, 0.03352367877960205, 0.01976924203336239, -0.003995126113295555, 0.011086107231676579, 0.03272760286927223, 0.025857754051685333, -0.025813529267907143, -0.012346561998128891, -0.016717612743377686, 0.005340348929166794, 0.006998842116445303, 0.004997593350708485, -0.021892113611102104, 0.025150131434202194, 0.013525934889912605, -0.006033230572938919, -0.0011443604016676545, -0.02669805847108364, 0.004249428864568472, -0.005399317480623722, -0.01673235557973385, 0.009884621016681194, -0.012737229466438293, 0.03190204128623009, 0.0036210438702255487, 0.007238402497023344, 0.015435045585036278, 0.007702780421823263, -0.0006256205961108208, -0.015184428542852402, -0.025209099054336548, -0.024486733600497246, -0.008071334101259708, -1.0941449772872147e-06, -0.011086107231676579, -0.006055343896150589, -0.006106941495090723, 0.004846486262977123, -0.010061526671051979, -0.020919129252433777, 0.017734821885824203, 0.031046995893120766, -0.012781456112861633, 0.002325576264411211, -0.03482098877429962, 0.009353903122246265, -0.027906915172934532, 0.012184398248791695, 0.021685723215341568, -0.007065182086080313, -0.010975540615618229, 0.03694386035203934, -0.014484175480902195, 0.017838018015027046, -0.025386005640029907, 0.02155304327607155, 0.0033538423012942076, -0.025371262803673744, -0.023145196959376335, 0.014978038147091866, 0.025386005640029907, -0.01533185038715601, -0.04071785509586334, -0.005063933320343494, 0.003943528980016708, 0.024295086041092873, -0.019828209653496742, 0.035233769565820694, -0.006132740061730146, 0.001142517663538456, -0.0042199441231787205, -0.0012899392750114202, -0.021435106173157692, 0.023145196959376335, -0.028010111302137375, 0.004013554193079472, -0.009545550681650639, -0.0044705611653625965, 0.003259860910475254, 0.01571514643728733, -0.007857573218643665, 0.008410404436290264, 0.049474701285362244, -0.02192159742116928, -0.0012622977374121547, -0.0398922935128212, 0.011476774699985981, 0.010120495222508907, -0.012280222028493881, -0.01941542886197567, 0.0028839358128607273, -0.03862446919083595, -0.01593627966940403, -0.0016907418612390757, 0.01888471096754074, -0.004477932117879391, 0.019400687888264656, 0.0400102324783802, 0.004769090097397566, -0.030368857085704803, 0.0009471839875914156, -0.02535652182996273, 0.004411592613905668, 0.009162254631519318, -0.0045332154259085655, 0.009589777328073978, -0.03237378969788551, 0.030545763671398163, -0.0074189938604831696, -0.01285516656935215, 0.004186774604022503, 0.00620276527479291, -0.010083639994263649, 0.005391946528106928, 0.04281124472618103, -0.011417806148529053, 0.01710090972483158, -0.006969357840716839, 0.0066487155854702, 0.009199109859764576, -0.01776430755853653, 0.005801041144877672, 0.0114694032818079, -0.03968590497970581, -0.011130333878099918, 0.022024791687726974, -0.01042270939797163, 0.015494014136493206, 0.03638365864753723, -0.028761960566043854, -0.012081203050911427, 0.0190616175532341, 0.00262226234190166, -0.01710090972483158, 0.008292467333376408, -0.0033040873240679502, 0.016039473935961723, 0.02588723972439766, -0.025209099054336548, 0.021096035838127136, -0.013710211962461472, 0.014115621335804462, 0.007695409469306469, -0.0021523558534681797, -0.007234716787934303, -0.009412871673703194, 0.006939873564988375, -0.0010098381899297237, -0.0028397091664373875, 0.002425085986033082, -0.021626753732562065, -0.005649934057146311, 0.0045442720875144005, -0.03022143617272377, 0.0004535518819466233, 0.016216380521655083, 0.0033685844391584396, -0.007308427710086107, -0.005274008959531784, 0.005089731886982918, 0.008793700486421585, 0.011579969897866249, 0.020417897030711174, -0.005133958533406258, 0.023808594793081284, -0.009383386932313442, -0.018383478745818138, 0.01104925200343132, -0.0063207028433680534, 0.001355357700958848, -0.0018446132307872176, -0.00011828282731585205, 0.005557795520871878, -0.010319514200091362, -0.0038698180578649044, 0.002065745647996664, -0.0353517085313797, 0.008963235653936863, 0.00236611720174551, 0.006434954237192869, -0.008557826280593872, 0.008837927132844925, 0.029572779312729836, -0.0043341959826648235, 0.018545642495155334, -0.008425146341323853, -0.0014336754102259874, 0.00503444904461503, 0.005296122282743454, 0.005226097069680691, 0.0024048155173659325, -0.0023956014774739742, 0.007614327594637871, 0.023764368146657944, 0.02031470090150833, 0.03219688683748245, -0.0006339130341075361, -0.006147482432425022, -0.01057750266045332, -0.014484175480902195, 0.0024729978758841753, 0.02044738084077835, 0.015029636211693287, 0.0013461437774822116, 0.009221223182976246, -0.00801236554980278, -0.012162284925580025, -0.020992841571569443, 0.028540829196572304, 0.024943741038441658, 0.01602473109960556, 0.0018611981067806482, 0.030722668394446373, 0.006405469961464405, 0.009766682982444763, -0.015788856893777847, 0.03361213207244873, -0.006276476196944714, 0.015014893375337124, 0.014572628773748875, 0.02808382175862789, 0.042604852467775345, 0.0004351241805125028, -0.0056241354905068874, -0.0023863876704126596, 0.004909140523523092, 0.008631536737084389, -0.01892893761396408, -0.0028765646275132895, -0.0026904449332505465, 0.0038882456719875336, -0.015213913284242153, 0.010798634961247444, 0.00859468150883913, 0.0004464111407287419, 0.0200051162391901, 0.021906854584813118, -0.02374962531030178, -0.01426304318010807, -0.0012171498965471983, -0.00948658213019371, -0.00961926206946373, 0.01040059607475996, -0.025695590302348137, -0.007665925193578005, 0.0048206876963377, -0.008882153779268265, -0.009943589568138123, -0.015420302748680115, 0.014941182918846607, -0.04228052496910095, -0.007798604667186737, -0.021847886964678764, 4.8027206503320485e-05, 0.012243366800248623, -0.01057750266045332, -0.0017100910190492868, -0.00023794773733243346, -0.03178410604596138, -0.0172335896641016, -0.02522384189069271, -0.0012733543990179896, 0.008270354010164738, -0.015774115920066833, 0.015390818938612938, 0.009317046962678432, -0.03128287196159363, -0.0023274191189557314, 0.02727300301194191, 0.00032870419090613723, -0.0017865659901872277, 0.012626662850379944, -0.009294934570789337, 0.002443513600155711, 0.0045848130248487, -0.01879625767469406, -0.018899453803896904, 0.00552462600171566, 0.00665240129455924, 0.022791385650634766, -0.0019256951054558158, -0.001655729254707694, -0.014904327690601349, -0.016658645123243332, -0.0004270620411261916, 0.01243501529097557, 0.018678320571780205, 0.004761718679219484, 0.0013240305706858635, 0.00029392188298515975, -0.0012143857311457396, 0.024354053661227226, -0.018132861703634262, 0.019872436299920082, 0.011690535582602024, -0.007717522792518139, 0.017263073474168777, 0.015729889273643494, -0.00015859343693591654, -0.000397347379475832, 0.007249459158629179, -0.006821935996413231, 0.004879656247794628, 0.00799025222659111, -0.04466875642538071, -0.005911607760936022, 0.006851420737802982, -0.010570131242275238, 0.0021302425302565098, -0.0011268540984019637, 0.004400535952299833, 0.006390728056430817, -0.01292150653898716, -0.014425206929445267, -0.002721772063523531, -0.0018326352583244443, 0.020874904468655586, 0.008439888246357441, 0.010864974930882454, -0.02324839122593403, -0.005255581345409155, -0.014380980283021927, -0.0028913067653775215, 0.007477962411940098, -0.01981346867978573, 0.004227315541356802, 0.015951020643115044, 0.008557826280593872, -0.0051155309192836285, 0.007489019073545933, 0.0001307215279666707, 0.00897060614079237, -0.01278882659971714, 0.011344094760715961, 0.026226308196783066, 0.014322011731564999, 0.02995607629418373, -0.011285126209259033, 0.010253175161778927, 0.006748225539922714, -0.04534689337015152, -0.02007882669568062, 0.00016711624630261213, 0.014152477495372295, -0.006692942231893539, 0.01435149647295475, 0.0011959580006077886, -0.017793791368603706, -0.00912539940327406, -0.041395995765924454, 0.007614327594637871, 0.0017027199501171708, -0.007953396998345852, -0.0008389212307520211, -0.012663518078625202, -0.020211506634950638, 0.008432517759501934, 0.01615741103887558, -0.008764216676354408, 0.00799025222659111, 0.0422215573489666, 0.029381131753325462, 0.0035805029328912497, -0.009317046962678432, 0.01006889808923006, -0.00569047499448061, -0.022113244980573654, 0.007570100948214531, -0.00899271946400404, 0.0031474519055336714, 0.01941542886197567, -0.009715085849165916, 0.013194235973060131, 0.005531996954232454, -0.010776521638035774, 0.0049681090749800205, 0.0008039086242206395, 0.020019859075546265, 0.010245803743600845, 0.008063963614404202, -0.01772008091211319, -0.010923943482339382, 0.025725075975060463, -0.007050439715385437, 0.014226187951862812, 0.0044595045037567616, -0.00405040942132473, -0.016982972621917725, -0.011462031863629818, 0.0005910686450079083, 0.01853089965879917, 0.01372495386749506, 0.0013820778112858534, -0.002143142046406865, -0.0061622243374586105, 0.009184367954730988, 0.006095884833484888, 0.0002699658798519522, -0.024516217410564423, -0.012973103672266006, 0.006899332627654076, -0.004249428864568472, -0.00034851397504098713, -0.02009356953203678, -0.01240553054958582, 0.005226097069680691, -0.014159847982227802, -0.009051688015460968, 0.006188023369759321, 0.00868313480168581, -0.004389479290693998, 0.007433735765516758, -0.023734882473945618, 0.001973607111722231, 0.012604549527168274, 0.007820717990398407, -0.013378513045608997, -0.0010420866310596466, 0.01247924193739891, 0.00999518670141697, 0.00021145791106391698, 0.0005989003693684936, -0.007680667098611593, 0.024250859394669533, -0.0017275973223149776, -0.004160975571721792, -0.007901799865067005, -0.02320416457951069, 0.016924003139138222, 0.020683255046606064, -0.001322187832556665, 0.018634093925356865, -0.008609423413872719, -0.004817001987248659, 0.002845237497240305, 0.004382108338177204, -0.018309766426682472, 0.004186774604022503, -0.008815813809633255, 0.009796167723834515, -0.0014732949202880263, -0.008985348977148533, -2.2833077309769578e-05, -0.008071334101259708, -0.0029244767501950264, -0.025990433990955353, -0.02245231531560421, 0.014521030709147453, -0.003735295729711652, 0.00174326088745147, 0.014226187951862812, 0.016938745975494385, -0.006527092773467302, 0.009855136275291443, 0.02615259774029255, -0.014344125054776669, -0.012589807622134686, 0.013710211962461472, 0.011417806148529053, -0.007747007068246603, 0.019253265112638474, -0.00709835160523653, -0.004651152528822422, 0.013238462619483471, -0.022865096107125282, 0.0142409298568964, 0.02762681432068348, -0.01135883666574955, -0.011948524042963982, 0.011122962459921837, -0.014425206929445267, -0.0006366771995089948, 0.011351466178894043, 0.007183119188994169, 0.008690505288541317, 0.009692972525954247, -0.015022264793515205, -0.010142608545720577, -0.015552982687950134, -0.0004696761316154152, 0.021641496568918228, 0.016437511891126633, 0.017749564722180367, 0.004378422629088163, -0.035735003650188446, 0.009869878180325031, -0.007271572016179562, 0.0017736665904521942, -0.014926441013813019, 0.00023195873654913157, 0.01372495386749506, -0.0020786451641470194, 0.016231121495366096, -0.001376549480482936, -0.008388291113078594, -0.007570100948214531, -0.015022264793515205, 0.019710272550582886, -0.007470591459423304, 0.015000151470303535, 0.01575937308371067, -0.007953396998345852, 0.015538240782916546, -0.008675763383507729, -0.001090920064598322, 0.0013802350731566548, -0.01196326594799757, -0.00027134796255268157, -0.01189692597836256, 0.015788856893777847, 0.018737290054559708, -0.028408149257302284, -0.0012033290695399046, 0.012825682759284973, 0.0005763264489360154, 0.0037776795215904713, 0.011462031863629818, 0.0026683316100388765, 0.016614418476819992, 0.002815753221511841, 0.011041880585253239, -0.002194739645346999, -0.03485047444701195, 0.0033538423012942076, 0.006095884833484888, -0.01236130390316248, -0.012685631401836872, -0.0021707837004214525, 0.017823275178670883, -0.010253175161778927, -0.0020454751793295145, -0.01633431762456894, 0.008417775854468346, -0.015494014136493206, -0.013607016764581203, -0.009324418380856514, -0.010319514200091362, 0.013761810027062893, 0.023911789059638977, 0.013363771140575409, -0.0028120677452534437, 0.01155785657465458, -0.0006435875548049808, 0.017027199268341064, 0.0038919311482459307, -0.019341718405485153, 0.011078735813498497, -0.006147482432425022, -0.02231963537633419, 0.008373549208045006, 0.01727781631052494, -0.018088635057210922, -0.008911637589335442, -0.006464438512921333, 0.020123053342103958, -0.006692942231893539, -0.0007085452089086175, 0.009405500255525112, 0.018811000511050224, -0.009692972525954247, 0.019518624991178513, -0.03656056523323059, -0.02802485227584839, 0.0071204649284482, -0.0010420866310596466, -0.012199140153825283, -0.01741049438714981, -0.005251895636320114, 0.009095914661884308, -0.014653710648417473, -0.0015801757108420134, -0.017646370455622673, -0.008469372987747192, 0.03110596537590027, 0.003105068113654852, -0.006305960472673178, -0.0044079069048166275, 0.005826840177178383, 0.00411674939095974, -0.005226097069680691, 0.01057750266045332, 0.012501354329288006, -0.006468124222010374, -0.009840394370257854, -0.014594742096960545, -0.0028618224896490574, -0.004352623596787453, 0.016039473935961723, 0.0068698483519256115, -0.001043929485604167, 0.02758258767426014, 0.0034994210582226515, -0.022157471626996994, 0.0005380889633670449, 0.0048428005538880825, 0.0038182204589247704, 0.01655544899404049, 0.008963235653936863, -0.02500270865857601, 0.004802259616553783, 0.006446010898798704, 0.008631536737084389, -0.006368614733219147, 0.018000181764364243, 0.007695409469306469, -0.033228836953639984, -0.02245231531560421, 0.0023089912720024586, -0.004466875456273556, 0.0033538423012942076, 0.00041070746374316514, 0.03293399512767792, -0.008410404436290264, 0.029395874589681625, -0.003263546386733651, 0.021140262484550476, 0.00899271946400404, -0.001186744193546474, 0.004839115310460329, 0.03832962363958359, 0.012147543020546436, -0.01037848275154829, 0.001666785916313529, -0.02115500532090664, -0.01851615682244301, -0.010518534108996391, 0.019091101363301277, -0.03255069628357887, 0.005771556869149208, 0.003936157561838627, -0.01278882659971714, 0.019385945051908493, -0.006331759039312601, -0.007020955439656973, -0.004175717942416668, -0.00503444904461503, 0.023808594793081284, -0.0051781851798295975, 0.013481708243489265, 0.008491486310958862, 0.01533185038715601, -0.0032782885245978832, -0.02245231531560421, -0.01664390228688717, 0.03558758273720741, -0.008565196767449379, -0.008786329068243504, 0.003711339784786105, 0.003003715770319104, -0.008344064466655254, -0.0005482241977006197, 0.016437511891126633, -0.009501324035227299, -0.017174620181322098, -0.004043038468807936, 0.013231092132627964, 0.009788796305656433, -0.025474458932876587, -0.006519721820950508, 0.03482098877429962, 0.015014893375337124, -0.017130393534898758, -0.003101382637396455, -0.0037850504741072655, 0.0012217568000778556, -0.0006749146850779653, -0.027818461880087852, -0.004031981807202101, 0.009140141308307648, -0.012516097165644169, -0.014513660222291946, -0.0011323824292048812, -0.0037574090529233217, 0.007360025309026241, 0.008867410942912102, 0.01040059607475996, 0.011697907000780106, 0.027936400845646858, -0.0104448227211833, 0.012619292363524437, 0.009634003974497318, 0.0038108492735773325, 0.03611830249428749, -0.00029553432250395417, -0.00999518670141697, -0.013953457586467266, 0.0032027349807322025, -0.0007255908567458391, -0.0065565770491957664, 0.0013802350731566548, 0.00618065195158124, -0.0067850807681679726, -0.013548048213124275, -0.01615741103887558, -0.008454631082713604, 0.03493892773985863, 0.02905680425465107, -0.001512914546765387, 0.011911667883396149, -0.020285217091441154, 0.01763162761926651, 0.0054140593856573105, 0.00017840322107076645, 0.0033427856396883726, 0.008697876706719398, -0.021081294864416122, 0.015066491439938545, -0.003943528980016708, 0.02374962531030178, 0.012199140153825283, 0.004422649275511503, 0.00032478829962201416, -0.005122901871800423, 0.001761688501574099, -0.0035805029328912497, 0.0019901921041309834, -0.016614418476819992, -0.00026121269911527634, -0.008403033018112183, 0.005930035375058651, 0.005922664422541857, 0.020240990445017815, -0.0011922725243493915, -0.004665894899517298, 0.0037223962135612965, -0.01593627966940403, 0.0018464559689164162, -0.017027199268341064, -0.014742163941264153, -0.02696341648697853, 0.023557977750897408, 0.010223690420389175, 0.019356461241841316, 0.0019035818986594677, 0.006475495174527168, 0.010724923573434353, -0.007562729995697737, -0.03585294261574745, -0.025371262803673744, 0.010931313969194889, -0.012722487561404705, -0.00046668160939589143, -0.01945965550839901, -0.0012613764265552163, 0.002907891757786274, 0.024339312687516212, 0.0007541538216173649, 0.018693063408136368, -0.01919429749250412, 0.008823185227811337, 0.01155785657465458, 0.01807389222085476, 0.025784043595194817, 0.0012512411922216415, -0.014314641244709492, -0.0013120525982230902, -0.008380919694900513, -0.016127927228808403, -0.004109377972781658, -0.008218755945563316, -0.005775242578238249, -0.011823215521872044, 0.0015221283538267016, -0.022570252418518066, 0.004787517711520195, 0.0008435281924903393, 0.011292497627437115, -0.0015497698914259672, -0.014742163941264153, -0.03594139590859413, -0.005583594553172588, 0.003549175802618265, -0.013120525516569614, 0.002907891757786274, -0.03585294261574745, -0.013555419631302357, -0.0037518807221204042, -0.016924003139138222, 0.024471990764141083, 0.029130514711141586, -0.0048943981528282166, -0.0008969685295596719, -0.015302365645766258, -0.003296716371551156, -0.022157471626996994, 0.004190459847450256, -0.020904388278722763, 0.002054688986390829, -0.005023392383009195, -0.00031879928428679705, 0.0003929708036594093, -0.013223720714449883, -0.029218968003988266, -0.007968139834702015, 0.010901830159127712, -0.012000121176242828, 0.004780146759003401, 0.009884621016681194, -0.00449635973200202, 0.021538300439715385, -0.014653710648417473, 0.0132974311709404, -0.032698117196559906, 0.0007315798429772258, -0.025636622682213783, 0.017793791368603706, 0.018014924600720406, 0.0013710212660953403, 0.006847735028713942, -0.0007965375552885234, -0.007953396998345852, -0.006243306212127209, -0.007076238747686148, -0.014115621335804462, -0.010304772295057774, -0.004629039205610752, 0.01524339709430933, -0.0020381042268127203, 0.006129054352641106, -0.007747007068246603, 0.014027168974280357, 0.00914751272648573, 0.0008891367469914258, -0.0005021549295634031, -0.0009877249831333756, -0.009678230620920658, 0.0015460844151675701, 0.017867501825094223, -0.019887179136276245, -0.011439918540418148, -0.0015276566846296191, 0.01379129383713007, 0.001531342277303338, -0.01923852413892746, -0.01856038346886635, 0.0019164812983945012, 0.0011480459943413734, 0.0061106267385184765, -0.008602051995694637, 0.016924003139138222, -0.013872375711798668, -0.004765404388308525, 0.008403033018112183, -0.025238584727048874, 0.014638968743383884, -0.004839115310460329, 0.020240990445017815, 0.00011252416879869998, -0.011970636434853077, 0.00852834153920412, -0.017572658136487007, 0.006427583284676075, -0.014867471531033516, -0.023557977750897408, -0.015656176954507828, 0.000992331886664033, 0.003508634865283966, 0.016629161313176155, -0.006018488202244043, 0.014469433575868607, 0.015552982687950134, -0.0003508174268063158, -1.1877231145263067e-06, -0.013548048213124275, -0.006018488202244043, 0.0031437664292752743, 0.007437421474605799, 0.007227345835417509, -0.013511192984879017, -0.0033980687148869038, 0.012729858048260212, -0.009884621016681194, -0.017425237223505974, -0.005130272824317217, 0.0004687547334469855, -0.005642563104629517, -0.0037463523913174868, -1.734795660013333e-05, -0.002281349850818515, 0.010710181668400764, -0.017174620181322098, -0.011145075783133507, -0.003928786609321833, -0.014034539461135864, -0.010776521638035774, -0.010783893056213856, -0.005461971741169691, 0.01062172930687666, 0.0021597270388156176, -0.008837927132844925, -0.008543083444237709, -0.03263914957642555, -0.01037848275154829, -0.018088635057210922, -0.013267947360873222, 0.005918978713452816, 0.019430171698331833, -0.003578660311177373, 0.016231121495366096, 0.015567724592983723, 0.015508756041526794, -0.0060995700769126415, -0.0067445398308336735, -0.0017275973223149776, 0.013186865486204624, 0.014594742096960545, 0.007946026511490345, 0.0013719425769522786, -0.02789217419922352, 0.009051688015460968, -0.0027752122841775417, 0.014380980283021927, 0.007864944636821747, 0.0026351618580520153, 0.009921476244926453, -0.00955292209982872, 0.011675793677568436, -0.009744570590555668, 0.0038440192583948374, 0.002124714432284236, -0.013732325285673141, -0.008137674070894718, 0.00823349878191948, 0.015508756041526794, 0.0005919900140725076, -0.009243336506187916, 0.013607016764581203, -0.0018888397607952356, 0.0004604622663464397, 0.0022463372442871332, -0.014889584854245186, 0.005609393119812012, -0.01571514643728733, -0.013850262388586998, -0.03210843354463577, -0.02267344668507576, 0.007606956642121077, 0.018236055970191956, -0.0023956014774739742, 0.018177088350057602, 0.0015000151470303535, -0.0034367667976766825, 0.015435045585036278, -0.017557917162775993, -0.01142517663538456, -0.00048050240729935467, 0.006527092773467302, -0.0071683768182992935, 0.023852821439504623, 0.019842952489852905, 0.00013763191236648709, 0.023469524458050728, -0.012265480123460293, 0.007238402497023344, 0.007901799865067005, -0.012884651310741901, 0.015995247289538383, -0.015597209334373474, -0.0009775897487998009, 8.453709597233683e-05, -0.00857256818562746, -0.0038919311482459307, 0.01754317432641983, -0.005082360934466124, -0.002231595106422901, 0.00905905943363905, -0.031076481565833092, -0.01915007084608078, -0.01807389222085476, 0.017646370455622673, 0.019872436299920082, -0.0006039679865352809, 0.03776942193508148, 0.012066461145877838, -0.0287029929459095, 0.006903017871081829, -0.008882153779268265, -0.041897229850292206, 0.0018833114299923182, 0.009383386932313442, 0.003917729947715998, 0.00863890815526247, 0.03493892773985863, 0.007879686541855335, -0.012272851541638374, -0.01945965550839901, 0.0036523710004985332, 0.02892412431538105, -0.005506197921931744, 0.022437572479248047, -0.00716469157487154, -0.0029355334118008614, -0.025341778993606567, -0.0021707837004214525, 0.015729889273643494, 0.0032211628276854753, -0.001347986632026732, -0.025032194331288338, 0.018722547218203545, -0.003954585175961256, 0.024928998202085495, 0.0008264825446531177, 0.0042825983837246895, -0.0021191861014813185, -0.00692881690338254, -0.011410434730350971, -0.013164752162992954, -0.0004226854653097689, -0.002073116833344102, 0.007127835880964994, 0.0051560718566179276, -0.00037891967804171145, 0.008786329068243504, -0.0019975630566477776, 0.0004892555298283696, 0.017174620181322098, -0.010850232094526291, -0.005148700438439846, -0.006280161906033754, 0.0008965078159235418, 0.019798725843429565, 0.0057383873499929905, -0.005535682197660208, 0.02124345861375332, 0.0227176733314991, -0.016481738537549973, 0.005616764537990093, 0.005484085064381361, -0.003300401847809553, 0.0068809050135314465, -0.015095975250005722, -0.0028249670285731554, 0.012132800184190273, 0.021759433671832085, -0.011756875552237034, 0.010496420785784721, -0.021007582545280457, 0.00868313480168581, -0.024029726162552834, -0.009339160285890102, 0.01642277091741562, -0.014248301275074482, -0.011579969897866249, -0.0005919900140725076, 0.027965884655714035, 0.005797355901449919, 0.0032027349807322025, -0.0020159909036010504, 0.0162900909781456, 0.005572537891566753, 0.020462123677134514, -0.005826840177178383, -0.014978038147091866, 0.03352367877960205, 0.007584843318909407, 0.033759552985429764, 0.001537791918963194, 0.006501294206827879, -0.007820717990398407, -0.004879656247794628, -0.0012650619028136134, -0.002351375063881278, 0.01189692597836256, -0.005174499470740557, -0.0004860307089984417, 0.007032012101262808, 0.02798062562942505, 0.0006357558304443955, 0.010850232094526291, -0.0067961374297738075, 0.01381340716034174, -0.007197861559689045, -0.014336753636598587, -0.002926319371908903, 0.02119923196732998, 0.012022234499454498, 0.004455818794667721, -0.022953549399971962, -0.010592244565486908, 0.021302426233887672, 0.015228655189275742, 0.009538180194795132, 0.025680849328637123, 0.015169686637818813, 0.004135177005082369, 0.014712679199874401, -0.017690597102046013, 0.008093447424471378, -0.011889554560184479, 0.00905905943363905, -0.009626632556319237, -0.00599268963560462, -0.016658645123243332, 0.0036542138550430536, 0.026358988136053085, -0.005152386147528887, -0.017248330637812614, -0.01780853420495987, 0.004102007020264864, -0.016702871769666672, 0.00019809782679658383, -0.008963235653936863, 0.016363801434636116, -0.015611951239407063, 0.006165910046547651, -0.020344186574220657, -0.004772775340825319, -0.006346501410007477, 0.009501324035227299, 0.015685662627220154, -0.019356461241841316, -0.021228715777397156, -0.020697997882962227, -0.028142789378762245, 0.021980565041303635, 0.004404221195727587, -0.004879656247794628, 0.0038956166245043278, -0.010695439763367176, -0.010518534108996391, -0.002793639898300171, -0.0016326946206390858, -0.010231061838567257, 0.023159939795732498, -0.02018202282488346, 0.007219974417239428, 0.0026830737479031086, -0.031046995893120766, -0.005296122282743454, 0.004164661280810833, -0.011845328845083714, 0.004323139321058989, 0.0056241354905068874, 0.03567603603005409, 0.022599736228585243, -0.006147482432425022, -0.02954329550266266, -0.031754620373249054, -0.0037150252610445023, 0.01379129383713007, -0.0036026162561029196, -0.021405622363090515, -0.0006150246481411159, -0.0035657607950270176, 0.011749504134058952, -0.013098412193357944, -0.005646248813718557, 0.013717583380639553, -0.00026973552303388715, 0.0031953640282154083, -0.010990282520651817, -0.00449635973200202, -0.0023237336426973343, 0.011012395843863487, -0.02097809873521328, 0.0032137916423380375, -0.028363922610878944, 0.002113657770678401, -0.0019109529675915837, 0.018221314996480942, 0.006106941495090723, 0.00016066654643509537, 0.005251895636320114, -0.009692972525954247, -0.0022260667756199837, -0.007489019073545933, 0.01941542886197567, 0.014572628773748875, 0.035911910235881805, -0.010761779733002186, -0.02258499525487423, -0.010997653938829899, 0.014086137525737286, 0.0012070146622136235, 0.00400618277490139, 0.02192159742116928, -0.010850232094526291, 0.010525904595851898, 0.0033243577927351, 0.0001567506551509723, 0.00914751272648573, 0.01611318439245224, -0.009176996536552906, -0.01767585426568985, -0.008764216676354408, 0.0012070146622136235, 0.005598336458206177, -0.006328073795884848, -0.007039383053779602, -0.002533809281885624, 0.014690565876662731, -0.02146458998322487, 0.020462123677134514, 0.01789698749780655, 0.018855227157473564, 0.0031216531060636044, 0.0040725227445364, 0.021449847146868706, 0.0012401845306158066, -0.03832962363958359, -0.011122962459921837, -0.019783983007073402, 0.004975480027496815, 0.015272881835699081, -0.0032432759180665016, -0.02003460004925728, 0.005701531656086445, -0.0016179524827748537, 0.01202960591763258, 0.011056622490286827, 0.00620276527479291, 0.004183088894933462, -0.011167189106345177, 0.019695529714226723, 0.009737199172377586, -0.0027604701463133097, -0.003501263912767172, -0.029071547091007233, -0.01387974712997675, 0.0012567694066092372, -0.00011304244981147349, 0.02522384189069271, -0.008867410942912102, 0.011476774699985981, -0.018103376030921936, 0.01696822978556156, 0.0019256951054558158, 0.00227029318921268, -0.01968078874051571, -0.0132974311709404, 0.005226097069680691, -0.006873533595353365, 0.0029797598253935575, 0.00908117275685072, -0.01200749259442091, -0.010260545648634434, 0.008705247193574905, -0.006210136227309704, 0.004746976774185896, 0.015641435980796814, -0.018059151247143745, 0.012958361767232418, 0.04136651009321213, -0.011904297396540642, -0.031312353909015656, -0.003022143617272377, 0.019430171698331833, 0.011373579502105713, 0.0170124564319849, -0.029440101236104965, 0.018368735909461975, 0.021538300439715385, 0.018280282616615295, -0.008108190260827541, 0.007308427710086107, -0.0037850504741072655, -0.00667451461777091, -0.008226127363741398, -0.016437511891126633, -0.007820717990398407, -0.005473028402775526, 0.019091101363301277, 0.014041910879313946, -0.006939873564988375, 0.02311571314930916, 0.0188404843211174, 0.008852669037878513, -8.315501327160746e-05, -0.0025522371288388968, 0.014049282297492027, 0.012670889496803284, 0.0016271662898361683, -0.010356370359659195, 0.005874752067029476, 0.00024071188818197697, -0.002296091988682747, -0.006534464191645384, 0.0024951111990958452, -0.012184398248791695, 0.0061106267385184765, 0.007562729995697737, -0.008579939603805542, -0.010061526671051979, 0.0025632937904447317, -0.0003383787116035819, -0.0019533366430550814, 0.017970697954297066, 0.01155785657465458, -0.02013779617846012, -0.0049791657365858555, -0.020462123677134514, -0.008904267102479935, -0.009862507693469524, -0.0031861502211540937, 0.0031253385823220015, 0.002659117802977562, -0.004194145556539297, 0.013356400653719902, 0.02102232538163662, 0.008882153779268265, 0.01482324581593275, -0.0190616175532341, 0.00950869545340538, 0.008336693048477173, 0.0066818855702877045, 0.01807389222085476, 0.00022170832380652428, -0.0051044742576777935, -0.006353872362524271, -0.004809631034731865, 0.002179997507482767, -0.002469312399625778, 0.00449635973200202, -0.021494073793292046, -0.003103225491940975, -0.007411622907966375, 0.016142668202519417, -0.006777709815651178, 0.010673326440155506, 0.001007074024528265, 0.0007145342533476651, -0.0051155309192836285, 0.022688189521431923, -0.007197861559689045, 0.008727360516786575, 0.0032322192564606667, 0.008262982591986656, 0.002332947449758649, 0.010083639994263649, 0.051450151950120926, 0.007043068762868643, 0.03933209180831909, 0.009213852696120739, 0.011867441236972809, -0.01200749259442091, 0.02606414444744587, -0.0018132861005142331, 0.007923913188278675, -0.0014309112448245287, -0.01714513637125492, 0.022614479064941406, 0.0032469616271555424, -0.0038477047346532345, -0.01749894767999649, -0.0073784529231488705, -0.01825079880654812, -0.012206511572003365, 0.015317107550799847, -0.010776521638035774, -0.010629099793732166, 0.015567724592983723, -0.015818340703845024, -0.003223005449399352, 0.006490237545222044, -0.0005449993768706918, -0.013046815060079098, 0.007769120391458273, 0.011572598479688168, 0.0021486703772097826, -0.024693123996257782, 0.008004995062947273, -0.021980565041303635, 0.00615853862836957, -0.007643811870366335, -0.021479332819581032, 0.005347719881683588, -0.00620645098388195, -0.005049190949648619, 0.004400535952299833, 0.002548551419749856, -0.015390818938612938, -0.006339130457490683, -0.016924003139138222, -0.025725075975060463, -0.024029726162552834, -0.013481708243489265, -0.015656176954507828, 0.00029645569156855345, 0.013046815060079098, -0.01198537927120924, 0.004934939090162516, 0.01374706719070673, 0.025430232286453247, 0.012803569436073303, 0.010474307462573051, -0.010201577097177505, 0.008543083444237709, 0.012663518078625202, -0.008727360516786575, -0.01710090972483158, -0.00908117275685072, -0.011616825126111507, -0.004455818794667721, -0.014963296242058277, 0.006353872362524271, 0.028555570170283318, 0.01897316426038742, -0.018604610115289688, 0.016363801434636116, 0.0181181188672781, -0.021906854584813118, 0.006873533595353365, 0.021685723215341568, -0.019754499197006226, -0.004164661280810833, 0.0034607229754328728, -0.008889524266123772, 0.0018759403610602021, 0.007864944636821747, 0.0018796258373185992, -0.010223690420389175, 0.0266538318246603, -0.004127805586904287, 0.011521000415086746, -0.007879686541855335, -0.013378513045608997, -0.003772151190787554, 0.0034459808375686407, -0.016761839389801025, -0.01004678476601839, -0.014034539461135864, -0.005170813761651516, 0.007146263960748911, 0.01749894767999649, 0.0005270323599688709, -0.009228594601154327, -0.02861453965306282, -0.005170813761651516, 0.00011851317685795948, -0.007009898778051138, -0.00162624497897923, 0.002369802910834551, 0.008719990029931068, -0.012331820093095303, 0.02601991966366768, 0.0062469919212162495, -0.008152416907250881, -0.025032194331288338, -0.0042825983837246895, -0.004124120343476534, 0.011410434730350971, -0.006663457956165075, -0.00950869545340538, -0.013083670288324356, -0.0021634125150740147, -0.007835459895431995, 0.008270354010164738, 0.040511466562747955, -0.0011950366897508502, 0.009029575623571873, -0.007923913188278675, 0.0068845902569592, -0.0016465154476463795, -0.01870780624449253, -0.003742666682228446, -0.003475465113297105, 0.016761839389801025, 0.006737168878316879, -0.00019210882601328194, -0.006663457956165075, -0.0018556698923930526, 0.006523407530039549, 0.00620276527479291, -0.05112582445144653, 0.009818281047046185, -0.012862537987530231, -0.024530960246920586, 0.009353903122246265, 0.006280161906033754, 3.688420110847801e-05, -0.006700313184410334, -0.020196763798594475, 0.0036781697999686003, -0.005966890603303909, 0.005016020964831114, 0.007901799865067005, -0.01515494380146265, 0.023985499516129494, 0.019002648070454597, 0.04174980893731117, 0.0010448507964611053, 0.017970697954297066, -0.011837957426905632, -0.028290212154388428, -0.012287593446671963, 0.017469463869929314, -0.004422649275511503, -0.021213972941040993, -0.0033833265770226717, -0.00498653668910265, 0.015435045585036278, 0.007710151374340057, -0.002568822121247649, -0.006788766477257013, -0.017439980059862137, -0.010459564626216888, -0.008425146341323853, -0.0005155150429345667, 0.011454661376774311, -0.013540676794946194, 0.003138238098472357, 0.0009840393904596567, -0.002944747218862176, 0.0010503791272640228, 0.01330480258911848, -0.012862537987530231, -0.01802966557443142, -0.00028263492276892066, -0.010747036896646023, 0.021936340257525444, 0.0008449102751910686, -0.02231963537633419, 0.023499008268117905, 0.0002805617987178266, 0.005391946528106928, -0.020904388278722763, 0.012368675321340561, 0.01567091979086399, -0.00801236554980278, -0.0038366480730473995, 0.0063612437807023525, 0.007536930963397026, 0.005063933320343494, -0.011867441236972809, 0.011226157657802105, 0.011734762229025364, 0.008557826280593872, -0.01683555170893669, -0.012530839070677757, -0.0024342997930943966, 0.026078887283802032, -0.018147602677345276, 0.014204074628651142, 0.001856591203249991, 0.028187016025185585, -0.01042270939797163, -0.010415338911116123, -0.02178891748189926, -0.005001279059797525, 0.012936248444020748, -0.0008172686793841422, 0.005506197921931744, 0.019135328009724617, -0.004183088894933462, -0.0056130788289010525, 0.0032395904418081045, 0.0014438106445595622, 0.00948658213019371, -0.0011895083589479327, -0.009309676475822926, -0.024707866832613945, -0.0010540647199377418, -0.0053624617867171764, -0.0027641556225717068, -0.03440820798277855, -0.02834917977452278, -0.004640095867216587, -0.002425085986033082, 0.018427705392241478, -0.0042310007847845554, -0.005473028402775526, 0.003414653707295656, -0.0037739938125014305, -0.013164752162992954, -0.010113123804330826, -0.016820808872580528, -0.0014447320718318224, 0.003103225491940975, -0.016850292682647705, -0.02150881662964821, 0.0015497698914259672, -0.0039029878098517656, 0.005834211129695177, -0.0027162437327206135, 0.007157320622354746, -0.019385945051908493, -0.005834211129695177, 0.013208978809416294, -0.01851615682244301, 0.006446010898798704, 0.05183344706892967, 0.00015030096983537078, -0.027464650571346283, -0.02307148650288582, -0.005878437776118517, -0.010769150219857693, 0.009353903122246265, -0.003003715770319104, -0.011218786239624023, -0.014860101044178009, -0.0007960768416523933, -0.024206632748246193, 0.010319514200091362, 0.006792451720684767, 0.03841807693243027, 0.024884771555662155, 0.024265600368380547, 0.004640095867216587, -0.021774176508188248, 0.007448478136211634, 0.016437511891126633, 0.007923913188278675, -0.011867441236972809, 0.013444853015244007, 0.010525904595851898, 0.028776703402400017, 0.006401784718036652, -0.0009656117181293666, 0.020742224529385567, 0.00034920498728752136, -0.015906793996691704, 0.007887057960033417, 0.008756845258176327, 0.005314549896866083, -0.0037408240605145693, 0.0038550756871700287, 0.00866102147847414, 0.007887057960033417, -0.008292467333376408, -0.012523467652499676, -8.724366489332169e-05, 0.022997776046395302, -0.004164661280810833, 0.021435106173157692, 0.0039029878098517656, -0.03709128499031067, 0.01798543892800808, 0.011263012886047363, 0.021346652880311012, -0.014535773545503616, 0.027641557157039642, -0.026683315634727478, 0.01470530778169632, -0.00022274487128015608, 0.0044816178269684315, 0.005270323716104031, -0.002603834727779031, -0.016865035519003868, -0.0038550756871700287, 0.014675823971629143, 0.0005892258486710489, -0.013444853015244007, 0.013091041706502438, 0.005130272824317217, 0.009479211643338203, -0.025430232286453247, 0.01481587439775467, -0.010459564626216888, -0.0020417897030711174, -0.008137674070894718, 0.017469463869929314, 0.009744570590555668, -0.006261733826249838, -0.015729889273643494, 0.021405622363090515, 0.003925100900232792, -0.002362431725487113, -0.020919129252433777, -0.009980444796383381, 0.00451847305521369, -0.008108190260827541, 0.01749894767999649, 0.007776491343975067, -0.024516217410564423, 0.011793730780482292, -0.004536900669336319, 0.0050528766587376595, -0.008344064466655254, 0.006346501410007477, 0.001146203256212175, 0.000633452320471406, -0.014955924823880196, -0.02392653189599514, -0.011602082289755344, 0.004942310508340597, 0.009980444796383381, -0.013238462619483471, -0.03735664114356041, 0.010503791272640228, 0.0055283112451434135, 0.0025835642591118813, -0.011122962459921837, -0.02236386202275753], "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8": [-0.02989140711724758, 0.0009827669709920883, -0.010142223909497261, 0.0014415653422474861, -0.017003344371914864, -0.006145117338746786, 0.011796679347753525, 0.02230038121342659, -0.034757450222969055, 0.020632022991776466, 0.015334987081587315, 0.002339176367968321, 0.023259686306118965, -0.017698494717478752, -0.020048098638653755, 0.013360763899981976, -0.0073963855393230915, 0.029112841933965683, 0.05438845977187157, -0.03306128829717636, 0.04790966957807541, -0.02040957473218441, -0.03631458431482315, 0.03561943769454956, 0.01850486733019352, -0.013020141050219536, -0.005780164152383804, 0.027653027325868607, -0.03748243674635887, -0.010455041192471981, 0.009342802688479424, -0.006426652893424034, 0.010260399430990219, 0.004532371647655964, -0.00019909502589143813, -0.017615076154470444, -0.015321084298193455, 0.005644610151648521, -0.05210836976766586, -0.05049562454223633, -0.034090109169483185, 0.01971442624926567, 0.014556420966982841, -0.014347875490784645, -0.05661293491721153, 0.013645775616168976, -0.006805508863180876, -0.009321948513388634, 0.020771052688360214, 0.054471876472234726, 0.041820164769887924, 0.004678352735936642, -0.0007038383628241718, 0.0013555405894294381, 0.02549806609749794, -0.03531356900930405, 0.04568519443273544, 0.031087065115571022, -0.005091966595500708, -0.05347086116671562, -0.005825348664075136, 0.003274151822552085, -0.027639124542474747, -0.0017370035639032722, -0.0018195526208728552, 0.016294293105602264, 0.024747304618358612, -0.02164694108068943, -0.048799462616443634, -0.02236989513039589, 0.01967271789908409, 0.03826100379228592, -0.0329778678715229, -0.0050989179871976376, 0.014028106816112995, -0.05169128254055977, 0.020812761038541794, 0.047520387917757034, 0.006593488622456789, -0.004866043105721474, -0.02228647843003273, -0.006909781135618687, 0.008473866619169712, -0.022175254300236702, 0.091815285384655, 0.006871548015624285, 0.0011826222762465477, -0.05238642916083336, 0.0026137602981179953, -0.009822455234825611, -0.017058957368135452, 0.0025094880256801844, -0.020715441554784775, -0.017378725111484528, -0.026499081403017044, 0.006398846860975027, 0.01144215278327465, -0.010413331910967827, 0.031559765338897705, 0.010364672169089317, -0.0028535868041217327, -0.01408371888101101, 0.0036391052417457104, -0.009203772991895676, 0.010420284233987331, 0.025150490924715996, -0.0022296905517578125, 0.016433322802186012, -0.01851877011358738, 0.027166424319148064, 0.003566114464774728, -0.042404089123010635, 0.04902191087603569, 0.02927967719733715, -0.023245783522725105, -0.03172660246491432, -0.015738174319267273, 0.006958441808819771, 0.0072365012019872665, -0.019283434376120567, -0.007083568722009659, -0.024594372138381004, -0.007139180321246386, 0.004004058428108692, -0.024483148008584976, 0.0008676328579895198, -0.0023461279924958944, 0.007417240180075169, 0.019519785419106483, 0.0011348307598382235, -0.012039980851113796, 0.009739037603139877, 0.03637019544839859, 0.052052758634090424, 0.03186563029885292, -6.039107029209845e-05, 0.024358021095395088, 0.046241313219070435, -0.03873370215296745, 0.025734417140483856, -0.0471867173910141, -0.030419720336794853, -0.03459061682224274, 0.006517021916806698, -0.0013685746816918254, -0.01145605556666851, -0.03511893004179001, 0.02619321458041668, -0.01600233092904091, 0.02346823178231716, -0.08102656900882721, -0.018741218373179436, -0.0037329501938074827, 0.022564537823200226, 0.027764251455664635, -0.04701988026499748, -0.018268516287207603, 0.03637019544839859, 0.006301525980234146, 0.02609589509665966, 0.005470823030918837, -0.053915757685899734, 0.0052657537162303925, 0.05588998273015022, 0.04156991094350815, 0.008313982747495174, 0.013882125727832317, -0.001542361918836832, -0.010385526344180107, 0.016808703541755676, -0.004713110160082579, -0.0124014588072896, -0.002203622367233038, -0.011011160910129547, -0.009676474146544933, -0.030197273939847946, 0.03253297507762909, -0.010872130282223225, -0.004139612428843975, -0.0007542367093265057, -0.0432104617357254, 0.013263443484902382, 0.02220305986702442, 0.005307462997734547, 0.021257657557725906, 0.051997147500514984, -0.030141660943627357, 0.02737496793270111, 0.010197835974395275, 0.003722523106262088, -0.005721076391637325, 0.00040666217682883143, -0.0027823338750749826, 0.003687765449285507, 0.015626950189471245, -0.042988017201423645, 0.02800060249865055, 0.018810732290148735, 0.005456919781863689, 0.007688348181545734, -0.01470935344696045, -0.025609290227293968, -0.018032165244221687, 0.034062303602695465, -0.017337016761302948, 0.010441138409078121, -0.005025927443057299, -0.030364109203219414, 0.0012156418524682522, -0.034674033522605896, 0.03317251056432724, -0.04326607659459114, 0.013193928636610508, -0.0013329482171684504, -0.00344098755158484, 0.007757863029837608, -0.02930748276412487, 0.016294293105602264, -0.012373652309179306, -0.031531959772109985, -0.003781610634177923, 0.02866794541478157, 0.034729644656181335, -0.0016805228078737855, -0.06050577014684677, 0.011386540718376637, -0.04143088310956955, 0.014653741382062435, -0.05096832662820816, 0.008543381467461586, -0.02734716236591339, -0.004501089919358492, -0.0035174540244042873, 0.021382784470915794, -0.015835493803024292, 0.07068274915218353, 0.039929360151290894, 0.03525795787572861, -0.018129486590623856, -0.013152219355106354, 0.022036224603652954, 0.025289520621299744, 0.02542855031788349, -0.00030000024707987905, -0.004236933309584856, 0.0015832019271329045, -0.007104422897100449, 0.035925302654504776, -0.016349904239177704, -0.029752377420663834, -0.0248724315315485, 0.043127045035362244, -0.03244955465197563, -0.005926145240664482, -0.0011748018441721797, 0.027041297405958176, -0.011713260784745216, 0.006006087642163038, 0.014486905187368393, -0.011337880976498127, -0.021243754774332047, 0.035925302654504776, 0.024705596268177032, 0.025400744751095772, 0.03714876249432564, 0.0073963855393230915, 0.022703567519783974, 0.0032098505180329084, 0.02366287261247635, 0.034757450222969055, -0.011595085263252258, -0.02034006081521511, 0.0023026810958981514, 0.04326607659459114, -0.00896742194890976, -0.005582046695053577, -0.026540789753198624, -0.003725998802110553, 0.022453313693404198, -0.01730921119451523, -0.051913730800151825, -0.0382331945002079, 0.01908879168331623, 0.007073141168802977, -0.0079594561830163, -0.027792057022452354, -0.041125014424324036, -0.013979447074234486, -0.027680834755301476, 0.018185097724199295, -0.00011513405479490757, 0.013513697311282158, 0.029168453067541122, 0.021925000473856926, 0.03712095692753792, 0.018087778240442276, -0.014160185120999813, -0.005376977846026421, -0.006753372959792614, -0.012464022263884544, 0.029807990416884422, -0.018796829506754875, -0.010176981799304485, -0.02609589509665966, 0.018935859203338623, -0.0049737910740077496, 0.030948033556342125, 0.037287794053554535, -0.02239770069718361, 0.042348477989435196, 0.04143088310956955, -0.07312967628240585, -0.02818134054541588, 0.013152219355106354, -0.0031716173980385065, 0.023357007652521133, 0.011275317519903183, -0.009745988994836807, 0.007222598418593407, -0.017976554110646248, -0.0004505434480961412, 0.0017847950803115964, -0.044962238520383835, -0.02858452871441841, 0.028528915718197823, -0.03648142144083977, 0.061506785452365875, 0.018602188676595688, -0.011066772043704987, -0.027027394622564316, -0.03064216859638691, -0.028973810374736786, 0.017031151801347733, -0.03403449431061745, -0.03186563029885292, -0.035341374576091766, -0.030864616855978966, -0.04254312068223953, 0.009057791903614998, -0.011330928653478622, 0.0018716887570917606, -0.03194905072450638, -0.002963072620332241, -0.006510070525109768, 0.016363808885216713, 0.010691392235457897, 0.020645925775170326, -0.01144910417497158, -0.01586330123245716, 0.0007511954172514379, 0.0007803047774359584, -0.036008719354867935, 0.01968662068247795, -0.009335851296782494, 0.009433172643184662, -0.03428474813699722, -0.004442002158612013, -0.010719197802245617, -0.01143520139157772, 0.004772197920829058, 0.0075215124525129795, 0.0016813917318359017, -0.00896742194890976, 0.0050711119547486305, -0.031587570905685425, 0.017615076154470444, 0.024761207401752472, -0.03834442049264908, -0.0077787176705896854, -0.009711232036352158, -0.04579641669988632, -0.0073616281151771545, 0.02289820834994316, -0.019603202119469643, -0.011004208587110043, -0.028334274888038635, -0.0007155690109357238, -0.01654454693198204, -0.004932082258164883, -0.003336715279147029, 0.014264457859098911, 0.023398716002702713, -0.0038337467703968287, -0.00797335896641016, 0.035925302654504776, 0.008112388662993908, 0.021285463124513626, -0.03231052681803703, 0.010621877387166023, 0.0076813967898488045, -0.026540789753198624, 0.015001315623521805, -0.02346823178231716, 0.012359749525785446, -0.023259686306118965, -0.0035209297202527523, -0.0072712586261332035, -0.04279337450861931, -0.004414196126163006, -0.012345846742391586, 0.0037051443941891193, -0.012172059156000614, 0.0184770617634058, 0.03895615041255951, 0.05035659670829773, -0.023801902309060097, -0.0050433059222996235, -0.01406981609761715, 0.013576260767877102, 0.027041297405958176, -0.002379147568717599, 0.004084000363945961, 0.024385828524827957, 0.005488201510161161, 0.016475031152367592, 0.00020973948994651437, -0.03639800101518631, 0.06512156128883362, -0.002846635179594159, -0.03358960151672363, 0.025915155187249184, 0.02670762501657009, 0.009690376929938793, 0.03714876249432564, -0.02991921454668045, 0.004247360397130251, 0.01600233092904091, 0.023231880739331245, 0.004793052561581135, -0.019950777292251587, 0.00861289631575346, 0.010767858475446701, 0.03066997416317463, 0.024594372138381004, -0.026304438710212708, -0.00891876220703125, 0.01276293583214283, -0.003232443006709218, 0.017642881721258163, 0.003135122125968337, -0.0035417843610048294, 0.012324992567300797, 0.00037820450961589813, -0.02238379791378975, -0.0030934130772948265, -0.031114870682358742, -0.010378574952483177, -0.0011391754960641265, 0.04093037545681, -0.00011198416177649051, 0.02556758187711239, -0.010635780170559883, -0.015529628843069077, 0.009690376929938793, -0.002153224078938365, 0.011706309393048286, -0.017628978937864304, -0.008105437271296978, 0.0321158841252327, -0.04777064174413681, -0.004643595311790705, -0.008863150142133236, 0.012547439895570278, -0.01594671793282032, 0.03122609481215477, -0.018059970811009407, 0.023913126438856125, -0.012929772026836872, -0.0006751634646207094, 0.031476348638534546, 0.025206103920936584, 0.0076744453981518745, -0.0023930505849421024, 0.015098636969923973, 0.006482264492660761, -0.022703567519783974, -0.022119641304016113, 0.02424679696559906, -0.014764965511858463, -0.0009193345904350281, -0.009182918816804886, -0.04351633042097092, 0.004820858594030142, -0.02303723804652691, 0.006245913915336132, -0.02669372223317623, 0.002573789330199361, -0.05419381707906723, 0.00926633644849062, -0.006888926960527897, 0.044962238520383835, 0.013875174336135387, 0.04031864181160927, 0.012484876438975334, -0.006013039033859968, 0.0033036957029253244, -0.010010145604610443, -0.013993349857628345, -0.0022053602151572704, -0.0007538022473454475, 0.019575396552681923, -0.0432104617357254, 0.012304137460887432, 0.016878217458724976, -0.0342569425702095, 0.043099239468574524, -0.025386841967701912, 0.022133544087409973, -0.01277683861553669, -0.0012947150971740484, -0.018685605376958847, 0.01274903304874897, -0.023913126438856125, -0.010809567756950855, 0.013798708096146584, 0.018629994243383408, -0.015418405644595623, 0.012630857527256012, 0.048215534538030624, 0.013916883617639542, 0.0013529338175430894, -0.033422764390707016, -0.009328899905085564, -0.009016082622110844, -0.003437511855736375, -0.01436177920550108, -0.00827227346599102, -0.0008519919938407838, -0.023968737572431564, -0.06567768007516861, 0.016127457842230797, -0.007702250964939594, -0.03378424420952797, -0.007146132178604603, 0.02875136397778988, -0.05016195401549339, -0.03798294439911842, 0.0158493984490633, 0.019978582859039307, -0.007107898592948914, -0.04910532757639885, 0.04468417912721634, 0.008181904442608356, -0.005001597106456757, 0.004410720430314541, 0.046324729919433594, -0.007639687974005938, 0.018755121156573296, -0.0127559844404459, 0.035341374576091766, -0.01837974041700363, 0.012227671220898628, -0.01525156944990158, 0.025094879791140556, 0.006923684384673834, -0.03459061682224274, 0.013583212159574032, -0.012477925047278404, 0.008828392252326012, -0.03317251056432724, -0.01243621576577425, 0.012700372375547886, 0.007347725331783295, 0.006815935950726271, -0.0007286030449904501, -0.00038928346475586295, -0.020006388425827026, 0.011393492110073566, 0.016377711668610573, 0.00019909502589143813, 0.03181001916527748, -0.0028066642116755247, 0.018602188676595688, 0.012623906135559082, 0.020465187728405, 0.02677714079618454, -0.006245913915336132, 0.018935859203338623, -0.05113516375422478, -0.00042186854989267886, -0.004872994497418404, -0.020006388425827026, 0.01111543271690607, 0.0015553958946838975, 0.03258858621120453, -0.01177582424134016, -0.02734716236591339, -0.01559914369136095, 0.012568294070661068, -0.021229851990938187, -0.010051854886114597, 0.012929772026836872, -0.02097959816455841, -0.004720062017440796, -0.02228647843003273, 0.032254915684461594, -0.008995228447020054, 0.030836811289191246, 0.0014728469541296363, -0.004490662831813097, 0.006270244251936674, 0.00041556876385584474, 0.0355360172688961, -0.030920227989554405, -0.02936309389770031, 0.01903318054974079, 0.018755121156573296, 0.008112388662993908, -0.014000301249325275, 0.03820538893342018, 0.015112539753317833, 0.03267200291156769, 0.035980913788080215, -0.034813061356544495, 0.008890955708920956, 0.005595949478447437, -0.015321084298193455, 0.04651937261223793, 0.016975538805127144, -0.0023582931607961655, 0.020604217424988747, 0.0074867550283670425, 0.03556382283568382, 0.020187128335237503, -0.003418395295739174, 0.0007259962731041014, -0.01904708333313465, 0.018268516287207603, -0.01374309603124857, 0.026387857273221016, 0.017573367804288864, 0.002114990958943963, -0.027208132669329643, -0.005436065141111612, 0.01178277563303709, -0.01981174759566784, -0.027110811322927475, 0.0331168994307518, -0.023774096742272377, -0.014751061797142029, -0.012498779222369194, 0.013478939421474934, 0.00927328784018755, 0.02989140711724758, -0.014778868295252323, 0.034813061356544495, 0.00956525094807148, 0.030280690640211105, 0.018727313727140427, 0.001584939775057137, -0.025122685357928276, -0.002808402059599757, -0.03055875189602375, 0.013513697311282158, -0.00687502371147275, -0.021494008600711823, -0.021535716950893402, -0.003997107036411762, 0.013451133854687214, 0.02793108858168125, 0.05750272795557976, -0.0319768562912941, 0.024052156135439873, 0.017587270587682724, -0.007139180321246386, 0.003345404751598835, 0.013256492093205452, 0.0025842164177447557, 0.027736445888876915, 0.0027701689396053553, -0.0017465619603171945, -0.031003646552562714, -0.005370025988668203, -0.006284147035330534, -0.013131365180015564, -0.004389866255223751, 0.006325856316834688, 0.015738174319267273, 0.005839251913130283, -0.01666967384517193, 0.014751061797142029, -0.04396122321486473, -0.06428737938404083, -0.02174426056444645, -0.02484462596476078, -0.011184947565197945, -0.00015977566363289952, -0.0030829859897494316, -0.016780897974967957, -0.03712095692753792, -0.04201480746269226, 0.0032498217187821865, -0.021883292123675346, 0.01589110679924488, 0.0006312822224572301, 0.018059970811009407, 0.0287791695445776, -0.030419720336794853, 0.02049299329519272, -0.03403449431061745, -0.042320672422647476, 0.006805508863180876, 0.00794555339962244, -0.01785142719745636, 0.013882125727832317, 0.018296321853995323, -0.021535716950893402, -0.022606246173381805, 0.002005504909902811, 0.010580168105661869, 0.021452298387885094, 0.00603041797876358, -0.016238681972026825, 0.03361740708351135, 0.008042873814702034, 0.03066997416317463, -0.009878067299723625, 0.037899523973464966, 0.004063146188855171, 0.01238755602389574, 0.011171044781804085, 0.030920227989554405, 0.00793165061622858, -0.008508623577654362, -0.036008719354867935, -0.000969732878729701, 0.018671702593564987, -0.005665464326739311, -0.0013763951137661934, -0.00038146303268149495, 0.027917183935642242, -0.03239394351840019, 0.021341074258089066, 0.023343104869127274, 0.0268605574965477, -0.009502687491476536, 0.010740051977336407, -0.009155112318694592, 0.03436816856265068, -0.01907488889992237, -0.027639124542474747, 0.006416225340217352, 0.035369183868169785, -0.028890393674373627, -0.017948748543858528, -0.022717470303177834, 0.010461992584168911, -0.01908879168331623, -0.0015840708510950208, 0.00032150643528439105, 0.04777064174413681, -0.0018490963848307729, 0.007229549810290337, 0.021410590037703514, 0.0026068089064210653, -0.008487769402563572, 0.028501110151410103, -0.02220305986702442, 0.02038176916539669, 0.02235599234700203, 0.006954966112971306, 0.018727313727140427, -0.027653027325868607, 0.012033029459416866, 0.017503852024674416, -0.005776688456535339, -0.002153224078938365, 0.018908053636550903, 0.01842144876718521, 0.01856047846376896, 0.01988126151263714, 0.014264457859098911, 0.028528915718197823, 0.021396687254309654, -0.023927029222249985, 0.009099500253796577, -0.004765246529132128, 0.0011374375317245722, -0.008543381467461586, -0.002055903198197484, -0.008411303162574768, -0.04479540139436722, -0.007073141168802977, -0.024580469354987144, 0.010899936780333519, -0.026360051706433296, 0.03381204977631569, 0.0013207831652835011, -0.011664601042866707, 0.007083568722009659, 0.001390298013575375, -0.004459381103515625, 0.009690376929938793, 0.039150793105363846, -0.012554391287267208, -0.009551347233355045, -0.01338161900639534, -0.022703567519783974, 0.011532522737979889, -0.014848383143544197, 0.030725587159395218, -0.011956563219428062, 0.015446211211383343, 0.015668658539652824, -0.00278059602715075, 0.00703143235296011, 0.015515726059675217, 0.009155112318694592, 0.002928315196186304, -0.00286575173959136, -0.010517604649066925, 0.00351224048063159, -0.011212754063308239, 0.03870589658617973, -0.02303723804652691, -0.012804645113646984, 0.008849247358739376, 0.021952806040644646, 0.04190358147025108, -0.036620449274778366, -0.03523015230894089, 0.023287491872906685, 0.012540488503873348, -0.002386098960414529, 0.004581031855195761, -0.00037320813862606883, 0.010705295018851757, 0.0050398302264511585, 0.034201331436634064, 0.010816519148647785, 0.003632153617218137, -0.019283434376120567, -0.027736445888876915, 0.02997482568025589, -0.004866043105721474, 0.009335851296782494, -0.003150762990117073, 0.005529910326004028, -0.029613347724080086, -0.005623755510896444, -0.02687446027994156, -0.053248416632413864, -0.013152219355106354, 0.010128321126103401, 0.005303986836224794, -0.008112388662993908, 0.0020889227744191885, -0.0028796547558158636, 0.014306167140603065, 0.04565738886594772, 0.005891387816518545, -0.008675459772348404, 0.01142129860818386, 0.018226807937026024, 0.005620279815047979, 0.029585542157292366, -0.038594674319028854, 0.01836583763360977, 0.01371529046446085, -0.002651993418112397, 0.009002179838716984, 0.018824635073542595, -0.04159771651029587, -0.02748619206249714, 0.0020611167419701815, 0.016238681972026825, 0.0032307051587849855, 0.0028066642116755247, 0.0017005082918331027, -0.006708187982439995, -0.015821591019630432, 0.008091534487903118, -0.01651674136519432, 0.005370025988668203, -0.010872130282223225, -0.02225867100059986, 0.011198850348591805, 7.548883877461776e-05, -0.04329388216137886, -0.034145720303058624, 0.0015162938507273793, 0.026596400886774063, -0.00588791212067008, 0.005046782083809376, 0.000841130327899009, 0.018324127420783043, 0.01648893393576145, -0.03253297507762909, -0.0033540939912199974, 0.00929414201527834, 0.012318040244281292, -0.009023034013807774, -0.02296772412955761, 0.002068068366497755, 0.00198638834990561, 0.0053178900852799416, -0.03186563029885292, -0.02230038121342659, 0.004528895951807499, -0.006402322556823492, 0.009815503843128681, -0.02797279693186283, -0.018073875457048416, 0.00494598550722003, 0.012637808918952942, -0.04707549139857292, 0.02684665471315384, 0.01021869108080864, 0.006621294654905796, 0.012874159961938858, 0.004681828431785107, 0.009050840511918068, -0.014347875490784645, -0.014876188710331917, 0.042988017201423645, 0.011094578541815281, 0.00431339954957366, -0.0027858098037540913, 0.023162364959716797, -0.018157292157411575, 0.05185811594128609, -0.030336303636431694, -0.020465187728405, -0.003625202225521207, -0.008112388662993908, -0.009982340037822723, -0.02355164848268032, -0.009850261732935905, 0.004584508016705513, 0.02049299329519272, -0.017378725111484528, 0.0036460566334426403, 0.004243884701281786, 0.00046270855818875134, 0.021494008600711823, -0.006179874762892723, -0.013326006941497326, -0.021396687254309654, -0.004004058428108692, 0.029112841933965683, -0.007737008389085531, -0.024552663788199425, 0.012804645113646984, 0.015390599146485329, -0.007139180321246386, -0.004841712769120932, -0.023384813219308853, 0.007326870691031218, -0.010760907083749771, -0.005029403138905764, 0.013812610879540443, 0.028918199241161346, 0.021160336211323738, 0.0012408409966155887, 0.020604217424988747, 0.02666591666638851, -0.0011661124881356955, -0.001627517631277442, 0.010517604649066925, -0.006391895469278097, 0.008223612792789936, -0.026568595319986343, 0.008154097944498062, 0.00928023923188448, 0.006993199232965708, -0.0034740071278065443, -0.0422094501554966, 0.014459099620580673, 0.007055762689560652, -0.0027093433309346437, 0.006099932827055454, -0.029835795983672142, -0.013590163551270962, 0.00763273611664772, -0.0075910273008048534, -0.012623906135559082, -0.01341637596487999, -0.011622891761362553, -0.019964680075645447, 0.018949761986732483, 0.03637019544839859, -0.00961391068994999, 0.00375380483455956, -0.00957915373146534, -0.02350994013249874, -0.004021436907351017, -0.030225079506635666, 0.0020767576061189175, -0.01778191141784191, -0.008195807226002216, -0.0075215124525129795, -0.025831738486886024, 0.026346147060394287, 0.00359044480137527, 0.017489949241280556, 0.018866345286369324, 0.0075215124525129795, -0.022800887003540993, -0.014333972707390785, -0.036064330488443375, 0.001814338960684836, -0.017337016761302948, -0.03881712257862091, 0.015821591019630432, 0.009474880993366241, 0.019561493769288063, 0.014917897991836071, 0.02428850717842579, 0.022467216476798058, 0.009023034013807774, -0.02936309389770031, -0.022592343389987946, 0.003122956957668066, -0.022689664736390114, -0.00397277669981122, 0.03967910632491112, -0.011532522737979889, -0.03531356900930405, -0.030225079506635666, 0.019283434376120567, -0.0017161491559818387, -0.021354977041482925, -0.013117462396621704, -0.02991921454668045, -0.0137500474229455, 0.027764251455664635, 0.003625202225521207, -0.009023034013807774, -0.005470823030918837, -6.207463593455032e-05, -0.009864164516329765, -0.011476910673081875, -0.01436177920550108, -0.00989892240613699, -0.00797335896641016, -0.003235918702557683, -0.01842144876718521, -0.05461090803146362, -0.011247511021792889, 0.010823470540344715, 0.05602901056408882, -0.003628677921369672, -0.02364896982908249, -0.021480103954672813, 0.0036460566334426403, -0.018268516287207603, 0.015001315623521805, -0.004400293342769146, -0.009363656863570213, 0.014250555075705051, 0.011657648719847202, -0.01272122748196125, 0.010183933191001415, -0.014834480360150337, -0.013207831420004368, 0.0014024631818756461, -0.01273513026535511, -0.022661857306957245, -0.009627814404666424, 0.0016883432399481535, 0.006381467916071415, -0.02293991856276989, 0.023190170526504517, -0.030781198292970657, -0.0032463460229337215, -0.029029423370957375, -0.025692706927657127, 0.008425205945968628, 0.011900951154530048, -0.016196971759200096, 0.002811877755448222, 0.013798708096146584, -0.0012851567007601261, 0.003352356143295765, 0.006089505273848772, 0.03759365901350975, 0.0150291221216321, 0.006162496283650398, 0.03509112447500229, -0.02808402106165886, -0.024552663788199425, -0.02496975287795067, -0.02049299329519272, -0.0030013059731572866, -0.02687446027994156, -0.010399429127573967, 0.01730921119451523, 0.013214782811701298, 0.0015745125710964203, -0.002366982400417328, -0.007855184376239777, -0.007841280661523342, 0.015168151818215847, 0.00023483003315050155, -0.016697479411959648, 0.0036460566334426403, -0.006391895469278097, 0.010031000711023808, 0.008856198750436306, -0.018310224637389183, -0.006176399067044258, 0.006808984559029341, 0.01144910417497158, 0.012053883634507656, 0.027152521535754204, -0.00495988829061389, -0.011198850348591805, 0.00636408943682909, -0.018810732290148735, 0.018351934850215912, 0.04090256989002228, -0.01587720401585102, 0.001484143198467791, 0.009009131230413914, 0.01501521933823824, 0.02287040278315544, -0.006339759100228548, -0.017337016761302948, -0.01176887284964323, -0.007034908048808575, -0.00039819005178287625, -0.022425508126616478, -0.006381467916071415, 0.0321158841252327, -0.032838840037584305, -0.0028014506679028273, 0.012144253589212894, 0.007292113266885281, 0.00396582530811429, 0.02672152779996395, 0.0228843055665493, -0.021424492821097374, 0.0355360172688961, -0.03503550961613655, -0.027680834755301476, -0.028862588107585907, -0.008744974620640278, 0.014264457859098911, -0.03684289753437042, 0.03242174908518791, -0.013861271552741528, 0.0012373653007671237, -0.006120787002146244, 0.0054742987267673016, 0.0030986268538981676, -0.017962651327252388, -0.03114267624914646, -0.025164393708109856, 0.00015977566363289952, -1.3957289411337115e-05, 0.016753090545535088, -0.023148462176322937, -0.006715139374136925, 0.017684591934084892, -0.011560328304767609, 0.005707173608243465, 0.004400293342769146, -0.012338895350694656, 0.00857813935726881, -0.013861271552741528, -0.05360989272594452, -0.0007073141168802977, -0.008327885530889034, -0.01408371888101101, -0.012999286875128746, -0.004657498560845852, 0.012825499288737774, 0.00013370756641961634, 0.0022088359110057354, -0.001464157598093152, -0.0009749464807100594, 0.02349603734910488, 0.012839402072131634, 0.029752377420663834, -0.036092136055231094, 0.007841280661523342, -0.024649985134601593, 0.0037399018183350563, 0.004786101169884205, 0.012637808918952942, 0.020173223689198494, -0.0021080393344163895, 0.007160034961998463, 0.00020865332044195384, 0.011803630739450455, -0.0019047083333134651, -0.018296321853995323, -0.009627814404666424, 0.012665615417063236, 0.01605794206261635, -0.01846315711736679, -0.02496975287795067, -0.00825141929090023, -0.026485178619623184, 0.002111515263095498, 0.000469225604319945, -0.021354977041482925, -0.01711456850171089, 0.012464022263884544, 0.010545410215854645, 0.014653741382062435, 0.01440348755568266, -0.012373652309179306, -0.015807688236236572, -0.012818547897040844, -0.015098636969923973, -0.005053733475506306, -0.009460978209972382, -0.01558524090796709, 0.010441138409078121, 0.009815503843128681, 0.010733100585639477, -0.019505880773067474, -0.015321084298193455, -0.006437079980969429, 0.02613760344684124, 0.02800060249865055, -0.02109082043170929, -0.004428099375218153, -0.023774096742272377, 0.025261715054512024, 0.003969301003962755, 0.013013189658522606, 0.009175967425107956, 0.014007252641022205, -0.012019126676023006, 0.0054847258143126965, 0.008870101533830166, 0.003951922059059143, -0.0004057932528667152, -0.02287040278315544, 0.01978394202888012, -0.024594372138381004, 0.001518900622613728, 0.0036356293130666018, -0.004393341951072216, -0.00447675958275795, -0.027166424319148064, -0.0055611920543015, 0.02412167191505432, 0.001059233327396214, -0.011866194196045399, 0.00925243366509676, -0.00792469922453165, 0.004417671822011471, 0.022745275869965553, 0.009836358949542046, -0.022133544087409973, 0.003924116026610136, 0.0241633802652359, -0.01793484389781952, 0.015793785452842712, -0.01141434721648693, -0.014931800775229931, -0.00863375049084425, 0.007312967907637358, -0.03208807855844498, 0.04296020790934563, -0.015710368752479553, -0.011796679347753525, -0.014931800775229931, 0.009433172643184662, 0.020117612555623055, 0.02616540901362896, -0.03770488128066063, -0.018351934850215912, 0.012304137460887432, -0.005498628597706556, 0.013624920509755611, 0.006256341002881527, 0.010316011495888233, 0.007090520113706589, 0.0019255627412348986, 0.019380753859877586, -0.007910795509815216, -0.0006260685622692108, -0.00894656777381897, -0.027819864451885223, -0.015390599146485329, -0.013902980834245682, 0.004216078668832779, 0.04699207469820976, 0.02045128494501114, -0.0008893563062883914, -0.020465187728405, 0.00991977658122778, 0.023134559392929077, 0.001246054656803608, 0.0007733532693237066, -0.023732388392090797, -0.01792094111442566, 0.0035765417851507664, 0.030864616855978966, -0.026596400886774063, -0.012575245462357998, 0.001677915919572115, 0.00763273611664772, 0.008807538077235222, -0.012283283285796642, 0.02221696265041828, -0.03428474813699722, 0.008772781118750572, -0.016864314675331116, -0.011900951154530048, -0.032922256737947464, 0.012498779222369194, -0.0027684310916811228, 0.014890092425048351, 0.007987262681126595, -0.004831285681575537, 0.014806673862040043, -0.010628828778862953, 0.00957915373146534, 0.02109082043170929, -0.03436816856265068, -0.00278059602715075, 0.03503550961613655, 0.0033158608712255955, 0.0019116598414257169, -0.007153083570301533, 0.0016961635556071997, 0.015307181514799595, 0.012575245462357998, -0.013367715291678905, -0.017656784504652023, 0.023106753826141357, 0.0007937732734717429, 0.023176267743110657, -0.0016683576395735145, 0.0072712586261332035, -0.0015632163267582655, 0.025942960754036903, -0.012241574004292488, 0.0039032618515193462, 0.002360031008720398, -0.005522958934307098, 0.02038176916539669, 0.010837373323738575, 0.007813475094735622, 0.0029144121799618006, -0.003084723837673664, 0.0007850839174352586, -0.00023396109463647008, 0.01175497006624937, -0.009822455234825611, 0.017337016761302948, -0.0012095592683181167, -0.014834480360150337, -0.0033315017353743315, -0.010037952102720737, -0.01024649664759636, -0.004998121410608292, -0.011087627150118351, -0.00619377801194787, -0.0017734989523887634, -0.013291249051690102, -0.023843610659241676, 0.006190301850438118, -0.013840417377650738, 0.02559538744390011, -0.025790028274059296, -0.04646376147866249, -0.01145605556666851, -0.007153083570301533, -0.00573150347918272, 0.015696464106440544, 0.01242926437407732, -0.016947733238339424, 0.024608274921774864, 0.004174369852989912, -0.02175816521048546, -0.0021202045027166605, -0.009954533539712429, -0.0010340341832488775, 0.019631007686257362, 0.007160034961998463, 0.0053283171728253365, 0.024510955438017845, 0.01965881511569023, -0.0021288939751684666, 0.006298050284385681, 0.004820858594030142, -0.0015979738673195243, -0.0023461279924958944, 0.007010577712208033, 0.008459963835775852, 0.0071947923861444, 0.017392627894878387, -0.011984368786215782, 0.0005248375236988068, 0.023092851042747498, 0.020937887951731682, 0.03050313889980316, 0.009523541666567326, 0.005832300521433353, -0.0010809567756950855, -0.023829707875847816, -0.02676323801279068, 0.02236989513039589, 0.01970052346587181, -0.0027093433309346437, -0.03242174908518791, 0.0006030417862348258, 0.028862588107585907, -0.03845564275979996, 0.0019968156702816486, -0.0036495323292911053, 0.023217977955937386, 0.014653741382062435, 0.017100665718317032, 0.017420435324311256, -0.014250555075705051, 0.02872355841100216, -0.016224777325987816, -0.0053213657811284065, 0.011553376913070679, 0.008390448987483978, 0.0012816810049116611, 0.016210874542593956, -0.029001617804169655, -0.029863601550459862, -0.006092980969697237, -0.02230038121342659, 0.009711232036352158, 0.0015788571909070015, -0.013006238266825676, -0.027583513408899307, 0.007034908048808575, 0.0003469228104222566, -0.01665577106177807, 0.007354676723480225, -0.01668357662856579, 0.008355691097676754, -0.03523015230894089, 0.013923835009336472, -0.02282869443297386, -0.018616091459989548, 0.004702683072537184, -0.010580168105661869, 0.000813758815638721, 0.002933528972789645, -0.020604217424988747, 0.03450719639658928, -0.0030204225331544876, 0.0261515062302351, 0.010211738757789135, -0.06061699613928795, -0.036064330488443375, 0.023134559392929077, -0.0026224497705698013, -0.021146433427929878, -0.012206817045807838, -0.009523541666567326, 0.015515726059675217, -0.0008667639340274036, 0.003131646430119872, 0.02221696265041828, -0.021841581910848618, 0.005185811780393124, -0.015613047406077385, -0.00891876220703125, 0.012464022263884544, 0.018087778240442276, 0.0009245481924153864, -0.011344832368195057, -0.007007102016359568, -0.0015119491145014763, 0.008035922423005104, -0.0002756700268946588, 0.015432308427989483, -0.013604066334664822, 0.05538947507739067, -0.020075904205441475, -0.012283283285796642, 0.0033384531270712614, 0.02794499136507511, 0.004525420255959034, -0.016266487538814545, -0.019992485642433167, -0.009759892709553242, -0.03203246742486954, 0.020743247121572495, -0.006433604285120964, 0.009308045729994774, -0.03122609481215477, 0.004820858594030142, 0.043127045035362244, -0.014806673862040043, -0.011831436306238174, 0.0012469235807657242, -0.01722579263150692, 0.019909067079424858, 0.015446211211383343, -0.03848344832658768, -0.01110152993351221, -0.037871718406677246, 0.045073460787534714, 0.01662796549499035, 0.026415662840008736, -0.02683275192975998, 0.011678503826260567, 0.011608988977968693, 0.01245011854916811, 0.02875136397778988, -0.0053804535418748856, 0.0002839249209500849, 0.010489799082279205, -0.001989864045754075, 0.0011530783958733082, -0.02681884914636612, 0.0015710367588326335, 0.032838840037584305, -0.05547289177775383, 0.011998272500932217, 0.0009028248023241758, 0.015682561323046684, -0.04190358147025108, 0.03698192909359932, -0.010329914279282093, 0.0038650284986943007, 0.016308195888996124, 0.022105738520622253, -0.026443468406796455, -0.0014815363101661205, -0.0025164394173771143, -0.01970052346587181, 0.02348213456571102, -0.00825141929090023, 0.01668357662856579, -0.028973810374736786, 0.00015108629304450005, 0.0117619214579463, -0.020520798861980438, -0.001771761104464531, -0.010719197802245617, 0.0018734266050159931, -0.0026189738418906927, 0.0017413483001291752, -0.025942960754036903, -0.03645361587405205, 0.006405798252671957, 0.01900537498295307, -0.01904708333313465, -0.001180015504360199, -0.004546274431049824, -0.0036356293130666018, 0.0035800174809992313, -0.0021514862310141325, 0.005585522390902042, 0.0008102830615825951, -0.006047796458005905, 0.021354977041482925, -0.015223763883113861, 0.009683425538241863, -0.019325142726302147, -0.013193928636610508, 0.015001315623521805, -0.009808552451431751, -0.003878931514918804, -0.012867208570241928, 0.018657799810171127, -0.0072712586261332035, -0.004587983712553978, -0.0026745859067887068, -0.0008042005356401205, -0.0010070971911773086, -0.018908053636550903, -0.0028952956199645996, -0.004191748797893524, -0.010705295018851757, 0.009752940386533737, 0.0049112276174128056, -0.006106884218752384, 0.017698494717478752, -0.0013303414452821016, 0.009454026818275452, -0.01343027874827385, -7.858442404540256e-05, -0.002417380688712001, -0.0054534440860152245, 0.011504716239869595, -0.01141434721648693, 0.00962086208164692, 0.0009958009468391538, 0.021521814167499542, 0.0021792922634631395, -0.009766844101250172, -0.0011113694636151195, -0.00703838374465704, 0.019936874508857727, 0.032866645604372025, -0.025859544053673744, -0.0035139783285558224, 0.020089806988835335, -0.004928606562316418, 0.00718088960275054, -0.0211047250777483, 0.034813061356544495, 0.0009106452343985438, 0.041764553636312485, -0.0031125296372920275, 0.03178221359848976, 0.021215947344899178, 0.0028205672279000282, 0.0034288226161152124, 0.018143389374017715, 0.0002593774697743356, 0.010336865670979023, 0.0027979747392237186, 0.02939090132713318, 0.007034908048808575, 0.009120355360209942, -0.03303348273038864, -0.013221734203398228, -0.02666591666638851, 0.0004162204859312624, 0.020034193992614746, 0.02687446027994156, -0.0049737910740077496, 0.021897194907069206, -0.02752790041267872, 0.02040957473218441, 0.008001165464520454, -0.007257355842739344, 0.024455342441797256, 0.01589110679924488, -0.0076744453981518745, -0.002811877755448222, 0.013034043833613396, -0.005971330218017101, -0.002389574656262994, -0.0076744453981518745, -0.016433322802186012, -0.013228685595095158, 0.010649682953953743, 0.018908053636550903, 0.0017787126125767827, -0.022814791649580002, 0.003025636076927185, -0.019422464072704315, 0.01858828403055668, -0.0007603192352689803, 0.0014267934020608664, -0.009162063710391521, -0.00029217981500551105, -0.011845339089632034, -0.00989197101444006, -0.011907902546226978, -0.023231880739331245, 0.0005400438676588237, 0.005429113749414682, -0.010920790955424309, 0.005940048489719629, 0.008654605597257614, 0.003437511855736375, -0.021897194907069206, 0.013499793596565723, 0.03358960151672363, -0.013541502878069878, 0.02296772412955761, 0.02861233428120613, 0.007577124517410994, 0.0073407734744250774, -0.0018751644529402256, 0.003244608175009489, -0.007445046212524176, 0.02102130651473999, -0.003663435345515609, 0.011052869260311127, -0.004278642125427723, 0.012860257178544998, -0.026596400886774063, -0.0011904427083209157, -0.002730197738856077, 0.009982340037822723, 0.012533537112176418, 0.01846315711736679, -0.018894150853157043, -0.010774809867143631, -0.0071739377453923225, 0.010760907083749771, -0.013652727007865906, 0.010441138409078121, 0.015140345320105553, -0.0268605574965477, 0.023078948259353638, -0.006510070525109768, 0.007597978692501783, 0.03333934769034386, -0.0022488071117550135, -0.02236989513039589, -0.0006477920105680823, -0.010601022280752659, -0.007021005265414715, -0.01087908260524273, -0.0053248414769768715, -0.003493123920634389, -0.0011695881839841604, 0.0031142677180469036, -0.002881392603740096, -0.00828617624938488, -0.008112388662993908, -0.006892402656376362, -0.008724120445549488, -0.016155263409018517, 0.025845641270279884, 0.009787698276340961, -0.004170894157141447, 0.003053442109376192, -0.012359749525785446, -0.00447675958275795, 0.005773212760686874, 0.013492842204868793, 0.00857813935726881, 0.014598129317164421, -0.017017247155308723, 0.013173073530197144, 0.006676906254142523, 0.015182054601609707, -0.019603202119469643, 0.010837373323738575, -0.01846315711736679, 0.006026941817253828, 0.011066772043704987, 0.016294293105602264, 0.029085034504532814, 0.004758295137435198, 0.027625221759080887, -0.004532371647655964, -0.01792094111442566, 0.0055716196075081825, -0.0020976122468709946, 0.027778154239058495, -0.027583513408899307, -0.0070800925604999065, -0.01965881511569023, -0.023954834789037704, -0.0021862436551600695, -0.012512682005763054, 0.01779581420123577, -0.011240559630095959, 0.006072126794606447, 0.03117048181593418, -0.00857813935726881, 0.01404896192252636, -0.000502245151437819, 6.821149872848764e-05, 0.002460827585309744, 0.014737159013748169, 0.01373614463955164, 0.014681546948850155, -0.008800586685538292, -0.015529628843069077, 0.020645925775170326, 0.0023374385200440884, -0.04529590904712677, -0.024441439658403397, -0.0021480105351656675, -0.011011160910129547, 0.005988708697259426, -0.004372487310320139, -0.006298050284385681, -0.0003015208931174129, 0.005588998086750507, 0.007723105605691671, 0.006395371165126562, 0.011073724366724491, -0.006259817164391279, 0.011317025870084763, -0.0012816810049116611, -0.010962500236928463, -0.0054186866618692875, -0.015154249034821987, -0.005206665955483913, 0.009773795492947102, -0.00703143235296011, -0.006596964318305254, -0.02043738216161728, 0.013694435358047485, 0.022022321820259094, -0.010037952102720737, 0.007827377878129482, -0.007882989943027496, -0.0022957297042012215, 0.0011078937677666545, 0.017948748543858528, -0.013527600094676018, -0.009523541666567326, -0.006829839199781418, -0.00037559770862571895, -0.004400293342769146, 0.011337880976498127, -0.02106301486492157, -0.01721188984811306, -0.0024851576890796423, 0.012199865654110909, -0.016127457842230797, 0.014542517252266407, 0.0020194079261273146, -0.012262429110705853, -0.002714556874707341, -0.0037920379545539618, -0.004904276225715876, 0.006767275743186474, 0.0012825499288737774, 0.004209127277135849, -0.00495988829061389, 0.0051614814437925816, -0.006228535436093807, 0.025080977007746696, 0.008119340986013412, -0.014987412840127945, 0.011511667631566525, 0.014792771078646183, -0.01910269446671009, -0.02104911208152771, -0.006506594829261303, 0.016113555058836937, 0.01526547223329544, -0.009495736099779606, 0.03242174908518791, 0.004372487310320139, -0.011518619023263454, 0.0008711086120456457, 0.010677488520741463, 0.007146132178604603, 0.002495585009455681, -0.018838537856936455, 0.011984368786215782, -0.01501521933823824, -0.0079594561830163, -2.53620783041697e-05, 0.00619377801194787, -0.011073724366724491, -0.0012086903443560004, 0.023106753826141357, 0.01839364320039749, 0.024107767269015312, -0.020048098638653755, -0.007125277537852526, 0.010858227498829365, -0.012373652309179306, 0.003812892362475395, 0.004428099375218153, 0.0074589489959180355, -0.01245011854916811, 0.0037051443941891193, -0.008647654205560684, -0.015223763883113861, 0.015640852972865105, -0.0004700945282820612, -0.015209860168397427, 0.016196971759200096, -0.005689794663339853, 0.009092548862099648, 0.004473283886909485, -0.008376545272767544, -0.003437511855736375, -0.0022905159275978804, -0.021911097690463066, -0.00991282518953085, 0.016808703541755676, -0.007326870691031218, 0.00047096345224417746, 0.0026815372984856367, -0.020673731341958046, -0.003197685582563281, -0.0311982873827219, 0.0102325938642025, 0.02939090132713318, 0.0007529332651756704, 0.02230038121342659, 0.01721188984811306, -0.031531959772109985, 0.0242328941822052, 0.01021869108080864, -0.004737440496683121, -0.0008950043702498078, -0.03648142144083977, 0.005564667750149965, -0.0009010868961922824, 0.0025911680422723293, -0.0018421448767185211, 0.0007824771455489099, -0.026026379317045212, -0.01055931393057108, 0.02687446027994156, -0.0025042742490768433, 0.0011574231320992112, 0.01308270450681448, -0.018769023939967155, -0.0017865330446511507, -0.008890955708920956, -0.014445196837186813, -0.0014910947065800428, 0.02040957473218441, 0.009537444449961185, 0.0030013059731572866, 0.020103709772229195, 0.0287791695445776, -0.00793165061622858, 0.02032615803182125, 0.023412618786096573, 0.011317025870084763, -0.003906737547367811, 0.01600233092904091, 0.0006599571206606925, -0.002761479467153549, -0.006607391405850649, -0.001233889488503337, 0.005470823030918837, -0.002573789330199361, 0.015640852972865105, 0.007702250964939594, -0.013534551486372948, -0.03353399038314819, -0.0171979870647192, 0.0011504716239869595, -0.00864070188254118, -0.017072860151529312, -0.005745406728237867, -0.0038963102269917727, -0.030197273939847946, -0.01593281514942646, -0.008035922423005104, -0.018212905153632164, -4.4234286178834736e-05, 0.02049299329519272, 0.006092980969697237, -0.007100947201251984, 0.0016448963433504105, 0.027653027325868607, -0.00035148471943102777, 0.012790742330253124, 0.0011452579637989402, -0.014806673862040043, -0.007750911638140678, -0.010955548845231533, 0.005801018793135881, 0.003920640330761671, -0.014959607273340225, -0.004487187135964632, -0.005022451747208834, 0.0281396321952343, -0.013360763899981976, -0.020256642252206802, -0.012658664025366306, 0.0013364240294322371, 0.0011513405479490757, 0.01721188984811306, -0.01776800863444805, -0.00301520898938179, -0.01972832903265953, -0.020868374034762383, -0.03442377969622612, -0.0038546014111489058, -0.02163303829729557, 0.009419268928468227, 0.02285649999976158, -0.010698343627154827, -0.013360763899981976, -0.005922669544816017, 0.015529628843069077, 0.004007534123957157, 0.008035922423005104, -0.011845339089632034, 0.022244768217206, -0.024427536875009537, 0.012165107764303684, 0.013360763899981976, -0.007750911638140678, 0.0056029013358056545, -0.018824635073542595, -0.0077092028222978115, 0.002733673434704542, 0.0033158608712255955, 0.00891181081533432, 0.006002611946314573, -0.014792771078646183, 0.027666931971907616, 0.014848383143544197, 0.006836790591478348, -0.005425638053566217, -0.02036786638200283, -0.004268215037882328, -0.005456919781863689, 0.02369067817926407, -0.030086049810051918, 0.016099652275443077, 0.021243754774332047, 0.007264307234436274, 0.0026450420264154673, -0.000813758815638721, -0.02050689607858658, -0.013534551486372948, 0.009516590274870396, -0.007125277537852526, 0.022091835737228394, 0.01055931393057108, 0.008473866619169712, 0.004414196126163006, -0.0026693721301853657, 0.003628677921369672, -0.010350769385695457, 0.014431294053792953, 0.008237515576183796, -0.0037120957858860493, -0.01525156944990158, 0.010455041192471981, -0.0038233196828514338, -0.004518468864262104, 0.011122384108603, -0.021188141778111458, 0.0077717662788927555, -0.003182044718414545, 0.006423176731914282, -0.032171495258808136, -0.010503701865673065, 0.014139330945909023, -0.025984670966863632, -0.0036217262968420982, 0.007354676723480225, -0.026262730360031128, -0.015098636969923973, 0.015182054601609707, -0.00718784099444747, 0.0031750930938869715, 0.012505730614066124, 0.0016952946316450834, 0.014139330945909023, -0.009384511969983578, -0.025275617837905884, -0.006927160080522299, 0.026888364925980568, 0.0072990646585822105, -0.001249530352652073, -0.01207473874092102, 0.0038302710745483637, -0.0004403334460221231, -0.004118757788091898, 0.02994702011346817, -0.019436366856098175, 0.009189870208501816, -0.005276181269437075, 0.0017317900201305747, 0.005376977846026421, 0.004594935104250908, -0.006110359914600849, 0.0020576410461217165, 0.00827227346599102, -0.008126292377710342, -0.0038372226990759373, -0.006002611946314573, 0.016461128368973732, 0.010517604649066925, -0.02043738216161728, 0.0009792911587283015, 0.022175254300236702, -0.0038546014111489058, 0.003725998802110553, 0.0016336002154275775, 0.00026654620887711644, -0.0006947145448066294, 0.0013963805977255106, -0.011094578541815281, 0.018769023939967155, 0.02925187163054943, -0.0004470677231438458, 0.016919927671551704, 0.02994702011346817, 0.021785970777273178, -0.011796679347753525, 0.005078063812106848, 0.006318904459476471, 0.01501521933823824, 0.011560328304767609, 0.0050433059222996235, -0.010767858475446701, 0.008119340986013412, 0.018963664770126343, 0.001343375537544489, 0.008077631704509258, 0.005585522390902042, 0.013875174336135387, 0.003522667568176985, 0.00035821896744892, 0.0015102112665772438, 0.005675891879945993, -0.008147146552801132, -0.0013025355292484164, 0.012700372375547886, 0.009975388646125793, 0.01597452536225319, 0.012568294070661068, -0.014973510056734085, 0.01587720401585102, 0.007834329269826412, 0.00013631438196171075, 0.004379438702017069, 0.004268215037882328, -0.0010366409551352262, 0.02164694108068943, -0.0121164470911026, -0.01787923276424408, -0.007000150624662638, 0.011518619023263454, -0.002130631823092699, -0.004282117821276188, 0.015182054601609707, -0.013034043833613396, 0.0030013059731572866, -0.03233833238482475, -0.019491977989673615, -0.013180025853216648, -0.006033893674612045, -0.011970466002821922, -0.00263982848264277, 0.004435050766915083, 0.011407395824790001, 0.007014053408056498, 0.027903281152248383, -0.020298350602388382, 0.002370458096265793, -0.006086029578000307, 0.020117612555623055, -0.005884436424821615, -0.015182054601609707, -0.021925000473856926, -0.0003610430285334587, 0.0014806673862040043, -0.018032165244221687, 0.0005652430700138211, -0.023384813219308853, -0.0027128190267831087, 0.023204075172543526, -0.009697329252958298, -0.021438395604491234, -0.017045054584741592, -0.008202758617699146, 0.008188855834305286, 0.01977003738284111, 0.018338032066822052, -0.01087908260524273, -0.007062714081257582, -0.01857438124716282, -0.0024625654332339764, -0.004643595311790705, 0.004998121410608292, 0.025108782574534416, 0.011025063693523407, 0.01470935344696045, 0.007215647026896477, 0.009043889120221138, 0.008654605597257614, -0.027708640322089195, 0.00048269410035572946, -0.007882989943027496, -0.0005574226379394531, -0.008772781118750572, -0.009356705471873283, 0.009801601059734821, -0.023746291175484657, -0.008119340986013412, -0.002048951806500554, -0.03442377969622612, 0.00014847949205432087, 0.0072434525936841965, 0.013214782811701298, 0.006124262697994709, 0.02555367723107338, 0.013346861116588116, -0.011845339089632034, 0.006920208688825369, -0.03403449431061745, -0.02617931179702282, 0.0010722674196586013, 0.009488783776760101, 0.010545410215854645, -0.0038546014111489058, 0.010976403020322323, -0.02168864943087101, -0.027152521535754204, -0.008731071837246418, 0.021438395604491234, -0.0035765417851507664, -0.008098485879600048, -0.016822606325149536, 0.0026415663305670023, -0.0029734999407082796, -0.021480103954672813, -0.003430560464039445, -0.023106753826141357, 0.008696313947439194, 0.005741931032389402, 0.016363808885216713, 0.005526434630155563, 0.022647954523563385, -0.00829312764108181, 0.004066621884703636, -0.003527881344780326, 0.025790028274059296, -0.011018112301826477, -0.015724271535873413, -0.009328899905085564, 0.005599425174295902, 0.011699358001351357, 0.0013173073530197144, -0.004706158768385649, 0.0016605372074991465, -0.00351224048063159, 0.03322812169790268, -0.009537444449961185, -0.0076466393657028675, 0.009697329252958298, -0.022147448733448982, 0.0012938461732119322, 0.024997558444738388, 0.0012582197086885571, -0.0267910435795784, -0.027069102972745895, 0.011602037586271763, -0.025706611573696136, -0.014174088835716248, -0.01910269446671009, -0.004382914397865534, 0.010072709061205387, 0.022689664736390114, 0.006888926960527897, 0.015112539753317833, 0.012707323767244816, -0.003934543579816818, -0.0072086951695382595, -0.020284447818994522, -0.005018976051360369, -0.0054742987267673016, 0.01983955316245556, -0.021966708824038506, -0.013339909724891186, 0.016280390322208405, -0.019547590985894203, 0.009996242821216583, -0.0009923252509906888, -0.014500808902084827, -0.025984670966863632, -0.006026941817253828, -0.006430128589272499, 0.00016118767962325364, -0.008877052925527096, 0.0329778678715229, 0.006204205099493265, -0.0038267953786998987, -0.001445041038095951, -0.0004618396342266351, 0.01920001581311226, -0.03066997416317463, 0.006159020122140646, -0.0008185379556380212, 0.003659959649667144, 0.004841712769120932, -0.011699358001351357, 0.01210949569940567, -0.028431594371795654, -0.01372919324785471, -0.011233608238399029, 0.014215797185897827, -0.011011160910129547, -1.4690454008814413e-05, -0.0006868941127322614, 0.0019916018936783075, -0.007326870691031218, -0.0028414216358214617, 0.01650283858180046, -0.031531959772109985, -0.00989892240613699, -0.027708640322089195, -0.01908879168331623, 0.00025220875977538526, 0.008453012444078922, -0.022786984220147133, -0.005686318967491388, -0.021480103954672813, -0.012630857527256012, -0.013193928636610508, -0.0024903714656829834, 0.0077092028222978115, 0.007917746901512146, -0.0038546014111489058, 0.010941646061837673, 0.03570285439491272, -0.0022922540083527565, -0.015696464106440544, -0.006332807708531618, 0.010712246410548687, -0.0010809567756950855, 0.012957577593624592, -0.010809567756950855, -0.004567129071801901, -0.02495585009455681, 0.017976554110646248, -0.004570604767650366, -0.001280812080949545, 0.008425205945968628, -0.005682843271642923, -0.01209559291601181, -0.022592343389987946, 0.0034444634802639484, -0.005432589445263147, -0.013652727007865906, -0.0013572784373536706, 0.029446512460708618, -0.006475313100963831, 0.01470935344696045, 0.02034006081521511, -0.012304137460887432, -0.01407676748931408, 0.012137302197515965, 0.01177582424134016, -0.022036224603652954, 0.017323113977909088, -0.018129486590623856, -0.0006729911547154188, -0.00762578472495079, -0.016780897974967957, -0.024010447785258293, -0.011949611827731133, 0.015293278731405735, 0.01904708333313465, -0.001012310734950006, 0.017517754808068275, -0.016363808885216713, -0.010163079015910625, 0.009745988994836807, -0.018671702593564987, -0.0056063770316541195, 0.0031803068704903126, 0.005877485033124685, -0.009711232036352158, -0.0019846505019813776, 0.020632022991776466, -0.009120355360209942, 0.01141434721648693, 0.010747004300355911, 0.012220719829201698, 0.008988277055323124, -0.00604432076215744, 0.016266487538814545, -0.01055931393057108, 0.02103520929813385, 0.021507911384105682, -0.01406981609761715, 0.01786532998085022, -0.001421579741872847, -0.0008380890358239412, -0.02683275192975998, -0.021994514390826225, -0.0053595989011228085, -0.009815503843128681, -0.020618120208382607, -0.013590163551270962, -0.008161049336194992, 0.002545983297750354, 0.012151204980909824, 0.004702683072537184, -0.021354977041482925, -0.01024649664759636, -0.011629843153059483, -0.013861271552741528, -0.006652575917541981, 0.02039567194879055, 0.01470935344696045, 0.012881111353635788, 0.014556420966982841, 0.026596400886774063, 0.001677915919572115, -0.018852440640330315, -0.009391463361680508, 0.036648254841566086, -0.010427235625684261, 0.016961636021733284, 0.003037801245227456, 0.0075910273008048534, -0.003458366496488452, 0.016433322802186012, -0.014667644165456295, 0.01785142719745636, -0.0009636503527872264, 0.00028327322797849774, 0.023287491872906685, -0.012199865654110909, 0.02036786638200283, 0.006155544426292181, 0.002963072620332241, 0.0004177411028649658, 0.013590163551270962, -0.03528576344251633, -0.014778868295252323, 0.001939465757459402, 0.008049826137721539, 0.004834761377424002, -0.002033310942351818, -0.0011261414038017392, 0.021813776344060898, -0.011887048371136189, 0.0005304855876602232, 0.026429565623402596, -0.006833314895629883, -0.01274208165705204, 0.0003282406833022833, -0.0003512674884404987, -0.007723105605691671, -0.011539474129676819, -0.02490023709833622, -0.018351934850215912, 0.026401760056614876, 0.013687483966350555, 0.004316875245422125, -0.01370833907276392, 0.0009010868961922824, 1.8817901946022175e-05, 0.005025927443057299, 0.0055125318467617035, 0.006489216350018978, 0.010135272517800331, -0.022703567519783974, 0.005936572793871164, 0.012137302197515965, -0.0033315017353743315, -0.012825499288737774, -0.02421899139881134, -0.003983203787356615, -0.00555424066260457, -0.021354977041482925, 0.0017847950803115964, 0.01376395020633936, -0.002257496351376176, 0.018157292157411575, -0.01601623371243477, 0.03620336204767227, 0.008355691097676754, 0.0013894290896132588, 0.006770751439034939, -0.0053839292377233505, 0.003934543579816818, 0.02933528833091259, 0.0054152109660208225, -0.020840568467974663, 0.023217977955937386, -0.005498628597706556, 0.006951490417122841, -0.0004696600663010031, 0.002200146671384573, -0.00827227346599102, -0.0076466393657028675, -0.0012816810049116611, 0.006172923371195793, 0.0089535191655159, 0.018796829506754875, 0.014820577576756477, 0.02858452871441841, 0.011956563219428062, -0.0027232463471591473, 0.020242739468812943, -0.011365686543285847, -0.0009323686244897544, 0.004601886495947838, 0.018727313727140427, -0.004024913068860769, 0.004890373442322016, 0.007007102016359568, 0.002624187618494034, 0.013889077119529247, 0.0007481541251763701, 0.013847368769347668, 0.0031872582621872425, 0.020089806988835335, -0.01587720401585102, -0.007876038551330566, -0.00703143235296011, 0.03556382283568382, 0.0013086179969832301, -0.017406530678272247, 0.02300943247973919, -0.010031000711023808, -0.01922782137989998, 0.001639682799577713, 0.0034635800402611494, -0.020757149904966354, 0.006127738859504461, -0.04001277685165405, -0.02419118583202362, -0.012033029459416866, 0.03244955465197563, -0.02604028210043907, -0.0004753081302624196, -0.007730056997388601, -0.007100947201251984, -0.005964378826320171, 0.00031911683618091047, 0.00924548227339983, -0.014931800775229931, -0.012901965528726578, -0.03136512264609337, -0.01343027874827385, 0.024649985134601593, -7.141569949453697e-05, 0.003927592188119888, 0.0052588023245334625, 0.007229549810290337, -0.0012625644449144602, -0.003847649786621332, 0.013249540701508522, -0.004866043105721474, -0.0025755271781235933, -0.01340942457318306, 0.0165584497153759, -2.2891039407113567e-05, -0.013659678399562836, -0.0005482988199219108, -0.0027162947226315737, -0.007841280661523342, 0.025011461228132248, -0.00795250479131937, 0.04465637356042862, 0.009495736099779606, 0.0006751634646207094, -0.01775410585105419, -0.022189157083630562, 0.004358584526926279, -0.00494598550722003, -0.014021155424416065, -0.025275617837905884, -0.0019012325210496783, -0.016961636021733284, 0.005050257779657841, 0.003906737547367811, 0.004132661037147045, 0.01494570355862379, 0.00894656777381897, -4.089431240572594e-05, -0.012957577593624592, -0.005835776217281818, 0.018921956419944763, -0.019631007686257362, -0.022550635039806366, 0.010079660452902317, -0.022133544087409973, 0.021257657557725906, -0.0026033329777419567, -0.0241633802652359, -0.015154249034821987, -0.02038176916539669, 0.01343027874827385, 0.02103520929813385, -0.005807970184832811, 0.00794555339962244, 0.019936874508857727, 0.02049299329519272, 0.013583212159574032, -0.026902267709374428, -0.016919927671551704, -0.020757149904966354, 0.02747228927910328, -0.002683275146409869, -0.010906888172030449, 0.009467929601669312, 0.006444031372666359, -0.0012017388362437487, 0.006975820288062096, -0.004970315378159285, 0.002542507601901889, 0.011504716239869595, -0.007882989943027496, -0.007160034961998463, -0.00318552041426301, -0.006923684384673834, 0.0033732105512171984, 0.004181321244686842, 0.0035330948885530233, 0.012026078067719936, 0.0015136869624257088, -0.011289220303297043, 0.005679367575794458, 0.011171044781804085, 0.022439410910010338, -0.0052309962920844555, -0.010329914279282093, 0.01651674136519432, -0.001327734673395753, -0.00359044480137527, 0.001206952496431768, -0.011685455217957497, -0.0012703848769888282, 0.010621877387166023, 0.004608837887644768, -0.01340942457318306, 0.003920640330761671, -0.00893266499042511, 0.019283434376120567, 0.019450269639492035, 0.010135272517800331, 0.0021480105351656675, 0.007604930084198713, -0.013124413788318634, 0.030364109203219414, -0.011859241873025894, 0.0031125296372920275, -0.028209147974848747, -0.009641717188060284, 0.022773081436753273, -0.010830421932041645, -0.012019126676023006, -0.009704280644655228, -0.0008259239257313311, -0.006544827949255705, -0.005613328423351049, -0.00670471228659153, -0.016919927671551704, 0.006590012926608324, 0.003065607277676463, 0.025400744751095772, 0.008133243769407272, 0.0051406268030405045, 0.014431294053792953, -0.006013039033859968, 0.01978394202888012, -0.005953951273113489, 0.00960695929825306, -0.002495585009455681, 0.01774020306766033, -0.013798708096146584, 0.007987262681126595, 0.008744974620640278, -0.02740277536213398, -0.023954834789037704, -0.005175384692847729, 0.00792469922453165, 0.012324992567300797, 0.019366851076483727, -0.006715139374136925, 0.020618120208382607, 0.028973810374736786, 0.010482847690582275, -0.0017144113080576062, 0.005401307716965675, -0.0019568444695323706, -0.018657799810171127, 0.005943524185568094, -0.012151204980909824, -0.022522827610373497, -0.006815935950726271, 0.0007312098750844598, 0.010969451628625393, -0.012901965528726578, 0.0022262148559093475, -0.0008832737221382558, -0.005119772627949715, -0.0159189123660326, -0.005053733475506306, 0.00671166367828846, -0.002293991856276989, -0.007354676723480225, 0.003317598719149828, 0.018185097724199295, 0.004866043105721474, -0.010468943975865841, 7.271910726558417e-05, 0.00762578472495079, -0.009036937728524208, 0.004994645714759827, 0.002307894639670849, -0.009349754080176353, -0.03559162840247154, 0.02171645499765873, -0.006006087642163038, -0.00797335896641016, 0.01904708333313465, 0.014584226533770561, -0.005085015203803778, 0.005217093508690596, 0.008703265339136124, 0.007757863029837608, -0.0053213657811284065, -0.006510070525109768, -0.003976252395659685, 0.004073573276400566, -0.00588096072897315, 0.008432157337665558, -0.002605071058496833, 0.020465187728405, 0.0001214338481076993, 0.00539783202111721, -0.02880697511136532, -0.004226506222039461, 0.021494008600711823, -0.017684591934084892, -0.012206817045807838, -0.018838537856936455, -0.008814489468932152, 0.006798557471483946, -0.008890955708920956, 0.025053171440958977, 0.02604028210043907, -0.009301094338297844, 0.023760193958878517, -0.005627231206744909, 0.0016535856993868947, -0.009634765796363354, 0.008543381467461586, 0.024538761004805565, -0.012957577593624592, 0.0038615528028458357, -0.005404783878475428, 0.00958610512316227, 0.018796829506754875, -0.010503701865673065, 0.000809848599601537, 0.008383497595787048, 0.02049299329519272, 0.01404896192252636, -0.018657799810171127, 0.03776049613952637, 0.0014172351220622659, 0.02173035778105259, 0.005971330218017101, 0.006204205099493265, 0.010983354412019253, 0.007069665472954512, 0.006350186187773943, -0.02359335869550705, -0.006781178526580334, 0.010705295018851757, -0.0013790018856525421, 0.0017986980965361, 0.006954966112971306, -0.0074589489959180355, 0.006106884218752384, 0.0013025355292484164, -0.014667644165456295, -0.0011982631403952837, 0.0028344702441245317, 0.014792771078646183, 0.024469245225191116, 0.010934693738818169, 0.01714237406849861, -0.003298482159152627, 0.014174088835716248, 0.017462143674492836, 0.017656784504652023, -0.009474880993366241, 0.005832300521433353, -0.015779882669448853, -0.0137500474229455, -0.009134258143603802, -0.034757450222969055, -0.02291211113333702, 0.009544395841658115, -5.12129336129874e-05, 0.00956525094807148, 0.0027162947226315737, -0.0074589489959180355, 0.02483072318136692, -0.0267910435795784, -0.0004965970874764025, -0.010156127624213696, -0.002002029214054346, -0.013847368769347668, 0.010837373323738575, 0.0034010165836662054, -0.02669372223317623, -0.005721076391637325, 0.006447507068514824, 0.012255477719008923, 0.014528614468872547, -0.00571064930409193, -0.02610979788005352, 0.00036799450754188, -0.019631007686257362, 0.0025477211456745863, -0.029529931023716927, -0.012658664025366306, -0.01078871265053749, 0.009544395841658115, -0.007375530898571014, 0.002968286396935582, 0.008800586685538292, -0.006350186187773943, -0.026971781626343727, 0.008473866619169712, 0.0056063770316541195, 0.007896892726421356, -0.032199304550886154, 0.02228647843003273, 0.003282841295003891, 0.010448089800775051, -0.038511257618665695, -0.023120656609535217, -0.003625202225521207, 0.0036147749051451683, -0.01780971884727478, -0.02227257378399372, 0.011379589326679707, -0.014278360642492771, 0.0030899373814463615, 0.008877052925527096, -0.008418254554271698, -0.0006056485581211746, 0.001619697199203074, -0.006009563338011503, -0.0030238982290029526, 0.0029804513324052095, -0.00619377801194787, 0.006381467916071415, 0.016419420018792152, -0.010726149193942547, -0.02542855031788349, -0.0001944244868354872, -0.0005765391979366541, 0.002165389247238636, -0.014292264357209206, -0.009342802688479424, -0.015835493803024292, -0.009739037603139877, -0.003213326446712017, 0.011066772043704987, 0.008063728921115398, 0.003251559566706419, -0.02930748276412487, -0.00045228132512420416, -0.004240409005433321, -0.00961391068994999, -0.015001315623521805, -0.009391463361680508, -0.004153515212237835, -0.014514711685478687, 0.010635780170559883, 0.02997482568025589, 0.005651561543345451, 0.006812460254877806, -0.025206103920936584, -0.01594671793282032, -0.018338032066822052, 0.005303986836224794, -0.01837974041700363, 0.003081248141825199, 0.0008185379556380212, 0.02095179073512554, -0.003503551008179784, -0.015446211211383343, 0.01849096454679966, -0.003913688939064741, 0.023440424352884293, 0.00793860200792551, -0.024747304618358612, -0.006968868896365166, -0.010024049319326878, -0.0287791695445776, 0.011880096979439259, -0.0008259239257313311, -0.00994063075631857, -0.013896028511226177, 0.00825141929090023, 0.004987694323062897, 0.010176981799304485, 0.002811877755448222, -0.020923985168337822, -0.0025564106181263924, 0.004480235278606415, -0.010343817062675953, 0.03956788405776024, 0.0035487357527017593, -0.009433172643184662, -0.012241574004292488, -0.013131365180015564, -0.020256642252206802, -0.004021436907351017, -0.011998272500932217, -0.024747304618358612, -0.001982912654057145, 0.01653064414858818, -0.013492842204868793, 0.01408371888101101, 0.00993367936462164, -0.009175967425107956, 0.013471988029778004, 0.007034908048808575, -0.010837373323738575, -0.006576109677553177, 0.010163079015910625, 0.00827922485768795, 0.0003905868506990373, -0.005217093508690596, -0.004963363986462355, 0.0012660401407629251, 0.00015010873903520405, 0.0032619868870824575, -0.008710217662155628, 0.0007494575111195445, -0.01851877011358738, 0.03000263124704361, -0.0013816086575388908, -0.026652013882994652, -0.007695299573242664, -0.000381680263672024, 0.010747004300355911, -0.01374309603124857, 0.014417390339076519, 0.011588133871555328, 0.0076188333332538605, 0.0033540939912199974, -0.023092851042747498, -0.007667493540793657, -0.003508764784783125, -0.013339909724891186, -0.011803630739450455, 0.02039567194879055, 0.005126724019646645, -0.004591459408402443, 0.002577265026047826, -0.002971762092784047, -0.009412317536771297, -0.004497614223510027, 0.008133243769407272, 0.0012373653007671237, 0.03228272125124931, -0.00047139794332906604, -0.015084734186530113, 0.006079078186303377, 0.001288632513023913, -0.000537437095772475, 0.0049425093457102776, 0.015084734186530113, 0.017976554110646248, -0.005057209171354771, 0.024747304618358612, 0.000782911607529968, 0.02235599234700203, 0.009009131230413914, 0.025303425267338753, 0.0036530080251395702, -0.010197835974395275, 0.01650283858180046, 0.014667644165456295, -0.02414947748184204, -0.015654755756258965, -0.02677714079618454, 0.008022019639611244, -0.02414947748184204, 0.001624041935428977, -0.004890373442322016, -0.00037125303060747683, 0.003569590160623193, -0.026568595319986343, -0.0036356293130666018, 0.014681546948850155, -0.0030082573648542166, -0.004219554364681244, -0.0011739329202100635, 0.004706158768385649, 0.007994214072823524, 0.00017867502174340189, -0.024066058918833733, -0.007093995809555054, 0.014542517252266407, -0.012644760310649872, 0.012811596505343914, 0.006176399067044258, 0.0018855917733162642, 0.012276331894099712, -0.005634182598441839, 0.03358960151672363, 0.005846203304827213, -0.015724271535873413, -0.017656784504652023, -0.018185097724199295, 0.0005239685997366905, 0.00020235353440511972, 0.013180025853216648, 0.012915869243443012, -0.01526547223329544, 0.016433322802186012, -0.006885451264679432, -0.0007729188073426485, 0.00792469922453165, 0.0300582442432642, 0.02366287261247635, 0.012943674810230732, 0.008849247358739376, -0.00397277669981122, -0.011650697328150272, 0.0001326213969150558, 0.024066058918833733, -0.0074937064200639725, -0.0022957297042012215, -0.0023496036883443594, 0.005189287476241589, 0.015460113994777203, -0.013221734203398228, 0.0029578590765595436, 0.007097471505403519, -0.021827679127454758, -0.018004359677433968, 0.00894656777381897, 0.011803630739450455, 0.014876188710331917, 0.010037952102720737, -0.013249540701508522, 0.016753090545535088, 0.0003960177127737552, -0.019380753859877586, 0.013360763899981976, 0.008035922423005104, 0.013868222944438457, 0.026499081403017044, 0.006457934621721506, -0.0013624920975416899, 0.015001315623521805, 0.02430240996181965, 0.008334836922585964, -0.02604028210043907, 0.004612313583493233, -0.0018577857408672571, 0.0016292554792016745, -0.016961636021733284, -0.00030043470906093717, -0.02227257378399372, 0.014820577576756477, -0.005526434630155563, 0.007876038551330566, -0.008042873814702034, 0.011671552434563637, 0.006520497612655163, 0.02737496793270111, 0.020075904205441475, -0.0006208549602888525, -0.02161913551390171, 0.01723969541490078, -0.006096457131206989, -0.007730056997388601, -0.0018178146565333009, 0.006739469710737467, -0.01025344803929329, 0.001128748175688088, -0.014417390339076519, 0.016113555058836937, -0.007563221268355846, -0.0018873296212404966, -0.03653703257441521, -0.004939033649861813, 0.021424492821097374, 0.027249841019511223, 0.005922669544816017, 0.006819412112236023, 0.008779732510447502, 0.030169468373060226, 0.005491677206009626, 0.021911097690463066, 0.010955548845231533, -0.010058806277811527, 0.010580168105661869, -0.0036981927696615458, 0.00032107194419950247, -0.004156991373747587, -0.014820577576756477, 0.02111862786114216, -0.0029926165007054806, -0.013506745919585228, -0.026499081403017044, -0.010670537129044533, -0.0026971781626343727, 0.0049737910740077496, -0.022634051740169525, -0.02047909051179886], "903c910e-a6de-4f76-817c-0dec155e870a": [0.01180407777428627, -0.03129850700497627, -0.008935455232858658, 0.0324215404689312, 0.020104773342609406, -0.043310102075338364, 0.003030364401638508, 0.03349575027823448, -0.015722494572401047, 0.0045531755313277245, -0.004498244728893042, 0.02785615809261799, 0.01307359617203474, -0.019286910071969032, 0.01892070285975933, 0.04494582489132881, -0.019848428666591644, 0.03256802260875702, 0.06171811372041702, 0.003387416247278452, 0.043432168662548065, 0.014037941582500935, -0.013549664989113808, 0.015539390966296196, 0.03046843595802784, 0.015112148597836494, -0.0335201621055603, 0.022399671375751495, -0.028881538659334183, -0.017370427027344704, 0.001972941216081381, 0.029174504801630974, 0.010278214700520039, -0.025195052847266197, 0.01182238757610321, 0.021948015317320824, 0.01051014568656683, -0.00476374477148056, 0.012139767408370972, -0.013659527525305748, 0.005975280422717333, 0.015466148965060711, 0.003573571564629674, -0.017443668097257614, -0.038940027356147766, 0.023937741294503212, -0.001049030921421945, 0.005657900590449572, -0.0011604189639911056, -0.019384566694498062, -0.005062813870608807, -0.02144753374159336, 0.019262496381998062, 0.019457807764410973, 0.03359340503811836, -0.015942217782139778, 0.005294745322316885, -0.05615176633000374, -0.020605256780982018, -0.03742637112736702, -0.00842276494950056, 0.0063231769017875195, -0.004687451757490635, -0.04426223784685135, 0.026977261528372765, 0.032079748809337616, -0.0239255353808403, -0.013329940848052502, -0.01309800986200571, -0.014648286625742912, -0.004464675672352314, -0.0009757895022630692, -0.019616497680544853, -0.008691316470503807, 0.04758251830935478, -0.02626926079392433, 0.020690705627202988, 0.03305630013346672, 0.005169624462723732, -0.024816639721393585, 0.0003925283090211451, -0.011114387772977352, 0.03610802814364433, -0.014904631301760674, 0.05014596879482269, 0.017040839418768883, 0.024218499660491943, -0.03271450847387314, -0.019323531538248062, -0.00955800712108612, 0.015783529728651047, 0.0019454755820333958, 0.007324143312871456, -0.008550937287509441, -0.020287876948714256, -0.015807943418622017, 0.011212042532861233, -0.010980111546814442, 0.004214433953166008, -0.015881184488534927, 0.005340521223843098, -0.03090788424015045, 0.027709675952792168, -0.00422664126381278, 0.05678652599453926, 0.005194038152694702, 0.04645948112010956, -0.028710640966892242, -0.03564416244626045, 0.026513399556279182, -0.014819183386862278, 0.005804383661597967, -0.011443973518908024, 0.007354660425335169, -0.03710899129509926, -0.0021499411668628454, -0.026415742933750153, 0.01625959761440754, -0.003170743817463517, -0.0035064336843788624, -0.003942830488085747, -0.025341534987092018, -0.04492141306400299, 0.02551243267953396, -0.011407352983951569, -0.010320938192307949, 0.012145871296525002, -0.01278063002973795, 0.021911395713686943, 0.017028633505105972, -0.022729258984327316, -0.011425663717091084, 0.020251255482435226, 0.034594371914863586, 0.018359186127781868, -0.0076354192569851875, -0.03493616357445717, 0.04221148043870926, 0.01636946015059948, 0.003005950478836894, -0.0381343737244606, -0.010766490362584591, -0.02553684636950493, 0.015685873106122017, -0.041015204042196274, -0.03498499095439911, 0.009051420725882053, 0.004174761474132538, -0.04941355437040329, 0.003991658333688974, -0.05444279685616493, -0.023913327604532242, -0.03828085586428642, -0.014794769696891308, 0.0331539548933506, -0.022985603660345078, 0.0025802345480769873, -0.020263463258743286, 0.007818522863090038, 0.008068764582276344, 0.009362696669995785, -0.011608767323195934, -0.007629315834492445, 0.04155230522155762, 0.036767199635505676, 0.02117898128926754, 0.04619092866778374, 0.018139461055397987, -0.019152633845806122, 0.02388891391456127, 0.02570774219930172, -0.03732871636748314, 0.024755604565143585, 0.01190173253417015, -0.022070085629820824, 0.008172523230314255, 0.006634453311562538, -0.011047249659895897, -0.010522352531552315, 0.017211737111210823, -0.026708709076046944, 0.01640608161687851, -0.006161435507237911, -0.013146837241947651, 0.024633536115288734, 0.0385005809366703, 0.002812165766954422, 0.008941558189690113, 0.01055897306650877, -0.0024734241887927055, -0.013134630396962166, -0.013305527158081532, 0.022570569068193436, -0.026488985866308212, -0.010034075938165188, -0.01046131830662489, 0.03476526588201523, 0.029711607843637466, -0.02814912423491478, -0.0040832096710801125, 0.01834697835147381, -0.03754844143986702, 0.0032836575992405415, -0.0032317782752215862, -0.026391329243779182, 0.012744009494781494, -0.0009353541536256671, -0.027123743668198586, 0.01280504371970892, -0.02315649949014187, 0.038940027356147766, -0.05664004012942314, 0.016979806125164032, -0.0014312596758827567, 0.017101874575018883, 0.01874980702996254, 0.011016732081770897, 0.007684247102588415, 0.03598595783114433, -0.02836884930729866, 0.034203749150037766, 0.025072984397411346, -0.02120339497923851, -0.03127409145236015, -0.048266105353832245, 0.041405823081731796, -0.01612532138824463, -0.019445599988102913, -0.004064899403601885, 0.02602512203156948, 0.03520471602678299, -0.007318039890378714, -0.026928434148430824, 0.008734040893614292, 0.0213742908090353, 0.04069782420992851, 0.0375240258872509, 0.026440156623721123, -0.021691670641303062, 0.012634146958589554, -0.019311323761940002, 0.0427485816180706, 0.009539696387946606, -0.024169672280550003, 0.022765878587961197, 0.0190061517059803, 0.015710286796092987, 0.01661359891295433, -0.003071562619879842, -0.006811453495174646, -0.05468693748116493, 0.0005069680628366768, 0.0005638064467348158, 0.018102841451764107, -0.0032592436764389277, 0.04255327209830284, 0.05869080126285553, -0.01868877187371254, 0.018420221284031868, -0.02152077481150627, 0.04313920438289642, 0.025024157017469406, 0.011480594985187054, 0.03102995455265045, 0.02351050078868866, -0.01665021851658821, 0.01866435818374157, -0.03439905866980553, 0.009930317290127277, 0.027245813980698586, 0.0007263108855113387, -0.003111235098913312, 0.008911040611565113, 0.0129637336358428, 0.026806363835930824, 0.031103195622563362, 0.01307359617203474, 0.010418593883514404, -0.0008972075302153826, 0.01071766298264265, -0.03583947569131851, 0.012744009494781494, 0.0014846648555248976, 0.013464217074215412, 0.027319055050611496, -0.0093504898250103, -0.0259274672716856, -0.02336401678621769, -0.01905497908592224, -0.024169672280550003, 0.0014816131442785263, -0.015600425191223621, 0.019628703594207764, 0.018334772437810898, -0.006176694296300411, -0.003573571564629674, -0.017443668097257614, 0.02376684546470642, -0.027660848572850227, -0.015576011501252651, 0.007867350243031979, -0.04487258568406105, -0.027319055050611496, -0.00016193222836591303, 0.03815878555178642, -0.0025512431748211384, 0.043603066354990005, 0.03322719782590866, -0.005624331533908844, 0.04619092866778374, 0.02822236530482769, -0.036278922110795975, -0.0035064336843788624, -0.005468693561851978, -0.022253189235925674, 0.0374019593000412, -0.012609733268618584, -0.01917704939842224, -0.006896901410073042, -0.036303337663412094, 0.015539390966296196, -0.011334111914038658, -0.06474542617797852, -0.005728090647608042, -0.0019210617756471038, -0.008459385484457016, 0.02147194743156433, 0.03256802260875702, 0.036376576870679855, 0.02083718776702881, -0.04499465227127075, -0.009161282330751419, 0.02783174440264702, 0.019909463822841644, -0.036718372255563736, 0.0064635565504431725, -0.022424085065722466, -0.07426681369543076, 0.03017546981573105, -0.009008696302771568, 0.012707388959825039, -0.057714249938726425, 0.04421341046690941, -0.021813740953803062, 0.029418641701340675, 0.005465642083436251, 0.020470980554819107, 0.011389043182134628, -0.002191139617934823, 0.02084939554333687, 0.0007183001143857837, 0.022704843431711197, 0.02856415882706642, 0.012432733550667763, 0.014868010766804218, -0.02624484710395336, -0.0615716315805912, 0.007098315749317408, -0.019384566694498062, 0.01883525587618351, 0.006738211959600449, -0.008758454583585262, 0.02122780866920948, 0.0005527439643628895, -0.007208177819848061, -0.01641828753054142, 0.0026153295766562223, -0.00234219990670681, -0.024523673579096794, -0.03227505832910538, 0.0058837286196649075, -0.01058338675647974, -0.055565834045410156, 0.015771321952342987, -0.009655661880970001, -0.020153600722551346, 0.01632063277065754, -0.004519606940448284, -0.010754283517599106, 0.002200294751673937, 0.019640911370515823, -0.0029403383377939463, 0.024792226031422615, 0.026391329243779182, -0.019579876214265823, 0.01605208031833172, 0.00032272006501443684, -0.022692637518048286, -0.040868718177080154, -0.02130104973912239, -0.024010982364416122, 0.02348608709871769, -0.03730430454015732, -0.024157466366887093, 0.02110574021935463, -0.03603478521108627, 0.018151668831706047, -0.009228420443832874, 0.026806363835930824, -0.0071532465517520905, -0.024963121861219406, -0.024950914084911346, 0.036498647183179855, -0.030028987675905228, 0.028979193419218063, -0.0028991401195526123, -0.001243578502908349, 0.04975534602999687, 0.00477900356054306, -0.00175016513094306, 0.01639387384057045, -0.004852245096117258, -0.0019927772227674723, -0.012072629295289516, 0.019860634580254555, 0.01071766298264265, -0.00918569602072239, 0.008691316470503807, 0.010906870476901531, 0.04926707223057747, 0.043407756835222244, -0.05009714141488075, 0.0015403588768094778, 0.021618429571390152, 0.02822236530482769, 0.00643303943797946, -0.007861247286200523, 0.005319159012287855, -0.006420832127332687, 0.002969329711049795, -0.01679670251905918, 0.031103195622563362, -0.007629315834492445, 0.017138496041297913, 0.01674787513911724, -0.0326656773686409, -0.02609836310148239, -0.015868976712226868, -0.002301001688465476, 0.015063321217894554, -0.010003559291362762, -0.0011657595168799162, -0.008245764300227165, 0.023034431040287018, -0.02856415882706642, -0.03444788604974747, -0.007531660608947277, 0.003979451023042202, -0.011291387490928173, -0.006414728704839945, -0.0324215404689312, 0.03017546981573105, -0.007836833596229553, -0.010705456137657166, -0.015771321952342987, 0.0185789093375206, 0.011291387490928173, 0.0012954578269273043, 0.01646711491048336, -0.06298763304948807, -0.009576316922903061, 0.018420221284031868, -0.013744975440204144, -0.010778697207570076, -0.00589898694306612, -0.02604953572154045, -0.004626417066901922, 0.012023801915347576, 0.008434971794486046, 0.007684247102588415, -0.011999388225376606, 0.010113420896232128, -0.008325109258294106, -0.021948015317320824, 0.017394840717315674, -0.007824626751244068, 0.003698692424222827, -0.010186662897467613, 0.018139461055397987, -0.014709320850670338, 0.012402215972542763, 0.010339248925447464, 0.009820455685257912, -0.004342606756836176, -0.01658918522298336, 0.01060780044645071, -0.009838765487074852, -0.05141548439860344, 0.03930623456835747, 0.004373123869299889, -0.0013213974889367819, 0.02150856703519821, 0.01860332489013672, -0.002612277865409851, 0.011999388225376606, -0.00945424847304821, -0.01911601424217224, -0.006884694565087557, 0.0423823744058609, -0.03525354340672493, 0.028637399896979332, 0.0001234995579579845, 0.04023396223783493, 0.014428562484681606, -0.01837139204144478, 0.031713541597127914, -0.02075173892080784, 0.0030929245986044407, -0.014575045555830002, 0.0012634147424250841, -0.00805655773729086, 0.05424748733639717, -0.01662580482661724, -0.004342606756836176, -0.00929555855691433, 0.019848428666591644, 0.007611005567014217, 0.002543614013120532, 0.05698183551430702, -0.017870910465717316, -0.010443007573485374, -0.043773964047431946, -0.014526217244565487, -0.02124001644551754, 0.002362036146223545, -0.023022223263978958, 0.018200496211647987, -0.025024157017469406, 0.005926452577114105, -0.07446212321519852, 0.0027480795979499817, 0.027148157358169556, -0.014831390231847763, -0.0025893899146467447, 0.015026700682938099, -0.012396113015711308, 0.03754844143986702, -0.003071562619879842, 0.006359797902405262, -0.01888408325612545, -0.0625481829047203, 0.041308168321847916, -0.0026595795061439276, -0.0005458775558508933, 0.01622297801077366, -0.0016311476938426495, -0.033715471625328064, 0.0028152174782007933, -0.020226841792464256, 0.04038044437766075, -0.04631299898028374, 0.02836884930729866, 0.03054167702794075, 0.010650524869561195, -0.006451349705457687, -0.02084939554333687, 0.034325819462537766, -0.011657594703137875, 0.0011253240518271923, 0.010211076587438583, -0.028881538659334183, 0.03359340503811836, 0.031615886837244034, 0.02817353792488575, -0.0024627430830150843, -0.00410762382671237, -0.026781950145959854, -0.015637045726180077, 0.012621940113604069, 0.04636182636022568, 0.02362036146223545, -0.013232285156846046, 0.015954425558447838, 0.006390315014868975, -0.01285387109965086, 0.0471186563372612, -0.0010185136925429106, 0.02358374185860157, -0.02626926079392433, -0.029711607843637466, 0.027660848572850227, 0.038940027356147766, -0.01080311182886362, -0.015405114740133286, 0.03386195749044418, 0.01396469958126545, -0.004254106432199478, -0.007598798722028732, -0.041308168321847916, -0.005297796800732613, 0.014062355272471905, -0.004031330347061157, -0.01544173527508974, -0.015893390402197838, -0.017736634239554405, 0.010217179544270039, 0.036449819803237915, 0.018151668831706047, 0.005154365673661232, -0.004138140939176083, 0.009332179091870785, 0.04636182636022568, 0.022057877853512764, 0.022448498755693436, -0.02152077481150627, 0.003250088542699814, 0.016833322122693062, 0.0009651084546931088, 0.017663393169641495, 0.010735973715782166, -0.017297185957431793, -0.022826913744211197, 0.017333805561065674, 0.0012603630311787128, -0.007903971709311008, 0.015868976712226868, -0.04155230522155762, -0.029760435223579407, 0.009063627570867538, 0.0081359026953578, 0.01610090769827366, -0.014599459245800972, 0.04716748371720314, -0.005026193335652351, 0.033715471625328064, -0.011999388225376606, -0.026708709076046944, 0.014135596342384815, -0.015844563022255898, 0.022070085629820824, -0.015917804092168808, -0.013293320313096046, 0.008428867906332016, -0.024303948506712914, -0.02800264209508896, -0.025439191609621048, -0.005215400364249945, -0.004064899403601885, -0.014062355272471905, -0.019555462524294853, 0.009069730527698994, -0.01423325203359127, -0.0333980917930603, 0.05566348880529404, 0.0016631908947601914, -0.017577944323420525, -0.0077452813275158405, -0.012023801915347576, 0.02128884382545948, -0.004656934645026922, 0.00831900630146265, 0.010876352898776531, -0.01898173801600933, 0.02125222235918045, -0.0015350183239206672, 0.0009315394563600421, -0.0026031224988400936, -0.00015830830670893192, 0.01905497908592224, 0.010021869093179703, 0.050243623554706573, 0.0068236603401601315, -0.024255121126770973, -0.014990080147981644, -0.007482833229005337, -0.0072753154672682285, 0.006051573436707258, -0.008062660694122314, 0.022228775545954704, 0.005639590322971344, 0.011993284337222576, -0.03325160965323448, 0.03046843595802784, -0.04233354702591896, -0.005441227927803993, 0.013354354538023472, -0.041015204042196274, -0.005981383845210075, 0.009942524135112762, -0.003686485579237342, 0.005505314562469721, -0.020336704328656197, -0.04216265305876732, 0.04521437734365463, -0.038573820143938065, 0.0006286556599661708, 0.017712220549583435, -0.045775894075632095, -0.010333145968616009, 0.005169624462723732, -0.03930623456835747, -0.011004525236785412, 0.006701590958982706, 0.005075021181255579, 0.00829459261149168, 0.029003607109189034, -0.0009010222274810076, -0.043725136667490005, -0.009942524135112762, 0.005236762575805187, -0.028808297589421272, -0.02150856703519821, -0.0153929078951478, -0.015807943418622017, 0.006274349521845579, 0.0568353533744812, -0.012225216254591942, -0.020031532272696495, -0.01866435818374157, -0.010974007658660412, 0.03381313011050224, 0.021923601627349854, -0.011981077492237091, 0.009112454950809479, -0.024706777185201645, 0.0031341230496764183, -0.0018707083072513342, 0.040819890797138214, 0.002670260611921549, 0.04208941012620926, -0.008770661428570747, 0.009191799908876419, -0.04418899863958359, 0.012298457324504852, -0.007409591693431139, -0.010809214785695076, 0.033935196697711945, -0.027026088908314705, 0.002090432681143284, 0.013464217074215412, -0.011633181013166904, 0.008007730357348919, -0.014806976541876793, 0.005673159379512072, 0.01407456211745739, 0.0028548899572342634, -0.01849346235394478, -0.003265347331762314, 0.03845175355672836, 0.0025512431748211384, -0.01064442191272974, -0.0255612600594759, 0.017040839418768883, -0.011974974535405636, -0.012768423184752464, 0.003503381973132491, 0.022289808839559555, -0.0015243373345583677, -0.0008033669437281787, -0.0377681665122509, 0.026830777525901794, -0.009808248840272427, 0.010674938559532166, 0.004260209854692221, -0.01167590543627739, -0.009844869375228882, 0.018163874745368958, 0.014452976174652576, -0.007842936553061008, 0.013476423919200897, 0.014868010766804218, 0.027319055050611496, 0.010766490362584591, -0.019579876214265823, -0.011846802197396755, 0.01611311547458172, 0.017602358013391495, 0.0028167434502393007, 0.01043080072849989, -0.014514010399580002, 0.01618635654449463, 0.0010238542454317212, -0.0036071406211704016, 0.034423474222421646, -0.036645129323005676, -0.030077815055847168, 0.019445599988102913, -0.019799601286649704, -0.03566857799887657, -0.021825946867465973, -0.01312242355197668, -0.017101874575018883, 0.013354354538023472, 0.019970497116446495, -0.011559939943253994, -0.02351050078868866, 0.017651185393333435, -0.021618429571390152, -0.024194085970520973, -0.019689738750457764, 0.01909160055220127, 0.0008323583751916885, 0.038720306009054184, -0.031322918832302094, 0.00808707531541586, -0.02078836038708687, -0.007549970876425505, -0.010626111179590225, -0.026757536455988884, -0.01610090769827366, 0.03564416244626045, 0.005276435054838657, 0.03745078667998314, 0.015270838513970375, 0.027367882430553436, -0.030004573985934258, -0.012499871663749218, -0.0279293991625309, -0.025243880227208138, 0.031591471284627914, 0.02330298349261284, 0.006634453311562538, 0.001130664604716003, 0.025024157017469406, -0.01652815006673336, -0.0038909511640667915, -0.012481560930609703, -0.008471592329442501, 0.014111182652413845, -0.026635468006134033, -0.0015991046093404293, -0.022070085629820824, 0.02800264209508896, -0.027270227670669556, -0.00413203751668334, 0.02797822654247284, 0.022802500054240227, 0.010516248643398285, -0.006280452944338322, 0.005337469279766083, -0.0012176388408988714, 0.0038909511640667915, -0.040844306349754333, -0.003152433317154646, 0.0009315394563600421, 0.022594982758164406, 0.03544885292649269, 0.0026519501116126776, 0.0058837286196649075, 0.002564975991845131, -0.03513147309422493, -0.04987741634249687, -0.004998727701604366, -0.010980111546814442, 0.013818217441439629, 0.004867503419518471, 0.014501803554594517, 0.01667463220655918, 0.012512078508734703, 0.036547474563121796, 0.029687194153666496, -0.01159656047821045, 0.01291490625590086, 0.011303594335913658, -0.011443973518908024, 0.0092894546687603, -0.008880523964762688, -0.0012145871296525002, 0.009777731262147427, -0.0190671868622303, 0.0466303788125515, -0.024474846199154854, -0.02338843047618866, -0.0035094853956252337, -0.043505411595106125, 0.010168352164328098, 0.028905952349305153, 0.009283351711928844, 0.014196631498634815, 0.009808248840272427, -0.021911395713686943, 0.007940592244267464, 0.01905497908592224, -0.015490562655031681, -0.0038268649950623512, -0.011321905069053173, -0.0017593202646821737, -0.011767457239329815, -0.011010629124939442, 0.016039874404668808, -0.004629469010978937, 0.0092894546687603, -0.006286556366831064, 0.04890086501836777, 0.015539390966296196, 0.0071532465517520905, 0.017675599083304405, 0.0034820197615772486, 0.0017806823598220944, 0.0005016275099478662, 0.019787393510341644, 0.027172571048140526, 0.022656016051769257, -0.0077757989056408405, -0.0013801432214677334, -0.002004984300583601, 0.021728292107582092, 0.01916484162211418, 0.013574078679084778, -0.005123848561197519, 0.012658560648560524, -0.024010982364416122, -0.01890849694609642, -0.013635113835334778, 0.03535119816660881, -0.03745078667998314, 0.022680429741740227, -0.0062407804653048515, -0.011981077492237091, -0.0032867093104869127, 0.00934438593685627, -0.03354457765817642, -0.013061389327049255, 0.015466148965060711, 0.004330399911850691, 0.02327856793999672, 0.005377141758799553, 0.005981383845210075, 0.0034423472825437784, 0.003796347649767995, 0.01165149174630642, -0.008880523964762688, 0.03232388570904732, 0.01037586946040392, 0.00945424847304821, -0.0165159422904253, -0.01879863440990448, -0.0016830271342769265, -0.015771321952342987, 0.017016425728797913, -0.014062355272471905, -0.013244492933154106, -0.026806363835930824, 0.0012252681190147996, 0.012078733183443546, -0.0211301539093256, -0.05414983257651329, -0.012023801915347576, -0.025170639157295227, -0.002905243542045355, 0.01161487028002739, -0.015197597444057465, 0.008734040893614292, -0.02553684636950493, 0.007018970791250467, -0.01541732158511877, -0.013439803384244442, 0.034252576529979706, 0.0025207260623574257, 0.017248356714844704, -0.011730835773050785, 0.009124661795794964, 0.009136868640780449, 0.022692637518048286, 0.019640911370515823, -0.006915212143212557, 0.014343113638460636, 0.01602766662836075, 0.024548087269067764, -0.0008682161569595337, 0.02309546433389187, -0.014526217244565487, -0.004882762208580971, 0.0025985450483858585, -0.004278520587831736, 0.008520419709384441, 0.002729769330471754, 0.011358525604009628, -0.01391587220132351, -0.031908851116895676, 0.017223943024873734, -0.019750773906707764, -0.0009857076220214367, 0.0092894546687603, 0.02316870726644993, -0.019518841058015823, -0.03325160965323448, 0.0020263462793082, -0.029638366773724556, -0.026513399556279182, 0.04545851796865463, -0.04184527322649956, 0.006384211592376232, 0.0015777425142005086, 0.01616194285452366, -0.027489950880408287, -0.01520980428904295, -0.007122729439288378, -0.013561871834099293, 0.012213009409606457, -0.0037932959385216236, 0.01391587220132351, -0.010882455855607986, -0.0014655916020274162, -0.0067931427620351315, -0.012267939746379852, 0.012103146873414516, -0.017956357449293137, 0.005136055406183004, -0.03037078119814396, -0.01903056539595127, -0.03532678633928299, -0.001975992927327752, 0.022729258984327316, -0.005487003829330206, 0.00588983204215765, -0.03308071568608284, 0.005706728436052799, -0.019506635144352913, 0.019396772608160973, -0.03771933913230896, -0.006146176718175411, -0.004656934645026922, -0.029858089983463287, 0.010516248643398285, -0.012573112733662128, 0.01622297801077366, -0.03815878555178642, 0.014990080147981644, 0.01641828753054142, -0.007977212779223919, -0.0014373630983754992, 0.0016982856905087829, -0.007366867270320654, -0.015868976712226868, 0.021642843261361122, -0.017638977617025375, -0.003424037015065551, -0.005560245364904404, 0.017236150801181793, 0.0012931691017001867, -0.0428706519305706, -0.01680890843272209, -0.02347387932240963, -0.0009834187803789973, -0.019787393510341644, -0.004800365772098303, -0.04470168799161911, -0.003439295571297407, -0.024303948506712914, 0.0011802552035078406, 0.005587710998952389, 0.0002376531920162961, 0.017370427027344704, 0.012438836507499218, 0.010571179911494255, -0.008166419342160225, 0.015173183754086494, 0.0006812979117967188, 0.040819890797138214, -0.00940542109310627, -0.0020568636246025562, -0.002632114104926586, -0.00033969528158195317, -0.014428562484681606, 0.015954425558447838, 0.022094499319791794, 0.0012046690098941326, 0.00014457553334068507, 0.02849091775715351, 0.01887187547981739, -0.020580843091011047, -0.006829763762652874, -0.030956711620092392, -0.009997455403208733, -0.024267328903079033, -0.029613953083753586, -0.031225264072418213, 0.014880217611789703, -0.0018295099725946784, -0.03127409145236015, 0.014648286625742912, 0.009973041713237762, -0.009277247823774815, -0.008276281878352165, -0.0010223283898085356, -0.014343113638460636, -0.0006709983572363853, 0.014501803554594517, -0.007037281058728695, 0.02374243177473545, 0.006317073479294777, -0.008508212864398956, -0.005215400364249945, -0.024035396054387093, -0.03586388751864433, 0.0033935196697711945, 0.03288540244102478, -0.010235490277409554, -7.333679968724027e-05, -0.017138496041297913, -0.014648286625742912, 0.004434158559888601, 0.003503381973132491, -0.025048570707440376, -0.006304866634309292, 0.0013717509573325515, 0.007531660608947277, 0.004687451757490635, 0.024780018255114555, -0.015966633334755898, -0.017846496775746346, 0.012951526790857315, 0.0282956063747406, 0.01289049256592989, 0.022582774981856346, -0.020165808498859406, -0.01400132104754448, -0.0019408980151638389, 0.006976246368139982, 0.010284317657351494, 0.014721527695655823, 0.017480289563536644, 0.02093484252691269, 0.019579876214265823, 0.0003694496117532253, 0.03532678633928299, -0.017138496041297913, -0.004071002826094627, -0.0006645134417340159, -0.0006786276353523135, -0.0018813892966136336, -0.02369360439479351, -0.020275669172406197, -0.0007205888978205621, 0.012695182114839554, 0.006396418437361717, 0.02321753464639187, -0.010296524502336979, 0.019335737451910973, -0.005194038152694702, -0.01898173801600933, 0.07192308455705643, -0.04658155143260956, -0.010650524869561195, 0.00020179541024845093, -0.026586640626192093, 0.019946083426475525, -0.01037586946040392, 0.017809875309467316, -0.005255072843283415, -0.011120490729808807, -0.01693097874522209, -0.026708709076046944, -0.005032296758145094, -0.020202428102493286, -0.009844869375228882, -0.02858857251703739, -0.014636079780757427, -0.012121457606554031, 0.0327877476811409, -0.005734194070100784, 0.010790904052555561, -0.006274349521845579, 0.013390975072979927, -0.02332739718258381, -0.0009117032750509679, 0.00042228263919241726, 0.020605256780982018, -0.010424697771668434, -0.004425003193318844, 0.008898833766579628, -0.00040130200795829296, 0.0015289149014279246, 0.017626771703362465, -0.012573112733662128, 0.012719595804810524, -0.0006175931193865836, 0.0030013727955520153, -0.003610192332416773, -0.009985248558223248, -0.001953104860149324, 0.00702507421374321, 0.020495394244790077, -0.003936727065593004, 0.024596914649009705, -0.012042112648487091, -0.001413712278008461, -0.02819795161485672, -0.01285387109965086, -0.03769492357969284, -0.0006767203449271619, 0.00015878514386713505, -0.007714764215052128, 0.013854837976396084, 0.0040038651786744595, -0.005548038519918919, 0.005587710998952389, 0.0239255353808403, 0.03723106160759926, 0.00700066052377224, -0.01077259425073862, -0.006198056507855654, -0.019701944664120674, 0.006274349521845579, 0.014831390231847763, 0.012744009494781494, 0.004516554996371269, 0.028857124969363213, 0.0322994701564312, -0.0043761758133769035, 0.006903005298227072, 0.0061309183947741985, -0.01301256101578474, -0.015478355810046196, -0.019640911370515823, 0.00032958644442260265, -0.007061694748699665, -0.0012664664536714554, -0.015905598178505898, -0.036669544875621796, -0.039062097668647766, -0.0052672796882689, 0.013244492933154106, -0.0004386856744531542, 0.029003607109189034, -0.009155179373919964, -0.03085905686020851, 0.01616194285452366, -0.029760435223579407, 0.03478968143463135, 0.0259274672716856, 0.030077815055847168, -0.027660848572850227, -0.000587075890507549, -0.0027816486544907093, 0.017870910465717316, 0.013671734370291233, 0.017126288264989853, 0.004946848377585411, 0.004324296489357948, 0.020190222188830376, 0.002597019076347351, 0.03535119816660881, -0.03937947750091553, -0.034325819462537766, -0.02602512203156948, -0.013207871466875076, -0.024230707436800003, 0.015453942120075226, 0.011810180731117725, 0.0015456994296982884, -0.014501803554594517, -0.002426122548058629, 0.006567315198481083, -0.009619041346013546, -0.03784140571951866, -0.022582774981856346, 0.0020766998641192913, 0.012188594788312912, 0.0038817960303276777, -0.011468388140201569, 0.008123695850372314, -0.008599764667451382, -0.01647932268679142, 0.025072984397411346, -0.022240981459617615, 0.020068151876330376, 0.005102486349642277, -0.012048215605318546, 0.002528355224058032, -0.0051909866742789745, 0.022729258984327316, 0.026293674483895302, -0.012084836140275002, 0.0011176947737112641, 0.010253801010549068, -0.012621940113604069, 0.02091042883694172, 0.002474950160831213, -0.02612277865409851, -0.004519606940448284, 0.022021258249878883, 0.02624484710395336, -0.02321753464639187, 0.0006488733342848718, 0.034594371914863586, -0.017797667533159256, -0.03571740537881851, -0.02321753464639187, 0.007116626016795635, 0.013146837241947651, 0.03762168437242508, -0.028710640966892242, -0.004605055321007967, -0.012597526423633099, 0.043944861739873886, 0.009197902865707874, 0.013476423919200897, -0.01407456211745739, 0.009417627938091755, -0.01690656505525112, -0.01043080072849989, 0.003192105796188116, 0.0029143986757844687, 0.02083718776702881, -0.009057523682713509, -0.01285387109965086, -7.004665530985221e-05, 0.00411677872762084, -0.019836220890283585, 0.02142312005162239, -0.022973395884037018, -0.0213742908090353, 0.011474491097033024, 0.01534408051520586, -0.012670767493546009, 0.0007457656320184469, 0.0230710506439209, 0.0027068813797086477, 0.0019836220890283585, 0.012286250479519367, 0.0016341995215043426, 0.016894357278943062, -5.817353303427808e-05, -0.01676008105278015, -0.015746908262372017, 0.009435937739908695, 0.009545800276100636, -0.04047809913754463, -0.015624838881194592, -0.012817250564694405, 0.013256699778139591, -0.012151974253356457, 0.01887187547981739, 0.014318699948489666, -0.013488630764186382, 0.0028548899572342634, 0.022143326699733734, -0.01628401130437851, -0.02120339497923851, 0.02814912423491478, 0.013476423919200897, 0.024218499660491943, 0.005642642267048359, -0.004891917575150728, -0.003095976309850812, 0.00015649634588044137, 0.006051573436707258, -0.02561008743941784, -0.005276435054838657, 0.0211301539093256, -0.0001515372860012576, 0.007781902328133583, -0.004071002826094627, 0.04326127469539642, -0.00924062728881836, -0.0007942118099890649, -0.0003061263123527169, -0.006268246099352837, -0.03769492357969284, -0.008221350610256195, 0.0026351658161729574, -0.004992624279111624, -0.015710286796092987, 0.012475457042455673, -0.029076848179101944, -0.011505008675158024, 0.0020034583285450935, 0.0117186289280653, -0.0070555913262069225, -0.04265092685818672, -0.029272159561514854, 0.008349522948265076, -0.010089007206261158, 0.01676008105278015, 0.012658560648560524, -0.013952492736279964, 0.03952595964074135, 0.03317837044596672, -0.015173183754086494, -0.0036529165226966143, -0.005209296941757202, 0.015466148965060711, -0.002557346597313881, -0.004656934645026922, 0.0037139509804546833, -0.0031951575074344873, 0.0239255353808403, -0.0008460911340080202, -0.029931332916021347, -0.00464472733438015, 0.0014411777956411242, -0.00115889310836792, -0.014514010399580002, 0.004467727616429329, -0.011443973518908024, 0.006286556366831064, -0.009667868725955486, 0.02132546342909336, -0.024853259325027466, 0.021825946867465973, 0.019433394074440002, 0.01513656321913004, 0.03552209585905075, -0.01072376687079668, -0.03579064831137657, -0.02622043341398239, -0.002046182518824935, 0.0161497350782156, 0.014269872568547726, -0.026513399556279182, 0.006884694565087557, 0.005035348702222109, 0.004843089729547501, 0.03452112898230553, -0.03361781686544418, -0.009496972896158695, -0.005352728068828583, -0.025439191609621048, 0.003074614331126213, -0.01303697470575571, 0.03610802814364433, 0.009149075485765934, 0.018017392605543137, 0.004199175629764795, -0.02086160145699978, 0.013317734003067017, -0.020080359652638435, -0.027026088908314705, -0.029858089983463287, -0.020544221624732018, -0.004467727616429329, -0.015624838881194592, 0.003961140755563974, 0.02353491447865963, -0.022802500054240227, 0.008062660694122314, -0.0038512786850333214, 0.007543867453932762, 0.03615685552358627, -0.0027480795979499817, -0.011212042532861233, -0.0014617769047617912, 0.006640556734055281, -0.05580997094511986, 0.02148415334522724, 0.004370072390884161, 0.007702557370066643, -0.014245458878576756, 0.026733122766017914, 0.01668683998286724, 0.04404251649975777, -0.01872539333999157, 0.007971108891069889, -0.01679670251905918, -0.03381313011050224, 0.005200141575187445, -0.0013847207883372903, -0.002729769330471754, -0.01840801350772381, -0.015466148965060711, 0.01904277317225933, 0.006756522227078676, 0.013403181917965412, 0.0165769774466753, 0.012621940113604069, -0.0070433844812214375, -0.022338636219501495, -0.03986775502562523, 0.007824626751244068, -0.010497938841581345, 0.025268293917179108, -0.013317734003067017, 0.01066273171454668, 0.002993743633851409, -0.02604953572154045, 0.023937741294503212, -0.008227454498410225, 0.0035888301208615303, 0.002093484392389655, 0.01516097690910101, -0.031127609312534332, 0.01528304535895586, -0.0043761758133769035, 0.022912362590432167, 0.00013437132292892784, -0.004855296574532986, 0.015868976712226868, 0.012359491549432278, -0.031078781932592392, -0.0003274883783888072, -0.02326636202633381, 0.01180407777428627, -0.008666902780532837, -0.027734089642763138, 0.010931284166872501, 0.03044402226805687, -0.011016732081770897, 0.00707390159368515, 0.005483952350914478, 0.004647779278457165, -0.025072984397411346, -0.02607394941151142, 0.009735006839036942, -0.027685262262821198, 0.038817960768938065, 0.004055744502693415, -0.027441123500466347, -0.022460706532001495, 0.00477900356054306, -0.001596052898094058, 0.015978839248418808, 0.03786582127213478, -0.00823355745524168, -0.010113420896232128, -0.019384566694498062, 0.012719595804810524, 0.013598492369055748, 0.012335077859461308, -0.02585422620177269, -0.014855803921818733, -0.03974568471312523, -0.015795735642313957, -0.009948628023266792, 0.02578098513185978, -0.0080748675391078, 0.013452010229229927, -0.03261684998869896, -0.0007434768485836685, 0.017553530633449554, -0.02141091227531433, 0.01622297801077366, 0.02602512203156948, -0.02080056630074978, -0.004174761474132538, 0.017748840153217316, -0.005813538562506437, 0.0036193474661558867, -0.04421341046690941, 0.021532980725169182, 0.0074156951159238815, -0.009673972614109516, -0.015051114372909069, -0.000531000376213342, -0.00042190117528662086, 0.019262496381998062, 0.0016036821762099862, -0.011437870562076569, -0.012719595804810524, 0.003982502967119217, 0.015063321217894554, -0.01895732432603836, 0.017651185393333435, 0.0007759014260955155, -0.01622297801077366, 0.02394994907081127, -0.017162909731268883, 0.007159349974244833, -0.009765524417161942, -0.006799246184527874, -0.0027969072107225657, 0.005599917843937874, -0.004656934645026922, -0.0008979705162346363, -0.027026088908314705, 0.002430699998512864, -0.010027972981333733, -0.002467320766299963, -0.015966633334755898, -0.002435277681797743, -0.0036315543111413717, 0.013220078311860561, 0.005349676124751568, 0.005572452209889889, -0.006075987126678228, 0.013793802820146084, 0.00839835125952959, 0.0077330744825303555, 0.017785461619496346, 0.009106351062655449, 0.020239049568772316, 0.004428055137395859, 0.0050658658146858215, -0.0050231413915753365, 0.006274349521845579, -0.01652815006673336, -0.003268399043008685, 0.028954779729247093, -0.014379735104739666, 0.008148109540343285, 0.010095111094415188, -0.0004428817774169147, 0.011712525971233845, 0.024413811042904854, -0.0056304349564015865, 0.006988453213125467, -0.0018447686452418566, -0.0014694062992930412, 0.017846496775746346, 0.029003607109189034, -0.000648110406473279, -0.012597526423633099, -0.00023269413213711232, -0.006176694296300411, -0.009673972614109516, -0.015771321952342987, -0.008953765034675598, -0.008819488808512688, 0.0005088753532618284, -0.02595188096165657, 0.024120844900608063, 0.005337469279766083, 0.0028854073025286198, -0.012029905803501606, 0.010107317939400673, -0.007244798354804516, -0.006738211959600449, -0.0030898728873580694, 0.013867044821381569, 0.00700066052377224, 0.0067260051146149635, 0.006982349790632725, 0.01047962810844183, 0.010070697404444218, 0.014306493103504181, -0.0003269161970820278, 0.0234372578561306, -0.009753317572176456, 0.00811148900538683, -0.007940592244267464, -0.0093504898250103, -0.0037078475579619408, 0.004479934461414814, 0.017675599083304405, 0.02561008743941784, -0.01848125457763672, -0.009234524331986904, 0.0030212090350687504, -0.006866384297609329, 0.01074207667261362, -0.01534408051520586, -0.034057267010211945, -0.007769695483148098, -0.01071766298264265, -0.008306799456477165, -0.012512078508734703, -0.001222979393787682, 0.019762979820370674, -0.005731142126023769, -0.00356441643089056, 0.003927571699023247, 0.01068714540451765, 0.0009216213948093355, -0.01904277317225933, 0.006707694381475449, -0.002127053216099739, -0.007440108805894852, 0.010021869093179703, -0.012036008760333061, 0.022228775545954704, 0.02088601514697075, 0.013598492369055748, 0.020239049568772316, -0.003515588818117976, -0.006634453311562538, 0.003662071656435728, 0.018383599817752838, -0.01920146308839321, 0.04411575570702553, 0.005902038887143135, 0.003951985854655504, -0.0002384161198278889, 0.005487003829330206, 0.0022552257869392633, -0.01846904866397381, 0.010211076587438583, 0.01903056539595127, 0.020239049568772316, -0.0010276688262820244, -0.008666902780532837, -0.00924673117697239, -0.007574385032057762, 0.0036315543111413717, -0.017004219815135002, -0.005230659153312445, -0.003475916339084506, -0.0008499057730659842, -0.00015706854173913598, -0.006677177269011736, 0.03334926441311836, -0.013110216706991196, 0.013085803017020226, -0.005563297308981419, -0.014599459245800972, -0.01066883560270071, 0.022106705233454704, 0.011517215520143509, 0.018420221284031868, 0.009637352079153061, -0.009716697037220001, 0.013757182285189629, 0.003378261113539338, 0.007171556819230318, -0.0036376577336341143, 0.010259903967380524, 0.0027770709712058306, -0.005276435054838657, 0.006811453495174646, -0.009362696669995785, 0.021655051037669182, 0.009124661795794964, -9.703536306915339e-06, 0.01896953210234642, 0.017675599083304405, 0.006701590958982706, 0.03019988350570202, 0.005651797167956829, -0.029906919226050377, 0.002358984434977174, 0.0038329684175550938, 0.014428562484681606, -0.005151314195245504, -0.01516097690910101, 0.005599917843937874, 0.0064818668179214, 0.019213669002056122, 0.0008735566516406834, -0.006549004931002855, -0.007647626101970673, 0.004632520489394665, -0.017956357449293137, 0.017663393169641495, 0.036645129323005676, 0.009735006839036942, 0.019323531538248062, 0.018017392605543137, 0.01861553080379963, -0.005664004012942314, -0.027563191950321198, -0.00043448954238556325, 0.017553530633449554, -0.005956969689577818, -0.004135089460760355, 0.007946695201098919, 0.0010551343439146876, -0.0034576060716062784, 0.0007125781266950071, -0.013415388762950897, -0.0004119830555282533, 0.0033599508460611105, 0.002102639526128769, -0.0006053862161934376, 0.0006355220102705061, -0.011071663349866867, 0.007897867821156979, 0.0051635210402309895, 0.006622246466577053, -0.002004984300583601, 0.017626771703362465, 0.003951985854655504, -0.010925180278718472, -0.0028869330417364836, 0.0037780371494591236, -0.007556074298918247, -0.019787393510341644, -0.005670107435435057, 0.0004886576789431274, -0.003066984936594963, 0.017150701954960823, -0.01872539333999157, -0.006976246368139982, -0.0021590963006019592, -0.012042112648487091, 0.007659833412617445, -0.021886982023715973, 0.012066526338458061, 0.0057433489710092545, 0.012731802649796009, -0.0007450027042068541, -0.013268906623125076, 0.020422153174877167, 0.0001236902899108827, 0.030932297930121422, 0.011572146788239479, 0.0050506070256233215, -0.0028243728447705507, -0.006610039155930281, 0.01407456211745739, 0.03974568471312523, -0.006628349889069796, -0.0052733831107616425, 0.012560905888676643, -0.0011520266998559237, 0.022704843431711197, 0.002279639709740877, -0.00929555855691433, -0.02849091775715351, -0.009393214248120785, -0.011865111999213696, -0.009765524417161942, 0.01058338675647974, -0.013537458144128323, -0.005804383661597967, 0.009136868640780449, -0.00376888201572001, 0.0008399877115152776, 0.011236456222832203, 0.029589539393782616, 0.009735006839036942, 0.031225264072418213, -0.007342453580349684, -0.018383599817752838, 0.00462031364440918, 0.017248356714844704, -0.017919737845659256, -0.0055510904639959335, 0.03781699389219284, 0.008019937202334404, -0.006137021817266941, -0.003625450888648629, -0.008636385202407837, 0.004418899770826101, -0.000672524212859571, -0.003265347331762314, 0.010412489995360374, -0.019640911370515823, 0.01635725423693657, 0.01669904589653015, 0.005471745505928993, 0.045824725180864334, -0.006774832494556904, 0.01895732432603836, -0.0036040889099240303, -0.003671226790174842, 0.00645745312795043, 0.021825946867465973, 0.022424085065722466, 0.0026183812879025936, -0.011334111914038658, 0.022204361855983734, -1.2707579116977286e-05, 0.01678449474275112, 0.006347591057419777, -0.03022429719567299, -0.008251868188381195, -0.006866384297609329, 0.00955190323293209, 0.006603935733437538, 0.008001626469194889, 0.013232285156846046, 0.008514316752552986, -0.012292353436350822, 0.008996489457786083, -0.004388382658362389, -0.009948628023266792, 0.02612277865409851, 0.004730175714939833, -0.012927113100886345, 0.02366919070482254, -0.02330298349261284, 0.018078427761793137, -0.0019073289586231112, 0.01428207941353321, 0.010729869827628136, 0.017626771703362465, 0.006085142493247986, 0.003659019945189357, -0.026830777525901794, 7.667462341487408e-05, -0.0006454401300288737, 0.011474491097033024, 0.0005527439643628895, -0.013574078679084778, -0.004031330347061157, -0.013574078679084778, -0.010424697771668434, -0.031322918832302094, 0.01874980702996254, -0.0055358316749334335, 0.01309800986200571, -0.011352421715855598, -0.005779969971626997, 0.007122729439288378, 0.018224909901618958, -0.006210263352841139, 0.0030578298028558493, 0.017626771703362465, -0.012707388959825039, 0.006359797902405262, 0.017883116379380226, 0.0021728291176259518, 0.016943184658885002, -0.00011854049807880074, -0.010125627741217613, -0.014416355639696121, 0.01633283868432045, -0.0015617209719493985, 0.005422917660325766, -0.0011558413971215487, 0.008416661061346531, -0.006085142493247986, 0.0036193474661558867, -0.021874774247407913, 0.004565382841974497, 0.003710899269208312, 0.0032226231414824724, 0.00046691414900124073, 0.010284317657351494, 0.015942217782139778, -0.02126443013548851, -0.008245764300227165, 0.012927113100886345, 0.0061309183947741985, 0.0019714152440428734, 0.01064442191272974, -0.021764911711215973, 0.03063933365046978, 0.005822693929076195, -0.0034209853038191795, 0.006085142493247986, -0.01072376687079668, 0.015124356374144554, 0.008941558189690113, -0.011169318109750748, 0.023986568674445152, 0.022485120221972466, 0.0333980917930603, -0.01068714540451765, -0.003869588952511549, -0.000773612642660737, 0.017053047195076942, -0.029418641701340675, 0.0056182281114161015, 0.0035766232758760452, -0.007379074580967426, 0.010388076305389404, 0.03478968143463135, 0.01893291063606739, -0.019726360216736794, 0.019470013678073883, -0.0003427470219321549, 0.011987181380391121, -0.007189867552369833, -0.0021865619346499443, -0.0014755097217857838, -0.004434158559888601, -0.0014465183485299349, -0.009838765487074852, 0.00201871688477695, 0.009924214333295822, 0.00759269529953599, 0.007446212228387594, 0.03696250915527344, -0.0053954520262777805, 0.0035674681421369314, 0.0028457348234951496, -0.008740144781768322, -0.0049132793210446835, 0.01850566826760769, -0.018200496211647987, -0.0326656773686409, -0.007122729439288378, -0.004394486080855131, -0.019921669736504555, -0.048046380281448364, -0.007971108891069889, 0.021557394415140152, -0.0016464063664898276, -0.0026275364216417074, -0.007324143312871456, -0.009252834133803844, 0.043358929455280304, -0.00046119216131046414, -0.008062660694122314, 0.0038024510722607374, 0.008465489372611046, -0.011572146788239479, 0.022619396448135376, 0.01617415063083172, -0.0036193474661558867, -0.018261531367897987, 0.008636385202407837, -0.013976906426250935, -0.0009948627557605505, -0.016992012038826942, 0.0040984684601426125, -0.009057523682713509, -0.02115456759929657, 0.014636079780757427, 0.010058490559458733, -0.01303697470575571, 0.01051014568656683, -0.017748840153217316, 0.0028213211335241795, 0.02597629465162754, 0.004901072476059198, -0.021594015881419182, 0.017797667533159256, -0.0012573113199323416, 0.011968870647251606, -0.0032958644442260265, 0.018176082521677017, -0.00014972532517276704, -0.001239763805642724, -0.00699455663561821, 0.008782868273556232, -0.020495394244790077, 0.013720561750233173, -0.004244951531291008, 0.020483188331127167, 0.02147194743156433, 0.00845328252762556, -0.01639387384057045, 0.009515282697975636, -0.007092212326824665, -0.013793802820146084, -0.011816284619271755, 0.02304663695394993, -0.010870249010622501, -0.003967244178056717, 0.013708354905247688, -0.034228164702653885, 0.007006763946264982, -0.000624078034888953, 0.010241594165563583, -0.02846650406718254, -0.01402573473751545, 0.023144293576478958, -0.028661813586950302, 0.013244492933154106, 0.007434005383402109, -0.020031532272696495, -0.007385178003460169, 0.0017120185075327754, 0.00712883286178112, 0.0018279841169714928, 0.014697114005684853, 0.010497938841581345, -0.00947255827486515, -0.010278214700520039, -0.017382632941007614, -0.008709627203643322, 0.032079748809337616, -0.01166980154812336, -0.008996489457786083, 0.003933675121515989, -0.017736634239554405, -0.004244951531291008, 0.01868877187371254, 0.02084939554333687, -0.02081277407705784, -0.005651797167956829, -0.006768729072064161, 0.0015449364436790347, 0.020470980554819107, -0.01624739170074463, -0.03381313011050224, 0.01889628916978836, -0.002993743633851409, -0.01658918522298336, -0.0029479677323251963, -0.019457807764410973, -0.014733734540641308, 0.01677228882908821, -0.015771321952342987, 0.003034941852092743, 0.0038177096284925938, -0.009258938021957874, -0.00119093619287014, -0.00046767707681283355, 0.012005491182208061, 0.0037414166145026684, 0.004421951714903116, 0.014330906793475151, 0.01165149174630642, 0.011096077039837837, -0.005142158828675747, 0.0032928127329796553, -0.0019439497264102101, 0.02783174440264702, -0.013085803017020226, -0.000283619825495407, -0.007806316018104553, -0.011004525236785412, 0.0033324852120131254, 0.012621940113604069, 0.005816590506583452, 0.018444634974002838, 0.007214281242340803, -0.012328974902629852, 0.015112148597836494, -0.008514316752552986, -0.004492141306400299, 0.04985300078988075, -0.002017191145569086, 0.00816031638532877, 0.029174504801630974, -0.017736634239554405, 0.03771933913230896, -0.009570213966071606, 0.0005523624713532627, 0.004907175898551941, 0.024255121126770973, -0.0010063067311421037, 0.006634453311562538, -0.008630282245576382, -0.004995676223188639, 0.0050536589697003365, -0.006664970424026251, 0.012536492198705673, 0.003204312641173601, -0.01550277043133974, -0.0189451165497303, -0.0011581301223486662, -0.012719595804810524, 0.00376888201572001, 0.00207364815287292, 0.019787393510341644, 0.0031768472399562597, 0.02098366990685463, -0.00030212089768610895, -0.03325160965323448, 0.0037810890935361385, 0.0030502004083245993, 0.0020644927863031626, -0.010052386671304703, -0.002204872202128172, -0.013415388762950897, 0.013452010229229927, 0.010986215434968472, 0.0026519501116126776, -3.375972301000729e-05, 0.020495394244790077, -0.019628703594207764, 0.014452976174652576, -0.017797667533159256, -0.006982349790632725, 0.008587557822465897, -0.007849040441215038, 9.684463293524459e-05, -0.017150701954960823, 0.0058806766755878925, -0.012078733183443546, 0.022765878587961197, 0.0014938201056793332, 0.02156960219144821, -0.008575350977480412, -0.006664970424026251, -0.012359491549432278, -0.01613752916455269, -0.0010383499320596457, -0.024621328338980675, -0.020043738186359406, 0.007238694932311773, 0.005725038703531027, -0.020678497850894928, -0.008740144781768322, 0.017602358013391495, 0.015173183754086494, -0.011266973800957203, 0.010912973433732986, 0.010394180193543434, 0.02585422620177269, -0.005459538660943508, 0.027782917022705078, 0.017870910465717316, -0.006201107986271381, -0.012072629295289516, 0.0054137627594172955, 0.003906209720298648, -0.019262496381998062, 0.0006957935984246433, -0.024804431945085526, -0.011212042532861233, -0.007647626101970673, -0.017773253843188286, 0.010137834586203098, 0.019238082692027092, 0.011633181013166904, 0.0021194240543991327, -0.007928385399281979, -0.00020484713604673743, -0.015991047024726868, 0.005731142126023769, 0.010302628390491009, 0.018090633675456047, -0.012365595437586308, 8.201514719985425e-05, -0.009075834415853024, -0.0036315543111413717, -0.01177356019616127, -0.0033843645360320807, 0.024926500394940376, -0.011328008025884628, 0.004464675672352314, -0.009088041260838509, -0.0041137272492051125, 0.02376684546470642, -0.025243880227208138, 0.00115889310836792, -0.03066374734044075, -0.022900154814124107, 0.0016662426060065627, -0.0008682161569595337, 0.015124356374144554, -0.005612124688923359, -0.01607649400830269, 0.019555462524294853, -0.012115353718400002, 0.005691469646990299, -0.014501803554594517, -0.02340063825249672, -0.0015380701515823603, -0.007806316018104553, 0.011474491097033024, 0.0023956052027642727, -0.01855449564754963, 0.004281572066247463, -0.0013038500910624862, -0.00087508256547153, -0.012548699043691158, -0.0021529928781092167, -0.011468388140201569, 0.008642489090561867, -0.008911040611565113, 0.0072631086222827435, -0.00753776403144002, -0.02600070834159851, -0.0020797515753656626, -0.00842276494950056, -0.001725751324556768, -0.024706777185201645, -0.017590150237083435, 0.0023391481954604387, -0.004559279419481754, 0.012451043352484703, 0.011706422083079815, 0.017065253108739853, 0.005337469279766083, -0.013464217074215412, 0.00013408523227553815, -0.01837139204144478, -0.0020690704695880413, -0.011547732166945934, 0.01643049530684948, 0.001884441007860005, -0.017956357449293137, 0.014037941582500935, -0.024194085970520973, 0.00927114486694336, -0.017895324155688286, -0.015624838881194592, -0.024743396788835526, -0.01646711491048336, 0.01528304535895586, -0.00764152267947793, -0.0238645002245903, 0.00040092054405249655, 0.02109353244304657, -0.031371746212244034, -0.0023711915127933025, 0.017187323421239853, 0.007141039706766605, -0.01674787513911724, 0.00592950452119112, 0.017761047929525375, -0.015087734907865524, 0.004656934645026922, 0.002864045323804021, 0.003326381789520383, -0.03701133653521538, -0.022948982194066048, 0.0037536234594881535, 0.003054778091609478, -0.020226841792464256, -1.3303620107762981e-05, 0.009673972614109516, 0.0022842171601951122, -0.006408625282347202, 0.011114387772977352, -0.0027938554994761944, -0.014343113638460636, 0.00031051316182129085, -0.005389348603785038, -0.004400589503347874, 0.008611971512436867, 0.013281113468110561, -0.03540002554655075, -0.03488733619451523, -0.024657949805259705, -0.020165808498859406, -0.0005989013006910682, 0.004519606940448284, 0.013769389130175114, -0.017126288264989853, 0.015685873106122017, 0.003909261431545019, 0.009747213684022427, 0.0077452813275158405, -0.017443668097257614, -0.027294641360640526, 0.012377802282571793, 0.020532015711069107, 0.002613803604617715, -0.019482221454381943, -0.002006510039791465, -0.038842372596263885, 0.03264126554131508, -0.011212042532861233, -0.01301256101578474, -0.003997761756181717, -0.01899394579231739, -0.002592441625893116, -0.014697114005684853, 0.014306493103504181, 0.028881538659334183, 0.007867350243031979, 0.013818217441439629, 0.013854837976396084, -0.008441074751317501, 0.019787393510341644, -0.0017150702187791467, -0.01865215227007866, -0.02133767120540142, -0.0058806766755878925, 0.002438329393044114, -0.01396469958126545, 0.012322871014475822, -0.004034382291138172, 0.00710441917181015, 0.00808097142726183, -0.019799601286649704, -0.04184527322649956, -0.0016631908947601914, 0.01636946015059948, 0.029711607843637466, -0.0036651233676820993, 0.013452010229229927, 0.003289761021733284, -0.007116626016795635, 0.009283351711928844, 0.0034820197615772486, -0.022399671375751495, 0.005789124872535467, -0.024682363495230675, -0.020373325794935226, 0.013390975072979927, 0.008947662077844143, -0.00761710898950696, -0.0015746908029541373, -0.009637352079153061, 0.020532015711069107, 0.010003559291362762, -0.005667055957019329, -0.004162554629147053, -0.003066984936594963, 0.02362036146223545, -0.006903005298227072, -0.004797313828021288, 0.0026962002739310265, 0.017370427027344704, -0.004812572617083788, -0.011028938926756382, 0.0014915312640368938, -0.018005184829235077, -0.004717968869954348, -0.00463557243347168, 0.01309800986200571, 0.0020324497018009424, 0.0038177096284925938, 0.018359186127781868, -0.003045622957870364, 0.013928079046308994, 0.0038390718400478363, 0.0017318547470495105, -0.017895324155688286, 0.017407046630978584, 0.0013641216792166233, 0.014355320483446121, 0.02827119268476963, 0.022094499319791794, 0.000457758957054466, -0.0187009796500206, -0.03466761112213135, -0.000939931720495224, 0.026513399556279182, 0.012029905803501606, 0.013549664989113808, -0.020605256780982018, 0.004281572066247463, -0.01602766662836075, 0.015295252203941345, 0.0053832451812922955, 0.020190222188830376, 0.012011595070362091, 0.00471491739153862, -0.0014007424470037222, -0.007867350243031979, 0.01682111620903015, 0.000656121177598834, 0.012402215972542763, -0.00048140983562916517, -0.00039481709245592356, -0.03083464317023754, -0.004022175446152687, -0.007354660425335169, 0.014404148794710636, 0.00942983478307724, -0.014538424089550972, 0.0027206139639019966, 0.010253801010549068, -0.011065559461712837, 0.0052733831107616425, 0.003936727065593004, -0.009173489175736904, -0.012682975269854069, 0.0027038296684622765, 0.01282945740967989, -0.007232591509819031, 0.020690705627202988, -0.010546766221523285, 0.000623696600086987, 0.01644270122051239, -0.010217179544270039, 0.01895732432603836, -0.029931332916021347, 0.00015935733972582966, 0.0004119830555282533, 0.006347591057419777, -0.01610090769827366, 0.028808297589421272, 0.014465183019638062, -0.011285284534096718, -0.010833628475666046, -0.01656477153301239, -0.011920043267309666, -0.0027847003657370806, -0.008691316470503807, 0.004363968502730131, -0.009661765769124031, -0.012390009127557278, 0.027538778260350227, 0.012286250479519367, -0.004885814152657986, 0.006817556917667389, -0.011389043182134628, 0.025146225467324257, 0.008526523597538471, 0.008166419342160225, 0.029833676293492317, -0.013610699214041233, -0.0031615884508937597, 0.02853974513709545, 0.017297185957431793, 0.01159656047821045, 0.003475916339084506, -0.010070697404444218, 0.0017532168421894312, 0.02102029137313366, -0.0021178980823606253, -0.007684247102588415, 0.011248663067817688, -0.009619041346013546, -0.01911601424217224, 0.02783174440264702, -0.004855296574532986, -5.655230415868573e-05, 0.021911395713686943, 0.01876201294362545, 0.01069324929267168, -0.0062407804653048515, 0.0018874927191063762, 0.017577944323420525, -0.0012077207211405039, -0.007586591877043247, 0.007849040441215038, 0.006292659789323807, 0.006951832678169012, 0.015991047024726868, 0.028637399896979332, 0.02597629465162754, -0.005111641716212034, 0.004281572066247463, 0.025414777919650078, -0.020080359652638435, -0.009673972614109516, -0.006750418804585934, 0.014477389864623547, -0.024511465802788734, -0.020532015711069107, -0.003143278183415532, -0.0008315954473800957, -0.005596866365522146, -0.012585319578647614, -0.005688418168574572, -0.012817250564694405, 0.015270838513970375, -0.012408319860696793, -0.024999743327498436, -0.02604953572154045, 0.023962154984474182, -0.004934641532599926, -0.006317073479294777, 0.008673006668686867, -0.009277247823774815, -0.0010261429706588387, 0.00422664126381278, 0.009307765401899815, -0.0010314835235476494, -0.007611005567014217, -0.013171250931918621, 0.008203040808439255, 0.009991352446377277, -0.00952748954296112, 0.006799246184527874, -6.232197483768687e-05, 0.008123695850372314, -0.008093178272247314, -0.012133664451539516, 0.00842276494950056, -0.027782917022705078, -0.0060881939716637135, -0.017260564491152763, -0.01658918522298336, -0.007818522863090038, -0.026733122766017914, -0.011920043267309666, -0.011492801830172539, -0.02141091227531433, -0.002146889455616474, 0.034032851457595825, 0.026952847838401794, -0.012115353718400002, 0.012536492198705673, 0.010046282783150673, -0.045849137008190155, 0.014294286258518696, 0.003884847741574049, -0.008911040611565113, 0.0024123897310346365, 0.006210263352841139, -0.005493107717484236, 0.0024703724775463343, -0.001899699680507183, 0.010223283432424068, 0.012621940113604069, -0.017870910465717316, 0.007098315749317408, -0.012646353803575039, 0.0004726361366920173, 0.003454554360359907, 0.002746553858742118, -0.02141091227531433, 0.015624838881194592, -0.00384822697378695, 8.935836376622319e-05, -0.011505008675158024, 0.028759470209479332, 0.024780018255114555, 0.011047249659895897, 0.005056710448116064, 0.014367528259754181, -0.003720054402947426, 0.000297734048217535, 0.0008125221356749535, 0.011627077125012875, 0.039135340601205826, -0.028710640966892242, -0.03832968324422836, -0.01064442191272974, 0.010815318673849106, -0.009649558924138546, -0.03725547716021538, 0.011016732081770897, 0.0045684343203902245, -0.0011108283651992679, 0.024108638986945152, -0.012127560563385487, -0.01536849420517683, 0.0031982092186808586, -0.005932555999606848, 0.00958242081105709, -0.022485120221972466, 0.01175525039434433, 0.017883116379380226, 0.01611311547458172, -0.02318091318011284, 0.004894969053566456, -8.02985523478128e-05, -0.012792836874723434, -0.015759114176034927, 0.013305527158081532, 0.015148770064115524, -0.008782868273556232, 0.029882505536079407, 0.009966938756406307, 0.005355780012905598, -0.0234372578561306, 0.009204006753861904, -0.017382632941007614, 0.007867350243031979, -0.0117186289280653, 0.022167740389704704, -0.0077757989056408405, -0.006185849197208881, 0.013671734370291233, 0.0075255571864545345, 0.008300695568323135, -0.003375209402292967, 0.004415848292410374, 0.00471491739153862, -0.008831696584820747, -0.011358525604009628, -0.017736634239554405, 0.014404148794710636, 0.0006580285262316465, -0.006555108353495598, 0.01303697470575571, 0.004717968869954348, 0.0026992519851773977, -0.022887947037816048, 0.012585319578647614, -0.022338636219501495, -0.0011718629393726587, 0.007977212779223919, 0.00014715043653268367, -0.003942830488085747, 0.009417627938091755, 0.0076537299901247025, -0.007281419355422258, 0.004022175446152687, 0.0040008132345974445, -0.016064288094639778, 0.0011382938828319311, 0.017382632941007614, 0.019506635144352913, -0.0255612600594759, 0.01643049530684948, -0.013635113835334778, 0.021667256951332092, 0.0054107108153402805, -0.031640298664569855, 0.002966277999803424, 0.013891458511352539, 0.007885660976171494, 0.0050231413915753365, 0.010284317657351494, -0.008868317119777203, 0.010113420896232128, 0.011224249377846718, -0.0021178980823606253, -0.008788972161710262, 0.005310004111379385, -0.012646353803575039, 2.5534367523505352e-05, 0.009490869008004665, 0.013744975440204144, -0.0129637336358428, -0.003054778091609478, 0.02347387932240963, 0.015038907527923584, -0.013879251666367054, -0.0165769774466753, 0.010467421263456345, 0.015356287360191345, 0.0012168758548796177, -0.004672192968428135, 0.020251255482435226, 0.007690350525081158, -0.008032144047319889, 0.001547988154925406, 0.00710441917181015, 0.01661359891295433, -0.02595188096165657, -0.0025192000903189182, -0.019238082692027092, -0.010882455855607986, 0.010888559743762016, 0.01618635654449463, -0.015856770798563957, -0.0065856254659593105, 0.01662580482661724, -0.013342147693037987, 0.0007995523046702147, 0.017407046630978584, -0.013232285156846046, 0.0008354100864380598, 0.012548699043691158, -0.025268293917179108, -0.004199175629764795, -0.00414729630574584, 0.0007106707780621946, -0.003735313192009926, 0.009643455035984516, 0.0039886063896119595, -0.0023605104070156813, 0.010845835320651531, -0.00022086869284976274, 0.02141091227531433, -0.0011863586260005832, -0.010821421630680561, 0.017077460885047913, 0.00384822697378695, -0.01658918522298336, 0.004980417434126139, 0.0025695536751300097, -0.0017196477856487036, 0.025146225467324257, -0.02846650406718254, 0.014111182652413845, -0.010937387123703957, -0.022594982758164406, 0.0005405370611697435, 0.0327877476811409, 0.0035918820649385452, -0.009637352079153061, 0.004391434136778116, 0.0004363968619145453, 0.01686994358897209, -0.007098315749317408, 0.01899394579231739, 0.006060728803277016, -0.009869283065199852, 0.0009673972381278872, -0.0003694496117532253, 0.0013542035594582558, -0.01405014842748642, 0.009161282330751419, -0.02086160145699978, 0.024621328338980675, -0.0012283198302611709, 0.031737953424453735, 0.006518487352877855, 0.001454147626645863, -0.008697420358657837, 0.008788972161710262, 0.006738211959600449, -0.022643810138106346, -0.004952951800078154, 0.011840698309242725, 0.004382279235869646, -0.0049132793210446835, -0.005923401098698378, -0.03244595602154732, 0.0036437613889575005, 0.0005557956756092608, 0.00961293838918209, -0.017394840717315674, -0.0027480795979499817, -0.003979451023042202, 0.013928079046308994, 0.013842631131410599, 0.002604648470878601, 0.005279486533254385, -0.005349676124751568, 0.0028793038800358772, -0.0002498601097613573, -0.017407046630978584, -0.0013778544962406158, -0.01275621633976698, 0.00643303943797946, -0.0033599508460611105, -0.020678497850894928, -0.01895732432603836, -0.034301403909921646, -0.007861247286200523, 0.000741569499950856, 0.005557193886488676, -0.017590150237083435, 0.021948015317320824, -0.022570569068193436, -0.003915364854037762, -0.011028938926756382, -0.016857735812664032, -0.024157466366887093, 0.0002666445798240602, 0.00020026954007335007, -0.034008439630270004, -0.008642489090561867, 0.004394486080855131, 0.005349676124751568, 0.0037780371494591236, 0.015868976712226868, -0.003515588818117976, 0.010656628757715225, 0.012451043352484703, 2.3531671104137786e-05, -0.022350843995809555, -0.0005420629167929292, 0.006329280324280262, -0.00467524491250515, -0.010046282783150673, -0.012176387943327427, 0.01652815006673336, -0.020593049004673958, -0.029589539393782616, 0.02622043341398239, 0.013708354905247688, 0.014806976541876793, 0.0053954520262777805, -0.0030090021900832653, 0.007147143129259348, -0.007604902144521475, -0.01654035784304142, -0.0005866943974979222, 0.010851939208805561, 0.003115812549367547, 0.0011337163159623742, -0.015551597811281681, 0.02790498547255993, 0.01693097874522209, -0.009850972332060337, -0.005960021633654833, -0.02597629465162754, -0.01291490625590086, 0.009973041713237762, -0.0210080835968256, -0.014611666090786457, -0.01674787513911724, -0.008990385569632053, -0.014660493470728397, -0.0028426831122487783, 0.009680076502263546, -0.004412796348333359, -0.005075021181255579, -0.011419559828937054, 0.011205939576029778, -0.02110574021935463, 0.01047962810844183, -0.015978839248418808, 0.005676210857927799, 0.006310970056802034, 0.017480289563536644, 0.004605055321007967, -0.009631248190999031, -0.03464319929480553, 0.006445246282964945, -0.01063831802457571, -0.015014493837952614, -0.00816031638532877, -0.006567315198481083, 0.00953359343111515, -0.01640608161687851, -0.02124001644551754, 0.021764911711215973, 0.01285387109965086, -0.0011810180731117725, -0.00710441917181015, -0.02824677899479866, 0.014916838146746159, 0.024206293746829033, -0.0009208584087900817, -0.013146837241947651, 0.013220078311860561, 0.01619856432080269, 0.013329940848052502, 0.016003252938389778, -0.01640608161687851, 0.009722799994051456, 0.008758454583585262, -0.0014602510491386056, -0.0325436107814312, 0.0053832451812922955, -0.04289506748318672, -0.025439191609621048, 0.0117186289280653, -0.014538424089550972, -0.003771933726966381, 0.005496159195899963, -0.0013664105208590627, -0.006372004747390747, -0.002329993061721325, 0.010302628390491009, -0.02141091227531433, -0.0032073643524199724, 0.017309391871094704, 0.011315801180899143, 0.01896953210234642, 0.0018386651063337922, 0.010131731629371643, 0.003732261247932911, -0.014514010399580002, -0.017846496775746346, -0.004397537559270859, 0.004730175714939833, -0.004812572617083788, -0.014904631301760674, -0.0038177096284925938, 0.0039001062978059053, 0.015649253502488136, 0.021923601627349854, 0.00472407229244709, 0.002896088408306241, -0.008837799541652203, -0.005676210857927799, -0.00294949347153306, 0.0030166315846145153, -0.00148237613029778, 0.006124814972281456, -0.00585015956312418, -0.027514364570379257, 0.014440769329667091, 0.007067798171192408, -0.0028060623444616795, 0.0002386068517807871, 0.004363968502730131, 0.0006389552145265043, 0.0016372512327507138, -0.0231931209564209, -0.02128884382545948, 0.013256699778139591, 0.014904631301760674, 0.019762979820370674, -0.008587557822465897, 0.011926147155463696, -8.36363760754466e-05, 0.017284978181123734, -0.005651797167956829, -0.0028930366970598698, -0.004266313277184963, 0.009820455685257912, -0.034130506217479706, 0.017284978181123734, 0.019775187596678734, 0.00697014294564724, -0.009619041346013546, 0.01608870178461075, -0.00378414080478251, 0.019933877512812614, -0.02315649949014187, 0.012707388959825039, 0.008349522948265076, 0.006915212143212557, 0.005877625197172165, -0.006964039523154497, -0.022643810138106346, -0.012548699043691158, -0.00418696878477931, -0.010809214785695076, 0.014196631498634815, 0.022948982194066048, -0.011785767041146755, 0.0006503991899080575, 0.006872487720102072, 0.0018707083072513342, -0.007086108438670635, 0.012176387943327427, -0.0017394840251654387, -0.0034789680503308773, 0.0031585367396473885, -0.017199529334902763, 0.008972075767815113, -0.009381006471812725, -0.026708709076046944, 0.0004260973073542118, -0.006701590958982706, 0.0162107702344656, -0.005999694112688303, -0.020348912104964256, 0.0029998470563441515, -0.011926147155463696, -0.011065559461712837, 0.004302934277802706, -0.014855803921818733, -0.003689537290483713, -0.01183459535241127, -0.008007730357348919, 0.010308731347322464, 0.0008743195794522762, -0.022497326135635376, 0.033984024077653885, 0.0022994757164269686, 0.013159044086933136, 0.008984282612800598, -0.009252834133803844, 0.004821727517992258, 0.01428207941353321, -0.015905598178505898, 0.014880217611789703, -0.01645490899682045, -0.01409897580742836, -0.009460351429879665, -0.016039874404668808, -0.02351050078868866, -0.0038055027835071087, -0.004574537742882967, -0.01289049256592989, -0.02624484710395336, 0.0017165960744023323, -0.01632063277065754, 0.026562226936221123, 0.014782562851905823, 0.02127663604915142, 0.009045316837728024, 0.025146225467324257, -0.003613244043663144, -0.004843089729547501, 0.0061309183947741985, 0.000228879478527233, 0.02354712039232254, -0.005749452393501997, 0.0038817960303276777, 0.013110216706991196, -0.006756522227078676, -0.014355320483446121, 0.001272569876164198, 0.03320278227329254, 0.02318091318011284, -0.01680890843272209, 0.01080311182886362, 0.008569248020648956, -0.004370072390884161, -0.0029342349153012037, -0.003262295387685299, -0.00820914376527071, -0.008831696584820747, -0.005554141942411661, 0.0059935906901955605, -0.010937387123703957, 0.01063831802457571, 0.00820914376527071, 0.014916838146746159, 0.011157111264765263, -0.02604953572154045, -0.001831035828217864, 0.020519807934761047, 0.01516097690910101, -0.028735056519508362, 0.0014472812181338668, -0.010217179544270039, 0.01618635654449463, -0.005487003829330206, 0.0007366104400716722, 0.014111182652413845, 0.004946848377585411, 0.0006706168642267585, -0.0027816486544907093, 0.0038146579172462225, -0.02365698292851448, 0.02075173892080784, 0.018017392605543137, 0.010058490559458733, -0.0037444683257490396, -0.02590305358171463, 0.015807943418622017, -0.03317837044596672, -0.007977212779223919, 0.012444940395653248, -0.01045521441847086, -0.0012863026931881905, -0.01400132104754448, -0.0035796749871224165, 0.003662071656435728, 0.0054137627594172955, 0.0002973525843117386, 0.00032024053507484496, -0.008709627203643322, 0.014843597076833248, -0.014428562484681606, 0.0009834187803789973, 0.02336401678621769, -0.013561871834099293, 0.03066374734044075, -0.01045521441847086, -0.002577182836830616, -0.012731802649796009, 0.014416355639696121, -0.024938708171248436, -0.004873606842011213, -0.0035705198533833027, -0.01611311547458172, -0.010906870476901531, 0.009606834501028061, -0.009417627938091755, -0.017065253108739853, -0.029345400631427765, 0.012414422817528248, 0.0017715271096676588, -0.0021453637164086103, 0.0014930571196600795, -0.013390975072979927], "5866a289-b3da-4d3c-a001-59a4006b5bf9": [-0.006155509036034346, -0.0016836640425026417, -0.0014726889785379171, 0.03688892722129822, 0.003259772202000022, -0.021180246025323868, 0.02815207652747631, 0.015962403267621994, 0.03090992011129856, 0.003425242844969034, 0.018929844722151756, 0.0443682000041008, 0.005934881046414375, -0.011627072468400002, 0.006833938416093588, 0.006172055844217539, -0.012134515680372715, 0.03556516021490097, 0.03479296714067459, -0.005664612632244825, 0.04942057281732559, 0.008957479149103165, -0.028902210295200348, 0.016105812042951584, -0.006420261692255735, 0.0004760728916153312, -0.009680033661425114, 0.031549740582704544, -0.050920840352773666, -0.005452258512377739, -0.006817391607910395, -0.0005343323573470116, 0.009106402285397053, 0.0237395241856575, -0.021433966234326363, 0.004153313580900431, 0.013568595051765442, -0.03969089686870575, -0.0417206697165966, 0.002151118591427803, -0.027446068823337555, 0.00454492773860693, 0.007313803303986788, -0.04403726011514664, -0.03245431184768677, 0.035476911813020706, -0.03730811923742294, 0.0100716482847929, 0.024622036144137383, -0.034594401717185974, -0.006712593603879213, -0.02453378401696682, 0.0009555930737406015, 0.003157731844112277, 0.01944831945002079, -0.010761109180748463, 0.00362380756996572, 0.01449523027986288, -0.007832278497517109, -0.027799071744084358, -0.009271873161196709, 0.007512368261814117, -0.00695528369396925, -0.008466582745313644, 0.0025703110732138157, 0.016734600067138672, 0.009784831665456295, -0.032674942165613174, -0.03781556338071823, -0.02177594043314457, -0.013270747847855091, 0.03289556875824928, -0.026320867240428925, 0.006629858165979385, 0.0683504194021225, -0.00555154075846076, 0.013480343855917454, 0.01779361255466938, -0.006541606970131397, -0.00013530674914363772, 0.004815196618437767, -0.009823441505432129, 0.008565864525735378, 0.024180779233574867, 0.05771616846323013, 0.015664556995034218, 0.03613879531621933, -0.021764907985925674, 0.007854340597987175, -0.004139524418860674, -0.01186976209282875, 0.002473786473274231, 0.019790291786193848, -0.0014809624990448356, -0.004991698544472456, -0.009282904677093029, 0.012465456500649452, -0.03437377139925957, 0.011279583908617496, 0.04277968406677246, -0.012487519532442093, -0.039801210165023804, 0.0462876595556736, 0.010038553737103939, 0.04959707334637642, -0.012807429768145084, 0.003720332169905305, 0.016922133043408394, -0.04165448248386383, 0.027997637167572975, 0.005548783112317324, -0.02594580128788948, 0.005361249670386314, 0.006398199126124382, -0.06014307215809822, -0.002269705990329385, -0.024202842265367508, 0.014042943716049194, 0.019867511466145515, 0.03536659851670265, -0.0129508376121521, -0.03560928627848625, 0.0012368932366371155, -0.01638159528374672, -0.010860391892492771, -0.05215635523200035, 0.024092528969049454, -0.004666273016482592, 0.023827776312828064, 0.026409119367599487, -0.013072182424366474, 0.021378809586167336, 0.03256462886929512, 0.0077771213836967945, 0.025725172832608223, -0.0029701984021812677, -0.017175855115056038, 0.03413108363747597, -0.008527254685759544, -0.0024310399312525988, -0.05599527433514595, 0.0047352188266813755, -0.034837089478969574, 0.043949007987976074, 0.0007549599395133555, 0.011737385764718056, -0.0071152388118207455, -0.013138370588421822, -0.004721429664641619, 0.0007418601308017969, -0.06654126942157745, -0.02043011225759983, -0.039867401123046875, 0.021235402673482895, 0.05643652752041817, 0.004362910054624081, -0.01664634980261326, 0.007049050647765398, 0.003637596732005477, 0.02112508937716484, 0.04472120478749275, -0.023916026577353477, 0.0010590122547000647, 0.05603940039873123, 0.03991152346134186, 0.03205718472599983, 0.027777008712291718, 0.01516814436763525, -0.031814493238925934, 0.018422400578856468, 0.0006198255578055978, -0.006425777450203896, 0.002072520088404417, -0.009635908529162407, -0.003940959926694632, 0.006944252178072929, 0.020132264122366905, 0.02201863005757332, 0.02674005925655365, -0.019084284082055092, -0.02982884645462036, 0.02141190506517887, -0.022250289097428322, 0.029630281031131744, 0.009426312521100044, 0.01944831945002079, -0.006409230642020702, 0.044257886707782745, -0.0347709022462368, 0.011461601592600346, -0.007628197781741619, 0.014517293311655521, 0.010579091496765614, -0.006624342408031225, -0.036293234676122665, -0.01969100907444954, 0.029917096719145775, -0.017418544739484787, -0.0017636414850130677, 0.003985085058957338, -0.0010824539931491017, 0.02343064732849598, -0.024599973112344742, -0.022989390417933464, -0.04019834101200104, -0.0061113834381103516, 0.016613254323601723, -0.017617110162973404, 0.004191923420876265, -0.028306515887379646, 0.041477981954813004, -0.05162684991955757, 0.011362318880856037, 0.033226508647203445, -0.011025861836969852, 0.025438357144594193, 0.013116308487951756, 0.048140931874513626, 0.020805178210139275, -0.006580216810107231, 0.020683832466602325, 0.02343064732849598, -0.01755092293024063, 0.015366708859801292, -0.07038018852472305, 0.0010321233421564102, -0.024688223376870155, -0.003841677214950323, -0.03774937614798546, -0.049508824944496155, -0.029608217999339104, -0.04306649789214134, -0.01025366596877575, 0.014296665787696838, 0.014053975231945515, 0.0383671335875988, 0.0458022803068161, -0.013888504356145859, 0.013005994260311127, -0.00042712115100584924, -0.03115261159837246, 0.020617645233869553, 0.04174273461103439, -0.016822850331664085, 0.00102522864472121, -0.011946981772780418, -0.018411369994282722, -0.005110285710543394, 0.030711356550455093, 0.033557452261447906, -0.06349661201238632, 0.003237709403038025, 0.0009218095219694078, -0.008014296181499958, -0.013160433620214462, -0.015587336383759975, -0.003483157604932785, -0.023298269137740135, 0.017870832234621048, 0.010656311176717281, 0.016271281987428665, 0.05356837064027786, 0.03199099749326706, -0.015499086119234562, -0.004635936580598354, -0.0001789151574485004, 0.011858731508255005, 0.0044208248145878315, 0.006889095529913902, 0.004255353938788176, 0.026850374415516853, -0.038742199540138245, -0.04498595744371414, 0.06768853217363358, 0.003077754518017173, 0.016657380387187004, -0.028218263760209084, -0.04942057281732559, 0.007131785620003939, -0.0006580906338058412, -0.05325949192047119, -0.004743492230772972, 0.009801379404962063, -0.020738990977406502, 0.048935193568468094, 0.02261432446539402, -0.02621055394411087, 0.015785900875926018, -0.046199411153793335, 0.00405954709276557, 0.0009686928824521601, -0.01459451299160719, 0.0237395241856575, -0.014572449959814548, 0.01575280725955963, -0.010027522221207619, -0.016922133043408394, -0.004536654334515333, -0.02896839752793312, 0.044235825538635254, 0.025857549160718918, 0.0062878853641450405, -0.016006529331207275, -0.01801423914730549, 0.031218798831105232, -0.010871422477066517, 0.020176390185952187, 0.058025047183036804, -0.02643118053674698, 0.04330918937921524, 0.005438469350337982, -0.042338427156209946, -0.025283917784690857, -0.015609399415552616, 0.027622569352388382, 0.004828985780477524, -0.03366776555776596, -0.027247503399848938, -0.022581230849027634, -0.01351343747228384, -0.005361249670386314, -0.002857126761227846, -0.043463628739118576, 0.036447674036026, 0.009702096693217754, -0.03883045166730881, 0.04275761917233467, 0.015234332531690598, 0.0027909385971724987, -0.037065427750349045, -0.04439026489853859, -0.009321514517068863, -0.03245431184768677, -0.011279583908617496, -0.0362049825489521, -0.047832053154706955, -0.04933232069015503, -0.04668479040265083, -0.00216766563244164, -0.01418635156005621, -0.012983931228518486, -0.036535922437906265, 0.029718531295657158, -0.025703109800815582, 0.003174278885126114, 0.009360124357044697, 0.00910088699311018, 0.027401942759752274, -0.004572506062686443, 0.05052370950579643, 0.0005484663415700197, 0.014671732671558857, 0.0014120163396000862, -0.018819531425833702, 0.021522218361496925, -0.029850907623767853, -0.04242667928338051, 0.016315408051013947, -0.006034163758158684, -0.006911158096045256, 0.002209033351391554, -0.021257465705275536, 0.010424652136862278, 0.013314872980117798, -0.024754412472248077, 0.01987854205071926, 0.029034586623311043, 0.020231546834111214, -0.010055100545287132, 0.006745687685906887, -0.042845871299505234, -0.008091515861451626, -0.02733575366437435, -0.001869818544946611, 0.024975039064884186, -0.04273555800318718, 0.03642560914158821, -0.0028350641950964928, -0.04375044256448746, -0.020154327154159546, 0.020772084593772888, 0.01848858967423439, -0.003119122004136443, 0.003687238087877631, 0.005570845678448677, 0.025703109800815582, 0.023099705576896667, -0.03719780594110489, -0.00599003816023469, -0.004266385454684496, -0.01601755991578102, -0.006039679516106844, 0.008240438997745514, -0.0005653580883517861, -0.0017029689624905586, -0.014406979084014893, 0.018245898187160492, -0.031108485534787178, 0.02318795584142208, -0.04743492603302002, 0.01997782476246357, -0.01942625641822815, 0.02108096331357956, -0.038521572947502136, 0.017584016546607018, -0.023938089609146118, -0.005052370950579643, 0.006624342408031225, 0.03664623573422432, -0.018808498978614807, 0.011891825124621391, -0.008549317717552185, -0.0017181370640173554, -0.010110258124768734, 0.014804108999669552, 0.044500578194856644, -0.023232081905007362, 0.027732884511351585, 0.0014299423201009631, 0.02704893797636032, 0.04191923514008522, -0.008212860673666, -0.00453941198065877, 0.03031422570347786, 0.03029216267168522, -0.011472633108496666, -0.010369495488703251, 0.005918334238231182, 0.012156578712165356, 0.007517884019762278, 0.030137723311781883, 0.02949790470302105, -0.013546532019972801, 0.0012961869360879064, -0.025857549160718918, 0.027093064039945602, 0.00916155893355608, -0.004062304738909006, 0.015653524547815323, -0.015068861655890942, -0.030248038470745087, 0.009139496833086014, -0.045890532433986664, -0.0014354580780491233, 0.02371746301651001, 0.010192993097007275, -0.008102547377347946, 0.000987308332696557, 0.008052906021475792, -0.02016535773873329, -0.006056226324290037, -0.02788732387125492, -0.04088228568434715, -0.02043011225759983, -0.019646883010864258, -0.012829492799937725, 0.03000534698367119, -0.015796933323144913, 0.019459350034594536, -0.030689293518662453, -0.014087069779634476, 0.029564091935753822, 0.003499704645946622, -0.012928774580359459, 0.019558632746338844, -0.019382130354642868, -0.0033342340029776096, -0.0009211200522258878, -0.0005915576475672424, -0.013568595051765442, 0.028306515887379646, 0.0034500635229051113, 0.0030308710411190987, 0.022790826857089996, 0.0031329113990068436, -0.007313803303986788, -0.046728916466236115, -0.013987787067890167, -0.009349092841148376, 0.005675643682479858, 0.0021221612114459276, -0.03496946766972542, 0.011450570076704025, -0.008604474365711212, 0.007633713539689779, 0.04383869469165802, -0.01899603195488453, -0.03148355334997177, -0.019371099770069122, -0.04211780056357384, 0.004263627342879772, 0.006993893533945084, 0.012928774580359459, 0.006315463688224554, -0.009768284857273102, 0.004627663176506758, 0.0062437597662210464, 0.001508540939539671, -0.007341382093727589, -0.03194687142968178, 0.037418432533741, 0.004680062178522348, -0.0039078653790056705, -0.01863199658691883, -0.012498551048338413, -0.0037920360919088125, -0.004823470022529364, 0.023055579513311386, -0.051715098321437836, -4.057047772221267e-05, 0.005295061506330967, 0.03552103787660599, -0.05162684991955757, 0.012156578712165356, 0.01808042824268341, 0.024423470720648766, -0.010926580056548119, -0.032167498022317886, 0.035719599574804306, -0.007584072183817625, -0.016315408051013947, -0.03455027565360069, -0.012719178572297096, -0.00054329534759745, 0.018532713875174522, -0.014925453811883926, 0.004125735256820917, -0.016723569482564926, -0.04322093725204468, -0.03768318518996239, -0.01944831945002079, 0.022151006385684013, -0.034881215542554855, 0.015024736523628235, -0.012895680963993073, -0.02623261697590351, -0.03507978096604347, 0.014373885467648506, 0.004067820496857166, -0.013149402104318142, -0.028747770935297012, -0.0008308006217703223, 0.008554833941161633, -0.007015956100076437, -0.007363444659858942, 0.023496834561228752, -0.024997102096676826, 0.015477023087441921, -0.010375010780990124, 0.03170417994260788, -0.006420261692255735, 0.025041228160262108, 0.0011948361061513424, -0.006696046330034733, -0.00896850973367691, -0.03499152883887291, 0.022989390417933464, 0.002359336009249091, -0.0009328408632427454, -0.025460420176386833, -0.0350135937333107, 0.012575770728290081, -0.002915041521191597, 0.032123371958732605, 0.000271992408670485, 0.005408132914453745, 0.0007266920292750001, -0.002328999573364854, 0.015763839706778526, -0.0028929787222296, 0.004919994622468948, 0.016844913363456726, 0.04002184048295021, 0.010639763437211514, -0.017639173194766045, 0.0661882683634758, 0.0185878723859787, 0.01419738307595253, -0.052244603633880615, 0.01122442726045847, 0.003681722329929471, -0.021952440962195396, 0.021433966234326363, 0.015377740375697613, 0.0027440551202744246, -0.015465991571545601, -0.014671732671558857, 0.010231602936983109, 0.01394366193562746, -0.016039622947573662, -0.015907246619462967, 0.02024257741868496, -0.003643112489953637, -0.0048924158327281475, -0.004145040176808834, 0.023011453449726105, -0.026651808992028236, 0.012410299852490425, 0.03697717934846878, 0.025835486128926277, 0.006745687685906887, 0.010683889500796795, 0.028328578919172287, -0.011014830321073532, -0.0013589278096333146, -0.016414690762758255, 0.003116364125162363, 0.029100773856043816, 0.015885183587670326, 0.009994428604841232, 0.012873617932200432, -0.010733530856668949, -0.012156578712165356, -0.022459885105490685, 0.010512903332710266, -0.010987251996994019, 0.0031273956410586834, 0.020904460921883583, 0.008731335401535034, -0.00037713523488491774, 0.03671242669224739, -0.019150471314787865, 0.030181849375367165, -0.005697706714272499, 0.004771071020513773, 0.019150471314787865, -0.01712069846689701, 0.010921063832938671, -0.013965724036097527, 0.02426903136074543, -0.004114703740924597, -0.030225975438952446, 0.015741776674985886, -0.01580796390771866, -0.0018973969854414463, -0.021356746554374695, 0.00793707650154829, 0.04308856278657913, -0.0005157169071026146, -0.006337526720017195, 0.009260841645300388, -0.030424540862441063, 0.012520614080131054, 0.01973513513803482, -0.008847164921462536, -0.0008873364422470331, -0.006122414488345385, -0.01987854205071926, 0.0003245638217777014, -0.0014823414385318756, -0.004183650016784668, 0.029299339279532433, -0.035719599574804306, 0.013767159543931484, 0.023916026577353477, -0.00030818910454399884, -0.013403124175965786, -0.010650794953107834, -0.019944731146097183, -0.005835598800331354, 0.017561953514814377, -0.0026626987382769585, -0.010386042296886444, -0.053656622767448425, -0.014693795703351498, -0.006701562087982893, 0.023232081905007362, 0.010716983117163181, 0.01654706709086895, 0.020783115178346634, 0.02196347340941429, -0.023761587217450142, 0.0026709723751991987, -0.024202842265367508, 0.013480343855917454, -0.012465456500649452, -0.031262923032045364, 0.025195667520165443, -0.024666160345077515, -0.004371183458715677, -0.00043160264613106847, -0.03221162408590317, -0.02285701408982277, -0.004012663848698139, -0.04467707872390747, -0.0017898411024361849, -0.006221697200089693, -0.030512791126966476, -0.013678908348083496, -0.013656845316290855, -0.029078712686896324, 0.008554833941161633, -0.03532247245311737, -0.004020937252789736, -0.010557028464972973, 0.0015388772590085864, 0.0014768256805837154, -0.009139496833086014, 0.004776586778461933, -0.010137836448848248, -0.03578579053282738, -0.01875334233045578, -0.00029267623904161155, -0.0003702406247612089, -0.017065541818737984, 0.018212804570794106, -0.020617645233869553, -0.02191934734582901, -0.01544392853975296, 0.00790398195385933, -0.006740171927958727, -0.011737385764718056, -0.012741241604089737, 0.016227155923843384, 0.023298269137740135, 0.02645324356853962, -0.006083804648369551, 0.017495764419436455, 0.03640354797244072, 0.041544169187545776, 0.020595582202076912, 0.012123484164476395, -0.024622036144137383, 0.01820177398622036, -0.036249108612537384, -0.024908851832151413, 0.015741776674985886, 0.026100240647792816, 0.02016535773873329, -0.00024286267580464482, 0.022173069417476654, 0.02923315204679966, 0.005446742754429579, 0.0020035740453749895, 0.04972945153713226, -0.008505192585289478, 0.0036155341658741236, 0.011958013288676739, 0.0405292809009552, -0.016657380387187004, -0.02760050818324089, 0.00936563964933157, 0.024048402905464172, -0.030181849375367165, -0.02921108901500702, -0.011450570076704025, 0.012862586416304111, 0.0013644435675814748, 0.0062437597662210464, -0.04185304790735245, 0.03699924051761627, -0.007793668191879988, 0.022360602393746376, -0.0014271845575422049, -0.018764372915029526, 0.025239791721105576, 0.026629745960235596, 0.008378331549465656, 0.004980667028576136, 0.024114592000842094, -0.03177036717534065, 0.01321559026837349, -0.01851065270602703, -0.011163754388689995, 0.03276319056749344, -0.011053440161049366, -0.02618849091231823, -0.018720248714089394, 0.03172624111175537, 0.023232081905007362, 0.04549340158700943, 0.0038527087308466434, 0.01801423914730549, -0.018356213346123695, -0.00459181098267436, -0.000148320323205553, -0.020110201090574265, -0.022581230849027634, -0.021500155329704285, 0.01942625641822815, -0.008030842989683151, -0.024975039064884186, -0.0017443365650251508, -0.0054357112385332584, 0.001104516675695777, -0.014384916983544827, 0.03907313942909241, 0.009315998293459415, -0.023540960624814034, -0.005752863362431526, 0.018665092065930367, 0.006232728250324726, -0.01200213935226202, -0.0021993808913975954, 0.01159397792071104, -0.019128408282995224, -0.04313268885016441, 0.01801423914730549, -0.005242662504315376, -0.023055579513311386, 0.010104741901159286, 0.007688870187848806, 0.03924964368343353, -0.004390488378703594, 0.042294301092624664, -0.0005008935113437474, -0.00042160548036918044, -0.05842217803001404, -0.030424540862441063, 0.023783650249242783, 0.018411369994282722, -0.02108096331357956, -0.022812889888882637, 0.010397073812782764, -0.02951996773481369, -0.006867032498121262, 0.023099705576896667, 0.01226689200848341, 0.023364458233118057, -0.022790826857089996, -0.02100374363362789, -0.014373885467648506, 0.006640889216214418, 0.0008632052922621369, -0.008097031153738499, 0.008234923705458641, -0.00156783452257514, 0.002931588562205434, 0.0004967567510902882, -0.0024861968122422695, -0.0009211200522258878, 0.0009431827929802239, -0.024599973112344742, 0.02702687494456768, -0.002395187970250845, -0.00458077946677804, -0.015785900875926018, 0.0004591811157297343, -0.019558632746338844, -0.004034726414829493, -0.008411425165832043, -0.04831743612885475, 0.004169860854744911, 0.02561485953629017, -0.01083832886070013, 0.035984355956315994, 0.03368982672691345, 0.0101323202252388, 0.003659659530967474, 0.06812979280948639, 0.017308231443166733, -0.005206810310482979, 0.01707657240331173, 0.020926523953676224, -0.0019346278859302402, 0.01981235481798649, 0.0020573518704622984, 0.017848769202828407, -0.02899046055972576, 0.005874208640307188, 0.018334150314331055, -0.018091458827257156, -0.010104741901159286, 0.019338006153702736, -0.029078712686896324, 0.0046524833887815475, -0.00046917828149162233, 0.0019153229659423232, 0.013899535872042179, 0.02002195082604885, -0.01460554450750351, 0.003257014323025942, 0.02625468000769615, 0.002153876470401883, -0.0003395595995243639, -0.0335795134305954, 0.026850374415516853, -0.02704893797636032, -0.0062437597662210464, 0.0025647953152656555, 0.02422490529716015, -0.0066850148141384125, -0.017473703250288963, 0.020154327154159546, -0.0091725904494524, 0.007821246981620789, -0.014296665787696838, -0.008163219317793846, 0.0023676094133406878, 0.017275137826800346, -0.012575770728290081, 0.004238807130604982, 0.04191923514008522, 0.008587927557528019, 0.005951428320258856, 0.003017081879079342, 0.03090992011129856, 0.00483174342662096, 0.026011988520622253, -0.0177494864910841, 0.0019456592854112387, 0.0035327987279742956, -0.046773042529821396, 0.0007184184505604208, 0.07042431831359863, -0.050567835569381714, 0.003496946766972542, -3.158593608532101e-05, 0.030270101502537727, -0.012344111688435078, -0.01015438325703144, -0.0038885606918483973, -0.008687210269272327, 0.002795075299218297, 0.018168678507208824, 0.018124554306268692, -0.010728014633059502, 0.0062878853641450405, 0.0012534402776509523, -0.006166540086269379, 0.0044015198945999146, -0.02484266273677349, 0.03997771441936493, -0.0034941888879984617, -0.01860993355512619, 0.001127268886193633, -0.002010468626394868, -0.013094245456159115, -0.01932697370648384, 0.01997782476246357, -0.02234957180917263, -0.032983820885419846, -0.028328578919172287, -0.0008363163215108216, 0.0024310399312525988, -0.011025861836969852, -0.017043478786945343, -0.01891881227493286, -0.031108485534787178, -0.013712002895772457, -0.012311018072068691, -0.047832053154706955, 0.035984355956315994, -0.01628231443464756, 0.00697183096781373, -0.015587336383759975, -0.015521148219704628, -0.006227212958037853, 0.009575235657393932, -0.01846652664244175, 0.026364993304014206, 0.007683354429900646, 0.0009087097714655101, 0.007049050647765398, 0.027710821479558945, -0.010943126864731312, -0.0036679331678897142, -0.047302547842264175, -0.02674005925655365, 0.012586802244186401, -0.005769410636276007, 0.008532770909368992, -0.03342507407069206, 0.008808555081486702, -0.024908851832151413, 0.00724209938198328, -0.019084284082055092, -0.011549852788448334, -0.028527142480015755, -0.005901786964386702, 0.0110920500010252, 0.0003040523442905396, -0.014969579875469208, 0.0054495008662343025, 0.006552638486027718, -0.00458077946677804, -0.02757844515144825, -0.023320332169532776, 0.006293401122093201, -0.0139105673879385, 0.029277276247739792, -0.010590123012661934, -0.014925453811883926, -0.02671799622476101, -0.0035769243258982897, -0.018025271594524384, -0.015300520695745945, -0.007319319061934948, -0.020639708265662193, -0.000803222181275487, 0.02095961757004261, -0.016469847410917282, 0.004387730732560158, 0.002571689896285534, -0.008041874505579472, -0.0006260306690819561, 0.02321001887321472, -0.02755638211965561, 0.008830618113279343, -0.036249108612537384, 0.005912818480283022, -0.017848769202828407, -0.007755058817565441, 0.0330941341817379, 0.016866976395249367, 0.013039088808000088, -0.01640365831553936, -0.02201863005757332, -0.009448375552892685, -0.004707640502601862, -0.03616085648536682, -0.029983283951878548, -0.006497481372207403, 0.006260307040065527, -0.008747882209718227, 0.022680513560771942, 0.032939694821834564, -0.016370564699172974, -0.012432362884283066, 0.026585619896650314, -0.004506317898631096, -0.021224370226264, 0.015543211251497269, -0.015918279066681862, -0.023276207968592644, 0.010022006928920746, -0.02196347340941429, -0.015002673491835594, 0.007942591793835163, 0.009464922361075878, -0.00600106967613101, -0.033182382583618164, -0.0042305332608520985, 0.0008280428010039032, 0.002071141265332699, -0.028769833967089653, -0.021180246025323868, -0.020849304273724556, -0.027799071744084358, -0.021025806665420532, 0.009437344036996365, 0.003739637089893222, -0.012862586416304111, 0.005410891026258469, -0.0009942029137164354, -0.002615815494209528, 0.005162684712558985, 0.0010107499547302723, 0.002206275472417474, 0.017561953514814377, -0.003717574290931225, -0.017429577186703682, 0.0051020123064517975, -0.01956966333091259, 0.00045607853098772466, 0.008345237001776695, -0.015002673491835594, 0.0038692557718604803, 0.008378331549465656, 0.018576839938759804, 0.0061610243283212185, -0.029056649655103683, 0.036249108612537384, -0.002669593319296837, -0.002571689896285534, -0.006514028646051884, -0.0350135937333107, 0.011472633108496666, 0.01585208997130394, -0.0001035915338434279, -0.03086579591035843, 0.010656311176717281, 0.005148895550519228, 0.012829492799937725, -0.02030876651406288, 0.02535010688006878, -0.025482483208179474, 0.01969100907444954, 0.018499620258808136, 0.0029453779570758343, 0.015940340235829353, -0.029917096719145775, -0.007749543059617281, 0.0053971013985574245, -0.015212270431220531, 0.002774391556158662, 0.004804165102541447, -0.014682764187455177, 0.014373885467648506, 0.006177571602165699, -0.0022379907313734293, 0.004034726414829493, 0.014969579875469208, 0.01587415300309658, 0.02565898559987545, 0.00579698896035552, -0.013656845316290855, 0.013347967527806759, 0.003182552522048354, -0.01765020377933979, -0.006878064014017582, 0.005857661832123995, 0.011814605444669724, 0.01817971095442772, 0.006867032498121262, 0.017352357506752014, -0.010292275808751583, 0.029056649655103683, -0.014053975231945515, 0.0054991417564451694, 0.05202397704124451, 0.00695528369396925, 0.006497481372207403, 0.004674546420574188, 0.012818461284041405, -0.004914478864520788, -0.011836668476462364, -0.03662417456507683, -0.01940419338643551, -0.016944196075201035, 0.024423470720648766, 0.010281244292855263, 0.01817971095442772, -0.0012630927376449108, -0.02643118053674698, 0.05078846216201782, 0.011946981772780418, 0.009542142041027546, 0.004693851340562105, -0.005443985108286142, 0.008157704025506973, -0.02623261697590351, 0.055509891360998154, -0.04959707334637642, -0.01848858967423439, -0.0033342340029776096, 0.022702574729919434, 0.019095314666628838, -0.02563692256808281, 0.029409652575850487, -0.011097566224634647, -0.003463852684944868, -0.0049751512706279755, -0.015510117635130882, -2.841872446879279e-05, -0.04392694681882858, 0.0045973267406225204, -0.03439583629369736, -0.0012410300550982356, -0.013105276972055435, 3.723090048879385e-05, 0.012112452648580074, -0.0024696497712284327, 0.004693851340562105, -0.004415309056639671, 0.003276319243013859, 0.008102547377347946, 0.0019222175469622016, 0.004197439178824425, -0.006982862018048763, -0.007231068331748247, -0.00695528369396925, -0.002133192727342248, -0.014693795703351498, 0.029321402311325073, -0.0011948361061513424, 0.016171999275684357, -0.01557630579918623, 0.014782045967876911, 0.006751203443855047, 0.0038664978928864002, 0.025747235864400864, 0.0239822156727314, 0.005758379120379686, -0.0053860703483223915, 0.04266937077045441, 0.023320332169532776, 0.0284168291836977, -0.008433488197624683, -0.03084373287856579, 0.005148895550519228, -0.005049613304436207, 0.025460420176386833, -0.01160500943660736, -0.01297290064394474, 0.012785366736352444, -0.003985085058957338, -0.010739046148955822, 0.03386633098125458, 0.02321001887321472, 0.03785968944430351, -0.001971858786419034, -0.014164289459586143, 0.0017967356834560633, -0.007628197781741619, 0.01575280725955963, -0.00431051105260849, 0.004007148090749979, 0.027468129992485046, 0.028505079448223114, 0.004225017502903938, -0.0033535389229655266, -0.0035879556089639664, -0.02220616303384304, 0.008687210269272327, 0.018985001370310783, -0.006293401122093201, -0.018433433026075363, 0.005402617156505585, -0.0011582946171984076, 0.006183087360113859, -0.01628231443464756, -0.012222766876220703, -0.0028074856381863356, 0.0012010412756353617, 0.020352892577648163, 0.013469312340021133, -0.0038664978928864002, -0.00042263965588063, -0.01801423914730549, 0.04161035642027855, -0.016359534114599228, -0.018929844722151756, 0.009404249489307404, -0.008003264665603638, 4.5806071284459904e-05, 0.02426903136074543, -0.007104207295924425, 0.011064471676945686, 0.003439032007008791, 0.0018381032859906554, 0.015377740375697613, -0.016800789162516594, 0.026828311383724213, -0.0004364288761280477, -0.020772084593772888, -0.014153257943689823, 0.00579147320240736, -0.03007153607904911, 0.005769410636276007, -0.007672323379665613, -0.0010790065862238407, 0.019525539129972458, 0.013612720184028149, -0.012873617932200432, -0.0036320812068879604, 0.01033640094101429, -0.007539946585893631, -0.00599555391818285, 0.045934658497571945, -0.012388236820697784, -0.0022876320872455835, -0.0006622273940593004, -0.0010541860247030854, 0.0014258056180551648, 0.015013705007731915, -0.03004947304725647, 0.011235457845032215, -0.005477079190313816, 0.0032735613640397787, 0.004528380464762449, -0.008290080353617668, 0.01417532004415989, 0.005523962434381247, -0.04390488192439079, 0.005554298870265484, -0.002437934512272477, 0.013502406887710094, -0.016922133043408394, 0.011191332712769508, -0.01767226681113243, -0.04105878993868828, 0.03660211339592934, 0.03384426608681679, -0.025747235864400864, -0.0002575137186795473, 0.0038885606918483973, -0.008543802425265312, -0.043463628739118576, -0.017595047131180763, 0.001044533564709127, 0.026122301816940308, 0.02004401385784149, -0.01556527428328991, -0.00021786971774417907, 0.008135640993714333, 0.011770480312407017, -0.005587392952293158, 0.02512947842478752, 0.013601688668131828, 0.010308822616934776, -0.036822739988565445, 0.01676769368350506, 0.0030501759611070156, -0.01597343571484089, 0.006447840481996536, -0.02318795584142208, -0.021224370226264, -0.0015402560820803046, 0.011213395744562149, 0.006232728250324726, 0.020496299490332603, -0.010104741901159286, 0.011152722872793674, 0.03263081610202789, 0.016679443418979645, 0.008852681145071983, 0.009911692701280117, -0.023011453449726105, 0.005601182114332914, 0.015035768039524555, 0.005581877194344997, -0.011351287364959717, -0.014958548359572887, -0.028505079448223114, -0.005471563432365656, 0.01832311786711216, -0.015234332531690598, 0.019922668114304543, -0.029652344062924385, 0.018245898187160492, 0.016050655394792557, 0.01595137268304825, 0.016480877995491028, -0.023629210889339447, 0.0027633600402623415, -0.014373885467648506, 0.01447316724807024, 0.01459451299160719, 0.00132928101811558, -0.012807429768145084, 0.01012128870934248, 0.005697706714272499, -0.007076628971844912, 0.01671253703534603, -0.002819895977154374, 0.01570868119597435, 0.01765020377933979, 0.0005719080218113959, -0.007970170117914677, -0.00138926412910223, 0.03768318518996239, -0.00013022196071688086, -0.0025275645311921835, 0.00043987619574181736, 0.006629858165979385, -0.017109667882323265, 0.012178640812635422, -0.0063706208020448685, -0.026122301816940308, -0.01517917588353157, 0.0032928662840276957, 0.0051847477443516254, -0.012443394400179386, 0.002571689896285534, 0.019790291786193848, -0.028218263760209084, 0.011147207580506802, 0.00744066433981061, 0.024445533752441406, -0.02340858429670334, -0.04074991121888161, -0.03179243206977844, -0.04030865430831909, -0.011649134568870068, 0.00929393619298935, 0.0003283558471594006, -0.005328155588358641, 0.04800855740904808, 0.04057340696454048, -0.019845448434352875, 0.007148332893848419, 0.0020601097494363785, -0.0019429014064371586, 0.023077642545104027, -0.012763303704559803, -0.004834501538425684, -0.005466047674417496, -0.0016933165024966002, -0.016249218955636024, -0.036866866052150726, 0.0010197130031883717, -0.015543211251497269, 0.0036293233279138803, 0.018565809354186058, 0.0017553679645061493, 0.014362853951752186, 0.0027868018951267004, -0.0057197692804038525, 0.019084284082055092, -0.004531138576567173, 0.03287350758910179, 0.001609202241525054, 0.03139530122280121, 0.02316589280962944, 0.004936541430652142, -0.013469312340021133, -0.01726410537958145, 0.013734064996242523, 0.03161592781543732, 0.0005164063768461347, -0.013193528167903423, 0.021378809586167336, 0.015642493963241577, -0.006436808966100216, -0.005835598800331354, -0.03799206390976906, -0.007302772253751755, -0.012829492799937725, 0.003781004808843136, 0.023518897593021393, -0.015289489179849625, 0.0059403968043625355, -0.024158718064427376, 0.022073786705732346, 0.031814493238925934, -0.00907882396131754, -0.029100773856043816, -0.00859895907342434, -0.024886788800358772, 0.005226115230470896, 0.006017616484314203, -0.013855410739779472, -0.005579119548201561, 0.0037975518498569727, -0.017164824530482292, -0.004525622818619013, -0.01158294640481472, -0.0018780920654535294, -0.004864837508648634, 0.014550386928021908, -0.008527254685759544, -0.012487519532442093, 0.002353820251300931, 0.013414155691862106, -0.036844801157712936, -0.004382214974611998, 0.018543746322393417, -0.006784297525882721, -0.010005460120737553, 0.0185878723859787, -0.023849839344620705, 0.020738990977406502, 0.013833347707986832, 0.0177494864910841, -0.005126832984387875, -0.03613879531621933, -0.011527789756655693, 0.001471310039050877, 0.01159397792071104, -0.0024448290932923555, -0.03307206928730011, 0.019525539129972458, 0.010044069029390812, 0.022702574729919434, -0.0005470874020829797, 0.007755058817565441, -0.011240974068641663, -0.0064147463999688625, -0.03426345810294151, -0.0119911078363657, 0.007186942733824253, 0.024445533752441406, -0.014936485327780247, 0.011274067685008049, 0.004729703068733215, -0.045074209570884705, 0.013546532019972801, 0.018863655626773834, -0.004473223816603422, 0.00041505557601340115, 0.04024246707558632, -0.04271349310874939, 0.0020463205873966217, 0.011014830321073532, 0.01650294102728367, -0.006116899196058512, 0.0025868581142276525, -0.0049255103804171085, 0.013767159543931484, -0.017925988882780075, 0.016370564699172974, 0.006927705369889736, 0.028836021199822426, 0.012123484164476395, -0.008543802425265312, 0.03327063471078873, 0.021290559321641922, -0.0297405943274498, -0.00599003816023469, -0.012630927376449108, -0.016922133043408394, 0.0216987207531929, 0.0019373857649043202, -0.008571380749344826, 0.009448375552892685, 0.05599527433514595, 0.007170395459979773, -0.0018270720029249787, -0.003885802812874317, 0.011191332712769508, -0.015697650611400604, 0.013149402104318142, 0.012994962744414806, -0.03375601768493652, 0.0034748839680105448, 0.010777655988931656, 0.005209567956626415, 0.013270747847855091, -0.005692190956324339, -0.003099817084148526, 0.010044069029390812, -0.03038041479885578, -0.004922752268612385, 0.011505726724863052, 0.0037093008868396282, -0.036006417125463486, 0.002130434848368168, -0.026982750743627548, -0.019646883010864258, 0.008725820109248161, 0.029696468263864517, -0.006199634168297052, 0.011946981772780418, 0.003910623490810394, -0.0030474180821329355, 0.03856569528579712, 0.015796933323144913, 0.031836558133363724, -0.029586154967546463, -0.025173604488372803, 0.003433516249060631, -0.005016519222408533, -0.01616096869111061, -0.013347967527806759, 0.024357281625270844, 0.0002852645411621779, -0.014098101295530796, -0.024732349440455437, -0.02486472576856613, 0.005824567284435034, 0.01650294102728367, -0.020595582202076912, -0.01111411303281784, 0.01056254468858242, -0.01266402192413807, 0.001310665626078844, -0.01777154952287674, -0.003728605806827545, -0.02287907712161541, 0.002328999573364854, 0.006050710566341877, -0.02065073885023594, 0.011384381912648678, -0.017253074795007706, 8.458826050627977e-05, 0.018643029034137726, -0.008725820109248161, 0.009933755733072758, -0.009884114377200603, 0.017352357506752014, -0.009757253341376781, -0.012046264484524727, -0.003223920240998268, 6.735173519700766e-05, -0.021665625274181366, 0.0006353384233079851, -0.023585084825754166, 0.003221162362024188, 0.006122414488345385, 0.006530575454235077, 0.013370029628276825, 0.007324834819883108, 0.028902210295200348, 0.012884649448096752, -0.01556527428328991, -0.008758913725614548, -0.003485915483906865, -0.007142817135900259, -0.029939159750938416, 0.014506261795759201, -0.00084458984201774, 0.01032536942511797, 0.026651808992028236, 0.008940931409597397, -0.002673730254173279, -0.0035796822048723698, 0.0059403968043625355, 0.006922189611941576, 0.01899603195488453, 0.025041228160262108, 0.012785366736352444, -0.0011107218451797962, -0.013050120323896408, -0.0016409175004810095, -0.005885240156203508, -0.03371189162135124, 0.0035300408490002155, 0.011263037100434303, 0.0059845224022865295, -0.018786435946822166, 0.008554833941161633, -0.008764429949223995, 0.010976220481097698, -0.015366708859801292, 0.023232081905007362, -0.009873082861304283, 0.0068946112878620625, 0.014638638123869896, 0.00859895907342434, 0.0002866434515453875, 0.01613890565931797, -0.009470437653362751, -0.014065006747841835, -0.014649669639766216, 0.0054164063185453415, 0.011263037100434303, 0.017639173194766045, 0.01083832886070013, 0.005907302722334862, -0.02396015264093876, 0.0023221049923449755, 0.0036706910468637943, -0.006624342408031225, 0.004191923420876265, 0.01226689200848341, -0.008665147237479687, -0.013050120323896408, 0.011097566224634647, 0.004771071020513773, -0.03172624111175537, -0.0216987207531929, -0.00849967636168003, 0.0011286478256806731, -0.024401407688856125, -0.003662417409941554, -0.004321542102843523, -0.011748417280614376, 0.0030419023241847754, -0.009718643501400948, 0.002615815494209528, 0.0009742085239849985, -0.01695522852241993, -0.013358998112380505, -0.003483157604932785, 0.002741297474130988, -0.0071593644097447395, -0.019889574497938156, 0.0013354861875995994, -0.008665147237479687, 0.01255370769649744, 0.014031912200152874, 0.009371155872941017, 0.012597833760082722, 0.012134515680372715, -0.008571380749344826, -0.017716392874717712, 0.006045194808393717, 0.0023455466143786907, 0.034572336822748184, 0.009713128209114075, 0.0009280146332457662, -0.00939873419702053, -0.007225552573800087, -0.01808042824268341, 0.0028929787222296, 0.019823385402560234, -0.0059293657541275024, 0.0018656817264854908, -0.003723090048879385, 0.02318795584142208, -0.024048402905464172, -0.01644778437912464, -0.013612720184028149, 0.0015650767600163817, 0.0004684888117481023, 0.002876431681215763, -0.005162684712558985, 0.014440073631703854, 0.006028648000210524, 0.01781567558646202, -0.0006032784585841, -0.006629858165979385, 0.006999409291893244, 0.004693851340562105, 0.016944196075201035, 0.02259226143360138, 0.0007818489102646708, 0.01789289526641369, 0.03755081072449684, -0.004958604462444782, 0.00479037594050169, 0.0027288871351629496, -0.0005336428876034915, 0.014947516843676567, 0.004442887380719185, -0.008251470513641834, -0.00793707650154829, -0.005675643682479858, 0.0042112283408641815, 0.010937610641121864, -0.0022876320872455835, 0.007231068331748247, -0.006580216810107231, -0.004762797150760889, 0.004531138576567173, 0.016756663098931313, 0.0012003517476841807, -0.020926523953676224, -0.011858731508255005, -0.02232750877737999, -0.019227690994739532, -0.0031053328420966864, -0.010490840300917625, 0.006166540086269379, 0.023563023656606674, 0.025416294112801552, -0.016028592362999916, -0.003723090048879385, -0.02616642788052559, 0.01750679686665535, -0.00217593926936388, 0.01755092293024063, 0.04375044256448746, -0.003659659530967474, 0.004489770624786615, 0.0006018995773047209, 0.013656845316290855, -0.007870888337492943, -0.01083832886070013, -0.007280709221959114, -0.00955868884921074, 0.013182496652007103, 0.0010762488236650825, -0.0008804418612271547, 0.0013258337276056409, -0.008097031153738499, -0.006050710566341877, -0.027225440368056297, 0.004983425140380859, 0.005885240156203508, -0.006574701052159071, 0.01171532366424799, 0.016602223739027977, 0.007462726905941963, -0.010507387109100819, -0.016513973474502563, -0.0009038835414685309, 0.016028592362999916, 0.023276207968592644, 0.015388771891593933, 0.0002604439214337617, -0.006574701052159071, 0.0047352188266813755, -0.011913888156414032, -0.02980678342282772, 0.0019139440264552832, -0.0018656817264854908, -0.018003208562731743, 0.004089883528649807, -0.027379879727959633, 0.012697115540504456, 0.015929309651255608, -0.0031853104010224342, 0.011958013288676739, 0.0007777121500112116, -0.009768284857273102, 0.006420261692255735, 0.015675587579607964, -0.02484266273677349, -0.012807429768145084, 0.006745687685906887, 0.00792604498565197, 0.01844446361064911, -0.0035327987279742956, 0.0022104124072939157, -0.031240861862897873, -0.02565898559987545, -0.005601182114332914, 0.028019700199365616, -0.008659631945192814, 0.006227212958037853, 0.03536659851670265, -0.00832317490130663, -0.008940931409597397, -0.0014092584606260061, 0.004018179140985012, -0.025725172832608223, -0.0030115661211311817, 0.0003207717963960022, 0.016844913363456726, 0.015112987719476223, -0.01997782476246357, 0.01393263041973114, 0.006238244008272886, 0.006982862018048763, -0.009040214121341705, 0.014285634271800518, 0.008516224101185799, -0.01808042824268341, 0.024114592000842094, -0.025769298896193504, 0.010110258124768734, 0.006607795134186745, 0.014528324827551842, 0.007688870187848806, -0.005752863362431526, 0.016249218955636024, -0.021566344425082207, -0.008957479149103165, 0.001977374544367194, -0.02091549150645733, 0.0352562852203846, -0.010788687504827976, -0.02345270849764347, 0.011781511828303337, -0.0014795835595577955, 0.022459885105490685, 0.008163219317793846, 0.008466582745313644, 0.026982750743627548, -0.006365105044096708, -0.014109131880104542, 0.004029210656881332, -0.005113043822348118, 0.007010440807789564, -0.00313842692412436, 0.01734132505953312, -0.007567525375634432, -0.034572336822748184, -0.025725172832608223, -1.2690393305092584e-05, -0.009343576617538929, -0.024136655032634735, -0.00506064435467124, 0.027799071744084358, 0.013050120323896408, 0.00039747433038428426, 0.00987859908491373, -0.012366174720227718, -0.009757253341376781, 0.003339749528095126, -0.00011617419659160078, 0.020639708265662193, 0.014969579875469208, 0.016425721347332, 0.021786971017718315, -0.0011238215956836939, -0.005339186638593674, 0.0021249190904200077, 0.01158294640481472, 0.00156783452257514, -0.0013623752165585756, -0.000945251202210784, 0.012829492799937725, 0.0167897567152977, -0.007512368261814117, -0.014153257943689823, 0.011638103984296322, 0.008400394581258297, -0.010959673672914505, 0.013712002895772457, -0.010755592957139015, -0.0031494584400206804, -0.006547122728079557, -0.019293880090117455, 0.00037506685475818813, -0.0073799919337034225, 0.007617166265845299, -0.006155509036034346, 0.003758942009881139, -0.010700436308979988, 0.007490305695682764, 0.001711242482997477, 0.020374955609440804, 0.0025482482742518187, -0.011671197600662708, 0.0008011538302525878, -0.015962403267621994, 0.013094245456159115, 0.0218200646340847, -2.9388280381681398e-05, 0.003932686056941748, -0.0016216125804930925, -0.005124074872583151, -0.0013747854391112924, 0.01719791814684868, 0.00955868884921074, 0.013403124175965786, 0.00648093456402421, -0.026409119367599487, -0.007744027301669121, -0.0020587309263646603, -0.009382186457514763, 0.00840590987354517, 0.016480877995491028, -0.0006784297293052077, -0.0046414523385465145, -0.003499704645946622, 0.03229987248778343, -0.017186885699629784, -0.017208948731422424, -0.003643112489953637, 0.016205094754695892, 0.010579091496765614, 0.012818461284041405, -0.0002595820988062769, 0.023232081905007362, -0.0027247504331171513, 0.014031912200152874, 0.014241509139537811, -0.02367333695292473, 0.006558154243975878, 0.002156634349375963, -0.02124643325805664, -0.00555154075846076, 0.0038058252539485693, -0.008665147237479687, -0.017275137826800346, -0.009779316373169422, -0.03168211877346039, 0.0022297173272818327, -0.016414690762758255, 0.008769945241510868, 0.0038306459318846464, -0.0010528070852160454, 0.016536034643650055, 0.0393378920853138, 0.018245898187160492, -0.011638103984296322, 0.017661236226558685, -0.00794810801744461, 0.001486478140577674, 0.007655776105821133, 0.006712593603879213, 0.0031136064790189266, -0.002258674707263708, -0.019371099770069122, 0.002917799400165677, -0.005496384110301733, -0.003943717572838068, 0.013303841464221478, -0.02321001887321472, 0.04516246169805527, -0.016900070011615753, 0.006238244008272886, 0.013127340003848076, 0.001348585938103497, -0.016127875074744225, 0.02290114015340805, -0.008935416117310524, 0.0038527087308466434, 0.014340790919959545, -0.02126849628984928, -0.00011798403284046799, -0.013623751699924469, -0.014715857803821564, 0.01611684262752533, -0.0012892922386527061, 0.0076943859457969666, -0.008455551229417324, -0.00955868884921074, 0.02371746301651001, -0.02643118053674698, -0.020849304273724556, 0.0022242015693336725, -0.00459181098267436, 0.01012128870934248, 0.011660166084766388, 0.0012699873186647892, 0.0013754749670624733, 0.00037954834988340735, -0.010689404793083668, 0.001387195778079331, -0.009470437653362751, 0.009393217973411083, 0.013822316192090511, -0.019580695778131485, -0.014362853951752186, 0.014153257943689823, -0.0022834951523691416, -0.0058907559141516685, 0.021356746554374695, 0.00724209938198328, 0.012652990408241749, 0.023121768608689308, 0.0206286758184433, -0.029872970655560493, 0.011472633108496666, 0.016591191291809082, -0.0007977064815349877, 0.011759448796510696, 0.004089883528649807, 0.007164879702031612, -0.027909385040402412, 0.010016490705311298, 9.936858259607106e-05, -0.012686084024608135, 0.010722499340772629, -0.017606079578399658, 0.024930913001298904, -0.0002538940461818129, 0.01752885989844799, -0.0033728438429534435, 0.016889039427042007, 6.278404907789081e-05, 0.01783773861825466, -0.006061742082238197, 0.012465456500649452, 0.0024020825512707233, -0.005664612632244825, 0.002590994816273451, -0.018047334626317024, -0.020066076889634132, 0.0018643029034137726, 0.0030060503631830215, -0.046508289873600006, -0.006045194808393717, 0.0059403968043625355, -0.018742311745882034, 0.002235232852399349, -0.01721998117864132, -0.015841059386730194, -0.04108085110783577, 0.01687800884246826, 0.029586154967546463, 0.0284168291836977, 0.013667876832187176, 0.005979006644338369, 0.005143379792571068, -0.010893485508859158, -0.014693795703351498, 0.0016602223040536046, 0.015333615243434906, 0.007170395459979773, 0.006260307040065527, -0.001048670383170247, -0.011946981772780418, -0.01765020377933979, 0.03415314480662346, 0.024467596784234047, -0.020110201090574265, 0.009327029809355736, 0.0076943859457969666, -0.012895680963993073, 0.016723569482564926, -0.0031025749631226063, -0.00907882396131754, 0.014053975231945515, -0.013899535872042179, -0.006701562087982893, 0.002054594224318862, -0.0062878853641450405, -0.005231630988419056, -0.002920557279139757, -0.0031025749631226063, -0.00724209938198328, -0.02091549150645733, 0.007170395459979773, 0.0006480934680439532, -0.0019594484474509954, -0.028880147263407707, 0.0061610243283212185, 0.019845448434352875, 0.0054798368364572525, 0.003896834095939994, 0.020948586985468864, -0.005110285710543394, -0.0018574082059785724, 0.005512930918484926, 0.014848234131932259, -0.013381061144173145, 0.01628231443464756, 0.008036358281970024, -0.015388771891593933, -0.003601744771003723, 0.01228895504027605, -0.0007184184505604208, 0.00478486018255353, 0.04088228568434715, 0.0053419447503983974, 0.009139496833086014, -0.016227155923843384, -0.01755092293024063, 0.03168211877346039, 0.009178106673061848, -0.013491375371813774, 0.014980611391365528, -0.003237709403038025, 0.017639173194766045, 0.007148332893848419, -0.0027812861371785402, -0.0005257140728645027, 0.01514608133584261, 0.004936541430652142, 0.01611684262752533, -0.015344646759331226, 0.002370367292314768, 0.009216716513037682, 0.03062310442328453, 0.003477641846984625, 0.018389306962490082, -0.0033094133250415325, -0.004939299542456865, -0.0010514281457290053, -0.007876403629779816, -0.0010417756857350469, 0.005223357584327459, -0.002513775136321783, -0.024975039064884186, 0.018863655626773834, 5.282995698507875e-05, -0.020132264122366905, -0.006144477520138025, -0.0031687633600085974, 0.010766624473035336, -0.027821134775877, -0.007788152899593115, 0.008124609477818012, -0.004928268026560545, 0.021356746554374695, 0.008725820109248161, 0.015885183587670326, 0.006502997130155563, -0.003921655006706715, 0.009464922361075878, -0.022459885105490685, -0.008753398433327675, -0.00552120478823781, -0.010181961581110954, -0.013866442255675793, 0.006447840481996536, -0.003684480208903551, 0.0005536372773349285, 0.005912818480283022, 0.0193049106746912, 0.013347967527806759, -0.007220036815851927, 0.005708738230168819, -0.007782637141644955, 0.003883044933900237, 0.0012410300550982356, -0.008698241785168648, -0.014384916983544827, 0.005339186638593674, 0.017881862819194794, -0.01916150376200676, 0.0003461094747763127, 0.017440607771277428, 0.020805178210139275, -0.0027868018951267004, 0.005534993950277567, -0.005488110240548849, 0.012311018072068691, -0.01201317086815834, -0.0019139440264552832, 0.017517827451229095, 0.0006825664895586669, 0.006938736420124769, 0.0063816518522799015, 0.016149936243891716, -0.0051020123064517975, 0.009409765712916851, 0.0024848177563399076, -0.017859799787402153, 0.002493091393262148, -0.0013154918560758233, 0.021114056929945946, 0.01515711285173893, 0.007148332893848419, 0.006155509036034346, -0.005336428992450237, -0.0074186017736792564, -0.024379344657063484, -0.017606079578399658, 0.00013573766045738012, 0.0013465175870805979, -0.006629858165979385, -0.013601688668131828, -0.00867066252976656, -0.010099226608872414, -0.01081626582890749, -0.006326495204120874, 0.02369539998471737, -0.0018050092039629817, 0.003414211329072714, -0.004020937252789736, -0.00648093456402421, 0.005769410636276007, -0.011417476460337639, -0.00314118480309844, -0.03947027027606964, -0.0005398480570875108, 0.0027812861371785402, 0.004384972620755434, 0.002353820251300931, 0.028284452855587006, -0.007258646655827761, 0.030667230486869812, -0.007766089867800474, 0.019966794177889824, -0.026607682928442955, -0.007909498177468777, -0.028769833967089653, 0.013855410739779472, 0.01160500943660736, 0.009630393236875534, -0.004889658186584711, 0.013734064996242523, 0.0007859856705181301, 0.005973490886390209, -0.019823385402560234, -0.009382186457514763, -0.0010314338142052293, 0.00455595925450325, 0.003237709403038025, -0.001227240776643157, -0.01961378939449787, -0.004503559786826372, -0.02187522128224373, 0.007170395459979773, 0.0033700859639793634, 0.01091003231704235, 1.3153625332051888e-05, -0.0183451808989048, -0.002417250769212842, 0.02755638211965561, -0.015642493963241577, 0.029166962951421738, 0.02222822606563568, -0.007137301377952099, -0.002291768789291382, -0.006519544404000044, 0.026938624680042267, -0.011229942552745342, -0.0007528915302827954, -0.019095314666628838, -0.02455584704875946, 0.007280709221959114, -0.026387056335806847, 0.02179800346493721, 0.0033562968019396067, -0.02345270849764347, -0.015068861655890942, -0.028902210295200348, -0.017495764419436455, -0.000987308332696557, 0.02263638749718666, 0.013028057292103767, 0.0061113834381103516, -0.006105867680162191, -0.02345270849764347, -0.007859856821596622, 0.003896834095939994, 0.006127930246293545, 0.017606079578399658, -0.013336936011910439, -0.021764907985925674, -0.011252005584537983, -0.0066739837639033794, 0.005471563432365656, -0.03832300752401352, 0.008361784741282463, 0.00891886930912733, -0.009851020760834217, -0.0069056423380970955, -1.48234139487613e-05, -0.001246545696631074, -0.001187251997180283, -0.007981201633810997, -0.007468242663890123, -0.00745721161365509, -0.017738455906510353, -0.008957479149103165, -0.006094836164265871, -0.03249843791127205, 0.018356213346123695, 0.004197439178824425, -0.02263638749718666, 0.0039271702989935875, -0.01091003231704235, -0.022768763825297356, 0.009371155872941017, -0.013568595051765442, 0.002617194317281246, -0.001955311745405197, 0.014042943716049194, -0.024710286408662796, 0.01887468807399273, 0.0052592093124985695, -0.00955868884921074, -0.00945940613746643, 0.010573575273156166, 0.020198453217744827, 0.005063402466475964, -0.008262502029538155, -0.02175387740135193, -0.013182496652007103, 0.053347744047641754, -0.008312143385410309, 0.01683388277888298, 0.007269678171724081, 0.0045973267406225204, 0.014009850099682808, -0.03896282613277435, 0.007264162413775921, 0.012024201452732086, 0.005099254194647074, -0.010474293492734432, -0.008212860673666, 0.016050655394792557, 0.005328155588358641, 0.026806248351931572, -0.0027495708782225847, -0.014726889319717884, 0.004156071692705154, 0.007815730758011341, -0.010297791101038456, 0.018698185682296753, -0.006596764083951712, -0.00839487835764885, -0.013193528167903423, 0.00012617137690540403, -0.02148912474513054, -0.010716983117163181, 0.012774335220456123, -0.0027275080792605877, -0.018543746322393417, 0.010987251996994019, 0.023033516481518745, 0.002493091393262148, 0.006607795134186745, 0.005201294552534819, -0.009360124357044697, 0.013392092660069466, -0.0037148164119571447, -0.014053975231945515, 0.016127875074744225, 0.012498551048338413, 0.018003208562731743, -0.007688870187848806, 0.015510117635130882, 0.008841649629175663, 0.0006694667390547693, -0.016635317355394363, -0.0011631208471953869, -0.010959673672914505, 0.012322048656642437, 0.0011582946171984076, -0.015488054603338242, 0.025151541456580162, 0.014837203547358513, 0.005868692882359028, -0.040065962821245193, 0.006828422658145428, -0.0029067681171000004, -0.023342395201325417, -0.017539890483021736, 0.002961924998089671, 0.01321559026837349, -0.004208470694720745, 0.035123907029628754, 0.006922189611941576, 0.008698241785168648, -0.010700436308979988, 0.01897396892309189, -0.005261967424303293, 0.00724761513993144, 0.024158718064427376, -0.0001947727578226477, 0.006778781767934561, 0.019988857209682465, 0.019911637529730797, 0.01693316549062729, -0.03117467276751995, 0.005135106388479471, 0.0030474180821329355, 0.01224482897669077, 0.022504011169075966, 0.006227212958037853, -0.0062051499262452126, 0.005659096874296665, 0.00084596878150478, 0.01734132505953312, 0.039823275059461594, 0.013436217792332172, 0.01777154952287674, 0.0009335303329862654, -0.008858196437358856, 0.01122442726045847, 0.022106880322098732, 0.0026654566172510386, 0.004933783784508705, 0.02204069308936596, -0.011351287364959717, -0.00964142382144928, 0.013325904496014118, -0.00022148937568999827, 0.005703222472220659, 0.015918279066681862, -0.019867511466145515, -0.0009693823521956801, -0.00527024082839489, -0.0037782469298690557, 0.010330885648727417, -0.021842127665877342, -0.0031218798831105232, -0.022250289097428322, -0.005642549600452185, 0.0009025046019814909, 0.009415281005203724, -0.007368960417807102, -0.006839454174041748, 0.026100240647792816, 0.01322662178426981, -0.00646990304812789, -0.017440607771277428, -0.013844379223883152, -0.0023441677913069725, -0.004456676542758942, -0.004296721424907446, 0.0014216687995940447, 0.015796933323144913, -0.0022600535303354263, -0.014748952351510525, -0.0028654003981500864, -0.013370029628276825, -0.00891886930912733, -0.0185878723859787, 0.02132365293800831, -0.03607260435819626, -0.015664556995034218, 0.00772748002782464, 0.007286224979907274, -0.02290114015340805, 0.015763839706778526, 0.01417532004415989, 0.01712069846689701, -0.0014230477390810847, -0.0002123540180036798, 0.03530040755867958, -0.017903925850987434, 0.0035493457689881325, 0.021467061713337898, 0.023629210889339447, -0.0050192768685519695, 0.026122301816940308, -0.025504546239972115, 0.00987859908491373, -0.005874208640307188, -0.009238778613507748, 0.009702096693217754, -0.002228338271379471, 0.002374503994360566, 0.006519544404000044, 0.015818996354937553, 0.010397073812782764, -0.0067291404120624065, 0.022945266216993332, 0.014660701155662537, -0.008356268517673016, 0.0129508376121521, 0.004029210656881332, 0.012796398252248764, 0.009900661185383797, -0.006911158096045256, -0.004263627342879772, 0.004343605134636164, 0.013734064996242523, -0.002716476796194911, 0.0034500635229051113, 0.00984550453722477, 0.0066739837639033794, 0.012994962744414806, 0.033469200134277344, -0.035432785749435425, -0.002959167119115591, -0.002618573373183608, 0.010887970216572285, -0.008019811473786831, 0.00676775025203824, 0.0006160335033200681, 0.007109723053872585, -0.004542169626802206, 0.016127875074744225, -0.01618303172290325, -0.004076093900948763, 0.014307697303593159, -0.034064896404743195, -0.0017898411024361849, 0.016756663098931313, 0.016194062307476997, -0.011836668476462364, -0.006326495204120874, 0.0038085831329226494, -0.006872548256069422, 0.009851020760834217, -0.0026475307531654835, 0.011759448796510696, 0.0051764738745987415, -0.029056649655103683, -0.006425777450203896, -0.017153792083263397, 0.0024834389332681894, 0.010617701336741447, 0.010496355593204498, -0.013028057292103767, 0.00040919517050497234, -0.002610299736261368, 0.004156071692705154, 0.009481469169259071, -0.015929309651255608, -0.0005250246613286436, -0.0005929365288466215, -0.0013437597081065178, 0.016624286770820618, 0.0017346841050311923, -0.005046855192631483, -0.007308288011699915, 0.0005708737880922854, 0.00289849448017776, 0.00017753623251337558, 0.02036392316222191, 0.007562009617686272, -0.0008101168205030262, -0.011902856640517712, -0.01740751415491104, -0.003019839758053422, -0.00528127234429121, 0.003698269370943308, 0.012796398252248764, 0.008758913725614548, 0.00870375707745552, -0.008924384601414204, 0.006867032498121262, -0.013855410739779472, 0.015510117635130882, 0.0035741664469242096, 0.008792008273303509, -0.034903280436992645, -0.013381061144173145, 0.016326438635587692, -0.017109667882323265, -0.008124609477818012, 0.013579625636339188, -0.01514608133584261, -0.004213986452668905, 0.003119122004136443, 0.016171999275684357, -0.001731926342472434, 0.00790398195385933, -0.012046264484524727, 0.01767226681113243, -0.01714276149868965, -0.012090389616787434, 0.001711242482997477, 0.01654706709086895, 0.02623261697590351, -0.016756663098931313, 0.008461066521704197, -0.03856569528579712, 0.005090980790555477, -0.007661291863769293, -0.002359336009249091, 0.03188068047165871, -0.0022255803924053907, -0.004051273688673973, 0.004023694898933172, -0.013689939863979816, 0.0006960110040381551, 0.019437287002801895, 0.018124554306268692, -0.01767226681113243, -0.007782637141644955, 0.004503559786826372, -0.006751203443855047, -0.01025366596877575, -0.023629210889339447, 0.006056226324290037, 0.010937610641121864, -0.015289489179849625, 0.027777008712291718, 0.014528324827551842, 0.004139524418860674, -0.014726889319717884, 0.0004646967863664031, 0.010871422477066517, -0.002953651361167431, -0.009012635797262192, -0.006376136559993029, -0.006889095529913902, 0.00027905937167815864, 0.008450035005807877, 0.01769432984292507, -0.017716392874717712, 0.01650294102728367, -0.019503476098179817, 0.009393217973411083, 0.003932686056941748, 0.022404728457331657, 0.004713156260550022, 0.023496834561228752, -0.00013815077545586973, 0.01906222105026245, -0.016149936243891716, 0.009895145893096924, -0.015124019235372543, -0.01460554450750351, 0.027975574135780334, -0.0034721260890364647, -0.0027261292561888695, -0.026894498616456985, 0.006403714884072542, -0.008643084205687046, 0.018543746322393417, -0.004806922748684883, -0.004062304738909006, -0.017572984099388123, 0.010557028464972973, 0.02002195082604885, -0.005209567956626415, 0.022195132449269295, -0.0022807372733950615, 0.003234951524063945, -0.02216203883290291, 0.0024696497712284327, -0.025967862457036972, 0.006061742082238197, 0.01461657602339983, 0.016039622947573662, -0.020463205873966217, 0.010523934848606586, -0.03779350221157074, -0.022404728457331657, -0.015388771891593933, 0.013447249308228493, 0.0314173623919487, 0.014539356343448162, -0.011693260632455349, 0.00945940613746643, 0.0129508376121521, 0.0018077670829370618, 0.0036045026499778032, 0.0017553679645061493, -0.0202646404504776, 0.0036486282479017973, 0.015256395563483238, -0.008085999637842178, 0.0016795272240415215, 0.010882453992962837, 0.0019387647043913603, 0.0045862952247262, -0.02568104676902294, -0.009095370769500732, 0.0091725904494524, 0.018863655626773834, -0.025261854752898216, -0.01392159890383482, -0.018455494195222855, 0.0009162938222289085, 0.004404277540743351, 0.010137836448848248, 0.013678908348083496, 0.007468242663890123, -0.005466047674417496, -0.0027895597741007805, -0.015002673491835594, -0.012333080172538757, 0.02477647364139557, 0.006938736420124769, -0.018808498978614807, -0.027931448072195053, 0.027666695415973663, -0.022382665425539017, 0.003841677214950323, -0.0019470382248982787, 0.01693316549062729, -0.014340790919959545, 0.0009135360014624894, -0.025261854752898216, 0.00503582414239645, -0.003957506734877825, -0.010435683652758598, 0.002815759275108576, -0.0024613761343061924, 0.01459451299160719, 0.0034500635229051113, -0.016778726130723953, 0.004633178468793631, 0.010821782052516937, 0.0018767131259664893, -0.002575826831161976, 0.02594580128788948, 0.013667876832187176, -0.022548135370016098, -0.014980611391365528, 0.01256473921239376, -0.012476488016545773, -0.007225552573800087, -0.016734600067138672, 0.027401942759752274, 0.0177494864910841, -0.010281244292855263, 0.010523934848606586, 0.021864190697669983, 0.019260786473751068, -0.022680513560771942, 0.005143379792571068, 0.0032708034850656986, 0.005284029990434647, 0.00021407767781056464, 0.009806894697248936, 0.017164824530482292, 0.002236611908301711, 0.004886900540441275, 0.014859265647828579, 0.006453356239944696, 0.005022034514695406, 0.012708147056400776, 0.03556516021490097, 0.01544392853975296, 0.0009535247227177024, 0.013160433620214462, 0.0009879977442324162, 0.007021471858024597, 0.0002245919604320079, -0.008880259469151497, 0.0007363444892689586, -0.018576839938759804, 0.00897954124957323, -0.012686084024608135, 0.013734064996242523, -0.016822850331664085, -0.008185282349586487, -0.002192486310377717, -0.015201238915324211, -0.00676775025203824, 0.007225552573800087, -0.00840590987354517, 0.006028648000210524, -0.01746267080307007, 0.007666807621717453, 0.022051723673939705, -0.009823441505432129, 0.005226115230470896, 0.009691065177321434, 0.016370564699172974, 0.014462136663496494, -0.01160500943660736, -0.00011703602649504319, -0.02448965795338154, -0.006260307040065527, -0.009602813981473446, 0.005463290028274059, -0.015344646759331226, -0.04227223992347717, -0.010038553737103939, 0.0017539890250191092, 0.0001470275892643258, -0.017517827451229095, 0.040132153779268265, -0.013149402104318142, -0.00483174342662096, -0.008902321569621563, -0.031284987926483154, -0.012035232968628407, 0.004249838180840015, 0.0023800197523087263, -0.012730210088193417, -0.011958013288676739, 0.014859265647828579, 0.012641958892345428, 0.03302794694900513, 0.010479808785021305, -0.03218955919146538, -0.013546532019972801, 9.230160503648221e-05, 0.002695793053135276, -0.019415225833654404, 0.008003264665603638, 0.008825101889669895, 0.013700971379876137, -0.010755592957139015, -0.0284168291836977, 0.02479853667318821, -0.012299986556172371, -0.022559167817234993, 0.024930913001298904, 0.009564204141497612, -0.025217730551958084, -0.01132922526448965, 0.006188603118062019, 0.019580695778131485, -0.0048179542645812035, -0.009371155872941017, -0.022768763825297356, 0.01392159890383482, 0.00060258898884058, -0.012829492799937725, -0.020783115178346634, 0.020948586985468864, -0.00696079945191741, 0.010077163577079773, 0.0027840440161526203, -0.008648600429296494, -0.0007315182592719793, 0.012112452648580074, -0.005455016158521175, -0.004285690374672413, -0.01685594581067562, 0.00018494794494472444, 0.0005536372773349285, 0.025504546239972115, -0.0019622063264250755, -0.004663514904677868, 0.0008563107112422585, -4.929646820528433e-05, -0.0023276207502931356, -0.030225975438952446, -0.0006615379243157804, -0.005758379120379686, 0.01779361255466938, -0.019503476098179817, 0.005747347604483366, 0.017804643139243126, 0.005231630988419056, -0.014627606607973576, 0.0068560014478862286, -0.00937667116522789, -0.005907302722334862, -0.002353820251300931, -0.017164824530482292, 0.02455584704875946, -0.012410299852490425, 0.011417476460337639, 0.012344111688435078, 0.02733575366437435, 0.0023165892343968153, -0.004415309056639671, -0.003717574290931225, 0.012531645596027374, 0.008808555081486702, -0.03611673042178154, 0.008041874505579472, 0.0015374983195215464, 0.001966343028470874, -0.004145040176808834, -0.024136655032634735, 0.017881862819194794, -0.0016740115825086832, 0.007683354429900646, 0.01226689200848341, -0.028262389823794365, 0.01681181974709034, -0.0068946112878620625, -0.021577375009655952, 0.003905107732862234, -0.011483664624392986, -0.03364570066332817, 0.0057638948783278465, -0.0026516674552112818, 0.006127930246293545, 0.014782045967876911, 0.004258112050592899, -0.017021415755152702, -0.008571380749344826, 0.02292320318520069, 0.017429577186703682, 0.020077107474207878, -0.015344646759331226, 0.013789222575724125, -0.0031494584400206804, -0.029365528374910355, -0.03417520970106125, -0.008279048837721348, -0.004139524418860674, 0.0047048828564584255, -0.015653524547815323, 0.002269705990329385, 0.007308288011699915, -0.0048924158327281475, 0.018863655626773834, -0.015532179735600948, 0.005328155588358641, 0.004109188448637724, -0.025504546239972115, -0.017275137826800346, 0.0051020123064517975, 0.009139496833086014, -0.0010341916931793094, -0.017925988882780075, -0.006944252178072929, 0.0007149711600504816, 0.0011224426561966538, -0.011737385764718056, -0.00018891233776230365, 0.021025806665420532, -0.010413620620965958, 0.0303362887352705, -0.0023358941543847322, -0.011417476460337639, 0.030402477830648422, -0.00550465751439333, -0.014583481475710869, -0.011803573928773403, 0.005272998474538326, -0.005328155588358641, 0.015465991571545601, -0.02292320318520069, -0.01266402192413807, -0.00430499529466033, 0.0139105673879385, -0.030777543783187866, -0.01697728969156742, 0.02040804922580719, -0.0014823414385318756, -0.0009431827929802239, 0.012222766876220703, -0.014561418443918228, -0.0008549317717552185, -0.025460420176386833, 0.012410299852490425, -0.0009680034127086401, 0.004084367770701647, 0.004757281858474016, -0.008058421313762665, -0.014164289459586143, 0.005592908710241318, 0.010352947749197483, -0.0016229914035648108, -0.012035232968628407, 0.011505726724863052, -0.014561418443918228, -0.010628732852637768, 0.007413086015731096, 0.010308822616934776, -0.00043987619574181736, -0.022217195481061935, 0.014980611391365528, -0.010010975413024426, -0.015278458595275879, -0.0030419023241847754, -0.002482060110196471, -0.0024255241733044386, -0.004503559786826372, 0.02204069308936596, -0.026850374415516853, 0.007562009617686272, -0.009145012125372887, 0.00843900442123413, 0.010231602936983109, -0.0022421274334192276, -0.0010521176736801863, 0.006861517205834389, -0.005934881046414375, -0.0026047839783132076, 0.037639062851667404, -0.004666273016482592, -0.00723658362403512, -0.00696631520986557, 0.00790398195385933, 0.00794810801744461, -0.0075564938597381115, 0.0015264669200405478, 0.011958013288676739, -0.00744066433981061, 0.01568662002682686, 0.008422456681728363, -0.0018849866464734077, 0.008284565061330795, -0.005747347604483366, -0.010397073812782764, -0.008378331549465656, -0.004509075544774532, -0.010899001732468605, -0.018676122650504112, 0.008565864525735378, -0.007357928901910782, -0.0095917833968997, 0.0012548192171379924, -0.009023667313158512, 0.005813536234200001, -0.005375038832426071, -0.010275728069245815, 0.004646968096494675, 0.019360067322850227, 0.008229407481849194, 0.011257520876824856, 0.0012734347255900502, -0.017584016546607018, 0.013314872980117798, 0.011891825124621391, -0.018985001370310783, 0.013877472840249538, 0.014936485327780247, -0.023232081905007362, -0.010176446288824081, -0.006889095529913902, 0.002537216991186142, -0.016469847410917282, 0.00724761513993144, 0.007683354429900646, 0.00937667116522789, 0.005129590630531311, 0.015499086119234562, 0.01683388277888298, -0.018554776906967163, 0.01129613071680069, -0.01844446361064911, 0.006072773598134518, 0.0038334038108587265, 0.016988322138786316, 0.02316589280962944, 0.007771605625748634, -0.013182496652007103, 0.006773266009986401, 0.001709863543510437, 0.00627133809030056, -0.025769298896193504, -0.002235232852399349, -0.011240974068641663, -0.0021442240104079247, -0.0030115661211311817, -0.006889095529913902, -0.005934881046414375, -0.0008900943212211132, 0.023386521264910698, -0.013998818583786488, -0.01225586049258709, -0.028063824400305748, 0.012167609296739101, 0.03258669003844261, 0.008361784741282463, -0.005471563432365656, -0.01488132867962122, 0.007407570257782936, -0.021522218361496925, -0.0059403968043625355, 0.011803573928773403, -0.008962994441390038, 0.00627685384824872, -0.011858731508255005, 0.013789222575724125, 0.0052785142324864864, -0.009211200289428234, -0.007280709221959114, -0.007683354429900646, -0.014285634271800518, -0.0010086816037073731, -0.017231011763215065, 0.0335795134305954, -0.009470437653362751, -0.027821134775877, 0.0030805121641606092, -0.00791501346975565, 0.0025192908942699432, -0.004950330592691898, 0.013458280824124813, 0.01693316549062729, -0.0036513861268758774, -0.00860999058932066, -0.003949233330786228, -0.015333615243434906, 0.005209567956626415, 0.001992542529478669, 0.016293345019221306, -0.0237395241856575, -0.014925453811883926, 0.0025068805553019047, -0.00045607853098772466, -0.01297290064394474, 0.0023496835492551327], "87f2d885-6a0d-4836-b824-ecdb1829b746": [-0.018623022362589836, -0.019998500123620033, -0.0016874700086191297, 0.05032080039381981, -0.0006843574228696525, -0.009659243747591972, 0.037709690630435944, 0.01704663410782814, -0.016088437288999557, 0.04049155116081238, 0.02591768465936184, 0.008059673011302948, 0.030507756397128105, -0.002242876449599862, -0.05149536207318306, 0.021003060042858124, -0.022656723856925964, 0.010872445069253445, 0.025361310690641403, -0.0348350964486599, 0.034185998141765594, 0.028993187472224236, -0.06701197475194931, 0.011969735845923424, 0.01463568676263094, 0.015338880009949207, 0.003013684181496501, 0.0031508454121649265, -0.019009392708539963, 0.007043520919978619, -0.009241964668035507, 0.007673303596675396, -0.022826725617051125, 0.025794045999646187, -0.000311752111883834, -0.011490636505186558, -0.013144299387931824, 0.006201234646141529, -0.03925516828894615, 0.000574725039768964, -0.04240794479846954, -0.003942903596907854, -0.024866757914423943, -0.04314977675676346, -0.04376796633005142, 0.03310416266322136, -0.028359541669487953, -0.015562973916530609, -0.02023032121360302, 0.014071586541831493, 0.013136572204530239, -0.046704377979040146, 0.00802103616297245, 0.015810251235961914, 0.03372235223650932, -0.029982294887304306, 0.0003916823479812592, 0.04117156192660332, 0.0005916287191212177, -0.03171323239803314, -0.023259460926055908, -0.020941240713000298, -0.00902559794485569, -0.006946928333491087, -0.005926912184804678, 0.007198068778961897, 0.015933889895677567, 0.008391951210796833, -0.04364432767033577, -0.03196050599217415, 0.008546499535441399, 0.033660534769296646, -0.0665174201130867, -0.008894232101738453, 0.03022957034409046, -0.042222488671541214, 0.035669658333063126, 0.03400053828954697, -0.000624953128863126, -0.023970380425453186, -0.006104642525315285, 0.015416153706610203, 0.024186747148633003, -0.02203853242099285, 0.07239024341106415, -0.005158036481589079, -0.0028997051995247602, -0.058233652263879776, 0.033876899629831314, 0.0090951444581151, -0.007329434622079134, 0.03554601967334747, -0.0030175477731972933, 0.006491011939942837, 0.004617118742316961, 0.004570754244923592, 0.005428495351225138, -0.009829246439039707, 0.029626833274960518, -0.01755664311349392, 0.00936560332775116, -0.013244755566120148, 0.0022544676903635263, 0.03230051323771477, 0.004709847271442413, 0.002888113958761096, -0.0038501748349517584, 0.02406310848891735, -0.006409874651581049, 0.030662305653095245, -0.010146070271730423, -0.011761095374822617, 0.030878672376275063, 0.01624298468232155, -0.05168082192540169, -0.0348350964486599, -0.013785673305392265, 0.0038211969658732414, -0.02072487398982048, -0.009404240176081657, -0.02322855032980442, 0.01411795150488615, -0.001368714845739305, -0.003908130340278149, -0.05134081467986107, -0.010972901247441769, 0.018808480352163315, 0.001417977036908269, 0.004675074014812708, 0.012124283239245415, 0.00019958413031417876, -0.002507539698854089, -0.009048780426383018, 0.037029679864645004, 0.025624042376875877, 0.012085646390914917, 0.011413362808525562, 0.06831017136573792, -0.04775530472397804, 0.03260960802435875, -0.06135552003979683, -0.02992047555744648, -0.009419694542884827, 0.0641682893037796, 0.021621251478791237, 0.019766677170991898, -0.044540707021951675, 0.03789514675736427, -0.025345856323838234, 0.03542238101363182, -0.05718272551894188, -0.02927137352526188, -0.030291389673948288, -0.007383526302874088, 0.06045914068818092, -0.020693965256214142, 0.0016662196721881628, 0.01077198889106512, -0.022162169218063354, 0.014148861169815063, 0.014643413946032524, -0.06540467590093613, 0.003935175947844982, 0.039347898215055466, 0.042346127331256866, -0.002065146341919899, 0.02624223381280899, 0.03141959011554718, -0.01193882618099451, 0.01387067511677742, -0.017170272767543793, -0.009172418154776096, -0.0011368930572643876, 0.005722136236727238, -0.013306574895977974, -0.014527503401041031, 0.02956501394510269, 0.030507756397128105, 0.03347507491707802, -0.034526001662015915, -0.04358251020312309, -0.010632895864546299, -0.0008611216326244175, -0.035669658333063126, 0.04030609503388405, 0.012139738537371159, -0.01638207770884037, 0.00911059882491827, 0.03279506415128708, 0.011421089991927147, -0.019998500123620033, -0.007959216833114624, -0.01111972238868475, 0.017587551847100258, -0.015825705602765083, 0.00552122388035059, 0.008840139955282211, -0.030816853046417236, -0.03412417694926262, 0.002982774516567588, 0.018329381942749023, -0.00793603528290987, 0.008816958405077457, 0.03582420572638512, -0.043211594223976135, 0.009751972742378712, -0.01379340048879385, -0.013978858478367329, 0.003755514044314623, -0.025284036993980408, 0.040893375873565674, -0.04834258556365967, 0.0038965390995144844, 0.010826081037521362, -0.020493052899837494, -9.146096999756992e-05, -0.03514419496059418, 0.01504523865878582, -0.006792380474507809, -0.04191339388489723, 0.006715106777846813, 0.0033961902372539043, -0.01805119588971138, -0.03007502295076847, -0.050722621381282806, -0.01445795688778162, -0.020539416000247, 0.019287578761577606, -0.005691226571798325, 0.004238476511090994, -0.017819372937083244, -0.031064128503203392, -0.02794226072728634, 0.018313927575945854, 0.009056507609784603, 0.04265522211790085, 0.07628484815359116, -0.015284787863492966, -0.0069701108150184155, -0.018422110006213188, 0.0022757179103791714, 0.04491162300109863, 0.014844326302409172, -0.04114065319299698, 0.008384224027395248, 0.023784922435879707, 0.009813792072236538, 0.0071555678732693195, 0.007209660019725561, 0.004377569537609816, -0.01690754108130932, 0.028127718716859818, -0.0028204992413520813, -0.029024096205830574, -0.002470834646373987, 0.026319509372115135, -0.003664717311039567, -0.02590222842991352, 0.022162169218063354, 0.025855865329504013, 0.028962278738617897, 0.05130990594625473, 0.012340649962425232, 0.012989751994609833, -0.00438916077837348, -0.013986585661768913, 0.04076973721385002, -0.012425651773810387, 0.021497614681720734, 0.0021771935280412436, 0.02040032297372818, -0.005243037827312946, 0.007128522265702486, 0.037338774651288986, 0.004563027061522007, 0.016258439049124718, -0.011992917396128178, -0.013175209052860737, -0.01655208133161068, 0.0027007246389985085, -0.014604777097702026, -0.012773384340107441, 0.01079517137259245, -0.0222394447773695, 0.03792605549097061, 0.004029836505651474, -0.010856990702450275, 0.02644314616918564, -0.06049004942178726, -0.00099393620621413, 0.009643789380788803, 0.030816853046417236, -0.015192058868706226, 0.01027743611484766, 0.023954926058650017, 0.018453020602464676, 0.002221626229584217, -0.019859405234456062, -0.044695254415273666, -0.0047407569363713264, -0.0037497186567634344, -0.026334963738918304, -0.03594784438610077, -0.024990396574139595, 0.03990427032113075, -0.02690679021179676, 0.05359721556305885, 0.010478348471224308, -0.013283392414450645, 0.027154067531228065, 0.03471146151423454, -0.06398283690214157, -0.020292140543460846, -0.008005581796169281, 0.019813042134046555, 0.007290797308087349, -0.019952135160565376, -0.02125033736228943, -0.016953906044363976, -0.010223343968391418, 0.0010779716540127993, 0.004663483239710331, -0.05260810628533363, 0.0357314758002758, 0.020802147686481476, -0.054246313869953156, 0.021343065425753593, -0.014349773526191711, -0.01853029429912567, -0.013855219818651676, -0.02242490090429783, 0.00927287433296442, -0.027849532663822174, 0.0007007781532593071, -0.03406235948204994, -0.02961137890815735, -0.02757134661078453, -0.04250067472457886, 0.002644701162353158, -0.043860696256160736, -0.0006718004588037729, -0.029364101588726044, 0.0013851355761289597, -0.03158959373831749, -0.032671429216861725, 0.00323971058242023, 0.026180416345596313, 0.017433004453778267, -0.040862467139959335, 0.001167802605777979, 0.0009847600013017654, -0.006008049938827753, 0.003483123378828168, -0.037215135991573334, 0.05619361996650696, -0.016752993687987328, -0.030832307413220406, -0.0064369202591478825, -0.01723209209740162, -0.010393346659839153, 0.03860606625676155, -0.01840665563941002, 0.007708076853305101, -0.005629407707601786, -0.026628604158759117, 0.010161524638533592, 0.018143923953175545, -0.002793453400954604, -0.01723209209740162, -0.009303783997893333, -0.035360559821128845, 0.012101100757718086, 0.015586156398057938, -0.0009258385398425162, 0.031991418451070786, -0.018823934718966484, 0.019488491117954254, 0.0020496915094554424, -0.0017029247246682644, 0.01720118150115013, -0.0056100888177752495, 0.002360719256103039, -0.021111244335770607, 0.012657473795115948, 0.019503945484757423, 0.0019260533154010773, 0.06695014983415604, -0.031682319939136505, -0.025129489600658417, 0.0474771186709404, -0.053257208317518234, 0.05149536207318306, -0.01270383782684803, -0.008322404697537422, 0.0175411868840456, -0.01953485608100891, -0.018097560852766037, -0.008871049620211124, -0.01511478517204523, -0.030538666993379593, -0.0010142206447198987, -0.014597049914300442, 0.0027528845239430666, -0.01707754284143448, 0.000746659585274756, -0.03597875311970711, -0.017664825543761253, -0.0020361687056720257, 0.010316072963178158, 0.016505716368556023, 0.0060350955463945866, -0.0054671321995556355, 0.02055487222969532, 0.05115535855293274, 0.033351439982652664, 0.006688060704618692, -0.008013308979570866, 0.041882481426000595, 0.018453020602464676, -0.002642769133672118, 0.028112264350056648, 0.058079104870557785, -0.005629407707601786, 0.01805119588971138, 0.011962007731199265, -0.0009108667145483196, -0.006471693515777588, 0.013074752874672413, 0.016088437288999557, -0.014697506092488766, 0.025824954733252525, 0.036040570586919785, 0.007723531685769558, -0.011722458526492119, -0.03171323239803314, -0.0021926483605057, -0.014156588353216648, -0.013994312845170498, 0.010370164178311825, 0.005335766356438398, 0.005911457352340221, 0.055080875754356384, -0.03257869929075241, -0.013785673305392265, -0.02188398316502571, -0.0166911743581295, -0.0511244460940361, 0.0009775154758244753, 0.03829697147011757, -0.0012180306948721409, -0.014087041839957237, 0.019272124394774437, -0.027014974504709244, -0.010231071151793003, -0.003519828664138913, -0.006321009248495102, 0.047909852117300034, -0.02610314078629017, 0.022115806117653847, -0.04064609855413437, -0.007159431930631399, 0.005629407707601786, 0.020817603915929794, 0.019426671788096428, 0.05044443532824516, 0.0045900726690888405, -0.018638476729393005, 0.005579179618507624, 0.011374725960195065, 0.0024515162222087383, 0.03007502295076847, -0.007920579984784126, 0.0020748055540025234, 0.024681299924850464, 0.018298471346497536, 0.0011088812025263906, 0.005185082089155912, -0.007599893491715193, 0.01723209209740162, 0.0017560506239533424, -0.005776227917522192, -0.026474056765437126, 0.026984063908457756, 0.01587207056581974, 0.01837574690580368, -0.011235632933676243, 0.035855114459991455, -0.053040843456983566, 0.001348430523648858, -0.025855865329504013, 0.01823665387928486, -0.023444917052984238, -0.005239174235612154, -0.007101476192474365, 0.027540437877178192, -0.02961137890815735, -0.01972031220793724, -0.034185998141765594, 0.014519776217639446, 0.01136699877679348, 0.02222398854792118, -0.045715272426605225, -0.00970560871064663, 0.0030812988989055157, -0.046395283192396164, 0.021435795351862907, -0.010895627550780773, 0.001516501302830875, -0.026798607781529427, -0.013692944310605526, -0.03205323591828346, -0.004099383018910885, -0.07424481213092804, 0.011962007731199265, 0.012897022999823093, 0.018097560852766037, -0.014063859358429909, -0.00438916077837348, 0.04110974445939064, 0.014836599119007587, -0.0074067083187401295, -0.007051248103380203, -0.020338505506515503, 0.01924121379852295, 0.015586156398057938, -0.004516662564128637, 0.008600590750575066, -0.016134802252054214, -0.033876899629831314, -0.02659769542515278, 0.00681556249037385, 0.042717043310403824, -0.009921975433826447, 0.010308345779776573, 0.004787121433764696, -0.005555997136980295, 0.002424470381811261, -0.008824685588479042, 0.0028861821629107, -0.017680279910564423, -0.0464261919260025, 0.023120366036891937, 0.003658921690657735, -0.02154397778213024, 0.002169466344639659, 0.00959742534905672, -0.005691226571798325, -0.004327341448515654, 0.01236383244395256, 0.015995709225535393, -0.01707754284143448, 0.023692194372415543, -0.021945802494883537, 0.017510278150439262, 0.020276686176657677, -0.06571377068758011, -0.01856120303273201, 0.020693965256214142, 0.00927287433296442, -0.02961137890815735, -0.01992122456431389, 0.000286638067336753, 0.002710383851081133, 0.03078594245016575, 0.004400751553475857, -0.01288156770169735, -0.011567911133170128, 0.00213469285517931, 0.023027637973427773, 0.019333943724632263, 0.009976067580282688, 0.006985565181821585, 0.04178975522518158, -0.021605797111988068, -0.0031759594567120075, 0.024294931441545486, -0.001543547259643674, -0.04614800587296486, -0.05285538360476494, -0.02271854318678379, 0.002273786114528775, 0.009759699925780296, 0.01445795688778162, -0.0012547358637675643, 0.007990126498043537, -0.0033034614752978086, -0.008600590750575066, -0.022502174600958824, -0.012441106140613556, 0.02508312463760376, 0.02273399755358696, 0.006664878688752651, -0.04444797709584236, 0.007082157768309116, -0.018669387325644493, 0.026783151552081108, 0.0006606922834180295, 0.01822119764983654, 0.023506736382842064, 0.009875611402094364, 0.008330131880939007, 0.0075883022509515285, 0.028204992413520813, -0.018453020602464676, -0.011088812723755836, 0.03205323591828346, -0.025206763297319412, 0.005853502079844475, 0.018313927575945854, 0.023321278393268585, -0.007325571030378342, -0.023970380425453186, 0.023460371419787407, -0.03511328622698784, 0.013685217127203941, 0.0004955192562192678, -0.018669387325644493, 0.02939501218497753, 0.01907121203839779, -0.016613900661468506, 0.02222398854792118, 0.011506091803312302, 0.02622677944600582, -0.01590297929942608, -0.01670662872493267, 0.02392401546239853, -0.02137397602200508, 0.010223343968391418, -0.008693319745361805, 0.019442126154899597, 0.011397908441722393, 0.0021559433080255985, -0.009991521947085857, -0.02944137714803219, 0.010887900367379189, -0.016289349645376205, 0.02806589938700199, -0.00618191622197628, 0.0009789643809199333, -0.046735286712646484, -0.0027586801443248987, 0.011444272473454475, -0.014597049914300442, 0.06070641800761223, -0.010037886910140514, 0.008561953902244568, 0.004570754244923592, 0.0022544676903635263, 0.036195121705532074, 0.024974942207336426, -0.025191308930516243, 0.01939576305449009, -0.017633916810154915, 0.018468474969267845, 0.0059925951063632965, -0.03641148656606674, 0.0038269925862550735, 0.013105662539601326, 0.0005298095638863742, -0.004122565500438213, 0.0001158505619969219, -0.03474237024784088, -0.001173598226159811, 0.017773009836673737, -0.006293963640928268, 0.0007799839950166643, 0.013461122289299965, 0.02023032121360302, 0.015014328993856907, 0.04497344046831131, -0.005838047247380018, -0.008237403817474842, 0.01803574152290821, 0.0034039176534861326, -0.017510278150439262, -0.013012933544814587, -0.009983794763684273, 0.02023032121360302, 0.005733727477490902, -0.01395567599684, 0.007769896183162928, -0.036009661853313446, -0.03440236300230026, 0.010346982628107071, -0.016768448054790497, -0.0001894419256132096, -0.012479743920266628, -0.016675719991326332, -0.030662305653095245, 0.01703117974102497, -0.02091033197939396, 0.021992167457938194, -0.021961256861686707, 0.0019530991557985544, -0.02539222128689289, -0.013716126792132854, -0.004620982334017754, -0.047878943383693695, 0.012101100757718086, -0.024155838415026665, -0.06361191719770432, -0.008994688279926777, -0.003863697638735175, -0.02358401007950306, -0.01429568137973547, 0.03294961526989937, -0.017433004453778267, -0.0227649062871933, 0.009218783117830753, 0.01870029605925083, 0.022100349888205528, -0.004083928652107716, -0.023599466308951378, 0.006997156422585249, -0.012108828872442245, 0.02342946268618107, -0.005409176927059889, -0.0009456400293856859, -0.0219148937612772, 0.03155868127942085, -0.010254253633320332, 0.03264051675796509, -0.018283016979694366, 0.0005013147601857781, -0.018004830926656723, -0.02995138429105282, -0.016783902421593666, 0.012263376265764236, 0.0022757179103791714, 0.003467668779194355, 0.028993187472224236, 0.015006601810455322, 0.0020496915094554424, -0.0017570165218785405, -0.005695090163499117, -0.02342946268618107, 0.01670662872493267, 0.018592113628983498, 0.054246313869953156, -0.014218407683074474, 0.020091228187084198, 0.02975047193467617, -0.0115447286516428, -0.021992167457938194, 0.006742152385413647, -0.01011516060680151, 0.030847761780023575, 0.01972031220793724, 0.01573297753930092, -0.040522459894418716, 0.04314977675676346, -0.02789589762687683, 0.019813042134046555, 0.0029228872153908014, 0.00468280166387558, 0.01808210462331772, 0.03727695345878601, 0.02822044864296913, 0.0022042396012693644, 0.031064128503203392, -0.012495198287069798, 0.029704106971621513, -0.017927557229995728, -0.011637457646429539, 0.00943514984101057, -0.032331421971321106, 0.011846097186207771, 0.019349398091435432, 0.015122512355446815, 0.02525312826037407, 0.01703117974102497, 0.001967587973922491, 0.027014974504709244, 0.0031547092366963625, -0.04265522211790085, -0.010717897675931454, -0.011413362808525562, -0.018669387325644493, -0.031682319939136505, -0.005482587032020092, -0.028544997796416283, -0.02024577558040619, 0.011019266210496426, -0.016938449814915657, 0.022857636213302612, -0.008793775923550129, 0.026118597015738487, -0.006885109469294548, 0.029039552435278893, -0.003765173489227891, 0.030476847663521767, -0.021961256861686707, 0.0012016099644824862, 0.012193829752504826, 0.010725624859333038, -0.03505146503448486, -0.01261110883206129, -0.0066185141913592815, 0.0136311249807477, 0.016474807634949684, -0.00022107595577836037, -0.016938449814915657, 0.013963403180241585, 0.025191308930516243, 0.016953906044363976, -0.014187498018145561, -0.01956576481461525, -0.017108453437685966, -0.040707919746637344, 0.04197521135210991, 0.012332922779023647, -0.024264020845294, -0.01455068588256836, 0.031326860189437866, -0.018916664645075798, 0.006444647908210754, -0.00031778914853930473, 0.0300595685839653, 0.010385619476437569, -0.006560558453202248, 0.01102699339389801, -0.02475857548415661, 0.002932546427473426, 0.018993938341736794, -0.007047384511679411, -0.016521170735359192, 0.022826725617051125, -0.0006375100929290056, 5.1918435929110274e-05, -0.010076523758471012, -0.0072135236114263535, 0.021343065425753593, -0.012039282359182835, 0.03056957572698593, 0.0015000805724412203, 0.016134802252054214, 0.0018874163506552577, -0.0029209554195404053, -0.012077919207513332, 0.03539147228002548, -0.0019608265720307827, -0.022795816883444786, -0.030894126743078232, -0.00017966194718610495, 0.0013996245106682181, 0.00493394210934639, 0.026984063908457756, -0.028544997796416283, 0.02424856647849083, 0.04484980180859566, 0.004860531538724899, 0.004848940763622522, -0.00693147350102663, 0.01639753207564354, -0.01975122280418873, 0.03223869204521179, 0.009133781306445599, 0.009713335894048214, -0.01520751416683197, 0.011645184829831123, 0.0043968879617750645, 0.004485752899199724, -0.008724229410290718, 0.02157488837838173, -0.00697783799842, 0.020863967016339302, -0.0016526966355741024, -0.016428442671895027, 0.0034000540617853403, 0.012031554244458675, -0.052577197551727295, 0.005293265916407108, 0.015841159969568253, 0.017479367554187775, 0.01145972777158022, -0.019967589527368546, 0.016165710985660553, -0.03146595507860184, -0.036844220012426376, -0.015037511475384235, 0.024974942207336426, 0.022162169218063354, -0.014427047222852707, 0.023027637973427773, -0.010107433423399925, 0.0001015428060782142, 0.012348378077149391, -0.023104911670088768, 0.012966569513082504, 0.006104642525315285, -0.01070244237780571, 0.027540437877178192, 0.0013561579398810863, -0.030646849423646927, -0.007174886763095856, 0.004404615145176649, -0.0029480012599378824, -0.0016546285478398204, -0.021281246095895767, -0.013036116026341915, 0.010741079226136208, -0.021621251478791237, -0.01820574328303337, -0.0033730079885572195, 0.05270083621144295, -0.03727695345878601, -0.0017029247246682644, 0.009798337705433369, 0.03981154039502144, 0.004709847271442413, -0.005764637142419815, 0.01987486146390438, 0.0006998122553341091, 0.010146070271730423, 0.008832412771880627, 0.02389310672879219, 0.006232144311070442, -0.009180145338177681, 0.012912477366626263, -0.009056507609784603, 0.00843058805912733, -0.017340274527668953, 0.01077198889106512, 0.010346982628107071, -0.02392401546239853, -0.009257419966161251, 0.0160420723259449, 0.009048780426383018, 0.004168929997831583, 0.008901959285140038, -0.016783902421593666, -0.0006379931000992656, -0.02271854318678379, 0.012317468412220478, 0.011537001468241215, 0.01463568676263094, -0.00452052615582943, -0.01590297929942608, -0.007209660019725561, -0.005239174235612154, 0.00016287900507450104, -0.020183956250548363, 0.023522190749645233, 0.0012103032786399126, 0.011645184829831123, 0.012495198287069798, -0.0030542530585080385, 0.005768500734120607, -0.013213845901191235, -0.004995760973542929, 0.005069171544164419, -0.012487471103668213, -3.103032213402912e-05, -0.02625769004225731, 0.007839442230761051, 0.020338505506515503, -0.020956696942448616, -0.009388785809278488, -0.009535606019198895, 0.008260585367679596, 0.0016121278749778867, -0.02710770256817341, -0.0020825329702347517, 0.001991736236959696, -9.840355050982907e-05, -0.0008847867720760405, -0.017757555469870567, -0.0015387176536023617, 0.002324014203622937, -0.012124283239245415, 0.006197371054440737, -0.011931098066270351, -0.005088489968329668, 0.0320841446518898, 0.0009393615182489157, 0.008592863567173481, -0.031311407685279846, -0.01520751416683197, -0.0511244460940361, -0.026334963738918304, 0.03959517553448677, -0.028838640078902245, -0.006378964986652136, -0.00927287433296442, -0.027478618547320366, -0.013097935356199741, -0.010346982628107071, 0.018762115389108658, 0.00374005944468081, 0.006672605872154236, 0.02154397778213024, -0.038667887449264526, 0.002391628921031952, 0.020539416000247, 0.0348350964486599, -0.025964047759771347, 0.016072982922196388, -0.01975122280418873, -0.01204700954258442, -0.0427788607776165, 0.012819749303162098, 0.017108453437685966, -0.03730786591768265, 0.04076973721385002, 0.008368768729269505, 0.018669387325644493, -0.01536978967487812, 0.033691443502902985, -0.0036724447272717953, -0.006649423856288195, -0.018993938341736794, -0.017479367554187775, -0.021837620064616203, -0.01570206694304943, -0.004671210423111916, 0.015107057988643646, 0.016629355028271675, -0.022301262244582176, -0.02625769004225731, 0.03260960802435875, 0.018669387325644493, -0.0005187013885006309, -0.002835954073816538, -0.009728791192173958, -0.010826081037521362, 0.02508312463760376, 0.0072714788839221, -0.004845076706260443, 0.0017792327562347054, 0.02907046116888523, -0.01052471250295639, -0.010787444189190865, -0.019009392708539963, -0.023954926058650017, 0.01286611333489418, -0.03696785867214203, -0.025979503989219666, -0.05535906180739403, -0.008229675702750683, 0.020848512649536133, 0.02189943753182888, -0.024835849180817604, -0.03356780484318733, 0.02120397239923477, 0.004068473819643259, 0.014991147443652153, 0.013986585661768913, -0.012920205481350422, -0.012325195595622063, -0.005308720748871565, 0.030894126743078232, -0.007572847418487072, 0.00884786807000637, -0.022826725617051125, 0.006131688132882118, 0.008384224027395248, -0.0023896971251815557, 0.00041945267003029585, 0.017293911427259445, 0.02774135023355484, 0.008747411891818047, -0.03157413750886917, 0.014859781600534916, -0.0029209554195404053, -0.01888575404882431, -0.01322157308459282, -0.023614920675754547, 0.007221250794827938, 0.006205098703503609, -0.014187498018145561, -0.01624298468232155, 0.014944782480597496, -0.013352938927710056, 0.004377569537609816, 0.00044263486051931977, 0.02121942676603794, 0.02208489552140236, 0.012000644579529762, 0.013932493515312672, -0.017633916810154915, -0.012356105260550976, 0.015416153706610203, -0.010887900367379189, 0.0041457475163042545, -0.02358401007950306, 0.027509527280926704, 0.026644058525562286, -0.0016884359065443277, -0.013723853975534439, -0.003917789552360773, -0.01619662158191204, -0.0028050444088876247, 0.003711081575602293, 0.012224739417433739, -0.008816958405077457, -0.00852331705391407, -0.006579877343028784, 0.04484980180859566, 0.022656723856925964, 0.014674323610961437, -0.010300617665052414, -0.02222398854792118, 0.015817977488040924, 0.017850283533334732, 0.03381508216261864, 0.00893286895006895, -0.017958465963602066, 0.019086666405200958, -0.006444647908210754, -0.018298471346497536, 0.01987486146390438, 0.012742474675178528, 0.0014343977672979236, -0.011096539907157421, 0.028622271493077278, -0.005559861194342375, 0.018623022362589836, -0.025345856323838234, 0.004926214460283518, 0.005300993099808693, 0.025994958356022835, -0.014110224321484566, -0.009288329631090164, -0.0043968879617750645, -0.02624223381280899, 0.021482158452272415, 0.011753368191421032, 0.020307594910264015, 0.022301262244582176, 0.003191414289176464, 0.019349398091435432, -0.002096056006848812, 0.041882481426000595, -0.033351439982652664, -0.004265522118657827, -0.02809680998325348, -0.006788516882807016, 0.004860531538724899, -0.011676094494760036, -0.0026079958770424128, -0.01286611333489418, -0.017108453437685966, -0.027818623930215836, 0.017000269144773483, -0.001070244237780571, -0.028467724099755287, -0.019473036751151085, -0.021018516272306442, 0.015763886272907257, -0.018344836309552193, -0.02406310848891735, 0.0004807888763025403, -0.0026079958770424128, 0.014164315536618233, 0.00731784338131547, 0.015400699339807034, 0.019009392708539963, -0.0058419108390808105, 0.022780360653996468, -0.004597800318151712, -0.04744620621204376, 0.014079314656555653, 0.0003810571797657758, -0.033165980130434036, 0.007174886763095856, 0.006498739589005709, 0.03631875663995743, -0.006027368362993002, -0.0032686882186681032, -0.01327566523104906, 0.0028243630658835173, 0.010586531832814217, 0.02036941424012184, 0.026504965499043465, -0.00572599982842803, 0.009334693662822247, -0.021018516272306442, 0.012982023879885674, 0.0007877113530412316, 0.01689208671450615, 0.0002195063279941678, 0.0027239068876951933, 0.0427788607776165, 0.001844915677793324, -0.012031554244458675, -0.008013308979570866, -0.0051232632249593735, -0.0012750201858580112, -0.0036994905676692724, 0.02709224820137024, 0.016783902421593666, -0.024511298164725304, -0.02203853242099285, -0.019673949107527733, -0.007766032125800848, -0.01387067511677742, 0.008554226718842983, -0.0021733299363404512, 0.030832307413220406, 0.03644239529967308, 0.020833058282732964, 0.002685269806534052, -0.013646580278873444, 0.005571451969444752, -0.008747411891818047, -0.01229428593069315, 0.006309418473392725, 0.009728791192173958, -0.02774135023355484, 0.004848940763622522, -0.001493319170549512, -0.018499383702874184, -0.016103891655802727, 0.012858386151492596, -0.02438765950500965, 0.007089885417371988, 0.018808480352163315, -0.008337859995663166, 0.009249691851437092, -0.0009726858697831631, 0.039997000247240067, 0.019782131537795067, 0.014257044531404972, 0.01570206694304943, 0.006116233300417662, -0.010493802838027477, 0.02559313364326954, -0.002818567445501685, 0.034340545535087585, -0.01143654529005289, -0.01938030682504177, -0.001918325899168849, 0.014257044531404972, 0.01086471788585186, 0.0204157792031765, -0.03230051323771477, -0.012734747491776943, -0.017927557229995728, -0.01136699877679348, 0.006846472155302763, 0.018607567995786667, -0.026489511132240295, -0.01036243699491024, -0.02157488837838173, -0.005308720748871565, 0.002569359028711915, -0.001518433215096593, 0.004879849962890148, 0.005814865231513977, 0.015269333496689796, 0.02724679559469223, 0.010965174064040184, -0.01789664849638939, -0.00035690906224772334, -0.008484680205583572, 0.00961287971585989, -0.025840410962700844, 0.034495092928409576, -0.00534349400550127, -0.004122565500438213, -0.003884948091581464, 0.0414806567132473, 0.009427422657608986, 0.01803574152290821, -0.05118626728653908, -0.004261658526957035, 0.011846097186207771, 0.012557017616927624, -0.006154870614409447, 0.0015744568081572652, -0.032331421971321106, -0.021822163835167885, 0.0022834453266113997, 0.04333523288369179, -0.028374996036291122, 0.01788119226694107, -0.009643789380788803, -0.012773384340107441, -0.01361567061394453, -0.006390555761754513, 0.012672928161919117, 0.02958047017455101, 0.024990396574139595, -0.016984814777970314, -0.012495198287069798, 0.009999250061810017, 0.012000644579529762, -0.00040448084473609924, -0.01470523327589035, -0.02074032835662365, -0.009033325128257275, -0.0009765495778992772, 0.02036941424012184, 0.012170647270977497, -0.013607943430542946, 0.002287308918312192, 0.026489511132240295, -0.03061594069004059, 0.014983419328927994, 0.008747411891818047, -0.018793025985360146, 0.017000269144773483, -0.006174189038574696, -0.005644862540066242, 0.015995709225535393, 0.02407856471836567, -0.011737913824617863, 0.005807137582451105, 0.006985565181821585, -0.019133031368255615, -0.00688897306099534, 0.005443950183689594, -0.0022003757767379284, 0.0034753959625959396, -0.017649371176958084, -0.006587604526430368, 0.023104911670088768, 0.0001283472083741799, -0.006378964986652136, -0.017850283533334732, -0.0014363295631483197, 0.021976713091135025, 0.029858656227588654, 0.0015078079886734486, -0.006688060704618692, 0.013422485440969467, 0.002235149033367634, 0.0066185141913592815, 0.02307400293648243, 0.0019308829214423895, 0.02339855395257473, 0.021791255101561546, 0.015508882701396942, -0.03107958473265171, 0.004721438512206078, 0.018638476729393005, 0.007603757083415985, 0.022594904527068138, 0.016660263761878014, -0.002519130939617753, -0.022780360653996468, 0.008090582676231861, -0.00028229141025803983, 0.011235632933676243, 0.00042718008626252413, 0.00918787345290184, 0.014859781600534916, 0.0042964317835867405, -0.023769468069076538, -0.003189482493326068, -0.01690754108130932, -0.006351918913424015, 0.01538524404168129, 0.03758605197072029, 0.0030542530585080385, 0.022471265867352486, -0.012348378077149391, -0.0022254898212850094, -0.02421765774488449, 0.03171323239803314, -0.009751972742378712, -0.030677760019898415, -0.0003095787833444774, -0.002094124210998416, -0.001119506428949535, 0.012016099877655506, -0.010176979936659336, -0.007541937753558159, 0.01077198889106512, 0.04197521135210991, -0.014396137557923794, -0.01706208847463131, -0.005015079397708178, 0.01888575404882431, 0.005532815121114254, -0.021095789968967438, 0.007766032125800848, 0.002542313188314438, 0.03078594245016575, -0.012742474675178528, -0.008422860875725746, -0.005088489968329668, -0.0026987928431481123, 0.010076523758471012, -0.010331527329981327, -0.0031817550770938396, 0.008515589870512486, -0.01488296315073967, -0.010501530021429062, 0.02036941424012184, 0.00447802571579814, 0.007186477538198233, 0.0361333005130291, -3.5859942727256566e-05, 0.011482909321784973, -0.009404240176081657, -0.030306844040751457, -0.007105340249836445, 0.008801503106951714, 0.00852331705391407, 0.01805119588971138, -0.011985190212726593, 0.012827476486563683, 0.012379287742078304, -0.015253878198564053, -0.01561706606298685, -0.022656723856925964, 0.01757209748029709, -0.009759699925780296, -0.009381057694554329, 0.011552455835044384, -0.007174886763095856, 0.01079517137259245, 1.8367656593909487e-05, 0.005308720748871565, 0.02273399755358696, -0.008461497724056244, -0.02789589762687683, 0.009628335013985634, -0.03696785867214203, -0.011475182138383389, 0.005243037827312946, -0.017603006213903427, -0.00373812741599977, 0.008994688279926777, -0.003589375177398324, -0.029966838657855988, 0.0009345318539999425, -0.012850658036768436, -0.02121942676603794, 0.00877832155674696, 0.006545104086399078, -0.013538396917283535, -0.027694985270500183, -0.004223021678626537, -0.03027593530714512, -0.00022324928431771696, -0.0035294878762215376, 0.004964851308614016, -0.0005138717824593186, 0.015794796869158745, -0.012193829752504826, 0.022625813260674477, 0.003709149779751897, 0.01587207056581974, 0.018004830926656723, -0.04920805245637894, -0.013484304770827293, 0.01186155155301094, 0.021482158452272415, -0.019148485735058784, -0.02828226611018181, -0.013190663419663906, 0.006390555761754513, 0.016521170735359192, 0.0012296218192204833, 0.019828496500849724, -0.028143173083662987, 0.030136842280626297, -0.005100080743432045, 0.0036550580989569426, -0.027030428871512413, 0.013391575776040554, -0.009257419966161251, 0.0030986855272203684, -0.006019641179591417, -0.008739683777093887, 0.007074430584907532, 0.004056882578879595, 0.013816582970321178, 0.0012798499083146453, 0.03959517553448677, -0.0270613394677639, -0.0021482158917933702, -0.020168501883745193, 0.02104942500591278, 0.013662034645676613, -0.015763886272907257, -0.008670137263834476, 0.001418942934833467, -0.0002735980961006135, 0.006892836652696133, -0.0025249263271689415, 0.0019975316245108843, -0.025160400196909904, -0.009945157915353775, 0.026319509372115135, 0.020353959873318672, -0.00426938571035862, -0.004957124125212431, -0.021188518032431602, -0.007371935062110424, 0.014689778909087181, -0.01496023777872324, -0.018793025985360146, -0.013986585661768913, 0.05644089728593826, 0.0007693588268011808, 0.008376496843993664, -0.00048416960635222495, 0.018344836309552193, -0.0022506038658320904, 0.00748011888936162, 0.0011301315389573574, -0.010238799266517162, -0.006251462735235691, -0.016428442671895027, 0.03107958473265171, 0.0028572045266628265, 0.0042462036944925785, -0.0032300513703376055, -0.00020332708663772792, -0.04902259632945061, -0.0061355517245829105, 0.0015338879311457276, 0.006560558453202248, -0.020122136920690536, 0.011699276976287365, 0.001845881575718522, -0.006224417127668858, 0.009767428040504456, 0.02924046479165554, 0.0058419108390808105, -0.015593883581459522, -0.010084250941872597, -0.005018943455070257, 0.05328811705112457, -0.016011163592338562, 0.001493319170549512, -0.002862999914214015, 0.01145199965685606, 0.0019115643808618188, -0.020755784586071968, -0.03180595859885216, -0.025454040616750717, -0.0013049638364464045, 0.0017348002875223756, -0.0019086666870862246, -0.024449478834867477, -0.02537676692008972, -0.012595654465258121, 0.02176034450531006, -0.03421690687537193, -0.018298471346497536, -0.00795148964971304, 0.0024515162222087383, -0.0030986855272203684, -0.020153047516942024, -0.005490314215421677, -0.0062437355518341064, 0.008971505798399448, 0.009265147149562836, -0.0024727664422243834, 0.02222398854792118, -0.022934909909963608, -0.007058975752443075, 0.003685967531055212, -0.0031489136163145304, -0.005679635796695948, -0.00836104154586792, 0.005795546341687441, 0.009411967359483242, 0.00413802033290267, -0.002563563408330083, -0.005973276682198048, -0.014566140249371529, -0.0034270999021828175, -0.002992433961480856, -0.00877832155674696, -0.008786048740148544, -0.004083928652107716, 0.03659694269299507, 0.007422163151204586, 0.005200536921620369, -0.011761095374822617, -0.008670137263834476, -0.009404240176081657, -0.007541937753558159, 0.010285163298249245, -0.003664717311039567, -0.009659243747591972, 0.007700349669903517, 0.06308645755052567, 0.025701316073536873, 0.013244755566120148, -0.007889670319855213, -0.013260210864245892, -0.01735573075711727, 0.002391628921031952, 0.022795816883444786, 0.02169852703809738, -0.007441481575369835, -0.009326966479420662, -0.008461497724056244, -2.7755235350923613e-05, -0.0030735714826732874, -0.034526001662015915, 0.012765657156705856, 0.017664825543761253, 0.015277060680091381, -0.006989429239183664, 0.042222488671541214, 0.0036260802298784256, 0.0005737590836361051, -0.021497614681720734, 0.006707379128783941, 0.0015087738865986466, 0.007004884071648121, 0.011838370002806187, 0.03616420924663544, -0.0007060907664708793, 0.03307325392961502, 0.005100080743432045, 0.005509633105248213, -0.0023568556644022465, 5.647639409289695e-05, 0.003330507315695286, 0.02058578096330166, 0.001269224681891501, 0.019813042134046555, -0.013437940739095211, 0.007290797308087349, -0.0046403007581830025, -0.004698256496340036, 0.02409401908516884, 0.01438841037452221, -0.03094049170613289, -0.01094971876591444, 0.029379557818174362, -0.00952787883579731, 0.003419372485950589, -0.0074067083187401295, -0.03814242407679558, -0.021621251478791237, -0.0034599413629621267, 0.014195225201547146, -0.007302388548851013, -0.02658223919570446, 0.008059673011302948, -0.03940971568226814, 0.015277060680091381, 0.008191038854420185, -0.018963027745485306, 0.006865790579468012, -0.014751597307622433, -0.012572471983730793, 0.0031682320404797792, -0.0029074326157569885, -0.008082855492830276, -0.0044973441399633884, 0.0072560240514576435, 0.0016015026485547423, 0.0037052861880511045, 0.005818728823214769, -0.004794848617166281, -0.011946553364396095, 0.007120794616639614, 0.018638476729393005, -0.005320311523973942, 0.014025222510099411, 0.015841159969568253, -0.010431983508169651, 0.0017280387692153454, 0.001644003321416676, -0.004064609762281179, -0.010802898555994034, 0.007974672131240368, -0.01639753207564354, 0.00631714565679431, -0.0051734913140535355, 0.020786693319678307, -0.017773009836673737, -0.005293265916407108, 0.004068473819643259, 0.004107110667973757, 0.005563724786043167, 0.0087705934420228, -0.008963778614997864, -0.002024577697739005, 0.009427422657608986, 0.010192434303462505, 0.002743225311860442, 0.0032184601295739412, 0.011444272473454475, -0.014396137557923794, 0.012472015805542469, -0.007530346978455782, 0.007028066087514162, 0.009543333202600479, 0.007460799999535084, -0.01975122280418873, -0.007116931024938822, -0.02540767565369606, -0.005127126816660166, 0.007070566527545452, 0.003971881233155727, 0.008221948519349098, -0.0027123158797621727, 0.016119346022605896, -0.0115447286516428, -0.013623397797346115, -0.006661014631390572, 0.0012624631635844707, -0.012039282359182835, -0.002919023623690009, 0.010980628430843353, -0.0009190770797431469, 0.008917414583265781, -0.0245885718613863, -0.005559861194342375, -0.009605152532458305, -0.02256399393081665, 0.011652912013232708, 0.011799733154475689, 0.0178657379001379, -0.014512048102915287, -0.01211655605584383, -0.003116072155535221, 0.003863697638735175, 0.0003713979385793209, 0.021636707708239555, 0.002188784768804908, 0.004416206385940313, 0.026984063908457756, 0.003855970222502947, 0.00588827533647418, -0.0025983366649597883, 0.018839389085769653, -0.029966838657855988, -0.021791255101561546, 0.0041534751653671265, -0.010424256324768066, 0.014728415757417679, -0.012155192904174328, 0.01822119764983654, -0.019967589527368546, -0.021312156692147255, -0.014396137557923794, -0.02724679559469223, 0.0344332754611969, -0.008693319745361805, 0.0029306146316230297, -0.002565495204180479, -0.019024847075343132, -0.01236383244395256, -0.020183956250548363, 0.017092999070882797, 0.0005254629068076611, 0.027818623930215836, 0.02389310672879219, 0.03622603043913841, -0.00223901285789907, -0.005277811083942652, -0.00392938032746315, -0.013329757377505302, -0.028019536286592484, -0.009728791192173958, 2.7996715289191343e-05, -0.012696110643446445, -3.187550464645028e-05, -0.007348753046244383, 0.02225489914417267, 0.00588827533647418, 0.012626564130187035, 0.025994958356022835, -0.011815187521278858, 0.014512048102915287, 0.004624845925718546, 0.014488866552710533, -0.0004279045097064227, -0.010748807340860367, -0.009241964668035507, 0.010710169561207294, 0.010656078346073627, 0.0062746452167630196, 0.005285538267344236, -0.02404765412211418, -0.015655703842639923, 0.01104244776070118, 0.01856120303273201, -0.004242340102791786, -0.0014894554624333978, 0.0024785620626062155, 0.005219855345785618, 0.007881943136453629, 0.0023800376802682877, 0.006421465426683426, -0.007499437313526869, -0.009388785809278488, -0.0011504159774631262, -0.005826456006616354, 0.013901583850383759, -0.04166611656546593, -0.022795816883444786, 0.016660263761878014, -0.009697881527245045, -0.02103397063910961, -0.0026504965499043465, 0.018499383702874184, -0.006664878688752651, 0.034185998141765594, -0.011699276976287365, 0.01622753031551838, 0.021312156692147255, -0.024155838415026665, 0.015655703842639923, -0.0008577408734709024, -0.011050174944102764, 0.002822431270033121, 0.007491709664463997, 0.0027567483484745026, -0.016072982922196388, 0.020616691559553146, 0.004620982334017754, -0.01738663949072361, 0.01353066973388195, -0.0014063859125599265, 0.01738663949072361, 0.015122512355446815, -0.0025867456570267677, 0.033165980130434036, -0.007429890800267458, -0.00784330628812313, 0.00043973707943223417, -0.0065682861022651196, -0.006715106777846813, 0.015632521361112595, 9.894688264466822e-05, 0.020183956250548363, -0.015555246733129025, -0.020137593150138855, -2.7830697945319116e-05, -0.011567911133170128, 0.009906521067023277, -0.014689778909087181, 0.02925591915845871, 0.010632895864546299, 0.016768448054790497, 0.016428442671895027, -0.006784653291106224, -0.020091228187084198, -0.026690423488616943, 0.0018854844383895397, 0.02058578096330166, -0.0013774082763120532, -0.018823934718966484, 0.021126698702573776, 0.029673198238015175, -0.003995063249021769, 0.025098580867052078, 0.0057491823099553585, 0.005494178272783756, -0.002360719256103039, 0.0018400860717520118, 0.01789664849638939, 0.015918433666229248, -0.008330131880939007, -0.0041534751653671265, -0.015663430094718933, 0.0015628656838089228, -0.002169466344639659, 0.004215294029563665, -0.0049223508685827255, -0.00030305879772640765, 0.014983419328927994, -0.01045516598969698, 0.0010683124419301748, -0.030476847663521767, -0.010980628430843353, 0.009481513872742653, 0.01455068588256836, 0.014226134866476059, 0.005644862540066242, -0.0013783741742372513, 0.03709149733185768, -0.003998927306383848, -0.010169252753257751, 0.003946767188608646, -0.025871319696307182, -0.010934264399111271, 0.007982399314641953, 0.014311135746538639, -0.010547894984483719, 0.004238476511090994, -0.0028340222779661417, -0.012665200978517532, -0.0047909850254654884, -0.010671532712876797, 0.002165602520108223, -0.007777623366564512, 0.0003834719827864319, -0.01789664849638939, -0.00030305879772640765, -0.0037574460729956627, 0.016258439049124718, -0.015130240470170975, 0.012255649082362652, 0.004466434475034475, 0.01520751416683197, 0.04073882848024368, -0.010439710691571236, 0.010486075654625893, 0.012039282359182835, 0.024186747148633003, -0.007746713701635599, 0.012518380768597126, -0.008005581796169281, 0.017494823783636093, -0.007147840689867735, 0.009721063077449799, -0.01755664311349392, -0.02307400293648243, 0.0006094982963986695, 0.0031257313676178455, 0.006691924296319485, -0.013909311965107918, -0.0016797425923869014, -0.0004807888763025403, -0.006579877343028784, -0.011853824369609356, -0.01655208133161068, 0.009257419966161251, -0.01587207056581974, 0.009798337705433369, -0.006147142965346575, -0.015933889895677567, -0.004454843234270811, 0.020013954490423203, -0.0008756105089560151, -0.004481889307498932, 0.012665200978517532, 0.016134802252054214, -0.008368768729269505, -0.005146445240825415, 0.004474162124097347, 0.0006698686047457159, -0.003116072155535221, -0.01602661795914173, 0.004331205040216446, 0.009744245558977127, -0.028359541669487953, -0.01874666102230549, -0.012943387031555176, 0.019457582384347916, 0.003544942708685994, -0.020647600293159485, 0.011351543478667736, 0.011421089991927147, 0.0019163941033184528, 0.007777623366564512, -0.011521546170115471, 0.01421068049967289, -0.005459405016154051, -0.02256399393081665, -0.03341325744986534, -0.012734747491776943, 0.004926214460283518, 0.013414758257567883, -0.012356105260550976, -0.01639753207564354, -0.014774779789149761, -0.01538524404168129, 0.01602661795914173, 0.003214596537873149, 0.0003168232215102762, -0.02021486684679985, 0.009690153412520885, 0.004427797626703978, 0.022950364276766777, 0.009620606899261475, -0.004937805701047182, -0.001146552269347012, -0.015083875507116318, -0.009064234793186188, -0.010246526449918747, -0.003884948091581464, 0.015130240470170975, -0.008577409200370312, -0.03186777979135513, 0.031033219769597054, -0.001520365010946989, 0.0034270999021828175, -0.004624845925718546, -0.006823290139436722, -0.001370646758005023, 0.015663430094718933, 0.00819876603782177, -0.0391315296292305, 0.024449478834867477, 0.030523210763931274, 0.009921975433826447, -0.0017145158490166068, -0.0022235580254346132, 0.00902559794485569, -0.012781111523509026, -0.0035990343894809484, 0.008314677514135838, -0.010903354734182358, 0.0018149720272049308, -0.003954494372010231, 0.010238799266517162, 0.008639227598905563, 0.008090582676231861, -0.005838047247380018, 0.015331152826547623, -0.013213845901191235, 0.008755139075219631, -0.005297129508107901, 0.02874591015279293, -0.005246901419013739, -0.008299222216010094, -0.0009166622767224908, -0.01771119050681591, -0.008229675702750683, 0.0013474645093083382, 0.003908130340278149, -0.003519828664138913, -0.0028494771104305983, 0.014249317348003387, -0.0001125905619119294, -0.000496968103107065, 0.00731784338131547, -0.03027593530714512, -0.018993938341736794, 0.0032300513703376055, 0.01520751416683197, 0.021806709468364716, 0.019689403474330902, 0.01102699339389801, 0.009411967359483242, -0.00397574482485652, -0.006077596452087164, -0.0027741349767893553, 0.013507487252354622, 0.003979608416557312, 0.003539147088304162, -0.004416206385940313, -0.02438765950500965, 0.0005785887478850782, 0.023259460926055908, 0.01587207056581974, -0.009319238364696503, -0.0011900188401341438, -0.00035908239078707993, 0.007225114852190018, 0.01755664311349392, 0.0009050712105818093, 0.0003462838940322399, 0.01638207770884037, 0.0012866113102063537, -0.009767428040504456, -0.006842608563601971, -0.008577409200370312, -0.010756534524261951, -0.004080064594745636, -0.022486720234155655, -0.0035507380962371826, 0.012224739417433739, 0.01687663234770298, 0.014573867432773113, -0.0014334318693727255, -0.013770218938589096, -0.007870351895689964, -3.6403274862095714e-05, -0.016629355028271675, -0.006000322289764881, 0.02157488837838173, 0.00024256776669062674, 0.004261658526957035, 0.012464288622140884, 0.009319238364696503, 0.02103397063910961, 0.00795148964971304, -0.007603757083415985, 0.01438841037452221, -0.013175209052860737, 0.01143654529005289, 0.0019299170235171914, -0.007974672131240368, -0.004211430437862873, 0.0008137912955135107, -0.004748484585434198, -0.01229428593069315, 0.0006616582395508885, 0.013855219818651676, 0.0006804937729611993, -0.011428818106651306, 0.0038907434791326523, -0.001868097810074687, 0.02672133408486843, 0.02828226611018181, -0.0008620875305496156, 0.007530346978455782, -0.00977515522390604, -0.0011378589551895857, 0.025206763297319412, 0.009311511181294918, 0.011181540787220001, 0.009149235673248768, 0.02257945016026497, 0.015176604501903057, -0.02055487222969532, -0.003979608416557312, -0.01755664311349392, -0.004984170198440552, 0.024186747148633003, 0.003562329337000847, -0.004435524810105562, 0.005378267262130976, 0.0011243360349908471, 0.02939501218497753, -0.010408801957964897, -0.025361310690641403, 0.01045516598969698, -0.0005249798996374011, -0.005015079397708178, 0.00209026038646698, -0.015161150135099888, -0.0013754763640463352, 0.013692944310605526, 0.024774029850959778, -0.01338384859263897, -0.008670137263834476, -0.006494875997304916, -0.0026331099215894938, 0.009288329631090164, -0.027339525520801544, -0.00018292193999513984, -0.00959742534905672, 0.0006573115824721754, 0.00149428506847471, 0.0081833116710186, 0.0046287099830806255, 0.0015773546183481812, 0.010717897675931454, 0.009172418154776096, 0.009404240176081657, -0.02176034450531006, -0.0005544406012631953, 0.010231071151793003, -0.0032841430511325598, 0.015199786983430386, 0.003363348776474595, -0.024696756154298782, -0.006514194421470165, -0.016675719991326332, -0.009844701737165451, -0.0010779716540127993, 0.006031231954693794, -0.009690153412520885, -0.014790235087275505, 0.01570206694304943, 0.002986638341099024, 0.007375798653811216, -0.012904750183224678, 0.00811376515775919, 0.001419908949173987, -0.014241589233279228, 0.006514194421470165, -0.01143654529005289, -0.007997854612767696, -0.02440311387181282, -0.008940596133470535, 0.00144309108145535, -0.029534105211496353, -0.002766407560557127, -0.002517199143767357, 0.027354979887604713, 0.0038463110104203224, 0.005026670638471842, 0.014009768143296242, -0.025624042376875877, 0.0008529112674295902, -0.03860606625676155, -0.006904427893459797, 0.008422860875725746, 0.0017541187116876245, -0.017943011596798897, -0.002466971054673195, 0.009388785809278488, -0.014241589233279228, 0.0011359271593391895, -0.000747142534237355, 0.03430963680148125, -0.010833808220922947, 0.012580200098454952, 0.017278455197811127, 0.0010683124419301748, 0.010663805529475212, -0.011730185709893703, 0.004825758282095194, -0.020539416000247, -0.0030523212626576424, 0.0006843574228696525, -0.00323777855373919, 0.016119346022605896, 0.008639227598905563, -0.009512423537671566, 0.015168877318501472, -0.005100080743432045, 0.03344416618347168, -0.007820123806595802, -0.010138343088328838, -0.021265791729092598, 0.006548967678099871, 0.01721663773059845, -0.012077919207513332, -0.0003074054548051208, 0.0016063322545960546, -0.0014546822058036923, 0.010045614093542099, -0.010934264399111271, 0.0014247385552152991, 0.0065180580131709576, -0.02387765236198902, -0.012750202789902687, -0.0039274487644433975, -0.010640623047947884, -0.033845990896224976, -0.011065630242228508, 0.008507862687110901, 0.012139738537371159, 0.03027593530714512, 0.005501905456185341, -0.006266917567700148, 0.007966944947838783, 0.0032493697945028543, 0.01145972777158022, 0.014589322730898857, -0.004566890653222799, 0.0030098205897957087, -0.0037439230363816023, -0.020183956250548363, 0.014612504281103611, 0.005563724786043167, 0.00936560332775116, -0.006456238683313131, -0.027447707951068878, 0.009551060386002064, -0.011065630242228508, 0.02571677230298519, 0.0007915750611573458, -0.00884786807000637, -0.012533835135400295, -0.009976067580282688, 0.014249317348003387, 0.0038463110104203224, -0.01690754108130932, 0.005505769047886133, 0.01839120127260685, -0.008299222216010094, -0.013260210864245892, -0.0017299706814810634, 0.01723209209740162, -0.018483929336071014, 0.02004486322402954, 0.005559861194342375, 0.0004764422192238271, 0.006467829924076796, 0.031836867332458496, -0.003919721115380526, -0.030028657987713814, -0.012387014925479889, 0.02460402622818947, -0.022780360653996468, -0.017278455197811127, -1.6149049770319834e-05, 0.015493427403271198, 0.002414810936897993, 0.0006128790555521846, 0.0053666760213673115, -0.004775530193001032, -0.018113015219569206, -0.01094971876591444, 0.01568661257624626, -0.025114035233855247, 0.025175854563713074, -0.0050228070467710495, -0.009651516564190388, -0.017803918570280075, -0.020771238952875137, -0.0015899116406217217, -0.013005206361413002, -0.005018943455070257, 0.0007915750611573458, 0.010153797455132008, 6.187953113112599e-05, -0.0016478670295327902, 0.021513069048523903, 0.006904427893459797, 0.006069869268685579, 0.00613941578194499, 0.003490850795060396, 0.0045398445799946785, -0.002911296207457781, -0.016150256618857384, -0.0034502819180488586, -0.036195121705532074, 0.01992122456431389, -0.011351543478667736, 0.009883338585495949, 0.009126054123044014, -0.0018226993270218372, 0.007835579104721546, -0.02121942676603794, 0.016088437288999557, 7.093507156241685e-05, -0.00019475450972095132, 0.015354334376752377, -0.0011088812025263906, 0.004265522118657827, -0.001348430523648858, 0.004532117396593094, -0.019782131537795067, -0.005957821849733591, 0.011243360117077827, -0.00223901285789907, -0.03659694269299507, 0.011428818106651306, -0.020446687936782837, 0.027710439637303352, -0.007997854612767696, -0.0017048566369339824, -0.026381326839327812, -0.007329434622079134, 0.012093373574316502, 0.008306950330734253, -0.021343065425753593, 0.0002341159270144999, 0.02106487937271595, -0.011892461217939854, 0.005281674675643444, -0.016845721751451492, -0.017649371176958084, 0.010756534524261951, -0.001247974345460534, 0.008299222216010094, 0.013785673305392265, 0.01703117974102497, -0.007634666748344898, 0.016134802252054214, 0.010679260827600956, 0.0029962975531816483, 0.0034541457425802946, -0.0034464183263480663, 0.02006031759083271, 0.016103891655802727, 0.011289725080132484, -0.00538599444553256, -0.001820767531171441, 0.020941240713000298, 0.0032995978835970163, 0.0011571774957701564, -0.006166461389511824, -0.01027743611484766, -0.010478348471224308, -0.018592113628983498, -0.019148485735058784, 0.0013889992842450738, 0.005590770393610001, 0.0025481085758656263, 0.02690679021179676, 0.005103944800794125, 0.016969360411167145, -0.020693965256214142, 0.010316072963178158, -0.009319238364696503, -0.00861604604870081, 0.012394742108881474, 0.018993938341736794, 0.01286611333489418, 0.03579329699277878, 0.028344085440039635, 0.005957821849733591, -0.016752993687987328, -0.007201932370662689, 0.010856990702450275, -0.0013049638364464045, 0.01788119226694107, -0.006846472155302763, -0.010756534524261951, -0.0011146768229082227, -0.008245131000876427, 0.007623075507581234, 0.01740209385752678, 0.00761148426681757, 0.009288329631090164, 0.016289349645376205, -0.015052965842187405, 0.023043092340230942, 0.021157609298825264, 0.006127824541181326, -0.016119346022605896, -0.007313979789614677, -0.015810251235961914, -0.00927287433296442, 0.010972901247441769, 0.008314677514135838, 0.017757555469870567, 0.010895627550780773, -0.011475182138383389, -0.006359646562486887, 0.009489241056144238, 0.004292568191885948, 0.027834078297019005, -0.0075380741618573666, -0.014411591924726963, -0.008028763346374035, -0.0003119935863651335, -0.0032068691216409206, -0.019426671788096428, 3.525624197209254e-05, 0.008260585367679596, 0.013638853095471859, -0.004806439857929945, 0.014589322730898857, -0.0033073252998292446, -0.017278455197811127, 0.015423880890011787, 0.0042037032544612885, -0.017123907804489136, 0.0016836063005030155, 0.009427422657608986, -0.015825705602765083, -0.0054787234403193, 0.010656078346073627, -0.011243360117077827, -0.013105662539601326, 0.005436222534626722, -0.00030547360074706376, -0.01420295238494873, -0.007209660019725561, 0.015756160020828247, 0.0175411868840456, 0.023460371419787407, 0.012170647270977497, -0.014481139369308949, 0.026489511132240295, -0.0037246046122163534, -0.00509235356003046, 0.013422485440969467, 0.006208962295204401, 0.011598820798099041, 0.0331350713968277, 0.030013203620910645, -0.010625168681144714, 0.007619211915880442, -0.005536678712815046, -0.01789664849638939, -0.002441857010126114, -0.0004078615747857839, 0.005640998482704163, -0.0027837941888719797, -0.0007051248103380203, -0.016505716368556023, 0.01388612948358059, -0.011583365499973297, 0.007650121580809355, 0.011737913824617863, 0.007368071470409632, -0.003759377868846059, 0.019148485735058784, -0.011289725080132484, 0.0013407031074166298, 0.013700672425329685, -0.008106037974357605, -0.0036260802298784256, -0.0018632682040333748, 0.02792680636048317, -0.021451249718666077, 0.017092999070882797, -0.0055173602886497974, 0.003083230694755912, 0.012549290433526039, 0.02024577558040619, -0.01972031220793724, -0.006062141619622707, -0.013515214435756207, 0.03347507491707802, 0.011305179446935654, -0.013314302079379559, -0.0014875235501676798, 0.009141508489847183, 0.008399678394198418, -0.0041534751653671265, -0.011011538095772266, -0.019318487495183945, 0.004381433129310608, -0.049393512308597565, 0.004926214460283518, -0.006212825886905193, 0.031496863812208176, -0.0057491823099553585, -0.014172042720019817, -0.010431983508169651, -0.001472068834118545, 0.006100778467953205, -0.0042539313435554504, 0.013322029262781143, -0.027648620307445526, -0.01622753031551838, -0.014929328113794327, -0.0175411868840456, 0.007673303596675396, -0.0035816477611660957, 0.004559163469821215, -0.008662410080432892, 0.0044471160508692265, -0.0204157792031765, -0.01011516060680151, -0.022780360653996468, -0.007796941790729761, 0.001995599828660488, 0.002822431270033121, 0.008708774112164974, -0.004926214460283518, -0.011397908441722393, -0.010741079226136208, -0.009133781306445599, -0.013832037337124348, -0.0015783205162733793, 0.0075883022509515285, 0.04268613085150719, 0.018020285293459892, -0.019519399851560593, -0.009149235673248768, -0.021683070808649063, 0.005401449277997017, -0.0022274216171354055, -0.004130292683839798, -0.018669387325644493, -0.0022332172375172377, -0.003689831355586648, -0.0009577140444889665, -0.007623075507581234, -0.012657473795115948, 0.0148675087839365, -0.0015599679900333285, -0.013685217127203941, -0.03400053828954697, -0.018993938341736794, 0.025500405579805374, -0.008330131880939007, -0.018514839932322502, 0.005355084780603647, -0.02675224281847477, 0.00845377054065466, -0.006390555761754513, 0.021775800734758377, 0.0018748593283817172, -0.022533085197210312, 0.010385619476437569, 0.0018516770796850324, 0.008917414583265781, 0.0022563994862139225, 0.027045883238315582, 0.007731258869171143, 0.024325840175151825, -0.02205398678779602, -0.0015503086615353823, -0.013128845021128654, 0.03727695345878601, -0.000411242333939299, -0.010741079226136208, 0.006946928333491087, 0.003063912270590663, -0.00552122388035059, 0.014342045411467552, -0.001671049278229475, -0.0039274487644433975, 0.011258815415203571, -0.019488491117954254, -0.0004259726556483656, 0.00518121849745512, 0.011969735845923424, 0.0029267510399222374, -0.0035507380962371826, -0.011467454954981804, 0.00793603528290987, 0.013947948813438416, -0.028653182089328766, 0.017309365794062614, 0.022177625447511673, 0.013963403180241585, -0.02777225896716118, 0.009079689159989357, 0.03675149381160736, -0.0019820770248770714, -0.02091033197939396, -0.011328361928462982, -0.03163595497608185, 0.036009661853313446, 0.005351221188902855, 0.012587927281856537, -0.027293160557746887, 0.003241642378270626, 0.0148675087839365, 0.01353066973388195, -0.00041510601295158267, -0.005246901419013739, -0.0005385028780438006, 0.01939576305449009, 0.001744459499605, 0.02239399217069149, -0.003438690910115838, 0.00452052615582943, 6.136638694442809e-05, 0.00017169307102449238, 0.013762490823864937, -0.00761148426681757, 0.017587551847100258, -0.006657151039689779, 0.00843831617385149, 0.001395760802552104, 0.010501530021429062, -0.004474162124097347, -0.011660639196634293, -0.013522941619157791, -0.0071632955223321915, 0.012170647270977497, -0.006054414436221123, 0.011336089111864567, 0.013832037337124348, -0.02777225896716118, 0.010748807340860367, 0.008971505798399448, -0.012108828872442245, -0.006301690824329853, 0.017680279910564423, -0.0031817550770938396, 0.01573297753930092, 0.0023046957794576883, -0.0380806028842926, -0.03597875311970711, -0.016938449814915657, 0.01938030682504177, 0.015261605381965637, 0.005896002519875765, -0.011877006851136684, 0.0054787234403193, 0.03662785515189171, -0.002735497895628214, -0.014666596427559853, 0.01404840499162674, 0.003535283263772726, -0.0030928899068385363, 0.0016807084903120995, -0.008994688279926777, -0.029472285881638527, -0.002041964326053858, 0.0038791524711996317, 0.021853074431419373, -0.013190663419663906, 0.002457311609759927, -0.0001258116535609588, 0.008561953902244568, -0.010486075654625893, -0.01823665387928486, -0.0007698417757637799, 0.01011516060680151, 0.00688897306099534, -0.006340327672660351, 0.016490262001752853, -0.004435524810105562, 0.001671049278229475, 0.0007341025630012155, 0.0005607191123999655, -0.0036009661853313446, 0.021358521655201912, 0.01220155693590641, -0.006297827232629061, -0.017494823783636093, 0.012719293124973774, -0.01755664311349392, 0.0009654414607211947, 0.007348753046244383, 0.014032949693500996, -0.012533835135400295, -0.007422163151204586, 0.01354612410068512, 0.010146070271730423, 0.01605752669274807, -0.013260210864245892, 0.009651516564190388, -0.0075071644969284534, -0.004918487276881933, -0.0014614436076954007, 0.013144299387931824, 0.004879849962890148, 0.008067401126027107, -0.003415508661419153, -0.006452375091612339, -0.005764637142419815, -0.02123488299548626, -0.01088017225265503, 0.0002465521974954754, -0.013360667042434216, 0.007279206532984972, -0.00593077577650547, -0.01619662158191204, 0.00688897306099534, -0.009581970050930977, 0.001294338726438582, 0.009690153412520885, -0.0068696546368300915, -0.004543708637356758, -0.023939471691846848, 0.011969735845923424, 0.024804938584566116, -0.006355782505124807, 0.00334209855645895, -0.001145586371421814, 0.008082855492830276, -0.003813469549641013, -0.002347196452319622, 0.006881245411932468, 0.017463913187384605, 0.008407406508922577, 0.006332600489258766, -0.011390180326998234, 0.023769468069076538, -0.007236705627292395, 0.0337841734290123, 0.013376121409237385, 0.005602361634373665, 0.007186477538198233, 0.004818031098693609, 0.02723134122788906, -0.015841159969568253, 0.009002415463328362, 0.00697783799842, 0.01420295238494873, 0.005884411744773388, -0.0027258386835455894, 0.012387014925479889, 0.0055173602886497974, -0.002689133631065488, 0.003610625397413969, -0.005262356251478195, 0.010393346659839153, -0.00041196675738319755, 0.012410197407007217, 0.016088437288999557, -0.015099330805242062, -0.007483982481062412, 0.014156588353216648, 0.0034213042818009853, 0.025345856323838234, -0.0022486720699816942, 0.006062141619622707, 0.003512101247906685, -0.006688060704618692, -0.009126054123044014, -0.012039282359182835, -0.013808855786919594, 0.0024611754342913628, -0.018422110006213188, 0.008422860875725746, 0.003716877195984125, 0.013051570393145084, 0.015578429214656353, -0.03774059936404228, -0.012734747491776943, -0.009064234793186188, -0.026365872472524643, -0.0072560240514576435, 0.003264824626967311, 0.0074955737218260765, -0.014689778909087181, 0.000522565096616745, -0.007105340249836445, -0.0038192651700228453, 0.015083875507116318, 0.0160420723259449, -0.010493802838027477, -0.00572986388579011, -0.0012296218192204833, 0.003971881233155727, -0.010594259016215801, 0.0037709688767790794, -0.0016845721984282136, 0.01619662158191204, -0.025129489600658417, -0.00010951168223982677, -0.0005940435221418738, -0.023769468069076538, -0.034866008907556534, 0.004879849962890148, 0.005358948837965727, -0.022656723856925964, -0.013152026571333408, 0.0034309634938836098, -0.008036491461098194, 0.008106037974357605, -0.01511478517204523, -0.014056132175028324, 0.002492085099220276, -0.01111199427396059, -0.02208489552140236, 0.012132010422647, 0.029364101588726044, -0.02322855032980442, 0.005783955566585064, 0.017247546464204788, -0.006108506117016077, -0.014759325422346592, 0.019102120772004128, 0.008871049620211124, -0.001697129220701754, -0.01421068049967289, -0.01270383782684803, 0.009411967359483242, 0.0004078615747857839, -0.002474698470905423, -0.00961287971585989, -0.001222860300913453, -0.0015966730425134301, -0.004192112013697624, -0.018159378319978714, 0.015493427403271198, -0.0021327610593289137, 0.0033730079885572195, -0.025531314313411713, 0.008260585367679596, 0.0052159917540848255, 0.0036763083189725876, -0.0038076741620898247, -0.015802523121237755, 0.0052739474922418594, -0.009914248250424862, -0.01941121742129326, -0.027169521898031235, 0.0033266437239944935, -0.014110224321484566, -0.009767428040504456, 0.024001289159059525, 0.01955031044781208, -0.0043852967210114, -0.006089187692850828, -0.029286827892065048, -0.011150631122291088, -0.001219962490722537, -0.015145694836974144, 0.008399678394198418, 0.0063364640809595585, 0.027169521898031235, 0.03111049346625805, -0.009311511181294918, 0.009767428040504456, -0.01084926351904869, 0.01788119226694107, 0.002271854318678379, -0.002743225311860442, 0.01388612948358059, 0.013121116906404495, -0.019179394468665123, -0.007982399314641953, -0.0109574468806386, 0.012263376265764236, 0.0004018245672341436, -0.016598444432020187, 0.006850336212664843, 0.028715001419186592, -0.009241964668035507, -0.011343816295266151, -0.011931098066270351, 0.012124283239245415, 0.01635116897523403, 0.04775530472397804, 0.004010518081486225, 0.017850283533334732, -0.018947573378682137, -0.0025732226204127073, -0.012070191092789173, -0.004760075360536575, 0.0154547905549407, -0.024542206898331642, 0.018762115389108658, -7.950765575515106e-05, 0.0013609875459223986, 0.01496023777872324, 0.012788839638233185, -0.003336302936077118, -0.003191414289176464, -0.005285538267344236, -0.003792219329625368, 0.025284036993980408, -0.002210034988820553, -0.007035793270915747, -0.008299222216010094, -0.003172095865011215, -0.01707754284143448, 0.017649371176958084, 0.004157338757067919, 0.004945532884448767, -0.013159754686057568, -0.005911457352340221, 0.016845721751451492, 0.035669658333063126, 0.008901959285140038, -0.014504320919513702, 0.026195870712399483, 0.012642018496990204, 0.01127426978200674, -0.003419372485950589, 0.012587927281856537, 0.010965174064040184, 0.014767052605748177, -0.01890120841562748, -0.015091602690517902, 0.00970560871064663, -0.002121170051395893, -0.016675719991326332, 0.002494016895070672, 0.023290369659662247, 0.000498417008202523, -0.008461497724056244, 0.005339630413800478, 0.014110224321484566, -0.00959742534905672, -0.019797587767243385, 0.0024611754342913628, -0.015215241350233555, 0.03223869204521179, -0.0072135236114263535, -0.0012373492354527116, -0.0002820499357767403, 0.0008379394421353936, 0.004056882578879595, -0.014651142060756683, 0.012989751994609833, 0.031002311035990715, -0.015485700219869614, 0.0022370810620486736, -0.0038907434791326523, 0.009288329631090164, 0.0068194265477359295, 0.007031929679214954, 0.018638476729393005, -0.00868559256196022, -0.002735497895628214, -0.006966246757656336, -0.016273895278573036, -0.007259888108819723, -0.0230894573032856, -0.00936560332775116, -0.02256399393081665, 0.012920205481350422, 0.008206494152545929, -0.002837885869666934, -0.004694392904639244, -0.0070203389041125774, -0.010972901247441769, -0.011490636505186558, -0.012889295816421509, 0.002640837337821722, 0.01322157308459282, 0.010509258136153221, -0.0036009661853313446, 0.0006621411885134876, 0.003038798226043582, 0.022795816883444786, 0.004118701908737421, -0.007974672131240368, -0.014056132175028324, -0.0017367320833727717, 0.015269333496689796, 0.002891977783292532, -0.0027953851968050003, 0.0007920580101199448, 0.015663430094718933, -0.007719668094068766, -0.0016362760215997696, -0.022517630830407143, -0.002260263077914715, 0.008322404697537422, 0.0070126112550497055, 0.014929328113794327, -0.002414810936897993, 0.005161900073289871, -0.014195225201547146, 0.006382828578352928, 0.010339255444705486, 0.015771614387631416, 0.010764261707663536, 0.02358401007950306, 0.014009768143296242, 0.00970560871064663, -0.019333943724632263, 0.005981003865599632, 0.018128469586372375, -0.01329884771257639, 0.011683821678161621, 0.011969735845923424, 0.017603006213903427, 0.004304159432649612, 0.0003535283321980387, 0.0017637780401855707, -0.0017502550035715103, -0.02472766488790512, 0.003813469549641013, 0.019843950867652893, -0.01772664487361908, 0.013314302079379559, 0.013607943430542946, 0.011196996085345745, 0.006054414436221123, 0.004505071323364973, -0.010988356545567513, 0.017618460580706596, 0.005011215806007385, 0.021126698702573776, -0.00017603972810320556, 0.005424631759524345, -0.010741079226136208, 0.009512423537671566, 0.007982399314641953, -0.007047384511679411, -0.025330401957035065, -0.011413362808525562, -0.006545104086399078, -0.0069121550768613815, -0.013152026571333408, 0.0005964583251625299, 0.000573276134673506, 0.002069010166451335, 0.001915428088977933, 0.0011185405310243368, 0.003222323954105377, -0.0017782668583095074, -0.010285163298249245, 0.02324400469660759, 0.011877006851136684, 0.004172793589532375, -0.007893534377217293, 0.007259888108819723, -0.010238799266517162, -0.0041534751653671265, -0.004416206385940313, 0.001149450079537928, 0.010578804649412632, -0.009574242867529392, 0.001890314044430852, -0.0020535553339868784, -0.002267990494146943, 0.0051155355758965015, -0.004304159432649612, -0.0017492891056463122, 0.003461873158812523, -0.0017396298935636878, 0.011537001468241215, -0.005706681404262781, -0.0025268583558499813, -0.012572471983730793, -0.0008775423630140722, 0.0013996245106682181, -0.016830267384648323, -0.013978858478367329, 0.003908130340278149, -0.009697881527245045, 0.004037564154714346, -0.025036761537194252, -0.0025500403717160225, 0.02721588686108589, 0.020693965256214142, -0.012502925470471382, -0.02409401908516884, -0.019102120772004128, 0.007039657328277826, 0.009411967359483242, -0.0175411868840456, 0.013832037337124348], "c0af9c06-941b-4a98-a980-1dcec14868c8": [-0.014692394994199276, 0.014608819968998432, -0.0007203075801953673, 0.011031832545995712, -0.007563490886241198, -0.04018261283636093, 0.0056663500145077705, 0.05505887046456337, -0.03590359911322594, 0.037742238491773605, 0.010797823779284954, -0.00011556784738786519, 0.008436844684183598, -0.0014886704739183187, -0.0048264265060424805, 0.008290588855743408, -0.039280008524656296, 0.005570239387452602, -0.011098692193627357, -0.05612862482666969, 0.04596596583724022, 0.011901007033884525, -0.047269728034734726, 0.013664428144693375, 0.014399884268641472, -0.006368375848978758, -0.01351399440318346, 0.012954045087099075, -0.02841532602906227, -0.003079719841480255, 0.011641926132142544, -0.005553524475544691, 0.04389331862330437, 0.03700678423047066, 0.032025743275880814, -0.008169406093657017, 0.01002058107405901, 0.012076512910425663, 0.002342174993827939, -0.015402778051793575, -0.010806181468069553, -0.010914827696979046, 0.0008858895744197071, 0.01735006272792816, -0.023902302607893944, 0.021595647558569908, -0.004730315878987312, -0.015636786818504333, -0.013254913501441479, -0.006844750605523586, 0.011758930049836636, -0.05298622325062752, -0.017400208860635757, -0.012694964185357094, 0.025841230526566505, -0.018854403868317604, 0.012577960267663002, 0.026442967355251312, -0.01434973906725645, -0.003911286126822233, 0.0115583511069417, -0.017617501318454742, -0.02759629487991333, -0.018988123163580894, 0.006882358808070421, -0.00746320141479373, 0.025740941986441612, 0.01693219132721424, -0.018520105630159378, 0.015594999305903912, 0.017316633835434914, 0.003505949629470706, -0.06014019995927811, -0.01626359485089779, 0.005515916272997856, 0.022865979000926018, 0.025122489780187607, -0.018837688490748405, 0.0022544218227267265, 0.005900358781218529, 0.011666998267173767, -0.03010353073477745, 0.03254390507936478, -0.01506012212485075, 0.09273424744606018, -0.019255561754107475, -0.0406172014772892, -0.05983933061361313, -0.03587016835808754, -0.02968565747141838, 0.019823867827653885, -0.00953584909439087, 0.01875411532819271, 0.0007412012200802565, -0.015260701067745686, 0.009677925147116184, 0.002831085817888379, 0.012845398858189583, 0.004780460614711046, -0.028749622404575348, -0.014867900870740414, 0.01450017374008894, -0.028465470299124718, 0.003794281743466854, 0.0011752662248909473, -0.024270031601190567, 0.014692394994199276, 0.001259885379113257, -0.029802661389112473, 0.044762495905160904, -0.011533278971910477, -0.024420464411377907, 0.009468989446759224, 0.0202918853610754, -0.0308222696185112, -0.03797624632716179, -0.022498251870274544, -0.001875202520750463, -0.008666674606502056, -0.046601131558418274, 0.029200924560427666, 0.005039541516453028, -0.008311483077704906, -0.016439100727438927, -0.04747030884027481, 0.013271627947688103, 0.018720684573054314, 0.02410288155078888, 0.018169093877077103, 0.009978793561458588, -0.009000971913337708, -0.01191772148013115, 0.01625523716211319, 0.038611412048339844, 0.011290913447737694, 0.030638406053185463, -0.005553524475544691, 0.02508906088769436, -0.03790938854217529, 0.00675699720159173, -0.07307752966880798, -0.037040211260318756, 0.0026325962971895933, 0.03934686630964279, -0.012143372558057308, 0.025824517011642456, 0.0015074748080223799, 0.031189998611807823, 0.03309549763798714, 0.036204468458890915, -0.056095194071531296, -0.04185410216450691, -0.010923185385763645, -0.013823219574987888, 0.032159462571144104, -0.012928972952067852, 1.968570904864464e-05, -0.02898363210260868, 0.006389269605278969, 0.02575765736401081, 0.019940871745347977, -0.027345571666955948, -0.01639731414616108, 0.041954390704631805, 0.02355129085481167, 0.03401481732726097, 0.03871170058846474, 0.025958234444260597, -0.04145294427871704, 0.03590359911322594, 0.022498251870274544, -0.01877082884311676, 0.011290913447737694, 5.256051736068912e-05, -0.01183414738625288, 0.009736428037285805, 0.03680620342493057, 0.02283255010843277, 0.012277091853320599, -0.010555457323789597, -0.04355902224779129, 0.004675992298871279, 0.018135663121938705, -0.00018399445980321616, 0.03740793839097023, 0.024320175871253014, 0.007091294974088669, 0.012343951500952244, 0.029050491750240326, -0.021060770377516747, 0.0011407916899770498, -0.0008874565828591585, -0.0024967878125607967, -0.016213450580835342, 0.007429771590977907, 0.014525245875120163, -0.0008477586670778692, 0.0034140178468078375, -0.014115730300545692, 0.0026785621885210276, -0.005574418231844902, -0.04018261283636093, -0.005160724278539419, 0.021762795746326447, -0.014291237108409405, -0.001752974814735353, -0.03244361653923988, -0.04640055447816849, 0.026810694485902786, -0.051615603268146515, 0.030421113595366478, -0.04299071431159973, 0.0004695841344073415, -0.03055483289062977, -0.004184992518275976, -0.009084546938538551, -0.03871170058846474, 0.0006623278022743762, -0.024470608681440353, -0.03493413329124451, -0.021829655393958092, 0.029468363150954247, 0.024570899084210396, -0.025991665199398994, -0.04716943949460983, -0.015277416445314884, -0.030421113595366478, 0.014157517813146114, -0.0147007517516613, 0.0068990737199783325, 0.001777002471499145, -0.0010405023349449039, -0.012277091853320599, -0.035101283341646194, -0.011575066484510899, 0.007091294974088669, 0.047136008739471436, 0.0005202511674724519, -0.007713925093412399, 0.005900358781218529, 0.017450353130698204, 0.0038068178109824657, 0.013789789751172066, -0.0014907598961144686, 0.060474496334791183, 0.03857798129320145, 0.014892973005771637, 0.033429794013500214, 0.0020517536904662848, 0.004538094624876976, -0.00876696314662695, -0.016330454498529434, -0.00602572038769722, 0.0027015453670173883, -0.043358445167541504, -0.0004348485090304166, -0.0009574501891620457, -0.0029418219346553087, 0.020843476057052612, -0.034399259835481644, -0.014684037305414677, 0.034365829080343246, -0.010547100566327572, 0.03337964788079262, 0.032828059047460556, -0.05873614922165871, 0.009101261384785175, -0.016063015908002853, 0.011382845230400562, 0.025523647665977478, 0.009285124950110912, -0.015778863802552223, -0.010313091799616814, 0.0022230814211070538, -0.009326912462711334, -0.022030234336853027, 0.003152847522869706, 0.003846515668556094, -0.0036626518703997135, -0.027930593118071556, -0.031307000666856766, -0.0020883174147456884, 0.0280308835208416, 0.01707426831126213, -0.02284926362335682, -0.004143205005675554, -0.027261996641755104, -0.02592480555176735, -0.035803310573101044, -0.012093228287994862, 0.009260052815079689, 0.020358745008707047, 0.0036438475362956524, 0.027913877740502357, 0.015594999305903912, 0.018436532467603683, 0.03556930273771286, -0.007784963585436344, -0.015018335543572903, 0.036338187754154205, -0.025857945904135704, -0.015536497347056866, -0.0022857622243463993, 0.0013518172781914473, 0.007822572253644466, 0.0012180980993434787, 0.06879851967096329, 0.024136312305927277, -0.00952749140560627, 0.06134367361664772, 0.00798554252833128, -0.03566959127783775, -0.003324175253510475, -0.006995184347033501, -0.01987401209771633, 0.03251047432422638, 0.03894571214914322, -0.023166848346590996, -0.01795179955661297, -0.015720359981060028, 0.021461928263306618, 0.012218589894473553, -0.05211704969406128, 0.02635939233005047, 0.016572820022702217, -0.033262643963098526, -0.02463775873184204, -0.00042492401553317904, -0.0031486686784774065, -0.03321250155568123, 0.007045329082757235, -0.031607870012521744, -0.00014050961181055754, 0.0231167022138834, -0.039012569934129715, -0.040282901376485825, -0.017684360966086388, -0.04185410216450691, 0.005123116075992584, -0.06525495648384094, -0.015561569482088089, -0.013137909583747387, 0.0037859242875128984, -0.014516888186335564, 0.016464173793792725, 0.008420129306614399, 0.0034975921735167503, 0.025523647665977478, -0.00602572038769722, 0.0067235673777759075, 0.0009715533815324306, -0.008700104430317879, 0.001355996006168425, 0.003334621898829937, 0.014725824818015099, -0.04188753291964531, -0.027780158445239067, 0.020108021795749664, -0.02353457547724247, 0.01865382492542267, -0.022197384387254715, -0.032009027898311615, -0.01359756849706173, -0.02858247421681881, 0.008833822794258595, -0.04469563439488411, 0.0037650305312126875, 0.004843141417950392, -0.015803935006260872, 0.002789298538118601, 0.001253617345355451, 0.002636775141581893, 0.029434934258461, -0.0011930257314816117, -0.001998474821448326, -0.041686952114105225, 0.05171589180827141, -0.013472206890583038, 0.014416598714888096, 0.021110914647579193, 0.0026618472766131163, -0.004162009339779615, -0.027763444930315018, 0.00854966975748539, 0.025323068723082542, 0.012970760464668274, -0.014951475895941257, 0.0022774047683924437, -0.04091806709766388, -0.020275169983506203, -0.04034976288676262, 0.03744136914610863, -0.047136008739471436, -0.0025991664733737707, -0.00903440173715353, -0.04108521714806557, -0.0029418219346553087, -0.000234008562983945, -0.012552888132631779, -0.013288343325257301, 0.0065188100561499596, -0.002319192048162222, 0.020927051082253456, 0.014149160124361515, 0.013330130837857723, -0.0335802286863327, -0.010455167852342129, -0.022448107600212097, 0.01584572345018387, 0.051615603268146515, -0.026075240224599838, -0.0021123450715094805, 0.009811644442379475, -0.002287851646542549, 0.04272327572107315, -0.005361303221434355, -0.004283192567527294, 0.01878754422068596, -0.06244685500860214, -0.03566959127783775, 0.01806880347430706, 0.01820252276957035, 0.02004116214811802, 0.008294767700135708, 0.004772102925926447, 0.03429896757006645, 0.04690200090408325, 0.024470608681440353, -0.01485118642449379, -0.0378425270318985, -0.0038799454923719168, 0.018988123163580894, 0.00988686177879572, 0.017299918457865715, -0.014341381378471851, -0.052050188183784485, -0.020492464303970337, 0.01436645444482565, 0.023333996534347534, -0.022748975083231926, -0.013045976869761944, 0.022615255787968636, 0.004396018106490374, -0.0060382564552128315, -0.03493413329124451, -0.013447134755551815, -0.057499244809150696, 0.02144521288573742, 0.046835143119096756, -0.021077485755085945, -0.012293807230889797, 0.026025094091892242, -0.02533978410065174, -0.024554183706641197, 0.0032217963598668575, -0.003276119939982891, -0.0011930257314816117, 0.0015126982470974326, -0.001432257704436779, -0.04827262461185455, -0.008808750659227371, -0.011633568443357944, 0.0287161935120821, 0.006180333439260721, 0.02674383483827114, -0.015519781969487667, -0.017299918457865715, -0.018286097794771194, -0.0065773120149970055, 0.0017958068056032062, 0.01846996136009693, -0.010405023582279682, 0.03871170058846474, 0.019539715722203255, -0.017467066645622253, 0.017617501318454742, -0.02254839614033699, 0.0026806516107171774, -0.004558988381177187, 0.016848616302013397, -0.01679011434316635, -0.06622442603111267, 0.006435235496610403, 0.01134941540658474, -0.007768248673528433, -0.008858895860612392, -0.012302163988351822, -0.028465470299124718, 0.012661534361541271, 0.022464821115136147, 0.02019159495830536, -0.015477994456887245, 0.0049726818688213825, 0.022180669009685516, 0.019405996426939964, 0.008010614663362503, -0.018102234229445457, -0.009351984597742558, -0.0036689199041575193, -0.0037399581633508205, 0.014032156206667423, -0.018436532467603683, 0.019974302500486374, 0.035368721932172775, -0.017985230311751366, 0.033262643963098526, -0.008156869560480118, 0.019957587122917175, -0.01169207040220499, -0.020492464303970337, -0.029100636020302773, 0.007784963585436344, -0.005277728661894798, 0.014257807284593582, -0.01134941540658474, 0.018035374581813812, 0.011625210754573345, -0.012619747780263424, 0.020709756761789322, -0.011541636660695076, 0.0016996960621327162, -0.028198031708598137, -0.00241530267521739, -0.005816784221678972, -0.006807141937315464, -0.03807653486728668, -0.012619747780263424, -0.03337964788079262, 0.00018360269314143807, -0.04747030884027481, -0.012477670796215534, 0.013004190288484097, -0.03857798129320145, 0.003925911616533995, 0.02047574892640114, 0.006347482092678547, -0.005219226703047752, 0.02284926362335682, 0.02522278018295765, 0.01196786668151617, -0.05642949417233467, 0.03714049980044365, -0.0203086007386446, -0.029752517119050026, 0.0013215215876698494, 0.03319578617811203, 0.003645936958491802, 0.021812940016388893, -0.005215047858655453, 0.02632596343755722, -0.0029000346548855305, -0.005971396807581186, 0.002266957890242338, -0.006054971367120743, 0.00045678680180571973, -0.026961129158735275, 0.013564138673245907, -0.0013424152275547385, -0.011717142537236214, -0.0076428866013884544, 0.0012630193959921598, 0.017868224531412125, 0.01386500708758831, 0.027679869905114174, 0.03374737873673439, 0.0044461628422141075, -0.03657219558954239, 0.02355129085481167, -0.0022565110120922327, 0.02786373347043991, 0.014391526579856873, -0.001674623810686171, 0.043793030083179474, 0.0060298992320895195, -0.006673422642052174, 0.0280308835208416, 0.013639356009662151, -0.0063433037139475346, -0.02338414080440998, 0.009836716577410698, 0.037875957787036896, -0.04091806709766388, 0.009218266233801842, -0.01450017374008894, 0.0013225662987679243, -0.030036671087145805, -0.012703321874141693, -0.043492160737514496, -0.004047094378620386, 0.018419817090034485, 0.01049695536494255, 0.02019159495830536, -0.0018062535673379898, 0.017717791721224785, 0.0016004514181986451, 0.016606250777840614, -0.002346353605389595, -0.014792684465646744, 0.03486727550625801, 0.01217680238187313, -0.010580530390143394, 0.0132967010140419, 0.03353008255362511, -0.017199629917740822, -0.035235002636909485, 0.012135015800595284, 0.006105116102844477, 0.014667321927845478, 0.005871107801795006, 0.02619224414229393, 0.009753142483532429, 0.009134691208600998, 0.021595647558569908, -0.03169144690036774, 0.011324343271553516, 0.016781756654381752, -0.017283203080296516, 0.03259405121207237, 0.009000971913337708, -0.0029292856343090534, 0.008227908052504063, -0.026309248059988022, 0.039714597165584564, -0.024738047271966934, 0.012845398858189583, 0.00507715018466115, -0.009552563540637493, -0.010430095717310905, -0.020826762542128563, -0.009109619073569775, 0.0070954738184809685, 0.013580854050815105, 0.0035874347668141127, -0.04650084301829338, -0.02423660084605217, -0.023785298690199852, 0.023868873715400696, 0.007325303740799427, -0.00979492999613285, 0.006109294947236776, -0.01582900807261467, -0.0061970483511686325, -0.002296209102496505, 0.003877856070175767, 0.0037901028990745544, -0.014165875501930714, -0.004855677485466003, 0.00445034122094512, 0.02406945265829563, 0.010162657126784325, 0.012837041169404984, 0.017450353130698204, -0.005068792495876551, 0.029351359233260155, -0.008892325684428215, -0.021094201132655144, -0.029936380684375763, 0.01863710954785347, 0.0033701411448419094, 0.0294015035033226, 0.008273874409496784, -0.0336638018488884, 0.0048180692829191685, 0.004822247661650181, 0.009920291602611542, 0.0015743343392387033, 0.01232723705470562, -0.009953721426427364, -0.0014750896953046322, -0.0017101429402828217, 0.028348466381430626, -0.020642897114157677, 0.02142849750816822, 0.009377057664096355, 0.005954681895673275, 0.0008832778548821807, 0.00022930749400984496, 0.011516564525663853, 0.0021604003850370646, -0.01191772148013115, -0.04034976288676262, -0.01624687947332859, -0.03384766727685928, 0.0017404386308044195, -0.0005625607445836067, -0.009853431954979897, -0.021110914647579193, -0.012126658111810684, -0.017884939908981323, 0.005486664827913046, 0.0039071072824299335, -0.002275315346196294, -0.005570239387452602, 0.015762148424983025, -0.02970237284898758, -0.005620384123176336, 4.4039836211595684e-05, -0.024537468329072, -7.064655801514164e-05, -0.011892649345099926, -0.03764194995164871, -0.01170042809098959, 0.013923509046435356, -0.03164130076766014, -0.011809075251221657, -0.0025218601804226637, -0.021194489672780037, -0.016163306310772896, -0.0004207453166600317, 0.013748003169894218, 0.011098692193627357, 0.048807498067617416, 0.002202187664806843, 0.010446811094880104, -0.006121831014752388, -0.005937967449426651, 0.01693219132721424, 0.02144521288573742, -0.00637673307210207, 0.004901643376797438, 0.008357448503375053, 0.042388979345560074, -0.03630475699901581, -0.004617490340024233, -0.014299594797194004, -0.017717791721224785, 0.0032594050280749798, -0.011391201987862587, -0.0008435799391008914, -0.004467056132853031, 0.03897913917899132, -0.015912581235170364, -0.0280141681432724, 0.010087440721690655, 8.370506839128211e-05, -0.031323716044425964, 0.009569278918206692, 0.0018699790816754103, 0.016739970073103905, 0.004191260319203138, 0.038176823407411575, -0.0003810474299825728, 0.009226622991263866, -0.019673433154821396, 0.019422709941864014, 0.023701723664999008, 0.030772125348448753, -0.00916812103241682, 0.007020256947726011, -0.0014667322393506765, 0.011132121086120605, -0.01974029280245304, 0.030287394300103188, 0.0058543928898870945, 0.001853264169767499, 0.01653939113020897, 0.02186308614909649, 0.012970760464668274, 0.008666674606502056, 0.0077807847410440445, -0.0019660897087305784, 0.029033776372671127, -0.0001106709023588337, 0.002266957890242338, 0.025824517011642456, -0.024855053052306175, -0.004078434780240059, 0.010070725344121456, 0.03744136914610863, 0.011800717562437057, 0.03770880773663521, 0.040015462785959244, 0.020275169983506203, 0.022180669009685516, -0.02926778420805931, -0.02831503562629223, -0.0037859242875128984, 0.005737388506531715, -0.018102234229445457, -0.015494709834456444, 0.011098692193627357, -0.022715546190738678, 0.0147091094404459, 0.03837740421295166, -0.011265840381383896, -0.02717842347919941, 0.006004826631397009, -0.014901330694556236, -0.020642897114157677, 0.03149086609482765, 0.011784002184867859, 0.0015513513935729861, 0.00434169452637434, 0.023333996534347534, -0.02421988546848297, -0.0013779343571513891, 0.030922560021281242, -0.025406643748283386, -0.005273550283163786, -0.005829320289194584, -0.0065564182586967945, -0.006535524968057871, 0.02605852484703064, 0.002791387727484107, 0.030003240332007408, -0.030337538570165634, -0.015578283928334713, 0.010680818930268288, 0.0077807847410440445, 0.014282879419624805, 0.009293482638895512, -0.012636462226510048, -0.012018010951578617, 0.06398462504148483, 0.0003930612583644688, -0.007296052761375904, -0.015427850186824799, 0.02970237284898758, -0.0168319009244442, -0.023066557943820953, -0.03080555610358715, 0.022230813279747963, 0.010881397873163223, 0.022297672927379608, -0.0010958703933283687, 0.009092903696000576, 0.020375460386276245, -0.014834471046924591, 0.0005510692717507482, 0.011132121086120605, 0.0048180692829191685, 0.0054323417134583, -0.040115755051374435, 0.01667311042547226, -0.006117652170360088, 0.02478819340467453, 0.010597244836390018, -0.012285449542105198, -0.006853107828646898, 0.02186308614909649, -0.02856575883924961, -0.03954744711518288, -0.02649311162531376, -0.003877856070175767, 0.02047574892640114, 0.0032364220824092627, 0.013221483677625656, -0.013990368694067001, 0.012828683480620384, 0.027111563831567764, 0.0032447793055325747, 0.007333660963922739, -0.00241530267521739, -0.018737399950623512, -0.00902604404836893, 0.012118300423026085, -0.005545167252421379, 0.031139854341745377, -0.02156221680343151, 0.013146266341209412, 0.023785298690199852, -0.0021499537397176027, -0.03560272976756096, -0.006828035693615675, -0.021328208968043327, -0.03239347040653229, 0.01387336477637291, -0.01972357928752899, 0.0004479070194065571, -0.022865979000926018, -0.01750049740076065, -0.028348466381430626, 0.004642562475055456, 0.01184250507503748, 0.00902604404836893, -0.025607222691178322, -0.03134043142199516, -0.02406945265829563, -0.024320175871253014, -1.4805089449509978e-05, -0.007563490886241198, 0.012586317956447601, -0.013054334558546543, 0.02674383483827114, -0.01806880347430706, 0.020793331786990166, 0.04412733018398285, -0.012828683480620384, 0.011324343271553516, 0.002860336797311902, -0.009611065499484539, -0.00010525161633267999, -0.03322921693325043, -0.02042560465633869, -0.01668146811425686, 0.009468989446759224, 6.960187602089718e-05, -0.005762460641562939, -0.013890079222619534, -0.02505563013255596, -0.014023798517882824, -0.05485829338431358, -0.05335395038127899, 0.00041865595267154276, 0.044060468673706055, -0.052885934710502625, 0.0009684193646535277, -0.0280308835208416, 0.005591133143752813, 0.01960657350718975, 0.023066557943820953, 0.032995205372571945, 0.017333349213004112, 0.03414853662252426, 0.040817778557538986, -0.0030170390382409096, -0.013505636714398861, -0.01598779857158661, 0.018185807392001152, 0.015302488580346107, 0.00012967103975825012, -0.01584572345018387, 0.024019306525588036, 0.01892126351594925, -0.0006915788981132209, -0.014550318010151386, -0.010522027499973774, -0.0033408901654183865, 0.0028728728648275137, 0.020392173901200294, -0.007057865150272846, 0.011031832545995712, 0.017266489565372467, 0.011173908598721027, 0.06117652356624603, -0.03401481732726097, -0.012644819915294647, 0.005983933340758085, -0.05211704969406128, -0.003134043188765645, -0.01450017374008894, -0.033814236521720886, 0.018570249900221825, -0.04075092077255249, 0.016748327761888504, 0.010179372504353523, 0.011240768246352673, 0.018436532467603683, -0.01492640282958746, -0.012569602578878403, 0.01947285607457161, 0.03944715857505798, -0.009351984597742558, -0.014909688383340836, -0.014048870652914047, 0.01806880347430706, 0.008528776466846466, -0.016990693286061287, 0.01121569611132145, -0.023484431207180023, 0.006911609787493944, -0.016698181629180908, 0.004688528832048178, 0.005495022516697645, -0.02645968273282051, -0.010822895914316177, -0.027696585282683372, 0.014817756600677967, -0.0287329088896513, -0.003673098748549819, -0.01878754422068596, -0.01736677810549736, 0.00041839477489702404, 0.0077598909847438335, -0.00867503136396408, 0.003574898699298501, -0.018737399950623512, -0.006138545926660299, -0.033396363258361816, -0.008833822794258595, -0.005829320289194584, -0.04960981383919716, 0.003961430862545967, 0.017985230311751366, -0.010137584991753101, 0.0067026736214756966, -0.010739321820437908, 0.014333024621009827, -0.004521379712969065, 0.018018659204244614, -0.01204308308660984, -0.02788044884800911, 0.024621043354272842, 0.01036323606967926, -0.009059473872184753, -0.015377704985439777, 0.026292532682418823, -0.029234355315566063, 0.00904275942593813, -0.027011273428797722, 0.010405023582279682, -0.0016223896527662873, -0.04997754096984863, 0.025573791936039925, 0.01435809675604105, 0.01933913677930832, 0.025707511231303215, -0.002640953753143549, -0.01638059876859188, 0.03456640616059303, -0.003576987888664007, -0.006276444066315889, -0.002835264429450035, -0.004295728635042906, -0.007011899258941412, 0.041419513523578644, -0.0010075948666781187, -0.056396063417196274, 0.0027015453670173883, 0.03810996562242508, -0.011157194152474403, -0.033429794013500214, -0.01373128779232502, -0.0308389849960804, 0.006063329055905342, 0.012076512910425663, -0.006109294947236776, -0.0010128183057531714, 0.012845398858189583, 0.0016913386061787605, -0.02706141769886017, -0.017550641670823097, -0.0022356174886226654, -0.002319192048162222, 0.0046592773869633675, -0.017182914540171623, -0.01637224107980728, -0.06067507714033127, -0.005850214045494795, -0.007576026953756809, 0.028799768537282944, -0.015168769285082817, 0.009577635675668716, 0.024838337674736977, 0.003953073173761368, -0.0016411939868703485, 0.000394889444578439, -0.020559323951601982, 0.0065188100561499596, 0.018286097794771194, 0.0035393794532865286, -0.022331101819872856, 0.016288667917251587, -0.01028801966458559, -0.001799985533580184, 0.009151406586170197, -0.0036647412925958633, -0.01436645444482565, 0.00423513725399971, 0.033429794013500214, 0.005248477682471275, -0.014165875501930714, 0.026409538462758064, -0.01835295744240284, 0.011733857914805412, -0.0012369024334475398, -0.03613760694861412, -0.004078434780240059, -0.011182266287505627, -0.024186456575989723, 0.0013027172535657883, 0.0272954273968935, -0.007433950435370207, 0.004159919917583466, -0.007396342232823372, 0.0008153735543601215, 0.008616529405117035, 0.028615903109312057, 0.02157893218100071, -0.027395715937018394, 0.026660261675715446, 0.011065262369811535, -0.0027725836262106895, -0.01099840272217989, -0.027094848453998566, 0.01736677810549736, 0.011650282889604568, 0.006364197004586458, -0.010455167852342129, -0.011549994349479675, -0.03095598891377449, 0.004667635075747967, -0.0033471581991761923, 0.03025396354496479, 0.00162761309184134, -0.014057228341698647, 0.004218422342091799, 0.0301369596272707, 0.007383805699646473, -0.00246962602250278, 0.019238846376538277, -0.021595647558569908, 0.011750572361052036, 0.04569852724671364, 0.002831085817888379, 0.03750823065638542, 0.0009804331930354238, 0.017584072425961494, 0.007546775974333286, 0.010705891996622086, -0.004655099008232355, 0.01960657350718975, 0.00445034122094512, 0.026676975190639496, 0.018570249900221825, 0.025807801634073257, 0.005052077583968639, -0.034399259835481644, 0.0053654820658266544, 0.0044252690859138966, -0.010538742877542973, -0.029184211045503616, -0.019673433154821396, 0.011742215603590012, 0.029067207127809525, -0.004859856329858303, -0.005039541516453028, 0.02017488144338131, 0.028749622404575348, 0.030755409970879555, 0.010003865696489811, -0.004080524202436209, 0.05027841031551361, -0.00507715018466115, 0.021913230419158936, -0.0017947620945051312, -0.012569602578878403, 0.024036021903157234, -0.006564775947481394, -0.010705891996622086, -0.006213763263076544, 0.009694640524685383, 0.006828035693615675, 0.0006351660704240203, 0.01364771369844675, -0.02425331622362137, -0.041553232818841934, -0.029301214963197708, -0.0017655109986662865, -0.018737399950623512, -0.0017080535180866718, 0.016037944704294205, -0.0030943453311920166, 0.0279974527657032, -0.015377704985439777, 0.0029313750565052032, -0.007212478201836348, -0.011641926132142544, 0.03667248412966728, 0.021512072533369064, -0.05963875353336334, -0.001775957876816392, -0.01281196903437376, -0.02186308614909649, -0.002141596283763647, -0.026142099872231483, -0.0005147666088305414, -0.03321250155568123, -0.00433751568198204, -0.005791712086647749, 0.007676316425204277, 0.005444877780973911, 0.00483060535043478, 0.027512721717357635, -0.019523000344634056, 0.01001222338527441, -0.040416620671749115, 0.022214097902178764, 0.01532756071537733, -0.007141439709812403, -0.014784326776862144, -0.006334946025162935, 0.007041150238364935, 0.0017634216928854585, 0.0008148512570187449, -4.325632471591234e-05, -0.0168235432356596, 0.006677601486444473, -0.006456129252910614, 0.05646292120218277, -0.01498490571975708, -0.019288990646600723, -0.007910325191915035, -0.0069993631914258, 0.012987474910914898, -0.004680171143263578, -0.009769857861101627, -0.016330454498529434, -0.00022003594494890422, 0.02562393806874752, -0.005524273496121168, 0.0070745800621807575, 0.0034161070361733437, -0.007496631238609552, -0.00108437892049551, -0.0014897151850163937, -0.005578597076237202, 0.010087440721690655, -0.0115583511069417, -0.009485703893005848, -0.012486028485000134, 0.001231678994372487, -0.00916812103241682, 0.004051273223012686, -0.005060435272753239, 0.008633244782686234, -0.0004938729689456522, -0.015152053907513618, -0.013221483677625656, 0.003380588022992015, 0.004176634829491377, 0.008758606389164925, 0.02019159495830536, -0.006084222812205553, -0.003873677458614111, 0.002565736649557948, 0.006389269605278969, 0.011600138619542122, 0.033680517226457596, -0.004617490340024233, -0.011850861832499504, 0.022665400058031082, 0.007028614170849323, 0.009377057664096355, 0.015227271243929863, -0.02901706099510193, -0.02338414080440998, -0.01875411532819271, -0.01948956958949566, -0.006468665320426226, 0.0027496006805449724, -0.003301192307844758, -0.008273874409496784, -0.02086019143462181, 0.01462553534656763, -0.007145618554204702, -0.011165550909936428, 0.0036083285231143236, -0.017040837556123734, 0.013096122071146965, -0.0021583111956715584, -0.017600785940885544, -0.020559323951601982, -0.014073943719267845, -0.01778465136885643, 0.008917397819459438, -0.023333996534347534, 0.035803310573101044, -0.010580530390143394, 0.00854966975748539, 0.0014343471266329288, 0.004283192567527294, 0.008666674606502056, -0.003919643349945545, -0.0657898336648941, -0.001899230177514255, 0.01654774881899357, -0.009945363737642765, -0.0039071072824299335, 0.0216959360986948, -0.03276119753718376, -0.03394795581698418, 0.014408241026103497, 0.025256209075450897, 0.0009417799883522093, 0.02844875492155552, -0.017057552933692932, -0.004387660417705774, -0.018837688490748405, -0.024136312305927277, -0.005628741811960936, 0.03055483289062977, 0.01610480435192585, -0.012218589894473553, -0.019790438935160637, -0.008495346643030643, 0.01288718543946743, 0.018603680655360222, -0.02645968273282051, -0.004017843399196863, 0.014149160124361515, 0.002024591900408268, -0.0065773120149970055, -0.0023087451700121164, 0.005085507407784462, 0.002442464465275407, -0.017400208860635757, -0.03463326767086983, 0.0021301046945154667, 0.017985230311751366, -0.016898760572075844, 0.023484431207180023, -0.014968190342187881, -0.01622180826961994, 0.009468989446759224, 0.003207170870155096, -0.01693219132721424, -0.014784326776862144, -0.002622149419039488, -0.008507882244884968, 0.013748003169894218, 0.014299594797194004, 0.0008900683023966849, 0.010003865696489811, -0.05646292120218277, 0.018971407786011696, 0.018035374581813812, 0.0028227283619344234, -0.00854549091309309, -0.020408889278769493, -0.013104479759931564, -0.010313091799616814, 0.0027454218361526728, 0.006017363164573908, -0.020893622189760208, 0.017116054892539978, 0.011391201987862587, 0.004437805153429508, 0.008867252618074417, 0.001185712986625731, -0.004370945505797863, 0.03516814485192299, 0.0014155429089441895, -0.008512061089277267, 0.014266164973378181, 0.017818080261349678, 0.01765093207359314, 0.02408616617321968, 0.026576686650514603, -0.015227271243929863, -0.03884541988372803, -0.012611390091478825, -0.00029851761064492166, 0.006573133170604706, -0.007626171689480543, 0.009636138565838337, -0.008783678524196148, -6.86224884702824e-05, -0.0070035420358181, -0.024470608681440353, -0.02086019143462181, -0.015285773202776909, 0.030621692538261414, 0.015912581235170364, 0.017400208860635757, -0.00890068244189024, -0.027228567749261856, 0.027078133076429367, -0.003585345344617963, 0.0231167022138834, 0.0050019328482449055, -0.01736677810549736, 0.0008764874073676765, -0.028933487832546234, 0.006719388533383608, 0.004237226210534573, -0.012026368640363216, -0.05726523697376251, 0.01750049740076065, -0.012920615263283253, 0.010923185385763645, -0.026025094091892242, 0.00806075893342495, 0.026376107707619667, -0.02116106078028679, -0.008039865642786026, -0.0008174629183486104, 0.007868537679314613, 0.02928449958562851, 0.0025281282141804695, -0.016430743038654327, -0.005578597076237202, -0.02983609214425087, -0.004243494477123022, 0.019305706024169922, 0.020375460386276245, 0.0010619183303788304, 0.012427526526153088, -0.008716818876564503, -0.021461928263306618, -0.003823532722890377, -0.008044044487178326, 0.036605626344680786, -0.011257483623921871, 0.016907118260860443, -0.033830951899290085, -0.013229841366410255, -0.011048546992242336, -0.003602060256525874, -0.0002613008546177298, 0.030621692538261414, -0.006644171662628651, 0.01338027510792017, 0.027078133076429367, -0.02437032014131546, -0.00917647872120142, -0.0077055674046278, 0.04513022303581238, -0.005436520092189312, -0.015352632850408554, -0.019556429237127304, -0.018737399950623512, -0.0017655109986662865, 0.007479916326701641, 0.026008380576968193, 0.0028039240278303623, -0.015269058756530285, -0.026292532682418823, -0.00556188216432929, -0.030721981078386307, -0.005578597076237202, -0.01119898073375225, -0.010028938762843609, -0.021896515041589737, 0.0224146768450737, -0.018419817090034485, -0.001257795956917107, 0.010045653209090233, -0.01323819812387228, 0.0008404459222219884, 0.0294182188808918, 0.004780460614711046, -0.010563815012574196, -0.02410288155078888, 0.025557078421115875, -0.05011126026511192, -0.00735455472022295, -0.00746320141479373, -0.007028614170849323, 0.004239315632730722, 0.020709756761789322, -0.015879152342677116, 0.03190873935818672, 0.011942793615162373, 0.013062692247331142, -0.00301286019384861, -0.033830951899290085, -0.013363560661673546, -0.012109942734241486, 0.02592480555176735, -0.016280310228466988, -0.024754762649536133, 0.00811090413480997, 0.006832214072346687, 0.03463326767086983, -0.008532955311238766, 0.01022951677441597, -0.01077275164425373, 0.0009673746535554528, -0.011374487541615963, -0.01267824973911047, 0.012059798464179039, 0.034833844751119614, -0.003234332660213113, 0.001256751362234354, -0.013539066538214684, 0.01850339211523533, -0.02645968273282051, 0.03147415071725845, 0.005866928957402706, 0.019506284967064857, 0.028900057077407837, -0.040149182081222534, -0.007864358834922314, -0.014742539264261723, -0.001702830195426941, 0.0070745800621807575, -0.019640004262328148, -0.012460955418646336, 0.0019180345116183162, 0.014826113358139992, 0.0021792047191411257, -0.020977195352315903, 0.009468989446759224, -0.006314052268862724, 0.008503704331815243, 0.03834397345781326, 0.019656719639897346, -0.020074591040611267, 0.007559312041848898, -0.014199305325746536, 0.036639053374528885, 0.0074464865028858185, -0.011499849148094654, -0.003184187924489379, -0.01196786668151617, 0.02968565747141838, 0.0108479680493474, 0.00713726133108139, 0.010446811094880104, 0.017701076343655586, 0.017483782023191452, 0.001653730170801282, 0.02201351895928383, 0.0035937028005719185, 0.0009046937921084464, -0.024303460493683815, 0.0053654820658266544, 0.02549021877348423, -0.013054334558546543, 0.006828035693615675, 0.012360666878521442, -0.026509827002882957, -0.024554183706641197, -0.009987151250243187, 0.009962079115211964, -0.02380201406776905, 0.002720349468290806, 0.0009376012603752315, -0.0008968586917035282, 0.006936682388186455, 0.017701076343655586, -0.0031925453804433346, -0.002835264429450035, 0.0035832561552524567, -0.006823856849223375, 0.04830605164170265, -0.007776605896651745, 0.02201351895928383, -0.009928649291396141, 0.019405996426939964, 0.012394096702337265, 0.0037629413418471813, -0.003892481792718172, -0.013915152288973331, 0.03068855218589306, 0.003731600707396865, -0.001180489663966, -0.0020559323020279408, -0.02283255010843277, -0.013982011936604977, 0.0034913241397589445, -0.0033450687769800425, 0.0012066066265106201, 0.017684360966086388, -0.004558988381177187, -0.013405347242951393, -0.017015764489769936, 0.0017571535427123308, 0.00988686177879572, -0.0023087451700121164, 0.0014604640891775489, 0.013229841366410255, 0.020525893196463585, 0.0009746874566189945, -0.008014793507754803, 0.015319203026592731, 0.002962715458124876, -0.03418196365237236, -0.002390230307355523, -0.009736428037285805, 0.001971313264220953, 0.014282879419624805, -0.0010378906736150384, 0.018185807392001152, -0.012160087935626507, -0.0025699154939502478, -0.009101261384785175, -0.01009579747915268, -0.01219351775944233, 0.009326912462711334, 0.008441023528575897, -0.009377057664096355, -0.0008091055206023157, 0.0004523468960542232, 0.006318231113255024, -0.0013162981485947967, 0.001308985403738916, 0.0023087451700121164, -0.007024435326457024, 0.000751648040022701, -0.010338163934648037, 0.07668794691562653, 0.015661858022212982, 0.02425331622362137, -0.012268734164536, 0.007567669730633497, 0.008783678524196148, -0.011533278971910477, 0.0076428866013884544, 0.03272777050733566, -0.007016078103333712, -0.0007950022700242698, 0.0027976559940725565, -0.007404699455946684, 0.01365607138723135, -0.024186456575989723, 0.020910335704684258, 0.0036668304819613695, 0.02702798880636692, -0.0009292438044212759, 0.010313091799616814, 0.005444877780973911, -0.0008378342026844621, -0.011683712713420391, 0.007342018652707338, 0.003629222046583891, 0.018520105630159378, -0.015018335543572903, 0.01364771369844675, 0.012093228287994862, 0.010739321820437908, -0.013773075304925442, -0.022163953632116318, -0.00811508297920227, 0.0017623769817873836, -0.010087440721690655, 0.014333024621009827, -0.013965296559035778, 0.02996981143951416, -0.00710800988599658, 0.016589535400271416, -0.0006842660950496793, -0.005729030817747116, 0.025941520929336548, 0.02156221680343151, -0.006677601486444473, 0.010689176619052887, 0.009920291602611542, 0.0016631322214379907, -0.0009569278918206692, -0.005261013749986887, -0.02983609214425087, -0.00494343088939786, -0.0042999074794352055, 0.00494343088939786, 0.01820252276957035, 0.0026534898206591606, -0.001972357975319028, -0.009335270151495934, 0.005457413848489523, -0.0008242533658631146, 0.00028989900602027774, 0.020492464303970337, -0.03336293622851372, -0.02505563013255596, -0.00846609566360712, -0.026242388412356377, -0.01338863279670477, 0.017834795638918877, 0.0020893621258437634, -0.0031006133649498224, -0.010931543074548244, -0.008583099581301212, 0.021227918565273285, -0.01765093207359314, -0.015494709834456444, 0.003911286126822233, 0.004604954272508621, 0.028515614569187164, 0.022481536492705345, -0.0068990737199783325, -0.010112512856721878, -0.005967218428850174, 0.004546451848000288, -0.009761500172317028, 0.004462877754122019, -0.026927700266242027, 0.008800392970442772, -0.0009736427455209196, 0.004609133116900921, -0.02843203954398632, -0.01534427609294653, -0.00847027450799942, -0.007960469461977482, 0.019255561754107475, 0.0042497627437114716, -0.0005646501085720956, 0.003898749826475978, -0.0026827410329133272, 0.028498899191617966, 0.0022774047683924437, 0.004462877754122019, 0.004007396753877401, -0.0032886560074985027, 0.019288990646600723, 0.019389281049370766, -0.0014656875282526016, 0.014742539264261723, -0.007116367574781179, -0.022665400058031082, 0.0060298992320895195, 0.012018010951578617, 0.008353269658982754, -0.017901655286550522, 0.00686564389616251, -0.007797499652951956, -0.004090971313416958, 0.013330130837857723, 0.00469688605517149, 3.0458983019343577e-05, -0.004396018106490374, -0.007208299357444048, -0.030153675004839897, -0.013756360858678818, 0.005896179936826229, -0.0019880281761288643, 0.006276444066315889, -0.015862436965107918, -0.004713600967079401, -0.0019807154312729836, 0.008649959228932858, 0.01569528877735138, 0.0076428866013884544, -0.01182578969746828, -0.0030943453311920166, 0.01735006272792816, -0.002757958136498928, 0.0025218601804226637, -0.02042560465633869, 0.013714573346078396, 0.013346845284104347, 0.024420464411377907, 0.007768248673528433, 0.02786373347043991, 0.008044044487178326, -0.0072417291812598705, 0.014466743916273117, 0.0031382220331579447, -0.026793980970978737, -0.00783510785549879, 0.015352632850408554, 0.01974029280245304, -0.026526542380452156, 0.010304734110832214, -0.01219351775944233, -0.0026931879110634327, -0.018252667039632797, -0.01253617275506258, 0.02717842347919941, -0.029652226716279984, -0.025724226608872414, -0.0014207662316039205, 0.0034140178468078375, -0.004868214018642902, 0.01636388525366783, 0.015645144507288933, 0.0011219874722883105, -0.022063665091991425, 0.018135663121938705, 0.013413704931735992, -0.013547424226999283, -0.033396363258361816, 0.012920615263283253, -0.00010126877168659121, -0.018018659204244614, 0.030053384602069855, -0.001554485410451889, -0.012870470993220806, 0.007362912409007549, -0.020810047164559364, 0.017751220613718033, 0.010045653209090233, 0.01890454813838005, 0.019857298582792282, 0.020007731392979622, -0.008792036212980747, 0.0076052783988416195, 0.0019107216503471136, -0.008666674606502056, 0.007538418751209974, 0.0029773409478366375, 0.010655746795237064, 0.010689176619052887, -0.006681780330836773, 0.008131797425448895, -0.02256511151790619, -0.015728717669844627, 0.004011575132608414, 0.015879152342677116, 0.009644495323300362, 0.0017916280776262283, -0.010956615209579468, -0.002835264429450035, 0.004019932821393013, 0.03814339637756348, -0.01706591062247753, 0.009268410503864288, -0.00876696314662695, -0.016739970073103905, -0.014023798517882824, 0.01890454813838005, -0.04967667534947395, -0.011307627893984318, 0.0058836438693106174, 0.00651045236736536, -0.005816784221678972, -0.004243494477123022, 0.019640004262328148, 0.013229841366410255, 0.020258454605937004, 0.010613959282636642, -0.00014299072790890932, 0.0024299281649291515, -0.007889431901276112, -0.002145774895325303, 0.0041411155834794044, 0.00044503415119834244, -0.0014604640891775489, 0.011416275054216385, 0.010338163934648037, 0.0039154645055532455, -0.0019295259844511747, -0.00040925381472334266, -0.023166848346590996, 0.014867900870740414, -0.0008801437797956169, 0.020559323951601982, 0.015912581235170364, 0.0013936045579612255, 0.020759902894496918, -0.03470012545585632, 0.0026827410329133272, 0.003035843139514327, 0.009268410503864288, -0.009218266233801842, 0.01191772148013115, -0.006004826631397009, 0.0024027663748711348, -0.00493925204500556, 0.024336891248822212, -3.3756256016204134e-05, -0.0017738684546202421, 0.0026994559448212385, -0.009059473872184753, 0.016714897006750107, 0.026810694485902786, -0.0028269069734960794, -0.007124724797904491, -7.658817776245996e-05, -0.016313739120960236, -0.02060946822166443, 0.010964972898364067, -0.0037629413418471813, -0.013112836517393589, -0.016748327761888504, 0.03190873935818672, 0.0147007517516613, -0.00798554252833128, 0.01933913677930832, 0.001082289614714682, 0.00518579687923193, 0.012034726329147816, -0.009861789643764496, -0.009636138565838337, 0.0005265192594379187, -0.014124087989330292, -0.014750896953046322, -0.020057877525687218, -0.014257807284593582, -0.002319192048162222, 0.018603680655360222, 0.024754762649536133, -0.013956938870251179, 0.019640004262328148, -0.028799768537282944, 0.0033743197564035654, -0.004291549790650606, -0.001999519532546401, 0.005758282262831926, -0.004521379712969065, 0.012569602578878403, -0.00271199201233685, -0.019004838541150093, 0.016856973990797997, -0.003654294414445758, 0.005937967449426651, 0.01960657350718975, -0.006456129252910614, 0.009251696057617664, 0.008658316917717457, 0.010739321820437908, -0.0001454718440072611, 0.0019368387293070555, -0.004222600720822811, -0.002937643090263009, 0.012786895968019962, 0.006201226729899645, -0.003111060243099928, 0.0012212322326377034, -0.00988686177879572, 0.012427526526153088, 0.0012661534128710628, 0.00246753660030663, 0.02044232003390789, 0.0041035073809325695, 0.009009329602122307, -0.023985877633094788, 0.0025051452685147524, 0.014291237108409405, -0.011098692193627357, 0.014073943719267845, -0.008349090814590454, 0.012143372558057308, -0.0006268086726777256, 0.008808750659227371, -0.006673422642052174, 0.00785182323306799, -0.002494698390364647, -0.0028979452326893806, 0.003673098748549819, -0.002492608968168497, 0.01738349348306656, -0.007016078103333712, 0.005942145828157663, -0.003848605090752244, 0.011666998267173767, -0.0012201875215396285, 0.003380588022992015, 0.008319839835166931, -0.011416275054216385, -0.0017832706216722727, -0.017701076343655586, 0.014809398911893368, -0.005795890465378761, -0.0019316152902320027, -0.003060915507376194, 0.02786373347043991, 0.007103831507265568, -0.021060770377516747, -0.014040513895452023, 0.0008096278179436922, 0.004855677485466003, -0.021662507206201553, 0.02157893218100071, -0.005440698936581612, 0.0032844773959368467, -0.009945363737642765, 0.021244633942842484, 0.02184637077152729, -0.010680818930268288, -0.024052737280726433, -0.011533278971910477, 0.012477670796215534, -0.01594601199030876, -0.014249449595808983, 0.004256030544638634, -0.007145618554204702, -0.0072626229375600815, -0.0030170390382409096, -0.03404824435710907, 0.01462553534656763, 0.00039044953882694244, -0.007387984544038773, -0.0406172014772892, 0.006531346123665571, -0.021528787910938263, -0.00916812103241682, -0.0030483794398605824, 0.0011491491459310055, 0.0009088725200854242, -0.010037295520305634, 0.01497654803097248, 0.0012724215630441904, -0.008591457270085812, 0.008512061089277267, 0.02687755413353443, -0.010538742877542973, 0.021328208968043327, 0.018988123163580894, 0.004113954026252031, 0.004191260319203138, -0.012009653262794018, -0.006777890957891941, -0.016480889171361923, -0.011374487541615963, 0.014508530497550964, 0.024153025820851326, -0.014826113358139992, 0.008725176565349102, 0.005887822713702917, -0.00022238648671191186, 0.008403414860367775, -0.012093228287994862, -0.0015210557030513883, 0.006573133170604706, 0.011901007033884525, -0.011224053800106049, 0.0005147666088305414, 0.018937978893518448, 0.032844774425029755, -0.0038318901788443327, 0.006694316398352385, 0.011140478774905205, -0.01878754422068596, 0.00325522618368268, 0.03205917403101921, -0.0074088783003389835, 0.0013977832859382033, -0.008599814958870411, 0.02898363210260868, -0.006217941641807556, 0.0011533278739079833, -0.0013476385502144694, 0.020542608574032784, -0.0034620731603354216, 0.0175339262932539, 0.009836716577410698, 0.023701723664999008, -0.013881722465157509, 0.007404699455946684, 0.013798147439956665, 0.00434587337076664, -0.007638708222657442, -0.01365607138723135, 0.019706863909959793, -0.021679222583770752, 0.00045025753206573427, 0.026693690568208694, -0.012118300423026085, -0.022498251870274544, 0.007776605896651745, -0.02214723825454712, 0.00805658008903265, -0.007617814466357231, -0.010580530390143394, 0.00023387797409668565, 0.009577635675668716, 0.0065271672792732716, 0.0007412012200802565, -0.0014259896706789732, -0.03670591488480568, -0.004617490340024233, 0.008708461187779903, -0.0003517963632475585, 0.015093551948666573, -0.01373128779232502, 0.00216875784099102, -0.016163306310772896, 0.017400208860635757, 0.020258454605937004, -0.02828160673379898, -0.0022481537889689207, -0.005382196977734566, 0.01637224107980728, 0.012093228287994862, -0.00355400494299829, -0.02858247421681881, 0.007504988927394152, -0.0026451325975358486, -0.01652267575263977, -0.005662171635776758, -0.02184637077152729, 0.009644495323300362, 0.012803611345589161, -0.03281134366989136, 0.005235941614955664, 0.008428486995398998, -0.011357773095369339, 0.009485703893005848, -0.009067831560969353, -0.009962079115211964, 0.003696081694215536, 0.011875934898853302, 0.006848928984254599, -0.001183623680844903, 0.03139057755470276, -0.011875934898853302, 0.01023787446320057, 0.021378353238105774, 0.014291237108409405, 0.023350711911916733, 0.010120870545506477, 0.026392823085188866, -0.0015482173766940832, 0.012009653262794018, 0.011875934898853302, 0.005549346096813679, -0.0002622149477247149, 0.0031758304685354233, 0.006836392916738987, 0.0057164947502315044, -0.01409065816551447, 0.00847027450799942, 0.006940861232578754, -0.010547100566327572, 0.005946324672549963, -0.0023317281156778336, -0.012360666878521442, 0.00988686177879572, 0.0168235432356596, -0.017834795638918877, 0.01365607138723135, 0.01917198672890663, -0.005774997174739838, 0.01134105771780014, -0.009953721426427364, -0.008010614663362503, 0.026559971272945404, -0.005800069309771061, 0.002540664281696081, 0.000826865085400641, -0.0054824864491820335, -0.03710707277059555, -0.0038799454923719168, -0.019940871745347977, 0.00012718992365989834, 0.011290913447737694, 0.027930593118071556, 0.013254913501441479, 0.010246232151985168, -0.0056663500145077705, -0.01666475273668766, 0.005871107801795006, -0.01161685399711132, -0.003349247621372342, 0.006957576144486666, 0.010563815012574196, 0.010881397873163223, 0.019823867827653885, 0.020258454605937004, -0.03556930273771286, 0.005164903122931719, -0.012820325791835785, 0.001875202520750463, -0.013321773149073124, -0.006991005968302488, -0.015302488580346107, -0.007216657046228647, -0.0017937173834070563, 0.017182914540171623, -0.010079083032906055, 0.0007375448476523161, -0.004437805153429508, 0.021395068615674973, 0.012218589894473553, -0.006485380232334137, -0.026409538462758064, 0.004324979614466429, 0.013497279025614262, -0.009719712659716606, 0.023166848346590996, 0.010555457323789597, 0.0014928492018952966, -0.01608808897435665, 0.0008341778302565217, -0.013564138673245907, 0.0017299918690696359, 0.02773001417517662, -0.011249125935137272, 0.0007391118560917675, 0.011926079168915749, -0.026091953739523888, 0.015753790736198425, -0.010705891996622086, 0.009786572307348251, -0.00013802848116029054, -0.004379303194582462, 0.003058826085180044, -0.0013424152275547385, 0.011249125935137272, -0.0074172355234622955, 0.017266489565372467, -0.006552239879965782, -0.022481536492705345, -0.009995508939027786, 0.0013215215876698494, 0.0231167022138834, 0.012293807230889797, 0.01023787446320057, 0.029317930340766907, -0.017901655286550522, 0.007346197497099638, -0.023885587230324745, -0.004019932821393013, -0.005164903122931719, 0.00434169452637434, 0.00735037587583065, 0.007392163388431072, 0.005052077583968639, -0.007876895368099213, 0.0025552900042384863, -0.012962402775883675, 0.005879465024918318, 0.01134941540658474, 0.008156869560480118, 0.0018114770064130425, 0.027395715937018394, 0.015269058756530285, -0.01519384142011404, 0.010405023582279682, -0.0013162981485947967, 0.006665065418928862, -0.02619224414229393, 0.003650115570053458, -0.005933788605034351, -0.012143372558057308, -0.0025469325482845306, 0.0022335280664265156, -0.005156545899808407, 0.015218913555145264, -0.009677925147116184, -0.018269382417201996, -0.01763421669602394, -0.0006398671539500356, -0.0007234416552819312, -0.013706215657293797, -0.01435809675604105, -0.0057164947502315044, -0.005390554200857878, 0.006995184347033501, -0.012728394009172916, 0.014884616248309612, -0.01582900807261467, -0.008365806192159653, -0.0074381292797625065, 0.007024435326457024, -0.01667311042547226, 0.0036438475362956524, 0.0008336554747074842, -0.007893609814345837, -0.01121569611132145, -0.02019159495830536, -0.003804728388786316, 0.005996469408273697, 0.009335270151495934, 0.029585368931293488, -0.008098367601633072, 0.015152053907513618, 0.0020360834896564484, -0.018386386334896088, -0.002068468602374196, -0.02309998869895935, -0.00024171308905351907, 0.0011522832792252302, -0.014959832653403282, -0.012310521677136421, 0.003232243238016963, -0.007546775974333286, -0.026693690568208694, -0.0032886560074985027, 0.0028812303207814693, -0.03693992272019386, -0.020509179681539536, -0.0070662228390574455, 0.018804259598255157, 0.007016078103333712, -0.0202918853610754, 0.0020851835142821074, 0.018453245982527733, -0.005227583926171064, -0.016865331679582596, -0.0023505324497818947, 0.002544843126088381, 0.0023797834292054176, 0.01791837066411972, -0.008858895860612392, -0.0013173428596928716, -0.005992290563881397, -0.018687255680561066, -0.011934436857700348, -0.04185410216450691, -0.010262946598231792, 0.018553536385297775, 0.0101459426805377, -0.017834795638918877, -8.292156053357758e-06, -0.004859856329858303, 0.011274198070168495, 0.0011449704179540277, 0.022331101819872856, 0.00042831923929043114, -0.02198009006679058, -0.008850538171827793, -0.012160087935626507, -0.007738997228443623, -0.0008764874073676765, 0.0108479680493474, 0.0001348944497294724, -0.009502419270575047, -0.00507715018466115, 0.0022335280664265156, -0.03267762437462807, -0.0022544218227267265, -0.009970435872673988, 0.0037190646398812532, 0.021896515041589737, 0.005449056625366211, 0.00974478479474783, 0.01609644666314125, 0.0005589043721556664, -0.0034725198056548834, -0.0009490927332080901, -0.010438453406095505, -0.00325522618368268, -0.014374811202287674, 0.0018678897758945823, -0.02928449958562851, 0.005215047858655453, 0.013672785833477974, -0.015402778051793575, 0.0009532714611850679, 0.018670540302991867, 0.002275315346196294, -0.00951913371682167, -0.004391839262098074, -0.01240245345979929, -0.016138233244419098, 0.019255561754107475, 0.002262779278680682, -0.00015069523942656815, -0.006447771564126015, 0.019991017878055573, 0.013948582112789154, -0.001531502464786172, -0.0017070089234039187, 0.028047597035765648, -0.003230153815820813, -0.0016819365555420518, -0.012477670796215534, 0.007538418751209974, 0.0038109966553747654, -0.0006696405471302569, -0.027947308495640755, 0.009293482638895512, -0.004283192567527294, 0.008574741892516613, -0.018286097794771194, 0.003528932575136423, 0.012870470993220806, -0.004350052215158939, -0.014057228341698647, -0.025272924453020096, -0.019506284967064857, 0.017584072425961494, -0.010455167852342129, 0.0005531586357392371, 0.011984581127762794, 0.010187730193138123, -0.016781756654381752, 0.013455492444336414, 0.011775645427405834, 0.03530186414718628, 0.01664803735911846, -0.003971877507865429, 0.006138545926660299, 0.010630674660205841, -0.00784346554428339, -0.015862436965107918, 8.807967242319137e-05, -0.0046007754281163216, 0.03162458539009094, 0.014767611399292946, 0.009076189249753952, -0.023601435124874115, -0.025573791936039925, -0.006426877807825804, -0.01351399440318346, 0.0011522832792252302, 0.010137584991753101, 0.005637099035084248, 0.03162458539009094, -0.003871588036417961, -0.016455816105008125, -0.02365157939493656, 0.012143372558057308, -0.00045678680180571973, -0.0008717863820493221, 0.03418196365237236, 0.026977844536304474, 0.008278053253889084, 0.014450028538703918, -0.006493737455457449, -0.012912258505821228, -0.0044336263090372086, -0.00868338905274868, 0.02661011554300785, 0.006447771564126015, -0.006811320781707764, 0.0023630685172975063, -0.014065586030483246, -0.013229841366410255, 0.0006936682621017098, -0.002093540970236063, 0.015160411596298218, -0.006385090760886669, -0.012594674713909626, -0.0015962726902216673, -0.02577437087893486, 0.0053362310864031315, 0.014115730300545692, 0.009067831560969353, 0.005398911889642477, -0.013213125988841057, -0.02925107069313526, 0.009652853012084961, -0.007116367574781179, -0.006970112212002277, 0.010747678577899933, -0.013254913501441479, -0.005770818330347538, 0.015753790736198425, 0.0003228064451832324, -0.0013664428843185306, 0.022531680762767792, -0.011792359873652458, -0.01948956958949566, -9.069137740880251e-05, -0.0055326311849057674, -0.0033722305670380592, -0.01352235209196806, 0.021796226501464844, 0.0161131601780653, 0.0002750122803263366, -0.01948956958949566, 0.006477022543549538, 0.01584572345018387, -0.0028812303207814693, 0.009418844245374203, -0.0012254108441993594, 0.006117652170360088, -0.012502742931246758, -0.012920615263283253, 0.006105116102844477, -0.021227918565273285, -0.007676316425204277, -0.005770818330347538, 0.015436207875609398, -0.023417571559548378, -0.0005787533009424806, -0.013505636714398861, -0.020392173901200294, 0.018319526687264442, 0.014099015854299068, 0.02355129085481167, 0.024470608681440353, 0.005378018133342266, 0.016430743038654327, -0.004809711594134569, -0.01960657350718975, 0.0027349749580025673, 0.0056872437708079815, 0.008833822794258595, 0.01987401209771633, -0.009427201934158802, -0.00797718483954668, 0.008482810109853745, -0.021110914647579193, -0.027947308495640755, 0.0001411625271430239, -0.01735006272792816, 0.011240768246352673, -0.012377381324768066, -0.016739970073103905, -0.009845074266195297, 0.017316633835434914, -0.008090009912848473, 0.0028457113076001406, 0.009209908545017242, 0.0040136645548045635, -0.00019848940428346395, -0.012419168837368488, -0.028097741305828094, 0.009243338368833065, -0.0026325962971895933, 0.011633568443357944, -0.026793980970978737, -0.016205092892050743, 0.012828683480620384, -0.020241741091012955, 0.00819029938429594, 0.011249125935137272, 0.0287161935120821, 0.01706591062247753, 0.02087690681219101, 0.00434587337076664, -0.0006194958696141839, -0.015177126973867416, 0.03316235542297363, -0.014959832653403282, -0.010597244836390018, 0.0040345583111047745, 0.01597944088280201, -0.0011554172961041331, 0.00953584909439087, -0.01750049740076065, -0.011374487541615963, -0.003031664527952671, -0.041954390704631805, -0.01107361912727356, -0.004458698909729719, 0.024403749033808708, -0.02395244687795639, -0.007822572253644466, -0.008449380286037922, -0.0013768896460533142, 0.016012871637940407, -0.000677475705742836, 0.00953584909439087, -0.020559323951601982, -0.013455492444336414, -0.004734494723379612, -0.01435809675604105, 0.00627226522192359, 0.0062262993305921555, -0.0046592773869633675, -0.00015774683561176062, 0.010463525541126728, -0.004617490340024233, 0.02002444677054882, 0.0028561579529196024, -0.02156221680343151, -0.00385487312451005, -0.010087440721690655, 0.018536821007728577, 0.004441983997821808, -0.007655423134565353, -0.016338812187314034, -0.004015753977000713, -0.0014709109673276544, -0.010329806245863438, 0.025139205157756805, 0.012870470993220806, -0.0015973174013197422, -0.01947285607457161, -0.009117976762354374, -0.016188377514481544, 0.010254589840769768, 0.0012504832120612264, -0.0020632450468838215, -5.399695146479644e-05, 0.009059473872184753, -0.03025396354496479, -0.004396018106490374, 0.008950827643275261, 0.006034078076481819, -0.0065689547918736935, -0.013773075304925442, -0.01351399440318346, -0.013196411542594433, -0.032009027898311615, 0.00556188216432929, 0.012477670796215534, -0.018252667039632797, 0.011140478774905205, -0.008102546446025372, 0.0030003241263329983, 0.0032886560074985027, 0.012711679562926292, -0.00759692071005702, -0.005737388506531715, 0.022665400058031082, 0.015753790736198425, 0.0035937028005719185, -0.029033776372671127, 0.0280141681432724, -0.027412431314587593, 0.019706863909959793, -0.04409389942884445, -0.00798136368393898, -0.023150132969021797, 0.011224053800106049, -0.0026931879110634327, -0.00904275942593813, -0.003349247621372342, -0.007814214564859867, 0.021461928263306618, 0.020759902894496918, -0.02042560465633869, 0.0287161935120821, 0.02620895951986313, -0.027629725635051727, -0.011282555758953094, 0.008252980187535286, 0.0004199617833364755, -0.003846515668556094, -0.027395715937018394, -0.020509179681539536, -0.0023526218719780445, 0.02351786009967327, 0.0031925453804433346, 0.011575066484510899, 0.005068792495876551, 0.014968190342187881, -0.012828683480620384, 0.021211205050349236, 0.018252667039632797, -0.012636462226510048, -0.015143697150051594, -0.02687755413353443, -0.03419867902994156, 0.024036021903157234, -0.0004507798876147717, -0.03964773565530777, -0.022882694378495216, -0.008624887093901634, -0.010338163934648037, 0.006288980133831501, 0.011591780930757523, 0.0017205897020176053, -0.005954681895673275, 0.0003956729487981647, -0.007024435326457024, 0.008850538171827793, 0.014834471046924591, -0.007952112704515457, 0.0064018056727945805, -0.01022951677441597, 0.0077891419641673565, -0.01696562021970749, 0.007993899285793304, 0.006807141937315464, 0.005093865096569061, -0.0067152101546525955, 0.0016203003469854593, -0.0053236945532262325, -0.02520606480538845, 0.005574418231844902, -0.029936380684375763, 0.020275169983506203, 0.0037963709328323603, 0.016079731285572052, -9.356424561701715e-05, -0.006092580035328865, 0.018286097794771194, 0.01835295744240284, -0.00494343088939786, -0.019640004262328148, 0.013630998320877552, -0.007183227222412825, 0.022615255787968636, 0.009853431954979897, -0.043492160737514496, -0.014608819968998432, -0.01750049740076065, 0.008850538171827793, 0.00012111771502532065, 0.007124724797904491, -0.03052140213549137, -0.0037378689739853144, 0.012160087935626507, 0.012477670796215534, -0.0019034089054912329, 0.014859543181955814, -0.008867252618074417, -0.031858593225479126, 0.015895867720246315, 0.0009720757370814681, -0.011366129852831364, 0.011040189303457737, 0.017684360966086388, 0.019088411703705788, 4.2081061110366136e-05, 0.007826750166714191, 0.016355527564883232, 0.013497279025614262, -0.01099004503339529, -0.005812605377286673, 0.0005568150081671774, -0.007922861725091934, 0.0005636054556816816, 0.0019431067630648613, 0.009644495323300362, -0.011892649345099926, 0.012728394009172916, -0.008975899778306484, 0.013539066538214684, -0.024303460493683815, 0.012394096702337265, 0.009920291602611542, 0.0069993631914258, -0.015110267326235771, 0.025139205157756805, -0.02395244687795639, -0.010931543074548244, 0.009301840327680111, -0.0033617836888879538, 0.007308588828891516, 0.006552239879965782, 0.014190947636961937, 0.017132770270109177, -0.0003102702903561294, -0.022782403975725174, -0.003911286126822233, 0.007145618554204702, -0.010730964131653309, 0.010028938762843609, 0.01450017374008894, -0.015653500333428383, 0.021528787910938263, 0.008583099581301212, -0.017057552933692932, -0.01352235209196806, -0.001993251498788595, 0.006042435299605131, 0.012594674713909626, 0.012410811148583889, -0.0016840258613228798, 0.015611713752150536, 0.006017363164573908, 0.01878754422068596, 0.019105127081274986, -0.01833624206483364, 0.009360342286527157, -0.003129864577203989, 0.010262946598231792, -0.02689426951110363, 0.0019796707201749086, 0.004667635075747967, -0.009143048897385597, -0.02086019143462181, 0.027763444930315018, 0.0046300264075398445, -0.0015868705231696367, -0.004930894821882248, -0.008532955311238766, 0.007312767673283815, 0.024270031601190567, 0.0017686450155451894, -0.002323370659723878, 0.027763444930315018, -0.02562393806874752, 0.013764717616140842, -0.006669243797659874, 0.0027245283126831055, -0.016614608466625214, 0.007993899285793304, 0.01093989983201027, -0.01905498281121254, 0.011366129852831364, -0.008165227249264717, -0.006422699429094791, -0.010179372504353523, -0.010630674660205841, 0.016472531482577324, 0.0062346565537154675, 0.005963039584457874, -0.01723305881023407, -0.01820252276957035, 0.025841230526566505, -0.0009840895654633641, 0.00010740627476479858, 0.006305695045739412, -0.016355527564883232, -0.012778539210557938, -0.0030274856835603714, -0.016639679670333862, 0.002561558037996292, 0.00042831923929043114, 0.005123116075992584, 0.0108479680493474, 0.0011763109359890223, -0.012636462226510048, -0.011165550909936428, 0.00676117604598403, -0.004642562475055456, -0.007057865150272846, 0.002952268812805414, 0.017584072425961494, 0.012694964185357094, 0.006932503543794155, -0.0060382564552128315, -0.0010138630168512464, -0.022030234336853027, 0.0013152534374967217, -0.021110914647579193, 0.0050019328482449055, -0.00035362454946152866, -0.013505636714398861, -0.008018972352147102, 0.01121569611132145, 0.007099652662873268, -0.016071373596787453, 0.011416275054216385, -0.006130188703536987, 0.0012045173207297921, 0.00902604404836893, -0.003829800756648183, -0.018720684573054314, 0.0042790137231349945, -0.007647065445780754, 0.018687255680561066, 0.021094201132655144, 0.014165875501930714, -0.014073943719267845, 0.0006597160827368498, -0.006786248181015253, 0.002837353851646185, -0.005929609760642052, -0.024437179788947105, -0.03190873935818672, 0.008307304233312607, -0.014115730300545692, 0.0019431067630648613, -0.015594999305903912, -0.010338163934648037, 0.0056579927913844585, 0.005219226703047752, 0.002440375043079257, 0.007538418751209974, 0.009301840327680111, -0.007300231140106916, -0.009987151250243187, 0.009978793561458588, -0.008574741892516613, -0.028264891356229782, 0.027964023873209953, 0.013940224424004555, -0.008232086896896362, -0.022464821115136147, -0.020074591040611267, 0.012803611345589161, -0.009268410503864288, 0.003384766634553671, 0.0070077208802104, -0.005444877780973911, -0.015444564633071423, 0.0042497627437114716, -0.0033889454789459705, 0.021227918565273285, -0.0069993631914258, -0.0012222768273204565, -0.024286745116114616, 0.006573133170604706, 0.006293158978223801, 0.00045678680180571973, -0.04513022303581238, -0.006426877807825804, -0.0030985241755843163, -0.01638059876859188, -0.024286745116114616, -0.0038841243367642164, 0.021629076451063156, 0.0022481537889689207, 0.005378018133342266, 0.01170042809098959, 0.017007408663630486, -0.009644495323300362, -0.02186308614909649, 0.0038653200026601553, 0.000667551183141768, 0.0209939107298851, -0.019823867827653885, 0.012828683480620384, -0.01989072747528553, 0.019389281049370766, -0.0007438129396177828, -0.005937967449426651, 0.005816784221678972, 0.007571848575025797, 0.005820963066071272, -0.0076136356219649315, -0.019556429237127304, 0.0031716518569737673, 0.015076837502419949, -0.027094848453998566, 0.017483782023191452, -0.0050019328482449055, -0.007952112704515457, 0.007053686771541834, -0.016606250777840614, -0.003409839002415538, -0.0061970483511686325, -0.012494385242462158, 0.00014142370491754264, -0.020241741091012955, 0.009861789643764496, 0.00903440173715353, 0.05659664049744606, 0.021762795746326447, 0.020709756761789322, -0.011926079168915749, -0.006706852465867996, -0.03566959127783775, 0.004155741538852453, -0.001848040847107768, 0.002446643076837063, -0.004625848028808832, 0.013990368694067001, -0.004320800770074129, 0.01990744285285473, 0.03319578617811203, -0.005390554200857878, 0.020642897114157677, -0.004019932821393013, 0.013589211739599705, 0.009109619073569775, 0.0147091094404459, -0.005837677977979183, 0.022448107600212097, -0.008428486995398998, -0.015043407678604126, -0.00966121070086956, 0.019974302500486374, 0.006848928984254599, -0.0018595323199406266, 0.006903252564370632, -0.0029251070227473974, 0.013965296559035778, -0.0058418563567101955, -0.03177502006292343, 0.01636388525366783, 0.006330767180770636, 0.020124735310673714, 0.005064613651484251, 0.0034641623497009277, 0.012001296505331993, -0.004872392397373915, -0.0021133897826075554, -0.00904275942593813, -0.015427850186824799, -0.005988111719489098, -0.01735006272792816, 0.01625523716211319, 0.01373964548110962, -0.000751648040022701, -0.014750896953046322, 0.020358745008707047, -0.004362588282674551, -0.013137909583747387, -0.015912581235170364, 0.0030692729633301497, -0.006167796906083822, 0.016196735203266144, 0.01706591062247753, -0.03610417619347572, -0.012820325791835785, 0.002887498587369919, 0.01324655581265688, -0.012260377407073975, 0.012686607427895069, 0.032009027898311615, -0.004078434780240059, 0.02744586206972599, 0.010664104484021664, -0.012820325791835785, -0.0004557421198114753, 0.02915078029036522, 0.011850861832499504, 0.0036125071346759796, 0.000605392677243799, 0.0001802074839361012, -0.025172635912895203, -0.020375460386276245, -0.017283203080296516, -0.013890079222619534, -0.007120546419173479, 0.00013280508574098349, -0.008583099581301212, -0.023501144722104073, 0.020275169983506203, -0.011249125935137272, -0.004563166759908199, -0.0023505324497818947, 0.007509167771786451, 0.01373964548110962, 0.003405660390853882, -0.017416922375559807, -0.007258444093167782, 0.021662507206201553, 0.001970268553122878, 0.015611713752150536, -0.0017164109740406275, -0.0072709801606833935, -0.007509167771786451, 0.004028290044516325, 0.008236265741288662, 0.0021050323266535997, -0.011357773095369339, 0.028482185676693916, -0.011784002184867859, 0.0033388007432222366, 0.0025511111598461866, 0.0016808918444439769, -0.0061761545948684216, -0.01877082884311676, 0.01119898073375225, 0.023467715829610825, 0.007225014269351959, 0.006945039611309767, -0.0010624406859278679, 0.026108669117093086, 0.01436645444482565, 0.023601435124874115, 0.03470012545585632, 0.012928972952067852, -0.0035226645413786173, 0.02309998869895935, -0.007128903642296791, 0.009502419270575047, 0.023718439042568207, -0.011934436857700348, -0.005189975723624229, -0.0018313259351998568, 0.0065689547918736935, 0.020408889278769493, 0.012502742931246758, 0.006711031310260296, 0.0005145054310560226, -0.018820974975824356, -0.00903440173715353, 0.020759902894496918, -0.004362588282674551, -0.006472844164818525, 0.001353906700387597, 0.017450353130698204, -0.0014009173028171062, -0.005206690635532141, -0.010822895914316177, 0.029083920642733574, 0.028515614569187164, -0.00396351981908083, 0.016012871637940407, 0.0030442005954682827, -0.00938541442155838, 0.014032156206667423, 0.029033776372671127, 0.010948257520794868, 0.002365157939493656, -0.014174233190715313, -0.005235941614955664, 0.011065262369811535, -0.023751869797706604, 0.00409932853654027, -0.026676975190639496, 0.02395244687795639, -0.011892649345099926, 0.00295853684656322, 0.005160724278539419, 0.023634864017367363, 0.009402129799127579, 0.003115238854661584, 0.022448107600212097, -0.007500810083001852, -0.019991017878055573, 0.01987401209771633, 0.005444877780973911, 0.01808551885187626, -0.0004340649757068604, -0.008369985036551952, -0.004792996682226658, -0.006878180429339409, 0.004642562475055456, -0.009251696057617664, -0.009360342286527157, -0.01627195253968239, -0.02437032014131546, 0.007199942134320736, 0.018570249900221825, 0.019121842458844185, 0.01373964548110962, 0.005123116075992584, -0.01324655581265688, 0.000605392677243799, -0.01974029280245304, 0.014299594797194004, -0.004324979614466429, 0.002636775141581893, 0.006217941641807556, -0.01232723705470562, 0.002018323866650462, -0.0077891419641673565, -0.025523647665977478, 0.019940871745347977, -0.005102222319692373, -0.003654294414445758, -0.045029934495687485, 0.007011899258941412, 0.0008451470057480037, 0.013112836517393589, 0.016464173793792725, 0.0004656665842048824], "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25": [-0.010820659808814526, 0.00817039329558611, -0.0059025222435593605, 0.006443934049457312, -0.053247641772031784, -0.028850045055150986, 0.011873194016516209, 0.0019763417076319456, -0.03331763669848442, 0.01104782521724701, -0.005542843136936426, 0.05679142475128174, -0.030273616313934326, -0.028365423902869225, -0.023155758157372475, -0.003687656717374921, -0.04322206228971481, 0.02663896419107914, 0.01397826336324215, -0.009760553017258644, 0.06948241591453552, -0.007462393492460251, -0.037800371646881104, 0.0043956562876701355, -0.02674497663974762, -0.016779974102973938, -0.009359227493405342, 0.0004609570896718651, -0.04322206228971481, -0.004982501268386841, 0.019218219444155693, -0.002968298504129052, 0.010782798752188683, -0.0007378152804449201, 0.013925258070230484, -0.02969812974333763, -0.025185104459524155, 0.07463150471448898, -0.0317729115486145, 0.004259356763213873, -0.03019789420068264, 0.00630384823307395, 0.012289664708077908, -0.0006081415340304375, -0.0734199583530426, 0.02526082657277584, 0.03262099623680115, -0.02071751281619072, 0.03265128284692764, -0.0007756762206554413, 0.0021845768205821514, -0.033408503979444504, -0.01573501154780388, 0.013304337859153748, 0.021292999386787415, 0.00959396455436945, 0.009200210683047771, 0.05721547082066536, -0.012077643536031246, -0.013766242191195488, 0.0013592081377282739, -0.02306489087641239, -0.0046644690446555614, 0.011858049780130386, 0.011623311787843704, -0.00929107703268528, 0.015613855794072151, -0.010207312181591988, -0.06287946552038193, -0.008624725043773651, 0.014205428771674633, 0.042888883501291275, -0.026124056428670883, 0.017930947244167328, -0.01430386770516634, 0.004301004111766815, 0.014962648041546345, -0.007204939145594835, 0.009419804438948631, -0.009525815024971962, -0.012660701759159565, 0.020959822461009026, 0.015750154852867126, 0.005096083972603083, 0.05985059216618538, 0.018506431952118874, -0.04773508757352829, -0.0465841144323349, -0.021853340789675713, -0.031227711588144302, 0.01118412520736456, -0.013523931615054607, 0.00789022259414196, -0.057033736258745193, -0.0003755333018489182, 0.01181261707097292, 0.08468737453222275, 0.004925709683448076, 0.016583096235990524, -0.030319049954414368, -0.008549002930521965, 0.004588747397065163, -0.0652419924736023, 0.006364425644278526, 0.000248935743002221, -0.006057752296328545, 0.021944208070635796, -0.01599246636033058, -0.015273107215762138, 0.07372284680604935, 0.05567074194550514, -0.01693141646683216, 0.0042366404086351395, 0.04016289860010147, -0.02816854789853096, -0.07741807401180267, 0.0047818380407989025, -0.019309084862470627, 0.031379155814647675, -0.05136973783373833, 0.007697131484746933, 0.04116242751479149, 0.03804268315434456, -0.0024609616957604885, 0.008518713526427746, -0.013804102316498756, -0.020793234929442406, -0.02520024962723255, 0.010873665101826191, 0.023367779329419136, -0.01181261707097292, 0.01405398454517126, 0.008632296696305275, 0.05170291289687157, 0.012501685880124569, 0.0066748857498168945, 0.029304375872015953, 0.0663323849439621, -0.0356195829808712, 0.0652419924736023, -0.030879391357302666, -0.0169919952750206, -0.04782595485448837, 0.015644144266843796, -0.00775392260402441, -0.007424532435834408, -0.0285017229616642, 0.03934510052204132, 0.005542843136936426, 0.0014415556797757745, -0.04049607366323471, -0.009503099136054516, 0.04761393368244171, 0.01523524709045887, 0.03852730244398117, 0.019596828147768974, -0.0039261807687580585, 0.021580742672085762, 0.0178097914904356, 0.004301004111766815, 0.012501685880124569, -0.05985059216618538, 0.014220573008060455, 0.006496939342468977, 0.04534227401018143, -0.00035518305958248675, 0.0285017229616642, 0.0014008551370352507, -0.03664940223097801, 0.02520024962723255, 0.006038821768015623, 0.004020832944661379, 0.003396127372980118, 0.004539527930319309, 0.0009294863557443023, -0.05215724557638168, 0.0183701328933239, -0.009684830904006958, 0.014591610059142113, -0.017734069377183914, 0.00045930067426525056, -0.012425963766872883, -0.012236659415066242, -0.006549944635480642, -0.015008080750703812, 0.026124056428670883, 0.021732185035943985, 0.009503099136054516, 0.008177964948117733, 0.02280743606388569, 0.00672789104282856, 0.009306222200393677, 0.012554691173136234, 0.04322206228971481, -0.00238334690220654, -0.01331948209553957, 0.00673924945294857, 0.02308003604412079, -0.009662115015089512, 0.014515888877213001, 0.014341727830469608, -0.05648854002356529, -0.033681102097034454, 0.04188935458660126, -0.030016161501407623, -0.0048499880358576775, -0.01709800586104393, -0.015136808156967163, 0.013183183036744595, -0.03961769863963127, 0.055004388093948364, -0.019657405093312263, 0.020899245515465736, -0.019960293546319008, -0.02871374599635601, -0.006500725168734789, -0.010283034294843674, 0.019642261788249016, 0.0161590538918972, -0.0026237638667225838, -0.010752510279417038, 0.008639869280159473, 0.02812311425805092, -0.041677333414554596, -0.04400957003235817, -0.010002863593399525, -0.04170762374997139, 0.02323148027062416, -0.020187459886074066, 0.005062009207904339, 0.06772566586732864, 0.0037463409826159477, -0.00206910097040236, -0.02854715660214424, -0.028804611414670944, 0.02264084853231907, 0.030652225017547607, -0.00165168393868953, -0.018930476158857346, -0.035922471433877945, 0.019551394507288933, 0.0285017229616642, 0.01578044518828392, -0.009192639030516148, 0.02812311425805092, 0.0080795269459486, -0.009063911624252796, 0.04407014697790146, 0.03322676941752434, -0.021186988800764084, -0.00735638290643692, 0.015068658627569675, -0.01542455144226551, -0.01471276581287384, -0.04034462943673134, 0.060426078736782074, -0.01600760966539383, -0.01787036843597889, -0.0019536251202225685, -0.0443730354309082, -0.003634651191532612, -0.021338431164622307, 0.0126076964661479, 0.00018291572632733732, 0.041132137179374695, -0.009934713132679462, 0.017688635736703873, -0.06802855432033539, 0.0026729831006377935, 0.031197423115372658, -0.04561487212777138, -0.019248507916927338, -0.025291115045547485, -0.018718454986810684, -0.01129013579338789, 0.00495978444814682, 0.033347927033901215, 0.020036015659570694, 0.02049034647643566, -0.010654071345925331, -0.01303931139409542, -0.021671608090400696, -0.008639869280159473, 0.03268157318234444, -0.017007138580083847, 0.009450092911720276, 0.01688598468899727, 0.004653111100196838, -0.04028405249118805, -0.030773380771279335, -0.005925238598138094, -0.019248507916927338, 0.01397826336324215, 0.02626035548746586, 0.03622535616159439, -0.010623782873153687, -0.010956958867609501, -0.02454904094338417, -0.017506903037428856, 0.006364425644278526, -0.02668439783155918, -0.0020179885905236006, 0.018885042518377304, -0.020914388820528984, 0.03770950809121132, -0.013448209501802921, 0.05009761080145836, 0.04522112011909485, -0.02279229275882244, -0.020142026245594025, 0.04643267020583153, -0.004054907709360123, 0.004429731052368879, -0.00295315426774323, 0.0048613459803164005, 0.010063440538942814, 0.009154777973890305, -0.04034462943673134, -0.007912938483059406, -0.010782798752188683, 0.008200681768357754, 0.004501666873693466, -0.0641515925526619, 0.00330336787737906, 0.024579329416155815, -0.04673555865883827, 0.04882548376917839, 0.002084245439618826, -0.009722691960632801, -0.026820696890354156, -0.03701286390423775, -0.020278325304389, -0.007572190370410681, -0.03090967983007431, -0.03210608661174774, -0.004244212526828051, -0.029016632586717606, -0.04894663766026497, 0.012032209895551205, -0.04673555865883827, -0.012963589280843735, 0.023882687091827393, -0.021686753258109093, 0.016689106822013855, 0.011032680980861187, -0.0031083840876817703, -0.011948916129767895, 0.023170901462435722, -0.032136376947164536, 0.0024249940179288387, 0.0009408446494489908, -0.03595275804400444, 0.015613855794072151, 0.01117655262351036, 0.055549588054418564, -0.03716430813074112, -0.030727947130799294, -0.03310561552643776, 0.018445855006575584, 0.005955527536571026, 0.0010411761468276381, -0.011115974746644497, -0.014296295121312141, -0.030273616313934326, -0.014356872998178005, 0.023110324516892433, -0.012509258463978767, -0.0036516888067126274, 0.023473789915442467, 0.011540018022060394, -0.00835969764739275, 0.024155287072062492, 0.046008627861738205, -0.009283505380153656, -0.03549842908978462, -0.011115974746644497, 0.030061595141887665, -0.0013847643276676536, -0.005921452771872282, 0.03222724050283432, -0.01085094828158617, 0.010002863593399525, -0.0034567047841846943, -0.01682540588080883, 0.037467196583747864, 0.015553278848528862, 0.023428356274962425, -0.02488221786916256, -0.007114072795957327, 0.0017236197600141168, -0.045463431626558304, 0.03555900603532791, -0.050279341638088226, -0.020793234929442406, -0.03210608661174774, 0.01046476699411869, -0.008344553411006927, -0.0071822223253548145, -0.002714630216360092, -0.012176081538200378, 0.01003315206617117, -0.007382885552942753, 0.014356872998178005, 0.02071751281619072, 0.035044096410274506, -0.02532140351831913, 0.0020558496471494436, 0.006265987176448107, -0.02477620542049408, 0.02509423904120922, -0.005065795034170151, 0.0024117424618452787, 0.0035967903677374125, 0.0037160522770136595, 0.06336408853530884, 0.0014557535760104656, 0.020399481058120728, 0.004478950519114733, -0.043100904673337936, -0.013698091730475426, 0.026336077600717545, 0.042888883501291275, -0.010654071345925331, 0.05879048630595207, -0.01098724827170372, 0.017067717388272285, 0.05530727654695511, 0.023534366860985756, -0.031106557697057724, 0.005190736148506403, -0.0021618602331727743, -0.005838158540427685, -0.012804573401808739, -0.01002557948231697, 0.001571229426190257, -0.01977856084704399, -0.006182693410664797, -0.0295921191573143, 0.003712266217917204, 0.00795079953968525, 0.020702367648482323, 0.020020870491862297, 0.036588821560144424, 0.006133473943918943, -0.02049034647643566, -0.028532013297080994, -0.03228781744837761, -0.0101391626521945, 0.010517772287130356, -0.0036213998682796955, 0.0001755801640683785, 0.024897361174225807, -0.02888033352792263, 0.018264122307300568, -0.0034926726948469877, 0.004229068290442228, 0.00805681012570858, -0.031439732760190964, 0.0055542015470564365, -0.015825876966118813, -0.0025480419863015413, -0.01076765451580286, 0.02701757475733757, 0.008374841883778572, 0.007337452378123999, -0.044039856642484665, -0.018385278061032295, 0.014932358637452126, 0.002873646095395088, -0.021277854219079018, 0.00882160197943449, 0.02800195850431919, -0.0014746839879080653, 0.005546629428863525, -0.006175121292471886, -0.00882160197943449, 0.0024514966644346714, 0.001704689348116517, 0.007220083381980658, -0.01003315206617117, 0.012789429165422916, -0.018930476158857346, -0.016567952930927277, -0.02105068787932396, 0.03480178490281105, 0.00035731273237615824, 0.006103185471147299, -0.004013260826468468, 0.001223855186253786, 0.0009408446494489908, 0.047432199120521545, -0.022837726399302483, 0.01457646582275629, 0.018551865592598915, 0.0077160620130598545, -0.033893123269081116, 0.011221986263990402, -0.017279738560318947, -0.03574073687195778, -0.03325705975294113, 0.022943736985325813, -0.039981164038181305, 0.04791681841015816, 0.004607677925378084, 0.001784197287634015, 0.001114058424718678, -0.03371139243245125, -0.005486052017658949, -0.00103455048520118, 0.013531504198908806, -0.023640377447009087, 0.014546177349984646, -0.01147944014519453, -0.0018523470498621464, -0.003380982903763652, 0.0030705230310559273, -0.02049034647643566, 0.02044491283595562, 0.02021774835884571, -0.022216806188225746, 0.014175140298902988, -0.003911036066710949, -0.031439732760190964, 0.014341727830469608, 0.0008902056142687798, -0.010336039587855339, 0.002606726484373212, 0.011146264150738716, -0.007500254549086094, -0.027865659445524216, -0.006561302579939365, 0.018445855006575584, 0.013622370548546314, 0.003174640703946352, 0.0271235853433609, -0.013576936908066273, -0.016416508704423904, 0.02082352340221405, 0.017022283747792244, 0.04028405249118805, -0.02953154221177101, 0.012812145985662937, -0.028304846957325935, -0.012077643536031246, 0.011835332959890366, 0.015704723075032234, -0.03147002309560776, 0.022731715813279152, -0.01891533099114895, -0.0012124970089644194, -0.035377271473407745, 0.022625703364610672, -0.015931887552142143, 0.003740662010386586, -0.008692874573171139, -0.04355523735284805, 0.0003450079238973558, -0.00010482750803930685, -0.04652353748679161, -0.01939995214343071, 0.01567443460226059, 0.005531484726816416, 0.02186848595738411, 0.014614326879382133, -0.02938009798526764, -0.0033128331415355206, -0.010843376629054546, 0.009480382315814495, 0.012456253170967102, 0.019248507916927338, 0.011623311787843704, -0.020672079175710678, 0.04761393368244171, 0.010858520865440369, -0.010654071345925331, 0.029349809512495995, 0.0008736414602026343, 0.027259884402155876, -0.024306731298565865, -0.008405131287872791, 0.011449151672422886, -0.02828970178961754, -0.0009318526717834175, -0.017718924209475517, 0.027608204632997513, 0.006394714582711458, -0.046826425939798355, -0.02454904094338417, -0.00394511129707098, 0.024246152490377426, -0.004350223112851381, 0.024867072701454163, 0.011827761307358742, -0.007606265135109425, -0.033014748245477676, 0.00548226572573185, -0.0026256570126861334, -0.008859462104737759, -0.0011348819825798273, -0.013486070558428764, 0.022156229242682457, 0.010805515572428703, 0.03643737733364105, -0.026775265112519264, -0.023049747571349144, 0.014682476408779621, -0.0046228221617639065, 0.002572651719674468, -0.010669215582311153, 0.004925709683448076, 0.00032276459387503564, -0.020672079175710678, 0.008874607272446156, -0.021292999386787415, 0.0304099153727293, 0.005387613084167242, -0.014727910049259663, 0.04543314129114151, 0.0287743229418993, -0.014932358637452126, 0.011789900250732899, -0.021823052316904068, 0.04319177195429802, 0.008488425053656101, 0.017294881865382195, 0.007553259842097759, 0.008435419760644436, -0.03063708171248436, -0.02772936038672924, -0.008283976465463638, -0.007129217032343149, 0.0013781386660411954, 0.007273088674992323, -0.03140944615006447, 0.022837726399302483, -0.022443972527980804, 0.02394326590001583, 0.022322816774249077, 0.00923050008714199, -0.02235310524702072, -0.013660230673849583, -0.0020501704420894384, -0.0007524864049628377, 0.018294410780072212, -0.0012768605956807733, -0.0002133227972080931, -0.02898634411394596, 0.002283015288412571, 0.028017103672027588, 0.021080978214740753, -0.04555429518222809, 0.016068188473582268, 0.003538105869665742, 0.016022754833102226, -0.009760553017258644, -0.02103554457426071, -0.012229086831212044, -0.0013724594609811902, 0.03601333498954773, -0.0047401911579072475, 0.045190829783678055, -0.011312851682305336, -0.0027108441572636366, 0.007640339899808168, 0.01107054203748703, 0.025412270799279213, 0.025912035256624222, 0.014197856187820435, -0.006390928290784359, 0.006621880456805229, -0.012653130106627941, -0.03749748691916466, 0.015409407205879688, 0.004539527930319309, -0.0028395713306963444, -0.012675845995545387, 0.00942737702280283, -0.006485580932348967, -0.003055378794670105, -0.03030390478670597, -0.01347849890589714, -0.03583160415291786, -0.03201521933078766, 0.022171372547745705, 0.04064751788973808, -0.013523931615054607, 0.002708951011300087, 0.005190736148506403, -0.009858991950750351, -0.01705257222056389, 0.000508756551425904, -0.0001713208039291203, -0.012539546936750412, 0.01912735216319561, -0.008995762094855309, -0.006814971100538969, -0.0052778166718780994, -0.012683418579399586, 0.041344158351421356, -0.017506903037428856, -0.02553342469036579, -0.01808238960802555, 0.011365857906639576, -0.025397125631570816, 0.033559948205947876, 0.04413072392344475, -0.006318992935121059, -0.03256041929125786, 0.0021050688810646534, 0.00010997422941727564, -0.0035191753413528204, 0.00476669380441308, 0.013183183036744595, 0.01490964274853468, -0.017885513603687286, -0.00010305277828592807, 0.008427848108112812, -0.00247989222407341, -0.017900656908750534, 0.0021770047023892403, -0.0040435497649014, 0.04076867178082466, -0.00549362413585186, -0.033075325191020966, -0.029364952817559242, -0.001216283068060875, 0.012577407993376255, -0.0029569403268396854, 0.02170189656317234, -0.0032390044070780277, 0.015750154852867126, -0.00753811514005065, -0.0060615381225943565, 0.00505822291597724, 0.0033279776107519865, -0.01107054203748703, -0.01501565333455801, 0.003911036066710949, 0.03798210620880127, -0.03331763669848442, -0.005565559957176447, -0.030727947130799294, 0.022125938907265663, -0.020278325304389, 0.015704723075032234, 0.014114562422037125, 0.022443972527980804, -0.016310498118400574, 0.014220573008060455, 0.024155287072062492, 0.07650940865278244, -0.027547627687454224, 0.012706135399639606, 0.021232420578598976, 0.011305280029773712, -0.001744443317875266, 0.014947503805160522, 0.021277854219079018, 0.0028717531822621822, 0.0059441691264510155, 0.009965002536773682, 0.007897794246673584, 0.009571248665452003, 0.01490964274853468, -0.010419333353638649, -0.032802727073431015, -0.02888033352792263, 0.007163291797041893, 0.03207579627633095, 0.008526286110281944, 0.01159302331507206, 0.02582116797566414, 0.01676482893526554, 0.04037491977214813, 0.0022129726130515337, -0.007106500677764416, 0.02609376795589924, 0.006125901825726032, -0.046281225979328156, -0.003017517738044262, -0.004497881047427654, -0.0186275877058506, -0.008291548117995262, -0.044918231666088104, 0.018006667494773865, 0.00991956889629364, 0.05303562059998512, 0.001610036939382553, -0.019581682980060577, -0.0038807473611086607, 0.011032680980861187, 0.022716570645570755, -0.02565458044409752, -0.01542455144226551, -0.004683399572968483, 0.001358261564746499, -0.001168956863693893, -0.0243824515491724, -0.012319953180849552, -0.007114072795957327, -0.004308576229959726, -0.03813355043530464, 0.03540756180882454, 0.005925238598138094, 0.032469552010297775, -0.02938009798526764, -0.007814500480890274, -0.005868447478860617, 0.027941381558775902, 0.006383356172591448, 0.006867976393550634, 0.0018608657410368323, -0.028092825785279274, 0.037739794701337814, -0.004535742104053497, -0.010722220875322819, -0.013001450337469578, -0.011971632950007915, 0.01879417523741722, -0.03204550966620445, -0.00898818951100111, 0.021989639848470688, 0.0034869934897869825, 0.019278796389698982, -0.046220649033784866, 0.008935184217989445, 0.04818941652774811, -0.02706300839781761, 0.022019928321242332, 0.02088410034775734, -0.027305318042635918, -0.005027934443205595, -0.010472338646650314, 0.0032408973202109337, -0.010343612171709538, 0.04516054317355156, -0.012774284929037094, 0.008677730336785316, -0.046887002885341644, 0.036195069551467896, -0.0066786715760827065, -0.037739794701337814, -0.004308576229959726, -0.007276874966919422, 0.007511612493544817, -0.00040937153971754014, 0.016795117408037186, -0.009215355850756168, 0.023806966841220856, 0.006035035476088524, -0.0016441118204966187, -0.024352163076400757, -0.003015624824911356, 0.0031992504373192787, -0.022974025458097458, 0.03057650476694107, -0.01852157711982727, 0.0053270356729626656, -0.0034548118710517883, 0.017506903037428856, 0.023776676505804062, 0.03009188361465931, -0.00487649068236351, -0.014372017234563828, -0.0161741990596056, -0.004263143055140972, -0.006235698703676462, 0.009654542431235313, -0.005099870264530182, 0.014402305707335472, -0.006432575639337301, -0.009904424659907818, -0.008071954362094402, 0.009911997243762016, -0.02724474109709263, -0.041404735296964645, -0.004778052214533091, -0.006883121095597744, -0.005133945029228926, -0.02400384284555912, -0.0007785158231854439, 0.025836313143372536, 0.021611031144857407, 0.004350223112851381, -0.048704326152801514, 0.0073298802599310875, 0.023579800501465797, -0.011903483420610428, -0.014425022527575493, 0.0005352591979317367, 0.0015977320726960897, 0.0047439769841730595, -0.02044491283595562, -0.03583160415291786, 0.004460019990801811, -0.028032248839735985, -0.01705257222056389, -0.02778993733227253, -0.0007203046116046607, -0.02105068787932396, 0.008071954362094402, -0.02651781029999256, -0.026593532413244247, -0.009192639030516148, 0.007163291797041893, -0.04034462943673134, 0.01661338470876217, 0.0033847689628601074, 0.004119271412491798, 0.050006743520498276, 0.010578349232673645, 0.019642261788249016, -0.007553259842097759, -0.014750626869499683, 0.007935655303299427, -0.0022697639651596546, 0.017582625150680542, 0.0023587371688336134, -0.001343117211945355, -0.024518752470612526, 0.022898303344845772, -0.0038958918303251266, 0.004077624529600143, 0.009692403487861156, 0.016295352950692177, -0.022837726399302483, -0.0005641281604766846, 0.025745445862412453, 0.017658347263932228, 0.007791783660650253, -0.023488933220505714, 0.005792725365608931, 0.002883111359551549, -0.016961706802248955, 0.046008627861738205, -0.0074888961389660835, 0.005512554664164782, 0.0025934751611202955, -0.046008627861738205, -0.02789594791829586, -0.006262201350182295, -0.006035035476088524, 0.02751733921468258, -0.019884571433067322, -0.0005362057127058506, -0.016522519290447235, -0.02082352340221405, 0.04334321618080139, 0.004778052214533091, 0.003231432056054473, -0.002716523129492998, 0.02635122276842594, 0.0056867147795856, -0.0020236677955836058, -0.011540018022060394, 0.026336077600717545, -0.009646969847381115, 0.012539546936750412, 0.009465238079428673, 0.007284447085112333, 0.005402757786214352, -0.019521106034517288, -0.0047818380407989025, 0.006777110043913126, -0.013417921029031277, 0.017885513603687286, -0.0317729115486145, 0.016689106822013855, 0.0005693340208381414, 0.0011793685844168067, -0.027593061327934265, -0.033347927033901215, -0.005690501071512699, 0.008442992344498634, 0.01211550459265709, -0.019536251202225685, -0.0260331891477108, 0.0025859030429273844, -0.0004320880980230868, -0.026124056428670883, 0.021959351375699043, -0.03053107112646103, 0.0009824916487559676, -0.0063682119362056255, -0.0020217748824507, 0.01211550459265709, -0.007098928093910217, -0.01896076463162899, -0.018339844420552254, -0.008768596686422825, 0.03622535616159439, -0.014372017234563828, 0.004323720466345549, -0.004448661580681801, 0.02433701977133751, -0.016628529876470566, -0.024246152490377426, -0.001317561138421297, -0.0008324676309712231, -0.014727910049259663, -0.0031462449114769697, -0.015045941807329655, -0.006780896335840225, 0.027108440175652504, 0.008745879866182804, 0.018430711701512337, 0.02092953398823738, 0.010071013122797012, 0.011683889664709568, 0.0254879929125309, -0.00776906730607152, -0.020429769530892372, -0.007628981489688158, 0.00039517367258667946, 0.005410329904407263, 0.011630884371697903, 0.0025764377787709236, -0.056700561195611954, -0.03574073687195778, 0.020278325304389, -0.01621963083744049, -0.02433701977133751, -0.015394262969493866, 0.023216335102915764, -0.0050885118544101715, 0.005190736148506403, 0.01578044518828392, 0.0025840098969638348, 0.0008154302486218512, 0.021353576332330704, -0.0317729115486145, -0.010101301595568657, 0.010911526158452034, -0.0028073894791305065, -0.010775226168334484, -0.03870903700590134, 0.010078584775328636, -0.07026992738246918, -0.03352965787053108, 0.0032673999667167664, 0.01797637902200222, 0.014788486994802952, -0.00846570823341608, -0.008367270231246948, -0.013380059972405434, 0.005997174419462681, -0.0045811752788722515, -0.009662115015089512, -0.0026786623056977987, 0.007254158146679401, 0.029137788340449333, -0.0019593043252825737, 0.025669725611805916, -0.022655993700027466, 0.0067960405722260475, 0.010381472297012806, -0.012463824823498726, 0.010896381922066212, -0.013387632556259632, 0.050006743520498276, 0.004986287094652653, 0.007148147560656071, 0.0537019744515419, -0.03525611758232117, 0.04258599877357483, -0.0032730791717767715, -0.013221044093370438, 0.02866831235587597, -0.007148147560656071, -0.0020558496471494436, 0.002260298701003194, 0.020732656121253967, -0.02032375894486904, 0.0034718492534011602, -0.008708018809556961, 0.025881746783852577, 0.022277383133769035, 0.004278287291526794, 0.01659824140369892, -0.003180319909006357, -0.015114091336727142, 0.011464295908808708, -0.019097063690423965, 0.0059403833001852036, -0.014197856187820435, -0.007299591321498156, 0.007148147560656071, 0.0002562713052611798, -0.009896853007376194, 0.01628020964562893, -0.021853340789675713, 0.008374841883778572, 0.01169903390109539, -0.006016104947775602, 0.00046332337660714984, -0.0070232064463198185, -0.008692874573171139, 0.05770009011030197, 0.016204487532377243, -0.010896381922066212, 0.005292960908263922, 0.007193580735474825, 0.006053966004401445, -0.00383531441912055, 0.042283110320568085, 0.02373124472796917, 0.004369153641164303, -0.024291586130857468, 0.0014936145162209868, 0.008594435639679432, 0.03925423324108124, 0.0008802671218290925, -0.005974458064883947, 0.03474120795726776, -0.0007619516109116375, 0.003087560646235943, 0.0043956562876701355, -0.023488933220505714, 0.0051263729110360146, 0.014637043699622154, -0.026002900674939156, -0.034559477120637894, -0.03577102720737457, 0.018975907936692238, -0.006337922997772694, -0.01803695783019066, 0.002731667598709464, 0.004796982277184725, 0.004751549568027258, 0.022671137005090714, 0.02268628217279911, -0.014652187936007977, 0.010956958867609501, 0.004369153641164303, -0.018612444400787354, 0.0016526305116713047, 0.011085686273872852, -0.002835785271599889, -0.01430386770516634, -0.008867034688591957, -0.020793234929442406, -0.02103554457426071, 0.004690971691161394, -0.004630394279956818, 0.01394797395914793, -0.014659760519862175, -0.003998116590082645, -0.004403228405863047, 0.0036649401299655437, -0.00367819145321846, 0.006621880456805229, -0.02241368219256401, 0.014841493219137192, 0.001121630659326911, -0.012865151278674603, -0.03777008503675461, 0.007704703602939844, -0.009843846783041954, 0.011131119914352894, -0.002900148741900921, -0.045251406729221344, -0.01962711662054062, 0.009026050567626953, 0.0015049728099256754, -0.013637514784932137, -0.0017198337009176612, 0.004630394279956818, -0.017961235716938972, 0.007829644717276096, -0.015629000961780548, 0.012842434458434582, 0.005243741907179356, 0.01759777031838894, 0.025836313143372536, -0.02142929844558239, 0.011487012729048729, -0.028365423902869225, -0.007935655303299427, 0.007534329313784838, 0.004698543809354305, 0.0008495050715282559, 0.0015021332073956728, 0.0021505020558834076, 0.0014964541187509894, -0.00433129258453846, 0.0025045019574463367, -0.032863304018974304, 0.007000489626079798, 0.022883158177137375, 0.027169018983840942, -0.016976850107312202, -0.015250391326844692, -0.013963119126856327, -0.015583567321300507, 0.015644144266843796, 0.012251803651452065, -0.002818747889250517, -0.007466179318726063, 0.0023984911385923624, 0.024352163076400757, 0.0009460505098104477, 0.004092768765985966, -0.01406155712902546, -0.031379155814647675, 0.004955998621881008, -0.016189342364668846, -0.009041194804012775, 0.0008902056142687798, -0.002646480454131961, -0.013743525370955467, -0.01147944014519453, 0.013523931615054607, -0.030288761481642723, -0.00715193385258317, -0.008973045274615288, 0.014659760519862175, 0.02881975658237934, -0.015106519684195518, -0.001508758869022131, -0.014235717244446278, 0.017552336677908897, 0.026275500655174255, 0.017552336677908897, 0.017840079963207245, 0.006992917507886887, -0.013168038800358772, 0.0009891173103824258, 0.0030515927355736494, 0.00799623318016529, -0.012395675294101238, 0.03047049418091774, 0.030394772067666054, 0.0031859991140663624, 0.01573501154780388, -0.02373124472796917, -0.01512166392058134, -0.01967255026102066, -0.011078114621341228, -0.005701859015971422, -0.0018665448296815157, -0.0025234324857592583, -0.008859462104737759, 0.007882650010287762, -0.013622370548546314, 0.02138386480510235, 0.015295824036002159, -0.02410985343158245, 0.0029323305934667587, -0.004270715173333883, 0.0037217314820736647, -0.0060956128872931, 0.003875068388879299, -0.001830577035434544, -0.016037898138165474, -0.0141069907695055, -0.005857089068740606, -0.01797637902200222, 0.018673021346330643, 0.0030913467053323984, 0.006296276114881039, -0.03495322912931442, -0.0019223897252231836, 0.013887397013604641, -0.0025707585737109184, -0.02000572718679905, -0.007352596614509821, 0.004444875754415989, -0.003560822457075119, 0.015598711557686329, -0.019823994487524033, -0.00279413815587759, -0.006769537925720215, -0.01068436075001955, 0.009707547724246979, -0.00879888515919447, 0.0191879291087389, -0.006845260038971901, -0.023806966841220856, -0.05227839946746826, -0.0017463363474234939, 0.017491759732365608, 0.015825876966118813, 0.004259356763213873, -0.01703742705285549, -0.020641790702939034, 0.0026086196303367615, -0.025275971740484238, 0.001342170755378902, -0.014833920635282993, -0.026230067014694214, 0.017946090549230576, -0.0024988227523863316, 0.006773324217647314, -0.0015362080885097384, -0.009601537138223648, 0.016522519290447235, -0.020672079175710678, 0.010676788166165352, 0.015871310606598854, 0.006989131681621075, -0.02651781029999256, 0.03519554063677788, -0.0432826392352581, -0.007496468257158995, -0.012622840702533722, 0.002006630413234234, -0.011146264150738716, -0.0043161483481526375, 0.023912977427244186, -0.004054907709360123, 0.017188871279358864, 0.030955113470554352, -0.0024098495487123728, 0.01487935334444046, -0.030591648072004318, -0.0036251861602067947, -0.016371075063943863, -0.010858520865440369, -0.018430711701512337, 0.0031651754397898912, -0.018173256888985634, 0.0018012347863987088, -0.01002557948231697, 0.014644616283476353, 0.007541901431977749, 0.022974025458097458, 0.010540489107370377, 0.012872722931206226, -0.00505822291597724, 0.011971632950007915, 0.004982501268386841, 0.02509423904120922, -0.010956958867609501, -0.017082860693335533, -0.008140104822814465, 0.0012371066259220243, 0.010729793459177017, 0.009934713132679462, -0.006459078285843134, -0.006913409568369389, -0.026487521827220917, -0.01644679717719555, -0.00029744510538876057, 0.016204487532377243, 0.006406072992831469, 0.004308576229959726, -0.010320895351469517, -0.004081410355865955, 0.021823052316904068, -0.006084254942834377, -0.01665881834924221, 0.00043989691766910255, 0.02148987539112568, 0.01659824140369892, 0.010434478521347046, -0.009768125601112843, -0.020157169550657272, 0.006485580932348967, -0.03425658866763115, 0.018673021346330643, -0.010426905937492847, -0.027880804613232613, -0.0012437322875484824, 0.0006142939091660082, -0.0006360639818012714, 0.014727910049259663, -0.010214884765446186, -0.01682540588080883, 0.017446326091885567, -0.01022245641797781, -0.025351691991090775, 0.016204487532377243, -0.010919097810983658, -0.0049294959753751755, -0.0075684040784835815, 0.016810262575745583, -0.0002636068675201386, -0.0009271200397051871, 0.024246152490377426, -0.013629942201077938, -0.0010676787933334708, 0.006572660990059376, 0.01584102213382721, -0.0047439769841730595, 0.014417449943721294, 0.010729793459177017, -0.00028277398087084293, 0.0040435497649014, -0.0007884543156251311, -0.001500240177847445, 0.008253687061369419, 0.0028566087130457163, 0.025139670819044113, -0.017446326091885567, 0.04319177195429802, -0.028516868129372597, -0.018052101135253906, 0.007674414664506912, 0.002803603420034051, -0.018506431952118874, 0.01181261707097292, 0.014765771105885506, 0.004176062997430563, 0.0012333204504102468, 0.008549002930521965, -0.0019876998849213123, -0.015439695678651333, -0.00598960230126977, 0.002724095480516553, -0.008844317868351936, 0.0010790370870381594, -0.0019782346207648516, -0.0017737855669111013, 0.008034094236791134, 0.010896381922066212, 0.009275932796299458, 0.02032375894486904, -0.012690991163253784, 0.013963119126856327, -0.038436438888311386, 0.0011878873920068145, 0.013501214794814587, 0.007882650010287762, -0.001113111968152225, 0.018824465572834015, 0.017567481845617294, -0.01759777031838894, -0.012229086831212044, -0.002195935230702162, 0.010782798752188683, 0.007693345192819834, -0.014803632162511349, 0.015061086043715477, -0.03237868472933769, 0.02126271091401577, -0.012463824823498726, -0.0024022774305194616, -0.012880295515060425, 0.010336039587855339, -0.003197357291355729, 0.01791580207645893, -0.011426434852182865, 0.007496468257158995, -0.026866130530834198, 0.028698600828647614, -0.0002714156871661544, -0.02279229275882244, -0.02023289166390896, 0.0030648440588265657, 0.034983519464731216, -0.0060615381225943565, -0.015326112508773804, 0.020596357062458992, 0.0121987983584404, 0.03265128284692764, 0.002131571527570486, -0.008526286110281944, 0.0068339016288518906, -0.011032680980861187, 0.002220544731244445, -0.014584038406610489, -0.014849064871668816, 0.018597299233078957, 0.0049711428582668304, -0.0066786715760827065, -0.009684830904006958, 0.03222724050283432, -0.02800195850431919, 0.013190755620598793, -0.020460058003664017, -0.009556104429066181, 0.05161204934120178, -0.019717983901500702, 0.03365081176161766, 0.0011746359523385763, 0.0005513501237146556, -0.027759648859500885, -0.017779503017663956, -0.007723634131252766, -0.0018854753579944372, -0.00994985830038786, -0.013531504198908806, -0.03313590586185455, 0.01659824140369892, -0.020838666707277298, 0.032469552010297775, 0.04473650082945824, 0.016961706802248955, -0.021020399406552315, 0.02404927648603916, 0.007303377613425255, -0.012017065659165382, 0.025563713163137436, -0.010290606878697872, 0.011880766600370407, -0.004698543809354305, 0.022549983114004135, 0.019309084862470627, -0.008920039981603622, -0.015462412498891354, 0.010949387215077877, -0.0011329889530315995, 0.015447268262505531, 0.016673963516950607, -0.03325705975294113, 0.007432104554027319, 0.006860404275357723, -0.009283505380153656, -0.01774921454489231, -0.027502194046974182, -0.0034945658408105373, 0.0026824483647942543, 0.005876019597053528, 0.009328938089311123, 0.0007198313251137733, -0.005985816475003958, -0.0024420314002782106, 0.00016161894018296152, -0.020520634949207306, -0.0020634217653423548, 0.003960255533456802, 0.013402776792645454, 0.00705349538475275, -0.007663056254386902, -0.004509239457547665, 0.00975298136472702, 0.012978733517229557, -0.007522970903664827, 0.0028528226539492607, -0.015106519684195518, 0.019990582019090652, 0.015023224987089634, -0.029228653758764267, -0.006955056916922331, 0.0001908428530441597, 0.027169018983840942, -0.00882160197943449, -0.01347849890589714, -0.015629000961780548, -0.024473318830132484, -0.0007136789499782026, 0.020641790702939034, 0.012819717638194561, 0.011555162258446217, 0.024700485169887543, 0.0011064863065257668, -0.0018419352127239108, 0.00857929140329361, 0.0254879929125309, 0.003221967024728656, -0.008745879866182804, -0.006016104947775602, 0.0012058712309226394, 0.023912977427244186, -0.013970690779387951, 0.003960255533456802, -0.0007269302732311189, 0.01509894710034132, -0.006705174222588539, 0.00705349538475275, -0.012539546936750412, 0.00247989222407341, 0.010298178531229496, 0.015977321192622185, 0.0068339016288518906, -0.003301474964246154, 0.0029474750626832247, -0.010184595361351967, 0.0022678710520267487, -0.01044205017387867, 0.010192167945206165, 0.005043078679591417, 0.012539546936750412, -0.003903463948518038, -0.012978733517229557, 0.0004086616390850395, -0.007727419957518578, 0.0036460096016526222, 0.01737060397863388, -0.014599182642996311, 0.006724104750901461, -0.02641179971396923, 0.05963857099413872, -0.006031249649822712, 0.012478969059884548, -0.00194226682651788, 0.0014093739446252584, -0.006103185471147299, 0.006451506167650223, 0.0034472395200282335, 0.033953700214624405, -0.0011850477894768119, -0.009109344333410263, -0.018324701115489006, 0.02268628217279911, 0.0006374837830662727, -0.03295417129993439, -0.0006814970984123647, 0.016461942344903946, 0.0031859991140663624, 0.01902134157717228, 0.017567481845617294, 0.025018516927957535, -0.0072238692082464695, -0.01611362025141716, -0.00455088634043932, 0.0014425022527575493, 0.005440618842840195, -0.007420746609568596, -0.0060918270610272884, 0.026502665132284164, 0.026230067014694214, -0.011835332959890366, -0.002654052572324872, -0.007186008617281914, -0.0080795269459486, -0.008980617858469486, 0.020248036831617355, -0.007806927897036076, 0.0141069907695055, -0.0034567047841846943, 0.0028641808312386274, -0.00034453466651029885, -0.02049034647643566, 0.02778993733227253, 0.02247426100075245, -0.023110324516892433, -0.0018372026970610023, -0.004982501268386841, -0.003829635214060545, -0.01032846700400114, 0.010934242978692055, -0.006027463357895613, -0.019763415679335594, -0.0055958484299480915, 0.02000572718679905, 0.01661338470876217, 0.003526747692376375, 0.03150030970573425, 0.006417431402951479, -0.00017475195636507124, -0.004808340687304735, -2.1858782929484732e-05, -0.007875077426433563, 0.009268361143767834, -0.025442559272050858, -0.02120213210582733, 7.40950645194971e-06, -0.008215826004743576, 0.0012664487585425377, -0.0031859991140663624, -0.0017160476418212056, -0.0080870995298028, -0.015553278848528862, 0.023261768743395805, -0.024594474583864212, -0.007697131484746933, 0.008935184217989445, 0.006860404275357723, 0.02810796909034252, 0.02904692105948925, -0.018869897350668907, -0.011305280029773712, 9.116207365877926e-05, -0.01977856084704399, -0.015977321192622185, 0.010207312181591988, -0.013796530663967133, 0.012372958473861217, -0.0038334212731570005, -0.006898265331983566, -0.03201521933078766, -0.016022754833102226, -0.018809320405125618, 0.005118800792843103, 0.010752510279417038, 0.004153346177190542, -0.01035875640809536, -0.004566030576825142, -0.003734982805326581, 0.0026161917485296726, -0.009465238079428673, 0.012668274343013763, -0.0024514966644346714, -0.0025139672216027975, -0.006474222522228956, 0.0006256522028706968, 0.013902541249990463, 0.024155287072062492, 0.002788458950817585, -0.023761533200740814, 0.01802181266248226, -0.006826329510658979, -0.008995762094855309, 0.0015825877198949456, 0.003638437483459711, -0.026760119944810867, -0.013274049386382103, 0.007712275721132755, 0.014364444650709629, -0.010790371336042881, -0.014023696072399616, 0.0014557535760104656, 0.007375313434749842, -0.021898774430155754, -0.004471378400921822, -0.012668274343013763, 0.0109645314514637, -0.019157640635967255, -0.009654542431235313, 0.011343141086399555, 0.00829912070184946, 0.02132328785955906, 0.008768596686422825, 0.010782798752188683, -0.01820354536175728, 0.010313322767615318, 0.004868918098509312, -0.021353576332330704, 0.01367537584155798, 0.0024855714291334152, -0.01923336274921894, 0.013599653728306293, 0.007299591321498156, 0.01347849890589714, 0.004145774058997631, 0.008420275524258614, 0.0016620957758277655, 0.001120684202760458, -0.028017103672027588, 0.021792763844132423, -0.013932829722762108, 0.0295921191573143, -0.027577916160225868, -0.013501214794814587, -0.00673924945294857, -0.004066266119480133, 0.005387613084167242, -0.018975907936692238, 0.026563243940472603, -0.030667370185256004, 0.005925238598138094, 0.001405587769113481, -0.009798414073884487, -0.004804554861038923, 0.01908191852271557, 0.0015683899400755763, 0.020096592605113983, 0.008957901038229465, 0.0029493679758161306, 0.017930947244167328, -0.005398971494287252, -0.0060236770659685135, 0.009381943382322788, 0.014356872998178005, -0.01550784520804882, -0.016083331778645515, -0.004456233698874712, 0.010926670394837856, 0.016355929896235466, -0.010184595361351967, 0.013546648435294628, 0.009003333747386932, 0.007912938483059406, 0.01994514837861061, -0.0075986930169165134, -0.0017416037153452635, -0.016946561634540558, 0.022655993700027466, -0.017628058791160583, 0.013728381134569645, 0.0062091960571706295, -0.011471868492662907, 0.011880766600370407, 0.016083331778645515, -0.005300533026456833, 0.005535271018743515, -0.00013405142817646265, 0.02032375894486904, 0.017113149166107178, 0.026593532413244247, -0.015220101922750473, -0.013902541249990463, -0.012047354131937027, 0.023806966841220856, 0.0101391626521945, 0.008829173631966114, -0.022125938907265663, -0.024897361174225807, 0.0010194061324000359, -0.009162350557744503, -0.0011225772323086858, -0.03268157318234444, -0.015303396619856358, 0.013417921029031277, 0.01022245641797781, -0.013357343152165413, 0.003608148545026779, 0.005012789741158485, 0.002612405689433217, -0.003772843861952424, -0.0038996778894215822, 0.000817323278170079, -0.004263143055140972, 0.0014936145162209868, -0.011994348838925362, 0.005857089068740606, -0.013077172450721264, -0.008973045274615288, 0.0117823276668787, 0.00388453365303576, -0.012751568108797073, 0.019309084862470627, -0.017294881865382195, -0.002699485747143626, 0.027941381558775902, -0.003956469241529703, 0.023867543786764145, 0.018718454986810684, -0.018506431952118874, 0.021838195621967316, 0.004857560154050589, -0.014917214401066303, 0.012584979645907879, -0.006053966004401445, -0.01962711662054062, -0.002502608811482787, -0.011282563209533691, 0.0037046940997242928, 0.010843376629054546, 0.006913409568369389, -2.548219526943285e-05, -0.0007714168750680983, 0.004641752690076828, -0.010820659808814526, 0.0044524478726089, 0.021898774430155754, 0.011381002143025398, 0.002928544534370303, 0.013910113833844662, -0.0015731224557384849, -0.034014277160167694, 0.008230971172451973, 0.012660701759159565, -0.013599653728306293, -0.0060993991792202, 0.013092316687107086, 0.003212501760572195, -0.03053107112646103, 0.01129013579338789, -0.0089048957452178, -0.002455282723531127, 0.016371075063943863, 0.0053951856680214405, -0.0033582663163542747, 0.016855696216225624, -0.00816282071173191, -0.0022773360833525658, 0.008965473622083664, 0.0004202565469313413, -0.005149089265614748, 0.009412232786417007, -0.0024836782831698656, 0.0002197118301410228, 0.008412702940404415, -0.01665881834924221, -0.009283505380153656, -0.021171843633055687, 0.008140104822814465, 0.006417431402951479, 0.005932811181992292, 0.004982501268386841, 0.008624725043773651, -0.00048367364797741175, 0.005364896729588509, -0.002841464476659894, -0.006019891239702702, 4.916007674182765e-05, 0.012123076245188713, -0.003610041690990329, 0.01803695783019066, -0.01759777031838894, 0.0049711428582668304, 0.00268623442389071, 0.01293330080807209, -0.021898774430155754, 0.0018334165215492249, 0.01222151517868042, 0.0048234849236905575, -0.0023019458167254925, -0.01304688397794962, 0.014743054285645485, 0.0008376735495403409, -0.006879334803670645, -0.014871781691908836, -0.021565597504377365, -0.010972104035317898, -0.007098928093910217, 0.01241081953048706, 0.0161590538918972, -0.007507826667279005, 0.011971632950007915, -0.018536722287535667, 0.007322308141738176, 0.02126271091401577, -0.011123547330498695, 0.023610088974237442, -0.005834372714161873, -0.0035986832808703184, 0.008336981758475304, -0.011274991557002068, -0.012940873391926289, 0.005963099654763937, 0.017718924209475517, -0.013289193622767925, -0.025003371760249138, -0.004130629822611809, 0.02454904094338417, -0.0066786715760827065, -0.012054926715791225, -0.022943736985325813, 0.0040435497649014, -0.02121727727353573, -0.011252274736762047, -0.005118800792843103, -0.021686753258109093, 0.009624253958463669, 0.020020870491862297, -0.004725046455860138, -0.013364915736019611, 0.010479911230504513, -0.007784211542457342, -0.022883158177137375, -0.00414956035092473, 0.03025847114622593, 0.02839571237564087, -0.012834862805902958, -0.0060236770659685135, 0.015250391326844692, 0.02586660161614418, -0.007057281211018562, -0.008405131287872791, 0.0014510209439322352, 0.028728889301419258, -0.008541430346667767, -0.004425945226103067, 0.002141036791726947, -0.0030932396184653044, 0.016673963516950607, 0.014394733123481274, -0.02542741410434246, 0.011221986263990402, -0.0138419633731246, -0.034771498292684555, 0.0022962666116654873, -0.0003106964286416769, -0.008518713526427746, 0.020596357062458992, 0.00476669380441308, 0.0016942775109782815, 0.001698063686490059, -0.0012778070522472262, 0.023867543786764145, 0.001492667943239212, -0.013508787378668785, -0.011827761307358742, -0.001714154495857656, 0.014296295121312141, 0.030788525938987732, 0.01906677521765232, 0.014849064871668816, -0.005012789741158485, -0.0030213037971407175, 0.017355460673570633, 0.012403247877955437, -0.005368683021515608, -0.00620540976524353, 0.002659731777384877, -0.01222151517868042, 0.014811203815042973, 0.016749683767557144, -0.007965943776071072, -0.008980617858469486, -0.008518713526427746, 0.004736404865980148, -0.009154777973890305, -0.00129484455101192, -0.020581213757395744, -0.004168490879237652, 0.02065693400800228, 0.014379588887095451, 0.0029096140060573816, -0.010373900644481182, -0.005504982080310583, -0.014735481701791286, -0.014197856187820435, 0.022868014872074127, -0.010782798752188683, -0.003948897123336792, 0.00325414864346385, 0.010267890058457851, -0.0066370246931910515, 0.00898818951100111, -0.008783740922808647, 0.007628981489688158, 0.0076782009564340115, 0.010040724650025368, -0.006341709289699793, 0.02909235469996929, -0.008253687061369419, 0.0023890261072665453, 0.007859933190047741, 0.007859933190047741, -0.021989639848470688, -0.01896076463162899, -0.0020407051779329777, -0.027108440175652504, -0.007254158146679401, 0.019702838733792305, 0.01271370705217123, -0.004335078876465559, 0.014546177349984646, -0.020278325304389, -0.005561773665249348, 8.347156835952774e-05, 0.008147676475346088, 0.011085686273872852, 0.002551828045397997, -0.0065575167536735535, 0.0027524910401552916, -0.015053514391183853, -0.031227711588144302, 0.0011415076442062855, 0.013281621970236301, 0.007928082719445229, 0.005429260432720184, -0.016416508704423904, -0.013183183036744595, -0.004918137565255165, -0.012539546936750412, 0.0050090039148926735, -0.011623311787843704, 0.025291115045547485, 0.007988660596311092, 0.008367270231246948, -0.008806456811726093, -0.00641364511102438, 0.015522989444434643, 0.01715858280658722, 0.012395675294101238, -0.012812145985662937, 0.01715858280658722, -0.004460019990801811, 0.019309084862470627, 0.025306260213255882, 0.00743967667222023, 0.007212511263787746, 0.021338431164622307, -0.017855225130915642, -0.007965943776071072, 0.003791774157434702, 0.0017965021543204784, -0.007170863915234804, -0.006818757392466068, 0.0043123625218868256, -0.00304780644364655, 0.028213981539011, -0.022171372547745705, 0.005410329904407263, 0.0006497885915450752, 0.008230971172451973, 0.004213924054056406, 0.022716570645570755, 0.02404927648603916, 0.0008939917315728962, -0.003892105771228671, 0.004566030576825142, -0.013614797964692116, 0.013001450337469578, -0.0023700955789536238, -0.011032680980861187, -0.012531974352896214, 0.02421586401760578, 0.009699976071715355, -0.0037785228341817856, -0.010866092517971992, 0.018975907936692238, -0.008541430346667767, -0.004592533223330975, 0.013660230673849583, 0.009487953968346119, -0.006663527339696884, 0.004460019990801811, 0.010934242978692055, -0.028744034469127655, 0.021550452336668968, 0.0008736414602026343, 0.022762004286050797, -0.010570777580142021, 0.0009133954299613833, 0.00882160197943449, 0.00662945257499814, 0.014780915342271328, -0.011752039194107056, 0.0024193148128688335, 0.011933771893382072, -0.0012607696698978543, -0.011206841096282005, 0.009684830904006958, -0.00021616237063426524, -0.009434948675334454, -0.01900619827210903, -0.00879888515919447, 0.013667803257703781, 0.006008532829582691, -0.04843172803521156, -0.0015466198092326522, 0.0002927124733105302, 0.006803612690418959, 0.00227544317021966, 0.04246484115719795, -0.024140141904354095, 0.023776676505804062, 0.01737060397863388, -0.007859933190047741, -0.008223398588597775, -0.012357814237475395, 0.0010875557782128453, 0.007663056254386902, 0.008473280817270279, -0.0035816458985209465, 0.009957429952919483, -0.011282563209533691, 0.0030137316789478064, 0.0009630879503674805, 0.03007674030959606, 0.013773813843727112, -0.026457233354449272, 0.011168980970978737, -0.011797471903264523, 0.003767164656892419, 0.021399009972810745, 0.013145321980118752, 0.011736894957721233, 0.0022054004948586226, -0.00961668137460947, -0.02329205721616745, 0.005486052017658949, 0.009253215976059437, 0.0031859991140663624, 0.0219290629029274, -0.007515398785471916, -0.003403699491173029, -0.004198779352009296, 0.006231912411749363, -0.009722691960632801, -0.008912467397749424, -0.010820659808814526, -0.02570001408457756, -0.0030364482663571835, 0.022943736985325813, -0.0030250900890678167, 0.0033847689628601074, -0.01210793200880289, -0.005648853722959757, 0.0015655503375455737, -0.001523903221823275, 0.031045978888869286, 0.009692403487861156, 0.010479911230504513, 0.01868816465139389, -0.01655280776321888, 0.00929107703268528, -0.0276839267462492, -0.0035986832808703184, -0.0001655233500059694, -0.0004768113431055099, 0.009828702546656132, -0.010010435245931149, 0.004713688511401415, -0.017022283747792244, -0.03295417129993439, -0.015613855794072151, 0.013501214794814587, 0.000821582623757422, -0.01210793200880289, -0.02121727727353573, 0.007750136777758598, -0.020202603191137314, 0.004592533223330975, -0.011774756014347076, -0.013092316687107086, 0.003513496136292815, -0.007875077426433563, 0.02082352340221405, 0.0015797482337802649, 0.015356401912868023, 0.0013118819333612919, 0.031045978888869286, -0.022004785016179085, 0.01917278580367565, -0.002674876246601343, -0.007776639424264431, 0.005406543612480164, 0.0018722240347415209, -0.0009124489151872694, -0.025033660233020782, -0.01161574013531208, 0.00910177268087864, 0.011343141086399555, 0.031924352049827576, 0.0008334142039529979, 0.002788458950817585, 0.0055542015470564365, -0.009934713132679462, -0.03047049418091774, 0.004706116393208504, -0.015083802863955498, -0.0021277854684740305, 0.007844788953661919, -0.006008532829582691, -0.016855696216225624, -0.010071013122797012, -0.000821582623757422, -0.012070070952177048, -0.019051630049943924, -0.007276874966919422, -0.004838629625737667, 0.008836746215820312, -0.013296766206622124, 0.016779974102973938, -0.0056337094865739346, -0.0025310046039521694, 0.00022775727848056704, -0.025881746783852577, 0.019960293546319008, 0.01923336274921894, -0.00961668137460947, -0.00713678915053606, -0.018067246302962303, 0.03661911189556122, 0.00600096071138978, -0.03419601172208786, -0.009737836197018623, -0.001595839043147862, 0.021186988800764084, -0.009631825610995293, -0.003006159560754895, -0.0030705230310559273, 0.0032446833793073893, 0.005770009011030197, -0.0009805986192077398, 0.006955056916922331, -0.010207312181591988, -0.007416960317641497, 0.016416508704423904, 0.0025991543661803007, 0.01929393969476223, -0.002788458950817585, -0.006387142464518547, 0.011842905543744564, -0.002922865329310298, 0.008571719750761986, -0.0042366404086351395, 0.005622351076453924, -0.010638927109539509, -1.6667692761984654e-05, -0.016098476946353912, 0.023307200521230698, -0.03440803289413452, 0.006137260235846043, 0.002866073977202177, -0.010896381922066212, -0.007507826667279005, -0.01588645577430725, -0.007674414664506912, 0.014447738416492939, 0.007943227887153625, -0.0024212077260017395, -0.020581213757395744, -0.020475203171372414, 0.003538105869665742, -0.016901127994060516, 0.004993859212845564, 0.005667784251272678, -0.003078095382079482, -0.0047401911579072475, -0.01430386770516634, 0.018233833834528923, 0.025518281385302544, 0.005724575836211443, -0.001508758869022131, 0.026760119944810867, -0.015333685092628002, 0.016083331778645515, 0.0035911111626774073, -0.007738778367638588, -0.01791580207645893, -0.0061296881176531315, -0.0033279776107519865, -0.009041194804012775, 0.009699976071715355, 0.02138386480510235, -0.01830955594778061, -0.007742564659565687, -0.008571719750761986, 0.002052063588052988, -0.017007138580083847, -0.008700446225702763, 0.017582625150680542, -0.004263143055140972, -0.003918608650565147, 0.04252542182803154, 0.0010676787933334708, -0.0016838657902553678, 0.0026086196303367615, -0.00383531441912055, -0.010230029001832008, 0.0126076964661479, -0.006008532829582691, -0.010169451124966145, 0.03465034067630768, -0.012168509885668755, -0.02783537097275257, -0.005951741710305214, 0.004308576229959726, -0.0012929515214636922, -0.025745445862412453, -0.003274972317740321, 0.0016535770846530795, -0.01891533099114895, 0.027714215219020844, -0.0012266947887837887, -0.007435890845954418, 0.015447268262505531, -0.02251969277858734, 0.014478027820587158, 0.00901090633124113, -0.006610522046685219, 0.008571719750761986, 0.008132532238960266, 0.029895007610321045, 0.015242818742990494, 0.0059820301830768585, -0.0072238692082464695, -0.004066266119480133, -0.013349771499633789, 0.015144380740821362, -0.016870839521288872, -0.018718454986810684, 0.011381002143025398, 0.02400384284555912, 0.009222927503287792, 0.002835785271599889, -0.0033904481679201126, -0.01659824140369892, 0.027426471933722496, -0.02756277285516262, 0.0019337480189278722, -0.005610993131995201, -0.004978714976459742, 0.031712330877780914, 0.011085686273872852, -0.008124959655106068, -0.018430711701512337, -0.005830586422234774, -0.022443972527980804, 0.020959822461009026, 0.02404927648603916, 0.01503837015479803, 0.009412232786417007, 0.018597299233078957, 0.03174262121319771, 0.004092768765985966, -0.019521106034517288, 0.008230971172451973, 0.012145793065428734, 0.020278325304389, -0.01285000704228878, -0.015348829329013824, 0.0008873660117387772, -0.012584979645907879, 0.006027463357895613, -0.022125938907265663, 0.010343612171709538, -0.006440147757530212, -0.03222724050283432, 0.013501214794814587, -0.007110286504030228, 0.0037482341285794973, -0.011221986263990402, 0.004978714976459742, 0.007011848036199808, 0.008511141873896122, -0.0024704269599169493, -0.006671099457889795, 0.01731002703309059, 0.006440147757530212, -0.013205899856984615, -0.007727419957518578, -0.005213452968746424, 0.01714343950152397, -0.005455763079226017, 0.013198327273130417, 0.019157640635967255, -0.01791580207645893, -0.0279565267264843, -0.0001329865917796269, -0.008397558704018593, 0.008965473622083664, 0.0026029404252767563, -0.012918156571686268, -0.02148987539112568, 0.0006265987176448107, -0.013296766206622124, -0.004490308929234743, 0.01644679717719555, -0.008314264938235283, -0.006534799933433533, 0.002385239815339446, 0.03458976373076439, 0.0178097914904356, 0.00011730979167623445, -0.02258027158677578, -0.012176081538200378, 0.01820354536175728, 0.008836746215820312, 0.008980617858469486, -0.001989593030884862, -0.0071027143858373165, -0.003309047082439065, -0.01074493769556284, 0.01715858280658722, 0.022337961941957474, 0.006114543415606022, -0.007859933190047741, -0.014197856187820435, 0.00456224475055933, -0.031591176986694336, -0.022459115833044052, 0.009298649616539478, 0.006432575639337301, 0.026881275698542595, 0.016431652009487152, 0.0017813576851040125, -0.023261768743395805, 0.016371075063943863, -0.009154777973890305, -0.011608167551457882, 0.0035116032231599092, 0.002400384284555912, -0.015613855794072151, -0.011948916129767895, -0.009132061153650284, 0.017022283747792244, -0.0009739729575812817, 0.007500254549086094, 0.007466179318726063, 0.006353067699819803, 0.008912467397749424, 0.014735481701791286, 0.014833920635282993, -0.011085686273872852, 0.013849535956978798, 0.005652640014886856, 0.0101391626521945, -0.006216768175363541, -0.003911036066710949, 0.025442559272050858, -0.003734982805326581, 0.0071822223253548145, 0.01208521518856287, 0.005936597008258104, -0.006970201153308153, 0.008859462104737759, -0.005667784251272678, 0.0050090039148926735, -0.004789410158991814, 0.014508316293358803, 0.006625666283071041, -0.027759648859500885, 0.0016232882626354694, 0.0030137316789478064, -0.005084725562483072, -0.009669686667621136, 0.006913409568369389, -0.01820354536175728, 0.022655993700027466, -0.03552871569991112, -0.011646028608083725, -0.0186275877058506, 0.021913917735219002, -0.026154344901442528, -0.0069853453896939754, -0.0017567480681464076, 0.025079093873500824, -0.005770009011030197, 0.016295352950692177, 0.003112170146778226, -0.012759140692651272, 0.007273088674992323, 0.012797001749277115, -0.02011173777282238, 0.006318992935121059, 0.016567952930927277, 0.008003804832696915, 0.011736894957721233, 0.005027934443205595, 0.004418373107910156, 0.0003471375966910273, -0.008844317868351936, -0.023655522614717484, 0.011941343545913696, 0.0008428794099017978, 0.004937068093568087, -0.009518243372440338, -0.00961668137460947, -0.00559206260368228, -0.013296766206622124, -0.01868816465139389, -0.01016187947243452, 0.014977792277932167, 0.018445855006575584, -0.009147205390036106, 0.01628020964562893, -0.003952683415263891, -0.023307200521230698, -0.0033355497289448977, -0.0008589703356847167, -0.0011112189386039972, 0.003172747790813446, 0.004467592108994722, 0.009927141480147839, -0.0006209195707924664, 0.003854244714602828, -0.001151919481344521, 0.012077643536031246, -0.000524847419001162, -0.0001730955409584567, -0.01323618832975626, -0.019324230030179024, 0.019415095448493958, -0.008314264938235283, -0.011115974746644497, 0.014985363930463791, -0.009071484208106995, 0.0235646553337574, -0.011267418973147869, -0.0008963579894043505, -0.024427885189652443, -0.013009022921323776, 0.022383393719792366, 0.002994801150634885, 0.011487012729048729, 0.008268831297755241, 0.013198327273130417, 0.006254629231989384, -0.0008400398655794561, -0.03989029675722122, 0.0015541920438408852, -0.025896890088915825, 0.016477085649967194, -0.012319953180849552, -0.0033999134320765734, 0.012251803651452065, -0.009366799145936966, -0.004259356763213873, -0.0008277350571006536, 0.0018930475926026702, -0.012531974352896214, 0.01573501154780388, -0.010903953574597836, -0.012812145985662937, -0.015629000961780548, 0.0007515398901887238, -0.009063911624252796, -0.01705257222056389, -0.008889751508831978, -0.0023871329613029957, 0.01628020964562893, -0.019823994487524033, -0.005470907315611839, 0.011032680980861187, 0.035377271473407745, -0.012554691173136234, -0.009169922210276127, 0.018567010760307312, -0.02626035548746586, 0.01210793200880289, -0.01321347150951624, -0.02247426100075245, 0.0017643203027546406, 0.01509894710034132, -0.007981088012456894, -0.040556650608778, 0.003441560547798872, -0.0036933356896042824, 0.01238810271024704, 0.01611362025141716, 0.01367537584155798, 0.0009881708538159728, 0.02839571237564087, 0.009828702546656132, 0.025169959291815758, 0.005838158540427685, -0.009298649616539478, -0.008670157752931118, -0.00703077856451273, 0.011865622363984585, -0.03383254632353783, -0.018733598291873932, 0.009275932796299458, -0.013349771499633789, 0.0031878920271992683, -0.0018372026970610023, -0.010040724650025368, -0.0276839267462492, -0.0012815932277590036, -0.000845245725940913, -0.00642500352114439, 0.02000572718679905, 0.002850929507985711, 0.008132532238960266, 0.008435419760644436, 0.0036535817198455334, 0.005747292190790176, -0.008730735629796982, -0.006277345586568117, 0.009624253958463669, -0.02164131961762905, 0.025185104459524155, 0.004774265922605991, -0.03758835047483444, 0.0013620477402582765, -0.010010435245931149, 0.011926199309527874, 0.015977321192622185, 0.008049238473176956, -0.02306489087641239, -0.0027752076275646687, 0.03465034067630768, 0.007965943776071072, 0.007208724971860647, -0.009389515966176987, 0.014546177349984646, -0.022322816774249077, -0.010366328060626984, 0.015000509098172188, -0.032802727073431015, 0.012259376235306263, -0.006485580932348967, 0.004369153641164303, 0.002826320007443428, 0.008556574583053589, 0.002440138254314661, 0.012297237291932106, 0.013031739741563797, -0.015469984151422977, -0.004024619236588478, 0.020293470472097397, -0.014788486994802952, 0.0016762935556471348, -0.005141517147421837, -0.002489357488229871, -0.0022792292293161154, -0.012660701759159565, 0.009904424659907818, -0.004732619039714336, 0.01550784520804882, 0.005834372714161873, 0.004990073386579752, -0.01291058398783207, 0.027259884402155876, 0.010366328060626984, 0.008367270231246948, 0.018385278061032295, 0.008094671182334423, 0.0003054905391763896, 0.0004216763481963426, 0.013773813843727112, 0.001974448561668396, -0.00683768792077899, 0.0026502665132284164, 0.006924767978489399, -0.0036308651324361563, -0.02772936038672924, 0.008306692354381084, 0.012433536350727081, 0.011123547330498695, -0.004675827454775572, -0.01107054203748703, -0.01022245641797781, 0.0029399029444903135, -0.005959313828498125, -0.01721915975213051, 0.0032106086146086454, -0.005607206840068102, 0.0009465237963013351, -0.0004723153542727232, -0.0004041656502522528, 0.020278325304389, 0.03228781744837761, -0.006281131878495216, 0.009556104429066181, -0.011926199309527874, -0.019384806975722313, -0.01550784520804882, -0.002591582015156746, -0.011426434852182865, -0.006860404275357723, 0.018975907936692238, 0.010578349232673645, -0.005777581129223108, 0.004789410158991814, 0.016749683767557144, -0.011100830510258675, 0.00018445382011123002, 0.010283034294843674, 0.006761965807527304, -0.016810262575745583, 0.029289232566952705, 0.009563676081597805, 0.021913917735219002, -0.004210137762129307, -0.006436361465603113, 0.009957429952919483, 0.010707076638936996, -0.005398971494287252, -0.006455291993916035, -0.0015153845306485891, -0.002788458950817585, 0.007700917311012745, -0.022322816774249077, -0.013274049386382103, -0.00040913489647209644, -0.006546158343553543, 0.018294410780072212, 0.00827640388160944, -0.008980617858469486, 0.024700485169887543, -0.004191207233816385, 0.015916744247078896, 0.0034055926371365786, 0.018900185823440552, -0.00022113161685410887, -0.0036024695727974176, -0.01416756771504879, 0.03150030970573425, -0.013751097023487091, 0.008836746215820312, 0.009192639030516148, 0.0018201651982963085, -0.004986287094652653, -0.013183183036744595, -0.0009290130692534149, -0.005739720072597265, -0.00866258516907692, 0.01599246636033058, 0.008155249059200287, 3.845252649625763e-05, 0.015091375447809696, -0.023761533200740814, -0.0014746839879080653, 0.008374841883778572, -0.0055844904854893684, -0.031591176986694336, 0.0074093881994485855, -0.01088123768568039, -0.027502194046974182, -0.010790371336042881, 0.018779031932353973, 0.025003371760249138, 0.007579762488603592, -0.021171843633055687, -0.031712330877780914, -0.0017255127895623446, 0.012047354131937027, 0.01553813461214304, -0.007750136777758598, -0.0014585931785404682, -0.004460019990801811, 0.005486052017658949, 0.0018939940491691232, -0.017400892451405525, 0.005175591912120581, 0.003979186061769724, -0.02674497663974762, 0.006538586225360632, 0.0009630879503674805, 0.015659289434552193, 0.01032846700400114, 0.008480853401124477, 0.0014538605464622378, 0.011320424266159534, -0.009889280423521996, 0.002580223837867379, -0.008321836590766907, 0.009881707839667797, 0.003663046984001994, -0.006671099457889795, 0.0161741990596056, -0.005118800792843103, 7.217243546620011e-05, 0.018385278061032295, -0.00145196751691401, -0.015106519684195518, 0.016810262575745583, -0.02404927648603916, 0.014228145591914654, -0.0014197856653481722, 0.004191207233816385, 0.013531504198908806, 0.012213942594826221, 0.0009219141793437302, -0.006072896532714367, -0.005361110437661409, 0.00953338760882616, -0.015023224987089634, 0.004728832747787237, 0.009518243372440338, -0.0044751642271876335, -0.0042366404086351395, -0.016537662595510483, 0.027502194046974182, -0.009843846783041954, 0.006792254745960236, -0.012675845995545387, 0.002360630314797163, -0.009904424659907818, -0.013705664314329624, -0.017491759732365608, -0.02180790714919567, -0.009737836197018623, -0.016037898138165474, 0.009260788559913635, 0.013001450337469578, 0.01874874345958233, 0.011032680980861187, -0.009086628444492817, -0.02295888029038906, 0.0019649832975119352, 0.0055542015470564365, -0.014591610059142113, -0.014765771105885506, 0.02636636607348919, 0.023852398619055748, -0.003127314615994692, -0.019581682980060577, 0.013311910443007946, -0.013872252777218819, -0.0026786623056977987, 0.011502156965434551, -0.016295352950692177, 0.01202463824301958, -0.0028925766237080097, -0.02324662357568741, -0.004505453165620565, -0.01818840019404888, -0.009631825610995293, -0.019596828147768974, -0.007814500480890274, 0.009624253958463669, 0.0018750636372715235, -0.007170863915234804, -0.008609579876065254, -0.012032209895551205, 0.013380059972405434, 0.018733598291873932, 0.04673555865883827, 0.04294946417212486, -0.003055378794670105, 0.008624725043773651, 0.006883121095597744, -0.030561359599232674, 0.003150031203404069, 0.00040085281943902373, -0.014667332172393799, -0.0027846728917211294, 0.00028892638511024415, -0.011123547330498695, 0.021580742672085762, 0.010775226168334484, -0.01016187947243452, 0.00414956035092473, -0.01661338470876217, 0.011312851682305336, -0.0011320423800498247, 0.0065575167536735535, 0.00025934752193279564, 0.0024363521952182055, -0.011873194016516209, -0.013077172450721264, 0.013327054679393768, 0.0015892133815214038, 0.010502628050744534, -0.013857107609510422, -0.014902070164680481, 0.014561321586370468, 0.025548569858074188, -0.014765771105885506, 0.00021095648116897792, -0.020202603191137314, 0.0008239489397965372, 0.014372017234563828, 0.020959822461009026, 0.0024117424618452787, 0.0022054004948586226, -0.008950328454375267, 0.003608148545026779, -0.010230029001832008, 0.014326583594083786, -0.029788997024297714, -0.013168038800358772, 0.020899245515465736, -0.00040345574961975217, -0.01578044518828392, -0.010063440538942814, 0.009987718425691128, 0.0029891221784055233, 0.009253215976059437, -0.0039678276516497135, -0.008533858694136143, -0.013470926322042942, 0.031803198158741, 0.022004785016179085, -0.019142497330904007, -0.0039299665950238705, -0.008442992344498634, 0.0032484696712344885, -0.002303838962689042, 0.0046644690446555614, 0.021308142691850662, 0.009639398194849491, 0.030349338427186012, 0.012456253170967102, 0.013054455630481243, 0.016946561634540558, -0.01107054203748703, 0.02421586401760578, -0.019869426265358925, -0.005391399376094341, 0.005232383497059345, -0.03107626922428608, -0.02482163906097412, -0.026926707476377487, 0.011343141086399555, -0.0235646553337574, 0.018400421366095543, -0.00641364511102438, -0.01345578208565712, 0.018885042518377304, -0.0016781867016106844, -0.015583567321300507, 0.0046644690446555614, -0.0007543794345110655, -0.013592081144452095, -0.018158111721277237, -0.01044205017387867, -0.009889280423521996, 0.0047401911579072475, -0.014038840308785439, 0.016068188473582268, 0.020081449300050735, 0.00028774322709068656, -0.020626645535230637, 0.008109815418720245, 0.005894950125366449, 0.012948445044457912, -0.013410348445177078, 0.022110795602202415, -0.006485580932348967, -0.0015210637357085943, -0.0020709941163659096, -0.04758364334702492, 0.008405131287872791, 0.00829912070184946, 0.0007221976411528885, 0.02433701977133751, -0.013735952787101269, 0.01720401644706726, -0.0007917671464383602, -0.005296747200191021, -0.012471397407352924, 0.012615269050002098, 0.005330821964889765, 0.023004313930869102, 0.019415095448493958, -0.0049294959753751755, -0.011388573795557022, -0.003657367778941989, 0.0014150530332699418, 0.0005522966384887695, -0.0016147695714607835, -0.0008405130938626826, 0.009768125601112843, 0.02404927648603916, -0.01334219891577959, -0.01743118092417717, 0.023882687091827393, -0.006216768175363541, 0.0031159562058746815, 0.023973554372787476, 0.0017037427751347423, -0.007405601907521486, 0.007935655303299427, -0.007473751902580261, 0.0021107480861246586, -0.008556574583053589, -0.004891634918749332, -0.009306222200393677, 0.02345864474773407, -0.01271370705217123, -7.786637070239522e-06, 0.0076479120180010796, -0.0161741990596056, 0.0013128285063430667, 0.021111266687512398, -0.002326555550098419, 0.001287272316403687, -0.01655280776321888, -0.009344082325696945, -0.0037558062467724085, -0.007806927897036076, 0.0080795269459486, -0.005853303242474794, 0.03407485410571098, -0.006254629231989384, -0.01317561138421297, -0.005319463554769754, 0.00912448950111866, 0.013069599866867065, 0.006621880456805229, 0.00011322790669510141, -0.004925709683448076, -0.006137260235846043, 0.0033525871112942696, -0.0161590538918972, -0.009079055860638618, -0.003964041359722614, 0.00723522761836648, 0.007837217301130295, -0.013819247484207153, 0.0045811752788722515, -0.009730264544487, -0.0030837743543088436, -0.014425022527575493, -0.025881746783852577, -0.0005021308897994459, 0.02379182167351246, 0.014833920635282993, 0.022110795602202415, 0.006951270624995232, 0.013872252777218819, 0.006046393886208534, -0.002534790663048625, 0.018779031932353973, -0.006663527339696884, 0.003752020187675953, -0.00888217892497778, 0.0109645314514637, -0.000900144106708467, -0.003505924018099904, -0.010063440538942814, 0.013251332566142082, 0.0005683875060640275, 0.012054926715791225, -0.044251877814531326, -0.004422158934175968, -0.010487483814358711, -0.008049238473176956, -0.012168509885668755, -0.013804102316498756], "e4eb8e3c-4116-4d81-890a-a1934ed06eb0": [-0.007912866771221161, 0.010888478718698025, -0.01145006250590086, 0.015240751206874847, -0.053132034838199615, -0.028266366571187973, 0.019093837589025497, -0.003104308620095253, -0.0353485569357872, 0.01605192758142948, 0.003936933819204569, 0.05150968208909035, -0.032977428287267685, -0.02698720432817936, -0.02194855362176895, 0.011262868531048298, -0.03765729069709778, 0.04105798900127411, 0.016395116224884987, -0.001774447737261653, 0.06782680004835129, -0.02494366466999054, -0.04776579141616821, 0.015154953114688396, -0.019873814657330513, -0.014148782938718796, 0.004106578882783651, -0.0044770678505301476, -0.035286158323287964, -0.0013103614328429103, 0.017799075692892075, -0.008525148965418339, 0.018532253801822662, -0.004453668836504221, 0.022494537755846977, -0.01995181292295456, -0.024974863976240158, 0.07818489521741867, -0.028281966224312782, 0.013345406390726566, -0.015342148020863533, 0.007889467291533947, 0.015381147153675556, 0.006703902501612902, -0.06714042276144028, 0.03600373864173889, 0.011153670959174633, -0.024974863976240158, 0.014242379926145077, -0.007522878237068653, 0.0054832384921610355, -0.03874925896525383, -0.007784170564264059, 0.02517765760421753, 0.01630152016878128, 0.015739936381578445, 0.005202446598559618, 0.053568821400403976, -0.015568341128528118, -0.02516205795109272, -0.005140048451721668, -0.017736677080392838, 0.010935277678072453, 0.02222934551537037, -0.0028995645698159933, -0.006391911767423153, 0.010833880864083767, -0.00014478323282673955, -0.05241445451974869, -0.007347383536398411, 0.007066591642796993, 0.05487918108701706, -0.02541165053844452, 0.016660308465361595, -0.019655421376228333, 0.004991852678358555, 0.029576728120446205, -0.004726660903543234, 0.023196516558527946, 0.0032076553907245398, -0.02155856415629387, 0.005303843878209591, 0.026862408965826035, 0.0031160081271082163, 0.049294546246528625, 0.007296685129404068, -0.04083959758281708, -0.048608168959617615, -0.019390229135751724, -0.023711301386356354, 0.009546918794512749, -0.01474936492741108, 0.008751342073082924, -0.04551945999264717, -0.001399083761498332, 0.015810133889317513, 0.07157069444656372, 0.0075033786706626415, 0.01585693284869194, -0.04583144932985306, -0.022728530690073967, 0.0118946498259902, -0.07319304347038269, 0.021215375512838364, -0.02360210381448269, -0.018251461908221245, 0.018017468973994255, -0.022494537755846977, -0.006134519353508949, 0.08224077522754669, 0.05101049691438675, -0.0031004087068140507, -0.00305945985019207, 0.03603493794798851, -0.025099661201238632, -0.07138349860906601, -0.003798488061875105, -0.016473114490509033, 0.025786040350794792, -0.04470828175544739, 0.008408152498304844, 0.04367871209979057, 0.03968523070216179, 0.008829339407384396, 0.0018319709924980998, -0.0007955765468068421, -0.012487431988120079, 0.01562293991446495, 0.016956700012087822, 0.02564564347267151, -0.011481261812150478, 0.013462402857840061, -0.006052621640264988, 0.049544140696525574, -0.0011572908842936158, 0.004675962030887604, 0.020809786394238472, 0.053600020706653595, -0.035660549998283386, 0.052695248275995255, -0.04211875796318054, -0.026394423097372055, -0.04963773861527443, 0.018064267933368683, -0.011247268877923489, 0.0156619381159544, -0.030965087935328484, 0.037719689309597015, 0.000826775620225817, 0.004153377376496792, -0.04829617589712143, -0.027938777580857277, 0.04564425349235535, 0.024600474163889885, 0.03531735762953758, -0.004457568749785423, -0.023290114477276802, 0.016410715878009796, 0.01680070534348488, 0.0012460133293643594, 0.028703154996037483, -0.05101049691438675, 0.01269022561609745, 0.003351951250806451, 0.03372620791196823, 0.02221374586224556, 0.04174437001347542, 0.008829339407384396, -0.05194646865129471, 0.02449127845466137, 0.017315490171313286, -0.011247268877923489, 0.013852391391992569, 0.01505355630069971, -0.01338440552353859, -0.03397579863667488, 0.012386035174131393, 0.005346742458641529, -0.0006478684372268617, -0.028671955689787865, 0.006142319180071354, -0.023414909839630127, -0.0174246858805418, -0.0020961882546544075, -0.008314554579555988, 0.014398375526070595, 0.014562170952558517, -0.007452680263668299, 0.025536447763442993, 0.038406066596508026, 0.01901583932340145, -0.004691561684012413, 0.021355770528316498, 0.03310222551226616, 0.015693137422204018, -0.01837625913321972, 0.016691507771611214, 0.016847504302859306, 0.0011748403776437044, 0.02062259241938591, 0.020482195541262627, -0.05369361862540245, -0.04442749172449112, 0.04617463797330856, -0.019561823457479477, -0.01587253250181675, -0.014023986645042896, -0.008782541379332542, 0.014101983979344368, -0.03940443694591522, 0.052008867263793945, -0.031214680522680283, 0.021901754662394524, -0.029342735186219215, -0.02107497863471508, 0.0013093864545226097, -0.005019152071326971, 0.018454255536198616, 0.004902155604213476, -0.005767929833382368, -0.012066244147717953, 0.013774394057691097, 0.01990501396358013, -0.031573470681905746, -0.018267061561346054, -0.02063819207251072, -0.04043400660157204, 0.022603733465075493, -0.01655111275613308, -0.003720490261912346, 0.04536346346139908, 0.012549830600619316, -0.011138072237372398, -0.022853326052427292, -0.025021662935614586, 0.011949247680604458, 0.026098031550645828, 0.00337340054102242, -0.0208565853536129, -0.029514329507946968, 0.01089627854526043, 0.025021662935614586, -0.0024315782357007265, -0.00413777818903327, 0.035691749304533005, 0.019125036895275116, -0.011941447854042053, 0.04099559038877487, 0.022931324318051338, -0.02761118672788143, 0.0011397413909435272, 0.00794016569852829, -0.019561823457479477, -0.020716190338134766, -0.037064507603645325, 0.055659160017967224, -0.012760424055159092, -0.016660308465361595, -0.005136148538440466, -0.04277393966913223, -0.002800117479637265, -0.004083179868757725, -0.004051980562508106, -0.004820257890969515, 0.03965403139591217, -0.01191024947911501, 0.019827015697956085, -0.05035531520843506, 0.006551806814968586, 0.03946683555841446, -0.026378823444247246, -0.01270582526922226, -0.014374976046383381, -0.01789267361164093, -0.02177695743739605, -0.003895985195413232, 0.043397922068834305, 0.027767181396484375, 0.032509442418813705, -0.0019489675760269165, -0.004231375176459551, -0.020014209672808647, -0.0008769866544753313, 0.022260544821619987, -0.02625402621924877, -0.015576140955090523, 0.009071133099496365, 0.0076710740104317665, -0.03790688142180443, -0.02626962587237358, -0.006606405135244131, -0.01360279880464077, 0.017159493640065193, 0.026176027953624725, 0.024647273123264313, -0.016925500705838203, -0.005674332845956087, -0.013883590698242188, -0.004960653837770224, -0.004691561684012413, -0.01725309155881405, -0.026191627606749535, 0.030996287241578102, -0.004675962030887604, 0.038156475871801376, -0.005526137072592974, 0.03587894141674042, 0.027969975024461746, -0.011754253879189491, -0.014039586298167706, 0.045675452798604965, 0.0011962897842749953, 0.008197558112442493, -0.010256697423756123, -0.009804311208426952, 0.011013275012373924, 0.006852098274976015, -0.039529234170913696, -0.021620962768793106, -0.004867056384682655, 0.025318054482340813, 0.022088948637247086, -0.05431760102510452, 0.015108155086636543, 0.03219744935631752, -0.041619572788476944, 0.032041456550359726, -0.002373080002143979, -0.017112696543335915, -0.03943563625216484, -0.034537382423877716, -0.024990463629364967, -0.024616073817014694, -0.027330394834280014, -0.02155856415629387, -0.02584843896329403, -0.02266613207757473, -0.037251703441143036, 0.0012148142559453845, -0.04208755865693092, -0.017752276733517647, 0.03062189742922783, -0.027798380702733994, 0.009234927594661713, 0.025957634672522545, -0.0037380398716777563, -0.02174575999379158, 0.015271949581801891, -0.029857520014047623, 0.00030004739528521895, 0.0009866709588095546, -0.03272783383727074, 0.0011845900444313884, 0.0030029115732759237, 0.03656532242894173, -0.029873119667172432, -0.019312230870127678, -0.038874056190252304, 0.014936559833586216, -0.013283008709549904, -0.010287896730005741, -0.014000587165355682, -0.027034003287553787, -0.027018403634428978, 0.009024334140121937, 0.029607927426695824, -0.0029327135998755693, 0.003925234545022249, 0.022978123277425766, 0.00028981021023355424, -0.008353553712368011, 0.02676881104707718, 0.05391201004385948, -0.015591740608215332, -0.028406763449311256, -0.004539465997368097, 0.035910140722990036, -0.009359723888337612, -0.010256697423756123, 0.022276144474744797, -0.007565776817500591, 0.021230975165963173, -0.018906643614172935, -0.021870555356144905, 0.025021662935614586, -0.01030349638313055, 0.025240056216716766, -0.01744028553366661, 0.0019245932344347239, 0.003137457650154829, -0.03034110553562641, 0.028703154996037483, -0.01701909862458706, -0.015794534236192703, -0.026098031550645828, 0.024522477760910988, -0.0025934234727174044, -0.003244704334065318, 0.0068325987085700035, -0.004192376509308815, 0.011777653358876705, 0.006629804614931345, 0.02176135964691639, 0.027533188462257385, 0.013556000776588917, -0.03509896621108055, -0.005639233626425266, -0.02290012501180172, -0.013376605696976185, 0.04261794313788414, -0.014343777671456337, 0.022853326052427292, -0.00998370535671711, 0.01565413922071457, 0.054068006575107574, 0.004282073583453894, 0.022603733465075493, 0.02558324672281742, -0.03849966451525688, -0.028890348970890045, 0.006524507887661457, 0.05640793591737747, -0.009757512249052525, 0.048857759684324265, -0.004742260091006756, 0.018454255536198616, 0.07013553380966187, 0.023867296054959297, -0.020934583619236946, -0.006442610174417496, 0.011504661291837692, 0.0033344016410410404, -0.00806496199220419, -0.013548200950026512, 0.006356812547892332, -0.03313342481851578, -0.0008150759967975318, -0.030965087935328484, 0.01497555896639824, 0.010482891462743282, 0.030294306576251984, 0.02904634363949299, 0.019359029829502106, 0.0025212757755070925, -0.017767876386642456, -0.04012201726436615, -0.04832737520337105, -0.004886555951088667, 0.013345406390726566, 0.008408152498304844, 0.002332131378352642, 0.014585570432245731, -0.01566973887383938, 0.01078708190470934, -0.007195287849754095, -0.009897908195853233, -0.002142986748367548, -0.03179186210036278, -0.002883964916691184, -0.004586264956742525, -0.0027279695495963097, -0.006325613707304001, 0.04601864516735077, 0.006380212027579546, 0.009336324408650398, -0.03332061693072319, -0.01832946017384529, -0.0021975853014737368, 0.007121189963072538, -0.048171378672122955, 0.007351283449679613, 0.015131553635001183, 3.302715049358085e-05, -0.006610305048525333, -0.009453321807086468, 0.0118946498259902, -0.0075033786706626415, -0.004313272889703512, 0.000527459429576993, 0.004461468663066626, -0.004266474395990372, -0.014421775005757809, -0.029639126732945442, -0.022291742265224457, 0.02718999795615673, -0.010974276810884476, 0.004746160004287958, 0.006271015387028456, -0.009195929393172264, -0.011754253879189491, 0.045457061380147934, -0.01906263828277588, 0.01903143897652626, 0.009102331474423409, 0.004036380909383297, -0.0353485569357872, 0.017346689477562904, -0.014811763539910316, -0.015256350859999657, -0.02854715846478939, 0.020700590685009956, -0.021698961034417152, 0.04349151998758316, 0.01191804837435484, 0.01611432433128357, -0.021184176206588745, -0.029779521748423576, -0.007823169231414795, -0.012776023708283901, -0.0072654858231544495, -0.011270667426288128, 0.02470967173576355, -0.01992061361670494, -0.0037633890751749277, -0.0035391456913203, -0.006719502154737711, -0.028016773983836174, 0.015435745008289814, 0.01212864276021719, -0.0027357693761587143, 0.00815076008439064, -0.0044770678505301476, -0.029639126732945442, 0.023617703467607498, 0.01078708190470934, -0.0181734636425972, -0.009929107502102852, 0.009242727421224117, -0.0003149157273583114, -0.034350186586380005, -0.017346689477562904, 0.022510137408971786, 0.004886555951088667, 0.010826081037521362, 0.0256300438195467, -0.015162752941250801, -0.012893020175397396, 0.027704782783985138, 0.007230387069284916, 0.053787216544151306, -0.03572294861078262, 0.019437028095126152, -0.016909901052713394, -0.00791676715016365, 0.014897560700774193, 0.030263107270002365, -0.0321662537753582, 0.03896765038371086, -0.005923925433307886, 0.011395464651286602, -0.0211061779409647, 0.027595587074756622, -0.01098207663744688, -0.003952533472329378, -0.0012284638360142708, -0.0385308638215065, -0.0011953148059546947, -0.002679221099242568, -0.045675452798604965, -0.01585693284869194, 0.009788711555302143, 0.008267756551504135, 0.023867296054959297, 0.014086385257542133, -0.022244945168495178, 0.0037750888150185347, -0.015583940781652927, 0.022322941571474075, -0.004453668836504221, 0.020996980369091034, 0.005093249958008528, -0.02787637896835804, 0.0435539148747921, 0.00794016569852829, -0.01971781812608242, 0.03416299447417259, 0.000797039014287293, 0.028001174330711365, -0.02308731898665428, -0.016457514837384224, 0.02517765760421753, -0.0326654389500618, 0.00011072017514379695, -0.020435398444533348, 0.011777653358876705, -0.015123754739761353, -0.03918604552745819, -0.022478938102722168, -0.006567406468093395, 0.025770440697669983, 0.003090658923611045, 0.022744130343198776, 0.014320378191769123, -0.0006078945589251816, -0.03168266639113426, 0.028001174330711365, -0.017565082758665085, 0.006076021119952202, 0.008790341205894947, -0.008665544912219048, -0.0018465955508872867, 0.014866362325847149, 0.026472419500350952, -0.027501989156007767, -0.018501054495573044, 0.025442849844694138, 0.012861820869147778, 0.010818281210958958, -0.020092207938432693, -0.005335042718797922, -0.010514089837670326, -0.008946336805820465, 0.014538771472871304, -0.013680797070264816, 0.02202655002474785, -0.005093249958008528, -0.022135747596621513, 0.045238666236400604, 0.0176742784678936, -0.011840051040053368, 0.009453321807086468, -0.019359029829502106, 0.045675452798604965, -0.0020201404113322496, 0.0263008251786232, 0.009601516649127007, 0.004071480128914118, -0.029545528814196587, -0.031823061406612396, 0.0013903090730309486, -0.012393835000693798, -0.005678232759237289, 0.013127013109624386, -0.02694040536880493, 0.021839356049895287, -0.020279401913285255, 0.014203381724655628, 0.02355530671775341, -0.0030653097201138735, -0.03104308433830738, -0.024584876373410225, 0.005565136205404997, 0.005358442198485136, 0.03921724483370781, -0.009812111034989357, -0.0060877203941345215, -0.034350186586380005, 0.007261585909873247, 0.034818172454833984, 0.007074391469359398, -0.05060490965843201, 9.134261927101761e-05, 0.00022534023446496576, 0.013750994578003883, -0.0065713063813745975, -0.043366722762584686, -0.017986269667744637, -0.01008510310202837, 0.023851696401834488, -0.004964553751051426, 0.037532493472099304, -0.015022356994450092, -0.01551374327391386, 0.012877420522272587, 0.02720559760928154, 0.024148087948560715, 0.015357747673988342, 0.01703469827771187, 0.0010471191490069032, 0.03310222551226616, -0.021480567753314972, -0.034131795167922974, 0.011840051040053368, 0.006442610174417496, 1.0701833161874674e-05, -0.022822126746177673, 0.012120842933654785, -0.0049840533174574375, 0.003679541638121009, -0.020045408979058266, -0.014562170952558517, -0.027813980355858803, -0.0263008251786232, 0.013548200950026512, 0.04015321657061577, -0.012674626894295216, -0.0015765285352244973, 0.01279162336140871, -0.002316531725227833, -0.02811037190258503, 0.0043951706029474735, -0.013501401990652084, 0.005140048451721668, 0.017159493640065193, -0.01609872467815876, 0.010607687756419182, -0.0072030876763165, -0.009968106634914875, 0.02151176519691944, -0.01878184638917446, -0.023929694667458534, -0.022073348984122276, 0.0029366135131567717, -0.02084098570048809, 0.028625156730413437, 0.030200710520148277, -0.011075673624873161, -0.03291502967476845, 0.015123754739761353, 0.011301866732537746, 0.0068208989687263966, 0.005054250825196505, 0.0033597510773688555, 0.013212810270488262, -0.01031909603625536, -0.0007131914608180523, 0.007518978323787451, -0.007760771084576845, -0.008470550179481506, 0.010053903795778751, -0.01675390638411045, 0.03472457826137543, -0.0035742446780204773, -0.028671955689787865, -0.02988871932029724, -0.010420492850244045, 0.008236557245254517, -0.008696743287146091, 0.02157416380941868, -0.0035137964878231287, 0.02495926432311535, 0.0002006003342103213, -0.026581617072224617, -0.0018475705292075872, -0.0006322688423097134, -0.03622213378548622, -0.007983065210282803, -0.0007897267350926995, 0.012846221216022968, -0.024881266057491302, -0.0018163714557886124, -0.01392258983105421, 0.02672201208770275, -0.027595587074756622, 0.013142612762749195, 0.024179287254810333, 0.027330394834280014, -0.0046720621176064014, 0.003582044504582882, 0.03235344588756561, 0.06695322692394257, -0.024647273123264313, 0.019561823457479477, 0.0016135774785652757, 0.006442610174417496, -0.008096161298453808, 0.010350295342504978, 0.01508475560694933, -0.0011075673392042518, 0.015989528968930244, 0.013322007842361927, 0.018485454842448235, 0.0027611185796558857, 0.010482891462743282, -0.008306754752993584, -0.033195823431015015, -0.03357021138072014, 0.021418169140815735, 0.033632609993219376, -0.006645404268056154, 0.02218254655599594, 0.037969280034303665, 0.01495995931327343, 0.028437962755560875, 0.012744824402034283, 0.0058225286193192005, 0.012058444321155548, -0.004675962030887604, -0.049512941390275955, 0.0181734636425972, -0.02105937898159027, -0.023040521889925003, -0.001441982458345592, -0.04508266970515251, 0.005908325780183077, -0.007897267118096352, 0.051540881395339966, -0.004968453664332628, -0.025474049150943756, -0.0037302400451153517, 0.0036951410584151745, 0.03179186210036278, -0.02422608621418476, -0.01212864276021719, 0.0013084114762023091, -0.009149130433797836, 0.0010909928241744637, -0.016644708812236786, -0.009141330607235432, 0.005912225693464279, 0.005299943964928389, -0.047017015516757965, 0.028734352439641953, 0.0073434836231172085, 0.013166012242436409, -0.025084061548113823, -0.013563800603151321, -0.0020844885148108006, 0.019390229135751724, 0.011395464651286602, 0.0070938910357654095, 0.0030302107334136963, -0.03213505446910858, 0.03921724483370781, -0.014164382591843605, -0.010950877331197262, -0.015022356994450092, 0.0014429574366658926, 0.010638886131346226, -0.008532948791980743, 0.004118278622627258, 0.020700590685009956, -0.013189411722123623, 0.01973341777920723, -0.04898255690932274, 0.00804936233907938, 0.04467708244919777, -0.02695600502192974, 0.022556934505701065, 0.029732724651694298, -0.000691254623234272, -0.022135747596621513, -0.03491177037358284, 0.02013900689780712, -0.009273926727473736, 0.01996741071343422, -6.666366243734956e-05, 0.013711996376514435, -0.03459978103637695, 0.03491177037358284, 0.0037711889017373323, -0.03238464519381523, -0.019109437242150307, -0.005081550218164921, 0.015279749408364296, -0.0034884472843259573, 0.010974276810884476, -0.023914095014333725, 0.016005128622055054, 0.01765867881476879, -0.001126091810874641, -0.03247824311256409, -0.015295349061489105, 0.009055533446371555, -0.03313342481851578, 0.028203967958688736, -0.016161123290657997, 0.005366242025047541, -0.0046720621176064014, 0.027735982090234756, 0.010654485784471035, 0.032946228981018066, 0.006715602241456509, -0.025723641738295555, -0.0035293959081172943, -0.018033068627119064, -0.01812666654586792, 0.009039933793246746, 0.005647033452987671, 0.006481608841568232, -0.001430282834917307, -0.018859844654798508, 0.0012791623594239354, 0.007008093409240246, -0.02129337191581726, -0.02723679691553116, -0.01923423260450363, -0.005354542285203934, 0.004223575349897146, -0.03210385516285896, -0.0010753932874649763, 0.019842615351080894, 0.02718999795615673, -0.001275262446142733, -0.0470794141292572, -0.009905708022415638, 0.022494537755846977, -0.017830274999141693, -0.02581723965704441, -0.003973982762545347, -0.010560888797044754, -0.0088371392339468, -0.015583940781652927, -0.03971643000841141, -0.00509714987128973, -0.01786147430539131, -0.006855998188257217, -0.02586403861641884, -0.012635627761483192, -0.023071719333529472, 0.005849827546626329, -0.03105868399143219, -0.04533226415514946, -0.020045408979058266, 0.02332131192088127, -0.03631572797894478, 0.014000587165355682, 0.005108849611133337, 0.005569036118686199, 0.04502027481794357, 0.011964847333729267, 0.005728931166231632, -0.005276544485241175, -0.021402569487690926, 0.018672648817300797, 0.006048721726983786, 0.03225984796881676, -0.0011670405510812998, -0.0019284931477159262, -0.022042149677872658, 0.009897908195853233, 0.0005615834379568696, -0.00368734123185277, 0.00646600965410471, 0.0029697625432163477, -0.02290012501180172, -0.004484867677092552, 0.02155856415629387, 0.027564387768507004, 0.0028566657565534115, -0.012776023708283901, 0.007955765351653099, 0.00039998197462409735, -0.024896865710616112, 0.05553436279296875, -0.01234703604131937, -0.006001923233270645, 0.003734139958396554, -0.05369361862540245, -0.03169826418161392, -0.007877768017351627, 0.007511178497225046, 0.032790232449769974, -0.02561444602906704, -0.0076593742705881596, -0.03225984796881676, -0.009741912595927715, 0.0430547297000885, 0.0034279990941286087, -0.009266126900911331, 0.006037021987140179, 0.0393732413649559, 0.004839757457375526, -0.012799423187971115, -0.007405881769955158, 0.023742500692605972, -0.012924219481647015, 0.01973341777920723, 0.009266126900911331, 0.008119560778141022, 0.0016847503138706088, -0.014406175352633, 0.010592088103294373, 0.008930737152695656, -0.02928033657371998, 0.012167641893029213, -0.0185946524143219, 0.006633704528212547, -0.006961294915527105, -0.0024003791622817516, -0.015560541301965714, -0.0330086275935173, -0.008930737152695656, 0.0007404906791634858, -0.0002302150969626382, -0.0024978762958198786, -0.020466597750782967, -0.002515425905585289, -0.0030438601970672607, -0.010475091636180878, 0.0048280577175319195, -0.03238464519381523, 0.0034260491374880075, 0.0041611772030591965, 0.003441648557782173, 0.015443544834852219, -0.010514089837670326, -0.013556000776588917, -0.01041269302368164, -0.01612992398440838, 0.028671955689787865, -0.01656671240925789, 0.007986964657902718, -0.01747148483991623, 0.017268691211938858, -0.013641797937452793, -0.01439057569950819, -0.0018105217022821307, -0.007195287849754095, -0.00464086327701807, 0.007858267985284328, 0.002404279075562954, -0.008696743287146091, 0.024553677067160606, 0.010568688623607159, 0.03406939655542374, 0.03397579863667488, 0.021449368447065353, 0.005455939099192619, 0.014632368460297585, -0.0045433659106493, -0.021386969834566116, -0.021121777594089508, 0.006040921900421381, 0.017346689477562904, 0.02853155881166458, 0.006855998188257217, -0.03606613725423813, -0.030918288975954056, 0.011294066905975342, -0.013992787338793278, -0.017799075692892075, -0.023430509492754936, 0.010170900262892246, -0.0009832584764808416, 0.007721772417426109, 0.015022356994450092, 0.010865080170333385, 0.01700349897146225, 0.02606683224439621, -0.03497416898608208, -0.01085728034377098, 0.017736677080392838, -0.004753959830850363, -0.012315836735069752, -0.04492667689919472, 0.008751342073082924, -0.06205497309565544, -0.030965087935328484, 0.0038608862087130547, 0.016878701746463776, 0.006126719526946545, -0.005865427199751139, 0.0029210138600319624, -0.021371370181441307, -0.007979164831340313, -0.006107219960540533, 0.005198546685278416, -0.005752330645918846, 0.0019684669096022844, 0.03665892034769058, -0.01953062415122986, 0.022042149677872658, -0.02313411794602871, 0.0028664155397564173, -0.003570344764739275, -0.01074808370321989, 0.006610305048525333, -0.01744028553366661, 0.061274994164705276, 2.1708345229853876e-05, 0.015092555433511734, 0.061992574483156204, -0.036627721041440964, 0.04742260277271271, -0.010576488450169563, -0.007070491556078196, 0.025115258991718292, -0.003817987395450473, -0.013992787338793278, 0.008345753885805607, 0.012409434653818607, -0.023945294320583344, 0.015732135623693466, -0.008228757418692112, 0.01268242672085762, 0.02676881104707718, 0.00737468246370554, 0.00730058504268527, 0.001316211186349392, 0.0037380398716777563, 0.006150118540972471, -0.00775687163695693, 0.010147500783205032, -0.016582312062382698, 0.0016282020369544625, 0.012963217683136463, -0.004707161337137222, -0.01358719915151596, 0.008915137499570847, -0.022104548290371895, 0.010295696556568146, 0.015357747673988342, 0.0035410956479609013, -0.01451537199318409, -0.002817666856572032, -0.0021468866616487503, 0.0881062000989914, 0.016863103955984116, -0.0027552687097340822, 0.016831904649734497, 0.015958329662680626, 0.006867697462439537, -0.006949595175683498, 0.04140118137001991, 0.03360141068696976, 0.007542377803474665, -0.01968662068247795, -0.001779322512447834, 0.0066649033688008785, 0.0380316786468029, 0.008642145432531834, -0.005814728792756796, 0.03235344588756561, -0.002942463383078575, 0.005448139272630215, -0.004652563016861677, -0.02332131192088127, 0.0023886796552687883, 0.013462402857840061, -0.026924805715680122, -0.02244773879647255, -0.031573470681905746, 0.028812350705266, -0.010451692156493664, -0.02155856415629387, 0.0013815342681482434, 0.007986964657902718, -0.005319443065673113, 0.016629109159111977, 0.018625851720571518, -0.015334348194301128, 0.02313411794602871, 0.008322354406118393, -0.006957395002245903, -0.0009320725221186876, 0.011247268877923489, -0.0006220316863618791, -0.013836792670190334, -0.011223869398236275, -0.006727301981300116, -0.012939819134771824, 0.013454603962600231, 0.0028391163796186447, 0.012612228281795979, -0.00840035267174244, 0.00374388974159956, 0.0031998557969927788, -0.008298955857753754, -0.0076827737502753735, -0.006508908234536648, -0.008813740685582161, 0.0069105965085327625, -0.0010539439972490072, -0.01815786398947239, -0.029061943292617798, 0.006025322247296572, -0.013361006043851376, 0.01878184638917446, 0.0003044347686227411, -0.06289734691381454, -0.020731789991259575, 0.005116649437695742, -0.000851637392770499, -0.009289526380598545, -0.0065050083212554455, -0.007639874704182148, -0.01787707395851612, -0.00280791730619967, -0.014913160353899002, 0.012854021042585373, -0.0004943104577250779, 0.016941100358963013, 0.02809477224946022, -0.005845927633345127, 0.0006537182489410043, -0.02399209327995777, -0.009952506981790066, 0.01121606957167387, 0.007234286982566118, -0.001256737974472344, -0.004523866809904575, 0.005440339911729097, 0.013228409923613071, -0.0032700535375624895, 0.0036268930416554213, -0.04308592900633812, 0.0072654858231544495, 0.02539605088531971, 0.015264149755239487, -0.010007104836404324, -0.023399310186505318, -0.013088013976812363, -0.008532948791980743, 0.008704543113708496, 0.007382482290267944, -0.005502738058567047, -0.009562518447637558, 0.003722440218552947, 0.01653551310300827, -0.007464380003511906, 0.013306408189237118, -0.018688248470425606, -0.030200710520148277, 0.006142319180071354, -0.01392258983105421, -0.01291641965508461, 0.004340572282671928, 0.0011124422308057547, -0.014991158619523048, -0.0025232257321476936, 0.012737024575471878, -0.020903384312987328, -0.009617116302251816, 0.0044731684029102325, 0.012526431120932102, 0.019655421376228333, -0.0070821912959218025, -0.00951571948826313, -0.014694767072796822, 0.02173016034066677, 0.02878115139901638, 0.0179238710552454, 0.016644708812236786, 0.023243315517902374, -0.01612992398440838, 0.0029210138600319624, 0.015381147153675556, 0.005705531686544418, -0.020263802260160446, 0.018501054495573044, 0.02474087104201317, 0.018641451373696327, 0.011364265345036983, -0.03747009485960007, -0.023414909839630127, -0.011660655960440636, -0.015045756474137306, -0.013197211548686028, -0.006778000388294458, -0.0069105965085327625, 0.0011455912608653307, 0.014382775872945786, -0.008119560778141022, 0.028500359505414963, 0.022744130343198776, -0.03154227137565613, -0.00560023495927453, 0.00024654585286043584, -0.00802596379071474, -0.0048163579776883125, 0.00048431698814965785, -0.012651227414608002, -0.02105937898159027, -0.009656115435063839, -0.004231375176459551, -0.010560888797044754, 0.020326200872659683, 0.0029327135998755693, 0.007401981856673956, -0.03213505446910858, -0.002817666856572032, 0.0011085423175245523, -0.0017461735988035798, -0.031074283644557, -0.013774394057691097, 0.009195929393172264, -0.0035215963143855333, 0.016878701746463776, -0.015326548367738724, -0.004344472195953131, -0.0059473249129951, -0.0048280577175319195, 0.009008734486997128, -0.02063819207251072, 0.02467847242951393, -0.019390229135751724, -0.024522477760910988, -0.04483307898044586, -0.011606058105826378, 0.018313860520720482, 0.017050297930836678, -0.004730560816824436, -0.022853326052427292, -0.019437028095126152, 0.007518978323787451, -0.021620962768793106, 0.0024081789888441563, -0.027829580008983612, -0.013930389657616615, 0.02221374586224556, 0.008665544912219048, 0.006614204961806536, -0.00792456604540348, -0.003353901207447052, 0.021620962768793106, -0.010724684223532677, -0.009328525513410568, 0.015989528968930244, 0.01270582526922226, -0.024132488295435905, 0.02424168586730957, -0.035036567598581314, -0.001572628621943295, -0.011286267079412937, 0.008119560778141022, -0.014491972513496876, -0.011247268877923489, 0.009882308542728424, -0.022837726399302483, 0.014874161221086979, 0.009336324408650398, 0.011925848200917244, 0.008704543113708496, -0.022073348984122276, 0.014413975179195404, -0.024304084479808807, 0.002841066336259246, -0.020575793460011482, -0.0002302150969626382, -0.014086385257542133, -0.0031296578235924244, -0.015973929315805435, 0.007230387069284916, 0.013415604829788208, 0.02290012501180172, 0.01269022561609745, 0.013774394057691097, -0.006216416601091623, 0.028874749317765236, 0.006727301981300116, 0.029389534145593643, -0.01041269302368164, -0.014452974312007427, 0.0009969081729650497, 0.0040558804757893085, 0.011738654226064682, 0.007881667464971542, 0.002733819419518113, -0.01110687293112278, -0.016629109159111977, -0.03222864866256714, -0.00028006048523820937, 0.02105937898159027, 0.017050297930836678, 0.0015355797950178385, -0.009156930260360241, -0.012744824402034283, 0.016020728275179863, 0.0018017468973994255, -0.021246574819087982, 0.003038010559976101, 0.02926473692059517, 0.021698961034417152, -0.00022156222257763147, 0.0032154552172869444, -0.020544594153761864, 0.002714320085942745, -0.026628416031599045, 0.018703848123550415, 0.005569036118686199, -0.032072655856609344, 0.011863450519740582, -0.002004540991038084, -0.002484226832166314, 0.0052453456446528435, -0.012534230947494507, -0.010584288276731968, 0.020248202607035637, -0.01245623268187046, -0.007261585909873247, 0.003408499527722597, -0.005943424999713898, -0.0012908619828522205, -0.012417234480381012, 0.024319684132933617, -0.004028581082820892, -2.627852211389836e-07, 0.02786077931523323, -0.021854955703020096, -0.011294066905975342, 0.006052621640264988, 0.00549103831872344, -0.007164089009165764, 0.018407458439469337, 0.02197975292801857, 0.0026597215328365564, 0.0013932338915765285, -0.00015002369764260948, -0.008634345605969429, 0.017097096890211105, -0.0176742784678936, 0.03144867345690727, -0.017845874652266502, 0.035286158323287964, -0.030450303107500076, -0.026098031550645828, 0.013470202684402466, 0.003613243578001857, -0.016582312062382698, 0.012978817336261272, 0.0237892996519804, 0.006508908234536648, 0.02109057828783989, 0.0018300210358574986, -0.00015392358181998134, -0.017128294333815575, -0.0016028527170419693, -0.0027611185796558857, 7.997810826054774e-06, -9.792367927730083e-05, -0.0028488661628216505, 0.0004723735910374671, 0.00836915336549282, 0.014164382591843605, 0.01517835259437561, 0.008532948791980743, -0.002712370129302144, 0.01212864276021719, -0.028281966224312782, -0.002103988081216812, 0.0016711007338017225, -0.001660376088693738, -0.005132248625159264, 0.023430509492754936, 0.015435745008289814, -0.023227715864777565, -0.009328525513410568, 0.0005762079963460565, 0.010974276810884476, 0.007167988922446966, -0.004613563884049654, 0.004090979229658842, -0.027923177927732468, 0.03506776690483093, -0.006887197028845549, -0.0004458056064322591, -0.008564147166907787, 0.0179238710552454, 0.002386729698628187, 0.006750700995326042, -0.011941447854042053, 0.008213157765567303, -0.016956700012087822, 0.01605192758142948, 0.003006811486557126, -0.014257979579269886, -0.02134017087519169, 0.015108155086636543, 0.02715880051255226, -0.00605652155354619, -0.01836065948009491, 0.023165317252278328, 0.004555065650492907, 0.038437265902757645, -0.007721772417426109, 0.002156636444851756, 0.0077646709978580475, -0.006364612374454737, -0.0019206934375688434, -0.02700280398130417, -0.0029541628900915384, 0.012604428455233574, 0.007452680263668299, 0.004367871209979057, -0.007214787416160107, 0.02993551827967167, -0.025474049150943756, 0.02878115139901638, -0.01879744604229927, -0.005900525953620672, 0.05038651451468468, -0.01793947070837021, 0.02945193275809288, 0.006481608841568232, 3.3209958928637207e-05, -0.026456819847226143, -0.02201095223426819, -0.00018658512271940708, -0.004516066983342171, 0.008556348271667957, -0.016597911715507507, -0.027533188462257385, 0.007226487156003714, -0.031604669988155365, 0.030200710520148277, 0.0467362217605114, 0.03285263106226921, -0.024787670001387596, 0.013836792670190334, -0.005104949697852135, -0.006481608841568232, 0.019858215004205704, -0.025926435366272926, 0.016145523637533188, -0.0039564333856105804, 0.024616073817014694, 0.009289526380598545, -0.01085728034377098, -0.011247268877923489, 0.01589593105018139, -0.008634345605969429, 0.010607687756419182, 0.0120194461196661, -0.03459978103637695, -0.008634345605969429, -0.0017617731355130672, -0.010404893197119236, 0.0013454603031277657, -0.02903074398636818, -0.008119560778141022, -0.0155371418222785, 0.0049996525049209595, 0.00045287414104677737, -0.002995111746713519, -0.002883964916691184, 0.0011065923608839512, -0.0035566953010857105, -0.019359029829502106, -0.010592088103294373, 0.0034552982542663813, 0.0034455484710633755, 0.003582044504582882, -0.023711301386356354, -0.005717231426388025, 0.003190106013789773, 0.014413975179195404, -0.007717872504144907, 0.013610598631203175, -0.01268242672085762, 0.02333691157400608, 0.016005128622055054, -0.023399310186505318, -0.02020140551030636, 0.004964553751051426, 0.03466217964887619, 0.002394529525190592, -0.015045756474137306, -0.01675390638411045, -0.02967032603919506, 0.003320752177387476, 0.0007770520751364529, 0.012308036908507347, 0.017143893986940384, 0.023040521889925003, -0.008018163964152336, -0.006727301981300116, 0.010248897597193718, 0.007589176297187805, 0.00964051578193903, 0.007386382203549147, -0.00861874595284462, 0.0038394369184970856, 0.02695600502192974, -0.014328178018331528, 0.0013318107230588794, -0.009890108369290829, 0.01471036672592163, -0.0285627581179142, 0.006828698795288801, -0.01675390638411045, 0.010818281210958958, 0.017767876386642456, 0.00942212250083685, 0.0063334135338664055, 0.0011299917241558433, 0.0028254666831344366, -0.02648801915347576, -0.01814226619899273, -0.00775687163695693, 0.012300237081944942, 0.009032133966684341, 0.004512167070060968, -0.007320084143429995, -0.009461121633648872, -0.000931097543798387, -0.005299943964928389, 0.009102331474423409, 0.016941100358963013, -0.018220262601971626, 0.0037107407115399837, -0.018657051026821136, 0.07849688827991486, -0.0174246858805418, 0.003437748644500971, -0.0050659505650401115, 0.003560594981536269, -0.017955070361495018, 0.006633704528212547, 0.003658092115074396, 0.0345061831176281, 0.011676255613565445, -0.011270667426288128, -0.019671021029353142, 0.028016773983836174, 0.0028391163796186447, -0.029405133798718452, -0.006193017587065697, 0.02308731898665428, 0.00374388974159956, 0.014562170952558517, 0.026909207925200462, 0.015771135687828064, -0.007382482290267944, -0.018688248470425606, -0.006700002588331699, 0.0002453271590638906, 0.007195287849754095, -0.006469909567385912, -0.006762400735169649, 0.01878184638917446, 0.021152976900339127, -0.004804658237844706, -0.0070782913826406, -0.002829366596415639, -0.00690669659525156, -0.004282073583453894, 0.02965472638607025, -0.00017841973749455065, 0.02583283931016922, -0.010818281210958958, 0.003784838365390897, -0.0021176375448703766, -0.005955124739557505, 0.02921793982386589, 0.034131795167922974, -0.026690812781453133, -0.004270374309271574, -0.013228409923613071, -0.002156636444851756, -0.0034221492242068052, -0.0039154845289886, 0.0003887697821483016, -0.01882864534854889, -0.01044389232993126, 0.01631711982190609, 0.025739241391420364, 0.00030321607482619584, 0.02176135964691639, 0.008189758285880089, -0.005116649437695742, 0.006247615907341242, -0.011730854399502277, -0.014109783805906773, 0.010623287409543991, -0.02313411794602871, -0.017175093293190002, 0.004180676769465208, -0.021480567753314972, -0.0006244690739549696, 0.0029892618767917156, -0.002612923039123416, -0.0118946498259902, -0.009804311208426952, 0.026550417765975, -0.02087218500673771, 0.00026519218226894736, 0.0013834842247888446, 0.002306781942024827, 0.03993482142686844, 0.031121082603931427, -0.026347624137997627, -0.007569676730781794, -0.004633063450455666, -0.016722707077860832, -0.005572935566306114, 0.005650933366268873, -0.00860314629971981, 0.00906333327293396, -0.01589593105018139, -0.005604134872555733, -0.028063572943210602, -0.019780216738581657, -0.005962924100458622, 0.004387370776385069, 0.006263215560466051, 0.003123807953670621, -0.006025322247296572, 0.0018592701526358724, -0.00781926978379488, 0.006224216427654028, -0.010233298875391483, 0.012503031641244888, 0.00022241531405597925, -0.0003817012475337833, -0.005225846078246832, 0.0008131260401569307, -0.0006897921557538211, 0.028859149664640427, 0.0032154552172869444, -0.015958329662680626, 0.00929732620716095, -0.0038940352387726307, 0.0008652869728393853, 0.0019304431043565273, -0.0011914148926734924, -0.03177626430988312, -0.006528407800942659, 0.010248897597193718, 0.0029112643096596003, -0.011933648027479649, -0.007585276383906603, 0.015045756474137306, 0.006715602241456509, -0.022993722930550575, -0.006922295782715082, -0.019764617085456848, 0.009656115435063839, -0.022088948637247086, -0.0015043807215988636, 0.005303843878209591, 0.0031082083005458117, 0.02494366466999054, 0.0026714212726801634, 0.007791970390826464, -0.008228757418692112, 0.017799075692892075, -0.0006361687555909157, -0.017799075692892075, 0.013470202684402466, 0.017175093293190002, -0.023867296054959297, 0.018251461908221245, 0.007245986256748438, 0.017565082758665085, 0.011294066905975342, 0.010163100436329842, -0.007366883102804422, 0.009133530780673027, -0.023446109145879745, 0.016691507771611214, -0.005779629573225975, 0.029966717585921288, -0.023882895708084106, -0.01906263828277588, -0.007589176297187805, 0.000527459429576993, -0.007144589442759752, -0.0132752088829875, 0.03263423964381218, -0.028921548277139664, 0.005471538752317429, 0.0005181972519494593, -0.00838475301861763, -0.013719795271754265, 0.019156236201524734, -0.0012957368744537234, 0.016644708812236786, 0.01439057569950819, 0.00376728898845613, 0.013119213283061981, -0.011902449652552605, -0.006508908234536648, 0.0018963190959766507, 0.022853326052427292, -0.012627827934920788, -0.011777653358876705, 0.0010568688157945871, 0.004094879142940044, 0.013860191218554974, -0.017767876386642456, 0.010935277678072453, 0.009819910861551762, 0.008330154232680798, 0.019842615351080894, 0.007195287849754095, -0.0043171728029847145, -0.017128294333815575, 0.014554371125996113, -0.012971017509698868, 0.02088778465986252, 0.00860314629971981, -0.013197211548686028, 0.018048668280243874, 0.01006950344890356, -0.012503031641244888, 0.004090979229658842, -0.004141678102314472, 0.0376884900033474, 0.012861820869147778, 0.0179238710552454, -0.012027245946228504, -0.01211304310709238, -0.006446510087698698, 0.02878115139901638, 0.012620028108358383, -0.0031745063606649637, -0.02876555174589157, -0.023929694667458534, -0.006278814747929573, -0.014507572166621685, -0.007382482290267944, -0.03146427124738693, -0.016161123290657997, 0.009094531647861004, 0.006395811680704355, -0.013462402857840061, 0.002776718232780695, 0.0016048026736825705, 0.010638886131346226, -0.0011465662391856313, 0.0063217137940227985, 0.0064153107814490795, 0.0038901353254914284, -0.007951865904033184, -0.012175440788269043, 0.006169618107378483, -0.013844591565430164, 0.003340251510962844, -0.0002725044614635408, 0.016847504302859306, -0.006590805947780609, 0.01584133319556713, -0.006551806814968586, -0.0021507865749299526, 0.027813980355858803, -0.0021975853014737368, 0.031573470681905746, 0.012409434653818607, -0.008844939060509205, 0.015061356127262115, 0.004399070516228676, -0.01085728034377098, 0.011949247680604458, -0.007811469957232475, -0.019827015697956085, -0.0045433659106493, -0.016941100358963013, 0.010131901130080223, 0.00962491612881422, 0.0008214132976718247, -2.9355775041040033e-05, 0.004001282155513763, 0.002090338384732604, -0.012175440788269043, -0.0028800652362406254, 0.02013900689780712, 0.005580735392868519, 0.006111119873821735, 0.009757512249052525, -0.0025446750223636627, -0.034786973148584366, 0.008088361471891403, 0.011652857065200806, -0.020747387781739235, -0.005479338578879833, 0.013735394924879074, -0.0009603467187844217, -0.0326654389500618, 0.00985890906304121, -0.019171835854649544, 0.004601864609867334, 0.017518283799290657, 0.014663567766547203, 0.006579106207937002, 0.013142612762749195, -0.00046774247311986983, -0.00420017633587122, -0.006563506554812193, -0.004098779056221247, -0.009523519314825535, 0.00690669659525156, 0.01053748931735754, 0.0006083820480853319, 0.011808851733803749, -0.016831904649734497, -0.013376605696976185, -0.014718166552484035, 0.012627827934920788, 0.0029522129334509373, -0.005861527286469936, 0.008688944391906261, 0.0016038276953622699, 0.006883297115564346, 0.003778988728299737, -0.012518631294369698, -0.0019655420910567045, 0.008665544912219048, 0.015763334929943085, -0.014320378191769123, 0.013688596896827221, -0.01551374327391386, 0.00033831503242254257, 0.0007707147742621601, 0.009671715088188648, -0.020482195541262627, 0.003991532605141401, 0.0020415899343788624, 0.007128989789634943, -0.002189785474911332, -0.013017816469073296, 0.0031959558837115765, 0.005779629573225975, -0.0043171728029847145, -0.020965782925486565, -0.015466944314539433, -0.013961588963866234, -0.013548200950026512, 0.012854021042585373, 0.02694040536880493, -0.00804936233907938, 0.003638592781499028, -0.011933648027479649, 0.011551459319889545, 0.022354140877723694, -0.007635974790900946, 0.018891043961048126, -0.006052621640264988, 0.005912225693464279, 0.008634345605969429, -0.019125036895275116, -0.0054832384921610355, 0.005280444398522377, 0.013750994578003883, -0.014094185084104538, -0.01567753776907921, -0.0014663567999377847, 0.013548200950026512, -0.0035118465311825275, -0.010264497250318527, -0.016629109159111977, -0.0013425354845821857, -0.01697229966521263, -0.013220610097050667, -0.0009364599245600402, -0.014140983112156391, 0.00390963489189744, 0.00487485621124506, -0.014671367593109608, -0.0059161256067454815, -0.0016087025869637728, -0.004484867677092552, -0.02313411794602871, 0.0035020967479795218, 0.04012201726436615, 0.024896865710616112, -0.013891390524804592, 0.001817346434108913, 0.017097096890211105, 0.017143893986940384, -0.009164730086922646, -0.007862168364226818, 0.014562170952558517, 0.022619333118200302, -0.008361353538930416, -0.00976531207561493, 0.007866067811846733, -0.004340572282671928, 0.00918812956660986, 0.003143307287245989, -0.039279643446207047, 0.013899190351366997, -0.008571946993470192, -0.02221374586224556, 0.000547446368727833, 0.006138419266790152, -0.01719069294631481, 0.01953062415122986, 0.007339583709836006, -0.007877768017351627, 0.00011267011723248288, -0.007047092542052269, 0.01211304310709238, 0.0022892325650900602, -0.0005298968753777444, -0.015388946048915386, -0.002047439571470022, 0.010342495515942574, 0.039279643446207047, 0.017050297930836678, 0.019624222069978714, -0.008798141032457352, 0.0012967117363587022, 0.0045784651301801205, 0.0027611185796558857, -0.00973411276936531, -0.0028898147866129875, 0.007947965525090694, -0.018937841057777405, 0.017175093293190002, 0.010334695689380169, -0.0051439483650028706, -0.008033763617277145, -0.00257977400906384, 0.014936559833586216, -0.009359723888337612, -0.0008725993102416396, -0.029389534145593643, -0.012035045772790909, 0.026332024484872818, 0.009320725686848164, 6.77605057717301e-05, -0.009414322674274445, -0.0020318401511758566, -0.02377369999885559, -0.011309666559100151, 0.012097443453967571, -0.008681144565343857, -0.006930095609277487, 0.00045384911936707795, 0.010124101303517818, -0.014094185084104538, 0.007858267985284328, -0.0015151053667068481, 0.011418863199651241, 0.0023555306252092123, 0.01211304310709238, -0.016629109159111977, 0.02924913726747036, -0.0019889413379132748, 0.0020103908609598875, 0.012674626894295216, 0.004168977029621601, -0.028437962755560875, -0.01882864534854889, -0.0023438308853656054, -0.017299890518188477, -0.007164089009165764, 0.013485802337527275, 0.01120046991854906, -0.0038491864688694477, 0.016707107424736023, -0.0070041934959590435, 0.0033012526109814644, -0.006298314314335585, 0.003780938684940338, 0.018298260867595673, 0.0038160374388098717, -0.007117290049791336, 0.0051556481048464775, -0.017331089824438095, -0.023914095014333725, -0.0035235462710261345, 0.0032057054340839386, 0.0019187434809282422, -0.0027494190726429224, -0.01949942484498024, -0.007206987589597702, -0.005853727459907532, -0.006828698795288801, 0.00815076008439064, -0.006029222160577774, 0.019827015697956085, 0.010490691289305687, 0.006976894568651915, -0.010685685090720654, -0.011707454919815063, 0.016192322596907616, 0.011317466385662556, 0.006150118540972471, -0.006079921033233404, 0.011153670959174633, -0.002993161790072918, 0.019437028095126152, 0.022276144474744797, 0.012378235347568989, 0.002449127845466137, 0.016239121556282043, -0.006111119873821735, -0.008805940859019756, 0.001522905076853931, -0.004087079782038927, -0.016831904649734497, -0.01019429974257946, -0.0035332958213984966, -0.005853727459907532, 0.03693971037864685, -0.015045756474137306, 0.004785159137099981, 0.007245986256748438, 0.005970723927021027, 0.0074097816832363605, 0.020669391378760338, 0.02495926432311535, -0.0032135052606463432, -0.008462750352919102, 0.003439698601141572, -0.010966476984322071, 0.013392205350100994, 0.009819910861551762, -0.007464380003511906, -0.004508267156779766, 0.01697229966521263, 0.00973411276936531, -0.0021975853014737368, -0.012885220348834991, 0.013423404656350613, -0.013680797070264816, -0.005475438665598631, 0.017112696543335915, 0.0059044258669018745, -0.00042923109140247107, 0.002092288341373205, -0.011629457585513592, -0.020326200872659683, 0.01949942484498024, -0.003582044504582882, 0.01926543191075325, -0.013540401123464108, 0.0016048026736825705, 0.01854785345494747, 0.0016194272320717573, 0.01030349638313055, -0.022619333118200302, 0.001099767629057169, 0.009141330607235432, 0.0005084475269541144, 0.004180676769465208, 0.0015921280719339848, 0.004336672369390726, -0.008774741552770138, -0.016270320862531662, -0.018220262601971626, 0.01770547777414322, 0.010584288276731968, -0.04199396073818207, -3.7292651541065425e-05, 0.0028722654096782207, 0.011239469051361084, -0.0008063012501224875, 0.030044713988900185, -0.020341800525784492, 0.01787707395851612, 0.017175093293190002, -0.005799129139631987, -0.013563800603151321, -0.00973411276936531, -0.0024744770489633083, 0.0054052406921982765, 0.01655111275613308, -0.0013152362080290914, 0.0013171861646696925, -0.015388946048915386, 0.005892726127058268, -0.005853727459907532, 0.021402569487690926, 0.024896865710616112, -0.024085689336061478, 0.011317466385662556, -0.008532948791980743, -0.0021839356049895287, 0.007066591642796993, 0.01968662068247795, 0.008454950526356697, -0.0008618746069259942, 0.001007145270705223, -0.02695600502192974, 0.006473809015005827, 0.02041979879140854, 0.004863156471401453, 0.0188442450016737, -0.006536207161843777, 0.0017061997205018997, -0.0019626172725111246, -0.0002817666972987354, -0.00498795323073864, -0.016894301399588585, -0.004508267156779766, -0.017315490171313286, -0.010061703622341156, 0.014452974312007427, -0.009562518447637558, 0.0015160803450271487, -0.016239121556282043, 0.005810828879475594, 0.000888198846951127, -0.0039895824156701565, 0.022962523624300957, 0.002646072069182992, 0.008088361471891403, 0.02424168586730957, -0.015435745008289814, 0.010482891462743282, -0.02360210381448269, -0.003991532605141401, -0.001132916659116745, 0.0029132142663002014, 0.016036327928304672, -0.0048943557776510715, 0.015139353461563587, -0.020560193806886673, -0.0321662537753582, -0.007335683796554804, 0.008532948791980743, 0.006271015387028456, -0.014780564233660698, -0.004636963363736868, 0.008915137499570847, -0.01472596637904644, 0.004098779056221247, -0.01109127327799797, 0.0013366856146603823, 0.007947965525090694, -0.016878701746463776, 0.029561128467321396, -0.002222934504970908, 0.01992061361670494, 0.00537794129922986, 0.01584913209080696, -0.025988833978772163, 0.022728530690073967, 0.005572935566306114, -0.008470550179481506, -0.0019460426410660148, -0.004379570949822664, -0.0020864384714514017, -0.017565082758665085, -0.012877420522272587, 0.010124101303517818, 0.01392258983105421, 0.03743889555335045, -0.005003552418202162, 0.0006927170907147229, -0.0012489381479099393, -0.009648315608501434, -0.02400769293308258, -0.012729224748909473, -0.0074331811629235744, 0.0001648920151637867, 0.006037021987140179, -0.011161470785737038, -0.022619333118200302, 0.0036424926947802305, -0.008642145432531834, -0.016707107424736023, -0.011629457585513592, -0.004215775988996029, -0.0057562305592000484, 0.012854021042585373, -0.013766594231128693, 0.017159493640065193, 0.003964233212172985, -0.005783529486507177, 0.0066649033688008785, -0.021932953968644142, 0.026456819847226143, 0.013743194751441479, -0.006150118540972471, -0.001888519385829568, -0.0028215667698532343, 0.03572294861078262, 0.0008594371611252427, -0.027923177927732468, -0.016816304996609688, 0.0020415899343788624, 0.02943633310496807, -0.010007104836404324, 0.00047846714733168483, -0.005444239359349012, 0.009344124235212803, 0.005701631773263216, -0.012737024575471878, 0.00029590376652777195, -0.0010939177591353655, -0.011621657758951187, 0.015349947847425938, -0.0020493895281106234, 0.02541165053844452, -0.0018397708190605044, -0.012861820869147778, 0.009359723888337612, -0.006411410868167877, 0.007893367670476437, 0.0005586585612036288, 0.0011904399143531919, -0.0008204383193515241, -1.558430631121155e-05, -0.019873814657330513, 0.01392258983105421, -0.029982317239046097, -0.0026499719824641943, -0.002187835518270731, -0.0040558804757893085, -0.00928172655403614, -0.0023457808420062065, 0.0018846194725483656, 0.007858267985284328, 0.00578742939978838, 0.005935625173151493, -0.004126078449189663, -0.02449127845466137, 0.002141036791726947, -0.02469407208263874, 0.004438069183379412, -0.0012791623594239354, -0.00249397661536932, 0.004948954097926617, -0.01992061361670494, 0.01856345310807228, 0.023024922236800194, -0.0013308357447385788, -0.002501776209101081, 0.027267996221780777, -0.010724684223532677, 0.008634345605969429, -0.0010373694822192192, -0.01222223974764347, -0.01539674587547779, -0.016395116224884987, 0.011504661291837692, -0.01404738612473011, 0.006434810347855091, 0.015505943447351456, -0.011192670091986656, -0.01483516301959753, -0.002240483881905675, -0.008634345605969429, -0.02222934551537037, -0.010217699222266674, 0.005186846945434809, -0.011013275012373924, 0.005440339911729097, 0.029342735186219215, -0.010389293543994427, -0.0008033763151615858, 0.012542030774056911, -0.004441969096660614, 0.0008594371611252427, 0.011192670091986656, -0.0018046718323603272, -0.006813099142163992, 0.04352271929383278, -0.021418169140815735, -0.013392205350100994, 0.000248495809501037, -0.0013191361213102937, 0.006551806814968586, -0.014257979579269886, -0.002006490947678685, 0.000176104178535752, -0.009617116302251816, 0.024522477760910988, -0.022759729996323586, -0.009398723021149635, 0.017596282064914703, -0.015264149755239487, 0.018641451373696327, 0.011465662159025669, 0.00035172089701518416, -0.008657745085656643, 0.014374976046383381, 0.02517765760421753, 0.014593370258808136, 0.006021422334015369, -0.01357940025627613, 0.0011797152692452073, -0.0056665330193936825, 0.014273579232394695, -0.00145855697337538, -0.013758794404566288, 0.008977535180747509, 0.039310842752456665, 0.01338440552353859, 0.009796511381864548, -0.006988593842834234, -0.011036674492061138, 0.022369740530848503, -0.011130272410809994, 0.0026909206062555313, -0.006391911767423153, -0.012066244147717953, 0.0380316786468029, 0.0016691507771611214, -0.00794016569852829, -0.024662872776389122, -0.0029658626299351454, -0.028203967958688736, 0.027720382437109947, 0.02495926432311535, 0.00747217983007431, 0.01606752723455429, 0.02013900689780712, 0.02581723965704441, 0.0006678553181700408, -0.015342148020863533, 0.011348665691912174, 0.023898495361208916, 0.008868338540196419, -0.0054832384921610355, -0.017643079161643982, -0.0011865400010719895, -0.020232602953910828, 0.0012157891178503633, -0.024179287254810333, 0.000320765539072454, -0.0009325600112788379, -0.02173016034066677, 0.015030156821012497, -0.005420840345323086, 0.01953062415122986, -0.0004540928639471531, 0.002995111746713519, 0.0004623801214620471, 0.01790827140212059, -0.009094531647861004, -0.006380212027579546, 0.014585570432245731, 0.0017685978673398495, -0.011442262679338455, -0.010077303275465965, -0.014187782071530819, -0.000737565744202584, -0.011832251213490963, 0.011707454919815063, 0.012776023708283901, -0.008431551977992058, -0.02943633310496807, 0.010943077504634857, -0.001078318222425878, 0.004059780389070511, -0.007920666597783566, -0.005970723927021027, -0.022042149677872658, 0.010311296209692955, -0.011777653358876705, -0.006146219093352556, 0.00918812956660986, -0.011996046639978886, -0.009203729219734669, 0.0049177552573382854, 0.02859395742416382, 0.0185946524143219, 0.0025407751090824604, -0.022712931036949158, -0.006473809015005827, 0.02243213914334774, 0.0065713063813745975, 0.012393835000693798, 0.004586264956742525, -0.00401298189535737, -0.0007361033349297941, -0.008314554579555988, 0.02383609674870968, 0.0152875492349267, 0.010631086304783821, -0.0069105965085327625, -0.013594998978078365, -0.006668803282082081, -0.01765867881476879, -0.021386969834566116, 0.013556000776588917, -0.00039266966632567346, 0.020450998097658157, 0.0179238710552454, -0.0004012006684206426, -0.01429697871208191, 0.013462402857840061, -8.000857633305714e-05, -0.022853326052427292, 0.006380212027579546, -0.008525148965418339, -0.01904703862965107, -0.016831904649734497, -0.01313481293618679, 0.018391858786344528, -0.011660655960440636, -0.000868211907800287, 0.010685685090720654, 0.008033763617277145, 0.008782541379332542, 0.010186499916017056, 0.006719502154737711, -0.005619734525680542, 0.023477308452129364, 0.001786147360689938, 0.01361839845776558, -0.014936559833586216, 0.0010032454738393426, 0.026550417765975, -0.0016954750753939152, -0.0035332958213984966, 0.00046433007810264826, 0.0028566657565534115, 0.003408499527722597, 0.0037594891618937254, -0.010264497250318527, 0.002646072069182992, -0.00987450871616602, 0.02240093983709812, 0.004426369443535805, -0.006840398535132408, -0.008688944391906261, 0.0058225286193192005, -0.012105243280529976, -0.008283356204628944, -0.0038043379317969084, -0.009398723021149635, 0.01085728034377098, -0.0393732413649559, -0.012323636561632156, -0.010233298875391483, 0.016956700012087822, -0.02832876518368721, -0.018485454842448235, 0.0004996727802790701, 0.019780216738581657, -0.011387664824724197, 0.015560541301965714, -0.0008389627910219133, -0.008228757418692112, 0.018485454842448235, 0.008470550179481506, -0.015201752074062824, 0.0013210860779508948, 0.017970670014619827, -0.0005245345528237522, 0.0060058231465518475, 0.011840051040053368, 0.006524507887661457, -0.0043171728029847145, -0.009476720355451107, -0.020263802260160446, 0.009687314741313457, 0.01020989939570427, 0.005069850478321314, -0.0005776704638265073, -0.0076047759503126144, -0.01245623268187046, -0.010693484917283058, -0.01748708449304104, -0.00748777948319912, 0.01765867881476879, 0.013688596896827221, -0.01064668595790863, 0.0005586585612036288, -0.002938563469797373, -0.009234927594661713, -0.0033695006277412176, 0.011535859666764736, -0.009710714221000671, -0.008213157765567303, 0.011996046639978886, 0.007838768884539604, 0.004948954097926617, 0.00953131914138794, 0.005420840345323086, -0.005506637506186962, -0.009250527247786522, -0.005015252158045769, -0.0009866709588095546, -0.03108988329768181, 0.014421775005757809, -0.014538771472871304, -0.010958677157759666, 0.01087287999689579, -0.005389641039073467, 0.018048668280243874, -0.015342148020863533, -0.007070491556078196, -0.03778208792209625, -0.013914790004491806, 0.019889414310455322, 0.013049015775322914, 0.020918983966112137, 0.00662200478836894, 0.013571600429713726, 0.005120548885315657, 0.0010861180489882827, -0.02942073345184326, 0.006719502154737711, -0.025770440697669983, 0.011707454919815063, -0.011247268877923489, 0.004679861944168806, 0.009359723888337612, -0.019203033298254013, -0.001974316779524088, -0.0011446162825450301, -0.0006634679739363492, -0.006337313447147608, 0.0188442450016737, -0.010077303275465965, -0.011863450519740582, -0.012573229148983955, -0.0028566657565534115, -0.016691507771611214, -0.005998023319989443, -0.009671715088188648, 0.007054891902953386, 0.012776023708283901, -0.020232602953910828, -0.006633704528212547, 0.014585570432245731, 0.039123646914958954, -0.016192322596907616, -0.005471538752317429, 0.018532253801822662, -0.016020728275179863, 0.013088013976812363, -0.004652563016861677, -0.018048668280243874, 0.015505943447351456, 0.021823756396770477, -0.000568895717151463, -0.02583283931016922, -0.0003319777315482497, -0.009437722153961658, 0.013571600429713726, 0.020029809325933456, 0.018625851720571518, 0.00048066084855236113, 0.02898394502699375, 0.007444880437105894, 0.011824451386928558, 0.013509201817214489, -0.0026948205195367336, -0.00503475172445178, -0.0021312872413545847, 0.01041269302368164, -0.039310842752456665, -0.02105937898159027, 0.005502738058567047, -0.009500119835138321, 0.004211876075714827, -0.0026870209258049726, -0.006251515820622444, -0.02672201208770275, 0.002612923039123416, -0.011886849999427795, -0.004274274222552776, 0.020248202607035637, -0.0037516893353313208, 0.004968453664332628, 0.004243074916303158, 0.0012655126629397273, -0.0032525041606277227, -0.01631711982190609, -0.01281502190977335, 0.017299890518188477, -0.017502684146165848, 0.018220262601971626, 0.007448780350387096, -0.029592327773571014, -0.0006527432706207037, -0.0010266447206959128, 0.005124448798596859, 0.015716535970568657, 0.017175093293190002, -0.019827015697956085, -0.002174185821786523, 0.021449368447065353, 0.0087123429402709, 0.009039933793246746, 0.005752330645918846, 0.02173016034066677, -0.033445414155721664, -0.009266126900911331, 0.015505943447351456, -0.01974901743233204, -0.0014185832114890218, -0.00792846642434597, 0.0206069927662611, -0.0024900767020881176, 0.013298608362674713, 0.003385100280866027, 0.0021176375448703766, 0.014023986645042896, -0.025068461894989014, -0.00430937297642231, 0.013446804136037827, -0.008556348271667957, -0.0008297005551867187, 0.013977187685668468, -0.004808558151125908, 0.0015238800551742315, -0.01392258983105421, 0.005452039185911417, 0.0014341827481985092, 0.017159493640065193, 0.005518337246030569, 0.00759697612375021, -0.009882308542728424, 0.017393486574292183, -0.00724988617002964, 0.008977535180747509, 0.010927477851510048, 0.0015190052799880505, -0.010326895862817764, 0.010841680690646172, 0.016207922250032425, -0.008423752151429653, -0.005272644571959972, -0.0074994792230427265, 0.005986323580145836, -0.0012001895811408758, -0.024616073817014694, 0.00218588556163013, 0.014101983979344368, 0.0008574872044846416, -0.002677271142601967, -0.0065752062946558, -0.008735742419958115, 0.010506290011107922, -0.008899537846446037, -0.02631642483174801, 0.0018807195592671633, 0.003568394808098674, 0.007460480090230703, -0.008899537846446037, -0.0021312872413545847, 0.017783476039767265, 0.027018403634428978, -0.01701909862458706, 0.01074808370321989, -0.013205010443925858, -0.021589763462543488, -0.026893608272075653, -0.006208617240190506, -0.0034455484710633755, -0.015817934647202492, 0.022478938102722168, 0.008236557245254517, -0.004176776856184006, -0.003814087714999914, 0.010732484050095081, -0.014070785604417324, 0.010092902928590775, 0.012409434653818607, 0.006091620307415724, -0.02013900689780712, 0.0321662537753582, -0.006520607974380255, 0.014569970779120922, 0.0012245639227330685, -0.011021074838936329, 0.009242727421224117, 0.012370435521006584, -0.008111760951578617, -0.001710099633783102, -0.0017656729323789477, -0.012425034306943417, 0.009687314741313457, -0.018672648817300797, -0.019858215004205704, 0.015225151553750038, -0.005596335045993328, 0.02586403861641884, 0.011036674492061138, -0.004321072716265917, 0.023071719333529472, 0.004625263623893261, 0.028016773983836174, 0.00028420411399565637, 0.015716535970568657, -0.0155371418222785, 0.0019986911211162806, -0.013969388790428638, 0.035036567598581314, -0.015950530767440796, 0.0052492450922727585, 0.011535859666764736, 0.001986016519367695, 0.0028898147866129875, -0.022369740530848503, -0.00011736216401914135, -0.006310014054179192, -0.011067873798310757, 0.018064267933368683, 0.00906333327293396, -0.0001658669934840873, 0.009952506981790066, -0.011114672757685184, -0.0088371392339468, -0.0032174051739275455, -0.0036210434045642614, -0.024974863976240158, 0.008353553712368011, -0.0183450598269701, -0.03656532242894173, 0.0011699654860422015, 0.011886849999427795, 0.017346689477562904, 0.01361839845776558, -0.01703469827771187, -0.028749952092766762, 0.0020649891812354326, 0.002022090367972851, 0.017159493640065193, -0.00953131914138794, -0.0017968720057979226, -0.003474797587841749, 0.008337954059243202, -0.01517835259437561, -0.01628592051565647, 0.014827363193035126, 0.011613857932388783, -0.009429922327399254, 7.903360528871417e-05, 0.0012781873811036348, 0.0056548332795500755, 0.0037107407115399837, 0.015357747673988342, -0.00893853697925806, 0.0117698535323143, -0.011691855266690254, -0.011785452254116535, -0.0053116437047719955, 0.014655767939984798, 0.0019128936110064387, 0.006294414401054382, 0.026222826912999153, -0.006739001255482435, -0.00016891377163119614, 0.01770547777414322, -0.0012596629094332457, -0.016192322596907616, 0.019624222069978714, -0.009125730954110622, 0.01634831912815571, -0.00047846714733168483, 0.0009432847145944834, 0.017331089824438095, 0.012573229148983955, -0.0033344016410410404, -0.006984694395214319, -0.004289873410016298, 0.018625851720571518, -0.000702954304870218, 0.0019947912078350782, 0.016488714143633842, -0.0042508747428655624, -0.007612575776875019, -0.013111413456499577, 0.023976493626832962, -0.019639821723103523, 0.010256697423756123, -0.008829339407384396, 0.006298314314335585, -0.011465662159025669, -0.024803269654512405, -0.014811763539910316, -0.01720629259943962, 0.003615193534642458, -0.011980446986854076, 0.001208964386023581, 0.0020298901945352554, 0.023492908105254173, 0.00928172655403614, -0.016488714143633842, -0.021605363115668297, 0.0030770092271268368, 0.010334695689380169, -0.014382775872945786, -0.019125036895275116, 0.0363469272851944, 0.02219814620912075, -0.0015443544834852219, -0.02581723965704441, 0.020497795194387436, -0.02491246536374092, 0.005955124739557505, 0.0072030876763165, -0.008751342073082924, 0.0025719741825014353, 0.0049060555174946785, -0.01878184638917446, -0.0025973233859986067, -0.028671955689787865, -0.00724988617002964, -0.011707454919815063, -0.010022704489529133, 0.011301866732537746, 0.008525148965418339, -0.003993482328951359, -0.01020989939570427, -0.005101049784570932, 0.006469909567385912, 0.012245639227330685, 0.05409920588135719, 0.035504553467035294, 0.0033168522641062737, 0.011021074838936329, 0.007152389269322157, -0.0353485569357872, 0.0036093436647206545, 0.011567058973014355, -0.01770547777414322, 0.005526137072592974, -0.00918812956660986, -0.008376953192055225, 0.02606683224439621, 0.018391858786344528, -0.008525148965418339, 0.012752624228596687, -0.018204662948846817, 0.01008510310202837, 0.006052621640264988, 0.008080561645328999, -0.000181100913323462, 0.003552795387804508, -0.0026538718957453966, 0.003568394808098674, 0.005179047584533691, -0.012354835867881775, -0.00362494308501482, -0.009359723888337612, -0.015123754739761353, 0.01268242672085762, 0.0251308586448431, -0.01793947070837021, -0.0024920266587287188, -0.010022704489529133, -0.005116649437695742, 0.019639821723103523, 0.016020728275179863, 0.003638592781499028, 0.000694667047355324, -0.005381841212511063, -0.00794406607747078, -0.01370419654995203, 0.0077646709978580475, -0.026612816378474236, -0.007632074877619743, 0.01281502190977335, -0.0006902796449139714, -0.011099073104560375, -0.00794016569852829, 0.016145523637533188, -0.003997382242232561, 0.012105243280529976, -0.0077490718103945255, -0.001579453470185399, -0.01382899284362793, 0.015825733542442322, 0.021152976900339127, -0.01790827140212059, -0.002829366596415639, -0.010888478718698025, -0.003039960516616702, -0.012284638360142708, 0.0036600420717149973, 0.02564564347267151, 0.006707802414894104, 0.022369740530848503, 0.003028260776773095, 0.014421775005757809, 0.011520260944962502, -0.004293773323297501, 0.021683361381292343, -0.02495926432311535, 0.00322520500048995, 0.0011124422308057547, -0.018423056229948997, -0.0174246858805418, -0.029810721054673195, 0.005147848278284073, -0.02240093983709812, 0.011504661291837692, 0.0028137671761214733, -0.003519646357744932, 0.028063572943210602, 0.0010646686423569918, -0.012206640094518661, 0.0034669977612793446, -0.002550524892285466, -0.012854021042585373, -0.017112696543335915, -0.006785800214856863, -0.020575793460011482, 0.008891738019883633, -0.004516066983342171, 0.005015252158045769, 0.02335251122713089, 0.0029912118334323168, -0.015716535970568657, 0.007710072677582502, 0.005362342111766338, 0.014460774138569832, -0.008993134833872318, 0.02718999795615673, -0.006719502154737711, -0.004235275089740753, -0.00048114830860868096, -0.05029291659593582, 0.008681144565343857, -0.0008462750702165067, 0.0024257285986095667, 0.028734352439641953, -0.007359083276242018, 0.021386969834566116, -0.0018943691393360496, -0.014031786471605301, 0.0015570290852338076, 0.0058225286193192005, -0.006988593842834234, 0.023960893973708153, 0.02697160467505455, 0.0070938910357654095, 0.0005796204204671085, 0.0016096775652840734, 0.0087123429402709, 0.00929732620716095, 0.009492320008575916, 0.0002561736910138279, 0.008985335007309914, 0.01924983225762844, -0.006785800214856863, -0.0156619381159544, 0.03176066279411316, -0.015583940781652927, 0.004699361510574818, 0.021355770528316498, 0.004504367243498564, -0.013524801470339298, 0.005572935566306114, -0.005455939099192619, 0.003582044504582882, -0.007702272851020098, -0.0018465955508872867, 0.006672703195363283, 0.017611881718039513, -0.01497555896639824, 0.001949942554347217, 0.005522237159311771, -0.014803963713347912, 0.001610652543604374, 0.022369740530848503, -0.0038355370052158833, 0.002798167522996664, -0.01055308897048235, -0.007784170564264059, 0.002076688688248396, -0.0060058231465518475, -0.0005167347844690084, -0.009695114567875862, 0.04601864516735077, -0.004847557283937931, -0.01519395224750042, -0.010007104836404324, 0.005288244225084782, 0.009000934660434723, -0.0008223882759921253, 0.004457568749785423, -0.004757859744131565, -0.012097443453967571, 0.0035937440115958452, -0.0022131847217679024, -0.01723749190568924, -0.00368734123185277, 0.002948313020169735, 0.0016028527170419693, -0.014936559833586216, -0.002484226832166314, -0.0029034644830971956, 0.001577503513544798, -0.018064267933368683, -0.026644015684723854, 0.0023126318119466305, 0.03609733656048775, 0.02333691157400608, 0.019889414310455322, 0.007975265383720398, 0.023945294320583344, -0.0008964861044660211, 0.0026948205195367336, 0.010482891462743282, -0.0023769799154251814, 0.01653551310300827, -0.00736298318952322, 0.011746454052627087, 0.0006932045798748732, -0.011044474318623543, -0.010272297076880932, 0.02246333844959736, -0.006797499489039183, -0.0033324516844004393, -0.03403819724917412, -0.0026285224594175816, -0.019827015697956085, -0.0026265725027769804, -0.01066228561103344, -0.01191804837435484], "78e994e5-dbda-4960-9a58-8a398eec44ef": [-0.022392641752958298, 0.01930736005306244, -0.008147576823830605, 0.003265931736677885, -0.03643878549337387, -0.006462850607931614, 0.030024651437997818, 0.013096204027533531, -0.04062827304005623, 0.01115572452545166, 0.019469743594527245, 0.012747080065310001, -0.014038026332855225, -0.011334346607327461, -0.02007056213915348, 0.010270736180245876, -0.03751051425933838, 0.035204675048589706, 0.010189545340836048, -0.03835490718483925, 0.07261776179075241, -0.008858002722263336, -0.04848761856555939, 0.015288377180695534, -0.01600286364555359, 0.002490552142262459, -0.013510281220078468, -0.0023525264114141464, -0.034555140882730484, 0.005050117149949074, 0.028595678508281708, 0.01014894898980856, 0.030852805823087692, 0.006365420762449503, 0.004964865744113922, -0.04319392889738083, -0.02201916091144085, 0.045369863510131836, -0.03384065628051758, -0.00632888451218605, -0.019729556515812874, 0.005001401994377375, 0.015426402911543846, -0.001861317316070199, -0.047285985201597214, 0.007339720148593187, 0.0275239497423172, -0.013875643722712994, 0.013420970179140568, 0.007729439530521631, 0.012649649754166603, -0.02906659059226513, -0.015978505834937096, 0.01179713848978281, -0.0016583382384851575, -0.002281483728438616, 0.004944568034261465, 0.08151636272668839, 0.007437149994075298, -0.0264197438955307, -0.0008078563259914517, -0.02286355197429657, 0.0029837910551577806, 0.0016390553209930658, -0.013542757369577885, -0.035756777971982956, 0.0006667859852313995, 0.013973073102533817, -0.04098551720380783, 0.014947372488677502, 0.009572489187121391, 0.008630665950477123, -0.02542920783162117, 0.01191080641001463, -0.041667524725198746, 0.03166472166776657, 0.04777313396334648, -0.0231233648955822, 0.022555025294423103, 0.008979789912700653, -0.02362675406038761, -0.006215216591954231, 0.04215467348694801, 0.009962208569049835, 0.0370558425784111, 0.02796238474547863, -0.020460281521081924, -0.03621144965291023, -0.02102862298488617, -0.02667955681681633, -0.012771437875926495, 0.003564310958608985, 0.018950117751955986, -0.007863406091928482, -0.02344813197851181, 0.01739123836159706, 0.03916682302951813, 0.012162500992417336, 0.011163843795657158, -0.03236296772956848, -0.013900000602006912, 0.03060923144221306, -0.07534579932689667, -0.01425724383443594, 0.01223557349294424, -0.009207126684486866, 0.022067874670028687, 0.004855257458984852, -0.04491518810391426, 0.04861752688884735, 0.02143458090722561, -0.027751287445425987, 0.017082711681723595, 0.03151857480406761, -0.02102862298488617, -0.08041215687990189, 0.000619593367446214, -0.009994684718549252, -0.003219246631488204, -0.023935282602906227, 0.010847196914255619, 0.03695841506123543, 0.0005429688026197255, -0.021093575283885002, -0.011553564108908176, 0.024211332201957703, -0.005452015437185764, 0.001000686432234943, -0.003828183514997363, -0.006966238841414452, -0.02565654367208481, -0.010465596802532673, 0.01517470832914114, 0.005196262151002884, 0.01735876314342022, 0.02341565489768982, 0.004912091419100761, 0.06043902039527893, -0.03614649549126625, 0.023983996361494064, -0.042479440569877625, -0.04228458181023598, -0.0011448014993220568, -0.00997844710946083, 0.020346613600850105, -0.0036191153340041637, -0.03130747750401497, 0.06287477165460587, 0.01820315606892109, 0.04088808596134186, -0.03786775842308998, -0.04686378687620163, 0.03247663751244545, -0.00869561918079853, 0.007307243533432484, -0.021158529445528984, 0.002549415919929743, 0.016709228977560997, 0.025900118052959442, 0.0094507010653615, -0.0013772123493254185, -0.029521264135837555, 0.01945350505411625, 0.029586216434836388, 0.02388656698167324, 0.023724183440208435, 0.0221977811306715, 0.0214670579880476, -0.053521499037742615, 0.02939135581254959, 0.033418457955121994, 0.028303388506174088, 0.036243926733732224, 0.004096115939319134, -0.033743225038051605, -0.024763435125350952, 0.03255783021450043, 0.038030143827199936, 0.015223423950374126, -0.028741823509335518, -0.009304556995630264, 0.019534697756171227, -0.018365537747740746, 0.006608995608985424, 0.013656426221132278, 0.053229209035634995, 0.023902805522084236, 0.0016086084069684148, 0.01566997729241848, 0.01058738399296999, -0.004652278497815132, 0.02417885698378086, 0.015044801868498325, 0.044525470584630966, 0.004891793709248304, -0.004993283189833164, 0.01000280398875475, -0.012958178296685219, 0.000636846583802253, 0.015808003023266792, -0.0023241094313561916, -0.06508318334817886, -0.016465654596686363, 0.022619977593421936, -0.02227897383272648, 0.013575234450399876, -0.0086225476115942, -0.018073247745633125, 0.029992174357175827, -0.035107243806123734, 0.03494486212730408, -0.044168226420879364, 0.029261449351906776, -0.0066252341493964195, -0.0054033007472753525, -0.0019222109112888575, -0.03949159011244774, 0.03695841506123543, 0.018901402130723, -0.0017618575366213918, -0.020963668823242188, -0.008776810951530933, 0.012787675485014915, -0.04683130979537964, -0.01662803813815117, -0.008403330110013485, -0.037185750901699066, 0.010019042529165745, -0.049851637333631516, -0.0004714186943601817, 0.042219627648591995, 0.013364136219024658, -0.009060981683433056, -0.04738341271877289, -0.03445771336555481, -0.013144918717443943, -0.007481805514544249, 0.005285572726279497, -0.014208529144525528, 0.001686755334958434, 0.006048773881047964, -0.011025818064808846, 0.013973073102533817, -0.010246379300951958, 0.028449533507227898, 0.03122628666460514, -0.019144978374242783, 0.025737734511494637, 0.029082829132676125, -0.028352104127407074, 0.007822809740900993, 0.010059637948870659, -0.012016355991363525, 0.021385865285992622, -0.03380817919969559, 0.0333859845995903, -0.00867938157171011, -0.01692032814025879, 0.03119380958378315, -0.07703458517789841, -0.015499475412070751, -0.00939386710524559, 0.0047903042286634445, -6.565101648448035e-05, 0.02513691782951355, -0.015085398219525814, 0.015946028754115105, -0.03754299134016037, 0.008443925529718399, 0.03975140303373337, -0.009418224915862083, 0.0053708236664533615, -0.006487208418548107, -0.02443866990506649, 0.008663143031299114, -0.0009083309560082853, 0.011228797025978565, -0.005772722419351339, 0.014322197064757347, -0.00010554907203186303, -0.025932595133781433, 0.0011772781144827604, -0.011780899949371815, 0.01732628606259823, -0.02586764097213745, -0.00592698622494936, -0.013778213411569595, -0.011001461185514927, -0.0355943962931633, -0.019323598593473434, 0.002362675266340375, -0.002928986679762602, 0.028417058289051056, 0.03777033090591431, 0.014711916446685791, -0.016392583027482033, 0.001285871840082109, -0.007286945357918739, -0.021921729668974876, 0.026647081598639488, -0.07255280762910843, -0.014590129256248474, -0.016416940838098526, -0.03075537458062172, 0.00019828509539365768, -0.0014167933259159327, 0.05290444195270538, 0.013989311642944813, -0.0366985984146595, 0.027280375361442566, 0.04800046980381012, -0.012032594531774521, 0.023870328441262245, 0.011991998180747032, -0.004396524745970964, -0.009929731488227844, 0.0037835282273590565, -0.003052803920581937, -0.002695560920983553, -0.014679440297186375, 0.016238318756222725, 0.014078622683882713, -0.05618458241224289, 0.049299534410238266, 0.02935888059437275, -0.027702571824193, 0.03008960373699665, -0.0027747226413339376, -0.029277687892317772, -0.024763435125350952, -0.020167991518974304, -0.03335350751876831, -0.01643317937850952, -0.01761857606470585, 0.0076035927049815655, 0.0066252341493964195, -0.04748084396123886, -0.02840081974864006, -0.016408821567893028, -0.03647126257419586, -0.0033187062945216894, 0.03197325021028519, -0.009954089298844337, -0.024536099284887314, 0.0055413260124623775, -0.008322138339281082, 0.0025961012579500675, 0.003684068564325571, -0.04608434811234474, -0.007104264572262764, 0.0008936149533838034, -0.023691706359386444, 0.014963611029088497, -0.008549475111067295, 0.009816063567996025, -0.014281601645052433, -0.021791823208332062, -0.012795794755220413, 0.020086800679564476, 0.02007056213915348, -0.01666051521897316, -0.011715946719050407, -0.0137619748711586, -0.031210048124194145, 0.0021820240654051304, -0.007473686244338751, 0.0029452249873429537, 0.010879673063755035, 0.015718692913651466, 0.01446022279560566, -0.020492758601903915, 0.050696030259132385, 0.056639254093170166, 0.0025961012579500675, -0.03764042258262634, -0.009507535956799984, 0.04523995518684387, 0.020395327359437943, -0.010059637948870659, 0.029569977894425392, -0.005050117149949074, 0.010400642640888691, -0.015280257910490036, -0.02965117059648037, 0.04030350595712662, 0.025445444509387016, 0.025266824290156364, -0.01510163675993681, -0.000879406463354826, -0.006113727111369371, -0.021304674446582794, 0.04101799428462982, -0.046506546437740326, -0.016051577404141426, -0.0029716123826801777, 0.005127249285578728, -0.0138512859120965, 0.0003996148589067161, 0.018333062529563904, -0.022831076756119728, 0.010603622533380985, -0.023399416357278824, 0.008139457553625107, 0.022230258211493492, 0.04299906641244888, -0.03008960373699665, -0.026906894519925117, -0.016985280439257622, -0.009312675334513187, 0.04384345933794975, -0.007912120781838894, 0.014362792484462261, 0.017553621903061867, 0.002380943391472101, 0.05572991073131561, -0.037802804261446, 0.0028214079793542624, 0.03046308644115925, -0.05936729162931442, -0.019161216914653778, 0.002815318526700139, 0.04179743304848671, -0.015020444989204407, 0.033710747957229614, 0.00413874164223671, -0.0031400849111378193, 0.057158879935741425, 0.025883879512548447, -0.0221977811306715, -0.01053055003285408, 0.0047903042286634445, 0.011927044950425625, -0.018333062529563904, -0.014370911754667759, -0.010473715141415596, -0.00712862191721797, -0.02190549112856388, -0.000715500907972455, 0.022668693214654922, -0.0055413260124623775, 0.01989194005727768, 0.03320736065506935, 0.005407359916716814, 0.013770094141364098, -0.04059579595923424, -0.03848481550812721, -0.04523995518684387, 0.016230199486017227, 0.010782243683934212, 0.020395327359437943, 0.006406016647815704, 0.04679883271455765, -0.02050899714231491, -0.005358645226806402, -0.028611917048692703, -0.023789137601852417, 5.074474393040873e-05, -0.03585420921444893, 0.00363738345913589, -0.021743109449744225, -0.0344901904463768, -0.021775584667921066, 0.036860983818769455, -0.004234141670167446, 0.0013802570756524801, -0.026906894519925117, -0.020752571523189545, 0.007148919627070427, -0.003525744890794158, -0.018917640671133995, -0.0032679615542292595, 0.012487267144024372, -0.016165245324373245, 0.013404731638729572, -0.014468342065811157, -0.0037449621595442295, -0.00821658968925476, 0.00809480156749487, 0.0128445103764534, -0.010051519609987736, -0.003623174736276269, -0.057223834097385406, -0.02700432389974594, 0.0042219627648591995, 0.01655496656894684, -0.02502324990928173, 0.00030091634835116565, 0.008314019069075584, -0.017293808981776237, 0.029602454975247383, 0.04234953597187996, -0.03314240649342537, -0.0024601053446531296, 0.015134112909436226, -0.012487267144024372, -0.012446670792996883, -0.013883762061595917, -0.019826987758278847, -0.0068200938403606415, -0.043356310576200485, 0.038549769669771194, -0.037997666746377945, 0.044752806425094604, 0.03023574873805046, 0.005772722419351339, 0.010416881181299686, -0.008309959433972836, 0.011342465877532959, -0.0010889822151511908, -0.01000280398875475, -0.02848201058804989, -0.021856777369976044, 0.012941939756274223, -0.004404644016176462, -0.00572400726377964, 0.018154440447688103, -0.021044861525297165, -0.01079036295413971, 0.0172450952231884, -0.018836449831724167, -6.493741693702759e-06, -0.004652278497815132, -0.01966460421681404, 0.009718633256852627, 0.0137619748711586, -0.018544159829616547, 0.018138201907277107, 0.006178680341690779, 0.005297751631587744, -0.041375234723091125, 0.004006804898381233, 0.00621927622705698, 0.014598248526453972, -0.011439895257353783, 0.030998950824141502, -0.002640756545588374, -0.025348015129566193, 0.023366941139101982, 0.006166501436382532, 0.03906939551234245, -0.017131425440311432, 0.02198668383061886, -0.015970386564731598, -0.02528306283056736, 0.0008180052973330021, 0.016855373978614807, -0.020638903602957726, 0.004968925379216671, -0.02455233782529831, 0.002056177007034421, -0.012211215682327747, 0.007315362337976694, -0.0052530961111187935, 0.016262676566839218, 0.013437208719551563, -0.048162851482629776, -0.01695280522108078, -0.011967641301453114, -0.04754579812288284, 0.0015000146813690662, 0.010603622533380985, 0.013388494029641151, 0.01355899590998888, 0.014241005294024944, 0.004903972148895264, -0.0020176111720502377, -0.015799883753061295, 0.014557653106749058, -0.002730067353695631, -0.01225993037223816, 0.016173364594578743, 0.001157995080575347, 0.04468785226345062, 0.02697184681892395, -0.003653621766716242, 0.03410046920180321, -0.014354673214256763, 0.011569801717996597, -0.018040772527456284, -0.012576578184962273, 0.022619977593421936, -0.03231425583362579, 0.023074651136994362, -0.017439953982830048, -0.00462386105209589, -0.005464194342494011, -0.03465257212519646, -0.03721822798252106, -0.014427745714783669, 0.0010910120327025652, 0.021304674446582794, 0.029164019972085953, 0.01434655487537384, 0.020135514438152313, -0.029634932056069374, 0.010254498571157455, -0.010652337223291397, -0.005216559860855341, 0.027101753279566765, -0.020265420898795128, 0.005557564552873373, 0.01599474437534809, 0.02495829574763775, -0.010717290453612804, -0.009263960644602776, 0.009353271685540676, 0.0028721527196466923, 0.0004107787099201232, -0.00867938157171011, 0.0026366969104856253, -0.014590129256248474, 0.014646963216364384, 0.015458879061043262, -0.012925701215863228, 0.01074976660311222, 0.017147663980722427, 0.026176169514656067, 0.03268773481249809, 0.008427686989307404, -0.014249124564230442, 0.023935282602906227, -0.00047015005839057267, 0.05501542240381241, 0.004550789017230272, 0.03754299134016037, 0.0020115217193961143, 0.015190946869552135, -0.03562686964869499, -0.01677418313920498, 0.0017699766904115677, 0.019323598593473434, 0.00682415347546339, 0.022084113210439682, -0.03806261718273163, 0.012795794755220413, -0.014192290604114532, 0.02021670714020729, -0.0014360763598233461, -0.018982594832777977, -0.022392641752958298, -0.021191006526350975, -0.0014431806048378348, -0.012592815794050694, -0.016757944598793983, 0.008224708028137684, -0.013161157257854939, -0.008001431822776794, -0.0005795049946755171, 0.03679602965712547, -0.0157755259424448, -0.052157480269670486, 0.012787675485014915, -0.006211156956851482, 0.017310047522187233, -0.01130186952650547, -0.05397617071866989, -0.014508937485516071, 0.033970560878515244, 0.0033613319974392653, 0.008435806259512901, -0.001988179050385952, 0.0026752629783004522, -0.013680783100426197, 0.027215421199798584, 0.012211215682327747, 0.0069175236858427525, -0.013258587568998337, -0.0190800242125988, 0.0047700060531497, -0.011277512647211552, 0.010766005143523216, -0.037965189665555954, 0.02711799181997776, 0.0352371521294117, -0.01768352836370468, -0.018901402130723, 0.01966460421681404, -0.020866239443421364, 0.012113785371184349, -0.029228974133729935, -0.009775468148291111, -0.024893341585993767, -0.03423037752509117, -0.014825585298240185, 0.04822780564427376, -0.019469743594527245, -0.005228738766163588, 0.006941881030797958, -0.019437266513705254, -0.002648875815793872, 0.0011742333881556988, -0.0036252045538276434, 0.0159622672945261, -0.0057158879935741425, 0.003665800439193845, 0.008866121992468834, -0.01304748933762312, -0.015621262602508068, 0.03276892751455307, -0.022035397589206696, -0.03556191921234131, -0.0050054616294801235, -0.012998773716390133, -0.03111261874437332, -0.0029310164973139763, 0.018706543371081352, -0.008029848337173462, -0.04144018888473511, 0.026322314515709877, 0.012714603915810585, 0.006747021339833736, -0.0005992954247631133, 0.010400642640888691, 0.0190800242125988, -0.013550876639783382, -0.011326227337121964, 0.008573831990361214, 0.0029371059499680996, -0.0256890207529068, 0.00028746898169629276, -5.058616807218641e-05, 0.05485304072499275, 0.0070149535313248634, -0.01240607537329197, -0.03465257212519646, -0.01475251279771328, -0.013623949140310287, -0.03361332044005394, 0.015142232179641724, 0.005139427725225687, 0.024048950523138046, -0.003529804525896907, -0.001963821705430746, 0.009166531264781952, -0.010083995759487152, -0.012958178296685219, 0.00025791017105802894, 0.0021881135180592537, 0.024389954283833504, -0.029196497052907944, 0.01510163675993681, -0.024974534288048744, 0.023870328441262245, -0.011862091720104218, -0.00847640261054039, 0.01243855245411396, 0.014468342065811157, -0.003444553352892399, -0.001699949032627046, -0.003452672390267253, 0.04153762012720108, -0.031242525205016136, 0.03067418374121189, 0.014671321026980877, 0.0078877629712224, 0.012576578184962273, 0.015255900099873543, 0.013770094141364098, -0.004510193131864071, 0.01606781594455242, -0.007790333591401577, 0.01350216194987297, 0.010895911604166031, 0.01364830695092678, -0.011431775987148285, -0.030836567282676697, -0.03239544481039047, 0.03390561044216156, 0.01599474437534809, 0.010108353570103645, 0.01945350505411625, 0.03949159011244774, 0.03104766458272934, 0.04322640597820282, -0.02411390282213688, 0.015986625105142593, 0.019242407754063606, 0.013023131527006626, -0.026809463277459145, 0.0034892086405307055, 0.0010250438936054707, -0.02729661390185356, 0.007100204937160015, -0.02047652006149292, 0.02510444074869156, -0.013664545491337776, 0.03663364797830582, 0.014882419258356094, -0.010213902220129967, -0.004562967456877232, 0.023789137601852417, 0.02455233782529831, -0.006259871646761894, -0.018868926912546158, -0.009613084606826305, -0.005472313612699509, 0.0044168224558234215, -0.015718692913651466, 0.003450642805546522, 0.007315362337976694, 0.01878773421049118, -0.028205959126353264, 0.008484521880745888, 0.02326950989663601, 0.011894568800926208, -0.01607593521475792, -0.012373599223792553, 0.015840480104088783, 0.018024533987045288, 0.008009551092982292, -0.0157836452126503, -0.012885105796158314, -0.008525117300450802, 0.030251987278461456, -0.0033065276220440865, -0.0038992261979728937, -0.013932477682828903, 0.007806571666151285, -0.007680724840611219, -0.010676694102585316, 0.009507535956799984, 0.0074330903589725494, 0.015954148024320602, -0.0045670270919799805, -0.03893948718905449, -0.024243809282779694, 0.023805374279618263, -0.001941493945196271, 0.013607710599899292, 0.010416881181299686, -7.503879169235006e-05, -0.028027337044477463, -0.005216559860855341, 0.031015189364552498, 0.018544159829616547, 0.04121285304427147, 0.007157038897275925, 0.00023418699856847525, -0.02385408990085125, 0.03991378843784332, -0.004859316628426313, -0.018414253368973732, -0.020557710900902748, -0.001720246858894825, 0.00532210897654295, -0.017001518979668617, 0.019908178597688675, -0.01304748933762312, 0.044395562261343, 0.005472313612699509, -0.008996028453111649, 0.013948715291917324, 0.0053667644970119, 0.009897255338728428, -0.039653975516557693, 0.054398369044065475, -0.007822809740900993, 0.02715046890079975, -0.018479207530617714, 0.016132770106196404, 0.016343867406249046, 0.026078740134835243, 0.004595444072037935, -0.022262735292315483, -0.022100351750850677, 0.0014766721287742257, -0.011066414415836334, -0.034262850880622864, -0.0034952980931848288, 0.010928388684988022, 0.010968984104692936, -0.0016979192150756717, -0.025201870128512383, 0.025055725127458572, 0.0022936624009162188, -0.0029188378248363733, -0.010847196914255619, -0.011423656716942787, 0.008378972299396992, 0.001239186734892428, 0.003556191688403487, -0.001299065537750721, 1.8616978195495903e-05, 0.01506104040890932, -0.0370558425784111, -0.013185515068471432, 0.021450819447636604, -0.0066495914943516254, -0.005638756323605776, -0.0013569145230576396, -0.001762872445397079, 0.0011133396765217185, -0.023074651136994362, -0.03143738582730293, -0.016676753759384155, -0.012130023911595345, -0.008606309071183205, -0.04397336766123772, -0.025234347209334373, -0.03306121751666069, -0.006511565763503313, -0.015442641451954842, -0.036276403814554214, 0.015531951561570168, 0.03182710334658623, -0.05339159071445465, -0.00452237157151103, 0.014776869677007198, 0.014232886023819447, 0.016822898760437965, 0.012211215682327747, 0.0034932682756334543, -0.0020805345848202705, 0.004571086727082729, 0.017115188762545586, 0.024714721366763115, 0.022587500512599945, 0.010863435454666615, -0.0033613319974392653, -0.04342126473784447, 0.00042955426033586264, 0.0038099156226962805, 0.016311390325427055, 0.00019929998961742967, 0.011667232029139996, -0.009775468148291111, -0.0006596816820092499, -0.008232827298343182, 0.007595473434776068, 0.004603563342243433, -0.0038261539302766323, 0.015231543220579624, 0.008285601623356342, -0.008314019069075584, 0.030739137902855873, -0.01480934675782919, 0.01974579505622387, 0.009613084606826305, -0.05475560948252678, -0.026208646595478058, -0.007343779783695936, -0.0017364851664751768, 0.023204557597637177, -0.014443984255194664, 0.007514282129704952, -0.0201842300593853, 0.007814690470695496, 0.030154557898640633, -0.0004551803576759994, 0.005614398512989283, 0.026663318276405334, 0.036568693816661835, -0.0007723350427113473, -0.02065514214336872, -0.010376285761594772, 0.011318108066916466, -0.00436810776591301, 0.004562967456877232, 0.01930736005306244, 0.010684813372790813, 0.01794334128499031, -0.0038606603629887104, -0.027166707441210747, 0.003964179661124945, -0.02396775782108307, -0.028011100366711617, -0.043323833495378494, 0.007144859991967678, 0.006763259880244732, 0.008858002722263336, -0.02007056213915348, -0.027199184522032738, -0.007315362337976694, 0.010611740872263908, -0.0021353389602154493, -0.00547637278214097, -0.028790539130568504, -0.0050582364201545715, -0.014711916446685791, 0.002746305661275983, 0.009174649603664875, -0.02744275890290737, 0.007802512031048536, -0.011813377030193806, 0.0006860689609311521, 0.02557535097002983, -0.0037612004671245813, -0.010928388684988022, -0.003172561526298523, 0.007989252917468548, 0.024227570742368698, -0.023724183440208435, -0.005208440590649843, -0.003893136978149414, 0.0025149094872176647, -0.03436028212308884, -0.019794510677456856, -0.0008109010523185134, 0.018479207530617714, -0.042252104729413986, -0.015734931454062462, 0.00621927622705698, -0.04631168395280838, 0.033743225038051605, 0.029521264135837555, 0.0077537973411381245, 0.014029907062649727, -0.009669918566942215, 0.0066252341493964195, 0.02106110006570816, -0.008719976991415024, -0.010343808680772781, 0.006089369300752878, -0.011959522031247616, 0.0231233648955822, 0.04407079517841339, -0.007729439530521631, -0.056087151169776917, -0.009921613149344921, 0.03893948718905449, 0.010481834411621094, -0.02755642682313919, -0.0022896029986441135, -0.007546758744865656, -0.01750490814447403, -0.002746305661275983, 0.013640187680721283, 0.021077336743474007, 0.022960983216762543, 0.006060952320694923, -0.021564487367868423, -0.00243574776686728, 0.00572400726377964, -0.0009920598240569234, 0.0012929760850965977, -0.019680842757225037, 0.008768691681325436, -0.07437150180339813, -0.008119159378111362, 0.006466910243034363, 0.009093458764255047, -0.006515625398606062, 0.0011782930232584476, 0.02382161282002926, 0.0014878358924761415, 0.006198978051543236, -0.018657827749848366, -0.004359988495707512, 0.008119159378111362, 0.010611740872263908, 0.023220796138048172, -0.022847313433885574, 0.015166589990258217, -0.016644276678562164, 0.007830929011106491, 0.010392524302005768, 0.00763200968503952, -0.0002157920243917033, 0.011074533686041832, 0.0565093494951725, 0.00492832949385047, 0.023383179679512978, 0.049591824412345886, -0.04553224518895149, 0.026289837434887886, -0.027507711201906204, -0.01420040987432003, 0.004676635842770338, -0.002190143335610628, -0.0076238904148340225, -0.00018775556236505508, 0.023399416357278824, -0.004094086121767759, 0.006353242322802544, 0.0036860983818769455, 0.012446670792996883, 0.01571057364344597, 0.006466910243034363, 0.022327687591314316, -0.018852688372135162, 0.012649649754166603, 0.006747021339833736, -0.0128445103764534, -0.02374042198061943, -0.027215421199798584, 0.007562996819615364, 0.03202196583151817, -0.008025788702070713, -0.019437266513705254, 0.007449328899383545, -0.01896635629236698, 0.02318831905722618, -0.02792990766465664, 0.013526519760489464, -0.005626577418297529, 0.002628577873110771, -0.01225993037223816, 0.04803294688463211, 0.0016410850221291184, -0.009994684718549252, 0.025185631588101387, -0.009255841374397278, 0.011756543070077896, 0.008443925529718399, 0.031648483127355576, 0.015580667182803154, 0.018219392746686935, -0.0074330903589725494, 0.01654684729874134, 0.025299299508333206, 0.015402045100927353, 0.01864158920943737, -0.004230082035064697, 0.03838738426566124, -0.007104264572262764, 0.014720035716891289, -0.0157755259424448, -0.02411390282213688, 0.012625292874872684, 0.0008829585858620703, -0.015036682598292828, -0.028303388506174088, -0.011277512647211552, 0.0007160083623602986, 0.012868867255747318, -0.017586098983883858, 0.0032496934290975332, 0.024081425741314888, 0.00823688693344593, 0.03481495380401611, 0.012706484645605087, 0.001030118321068585, 0.015905432403087616, 0.004343750420957804, -0.0037551112473011017, 0.0006713529583066702, -0.0032639021519571543, -0.004250379744917154, 0.011188201606273651, -0.011918925680220127, -0.01739123836159706, 0.0019029279937967658, -0.00511913001537323, 0.020460281521081924, 0.005772722419351339, 0.0031035486608743668, -0.0028802717570215464, -0.006312646437436342, -0.03452266380190849, -0.014070503413677216, -0.01255222037434578, -0.007749737706035376, -0.019258646294474602, 0.01510163675993681, -0.007705082185566425, -0.015531951561570168, -0.012820152565836906, -0.01214626245200634, 0.025672782212495804, -0.003456732025370002, -0.04523995518684387, -0.01012459211051464, -0.006945940665900707, -0.005111010745167732, 0.023513086140155792, -0.024357477203011513, 0.02455233782529831, -0.03358084335923195, -0.0007307243649847806, 0.003781498409807682, 0.005890449974685907, -0.015897313132882118, 0.034587617963552475, 0.028417058289051056, -0.02091495506465435, 0.01390811987221241, -0.0273453276604414, -0.0032841998618096113, 0.021775584667921066, 0.0045670270919799805, 0.0057158879935741425, -0.002214500680565834, 0.00587015226483345, -0.00859007053077221, -0.013948715291917324, 0.016238318756222725, -0.028676871210336685, -0.004069728776812553, -0.015767406672239304, 0.023350702598690987, -0.0203628521412611, -0.013924358412623405, -0.039978738874197006, 0.00979982502758503, 0.009564369916915894, 0.019583411514759064, -0.003696247236803174, -0.02854696474969387, -0.0077943927608430386, 0.0451425276696682, 0.0016258616233244538, 0.019697081297636032, -0.008050146512687206, -0.03111261874437332, -0.004579205997288227, -0.01919369213283062, -0.015402045100927353, 0.006154322996735573, 0.00821658968925476, 0.001145816408097744, 0.002512879902496934, 0.014127337373793125, -0.004749708343297243, 0.009816063567996025, 2.827433854690753e-05, 0.010611740872263908, 0.02947254851460457, -0.012909463606774807, -0.0038971963804215193, 0.0008890479221008718, -0.0002489029720891267, 0.009239603765308857, 0.01355899590998888, -0.003133995458483696, 0.0022205901332199574, -0.01093650795519352, -0.00753052020445466, 0.016303271055221558, 0.011269393377006054, 0.007047430146485567, -0.012998773716390133, 0.019502220675349236, 9.855581083684228e-06, 0.022002922371029854, -0.02015175297856331, -0.014500818215310574, -0.02385408990085125, 0.00472535053268075, -0.0004815676365979016, -0.001997313229367137, -0.0012554250424727798, -0.00556974345818162, 0.0031989486888051033, -0.02810852974653244, 0.03354836627840996, 0.02426004782319069, -0.02939135581254959, 0.005001401994377375, 0.008245006203651428, -0.010254498571157455, -0.002360645681619644, 0.004327511880546808, -0.0038403624203056097, -0.010067757219076157, -0.022473832592368126, 0.0023687647189944983, -0.02667955681681633, 0.022360164672136307, -0.01113948691636324, -0.009897255338728428, -0.021808061748743057, 0.00035394460428506136, 0.01592979021370411, -0.010766005143523216, -0.08593317866325378, 0.014013668522238731, 0.0011427716817706823, -0.0060568926855921745, -0.0010372225660830736, -0.01466320175677538, 0.0042219627648591995, 0.0064222551882267, -0.01692032814025879, 0.02102862298488617, -0.028579439967870712, 0.020573949441313744, -0.011326227337121964, -0.02396775782108307, -0.024211332201957703, -0.0034952980931848288, 0.0050054616294801235, 0.014801227487623692, 0.004684755112975836, -0.024974534288048744, -0.008484521880745888, 0.019242407754063606, -0.015069159679114819, -0.017342524603009224, -0.021239720284938812, -0.009255841374397278, 0.006876927800476551, -0.0005678337183780968, 0.0064019570127129555, -0.012454790063202381, -0.01526401937007904, 0.01300689298659563, -0.00919088814407587, 0.008269364014267921, 0.012706484645605087, -0.001260499469935894, -0.02609497867524624, 0.011326227337121964, -0.017553621903061867, -0.019567174836993217, -0.007299124263226986, -0.005817377474159002, -0.02982979081571102, -0.0011904716957360506, -0.013494042679667473, -0.012219334952533245, 0.02260373905301094, -0.00022188140428625047, 0.00414686044678092, 0.03393808752298355, -0.034295327961444855, -0.009962208569049835, -0.020720094442367554, 0.015125993639230728, -0.024243809282779694, -0.01364830695092678, -0.01852792128920555, -0.008452044799923897, -0.005853913724422455, 0.011131367646157742, 0.003347123507410288, 0.002039938699454069, 0.01581612229347229, -0.0013264676090329885, 0.008265304379165173, 0.01632762886583805, -0.007481805514544249, 0.010335689410567284, -0.008257185108959675, -0.010392524302005768, 0.010871554724872112, 0.039686452597379684, -0.002328168833628297, 0.004250379744917154, -0.01170782744884491, -0.021970445290207863, -0.021483294665813446, -0.025331776589155197, -0.00036510845529846847, 0.007932418957352638, 0.00933703314512968, 0.01808948628604412, 0.008630665950477123, 0.01225993037223816, 0.012065070681273937, -0.028563203290104866, -0.015166589990258217, -0.024779673665761948, 0.017813434824347496, 0.006657710764557123, 0.010246379300951958, -0.012779557146131992, -0.00787152536213398, 0.024682244285941124, -0.021093575283885002, 0.022181542590260506, -0.004473656881600618, -0.005289632361382246, 0.005281513091176748, -0.008711857721209526, -0.010433119721710682, 0.012268049642443657, -0.015247780829668045, -0.036601170897483826, 0.016384463757276535, -0.014939253218472004, 0.0019557024352252483, 0.011334346607327461, -0.001626876532100141, 0.008354614488780499, -0.023058412596583366, -0.004270677920430899, -0.0012199037009850144, 0.028887968510389328, 0.03647126257419586, -0.009475058875977993, 0.004396524745970964, -0.021564487367868423, 0.0011590099893510342, 0.001349810278043151, 0.013778213411569595, 0.007108324207365513, -0.018836449831724167, 0.004441180266439915, 0.0031745913438498974, -0.0037632302846759558, -0.007599533069878817, 0.011236916296184063, 0.029586216434836388, -0.018268108367919922, 0.02723165974020958, -0.005549445282667875, -0.01989194005727768, 0.003976358100771904, 0.011602278798818588, 0.00923148449510336, 0.023074651136994362, -0.017131425440311432, 0.010619860142469406, 0.018950117751955986, -0.0022794539108872414, -0.0012554250424727798, -0.01658744178712368, 0.0025291182100772858, -0.004140771459788084, -0.0060162972658872604, -0.00663335295394063, 5.353570668376051e-05, -0.022392641752958298, 0.01948598213493824, 0.017033996060490608, -0.005338347051292658, -0.004502073861658573, 0.00873621553182602, -0.010709171183407307, -0.014046145603060722, 0.0018044831231236458, -0.00847640261054039, 0.008025788702070713, -0.00933703314512968, 0.021775584667921066, 0.011090771295130253, 0.003385689342394471, 0.007770035415887833, 0.0011265333741903305, 0.01396495383232832, -0.0027239779010415077, 0.00038286909693852067, 0.0005404315306805074, -0.02044404298067093, 0.029699884355068207, -0.02047652006149292, -0.010579264722764492, 0.00386674958281219, -0.003996656276285648, 0.003203008323907852, 0.02227897383272648, -0.0008504819124937057, 0.0172450952231884, -0.00787152536213398, 0.021970445290207863, -0.0024296583142131567, -0.011318108066916466, -0.022473832592368126, -0.022847313433885574, 0.027134230360388756, -0.011236916296184063, -0.026988085359334946, 0.02158072590827942, 0.018690304830670357, 0.012617173604667187, 0.004855257458984852, -0.004114383831620216, 0.041602570563554764, 0.008947313763201237, 0.007782214321196079, -0.010554906912147999, -0.019404791295528412, 0.025299299508333206, -0.005545385647565126, -0.010449358262121677, 0.010246379300951958, 0.00017849463620223105, -0.01666051521897316, 0.013607710599899292, -0.017569860443472862, 0.01904754713177681, 0.04144018888473511, -0.01396495383232832, 0.02594883367419243, -0.012186857871711254, 0.011699708178639412, -0.01875525712966919, -0.041375234723091125, -0.005516968667507172, 0.011667232029139996, 0.007481805514544249, -0.006507506128400564, -0.02598130889236927, 0.011586040258407593, -0.004627920687198639, 0.005086653400212526, 0.03320736065506935, 0.012722722254693508, 0.0007012923597358167, 0.02411390282213688, -0.006105607841163874, 0.007684784475713968, 0.015158470720052719, -0.009588726796209812, 0.013875643722712994, -0.015791764482855797, 0.006775438319891691, 0.0006672933814115822, -0.00497298501431942, -0.017602337524294853, 0.01044123899191618, 0.013437208719551563, 0.0010676694801077247, -0.001869436469860375, -0.035432010889053345, -0.021402103826403618, -0.012081309221684933, -0.002478373469784856, 0.014849942177534103, -0.03819252550601959, 0.009604965336620808, 0.0028132887091487646, 0.002236828440800309, 0.009466939605772495, 0.012722722254693508, -0.00373887293972075, 0.011577920988202095, -0.012876986525952816, -0.009328913874924183, -0.03060923144221306, 0.009929731488227844, 0.010563026182353497, 0.003355242544785142, -0.0027320971712470055, 0.012397956103086472, 0.006113727111369371, -0.010709171183407307, 0.0037754091899842024, 0.015036682598292828, -0.005833616014569998, 0.022360164672136307, 0.018852688372135162, -0.024536099284887314, -0.010392524302005768, -0.016741706058382988, 0.027702571824193, -0.02976483851671219, -0.016741706058382988, -0.003503417130559683, -0.009174649603664875, -0.006385718937963247, 0.009734871797263622, 0.0057158879935741425, 0.0011508908355608582, 0.019908178597688675, 0.0065724593587219715, 0.0010666545713320374, -0.010757885873317719, 0.002752395113930106, -0.004636039957404137, -0.002687441650778055, -0.016871612519025803, 0.007709141820669174, 0.028352104127407074, -0.013299182988703251, -0.011691589839756489, -0.011545444838702679, -0.0017862149979919195, -0.02708551473915577, 0.02172687090933323, -0.009004147723317146, 0.002027760026976466, 0.01971331797540188, 0.0005581922014243901, -0.0021495474502444267, -0.0062070973217487335, 0.0014279570896178484, -0.015475117601454258, -0.010019042529165745, 0.0029614632949233055, 0.011171963065862656, 0.005581921897828579, 0.015718692913651466, -0.004351869225502014, -0.005740245804190636, -0.002322079613804817, -0.02234392613172531, 0.004055520053952932, -0.0050582364201545715, -0.009970327839255333, 0.00708396639674902, -0.026841940358281136, 0.059692058712244034, -0.017586098983883858, 0.0015355360228568316, -0.0006723678670823574, 0.021255958825349808, 0.0008986894390545785, -0.005707769189029932, 0.004226022399961948, 0.032752688974142075, -0.00873621553182602, -0.010782243683934212, -0.0069702984765172005, 0.024503622204065323, 0.010619860142469406, -0.017017757520079613, 0.001985134556889534, 0.018739020451903343, 0.0012706484412774444, 0.023074651136994362, 0.014452103525400162, 0.0032273659016937017, -0.006093428935855627, -0.0004389420500956476, 0.005918866954743862, 0.011131367646157742, 0.0077537973411381245, -0.010839077644050121, -0.004033192526549101, 0.023172080516815186, 0.020801285281777382, 0.001853198162280023, -0.010830958373844624, 0.0021272196900099516, -0.03465257212519646, -0.0179758183658123, 0.01399743091315031, -7.960582297528163e-05, 0.02300969697535038, 0.00034379566204734147, 0.005139427725225687, 0.004445239901542664, -0.0016918298788368702, 0.027312852442264557, 0.01959965005517006, -0.017959579825401306, -0.00707178795710206, -0.0013021101476624608, -0.001085937605239451, -0.00207343022339046, -0.0060365949757397175, -0.009442582726478577, -0.030917758122086525, -0.009069100953638554, 0.013055608607828617, 0.027166707441210747, 0.004595444072037935, -0.003121816786006093, -0.001634995685890317, 0.00587015226483345, -0.005857973359525204, -0.02245759405195713, -0.0024438670370727777, 0.00017659171135164797, -0.024357477203011513, -0.013583353720605373, -0.0035927279386669397, -0.0028721527196466923, 0.0066698892042040825, -0.007445269264280796, 0.00869561918079853, -0.010230140760540962, 0.006125905551016331, 0.006251752842217684, -0.0190800242125988, -0.01566997729241848, 0.007558937184512615, 0.007055549416691065, 0.03361332044005394, 0.013201752677559853, -0.01995689421892166, 0.010481834411621094, -0.0025920416228473186, 0.004303154535591602, -0.0019871641416102648, 0.002594071440398693, -0.010360047221183777, 0.0014573890948668122, -0.012154381722211838, -0.007323481608182192, -0.035204675048589706, -0.026614604517817497, -0.004347809590399265, 0.007997372187674046, 0.00546825397759676, -0.006759200245141983, 0.010855316184461117, -0.012674007564783096, -0.02377289906144142, -0.005472313612699509, -0.009280199185013771, -0.0010148949222639203, 0.012527862563729286, -0.009012266993522644, 0.014646963216364384, 0.009816063567996025, 0.0014066443545743823, 0.006539982743561268, -0.00979982502758503, -0.009199007414281368, 0.0073356605134904385, 0.0009555235737934709, 0.013510281220078468, -0.013234229758381844, 0.004465537611395121, -0.02866063266992569, -0.009548131376504898, -0.01243855245411396, 0.016790421679615974, -0.014655082486569881, -0.02711799181997776, 0.005650934763252735, -0.028043575584888458, -0.023935282602906227, -0.0161408893764019, -0.0013102293014526367, 0.02010303921997547, -0.004177307244390249, -0.009475058875977993, 0.011383061297237873, -0.004169188439846039, 0.026923133060336113, 0.013745736330747604, 0.004335631150752306, -0.012040712870657444, 0.02726413682103157, 0.004234141670167446, -0.017521146684885025, -0.027036800980567932, 0.004144830629229546, 0.0007347839418798685, 0.020427804440259933, -0.005862032994627953, 0.012836391106247902, 0.004364048130810261, 0.0009382703574374318, -0.005598160438239574, 0.005862032994627953, -0.025624066591262817, 0.008849883452057838, -0.006081250496208668, 0.021223481744527817, -0.03351588919758797, 0.0036515919491648674, -0.0221977811306715, -0.008009551092982292, -0.003854570910334587, -0.022035397589206696, 0.049591824412345886, -0.035464487969875336, 0.0161490086466074, -0.004595444072037935, 0.0001510924776084721, -0.021337151527404785, 0.012357360683381557, -0.013664545491337776, 0.00057696778094396, -0.023172080516815186, 0.0161490086466074, 0.004493954591453075, -0.0015335062053054571, -0.007351898588240147, 0.004924270324409008, 0.022392641752958298, -0.011724065989255905, -0.021272197365760803, -0.007960835471749306, 0.004433060996234417, 0.00859007053077221, -0.030560515820980072, 0.014931133948266506, 0.011983878910541534, 0.008963552303612232, 0.01552383229136467, 0.004067698959261179, -0.006332944147288799, -0.017667289823293686, 0.008768691681325436, -0.0016492042923346162, 0.0060568926855921745, 0.008598189800977707, -0.005277453456073999, 0.005070414859801531, 0.002839675871655345, -0.0009149277466349304, -0.013242349028587341, 0.0037530814297497272, 0.032898832112550735, 0.00451425276696682, 0.025818927213549614, -0.005719947628676891, 0.0031867700163275003, -0.0024540158919990063, 0.015824241563677788, 0.02799486182630062, -0.0038017963524907827, -0.01099334191530943, -0.013981192372739315, -0.0074330903589725494, 0.003692187601700425, -0.019615888595581055, -0.017439953982830048, -0.022230258211493492, 0.0023322284687310457, 0.02033037506043911, -0.01095274556428194, -0.016351986676454544, 0.004822780843824148, -0.002837646286934614, 0.008143517188727856, 0.015272138640284538, -0.0027666036039590836, 0.003223306266590953, -0.022441355511546135, -0.012276168912649155, -0.010189545340836048, -0.00904474314302206, -0.00010085518442792818, 0.009174649603664875, 0.02289602905511856, 0.006060952320694923, -0.002939135767519474, -0.0038768986705690622, -0.0047375294379889965, 0.0010341779561713338, 0.00016200260142795742, 0.04296658933162689, 0.0065521616488695145, -0.006190858781337738, 0.023642992600798607, 0.004185426514595747, -0.0035967875737696886, -0.011001461185514927, -0.014005550183355808, -0.012316764332354069, -0.005297751631587744, -0.02583516575396061, 0.014070503413677216, 0.011935164220631123, -0.007469626609236002, -2.908308306359686e-05, -0.004989223554730415, -0.0003823616716545075, 0.005289632361382246, -0.0021475176326930523, 0.01599474437534809, -0.011188201606273651, -0.008760573342442513, 0.013323540799319744, -0.01113948691636324, -0.03140490874648094, -0.0006185784586705267, 0.0027442758437246084, -0.023902805522084236, -0.012446670792996883, 0.0072382306680083275, 0.025672782212495804, -0.029440071433782578, -0.0013802570756524801, 0.002780812093988061, 0.00803796760737896, 0.015483236871659756, 0.0128445103764534, -0.019940655678510666, 0.0306417066603899, -0.003450642805546522, 0.00904474314302206, -0.021743109449744225, -0.010977103374898434, 0.00243574776686728, 0.007757856510579586, -0.0016126680420711637, -0.01526401937007904, 0.01618148386478424, -0.021012384444475174, -0.009109696373343468, -0.016230199486017227, -0.011033937335014343, 0.011918925680220127, -0.0025189691223204136, 0.02102862298488617, 0.006560280919075012, -0.0031400849111378193, 0.0015010295901447535, -0.018722781911492348, -0.011374942027032375, 0.03237920626997948, 0.008452044799923897, -0.009166531264781952, -0.0011346525279805064, -0.0009316735086031258, -0.023107128217816353, 0.001890749204903841, 0.002042983425781131, -0.01607593521475792, 0.007619831245392561, 0.0006206082180142403, 0.01079036295413971, -0.005338347051292658, -0.029293926432728767, 0.010571145452558994, 0.0017486639553681016, 0.010425000451505184, -0.0042016650550067425, -0.004952687304466963, -0.005484492052346468, 0.008849883452057838, 0.01680666022002697, 0.014776869677007198, -0.011870210990309715, -0.0031583530362695456, -0.0002945732558146119, 0.015946028754115105, 0.005525087937712669, -0.011277512647211552, 0.004008834715932608, -0.019161216914653778, 0.0034303448628634214, 0.006251752842217684, 0.0016989341238513589, -0.011431775987148285, 0.022473832592368126, 0.007644188590347767, -0.016985280439257622, -0.0017780958442017436, -0.006085310131311417, 0.013550876639783382, -0.010814719833433628, 0.005184083245694637, 1.88707017514389e-05, 0.011196320876479149, -0.00884176418185234, -0.015142232179641724, -0.004648218862712383, -0.02362675406038761, 0.006239573936909437, 0.024276286363601685, -0.01834929920732975, -0.013380374759435654, 0.018544159829616547, -0.006941881030797958, -0.024763435125350952, 0.0008910777396522462, 0.02044404298067093, 0.02120724506676197, -0.0137619748711586, -0.0055007305927574635, 0.013299182988703251, 0.026890655979514122, -0.004481776151806116, -0.022619977593421936, 0.005634696688503027, 0.03702336549758911, -0.006052833050489426, -0.012925701215863228, 0.0201842300593853, -0.006349182687699795, 0.0012412164360284805, 0.0244061928242445, -0.04267430305480957, 0.021937968209385872, -0.03897196426987648, -0.021856777369976044, 0.004258499015122652, -0.005419538822025061, -0.00022124708630144596, 0.022798599675297737, -0.003381629940122366, -0.0072382306680083275, -0.011228797025978565, -0.0009423299343325198, 0.010822839103639126, 0.012665888294577599, -0.014622606337070465, -0.006223335396498442, -0.00462386105209589, 0.004130622372031212, 0.03500981628894806, 0.00988913606852293, 0.023074651136994362, 0.005732126533985138, -0.017569860443472862, -0.0010199693497270346, -0.003907345235347748, -0.0016542787197977304, 0.0010889822151511908, 0.016579322516918182, -0.013623949140310287, 0.011870210990309715, 0.004388405475765467, 0.003138055093586445, 0.004043341148644686, 0.00306498259305954, 0.005395181477069855, -0.0027097694110125303, 0.01000280398875475, -0.0040514604188501835, 0.015645619481801987, 0.024016473442316055, 0.018121963366866112, -0.004161069169640541, -0.0030081486329436302, 0.003470940515398979, -0.01721261814236641, -0.013307302258908749, 0.03078785166144371, 0.0018704513786360621, 0.009036623872816563, -0.008906717412173748, 0.018592875450849533, -0.01364830695092678, 0.010822839103639126, -3.472843673080206e-05, -0.0016035339795053005, -0.0058254967443645, 0.010416881181299686, 0.010075876489281654, 0.02869310975074768, -0.005070414859801531, -0.009840421378612518, 0.0063573019579052925, 0.01290134433656931, 0.002419509459286928, -0.0025027308147400618, 0.02198668383061886, -0.013453447259962559, -0.001882630051113665, 0.012885105796158314, -0.002018626080825925, -0.0046198018826544285, 0.025916356593370438, -0.006487208418548107, 0.00507447449490428, -0.002695560920983553, -0.0138512859120965, 0.02624112367630005, -0.0006277125212363899, 0.0006124890642240644, 0.005281513091176748, -0.013372255489230156, -0.03049556165933609, 0.0014604338211938739, 0.01361582987010479, 0.0077740950509905815, 0.013526519760489464, -0.015288377180695534, 0.012300526723265648, 0.006024416070431471, 0.0043924651108682156, 0.022392641752958298, -0.016246438026428223, 0.0007068742997944355, -0.012535981833934784, 0.00220638164319098, -0.018300585448741913, 0.001562938210554421, 0.010465596802532673, 0.007254468742758036, 0.005817377474159002, -0.017423715442419052, 0.02135338820517063, -0.010830958373844624, 0.01530461572110653, 0.025153156369924545, -0.012065070681273937, 0.027735048905014992, 0.01290134433656931, 0.004579205997288227, -0.006125905551016331, -0.006060952320694923, -0.008139457553625107, -0.006889106705784798, -0.022149067372083664, 9.996714652515948e-05, -0.004883674439042807, 0.0425768718123436, -0.008106980472803116, -0.0036434726789593697, -0.002175934612751007, 0.010798482224345207, 0.016855373978614807, 0.030560515820980072, 0.013786332681775093, 0.021515771746635437, 0.004453358706086874, -0.0011224737390875816, -0.0010362076573073864, 0.019989369437098503, 0.00040671913302503526, 0.002121130470186472, -0.00037754091317765415, 0.013737617991864681, 0.014996087178587914, -0.010871554724872112, -0.018706543371081352, -0.0029147781897336245, -0.011309988796710968, 0.002717888681218028, 0.008119159378111362, 0.014874299988150597, -0.003700306871905923, 0.004230082035064697, -0.001007283222861588, -0.025883879512548447, 0.024097664281725883, -0.012471028603613377, 0.01981074921786785, 0.008297780528664589, 0.018901402130723, 0.007725379895418882, -0.0054235984571278095, 0.013826928101480007, -0.023318225517868996, 0.012162500992417336, -0.0009976417059078813, 0.010319451801478863, -0.005204380955547094, 0.022441355511546135, 0.019144978374242783, -0.007380316033959389, -0.009442582726478577, -0.012568458914756775, -0.006243633572012186, -0.008614428341388702, -0.026176169514656067, 0.0011021759128198028, -0.0018460938008502126, 0.021678155288100243, 0.010067757219076157, 0.02175934612751007, -0.015207185409963131, 0.02510444074869156, 0.009783587418496609, -0.0012016355758532882, 0.011009580455720425, -0.005358645226806402, -0.02565654367208481, 0.005931045860052109, 0.003444553352892399, -0.003326825564727187, -0.0009529863018542528, -0.010774124413728714, 0.0044898949563503265, 0.01662803813815117, 0.019144978374242783, 0.010912150144577026, -0.020411565899848938, 0.0022043518256396055, 0.008931075222790241, 0.00898790918290615, 0.01747243106365204, 0.004676635842770338, 0.0020927132572978735, 0.0017598278354853392, 0.007035251706838608, -0.01585671864449978, 0.00022708273900207132, 0.010425000451505184, -0.008338376879692078, 0.00205414742231369, 0.007863406091928482, -0.015247780829668045, 0.007100204937160015, -0.010912150144577026, 0.004644159227609634, -0.016132770106196404, 0.0004909554263576865, -0.023399416357278824, -0.0074777458794415, 0.012138143181800842, -0.012909463606774807, 0.004611682612448931, -0.011431775987148285, -0.014841822907328606, -0.025526637211441994, 0.004461477976292372, 0.01951845921576023, 0.013591472990810871, 0.0076035927049815655, 0.02481215074658394, -0.0007423956412822008, 0.014987967908382416, -0.027036800980567932, 0.017423715442419052, -0.0014340465422719717, 0.019437266513705254, 0.015239662490785122, -0.00657651899382472, 0.009718633256852627, -0.030024651437997818, -0.01951845921576023, -0.007469626609236002, 0.016644276678562164, 0.0006540998001582921, -0.002520998939871788, 0.0026245182380080223, 0.011464253067970276, -0.007973014377057552, 0.0034770299680531025, 0.0024296583142131567, -0.0005465209251269698, -0.009621203877031803, -0.018251869827508926, 0.022993458434939384, -0.014833703637123108, 0.004278797190636396, 0.004538610111922026, -0.005983820650726557, -0.02143458090722561, 0.017748482525348663, 0.011837733909487724, -0.004672576207667589, -0.006889106705784798, -0.008996028453111649, -0.014062384143471718, -0.017261331900954247, -0.012998773716390133, 0.020833762362599373, 0.006913464050740004, 0.0341329462826252, -0.006958119571208954, 0.016311390325427055, -0.0017070532776415348, -0.010270736180245876, -0.017131425440311432, 0.016871612519025803, -0.008468283340334892, -0.008996028453111649, 0.0004942538216710091, -0.0017912895418703556, -0.010213902220129967, 0.016360105946660042, 0.011472372338175774, -0.015540070831775665, 0.007567056454718113, 0.021077336743474007, 0.008395210839807987, -0.0179758183658123, -0.011171963065862656, 0.01431407779455185, -0.003010178217664361, -0.0319245345890522, -0.006807914935052395, -0.009020386263728142, 0.013697021640837193, 0.00985665898770094, 0.01139118056744337, -0.00487149553373456, -0.015645619481801987, 0.03452266380190849, 0.007266647648066282, -0.035172197967767715, -0.018333062529563904, -0.0013153038453310728, 0.032639019191265106, -0.004656337667256594, -0.02318831905722618, -0.007079906761646271, 0.002742246026173234, -0.017992056906223297, -0.01765105314552784, 0.011626636609435081, -0.00015692813030909747, -0.01878773421049118, 0.009694276377558708, -0.016595561057329178, 0.03181086480617523, 0.007181396242231131, -0.005525087937712669, -0.004940508399158716, -0.017293808981776237, -0.006101548206061125, 0.005492611322551966, 0.01014894898980856, -0.01732628606259823, -1.14889271571883e-05, -0.024795912206172943, 0.0106442179530859, -0.018138201907277107, 0.008793049491941929, 0.013177395798265934, -0.014825585298240185, -0.0033633618149906397, -0.016010982915759087, -0.002853884594514966, 0.00933703314512968, 0.009158411994576454, 0.020525235682725906, -0.0068200938403606415, -0.037737853825092316, 0.0009631352731958032, -0.021483294665813446, -0.0033349446021020412, 0.005383002571761608, -0.00136706349439919, 0.01014894898980856, -0.0055413260124623775, 4.909554263576865e-05, 0.025851402431726456, -0.006698306649923325, -0.0037490217946469784, 0.008979789912700653, -0.006223335396498442, 0.001673561753705144, 0.010027161799371243, -0.004575146362185478, -0.03497733920812607, 0.001933374791406095, 0.00556974345818162, -0.027767524123191833, -0.013745736330747604, 0.005581921897828579, 0.004077847581356764, -0.0030731018632650375, -0.003144144546240568, -0.01985946297645569, -0.012609054334461689, -0.0019201812101528049, 0.014923014678061008, -0.011423656716942787, 0.004895852878689766, 0.024893341585993767, -0.003791647497564554, 0.022230258211493492, 0.023285748437047005, -0.011610398069024086, -0.0008002446265891194, 0.012568458914756775, -0.01750490814447403, -0.011862091720104218, 0.019615888595581055, 0.0004795378481503576, -0.010392524302005768, -0.007445269264280796, -0.012706484645605087, 0.01093650795519352, -0.01592167094349861, -0.004672576207667589, 0.02274988405406475, 0.0056184581480920315, 0.023496847599744797, -0.00024611203116364777, -0.009986566379666328, 0.01603533886373043, -0.009564369916915894, 0.00985665898770094, 0.017634814605116844, 0.012787675485014915, -0.009101578034460545, 0.009661799296736717, 0.01546699833124876, 0.017293808981776237, 0.035204675048589706, -0.005086653400212526, -0.01849544420838356, -0.008963552303612232, 0.024747198447585106, -0.017001518979668617, -0.010554906912147999, 0.0007753797108307481, 0.045012619346380234, -0.003075131680816412, 0.010514311492443085, 0.0006789647159166634, -0.036243926733732224, 0.011610398069024086, -0.01600286364555359, -0.005922926589846611, -0.015791764482855797, 0.018998833373188972, 0.03046308644115925, 0.0020176111720502377, -0.018722781911492348, -0.012211215682327747, 0.014638843946158886, -0.00030117007554508746, 0.002413420006632805, 0.03268773481249809, 0.024909580126404762, 0.010222021490335464, 0.016985280439257622, 0.004603563342243433, -0.006410076282918453, -0.02050899714231491, 0.018982594832777977, 0.010360047221183777, 0.0035074767656624317, -0.013201752677559853, -0.0073559582233428955, -0.002602190477773547, -0.027751287445425987, 0.012779557146131992, -0.02374042198061943, 0.006791676860302687, -0.008728096261620522, -0.014330316334962845, 0.001601504161953926, -0.007441209629178047, 0.012812033295631409, 0.016904089599847794, -0.0035277747083455324, 0.006714544724673033, -0.016084054484963417, 0.005391121841967106, -0.0006175635498948395, -0.0014117187820374966, -0.0022835135459899902, -0.0015365509316325188, -0.009117815643548965, -0.009158411994576454, 0.009621203877031803, -0.028092291206121445, 0.0078877629712224, 0.014443984255194664, -0.011626636609435081, -0.03945911303162575, 0.005269334185868502, 0.0042747375555336475, 0.0057443054392933846, -0.01405426487326622, -0.0015609083930030465, 0.004102205391973257, -0.005305870436131954, -0.005184083245694637, 0.009207126684486866, 0.014987967908382416, -0.007416851818561554, -0.0016075934981927276, 0.013802571222186089, 0.026403505355119705, 0.009377628564834595, 0.006235514301806688, -0.012893225066363811, -0.02065514214336872, 0.004534550476819277, 0.0016989341238513589, 0.008922955952584743, -0.001895823748782277, -0.0047375294379889965, 0.0045426697470247746, -0.009174649603664875, 0.017699766904115677, 0.016571203246712685, -0.0002516939421184361, 0.0016451446572318673, -0.010116472840309143, 0.002555505372583866, -0.007059609051793814, -0.020167991518974304, 0.004644159227609634, -0.003393808612599969, 0.012081309221684933, 0.014370911754667759, -0.016084054484963417, -0.02106110006570816, 0.008671262301504612, -0.009645561687648296, -0.01489865779876709, -0.004550789017230272, -0.010977103374898434, -0.01014894898980856, -0.007899941876530647, -0.01882021129131317, 0.030333179980516434, 0.0004262558650225401, -0.004806542303413153, 0.001566997729241848, 0.00557786226272583, 0.009442582726478577, -0.005634696688503027, 0.004282856360077858, -0.004652278497815132, -0.009280199185013771, -0.003196918871253729, 0.004087996669113636, -0.026695795357227325, 0.0068931663408875465, 0.023025935515761375, -0.001345750642940402, -0.015385806560516357, 0.00738437520340085, 0.00783498864620924, -0.0051759639754891396, 0.007327541243284941, -0.010985222645103931, 0.006138084456324577, -0.003452672390267253, 0.016822898760437965, 0.01585671864449978, -0.02729661390185356, 0.01053055003285408, -0.00657651899382472, -0.00948317814618349, -0.0043924651108682156, -0.005090713035315275, -0.010343808680772781, 0.000879406463354826, -0.04748084396123886, 0.005244976840913296, -0.02114229090511799, 0.00012514923582784832, -0.03384065628051758, -0.0038139750249683857, -0.00036612333497032523, 0.01721261814236641, -0.012389836832880974, 0.008362733758985996, 0.01971331797540188, -0.007636069320142269, -0.005338347051292658, 0.001660368056036532, -0.022084113210439682, 0.015093517489731312, 0.024601053446531296, -0.019875701516866684, 0.03137243166565895, 0.01791086606681347, 1.064053867594339e-05, -0.0030000293627381325, -0.006889106705784798, -0.02359427697956562, 0.01834929920732975, 0.0028417056892067194, 0.004477716516703367, 0.003190829651430249, -0.014070503413677216, 0.01864158920943737, 0.0039032858330756426, -0.007031192071735859, 0.0032679615542292595, 0.0138512859120965, 0.017732243984937668, 0.005383002571761608, 0.008253125473856926, -0.0161490086466074, -0.010928388684988022, -0.003623174736276269, -0.01012459211051464, -0.02172687090933323, -0.0023301986511796713, -0.0005465209251269698, 0.00031410998781211674, 0.006154322996735573, 0.0010849226964637637, 0.0011549504706636071, -0.008817407302558422, 0.012397956103086472, 0.003521685255691409, -0.009466939605772495, -0.011025818064808846, 0.01963212713599205, 0.000807348929811269, -0.008443925529718399, 0.019437266513705254, -0.018657827749848366, 0.02447114698588848, -0.02106110006570816, -0.010197663679718971, -0.023025935515761375, -0.021921729668974876, 0.023025935515761375, 0.004526431206613779, 0.0050582364201545715, -0.014492698945105076, 0.02015175297856331, -0.019826987758278847, -0.001797378878109157, -0.027946146205067635, 0.010814719833433628, -0.011553564108908176, 0.016311390325427055, -0.005525087937712669, -0.002427628729492426, 0.013810689561069012, -0.007221992127597332, 0.016741706058382988, -0.00024344792473129928, -0.01194328349083662, -0.012113785371184349, 0.009020386263728142, -0.0076766652055084705, -0.002939135767519474, -0.022149067372083664, -0.004534550476819277, -0.009458820335566998, -0.018511682748794556, 0.007177336607128382, -0.0027787822764366865, -0.0031136975158005953, -0.01205695141106844, 0.009994684718549252, -0.013282944448292255, 0.01546699833124876, -0.0036089662462472916, -0.0005297751631587744, 0.01896635629236698, -0.01290134433656931, 0.004977044649422169, -0.00923148449510336, -0.04267430305480957, 0.009199007414281368, 0.020346613600850105, -0.015125993639230728, -0.030284464359283447, -0.008817407302558422, 0.0017831703880801797, 0.004859316628426313, 0.012048832140862942, 0.009588726796209812, 0.010652337223291397, 0.013745736330747604, 0.012357360683381557, 0.01185397244989872, -0.001439120969735086, -0.0004952687304466963, -0.00968615710735321, -0.008646904490888119, 0.0012980506289750338, -0.015913551673293114, -0.012162500992417336, -0.01044123899191618, -0.0036089662462472916, -0.00376526010222733, 0.00983230210840702, -0.019015071913599968, -0.014338435605168343, 0.011959522031247616, -0.0034425235353410244, 0.004047400783747435, 0.016904089599847794, 0.019583411514759064, 0.002567684045061469, -0.01951845921576023, 0.011683470569550991, 0.012966297566890717, -0.00924772210419178, -0.006479089148342609, 0.009734871797263622, -0.020054323598742485, 0.02149953320622444, -0.01735876314342022, -0.04040093719959259, -0.00847640261054039, -0.016904089599847794, 0.00727476691827178, 0.008257185108959675, 0.014638843946158886, -0.033483412116765976, 0.007567056454718113, 0.012016355991363525, 0.012162500992417336, -0.008711857721209526, -0.006487208418548107, -0.003168501891195774, -0.024536099284887314, 0.0008854957995936275, 0.004575146362185478, -0.0137619748711586, 0.003673919476568699, -0.01562938094139099, 0.017228856682777405, 0.002082564402371645, 0.028790539130568504, 0.010766005143523216, 0.008143517188727856, 0.008630665950477123, -0.014232886023819447, -0.003365391632542014, 0.011967641301453114, -0.023951519280672073, -0.0014969699550420046, 0.01029509399086237, -0.01561314333230257, 0.0027158588636666536, -0.015028564259409904, 0.015418283641338348, -0.027767524123191833, 0.010627979412674904, -0.010360047221183777, -0.0020683559123426676, 0.0008058265666477382, 0.024357477203011513, 0.007270707283169031, 0.00046101602492854, 0.015150351449847221, -0.003966209478676319, 0.0004041818901896477, 0.007250409107655287, 0.009751110337674618, -0.001903942902572453, -0.008346496149897575, -0.005894509609788656, 0.006613055244088173, 0.013688902370631695, -0.02003808505833149, 0.0009215245954692364, -0.0011316078016534448, 0.0086225476115942, -0.01044123899191618, -0.005987879820168018, -0.02598130889236927, 0.00258189276792109, -0.00968615710735321, -0.01864158920943737, 0.0001738007558742538, -0.0030771614983677864, -0.0008530191844329238, -0.017716005444526672, 0.015272138640284538, 0.016457535326480865, 0.00904474314302206, -0.01930736005306244, 0.02234392613172531, -0.017293808981776237, -0.037413086742162704, 0.004400584381073713, 4.408449967741035e-06, 0.005358645226806402, -0.00491615105420351, 0.01977827213704586, 0.007343779783695936, -0.005192202515900135, -0.001188441994599998, 0.01335601694881916, -0.00838709156960249, 0.01009211502969265, 0.00557786226272583, 0.007619831245392561, -0.014525176025927067, 0.034620095044374466, -0.020054323598742485, 0.030576754361391068, 0.0012290377635508776, 0.00036916803219355643, 0.01304748933762312, -0.0017791107529774308, 0.008500759489834309, 0.0019364195177331567, 0.014744393527507782, -0.002882301574572921, -0.002667143940925598, -0.001520312624052167, -0.0190800242125988, 0.006763259880244732, -0.00809480156749487, 0.021954206749796867, -0.0038768986705690622, 0.003060922957956791, 0.00997844710946083, 0.006495327223092318, 0.007648248225450516, 0.003099489025771618, 0.02135338820517063, -0.0006063997279852629, -0.0005957433022558689, -0.0005028804298490286, 0.0015010295901447535, -0.008403330110013485, 0.014858061447739601, 0.007818750105798244, -0.002362675266340375, -0.01109889056533575, -0.007254468742758036, 0.005967582110315561, -0.004997342359274626, -0.0048349592834711075, 0.0061340248212218285, 0.014906776137650013, -0.00032933338661678135, 0.015418283641338348, -0.004384345840662718, -0.008123219013214111, 0.010100234299898148, 0.0025027308147400618, -0.025185631588101387, 0.010684813372790813, -0.003671889891847968, -0.015207185409963131, -0.006653651129454374, 0.016303271055221558, 0.019096262753009796, 0.002431688131764531, -0.00416512880474329, -0.022912267595529556, 0.001311244210228324, 0.0025697138626128435, -0.0015436551766470075, -0.010977103374898434, 0.0017811405705288053, -0.009759229607880116, 0.007364077493548393, 0.028173482045531273, -5.6041229981929064e-05, 0.002145487815141678, 0.008257185108959675, -0.010571145452558994, -0.0006571444682776928, 0.019177453592419624, 0.0001206456363433972, 0.004335631150752306, 0.01346968486905098, -0.02021670714020729, -0.006300467532128096, -0.005257155746221542, 0.0011062354315072298, -0.0013234229991212487, 0.02024918422102928, 0.0036698600742965937, 0.02359427697956562, 0.029293926432728767, -0.0022246497683227062, -0.012308645993471146, 0.0026549650356173515, -0.00057696778094396, -0.02234392613172531, 0.00462386105209589, -0.003405987285077572, 0.001409689080901444, -0.007132681552320719, -0.0012615143787115812, 0.016757944598793983, -0.0029777016025036573, 0.020119275897741318, -0.0057443054392933846, -0.011196320876479149, 0.007205754052847624, -0.010603622533380985, 0.012341122142970562, 0.018446730449795723, 0.009564369916915894, 0.003949970938265324, -0.014273482374846935, 0.007152979262173176, -0.003722634632140398, 0.002997999545186758, -0.030869044363498688, -0.005955403205007315, -0.010319451801478863, -0.017050234600901604, -0.019144978374242783, -0.008212530054152012, 0.0172450952231884, -0.005719947628676891, 0.0225712638348341, 0.01093650795519352, 0.03611402213573456, 0.008338376879692078, -0.01243855245411396, -0.018138201907277107, -0.00979982502758503, -0.006259871646761894, -0.010051519609987736, -0.004498014226555824, 0.01995689421892166, 0.017407476902008057, -0.002904629334807396, -0.006885047070682049, 0.005719947628676891, -0.01370514091104269, 0.00924772210419178, 0.016238318756222725, -0.034003037959337234, -0.010522430762648582, -0.004867435898631811, -0.00507447449490428, -0.0013690931955352426, -0.025461683049798012, -0.0027909609489142895, -0.007599533069878817, -0.011261274106800556, 0.0022002921905368567, 0.002090683439746499, -0.030251987278461456, -0.003994626458734274, -0.03692593798041344, 0.020411565899848938, 0.005630637053400278, 0.053196731954813004, 0.02656588889658451, 0.01109889056533575, -0.006032535340636969, 0.003452672390267253, -0.038257479667663574, 0.004071758594363928, -0.016019102185964584, -0.009604965336620808, 0.006032535340636969, 0.004745648708194494, -0.0022672752384096384, 0.027572665363550186, 0.008029848337173462, 0.004116413649171591, 0.011805257759988308, -0.01867406629025936, 0.025445444509387016, 0.002427628729492426, 0.01610841229557991, 0.011180082336068153, 0.006608995608985424, -0.013640187680721283, -0.0054479558020830154, 0.0200056079775095, 0.006308586802333593, -0.0016126680420711637, -0.0049608065746724606, -0.009962208569049835, 0.025445444509387016, 0.025932595133781433, -0.00044350908137857914, -0.019242407754063606, -0.011610398069024086, -0.003235484939068556, 0.01306372694671154, 0.008939194492995739, 0.014655082486569881, 0.008102920837700367, -0.018544159829616547, -0.0072382306680083275, -0.008411449380218983, 0.005845794919878244, -0.04017360135912895, -0.03364579752087593, 0.013023131527006626, 0.011326227337121964, -0.01794334128499031, 0.000804811657872051, 0.008452044799923897, 0.005094772670418024, 0.0015700424555689096, 0.01225993037223816, -0.010132710449397564, -0.00632076570764184, 0.01229240745306015, 0.022993458434939384, -0.022149067372083664, -0.008573831990361214, 0.0033877191599458456, 0.003450642805546522, -0.012324883602559566, -0.006337003782391548, 0.029894744977355003, 0.0002991402870975435, 0.024422431364655495, 0.006848510820418596, 0.0035541621036827564, -0.012674007564783096, -0.003878928255289793, 0.01992441713809967, -0.007416851818561554, -0.021418342366814613, -0.005419538822025061, -0.027946146205067635, -0.007960835471749306, -0.028449533507227898, 0.0004767468781210482, -0.014687559567391872, 0.014070503413677216, -0.0013274825178086758, 0.002512879902496934, 0.021109813824295998, -0.013258587568998337, -0.02685817889869213, -0.0017872299067676067, -0.003245634026825428, -0.0019151066662743688, 0.004485835321247578, 0.0001748156500980258, -0.016230199486017227, 0.002849824959412217, -0.025007011368870735, 0.0014066443545743823, 0.03500981628894806, 0.0036678302567452192, -0.00020602367294486612, -0.009272079914808273, 0.006726723629981279, 0.0014929104363545775, -0.015296496450901031, 0.026030024513602257, 0.0028173483442515135, 0.026923133060336113, -0.0009281213860958815, -0.043681077659130096, -0.00015629381232429296, -0.009418224915862083, 0.008261244744062424, 0.02968364581465721, 0.001081877970136702, 0.011748423799872398, 0.006434433627873659, -0.009824182838201523, -0.011147606186568737, 0.02744275890290737, 0.005387062206864357, 0.01571057364344597, 0.03108014166355133, 0.008500759489834309, 0.00024738063802942634, 0.017001518979668617, 0.032054439187049866, 0.01546699833124876, 0.022847313433885574, -0.009263960644602776, 0.02263621613383293, 0.034587617963552475, -0.017862150445580482, 0.0042463201098144054, 0.015726812183856964, 0.002222619950771332, -0.005902628879994154, 0.014517056755721569, 0.006491268053650856, 0.005123189650475979, -0.014931133948266506, 0.006385718937963247, 0.005561624187976122, 0.0018471087096258998, -0.025932595133781433, 0.010083995759487152, 0.022084113210439682, -0.008192231878638268, 0.004733469802886248, 0.004741589073091745, -0.021808061748743057, 0.01555630937218666, 0.015499475412070751, -0.013136799447238445, 0.002882301574572921, -0.012649649754166603, 0.006848510820418596, 0.0016451446572318673, -0.0072585283778607845, -0.016059696674346924, -0.02883925475180149, 0.03494486212730408, -0.010189545340836048, -0.015247780829668045, 0.0029533442575484514, 0.026435982435941696, 0.010132710449397564, 0.013599592261016369, 0.02525058574974537, 0.0020257302094250917, -0.009629323147237301, 0.024568576365709305, -0.012535981833934784, -0.011163843795657158, -0.011748423799872398, -0.004278797190636396, -0.004477716516703367, -0.016985280439257622, -0.012471028603613377, 0.0003075131680816412, -0.006125905551016331, -0.011309988796710968, -0.02062266506254673, -0.004538610111922026, 0.027458997443318367, 0.047870565205812454, 0.026468459516763687, 0.0033105872571468353, -0.014330316334962845, -0.018771495670080185, 0.005001401994377375, 0.017602337524294853, 0.006369480397552252, 0.015093517489731312, -0.004595444072037935, 0.01379445195198059, -0.005285572726279497, 0.0005307900137268007, -0.020671378821134567, 0.010270736180245876, -0.01044123899191618, 0.016969043761491776, -0.046603973954916, 0.002602190477773547, -0.010278855450451374, -0.0018298554932698607, 0.003952000755816698, 0.013835047371685505], "7dc088d8-125c-41e5-bd34-8ebbf828e918": [-0.00849475059658289, 0.013458319939672947, -0.009827560745179653, -0.008150058798491955, -0.042251620441675186, -0.013741733506321907, 0.021033890545368195, 0.009904159232974052, -0.024756569415330887, 0.03065463714301586, 0.027299631386995316, 0.015304339118301868, -0.011160371825098991, -0.03327430039644241, -0.009643725119531155, 0.010570564307272434, -0.017295895144343376, 0.023576954379677773, 0.027207713574171066, -0.027575384825468063, 0.07267645746469498, 0.021279005333781242, -0.03909577056765556, 0.015357958152890205, 0.006250420585274696, -0.011336547322571278, -0.010593543760478497, -0.0010991855524480343, -0.017066100612282753, -0.004940589889883995, -0.0046227071434259415, 0.022734373807907104, 0.01567201130092144, 0.010087994858622551, 0.02199902944266796, -0.020528342574834824, -0.007610040251165628, 0.03572544455528259, -0.02152412012219429, 0.024143781512975693, -0.03459179028868675, 0.015610732138156891, -0.01099951472133398, -0.009498188272118568, -0.07941710948944092, 0.02319396287202835, 0.00922243483364582, -0.023270562291145325, 0.022320743650197983, -0.003642248921096325, 0.020451745018363, -0.0351126566529274, 0.00299307843670249, 0.025828944519162178, 0.012615739367902279, -0.014132385142147541, 0.016483953222632408, 0.0408422090113163, -0.01079269964247942, -0.041240520775318146, -0.012615739367902279, -0.009038598276674747, -0.005951687227934599, 0.002910735085606575, -0.0066602216102182865, -0.051780447363853455, 0.011596981436014175, -0.0014132384676486254, -0.060022421181201935, -0.009153496474027634, -0.0019647462759166956, 0.032048724591732025, -0.05328177288174629, 0.012332324869930744, -0.020022794604301453, 0.012692336924374104, 0.05836790055036545, -0.006736820098012686, 0.008456451818346977, 0.01642267405986786, -0.027008557692170143, 0.016820985823869705, 0.044672124087810516, -0.014308561570942402, 0.04513171315193176, 0.035633526742458344, -0.024174422025680542, -0.04298696294426918, -0.021738596260547638, -0.008816463872790337, 0.004312484059482813, -0.013711094856262207, 0.020283227786421776, -0.01677502691745758, 0.0016143090324476361, 0.025277437642216682, 0.018460188060998917, 0.008732205256819725, 0.02316332422196865, -0.070470429956913, -0.013159587047994137, 0.01731121353805065, -0.08517730236053467, -0.002056664088740945, -0.021233046427369118, 0.016085641458630562, 0.025323396548628807, 0.006476385518908501, -0.029995892196893692, 0.07286030054092407, 0.018276352435350418, -0.0352964922785759, -0.0015903720632195473, 0.021922431886196136, -0.02221350558102131, -0.09731047600507736, 0.013726414181292057, -0.018383590504527092, -0.008272615261375904, -0.04212906211614609, 0.005266132764518261, 0.029475023970007896, 0.02460337243974209, 0.013711094856262207, -0.008824123069643974, 0.032110005617141724, 0.01957852393388748, -0.0049673994071781635, 0.023653553798794746, -0.007575571071356535, -0.012355304323136806, 0.0002088500332320109, 0.004339293111115694, 0.0469394326210022, -0.007391735445708036, 0.020053433254361153, 0.01564137078821659, 0.058858130127191544, -0.04166947305202484, 0.06636476516723633, -0.05202556028962135, -0.06887718290090561, -0.01620819978415966, 0.003446923103183508, 0.008218997158110142, 0.0014410053845494986, -0.04442701116204262, 0.04439637064933777, 0.015074544586241245, 0.027085157111287117, -0.03391772508621216, -0.036613985896110535, 0.053067296743392944, 0.00013285016757436097, -0.008594328537583351, -0.006426597014069557, -0.007786216679960489, 0.0020758137106895447, 0.0021083680912852287, 0.010118634440004826, 0.00968968402594328, -0.04513171315193176, 0.0007415672298520803, 0.008364534005522728, 0.051903001964092255, 0.025415314361453056, 0.029934613034129143, 0.020436424762010574, -0.0462040901184082, 0.02722303383052349, 0.0052316635847091675, 0.005430819001048803, 0.007698128465563059, -0.006020626053214073, -0.004228225909173489, -0.012569780461490154, 0.02536935545504093, 0.034469231963157654, 0.020880695432424545, -0.030486121773719788, -0.002688600216060877, -0.0004131520399823785, -0.03077719360589981, -0.013190226629376411, 0.034224119037389755, 0.03400964289903641, 0.012347645126283169, -0.017571648582816124, 5.744871941715246e-06, 0.023301200941205025, -0.007410884834825993, 0.005338901188224554, -0.007050872780382633, 0.024067183956503868, -0.002068153815343976, 0.0012782340636476874, 0.03400964289903641, 0.0015444130403921008, -0.0015137738082557917, 0.03128274157643318, -0.006897676270455122, -0.04896162822842598, -0.03685909882187843, 0.03753316402435303, -0.008088779635727406, -0.008272615261375904, 0.007881964556872845, -0.030547399073839188, 0.022550538182258606, -0.023086724802851677, 0.05466054379940033, -0.03600119799375534, 0.031006990000605583, -0.005898068659007549, -0.011635281145572662, -0.017724845558404922, -0.023638233542442322, 0.03756380453705788, 0.00011399980576243252, -0.016254158690571785, -0.041516274213790894, 0.00877816416323185, 0.003782040672376752, -0.032048724591732025, -0.016346076503396034, -0.020681539550423622, 0.003883533412590623, 0.02480252832174301, -0.02740686945617199, -0.0015922869788482785, 0.03502073884010315, 0.040903490036726, -0.027268992736935616, -0.02196839079260826, -0.0291379913687706, 0.010294810868799686, 0.0010876958258450031, 0.018996376544237137, -0.00037030488601885736, 0.00497122947126627, 0.016575871035456657, 0.04087284952402115, 0.022305423393845558, -0.0017368663102388382, 0.024434855207800865, 0.01976235955953598, 0.006035945378243923, 0.013511938974261284, 0.010639502666890621, -0.03998430818319321, 0.004515469539910555, 0.007250028662383556, -0.0010091825388371944, -0.02391398698091507, -0.03722677007317543, 0.03615439310669899, -0.00767131894826889, -0.015679670497775078, 0.014231963083148003, -0.06489407271146774, 0.002688600216060877, 0.008908381685614586, 0.01109143253415823, 0.004737604409456253, 0.024909764528274536, -0.015809888020157814, 0.02221350558102131, -0.03808467090129852, 0.006867037154734135, 0.05334305018186569, -0.01052460540086031, 0.000771727820392698, -0.004592067562043667, -0.011865075677633286, -0.0015176036395132542, -0.0024568901862949133, 0.005082296673208475, -0.007813026197254658, 0.004607387352734804, -0.007303647231310606, 0.009934798814356327, 0.004906120710074902, 0.011819116771221161, 0.01458431500941515, -0.03646078705787659, -0.023638233542442322, -0.022734373807907104, 0.009260733611881733, -0.025798305869102478, -0.019149573519825935, -0.01373407430946827, -0.011191010475158691, 0.04228225722908974, 0.006583623122423887, 0.0520562008023262, -0.022611815482378006, 0.012546800076961517, 0.006166162434965372, -0.016162240877747536, 0.008188357576727867, -0.033059824258089066, -0.011244629509747028, 0.028877556324005127, -0.016882263123989105, 0.013542578555643559, 0.005967007018625736, 0.037900835275650024, 0.006116373930126429, -0.027713263407349586, 0.009015618823468685, 0.05337369069457054, -0.0010608864249661565, 0.0006510855164378881, -0.004078858997672796, -1.7877922573461547e-06, 0.0035273514222353697, 0.0011604641331359744, -0.0075257825665175915, -0.0010560989612713456, -0.02866308204829693, 0.024710608646273613, 0.03848298266530037, -0.030317604541778564, 0.0409647673368454, 0.031267423182725906, -0.020666219294071198, 0.04503979533910751, -0.025920862331986427, -0.014163024723529816, -0.02696259878575802, -0.030256325379014015, -0.03036356344819069, -0.02074281871318817, -0.019900236278772354, 0.0010388643713667989, -0.008349213749170303, -0.03924896568059921, -0.03367260843515396, -0.03253895416855812, -0.04791989177465439, -0.012562120333313942, 0.019532565027475357, -0.03808467090129852, -0.014454098418354988, 0.030011210590600967, 0.0068555474281311035, 0.00020956814114470035, 0.006024455651640892, -0.04433509334921837, -0.010394388809800148, 0.0009723195689730346, -0.01573328860104084, 0.006675541400909424, -0.03220192342996597, 0.016009043902158737, -0.008877742104232311, -0.009735642932355404, -0.012033591978251934, 0.015380937606096268, 0.020175989717245102, 0.020819416269659996, -0.024342937394976616, -0.031175505369901657, -0.014714532531797886, 0.01907297596335411, 0.019961515441536903, -0.012133169919252396, -0.003389474470168352, 0.029750777408480644, 0.010394388809800148, -0.035694804042577744, 0.026472371071577072, 0.06593581289052963, 0.016070321202278137, -0.0013529174029827118, -0.016606509685516357, 0.031144866719841957, 0.0059823268093168736, -0.02570638805627823, 0.03333557769656181, 0.015947764739394188, 0.008931361138820648, 0.021539440378546715, -0.002234755316749215, 0.04289504513144493, 0.03024100698530674, 0.02835668809711933, 6.241563824005425e-05, -0.003075421554967761, 0.004875481594353914, -0.018261034041643143, 0.03502073884010315, -0.028126893565058708, -0.006491705309599638, -0.041271161288022995, 0.026104697957634926, -0.002070068847388029, 0.0010331195080652833, 0.011865075677633286, -0.03826850652694702, -0.005040167830884457, -0.00393332215026021, 0.01623883843421936, 0.03266151249408722, 0.0037628912832587957, -0.041454996913671494, -0.020497703924775124, -0.02460337243974209, 0.014599634334445, 0.021723276004195213, 0.004695475567132235, 0.013182566501200199, 0.009628405794501305, 0.003885448444634676, 0.041393719613552094, -0.02441953681409359, 0.004775903653353453, 0.016116280108690262, -0.04859395697712898, -0.04215970262885094, 0.010815679095685482, 0.07996861636638641, -0.04062773659825325, 0.03229384124279022, -0.005725722294300795, 0.008280275389552116, 0.058674294501543045, -0.013274484314024448, -0.013963868841528893, -0.007904944010078907, 0.02782049961388111, 0.013167246244847775, -0.004592067562043667, -0.02546127326786518, -0.00011226437345612794, -0.023898666724562645, -0.006369147915393114, 0.018858499825000763, -0.008732205256819725, 0.011765497736632824, 0.03851362317800522, 0.04105668514966965, 0.0036269291304051876, 0.011543362401425838, -0.023500356823205948, -0.04442701116204262, -0.044764041900634766, 0.0009378503309562802, 0.006867037154734135, 0.003337770700454712, -0.0042895046062767506, 0.030256325379014015, -0.02863244153559208, 0.005193364340811968, 0.004507809411734343, -0.009490528143942356, -0.022443300113081932, -0.032140642404556274, -0.0068708667531609535, -0.021769234910607338, -0.007950902916491032, -0.017709525302052498, 0.019272129982709885, 0.003925662487745285, -0.02507828176021576, -0.027835819870233536, -0.013228525407612324, 0.013473640196025372, 0.006376808043569326, -0.025721706449985504, 0.005691253114491701, 0.004963569343090057, -0.0007827387889847159, 0.01125228963792324, -0.007414714898914099, -0.02693196013569832, -0.0030677616596221924, -0.005928707774728537, 0.019716400653123856, -0.0175563283264637, -0.024220380932092667, -0.04513171315193176, 0.003429688513278961, 0.01878190226852894, -0.005158895161002874, -0.030578039586544037, 0.024771887809038162, -0.0019915555603802204, -0.012600419111549854, 0.0031309551559388638, 0.0348062664270401, -0.03241639956831932, 0.005388690158724785, 0.008640287443995476, 0.0025181688833981752, -0.0349288210272789, 0.004304823931306601, -0.02107985131442547, -0.00756791140884161, -0.04170010983943939, 0.04268056899309158, -0.03177297115325928, 0.013856631703674793, 2.2096812244853936e-05, -0.01916489377617836, -0.014094086363911629, -0.03244703635573387, -0.01373407430946827, -0.03186488896608353, -0.015465195290744305, -0.030440161004662514, -0.007598550524562597, 0.002801582682877779, 0.0002477476082276553, -0.00669469079002738, 0.00785132497549057, -0.01875126175582409, 0.0003975930158048868, 0.014270261861383915, -0.00012399349361658096, 0.00700108427554369, 0.004860161803662777, -0.012385943904519081, 0.008624968118965626, 0.0006965657230466604, -0.04507043585181236, 0.005675933789461851, -0.005250812973827124, -0.0006391170318238437, -0.016100961714982986, 0.009398610331118107, 0.008870081976056099, 0.012355304323136806, -0.002617746591567993, 0.034530509263277054, -0.014308561570942402, -0.013159587047994137, 0.013856631703674793, 0.013335762545466423, 0.049451857805252075, -0.017541009932756424, 0.014768150635063648, -0.008433472365140915, 0.0033741549123078585, 0.0006965657230466604, 0.040535818785429, -0.011995293200016022, 0.015005605295300484, 0.0016985671827569604, 0.0054346490651369095, -0.037716999650001526, 0.013159587047994137, -0.029398424550890923, 0.004247375298291445, 0.020084071904420853, -0.038881294429302216, -0.0075257825665175915, -0.014668573625385761, -0.01963980309665203, -0.00961308553814888, -0.011298248544335365, 0.014752831310033798, 0.01994619518518448, 0.017418451607227325, 0.0005117723485454917, -0.00497122947126627, 0.011964653618633747, 0.02687068097293377, -0.0021141129545867443, -0.003083081217482686, 0.014683892950415611, 0.008441131561994553, 0.03351941332221031, 0.0003832308284472674, 0.0029911634046584368, 0.029122671112418175, -0.013757053762674332, -0.0028628611471503973, -0.015779249370098114, -0.002058579120784998, 0.02910735085606575, -0.03866681829094887, 0.013366402126848698, -0.02517019957304001, 0.008870081976056099, -0.005235493183135986, -0.022489259019494057, -0.0234390776604414, 0.026886001229286194, 0.012646378017961979, 0.021355604752898216, 0.0030888260807842016, 0.013213206082582474, 0.013780033215880394, -0.049574416130781174, 0.023239921778440475, -0.0038107652217149734, -0.0017359087942168117, 0.0041018384508788586, -0.02904607355594635, 0.007598550524562597, 0.01743377186357975, 0.019563203677535057, -0.005764021538197994, -0.011053133755922318, 0.017770804464817047, 0.0029375446029007435, -0.007724937982857227, -0.004691645503044128, 0.0062619103118777275, -0.022075628861784935, 0.025982141494750977, 0.01868998445570469, -0.006579793523997068, 0.028019655495882034, 0.017832083627581596, 0.006614262703806162, 0.04329335689544678, 0.0026120017282664776, -0.014308561570942402, 0.010662482120096684, -0.012401264160871506, 0.059899866580963135, 0.0017971874913200736, 0.029321826994419098, 0.004408231936395168, 3.539678800734691e-05, -0.018337631598114967, -0.027008557692170143, 0.02101857215166092, 0.01925681158900261, -0.0017062269616872072, 0.030026530846953392, -0.026135338470339775, 0.03036356344819069, -0.003653738647699356, 0.028846917673945427, 0.02281097136437893, -0.020313868299126625, -0.01645331270992756, -0.03502073884010315, -0.01477581076323986, -0.013266824185848236, 0.043477192521095276, -0.00525464303791523, 0.000971362111158669, -0.01170421950519085, 0.01070078182965517, 0.031160185113549232, -0.023837389424443245, -0.05383327975869179, -0.00942158978432417, -0.018644025549292564, 0.0261812973767519, 0.005591675639152527, -0.039065130054950714, -0.010440347716212273, 0.00904625840485096, 0.017188657075166702, 0.00925307348370552, 0.04298696294426918, -0.017203977331519127, -0.0012619568733498454, 0.025093600153923035, -0.0035675654653459787, 0.02265777438879013, -0.0044350409880280495, 0.00874752551317215, 0.009383291006088257, -0.00033679313492029905, 0.013259164988994598, -0.01216380950063467, 0.016514591872692108, 0.01979299820959568, -0.012722976505756378, -0.017801443114876747, 0.012523820623755455, -0.017924001440405846, -2.5769641069928184e-06, -0.01764824613928795, -0.013519599102437496, -0.019869597628712654, -0.020114712417125702, 6.451012450270355e-05, 0.03367260843515396, -0.010156934149563313, -0.003004568163305521, 0.016560550779104233, -0.006997254211455584, -0.02164667844772339, 0.003368410049006343, -0.002140922239050269, 0.025905542075634003, -0.009375630877912045, -0.004006090573966503, 0.0030486120376735926, -0.03241639956831932, -0.011382506228983402, 0.014844749122858047, -0.012378284707665443, -0.041148602962493896, -0.010570564307272434, -0.0023688022047281265, -0.02224414423108101, 0.0014620699221268296, 0.04050517827272415, -0.02441953681409359, -0.03839106485247612, 0.027146434411406517, 0.0067291599698364735, 0.013527258299291134, 0.017924001440405846, 0.009276052936911583, 0.0019111274741590023, -0.017449092119932175, 0.016698427498340607, 0.0030083979945629835, -0.0204823836684227, -0.02740686945617199, -0.001999215455725789, -0.004266525153070688, 0.02615065686404705, -0.001739738741889596, -0.02835668809711933, -0.03514329716563225, -0.0014371754368767142, 0.00961308553814888, 0.01071610115468502, 0.003680547932162881, -0.004921440500766039, 0.02495572343468666, -0.002943289466202259, -0.006472555920481682, 0.002091133501380682, -0.01630011759698391, -0.019716400653123856, 0.0026445561088621616, 0.0030486120376735926, 0.02800433710217476, -0.03348877280950546, 0.010746740736067295, 0.013542578555643559, 0.02256585657596588, 0.01872062310576439, 0.007694298401474953, 0.01803123764693737, 0.017066100612282753, 0.02725367248058319, 0.020405786111950874, 0.00779770640656352, 0.03566416725516319, -0.03688973933458328, 0.029490342363715172, 0.025262117385864258, -0.012791914865374565, 0.007713448256254196, -0.001937936875037849, 0.006633412092924118, -0.008287935517728329, 0.021447522565722466, 0.0011882310500368476, 0.010991855524480343, -0.007648339495062828, 0.005193364340811968, 0.0032420228235423565, -0.010846318677067757, -0.03137465938925743, 0.050432316958904266, 0.027268992736935616, -0.0012045081239193678, 0.029321826994419098, 0.02866308204829693, 0.03099166974425316, 0.02743750810623169, -0.0024185911752283573, -0.008624968118965626, 0.04188394546508789, 0.012945111840963364, -0.04075029119849205, 0.015266040340065956, -0.0009038598509505391, -0.015526474453508854, 0.0018374015344306827, -0.03584800288081169, 0.021217728033661842, -0.0013423850759863853, 0.036430150270462036, 0.007694298401474953, -0.007778556551784277, 0.002001130487769842, 0.02250457927584648, 0.042649928480386734, -0.002594767138361931, 0.014454098418354988, -0.017234615981578827, -0.0025219987146556377, 0.017816763371229172, -0.0410260446369648, 0.0024990192614495754, 0.027177074924111366, 0.012654038146138191, -0.04105668514966965, 0.014883048832416534, 0.02441953681409359, 0.014607294462621212, -0.015572433359920979, 0.0022481598425656557, 0.01708141900599003, 0.02677876316010952, 0.008908381685614586, -0.010264171287417412, 0.0038414043374359608, -0.011596981436014175, 0.038942571729421616, -0.017127377912402153, -0.012317005544900894, -0.016162240877747536, 0.009812241420149803, -0.013144266791641712, -0.013420021161437035, 0.0014094086363911629, 0.01884317956864834, 0.008456451818346977, 0.00765599962323904, -0.05079998821020126, -0.016376715153455734, 0.02137092314660549, -0.015097524039447308, 0.02388334833085537, 0.020850054919719696, 0.016346076503396034, -0.014385159127414227, -0.01142080593854189, 0.03973919525742531, -0.001449622679501772, 0.012010612525045872, -0.01170421950519085, 0.009429249912500381, -0.020650900900363922, 0.03698165714740753, -0.01683630421757698, -0.021324964240193367, -0.023546315729618073, 0.0037628912832587957, 0.00343734840862453, -0.02262713573873043, 0.02313268557190895, -0.008533050306141376, 0.04412061721086502, 0.00785132497549057, -0.0009967352962121367, -0.022397341206669807, 0.010248851962387562, 0.007039383053779602, -0.022106267511844635, 0.04228225722908974, -0.02869372069835663, 0.020007474347949028, 0.0007564081461168826, 0.025354035198688507, -0.009138176217675209, 0.029275868088006973, -0.002943289466202259, -0.029000114649534225, 0.005744872149080038, -0.006357658188790083, -0.022458620369434357, -0.010938236489892006, 0.016943542286753654, -0.029628219082951546, -0.008287935517728329, 0.0067215003073215485, 0.0004418764146976173, 0.025905542075634003, -0.008992639370262623, -0.004327803384512663, 0.00813473854213953, 0.009743303060531616, -0.025982141494750977, -0.028142213821411133, 0.00043517406447790563, 0.012883832678198814, 0.0038797035813331604, -0.005342730786651373, -0.05744871869683266, -0.004768243990838528, 0.025476591661572456, -0.019471285864710808, -0.003651823615655303, -0.0010177998337894678, -0.0012686592526733875, 0.004641856532543898, -0.02662556618452072, -0.03339685499668121, -0.01913425326347351, -0.03149721771478653, -0.010785039514303207, -0.026365133002400398, -0.02202966995537281, -0.027866458520293236, -0.0055840155109763145, -0.011581662110984325, -0.02095729298889637, -0.0012715316843241453, 0.010394388809800148, -0.031068267300724983, -0.0010819508461281657, 0.0173418540507555, 0.02271905355155468, 0.02215222641825676, -0.0022539047058671713, 0.008065800182521343, -0.007613870315253735, -0.016407353803515434, 0.013626836240291595, 0.04062773659825325, 0.02385270781815052, -0.01645331270992756, 0.00874752551317215, -0.027621345594525337, 0.022320743650197983, 0.0017378238262608647, -0.012110190466046333, 0.005476777907460928, 0.005515077151358128, -0.001699524698778987, 0.006342338863760233, -0.0017502710688859224, 0.019471285864710808, 0.004461850505322218, -0.021156448870897293, 0.02860180288553238, -0.007043213117867708, -0.01960916258394718, 0.05129021778702736, -0.011114411987364292, -0.00211985781788826, 0.008793484419584274, -0.04546874761581421, -0.013933229260146618, -0.013443000614643097, -0.03165041655302048, 0.006361488252878189, -0.010210552252829075, 0.02077345736324787, -0.021769234910607338, -0.018490828573703766, 0.03587863966822624, -0.0014007913414388895, 0.015166462399065495, 0.01079269964247942, 0.023500356823205948, -0.0017742079216986895, -0.02114112861454487, -0.006748309824615717, 0.02083473652601242, -0.006196802016347647, -0.007813026197254658, 0.04497851803898811, 0.023714831098914146, 0.017862722277641296, 0.00792792346328497, 0.015105183236300945, 0.012562120333313942, -0.03937152400612831, -0.0020126202143728733, -0.06593581289052963, 0.023148003965616226, -0.0006936932913959026, 0.016039682552218437, -0.006012965925037861, -0.04556066542863846, -0.008310914970934391, 0.006943635176867247, -0.00397162139415741, -0.018015919253230095, -0.01967044174671173, -0.020543662831187248, -0.021064531058073044, 0.003467987757176161, 0.007349606137722731, -0.007292157504707575, -0.0008693906129337847, -0.03391772508621216, -0.006311699282377958, 0.004955909680575132, -0.00922243483364582, 1.3569268048740923e-05, 0.0008985937456600368, -0.028111573308706284, 0.015220080502331257, -0.030731234699487686, -0.017158018425107002, -0.022198185324668884, -0.003948641940951347, -0.011244629509747028, -0.004170777276158333, -0.01080801896750927, 0.00010131321323569864, -0.016621829941868782, -0.012600419111549854, -0.004994208924472332, -0.032232560217380524, 0.03235511854290962, 0.027085157111287117, 0.006273400038480759, 0.014913687482476234, 0.0018086772179231048, 0.02501700259745121, -0.008203676901757717, -0.0102258725091815, -0.015572433359920979, -0.014094086363911629, -0.01793931983411312, 0.003856724128127098, 0.026794083416461945, 0.0002056185476249084, -0.07255390286445618, -0.024557413533329964, 0.027085157111287117, -0.003033292479813099, -0.013894930481910706, -0.0145689956843853, -0.009459889493882656, -0.00035546396975405514, -0.008678586222231388, 0.007364925928413868, 0.007625360041856766, 0.020758137106895447, 0.013274484314024448, -0.03008781000971794, 0.004278014879673719, 0.0043661026284098625, 0.0005093786749057472, -0.005488267634063959, -0.02869372069835663, 0.0005438479129225016, -0.04393678158521652, -0.0071274712681770325, 0.009015618823468685, 0.016223518177866936, -0.018107837066054344, 0.010899936780333519, 0.01280723512172699, 0.008111759088933468, -0.001359619665890932, 0.0009397653047926724, 0.0020432595629245043, 0.01431622076779604, 0.0023802919313311577, 0.034438591450452805, -0.01862870529294014, 0.013144266791641712, -0.025599149987101555, 0.005702742841094732, -0.0131059680134058, 0.017112059518694878, -0.004170777276158333, 0.00042248747195117176, 0.04528491199016571, -0.006131693255156279, 0.03698165714740753, 0.036736540496349335, -0.025982141494750977, 0.030256325379014015, -0.011443785391747952, -0.013634496368467808, -0.004795053042471409, -0.012684677727520466, -0.009605426341295242, 0.006507025100290775, 0.013856631703674793, -0.008264956064522266, 0.00819601770490408, -0.005423159338533878, 0.011083773337304592, 0.001760803279466927, 0.00041698195855133235, 0.03603183850646019, -0.00044427011744119227, 0.00967436470091343, -0.00448482995852828, -0.010869298130273819, 0.006763629149645567, -0.014676232822239399, -0.0007726852782070637, 0.0032918115612119436, 0.012860853224992752, -0.03358069062232971, 0.008831783197820187, -0.015978403389453888, 0.005545716267079115, -0.0038892782758921385, 0.0202679093927145, -0.0024205059744417667, -0.002587107475847006, -0.005878919269889593, 0.06069648638367653, 0.00786664430052042, -0.0041554574854671955, 0.010539925657212734, -0.009628405794501305, 0.016116280108690262, -0.0037609762512147427, 0.028785638511180878, 0.023117365315556526, 1.6621232134639286e-05, -0.016162240877747536, 0.0037284218706190586, 0.011857415549457073, 0.04185330867767334, -0.006947465240955353, 0.011122072115540504, 0.023929307237267494, 0.0019819808658212423, -0.001187273534014821, 0.008801143616437912, -0.016560550779104233, -0.009605426341295242, 0.019976835697889328, -0.004760583862662315, -0.02952098287642002, -0.01934872940182686, 0.014469417743384838, 0.005878919269889593, -0.014875388704240322, -0.008701566606760025, 0.03177297115325928, 0.014247282408177853, 0.036767181009054184, 0.021171769127249718, -0.0013328102650120854, 0.03174233436584473, 0.014270261861383915, -0.008556029759347439, -0.008533050306141376, -0.001683247508481145, -0.0031098907347768545, 0.00375714641995728, -0.01401748787611723, -0.022826291620731354, 0.00128206389490515, 0.013243844732642174, 0.016192879527807236, -0.003429688513278961, -0.014186004176735878, 0.000304478220641613, -0.014500057324767113, -0.015541793778538704, -0.00819601770490408, -0.008579009212553501, -0.018735943362116814, -0.020497703924775124, 0.002424336038529873, -0.021294325590133667, -0.025828944519162178, 0.0012600419577211142, -0.005970837082713842, 0.024695290252566338, 0.008050480857491493, -0.062228452414274216, -0.01991555653512478, 0.005147405434399843, -0.006009136326611042, 0.006300209555774927, -0.021217728033661842, 0.016698427498340607, -0.02281097136437893, -0.006487875245511532, 0.009513508528470993, -0.0007659829570911825, -0.00738790538161993, 0.033059824258089066, 0.0406583733856678, -0.024235699325799942, 0.012393604032695293, -0.02376079000532627, -0.0019235746003687382, 0.006541494280099869, 0.010141613893210888, 0.013726414181292057, -0.0117195388302207, 0.0023094385396689177, 0.013427681289613247, -0.0202679093927145, 0.003722677007317543, -0.032171282917261124, 0.007081512361764908, -0.011543362401425838, 0.0204823836684227, -0.027023877948522568, -0.020375145599246025, -0.040229424834251404, 0.011765497736632824, -0.004415891598910093, 0.025752346962690353, 0.001414195983670652, -0.022412661463022232, 0.002790092956274748, 0.023010127246379852, -0.004251205362379551, 0.018858499825000763, -0.005606994964182377, -0.020436424762010574, -0.002477954840287566, -0.020283227786421776, -0.018996376544237137, 0.008081120438873768, -0.006687031127512455, -0.012600419111549854, -0.0028781809378415346, 0.03869745880365372, -0.013213206082582474, -0.01428558211773634, 0.0018728282302618027, 0.016851624473929405, 0.018383590504527092, -0.0014888793230056763, 0.0020547492895275354, -0.007070022635161877, 0.027621345594525337, 0.009904159232974052, 0.02549191191792488, 0.019747039303183556, 0.011803797446191311, -0.030409522354602814, -0.005595505237579346, 0.013251504860818386, 0.009069237858057022, -0.02035982720553875, -0.01985427737236023, 0.021769234910607338, 0.020911334082484245, 0.015220080502331257, -0.01227104663848877, -0.020880695432424545, -0.0044273813255131245, 0.010356089100241661, -0.0003873001260217279, 0.001258126925677061, 0.011160371825098991, 0.0005481565603986382, 0.006445746403187513, -0.01686694473028183, 0.010853977873921394, 0.03272278979420662, -0.03695101663470268, 1.2970844181836583e-05, -0.00484484201297164, -0.002454975387081504, -0.008579009212553501, 0.008977320045232773, -0.01904233545064926, -0.00903093907982111, -0.01695886254310608, 0.0039199176244437695, -0.03174233436584473, 0.012661698274314404, -0.012370624579489231, -0.010961215943098068, -0.0345611497759819, 0.02438889630138874, 0.007740257773548365, -0.011466764844954014, -0.03465306758880615, -0.003554160939529538, 0.006951295305043459, -0.010876957327127457, 0.005813810508698225, -0.011811456643044949, -0.013328103348612785, 0.006763629149645567, 0.0015855847159400582, 0.022259464487433434, -0.021248366683721542, 0.019532565027475357, -0.01881254091858864, -0.017035460099577904, 0.002294118981808424, -0.004741434473544359, 0.01079269964247942, 0.0016889923717826605, 0.0014247283106669784, -0.021033890545368195, -0.001485049375332892, 0.013496619649231434, -0.010271831415593624, -0.002334333024919033, -0.02520083822309971, -0.017862722277641296, 0.020635580644011497, 0.007587060797959566, 0.020850054919719696, -0.004749094136059284, -0.023056086152791977, 0.020467063412070274, -0.0001233950606547296, -0.010172253474593163, 0.016223518177866936, -0.003755231387913227, -0.0232858806848526, 0.019838958978652954, -0.01695886254310608, -0.0046380264684557915, -0.00813473854213953, 0.003948641940951347, -0.03149721771478653, 0.009107537567615509, 0.0032018087804317474, -0.011888055130839348, 0.0016056917374953628, -0.002407101448625326, 0.010279490612447262, 0.018873820081353188, -0.013205545954406261, -0.008640287443995476, -0.01815379597246647, 0.011826776899397373, -0.02379143051803112, -0.018490828573703766, -0.0019408093066886067, 0.0012380199041217566, -0.015197101049125195, 0.012975750491023064, 0.012079550884664059, 0.016483953222632408, 0.02719239518046379, 0.009490528143942356, 0.003625014331191778, 0.015656691044569016, 0.004687815438956022, 0.031987447291612625, -0.012646378017961979, -0.025951500982046127, -0.00247412477619946, 0.023423757404088974, 0.000913434661924839, 0.0016506932443007827, -0.023178644478321075, -0.020681539550423622, -0.016560550779104233, -0.015074544586241245, -0.0002803018724080175, 0.0018192094285041094, 0.010585884563624859, 0.006480215582996607, -0.011834436096251011, 0.017035460099577904, -0.010287150740623474, 0.01128292828798294, -0.008310914970934391, -0.0025890222750604153, 0.003307131351903081, 0.02504764124751091, -0.014124725013971329, -0.004496319685131311, -0.017678886651992798, 0.0021370924077928066, -0.03707357496023178, 0.0065529840067029, 0.012937451712787151, -0.01686694473028183, 0.014178344048559666, -1.2297617104195524e-05, -0.02206030860543251, 0.0032247882336378098, -0.02287225052714348, -0.012899152934551239, 0.022412661463022232, -0.007391735445708036, -0.0002258452877867967, 0.008173038251698017, -0.005955517292022705, 0.010103315114974976, -0.026640886440873146, 0.0038797035813331604, -0.006755969487130642, 0.019471285864710808, 0.03068527579307556, -0.009835220873355865, 0.009291373193264008, 0.006507025100290775, 0.006235101260244846, 0.006912996061146259, -0.000720023934263736, 0.018306992948055267, -0.016790345311164856, -0.017755484208464622, -0.008333894424140453, -0.009819901548326015, 0.017096739262342453, 0.0050363377667963505, 0.026135338470339775, -0.013971528969705105, 0.024725928902626038, -0.020911334082484245, -0.024159101769328117, -0.0006716712960042059, -0.020911334082484245, -0.014178344048559666, 0.015917126089334488, 0.008188357576727867, 0.010402048006653786, 0.021508801728487015, -0.009528827853500843, -0.0074645038694143295, -0.011880395002663136, 0.017862722277641296, -0.011688899248838425, 0.019777679815888405, 0.01812315545976162, -0.010463327169418335, -0.029383106157183647, 0.010394388809800148, 0.01134420745074749, 0.0086862463504076, 0.012362964451313019, -0.001515688723884523, -0.006587453186511993, -0.04660240188241005, -0.0037628912832587957, -0.011765497736632824, -0.010578224435448647, -0.010340769775211811, 0.009436910040676594, 0.001607606653124094, -0.012401264160871506, -0.0006778949173167348, 0.010470986366271973, 0.016223518177866936, -0.007460673805326223, -0.003188404021784663, 0.008372193202376366, -0.035051379352808, 0.03817658871412277, -0.0349288210272789, -0.008287935517728329, 0.006196802016347647, 0.004852501675486565, 0.007491312921047211, 0.002016450045630336, -0.009544147178530693, 0.0014017487410455942, -0.012899152934551239, -0.001891020336188376, 0.010049696080386639, -0.008356873877346516, -0.010034376755356789, -0.00464951666072011, 0.016529912129044533, -0.002070068847388029, -0.015013265423476696, 0.0012294026091694832, 0.007047043181955814, 0.03253895416855812, -0.009620745666325092, -0.012860853224992752, 0.009720323607325554, 0.008785824291408062, 0.0065261744894087315, -0.015304339118301868, -0.020221948623657227, 0.0009976928122341633, -0.011298248544335365, 0.0009076897986233234, 0.0070661925710737705, 0.025216158479452133, -0.011941674165427685, 0.017740163952112198, -0.004120988305658102, 0.013680455274879932, 0.04408997669816017, -0.009191795252263546, 0.03128274157643318, -0.014768150635063648, 0.014071106910705566, -0.011819116771221161, -0.01731121353805065, 0.004821862559765577, -0.005691253114491701, 0.009735642932355404, -0.01246254239231348, -0.031052948907017708, 0.0028532864525914192, -0.007759407162666321, -0.00018072410603053868, 0.03333557769656181, 0.00792792346328497, 0.0011642940808087587, 0.02290288917720318, -0.00932967197149992, 0.002129432512447238, 0.011803797446191311, -0.023714831098914146, 0.02716175466775894, -0.02504764124751091, 0.012408923357725143, 0.00393332215026021, -0.025890223681926727, -0.0018211244605481625, 0.011382506228983402, 0.005066977348178625, 0.00641127722337842, 0.015289019793272018, -0.03229384124279022, -0.021891793236136436, -0.0057065729051828384, -0.002173476619645953, 0.018107837066054344, -0.036705903708934784, 0.002129432512447238, -0.017755484208464622, 0.0029509493615478277, 0.009842881001532078, 0.008188357576727867, -0.021815193817019463, 0.0014534526271745563, -0.0058061508461833, -0.02435825765132904, -0.02740686945617199, 0.009007959626615047, 0.018215075135231018, 0.015097524039447308, 0.0050286781042814255, 0.010708441026508808, 0.009007959626615047, 0.013534918427467346, 0.0011958908289670944, 0.02558382973074913, 0.003670973237603903, 0.02373015135526657, 0.003711187280714512, -0.014009827747941017, -0.0202985480427742, -0.012202108278870583, 0.03180361166596413, -0.023010127246379852, -0.007575571071356535, -0.031267423182725906, -0.014193663373589516, -0.0015683500096201897, 0.013136607594788074, -0.01096887607127428, 0.01928745023906231, 0.018337631598114967, 0.00019568469724617898, -0.005817640572786331, 0.007556421682238579, -0.0008516772650182247, 0.004209076054394245, 0.021447522565722466, -0.02955162152647972, -0.004802713170647621, 0.027054516598582268, -0.02397526614367962, -0.016162240877747536, -0.008272615261375904, -0.0019724061712622643, -0.022305423393845558, 0.010601203888654709, -0.016223518177866936, -0.000578317092731595, 0.004285674542188644, -0.0035254363901913166, 0.012868513353168964, -0.0004782605974469334, -0.0006568303797394037, -0.018613385036587715, -0.002060494152829051, -0.019027017056941986, 0.012945111840963364, 0.0037667211145162582, 0.02504764124751091, 0.003033292479813099, -0.019716400653123856, -0.011221650056540966, -0.0013806842034682631, 0.00016325010801665485, 0.006618092767894268, -0.007590890862047672, 0.005997646600008011, -0.023607594892382622, 0.07206367701292038, -0.014454098418354988, -0.00958244688808918, 0.003318621078506112, 0.011635281145572662, -0.007935583591461182, -0.0068632070906460285, 0.0023419929202646017, 0.019685762003064156, -0.0023898668587207794, -0.008885402232408524, 0.00026282790349796414, 0.01847550831735134, -0.004193756729364395, -0.021171769127249718, -0.003226703032851219, 0.019027017056941986, 0.005775511264801025, 0.006189142353832722, 0.027299631386995316, -0.00030423884163610637, -0.01576392911374569, -0.025001682341098785, 0.0046380264684557915, 0.0051282555796206, 0.019685762003064156, -0.009207114577293396, -0.002372632035985589, 0.007755577098578215, 0.03232448175549507, -0.0002453539054840803, -0.017066100612282753, -0.0025105089880526066, -0.00231326837092638, -0.002790092956274748, 0.024174422025680542, -0.009712663479149342, 0.02749878726899624, -0.0009833305375650525, 0.020114712417125702, 0.0015137738082557917, -0.0016918648034334183, 0.023653553798794746, 0.024618690833449364, -0.024909764528274536, 0.0020547492895275354, 0.005135915707796812, -0.004952079616487026, 0.015380937606096268, -0.0037073574494570494, -0.014722191728651524, -0.03345813602209091, -0.004067369271069765, 0.0075411018915474415, 0.018230393528938293, -0.0026024270337074995, 0.005656783934682608, -0.007418544963002205, -0.001777080469764769, 0.005446138791739941, -0.012209768407046795, 0.012883832678198814, 0.0035426709800958633, -0.02483316697180271, -0.011313567869365215, -0.00027168457745574415, 0.006212121807038784, 0.00021926261251792312, 0.007384075317531824, -0.003492882242426276, -0.010693121701478958, -0.004408231936395168, 0.015580092556774616, -0.01800059899687767, -0.0006391170318238437, 0.018827861174941063, -0.010172253474593163, 0.046081531792879105, 0.014691553078591824, -0.018965737894177437, 0.005863599479198456, -0.00475292420014739, 0.009375630877912045, -0.011099092662334442, 0.011742518283426762, -0.005928707774728537, -0.008579009212553501, -0.014645594172179699, -0.0011326972162351012, -0.0352352149784565, -0.010493965819478035, -0.015978403389453888, 0.0012447222834452987, -0.001725376583635807, -0.0035637356340885162, 0.012278706766664982, -0.0024683799128979445, -0.015449875965714455, 0.010930576361715794, -0.009191795252263546, -0.003042867174372077, 0.016483953222632408, -0.008862422779202461, 0.009161155670881271, 0.007552591618150473, 0.0005108148907311261, 0.016560550779104233, 0.0044273813255131245, -0.005197194404900074, 0.008410492911934853, -0.011053133755922318, 0.008379853330552578, 0.010325450450181961, 0.004431211389601231, -0.019440647214651108, -0.004998038522899151, 0.002324758330360055, -0.005411669611930847, -0.017035460099577904, -0.00475292420014739, 0.01142080593854189, -0.003422028850764036, -0.019593844190239906, -0.008701566606760025, -0.005997646600008011, 0.017924001440405846, -0.00767131894826889, -0.0026464711409062147, 0.010394388809800148, 0.00033535691909492016, 0.022642455995082855, 0.0014697298174723983, 0.016820985823869705, -0.020558981224894524, 0.022703735157847404, -0.0006381595158018172, -0.008180697448551655, -0.004680155776441097, 0.011589322239160538, -0.01674438640475273, 0.02104921080172062, 0.0036460787523537874, 0.028586482629179955, 0.021922431886196136, 0.01865934394299984, -0.004140137694776058, 0.008326234295964241, -0.0261812973767519, 0.02615065686404705, -0.02221350558102131, 0.030133768916130066, -0.018858499825000763, -0.00452312920242548, -0.026487689465284348, -0.012079550884664059, 0.0016985671827569604, -0.02098793163895607, 0.0465717613697052, -0.030225686728954315, 0.0022653944324702024, -0.0028360518626868725, -0.009697344154119492, -0.009605426341295242, 0.014186004176735878, -0.005606994964182377, 0.014277921989560127, 0.004385252483189106, 0.029000114649534225, 0.02206030860543251, -0.0011652515968307853, -0.012715316377580166, -0.008372193202376366, 0.015266040340065956, -0.017663566395640373, 0.0018086772179231048, -0.008716885931789875, 0.007093002088367939, 0.002757538575679064, -0.02668684534728527, 0.012768935412168503, 0.009927138686180115, 0.006614262703806162, 0.029275868088006973, -0.001277276547625661, -0.0038720436859875917, -0.009590106084942818, 0.0012552544940263033, -0.019333409145474434, 0.003358835121616721, -0.003625014331191778, -0.0009143921197392046, 0.009544147178530693, 0.010892277583479881, -0.014844749122858047, -0.014201323501765728, -0.00785132497549057, 0.0404745377600193, 0.010478646494448185, 0.0230714064091444, -0.016437994316220284, -0.006583623122423887, 0.012048911303281784, 0.02290288917720318, 0.013136607594788074, -0.0045614284463226795, -0.022167546674609184, -0.020941972732543945, -0.016009043902158737, -0.012983410619199276, -0.003814595052972436, -0.019655121490359306, -0.03416283801198006, 0.0015051565133035183, 0.0291379913687706, -0.00756791140884161, -0.012592759914696217, -0.008977320045232773, 0.014362179674208164, 0.0030409523751586676, 0.014737511985003948, 0.010624183341860771, 0.011198670603334904, -0.004875481594353914, 0.00031261678668670356, -0.008586668409407139, -0.009429249912500381, 0.005955517292022705, 0.01420898362994194, 0.02290288917720318, 0.0006051264936104417, 0.01143612526357174, -0.00010891319834627211, 0.004243545699864626, 0.024940405040979385, -0.0016210114117711782, 0.023714831098914146, 0.013220865279436111, -0.012577439658343792, 0.020344506949186325, 0.008464111015200615, -0.011803797446191311, 0.005610825028270483, -0.026441730558872223, -0.012033591978251934, -0.0004133914189878851, -0.026012780144810677, 0.006016795989125967, -0.007468333467841148, 0.006633412092924118, -2.7123574909637682e-05, -0.01686694473028183, 0.003512031864374876, -0.00700108427554369, 0.003948641940951347, 0.016437994316220284, -0.00896965991705656, -0.008701566606760025, 0.013075328432023525, -0.010662482120096684, -0.030945710837841034, 0.0005002826219424605, 0.0039026830345392227, -0.0202679093927145, -0.01878190226852894, 0.013335762545466423, 0.01907297596335411, -0.03731868788599968, 0.0007597593357786536, -0.00786664430052042, -0.0065185148268938065, 0.02558382973074913, -0.0007415672298520803, 0.0023094385396689177, 0.010248851962387562, -0.00822665635496378, 0.0014687723014503717, -0.011213989928364754, -0.007345776539295912, 0.004952079616487026, 0.012094870209693909, 0.018107837066054344, -0.017663566395640373, 0.020574301481246948, -0.02872435934841633, 0.0003796402888838202, -0.02170795574784279, 0.013060009106993675, 0.01991555653512478, 0.010976535268127918, 0.029459703713655472, 0.000137757248012349, -0.014454098418354988, 0.01197231374680996, -0.02561447024345398, -0.0008339639171026647, 0.0349901020526886, -0.009819901548326015, -0.010248851962387562, 0.0009957777801901102, -0.00847943127155304, -0.01329746376723051, -0.01345066074281931, -0.004270354751497507, -0.00840283278375864, 0.0015310083981603384, -0.002579447580501437, 0.009444569237530231, -0.003975451458245516, -0.022964168339967728, 0.0065108551643788815, 0.006507025100290775, -0.01338938158005476, 0.0007999734370969236, -0.0024913595989346504, -0.013550237752497196, -0.0017512284684926271, 0.02281097136437893, 0.0230714064091444, 0.0007621530094183981, 0.001855593640357256, 0.006039775442332029, 0.014078766107559204, 0.022994806990027428, -0.01126760896295309, 0.01096887607127428, -0.005193364340811968, 0.010379068553447723, -0.0034852223470807076, -0.013795352540910244, -0.030348243191838264, 0.027958376333117485, -0.0006630540010519326, -0.01549583487212658, -0.008701566606760025, -0.014806450344622135, -0.0025583829265087843, -0.011045473627746105, -0.004243545699864626, -0.012378284707665443, 0.0028973305597901344, -0.009743303060531616, 0.0010829083621501923, -0.012370624579489231, -0.01564137078821659, -0.00015104225894901901, 0.013603856787085533, -0.022014349699020386, -0.004488660022616386, -0.006418936885893345, -0.003998430911451578, -0.006572133395820856, 0.018077196553349495, 0.03407092019915581, 0.01904233545064926, -0.013772373087704182, 0.0028666912112385035, 0.025216158479452133, 0.02782049961388111, -0.003399049397557974, -0.01512050349265337, 0.011053133755922318, 0.02149348147213459, -0.013856631703674793, 0.00484484201297164, 0.02737623080611229, -0.007587060797959566, -0.015020925551652908, 0.021171769127249718, -0.04932929947972298, 0.017924001440405846, -0.0023075235076248646, -0.005913388449698687, -0.018935097381472588, 0.0013136607594788074, -0.008931361138820648, 0.014086426235735416, -0.011696559377014637, 0.008916041813790798, -0.006070414558053017, -0.011803797446191311, 0.03722677007317543, 0.017479730769991875, -0.008984980173408985, -0.013787692412734032, 0.0013165331911295652, -0.0010043950751423836, 0.028800958767533302, 0.013037029653787613, 0.0013490874553099275, -0.00411332817748189, 0.0036077797412872314, 0.009628405794501305, -0.0019321920117363334, 0.009467548690736294, 0.0023783771321177483, 0.03848298266530037, -0.024465495720505714, 0.0014314305735751987, 0.01431622076779604, 0.010662482120096684, -0.004576748237013817, -0.003741826629266143, 0.018996376544237137, -0.008310914970934391, -0.005132085643708706, -0.0203291866928339, 0.006832567974925041, 0.010685461573302746, 0.020145351067185402, 0.0036575684789568186, -0.00989649910479784, -0.0035292664542794228, -0.0131059680134058, 0.0008425812120549381, 0.026518329977989197, 0.002169646555557847, -0.009344992227852345, -0.003925662487745285, 0.006093394476920366, -0.008862422779202461, 0.017265254631638527, -0.00995777826756239, -0.0003205159737262875, 0.006288719829171896, 0.004699305165559053, -0.006710010580718517, 0.035480327904224396, 0.00980458129197359, -0.0065261744894087315, -0.007989201694726944, -0.0027345591224730015, -0.004741434473544359, -0.00786664430052042, -0.0014151534996926785, -0.018414229154586792, -0.010907596908509731, 0.023485036566853523, -0.0011700389441102743, 0.0032803218346089125, 0.009965438395738602, -0.006300209555774927, 0.0034718175884336233, -0.00037317731766961515, -0.0175563283264637, 0.022611815482378006, 0.015082203783094883, 0.0022290104534476995, 0.00046174408635124564, -0.00756791140884161, -0.02092665433883667, -0.009498188272118568, -0.007678979076445103, 0.004335463512688875, 0.019180212169885635, -0.022918209433555603, -0.014094086363911629, 0.0014879218069836497, -0.009727983735501766, 0.014101745560765266, -0.006522344890981913, 0.005629974417388439, -0.009850540198385715, 0.013351082801818848, -0.006625752430409193, -0.005959347356110811, 0.018552105873823166, 0.019149573519825935, -0.0010312044760212302, -0.011321227997541428, 0.015664350241422653, -0.011321227997541428, 0.024281658232212067, 0.030348243191838264, 0.0015731374733150005, 0.005093786399811506, 0.015266040340065956, 0.003460327861830592, -0.017602287232875824, 0.0076674893498420715, -0.010945896618068218, -0.003188404021784663, -0.005829130299389362, -0.006081904750317335, -0.005752531811594963, 0.034438591450452805, -0.01743377186357975, -0.0006228398997336626, 0.0026541308034211397, 0.00922243483364582, 0.01743377186357975, 0.02104921080172062, 0.033151742070913315, 0.005771681200712919, 0.004507809411734343, -0.008157717995345592, -0.0027479638811200857, 0.028908196836709976, 0.014538356103003025, 0.01280723512172699, 0.0014821769436821342, 0.0001596595684532076, 0.015626052394509315, -0.008088779635727406, -0.019455967471003532, 0.013986848294734955, -0.012922132387757301, -0.0034450083039700985, 0.01668310910463333, 0.026288533583283424, 0.005361880641430616, 0.008655606769025326, -0.0031979787163436413, -0.018169114366173744, 0.006296379957348108, -0.0015252635348588228, 0.029030753299593925, 0.01365747582167387, 0.008632627315819263, -0.002068153815343976, 0.0008095481898635626, 0.006369147915393114, -0.024128463119268417, 0.00037030488601885736, 0.021324964240193367, 0.008579009212553501, -0.022336062043905258, 0.01570264995098114, 0.005047827493399382, -0.004507809411734343, -0.014193663373589516, -0.007460673805326223, 0.005928707774728537, 0.0033224509097635746, -0.017158018425107002, 0.008624968118965626, 0.008081120438873768, 0.019471285864710808, 0.01395620871335268, 0.028617123141884804, -0.012937451712787151, 0.014561335556209087, 0.011168031021952629, 0.004921440500766039, -0.017158018425107002, -0.014538356103003025, -0.01567201130092144, 0.003653738647699356, 0.00571806263178587, -0.009812241420149803, -0.0005342731019482017, -0.017326533794403076, 0.007035553455352783, 0.0069168261252343655, 0.012722976505756378, 0.01907297596335411, -0.012102530337870121, 0.0045537687838077545, 0.00700108427554369, -0.004300994332879782, 0.008785824291408062, 0.010907596908509731, 0.009697344154119492, -0.007690468803048134, 0.010670142248272896, -0.015189441852271557, 0.003856724128127098, 0.01198763307183981, -0.01348129939287901, 0.009750963188707829, 0.006690860725939274, -0.0023898668587207794, -0.007652169559150934, -0.012094870209693909, -7.31872787582688e-05, -0.013289803639054298, 0.004860161803662777, -0.02155476063489914, -0.0036288441624492407, 0.014883048832416534, -0.013488959521055222, -0.00423971563577652, -0.028264770284295082, -0.021279005333781242, -0.00968968402594328, 0.010624183341860771, 0.021953070536255836, 0.0030907411128282547, -0.0037686361465603113, 0.022581176832318306, -0.017035460099577904, 0.013182566501200199, -0.01626947708427906, 0.006935975514352322, 0.006468725856393576, 0.0050286781042814255, 0.026380453258752823, -0.0019819808658212423, 0.011122072115540504, -0.040290702134370804, -0.005158895161002874, -0.011328887194395065, 0.008770504966378212, 0.01189571525901556, -0.013787692412734032, 0.005790831055492163, 0.014423458836972713, -0.005737212020903826, -0.0019235746003687382, 0.004251205362379551, -0.0005529439076781273, 0.00995777826756239, -0.010356089100241661, 0.024434855207800865, -0.0023075235076248646, 0.015158802270889282, 0.008816463872790337, -0.014982625842094421, -0.006281060166656971, 0.010754400864243507, -0.007012574002146721, 0.005419329274445772, 0.00026474284823052585, -0.004906120710074902, 0.00896965991705656, -0.014844749122858047, -0.013366402126848698, 0.00925307348370552, 0.010179913602769375, 0.02860180288553238, -0.011842096224427223, 0.0068555474281311035, 0.004346953239291906, -0.010287150740623474, -0.020053433254361153, 0.00032721832394599915, 0.0067291599698364735, -0.008548369631171227, -0.00040668906876817346, -0.008395172655582428, -0.02274969406425953, 0.008885402232408524, 0.00498654879629612, -0.014201323501765728, 0.0036192694678902626, 0.017893360927700996, -0.0007525782566517591, 0.0038222549483180046, -0.010601203888654709, 0.018352951854467392, 0.0011298247845843434, -0.010095654986798763, 0.023546315729618073, -0.022382020950317383, 0.004641856532543898, 0.0027230693958699703, -0.0016497357282787561, -0.0005088999168947339, 0.0018632535357028246, 0.034469231963157654, 0.006346168462187052, -0.03149721771478653, -0.008035160601139069, -0.010386728681623936, 0.02713111601769924, -0.01582520827651024, -0.0036269291304051876, 0.010371409356594086, 0.0055112470872700214, -0.008732205256819725, -0.004925270099192858, 0.001383556635119021, -0.005426988936960697, -0.019593844190239906, 0.0029490343295037746, -0.0046380264684557915, 0.031037628650665283, -0.002361142309382558, 0.002324758330360055, 0.01301405020058155, -0.008234316483139992, 0.0029183949809521437, -0.005967007018625736, 0.003249682718887925, -0.010065015405416489, -1.6232255802606232e-05, -0.019333409145474434, 0.00562614481896162, -0.02271905355155468, -0.002150497166439891, -0.0036786331329494715, -0.018521467223763466, 0.00466483598574996, -0.02432761900126934, -0.007801536004990339, -0.0043584429658949375, 0.006147013045847416, 0.012523820623755455, -0.0021083680912852287, -0.023990586400032043, -0.0010608864249661565, -0.030486121773719788, 0.0007889624102972448, -0.0036288441624492407, -0.0010187573498114944, -0.0019628312438726425, -0.013994508422911167, 0.015871167182922363, 0.016468632966279984, -0.0037207622081041336, -0.0051780445501208305, 0.022994806990027428, -0.0053733703680336475, 0.0013395126443356276, -0.0051703848876059055, -0.003743741661310196, -0.03756380453705788, -0.017632927745580673, 0.01862870529294014, -0.01512050349265337, 0.013351082801818848, 0.008816463872790337, -0.004645686596632004, -0.024159101769328117, -0.0015549453673884273, -0.00813473854213953, -0.01476049143821001, 0.005331241060048342, 0.0018747432623058558, -0.01329746376723051, -0.007395565044134855, 0.0346224270761013, -0.006579793523997068, 0.0073304567486047745, 0.03275343030691147, -0.0001780910388333723, -0.01512050349265337, 0.0048410119488835335, -0.011688899248838425, -0.015074544586241245, 0.018705302849411964, -0.0010235446970909834, -0.022014349699020386, -0.01764824613928795, -0.005262302700430155, 0.006319359410554171, -0.02379143051803112, -0.0013921739300712943, 0.018291672691702843, -0.008341554552316666, 0.0234084390103817, -0.008739865384995937, 0.005695083178579807, -0.0023553974460810423, -0.00037892218097113073, 0.018398910760879517, 0.01106079388409853, 0.012217427603900433, -0.016437994316220284, 0.007372585590928793, 0.008257295936346054, 0.0018814456416293979, 0.027651984244585037, -0.006560643669217825, 0.007793876342475414, -0.007395565044134855, 0.02376079000532627, -0.022550538182258606, -0.002669450594112277, 0.00224241497926414, 0.04540747031569481, 0.007843664847314358, 0.014392819255590439, -0.0024990192614495754, -0.02221350558102131, 0.004408231936395168, -0.008004521951079369, 0.008203676901757717, -0.015618392266333103, -0.000446185062173754, 0.034469231963157654, 0.005790831055492163, 0.0010867383098229766, -0.022443300113081932, 0.007422374561429024, -0.024174422025680542, 0.01743377186357975, 0.029812056571245193, 0.012171468697488308, 0.01967044174671173, 0.023546315729618073, 0.02850988507270813, 0.007897283881902695, -0.028754999861121178, 0.01283787377178669, 0.028647761791944504, -0.013151926919817924, -0.007935583591461182, -0.01758696883916855, -0.008012181147933006, -0.016284797340631485, 0.0004847235686611384, -0.02460337243974209, 0.0038797035813331604, -0.005557205993682146, -0.01671374775469303, 0.0052316635847091675, 0.007575571071356535, 0.012378284707665443, 0.024588052183389664, 0.0001750989176798612, -0.004829522222280502, 0.002828391967341304, -0.003609694540500641, -0.003682462964206934, -0.008701566606760025, -0.005752531811594963, -0.004346953239291906, -0.006530004553496838, -0.014293241314589977, 0.008831783197820187, -0.018674664199352264, 0.01872062310576439, 0.028525205329060555, -0.013251504860818386, -0.01931808888912201, 0.013588537462055683, 0.010654822923243046, -0.004105668514966965, -0.028295408934354782, 0.00598615687340498, -0.001172911375761032, 0.0073304567486047745, -0.011382506228983402, 0.0004777818685397506, -0.0032535125501453876, -0.004228225909173489, -0.016483953222632408, 0.013511938974261284, 0.037747640162706375, 0.006495535373687744, 0.007192579563707113, -0.019333409145474434, -0.00847943127155304, 0.008241976611316204, -0.0017320789629593492, -0.004446531180292368, 0.004898461047559977, -0.008372193202376366, 0.005143575370311737, -0.022458620369434357, 0.01486772857606411, 0.009398610331118107, 0.0056452942080795765, -0.002140922239050269, -0.007648339495062828, -0.008341554552316666, -0.011842096224427223, -0.026610247790813446, 0.00714279105886817, -0.011619960889220238, 0.026579607278108597, 0.02337779849767685, -0.011290588416159153, -0.016131600365042686, 0.018735943362116814, -0.004944419953972101, -0.012569780461490154, -0.00014074936916586012, -0.011528043076395988, -0.004588237963616848, -0.004075029399245977, -0.005457628518342972, 0.01576392911374569, 0.0019484690856188536, -0.005591675639152527, -0.0020547492895275354, 0.004431211389601231, 0.0013873865827918053, -0.001902510062791407, 0.016974182799458504, -0.005369540303945541, 0.0038318296428769827, 0.009207114577293396, 0.012431902810931206, -0.01818443462252617, -0.002433910733088851, 0.022290103137493134, -0.00021351774921640754, -0.009697344154119492, 0.004078858997672796, 0.005591675639152527, 0.010172253474593163, 0.005354220513254404, -0.0006170949782244861, 0.0012715316843241453, -0.0031998937483876944, 0.029092032462358475, 0.01620819978415966, -0.009007959626615047, 0.004274184815585613, 0.00794324278831482, -0.0031577646732330322, -0.0018661259673535824, 0.0010819508461281657, -0.016621829941868782, 0.009337332099676132, -0.03155849874019623, 0.0022079457994550467, -0.023806748911738396, 0.021845832467079163, -0.02095729298889637, -0.014308561570942402, 0.0025105089880526066, 0.014614954590797424, -0.018552105873823166, 0.012799574993550777, 0.017295895144343376, -0.0037667211145162582, 0.012324665673077106, 0.003929492551833391, -0.02480252832174301, 0.01982363872230053, 0.01740313321352005, -0.00332819577306509, 0.02457273192703724, 0.011275269091129303, -0.007502802647650242, 0.0019609162118285894, -0.014270261861383915, -0.017755484208464622, 0.007889624685049057, 0.007732597645372152, -0.0002472688793204725, -0.006602772977203131, -0.020313868299126625, -0.001168124028481543, -0.000923009414691478, -0.004695475567132235, 0.002414761111140251, 0.009291373193264008, 0.002636896213516593, -0.006487875245511532, -0.00765599962323904, -0.023622913286089897, 0.0017550584161654115, -0.012010612525045872, -0.002972013782709837, -0.021033890545368195, -0.013833652250468731, 0.0008804016397334635, 0.005465288180857897, 0.002688600216060877, 0.007372585590928793, 0.0017569733317941427, -0.006434256676584482, 0.007315136957913637, -0.0027728581335395575, -0.004737604409456253, -0.015426896512508392, 0.010493965819478035, -0.010425027459859848, -0.024113142862915993, 0.008372193202376366, -0.031987447291612625, 0.012301686219871044, -0.020819416269659996, -0.010402048006653786, -0.0260587390512228, -0.03290662541985512, 0.027330271899700165, 0.010739080607891083, 0.002688600216060877, -0.003289896761998534, 0.010938236489892006, 0.001709099393337965, 0.01486772857606411, -0.02731495164334774, 0.008249635808169842, -0.007361095864325762, 0.002912650117650628, -0.012079550884664059, 0.0014007913414388895, 0.009482868947088718, -0.017357172444462776, 0.01479113008826971, 0.009743303060531616, -0.01859806664288044, -8.12660000519827e-05, 0.00896965991705656, -0.01486772857606411, -0.00423971563577652, -0.016514591872692108, -0.004442701116204262, -0.007410884834825993, -0.010179913602769375, 0.0008014096529223025, 0.022412661463022232, 0.015963084995746613, -0.008594328537583351, 0.014454098418354988, -0.00480654276907444, 0.010325450450181961, -0.011849756352603436, 0.0009038598509505391, 0.034438591450452805, -0.00489463098347187, 0.0003035207337234169, 0.008900721557438374, -0.02907671220600605, 0.01856742613017559, 0.01960916258394718, -0.006349998526275158, -0.01626947708427906, 0.009996077045798302, -0.015557113103568554, -0.002414761111140251, 0.02457273192703724, 0.004408231936395168, 0.005354220513254404, 0.014186004176735878, 0.009620745666325092, 0.023331839591264725, 0.004542278591543436, 0.002707749605178833, -0.0073304567486047745, -0.006637242157012224, 0.00395630206912756, -0.028264770284295082, -0.020850054919719696, -0.004580577835440636, -0.00304478220641613, -0.00841815210878849, -0.006376808043569326, -0.008762844838202, -0.017112059518694878, 0.0012495096307247877, -0.010800359770655632, 0.00931435264647007, 0.02438889630138874, 0.004653346259146929, 0.01674438640475273, -0.006284890230745077, 0.01282255444675684, 0.0013471725396811962, -0.019685762003064156, -0.0019235746003687382, 0.004603557288646698, -0.004580577835440636, 0.027713263407349586, 0.0030064829625189304, -0.021631358191370964, -0.007008743938058615, -0.002089218469336629, -0.00012578876339830458, -0.0061125438660383224, 0.01623883843421936, -0.01483708992600441, 0.01477581076323986, 0.023239921778440475, 0.010624183341860771, -0.004921440500766039, 0.002504764124751091, 0.003680547932162881, -0.022765012457966805, -0.003410539124161005, 0.014883048832416534, -0.019302770495414734, -0.010103315114974976, -0.010945896618068218, 0.02716175466775894, -0.0014276007423177361, 0.029352465644478798, 0.0046380264684557915, 0.01847550831735134, 0.0053082616068422794, -0.020099392160773277, 0.003086911281570792, 0.011160371825098991, -0.014277921989560127, -0.0026215766556560993, 0.0232246033847332, -0.012983410619199276, -0.0015807972522452474, -0.02438889630138874, -0.005572525784373283, -0.005997646600008011, 0.02080409601330757, -0.004798883106559515, 0.006935975514352322, -0.017203977331519127, 0.01107611320912838, 0.005518907215446234, -0.0031807441264390945, 0.011014834977686405, 0.006403617560863495, -0.009750963188707829, 0.006169992499053478, 0.003795445431023836, -0.009498188272118568, -0.010287150740623474, -0.005936367902904749, -0.0030601017642766237, -0.0057065729051828384, -0.028586482629179955, -0.008831783197820187, 0.0173418540507555, 0.0005826257984153926, -0.0008358788909390569, 0.006208291742950678, -0.029275868088006973, 0.00011759035260183737, -0.0175563283264637, -0.03017972782254219, -0.002433910733088851, -0.011788477189838886, 0.01070078182965517, -0.03247767686843872, 0.01135952677577734, 0.00641127722337842, 0.015013265423476696, 0.0008689119131304324, 0.013864290900528431, -0.007027893327176571, -0.026043420657515526, -0.002688600216060877, 0.004465680569410324, 0.016223518177866936, -0.007165770512074232, 0.018368270248174667, 0.013688115403056145, -0.0014132384676486254, -0.01724993623793125, 0.001359619665890932, -0.016055002808570862, 0.020467063412070274, 0.02227478288114071, 0.001668885350227356, -0.03737996891140938, 0.038973212242126465, -0.019777679815888405, 0.020941972732543945, -0.006101054139435291, -0.0030218027532100677, 0.011788477189838886, 0.0004825692449230701, -0.006610432639718056, 0.005101446527987719, -0.0029586090240627527, 0.008770504966378212, -0.006503195036202669, -0.015840526670217514, -0.015978403389453888, 0.005729552358388901, -0.006710010580718517, 0.011658260598778725, 0.010938236489892006, -0.010371409356594086, 0.002841796725988388, 0.0018450614297762513, 0.03284534811973572, 0.0061048842035233974, 0.025629788637161255, 0.001470687217079103, 0.014668573625385761, -3.3781045203795657e-05, 0.006997254211455584, -0.011788477189838886, 0.0005548588815145195, 0.011007174849510193, -0.021279005333781242, -0.0065529840067029, -0.014124725013971329, 0.003602034877985716, 0.0008109844056889415, -0.0030256325844675303, 0.003795445431023836, 0.020558981224894524, -0.012891492806375027, 0.00571806263178587, -0.003916087560355663, -0.004990378860384226, 0.006583623122423887, 0.007177260238677263, -0.014117065817117691, 0.008816463872790337, -0.017832083627581596, -0.016468632966279984, -0.002719239331781864, -0.001668885350227356, 0.0011882310500368476, 0.025062961503863335, -0.009628405794501305, -0.0173418540507555, 0.0037782108411192894, 0.006507025100290775, -0.006629582494497299, -0.015748608857393265, 0.001312703243456781, -0.011459104716777802, 0.025936182588338852, -0.015243060886859894, -0.009122856892645359, -0.00446951063349843, 0.016912903636693954, -0.025537870824337006, -0.005924878176301718, 0.01907297596335411, 0.00841815210878849, -0.0129987308755517, 0.02627321518957615, -0.010057356208562851, 0.01758696883916855, -0.01844486966729164, 0.0016794175608083606, -0.006078074686229229, 0.014668573625385761, -0.006035945378243923, 0.008632627315819263, 0.03220192342996597, -0.0012418498517945409, 0.0023400778882205486, 0.009567126631736755, 0.004860161803662777, -0.02218286506831646, 0.003994600847363472, -0.0057678516022861, 0.003711187280714512, -0.005580185912549496, 0.009107537567615509, 0.016790345311164856, 0.005530396942049265, 0.003797360463067889, -0.004683985840529203, -0.01394088938832283, 0.0012514246627688408, 0.010363749228417873, 0.015112843364477158, 0.028647761791944504, -0.0004392433329485357, 0.012516161426901817, -0.011566342785954475, -0.009766282513737679, -0.003751401323825121, 0.008678586222231388, -0.012945111840963364, -0.001232275040820241, -0.00994245894253254, -0.025185519829392433, -0.010118634440004826, -0.02212158776819706, 0.012523820623755455, -0.009076897986233234, 0.025890223681926727, 0.012355304323136806, 0.02501700259745121, 0.017816763371229172, -0.015557113103568554, -0.012853194028139114, -0.010708441026508808, 0.006614262703806162, -0.009850540198385715, -0.014308561570942402, 0.021294325590133667, 0.029275868088006973, 0.000720023934263736, -0.01106079388409853, 0.027514107525348663, -0.023929307237267494, 0.007958563044667244, 0.022014349699020386, -0.0021677317563444376, -0.00683639757335186, 0.012577439658343792, -0.021631358191370964, -0.004726114682853222, -0.01960916258394718, 0.006012965925037861, -0.002539233537390828, -0.006441916339099407, 0.007054702844470739, -0.005224003456532955, -0.005181874614208937, -0.004546108655631542, -0.03238575905561447, -0.001441962900571525, 0.01255446020513773, 0.049359939992427826, 0.03272278979420662, 0.002087303437292576, -0.001527178450487554, 0.0028264769352972507, -0.03272278979420662, 0.0040214103646576405, -0.007303647231310606, -0.014906028285622597, 0.0041018384508788586, 0.0022366701159626245, 0.004783563315868378, 0.01922617107629776, 0.017357172444462776, -0.015717970207333565, 0.0131059680134058, -0.005978496745228767, -0.0008291765116155148, -0.004404401872307062, 0.024174422025680542, 0.0055763558484613895, -0.008425812236964703, -0.015580092556774616, 0.012278706766664982, 0.026441730558872223, 0.014086426235735416, -0.0006735862698405981, -0.010172253474593163, -0.013626836240291595, 0.012922132387757301, 0.03071591630578041, 0.000844017427880317, -0.011750178411602974, 0.0010628013405948877, -0.0030601017642766237, 0.016116280108690262, 0.008801143616437912, 0.012362964451313019, 0.004385252483189106, -0.010616523213684559, -0.021830514073371887, -0.015189441852271557, 0.014500057324767113, -0.024143781512975693, -0.015472855418920517, 0.006798098795115948, 0.0013347252970561385, -0.030195048078894615, 0.012309345416724682, 0.011160371825098991, -0.0027058348059654236, 0.002221350558102131, 0.00011382027878426015, -0.004300994332879782, -0.013787692412734032, 0.017816763371229172, 0.012018272653222084, -0.02627321518957615, -0.009536487981677055, -0.006342338863760233, -0.001711014425382018, 0.004641856532543898, -0.0013107883278280497, 0.04209842160344124, -0.0013816417194902897, 0.025874903425574303, -0.00028604676481336355, 0.002110282890498638, -0.004354612901806831, 0.003640333889052272, 0.01098419539630413, -0.025216158479452133, -0.01392557006329298, -0.0015243060188367963, -0.01934872940182686, -0.01217912882566452, -0.021861152723431587, -0.01862870529294014, -0.015319658443331718, 0.011558682657778263, 0.018705302849411964, 0.0005280494806356728, 0.01683630421757698, -0.003155849641188979, -0.013573217205703259, 0.005725722294300795, -0.01273063663393259, -0.0010695037199184299, -0.0006802885909564793, -0.01740313321352005, -0.012140829116106033, 0.006215951405465603, -0.027651984244585037, 0.0020375146996229887, 0.025062961503863335, 0.006472555920481682, -0.010072675533592701, -0.008027501404285431, 0.004189926665276289, 0.015465195290744305, -0.001222700229845941, 0.02841796725988388, 0.0030888260807842016, 0.01626947708427906, 0.0036039496771991253, -0.04629600793123245, 0.009835220873355865, -0.0024281658697873354, 0.012991070747375488, 0.025032322853803635, -0.001253339578397572, 0.008739865384995937, 0.004829522222280502, -0.00493293022736907, -0.01401748787611723, 0.014392819255590439, -0.005725722294300795, 0.010830998420715332, 0.03609311580657959, 0.0175563283264637, -0.011367186903953552, 0.011030154302716255, 0.02665620669722557, -0.004075029399245977, 0.009934798814356327, -0.005197194404900074, 0.014124725013971329, 0.022611815482378006, -0.02337779849767685, 0.0012006782926619053, 0.01910361461341381, 0.002970098750665784, -0.0003762891283258796, 0.01365747582167387, 0.008548369631171227, -0.013420021161437035, -0.01173485815525055, 0.0006774161593057215, -0.00811941921710968, -0.00409800885245204, -0.002204115968197584, 0.016009043902158737, 0.01796996034681797, -0.013511938974261284, 0.010754400864243507, 0.00715811038389802, -0.018169114366173744, 0.00466483598574996, 0.007039383053779602, -0.011964653618633747, -0.012799574993550777, -0.020221948623657227, -0.0026120017282664776, 0.01365747582167387, -0.0009421590366400778, -0.007096831686794758, -0.02077345736324787, 0.030823152512311935, -0.003399049397557974, -0.005534226540476084, -0.0006357658421620727, 0.006683201063424349, 0.019302770495414734, 0.015204761177301407, 0.008356873877346516, -0.00977394264191389, -0.011114411987364292, 0.013910249806940556, -0.003803105326369405, 0.0035177767276763916, -0.0003901725576724857, -0.010425027459859848, 0.0055112470872700214, -0.01128292828798294, -0.00931435264647007, -0.008173038251698017, -0.004519299138337374, -0.009038598276674747, -0.020650900900363922, -0.007146620657294989, 0.018490828573703766, 0.021830514073371887, 0.011007174849510193, 0.00791260413825512, -0.0044197216629981995, 0.0022577347699552774, 0.0005366667755879462, 0.005430819001048803, 0.00940627045929432, 0.00549975736066699, -0.009636064991354942, 0.014469417743384838, -0.0010177998337894678, -0.015128162689507008, -0.011857415549457073, 0.006920655723661184, -0.0005692210979759693, 0.01477581076323986, -0.025905542075634003, -0.0036460787523537874, -0.00980458129197359, -0.011459104716777802, -0.015166462399065495, -0.01698950119316578], "4a936b4a-b9fb-455e-9162-319f1b8112be": [-0.006956224329769611, 0.012458467856049538, -0.013550798408687115, 0.005509624723345041, -0.05207757651805878, -0.02913864515721798, 0.012281334027647972, 1.0270867278450169e-05, -0.036784954369068146, 0.03398032486438751, -0.00420325668528676, 0.04821014031767845, -0.02538929507136345, -0.015484518371522427, -0.019809555262327194, -0.0010591173777356744, -0.044962670654058456, 0.045641686767339706, 0.01794964075088501, -0.013137483969330788, 0.05798206478357315, -0.008731260895729065, -0.04655688256025314, 0.013351522386074066, -0.010517368093132973, -0.014325762167572975, -0.007173952180892229, -0.006258756387978792, -0.03826107829809189, -0.0004672848153859377, 0.020783795043826103, -0.0036423306446522474, 0.009963822551071644, 0.004893343895673752, -0.008856730535626411, -0.0315004400908947, -0.013019394129514694, 0.06471318006515503, -0.02351462095975876, 0.023691754788160324, -0.01623734086751938, 0.014465994201600552, 0.022422291338443756, -0.011476847343146801, -0.03902865946292877, 0.03976672142744064, 0.020104778930544853, 0.0012842259602621198, 0.011587556451559067, -0.011491608805954456, -0.00683075375854969, -0.007587266154587269, -0.006472794339060783, 0.020650943741202354, 0.0035740600433200598, 0.01406744122505188, -0.0027990960516035557, 0.050660502165555954, 0.02392793446779251, -0.014318381436169147, 0.0011430718004703522, -0.019514329731464386, 0.020444286987185478, 0.006871347315609455, 0.005140594206750393, -0.0382906012237072, -0.0119492057710886, 0.008554126136004925, -0.05768683925271034, -0.018835313618183136, 0.005550218280404806, 0.04947960376739502, -0.008731260895729065, 0.018879598006606102, -0.021108541637659073, 0.019263390451669693, 0.040180034935474396, -0.005306657869368792, 0.0026570193003863096, 0.01895340345799923, -0.04646831378340721, 0.010694502852857113, 0.017772506922483444, 0.009092910215258598, 0.04330941289663315, 0.029507676139473915, -0.033094651997089386, -0.025138353928923607, -0.04369320720434189, -0.02674732729792595, 0.011166861280798912, -0.014857166446745396, 0.029182927682995796, -0.03944197669625282, -0.0012842259602621198, 0.0051664263010025024, 0.05411462485790253, 0.018038209527730942, 0.015056442469358444, -0.05399653688073158, -0.01298249140381813, 0.02192040905356407, -0.07162143290042877, 0.03522026538848877, -0.004546455107629299, -0.004904414992779493, 0.010281188413500786, -0.026274967938661575, -0.006413749419152737, 0.05222519114613533, 0.042600877583026886, -0.019971927627921104, -0.0028193925973027945, 0.017211580649018288, -0.032415635883808136, -0.06742924451828003, -0.005314038600772619, -0.023529382422566414, 0.00674218637868762, -0.0516052208840847, 0.021876124665141106, 0.049715783447027206, 0.039205797016620636, 0.020296674221754074, -0.007443344220519066, -0.0185991358011961, -0.0004456042661331594, 0.01591259241104126, 0.014045299030840397, 0.0030186690855771303, 0.0055945017375051975, 0.002238169778138399, -0.01007453165948391, 0.026525909081101418, 0.0033932351507246494, 0.010428800247609615, 0.005863893777132034, 0.062233295291662216, -0.019101016223430634, 0.055059343576431274, -0.04750160127878189, -0.015078584663569927, -0.02936006337404251, 0.0013146710116416216, 0.005801158957183361, 0.005144284572452307, -0.03424602746963501, 0.03212041035294533, -0.000598290644120425, 0.020385242998600006, -0.031677573919296265, -0.02444457821547985, 0.045553117990493774, 0.00790463201701641, 0.013403186574578285, -0.004690377041697502, -0.007188713178038597, 0.007207165006548166, 0.02354414388537407, 0.003223481122404337, 0.006196021568030119, -0.051014769822359085, 0.026215923950076103, 0.015632130205631256, 0.025404056534171104, 0.0252564437687397, 0.03226802498102188, 0.007801303640007973, -0.03826107829809189, 0.026053549721837044, 0.021256154403090477, 0.0069156307727098465, 0.019484808668494225, 0.016931116580963135, -0.005922938697040081, -0.026658760383725166, 0.030703334137797356, 0.009284806437790394, 0.024149352684617043, -0.044195085763931274, 0.0009327245061285794, -0.03460029512643814, -0.020946169272065163, 0.012790595181286335, 0.009011724032461643, 0.037139225751161575, 0.026378296315670013, 0.008686976507306099, -0.008967439644038677, 0.028061075136065483, 0.02153661660850048, 0.004254921339452267, 0.04012099280953407, 0.04469696804881096, 0.0076463110744953156, -0.031648050993680954, 0.009528366848826408, -0.002500181319192052, 0.011063532903790474, 0.03970767557621002, -0.012185385450720787, -0.052697550505399704, -0.034718386828899384, 0.033360354602336884, -0.010893778875470161, 0.012059914879500866, -0.01374269463121891, -0.016665415838360786, 0.005140594206750393, -0.04974530637264252, 0.018392477184534073, -0.02088712342083454, 0.016739221289753914, -0.032031845301389694, -0.03660782054066658, -0.002455897629261017, -0.007912012748420238, 0.019706226885318756, 0.013978873379528522, 0.0064174397848546505, -0.023558903485536575, -0.004926556721329689, 0.011129958555102348, -0.031382348388433456, -0.013462231494486332, -0.02623068541288376, -0.03126426041126251, 0.008347469381988049, -0.02367699332535267, -0.0024688136763870716, 0.05455746129155159, 0.025728803128004074, -0.00763154961168766, -0.03297656029462814, -0.021270915865898132, 0.0048785824328660965, 0.018200581893324852, -0.016443997621536255, 0.005856513511389494, -0.033094651997089386, 0.018126776441931725, 0.03622402995824814, 0.000360496633220464, -0.02713111974298954, 0.04248278588056564, 0.024990743026137352, -0.03327178582549095, 0.04513980448246002, 0.022008975967764854, -0.03462981805205345, 0.007140739355236292, 0.007934154942631721, -0.015012159012258053, -0.02910912223160267, -0.03563358262181282, 0.05494125559926033, -0.01901244930922985, -0.01401577703654766, -0.008436036296188831, -0.047560643404722214, 0.00038725134800188243, -0.014775979332625866, -0.029507676139473915, -0.0109306825324893, 0.043545592576265335, -0.010827353224158287, 0.014495516195893288, -0.057184960693120956, 0.015145010314881802, 0.027765851467847824, -0.02069522812962532, -0.023795083165168762, 0.007546673063188791, -0.013558179140090942, -0.009786687791347504, -0.017536327242851257, 0.017565850168466568, -0.004413604270666838, 0.036460209637880325, -0.006196021568030119, 0.007151810452342033, 0.0014281478943303227, -0.015691174194216728, 0.024237919598817825, -0.02829725481569767, 0.00750976987183094, 0.012037773616611958, 0.007277280557900667, -0.05178235471248627, -0.056387852877378464, -0.01876150816679001, -0.04375224933028221, 0.018554851412773132, 0.020975690335035324, 0.040475260466337204, -0.01817105896770954, 0.010679741390049458, -0.012591319158673286, 0.005708901211619377, 0.009683359414339066, -0.03220897912979126, -0.02308654598891735, 0.033094651997089386, -0.023839367553591728, 0.014857166446745396, -0.007044791243970394, 0.0437227301299572, 0.029404345899820328, -0.020901884883642197, -0.007066933438181877, 0.04953864961862564, 0.01982431672513485, 0.009919539093971252, -0.004775254055857658, 0.005018814001232386, 0.015794504433870316, 0.01732967048883438, -0.028858181089162827, -0.006284588482230902, -0.028444867581129074, 0.025374533608555794, 0.011572794988751411, -0.037080179899930954, -0.0070226495154201984, 0.021846603602170944, -0.03899914026260376, 0.03353748843073845, 0.0036349499132484198, -0.03321273997426033, -0.035751670598983765, -0.030290020629763603, -0.03055572137236595, -0.02561071328818798, -0.026024028658866882, -0.014613606035709381, -0.01285702083259821, -0.03194327652454376, -0.04788539186120033, -0.013491753488779068, -0.024178875610232353, -0.024046024307608604, 0.03212041035294533, -0.004177424591034651, 0.013189148157835007, 0.03524978831410408, 0.005107381381094456, -0.02085760049521923, 0.018259627744555473, -0.039530541747808456, -0.00032774516148492694, 0.0009345696307718754, -0.02202373743057251, 0.006314110942184925, -0.0026201163418591022, 0.014628367498517036, -0.011462085880339146, -0.021433288231492043, -0.012082057073712349, 0.00771273672580719, -0.012724170461297035, -0.0029854564927518368, -0.015115487389266491, -0.032327067106962204, -0.01713777519762516, -0.01248061005026102, 0.004834298975765705, -0.011609697714447975, 0.009528366848826408, 0.028371062129735947, 0.002544465009123087, -0.026525909081101418, 0.03460029512643814, 0.05721448361873627, -0.007247758097946644, -0.03297656029462814, -0.0005858358344994485, 0.05600406229496002, -0.005871274508535862, 0.007081694435328245, 0.02118234895169735, 0.004373010713607073, 0.006908250041306019, -0.02169899083673954, -0.035426922142505646, 0.019868599250912666, 0.006786470301449299, 0.014436471275985241, -0.015986399725079536, -0.014251955784857273, 0.0012971420073881745, -0.014082202687859535, 0.020237630233168602, -0.017373953014612198, -0.006708973553031683, -0.01681302674114704, 0.03631259873509407, -0.00803748331964016, 0.007897252216935158, 0.0012030393118038774, 0.0009843887528404593, 0.017314909026026726, 0.0002131150831701234, -0.012665125541388988, 0.02221563272178173, 0.02234848402440548, -0.036135461181402206, -0.013691029511392117, -0.011085675098001957, -0.013107961975038052, 0.0355745367705822, -0.0006061324966140091, 0.023485098034143448, -0.006203401833772659, -0.010819973424077034, 0.06010768190026283, -0.004136831499636173, 0.02082807943224907, 0.041921861469745636, -0.050394799560308456, -0.020591899752616882, -0.01665065437555313, 0.05254993587732315, -0.003079559188336134, 0.03155948594212532, -0.01629638485610485, 0.0191453006118536, 0.059222009032964706, 0.015956876799464226, -0.027854418382048607, 0.00856888759881258, 0.018805792555212975, 0.0019669323228299618, -0.001445676782168448, -0.016060205176472664, 0.009602172300219536, -0.026880178600549698, 0.0008081767009571195, -0.03318321704864502, 0.0016726305475458503, 0.001098788226954639, 0.044254131615161896, 0.038822002708911896, -0.00010471239511389285, 0.0017842622473835945, -0.004956079181283712, -0.046291179955005646, -0.047294944524765015, 0.0024189946707338095, -0.0028562957886606455, 0.012938207946717739, -0.0075208405032753944, 0.003037120681256056, -0.04883011057972908, 0.015838786959648132, -0.00836222991347313, 0.0015213281149044633, 0.0026164259761571884, -0.03244515880942345, -0.011070913635194302, 0.007565124426037073, -0.015764981508255005, -0.020281914621591568, 0.04091809689998627, -0.005683069117367268, 0.0048638214357197285, -0.052313756197690964, -0.0027049933560192585, 0.01335890218615532, -0.001367257791571319, -0.03908770531415939, -0.010067150928080082, 0.039825767278671265, -0.011277570389211178, 0.002883973065763712, -0.01830391027033329, 0.003863748861476779, 0.008258901536464691, -0.012015631422400475, 0.0030186690855771303, -0.009557888843119144, -0.011233286932110786, -0.029891466721892357, -0.034039370715618134, -0.003765955800190568, 0.015004778280854225, 0.002693922258913517, -0.002201266586780548, 0.011772071942687035, -0.004992981906980276, -0.02267323061823845, 0.03330130875110626, -0.01267988607287407, 0.0027474318630993366, 0.00644327187910676, -0.005336180329322815, -0.04451983422040939, 0.00889363419264555, -0.02506454847753048, -0.02107902057468891, -0.040534306317567825, 0.03400984779000282, -0.021787557750940323, 0.01814153790473938, 0.016665415838360786, 0.023204635828733444, -0.02254038117825985, -0.029374824836850166, -0.01817105896770954, 0.007572505157440901, 0.0022326342295855284, -0.009631695225834846, 0.03120521456003189, 0.006262446753680706, -0.0076463110744953156, 0.00043061241740360856, 0.0032935969065874815, -0.018909120932221413, -0.004336107987910509, 0.02321939542889595, -0.02441505528986454, 0.014871926978230476, 0.0014309155521914363, -0.00723668746650219, 0.024075547233223915, 0.0015536182327196002, -0.017285386100411415, -0.021448049694299698, 0.006849205121397972, 0.01917482167482376, -0.01591259241104126, -0.01713777519762516, 0.009351232089102268, 0.0036294145975261927, 0.02001621201634407, 0.019514329731464386, -0.015897832810878754, -0.0022806082852184772, 0.018909120932221413, 0.011425183154642582, 0.04599595442414284, -0.017905358225107193, 0.020281914621591568, -0.017993925139307976, -0.020901884883642197, 0.013941970653831959, 0.033419396728277206, -0.03451173007488251, 0.023204635828733444, 0.0015407021855935454, 0.013321999460458755, -0.018540089949965477, 0.021123303100466728, -0.009565269574522972, -0.008325327187776566, 0.0071259778924286366, -0.039825767278671265, -0.005273445043712854, -0.005483792629092932, -0.047324467450380325, -0.01995716616511345, 0.016148772090673447, 0.017993925139307976, 0.025020264089107513, -7.622785051353276e-05, -0.023942695930600166, 0.004834298975765705, -0.027514910325407982, 0.027573956176638603, -0.0011855103075504303, -0.012554416432976723, -0.0005729197873733938, 0.010546890087425709, 0.04552359879016876, 0.000734370609279722, -0.02324891835451126, 0.03899914026260376, -0.006893489044159651, 0.0301424078643322, -0.0006794773507863283, -0.003232706803828478, 0.02001621201634407, -0.024311726912856102, -0.008000580593943596, -0.024326488375663757, 0.021610423922538757, -0.008495081216096878, -0.0420989952981472, -0.029079599305987358, -0.010104053653776646, 0.02631925232708454, 0.007934154942631721, 0.03055572137236595, 0.03256324678659439, -0.0071259778924286366, -0.024592189118266106, 0.022451812401413918, -0.01944052428007126, -0.009801449254155159, 0.023662233725190163, -0.007565124426037073, -0.009624314494431019, 0.02137424424290657, 0.035722147673368454, -0.020237630233168602, -0.0037253624759614468, 0.011912303045392036, -0.01253227423876524, 0.011735168285667896, -0.009188858792185783, -0.00913719367235899, -0.010207382030785084, 0.009926918894052505, 0.011919683776795864, -0.010974965989589691, 0.028991032391786575, -0.0017695010174065828, 0.009794068522751331, 0.0339508019387722, 0.0011246203212067485, 0.0009585566003806889, 0.02395745739340782, -0.0252564437687397, 0.04646831378340721, -0.005996745079755783, 0.03598785027861595, 0.013550798408687115, 0.0158830713480711, -0.006867656949907541, -0.02099045179784298, -0.005491173360496759, 0.0019669323228299618, 0.013100581243634224, 0.022171350196003914, -0.03654877468943596, 0.04738350957632065, -0.010502606630325317, 0.025979744270443916, 0.01963241957128048, -0.02147757261991501, -0.013004633598029613, -0.013167006894946098, -0.008768163621425629, -0.007085384801030159, 0.04103618860244751, -0.009432418271899223, -8.245524077210575e-05, -0.03427555039525032, -0.0030075982213020325, 0.026083072647452354, -0.00517380703240633, -0.06146571412682533, 0.0010443561477586627, 0.006435891147702932, 0.01972098834812641, -0.005539147183299065, -0.03114617057144642, -0.015661653131246567, 0.00023664078617002815, 0.011521130800247192, 0.00898958183825016, 0.002105318708345294, -0.007424892857670784, -0.01333676092326641, 0.019411001354455948, 0.031028080731630325, 0.020518094301223755, 0.010642838664352894, 0.014731695875525475, 0.011425183154642582, -0.003173661883920431, -0.009543127380311489, -0.037788718938827515, 0.0025702971033751965, 0.011115197092294693, 0.0035869760904461145, -0.033094651997089386, 0.0035537632647901773, -0.01138089969754219, 0.0023636401165276766, -0.02574356459081173, -0.016443997621536255, -0.0158830713480711, -0.029640525579452515, 0.006122215185314417, 0.044578880071640015, -0.0031718167010694742, 0.0008603022433817387, 0.013720552437007427, -0.0033858544193208218, -0.017639655619859695, 0.015514040365815163, -0.008723880164325237, 0.004232779145240784, 0.0006139744073152542, -0.0019392550457268953, 0.0020241320598870516, -0.012775834649801254, 0.003085094504058361, 0.03400984779000282, -0.02535977214574814, -0.027987269684672356, -0.009690740145742893, -0.003922793548554182, -0.025566430762410164, 0.007539292331784964, 0.03616498410701752, -0.019455285742878914, -0.03492504358291626, 0.013366282917559147, -0.009853113442659378, 0.009712881408631802, 0.0027787992730736732, 0.0032548485323786736, 0.008288424462080002, -0.0018239329801872373, -7.178795931395143e-05, 0.006550290621817112, -0.002738205948844552, -0.025728803128004074, 0.009402896277606487, -0.01898292638361454, 0.03197279945015907, 0.01117424201220274, -0.032415635883808136, -0.03657829761505127, -0.0059340097941458225, -0.0036386402789503336, -0.032061364501714706, 0.01852532848715782, -0.006579813081771135, 0.01920434460043907, -0.0023175112437456846, -0.01814153790473938, 0.004044573754072189, -0.0142593365162611, -0.018835313618183136, -0.011631839908659458, -0.017196819186210632, 0.003074023639783263, -0.018672941252589226, 0.0050594075582921505, -0.00929956790059805, 0.02596498280763626, -0.03330130875110626, 0.03365557640790939, 0.0033932351507246494, 0.007513460237532854, -0.009019104763865471, 0.0218613650649786, 0.023721277713775635, 0.0616428479552269, -0.023824606090784073, 0.03486599773168564, 0.02558119036257267, 0.01313010323792696, -0.00848770048469305, -0.005325109697878361, 0.010805211961269379, -0.006332562770694494, 0.012133721262216568, 0.002594284014776349, 0.0007449802360497415, 0.011535892263054848, -0.007052171975374222, -0.009159335866570473, -0.020267153158783913, -0.05154617503285408, 0.016532564535737038, 0.029861943796277046, -0.02403126284480095, 0.01474645733833313, 0.022614186629652977, 0.01162445917725563, 0.027559194713830948, -0.005812229588627815, 0.0210494976490736, 0.013078439049422741, 0.012023012153804302, -0.03265181556344032, 0.0076094078831374645, -0.004775254055857658, -0.041508544236421585, 0.01849580556154251, -0.03430506959557533, 0.020459048449993134, 0.00307586882263422, 0.05119190365076065, 0.005077858921140432, -0.015012159012258053, -0.007480247411876917, -0.004550145473331213, 0.009971203282475471, -0.043279893696308136, -0.01901244930922985, 0.00547272153198719, -0.013683649711310863, -0.018584374338388443, -0.03223850205540657, -0.012746311724185944, -0.014362665824592113, -0.004723589867353439, -0.05195948854088783, 0.05195948854088783, 0.029241973534226418, 0.00898958183825016, -0.022422291338443756, -0.0015277861384674907, -0.005317728966474533, 0.024828368797898293, -0.004690377041697502, -0.010915921069681644, 0.011661362834274769, -0.014133866876363754, 0.03052619844675064, -0.011742549017071724, 0.002939327619969845, -0.0037345881573855877, 0.006450652610510588, -0.0010452787391841412, -0.004325036890804768, 0.011860638856887817, 0.022466573864221573, 0.004140521865338087, 0.01885007508099079, -0.03663734346628189, -0.010731405578553677, 0.028799137100577354, -0.01988336071372032, 0.02913864515721798, 0.028887704014778137, 0.012487990781664848, -0.027633000165224075, -0.01710825227200985, 0.029182927682995796, -0.006336253136396408, 0.02875485271215439, -0.018451523035764694, -0.00393017427995801, -0.04265991970896721, 0.045641686767339706, 0.024503622204065323, -0.03737540543079376, -0.025300728157162666, -0.0034541250206530094, 0.016384951770305634, -0.0030408110469579697, 0.027057312428951263, -0.0035906664561480284, 0.041892338544130325, 0.0034338284749537706, -0.010111434385180473, -0.013617224059998989, -0.01629638485610485, 0.016901595517992973, -0.023662233725190163, 0.019543852657079697, -0.012547035701572895, 0.014148627407848835, 0.00786034855991602, 0.024533145129680634, 0.011727787554264069, 0.01930767297744751, 0.0073068030178546906, -0.0393829308450222, -0.0019226486328989267, 0.004125760402530432, -0.009033865295350552, -0.005391534883528948, 0.000734370609279722, 0.0068787275813519955, 0.010458323173224926, 0.017639655619859695, 0.011572794988751411, 0.01575022004544735, -0.025477861985564232, -0.013351522386074066, -0.008686976507306099, -0.0017538171960040927, -0.015204055234789848, -0.013041536323726177, -0.004904414992779493, 0.016532564535737038, 0.022983217611908913, -0.0005632327520288527, -0.03935340791940689, -0.0007265286985784769, 0.018835313618183136, -0.02283560484647751, -0.023071784526109695, -0.002402388257905841, -0.005771636497229338, -0.01895340345799923, -0.008192475885152817, -0.026865417137742043, 0.0026311872061342, -0.02690970152616501, 0.005524385720491409, -0.028061075136065483, -0.00934385135769844, -0.03380319103598595, -0.004229089245200157, -0.01800868660211563, -0.030127646401524544, 0.014768598601222038, 0.017063967883586884, -0.031648050993680954, 0.024562668055295944, 0.01629638485610485, 0.0066831414587795734, 0.023883651942014694, 0.006963604595512152, 0.009277425706386566, 0.0014253801200538874, -0.02208278328180313, 0.03120521456003189, 0.0158830713480711, 0.029596243053674698, 0.013735313899815083, -0.015189293771982193, -0.032386112958192825, -0.005336180329322815, 0.010738786309957504, 0.008908395655453205, 0.017698701471090317, 0.008266282267868519, -0.012059914879500866, 0.0018894359236583114, 0.010908540338277817, 0.02302750013768673, 0.015956876799464226, -0.019263390451669693, 0.005118452478200197, 0.0006887030904181302, -0.0366668663918972, 0.05390796810388565, 0.001043433672748506, 0.00811867043375969, 0.007616788614541292, -0.051044292747974396, -0.03365557640790939, -0.02493169717490673, 0.010746167041361332, 0.017477283254265785, -0.023588426411151886, 0.01039927825331688, -0.012753692455589771, -0.022983217611908913, 0.03055572137236595, 0.012989872135221958, 0.00528820650652051, 0.017019685357809067, 0.04735398665070534, -0.011484228074550629, -0.007266209460794926, -0.023042261600494385, 0.044608402997255325, -0.009557888843119144, 0.014945733360946178, 0.01797916367650032, 0.018894359469413757, 4.9847942136693746e-05, -0.021684229373931885, -0.011572794988751411, 0.007524530868977308, -0.02816440537571907, 0.013174387626349926, -0.026821132749319077, 0.010015486739575863, 0.006779089570045471, 0.00858364813029766, -0.017610132694244385, -0.017521565780043602, -0.00497084017843008, -0.01256179716438055, -0.00040316578815691173, 0.002214182633906603, -0.030998557806015015, -0.016886834055185318, -0.003721672110259533, 0.0011153945233672857, -0.00172983028460294, -0.015691174194216728, -0.011941825971007347, -0.017521565780043602, 0.0016034373547881842, 0.01313010323792696, -0.020577138289809227, -0.02441505528986454, 0.0006139744073152542, -0.03279942646622658, 0.032710861414670944, -0.027027791365981102, -0.022968456149101257, -0.013868164271116257, 0.0091667165979743, -0.020739512518048286, -0.014768598601222038, -0.005771636497229338, -0.019263390451669693, -0.00665361899882555, -0.0007994121988303959, 0.007638930343091488, -0.001100633293390274, 0.03772967308759689, -0.002444826764985919, 0.018923882395029068, 0.0005341715877875686, 0.007376919034868479, 0.008598409593105316, 0.006421130150556564, 0.0014807346742600203, -0.004856440704315901, -0.022820843383669853, 0.007565124426037073, 0.011048771440982819, 0.02894674986600876, 0.014251955784857273, -0.02968480996787548, -0.026171639561653137, 0.017802029848098755, -0.02305702306330204, -0.029050078243017197, -0.002240014960989356, 0.005819610320031643, -0.002634877571836114, 0.0057900878600776196, 0.016384951770305634, 0.010554270818829536, 0.02493169717490673, 0.01338842511177063, -0.03787728771567345, -0.006823373027145863, 0.008509842678904533, -0.005147974938154221, -0.013270335271954536, -0.04853488504886627, 0.014591463841497898, -0.05606310814619064, -0.02192040905356407, 0.01564689166843891, 0.00439884327352047, 0.0017999460687860847, -0.01125542912632227, 0.004321346525102854, -0.00564985629171133, -0.014672650955617428, -0.009580031037330627, 0.01434052363038063, 0.0022437050938606262, 0.0041848053224384785, 0.03958958759903908, -0.01262822188436985, 0.009056007489562035, -0.01313010323792696, -0.00795629620552063, 0.014812882989645004, 0.0021901957225054502, 0.003317583817988634, -0.008288424462080002, 0.06276469677686691, -0.00898958183825016, 0.017861073836684227, 0.058542992919683456, -0.029729094356298447, 0.04106570780277252, -0.029596243053674698, 0.010310711339116096, 0.024237919598817825, 0.005679378751665354, -0.01020000223070383, -0.0040261223912239075, 0.0024060786236077547, -0.017802029848098755, 0.024326488375663757, 0.007786542642861605, 0.007340015843510628, 0.019322434440255165, 0.006144356913864613, 0.011749929748475552, 0.0026736257132142782, 0.007705355994403362, 0.0005055717192590237, -0.005535456817597151, 0.010310711339116096, -0.012332998216152191, 0.008376991376280785, 0.013248193077743053, -0.001445676782168448, -0.01542547345161438, 0.026009267196059227, -0.007004198152571917, 0.01727062463760376, 0.016222579404711723, 0.002395007759332657, -0.0028599861543625593, -0.004542764741927385, -0.00011186235497007146, 0.06506744772195816, 0.003671853104606271, 0.0014807346742600203, 0.01743299886584282, 0.009675978682935238, 0.006553980987519026, -0.0035556084476411343, 0.04215804114937782, 0.023691754788160324, 0.007801303640007973, -0.018348194658756256, -0.005531766451895237, 0.013654126785695553, 0.030157169327139854, -0.0005069556063972414, 0.008273662999272346, 0.0353088341653347, -0.00399290956556797, -0.0005475489306263626, -0.013654126785695553, -0.0133072379976511, -0.0020702609326690435, 0.01557308528572321, -0.004251230973750353, -0.014370045624673367, -0.020709989592432976, 0.017034444957971573, 0.011439944617450237, -0.014687412418425083, 0.0010176014620810747, 0.019086254760622978, 0.006480174604803324, 0.017211580649018288, 0.023632710799574852, -0.01107829436659813, 0.033419396728277206, 0.011506369337439537, 0.005624024197459221, -0.006339943036437035, 0.01476121786981821, 0.00790463201701641, -0.016709698364138603, -0.017772506922483444, -0.010140957310795784, 0.00467192567884922, 0.011439944617450237, 0.016739221289753914, 0.004598119296133518, 0.006483864970505238, -0.013012014329433441, 0.0005747649120166898, -0.019780032336711884, -0.0011578330304473639, -0.018923882395029068, -0.032415635883808136, 0.0005189490620978177, -0.003112772013992071, -0.01700492389500141, -0.02286512777209282, -0.006993127055466175, -0.0002537084510549903, 0.006745876744389534, -0.020916646346449852, -0.05553170293569565, -0.031736619770526886, -0.005457960534840822, -0.005159045569598675, -0.006347323767840862, -0.013454850763082504, 0.01049522589892149, -0.02140376716852188, 0.0156173687428236, -0.008170334622263908, 0.00989739689975977, 0.0009179632761515677, 0.012724170461297035, 0.017713461071252823, -0.024164114147424698, 0.008436036296188831, -0.04203994944691658, -0.010856876149773598, 0.016089728102087975, 0.013956732116639614, 0.005229161586612463, -0.012797975912690163, 0.005365702789276838, 0.013956732116639614, -0.007325254380702972, 0.010760928504168987, -0.04738350957632065, 0.006081622093915939, -0.0009267277200706303, 0.011041391640901566, -0.004321346525102854, -0.01626686193048954, -0.008561506867408752, -0.0038711295928806067, 0.0013663353165611625, 0.009144574403762817, -0.0037364333402365446, -0.03941245377063751, -0.008805066347122192, 0.01626686193048954, 0.0035316215362399817, 0.022687992081046104, -0.025330251082777977, -0.04091809689998627, 0.015705935657024384, -0.012362520210444927, -0.010310711339116096, 0.0014761218335479498, 0.013499134220182896, -0.013639365322887897, 0.00017009997100103647, 0.006553980987519026, -0.011572794988751411, -0.00644327187910676, 0.00011364984675310552, 0.026791611686348915, 0.0045095523819327354, -0.005439508706331253, 0.004044573754072189, -0.011321854777634144, 0.0033046677708625793, 0.01448813546448946, 0.0032142552081495523, 0.021492334082722664, 0.01849580556154251, -0.018805792555212975, -0.012008250690996647, 0.014052679762244225, 0.0006079776794649661, -0.005564979277551174, 0.010436180979013443, 0.012325617484748363, 0.007801303640007973, 0.01947004720568657, -0.02626020647585392, -0.023130828514695168, -0.010879017412662506, 0.002872902201488614, 0.004690377041697502, -0.0023525692522525787, -0.014185531064867973, -0.004557526204735041, 0.007354776840656996, -0.008908395655453205, 0.034098412841558456, 0.024001741781830788, -0.039471495896577835, -0.00023986979795154184, 0.023116067051887512, -0.0006734805647283792, -0.015676414594054222, -0.009365992620587349, -0.027869179844856262, -0.012377281673252583, -0.014857166446745396, 0.0052918968722224236, -0.020488571375608444, 0.011048771440982819, 0.004535384476184845, -0.010310711339116096, -0.0385563038289547, -0.01321129035204649, -0.003655246691778302, -0.023942695930600166, -0.01995716616511345, -0.012266572564840317, 0.017536327242851257, 0.005133213475346565, 0.014798121526837349, -0.0031386041082441807, -0.0028618311043828726, -0.0023525692522525787, -0.014414330013096333, 0.02800203114748001, -0.03386223316192627, 0.02894674986600876, -0.014798121526837349, -0.030216213315725327, -0.05184139683842659, -0.009801449254155159, 0.02011954039335251, 0.016119251027703285, 0.0007131513557396829, -0.016990162432193756, -0.019189583137631416, 0.010450942441821098, -0.015056442469358444, 0.004158973228186369, -0.03147091716527939, -0.008790305815637112, 0.030644288286566734, 0.001146762166172266, 0.004885963164269924, -0.010967585258185863, -0.01057641301304102, -0.0031958038453012705, -0.013691029511392117, 0.008782925084233284, 0.0068086120299994946, 0.014436471275985241, -0.024400293827056885, 0.02386889047920704, -0.03265181556344032, -0.00803748331964016, 0.0058823456056416035, -0.011144720017910004, -0.01639971323311329, -0.011321854777634144, -0.0027769540902227163, -0.023263679817318916, 0.0003316661168355495, 0.002402388257905841, 0.01474645733833313, 0.0007952606538310647, -0.01070188358426094, 0.01613401249051094, -0.02283560484647751, 0.0052402326837182045, 0.0034467445220798254, -0.009004343301057816, -0.006188640836626291, -0.00790463201701641, -0.013587701134383678, 0.013543417677283287, 0.02881389856338501, 0.022304201498627663, 0.022392768412828445, 0.02292417176067829, -0.00635470449924469, 0.015956876799464226, 0.007048481609672308, 0.01882055401802063, -0.011056152172386646, -0.012930827215313911, 0.009890016168355942, 0.012761073186993599, 0.0011273880954831839, 0.012082057073712349, -0.023071784526109695, -0.02034095861017704, -0.011137339286506176, -0.03191375359892845, -0.0001901660143630579, 0.007616788614541292, 0.004804776515811682, -0.005919248331338167, -0.00023710206733085215, -0.0024392912164330482, 0.029374824836850166, -0.00848770048469305, -0.0119492057710886, -0.0033969252835959196, 0.020591899752616882, 0.004745731595903635, 0.008266282267868519, -0.006332562770694494, -0.010480465367436409, 0.014687412418425083, -0.011129958555102348, 0.020518094301223755, -0.007376919034868479, -0.015307383611798286, 0.011742549017071724, 0.015093346126377583, 0.0007122287643142045, 0.010377136059105396, -0.007934154942631721, -0.021743275225162506, 0.02658495493233204, -0.013432708568871021, 0.0109306825324893, 0.010259047150611877, -0.012200146913528442, -0.016163533553481102, -0.006277208216488361, 0.033006083220243454, -0.00858364813029766, -0.012967729941010475, 0.024001741781830788, -0.02693922258913517, -0.01604544371366501, 0.007816065102815628, 0.0007869574474170804, 0.0037973234429955482, 0.026186401024460793, 0.023145589977502823, -0.015322144143283367, 0.0041700443252921104, 0.007303112652152777, 0.0032585388980805874, 0.006941462866961956, -0.011875400319695473, 0.02079855650663376, -0.008229379542171955, 0.03699161112308502, -0.0325927697122097, -0.0339508019387722, 9.312252950621769e-05, -0.001100633293390274, -0.00538415415212512, 0.029906228184700012, 0.025669759139418602, 0.021448049694299698, 0.026053549721837044, -0.009388134814798832, -0.004775254055857658, -0.01920434460043907, -0.013735313899815083, -0.008627932518720627, 0.0007154577760957181, -0.01112257782369852, 0.01456932257860899, -0.022333722561597824, 0.009078149683773518, 0.012952969409525394, 0.007838207297027111, 0.004099928308278322, -0.001829468528740108, 0.0024817297235131264, -0.023160351440310478, -0.004361940082162619, -0.005605572834610939, 0.01049522589892149, -0.010871637612581253, 0.03657829761505127, 0.024105070158839226, -0.016901595517992973, 0.004657164216041565, 0.0016246566083282232, 0.020090017467737198, 0.002049964154139161, 0.002979920944198966, 0.004834298975765705, -0.04708828777074814, 0.03823155537247658, -0.02392793446779251, 0.006029957439750433, -0.013344141654670238, 0.016665415838360786, 0.004361940082162619, 0.00691932113841176, -0.015838786959648132, 0.003708756063133478, -0.022496096789836884, 0.027175402268767357, 0.00171414646320045, -0.020739512518048286, -0.03223850205540657, -0.0061997114680707455, 0.029920989647507668, -0.012820118106901646, -0.005660927388817072, 0.018540089949965477, 0.013270335271954536, 0.03265181556344032, 0.004937627352774143, 0.009144574403762817, 0.012517512775957584, -0.0009502534521743655, -0.008111289702355862, -0.02395745739340782, -0.005679378751665354, 0.008746021427214146, 0.012008250690996647, -0.007587266154587269, 0.003974458202719688, 0.023012738674879074, -0.020222868770360947, 0.0142593365162611, -0.010724024847149849, -0.0027548123616725206, 0.04995196312665939, -0.020252391695976257, 0.023234156891703606, -0.000354730524122715, -0.004734660964459181, -0.038851525634527206, -0.026894940063357353, -0.007207165006548166, -0.0001803636405384168, 0.00656505161896348, -0.026407819241285324, -0.016163533553481102, 0.0025795227847993374, -0.02373603917658329, 0.035722147673368454, 0.03262229263782501, 0.021625185385346413, -0.01084949541836977, 0.030260497704148293, 0.002441136399284005, -0.000648109766189009, 0.01998668909072876, -0.020946169272065163, 0.013846023008227348, -0.0024263751693069935, 0.01879103109240532, 0.013691029511392117, -0.019514329731464386, -0.013004633598029613, 0.013587701134383678, 0.009698119945824146, -0.002992836991325021, -0.005107381381094456, -0.037493493407964706, 0.0008985891472548246, -0.01800868660211563, -0.00664623873308301, -0.0034651958849281073, -0.01143256388604641, -0.0022344794124364853, -0.006243995390832424, 0.010325471870601177, -0.0006822450668551028, 0.0109971072524786, -0.00585282314568758, -0.002064725384116173, 0.0020333577413111925, -0.03288799524307251, -0.022983217611908913, 0.015705935657024384, 0.016576848924160004, 0.014709553681313992, -0.0031386041082441807, -0.004978220909833908, 0.01678350567817688, -0.0029190308414399624, -0.0196914654225111, 0.0029098051600158215, -0.0072182356379926205, 0.013196528889238834, 0.02037048153579235, -0.03282894939184189, -0.012842260301113129, 0.0005779939237982035, 0.03527931123971939, 0.002596129197627306, -0.012635602615773678, -0.021787557750940323, -0.02671780437231064, -0.0065613617189228535, -0.007089075166732073, 0.00866483524441719, 0.012495371513068676, 0.02693922258913517, 0.00381208467297256, -0.0013949350686743855, -0.0009705501142889261, 0.016872072592377663, 0.006509697064757347, 0.004299204796552658, -0.0019447904778644443, 0.006775399204343557, 0.03684400022029877, -0.02017858624458313, -0.00840651337057352, -0.0006725580315105617, 0.01882055401802063, -0.018717225641012192, 0.0036441758275032043, -0.02603878825902939, -0.008591028861701488, 0.009838351979851723, 0.010716644115746021, -0.001146762166172266, -0.005815919954329729, 0.0007472866564057767, -0.015204055234789848, -0.0008197089191526175, 0.0031958038453012705, 0.0009345696307718754, -0.0007855735602788627, 0.0074876281432807446, -0.0026201163418591022, -0.010273807682096958, -0.0009576340089552104, -0.002391317393630743, 0.012554416432976723, 0.00803748331964016, -0.019411001354455948, -0.00017517415108159184, -0.021846603602170944, 0.0679016038775444, -0.016503041610121727, -0.0008672215626575053, 0.004409913904964924, 0.005391534883528948, -0.02558119036257267, 0.004528003744781017, -0.003177352249622345, 0.0325927697122097, -0.00017517415108159184, -0.01952909119427204, -0.020518094301223755, 0.03052619844675064, 0.011594937182962894, -0.023795083165168762, -0.010879017412662506, 0.020621422678232193, 0.0021809700410813093, 0.029743853956460953, -0.004240159876644611, 0.021285677328705788, -0.006037338171154261, -0.02276179939508438, -0.012495371513068676, -0.000669329019729048, 0.015558323822915554, -0.007317874114960432, -0.0082146180793643, 0.014886688441038132, 0.028090598061680794, -0.0013626449508592486, 0.01026642695069313, 0.006258756387978792, -0.0210494976490736, 0.00045067843166179955, 0.013469611294567585, 0.00020781026978511363, 0.023470336571335793, -0.000878292485140264, 0.00794153567403555, 0.0007034643203951418, -0.0046682353131473064, 0.026378296315670013, 0.02270275354385376, -0.024001741781830788, -0.001073878607712686, -0.011565414257347584, 0.004140521865338087, -0.0013414256973192096, 0.011343996040523052, 0.0028230829630047083, -0.026334013789892197, 0.0006061324966140091, 0.005937700159847736, 0.023367008194327354, 0.004188495688140392, 0.016281623393297195, -0.003769646165892482, -0.00703372061252594, 0.004911795258522034, -0.004638712853193283, -0.00328252580948174, -0.002348878886550665, -0.020650943741202354, -0.025005504488945007, 0.0028987342957407236, -0.014355285093188286, -0.005660927388817072, 0.0032917517237365246, -0.016739221289753914, -0.008701737970113754, 0.004797395784407854, 0.013513895682990551, -0.019809555262327194, -0.009329089894890785, 0.0018488425994291902, 0.000889824703335762, 0.037463970482349396, 0.0353088341653347, -0.02004573494195938, -0.00984573271125555, -0.0020776414312422276, -0.01797916367650032, -0.007070623338222504, 0.005480102263391018, -0.013462231494486332, 0.017255865037441254, -0.029094360768795013, -0.006284588482230902, -0.015897832810878754, -0.02153661660850048, -0.01261346135288477, 0.001058194786310196, 0.0032031843438744545, -0.005457960534840822, 0.014133866876363754, 0.004321346525102854, -0.014126486144959927, 0.0008639925508759916, -0.012406803667545319, 0.013528656214475632, 0.007749639451503754, 0.0056314049288630486, -0.00452062301337719, 0.004443126730620861, 0.006609335541725159, 0.022806081920862198, 0.00045621389290317893, -0.009594791568815708, -0.0017418237403035164, -0.0025204780977219343, -0.011019249446690083, 0.0028507602401077747, -0.004350868985056877, -0.037818241864442825, 0.0026201163418591022, -0.0018451522337272763, 0.011307093314826488, -0.023130828514695168, -0.016990162432193756, 0.002107163891196251, -0.0025241682305932045, -0.036105938255786896, -0.006100073456764221, -0.01026642695069313, -0.0007251448696479201, -0.020075256004929543, -0.0027585027273744345, 0.006908250041306019, 0.01451765839010477, 0.017728222534060478, 0.004435745999217033, 0.011189003475010395, -0.012163244187831879, 0.01849580556154251, 0.008148192428052425, -0.002197576453909278, 0.01280535664409399, 0.00898958183825016, -0.01691635698080063, 0.03226802498102188, -0.014849785715341568, -0.002502026502043009, 0.005365702789276838, 0.0014475219650194049, -0.021876124665141106, -0.0007085384568199515, -0.01979479379951954, 0.015897832810878754, -0.008295804262161255, 0.026865417137742043, -0.030644288286566734, -0.0035482279490679502, -0.01020000223070383, 0.006207092199474573, -0.005266064777970314, -0.021433288231492043, 0.009801449254155159, -0.02037048153579235, -0.0025702971033751965, 0.006413749419152737, 0.011019249446690083, -0.024651234969496727, 0.01662113144993782, -0.023854129016399384, 0.012170624919235706, 0.016694938763976097, 0.006985746324062347, 0.012738930992782116, 0.003633104730397463, -0.0026274968404322863, 0.005838061682879925, 0.0156173687428236, -0.016547325998544693, -0.024843130260705948, 0.011543272994458675, 0.015853548422455788, 0.015824025496840477, -0.014222433790564537, 0.021256154403090477, 0.01794964075088501, 0.004985601641237736, 0.018510567024350166, -0.0029633145313709974, -0.021772796288132668, -0.00664623873308301, 0.009557888843119144, -0.025669759139418602, 0.017314909026026726, -0.004635022487491369, 0.0030112885870039463, 0.018259627744555473, 0.01827438734471798, -0.0034910282120108604, 0.004229089245200157, -0.0034873378463089466, 0.027928225696086884, 0.001029594917781651, 0.023558903485536575, -0.010480465367436409, -0.0013995480258017778, 0.005236542318016291, 0.019927645102143288, 0.011668742634356022, 0.014576703310012817, -0.021758034825325012, -0.01882055401802063, -0.017565850168466568, -0.005159045569598675, -0.008126050233840942, -0.015632130205631256, -0.01648828014731407, 0.012074676342308521, 0.004834298975765705, -0.015469756908714771, 0.01700492389500141, -0.006066860631108284, -0.0011476847575977445, 0.0024614331778138876, 0.015307383611798286, -0.0018414619844406843, 0.004797395784407854, -0.002299059648066759, -0.007081694435328245, -0.0028599861543625593, -0.002099783392623067, 0.005446889437735081, 0.001198426354676485, 0.01936671882867813, -0.01447337493300438, 0.021551378071308136, -0.0017667333595454693, -0.01017047930508852, 0.010000725276768208, 0.011189003475010395, 0.022068021818995476, 0.009639075957238674, -0.009779307059943676, 0.012141101993620396, -0.006897179409861565, -0.015558323822915554, 0.0060779317282140255, -0.013558179140090942, -0.003721672110259533, -0.006162808742374182, -0.015897832810878754, 0.004435745999217033, 0.006148047279566526, 0.0039338646456599236, -2.9104394343448803e-05, -0.0119492057710886, 0.014156008139252663, -0.0028562957886606455, -0.005280825775116682, 0.010089293122291565, -0.009735023602843285, -0.0002091941423714161, 0.010827353224158287, -0.0029430179856717587, -0.03000955656170845, -0.0051110717467963696, 0.014008396305143833, -0.01727062463760376, 0.0005655391723848879, 0.019617659971117973, 0.009639075957238674, -0.04443126544356346, 0.004616571124643087, -0.020429525524377823, 0.010000725276768208, 0.01639971323311329, 0.004734660964459181, 0.008399133570492268, 0.007026339881122112, 0.0035500728990882635, 0.001511179725639522, -0.0032954420894384384, -0.010421420447528362, -0.009653836488723755, 0.0056314049288630486, 0.002003835281357169, 0.0003491950628813356, 0.008686976507306099, -0.022791320458054543, -0.01830391027033329, -0.027883941307663918, 0.013905067928135395, 0.009203619323670864, 0.007513460237532854, 0.015794504433870316, -0.000744057644624263, 0.007801303640007973, -0.01639971323311329, -0.010539510287344456, -0.00632887240499258, 0.01298249140381813, 0.0032087198924273252, -0.017639655619859695, 0.01710825227200985, -0.02137424424290657, -0.009963822551071644, -0.009270044974982738, 0.0016301920404657722, -0.011956586502492428, 0.001223335973918438, 0.016606369987130165, 0.008059625513851643, 0.0037604202516376972, -0.013631985522806644, 0.010679741390049458, 0.0010960204526782036, -0.005000362638384104, -0.023691754788160324, -0.007044791243970394, -0.02082807943224907, -0.012037773616611958, 0.0237655621021986, 0.02338176965713501, 0.009735023602843285, -0.006439581513404846, -0.011093055829405785, 0.011550653725862503, 0.021197108551859856, 0.0017916428623721004, 0.02254038117825985, -0.013277716003358364, 0.02085760049521923, 0.005520695820450783, -0.004572287201881409, -0.0009308793232776225, 0.0030943204183131456, 0.017728222534060478, -0.0252564437687397, -0.00898958183825016, -0.01765441708266735, 0.01749204285442829, 0.012192766182124615, -0.001584063284099102, -0.004930247087031603, -0.0030998557340353727, -0.008458178490400314, -0.02221563272178173, -5.013624831917696e-05, -0.017285386100411415, -0.0005517005338333547, 8.72411037562415e-05, -0.008288424462080002, -0.009653836488723755, -0.001338658039458096, -0.004627641756087542, -0.027514910325407982, -0.0004977298085577786, 0.030319541692733765, 0.023485098034143448, -0.018643418326973915, -0.0105247488245368, 0.015632130205631256, 0.006406368687748909, 0.00655767135322094, -0.001900506904348731, 0.009484082460403442, 0.0301424078643322, -0.011631839908659458, -0.014082202687859535, 0.01794964075088501, 0.0026662449818104506, 0.0023839366622269154, 0.007162881083786488, -0.04841679707169533, 0.018185820430517197, -0.01564689166843891, -0.030673811212182045, 0.008354849182069302, 0.0006282743415795267, -0.010724024847149849, 0.01434052363038063, -0.0022326342295855284, -0.00771273672580719, -0.005841752048581839, -0.01469479314982891, 0.015764981508255005, -0.002880282700061798, 0.004162663593888283, -0.016473518684506416, -0.0033065129537135363, 0.02900579385459423, 0.02962576597929001, 0.017285386100411415, 0.02623068541288376, -0.010148337110877037, -0.010140957310795784, 0.010421420447528362, 0.007055862341076136, 0.005668307654559612, -0.008480319753289223, 0.027928225696086884, -0.012229668907821178, 0.011211145669221878, 0.0218613650649786, -0.008731260895729065, -0.00429182406514883, 0.00298730144277215, 0.005387844517827034, -0.005690449848771095, 0.0018912811065092683, -0.02256990224123001, 0.001858068397268653, 0.01749204285442829, 0.014709553681313992, 0.004483719822019339, -0.004435745999217033, -0.001451212214305997, -0.014997397549450397, -0.006517077796161175, 0.02166946791112423, -0.002824928145855665, -0.005310348235070705, -0.007993199862539768, 0.01489406917244196, -0.010657599195837975, 0.012406803667545319, -0.002594284014776349, 0.007675833534449339, -0.003520550671964884, 0.01374269463121891, -0.005380464252084494, 0.042896099388599396, -0.0028747471515089273, 0.007852967828512192, 0.002841534558683634, 0.009306947700679302, -0.03772967308759689, -0.017521565780043602, -0.00032359358738176525, -0.021462811157107353, -0.017447760328650475, 0.016827788203954697, 0.0011218525469303131, 0.0018525328487157822, 0.019839078187942505, -0.005723662208765745, -0.008354849182069302, -0.008052244782447815, -8.245524077210575e-05, 0.030127646401524544, -0.005509624723345041, -0.007517150603234768, 0.011056152172386646, -0.018835313618183136, -0.020267153158783913, -0.005539147183299065, 0.006616716273128986, -0.014207672327756882, -0.002786180004477501, -0.013654126785695553, -0.008244140073657036, 0.00032797580934129655, -0.01944052428007126, 0.01575022004544735, -0.00952098611742258, 0.016207817941904068, -0.002151447581127286, 0.010982346720993519, -0.008531983941793442, -0.008185095153748989, 0.008561506867408752, -0.0030002177227288485, 0.013499134220182896, -0.011558033525943756, 0.018731985241174698, -0.009188858792185783, 0.030437631532549858, 0.029212450608611107, 0.01261346135288477, 0.01267988607287407, 0.014598844572901726, -0.0007675833767279983, 0.0005913713248446584, -0.0005512392381206155, -0.01280535664409399, -0.008856730535626411, -0.010613315738737583, -0.00538415415212512, -0.02107902057468891, 0.03418698161840439, -0.015558323822915554, -0.0014982636785134673, 0.013676268979907036, 0.017890596762299538, -0.0024171494878828526, 0.017875835299491882, 0.018067730590701103, 0.005136903841048479, -0.005926629062741995, 0.004011360928416252, -1.545314989925828e-05, 0.01185325812548399, 0.015587846748530865, -0.00024748104624450207, -0.004402533173561096, 0.02299797721207142, -0.00038263844908215106, -0.004889653529971838, -0.017255865037441254, 0.025979744270443916, -0.005838061682879925, -0.005354632157832384, 0.013993634842336178, 0.010687122121453285, 0.001783339655958116, 0.01167612336575985, 0.0012325617717579007, -0.029832422733306885, 0.029920989647507668, 0.006941462866961956, 0.021197108551859856, -0.012901305221021175, 0.01044356171041727, 0.01107829436659813, 0.0039006518200039864, 0.017728222534060478, -0.018156299367547035, 0.003077714005485177, -0.004413604270666838, 0.003712446428835392, -0.0038711295928806067, 0.004125760402530432, 0.0028876634314656258, -0.002551845507696271, -0.010901159606873989, -0.020193345844745636, 0.013314618729054928, -0.00735846720635891, -0.023337485268712044, 0.009063388220965862, 0.006314110942184925, 0.008960059843957424, -0.001948480843566358, 0.03120521456003189, -0.017831550911068916, 0.021285677328705788, 0.010642838664352894, -0.0044874101877212524, -0.008864111267030239, -0.00519963912665844, 0.0005184877663850784, 0.0055945017375051975, 0.00576425576582551, -0.018540089949965477, 0.0002606277703307569, -0.01267988607287407, 0.014229814521968365, -0.006306730676442385, 0.02047380991280079, 0.03805442154407501, -0.01632590778172016, 0.00517380703240633, -0.0041848053224384785, -0.0056867594830691814, 0.01700492389500141, 0.01694587804377079, 0.010369756259024143, 0.0016532564768567681, -5.457614315673709e-05, -0.029123883694410324, 0.005155355669558048, 0.00171414646320045, -0.0026736257132142782, 0.015174532309174538, -0.0012777679366990924, -0.005742114037275314, -0.004550145473331213, -0.011343996040523052, 0.00786034855991602, -0.009882635436952114, -0.006284588482230902, -0.027559194713830948, -0.008015341125428677, 0.01879103109240532, 0.000598290644120425, -0.0009262664243578911, -0.01416338887065649, 0.0037456590216606855, 0.008686976507306099, -0.010450942441821098, 0.02609783411026001, 0.0032124100252985954, 0.0030647979583591223, 0.03592880442738533, -0.012185385450720787, 0.01846628449857235, -0.017551088705658913, -0.007018959149718285, 0.003374783555045724, 0.023721277713775635, 0.008044864051043987, -0.009949061088263988, 0.009616933763027191, -0.02561071328818798, -0.031087126582860947, 0.005657237023115158, 0.0019115777686238289, 0.00345966056920588, -0.0055575985461473465, 0.0006439581629820168, 0.00606317026540637, -0.01811201497912407, -0.0016329598147422075, -0.006528148893266916, 0.013602462597191334, -0.0014751992421224713, -0.0015056442935019732, 0.02943386882543564, -0.004125760402530432, 0.02871057018637657, 0.0029577792156487703, 0.012451088055968285, -0.023588426411151886, 0.02745586633682251, -0.0018626812379807234, -0.002509407000616193, 0.001000995165668428, 0.005531766451895237, -0.005195948760956526, -0.023130828514695168, -0.005269755143672228, 0.011462085880339146, 0.015897832810878754, 0.03536788001656532, 6.336945079965517e-05, 0.001269464730285108, 0.0022178729996085167, -0.005365702789276838, -0.024149352684617043, 0.0019743130542337894, -0.016768744215369225, -0.015410711988806725, 0.00020873284665867686, -0.012465848587453365, -0.022658469155430794, 0.00976454559713602, 0.004734660964459181, -0.015189293771982193, -0.007616788614541292, -0.005424747709184885, -0.010273807682096958, 0.0039338646456599236, -0.006100073456764221, 0.020488571375608444, -0.0008870569872669876, -0.020518094301223755, 0.025153115391731262, -0.023721277713775635, 0.0076463110744953156, 0.013462231494486332, -0.001779649406671524, -0.0031183073297142982, -0.01017047930508852, 0.019971927627921104, 0.0003249774454161525, -0.032002322375774384, -0.013233432546257973, -0.008738641627132893, 0.02848915196955204, -0.020547615364193916, -0.004985601641237736, -0.005838061682879925, 0.006797540932893753, -0.005863893777132034, -0.012827498838305473, -0.00015591536066494882, -0.00467192567884922, -0.010458323173224926, 0.016340669244527817, 0.00497084017843008, 0.01852532848715782, 0.0010342078749090433, -0.009402896277606487, 0.010731405578553677, -0.010502606630325317, 1.6541501963729388e-06, -0.0035888212732970715, 0.005402605980634689, 0.001386631978675723, -1.2526854334282689e-05, -0.005332489963620901, 0.014680031687021255, -0.02794298529624939, -0.01920434460043907, 0.004646093584597111, -0.0007025417289696634, 0.0026994578074663877, -0.019071493297815323, -0.013543417677283287, 0.010133576579391956, 0.005860203877091408, 0.01335890218615532, -0.006494936067610979, -0.026821132749319077, -0.0023784013465046883, -0.0218613650649786, 0.0020296676084399223, 0.01162445917725563, -0.0044172946363687515, -0.001858068397268653, -0.028252972289919853, 0.006782779935747385, 0.01927815191447735, -0.004635022487491369, -0.01313010323792696, 0.025832131505012512, -0.014096963219344616, -0.0013764835894107819, 0.008517222478985786, 0.0024282203521579504, -0.006502316799014807, -0.01862865686416626, 0.0050225043669342995, -0.016901595517992973, 0.006723735015839338, 0.019809555262327194, -0.0014945733128115535, -0.023750800639390945, 0.0004610574396792799, -0.00974978506565094, -0.014133866876363754, -0.012340378016233444, 0.021093780174851418, -0.013654126785695553, 0.009712881408631802, 0.03891057148575783, 0.001733520533889532, -0.008878872729837894, 0.011129958555102348, -0.011631839908659458, -0.0020794866140931845, -0.0007279125857166946, -0.010118815116584301, -0.008089147508144379, 0.03861534595489502, -0.011262809857726097, -0.032061364501714706, 0.00022753034136258066, -0.0034578153863549232, 0.009033865295350552, -0.01862865686416626, -0.01762489415705204, 0.013499134220182896, -0.005457960534840822, 0.02943386882543564, -0.005605572834610939, -0.007948916405439377, 0.01988336071372032, -0.0004137753858231008, 0.008908395655453205, 0.011137339286506176, -0.0025666067376732826, -0.009144574403762817, 0.016030682250857353, 0.014753838069736958, 0.01852532848715782, 0.01329247746616602, -0.024843130260705948, 0.0076463110744953156, 0.0031072364654392004, 0.004742041230201721, -0.007565124426037073, -0.0039006518200039864, 0.0011320009361952543, 0.037168748676776886, 0.013410566374659538, 0.013609843328595161, -0.008517222478985786, -0.017255865037441254, 0.0034467445220798254, -0.010362375527620316, -0.007280970923602581, -0.0036903044674545527, -0.014060060493648052, 0.016768744215369225, 0.006937772501260042, 0.005070478655397892, -0.0020776414312422276, 0.0032345519866794348, -0.027559194713830948, 0.01985383778810501, 0.01662113144993782, 0.010421420447528362, 0.01572069711983204, 0.008509842678904533, 0.027559194713830948, -0.006797540932893753, -0.00458335829898715, 0.016798267140984535, 0.018244866281747818, 0.002736360765993595, -0.008421274833381176, -0.030673811212182045, -0.0019447904778644443, -0.008686976507306099, 0.005808539222925901, -0.021654706448316574, 0.001760275335982442, -0.006624096538871527, -0.013440089300274849, 0.0036866143345832825, -0.011831116862595081, 0.01575022004544735, 0.0008340088534168899, -0.01920434460043907, -0.006391607690602541, 0.0075208405032753944, 0.0067348056472837925, -0.007229306735098362, 0.009144574403762817, -0.009860494174063206, -0.024001741781830788, -0.005192258395254612, -0.010819973424077034, 0.005266064777970314, -0.023160351440310478, 0.012635602615773678, 0.02072475105524063, -0.00440622353926301, -0.029404345899820328, 0.01034761406481266, 0.0005959841655567288, 0.010871637612581253, -0.004409913904964924, -0.004734660964459181, -0.02603878825902939, 0.003035275498405099, -0.014532418921589851, -0.0036866143345832825, 0.016370190307497978, -0.020783795043826103, -0.01389030646532774, 0.01084949541836977, 0.04570073261857033, 0.015307383611798286, 0.0045612165704369545, -0.015108106657862663, -0.01034761406481266, 0.013395805843174458, 0.005406296346336603, 0.014532418921589851, 0.008561506867408752, 0.0008340088534168899, -0.0022732275538146496, 0.0020831769797950983, 0.014355285093188286, 0.010938062332570553, 0.0009705501142889261, -0.006159118376672268, 0.0017750364495441318, -0.0007929541752673686, -0.019558614119887352, -0.01808249205350876, 0.01743299886584282, -0.01613401249051094, 0.025153115391731262, 0.02205326035618782, -0.001963241957128048, -0.012133721262216568, 0.009056007489562035, 0.0006098228041082621, -0.023986980319023132, -0.0012574712745845318, 0.004254921339452267, -0.01727062463760376, -0.013927209191024303, -0.021064259111881256, 0.010008106008172035, -0.007572505157440901, -0.011476847343146801, 0.0038416071329265833, -0.001194736105389893, 0.01591259241104126, -0.000977930729277432, 0.009181478060781956, -0.003808394307270646, 0.010377136059105396, 0.002970695262774825, -0.007458105683326721, -0.012015631422400475, -7.939920760691166e-05, 0.022259917110204697, 0.00039278678013943136, -0.01270940899848938, 0.01380911935120821, -0.002734515583142638, -0.000697928830049932, 0.017255865037441254, -0.018835313618183136, 0.0023212016094475985, -0.019056733697652817, 0.0011163171147927642, 0.006196021568030119, -0.024916935712099075, 0.004657164216041565, 0.01781679131090641, -0.01713777519762516, -0.0105247488245368, -0.00929956790059805, -0.009978583082556725, 0.0001096135747502558, -0.03046715445816517, 0.001915268017910421, -0.005332489963620901, 0.011904922313988209, -0.016827788203954697, -0.01672445982694626, -0.0033471062779426575, 0.01421505305916071, -0.005930319428443909, 0.011218525469303131, 0.005694139748811722, -0.007262519560754299, 0.015794504433870316, 0.015543563291430473, -0.010487845167517662, 0.007801303640007973, 0.026142116636037827, 0.005063097923994064, 0.019351957365870476, 0.005823300685733557, -0.0049007246270775795, -0.011912303045392036, -0.008354849182069302, -0.016694938763976097, 0.01949957013130188, 0.008591028861701488, 0.011395660229027271, -0.00907076895236969, -0.007852967828512192, -0.008480319753289223, -0.02034095861017704, -0.014141246676445007, -0.009380754083395004, 0.018717225641012192, 0.0005212555406615138, -0.01175731047987938, 0.007081694435328245, -0.010812592692673206, -0.013137483969330788, 0.003926483914256096, -0.0006476484704762697, -0.012517512775957584, -0.003623879048973322, 0.0009456405532546341, 0.012296094559133053, 0.01280535664409399, 0.0015951341483741999, 0.007107526529580355, -0.011196384206414223, 3.361636845511384e-05, -0.0029596241656690836, -0.011565414257347584, -0.014886688441038132, 0.008111289702355862, -0.008524603210389614, -0.008531983941793442, 0.012635602615773678, -0.00884197000414133, 0.027529671788215637, -0.00458335829898715, -0.011284951120615005, -0.04041621461510658, -0.009454560466110706, 0.011646601371467113, -0.0037973234429955482, 0.019411001354455948, -0.0014991862699389458, 0.009196238592267036, 0.017447760328650475, 0.0022418599110096693, -0.029699571430683136, 0.015307383611798286, -0.023396531119942665, 0.00772011699154973, -0.019558614119887352, 0.008591028861701488, 0.02302750013768673, -0.022171350196003914, 0.013624604791402817, 0.008805066347122192, -0.002540774643421173, -0.005011433735489845, 0.017447760328650475, -0.0007597414660267532, -0.009602172300219536, -0.010598554275929928, 0.008746021427214146, -0.02324891835451126, -0.006934082135558128, -0.003819465171545744, -0.0021901957225054502, 0.016886834055185318, -0.020252391695976257, 0.0006218163180164993, 0.005959841888397932, 0.02732301503419876, -0.01313010323792696, -0.01933719590306282, 0.02069522812962532, -0.0031459846068173647, 0.021389005705714226, 0.0008639925508759916, -0.02082807943224907, 0.00712966825813055, 0.015351667068898678, 0.0022307890467345715, -0.03318321704864502, -0.011115197092294693, -0.022687992081046104, 0.0022640018723905087, 0.015528801828622818, 0.013506514951586723, 0.008650073781609535, 0.0172411035746336, 0.01062069647014141, 0.018038209527730942, 0.01797916367650032, -0.007565124426037073, -0.0033876996021717787, -0.007838207297027111, 0.004011360928416252, -0.03486599773168564, -0.015381189063191414, -0.003660782240331173, -0.008281043730676174, 0.012487990781664848, 0.005432128440588713, -0.017728222534060478, -0.010229524224996567, 0.008561506867408752, -0.0025832131505012512, 0.008642693050205708, 0.01557308528572321, 0.019086254760622978, -0.0033065129537135363, 0.004660854581743479, 0.0005789165152236819, -0.008760782890021801, -0.021418528631329536, -0.009631695225834846, 0.014082202687859535, -0.00763154961168766, 0.008790305815637112, -0.0015323989791795611, -0.021064259111881256, 0.011041391640901566, -0.009255283512175083, 0.008871491998434067, 0.015705935657024384, 0.012458467856049538, -0.0046128807589411736, -0.015026920475065708, 0.015853548422455788, 0.008598409593105316, 0.013897687196731567, -0.009919539093971252, 0.013144864700734615, -0.020813317969441414, -0.012879163026809692, 0.002782489638775587, -0.021108541637659073, 0.010458323173224926, -0.02403126284480095, 0.018997687846422195, 0.006136976648122072, 0.015602607280015945, -0.0021551379468292, 0.009616933763027191, 0.008509842678904533, -0.023101307451725006, -0.013403186574578285, 0.007078004069626331, -0.010325471870601177, -0.008598409593105316, 0.0014041608665138483, -0.007793923374265432, 0.005487482994794846, -0.009033865295350552, -0.007948916405439377, 0.016178295016288757, 0.009735023602843285, -0.008746021427214146, 0.005107381381094456, -0.010893778875470161, 0.003035275498405099, 0.006111144553869963, -0.002885818248614669, 0.012547035701572895, -0.002398697892203927, -0.015204055234789848, 0.018126776441931725, 0.009425037540495396, -0.00771273672580719, -0.011609697714447975, 0.0034282929264009, 0.015514040365815163, -0.0017824170645326376, -0.004450507462024689, -0.0010609625605866313, 0.012908685021102428, 0.0019466356607154012, -0.021580900996923447, -0.0025057168677449226, -0.004254921339452267, 0.00487489253282547, -0.01170564629137516, -0.022200873121619225, 0.0034043060149997473, 0.003967077471315861, 0.001605282537639141, -0.0328584723174572, -0.004225398879498243, 0.018864836543798447, 0.013189148157835007, -0.0063952975906431675, 0.004457887727767229, -0.018864836543798447, -0.017536327242851257, -0.008679596707224846, -0.007572505157440901, -0.009388134814798832, -0.006860276218503714, 0.03772967308759689, 0.004247540608048439, -0.0028230829630047083, 0.0011320009361952543, 0.008103908970952034, -0.010214762762188911, 0.007107526529580355, 0.013491753488779068, -0.002061035018414259, -0.007295731920748949, 0.022983217611908913, -0.020193345844745636, 0.010244285687804222, 0.004332417622208595, -0.0007542059756815434, 0.0007528221467509866, -0.00712228799238801, -0.015986399725079536, 0.013447470031678677, 0.0036958400160074234, -0.003625724231824279, 0.005893416237086058, -0.023617949336767197, -0.016517803072929382, 0.022422291338443756, -0.00735846720635891, 0.022259917110204697, 0.016384951770305634, 0.004158973228186369, 0.02341129258275032, 0.012141101993620396, 0.021138064563274384, 0.0011476847575977445, 0.006048409268260002, -0.009476701728999615, 0.001024059485644102, -0.008347469381988049, 0.022437050938606262, -0.008849350735545158, 0.0014299930771812797, 0.006590884178876877, -0.00712966825813055, -0.002411613939329982, -0.01575022004544735, 0.0062735178507864475, 0.0005969067569822073, 0.00026293419068679214, 0.0183334331959486, 0.01885007508099079, 0.005247612949460745, -0.0011532201897352934, -0.013344141654670238, -0.0020757962483912706, 0.00763154961168766, -0.004461578093469143, -0.01762489415705204, 0.01830391027033329, -0.021802319213747978, -0.012200146913528442, -0.006849205121397972, 0.013004633598029613, 0.008089147508144379, 0.007882490754127502, -0.009358612820506096, -0.03867439180612564, -0.003324964316561818, 0.004815847612917423, 0.03297656029462814, -0.014576703310012817, -0.0074876281432807446, 0.0014465993735939264, -0.00011993489897577092, -0.028740091249346733, -0.007469176314771175, 0.017993925139307976, 0.012059914879500866, -0.0072698998264968395, -0.0017547397874295712, 0.014635748229920864, 0.004199566785246134, 0.011986109428107738, 0.004413604270666838, -0.0026588644832372665, 0.013351522386074066, -0.009498843923211098, -0.009963822551071644, -0.003657091874629259, 0.012251811102032661, 0.0076094078831374645, 0.009306947700679302, 0.01379435881972313, 0.016207817941904068, -0.00790463201701641, 0.019322434440255165, 0.012746311724185944, -0.022259917110204697, 0.00856888759881258, -0.008185095153748989, 0.020518094301223755, -0.00772011699154973, 0.014620986767113209, 0.025950221344828606, 0.011144720017910004, 0.01639971323311329, -0.002588748699054122, -0.002882127882912755, 0.020429525524377823, -0.004989291541278362, -0.0007648156024515629, 0.011772071942687035, 0.000780499423854053, -0.001338658039458096, -0.005749494303017855, 0.021817080676555634, -0.008856730535626411, 0.003860058495774865, 0.0009862339356914163, -0.002251085825264454, -0.008221998810768127, -0.03265181556344032, -0.012524893507361412, -0.020650943741202354, 0.005812229588627815, -0.008642693050205708, 0.005243922583758831, -0.0031902682967483997, 0.015868309885263443, 0.007380608934909105, -0.02289464883506298, -0.01542547345161438, 0.012082057073712349, 0.011277570389211178, 0.00010090676369145513, -0.030319541692733765, 0.03179566562175751, 0.02069522812962532, -0.004557526204735041, -0.021123303100466728, 0.028061075136065483, -0.02254038117825985, 0.012237049639225006, -0.00086491514230147, -0.015093346126377583, 0.015381189063191414, 0.0067200446501374245, -0.01876150816679001, -0.007653691805899143, -0.033094651997089386, -0.012045154348015785, -0.0013257418759167194, -0.002199421636760235, 0.01456932257860899, -0.012192766182124615, -0.0042364695109426975, 0.001468741218559444, -0.010613315738737583, 0.010657599195837975, 0.01830391027033329, 0.04847583919763565, 0.031677573919296265, 0.007365847937762737, -0.001955861458554864, -0.002094247844070196, -0.04936151206493378, 0.0024097689893096685, 0.0032087198924273252, -0.010089293122291565, -0.0029061147943139076, -0.005683069117367268, -0.006398987956345081, 0.02289464883506298, 0.020680466666817665, -0.007100145798176527, 0.012569176964461803, -0.01691635698080063, 0.0019392550457268953, -0.0030168239027261734, -0.006114834453910589, 0.009904777631163597, 0.0048638214357197285, -0.01639971323311329, 0.004502171650528908, 0.019189583137631416, -0.002981766127049923, -0.010687122121453285, -0.01762489415705204, -0.013019394129514694, 0.0344822071492672, 0.02079855650663376, -0.01749204285442829, -0.0009308793232776225, -0.013801738619804382, -0.009580031037330627, 0.018805792555212975, 0.019263390451669693, 0.008354849182069302, 0.004376701079308987, -0.01067236065864563, -0.007764400914311409, -0.018185820430517197, 0.011211145669221878, -0.03767062723636627, -0.013417947106063366, 0.012155863456428051, -0.011225906200706959, -0.0011892006732523441, -0.006841824855655432, 0.015956876799464226, -0.007845587097108364, 0.014384807087481022, 0.00036995302070863545, -0.009875254705548286, -0.0035316215362399817, 0.010325471870601177, 0.015543563291430473, -0.017639655619859695, -0.009011724032461643, -0.0053472514264285564, 0.010325471870601177, -0.0035002538934350014, 0.004978220909833908, 0.02088712342083454, 0.003852677997201681, 0.008901014924049377, -0.004635022487491369, 0.013521275483071804, 0.014222433790564537, -0.013462231494486332, 0.018717225641012192, -0.024754563346505165, -0.01217800471931696, -0.011580175720155239, -0.014266717247664928, -0.026186401024460793, -0.023854129016399384, -0.006697902921587229, -0.027854418382048607, 0.01175731047987938, 0.0001454210578231141, 0.0006573355058208108, 0.021389005705714226, 0.003419067244976759, -0.020326197147369385, -0.0015370118198916316, -0.0006476484704762697, -0.0019743130542337894, -0.014318381436169147, 0.0034651958849281073, -0.0158830713480711, 0.00840651337057352, -0.0014659734442830086, -0.003131223376840353, 0.015292622148990631, -0.01075354777276516, -0.010273807682096958, -0.0012344068381935358, 0.011816355399787426, 0.006096383091062307, -0.0044874101877212524, 0.026511147618293762, 0.0071112168952822685, 0.014406949281692505, -0.007299422286450863, -0.04215804114937782, -0.004790015518665314, 0.002145912032574415, -0.000759280170314014, 0.030319541692733765, -0.010052389465272427, 0.006118524819612503, 0.0007768091163598001, -0.006572432350367308, 0.0014549025800079107, 0.007303112652152777, -0.002878437517210841, 0.022304201498627663, 0.027898702770471573, 0.01049522589892149, -0.006321491673588753, -0.004037193022668362, 0.02286512777209282, 0.01623734086751938, 0.0049154856242239475, -0.012288713827729225, 0.010893778875470161, 0.025433579459786415, -0.00535094179213047, 0.005860203877091408, 0.02099045179784298, -0.001987229101359844, 0.012642983347177505, 0.016990162432193756, -0.007793923374265432, 0.00564985629171133, 0.016827788203954697, 9.917693205352407e-06, 0.014023157767951488, -0.0021865053568035364, -0.01885007508099079, 0.03000955656170845, 0.0158830713480711, -0.02984718419611454, -0.011587556451559067, -0.003181042615324259, -0.02327844128012657, 0.00538415415212512, 0.013041536323726177, 0.0021772796753793955, 0.004007670562714338, -0.012487990781664848, -0.007173952180892229, -0.001811939524486661, -0.0026145807933062315, -0.0018451522337272763, -0.010487845167517662, 0.04298466816544533, -0.0017012304160743952, -0.013270335271954536, -0.0063805365934967995, 0.010222143493592739, 0.0013875545701012015, -0.0070964558981359005, 0.006373155862092972, -0.006727425381541252, -0.004808466881513596, -0.006849205121397972, -0.013004633598029613, -0.0029540888499468565, -0.005284516140818596, 0.004468958824872971, 0.007661072071641684, -0.01613401249051094, -0.001859913463704288, -0.007247758097946644, -0.005170116666704416, -0.02224515564739704, -0.019219106063246727, -0.011808974668383598, 0.021713752299547195, 0.03392127901315689, 0.020326197147369385, 0.007188713178038597, 0.008908395655453205, -0.0032935969065874815, 0.0010572723113000393, 0.014982636086642742, 0.004542764741927385, 0.00863531231880188, -0.018126776441931725, 0.014820262789726257, -0.008074386045336723, -0.006716354284435511, -0.003967077471315861, 0.003860058495774865, -0.004409913904964924, 0.013122723437845707, -0.019455285742878914, -0.004280753433704376, -0.012967729941010475, -0.00488227279856801, -0.005048336461186409, -0.007133358623832464], "7549afef-c458-4c82-8149-e115c99cd800": [-0.006645027082413435, 0.00043967869714833796, -0.008733668364584446, -0.0016612567706033587, -0.05012739449739456, -0.02431979775428772, 0.015350083820521832, 0.016694825142621994, -0.04409036040306091, 0.03899750858545303, 0.013704921118915081, 0.03278880938887596, -0.0036068405024707317, -0.015292860567569733, -0.014219928532838821, 0.006759473122656345, -0.035220786929130554, 0.027495676651597023, -0.0009826271561905742, -0.02124405838549137, 0.07765167951583862, -0.007149305194616318, -0.05195853114128113, 0.020643215626478195, -0.004821042064577341, -0.02153017371892929, -0.0058868215419352055, 0.0012660600477829576, -0.021387115120887756, -0.005675811320543289, 0.018096789717674255, -0.0013957059709355235, 0.029140839353203773, -0.009370274841785431, 0.0033672188874334097, -0.03470578044652939, -0.023819096386432648, 0.030614333227276802, -0.012474625371396542, 0.0030453393701463938, -0.04111476242542267, 0.03144406899809837, 0.02095794305205345, -0.004710172303020954, -0.051500748842954636, 0.03696609288454056, 0.03144406899809837, 0.003236678894609213, 0.015378694981336594, 0.0025178142823278904, 0.010664946399629116, 0.001286624581553042, 0.008569152094423771, 0.0160224549472332, 0.027839014306664467, -0.005843904335051775, 0.00023783331562299281, 0.04306034743785858, 0.013697768561542034, -0.034820228815078735, 0.0003779850958380848, -0.014806465245783329, 0.012760740704834461, 0.0009558037854731083, 0.005951197352260351, -0.03579301759600639, 0.005024899262934923, 0.01168780867010355, -0.06626429408788681, -0.0011238965671509504, 0.0026823305524885654, 0.027467064559459686, -0.03653692081570625, 0.005811716429889202, -0.010385983623564243, 0.011230023577809334, 0.03828222304582596, -0.00024722146918065846, 0.014777853153645992, 0.035964690148830414, -0.03785305097699165, 0.013883743435144424, 0.012767893262207508, 0.003267078660428524, 0.0803411677479744, 0.03064294531941414, -0.03430521860718727, -0.02284630388021469, -0.05081406980752945, -0.020600298419594765, -0.006262348033487797, 0.015879396349191666, 0.020271265879273415, -0.020328490063548088, -0.018726244568824768, -0.010378831066191196, 0.041343655437231064, 0.009549097158014774, 0.015865091234445572, -0.05336049571633339, 0.0005208192160353065, 0.03244547173380852, -0.06220145896077156, 0.01663760282099247, 0.02284630388021469, -0.009363122284412384, -0.008848114870488644, -0.02769595757126808, -0.03585024178028107, 0.037452489137649536, 0.03052849881350994, -0.022359907627105713, -0.0015763163100928068, -0.008304495364427567, -0.027781791985034943, -0.07536275684833527, 0.006455475464463234, -0.02958431839942932, 0.013418805785477161, -0.050184618681669235, 0.051815472543239594, 0.03636524826288223, 0.027924848720431328, 0.015707727521657944, -0.016651907935738564, -0.007717959117144346, -0.0016979152569547296, 0.00492118252441287, 0.006949024274945259, -0.002821811707690358, -0.010142786428332329, -0.0014037529472261667, 0.011094119399785995, 0.02653719112277031, 0.00858345814049244, 0.02304658479988575, 0.004906876944005489, 0.056879714131355286, -0.0253498125821352, 0.05705138295888901, -0.03750970959663391, -0.024663135409355164, -0.007374620996415615, -0.0026859070640057325, -0.0017023858381435275, 0.008576304651796818, -0.03848250210285187, 0.04703734815120697, 0.01606537215411663, 0.04105754196643829, -0.03330381587147713, -0.024262573570013046, 0.007717959117144346, -0.013955271802842617, 0.011129884049296379, -0.002199511043727398, -0.000979050644673407, 0.02258880063891411, 0.011137036606669426, -0.014599030837416649, -0.003991307690739632, -0.04580705240368843, 0.008926795795559883, 0.01926986314356327, 0.03948390483856201, 0.012188510037958622, 0.0447770394384861, 0.02001376263797283, -0.05210158973932266, 0.02879750169813633, 0.02361881546676159, 0.014098329469561577, 0.02831110544502735, 0.010858073830604553, -0.00706704705953598, -0.013790755532681942, 0.044519536197185516, 0.001766761764883995, 0.028110824525356293, -0.0500415600836277, -0.00025951548013836145, -0.013404499739408493, -0.023604508489370346, 0.014734935946762562, 0.006548462901264429, 0.02776748687028885, 0.01394811924546957, 0.024205351248383522, -0.011272941716015339, -0.004656525794416666, 0.012953868135809898, -0.008404635824263096, 0.017696229740977287, 0.050842683762311935, 0.00022464519133791327, -0.014198469929397106, -0.003698039799928665, -0.013161301612854004, 0.01696663536131382, 0.02904069982469082, -0.014720629900693893, -0.06042754277586937, -0.047838471829891205, 0.052444927394390106, -0.03461994603276253, 0.00506424019113183, -0.012760740704834461, -0.028654443100094795, 0.007367467973381281, -0.060942549258470535, 0.022116709500551224, -0.018726244568824768, 0.027953460812568665, -0.024005070328712463, -0.01881207898259163, -0.0052645206451416016, -0.004638643469661474, 0.03081461414694786, 0.019584590569138527, -0.017023857682943344, -0.026508579030632973, 0.018912218511104584, 0.009341663680970669, -0.029384037479758263, -0.036794424057006836, -0.02267463505268097, -0.02267463505268097, 0.0005623953184112906, -0.061514779925346375, -0.0033457602839916945, 0.03553551435470581, 0.012853728607296944, -0.004706596024334431, -0.05144352465867996, -0.01630857028067112, 0.019298475235700607, 0.02572176232933998, 0.011780795641243458, 0.012646294198930264, -0.031129339709877968, 0.028196658939123154, 0.03187324106693268, 0.026136629283428192, -0.007946851663291454, 0.03716637194156647, 0.026022182777523994, -0.029384037479758263, 0.058110009878873825, 0.005057087168097496, -0.03344687446951866, 0.0024284033570438623, 0.007481914013624191, -0.007077776361256838, -0.027509981766343117, -0.0207433570176363, 0.04663678631186485, -0.007861017249524593, -0.014820770360529423, -0.013368736021220684, -0.052473537623882294, -0.012438860721886158, 0.003258137498050928, -0.0068131196312606335, -0.008218660950660706, 0.05089990422129631, -0.0030650098342448473, 0.02510661445558071, -0.06466204673051834, 0.012281497940421104, 0.0368802584707737, -0.027352619916200638, -0.013855131343007088, -0.00273240078240633, -0.022131014615297318, -0.013161301612854004, -0.009420344606041908, -0.011594820767641068, 0.005504142493009567, 0.021058082580566406, -0.00429172907024622, 0.009835212491452694, 0.006999094504863024, -0.008612069301307201, 0.03693747892975807, -0.002533908234909177, -0.007388926576822996, -0.004706596024334431, 0.008805196732282639, -0.039998915046453476, -0.043489519506692886, -0.003431594930589199, -0.034906063228845596, 0.029469871893525124, 0.0014627642231062055, 0.033132147043943405, -0.003057856811210513, 0.011508986353874207, -0.019527366384863853, -0.013404499739408493, 0.011601974256336689, -0.037366654723882675, -0.017939427867531776, 0.017066774889826775, -0.030471274629235268, 0.012045452371239662, -0.029469871893525124, 0.05238770321011543, 0.004946217406541109, -0.013747838325798512, 0.013096925802528858, 0.0260078776627779, 0.0040485309436917305, -0.007660736329853535, -0.003998460713773966, 0.004953370429575443, 0.006584227550774813, 0.011988229118287563, -0.003994884435087442, -0.0022281226702034473, -0.01479215919971466, 0.026680247858166695, 0.010278690606355667, -0.05021322891116142, 0.008733668364584446, 0.01975625939667225, -0.03519217669963837, 0.03650830686092377, -0.025707457214593887, -0.039541129022836685, -0.02978459931910038, -0.018640410155057907, -0.013197066262364388, -0.03430521860718727, -0.0005592658999375999, -0.019341392442584038, -0.014262845739722252, -0.04071420058608055, -0.05316021665930748, -0.022316990420222282, -0.02054307609796524, -0.020471546798944473, 0.026079406961798668, -0.010715016163885593, 0.011287246830761433, 0.011745031923055649, 0.0026197428815066814, -0.008325953967869282, 0.01791081577539444, -0.04486287385225296, -0.0018096790881827474, 0.000848063500598073, -0.023604508489370346, 0.018998052924871445, -0.005353931803256273, 0.027052197605371475, -0.026065099984407425, -0.009777989238500595, -0.006966906599700451, 0.00994250550866127, -0.00160224549472332, 0.0021869936026632786, -0.015879396349191666, -0.0294126495718956, -0.020614605396986008, 0.013855131343007088, -0.003476300509646535, 0.006906107068061829, 0.006745167076587677, 0.042373672127723694, -0.008004074916243553, -0.038024719804525375, 0.022488659247756004, 0.04629344865679741, -0.0025303319562226534, -0.030499886721372604, -0.0059655033983290195, 0.04904015734791756, 0.006097831297665834, 0.01183086633682251, 0.025464259088039398, -0.015307166613638401, 0.0013912355061620474, -0.00600842060521245, -0.03579301759600639, 0.0421447791159153, 0.013611933216452599, 0.014835076406598091, 0.0016210217727348208, 0.007285209838300943, 0.0029308933299034834, -0.005300285294651985, 0.03636524826288223, -0.019770564511418343, -0.01655176840722561, -0.03419077396392822, 0.027881931513547897, -0.0068274252116680145, -0.010028339922428131, 0.0107007110491395, -0.021658925339579582, 0.002800353104248643, 0.001285730511881411, 0.00011103731230832636, 0.01183086633682251, 0.01589370332658291, -0.041229210793972015, -0.009441803209483624, -0.0002238628367194906, 0.004170130006968975, 0.031157951802015305, -0.01238879095762968, 0.00331178423948586, 0.014084023423492908, -0.023962153121829033, 0.041629768908023834, -0.014398750849068165, 0.013096925802528858, 0.034076329320669174, -0.07250160723924637, -0.022545883432030678, 0.0035156412050127983, 0.05064240097999573, -0.011981076560914516, 0.02256018854677677, -0.012889492325484753, 0.012782199308276176, 0.06580650806427002, 0.007109964266419411, -0.042173389345407486, -0.01573633961379528, -0.0010970731964334846, 0.0036479695700109005, -0.0051393453031778336, -0.004123636055737734, 0.0018865724559873343, -0.028783194720745087, -0.0024766852147877216, -0.013211372308433056, -0.007939698174595833, -0.01959889568388462, 0.034076329320669174, 0.034448277205228806, 0.010385983623564243, 0.014448820613324642, -0.004828195087611675, -0.03939807042479515, -0.034448277205228806, 0.014198469929397106, 0.012138440273702145, -0.005353931803256273, -0.0011337316827848554, 0.020471546798944473, -0.04034225270152092, 0.019899316132068634, 0.004431209992617369, -0.0018919372232630849, 0.000827946059871465, -0.025821901857852936, -0.010221467353403568, -0.009112770669162273, -0.010400289669632912, -0.016780659556388855, 0.02263171784579754, -0.004441939294338226, 0.00036859692772850394, -0.055678028613328934, 0.005067816469818354, 0.008597763255238533, -0.003093621227890253, -0.03853972628712654, -0.0028182354290038347, 0.025249671190977097, -0.016365792602300644, 0.010900991037487984, -0.0022460047621279955, -0.011601974256336689, -0.0009102041949518025, -0.0030381863471120596, 0.0023032277822494507, -0.005647200159728527, -0.036136358976364136, -0.049068767577409744, -0.015207026153802872, -0.0003509382368065417, 0.01582217402756214, 0.007020553108304739, -0.00824011955410242, -0.008576304651796818, -0.015063968487083912, -0.01121571846306324, 0.044433701783418655, -0.0034172891173511744, 0.00834026001393795, 0.01832568272948265, 0.003959119785577059, -0.027982072904706, -0.008504776284098625, -0.02394784800708294, -0.022817691788077354, -0.04720901697874069, 0.03788166120648384, -0.010815156623721123, 0.022460047155618668, 0.011101271957159042, 0.015807868912816048, -0.0032545612193644047, -0.043775636702775955, -0.01589370332658291, 0.0023443568497896194, -0.010715016163885593, -0.009785141795873642, 0.016237040981650352, -0.0004262670408934355, 0.002233487321063876, -0.0005923479911871254, 0.021301280707120895, -0.03158712387084961, 0.005808139685541391, 0.030414052307605743, -0.019398614764213562, 0.01532147265970707, 0.008104214444756508, -0.011759337037801743, 0.016952328383922577, 0.00010086680413223803, -0.026837611570954323, -0.009034089744091034, 0.011723573319613934, 0.023389922454953194, -0.013497487641870975, -0.002262098714709282, 0.007975462824106216, -0.026150934398174286, 0.0034065598156303167, 0.019155416637659073, -0.013318665325641632, -0.007081352639943361, 0.012052605859935284, 0.011838018894195557, 0.06311702728271484, -0.019913623109459877, 0.027624428272247314, -0.011902394704520702, -0.005976232700049877, -0.0009486509370617568, 0.03338965028524399, -0.02633691020309925, 0.019455837085843086, 0.010943909175693989, 0.007431843783706427, -0.03936946019530296, 0.02456299588084221, -0.007925393059849739, 0.0030507040210068226, 0.004638643469661474, -0.050098784267902374, 0.011022590100765228, -0.0261223241686821, -0.022688940167427063, -0.014949522912502289, 0.010536194778978825, 0.009491873905062675, 0.006183666177093983, 0.00287545844912529, -0.027796097099781036, 9.376980597153306e-05, -0.030843224376440048, 0.024434244260191917, -0.0026894835755228996, 0.005861786659806967, -0.0032420435454696417, 0.026894833892583847, 0.04446231201291084, 0.014033953659236431, -0.024834804236888885, 0.03782443702220917, -0.005282402969896793, 0.02234560251235962, -0.006072796415537596, -0.004381139762699604, 0.022746162489056587, -0.02916945144534111, -0.005167956929653883, -0.021759064868092537, 0.008826656267046928, -0.016709132120013237, -0.04966960847377777, -0.029670152813196182, -0.012539001181721687, 0.023761872202157974, -0.010292996652424335, 0.024720357730984688, 0.02087210863828659, -0.00018586315854918212, -0.027924848720431328, 0.025163836777210236, -0.013075467199087143, -0.0030381863471120596, 0.016051067039370537, -0.0059404680505394936, -0.007149305194616318, 0.017038164660334587, 0.03044266439974308, -0.019570283591747284, -0.010192856192588806, 0.023232558742165565, -0.011694961227476597, 0.007117117289453745, -0.010650640353560448, -0.0005167956696823239, 0.009663542732596397, 0.002435556147247553, 0.01742441952228546, -0.005682964343577623, 0.039626963436603546, 0.024748969823122025, 0.00742469122633338, 0.04503454267978668, 0.01951306127011776, -0.004635067190974951, 0.009205758571624756, -0.02978459931910038, 0.061514779925346375, -0.017038164660334587, 0.014570419676601887, -0.0015557517763227224, 0.03135823458433151, -0.014069718308746815, -0.024534383788704872, 0.0033851012121886015, 0.007918239571154118, 0.0006307947332970798, 0.03447688743472099, -0.0454351045191288, 0.04005613550543785, -0.019384309649467468, 0.022088097408413887, 0.014777853153645992, -0.01869763247668743, 0.0025088731199502945, -0.03361854329705238, -0.014506043866276741, 0.00023179806885309517, 0.028897641226649284, -0.009992575272917747, -0.004517044872045517, -0.028954865410923958, 0.013418805785477161, 0.02567884512245655, 0.00589397456496954, -0.054705239832401276, 0.005754493176937103, 0.006816695909947157, 0.018168319016695023, -0.0008650516392663121, -0.02888333611190319, -0.01705246977508068, 0.010571958497166634, 0.0054147313348948956, -0.0074175382032990456, 0.0038267916534096003, -0.009963964112102985, -0.012603376992046833, 0.013561863452196121, 0.023561591282486916, 0.00979944784194231, 0.008540540933609009, 0.008948254399001598, 0.013998189009726048, 0.0003905026242136955, -0.0030542805325239897, -0.02058599330484867, 0.025120919570326805, 0.02144433930516243, 0.005911856424063444, -0.011773643083870411, 0.009792295284569263, -0.023261170834302902, -0.0016093984013423324, -0.031157951802015305, -0.015335777774453163, -0.001954524777829647, -0.034734394401311874, -0.0037051925901323557, 0.04080003499984741, -0.010292996652424335, 0.0025839784648269415, 0.013776449486613274, -0.020614605396986008, -0.0021512291859835386, 0.01577925682067871, 0.014641948975622654, 0.002190569881349802, 0.00462076161056757, -0.006212277803570032, 0.0069955182261765, -0.005600706208497286, 0.01220281608402729, 0.045091766864061356, -0.01959889568388462, -0.03956973925232887, -0.021515868604183197, -0.012624835595488548, -0.029069310054183006, 0.010478971526026726, 0.03519217669963837, -0.012603376992046833, -0.031730182468891144, 0.0022907103411853313, -0.011058354750275612, 0.014241387136280537, 0.010650640353560448, 0.009527638554573059, 0.016279958188533783, 0.005622164811939001, 0.0017748087411746383, 0.00022956279281061143, -0.0016344333998858929, -0.02124405838549137, 0.008075603283941746, -0.0038661325816065073, 0.03722359612584114, -0.00858345814049244, -0.03779582679271698, -0.038797229528427124, -0.007818099111318588, 0.010571958497166634, -0.01643732190132141, -0.004209470935165882, -0.006262348033487797, 0.027080809697508812, 0.0002145864418707788, -0.005110733676701784, 0.0022442166227847338, -0.004642220214009285, -0.02502078004181385, -0.019584590569138527, -0.004452668596059084, 0.00742469122633338, -0.026522884145379066, 0.0035227942280471325, 0.006258771289139986, 0.020471546798944473, -0.023075195029377937, 0.02177337184548378, 0.02131558768451214, 0.012088369578123093, -0.002923740306869149, 0.030013490468263626, 0.02346145175397396, 0.04577844217419624, -0.021172529086470604, 0.031615737825632095, 0.02431979775428772, 0.016251346096396446, -0.010915297083556652, -0.003039974719285965, 0.02247435413300991, -0.006605686154216528, 0.028854724019765854, 0.006112137343734503, 0.009885282255709171, 0.001001403434202075, -0.011601974256336689, -0.0020224773325026035, -0.02473466470837593, -0.03215935453772545, 0.026265380904078484, 0.03659414127469063, -0.008805196732282639, 0.019083887338638306, 0.01263198908418417, 0.014248539693653584, 0.040971703827381134, -0.00796831026673317, 0.009563402272760868, 0.00796831026673317, -0.0021655349992215633, -0.024505771696567535, 0.003973425831645727, -0.004681561142206192, -0.04949793964624405, 0.009198606014251709, -0.03464855998754501, 0.021458644419908524, 0.0005404896219260991, 0.046035945415496826, 0.014255693182349205, -0.020099597051739693, -7.281410216819495e-05, -0.005311014596372843, 0.016980940476059914, -0.022574493661522865, -0.010164245031774044, -0.0008668398368172348, -0.0037731449119746685, 0.0019133958267048001, -0.05507718771696091, -0.014262845739722252, -0.01088668592274189, 0.01144461054354906, -0.05147213488817215, 0.05476246029138565, 0.030385440215468407, -0.0009692154708318412, -0.01150183379650116, -0.003004210302606225, 0.0034083479549735785, 0.020528770983219147, -0.003998460713773966, -0.017610393464565277, -0.00811136793345213, -0.017567476257681847, 0.02379048429429531, -0.019241251051425934, 0.01922694593667984, 0.005121462978422642, 0.01582217402756214, -0.006791661027818918, -0.011508986353874207, -0.009534791111946106, 0.028110824525356293, 0.012646294198930264, 0.011616279371082783, -0.03759554401040077, -0.018640410155057907, 0.010014033876359463, -0.01683788374066353, 0.02411951683461666, 0.03250269219279289, 0.02070043981075287, -0.01522133219987154, -0.0044633978977799416, 0.031043505296111107, 0.004871112294495106, 0.02805360220372677, -0.024005070328712463, -0.01856888085603714, -0.03516356647014618, 0.03316075727343559, 0.010214314796030521, -0.028525691479444504, -0.034820228815078735, 0.0055256010964512825, 0.010428901761770248, -0.011058354750275612, 0.0253498125821352, -0.0023658156860619783, 0.05258798599243164, 0.013011091388761997, -0.009828059002757072, -0.00858345814049244, -0.012939563021063805, 0.012124134227633476, -0.022202543914318085, 0.016494544222950935, -0.005632894113659859, 0.023819096386432648, 0.00407714257016778, 0.020328490063548088, 0.014863687567412853, 0.015850786119699478, -0.007932545617222786, -0.02267463505268097, -0.005543483421206474, -0.002630472183227539, -0.015207026153802872, 0.00012808128667529672, -0.0004329728544689715, -0.005944044794887304, -0.0003111503610853106, 0.02416243404150009, 0.009177147410809994, 0.012209968641400337, -0.020199738442897797, -0.025321200489997864, -0.008969713933765888, 0.0007738524000160396, -0.02793915569782257, -0.01655176840722561, 0.0061622075736522675, 0.011494680307805538, 0.016523156315088272, 0.0037445335183292627, -0.05467662587761879, 0.010922450572252274, 0.023647425696253777, -0.015578975901007652, -0.01300393883138895, 0.005017746239900589, -0.0021083117462694645, -0.006805966608226299, -0.017653312534093857, -0.03296047821640968, 0.003694463288411498, -0.023976458236575127, -0.008654986508190632, -0.030013490468263626, -0.00010192856279900298, -0.016523156315088272, 0.0012794716749340296, -0.026022182777523994, -0.029555706307291985, 0.011194259859621525, 0.0024802617263048887, -0.05035628750920296, 0.023347005248069763, 0.014806465245783329, 0.009620625525712967, 0.03150128945708275, 0.01493521686643362, 0.00494979415088892, -0.011251483112573624, -0.018554573878645897, 0.03356131911277771, 0.016980940476059914, 0.017410114407539368, 9.460803266847506e-05, -0.02098655514419079, -0.028082212433218956, -0.006455475464463234, 0.010028339922428131, 0.004277423024177551, 0.018225541338324547, 0.009878129698336124, -0.005654352717101574, 0.011301552876830101, 0.002060029888525605, 0.027180949226021767, 0.02916945144534111, -0.007431843783706427, 0.0166805200278759, 0.00819720234721899, -0.018626103177666664, 0.05107157304883003, 0.003858979558572173, 0.003093621227890253, 0.0018525962950661778, -0.054619401693344116, -0.03261714056134224, -0.018182624131441116, 0.0008342048386111856, 0.02502078004181385, -0.012946715578436852, 0.013840826228260994, -0.00753913726657629, -0.026794694364070892, 0.03762415796518326, 0.014441668055951595, -0.010121327824890614, 0.029441259801387787, 0.04220199957489967, -0.0031669382005929947, -0.010107021778821945, -0.01683788374066353, 0.05516302213072777, -0.0053610848262906075, 0.007689347490668297, 0.02609371207654476, 0.010071257129311562, -0.00695260101929307, -0.010622029192745686, -0.017810674384236336, 0.011866630055010319, -0.05427606403827667, 0.0002979622222483158, -0.04881126433610916, 0.007782334927469492, 0.005625741556286812, 0.0006169360131025314, -0.008848114870488644, -0.02723817341029644, -0.0006611944991163909, -0.011330164037644863, -0.014026801101863384, -0.0073388563469052315, -0.018096789717674255, -0.007031282410025597, -0.008762279525399208, 0.0051250397227704525, 0.0020314182620495558, -0.0035084884148091078, -0.005625741556286812, -0.01012848038226366, -0.008519082330167294, 0.003841097466647625, -0.016709132120013237, 5.088045872980729e-05, 0.004627914167940617, -0.01881207898259163, 0.017267055809497833, -0.037366654723882675, -0.013540404848754406, -0.006473357789218426, 0.009034089744091034, -0.022159626707434654, -0.01507827453315258, -0.02050015889108181, -0.01031445525586605, -0.01565050520002842, 0.007946851663291454, 0.004052107222378254, -0.019656118005514145, 0.05101435258984566, -0.00046449023648165166, 0.024992167949676514, 0.009835212491452694, 0.0019133958267048001, 0.0040056137368083, -0.012875187210738659, -0.0017292090924456716, -0.011451763100922108, 0.0031705147121101618, 0.007331703789532185, 0.018711937591433525, 0.04174421727657318, 0.012331567704677582, -0.05078545957803726, -0.020643215626478195, 0.01692371815443039, -0.009913893416523933, -0.024133821949362755, -0.007760876324027777, -0.0004289493663236499, 0.0008073815261013806, -0.010571958497166634, 0.01074362825602293, 0.0036068405024707317, 0.025449952110648155, 0.006394675932824612, -0.02497786283493042, 0.002737765433266759, 0.00371234561316669, -0.006062067113816738, -0.0063267238438129425, -0.039340849965810776, -0.004066413268446922, -0.0500415600836277, -0.01762470044195652, 0.006609262432903051, 0.0078037939965724945, 0.004095024894922972, -0.006355335470288992, -0.005904703866690397, 0.0013465299271047115, 0.011723573319613934, -0.007882475852966309, -0.0027502828743308783, 0.0018266671104356647, 0.015049662441015244, 0.037280820310115814, -0.011952465400099754, 0.009477567858994007, -0.006212277803570032, -0.0021118882577866316, 0.014291456900537014, 0.003356489585712552, -0.008726515807211399, -0.010307302698493004, 0.03882583975791931, -0.007092081941664219, 0.010858073830604553, 0.050384897738695145, -0.02912653423845768, 0.031215175986289978, -0.027638735249638557, -0.003526370506733656, 0.021401422098279, -0.00951333250850439, -0.017639005556702614, 0.00739607959985733, 0.010171397589147091, -0.00542188435792923, 0.019484449177980423, 0.006283806636929512, 0.010686405003070831, 0.015750644728541374, 0.017610393464565277, 0.019298475235700607, -0.005239485763013363, 0.0017926909495145082, 0.0005708893877454102, -0.004713749047368765, -0.005625741556286812, -0.01474924199283123, 0.008662139996886253, 0.017796369269490242, 0.019069582223892212, -0.012217122130095959, 0.03367576748132706, -0.016408709809184074, 0.008504776284098625, 0.006559192202985287, 0.012760740704834461, -0.020285572856664658, 0.007989768870174885, -0.015149802900850773, 0.053961336612701416, 0.005672235041856766, 0.004495586268603802, 0.00626592431217432, 0.00022173933393787593, 0.006534157320857048, 0.0019330662908032537, 0.04263117536902428, 0.020285572856664658, 0.012238580733537674, -0.016580378636717796, -0.0056650820188224316, 0.02300366759300232, 0.023518674075603485, 0.00749622005969286, 0.004931911826133728, 0.03110072948038578, 0.006219430360943079, 0.0066164154559373856, 0.004445516038686037, -0.013447416946291924, -0.004824618808925152, 0.00899832509458065, -0.0009307687287218869, -0.01782498136162758, -0.026608718559145927, 0.0054862601682543755, 0.0021887817420065403, -0.005042781587690115, 0.00600842060521245, 0.029555706307291985, 0.004445516038686037, 0.024548688903450966, 0.023919235914945602, -0.011337317526340485, 0.037652768194675446, 0.007996921427547932, -0.008426094427704811, -0.023318393155932426, 0.0031526326201856136, -0.005110733676701784, -0.010729322209954262, -0.012953868135809898, -0.007889628410339355, 0.000636606477200985, -0.004524197429418564, 0.026422744616866112, 0.005579247605055571, -0.0010362736647948623, -0.012832269072532654, -0.01078654546290636, -0.0016147630522027612, -0.0038840146735310555, -0.011623432859778404, -0.027538593858480453, -0.0011086966842412949, -0.012782199308276176, -0.014169858768582344, -0.028339717537164688, -0.021658925339579582, 0.0034548419062048197, 0.023232558742165565, -0.0011891665635630488, -0.04832486808300018, -0.017138304188847542, 0.022460047155618668, -0.0029755986761301756, -0.011201412416994572, -0.002761012176051736, 0.01663760282099247, -0.0028808230999857187, 0.00924152322113514, -0.008633527904748917, 0.007374620996415615, -0.009506179951131344, 0.007961156778037548, 0.026522884145379066, -0.016365792602300644, 0.016823576763272285, -0.04494870826601982, 0.003072162624448538, 0.011015437543392181, 0.0075033726170659065, 0.007374620996415615, -0.008318801410496235, 0.006934718694537878, 0.004195164889097214, -0.007624971680343151, 0.0063660647720098495, -0.038797229528427124, 0.004188012331724167, -0.014835076406598091, 0.028940558433532715, -0.022774774581193924, -0.022030875086784363, -0.03250269219279289, -0.02489202842116356, -0.007689347490668297, 0.00742469122633338, -0.02168753743171692, -0.037366654723882675, -0.0006518063601106405, 0.020485851913690567, -0.0037767214234918356, 0.017109692096710205, -0.01173072587698698, -0.043890081346035004, 0.007170763798058033, -0.021172529086470604, -0.016251346096396446, 5.015399437979795e-05, 0.008662139996886253, -0.008082755841314793, 0.0035227942280471325, 0.02317533642053604, -0.012617683038115501, -0.012417402118444443, -0.01168780867010355, 0.031901851296424866, 0.014184163883328438, -0.010464665479958057, -0.00904124230146408, -0.00985667109489441, 0.010021187365055084, 0.004964099731296301, 0.00815428514033556, 0.008261578157544136, 0.011637737974524498, -0.021186836063861847, -0.01384797878563404, 0.010865227319300175, 0.022488659247756004, -0.0037194984033703804, 0.008647833950817585, 0.005482683889567852, -0.003909049555659294, 0.028940558433532715, -0.017696229740977287, -0.02284630388021469, -0.012460319325327873, 0.0016755624674260616, -0.005300285294651985, 0.002934469608590007, 0.0038124858401715755, -0.007267327513545752, 0.00805414468050003, -0.03273158520460129, 0.027710262686014175, 0.019212638959288597, -0.023032277822494507, 0.0050856987945735455, 0.012646294198930264, -0.002671601250767708, -0.011859477497637272, -0.0011086966842412949, -0.02070043981075287, 0.0010756145929917693, -0.006047761533409357, 0.013168455101549625, -0.01446312665939331, 0.013089773245155811, -0.002358662663027644, -0.012968174181878567, -0.04958377406001091, -0.0029541400726884604, 0.005589976906776428, -0.008504776284098625, -0.032474081963300705, -0.018454434350132942, 0.009806600399315357, -0.0020940061658620834, 0.019341392442584038, -0.009320205077528954, 0.002666236599907279, 0.004667255096137524, -0.007020553108304739, 0.02625107578933239, -0.026022182777523994, 0.01795373298227787, -0.008504776284098625, -0.04308895766735077, -0.03158712387084961, -0.00852623488754034, 0.015722034499049187, 0.024591606110334396, 0.022073792293667793, -0.014126940630376339, -0.015564669854938984, 0.008247272111475468, 0.006913260091096163, 0.020400017499923706, -0.03147267922759056, -0.017352890223264694, 0.021501561626791954, 0.009913893416523933, 0.00876943301409483, -0.007717959117144346, -0.002119041047990322, 0.012753588147461414, -0.010579111985862255, 0.018826384097337723, 0.0057366108521819115, 0.016852188855409622, -0.03101489506661892, 0.021601703017950058, -0.031043505296111107, 0.005933315027505159, 0.00924152322113514, 0.0020671826787292957, -0.020428629592061043, 0.0007005353108979762, -0.0007850287365727127, -0.01606537215411663, 0.013297206722199917, 0.00226031057536602, 0.008962560445070267, -0.0003245619882363826, -0.011516138911247253, 0.005600706208497286, -0.014963828027248383, 0.00037954977597109973, -0.024863416329026222, -0.013955271802842617, -0.012224274687469006, -0.003801756538450718, -0.016523156315088272, 0.008390329778194427, 0.01738150231540203, 0.01683788374066353, 0.008991172537207603, 0.014341527596116066, -0.00761066609993577, 0.009484721347689629, -0.007185069378465414, 0.021472949534654617, -0.013268595561385155, -0.00732455076649785, 0.002158381976187229, 0.01979917660355568, 0.003365430748090148, 0.016666214913129807, -0.025664538145065308, -0.023017972707748413, -0.006709402892738581, -0.016752049326896667, -0.00021816288062836975, 0.008612069301307201, 0.009048394858837128, -0.005157227627933025, -0.0041737062856554985, -0.010793698020279408, 0.020142514258623123, -0.006001267582178116, -0.003951967228204012, -0.006459052208811045, 0.011766490526497364, -0.015722034499049187, 0.016952328383922577, -0.008676445111632347, -0.024005070328712463, 0.02223115600645542, -0.012138440273702145, 0.018254153430461884, -0.006054914090782404, -0.011251483112573624, 0.009913893416523933, 0.00035071471938863397, -0.011508986353874207, 0.011709267273545265, -0.013218524865806103, -0.03244547173380852, 0.02912653423845768, -0.017639005556702614, 0.026479966938495636, 0.0050141699612140656, -0.00779664097353816, 0.003941237926483154, -0.00829734280705452, 0.017724839970469475, -0.005243062041699886, 0.013626239262521267, 0.025850513949990273, -0.026479966938495636, -0.00412005977705121, 0.00862637534737587, 0.018125401809811592, 0.007274480536580086, 0.022488659247756004, 0.026808999478816986, -0.028253881260752678, 0.00779664097353816, 0.0005995008978061378, 0.0015280343359336257, 0.008447553031146526, 0.005672235041856766, 0.011952465400099754, 0.0013393770204856992, 0.02871166728436947, -0.03419077396392822, -0.027667345479130745, -5.7223052863264456e-05, -0.026422744616866112, -0.01951306127011776, 0.014370138756930828, 0.029899045825004578, 0.005851056892424822, 0.02539272978901863, -0.006652179639786482, 0.001536081312224269, -0.022402824833989143, -0.00775372376665473, -0.004817465785890818, -0.005986962001770735, -0.014820770360529423, -0.010400289669632912, -0.02543564699590206, 0.009291592985391617, 0.002127982210367918, -0.006970482878386974, 0.011044048704206944, -0.00829734280705452, 0.0046136085875332355, -0.021987957879900932, -0.007946851663291454, -0.006469781510531902, 0.004384716507047415, -0.016208428889513016, 0.017681922763586044, 0.027624428272247314, -0.010779392905533314, 0.014920910820364952, 0.0020010187290608883, 0.009606319479644299, 0.002612590091302991, 0.0010917085455730557, -0.006101408042013645, -0.03848250210285187, 0.021515868604183197, -0.027052197605371475, 0.0107007110491395, -0.0061371722258627415, 0.004631490912288427, 0.014019647613167763, 0.02539272978901863, -0.007481914013624191, 0.00905554834753275, -0.0023443568497896194, 0.017696229740977287, -0.0014806464314460754, -0.010672098957002163, -0.033046312630176544, -0.011702113784849644, 0.03333242982625961, -0.014734935946762562, -0.0043632579036056995, 0.0027842591516673565, 0.013511793687939644, 0.03081461414694786, -0.009448956698179245, 0.01205975841730833, -0.004796007182449102, -0.00905554834753275, -0.0033493367955088615, -0.019813481718301773, 0.0014252116670832038, 0.009277286939322948, -0.0015208814293146133, -0.008147131651639938, -0.002328262897208333, 0.03673719987273216, -0.02045724168419838, 0.011816560290753841, -0.006641450338065624, 0.0023783331271260977, 0.04866820573806763, -0.03281741961836815, 0.02932681515812874, -0.0029165875166654587, -0.004853229969739914, -0.031072117388248444, -0.029469871893525124, -0.00721010472625494, -2.5663755877758376e-05, 0.009878129698336124, -0.010157091543078423, -0.024248268455266953, 0.004946217406541109, -0.03024238348007202, 0.035564128309488297, 0.022903526201844215, 0.01183086633682251, -0.013940965756773949, 0.0434609092772007, -0.01018570363521576, -0.004767395555973053, 0.01545022428035736, -0.02124405838549137, 0.01791081577539444, -0.005922585725784302, 0.010543347336351871, 0.00440617511048913, -0.014534655027091503, -0.004209470935165882, 0.007331703789532185, 0.01655176840722561, 0.005257368087768555, -0.0027306126430630684, -0.027180949226021767, -0.010028339922428131, -0.0018418669933453202, -0.022288378328084946, -0.00331178423948586, -0.025521481409668922, 0.006358911748975515, -1.6568979845033027e-05, -0.006748743820935488, -0.0006138066528365016, 0.015850786119699478, 0.01507827453315258, -0.009191452525556087, 0.023876318708062172, -0.03942668437957764, -0.01832568272948265, 0.02190212346613407, 0.010872379876673222, 0.01622273586690426, 0.0026859070640057325, -0.000224868708755821, 0.013604780659079552, 0.004513468127697706, -0.0075033726170659065, 0.009205758571624756, -0.004731631372123957, 0.014570419676601887, 0.021401422098279, -0.032760199159383774, -0.0021244059316813946, -0.006848884280771017, 0.042545340955257416, -0.0020457240752875805, 0.00036278521292842925, -0.021515868604183197, -0.025135226547718048, -0.003134750295430422, -0.015378694981336594, -0.006262348033487797, 0.010829462669789791, 0.014484585262835026, 0.005922585725784302, -0.0046851374208927155, 0.0013018244644626975, 0.016852188855409622, 0.016451627016067505, 0.0093845808878541, -0.003823215141892433, 0.0016281746793538332, 0.02723817341029644, -0.00586536293849349, -0.010614876635372639, -0.0011909548193216324, 0.005868939217180014, -0.010092715732753277, 0.0027806826401501894, -0.025407034903764725, -0.0007836875738576055, 0.019627507776021957, 0.003529947018250823, -0.0005007017171010375, -0.011601974256336689, -0.003263502148911357, 2.8555643439176492e-05, -0.0036604872439056635, -0.0013054008595645428, 0.008848114870488644, -0.0021208294201642275, 0.005797410383820534, -0.005693693645298481, -0.013132690452039242, -0.0007251233910210431, -0.004631490912288427, 0.00044817273737862706, 0.017081081867218018, -0.016623295843601227, -0.010385983623564243, -0.01951306127011776, 0.06689374893903732, -0.01386228483170271, -0.003658698871731758, 0.007388926576822996, 0.008683598600327969, -0.0181110966950655, -0.007903934456408024, 0.006155054550617933, 0.02489202842116356, -0.014734935946762562, -0.011015437543392181, -0.013232830911874771, 0.014334375038743019, 0.010736474767327309, -0.029055004939436913, -0.009935352019965649, 0.016279958188533783, 0.0018973018741235137, 0.01144461054354906, 0.0005015958449803293, 0.014906604774296284, -0.005704422947019339, -0.023361310362815857, 0.003994884435087442, -0.00017267503426410258, 0.026136629283428192, -0.01409117691218853, 0.0004302905290387571, 0.009663542732596397, 0.036622755229473114, 0.0024999321904033422, -0.004216623492538929, 0.0015253520105034113, -0.007360314950346947, -0.003823215141892433, 0.016036760061979294, 0.001228507375344634, 0.03178740665316582, 0.0009593802387826145, 0.0014842229429632425, 0.0023139570839703083, -0.008619221858680248, 0.033704377710819244, 0.02596496045589447, -0.032273802906274796, 0.002973810536786914, -0.005146498326212168, 0.0024820498656481504, -0.005729458294808865, 0.00881235022097826, -0.0006267712451517582, -0.032931867986917496, 0.0055005657486617565, 0.009849517606198788, 0.013311512768268585, -0.01018570363521576, 0.014584725722670555, -0.011108425445854664, 0.005847480613738298, -0.002705577528104186, -0.011616279371082783, 0.005175109952688217, 0.002537484746426344, -0.02530689537525177, -0.015049662441015244, -0.005386119708418846, -0.012789351865649223, -0.01650885120034218, 0.004331069998443127, -0.01532147265970707, -0.0199708454310894, -0.004989135079085827, 0.0062873829156160355, -0.02098655514419079, -0.0027306126430630684, 0.008633527904748917, -0.0018365023424848914, 0.031043505296111107, 0.028525691479444504, -0.0017917968798428774, 0.0010648852912709117, -0.0040485309436917305, -0.01729566790163517, -0.006652179639786482, 0.01512119174003601, -0.004731631372123957, 0.026193851605057716, -0.026308298110961914, -0.01573633961379528, -0.013826520182192326, -0.016866493970155716, -0.014835076406598091, 0.009892434813082218, 0.022932138293981552, -0.013368736021220684, 0.008039838634431362, 0.005475530866533518, -0.0133901946246624, 0.008561999537050724, -0.011237177066504955, -0.0017569265328347683, -0.0029487754218280315, -0.013082620687782764, 0.001597774913534522, 0.00036367931170389056, 0.012188510037958622, 0.017596088349819183, 0.002238851971924305, -0.00542188435792923, -0.0064912401139736176, 0.005790257826447487, 0.00243913265876472, -0.008368871174752712, -0.0027502828743308783, -0.04205894470214844, -0.00786816980689764, 0.0016344333998858929, 0.009935352019965649, -0.017410114407539368, -0.0080112274736166, -0.005439766217023134, -0.007410385180264711, -0.03118656389415264, -0.007889628410339355, -0.00905554834753275, 0.006784508004784584, -0.027953460812568665, -0.005768798757344484, -0.004180859308689833, 0.01643732190132141, 0.017596088349819183, 0.008118520490825176, 0.012124134227633476, -0.009620625525712967, 0.029269590973854065, 0.005260944366455078, -0.005246638786047697, 0.004570691380649805, 0.018869301304221153, -0.015350083820521832, 0.026465661823749542, -0.007510525640100241, 0.011008284986019135, 0.015021051280200481, -0.002119041047990322, -0.024820499122142792, -0.00791108701378107, -0.03213074430823326, 0.016337182372808456, -0.0065770745277404785, 0.026193851605057716, -0.04277423024177551, 0.0029899044893682003, -0.02153017371892929, -0.00367658119648695, 0.008569152094423771, -0.032474081963300705, 0.027452759444713593, -0.011294400319457054, 0.006172936875373125, 0.008676445111632347, 0.007810946553945541, -0.027738874778151512, 0.016079677268862724, -0.011187106370925903, 0.011058354750275612, 0.0066021098755300045, 0.014033953659236431, 0.010164245031774044, -0.0026680247392505407, -0.011122730560600758, 0.004470550920814276, 0.011995382606983185, -0.025035085156559944, -0.018297070637345314, 0.002235275460407138, 0.015021051280200481, 0.0012276133056730032, -0.016608990728855133, 0.023862013593316078, 0.0028414821717888117, 0.0011623433092609048, 0.019741952419281006, -0.0073388563469052315, -0.02161600813269615, -0.00749622005969286, 0.016251346096396446, -0.01158766821026802, -0.004145094659179449, -0.004967676009982824, -0.001580786774866283, 0.019112499430775642, 0.01577925682067871, -0.013125537894666195, -0.01111557800322771, -0.011566209606826305, 0.02120114117860794, -0.001699703512713313, 0.024992167949676514, -0.00492118252441287, -0.005661505740135908, -0.0028808230999857187, 0.01988501101732254, 0.02161600813269615, 0.0015646928222849965, -0.017152609303593636, -0.015993842855095863, -0.026565801352262497, -0.010343066416680813, 0.006391099654138088, -0.02243143692612648, -0.020357100293040276, 0.004706596024334431, 0.011723573319613934, -0.01296102162450552, 0.004942641127854586, -0.008926795795559883, 0.0038697088602930307, 0.007049164734780788, 0.007710806094110012, 0.005811716429889202, 0.002390850568190217, 0.005443342961370945, -0.011051202192902565, 0.0008203461184166372, -3.235561234760098e-05, 0.0025160261429846287, 0.0070634703151881695, 0.017367197200655937, -0.008619221858680248, 0.01622273586690426, 0.005353931803256273, -0.017281360924243927, 0.01795373298227787, 0.013969577848911285, 0.024505771696567535, 0.01573633961379528, 0.00459214998409152, 0.019498754292726517, -0.008325953967869282, -0.02328978292644024, 0.010328761301934719, -0.015249943360686302, -0.005049934610724449, -0.0019151840824633837, -0.01926986314356327, 0.0040485309436917305, 0.0014180587604641914, -0.004899723920971155, -2.7424035579315387e-05, -0.003529947018250823, 0.003837520955130458, 0.009406039491295815, -0.005007016938179731, 0.017696229740977287, -0.014591878280043602, -0.011179953813552856, 0.009706459939479828, -0.0011328376131132245, -0.021372810006141663, -0.0024534384720027447, 0.0037230749148875475, -0.014734935946762562, 0.00044504334800876677, 0.010056951083242893, 0.011680655181407928, -0.05376105755567551, 0.007810946553945541, -0.019627507776021957, 0.007006247527897358, 0.013425958342850208, -0.0014269999228417873, 0.005629317834973335, 0.013697768561542034, 0.00036658518365584314, -0.0005767010734416544, 0.01125863566994667, -0.013461722992360592, 0.007084929384291172, 0.012102675624191761, -0.001152508077211678, -0.00666648568585515, 0.012317261658608913, -0.03273158520460129, -0.0031311740167438984, -0.026794694364070892, 0.023604508489370346, 0.01226003933697939, -0.00026845658430829644, 0.016136901453137398, 0.0133329713717103, 0.0019098194316029549, -0.00961347296833992, -0.007632124703377485, -0.00276816519908607, 0.026751777157187462, 0.005343202501535416, -0.008554846048355103, 0.0069633303210139275, -0.014248539693653584, -0.014212775975465775, -0.002827176358550787, -0.007760876324027777, -0.022531576454639435, 0.017567476257681847, 0.02658010832965374, 0.021744759753346443, -0.0010022975038737059, -0.01988501101732254, 0.03696609288454056, 0.006147901527583599, 0.001134625868871808, -0.01841151714324951, 0.001188272493891418, -0.013375888578593731, -0.005082122515887022, 0.019384309649467468, 0.026150934398174286, -0.004069989547133446, 0.004821042064577341, 0.0014144823653623462, 0.010157091543078423, 0.01648023910820484, 0.002322898246347904, 0.013218524865806103, -0.0005248427041806281, 0.005343202501535416, -0.0028826112393289804, -0.00017658676370047033, -0.011122730560600758, 0.015235637314617634, 0.009248675778508186, -0.02230268530547619, -0.008590610697865486, -0.01569342240691185, 0.010035492479801178, -0.0008082755957730114, -0.007961156778037548, -0.01031445525586605, 0.004059260245412588, -0.0017390443244948983, -0.01084376871585846, -0.009370274841785431, -0.0063267238438129425, -5.4931893828324974e-05, 0.0063660647720098495, 0.0017524559516459703, -0.021215446293354034, 0.00447770394384861, 0.0014082235284149647, -0.0273240078240633, -0.00640898197889328, 0.019627507776021957, 0.017367197200655937, -0.016279958188533783, -0.013025397434830666, 0.01610828936100006, 0.02201656997203827, 0.008161437697708607, -0.007006247527897358, -0.0001831808331189677, 0.02346145175397396, -0.006076372694224119, -0.013919507153332233, 0.008690751157701015, 0.0017730204854160547, 0.00447770394384861, 0.010436054319143295, -0.054161619395017624, 0.01729566790163517, -0.013368736021220684, -0.024219656363129616, -0.0036694281734526157, -0.010292996652424335, -0.016380099579691887, 0.008061297237873077, -0.016179818660020828, 0.0062015485018491745, -0.019784869626164436, -0.019327085465192795, 0.02563592791557312, 0.002594707766547799, 0.009878129698336124, -0.018053872510790825, -0.007617818657308817, 0.021959345787763596, 0.027009280398488045, 0.018268460407853127, 0.028110824525356293, -0.01889791339635849, 0.0012276133056730032, 0.0051393453031778336, 0.010593418031930923, 0.0015763163100928068, -0.017138304188847542, 0.03338965028524399, -0.01738150231540203, -0.001615657121874392, 0.010207162238657475, -0.0005252897390164435, 0.004234505817294121, 0.0033403956331312656, 0.004946217406541109, 5.34789651283063e-05, 0.004452668596059084, -0.030757389962673187, 0.0022549459245055914, 0.01555036474019289, 0.024806194007396698, 0.0027538593858480453, -0.012353026308119297, -0.0022012991830706596, -0.020671827718615532, 0.0004774548579007387, 0.01306116208434105, 0.005314590875059366, -0.0028021412435919046, -0.00047343134065158665, 0.00659495685249567, -0.0035514056216925383, 0.013676309958100319, -0.003399407025426626, 0.008783738128840923, -0.0024158856831490993, 0.0037838744465261698, 0.00027762120589613914, 0.03356131911277771, -0.008898184634745121, 0.00615147827193141, 0.0017113268841058016, -0.0006446534534916282, -0.017309973016381264, -0.01589370332658291, 0.01546453032642603, -0.024062292650341988, -0.023389922454953194, 0.02662302553653717, 0.001264271792024374, 0.0014118000399321318, 0.005672235041856766, -0.00276816519908607, -0.01555036474019289, -0.01304685603827238, 0.005404002033174038, 0.02288922108709812, -0.010250079445540905, 0.010650640353560448, 0.021458644419908524, -0.011680655181407928, -0.030185159295797348, -0.004238082095980644, 0.005811716429889202, -0.017681922763586044, 0.0019098194316029549, -0.015421612188220024, -0.003506700275465846, 0.009134230203926563, -0.021015165373682976, 0.016337182372808456, -0.026136629283428192, 0.005260944366455078, 0.0001129372903960757, 0.01526424940675497, -0.009992575272917747, -0.012496083974838257, -0.0020171126816421747, 0.008447553031146526, 0.01643732190132141, -0.014641948975622654, 0.009370274841785431, -0.006448322907090187, 0.027509981766343117, 0.017553171142935753, -0.0038875911850482225, 0.012252885848283768, 0.025292588397860527, -0.011759337037801743, 0.00885526742786169, -0.007810946553945541, -0.013368736021220684, 0.004713749047368765, -0.00753913726657629, -0.0028897642623633146, -0.015807868912816048, 0.02772456966340542, -0.01762470044195652, 0.0012481778394430876, 0.012732129544019699, 0.02177337184548378, 0.0012633777223527431, 0.011323011480271816, 0.014599030837416649, 0.0023211101070046425, -0.010335913859307766, 0.005514871794730425, -0.002771741710603237, 0.013855131343007088, 0.019040970131754875, 0.0038482502568513155, 0.0005194779951125383, 0.02263171784579754, -0.004091448150575161, -0.010407442227005959, -0.018125401809811592, 0.02888333611190319, -0.0018973018741235137, -0.00824011955410242, 0.013797908090054989, 0.02107238955795765, 0.0065770745277404785, 0.014506043866276741, 0.0014296822482720017, -0.0207433570176363, 0.027667345479130745, 0.005296709015965462, 0.025535786524415016, -0.004044954665005207, 0.00666648568585515, 0.007768029347062111, 0.005257368087768555, 0.006130019668489695, -0.027252478525042534, -0.0049354881048202515, 0.0013554710894823074, -5.0293700041947886e-05, -0.000403914280468598, 0.020571688190102577, 0.00014953993377275765, -0.0024105210322886705, -0.01540730707347393, -0.015922313556075096, 0.010221467353403568, -0.0027932003140449524, -0.016251346096396446, 0.00127321295440197, 0.00971361342817545, 0.016165511682629585, 0.00553633039817214, 0.02530689537525177, -0.02181628905236721, 0.02831110544502735, 0.008061297237873077, 0.0006898060091771185, -0.002771741710603237, -0.006430440582334995, -0.01078654546290636, 0.010099869221448898, 0.011737878434360027, -0.008311647921800613, -0.009212911128997803, -0.01517841499298811, 0.008354566060006618, 0.005725881550461054, 0.013898048549890518, 0.018883606418967247, -0.020929330959916115, -0.0019509484991431236, 0.0021887817420065403, -0.00666648568585515, 0.019012359902262688, 0.009828059002757072, 0.004545656032860279, 0.0002467744052410126, -0.0038875911850482225, -0.03585024178028107, 0.0039626965299248695, 0.021344197914004326, -0.017152609303593636, 0.012667752802371979, 0.01573633961379528, -0.005811716429889202, -0.007045588456094265, -0.006298112217336893, 0.0021869936026632786, -0.014677712693810463, -0.017267055809497833, -0.03384743630886078, -0.0014895875938236713, 0.007517678663134575, -0.004209470935165882, -0.001995653845369816, -0.023690342903137207, -0.0065627689473330975, -0.0019241251284256577, -0.0066021098755300045, 0.022402824833989143, 0.004667255096137524, 0.000647782813757658, 0.036136358976364136, -0.01650885120034218, 0.02350436896085739, -0.03158712387084961, -0.004184435587376356, -0.003596111200749874, 0.028368327766656876, 0.01394811924546957, -0.003299266565591097, -0.001958101289346814, -0.027080809697508812, -0.02649427391588688, 0.0022245461586862803, 0.008783738128840923, 0.010629181750118732, -0.004095024894922972, -0.005239485763013363, 0.012317261658608913, -0.012288650497794151, -0.01499244011938572, 0.0035889584105461836, 0.011902394704520702, -0.003805333049967885, -0.009735072031617165, 0.017610393464565277, -0.015350083820521832, 0.012696364894509315, 0.004717325326055288, 0.008204354904592037, -0.019699035212397575, 0.02238851971924305, 0.005704422947019339, -0.012982480227947235, -0.0032027026172727346, -9.790506737772375e-05, 0.00560785923153162, -0.022989360615611076, -0.0037946037482470274, -0.001267848303541541, 0.008762279525399208, 0.033904656767845154, -0.004470550920814276, 0.002133346861228347, 0.006541310343891382, -0.0034298067912459373, -0.01885499618947506, -0.002741341944783926, -0.02230268530547619, -0.021129611879587173, -0.009363122284412384, -0.002092217793688178, -0.02037140727043152, 0.005994114559143782, -0.0033314544707536697, -0.0030596451833844185, -0.00023492745822295547, 0.0009710036683827639, -0.005257368087768555, -0.002558943349868059, 0.005861786659806967, 0.014677712693810463, -0.0055256010964512825, -0.016036760061979294, 0.02251727133989334, -0.027123726904392242, 0.02550717629492283, 0.015536058694124222, 0.005182262510061264, -0.007975462824106216, -0.009749377146363258, 0.014470279216766357, -0.006966906599700451, -0.02769595757126808, -0.026937751099467278, -0.0070885056629776955, 0.02317533642053604, -0.015621893107891083, -0.016208428889513016, -0.0008690751274116337, 0.007531984243541956, -0.003737380728125572, -0.019613200798630714, 0.004946217406541109, -0.003537100041285157, -0.009735072031617165, 0.010965367779135704, 0.0024248268455266953, 0.02555009350180626, 0.007782334927469492, -0.01738150231540203, 0.008325953967869282, -0.017596088349819183, -0.0068524605594575405, -0.001874055014923215, 0.00640898197889328, -0.0026143782306462526, -1.3719003618462011e-05, 0.008283036760985851, 0.01343311183154583, -0.023933541029691696, -0.01655176840722561, 0.006401828955858946, -0.011466069146990776, -0.006062067113816738, -0.020242655649781227, -0.0220594871789217, 0.010579111985862255, 0.0016344333998858929, 0.006655756384134293, -0.011966770514845848, -0.01582217402756214, -0.005858209915459156, -0.034906063228845596, -0.008247272111475468, 0.01263198908418417, 0.00513576902449131, 0.0013921295758336782, -0.02912653423845768, 0.005954774096608162, 0.006730861496180296, 0.00020966884039808065, -0.013325817883014679, 0.0253498125821352, -0.010471818968653679, -0.003098985878750682, 0.0014118000399321318, 0.0047638192772865295, -0.025907736271619797, -0.013318665325641632, 0.006598533131182194, -0.018068179488182068, 0.0033672188874334097, 0.014384444802999496, -0.003263502148911357, 0.0015128344530239701, -0.0044884332455694675, -0.010693557560443878, -0.022703245282173157, -5.1942213758593425e-05, 0.025993570685386658, -0.002884399378672242, 0.00018910430662799627, 0.03619357943534851, 0.00876943301409483, -0.0016102924710139632, 0.014026801101863384, -0.0042988816276192665, -0.004399022087454796, 0.0021261940710246563, -0.012503236532211304, 0.0023658156860619783, 0.029927656054496765, -0.01107266079634428, -0.03141545504331589, -9.276393393520266e-05, -0.008368871174752712, 0.0066950973123312, -0.030614333227276802, -0.014305762946605682, 0.011580515652894974, -0.00017949262110050768, 0.03101489506661892, -0.005260944366455078, -0.0075677488930523396, 0.021930735558271408, -0.00666648568585515, 0.011702113784849644, 0.007617818657308817, 0.013354429975152016, -0.006716555915772915, 0.011251483112573624, 0.011101271957159042, 0.025235366076231003, 0.015235637314617634, -0.013876589946448803, 0.0093845808878541, 0.006863189861178398, 0.008554846048355103, -0.01102974358946085, -0.008347412571310997, -0.012503236532211304, 0.03519217669963837, -0.0076392777264118195, 0.0008578987326472998, -0.012560459785163403, -0.019727647304534912, -0.003499547252431512, -0.021100999787449837, -0.00706704705953598, -0.011108425445854664, 0.0015378695679828525, 0.009191452525556087, 0.0003985496296081692, -0.004316763952374458, -0.011265788227319717, 0.007961156778037548, -0.02769595757126808, 0.023776179179549217, 0.021801982074975967, 0.012088369578123093, 0.0013554710894823074, 0.017796369269490242, 0.022460047155618668, -0.009727918542921543, -0.016208428889513016, 0.007388926576822996, 0.02723817341029644, 0.007460455410182476, -0.007882475852966309, -0.01499244011938572, -0.0014448821311816573, 0.0001626162847969681, 0.011702113784849644, -0.011451763100922108, 0.0034119244664907455, -0.011566209606826305, -0.01512119174003601, 0.005990538280457258, -0.010350219905376434, 0.024148128926753998, 0.011952465400099754, -0.016952328383922577, 0.005747340153902769, -0.008333107456564903, 0.0013018244644626975, -0.002630472183227539, 0.0024284033570438623, -0.010006881318986416, -0.012002535164356232, -0.008654986508190632, -0.009892434813082218, 0.022030875086784363, -0.02452007867395878, 0.024806194007396698, 0.030986282974481583, -0.010142786428332329, -0.02605079486966133, 0.017882203683257103, 0.008032686077058315, 0.011208564974367619, -0.009892434813082218, -0.004205894190818071, -0.02563592791557312, -0.00026130370679311454, -0.007106387987732887, -0.003912626300007105, 0.024863416329026222, -0.017925120890140533, -0.014269998297095299, 0.007846711203455925, 0.039998915046453476, 0.014677712693810463, -0.010285844095051289, -0.019155416637659073, -0.005325320176780224, 0.01263198908418417, 0.011895242147147655, 0.0014162705047056079, 0.0032867491245269775, -0.00612286664545536, -0.005443342961370945, -0.009069853462278843, 0.01683788374066353, 0.012360178865492344, 0.004352528601884842, 0.006763049401342869, -0.00905554834753275, 0.01041459571570158, -0.023561591282486916, -0.033132147043943405, 0.012038299813866615, -0.011652044020593166, 0.022617410868406296, 0.028253881260752678, -0.008411788381636143, -0.013468875549733639, 0.012009687721729279, -0.006351758725941181, -0.01351894624531269, 0.0037588393315672874, -0.003013151464983821, -0.017681922763586044, -0.018268460407853127, -0.020471546798944473, 0.008662139996886253, 0.0014234234113246202, -0.016694825142621994, -0.002662660088390112, -0.008397483266890049, 0.005969079677015543, -0.00371234561316669, 0.01041459571570158, -0.01224573329091072, 0.00761066609993577, 0.005883245263248682, 0.003987731412053108, -0.02037140727043152, -0.002340780571103096, 0.027738874778151512, 0.0015128344530239701, -0.005339626222848892, 0.02998488023877144, 0.0005382543313317001, -0.004373987205326557, 0.012238580733537674, -0.005518448073416948, 0.011580515652894974, -0.01979917660355568, 0.019999457523226738, 0.005443342961370945, -0.03135823458433151, 0.004792430438101292, 0.007818099111318588, -0.006795237306505442, -0.009699307382106781, -0.0005369131686165929, -0.01474924199283123, -0.0015128344530239701, -0.023304088041186333, 0.003926931880414486, -0.01894083060324192, 0.0113587761297822, -0.025335505604743958, -0.01329005416482687, 0.0067272852174937725, 0.011079813353717327, 0.0023783331271260977, 0.01226003933697939, 0.02493494562804699, -0.0031937616877257824, -5.359073111321777e-05, 0.010772239416837692, -0.006988365203142166, 0.012138440273702145, 0.020485851913690567, 0.01522133219987154, 0.015164108946919441, 0.01573633961379528, -0.005411155056208372, -0.006823848932981491, -0.014570419676601887, -0.015722034499049187, 0.017939427867531776, 0.008783738128840923, 0.00520729785785079, -0.010214314796030521, -0.011995382606983185, -0.0029434107709676027, -0.013282900676131248, -0.00782525260001421, -0.0013858708553016186, 0.02181628905236721, -0.0014162705047056079, -0.008361718617379665, -0.00196704245172441, -0.011437457986176014, -0.007524831220507622, -0.0030560686718672514, 0.001334906555712223, -0.013669156469404697, 0.006126442924141884, -0.0020850650034844875, -0.006072796415537596, 0.013254289515316486, -0.0006942765903659165, 0.0049748290330171585, 0.002598284278064966, 0.0075033726170659065, -0.0023139570839703083, -0.012331567704677582, -0.02772456966340542, -0.005707999691367149, -0.01466340757906437, -0.010164245031774044, 0.015965230762958527, -0.007170763798058033, 0.018354294821619987, -0.006155054550617933, 0.00018441022257320583, -0.02444854937493801, -0.007732265163213015, 0.008612069301307201, 0.003726651193574071, 0.006909683812409639, -0.004792430438101292, 0.010064104571938515, 0.005983385257422924, 0.01158766821026802, -0.03373298794031143, 0.004917606245726347, -0.018454434350132942, 0.014262845739722252, -0.02493494562804699, 0.008461859077215195, 0.019112499430775642, -0.017567476257681847, 0.015750644728541374, 0.011408845894038677, -0.0055256010964512825, 0.0003981025656685233, 0.010149938985705376, -0.0012902009766548872, -0.02258880063891411, -0.020514464005827904, 0.0025142377708107233, -0.011816560290753841, -0.01117280125617981, -0.016694825142621994, -0.002634048694744706, 0.013683462515473366, -0.007546289823949337, -0.00527882669121027, 0.011966770514845848, 0.01947014406323433, -0.01466340757906437, -0.004681561142206192, 0.020385712385177612, -0.011008284986019135, 0.024248268455266953, 0.002591131255030632, -0.013676309958100319, 0.0057759517803788185, 0.009177147410809994, -0.005572094582021236, -0.02082919143140316, -0.006566345226019621, -0.02987043373286724, 0.0004166553553659469, 0.005418307613581419, 0.01474924199283123, 0.012825116515159607, 0.009792295284569263, 0.0009043924510478973, 0.01975625939667225, 0.011888089589774609, -0.006172936875373125, -0.00666648568585515, -0.008433246985077858, -0.004871112294495106, -0.020285572856664658, -0.01881207898259163, -0.0055005657486617565, -0.011337317526340485, 0.0010800850577652454, 0.0024105210322886705, -0.012231427244842052, -0.010385983623564243, 0.006305265240371227, -0.0021297705825418234, 0.006705826614052057, 0.016408709809184074, 0.005425460636615753, -0.00021101000311318785, 0.006580650806427002, -0.0006960647879168391, -0.003258137498050928, -0.017467336729168892, -0.00761066609993577, 0.006641450338065624, 0.0037516863085329533, 0.011780795641243458, -0.0004311846278142184, -0.027066504582762718, -0.005858209915459156, -0.02263171784579754, 0.012639141641557217, 0.005357508081942797, 0.021587396040558815, -0.011287246830761433, -0.013225678354501724, 0.024148128926753998, 0.010908144526183605, 0.010493277572095394, -0.0013125537661835551, 0.011580515652894974, -0.02592204324901104, -9.170217526843771e-05, -0.0018490198999643326, -0.010350219905376434, 0.00026845658430829644, -0.014455973170697689, 0.024677440524101257, 0.0016728801419958472, 0.018010955303907394, 0.00957055576145649, 0.006605686154216528, 0.0025035084690898657, -0.014055412262678146, 0.0019616778008639812, 0.008039838634431362, -0.011301552876830101, -0.0056650820188224316, 0.006094255018979311, -0.0027306126430630684, -0.004595726262778044, -0.004989135079085827, -0.009620625525712967, -0.008776585571467876, 0.01507827453315258, -0.0025500021874904633, 0.010164245031774044, -0.00779664097353816, 0.005529177375137806, 0.01281796395778656, -0.010493277572095394, 0.020600298419594765, -0.0027180949691683054, -0.011559057049453259, 0.013275748118758202, 0.017653312534093857, -0.003436959581449628, -0.018354294821619987, -0.017109692096710205, 0.009370274841785431, 0.000625430082436651, -0.011780795641243458, -0.0086692925542593, 0.013976730406284332, -0.0010264385491609573, -0.020099597051739693, -0.005707999691367149, -0.015092579647898674, -0.0043632579036056995, -0.002372968476265669, -0.02399076521396637, -8.125226304400712e-05, -0.008640680462121964, 0.0012884128373116255, -0.027123726904392242, -0.0020242654718458652, 0.023017972707748413, 0.015836479142308235, -0.0017506678123027086, 0.0014699171297252178, -0.024534383788704872, -0.014284304343163967, -0.0017256326973438263, -0.007861017249524593, 0.0012910951627418399, -0.010858073830604553, 0.020886413753032684, 0.01452034991234541, -0.006534157320857048, 0.010056951083242893, 0.010428901761770248, -0.006720132194459438, 0.012074064463376999, 0.015192720107734203, 0.006516274996101856, 0.0007693818188272417, 0.026837611570954323, -0.022159626707434654, 0.014312916435301304, -0.00761066609993577, -0.004645796492695808, 0.00022721575805917382, -0.00035138530074618757, -0.008361718617379665, 0.009685001336038113, 0.0032742314506322145, 0.0005565835745073855, 0.010164245031774044, -0.013697768561542034, -0.014541808515787125, 0.012410249561071396, -0.004234505817294121, 0.026351215317845345, 0.01672343723475933, -0.006416134536266327, 0.022030875086784363, 0.013890895992517471, 0.009971116669476032, 0.003401195164769888, 0.01060057058930397, -0.007446149829775095, -0.00433464627712965, -0.005200144834816456, 0.01300393883138895, -0.011058354750275612, 0.002796776592731476, 0.0028450586833059788, -0.008783738128840923, -0.013197066262364388, -0.017767757177352905, 0.008490470238029957, -0.009298746474087238, -0.005854633636772633, 0.01253184862434864, 0.016008149832487106, 0.003090044716373086, 0.0026555072981864214, -0.017281360924243927, -0.004567115101963282, 0.0015557517763227224, -0.005997691303491592, -0.01569342240691185, 0.010142786428332329, -0.002283557550981641, -0.017839286476373672, -0.017739146947860718, 0.011230023577809334, 0.015378694981336594, 0.020271265879273415, -0.020528770983219147, -0.0280965194106102, 0.004728054627776146, 0.011022590100765228, 0.0273240078240633, -0.02190212346613407, -0.015235637314617634, -0.00016630449681542814, 0.007460455410182476, -0.016694825142621994, -0.013783602975308895, 0.008597763255238533, 0.005783104803413153, -0.015764951705932617, -0.0076535833068192005, 0.013654850423336029, 0.005979808978736401, 0.008576304651796818, 0.013068314641714096, -0.005203721113502979, 0.00749622005969286, -0.0099854227155447, -0.004413328133523464, -0.00891249068081379, 0.009735072031617165, 0.010035492479801178, 0.01466340757906437, 0.01902666501700878, 0.012825116515159607, -0.007889628410339355, 0.020385712385177612, -0.006108561065047979, -0.021887818351387978, 0.012023993767797947, -0.012224274687469006, 0.009370274841785431, -0.012868033722043037, 0.022159626707434654, 0.027624428272247314, 0.008354566060006618, 0.0068381549790501595, -0.011272941716015339, 0.00025012734113261104, 0.013583322055637836, 0.00010209620813839138, 0.002761012176051736, 0.016709132120013237, 0.0016943388618528843, -0.003090044716373086, -0.012567613273859024, 0.02078627422451973, -0.016794966533780098, 0.006759473122656345, -0.011773643083870411, 0.0010085563408210874, -0.00961347296833992, -0.035964690148830414, -0.010650640353560448, -0.026637330651283264, 0.007789487950503826, -0.006258771289139986, 0.017281360924243927, -0.00017524560098536313, 0.026408439502120018, 0.005082122515887022, -0.015793561935424805, -0.007510525640100241, 0.016322875395417213, 0.008132826536893845, 0.002929104957729578, -0.02517814375460148, 0.02653719112277031, 0.025693150237202644, -0.008376024663448334, -0.008869573473930359, 0.023404227569699287, -0.022531576454639435, 0.020571688190102577, 0.005282402969896793, -0.01550744753330946, 0.00560785923153162, 0.0015110461972653866, -0.027824709191918373, -0.0070885056629776955, -0.040857259184122086, -0.00891249068081379, 0.00454923277720809, -0.00721010472625494, 0.007667888887226582, -0.005543483421206474, 0.0014654466649517417, -0.0016567861894145608, -0.015578975901007652, 0.007084929384291172, 0.013604780659079552, 0.0500415600836277, 0.028396939858794212, 0.01168780867010355, -0.0062015485018491745, 0.007975462824106216, -0.04223061352968216, 0.009506179951131344, -0.010350219905376434, -0.012882339768111706, -0.01489229965955019, 0.004552809055894613, -0.006169360131025314, 0.022831998765468597, 0.03544967994093895, -0.019627507776021957, 0.011301552876830101, -0.009670696221292019, -0.007717959117144346, -0.008941101841628551, 0.0024319796357303858, 0.010207162238657475, 0.011065507307648659, -0.024305490776896477, 0.002208452206104994, 0.02021404355764389, 0.0022728280164301395, -0.014398750849068165, -0.011966770514845848, -0.016666214913129807, 0.01869763247668743, 0.018182624131441116, -0.0072530219331383705, -0.021058082580566406, -0.005836751312017441, -0.007531984243541956, 0.022445742040872574, 0.014177011325955391, 0.009198606014251709, 0.004066413268446922, -0.009313051588833332, -0.006373217329382896, -0.02328978292644024, 0.005868939217180014, -0.028954865410923958, -0.016051067039370537, 0.009155688807368279, 0.004885417874902487, -0.00046270203893072903, -0.019613200798630714, 0.007274480536580086, -0.005042781587690115, 0.01555036474019289, -0.007092081941664219, -0.0066629089415073395, -0.0008923219866119325, 0.021100999787449837, 0.012295803055167198, -0.01555036474019289, -0.01526424940675497, -0.007374620996415615, 0.002047512447461486, 0.010550499893724918, 0.00615147827193141, 0.029727375134825706, 0.0012454955140128732, 0.014777853153645992, 0.011981076560914516, 0.0057366108521819115, 0.01766761764883995, -0.0019080311758443713, 0.02058599330484867, -0.017109692096710205, -0.010500430129468441, -0.024720357730984688, -0.018783466890454292, -0.023518674075603485, -0.026808999478816986, -0.013869437389075756, -0.027295395731925964, 0.01659468561410904, -0.00742469122633338, 0.0024194621946662664, 0.01935569755733013, 0.0035049119032919407, -0.019370002672076225, 0.0045599620789289474, -0.002092217793688178, -0.0001569163432577625, -0.010836615227162838, -0.0071278465911746025, -0.026766082271933556, 0.003395830513909459, -0.011580515652894974, 0.00353352352976799, 0.016051067039370537, -0.012031146325170994, -0.008676445111632347, 0.007152881473302841, 0.0022156049963086843, 0.006645027082413435, 0.0013080831849947572, 0.02932681515812874, 0.009069853462278843, 0.020886413753032684, -0.005640047136694193, -0.04391869157552719, -0.006559192202985287, -0.0018436552491039038, 0.002905858214944601, 0.029899045825004578, -0.019255558028817177, -0.0027538593858480453, 0.005529177375137806, 0.004266693722456694, -0.007453302387148142, 0.02050015889108181, -0.0008820397197268903, 0.021272670477628708, 0.02091502584517002, 0.00600842060521245, -0.01526424940675497, 0.00520729785785079, 0.028067907318472862, 0.004581420682370663, 0.016194123774766922, -0.02214532159268856, 0.005979808978736401, 0.02379048429429531, -0.000992462271824479, 0.006945447996258736, 0.011637737974524498, -0.004645796492695808, 0.00022252167400438339, 0.008969713933765888, -0.008211508393287659, 8.589046046836302e-05, 0.017438724637031555, 0.007846711203455925, 0.0025500021874904633, 0.0038661325816065073, -0.023304088041186333, 0.02719525620341301, 0.02419104613363743, -0.019627507776021957, -0.010171397589147091, -0.006280229892581701, -0.018626103177666664, 0.0133901946246624, 0.013740685768425465, -0.009169993922114372, -0.003926931880414486, -0.015865091234445572, -0.004581420682370663, 0.00236760382540524, -0.005818868987262249, -0.001059520523995161, -0.016093984246253967, 0.040685590356588364, -0.008283036760985851, -0.009863823652267456, -0.005586400628089905, 0.012395943515002728, -0.0006370535120368004, 0.007174340076744556, 0.016823576763272285, -0.01729566790163517, -0.009370274841785431, 0.005089275073260069, -0.01749594882130623, -0.005200144834816456, -0.0060370322316884995, 0.0005936891539022326, -0.005868939217180014, 0.0038160623516887426, -0.011101271957159042, -0.006759473122656345, -0.012052605859935284, -0.014763547107577324, -0.019541671499609947, -0.005958350375294685, 0.01253184862434864, 0.033217981457710266, 0.023776179179549217, 0.010192856192588806, -0.002755647525191307, -0.002068971050903201, -0.010071257129311562, 0.009198606014251709, 0.004309610929340124, 0.0029666575137525797, -0.003649757709354162, 0.023261170834302902, -0.017982345074415207, -0.008647833950817585, -0.007961156778037548, 0.0025178142823278904, 0.0014001765521243215, 0.011237177066504955, -0.02522106096148491, 0.0035281588789075613, -0.004670831840485334, -0.005768798757344484, -0.0024516500998288393, -0.0106434877961874], "2c71e182-997d-4d7e-834f-b7dc138e7830": [0.00314223300665617, 0.002257043030112982, -0.016155676916241646, -0.01450025662779808, -0.040772389620542526, -0.02311457321047783, 0.014346976764500141, 0.02823411487042904, -0.05573248490691185, 0.0447576604783535, 0.011204743757843971, -0.0026364102959632874, 0.0007572973263449967, -0.022210223600268364, -0.02175038494169712, 0.0454014353454113, -0.02844870649278164, 0.006537377834320068, 0.017427897080779076, -0.03881040960550308, 0.06548107415437698, -0.023175885900855064, -0.030977820977568626, 0.03163692355155945, -0.0063687702640891075, -0.007702303119003773, 0.003215041011571884, 0.0100628100335598, -0.031483642756938934, 0.009465019218623638, 0.02524515986442566, 0.012760532088577747, -0.009227436035871506, -0.0058706109412014484, 0.0021344192791730165, -0.015289646573364735, -0.00623081810772419, 0.01310541108250618, -0.014898783527314663, -0.001531838672235608, -0.04506422206759453, 0.02567434310913086, -4.616352453012951e-05, 0.004759333562105894, -0.03274053707718849, 0.02855600230395794, 0.017519865185022354, -0.001764632179401815, 0.005016076844185591, -0.0064952257089316845, 0.021259889006614685, -0.03059462085366249, 0.009081820026040077, 0.011189415119588375, 0.01358824223279953, -0.014668864198029041, -0.0018891718937084079, 0.05778643488883972, 0.017535192891955376, -0.025107208639383316, 0.022930637001991272, -0.009311739355325699, -0.020386194810271263, 0.007207976188510656, -0.01401742547750473, -0.02452474646270275, 0.00931940320879221, 0.03313906490802765, -0.04644373804330826, -0.0043531423434615135, -0.032219383865594864, 0.028923872858285904, -0.03644990548491478, 0.0011371434666216373, -0.014829807914793491, -0.0011534295044839382, 0.054414279758930206, -0.017995033413171768, 0.007349759805947542, -0.004042751155793667, -0.03611268848180771, -0.002180403331294656, 0.022348174825310707, -0.016584860160946846, 0.08871827274560928, 0.024126218631863594, -0.011426999233663082, -0.03151429817080498, -0.012116757221519947, -0.022424815222620964, -0.029123136773705482, -0.013442626222968102, 0.015006079338490963, 0.00021507052588276565, -0.030763229355216026, 0.027099844068288803, 0.018838070333003998, 0.0103846974670887, 0.029996830970048904, -0.01279118750244379, -0.008591325022280216, 0.04187600314617157, -0.050245072692632675, -0.01706002652645111, 0.026670660823583603, 0.013304674997925758, -0.0032207889016717672, -0.00985588226467371, -0.03424267843365669, 0.021551121026277542, 0.03304709494113922, -0.03648056089878082, 0.021796368062496185, 0.00479382136836648, -0.05573248490691185, -0.06664599478244781, 0.0017464301781728864, -0.03111577220261097, 0.02311457321047783, -0.024064907804131508, 0.030885852873325348, 0.027988865971565247, -0.0006188666447997093, 0.004314822610467672, -0.033200375735759735, 0.002098015509545803, 0.0026057541836053133, -0.005633027758449316, 0.01086752861738205, 0.004874293226748705, -0.0415387898683548, -0.013465618714690208, 0.0033050926867872477, 0.021597104147076607, 0.014270336367189884, 0.0006940694875083864, 0.01971176452934742, 0.048436373472213745, -0.0460452102124691, 0.04828309267759323, -0.02631811797618866, -0.07578146457672119, -0.014538575895130634, 0.0025080384220927954, -0.013067090883851051, -0.0021727392449975014, -0.03451858088374138, 0.07510703802108765, -0.016554202884435654, 0.023513101041316986, -0.04015927016735077, -0.039270248264074326, 0.020708082243800163, 0.007303775753825903, 0.01267622783780098, 0.012852500192821026, -0.034150708466768265, 0.010752568021416664, 0.009311739355325699, 0.009288747794926167, 0.024861961603164673, -0.029782239347696304, 0.0038607316091656685, 0.015496574342250824, 0.04573865234851837, 0.037032365798950195, 0.03237266466021538, 0.031698234379291534, -0.06658468395471573, 0.03727761283516884, 0.014676528051495552, -0.011978805996477604, 0.016048381105065346, 0.012216389179229736, -0.012929139658808708, -0.021229233592748642, 0.040557797998189926, 0.02673197351396084, 0.02697722055017948, -0.04423651099205017, -0.027253124862909317, -0.010775560513138771, -0.0014389128191396594, -0.0025655184872448444, 0.02110661007463932, 0.061434488743543625, 0.025643687695264816, 0.023283181712031364, 0.009572315029799938, -0.002839505672454834, -0.014369968324899673, -2.956321623059921e-06, 0.002877825638279319, 0.019466517493128777, -0.008054845966398716, -0.01738191395998001, -0.0006916744750924408, -0.015695838257670403, -0.008660300634801388, 0.0018546839710325003, -0.011963477358222008, -0.02803485095500946, -0.04163075610995293, 0.04052714258432388, -0.006502889562398195, -0.005123372655361891, 0.007322935853153467, -0.03813597932457924, 0.021121937781572342, -0.05815430358052254, 0.03648056089878082, -0.03332299739122391, -0.002239799126982689, -0.02142849750816822, -0.006131186615675688, -0.009449691511690617, -0.023620396852493286, 0.06308990716934204, -0.005966410972177982, -0.044818975031375885, -0.036082033067941666, 0.025521064177155495, 0.02015627548098564, -0.040557797998189926, -0.03080921247601509, -0.02527581714093685, -0.03304709494113922, 0.00554489204660058, -0.020539475604891777, 0.007717631291598082, 0.040343206375837326, -0.002941053593531251, -0.014837471768260002, -0.012821843847632408, -0.03828926011919975, -0.017826424911618233, 0.000323803280480206, 0.019573813304305077, -0.014078737236559391, 0.009618299081921577, 0.017504537478089333, 0.021796368062496185, 0.025628359988331795, 0.004724845755845308, 0.023160556331276894, 0.033936116844415665, 0.015144030563533306, 0.05165524780750275, 0.01727461814880371, -0.022654734551906586, -0.03252594545483589, -0.016492892056703568, 0.0004804359341505915, -0.01992635615170002, -0.030027486383914948, 0.030931835994124413, 0.02024824358522892, 0.0005594707909040153, 0.0017301442567259073, -0.045769307762384415, -0.0045830621384084225, 0.0073957438580691814, 0.00663700932636857, 0.01455390453338623, 0.011043800041079521, -0.015557886101305485, 0.02366637997329235, -0.025766311213374138, -0.011005479842424393, 0.03626596927642822, -0.02452474646270275, -0.007150496356189251, 0.0003518247394822538, -0.015519565902650356, 0.005058228969573975, -0.003347244579344988, 0.017121339216828346, -0.0007271203794516623, 0.038013357669115067, -0.0065220496617257595, -0.019589141011238098, 0.005495076067745686, -0.009840554557740688, 0.04806850105524063, -0.013442626222968102, -0.03494776412844658, -0.007633327040821314, -0.0009235100005753338, -0.04386863857507706, -0.007230968214571476, -0.001128521515056491, 0.002477382542565465, 0.045340124517679214, 0.023911627009510994, 0.03580613061785698, -0.006889920681715012, -0.0048168133944272995, 0.0054146042093634605, -0.006560369394719601, 0.016799451783299446, -0.05156327784061432, -0.007085352670401335, 0.012438644655048847, -0.013519266620278358, 0.013979105278849602, -0.018393559381365776, 0.03454923629760742, -0.0034315483644604683, -0.04316355288028717, 0.03344562277197838, 0.05306541919708252, 0.007962878793478012, -0.005284316372126341, -0.0032016290351748466, -0.013235699385404587, 0.004705685656517744, 0.03172888979315758, -0.0017933720955625176, -0.014538575895130634, -0.014584559947252274, 0.030180765315890312, 0.017749784514307976, -0.05671347677707672, 0.015634525567293167, 0.024555401876568794, -0.02024824358522892, 0.04558537155389786, -0.011457654647529125, -0.04478831961750984, -0.01663084328174591, -0.03206610679626465, -0.017550520598888397, -0.02559770457446575, -0.0025061224587261677, -0.0011026555439457297, -0.029491007328033447, -0.03134569153189659, -0.03283250331878662, -0.008583661168813705, -0.02844870649278164, -0.016983386129140854, -0.005575547926127911, 0.00948034692555666, 0.006169506348669529, 0.022853998467326164, 0.0012798851821571589, -0.01706002652645111, 0.015090382657945156, -0.037246957421302795, -0.020631441846489906, 0.0009431489161215723, -0.019773077219724655, 0.037890732288360596, -0.01098248828202486, 0.02633344568312168, -0.013036435469985008, 0.017979703843593597, -0.009832890704274178, -0.0027494539972394705, 0.004537078086286783, 0.014546239748597145, -0.005901267286390066, -0.04987720400094986, -0.01597174070775509, -0.008361405692994595, 0.027207139879465103, 0.006127354688942432, -0.016033053398132324, 0.02570500038564205, -0.004828309640288353, -0.04255043342709541, 0.004920277278870344, 0.05404641106724739, -0.021597104147076607, -0.02844870649278164, -0.007970542646944523, 0.04632111266255379, -0.0059510827995836735, -0.02834141068160534, 0.023359820246696472, 0.0068784249015152454, 0.023850316181778908, 0.013565250672399998, -0.03635793551802635, 0.06045350059866905, 0.0417533814907074, 0.001931323786266148, -0.010262073948979378, 0.019987668842077255, 0.001700446242466569, -0.037890732288360596, 0.025643687695264816, -0.024034250527620316, -0.01971176452934742, -0.03936221823096275, 0.010300393216311932, 0.003567584091797471, -0.011771878227591515, 0.02408023551106453, -0.0402512401342392, -0.011220071464776993, 0.00964129064232111, 0.0017282281769439578, 0.019129302352666855, 0.022654734551906586, -0.024248842149972916, -0.014906447380781174, -0.022547438740730286, 0.015167023055255413, 0.013672546483576298, -0.01098248828202486, 0.014377632178366184, -0.010254409164190292, -0.0016592523315921426, 0.0432555228471756, -0.012369669042527676, -0.0031767210457473993, 0.023099245503544807, -0.0488349013030529, -0.03623531386256218, -0.008729277178645134, 0.07565884292125702, -0.018071671947836876, 0.05257492512464523, -0.004015927202999592, 0.012929139658808708, 0.06725911796092987, -0.003973775077611208, -0.03727761283516884, -0.003295512869954109, -0.006203994620591402, 0.010108794085681438, -0.0038568994496017694, -0.005134868901222944, -0.02835673838853836, -0.006265306379646063, 0.0006921534659340978, 0.021075954660773277, -0.003389396471902728, -0.026685990393161774, 0.033200375735759735, 0.016354940831661224, 0.01433931291103363, 0.008951532654464245, -0.04242781177163124, -0.02717648446559906, -0.04478831961750984, 0.012293028645217419, 0.005096548702567816, -0.022762030363082886, -0.018071671947836876, 0.022777358070015907, -0.042673058807849884, -0.013787506148219109, 0.015473581850528717, -0.003232284914702177, -0.00642241770401597, -0.02545975148677826, 0.012507620267570019, -0.02812681905925274, -0.020079635083675385, -0.026256807148456573, 0.004276502411812544, -0.017535192891955376, 0.023574411869049072, -0.018516182899475098, 0.00045313301961869, 0.001780918100848794, 0.01039236132055521, 0.005165524780750275, -0.01768847368657589, 0.00990953017026186, -0.0214131698012352, -0.010047482326626778, 0.0034890284296125174, -0.012446308508515358, -0.0028912376146763563, -0.008192798122763634, -0.00980223435908556, -0.027575012296438217, -0.019865045323967934, -0.03292447328567505, -0.015220670960843563, -0.004563902039080858, -0.006709817331284285, 6.520373426610604e-05, 0.022670062258839607, -0.018102329224348068, 0.015573213808238506, 0.01417836919426918, 0.03166757896542549, -0.015596205368638039, 0.0012885071337223053, 0.01098248828202486, 0.0008205252233892679, -0.018393559381365776, -0.035560883581638336, -0.015741821378469467, -0.026241477578878403, -0.02749837189912796, 0.023804331198334694, -0.0423971563577652, 0.010783224366605282, 0.015366286039352417, -0.01342729851603508, -0.0007208934403024614, -0.007330599706619978, 0.01018543355166912, -0.005885939113795757, -0.025337127968668938, -0.024570729583501816, 0.01972709223628044, -0.015803134068846703, 0.004479598253965378, -0.002423734636977315, 0.007640991359949112, -0.03540760278701782, 0.026057543233036995, 0.01842421479523182, -0.005809299182146788, 0.005368620157241821, 0.005920426920056343, -0.03038002923130989, 0.009150795638561249, -0.006349610164761543, -0.011105111800134182, -0.003119241213425994, -0.011610934510827065, 0.017213305458426476, -0.026701318100094795, 0.005027573090046644, 0.017121339216828346, -0.01103613618761301, -0.007962878793478012, 0.011457654647529125, -0.014891119673848152, -0.012001797556877136, 0.03209676221013069, -0.0047631654888391495, 0.05518068000674248, -0.024754665791988373, 0.010001498274505138, -0.02207227237522602, 0.0065488736145198345, 0.001505972701124847, 0.034917108714580536, -0.013733858242630959, 0.006276802159845829, -0.014722512103617191, 0.013994432985782623, -0.02729910798370838, 0.008208125829696655, -0.009327067993581295, -0.015404606238007545, 0.01114343199878931, -0.05257492512464523, 0.0030617613811045885, -0.02705386094748974, -0.007909230887889862, -0.028111489489674568, -0.007786606904119253, 0.023390477523207664, 0.032342009246349335, 0.01566518098115921, -0.021367184817790985, -0.0101701058447361, -0.035009074956178665, 0.01845487207174301, -0.0032456968910992146, 0.009940186515450478, 0.030456669628620148, 0.009235099889338017, 0.03813597932457924, 0.012484628707170486, -0.0065220496617257595, 0.013626562431454659, -0.019129302352666855, 0.024003595113754272, -0.02003365196287632, -0.009357723407447338, 0.03142233192920685, -0.03412005305290222, -0.0010537976631894708, -0.016370268538594246, 0.01854684017598629, -0.01251528412103653, -0.039699431508779526, -0.024018922820687294, 0.01411705743521452, 0.02398826740682125, 0.0031307372264564037, 0.025398440659046173, 0.007338264025747776, 7.580158126074821e-05, -0.03326168656349182, 0.024708682671189308, 0.005483579821884632, 0.009940186515450478, 0.004345478489995003, -0.011549622751772404, 0.009947850368916988, 0.012538276612758636, 0.012967459857463837, -0.0208766907453537, -0.013680210337042809, 0.02089201845228672, -0.022332847118377686, 0.0009465019102208316, 0.015895100310444832, 0.010645272210240364, -0.007955214940011501, 0.02003365196287632, 0.015121039003133774, -0.022654734551906586, 0.04144681990146637, 0.030456669628620148, -0.0021190913394093513, 0.04751669615507126, 0.001300961128436029, -0.017305273562669754, 0.020646771416068077, -0.0041921986266970634, 0.06296728551387787, -0.014952431432902813, 0.03068658895790577, 0.021290544420480728, 0.005981738679111004, -0.0206620991230011, -0.02599623054265976, -0.005211508367210627, 0.032985784113407135, 0.0003070383390877396, 0.011495974846184254, -0.045462749898433685, 0.026701318100094795, -0.01813298463821411, 0.005793971475213766, 0.02835673838853836, -0.022087600082159042, 0.0011735474690794945, -0.0748617872595787, 0.01650821976363659, -0.01411705743521452, 0.03353758901357651, -0.003044517245143652, 0.012277700938284397, -0.021873008459806442, 0.013289347290992737, 0.04255043342709541, 0.017949048429727554, -0.030977820977568626, 0.008936204016208649, 0.014975422993302345, 0.03461054712533951, 0.003000449389219284, -0.04420585557818413, -0.01673813909292221, 0.0070125446654856205, 0.012369669042527676, 0.03231135383248329, 0.01802568882703781, -0.013565250672399998, -0.007840254344046116, 0.024999912828207016, 0.005970242898911238, 0.031054459512233734, -0.006330450065433979, 0.008798252791166306, 0.003080921247601509, 0.008261773735284805, 0.012768195942044258, -0.016446907073259354, 0.020646771416068077, 0.034058742225170135, -0.005625363439321518, -0.02121390588581562, 0.005885939113795757, -0.014193696901202202, -0.0008583661401644349, -0.017841752618551254, 0.0006734725320711732, -0.01831691898405552, -0.017933720722794533, 0.007453223690390587, 0.015243662521243095, -0.007047032471746206, -0.01874610222876072, 0.01853151060640812, -0.031820859760046005, 0.005912763066589832, 0.0015931505477055907, -0.010361704975366592, -0.0062882984057068825, 0.0008018442313186824, 0.010744904167950153, 0.026134181767702103, -0.00254635838791728, -0.010737240314483643, 0.023712363094091415, -0.02420285902917385, -0.05729593709111214, -0.010898184031248093, 0.003985271323472261, -0.027758946642279625, 0.005203844513744116, 0.04147747531533241, -0.02676262892782688, -0.022210223600268364, 0.007690807338804007, -0.02268538996577263, 0.022302191704511642, 0.012722211889922619, -0.0038224116433411837, 0.015235998667776585, 0.012139749713242054, 0.016554202884435654, -0.018301591277122498, 0.023850316181778908, -2.9009373974986374e-05, 0.012806516140699387, 0.0005158818676136434, 0.04328617826104164, 0.0023068590089678764, -0.032219383865594864, -0.023206541314721107, 0.007840254344046116, 0.031483642756938934, -0.024156875908374786, -0.015067391097545624, -0.006702153477817774, 0.025505736470222473, -0.0006897585117258132, -0.014983086846768856, 0.0023221869487315416, -0.011296710930764675, -0.014469600282609463, 0.0009402749128639698, 0.029996830970048904, 0.02962895855307579, -0.03675646334886551, 0.003920127172023058, -0.011358022689819336, 0.030977820977568626, 0.016171004623174667, 0.01779576949775219, 0.004648205824196339, 0.03464120253920555, 0.011764214374125004, 0.015519565902650356, 0.016600187867879868, 0.04350076988339424, -0.024463433772325516, 0.029015840962529182, 0.032433975487947464, -0.013549922034144402, 0.004514086060225964, 0.008139150217175484, -0.010469000786542892, -0.00975625030696392, 0.018914710730314255, -0.003038769355043769, -0.0032207889016717672, 0.013388978317379951, -0.006115858443081379, 0.022317519411444664, -0.012660900130867958, -0.02472401037812233, 0.03663383796811104, 0.03145298734307289, 0.00990953017026186, 0.01586444489657879, 0.03850385174155235, 0.037032365798950195, 0.014699519611895084, -0.03133036196231842, -0.00533030042424798, 0.024555401876568794, 0.01428566500544548, -0.039699431508779526, -0.001283717225305736, -0.007621831260621548, -0.03261791169643402, 0.0048436373472213745, -0.018270935863256454, 0.008077838458120823, -0.009511003270745277, 0.02801952324807644, -0.004970093257725239, -0.02015627548098564, -0.0076563190668821335, 0.0005599497817456722, 0.028709281235933304, -0.0037093679420650005, -0.009143131785094738, 0.004372302442789078, -0.016768794506788254, 0.0015605785883963108, -0.05668282136321068, -0.02686992473900318, -0.008054845966398716, -0.0031863010954111814, -0.0415387898683548, 0.00954165868461132, 0.03142233192920685, 0.006847769021987915, -0.017121339216828346, -0.005767147522419691, 0.020800050348043442, 0.020309556275606155, 0.013894801959395409, 0.0021899831481277943, -0.0022589589934796095, -0.030073469504714012, 0.034579891711473465, -0.0011917493538931012, -0.007621831260621548, -0.009449691511690617, 0.0016879922477528453, -0.02673197351396084, 0.009848218411207199, 0.003734275698661804, 0.03430398926138878, 0.01938987709581852, 0.004667365923523903, -0.03648056089878082, -0.021704399958252907, 0.02737574838101864, -0.016477564349770546, 0.023712363094091415, 0.031790200620889664, 0.010085801593959332, -0.004728677682578564, -0.01672281138598919, 0.043316833674907684, 0.01683010719716549, 0.020600786432623863, -0.012975123710930347, -0.011679910123348236, -0.01251528412103653, 0.03353758901357651, 0.009365387260913849, -0.03418136388063431, -0.028295425698161125, -0.000631320639513433, -0.013657217845320702, -0.01747388206422329, 0.035867441445589066, 0.010154778137803078, 0.03666449710726738, 0.008277101442217827, -0.0020117955282330513, -0.018102329224348068, 0.002548274351283908, -0.012362005189061165, -0.03396677225828171, 0.03005814179778099, -0.012362005189061165, 0.03283250331878662, -0.029383711516857147, 0.027743618935346603, 0.005820795428007841, -0.008951532654464245, -0.007901567034423351, -0.025812296196818352, 0.01917528547346592, -0.0034066406078636646, -0.0029161456041038036, -0.01586444489657879, 0.006384097971022129, -0.022930637001991272, -0.014300992712378502, 0.009671946987509727, -0.007798102684319019, 0.02516852132976055, -0.005380116403102875, -0.014638207852840424, -0.008438045158982277, -0.004678861703723669, -0.02662467770278454, -0.03142233192920685, 0.012086101807653904, 0.008637309074401855, -0.01992635615170002, -0.01000916212797165, -0.04478831961750984, -0.012499956414103508, 0.003985271323472261, -0.016155676916241646, 0.007621831260621548, 0.0061120265163481236, -0.001375684980303049, 0.016048381105065346, -0.02568967081606388, -0.029429694637656212, -0.014354640617966652, -0.015358622185885906, -0.006345778238028288, -0.01391012966632843, 0.005475915968418121, -0.017029371112585068, 0.0010834956774488091, -0.011434663087129593, -0.019543157890439034, 0.010698920115828514, 0.028050178661942482, -0.03396677225828171, -0.004184534773230553, 0.01877675950527191, 0.00346412044018507, 0.005058228969573975, 0.007200312335044146, 0.01865413598716259, -0.0004452295252121985, -0.01618633233010769, 0.02984355017542839, 0.03454923629760742, 0.03070191666483879, -0.021551121026277542, -0.006280634086579084, -0.01928258128464222, 0.011580278165638447, 0.006541209761053324, 0.019665781408548355, 0.0009350059553980827, 0.004548573866486549, -0.010959495790302753, -0.0015902764862403274, 0.004142383113503456, 0.014032753184437752, 0.022823341190814972, 0.009143131785094738, 0.018485527485609055, 0.018408887088298798, -0.020815378054976463, 0.06253810226917267, 0.0034871124662458897, 0.011756550520658493, -0.006223154254257679, -0.054628871381282806, -0.005579379852861166, -0.006728977430611849, -0.009058828465640545, 0.02535245567560196, -0.012668563984334469, 0.003981439396739006, -0.025291144847869873, -0.003400892484933138, 0.035744816064834595, 0.0035809960681945086, 0.015895100310444832, 0.003109661163762212, 0.02759034000337124, 0.015213006176054478, -0.01877675950527191, 0.015213006176054478, 0.037246957421302795, -0.004820645321160555, 0.007380415685474873, 0.03740023821592331, 0.011426999233663082, 0.030839867889881134, -0.001425500842742622, -0.013388978317379951, 0.006771129090338945, -0.03464120253920555, -0.027115171775221825, -0.030747899785637856, 0.0021018474362790585, -0.009656619280576706, -0.01994168385863304, -0.008974524214863777, -0.0460452102124691, -0.012170405127108097, -0.009848218411207199, -0.01103613618761301, 0.0027839418035000563, -0.009794570505619049, -0.0055410596542060375, -0.008254109881818295, -0.0049241092056035995, 0.020309556275606155, -0.01609436422586441, -0.014538575895130634, -0.005177020560950041, -0.014768495224416256, -0.007372751832008362, -0.0027015539817512035, -0.007955214940011501, -0.013986769132316113, -0.004908781033009291, -0.00682094506919384, -0.02153579331934452, 0.014791487716138363, -0.01348861027508974, 0.00266515021212399, -0.005119540728628635, -0.016354940831661224, -0.012285364791750908, 0.02003365196287632, -0.03605137765407562, -0.02132120169699192, -0.015006079338490963, -0.0509808175265789, 0.03792138770222664, 0.02697722055017948, 0.012691556476056576, 0.01363422628492117, -0.004448942374438047, 0.006303626112639904, 0.021029969677329063, -0.02398826740682125, -0.015726493671536446, -0.002691974164918065, -0.004318654537200928, 0.018608151003718376, 0.040864359587430954, -0.0005336048197932541, -0.04472700506448746, -0.026578694581985474, 0.011863846331834793, 0.0016056044260039926, -0.021075954660773277, -0.013756849803030491, 0.020938001573085785, -0.004517917986959219, -0.0044336142018437386, 0.00037793017691001296, -0.0009972758125513792, 0.014599887654185295, 0.009633626788854599, -0.029659615829586983, -0.0038051677402108908, 0.0016937402542680502, 0.0018154060235247016, -0.008537677116692066, -0.030993148684501648, -0.01831691898405552, -0.09196779876947403, -0.014868127182126045, -0.005042900796979666, 0.01401742547750473, 0.004391462542116642, -0.0036442240234464407, 0.0024620546028017998, -0.01427800115197897, -0.005399276036769152, 0.017121339216828346, -0.022562766447663307, -0.008905548602342606, -0.003962279297411442, 0.024708682671189308, -0.02621082216501236, 0.0006715565104968846, -0.004498758353292942, -0.004242014605551958, 0.004460438154637814, -6.502410542452708e-05, -0.0016171004390344024, 0.010744904167950153, 0.03274053707718849, 0.008438045158982277, 0.016477564349770546, 0.025444423779845238, -0.03079388476908207, 0.008568333461880684, -0.004866629373282194, -0.028739936649799347, 0.012055445462465286, 0.016968058422207832, -0.021152593195438385, -0.002753285923972726, -0.008821244351565838, -0.006556537467986345, 0.005832291208207607, -0.008338414132595062, 0.0035196843091398478, 0.02398826740682125, 0.00679028918966651, 0.004360806662589312, 0.005322636105120182, -0.0031863010954111814, 0.00010202677367487922, -0.011411670595407486, -0.029322398826479912, -0.008997516706585884, -0.007480047643184662, 0.021443825215101242, 0.0200183242559433, -0.01650821976363659, -0.0032284529879689217, -0.019221270456910133, 0.013833489269018173, -0.0048972852528095245, -0.005786307156085968, -0.014523248188197613, 0.009058828465640545, -0.012132085859775543, 0.054628871381282806, -0.009633626788854599, -0.014722512103617191, 0.011748886667191982, -0.019466517493128777, 0.025827623903751373, 0.01983438804745674, 0.02078472264111042, 0.02322186902165413, -0.004069575108587742, 0.0002021375548793003, 0.005759483203291893, 0.019681109115481377, 0.026057543233036995, 0.0035905761178582907, 0.014362304471433163, 0.023727692663669586, 0.004368470516055822, 0.011220071464776993, 0.0011773793958127499, -0.014960095286369324, 0.002496542641893029, 0.012745204381644726, -0.021167920902371407, -0.04114026203751564, -0.021551121026277542, -0.0013268270995467901, -0.0013852649135515094, -0.022608749568462372, 0.0016908663092181087, 0.030732572078704834, 0.02343646064400673, 0.017627160996198654, 0.02685459703207016, -0.01007813774049282, 0.03451858088374138, 0.005318804178386927, 0.0200183242559433, -0.024478761479258537, -0.002013711491599679, -0.016477564349770546, 0.012362005189061165, 0.002849085722118616, -0.018086999654769897, -0.0048972852528095245, -0.0011390595464035869, 0.0026153342332690954, 0.0029448855202645063, -0.029138464480638504, -0.008208125829696655, -0.00047995694330893457, -0.02164308913052082, -0.025766311213374138, -0.003692123806104064, -0.035530224442481995, -0.0021075953263789415, -0.008231118321418762, -0.020064307376742363, -0.019359221681952477, -0.013779841363430023, -0.02099931426346302, 0.021183250471949577, -0.0014044248964637518, -0.038749098777770996, -0.020416852086782455, 0.0009168040123768151, -0.021811695769429207, -0.005042900796979666, -0.02004897966980934, 0.012607252225279808, -0.03258725628256798, -0.012063109315931797, -0.009120140224695206, 0.0042535108514130116, -0.0069052488543093204, 0.008828908205032349, 0.02280801348388195, -0.0207693949341774, 0.016707483679056168, -0.05211508646607399, 0.014653535559773445, 0.0207693949341774, 0.004602221772074699, 0.0017445142148062587, -0.02069275453686714, -0.008629645220935345, 0.004621381871402264, -0.01315905898809433, 0.008008862845599651, -0.035009074956178665, -0.007617999333888292, -0.018822742626070976, 0.022010959684848785, -0.033077750355005264, -0.006345778238028288, -0.04199862852692604, 0.0032610248308628798, -0.0008957280078902841, 0.001348861027508974, -0.008131486363708973, -0.029766911640763283, 0.00915845949202776, 0.02332916483283043, -0.0011773793958127499, 0.019435862079262733, 0.0042994944378733635, -0.013940785080194473, -0.006399426143616438, -0.011856181547045708, -0.008346077986061573, -0.008644972927868366, 0.007464719470590353, 0.012362005189061165, 0.002201479161158204, 0.01023141760379076, -0.016109691932797432, -0.005801635328680277, 0.014814479276537895, 0.01427800115197897, 0.03868778795003891, 0.008545340970158577, -0.0020002995152026415, -0.0008986020111478865, 0.0015893185045570135, 0.008430381305515766, 0.008047182112932205, 0.010622280649840832, 0.008598988875746727, -0.0107065849006176, 0.014163040556013584, -0.0022647071164101362, 0.027620995417237282, -0.015557886101305485, -0.017029371112585068, 0.0105992890894413, 0.0038664794992655516, 0.020002996549010277, -0.028525345027446747, -0.013511602766811848, 0.0040389192290604115, -0.018485527485609055, 0.0014494508504867554, 0.01620166003704071, -0.013657217845320702, -0.0020846035331487656, -0.014814479276537895, -0.014461936429142952, 0.03632728010416031, 0.0208766907453537, -0.018056344240903854, -0.00508505292236805, 0.004514086060225964, 0.0035733322147279978, 0.0015557885635644197, 0.002703470177948475, -0.010645272210240364, -0.006000898778438568, -0.006824776995927095, 0.013503937982022762, -0.03016543760895729, 0.016584860160946846, -0.014845135621726513, 0.008484029211103916, -0.02941436693072319, 0.01779576949775219, 0.015580877661705017, -0.0003087148361373693, -0.04380732774734497, -0.02332916483283043, 0.011273719370365143, -0.011603270657360554, 0.01673813909292221, -0.0027302938979119062, -0.012630244717001915, 0.02184235118329525, 0.004567733965814114, 0.01738191395998001, -0.025229832157492638, 0.021045297384262085, -0.00035421972279436886, -0.029552320018410683, -0.007694639265537262, -0.00484746927395463, 0.01824028044939041, -0.0038990513421595097, 0.014753167517483234, -0.027651650831103325, -0.02854067273437977, 0.01983438804745674, -0.011327367275953293, 0.0025693504139781, -0.015565549954771996, 0.0008938120445236564, 0.006433913949877024, 0.02420285902917385, 0.014653535559773445, 0.0057441554963588715, -0.008461037650704384, 0.017504537478089333, 0.0019562316592782736, 0.012860164046287537, 0.02089201845228672, 0.0036557200364768505, -0.021888336166739464, 0.004598389845341444, -0.025750983506441116, -0.019313238561153412, -0.0029793735593557358, 0.00975625030696392, -0.02153579331934452, -0.017673145979642868, -0.00509271677583456, -0.03070191666483879, 0.019481845200061798, -0.007617999333888292, 0.010645272210240364, 0.009518667124211788, -0.04365404695272446, -0.010859863832592964, -0.0016056044260039926, 0.01011645793914795, -0.015910429880023003, -0.026578694581985474, -0.0099555142223835, 0.005108044948428869, -0.01342729851603508, -0.015373949892818928, 0.01300577912479639, 0.015182350762188435, 0.025521064177155495, 0.011204743757843971, 0.015075054951012135, 0.006403258070349693, 0.002628746209666133, 0.025858279317617416, -0.007706135045737028, -0.009518667124211788, -0.0005158818676136434, 0.011580278165638447, 0.013411970809102058, 0.016477564349770546, -0.005629195831716061, -0.027253124862909317, -0.007939886301755905, 0.0077367909252643585, -0.00028835737612098455, 0.023743020370602608, 0.011227735318243504, -0.0023547587916254997, 0.001932281767949462, -0.005123372655361891, 0.004916445352137089, -0.006912912707775831, -0.01874610222876072, -0.019113974645733833, -0.0033280847128480673, 0.0056905075907707214, 0.001230069319717586, -0.011495974846184254, -0.02601155824959278, 0.02716115675866604, -0.004372302442789078, 0.015910429880023003, -0.0037649318110197783, -0.009457355365157127, 0.006541209761053324, 0.010798552073538303, -0.015412270091474056, 0.012300693430006504, -0.01994168385863304, -0.028280097991228104, 0.010484329424798489, -0.008575997315347195, -0.006104362662881613, 0.003939287271350622, -0.005012244917452335, 0.0027341260574758053, -0.015803134068846703, 0.005272820591926575, -0.009296411648392677, 0.012438644655048847, 0.008790588937699795, 0.0013919709017500281, -0.0008760890923440456, 0.0006389846093952656, 0.01992635615170002, 0.011886837892234325, 0.008139150217175484, 0.007893902249634266, -0.008001198060810566, -0.008545340970158577, -0.005970242898911238, -0.01017776969820261, 0.02578163892030716, -0.01327401865273714, 0.029536990448832512, -0.004035087302327156, 0.029567647725343704, -0.03134569153189659, -0.023160556331276894, -0.013404306955635548, -0.021152593195438385, -0.00251570250838995, 0.008307757787406445, 0.0059587471187114716, 0.02184235118329525, 0.008698620833456516, 0.004360806662589312, 0.0004646289744414389, -0.025613032281398773, 0.020278898999094963, -0.0028624976985156536, 0.007644823286682367, 0.0007213724311441183, -0.009357723407447338, -0.011572614312171936, 0.010269737802445889, 0.002071191556751728, 0.00991719402372837, -0.007487711496651173, -0.015205342322587967, 0.0008171722292900085, -0.03592875227332115, 0.002157411305233836, -0.007085352670401335, 0.009173788130283356, -0.01716732233762741, 0.012561268173158169, -0.001375684980303049, 0.0015452506486326456, 0.002812681719660759, -0.0037534357979893684, 0.022853998467326164, 0.001414004946127534, 0.01831691898405552, 0.002594258403405547, -0.029690271243453026, 0.040649767965078354, -0.020754067227244377, 0.01331233885139227, 0.007924558594822884, -0.01663084328174591, 0.0037055357825011015, 0.018255608156323433, -0.01715199463069439, -0.0057978034019470215, -0.0019504837691783905, 0.010629944503307343, 0.008790588937699795, -0.004939437378197908, -0.022424815222620964, -0.010039817541837692, 0.013358322903513908, -0.0011515134247019887, 0.0005096548702567816, 0.020110292360186577, 0.0107065849006176, -0.007491543423384428, -0.001776128076016903, -0.003954615443944931, 0.021796368062496185, 0.006173338275402784, -0.015849117189645767, -0.02343646064400673, -0.03261791169643402, 0.009350059553980827, -0.012614916078746319, -0.017657816410064697, -5.478550519910641e-05, 0.010108794085681438, -0.007702303119003773, 0.013404306955635548, 0.003006197512149811, 0.023896299302577972, 0.04932539537549019, -0.011787205934524536, 0.017106009647250175, -0.007863246835768223, 0.00931940320879221, -0.009610635228455067, -0.023712363094091415, -0.02003365196287632, 0.008836572989821434, -0.012469301000237465, -0.008790588937699795, -0.019205942749977112, 0.0014283749042078853, -0.006824776995927095, 0.017289945855736732, 0.02535245567560196, 0.01715199463069439, -0.002310690935701132, 0.032863158732652664, -0.00013376046263147146, 0.005617699585855007, 0.018945366144180298, -0.003502440406009555, 0.01374152209609747, -0.010491993278265, 0.030456669628620148, -0.00970260240137577, 0.010154778137803078, 0.0004684609593823552, 0.012247045524418354, 0.008261773735284805, 0.0065488736145198345, 0.0032399490009993315, -0.03123839572072029, -0.013787506148219109, -0.023421132937073708, -0.014868127182126045, 0.011051463894546032, -0.017979703843593597, 0.0010423017665743828, 0.011756550520658493, 0.0019246177980676293, 0.005564051680266857, 0.003989103250205517, -0.007345927879214287, -0.0036078200209885836, 0.009526330977678299, -0.01938987709581852, -0.015067391097545624, 0.00689758500084281, 0.016784124076366425, 0.017320601269602776, -0.0014322068309411407, 0.0027666979003697634, -0.014837471768260002, 0.01455390453338623, 0.002751369960606098, 0.019236598163843155, -0.007537527475506067, 0.0006049756775610149, -0.00942669901996851, -0.023896299302577972, -0.00018333684420213103, -0.01002448983490467, 0.03332299739122391, -0.011319703422486782, 0.0016017724992707372, -0.014730175957083702, -0.023068590089678764, 0.0019658117089420557, 0.014538575895130634, -0.007893902249634266, 0.010798552073538303, 0.016554202884435654, 0.004376134369522333, 0.001133311539888382, 0.006671497598290443, 0.012162741273641586, -0.0036997878924012184, 0.011725894175469875, -0.02247079834342003, -0.00033553875982761383, 0.012959796003997326, -0.015565549954771996, -0.007621831260621548, -0.006541209761053324, -0.015787804499268532, -0.02270071767270565, 0.001840314012952149, -0.018577495589852333, 0.0007855582516640425, 0.011549622751772404, -0.006242314353585243, 0.010323385708034039, -0.006556537467986345, 0.009035835973918438, -0.00024812144692987204, 0.005767147522419691, -0.016768794506788254, 0.0024141548201441765, 0.01076789665967226, -0.0004720534780062735, 0.001688950345851481, -0.0076103354804217815, -0.003730443771928549, -0.01343496236950159, 0.012438644655048847, 0.0107065849006176, -0.005882107187062502, -0.009710266254842281, -0.022562766447663307, 0.09546257555484772, -0.0013143731048330665, 0.021075954660773277, 0.011296710930764675, 0.004410622175782919, -0.015833789482712746, -0.001776128076016903, 0.0033338326029479504, 0.02558237500488758, 0.004621381871402264, -0.002465886529535055, 0.003561836201697588, 0.00679028918966651, 0.0103846974670887, -0.011787205934524536, -0.009127804078161716, 0.028080834075808525, 0.01758117787539959, 0.010898184031248093, 0.017504537478089333, 0.002352842828258872, -0.009051164612174034, -0.001505972701124847, 0.011258391663432121, 0.0035388441756367683, 0.014048080891370773, -0.016768794506788254, -0.009625962935388088, 0.01715199463069439, 0.023037932813167572, 0.0029985334258526564, -0.01661551557481289, 0.0030426012817770243, -0.00011298387835267931, 0.006135018542408943, 0.020646771416068077, -0.0027647819370031357, 0.02864796854555607, -0.005774811375886202, 0.0052536604925990105, 0.0017014042241498828, 0.0009785948786884546, 0.029797567054629326, 0.01661551557481289, -0.024892617017030716, 0.004502590280026197, 0.0060315546579658985, 0.0009455439285375178, -0.00554489204660058, -0.0059319231659173965, 0.0008459121454507113, -0.03353758901357651, 0.012637908570468426, 0.01299811527132988, 0.01919061318039894, -0.008782925084233284, 0.007480047643184662, -0.013067090883851051, -0.0029602134600281715, 0.0020271234679967165, -0.020202260464429855, 0.0015193846775218844, 0.0030023653525859118, -0.01562686264514923, -0.002875909674912691, -0.002724546007812023, 0.0027571178507059813, 0.0011697154259309173, -0.0053877802565693855, -0.015281982719898224, -0.011128103360533714, -0.005108044948428869, 0.012530612759292126, -0.009633626788854599, -0.0035120202228426933, 0.026992548257112503, -0.0005005539278499782, 0.022317519411444664, 0.004276502411812544, -0.0006485646008513868, 0.006491393782198429, 0.005502739921212196, -0.011151095852255821, -0.01885339803993702, -0.00639176182448864, 0.0013249111361801624, 0.016646170988678932, -0.017933720722794533, 0.004721013829112053, -0.032250043004751205, -0.007353591732680798, -0.01065293699502945, 0.025413768365979195, 0.017427897080779076, -0.006610185373574495, 0.008246446028351784, 0.0022953629959374666, -0.00937305111438036, 0.012752868235111237, -0.009679610840976238, -0.00529964454472065, 0.008139150217175484, -0.009227436035871506, 0.009411371313035488, 0.007342095952481031, -0.003119241213425994, 0.008698620833456516, 0.001732060220092535, -0.015695838257670403, -0.010108794085681438, -0.0059319231659173965, -0.005648355465382338, -0.003684459952637553, 0.011465318500995636, -0.021888336166739464, -0.003038769355043769, -0.0017895400524139404, -0.005100380629301071, -0.012522948905825615, -0.004973925184458494, -0.0010288897901773453, -0.004356974270194769, -0.014530912041664124, -0.00463287765160203, 0.0001608238962944597, 0.010898184031248093, -0.011741221882402897, -0.0060583786107599735, 0.0035637521650642157, -0.0007726253243163228, 0.022516783326864243, 0.019650453701615334, 0.005556387826800346, -0.010537977330386639, 0.03390546143054962, 0.008759932592511177, -0.016492892056703568, -0.0033644887153059244, 0.012699220329523087, -0.028218785300850868, 0.016492892056703568, 0.001910247839987278, 0.019466517493128777, 0.01663084328174591, 0.004314822610467672, 0.007319103926420212, 0.014937102794647217, -0.039914023131132126, 0.005249828565865755, -0.019236598163843155, 0.027850914746522903, -0.030563965439796448, -0.004333982709795237, -0.007330599706619978, 0.0010269737103953958, 0.007863246835768223, -0.020079635083675385, 0.03706302121281624, -0.02708451636135578, 0.009932522661983967, 0.004295662511140108, -0.003215041011571884, -0.015266654081642628, 0.015565549954771996, -0.021765712648630142, 0.021704399958252907, -0.002314522862434387, 0.030977820977568626, 0.012653236277401447, 0.019420532509684563, -0.007652487140148878, 0.006039218977093697, 0.017841752618551254, -0.017857080325484276, -0.008484029211103916, -0.006223154254257679, 0.009549323469400406, 0.014921775087714195, -0.01736658625304699, 0.02633344568312168, -0.005521900020539761, 0.00243906257674098, 0.016983386129140854, 0.003211208852007985, 0.005786307156085968, -0.019865045323967934, 0.01002448983490467, -0.0036174000706523657, -0.010315720923244953, 0.005341796204447746, 0.006675329525023699, 0.003389396471902728, 0.005916594993323088, -0.011457654647529125, -0.011472983285784721, -0.01086752861738205, 0.03027273342013359, 0.01618633233010769, 0.019650453701615334, -0.0075835115276277065, -0.015151694416999817, -0.004418286494910717, 0.017841752618551254, 0.013450290076434612, -0.010675928555428982, -0.02280801348388195, -0.01866946369409561, -0.01103613618761301, -0.002990869339555502, -0.009020508266985416, -0.020861363038420677, -0.02867862582206726, -0.006598689593374729, 0.02599623054265976, -0.015289646573364735, 0.001828817999921739, -0.003437296487390995, -0.004452774301171303, 0.008231118321418762, 0.00676729716360569, 0.0069588967598974705, 0.0068784249015152454, 0.008652636781334877, -0.002239799126982689, -0.003958447370678186, -0.0018048679921776056, 0.0019284497248008847, 0.0103846974670887, 0.006096698809415102, 0.0021497472189366817, -0.0009378799586556852, -0.005510403774678707, -0.031483642756938934, 0.02993551827967167, -0.0046635339967906475, 0.035223666578531265, 0.019742419943213463, 0.001327785081230104, 0.03258725628256798, 0.009579978883266449, -0.007886238396167755, -0.011250726878643036, -0.007027872372418642, 0.0005010329186916351, -3.39191137754824e-05, -0.02846403419971466, 0.0042803348042070866, 0.006502889562398195, -0.0029793735593557358, -2.815615698636975e-05, -0.00011172650556545705, -0.012147413566708565, -0.00020441280503291637, -0.007020208518952131, 0.026088198646903038, -0.009311739355325699, -0.030717244371771812, 0.012982787564396858, -0.003395144594833255, -0.024969257414340973, 0.003810915630310774, 0.0007443643407896161, -0.008070174604654312, -0.010147113353013992, -0.002741789910942316, 0.01863880641758442, -0.026026887819170952, -0.007411071565002203, 0.006345778238028288, 0.008591325022280216, 0.029138464480638504, 6.0174243117216974e-06, -0.004510254133492708, 0.01842421479523182, -0.006617849692702293, -0.007100680377334356, -0.015343294478952885, -0.01363422628492117, 0.00251570250838995, -0.004100230988115072, 0.002168907318264246, -0.0028950695414096117, 0.007755951024591923, -0.011779542081058025, -0.0023011108860373497, -0.007234800141304731, 0.006598689593374729, 0.02121390588581562, -0.0011036135256290436, 0.02014094777405262, 0.0004928898997604847, -0.023743020370602608, 0.009020508266985416, -0.013136067427694798, 7.933420420158654e-05, 0.022210223600268364, -0.012032453902065754, -0.007640991359949112, 0.009028172120451927, 0.0004241535789333284, -0.004958597011864185, 0.0029985334258526564, 0.004935604985803366, -0.01562686264514923, 0.008185134269297123, -0.005380116403102875, 0.015366286039352417, -0.0012722212122753263, -0.016155676916241646, 0.0012434812961146235, 0.014377632178366184, 0.007893902249634266, 0.0017531361663714051, -0.024540074169635773, -0.011350358836352825, -0.007315271999686956, 0.014032753184437752, 0.014546239748597145, -0.01428566500544548, 0.0057709794491529465, 0.0008751310524530709, 0.020800050348043442, 0.01597174070775509, -0.004747837781906128, 0.01853151060640812, -0.0024524745531380177, 0.005403107963502407, 0.0073957438580691814, -0.0025233663618564606, -0.038197293877601624, 0.014140048995614052, 0.0037591836880892515, -0.02196497656404972, 0.0023126068990677595, -0.027099844068288803, 0.007131336256861687, 0.0006145556690171361, -0.010055146180093288, -0.006069874856621027, 0.003226537024602294, -0.006449241656810045, -0.013894801959395409, 0.0033855645451694727, -0.017320601269602776, 0.009978505782783031, 0.009334731847047806, 0.0017694220878183842, -0.042366500943899155, 0.0003887076454702765, 0.001100739580579102, -0.010967159643769264, -0.005050565116107464, 0.01566518098115921, 0.03289381414651871, -0.0100628100335598, -0.0010614616330713034, 0.018286263570189476, 0.022409487515687943, -0.011725894175469875, -0.00958764273673296, 0.000369787187082693, 0.04126288369297981, 0.000912013987544924, -0.0012453972594812512, 0.01888405531644821, -0.004881957080215216, 0.013342995196580887, 0.007161992136389017, -0.05383181944489479, 0.021290544420480728, -0.009725594893097878, -0.02004897966980934, -0.0047631654888391495, -0.0053877802565693855, -0.0008554921369068325, 0.002866329625248909, -0.010354041121900082, 0.004196031019091606, -0.016646170988678932, -0.010300393216311932, 0.022440142929553986, 0.014132385142147541, -0.003444960340857506, -0.008943868800997734, 0.006667665205895901, 0.0015337546356022358, 0.03528497740626335, 0.019113974645733833, 0.015059727244079113, -0.01086752861738205, -0.0010078138438984752, -0.004506422206759453, -0.0013335330877453089, 0.004820645321160555, -0.010254409164190292, 0.031820859760046005, -0.014952431432902813, 0.004483430180698633, 0.008637309074401855, 0.0043263183906674385, 0.005238332320004702, -0.0033338326029479504, 0.008369069546461105, 0.006326618138700724, 0.0033012607600539923, -0.012078437954187393, 0.007947550155222416, 0.008384397253394127, 0.025015240535140038, -0.010039817541837692, -0.007748287171125412, -0.008507021702826023, -0.0210912823677063, 0.00028356738039292395, 0.02504589781165123, -0.004659701604396105, 0.010001498274505138, -0.0024313987232744694, 0.007844086736440659, -0.009656619280576706, 0.008116158656775951, -0.01683010719716549, 0.014868127182126045, -0.009112476371228695, 0.001090201665647328, -0.015021407045423985, 0.027881570160388947, -0.010423016734421253, -0.0037898398004472256, -0.007970542646944523, -0.003864563535898924, -0.003931623417884111, -0.02631811797618866, 0.017289945855736732, -0.01833224855363369, -0.012630244717001915, 0.013205043040215969, 0.0011572614312171936, -0.008951532654464245, 0.024432778358459473, -0.015895100310444832, 0.0004473850131034851, -0.012047781608998775, 0.0020481995306909084, 0.028004193678498268, -0.0017579261912032962, -0.006380266044288874, 0.006840105168521404, -0.011940485797822475, -0.010200761258602142, -0.009143131785094738, 0.00463287765160203, -0.018270935863256454, 0.011135767214000225, -0.03215807303786278, -0.01284483540803194, 0.011825526133179665, -0.010491993278265, 0.04386863857507706, -0.02279268577694893, 0.007595007307827473, -0.007054696325212717, 0.0032399490009993315, -0.0010212257038801908, -0.014967759139835835, 0.011817862279713154, 0.00948034692555666, 0.010323385708034039, -0.014369968324899673, 0.003523516235873103, -0.0006519175949506462, 0.021121937781572342, 0.030870525166392326, -0.01412472128868103, 0.01395611371845007, 0.017734456807374954, -0.0038760595489293337, -0.002496542641893029, -0.010101130232214928, -0.0022647071164101362, -0.008123822510242462, 0.00025937793543562293, 0.0007865162915550172, -0.011097447946667671, 0.027559682726860046, -0.0019083317602053285, 0.004314822610467672, 0.0042190225794911385, -0.006943568587303162, 0.0217350572347641, 0.014546239748597145, 0.014983086846768856, 0.0004382840415928513, 0.006311289966106415, 0.001376642961986363, -0.012469301000237465, 0.025950247421860695, 0.024478761479258537, 0.001926533761434257, 0.015190014615654945, 0.016155676916241646, -0.0017042782856151462, -0.0200183242559433, -0.008974524214863777, 0.007261624094098806, -0.0035733322147279978, -0.0018958778819069266, 0.005675179418176413, 0.015910429880023003, 0.004563902039080858, 0.003740023821592331, 0.0026747300289571285, -0.031069787219166756, 0.008514685556292534, 0.00628446601331234, 0.024218186736106873, 0.002645990112796426, 0.017611833289265633, 0.002994701499119401, 0.010783224366605282, -0.0013574829790741205, -0.03626596927642822, 0.009794570505619049, 0.0005221088649705052, 0.006935904733836651, -0.026180166751146317, 0.02929174341261387, 0.011610934510827065, 0.010576296597719193, -0.016692155972123146, -0.004812981467694044, 0.007744455244392157, -0.015082718804478645, -0.00352926435880363, 0.003232284914702177, -0.0016065625241026282, 0.008346077986061573, 0.01310541108250618, 0.035438258200883865, -0.024356137961149216, 0.018378231674432755, 0.01801036112010479, -0.0031441492028534412, -0.001948567689396441, -0.014109392650425434, -0.020738737657666206, 0.013074755668640137, 0.02004897966980934, -0.005947250872850418, -0.024708682671189308, -0.011220071464776993, 0.00250420649535954, -0.005372452083975077, 0.013450290076434612, 0.013818161562085152, -0.022194895893335342, 0.013342995196580887, 0.011028471402823925, -0.000501990900374949, 0.0201256200671196, 0.008629645220935345, 0.008154477924108505, -0.006728977430611849, -0.008951532654464245, -0.013120738789439201, 0.006089034490287304, 0.022838670760393143, -0.017627160996198654, 0.007932222448289394, -0.005234500393271446, 0.006192498374730349, -0.009273420087993145, -0.02194964699447155, -0.009327067993581295, -0.01928258128464222, -0.011695238761603832, -0.007024040445685387, -0.004575397819280624, 0.006598689593374729, -0.021290544420480728, 0.009166124276816845, -0.02558237500488758, -0.011649254709482193, -0.0027666979003697634, 0.01629362814128399, 0.016968058422207832, 0.014140048995614052, 0.015144030563533306, 0.027774274349212646, -0.009710266254842281, 0.0038722276221960783, -0.017090681940317154, 0.00016681138367857784, 0.0010365537600591779, 0.023053260520100594, 0.0009057869901880622, -0.0031709731556475163, 0.011741221882402897, -0.03976074606180191, -0.02896985597908497, -0.015381614677608013, 0.02239415980875492, -0.004889621399343014, -0.007591175381094217, 0.00559853995218873, 0.016569532454013824, 0.006966560613363981, 0.004211358726024628, -0.0040657431818544865, -0.005862947087734938, 0.001710026292130351, -0.019911028444767, 0.007579679600894451, -0.015289646573364735, 0.016584860160946846, 0.002184235258027911, 0.006012395024299622, -0.021029969677329063, 0.015833789482712746, -0.0018211540300399065, -0.013565250672399998, -0.0009043500176630914, -0.008767596445977688, 0.009143131785094738, -0.01992635615170002, 0.007694639265537262, 0.011174087412655354, -0.0017770860577002168, 0.03421201929450035, -0.01054564118385315, -0.0004766039492096752, 0.0035043563693761826, -0.023911627009510994, -0.022210223600268364, 0.011381015181541443, -0.009365387260913849, -0.025965575128793716, -0.005464420188218355, 0.0005091758794151247, -0.018945366144180298, -0.007510703522711992, 0.001035595778375864, -0.00910481158643961, -0.003330000676214695, 0.014937102794647217, -0.0022359672002494335, 1.0695148375816643e-05, -0.004617549944669008, 0.009120140224695206, -0.0064147538505494595, -0.00943436287343502, 0.019313238561153412, -0.016676828265190125, 0.004594557918608189, -0.0026344943325966597, -0.0054146042093634605, -0.011396342888474464, -0.002843337832018733, 0.031575608998537064, -0.0024313987232744694, -0.028479361906647682, -0.01896069385111332, -0.005564051680266857, 0.0020731075201183558, -0.015588541515171528, -0.014201360754668713, 0.0058706109412014484, 0.0033874805085361004, -0.01326635479927063, -0.01279118750244379, 0.006464569829404354, 0.005019908770918846, -0.0006322786211967468, 0.009848218411207199, -0.0038875555619597435, 0.02791222743690014, 0.00514636468142271, -0.00262299831956625, 0.009671946987509727, -0.021918991580605507, -0.007598839234560728, -0.0013268270995467901, -0.008675629273056984, -0.006694489158689976, -1.5507590433117002e-05, -0.007924558594822884, 0.008882556110620499, -0.005291980225592852, -0.011043800041079521, 0.005847619380801916, -0.012959796003997326, 0.0035120202228426933, -0.01640092395246029, -0.02398826740682125, 0.009273420087993145, 0.0017205642070621252, -0.00015280066872946918, -0.017872408032417297, -0.025444423779845238, -0.008736941032111645, -0.005613867659121752, -0.003730443771928549, -0.0026536541990935802, 0.010852199979126453, 0.012906148098409176, -0.018500855192542076, -0.005291980225592852, 0.017887737601995468, 0.00484746927395463, -0.011564950458705425, 0.024172203615307808, 0.00495476508513093, 0.00915845949202776, -0.005111876875162125, -0.012239380739629269, -0.033292341977357864, -0.012024790048599243, 0.014492591843008995, -0.02354375645518303, 0.011978805996477604, -0.004395294468849897, -0.011702902615070343, 0.003676795866340399, 0.004487262107431889, -0.0211985781788826, -0.02726845256984234, -0.008261773735284805, 0.014776160009205341, 0.004322486463934183, 0.006771129090338945, 0.03240332007408142, -0.008238782174885273, 0.0048168133944272995, 0.008920876309275627, -0.0028088497929275036, -0.0014159209094941616, 0.008698620833456516, -0.013779841363430023, -0.013304674997925758, 0.031192410737276077, -0.007276952266693115, -0.01781109720468521, -0.015588541515171528, -0.006947400979697704, -0.004855133127421141, -0.03387480601668358, -0.001851809909567237, 0.01359590608626604, -0.014967759139835835, 0.016784124076366425, -0.002525282558053732, -0.010514984838664532, 0.013925457373261452, -0.008629645220935345, 0.014048080891370773, 0.01310541108250618, 0.030088797211647034, -0.008039518259465694, 0.0074493917636573315, 0.00159794045612216, 0.021765712648630142, 0.029383711516857147, -0.0010911596473306417, 0.006571865640580654, -0.002007963601499796, 0.014247344806790352, -0.01342729851603508, -0.016569532454013824, -0.007437895517796278, 0.023942284286022186, -0.007644823286682367, -0.0008028022130019963, -0.007568183355033398, -0.015504238195717335, -0.0010432597482576966, -0.008698620833456516, 0.008123822510242462, -0.022624079138040543, -0.005058228969573975, 0.03408939763903618, 0.004460438154637814, -0.01876142993569374, -0.023605069145560265, 0.012921475805342197, -0.020002996549010277, 0.023390477523207664, 0.019159957766532898, 0.011894501745700836, 0.012109093368053436, 0.03313906490802765, 0.02257809415459633, -0.016768794506788254, -0.02214891090989113, 0.009556987322866917, 0.027023205533623695, 0.0009905698243528605, 0.0021995631977915764, -0.005257492419332266, -0.007824926637113094, -0.009625962935388088, 0.006541209761053324, -0.013887137174606323, -0.004448942374438047, -0.011626262217760086, -0.012599588371813297, 0.00674430513754487, -0.028157474473118782, 0.020493490621447563, 0.0201256200671196, -0.006997216492891312, -0.007901567034423351, -0.000776936300098896, 0.007694639265537262, -0.011419335380196571, -4.5534838136518374e-05, -0.004586894065141678, -0.003772595664486289, -0.002621082356199622, -0.016155676916241646, -0.0016774543328210711, -0.030119454488158226, 0.01011645793914795, 0.025827623903751373, -0.004927941132336855, -0.030640603974461555, 0.015465917997062206, 0.008790588937699795, 0.008560669608414173, -0.011480647139251232, 0.007307608146220446, -0.004387630149722099, 0.0024199027102440596, -0.006859264802187681, 0.00468652555719018, 0.012645572423934937, -0.017090681940317154, 0.013120738789439201, -0.0006705985288135707, 0.01439296081662178, 0.016753466799855232, 0.010898184031248093, -0.003063677344471216, -0.005219172686338425, 0.011656918562948704, -0.016262972727417946, 0.014209024608135223, -0.016232317313551903, -0.014216688461601734, -0.0017780441557988524, -0.0217350572347641, 0.0008243572083301842, 0.0028375897090882063, -0.012614916078746319, 0.005042900796979666, -0.006050714757293463, -0.0011467235162854195, -0.011273719370365143, -0.025505736470222473, -0.00029865585383959115, -0.012208725325763226, 0.03237266466021538, 0.030962491407990456, -0.012806516140699387, -0.013067090883851051, 0.020861363038420677, -0.004471934400498867, -0.0029180615674704313, 0.013879473321139812, -0.0051387008279562, -0.01917528547346592, -0.012959796003997326, -0.006318954285234213, 0.006073706783354282, 0.019129302352666855, -0.006782625336199999, -0.0007635243237018585, -0.0018815079238265753, -0.008001198060810566, 0.0015011826762929559, 0.005882107187062502, -0.016538875177502632, 0.019527828320860863, 0.016446907073259354, 0.018056344240903854, -0.027145829051733017, 0.006307458039373159, 0.03562219440937042, 0.0008708200766704977, -0.010193097405135632, 0.011748886667191982, 0.01018543355166912, -0.0040925671346485615, 0.008936204016208649, -0.016431579366326332, -0.007181152235716581, -0.012545940466225147, 0.029674943536520004, 0.011649254709482193, -0.007434063591063023, 0.009618299081921577, 0.007671647239476442, -0.010039817541837692, -0.012193397618830204, -0.004257342778146267, -0.012339012697339058, -0.0016305124154314399, -0.026195494458079338, -0.005150196608155966, -0.01374152209609747, 0.018822742626070976, -0.017780441790819168, 0.0016602103132754564, 0.004713349509984255, 0.005667515564709902, -0.014040417037904263, 0.023053260520100594, 0.014461936429142952, -0.004567733965814114, 0.01411705743521452, 0.0006883214809931815, -0.02291530929505825, 0.018270935863256454, 0.018270935863256454, 0.0025789302308112383, 0.02184235118329525, 0.015534893609583378, -0.004866629373282194, -0.011112775653600693, -0.004015927202999592, -0.01300577912479639, 0.011074455454945564, 0.0005225878558121622, -0.007483879569917917, -0.019052661955356598, -0.011817862279713154, 0.008369069546461105, 0.008024190552532673, 0.011082119308412075, 0.02268538996577263, 0.013342995196580887, 0.012270037084817886, -0.0019734755624085665, -0.002433314686641097, -0.030517980456352234, -0.00985588226467371, -0.013787506148219109, 0.01043834537267685, -0.0008837530622258782, -0.013565250672399998, -0.010844536125659943, 0.004970093257725239, 0.006759633310139179, 0.028510017320513725, 0.014599887654185295, -0.001954315695911646, 0.01813298463821411, 0.0003513457195367664, -0.01940520480275154, -0.029429694637656212, 0.004801485687494278, -0.005426099989563227, -0.0205548033118248, 0.009894202463328838, -0.017090681940317154, 0.014247344806790352, -0.014415952377021313, 0.0024256506003439426, -0.017427897080779076, -0.02089201845228672, 0.019742419943213463, 0.015082718804478645, 0.01029272936284542, -0.006909080781042576, 0.010423016734421253, -0.0004718139534816146, 0.003490944392979145, -0.016554202884435654, 0.0009287789580412209, -0.012653236277401447, 0.02355908416211605, -0.021658416837453842, 0.013120738789439201, 0.005552555900067091, -0.012400324456393719, 0.00506206089630723, 0.0008962070569396019, -0.005345628131181002, -0.004360806662589312, 0.016171004623174667, -0.004766997415572405, 0.005134868901222944, -0.009020508266985416, -0.01820962317287922, 0.006993384566158056, -0.017734456807374954, -0.0034775324165821075, 0.011266055516898632, 0.015136366710066795, -0.005268988665193319, -0.007338264025747776, 0.007955214940011501, 0.020646771416068077, -0.01813298463821411, 0.006855432875454426, 0.018684791401028633, -0.0009627878898754716, 0.006334281992167234, 0.003000449389219284, -0.012921475805342197, 0.021474480628967285, 0.016232317313551903, -0.012193397618830204, -0.025643687695264816, 0.013128403574228287, -0.015910429880023003, -0.013994432985782623, 0.018930038437247276, 0.006280634086579084, 0.00700488081201911, 0.014875791035592556, 0.0102774016559124, 0.02268538996577263, -0.0008133402443490922, -0.0003707451978698373, 0.0013421550393104553, -0.0008119032136164606, 0.0016161424573510885, -0.033506933599710464, -0.022838670760393143, 0.004667365923523903, 0.011948149651288986, -0.019098646938800812, 0.0014963927678763866, -0.021351857110857964, -0.020616114139556885, -0.008292430080473423, -0.008445709943771362, 0.005912763066589832, 0.01119707990437746, 0.010162441991269588, -0.006238482426851988, -0.011419335380196571, 0.00514636468142271, 0.002207227051258087, -0.023497773334383965, -0.009334731847047806, 0.021397840231657028, -0.015465917997062206, 0.026670660823583603, -0.0037515198346227407, -0.018041016533970833, -0.011794869787991047, -0.011373351328074932, 0.008085502311587334, 0.01017776969820261, 0.003766847774386406, -0.01028506550937891, 0.01092884037643671, 0.022240879014134407, 0.005640691611915827, -0.002567434450611472, 0.0001780678576324135, 0.00500841299071908, -0.025337127968668938, -0.0018738438375294209, 0.019098646938800812, -0.020432179793715477, 0.007878574542701244, -0.018500855192542076, 0.029552320018410683, 0.0035273481626063585, 0.02866329625248909, -0.0015117207076400518, 0.004659701604396105, -0.011787205934524536, -0.010576296597719193, 0.002494626445695758, 0.0031000811140984297, -0.024279499426484108, -0.00708918459713459, 0.013864145614206791, -0.0058974348939955235, 0.004069575108587742, -0.015573213808238506, -0.004690357483923435, -0.006863096728920937, 0.0014312488492578268, -0.007108344230800867, 0.008874892257153988, -0.013251027092337608, 0.023712363094091415, -0.001802952028810978, -0.00684393709525466, 0.006384097971022129, 0.005617699585855007, -0.0007486753747798502, 0.007901567034423351, 0.005219172686338425, -0.0002962608414236456, -0.0027705298271030188, -0.028111489489674568, 0.006912912707775831, 0.005234500393271446, -0.015458254143595695, -0.0014973507495597005, 0.005207676440477371, 0.005866779014468193, -3.685297997435555e-05, 0.0019830556120723486, -0.026088198646903038, -0.0068784249015152454, -0.003853067522868514, -0.018393559381365776, -0.005249828565865755, -0.01620166003704071, 0.0008301051566377282, -0.02214891090989113, 0.0064415778033435345, 0.01960446871817112, 0.016661498695611954, -0.0008157351985573769, 0.015588541515171528, -0.012614916078746319, -0.020616114139556885, -0.004962428938597441, 0.0015519566368311644, -0.002601922256872058, -0.01597174070775509, 0.01044600922614336, 0.013948449864983559, 0.0014226268976926804, -0.01033871341496706, 0.0062346505001187325, -0.013090083375573158, 0.015803134068846703, 0.015412270091474056, 0.004054246935993433, -0.020631441846489906, 0.025122536346316338, -0.020723409950733185, 0.02558237500488758, -0.011618598364293575, 0.007108344230800867, -0.007269287947565317, 0.02015627548098564, -0.002105679363012314, 0.0010710416827350855, 0.004069575108587742, 0.017933720722794533, -0.008307757787406445, -0.012331348843872547, -0.008300093933939934, 0.016431579366326332, -0.004617549944669008, 0.012216389179229736, 0.010147113353013992, -7.837620069039986e-05, 0.01597174070775509, -0.00243906257674098, 0.008621981367468834, 0.00044235552195459604, 0.010300393216311932, 0.0004370865353848785, -0.0010499657364562154, -0.00015651290595997125, 0.01672281138598919, -0.009235099889338017, 0.006407089997082949, 0.015925757586956024, -0.011787205934524536, 0.000830584205687046, -0.023605069145560265, -0.002525282558053732, 0.008093166165053844, 8.939317922340706e-05, 0.008629645220935345, 0.0102774016559124, -0.014814479276537895, -0.0002080052945530042, -0.01981906034052372, -0.007123672403395176, -0.008024190552532673, 0.003124989103525877, -0.0210912823677063, 0.016354940831661224, -0.01938987709581852, -0.009947850368916988, -0.006196330301463604, 0.011335031129419804, 0.016538875177502632, 0.004996917210519314, -0.017841752618551254, -0.014684191904962063, -0.0037055357825011015, -0.007939886301755905, 0.003090501297265291, -0.011495974846184254, -0.010085801593959332, 0.0015567465452477336, 0.009710266254842281, -0.0008780050557106733, -0.012538276612758636, -0.005215340759605169, 0.009250427596271038, -0.021597104147076607, -0.015519565902650356, 0.015090382657945156, 0.0010432597482576966, 0.00543759623542428, 0.02705386094748974, -0.021259889006614685, 0.009288747794926167, -0.012883155606687069, 0.0010279316920787096, -0.000949854904320091, 0.001575906528159976, 0.002034787554293871, 0.007330599706619978, 0.03338431194424629, -0.012668563984334469, -0.0029257256537675858, 0.010430681519210339, -0.006702153477817774, -0.009740922600030899, 0.015833789482712746, -0.0042458465322852135, -0.00334532861597836, -0.01065293699502945, -0.0040389192290604115, 0.013664881698787212, -0.006728977430611849, 0.015941085293889046, 0.004468102008104324, -0.008468701504170895, 0.008514685556292534, 0.006640841253101826, -0.008553004823625088, 0.019849715754389763, -0.007679311092942953, -0.008959196507930756, -0.023896299302577972, 0.011404006741940975, -0.005238332320004702, 0.009472683072090149, -0.028601985424757004, -0.007947550155222416, -0.004705685656517744, -0.02513786405324936, -0.011281383223831654, -0.025950247421860695, 0.010744904167950153, -0.007315271999686956, 0.01300577912479639, 0.006242314353585243, 0.029061824083328247, -0.005636859685182571, -0.016922075301408768, -0.018730774521827698, -0.011404006741940975, 0.009664283134043217, 0.0015471666119992733, -0.01305176317691803, 0.028280097991228104, 0.018592823296785355, 0.004265006631612778, -0.012591924518346786, 0.029705598950386047, -0.024662697687745094, 0.016278300434350967, 0.004410622175782919, -0.010560968890786171, -0.007008712738752365, 0.0002290812408318743, -0.024110890924930573, -0.003989103250205517, -0.038963690400123596, -0.004540910013020039, 0.006426250096410513, -0.0004576834908220917, 0.008346077986061573, 0.014829807914793491, 0.00509271677583456, -0.020738737657666206, -0.019788404926657677, 0.012415653094649315, 0.018930038437247276, 0.05613101273775101, 0.026088198646903038, 0.006135018542408943, -0.0031575611792504787, -0.0004514565225690603, -0.029889535158872604, 0.010844536125659943, -0.03313906490802765, -0.029674943536520004, -0.012339012697339058, 0.012193397618830204, -0.013503937982022762, 0.014561568386852741, 0.017090681940317154, -0.014094064943492413, 0.010959495790302753, -0.0031920489855110645, -0.0010097298072651029, -0.003448792500421405, 0.013036435469985008, 0.011848517693579197, -0.0028356737457215786, -0.011940485797822475, 0.011066791601479053, 0.022547438740730286, 0.00031589981517754495, -0.004341646563261747, -0.0012425233144313097, -0.01000916212797165, 0.008085502311587334, 0.024448106065392494, -0.004732509609311819, -0.026042215526103973, -0.00647606560960412, 0.0014542407589033246, 0.02099931426346302, 0.001846061903052032, 0.01311307493597269, 0.0009378799586556852, -0.004341646563261747, -0.017320601269602776, -0.0039162952452898026, 0.01341963466256857, -0.019788404926657677, -0.029169119894504547, -0.0018575579160824418, 0.016063708811998367, -0.0002871598699130118, -0.012293028645217419, -0.00943436287343502, -0.0018910878570750356, 0.011151095852255821, -0.006702153477817774, 0.014822143130004406, 0.009135467931628227, 0.017841752618551254, 0.022961294278502464, -0.01652354747056961, -0.003695955965667963, -0.018056344240903854, -0.002536778338253498, -0.005337964277714491, 0.002191899111494422, 0.025766311213374138, -0.0065488736145198345, 0.03644990548491478, -0.0055410596542060375, -0.009679610840976238, 0.00685160094872117, -0.006579529494047165, 0.01831691898405552, -0.009848218411207199, -0.016216987743973732, -0.00011759424523916095, -0.021658416837453842, -0.012545940466225147, -0.022317519411444664, -0.011296710930764675, -0.01706002652645111, 0.025919592007994652, 0.011404006741940975, -0.00533030042424798, 0.02463204227387905, -0.011043800041079521, -0.025413768365979195, 0.002191899111494422, -0.01770380139350891, 0.00031158881029114127, 0.006617849692702293, -0.006801784969866276, -0.0217350572347641, 0.012499956414103508, -0.007154328282922506, 0.01326635479927063, 0.020386194810271263, 0.0077904388308525085, -0.012469301000237465, -0.002849085722118616, 0.00025506693054921925, 0.010530312545597553, -0.003799419617280364, 0.024969257414340973, 0.005529563874006271, 0.006246146280318499, 0.00045025901636108756, -0.03424267843365669, 0.004452774301171303, 0.012906148098409176, 0.009717931039631367, 0.039484839886426926, -0.009602971374988556, 0.02334449253976345, 0.0012664732057601213, -0.0022953629959374666, 0.0006222196388989687, 0.023160556331276894, 0.0048436373472213745, -0.0027302938979119062, 0.021551121026277542, 0.013971441425383091, -0.014699519611895084, 0.01899135112762451, 0.014530912041664124, 0.007499207742512226, 0.017627160996198654, 0.004947101231664419, 0.0063151223585009575, 0.022102927789092064, -0.019374549388885498, -0.0022781190928071737, 0.015741821378469467, -0.008499356918036938, -0.0040925671346485615, 0.01897602155804634, 0.012308357283473015, -0.003000449389219284, 0.0007869952823966742, 0.0014983087312430143, 0.0017406821716576815, -0.014791487716138363, -0.02217956818640232, 0.02225620672106743, 0.03408939763903618, -0.00011070863547502086, -0.003935455344617367, -0.007480047643184662, -0.015029070898890495, 0.01054564118385315, 0.01630895584821701, -0.016063708811998367, 0.010844536125659943, -0.014300992712378502, 0.01369553804397583, -0.001257851254194975, -0.002147831255570054, -0.006395593751221895, -0.014584559947252274, 0.037461549043655396, -0.0038300754968076944, -0.011679910123348236, -6.831722566857934e-05, 0.009511003270745277, 0.012507620267570019, 0.014921775087714195, 0.01779576949775219, -0.011289047077298164, -0.0012367753079161048, 0.00953399483114481, 0.006518217734992504, -0.010047482326626778, 0.0022206390276551247, -0.013235699385404587, 0.0030291893053799868, -0.003395144594833255, -0.011710566468536854, -0.008943868800997734, -0.01380283385515213, -0.014461936429142952, -0.017197977751493454, -6.592222780454904e-05, 0.02919977530837059, 0.018485527485609055, 0.012070773169398308, -0.0063879298977553844, -0.024815978482365608, -0.0023221869487315416, -0.0026344943325966597, 0.012055445462465286, 0.0038415715098381042, 0.0017790021374821663, 0.0058706109412014484, 0.018362903967499733, -0.007399575784802437, -0.012936803512275219, -0.003918211441487074, 0.015711165964603424, -0.013894801959395409, 0.008062510751187801, -0.03626596927642822, -0.006924408953636885, -0.0015682425582781434, -0.003992935176938772, 0.008346077986061573, -0.013136067427694798], "6901c4f7-aa1c-4fd9-94e9-085fab8deae4": [-0.004902682267129421, -0.014903820119798183, -0.006052333861589432, 0.017911242321133614, -0.014037416316568851, -0.026192069053649902, 0.012904426082968712, 0.04628598317503929, -0.03915480896830559, 0.05644957348704338, 0.021276891231536865, 0.003975879400968552, 0.019027572125196457, 0.0095304474234581, -0.01078839972615242, 0.049718279391527176, -0.018777647987008095, 0.016086796298623085, -0.02114359848201275, -0.04288701340556145, 0.0422871969640255, 0.012162983417510986, -0.04102091118693352, 0.02137686125934124, 0.010221905075013638, 0.0062980931252241135, -0.0061523038893938065, 0.008530749939382076, -0.01994396187365055, 0.00016713689547032118, 0.021276891231536865, 0.030174195766448975, 0.010971677489578724, 0.03485611081123352, 0.03982127457857132, -0.006893746089190245, -0.0009018102427944541, -0.022926392033696175, -0.024542568251490593, 0.009563771076500416, -0.010646776296198368, 0.0010418720776215196, 0.022859744727611542, -0.004017533268779516, -0.045119669288396835, 0.021526815369725227, -0.01762799546122551, -0.010563467629253864, -0.018427753821015358, 0.01636171154677868, 0.002942858962342143, -0.02819146402180195, 0.011354895308613777, 0.022293249145150185, 0.011929720640182495, -0.031640417873859406, -0.0042445482686161995, 0.035555899143218994, -0.019544081762433052, -0.03240685537457466, 0.008589065633714199, -0.008526585064828396, -0.039721306413412094, -0.011038323864340782, 0.007939262315630913, -0.015037113800644875, 0.023176316171884537, 0.007755985017865896, -0.03194032981991768, 0.02760830707848072, -0.007668511476367712, -0.006897911429405212, -0.042187225073575974, 0.0004037839826196432, -0.013454259373247623, 0.024009397253394127, 0.05001818761229515, 0.0029157837852835655, 0.02092699706554413, 0.0023180481512099504, 0.0014131137868389487, -0.003171956166625023, 0.017478041350841522, -0.012013029307126999, 0.07737656682729721, -0.011654804460704327, -0.003688466502353549, -0.05118450149893761, -0.011596488766372204, -0.007780977059155703, -0.010196912102401257, 0.024642538279294968, 0.014903820119798183, 0.010930024087429047, -0.014145717024803162, 0.01742805540561676, 0.018827632069587708, 0.004652757663279772, 0.0170198455452919, -0.015270376577973366, -0.006760452874004841, 0.017278101295232773, -0.024609215557575226, 0.028374740853905678, 0.00580240972340107, -0.019160864874720573, 0.04591942951083183, -0.016120119020342827, -0.03512270003557205, 0.02905786782503128, -0.0311572328209877, -0.04225387051701546, 0.027708277106285095, 0.024309305474162102, -0.03902151808142662, -0.04715238884091377, -0.025675559416413307, -0.01801121234893799, 0.002730423118919134, -0.013770829886198044, 0.04002121463418007, 0.0249091237783432, -0.018411092460155487, -0.025992128998041153, -0.0490184910595417, 0.03462284803390503, 0.017511364072561264, -0.0020816612523049116, 0.011863074265420437, -0.012013029307126999, -0.018760986626148224, -0.012004698626697063, -0.010655106976628304, 0.025892158970236778, 0.023292947560548782, 0.02777492254972458, 0.0048943511210381985, 0.023159654811024666, -0.019394127652049065, 0.012212968431413174, -0.06744624674320221, -0.027658291161060333, -0.016236750409007072, 0.01578688621520996, 0.007014542818069458, 0.014645565301179886, -0.015853533521294594, 0.06341413408517838, -0.017378071323037148, 0.017511364072561264, -0.06358075141906738, -0.047185711562633514, -0.012321269139647484, -0.015695247799158096, 0.012854441069066525, -0.03375644609332085, -0.0073686023242771626, -0.011171617545187473, -0.001692195888608694, 0.03505605086684227, 0.032906703650951385, -0.05828235298395157, -0.030224181711673737, 0.03645562753081322, 0.035389285534620285, 0.01869433932006359, 0.03217359259724617, 0.05251743271946907, -0.04688580334186554, 0.025059077888727188, -0.008122540079057217, 0.0062064542435109615, 0.002153514651581645, 0.0031761215068399906, -0.02737504430115223, -0.011029993183910847, 0.014145717024803162, 0.0476522371172905, -0.020393824204802513, -0.018511060625314713, -0.029207821935415268, -0.02465919964015484, 0.017877919599413872, -0.010630114935338497, 0.035622548311948776, 0.025575589388608932, -0.002755415625870228, 0.019977284595370293, 0.03134050965309143, -0.005223418120294809, -0.014445626176893711, 0.005906544625759125, 0.00798508245497942, 0.01766131818294525, 0.007118677720427513, -0.002674190327525139, -0.001027813763357699, -0.02134353667497635, -0.02325962297618389, 0.0018442332511767745, 0.007706000003963709, -0.03398970887064934, -0.011504849418997765, 0.03295668587088585, -0.0010236484231427312, -0.0011423624819144607, -0.025442296639084816, -0.059748575091362, 0.03482278808951378, -0.03955468907952309, 0.0448530837893486, -0.03337322920560837, 0.015245383605360985, -0.023093007504940033, 0.00038503966061398387, -0.0017400981159880757, -0.03755529597401619, 0.008972283452749252, -0.024975771084427834, -0.03998789191246033, -0.007335278671234846, 0.020693734288215637, -0.006847926415503025, -0.03232354670763016, -0.018810970708727837, -0.00871402770280838, -0.02280976064503193, 0.011488188058137894, -0.002077495912089944, 0.00012893231178168207, -0.004323690664023161, 0.015053775161504745, -0.004065435845404863, -0.022043325006961823, -0.03758861869573593, 0.022459866479039192, 0.07437747716903687, 0.00010172701149713248, 0.00016362233145628124, 0.010530144907534122, 0.01347925141453743, 0.021826723590493202, 0.007272797636687756, 0.005681612994521856, 0.024842478334903717, 0.059048786759376526, 0.016853230074048042, 0.031407155096530914, 0.028891252353787422, 0.00042617303552106023, 0.01661996729671955, 0.0008721317281015217, -0.013004395179450512, -0.01088003907352686, -0.03438958525657654, 0.024992432445287704, 0.021476829424500465, -0.0163783747702837, -0.005998183973133564, -0.004142495803534985, -0.021276891231536865, 0.05201758071780205, -0.004506968427449465, 0.004061270039528608, 0.043886709958314896, -0.050318095833063126, 0.009988642297685146, 0.0020722891204059124, 0.01911088079214096, 0.061947908252477646, 0.04065435752272606, 0.009647078812122345, -0.004856862593442202, 0.001398534863255918, -0.028907913714647293, -0.022876406088471413, 0.018411092460155487, 0.01678658276796341, 0.0033823091071099043, -0.02114359848201275, -0.051551058888435364, 0.004419494885951281, 0.02574220485985279, 0.01265450194478035, 0.008647381328046322, 0.007631022483110428, -0.019560743123292923, -0.010288551449775696, -0.04701909422874451, -0.01495380513370037, 0.0003439062857069075, 0.03678886219859123, -0.0032073622569441795, 0.0018140340689569712, -0.006689641159027815, 0.027974862605333328, 0.02784156985580921, -0.013929115608334541, -0.00019251983030699193, 0.024392614141106606, -0.04468647018074989, -0.02860800363123417, -0.0002542198926676065, -0.008930629119277, -0.0005006296560168266, 0.006943730637431145, 0.032023634761571884, 0.00018627171812113374, -0.017561350017786026, 0.050951238721609116, 0.019544081762433052, -0.03895487263798714, -0.0014610158978030086, 0.007830962538719177, -0.029940932989120483, -0.0026471151504665613, 0.04052106291055679, -0.006610498297959566, -0.012038021348416805, -0.008376630023121834, 0.025825513526797295, 0.0055524855852127075, -0.04168737679719925, 0.019160864874720573, 0.017261439934372902, -0.017944566905498505, -0.0041799843311309814, -0.017161469906568527, -0.02137686125934124, -0.010438505560159683, -0.016528328880667686, -0.04352015629410744, -0.02779158391058445, 0.020010607317090034, -0.028774620965123177, -0.0422871969640255, -0.025458957999944687, -0.03668889030814171, 0.00669797183945775, -0.06661316007375717, -0.015187067911028862, -0.02612542174756527, 0.018561046570539474, -0.010805062018334866, -0.00014670037489850074, -0.005419192370027304, 0.0001985075941774994, 0.010546806268393993, -0.010455167852342129, 0.008988944813609123, 0.0010189622407779098, -0.03220691531896591, 0.020427148789167404, -0.013387612998485565, 0.037022121250629425, -0.04501970112323761, -0.027425028383731842, 0.008680704981088638, -0.00830165296792984, 0.013196004554629326, -0.013262650929391384, -0.023359593003988266, -0.013612545095384121, -0.024159351363778114, -0.020443810150027275, -0.01829446107149124, -0.014645565301179886, -0.031473804265260696, -0.019577404484152794, 0.0034010536037385464, -0.0009981353068724275, 0.02364284172654152, 0.045086346566677094, -0.028308095410466194, -0.0016515832394361496, -0.020827027037739754, 0.029591040685772896, -0.013420935720205307, 0.014170709066092968, 0.0215434767305851, -0.001002821372821927, 0.02614208497107029, 0.0007570624002255499, 0.0130543801933527, 0.0006596960593014956, 0.007056196685880423, 0.0018317369977012277, -0.004960997961461544, -0.029574377462267876, -0.0021253980230540037, -0.02527567930519581, 0.04878522828221321, -0.03845502436161041, 0.012596186250448227, -0.00559830479323864, -0.03845502436161041, -4.607979644788429e-05, 0.024026058614253998, 0.009138899855315685, 0.001274614012800157, -0.014837173745036125, -0.005460846237838268, 0.03582248464226723, 0.03718873858451843, -0.005939868278801441, -0.03795517235994339, -0.018810970708727837, -0.0007820548489689827, 0.014428963884711266, 0.053183894604444504, -0.014537264592945576, 0.01485383603721857, 0.005919041112065315, -0.012696155346930027, 0.0494183711707592, -0.010238566435873508, -0.014387310482561588, 0.010546806268393993, -0.04528628662228584, -0.03337322920560837, -0.010263558477163315, 0.029407761991024017, -0.0012225464452058077, 0.011988036334514618, 0.004188315011560917, 0.03027416579425335, 0.03565587103366852, 0.008689035661518574, -0.017894580960273743, -0.01545365434139967, 0.02036050148308277, 0.022859744727611542, 0.0016036811284720898, 0.01232959982007742, 0.0022284919396042824, -0.03608907386660576, -0.007910104468464851, 0.001049161422997713, -0.00492350896820426, 0.0035156020894646645, -0.005152606405317783, 0.023809457197785378, -0.020660411566495895, 0.01969403587281704, -0.03815511241555214, -0.03458952531218529, -0.061514705419540405, 0.013254320248961449, 0.035989101976156235, -0.03112390823662281, -0.02136019803583622, -0.006127311382442713, -0.04045441746711731, -0.027524998411536217, 0.016086796298623085, -0.019977284595370293, 0.008647381328046322, -0.037055447697639465, 0.0012423321604728699, -0.06038171797990799, -0.02784156985580921, -0.018627692013978958, 0.035555899143218994, 0.01967737451195717, 0.06777947396039963, -0.0011111218482255936, -0.010355197824537754, 0.008580734953284264, 0.01482884306460619, -0.0014131137868389487, 0.015611939132213593, -0.010013634338974953, 0.011438203044235706, 0.029957596212625504, 0.01412072405219078, 0.004981824662536383, -0.015561954118311405, 0.017361409962177277, -0.005348380655050278, -0.016078464686870575, 0.010471829213202, -0.04975160211324692, 0.009197215549647808, 0.0019265000009909272, -0.009205546230077744, -0.011979705654084682, 0.009813695214688778, -0.03505605086684227, 0.01412072405219078, 0.01705317012965679, 0.0032865048851817846, -0.03179037570953369, 0.010905031114816666, 0.019327480345964432, 0.04002121463418007, 0.010805062018334866, -0.01038018986582756, -0.011979705654084682, -0.0047527276910841465, -0.018827632069587708, 0.005781582556664944, -0.027041811496019363, 0.017911242321133614, 0.013554229401051998, -0.02819146402180195, 0.011038323864340782, -0.0036822182592004538, 0.020910335704684258, -0.003226106520742178, -0.005327553488314152, -0.03625568747520447, 0.014753866009414196, -0.026875196024775505, 0.03858831524848938, 0.006764618214219809, 0.009163891896605492, 0.007210316602140665, -0.02012723870575428, 0.024975771084427834, -0.010630114935338497, 0.008755682036280632, -0.020077254623174667, -0.025425635278224945, 0.0070936852134764194, -0.0009663740638643503, -0.02944108471274376, 0.005315057467669249, -0.020043930038809776, -0.01766131818294525, -0.022259926423430443, -0.009488793089985847, 0.02472584694623947, -0.03425629436969757, -0.0013287643669173121, 0.03110724687576294, -0.010805062018334866, -0.01297107245773077, 0.010538475587964058, -0.004790216218680143, 0.022993037477135658, -0.06468041241168976, 0.02304302342236042, -0.03468949720263481, 0.018527723848819733, -0.015020451508462429, 0.029940932989120483, 0.006656317971646786, 0.008068390190601349, -0.023726148530840874, 0.011704789474606514, -0.00679377606138587, 0.020677072927355766, 0.00942214671522379, -0.0023284615017473698, -0.017911242321133614, -0.018627692013978958, 0.0070936852134764194, -0.016136780381202698, -0.017894580960273743, -0.01699485443532467, -0.004644426982849836, 0.006968723144382238, 0.001422485918737948, 0.020877011120319366, 0.016303395852446556, 0.013220996595919132, -0.02324296161532402, 0.027858231216669083, -0.019177526235580444, 0.013945776969194412, 0.014287340454757214, -0.005514996591955423, 0.02944108471274376, 0.029157837852835655, 0.013295973651111126, 0.014945474453270435, 0.015528631396591663, -0.017578011378645897, -0.014070739038288593, -0.0026242053136229515, 0.045986074954271317, -0.011271586641669273, -0.014470618218183517, -0.023959411308169365, -0.007847623899579048, -0.023309608921408653, -0.008501592092216015, -0.02902454510331154, 0.019410789012908936, 0.009113906882703304, 0.006318919826298952, 0.03177371248602867, -0.004177901428192854, 0.03835505247116089, -0.0028241449035704136, 0.029174499213695526, 0.006789610721170902, 0.024126028642058372, 0.02219327911734581, -0.0009241992956958711, 0.010296882130205631, 0.022309910506010056, 0.0076768421567976475, -0.013154350221157074, -0.012088006362318993, 0.030824000015854836, 0.007397760171443224, 0.017744626849889755, 0.0230263601988554, 0.027641629800200462, -5.291366687742993e-05, 0.0015016286633908749, 0.01762799546122551, -0.035722516477108, 0.006677144672721624, 0.008813997730612755, -0.01534535363316536, 0.02387610450387001, 0.012937748804688454, -0.022759774699807167, 0.013837476260960102, 0.005906544625759125, 0.03385641425848007, 0.0013058545300737023, -1.3212144949648064e-05, 0.018377767875790596, -0.008539080619812012, 0.0025887994561344385, -0.00787678174674511, 0.003746782196685672, -0.002418017713353038, 0.008847321383655071, -0.001578688621520996, -0.03237352892756462, -0.013220996595919132, -0.019860653206706047, 0.005577477626502514, -0.006081491708755493, 0.005027644336223602, 0.00028819398721680045, -0.036388982087373734, 0.01378749217838049, -0.015245383605360985, 0.031073924154043198, 0.009380493313074112, -0.01595350354909897, -0.002199334092438221, 0.00048605073243379593, 0.02529234066605568, 0.03237352892756462, 0.0031032271217554808, 0.013362620025873184, 0.014170709066092968, 0.023176316171884537, 0.011529842391610146, -0.04621933773159981, -0.03174038976430893, 0.0062231156043708324, -0.009172222577035427, 0.020810365676879883, 0.009888672269880772, -0.009297184646129608, 0.009213876910507679, 0.017178131267428398, -0.006156469229608774, 0.007739323191344738, 0.0037863533943891525, 0.006960392463952303, 0.0004941212246194482, 0.019977284595370293, 0.012471224181354046, -0.0163783747702837, 0.027275074273347855, 0.04115420579910278, -0.010096943005919456, -0.005723266862332821, -0.006918738130480051, 0.0003069383092224598, -0.0017213537357747555, 0.017528025433421135, -0.02865798957645893, -0.028974559158086777, -0.03768858686089516, 0.03360649198293686, 0.013412605039775372, -0.008068390190601349, -0.028108155354857445, -0.02365950308740139, 0.003598910290747881, 0.013854138553142548, -0.009605424478650093, 0.01969403587281704, -0.021493492648005486, 0.014945474453270435, -0.01864435523748398, -0.0013475086307153106, 0.028674650937318802, -0.022859744727611542, 0.021260229870676994, -0.039088163524866104, -0.04232051968574524, -0.010421844199299812, 0.0009710601298138499, -0.02989094890654087, -0.009355500340461731, 0.011279917322099209, -0.02032717876136303, -0.007780977059155703, 0.011654804460704327, 0.01337928231805563, 0.01328764297068119, 0.04338686168193817, -0.010963346809148788, 0.01388746127486229, 0.02720842882990837, 0.008197518065571785, 0.01089670043438673, 0.003600992960855365, -0.002886625938117504, 0.009313846006989479, 0.005223418120294809, 0.016528328880667686, -0.047618914395570755, -0.0033198280725628138, -0.01618676446378231, 0.0029199491254985332, 0.007556045427918434, -0.01171312015503645, 0.01058012992143631, 0.001161106745712459, 0.04362012445926666, -0.014062408357858658, -0.01702817715704441, 0.00995531864464283, -0.003815511241555214, -0.020893672481179237, 0.00462359981611371, 0.013870799914002419, 0.020693734288215637, -0.013762499205768108, 0.03905484080314636, 0.007743488531559706, 0.021276891231536865, -0.027958201244473457, 0.009822025895118713, 0.03230688348412514, 0.0406876802444458, -0.0025867167860269547, -0.008072555996477604, -0.013512575067579746, 0.03134050965309143, -0.03655559942126274, 0.024159351363778114, 0.029341114684939384, -0.004323690664023161, 0.01119660958647728, 0.025225695222616196, 0.0008940001134760678, -0.002134770154953003, 0.01358755212277174, -0.01380415353924036, 0.0373220331966877, -0.003069903701543808, 0.00597319146618247, 0.005048471502959728, -0.028907913714647293, -0.005323388148099184, 0.010655106976628304, 0.02327628619968891, 0.015078767202794552, 0.03025750443339348, 0.02409270405769348, 0.024592554196715355, 0.01969403587281704, -0.05978189781308174, -0.029174499213695526, -0.0057690865360200405, 0.012921087443828583, -0.019560743123292923, -0.039721306413412094, -0.009838687255978584, -0.008830659091472626, -0.0010538476053625345, 0.022293249145150185, 0.003959218040108681, -0.022093310952186584, 0.025392310693860054, -0.03237352892756462, -0.010921692475676537, 0.004473645240068436, 0.02382611855864525, 0.003690549172461033, 0.010321874171495438, 0.02990761026740074, -0.019977284595370293, -0.032873380929231644, 0.0048776897601783276, -0.02217661775648594, 0.007918436080217361, -0.004273706115782261, 0.02320963889360428, 0.0002920990518759936, 0.013262650929391384, 0.009822025895118713, 0.02529234066605568, -0.020593764260411263, -0.033739782869815826, -0.0004610583127941936, -0.025225695222616196, 0.022159956395626068, 0.009372161701321602, -0.01951075904071331, -0.03172372654080391, 0.04975160211324692, -0.03505605086684227, -0.0022055821027606726, -0.020827027037739754, 0.031007276847958565, -0.012088006362318993, -0.00679377606138587, -0.0234262403100729, 0.021243566647171974, 0.023492885753512383, 0.002382611855864525, -0.01172978151589632, 0.0022972209844738245, 0.01822781376540661, 0.010996670462191105, -0.01676992140710354, 0.0011694375425577164, 0.014995459467172623, -0.00596069497987628, -0.030757352709770203, 0.02472584694623947, -0.012871102429926395, 0.04875190556049347, 0.006402228027582169, 0.012171314097940922, -0.009138899855315685, 0.014162378385663033, -0.05271736904978752, -0.04332021623849869, -0.027658291161060333, -0.011971374973654747, 0.0013943694066256285, -0.02489246241748333, 0.019993945956230164, -0.012737809680402279, 0.027108458802103996, 0.0369221530854702, 0.011163286864757538, 0.002201416762545705, -0.001307937316596508, 0.0062980931252241135, -0.006256438791751862, 0.014220694079995155, 0.0054566808976233006, 0.022076647728681564, -0.030790677294135094, 0.019210848957300186, 0.033289920538663864, -0.005256741773337126, -0.027275074273347855, -0.01213799137622118, -0.020610425621271133, 0.0016849064268171787, 0.006781280040740967, 0.005469177383929491, -0.005069298204034567, -0.01367919147014618, -0.006102318875491619, -0.005090125370770693, -0.000586801499594003, 0.030357474461197853, 0.01213799137622118, -0.016295066103339195, -0.007697669323533773, -0.014578918926417828, -0.023326270282268524, -0.005073463544249535, 0.007622691802680492, 0.0018588121747598052, -0.02655862458050251, 0.019177526235580444, -0.01316268090158701, 0.021676769480109215, 0.025009093806147575, -0.012187976390123367, 0.01068843062967062, 0.008764012716710567, 0.0011673548724502325, 0.002101446967571974, -0.016978193074464798, -0.010588460601866245, -0.020793704316020012, 0.024342628195881844, 0.004361179657280445, 0.006747956853359938, -0.007660180330276489, -0.016953200101852417, -0.002332627074792981, -0.02860800363123417, -0.06421388685703278, -0.012871102429926395, 0.05295063182711601, -0.04278704524040222, -0.00025812495732679963, -0.0025804685428738594, 0.013545898720622063, 0.00246175448410213, 0.018810970708727837, 0.01636171154677868, 0.002086868043988943, 0.007289459463208914, 0.01927749626338482, -0.023576194420456886, -0.0023513713385909796, -0.014962135814130306, 0.006602167617529631, -0.002151431981474161, -0.014503941871225834, -0.02389276586472988, 0.04168737679719925, -0.01243790052831173, -0.0049693286418914795, 0.0005633710534311831, -0.028791282325983047, -0.005823236890137196, 0.020993642508983612, 0.018527723848819733, -0.01969403587281704, -0.0017317673191428185, 0.0069520617835223675, 0.0056941090151667595, 0.05145108699798584, -0.005856560077518225, -0.024375952780246735, 0.005123448558151722, -0.03260679170489311, -0.007497729733586311, 0.0034031362738460302, -0.027258412912487984, 0.04112088307738304, -0.010138596408069134, 0.006085657048970461, 0.011779766529798508, 0.01907755620777607, 0.029107851907610893, -0.019660713151097298, 0.004167488310486078, 0.002211830345913768, 0.010530144907534122, -0.01378749217838049, -0.021260229870676994, -0.002119150012731552, 0.019594067707657814, -0.00580240972340107, -0.019377466291189194, 0.006235612090677023, -0.01719479262828827, -0.0075102257542312145, -0.0021274806931614876, 0.004336187150329351, 0.003778022713959217, -0.006739625707268715, -0.0190608948469162, -0.019210848957300186, -0.009822025895118713, -0.031857021152973175, -0.010105273686349392, -0.005448350217193365, -0.02074371837079525, -0.0008257916197180748, 0.004960997961461544, 0.0003902464231941849, 0.0008856693166308105, -0.023176316171884537, -0.012679493986070156, -0.04665254056453705, -0.0021576799917966127, 0.020660411566495895, -0.04795214533805847, -0.007868451066315174, 0.004073766525834799, -0.004756893031299114, -0.013354289345443249, -0.01801121234893799, 0.024359291419386864, -0.02592548355460167, 0.00308864819817245, -0.020177222788333893, -0.017977889627218246, 0.02777492254972458, 0.011479857377707958, 0.010830054059624672, 0.00871402770280838, 0.03942139819264412, -0.02052711695432663, 0.00409042788669467, -0.04058770835399628, 0.014770527370274067, -0.0007049948326312006, -0.06701304018497467, 0.022776436060667038, 0.02844138815999031, 0.045319609344005585, 0.006735460367053747, -0.009130568243563175, -0.011446533724665642, 0.016728268936276436, -0.011746442876756191, 0.0018515227129682899, -0.009580432437360287, 0.014345656149089336, -0.004544457420706749, 0.04668586328625679, 0.0053108916617929935, -0.04212057963013649, 0.013795822858810425, 0.022743113338947296, 0.005006817169487476, -0.013012726791203022, -0.009863680228590965, -0.012496216222643852, -0.00658967113122344, 0.009996972978115082, -0.007431083358824253, 0.006002349313348532, 0.010555136948823929, 0.005123448558151722, -0.010963346809148788, -0.030124211683869362, -0.008039232343435287, -0.002422183286398649, 0.005831567570567131, -0.020260531455278397, -0.03878825530409813, -0.06877917051315308, -0.005681612994521856, 0.002043131273239851, 0.01194638293236494, -0.010705091990530491, 0.0027220924384891987, 0.0159784946590662, 0.004981824662536383, -0.013129358179867268, -0.02052711695432663, -0.019843991845846176, -0.0027033481746912003, 0.01822781376540661, 0.025775529444217682, -0.0040883454494178295, -0.005627462640404701, -0.02467586100101471, 0.005448350217193365, 0.010913361795246601, 0.017794610932469368, -0.005889883264899254, 0.01514541357755661, 0.04145411401987076, -0.008605727925896645, -0.003182369749993086, 0.032673440873622894, -0.017278101295232773, -0.00757687259465456, -0.01380415353924036, -0.04791882261633873, -0.013495913706719875, -0.01946077309548855, -0.025692220777273178, -0.00011344221275066957, 0.025408972054719925, 0.005589974112808704, 0.010696761310100555, -0.0072394744493067265, 0.026691917330026627, 0.006835430394858122, 0.00013407398364506662, 0.013495913706719875, -0.029407761991024017, 0.007593533955514431, 0.0023409577552229166, -0.006556347943842411, -0.015570285730063915, -0.03775523602962494, 0.003678052918985486, 0.01741139404475689, 0.002538814675062895, -0.013745837844908237, -0.005535823758691549, -0.027874892577528954, 0.0070936852134764194, -0.0034781135618686676, 0.0003350547922309488, -0.015670254826545715, 0.0005404613330028951, -0.005519161932170391, 0.05078462138772011, 0.006852091755717993, 0.0010069867130368948, 0.0015703578246757388, -0.03545593097805977, 0.01504544448107481, 0.03925478085875511, 0.020227208733558655, 0.04481976106762886, -0.021243566647171974, 0.021843384951353073, 0.016103457659482956, -0.005673282314091921, 0.0023742811754345894, 0.03568919375538826, 0.006089822854846716, 0.03313996642827988, 0.017328087240457535, 0.03738867864012718, 0.007593533955514431, -0.021443506702780724, 0.005152606405317783, -0.0012798208044841886, -0.00838496070355177, -0.029174499213695526, -0.008530749939382076, -0.010088611394166946, 0.000688333238940686, 0.01679491437971592, 0.0022159956861287355, 0.028691312298178673, 0.029391100630164146, 0.02760830707848072, 0.026625271886587143, -0.0019150450825691223, 0.047818854451179504, -0.030240843072533607, 0.0010767573257908225, -0.02237655781209469, -0.010121935047209263, 0.007976751774549484, -0.012679493986070156, 0.005110952537506819, -0.01327098160982132, 0.0004475207533687353, 0.002755415625870228, -0.0038550826720893383, 0.007556045427918434, -0.023692825809121132, -0.0353226363658905, -0.016053471714258194, -0.020643748342990875, -0.0038280074950307608, -0.003905067453160882, 0.011846412904560566, -0.011371556669473648, 0.023526210337877274, -0.013954107649624348, -0.004273706115782261, 0.001139238360337913, 0.0010069867130368948, 0.042853690683841705, 0.009755379520356655, -0.053817037492990494, 0.0007945511024445295, 0.0012110916431993246, -0.028341418132185936, -0.008255833759903908, -0.02057710289955139, 0.010038627311587334, -0.03299001231789589, -0.005573312286287546, 0.002129563596099615, 0.003971714060753584, -0.006777114700525999, 0.015603608451783657, 0.02842472679913044, -0.0026908519212156534, 0.0038405037485063076, -0.0406876802444458, 0.007714330684393644, 0.032706763595342636, -0.020843688398599625, -0.012104667723178864, -0.0016328388592228293, 0.015836872160434723, -0.0034343767911195755, 0.005402531009167433, 0.01442063320428133, -0.00871402770280838, -0.008143367245793343, -0.0006966640357859433, 0.032240238040685654, 0.0019660713151097298, -0.015645261853933334, -0.02239321917295456, -0.005306726321578026, 0.015520300716161728, 0.014304001815617085, -0.008043398149311543, -0.012462892569601536, -0.0011288248933851719, 0.040554385632276535, 0.004146661143749952, 0.013920784927904606, 0.00041575951036065817, -0.005898213945329189, -0.01844441518187523, 0.0005461887922137976, -0.0051151178777217865, 0.006452213041484356, -0.003496857825666666, 0.019810667261481285, 0.00031683113775216043, -0.0015370346372947097, -0.009663740172982216, -0.0026929345913231373, 0.0041091726161539555, 0.0002550009230617434, 0.024542568251490593, -0.006614663638174534, -0.012746140360832214, 0.01160481944680214, 0.005415027029812336, 0.02365950308740139, 0.022709790617227554, -0.004048774018883705, 0.004113337956368923, -0.001116328639909625, 0.015853533521294594, 0.019377466291189194, 0.03962133452296257, 0.003590579377487302, -0.01640336588025093, 0.007535218261182308, -0.004544457420706749, 0.026042114943265915, -0.0030178362503647804, -0.038055144250392914, -0.029341114684939384, 0.0016859478782862425, -0.0004108131106477231, 0.004486141726374626, 0.005764921195805073, -0.003069903701543808, -0.0017734213033691049, -0.0228264220058918, 0.027508337050676346, 0.01265450194478035, -0.0184610765427351, -0.004348683170974255, -0.004096676129847765, 0.02240988053381443, -0.013004395179450512, 0.00045949628110975027, -0.013212665915489197, -0.013220996595919132, -0.003167790826410055, 0.01068843062967062, -0.02445925958454609, 0.015545292757451534, -0.008997275494039059, -0.00036811770405620337, -0.008930629119277, 0.006781280040740967, 0.012162983417510986, 0.019327480345964432, -0.07877614349126816, -0.0228264220058918, 0.011529842391610146, -0.008147533051669598, -0.0031323847360908985, -0.001274614012800157, -0.016936538740992546, 0.00512761389836669, 0.014370648190379143, 0.025692220777273178, 0.0013860386097803712, 0.025758866220712662, -0.011338233016431332, -0.016903214156627655, 0.006747956853359938, -0.024142690002918243, 0.014687219634652138, 0.01847773790359497, 0.02885792776942253, -0.0394880436360836, -0.011754773557186127, 0.009605424478650093, 0.008747351355850697, -0.0032302718609571457, -0.00015958709991537035, 0.0032844222150743008, 0.0051359450444579124, -0.004269540309906006, -0.008064224384725094, 0.010605121962726116, 0.016095126047730446, -0.0034822789020836353, 0.01401242334395647, -0.03190700709819794, 0.006977053824812174, 0.007947593927383423, -0.023109668865799904, 0.02759164571762085, -0.012962741777300835, 0.010305212810635567, 0.002524235751479864, 0.0163783747702837, -0.015020451508462429, -0.020810365676879883, 0.008239171467721462, -0.004781885538250208, -0.007689338177442551, 0.017178131267428398, 0.013920784927904606, 0.017744626849889755, -0.03845502436161041, 0.019827330484986305, 0.0021035296376794577, -0.012829449027776718, -0.010430174879729748, -0.021893370896577835, -0.00914723053574562, -0.007039535325020552, 0.008014240302145481, -0.0003902464231941849, -0.014595580287277699, 0.027225090190768242, -0.0002250620600534603, 0.006556347943842411, 0.010705091990530491, 0.018411092460155487, -0.009155561216175556, 0.02177673950791359, -0.012854441069066525, 0.01887761801481247, 0.007660180330276489, 0.012762801721692085, 0.019960623234510422, 0.02784156985580921, 0.02096031978726387, -0.027108458802103996, -0.028158141300082207, -0.023609517142176628, -0.0003071986429858953, 0.0011454864870756865, -0.0032844222150743008, 0.0021201912313699722, 0.010746746324002743, 0.001048640813678503, -0.012387915514409542, -0.01806119829416275, -0.02344290167093277, 0.0005394199979491532, 0.04458649829030037, 0.012171314097940922, -0.0017119816038757563, -0.0005685778451152146, -0.04995154216885567, 0.03254014626145363, -0.015861863270401955, 0.03775523602962494, 0.008605727925896645, -0.028124816715717316, -0.013329297304153442, -0.02217661775648594, -0.007681007497012615, 0.018611030653119087, -0.004481976386159658, -0.05754924193024635, 0.019760683178901672, 0.007339444477111101, 0.018594369292259216, -0.019827330484986305, 0.0020691652316600084, 0.03154044970870018, -0.028574680909514427, -0.03488943725824356, 0.0005342132644727826, 0.014345656149089336, 0.029724333435297012, 0.0035468426067382097, -0.03007422760128975, 0.0006128352833911777, -0.01681157574057579, 0.0013672943459823728, 0.012587854638695717, 0.018994249403476715, 0.0014370648423209786, 0.006002349313348532, -0.021843384951353073, -0.004175818990916014, -0.006573009770363569, -0.00025955683668144047, 0.031040601432323456, 0.016919877380132675, 0.011271586641669273, -0.025075741112232208, -0.009605424478650093, -0.01440397184342146, 0.01463723462074995, 0.004906847607344389, 0.029157837852835655, -0.013529236428439617, 0.011446533724665642, 0.011588158085942268, -0.02885792776942253, -0.000925240688957274, -0.008789005689322948, 0.025992128998041153, -0.006093988195061684, -0.019377466291189194, -0.004277871455997229, -0.01593684032559395, -0.007851788774132729, -0.0007299872813746333, 0.02196001634001732, 0.0019129624124616385, -0.03313996642827988, -0.016544990241527557, -0.013595882803201675, 0.010646776296198368, 0.0005633710534311831, -0.02487580105662346, -0.014079070650041103, -0.024409275501966476, 0.011388218030333519, -0.0008809832506813109, 0.0015724404947832227, -0.005069298204034567, -0.021293552592396736, -0.0019004661589860916, 0.028324756771326065, 0.015728570520877838, -0.011146624572575092, -0.013812484219670296, 0.028274770826101303, -0.033939722925424576, -0.010838384740054607, 0.005760755855590105, -0.003373978426679969, -0.009030599147081375, 0.03112390823662281, -0.014095732010900974, 0.016761591657996178, 0.00030745897674933076, 0.0072394744493067265, 0.00914723053574562, -0.025358987972140312, -0.017328087240457535, -0.007822630926966667, 0.025075741112232208, -0.024392614141106606, -0.021026967093348503, 0.002967851236462593, -0.004619434475898743, 0.031840357929468155, -0.0038904885295778513, 0.017861258238554, 0.0002819458895828575, -0.006185627076774836, -0.011963044293224812, -0.012171314097940922, 0.0013225162401795387, 0.015037113800644875, 0.004067518282681704, -0.0030948962084949017, -0.007381098344922066, 0.005948198959231377, 0.004365344997495413, 0.019644051790237427, 0.012204637750983238, 0.007243639789521694, 0.045952752232551575, -0.035555899143218994, -0.009305515326559544, -0.028591342270374298, 0.0006513652624562383, -0.0028262275736778975, -0.02119358256459236, -0.011871404945850372, 0.01232959982007742, -0.000846097944304347, -0.01472054235637188, -0.015803547576069832, 0.01369585283100605, 0.005594139453023672, 0.0005961736314930022, 0.04745229706168175, 0.03835505247116089, -0.0018765151035040617, 0.0027824908029288054, -0.014179039746522903, 0.03189034387469292, -0.009047260507941246, -0.0029720168095082045, -0.005256741773337126, -0.004773554392158985, 0.025159047916531563, -0.0074602412059903145, 0.03375644609332085, -0.0008705697255209088, 0.007631022483110428, 0.0035114367492496967, 0.0056024701334536076, 0.022109972313046455, -0.011496518738567829, 0.004915178287774324, -0.010721753351390362, 0.013329297304153442, 0.01826113648712635, -0.004844366572797298, 0.02176007814705372, -0.00041133377817459404, -0.023192977532744408, -0.02389276586472988, 0.007951758801937103, 0.005173433572053909, -0.004856862593442202, 0.014970466494560242, -0.0010975843761116266, -0.002628370886668563, 0.018511060625314713, 0.033956386148929596, -0.0037405339535325766, -0.011696457862854004, -0.004448652733117342, -0.014887158758938313, 0.019394127652049065, -0.0015932675451040268, 0.0253090038895607, -0.018927602097392082, -0.006772949360311031, 0.0017317673191428185, -0.009897002950310707, 0.00788094662129879, -0.017744626849889755, 0.008680704981088638, -0.001444354304112494, 0.00164741778280586, -0.013862469233572483, -0.032273560762405396, -0.010638445615768433, 0.006156469229608774, -0.025159047916531563, -0.009780371561646461, 0.016694944351911545, -0.005719101522117853, 0.00477772019803524, -0.006089822854846716, -0.011388218030333519, -0.007522722240537405, 0.011971374973654747, -0.009222207590937614, -0.008572404272854328, 0.0020035600755363703, -0.01421236339956522, -0.006135642062872648, -0.0053108916617929935, -0.010205242782831192, -0.01656165160238743, 0.0007804928463883698, -0.005777417216449976, -0.005831567570567131, 0.009921995922923088, -0.009097245521843433, 0.020377162843942642, -0.01721145585179329, 0.009255530312657356, -0.01680324599146843, -0.0006112732226029038, -0.00871402770280838, 0.002924114465713501, 0.017994550988078117, -0.018727662041783333, 0.0064730397425591946, 0.006406393367797136, -0.0013266815803945065, -0.011204940266907215, 0.002888708608224988, 0.00021582006593234837, -0.027108458802103996, -0.012496216222643852, -0.0064438823610544205, 0.06244775652885437, 0.0016172186005860567, 0.01615344174206257, -0.011171617545187473, 0.003373978426679969, -0.0013933280715718865, -0.013745837844908237, 0.016553321853280067, 0.032223574817180634, -0.008938959799706936, 0.010663437657058239, -0.007822630926966667, -0.0013370951637625694, 0.019860653206706047, -0.0159784946590662, 0.015370345674455166, 0.00487352441996336, 0.02572554349899292, -0.015478646382689476, 0.020827027037739754, 0.002561724279075861, 0.0037613611202687025, -0.00850992277264595, 0.031473804265260696, 0.00789344310760498, 0.010938354767858982, -0.0038030152209103107, 0.021510154008865356, -0.0023097172379493713, 0.02839140221476555, -0.013837476260960102, -0.02012723870575428, -0.0067312950268387794, 0.00028506992384791374, -0.011679796501994133, 0.02404271997511387, -0.007685172837227583, 0.029740994796156883, -0.010138596408069134, 0.010446836240589619, 0.004815208725631237, 0.014170709066092968, 0.021443506702780724, 0.026658594608306885, -0.010996670462191105, -0.011904728598892689, 0.009072252549231052, -0.0017578010447323322, -0.011979705654084682, -0.017894580960273743, -0.01656165160238743, -0.025392310693860054, 0.01254620123654604, 0.01889427937567234, 0.037055447697639465, 0.007560210768133402, -0.0006570927216671407, -0.010530144907534122, 0.003644729731604457, 0.0006399104022420943, -0.01661163754761219, 0.023076346144080162, -0.026275377720594406, -0.014412302523851395, -0.0021024884190410376, -0.029124515131115913, -0.022676466032862663, 0.010938354767858982, -0.00016375249833799899, -0.008068390190601349, -0.010530144907534122, 0.0032094449270516634, 0.003686383832246065, -0.014520603232085705, -0.012171314097940922, 0.012721148319542408, -0.006518859416246414, 0.03357316553592682, 0.01662829890847206, 0.0013370951637625694, 0.0064230551943182945, -0.0025325664319097996, 0.016644960269331932, -0.015920178964734077, 0.00451113423332572, -0.0024409275501966476, 0.005681612994521856, -0.002515904838219285, 0.0016755342949181795, -0.014370648190379143, -0.011688127182424068, -0.020410485565662384, -0.003542677266523242, -0.0051359450444579124, 0.012071345001459122, -0.0037426166236400604, 0.0035843313671648502, -0.00923053827136755, 0.0003777501988224685, -0.0022930556442588568, 0.004144578240811825, 0.017061499878764153, 0.0004108131106477231, -0.003834255738183856, 0.022326573729515076, -0.0035031058359891176, 0.012096337042748928, 0.0016859478782862425, -0.02076037973165512, -0.015628600493073463, -0.009713725186884403, -0.01431233249604702, -0.015137082897126675, 0.013629206456243992, -0.00043502452899701893, 0.018827632069587708, 0.015703577548265457, -0.007855954580008984, 0.003192783333361149, -0.0050942907109856606, -0.022509850561618805, -0.026225391775369644, 0.005952364299446344, 0.009080584160983562, 0.006106484215706587, -0.0006565719959326088, -0.020610425621271133, -0.006781280040740967, -0.005685778334736824, 0.006235612090677023, 0.011254925280809402, -0.0056024701334536076, 0.008030901663005352, -0.002684603678062558, 0.0016984440153464675, -0.004711073357611895, -0.010121935047209263, 0.002311799908056855, 0.012662832625210285, 0.003923811949789524, 0.010946685448288918, 0.0023534540086984634, 0.016553321853280067, 0.024375952780246735, -0.0044403220526874065, 0.022143295034766197, 0.01576189324259758, -0.03054075315594673, -0.0015380759723484516, 0.013520905748009682, 0.028974559158086777, -0.022493189200758934, 0.009888672269880772, -0.010863376781344414, -0.012212968431413174, -0.013454259373247623, -0.02280976064503193, 0.03387307748198509, -0.021893370896577835, -0.011188278906047344, 0.0010611370671540499, -0.024775831028819084, -0.009288853965699673, 0.004302863962948322, 0.01847773790359497, -0.00041706120828166604, -0.0051859295926988125, 0.01989397592842579, 0.011288248933851719, -0.002855385420843959, -0.018794309347867966, 0.004965163301676512, -0.004398668184876442, -0.018810970708727837, 0.01461224164813757, -0.004163322504609823, -0.014703880995512009, -0.003780105384066701, -0.026441993191838264, 0.010655106976628304, -7.90125341154635e-05, 0.004092510789632797, 0.0020035600755363703, 0.0070770238526165485, 0.0024013561196625233, -0.006252273451536894, 0.01119660958647728, 0.004204976838082075, 0.004794381558895111, 0.0035010231658816338, 0.0036967971827834845, 0.018127843737602234, -0.012804456055164337, 0.003351068589836359, -0.046152692288160324, -0.023942749947309494, 0.008764012716710567, 0.007139504887163639, 0.005710770841687918, -0.004719404503703117, -0.004848531913012266, -0.007593533955514431, 0.00797258596867323, 0.03070736862719059, -0.009597093798220158, -0.006523024756461382, -0.010213574394583702, 0.002459671813994646, -0.010013634338974953, -0.003609323874115944, -0.03313996642827988, -0.023576194420456886, 0.003182369749993086, 0.008672374300658703, -0.018994249403476715, -0.003969631157815456, 0.018344445154070854, 0.0228264220058918, 0.011079978197813034, 0.015528631396591663, -0.001747387577779591, 0.01267116330564022, -0.006781280040740967, -0.0001849700347520411, -0.011421541683375835, -0.0011194526450708508, -0.0010324998293071985, 0.013295973651111126, -0.0033219107426702976, 0.005635793320834637, 0.005231749266386032, -0.020160561427474022, -0.02529234066605568, 0.014029085636138916, -0.0015411999775096774, 0.023409578949213028, 0.013454259373247623, 0.0019827329088002443, 0.020877011120319366, -0.019843991845846176, -0.0036572259850800037, -0.0023659502621740103, -0.015861863270401955, -0.00841411855071783, 0.0015016286633908749, -0.011429872363805771, 0.01058012992143631, -0.0016765756299719214, 0.0016828237567096949, -3.211918010492809e-05, -0.008955621160566807, -0.0006586547242477536, -0.006827099248766899, 0.015703577548265457, 0.01350424438714981, 0.007189489901065826, 0.0019244173308834434, -0.001140279695391655, -0.009588763117790222, -0.016461681574583054, 0.0031407156493514776, 0.0042445482686161995, -0.02119358256459236, -0.014987128786742687, 0.028741296380758286, 0.015928510576486588, -0.005348380655050278, 0.0022180783562362194, 0.0023992734495550394, -0.008405787870287895, 0.00580240972340107, -0.009588763117790222, -0.0031761215068399906, 0.012979403138160706, -0.021260229870676994, -0.010513483546674252, -0.022343235090374947, -0.018577707931399345, -0.009347169660031796, 1.3846718502463773e-05, 0.014054077677428722, -0.018711000680923462, 0.01806119829416275, -0.019594067707657814, 0.001955657731741667, -0.014279009774327278, -0.007218647748231888, 0.023992735892534256, -0.004254961386322975, 0.0022534842137247324, 0.0038425864186137915, -0.01638670451939106, 0.022259926423430443, -0.0013704183511435986, 0.0009205545648001134, 0.02929113060235977, -0.0033760610967874527, 0.010130265727639198, 0.006935399957001209, 0.022476527839899063, -0.0331566259264946, 0.001987939700484276, 0.004911012947559357, -0.02056044153869152, -0.00039337045745924115, -0.004615269135683775, 0.0077476538717746735, -0.0036530604120343924, -0.010071950033307076, 0.004336187150329351, -0.009288853965699673, 0.009005606174468994, 0.0033364896662533283, -0.00663549080491066, 0.01388746127486229, -0.02737504430115223, 0.014037416316568851, 0.024975771084427834, -0.031607095152139664, 0.007414421532303095, -0.012496216222643852, 0.006922903936356306, -0.00933883897960186, 0.012504546903073788, -0.0048776897601783276, -0.00701037747785449, -0.0062022884376347065, -0.015395338647067547, -0.019227512180805206, -0.016328388825058937, 0.025009093806147575, -0.02527567930519581, 0.002372198272496462, 0.0015922262100502849, 0.012321269139647484, 0.005869056098163128, 0.017478041350841522, 0.011129963211715221, 0.0005690985126420856, 0.005248410627245903, -0.023076346144080162, 0.014204032719135284, 0.010038627311587334, 0.010071950033307076, -0.0036926318425685167, 0.009946987964212894, -0.0011100805131718516, -0.006739625707268715, -0.016844898462295532, -0.0012475389521569014, -0.001985857030376792, -0.006860422436147928, 0.0032115275971591473, 0.008905637077987194, 0.013354289345443249, -0.004552788101136684, 0.011763105168938637, 0.015103760175406933, -0.023542871698737144, -0.013704183511435986, -0.011363225989043713, 0.011388218030333519, -0.008393291383981705, -0.0006758370436728001, 0.009772040881216526, -0.010205242782831192, 0.00690207676962018, 0.013495913706719875, -0.024442598223686218, 0.024392614141106606, -0.016028480604290962, -0.014079070650041103, -0.032706763595342636, -0.004382006358355284, -0.024809153750538826, -0.015853533521294594, 0.008572404272854328, 0.00840995367616415, 0.0027741598896682262, -0.0046069384552538395, 0.013229327276349068, 0.007885112427175045, 0.0044653145596385, 0.002288890304043889, 0.018527723848819733, 0.0010569716105237603, 0.008030901663005352, 0.020843688398599625, 0.005202591419219971, -0.01677825301885605, -0.007356105837970972, -0.0070936852134764194, -0.008963952772319317, -0.016953200101852417, 0.00487352441996336, 0.008359968662261963, -0.034522879868745804, 0.01391245424747467, -0.0063689048402011395, -0.0024201006162911654, -0.000468347774585709, -0.011079978197813034, -0.005735763348639011, 0.029774317517876625, 0.014112393371760845, -0.01744471862912178, 0.00043736756197176874, 0.008243337273597717, 0.004890185780823231, 0.0020379244815558195, 0.008151697926223278, -0.0005815947079099715, -0.013462590053677559, -0.0020254284609109163, 0.030407458543777466, -0.015103760175406933, -0.0018973421538248658, -0.00394463911652565, 0.009647078812122345, -0.004790216218680143, -0.002888708608224988, 0.004452818538993597, 0.02450924552977085, 0.0027595809660851955, 0.00121838110499084, 0.002457589143887162, 0.02112693525850773, -0.008789005689322948, -0.003790518967434764, 0.010821723379194736, -0.007826796732842922, -0.016303395852446556, -0.0004188835737295449, 0.027441689744591713, -0.014962135814130306, -1.5441288269357756e-05, 0.011096639558672905, -0.0033469032496213913, -0.004209142178297043, 0.030857322737574577, -0.02552560344338417, 0.008280825801193714, -0.006464709062129259, -0.0010512442095205188, 0.02595880627632141, 0.011179948225617409, 0.007864285260438919, 8.343827357748523e-05, 0.002649197820574045, -0.014803851023316383, 0.005119283217936754, 0.019843991845846176, 0.009813695214688778, 0.011571495793759823, -0.02136019803583622, 0.0013891627313569188, -0.009913665242493153, 0.023326270282268524, 0.01098000817000866, -0.0234262403100729, 0.0028616334311664104, 0.001591184874996543, -0.0002162105665775016, 0.010130265727639198, -0.008051728829741478, -0.014478948898613453, -0.007381098344922066, 0.019594067707657814, -0.0068562570959329605, 0.012746140360832214, -0.01377916056662798, -0.004069601185619831, 0.008689035661518574, -0.010746746324002743, 0.019560743123292923, 0.0010007385862991214, -0.00529839564114809, -0.0019806502386927605, -0.009680402465164661, -0.010630114935338497, -0.013429267331957817, 0.026491979137063026, 0.00995531864464283, 0.0006862505106255412, 0.02777492254972458, 0.0018785977736115456, 0.014129054732620716, 0.01762799546122551, 0.007789308205246925, 0.03410634025931358, 0.015736902132630348, 0.008272495120763779, -0.008622389286756516, -0.00872235931456089, 0.008930629119277, -0.006677144672721624, 0.0001319912844337523, -0.002730423118919134, 0.01350424438714981, 0.0133959436789155, -0.003700962755829096, -0.0012058848515152931, 0.009946987964212894, 0.0027137615252286196, -0.005510831251740456, -0.00773515785112977, -0.015162075869739056, 0.008168360218405724, 0.008755682036280632, 0.00493600545451045, -0.0027595809660851955, 0.00575659004971385, -0.013171011582016945, 0.018111182376742363, 0.0060065146535634995, 0.015861863270401955, 0.016761591657996178, -0.0014131137868389487, 0.011079978197813034, -0.020693734288215637, -0.009430477395653725, -0.02864132821559906, -0.010613452643156052, -0.011446533724665642, 0.004452818538993597, 0.02117692120373249, 0.027541659772396088, 0.034356262534856796, 0.023126330226659775, -0.005448350217193365, -0.01722811721265316, -0.004719404503703117, -0.008639050647616386, -0.010705091990530491, 0.01204635202884674, 0.007993413135409355, 0.01682823710143566, 0.013729176484048367, 0.022326573729515076, -0.017161469906568527, 0.011954713612794876, 0.009388823993504047, -0.007097850553691387, 0.002186837838962674, -0.0043861716985702515, -0.02427598275244236, -0.0014068656601011753, -0.008218345232307911, 0.008330810815095901, -0.003911315463483334, 0.0003899860894307494, -0.014445626176893711, 0.03152378648519516, -0.00041914390749298036, -0.005981522146612406, -0.020627086982131004, 0.0021805898286402225, 0.006019010674208403, -0.014820512384176254, 0.007639353629201651, 0.009863680228590965, -0.0032760913018137217, 0.0026012957096099854, -0.0038550826720893383, -0.031007276847958565, 0.0048776897601783276, 0.031640417873859406, -0.005894048605114222, -0.013329297304153442, 0.016020148992538452, -0.023292947560548782, 0.011963044293224812, -0.017927905544638634, 0.011271586641669273, -0.01316268090158701, -0.007164497394114733, -0.014912151731550694, -0.0012610764242708683, 0.01641169749200344, -0.005244245287030935, 0.006560513284057379, -0.021060289815068245, -0.011054986156523228, -0.005760755855590105, -0.0023180481512099504, 0.01784459687769413, -0.004486141726374626, 0.007751819211989641, 0.023559533059597015, -0.0253090038895607, 0.012821117416024208, -0.026691917330026627, 0.013579221442341805, -0.00326984329149127, 0.004919343627989292, -0.004406998865306377, 0.004756893031299114, 0.008351637981832027, -0.015020451508462429, -0.010763407684862614, -0.01254620123654604, 0.019027572125196457, -0.0010064661037176847, -0.013462590053677559, 0.0013870799448341131, 0.013670860789716244, 0.010530144907534122, -0.0014787189429625869, 0.00028506992384791374, -0.00404044333845377, 0.007614361122250557, -0.026008790358901024, 0.010705091990530491, -0.004911012947559357, -0.010546806268393993, -0.006148138549178839, -0.0012808621395379305, -0.0023638675920665264, 0.00798508245497942, -0.01994396187365055, -0.024375952780246735, -0.020177222788333893, 0.012112998403608799, 0.0018890113569796085, -0.01866101659834385, -0.004931840114295483, -0.002851220080628991, -0.005010982509702444, 0.005819071549922228, -0.012162983417510986, 0.006014845333993435, -0.0012798208044841886, -0.013862469233572483, -0.003990458324551582, -0.014995459467172623, -0.00415082648396492, -0.014545595273375511, -0.0004808439698535949, -0.0038946541026234627, -0.01824447512626648, 0.003698880085721612, -0.0018806805601343513, 0.0033760610967874527, 0.002663776744157076, 0.014295671135187149, -0.01829446107149124, 0.011229933239519596, 0.007551880087703466, -0.013554229401051998, 0.003396888030692935, -0.02762496843934059, -0.00715616624802351, 0.006331416312605143, -0.001862977514974773, -0.01254620123654604, 0.004690246656537056, 0.007047866005450487, -0.0261087603867054, 0.006722964346408844, 0.008484930731356144, -0.03365647420287132, -0.020477132871747017, -0.00435701385140419, 0.011379887349903584, 0.00742275221273303, -0.03050742857158184, -0.001038747956044972, 0.015312029980123043, -0.0018796392250806093, -0.011071647517383099, 0.008497427217662334, 0.016328388825058937, 0.004207059275358915, 0.026225391775369644, 0.002699182601645589, 0.003923811949789524, 0.0067854453809559345, 0.004427826032042503, -0.0197440218180418, -0.03385641425848007, -0.013412605039775372, 0.029940932989120483, -0.0039321426302194595, -0.0318736806511879, -1.1479271051939577e-05, -0.01719479262828827, 0.006135642062872648, -0.004290367476642132, 0.015653593465685844, 0.01028022076934576, -0.0247091855853796, -0.016111787408590317, -0.00706036202609539, -0.013854138553142548, 0.014145717024803162, 0.008838989771902561, 0.00399462366476655, -0.00828499160706997, -0.0230263601988554, -0.006985384970903397, -0.018094521015882492, -0.005360876675695181, 0.003675970248878002, 0.018711000680923462, 0.022059986367821693, 0.010930024087429047, 0.0062272809445858, 0.007797638885676861, -0.0026471151504665613, 0.0032448507845401764, 0.004927674774080515, -0.015645261853933334, 0.00012138251622673124, -0.004706908017396927, -0.012904426082968712, -0.03938807174563408, -0.01028022076934576, 0.010705091990530491, -0.01971069909632206, 0.02116025984287262, 0.019327480345964432, 0.009563771076500416, -0.001975443447008729, 0.008897305466234684, -0.017511364072561264, -0.025475619360804558, 0.008747351355850697, -0.0041091726161539555, -0.007693503517657518, 0.00746857188642025, 0.007755985017865896, -0.016486674547195435, -0.006918738130480051, 0.01192138995975256, 0.007110347039997578, -0.005835732910782099, 7.426137017318979e-05, -0.022909728810191154, -0.0018473572563380003, 0.002640866907313466, 0.005856560077518225, -0.01994396187365055, -0.0028137313202023506, -0.0030490767676383257, 0.02220994234085083, -0.01484550442546606, -0.007052031345665455, 0.008572404272854328, -0.005506665911525488, -0.005431688390672207, -0.015536962077021599, -0.020827027037739754, 0.004548622760921717, -0.00012541774776764214, 0.0020910336170345545, 0.017511364072561264, 0.023576194420456886, -0.016261743381619453, 0.01192138995975256, 0.006381400860846043, 0.022759774699807167, 0.019327480345964432, -0.0078018042258918285, 0.00275125028565526, -0.006789610721170902, 0.009463801048696041, -0.012829449027776718, -0.0162200890481472, -0.003180287079885602, 0.012487885542213917, 0.005744094029068947, 0.0020931162871420383, -0.01784459687769413, -0.02201000228524208, -0.011688127182424068, -0.007955924607813358, 0.0008403705433011055, 0.006039837840944529, 0.0157785564661026, 0.02197667956352234, -0.002515904838219285, -0.013212665915489197, -0.028524696826934814, -0.006781280040740967, -0.002807483309879899, 0.004952666815370321, 0.035589221864938736, 0.020277192816138268, 0.0008242296171374619, 0.030207520350813866, -0.0004412726266309619, -0.017694642767310143, -0.009780371561646461, 0.0029386933892965317, 0.027924878522753716, 0.0013516740873456001, 0.007780977059155703, 0.00298034748993814, -0.02389276586472988, -0.010305212810635567, 0.012921087443828583, -0.013670860789716244, 0.009897002950310707, -0.019160864874720573, -0.010938354767858982, -0.0037634437903761864, -0.012504546903073788, 0.031007276847958565, 0.020593764260411263, -0.001544324099086225, -0.0015245383838191628, -0.014812181703746319, -0.020043930038809776, -0.003621819894760847, -0.010396852158010006, -0.00736027117818594, 0.0027741598896682262, -0.007935097441077232, -0.0027679118793457747, 0.00869736634194851, -0.0163783747702837, 0.013629206456243992, 0.017861258238554, -0.015645261853933334, -0.015203729271888733, -0.004227886442095041, 0.004756893031299114, -0.0025429800152778625, -0.022993037477135658, 0.015686916187405586, 0.0005914875655435026, 0.004050856921821833, -0.018544385209679604, 0.008185021579265594, 0.013254320248961449, 0.011096639558672905, -0.002672107657417655, 6.435225714085391e-06, 0.003790518967434764, 0.004856862593442202, 0.011204940266907215, -0.0021035296376794577, 0.0035176847595721483, -0.0013725010212510824, 0.0013662530109286308, 7.061663927743211e-05, -0.01829446107149124, -0.012662832625210285, -0.0016963613452389836, -0.021693430840969086, 0.014262348413467407, 0.013312635943293571, 0.014387310482561588, 0.01656998321413994, -0.008764012716710567, 0.015378676354885101, 0.0015318278456106782, -0.012337930500507355, 0.003734285943210125, 0.004436156712472439, 0.009305515326559544, 0.015711909160017967, 0.005244245287030935, -0.0203438401222229, -0.005060967523604631, -0.009480462409555912, -0.010288551449775696, 0.026625271886587143, 0.003576000453904271, 0.013904123567044735, -0.016311727464199066, -0.006410558708012104, -0.01380415353924036, 0.01867767795920372, 0.00507762935012579, 0.00880566705018282, 0.01719479262828827, -0.0013506327522918582, -0.005852394737303257, -0.004706908017396927, -0.02387610450387001, 0.015228722244501114, 0.0014276927104219794, 0.005398365203291178, -0.022476527839899063, -0.01440397184342146, 0.026791887357831, -0.02176007814705372, 0.016078464686870575, 0.016936538740992546, 0.02844138815999031, 0.017294762656092644, 0.014678888954222202, -0.0061523038893938065, 0.009347169660031796, -0.017078161239624023, 0.015503638423979282, -0.008830659091472626, -0.014678888954222202, 0.01412072405219078, 0.005698274355381727, 0.0010220863623544574, -0.005560816265642643, -0.00017182297597173601, -0.013945776969194412, 0.0019764848984777927, -0.052417460829019547, 0.00591071043163538, -0.0023409577552229166, 0.0255089420825243, -0.029974257573485374, 0.008764012716710567, -0.010038627311587334, -0.003732203273102641, -0.0028720470145344734, 0.003205279354006052, 0.016328388825058937, -0.01784459687769413, -0.011404880322515965, -0.020627086982131004, -0.026008790358901024, 0.005573312286287546, -0.007231143768876791, -0.020410485565662384, -0.005969026125967503, 0.017111485823988914, -0.01038018986582756, -0.002029593801125884, -0.0007351940730586648, -0.009380493313074112, -0.008047563023865223, -0.003440624801442027, -0.004190397914499044, 0.018927602097392082, -0.014820512384176254, -0.000789864978287369, -0.004719404503703117, -0.003769691800698638, 0.0008539081318303943, 0.012504546903073788, 0.012487885542213917, 0.0009663740638643503, -0.02280976064503193, -0.020943658426404, -0.0261087603867054, 0.006872918922454119, -0.002878295024856925, -0.009946987964212894, 1.1365374120941851e-05, 0.00818918738514185, -0.013954107649624348, 0.004340352490544319, 0.006622994784265757, -0.006789610721170902, -0.0028283102437853813, -0.010471829213202, -0.004952666815370321, -0.0017848762217909098, -0.0468524806201458, 0.015328692272305489, -0.0014568505575880408, -0.020160561427474022, 0.018944263458251953, -0.009688733145594597, 0.008930629119277, -0.001488091074861586, 0.01410406269133091, -0.01316268090158701, -0.024192674085497856, 0.02051045559346676, 0.022126633673906326, -0.010538475587964058, -0.020993642508983612, 0.012946079485118389, -0.027475014328956604, 0.012371254153549671, -0.022459866479039192, 0.00060919055249542, -0.007176993414759636, 0.03778855875134468, -0.0012235877802595496, -0.02925780788064003, -0.00559830479323864, -0.004107089713215828, 0.014129054732620716, 0.028924575075507164, -0.004665254149585962, 0.013104365207254887, 0.013445928692817688, -0.01620342768728733, 0.0014027003198862076, -0.0022034994326531887, -0.008539080619812012, 0.015320360660552979, -0.004269540309906006, -0.01744471862912178, 0.009788702242076397, 0.017078161239624023, 0.005652455147355795, 0.016753260046243668, 0.0129544110968709, 0.01887761801481247, -0.007335278671234846, 0.020277192816138268, 0.01006361935287714, 0.005835732910782099, -0.01864435523748398, -0.005390034522861242, -0.020460471510887146, 0.027741599828004837, 0.0027241751085966825, -0.029091190546751022, -0.023976072669029236, 0.008139202371239662, -0.00349894049577415, 0.011096639558672905, 0.00924719963222742, 0.004736065864562988, 0.0037405339535325766, 0.012771133333444595, 0.006972888484597206, 0.015328692272305489, 0.020460471510887146, -0.01847773790359497, 0.020693734288215637, 0.017478041350841522, 0.007027038838714361, -0.006156469229608774, 0.004719404503703117, -0.018311122432351112, 0.017578011378645897, -0.007664346136152744, 0.001816116739064455, -0.008605727925896645, -0.016536658629775047, -0.00033114972757175565, -0.010288551449775696, 0.02077704295516014, -0.006664648652076721, 0.003988375887274742, 0.009622086770832539, -0.005894048605114222, 0.01952742040157318, 0.023959411308169365, -0.01864435523748398, -0.013579221442341805, 0.013629206456243992, -0.00653968658298254, 0.029107851907610893, -0.0021951687522232533, -0.036622244864702225, -0.0394880436360836, -0.008739020675420761, 0.003555173519998789, 0.01317934226244688, 0.0065146940760314465, -0.02220994234085083, -0.0022055821027606726, 0.023093007504940033, 0.0018348611192777753, -0.005410861689597368, 0.007843458093702793, -0.01243790052831173, -0.01927749626338482, 0.007943428121507168, -0.004952666815370321, 0.005952364299446344, -0.0007961131050251424, 0.010221905075013638, 0.02549228072166443, -0.005023478996008635, 0.0009054549736902118, 0.014970466494560242, 0.011988036334514618, -0.013137688860297203, 0.0056941090151667595, 0.0002934007497970015, 0.002603378379717469, 0.001953575061634183, 0.010080280713737011, 0.018944263458251953, -0.02014390006661415, 0.013820814900100231, -0.014987128786742687, 0.006685475818812847, -0.015586947090923786, 0.011071647517383099, 0.01699485443532467, 0.004061270039528608, -0.02092699706554413, 0.003965465817600489, -0.02554226666688919, -0.017478041350841522, 0.01744471862912178, -0.0038988194428384304, -0.005273403134196997, 0.01348758302628994, 0.01822781376540661, 0.0241093672811985, 0.0007971544400788844, -0.020260531455278397, -0.0015755646163597703, -2.1445328457048163e-05, -0.024009397253394127, 0.01401242334395647, 0.002805400639772415, -0.011679796501994133, 0.00037046073703095317, 0.007960089482367039, -0.033106643706560135, -0.011329902336001396, -0.008988944813609123, 0.006248108111321926, -0.00329483556561172, -0.008280825801193714, 0.00025786462356336415, 0.017861258238554, 0.008855652064085007, -0.008888974785804749, 0.0033927226904779673, -0.019877314567565918, 0.016295066103339195, 0.003859248012304306, 0.007597699295729399, -0.01656998321413994, 0.00477772019803524, 0.011929720640182495, -0.019594067707657814, -0.011538173072040081, 0.007306120824068785, 0.00018392868514638394, -0.010621783323585987, -0.005506665911525488, -0.006356408819556236, 0.017378071323037148, 0.020993642508983612, 0.006489701569080353, -0.012904426082968712, 0.03130718693137169, -0.02887459099292755, 0.038654960691928864, 0.007743488531559706, -0.0028595507610589266, 0.0030865652952343225, 0.010213574394583702, 0.006756287533789873, -0.024242660030722618, 0.0015630683628842235, 0.004415329545736313, 0.008076720871031284, 0.005294230300933123, -0.011313240975141525, 0.015461985021829605, -0.005219252780079842, -0.0037842707242816687, -0.010446836240589619, -0.022743113338947296, 0.0028283102437853813, -0.0023055518977344036, 0.00701037747785449, 0.005635793320834637, -0.017094824463129044, -0.005098456051200628, 0.0026887692511081696, 0.0038988194428384304, 0.009938657283782959, -0.010180250741541386, 0.011688127182424068, -0.00020683840557467192, 0.006256438791751862, -0.004673584830015898, -0.01827779971063137, -0.004323690664023161, -0.005494169890880585, -0.01884429343044758, -0.008039232343435287, 0.010371859185397625, 0.004619434475898743, 0.0006060664891265333, -0.005823236890137196, -0.007102016359567642, -0.018744323402643204, -0.001059575006365776, -0.013262650929391384, -0.001228794571943581, 0.0035593388602137566, -0.031023940071463585, -0.010821723379194736, 0.00808088667690754, -0.0012485802872106433, -0.007593533955514431, -0.006148138549178839, -0.017578011378645897, -0.0012100503081455827, 0.007347775157541037, 0.016969861462712288, -0.01547031570225954, 0.023076346144080162, -0.009205546230077744, 0.019410789012908936, 0.022559834644198418, 0.013129358179867268, -0.003090730868279934, -0.006747956853359938, -0.014920482411980629, -0.000767475925385952, 0.015287037938833237, -0.026441993191838264, -0.008430780842900276, 0.01866101659834385, -0.012637839652597904, -0.009797033853828907, -0.031657081097364426, -0.0069312346167862415, 0.0023492886684834957, 0.01782793551683426, -0.008672374300658703, 0.00690207676962018, 0.011029993183910847, -0.011021662503480911, -0.00462359981611371, 0.014154047705233097, -0.017994550988078117, -0.01515374518930912, 0.03049076721072197, 0.0035031058359891176, 0.0002159502328140661, -0.01680324599146843, -0.010021965019404888, 0.023159654811024666, 0.0017098989337682724, -0.002141018398106098, -0.0028741296846419573, -0.010946685448288918, -0.008589065633714199, 0.011429872363805771, -0.008847321383655071, 0.025358987972140312, 0.00020827027037739754, 0.0017307259840890765, -0.019860653206706047, 0.013445928692817688, 0.015686916187405586, 0.0020285523496568203, -0.02011057734489441, -0.01162148080766201, -0.015337022952735424, -0.006181461736559868, -0.023509547114372253, -0.004615269135683775, 0.03255680948495865, -0.004523630253970623, 0.0061314767226576805, 0.020477132871747017, 0.020210547372698784, -0.014095732010900974, -0.011429872363805771, -0.0008955621742643416, 0.0044403220526874065, 0.008168360218405724, -0.0025367317721247673, 0.012946079485118389, -0.006002349313348532, 0.037055447697639465, 0.02239321917295456, -0.009263861924409866, 0.01576189324259758, -0.006243942771106958, 0.016528328880667686, -0.008905637077987194, -0.01380415353924036, 0.006352243013679981, 0.00044179329415783286, -0.011471526697278023, 0.00550250057131052, -0.017794610932469368, -0.005415027029812336, 0.0026825210079550743, -0.008489096537232399, 0.0018254888709634542, -0.009663740172982216, -0.01822781376540661, -0.010638445615768433, -0.02865798957645893, 0.010963346809148788, 0.01038852147758007, 0.05604969337582588, 0.025575589388608932, 0.012271284125745296, -0.00507762935012579, -0.009380493313074112, -0.04008786007761955, 0.00045975661487318575, -0.0024867469910532236, -0.013021057471632957, -0.004819374065846205, 0.007501895073801279, 0.0049693286418914795, 0.03832172974944115, 0.021093612536787987, 0.0002866319555323571, 0.010096943005919456, -0.010846715420484543, 0.005869056098163128, 0.011371556669473648, 0.009463801048696041, -0.011146624572575092, 0.014820512384176254, -0.0032990011386573315, -0.030574075877666473, 0.00425912719219923, 0.010138596408069134, 0.001094460254535079, -0.012921087443828583, -0.0010241690324619412, 0.0014235272537916899, 0.02201000228524208, -0.00798508245497942, -0.02157679945230484, 0.01886095479130745, 0.01886095479130745, -0.001004383317194879, 0.0031303020659834146, 0.01452893391251564, 0.0008846279815770686, -0.002378446515649557, -0.009072252549231052, -0.009505455382168293, -0.01264617033302784, -0.011646473780274391, -0.026075437664985657, 0.013104365207254887, -0.0008304776856675744, 0.010296882130205631, 0.0013902040664106607, 0.007251970935612917, -0.009697063826024532, 0.009905333630740643, -0.0164200272411108, 0.011896397918462753, -0.006456378381699324, 0.022276587784290314, 0.009788702242076397, -0.02617540769279003, -0.005989852827042341, 0.0034031362738460302, 0.01971069909632206, -0.01620342768728733, 0.004473645240068436, 0.018411092460155487, 0.00013134043547324836, 0.004092510789632797, 0.0007987165008671582, -0.0006149179534986615, -0.021893370896577835, 0.012321269139647484, 0.011529842391610146, -0.011313240975141525, 0.003588496707379818, -0.002563806949183345, -0.02512572519481182, -0.038088466972112656, -0.008468269370496273, -0.01951075904071331, -0.005577477626502514, -0.0021253980230540037, 0.0014027003198862076, -0.00831414945423603, -0.012063014321029186, -0.010288551449775696, -0.013837476260960102, -0.013554229401051998, -0.003678052918985486, 0.002944941632449627, 0.008655712008476257, -0.01463723462074995, -0.001794248353689909, 0.01378749217838049, -0.003226106520742178, 0.012854441069066525, 0.015820208936929703, -0.001230877242051065, -0.01621175743639469, 0.002067082328721881, 0.015245383605360985, 0.01891094073653221, 7.269933848874643e-05, 0.02199334092438221, 0.0030844826251268387, 0.02092699706554413, -0.003128219395875931, -0.01130491029471159, -0.0003340134571772069, -0.0036176545545458794, -0.0061314767226576805, 0.031607095152139664, 0.0006680269143544137, 0.0014412302989512682, -0.007456075865775347, 0.02429264411330223, 0.006735460367053747, 0.022909728810191154, 0.015187067911028862, 0.004723569843918085, 0.010655106976628304, 0.026292039081454277, -0.027325060218572617, 0.005373373162001371, 0.028974559158086777, -0.015678586438298225, 0.006173130590468645, 0.0016265908489003778, 0.007331113331019878, 0.03428961709141731, 0.00658967113122344, 0.0015287037240341306, 0.00674379151314497, -0.020860349759459496, -0.013729176484048367, 0.005156771745532751, -0.015087097883224487, -0.023526210337877274, -0.00559830479323864, 0.028358079493045807, 0.0036843011621385813, -0.0003092813421972096, 0.0034364594612270594, 0.005427523050457239, 0.0197440218180418, 0.004644426982849836, 0.015112090855836868, 0.004690246656537056, 0.0036593086551874876, 0.016969861462712288, 0.025692220777273178, 0.009697063826024532, -0.00561080127954483, -0.015636932104825974, -0.002276394050568342, 0.007243639789521694, -0.014195701107382774, -0.005898213945329189, -0.017561350017786026, 0.012088006362318993, -0.010813392698764801, -0.008422449231147766, -0.009205546230077744, 0.011246594600379467, -0.001116328639909625, 0.008705697022378445, -0.002988678403198719, -0.01889427937567234, -0.017161469906568527, 0.01194638293236494, 0.012196307070553303, 0.0033364896662533283, -0.0004011806158814579, -0.0129544110968709, 0.014304001815617085, -0.007318617310374975, -0.008764012716710567, 0.001656790031120181, -0.0032365198712795973, -0.008326645009219646, -0.016844898462295532, 0.015112090855836868, 0.01742805540561676, 0.015686916187405586, 0.01889427937567234, 0.005119283217936754, -0.022659804672002792, 0.0018588121747598052, -0.008368299342691898, -0.0001692195946816355, -0.01194638293236494, 0.009130568243563175, 0.011879736557602882, -0.0033010838087648153, -0.007122843060642481, 0.0032323545310646296, -0.009355500340461731, 0.022326573729515076, 0.004448652733117342, -0.02029385417699814, -0.03462284803390503, 0.011929720640182495, 0.003134467639029026, 0.01698652282357216, 0.0024492584634572268, 0.0168199073523283], "c78e873b-ee41-49a4-90f5-b0d8887422c3": [-0.009560192935168743, 0.008807547390460968, -0.005368600599467754, -0.008447239175438881, -0.04749670252203941, -0.016638258472085, 0.034237340092659, 0.03282812982797623, -0.03282812982797623, 0.0408029668033123, 0.028600508347153664, 0.01822361722588539, 0.003877322655171156, -0.00883156806230545, -0.001109951175749302, 0.03052215650677681, -0.020561620593070984, 0.012490703724324703, 0.002153845736756921, -0.029817551374435425, 0.06306204199790955, 0.008775520138442516, -0.03961795195937157, 0.038785237818956375, -0.0038753210101276636, -0.01737488992512226, 0.001129968324676156, -0.004784099757671356, -0.03268400952219963, 0.02672690339386463, -0.0011840146034955978, 0.021042032167315483, 0.013227335177361965, 0.015933653339743614, 0.026790957897901535, -0.010665139183402061, -0.002277952153235674, 0.012923073954880238, -0.014700597152113914, 0.007682583294808865, -0.029032878577709198, 0.004275663755834103, -0.004021446220576763, 0.004744065459817648, -0.058738335967063904, 0.024260789155960083, 0.020017152652144432, -0.01473262533545494, 0.006889904383569956, 0.014908775687217712, 0.020385468378663063, -0.03894537314772606, 0.003368886886164546, 0.02107405848801136, 0.014012007042765617, -0.014044035226106644, 0.012378607876598835, 0.04688818007707596, -0.022547321394085884, -0.03229967877268791, 0.003002573037520051, -0.015012864954769611, -0.027159273624420166, -0.003967399708926678, -0.022931650280952454, -0.043973684310913086, 0.02674291655421257, -0.012378607876598835, -0.03535829856991768, 0.011834140866994858, -0.01785530149936676, 0.0012550755636766553, -0.01926450803875923, 0.0178713146597147, -0.01992107182741165, -2.946274798887316e-05, 0.06431110948324203, -0.011033454909920692, 0.011073489673435688, 0.0032627959735691547, -0.02012925036251545, 0.0036271081771701574, 0.02853645384311676, -0.0004318700812291354, 0.0635424554347992, 0.004431797657161951, -0.03555046394467354, -0.04708034545183182, -0.007966826669871807, 0.0009783384157344699, -0.0022919641342014074, -0.017246779054403305, 0.0132833831012249, -0.005772946868091822, -0.03750414028763771, 0.03455761447548866, 0.01955275610089302, 0.0007256218232214451, 0.0024801252875477076, -0.03159507364034653, -0.00536459730938077, 0.02751157619059086, -0.06190905347466469, 0.01731083355844021, -0.002548183547332883, 0.02749556116759777, 0.038977399468421936, 0.01402802113443613, -0.053357724100351334, 0.056944798678159714, -0.0012690875446423888, -0.04205203428864479, 0.02853645384311676, 0.011826134286820889, -0.011081496253609657, -0.08006861060857773, 0.0077866725623607635, -0.004467828664928675, 0.00732227461412549, -0.027095219120383263, 0.03644723445177078, 0.03276407718658447, -0.009768370538949966, -0.0007406346849165857, -0.024965394288301468, 0.03061823733150959, 0.028856728225946426, -0.021426361054182053, 0.016766367480158806, 0.0029345147777348757, -0.01157792191952467, -0.01219445001333952, -0.014868741855025291, 0.04432598501443863, -0.017983410507440567, 0.021970827132463455, -0.0015493276296183467, 0.03686359152197838, -0.052877314388751984, 0.03894537314772606, -0.03981011360883713, -0.05294136703014374, -0.014948810450732708, -0.02267543226480484, 0.019504714757204056, 0.007538460195064545, -0.052396900951862335, 0.061652831733226776, -0.02410065196454525, 0.0392976738512516, -0.040226470679044724, -0.04221217334270477, -0.003442950313910842, -0.002522161230444908, -0.015805544331669807, -0.03462166711688042, -0.02118615433573723, 0.007198168430477381, 0.02248326689004898, 0.007198168430477381, 0.01586959883570671, -0.039265647530555725, -0.016205888241529465, 0.003661137307062745, 0.043813545256853104, 0.019408632069826126, 0.024917352944612503, 0.04490247741341591, -0.05553559213876724, 0.021698594093322754, 0.03004174306988716, 0.0019376605050638318, 0.0003135186561848968, -0.027383465319871902, 0.003492993302643299, -0.030410058796405792, 0.030762361362576485, 0.03872118145227432, -0.005973118357360363, -0.03484586253762245, -0.026422642171382904, -0.01681440882384777, -0.021874744445085526, 0.014868741855025291, 0.049194157123565674, 0.020577633753418922, -0.0027123242616653442, 0.007766655646264553, 0.01852787658572197, 0.026983123272657394, -0.0018976260907948017, -0.002720331074669957, 0.019873030483722687, 0.013627678155899048, -0.0053205592557787895, 0.0064014857634902, 0.016558188945055008, -0.012955102138221264, -0.022739486768841743, 0.025205599144101143, -0.02259536273777485, -0.035486411303281784, -0.02852044068276882, 0.04032255336642265, -0.01086531113833189, -0.025926217436790466, -0.029641401022672653, -0.04221217334270477, 0.03948983922600746, -0.018031451851129532, 0.04781697690486908, -0.037472110241651535, 0.033981118351221085, -0.007330281659960747, 0.0144123500213027, -0.017262792214751244, -0.0427246131002903, 0.051564186811447144, 0.012690875679254532, -0.03798454999923706, -0.019024303182959557, -0.022259075194597244, 0.0065856436267495155, -0.032635968178510666, -0.014468398876488209, -0.011706030927598476, -0.0022078920155763626, 0.01450843270868063, -0.0019826991483569145, -0.019232481718063354, 0.02531769499182701, 0.023460103198885918, -0.007774662226438522, -0.016654271632432938, -0.025846147909760475, 0.007450384553521872, 0.025766080245375633, 0.020193304866552353, -0.004467828664928675, -0.015092933550477028, 0.040226470679044724, 0.039649978280067444, 0.022082922980189323, 0.007710607722401619, 0.005040319170802832, 0.05473490431904793, 0.01602173037827015, 0.028888756409287453, 0.02928909845650196, -0.008255073800683022, 0.007954816333949566, 0.01233857311308384, 0.014372316189110279, -0.022547321394085884, -0.024340858682990074, 0.040386609733104706, -0.00893565732985735, -0.013875890523195267, 0.007854730822145939, -0.053517863154411316, -0.012266512028872967, 0.018543891608715057, 0.010416926816105843, 0.009263938292860985, 0.04394165426492691, -0.01870402880012989, 0.030410058796405792, -0.01955275610089302, 0.027815835550427437, 0.05729709938168526, 0.008607376366853714, 0.009376035071909428, -0.007630539126694202, -0.009368027560412884, -0.011730051599442959, -0.026614807546138763, 0.02767171338200569, -0.006081211380660534, 0.008295108564198017, 0.005544751416891813, -0.01907234452664852, -0.00855933502316475, 0.019056329503655434, 0.03194737806916237, -0.031210744753479958, -0.02248326689004898, -0.02474120259284973, -0.023684296756982803, -0.049930788576602936, 0.001742493244819343, -0.00701801385730505, 0.03740805760025978, 0.017358874902129173, 0.005256504286080599, 0.03638317808508873, 0.008046895265579224, 0.002099799457937479, 0.004379753023386002, -0.003587073879316449, 0.020721757784485817, -0.04112324118614197, -0.004888189025223255, 0.020449524745345116, -0.019808975979685783, 0.012498710304498672, 0.006989989895373583, 0.042756639420986176, -0.016798395663499832, -0.027927933260798454, 0.033692874014377594, 0.041539598256349564, -0.023780377581715584, 0.028104083612561226, 0.009199883788824081, -0.009696309454739094, -0.006953958887606859, 0.037952523678541183, 0.012618813663721085, -0.03852901607751846, -0.02778380922973156, 0.02836030349135399, 0.024645119905471802, -0.03676750883460045, 0.03625506907701492, 0.02664683386683464, -0.03420531004667282, 0.021954813972115517, -0.036703452467918396, -0.027159273624420166, -0.005168429110199213, 0.002944523235782981, -0.04698426276445389, -0.043429214507341385, 0.01833571307361126, 0.010993421077728271, -0.031787239015102386, -0.04141148552298546, -0.027719754725694656, -0.008503287099301815, -0.055983975529670715, 0.004247639793902636, -0.009488130919635296, -0.020113235339522362, -0.023508144542574883, 0.008879609405994415, 0.00964026153087616, 0.016862450167536736, 0.026214463636279106, -0.010513008572161198, -0.004311694763600826, 0.0010113667231053114, -0.030746348202228546, 0.029625387862324715, -0.03071432001888752, 0.03276407718658447, -0.025557901710271835, 0.0035030017606914043, -0.005012295208871365, 0.023203885182738304, 0.02419673465192318, 0.009223904460668564, -0.02542979083955288, -0.022146979346871376, -0.01775921881198883, 0.027943946421146393, -0.008162994869053364, -0.0048241340555250645, -0.03734400123357773, 0.006021159701049328, 0.0140360277146101, -0.026310546323657036, 0.0169104915112257, 0.06610465049743652, -0.022739486768841743, -0.008431225083768368, -0.03223562240600586, 0.016782380640506744, -0.0039013430941849947, -0.009704316034913063, 0.0251255314797163, -0.006481554359197617, 0.03060222417116165, 0.02767171338200569, 0.007466398179531097, 0.0033088354393839836, 0.030778374522924423, 0.005360593553632498, 0.002920502796769142, -0.008999711833894253, 0.0021118097938597202, -0.03920159488916397, 0.042084064334630966, -0.06434313952922821, -0.005108377430588007, -0.040034305304288864, 0.004752072039991617, 0.010657132603228092, 0.016670284792780876, 0.02144237421452999, -0.018463822081685066, -0.01294709462672472, -0.00751043576747179, 0.026134395971894264, 0.03318043425679207, -0.0017945377621799707, -0.03545438125729561, -0.010416926816105843, -0.03561452031135559, 0.01625392772257328, 0.02797597274184227, -0.0017024589469656348, 0.0031446947250515223, 0.002165856072679162, -0.006653701886534691, 0.028216179460287094, -0.014796679839491844, -0.005448669195175171, 0.020465537905693054, -0.05678465962409973, -0.04618357494473457, 0.031050607562065125, 0.05973118543624878, -0.015245064161717892, 0.004001428838819265, -0.02125021070241928, 0.023844433948397636, 0.045030590146780014, -0.02427680417895317, -0.0072622234001755714, -0.04515869915485382, 0.024597078561782837, -0.007938803173601627, -0.004607948940247297, -0.02494937926530838, 0.013763794675469398, -0.051628243178129196, -0.01025678962469101, -0.004227622877806425, 0.008959678001701832, -0.005885043181478977, 0.025013435631990433, 0.050891611725091934, 0.0013701741117984056, 0.03346868231892586, -0.024068625643849373, -0.04169973358511925, -0.05290934070944786, 0.023604227229952812, 0.03571060299873352, 0.008423218503594398, 0.010128679685294628, 0.050603363662958145, -0.020833853632211685, -0.0006505575147457421, 0.021618526428937912, -0.030313977971673012, 0.001261080615222454, -0.03202744573354721, 0.014108089730143547, -0.039169564843177795, -0.025157557800412178, -0.01294709462672472, 0.031114663928747177, -0.014684583991765976, 0.0009137830347754061, -0.045414917171001434, -0.009592220187187195, 0.01926450803875923, 0.008703458122909069, 0.007066055200994015, 0.015541317872703075, -0.01148183923214674, 0.004728051833808422, 0.013987986370921135, -0.008263081312179565, -0.01630997657775879, -0.012923073954880238, -0.008511293679475784, 0.00016138830687850714, 0.0020107231102883816, -0.030089784413576126, -0.026790957897901535, -0.013947952538728714, 0.030185867100954056, -0.001665427116677165, -0.031899336725473404, 0.023764364421367645, -0.021810689941048622, -0.021586498245596886, 0.015621386468410492, 0.029801538214087486, -0.025862162932753563, 0.014540459960699081, 0.03061823733150959, 0.04250042140483856, -0.013587643392384052, -0.015197022818028927, -0.013363451696932316, 0.0018315695924684405, -0.05300542339682579, 0.006125248968601227, -0.03904145583510399, 0.03865712508559227, -0.0025141544174402952, -0.006361451465636492, -0.009360020980238914, -0.004972260911017656, -0.0016774374525994062, 0.006017156410962343, -0.004896195605397224, -0.030073771253228188, 0.018559904769062996, -0.01777523197233677, 0.033020295202732086, -0.010048611089587212, 0.005941091105341911, -0.025397764518857002, 0.018383754417300224, 0.007706603966653347, 0.01899227499961853, 0.016510147601366043, -0.00038457955815829337, -0.007830710150301456, 0.01256276573985815, -0.0005664854543283582, -0.0472404807806015, 0.007454387843608856, -0.0017765223747119308, -0.0014482410624623299, -0.014388330280780792, -0.008006861433386803, 0.019232481718063354, 0.009696309454739094, 0.011754072271287441, 0.03221961110830307, 0.002354017226025462, -0.04592735692858696, 0.015509290620684624, 0.004928223323076963, 0.04538289085030556, -0.022627390921115875, 0.016638258472085, -0.03173919767141342, 0.008615382947027683, -0.010192734189331532, 0.017454957589507103, -0.003727193921804428, 0.019344577565789223, -0.022243060171604156, -0.0018505858024582267, -0.029881605878472328, 0.0027443517465144396, -0.011521873064339161, -0.00992050115019083, 0.0009673289605416358, -0.02824820764362812, 0.01831969805061817, -0.006445523351430893, -0.0067778080701828, -0.013731767423450947, -0.0043557328172028065, 0.015164995566010475, 0.005156418774276972, 0.020961962640285492, -0.005408634897321463, -0.0139319384470582, -0.015373174101114273, 0.016974546015262604, -0.019328562542796135, 0.008479266427457333, 0.01710265502333641, 0.0026482692919671535, 0.046439796686172485, 0.00010809263039845973, 0.002804403193295002, 0.01512496080249548, -0.002259936649352312, -0.001233056653290987, -0.04054674506187439, -0.0032728046644479036, 0.030089784413576126, -0.026774944737553596, -0.004744065459817648, -0.021202169358730316, -0.015757502987980843, -0.02976951003074646, -0.028296248987317085, -0.030874457210302353, 0.027559617534279823, 0.02315584383904934, 0.006089217960834503, 0.012642834335565567, 0.003190734190866351, 0.021506430581212044, -0.020529592409729958, 0.020113235339522362, -0.011561907827854156, 0.002135830232873559, 0.002420073840767145, -0.005152415484189987, 0.03044208697974682, 0.030185867100954056, 0.005180439446121454, -0.018928220495581627, -0.011305687949061394, 0.007150127086788416, -0.0017935369396582246, 0.04032255336642265, 0.011682011187076569, 0.011545893736183643, -0.0009518156293779612, 0.020849866792559624, 0.017086641862988472, -0.027159273624420166, 0.02371632307767868, 0.0073943366296589375, -0.001243065227754414, 0.04054674506187439, 0.02184271812438965, -0.02438890002667904, 0.0013821844477206469, 0.003811266040429473, 0.05124391242861748, 0.0028444374911487103, 0.0184157807379961, 0.015877606347203255, -0.004227622877806425, -0.030490128323435783, -0.014900769107043743, 0.016285955905914307, 0.04310894012451172, -0.013203314505517483, 0.018463822081685066, -0.06133255735039711, 0.0021778664086014032, -0.004744065459817648, 0.012915067374706268, -0.015237057581543922, -0.029032878577709198, -0.001167000038549304, -0.030313977971673012, 0.010825276374816895, 0.0067898184061050415, 0.027095219120383263, 0.002862452995032072, -0.0036311117000877857, -0.0011499854736030102, 0.00859936885535717, 0.02286759577691555, 0.006501571275293827, -0.015701455995440483, -0.010609091259539127, 0.004311694763600826, 0.02211495116353035, 0.015709461644291878, -0.04727251082658768, -0.023283952847123146, 0.015461249276995659, 0.018639972433447838, 0.0016404057387262583, 0.019776947796344757, -0.0014012007741257548, 0.020545605570077896, 0.026598794385790825, -0.010384899564087391, 0.02948126383125782, 0.0018285670084878802, 0.00021193160500843078, 0.008407204411923885, 0.006881897337734699, 0.02410065196454525, -0.00012785957369487733, 0.04064282774925232, 0.03282812982797623, -0.008511293679475784, -0.008783526718616486, 0.0038553038612008095, -0.01831969805061817, 0.012907060794532299, 0.007750642020255327, -0.017615094780921936, -0.034269366413354874, -0.012859019450843334, 0.01209836732596159, 0.0398421436548233, -0.013171287253499031, -0.017919356003403664, -0.005012295208871365, -0.0037412059027701616, 0.004511866252869368, 0.0035410344135016203, 0.012834998778998852, -0.0069659692235291, 0.009039746597409248, -0.008919643238186836, -0.0032928218133747578, -0.005000284872949123, -0.01138575654476881, 0.013539602980017662, -0.00482013076543808, -0.03635115176439285, 0.008447239175438881, -0.010440947487950325, -0.00968830194324255, 0.005072346888482571, 0.01881612464785576, -0.027463534846901894, -0.02477322891354561, 0.02427680417895317, -0.006377465091645718, 0.009279952384531498, 0.0028444374911487103, -0.004359736107289791, -0.003821274498477578, 0.009568199515342712, 0.011850154958665371, -0.005861022509634495, -0.021410347893834114, -0.014820700511336327, 0.0065576196648180485, 0.006977979559451342, 0.03744008392095566, -0.030185867100954056, -0.03551843762397766, -0.03638317808508873, 0.006805832032114267, 0.001215041265822947, -0.0011890189489349723, 0.006185300648212433, 0.002370030852034688, 0.044550176709890366, -0.03641520440578461, -0.0052484977059066296, 0.008943663910031319, -0.021282237023115158, -0.007078065536916256, -0.0035070052836090326, 0.013211321085691452, 0.037087783217430115, -0.023492131382226944, 0.02107405848801136, -0.005228480324149132, 0.026871027424931526, 0.006653701886534691, 0.009223904460668564, 0.033788956701755524, 0.03811265900731087, 0.019312549382448196, 0.028216179460287094, 0.018864165991544724, 0.04605546593666077, -0.04102715849876404, 0.03715183585882187, 0.029353152960538864, -0.011938230134546757, -0.0068939076736569405, 0.010112665593624115, -0.0008537315879948437, -0.008335142396390438, 0.03318043425679207, -0.0007851728587411344, 0.015677435323596, 0.012642834335565567, 0.009047753177583218, 0.0019086356041952968, -0.01577351614832878, -0.007822703570127487, 0.05543950945138931, 0.02342807687819004, -0.006973976269364357, 0.03830482438206673, 0.029897620901465416, 0.03098655305802822, 0.022227047011256218, -0.03551843762397766, -0.037568192929029465, 0.014620528556406498, 0.009319986216723919, -0.025653984397649765, -0.025077490136027336, 0.00725021306425333, -0.020273372530937195, -0.007334284950047731, -0.01795138232409954, -0.006309406831860542, -0.023588214069604874, 0.03034600429236889, 0.02373233623802662, -0.007094079162925482, 0.0052164699882268906, 0.015084926970303059, 0.018399767577648163, -0.004736058413982391, 0.01823963038623333, -0.019232481718063354, -0.026486696675419807, 0.013011150062084198, -0.03993822634220123, -0.00897569116204977, 0.019168425351381302, 0.011649983003735542, -0.028120096772909164, 0.005524734500795603, 0.013339431025087833, 0.022323129698634148, -0.013227335177361965, -0.00675779115408659, 0.01450843270868063, 0.009936515241861343, 0.017647122964262962, -0.002768372418358922, -0.024965394288301468, -0.022259075194597244, 0.0432690791785717, -0.0181435476988554, 0.016846437007188797, 0.01450843270868063, 0.022643404081463814, -0.025157557800412178, 0.007766655646264553, -7.831711263861507e-05, 0.017438944429159164, 0.005444665905088186, -0.003683156333863735, -0.04989875853061676, -0.013571630232036114, 0.003943379037082195, -0.008623389527201653, 0.02080182544887066, 0.03663939610123634, 0.014060048386454582, -0.016269942745566368, -0.017150696367025375, 0.031883321702480316, -0.018495850265026093, 0.03372490033507347, -0.010785242542624474, -0.009047753177583218, -0.02334800735116005, 0.022355157881975174, -0.04240433871746063, -0.025766080245375633, -0.004788103047758341, -0.015181008726358414, 0.005937087815254927, -0.03635115176439285, 0.012963108718395233, -0.007530453149229288, 0.04237230867147446, 0.0012630823766812682, 0.008799540810286999, -0.003254789160564542, -0.0020637684501707554, 0.0032047461718320847, -0.0275916438549757, 0.034269366413354874, -0.004619958810508251, 0.018864165991544724, -0.0136597054079175, 0.017438944429159164, 0.014724617823958397, 0.019056329503655434, -0.016069769859313965, -0.01417214423418045, 0.003917356953024864, -0.013923931866884232, -0.032924212515354156, 0.0020837855990976095, 0.016069769859313965, 0.0014822701923549175, 0.0025001424364745617, -0.010168713517487049, -0.008943663910031319, 0.011529880575835705, 0.014556474052369595, -0.017406916245818138, -0.03583871200680733, -0.015957674011588097, -0.026230478659272194, -0.0343654491007328, 0.01436430960893631, -0.005332569591701031, -0.01534915342926979, -0.004591934848576784, -0.04189189895987511, 0.00964026153087616, 0.026999136433005333, -0.011529880575835705, 0.008943663910031319, -0.010513008572161198, -0.02003316767513752, -0.004744065459817648, -0.022755499929189682, -0.02080182544887066, -0.0193766038864851, -0.022259075194597244, 0.007762651890516281, -0.019969113171100616, -0.025942230597138405, -0.023700309917330742, -0.003002573037520051, -0.018639972433447838, -0.03215555474162102, -0.007426363881677389, 0.03939375653862953, -0.042756639420986176, 0.0019326561596244574, 0.017342861741781235, 0.001487274537794292, 0.01976093463599682, 0.020257359370589256, 0.0011609948705881834, 0.0043837567791342735, -0.010336858220398426, 0.026999136433005333, -0.0011189589276909828, 0.006501571275293827, -0.0243728868663311, 0.0022619382943958044, -0.005380610935389996, -0.0009062766330316663, -0.005288532003760338, 0.0016704314621165395, -0.003376893699169159, 0.004932226613163948, 0.0058209882117807865, -0.015036885626614094, 0.002077780431136489, 0.033212460577487946, 0.02824820764362812, -0.019728906452655792, 0.019344577565789223, 0.013971973210573196, 0.015012864954769611, 0.03279610350728035, -0.01185816153883934, -0.00846325233578682, 0.018303684890270233, -0.03270002081990242, -0.0033348577562719584, 0.021618526428937912, -0.0253337100148201, 0.026758931577205658, 0.0038793243002146482, 0.002548183547332883, 0.0009358019451610744, -0.006345437839627266, 0.0387532077729702, -0.005332569591701031, 0.003378895577043295, 0.005520730745047331, 0.01918444037437439, -0.013107231818139553, -0.017054615542292595, -0.00550071382895112, 0.046343713998794556, -0.0036751492880284786, 0.011690017767250538, 0.009792391210794449, 0.006801828742027283, 0.00491220923140645, 0.005712895654141903, 0.020257359370589256, 0.008959678001701832, -0.02703116461634636, -0.02286759577691555, -0.04547897353768349, 0.017823273316025734, -0.030394045636057854, 0.0034689726307988167, -0.013267369009554386, -0.04355732724070549, -0.006545609328895807, -0.013531595468521118, -0.019680865108966827, 0.0077586486004292965, -0.027719754725694656, -0.014924789778888226, -0.030826415866613388, 0.01015270035713911, 0.004259650129824877, -0.030297962948679924, 0.005672861356288195, 0.0022419211454689503, -0.004243636503815651, 0.010641118511557579, -0.011425791308283806, 0.003348869737237692, -0.0016864452045410872, -0.014540459960699081, -0.0032007428817451, -0.02192278578877449, 0.010216754861176014, 0.009984556585550308, 0.008487273007631302, 0.005532741080969572, 0.0038352867122739553, -0.021106086671352386, 0.008527307771146297, -0.025253640487790108, -0.012730909511446953, -0.006397482473403215, -0.05057133734226227, 0.04150756821036339, 0.029128961265087128, 0.02097797766327858, 0.006701742764562368, -0.007918786257505417, 0.012306545861065388, 0.012899053283035755, -0.025157557800412178, 0.010601084679365158, -0.0058930497616529465, -0.001326136407442391, -0.0026863019447773695, 0.03651128709316254, 0.003583070356398821, -0.06744980067014694, 0.004435801412910223, 0.02805604226887226, -0.0015513293910771608, -0.021698594093322754, -0.0016634254716336727, -0.022371171042323112, -0.005472689867019653, 0.0014692590339109302, 0.014116096310317516, 0.0007006003870628774, 0.014580494724214077, 0.011906202882528305, -0.025093503296375275, -0.007166140712797642, 0.002087789122015238, -0.004748068749904633, -0.00310666230507195, -0.020353442057967186, 0.0003350370971020311, -0.0392976738512516, 0.005104374140501022, 0.00855933502316475, 0.0025341715663671494, -0.018944233655929565, -0.006581639871001244, 0.009247925132513046, 0.005136401392519474, -0.0013661707052960992, -0.010208748281002045, -0.012875033542513847, -0.005244494415819645, 0.004175578244030476, 0.03939375653862953, -0.016558188945055008, 0.0032728046644479036, -0.015189016237854958, 0.007482411805540323, 0.013995993882417679, 0.015757502987980843, 0.0067778080701828, 0.007298253942281008, 0.03872118145227432, -0.011025448329746723, 0.014852727763354778, 0.04291677847504616, -0.02392450161278248, 0.010617097839713097, -0.008895622566342354, -0.02059364691376686, -0.01186616811901331, -0.029144976288080215, -0.014628536067903042, 0.010456960648298264, 0.02344409003853798, -0.0032968251034617424, 0.007014010567218065, -0.006281382869929075, 0.024420926347374916, -0.005200456362217665, 0.008431225083768368, 0.025445805862545967, -0.015405201353132725, -0.006541605573147535, 0.0005026807775720954, -0.021698594093322754, -0.008607376366853714, -0.02429281733930111, 0.0005529738846234977, -0.0067617944441735744, 0.011057475581765175, -0.024629104882478714, 0.007398339919745922, -0.019728906452655792, 0.01870402880012989, 0.001326136407442391, -0.006061193998903036, -0.007838717661798, 0.0086954515427351, -0.0063174134120345116, 0.058161839842796326, 0.0026202453300356865, 0.002350013703107834, 0.008895622566342354, -0.010424933396279812, 0.017919356003403664, 0.007334284950047731, 0.022419212386012077, 0.04237230867147446, -0.008911636658012867, -0.0139319384470582, -0.00470403116196394, -0.0005139404092915356, 0.029561331495642662, 0.030105799436569214, -0.007878751493990421, 0.037279944866895676, 0.004099512938410044, 0.0171186700463295, 0.010913352482020855, -0.0188961923122406, 0.004387760069221258, -0.00034779804991558194, 0.005184442736208439, -0.0320434607565403, -0.016846437007188797, 0.006241348572075367, -0.009015725925564766, -0.01785530149936676, -0.0035650550853461027, 0.03644723445177078, 0.03249184414744377, 0.034173283725976944, 0.03337259963154793, 0.01186616811901331, 0.03599884733557701, 0.020289387553930283, 0.00254017673432827, -0.007622532080858946, -0.003426936687901616, 0.0014232195680961013, 0.0009027736377902329, -0.0020017153583467007, -0.01644609309732914, 0.010000569745898247, 0.0027903912123292685, 0.01497283112257719, 0.01512496080249548, -0.018784096464514732, -0.020577633753418922, -0.006929938681423664, -0.01995309814810753, -0.011281667277216911, -0.017631107941269875, 0.0036931647919118404, -0.009135829284787178, 0.009760363958775997, -0.0069939931854605675, -0.004331712145358324, -0.009095794521272182, 0.00023057257931213826, 0.03958592191338539, 0.018591932952404022, -0.04631168767809868, -0.013539602980017662, 0.008311121724545956, -0.027271369472146034, -0.0009302971884608269, -0.03164311498403549, 0.019969113171100616, -0.016766367480158806, -0.025669997557997704, -0.009768370538949966, 0.002568200696259737, 0.0017354872543364763, 0.012674861587584019, 0.03191534802317619, -0.012818984687328339, -0.005128394812345505, -0.019696878269314766, 0.00787474773824215, 0.010480981320142746, 0.00012573273852467537, 0.005104374140501022, -8.113202784443274e-05, -0.00018603442003950477, 0.0007031025015749037, -0.01218644343316555, 0.018672000616788864, -0.011185585521161556, -0.002636259188875556, 0.0028444374911487103, 0.0253337100148201, -0.029833566397428513, -0.026102367788553238, -0.03523018956184387, 0.01815956085920334, -0.006613667588680983, 0.012402628548443317, -0.006409492343664169, -0.016766367480158806, 0.005376607645303011, 0.03202744573354721, -0.01617386005818844, 0.025349723175168037, -0.015837572515010834, -0.016269942745566368, -0.009015725925564766, -0.026967108249664307, -0.01872004196047783, 0.004752072039991617, 0.005156418774276972, 0.002614240162074566, -0.009656274691224098, 0.015301112085580826, 0.0021298250649124384, -0.002984557533636689, 0.008383183740079403, 0.009143835864961147, 0.026887040585279465, -0.008719472214579582, 0.002436087466776371, 0.0021698593627661467, 0.019424645230174065, 0.02778380922973156, 0.019440660253167152, 0.003587073879316449, -0.005752929951995611, -0.026951095089316368, 0.008703458122909069, 0.0006500570452772081, 0.012250497937202454, -0.0020357444882392883, -0.011049469001591206, 0.02751157619059086, -0.008122961036860943, 0.01569344848394394, -0.013403485529124737, -0.017054615542292595, -0.001496282173320651, 0.012843005359172821, 0.017246779054403305, -0.0013021158520132303, 0.009664281271398067, 0.0029405199456959963, -0.00543665885925293, -0.02078581228852272, 0.02398855611681938, 0.01918444037437439, -0.018543891608715057, -0.011425791308283806, 0.008146981708705425, 0.00019053828145843, -0.014332281425595284, -6.077082798583433e-05, -0.01110551692545414, -0.015541317872703075, -0.01974491961300373, -0.0004358735168352723, -0.020241346210241318, 0.006813839077949524, -0.01389190461486578, -0.01534915342926979, -0.030858444049954414, 0.025830134749412537, -0.00048041169065982103, 0.005260508041828871, -0.03334056958556175, -0.016221901401877403, 0.024549037218093872, -0.010112665593624115, -0.007470401469618082, -0.013147266581654549, -0.012690875679254532, 0.02051357924938202, 0.016942517831921577, 0.022547321394085884, -0.004756075795739889, 0.027095219120383263, -0.016638258472085, -0.0196488369256258, 0.016221901401877403, -0.01635001040995121, 0.017358874902129173, 0.034237340092659, 0.013611664064228535, -0.03535829856991768, -0.019584782421588898, 0.012442662380635738, 0.002370030852034688, -0.0012190446723252535, -0.011874175630509853, -0.0021498422138392925, 0.014004000462591648, 0.010272802785038948, 0.012250497937202454, 0.0032427788246423006, -0.00736631266772747, 0.013499568216502666, 0.003753216238692403, -0.015805544331669807, -0.0037692300975322723, 0.015004858374595642, -0.02627851814031601, 0.01619788073003292, -0.023091787472367287, 0.005368600599467754, -0.01124964002519846, -0.004207605496048927, -0.021618526428937912, 0.00205375999212265, 0.00091278221225366, -0.01171403843909502, 0.009279952384531498, 0.005985128693282604, 0.010344864800572395, 0.012114381417632103, -0.007010007277131081, -0.0028484410140663385, -0.010208748281002045, 0.019792960956692696, -0.031338855624198914, -0.0253337100148201, -0.0076865870505571365, -0.0038272796664386988, -0.02041749656200409, 0.0037892472464591265, 0.005949098151177168, 0.01209836732596159, 0.005768943578004837, 0.009728336706757545, 0.030778374522924423, 0.020465537905693054, -0.0028304255101829767, 0.029897620901465416, 0.0023960531689226627, -0.005853015463799238, -0.0007676578243263066, 0.013339431025087833, -0.008631396107375622, 0.0068939076736569405, 0.006073204334825277, -0.030746348202228546, -0.016398051753640175, -0.022723471745848656, -0.0003340362454764545, 0.0006555618019774556, 0.0037592214066535234, 0.0025101511273533106, -0.0025561905931681395, 0.01731083355844021, -0.015701455995440483, 0.006853873375803232, -0.011033454909920692, -0.002944523235782981, 0.02125021070241928, 0.023972542956471443, -0.0025261647533625364, 0.0005794966127723455, -0.025541888549923897, 0.007910778746008873, -0.011665997095406055, 0.01729482039809227, 0.012618813663721085, -0.018271658569574356, -0.0015573345590382814, 0.007662566378712654, -0.015645407140254974, 0.01072919461876154, -0.015661420300602913, -0.033885035663843155, -0.00190162961371243, -0.009704316034913063, 0.012642834335565567, -0.013683726079761982, -0.0032808114774525166, 0.02211495116353035, -0.035486411303281784, -0.0033268509432673454, 0.004543893970549107, 0.028392329812049866, 0.02805604226887226, -0.015541317872703075, -0.002550185425207019, 0.00879153423011303, 0.005416641943156719, 0.005516727454960346, 0.012402628548443317, 0.02145838923752308, -0.010080638341605663, 0.0007756646955385804, -0.015261078253388405, -0.004013439174741507, -0.003208749694749713, 0.007010007277131081, 0.01029682345688343, 0.00968830194324255, 0.025942230597138405, -0.02911294810473919, -0.00940806232392788, -0.010416926816105843, 0.008527307771146297, -0.010641118511557579, 0.00550872040912509, 0.0021058046258985996, 0.011353729292750359, 0.020369455218315125, -0.028680577874183655, -0.02297969162464142, -0.02975349687039852, 0.011393764056265354, -0.007478408515453339, 0.009728336706757545, -0.00441978732123971, -0.01851186342537403, -0.012178435921669006, 0.008162994869053364, 0.009151842445135117, 0.0124266492202878, 0.007978837005794048, -0.00930397305637598, 0.010657132603228092, -0.04829738661646843, 0.0003107663069386035, -0.008082926273345947, -0.01747097074985504, -0.008102944120764732, 0.00916785653680563, -0.0010939374333247542, -0.017935369163751602, -0.0046159555204212666, 0.0029785523656755686, 0.005652843974530697, -0.009800398722290993, 0.000517943874001503, -0.0025802110321819782, -0.015557331964373589, 0.04836144298315048, -0.023588214069604874, 0.002400056691840291, 0.009015725925564766, -0.004175578244030476, 0.011778092943131924, 0.014108089730143547, 0.002652272814884782, 0.0034249350428581238, -0.014164137654006481, 0.020113235339522362, 0.0004053473530802876, -0.018864165991544724, -0.015092933550477028, -0.013979979790747166, 0.021506430581212044, -0.016670284792780876, -0.016189873218536377, -0.005945094395428896, 0.009344006888568401, 0.016342004761099815, -0.013315410353243351, -0.005100370850414038, -0.01209836732596159, 0.0017074631759896874, 0.0070540448650717735, -0.00465198652818799, -0.01956876926124096, 0.009175863116979599, -0.0028384323231875896, 0.006201314274221659, -0.004007434006780386, 0.021618526428937912, -0.007778665982186794, 0.017166711390018463, -0.0016434083227068186, 0.00446382537484169, 0.05800170451402664, -0.01534915342926979, 0.02249928005039692, -0.032635968178510666, 0.005476693157106638, 0.009608233347535133, -0.005512724164873362, -0.01195424422621727, 0.010737201198935509, 0.015549324452877045, -0.019312549382448196, -0.03129081428050995, 0.010184727609157562, -0.008751499466598034, -0.005016298498958349, 0.04205203428864479, 0.015100940130650997, 0.0005514725926332176, 0.01342750620096922, -0.02259536273777485, 0.012026306241750717, 0.026342574506998062, 0.003819272853434086, 0.01100943423807621, -0.023091787472367287, 0.00651758536696434, 0.00557277537882328, -0.007330281659960747, -0.012851012870669365, 0.007854730822145939, 0.0043517290614545345, 0.0020637684501707554, 0.0047200447879731655, -0.032459817826747894, -0.024340858682990074, -0.006537602283060551, -0.003719187108799815, -0.00016301468713209033, -0.03071432001888752, 0.02323591150343418, -0.010689159855246544, 0.0032427788246423006, -0.01100142765790224, 0.009840432554483414, -0.0013961964286863804, 0.014684583991765976, 0.009736343286931515, -0.019808975979685783, -0.025734052062034607, 0.02379639260470867, 0.035198163241147995, 0.009528164751827717, -0.013947952538728714, 0.003869315842166543, 0.017358874902129173, 0.014836713671684265, 0.017839286476373672, 0.028472399339079857, -0.0010759220458567142, 0.01681440882384777, 0.02418072149157524, -0.005580782424658537, -0.03414125740528107, -0.014012007042765617, 0.024517009034752846, -0.01852787658572197, -0.008439231663942337, -0.02477322891354561, -0.00940806232392788, -0.0009688302525319159, 0.018591932952404022, -0.017727190628647804, 0.016317984089255333, 0.01731083355844021, -0.0031747205648571253, 0.000442379096057266, 0.006333427503705025, 0.007806689944118261, 0.004976264201104641, -0.0038913346361368895, -0.028040029108524323, 0.01039290614426136, 0.010577064007520676, -0.012210463173687458, -0.005985128693282604, -0.0031647118739783764, -0.008815553970634937, -0.014356302097439766, 0.006153272930532694, -0.01053702924400568, 0.0005444666021503508, 0.008175005204975605, -0.0015643405495211482, 0.020529592409729958, -0.007958820089697838, -0.011113523505628109, -0.013227335177361965, -0.0022579350043088198, -0.01133771613240242, 0.012258504517376423, 0.0030466108582913876, 0.0018966252682730556, 0.0016043748473748565, -0.008943663910031319, -0.0011659992160275578, -0.008991705253720284, -0.017054615542292595, 0.011305687949061394, -0.020161276683211327, -0.012258504517376423, -0.01812753453850746, 0.07552071660757065, -0.008807547390460968, 0.0025661990512162447, 0.000499177782330662, 0.0022919641342014074, -0.0068218461237847805, -0.017342861741781235, 0.013739774003624916, 0.026118380948901176, 0.0022539314813911915, 0.0005845009000040591, -0.008171002380549908, 0.002582212910056114, -0.004287674091756344, -0.02550986036658287, -0.010264796204864979, 0.014204172417521477, 0.007598511409014463, -0.007762651890516281, 0.02221103385090828, 0.0008452243055216968, -0.00026597792748361826, -0.013595650903880596, 0.027287384495139122, 0.0009668284910731018, 0.015917640179395676, -0.005865025799721479, -0.010681153275072575, 0.006901914719492197, 0.026710890233516693, -0.007910778746008873, -0.02446896769106388, -0.00883957464247942, 0.006845866329967976, 0.002013725694268942, 0.010312837548553944, 0.000893765885848552, 0.03257191181182861, -0.022275088354945183, 0.010657132603228092, 0.012482697144150734, 0.015285097993910313, 0.026486696675419807, 0.02165055274963379, -0.015181008726358414, -0.009103801101446152, 0.008807547390460968, -0.003302830271422863, -0.0027263362426310778, 0.009151842445135117, -0.0017094649374485016, -0.04339718818664551, 0.01389190461486578, 0.010665139183402061, 0.018832137808203697, -0.00835916306823492, -0.0018796107033267617, -0.005376607645303011, 0.0007571488386020064, 0.00011572417133720592, -0.02174663543701172, 0.015461249276995659, -0.009512151591479778, -0.015469255857169628, -0.00365112884901464, -0.014164137654006481, -0.0006250356091186404, 0.016510147601366043, -0.013099225237965584, -0.012482697144150734, -0.026790957897901535, 0.004467828664928675, 0.010945379734039307, -0.006001142784953117, -0.010168713517487049, 0.01086531113833189, -0.009584212675690651, 0.04166770726442337, 0.010801255702972412, -0.009568199515342712, 0.010521016083657742, -0.0010629108874127269, 0.012378607876598835, -0.02477322891354561, 0.0025081492494791746, 0.012138402089476585, -0.0032708027865737677, -0.010649126023054123, 0.0019987127743661404, -0.0169104915112257, -0.00906376726925373, -0.01426022034138441, 0.009864453226327896, -0.009231911040842533, 0.00028174143517389894, -0.0009142835042439401, 0.007882755249738693, -0.01487674843519926, 0.0004428795073181391, 0.009039746597409248, -0.0028724614530801773, 0.012859019450843334, -0.005344579927623272, 0.004523876588791609, 0.014244206249713898, 0.0009177864994853735, 0.002005718881264329, 0.0014522444689646363, -0.00968029536306858, 0.0005219472805038095, -0.0169104915112257, -0.004896195605397224, -0.01162596233189106, 0.0029505284037441015, -0.011273660697042942, 0.002458106493577361, 0.0067898184061050415, -0.004948240239173174, -0.017214752733707428, -0.010785242542624474, 0.004764082375913858, -0.022050896659493446, -0.0036551321391016245, -0.006857876665890217, -0.002586216200143099, 0.008679437451064587, -0.015949668362736702, -0.003859307151287794, 0.001148984651081264, -0.009472116827964783, 0.021570485085248947, -0.009904487989842892, 0.019824989140033722, -0.0068498700857162476, 0.008639403618872166, -0.002972547197714448, -0.009712322615087032, -0.0031587067060172558, 0.002900485647842288, -0.00590906385332346, 0.0009603229118511081, -0.016766367480158806, 0.016702312976121902, 0.016878463327884674, 0.00906376726925373, 0.0044838422909379005, 0.015229050070047379, -0.028408344835042953, 0.0098244184628129, 0.0036311117000877857, 0.014140116982161999, -0.017438944429159164, 0.00036206026561558247, -0.01389190461486578, -0.008743492886424065, 0.008727478794753551, -0.009352014400064945, 0.04374948889017105, -0.026983123272657394, 0.003058620961382985, 0.004555904306471348, -0.026294533163309097, -0.013907917775213718, 0.01662224344909191, -0.0011599940480664372, -0.001384186209179461, 0.0017545034643262625, 0.0265667662024498, 0.01294709462672472, 0.006457533687353134, -0.015237057581543922, -0.0040594786405563354, 0.007270229980349541, -0.013923931866884232, 0.004663996864110231, -0.016990559175610542, 0.004495852626860142, 0.0003868314961437136, -0.019408632069826126, 0.024052612483501434, -0.006409492343664169, 0.007006003521382809, 0.023187870159745216, -0.0036591356620192528, -0.0031987412367016077, -0.010985413566231728, -0.0020657703280448914, -0.003765226574614644, -0.004728051833808422, -0.001081927097402513, 0.004071488976478577, 0.015501284040510654, 0.007966826669871807, -0.014932796359062195, -0.016846437007188797, -0.014428364112973213, 0.029048893600702286, 0.005348583217710257, 0.014772659167647362, -0.010825276374816895, -0.001834572060033679, -0.0030706312973052263, 0.0066857291385531425, 0.04083499312400818, 0.0051604220643639565, -0.01279496494680643, -0.029721468687057495, -0.0041915918700397015, -0.009239917621016502, -0.0020197308622300625, -0.0184157807379961, -0.032651979476213455, -0.002344008767977357, 0.02285158261656761, -0.016590217128396034, 0.0019917066674679518, -0.002738346578553319, 0.026198450475931168, 0.0002894980716519058, 0.02134629152715206, 0.012074346654117107, 0.0044558183290064335, -0.009576206095516682, 0.0013121244264766574, 0.005472689867019653, -0.011834140866994858, 0.011521873064339161, 0.020657703280448914, 0.006605660542845726, -0.005296538583934307, -0.005877036135643721, -0.017230765894055367, -0.004563910886645317, 0.017230765894055367, 0.008711465634405613, 0.028760645538568497, 0.02313982881605625, 0.0025762077420949936, 0.022755499929189682, -0.00671375310048461, -0.0045278798788785934, -0.0064014857634902, -0.01617386005818844, -0.01602173037827015, 0.0014462393010035157, -0.017454957589507103, 0.008287101984024048, 0.001609379192814231, 0.0022699451074004173, -2.7007517928723246e-05, -0.011690017767250538, -0.0015503285685554147, -0.0077306246384978294, 0.010753215290606022, 0.0193766038864851, 0.003396910848096013, -0.0035150120966136456, 0.0013121244264766574, -0.009632254019379616, -0.03186730667948723, -0.006505575031042099, -0.01246668305248022, -0.02240319736301899, -0.015100940130650997, 0.013499568216502666, 0.016301969066262245, -0.02230711653828621, -0.001824563485570252, 0.009480123408138752, -0.00623334152624011, 0.02558992989361286, -0.01389190461486578, 0.00190162961371243, 0.0017895335331559181, -0.002390048233792186, 0.0009498139261268079, -0.011682011187076569, -0.016798395663499832, -0.0029305112548172474, -0.0008086930029094219, 0.0012660849606618285, -0.022995706647634506, 0.008847582153975964, -0.030362017452716827, -0.0002947525936178863, -0.024629104882478714, 0.0021038027480244637, 0.02315584383904934, 0.006149269640445709, 0.020657703280448914, -0.0010859306203201413, -0.016574203968048096, 0.020561620593070984, -0.006061193998903036, -0.0041195303201675415, 0.024517009034752846, 0.004467828664928675, -0.004808120429515839, -0.0066857291385531425, 0.009520158171653748, -0.021778663620352745, -0.007446381263434887, -0.008895622566342354, -0.006049183662980795, 0.0034789813216775656, 0.014572488144040108, 0.0018015437526628375, -0.011641976423561573, -0.026326559484004974, -0.0028464391361922026, 0.003931369166821241, -0.006909921299666166, 0.007058048155158758, -0.00023582708672620356, -0.017038600519299507, -0.0025461819022893906, 0.013835856691002846, 0.035005997866392136, -0.021490415558218956, 0.003464969340711832, 0.0033468680921941996, 0.013019156642258167, 0.01775921881198883, -0.0019646836444735527, 0.010905344970524311, -0.008999711833894253, 0.0005284528597258031, -0.008703458122909069, -0.015092933550477028, -0.02438890002667904, 0.017502998933196068, -0.0020737771410495043, -0.010336858220398426, -0.01767914928495884, 0.0015173002611845732, 0.008110950700938702, 0.003671145997941494, -0.003575063543394208, -0.016478121280670166, -0.0032788098324090242, -0.0038252780213952065, 0.005516727454960346, -0.0017044605920091271, 0.000771661289036274, -0.003020588541403413, 0.007646552752703428, -0.005124391056597233, -0.01617386005818844, 0.006125248968601227, -0.010745207779109478, -0.00883156806230545, 0.0055567617528140545, 0.02068972960114479, 0.011802113614976406, -0.0018395764054730535, 0.0024340858217328787, 0.02845638617873192, 0.021810689941048622, -0.007118099834769964, -0.014460391364991665, -0.014540459960699081, 0.018864165991544724, -0.012178435921669006, 0.011089502833783627, 0.016029736027121544, -0.007234199438244104, -3.4209001569251996e-06, 0.020545605570077896, -0.06094823032617569, 0.02562195621430874, -0.008775520138442516, -0.014532453380525112, -0.02269144542515278, 0.006253358907997608, -0.014716611243784428, 0.016974546015262604, 0.0016394049162045121, 0.001138976076617837, -0.007534456439316273, -0.00788675807416439, 0.030458100140094757, 0.02379639260470867, -0.00317872385494411, -0.016237914562225342, 0.007050041574984789, -0.008026878349483013, 0.015837572515010834, 0.008158992044627666, 0.007630539126694202, -0.02173062227666378, 0.007950813509523869, 0.0054526724852621555, 0.0022419211454689503, 0.009888473898172379, 0.0028084067162126303, 0.0253337100148201, -0.031162705272436142, 0.011794107034802437, 0.010384899564087391, -0.004603945184499025, -0.008807547390460968, -0.0049242195673286915, 0.017919356003403664, 0.018736055120825768, 0.023476118221879005, -0.013451526872813702, 0.01086531113833189, 0.013995993882417679, 0.017823273316025734, -0.003649126971140504, -0.00799084734171629, 0.013627678155899048, -0.01926450803875923, -0.017358874902129173, 0.027255356311798096, -0.014428364112973213, -0.0063214171677827835, 0.0059250774793326855, 0.008287101984024048, -0.019985126331448555, 0.020865879952907562, -0.015621386468410492, 0.004495852626860142, 0.008399197831749916, -0.006069201044738293, -0.0016113808378577232, 0.020945949479937553, -0.0013201312394812703, -0.0008707461529411376, 0.008623389527201653, -0.010561049915850163, -0.005524734500795603, -0.01195424422621727, 0.01681440882384777, -0.01947268657386303, -0.004183585289865732, 0.007706603966653347, -0.005921074189245701, -0.005468686111271381, 0.015701455995440483, -0.02126622386276722, -0.0030526157934218645, 0.006365454755723476, 0.0015483268070966005, 0.02059364691376686, 0.012979121878743172, 0.0027943947352468967, 0.011097509413957596, -0.002400056691840291, -0.017519012093544006, -0.011810120195150375, 0.0033728904090821743, 0.0011830137809738517, 0.010048611089587212, -0.02909693494439125, -0.008447239175438881, -0.00666170846670866, -0.016269942745566368, 0.0193766038864851, -0.011834140866994858, 0.01327537652105093, -0.0006465540500357747, 0.005548754706978798, -0.00675779115408659, 0.007098082453012466, 0.0184157807379961, 0.010521016083657742, 0.008247067220509052, -0.007774662226438522, 0.018191589042544365, -0.0083191292360425, 0.021858731284737587, 0.03385300934314728, -0.00879153423011303, 0.014924789778888226, 0.017935369163751602, 0.0011980265844613314, -0.006901914719492197, -0.006193307228386402, 0.004057477228343487, -0.02117014117538929, 0.004267657175660133, 0.0037211887538433075, -0.003434943500906229, 0.04355732724070549, -0.012931081466376781, 0.015068912878632545, 0.013067197985947132, 0.0051163844764232635, 0.03167514503002167, 0.00930397305637598, 0.028216179460287094, -0.0017374888993799686, -0.003869315842166543, -0.0002819916408043355, -0.007778665982186794, 0.02278752811253071, 0.010032596997916698, 0.00519645307213068, 0.00954417884349823, 0.002906490582972765, 0.006917928345501423, -0.0144123500213027, -0.023043746128678322, 0.0034029160160571337, -0.012306545861065388, -0.012026306241750717, 0.007266226690262556, 0.019312549382448196, 0.0026282521430402994, -0.00988046731799841, -0.00798284076154232, -0.029737483710050583, 0.0009833426447585225, -4.134793198318221e-05, 0.026294533163309097, 0.015341146849095821, 0.006109235342592001, 0.008895622566342354, -0.005808977875858545, -0.0060571907088160515, -0.024597078561782837, -0.010280810296535492, 0.007746638264507055, 0.006729767192155123, -0.0002559693530201912, 0.016510147601366043, 0.01731083355844021, -0.007778665982186794, -0.021970827132463455, -0.01870402880012989, 0.005704888608306646, -0.0079428069293499, -0.009832425974309444, 0.014388330280780792, 0.0020447522401809692, 0.025653984397649765, 0.002964540384709835, 0.01928052306175232, -0.007058048155158758, 0.015301112085580826, -0.002532169921323657, -0.007918786257505417, -0.011265654116868973, -0.023027732968330383, -0.031402911990880966, -0.0014382324879989028, 0.009127821773290634, -0.00543665885925293, -0.0014452384784817696, -0.008295108564198017, -0.002145838923752308, 0.027911918237805367, 0.0037792385555803776, 0.00259822653606534, -0.02182670496404171, 0.016478121280670166, 0.014308261685073376, -0.003679152810946107, 0.0069659692235291, 0.0044838422909379005, 0.00508035346865654, 0.0033068337943404913, -0.00892765074968338, -0.027927933260798454, 0.006449526641517878, -0.0009898482821881771, -0.01341949962079525, -0.007934799417853355, 0.013147266581654549, -0.010192734189331532, -0.005652843974530697, -0.009752357378602028, -0.008207032456994057, 0.005724905990064144, -0.003877322655171156, -0.01729482039809227, -0.006693736184388399, 0.014628536067903042, -0.01804746501147747, 0.005376607645303011, -0.015164995566010475, -0.0070540448650717735, -0.013691732659935951, 0.009191877208650112, 0.021778663620352745, -0.0021998852025717497, 0.005276521667838097, 0.02410065196454525, -0.02892078272998333, 0.020081209018826485, -0.02381240576505661, 0.011177578940987587, 0.0002510901540517807, 0.015901627019047737, 0.023091787472367287, -0.0040915063582360744, 0.0008287101518362761, -0.0392976738512516, -0.01498083770275116, -0.01795138232409954, 0.010761221870779991, 0.005288532003760338, -8.626141789136454e-05, 0.011754072271287441, 0.014308261685073376, 0.008199025876820087, -0.00604518037289381, -0.009360020980238914, 0.010184727609157562, 0.00355704827234149, -0.02741549350321293, 0.011289674788713455, -0.011161564849317074, 0.00441978732123971, 0.001185015426017344, -0.0171827245503664, -0.0003963396302424371, 0.024436941370368004, 0.004299684427678585, -0.0067177568562328815, -0.016558188945055008, 0.001431226497516036, 0.00907978042960167, -0.006925934925675392, -0.004876178689301014, 0.0006365454755723476, 0.006809835787862539, 0.019328562542796135, -0.016398051753640175, 0.000612524920143187, 0.006605660542845726, -0.010272802785038948, -0.028136111795902252, -0.02004918083548546, -0.00029200021526776254, -0.007102086208760738, -0.011553901247680187, 0.00931197963654995, -0.020081209018826485, 0.005600799340754747, -5.667356526828371e-05, -0.009111808612942696, 0.013499568216502666, 0.02230711653828621, -3.8251528167165816e-05, 0.004555904306471348, 0.00035905768163502216, 0.009968542493879795, 0.00611724192276597, -0.008471258915960789, 0.008207032456994057, -0.009119815193116665, -0.004828137345612049, 0.005360593553632498, 0.011826134286820889, 0.0023860447108745575, 0.003749212948605418, 0.022355157881975174, 0.004283670801669359, -0.025830134749412537, -0.017262792214751244, 0.0056608510203659534, 0.019440660253167152, -0.012634826824069023, -0.0184157807379961, 0.004319701809436083, 0.0028064048383384943, -0.012674861587584019, 0.0015112950932234526, 0.0002909993636421859, -0.003995423670858145, -0.0025381750892847776, -0.00308464327827096, -0.0022819554433226585, 0.02880868688225746, -0.005837001837790012, 0.014244206249713898, -0.003154703415930271, -0.0191043708473444, -0.012250497937202454, 0.010472974739968777, -0.007442377507686615, -0.019889043644070625, -1.6529789718333632e-05, -0.022915637120604515, 0.006001142784953117, -0.013387472368776798, -0.0025742058642208576, -0.000545467424672097, -0.016638258472085, -0.005772946868091822, -0.014948810450732708, -0.007118099834769964, 0.0008011865429580212, 0.0034689726307988167, 0.00404947018250823, -0.01673434115946293, -0.017502998933196068, -0.0050283088348805904, -0.011738059110939503, 0.003941377624869347, -0.005020302254706621, 0.001394194783642888, 0.005997139029204845, -0.017038600519299507, 0.011513866484165192, 0.021778663620352745, 0.010801255702972412, -0.005276521667838097, 0.015917640179395676, -0.016494134441018105, 0.0012280523078516126, 0.016478121280670166, 0.01052902266383171, -0.03401314839720726, -0.027271369472146034, 0.024340858682990074, -0.020001139491796494, 0.018880179151892662, 0.0038292815443128347, -0.0006450527580454946, -0.01279496494680643, -0.005520730745047331, -0.009712322615087032, -0.010304830968379974, -0.009464110247790813, 0.001262081554159522, -0.010617097839713097, -0.004081497434526682, 0.014652556739747524, -0.01710265502333641, -1.459844770579366e-05, 0.026246491819620132, -0.0033388612791895866, 0.0006435514660552144, 0.003444952191784978, -0.0057929642498493195, -0.00671375310048461, 0.02836030349135399, -0.0028084067162126303, -0.026518724858760834, -0.009279952384531498, -0.012226477265357971, 0.02703116461634636, -0.018447808921337128, -0.01318730041384697, 0.010168713517487049, -0.003949384205043316, 0.013987986370921135, -0.0058930497616529465, -0.01436430960893631, 0.009568199515342712, -0.008287101984024048, 0.02078581228852272, 0.0021918783895671368, 0.009143835864961147, -0.03005775809288025, 0.009376035071909428, 0.014780665747821331, -3.5248955100541934e-05, 0.023267939686775208, -0.0018055472755804658, -0.005845008883625269, -0.008727478794753551, 0.011201598681509495, -0.013779808767139912, -0.018784096464514732, 0.00725021306425333, 0.03173919767141342, -0.003885329468175769, 0.007378322537988424, -0.004267657175660133, -0.026246491819620132, 0.00968830194324255, -0.013579636812210083, 0.017631107941269875, -0.0033368594013154507, 0.0026963106356561184, 0.021522443741559982, -0.007754645310342312, -0.01956876926124096, -0.015052899718284607, 0.002588217845186591, -0.022915637120604515, 0.005048326216638088, 0.028200166299939156, 0.012130394577980042, -0.001215041265822947, 0.02192278578877449, 0.016462106257677078, -0.002926507731899619, -0.013291389681398869, 0.0011349725537002087, 0.03942578658461571, -0.006733770482242107, 0.005784957204014063, -0.012130394577980042, -0.02155447006225586, -0.011417784728109837, 0.011529880575835705, -0.019680865108966827, 0.0015383182326331735, -0.007306260988116264, -0.020913921296596527, 0.007602514699101448, -0.012634826824069023, 0.012554758228361607, 0.024597078561782837, -0.013459534384310246, -0.0039874170906841755, 0.001835572998970747, -0.0023760360199958086, 0.0013351441593840718, -0.0034109230618923903, 0.007814696989953518, 0.002796396380290389, -0.01025678962469101, -0.01702258735895157, 0.007586501073092222, -0.009568199515342712, 0.022435225546360016, 0.017422931268811226, -0.009952528402209282, -0.011850154958665371, 0.0038412916474044323, 0.005336572881788015, 0.01995309814810753, -0.02949727699160576, 0.023844433948397636, -0.0007361308089457452, -0.00323677365668118, -0.018736055120825768, 0.00760651845484972, 0.02115412801504135, -0.0021298250649124384, -0.009456103667616844, 0.010128679685294628, 0.01851186342537403, 0.010745207779109478, 0.009976549074053764, -0.00675779115408659, -0.005704888608306646, 0.004423791076987982, 0.008471258915960789, -0.005620816722512245, -0.0005980124697089195, -0.009055759757757187, -0.0037432077806442976, -0.022707458585500717, 0.017454957589507103, 0.0047760927118361, 0.010368885472416878, 0.004195595160126686, -0.002512152772396803, 0.0046479832381010056, -0.005432655569165945, -0.036799535155296326, -0.00526851462200284, -0.012867026031017303, 0.02315584383904934, 0.010809263214468956, -0.008138974197208881, -0.0007171145407482982, -0.0006460536387749016, -0.01474863849580288, -0.0018856158712878823, 0.018880179151892662, 0.002812410006299615, -0.012106374837458134, -0.014340288937091827, -0.007030024193227291, 0.00333085423335433, -0.0014382324879989028, -0.004335715435445309, 0.007342291995882988, 0.018736055120825768, -0.0038432935252785683, -0.004447811283171177, 0.00012936085113324225, -0.014340288937091827, 0.006141262594610453, 0.010064625181257725, 0.03194737806916237, -0.021298252046108246, -0.0012200454948469996, 0.023492131382226944, -0.016462106257677078, -0.0038933362811803818, 0.015277091413736343, 0.015533311292529106, 0.004796110093593597, 0.013195307925343513, 0.013139259070158005, 0.010144693776965141, -0.010921359062194824, 0.027239343151450157, 0.014932796359062195, -0.019824989140033722, 0.011049469001591206, 0.005788960959762335, -0.001778524136170745, -0.009271945804357529, 0.014868741855025291, -0.022819554433226585, 0.004215612541884184, -0.03372490033507347, 0.009592220187187195, -0.015261078253388405, 0.02552587352693081, -0.021202169358730316, 0.0036731476429849863, -0.006353444419801235, 0.0022339143324643373, -0.006041177082806826, -0.0033708885312080383, 0.01974491961300373, -0.008503287099301815, 0.0018886184552684426, -0.008719472214579582, -0.02118615433573723, 0.024244775995612144, 0.010216754861176014, -0.017647122964262962, 0.015341146849095821, 0.014692590571939945, -0.005252500995993614, 0.008511293679475784, 0.0061292522586882114, -0.007650556042790413, 0.013299397192895412, 0.01610179804265499, -0.006177293602377176, 0.005204460117965937, -0.020929936319589615, 0.0011910205939784646, 0.006601657252758741, -0.005861022509634495, 0.0008612380479462445, 0.015485269948840141, 0.026502711698412895, -0.013051183894276619, -0.013499568216502666, -0.023364022374153137, -0.013155273161828518, -0.00484014768153429, 0.003264797618612647, -0.01450042612850666, -0.006013153120875359, 0.0009623246733099222, 0.0008872603066265583, 0.005560765042901039, 0.006225334946066141, -0.01048898883163929, -0.006813839077949524, -0.004960250575095415, -0.01067314576357603, -0.010521016083657742, -0.025862162932753563, 0.025365736335515976, -0.005232484079897404, -0.01747097074985504, 0.018495850265026093, -0.024533024057745934, 0.016878463327884674, -0.016558188945055008, 0.003058620961382985, -0.030746348202228546, -0.02456505037844181, 0.026518724858760834, 0.001373176695778966, -0.002956533571705222, -0.025285668671131134, -0.0020637684501707554, -0.00550071382895112, 0.016494134441018105, -0.01831969805061817, 0.008130967617034912, -0.0033849007450044155, 0.0094480961561203, -0.017326848581433296, -0.015917640179395676, -0.001005861908197403, -0.02051357924938202, 0.01654217578470707, 0.005208463408052921, -0.018287671729922295, 0.016606230288743973, 0.011393764056265354, -0.016261935234069824, -0.0016404057387262583, -0.026390615850687027, -0.00453588692471385, 0.012586786411702633, -0.01758306846022606, -0.010665139183402061, 0.023027732968330383, 0.0176631361246109, -0.0132833831012249, -0.0010669142939150333, -0.01303517073392868, -0.00030701307696290314, -0.019792960956692696, 0.007202171720564365, 0.01077723503112793, -0.001713468343950808, 6.74953407724388e-05, -0.0016804400365799665, -0.02768772654235363, 0.006005146075040102, 0.0016203885897994041, -0.00931197963654995, -0.020449524745345116, -0.00550872040912509, -0.03468572348356247, 0.0005529738846234977, 0.007030024193227291, 0.004427794367074966, -0.008799540810286999, 0.010945379734039307, 0.014372316189110279, 0.017695164307951927, 0.00670574652031064, -0.0013061192585155368, 0.00767858000472188, 0.010336858220398426, 0.01053702924400568, -0.023219898343086243, -0.01223448384553194, -0.0018665995448827744, 0.014956817030906677, -0.0017354872543364763, 0.004972260911017656, -0.004631969146430492, -0.018736055120825768, 0.004183585289865732, -0.009488130919635296, 0.015084926970303059, 0.01124964002519846, -0.007234199438244104, 0.015381180681288242, -0.013595650903880596, 0.004836144391447306, 0.006277379114180803, -0.02373233623802662, -0.01474863849580288, 0.007906775921583176, -0.010240775533020496, 0.03268400952219963, -0.012306545861065388, -0.033788956701755524, -0.025061476975679398, -0.002824420342221856, 0.00044538165093399584, 0.01375578809529543, 0.0038793243002146482, -0.024533024057745934, 0.020081209018826485, 0.023700309917330742, 0.005408634897321463, 1.4614085557695944e-05, 0.009608233347535133, -0.0004999284283258021, -0.024693161249160767, 0.006101228296756744, 0.01900828815996647, -0.005576779134571552, 0.005308548919856548, -0.020753784105181694, 0.01756705343723297, -0.0025001424364745617, 0.02354017272591591, -0.0029665420297533274, 0.013339431025087833, 0.015461249276995659, 0.006913924589753151, 0.016590217128396034, 0.009111808612942696, -0.0095521854236722, -0.003905346617102623, 0.02597425878047943, -0.022563334554433823, 0.009472116827964783, -0.03034600429236889, -0.004539890214800835, -0.01993708498775959, 0.02861652337014675, 0.007910778746008873, 0.013467540964484215, -0.012979121878743172, 0.012859019450843334, -0.008583355695009232, -0.00024008072796277702, 0.017038600519299507, 0.008911636658012867, -0.001955675892531872, 0.019600797444581985, 0.01440434344112873, 0.006005146075040102, -0.010809263214468956, -0.014836713671684265, 0.0011649982770904899, -0.0013431509723886847, -0.02730339765548706, 0.015261078253388405, 0.009424075484275818, -0.010921359062194824, -0.001430225558578968, -0.007238202728331089, -0.03215555474162102, 0.005140405148267746, -0.0178713146597147, -0.016165852546691895, -0.012226477265357971, -0.019905056804418564, 0.028488412499427795, -0.004111523274332285, 3.3497453841846436e-05, 0.00250414595939219, 0.014948810450732708, -0.004631969146430492, 0.020913921296596527, -0.012282525189220905, -0.02562195621430874, -0.011665997095406055, 0.006033170036971569, 0.025557901710271835, -0.016269942745566368, 0.0030666280072182417, 0.017999423667788506, 0.0014272230910137296, -0.007386329583823681, 0.0063934787176549435, -0.008759506046772003, 0.027383465319871902, 0.020545605570077896, -0.0007016012095846236, -0.03314840793609619, 0.026102367788553238, -0.022659417241811752, 0.03446153178811073, -0.009055759757757187, -0.007918786257505417, 0.01464454922825098, -0.00304861250333488, -0.004471831955015659, -0.011665997095406055, 0.0090717738494277, 0.015469255857169628, 0.002682298654690385, -0.014284241013228893, -0.012818984687328339, -0.00393337057903409, 0.0021138114389032125, -0.007726621348410845, -0.004255646839737892, -0.014212178997695446, 0.007938803173601627, -0.008134971372783184, 0.012026306241750717, -7.4063464126084e-05, -0.0006945952191017568, -0.012210463173687458, 0.0037712317425757647, 0.008743492886424065, 0.0024681149516254663, -0.013979979790747166, 0.003218758385628462, 0.009616240859031677, -0.006185300648212433, -0.009295966476202011, -0.023396048694849014, -0.015068912878632545, 0.0060571907088160515, -0.01654217578470707, 0.002720331074669957, 0.011297681368887424, -0.02125021070241928, 0.008399197831749916, -0.005148411728441715, -0.009976549074053764, -0.006797825451940298, 0.008038888685405254, -0.014188158325850964, 0.004095509648323059, -0.025541888549923897, -0.02296367846429348, -0.005776950623840094, 0.008070915937423706, 0.005800971295684576, 0.013491561636328697, -0.008146981708705425, -0.02201886847615242, 0.005608806386590004, 0.013507574796676636, 0.006145265884697437, -0.014524446800351143, -0.0031967393588274717, -0.015164995566010475, 0.027735767886042595, -0.00046690009185113013, -0.0016574203036725521, -0.0005759936175309122, 0.008543320931494236, -0.004315698053687811, 0.0025762077420949936, 0.007966826669871807, -0.012634826824069023, -0.010545036755502224, 0.021586498245596886, -0.012546751648187637, 0.005096367094665766, -0.01582956500351429, -0.014452384784817696, -0.0044558183290064335, 0.02645467035472393, 0.0008252071565948427, 0.016574203968048096, 0.024917352944612503, -0.007138116750866175, -0.01389190461486578, 0.0026963106356561184, 0.005744922906160355, -0.030586211010813713, 0.012042319402098656, -0.00034004138433374465, -0.004668000154197216, 0.0011059477692469954, 0.013147266581654549, 0.01737488992512226, -0.007714611012488604, -0.00043161987559869885, -0.0003653130552265793, -0.010112665593624115, -0.0015132968546822667, 0.004435801412910223, 0.018063480034470558, 0.012602799572050571, 0.000488918973132968, 0.0007326278137043118, -0.008239060640335083, 0.011161564849317074, 0.010513008572161198, -0.0009052757523022592, -0.027735767886042595, -0.003088646801188588, -0.001262081554159522, -0.007722617592662573, -0.015629393979907036, -0.023299966007471085, 0.019584782421588898, -0.0064535303972661495, 0.020817840471863747, 0.004175578244030476, 0.009327993728220463, 0.017823273316025734, -0.007386329583823681, 0.001270088367164135, -0.017262792214751244, 0.001760508632287383, -0.01233857311308384, -0.007530453149229288, 0.006341434083878994, 0.03391706570982933, 0.016878463327884674, -0.002342006890103221, 0.020849866792559624, -0.013179293833673, 0.012058333493769169, 0.015333139337599277, -0.002788389567285776, 0.005608806386590004, 0.01294709462672472, -0.0010569057194516063, -0.006949955597519875, -0.017743205651640892, 0.004211609251797199, -0.002211895538493991, 0.0002804903488140553, 0.005949098151177168, -0.0021058046258985996, -0.003995423670858145, -0.006209320854395628, -0.025782093405723572, -0.002502144081518054, 0.01052902266383171, 0.054670847952365875, 0.023299966007471085, 0.003244780469685793, 0.002738346578553319, 0.005464682821184397, -0.0377923846244812, 0.00988046731799841, 0.002570202574133873, -0.015253070741891861, -0.0009443092276342213, 0.0038332848343998194, 0.011746065691113472, 0.02824820764362812, 0.010985413566231728, -0.011497853323817253, 0.009504144079983234, -0.009592220187187195, 0.0009563195053488016, 0.011449811980128288, 0.020433509722352028, -0.005332569591701031, -0.0064014857634902, -0.0007351299864239991, -0.011706030927598476, 0.024725187569856644, -0.004431797657161951, -0.007306260988116264, -0.022835569456219673, -0.0002754860615823418, -0.00799084734171629, 0.024821270257234573, 0.007034027948975563, -0.031803254038095474, -0.00191964500118047, 0.011113523505628109, 0.020737770944833755, -0.0046599931083619595, 0.018383754417300224, 0.015805544331669807, -0.017502998933196068, -0.020161276683211327, -0.004491849336773157, -0.006593650206923485, -0.024549037218093872, -0.013627678155899048, 0.018399767577648163, 0.003725192276760936, -0.023508144542574883, 0.006005146075040102, -0.011986271478235722, -0.002049756469205022, -0.004832140635699034, 0.004037459846585989, -0.0015923645114526153, -0.011201598681509495, 0.03089047037065029, 0.010969400405883789, -0.028024014085531235, -0.009936515241861343, -0.007906775921583176, 0.012546751648187637, -0.0018055472755804658, 0.005304545629769564, 0.020929936319589615, 0.0021958816796541214, 0.024549037218093872, -0.011289674788713455, -0.008279094472527504, -0.012762936763465405, 0.00022769512725062668, 0.026006285101175308, -0.03327651694417, -0.020065193995833397, -0.012458676472306252, -0.011137544177472591, -0.009888473898172379, -0.0006845866446383297, -0.027463534846901894, -0.014076062478125095, 0.005612809676676989, 0.0012120386818423867, 0.008351156488060951, -0.009504144079983234, -0.0030786381103098392, -0.02456505037844181, 0.0009297967771999538, -0.004555904306471348, 0.005388617515563965, 0.00737431924790144, -0.003633113345131278, -0.011593935079872608, -0.0010509005514904857, -0.02940119430422783, 0.002372032729908824, 0.026598794385790825, 0.008118957281112671, -0.015437228605151176, 0.011281667277216911, 0.006961965933442116, 0.008199025876820087, -0.0009868456982076168, 0.03089047037065029, -0.0019496707245707512, 0.019712893292307854, 0.004635972902178764, -0.024517009034752846, 0.02313982881605625, 0.0011089503532275558, 0.009360020980238914, 0.02920903079211712, 0.0006195309106260538, 0.004127536900341511, -0.0037792385555803776, 0.0067177568562328815, -0.00713411346077919, 0.01498083770275116, 0.003152701770886779, 0.007414353545755148, 0.037183865904808044, 0.027895905077457428, -0.012178435921669006, 0.011898196302354336, 0.016878463327884674, -0.008983698673546314, 0.005772946868091822, -0.002568200696259737, 0.008082926273345947, 0.023652268573641777, -0.02126622386276722, -0.002155847381800413, 0.008807547390460968, -0.0003387903270777315, -0.017887327820062637, 0.005592792760580778, 0.0017565052257850766, -0.0164300799369812, -0.007022017613053322, 0.016462106257677078, -0.0029865591786801815, 0.004081497434526682, -0.0006415497628040612, 0.01785530149936676, 0.013259362429380417, -0.019969113171100616, 0.008919643238186836, 6.774555367883295e-05, -0.008775520138442516, 0.006729767192155123, 0.013627678155899048, 0.007182154804468155, -0.013067197985947132, -0.009912494570016861, -0.003963396418839693, 0.0171186700463295, -0.003324849298223853, -0.006461536977440119, -0.03449355810880661, 0.017999423667788506, -0.0020017153583467007, -0.013747780583798885, -0.0026762934867292643, 0.006725763436406851, 0.009512151591479778, 0.00859936885535717, -0.0045278798788785934, -0.007622532080858946, 0.002474120119586587, 0.012298539280891418, -0.016342004761099815, -0.00046164559898898005, 0.0014542462304234505, -0.008983698673546314, -0.0036311117000877857, -0.01804746501147747, -0.01001658383756876, -0.020657703280448914, -0.015709461644291878, -0.016342004761099815, -0.02986559271812439, -0.0017054615309461951, 0.024517009034752846, 0.012907060794532299, 0.00855933502316475, -0.002680296776816249, -0.007102086208760738, -0.005140405148267746, -0.002049756469205022, -0.0014912779442965984, -0.000913282623514533, 0.006081211380660534, 0.004435801412910223, 0.007066055200994015, -0.007774662226438522, -0.015701455995440483, -0.014668569900095463, 0.005652843974530697, 0.0031867309007793665, 0.0014702599728479981, -0.03900942951440811, -0.002163854194805026, -0.0012350584147498012, -6.987237429711968e-05, 0.0015112950932234526, -0.008287101984024048], "797a48ee-2ac2-4e05-9bb0-8e4c54754eac": [-0.00796151626855135, -0.0027185198850929737, -0.009729035198688507, -0.003992285579442978, -0.03676437959074974, -0.02712756209075451, 0.022562753409147263, 0.0355040617287159, -0.03243011608719826, 0.03854726627469063, -0.0007151724421419203, 0.0026090105529874563, -0.00781550444662571, -0.01030539907515049, -0.0017358181066811085, 0.035903673619031906, -0.029940221458673477, 0.011696359142661095, -0.006478338502347469, -0.034581877291202545, 0.0772789716720581, 0.007915407419204712, -0.0322149395942688, 0.04371149092912674, -0.007339042611420155, -0.015169916674494743, 0.0015734754269942641, 0.007527322042733431, -0.003890461288392544, 0.01131211593747139, -0.0013650235487148166, 0.018182381987571716, 0.009314051829278469, -0.012426421046257019, 0.03799395635724068, 0.0013102688826620579, -0.009206464514136314, -0.002046094508841634, -0.0006200722418725491, 0.014163199812173843, -0.030339833348989487, 0.02548300102353096, -0.001041298732161522, -0.008914439007639885, -0.06320030242204666, 0.026927754282951355, 0.020226554945111275, -0.013010471127927303, -0.015546474605798721, -0.009544597938656807, 0.026712579652667046, -0.03115442954003811, -0.010090223513543606, 0.011143049225211143, 0.006151731591671705, -0.02222461998462677, -0.010920188389718533, 0.042789310216903687, 0.007611855398863554, -0.046262867748737335, -0.016645411029458046, 0.005072008818387985, 0.0023842283990234137, -0.003298726864159107, -0.014655031263828278, -0.016061360016465187, 0.029786523431539536, 0.010282345116138458, -0.04272783175110817, -0.0005874116322956979, -0.010274659842252731, 0.008222801610827446, -0.04770762100815773, 0.022347576916217804, -0.026343705132603645, -0.00654365960508585, 0.05256445333361626, -0.0044226376339793205, -0.0027742350939661264, -0.005828967317938805, -0.012280409224331379, -0.008330389857292175, 0.010712697170674801, -0.011189158074557781, 0.060648929327726364, 0.017229460179805756, -0.034581877291202545, -0.051457833498716354, -0.022393686696887016, -0.017705921083688736, -0.0057905432768166065, 0.003454345278441906, 0.023531045764684677, -0.013886544853448868, -0.01451670378446579, 0.03409004583954811, 0.013194907456636429, 0.024729885160923004, 0.013679053634405136, -0.034182265400886536, 0.004487959202378988, 0.044910330325365067, -0.06307734549045563, 0.016599301248788834, -0.009198779240250587, 0.016092101112008095, 0.023454196751117706, -0.005498518701642752, -0.03848578780889511, 0.014485964551568031, 0.0272812582552433, -0.025467630475759506, 0.002768471371382475, -0.0076080127619206905, -0.02698923461139202, -0.054531779140233994, 0.009344791993498802, -0.004668553359806538, 0.002065306529402733, -0.04383445158600807, 0.052625931799411774, 0.02259349264204502, 0.004587862174957991, -0.000738707312848419, -0.01552342064678669, -0.0005297751631587744, 0.030140027403831482, -0.00939090084284544, 0.030893143266439438, -0.0030797081999480724, -0.01753685437142849, -0.02207092195749283, -0.0035292727407068014, 0.030816294252872467, -0.013133428059518337, -0.005894288886338472, 0.0033179388847202063, 0.038055434823036194, -0.033997826278209686, 0.06074114516377449, -0.050074558705091476, -0.04060680791735649, -0.016676150262355804, -0.009782828390598297, -0.0219633337110281, 0.012434106320142746, -0.03867022320628166, 0.04374223202466965, -0.00401918264105916, 0.03445892035961151, -0.05978822335600853, -0.0259902011603117, 0.007277564145624638, 0.0010701169958338141, -0.014877892099320889, -0.004564807750284672, -0.002147918799892068, -0.0006171904387883842, 0.002820344176143408, 0.012580118142068386, 0.01695280522108078, -0.03931575268507004, -0.0025187134742736816, -0.00029898915090598166, 0.03255307301878929, 0.005732906982302666, 0.045309942215681076, 0.05462399497628212, -0.06031079217791557, 0.020533950999379158, 0.025867244228720665, -0.006505235563963652, 0.022470535710453987, -0.0020633854437619448, 0.0033813391346484423, 0.004949050955474377, 0.025144867599010468, 0.03968462347984314, 0.003738685278221965, -0.04789205640554428, -0.019719354808330536, 0.0007060466450639069, -0.007070072460919619, -0.011611825786530972, 0.01047446671873331, 0.04119085893034935, 0.012372626923024654, 0.015492681413888931, 0.012249669060111046, 0.00786545593291521, -0.0021805795840919018, -0.02402287721633911, -0.008376498706638813, 0.02877212129533291, -0.022024814039468765, 0.0015917269047349691, 0.0027069924399256706, -0.0038040063809603453, -0.0027396532241255045, 0.02200944349169731, -0.014716509729623795, -0.05437808111310005, -0.02874138206243515, 0.03547332063317299, -0.016168948262929916, -0.00720455776900053, -0.014017187990248203, -0.05305628478527069, 0.033997826278209686, -0.01658393070101738, 0.04982864111661911, -0.0281880721449852, -0.008299650624394417, -0.011765522882342339, -0.011035460978746414, -0.005594579037278891, -0.031507931649684906, 0.05194966495037079, -0.015108438208699226, -0.023992137983441353, -0.03112369030714035, -0.005652215797454119, 0.005675270222127438, -0.03378264978528023, -0.03393634781241417, -0.027742350473999977, -0.009229518473148346, 0.01655319146811962, -0.012188190594315529, 0.005413984879851341, 0.0340593047440052, 0.01098166685551405, -0.02071838639676571, -0.013018155470490456, -0.043803710490465164, 0.01639949530363083, 0.019396590068936348, 0.017183350399136543, 0.008553250692784786, -0.011980699375271797, 0.020825974643230438, 0.030478160828351974, 0.022209249436855316, -0.005583052057772875, 0.022424425929784775, 0.050504911690950394, 0.015216025523841381, 0.05118117853999138, 0.053732551634311676, -0.018459036946296692, 0.01394802425056696, -0.0003316498186904937, 0.0007487937109544873, -0.014263102784752846, -0.015846185386180878, 0.05539248138666153, 0.01570785790681839, -0.010090223513543606, 0.00829196535050869, -0.0313081257045269, -0.020165076479315758, 0.021763527765870094, -0.00042987195774912834, 0.003450502874329686, 0.04229747876524925, -0.021548351272940636, 0.0280036348849535, -0.06356917321681976, 0.009659871459007263, 0.06227811798453331, 0.005310239270329475, 0.015546474605798721, -0.010067168623209, -0.018428297713398933, -0.010889449156820774, -0.02768087200820446, 0.015269819647073746, -0.01417088508605957, 0.00913730077445507, -0.010927872732281685, -0.014224679209291935, -0.007154606282711029, 0.03193828463554382, 0.02167131006717682, -0.007508109789341688, -0.014962425455451012, -0.011573401279747486, -0.0066089811734855175, -0.06455283612012863, -0.01848977617919445, -0.015800075605511665, 0.008391869254410267, 0.025206346064805984, 0.007412048988044262, 0.0490601547062397, 0.010582054033875465, 0.01819775253534317, 0.013440823182463646, -0.01981157250702381, 0.022547384724020958, -0.03968462347984314, -0.010766491293907166, 0.017475375905632973, -0.018612734973430634, 0.015677116811275482, 0.003873170353472233, 0.042789310216903687, 0.0030432052444666624, -0.009244888089597225, 0.03359821438789368, 0.033659692853689194, -0.0090604517608881, 0.010213181376457214, -0.0192275233566761, -0.034766312688589096, -0.0069394297897815704, 0.041067901998758316, 0.020933562889695168, 0.0017338969046249986, -0.023992137983441353, 0.0362418070435524, 0.002885665511712432, -0.04872202128171921, 0.05483917146921158, 0.035719238221645355, -0.03218420222401619, 0.015492681413888931, -0.02039562352001667, -0.052595194429159164, -0.033014167100191116, -0.009337106719613075, -0.04853758588433266, -0.03273751214146614, 0.014762619510293007, -0.0010585896670818329, -0.0465087816119194, -0.05179596692323685, -0.05385550856590271, 0.009383215568959713, -0.03814765438437462, -0.0030143868643790483, -0.010220865719020367, -0.0050527965649962425, 0.0041959346272051334, 0.03390561044216156, 0.0183053407818079, -0.01724482886493206, 0.03762508183717728, -0.021179478615522385, 0.0044572195038199425, 0.001005756319500506, -0.029970960691571236, 0.015139177441596985, 0.0010364956688135862, 0.04700061306357384, -0.031400345265865326, 0.00436500133946538, 0.0002699307515285909, -0.014570497907698154, 0.005118117667734623, -0.005406300071626902, -0.015369723550975323, -0.031400345265865326, -0.02280866913497448, 0.004172879736870527, -0.007558061275631189, -0.0020729913376271725, -0.007400521542876959, 0.019166044890880585, 0.013571465387940407, -0.02320828288793564, 0.018428297713398933, 0.023162173107266426, -0.01838218979537487, -0.024437859654426575, -0.0221477709710598, 0.036518462002277374, 0.009921155869960785, -0.019488809630274773, 0.020641537383198738, 0.006582084111869335, 0.026927754282951355, 0.006159416399896145, -0.0059327129274606705, 0.03922353312373161, 0.032860469073057175, 0.007969201542437077, 0.01599988155066967, 0.012380312196910381, -0.006459126248955727, -0.028833601623773575, 0.0410064198076725, -0.05825125053524971, -0.001957718515768647, -0.03196902573108673, 0.009898101910948753, 0.01684521697461605, 0.0031277386005967855, -0.0032468540593981743, -0.019796203821897507, -0.0031757690012454987, -0.002632065210491419, 0.00839955359697342, 0.015377407893538475, -0.01184237189590931, -0.05081230401992798, -0.0031565569806843996, -0.006124834530055523, 0.018766431137919426, 0.02130243554711342, -0.01241105142980814, 0.017183350399136543, 0.0035081394016742706, 0.014286157675087452, 0.025237085297703743, -0.022608863189816475, 0.0039000671822577715, 0.02508338913321495, -0.06744234263896942, -0.03934649005532265, 0.02365400455892086, 0.06486023217439651, -0.0377173013985157, 0.015984512865543365, -0.02134854532778263, 0.03642624244093895, 0.039930541068315506, 3.812411887338385e-05, -0.02211703173816204, -0.03968462347984314, -0.008138268254697323, 0.021686678752303123, -0.0030086233746260405, -0.009398586116731167, 0.007020120974630117, -0.026113159954547882, -0.004491801373660564, 0.012626227922737598, -0.011350540444254875, -0.002799210837110877, 0.016230428591370583, 0.03123127669095993, -0.0019519547931849957, 0.015023904852569103, -0.04660100117325783, -0.04451071843504906, -0.07014741748571396, 0.017152611166238785, 0.028218811377882957, -0.012203560210764408, -0.026666469871997833, 0.018720323219895363, -0.046816177666187286, -0.0025725073646754026, 0.013486932031810284, -0.007953831925988197, -0.0023554100189357996, -0.023515677079558372, 0.010958612896502018, -0.034981489181518555, -0.028726013377308846, -0.022347576916217804, 0.01878180168569088, -0.0016820240998640656, 0.020349513739347458, -0.02943301945924759, 0.017198720946907997, 0.024222683161497116, 0.020749125629663467, 0.004706977866590023, -0.013794326223433018, 0.018059425055980682, -0.005809755530208349, 0.013363974168896675, 0.015070013701915741, 0.009544597938656807, -0.011342856101691723, 0.00010398578160675243, -0.000854940852150321, -0.010904818773269653, -0.03313712403178215, -0.025913354009389877, -0.026681838557124138, 0.027726979926228523, -0.008030680008232594, -0.016522452235221863, 0.023300500586628914, -0.008253541775047779, -0.011096940375864506, 0.02277792990207672, 0.03350599482655525, -0.01809016428887844, 0.009037396870553493, 0.0254522617906332, 0.017183350399136543, -0.029371540993452072, -0.0017550302436575294, -0.018182381987571716, -0.02749643474817276, -0.022946996614336967, 0.009782828390598297, -0.03390561044216156, 0.022055553272366524, 0.010405302979052067, -0.01281834952533245, -0.011396649293601513, -0.02148687280714512, 0.016783738508820534, -0.0009332303889095783, -0.0061402046121656895, -0.00838418398052454, 0.024330271407961845, -0.009321737103164196, 0.019750094041228294, -0.020272664725780487, -0.007388994563370943, -0.0296635664999485, 0.018551256507635117, 0.03731768950819969, 0.006520605180412531, 0.006336168386042118, 0.006605138536542654, -0.020825974643230438, 0.006816472392529249, -0.023408088833093643, -0.031000731512904167, -0.0065282899886369705, -0.020810605958104134, 0.008069104515016079, -0.0006911572418175638, -0.01115073449909687, 0.007846243679523468, -0.009014342911541462, -0.0043035224080085754, 0.0040268674492836, -0.013133428059518337, -0.018443668261170387, 0.022378316149115562, 0.013118058443069458, 0.04368075355887413, -0.021394655108451843, 0.006416859570890665, -0.014393745921552181, 0.013463877141475677, -0.014562812633812428, 0.02277792990207672, -0.024038247764110565, 0.021625200286507607, -0.022532014176249504, -0.0029970959294587374, -0.021440763026475906, 0.022393686696887016, -0.012418736703693867, -0.010605108924210072, 0.008069104515016079, -0.023730851709842682, 0.02262423187494278, -0.03255307301878929, -0.020334143191576004, -0.027327368035912514, -0.009106560610234737, 0.019596397876739502, -0.001540814759209752, 0.011319801211357117, -0.006220895331352949, 0.0005633964319713414, -0.034397441893815994, 0.03160015121102333, -0.01568480208516121, 0.012918252497911453, 0.021978704258799553, 0.006193998269736767, 0.0457710362970829, -0.0018520515877753496, -0.015538790263235569, 0.031907543540000916, -0.005267972592264414, 0.0053947726264595985, -0.033014167100191116, -0.01098166685551405, 0.03943870961666107, -0.034797053784132004, -0.003458187682554126, -0.038977619260549545, -0.0017857697093859315, -0.019411960616707802, -0.01467808522284031, -0.027173670008778572, 0.026405183598399162, 0.020226554945111275, -0.00010062365618068725, 0.01727556809782982, 0.015077698044478893, 0.016460973769426346, -0.03359821438789368, 0.015876924619078636, 0.0014159356942400336, 0.015039274469017982, 0.015600268729031086, 0.005959609989076853, 0.011227582581341267, 0.02130243554711342, 0.016138209030032158, -0.022362947463989258, -0.031108319759368896, 0.014947055839002132, 0.004622444044798613, 0.005721379537135363, 0.006912533193826675, 0.0033044905867427588, -0.01878180168569088, 0.0023150646593421698, 0.01275687012821436, -0.015876924619078636, 0.032676029950380325, 0.0033563633915036917, 0.002816501772031188, 0.0479535348713398, 0.0038078490179032087, -0.006947115063667297, 0.01275687012821436, -0.024407120421528816, 0.05671427771449089, -0.012280409224331379, 0.017475375905632973, 0.012534009292721748, -0.017705921083688736, 0.0012449475470930338, -0.01175015326589346, -0.00846103299409151, 0.030109288170933723, -0.003072023391723633, 0.031507931649684906, -0.03737916797399521, 0.02540615200996399, -0.008153637871146202, 0.013625259511172771, 0.017383156344294548, -0.020472470670938492, -0.00028962321812286973, -0.04374223202466965, 0.0024706830736249685, -0.010136332362890244, 0.05167300999164581, -0.010351508855819702, 0.0061402046121656895, -0.0035100604873150587, 0.008115214295685291, 0.031400345265865326, 0.02365400455892086, -0.014777989126741886, -0.010758806020021439, 0.011542662046849728, 0.014616606757044792, -0.004165194928646088, -0.039162054657936096, -0.008837590925395489, 0.007665649522095919, 0.001158492872491479, 0.0212409570813179, 0.02829566039144993, -0.03006317839026451, 0.0046301293186843395, 0.01376358699053526, 0.0019846155773848295, 0.028019005432724953, 0.0022920100018382072, 0.010167071595788002, 0.01782887801527977, 0.0203187745064497, 0.019642505794763565, 0.00368873355910182, 0.033413778990507126, 0.02778846025466919, 0.0013948023552075028, -0.013440823182463646, 0.011066201142966747, -0.020841345191001892, 0.012011438608169556, -0.011350540444254875, -0.021333176642656326, -0.006620508152991533, -0.009951896034181118, 0.01984231173992157, 0.033628955483436584, -0.003135423641651869, -0.008092159405350685, 0.014109405688941479, -0.009437009692192078, 0.003554248483851552, -0.0070662302896380424, -0.005413984879851341, -0.008960548788309097, 0.024729885160923004, -0.013924969360232353, 0.000991347129456699, -0.004941366147249937, -0.005506203509867191, 0.014447540044784546, -0.03461261838674545, -0.05594579130411148, -0.011173788458108902, -0.007761710323393345, -0.02943301945924759, 0.005102748051285744, 0.017844248563051224, -0.03436670079827309, -0.01589229330420494, 0.011004721745848656, -0.006901005748659372, 0.01790572702884674, 0.028603054583072662, 0.009752089157700539, 0.01573859713971615, 0.010466781444847584, 0.04269709065556526, 0.006044143810868263, -0.005164226982742548, -0.006028773728758097, 0.005344821140170097, 0.00117578380741179, 0.03424374386668205, -0.010920188389718533, -0.02174815908074379, -0.019027717411518097, -0.006413016933947802, -0.003911594394594431, -6.820314592914656e-05, 0.0033736543264240026, -0.007242982275784016, 0.03393634781241417, -0.014309212565422058, -0.020165076479315758, -0.0013727083569392562, -0.02871064282953739, 0.0010902897920459509, -0.004418795462697744, 0.000871271186042577, 0.028879709541797638, -0.0054754638113081455, 0.027142930775880814, -0.0016397573053836823, 0.017337048426270485, -0.004941366147249937, 0.015953771770000458, 0.017490744590759277, 0.026312965899705887, 0.01072806678712368, 0.0322149395942688, -0.0013669447507709265, 0.04251265525817871, -0.03740990534424782, 0.04011497646570206, 0.009836622513830662, -0.008046050556004047, -0.026005571708083153, 0.012549378909170628, 0.023377349600195885, -0.015692487359046936, 0.027634762227535248, -0.011419704183936119, 0.014309212565422058, 0.018689583986997604, -0.0013265992747619748, 0.002766550285741687, -0.0056368461810052395, -0.019304372370243073, 0.042635612189769745, 0.037041034549474716, 0.009244888089597225, 0.0366106815636158, 0.01716798171401024, 0.03685659542679787, 0.03740990534424782, -0.025206346064805984, -0.039192795753479004, 0.0008635863196104765, -0.0030067020561546087, -0.044664416462183, -0.029263952746987343, 0.012218929827213287, -0.04374223202466965, 0.00846103299409151, -0.016860585659742355, 0.00836881436407566, -0.00619784090667963, 0.03252233564853668, 0.016276536509394646, -0.00972134992480278, -0.0026070892345160246, 0.014555128291249275, 0.00863778404891491, -0.012933622114360332, 0.019504178315401077, -0.006520605180412531, -0.03215346112847328, 0.01533898338675499, -0.062401074916124344, -0.004964420571923256, 0.014947055839002132, 0.013256385922431946, -0.043004486709833145, 0.03075481578707695, 0.022654971107840538, 0.019196784123778343, -0.012434106320142746, -0.01893549971282482, 0.024407120421528816, 0.010090223513543606, 0.021978704258799553, -0.0020576217211782932, -0.006382277701050043, -0.04696987569332123, 0.053916990756988525, -0.01822849176824093, 0.013786641880869865, -0.0039039095863699913, 0.02741958573460579, -0.009606077335774899, 0.000721416377928108, 0.004557122942060232, 0.03384413197636604, 0.022055553272366524, 0.0016897089080885053, -0.03384413197636604, -0.005467779003083706, 0.0047838264144957066, -0.015938403084874153, 0.01589229330420494, 0.02914099581539631, 0.011757838539779186, -0.002783841220661998, -0.00829196535050869, 0.04712356999516487, -0.0019634822383522987, 0.03193828463554382, -0.026973864063620567, -0.0027415743097662926, -0.015123807825148106, 0.017214089632034302, -0.028510836884379387, -0.025175606831908226, -0.01899697817862034, -0.020334143191576004, 0.0007478331099264324, -0.026681838557124138, 0.0017214090330526233, 0.010628163814544678, 0.0483224093914032, 0.014562812633812428, 0.0007636831142008305, 0.007281406316906214, -0.011219898238778114, -0.006320798769593239, -0.02863379381597042, 0.01944269984960556, -0.004814565647393465, 0.027434956282377243, 0.007070072460919619, 0.02903340756893158, 0.010681957937777042, 0.022055553272366524, 0.001960600260645151, -0.019058456644415855, 0.016153579577803612, -0.00862241443246603, -0.02280866913497448, 0.0019529154524207115, -0.0031969023402780294, -0.0080537348985672, -0.008284281007945538, 0.018766431137919426, 0.011419704183936119, 0.016338014975190163, -0.009352476336061954, -0.01332554966211319, -0.025805765762925148, -0.012403366155922413, -0.039746105670928955, -0.03531962260603905, -0.0038827762473374605, 0.00928331259638071, -0.024145836010575294, -0.0008448544540442526, -0.0318460650742054, 0.004803038667887449, 0.01841292902827263, -0.006240107584744692, -0.003567697014659643, 0.008238171227276325, 0.0004591704928316176, -0.01131211593747139, -0.030893143266439438, -0.019058456644415855, 0.0003405354218557477, -0.022393686696887016, -0.0009130575926974416, -0.012311148457229137, -0.01658393070101738, -0.02042636275291443, 0.002651277231052518, -0.01848977617919445, -0.04537142440676689, 0.02050320990383625, 0.03507370874285698, -0.022839408367872238, 0.0035619332920759916, 0.02786530740559101, -0.0032737511210143566, 0.04346557706594467, 0.022654971107840538, 0.020457101985812187, -0.005083535797894001, -0.019504178315401077, 0.02108726091682911, 0.007696388754993677, 0.020626168698072433, -0.01299510058015585, 0.004472589585930109, -0.014854837208986282, -0.0037002607714384794, -0.0031584780663251877, 0.008630099706351757, -0.0007718483102507889, 0.0029433020390570164, -0.009337106719613075, -0.010174756869673729, -0.00829196535050869, 0.014324582181870937, 0.029417650774121284, 0.007554219104349613, 0.029310062527656555, 0.007020120974630117, -0.009621446952223778, 0.058497168123722076, 0.010889449156820774, -0.015292874537408352, 0.0120806023478508, -0.04672395810484886, -0.02489895187318325, -0.009682925418019295, -0.01809016428887844, 0.030447421595454216, -0.004572492558509111, -0.0006695435731671751, 0.0031258175149559975, -0.015861554071307182, 0.03636476397514343, 0.008814536035060883, -0.0005139251006767154, 0.00948311947286129, 0.021225588396191597, -0.00010878882312681526, -0.020088227465748787, -0.0023592524230480194, 0.03464335575699806, -0.0038846975658088923, 0.010336139239370823, 0.0170296523720026, 0.01746000535786152, 0.017091132700443268, 0.0040806615725159645, 0.020380252972245216, 0.020749125629663467, -0.01735241711139679, -0.011335170827805996, -0.029648195952177048, -0.007876982912421227, -0.04020719602704048, 0.0053217667154967785, -0.02622074820101261, -0.036887336522340775, 0.0064360713586211205, -0.009260258637368679, -0.0254522617906332, -0.0035945940762758255, -0.010097907856106758, -0.011473498307168484, -0.03009391762316227, 0.001139280735515058, 0.0031565569806843996, -0.030616488307714462, -0.007600327953696251, 0.00904508214443922, -0.012288093566894531, -0.02259349264204502, -0.011450443416833878, 0.004995160270482302, 0.007158448453992605, -0.0065743993036448956, -0.004791511222720146, -0.04162121191620827, 0.008891385048627853, -0.007915407419204712, 0.01466271560639143, -0.01981157250702381, -0.0034312906209379435, -0.02331586927175522, 0.013056579977273941, -0.030923882499337196, 0.0018069030484184623, -0.017567593604326248, -0.04260487109422684, 0.05505434796214104, 0.04251265525817871, 0.021179478615522385, 0.00620552571490407, -0.019058456644415855, -0.009982635267078876, 0.007269878871738911, -0.01925826258957386, -0.02164057083427906, -0.005271815229207277, 0.007992256432771683, 0.015231396071612835, 0.044203322380781174, -0.005340978968888521, -0.05689871683716774, -0.02855694480240345, 0.029310062527656555, 0.004814565647393465, -0.025360044091939926, 0.0034639514051377773, -0.006001877132803202, 0.0022766401525586843, -0.005045111756771803, -0.0009029712527990341, 0.006639720406383276, 0.03654920309782028, 0.0017137241084128618, -0.023515677079558372, -0.008591675199568272, 0.005214178469032049, -0.009844307787716389, 0.0033467572648078203, -0.021978704258799553, -0.018797172233462334, -0.05253371223807335, -0.0025590588338673115, 0.018151642754673958, 0.017152611166238785, -0.012049863114953041, -0.015354353934526443, -0.001140241394750774, 0.005202651489526033, -0.008614730089902878, 0.009636816568672657, -0.0036637578159570694, -0.005586894229054451, -0.007308303378522396, 0.031246647238731384, -0.01607673056423664, 0.00796151626855135, -0.0034966119565069675, -0.0018434061203151941, 0.006689671892672777, 0.020918192341923714, 0.0014937450177967548, 0.008414923213422298, 0.025421522557735443, 0.0014899024972692132, 0.0034658724907785654, 0.043434835970401764, -0.028218811377882957, 0.018920129165053368, -0.009129615500569344, -0.014785673469305038, 0.010336139239370823, -0.01062047854065895, -0.025682806968688965, 0.014885577373206615, 0.023131433874368668, -0.0019769305363297462, 0.0034082361962646246, 0.0033755754120647907, 0.019012346863746643, 0.012718445621430874, 0.012710761278867722, 0.027773089706897736, -0.00569448247551918, 0.00031628008582629263, -0.0016954726306721568, -0.006916375365108252, -0.007892352528870106, -0.015461941249668598, -0.024099726229906082, 0.007677176967263222, 0.0239767674356699, -0.0044226376339793205, -0.0015119964955374599, -0.018259231001138687, 0.01933511160314083, 0.012072918005287647, 0.029571346938610077, -0.015269819647073746, -0.002933695912361145, -0.005375560838729143, 0.06615129113197327, 0.00928331259638071, 0.0024399436078965664, 0.018904758617281914, -0.02402287721633911, 0.014393745921552181, 0.01365599874407053, 0.03424374386668205, 0.03980758413672447, 7.64283468015492e-05, -0.0051334877498447895, -0.011173788458108902, 0.007150763645768166, 0.015907663851976395, 0.02270108088850975, 0.013110374100506306, 0.012779925018548965, 0.00010158426448469982, 0.013878859579563141, -0.0016484027728438377, -0.001225735410116613, 0.0036080426070839167, 0.011773208156228065, -0.0048529901541769505, -0.023700112476944923, -0.024376381188631058, -0.0034351330250501633, -0.010105593129992485, -0.011281376704573631, -0.004042237065732479, 0.03906983509659767, 0.0034927695523947477, 0.026743318885564804, 0.02731199748814106, 0.00470313522964716, 0.026558881625533104, 0.012441790662705898, 0.02346956729888916, -0.0036637578159570694, -0.010904818773269653, -0.005467779003083706, -0.004764614161103964, -0.022532014176249504, -0.01284908875823021, 0.0031488719396293163, 0.007304460741579533, 0.004895256832242012, 0.005882761441171169, -0.020165076479315758, -0.02320828288793564, 0.005598421674221754, -0.013848120346665382, -0.03141571581363678, -0.016937434673309326, -0.01264928188174963, -0.012972046621143818, -0.010528260841965675, -0.014386060647666454, -0.02998632937669754, -0.0170296523720026, -0.005091220606118441, 0.0318460650742054, 0.015715541318058968, -0.040268674492836, -0.012057547457516193, 0.0090604517608881, -0.015876924619078636, -0.013871175236999989, -0.020441731438040733, -0.00017927341104950756, -0.0070777577348053455, -0.022762559354305267, -0.009944210760295391, 0.007350570056587458, -0.004453377332538366, 0.007665649522095919, 0.03160015121102333, -0.006228580139577389, 0.012142081744968891, -0.041682690382003784, 0.006182471290230751, 0.017290938645601273, -0.00995958037674427, 0.004169037565588951, -0.014024872332811356, 0.006124834530055523, 0.007342885248363018, -0.017844248563051224, 0.017813509330153465, -0.03731768950819969, -0.015300559811294079, -0.008322705514729023, 0.043557796627283096, -0.026020942255854607, -0.024806732311844826, -0.037840258330106735, -0.011504237540066242, -0.006389962509274483, 0.004088346380740404, -0.016384124755859375, -0.02548300102353096, 0.006766520440578461, 0.039192795753479004, -0.007811661809682846, 0.02328513003885746, -0.0009092151885852218, -0.013471562415361404, 0.009544597938656807, -0.030155396088957787, -0.008722318336367607, 0.01332554966211319, -0.0051680696196854115, -0.006455283612012863, -0.01750611513853073, 0.006036459002643824, -0.011427389457821846, -0.009314051829278469, 0.0028549260459840298, 0.025728916749358177, 0.03160015121102333, 0.014885577373206615, -0.0050873784348368645, 0.0043150498531758785, 0.01947343908250332, 0.02240905724465847, 0.006658932659775019, -0.0026589620392769575, 0.005375560838729143, -0.01206523273140192, -0.006977854296565056, -0.0009610879933461547, 0.026312965899705887, -0.011089255101978779, -0.010374562814831734, 0.01626116782426834, 0.008899069391191006, 0.030032439157366753, 0.0035292727407068014, -0.02646666392683983, -0.006720411591231823, -0.0051334877498447895, 0.016507083550095558, 0.009867362678050995, 0.004511013627052307, -0.0021671310532838106, -0.009437009692192078, -0.03654920309782028, 0.016199687495827675, 0.008876015432178974, -0.02786530740559101, -0.004084503743797541, 0.011788577772676945, -0.0015648299595341086, -0.020779864862561226, -0.0009663713281042874, -0.009290997870266438, -0.01138896495103836, -0.004441849887371063, 0.018735691905021667, -0.019027717411518097, 0.023515677079558372, -0.004829935729503632, -0.0017031574388965964, -0.019504178315401077, 0.011365910060703754, -0.0011978778056800365, -0.0008520590490661561, -0.04408036544919014, -0.031246647238731384, 0.028403248637914658, 0.0043957410380244255, 0.008776111528277397, -0.027803828939795494, -0.02005748823285103, 0.0044303229078650475, 0.0016628119628876448, 0.028203442692756653, -0.013924969360232353, 0.02336197905242443, -0.009621446952223778, -0.01096629723906517, -0.0014591631479561329, -0.026558881625533104, 0.009636816568672657, 0.008991288021206856, 0.024668404832482338, -0.03796321526169777, -0.009652186185121536, -0.006343853194266558, -0.003367890603840351, 0.006489865481853485, -0.027296628803014755, 0.002365016145631671, 0.01944269984960556, 0.021410023793578148, 0.006555187050253153, -0.006128677166998386, 0.0002122942969435826, 0.008998973295092583, 0.006970169488340616, -0.008676208555698395, 0.009037396870553493, 0.009652186185121536, -0.03811691328883171, 0.03676437959074974, -0.027834568172693253, 0.0025532953441143036, -0.013955708593130112, 0.01727556809782982, -0.019196784123778343, -0.028895080089569092, 0.00838418398052454, -0.019903792068362236, 0.006190156098455191, 0.025436891242861748, 0.013917284086346626, -0.015169916674494743, -0.03239937499165535, 0.004614759236574173, 0.00041089995647780597, 0.014278472401201725, -0.01160414144396782, -0.02519097551703453, -0.003120053792372346, -0.010351508855819702, -0.01899697817862034, 0.005283342208713293, 0.012810664251446724, 0.021025780588388443, 0.008814536035060883, 0.014555128291249275, 0.021917225793004036, 0.019581027328968048, -0.014209308661520481, 0.03178458660840988, 0.006666617467999458, -0.0033967087510973215, -0.0029144836589694023, 0.006582084111869335, 0.001957718515768647, 0.021655939519405365, 0.0010883684735745192, -0.025237085297703743, -0.007930777035653591, -0.01607673056423664, -0.0002718519826885313, 0.01048983633518219, 0.011342856101691723, -0.010697327554225922, -0.0053947726264595985, -0.009882732294499874, -0.007400521542876959, -0.0020864398684352636, 0.000519688765052706, -0.01433226652443409, 0.006916375365108252, 0.01384043600410223, -9.960301395040005e-05, -0.005279500037431717, -0.03673363849520683, 0.0011258322047069669, -0.010781860910356045, 0.009752089157700539, -0.0015629087574779987, -0.021579090505838394, 0.0008991287904791534, 0.009490803815424442, -0.006566714029759169, 0.023899920284748077, -0.01596914231777191, -0.0232543908059597, 0.028403248637914658, -0.010827969759702682, 0.01464734598994255, 0.0036464668810367584, -0.010412987321615219, 0.01676836796104908, -0.02320828288793564, 0.007704073563218117, -0.0042228312231600285, 0.02365400455892086, 0.03876244276762009, -0.022086292505264282, -0.003667600220069289, 0.015039274469017982, -0.00015597867604810745, -0.0033813391346484423, 0.009383215568959713, 0.028895080089569092, -0.03255307301878929, -0.006977854296565056, -0.0028568473644554615, -0.006685829721391201, 0.018766431137919426, -0.0015398540999740362, 0.025836504995822906, -0.005901973694562912, 0.016138209030032158, -0.020042119547724724, -0.013556095771491528, 0.0012170899426564574, -0.006263162009418011, -0.018320709466934204, 0.030985362827777863, 0.005022056866437197, 0.021594461053609848, 0.01881254091858864, -0.016630040481686592, -0.008545566350221634, -0.02848009765148163, 0.02270108088850975, -0.006267004646360874, 0.0011450443416833878, -0.010812600143253803, -0.025682806968688965, -0.028649164363741875, 0.006109464913606644, 0.0038078490179032087, 0.015116122551262379, -0.0019490730483084917, -0.028311030939221382, -0.001460123690776527, -0.017736660316586494, -0.016230428591370583, -0.006839526817202568, -0.004295837599784136, -0.021440763026475906, 0.010781860910356045, -0.001122950343415141, -0.009106560610234737, -0.004249728284776211, 0.0033217815216630697, 0.004057607147842646, 0.006589768920093775, 0.013602204620838165, -0.012295778840780258, -0.025436891242861748, 0.03528888523578644, -0.03276824951171875, 0.023915288969874382, 0.005821282509714365, -0.0010797230061143637, 0.008768427185714245, 0.015561845153570175, 0.006547502242028713, 0.015254450030624866, -0.008222801610827446, 0.013371659442782402, 0.01048983633518219, -0.019196784123778343, -0.03112369030714035, 0.0047261896543204784, 0.02990948222577572, -0.01655319146811962, -3.164001464028843e-05, -0.01904308795928955, 0.0007026845123618841, 0.0263590756803751, -0.002920247381553054, 0.005498518701642752, -0.019673245027661324, -0.006090252660214901, 0.001860697171650827, -0.010681957937777042, -0.013033525086939335, 0.0007780922460369766, -0.004810723476111889, -0.007269878871738911, 0.014032557606697083, 0.02646666392683983, -0.0179364662617445, 0.024991169571876526, 0.00737746711820364, 0.01896623894572258, 0.033444516360759735, -0.022347576916217804, 0.01618431881070137, -0.023607894778251648, -0.003154635662212968, -0.009344791993498802, -0.025098757818341255, 0.0011853899341076612, 0.0026839380152523518, -0.004814565647393465, -0.022946996614336967, -0.01775203086435795, 0.004122928250581026, -0.01753685437142849, 0.0053678760305047035, 0.028387878090143204, 0.026297597214579582, -0.008207431994378567, 0.025283195078372955, -0.021225588396191597, 0.012072918005287647, 0.01885865069925785, -0.00839955359697342, 0.017413895577192307, -0.014117090962827206, 0.018213121220469475, -0.002666647080332041, 0.008430292829871178, -0.013156482949852943, 0.009898101910948753, 0.006462968420237303, -0.006989381741732359, -0.0029798049945384264, -0.02050320990383625, -0.01827460154891014, -0.021502243354916573, -0.007523479405790567, -0.003623412223532796, -0.03126201778650284, 0.013479247689247131, -0.0037444487679749727, 0.0009582061902619898, -0.009790513664484024, -0.0028722169809043407, -0.005260287784039974, -0.0028261078987270594, 0.0085148261860013, -0.030262984335422516, -0.018581995740532875, 0.02240905724465847, 0.030309094116091728, 0.0034562665969133377, -0.0010451411362737417, 0.0019942214712500572, -0.0041959346272051334, 0.027373477816581726, 0.015146861784160137, 0.012026808224618435, 0.0041152434423565865, 0.013955708593130112, 0.01819775253534317, -0.011757838539779186, 0.0005609949002973735, -0.004568650387227535, 0.03731768950819969, -0.007938462309539318, -0.006309271324425936, -0.015315929427742958, -0.03067796677350998, 0.006674302276223898, 0.010044113732874393, -0.016891324892640114, 0.01294130738824606, 0.024284163489937782, 5.652575782733038e-05, 0.0030451263301074505, 0.007331357803195715, 0.012933622114360332, 0.008522511459887028, 0.010812600143253803, -0.015492681413888931, 0.0018587758531793952, 0.02222461998462677, -0.011050830595195293, -0.006989381741732359, -0.004918311256915331, -0.015800075605511665, -0.018797172233462334, 0.004829935729503632, -0.01867421343922615, 0.009998004883527756, 0.009352476336061954, -0.002192106796428561, -0.003298726864159107, -0.005840494763106108, -0.004472589585930109, -0.007650279905647039, -0.003367890603840351, -0.015692487359046936, 0.004372686147689819, -0.0005576327675953507, 0.004284310154616833, 0.007427418604493141, -0.020042119547724724, -0.0022535857278853655, -0.0140940360724926, -0.003306411672383547, 0.019089195877313614, -0.017367787659168243, -0.006539817433804274, -0.015484996140003204, 0.09473897516727448, 0.006047985982149839, 0.013340919278562069, -0.004845305345952511, 0.0013496538158506155, -0.015577214770019054, -0.009237203747034073, 0.012933622114360332, 0.015515735372900963, -0.005267972592264414, 0.0019865366630256176, -0.0016839453019201756, 0.01083565503358841, -0.008829905651509762, -0.040545329451560974, -0.0019663639832288027, 0.012580118142068386, 0.00017218892753589898, 0.0013189143501222134, 0.020656907930970192, 0.00839955359697342, -0.01442448515444994, -0.012802978977560997, 0.0046647111885249615, -0.0035331151448190212, 0.021256327629089355, -0.011458128690719604, 0.0011594535317271948, 0.01184237189590931, 0.03252233564853668, -0.013778956606984138, -0.018874019384384155, -0.007100812159478664, 0.007446630857884884, 0.010374562814831734, 0.017782770097255707, -0.008122898638248444, 0.024883581325411797, -0.004403425846248865, 0.011204528622329235, 0.007196872960776091, 0.002061464125290513, 0.024115094915032387, 0.014117090962827206, -0.01297973096370697, 0.002616695361211896, 0.011711728759109974, 0.0016224663704633713, 0.0075350068509578705, -0.004138297867029905, -0.015392777509987354, -0.03642624244093895, 0.009360161609947681, 0.0024053617380559444, 0.02500654011964798, -0.009882732294499874, 0.016138209030032158, -0.00839955359697342, -0.0003602278884500265, -0.003102762857452035, -0.021778898313641548, 0.015223710797727108, -0.0017703999765217304, -0.023669373244047165, -0.01626116782426834, -0.020410992205142975, -0.0015705935657024384, 0.006462968420237303, -0.009068137034773827, -0.016998913139104843, -0.025068018585443497, -0.007811661809682846, 0.012226615101099014, -0.017859619110822678, 0.0035638546105474234, 0.011212212964892387, 0.00032612631912343204, 0.04171342775225639, 0.011919219978153706, 0.0006508117076009512, 0.008422608487308025, -0.0050527965649962425, -0.015569529496133327, -0.018766431137919426, 0.009121931158006191, -0.004249728284776211, 0.00862241443246603, -0.0203187745064497, 0.006466811057180166, -0.01533898338675499, -0.013771272264420986, -0.018689583986997604, 0.008691578172147274, 0.0008655075216665864, -0.0011556110111996531, 0.003554248483851552, 0.005237233359366655, -0.011634880676865578, 0.013663684017956257, 0.004111400805413723, 0.003809770103543997, 0.01915067434310913, 0.005425512325018644, 0.0016858665039762855, 0.01398644782602787, 0.0050335843116045, 0.021425394341349602, 0.009444694966077805, -0.014916316606104374, -0.015093068592250347, -0.01724482886493206, -0.00018515712872613221, -0.009413955733180046, 0.0015062328893691301, -0.024945061653852463, 0.005244918167591095, 0.010943243280053139, 0.002599404426291585, -0.010297714732587337, 0.0013698266120627522, -0.004856832325458527, -0.005333294160664082, -0.005740591790527105, -0.01589229330420494, 0.004514856263995171, 0.011711728759109974, -0.016630040481686592, 0.0034178420901298523, -0.00620552571490407, 0.0012266960693523288, 0.019135305657982826, -0.004030710086226463, 0.017967205494642258, -0.025498371571302414, 0.011888480745255947, 0.0023208281490951777, -0.008991288021206856, -0.0022343734744936228, 0.0221477709710598, -0.009598392061889172, 0.017813509330153465, -0.01499316468834877, 0.02193259447813034, 0.012295778840780258, -0.0019192942418158054, -0.004999002441763878, 0.008868330158293247, -0.016522452235221863, 0.009659871459007263, -0.0013899992918595672, 0.03313712403178215, -0.03891614079475403, -0.0009351515909656882, -0.008022995665669441, -0.0034293695352971554, 0.008768427185714245, -0.018535885959863663, 0.03473557531833649, -0.0183053407818079, 0.004487959202378988, 0.020964302122592926, -0.017921097576618195, -0.014070981182157993, 0.0020345670636743307, -0.009621446952223778, -0.0018414849182590842, 0.005156542174518108, 0.022578123956918716, 0.004169037565588951, -0.0014764540828764439, -0.016138209030032158, 0.0019519547931849957, 0.020749125629663467, -0.01400181744247675, 0.008437978103756905, -0.009321737103164196, 0.0036445455625653267, -0.004007655195891857, -0.019058456644415855, 0.03067796677350998, -0.010582054033875465, 0.012026808224618435, 0.02185574546456337, -0.0016070966375991702, -0.0015350511530414224, 0.0028626108542084694, 0.011527292430400848, -0.015262135304510593, 0.002532162005081773, -0.0030067020561546087, 0.00044452122529037297, 0.009836622513830662, 0.008176692761480808, -0.01742926612496376, -0.022793298587203026, -0.018520517274737358, 0.015938403084874153, 0.011773208156228065, 0.023223651573061943, -0.006170943845063448, -4.571892350213602e-05, -0.007081599906086922, 0.00027593455160968006, 0.023623265326023102, -0.014101721346378326, -0.023700112476944923, -0.012526324018836021, -0.0023419614881277084, -0.018259231001138687, -0.006912533193826675, -0.02804974466562271, -0.024038247764110565, 0.0030624172650277615, 0.01636875607073307, -0.0037041031755506992, -0.007327515631914139, 0.0037137093022465706, 0.0162919070571661, 0.012572433799505234, 0.018151642754673958, 0.013410083949565887, 0.009982635267078876, 0.0011335171293467283, -0.014893261715769768, 0.017690550535917282, -0.0041613527573645115, 0.018213121220469475, 0.02087208442389965, 0.004952893126755953, 0.01264928188174963, 0.0018069030484184623, -0.01065121777355671, -0.004372686147689819, 0.036918073892593384, -0.003775188233703375, 0.018428297713398933, 0.010243920609354973, 0.0031757690012454987, 0.01039761770516634, -0.006493708118796349, -0.006124834530055523, -0.0010672351345419884, -0.010366878472268581, -0.021025780588388443, -0.002799210837110877, -0.005667585413902998, 0.0032007447443902493, 0.0004877485625911504, 0.011534977704286575, -2.68369767582044e-05, -0.002380385994911194, -0.009398586116731167, 0.005471621640026569, 0.011865425854921341, 0.02130243554711342, -0.017767399549484253, -0.016445603221654892, -0.008760741911828518, -0.018581995740532875, -0.031507931649684906, -0.0054754638113081455, 0.00688179349526763, -0.01679910719394684, -0.016568562015891075, 0.011250637471675873, 0.014816412702202797, -0.037471383810043335, 0.002799210837110877, 0.0020211185328662395, 0.006009561941027641, 0.027773089706897736, -0.004760771989822388, 0.005594579037278891, 0.025605957955121994, -0.005798228085041046, -0.008430292829871178, 0.0001934423780767247, -0.013940338976681232, -0.00031916191801428795, -0.011949960142374039, 0.0010922109941020608, -0.0030528113711625338, 0.011350540444254875, -0.02892581932246685, -0.0013851963449269533, -0.03243011608719826, 0.007388994563370943, 0.018535885959863663, -0.004149825312197208, 0.0046647111885249615, -0.011043146252632141, -0.015000849962234497, 0.013794326223433018, 0.0011815474135801196, 0.0037636610213667154, 0.026343705132603645, -0.012011438608169556, -0.0005451448960229754, 0.006728096399456263, -0.004718504846096039, -0.020364882424473763, -0.00369257596321404, 0.0120806023478508, -0.016491713002324104, 0.01400181744247675, 0.013540726155042648, 0.011358225718140602, -0.0006729057058691978, -0.005410142708569765, -0.007239139638841152, 0.004922153893858194, -0.011588770896196365, -0.004453377332538366, -0.012265038676559925, -0.010412987321615219, 0.0010364956688135862, 0.004172879736870527, 0.029187103733420372, -0.01083565503358841, 0.005986507050693035, -0.006862581241875887, 0.020472470670938492, 0.01841292902827263, -0.002902956446632743, 0.005832809954881668, -0.00929868221282959, 0.004253570921719074, -0.005755961406975985, -0.014416800811886787, -0.026927754282951355, 0.017629072070121765, 0.002768471371382475, -0.011242952197790146, -0.010236235335469246, -0.00012680022337008268, 0.014701140113174915, 0.006893320940434933, -0.0071392362006008625, -0.006827999372035265, 0.0064014894887804985, -0.003606121288612485, 0.0006517723086290061, 0.008015310391783714, -0.0009630091954022646, 0.004991317633539438, -0.008883699774742126, -0.004464904777705669, -0.027926787734031677, 0.0056022643111646175, -0.006478338502347469, -0.0010086380643770099, 0.004511013627052307, 0.019319742918014526, 0.023638634011149406, -0.010259290225803852, -0.005252602975815535, 0.03492001071572304, 0.022178510203957558, -0.008576305583119392, -0.01283371914178133, -0.012534009292721748, 0.008307334966957569, -0.007938462309539318, -0.00027737548225559294, 0.028326399624347687, -0.0062016830779612064, -0.000552349432837218, -0.0016695362282916903, -0.04447997733950615, 0.013940338976681232, -0.010351508855819702, -0.01184237189590931, -0.019012346863746643, -0.00040657722274772823, -0.018028685823082924, 0.010174756869673729, -0.0013842356856912374, 0.015400462783873081, -0.021517612040042877, -0.004841462709009647, 0.03279899060726166, 0.012357257306575775, -0.0005912540364079177, -0.010405302979052067, 0.009944210760295391, 0.0015235238242894411, 0.01727556809782982, 0.020656907930970192, 0.013440823182463646, -0.01885865069925785, 0.005563839804381132, -0.009752089157700539, 0.0026455135084688663, -0.008161323145031929, -0.010374562814831734, 0.03796321526169777, -0.03467409685254097, 0.0028606897685676813, -0.0009082545875571668, 0.0005345781682990491, -0.016645411029458046, -0.0013506144750863314, 0.009805883280932903, 0.008161323145031929, 0.015362038277089596, -0.01442448515444994, 0.0055907368659973145, 0.01732167787849903, 0.030877774581313133, -0.009936526417732239, -0.0041536674834787846, 0.007619540207087994, -0.028249550610780716, -0.0017041180981323123, 0.024729885160923004, -0.009998004883527756, -0.006920218002051115, -0.014232363551855087, 0.011119994334876537, -0.005544627550989389, 0.018151642754673958, -0.006685829721391201, 0.005748276598751545, -0.005310239270329475, 0.0047261896543204784, -0.01519297156482935, 0.03559627756476402, 0.006355380639433861, -0.0008803969831205904, -0.008092159405350685, -0.0006402450380846858, -0.010482151061296463, -0.021778898313641548, 0.006090252660214901, -0.020887453109025955, -0.0080537348985672, 0.035350363701581955, -0.027050713077187538, -0.011942274868488312, 0.022946996614336967, -0.013663684017956257, -0.008222801610827446, -0.011680989526212215, -0.0022286097519099712, 0.02010359801352024, -0.004937523510307074, 0.009160354733467102, 0.015623323619365692, -0.002899114042520523, -0.0050412691198289394, -0.005840494763106108, 0.003054732456803322, 0.0044687469489872456, 0.01599988155066967, -0.023823071271181107, -0.007750182878226042, -0.002599404426291585, -0.011504237540066242, 0.021256327629089355, -0.022854778915643692, 0.012357257306575775, -0.013225646689534187, 0.0074543156661093235, 0.001221893006004393, -0.0009932683315128088, 0.005129645112901926, 0.015438887290656567, 0.004215146414935589, -0.013517671264708042, 0.0016378361033275723, -0.007788607385009527, 0.014931686222553253, 0.021702049300074577, -0.016645411029458046, 0.013356289826333523, 0.017567593604326248, -0.010697327554225922, -0.0032833570148795843, -0.008845275267958641, 0.0005437039653770626, -0.011949960142374039, 0.018074793741106987, 0.004534068517386913, -0.007442788686603308, 0.03233789652585983, -0.025728916749358177, 0.030201505869627, 0.012580118142068386, 0.0036791274324059486, 0.02961745671927929, 0.010044113732874393, 0.03350599482655525, 0.002695465227589011, -0.0020806763786822557, 0.005936555564403534, -0.016445603221654892, 0.0147395646199584, 0.014439854770898819, -0.0013477326137945056, 0.005348663777112961, 0.0008088317117653787, 0.006413016933947802, -0.012349572964012623, -0.004845305345952511, 0.026343705132603645, -0.015162232331931591, 0.0032084297854453325, 0.011396649293601513, 0.019411960616707802, 0.007073915097862482, -0.00940627045929432, 0.004065291956067085, -0.023054584860801697, -0.0006330405012704432, 0.010128648020327091, 0.02932543121278286, 0.01716798171401024, -0.00042530905921012163, 0.000987504725344479, -0.008184378035366535, -0.014485964551568031, -0.03870096430182457, -0.006017246749252081, 0.004806880839169025, 0.0021248641423881054, -0.008184378035366535, 0.022286098450422287, 0.00915267039090395, 0.0014572418294847012, -0.013794326223433018, -0.010182441212236881, 0.004653183743357658, -0.011488867923617363, -0.015561845153570175, 0.017844248563051224, 0.01655319146811962, 0.022347576916217804, 0.0252678245306015, 0.044541459530591965, -0.015577214770019054, 0.01684521697461605, 0.0048914141952991486, -0.0019529154524207115, -0.00301630818285048, -0.007154606282711029, -0.033813390880823135, 0.008530196733772755, 0.0027281257789582014, 0.0007939422503113747, -0.012257354333996773, -0.0073736244812607765, 0.0063669076189398766, 0.008553250692784786, 0.007884668186306953, -0.004649341106414795, -0.020825974643230438, 0.011381279677152634, 0.020364882424473763, -0.0021556036081165075, 0.015231396071612835, 0.00117386260535568, -0.0010384168708696961, -0.008699263446033001, -0.016199687495827675, -0.011611825786530972, 0.0006392844370566308, 0.025052648037672043, -0.018151642754673958, 0.0016608907608315349, 0.022424425929784775, -0.017552223056554794, -0.0060134041123092175, -0.013448507525026798, -0.00012235740723554045, -0.010535945184528828, -0.013171852566301823, -0.017229460179805756, -0.00915267039090395, 0.014608921483159065, -0.019396590068936348, 0.005187281407415867, -0.012879827991127968, -0.011104624718427658, -0.008753057569265366, -0.006628192961215973, 0.01607673056423664, 0.00029418611666187644, 0.0016455210279673338, 0.027250519022345543, -0.019719354808330536, 0.018366819247603416, -0.011066201142966747, 0.00369257596321404, 0.008238171227276325, 0.020703017711639404, 0.0073813097551465034, -0.0020979673136025667, 0.0012680022045969963, -0.035934410989284515, -0.01698354445397854, -0.018827911466360092, 0.018105534836649895, 0.007415891624987125, 0.00046685533015988767, 0.005998034495860338, 0.011235267855226994, -0.003198823658749461, -0.009928841143846512, -0.009114245884120464, 0.007227612193673849, 0.017121871933341026, -0.03009391762316227, 0.01038224808871746, -0.019750094041228294, 0.007907722145318985, -0.00046493412810377777, -0.0021767369471490383, 0.005325608886778355, 0.011358225718140602, -0.007692546583712101, -0.004211304243654013, -0.0004140219243708998, 0.0024495497345924377, 0.014232363551855087, -0.017490744590759277, -0.00043635605834424496, 0.012042177841067314, 0.005863549187779427, 0.01944269984960556, -0.008599360473453999, -0.0031411871314048767, -0.0010403381893411279, -0.010812600143253803, -0.013102688826620579, -0.013233331963419914, -0.00569448247551918, -0.018950868397951126, -0.011773208156228065, -0.0059058163315057755, -0.02537541277706623, -0.004499486647546291, -0.003925043158233166, -0.007258351892232895, 0.008222801610827446, 0.01464734598994255, 0.0022382158786058426, -0.014163199812173843, -0.006758835632354021, 0.01284908875823021, 0.0009327500592917204, -0.0038040063809603453, 0.021410023793578148, -0.011104624718427658, 0.0047377170994877815, -0.0027454167138785124, -0.012518639676272869, -0.0025917196180671453, -0.0067165689542889595, 0.02386918105185032, -0.008345759473741055, -0.034981489181518555, -0.024176575243473053, -0.005010529886931181, 0.007657964713871479, -0.015538790263235569, -0.012872142717242241, -0.00880685169249773, 0.013102688826620579, -0.009014342911541462, 0.0005633964319713414, 0.011281376704573631, 0.0008775151218287647, -0.001324678072705865, 0.015515735372900963, 0.002885665511712432, 0.02823418192565441, -0.0044226376339793205, 0.003085471922531724, 0.0032603025902062654, -0.01947343908250332, 0.004487959202378988, 0.012380312196910381, 0.0005350584979169071, 0.003269908716902137, -1.6075169696705416e-05, -0.007458158303052187, 0.011442759074270725, -0.021394655108451843, -0.009252573363482952, 0.009029712527990341, -0.011396649293601513, -0.016891324892640114, -0.022378316149115562, -0.015246765688061714, 0.007930777035653591, 0.0006959603051654994, -0.0032948844600468874, -0.008860645815730095, -0.01217282097786665, -0.0035600122064352036, -0.01981157250702381, -0.008499456569552422, -0.01382506638765335, 0.008268911391496658, 0.0014332267455756664, -0.005890446249395609, 0.0002430337481200695, 0.012710761278867722, 0.0002946664171759039, -0.00012487900676205754, 0.016706889495253563, -0.00469545042142272, 0.01827460154891014, 0.0028453199192881584, 0.004645498935133219, -0.02940228022634983, -0.014877892099320889, 0.014047927223145962, -0.020072858780622482, 0.0027262046933174133, 0.007619540207087994, -0.008353444747626781, -0.013694423250854015, -0.0038962247781455517, -0.012111341580748558, -0.02346956729888916, -0.003965388517826796, 0.00896823313087225, -0.004672395996749401, -0.010028744116425514, 0.024407120421528816, -0.013102688826620579, -0.006409174762666225, 0.024038247764110565, 0.0016311118379235268, -0.002330434275791049, 0.006144046783447266, -0.01005179900676012, 0.001859736512415111, 0.03335230052471161, -0.006839526817202568, -0.033044904470443726, -0.00647065369412303, -0.006409174762666225, 0.014455224387347698, -0.022270729765295982, -0.006658932659775019, 0.01198838371783495, -0.013971078209578991, 0.014470594003796577, -0.008215117268264294, -0.013410083949565887, 0.00738515192642808, -0.004914469085633755, 0.0009361121919937432, 0.008837590925395489, 0.020641537383198738, -0.012011438608169556, 0.014040241949260235, -0.0002850603486876935, 0.019089195877313614, 0.017705921083688736, -0.004376528784632683, 0.004042237065732479, -0.0031104476656764746, 0.00862241443246603, -0.015846185386180878, -0.016384124755859375, -0.004338104277849197, 0.018182381987571716, -0.007442788686603308, -0.0007925013778731227, -0.0028433988336473703, -0.03793247789144516, -0.011043146252632141, -0.010874079540371895, -0.004599389620125294, -0.006274689454585314, 0.007634909823536873, 0.021947965025901794, -0.010220865719020367, -0.01570785790681839, -0.031200537458062172, 0.012472530826926231, -0.022839408367872238, 0.01568480208516121, 0.01727556809782982, 0.020257296040654182, 0.007054702844470739, 0.016230428591370583, 0.03372117131948471, -0.012019123882055283, -0.004587862174957991, -0.00013520554057322443, 0.03378264978528023, 0.00680878758430481, 0.006044143810868263, -0.01928900182247162, -0.010812600143253803, -0.005175754427909851, -0.0034293695352971554, -0.014447540044784546, 0.0066089811734855175, -0.015876924619078636, -0.013456192798912525, 0.012418736703693867, -0.025652067735791206, 0.024483969435095787, 0.027081452310085297, -0.003913515713065863, -0.009244888089597225, -0.004411110654473305, -0.0011680989991873503, 0.011896166019141674, -0.0064360713586211205, -0.01533898338675499, -0.003033599117770791, -0.006778047885745764, -0.019119935110211372, 0.003969231154769659, -0.022977735847234726, 0.021225588396191597, 0.02723515033721924, -0.005141172558069229, -0.018336080014705658, 0.006236265413463116, 0.0016051754355430603, -0.0003318899543955922, -0.008537881076335907, 0.009598392061889172, -0.006747308652848005, 0.00048678796156309545, -0.010167071595788002, 0.01062047854065895, 0.013755902647972107, -0.0014072902267798781, -0.010958612896502018, 0.010735752061009407, 0.014608921483159065, 0.0006949996459297836, -0.008507141843438148, -0.006993223913013935, 0.0006954799755476415, 0.01589229330420494, -0.0016061360947787762, -0.007976885885000229, -0.006778047885745764, -0.009875047020614147, -0.017567593604326248, -0.028203442692756653, 0.008076789788901806, 0.005410142708569765, -0.0022113188169896603, 0.0066435630433261395, -0.005909658502787352, -0.0032737511210143566, -0.006297743879258633, -0.019765464588999748, -5.496477024280466e-05, -0.00536403339356184, 0.028464727103710175, 0.011020091362297535, -0.008537881076335907, -0.0019250578479841352, 0.000772328581660986, -0.004253570921719074, -0.008614730089902878, 0.013809695839881897, 0.011442759074270725, -0.012603173032402992, -0.017183350399136543, 0.005079693626612425, -0.0029183262959122658, 0.009275628253817558, -0.003558090887963772, 0.015584899112582207, 0.006136361975222826, -0.005437039770185947, -0.005901973694562912, 0.0009639698546379805, -0.012241984717547894, 0.0070777577348053455, -0.0014947055606171489, 0.01746000535786152, -0.01973472535610199, -0.01193459052592516, 0.02240905724465847, -0.0040806615725159645, 0.0010778018040582538, 0.020257296040654182, 0.017675181850790977, 0.007938462309539318, 0.011081570759415627, -0.010881763882935047, -0.004122928250581026, -0.02914099581539631, 0.036149587482213974, 0.007773237302899361, -0.0025744286831468344, 0.002730047097429633, 0.006413016933947802, -0.0033429148606956005, -0.01944269984960556, 0.00721224257722497, -0.003369811922311783, 0.007830874063074589, -0.032091982662677765, 0.01384043600410223, -0.013448507525026798, 0.016276536509394646, -0.01816701330244541, 0.0027896047104150057, -0.005506203509867191, -0.0023016161285340786, -0.012218929827213287, 0.025421522557735443, 0.014339951798319817, -0.015385093167424202, 0.013740532100200653, 0.0026531985495239496, -0.018366819247603416, 0.013556095771491528, 0.0026551196351647377, 0.010482151061296463, 0.016122840344905853, 0.010190126486122608, -0.006386119872331619, -0.0071046543307602406, 0.0022920100018382072, -0.011919219978153706, 0.001374629675410688, 0.007496582344174385, 0.016906695440411568, -0.011089255101978779, -0.021225588396191597, 0.008799166418612003, -0.0019413881236687303, -0.004660868551582098, -0.005852022208273411, 0.015185286290943623, 0.02145613357424736, -0.0030624172650277615, -0.006063355598598719, -0.02251664362847805, -0.008660838939249516, -0.014070981182157993, 0.007189188152551651, -0.00737746711820364, -0.01151192281395197, -0.0015119964955374599, -0.0025436892174184322, 0.003976915962994099, 0.01761370338499546, 0.0015609875554218888, -0.004353473894298077, 0.0035004543606191874, -0.004445692524313927, -0.019703984260559082, -0.029740413650870323, -0.005821282509714365, -0.0058251251466572285, -0.022639602422714233, 0.014601237140595913, -0.017813509330153465, 0.026159269735217094, -0.006409174762666225, -0.00418440718203783, -0.00570216728374362, -0.018797172233462334, 0.0254522617906332, 0.014101721346378326, 0.0070470180362463, -0.01618431881070137, 0.012802978977560997, 0.0008410120499320328, 0.007223770022392273, -0.020749125629663467, 0.007239139638841152, -0.006658932659775019, 0.011757838539779186, -0.014416800811886787, 0.0048645175993442535, -0.005525415297597647, -0.020149707794189453, 0.004764614161103964, 0.009383215568959713, -0.011650250293314457, 0.01047446671873331, 0.020518580451607704, -0.015861554071307182, -0.005798228085041046, -0.004230516497045755, -0.004411110654473305, 0.010021059773862362, -0.022316837683320045, -0.019304372370243073, 0.019980641081929207, 0.011427389457821846, -0.006524447351694107, 0.0008160362485796213, 0.005644530989229679, 0.015446571633219719, -0.024653036147356033, -0.00023246706405188888, 0.006263162009418011, -0.00654365960508585, -0.0023842283990234137, -0.0065167625434696674, -0.022839408367872238, 0.016430234536528587, 0.005417827516794205, -0.010343823581933975, -0.005045111756771803, -0.004599389620125294, -0.020257296040654182, -0.0007636831142008305, 0.022270729765295982, 0.012211245484650135, 0.004057607147842646, 0.01149655319750309, 0.004414952825754881, 0.028019005432724953, 0.013125743716955185, -0.003836667165160179, 0.019458070397377014, 0.005794385448098183, -0.0011921141995117068, -0.012334202416241169, -0.012526324018836021, -0.002647434826940298, 0.010766491293907166, 0.002096045995131135, 0.0013957630144432187, -0.011158418841660023, -0.019135305657982826, 0.011450443416833878, -0.034428179264068604, -0.003081629518419504, 0.007012436166405678, 0.008099843747913837, 0.0057444339618086815, -0.00033477178658358753, 0.00814595352858305, 0.013348604552447796, -0.012019123882055283, -0.01029002945870161, 0.008099843747913837, -0.02076449617743492, 0.027834568172693253, -0.008199747651815414, -0.01698354445397854, -0.013802011497318745, -0.011158418841660023, 0.001709881704300642, 0.0034985332749783993, 0.0032737511210143566, -0.004968263208866119, 0.01819775253534317, 0.02874138206243515, 0.008745372295379639, -0.0025629012379795313, -0.007631067652255297, 0.007242982275784016, -0.035350363701581955, 0.0019423487829044461, 0.010213181376457214, -0.011742468923330307, 0.0069970665499567986, -0.0065167625434696674, 0.020226554945111275, 0.006935587618499994, 0.01695280522108078, 0.0039096735417842865, 0.010812600143253803, -0.015769336372613907, 0.004745401907712221, 0.005075850989669561, 0.0029586716555058956, -0.0014591631479561329, 0.002092203591018915, 0.02240905724465847, -0.023592524230480194, 0.00038664459134452045, -0.02193259447813034, -0.0004053764569107443, -0.012910567224025726, 0.009744404815137386, -0.004937523510307074, 0.015277504920959473, -0.007008593995124102, 0.02771161124110222, -0.0006344813737086952, -0.0038481943774968386, 0.022977735847234726, 0.008607044816017151, -0.0019663639832288027, 0.010243920609354973, 0.010520575568079948, 0.007519637234508991, -0.007227612193673849, -0.021333176642656326, 0.003965388517826796, 0.0029125625733286142, -0.01692206598818302, -0.0020518579985946417, 0.014485964551568031, -0.005433197133243084, -0.0018145879730582237, 0.0054754638113081455, -0.03024761565029621, 0.0001557385257910937, -0.007296775933355093, -0.017844248563051224, -0.0017646363703534007, -0.0026282225735485554, 0.013256385922431946, -0.009805883280932903, -0.003819376230239868, 0.013233331963419914, 0.010797230526804924, 0.001122950343415141, 0.006793417502194643, -0.009529228322207928, -0.009068137034773827, -0.011696359142661095, 0.0021114156115800142, 0.013287126086652279, -0.027742350473999977, -0.0008808772545307875, 0.024699145928025246, -0.008922124281525612, -0.013702108524739742, 0.007365939673036337, -0.0006829920457676053, 0.028756752610206604, 0.015423517674207687, 4.712981535703875e-05, -0.025283195078372955, 0.01215745136141777, -0.03756360337138176, 0.0318460650742054, -0.00020412912999745458, 0.00536403339356184, -0.006570556666702032, -0.005533100571483374, -0.012495584785938263, -0.012003754265606403, -0.0005273736314848065, 0.017290938645601273, -0.013279440812766552, -0.014378376305103302, -0.01129674632102251, 0.01239568181335926, -0.007081599906086922, 0.005506203509867191, 0.0042689405381679535, -0.02087208442389965, 0.012364942580461502, -0.013217962346971035, 0.0004562886606436223, 0.004580177366733551, 0.010958612896502018, -0.017690550535917282, 0.0038347458466887474, -0.01361757516860962, 0.014470594003796577, -0.006493708118796349, 0.008560935966670513, 0.007761710323393345, -0.013794326223433018, -0.004130613058805466, -0.026712579652667046, -0.0077232858166098595, -0.005440881941467524, -0.010843339376151562, 0.012272723950445652, 0.01519297156482935, -0.01713724061846733, -0.013156482949852943, -0.012541694566607475, -0.009475434198975563, -0.0029605929739773273, 0.006047985982149839, -0.016630040481686592, 0.004295837599784136, -0.017014283686876297, -0.03430522233247757, -0.009775144048035145, 0.003873170353472233, 0.00913730077445507, 0.009198779240250587, -0.009091190993785858, -0.020933562889695168, 0.0040345522575080395, 0.010097907856106758, 0.0090604517608881, -0.017967205494642258, 0.006067198235541582, -0.0035696181003004313, 0.022347576916217804, -0.00913730077445507, -0.014547443017363548, -0.01332554966211319, 0.006524447351694107, -0.016814477741718292, -0.02479136362671852, 0.013686738908290863, -0.003035520436242223, 0.0008357287151739001, 0.01742926612496376, -0.011573401279747486, 0.0010441805934533477, -0.025144867599010468, -0.004388055764138699, -0.00452254107221961, 0.02354641631245613, 0.003984600771218538, 0.007834716700017452, 0.021947965025901794, -0.007323672994971275, -0.006251635029911995, 0.017045022919774055, 0.005337136331945658, -0.011204528622329235, 0.016322646290063858, 0.010459096170961857, 0.0006359223043546081, -0.005129645112901926, 0.0064475988037884235, 0.01059742458164692, 0.004837620537728071, -0.006970169488340616, -0.01394802425056696, -0.011527292430400848, -0.01750611513853073, 0.006666617467999458, 1.9467315723886713e-05, 0.02442249096930027, -0.00027401334955357015, -0.005971137434244156, -0.008230486884713173, 0.0073467278853058815, 0.0018232334405183792, 0.0008280438487417996, -0.021440763026475906, -0.00972134992480278, -0.0034466604702174664, -0.008776111528277397, -0.015308244153857231, -0.016891324892640114, 0.004730032291263342, -0.004641656298190355, 0.016522452235221863, 0.01753685437142849, 0.010420672595500946, -0.001625348231755197, -0.0056637427769601345, -0.002163288649171591, -0.0026589620392769575, 0.005928870756179094, -0.005218021105974913, -0.013294810429215431, 0.02413046546280384, 0.025605957955121994, 0.019611766561865807, -0.004572492558509111, 0.017444636672735214, -0.029924850910902023, 0.018950868397951126, 0.008906754665076733, -0.0057790158316493034, 0.006943272426724434, 0.008376498706638813, -0.018213121220469475, -0.007892352528870106, -0.03565775603055954, -0.0006315995706245303, -0.0059442403726279736, 0.0035273514222353697, 0.010950927622616291, 0.002916404977440834, 0.006351538002490997, -0.013118058443069458, -0.026973864063620567, 0.01875106245279312, 0.020533950999379158, 0.05732906609773636, 0.016568562015891075, 0.009729035198688507, -0.008015310391783714, 0.008245856501162052, -0.021548351272940636, 0.010973982512950897, -0.011412019841372967, -0.01881254091858864, 0.013456192798912525, 0.018105534836649895, -0.00016894687723834068, 0.024760624393820763, 0.005640688352286816, -0.021763527765870094, 0.01261085830628872, -0.0020537793170660734, 0.01116610411554575, -0.005048953928053379, -0.0014572418294847012, 0.009221834130585194, 0.007469685282558203, -0.001759833307005465, -0.004983632825314999, 0.0263590756803751, 0.012203560210764408, -0.0038635642267763615, -0.018505146726965904, -0.0018904759781435132, 0.007631067652255297, 0.022685712203383446, -0.003154635662212968, -0.03144645318388939, 0.004614759236574173, 0.00871463306248188, 0.030078548938035965, 0.012526324018836021, 0.01394802425056696, 0.0007238179096020758, -0.009121931158006191, -0.018658844754099846, -0.018981607630848885, -0.0029567505698651075, -0.009521543979644775, -0.018658844754099846, 0.012672336772084236, -0.002647434826940298, -0.006774205714464188, 0.003736763959750533, 0.00217865826562047, 0.005613791290670633, 0.005513888318091631, -0.009767458774149418, -0.007627225015312433, -0.010044113732874393, 0.025897983461618423, 0.020825974643230438, -0.030001699924468994, -0.0006628193077631295, 0.0030086233746260405, 0.0029490655288100243, -0.001375590218231082, 0.0162919070571661, 0.021041151136159897, -0.0031584780663251877, 0.021901855245232582, 0.0011488868622109294, -0.00453022588044405, -0.003873170353472233, 0.015077698044478893, 0.028802860528230667, -0.015830814838409424, -0.015876924619078636, -0.017736660316586494, -0.019534917548298836, -0.015162232331931591, -0.017813509330153465, -0.03433596342802048, -0.019411960616707802, 0.014970110729336739, 0.003928885329514742, -0.006097937468439341, 0.014117090962827206, -0.006251635029911995, -0.012042177841067314, -0.002313143340870738, -0.011012407019734383, 0.005606106482446194, 0.006128677166998386, -0.01772129163146019, -0.009713664650917053, 0.011980699375271797, -0.00863778404891491, 0.0011335171293467283, 0.025759655982255936, -0.008852960541844368, -0.018336080014705658, 0.012034493498504162, -0.0030950780492275953, 0.00939090084284544, 0.0008698302553966641, 0.009421640075743198, 0.0071392362006008625, 0.02042636275291443, -0.01065121777355671, -0.01925826258957386, 0.005456251557916403, 0.011327485553920269, 0.008330389857292175, 0.0369795523583889, 0.006220895331352949, 0.01005179900676012, 0.010643533430993557, 0.007108496967703104, 0.0017137241084128618, 0.019934531301259995, 0.000502397830132395, -0.0017953758360818028, 0.027189040556550026, 0.030847035348415375, -0.00836881436407566, 0.016676150262355804, 0.019826943054795265, -0.00796151626855135, 0.012434106320142746, -0.020349513739347458, 0.005763646215200424, 0.01217282097786665, -0.016676150262355804, 0.0002785762189887464, 0.017582964152097702, -0.0016407179646193981, -0.01589229330420494, 0.0017194878309965134, 0.00021265452960506082, -0.012948991730809212, -0.007304460741579533, 0.010866394266486168, 0.001946191187016666, -0.006501392927020788, -0.01275687012821436, 0.037655822932720184, 0.027481064200401306, -0.017767399549484253, 0.002217082539573312, 0.004007655195891857, -0.01299510058015585, 0.02694312483072281, 0.01281834952533245, -0.011857741512358189, -0.005732906982302666, -0.01798257604241371, -0.0015994118293747306, -0.0012449475470930338, -0.0030086233746260405, 0.0021805795840919018, -0.020487841218709946, 0.023531045764684677, -0.001391920610330999, -0.005072008818387985, -0.006658932659775019, -0.002866453491151333, 0.011035460978746414, 0.008153637871146202, 0.012111341580748558, -0.015800075605511665, -0.0036310970317572355, 0.008530196733772755, -0.011143049225211143, -0.009022027254104614, -0.0033928663469851017, -0.015830814838409424, 0.007292933762073517, 0.0001373669074382633, -0.01532361377030611, -0.011227582581341267, -0.009452379308640957, -0.019534917548298836, -0.02449933812022209, 0.0028357140254229307, 0.0130873192101717, 0.007481212727725506, 0.015692487359046936, 0.002245900686830282, -0.011358225718140602, -0.007596485782414675, -0.0013045052764937282, 0.002209397731348872, -0.00913730077445507, -0.006501392927020788, 0.019166044890880585, 0.014255418442189693, -0.01365599874407053, -0.016168948262929916, -0.013817381113767624, -0.001005756319500506, -0.007531164214015007, 0.0038827762473374605, -0.039746105670928955, 0.0063284835778176785, -0.004760771989822388, -0.011442759074270725, 0.009221834130585194, -0.009337106719613075], "c676458f-04d8-4041-9ea1-c947010dff53": [-0.026575366035103798, 0.004738622345030308, -0.01165929064154625, 0.003924426157027483, -0.010071608237922192, -0.027389563620090485, 0.003698486601933837, 0.024035073816776276, -0.04631148278713226, 0.0207620058208704, 0.015486013144254684, 0.044943634420633316, -0.0249632578343153, -0.03027181699872017, -0.009965762495994568, 0.03416367620229721, -0.03261670097708702, 0.015510438941419125, 0.019687265157699585, -0.025744887068867683, 0.08298288285732269, -0.01091022975742817, -0.0396350733935833, 0.010926513932645321, -0.005467327777296305, -0.016422338783740997, -0.0100308982655406, 0.0004500978684518486, -0.025142380967736244, 0.014590397477149963, 0.01520918682217598, 0.028806263580918312, 0.019589561969041824, 0.013865762390196323, 0.02230897732079029, -0.008654906414449215, 0.0029636744875460863, 0.031900208443403244, -0.005703445058315992, -0.008467641659080982, -0.03852776810526848, 0.025174949318170547, -0.025842590257525444, -0.0027316284831613302, -0.048949480056762695, 0.022243842482566833, 0.027275575324892998, -0.018189145252108574, -0.006733403075486422, -0.003812473965808749, 0.03017411381006241, -0.033300627022981644, 0.003633350832387805, 0.019947808235883713, 0.013637787662446499, -0.02160876989364624, -0.0030349167063832283, 0.05523507669568062, -0.015543007291853428, -0.04005845636129379, -0.0021515137050300837, 0.009338831529021263, 0.0008406576816923916, -0.006521712057292461, -0.018677663058042526, -0.03317035734653473, 0.01630835048854351, 0.010511273518204689, -0.05494196340441704, -0.0002646138018462807, -0.006179749500006437, 0.029701879248023033, -0.03478246554732323, 0.01581169106066227, -0.005109081510454416, -0.016186222434043884, 0.04807014763355255, -0.010918372310698032, 0.006033194251358509, -0.0006360908155329525, -0.04425970837473869, 0.006562422029674053, 0.029848435893654823, -0.019931524991989136, 0.0504150316119194, 0.010307724587619305, -0.019882673397660255, -0.03334948047995567, -0.00038801541086286306, 0.0009444676688872278, -0.00920041836798191, -0.00243241130374372, 0.014476410113275051, -0.005455114878714085, 0.010641545057296753, 0.03015783056616783, -0.014329854398965836, 0.01288058515638113, 0.02940876968204975, -0.031493112444877625, 0.010763674974441528, 0.05451858416199684, -0.04507390409708023, 0.007710438687354326, -0.0030715554021298885, 0.0041849687695503235, 0.006175678689032793, -0.01695156656205654, -0.004016023129224777, 0.04552985727787018, 0.03996075317263603, -0.04566012695431709, 0.0031936848536133766, 0.013637787662446499, -0.025402924045920372, -0.06510313600301743, 0.011789562180638313, -0.022048434242606163, 0.0047671194188296795, -0.04256618022918701, 0.016080375760793686, 0.025582047179341316, 0.01017745304852724, 0.010437996126711369, -0.005528392735868692, -0.00251993746496737, 0.016129227355122566, -0.015347599983215332, 0.03937453031539917, -0.009688935242593288, -0.03097202628850937, -0.018091442063450813, -0.008369937539100647, 0.02991357073187828, -0.004710125271230936, -0.005304488819092512, 0.029978707432746887, 0.06337703764438629, -0.03256785124540329, 0.04982881247997284, -0.04442254826426506, -0.051098957657814026, -0.02721043862402439, 0.005740083754062653, -0.009868059307336807, 0.006916597485542297, -0.04855866730213165, 0.04780960455536842, -0.021478498354554176, 0.030190397053956985, -0.04217536747455597, -0.031151149421930313, 0.016520041972398758, 0.003788048168644309, -0.008117537014186382, -0.020599165931344032, -0.020778289064764977, 0.0027051670476794243, 0.001372938510030508, 0.005679018795490265, 0.01042985450476408, -0.06038079410791397, 0.006200104486197233, 0.006623486522585154, 0.03566179797053337, 0.010299582965672016, 0.04256618022918701, 0.034847602248191833, -0.04543215036392212, 0.024686431512236595, 0.01880793459713459, -0.007103862706571817, 0.02136451005935669, 0.013800626620650291, -0.001293554320000112, -0.008817745372653008, 0.03245386481285095, 0.018335700035095215, 0.009819206781685352, -0.02826889418065548, -0.013662213459610939, -0.01332839298993349, -0.02235782891511917, -0.015103341080248356, 0.02141336165368557, 0.033088937401771545, 0.005768580827862024, 0.01786346547305584, -0.012375783175230026, -0.008948016911745071, -0.01955699361860752, -0.012318789958953857, -0.003692380152642727, 0.018124008551239967, 0.002387630520388484, -0.009175991639494896, -0.006228601559996605, -0.003694415558129549, 0.012359499000012875, 0.023025469854474068, -0.025174949318170547, -0.031183717772364616, -0.06754571944475174, 0.04683256894350052, -0.03341461345553398, 0.013369102962315083, -0.009534238837659359, -0.03046722523868084, 0.021787893027067184, -0.036703966557979584, 0.0536392517387867, -0.04425970837473869, 0.004706054460257292, -0.007889562286436558, -0.019996659830212593, -0.001213152427226305, -0.03211190178990364, 0.039700210094451904, -0.004824113100767136, -0.021999582648277283, -0.04197996109724045, -0.001185673289000988, -0.004832254722714424, -0.02677077427506447, -0.0289202518761158, -0.03816952183842659, 0.0018431368516758084, 0.019980376586318016, -0.027633821591734886, 0.006037265527993441, 0.04627891629934311, 0.03326806053519249, -0.0038572547491639853, -0.008654906414449215, -0.013385387137532234, -0.010258872993290424, 0.008072756230831146, 0.010364718735218048, 0.013051566667854786, -0.006582777015864849, 0.01330396719276905, 0.044552821666002274, 0.02940876968204975, 0.003729018848389387, 0.030092693865299225, 0.01875908300280571, 0.010861378163099289, 0.02981586754322052, 0.01901962421834469, -0.02090856060385704, -0.004632776603102684, 0.005756367463618517, 0.022390397265553474, -0.025386638939380646, -0.02701503224670887, 0.054062630981206894, 0.006155323702841997, -0.02805720455944538, -0.014679959043860435, -0.03328434377908707, 0.001398382126353681, 0.0093306889757514, 0.02870856039226055, -0.0052515659481287, 0.03722505271434784, -0.02011064812541008, 0.023530272766947746, -0.0319979153573513, 0.011292902752757072, 0.04504133760929108, -0.02326972968876362, 0.014313570223748684, 0.020029228180646896, -0.024393320083618164, -0.025028392672538757, -0.0031835073605179787, -0.0016802975442260504, -0.0020945200230926275, 0.016625888645648956, -0.009664509445428848, -0.0007521138177253306, 0.013491231948137283, 0.027275575324892998, 0.040840085595846176, -0.019736118614673615, -0.019149895757436752, -0.02256952039897442, 0.00248940521851182, -0.04881921038031578, -0.011740710586309433, -0.00742954108864069, 0.00041524009429849684, 0.02450730837881565, 0.018384551629424095, 0.05148977413773537, -0.003777870675548911, -0.013523800298571587, -0.0031611169688403606, -0.019622130319476128, 0.014899792149662971, -0.0429244264960289, -0.015746556222438812, 0.017798330634832382, -0.03771357238292694, 0.02535407245159149, -0.016389770433306694, 0.0406121090054512, -0.0019398225704208016, -0.043543215841054916, 0.018889352679252625, 0.04308726638555527, 0.01696784980595112, -0.010893946513533592, -0.009517954662442207, 0.0017780010821297765, 0.00503987492993474, 0.009127140045166016, 0.0009897573618218303, -0.012440918944776058, -0.02221127413213253, 0.04569269344210625, 0.028594573959708214, -0.047353655099868774, 0.03983048349618912, 0.04126346856355667, -0.03181879222393036, 0.03017411381006241, -0.01135803759098053, -0.029278498142957687, -0.02020835131406784, -0.03667140007019043, -0.004539144225418568, -0.027031315490603447, 0.00044806237565353513, -0.004551357124000788, -0.035043008625507355, -0.04276158660650253, -0.04087265208363533, -0.026640502735972404, -0.027992067858576775, -0.026982463896274567, -0.024832986295223236, -0.015127766877412796, -0.012310647405683994, 0.05106639117002487, 0.005666805896908045, -0.01570584625005722, 0.009990188293159008, -0.034293945878744125, -0.014875366352498531, 0.0011001827660948038, -0.010584551841020584, 0.019394155591726303, 0.011415031738579273, 0.052303969860076904, -0.013010856695473194, 0.008939875289797783, 0.005056158639490604, 0.0015327244764193892, -0.005121294409036636, 0.026754489168524742, -0.015591858886182308, -0.03455448895692825, 0.002578966785222292, 0.0033382046967744827, 0.009452818892896175, -0.020648017525672913, -0.007734864484518766, 0.015933820977807045, -0.004113726783543825, -0.026249688118696213, 0.013768059201538563, 0.0494379960000515, -0.005756367463618517, -0.0256634671241045, -0.016739875078201294, 0.05536534637212753, -0.01323068980127573, -0.03497787192463875, 0.035043008625507355, 0.006448434665799141, 0.006220459472388029, 0.03856033459305763, -0.011439457535743713, 0.0499265156686306, 0.04500877112150192, 0.0007683977601118386, 0.016691023483872414, -0.0019795147236436605, 0.026298539713025093, -0.03595490753650665, 0.013947182334959507, -0.023986222222447395, -0.01690271496772766, -0.0273081436753273, 0.016137370839715004, 0.001329175429418683, 0.011130062863230705, 0.021787893027067184, -0.039895616471767426, 0.019573278725147247, 0.02781294472515583, -0.0022349688224494457, 0.008129749447107315, 0.0005063283024355769, -0.035043008625507355, -0.01805887371301651, -0.020827140659093857, 0.012587474659085274, 0.0018848644103854895, -0.0019886745139956474, 0.0020100469700992107, -0.002049739006906748, -0.012172234244644642, 0.044357411563396454, -0.014264718629419804, 0.014215867035090923, 0.009786639362573624, -0.03807181864976883, -0.04087265208363533, 0.03357745334506035, 0.09288351237773895, -0.020240919664502144, 0.02001294493675232, -0.006989874877035618, 0.02450730837881565, 0.057351984083652496, 0.01605595089495182, -0.028985386714339256, -0.01815657690167427, -0.008084968663752079, 0.024491023272275925, 0.0004394115530885756, -0.00686774542555213, -0.0011174844112247229, -0.02110396698117256, -0.002581002190709114, 0.015078915283083916, -0.01745636761188507, 0.0028496868908405304, 0.030939457938075066, 0.026526514440774918, -0.010324008762836456, -0.012245511636137962, -0.028545720502734184, -0.032991234213113785, -0.05992484465241432, 0.0020039405208081007, 0.02651023119688034, -0.007787787355482578, -0.015062631107866764, 0.03232359141111374, -0.03722505271434784, 0.024051357060670853, 0.022976618260145187, -0.0100308982655406, -0.02515866421163082, -0.03396826982498169, 0.0029636744875460863, -0.04842839390039444, -0.028448017314076424, -0.02385595068335533, -0.0033992694225162268, 0.015616284683346748, 0.024197913706302643, -0.022325262427330017, 0.005821503233164549, 0.027552401646971703, 0.01205824688076973, -0.005886639002710581, -0.021901879459619522, 0.0018034446984529495, -0.019638413563370705, 0.01297828834503889, -0.016837578266859055, -0.02252066880464554, -0.011667432263493538, -0.020534029230475426, -0.003952922765165567, -0.024491023272275925, -0.03066263161599636, -0.016918998211622238, -0.0066112736240029335, 0.006326305214315653, -0.0066560544073581696, 0.00923298578709364, 0.009477244690060616, -0.03618288412690163, 0.02701503224670887, -0.004644989967346191, 0.04067724570631981, -0.02131565846502781, 0.009509812109172344, 0.008166388608515263, -0.0020100469700992107, -0.03141169250011444, -0.013352818787097931, -0.01625949889421463, -0.01965469866991043, -0.028285179287195206, 0.027780376374721527, -0.028627140447497368, 0.0071934242732822895, 0.03605261072516441, -0.024442171677947044, -0.014631107449531555, -0.020338622853159904, 0.0095586646348238, -0.009037578478455544, -0.02616826817393303, -0.03017411381006241, 0.012628184631466866, -0.03281211107969284, 0.011244050227105618, -0.015697704628109932, 0.004083194304257631, -0.014207725413143635, 0.01047870609909296, 0.017684342339634895, 0.012229228392243385, -0.0017617171397432685, 0.016178080812096596, -0.00740511529147625, 0.0030206681694835424, -0.025875156745314598, -0.026135699823498726, 0.0032120042014867067, -0.0249632578343153, 0.040351565927267075, -0.012147808447480202, 0.000177214911673218, 0.005597599316388369, -0.013417954556643963, 0.010250731371343136, 0.005186430178582668, 0.016642171889543533, 0.009452818892896175, 0.0184496883302927, -0.0008320068009197712, 0.06494029611349106, -0.023383716121315956, -0.0101530272513628, -0.012986430898308754, 0.0019683195278048515, -0.00462870579212904, 0.03696450963616371, 0.006969519890844822, 0.022797495126724243, -0.009265553206205368, 0.005369624588638544, -0.018726514652371407, 0.0031000522430986166, -0.015844259411096573, -0.017195824533700943, 0.025875156745314598, -0.02556576393544674, 0.008105323649942875, -0.030336953699588776, -0.023383716121315956, -0.013360961340367794, -0.023041754961013794, 0.005153862293809652, -0.0018431368516758084, 0.00262578297406435, -0.017537787556648254, -0.012473487295210361, -0.008606054820120335, 0.017928602173924446, -0.006725261453539133, 0.015591858886182308, 0.013369102962315083, 0.00017428888531867415, 0.03090689145028591, 0.0032181108836084604, -0.014012318104505539, 0.027650104835629463, -0.007633090019226074, 0.004934029653668404, -0.03895115107297897, 0.00805240124464035, 0.028545720502734184, -0.03507557511329651, -0.0017973382491618395, -0.004905532579869032, 0.00231435289606452, 0.005467327777296305, -0.022243842482566833, -0.034293945878744125, 0.0032771399710327387, 0.02641252800822258, -0.0004648551985155791, 0.02460501156747341, -0.0046653444878757, 0.013189979828894138, -0.023579124361276627, 0.02541920728981495, 0.01441127434372902, 0.00963194202631712, 0.004158507566899061, -0.007112004328519106, -0.0027825157158076763, 0.016194364055991173, 0.02336743287742138, -0.015127766877412796, -0.022846346721053123, 0.029929855838418007, -0.006277453154325485, -0.003840971039608121, -0.008646764792501926, -0.005308559630066156, -0.024035073816776276, 0.010047182440757751, 0.03973277658224106, -0.014574113301932812, 0.03843006491661072, 0.015030063688755035, 0.0071282885037362576, 0.03888601437211037, 0.004351879004389048, -0.02160876989364624, 0.01055198349058628, -0.021722756326198578, 0.056407518684864044, -0.044096868485212326, 0.005866284016519785, 0.02725929208099842, -0.006253027357161045, -0.011390605941414833, -0.015477871522307396, 0.006305950228124857, 0.030125262215733528, -0.006835177540779114, 0.00830073095858097, -0.041751984506845474, 0.02256952039897442, 0.012318789958953857, 0.021380793303251266, 0.021250523626804352, -0.02725929208099842, -0.0001809042296372354, -0.0457252636551857, 0.009916910901665688, -0.021250523626804352, 0.05917578563094139, -0.012416493147611618, -0.004970668349415064, -0.010690396651625633, 0.016568893566727638, 0.034196242690086365, 0.016593320295214653, -0.04113319516181946, -0.010665970854461193, 0.01243277732282877, 0.022895200178027153, 0.008353653363883495, -0.0329098142683506, -0.012986430898308754, 0.0200617965310812, 0.02300918661057949, 0.015502297319471836, 0.023937370628118515, -0.016121085733175278, 0.0177169106900692, 0.008317015133798122, -0.0030919103883206844, 0.016544468700885773, -0.000338654761435464, 0.01012860145419836, 0.023302298039197922, 0.019736118614673615, 0.009273695759475231, 0.005854071117937565, 0.024800417944788933, 0.030141545459628105, -0.01805887371301651, -0.012326931580901146, -0.005035804118961096, -0.021429646760225296, 0.0003875065303873271, -0.01965469866991043, -0.002460908144712448, -0.006399582605808973, -0.02351398766040802, 0.00707943644374609, 0.01245720311999321, -0.004522860515862703, -0.010470564477145672, 0.03334948047995567, -0.007844781503081322, 0.005622025113552809, 0.017472652718424797, 0.018351983278989792, -0.00243241130374372, 0.0016538362251594663, -0.004048591013997793, 0.012326931580901146, -0.00830887258052826, -0.0033544886391609907, 0.017130689695477486, -0.01413444709032774, -0.0564400851726532, 0.000618280319031328, 0.008190814405679703, -0.026477662846446037, 0.012815449386835098, 0.0291645098477602, -0.03176993876695633, -0.030190397053956985, 0.012351357378065586, 0.00017988648323807865, 0.03147682920098305, 0.026103133335709572, 0.004807828925549984, 0.02535407245159149, 0.01007974985986948, 0.018124008551239967, -0.003812473965808749, 0.006330376025289297, -0.01670730672776699, -0.004872964695096016, -0.0044373697601258755, 0.03370772674679756, 0.00538997957482934, -0.032844677567481995, -0.02800835110247135, 0.0021962944883853197, 0.019589561969041824, 0.005296346731483936, -0.0004900443600490689, -0.005788935348391533, 0.02252066880464554, 0.0020619521383196115, -0.02471899800002575, 0.003533611772581935, -0.008923591114580631, -0.01278288196772337, 0.0014024530537426472, 0.0032303237821906805, 0.026787057518959045, -0.04002588987350464, 0.008646764792501926, 0.007958768866956234, 0.023953653872013092, 0.006871816702187061, 0.016235074028372765, 0.006330376025289297, 0.004539144225418568, 0.0152824642136693, 0.01656075194478035, 0.02051774598658085, 0.03546639159321785, -0.037843842059373856, 0.03696450963616371, 0.03836492821574211, -0.0005193045362830162, -0.01560814306139946, 0.0063466597348451614, -0.0007770485826767981, 0.006888100411742926, 0.038397494703531265, -0.005605741403996944, -0.006782255135476589, 0.010576409287750721, -0.029750732704997063, 0.013483090326189995, 0.002391701564192772, -0.010633403435349464, 0.04719081521034241, 0.042305637151002884, -0.019573278725147247, 0.0184171199798584, 0.01490793377161026, 0.03222588822245598, 0.02952275611460209, -0.01122776698321104, -0.009493528865277767, 0.03618288412690163, 0.006529854144901037, -0.03702964633703232, -0.012237370014190674, -0.0017108299070969224, -0.01950814202427864, 0.009387683123350143, -0.023302298039197922, 0.02085970900952816, 0.0032852820586413145, 0.028529437258839607, 0.012326931580901146, 0.0008976514218375087, 0.0149323595687747, 0.01885678619146347, 0.010893946513533592, -0.004290814511477947, -0.01297828834503889, 0.0006086117355152965, -0.024751566350460052, 0.021494781598448753, -0.07445010542869568, 0.004205323755741119, 0.011073069646954536, 0.012693319469690323, -0.03898371756076813, 0.03307265415787697, 0.05292275920510292, -0.012074531055986881, -0.006586847826838493, 0.0010294493986293674, 0.01327954139560461, 0.0069735911674797535, 0.020192068070173264, -0.011398747563362122, 0.008720042183995247, -0.027275575324892998, 0.0476141981780529, -0.014004175551235676, -0.0002913296048063785, 0.011390605941414833, 0.01840083673596382, -0.01706555485725403, 0.011569729074835777, 0.002324530389159918, 0.030499791726469994, 0.031037161126732826, 0.01820542849600315, -0.030076410621404648, -0.03442421928048134, 0.017928602173924446, -0.019980376586318016, 0.015127766877412796, 0.009623800404369831, 0.010853236541152, -0.014736952260136604, -0.0040750522166490555, 0.05233653634786606, 0.012823591008782387, 0.012750313617289066, -0.020892275497317314, -0.025093529373407364, -0.02310688979923725, 0.030125262215733528, -0.020371191203594208, -0.022944051772356033, -0.0364108569920063, -0.0006885047187097371, -0.014793946407735348, -0.02406764216721058, 0.021706473082304, 0.002255323575809598, 0.043347809463739395, 0.003828757908195257, 0.0017953028436750174, -0.027226723730564117, -0.024849269539117813, -0.00928183738142252, -0.024035073816776276, 0.015225470066070557, -0.006191962864249945, 0.027633821591734886, 0.007498747669160366, 0.039602506905794144, -0.02175532467663288, 0.01500563696026802, -0.024083925411105156, -0.028073487803339958, 0.017521504312753677, -0.027731524780392647, -0.017391232773661613, -0.0005116714746691287, 0.008516493253409863, -0.01280730776488781, -0.008337370119988918, -0.0032588206231594086, 0.003651670180261135, -0.0033911275677382946, -0.022341545671224594, -0.0008426931453868747, -0.006761900149285793, 0.010999791324138641, -0.03930939733982086, -0.03225845471024513, 0.006708977278321981, 0.01523361261934042, -0.008072756230831146, 0.005300417542457581, -0.06923925131559372, -0.008215240202844143, 0.003938674461096525, -0.01996409334242344, -0.0005030206521041691, -0.003954958636313677, -0.0009973904816433787, 0.012945720925927162, -0.014500835910439491, -0.028855115175247192, -0.018042588606476784, -0.025288935750722885, -0.003545824671164155, -0.0157546978443861, -0.019622130319476128, -0.009998329915106297, -0.009403967298567295, -0.01730981282889843, -0.046441756188869476, 0.016837578266859055, 0.009135282598435879, -0.025972861796617508, 0.0008722077473066747, 0.02151106484234333, 0.007323695346713066, 0.010283298790454865, 0.006607202813029289, 0.024881837889552116, -0.003598747542127967, -0.037941545248031616, 0.018693946301937103, 0.0392116941511631, 0.016544468700885773, -0.006884029600769281, -0.01498121116310358, -0.014688100665807724, 0.0011012004688382149, 0.009420250542461872, -0.016984134912490845, 0.008923591114580631, -4.544869079836644e-05, -0.005137578584253788, 0.008121607825160027, -0.004380376078188419, 0.02882254868745804, 0.01523361261934042, -0.0052882046438753605, 0.018042588606476784, 0.010519416071474552, -0.010722965002059937, 0.03255156800150871, 0.0010635438375175, -0.01735866442322731, 0.0005353340529836714, -0.047451358288526535, -0.017619207501411438, 0.0019540709909051657, -0.006949165370315313, 0.009550522081553936, -0.036638833582401276, 0.008728183805942535, 0.005886639002710581, -0.03536868467926979, 0.042305637151002884, -0.0031244782730937004, 0.000146428108564578, 0.0043396661058068275, 0.028627140447497368, 0.01791231893002987, -0.023986222222447395, -0.012791023589670658, 0.040546976029872894, -0.013768059201538563, 0.015323174186050892, 0.02621711976826191, -0.00222072028554976, 0.001154123223386705, 0.002554540755227208, 0.009859916754066944, 0.012945720925927162, -0.04168684780597687, -0.0010492954170331359, -0.04963340610265732, -0.0014859081711620092, -0.006517641246318817, -0.0010116389021277428, -0.01135803759098053, -0.027829227969050407, 0.004942171275615692, 0.006554279942065477, 0.005984342657029629, -0.001359707792289555, -0.017032986506819725, -0.019898956641554832, -0.006782255135476589, 0.004820041824132204, 0.006204175762832165, -0.010283298790454865, -0.010739249177277088, -0.01721210964024067, -0.003763622371479869, -0.006122755818068981, 0.004840396810323, 0.018433403223752975, 0.005121294409036636, -0.0053655533120036125, -0.012497913092374802, -0.028789980337023735, -0.002473121276125312, -0.023953653872013092, 0.01825428009033203, -0.0029636744875460863, -0.0046897707507014275, -0.020631734281778336, -0.002237004227936268, -0.03041837364435196, 0.0001753066317178309, -0.015917537733912468, -0.03680167347192764, 0.041491441428661346, 0.025174949318170547, 0.0006086117355152965, 0.01362964604049921, 0.011089352890849113, 0.0018115866696462035, 0.020875992253422737, -0.0006844337331131101, -0.013116702437400818, -0.013385387137532234, -0.002422233810648322, -0.006965449079871178, 0.024686431512236595, 0.010234447196125984, -0.056049272418022156, -0.03488016873598099, 0.03497787192463875, -0.01418329868465662, -0.016088519245386124, 0.006204175762832165, -0.004270459525287151, 0.007327766623347998, 0.0071608563885092735, -0.003641492919996381, 0.011032359674572945, 0.025044677779078484, 0.007409186102449894, -0.03807181864976883, -0.007409186102449894, 0.009289979934692383, -0.0017149009509012103, -0.006061691325157881, -0.039700210094451904, -0.010210021398961544, -0.06481002271175385, -0.01500563696026802, 0.007144572213292122, 0.02595657669007778, -0.01047870609909296, 0.0019449113169685006, -0.000611156050581485, 0.009322547353804111, -0.00888288114219904, 0.014948643743991852, -0.011887265369296074, 0.007962839677929878, -0.002359133679419756, 0.03533611819148064, -0.0184171199798584, 0.004820041824132204, -0.017391232773661613, -0.005622025113552809, -0.01163486484438181, 0.0014543581055477262, 0.00270720268599689, 0.02045261114835739, 0.01820542849600315, 0.001127661787904799, 0.017179541289806366, 0.009322547353804111, -0.026037996634840965, 0.013727349229156971, -0.014916075393557549, -0.0203060545027256, 0.01861252635717392, -0.002275678562000394, -0.010372860357165337, 0.011870982125401497, 0.027992067858576775, 0.002640031510964036, 0.007262630853801966, -0.0028639354277402163, 0.013808769173920155, 6.75528499414213e-05, 0.006924739107489586, 0.012962005101144314, -0.013002714142203331, 0.002570824697613716, -0.0019652661867439747, -0.02691732905805111, 0.0031143007799983025, -0.0164549071341753, -0.0016192328184843063, -0.007738935761153698, 0.024653863161802292, -0.007580167148262262, 0.003851148299872875, -0.018677663058042526, 0.0028110125567764044, -0.006004697643220425, 0.018026305362582207, -0.008964301086962223, 0.007624947931617498, -0.02061544917523861, 0.07725094258785248, 0.004942171275615692, 0.004820041824132204, 0.012351357378065586, -0.025223800912499428, 0.014671816490590572, 0.001372938510030508, 0.018824217841029167, 0.03287724405527115, 0.009029436856508255, -0.004400731064379215, -0.00445365346968174, 0.016674740239977837, 0.023432569578289986, 0.0038959290832281113, 0.0038572547491639853, 0.011545303277671337, -0.004946242552250624, 0.006558351218700409, 0.0023286014329642057, -0.012400208972394466, 0.007983194664120674, 0.02501210942864418, -0.005850000306963921, -0.017570355907082558, -0.04145887494087219, 0.005520250648260117, -0.02467014640569687, -0.021853027865290642, 0.0032038623467087746, 0.032632987946271896, 0.019133612513542175, 0.02576117031276226, 0.03206304833292961, 0.009591232053935528, 0.04048183932900429, 0.024539874866604805, 0.003902035765349865, -0.004445511847734451, -0.007576096337288618, -0.0029107516165822744, -0.00038623434375040233, -0.003651670180261135, -0.01580354943871498, 0.0016558716306462884, -0.008219311013817787, 0.00034781446447595954, 0.0242630485445261, -0.004612422082573175, -0.022422965615987778, 0.012115241028368473, 0.005100939888507128, -0.03237244486808777, -0.012188518419861794, -0.019296452403068542, -0.013377244584262371, -0.01370292343199253, -0.020273488014936447, -0.024246765300631523, -0.01810772530734539, -0.006936952471733093, 0.02626597136259079, 0.0031020878814160824, -0.04862380027770996, -0.015868686139583588, -0.0069288103841245174, -0.024653863161802292, 0.003505114931613207, -0.01040542870759964, 0.017146972939372063, -0.007885490544140339, -0.012636326253414154, -0.01926388405263424, -0.0012945720227435231, -0.002291962504386902, 0.017619207501411438, 0.03287724405527115, -0.024425888434052467, 0.01776576228439808, -0.03602004423737526, 0.004587995819747448, 0.013808769173920155, -0.0006762917619198561, 0.011016075499355793, -0.015974530950188637, -0.008793319575488567, 0.011903549544513226, -0.017944885417819023, -0.01525803841650486, -0.0350104384124279, 0.008235595189034939, -0.008198956027626991, 0.006660125683993101, -0.025142380967736244, -0.011292902752757072, -0.032242171466350555, -0.002745877020061016, -0.013010856695473194, 0.019247600808739662, -0.004840396810323, -0.018433403223752975, 0.015298748388886452, 0.02155991829931736, -0.0020354907028377056, 0.012261795811355114, -0.007657515816390514, -0.010600835084915161, -0.000589783419854939, -0.03307265415787697, -0.010096034035086632, -0.014077453874051571, 0.007168998010456562, -0.025696033611893654, -0.013743633404374123, 0.00762901920825243, -0.0070509398356080055, -0.010853236541152, -0.01080438494682312, 0.0184171199798584, 0.02561461552977562, -0.006204175762832165, 0.005259708035737276, -0.00935511477291584, 0.025288935750722885, 0.022048434242606163, 0.01530689001083374, 0.004117797594517469, 0.019491858780384064, -0.0315093956887722, -0.003663883311673999, -0.0010350469965487719, 0.03152567893266678, -0.011113779619336128, -0.004258246626704931, 0.010706680826842785, 0.01000647246837616, 0.03562922775745392, 0.0010162186808884144, -0.005699373781681061, -0.011472025886178017, -0.009216701611876488, 0.009045721031725407, 0.021836744621396065, 0.01525803841650486, 0.00026283273473381996, -0.007458037696778774, -0.03390313312411308, 0.01570584625005722, 0.020094364881515503, -0.011520877480506897, 0.01091022975742817, -0.0003679149376694113, -0.0031061586923897266, -0.013930898159742355, 0.009135282598435879, -0.00727891456335783, -0.00848392490297556, -0.008988726884126663, 0.0005098904366604984, -0.021739041432738304, 0.020648017525672913, 0.002835438586771488, -0.022602088749408722, -0.03022296540439129, 0.01711440645158291, -0.0003373825747985393, 0.0003663883253466338, -0.04377119243144989, -0.03203048184514046, 0.021625053137540817, 0.016479332000017166, 0.001212134724482894, -0.009493528865277767, -0.02025720290839672, 0.015266180038452148, -0.0033707725815474987, 0.03126513585448265, -0.0060576205141842365, 0.029278498142957687, -0.01810772530734539, -0.01660960353910923, 8.256459113908932e-05, 0.008166388608515263, 0.004502505529671907, 0.004091336391866207, 0.003743267385289073, -0.033544886857271194, -0.008524634875357151, 0.010267014615237713, -0.0065461378544569016, 0.007783716544508934, -0.04038413614034653, -0.008435073308646679, 0.018547391518950462, 0.02585887350142002, 0.0070061590522527695, -0.006419937591999769, -0.03191649541258812, 0.022243842482566833, -0.0154045931994915, 0.002430375898256898, 0.007620877120643854, 0.001382098183967173, -0.014248434454202652, 0.0200617965310812, -0.021445930004119873, 0.010519416071474552, 0.005723800044506788, -0.002554540755227208, -0.017993737012147903, 0.0010452244896441698, -0.0014696242287755013, -0.030499791726469994, 0.00425417535007, 0.005996555555611849, 0.013613361865282059, 0.008500209078192711, -0.015201044268906116, 0.0036191025283187628, -0.001179566839709878, 0.006957306992262602, -0.029946139082312584, -0.025142380967736244, -0.00272552203387022, 0.0010543841635808349, 0.0015256003243848681, -0.009420250542461872, 0.02535407245159149, 0.00890730693936348, 0.01696784980595112, 0.02151106484234333, 0.0039101773872971535, 0.016528183594346046, -0.0056505221873521805, 0.03461962565779686, -0.006822964642196894, -0.016389770433306694, -0.0033382046967744827, 0.027796661481261253, -0.0016395878046751022, 0.016137370839715004, -0.0095586646348238, -0.019149895757436752, -0.006806680932641029, 0.0020029228180646896, -0.0002875130739994347, 0.01796117052435875, -0.0047793323174119, -0.006257098168134689, -0.003718841588124633, 0.0014044885756447911, 0.0022064719814807177, -0.009005011059343815, -0.012758455239236355, -0.008284446783363819, 0.0030471296049654484, 0.01600709930062294, 0.005646451376378536, -0.01825428009033203, -0.011976826936006546, 0.0019215032225474715, -0.027324426919221878, 0.0016833507688716054, 0.0040323068387806416, -0.022683508694171906, 0.01218037586659193, 0.0060576205141842365, -0.008418789133429527, 0.01776576228439808, -0.025028392672538757, -0.01478580478578806, 0.016536327078938484, 0.00885031372308731, 0.015844259411096573, 0.007527244742959738, -0.005788935348391533, 0.017326096072793007, -0.010999791324138641, 0.01616179570555687, -0.01125219278037548, 0.011382464319467545, 0.02375824749469757, -0.019491858780384064, -0.012392067350447178, 0.010967223905026913, 0.018791649490594864, 0.0017026879359036684, 0.010543841868638992, 0.029929855838418007, -0.006550209131091833, -0.009420250542461872, 0.008060542866587639, 0.002450730884447694, 0.008186743594706059, 0.005048017017543316, 0.02525636926293373, 0.004030271433293819, 0.027177872136235237, -0.023302298039197922, -0.025924010202288628, 0.0021087683271616697, -0.014093737117946148, -0.010942798107862473, 0.011805846355855465, -0.004176826681941748, 0.008573486469686031, 0.017326096072793007, -0.013499374501407146, -0.009371398948132992, -0.020224634557962418, 0.01716325804591179, -0.0014991388889029622, 0.023595407605171204, -0.005068372003734112, -0.015225470066070557, -0.022374114021658897, 0.006924739107489586, 0.0028496868908405304, 0.001312891487032175, 0.006342588923871517, -0.0033382046967744827, 0.010617119260132313, -0.03136283904314041, -0.022699791938066483, -0.0019103080267086625, -0.001102218171581626, -0.010625261813402176, 0.010845093987882137, 0.00925741158425808, -0.01330396719276905, 0.00032109866151586175, 0.006155323702841997, 0.009428393095731735, -0.0064240084029734135, -0.008410647511482239, 0.010144885629415512, -0.024083925411105156, 0.02361169271171093, -0.03435908257961273, 0.014272860251367092, -0.010698539204895496, 0.009387683123350143, 0.011496451683342457, 0.01981753669679165, 0.00116938934661448, -0.005703445058315992, -0.00703058484941721, -0.0020314196590334177, 0.004421085584908724, -0.010340292938053608, -0.02191816456615925, 0.003855219343677163, 0.025223800912499428, -0.00970521941781044, 0.013352818787097931, -0.005084655713289976, 0.005084655713289976, 0.03660626336932182, -0.007820354774594307, -0.011651149019598961, -0.007132359314709902, -0.013214405626058578, 0.005634238012135029, -0.01127661857753992, -0.02250438556075096, -0.003845041850581765, -0.01590939611196518, -0.011952401138842106, 0.0027214509900659323, 0.02740584686398506, -0.004282672423869371, 0.010853236541152, 0.024751566350460052, 0.014468267560005188, 0.03488016873598099, -0.021673904731869698, 0.03328434377908707, -0.02535407245159149, -0.004016023129224777, -0.00965636782348156, -0.0044495826587080956, -0.00521492725238204, -0.013841336593031883, 0.00222072028554976, 0.008817745372653008, -0.018319416791200638, 0.0001117611609515734, -0.005162004381418228, 0.020843423902988434, 0.015827976167201996, 0.00441701477393508, -0.009094572626054287, 0.021592484787106514, -0.002230897778645158, -0.002548434305936098, 0.010462421923875809, -0.015095198526978493, 0.02310688979923725, -0.01745636761188507, 0.02396993897855282, 0.009534238837659359, 0.0006829071207903326, -0.0020283665508031845, 0.014948643743991852, 0.010437996126711369, 0.016088519245386124, 0.0077470773831009865, -0.016194364055991173, 0.0017342381179332733, -0.003802296705543995, -0.006362943910062313, -0.008768893778324127, -0.0259077250957489, 0.01740751601755619, -0.023774530738592148, -0.010739249177277088, -0.015347599983215332, -0.0018472077790647745, -0.006704906467348337, -0.016918998211622238, -0.011846555396914482, -0.03264927119016647, -0.021625053137540817, 0.012449061498045921, 0.021885596215724945, 0.014867223799228668, 0.014590397477149963, 0.007327766623347998, -0.0051782880909740925, 0.02476785145699978, -0.01651190035045147, 0.015315031632781029, 0.010967223905026913, 0.024344468489289284, -0.0010930584976449609, -0.030939457938075066, -0.008260020986199379, -0.007352192420512438, 0.023595407605171204, 0.0043722339905798435, -0.004111691378057003, -0.010267014615237713, -0.03010897897183895, -0.006586847826838493, 0.002387630520388484, -0.02551691047847271, 0.01017745304852724, 0.025842590257525444, 0.0077592902816832066, -0.012896869331598282, 0.0050765136256814, 0.0047671194188296795, 0.013450522907078266, 0.0148102305829525, -0.018433403223752975, 0.0004083703097421676, 0.013572651892900467, -0.004974739160388708, -0.010397286154329777, -0.014207725413143635, 0.01485908217728138, -0.02665678597986698, 0.005674947984516621, -0.016389770433306694, 0.0063466597348451614, -0.006362943910062313, -0.003606889396905899, 0.006912526208907366, -0.0048119002021849155, 0.0006691675516776741, -0.012017536908388138, -0.0064565762877464294, -0.008394363336265087, -0.006607202813029289, 0.018840501084923744, 0.003484759945422411, 0.006912526208907366, -0.01696784980595112, -0.00030583248008042574, -0.01040542870759964, -0.0033361692912876606, 0.008072756230831146, -0.007743006572127342, -0.004897390492260456, -0.003812473965808749, 0.0942513644695282, 0.0032771399710327387, 0.011789562180638313, 0.011024217121303082, 0.001381080481223762, -0.013727349229156971, -0.02146221324801445, 0.013605219312012196, 0.018645094707608223, 0.0008986691245809197, -0.005658664274960756, 0.006835177540779114, 0.0008177583804354072, 0.0030145617201924324, -0.03216075152158737, -0.01599895767867565, 0.015363884158432484, 0.013246973045170307, 0.0017322025960311294, 0.017635490745306015, 0.018531106412410736, -0.019296452403068542, -0.022797495126724243, 0.003545824671164155, -0.00545104406774044, 0.03536868467926979, 0.001118502113968134, -0.005487682763487101, 0.026135699823498726, 0.02481670305132866, 0.009599373675882816, -0.010893946513533592, 0.005446973256766796, 0.007213778793811798, 0.009273695759475231, 0.011317328549921513, 0.0011205376358702779, 0.02296033501625061, 0.0056627350859344006, -0.00030583248008042574, 0.003295459318906069, 0.006082046311348677, 0.030744051560759544, 0.024849269539117813, -0.028741128742694855, 0.007584238424897194, 0.005410334095358849, -0.0010370825184509158, -0.0027723382227122784, 0.0022960335481911898, -0.006696764379739761, -0.03940710052847862, 0.008687473833560944, 0.011146347038447857, -0.0021840815898030996, -0.005752296652644873, 0.010617119260132313, -0.010576409287750721, -0.005898851901292801, 0.01245720311999321, -0.02045261114835739, 0.0148102305829525, -0.008809603750705719, -0.026982463896274567, -0.013238831423223019, 0.002247181721031666, -0.0015133873093873262, -0.010690396651625633, 0.0015958247240632772, -0.01755407080054283, -0.02291148342192173, -0.0018563674530014396, 0.002355062635615468, -0.02256952039897442, -0.005744154565036297, 0.0315093956887722, -0.004172755870968103, 0.04051440581679344, 0.010893946513533592, 0.015103341080248356, 0.0070061590522527695, -3.3999054721789435e-05, -0.011081211268901825, -0.017537787556648254, 0.01890563778579235, -0.009762213565409184, 0.006827035918831825, -0.03186764195561409, 0.008606054820120335, -0.0226183719933033, -0.01250605471432209, -0.005259708035737276, -0.001267093000933528, 0.004608350805938244, 0.00795469805598259, -0.003672025166451931, 0.006411795504391193, -0.010657829232513905, 0.019687265157699585, -0.0007984212134033442, -0.0010101122315973043, 0.016031524166464806, 0.0002954005904030055, -0.003798225661739707, 0.00795062631368637, 0.0017281315522268414, 0.013914613984525204, 0.004193110857158899, -0.016194364055991173, -0.005406263284385204, -0.01840083673596382, -0.008939875289797783, 0.002460908144712448, 0.010812526568770409, -0.021250523626804352, -0.005906993988901377, 0.004567641299217939, -0.012025678530335426, -0.02226012572646141, 0.0007709420751780272, 0.004022129811346531, -0.0027703028172254562, -0.009990188293159008, -0.00825187936425209, 0.004535073414444923, 0.009395824745297432, -0.02146221324801445, -0.007458037696778774, -0.0034196244087070227, 0.006273382343351841, 0.011064927093684673, 0.005719728767871857, 0.02870856039226055, -0.01373549085110426, 0.021283090114593506, -0.005866284016519785, -0.002287891460582614, 0.008606054820120335, 0.021234238520264626, -0.024686431512236595, 0.01599895767867565, -0.01781461387872696, 0.0252075158059597, 0.015201044268906116, 0.011382464319467545, 0.0027560542803257704, 0.011691858060657978, -0.01846597157418728, 0.012278079986572266, -0.019670981913805008, 0.043412946164608, -0.027503550052642822, -0.0026888831052929163, -0.013768059201538563, -0.00115106999874115, 0.015494154766201973, -0.017749479040503502, 0.043412946164608, -0.019426723942160606, 0.00817860197275877, 0.004138152580708265, -0.009990188293159008, -0.015445303171873093, 0.009884342551231384, -0.00526377884671092, 0.01205824688076973, 0.019882673397660255, 0.027454698458313942, 0.013010856695473194, -0.0004946242552250624, -0.008581629022955894, -0.008007620461285114, 0.010771816596388817, -0.021136535331606865, 0.011586013250052929, -0.003859290387481451, 0.016935283318161964, 0.0005994520033709705, -0.014199582859873772, 0.020843423902988434, -0.003615031484514475, -0.0029514615889638662, 0.028952820226550102, 0.003317849710583687, -0.004995094146579504, -0.003515292424708605, 0.0184496883302927, -0.011040501296520233, -8.358233753824607e-05, 0.004113726783543825, -0.0008920537657104433, -0.002469050232321024, 0.005043945740908384, -0.02486555464565754, -0.014728810638189316, -0.024149062111973763, 0.024539874866604805, -0.004583925008773804, 0.014443841762840748, -0.01373549085110426, -0.01770062744617462, 0.014443841762840748, 0.006639770697802305, 0.007918058894574642, -0.023286012932658195, -0.006322233937680721, -0.021722756326198578, -0.01880793459713459, -0.026803340762853622, -0.0004353405674919486, -0.00807682704180479, -0.035043008625507355, 0.010584551841020584, 0.02180417627096176, -0.013393528759479523, -0.004750835243612528, -0.0013658142415806651, 0.015730271115899086, -0.00023166427854448557, 0.014191441237926483, 0.015412735752761364, 0.005817432422190905, 7.72452858655015e-06, 0.006635699421167374, 0.005841858219355345, -0.009925052523612976, 0.011146347038447857, 0.02071315236389637, 0.015884969383478165, 0.0052108559757471085, 0.01625949889421463, -0.002424269448965788, -0.014655533246695995, 0.025744887068867683, -0.009086430072784424, 0.01695156656205654, 0.013694781810045242, -0.009566806256771088, 0.012693319469690323, -0.006350731011480093, -0.030092693865299225, -0.009859916754066944, -0.01890563778579235, -0.0021962944883853197, 0.001259968732483685, -0.013002714142203331, -0.001384133705869317, -0.0008696633740328252, -0.001154123223386705, -3.042104435735382e-05, -0.013898330740630627, 0.002587108640000224, -0.010820668190717697, 0.00481597101315856, 0.02370939590036869, -0.0008019833476282656, -0.011870982125401497, 0.002265501068904996, -0.01706555485725403, -0.029245929792523384, -0.003527505323290825, 0.014997495338320732, -0.0030104906763881445, -0.00260135717689991, 0.007820354774594307, 0.021673904731869698, -0.03826722502708435, 0.0021331943571567535, 0.010812526568770409, -0.0016619781963527203, 0.019850105047225952, -0.0023001045919954777, 0.014541545882821083, 0.010185595601797104, 0.003700522007420659, 0.008679332211613655, -0.0065013570711016655, -0.00805240124464035, -0.003745302790775895, 0.006061691325157881, 0.006371085997670889, -0.0032160752452909946, 0.015030063688755035, -0.016788726672530174, -0.004726409446448088, -0.03282839432358742, 0.006399582605808973, 0.015038205310702324, -0.010633403435349464, 0.026526514440774918, -0.0034236954525113106, -0.009094572626054287, -0.00035493867471814156, -0.020078079774975777, 0.0017535752849653363, 0.032193321734666824, 0.0029575680382549763, -0.014329854398965836, 0.008972442708909512, 0.0008854384650476277, -0.020273488014936447, -0.022292694076895714, 0.00020672952814493328, -0.0065664928406476974, 0.006708977278321981, 0.003472547046840191, 0.021380793303251266, 0.01260375790297985, -0.01130918599665165, 0.008793319575488567, 0.010519416071474552, -0.004388517700135708, 0.014500835910439491, -0.006090187933295965, -0.021169103682041168, -0.005723800044506788, -0.000736338784918189, 0.02081085741519928, -0.010193737223744392, 0.016186222434043884, 0.007384760305285454, 0.01921503245830536, 0.01706555485725403, 0.0005208312068134546, 0.001342406147159636, -0.0019113257294520736, 0.006871816702187061, -0.00503987492993474, 0.0034359083510935307, -0.051098957657814026, 0.024425888434052467, 0.018384551629424095, -0.00521492725238204, -0.0030104906763881445, -0.017537787556648254, 0.01585240103304386, -0.015868686139583588, -0.014297286979854107, -0.006554279942065477, 0.009273695759475231, -0.012620042078197002, 0.0029433195013552904, -0.0020131003111600876, -0.01765177585184574, -0.0043274532072246075, 0.007555741351097822, -0.002318423939868808, -0.02510981261730194, 0.006704906467348337, 0.00017899596423376352, -0.0067985388450324535, -0.0030654489528387785, 0.010039039887487888, 0.02677077427506447, -0.0057726516388356686, -0.0018044625176116824, 0.01675616018474102, 0.011968685314059258, 0.007515031844377518, -0.005105010699480772, -0.007905845530331135, 0.017440084367990494, -0.013898330740630627, -0.004368163179606199, 0.008146033622324467, 0.002137265168130398, -0.003669989760965109, 0.00723006296902895, -0.04396659880876541, 0.016870146617293358, -0.000675274059176445, -0.020045511424541473, -0.01901962421834469, -0.0020782360807061195, -0.012416493147611618, 0.01730981282889843, -0.006741545163094997, 0.011244050227105618, -0.00764123210683465, -0.008304801769554615, 0.04057954251766205, 0.007918058894574642, -0.002640031510964036, -0.01825428009033203, -0.002188152400776744, 0.00263188942335546, 0.017733195796608925, 0.01871022954583168, -0.004408872686326504, 0.0023509918246418238, 0.002829332137480378, 0.000637617486063391, -0.009599373675882816, 0.0034806891344487667, -0.005801148246973753, 0.03090689145028591, -0.038690607994794846, 0.009289979934692383, 0.006672338582575321, 0.00960751622915268, -0.009371398948132992, 0.007356263231486082, 0.011976826936006546, -0.010324008762836456, -0.004673486575484276, -0.015787266194820404, 0.009672651998698711, 0.01365407183766365, 0.020289771258831024, 0.004966597072780132, -0.00893173273652792, 0.008793319575488567, -0.01805887371301651, 9.674941975390539e-05, 0.02050146274268627, -0.004034342709928751, -0.0029534969944506884, -0.003861325792968273, 0.004966597072780132, -0.010649687610566616, 0.01000647246837616, -0.01000647246837616, 0.008956159465014935, -0.0040323068387806416, 0.004176826681941748, 0.0005121803260408342, 0.045790400356054306, 0.007523173466324806, 0.014077453874051571, -0.01483465638011694, 0.0041198330000042915, -0.020029228180646896, -0.023937370628118515, -0.001251826761290431, -0.015518580563366413, -0.019394155591726303, 0.022976618260145187, -0.023025469854474068, -0.009070146828889847, 0.021787893027067184, -0.02201586775481701, -0.01017745304852724, -0.004966597072780132, -0.0063466597348451614, 0.02051774598658085, -0.0034684762358665466, -0.001308820559643209, 0.017244677990674973, -0.002416127361357212, 0.002104697283357382, -0.008891023695468903, -0.0068311067298054695, -0.002493476029485464, 0.014313570223748684, -0.025386638939380646, -0.008032046258449554, 0.00963194202631712, -0.018026305362582207, 0.013092275708913803, -0.012229228392243385, -0.0030247392132878304, -0.005801148246973753, 0.007592380046844482, -0.004494363442063332, -0.005434760358184576, 0.03128141909837723, 0.016031524166464806, 0.0051782880909740925, -0.013613361865282059, 0.004168685059994459, -0.011797703802585602, 0.017244677990674973, 0.015095198526978493, -0.003598747542127967, -0.006509499158710241, 0.02081085741519928, 0.00522714015096426, -0.0013139091897755861, -0.0032303237821906805, -0.0022614302579313517, -0.007970981299877167, -0.002668528351932764, -0.010462421923875809, -0.011789562180638313, 0.03126513585448265, -0.02141336165368557, 0.006537996232509613, 0.011781420558691025, -0.0009505741763859987, 0.008333299309015274, 0.016324635595083237, 0.02411649376153946, 0.00995762087404728, 0.004612422082573175, -0.0008482907433062792, -0.009167850017547607, 0.00795469805598259, 0.02476785145699978, 0.007482463959604502, -0.002253288170322776, 0.015591858886182308, 0.002363204723224044, 0.0005103992880322039, -0.012538623064756393, 0.007832568138837814, 0.004278601612895727, 0.004567641299217939, 0.011993111111223698, 0.021022547036409378, 0.010796242393553257, 0.010853236541152, -0.01215595006942749, -0.02810605615377426, 0.00845135748386383, -0.0005485647125169635, 0.035140711814165115, 0.0029188937041908503, 0.006371085997670889, 0.0031407622154802084, -0.011602296493947506, -0.006240814458578825, -0.0317210853099823, 0.003621137933805585, 0.02266722358763218, 0.00028013440896756947, -0.023090606555342674, 0.011952401138842106, 0.00805240124464035, -0.0005984342424198985, -0.0056953029707074165, 0.0029555323999375105, 0.014476410113275051, -0.0068188938312232494, 5.661208342644386e-05, 0.019801253452897072, 0.016788726672530174, 0.024149062111973763, 0.012571190483868122, 0.035792067646980286, -0.0105031318962574, 0.024881837889552116, 0.011553444899618626, 0.006912526208907366, -0.014704384841024876, 0.001247755833901465, -0.019296452403068542, 0.006314092315733433, 0.007201565895229578, 0.002493476029485464, -0.004388517700135708, -0.018791649490594864, -0.002149478066712618, 0.009062004275619984, 0.0144601259380579, 0.013939039781689644, -0.023188309744000435, 0.01455782912671566, 0.013027140870690346, 0.0030695199966430664, 0.02235782891511917, -0.00721785007044673, 0.007543528452515602, 0.0009531184914521873, 3.7656576751032844e-05, -0.015925679355859756, 0.0021474426612257957, 0.016723591834306717, -0.029376201331615448, 0.0015744520351290703, 0.018824217841029167, -0.004355950281023979, -0.010698539204895496, -0.0014553758082911372, -0.001434003235772252, -0.010600835084915161, -0.00704279774799943, -0.021299375221133232, -0.007865135557949543, 0.0010192719055339694, -0.015884969383478165, 0.0030756264459341764, -0.020126931369304657, -0.02861085720360279, -0.002318423939868808, 0.0004162578552495688, 0.013572651892900467, 0.005109081510454416, -0.0009958638111129403, 0.03271440789103508, -0.017537787556648254, 0.013540084473788738, -0.011512734927237034, -0.00792620051652193, -0.0044699376448988914, 0.013124844059348106, 0.006936952471733093, 0.0008147051557898521, 0.0063466597348451614, -0.03133027255535126, -0.011032359674572945, -0.022129854187369347, 0.019296452403068542, 0.019524427130818367, -0.002609499031677842, 0.0033300628419965506, 0.006216388661414385, -6.071487223380245e-05, -0.015502297319471836, 0.000585712434258312, -0.0020751827396452427, 0.023400001227855682, -0.01405302807688713, -0.0007449896074831486, -0.011081211268901825, 0.011561587452888489, 0.002377453027293086, 0.002410020912066102, -0.00935511477291584, 0.015111482702195644, -0.010283298790454865, 0.003334133652970195, 0.008785177953541279, -0.002275678562000394, 0.003690344514325261, -0.0168050117790699, -0.018547391518950462, 0.010421711951494217, 0.010185595601797104, 0.03273069113492966, -0.006029123440384865, 0.004571712110191584, 0.011651149019598961, -0.00960751622915268, -0.01921503245830536, -0.0007979123620316386, 0.007262630853801966, -0.022032150998711586, -0.0053207725286483765, -0.005784864537417889, -0.02462129481136799, -0.00770229659974575, -0.00883402954787016, -0.015168476849794388, 0.0019601774401962757, 0.013768059201538563, 0.003556002164259553, -0.011781420558691025, -0.0018309238366782665, 0.009688935242593288, -0.011423173360526562, -0.00800354965031147, 0.022976618260145187, -0.017749479040503502, 0.0047793323174119, 0.007372547406703234, -0.01175699383020401, -0.004105584695935249, -0.006517641246318817, 0.028138622641563416, -0.009078288450837135, -0.02711273543536663, -0.021641336381435394, -0.013116702437400818, 0.02252066880464554, -0.012424634769558907, -0.012799165211617947, 0.01130918599665165, 0.007572025526314974, -0.0022166494745761156, -0.01052755769342184, 0.008500209078192711, -0.0021861169952899218, -0.017684342339634895, 0.015103341080248356, 0.0033768790308386087, 0.0266079343855381, -0.0005643398035317659, -0.01290501095354557, 0.011219624429941177, -0.019149895757436752, 0.00048521009739488363, -0.008671190589666367, 0.0028924322687089443, -0.012709603644907475, -1.6490654161316343e-05, 0.003999739419668913, 0.013572651892900467, -0.007002087775617838, -0.016471190378069878, -0.0032852820586413145, -0.005072442814707756, 0.009062004275619984, -0.012204802595078945, -0.028594573959708214, -0.009021294303238392, -0.0021006264723837376, 0.007567954249680042, -0.019491858780384064, -0.005312630906701088, -0.004046555608510971, -0.015315031632781029, 0.0033544886391609907, 0.004490292631089687, 0.0066886222921311855, -0.002230897778645158, -0.010169311426579952, 0.007657515816390514, -0.0008849295554682612, -0.0030858039390295744, -0.005797077436000109, 0.023383716121315956, -0.009550522081553936, 0.003904071170836687, 0.006537996232509613, 0.00024743934045545757, -0.03712734952569008, -0.005560960620641708, 0.025647182017564774, -0.008516493253409863, 0.0076697287149727345, 0.0027214509900659323, -0.010885803960263729, -0.005687160883098841, 0.005654592998325825, -0.010348434560000896, -0.026249688118696213, -0.00230824644677341, 0.01077995914965868, -0.009615657851099968, -0.007612735033035278, 0.026835909113287926, -0.01168371643871069, 0.0019510178826749325, 0.027194155380129814, 0.0019092902075499296, -0.009892485104501247, 0.0210062637925148, -0.006248956546187401, -0.012546764686703682, 0.020827140659093857, -0.01371106505393982, -0.03001127392053604, -0.019394155591726303, 0.001087969751097262, 0.00840250588953495, -0.021999582648277283, -0.013401670381426811, 0.0044373697601258755, -0.0048119002021849155, 0.010470564477145672, -0.013930898159742355, 0.00028598643257282674, 0.00684331962838769, -0.003708664095029235, 0.02385595068335533, 0.006000626366585493, 0.013124844059348106, 0.0010152009781450033, 0.012571190483868122, -0.0029127872548997402, 0.004013987723737955, 0.016935283318161964, 0.012538623064756393, 0.011545303277671337, 0.01986638829112053, 0.019736118614673615, -0.000594872166402638, -0.015624426305294037, -0.006827035918831825, 0.029131943359971046, 0.005955845583230257, 0.006220459472388029, -0.009493528865277767, -0.017277244478464127, -0.009216701611876488, -0.004856680985540152, -0.0031509394757449627, -0.0029799584299325943, -0.010332150384783745, 0.023595407605171204, 0.0028313675429672003, -0.01093465555459261, -0.03256785124540329, 0.004763048142194748, -0.017032986506819725, 0.004954384174197912, 0.026396242901682854, 0.021853027865290642, -0.001316962530836463, 0.044552821666002274, 0.01650375872850418, -0.006139039993286133, -0.009640083648264408, 0.006822964642196894, 0.02546805888414383, -0.003757515922188759, 0.008809603750705719, -0.02655908279120922, -0.004958455450832844, -0.009143424220383167, -0.000649830384645611, -0.01402860227972269, -0.0021250522695481777, -0.014354280196130276, -0.011024217121303082, 0.0186613779515028, 0.0008584681781940162, 0.010918372310698032, 0.026998749002814293, -0.023741964250802994, -0.016821295022964478, -0.0041076201014220715, 0.0046694157645106316, 0.0017423799727112055, -0.016235074028372765, 0.003985490649938583, -0.02165762148797512, -0.015819834545254707, -0.014940501190721989, 0.005080584902316332, -0.005609812214970589, 0.016837578266859055, 0.045204177498817444, -0.01706555485725403, -0.02541920728981495, 0.013344677165150642, 0.004807828925549984, -0.0033198853489011526, -0.00742954108864069, 0.007168998010456562, -0.007376618217676878, 0.0053207725286483765, -0.006485073361545801, 0.0015286535490304232, 0.0044292276725173, -0.004596137907356024, -0.010657829232513905, 0.013556367717683315, 0.03390313312411308, 0.010185595601797104, 0.007600522134453058, -0.017488935962319374, 0.005096868611872196, 0.015363884158432484, 0.017733195796608925, 0.0070509398356080055, 0.009460960514843464, -0.014663674868643284, -0.005422546993941069, -0.01986638829112053, 0.019850105047225952, 0.006647912785410881, 0.012937578372657299, 0.003956994041800499, -0.006627557799220085, -0.003922390751540661, -0.010047182440757751, -0.015372025780379772, 0.004958455450832844, -0.015510438941419125, 0.043250106275081635, 0.02351398766040802, -0.010519416071474552, -0.016121085733175278, 0.003816545009613037, -0.005133507307618856, -0.01332839298993349, 0.0008620303124189377, -0.002774373861029744, -0.020680585876107216, -0.0044373697601258755, -0.00140957732219249, 0.010739249177277088, 0.010820668190717697, -0.007694154977798462, 0.0014920146204531193, -0.002884290413931012, -0.008044259622693062, -0.0010223252465948462, 0.012628184631466866, -0.022292694076895714, 0.003608925035223365, 0.023644259199500084, 0.014264718629419804, -0.017342381179332733, -0.013857620768249035, 0.018351983278989792, -0.004999164957553148, -0.014240292832255363, 0.006696764379739761, 0.01565699465572834, -0.005011377856135368, 0.001096111722290516, -0.00222072028554976, 0.0022390398662537336, -0.008219311013817787, 0.027389563620090485, 0.027047600597143173, -0.010039039887487888, 0.009599373675882816, 0.013352818787097931, -0.014346138574182987, -0.011366180144250393, -0.002623747568577528, -0.007588309235870838, 0.011586013250052929, -0.03367515653371811, 0.0020232778042554855, -0.010608977638185024, 0.032486431300640106, -0.013157411478459835, -0.0009342902339994907, 0.012449061498045921, 0.003694415558129549, -0.009623800404369831, 0.018987057730555534, -0.0032934239134192467, -0.003769728820770979, 0.00520271435379982, 0.00425417535007, -0.021331941708922386, 0.00820302776992321, 0.016723591834306717, 0.0029901359230279922, 0.02681962586939335, 0.006794468034058809, 0.0006187891704030335, -0.02250438556075096, -0.0014614822575822473, -0.017570355907082558, 0.030955743044614792, -0.001348512596450746, 0.01675616018474102, -0.01750521920621395, -0.016886429861187935, 0.011349895969033241, 0.004134081769734621, 0.005556889809668064, 0.011374321766197681, 0.006594989914447069, 0.008768893778324127, 0.002237004227936268, -0.002436482347548008, -0.025126097723841667, 0.0017698591109365225, -0.023139458149671555, 0.0015866649337112904, -0.019101044163107872, -0.019296452403068542, -0.0010564196854829788, 4.605297726811841e-05, 0.004868893884122372, 0.023383716121315956, 0.013377244584262371, -0.006281524430960417, 0.0056953029707074165, 0.0007256524404510856, -0.013002714142203331, -0.021250523626804352, -0.01127661857753992, 0.00041345905628986657, -0.021901879459619522, 0.016739875078201294, -0.03367515653371811, 0.021201670169830322, -0.018221711739897728, 0.0003256784984841943, -0.016788726672530174, -0.012994572520256042, 0.020436326041817665, 0.011700000613927841, 0.004685699474066496, 0.0030288102570921183, 0.01208267267793417, 0.01890563778579235, 0.0207620058208704, -0.027796661481261253, 0.012440918944776058, -0.0013251043856143951, 0.006554279942065477, -0.011838413774967194, 0.017049269750714302, 0.012278079986572266, -0.023530272766947746, 0.012685177847743034, 0.002342849737033248, -0.007726722862571478, -0.00995762087404728, 0.01042985450476408, -0.017440084367990494, -0.003456263104453683, -0.013067849911749363, -0.007315553724765778, 0.002796764252707362, -0.013914613984525204, -0.011577870696783066, 0.019687265157699585, 0.007022442761808634, -0.016870146617293358, 0.0002101644204230979, 0.011374321766197681, 0.015192902646958828, -0.022992903366684914, 0.004408872686326504, 0.01128476019948721, -0.013214405626058578, -0.002373382216319442, -0.0001829397224355489, -0.019801253452897072, 0.01238392572849989, 0.0149323595687747, 0.006265240255743265, -0.029653027653694153, 0.013955323956906796, -0.015339457429945469, 0.010845093987882137, 0.023546556010842323, -0.0041971816681325436, 0.010739249177277088, 0.007352192420512438, 0.0020568633917719126, 0.023383716121315956, 0.006603132002055645, -0.00039259527693502605, 0.00837808009237051, 0.002802870701998472, 0.0007602557889185846, -0.013987892307341099, -0.02491440623998642, -0.000677309522870928, 0.013287683017551899, -0.002471085637807846, 0.003494937438517809, -0.00965636782348156, -0.0040424843318760395, 0.008394363336265087, -0.01905219256877899, 0.016870146617293358, 0.01675616018474102, 0.010307724587619305, 0.004746764432638884, -0.0031855429988354445, 0.009680793620646, 0.0019153967732563615, -0.013914613984525204, -0.019149895757436752, -0.003395198378711939, -0.012742171995341778, 0.016918998211622238, -0.00480375811457634, -0.007897703908383846, -0.01450897753238678, -0.013450522907078266, 0.007376618217676878, -0.003751409240067005, -0.005911064799875021, -0.005341127514839172, 0.023579124361276627, 0.032698120921850204, 0.02252066880464554, 0.013116702437400818, 0.013548226095736027, 0.009379541501402855, -0.02551691047847271, -0.005011377856135368, 0.018335700035095215, -0.01701670140028, 0.005658664274960756, -0.012660752050578594, 0.03235616162419319, 0.004787473939359188, 0.028903968632221222, -0.0038959290832281113, 0.0052434238605201244, -0.003790083574131131, -0.009037578478455544, -0.0011673539411276579, 0.0043396661058068275, -0.012139666825532913, -0.00015660555800423026, 0.01890563778579235, -0.004921816289424896, -0.009029436856508255, -0.01711440645158291, -0.014891649596393108, 0.007881419733166695, -0.0041198330000042915, -0.0014390918659046292, 0.012489770539104939, -0.018189145252108574, 0.01288058515638113, 0.010258872993290424, -0.009118998423218727, 0.01635720394551754, 0.0016965814866125584, -0.003659812267869711, 0.013075992465019226, 0.003763622371479869, 0.013108559884130955, -0.011219624429941177, -0.01945929042994976, 0.010674113407731056, -0.0020395617466419935, -0.009102714248001575, -0.005080584902316332, 0.011911691166460514, -0.006651983596384525, 0.006171607878059149, 0.004697912372648716, -0.013018998317420483, -0.005963987670838833, -0.012001252733170986, -0.036248017102479935, 0.0020711116958409548, -0.0023509918246418238, 0.00930626317858696, -0.02952275611460209, -0.0030796974897384644, 0.004425156861543655, -0.001162265194579959, -0.010291441343724728, -0.009843632578849792, -0.004024165216833353, -0.005597599316388369, -0.005337056703865528, 0.003722912399098277, 0.004384446889162064, -0.017195824533700943, 0.013434238731861115, 0.014517119154334068, -0.00744175398722291, -0.0066112736240029335, 0.004644989967346191, -0.014215867035090923, 0.02515866421163082, 0.018775366246700287, 0.003959029447287321, -0.03738789260387421, 0.02001294493675232, -0.03621545061469078, 0.016984134912490845, -0.015567433089017868, 0.007645302917808294, 0.010169311426579952, -0.005495824851095676, -0.010869520716369152, 0.008638622239232063, 0.010210021398961544, 0.008720042183995247, -0.006077975034713745, -0.013352818787097931, -0.005084655713289976, 0.025842590257525444, -0.006318163126707077, 0.008516493253409863, 0.024849269539117813, -0.009175991639494896, 0.01885678619146347, -0.008785177953541279, 0.019719833508133888, -0.0010676148813217878, 0.021739041432738304, -0.016479332000017166, -0.0013688674662262201, -0.009843632578849792, 0.0004938609199598432, 0.0003847077314276248, 0.00521492725238204, 0.002269572112709284, -0.021299375221133232, -0.009289979934692383, -0.021527349948883057, 0.003924426157027483, -0.000600978615693748, 0.009029436856508255, 0.008353653363883495, 0.011976826936006546, -0.010690396651625633, -0.004044520203024149, -0.025940293446183205, -0.004950313363224268, -0.02201586775481701, -0.0018767224391922355, -0.01711440645158291, 0.028285179287195206, -0.0184171199798584, -0.021152818575501442, -0.006045407149940729, 0.010087891481816769, -0.009851775132119656, 0.024197913706302643, -0.007608664222061634, -0.018742797896265984, -0.000358500808943063, 0.0004322873428463936, -0.0028110125567764044, -0.019947808235883713, 0.003417588770389557, -0.009167850017547607, 0.011610439047217369, -0.010348434560000896, -0.01090208813548088, 0.0032567852176725864, 0.021478498354554176, -0.01750521920621395, -0.006102401297539473, 0.0020080115646123886, 0.011187057010829449, -0.00481597101315856, 0.01791231893002987, -0.01770062744617462, 0.004396659787744284, -0.01405302807688713, 0.011724426411092281, -0.012693319469690323, 0.026005428284406662, 0.0009337813244201243, 0.007706367876380682, 0.024425888434052467, 0.002464979188516736, -0.009241127409040928, 0.02861085720360279, 0.003802296705543995, -0.0067211901769042015, 0.010942798107862473, -0.005072442814707756, 0.0031916494481265545, -0.004738622345030308, 0.004710125271230936, 0.01441127434372902, -8.30098579172045e-05, 0.0020293842535465956, -0.008410647511482239, -0.0019306628964841366, -0.014004175551235676, 0.018026305362582207, 0.011301044374704361, 0.019084760919213295, -0.015429018996655941, -0.002363204723224044, -0.025077246129512787, -0.01371106505393982, 0.0031204072292894125, 0.0038796451408416033, -0.033740293234586716, -0.0052556367591023445, -0.00120399275328964, -0.025288935750722885, -0.012628184631466866, -0.01820542849600315, 0.009159708395600319, -0.01641419716179371, 0.014679959043860435, 0.0052556367591023445, 0.012815449386835098, -0.0068188938312232494, -0.01370292343199253, -0.013051566667854786, -0.0019347339402884245, 0.008988726884126663, -0.0016121086664497852, -0.010372860357165337, 0.026591651141643524, 0.03126513585448265, -0.0032018269412219524, -0.013849478214979172, 0.02256952039897442, -0.02826889418065548, 0.01488350797444582, 0.010812526568770409, -0.0002773356100078672, -0.0009419232956133783, 0.012864300981163979, -0.016438622027635574, -0.0055080377496778965, -0.03036952018737793, 0.01621064729988575, -0.004860751796513796, -0.007107933517545462, 0.01135803759098053, -0.009192275814712048, 0.0032221816945821047, -0.013165554031729698, -0.014142589643597603, -0.0031204072292894125, 0.0046246349811553955, 0.0638655573129654, 0.029392486438155174, 0.003836899995803833, 0.006228601559996605, 0.01362964604049921, -0.03911398723721504, 0.00704279774799943, -0.01283173356205225, -0.01856367476284504, -0.0053981211967766285, 0.013523800298571587, -0.003908141981810331, 0.013564510270953178, 0.012041962705552578, -0.020680585876107216, 0.005658664274960756, 0.006253027357161045, -0.007384760305285454, 0.006342588923871517, 0.003881680779159069, 0.0009561717743054032, -0.016739875078201294, -0.006236743647605181, 0.011520877480506897, 0.024100210517644882, 0.014240292832255363, -0.006806680932641029, -0.011431315913796425, -0.019882673397660255, 0.009843632578849792, 0.031037161126732826, -0.00502766203135252, -0.02556576393544674, 0.012685177847743034, 0.007624947931617498, 0.017635490745306015, 0.006069833412766457, 0.013385387137532234, -0.0068311067298054695, -0.004730480257421732, -0.0266079343855381, -0.0249632578343153, 0.005328914616256952, -0.014329854398965836, -0.014964927919209003, -0.004158507566899061, 0.00058469467330724, -0.009517954662442207, 0.0006930845556780696, -0.007775574456900358, -0.0005009851302020252, -0.002275678562000394, -0.01087766233831644, 0.004575782921165228, -0.007376618217676878, 0.02626597136259079, 0.014215867035090923, -0.031835075467824936, -0.006684551481157541, -0.014451984316110611, 0.001358690089546144, 0.0030878393445163965, 0.009697077795863152, 0.006745615974068642, -0.005023591220378876, 0.028952820226550102, -0.010657829232513905, -0.0008996868855319917, 0.009925052523612976, 0.008007620461285114, 0.011081211268901825, -0.029783299192786217, -0.00923298578709364, -0.009762213565409184, -0.022781211882829666, -0.016935283318161964, -0.020892275497317314, -0.02310688979923725, -0.005218998063355684, 0.013531941920518875, 0.02245553396642208, -0.007771503645926714, 0.008988726884126663, -0.009526096284389496, -0.01991524174809456, -0.00220850738696754, -0.009013152681291103, 0.012921295128762722, 0.00482818391174078, -0.009664509445428848, -0.014069311320781708, 0.009876200929284096, -0.014394990168511868, 0.009053862653672695, 0.01805887371301651, -0.013010856695473194, -0.004526931326836348, 0.008964301086962223, -0.0016680846456438303, 0.009338831529021263, -0.001129697309806943, 0.015567433089017868, 0.012098956853151321, 0.012343215756118298, 0.003838935401290655, -0.0259077250957489, 0.014940501190721989, 0.007816283963620663, 0.004172755870968103, 0.03380542993545532, -0.007173069287091494, 0.011675574816763401, 0.010641545057296753, 0.002585073234513402, -0.0018614561995491385, 0.016047809273004532, -0.00042338206549175084, -0.007718580774962902, 0.022748643532395363, 0.026233404874801636, -0.010706680826842785, 0.004166649654507637, 0.02626597136259079, 6.685315020149574e-05, 0.0018512788228690624, -0.013548226095736027, 0.003961064852774143, 0.01945929042994976, -0.01706555485725403, -0.016691023483872414, 0.01851482316851616, 0.006664196494966745, -0.0023062110412865877, -0.002690918743610382, 0.002379488665610552, -0.002269572112709284, 0.00842693168669939, 0.013149269856512547, 0.015746556222438812, -0.01745636761188507, -0.008874739520251751, 0.02826889418065548, 0.0252075158059597, -0.023823382332921028, 0.014313570223748684, -0.003651670180261135, -0.016381628811359406, 0.020192068070173264, 0.0030328810680657625, -0.0029901359230279922, 0.005418476182967424, -0.012522338889539242, 0.003686273703351617, 0.010161169804632664, 0.0071608563885092735, 0.0031387265771627426, -0.014891649596393108, 0.03041837364435196, -0.002253288170322776, -0.00251383101567626, -0.015192902646958828, 0.0031387265771627426, 0.014492693357169628, 0.021201670169830322, 0.009843632578849792, -0.018368268385529518, -0.004714196547865868, -0.0033259917981922626, -0.010112317278981209, -0.01323068980127573, 0.005532463546842337, -0.0018848644103854895, 0.007413256913423538, -0.00041524009429849684, -0.011870982125401497, -0.00018281250959262252, -0.011211482807993889, -0.014696243219077587, -0.008467641659080982, -0.001271163928322494, 0.018970772624015808, 0.009509812109172344, 0.019345303997397423, 0.0019795147236436605, -0.008752609603106976, 0.008785177953541279, -0.006884029600769281, -0.0021739040967077017, 0.007755219470709562, -0.010600835084915161, 0.012025678530335426, 0.017570355907082558, 0.004600209183990955, -0.025826305150985718, 0.0028110125567764044, 0.013873904943466187, -0.0008294624276459217, 0.0021576201543211937, -0.030336953699588776, -0.002558611799031496, -0.007889562286436558, -0.006159394979476929, -0.00018281250959262252, 0.009452818892896175], "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c": [-0.009264826774597168, 0.010861470364034176, -0.01799982599914074, 0.009386544115841389, -0.01837213709950447, -0.03496863692998886, 0.003998768050223589, 0.02958443947136402, -0.03376578539609909, 0.013166937045753002, 0.02395680919289589, 0.04507832229137421, -0.029698997735977173, -0.017899587750434875, -0.014312511309981346, 0.002350216032937169, -0.04126929119229317, 0.022395964711904526, -0.0011044045677408576, -0.0007504402310587466, 0.07572241872549057, 0.01277314592152834, -0.051665373146533966, 0.01396883837878704, -0.012966461479663849, -0.015579801984131336, 0.0052839587442576885, 0.00816937256604433, -0.03788984939455986, 0.020305292680859566, 0.04645301029086113, -0.012021363712847233, 0.0043531800620257854, 0.045336078852415085, 0.019174039363861084, -0.010603716596961021, -0.0007674448424950242, 0.03015722706913948, -0.020004579797387123, -0.035713259130716324, -0.022095251828432083, 0.021379267796874046, -0.011069105938076973, 0.0023645355831831694, -0.04367499426007271, 0.01520748995244503, 0.017011769115924835, -0.011777929030358791, 0.0048472085036337376, 0.02989947237074375, 0.009637138806283474, -0.029226448386907578, -0.015665719285607338, 0.022925792261958122, -0.0011419937945902348, -0.036343324929475784, 0.007345991209149361, 0.03408081457018852, -0.018773088231682777, -0.0028657240327447653, 0.009493941441178322, -0.014906777068972588, -0.007106136530637741, 0.00412048539146781, -0.01609531044960022, -0.015407965518534184, 0.025574931874871254, -0.0015688989078626037, -0.07411861419677734, -0.011785089038312435, 0.017126325517892838, 0.03740298002958298, -0.00010476852912688628, 0.03966548666357994, -0.016066670417785645, -0.016897210851311684, 0.012744506821036339, -0.01996162161231041, 0.007503507658839226, 0.028367267921566963, -0.02730761282145977, 0.009995129890739918, 0.016209866851568222, -0.028424546122550964, 0.038118962198495865, 0.0038484116084873676, -0.02288283407688141, -0.02275395765900612, -0.04456281661987305, -0.04513560235500336, 0.013338773511350155, -0.004099005833268166, 0.029641717672348022, -0.02584700658917427, -0.006250536069273949, 0.0024182344786822796, 0.013045219704508781, 0.008283929899334908, 0.05235271528363228, -0.04937422648072243, 0.007467708084732294, 0.017627514898777008, -0.04290173202753067, 0.007947416976094246, -0.007460548542439938, -0.01842941716313362, 0.009558380581438541, -0.02527421899139881, -0.020419850945472717, 0.036715634167194366, 0.04691123962402344, -0.04688260331749916, -0.005616890732198954, 0.0037087947130203247, 0.010918748565018177, -0.040009159594774246, 0.007496347650885582, -0.029441243037581444, -0.01812870241701603, -0.026978259906172752, 0.019675226882100105, 0.043932750821113586, -0.010875790379941463, 0.005745768081396818, -0.02978491596877575, 0.0008596277330070734, -0.004721911624073982, 0.002328736474737525, 0.00855600368231535, -0.017699113115668297, -0.032219260931015015, -0.0017631094669923186, -0.011777929030358791, 0.020262334495782852, -0.009264826774597168, -0.03176103159785271, 0.030300423502922058, 0.05639086291193962, -0.019560670480132103, 0.05478706210851669, -0.04264397919178009, -0.023598818108439445, -0.004593034274876118, 0.00134694401640445, -0.03897814452648163, -0.0061216591857373714, -0.027078498154878616, 0.02660594880580902, -0.005455794744193554, 0.022639399394392967, -0.019818425178527832, -0.026477070525288582, 0.04313084855675697, 0.0006797368987463415, -0.00274758692830801, -0.005344816949218512, -0.015365006402134895, -0.002470143139362335, 0.029068931937217712, 0.008011856116354465, 0.004145544487982988, -0.044075947254896164, -0.011097745038568974, 0.026462752372026443, 0.022138211876153946, 0.0007933992310427129, 0.05235271528363228, 0.014892457984387875, -0.0372597835958004, 0.011470056138932705, 0.041154734790325165, -0.017312481999397278, 0.018959244713187218, 0.013711084611713886, 0.010517798364162445, -0.011713490821421146, 0.0357418991625309, 0.02275395765900612, 0.010954547673463821, -0.0567631758749485, 0.004793509840965271, -0.011670531705021858, -0.0003029505314771086, -0.0010229614563286304, -0.011326859705150127, 0.04782770201563835, 0.01792822778224945, 0.019804105162620544, -0.0003206263645552099, -0.004492796491831541, 0.010467679239809513, -0.003737434046342969, 0.0019922242499887943, 0.03365122526884079, 0.0003324848657939583, -0.009078671224415302, 0.03147463500499725, -0.026720505207777023, 0.020520087331533432, 0.0357418991625309, -0.006637167185544968, -0.028925735503435135, -0.03708794713020325, 0.007847179658710957, -0.024343440309166908, 0.002495202701538801, -0.010324482806026936, -0.000580841617193073, 0.019746825098991394, -0.0373743399977684, 0.03067273460328579, -0.01400463841855526, 0.006551249418407679, -0.005638370290398598, -0.012823265045881271, -0.0034707302693277597, -0.01225763838738203, 0.032734766602516174, 0.011935445480048656, 0.006397312972694635, -0.012300597503781319, 0.015637081116437912, 0.024300482124090195, -0.02408568561077118, -0.04656757041811943, -0.03035770170390606, -0.007596585433930159, 0.030386341735720634, -0.04545063525438309, -0.004295901395380497, 0.04307356849312782, 0.0013639486860483885, -9.79582910076715e-06, -0.03929317742586136, -0.012737346813082695, 0.002309046918526292, 0.0034098715987056494, -0.013539249077439308, 0.015135891735553741, -0.023799292743206024, 0.02166566252708435, 0.028997333720326424, 0.02629091590642929, 0.011842368170619011, 0.00494028627872467, 0.0200904980301857, -0.003905690275132656, 0.006132399197667837, 0.020176416262984276, -0.01479221973568201, 0.027837440371513367, -0.00497250584885478, -0.004281581379473209, -0.03594237193465233, -0.02921212837100029, 0.043875470757484436, 0.006859122309833765, -0.019174039363861084, -0.009207548573613167, -0.023555858060717583, -0.023140588775277138, 0.0017112006898969412, 0.0017299952451139688, -0.027837440371513367, 0.03067273460328579, -0.024486636742949486, 0.028052235022187233, -0.06409484893083572, 0.003352592932060361, 0.029756275936961174, -0.04063922539353371, -0.014047596603631973, 0.00037656258791685104, -0.011240941472351551, -0.004632413387298584, 0.0223673265427351, 0.01735544018447399, -0.005570352077484131, 0.011083425022661686, -0.0019170459127053618, 0.01013832725584507, -0.030500898137688637, 0.0010408610105514526, 0.01128390058875084, -0.025059424340724945, -0.004628833383321762, -0.011513015255331993, 0.008956953883171082, -0.027780162170529366, -0.024472316727042198, 0.011899646371603012, -0.0020817220211029053, 0.04035283252596855, 0.023269465193152428, 0.02958443947136402, -0.0036371962632983923, 0.006404472980648279, 0.001288770348764956, -0.026505710557103157, 0.00922186765819788, -0.034997276961803436, -0.03396625816822052, 0.01615258865058422, -0.016625137999653816, 0.0008090613991953433, -0.029355324804782867, 0.021952055394649506, -0.003751753829419613, -0.013854281045496464, 0.008355528116226196, -0.007170575205236673, 0.01162757258862257, -0.005874644964933395, -0.017069047316908836, -0.01099034771323204, 0.02883981727063656, 0.02231004647910595, -0.0081478925421834, -0.008083454333245754, -0.019847063347697258, 0.04934558644890785, 0.0186298917979002, -0.042414866387844086, 0.02858206257224083, 0.0009370434563606977, -0.033049799501895905, -0.008198011666536331, -0.007195634767413139, -0.04038147255778313, -0.011419937014579773, -0.02116447314620018, -0.011477216146886349, -0.03528366982936859, -0.010081048123538494, 0.011226621456444263, -0.016582177951931953, -0.024815989658236504, -0.0742904543876648, -0.008033335208892822, -0.030844571068882942, -0.030443619936704636, 0.0006774993962608278, -0.010260043665766716, -0.02510238252580166, 0.03408081457018852, -0.013646646402776241, -0.04049602895975113, 0.0276799239218235, -0.02021937444806099, 0.008019015192985535, 0.0008940844563767314, -0.01659649796783924, 0.0012672909069806337, 0.0031503275968134403, 0.019660908728837967, -0.02503078430891037, 0.0003794712829403579, -0.00880659744143486, 0.00015718076610937715, -0.02876821905374527, -0.00953690055757761, -0.017126325517892838, -0.052238158881664276, -0.020691923797130585, 0.007345991209149361, 0.015322047285735607, -0.012279117479920387, -0.004059626720845699, -0.008534523658454418, -0.014806539751589298, -0.026219317689538002, 0.008856716565787792, 0.023298105224967003, -0.022539161145687103, -0.029870832338929176, -0.01298794150352478, 0.030529538169503212, -0.016839932650327682, -0.029813554137945175, 0.013310134410858154, -0.0003163752262480557, 0.01913107931613922, -0.0003808137553278357, -0.051293060183525085, 0.05412835627794266, 0.02932668663561344, -0.011219462379813194, -0.008470085449516773, 0.030185865238308907, -0.0018436575774103403, -0.009207548573613167, 0.04149840772151947, -0.026462752372026443, 0.007134776096791029, -0.013997478410601616, 0.03476816043257713, 0.010839990340173244, 0.02034825272858143, -0.019975941628217697, -0.0026043900288641453, 0.02819543145596981, -0.0006296180072240531, 0.003909270279109478, 0.005810206290334463, 0.012279117479920387, -0.03370850533246994, -0.02780880033969879, -0.003755333600565791, 0.01242231484502554, 0.023928169161081314, -0.019818425178527832, 0.010410401038825512, -0.00994501169770956, 0.00723859341815114, 0.06277743726968765, -0.0031897067092359066, 0.0047362311743199825, 0.016123948618769646, -0.051035307347774506, -0.02941260300576687, 0.0314173586666584, 0.04101153835654259, 0.005556032061576843, 0.04232894629240036, -0.002058452693745494, 0.02566085010766983, 0.06426668167114258, 0.010682474821805954, -0.011441417038440704, -0.009801814332604408, 0.0037839729338884354, 0.030071308836340904, -0.005541712511330843, -0.011964084580540657, 0.020634645596146584, -0.01964658871293068, -0.0005177456187084317, 0.011248101480305195, 0.011097745038568974, -0.011756449937820435, 0.029255086556077003, 0.04430506005883217, -0.018715810030698776, 0.015007015317678452, 0.0013657385716214776, -0.041154734790325165, -0.07005182653665543, -0.0024790929164737463, 0.01837213709950447, -0.004621673841029406, 0.006927140522748232, 0.001158103346824646, -0.0505770780146122, 0.03284932300448418, 0.014147834852337837, 0.009393704123795033, 0.00807629432529211, -0.02876821905374527, -0.023398341611027718, 0.002591860480606556, -0.005964142736047506, -0.009694417007267475, -0.002062032697722316, 0.0148638179525733, 0.009987970814108849, -0.05077755078673363, 0.0028961533680558205, 0.027150096371769905, -0.008011856116354465, -0.007754101883620024, -0.01779935136437416, -0.00037074522697366774, -0.02336970344185829, 0.013990318402647972, -0.018085744231939316, -0.012651429511606693, 0.005008304957300425, -0.012995101511478424, -0.009708737023174763, 0.004152704495936632, -0.008226650767028332, -0.03757481649518013, -0.01464186329394579, 0.0185726135969162, 0.002987441373988986, -0.012443793937563896, 0.006769624538719654, -0.025818366557359695, 0.015980752184987068, 0.0038484116084873676, 0.04447689652442932, 0.012078641913831234, 0.016897210851311684, 0.024314800277352333, 0.0015527893556281924, -0.01963226869702339, -0.013711084611713886, -0.03720250353217125, -0.02090671844780445, -0.03319299593567848, 0.023169226944446564, -0.03061545640230179, -0.0011625782353803515, 0.03181830793619156, -0.008627601899206638, -0.021264711394906044, -0.04043874889612198, -0.03502591326832771, -0.00025350291980430484, -0.022668039426207542, -0.0478849783539772, 0.00941518321633339, -0.017126325517892838, -0.007661023642867804, -0.01646762154996395, 0.0018284429097548127, -0.005663429852575064, -0.0035852876026183367, 0.02198069542646408, -0.00492596672847867, 0.014677662402391434, 0.008913994766771793, 0.002704627811908722, 0.025231260806322098, -0.04479192942380905, -0.025245578959584236, -0.02362745627760887, -0.012171720154583454, 0.03473952040076256, -0.0297276359051466, -0.025503333657979965, 0.015264769084751606, -0.007882978767156601, -0.003463570261374116, 0.01204284280538559, 0.017283841967582703, 0.00723859341815114, -0.0007652073982171714, 0.03350802883505821, 0.05109258368611336, -0.01851533353328705, 0.023140588775277138, -0.004786349833011627, -0.01851533353328705, 0.0009271986782550812, 0.03385170176625252, -0.03439584746956825, 0.043302685022354126, -0.007120456080883741, 0.0009379384573549032, -0.0119426054880023, 0.012536872178316116, -0.02643411234021187, -0.022610759362578392, -0.008441446349024773, -0.021837497130036354, 0.02723601460456848, -0.021594064310193062, -0.010725433006882668, -0.03548414260149002, -0.00464315339922905, 0.026462752372026443, 0.03224789723753929, 0.017269523814320564, -0.01641034334897995, -0.007510667201131582, 0.002683148253709078, 0.009866253472864628, -0.014190793968737125, 0.020892400294542313, 0.015508203767240047, 0.003730274271219969, 0.03883494809269905, -0.01698312908411026, -0.03173239156603813, 0.04095425829291344, -0.006501130294054747, 0.0327061265707016, -0.013983158394694328, -0.003239825600758195, 0.019489072263240814, -0.01572299934923649, -0.018959244713187218, -0.024386398494243622, 0.005767247173935175, 0.014291031286120415, -0.043760914355516434, -0.023527219891548157, -0.01001660991460085, 0.015794597566127777, -0.0014910356840118766, 0.026061801239848137, 0.028553424403071404, -0.011369818821549416, -0.009257666766643524, 0.009071511216461658, -0.006486810743808746, 0.0027959158178418875, 0.022968752309679985, -0.005914024077355862, 0.0022732478100806475, 0.01546524465084076, 0.017269523814320564, -0.031130963936448097, -0.024558234959840775, 0.043302685022354126, 0.01067531481385231, 0.008162212558090687, -0.015923473984003067, 0.01653921976685524, -0.024042727425694466, -0.0019689546898007393, 0.028882775455713272, 0.002233868697658181, 0.04693987965583801, 0.017971185967326164, -0.00038685486651957035, 0.03554142266511917, 0.012092961929738522, 0.02210957184433937, -0.002996391151100397, -0.01479221973568201, 0.04582294821739197, -0.04144112765789032, 0.035770539194345474, 0.010968867689371109, 0.004378239158540964, -0.019030842930078506, -0.016682416200637817, 0.004539335612207651, 0.0037195344921201468, 0.000967472733464092, 0.02673482522368431, -0.033937618136405945, 0.021579744294285774, -0.009279146790504456, 0.027293292805552483, 0.0358564555644989, -0.03788984939455986, -0.01441990863531828, -0.022252768278121948, -0.013768363744020462, 0.010625195689499378, 0.05415699630975723, -0.00953690055757761, -0.01315261796116829, -0.04610934108495712, 0.006318554747849703, 0.016109630465507507, 0.02813815325498581, -0.03193286433815956, 0.006859122309833765, 0.020047539845108986, 0.019617948681116104, -0.009329265914857388, -0.025503333657979965, -0.02084944024682045, 0.015980752184987068, 0.028854137286543846, -0.0008618651772849262, -0.007467708084732294, 0.005473694298416376, -0.0074390689842402935, 0.010696793906390667, 0.00650829030200839, 0.008813757449388504, -0.011348338797688484, -0.0005973987863399088, 0.018529653549194336, 0.011355498805642128, 0.014949736185371876, -0.022539161145687103, 0.028023594990372658, 0.017283841967582703, -0.002847824478521943, -0.004525016061961651, 0.0008945319568738341, -0.020734883844852448, 0.007925937883555889, -0.013138297945261002, -0.01799982599914074, 0.005316177848726511, -0.05498753488063812, -0.010546437464654446, 0.002973121590912342, -0.010217085480690002, 0.012902023270726204, 0.00909299124032259, -9.895116090774536e-05, 0.010854310356080532, 0.019975941628217697, 0.013474809937179089, -0.005262479186058044, -0.014312511309981346, 0.0018364978022873402, 0.011742129921913147, 0.0006864492315798998, 0.01709768734872341, 0.024615513160824776, -0.024887587875127792, -0.03156055510044098, -0.004020247608423233, -0.007782740984112024, 0.0038269320502877235, -0.0034098715987056494, 0.0034492507111281157, -0.022195490077137947, -0.031703751534223557, 0.00858464278280735, -0.005810206290334463, -0.007374630309641361, 0.04095425829291344, 0.014298191294074059, 0.023670416325330734, 0.002307256916537881, 7.629699393874034e-05, 0.014470027759671211, 0.008291088975965977, -0.019417474046349525, -0.01038892101496458, 0.009587019681930542, 0.028166793286800385, -0.017498638480901718, -0.03448176756501198, -0.03599965199828148, -0.006880601868033409, 0.0012869804631918669, -0.008692040108144283, 0.01257983036339283, -0.0005271428963169456, 0.01931723579764366, 0.0063042351976037025, -0.01383996196091175, 0.009672937914729118, -1.0837641184480162e-07, -0.016066670417785645, -0.011176503263413906, -0.005931923631578684, 0.028224071487784386, -0.04373227432370186, 0.004632413387298584, -0.012515392154455185, 0.030329063534736633, -0.00982329435646534, 0.026204997673630714, 0.02059168741106987, 0.02978491596877575, -0.00497250584885478, 0.03451040759682655, -0.0007880293997004628, 0.03193286433815956, -0.010217085480690002, 0.04035283252596855, 0.02571812830865383, 0.013847121968865395, 0.001491930685006082, 0.016510579735040665, 0.00897127389907837, -0.0068913414143025875, 0.03104504570364952, 0.012293437495827675, 0.021150153130292892, 0.007460548542439938, -0.031846947968006134, 0.0035405384842306376, -0.016496261581778526, -0.023469939827919006, 0.019489072263240814, 0.02871093899011612, -0.02020505629479885, 0.03651516139507294, 0.03688747063279152, 0.006966519635170698, 0.03388034179806709, 5.27478514413815e-05, 0.001659291796386242, 0.010124007239937782, 0.032792046666145325, -0.02135062962770462, -0.0015706889098510146, -0.019030842930078506, -0.03319299593567848, 0.010660994797945023, -0.016438981518149376, 0.013961679302155972, -0.008341208100318909, 0.04399002715945244, 0.012050002813339233, -0.006157458294183016, -0.009708737023174763, -0.0023949649184942245, 0.00962997879832983, -0.008577482774853706, -0.004363919608294964, 0.008570322766900063, 0.001090979902073741, 0.007489187642931938, -0.03837671875953674, 0.0039164298214018345, -0.006776784081012011, 0.016066670417785645, -0.04212846979498863, 0.039694126695394516, 0.02737921103835106, -0.003884210716933012, 0.014555945061147213, -0.0027547467034310102, -0.001758634578436613, 0.017756391316652298, 0.017441358417272568, -0.020004579797387123, -0.015894833952188492, -0.01128390058875084, 0.05203768238425255, -0.02571812830865383, -0.018400777131319046, -0.009372224099934101, 0.009300625883042812, 0.016711056232452393, -0.008312568999826908, -0.011018986813724041, 0.010124007239937782, 0.03654380142688751, 0.012522552162408829, -0.024916227906942368, -0.011734969913959503, 0.005817366298288107, -0.0253458172082901, 0.011964084580540657, 0.031904228031635284, 0.00617893785238266, -0.017183605581521988, -0.01406191661953926, 0.04358907788991928, 0.0031521175988018513, 0.022582121193408966, -0.01925995759665966, -0.016367383301258087, -0.01615258865058422, 0.05404243618249893, -0.027350571006536484, -0.034825440496206284, -0.04759858548641205, 0.0008600752335041761, 0.027078498154878616, -0.010295843705534935, 0.004317380953580141, -0.005649110302329063, 0.019088121131062508, 0.014076236635446548, -0.011999883688986301, -0.041727520525455475, -0.016524899750947952, -0.0014534465735778213, -0.001682561356574297, 0.006579888518899679, -0.026520030573010445, 0.017269523814320564, -0.02103559672832489, 0.02027665451169014, -0.009751696139574051, 0.012658588588237762, -0.006035741418600082, -0.011742129921913147, -0.0032827844843268394, -0.0018418676918372512, -0.011412777937948704, -0.015823235735297203, 0.00852020364254713, -0.004482056945562363, 0.010732593014836311, 0.03104504570364952, 0.03093048930168152, 0.008419966325163841, -0.029140530154109, -0.03144599869847298, -0.04270125925540924, 0.006443851627409458, -0.04075378179550171, -0.026147719472646713, -0.007073917426168919, 0.003130638040602207, 0.02319786697626114, -0.006615688093006611, -0.06644327193498611, -0.016267146915197372, 0.004650312941521406, -0.004840048495680094, -0.0023824351374059916, -0.0031825469341129065, 0.009501101449131966, -0.020376890897750854, -0.007048857863992453, -0.014620384201407433, -0.004378239158540964, -0.015293408185243607, 0.023713374510407448, -0.002317996695637703, -0.006848382763564587, -0.01666809618473053, -0.010174126364290714, -0.032419733703136444, -0.033679865300655365, 0.014598904177546501, 0.012486753053963184, -0.04696851968765259, 0.017140645533800125, 0.017727753147482872, -0.007388950325548649, 0.031130963936448097, 0.00985193345695734, 0.009808974340558052, 0.000707928731571883, -0.04516424238681793, 0.011513015255331993, 0.005369876511394978, 0.02693529985845089, 0.007911617867648602, -0.017455678433179855, -0.013367412611842155, 0.006325714755803347, 0.0040524667128920555, 0.02497350610792637, 0.013131137937307358, 0.010288683697581291, -0.03579917550086975, 0.015680039301514626, -0.014319670386612415, 0.018472375348210335, 0.004807829391211271, -0.010782712139189243, -0.00743190897628665, -0.005559612065553665, -0.014054756611585617, 0.05556032434105873, -0.019918661564588547, 0.0065047102980315685, -0.009522581472992897, -0.04588022455573082, -0.025045104324817657, 0.017641834914684296, -0.010209925472736359, 0.016882892698049545, -0.03485407680273056, 0.022911474108695984, -0.01901652291417122, -0.036400601267814636, 0.01792822778224945, -0.0035763378255069256, 0.003624666715040803, 0.01811438426375389, 0.06798979640007019, -0.0041025858372449875, -0.009171749465167522, -0.009959330782294273, 0.04739810898900032, -0.006114499643445015, 0.016567859798669815, 0.004005928058177233, -0.016438981518149376, -0.007646704092621803, -0.03256293013691902, 0.012443793937563896, 0.015336367301642895, -0.04639573395252228, 0.01678265444934368, -0.04003779962658882, -0.008548843674361706, -0.0133745726197958, 0.0185726135969162, -0.007510667201131582, -0.01855829358100891, -0.014627543278038502, 4.911199721391313e-05, -0.02732193097472191, -0.01172780990600586, -0.015794597566127777, -0.008033335208892822, 0.004030987154692411, -0.00877795834094286, 0.007725462317466736, 0.0012655009049922228, -0.0029158429242670536, -0.004836468957364559, -0.0056455302983522415, 0.012909183278679848, 0.014820858836174011, 0.009057192131876945, 0.014820858836174011, 0.004943866282701492, -0.004503536503762007, -0.023899530991911888, -0.004066786728799343, -0.015637081116437912, 0.013553568162024021, -0.011326859705150127, -0.015622761100530624, -0.012909183278679848, 0.005584671627730131, -0.02255348116159439, 0.024100005626678467, -0.0015053553506731987, -0.010696793906390667, 0.024257522076368332, 0.011326859705150127, -0.007403269875794649, 0.003497579600661993, 0.01622418686747551, -0.002323366468772292, 0.03256293013691902, 0.0018812468042597175, -0.0081765316426754, 0.0052588991820812225, 0.012300597503781319, 0.0066693867556750774, 0.028625022619962692, 0.004084686283022165, -0.05261047184467316, -0.0329352430999279, 0.030128587037324905, -0.009042872115969658, -0.024801669642329216, -0.011921125464141369, -0.005015464499592781, 0.0067016058601439, 0.0070774974301457405, -0.017412720248103142, -0.005190880503505468, 0.03680155426263809, 0.02084944024682045, -0.017255203798413277, 0.006737404968589544, 0.012730187736451626, -0.022138211876153946, -0.006744564976543188, -0.03883494809269905, 0.0107755521312356, -0.05916887894272804, -0.026720505207777023, -0.0018364978022873402, 0.021178793162107468, 0.0006663121748715639, 0.014040437527000904, 0.00018928814097307622, -0.002590070478618145, 0.011219462379813194, -0.00018962376634590328, -0.016310105100274086, -0.004385399166494608, -0.006382993422448635, 0.027722882106900215, -0.03093048930168152, -0.013918720185756683, -0.015164531767368317, 0.012279117479920387, -0.004070366267114878, -0.006357933860272169, 0.0002521604474168271, -0.011069105938076973, 0.02958443947136402, 0.009014233015477657, 0.012723027728497982, 0.04295901209115982, -0.02926940657198429, 0.024572554975748062, -0.0035673880483955145, -0.0008828971767798066, 0.029140530154109, -0.0072779725305736065, -0.01735544018447399, 0.01118366327136755, 0.012372195720672607, -0.01172780990600586, 0.02344130165874958, 0.017512956634163857, -0.0013326243497431278, -0.001659291796386242, -0.0023573758080601692, 0.002942692255601287, -0.005334077402949333, -0.0006640747305937111, -0.01162757258862257, 0.0048722680658102036, 0.0015706889098510146, -0.029355324804782867, 0.006923560984432697, 0.020362572744488716, 0.016997449100017548, -0.0035942373797297478, 0.015823235735297203, -0.01596643216907978, 0.022668039426207542, 0.014720621518790722, 0.03078729286789894, -0.010811351239681244, -0.006612108089029789, -0.025804046541452408, 0.037288423627614975, 0.029670357704162598, -0.007997536100447178, 0.021193113178014755, -0.008219490759074688, 0.0223673265427351, 0.007897298783063889, 0.03147463500499725, 0.022224128246307373, -0.0048722680658102036, -0.005108542740345001, -0.009873412549495697, 0.03296388313174248, 0.030443619936704636, 0.016453301534056664, 0.01406191661953926, 0.02673482522368431, 0.011427097022533417, 0.00300892093218863, -0.0005159556167200208, -0.0012368615716695786, -0.0063078152015805244, 0.02541741542518139, 0.007503507658839226, 0.0052123600617051125, -0.031646471470594406, -0.003254145151004195, -0.0046001942828297615, -0.004453417379409075, -0.009085831232368946, 0.01918835937976837, -0.0034617804922163486, 0.030386341735720634, 0.01705472730100155, -0.0010444410145282745, 0.002942692255601287, 0.003930749837309122, 0.015508203767240047, -0.011885326355695724, -0.0073280916549265385, -0.007199214305728674, -0.0022929373662918806, -4.586769591696793e-06, 0.0032630949281156063, -0.008913994766771793, 0.012601310387253761, 0.001080240122973919, 0.007847179658710957, -0.005162241403013468, -0.016639458015561104, 0.0002962381986435503, 0.01616690866649151, -0.031159603968262672, -0.006787524092942476, -0.02667754702270031, 0.0010659204563125968, -0.029383964836597443, -0.020190736278891563, -0.014047596603631973, -0.0064187925308942795, -0.010295843705534935, 0.038233522325754166, 0.0030035509262233973, -0.05031932145357132, -0.030329063534736633, 0.015422285534441471, -0.019345875829458237, -0.0020190735813230276, -0.04227166995406151, 0.0007799745653755963, -0.01698312908411026, -0.003945069387555122, -0.011391297914087772, -0.009766015224158764, 0.006912820972502232, 0.025675170123577118, 0.025617891922593117, -0.018901964649558067, 0.007066757418215275, -0.022582121193408966, -0.006680126301944256, 0.011033305898308754, -0.003748173825442791, 0.002461193362250924, -0.007310192100703716, -0.014978375285863876, 0.02077784202992916, -0.012744506821036339, -0.005817366298288107, -0.0579373873770237, 0.007768421433866024, -0.0023878051433712244, 0.02769424393773079, 0.004732651170343161, -0.0078543396666646, 0.0019814844708889723, -0.01099034771323204, 0.011262421496212482, 0.010968867689371109, -0.016267146915197372, -0.04106881469488144, 0.007113296538591385, 0.005527392961084843, -0.00975885521620512, 0.013847121968865395, -0.001678981352597475, -0.025875644758343697, -3.6330569855635986e-05, -0.013138297945261002, -0.007156255654990673, 0.009751696139574051, 0.002575750695541501, -0.02641979232430458, 0.0018901965813711286, 0.018744448199868202, -0.018415097147226334, 0.0012297016801312566, -0.005978462751954794, 0.04069650545716286, 0.021021276712417603, -0.013066699728369713, 0.004958185832947493, 0.008949793875217438, -0.0010229614563286304, 0.008742159232497215, 0.008069134317338467, -0.01661081798374653, 0.026562988758087158, -0.03047225996851921, -0.005144341848790646, 0.011097745038568974, 0.01779935136437416, -0.020691923797130585, 0.009844773449003696, 0.015407965518534184, 0.005355556961148977, 0.0172265637665987, -0.028080875054001808, -0.0186871699988842, -0.01058223657310009, -0.019274277612566948, -0.005362716503441334, -0.022639399394392967, 0.0021461606957018375, 0.0028138153720647097, 0.014835178852081299, -0.020820802077651024, 0.021594064310193062, 0.019345875829458237, -0.017312481999397278, 0.013267175294458866, -0.002967751817777753, 0.008634761907160282, -0.021765898913145065, -0.014427068643271923, -0.014384109526872635, -0.006773204077035189, 0.0005902389530092478, 0.010417560115456581, -0.024543914943933487, 0.019403154030442238, 0.0038985302671790123, -0.007013058755546808, -0.014455707743763924, -0.002310836920514703, -0.022510522976517677, -0.012973621487617493, -0.036142848432064056, -0.025073744356632233, 0.019603628665208817, -0.007811380550265312, -0.006877021864056587, -0.0061431387439370155, -0.024343440309166908, -0.005112122278660536, -0.010439040139317513, 0.008942634798586369, -0.01633874513208866, 0.024057047441601753, -0.004768450278788805, -0.02135062962770462, -0.01735544018447399, 0.011291060596704483, -0.005226679611951113, 0.008405646309256554, 0.0013621586840599775, -0.03505455330014229, -0.027722882106900215, -0.008248130790889263, -0.009085831232368946, 0.015866195783019066, -0.041355207562446594, 0.0001894000160973519, 0.018930604681372643, -0.00795457698404789, -0.012314916588366032, 0.0028889935929328203, -0.0009719476802274585, 0.009715897031128407, -0.013768363744020462, 0.005140761844813824, 0.0026366093661636114, 0.014598904177546501, -0.019746825098991394, 0.027923358604311943, -0.023555858060717583, 0.004478476941585541, 0.006622847635298967, -0.015508203767240047, -0.01976114511489868, -0.02231004647910595, -0.004915227182209492, -0.01925995759665966, 0.014749260619282722, -0.0016127529088407755, 0.02192341536283493, 0.0040882658213377, -0.0015751637984067202, 0.027407849207520485, -0.027551045641303062, 0.006203997414559126, -0.00413480494171381, -0.017971185967326164, -0.009801814332604408, -0.017140645533800125, -0.009307785890996456, 0.007159835193306208, 0.027579685673117638, 0.007668183650821447, 0.011792249046266079, 0.03588509559631348, 0.010947388596832752, 0.004743390716612339, 0.009923531673848629, 0.03940773382782936, 0.030071308836340904, -0.012050002813339233, 0.0061681983061134815, 0.016711056232452393, -0.01642466150224209, 0.014656183309853077, -1.2606624295585789e-05, -0.019603628665208817, -0.009042872115969658, -0.009229027666151524, -0.0001971192250493914, 0.01444854773581028, -0.0003980420879088342, -0.0009433082886971533, 0.0033078440465033054, -0.013904400169849396, 0.016625137999653816, -0.012944982387125492, -0.02210957184433937, 0.0028800438158214092, 0.012021363712847233, 0.0020154935773462057, 0.010303002782166004, -0.007446228992193937, -0.02223844826221466, -0.003891370492056012, -0.010052409023046494, -0.0032881544902920723, 0.002110361587256193, -0.01507861353456974, 0.0015644240193068981, -0.01944611221551895, 0.0015742687974125147, 0.016811292618513107, -0.01918835937976837, -0.028739579021930695, 0.02623363770544529, -0.007199214305728674, 0.021880457177758217, -0.00174252490978688, -0.010625195689499378, 0.00988057255744934, -0.005090643186122179, 0.04124065116047859, -0.010696793906390667, 0.005738608073443174, 0.028911415487527847, -0.034825440496206284, -0.000911089067813009, -0.0037875529378652573, 0.0066192676313221455, 0.0013791632372885942, 0.005989202298223972, 0.022725317627191544, -0.0060965996235609055, -0.007618064992129803, 0.022095251828432083, -0.000553544785361737, 0.022968752309679985, -0.017154965549707413, 0.024916227906942368, -0.004618093837052584, 0.01089726947247982, -0.034252651035785675, -0.01774207130074501, -0.007925937883555889, -0.011169343255460262, -0.017183605581521988, -0.00360497715882957, 0.011828048154711723, 0.0015930633526295424, 0.03625740483403206, -0.009472462348639965, -0.0012118021259084344, -0.03296388313174248, 0.0021157313603907824, 0.007918777875602245, 0.0018812468042597175, 0.013188417069613934, 0.0009782124543562531, -0.02357017807662487, 0.019660908728837967, 0.006769624538719654, -0.0003801425045821816, -0.002212389139458537, -0.03073001280426979, 0.016567859798669815, -0.010524958372116089, -0.02198069542646408, -0.01673969440162182, 0.0007965316763147712, -0.01210728194564581, 0.01454878505319357, 0.011140704154968262, -0.018586931750178337, 0.026691867038607597, 0.005538132507354021, 0.016195546835660934, -0.0017094106879085302, -0.00752498721703887, 0.0007535726763308048, -0.020004579797387123, 0.031589195132255554, -0.04189935699105263, 0.017885269597172737, -0.013102498836815357, 0.010417560115456581, 0.01152733527123928, 0.0209639985114336, 7.668854959774762e-05, 0.008291088975965977, 0.0007074812310747802, 0.0011643682373687625, 0.012443793937563896, 0.000649755063932389, -0.023613136261701584, -0.01232923660427332, 0.03777529299259186, -0.021894777193665504, 0.023169226944446564, -0.008455765433609486, 0.0015152001287788153, 0.029298046603798866, 0.0034206113778054714, -0.002212389139458537, -0.001687931246124208, -0.01238651480525732, 0.01648194156587124, -0.008627601899206638, -0.0010820301249623299, 0.010396081022918224, -0.0017863789107650518, -0.012286277487874031, 0.004757710732519627, 0.03542686626315117, -0.027594005689024925, -3.0233522920752876e-05, 0.01698312908411026, 0.003114528488367796, 0.027350571006536484, -0.00941518321633339, 0.03459632396697998, 0.003603187156841159, -0.00438897917047143, -0.020376890897750854, -0.026119079440832138, -0.017469998449087143, -0.01875876821577549, -0.007882978767156601, 0.006046480964869261, -0.01698312908411026, 0.011083425022661686, -0.018987882882356644, 0.04161296412348747, 0.030014030635356903, 0.009830454364418983, -0.020376890897750854, 0.02629091590642929, -0.002808445366099477, 0.007410429418087006, 0.023298105224967003, -0.01061087567359209, 0.0108041912317276, -0.0035548582673072815, 0.01520748995244503, 0.017527276650071144, -0.02077784202992916, 0.0011464686831459403, 0.013123977929353714, 0.00975885521620512, 0.006787524092942476, -0.008155052550137043, -0.01742703840136528, -0.000519088061992079, -0.004224302712827921, -0.010467679239809513, -0.021751580759882927, -0.018930604681372643, 0.010081048123538494, -0.019116761162877083, -0.007610904984176159, -0.02369905449450016, 0.016567859798669815, -0.003257725154981017, -0.01983274333178997, -0.009859093464910984, -0.017899587750434875, -0.005577511619776487, 0.015637081116437912, 0.029670357704162598, 0.0157086793333292, -0.00638657296076417, -0.0011231991229578853, -0.007174155209213495, 0.012193199247121811, -0.008641920983791351, 0.028911415487527847, -0.004152704495936632, 0.013610847294330597, 0.01320989616215229, -0.03516910970211029, 0.004696852061897516, -0.007056017871946096, 0.034825440496206284, 0.007782740984112024, -0.005749347619712353, 0.0034707302693277597, -0.011548814363777637, -0.005473694298416376, -0.025202620774507523, -0.011892486363649368, -0.008785118348896503, 0.027221694588661194, 0.0016610817983746529, -0.0026276595890522003, -0.004023827612400055, 0.028166793286800385, 0.01476358063519001, -0.005498753394931555, 0.018844686448574066, 0.0005687593948096037, 0.020491449162364006, -0.016653776168823242, -0.013897240161895752, -0.007897298783063889, 0.030901849269866943, -0.01609531044960022, 0.01602371223270893, -0.02769424393773079, 0.004886587616056204, -0.0006394627853296697, 0.008742159232497215, 0.002024443354457617, 0.0018812468042597175, -0.007768421433866024, -0.011692010797560215, 0.0003432246157899499, -0.01038892101496458, 0.008190851658582687, -0.0015286249108612537, -0.00412048539146781, 0.004890167620033026, -0.015193170867860317, -0.0044641573913395405, -0.00014274922432377934, 0.010618035681545734, 0.0075751058757305145, -0.009780335240066051, 0.001031016348861158, -0.011104905046522617, 0.06357933580875397, -0.009909212589263916, 0.023613136261701584, 0.013918720185756683, -0.003243405371904373, -0.025560611858963966, -0.017011769115924835, 0.008627601899206638, 0.009229027666151524, 0.0003058592265006155, 0.008792277425527573, -0.007646704092621803, 0.00592476362362504, -0.009271986782550812, -0.022410284727811813, -0.011391297914087772, 0.01729816198348999, -0.008505884557962418, 0.01559412106871605, 0.02667754702270031, 0.02179453894495964, 0.0023681155871599913, -0.025059424340724945, -0.0093435849994421, 0.0009880572324618697, 0.027135776355862617, -0.023985449224710464, -0.015765957534313202, 0.010911589488387108, 0.01672537624835968, -0.010052409023046494, 0.009164589457213879, 0.0040524667128920555, 0.006476071197539568, 0.015694359317421913, 0.007904457859694958, -0.0018543973565101624, 0.016839932650327682, 0.0042386227287352085, -0.0029068931471556425, 0.00858464278280735, -0.007811380550265312, 0.017785031348466873, 0.02958443947136402, -0.025374457240104675, 0.003766073379665613, -0.0022463982459157705, 0.0038090324960649014, -0.014563105069100857, -0.007381790317595005, -0.012336396612226963, -0.025259898975491524, 1.0348199793952517e-05, 0.02255348116159439, 0.00467179249972105, -0.0042135631665587425, -0.0044390978291630745, -0.005724288523197174, 0.009844773449003696, 0.0070058987475931644, -0.016811292618513107, 0.01046051923185587, -0.01646762154996395, -0.02546037547290325, -0.011419937014579773, -0.0063042351976037025, -0.020133456215262413, -0.0054593742825090885, -0.009450982324779034, -0.016052350401878357, -0.019589310511946678, 0.0037875529378652573, 0.0027815960347652435, -0.033994898200035095, -0.018343498930335045, 0.005684909410774708, -0.007517827209085226, 0.04063922539353371, 0.021121514961123466, 0.01691153086721897, -0.0006640747305937111, -0.004485636949539185, -0.021522464230656624, -0.01976114511489868, 0.0081765316426754, -0.0021318409126251936, 0.0076896632090210915, -0.014992695301771164, 0.0067159254103899, -0.02946988306939602, -0.013424691744148731, -0.006490390747785568, 0.001809648354537785, 0.016711056232452393, 0.007256492972373962, 0.013102498836815357, 0.012651429511606693, -0.022037973627448082, 0.018143022432923317, 0.010088208131492138, 0.005613310728222132, 0.015365006402134895, -0.009916371665894985, 0.010660994797945023, 0.013231376186013222, -0.010890109464526176, 0.014018957503139973, 0.02153678424656391, -0.014076236635446548, 0.007832859642803669, -0.009708737023174763, -0.021808858960866928, 0.00950826145708561, -0.004503536503762007, -0.028682300820946693, -0.015193170867860317, 0.01851533353328705, -0.003592447377741337, -0.01901652291417122, -0.006572728976607323, -0.008405646309256554, 0.0050118849612772465, -0.00776126142591238, -0.023870890960097313, -0.0055739316157996655, 0.007353150751441717, -0.017498638480901718, -0.009243347682058811, 0.005280378740280867, 0.0005924763972871006, 0.021379267796874046, -0.0034116616006940603, 0.02299739047884941, -0.013703924603760242, 0.006375833414494991, -0.00965861789882183, 0.002982071368023753, -0.016639458015561104, 0.026391152292490005, -0.031531915068626404, 0.02421456389129162, -0.007102556526660919, 0.013102498836815357, 0.009680096991360188, -0.009200388565659523, -0.03067273460328579, 0.0061431387439370155, -0.021708620712161064, 0.019030842930078506, -0.010639515705406666, 0.04390411078929901, -0.011806568130850792, -0.010646674782037735, -0.01394019927829504, -0.007668183650821447, -0.01004524901509285, -0.02066328562796116, 0.01396883837878704, -0.022138211876153946, -0.00565626984462142, 0.004034567158669233, 0.008670561015605927, -0.026477070525288582, -0.008090614341199398, -0.008398487232625484, 0.012873384170234203, 0.019975941628217697, 0.014749260619282722, -0.00650829030200839, -0.013446170836687088, -0.012744506821036339, -0.008133573457598686, 0.020133456215262413, -0.013861441053450108, -0.025632210075855255, -0.006601368077099323, 0.02336970344185829, 0.010260043665766716, -0.01767047308385372, 0.027909038588404655, 0.00826960988342762, -0.005359136965125799, 0.020319612696766853, 0.006476071197539568, -0.019617948681116104, -0.002862144261598587, 0.03806168586015701, -0.025231260806322098, 0.015637081116437912, 0.028238391503691673, -0.009579859673976898, 0.014298191294074059, 0.006705185864120722, -0.010295843705534935, -0.01308817882090807, 0.0027994955889880657, 0.02756536565721035, 0.02623363770544529, 0.01172780990600586, -0.013260015286505222, -0.012200359255075455, 0.0025327918119728565, -0.004209983162581921, 0.014964056201279163, -0.014677662402391434, 0.007059597875922918, -0.0039164298214018345, -0.022166850045323372, -0.007134776096791029, 0.007668183650821447, -0.010274363681674004, -0.03199014440178871, 0.008942634798586369, 0.003766073379665613, -0.007675343658775091, -0.003791132941842079, -0.0034492507111281157, 0.012651429511606693, -0.008956953883171082, 0.005727868527173996, 0.002330526476725936, -0.011770769022405148, -0.0033150038216263056, -0.008226650767028332, -0.0023788553662598133, 0.006064380519092083, 0.019102441146969795, 0.007997536100447178, 0.01099034771323204, 0.0010077467886731029, 0.007489187642931938, -0.0025095222517848015, -0.003615716937929392, 0.0020172835793346167, 0.007324511650949717, 0.02623363770544529, 0.008434286341071129, -0.012322076596319675, 0.02331242337822914, -0.011713490821421146, -0.03829079866409302, 0.0035029493737965822, 0.0007141935639083385, -0.01245095394551754, 0.001336204237304628, -0.013639486394822598, -0.009479622356593609, 0.002045922912657261, 0.01578027755022049, -2.5506913516437635e-05, -0.0038985302671790123, 0.007446228992193937, -0.027665603905916214, -0.00030742542003281415, 0.007202794309705496, -0.0008224860648624599, -0.016940170899033546, -0.008720679208636284, -0.011004666797816753, -0.02743648923933506, 0.0028907835949212313, 0.0022446084767580032, -0.0157086793333292, -0.0023018871434032917, 0.0030500898137688637, 0.026462752372026443, -0.05117850378155708, 0.023527219891548157, -0.01374688372015953, 0.009501101449131966, 0.0012753456830978394, -0.012758826836943626, 0.013388891704380512, 0.013560728169977665, 0.004249362275004387, -0.014119195751845837, 0.003214766038581729, -0.001090979902073741, -0.013324453495442867, 0.011563134379684925, -0.000580841617193073, 0.0010149066802114248, 0.01698312908411026, -0.022854194045066833, 0.00031659897649660707, -0.020992636680603027, 0.01925995759665966, -0.0021640602499246597, 0.004009507596492767, 0.00909299124032259, 0.006250536069273949, 0.001029226346872747, -0.0020047537982463837, -0.012379355728626251, 0.003884210716933012, 0.025202620774507523, 0.019417474046349525, -0.006472491193562746, -0.00013055512681603432, -0.008405646309256554, -0.0017416299087926745, -0.014341150410473347, -0.00565626984462142, -0.00544863473623991, 0.01894492469727993, 0.026247955858707428, 0.01887332648038864, 0.010746913030743599, -0.004116905387490988, 0.025317177176475525, 0.0044892169535160065, -0.011047625914216042, 0.004127644933760166, -0.01729816198348999, -0.006905661430209875, -0.00824097078293562, 0.002446873812004924, 0.02515966072678566, -0.01419795397669077, 0.0016181227983906865, 0.004743390716612339, 5.5041233281372115e-05, 0.02034825272858143, -0.0013254645746201277, 0.024300482124090195, -0.00440329872071743, 0.011162183247506618, 0.007360310759395361, -0.00680900365114212, -0.025202620774507523, 0.006375833414494991, 0.022224128246307373, -0.019603628665208817, -0.009236187674105167, -0.0033239535987377167, 0.013682445511221886, 0.0005007410072721541, 0.0012476013507694006, -0.013682445511221886, 0.004628833383321762, -0.002332316478714347, -0.007195634767413139, -0.0055094934068620205, 0.005513073410838842, -0.015221809968352318, 0.015450924634933472, 0.013954519294202328, -0.019603628665208817, -0.012744506821036339, -0.007560786325484514, -0.007381790317595005, 0.008606121875345707, 0.021637022495269775, 0.009479622356593609, -0.03224789723753929, 0.003467150265350938, 0.03009994886815548, 0.036286044865846634, 0.007041698321700096, -0.001237756572663784, 0.017756391316652298, 0.010882949456572533, -0.006100179627537727, -0.006769624538719654, 0.02040553092956543, -0.00021188637765590101, -0.010030928999185562, 0.013653806410729885, -0.03015722706913948, 0.013632326386868954, 0.00919322855770588, -0.032161980867385864, -0.005473694298416376, 0.007990376092493534, -0.003970128949731588, 0.014248072169721127, -0.026691867038607597, -0.007252913434058428, -0.029255086556077003, -0.00091645895736292, 0.024601195007562637, 0.0064187925308942795, -0.009787495248019695, -0.01001660991460085, -0.022381644695997238, 0.011885326355695724, 0.01838645711541176, 0.010317322798073292, 0.014505826868116856, -0.009780335240066051, 0.010625195689499378, 0.00048239389434456825, 0.015880515798926353, -0.0018776668002828956, -0.008069134317338467, 0.02345561981201172, -0.007338831201195717, 0.001167053123936057, 0.008677720092236996, -0.0026974680367857218, -0.02432912029325962, 0.014312511309981346, 0.014706301502883434, -0.006103759631514549, -0.019532030448317528, -0.012973621487617493, -0.0014051176840439439, 0.01824326068162918, 0.03345075249671936, -0.007847179658710957, 0.000244105642195791, 0.0044641573913395405, -0.026577308773994446, -0.004084686283022165, 0.010496318340301514, -0.016524899750947952, -0.005788726732134819, 0.0001376030850224197, 0.008119253441691399, 0.010195605456829071, 0.008033335208892822, -0.00349220959469676, 0.011577453464269638, -0.01058223657310009, 0.015450924634933472, -0.008964113891124725, 0.041469767689704895, 0.010217085480690002, 0.002484462922438979, 0.004900907166302204, 0.010081048123538494, -0.03840535879135132, -0.03453904762864113, -0.002332316478714347, -0.018973562866449356, -0.011878167279064655, 0.026505710557103157, -0.003948649391531944, 0.002591860480606556, 0.000981792458333075, 0.007754101883620024, -0.014362629503011703, -0.010260043665766716, 0.0022839875891804695, 0.02603316120803356, -8.765204984229058e-05, -0.007381790317595005, 0.0104819992557168, -0.022095251828432083, -0.01799982599914074, -0.01767047308385372, 0.020047539845108986, -0.026190677657723427, 0.010424720123410225, -0.011412777937948704, 0.005419995170086622, 0.007632384542375803, -0.020548727363348007, 0.008913994766771793, -0.014233753085136414, 0.0017863789107650518, -0.0030411400366574526, -0.0062576960772275925, 0.0005070058396086097, -0.01831485889852047, 0.018529653549194336, 0.017126325517892838, 0.004299480933696032, -0.02508806250989437, 0.01023856457322836, -0.013073859736323357, 0.01761319488286972, 0.023598818108439445, 0.014906777068972588, 0.002049502916634083, 0.0238279327750206, -0.004578714724630117, 0.00022229051683098078, -0.012887703254818916, -0.004567975178360939, -0.016625137999653816, -0.0071920547634363174, -0.0033901820424944162, -0.005330497398972511, 0.0329352430999279, -0.011555974371731281, 0.004270841833204031, 0.01583755575120449, 0.01875876821577549, 0.006637167185544968, 0.031216882169246674, 0.0357418991625309, 0.01067531481385231, -0.018028466030955315, -0.002285777358338237, -0.00598562229424715, 0.021178793162107468, 0.0093149458989501, -0.0038269320502877235, -0.015665719285607338, 0.009021393023431301, 0.008155052550137043, 0.0020423431415110826, -0.013317293487489223, 0.02586132474243641, -0.0008135362877510488, 0.006025001406669617, 0.02192341536283493, 0.006465331185609102, -0.015193170867860317, -0.006354353856295347, 0.00031682272674515843, -0.029813554137945175, 0.012486753053963184, 0.014691982418298721, 0.016109630465507507, -0.0014749261317774653, -0.0014310721307992935, 0.003977288492023945, 0.006128819193691015, 0.008849556557834148, -0.02541741542518139, 0.007360310759395361, 0.01086863037198782, 0.01159893348813057, -0.0015008804621174932, 0.009651457890868187, -0.006425952073186636, -0.004814989399164915, -0.00040274072671309114, 0.005527392961084843, 0.008892515674233437, -0.0015438394621014595, -0.012071482837200165, 0.004653892945498228, 0.01963226869702339, 0.0038233520463109016, -0.0061180791817605495, 0.02421456389129162, -0.029498521238565445, 0.032792046666145325, 0.011813728138804436, -0.016252826899290085, -0.022596441209316254, 0.0030590395908802748, -0.010696793906390667, 0.0043030609376728535, 0.008090614341199398, 0.0007397005101665854, 0.002049502916634083, -0.011355498805642128, 0.01004524901509285, 0.010066728107631207, 0.01983274333178997, 0.007832859642803669, -0.03296388313174248, 0.030558178201317787, 0.0026706187054514885, 0.0005020834505558014, 0.012995101511478424, 0.0044390978291630745, 0.004009507596492767, -0.0178136695176363, -0.009107310324907303, -0.031846947968006134, 0.005545292515307665, 0.005276798736304045, -0.008434286341071129, 0.00861328188329935, 0.01434831041842699, -0.012816105037927628, -0.012121601030230522, 0.0025113122537732124, -0.004392559174448252, -0.003945069387555122, -0.018715810030698776, -0.024314800277352333, -0.018586931750178337, 0.020119138062000275, 0.00217837980017066, 0.004775610286742449, -0.01602371223270893, -0.022166850045323372, 0.006404472980648279, 0.001493720686994493, 0.002831714926287532, 0.0010847150115296245, 9.749682067194954e-05, 0.043245404958724976, -0.01653921976685524, 0.0209639985114336, -0.017584554851055145, -0.01838645711541176, -0.003476100042462349, 0.011391297914087772, -0.001952845137566328, 0.0021032015793025494, -0.006869861856102943, -0.028209751471877098, -0.026763465255498886, -0.014126354828476906, 0.014434227719902992, 0.018143022432923317, 0.0013200946850702167, 0.0029176329262554646, 0.007460548542439938, -0.008921154774725437, -0.0018973563564941287, -0.0069414605386555195, 0.01454878505319357, 0.012121601030230522, -0.029083251953125, 0.01661081798374653, -0.015479563735425472, 0.020749203860759735, -0.013009420596063137, 0.013295814394950867, -0.0238852109760046, 0.007718302309513092, 0.01023856457322836, 0.010976027697324753, 0.002443293808028102, 0.01023856457322836, 0.006050060968846083, -0.020262334495782852, -0.02090671844780445, 0.012887703254818916, -0.001985064474865794, 0.024357760325074196, -0.00950826145708561, -0.0008972168434411287, 0.020835120230913162, -0.0026670387014746666, -0.021150153130292892, 0.012873384170234203, -0.021307669579982758, -0.00025820155860856175, 0.003383022267371416, -0.0108041912317276, -0.005405675619840622, -0.005838845856487751, -0.004886587616056204, -0.013381732627749443, 0.006561988964676857, 0.011577453464269638, -0.021637022495269775, 0.012844745069742203, 0.00518014095723629, 0.016897210851311684, 0.002330526476725936, -0.017527276650071144, 0.02725033275783062, 0.001430177129805088, 0.010732593014836311, 0.014269552193582058, -0.0031825469341129065, -0.0028979433700442314, -0.014240912161767483, 0.04155568405985832, -0.0032988940365612507, -0.03611420840024948, -0.022095251828432083, -0.009980810806155205, 0.015007015317678452, -0.011842368170619011, -0.012808945961296558, -0.008563162758946419, 0.011935445480048656, -0.012193199247121811, 0.0022893573623150587, -0.006332874298095703, -0.00826960988342762, -0.010195605456829071, 0.016123948618769646, -0.00043697369983419776, 0.02362745627760887, -0.006236216519027948, -0.02503078430891037, 0.03041497990489006, -0.02527421899139881, 0.004156284499913454, -0.019159719347953796, 0.021780218929052353, -0.016897210851311684, -1.3361763194552623e-05, 0.008921154774725437, 0.023026030510663986, -0.02909757010638714, -0.006851962301880121, 0.0069414605386555195, -0.007184894755482674, -0.0006005311734043062, -0.02780880033969879, -0.018200300633907318, -0.002194489585235715, 0.009014233015477657, -0.0052409996278584, -0.00950826145708561, -0.006601368077099323, -0.01109058503061533, -0.03173239156603813, -0.006035741418600082, -0.0038054524920880795, -0.0005096907843835652, -0.0011643682373687625, -0.02375633455812931, -0.0018418676918372512, 0.012529712170362473, 0.001110669458284974, -0.0026401893701404333, 0.03325027599930763, -0.022395964711904526, 0.009479622356593609, 0.00960133969783783, 0.010381761007010937, -0.030185865238308907, -0.014018957503139973, 0.009558380581438541, 0.0041670240461826324, -0.027651283890008926, 0.001613647909834981, -0.0023913849145174026, -0.015894833952188492, 0.002982071368023753, -0.008455765433609486, -0.03920725733041763, -0.00697009963914752, 0.021178793162107468, -0.010625195689499378, -0.007453388534486294, 0.04247214272618294, -0.011054785922169685, 0.00962997879832983, 0.022395964711904526, 0.012200359255075455, -0.006662226747721434, 0.01559412106871605, 0.005584671627730131, 0.01109058503061533, 0.01894492469727993, 0.00014521040429826826, -0.016267146915197372, -0.00021546629432123154, -0.01473494153469801, 0.009386544115841389, -0.019489072263240814, -0.0013800582382827997, 0.015007015317678452, -0.0034170313738286495, 0.015995072200894356, -0.017699113115668297, 0.00023314214195124805, 0.013489129953086376, -0.007925937883555889, -0.0036944751627743244, 0.014054756611585617, 0.004557235166430473, -0.0010354912374168634, 0.009558380581438541, 0.004249362275004387, 0.022524842992424965, 0.010861470364034176, 0.004360339604318142, -0.016066670417785645, 0.005838845856487751, 0.005663429852575064, -0.00018212830764241517, -0.0025327918119728565, 0.004245782271027565, 0.0448492094874382, 0.010789872147142887, 0.012916343286633492, -0.015952114015817642, -0.024443678557872772, -0.00033024742151610553, 0.0020262333564460278, -0.012758826836943626, -0.002065612468868494, -0.0034098715987056494, 0.014126354828476906, 0.0016870362451300025, -0.0010712903458625078, -0.02021937444806099, 0.006093020085245371, 0.01416215393692255, -0.006991579197347164, 0.001553684240207076, 0.007718302309513092, 0.005674169398844242, -0.004410458728671074, 0.012909183278679848, -0.004245782271027565, -0.00388063071295619, -0.011004666797816753, 0.00995217077434063, 0.012629949487745762, 0.011756449937820435, -0.026004521176218987, -0.012515392154455185, -0.014090555720031261, 0.007149095647037029, -0.020634645596146584, -0.016940170899033546, -0.015808915719389915, -0.027150096371769905, 0.0052123600617051125, -0.0015688989078626037, 0.003123478265479207, 0.0048758480697870255, -0.024930546060204506, 0.006519030313938856, -0.008992752991616726, -0.011842368170619011, -0.006064380519092083, 0.0067553045228123665, 0.00836268812417984, 0.002053082687780261, -0.008326888084411621, -0.00849156454205513, 0.011169343255460262, -0.013761203736066818, -0.001933155581355095, 0.035398226231336594, -0.008813757449388504, -0.005738608073443174, 0.013195576146245003, -0.008341208100318909, 0.0003058592265006155, -0.0006264856201596558, -0.002557851141318679, -0.016653776168823242, -0.0008381482330150902, -0.0031521175988018513, -0.01165621168911457, 0.015579801984131336, -0.025947242975234985, -0.008985592983663082, 0.0017792191356420517, 0.034309931099414825, 0.016754014417529106, 0.006429532077163458, -0.034825440496206284, -0.004829308949410915, 0.01748431846499443, 0.021078554913401604, -2.7996075004921295e-05, 0.013675285503268242, -0.002704627811908722, -0.025632210075855255, 0.0029910211451351643, 0.032219260931015015, 0.014319670386612415, 0.027866078540682793, 0.0012646059039980173, 0.001117829349823296, 0.004099005833268166, -0.006980839651077986, -0.023140588775277138, 0.020319612696766853, -0.0030286102555692196, 0.030271783471107483, 0.026219317689538002, 0.007618064992129803, -0.0018472375813871622, 0.015637081116437912, 0.019918661564588547, -0.01400463841855526, -0.0035602280404418707, 0.01842941716313362, -0.007661023642867804, -0.027006899937987328, -0.007374630309641361, -0.0046252538450062275, 0.0014382319059222937, -0.0074390689842402935, 0.0032648849301040173, 0.0017944336868822575, 0.004793509840965271, 0.004270841833204031, 0.013882921077311039, -0.013439010828733444, 0.004278001841157675, -0.0007383580086752772, -0.004811409395188093, -0.016940170899033546, -0.02838158793747425, 0.034309931099414825, 0.00549517385661602, -0.001363053685054183, 0.02883981727063656, -0.009357905015349388, 0.012350715696811676, 0.013954519294202328, -0.0023645355831831694, 0.012937822379171848, -0.008878195658326149, 0.010317322798073292, -0.00027050753124058247, 3.8204434531508014e-05, -0.005616890732198954, 0.006887761410325766, -0.024758711457252502, -0.012544031254947186, 0.0040524667128920555, 0.0037195344921201468, 0.02362745627760887, -0.035255029797554016, 0.005663429852575064, 0.008770798332989216, 0.01641034334897995, -0.02218117006123066, -0.01089726947247982, -0.00035933422623202205, 0.014835178852081299, -0.0031270580366253853, 0.014820858836174011, 0.012350715696811676, 0.011262421496212482, 0.0200332198292017, 0.0020960418041795492, -0.019975941628217697, -0.0009737376240082085, 0.006698025856167078, 0.006264856085181236, 0.024730071425437927, 0.017412720248103142, -0.006787524092942476, -0.012887703254818916, -0.01583755575120449, -0.004428358282893896, 0.03319299593567848, 0.006848382763564587, 0.010532117448747158, -0.014147834852337837, -0.007832859642803669, 0.007696823216974735, -0.007818540558218956, 0.003238035598769784, 0.009465302340686321, 0.0025113122537732124, 0.015164531767368317, -0.015565481968224049, -0.01444854773581028, -0.006726665422320366, -0.01381132286041975, 0.0019993840251117945, -0.014720621518790722, -0.03350802883505821, -0.015551162883639336, -0.00519446050748229, -0.010632355697453022, 0.017412720248103142, 0.01666809618473053, 0.018286218866705894, 0.004886587616056204, -0.004274421837180853, -0.02312626875936985, 0.0004078868660144508, -0.02084944024682045, -0.0030125007033348083, -0.01092590857297182, -0.006465331185609102, 0.02662026882171631, -0.027479447424411774, 0.015894833952188492, -0.01678265444934368, 0.008276769891381264, -0.02269667759537697, -0.016625137999653816, 0.002708207815885544, 0.020047539845108986, 0.018658531829714775, -0.01602371223270893, 0.003349012928083539, 0.011419937014579773, 0.007911617867648602, -0.03777529299259186, 0.021909095346927643, -0.018773088231682777, -0.00586390495300293, -0.017011769115924835, 0.006071540527045727, 0.006175357848405838, -0.02483030967414379, 0.02319786697626114, 0.004281581379473209, -0.004331700503826141, 0.012279117479920387, 0.011419937014579773, -0.013761203736066818, -0.010439040139317513, -0.018415097147226334, -0.004030987154692411, -0.007997536100447178, -0.011956925503909588, -0.008842396549880505, 0.005480853840708733, 0.00470401206985116, -0.00852020364254713, -0.010224244557321072, 0.010431880131363869, 0.02299739047884941, -0.00274758692830801, 0.0013845331268385053, 0.016711056232452393, -0.01705472730100155, 0.00676246453076601, -0.00087305239867419, -0.03591373562812805, 0.024386398494243622, 0.009587019681930542, -0.01225763838738203, -0.03654380142688751, -0.0041920836083590984, -0.03356530889868736, 0.018200300633907318, 0.012407994829118252, 0.013188417069613934, -0.007088236976414919, 0.014878137968480587, -0.002099621808156371, 0.02249620296061039, 0.015551162883639336, -0.0025614311452955008, 0.0009200388449244201, 0.005652689840644598, -0.00033114239340648055, -0.034567683935165405, -0.018329178914427757, -0.005022624507546425, -0.00567058939486742, 0.0060071018524467945, 0.0058460053987801075, -0.007281552534550428, 0.001680771354585886, 0.010059569031000137, -0.019059481099247932, 0.00690924096852541, -0.0010632355697453022, 0.0019707446917891502, -0.0003633616433944553, 0.006962940096855164, -0.004184923600405455, -0.0026276595890522003, -0.007482028100639582, -0.01137697882950306, 0.010646674782037735, -0.004199243616312742, 0.0036586758214980364, -0.014935416169464588, -0.02445799857378006, 0.0048257289454340935, -0.008563162758946419, 0.01441990863531828, 0.006934300530701876, 0.0017452099127694964, -0.0014427067944779992, 0.0006229056743904948, 0.025889964774250984, 0.0049868253991007805, 0.0075536263175308704, 0.021078554913401604, 0.022295726463198662, -0.034252651035785675, -0.0018490274669602513, 0.01172780990600586, -0.03319299593567848, -0.0011303590144962072, -0.0030536698177456856, 0.028940055519342422, -0.0034098715987056494, 0.01615258865058422, 0.007070337422192097, 0.011541654355823994, 0.008670561015605927, -0.008978433907032013, 0.006400892976671457, 0.01767047308385372, -0.020806482061743736, -0.008155052550137043, -0.00018604384968057275, -0.013682445511221886, 0.005280378740280867, -0.009615658782422543, 0.008470085449516773, -0.012121601030230522, 0.003615716937929392, -0.0066908663138747215, 0.005652689840644598, -0.00899991299957037, 0.007317351642996073, 0.004116905387490988, -0.012930662371218204, 0.007933097891509533, -0.011921125464141369, 0.00413480494171381, 0.004016667604446411, 0.019675226882100105, 0.002756536705419421, -0.01642466150224209, -0.019932981580495834, -0.0011258841259405017, -0.0034617804922163486, -0.012687228620052338, -0.002591860480606556, 0.011291060596704483, 0.0022607180289924145, -0.00013894555740989745, 0.011026146821677685, -0.008412806317210197, 0.007589425425976515, -0.016181228682398796, -0.0004779190057888627, -0.007417589426040649, 0.012436633929610252, -0.005559612065553665, -0.007446228992193937, -0.002590070478618145, 0.02484462969005108, 0.016510579735040665, -0.019059481099247932, 0.001619017799384892, -0.006107339635491371, -0.007510667201131582, -0.006221896968781948, -0.0008027965668588877, -0.01539364643394947, -0.009085831232368946, 0.019589310511946678, 0.019918661564588547, -0.009107310324907303, 0.006365093868225813, 0.0016038031317293644, 0.00774694187566638, -0.0031628573779016733, 0.024286162108182907, 0.015980752184987068, -0.005108542740345001, 0.020763522014021873, -0.021379267796874046, 0.023727694526314735, 0.002185539808124304, 0.013539249077439308, -0.018171662464737892, -0.009587019681930542, -0.0074390689842402935, 0.00037164019886404276, 0.0036729956045746803, -0.010088208131492138, -0.0009343585115857422, -0.02452959679067135, -0.020935358479619026, 0.01946043223142624, -0.008742159232497215, 0.01504997443407774, 0.016381703317165375, -0.012372195720672607, 0.0185726135969162, 0.00576366763561964, 0.020620325580239296, 0.0031485375948250294, -0.011541654355823994, -0.03496863692998886, 0.010381761007010937, -0.007875818759202957, 0.0035369587130844593, -0.004993985407054424, -0.003862731158733368, -0.0029588020406663418, -0.016181228682398796, -0.00204413291066885, -0.0067159254103899, 0.01894492469727993, -0.011885326355695724, 0.005914024077355862, 0.0032702547032386065, 0.016940170899033546, 0.0023878051433712244, -0.0068018436431884766, -0.02445799857378006, -0.015680039301514626, -0.01963226869702339, -0.010532117448747158, -0.002194489585235715, 0.013675285503268242, -0.007997536100447178, -0.01907380111515522, 0.007446228992193937, 0.010904429480433464, 0.010345961898565292, 0.01603803038597107, -0.004170604050159454, -0.026505710557103157, -0.003984448499977589, 0.021780218929052353, 0.013575048185884953, -0.017584554851055145, 0.011699170805513859, 0.0011258841259405017, 0.004038147162646055, -0.02135062962770462, 0.00752498721703887, 0.0020924618002027273, -0.0024236042518168688, -0.007696823216974735, 0.007102556526660919, 0.007446228992193937, 0.01315261796116829, 0.002579330699518323, 0.010417560115456581, -0.010596556589007378, 0.013560728169977665, -0.0020047537982463837, -0.002869304036721587, -0.007560786325484514, 0.019059481099247932, 0.02477302961051464, 0.011634732596576214, 0.00956553965806961, 0.01204284280538559, -0.007567945867776871, 0.019489072263240814, -0.0017595295794308186, -0.0020817220211029053, 0.006902081426233053, -0.004267261829227209, 0.004471317399293184, -0.001221646904014051, 0.01754159666597843, 0.010682474821805954, 0.015064293518662453, -0.006268436089158058, -0.019660908728837967, -0.0001193678835988976, 0.008262449875473976, -0.005051264073699713, 0.014326830394566059, 0.010109687224030495, 0.0008184586768038571, 0.0016234926879405975, -0.013904400169849396, 0.01976114511489868, -0.012221839278936386, -0.0052338396199047565, -0.010374601930379868, 0.002579330699518323, 0.0013460490154102445, -0.04132657125592232, -0.005570352077484131, -0.005881804972887039, 0.01641034334897995, -0.0054593742825090885, 0.014613224193453789, -0.0001188085152534768, 0.0011804779060184956, -0.003259515156969428, -0.02730761282145977, -0.003465360263362527, 0.008706360124051571, 0.012050002813339233, -0.00019577675266191363, -0.026663227006793022, 0.02021937444806099, 0.012565511278808117, -0.0054844338446855545, -0.01900220289826393, 0.027536727488040924, -0.03313571959733963, 0.02407136745750904, -0.013023740611970425, -0.009443823248147964, -0.0007316456758417189, 0.011555974371731281, -0.014835178852081299, 0.002736847149208188, -0.018615571781992912, 0.021307669579982758, 0.0009280936792492867, 0.0029355324804782867, 0.011112064123153687, -0.012902023270726204, -0.0027690662536770105, -0.016954490914940834, -0.012780305929481983, 0.009379384107887745, 0.0030447200406342745, 0.0431022085249424, 0.03104504570364952, 0.011663371697068214, -0.006465331185609102, 0.002317996695637703, -0.03923589736223221, 0.014598904177546501, -0.013739723712205887, -0.0004635993391275406, 0.0021407906897366047, 0.004854368511587381, 0.011620412580668926, 0.017699113115668297, 0.021808858960866928, -0.004818569403141737, 0.01774207130074501, -0.0034492507111281157, 0.015565481968224049, 0.014992695301771164, 0.003218346042558551, 0.0053483969531953335, -0.008548843674361706, -0.0043496000580489635, 0.004571554716676474, 0.020949678495526314, 0.011570294387638569, -0.004739811178296804, -0.002464773366227746, -0.013933039270341396, 0.010646674782037735, 0.019489072263240814, -0.009801814332604408, -0.016954490914940834, -0.006128819193691015, -0.015293408185243607, 0.017312481999397278, 0.011770769022405148, 0.008291088975965977, 0.0020262333564460278, 0.0011858476791530848, -0.0050763231702148914, -0.022195490077137947, 0.016396023333072662, -0.018959244713187218, -0.01425523217767477, 0.03496863692998886, 0.00361213693395257, 0.0038197722751647234, -0.004743390716612339, 0.006075120531022549, -0.00494028627872467, 0.015737317502498627, 0.019345875829458237, -0.014305351302027702, -0.012078641913831234, 0.009873412549495697, 0.016582177951931953, -0.026190677657723427, -0.012472433038055897, -0.014298191294074059, -0.0070058987475931644, 0.005498753394931555, 0.005964142736047506, 0.00960133969783783, -0.000843965623062104, 0.026462752372026443, 1.0313239727111068e-05, -0.0038018724881112576, 0.003588867373764515, -0.0018490274669602513, 0.01058223657310009, -0.021450866013765335, -0.005162241403013468, 0.0007414904539473355, -0.009766015224158764, -0.004245782271027565, -0.020362572744488716, -0.008541683666408062, -0.033622585237026215, 0.022668039426207542, -0.0004374212003313005, -0.0029230026993900537, 0.027794480323791504, 0.0025363715831190348, -0.015365006402134895, 0.002953432034701109, 0.014362629503011703, 0.014391269534826279, 0.00010896374442381784, 0.001054285792633891, -0.0267491452395916, 0.010847150348126888, -0.01933155581355095, -0.006490390747785568, 0.02060600556433201, -0.00010521601507207379, -0.006243376526981592, 0.008699200116097927, 0.004503536503762007, 0.02845318615436554, -0.0027762262616306543, 0.016882892698049545, -0.0048257289454340935, 0.014591744169592857, 0.005749347619712353, -0.029298046603798866, 0.007976057007908821, 0.0023931749165058136, 0.0024683531373739243, 0.020176416262984276, -0.005391356069594622, 0.0313027985394001, -0.006651487201452255, -0.00015595016884617507, -0.0007083762320689857, 0.016940170899033546, -0.005094222724437714, 0.005566772073507309, 0.021565424278378487, 0.020133456215262413, -0.0013039850164204836, 0.006740984972566366, 0.017827989533543587, -0.0016378123546019197, -0.002998181153088808, -0.030386341735720634, 0.013546408154070377, 0.026892341673374176, -0.007725462317466736, 0.0029140529222786427, 0.008749319240450859, -0.019088121131062508, -0.0022911473643034697, -0.00300892093218863, 0.003105578711256385, 0.006816163193434477, 0.02952716127038002, 0.0023949649184942245, 0.015350687317550182, -0.019403154030442238, -0.02064896561205387, 0.02662026882171631, 0.019617948681116104, -0.0252885390073061, 0.0004508458951022476, -0.009400864131748676, -0.011033305898308754, 0.011262421496212482, 0.006902081426233053, -0.004106165375560522, 0.02186613716185093, -0.006332874298095703, -0.004474896937608719, -0.004618093837052584, -0.003920009825378656, 0.01761319488286972, -0.018930604681372643, 0.031130963936448097, -0.0030482998117804527, -0.018801728263497353, 0.006461751647293568, 0.005817366298288107, 0.004249362275004387, 0.01729816198348999, 0.01298794150352478, -0.014677662402391434, -0.013217056170105934, -0.011477216146886349, -0.009178908541798592, -0.02212389186024666, 0.00023828826670069247, 0.0029283727053552866, 0.0009388334001414478, -0.001497300574555993, -0.002464773366227746, 0.004571554716676474, -0.001154523459263146, -0.016438981518149376, -0.016682416200637817, -0.007374630309641361, 0.031531915068626404, 0.0072135343216359615, 0.02458687499165535, 0.013954519294202328, 0.015980752184987068, -0.004446257837116718, 0.002454033587127924, 0.007582265883684158, 0.010560757480561733, 0.00871351920068264, 0.0010158016812056303, 0.009150269441306591, 0.0053734565153717995, -0.020505769178271294, -0.005083483178168535, -0.0011240941239520907, 0.0030321902595460415, 0.021307669579982758, -0.029756275936961174, -0.0061180791817605495, -0.008620441891252995, -0.004764870274811983, 0.016252826899290085, -0.004492796491831541], "5631ea16-89c4-4cd1-a971-2e1bd07dee2d": [-0.014892744831740856, 0.016432857140898705, -0.002091488568112254, 0.016298284754157066, -0.028275281190872192, -0.008844436146318913, -0.008665005676448345, 0.022967124357819557, -0.044887568801641464, 0.015131985768675804, 0.027766894549131393, 0.017718777060508728, -0.002478386042639613, 0.0028746286407113075, 0.007999616675078869, 0.013823636807501316, -0.049074284732341766, 0.0004439039621502161, -0.008298668079078197, -0.011027509346604347, 0.0717722624540329, 0.027587464079260826, -0.04539595544338226, 0.0504499189555645, 0.012276047840714455, -0.0139133520424366, -0.017195438966155052, 0.02115786448121071, -0.04796779528260231, 0.018017828464508057, 0.021083101630210876, 0.0029475223273038864, 0.023355890065431595, 0.01825707033276558, 0.029531296342611313, -0.04141857847571373, 0.006321192719042301, 0.022144732996821404, 0.01168542169034481, -0.012941435910761356, -0.005390395876020193, 0.006366050336509943, -0.005539921578019857, 0.00542403943836689, -0.04889485612511635, 0.0030316305346786976, 0.004186715465039015, -0.0014503977727144957, -0.009861210361123085, 0.010549027472734451, 0.02832013927400112, -0.038428064435720444, 0.002510160207748413, 0.032835811376571655, 0.02547915279865265, -0.0018531822133809328, 0.007551040034741163, 0.06543237715959549, -0.03235732764005661, -0.024955814704298973, 0.015274034813046455, -0.01872059889137745, -0.05018077418208122, -0.004751174245029688, -0.01510955672711134, -0.03047330677509308, 0.047818269580602646, 0.010272405110299587, -0.045425862073898315, 0.03140036389231682, 0.0029213554225862026, 0.029007956385612488, -0.013539538718760014, 0.014526407234370708, 0.0107882684096694, -0.0017429072177037597, 0.06363807618618011, -0.006052046548575163, 0.01967756263911724, 0.002328860340639949, -0.00250642211176455, 0.0208139568567276, 0.027138886973261833, -0.013352631591260433, 0.06878175586462021, -0.004938081372529268, -0.03445068746805191, -0.031490080058574677, -0.009412633255124092, -0.013614301569759846, 0.022563405334949493, 0.0013989984290674329, 0.004104476422071457, 0.017868302762508392, -0.009435062296688557, 0.03187884762883186, 0.0029007955454289913, 0.008179047144949436, 0.0037344004958868027, -0.007225822191685438, -0.029217291623353958, 0.0327460952103138, -0.030772358179092407, 0.022593310102820396, 0.012231189757585526, -0.010377072729170322, 0.019498132169246674, -0.005222179926931858, -0.0405513271689415, 0.03756081685423851, -0.004231573082506657, -0.054576825350522995, 0.002278395462781191, 0.009861210361123085, -0.05119754746556282, -0.032506853342056274, -0.005891306791454554, -0.009756541810929775, 0.007289370521903038, -0.026301544159650803, 0.009390204213559628, 0.025942683219909668, 0.020170995965600014, -0.03319467231631279, -0.023939039558172226, 0.02597258798778057, -0.00555113609880209, -0.03830844536423683, 0.006795936264097691, -0.0006266055279411376, -0.011976996436715126, 0.007210869342088699, 0.004459599498659372, 0.031041502952575684, -0.019617751240730286, 0.0158646609634161, 0.029785489663481712, 0.026914598420262337, -0.047608934342861176, 0.03717205300927162, -0.033134862780570984, -0.05430768057703972, -0.03184894099831581, 0.014219880104064941, 0.011206939816474915, -0.009188344702124596, -0.04408013075590134, 0.06405674666166306, 0.008470621891319752, 0.03516840934753418, -0.03403201326727867, -0.05006115511059761, -0.005581040866672993, -0.02090367116034031, 0.022503595799207687, -0.00805942714214325, -0.03295543044805527, 0.0014485287247225642, 0.02492590807378292, 0.01867574080824852, 0.0025624940171837807, -0.06232224777340889, -0.00491939065977931, 0.04659216105937958, 0.05720847472548485, 0.010646219365298748, 0.010922841727733612, 0.03337410092353821, -0.05149659886956215, 0.03166951239109039, 0.025538964197039604, -0.028170613572001457, 0.01653752475976944, -0.03012939728796482, -0.01834678463637829, -0.021561583504080772, 0.026750121265649796, 0.03899626433849335, 0.015924470499157906, -0.039504650980234146, -0.002467171521857381, -0.019408416002988815, 0.00376056763343513, 0.008104284293949604, 0.0260174460709095, 0.016761813312768936, 0.008081856183707714, 0.011707850731909275, 0.030772358179092407, 0.008433240465819836, -0.018331831321120262, 0.02513524517416954, -0.013711492531001568, 0.031041502952575684, -0.01309096161276102, -0.008889294229447842, 0.0058539253659546375, -0.02269797772169113, -0.02773698978126049, 0.002269050106406212, 0.009801399894058704, -0.05939154699444771, -0.02669030986726284, 0.013689064420759678, -0.040013037621974945, -0.01525160577148199, -0.04037189856171608, -0.0697387158870697, 0.02337084338068962, -0.02051490545272827, 0.039265409111976624, -0.03403201326727867, 0.020081281661987305, 0.002715757815167308, -0.006321192719042301, 0.0029493914917111397, -0.019856993108987808, 0.028125755488872528, 0.009935972280800343, -0.04390070214867592, -0.021561583504080772, -0.013935781084001064, 0.024417521432042122, -0.00973411276936531, -0.056221604347229004, -0.006081951782107353, 0.0051399408839643, 0.013016198761761189, -0.01762906275689602, -0.001316759386099875, 0.026824884116649628, 0.014399310573935509, -0.03486935794353485, -0.03717205300927162, -0.02383437193930149, 0.014788076281547546, 0.018122496083378792, -0.001452266937121749, 0.016851529479026794, -0.021681204438209534, 0.02529972232878208, 0.022294258698821068, 0.019842039793729782, 0.005244608502835035, 0.006115594878792763, 0.03140036389231682, 0.029740631580352783, 0.028215471655130386, 0.020784052088856697, -0.02266807295382023, -0.012246142141520977, 0.006216524634510279, -0.0008424830157309771, -0.03163960576057434, -0.035228218883275986, 0.030458353459835052, 0.005498801823705435, -0.012268571183085442, 0.014451644383370876, -0.04461842402815819, 0.022189591079950333, 0.015475894324481487, 0.01904955506324768, 0.00043455863487906754, 0.04506700113415718, -0.01800287514925003, 0.04180734232068062, -0.034480590373277664, -0.01313581969588995, 0.03965417668223381, -0.010795744135975838, 0.0010083629749715328, 0.012283523567020893, 0.014085306786000729, -0.030622832477092743, -0.004115690942853689, 0.030652737244963646, -0.010444359853863716, -0.0027138886507600546, -0.018391642719507217, -0.03893645107746124, -0.017045913264155388, 0.027542605996131897, 0.018959838896989822, -0.025942683219909668, -0.0034988978877663612, -0.021980255842208862, -0.019632704555988312, -0.058105628937482834, -0.024537142366170883, 0.005603469908237457, 0.0478481762111187, 0.020470047369599342, 0.00894162803888321, -0.007872520014643669, 0.015161890536546707, 0.002463433425873518, -0.011932138353586197, -0.021755967289209366, 0.02529972232878208, -0.04384089261293411, -0.015326368622481823, -0.005072654224932194, -0.022264353930950165, 0.03507869318127632, -0.0019643919076770544, 0.04928361997008324, 0.0013588133733719587, -0.042704496532678604, 0.032626476138830185, 0.013225534930825233, -0.034331064671278, -0.005562350619584322, 0.018615931272506714, 0.0028933193534612656, 0.021217675879597664, 0.02358017861843109, -0.002076535951346159, -0.026406211778521538, -0.009031343273818493, 0.025793157517910004, 0.02984529919922352, -0.05230403691530228, 0.022398926317691803, 0.01206671167165041, -0.06423617899417877, 0.015879612416028976, -0.016896387562155724, -0.010496693663299084, -0.03576651215553284, -0.019871944561600685, 0.0013438608730211854, -0.05735800042748451, 0.00889676995575428, -0.005622160620987415, -0.03110131435096264, -0.021038245409727097, -0.05149659886956215, -0.008104284293949604, -0.05448710918426514, -0.012238666415214539, -0.012971341609954834, -0.01670200377702713, -0.013554491102695465, 0.03352362662553787, -0.0028297710232436657, -0.01960279978811741, 0.011819995008409023, 0.0047736032865941525, 0.01674686186015606, 0.0008667809306643903, 0.008799578063189983, 0.050808779895305634, 0.022563405334949493, 0.03986351191997528, -0.04931352660059929, 0.015401131473481655, -0.017180485650897026, -0.015311416238546371, 0.009980830363929272, -0.010436883196234703, -0.022638168185949326, -0.001105554518289864, -0.025404389947652817, 0.0045343623496592045, -0.014257260598242283, -0.009188344702124596, -0.020963482558727264, -0.02060461975634098, -0.012410620227456093, -0.01401802059262991, -0.0022765265312045813, 0.04025227949023247, -0.008448193781077862, -0.005521230865269899, -0.03714214637875557, 0.03477964177727699, -0.011334036476910114, -0.032237708568573, 0.01206671167165041, -0.012717148289084435, 0.013360107317566872, 0.017763635143637657, 0.023355890065431595, 0.019333653151988983, 0.0203055702149868, -0.016941243782639503, -0.004661459010094404, 0.01454135961830616, 0.0031792870722711086, -0.049792006611824036, 0.04716035723686218, -0.05128726363182068, -0.021711109206080437, -0.03788977488875389, -0.010190166532993317, -0.0018513131653890014, 0.022144732996821404, 0.003977379761636257, -0.010840602219104767, 0.0022952172439545393, 0.01830192655324936, 0.01110227219760418, 0.01595437526702881, 0.016806671395897865, -0.026421165093779564, -0.014429215341806412, -0.009816352277994156, 0.011872328817844391, 0.03265637904405594, 0.006825841497629881, -0.006623981986194849, -0.0008817334892228246, -0.010691076517105103, 0.01628333143889904, -0.01309096161276102, -0.01110227219760418, 0.023475510999560356, -0.035228218883275986, -0.04512681066989899, 0.0546366348862648, 0.04982191324234009, -0.0036372090689837933, 0.00473248353227973, 0.0032839549239724874, 0.01888507604598999, 0.043960511684417725, 0.011154606007039547, -0.01506469864398241, -0.028379948809742928, 0.008807054720818996, 0.052393753081560135, 0.0010980782099068165, -0.01124432124197483, 0.00780523382127285, -0.041478388011455536, 0.009285536594688892, 0.02736317552626133, 0.011819995008409023, -0.01339001301676035, 0.012477907352149487, 0.006680053658783436, 0.011064890772104263, 0.023610083386301994, -0.028230423107743263, -0.03681318834424019, -0.0613652840256691, 0.010982651263475418, 0.02589782513678074, -0.0011410668957978487, 0.01942336931824684, 0.034181538969278336, -0.03364324942231178, -0.0066202436573803425, -0.0056969234719872475, -0.010840602219104767, 0.015199271962046623, -0.020036423578858376, 0.02094852924346924, -0.07356657087802887, -0.0369328111410141, -0.0003156390739604831, 0.02085881307721138, 0.00022276969684753567, 0.019228985533118248, -0.008134189993143082, -0.002422313904389739, 0.006410907953977585, 0.01573008857667446, 0.021711109206080437, 0.018526215106248856, -0.005726828705519438, 0.0380093939602375, 0.028095850721001625, -0.01700105518102646, -0.014294642023742199, -0.00178589578717947, 0.03403201326727867, -0.003581136930733919, -0.006504361517727375, -0.004287645220756531, -0.030772358179092407, -0.009121058508753777, 0.0213223434984684, 0.019752325490117073, -0.01960279978811741, 0.010713505558669567, -0.037321578711271286, 0.00555113609880209, 0.027512701228260994, 0.0164029523730278, -0.01816735416650772, 0.03080226294696331, 0.029172435402870178, 0.02643611654639244, 0.003248442430049181, -0.00912853516638279, -0.016881434246897697, -0.008919198997318745, -0.035527270287275314, 0.011356465518474579, -0.04742950573563576, 0.011902233585715294, 0.020589668303728104, -0.013195629231631756, -0.004627815913408995, 0.0027381866239011288, 0.03289562091231346, 0.011805041693150997, -0.025882871821522713, -0.016388000920414925, -0.010735934600234032, -0.03914579004049301, 0.027183745056390762, 0.0046539828181266785, -0.0025494105648249388, -0.017823444679379463, -0.013606824912130833, 0.006523052230477333, 0.0063996934331953526, 0.0035325409844517708, -0.013771302998065948, -0.01700105518102646, -0.00020910213061142713, 0.013083485886454582, -0.014010543935000896, -0.012477907352149487, -0.01256762258708477, -0.03582632169127464, -0.032297518104314804, -0.004325026646256447, 0.016298284754157066, -0.02195035107433796, 0.003868973581120372, 0.016223521903157234, 0.021591488271951675, -0.007360395044088364, 0.01904955506324768, 0.006351097486913204, 0.04369136691093445, -0.0400429405272007, 0.03005463443696499, -0.02849956974387169, -0.03492916747927666, 0.002439135452732444, 0.012246142141520977, 0.012343334034085274, 0.025314675644040108, -0.026765072718262672, 0.0043138121254742146, -0.02094852924346924, -0.03307504951953888, 0.00577168632298708, -0.0019550465513020754, 0.0006373526412062347, -0.036454327404499054, 0.013173201121389866, 0.007722994778305292, -0.016986101865768433, -0.026570690795779228, -0.004915652330964804, -0.006728649605065584, 0.004048404283821583, 0.008552861399948597, 0.006280072964727879, -0.0031176076736301184, -0.012829291634261608, -0.0014597431290894747, -0.0161188542842865, 0.01523665338754654, 0.01598428189754486, -0.016806671395897865, 0.025673536583781242, 0.019378511235117912, -0.010571456514298916, 0.006582862231880426, 0.009756541810929775, 0.02009623311460018, 0.007382824085652828, -4.15575887018349e-05, 0.0328059047460556, -0.030039682984352112, 0.002583053894340992, -0.0011448049917817116, 0.008605195209383965, 0.006874436978250742, -0.04082047566771507, -0.011012556962668896, 0.002248490462079644, 0.021382153034210205, -0.0025662321131676435, 0.027123933658003807, -0.04195686802268028, 0.023983897641301155, -0.008051950484514236, 0.027213649824261665, -0.004620339255779982, 0.001981213456019759, 0.01644781045615673, -0.0055586122907698154, 0.014683408662676811, 0.033762868493795395, 0.014862839132547379, -0.005681970622390509, -0.014758171513676643, 0.03047330677509308, -0.013307773508131504, 0.019692514091730118, 0.005588517524302006, 0.021845683455467224, 0.0038072941824793816, 0.014317071065306664, 0.0067024827003479, -0.029949966818094254, 0.023864276707172394, 0.0028297710232436657, 0.0031905013602226973, 0.026002492755651474, 0.006780983414500952, -0.0060034506022930145, 0.015416083857417107, -0.004971724469214678, 0.040431708097457886, -0.02471657283604145, 0.006283811293542385, -0.00977897085249424, 0.0014737611636519432, -0.008732291869819164, -0.004444647114723921, 0.0005481045809574425, -0.0053193713538348675, -0.003947474528104067, 0.017599156126379967, -0.04390070214867592, 0.017778588458895683, -0.02023080736398697, -0.011319084092974663, 0.026585642248392105, -0.022219495847821236, -0.009898590855300426, -0.020739194005727768, 0.009801399894058704, -0.011236844584345818, 0.01590951904654503, 0.009016390889883041, 0.008231381885707378, -0.00435493141412735, 0.02606230229139328, 0.012784434482455254, 0.037620626389980316, -0.005483849439769983, -0.010055593214929104, 0.010952746495604515, 0.032716188579797745, 0.01128917932510376, -0.025927729904651642, -0.019019650295376778, 0.01800287514925003, 0.007640755735337734, -0.013868494890630245, 0.015520751476287842, 0.0021531679667532444, 0.016103900969028473, 0.021980255842208862, -0.03711223974823952, 0.018944887444376945, 0.017195438966155052, 0.0027138886507600546, -0.008448193781077862, 0.010212594643235207, 0.021621394902467728, -0.008291191421449184, 0.02446237951517105, 0.023939039558172226, 0.003790472634136677, 0.0066576250828802586, 0.002652209484949708, -0.017763635143637657, 0.0006766031146980822, -0.002513898303732276, -0.004784817341715097, -0.035108599811792374, -0.0416279137134552, 0.01441426295787096, 0.002523243660107255, -0.015244130045175552, -0.01830192655324936, -0.009614492766559124, -0.0026447330601513386, 0.020081281661987305, -0.005259561352431774, 0.006627719849348068, -0.016298284754157066, 0.009038819000124931, -0.027961278334259987, 0.006754816509783268, -0.001310217659920454, -0.02404370903968811, 0.014309595339000225, -0.015849707648158073, -0.039713986217975616, -0.009435062296688557, 0.017030959948897362, -0.0106611717492342, 0.008036998100578785, 0.029157482087612152, -0.012836768291890621, -0.027841657400131226, -0.002448480809107423, 0.01187980454415083, 0.009345347061753273, 0.028948146849870682, 0.012036806903779507, -0.008904246613383293, -0.025329627096652985, -0.005323109682649374, -0.0003023219760507345, -0.00698658125475049, 0.0030447139870375395, 0.002072797855362296, 0.020081281661987305, 0.04228582605719566, -0.016971150413155556, -0.04019246622920036, 0.0030671427957713604, 0.034390877932310104, 0.03654404357075691, 7.768319483147934e-05, 0.019363557919859886, 0.0004731081717181951, 0.01700105518102646, -0.015034793876111507, -0.01967756263911724, 0.014832934364676476, 0.0014158200938254595, -0.012560145929455757, -0.009891115128993988, 0.023221317678689957, 0.04722016677260399, -0.008874340914189816, 0.007909901440143585, -0.011528419330716133, 0.0218606349080801, -0.023610083386301994, -0.014885268174111843, 0.025882871821522713, 0.026256686076521873, -1.2156251614214852e-06, 0.022398926317691803, -0.002618566155433655, 0.05900278314948082, -0.04243535175919533, 0.004455861169844866, 0.017060864716768265, -0.005323109682649374, -0.0087098628282547, 0.030488260090351105, 0.0161188542842865, -0.01888507604598999, 0.04527633637189865, 0.017987923696637154, 0.025748299434781075, 0.015274034813046455, -0.0029923799447715282, -0.006582862231880426, -0.0009312637848779559, 0.006100642494857311, 0.03582632169127464, 0.023535320535302162, -0.0156104676425457, 0.01816735416650772, 0.04070085287094116, 0.018361737951636314, 0.025120291858911514, -0.017808493226766586, -0.01269471924751997, -0.0030166779179126024, 0.020200900733470917, -0.04195686802268028, -0.038667306303977966, -0.0022316689137369394, -0.031071409583091736, -0.007820186205208302, 0.0018513131653890014, -0.009233202785253525, -0.03349372372031212, 0.02459695190191269, 0.00388766429387033, -0.01384606584906578, 0.0049231285229325294, 0.0267800260335207, -0.0023830633144825697, 0.03134055435657501, 0.010235023684799671, -0.010003259405493736, -0.03830844536423683, 0.0213223434984684, -0.029949966818094254, 0.012941435910761356, 0.007509920746088028, -0.0004873598227277398, -0.024477332830429077, 0.008007093332707882, 0.0218606349080801, 0.025524010881781578, -0.008044474758207798, -0.026077255606651306, 0.02615201845765114, -0.004115690942853689, -0.0020746670197695494, -0.02115786448121071, -0.02485114522278309, -0.004754912573844194, 0.05006115511059761, -0.03600575029850006, 0.012844244949519634, -0.005517492536455393, -0.003609172999858856, -0.0051399408839643, -0.006904342211782932, -0.023445606231689453, 0.010182689875364304, 0.007947282865643501, -0.006096904166042805, -0.03863740339875221, 0.002435397356748581, 0.02355027385056019, -0.004754912573844194, -0.0018503786996006966, -0.0026092207990586758, -0.009225726127624512, 0.005095083266496658, -0.01913926936686039, 0.02896309830248356, -0.016612287610769272, 0.04300354793667793, 0.0022671811748296022, -0.011064890772104263, -0.022518547251820564, 0.038547687232494354, -0.04922381043434143, -0.038457971066236496, -0.03033873438835144, -0.010137831792235374, 0.015057222917675972, -0.00856033805757761, 0.013352631591260433, -0.013375060632824898, 0.035945940762758255, -0.0006681922823190689, -0.0005537117831408978, -0.0005490391049534082, -0.006605291273444891, -0.010833125561475754, -0.01867574080824852, 0.018810313194990158, -0.028514521196484566, 0.008807054720818996, -0.013023675419390202, 0.013016198761761189, 0.018137449398636818, 0.0060744755901396275, -0.01837668940424919, 0.007962235249578953, -0.00895658042281866, -0.029531296342611313, 0.0011513467179611325, -0.008515479974448681, 0.012590051628649235, 0.011887281201779842, 0.014317071065306664, -0.0359160378575325, 0.009263107553124428, -0.0028503306675702333, 0.0047212690114974976, -0.022817598655819893, -0.03457030653953552, -0.01004811655730009, -0.029860252514481544, -0.017928114160895348, 0.01623847521841526, 0.006511837709695101, -0.003323205281049013, -0.0019251414341852069, -0.046681877225637436, 0.013718969188630581, 0.011805041693150997, 0.007651969790458679, 0.024282949045300484, -0.015401131473481655, 0.0036839356180280447, 0.007827662862837315, -0.016776766628026962, -0.019827088341116905, -0.029890157282352448, -0.004351193550974131, 0.007760375738143921, -0.017898207530379295, -0.011386370286345482, -0.023311033844947815, -0.0034390876535326242, -0.02748279646039009, -0.043452125042676926, -0.011535895988345146, 0.02987520396709442, -0.05122745409607887, -0.005259561352431774, 0.01565532572567463, -0.001962522743269801, 0.0060744755901396275, 0.01795801892876625, 0.017359916120767593, 0.006960414350032806, -0.020799003541469574, 0.025538964197039604, -0.006695006508380175, -0.006403431762009859, -0.021471869200468063, 0.00338301551528275, 0.009539729915559292, -0.009487396106123924, 0.0021400845143944025, 0.018197258934378624, 0.008612671867012978, 0.010444359853863716, -0.018690694123506546, -0.00686322245746851, -0.0002182138414354995, 0.017225343734025955, 0.009659350849688053, -0.014877792447805405, -0.004089523572474718, 0.04141857847571373, 0.02724355459213257, 0.03788977488875389, -0.028798621147871017, 0.009315441362559795, -0.005532445386052132, -0.053141381591558456, -0.0038259848952293396, 0.02174101397395134, -0.04034199193120003, 0.028978051617741585, -0.01695619709789753, 0.004197929985821247, -0.028649095445871353, -0.0009186475654132664, 0.04351193457841873, -0.02564363181591034, 0.013629253953695297, 0.011229368858039379, 0.027677178382873535, 0.012963864952325821, -0.024193232879042625, -0.006246429868042469, 0.0164029523730278, -0.0017429072177037597, -0.0085827661678195, 0.009001437574625015, -0.019064506515860558, -0.013793732039630413, -0.016522573307156563, 0.009405156597495079, 0.007382824085652828, -0.0338226780295372, 0.003470861818641424, -0.01565532572567463, 0.00014707239461131394, 0.008343525230884552, 0.0028372472152113914, -0.014563788659870625, -0.036992620676755905, -0.02316150814294815, 0.010563979856669903, -0.004197929985821247, -0.0017943065613508224, -0.013711492531001568, 0.0054389918223023415, -0.043242789804935455, 0.00460538687184453, 0.013681587763130665, -0.04405022785067558, -0.009218250401318073, 0.013808684423565865, 0.007203393150120974, 0.016522573307156563, 0.0018036519177258015, 0.016044091433286667, -0.016178663820028305, 0.02346055768430233, -0.0023924086708575487, -0.04183724895119667, 0.017718777060508728, 0.005326847545802593, 0.026869740337133408, 0.0016326321056112647, 0.014832934364676476, -0.023176459595561028, 0.005838972516357899, -0.056670181453228, -0.007244512904435396, -0.019079459831118584, -0.04138867184519768, 0.0327460952103138, 0.0364244244992733, 0.01762906275689602, 0.0106611717492342, -0.0018700038781389594, -0.007487491704523563, 0.03214799240231514, -0.02362503670156002, -0.010249976068735123, 0.01942336931824684, -0.0062240008264780045, -0.0048296754248440266, 0.039594363421201706, -0.00231764605268836, -0.06543237715959549, 0.014847886748611927, 0.019363557919859886, -0.010833125561475754, -0.0030783573165535927, -0.004736221861094236, -0.03026397153735161, -0.00369888823479414, 0.005390395876020193, -0.00369888823479414, 0.004425956401973963, 0.0032017158810049295, 0.013113390654325485, -0.014107735827565193, -0.0047736032865941525, 0.012545193545520306, 0.0007013682625256479, 0.012672290205955505, -0.03349372372031212, -0.012477907352149487, -0.08128208667039871, -0.0032110612373799086, 0.0033661939669400454, 0.023699799552559853, -0.009958401322364807, 0.015079651959240437, 0.010130356065928936, 0.018705645576119423, -0.0012102223699912429, 0.009405156597495079, -0.02559877373278141, 0.01448154915124178, 0.011505991220474243, 0.019662609323859215, -0.022563405334949493, 0.009293013252317905, -0.025254864245653152, 0.01074341032654047, 0.010631266050040722, 0.001855051377788186, 0.0008293995051644742, 0.041358765214681625, 0.04097000136971474, 0.006866960786283016, 0.012642385438084602, 0.022174639627337456, -0.03289562091231346, -0.000274986814474687, -0.0034446949139237404, -0.032716188579797745, -0.0021494298707693815, -0.017524395138025284, -0.008291191421449184, -0.015580561943352222, 0.04751921817660332, 0.00447829021140933, 0.00015127779624890536, 0.0015167497331276536, 0.003153119934722781, 0.013606824912130833, -0.0005691316328011453, 0.02048500068485737, -0.023639990016818047, -0.008044474758207798, 0.010907888412475586, -0.010638742707669735, -0.00824633426964283, -0.03196856379508972, -0.020709289237856865, 0.009599540382623672, 0.020245758816599846, -0.0032278827857226133, -0.005539921578019857, -0.0228774081915617, 0.003276478499174118, -0.004425956401973963, -0.003411051584407687, -0.01168542169034481, -0.019752325490117073, -0.012089140713214874, 0.0369328111410141, 0.0020092495251446962, 0.004197929985821247, 0.011094795539975166, -0.006534266285598278, -0.002132608089596033, 0.04231572896242142, 0.01854116842150688, 0.04880513995885849, -0.024477332830429077, -0.0009382728021591902, -0.01674686186015606, -0.0037026263307780027, 0.01595437526702881, 0.03202837333083153, 0.008208952844142914, 0.04099990427494049, 0.0037755200173705816, 0.02829023450613022, 0.008463146165013313, -0.009435062296688557, 0.008971532806754112, 0.014945078641176224, 0.013636729680001736, -0.011169558390974998, -0.0176739189773798, -0.007180964574217796, -0.012717148289084435, -0.015670277178287506, -0.0013120867079123855, 0.030323781073093414, 0.028723858296871185, 0.03140036389231682, 0.012836768291890621, 0.017853351309895515, 0.034061919897794724, -0.001962522743269801, -0.021053196862339973, 0.007480015512555838, 0.0004340913437772542, -0.008964057080447674, -0.008231381885707378, 0.017016006633639336, -0.008739768527448177, 0.012358286418020725, 0.003472730750218034, -0.004549314733594656, 0.02269797772169113, -0.01993175595998764, -0.03932521864771843, -0.0007088445709086955, 0.006627719849348068, -0.008717339485883713, 0.0006794066866859794, 0.001373765990138054, -0.007625802885740995, -0.0058838301338255405, -0.003977379761636257, -0.0009265911066904664, 0.0003642349038273096, 0.0015317023498937488, 0.046651970595121384, 0.013935781084001064, -0.03654404357075691, 0.005259561352431774, 0.01004811655730009, -0.021800825372338295, 0.0007004337385296822, -0.02153167873620987, 0.01154337264597416, -0.0007289370405487716, 0.0014195581898093224, -0.015894565731287003, -0.002655947580933571, -0.004508195444941521, 0.025150196626782417, 0.03797949105501175, -0.005083868745714426, 0.010728457942605019, -0.026451069861650467, -0.0010494824964553118, 0.005162369459867477, 0.009091153740882874, 0.006807150784879923, -0.0014971245545893908, 0.005842710845172405, 0.005427777301520109, 0.0013541406951844692, -0.007263203617185354, -0.004190453328192234, 0.007827662862837315, -0.0015915125841274858, 0.02476143091917038, -0.004631553776562214, -0.0001734730030875653, -0.013464775867760181, -0.006138023920357227, 0.013307773508131504, 0.00927058421075344, -0.015520751476287842, -0.011700374074280262, 0.01022007130086422, 0.01492264959961176, 0.014608645811676979, 0.015670277178287506, -0.00673612579703331, 0.011573277413845062, -0.0031961086206138134, -0.012448001652956009, -0.017045913264155388, 0.015894565731287003, -0.0072557274252176285, -0.001789633883163333, -0.03080226294696331, 0.025195054709911346, -0.0035736605059355497, -0.013681587763130665, 0.0003397033433429897, 0.007109940052032471, 0.01997661404311657, -0.019842039793729782, -0.01628333143889904, -0.008866865187883377, 0.014189974404871464, 0.021770920604467392, 0.026630500331521034, -0.022084923461079597, -0.004504457116127014, 4.964715481037274e-05, -0.0020615835674107075, 0.01347225159406662, 0.04730988293886185, 0.006171667017042637, -0.013479728251695633, 0.02464180998504162, -0.018571073189377785, 0.02648097462952137, -0.003977379761636257, -0.013674111105501652, -0.0354076512157917, -0.014556312002241611, 0.0062426915392279625, 0.009764018468558788, 0.016044091433286667, -0.024402569979429245, -0.006489408668130636, -0.004852104000747204, 0.017359916120767593, 0.011453657411038876, -0.013494680635631084, 0.008179047144949436, 0.0027550081722438335, 0.021068150177598, -0.013838589191436768, -0.004470814019441605, -0.000424512370955199, -0.010795744135975838, -0.012111569754779339, -0.008911722339689732, -0.029860252514481544, 0.029576152563095093, 0.0007181899272836745, -0.018197258934378624, -0.010294834151864052, 0.008164094761013985, -0.004526886157691479, 0.0008130451897159219, -0.05367967113852501, -0.026570690795779228, 0.019079459831118584, -0.011356465518474579, 0.0009293947368860245, -0.0036147800274193287, -0.022683026269078255, -0.007569730747491121, 0.0025494105648249388, 0.02740803360939026, 0.0009382728021591902, 0.020081281661987305, -0.00504648732021451, -0.006971628870815039, -0.014489025808870792, -0.002756877336651087, -0.0027194959111511707, 0.037710342556238174, 0.018810313194990158, -0.043960511684417725, -0.0169113390147686, 0.00705012958496809, 0.008231381885707378, -0.0072557274252176285, 0.002379325218498707, -0.00491939065977931, 0.019124317914247513, 0.010653695091605186, 0.005726828705519438, 0.011326560750603676, 0.00351011217571795, 0.01590951904654503, 0.016477715224027634, -0.021755967289209366, 0.005323109682649374, 0.00645202724263072, -0.00973411276936531, 0.023430652916431427, -0.021965302526950836, -0.007857567630708218, -0.0014335762243717909, 0.0073043229058384895, -0.0139133520424366, 0.008425764739513397, 0.003442825749516487, -0.005121250171214342, 0.011588229797780514, 0.001184989931061864, -0.018227163702249527, 0.02274283580482006, -0.023176459595561028, -0.0010345298796892166, 0.017150580883026123, -0.00996587797999382, -0.014003067277371883, -0.011064890772104263, -0.010100450366735458, 0.0017475798958912492, 0.0022260616533458233, -5.899250027141534e-05, -0.02002147026360035, 0.024836193770170212, -0.008702387101948261, -0.00029858382185921073, 0.014713314361870289, 0.003336288733407855, -0.0029718203004449606, 0.04402032122015953, -0.007909901440143585, -0.0007532349554821849, 0.011932138353586197, 0.026256686076521873, -0.008859388530254364, 0.005510016344487667, 0.011304131709039211, -0.02459695190191269, -0.018645836040377617, -0.01105741411447525, -0.00026260424056090415, 0.004306335933506489, -0.016612287610769272, 0.013711492531001568, -0.005924949888139963, 0.011386370286345482, -0.008851912803947926, -0.02529972232878208, -0.029695773497223854, 0.005259561352431774, 0.05164612457156181, 0.013883447274565697, 0.007969711907207966, -0.012119045481085777, -0.029770536348223686, 0.009113581851124763, -0.02769213169813156, 0.007038915064185858, 0.019333653151988983, -0.0395345538854599, -0.023565227165818214, -0.0028970574494451284, -0.01370401680469513, 0.01244052592664957, -0.01934860646724701, -0.05397872254252434, 0.005345538258552551, -0.013375060632824898, 0.008036998100578785, -0.0104069784283638, 0.002265312010422349, 0.01628333143889904, -0.03702252730727196, -0.014197451062500477, -0.00679967412725091, -0.002747531980276108, 0.03609546646475792, -0.009973353706300259, -0.0012990032555535436, -0.0066015529446303844, -0.002627911511808634, -0.008672481402754784, 0.032626476138830185, 0.005188536364585161, 0.000908834976144135, -0.0011765791568905115, -0.002426052000373602, -0.00466893520206213, -0.011356465518474579, 0.0019569157157093287, 0.00745758693665266, 0.009801399894058704, 0.01573008857667446, -0.01900469698011875, -0.023191412910819054, -0.006646410562098026, -0.001209287904202938, 0.0030316305346786976, 0.014593693427741528, -0.010264928452670574, -0.0016905731754377484, 0.010653695091605186, -0.026869740337133408, -0.012448001652956009, -0.02241387963294983, 0.023490464314818382, 0.005838972516357899, 0.004272692371159792, 0.007222083862870932, -0.01573008857667446, -0.008351001888513565, 0.002478386042639613, 0.007023962680250406, -0.004351193550974131, -0.01737486943602562, -0.021083101630210876, -0.0014550704509019852, -0.013083485886454582, -0.006788460072129965, -0.024701621383428574, 0.0002176297566620633, -0.018825266510248184, 0.02476143091917038, -0.0063623120076954365, 0.0019643919076770544, 0.004986676853150129, -0.01846640557050705, -0.0008219232549890876, -0.007693089544773102, 0.0013027413515374064, -0.008754720911383629, -0.01181251835078001, 0.01830192655324936, -0.043452125042676926, -0.011603182181715965, -0.002259704750031233, -0.0045343623496592045, 0.003285823855549097, 0.014189974404871464, -0.008171571418642998, 0.012089140713214874, -0.0005569826462306082, 0.013502157293260098, -0.011976996436715126, -0.016088949516415596, -0.0137862553820014, -0.012672290205955505, 0.032835811376571655, -0.022234449163079262, -0.018481357023119926, 0.008829483762383461, 0.012141474522650242, 0.022757789120078087, -0.006840793881565332, -0.004141857847571373, -0.01264986116439104, -0.0010597623186185956, 0.0017559906700626016, -0.0032690023072063923, -0.012403144501149654, 0.027796799317002296, -0.013554491102695465, 0.003758698469027877, -0.025568868964910507, -0.0022540977224707603, -0.01581980288028717, 0.028021087870001793, -0.002300824271515012, 0.0006742667756043375, 0.051885366439819336, -0.03777015209197998, 0.028469664976000786, -0.025793157517910004, -0.004347455222159624, 0.0010046247625723481, -0.019333653151988983, -0.027034219354391098, -0.002872759709134698, 0.012575098313391209, 0.010541550815105438, -0.02778184600174427, 0.021127959713339806, -0.0007200589752756059, 0.0030895716045051813, 0.03498897701501846, 0.009674303233623505, 0.0009522908367216587, -0.006919294595718384, -0.003758698469027877, 0.01269471924751997, 0.006354835815727711, -0.018316879868507385, 0.007509920746088028, -0.007360395044088364, 0.022817598655819893, 0.01225361879914999, 0.007565992884337902, -0.0008308013202622533, 0.008418288081884384, 0.00921077374368906, 0.0163730476051569, 0.029262149706482887, -0.004556790925562382, -0.016133807599544525, 0.0028895812574774027, -0.017359916120767593, 0.006134285591542721, -0.01137141790241003, 0.023729704320430756, -0.01422735583037138, -0.014518930576741695, -0.0262716393917799, 0.005655803717672825, 0.010810697451233864, -0.009808875620365143, 0.00692303292453289, -0.0015195533633232117, -0.0005453010089695454, 0.009016390889883041, 0.02085881307721138, 0.01523665338754654, -0.010182689875364304, 0.00023970814072526991, -0.007214607670903206, 0.037201955914497375, 0.006152976304292679, 0.008530432358384132, -0.013442346826195717, 0.014646027237176895, 0.023071791976690292, -0.018750503659248352, -0.024701621383428574, -0.021217675879597664, 0.029486438259482384, -0.01595437526702881, -0.012612479738891125, -0.0008345394744537771, -0.027437938377261162, 0.013988114893436432, 0.016059044748544693, -0.03059292770922184, 0.01466845627874136, 0.015184319578111172, 0.007278156001120806, -0.008493050932884216, -0.0065006231889128685, 0.010638742707669735, 0.013636729680001736, -0.011991948820650578, -0.00889676995575428, 0.009457491338253021, -0.003551231697201729, -0.008164094761013985, -0.011281702667474747, -0.0008957514655776322, 0.015969328582286835, -0.00570813799276948, 0.004945557564496994, -0.009143487550318241, 0.007319275755435228, 0.003966165240854025, 0.0012990032555535436, 0.017195438966155052, -0.007109940052032471, -0.015789898112416267, -0.00908367708325386, -0.010915365070104599, -0.01232090499252081, 0.0022671811748296022, 0.008627624250948429, -0.00952477753162384, -0.0013541406951844692, 0.008074379526078701, 0.01074341032654047, -0.015221701003611088, -0.0010756494011729956, 0.0035643151495605707, -0.02069433592259884, 0.002715757815167308, -0.015229176729917526, 0.0708153024315834, 0.004665197338908911, 0.02429790236055851, 0.004403527360409498, 0.00162889389321208, -0.007607112172991037, -0.010631266050040722, 0.00720713147893548, 0.041777439415454865, 0.0004156343056820333, 0.0016214177012443542, -0.00632493058219552, 0.017898207530379295, 0.004268954508006573, -0.005648327525705099, 0.01834678463637829, 0.007509920746088028, 0.017987923696637154, -0.009435062296688557, 0.024327807128429413, 0.017404774203896523, 0.015124509111046791, -0.008096808567643166, 0.014675932936370373, 0.004145595710724592, 0.018780408427119255, -0.0011102271964773536, 0.00030325650004670024, 0.012186332605779171, 0.025239912793040276, 0.0012578837340697646, -0.008365954272449017, -0.01175270788371563, -0.0047922939993441105, 0.006433336529880762, 0.015401131473481655, 0.006534266285598278, 0.02311665005981922, -0.014997412450611591, 0.017853351309895515, 0.015804849565029144, -0.0058165439404547215, 0.02471657283604145, 0.00786504428833723, 0.000967243395280093, 0.005831496324390173, 0.01219380833208561, -0.005528707057237625, -0.012350810691714287, -0.00354188634082675, -0.009136010892689228, -0.021172817796468735, 0.008694910444319248, 0.007289370521903038, 0.010982651263475418, -0.0014046055730432272, -0.011932138353586197, -0.013150772079825401, -0.003639078000560403, 0.001376569620333612, -0.02169615775346756, 0.011633087880909443, -0.032417137175798416, -0.019662609323859215, -0.015445989556610584, -0.010922841727733612, -0.006395955104380846, 0.006852008402347565, -0.00429138308390975, -0.008463146165013313, 0.0003885327896568924, -0.00400728452950716, 0.01590951904654503, -0.0174197256565094, -0.01493760198354721, 0.018810313194990158, 0.01863088272511959, 0.024731526151299477, 0.011408799327909946, 0.020006518810987473, 0.01466845627874136, 0.006425860337913036, -0.0015597384190186858, -0.018077638000249863, -0.003947474528104067, 0.0017036567442119122, -0.011326560750603676, 0.00811923760920763, 0.011064890772104263, -0.025613727048039436, -0.022802645340561867, -0.0018971053650602698, -0.0016419774619862437, 0.0065006231889128685, 0.011633087880909443, 0.0033063837327063084, 0.017240295186638832, -0.003749353112652898, 0.020380333065986633, 0.012477907352149487, 0.004784817341715097, 0.008605195209383965, -0.004706316627562046, 0.01573008857667446, 0.004616601392626762, -0.003014808986335993, 0.01225361879914999, 0.0033624558709561825, -0.01737486943602562, 0.02399885095655918, -0.010623790323734283, -0.01951308362185955, 0.0013382536126300693, 0.0029961182735860348, -0.03618518263101578, -0.0038502828683704138, 0.0012233059387654066, -0.005543659906834364, 0.0006415580282919109, -0.007670660503208637, -0.003925045486539602, -0.023774562403559685, 0.006470717955380678, -0.017599156126379967, 0.00225596665404737, 0.005196013022214174, -0.01816735416650772, -0.0018905636388808489, 0.019707467406988144, -0.023520369082689285, 0.02076909877359867, 0.006265120580792427, 0.019916802644729614, -0.008036998100578785, 0.006466980092227459, -0.014032972976565361, -0.015999233350157738, -0.003235358977690339, 0.015259082429111004, -0.008231381885707378, 0.009352822788059711, 0.007909901440143585, 0.005233393982052803, 0.001675620675086975, 0.007551040034741163, 0.010765839368104935, -0.0032933002803474665, -0.03289562091231346, -0.001370027894154191, -0.003678328590467572, 0.01851126365363598, -0.028559379279613495, -0.0003763838321901858, -0.014930126257240772, -0.014399310573935509, 0.01034716796129942, -0.01897479221224785, 0.04234563559293747, -0.03054806962609291, -0.00238119438290596, -0.010750886984169483, -0.018810313194990158, -0.004339979030191898, 0.0004882943467237055, -0.011984473094344139, -0.0010784530313685536, -0.020081281661987305, 0.01884021982550621, 0.011296655051410198, -0.010384549386799335, -0.022922266274690628, -0.00698658125475049, -0.0005537117831408978, -0.018615931272506714, 0.010055593214929104, -0.01219380833208561, -0.0100256884470582, -0.004725007340312004, -0.01307600922882557, 0.013696540147066116, -0.007098725531250238, 0.018959838896989822, 0.014840411022305489, 0.01460117008537054, -0.025538964197039604, -0.006272596772760153, 0.013890923000872135, -0.006590338423848152, 0.014429215341806412, 0.012089140713214874, -0.012395667843520641, 0.015565609559416771, -0.005857663229107857, -0.0018475750694051385, -0.028125755488872528, 0.0007256661774590611, 0.016881434246897697, -0.00011827704292954877, 0.0156104676425457, 0.004029713571071625, -0.0008840698283165693, 0.009764018468558788, 0.007708041928708553, 0.02610716037452221, -0.005053963512182236, -0.001118637970648706, -0.011737755499780178, -0.0033755393233150244, -0.012089140713214874, -0.004971724469214678, -0.05472635105252266, -0.029396722093224525, 0.0017634669784456491, 0.012911531142890453, -0.021875588223338127, -0.014257260598242283, 0.016477715224027634, 0.012373238801956177, 0.008881817571818829, -0.003497028723359108, 0.02097843401134014, -0.0015578692546114326, -0.0019774753600358963, -0.005887568462640047, 0.008627624250948429, -0.004115690942853689, 0.007670660503208637, 0.013315250165760517, -0.0028110803104937077, -0.0032409662380814552, 0.0058352346532046795, -0.011393846943974495, -0.017943065613508224, 0.0004436703457031399, -0.003551231697201729, 0.01939346455037594, 0.016552478075027466, -0.0012999377213418484, 0.01744963228702545, -0.007188440766185522, -0.008911722339689732, 0.003298907307907939, -0.003575529670342803, -0.00742768170312047, 0.009375251829624176, -0.004246525466442108, -0.004067094996571541, 0.011917185969650745, 0.0018447714392095804, -2.7729396606446244e-05, 0.00011658319999696687, -0.003317598020657897, -0.010242500342428684, 0.0205597635358572, 0.014758171513676643, 0.016776766628026962, 0.005210965406149626, -0.008261286653578281, -0.012261094525456429, -0.024163328111171722, 0.00881453137844801, -0.00952477753162384, -0.020724240690469742, -0.01602913811802864, 0.010945269837975502, 0.0140404487028718, -0.016776766628026962, 0.010960223153233528, 0.010369597002863884, -0.017180485650897026, 0.005162369459867477, -0.004620339255779982, 0.003786734538152814, 0.0030877026729285717, 0.005876353941857815, -0.003511981340125203, -0.00959206372499466, -0.001282181590795517, -0.008874340914189816, -0.00159711972810328, 0.001385914976708591, -0.01034716796129942, 0.017614109441637993, -0.007999616675078869, -0.0010737803531810641, -0.017270199954509735, 0.0013933911686763167, 0.018571073189377785, -0.0005588517524302006, 0.01909441314637661, 0.0014793684240430593, -0.021247580647468567, 0.029770536348223686, 0.0016429119277745485, 7.114145410014316e-05, 0.028424806892871857, 0.005510016344487667, 0.009547206573188305, -0.014264737255871296, 0.011842423118650913, -0.017898207530379295, -0.013943257741630077, 0.009180868975818157, -0.019378511235117912, -0.00708003481850028, 0.0015905780019238591, 0.01206671167165041, 0.010130356065928936, -0.022937219589948654, 0.007947282865643501, 0.003925045486539602, 0.003418527776375413, 0.007610850501805544, 0.004631553776562214, -0.0013307774206623435, -0.02148682065308094, 0.004216620232909918, 0.01410025916993618, -0.013016198761761189, 0.006313716061413288, -0.007192179095000029, 0.006418384145945311, 0.0045829578302800655, 0.004814722575247288, 0.0009555616998113692, -0.009666826575994492, -0.007319275755435228, 0.0006317454390227795, -0.0008364085224457085, -0.01435445249080658, 0.02076909877359867, 0.01565532572567463, 0.0024110993836075068, -0.017030959948897362, 0.00711367791518569, 0.0033531105145812035, 0.011984473094344139, -0.001905516255646944, -0.01679171994328499, -0.005539921578019857, -0.02694450318813324, 0.025060482323169708, -0.002586791990324855, -0.001776550430804491, -0.013681587763130665, 0.032327424734830856, 0.0007784673944115639, -0.02102329209446907, 0.0010971437441185117, -0.011730278842151165, 0.00959206372499466, -0.0015597384190186858, 0.007902424782514572, 0.003156858030706644, -0.018197258934378624, 0.0038988785818219185, 0.028170613572001457, 0.030951788648962975, -0.021591488271951675, -0.007229560054838657, -0.003695150138810277, 0.014952555298805237, -0.010205118916928768, 0.002683983650058508, -0.005154893267899752, -0.014466596767306328, 0.00921077374368906, 0.017569251358509064, -0.03567679598927498, 0.0023139079567044973, -0.004216620232909918, -0.0203055702149868, -0.0312209352850914, 0.005442730151116848, -0.010317263193428516, -0.011670469306409359, -0.004870794713497162, -0.0009756542276591063, -0.01042940653860569, -0.007453848607838154, 0.033553533256053925, 0.005995974410325289, -0.004261478316038847, -0.011042461730539799, 0.00256997044198215, -0.0045717437751591206, 0.013778779655694962, -0.003197977552190423, 0.0054389918223023415, -0.0062240008264780045, 0.0007518331403844059, 0.008351001888513565, 0.010863031260669231, -0.009741589426994324, 0.014720790088176727, 0.01960279978811741, -0.024312853813171387, 0.029022909700870514, 0.01913926936686039, 0.004530624020844698, 0.005259561352431774, -0.0014401179505512118, 0.009823828935623169, 0.002312038792297244, 0.010676124133169651, -0.007827662862837315, 0.0029400461353361607, 0.024103518575429916, 0.01795801892876625, -0.004627815913408995, -0.0029250935185700655, 0.013016198761761189, -0.026824884116649628, -0.003534410148859024, 0.02051490545272827, -0.024058660492300987, 0.004874533042311668, 0.014257260598242283, -0.0040371897630393505, -0.021038245409727097, 0.014279689639806747, -0.011393846943974495, 0.010758363641798496, -0.013920828700065613, 0.018316879868507385, -0.0036745902616530657, 0.04129895567893982, -0.012021854519844055, -0.010451835580170155, 0.005745519418269396, -0.0016017924062907696, -0.01233585737645626, -0.012433049269020557, 0.015670277178287506, -0.02899300307035446, -0.0012242404045537114, 0.0029942491091787815, 6.162087811389938e-05, -0.00973411276936531, 0.015072175301611423, -0.019752325490117073, -0.008650053292512894, -0.016716957092285156, 0.018496310338377953, 0.007722994778305292, 0.007487491704523563, -1.2922861969855148e-05, 0.007203393150120974, 0.005158631596714258, -0.0040184990502893925, -0.0008798643830232322, 0.013591872528195381, 0.0006490343366749585, 0.02371475286781788, -0.037530913949012756, -0.009988307021558285, -0.005674494430422783, 0.005838972516357899, 0.00927058421075344, -0.018481357023119926, 0.010100450366735458, 0.0050128442235291, 0.014204926788806915, -0.00011932839697692543, -0.0013718969421461225, 0.001070976722985506, 0.003958689048886299, 0.012201284989714622, -0.015445989556610584, 0.005749257281422615, -0.01492264959961176, 0.009636921808123589, 0.034271255135536194, -0.007902424782514572, 0.006298763677477837, 0.024656763300299644, -0.013898399658501148, -0.01290405448526144, -0.02094852924346924, 0.011902233585715294, -0.0169113390147686, 0.0038988785818219185, -0.0008036998333409429, -0.001344795455224812, 0.023595131933689117, -0.010481741279363632, 0.002491469494998455, 0.008739768527448177, 0.004145595710724592, 0.014526407234370708, 0.025030577555298805, 0.011154606007039547, 0.00977897085249424, 0.006246429868042469, 0.001858789473772049, -0.00736413337290287, 0.013584395870566368, 0.02387923002243042, 0.011834947392344475, 0.010078022256493568, 0.001121441600844264, 0.005039011128246784, -0.01821221224963665, -0.004044665955007076, -0.003644685260951519, 0.001061631366610527, -0.016014186665415764, 0.009360299445688725, 0.0003182090586051345, -0.011266750283539295, 0.003846544772386551, 0.007225822191685438, -0.01855611987411976, 0.006990319583564997, -0.0020204640459269285, 0.013883447274565697, 0.005528707057237625, -0.004474551882594824, 0.011386370286345482, 0.001736365375109017, -0.014631074853241444, -0.02669030986726284, -0.006272596772760153, 0.005192274693399668, 0.005136202555149794, 0.000259099731920287, 0.006489408668130636, 0.027976229786872864, 0.011094795539975166, -0.011027509346604347, -0.016148759052157402, -0.0028746286407113075, -0.0009251893498003483, -0.00746132479980588, 0.010907888412475586, 0.010676124133169651, 0.007132368627935648, 0.01156580075621605, 0.027034219354391098, -0.014900220558047295, 0.022727882489562035, -0.001776550430804491, -0.004115690942853689, 0.0004621273837983608, -0.011274226009845734, -0.022922266274690628, -0.007356657180935144, 0.00438483664765954, -0.008530432358384132, 0.008022045716643333, -0.012672290205955505, -0.00977897085249424, 0.014152592979371548, 0.007173488382250071, 0.005659542046487331, -0.008179047144949436, 0.013741398230195045, 0.005240870639681816, 0.002457826165482402, 0.012986293993890285, 0.00017639342695474625, -0.0005789442220702767, -0.008298668079078197, 0.0006621178472414613, -0.02790146693587303, 0.016687050461769104, 0.006418384145945311, -0.01770382560789585, -0.0068968660198152065, 0.02518010325729847, -0.02115786448121071, 0.00019718681869562715, -0.003629732644185424, 0.0003432078519836068, 0.003973641432821751, -0.006078213453292847, -0.017240295186638832, -0.010055593214929104, 0.024746477603912354, -0.008665005676448345, 0.013980639167129993, -0.006268858443945646, -0.014862839132547379, 0.0015382440760731697, 0.0029905110131949186, 0.014279689639806747, 0.020619573071599007, 0.010683600790798664, 0.020470047369599342, -0.013898399658501148, 0.023221317678689957, -0.02178587205708027, 0.00180178286973387, -0.0068968660198152065, -0.0030820954125374556, 0.016358094289898872, -0.0010765839833766222, -0.00523713231086731, -0.01623847521841526, -0.016687050461769104, -0.025254864245653152, 0.0070164864882826805, -0.005902520846575499, -0.011334036476910114, -0.0014158200938254595, 0.014511454850435257, 0.031250838190317154, 0.00322601362131536, -0.0019475702429190278, -0.0046838875859975815, -0.0004170360916759819, -0.019228985533118248, -0.002289609983563423, -0.005225917790085077, 0.00047941628145053983, -0.001606465084478259, 0.014735742472112179, 0.008194000460207462, 0.014197451062500477, -0.0053941342048347, -0.020006518810987473, -0.019154222682118416, 0.013053580187261105, -0.003594220383092761, -0.004373622126877308, -0.00818652380257845, 0.0004513802414294332, 0.0016279594274237752, 0.012724624015390873, -0.008403335697948933, 0.01099760364741087, -0.0003897009592037648, -0.014085306786000729, -0.012866673059761524, 0.008889294229447842, -0.007192179095000029, -0.005749257281422615, -0.006339883431792259, -0.009061248041689396, -0.0015840362757444382, 0.008022045716643333, -0.005334323737770319, -0.005760471802204847, 0.008485575206577778, 0.0215765368193388, -0.015401131473481655, 0.00895658042281866, 0.011431228369474411, -0.008074379526078701, 0.003902616910636425, -0.022982077673077583, 0.005349276587367058, -0.010339691303670406, -0.0027867823373526335, -0.00864257663488388, 0.00040675621130503714, -0.005225917790085077, -0.0037624365650117397, 0.03352362662553787, -0.007371609564870596, -0.03609546646475792, -0.007737947162240744, 0.010907888412475586, 0.021815776824951172, -0.004956772085279226, -0.020933575928211212, -0.005782900378108025, -0.00335124135017395, -0.0004882943467237055, -0.018032781779766083, -0.013330202549695969, -0.011677945032715797, 0.0006513706757687032, 0.00876967329531908, 0.004934343043714762, 0.017135627567768097, 0.00373066239990294, 0.0102798817679286, -0.004594172351062298, -0.028260327875614166, -0.005166107788681984, 0.006205310113728046, 0.01034716796129942, -0.02643611654639244, -1.198832796944771e-05, 0.002022332977503538, 0.008365954272449017, 0.011012556962668896, 0.011782613582909107, -0.004867056384682655, -0.00011559025733731687, -0.009263107553124428, -0.012829291634261608, -0.020245758816599846, -0.0003964763309340924, 0.005681970622390509, -0.012081664055585861, -0.01955794170498848, -0.013419917784631252, -0.010354644618928432, -0.012171379290521145, 0.003424135036766529, 0.0005798787460662425, 0.0062426915392279625, -0.0018475750694051385, -0.00933787040412426, 0.014339500106871128, 0.019901851192116737, -0.012141474522650242, -0.005752995610237122, 0.003373670158907771, -0.012051759287714958, 0.00826876237988472, -0.007352918852120638, -0.011505991220474243, -0.04234563559293747, 0.01565532572567463, -0.0009406091412529349, -0.02392408810555935, -0.0029157481621950865, 0.007319275755435228, -0.003175548743456602, -0.007446372415870428, 0.010728457942605019, -0.0068968660198152065, -0.03160969913005829, -0.0031699417158961296, 0.009106106124818325, -0.011483562178909779, -0.00983878131955862, 0.0156104676425457, -0.015019841492176056, 0.01454135961830616, 0.027931371703743935, 0.002214847132563591, 0.0033942300360649824, 0.008403335697948933, -0.007693089544773102, -0.011296655051410198, 0.019243938848376274, 0.0070463912561535835, -0.024537142366170883, -0.005240870639681816, -0.006347359623759985, 0.014175022020936012, -0.012141474522650242, -0.013143295422196388, 0.004440908785909414, -0.010369597002863884, 0.009315441362559795, -0.011206939816474915, -0.018765456974506378, 0.01414511725306511, -0.02044014260172844, 0.011491038836538792, 0.011528419330716133, 0.0057156141847372055, -0.005603469908237457, 0.018571073189377785, 0.01653752475976944, 0.004003546666353941, 0.007244512904435396, 0.02006632834672928, -0.009061248041689396, -0.009121058508753777, 0.006440813187509775, -0.011072366498410702, -0.012859197333455086, 0.0010765839833766222, 0.030712546780705452, 0.012747053056955338, 0.002379325218498707, -0.013644206337630749, -0.023953992873430252, 0.0018980399472638965, -0.014578741043806076, -0.0029849037528038025, -0.012664813548326492, 0.007633279077708721, 0.028095850721001625, 0.003373670158907771, -0.00881453137844801, -0.014945078641176224, -0.007655708119273186, 0.0023419437929987907, 0.006612767465412617, 0.020724240690469742, 0.006949199829250574, -0.0015840362757444382, 0.02051490545272827, 0.013487204909324646, -0.012425572611391544, -0.0226232148706913, 0.003005463629961014, 0.030563022941350937, 0.009113581851124763, 0.004990415181964636, 0.002756877336651087, -0.013875970616936684, -0.023909134790301323, 0.01728515326976776, -0.009322918020188808, -0.00043759585241787136, -0.0049792006611824036, -0.029635963961482048, 0.00438483664765954, -0.01791316084563732, 0.012679766863584518, 0.017150580883026123, -0.006235215347260237, 0.008919198997318745, -0.016313238069415092, -0.014429215341806412, -0.009607016108930111, -0.008111760951578617, 0.01825707033276558, 0.0032746095675975084, -0.0022821337915956974, -0.013554491102695465, 0.018690694123506546, -0.009988307021558285, -0.0008957514655776322, 0.03160969913005829, -0.0071286302991211414, -0.0176739189773798, -0.0016111377626657486, 0.0022952172439545393, -0.0027269721031188965, -0.00447829021140933, 0.01143870409578085, -0.0019699991680681705, 0.001357878907583654, -0.0076631843112409115, 0.0077828047797083855, 0.01590951904654503, 0.005685708951205015, -0.009307965636253357, 0.0059361644089221954, 0.016851529479026794, 0.013995591551065445, 0.013502157293260098, -0.018645836040377617, -0.008231381885707378, 0.008134189993143082, 0.011954567395150661, 0.00444838497787714, 0.0022540977224707603, -0.014840411022305489, -0.0046838875859975815, -0.015341321006417274, 0.017255248501896858, 0.014720790088176727, 0.027931371703743935, 0.006795936264097691, -0.02265312150120735, 0.012089140713214874, -0.01357692014425993, -0.022458737716078758, 0.0019232723861932755, 0.0005210030940361321, 0.027677178382873535, 0.01972242072224617, -0.013083485886454582, -0.01846640557050705, -0.00044156762305647135, -0.019916802644729614, -0.0016877696616575122, 0.012844244949519634, 0.0016672099009156227, 0.0024110993836075068, -0.022503595799207687, -0.008358478546142578, -0.0007630475447513163, 0.005050225183367729, 0.00046002469025552273, 0.02685478888452053, 0.023804467171430588, -0.0057642096653580666, 0.000867715454660356, -0.0073043229058384895, -0.024238090962171555, 0.010810697451233864, -0.0053305858746171, 0.013890923000872135, -0.009068724699318409, -0.0058726160787045956, 0.02761736884713173, -0.027094028890132904, 0.011610658839344978, 0.02295217104256153, 0.018959838896989822, 0.0021027030888944864, 0.025538964197039604, 0.004754912573844194, 0.015079651959240437, -0.021337294951081276, 0.019871944561600685, -0.008179047144949436, -0.0101527851074934, 0.026959456503391266, -0.0005266102962195873, 0.004044665955007076, -0.003861497389152646, -0.017688872292637825, -0.02206997014582157, 0.010167737491428852, -0.04497728496789932, 0.0008452865877188742, -0.014803029596805573, 0.023819420486688614, -0.023939039558172226, 0.012201284989714622, -0.018152400851249695, 0.013756350614130497, -0.014989935792982578, 0.005252084694802761, 0.02480628900229931, -0.020036423578858376, -0.006410907953977585, -0.004452123306691647, -0.01181251835078001, 0.004022237379103899, 0.018526215106248856, -0.008859388530254364, 0.014533882960677147, 0.01332272682338953, 0.002388670574873686, 0.0008326704264618456, 0.0012681635562330484, -0.01737486943602562, 0.007188440766185522, 0.011932138353586197, 0.018197258934378624, -0.002188680227845907, -0.02769213169813156, 0.0013457299210131168, 7.692388317082077e-05, -0.005618422292172909, -0.0049605099484324455, 0.012096616439521313, 0.013733921572566032, -0.0008667809306643903, 0.0028148184064775705, -0.006556695327162743, -0.017359916120767593, 0.00799214094877243, -0.011730278842151165, -0.018152400851249695, -0.005510016344487667, 0.008612671867012978, -0.01359934825450182, 0.014698361046612263, 0.01632818952202797, 0.0074052526615560055, -0.006033355835825205, -0.013532062061131, -0.0045829578302800655, -0.014122688211500645, -0.030488260090351105, 0.01030230987817049, 0.013532062061131, -0.025957634672522545, 0.028903288766741753, -0.007924853824079037, 0.032088182866573334, -0.015176842920482159, 0.0040184990502893925, -0.004710054956376553, -0.009173392318189144, 0.018331831321120262, 0.021845683455467224, 0.005304418969899416, -0.02748279646039009, 0.017315058037638664, -0.01189475692808628, 0.021247580647468567, -0.025927729904651642, -0.004212882369756699, -0.01879536174237728, 0.017135627567768097, 0.014810505323112011, -0.009876162745058537, -0.004403527360409498, -0.0082014761865139, 0.023400748148560524, 0.0026989360339939594, -0.010496693663299084, 0.004754912573844194, 0.02241387963294983, -0.013868494890630245, -0.011924662627279758, -0.017315058037638664, 0.003741876920685172, 0.006582862231880426, -0.00971916038542986, -0.01523665338754654, 0.006010927259922028, 0.018107544630765915, -0.01131160743534565, 0.011917185969650745, 0.014003067277371883, 0.030518164858222008, -0.010100450366735458, 0.014451644383370876, 0.01300872303545475, -0.016672099009156227, -0.010877983644604683, -0.010631266050040722, -0.03836825489997864, 0.01925889030098915, -0.003304514568299055, -0.02522495947778225, -0.02597258798778057, 0.003868973581120372, -0.02232416346669197, 0.01577494479715824, 0.0035587081220000982, 0.0020802742801606655, -0.010885460302233696, 0.021412057802081108, 0.009285536594688892, 0.012941435910761356, 0.007569730747491121, -0.003042844822630286, 0.0015083389589563012, 0.008732291869819164, -0.009786447510123253, -0.02115786448121071, -0.006485670804977417, 0.0016438465099781752, 0.022683026269078255, 0.008724816143512726, 0.0011102271964773536, -0.0018223426304757595, -0.01892993412911892, 0.013479728251695633, -0.024656763300299644, 0.016687050461769104, -0.00407083285972476, 0.012806863524019718, -0.001631697523407638, -0.0038502828683704138, 0.003472730750218034, 0.010885460302233696, -0.013352631591260433, -0.009808875620365143, 0.016298284754157066, -0.02094852924346924, 0.029262149706482887, -0.011348988860845566, -0.04862570762634277, -0.019199080765247345, -0.012866673059761524, 0.013143295422196388, 0.021621394902467728, -0.0010476133320480585, -0.02476143091917038, 0.0026821144856512547, 0.039504650980234146, 0.0216064415872097, -0.003999808337539434, 0.01030230987817049, 0.0004163352132309228, -0.013554491102695465, 0.0037661746609956026, -0.005281989928334951, -0.0019868207164108753, -0.0005373574676923454, -0.002715757815167308, 0.01577494479715824, -0.005909997504204512, 0.01913926936686039, 0.023639990016818047, 0.013315250165760517, -0.013816161081194878, 0.0215765368193388, 0.0058165439404547215, 0.007984664291143417, -0.014436691999435425, -0.009375251829624176, 0.02450723759829998, -0.020933575928211212, -0.009943448938429356, -0.012844244949519634, 0.019273843616247177, -0.029725678265094757, 0.01573008857667446, 0.017554299905896187, 0.012687242589890957, -0.018481357023119926, 0.027677178382873535, -0.00717722624540329, 0.0048109847120940685, 0.018286975100636482, -0.0033942300360649824, 0.005401610396802425, 0.010205118916928768, 0.0163730476051569, 0.013315250165760517, -0.009330394677817822, -0.007577206939458847, 0.0006565105868503451, 6.284745904849842e-05, -0.02724355459213257, 0.01892993412911892, 0.021890539675951004, 0.000653707014862448, 0.008223905228078365, 0.00030606010113842785, -0.03140036389231682, -0.006635196041315794, -0.009547206573188305, -0.028185565024614334, 0.00027335138292983174, -0.005685708951205015, 0.0048932237550616264, 0.016014186665415764, -0.01141627598553896, 0.00927058421075344, 0.043751176446676254, -0.0040184990502893925, 0.007528611458837986, 0.01804773323237896, -0.005610946100205183, -0.012089140713214874, -0.004347455222159624, 0.00824633426964283, -0.008635099977254868, -0.009188344702124596, 0.012021854519844055, 0.014945078641176224, 0.007532349321991205, 0.012021854519844055, 0.0012840506387874484, 0.014122688211500645, 0.02727345936000347, 0.0030820954125374556, -0.01269471924751997, 0.028484616428613663, -0.028768716380000114, 0.029112624004483223, -0.01225361879914999, 0.002168120350688696, -0.002803604118525982, -0.0028409853111952543, 0.0036876739468425512, -0.017823444679379463, -0.004482028540223837, -5.125338793732226e-05, 0.006926771253347397, 3.799467594944872e-05, -0.01332272682338953, 0.00933787040412426, 0.0038222467992454767, -0.0025718393735587597, -0.00673612579703331, -0.026884693652391434, 0.019288795068860054, -0.0083285728469491, 0.010907888412475586, 0.011991948820650578, -0.005640851333737373, -0.014810505323112011, -0.0012176986783742905, 0.0009691124432720244, 0.006960414350032806, -0.007480015512555838, 0.0031381675507873297, -0.0009373382781632245, -0.0041568102315068245, -0.00463902996852994, -0.02355027385056019, -0.006885651499032974, -0.0023045626003295183, -0.008216428570449352, -0.0005210030940361321, 0.014900220558047295, -0.010272405110299587, 0.01099760364741087, 0.00027802406111732125, -0.00698658125475049, -0.008672481402754784, 0.004493242595344782, 0.006253906060010195, 0.004220358561724424, 0.0049792006611824036, -0.029052814468741417, -0.0016055306186899543, 0.009644397534430027, -0.004564267583191395, 0.0163730476051569, 0.008418288081884384, -0.004179239273071289, 0.01212652213871479, 0.013315250165760517, 0.0037344004958868027, -0.015475894324481487, 0.011864852160215378, -0.006971628870815039, 0.014152592979371548, -0.0051810601726174355, -0.004885747097432613, -0.011326560750603676, -0.011707850731909275, -0.008179047144949436, 0.005143678747117519, -0.006130547262728214, -0.007722994778305292, -0.011827470734715462, 0.011588229797780514, -0.019109364598989487, -0.00438483664765954, -0.035228218883275986, -0.0029082719702273607, -0.004074571188539267, 0.01347225159406662, -0.0009251893498003483, 0.009816352277994156, 0.015288987196981907, -0.0070351772010326385, -0.017479537054896355, 0.007577206939458847, -0.007999616675078869, -0.0016027269884943962, 0.024776384234428406, 0.0001629594771657139, 0.007730470970273018, -0.017868302762508392, -0.013038627803325653, 0.025359533727169037, 0.00010028725228039548, 0.017060864716768265, 0.008261286653578281, -0.00577168632298708, -0.014870315790176392, 0.014085306786000729, 0.0005523099680431187, 0.015356273390352726, 0.005921211559325457, -0.004339979030191898, -0.026256686076521873, 0.008104284293949604, 0.012791910208761692, -0.019946707412600517, -0.048535991460084915, 0.007109940052032471, 0.008522956632077694, -0.016986101865768433, -0.027393080294132233, -0.0161188542842865, 0.009300488978624344, -0.012388192117214203, 0.021352248266339302, 0.008537909016013145, 0.024013802409172058, -0.005162369459867477, -0.015386179089546204, -0.00491939065977931, 0.011745232157409191, 0.009726637043058872, 0.0017372999573126435, 0.0136591587215662, 0.013875970616936684, 0.02664545364677906, 0.009001437574625015, -0.0051399408839643, 0.0028241637628525496, 0.0018036519177258015, 0.004526886157691479, 0.0016307630576193333, -0.005607208237051964, 0.01721039041876793, 0.008253809995949268, -0.0007719256682321429, 0.006960414350032806, -0.007879996672272682, 0.0034129207488149405, 0.011954567395150661, -0.018989745527505875, 0.004388574976474047, -0.00101770821493119, -0.014571264386177063, -0.004844627808779478, -0.018780408427119255, 0.015386179089546204, 0.007879996672272682, 0.04919390380382538, 0.018062686547636986, -0.0048932237550616264, -0.004224096890538931, 0.007053867913782597, -0.0452464297413826, 0.012403144501149654, -0.009868686087429523, -0.005065178032964468, -0.012836768291890621, 0.0017214128747582436, 0.002330729505047202, 0.024656763300299644, 0.007012748159468174, -0.018436500802636147, 0.003267133142799139, -0.001184055465273559, 0.002306431531906128, 0.014967507682740688, 0.024522189050912857, -0.00025676339282654226, -0.011483562178909779, 0.002399885095655918, -0.012305952608585358, 0.01131160743534565, 0.00856033805757761, 0.0037755200173705816, -0.009988307021558285, -0.0011448049917817116, -0.005405348725616932, 0.03193865716457367, 0.008807054720818996, -0.02269797772169113, 0.01628333143889904, 0.0017176747787743807, 0.014459120109677315, -0.005861401557922363, 0.012836768291890621, 0.01414511725306511, -0.019154222682118416, -0.0022073709405958652, -0.016163712367415428, 0.007158535532653332, -0.0049306051805615425, -0.025210008025169373, 0.011423751711845398, 0.0037624365650117397, 0.004078309517353773, -0.0001435678859706968, -0.013352631591260433, -0.00013106848928146064, -0.01555065717548132, 0.0031512510031461716, -0.0012812470085918903, -0.012477907352149487, 0.016253426671028137, -1.9537616026354954e-05, -0.026675358414649963, -0.0048109847120940685, 0.007599635981023312, -0.006889389827847481, 0.00864257663488388, 0.010623790323734283, -0.0026914598420262337, -0.0024466118775308132, 0.029187386855483055, 0.003811032511293888, 0.0003551231638994068, -0.007199655286967754, -0.004085785709321499, 0.01783839799463749, -0.025000670924782753, 0.004736221861094236, 0.002766222693026066, -0.015715135261416435, -0.019318701699376106, -0.010197642259299755, -0.010706028901040554, -0.0088369594886899, -0.0012055496918037534, 0.012874149717390537, -0.019916802644729614, 0.012074188329279423, -0.006317454390227795, -0.007588421460241079, -0.0017335618613287807, 0.00811923760920763, 0.0013915221206843853, 0.012575098313391209, 0.002500814851373434, -0.0026540784165263176, -0.0008167832856997848, -0.010937794111669064, 0.006298763677477837, 0.022443784400820732, 0.004373622126877308, -0.013352631591260433, 0.017569251358509064, 0.0038727116771042347, 0.016178663820028305, -0.0008957514655776322, 0.032835811376571655, -0.0031400364823639393, 0.02304188720881939, 0.016716957092285156, -0.00793233048170805, 0.014376881532371044, -0.008904246613383293, 0.0018924326868727803, 0.017763635143637657, -0.020664431154727936, 0.0161188542842865, 0.0004483430238906294, 0.011618135496973991, 0.0003897009592037648, 0.010534075088799, 0.023909134790301323, 0.007420205511152744, 0.017434678971767426, 0.03193865716457367, 0.001376569620333612, -0.016059044748544693, 0.01721039041876793, -0.013875970616936684, -0.006904342211782932, -0.012866673059761524, 0.014369404874742031, 0.01863088272511959, -0.02371475286781788, 0.0024110993836075068, 0.016731908544898033, -0.013464775867760181, -0.011513466946780682, 0.021561583504080772, -0.020784052088856697, -0.01093031745404005, 0.006455765571445227, 0.0020653216633945704, 0.005240870639681816, -0.010167737491428852, -0.0008298667962662876, 0.02215968631207943, 0.01939346455037594, -0.0004759117728099227, 0.0016718825791031122, 0.007199655286967754, 0.00577168632298708, 0.013247963972389698, 0.018137449398636818, -0.0005653934786096215, 0.006680053658783436, -0.006257644388824701, -0.016806671395897865, 0.020873766392469406, -0.0038988785818219185, 0.007939806208014488, -0.034510497003793716, 0.023520369082689285, -0.022443784400820732, -0.010459312237799168, -0.009315441362559795, 0.019288795068860054, 0.0031045242212712765, 0.029262149706482887, 0.00730058504268527, -0.0017793540610000491, -0.00019847179646603763, 0.021247580647468567, -0.007203393150120974, 0.0028110803104937077, 0.013225534930825233, -0.012216237373650074, -0.00996587797999382, -0.006429598666727543, -0.009143487550318241, -0.005681970622390509, -0.002168120350688696, -0.019318701699376106, -0.023176459595561028, 0.003661506809294224, 0.02366989478468895, 0.006369788199663162, 0.030114445835351944, 0.008851912803947926, -0.006661363411694765, 0.00594737846404314, -0.01030230987817049, 0.010504169389605522, -0.004366145934909582, -0.014526407234370708, 0.009472443722188473, -0.006631458178162575, -0.0011410668957978487, 0.0015756255015730858, -0.008051950484514236, -0.003689542878419161, 0.013457299210131168, -0.01479555293917656, -0.033224575221538544, -0.010833125561475754, 0.011296655051410198, 0.014444167725741863, 0.012343334034085274, -0.004556790925562382], "f16298e7-2f76-42f7-9d44-c1fab304825b": [-0.03956756740808487, -0.007904925383627415, -0.014451375231146812, 0.008978433907032013, -0.01405320130288601, 0.024624330922961235, -0.008611489087343216, 0.04147255793213844, -0.014287421479821205, 0.004297937266528606, 0.018066171556711197, 0.030229996889829636, -0.008447535336017609, -0.027747265994548798, 0.029058897867798805, 0.0336027666926384, -0.0034020456951111555, 0.014709017239511013, 0.01950271986424923, -0.01823793165385723, 0.05174700915813446, 0.0031326927710324526, -0.029824016615748405, -0.015841079875826836, 0.01844092272222042, 0.003353249980136752, -0.016473473981022835, 0.00533631257712841, -0.031198106706142426, -0.008119627833366394, -0.007764393463730812, 0.018753215670585632, 0.038380853831768036, 0.008884746581315994, -0.00032083262340165675, -0.01074289157986641, 0.027310054749250412, 0.016645235940814018, -0.03263465687632561, 0.0206269770860672, -0.003357153618708253, -0.0021567759104073048, -0.031229335814714432, -0.009118965826928616, -0.06120949983596802, 0.006651848554611206, 0.020861197263002396, -0.017738262191414833, -0.015520979650318623, -0.013943898491561413, 0.008236736990511417, -0.012866486795246601, -0.01741035468876362, 0.022547580301761627, 0.0035523369442671537, -0.03603865206241608, -0.0057227760553359985, 0.011086414568126202, -0.014506026171147823, -0.028512384742498398, -0.010813158005475998, -0.004270611796528101, -0.028184475377202034, -0.028543613851070404, -0.013967320322990417, -0.04053567722439766, 0.0295429527759552, -0.01015734113752842, -0.027716035023331642, -0.016426630318164825, -0.01736351102590561, 0.03051106072962284, -0.042752962559461594, -0.018159858882427216, 0.007908829487860203, -0.042034685611724854, 0.07901021838188171, 0.0019986776169389486, 0.012897715903818607, 0.0058750188909471035, 0.0016746731707826257, 0.03453964740037918, 0.05052906647324562, -0.03319678455591202, 0.0351330041885376, -6.86191488057375e-05, 0.0003000943979714066, -0.035320378839969635, 0.017910024151206017, -0.01976816914975643, 0.007807333953678608, -0.002148968633264303, -0.04418950900435448, 0.0003471823874861002, 3.312017361167818e-05, 0.030776510015130043, -0.005051345098763704, 0.035632673650979996, 0.010407175868749619, -0.019096739590168, -0.0105711305513978, 0.01801932603120804, -0.01817547343671322, 0.012077945284545422, 0.0054143862798810005, -0.008744213730096817, 0.0402233861386776, 0.03332170099020004, -0.04472040757536888, 0.028902750462293625, 0.003975884988903999, -0.04053567722439766, -0.020455215126276016, 0.010977111756801605, -0.037100452929735184, -0.023515690118074417, -0.0011066895676776767, -0.010407175868749619, -0.010649203322827816, -0.05287126451730728, -0.03135425224900246, 0.07613711804151535, 0.006058491300791502, -0.012077945284545422, -0.011008340865373611, 0.008861323818564415, 0.010625781491398811, 0.001872784225270152, 0.004149598069489002, -0.037162911146879196, 0.000620683073066175, -0.004083235748112202, -0.009501525200903416, 0.025280147790908813, 0.0066830781288445, 0.023906057700514793, 0.03375891223549843, 0.03341538831591606, -0.03738151490688324, 0.04147255793213844, -0.05883606895804405, -0.04546991363167763, -0.01142993662506342, 0.030885813757777214, -0.005051345098763704, -5.462083936436102e-05, -0.03772503882646561, 0.017222978174686432, -0.0013389578089118004, 0.021267177537083626, -0.02398413047194481, -0.012882101349532604, -0.003944655414670706, -0.013249046169221401, 0.004461891483515501, -0.012772798538208008, -0.01011049747467041, 0.003431323217228055, 0.005090381950139999, 0.030229996889829636, 0.01817547343671322, -0.018971821293234825, -0.017550887539982796, 0.033290471881628036, 0.0129914041608572, 0.016520319506525993, 0.06832978874444962, 0.01487297099083662, -0.0081508569419384, 0.01990870200097561, 0.0019186523277312517, -0.0141312750056386, 0.008931590244174004, 0.007233494892716408, 0.013014825992286205, -0.0033005503937602043, 0.03900543972849846, 0.034664563834667206, 0.04119149595499039, -0.038131020963191986, -0.008517801761627197, -0.005457326304167509, -0.027122678235173225, -0.024468185380101204, 0.03263465687632561, -0.007534077391028404, -0.0035367223899811506, 0.009259497746825218, -0.00011375529720680788, 0.0043916255235672, 0.001872784225270152, 0.025170844048261642, -0.0055393036454916, 0.005882826168090105, -0.005511977709829807, 0.01975255459547043, 0.021985452622175217, -0.0361635722219944, -0.004906909540295601, 0.04365861043334007, 0.01976816914975643, -0.03488316759467125, -0.03728782758116722, 0.016176795586943626, -0.010204185731709003, -0.017613345757126808, -0.012249707244336605, -0.03163531795144081, 0.03831839561462402, -0.02093927003443241, 0.05618157610297203, -0.03763135150074959, 0.031026344746351242, 0.03469579294323921, 0.0067377290688455105, 0.01533360406756401, -0.020954884588718414, 0.03963002935051918, 0.00482493219897151, -0.005640798714011908, -0.0022309457417577505, 0.021517012268304825, -0.0156693197786808, -0.029402419924736023, -0.04334631934762001, -0.0143889170140028, 0.008431920781731606, 0.028590457513928413, -0.055494531989097595, 0.0005196756683290005, 0.044345658272504807, 0.005465134046971798, -0.036538321524858475, -0.04456426203250885, -0.030542289838194847, 0.014115659520030022, -0.007940058596432209, -0.002775507280603051, 0.003940751776099205, 0.02195422351360321, 0.01787879504263401, 0.02618579752743244, 0.029261887073516846, 0.009454681538045406, -0.0285279992967844, 0.019736940041184425, 0.04284664988517761, -0.001601479365490377, 0.010087075643241405, -0.006839224603027105, -0.016161181032657623, -0.0030194863211363554, 0.05099750682711601, -0.016286099329590797, -0.029121356084942818, 0.027419356629252434, -0.0080181322991848, -0.02948049269616604, 0.03174462169408798, -0.016426630318164825, 0.023359542712569237, 0.060178931802511215, 0.046719085425138474, 0.0025120098143815994, 0.013639412820339203, -0.051871925592422485, 0.04172239452600479, -0.021376481279730797, 0.024109046906232834, 0.02607649564743042, -0.010172956623136997, 0.006807995494455099, 0.02577981725335121, 0.019424647092819214, -0.005070863291621208, 0.0069524310529232025, 0.014193733222782612, -0.013865824788808823, -0.027310054749250412, -0.010735084302723408, -0.0016375882551074028, 0.0137565229088068, 0.043564923107624054, -0.0003481582971289754, -0.01619241014122963, 0.0043291668407619, -0.04515761882066727, 0.014669980853796005, -0.06348924338817596, -0.00628880737349391, 0.01990870200097561, 0.03844331204891205, 0.04593835398554802, 0.025857890024781227, 0.056868620216846466, -0.017222978174686432, -0.018066171556711197, -0.009626442566514015, -0.06864207983016968, 0.010820965282619, -0.030526675283908844, 0.0002617896825540811, -0.0035093966871500015, -0.02439011074602604, 0.0067494404502213, 0.00616389000788331, 0.056150346994400024, 0.013311504386365414, -0.04287787899374962, 0.021517012268304825, 0.001411175588145852, -0.02246950753033161, 0.030073851346969604, -0.006605004426091909, 0.009259497746825218, 0.00042184002813883126, 0.007670705672353506, -0.001426790258847177, 0.006995371077209711, -0.04222206398844719, -0.002254367806017399, -0.0013994646724313498, -0.000994947156868875, -0.0045477719977498055, 0.013046055100858212, -0.03316555544734001, 0.010321295820176601, -0.03344661742448807, 0.001914748689159751, -0.05683739110827446, -0.03738151490688324, -0.033696454018354416, -0.04971710219979286, 0.012241899967193604, -0.037350285798311234, -0.022328974679112434, -0.0032458992209285498, -0.04690646380186081, -0.005312890745699406, -0.03344661742448807, -0.0028770025819540024, -0.0010051942663267255, 0.009197039529681206, -0.04206591472029686, 0.03250974044203758, 0.017051218077540398, -0.01181249599903822, 0.0030526677146553993, -0.010813158005475998, 0.018628299236297607, 0.001034471788443625, -0.005496363155543804, 0.038942981511354446, -0.020486444234848022, 0.04144132882356644, -0.0236874520778656, -0.013210008852183819, -0.006515220273286104, -0.008486571721732616, 0.009751359932124615, 0.008759829215705395, -0.04696892201900482, -0.027622347697615623, 0.0160518791526556, 0.012156018987298012, -0.01772264763712883, -0.042097143828868866, -0.02285987325012684, -0.01716051995754242, -0.00046063269837759435, -0.0138814402744174, 0.02306286431849003, -0.004629748873412609, -0.0039134263060987, -0.006323940586298704, -0.00022397289285436273, 0.03457087650895119, -0.018113015219569206, -0.036600783467292786, 0.029371190816164017, -0.007416967302560806, -0.014841741882264614, -0.012999211438000202, 0.01614556647837162, 0.038380853831768036, 0.023921672254800797, 0.006905586924403906, 0.008869131095707417, 0.023796753957867622, 0.0009012591326609254, -0.066206194460392, 0.009072122164070606, -0.029761556535959244, 0.01880006119608879, -0.046219415962696075, -0.006109239067882299, -0.005426097195595503, -0.008650526404380798, 0.019440261647105217, -0.002535431645810604, -0.014427953399717808, -0.01817547343671322, -0.012616652064025402, 0.004309648182243109, -0.013694063760340214, -0.031838309019804, -0.07014109194278717, -0.015926960855722427, 0.014630943536758423, -0.005551014561206102, 0.003458648920059204, 0.006425436120480299, 0.013897054828703403, 0.016161181032657623, 0.03244727849960327, -0.019065510481595993, 0.0005162599845789373, -0.00590624799951911, -0.03457087650895119, -0.014498218894004822, 0.05440150201320648, 0.056056659668684006, -0.04631310701370239, 0.017910024151206017, 0.041691165417432785, -0.006230252329260111, 0.04706260934472084, 0.006152179092168808, -2.790512007777579e-05, -0.002551046432927251, -0.008385077118873596, 0.02812201716005802, 0.005582243669778109, -0.0032263807952404022, 0.022891104221343994, -0.061553020030260086, 0.01189056970179081, 0.030292455106973648, -0.023406388238072395, -0.010649203322827816, 0.01049305684864521, -0.0085334163159132, -0.033540308475494385, 0.02693530172109604, -0.04034830257296562, -0.00584378931671381, -0.04818686470389366, 0.00035742949694395065, 0.02398413047194481, 0.006425436120480299, 0.006718210875988007, 0.021829305216670036, -0.02587350457906723, -0.0039329444989562035, 0.02526453323662281, 0.005851597059518099, -0.011320634745061398, -0.024983469396829605, 0.013779944740235806, -0.027840953320264816, -0.03722536936402321, 0.017582116648554802, -0.005254335701465607, -0.022688113152980804, 0.005102092865854502, -0.03816225007176399, -0.007904925383627415, 0.04212837293744087, 0.00934537872672081, 0.009665479883551598, -0.0033337315544486046, -0.026341944932937622, 0.001363355666399002, 0.04309648275375366, 0.012171633541584015, -0.026451246812939644, -0.039598796516656876, -0.023952901363372803, -0.0012267273850739002, 5.279099787003361e-05, -0.006850935518741608, -0.041535016149282455, 0.022703727707266808, 0.034508414566516876, -0.009868470020592213, -0.019487105309963226, 0.0035972292535007, -0.024124661460518837, 0.0320725291967392, 0.012569807469844818, 0.019830629229545593, -0.013553531840443611, 0.028637301176786423, 0.029464878141880035, 0.0034274195786565542, -0.017535272985696793, 0.017956867814064026, -0.044533032923936844, 0.0236874520778656, -0.05490117147564888, 0.02204791083931923, -0.01538044773042202, 0.009142388589680195, 0.005312890745699406, -0.01828477717936039, 0.010118304751813412, -0.02587350457906723, -0.014662173576653004, -0.0070695411413908005, -0.019487105309963226, -0.05992909520864487, -0.022922333329916, -0.02362499199807644, 0.04150378704071045, 0.013069476932287216, 0.0018376512452960014, -0.006964141968637705, 0.024561872705817223, 0.004817124921828508, 0.015606860630214214, 0.005937477573752403, -0.015747392550110817, 0.01201548706740141, 0.0060858167707920074, -0.01639540120959282, 0.004243285860866308, -0.00015968437946867198, -0.030370529741048813, -0.01015734113752842, -0.02168877422809601, -0.014146889559924603, 0.019065510481595993, -0.011671964079141617, 0.017738262191414833, 0.024312037974596024, 0.004294033627957106, 0.017847565934062004, -0.016020650044083595, -0.0044306619092822075, 0.01880006119608879, -0.043627381324768066, 0.02887152135372162, 0.026576165109872818, -0.013436421751976013, 0.0002632535470183939, 0.017582116648554802, 0.016832612454891205, 0.031135648488998413, 0.0076394765637815, 0.022656884044408798, -0.026045266538858414, 0.004781992174685001, -0.023406388238072395, 0.006421532016247511, 0.022547580301761627, -0.019783783704042435, -0.02047082968056202, -0.011453359387814999, -0.0030956079717725515, 0.0275130458176136, -0.03366522490978241, -0.004387721884995699, 0.01787879504263401, 0.01538044773042202, 0.004426758270710707, -0.0201273076236248, 0.023156553506851196, -0.002615456935018301, -0.0045204465277493, 0.006550353020429611, -0.0016776008997112513, -0.020486444234848022, 0.0020630881190299988, -0.007409160025417805, 0.024062203243374825, 0.0029550758190453053, 0.0049654645845294, 0.0020025812555104494, -0.012210670858621597, 0.0072569171898067, 0.00029399493359960616, -0.03578881919384003, 0.015731777995824814, -0.01742596924304962, -0.011898376978933811, 0.013194394297897816, -0.022032296285033226, -0.03525792062282562, 0.025467524304986, -0.0015712259337306023, 0.01864391379058361, 0.03906789794564247, -0.0027598924934864044, -0.0035601442214101553, -0.0148963937535882, 0.045313768088817596, 0.00730766449123621, 0.034508414566516876, -0.0041378871537745, 0.011359671130776405, -0.0012716195778921247, 0.019580794498324394, 0.035320378839969635, -0.004957657307386398, -0.0132412388920784, 0.02459310181438923, -0.010461827740073204, -0.017441583797335625, -0.01828477717936039, 0.019924316555261612, -0.01150801032781601, 0.018971821293234825, 0.03332170099020004, -0.015052540227770805, 0.028309393674135208, 0.014115659520030022, 0.012421468272805214, 0.007358412258327007, -0.010578937828540802, 0.002406610641628504, 0.019893087446689606, -0.004477506037801504, 0.053495854139328, -0.02652932144701481, 0.031151263043284416, -0.02790341153740883, 0.004149598069489002, 0.0001279670832445845, 0.0019489057594910264, 0.0206269770860672, 0.01970571093261242, 0.004594616126269102, 0.0032224771566689014, -0.015887925401329994, 0.007744875270873308, 0.013061669655144215, 0.01776949316263199, 0.0402546152472496, -0.03307186812162399, 0.008845709264278412, 0.012296550907194614, -0.014170311391353607, -0.01067262515425682, 0.056962307542562485, -0.005605665966868401, 0.0006323940469883382, 0.0008109868504106998, 0.040566906332969666, 0.044127050787210464, -0.004052006173878908, -0.03778749704360962, -0.0012667399132624269, -0.01194522064179182, 0.017550887539982796, 0.007858081720769405, -0.0221572145819664, 0.011102029122412205, 0.016723308712244034, 0.028293779119849205, 0.0201273076236248, 0.02271934226155281, 0.0030917043332010508, 0.004465795122087002, -0.01125817559659481, 0.007920539937913418, -0.005211395677179098, 0.0034508416429162025, 0.009376607835292816, 0.025732973590493202, 0.017238592728972435, 0.003501589410007, -0.030557906255126, 0.04487655684351921, 0.019799398258328438, 0.015146227553486824, 0.008869131095707417, 0.007272531744092703, 0.005024019628763199, 0.014701209962368011, -0.004212056752294302, 0.026092110201716423, -0.027075834572315216, -0.018191087990999222, 0.017738262191414833, -0.02805955894291401, -0.014716824516654015, -0.011461166664958, 0.046063270419836044, 0.0013487169053405523, 0.02713829278945923, 0.006265385542064905, 0.018191087990999222, 0.0037045800127089024, -0.0193621888756752, 0.016473473981022835, -0.008939397521317005, -0.012429275549948215, -0.03756888955831528, 0.011102029122412205, -0.011039569973945618, -0.03675692901015282, 0.0118437260389328, 0.010649203322827816, -0.016520319506525993, 0.0003115614235866815, 0.0011330393608659506, -0.02072066441178322, -0.0188469048589468, 0.010040231980383396, -0.001687360112555325, 0.023609377443790436, 0.03938019275665283, -0.009595213457942009, -0.003690917044878006, -0.01625487022101879, 0.04668785631656647, -0.0058594043366611, 0.027544274926185608, -0.025436293333768845, 0.008158664219081402, 0.02098611369729042, 0.03488316759467125, 0.008267967030405998, -0.032728344202041626, -0.011344056576490402, -0.009743552654981613, -0.004469698760658503, 0.033477846533060074, -0.004700015299022198, 0.006003839895129204, 0.03344661742448807, 0.00654644938185811, -0.009353186003863811, 0.0015868406044319272, -0.027669191360473633, -0.008884746581315994, -0.014607521705329418, 0.008915975689888, 0.06305202841758728, -0.027325669303536415, 0.018066171556711197, 0.029058897867798805, 0.018987435847520828, 0.0070461188443005085, 0.00023812368453945965, 0.0069524310529232025, 0.023952901363372803, 0.005086478311568499, 0.019471490755677223, -0.014724631793797016, 0.027122678235173225, -0.024171506986021996, 0.05177823826670647, -0.007022697012871504, -0.0295429527759552, -0.0020982210990041494, 0.01945587620139122, -0.012007679790258408, -0.006651848554611206, 0.03582004830241203, 0.011734423227608204, 0.012663495726883411, -0.017816336825489998, -0.05118488147854805, 0.03538283705711365, 0.005312890745699406, -0.0020591842476278543, 0.06551914662122726, 0.024218350648880005, 0.011476781219244003, 0.018206702545285225, 0.02587350457906723, 0.0170668326318264, 0.03859945759177208, -0.021423324942588806, -0.015973804518580437, 0.03553898632526398, 0.004942042287439108, -0.02866853028535843, -0.02938680537045002, -0.02204791083931923, -0.02118910476565361, 0.012671303004026413, -0.0017732407432049513, 0.029917703941464424, -0.025045927613973618, 0.020892426371574402, 0.03900543972849846, -0.005824271123856306, 0.0005025971331633627, 0.043471235781908035, 0.009876277297735214, 0.008549030870199203, 0.023031635209918022, -0.006827513687312603, -0.010610166937112808, 0.018362849950790405, -0.017691418528556824, 0.03101073019206524, 0.013350540772080421, 0.015427292324602604, 0.0004950337461195886, 0.03738151490688324, 0.023515690118074417, -0.0028184475377202034, -0.005113803781569004, 0.0043916255235672, 0.01156266126781702, -0.023047249764204025, 0.016411015763878822, -0.02963664010167122, -0.026295101270079613, 0.008057168684899807, 0.0018757119541987777, -0.005465134046971798, -0.011468973942101002, 0.004481409676373005, -0.007830755785107613, 0.006195119582116604, 0.025045927613973618, -0.009111158549785614, 0.009439066983759403, 0.0026662044692784548, 0.0036460249684751034, -0.028231319040060043, 0.0028125920798629522, -0.002115787472575903, -0.010009001940488815, 0.0124761201441288, -0.0023675740230828524, -0.007916636765003204, 0.014217155054211617, -0.028699759393930435, 0.054932400584220886, -0.005605665966868401, -0.0004176923830527812, -0.02999577671289444, -0.0014892489416524768, 0.003357153618708253, 0.039192818105220795, -0.05337093397974968, -0.033540308475494385, -0.02434326708316803, -0.024577487260103226, 0.018503380939364433, -0.0033122615423053503, 0.005148936994373798, -0.008642719127237797, 0.045407455414533615, 0.03407120704650879, 0.03722536936402321, -0.004208153113722801, 0.000877837126608938, -0.013537917286157608, 0.0010051942663267255, 0.021126646548509598, -0.014709017239511013, 0.023718681186437607, -0.00047234370140358806, 0.006694789044559002, -0.017301052808761597, 0.023906057700514793, -0.042034685611724854, -0.019736940041184425, 0.003893907880410552, -0.013967320322990417, -0.010641396045684814, -0.021517012268304825, 0.020892426371574402, 0.015435099601745605, -0.006054587662220001, -0.0047976067289710045, 0.01283525675535202, 0.015005695633590221, 0.007799526676535606, -0.001962568610906601, -0.027060220018029213, 0.006269289180636406, -0.023234626278281212, -0.022984791547060013, 0.012101368047297001, 0.021111031994223595, -0.007725357078015804, 0.040160927921533585, -0.06092843413352966, -0.010118304751813412, 0.023796753957867622, 0.0170668326318264, 0.02765357680618763, -0.009212654083967209, 0.0180817861109972, 0.00034474258427508175, -0.015544402413070202, -0.025654898956418037, 0.0025529982522130013, 0.009275113232433796, -0.006831417325884104, -0.0029277503490448, -0.019471490755677223, -0.010133919306099415, -0.010649203322827816, -0.02398413047194481, -0.0137487156316638, -0.0006889972137287259, 0.014303036034107208, -0.06526931375265121, -0.007729260716587305, 0.0071944585070014, 0.004461891483515501, 0.017051218077540398, 0.0076628983952105045, 0.026451246812939644, -0.019627638161182404, -0.022141600027680397, 0.011960836127400398, 0.03232236206531525, 0.009735745377838612, -0.007210073061287403, -0.009813819080591202, 0.029714712873101234, 0.00998558010905981, 0.01711367629468441, 0.004196442198008299, 0.016676465049386024, -0.006647944916039705, -0.01675453968346119, 0.02026783861219883, -0.008135242387652397, 0.009384415112435818, 0.014654366299510002, -0.019112354144454002, -0.012725954875349998, 0.0073193758726119995, 0.02398413047194481, 0.007401352748274803, -0.0036460249684751034, 0.01954956352710724, -0.011484588496387005, -0.023765524849295616, 0.003448889823630452, 0.017800722271203995, -0.01104737725108862, -0.002275837818160653, 0.0017507947050035, -0.010625781491398811, -0.03913035988807678, -0.01997116021811962, -0.009462488815188408, -0.012733762152493, 0.04437688738107681, 0.02587350457906723, 0.031026344746351242, 0.0021626316010951996, -0.016473473981022835, -0.02531137689948082, 0.01435768697410822, -0.0004925939720124006, -0.01520087942481041, 0.032572198659181595, 0.0084084989503026, 0.007073444779962301, -0.011671964079141617, 0.007143710739910603, 0.0026583971921354532, -0.028887135908007622, 0.01711367629468441, -0.02729444019496441, 0.0064917984418570995, 0.012234092690050602, 0.005711064673960209, 0.006448857951909304, -0.03126056492328644, -0.0211422611027956, 0.0002669132372830063, 0.0032907912973314524, -0.014420146122574806, 0.0005323626101016998, 0.003202958730980754, -0.017035603523254395, -0.007873696275055408, 0.041066575795412064, -0.010719469748437405, 0.0006499605369754136, -0.03625725954771042, -0.0025959385093301535, 0.007924444042146206, -0.03600742295384407, 0.010930268093943596, -0.0018630251288414001, 0.0031209818553179502, 0.007362315896898508, -0.009571791626513004, -0.0024846841115504503, 0.003606988349929452, -0.0018649769481271505, 0.01092245988547802, -0.0031170782167464495, -0.02389044128358364, -0.012686917558312416, -0.028278164565563202, -0.018675142899155617, -0.01767580397427082, -0.029058897867798805, 0.01316316518932581, 0.015817658975720406, -0.024874165654182434, 0.012444890104234219, 0.00043525887303985655, 0.005687642842531204, -0.0059218630194664, -0.008353847078979015, 0.011094221845269203, 0.0044540842063724995, -0.002912135561928153, 0.005562725476920605, 0.025326991453766823, 0.011187910102307796, -0.04712506756186485, -0.02123594842851162, 0.023515690118074417, 0.005168455187231302, -0.004539964720606804, -0.013975127600133419, -0.03650709241628647, -0.014412338845431805, -0.011406514793634415, -0.017488427460193634, -0.013014825992286205, 0.023297084495425224, -0.0025237207300961018, -0.017644574865698814, -0.002701337682083249, 0.007034407928586006, 0.0004284274473320693, 0.02078312262892723, -0.012694724835455418, -0.0016824804479256272, -0.0514347180724144, 0.0018708324059844017, -0.015388255007565022, 0.041847310960292816, -0.02969909831881523, 0.004055909812450409, 0.008252352476119995, 0.0077565861865878105, 0.011406514793634415, 0.007729260716587305, -0.0062185414135456085, -0.014732439070940018, 0.005925766658037901, 0.028137631714344025, -0.008931590244174004, 0.014287421479821205, 0.009517139755189419, 0.0056993537582457066, -0.0012013535015285015, 0.005886729806661606, -0.013436421751976013, 0.02231336012482643, -0.004500927869230509, 0.01558343879878521, -0.0026232642121613026, 0.005574436392635107, -0.02479609288275242, 0.021017342805862427, 0.012897715903818607, -0.02780972421169281, 0.013701871037483215, -0.0013926331885159016, -0.0033708163537085056, 0.0010637493105605245, 0.033790141344070435, -0.007405256386846304, 0.01567712612450123, 0.006323940586298704, -0.0014921766705811024, -0.019081125035881996, 0.00024739489890635014, 0.012601037509739399, 0.004774184897542, 0.020658206194639206, 0.002412466099485755, -0.00017981266137212515, 0.003044860204681754, -0.002711096778512001, -0.0011369429994374514, -0.009962158277630806, 0.017191749066114426, -0.03135425224900246, -0.006472279783338308, -0.023749910295009613, -0.01965886726975441, 9.698172652861103e-05, 0.012546385638415813, -0.005379253067076206, -0.0027403743006289005, -0.0078346598893404, 0.03969248756766319, 0.032822031527757645, -0.01609872281551361, 0.006331747863441706, -0.016926299780607224, 0.00749894417822361, 0.011554853990674019, 0.024280808866024017, 0.036194801330566406, -0.008970626629889011, -0.0027657481841742992, 0.019237270578742027, 0.004059813916683197, 0.026732312515378, -0.008104012347757816, 0.010883423499763012, -0.005500266794115305, 0.011375285685062408, -0.010180763900279999, 0.028496768325567245, -0.01533360406756401, -0.018425308167934418, 0.022219672799110413, 0.026716697961091995, -0.0028594359755516052, -0.030261225998401642, 0.003363009076565504, -0.017504042014479637, -0.010477442294359207, -0.004984982777386904, 0.024780478328466415, 0.000655328098218888, 0.05677493289113045, 0.0013204154092818499, -0.0036421213299036026, 0.03182269260287285, 0.021329635754227638, 0.0031502593774348497, -0.002502250485122204, -0.001760553801432252, 0.0030565713532269, -0.004575097933411598, 0.013303697109222412, -0.01309289876371622, 0.004321359563618898, 0.015302374958992004, -0.001712733879685402, 0.01431084331125021, -0.034102436155080795, -0.02398413047194481, -0.021204719319939613, -0.003977836575359106, -0.011515817604959011, 0.01406100858002901, -0.01670769415795803, -0.01726982370018959, -0.0030585231725126505, -0.01720736362040043, 0.014662173576653004, -0.002857484156265855, 0.001765433349646628, 0.0030995116103440523, 0.004403336439281702, -0.0366632416844368, -0.011133258230984211, -0.01418592594563961, -0.0072959535755217075, 0.034196123480796814, -0.01100053358823061, 0.0023695258423686028, -0.0018532659159973264, -0.021782461553812027, 0.002560805529356003, -0.0043916255235672, -0.007389641832560301, 0.009813819080591202, 0.05262143164873123, -0.012928945012390614, 0.024827321991324425, -0.008673948235809803, -0.004938138648867607, 0.005203587934374809, -0.005551014561206102, 0.004317455925047398, -0.006554257124662399, -0.007190554868429899, 0.0188469048589468, -0.004809317644685507, -0.005511977709829807, -0.008049361407756805, 0.01644224487245083, -0.01695752888917923, 0.03385259956121445, -0.01873760111629963, -0.005121611058712006, -0.01576300710439682, 0.0027598924934864044, 0.011461166664958, 0.0021392095368355513, -0.0042003458365798, -0.005090381950139999, 0.01423276960849762, 0.019174812361598015, -0.007229591254144907, 0.00385291944257915, 0.006886068731546402, 0.014982273802161217, -0.020611362531781197, -0.02481170743703842, -0.008111819624900818, -0.00749894417822361, -0.0005757908802479506, -0.034914396703243256, -0.022297745570540428, 0.0018981581088155508, -0.01125817559659481, -0.011632927693426609, -0.007678512949496508, 0.007151518017053604, 0.010610166937112808, -0.005949188489466906, 0.0010881471680477262, -0.008775443769991398, 0.019112354144454002, 0.0075301737524569035, 0.020158536732196808, -0.03275957331061363, -0.005180166102945805, -0.024109046906232834, -0.0211422611027956, -0.0007592632318846881, 0.015466328710317612, -0.01354572456330061, -0.019721325486898422, 0.02693530172109604, 0.017550887539982796, 0.030542289838194847, 0.02659177966415882, -0.024077817797660828, -0.0213920958340168, 0.009969965554773808, 0.017129290848970413, 0.008439728058874607, 0.023921672254800797, -0.0017947108717635274, 0.009509332478046417, -0.012866486795246601, 0.015005695633590221, 0.0009700612281449139, -0.013990742154419422, 0.023546919226646423, -0.018253546208143234, 0.024561872705817223, 0.007522366475313902, -0.016645235940814018, -0.0065854862332344055, -0.010087075643241405, -0.03688184544444084, 0.004153501708060503, -0.00622634869068861, 0.032822031527757645, 0.01474024634808302, -0.016083108261227608, -0.02143893949687481, 0.0048405472189188, 0.01686384156346321, -0.009400030598044395, -0.051465947180986404, 0.01398293487727642, 0.023749910295009613, -0.0034079013857990503, 0.0025432391557842493, 0.022328974679112434, -0.03024561144411564, -0.015887925401329994, 0.0016590585000813007, 0.052184220403432846, -0.024483799934387207, 0.017254207283258438, 0.0034762155264616013, -0.015841079875826836, 0.003485974622890353, -0.0076628983952105045, -0.010578937828540802, 0.020080463960766792, 0.02790341153740883, -0.03866191953420639, 0.003973932936787605, -0.0123512027785182, -0.00507867056876421, 0.005422193557024002, -0.02409343235194683, -0.0064527615904808044, 0.007186650764197111, 0.004001258872449398, -0.013865824788808823, -0.01011049747467041, -0.029152585193514824, 0.027216365560889244, 0.030635979026556015, -0.001203305320814252, 0.020970499143004417, 0.007366219535470009, 0.015973804518580437, 0.015934769064188004, -0.00896281935274601, 0.015185264870524406, -0.030417373403906822, 0.0036304104141891003, -0.016988757997751236, 0.02134525030851364, -0.01164073497056961, -0.017582116648554802, 0.004664882086217403, 0.0027501333970576525, 0.016723308712244034, 0.025170844048261642, 0.0077682975679636, -0.025373835116624832, 0.013826788403093815, -0.013506688177585602, -0.0016668657772243023, -0.020486444234848022, 0.023250240832567215, 0.0024163699708878994, 0.004333070479333401, -0.0043955291621387005, -0.008104012347757816, 0.03300940990447998, -0.009197039529681206, 0.008502187207341194, 0.017582116648554802, 0.0020904135890305042, 0.012288743630051613, 0.01716051995754242, 0.014787090942263603, -0.010407175868749619, 0.0004211080668028444, 0.011750037781894207, 0.0031522111967206, 0.00043721069232560694, 0.012444890104234219, -0.021829305216670036, -0.0007080276263877749, -0.0037787496112287045, -0.00028447972727008164, -0.007791719399392605, -0.0014599714195355773, 0.005515881348401308, -0.013576953671872616, 0.006655752193182707, -0.01997116021811962, -0.0007421846967190504, -0.020205380395054817, 0.0029472685419023037, 0.0034176604822278023, 0.0193465743213892, -0.011172294616699219, -0.021126646548509598, -0.04059813544154167, -0.016895070672035217, -0.030339300632476807, -0.0033493463415652514, 0.013561339117586613, -0.02562366984784603, 0.017504042014479637, 0.017613345757126808, -0.007885407656431198, -0.0014453326584771276, -0.02943364903330803, -0.024733634665608406, 0.02887152135372162, -0.0022836450953036547, 0.016489088535308838, 0.006550353020429611, 0.0008895481005311012, 0.030214382335543633, 0.0033493463415652514, -0.006089720409363508, -0.0007495040772482753, 0.018628299236297607, 0.013061669655144215, -0.00014333777653519064, 0.005496363155543804, -0.005878922529518604, 0.0031014634296298027, -0.013865824788808823, 0.007003178820014, 0.011016148142516613, 0.014974466525018215, -0.0076043433509767056, -0.008970626629889011, 0.018924977630376816, -0.004376010503619909, 0.011172294616699219, 0.024577487260103226, 0.009158003143966198, 0.010781927965581417, -0.0011662205215543509, -0.03229113295674324, -0.030167538672685623, -0.023187782615423203, 0.01776949316263199, -0.010251029394567013, -0.0008710057009011507, 0.0104384059086442, 0.013779944740235806, -0.009860662743449211, -0.019518334418535233, -0.011031762696802616, 0.017379125580191612, -0.01194522064179182, 0.015755200758576393, -0.0046804966405034065, -0.015271144919097424, -0.0086583336815238, 0.005457326304167509, 0.020345913246273994, -0.013764330185949802, 0.003224428975954652, 0.0163017138838768, 0.0013301745057106018, -0.035632673650979996, -0.011976450681686401, -0.0098060118034482, -0.011515817604959011, -0.009782589972019196, -0.0038002198562026024, -0.003474263707175851, -0.014115659520030022, -0.012585422024130821, 0.0023148744367063046, -0.01041498314589262, 0.017988096922636032, 0.009860662743449211, 0.01823793165385723, -0.02715390734374523, 0.03035491518676281, -0.021470168605446815, -0.0103134885430336, 0.005882826168090105, 0.008236736990511417, 0.006792380474507809, 0.010774120688438416, -0.027684805914759636, 0.0024866359308362007, 0.015099383890628815, -0.011297211982309818, -0.00934537872672081, 0.0007914684829302132, 0.012077945284545422, 0.0036147956270724535, 0.0008695418364368379, -0.015911346301436424, -0.006534738466143608, -0.022485122084617615, 0.00960302073508501, 0.014701209962368011, 0.019986774772405624, -0.01929972879588604, -0.011281597428023815, 0.021891765296459198, 0.0030624268110841513, 0.0010373995173722506, 0.002137257717549801, 0.00972793810069561, -0.018456537276506424, 0.015302374958992004, -0.0004818589077331126, 0.03087019920349121, -0.007092962972819805, -0.001464851084165275, 0.025280147790908813, 0.001983062829822302, 0.013537917286157608, -0.013608182780444622, 0.022297745570540428, -0.021329635754227638, 0.007670705672353506, -0.003845111932605505, 0.011921798810362816, -0.00035620960989035666, -0.006593293510377407, -0.018612684682011604, -0.002279741456732154, -0.017894409596920013, 0.020205380395054817, -2.2507079847855493e-05, -0.022141600027680397, 0.033540308475494385, -0.008767636492848396, -0.01880006119608879, 0.01342080719769001, -0.0001489493006374687, 0.014123466797173023, 0.012983596883714199, 0.018675142899155617, 0.00603506900370121, -0.0175665020942688, 0.03197884187102318, -0.009025278501212597, -0.006960238330066204, -0.023109707981348038, 0.008806672878563404, 0.010508671402931213, 0.012429275549948215, 0.018815675750374794, -0.018222317099571228, -0.02006484754383564, -0.006327844224870205, 0.0016327087068930268, -0.011679771356284618, -0.028840292245149612, 0.0148963937535882, -0.012038908898830414, -0.015177457593381405, 0.003808027133345604, -0.000952006783336401, 0.01227312907576561, -0.0071319998241961, -0.006983660161495209, 0.017660189419984818, -0.0031170782167464495, -0.005180166102945805, 0.0070656375028193, -0.0008202580502256751, 0.02810640260577202, -0.008915975689888, -0.005289468914270401, 0.03191637992858887, -0.010719469748437405, 0.04109780490398407, 0.009610828012228012, 0.014498218894004822, 0.0065854862332344055, -0.012507349252700806, -0.009595213457942009, -0.0034449861850589514, -0.002115787472575903, -0.0006133636925369501, -0.011367478407919407, -0.003770942334085703, -0.019315345212817192, -0.01736351102590561, 0.011734423227608204, -0.03091704286634922, 0.023234626278281212, 0.0015419485280290246, -0.0023988033644855022, -0.019736940041184425, -0.0014287420781329274, 0.01567712612450123, -0.015107191167771816, -0.007014889735728502, -0.021860536187887192, -0.004344781395047903, -0.0037358093541115522, -0.030745280906558037, -0.02378113940358162, -0.008096205070614815, -0.0028613880276679993, -0.023999745026230812, 0.005878922529518604, -0.018409693613648415, 0.003240043530240655, 0.0015399965923279524, -0.0034762155264616013, 0.008556838147342205, -0.0020865099504590034, -0.02042398601770401, 0.009243883192539215, -0.0053167943842709064, -0.002020147629082203, 0.010087075643241405, 0.0015712259337306023, 0.014427953399717808, -0.007557499222457409, -0.005008404608815908, 0.004317455925047398, -0.018675142899155617, -0.01812862977385521, -0.0009095544228330255, 0.0025529982522130013, 0.0038021716754883528, -0.006444954313337803, 0.04393967613577843, 0.0021626316010951996, 0.015622475184500217, 0.017332281917333603, 0.01873760111629963, -0.012280936352908611, -0.005375349428504705, 0.005941381212323904, 0.006347362417727709, -0.013139743357896805, 0.012296550907194614, 0.005195780657231808, 0.016176795586943626, -0.008033746853470802, -0.0269977618008852, 0.008244544267654419, 0.012515156529843807, 0.001740059582516551, -0.02632633037865162, 0.02638878859579563, 0.027919026091694832, -0.014912008307874203, -0.023546919226646423, 0.017379125580191612, 0.0014336217427626252, 0.03269711509346962, -0.010321295820176601, -0.013639412820339203, 0.020486444234848022, 0.006308326032012701, 0.008119627833366394, -0.020283453166484833, -0.0009432235383428633, -0.005238721147179604, -0.003944655414670706, 0.008791058324277401, -0.005422193557024002, -0.0039719813503324986, 0.006191215943545103, 0.0128586795181036, -0.004606327041983604, -0.01904989592730999, -0.00264278263784945, -0.002121642930433154, -0.02143893949687481, 0.0013770185178145766, 0.014958851970732212, -0.005266046617180109, -0.004664882086217403, 8.026915020309389e-05, -0.022172829136252403, -0.03850577026605606, -0.01207013800740242, -0.003320068819448352, 0.019924316555261612, -0.006140468176454306, 0.013046055100858212, -0.015099383890628815, 0.01767580397427082, 0.012038908898830414, -0.014459182508289814, -0.00482493219897151, -0.020189765840768814, -0.0060506840236485004, -0.04415827989578247, -0.013904862105846405, -0.013389578089118004, -0.009665479883551598, 0.012632266618311405, 0.00022324096062220633, -0.0036831097677350044, 0.008564645424485207, 0.0077019352465868, -0.016317328438162804, 0.0019977015908807516, 0.024608716368675232, 0.011664156801998615, 0.0226724985986948, 0.01346765086054802, 0.005632991436868906, 0.009236075915396214, -0.00337472022511065, 0.008346039801836014, -0.003415708662942052, 0.008486571721732616, -0.023312699049711227, 0.010016809217631817, -0.0009910435182973742, 0.011867147870361805, -0.015060347504913807, -0.0012901619775220752, -0.0183316208422184, 0.0073232795111835, -0.0008397763594985008, 0.019690096378326416, -0.0009803083958104253, 0.0043369741179049015, 0.014466989785432816, 0.016426630318164825, -0.01142993662506342, 0.0094234524294734, 0.006253674626350403, -0.006296615116298199, 0.0272475965321064, 0.006659655831754208, -0.008752021007239819, -0.004001258872449398, -0.0015585391083732247, -0.029714712873101234, -0.009251690469682217, -0.024202736094594002, -0.012515156529843807, -0.004641460254788399, 0.0028243029955774546, -0.008322617970407009, -0.012156018987298012, 0.0037631350569427013, -0.015208686701953411, -0.01053990051150322, -0.005351927597075701, -0.01423276960849762, -0.0023226819466799498, 0.005055248737335205, -0.02150139771401882, 0.0274974312633276, 0.012882101349532604, -0.01904989592730999, 0.002228993922472, 0.00680018775165081, -0.014958851970732212, 0.013061669655144215, 0.011148872785270214, 0.03909912705421448, 0.0018005664460361004, 0.01711367629468441, -0.01308509148657322, -0.002773555461317301, -0.011671964079141617, 0.020002389326691628, -0.010305681265890598, 0.03569513186812401, 0.01346765086054802, 0.01894059218466282, 0.014833934605121613, 0.007401352748274803, 0.010945882648229599, 0.01449041161686182, -0.011500203050673008, 0.011117643676698208, -0.0259828083217144, 0.013358348980545998, -0.014623136259615421, -0.004883487243205309, -0.01239804644137621, -0.017753876745700836, -0.013194394297897816, -0.0010891230776906013, 0.028340622782707214, -0.024671176448464394, 0.015138420276343822, -0.007803430315107107, -0.000514308107085526, -0.0018464345484972, 0.0033961902372539043, 0.004067621193826199, 0.007502847816795111, 0.006441050674766302, 0.015310182236135006, 0.018862519413232803, -0.01449041161686182, -0.020861197263002396, -0.0046492675319314, 0.01360037550330162, -0.03166654706001282, 0.009954351000487804, -0.030698437243700027, 0.00018261841614730656, -0.0010413031559437513, -0.018518995493650436, 0.019315345212817192, -0.03138548135757446, 0.007284242659807205, 0.013514495454728603, 0.009290727786719799, 0.0007948841666802764, 0.010547708719968796, 0.008853516541421413, -0.008720791898667812, -0.0024475993122905493, -0.0086583336815238, -0.006210734136402607, 0.011578276753425598, 0.0013379818992689252, 0.007416967302560806, -0.01940903253853321, -0.024171506986021996, 0.009743552654981613, 0.016926299780607224, 0.018815675750374794, -0.01625487022101879, -0.022188443690538406, 0.02841869555413723, 0.009509332478046417, 0.007694127503782511, -0.0129914041608572, 0.0007739019929431379, -0.006784573197364807, -0.017457198351621628, -0.012725954875349998, 0.01360037550330162, -0.027060220018029213, -0.024124661460518837, 0.007334990426898003, 0.019533948972821236, 0.00648008706048131, -0.011031762696802616, 0.007760489825159311, 0.004368203226476908, 0.0198618583381176, -0.004778088536113501, 0.022906718775629997, 0.012382431887090206, -0.0156537052243948, -0.0034079013857990503, -0.0032127180602401495, 0.007366219535470009, -0.005344120319932699, 0.003950511105358601, 0.025467524304986, -0.006776765920221806, 0.02474924921989441, -0.03457087650895119, 0.009485910646617413, 0.00926730502396822, -0.025748588144779205, 0.011062992736697197, 0.016473473981022835, -0.008033746853470802, 0.020548902451992035, 0.007904925383627415, -0.027278825640678406, 0.004387721884995699, -0.008322617970407009, -0.0050474414601922035, 0.009696708992123604, -0.0047117262147367, -0.008431920781731606, -0.0073545086197555065, -0.015146227553486824, -2.5678809834062122e-05, -0.024483799934387207, 0.0068353209644556046, -0.012319972738623619, 0.020252224057912827, 0.006441050674766302, 0.002387092448771, -0.0044892169535160065, 0.005953092128038406, -0.0028652916662395, -0.03254096955060959, 0.016426630318164825, 0.003124885493889451, -0.008845709264278412, -0.004020777065306902, 0.02479609288275242, 0.011359671130776405, -0.015489750541746616, 0.017051218077540398, 0.013053862378001213, -0.0154116777703166, 0.021641930565238, -0.008541223593056202, 0.016692079603672028, 0.017613345757126808, 0.0024729729630053043, 0.007877600379288197, 0.0028887134976685047, -0.0057188719511032104, -0.0080181322991848, 0.013569146394729614, 0.005422193557024002, -0.013491073623299599, 0.009134580381214619, -0.016941914334893227, 0.002562757348641753, -0.010883423499763012, 0.0017283485503867269, -0.0024417436216026545, 0.016770154237747192, 0.007143710739910603, -0.00023812368453945965, -0.009532755240797997, 0.015708355233073235, -0.011820303276181221, 0.008908168412744999, 0.03503931686282158, -0.011531432159245014, -0.006109239067882299, 0.013280275277793407, -0.009337571449577808, 0.016286099329590797, -0.0031092707067728043, -0.018550226464867592, -0.0038373046554625034, -0.0043369741179049015, 0.0013594520278275013, 0.04053567722439766, 0.013061669655144215, -0.0063044223934412, 0.0105711305513978, 0.01321781612932682, -0.009501525200903416, 0.0320725291967392, 0.007463811431080103, -0.006011647172272205, 0.005761812441051006, 0.009509332478046417, 0.021314021199941635, 0.014919815585017204, -0.007085155695676804, 0.017504042014479637, 0.013904862105846405, 0.000994947156868875, -0.0025959385093301535, 0.003745568450540304, 0.015599053353071213, 0.015466328710317612, -0.0029902090318500996, -0.000694852729793638, -0.03772503882646561, 0.0084084989503026, -0.0072217839770019054, 0.008431920781731606, -0.006296615116298199, -0.005484652239829302, 0.0012706436682492495, -0.019939931109547615, -0.005426097195595503, -0.023390771821141243, -0.003798268036916852, -0.022438278421759605, 0.013811173848807812, -0.005152840632945299, -0.01940903253853321, -0.01105518452823162, 0.019018664956092834, -0.0005274830036796629, -0.007842467166483402, -0.0076043433509767056, 0.008728599175810814, 0.015614667907357216, 0.005511977709829807, -0.014451375231146812, -0.005086478311568499, -0.018113015219569206, 0.0036674952134490013, 0.0269977618008852, 0.012663495726883411, -0.009048700332641602, -0.007678512949496508, 0.005055248737335205, -0.005551014561206102, -0.01650470495223999, -0.005422193557024002, 0.003542577847838402, -0.018316006287932396, -0.008541223593056202, -0.00016761370352469385, -0.028606072068214417, -0.009571791626513004, 0.003484022803604603, -0.014443567954003811, -0.03416489437222481, 0.003817786229774356, -0.01848776638507843, 0.00026520536630414426, -0.033540308475494385, 0.01538044773042202, -0.016005035489797592, 0.014318650588393211, 0.05362077057361603, 0.0075106555595994, -0.009907507337629795, -0.0030585231725126505, -0.023031635209918022, -0.02729444019496441, 0.004555579274892807, -0.00042354787001386285, -0.02898082323372364, 0.012116982601583004, -0.015138420276343822, -0.0010705806780606508, -0.009079929441213608, -0.010461827740073204, -0.004742955323308706, 0.0285279992967844, -0.02963664010167122, 0.008486571721732616, -0.0036772543098777533, 0.016489088535308838, -0.004813221283257008, -0.008119627833366394, 0.028762219473719597, -0.002412466099485755, 0.00014419169747270644, -0.01278060581535101, 0.009977772831916809, 0.008986241184175014, 0.019065510481595993, -0.011726615950465202, 0.004770281258970499, 0.00883790198713541, 0.003411805024370551, 0.007061733398586512, 0.031853921711444855, -0.010789735242724419, -0.0060506840236485004, -0.0045829052105546, 0.007186650764197111, 0.0193465743213892, 0.014826127327978611, -0.017051218077540398, 0.013428614474833012, -0.004130079876631498, 0.030901428312063217, -0.019440261647105217, 0.027731649577617645, 0.023094093427062035, -0.009025278501212597, -0.014217155054211617, -0.0016083108494058251, -0.033477846533060074, -0.009204846806824207, 0.0018171570263803005, -0.007885407656431198, -0.009610828012228012, 0.019377803429961205, -0.0056251841597259045, 0.014529448933899403, 0.016785768792033195, -0.030432987958192825, -0.0054729413241147995, 0.010680433362722397, 0.0007265700260177255, 0.012085753493010998, 0.002412466099485755, 0.016723308712244034, -0.0062380600720644, 0.015606860630214214, 0.01828477717936039, 0.004493120592087507, 0.008275774307549, 0.014006357640028, 0.011742230504751205, -0.02796586975455284, -0.020361527800559998, -0.016520319506525993, 0.0013662835117429495, 0.02195422351360321, -0.01956517994403839, 0.0022153309546411037, 0.010024616494774818, 0.0036362658720463514, 0.016832612454891205, 0.024468185380101204, 0.0047117262147367, 0.010087075643241405, -0.001298945164307952, -0.006659655831754208, -0.004173019900918007, -0.028793448582291603, 0.0012969933450222015, 0.004660978447645903, -0.016161181032657623, -0.0045829052105546, 0.023156553506851196, 0.012585422024130821, 0.0034879264421761036, -0.0062185414135456085, -0.0029843533411622047, -0.0198618583381176, 0.024109046906232834, 0.011172294616699219, 0.011141065508127213, 0.03503931686282158, 0.0045633865520358086, -0.019877472892403603, 0.00584378931671381, -0.0037943643983453512, 0.004715629853308201, 0.0201116930693388, 0.012109175324440002, 0.025280147790908813, 0.007729260716587305, -0.013030440546572208, 0.01023541484028101, 0.01283525675535202, 0.012156018987298012, -0.005465134046971798, -0.001209160895086825, 0.0056837392039597034, 0.011406514793634415, -0.00947029609233141, 0.005152840632945299, 0.008174278773367405, 0.008104012347757816, -0.0001985990529647097, 0.023874826729297638, 0.023297084495425224, 0.0033278760965913534, 0.011851533316075802, 0.010711662471294403, -0.0173166673630476, -0.007463811431080103, -0.007311568129807711, 0.018050557002425194, 0.019096739590168, -0.008876938372850418, 0.009353186003863811, -0.008033746853470802, -0.020564517006278038, -0.03600742295384407, 0.006152179092168808, 0.0180817861109972, 0.016083108261227608, -0.009431259706616402, 0.010149533860385418, -0.0006772862398065627, 0.0084006916731596, -0.002761844312772155, 0.008752021007239819, 0.010016809217631817, -0.00926730502396822, 0.006968045607209206, 0.0105711305513978, 0.010399368591606617, 0.01041498314589262, 0.013194394297897816, 0.019924316555261612, 0.0063005187548696995, 0.027950255200266838, -0.00019188963051419705, 0.0141312750056386, -0.010009001940488815, 0.008634911850094795, -0.015513172373175621, -0.009134580381214619, 0.002816495718434453, -0.0030741377267986536, -0.01639540120959282, -0.022032296285033226, -0.0032751765102148056, 0.016645235940814018, 0.02985524572432041, 0.03146355599164963, -0.0015409725019708276, -0.0004918620688840747, 0.0072959535755217075, -0.0005006453138776124, 0.010657010599970818, -0.018815675750374794, -0.003316165180876851, -0.003733857534825802, 0.016848227009177208, -0.014841741882264614, -0.0056251841597259045, -0.002679867437109351, 0.006179505027830601, 0.007050022482872009, 0.007299857214093208, -0.02073627896606922, -0.006581582594662905, 0.0087832510471344, 0.021673159673810005, 0.0078932149335742, 0.002443695440888405, -0.009462488815188408, -0.015317989513278008, 0.012085753493010998, -0.01435768697410822, 0.013655027374625206, -0.00870517734438181, -0.027419356629252434, -0.002519817091524601, -0.0070656375028193, 0.014685595408082008, 0.012788413092494011, -0.01150801032781601, 0.010719469748437405, -0.017597731202840805, 0.014037586748600006, -0.005059152375906706, -0.012429275549948215, -0.01767580397427082, 0.006339555140584707, 0.018628299236297607, 0.0025120098143815994, -0.01003242377191782, -0.03222867473959923, -0.0030956079717725515, -0.02963664010167122, 0.005367542151361704, 0.003888052422553301, -0.004149598069489002, 0.0005465133581310511, -0.009618635289371014, 0.005250432062894106, -0.005945284850895405, -0.005558821838349104, -0.019471490755677223, 0.018159858882427216, -0.020845582708716393, -0.004055909812450409, 0.011820303276181221, 0.012179440818727016, -0.01308509148657322, -0.00590624799951911, 0.004715629853308201, 0.008681755512952805, 0.0020630881190299988, 0.028028329834342003, -0.0047976067289710045, -0.004434565547853708, -0.004813221283257008, 0.021423324942588806, -0.01380336657166481, 0.009095543995499611, -0.002461262047290802, 0.001522430102340877, -0.002297308063134551, 0.01321781612932682, -0.01853461004793644, -0.01296017412096262, -0.017910024151206017, -0.001219895901158452, 0.009704516269266605, 0.00025251845363527536, -0.004243285860866308, 0.007151518017053604, -0.0069875638000667095, -0.0011545094894245267, -0.02006484754383564, -0.004742955323308706, -0.0045126392506062984, 0.021064186468720436, -0.0024749247822910547, -0.003921233583241701, 0.0012364864815026522, -0.016364172101020813, -0.0122262854129076, -0.010813158005475998, 0.024421341717243195, -0.015239915810525417, 0.0052855652756989, -0.004828836303204298, 0.0055666291154921055, 0.016489088535308838, -0.020299067720770836, 0.030932657420635223, 0.0090408930554986, -0.002857484156265855, -0.015185264870524406, -0.005796945653855801, 0.02638878859579563, -0.00883790198713541, -0.003977836575359106, 0.015435099601745605, -0.013694063760340214, -0.02841869555413723, 6.758223753422499e-05, -0.002406610641628504, 0.029933318495750427, -0.025967193767428398, -0.0048366435803473, 0.001490224851295352, 0.012132597155869007, -0.004465795122087002, -0.012116982601583004, 0.008673948235809803, -0.021126646548509598, 0.0006933888653293252, -0.003294694935902953, 0.009837240912020206, -0.02567051351070404, -1.656008680583909e-05, -0.009212654083967209, -0.003130740951746702, 0.008994048461318016, 0.002566660987213254, -0.012569807469844818, -0.006858742795884609, 0.0033864311408251524, -0.009524947963654995, 0.000880276900716126, -0.013584760949015617, 0.0012638121843338013, 0.005254335701465607, -0.008346039801836014, -0.014927622862160206, -0.004610230680555105, -0.014974466525018215, 0.008338232524693012, 0.007787815760821104, 0.004383818246424198, -0.009376607835292816, -0.01164073497056961, 0.0042042494751513, -0.003267369233071804, 0.004102753940969706, -0.0021548240911215544, -0.009735745377838612, -0.006753344088792801, -0.01848776638507843, -0.006253674626350403, -0.011617313139140606, -0.03460210561752319, 0.00603506900370121, 0.0030409565661102533, -0.01512280572205782, -0.003039004746824503, 0.0011886665597558022, -0.008119627833366394, -0.008619296364486217, 0.01945587620139122, 0.0013779944274574518, -0.03121372126042843, 0.00327908038161695, 0.002297308063134551, 0.008213315159082413, -0.02082996629178524, 0.012975789606571198, -0.014990081079304218, 0.023671837523579597, 0.016020650044083595, 0.011976450681686401, -0.027231981977820396, 0.020564517006278038, -0.0026017939671874046, -0.0024593102280050516, 0.011211331933736801, -0.016005035489797592, -0.02143893949687481, -0.021017342805862427, 0.009751359932124615, 0.019174812361598015, -0.005293372552841902, -0.017831951379776, 0.00021762943651992828, -0.00737402681261301, 0.033384159207344055, -0.03294694796204567, -0.008416306227445602, 0.0011408466380089521, 0.006202926859259605, -0.0008631983655504882, 0.01436549425125122, -0.0006660631624981761, 0.004184730816632509, 0.009337571449577808, -0.0005957972025498748, 0.0024729729630053043, 0.005293372552841902, 0.01792563870549202, 0.02022099494934082, -0.006647944916039705, 0.03503931686282158, -0.012234092690050602, -0.020689435303211212, 0.0024944432079792023, 0.022438278421759605, 0.012171633541584015, 0.00960302073508501, -0.02072066441178322, -0.0005606641643680632, 0.008369461633265018, -0.0007021721103228629, 0.0025120098143815994, 3.8823189242975786e-05, 0.006577678956091404, 0.02612333931028843, -0.0008602706366218626, -0.0068704537115991116, -0.03229113295674324, -0.009439066983759403, -0.010211993008852005, -0.009782589972019196, -0.0004284274473320693, 0.01405320130288601, 0.003113174345344305, 0.017222978174686432, -0.011953028850257397, -0.01392828393727541, -0.019081125035881996, -0.004356492310762405, 0.02617018297314644, -0.001792759052477777, 0.026982147246599197, -0.024874165654182434, 0.007592632435262203, -0.024327652528882027, -0.019237270578742027, 0.0035503851249814034, 0.021267177537083626, -0.007967384532094002, -0.001585864694789052, -0.0050474414601922035, 0.0018640010384842753, 0.01036813948303461, 0.04715629667043686, -0.005746197886765003, -0.022328974679112434, -0.005789138376712799, -0.002572516677901149, -0.0016473474679514766, -0.009532755240797997, -0.0010979063808918, 0.01245269738137722, -0.004984982777386904, -0.0005084526492282748, -0.011492395773530006, -0.01801932603120804, 0.004805414006114006, 0.030339300632476807, -0.01925288513302803, -0.0036889652255922556, 0.006550353020429611, 0.009251690469682217, -0.0047390516847372055, -0.005691546481102705, 0.013904862105846405, 0.002242656657472253, 0.03010508045554161, 0.001618069945834577, -0.0009968989761546254, 0.005394867621362209, -0.019330959767103195, -0.010883423499763012, 0.02031468227505684, -0.00018981580797117203, 0.0025822757743299007, 0.008549030870199203, -0.027231981977820396, -0.0067494404502213, 0.016738923266530037, -0.001946953940205276, 0.006975852884352207, 0.007362315896898508, -0.0115860840305686, 0.0007739019929431379, -0.0236874520778656, 0.00807278323918581, 0.027028990909457207, 0.020408371463418007, 0.04059813544154167, -0.026919687166810036, 0.0018688805866986513, -0.007686320226639509, -0.0029375094454735518, 0.014248384162783623, -0.0016668657772243023, 0.020377142354846, 0.006179505027830601, -0.008869131095707417, -0.01023541484028101, 0.009079929441213608, -0.006530834827572107, -0.0136237982660532, -0.003448889823630452, -0.006784573197364807, 0.0068353209644556046, -0.0030253420118242502, 0.009048700332641602, 0.005109900142997503, -0.008369461633265018, -0.016676465049386024, 0.019065510481595993, 0.019939931109547615, -0.015068154782056808, -0.00048307879478670657, 0.012804027646780014, -0.004754666239023209, -0.008845709264278412, -0.008673948235809803, 0.0050942855887115, -0.014404531568288803, -0.0021177392918616533, 0.01776949316263199, -0.008494378998875618, -0.012741569429636002, 0.007916636765003204, 0.01900305040180683, 0.006472279783338308, -0.001777144381776452, 0.004110561218112707, 0.02200106717646122, -0.009688901714980602, 0.02785656787455082, 0.004196442198008299, 0.0032810322009027004, 0.01418592594563961, 0.009938736446201801, 0.009634249843657017, -0.007861985825002193, 0.009197039529681206, -0.010305681265890598, 0.018113015219569206, -0.04066059738397598, 0.0100558465346694, -0.020392756909132004, 0.02704460546374321, -0.0180817861109972, 0.016489088535308838, 0.0026544935535639524, 0.009563984349370003, -0.007990806363523006, 0.0074716187082231045, -0.005418289918452501, 0.0028028329834342003, -0.0025120098143815994, -0.0036772543098777533, -0.022531965747475624, 0.01049305684864521, 0.014716824516654015, 0.0064527615904808044, 0.027887796983122826, -0.00366163975559175, -0.0007480402127839625, -0.011453359387814999, 0.01201548706740141, -0.007077348418533802, 0.012827449478209019, -0.0160362645983696, 0.010657010599970818, -0.015903539955615997, -0.024624330922961235, -0.025295762345194817, 0.0043291668407619, -0.022172829136252403, 0.0024202736094594, 0.003644073149189353, 0.013014825992286205, 0.006296615116298199, -0.0035191557835787535, -0.0015097431605681777, -0.012725954875349998, 0.007038311567157507, -0.013233431614935398, -0.017129290848970413, -0.02459310181438923, 0.0019908701069653034, 0.007885407656431198, -0.004235478583723307, 0.01625487022101879, 0.0034918300807476044, 0.01283525675535202, 0.0018854711670428514, -0.01538044773042202, -0.002252415753901005, -0.02577981725335121, -0.014162504114210606, -0.0012608844554051757, -0.015271144919097424, 0.030885813757777214, -0.019190426915884018, 0.033790141344070435, 0.000572863151319325, 0.01580985076725483, -0.017394740134477615, -0.009509332478046417, 0.006823610048741102, 0.01751965843141079, 0.009938736446201801, -0.0080181322991848, -0.0014560677809640765, 0.0234376173466444, 0.023562533780932426, -0.020767508074641228, -0.005582243669778109, -0.01563028246164322, -0.005402675364166498, 0.001156461308710277, 0.008853516541421413, 0.019487105309963226, -0.01474024634808302, 0.021470168605446815, 0.008470957167446613, -0.002921894658356905, 0.0006133636925369501, 0.004215960390865803, -0.03101073019206524, 0.00010960765212075785, -0.013272468000650406, -0.011547046713531017, -0.013046055100858212, -0.0037846050690859556, -0.017457198351621628, 0.016286099329590797, 0.016692079603672028, -0.020205380395054817, 0.015622475184500217, 0.010500864125788212, -0.009368800558149815, -0.010102690197527409, 0.02072066441178322, 0.014271806925535202, -0.005000597331672907, -0.0141312750056386, 0.007943962700664997, -0.03784995526075363, 0.016473473981022835, 0.015232108533382416, -0.016317328438162804, -0.010016809217631817, 0.011554853990674019, -0.0070461188443005085, 0.014373301528394222, 0.0239372868090868, 0.0006641113432124257, -0.0039797886274755, 0.011874955147504807, -0.0134988809004426, 0.012897715903818607, -0.002184101613238454, -0.0007763417670503259, -0.0019772073719650507, 0.007405256386846304, -0.01112545095384121, -0.015560016967356205, -0.022922333329916, -0.016582777723670006, -0.00200648489408195, -0.006191215943545103, 0.004778088536113501, 0.003521107602864504, -0.011390900239348412, 0.016567163169384003, -0.029652254655957222, 0.012725954875349998, -0.00034547451650723815, 0.0008505114237777889, 0.016973143443465233, -0.002933605806902051, 0.0290276687592268, 0.01580985076725483, -0.017894409596920013, 0.011344056576490402, 0.0032010069116950035, -0.0020240512676537037, 0.0032127180602401495, 0.006936816498637199, -0.013397385366261005, -0.007678512949496508, 0.007042215205729008, -0.001670769532211125, 0.0005391939776018262, 0.022422663867473602, -0.020189765840768814, 0.030073851346969604, 0.04044198989868164, 0.025654898956418037, -0.008104012347757816, 0.013897054828703403, -0.00660890806466341, -0.03488316759467125, 0.0032927431166172028, 0.0024534547701478004, -0.02209475450217724, 0.01201548706740141, 0.0002917991077993065, 0.018831290304660797, 0.006776765920221806, 0.028840292245149612, 0.00673382543027401, 0.021720003336668015, 0.01194522064179182, -0.006011647172272205, -0.006273192819207907, 0.01894059218466282, -0.028075173497200012, -0.0064332433976233006, 0.010532093234360218, 0.007787815760821104, 0.004059813916683197, -0.007873696275055408, 0.0001286990154767409, -0.021329635754227638, -0.0017898313235491514, 0.004461891483515501, -0.01614556647837162, -0.030526675283908844, 0.0175665020942688, 0.014763668179512024, -0.005703257396817207, 0.016567163169384003, 0.0019450021209195256, -0.006339555140584707, -0.006046780385077, 0.004434565547853708, 0.014630943536758423, 0.002806736622005701, -0.007409160025417805, 0.0010803398909047246, -0.004176923539489508, -0.015481943264603615, -0.0040285843424499035, 0.0150213111191988, 0.002949220361188054, 0.016692079603672028, 0.005371445789933205, -0.016723308712244034, -0.02542067877948284, -0.016832612454891205, -0.022891104221343994, 0.005457326304167509, 0.005691546481102705, 0.0014199588913470507, -0.00019445140787865967, -0.00013516447506844997, 0.0030565713532269, 0.009314149618148804, -0.022844258695840836, 0.006850935518741608, 0.011960836127400398, 0.0012384384172037244, -2.3925209461594932e-05, 0.0012657640036195517, 0.020377142354846, -0.010914652608335018, 0.004102753940969706, 0.011211331933736801, -0.0009451753576286137, -0.010586745105683804, -0.014334265142679214, -0.009509332478046417, 0.020142922177910805, 0.014498218894004822, 0.008166471496224403, -0.0119686434045434, 0.018503380939364433, -0.018409693613648415, 0.02389044128358364, 0.004497024230659008, 0.025748588144779205, 0.005266046617180109, -0.020408371463418007, 0.0008280653855763376, -0.011671964079141617, 0.002461262047290802, 0.0027716036420315504, 0.001707854331471026, 0.0054104826413095, -0.015520979650318623, 0.012850872240960598, -0.0008388004498556256, 0.0010364236077293754, 0.018316006287932396, -0.004996693693101406, 0.0160518791526556, -0.011468973942101002, 0.027919026091694832, -0.0062770964577794075, -0.004036391619592905, -0.01634855754673481, -0.0006011647055856884, 0.012554192915558815, 0.016129951924085617, 0.004274515435099602, -0.005586147308349609, -0.014248384162783623, -0.012640073895454407, -0.013311504386365414, -0.02643563225865364, 0.003745568450540304, 0.00014382573135662824, -0.01087561622262001, 0.008814480155706406, 0.008002517744898796, -0.011515817604959011, -0.0036460249684751034, -0.01406100858002901, -0.006398110184818506, -0.019268499687314034, 0.0017381077632308006, -0.008517801761627197, 0.012905523180961609, 0.010079268366098404, -0.0067025963217020035, -0.007651187479496002, -0.02073627896606922, -0.0045282538048923016, 0.0168013833463192, -0.00450483150780201, -0.012819642201066017, 0.007092962972819805, -0.0041378871537745, -0.020502058789134026, -0.026341944932937622, 0.009017471224069595, -0.019643252715468407, 0.026310715824365616, -0.012741569429636002, 0.004184730816632509, -0.012062330730259418, 0.006511316634714603, -0.007670705672353506, 0.013350540772080421, 0.005773523356765509, 0.005059152375906706, -0.016567163169384003, 0.030479831621050835, 0.007143710739910603, 0.0039914995431900024, -0.0208768118172884, -8.630763659311924e-06, 0.004477506037801504, 0.02306286431849003, -0.00985285546630621, -0.0052192029543221, 0.005695450119674206, -0.007233494892716408, 0.001771288923919201, -0.00012991891708225012, 0.00794786587357521, -0.015161843039095402, 0.015239915810525417, 0.007096866611391306, 0.006425436120480299, 0.002445647493004799, -0.009790397249162197, 0.015193072147667408, -0.01920604147017002, -0.01520087942481041, -0.015161843039095402, -0.010602359659969807, -0.0024651656858623028, 0.006612811703234911, -0.009540562517940998, 0.026747927069664, 0.01762896031141281, 0.019221656024456024, -0.01787879504263401, -0.013506688177585602, 0.01474024634808302, -0.00939222238957882, -0.029215043410658836, -0.014904201030731201, 0.009376607835292816, -0.017550887539982796, -0.004196442198008299, 0.01296017412096262, 0.025529982522130013, -0.009368800558149815, 0.012647881172597408, 0.015848888084292412, 0.011023955419659615, 0.003936848137527704, -0.03147917240858078, -0.006343458779156208, 0.006167794112116098, 0.015848888084292412, -0.009337571449577808, 0.010664817877113819, 0.022219672799110413, 0.04397090524435043, 0.0040871393866837025, -0.013069476932287216, 0.011874955147504807, -0.021673159673810005, 0.005289468914270401, 0.010735084302723408, -0.01469340268522501, -0.005835982039570808, 0.005402675364166498, 0.0023324410431087017, 0.0001861561177065596, 0.0015985516365617514, 0.0033688645344227552, -0.002943364903330803, -0.006222445052117109, 0.002301211701706052, -0.013592568226158619, -0.005746197886765003, -0.010274451225996017, -0.012132597155869007, 0.013256853446364403, -0.0028047848027199507, 0.04618818685412407, 0.02042398601770401, 0.004879583604633808, -0.008260159753262997, -0.0033005503937602043, -0.021329635754227638, 0.0063942065462470055, 0.02506154216825962, 0.012132597155869007, -0.007171036209911108, -0.009126773104071617, -0.008119627833366394, 0.016411015763878822, 0.008064975962042809, -0.03279080241918564, -0.013428614474833012, 0.005773523356765509, -0.002566660987213254, 0.005191877018660307, 0.027669191360473633, 0.003134644590318203, -0.00520749157294631, -0.011882762424647808, 0.00686264643445611, 0.007338894065469503, 0.02285987325012684, 0.012007679790258408, -0.020392756909132004, -0.012554192915558815, 0.006729921791702509, 0.017613345757126808, 0.008556838147342205, -0.015388255007565022, 0.02093927003443241, 0.0021762943360954523, 8.771051943767816e-05, -0.001782999956049025, 0.010469635017216206, 0.027981484308838844, -0.0042784190736711025, -0.0004889342817477882, -0.013053862378001213, 0.014623136259615421, -0.01828477717936039, -0.010422791354358196, 0.0023792849387973547, 0.010641396045684814, -0.0239372868090868, 0.011773459613323212, -0.010196378454566002, 0.004426758270710707, -0.022750571370124817, -0.007135903462767601, -0.005808656569570303, -0.015489750541746616, 0.012889908626675606, 0.014146889559924603, -0.017941253259778023, -0.009782589972019196, -0.009306342341005802, -0.002510057995095849, 0.022266516461968422, 0.005586147308349609, 0.01645785942673683, -0.0038919560611248016, 0.024764863774180412, -0.007213976699858904, -0.0022914526052773, 0.002359766745939851, 0.010664817877113819, 0.004559482913464308, -0.03335293009877205, -0.017051218077540398, -0.006308326032012701, -0.014591907151043415, -0.018003711476922035, -0.01474805362522602, -0.02246950753033161, -0.010024616494774818, 0.01499788835644722, 0.014904201030731201, -0.01920604147017002, 0.0006441050791181624, 0.002763796132057905, 0.003915377892553806, -0.005632991436868906, -0.005133321974426508, 0.004992790054529905, 0.017753876745700836, -0.0068197064101696014, -0.017800722271203995, -0.009610828012228012, -0.023187782615423203, 0.013662834651768208, 0.007463811431080103, 0.008260159753262997, 0.008642719127237797, -0.004403336439281702, 0.010781927965581417, 0.017800722271203995, 0.001474610180594027, 0.0168013833463192, 0.005383156705647707, 0.009462488815188408, 0.01367844920605421, -0.015052540227770805, 0.00337472022511065, -0.0160362645983696, -0.010172956623136997, 0.010485249571502209, 0.010680433362722397, 0.0025451909750699997, 0.008689562790095806, -0.0076980311423540115, -0.0056681246496737, 0.014716824516654015, -0.004477506037801504, 0.011617313139140606, 0.03834962472319603, 0.020345913246273994, 0.006565968040376902, 0.01104737725108862, 0.0247024055570364, -0.004059813916683197, -0.002217282773926854, -0.012983596883714199, 0.0056642210111021996, 0.011398707516491413, -0.010766313411295414, -0.003997355233877897, 0.015638090670108795, 0.009212654083967209, -0.0059843217022717, 0.010891230776906013, -0.015606860630214214, -0.018050557002425194, -0.008908168412744999, -0.016208024695515633, -0.011913991533219814, -0.017488427460193634, -0.010961497202515602, 0.01742596924304962, 0.012811834923923016, -0.006070202216506004, 0.023812368512153625, -0.0007553595933131874, -0.007034407928586006, 0.0007831731927581131, -0.003927088808268309, 0.010485249571502209, -0.007342797704041004, 0.0029375094454735518, -0.017082447186112404, 0.016676465049386024, -0.009384415112435818, -0.0028945691883563995, -0.01848776638507843, 0.008291388861835003, -0.020970499143004417, 0.015286760404706001, 0.017441583797335625, 0.008791058324277401, 0.017098061740398407, 0.022375820204615593, -0.002000629436224699, -0.014474797062575817, -0.0031014634296298027, 0.0047039189375936985, -0.026107724756002426, -0.006569871678948402, 0.016770154237747192, -0.0025647091679275036, -0.0052855652756989, -0.004832739941775799, 0.003128789132460952, 0.015146227553486824, -0.0049888864159584045, -0.007428678218275309, -0.02276618592441082, 0.015435099601745605, 0.01823793165385723, 0.00743648549541831, 0.015958189964294434, -0.00926730502396822, -0.01265568844974041, -0.011500203050673008, -0.004770281258970499, -0.0022348493803292513, -0.011547046713531017, 0.004879583604633808, -0.0016405161004513502, 0.02949610725045204, 0.003948559053242207, -0.007787815760821104, -0.012257514521479607, -0.01675453968346119, 0.009111158549785614, -0.0034039977472275496, -0.031760234385728836, -0.0032283326145261526, 0.005375349428504705, 0.012819642201066017, -0.0024417436216026545, -0.0006328820018097758], "372e09b4-a41b-491f-a954-717248f64974": [-0.038257766515016556, 0.008614573627710342, -0.012501726858317852, 0.03556891158223152, -0.012859754264354706, -0.00755510525777936, -0.028949059545993805, 0.007456465158611536, -0.02048792690038681, -0.016673840582370758, 0.021934648975729942, 0.05111752077937126, -0.03571504354476929, -0.033639948815107346, -0.014153036288917065, 0.01874893717467785, -0.014036129228770733, 0.011193831451237202, 0.026625536382198334, -0.017609095200896263, 0.06511712074279785, -0.0061266496777534485, -0.008877614513039589, -0.011939112097024918, 0.024930385872721672, -0.01931885816156864, -0.0030359248630702496, 0.001377308857627213, -0.03261701390147209, -0.010017456486821175, -0.016556933522224426, 0.016732294112443924, 0.03533509746193886, 0.02418510615825653, -0.0017399027710780501, -0.029986608773469925, -0.0061156898736953735, 0.03437061607837677, -0.04591516777873039, 0.023293690755963326, -0.008899534121155739, 0.021715449169278145, -0.019523445516824722, -0.0009352548513561487, -0.07669089734554291, 0.015826266258955002, 0.015227117575705051, -0.004285366740077734, -0.002360057085752487, -0.015329411253333092, 0.0173314418643713, 0.0007352345273829997, 0.0066161975264549255, 0.002855084603652358, 0.023951292037963867, -0.022665316238999367, -0.010353563353419304, 0.01795981638133526, -0.009264868684113026, -0.03556891158223152, -0.03384453430771828, 0.02170083485543728, -0.020663287490606308, -0.014759490266442299, -0.010243963450193405, -0.022957583889365196, 0.03258778527379036, -0.0007457378669641912, -0.059914764016866684, -0.01791597530245781, -0.021978488191962242, 0.004658007528632879, -0.059242550283670425, -0.0080227330327034, 0.004924701061099768, -0.042583320289850235, 0.03203247860074043, 0.0015864626038819551, 0.025076519697904587, 0.008899534121155739, -0.048194851726293564, 0.029518980532884598, 0.03703024610877037, -0.022431502118706703, 0.047025781124830246, 0.013553888536989689, -0.003233205294236541, -0.039923690259456635, -0.0004388573579490185, -0.009462148882448673, 0.031184904277324677, 0.01506637129932642, -0.018895070999860764, -0.023118330165743828, 0.017682161182165146, 0.015533998608589172, 0.001927136443555355, 0.02472580038011074, 0.012845140881836414, -0.040128279477357864, -0.004906434565782547, 0.0227822232991457, -0.02938746102154255, 0.01356850191950798, -0.004720114171504974, -0.013751168735325336, 0.022183075547218323, 0.02814532443881035, -0.016688453033566475, 0.0318278893828392, 0.020648673176765442, -0.027984578162431717, 0.008709561079740524, -0.030249647796154022, -0.04106353223323822, -0.03837467357516289, 0.022475343197584152, -0.008168866857886314, -0.0187050960958004, -0.05693363770842552, -0.014635276980698109, 0.05477086082100868, 0.03799472749233246, -0.005914756096899509, 0.01236290019005537, -0.009023747406899929, 0.03270469233393669, 0.014489143155515194, 0.008541506715118885, -0.018193628638982773, 0.01629389263689518, -0.005947636440396309, -0.020137205719947815, 0.027210069820284843, 0.0018284962279722095, 0.0031108183320611715, 0.02851065993309021, 0.032529331743717194, -0.03463365510106087, 0.04518450051546097, -0.05693363770842552, -0.03071727603673935, -0.004957581404596567, 0.005567688960582018, 0.008409987203776836, 0.0026870309375226498, -0.038345448672771454, 0.01679074764251709, 0.006649077404290438, 0.0349259227514267, -0.050562214106321335, -0.025967935100197792, 0.03279237449169159, -0.004183073528110981, 0.004522833973169327, 0.008329613134264946, -0.002285163616761565, -0.004837021231651306, 0.003678912529721856, 0.02643556334078312, 0.023118330165743828, -0.03866694122552872, 0.002971991430968046, 0.028729859739542007, 0.01828130893409252, 0.00914065446704626, 0.07067019492387772, 0.027896897867321968, -0.00377755262888968, 0.029957382008433342, 0.001756342826411128, 0.006075503304600716, 0.03305541351437569, 0.004862594418227673, 0.014014209620654583, 0.01105500478297472, 0.04541831463575363, 0.03928070142865181, 0.057079773396253586, -0.028028419241309166, 0.013838849030435085, 0.005863609258085489, -0.006700224243104458, -0.03083418309688568, 0.01974264532327652, -0.01645463891327381, -0.0113691920414567, 0.012392126955091953, -0.009111427702009678, -0.00157367589417845, 0.008570733480155468, 0.01280130073428154, 0.027955351397395134, 0.011186524294316769, -0.001235742005519569, -0.004658007528632879, 0.009213721379637718, -0.037468645721673965, 0.015855493023991585, 0.04001137241721153, -0.0015882892766967416, -0.028612952679395676, -0.047113463282585144, 0.0398944653570652, -0.03863771632313728, -0.005618835799396038, -0.005812462884932756, -0.02871524542570114, 0.023206010460853577, -0.02219768986105919, 0.052432723343372345, -0.03892998397350311, 0.027940738946199417, 0.0012741020182147622, 0.009089508093893528, -0.000978181604295969, -0.03071727603673935, 0.034136801958084106, 0.0187050960958004, 0.001981936627998948, -0.01771138794720173, 0.012837833724915981, -0.017258374020457268, -0.00287883123382926, -0.05605683848261833, -0.012845140881836414, -0.014145729131996632, 0.014065355993807316, -0.039222247898578644, 0.0010265883756801486, 0.06605236977338791, 0.02846681885421276, -0.006974224466830492, -0.04924701154232025, -0.017316827550530434, 0.03495515137910843, -0.003678912529721856, -0.021803127601742744, 0.006864624563604593, -0.0018358029192313552, 0.031243357807397842, 0.03968987613916397, 0.011296125128865242, 0.020064139738678932, -0.03261701390147209, 0.02069251239299774, 0.008826467208564281, 0.014196876436471939, -0.001248528715223074, -0.02580718882381916, 0.004113659728318453, -0.00901644118130207, 0.03586117923259735, -0.00424152659252286, -0.016264665871858597, 0.04126812145113945, -0.020721739158034325, -0.036270350217819214, -0.008417293429374695, -0.011223058216273785, 0.017404507845640182, 0.030951090157032013, 0.0227822232991457, 0.020122593268752098, 0.02156931534409523, -0.005721129011362791, 0.008446520194411278, -0.05827806890010834, 0.021350113674998283, 0.015782425180077553, -0.010010149329900742, -0.0034852856770157814, 0.0017152427462860942, -0.0030450583435595036, -0.021920034661889076, 0.003982139751315117, -0.007577025331556797, 0.020560992881655693, -0.002148163504898548, -0.01085041742771864, -0.0010439417092129588, -0.003074284875765443, 0.02040024660527706, 0.003857926232740283, 0.002900751307606697, 0.0016714027151465416, -0.022723769769072533, 0.026318656280636787, -0.05260808393359184, -0.024696573615074158, 0.0022705502342432737, -0.01787213608622551, 0.03071727603673935, 0.00910412147641182, 0.07674934715032578, -0.0046799276024103165, -0.0014348489930853248, -0.006824437528848648, -0.02048792690038681, 0.005801502615213394, -0.0293436199426651, -0.023951292037963867, -0.004190380219370127, 0.010448549874126911, 0.02959204837679863, -0.008256546221673489, 0.04994845390319824, 0.02152547426521778, -0.005078141577541828, -0.004051553085446358, 0.003320885356515646, -0.002491577295586467, -0.0036697792820632458, 0.0007064644596539438, 0.007869292981922626, -0.0031637917272746563, -0.015548611991107464, 0.003538259072229266, 0.036182671785354614, -0.04915933310985565, 0.006426223553717136, -0.004566674120724201, -0.03071727603673935, 0.01205601915717125, 0.047201141715049744, -0.05246195197105408, 0.02618713490664959, -0.03434138745069504, -0.02276761084794998, -0.06599391996860504, -0.030074289068579674, -0.007215344812721014, -0.043284762650728226, 0.013436981476843357, -0.00770854577422142, -0.02614329569041729, -0.049188558012247086, -0.04933469370007515, -0.002683377591893077, -0.029665114358067513, -0.0024239905178546906, 0.015241730958223343, -0.0028021112084388733, -0.008183480240404606, 0.025617213919758797, 0.004252486862242222, 0.014416076242923737, -0.00021463367738761008, -0.018719710409641266, -0.00222305697388947, 0.0009142481139861047, -0.0010201949626207352, 0.03051268868148327, -0.009878628887236118, 0.04185265302658081, -0.018339762464165688, -0.017506800591945648, -0.00041556733776815236, 0.017360668629407883, -0.0009270348236896098, 0.022416889667510986, -0.017009947448968887, -0.0199472326785326, 0.02082403376698494, 0.0008393547032028437, 0.014920237474143505, -0.03504282981157303, 0.0043182470835745335, -0.005315608344972134, -0.004000406246632338, -0.012815914116799831, 0.02377593144774437, 0.013298154808580875, -0.004004059825092554, -0.026011774316430092, 0.021087074652314186, 0.030278874561190605, -0.0028203779365867376, -0.03930993005633354, 0.032149385660886765, -0.013013194315135479, -0.02688857726752758, 0.008724174462258816, 0.01142764464020729, 0.0320032499730587, 0.014942157082259655, 0.011325351893901825, 0.0280138049274683, 0.012370206415653229, 0.014766797423362732, -0.03229551762342453, -0.0005511975614354014, -0.017316827550530434, 0.0026066575665026903, -0.02285528928041458, 0.006415263749659061, 0.008855693973600864, -0.015972398221492767, -0.0014750356785953045, -0.0027107778005301952, 0.0013864422217011452, -0.010331643745303154, -0.011529938317835331, 0.02402435801923275, 0.007927746511995792, -0.027283137664198875, -0.05427400767803192, -0.011573778465390205, 0.014116502366960049, 0.004573980811983347, 0.005607875529676676, 0.019435765221714973, 0.04509681835770607, 0.016030851751565933, 0.031944796442985535, 0.0008918714593164623, 0.026830123737454414, 0.016761520877480507, -0.03513050824403763, 0.0004895474412478507, 0.03273392096161842, 0.06564319878816605, -0.041209667921066284, 0.0053923288360238075, 0.029533594846725464, 0.011186524294316769, 0.04331399127840996, 0.03100954368710518, -0.005501928739249706, -0.010090522468090057, -0.027326976880431175, 0.017842909321188927, 0.011639539152383804, -0.026026388630270958, 0.03171098604798317, -0.05769353359937668, -0.003108991775661707, 0.010068602859973907, 0.014350316487252712, -0.02057560719549656, 0.011120764538645744, 0.004789527505636215, -0.03515973687171936, 0.024886546656489372, -0.01915811002254486, -0.016133146360516548, -0.03615344315767288, 0.01874893717467785, 0.03425370901823044, -0.007876599207520485, 0.01245058048516512, 0.018135175108909607, -0.010061296634376049, 0.005509235430508852, 0.015037144534289837, 0.01852973736822605, -0.007876599207520485, -0.019976459443569183, 0.010265883058309555, -0.027005484327673912, -0.0293436199426651, 0.0056151822209358215, 0.01095271110534668, -0.012421353720128536, -0.004599553998559713, -0.04568135365843773, 0.004665314219892025, 0.043577030301094055, 0.02061944641172886, -0.014204182662069798, -0.01311548799276352, -0.00827115960419178, -0.0038140860851854086, 0.03232474625110626, 0.0033647255040705204, -0.04951005429029465, -0.057868894189596176, -0.005797849502414465, -0.023512890562415123, -0.019611123949289322, -0.023089103400707245, -0.024594279006123543, 0.004376700147986412, 0.007737772539258003, 0.01334199495613575, -0.01687842793762684, -0.012311752885580063, -0.026610922068357468, 0.007847372442483902, -0.027356203645467758, 0.0398944653570652, -0.001319768838584423, 0.010857724584639072, 0.005834382493048906, 0.006711184047162533, -0.026377109810709953, 0.02514958754181862, -0.04115121439099312, -0.0062764366157352924, -0.052228137850761414, 0.058628786355257034, -0.00657601049169898, 0.011398417875170708, 0.001976456493139267, 0.009323321282863617, -0.021335501223802567, -0.0133639145642519, 0.01907043159008026, -0.024214332923293114, -0.028393752872943878, -0.06453258544206619, -0.014167649671435356, -0.023659024387598038, 0.047405730932950974, 0.015899332240223885, -0.0026815510354936123, 0.003887152997776866, 0.0007420845213346183, 0.02289913035929203, 0.0077596926130354404, 0.005381368566304445, -0.0016092959558591247, 0.005743049085140228, 0.016308506950736046, -0.01687842793762684, -0.01475218404084444, -0.028437592089176178, -0.012187539599835873, -0.012662474066019058, -0.031857118010520935, 0.0011882486287504435, 0.009761722758412361, -0.023629797622561455, 0.026026388630270958, 0.022533796727657318, 0.007993506267666817, -0.0066563840955495834, 0.004172113258391619, -0.010236656293272972, 0.028291458263993263, -0.03404911980032921, 0.047902584075927734, 0.004606860689818859, -0.001077735098078847, -0.01053623016923666, 0.02589486911892891, -0.0021317233331501484, 0.020224886015057564, 0.03121413104236126, 0.046908874064683914, -0.02722468413412571, 0.019348084926605225, -0.021598542109131813, 0.0020586566533893347, 0.0039565665647387505, -0.036971792578697205, 0.003541912417858839, -0.017053786665201187, -0.019625738263130188, 0.016776133328676224, -0.03033732809126377, -0.005096408072859049, 0.004840674344450235, 0.005125634837895632, -0.0012284353142604232, -0.006619850639253855, 0.012311752885580063, 0.011982952244579792, 0.00027833878993988037, -0.005870915949344635, 0.007069211453199387, -0.011062311008572578, 0.01085041742771864, -0.00509275496006012, 0.02605561539530754, 0.012392126955091953, -0.018471283838152885, -0.005096408072859049, -0.021890807896852493, 0.025573374703526497, 0.010609297081828117, -0.026786282658576965, 0.0075624119490385056, -0.020970167592167854, 0.005622488912194967, -0.0028569111600518227, -0.004161153454333544, -0.0558522492647171, 0.01087233703583479, -0.001768216141499579, -0.0005032474873587489, 0.02647940255701542, -0.0008452913607470691, -0.018938910216093063, -0.02327907830476761, 0.022139236330986023, 0.006510250270366669, 0.026508629322052002, 0.005746702663600445, 0.013502742163836956, 0.00849766656756401, -0.0016905827214941382, 0.03819931298494339, 0.0005192308453842998, -0.013429675251245499, 0.053367979824543, -0.011157297529280186, -0.023425210267305374, -0.011939112097024918, -0.005395981948822737, -0.025631828233599663, 0.013524661771953106, 0.019625738263130188, -0.02294296957552433, 0.04462919011712074, 0.02427278645336628, 0.036591846495866776, 0.011624925769865513, -0.01082849781960249, 0.009367161430418491, 0.004979501478374004, -0.030980316922068596, 0.06605236977338791, -0.032149385660886765, 0.01496407762169838, -0.012757460586726665, -0.0012741020182147622, -0.0037738995160907507, -0.013290847651660442, 0.008059266023337841, 0.022723769769072533, -0.009294094517827034, 0.008117719553411007, -0.019421150907874107, 0.035101283341646194, 0.018558962270617485, 0.023118330165743828, 0.04962696135044098, -0.03513050824403763, -0.0035967123694717884, -0.005176781676709652, -0.007613558787852526, 0.0035894056782126427, 0.05839497223496437, -0.005074487999081612, -0.0019490565173327923, 0.006323930341750383, 0.03860848769545555, 0.04413233697414398, 0.024462759494781494, -0.047610316425561905, 0.0002294753649039194, 0.015621678903698921, 0.023629797622561455, 0.006809824146330357, -0.008884920738637447, -0.019055817276239395, 0.0053740618750452995, 0.023659024387598038, 0.013648875057697296, 0.02152547426521778, -0.005618835799396038, -0.0026778976898640394, -0.008212707005441189, 0.020005686208605766, 0.015256344340741634, 0.013268928043544292, -0.004979501478374004, 0.03764400631189346, 0.022168463096022606, 0.020853260532021523, -0.04588593915104866, 0.015431704930961132, 0.02972356788814068, 0.0019399231532588601, -0.004690887406468391, -0.00531926192343235, -0.0036149790976196527, 0.014277249574661255, -0.021467020735144615, 0.017024559900164604, -0.02501806616783142, -0.006411610171198845, 0.018851229920983315, -0.004756647627800703, -0.005786889232695103, 0.006806171033531427, 0.048779383301734924, -0.02116014063358307, 0.011091537773609161, -0.0037008326034992933, 0.021598542109131813, -0.01161761861294508, 0.017974428832530975, 0.0029701648745685816, -0.005556729156523943, -0.002776537789031863, -0.028992900624871254, 0.02269454300403595, -0.006674650590866804, -0.03866694122552872, 0.011887965723872185, 0.024126652628183365, -0.019479604437947273, 0.018310535699129105, 0.026654763147234917, -0.017404507845640182, -0.009221028536558151, -0.008227319456636906, 0.010105135850608349, 0.03366917371749878, 0.024755027145147324, 0.008154253475368023, 0.0009964482160285115, 0.007262838538736105, 0.04354780167341232, -0.02174467407166958, 0.03261701390147209, -0.020093366503715515, -0.0010128882713615894, 0.006250863429158926, 0.02323523722589016, 0.001198295271024108, -0.026464790105819702, -0.027955351397395134, -0.012267912738025188, -0.011544551700353622, 0.03682566061615944, -0.0037190993316471577, 0.011544551700353622, 0.014240716584026814, -0.0023582305293530226, -0.019552672281861305, 0.006360463332384825, -0.023001423105597496, -0.027619244530797005, -0.011230364441871643, -0.0007009844412095845, 0.03527664393186569, -0.007693932391703129, 0.01974264532327652, 0.011990259401500225, -0.0020367365796118975, -0.0045118737034499645, -0.0007434545550495386, -0.01766754873096943, 0.012793993577361107, 0.0059951297007501125, 0.02377593144774437, 0.004694540984928608, 0.023220624774694443, -0.01795981638133526, 0.03416602686047554, -0.006893850862979889, -0.014182263053953648, -0.01820824295282364, 0.014489143155515194, -0.0007644612342119217, -0.014050742611289024, 0.03901766240596771, -0.0067367576994001865, 0.008161559700965881, -0.021174754947423935, -0.03258778527379036, 0.015183277428150177, 0.0018074895488098264, -0.0024203371722251177, 0.051146749407052994, 0.026786282658576965, 0.014474529772996902, 0.00591110298410058, 0.011551858857274055, 0.01086503081023693, 0.05474163591861725, 0.003941953182220459, -0.01857357658445835, 0.02598254755139351, 0.015826266258955002, -0.04147270694375038, -0.01899736374616623, -0.02102862112224102, -0.023469051346182823, 0.014101888984441757, -0.023132944479584694, 0.056378331035375595, -0.011011164635419846, 0.030191196128726006, 0.025398014113307, 0.02057560719549656, -0.007456465158611536, 0.023089103400707245, 0.015767812728881836, 0.012859754264354706, 0.01149340532720089, -0.021686222404241562, -0.014569517225027084, 0.01895352452993393, -0.03881307691335678, 0.028539886698126793, -0.0007110311416909099, 0.003220418468117714, -0.02805764600634575, 0.05167283117771149, 0.023132944479584694, -0.039134569466114044, -0.00526811508461833, 0.002800284419208765, 0.0016631826292723417, -0.018105948343873024, 0.017901362851262093, -0.027706924825906754, -0.006798864342272282, -0.00509275496006012, 0.0035967123694717884, -0.03279237449169159, -0.0022066168021410704, 0.004950274713337421, 0.02173006162047386, -0.004471687134355307, 0.026859350502490997, -0.014226103201508522, 0.015124823898077011, 0.01486178394407034, 0.0037391926161944866, -0.015811651945114136, -0.02364441193640232, -3.8930895243538544e-05, -0.016308506950736046, 0.016717679798603058, 0.010024762712419033, -0.031360264867544174, 0.000247513729846105, -0.00845382735133171, 0.05225736275315285, -0.02276761084794998, 0.0018906029872596264, -0.047230370342731476, -0.022621477022767067, -0.012465192936360836, 0.03887153044342995, -0.0225630234926939, -0.025880254805088043, -0.026698602363467216, -0.008198093622922897, 0.018471283838152885, 0.01380231510847807, 0.00014350772835314274, -0.0007169677992351353, 0.04942237213253975, 0.036971792578697205, 0.03910534456372261, -0.024798866361379623, -0.011354578658938408, 0.004310940392315388, -0.00843921396881342, 0.012567486613988876, -0.014759490266442299, 0.030571142211556435, 0.012465192936360836, 0.03232474625110626, -0.017316827550530434, 0.025836415588855743, -0.021583927795290947, -0.018427442759275436, 0.008263853378593922, -0.01861741580069065, -0.022957583889365196, -0.016556933522224426, 0.009096814319491386, -0.0014421556843444705, -0.018558962270617485, 0.0027948045171797276, 0.009630202315747738, 0.03033732809126377, -0.024491986259818077, 0.001785569591447711, -0.00914065446704626, 0.014036129228770733, -0.04044977203011513, -0.019231177866458893, 0.004606860689818859, 0.019640350714325905, -0.0003810889320448041, 0.01861741580069065, -0.06856586784124374, -0.001473209005780518, 0.03562736511230469, 0.008928760886192322, -0.014269943349063396, 0.013312768191099167, 0.00933062843978405, -0.012494419701397419, -0.011961032636463642, -0.028934447094798088, 0.01638157293200493, -0.005900142714381218, -0.025617213919758797, -0.033523041754961014, -0.008826467208564281, -0.0059768627397716045, -0.010601989924907684, -0.013626955449581146, -0.040303636342287064, 0.025704894214868546, 0.026172522455453873, -0.05626142397522926, -0.008168866857886314, 0.006915770936757326, -0.006174143403768539, 0.02605561539530754, 0.003337325295433402, 0.02817455120384693, -0.01696610637009144, -0.024915773421525955, 0.018807390704751015, 0.015241730958223343, -0.0036295924801379442, 0.011792979203164577, -0.020809419453144073, -0.014693730510771275, -0.017696775496006012, 0.007723159156739712, 0.012457886710762978, 0.029855087399482727, 0.0034688455052673817, -0.015782425180077553, 0.03141871839761734, -0.012304446659982204, 0.027034709230065346, 0.015680132433772087, -0.017185308039188385, 0.007390705402940512, 0.002679724246263504, 0.0022650703322142363, 0.008468440733850002, -0.00629835668951273, 0.025924095883965492, -0.013005887158215046, -0.033347681164741516, -0.0072189983911812305, -0.010404709726572037, -0.007050944492220879, 0.000665821076836437, -0.015256344340741634, 0.0038286994677037, -0.02763385698199272, -0.02510574646294117, 0.011902579106390476, -0.006038969848304987, -0.00824923999607563, 0.014226103201508522, 0.04661661013960838, 0.02418510615825653, -0.015431704930961132, -0.052228137850761414, 0.026289429515600204, -0.005330221727490425, -0.02082403376698494, 0.021350113674998283, 0.020750965923070908, -0.029694341123104095, -0.03188634291291237, 0.010879644192755222, 0.007854679599404335, -0.02618713490664959, 0.017755229026079178, -0.03308463841676712, 0.010010149329900742, 0.014489143155515194, 0.015329411253333092, -0.005794195923954248, -0.0133639145642519, -0.010463163256645203, -0.007233611773699522, -0.0010686017340049148, -0.027253910899162292, -0.0011681552277877927, 0.0039784861728549, -0.004639740567654371, -0.0007621778640896082, 0.013276234269142151, -0.004573980811983347, 0.0005343008670024574, -0.03907611593604088, -0.0006384210428223014, 0.006272783502936363, -0.02867140620946884, 0.0014074489008635283, -0.0019417498260736465, -0.015738585963845253, 0.02726852335035801, -0.013700022362172604, -0.008797240443527699, -0.014554903842508793, 0.005673635751008987, 0.02821839228272438, -0.015899332240223885, -0.028788313269615173, -0.014226103201508522, -0.014905624091625214, -0.0014887357829138637, 0.0013133754255250096, -0.031477171927690506, 0.026128681376576424, 0.004449767060577869, -0.012348286807537079, 0.00040871731471270323, 0.00999553594738245, 0.024199718609452248, -0.00912604108452797, -0.012019486166536808, 0.0005662675830535591, -0.004106353502720594, -0.011135377921164036, 0.005465395282953978, 0.036971792578697205, 0.00847574695944786, -0.043167855590581894, -0.029460527002811432, 0.024988839402794838, -0.0029738182201981544, -0.0029025780968368053, -0.009345241822302341, -0.013159328140318394, -0.000516034138854593, 0.0074601187370717525, 0.005472701974213123, -0.019055817276239395, 0.0455644465982914, -0.00629835668951273, -0.02922671288251877, 0.004990461282432079, -0.0032094584312289953, -0.007869292981922626, 0.010733510367572308, -0.026873962953686714, -0.009476762264966965, -0.04994845390319824, -0.018310535699129105, -0.0005228841910138726, 0.04392775148153305, -0.03811163455247879, -0.009155267849564552, -0.002657804172486067, 0.0036277659237384796, -0.0015882892766967416, 0.017550641670823097, -0.0005895576323382556, -0.0071386247873306274, 0.0028185511473566294, 0.04334321618080139, -0.004968541208654642, 0.020122593268752098, 0.0008283946663141251, -0.003532778937369585, 0.004873554687947035, -0.010550843551754951, -0.020385632291436195, 0.0160454660654068, -0.0028770046774297953, -0.007233611773699522, -0.00537040876224637, 0.007664705626666546, -0.026289429515600204, 0.02481348067522049, -0.014204182662069798, -0.0068865446373820305, 0.028320685029029846, 0.009630202315747738, 0.01945037767291069, 0.015972398221492767, 0.014204182662069798, -0.0019399231532588601, 0.00914065446704626, 0.014079969376325607, -0.0019380964804440737, -0.00655774399638176, 0.003832352813333273, 0.0226068627089262, 0.010960017330944538, 0.0018047495977953076, 0.013736555352807045, -0.009213721379637718, 0.006828091107308865, -0.019391924142837524, 0.007547799032181501, -0.002442257246002555, 0.019187336787581444, -0.01410919614136219, 0.033435359597206116, -0.020604833960533142, -0.008344226516783237, -0.005063528195023537, 0.02988431416451931, 0.0015782425180077553, -0.005560382269322872, -0.005169474985450506, 0.04965618625283241, 0.021978488191962242, -0.003487112233415246, -0.0014595090178772807, -0.022913742810487747, 0.005176781676709652, 0.005680942442268133, 0.04065435752272606, 0.030775729566812515, -0.007124011404812336, -0.013422368094325066, 0.010236656293272972, 0.015533998608589172, 0.023454437032341957, -0.006228943355381489, 0.01692226715385914, 0.014657196588814259, 0.00624355673789978, -0.013108180835843086, 0.011193831451237202, -0.011223058216273785, -0.018880456686019897, 0.023659024387598038, 0.02073635347187519, -0.023761318996548653, -0.040128279477357864, 0.004285366740077734, -0.01940653845667839, 0.00952060241252184, 0.0027564445044845343, 0.028247619047760963, -0.003825046122074127, 0.04267100244760513, 0.00943292211741209, -0.005922062788158655, 0.00943292211741209, 0.020517153665423393, 0.0070071048103272915, -0.006086463108658791, 0.008694947697222233, 0.005593262147158384, -0.020999394357204437, -0.0020038564689457417, -0.0020787499379366636, 0.009133348241448402, 0.0240681990981102, -0.011917192488908768, 0.020765580236911774, -0.014722957275807858, 0.0026979909744113684, -0.003516338998451829, -0.007036331109702587, -0.019961845129728317, 0.01766754873096943, -0.022080782800912857, -0.013919222168624401, -0.032061703503131866, -0.0033080987632274628, -0.00804465264081955, -0.004595900885760784, -0.01193180587142706, -0.00038679729914292693, -0.0012604020303115249, -0.03802395612001419, -0.002855084603652358, 0.004376700147986412, 0.01629389263689518, 0.012457886710762978, 0.0016677493695169687, 0.0019216564251109958, -0.0004776740970555693, -0.009118734858930111, 0.006009743083268404, -0.0025244574062526226, -0.014613356441259384, 0.016893040388822556, 0.03641648590564728, -0.01662999950349331, 0.02240227535367012, -0.0153147978708148, 0.0026285776402801275, 0.008198093622922897, 0.013765782117843628, 0.0070180646143853664, -0.008724174462258816, -0.006163183134049177, 0.011252284981310368, -0.020897099748253822, 0.0010585550917312503, -0.00824923999607563, 0.01782829500734806, -0.0031144716776907444, 0.03632880374789238, -0.001119748456403613, -0.010704283602535725, 0.00031761216814629734, -0.022416889667510986, -0.005385022144764662, -0.0008005379349924624, -0.017068400979042053, -0.01475218404084444, 0.010046683251857758, 0.014912930317223072, 0.002849604468792677, 0.0006338543607853353, 0.004113659728318453, -0.008848387748003006, 0.00451918039470911, -0.020809419453144073, -0.012479806318879128, 0.010280496440827847, -0.004858941305428743, -0.03399066627025604, -0.03463365510106087, 0.0004048356495331973, -0.02984047494828701, -0.011705298908054829, -0.003967526368796825, 0.0173752810806036, 0.006513903848826885, 0.00413557980209589, -0.027283137664198875, -0.021423181518912315, 0.019143497571349144, 0.013451594859361649, 0.021671608090400696, -0.02414126507937908, 0.01435762271285057, -0.03939760848879814, -0.004336513578891754, 0.008205399848520756, 0.01625005342066288, 0.0009644815581850708, -0.005589609034359455, 0.021510861814022064, 0.0002940937993116677, 0.038550034165382385, 0.02161315456032753, -0.004526487085968256, -0.009505989030003548, -0.0075916387140750885, 0.012750153429806232, 0.012041405774652958, 0.003916379529982805, 0.011025778017938137, 0.02190542221069336, 0.00024660039343871176, 0.010945403948426247, 0.020999394357204437, -0.01159569900482893, 0.01257479377090931, -0.012399433180689812, -0.00015115691348910332, 0.008314999751746655, -0.011997565627098083, -0.006999798119068146, -0.01496407762169838, -0.034809015691280365, 0.00891414750367403, -0.009652121923863888, 0.013539275154471397, 0.010353563353419304, -0.00989324226975441, -0.031447943300008774, 0.0006165009690448642, 0.005447128787636757, -0.008358839899301529, -0.05857033282518387, -0.011164604686200619, 0.02265070378780365, -5.588467320194468e-05, 0.01911427080631256, 0.0028733513318002224, -0.001269535394385457, -0.002517150714993477, 0.0009188147960230708, 0.04930546507239342, -0.0013590421294793487, 0.008000812493264675, -0.00014944440044928342, -0.02647940255701542, -0.004486300516873598, -0.017404507845640182, -0.0009526081848889589, 0.0032441653311252594, 0.015227117575705051, -0.04322630912065506, -0.0044388072565197945, -0.004592247307300568, 0.016016239300370216, 0.011588391847908497, -0.032938506454229355, -0.013634261675179005, 0.0160454660654068, 0.018105948343873024, -0.01812056265771389, -0.013393141329288483, -0.021890807896852493, 0.0086876405403018, 0.004380353726446629, 0.0022029634565114975, 0.02330830506980419, 0.01633773371577263, 0.01138380542397499, 0.03632880374789238, -0.02303064987063408, 0.018237469717860222, -0.02069251239299774, -0.006071849726140499, -0.013232395052909851, 0.002646844368427992, 0.0012494419934228063, -0.022460728883743286, -0.0158701054751873, 0.0035894056782126427, 0.002776537789031863, -0.0035035524051636457, 0.00019476863963063806, -0.01778445579111576, 0.008278466761112213, -0.005414248909801245, -0.014101888984441757, -0.012216766364872456, 0.012004872784018517, -0.00488451449200511, 0.016483865678310394, 0.0036003657151013613, 0.007781612686812878, 0.012815914116799831, 0.0059768627397716045, 0.01381692849099636, -0.010543537326157093, 0.020458700135350227, 0.00848305318504572, 0.025324948132038116, -0.00424152659252286, -0.01429917011409998, -0.012224072590470314, 0.017652934417128563, 0.0005808809073641896, -0.010251269675791264, -0.007423585280776024, 0.006411610171198845, -0.006641770713031292, -0.0073212916031479836, -0.0002630404196679592, 0.010178202763199806, 0.0025500308256596327, 0.0040478999726474285, -0.02281145006418228, 0.010192816145718098, -0.021832354366779327, -0.0035638324916362762, -0.010046683251857758, -0.004573980811983347, 0.01323970127850771, 0.001673229387961328, 0.004701847676187754, -0.02506190724670887, -0.017141466960310936, -0.0029409381095319986, -0.044453833252191544, -0.0019691498018801212, 0.012976661324501038, -0.028569113463163376, 0.03308463841676712, 0.01429917011409998, -0.009937082417309284, 0.008008119650185108, -0.03966065123677254, -0.015490158461034298, 0.033523041754961014, -0.0007452811696566641, 0.011690685525536537, 0.008336920291185379, -0.006404303479939699, 0.0074710785411298275, -0.0011023951228708029, 0.007796226069331169, 0.0029774715658277273, 0.019932618364691734, 0.012311752885580063, -0.002887964714318514, 0.0227383840829134, 0.012947434559464455, -0.0016376093262806535, -0.017404507845640182, 0.01261132676154375, 0.022387662902474403, -0.004314593505114317, -0.006378730293363333, -0.011310738511383533, 0.025003453716635704, -2.421764293103479e-05, 0.002442257246002555, 0.0009174448205158114, 0.012231379747390747, 0.014920237474143505, -0.011573778465390205, -0.03676720708608627, -0.00044639239786192775, -0.029898928478360176, -0.005918409675359726, 0.002305257134139538, -0.008716867305338383, -0.00037560894270427525, 0.034019894897937775, -0.005852649454027414, 0.000574487610720098, -0.023264463990926743, 0.006871931254863739, -0.0009507815120741725, 0.014679117128252983, -0.006893850862979889, -0.007642785552889109, -0.013305461034178734, -0.015636291354894638, 0.01584087871015072, -0.018588189035654068, 0.007796226069331169, 0.002926324727013707, 0.015168664045631886, -0.025281107053160667, -0.02206616848707199, -0.009221028536558151, 0.009776336140930653, 0.015270957723259926, 0.004025979898869991, 0.018632030114531517, -0.010507003404200077, 0.010010149329900742, 0.01771138794720173, 0.005260808393359184, 0.006013396196067333, 0.005564035847783089, 0.0005379542126320302, -0.022373048588633537, 0.020297951996326447, -0.01953805796802044, 0.01841283030807972, -0.01292551402002573, 0.018602803349494934, 0.005311955232173204, 0.01633773371577263, -0.01117921806871891, -0.008388066664338112, -0.0014595090178772807, 0.005819769576191902, -0.012026792392134666, -0.011011164635419846, 0.007686625700443983, -0.011288817971944809, -0.0062472098506987095, 0.016352346166968346, 0.015095598064363003, -0.008468440733850002, -0.0032642586156725883, 0.03013274259865284, 0.0002737721079029143, -0.007357825059443712, -0.0013882688945159316, 0.004698194097727537, 0.003861579578369856, -0.0046762740239501, 0.016074692830443382, -0.0009014614624902606, -0.012187539599835873, 0.002559164073318243, -4.709382483270019e-05, 0.04156038537621498, -0.019421150907874107, 0.008103106170892715, 0.012530953623354435, -0.007628172170370817, 0.008110413327813148, -0.018179016187787056, 0.034224480390548706, -0.012983967550098896, 0.003425005590543151, -0.014613356441259384, -3.827443651971407e-05, -0.02123320661485195, -0.03355226665735245, -0.005121981725096703, -0.007003451231867075, -0.01259671337902546, 0.004584940616041422, -0.01575319841504097, -0.013575808145105839, 0.023556731641292572, 0.0028148978017270565, -0.022387662902474403, 0.014796024188399315, 0.012392126955091953, 0.00010828725498868152, 0.009790949523448944, -0.003103511640802026, 0.018968136981129646, -0.0320032499730587, 0.03369840234518051, 0.01679074764251709, -0.01803288236260414, -0.009052974171936512, 0.011624925769865513, -0.0066563840955495834, 0.00238015060313046, 0.013086261227726936, -0.018237469717860222, -0.00668195728212595, 0.0015928559005260468, -0.005048914812505245, -0.007058251183480024, -0.026830123737454414, 0.00976902898401022, -0.021467020735144615, -0.02871524542570114, 0.029694341123104095, 0.027210069820284843, 0.01636696048080921, -0.01803288236260414, -0.01857357658445835, 0.011902579106390476, -0.008088492788374424, 9.430181671632454e-05, 0.012552873231470585, 0.006334890145808458, 0.010419323109090328, 0.005838036071509123, 0.005516542121767998, 0.02751695178449154, -0.000418307346990332, 0.025573374703526497, 0.03261701390147209, 0.023702865466475487, 0.0037063127383589745, -0.012845140881836414, 0.002950071357190609, 0.0011124417651444674, 0.009717882610857487, 0.0133639145642519, -0.0033555920235812664, -0.014569517225027084, -0.017696775496006012, -0.01018550992012024, 0.010375482961535454, -0.028189165517687798, 0.011442258022725582, 0.013393141329288483, 0.010755430907011032, -0.026041001081466675, 0.014796024188399315, -0.00015241274377331138, -0.005659022368490696, 0.004610514268279076, -0.010375482961535454, -0.00945484172552824, 0.00138187559787184, -0.015475545078516006, -0.009820175357162952, -0.018763549625873566, 0.0036606458015739918, -0.008307693526148796, 0.00714958505704999, -0.025675667449831963, 0.01857357658445835, -0.004120966419577599, -0.009549828246235847, 0.004384006839245558, -0.0047712610103189945, -0.018149789422750473, 0.008059266023337841, -0.0005722042405977845, -0.0010128882713615894, 0.01487639732658863, 0.008716867305338383, 0.02684473618865013, 0.005556729156523943, -0.0028075911104679108, -0.007105744909495115, -0.011924498714506626, -0.005677289329469204, -0.006448143627494574, -0.004435153678059578, -0.001357215573079884, 0.00010120891238329932, 0.05561843514442444, 0.004106353502720594, 0.020707126706838608, 0.026903189718723297, 0.007215344812721014, -0.023220624774694443, -0.0026157908141613007, 0.01795981638133526, 0.010426630266010761, -0.02368825115263462, 0.016980720683932304, 0.0023838039487600327, -0.001106961746700108, 0.005469048861414194, -0.03656261786818504, 0.010916177183389664, 0.019801098853349686, 0.0025756042450666428, -0.02943130023777485, 0.022826062515378, 0.01687842793762684, -0.030074289068579674, -0.020853260532021523, 0.006133956369012594, -0.0017125027952715755, 0.04442460462450981, 0.007905825972557068, -0.020356405526399612, 0.013736555352807045, 0.002297950442880392, -0.005209661554545164, -0.019275017082691193, 0.01629389263689518, 0.0019691498018801212, -0.004658007528632879, 0.011274204589426517, 0.006561397109180689, 0.02044408582150936, 0.020166432484984398, 0.007292064838111401, -0.011040391400456429, -0.0041684601455926895, 0.01074081752449274, 0.004964888095855713, -0.03051268868148327, -0.0008370713330805302, 0.0017280294559895992, -0.005509235430508852, -0.010046683251857758, 0.00180566287599504, -0.007569718640297651, -0.03784859552979469, -0.018558962270617485, 0.024155879393219948, 0.009440228343009949, 0.0005877309595234692, 0.009652121923863888, -0.0003059671726077795, 0.011771058663725853, 0.010901563800871372, -0.00565171567723155, 0.0007347778300754726, -0.010273190215229988, -0.019669577479362488, -0.040420543402433395, 0.007540492340922356, -0.014562210068106651, -0.015767812728881836, 9.230389696313068e-05, -0.009929776191711426, -0.0014549423940479755, 0.006455450318753719, 0.015826266258955002, -0.011924498714506626, 0.01302780769765377, 0.04109276086091995, -3.4071670143021038e-06, 0.024828093126416206, 0.015183277428150177, -0.0065979305654764175, 0.0037172725424170494, -0.0003374772204551846, -0.015738585963845253, -0.009272174909710884, 0.008336920291185379, -0.015037144534289837, 0.015533998608589172, -0.012808606959879398, 0.0013910089619457722, -0.0080227330327034, -0.0023746704682707787, -0.016030851751565933, -0.00547635555267334, 0.018851229920983315, 0.01215831283479929, 0.0037519794423133135, -0.002917191246524453, -0.0024769639130681753, 0.0002347270492464304, -0.002409377135336399, 0.001048508333042264, 0.010689670220017433, -0.0007014411385171115, 0.008870307356119156, 0.014891010709106922, -0.004223260097205639, 0.011566472239792347, -0.003412218764424324, -0.018778163939714432, -0.004599553998559713, -0.02589486911892891, -0.03112645074725151, -0.008344226516783237, 0.002604830777272582, -0.030658822506666183, -0.011624925769865513, 0.0008936981321312487, -0.0048918211832642555, -0.016279280185699463, -0.016030851751565933, -0.0050306483171880245, 0.017652934417128563, -0.009060281328856945, -0.009242948144674301, 0.006466410588473082, 0.015899332240223885, -0.026567082852125168, -0.005202354863286018, -0.009944389574229717, -0.00570286251604557, 0.014686423353850842, 0.00568459602072835, 0.03808240965008736, -0.001194641925394535, 0.024053584784269333, -0.005085448268800974, -0.0008110413327813148, 0.0005964076262898743, 0.01683458685874939, -0.017156081274151802, 0.03168175742030144, -0.01625005342066288, 0.013524661771953106, 0.026917804032564163, -0.009564441628754139, -0.006064543034881353, 0.0017901362152770162, -0.011449565179646015, 0.0061156898736953735, -0.028028419241309166, 0.02922671288251877, -0.016469253227114677, -0.0021591235417872667, -0.013626955449581146, -0.013429675251245499, -0.010229350067675114, -0.013743862509727478, 0.035013601183891296, -0.0077012390829622746, 0.003620459232479334, -0.006207023281604052, 0.011573778465390205, -0.01728760078549385, 0.011347271502017975, 0.009199107997119427, 0.02659630961716175, 0.011040391400456429, 0.020707126706838608, 0.010470470413565636, -0.0047822208143770695, 0.004084433428943157, -0.00974710937589407, -0.0008891314500942826, -0.021014006808400154, 0.006725797429680824, -0.01791597530245781, 0.0009014614624902606, 0.009571748785674572, -0.025076519697904587, 0.0225630234926939, -0.019479604437947273, 0.0011553685180842876, 0.012918207794427872, -0.01949421875178814, -0.0009644815581850708, 0.005830729380249977, 0.008161559700965881, -0.02693241648375988, -0.0021152833942323923, 0.006090116687119007, 0.0019454031717032194, 0.010053989477455616, 0.0026979909744113684, -0.004274406936019659, 0.0071093980222940445, -0.016235439106822014, 0.012224072590470314, 0.00814694631844759, 0.022665316238999367, -0.008088492788374424, -0.005823422688990831, 0.019815711304545403, 0.0187050960958004, 0.01053623016923666, -0.010704283602535725, 0.013254314661026001, 0.013458902016282082, -0.02922671288251877, -0.018778163939714432, 0.002467830665409565, -0.027940738946199417, -0.02630404196679592, -0.003952912986278534, 0.023512890562415123, 0.009959002956748009, -0.005922062788158655, -0.0018979096785187721, -0.0014869091100990772, 0.006155876442790031, -0.020809419453144073, 0.02339598350226879, 0.010002843104302883, 0.0029409381095319986, -0.003836006158962846, 0.011559165082871914, -0.007927746511995792, 0.010843111202120781, -0.002564644208177924, 0.02954820729792118, 0.005680942442268133, 0.011588391847908497, -0.026698602363467216, 0.0025408973451703787, 0.024462759494781494, -0.013495435006916523, 0.019348084926605225, 0.014737570658326149, -0.013765782117843628, 0.010835804045200348, -0.0013088088016957045, -0.02152547426521778, 0.006455450318753719, -0.008680334314703941, 0.0035090323071926832, 0.013860768638551235, -0.002542724134400487, -0.0008174346294254065, -0.0028075911104679108, -0.011069618165493011, -2.4574414055678062e-05, -0.015154050663113594, 0.005158515181392431, -0.006342196837067604, 0.003512685652822256, 0.010601989924907684, 0.0029427646659314632, 0.007876599207520485, 0.01620621234178543, -0.002305257134139538, -0.021467020735144615, 0.017638321965932846, 0.02003491297364235, -0.016556933522224426, -0.0017472094623371959, 0.012077939696609974, -0.007511265575885773, -0.02726852335035801, 0.007281105034053326, 0.008431906811892986, -0.009418308734893799, 0.022972196340560913, -0.013992289081215858, 0.022416889667510986, 0.033523041754961014, 0.011573778465390205, 0.00952060241252184, 0.014021515846252441, -0.004687234293669462, 0.0023746704682707787, 0.02760463021695614, 0.00683539779856801, 0.00634950352832675, 0.015168664045631886, -0.027823831886053085, -0.0016056426102295518, -0.011098844930529594, 0.010550843551754951, -0.014503756538033485, 0.01670306734740734, 0.032529331743717194, 0.01600162498652935, 0.0033574188128113747, -0.0057065156288445, -0.020765580236911774, 0.003656992455944419, 0.0227383840829134, 0.000994621543213725, 0.005385022144764662, 0.018924297764897346, -0.0032587784808129072, 0.016644613817334175, -0.012121779844164848, -0.009177188389003277, -0.015826266258955002, 0.018602803349494934, 0.018880456686019897, 0.030951090157032013, 0.01766754873096943, -0.0049027809873223305, 0.019085044041275978, 0.015139437280595303, -0.010835804045200348, 0.004486300516873598, -0.0020403899252414703, -0.0086876405403018, 0.009250255301594734, 0.007913133129477501, 0.008570733480155468, 0.010543537326157093, 0.0031984983943402767, 0.0019454031717032194, 0.01949421875178814, 0.008161559700965881, -0.004413233604282141, 0.0074893455021083355, 0.0187050960958004, 0.018558962270617485, -0.008855693973600864, 0.010616603307425976, -0.03556891158223152, 0.027867671102285385, -0.005344835110008717, -0.009717882610857487, -0.0015846359310671687, -0.01915811002254486, 0.003971179947257042, -0.017726002261042595, 0.006689263973385096, -0.01190988626331091, 0.011866046115756035, -0.009213721379637718, 0.012523646466434002, 0.001123401802033186, -0.010631216689944267, -0.006791557651013136, -0.001440329011529684, 0.00858534686267376, -0.01746296137571335, -0.015095598064363003, 0.003857926232740283, 4.438236283021979e-05, 0.013495435006916523, 0.012311752885580063, -0.007153238169848919, -0.011851432733237743, -0.003167445072904229, 0.008110413327813148, 0.017229147255420685, -0.010989244095981121, 0.009272174909710884, -0.02868601866066456, -0.00012946520291734487, -0.019026590511202812, -0.0075916387140750885, 0.012216766364872456, -0.008957987651228905, -0.02111630141735077, 0.015344024635851383, -0.025295721367001534, -0.009199107997119427, 0.002643191022798419, -0.018354376778006554, -0.00987132266163826, 0.013393141329288483, -0.012077939696609974, 0.00101562833879143, -0.010507003404200077, 0.024214332923293114, -0.014072662219405174, 0.0013855289435014129, 0.04348934814333916, -0.00601704977452755, -0.005721129011362791, -0.003490765579044819, -0.010265883058309555, 0.000803277944214642, 0.000553480873350054, 0.021642381325364113, -0.01486178394407034, 0.006722144316881895, -0.01149340532720089, -0.006188756786286831, -0.0018942563328891993, -0.015007917769253254, -0.0041976869106292725, 0.03878384828567505, -0.023016037419438362, -0.006459103897213936, 0.005863609258085489, 0.005545768886804581, -0.01215831283479929, 0.008073879405856133, 0.01712685450911522, -0.006342196837067604, -0.011690685525536537, -0.025631828233599663, -0.005063528195023537, 0.008168866857886314, 0.02718084305524826, -0.012501726858317852, -0.010477776639163494, 0.004752994515001774, 0.001489649061113596, 0.004489954095333815, 0.019523445516824722, -0.008578040637075901, 0.0015426224563270807, -0.00018323778931517154, 0.0034067388623952866, 0.020210271701216698, 0.010053989477455616, -0.01620621234178543, -0.00792043935507536, 0.010477776639163494, 0.034604430198669434, -0.0016029025427997112, 0.0306295957416296, 0.028086870908737183, -0.002692511072382331, -0.0126990070566535, -0.004088086541742086, -0.027750764042139053, -0.026625536382198334, 0.0016951493453234434, -0.0039565665647387505, -0.012326366268098354, 0.02560260146856308, -0.007091131526976824, 0.010755430907011032, 0.01904120482504368, -0.017185308039188385, -0.015855493023991585, 0.0006046276539564133, 0.006773290690034628, 0.027078550308942795, -0.008621880784630775, 0.01190988626331091, -0.002416683826595545, 0.006108383182436228, 0.0017051961040124297, 0.009235641919076443, 0.0012951086973771453, 0.013605034910142422, 0.014094582758843899, -0.03892998397350311, 0.0015444491291418672, -0.007869292981922626, -0.006685610860586166, 0.016556933522224426, -0.027838444337248802, 0.00910412147641182, 0.004384006839245558, 0.005483662243932486, 0.01117921806871891, 0.003245991887524724, -0.0005731175770051777, 0.016513092443346977, 0.01043393649160862, -0.014934850856661797, 0.0013078954070806503, -0.01778445579111576, 0.0159139446914196, 0.014094582758843899, -0.005417902022600174, -0.016323119401931763, 0.02289913035929203, 0.0036990060470998287, 0.00031441551982425153, -0.008424600586295128, -0.0071093980222940445, -0.0173752810806036, 0.011018470861017704, 0.0010375482961535454, -0.0004482190415728837, 0.03682566061615944, -0.008402680046856403, -0.007737772539258003, 0.013860768638551235, 0.008724174462258816, -0.008731480687856674, 0.016103919595479965, 0.018295923247933388, 0.017609095200896263, -0.012859754264354706, -0.007818145677447319, -0.0015590625116601586, 0.009951695799827576, 0.028203777968883514, -0.003989446442574263, -0.0014202356105670333, 0.013700022362172604, 0.004610514268279076, -0.015855493023991585, 0.008753400295972824, 0.020458700135350227, 0.016469253227114677, 0.003119951579719782, 0.01820824295282364, 0.022475343197584152, 0.017433734610676765, 0.00565171567723155, 0.020458700135350227, -0.020049525424838066, -0.001930789789184928, 0.00966673530638218, 0.02551492117345333, 0.01011974923312664, 0.0038798463065177202, -0.0026778976898640394, -0.008673027157783508, -0.0034487522207200527, -0.01541709154844284, 0.006455450318753719, 0.012180233374238014, 0.010024762712419033, -0.018091335892677307, 0.009403695352375507, -0.011624925769865513, 0.010799271054565907, -0.001390095567330718, 0.014576823450624943, 0.012443273328244686, -0.0032551251351833344, 0.01138380542397499, 0.004610514268279076, 0.029109807685017586, 0.01292551402002573, 0.004172113258391619, 0.023834384977817535, -0.016761520877480507, 0.02335214428603649, 0.013356608338654041, 0.029738180339336395, -0.015139437280595303, -0.0017134160734713078, -0.020677899941802025, 0.001976456493139267, 0.003578445641323924, 0.006813477724790573, -0.00380312604829669, -0.02988431416451931, 0.00910412147641182, 0.020020298659801483, 0.03241242468357086, 0.03445829451084137, -0.010645830072462559, 0.00760625209659338, 0.00457032723352313, 0.007752385921776295, 0.017024559900164604, -0.019567284733057022, -0.018778163939714432, 0.0068682776764035225, 0.006828091107308865, -0.005085448268800974, 0.0033555920235812664, 0.0075916387140750885, 0.00789851974695921, 0.004946621134877205, 0.01949421875178814, -0.015139437280595303, -0.013634261675179005, 0.0072591849602758884, 0.01879277639091015, 0.0016421759501099586, -0.0063860369846224785, -0.019099656492471695, -0.0029975648503750563, 0.0028240312822163105, -0.00460320757701993, 0.011990259401500225, -0.018179016187787056, -0.02037101984024048, 0.001377308857627213, -0.00910412147641182, 0.011997565627098083, 0.008928760886192322, -0.0034195254556834698, 0.02767769806087017, -0.017652934417128563, 0.007050944492220879, -0.01620621234178543, -0.004942968022078276, -0.02747311070561409, -0.0008420947124250233, 0.005611529108136892, -0.0058855293318629265, 0.009191801771521568, -0.0254418533295393, -0.016264665871858597, -0.0240681990981102, 9.247515117749572e-05, 0.001735336147248745, 0.006360463332384825, -0.008015425875782967, -0.010689670220017433, 0.005399635527282953, -0.0020623099990189075, -0.006342196837067604, -0.008198093622922897, 0.008300386369228363, -0.009907855652272701, 0.0006859144195914268, 0.007584332022815943, 0.018383603543043137, -0.002959204837679863, 0.013736555352807045, 0.010507003404200077, 0.005472701974213123, 0.006239903159439564, 0.01712685450911522, 0.0042890203185379505, -0.005666329059749842, 0.0016914959996938705, -0.0005639842129312456, -0.013195861130952835, 0.011274204589426517, -0.0024988839868456125, 0.03258778527379036, -0.008402680046856403, 0.01803288236260414, -0.011456871405243874, -0.015241730958223343, -0.01171991229057312, 0.003912726417183876, -0.002314390381798148, 0.00011456643551355228, -0.002500710776075721, 0.01034625619649887, -0.025617213919758797, 0.005428862292319536, -0.0093525480479002, -0.007313984911888838, 0.0024331239983439445, 0.0051329415291547775, -0.001419322332367301, -0.016527706757187843, -0.004175766836851835, 0.008548813872039318, 0.0032076318748295307, -0.004855287726968527, 0.030892636626958847, -0.029168259352445602, 0.008548813872039318, -0.006612543947994709, -0.015373251400887966, 0.015943171456456184, -0.031067997217178345, 0.03644571080803871, 0.028773698955774307, -0.024448145180940628, -0.005954943131655455, -0.010580070316791534, 0.028408365324139595, -0.01749218814074993, -0.0058855293318629265, 0.008132332935929298, -0.008088492788374424, -0.018690483644604683, 0.0019673232454806566, 0.008921454660594463, 0.01009782962501049, -0.0399821437895298, 0.01028780359774828, -0.0006585143855772913, 0.02959204837679863, 0.0001277527044294402, -0.007613558787852526, 0.017521414905786514, -0.007178811356425285, 0.00568459602072835, -0.018558962270617485, -0.010426630266010761, -0.014277249574661255, -1.6283047443721443e-05, -0.0037848593201488256, 0.009111427702009678, 0.000624264357611537, -0.004617820959538221, -0.00509275496006012, -0.001985589973628521, -0.01753602735698223, -0.02019565925002098, 0.0037812059745192528, -0.004376700147986412, -0.0005543942097574472, 0.013312768191099167, -0.017199920490384102, -0.0001968236465472728, 0.002803937764838338, -0.033435359597206116, -0.009484068490564823, 0.010002843104302883, -0.0024404306896030903, -0.034224480390548706, 0.001539882505312562, 0.022928357124328613, -0.006802517455071211, -0.012764766812324524, -0.005962249357253313, 0.0021865235175937414, -0.003340978641062975, -0.010507003404200077, 0.0006694744224660099, -0.01095271110534668, -0.021963875740766525, 0.016103919595479965, 0.00897990819066763, -0.00660889083519578, 0.0013919222401455045, 0.009396388195455074, -0.008855693973600864, -0.015139437280595303, 0.009484068490564823, -0.0023856305051594973, -0.021014006808400154, 0.0002678354212548584, -0.00252993730828166, 0.00987132266163826, -0.009834788739681244, 0.017302215099334717, -0.02706393599510193, 0.016220826655626297, 0.014891010709106922, 0.012742847204208374, -0.011668764986097813, 0.002539070788770914, -0.026128681376576424, -0.0014558556722477078, 0.003883499652147293, -0.020458700135350227, -0.026990870013833046, -0.012962047941982746, 0.008738787844777107, 0.021583927795290947, -0.01741912215948105, -0.01879277639091015, 0.006751371081918478, -0.002688857726752758, 0.029416687786579132, -0.018383603543043137, 0.009272174909710884, 0.004720114171504974, -0.004672620911151171, 0.006762330885976553, 0.01511021051555872, -0.0037885126657783985, 0.0007375178392976522, 0.001764562795870006, 0.0006480110459960997, 0.008285772986710072, 0.0012412220239639282, 0.015563225373625755, 0.021130913868546486, 0.0032843519002199173, 0.014050742611289024, 0.0004046073299832642, -0.017506800591945648, -0.004581287503242493, 0.010821190662682056, 0.012567486613988876, 0.0044095804914832115, -0.022095395252108574, 0.0019253097707405686, -0.0005489141913130879, -0.0035309523809701204, 0.004471687134355307, 0.0050306483171880245, 0.0012019486166536808, 0.027940738946199417, -0.0016960627399384975, -0.0036222857888787985, -0.02626020275056362, -0.0029409381095319986, -0.03656261786818504, 0.0006210676510818303, 0.008366147056221962, -0.011771058663725853, 0.0086876405403018, 0.014993304386734962, 0.004573980811983347, -0.0024860973935574293, -0.016644613817334175, -0.0010567284189164639, 0.02560260146856308, 0.005531155504286289, 0.016556933522224426, -0.037965502589941025, 0.0014339355984702706, -0.014160342514514923, -0.006455450318753719, -8.82509775692597e-05, 0.020794807001948357, -0.0075624119490385056, 0.008943374268710613, 0.0011663285549730062, -0.0006091943359933794, 0.012063326314091682, 0.029986608773469925, 0.004807794466614723, -0.0125894071534276, -0.005732089281082153, -0.0034505787771195173, 0.00881185382604599, -0.009812869131565094, 0.0011453218758106232, 0.014101888984441757, 0.0008914147620089352, 0.0005292775458656251, -0.005848995875567198, -0.012910900637507439, 0.010616603307425976, 0.018646642565727234, -0.007160544861108065, -0.022168463096022606, 0.010682363994419575, 0.022007714956998825, -0.013210474513471127, 0.007628172170370817, 0.006882891058921814, 0.006944997701793909, 0.01696610637009144, -0.004844327922910452, 0.0019636698998510838, 0.007642785552889109, -0.009849402122199535, -0.021890807896852493, 0.016805360093712807, 0.01161761861294508, -0.01011974923312664, 0.008205399848520756, -0.030804956331849098, -0.004099046811461449, 0.014701036736369133, 0.013999596238136292, 0.005048914812505245, 0.011749139055609703, -0.011098844930529594, 0.00272173760458827, -0.03270469233393669, 0.01570935919880867, 0.007270145229995251, 0.02589486911892891, 0.026917804032564163, -0.025617213919758797, 0.013605034910142422, -0.013393141329288483, -0.002462350530549884, 0.018924297764897346, -0.0214524082839489, 0.03004506230354309, 0.007343211676925421, -0.010813884437084198, -0.010981937870383263, 0.021087074652314186, -0.0093525480479002, -0.027546178549528122, -0.003366552060469985, 0.0033647255040705204, -0.01421148981899023, -0.0027655777521431446, -0.004869901109486818, 0.009133348241448402, -0.020970167592167854, -0.0072774519212543964, 0.02460889331996441, 0.006532170344144106, -0.00910412147641182, -0.0030560181476175785, 0.005626142490655184, 0.0057649691589176655, -0.0011727218516170979, 0.00045963574666529894, -0.0013453421415761113, -0.012779380194842815, -0.009250255301594734, 0.025003453716635704, 0.008972601033747196, -0.005659022368490696, -0.0008083013235591352, 0.01741912215948105, -0.007474732119590044, -0.0079569723457098, -0.004040593281388283, 0.013948448933660984, -0.016732294112443924, 0.03369840234518051, 0.026245588436722755, -0.002584737492725253, 0.00027993711410090327, 0.017112240195274353, 0.004815101157873869, -0.003510858863592148, 0.001357215573079884, -0.016264665871858597, 0.018237469717860222, -0.022972196340560913, 0.013042421080172062, -0.016717679798603058, 0.024287398904561996, -0.0160454660654068, 0.013429675251245499, 0.01267708744853735, 0.011420338414609432, -0.013378527946770191, 0.02161315456032753, -0.010317030362784863, 0.01087233703583479, -0.0017033694311976433, -0.0016257358947768807, -0.015650905668735504, 0.023673638701438904, 0.018719710409641266, 0.016936881467700005, 0.022504569962620735, -0.0012795820366591215, -0.003861579578369856, -0.014255329966545105, -0.01566551811993122, -0.019684191793203354, 0.003395778825506568, -0.019026590511202812, 0.006674650590866804, -0.030863409861922264, -0.01895352452993393, -0.007715852465480566, -0.0024495639372617006, -0.02659630961716175, -0.01807672157883644, 0.00989324226975441, 0.011266898363828659, 0.009345241822302341, 0.005026994738727808, -0.011917192488908768, -0.008154253475368023, 0.004354780539870262, 0.0024988839868456125, -0.008227319456636906, -0.022928357124328613, 0.004705500788986683, 0.00047128077130764723, 0.011361884884536266, 0.01724376156926155, -0.0001963669783435762, 0.0041501931846141815, 0.0013754821848124266, -0.023249851539731026, 0.002612137468531728, -0.01095271110534668, -0.0037172725424170494, 0.006013396196067333, -0.009717882610857487, 0.019172724336385727, -0.024828093126416206, 0.027400044724345207, 0.002500710776075721, 0.01095271110534668, -0.01238481979817152, -0.002924497937783599, -0.00056215759832412, 0.006079156417399645, 0.014291862957179546, -0.0006740411045029759, 0.00272173760458827, 0.024009745568037033, 0.02227075584232807, -0.030191196128726006, 0.002692511072382331, -0.007010757923126221, -0.004581287503242493, -0.010265883058309555, 0.010901563800871372, 0.012216766364872456, -0.027867671102285385, 0.012435967102646828, -0.0037848593201488256, 0.0060243564657866955, 0.001148061826825142, -0.0012667953269556165, -0.008848387748003006, -0.004946621134877205, -0.019435765221714973, -0.020663287490606308, -0.023469051346182823, -0.0030870717018842697, -0.014905624091625214, 0.011953725479543209, 0.01712685450911522, -0.007094784639775753, 0.00943292211741209, 0.019187336787581444, 0.002276030369102955, -0.02240227535367012, 0.006375076714903116, 0.015446318313479424, -0.0034962457139045, -0.0015006090980023146, 0.003074284875765443, -0.0253541748970747, 0.023790545761585236, 0.002438603900372982, 0.004877207800745964, -0.022533796727657318, 0.007869292981922626, 0.00241485727019608, 0.011120764538645744, 0.025412628427147865, -0.0023545771837234497, 0.0034560589119791985, 0.010148975998163223, -0.0016293892404064536, 0.019187336787581444, 0.0017709562089294195, 0.0009037447744049132, 0.015329411253333092, -0.02032717876136303, -0.005534809082746506, -0.015285571105778217, -0.02664014883339405, -0.015475545078516006, -0.012428659945726395, -0.002920844592154026, -0.012238685972988605, -0.009717882610857487, -0.0056626759469509125, 0.028247619047760963, -0.019801098853349686, 0.026786282658576965, -0.0028441245667636395, -0.002487923949956894, -0.003026791615411639, -0.00920641515403986, 0.019771872088313103, 0.007664705626666546, -0.01489831693470478, -0.0079569723457098, 0.002360057085752487, 0.004431500565260649, 0.007693932391703129, 0.0022285368759185076, 0.00477856770157814, 0.004153846763074398, -0.01600162498652935, -0.006842704489827156, 0.0011590218637138605, 0.028832152485847473, -0.0038177394308149815, 0.017214534804224968, 0.023790545761585236, 0.020517153665423393, 0.013181247748434544, 0.011676072143018246, 0.0024276438634842634, -0.038345448672771454, 0.00254637748003006, -0.011288817971944809, -0.012859754264354706, -0.014854476787149906, -0.0153147978708148, 0.02040024660527706, 0.005870915949344635, 0.02265070378780365, -0.001232088659889996, 0.016118532046675682, 0.008848387748003006, -0.011464178562164307, -0.0125894071534276, 0.020093366503715515, -0.02053176611661911, 0.007306678220629692, 0.005848995875567198, 0.0047712610103189945, 0.003799472702667117, -0.015431704930961132, -0.0003061954921577126, -0.01028780359774828, -0.018880456686019897, 0.0022321902215480804, 0.003923686221241951, -0.031360264867544174, 0.014554903842508793, 0.010609297081828117, -0.0011535418452695012, 0.006199716590344906, -0.0025902173947542906, -0.01683458685874939, 0.00086127471877262, 0.00727379834279418, 0.00596590293571353, -0.009783642366528511, -0.008943374268710613, 0.0032112852204591036, -0.003024964826181531, -0.019435765221714973, -0.011208444833755493, 0.009805561974644661, -0.0029811246786266565, -0.005085448268800974, 0.0024203371722251177, -0.013166634365916252, -0.020254112780094147, -0.007752385921776295, -0.03553968295454979, 0.006579664070159197, 0.0021627768874168396, -0.0030103514436632395, -0.025471080094575882, -0.011807592585682869, 0.003105338430032134, -0.0011562819126993418, -0.013458902016282082, -0.00040917398291639984, -0.012443273328244686, -0.006707530934363604, -0.001598335918970406, 0.0024312972091138363, 0.005666329059749842, -0.009944389574229717, 0.009396388195455074, 0.006159530021250248, -0.015621678903698921, -0.0037885126657783985, -0.008314999751746655, -0.011975646018981934, 0.020137205719947815, 0.01812056265771389, 0.017477575689554214, -0.009966309182345867, 0.017199920490384102, -0.009564441628754139, 0.018807390704751015, -0.011478791944682598, 0.014766797423362732, 0.006740410812199116, -0.01904120482504368, 0.0005096408422105014, 0.010558150708675385, 0.003267911961302161, -0.005556729156523943, 0.0022541102953255177, -0.01560706552118063, -0.010353563353419304, 0.0009338848176412284, -0.019085044041275978, 0.0015088290674611926, 0.01803288236260414, -0.008198093622922897, 0.026201749220490456, -0.011274204589426517, 0.012406740337610245, -0.0018604629440233111, 0.012457886710762978, -0.025748735293745995, 0.003799472702667117, -0.002239496912807226, 0.013707328587770462, -0.01018550992012024, 0.0012393953511491418, -0.01620621234178543, -0.020604833960533142, -0.006155876442790031, -0.04562290012836456, 0.007295718416571617, 0.0015828092582523823, 0.00010668892355170101, 0.009359855204820633, 0.009790949523448944, 0.0007964279502630234, -0.012494419701397419, -0.014430689625442028, -0.006283743306994438, -0.014240716584026814, 0.002517150714993477, -0.017945202067494392, 0.026157908141613007, 0.005147554911673069, -0.028116097673773766, 0.01182220596820116, -0.01882200315594673, -0.011851432733237743, 0.0025518573820590973, -0.01088695041835308, -0.01215831283479929, 0.0015837225364521146, 0.004102699924260378, -0.0023308303207159042, -0.0213208869099617, 0.012976661324501038, -0.017521414905786514, 0.02422894537448883, -0.004252486862242222, -0.011697991751134396, 0.0030194849241524935, 0.008738787844777107, -0.0146498903632164, -0.0018632030114531517, 0.0015161357587203383, 0.018924297764897346, -0.0060243564657866955, 0.013020500540733337, 0.004873554687947035, 0.016893040388822556, -0.022548409178853035, -0.006002436392009258, -0.0025445506907999516, 0.031360264867544174, -0.002849604468792677, -0.0008850214071571827, 0.0037264060229063034, 0.007310331799089909, -0.010521616786718369, 0.009462148882448673, 0.010010149329900742, -0.019801098853349686, 0.020458700135350227, 0.007335904985666275, 0.008504973724484444, -0.016235439106822014, 0.0003911356325261295, 0.022679930552840233, -0.006112036295235157, 0.0071093980222940445, -0.024535825476050377, -0.006316623650491238, -0.006331237033009529, 0.014394156634807587, 0.000903288135305047, 0.01085041742771864, 0.024097425863146782, 0.016016239300370216, -0.009199107997119427, 0.001390095567330718, -0.0052535017021000385, -0.0074893455021083355, -0.01800365559756756, -0.0035473923198878765, 0.010645830072462559, -0.018938910216093063, -0.010580070316791534, 0.0061266496777534485, 0.017258374020457268, -0.002438603900372982, 0.023016037419438362, 0.009199107997119427, 0.015943171456456184, 0.014182263053953648, -0.027838444337248802, -0.0003945606295019388, 0.00022582203382626176, 0.01928963139653206, -0.01442338339984417, -0.008066573180258274, 0.02314755693078041, 0.029913540929555893, 0.008241932839155197, -0.017740614712238312, 0.010265883058309555, -0.025164199993014336, 0.015256344340741634, -0.00514390179887414, -0.030804956331849098, 0.0022650703322142363, 0.01487639732658863, -0.012428659945726395, -0.00910412147641182, -0.012618633918464184, 0.011098844930529594, 0.0006722144316881895, -0.012604020535945892, 0.0047712610103189945, -0.012238685972988605, 0.008030039258301258, -0.012267912738025188, -0.018354376778006554, 0.021598542109131813, 0.007642785552889109, 0.05064989626407623, 0.012830527499318123, 0.002729044295847416, -0.007120358292013407, 0.0017883095424622297, -0.03764400631189346, 0.00847574695944786, 0.008877614513039589, 0.0019910698756575584, -0.004968541208654642, -0.017740614712238312, -0.011807592585682869, 0.021496247500181198, 0.014934850856661797, -0.0238928385078907, -0.003799472702667117, 0.005458088591694832, -0.012552873231470585, 0.01695149391889572, 0.020137205719947815, 0.01832515001296997, 0.0031528316903859377, -0.010068602859973907, 0.015636291354894638, 0.003242338541895151, 0.01097463071346283, -0.010397403500974178, -0.02763385698199272, -0.021978488191962242, -0.0035090323071926832, 0.012063326314091682, -0.0018211896531283855, -0.015227117575705051, 0.013181247748434544, -0.0032185919117182493, 0.0034560589119791985, 0.008621880784630775, 0.00999553594738245, 0.01171991229057312, -0.0022120969370007515, -0.010382790118455887, -0.013232395052909851, 0.022884516045451164, -0.01595778577029705, -0.013926529325544834, 0.005249848589301109, 0.012421353720128536, -0.020341793075203896, -0.007357825059443712, -0.0008188046631403267, 0.010295109823346138, -0.014328395947813988, 0.004332860466092825, -0.018734322860836983, -0.022928357124328613, 0.01820824295282364, 0.0159139446914196, -0.01636696048080921, -0.011829512193799019, -0.015972398221492767, -0.011851432733237743, 0.00031761216814629734, 0.012706314213573933, 0.014686423353850842, -0.004464380443096161, 0.01717069372534752, -0.007445505354553461, 0.003151005133986473, 0.0027948045171797276, -0.0013517355546355247, -0.00451918039470911, -0.0375855527818203, -0.012918207794427872, -0.0026961644180119038, -0.009491375647485256, -0.03799472749233246, -0.008073879405856133, -0.008782627061009407, -0.013473515398800373, 0.022183075547218323, 0.010083216242492199, -0.006316623650491238, -0.0032606052700430155, 0.0041976869106292725, -0.014167649671435356, -0.003536432282999158, -0.015767812728881836, -0.0014238889561966062, 0.0024075505789369345, -0.000595037650782615, -0.011939112097024918, 0.0011042217956855893, -0.006422570440918207, 0.017360668629407883, 0.013831541873514652, 0.0014996957033872604, 0.003653339110314846, -0.005713822320103645, -0.002347270492464304, 0.01028780359774828, 0.01444530300796032, 0.008161559700965881, 0.012655166909098625, 0.007964279502630234, 7.991679740371183e-05, -0.024579666554927826, 0.005341181997209787, -0.013911915943026543, -0.01051431056112051, 0.02073635347187519, -0.006364116910845041, 0.009389081969857216, 0.009922469034790993, -0.0120340995490551, -0.0041684601455926895, 0.009096814319491386, 0.002833164529874921, 0.013473515398800373, 0.020677899941802025, 0.01434300933033228, 0.003421352244913578, 0.007525878958404064, 0.024696573615074158, -0.00544347520917654, 0.014204182662069798, -0.007876599207520485, -0.009191801771521568, 0.0069778780452907085, -0.0013206821167841554, -0.010857724584639072, 0.005794195923954248, 0.019932618364691734, 0.013283541426062584, 0.011062311008572578, -0.013846155256032944, -0.0010813884437084198, -0.011997565627098083, -0.01778445579111576, 0.003317232010886073, -0.0075916387140750885, -0.0015371424378827214, 0.031360264867544174, 0.027414657175540924, -0.00903836078941822, 0.023001423105597496, -0.0007936879410408437, -0.01782829500734806, 0.009155267849564552, 0.0014056222280487418, 0.00964481569826603, 0.0022066168021410704, -0.007810839451849461, -0.018485896289348602, 0.0049210479483008385, -0.005089101381599903, 0.007160544861108065, -0.014240716584026814, 0.02116014063358307, -0.02281145006418228, 0.014978691004216671, 0.00837345328181982, -0.002962858183309436, 0.009147961623966694, 0.019728031009435654, 0.0038652329239994287, -0.008154253475368023, -0.013751168735325336, -0.005848995875567198, -0.012976661324501038, -0.01724376156926155, 0.01171991229057312, -0.005564035847783089, -0.004749340936541557, -0.00922833476215601, 0.011902579106390476, 0.005001421552151442, -0.0024075505789369345, -0.00812502671033144, -0.01911427080631256, 0.008651107549667358, 0.012757460586726665, 0.007284758612513542, 0.009688655845820904, -0.010492390021681786, -0.005129288416355848, 0.006824437528848648, -0.004818754270672798, -0.01041201688349247, -0.0031838850118219852, -0.001497869030572474, 0.0007690279162488878, 0.03454597666859627, 0.0013535622274503112, -0.0076208654791116714, -0.0015800691908225417, -0.003200325183570385, 0.013356608338654041, -0.0014841690426692367, -0.028481433168053627, -0.009878628887236118, 0.003366552060469985, 0.003392125479876995, 0.0006251776940189302, 0.003985792864114046], "ca3e349b-fcaa-4872-9016-4f32585cd66c": [-0.02578144706785679, -0.022692063823342323, -0.014670646749436855, 0.016434889286756516, -0.0034089062828570604, -0.013565056025981903, -0.007774423807859421, 0.00048369617434218526, -0.024025047197937965, 0.018238335847854614, 0.008397788740694523, 0.021014075726270676, -0.005386816803365946, -0.04234179109334946, 0.019194945693016052, 0.03156815841794014, -0.016638755798339844, 0.0036460987757891417, 0.027726033702492714, -0.017313089221715927, 0.06536318361759186, -0.005904327612370253, -0.028870830312371254, -0.004363556858152151, 0.015313615091145039, 0.007562714628875256, -0.01858334243297577, -0.0028561106882989407, -0.018457885831594467, 0.0069824750535190105, 0.01412961259484291, 0.021876592189073563, 0.02090430073440075, -0.0018759766826406121, 0.0015887973131611943, -0.0085702920332551, 0.01969677396118641, 0.029294246807694435, -0.05190790072083473, 0.02117089554667473, -0.017156267538666725, -0.012279120273888111, 0.012051728554069996, -0.013541532680392265, -0.04638778790831566, 0.03371661156415939, 0.01831674575805664, -0.02048088237643242, -0.01710922084748745, -0.01195763610303402, 0.018144242465496063, 0.003457913175225258, 0.0006503189797513187, -0.004720325581729412, 0.0209356639534235, -0.015384185127913952, 0.00592785095795989, 0.02030837908387184, 0.015203840099275112, -0.019445860758423805, 0.003552005859091878, 0.021045438945293427, 0.03591211140155792, 0.0029168790206313133, -0.006512010935693979, -0.0341557115316391, 0.013651307672262192, -0.0016966121038421988, -0.03892308473587036, -0.02139044553041458, -0.021312035620212555, 0.04438047111034393, -0.04096176475286484, 0.0005532857030630112, -0.005967056378722191, -0.033183418214321136, 0.07188695669174194, 0.004935955163091421, -0.00025336467660963535, 0.005645572207868099, -0.037793971598148346, 0.03898581489920616, 0.03650803491473198, -0.007143217138946056, 0.06188174709677696, 0.0533192940056324, -0.008099827915430069, -0.03337160497903824, 0.026941925287246704, -0.019586998969316483, 0.0019210628233850002, -0.012279120273888111, 0.011965476907789707, -0.025922587141394615, -0.015462595038115978, 0.005641651805490255, -0.007550952956080437, 0.021468857303261757, -0.003044296521693468, -0.046701427549123764, -0.02021428570151329, 0.03412434831261635, -0.041494958102703094, 0.01146364863961935, -0.013063226826488972, -0.0020308378152549267, 0.0342811681330204, -0.0002314341691089794, -0.025075750425457954, 0.08305264264345169, 0.02325662225484848, -0.02970198355615139, -0.012467305175960064, 0.013964950107038021, -0.05416613072156906, -0.05150016397237778, -0.01326709520071745, -0.01626238413155079, -0.009213260374963284, -0.048332370817661285, -0.015627257525920868, 0.04365909472107887, 0.03942491486668587, 0.006308143027126789, -0.01293777022510767, -0.0016054596053436399, 0.014537348411977291, -0.006323825102299452, 0.02578144706785679, -0.01665443927049637, -0.01641920581459999, -0.02554621547460556, 0.010005208663642406, 0.021468857303261757, 0.01194195356220007, 0.008217444643378258, 0.03675894811749458, 0.056800730526447296, -0.017156267538666725, 0.04576050117611885, -0.03889172151684761, -0.04874010756611824, -0.0170464925467968, 0.03261886164546013, 0.010938296094536781, 0.0014721613842993975, -0.045321401208639145, 0.044662751257419586, -0.02512279711663723, 0.009848386980593204, -0.038358528167009354, -0.02400936558842659, 0.043690457940101624, 0.021562950685620308, 0.01858334243297577, 0.004328272305428982, -0.009064280427992344, 0.03751169145107269, -0.013455281034111977, 0.011800814419984818, 0.011314667761325836, -0.07803435623645782, -0.0032834492158144712, -0.004065596032887697, 0.030642911791801453, 0.005512274336069822, 0.06087808683514595, 0.024323007091879845, -0.0493987575173378, 0.02888651192188263, 0.008060622960329056, -0.000795378815382719, 0.01831674575805664, 0.027255568653345108, 0.006907985080033541, 0.011596946977078915, 0.022221600636839867, 0.008625180460512638, 0.026110772043466568, -0.009291671216487885, 0.0006811931962147355, -0.010507037863135338, -0.016528980806469917, -0.0045595839619636536, 0.014780421741306782, 0.032305218279361725, -0.00029085480491630733, 0.022268647328019142, -0.010993183590471745, 0.007025601342320442, -0.008593815378844738, -0.014521666802465916, -0.004806577693670988, 0.012326166033744812, 0.013220048509538174, -0.011322508566081524, -0.0094876978546381, -0.014992130920290947, 0.015909535810351372, 0.02476210705935955, -0.0017838440835475922, -0.0457291379570961, -0.05005740746855736, 0.042310427874326706, 0.008985869586467743, 0.0014800024218857288, -0.00361865502782166, -0.016983764246106148, 0.014357004314661026, -0.02783580869436264, 0.018034467473626137, -0.039268091320991516, 0.0014055123319849372, -0.020794525742530823, -0.005253518931567669, 0.0011085316073149443, -0.021876592189073563, 0.04576050117611885, -0.0010693263029679656, -0.007311800494790077, -0.021547267213463783, 0.0006321864784695208, -0.011408761143684387, -0.04281225800514221, -0.04497639462351799, 0.00145353889092803, 0.01194195356220007, 0.02063770405948162, -0.04491366446018219, 0.011738086119294167, 0.043000441044569016, -0.005304485559463501, -0.017124902456998825, -0.017313089221715927, 0.0085702920332551, 0.030282223597168922, 0.01383949350565672, 0.011745926924049854, 0.019665410742163658, 0.0042733848094940186, 0.01128330361098051, 0.05733392387628555, 0.0042733848094940186, 0.000617484503891319, 0.006343428045511246, 0.019963370636105537, 0.007837152108550072, 0.0419967845082283, 0.015627257525920868, 0.003628456499427557, -0.0037617546040564775, 0.0007605840801261365, 0.03265022858977318, -0.016936717554926872, 0.008303696289658546, 0.02443278208374977, -0.010930455289781094, -0.03337160497903824, -0.0028502298519015312, -0.04246725142002106, 0.013196525163948536, 0.03274431824684143, 0.018818574026226997, -0.01358857937157154, 0.017658095806837082, -0.04503912106156349, 0.04720325767993927, -0.01988496072590351, 0.024573922157287598, 0.060564447194337845, -0.0032795285806059837, 0.005955294705927372, 0.00027468259213492274, -0.016152609139680862, 0.004281225614249706, -0.006429679691791534, 0.017124902456998825, 0.0017711023101583123, 0.006276778876781464, 0.006119957193732262, 0.004971240181475878, 0.012820153497159481, 0.019994735717773438, 0.01608988083899021, 0.003367740660905838, 0.006547295954078436, -0.02542075701057911, 0.021704088896512985, -0.052942924201488495, -0.03150543197989464, -0.00634734844788909, -0.018896985799074173, 0.03710395470261574, -0.00016208968008868396, 0.04284362122416496, -0.033936161547899246, 0.011800814419984818, 0.010114983655512333, -0.047454170882701874, 0.0068609388545155525, -0.015737032517790794, -0.03741759806871414, 0.004277305211871862, -0.019351767376065254, 0.010789316147565842, 0.009181896224617958, 0.024511193856596947, -5.286598388920538e-05, -0.034720271825790405, -0.00909564457833767, 0.0304233618080616, 0.008703590370714664, 0.004547822289168835, -0.00011210283992113546, 0.01298481598496437, 0.0037421518936753273, -0.013071068562567234, -0.022456832230091095, 0.004814418498426676, -0.04124404117465019, 0.006515931338071823, 0.016011470928788185, -0.01390222180634737, 0.016952399164438248, 0.027851490303874016, -0.045321401208639145, 0.028839465230703354, -0.009973844513297081, -0.01822265237569809, -0.050747424364089966, -0.033873435109853745, -0.02780444361269474, -0.033998891711235046, -0.007331402972340584, -0.026549872010946274, -0.03337160497903824, -0.02560894377529621, -0.05162562429904938, -0.0030854621436446905, -0.031050648540258408, -0.014921561814844608, 0.00028129847487434745, -0.019445860758423805, 0.0049163526855409145, 0.039330821484327316, 0.007895960472524166, 0.006155242212116718, 0.011706721968948841, -0.03185043856501579, -0.02358594723045826, 0.0010820680763572454, -0.02542075701057911, 0.04356500133872032, -0.010859886184334755, 0.0341557115316391, 0.0008561471477150917, 0.0003658350615296513, -0.007464701309800148, 0.004183212295174599, 0.002166096353903413, 0.040836308151483536, -0.042373158037662506, -0.019681092351675034, 0.009017233736813068, 0.008633021265268326, 0.02142181061208248, -0.0305801834911108, -0.0035676881670951843, 0.015886012464761734, -0.0002501792332623154, -0.03217976167798042, 0.02996858023107052, 0.019320402294397354, 0.023084118962287903, -0.017422864213585854, -0.007233389653265476, 0.05846303701400757, 0.002403288846835494, -0.025358028709888458, 0.0171405840665102, 0.0035245621111243963, -0.00719810463488102, 0.025467803701758385, 0.007194184232503176, 0.028416046872735023, 0.023632993921637535, 0.024934610351920128, 0.043910007923841476, 0.004002867732197046, -0.0008037099614739418, -0.07125966995954514, 0.033152054995298386, -0.02063770405948162, 0.017422864213585854, -0.05021423101425171, 0.01952427066862583, 0.0003356959205120802, 0.007154978811740875, 0.02030837908387184, -0.03976992145180702, 0.019351767376065254, -0.005759268067777157, 0.005410340148955584, 0.00024050040519796312, 0.004038152284920216, -0.024965975433588028, -0.021515903994441032, -0.020559292286634445, 0.013274936005473137, -0.0026836071629077196, 0.006037625949829817, -0.008460517041385174, 0.012702537700533867, 0.041871327906847, 0.04500775784254074, -0.006504169665277004, 0.03864080458879471, 0.016215339303016663, -0.03967582806944847, -0.020731795579195023, 0.032367948442697525, 0.08217444270849228, -0.003846046281978488, 0.030439043417572975, 0.019586998969316483, 0.018787210807204247, 0.07483519613742828, 0.009793499484658241, -0.03159952163696289, 0.00030727204284630716, 0.01406688429415226, 0.04039720818400383, 0.0010967700509354472, -0.013337664306163788, -0.005339770577847958, -0.04623096436262131, -0.02855718694627285, -0.017030809074640274, -0.013431757688522339, -0.0027110509108752012, 0.021437492221593857, 0.010013049468398094, -0.022362738847732544, 0.00795084796845913, -0.03343433514237404, -0.046826887875795364, -0.03864080458879471, -0.003700986271724105, -0.004308669362217188, 0.007543112151324749, -0.012373212724924088, 0.05485614389181137, -0.029529480263590813, -0.0009644519304856658, 0.009432810358703136, 0.004685041029006243, -0.023115482181310654, -0.030266540125012398, 0.03566119819879532, -0.010405103676021099, -0.03133292496204376, 0.0012555518187582493, -0.013941427692770958, -0.00393229816108942, 0.005727903451770544, -0.03500254824757576, 0.004214576445519924, 0.0340302549302578, 0.008923140354454517, -0.0048379418440163136, -0.018112877383828163, -0.005347611382603645, -0.04513321444392204, -0.0013888500398024917, 0.0009345578728243709, -0.04419228434562683, -0.03588074818253517, -0.03650803491473198, 0.020433835685253143, -0.037699878215789795, -0.02894924022257328, -0.006041546352207661, -0.011228416115045547, 0.015807602554559708, 0.00793908629566431, 0.011361714452505112, -0.008107669651508331, -0.016591709107160568, 0.010514878667891026, -0.02963925525546074, 0.04663870111107826, -0.021249307319521904, 0.018175605684518814, 0.010844203643500805, -0.006147400941699743, -0.04093039780855179, 0.00914269033819437, -0.029811758548021317, -0.001203604624606669, -0.046168237924575806, 0.041620414704084396, -0.014153135940432549, -0.0013653268106281757, 0.007954767905175686, -0.0032383629586547613, -0.0024915009271353483, -0.033967528492212296, -0.0012290881713852286, 0.010287487879395485, -0.019022442400455475, -0.051374707370996475, -0.007625443395227194, -0.00966804288327694, 0.02506006881594658, -0.003377542132511735, 0.006402235943824053, -0.012875040993094444, 0.01674853079020977, 0.01599578745663166, -0.002019076142460108, 0.008515404537320137, -0.002034758450463414, -0.020135873928666115, 0.02404072880744934, 0.006029785145074129, -0.02446414716541767, -0.010718746110796928, -0.0021229705307632685, 0.010946137830615044, -0.026346003636717796, -0.0170151274651289, 0.019634045660495758, -0.029419705271720886, 0.014427573420107365, 0.015101905912160873, -0.023429125547409058, 0.021766817197203636, -0.009377922862768173, -0.01489803846925497, 0.029121743515133858, -0.020559292286634445, 0.012655491009354591, 0.01373755931854248, 0.016466252505779266, 0.023021388798952103, 0.04290635138750076, -0.011353873647749424, 0.03139565512537956, 0.026016678661108017, 0.009087802842259407, -0.02346048876643181, 0.019194945693016052, -0.019241992384195328, -4.5606862840941176e-05, 0.0171405840665102, -0.04347090795636177, 0.008672226220369339, -0.0042616231366992, -0.018081514164805412, 0.0032109192106872797, -0.005547558888792992, 0.0005890605971217155, 0.025373712182044983, 0.0024993419647216797, -0.016544664278626442, -0.015360661782324314, -0.0058376784436404705, 0.03150543197989464, -0.022519560530781746, -0.0024326927959918976, 0.011816496960818768, -0.0037049069069325924, 0.008695749565958977, -0.011322508566081524, -0.0057867118157446384, 0.004967319779098034, -0.010585447773337364, 0.01674853079020977, -0.029200155287981033, 0.003734310856088996, 0.032336585223674774, -0.03650803491473198, -0.00817823875695467, -0.008256649598479271, -0.014788263477385044, 0.01746991090476513, -0.02626759372651577, -0.016670120880007744, -0.005508353468030691, 0.0015740953385829926, 0.0051359026692807674, 0.012522193603217602, 0.021907957270741463, -0.009228942915797234, -0.02175113558769226, 0.04118131473660469, 0.015972265973687172, 0.02027701400220394, -0.00031927868258208036, 0.008429152891039848, 0.018238335847854614, 0.014192341826856136, 0.032963868230581284, -0.016795577481389046, -0.024291643872857094, 0.02361731044948101, -0.01828538067638874, -0.010828521102666855, 0.010969661176204681, 0.0038793706335127354, -0.01746991090476513, 0.01120489276945591, 0.033057961612939835, -0.02048088237643242, 0.04657597094774246, 0.020229967311024666, 0.03751169145107269, 0.009260307066142559, 0.004008748568594456, 0.003846046281978488, 0.013815970160067081, -0.046011414378881454, 0.04883420094847679, -0.020339742302894592, 0.031913165003061295, 0.023021388798952103, 0.0008713392307981849, 0.00793908629566431, -0.010373739525675774, 0.03509664162993431, 0.0009213260491378605, 0.003904854180291295, 0.032273855060338974, -0.0380762480199337, 0.031317245215177536, 0.012216391041874886, 0.03713532164692879, 0.02054361067712307, -0.026941925287246704, 0.008170397952198982, 0.008664385415613651, 0.005229995585978031, -0.016466252505779266, 0.05799257382750511, -0.011761609464883804, -0.0031540715135633945, -0.005735744722187519, 0.031223151832818985, 0.05309974402189255, -0.0034990787971764803, -0.04663870111107826, 0.004242020193487406, 0.00018634799926076084, 0.025436440482735634, 0.019837914034724236, -0.03876626491546631, 0.004841862246394157, 0.02593826875090599, 0.02581281214952469, 0.015909535810351372, 0.014584395103156567, -0.017971739172935486, 7.191734039224684e-05, 0.006864859256893396, 0.01423154678195715, 0.00835858378559351, -0.004226338118314743, 0.01641920581459999, 0.022660700604319572, 0.014286434277892113, 0.003906814381480217, -0.0027894615195691586, 0.0024150502867996693, 0.014466779306530952, -0.018834257498383522, -0.02901196852326393, 0.0020465198904275894, -0.0031677933875471354, 0.011738086119294167, -0.0029580446425825357, 0.006880541332066059, -0.009989527054131031, -0.02024564892053604, 0.032430678606033325, 0.0008463457925245166, -0.003242283593863249, -0.004602709785103798, 0.05200199410319328, 0.006649229675531387, 0.010656017810106277, 0.015039177611470222, 0.003947980236262083, -0.007895960472524166, -0.013933585956692696, -0.014074725098907948, 0.0018475527176633477, -0.019571317359805107, -0.044600021094083786, 0.026471462100744247, 0.0050653330981731415, -0.05466796085238457, 0.013831652700901031, 0.0019622284453362226, -0.0068609388545155525, 0.007986132986843586, 0.01561941672116518, -0.021484538912773132, -0.02600099705159664, 0.03515937179327011, 0.00876631960272789, 0.023836860433220863, 0.025640306994318962, 0.0004983982071280479, 0.005476989317685366, -0.000779206573497504, 0.028478777036070824, -0.004590948112308979, 0.000726769445464015, -0.01903812400996685, 0.015439072623848915, 0.00494771683588624, 0.025734400376677513, 0.0015446912730112672, -0.04858328774571419, -0.032273855060338974, -0.01069522276520729, -0.0028443490155041218, 0.02319389395415783, -0.01687398925423622, 0.011102958582341671, 0.03180339187383652, 0.01015418954193592, 0.0009575909934937954, 0.0029149188194423914, -0.025138478726148605, -0.0023327190428972244, -0.0340302549302578, 0.015070541761815548, 0.03631984815001488, -0.02717715874314308, 0.014733375981450081, 0.019649729132652283, 0.019916323944926262, -0.0004484113596845418, 0.017548320814967155, -0.013047545216977596, 0.010287487879395485, 0.0094876978546381, 0.013886540196835995, 0.019618364050984383, 0.03509664162993431, -0.029137426987290382, 0.038358528167009354, 0.007629363797605038, -0.029388340190052986, 0.02355458214879036, -0.0028561106882989407, -0.013439598493278027, -0.025436440482735634, 0.024385735392570496, -0.0032481644302606583, -0.004085198976099491, -0.0008296835003420711, -0.02996858023107052, 0.017642414197325706, -0.003183475462719798, -0.019273357465863228, 0.03741759806871414, 0.04089903458952904, -0.005625969730317593, 0.030799733474850655, 0.0020288776140660048, 0.030893826857209206, 0.02590690366923809, -0.002320957602933049, 0.01858334243297577, 0.03547301143407822, -0.008162557147443295, -0.04315726459026337, -0.024417100474238396, -0.017391499131917953, -0.03707259148359299, 0.007684251293540001, -0.03710395470261574, 0.04698370769619942, -0.0036245358642190695, 0.03735487163066864, 0.011259780265390873, -0.012043887749314308, 0.005394658073782921, 0.03365388512611389, 0.012569239363074303, 0.012686856091022491, 0.001983791356906295, -0.0011369555722922087, -0.013306300155818462, 0.019053807482123375, -0.021939322352409363, -0.01375324185937643, 0.006421838421374559, -0.0012281080707907677, -0.033120691776275635, 0.04039720818400383, 0.03214839845895767, -0.012130139395594597, -0.029090380296111107, -0.00024797391961328685, -0.008107669651508331, -0.009087802842259407, 0.013549373485147953, -0.014537348411977291, 0.012961293570697308, 0.003195237135514617, 0.001890678657218814, 0.015807602554559708, -0.007562714628875256, 0.006190526764839888, 0.01242810022085905, -0.003450071904808283, 0.016513299196958542, -0.006770766340196133, 0.017720824107527733, 0.0034030256792902946, 0.009283830411732197, -0.018818574026226997, -0.014059043489396572, 0.024197550490498543, -0.031552474945783615, 0.03751169145107269, -0.0024013284128159285, 0.00123692920897156, -0.012310484424233437, -0.013463121838867664, 0.050559237599372864, 0.017360135912895203, 0.013596420176327229, -0.031975895166397095, -0.015533165074884892, -0.009519062004983425, 0.028180815279483795, -0.00780970836058259, -0.03641394153237343, -0.02214318886399269, -0.00524175725877285, 0.0006542394985444844, 0.01831674575805664, 0.0008536967798136175, 0.016638755798339844, 0.03481436148285866, 0.03660212829709053, 0.038421254605054855, -0.013259254395961761, 0.0005856301286257803, 0.01242810022085905, -0.015431230887770653, 0.02548348717391491, -0.0018975395942106843, 0.03274431824684143, 0.002871792996302247, 0.04020902141928673, -0.006817812565714121, 0.039236728101968765, -0.02744375541806221, -0.033873435109853745, 0.01903812400996685, 0.02813376858830452, -0.0160506758838892, -0.03431253507733345, 0.027098746970295906, 0.003128587966784835, -0.007370608393102884, 0.007688171695917845, 0.006100354716181755, 0.028337636962532997, -0.011596946977078915, -0.02554621547460556, 0.010922614485025406, 0.0036735425237566233, -0.025922587141394615, -0.014302116818726063, 0.024260278791189194, 0.022660700604319572, 0.015650780871510506, 0.00327560817822814, -0.06611592322587967, -0.02024564892053604, 0.01260844524949789, -0.022629335522651672, 0.0010467831743881106, 0.002895316109061241, -0.003342257346957922, 0.009511221200227737, -0.02015155740082264, -0.010530560277402401, -0.013188684359192848, -0.006711958441883326, -0.01638784259557724, -0.029560843482613564, -0.0026189181953668594, 0.009793499484658241, -0.01626238413155079, -0.02070043236017227, -0.03177202492952347, 0.023664357140660286, 0.03217976167798042, -0.055169787257909775, -0.0076528871431946754, 0.014976449310779572, 0.016921034082770348, 0.0033834229689091444, 0.0057004597038030624, 0.02030837908387184, -0.022519560530781746, -0.02328798547387123, 0.024997340515255928, 0.04321999102830887, 0.02217455394566059, 0.0104835145175457, -0.02521689049899578, 0.0022641096729785204, 0.007715615443885326, 0.007594078779220581, -0.012788789346814156, 0.012279120273888111, -0.0189753957092762, -0.015015654265880585, 0.020386788994073868, 0.002083765110000968, 0.023836860433220863, 0.021484538912773132, -0.008640862070024014, 0.011596946977078915, -0.012459464371204376, -0.019994735717773438, 0.036288484930992126, 0.002705170074477792, 0.005030048079788685, -0.003800960024818778, -0.04544685781002045, -0.01629374921321869, -0.01982223242521286, -0.005018286406993866, 0.0053436909802258015, -0.011251939460635185, 0.001994572812691331, -0.012890723533928394, -0.019194945693016052, 0.006147400941699743, -0.012961293570697308, 0.014019837602972984, 0.018034467473626137, 0.02813376858830452, 0.01933608576655388, -0.028416046872735023, -0.004528219345957041, 0.029623573645949364, -0.01184001937508583, 0.003914655651897192, -0.0075744763016700745, 0.029153108596801758, -0.009252466261386871, -0.00777050293982029, 0.007590158376842737, 0.0053436909802258015, -0.03895444795489311, 0.024103457108139992, -0.02855718694627285, 0.006531613413244486, 0.0077195363119244576, 0.02331935055553913, -0.006174844689667225, -0.009330876171588898, 0.004841862246394157, 0.005504433065652847, 0.02208046056330204, -0.01834811083972454, 0.0020759240724146366, -0.012671173550188541, -0.013518009334802628, -0.003344217548146844, 0.029905851930379868, -0.026455778628587723, -0.016732849180698395, -0.04362772777676582, -0.018599024042487144, -0.010052255354821682, -0.021515903994441032, 0.0142472293227911, -0.0030913429800421, -0.010083619505167007, 0.002999210264533758, -0.022848885506391525, -0.012475146912038326, -0.011432284489274025, 0.0030031308997422457, -0.005245677661150694, -0.0069903163239359856, -0.02204909734427929, -0.012867200188338757, -0.026847833767533302, -0.013949268497526646, -0.012796631082892418, -0.01605851761996746, 0.03594347834587097, 0.0011036309879273176, -0.012153662741184235, 0.003034495050087571, 0.007982212118804455, 0.01972813904285431, 0.0009938559960573912, 0.007264753803610802, -0.01439620926976204, -0.0038656487595289946, -0.0057083009742200375, 0.004085198976099491, 0.009393605403602123, -0.006809971760958433, -0.05385248735547066, -0.03672758489847183, 0.022990025579929352, 0.0057671088725328445, -0.02002609893679619, -0.012545716017484665, 0.005982738453894854, 0.0021621757186949253, -0.0006253255414776504, 0.0007218687678687274, 0.0085702920332551, 0.01939881406724453, -0.009722930379211903, -0.026079406961798668, 0.002556189661845565, 0.01358857937157154, -0.006806051358580589, -0.008609497919678688, -0.0417458713054657, 0.011197051964700222, -0.06498681008815765, -0.020763160660862923, 0.0191322173923254, 0.01671716757118702, -0.038358528167009354, -0.027631940320134163, 0.005496591795235872, 0.004598789382725954, 0.0028796340338885784, 0.010287487879395485, -0.0037029467057436705, 0.008876094594597816, 0.0008566371980123222, 0.0380762480199337, -0.023068435490131378, 0.009691566228866577, 0.002895316109061241, -0.00891529954969883, 0.007660727947950363, 0.013706195168197155, -0.0018259898060932755, 0.009354399517178535, 0.007617602124810219, -0.0028482696507126093, 0.009675883688032627, 0.027600575238466263, -0.02404072880744934, 0.018991077318787575, -0.015180316753685474, -0.012232073582708836, -0.005582843907177448, 0.026612600311636925, -0.021704088896512985, -0.001042862655594945, 0.011824337765574455, -0.0171405840665102, 0.016701484099030495, -0.0023150767665356398, 0.00914269033819437, -0.010914773680269718, 0.0023307588417083025, 0.01864607073366642, -0.006225811783224344, -0.012059570290148258, 0.0022974342573434114, -0.0010046374518424273, 0.013518009334802628, -0.010311010293662548, -0.0022288248874247074, 0.0012085053604096174, 0.009409287013113499, -0.0042067356407642365, 0.014349163509905338, -0.014952925965189934, -0.0035539662931114435, 0.002989409025758505, 0.020324060693383217, -0.00914269033819437, -0.0011310747358947992, -0.001716214814223349, 0.08756910264492035, 0.007335323374718428, -0.0010859885951504111, 0.004449808970093727, -0.024840518832206726, 0.008970187045633793, 0.0051947105675935745, 0.025232572108507156, 0.038389891386032104, -0.008052782155573368, 0.0011624390026554465, 0.008985869586467743, -0.0007483323570340872, 0.039926741272211075, 0.0006258155917748809, 0.007213786710053682, 0.0035304429475218058, 0.008413471281528473, 0.006323825102299452, 0.01220070943236351, -0.0036715823225677013, -0.01587033085525036, 0.01671716757118702, 0.022237282246351242, -0.012012523598968983, -0.035316191613674164, 0.0029149188194423914, 0.0034735952503979206, -0.016513299196958542, 0.0009713128674775362, 0.021829547360539436, 0.015517482534050941, 0.028635596856474876, 0.010522719472646713, -0.02005746401846409, 0.046105507761240005, 0.017344452440738678, 0.006884461734443903, -0.0017348373075947165, -0.016231020912528038, 0.0037245096173137426, -0.009056438691914082, 0.001180081395432353, -0.026048043742775917, -0.003056058194488287, 0.025624625384807587, -0.0038166420999914408, 0.016968080773949623, -0.01184001937508583, -0.009268147870898247, 0.011322508566081524, -0.020825888961553574, -0.021547267213463783, -0.00634734844788909, -0.03271295502781868, -0.006253255531191826, -0.016168292611837387, -0.011981159448623657, -0.024354372173547745, -0.0029952898621559143, -0.009613155387341976, 0.008256649598479271, -8.141238504322246e-05, -0.03186611831188202, -0.016215339303016663, -0.005653413478285074, -0.016952399164438248, 0.02201773226261139, 0.00655121635645628, 0.011416601948440075, 0.008844730444252491, -0.019194945693016052, -0.007154978811740875, -0.011502853594720364, -0.0014976449310779572, 0.02626759372651577, 0.04491366446018219, -0.017328770831227303, -0.002540507586672902, -0.03327751159667969, -0.012043887749314308, 0.016278067603707314, 0.005947453435510397, 0.01498429011553526, -0.01408256683498621, -0.006708037573844194, 0.012028205208480358, -0.015070541761815548, -0.004528219345957041, -0.01674853079020977, 0.015172475948929787, -0.0037637148052453995, 0.026941925287246704, -0.014874515123665333, -0.006884461734443903, -0.023789813742041588, -0.006119957193732262, 0.007668569218367338, 0.014521666802465916, 0.019618364050984383, -0.02960789017379284, 0.007919483818113804, 0.012679014354944229, 0.007684251293540001, -0.0005390737787820399, -0.0005905308062210679, -0.013768923468887806, -0.010185553692281246, -0.022754792124032974, -0.0072686742059886456, -0.005622049327939749, 0.006355189252644777, -0.027976946905255318, -0.0070608858950436115, 0.006492407992482185, -0.016231020912528038, -0.027161475270986557, -0.018301064148545265, 0.019979054108262062, -0.004645835608243942, -0.008538927882909775, 0.008617338724434376, -0.01220070943236351, 0.020292695611715317, 0.002760057570412755, 0.01635647751390934, -0.00950338039547205, -0.0013084789970889688, -0.01391790434718132, -0.0006032725214026868, 0.011212733574211597, 0.017909010872244835, -0.029890168458223343, -0.0030384156852960587, 0.008217444643378258, 0.023507535457611084, 0.05052787438035011, 0.006080751772969961, -0.033873435109853745, -0.020888617262244225, -0.0035559264943003654, 0.008389947935938835, 0.0075548733584582806, 0.01662307418882847, 0.00973077118396759, -0.007303959224373102, -0.01563509926199913, -0.000732160173356533, 0.015446913428604603, -0.01681125909090042, 0.0029031571466475725, -0.015627257525920868, 0.03249340504407883, 0.006096433848142624, 0.0067746867425739765, -0.0031305484008044004, -0.010522719472646713, -0.02394663542509079, 0.014874515123665333, -0.013580737635493279, 0.027004653587937355, -0.0025816732086241245, -0.018395157530903816, -0.052974287420511246, 0.0030737004708498716, 0.015172475948929787, -0.004426285624504089, -0.04102449119091034, -0.003620615229010582, 0.011126481927931309, -0.005167266819626093, 0.003012932138517499, 0.0057004597038030624, -0.028306271880865097, -0.003630416700616479, 0.007943006232380867, 0.056016623973846436, -0.008758477866649628, 0.012945611029863358, -0.004775213077664375, -0.006355189252644777, -0.005535797215998173, 0.011353873647749424, 0.0019102813675999641, 0.01605851761996746, -0.006041546352207661, -0.03757442161440849, -0.00679428968578577, 0.00070422631688416, -0.003881331067532301, 0.01681125909090042, -0.030737005174160004, -0.008656544610857964, 0.017626730725169182, 0.012302642688155174, 0.004347874782979488, -0.016481934115290642, -0.025405075401067734, 0.028729690238833427, 0.02171977236866951, 0.0020582815632224083, 0.016858305782079697, 0.013666990213096142, -0.007464701309800148, 0.011887066066265106, -0.015791920945048332, 0.012537875212728977, -0.006762925069779158, -0.003957781475037336, -0.012835836037993431, 0.014521666802465916, -0.004594868514686823, -0.006821733433753252, 0.005022207275032997, 0.025201207026839256, 0.027537846937775612, 0.008609497919678688, 0.031646568328142166, -0.01441189181059599, -0.010091460309922695, -1.2940832903041155e-06, 0.0014486381551250815, -0.04027174785733223, 0.008578133769333363, 0.013274936005473137, 0.017485592514276505, 9.017233969643712e-05, 0.015141111798584461, 0.023068435490131378, -0.015486118383705616, 0.03327751159667969, 0.0010389421368017793, 0.01069522276520729, -0.0008233126136474311, 0.022252963855862617, -0.0013672870118170977, -0.028008311986923218, 0.0010320811998099089, 0.009981685318052769, -0.012553557753562927, -0.005531876813620329, -0.04196542128920555, -0.027004653587937355, 0.01179297361522913, -0.003354018786922097, -0.00021501691662706435, -0.0085702920332551, 0.011016706936061382, -0.00020092749036848545, -0.01488235592842102, -0.010946137830615044, -0.010914773680269718, 0.003502999199554324, -0.006700196769088507, 0.006672753021121025, 0.004532140213996172, -0.0024640571791678667, -0.020857254043221474, -0.02587554045021534, -0.01874016411602497, 0.0008688888628967106, -0.029419705271720886, 0.030078355222940445, 0.005653413478285074, -0.026142137125134468, 0.017971739172935486, 0.029121743515133858, -0.012506511062383652, -0.0006880541332066059, -0.024715060368180275, 0.006837415508925915, 0.023632993921637535, 0.009809182025492191, 0.012631968595087528, 0.01471769344061613, 0.002852190285921097, 0.01498429011553526, 0.0031854358967393637, 0.0023954478092491627, -0.0006361069972626865, 0.012867200188338757, 0.014435415156185627, -0.006578660104423761, -0.007084409240633249, 0.021578632295131683, -0.008891776204109192, -0.0014025719137862325, -0.007731297519057989, 0.016278067603707314, -0.0022151030134409666, -0.02404072880744934, 0.008256649598479271, 0.012914246879518032, 0.008782001212239265, 0.013431757688522339, 0.01674853079020977, 0.008805524557828903, 0.010985342785716057, -0.0057161422446370125, -0.03156815841794014, -0.0050574918277561665, -0.009370082058012486, -0.005661254283040762, 0.012443782761693, 0.005759268067777157, 0.03362251818180084, 0.01489803846925497, -0.014223705977201462, -0.012373212724924088, -0.03365388512611389, 0.014960766769945621, -0.0047712926752865314, 0.0025287459138780832, -0.0009688625577837229, 0.00021391425980255008, -0.008272332139313221, 0.015611575916409492, 0.013431757688522339, -0.012961293570697308, 0.004481173120439053, -0.001477062120102346, 0.0052809626795351505, -0.043031807988882065, -0.0008238027221523225, -0.00483402144163847, -0.005033968482166529, 0.002852190285921097, 0.009417128749191761, 0.0072686742059886456, -0.019634045660495758, -0.002942362567409873, 0.012177186086773872, 0.0052652801387012005, -0.011832178570330143, 0.01855197735130787, 0.01126762107014656, -0.03657076135277748, 0.033120691776275635, -0.02623622864484787, 0.01955563575029373, -0.004269463941454887, 0.006429679691791534, 0.007182422559708357, 0.037793971598148346, -0.005465227644890547, -0.014333480969071388, -0.022942978888750076, 0.0007434316794387996, -0.006300301756709814, -0.01568998582661152, -0.021045438945293427, 0.002303315093740821, -0.0008884915732778609, -0.01298481598496437, 0.0015731152379885316, -0.008256649598479271, 0.00695895217359066, 0.02214318886399269, 0.005606366787105799, -0.027365343645215034, -0.0007527429843321443, 0.0018955792766064405, -0.001969089498743415, -0.017422864213585854, -0.01825401745736599, 0.007766582537442446, -0.009244624525308609, 0.006378712598234415, 0.00840562954545021, 0.0458545945584774, -0.007362767122685909, -0.007480383384972811, -0.012765266001224518, 0.012647650204598904, 0.0345320850610733, -0.019602682441473007, 0.026377368718385696, -0.012890723533928394, 0.007378449663519859, -0.01681125909090042, 0.006021943874657154, -0.011251939460635185, -0.020794525742530823, -0.013369029387831688, -0.018567660823464394, -0.01746991090476513, 0.00965236034244299, -0.0020465198904275894, -0.015023495070636272, -0.01081283949315548, 0.0028149450663477182, -0.00965236034244299, 0.01894403249025345, -0.021014075726270676, -0.0113695552572608, 0.0050574918277561665, -0.0063395071774721146, 0.022660700604319572, -0.015972265973687172, 0.02063770405948162, -0.0037068671081215143, -0.01593305915594101, -0.008217444643378258, 0.022190235555171967, 0.01936744898557663, 0.0037499929312616587, 0.0007047164253890514, -0.017720824107527733, -0.019963370636105537, -0.0072686742059886456, 0.013455281034111977, -0.025593262165784836, -0.02996858023107052, -0.012388895265758038, -0.0005905308062210679, -0.004520378541201353, 0.007053045090287924, 0.0064963288605213165, 0.015799760818481445, -0.015987947583198547, -0.002591474447399378, -0.007680330891162157, -0.022425467148423195, -0.001338863163255155, 0.005990579724311829, 0.009244624525308609, 0.014560871757566929, -0.014106090180575848, 0.0003905834455508739, 0.015791920945048332, -0.004367477726191282, 0.029654936864972115, 0.023836860433220863, 0.018504932522773743, 0.010130666196346283, -0.017344452440738678, -0.006061149295419455, -0.019289039075374603, 0.008687908761203289, -0.002073963638395071, 0.0042733848094940186, -0.02139044553041458, -0.030862461775541306, -0.011197051964700222, -0.010538402013480663, -0.019947689026594162, 0.006515931338071823, 0.013980632647871971, 0.005763188470155001, -0.010718746110796928, 0.015054859220981598, 0.0123653719201684, -0.011785131879150867, 0.01390222180634737, -0.0061238775961101055, -0.004935955163091421, -0.0012104655615985394, -0.019257673993706703, -0.0027659384068101645, -0.011338191106915474, -0.0025169842410832644, -0.01858334243297577, 0.003146230475977063, -0.0009992467239499092, -2.912835952884052e-05, 0.01596442423760891, -0.002173937391489744, 0.00891529954969883, 0.0032128796447068453, -0.012929928489029408, -0.003834284609183669, 0.0004043053195346147, 0.010036572813987732, 0.0077822646126151085, 2.600418338261079e-05, 0.017548320814967155, 0.007766582537442446, -0.01277310773730278, -0.004144006874412298, -0.014051202684640884, -0.0026522427797317505, 0.004963398911058903, -0.01006009615957737, 0.004496855195611715, -0.009511221200227737, 0.0765288695693016, 0.010640335269272327, 0.005453465972095728, 0.022848885506391525, 0.021907957270741463, 0.002863951725885272, -0.017940374091267586, 0.014843150973320007, 0.02283320389688015, 0.0016593670006841421, -0.007970450446009636, -0.005253518931567669, 0.018630389124155045, 0.012255596928298473, -0.04710916429758072, -0.0038107612635940313, 0.01792469248175621, 0.00933871790766716, -0.011926271952688694, 0.03669622167944908, 0.007394131738692522, -0.0013329823268577456, -0.023570263758301735, 0.0029502036049962044, -0.008844730444252491, 0.01939881406724453, 0.00740197254344821, -0.008256649598479271, 0.0286199152469635, 0.013423916883766651, 0.016858305782079697, -0.011008866131305695, 0.007331402972340584, -0.0036559002473950386, 0.0011389157734811306, 0.01665443927049637, -0.0030266540125012398, 0.004732087254524231, 0.010750110261142254, 0.005531876813620329, -0.008017497137188911, -0.01674853079020977, 0.013039703480899334, 0.01522736344486475, -0.020684750750660896, 0.006308143027126789, -0.009072121232748032, -0.0017024929402396083, 0.0026326400693506002, -0.0034167475532740355, -0.009025074541568756, -0.032963868230581284, 0.009330876171588898, -0.0017475790809839964, 0.013988473452627659, -0.008084146305918694, 0.005955294705927372, -0.009864069521427155, 0.0028835544362664223, 0.01383949350565672, -0.009989527054131031, 0.0010477633913978934, -0.002324878005310893, -0.016466252505779266, -0.022221600636839867, -0.008272332139313221, -0.006441441364586353, -0.0013947307597845793, -0.0002597355342004448, -0.0067041171714663506, -0.0006797229871153831, 0.00899371039122343, 0.012765266001224518, -0.01798742078244686, -0.010185553692281246, 0.014647123403847218, 0.003583370242267847, 0.028933558613061905, 0.008758477866649628, -0.009440651163458824, 0.00686877965927124, 0.014913720078766346, -0.004026391077786684, -0.012686856091022491, 0.006445361766964197, -0.0034755554515868425, 0.021641360595822334, -0.024166185408830643, 0.010671700350940228, -0.020433835685253143, -0.0012839756673201919, -0.012655491009354591, 0.008797683753073215, 0.0036245358642190695, -0.0035657277330756187, -0.006813892163336277, 0.002758097369223833, -0.00033618599991314113, 0.013815970160067081, -0.012953451834619045, -0.005128061398863792, 0.009432810358703136, 0.011502853594720364, 0.014827468432486057, 0.002436613431200385, -0.006088593043386936, 0.009291671216487885, 0.002622838830575347, -0.023695722222328186, 0.002450335305184126, -0.026095090433955193, -0.014929402619600296, -0.0003717158397193998, 0.007543112151324749, -0.01825401745736599, 0.003789198352023959, 0.012953451834619045, -0.009824864566326141, -0.006080751772969961, -0.00016221219266299158, -0.0033030519261956215, 0.024997340515255928, -0.01355721428990364, -0.009134849533438683, 0.008844730444252491, 0.017344452440738678, -0.013298459351062775, -0.0005557360127568245, -0.0034539925400167704, -0.013949268497526646, -0.0020641623996198177, 0.0017250359524041414, 0.03509664162993431, -0.008139033801853657, 0.007205945905297995, 0.0038519268855452538, -0.002299394691362977, -0.002209222177043557, 0.013800287619233131, -0.011471489444375038, 0.020371107384562492, -0.007868516258895397, 0.020888617262244225, 0.0095661086961627, 0.012835836037993431, -0.0030893825460225344, 0.007190263830125332, -0.021578632295131683, 0.007468621712177992, -0.024087775498628616, 0.006355189252644777, -0.020355423912405968, -0.0027777000796049833, -0.007986132986843586, 0.004563504364341497, -0.003996986895799637, -0.021860910579562187, 0.03644530475139618, -0.020418154075741768, -0.0029854883905500174, -0.0011487171286717057, -0.005237836390733719, -0.012404576875269413, -0.01046783197671175, -0.011722403578460217, 0.009346558712422848, 0.014623600989580154, 0.025640306994318962, 0.02145317569375038, 0.0007596039213240147, -0.000381027115508914, 0.0069315084256231785, 0.02048088237643242, -0.028666961938142776, -0.004892829339951277, -0.010052255354821682, -0.0017936454387381673, -0.0011996841058135033, -0.019869279116392136, 0.005414260551333427, -0.014262910932302475, -0.006014102604240179, 0.015258727595210075, -0.008782001212239265, 0.003640217939391732, -0.00483402144163847, 0.007115773390978575, -0.0028835544362664223, 0.004849703516811132, 0.0011742006754502654, -0.006896223407238722, 0.009534744545817375, 0.016936717554926872, 0.00034402706660330296, -0.014623600989580154, -0.015525324270129204, 0.02629895880818367, 0.00989543367177248, 0.024354372173547745, -0.0047085643745958805, -0.0008340941276401281, 0.007872437126934528, 0.013463121838867664, 0.001167339738458395, 0.0026738056913018227, -0.009189737029373646, -0.006378712598234415, -0.008201762102544308, -0.013949268497526646, 0.01447462011128664, -0.04024038463830948, -0.024950293824076653, -0.0042577022686600685, 0.0152116809040308, -0.01300049852579832, 0.0071471380069851875, -0.0011761608766391873, 0.005504433065652847, 0.0033069723285734653, 0.009495538659393787, 0.010067936964333057, 0.009573949500918388, -0.0033912640064954758, -0.014286434277892113, -0.0025699115358293056, -0.002585593843832612, -0.0034089062828570604, -0.0005307426326908171, 0.028808102011680603, -0.0006032725214026868, 0.0076528871431946754, 0.006649229675531387, -0.00817823875695467, 0.02397800050675869, -0.021907957270741463, 0.018426520749926567, 0.004410603549331427, 0.006429679691791534, -0.0058533609844744205, 0.005433863494545221, -0.023868225514888763, 0.010185553692281246, -0.02430732548236847, -0.014200182631611824, -0.0023876065388321877, -0.019681092351675034, -0.004739928524941206, -0.003432429628446698, -0.003730390453711152, -2.938870784419123e-05, -0.025922587141394615, 0.010789316147565842, -0.015509641729295254, 0.002017115941271186, 0.009840546175837517, -0.0010516839101910591, 0.003042336320504546, 0.016152609139680862, 0.004445888102054596, -0.02024564892053604, 0.013878698460757732, 0.013274936005473137, -0.003838205011561513, 0.004089119378477335, 0.02247251383960247, -0.005049651023000479, -0.0341557115316391, 0.014011996798217297, -0.0029011969454586506, -0.002552269259467721, 0.02822786197066307, -0.008774160407483578, 0.015305774286389351, 0.024181868880987167, 0.0049790809862315655, 0.004696802701801062, 0.004453729372471571, -0.007382370065897703, 0.004426285624504089, 0.02934129349887371, -0.0016025191871449351, -0.004983001854270697, 0.018332427367568016, -0.01837947405874729, 0.001293777022510767, -0.02934129349887371, 0.0045595839619636536, -0.006468885112553835, -0.003240323392674327, 0.012459464371204376, 0.010844203643500805, -0.004724246449768543, 0.0009987566154450178, -0.025765765458345413, 0.00446549104526639, 0.011534217745065689, 9.746208525029942e-05, -0.013580737635493279, 0.00842131208628416, -0.003765675239264965, 0.005739665124565363, -0.010640335269272327, -0.009817022830247879, -0.0005006034625694156, 0.001303578377701342, 0.005739665124565363, 0.02689487859606743, 0.012482987716794014, -0.005053571425378323, -0.005418181419372559, 0.009777817875146866, -0.013580737635493279, 0.00023278185108210891, -0.014592235907912254, -0.018630389124155045, 0.00620620884001255, 0.009025074541568756, 0.02126498892903328, 0.0013604260748252273, -0.006523772608488798, 0.01988496072590351, 0.020167239010334015, 0.007915562950074673, 0.0045517426915466785, 0.006555136758834124, 0.017720824107527733, 0.017030809074640274, -0.00662570632994175, 0.00897802785038948, -0.036257121711969376, 0.01972813904285431, 0.004500775597989559, -0.025828493759036064, -0.005245677661150694, -0.013423916883766651, 0.0044733318500220776, -0.02168840728700161, -0.01316516101360321, -0.013910062611103058, 0.000589550647418946, -0.02139044553041458, -0.005386816803365946, 0.0006596302264370024, -0.014529507607221603, 0.00028742433642037213, 0.0003817622200585902, -0.008938822895288467, -0.00659042177721858, 0.00682957423850894, 0.007829311303794384, 0.005535797215998173, 0.01104023028165102, 0.0010458030737936497, 0.009801341220736504, -0.006676673423498869, 0.0034089062828570604, 0.015493960119783878, 0.012279120273888111, -0.019257673993706703, 0.010867726989090443, 0.002070043236017227, 0.01707785576581955, -0.013596420176327229, 0.0029698063153773546, 0.010083619505167007, -0.008891776204109192, 0.0009644519304856658, -0.0010781475575640798, -0.030627230182290077, -0.005943533033132553, -0.0045517426915466785, -0.0011712602572515607, -0.017391499131917953, 0.00047046435065567493, -0.007182422559708357, 0.0070687271654605865, -0.024997340515255928, 0.012788789346814156, -0.009981685318052769, 0.009119167923927307, 0.03679031506180763, 0.0010467831743881106, -0.003755873767659068, -0.01129898615181446, -5.3447936807060614e-05, 0.0012173264985904098, 0.015611575916409492, 0.019508589059114456, -0.0001221492129843682, 0.017720824107527733, -0.006821733433753252, 0.004045993555337191, -0.01430995762348175, -0.006135639268904924, -0.009260307066142559, 0.04027174785733223, -0.021468857303261757, -0.00020693081023637205, 0.00017360625497531146, -0.005731824319809675, -0.012490828521549702, -0.008413471281528473, 0.027004653587937355, -0.010491355322301388, -0.011565581895411015, -0.03211703523993492, 0.005465227644890547, 0.004034231882542372, 0.028839465230703354, 0.0070687271654605865, 0.0026855673640966415, 0.015086224302649498, -0.015188157558441162, 0.0058455197140574455, 0.016826942563056946, 0.009620996192097664, -0.006531613413244486, -0.005747506394982338, 0.024479828774929047, 0.0029345215298235416, 0.008899617940187454, -0.020496563985943794, 0.010452150367200375, 0.0025973552837967873, 0.010459991171956062, -0.0080253379419446, 0.03867217153310776, 0.012192867696285248, 0.0005184909095987678, -0.010295328684151173, 0.0038558475207537413, -0.022425467148423195, -0.012788789346814156, -0.0056377314031124115, -0.003206998808309436, -0.017093539237976074, 0.015980105847120285, -0.004614471457898617, 0.020355423912405968, 0.03277568519115448, -0.017093539237976074, -0.012835836037993431, 0.00666491175070405, -0.0074333371594548225, 0.016403524205088615, 0.0085232462733984, -0.00052633200539276, 0.005512274336069822, 0.006888382602483034, -0.0062885405495762825, 0.007472542114555836, 0.009542585350573063, 0.0010654057841748, -0.008680067956447601, -0.024056410416960716, -0.013910062611103058, -0.0020308378152549267, -0.022676382213830948, 0.016528980806469917, -0.03199157491326332, -0.007421575486660004, -9.519552259007469e-05, 0.021374763920903206, 0.01979086734354496, 0.004147927276790142, 0.006370871793478727, 0.015399866737425327, 0.01063249446451664, -0.0007870476692914963, -5.6388340453850105e-05, -0.02927856519818306, 0.007456860039383173, 0.009432810358703136, 0.005876883864402771, -0.013957109302282333, 0.024589603766798973, 0.0005621068994514644, 0.004900670610368252, -0.013525850139558315, -0.015595893375575542, -0.01674853079020977, -0.001373167848214507, -0.007480383384972811, -0.003710787743330002, 0.04096176475286484, 0.002052400726824999, 0.0008953525102697313, -0.00015608636022079736, -0.0036029729526489973, 0.021484538912773132, 0.0010644255671650171, 0.007523509208112955, 0.021735453978180885, -0.009448492899537086, 0.003789198352023959, 0.006790368817746639, 0.021829547360539436, 0.011487171985208988, -0.016019310802221298, 0.006653150077909231, -0.0014143334701657295, 0.003616694826632738, 0.003512800671160221, 0.008444835431873798, 0.010985342785716057, -0.0071392967365682125, -0.0026385209057480097, 0.01608988083899021, 0.018395157530903816, 0.0066453092731535435, 0.02250387892127037, 0.0012633928563445807, -0.0035931714810431004, -0.004763451870530844, -0.0031854358967393637, 0.03286977857351303, 0.005743585992604494, 0.0030854621436446905, 0.003112905891612172, -0.005179028492420912, -0.02002609893679619, -0.02662828378379345, 0.00966804288327694, 0.015768397599458694, 0.016215339303016663, -0.0189753957092762, 0.01834811083972454, 0.011212733574211597, 0.019273357465863228, -0.008868252858519554, 0.004928114358335733, 0.010358056984841824, -0.003022733610123396, -0.003312853164970875, 0.013941427692770958, 0.009856228716671467, 0.027553530409932137, 0.009597472846508026, 0.012043887749314308, -0.001395710976794362, 0.016497617587447166, 0.009864069521427155, -0.0026032361201941967, 0.005033968482166529, -0.0038872119039297104, -0.018693117424845695, -0.005720062647014856, 0.004751690197736025, 0.015070541761815548, -0.021343400701880455, -0.021798182278871536, 0.004226338118314743, 0.014553030952811241, 0.016999445855617523, 0.033057961612939835, 0.0019524270901456475, 0.009479857049882412, -0.005022207275032997, -0.007499985862523317, 0.013392551802098751, 0.007852834649384022, -0.006068990100175142, 0.0030619387980550528, 0.007119694259017706, -0.006135639268904924, -0.002348401350900531, -0.01522736344486475, -0.019351767376065254, 0.0035343635827302933, 0.012153662741184235, -0.003032534848898649, -0.00540641974657774, 0.0044929347932338715, 0.005386816803365946, 0.009393605403602123, 0.006413997616618872, -0.0170464925467968, -0.018834257498383522, 0.0013369028456509113, -0.017124902456998825, 0.0049163526855409145, -0.022205917164683342, -0.01906948909163475, 0.004426285624504089, -0.007115773390978575, 0.01537634339183569, 0.002117089694365859, -0.01031885202974081, 0.0008507564198225737, -0.007017760071903467, 0.02060633897781372, -0.017313089221715927, -0.013212207704782486, -0.0024326927959918976, 0.0003626496181823313, 0.005492671392858028, 0.0018406917806714773, 0.005492671392858028, -0.029482433572411537, -0.0036696221213787794, -0.009189737029373646, 0.00744117796421051, 0.006343428045511246, -0.006112116388976574, 0.008805524557828903, -0.003193276934325695, -0.004018549807369709, -0.009613155387341976, -0.006088593043386936, -0.008601657114923, 0.01334550604224205, 0.0026973290368914604, 0.022629335522651672, 0.006464964244514704, 0.01481962762773037, -0.009040757082402706, 0.0054024988785386086, -0.006531613413244486, 0.02479347214102745, -0.002910998184233904, 0.016105564311146736, 0.004394921474158764, -0.005657333880662918, -0.0019200827227905393, -0.003616694826632738, -0.004363556858152151, 0.0152116809040308, 0.006508090533316135, 0.030501773580908775, -0.0036382577382028103, 0.013549373485147953, -0.010256122797727585, -0.004841862246394157, -0.02178250066936016, 0.00777050293982029, 0.008139033801853657, -0.016968080773949623, -0.0008831007871776819, -0.0032834492158144712, -0.010216917842626572, 0.003983264788985252, 0.007323561701923609, -0.0022856725845485926, 0.004775213077664375, 0.008444835431873798, 0.00793908629566431, -0.007076567970216274, -0.0044733318500220776, -0.0029482434038072824, 0.00682957423850894, -0.006437520496547222, 0.020371107384562492, -0.01605851761996746, 0.005249598063528538, 0.02142181061208248, -0.021092485636472702, 0.015125429257750511, -0.002199420938268304, 0.02066906727850437, 0.007264753803610802, 0.002173937391489744, -0.010044414550065994, -0.0038970131427049637, 0.022394103929400444, -0.024871882051229477, -0.01275742519646883, 0.014662805944681168, 0.018489249050617218, -0.01681125909090042, -0.00819392129778862, -0.0009918956784531474, 0.00966804288327694, -0.0071314554661512375, -0.0057239830493927, 0.011236256919801235, 0.023084118962287903, -0.004728166852146387, -0.004053834825754166, 0.02015155740082264, -0.006531613413244486, 0.007378449663519859, -0.007280435878783464, -0.0013888500398024917, -0.01470201089978218, -1.370656264043646e-05, -0.015517482534050941, 0.007982212118804455, -0.01138523779809475, -0.02168840728700161, -0.009589632041752338, 0.0021700169891119003, -0.008742796257138252, -0.023852543905377388, -0.017548320814967155, -0.014545190148055553, -0.0010002268245443702, 0.0032246410846710205, -0.003973463550209999, -0.02204909734427929, 0.005939612630754709, -0.012679014354944229, -0.003700986271724105, 0.007856754586100578, 0.008201762102544308, 0.003650019410997629, -2.160889380320441e-05, 0.00915837287902832, 0.012498670257627964, 0.009119167923927307, -0.007892039604485035, 0.0010448229731991887, -0.0007787165232002735, -0.00494771683588624, -0.00010199520329479128, -0.01779923588037491, -0.019979054108262062, -0.0034402706660330296, 0.02198636718094349, -0.01465496513992548, 0.005026127677410841, 0.007550952956080437, -0.023852543905377388, -0.02361731044948101, 0.01815992407500744, -0.004418444354087114, -0.03324614837765694, 0.002121010096743703, 0.006237573456019163, 0.007754820864647627, -0.007107932586222887, 0.024260278791189194, -0.012286961078643799, -0.012945611029863358, 0.009032915346324444, -0.005712221376597881, -0.011620469391345978, 0.004896749742329121, 0.0050574918277561665, -0.016074199229478836, 0.026408733800053596, -0.013729718513786793, -0.028761055320501328, -0.01578407920897007, -0.0011594985844567418, 0.023429125547409058, -0.028572868555784225, -0.02066906727850437, 0.008813365362584591, 0.0006459083524532616, 0.029325611889362335, -0.014184501022100449, 0.0067746867425739765, 0.014976449310779572, -0.007590158376842737, 0.020386788994073868, 0.014937243424355984, 0.0065668984316289425, 0.012224232777953148, 0.015313615091145039, -0.0023758450988680124, 0.004677199758589268, 0.009573949500918388, -0.0043439543806016445, 0.011393078602850437, 0.008484040386974812, 0.01566646248102188, -0.005308406427502632, -0.00792340375483036, -0.005625969730317593, 0.02099839225411415, 0.010287487879395485, 0.007358846720308065, -0.005680857226252556, -0.01632511429488659, 0.0030266540125012398, -0.004896749742329121, -0.006268937606364489, -0.013212207704782486, 0.004238099791109562, 0.02368003875017166, -0.003436350030824542, 0.011157846078276634, -0.03591211140155792, 0.005229995585978031, -0.03268159180879593, 0.0076332841999828815, 0.009793499484658241, 0.009840546175837517, -0.0017769831465557218, 0.03189748525619507, 0.0028129848651587963, -0.007151058409363031, -0.02397800050675869, 0.009511221200227737, 0.023868225514888763, 0.006100354716181755, 0.017281724140048027, -0.013910062611103058, 0.009362241253256798, -0.027098746970295906, -0.01007577870041132, -0.01608988083899021, 0.009464174509048462, -0.011965476907789707, 0.008852571249008179, -0.003044296521693468, -0.010616812855005264, 0.01602715253829956, 0.033183418214321136, -0.03666485473513603, -0.014976449310779572, -0.006484567187726498, -0.007688171695917845, -0.004018549807369709, -0.003998946864157915, 0.0016319232527166605, -0.013227889314293861, -0.0003761264670174569, -0.023538900539278984, -0.01566646248102188, -0.021970685571432114, -0.0074176546186208725, 0.015501800924539566, -0.015305774286389351, -0.010718746110796928, -0.008664385415613651, 0.016591709107160568, 0.005943533033132553, -0.005810234695672989, -0.003299131290987134, 0.003885251469910145, 0.015509641729295254, -0.013565056025981903, -0.0009713128674775362, 0.007821470499038696, -0.02731829695403576, -0.020778842270374298, 0.006096433848142624, 0.014294276013970375, 0.0022386263590306044, 0.0032011179719120264, -0.024385735392570496, -0.0065668984316289425, 0.018599024042487144, 0.005320167634636164, 0.006402235943824053, 0.02048088237643242, -0.01671716757118702, -0.006974634248763323, -0.03641394153237343, -0.0011261741165071726, 0.019539954140782356, 0.008742796257138252, 0.010263964533805847, -0.027428071945905685, -0.007374528795480728, -0.0008228225633502007, -0.017360135912895203, 0.020794525742530823, -0.02744375541806221, 0.026643965393304825, 0.01569782756268978, -0.002624799031764269, -0.003365780459716916, 0.008640862070024014, 0.006715878844261169, -0.030439043417572975, -0.011769450269639492, 0.00650024926289916, -0.024573922157287598, -0.009864069521427155, 0.006057228893041611, 0.025358028709888458, -0.0020445596892386675, -0.00304625672288239, 0.017626730725169182, 0.013455281034111977, -0.017344452440738678, -0.009244624525308609, 0.007249071728438139, 0.0030737004708498716, 0.009707247838377953, 0.008272332139313221, 0.0008066503796726465, -0.04096176475286484, -0.01825401745736599, 0.020104510709643364, 0.008107669651508331, -0.021531585603952408, 0.007233389653265476, 0.006986395921558142, 0.006253255531191826, 0.0024973817635327578, -0.0013937506591901183, 0.0017103339778259397, -0.003832324407994747, 0.030439043417572975, 0.01710922084748745, -0.004688961431384087, 0.007166740484535694, 0.009926797822117805, -0.00011853496835101396, -0.018128560855984688, 0.005292723886668682, -0.0026032361201941967, 0.01635647751390934, -0.0286512803286314, 0.0023993682116270065, -0.01783059909939766, 0.009150532074272633, -0.015564529225230217, 0.0010281606810167432, 0.0009536704747006297, 0.01373755931854248, -0.007245151326060295, 0.019806548953056335, -0.0024189709220081568, -0.0029384419322013855, 0.018112877383828163, 0.012388895265758038, -0.01979086734354496, 0.008954505436122417, 0.003720588982105255, 0.011996841058135033, 0.021845228970050812, 0.003228561719879508, 0.005673015955835581, -0.01943017914891243, -0.011902748607099056, 2.2742173314327374e-05, 0.020371107384562492, -0.005876883864402771, 0.010365897789597511, -0.011102958582341671, -0.02538939379155636, -0.006484567187726498, -0.0029149188194423914, -0.011691039428114891, 0.004571345169097185, 0.00876631960272789, 0.01007577870041132, -0.0025836334098130465, 0.007256912998855114, 0.0027286934200674295, -0.008844730444252491, -0.0038088010624051094, -0.007872437126934528, -0.004786974750459194, -0.016513299196958542, 0.010036572813987732, 0.015031336806714535, 0.008311537094414234, 0.014866674318909645, 0.005359373055398464, 0.004053834825754166, 0.01723467744886875, -0.0010693263029679656, -0.016011470928788185, -0.015203840099275112, -0.0003425568575039506, 0.004308669362217188, -0.020731795579195023, 0.017658095806837082, -0.027694668620824814, 0.008288013748824596, -0.003548085456714034, -0.004073437303304672, -0.01355721428990364, -0.013910062611103058, 0.006935428828001022, 0.0037735162768512964, 0.010020891204476357, -0.0018475527176633477, 0.010201235301792622, 0.030501773580908775, 0.005269201006740332, 0.0018730362644419074, 0.00039695430314168334, -0.021845228970050812, 0.007527429610490799, -0.014419732615351677, 0.016199655830860138, 0.01537634339183569, -0.015446913428604603, 0.015172475948929787, 0.016795577481389046, 0.003900933777913451, -0.007982212118804455, 0.002577752573415637, -0.02813376858830452, 0.01979086734354496, -0.01985359564423561, 0.0073549263179302216, -0.006429679691791534, -0.005602446384727955, -0.02557757869362831, 0.016168292611837387, 0.00021085134358145297, -0.01903812400996685, 0.009025074541568756, 0.021609995514154434, 0.013274936005473137, -0.010436467826366425, 0.024918928742408752, 0.011165687814354897, -0.003512800671160221, -0.0073549263179302216, 0.010216917842626572, -0.029952898621559143, 0.026377368718385696, 0.01575271598994732, 0.0013800287852063775, -0.03490845486521721, 0.009660201147198677, -0.010969661176204681, 0.0020935663487762213, 0.01822265237569809, 0.005582843907177448, 0.009087802842259407, 0.0085702920332551, -0.012890723533928394, 0.01187138445675373, 0.0019436059519648552, -0.004061675630509853, 0.003436350030824542, 0.00384800648316741, 0.0017613009549677372, -0.008899617940187454, -0.01471769344061613, -0.018144242465496063, -0.007111852988600731, -0.006229732185602188, -0.0012320285895839334, -0.0042616231366992, -0.010263964533805847, 0.009221101179718971, -0.010844203643500805, 0.020355423912405968, 0.009166213683784008, 0.007154978811740875, 0.014521666802465916, -0.0016309431521221995, 0.014286434277892113, 0.008515404537320137, -0.014419732615351677, 0.004308669362217188, 0.021641360595822334, -0.0024581763427704573, 0.017030809074640274, 0.01126762107014656, -0.004888908937573433, -0.0066453092731535435, -0.00682957423850894, 0.003924456890672445, -0.003614734625443816, 0.010146347805857658, -0.008499722927808762, 0.026095090433955193, 0.033810704946517944, 0.0342184416949749, 0.00703344214707613, 0.012381053529679775, -0.003869569394737482, -0.025891222059726715, -0.003957781475037336, 0.01383949350565672, -0.019571317359805107, -0.006112116388976574, -0.009871910326182842, 0.018991077318787575, 0.005288803484290838, 0.01834811083972454, -0.0046223122626543045, 0.015266568399965763, -0.0073666879907250404, -0.014607918448746204, -0.010334533639252186, 0.01566646248102188, -0.024981657043099403, 0.010640335269272327, 0.018175605684518814, 0.01837947405874729, -0.009119167923927307, -0.016136927530169487, -0.01184001937508583, 0.008366424590349197, -0.0019269436597824097, 0.010734428651630878, -0.0132514126598835, -0.02256660722196102, 0.015274410136044025, 0.005261359736323357, -0.002483659889549017, 0.024354372173547745, 0.008021417073905468, 0.0041871326975524426, -0.0008487961022183299, -0.01105591282248497, 0.007472542114555836, -0.0009771937038749456, -0.021970685571432114, 0.0019151819869875908, -0.007993973791599274, -0.01612124592065811, -0.014553030952811241, 0.01195763610303402, 0.004194973967969418, 0.025373712182044983, 0.007872437126934528, -0.01870879903435707, -0.007821470499038696, -0.01220070943236351, -0.0457291379570961, -0.010608971118927002, -0.004634073935449123, 0.012263437733054161, -0.01412961259484291, 0.0170464925467968, 0.011510694399476051, 0.009103485383093357, 0.0062218913808465, 0.0029972500633448362, -0.006790368817746639, -0.013502326793968678, -0.0034089062828570604, 0.014835309237241745, 0.009244624525308609, -0.004320431035012007, 0.014011996798217297, 0.0012545716017484665, 0.0007272594957612455, -0.016999445855617523, -0.0018818574026226997, -0.01861470751464367, 0.01773650571703911, 0.02542075701057911, 0.0032226808834820986, -0.018520614132285118, 0.011730244383215904, -0.02259797230362892, 0.0026149977929890156, -0.005320167634636164, 0.0054221018217504025, -0.0076332841999828815, -0.00511237932369113, -0.002946282969787717, 0.011251939460635185, 0.0071471380069851875, 0.004430206026881933, -0.008821207098662853, -0.019351767376065254, -0.01635647751390934, 0.014584395103156567, -0.009432810358703136, 0.0014241348253563046, 0.008225285448133945, 0.00840562954545021, 0.008695749565958977, -0.009511221200227737, 0.036257121711969376, -0.003926417324692011, -0.00136140629183501, -0.005426022224128246, 0.00891529954969883, 0.004202814772725105, 0.019241992384195328, 0.009354399517178535, -0.0030521375592797995, -0.004841862246394157, -0.018567660823464394, -0.005045730154961348, -0.025405075401067734, -0.008272332139313221, -0.004163609817624092, -0.004234179388731718, 0.00393229816108942, 0.015031336806714535, -0.011330350302159786, -0.028635596856474876, -0.018818574026226997, -0.01837947405874729, -0.01293777022510767, 0.004704643506556749, -0.02316252887248993, 0.023476172238588333, -0.0041204835288226604, -0.02515416219830513, -0.01212229859083891, -0.011643992736935616, -0.007264753803610802, 0.016826942563056946, -0.009299512021243572, -0.03559847176074982, -0.007213786710053682, -0.0014790223212912679, -0.017375817522406578, -0.02397800050675869, 0.00478305434808135, -0.006331666372716427, 0.0038264435715973377, -0.023413443937897682, -0.016701484099030495, 0.0022739111445844173, 0.004018549807369709, -0.030689958482980728, -0.004532140213996172, 0.0044066826812922955, 0.008107669651508331, -0.0009071141248568892, 0.028776736930012703, -0.0018642150098457932, 0.03252476826310158, -0.023209575563669205, 0.01753263920545578, -0.0028541504871100187, 0.01819128915667534, -0.014004155993461609, 0.0065590571612119675, 0.027663305401802063, 0.004634073935449123, 0.003597092116251588, 0.014466779306530952, -0.0007816569413989782, -0.020010417327284813, 0.017062174156308174, -0.0030913429800421, 0.008319377899169922, -0.000647378561552614, -0.0031893562991172075, 0.012145821936428547, -0.008742796257138252, 0.00907996203750372, -0.01831674575805664, 0.011048071086406708, 0.0065747397020459175, 0.020324060693383217, -0.00040724570862948895, 0.032963868230581284, 0.004359636455774307, 0.01975950412452221, -0.029466751962900162, -0.012153662741184235, 0.0028208259027451277, 0.0017956056399270892, -0.026612600311636925, -0.01470201089978218, 0.0035088800359517336, -0.022221600636839867, 0.00265812361612916, -0.001924983342178166, 0.02656555362045765, -0.014458938501775265, 0.017909010872244835, 0.010640335269272327, 0.01841083914041519, -0.008084146305918694, -0.032305218279361725, -0.02018292061984539, 0.0038303639739751816, -0.00046017294516786933, -0.006833495106548071, -0.029513798654079437, 0.043784551322460175, 0.018363792449235916, 0.006504169665277004, -0.01316516101360321, 0.0286512803286314, -0.03650803491473198, 0.002746335696429014, 0.006547295954078436, 0.0010712865041568875, 0.0009350479231216013, 0.006214050110429525, -0.006508090533316135, 0.005818075966089964, -0.02374276891350746, -0.0031207469291985035, -0.013447439298033714, -0.003354018786922097, 0.011495012789964676, 0.001190862967632711, -0.008076304569840431, -0.011322508566081524, -0.023084118962287903, 0.010358056984841824, 0.0022288248874247074, 0.059027597308158875, 0.03255613520741463, 0.013721877709031105, 0.006708037573844194, 0.015329297631978989, -0.04215360805392265, 0.00281690526753664, 0.008946663700044155, -0.013110273517668247, 0.00042464310536161065, 0.008703590370714664, 0.0001734837278490886, 0.016826942563056946, 0.016936717554926872, -0.03371661156415939, -0.005331929307430983, -0.010162030346691608, 0.0036343371029943228, -0.002383686136454344, 0.006888382602483034, -0.002589514246210456, -0.015297932550311089, -0.011589105241000652, -0.0015593933640047908, 0.004928114358335733, 0.008468358777463436, 0.003883291268721223, -0.011534217745065689, -0.023068435490131378, 0.0030266540125012398, 0.01952427066862583, -0.008311537094414234, -0.024511193856596947, 0.01177729107439518, -0.0010301208822056651, 0.00703344214707613, -0.009307353757321835, 0.013690512627363205, 0.005798473488539457, 0.014694170095026493, -0.0133298235014081, -0.022911613807082176, 0.007656807545572519, -0.011393078602850437, -0.006880541332066059, 3.938913869205862e-05, 0.01969677396118641, -0.01022475864738226, -0.010922614485025406, -0.0008154715760610998, -0.008680067956447601, 0.00010799852316267788, -0.004045993555337191, 0.008844730444252491, 0.00933871790766716, 0.009966003708541393, 0.024103457108139992, -0.0067825280129909515, -0.007154978811740875, -0.015282250940799713, -0.0031775946263223886, 0.0016329033533111215, 0.004481173120439053, 0.022284328937530518, -0.0007787165232002735, 0.03481436148285866, -0.007378449663519859, 0.0026287196669727564, -0.006429679691791534, 0.0057004597038030624, 0.007578396704047918, -0.04594868794083595, -0.026800787076354027, -0.01759536750614643, -0.02629895880818367, -0.02231569215655327, -0.013690512627363205, -0.025828493759036064, -0.013400393538177013, 0.018065830692648888, 0.007801867555826902, -0.004614471457898617, -0.001477062120102346, -0.00507709477096796, -0.01665443927049637, -0.011910589411854744, -0.01161262858659029, -0.003871529595926404, 0.020825888961553574, -0.00850756373256445, -0.0074254958890378475, 0.0030619387980550528, -0.004112642724066973, 0.015486118383705616, 0.020731795579195023, -0.008985869586467743, -0.006515931338071823, 0.006790368817746639, 0.009119167923927307, 0.018504932522773743, -0.004132245201617479, 0.011949795298278332, 0.036225754767656326, 0.0034285089932382107, -0.003157992148771882, -0.030956555157899857, 0.00819392129778862, 0.0022601892706006765, -0.011361714452505112, 0.015517482534050941, 0.009354399517178535, 0.005896486807614565, -0.0020024138502776623, -0.00021611957345157862, -0.006527693010866642, 0.01906948909163475, -0.0019847715739160776, 0.017940374091267586, 0.02617350034415722, 0.011197051964700222, -0.016152609139680862, 0.016152609139680862, 0.025107115507125854, 0.0029972500633448362, 0.009542585350573063, 0.004935955163091421, 0.002175897592678666, 0.014239388518035412, -0.004884988535195589, -0.008139033801853657, 0.027961265295743942, -0.003869569394737482, -0.002691448200494051, -0.002587554045021534, -0.00034231183235533535, -0.009166213683784008, -0.011087276972830296, -0.005900407209992409, -0.003518681274726987, -0.022127507254481316, -0.008476199582219124, 0.017689460888504982, 0.021515903994441032, -0.010867726989090443, 0.014725534245371819, 0.007797946687787771, -0.01740718074142933, 0.018661752343177795, -0.006668832153081894, 0.0040499139577150345, 0.00048100081039592624, -0.007986132986843586, -0.010248281992971897, 0.007927324622869492, 0.00914269033819437, 0.005963135976344347, -0.003216800047084689, 0.01988496072590351, -0.008664385415613651, 0.009597472846508026, -0.00026169579359702766, -0.009934639558196068, 0.010209077037870884, 0.018520614132285118, 0.0025130638387054205, -0.017548320814967155, 0.0008713392307981849, 0.006994236726313829, -0.014560871757566929, -0.0023189971689134836, -0.00042537820991128683, -0.0013006379595026374, 0.008460517041385174, -0.002634600503370166, -0.003502999199554324, 0.0033148135989904404, -0.009268147870898247, 0.002930600894615054, -0.020167239010334015, -0.009879752062261105, 0.01612124592065811, 0.004959478508681059, 0.017391499131917953, -0.0034853569231927395, 0.0033010917250066996, -0.0010859885951504111, -0.009197578765451908, -0.003700986271724105, -0.010459991171956062, -0.012043887749314308, 0.004112642724066973, 0.028745371848344803, 0.00215041427873075, -0.015384185127913952, -0.005680857226252556, 0.00719810463488102, 0.012914246879518032, 0.0007566635031253099, -0.018206970766186714, 0.008648702874779701, -0.008389947935938835, 0.0104835145175457, -0.0066962759010493755, -0.009260307066142559], "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2": [0.023188699036836624, -0.015572469681501389, -0.008207847364246845, 0.014511637389659882, -0.047003015875816345, -0.03242337703704834, -0.00956788845360279, 0.019054174423217773, -0.023066295310854912, 0.024439936503767967, -0.006667600944638252, 0.03949559107422829, -0.021488647907972336, -0.01982939802110195, 0.01728612184524536, 0.01708211563527584, -0.01870056428015232, 0.036802709102630615, 0.011233938857913017, 0.020822227001190186, 0.049804702401161194, -0.01317879743874073, -0.05383042246103287, 0.005606769118458033, -0.025813577696681023, -0.0067492034286260605, -0.007425823714584112, -0.006977010518312454, -0.0164972972124815, 0.0018802566919475794, 0.04458214342594147, 0.021896660327911377, 0.022699084132909775, -0.0074734254740178585, -0.0010931330034509301, -0.012301570735871792, 0.027418427169322968, 0.05328640714287758, -0.017299721017479897, -0.01595328003168106, -0.026493597775697708, 0.04863506555557251, 0.0022015664726495743, -0.05325920507311821, -0.04732942581176758, 0.027187218889594078, 0.003546306863427162, -0.03321219980716705, 0.011220337823033333, -0.014498037286102772, 0.026752006262540817, 0.0016907009994611144, 0.00314679485745728, 0.009595089592039585, 0.001252087764441967, -0.01826534979045391, -0.006371791940182447, 0.021665453910827637, -0.01378401555120945, -0.025704775005578995, 0.014443635009229183, -0.018686963245272636, 0.01846935600042343, -0.001727252034470439, -0.0031501948833465576, -0.014158026315271854, 0.003573507769033313, 0.022467877715826035, -0.054945655167102814, 0.019149377942085266, 0.007262618746608496, 0.05467364937067032, -0.013756814412772655, 0.003947518765926361, -0.0015155957080423832, -0.018074944615364075, 0.03416423127055168, 0.014334832318127155, 0.009023872204124928, 0.03136254474520683, -0.02877846732735634, -0.0007492976146750152, 0.013137996196746826, 0.00403252150863409, 0.0584273599088192, 0.016102885827422142, -0.024290332570672035, -0.023977523669600487, -0.04947829246520996, -0.03990360349416733, 0.012315170839428902, -0.02725522220134735, 0.0005231907707639039, 0.02158385142683983, -0.012559978291392326, 0.0023409705609083176, 0.039985205978155136, 0.029458487406373024, 0.02453514002263546, -0.06870926916599274, -0.020237410441040993, 0.006052182521671057, 0.00786103680729866, 0.01785733737051487, 0.011417544446885586, 0.020822227001190186, 0.024371935054659843, -0.02034621313214302, 0.012172366492450237, 0.0292136799544096, 0.022440675646066666, -0.011505946516990662, 0.015422864817082882, 0.0067492034286260605, -0.024167928844690323, -0.045561373233795166, -0.00794943980872631, 0.01939418539404869, -0.037346724420785904, -0.021828658878803253, 0.030356114730238914, 0.058100949972867966, -0.0035973084159195423, 0.009329881519079208, -0.022359073162078857, -0.0229438915848732, -0.020917430520057678, 0.013137996196746826, 0.019258180633187294, 0.012342371977865696, 0.007242218125611544, 0.009472685866057873, 0.02271268516778946, 0.002799984300509095, 0.022957492619752884, 0.011866358108818531, 0.009003471583127975, 0.020495817065238953, -0.03187936171889305, 0.029485689476132393, -0.03394662216305733, -0.02248147688806057, 0.014171627350151539, 0.02404552511870861, 0.035932283848524094, -0.028996074572205544, 0.0052361576817929745, 0.03672110661864281, -0.004909748211503029, 0.03990360349416733, -0.04039321839809418, -0.02250867895781994, 0.03666670620441437, 0.008037841878831387, -0.007439424283802509, -0.011621550656855106, -0.01457963977009058, 0.013824816793203354, 0.028370454907417297, -0.026996813714504242, 0.04901587590575218, -0.021230239421129227, 0.007997040636837482, 0.038135550916194916, 0.05154555290937424, 0.010703522711992264, 0.010934730060398579, 0.006841006223112345, -0.022345473989844322, 0.02514715865254402, 0.0211214367300272, -0.0047771441750228405, 0.008785865269601345, 0.005300759803503752, -0.007208217401057482, -0.012791185639798641, 0.022903090342879295, 0.0056305695325136185, 0.02248147688806057, -0.006756003480404615, -0.015817277133464813, -0.015994081273674965, -0.028479257598519325, 0.036829911172389984, -0.010921129025518894, 0.013464406132698059, -0.0011390342842787504, 0.007881437428295612, 0.005814175121486187, 0.0036483099684119225, 0.023079896345734596, 0.004848546348512173, 0.004678540863096714, 0.02728242240846157, -0.0044371336698532104, 0.0026435796171426773, 0.022563079372048378, -0.03710191696882248, -0.023977523669600487, 0.026928812265396118, -0.003282798919826746, -0.05782894417643547, -0.048363056033849716, 0.015966881066560745, -0.022549480199813843, 2.682893318706192e-05, -0.035905081778764725, 0.019339783117175102, 0.016483696177601814, -0.045180562883615494, 0.046975817531347275, -0.029295282438397408, 0.0041685258038342, -0.015436464920639992, 0.00144674361217767, 0.012695983052253723, -0.04229727387428284, 0.01549086719751358, 0.042786888778209686, -0.028125647455453873, -0.007901838049292564, 0.0063921925611793995, -0.024208730086684227, -0.020183008164167404, -0.028424857184290886, -0.00654519721865654, 0.009234678000211716, -0.0028849870432168245, -0.049315087497234344, -0.019584590569138527, 0.04341251030564308, 0.041943665593862534, -0.014919649809598923, -0.0416172556579113, -0.004858746659010649, 0.027840038761496544, 0.018455756828188896, -0.002079162746667862, 0.018605360761284828, -0.01574927382171154, 0.017530929297208786, 0.08046002686023712, -0.013287600129842758, -0.0008950769552029669, 0.023243101313710213, 0.013702413067221642, -0.008847067132592201, -0.0028849870432168245, -0.020291810855269432, -0.028098447248339653, 0.007092613726854324, 0.014062823727726936, -0.017177317291498184, -0.03987640142440796, -0.03974039852619171, 0.03786354139447212, -0.028506459668278694, -0.013967621140182018, -0.00013005391519982368, -0.03459944203495979, 0.0090714730322361, 0.024290332570672035, 0.015708474442362785, 0.002784683834761381, 0.012505576945841312, 0.0025432766415178776, 0.016973311081528664, -0.05276959016919136, -0.0048621464520692825, 0.026248790323734283, -0.03843475878238678, -0.009064673446118832, 0.013362403027713299, -0.011213538236916065, -0.023950321599841118, -0.008575058542191982, 0.03838035836815834, -0.006572397891432047, 0.015654072165489197, 0.007167416159063578, -0.0059501794166862965, 0.013954021036624908, 0.023963922634720802, 0.027268821373581886, -0.0051511554047465324, 0.0013090394204482436, 0.00012399748084135354, -0.02828885242342949, -0.03789074346423149, -0.04316770285367966, -0.013158396817743778, 0.0016626501455903053, 0.03383782133460045, 0.012981591746211052, 0.04218847304582596, 0.006235788110643625, -0.011907159350812435, -0.021420646458864212, -0.036775507032871246, 0.009357081726193428, -0.020033404231071472, -0.007663831114768982, 0.01762613095343113, -0.017435725778341293, 0.00559996860101819, -0.003692511236295104, 0.044310133904218674, 0.024412736296653748, -0.02748642861843109, 0.0009987801313400269, 0.010914329439401627, -0.013573208823800087, 0.010812326334416866, -0.004879147280007601, -0.0199654009193182, -0.014212428592145443, 0.024671142920851707, -0.032205771654844284, -0.006990610621869564, -0.024235930293798447, 0.018047744408249855, -0.011145535856485367, -0.036639504134655, 0.0004879147163592279, 0.0067390031181275845, -0.047519832849502563, 0.0071266149170696735, -0.0014934950741007924, 0.005572767928242683, -0.020958231762051582, -0.04765583574771881, -0.010819125920534134, -0.048934273421764374, 0.005205556750297546, -0.004879147280007601, -0.026956012472510338, -0.014226028695702553, -0.030301714316010475, -0.017558129504323006, -0.01780293695628643, -0.009649490937590599, 0.015164457261562347, -0.012111164629459381, 0.015912478789687157, 0.015150857158005238, 0.021923860535025597, 0.0175173282623291, 0.015640471130609512, 0.008949069306254387, -0.011839156970381737, 0.0007943489472381771, -0.030192909762263298, 0.007466624956578016, 0.01672850362956524, 0.01135634258389473, -0.022821487858891487, -0.009316280484199524, 0.005106953904032707, 0.007670631166547537, -0.00559996860101819, -0.005021951161324978, -0.04352131113409996, 0.0015130456304177642, -0.01249877642840147, 0.028044044971466064, 0.013804416172206402, -0.021284641698002815, -0.031280942261219025, 0.030682524666190147, 0.014824447222054005, -0.0055455672554671764, 0.03870676830410957, 0.017789335921406746, 0.012417173944413662, -0.03304899483919144, -0.02176065556704998, 0.026724806055426598, -0.0199654009193182, -0.022780686616897583, 0.021135037764906883, -0.03416423127055168, -0.014334832318127155, 0.02366471290588379, -0.035823479294776917, 0.03522506356239319, 0.02170625515282154, 0.027690434828400612, 0.010825926437973976, 0.003682310925796628, 0.005185156129300594, -0.021665453910827637, 0.0183197520673275, -0.01409002486616373, 0.021420646458864212, -0.0481998510658741, 0.03182495757937431, -0.014729243703186512, 0.0056237694807350636, 0.008527456782758236, -0.017326923087239265, 0.018877368420362473, 0.003391602309420705, 0.03206976503133774, 0.01026150956749916, 0.016089284792542458, -0.031634554266929626, -0.026289591565728188, -0.009357081726193428, 0.02271268516778946, -0.023569511249661446, 0.0033219000324606895, -0.003889717161655426, -0.019951801747083664, -0.002245767740532756, 0.009289080277085304, -0.021189438179135323, 0.005327960476279259, -0.025351164862513542, -0.08415933698415756, -0.023963922634720802, 0.04110043868422508, 0.028588062152266502, -0.029540089890360832, 0.024086326360702515, 0.0031042934861034155, -0.0033014994114637375, 0.03696591407060623, -0.003308299696072936, 0.0040529221296310425, -0.005705371964722872, 0.022291071712970734, 0.021570250391960144, 0.020903829485177994, -0.009785494767129421, 0.02176065556704998, -0.03892437368631363, 0.010825926437973976, -0.0012087364448234439, 0.0056407698430120945, 0.002556876977905631, 0.05562567710876465, 0.021896660327911377, -0.006820605602115393, 0.019380584359169006, -0.00648059556260705, -0.022794287651777267, -0.038652364164590836, 0.0017646532505750656, 0.014960451051592827, 0.04618699103593826, -0.010730723850429058, 0.03288578987121582, -0.030655324459075928, 0.022522278130054474, 0.011431144550442696, 0.011437945067882538, 0.012172366492450237, -0.0227670855820179, 0.03478984907269478, -0.008683862164616585, -0.034925851970911026, -0.010016702115535736, 0.019693393260240555, 0.04384772107005119, 0.007459824904799461, -0.06446593999862671, -0.002126764040440321, -0.0017255520215258002, -0.0032963992562144995, 0.010343112051486969, 0.0020876629278063774, -0.010791925713419914, -0.008867467753589153, 0.0018122546607628465, 0.025990383699536324, -0.002313769655302167, -0.038625165820121765, -0.013444005511701107, -0.013865618035197258, 0.008602259680628777, -0.01307679433375597, -0.03160735219717026, -0.02034621313214302, 0.0012877888511866331, -0.029295282438397408, 0.016483696177601814, -0.02114863693714142, -0.007895037531852722, 0.0040461220778524876, 0.01695971190929413, 0.022807886824011803, -0.022467877715826035, 0.042868491262197495, 0.004460934549570084, 0.026534399017691612, -0.008649860508739948, -0.016918910667300224, -0.004253528080880642, -0.002140364609658718, -0.08143925666809082, 0.03715632110834122, -0.014266829937696457, 0.0005903427954763174, 0.020183008164167404, -0.01895897090435028, -0.006079383194446564, -0.037727538496255875, -0.01270278263837099, 0.021135037764906883, -0.012009162455797195, -0.050729528069496155, 0.05369441956281662, -0.010771525092422962, -0.011308740824460983, -0.02409992553293705, -0.006810405291616917, -0.007636629976332188, -0.004294329322874546, 0.003354201093316078, -0.018170148134231567, 0.016347693279385567, 0.005538766738027334, 0.00011879108205903322, 0.01904057338833809, -0.011927559971809387, -0.03669390454888344, 0.009771894663572311, -0.008935469202697277, 0.04626859351992607, 0.010179907083511353, -0.033620212227106094, -0.003536106552928686, 0.02060462161898613, -0.00334910093806684, 0.012274369597434998, 0.03857076168060303, -0.0016524498350918293, -0.014402833767235279, 0.02594958245754242, 0.036829911172389984, -0.029920902103185654, 0.01135634258389473, 0.007616229355335236, -0.0156948734074831, -0.019434986636042595, 0.012002361938357353, 0.002582377754151821, 0.04996790736913681, 0.02155664935708046, 0.021257441490888596, -0.011907159350812435, 0.007684231735765934, -0.015994081273674965, -0.016102885827422142, -0.009894298389554024, -0.028452057391405106, 0.04120924323797226, -0.0313897468149662, -0.01742212474346161, -0.005168155767023563, 0.013865618035197258, 0.02507915534079075, 0.005810775328427553, 0.012111164629459381, 0.006201786920428276, 0.005297359544783831, -0.01719091832637787, 0.014620441012084484, -0.006123584695160389, 0.020495817065238953, 0.0029308884404599667, 0.013620810583233833, 0.07137495279312134, -0.014987652190029621, -0.0074530248530209064, 0.02771763503551483, -0.011308740824460983, 0.0132944006472826, -0.007813435979187489, 0.014185227453708649, 0.007616229355335236, 0.0004199126560706645, 0.007704632356762886, -0.03296739235520363, 0.005338160786777735, -0.017911739647388458, -0.03193376213312149, -0.02820724993944168, -0.025935981422662735, 0.0013209398603066802, 0.006324190646409988, 0.016320491209626198, 0.013777215033769608, -0.015735674649477005, -0.0203190129250288, 0.048363056033849716, 0.0010038802865892649, -0.01229477021843195, 0.027404826134443283, 0.020006202161312103, -0.0023409705609083176, 0.03141694888472557, 0.012437574565410614, -0.025650372728705406, -0.0267656072974205, 0.015273259952664375, 0.010050702840089798, 0.02065902203321457, -0.0123831732198596, 0.0029070875607430935, -0.032232969999313354, 0.00479074427857995, 0.02089023031294346, -0.0026826809626072645, 0.043358106166124344, 0.025378365069627762, 0.017204519361257553, 0.01623888872563839, 0.014742844738066196, 0.0022117667831480503, 0.01459323987364769, -0.011839156970381737, 0.03546987101435661, -0.006154185626655817, 0.048825472593307495, -0.004375931806862354, -0.011363142170011997, -0.0005618669092655182, -0.024807147681713104, 0.021774256601929665, -0.011390343308448792, 0.014430034905672073, 0.027010414749383926, -0.02918647974729538, 0.05287839472293854, -0.01319239754229784, 0.003998520318418741, 0.040094006806612015, -0.017245320603251457, -0.03198816254734993, -0.009554288350045681, -0.030328914523124695, 0.03878837078809738, 0.012233568355441093, -0.0026826809626072645, -0.014008422382175922, -1.851462002377957e-05, 0.013328401371836662, 0.02173345535993576, 0.03106333687901497, -0.07262618839740753, 0.017680533230304718, 0.01834695227444172, 0.010805525816977024, 0.010805525816977024, -0.030192909762263298, -0.03438183665275574, 0.030328914523124695, 0.007045012433081865, -0.003838715609163046, -0.010893928818404675, -0.01275718491524458, 0.0013447405071929097, 0.03995800390839577, 0.004396332427859306, 0.0006336941150948405, -0.0024089727085083723, -0.0013540908694267273, -0.00167455046903342, -0.02019660919904709, 0.016198087483644485, -0.023447107523679733, 0.04346691071987152, -0.001909157494083047, 0.014144426211714745, -0.0033559012226760387, -0.0027404825668781996, -0.017354123294353485, -0.00514435488730669, -0.045126158744096756, 0.004528936464339495, -0.02782643958926201, -0.014470836147665977, -0.024657543748617172, 0.014307631179690361, -0.022930290549993515, 0.016089284792542458, 0.01501485239714384, 0.023569511249661446, 0.03062812238931656, 0.014933249913156033, 0.005759773775935173, -0.02193746156990528, 0.002385171828791499, 0.014634041115641594, -0.017449326813220978, -0.010064302943646908, -0.0013523907400667667, 0.022957492619752884, -0.00865666102617979, -0.023732716217637062, -0.002155665075406432, -0.023991122841835022, -0.0027047814801335335, 0.001773153431713581, 0.01226757001131773, -0.016198087483644485, -0.04803664982318878, 0.006773004308342934, -0.04414692893624306, -0.004845146089792252, 0.011193137615919113, -0.004603738896548748, 0.012022762559354305, 0.007582228630781174, -0.005293959751725197, -0.0221414677798748, 0.01248517632484436, -0.0011339341290295124, 0.01991100050508976, -0.017476527020335197, 0.01613008603453636, 0.026262391358613968, -0.03430023416876793, -0.026235191151499748, 0.010819125920534134, 0.004093723371624947, 0.0012410373892635107, -0.02962169237434864, 0.005688371602445841, 0.020999033004045486, 0.01875496469438076, -0.028588062152266502, 0.022059865295886993, -0.015817277133464813, -0.008051442913711071, -0.03748273104429245, 0.007099413778632879, 0.026371194049715996, -0.030791327357292175, -0.001368541270494461, 0.0067594037391245365, 0.006660800892859697, -0.00689880782738328, 0.015558868646621704, 0.025065556168556213, 0.014620441012084484, -0.0114719457924366, 0.016714904457330704, 0.007147015538066626, 0.055353667587041855, -0.003583708079531789, 0.03430023416876793, 0.031308144330978394, 0.006817205343395472, -0.014824447222054005, 0.01330800075083971, -0.011376743204891682, 0.002125064143911004, 0.01108433399349451, 0.029512889683246613, 0.037346724420785904, 0.008983070962131023, 0.017490128055214882, -0.011342741549015045, -0.01719091832637787, -0.029050474986433983, 0.035497069358825684, 0.026139987632632256, -0.011927559971809387, 0.03457224369049072, -0.0010276809334754944, 0.01438923366367817, 0.03799954429268837, -0.04134524613618851, -0.023759916424751282, 0.021379845216870308, 0.014702043496072292, -0.004617339000105858, 0.010009901598095894, -0.0030056906398385763, -0.028071247041225433, -0.005480965133756399, 0.000640069309156388, 0.01880936697125435, -0.00035573571221902966, 0.015858078375458717, -0.0006154185393825173, -0.02184225805103779, 0.013035993091762066, -0.007786234840750694, 0.020958231762051582, -0.02664320357143879, -0.005610168911516666, 0.008581859059631824, 0.02363751269876957, 0.012675582431256771, -0.025609571486711502, 0.0010735823307186365, -0.0027829839382320642, -0.0032028965651988983, -0.025378365069627762, 0.03791794180870056, 0.0059977807104587555, -0.02042781561613083, -0.032640982419252396, 0.014946850948035717, 0.00020347489044070244, 0.011839156970381737, 0.032178569585084915, -0.01785733737051487, -0.015708474442362785, -0.03462664410471916, 0.009928299114108086, -0.022100666537880898, -0.005168155767023563, -0.013369202613830566, 0.03653069958090782, 0.012253968976438046, -0.008609059266746044, -0.00846625491976738, -0.012009162455797195, 0.002347770845517516, 0.018999772146344185, -0.022291071712970734, -0.019992602989077568, 0.010458715260028839, -0.02335190400481224, 0.031226541846990585, 0.013675211928784847, 0.012641580775380135, -0.006606399081647396, -0.013716013170778751, 0.05002230778336525, -0.002500775270164013, 0.02915927954018116, -0.013437204994261265, -0.002293369034305215, -0.05312320217490196, 0.029540089890360832, -0.021284641698002815, -0.029077677056193352, -0.03348420932888985, -0.0015750974416732788, 0.03661230206489563, -0.010703522711992264, 0.01803414337337017, -0.00983989704400301, 0.029948102310299873, 0.01098233088850975, 0.035877879709005356, 0.028805667534470558, 0.011451545171439648, -0.0007067963015288115, -0.011859557591378689, -0.004301129840314388, -0.025677574798464775, 0.01583087630569935, 0.007609429303556681, 0.009493086487054825, 0.011567148379981518, 0.013131195679306984, -0.01962539181113243, -0.04915188252925873, -0.0068478062748909, -0.011233938857913017, -0.028914472088217735, -0.009309480898082256, 0.0237871166318655, -0.0033372004982084036, 0.001558096962980926, 0.0092482790350914, 0.03854356333613396, 0.008908268064260483, -0.037700336426496506, -0.029077677056193352, -0.03840755671262741, 0.032178569585084915, -0.008316650986671448, -0.011009532026946545, 0.0012248869752511382, 0.00926187913864851, 0.0059977807104587555, -0.00846625491976738, -0.040474820882081985, 0.025296762585639954, 0.026534399017691612, 0.008547857403755188, -0.01298839133232832, -0.0012682381784543395, 0.0033202001359313726, -0.0033746017143130302, -0.0035327065270394087, -0.014212428592145443, -0.015640471130609512, -0.010145905427634716, 0.016891708597540855, 0.007793034892529249, 0.014974051155149937, -0.010587919503450394, -0.005542166996747255, -0.010798725299537182, 0.00021293142344802618, 0.002344370586797595, 0.02661600150167942, -0.03702031448483467, 0.017816536128520966, 0.007867837324738503, -0.024181528016924858, 0.001836055307649076, -0.02286228910088539, 0.017530929297208786, -0.003060092218220234, -0.03922358155250549, 0.007017811760306358, 0.010492715984582901, 0.037237923592329025, 0.0004122624231968075, -0.006079383194446564, -0.007235418073832989, 0.01550446730107069, 0.04458214342594147, 0.009037472307682037, -0.001659250003285706, 0.005069552920758724, 0.0026996813248842955, -0.013199198059737682, 0.0015104955527931452, 0.045098960399627686, 0.03514346107840538, -0.0594065897166729, 0.010125504806637764, -0.0021590651012957096, -0.013437204994261265, 0.001517295720987022, -0.02008780464529991, 0.03054651990532875, -0.0055863684974610806, -0.049723099917173386, -0.010710323229432106, 0.007194616831839085, -0.0035123059060424566, 0.0267656072974205, -0.004049521870911121, 0.00018445556634105742, -0.017734935507178307, -0.04384772107005119, 0.023800717666745186, -0.011655551381409168, 0.02286228910088539, 0.014035623520612717, 0.019611790776252747, -0.007990241050720215, -0.00787463691085577, -0.017476527020335197, 0.034463439136743546, 0.013777215033769608, -0.0004891897551715374, 0.01875496469438076, -0.028533659875392914, 0.003974719904363155, -0.027785638347268105, -0.007024611812084913, -0.0055931685492396355, -0.02962169237434864, 0.011179536581039429, -0.018482957035303116, 0.020999033004045486, -0.021515848115086555, 0.01410362496972084, 0.0027931842487305403, -0.033565811812877655, -0.010336311534047127, -0.008377852849662304, 0.019258180633187294, -0.013505207374691963, -0.005283759441226721, -0.015790075063705444, -0.008214647881686687, 0.0007416473818011582, 0.016578899696469307, -0.01007110346108675, -0.008330251090228558, 0.007215017452836037, -0.014430034905672073, 0.03783633932471275, -0.007378222420811653, -0.003359301248565316, 0.007765834219753742, 0.018768565729260445, -0.006667600944638252, -0.03876116871833801, -0.008527456782758236, -0.012111164629459381, 0.014470836147665977, -0.02569117397069931, -0.027663234621286392, 0.00499135022982955, 0.016429295763373375, -0.008071843534708023, -0.0012401874409988523, 0.00033703516237437725, -0.03133534640073776, 0.013892819173634052, 0.01757173053920269, -0.009017071686685085, 0.01148554589599371, -0.013444005511701107, -0.0017493527848273516, 0.0033695015590637922, 0.0005057652597315609, 0.02078142575919628, 0.030464917421340942, 0.0035123059060424566, 0.030764127150177956, 0.00047813940909691155, 0.023732716217637062, -0.02918647974729538, 0.009669891558587551, 0.03381061926484108, 0.007555027958005667, -0.007024611812084913, -0.028615262359380722, -0.02479354664683342, -0.006773004308342934, -0.014008422382175922, -0.011342741549015045, 0.0006090433453209698, 0.0063547915779054165, 0.033620212227106094, -0.016116484999656677, -0.02831605263054371, -0.008629459887742996, 0.004811144899576902, -0.004654740449041128, -0.031172139570116997, 0.01780293695628643, -0.041073236614465714, -0.006626799702644348, 0.010077903978526592, 0.01615728624165058, -0.0032385976519435644, -0.03329380229115486, -0.006742403376847506, 0.0044847349636256695, 0.004617339000105858, -0.010064302943646908, -0.014566038735210896, 0.012009162455797195, 0.009010271169245243, 0.020291810855269432, -0.014117226004600525, 0.022794287651777267, -0.019258180633187294, 0.013362403027713299, -0.004355531185865402, 0.010200307704508305, -0.014566038735210896, 0.009030671790242195, 0.026629602536559105, 0.014511637389659882, 0.018890969455242157, 0.021638251841068268, -0.026575200259685516, 0.042351678013801575, -0.009520286694169044, 0.01872776448726654, 0.01307679433375597, 0.008316650986671448, -0.018183747306466103, 0.009357081726193428, 0.005368761718273163, 0.003733312478289008, 0.0043929326348006725, 0.006432993803173304, -0.00583797600120306, 0.020958231762051582, -0.008418654091656208, 0.01239677332341671, 0.0033780017402023077, 0.013756814412772655, 0.018183747306466103, -0.01136994268745184, 0.009758294560015202, -0.03340260684490204, 0.001856455928646028, -0.011315541341900826, 0.0199654009193182, 0.0018190548289567232, 0.019570989534258842, -0.01652449741959572, 0.000317484576953575, -0.007772634271532297, 0.019353384152054787, 0.00046581405331380665, 0.028479257598519325, 0.0038965174462646246, 0.03206976503133774, -0.0004900397616438568, -0.005392562597990036, 0.008479855954647064, -0.015042053535580635, 0.01613008603453636, 0.004287529271095991, 0.013736413791775703, -0.000979229575023055, 0.0031195939518511295, -0.0009545787470415235, -0.016306892037391663, 0.03443623706698418, 0.022467877715826035, 0.017503727227449417, -0.010356712155044079, 0.03647629916667938, 0.021135037764906883, 0.0007645980222150683, 0.009948699735105038, -0.004001920577138662, -0.006983810570091009, 0.03206976503133774, 0.01855095848441124, -0.00905787292867899, -0.03367461636662483, 0.006184786558151245, 0.0173405222594738, 0.015654072165489197, -0.009880698285996914, 0.012797986157238483, 0.010601519607007504, 0.009758294560015202, 0.005334760993719101, -0.0033372004982084036, 0.043657317757606506, -0.005508165806531906, -0.026452796533703804, -0.013097194954752922, 0.015626871958374977, -0.011063933372497559, 0.006691401824355125, 0.01670130342245102, -0.007412223611027002, -0.01759893074631691, 0.014484436251223087, 0.02548716776072979, 0.02384151890873909, 0.0011075834045186639, -0.03255937993526459, 0.011206737719476223, 0.007119814399629831, -0.029431287199258804, 0.028044044971466064, -0.017966141924262047, -0.001014080597087741, -0.005110354162752628, -0.032232969999313354, -0.008738263510167599, 0.001555546885356307, -0.001049781683832407, 0.029948102310299873, 0.02335190400481224, -0.035932283848524094, -0.03394662216305733, 0.010132305324077606, -0.001418692758306861, 0.004685341380536556, -0.009812695905566216, 0.021855859085917473, -0.022087065503001213, -0.00509335333481431, 0.0032946993596851826, -0.0008644760819151998, 0.007786234840750694, -0.000320034654578194, 0.00787463691085577, -0.02499755285680294, 0.0008470505126751959, -0.006174586247652769, -0.017938939854502678, 0.025854378938674927, -0.00037018617149442434, -0.005440163891762495, 0.011492346413433552, 0.001163685112260282, -0.003391602309420705, -0.01583087630569935, -0.0022797686979174614, -0.018401354551315308, 0.011981961317360401, -0.00750742619857192, -0.007296619936823845, -0.01018670666962862, -0.0028662863187491894, -0.012845586985349655, -0.010825926437973976, -0.026602402329444885, 0.0047873444855213165, -0.02828885242342949, -0.018074944615364075, 0.017068514600396156, 0.020155807957053185, 1.9975601389887743e-05, 0.0030668925028294325, -0.016538098454475403, -0.012947590090334415, -0.002805084455758333, -0.0005202156607992947, -0.0026282791513949633, -0.0099827004596591, 0.011261139065027237, -0.0029274881817400455, 0.0030481917783617973, 0.006249388214200735, -0.01647009700536728, -0.017680533230304718, -0.010023501701653004, 0.0343274362385273, 0.013648011721670628, -0.01806134358048439, -0.01613008603453636, 0.005287159234285355, -0.0018428555922582746, 0.020985431969165802, -0.0011806855909526348, -0.004022321198135614, -0.0003525481151882559, -0.01566767320036888, -0.020359814167022705, 0.013920019380748272, -0.01206356380134821, -0.019489387050271034, 0.010995931923389435, 0.014566038735210896, -0.003818314988166094, 0.022372674196958542, -0.03152574971318245, -0.01277078501880169, -0.006181386299431324, 0.006171185988932848, -0.002104663522914052, 0.02548716776072979, -0.014960451051592827, -0.007330621127039194, 0.0007152965408749878, -0.02222307026386261, 0.020876629278063774, 0.028098447248339653, -0.03892437368631363, 0.021135037764906883, -0.004981149919331074, 0.007439424283802509, -0.013845217414200306, -0.010941529646515846, -0.028832869604229927, -0.012111164629459381, -0.0166741032153368, 0.008833466097712517, -0.007929039187729359, 0.018428554758429527, 0.009316280484199524, 0.018646162003278732, -0.025473568588495255, 0.004423533566296101, -0.027935242280364037, -0.02193746156990528, -0.03655790165066719, -0.009064673446118832, 0.009914699010550976, -0.012036362662911415, -0.0006370941991917789, -0.01880936697125435, -0.01785733737051487, -0.0021743655670434237, -0.014253229834139347, 0.03846196085214615, -0.002373271621763706, 0.008139844983816147, 0.00332360016182065, -0.021570250391960144, -0.0176533330231905, -0.014266829937696457, 0.003743512788787484, 0.000854700745549053, 0.000627318921033293, -0.029920902103185654, -0.0212982427328825, -0.026303192600607872, -0.010730723850429058, 0.013858817517757416, -0.024698344990611076, -4.125280611333437e-05, 0.012410374358296394, -0.0012223368976265192, -0.026942411437630653, -0.0060181813314557076, -0.01901337318122387, 0.013389603234827518, -0.00915987603366375, -0.006517996545881033, 0.021488647907972336, 0.00787463691085577, -0.005892377812415361, 0.028397655114531517, -0.03190656006336212, 0.0333482064306736, 0.028914472088217735, 0.012546378187835217, -0.01872776448726654, 0.008377852849662304, 0.019258180633187294, 0.009669891558587551, 7.586478750454262e-05, 0.007065413054078817, 0.002981889992952347, 0.02248147688806057, 0.00226106820628047, 0.0037469130475074053, -0.016116484999656677, -0.008330251090228558, -0.007249018643051386, 4.2474719521123916e-05, -0.0074938260950148106, 0.0011245838832110167, -0.00854105781763792, -0.001026830985210836, 0.02288948930799961, 0.02785363979637623, -0.018251750618219376, 0.02109423652291298, -0.0031722956337034702, -0.006001180969178677, -0.0048621464520692825, 0.027377625927329063, 0.01670130342245102, -0.008751863613724709, -0.008201046846807003, 0.015178057365119457, -0.018659763038158417, 0.009336681105196476, 0.01156034879386425, -0.02222307026386261, -0.014226028695702553, -0.022821487858891487, -0.0001806304499041289, 0.00894226972013712, 0.00334910093806684, 0.006194986868649721, -0.003480004845187068, -0.018972571939229965, 0.010207107290625572, -0.00233757053501904, -0.005443564150482416, 0.00044753847760148346, 0.014226028695702553, 0.0245895404368639, -0.0024497739505022764, -0.007772634271532297, -0.042406078428030014, -0.005538766738027334, -0.020128605887293816, -0.011206737719476223, 0.02828885242342949, -0.02875126712024212, -0.03381061926484108, 0.021366244181990623, -0.004539136774837971, 0.0059773800894618034, -0.02445353753864765, -0.02635759487748146, 0.0059603797271847725, 0.012491976842284203, 0.014634041115641594, -0.013253599405288696, -0.011988761834800243, -0.012634781189262867, 0.013287600129842758, 0.03756433352828026, -0.0026180788408964872, 0.01731332205235958, 0.005885577294975519, -0.03008410707116127, 0.010030302219092846, -0.00301929097622633, -0.006065782625228167, -0.0040801228024065495, -0.008690661750733852, 0.00152239587623626, 0.009833096526563168, -0.006415993440896273, 0.003463004482910037, 0.0015266459668055177, 0.003473204793408513, -0.024317532777786255, 0.012852387502789497, -0.001909157494083047, 0.01708211563527584, -0.012967990711331367, -0.011261139065027237, -0.0035429068375378847, -0.005807375069707632, 0.013246798887848854, -0.002349470742046833, 0.0036585102789103985, -0.004658140242099762, 0.02363751269876957, -0.002038361504673958, -0.001540246419608593, -0.018156547099351883, 0.0033576011192053556, -0.014402833767235279, 0.004396332427859306, -0.002752383006736636, 0.014035623520612717, -0.018768565729260445, 0.008003841154277325, 0.01459323987364769, -0.019108576700091362, 0.027323223650455475, 0.013906419277191162, 0.01194796059280634, -0.060821034014225006, -0.034980256110429764, -0.0007599228993058205, 0.0132944006472826, -0.013233198784291744, 0.009003471583127975, 0.010003101080656052, -0.016170887276530266, 0.02022380940616131, 0.0012435874668881297, 0.0022474676370620728, 0.015110055916011333, -0.006072583142668009, 0.006290189456194639, -0.04001240432262421, 0.04020281136035919, -0.027010414749383926, -0.0013846916845068336, -0.015273259952664375, -0.0026316794101148844, 0.02191026136279106, 0.03598668426275253, 0.00548436539247632, -0.005644170101732016, -0.025623172521591187, -0.015613270923495293, -0.009153075516223907, 0.0067764041014015675, -0.013158396817743778, -0.02358311042189598, 0.047519832849502563, -0.01481084618717432, -0.010139105841517448, -0.00718781678006053, 0.010540317744016647, 0.022291071712970734, -0.006062382832169533, -0.0022100666537880898, -0.017530929297208786, -0.024086326360702515, 0.009887497872114182, -0.022413475438952446, -0.012906788848340511, 0.031716156750917435, -0.0310361348092556, 0.00683420617133379, 0.007555027958005667, 0.009771894663572311, 0.004171925596892834, 0.01878216676414013, 0.009329881519079208, 0.004175325855612755, 0.04640460014343262, -0.02381431870162487, 0.016102885827422142, -0.026860808953642845, -0.0166741032153368, -0.014253229834139347, -0.008575058542191982, -4.122624159208499e-05, 0.005120554473251104, -0.010200307704508305, -0.02569117397069931, -0.022617481648921967, 0.00875866413116455, -0.006963409949094057, -0.00039037427632138133, 0.04724782332777977, 0.019230980426073074, -0.030954532325267792, 0.030192909762263298, 0.00438613211736083, 0.006198386661708355, 0.0005040651885792613, 0.011465145274996758, 0.0022491677664220333, 0.010553917847573757, -0.009962299838662148, 0.009561087936162949, -0.016198087483644485, -0.010900728404521942, 0.004719342105090618, 0.009629090316593647, 0.006664200685918331, 0.013654811307787895, -0.03274978697299957, -0.0019924601074308157, -0.011981961317360401, -0.0001527921122033149, 0.000453913671663031, -0.01550446730107069, 0.0019023573258891702, -0.01672850362956524, -0.005504766013473272, -0.01613008603453636, 0.014185227453708649, -0.00452213641256094, -0.014756444841623306, 0.003255598247051239, 0.010825926437973976, 0.0009350281907245517, 0.03519786149263382, 0.0001834992872318253, 0.019380584359169006, 0.0004879147163592279, -0.012131565250456333, 0.01898617297410965, 0.00011804731184383854, 0.009255078621208668, 0.03378341719508171, -0.0032334974966943264, -0.002278068568557501, 0.029404086992144585, -0.03968599811196327, 0.006147385109215975, 0.015939680859446526, 0.029893701896071434, -0.006290189456194639, -0.012226768769323826, -0.04363011568784714, -0.025854378938674927, 0.006511196494102478, -0.0016396994469687343, -0.012444375082850456, 0.012709583155810833, 0.013620810583233833, -0.015871677547693253, 0.01982939802110195, -0.007813435979187489, 0.010315910913050175, 0.0003952619154006243, 0.01736772432923317, -0.01479724608361721, -0.015912478789687157, 0.0051715560257434845, 0.013954021036624908, 0.014729243703186512, 0.002706481609493494, 0.03789074346423149, -0.018047744408249855, 0.004199126735329628, -0.012661981396377087, 0.012546378187835217, -0.003060092218220234, -0.008418654091656208, 0.010887128300964832, 0.0019380584126338363, -0.007779434323310852, -0.0221414677798748, 0.007357821799814701, -0.008241848088800907, 0.017041314393281937, -0.013981221243739128, 0.008745064027607441, 0.003485105000436306, -0.007119814399629831, -0.01409002486616373, -0.009030671790242195, 0.00846625491976738, 0.01432123128324747, -0.016198087483644485, -0.008201046846807003, -0.010540317744016647, 0.053531214594841, -0.02191026136279106, 0.024140726774930954, -0.02401832491159439, 0.014865248464047909, -0.021488647907972336, -0.00032513480982743204, -0.0021743655670434237, 0.014770044945180416, -0.001186635810881853, -0.014171627350151539, -0.014987652190029621, -0.0038251152727752924, 0.0011696352157741785, -0.019203778356313705, -0.004800944589078426, 0.013212798163294792, 0.002140364609658718, 0.01389961875975132, -0.003386502154171467, 0.00813304539769888, 0.0008772264700382948, -0.022331872954964638, -0.010696722194552422, 0.0026367795653641224, 0.011519547551870346, -0.009771894663572311, 0.008105844259262085, 0.017095714807510376, 0.022318271920084953, -0.003954319283366203, -0.008527456782758236, 0.018863769248127937, -0.008037841878831387, -0.0014985952293500304, -0.004481335170567036, 0.005681571085005999, 0.013852017931640148, 0.007636629976332188, -0.009812695905566216, 0.0138724185526371, -0.009139475412666798, 0.017054913565516472, 0.01965259201824665, 0.0028067845851182938, -0.010009901598095894, 0.015531668439507484, -0.0005707921809516847, 0.009153075516223907, 0.01306319423019886, -0.02401832491159439, -0.010016702115535736, 0.008160245604813099, 0.01574927382171154, -0.0026265792548656464, -0.01641569472849369, -0.006932809017598629, -0.003065192373469472, 0.01641569472849369, -0.004678540863096714, 0.0018292551394551992, 0.012111164629459381, -0.017245320603251457, 0.0051817563362419605, -0.03136254474520683, -0.007419023662805557, -0.014960451051592827, 0.011104734614491463, -0.004151524975895882, 0.005667970981448889, -0.020414214581251144, 0.005110354162752628, 0.016089284792542458, -0.017381323501467705, -0.00144674361217767, 0.009023872204124928, -0.010819125920534134, 0.03198816254734993, 0.032124169170856476, 0.002422573044896126, 0.007854237221181393, -0.0004360631573945284, 0.011852757073938847, -0.018401354551315308, 0.007942639291286469, -0.020305411890149117, -0.0004866396775469184, -0.02571837604045868, 0.012559978291392326, -0.033130597323179245, -0.020128605887293816, -0.02710561640560627, -0.006793404929339886, 0.009785494767129421, 0.0031229942105710506, 0.005314360372722149, -0.009166676551103592, -0.023800717666745186, 0.03740112856030464, 0.003998520318418741, 0.014933249913156033, 0.015368463471531868, -0.023134296759963036, 0.01826534979045391, -0.0090714730322361, -0.012049962766468525, -0.0041107237339019775, 0.004001920577138662, -0.005531966686248779, 0.016973311081528664, -0.006409193389117718, -0.029077677056193352, 0.01377041544765234, 0.0007416473818011582, -0.0409100316464901, -0.006062382832169533, 0.023229500278830528, 0.010254709050059319, -0.019951801747083664, 1.441059066564776e-05, -0.010077903978526592, 0.015939680859446526, -0.009785494767129421, 0.0005916178342886269, 0.0025840778835117817, 0.007935838773846626, -0.031199339777231216, -0.007725032977759838, 0.01285918802022934, 0.005174955818802118, 0.013940420001745224, 0.008949069306254387, 0.009697092697024345, -0.005671370774507523, -0.008201046846807003, -0.01077832467854023, 0.006001180969178677, 0.010009901598095894, -0.02409992553293705, -0.01661970093846321, 0.00813304539769888, 0.017993342131376266, 0.025187959894537926, 0.020509418100118637, -0.00644319411367178, -0.02063182182610035, 0.01135634258389473, -0.02216866798698902, -0.005827775690704584, 0.007908638566732407, 0.026262391358613968, -0.006154185626655817, -0.007704632356762886, -0.013525607995688915, -0.0017901539104059339, 0.013607210479676723, -0.021311841905117035, 0.02181505784392357, -0.03394662216305733, 0.010825926437973976, -0.008881067857146263, -0.024371935054659843, -0.014688442461192608, -0.0048621464520692825, 0.010438314639031887, -0.0013447405071929097, 0.010356712155044079, 0.011363142170011997, 0.03100893460214138, -0.003515705931931734, -0.02725522220134735, -0.0071538155898451805, -0.004396332427859306, -0.0077590337023139, -0.003090693149715662, 0.00915987603366375, 0.02080862782895565, 0.011743954382836819, -0.030682524666190147, 0.033130597323179245, 0.013233198784291744, 0.0006999960751272738, 0.008649860508739948, -0.010887128300964832, -0.0072014168836176395, 0.0048723467625677586, 0.022155066952109337, -0.003672110615298152, 0.007215017452836037, 0.012546378187835217, -0.014158026315271854, 0.03296739235520363, 0.008724663406610489, 0.011186337098479271, -0.014987652190029621, 0.000261807901551947, 0.012410374358296394, 0.008241848088800907, 0.023542309179902077, -0.014525237493216991, -0.014198827557265759, 0.010893928818404675, 0.01693250983953476, 0.013110795058310032, -0.00195845915004611, -0.012661981396377087, -0.030927332118153572, -0.01618448831140995, -0.019149377942085266, -0.007487025577574968, -0.004729542415589094, -0.020332612097263336, 0.0027914841193705797, 0.01806134358048439, -0.009098674170672894, -0.002245767740532756, -0.016089284792542458, -0.005916178226470947, -0.014171627350151539, 0.00291898800060153, 0.013185597024857998, -0.00032513480982743204, 0.0027982844039797783, -0.015191657468676567, -0.003920318093150854, 0.00813304539769888, -0.005205556750297546, 0.014634041115641594, 0.021257441490888596, 0.013212798163294792, 0.007419023662805557, 0.013920019380748272, -0.021747056394815445, 0.01728612184524536, -0.002075762487947941, 0.019611790776252747, 0.014130826108157635, -0.01708211563527584, 0.015735674649477005, 0.0023460707161575556, -0.040121208876371384, -0.016551699489355087, 0.013546008616685867, -0.015463666059076786, -0.003546306863427162, -0.020210208371281624, -0.0030362915713340044, -0.01695971190929413, 0.033076196908950806, -2.338898593734484e-05, -0.008058242499828339, 0.013879218138754368, -0.008751863613724709, 0.0015487467171624303, 0.012131565250456333, -0.0006417693221010268, 0.007793034892529249, 0.004338530823588371, -0.01206356380134821, -0.03160735219717026, -0.0018785566790029407, 0.00856825802475214, -0.014457236044108868, -0.016198087483644485, 0.021203039214015007, 0.022807886824011803, -0.030845729634165764, 0.01754452846944332, -0.0016660501714795828, -0.011995561420917511, 0.012151965871453285, -0.007691031787544489, 0.015422864817082882, 0.01762613095343113, 0.022331872954964638, -0.015218858607113361, 0.007072213105857372, 0.001065082149580121, -0.0036381096579134464, -0.0014764944789931178, 0.0014424935216084123, -0.0055761681869626045, -0.015001252293586731, -0.024181528016924858, 0.0010200307006016374, -0.029023274779319763, 0.006915808655321598, 0.012015962041914463, 0.027268821373581886, 0.003644909942522645, 0.010295510292053223, 0.001285238773562014, 0.01618448831140995, -0.024031924083828926, -0.0011551848147064447, 0.020971832796931267, 0.024671142920851707, -0.012668781913816929, 0.007575428579002619, 0.002878186758607626, 0.004433733876794577, -0.006283389404416084, -0.022372674196958542, -0.004069922491908073, 0.001062532071955502, 0.01898617297410965, 0.01927178166806698, -0.007242218125611544, -0.005409562960267067, 0.03106333687901497, 0.002125064143911004, -0.015762874856591225, 0.012913589365780354, 0.0035021055955439806, -0.007956239394843578, 0.019326182082295418, -0.0012146866647526622, 0.03239617496728897, 0.004702341742813587, -0.000935878197196871, -0.0012452874798327684, -0.004994750488549471, 0.017068514600396156, -0.010003101080656052, 0.00797664001584053, 0.0026418797206133604, 0.013586809858679771, 0.003495305310934782, 0.007908638566732407, -0.015259659849107265, 0.01618448831140995, 0.003940718714147806, -0.013335201889276505, -0.020740624517202377, -0.0016005982179194689, -0.009656291455030441, 0.006460194941610098, -0.01189355831593275, 0.008479855954647064, 0.006130384746938944, 0.004644540138542652, -0.0022287671454250813, -0.008289449848234653, -0.010152705945074558, 0.0011917359661310911, 0.006276589352637529, -0.007969840429723263, -0.01307679433375597, -0.007514226716011763, 0.013559608720242977, 0.012954390607774258, -0.019067775458097458, 0.001542796497233212, 0.003417103085666895, -0.03487145155668259, -0.008935469202697277, 0.008962670341134071, 0.025595972314476967, -0.016687702387571335, -0.014144426211714745, 0.00784743670374155, 0.006762803997844458, -0.019693393260240555, -0.008683862164616585, 0.021339043974876404, 3.43994761351496e-05, 0.008534257300198078, -0.010921129025518894, -0.05587048456072807, 0.023365505039691925, -0.004039321560412645, -0.027064815163612366, 0.0003935618733521551, 0.003292999230325222, -0.0067016021348536015, -0.017503727227449417, -0.012151965871453285, 0.0030991933308541775, -0.0016898509347811341, -0.02823445200920105, 0.036639504134655, -0.026915211230516434, 9.249341383110732e-05, -0.009289080277085304, -0.006388792768120766, 0.012825186364352703, 0.03897877410054207, 0.011403943412005901, 0.014933249913156033, -0.0028951873537153006, 0.013954021036624908, 0.006960009690374136, -0.0029070875607430935, -0.016538098454475403, 0.013124395161867142, 0.018156547099351883, -0.008969469927251339, -0.0011466845171526074, -0.010003101080656052, 0.011077533476054668, 0.00023269451048690826, 0.004175325855612755, 0.011009532026946545, 0.005008351057767868, 0.017966141924262047, -0.023963922634720802, 0.01135634258389473, 0.006810405291616917, 0.006473795045167208, -0.005504766013473272, 0.002726882230490446, 0.0001230412017321214, 0.003631309373304248, -0.02109423652291298, 0.009357081726193428, -0.03234177455306053, 0.009826296009123325, -0.01351200696080923, 0.000287096161628142, -0.002567077288404107, 0.02782643958926201, -0.014892448671162128, 0.015626871958374977, -0.0008389753056690097, 0.004365731496363878, 0.014933249913156033, 0.03416423127055168, 0.004763543605804443, -0.02109423652291298, -0.003770713694393635, 0.012301570735871792, -0.021896660327911377, 0.009554288350045681, -0.0020553618669509888, -0.0273912250995636, -0.006868206895887852, 0.026371194049715996, -0.00750742619857192, 0.02263108268380165, -0.010016702115535736, 0.002560277236625552, -0.009676692076027393, -0.0030175908468663692, -0.02127104066312313, 0.0247663464397192, -0.005929778795689344, 0.003852316178381443, 0.009268679656088352, -0.007935838773846626, -0.014430034905672073, 0.0013600409729406238, 0.018537359312176704, -0.005120554473251104, -0.0008326001116074622, 0.0017646532505750656, 0.008017441257834435, -0.01754452846944332, 0.00648059556260705, -0.002888387069106102, -0.007487025577574968, -0.007371422369033098, -0.0024820747785270214, -0.005038951989263296, -0.00826224870979786, 0.003821715246886015, 0.004001920577138662, 0.01710931584239006, 0.020359814167022705, -0.027581632137298584, -0.0059127784334123135, -0.020876629278063774, 0.019176578149199486, -0.006456794682890177, 0.02913207747042179, 0.005756373517215252, 0.036340296268463135, -0.015994081273674965, -0.008683862164616585, 0.002762583317235112, -0.010343112051486969, 0.0066472003236413, 0.01481084618717432, 0.0176533330231905, 0.018877368420362473, 0.02745922841131687, -0.015586069785058498, 0.009996301494538784, 0.017585329711437225, 0.005491165444254875, 0.020482217893004417, 0.009125875309109688, 0.020359814167022705, 0.0020145606249570847, 0.006613199133425951, 0.0013999921502545476, 0.010526717640459538, -0.00807864312082529, -0.015463666059076786, 0.011437945067882538, -0.012206368148326874, -0.004889347590506077, -0.010431514121592045, 0.01067632157355547, -0.014865248464047909, 0.003661910304799676, 0.0095814885571599, -0.017231719568371773, 0.006422793492674828, -0.0016703003784641623, 0.014892448671162128, 0.011580749414861202, -0.00021208138787187636, -0.006582598201930523, 0.009948699735105038, 0.0017332022543996572, 0.038597963750362396, 0.004858746659010649, -0.00499135022982955, -0.0059875803999602795, 0.008037841878831387, 0.010717122815549374, -0.01739492453634739, -0.001077832537703216, 0.0009715792839415371, 0.0019618591759353876, -0.022440675646066666, 0.008194247260689735, -0.018102144822478294, 0.004987950436770916, -0.00936388224363327, -0.004127724561840296, 0.015137256123125553, 0.009771894663572311, -0.00418212590739131, -0.00683420617133379, 0.005178356077522039, 0.010934730060398579, -0.0020774626173079014, 0.026860808953642845, -0.02520155906677246, 0.024317532777786255, 0.007113014347851276, 0.0017935540527105331, -0.002339270431548357, 0.002410672605037689, 0.0007118964567780495, 0.003624509321525693, 0.011900358833372593, 0.0027081817388534546, 0.005147755146026611, -0.010268309153616428, 0.009010271169245243, 0.008486655540764332, 0.020618220791220665, 0.008221447467803955, -0.006171185988932848, 0.011009532026946545, 0.005399362649768591, -0.01409002486616373, 0.004933548625558615, 0.0029257882852107286, -0.004008720628917217, 0.022998293861746788, -0.007765834219753742, -0.03976760059595108, 0.009023872204124928, 0.0006115934229455888, 0.0016405493952333927, 0.007922238670289516, 0.002288268879055977, -0.019788596779108047, 0.008303049951791763, 0.0011186336632817984, 0.0316617526113987, -0.007351021748036146, -0.0004947148845531046, -0.013981221243739128, -0.002997190458700061, 0.021339043974876404, -0.0006175436428748071, -0.0063751921989023685, 0.006473795045167208, -0.011580749414861202, 0.009649490937590599, -0.023678313940763474, 0.005307559855282307, 0.0030923932790756226, -0.005810775328427553, 0.021896660327911377, -0.013756814412772655, 0.0211214367300272, -0.022821487858891487, -0.03906037658452988, -0.004562937654554844, 0.009132674895226955, 0.017558129504323006, -0.0022270670160651207, -0.01306319423019886, -0.018414955586194992, -0.031308144330978394, 0.0073034199886024, -0.0034817049745470285, 0.011437945067882538, -0.008071843534708023, -0.004919948522001505, -0.0022848688531666994, -0.008507056161761284, -0.002301869448274374, 0.010145905427634716, -0.001077832537703216, 0.010785125195980072, -0.008473055437207222, 0.015545268543064594, 0.0026775808073580265, 0.02057741954922676, 0.0030362915713340044, 0.028832869604229927, -0.023338302969932556, 0.02363751269876957, 0.0055557675659656525, 0.007255818694829941, 0.007119814399629831, 0.004171925596892834, -0.013321601785719395, -0.013763614930212498, -0.0014926450094208121, 0.0015062453458085656, -0.0024820747785270214, 0.020591020584106445, -0.00973789393901825, -0.022998293861746788, -0.00614058505743742, 0.004532336723059416, -0.024521538987755775, -0.0028492859564721584, -0.0005427413852885365, -0.023243101313710213, 0.006844406481832266, -0.004324930254369974, 0.01880936697125435, -0.017612531781196594, 0.0017663532635197043, -0.011499146930873394, -0.011539948172867298, 0.021801456809043884, 0.0008449254673905671, 0.0051613557152450085, -0.006830805912613869, 0.014049223624169827, -0.002774483524262905, -0.01762613095343113, -0.000925677886698395, -0.010873528197407722, 0.009547487832605839, 0.006742403376847506, 0.01783013716340065, -0.008649860508739948, -0.021679053083062172, 0.018741365522146225, -0.022699084132909775, -0.013627611100673676, -0.017027713358402252, -0.005967179778963327, 0.03508905693888664, -0.017694134265184402, -0.01508285477757454, -0.005899177864193916, 0.011397143825888634, -0.018020542338490486, -0.009540687315165997, -0.007888237945735455, 0.0032793988939374685, 0.004501735791563988, 0.017870938405394554, -0.001059981994330883, 0.014430034905672073, -0.0018190548289567232, -0.006239187903702259, 0.009438684210181236, -0.007351021748036146, 0.002116563729941845, -0.008031042292714119, 0.02831605263054371, -0.01330800075083971, -1.2358575986581855e-05, -0.010370312258601189, 0.005290559493005276, -0.03799954429268837, -0.00926187913864851, -0.002964889397844672, 0.003961119335144758, -0.01339640375226736, -0.003610908752307296, -0.011567148379981518, -0.009615490213036537, 0.0036177090369164944, 7.618354720762e-05, -0.011410743929445744, -0.01967979408800602, -0.019720595329999924, -0.02716001868247986, -0.0015045453328639269, -0.008255449123680592, -0.004974349867552519, -0.018455756828188896, 0.002794884145259857, 0.008663461543619633, 0.02042781561613083, 0.0037401127628982067, 0.0009698792127892375, 0.02482074871659279, -0.006113384384661913, -0.005052552092820406, 0.031172139570116997, -0.01672850362956524, -0.02594958245754242, -0.0337018147110939, -0.0010285309981554747, -0.003381401998922229, 0.00538236228749156, 0.013246798887848854, -0.012036362662911415, -0.00976509414613247, 0.030247312039136887, 0.003255598247051239, -0.02730962261557579, -0.004426933359354734, -0.003998520318418741, -0.007446224335581064, -0.01437563356012106, 0.042270075529813766, 0.000928227964323014, -0.008867467753589153, 0.018768565729260445, -0.006643800064921379, 0.004029121249914169, 0.02239987440407276, -0.00784743670374155, 0.005287159234285355, 0.006868206895887852, -0.007765834219753742, -0.018605360761284828, -0.0032487979624420404, 0.009214277379214764, 0.020999033004045486, -0.01895897090435028, 0.0044847349636256695, -0.0012231868458911777, -0.0010633820202201605, 0.0166741032153368, -0.01621168851852417, -0.0092482790350914, 0.010037102736532688, -0.014851647429168224, -0.003712911857292056, 0.020251009613275528, -0.006504395976662636, -0.004729542415589094, 0.0015155957080423832, 0.013117595575749874, 0.008833466097712517, 0.00975149404257536, 0.004137924872338772, -0.017979741096496582, -0.0011424344265833497, 0.023487908765673637, -0.0017833537422120571, -0.014661242254078388, -0.0031705955043435097, 0.03011130727827549, 0.004525536205619574, -0.0074530248530209064, -0.005664570722728968, -0.022998293861746788, 0.005494565702974796, -0.016973311081528664, 0.015055653639137745, -0.013654811307787895, 0.005395962856709957, 0.03190656006336212, -0.002857786137610674, -0.013097194954752922, -0.014552438631653786, -0.010370312258601189, -0.01148554589599371, 0.004542537033557892, 0.02571837604045868, 0.019666193053126335, 0.004134524613618851, -0.011723553761839867, -0.0007390973041765392, -0.016225289553403854, -0.02176065556704998, 0.011873157694935799, 0.024521538987755775, -0.005698571912944317, -0.011261139065027237, -0.014144426211714745, 0.0063751921989023685, -0.022304672747850418, -0.00022589431318920106, -0.020359814167022705, -0.010132305324077606, 0.0003312974877189845, -0.014729243703186512, -0.0030668925028294325, -0.006500996183604002, 0.0337018147110939, -0.0067492034286260605, 0.013586809858679771, -0.003991720266640186, -0.0001010467967716977, -0.00917347613722086, -0.01783013716340065, -0.007806635461747646, -0.00014716068108100444, -0.006371791940182447, -0.004953949246555567, -0.01901337318122387, 0.009411484003067017, -0.01927178166806698, 0.013498406857252121, 0.011077533476054668, -0.013137996196746826, -0.035007454454898834, 0.017490128055214882, -0.0026639802381396294, -0.015708474442362785, -0.0036891112104058266, 0.027187218889594078, -0.004950549453496933, 0.0009299280354753137, -0.026779206469655037, 0.019407784566283226, -0.0027353824116289616, -0.012933989986777306, -0.010241108946502209, 0.024929551407694817, 0.025595972314476967, 0.012634781189262867, 0.015735674649477005, -0.002737082540988922, -0.0047941445372998714, 0.007793034892529249, -0.0016626501455903053, 0.004518736153841019, 0.01287278812378645, -3.883554745698348e-05, -0.019638992846012115, -0.0016856008442118764, 0.023338302969932556, 0.017911739647388458, 0.013920019380748272, 0.01064912136644125, -0.007813435979187489, 0.0033099998254328966, -0.0011322341160848737, -0.005514966323971748, 0.0012894888641312718, -0.010621920228004456, 0.019122175872325897, 0.016225289553403854, -0.006276589352637529, -0.011852757073938847, 0.01890457049012184, 0.0040835230611264706, -0.0036517099943012, 0.007942639291286469, 0.015055653639137745, 0.013144795782864094, -0.020618220791220665, -0.01603488251566887, 0.013491606339812279, 0.01479724608361721, -0.024426335468888283, 1.237849846802419e-05, 0.012777585536241531, 0.0072014168836176395, -0.010941529646515846, 0.010424714535474777, -0.013688812963664532, 0.006160985678434372, -0.007317020557820797, 0.014185227453708649, 0.009153075516223907, 0.006650600582361221, 0.026928812265396118, 0.00787463691085577, 0.011138735339045525, 0.030328914523124695, 1.5194207662716508e-05, 0.010689922608435154, 0.020645422860980034, -0.009459084831178188, 0.021828658878803253, -0.017122916877269745, 0.01613008603453636, -0.007398623041808605, -0.027636032551527023, 0.010839526541531086, 0.0038047146517783403, 0.00428412901237607, -0.027608832344412804, 0.006650600582361221, -0.025119956582784653, -0.0018547559157013893, -0.03881556913256645, -0.009887497872114182, 0.009901098906993866, 0.033076196908950806, -0.024412736296653748, -0.025106357410550117, -0.007017811760306358, 0.014906049706041813, -0.009731093421578407, -9.058085561264306e-05, -0.006262988783419132, -0.028370454907417297, 0.020563820376992226, -0.003245397936552763, -0.006582598201930523, 0.003933918662369251, 0.0038353155832737684, -0.012838787399232388, 0.023923121392726898, 0.01993820071220398, -0.007065413054078817, -0.01991100050508976, -0.010499516502022743, 0.02191026136279106, 0.02407272532582283, 0.006021581590175629, 0.010424714535474777, -0.010377112776041031, -0.02314789779484272, -0.008228247985243797, -0.011852757073938847, -0.008269049227237701, -0.008595459163188934, -0.002162465127184987, 0.01626609079539776, -0.006184786558151245, -0.009112274274230003, -0.002551776822656393, -0.011016331613063812, -0.005810775328427553, 0.0014399434439837933, -0.01358000934123993, -0.017041314393281937, -0.007942639291286469, 6.82145546306856e-05, -0.014470836147665977, 0.013593609444797039, 0.016293291002511978, 0.017449326813220978, -0.0035973084159195423, -0.0005095903761684895, -3.070717502851039e-05, -0.015450065955519676, 0.0036279093474149704, -0.004651340190321207, -0.009459084831178188, 0.016116484999656677, -0.006688001565635204, 0.010655920952558517, -0.0030005904845893383, 0.019543789327144623, -0.029893701896071434, -0.011424344033002853, 0.00855465792119503, 0.012219968251883984, 0.014525237493216991, 0.007969840429723263, 0.013892819173634052, 0.023732716217637062, 0.025242360308766365, -0.03100893460214138, 0.009397882968187332, -0.027173619717359543, -0.00038931172457523644, -0.005103553645312786, -0.006004581227898598, 0.01641569472849369, -0.024643942713737488, 0.015232458710670471, 0.0011551848147064447, 0.0009554288117215037, -0.001322639873251319, 0.009547487832605839, -0.006640400271862745, -0.015885278582572937, -0.012131565250456333, -0.009513487108051777, -0.01785733737051487, 0.008309850469231606, -0.010798725299537182, 0.0010795325506478548, 0.017177317291498184, -0.006977010518312454, 0.006599599029868841, 0.01939418539404869, -0.0018802566919475794, -0.01950298808515072, 0.0018377554370090365, 0.013362403027713299, -0.0183197520673275, 0.010989131405949593, -0.005341561045497656, -0.02320230007171631, 0.00956788845360279, 0.0013923419173806906, 0.009703892283141613, -0.028914472088217735, -0.0040461220778524876, -0.02471194416284561, 0.004960749763995409, 0.01811574585735798, 0.012661981396377087, 0.01377041544765234, 0.007432624232023954, 0.023977523669600487, 0.008847067132592201, 0.011628350242972374, -0.007609429303556681, -0.0006081933388486505, 0.01953018829226494, -0.005984180606901646, -0.02918647974729538, -0.010118705220520496, -0.008955869823694229, -0.0035633074585348368, 0.008051442913711071, 0.003695911495015025, -0.024548739194869995, -0.007310220506042242, -0.01018670666962862, -0.005361961666494608, 0.019081374630331993, 0.0044949352741241455, -0.007589028682559729, 0.018510157242417336, 0.011444744653999805, 0.006086183246225119, 0.014035623520612717, -0.004916548263281584, -0.01598048210144043, 0.011594349518418312, 0.00018498682766221464, 0.002670780522748828, -0.018183747306466103, -0.013423604890704155, -0.008765464648604393, -0.005752973258495331, 0.011975160799920559, 0.0022797686979174614, 0.020047003403306007, -0.0056203692220151424, 0.017231719568371773, 0.0257455762475729, -0.006514596287161112, 0.0034103028010576963, -0.006773004308342934, 0.0021131637040525675, -0.029376884922385216, 0.001272488385438919, 0.012457975186407566, -0.03288578987121582, 0.013144795782864094, -0.00025840778835117817, 0.02245427668094635, 0.010356712155044079, 0.027581632137298584, 0.010594719089567661, -0.008187446743249893, -0.001527496031485498, -0.002505875425413251, 0.0033899021800607443, 0.0005163905443623662, -0.02433113381266594, -0.014634041115641594, 0.009282279759645462, -0.008887868374586105, 0.00020868128922302276, 0.0010914328740909696, -0.009778695181012154, -0.020359814167022705, 0.007908638566732407, -0.005015151109546423, -0.02918647974729538, -0.006616599392145872, 0.007779434323310852, 0.016660502180457115, -0.009234678000211716, 0.01626609079539776, -0.015463666059076786, -0.012253968976438046, 0.010825926437973976, -0.02453514002263546, 0.012491976842284203, 0.006320790387690067, 0.002101263264194131, -0.009010271169245243, 0.002959789242595434, -0.014130826108157635, -0.00048578964197076857, 0.01239677332341671, 0.0025891780387610197, -0.011131935752928257, -0.020645422860980034, 0.0006485695485025644, -0.0011339341290295124, -0.013525607995688915, -0.00497775012627244, -0.00021208138787187636, 0.0017315022414550185, 0.011907159350812435, -0.007997040636837482, -0.019788596779108047, 0.004953949246555567, 0.011050333268940449, 0.00010635945363901556, -0.009669891558587551, -0.0012206367682665586, -0.013450805097818375, -0.01808854565024376, 0.010329511016607285, -0.026684004813432693, 0.021407045423984528, 0.015762874856591225, 0.010322711430490017, -0.003808114677667618, -0.009561087936162949, -0.0013897918397560716, -0.00654519721865654, 0.009112274274230003, 0.02332470379769802, -0.02777203731238842, -0.004681941121816635, 0.023161498829722404, -0.012566778808832169, -0.00904427282512188, 0.0035973084159195423, 0.020006202161312103, -0.017041314393281937, 0.023256700485944748, -0.018564559519290924, -0.013376003131270409, 0.0008993271039798856, 0.010628720745444298, 0.010703522711992264, -0.03416423127055168, -0.004600338637828827, 0.014647641219198704, -0.021230239421129227, 0.0001482232182752341, 0.017911739647388458, -0.011941160075366497, -0.0051613557152450085, -0.009139475412666798, 0.008058242499828339, -0.0025177758652716875, 0.00428412901237607, 0.0031178940553218126, 0.017762135714292526, -0.011743954382836819, 0.015463666059076786, -0.004460934549570084, -0.014117226004600525, -0.012430774979293346, -0.0010956830810755491, -0.007786234840750694, -0.018129346892237663, 0.012145166285336018, -0.008609059266746044, -0.019584590569138527, 0.009499886073172092, 0.00882666651159525, -0.016102885827422142, -0.006844406481832266, -0.004124324303120375, -0.0067492034286260605, -0.02291669137775898, 0.011533147655427456, -0.001836055307649076, 0.012362772598862648, 0.0008368502021767199, -0.015096454881131649, -0.001418692758306861, 0.008119444362819195, 0.00996910035610199, 0.02522876113653183, -0.005589768290519714, -0.010295510292053223, 0.01664690114557743, -0.00877226423472166, -0.00034362287260591984, -0.019407784566283226, 0.005368761718273163, 0.006446594372391701, 0.015545268543064594, -0.019026974216103554, -0.020591020584106445, -0.010152705945074558, 0.013022392988204956, -0.0009673291351646185, 0.010608320124447346, -0.012457975186407566, 0.023882320150732994, 0.015273259952664375, 0.006762803997844458, -0.020754225552082062, 0.012940790504217148, -0.0023613711819052696, -0.009690292179584503, 0.013022392988204956, 0.01682370714843273, -0.006014781538397074, 0.005443564150482416, -0.0016048484249040484, 0.012036362662911415, -0.0026163789443671703, 0.019339783117175102, -0.00904427282512188, -0.03342980891466141, 0.026017583906650543, 0.0034562041983008385, -0.0036585102789103985, -0.0031637954525649548, 0.00765703059732914, 0.013940420001745224, 0.00548436539247632, -0.007337421178817749, -0.015191657468676567, -0.0022797686979174614, 0.01788453944027424, -0.0017646532505750656, -0.0006302939727902412, 0.01572207361459732, -0.010519917123019695, -0.016810106113553047, -0.028887270018458366, 0.008432254195213318, 0.006069182883948088, -0.008704262785613537, -0.02207346446812153, -0.005875376984477043, 0.01028870977461338, -0.01855095848441124, -0.0026945811696350574, -0.007255818694829941, 0.032151367515325546, 0.011125135235488415, 0.0059331790544092655, 0.011023132130503654, 0.03152574971318245, 0.008765464648604393, -0.027432026341557503, -0.007459824904799461, 0.004161725286394358, 0.026833608746528625, 0.008316650986671448, -0.019230980426073074, 0.0012036362895742059, 0.02736402489244938, 0.006606399081647396, 0.0025126757100224495, 0.013505207374691963, -0.028016844764351845, -0.00017871789168566465, -0.009880698285996914, -0.026534399017691612, 0.010710323229432106, 0.006830805912613869, -0.016279689967632294, -0.0037401127628982067, -0.020767826586961746, 0.006426193751394749, -0.020237410441040993, -0.026452796533703804, 0.003111093770712614, -0.013607210479676723, -0.0027761836536228657, -0.008058242499828339, 0.008228247985243797, 0.011274740099906921, 0.020441416651010513, 0.035497069358825684, 0.024235930293798447, 0.026928812265396118, 0.0015393963549286127, 0.0021845658775418997, -0.013049593195319176, 0.0007348471553996205, 0.0030039905104786158, -0.01721811853349209, 0.008677061647176743, 0.01410362496972084, 0.002731982385739684, 0.018741365522146225, 0.016810106113553047, -0.015463666059076786, 0.0026639802381396294, -0.007276219315826893, 0.01904057338833809, -0.013022392988204956, 0.0068070050328969955, 0.01378401555120945, -0.02065902203321457, 0.0016847507795318961, 0.004389532376080751, 0.0044677346013486385, -0.0026384794618934393, 0.002296769293025136, -0.0015512967947870493, -0.016252489760518074, -0.025609571486711502, 0.04583338275551796, -0.0101595064625144, -0.00324709783308208, 0.0016975011676549911, -0.018020542338490486, 0.008051442913711071, 0.0032079967204481363, 0.01890457049012184, 0.011968361213803291, -0.011138735339045525, -0.0147836459800601, -0.02435833401978016, -0.0032011964358389378, -0.008520657196640968, -0.002531376201659441, 0.022522278130054474, 0.020155807957053185, 0.0007654480868950486, -0.015096454881131649, -0.018333353102207184, -0.003621109062805772, 0.006415993440896273, -0.005875376984477043, -0.0008121994906105101, -0.023596711456775665, 0.029295282438397408, 0.007786234840750694, -0.015150857158005238, -0.019992602989077568, -0.014171627350151539, -0.00865666102617979, -0.0028203849215060472, 0.005021951161324978, 0.01883656717836857, 0.00554896704852581, 0.029757697135210037, -0.02577277645468712, -0.027350423857569695, 0.00637859245762229, -0.010635520331561565, -0.011437945067882538, -0.024004723876714706, 0.008575058542191982, -0.00382851529866457, -0.00554896704852581, -0.007262618746608496, -0.01670130342245102, -0.023229500278830528, 0.001919357804581523, 0.011682752519845963, -0.00472614262253046, 0.017150117084383965, 0.007711432408541441, -0.00370271154679358, -0.0048349457792937756, 0.007534627337008715, 0.005018551368266344, 0.0110707338899374, -0.0028339854907244444, -0.020305411890149117, -0.010281910188496113, -0.017435725778341293, -0.019298981875181198, -0.008690661750733852, 0.017408525571227074, -0.013954021036624908, -0.007337421178817749, 0.009894298389554024, 0.004709141794592142, 0.008296250365674496, -0.003488505259156227, 0.0044031329452991486, -0.01249877642840147, 0.011016331613063812, 0.019951801747083664, -0.038679566234350204, -0.010526717640459538, -0.006256188731640577, 0.006463594734668732, 0.005249758251011372, -0.011750753968954086, 0.015178057365119457, -0.003614309011027217, -0.01168955210596323, -0.004260328598320484, -0.001646499615162611, 0.016918910667300224, 0.03829875588417053, 0.019353384152054787, 0.016347693279385567, 0.003131494391709566, -0.01260077953338623, 0.014620441012084484, -0.004236527718603611, 0.007514226716011763, -0.02057741954922676, 0.010247908532619476, 0.009778695181012154, -0.0030940931756049395, 0.014661242254078388, 0.009316280484199524, -0.01600768230855465, -0.006902208086103201, -0.011444744653999805, -0.02826165221631527, -0.006303790025413036, 0.029458487406373024, 0.014906049706041813, -0.008955869823694229, 0.0020043603144586086, -0.0014730944531038404, -0.006463594734668732, 0.011981961317360401, -0.026942411437630653, 0.001552996807731688, -0.0136956125497818, -0.009731093421578407, 0.017639731988310814, 0.0013727913610637188, -0.0201422069221735, 0.002101263264194131, -0.005385762546211481, -0.006572397891432047, -0.004188926424831152, -0.005712172016501427, 0.004936948884278536, 0.0027489829808473587, 0.018129346892237663, -0.019747795537114143, 0.004491535481065512, -0.004780543968081474, 0.003418802982196212, 0.014130826108157635, -0.00995550025254488, 0.00329809938557446, -0.004947149194777012, -0.024467136710882187, -0.006589398719370365, -0.012043163180351257, 0.003260698402300477, 0.003927118610590696, 0.009533887729048729, 0.0013268899638205767, -0.008840266615152359, 0.01716371811926365, 0.0031331945210695267, -0.009357081726193428, -0.002541576512157917, -0.016660502180457115, -0.0019686592277139425, 0.019570989534258842, 0.023651113733649254, 0.009343481622636318, 0.02970329485833645, 0.020822227001190186, -0.014443635009229183, 0.009731093421578407, 0.005542166996747255, 0.00917347613722086, 0.008813065476715565, -0.015218858607113361, 0.014402833767235279, -0.007255818694829941, -0.005106953904032707, -0.015123656019568443, 0.0007263469160534441, 0.0044303336180746555, -0.019557390362024307, -0.030383314937353134, -0.0016890008701011539, -0.016170887276530266, 0.010948330163955688, -0.01762613095343113, 0.005708772223442793], "c01cad1e-baf0-4514-b6ab-3df8dc973827": [-0.03674878180027008, 0.011372996494174004, -0.004976112861186266, 0.014890770427882671, 0.0031369663774967194, -0.041147708892822266, 0.002423165598884225, 0.023060202598571777, -0.03636626899242401, 0.02760940231382847, 0.014521916396915913, 0.013483661226928234, -0.03584713861346245, -0.04901659116148949, 0.009269163012504578, 0.032623082399368286, -0.03049192763864994, 0.012486389838159084, 0.03939906507730484, -0.026680435985326767, 0.09743209183216095, -0.0063251624815166, -0.04696740210056305, -0.002114079659804702, -0.024453651160001755, -0.00024035274691414088, -0.007486368995159864, 0.006444698199629784, -0.03311488777399063, 0.021543802693486214, 0.011434472166001797, 0.020082049071788788, -0.0004708864726126194, 0.014822464436292648, 0.007144837640225887, 0.003671462880447507, 0.029016511514782906, 0.031940020620822906, 0.013551967218518257, -0.007069700863212347, -0.06601119786500931, 0.034235112369060516, -0.012718630954623222, 0.0061065820045769215, -0.04073787108063698, 0.01706290990114212, 0.04144825413823128, -0.012411252595484257, -0.030901765450835228, 0.00965167861431837, 0.010068346746265888, -0.04226792976260185, -0.015368915162980556, 0.006243194919079542, -0.00270492909476161, -0.04797833785414696, -0.0050580804236233234, 0.0674319639801979, 0.0037739223334938288, -0.03866136074066162, 0.0035792493727058172, 0.0008090026094578207, 0.009556049481034279, 0.015368915162980556, -0.06267785280942917, -0.00020619960559997708, 0.028278803452849388, 0.01571044698357582, -0.061803530901670456, -0.03352472558617592, -0.005041004158556461, 0.04265044629573822, -0.0017366873798891902, 0.04024606570601463, -0.003177950158715248, -0.002788604237139225, 0.0009562880150042474, 0.006069013848900795, 0.001089485245756805, 0.012206333689391613, -0.0431968979537487, -0.004986358806490898, 0.011229554191231728, -0.015355253592133522, 0.05278709903359413, 0.025696825236082077, 0.0032496715430170298, -0.01702192611992359, -0.024180425330996513, -0.02790994942188263, -0.0013063577935099602, 0.018907180055975914, 0.034289754927158356, -0.021434513852000237, 0.0255875363945961, 0.018606632947921753, -0.04434444382786751, 0.0074795386753976345, 0.03256843984127045, -0.03904387354850769, 0.008982276543974876, 0.050082169473171234, -0.017513731494545937, 0.011420811526477337, -0.02266402542591095, 0.012185841798782349, -0.004200836643576622, -0.0426231250166893, 0.008893478661775589, 0.06797841936349869, 0.03188537433743477, -0.029972799122333527, -0.011461795307695866, 0.002030404517427087, -0.014822464436292648, -0.04945375397801399, -0.022172221913933754, 0.013005517423152924, -0.012240487150847912, -0.055300772190093994, -0.016666734591126442, 0.009241840802133083, 0.015888042747974396, 0.002853495068848133, -0.010293757542967796, -0.0327870175242424, -0.0015923903556540608, -0.03387991711497307, 0.04568324610590935, -0.011256876401603222, -0.030901765450835228, -0.02002740278840065, -0.014166723936796188, 0.0055464706383645535, -0.04912588372826576, -0.02654382400214672, 0.04109306260943413, 0.06202210858464241, -0.04196738451719284, 0.07087460160255432, -0.02788262628018856, -0.02588808350265026, -0.0199590977281332, 0.012274639680981636, -0.00696382625028491, -0.004016409628093243, -0.04494553804397583, 0.03286898508667946, -0.0006433598464354873, 0.01838805340230465, -0.030601216480135918, -0.017582038417458534, 0.021229594945907593, 0.006478851195424795, -0.005642099305987358, 0.017978215590119362, -0.0007748494390398264, -0.014877109788358212, -0.015478204935789108, -0.016338864341378212, 0.01838805340230465, -0.03972693532705307, -0.01460388395935297, 0.0246585700660944, 0.027431804686784744, 0.015614817850291729, 0.02464490942656994, 0.018210455775260925, -0.04057393595576286, 0.011284198611974716, 0.028797930106520653, -0.03486352786421776, 0.0052664149552583694, 0.02524600364267826, 0.0163935087621212, -0.023155830800533295, 0.016297880560159683, 0.0009127427474595606, 0.02392086200416088, -0.037185944616794586, -0.013709072023630142, 0.008394842967391014, -0.020860740914940834, -0.011898955330252647, -0.02035527303814888, 0.03836081176996231, 0.02393452264368534, 0.010416708886623383, 0.0020150355994701385, -0.0038729666266590357, -0.015614817850291729, -0.006649617105722427, -0.022800639271736145, 0.019180405884981155, -0.005191277712583542, -0.001062162802554667, -0.011092941276729107, -0.02366129867732525, 0.01969953253865242, -0.00983610562980175, 0.009890750050544739, -0.0219536405056715, -0.022226866334676743, 0.03699468448758125, -0.02192631922662258, 0.0005127241020090878, -0.013217266649007797, -0.0187432449311018, 0.03322417661547661, -0.04188541695475578, 0.04000016301870346, -0.00852462463080883, 0.004412586335092783, 0.0012389052426442504, -0.022827960550785065, 0.017827941104769707, -0.017882585525512695, 0.03745916858315468, 0.005847018212080002, -0.00998637918382883, -0.022377140820026398, 0.003790999064221978, -0.013476830907166004, -0.009528727270662785, -0.03505478799343109, -0.03584713861346245, 0.00745904678478837, 0.021871672943234444, -0.04128431901335716, 0.0035587577149271965, 0.04327886551618576, 0.01739078015089035, -0.025669502094388008, -0.011133925057947636, -0.004914637189358473, 0.031393568962812424, -0.010041024535894394, 0.015095689333975315, 0.017240507528185844, -0.019767839461565018, -0.009255502372980118, 0.059235211461782455, 0.03538265824317932, -0.0020030818413943052, 0.005628438200801611, 0.0018032860243692994, 0.01129102986305952, 0.0015146919758990407, 0.026530161499977112, -0.017814280465245247, 0.00581969553604722, -0.004556029569357634, -0.0008896894287317991, -0.04467231407761574, -0.02728153206408024, 0.04366137832403183, 0.019084777683019638, 0.00348532828502357, -0.019112098962068558, -0.03540997952222824, -0.0034392215311527252, -0.009487743489444256, -0.01195360068231821, -0.009262332692742348, 0.014480932615697384, -0.004009579308331013, 0.014726835303008556, -0.03153018280863762, 0.003654386382550001, 0.040191419422626495, -0.05508219078183174, -0.01673503965139389, 0.011646222323179245, -0.02491813339293003, -0.029590284451842308, 0.026639452204108238, 0.026502840220928192, -0.0024487804621458054, 0.014849786646664143, -0.0009836105164140463, -0.0019911283161491156, -0.010232281871140003, 0.009890750050544739, 0.03879797086119652, -0.010382555425167084, -0.02103833667933941, -0.008285553194582462, -0.017254168167710304, -0.03316953405737877, -0.013401693664491177, -0.006342238746583462, -0.018592972308397293, 0.006086090113967657, 0.03707665205001831, 0.03415314480662346, -0.04202202707529068, -0.009617525152862072, -0.015191318467259407, -0.017459087073802948, 0.003232595045119524, -0.028743285685777664, -0.018237778916954994, 0.016543783247470856, -0.005426934454590082, 0.042131319642066956, -0.008114786818623543, 0.021912656724452972, 0.023101186379790306, -0.041502900421619415, 0.016502799466252327, 0.031639471650123596, 0.0213798675686121, -0.014672190882265568, -0.013032839633524418, 0.0018579310271888971, 0.030246024951338768, 0.00409154687076807, -0.006601802539080381, -0.000735573354177177, -0.012028736993670464, 0.03404385223984718, 0.03412581980228424, -0.0557379312813282, 0.03183073177933693, 0.01543722115457058, -0.018633956089615822, 0.01572410762310028, -0.005488410126417875, -0.02855202928185463, -0.0298635084182024, -0.03180340677499771, -0.0073156035505235195, -0.003316270187497139, -0.006038276012986898, -0.02521868236362934, -0.03308756649494171, -0.003985671792179346, -0.060218822211027145, -0.013162621296942234, -0.022759655490517616, 0.0034494674764573574, -0.025491906329989433, -0.014139401726424694, 0.007370248436927795, 0.04163951426744461, 0.011543762870132923, -0.03898923099040985, 0.011236384510993958, -0.027404483407735825, -0.0008051603799685836, 0.0007983297691680491, 0.009829274378716946, 0.0064959279261529446, 0.03969961404800415, 0.009487743489444256, 0.005969969555735588, 0.012493220157921314, 0.01702192611992359, 0.012062890455126762, -0.04702204838395119, 0.026311581954360008, -0.0008542555151507258, -0.02424873225390911, -0.005126386880874634, -0.00022370308579411358, 0.05612044781446457, -0.0014258937444537878, -0.009706323966383934, 0.022841623052954674, -0.02560119703412056, -0.003125012619420886, 0.020806094631552696, 0.03404385223984718, -0.007575167343020439, -0.02423507161438465, -0.017295151948928833, 0.014713174663484097, -0.015204980038106441, -0.03710397705435753, 0.01998641900718212, 0.008012327365577221, 0.024385344237089157, 0.009528727270662785, -0.034016530960798264, 0.0498909130692482, 0.008954954333603382, 0.007602490019053221, 0.028388094156980515, 0.033688660711050034, 0.015546510927379131, -0.019890790805220604, 0.01803286001086235, -0.018852535635232925, -0.038852617144584656, -0.020751450210809708, 0.03972693532705307, 0.0005575500545091927, 0.004702887963503599, 0.01775963418185711, -0.06541009992361069, 0.02560119703412056, -0.008777357637882233, 0.005566962528973818, -0.015286947600543499, 0.004316957201808691, -0.0504646860063076, -0.014180385507643223, 0.013306064531207085, 0.013094315305352211, 0.0007419770699925721, 0.003620233153924346, 0.013435847125947475, -1.2840781892009545e-05, 0.03286898508667946, 0.02521868236362934, -0.013196774758398533, 0.013224096968770027, -0.008435826748609543, -0.037240587174892426, -0.01605197787284851, 0.01831974647939205, 0.0709838941693306, 0.0014626083429902792, 0.0460384376347065, 0.027103934437036514, -0.006909180898219347, 0.025532890111207962, -0.007527352776378393, 0.004880484193563461, 0.0014967615716159344, -0.017937231808900833, 0.05677618831396103, -0.006523250602185726, -0.019248712807893753, 0.02366129867732525, -0.02855202928185463, -0.002974738832563162, 0.008586100302636623, 0.02333342842757702, 0.03702200949192047, 0.021557465195655823, 0.0003844363382086158, 0.0020184507593512535, 0.011202231049537659, -0.03188537433743477, -0.05945379287004471, -0.044098541140556335, 0.0010356941493228078, -0.0018357314402237535, 0.016803346574306488, -0.02948099374771118, 0.01898914761841297, -0.05062862113118172, 0.013524645008146763, 0.004074470140039921, 0.02360665239393711, 0.0018493927782401443, -0.038907263427972794, -0.006745245773345232, -0.03385259583592415, -0.0065983873791992664, -0.000736854097340256, 0.0003263759717810899, 0.024207748472690582, -0.009569711051881313, -0.013189944438636303, 0.02065582200884819, 0.024740537628531456, 0.015806075185537338, 0.009890750050544739, -0.0069228424690663815, 0.027144918218255043, -0.011912616901099682, 0.025382617488503456, 0.007138007320463657, -0.012889396399259567, 0.0068784430623054504, -0.005553301423788071, 0.013319726102054119, 0.012042398564517498, 0.009726815856993198, -0.03505478799343109, -0.020136693492531776, 0.0037090315017849207, -0.03830616548657417, 0.017554715275764465, 0.01003419328480959, -0.013224096968770027, 0.02132522314786911, -0.007978174835443497, 0.028360771015286446, -0.05177616700530052, 8.132717630360276e-05, 0.0036646323278546333, -0.006946749519556761, -0.03702200949192047, 0.016256896778941154, -0.009521896950900555, -0.03710397705435753, -0.03191269934177399, 0.023374412208795547, -0.03450833633542061, 0.00682038301602006, 0.0005596846458502114, -0.014877109788358212, -0.01195360068231821, -0.054043933749198914, -0.027472788468003273, -0.010116160847246647, 0.011120263487100601, -0.021407190710306168, 0.0028978942427784204, -0.03286898508667946, -0.0034511752892285585, -0.01930335722863674, -0.007192652206867933, -0.03617500886321068, 0.009549219161272049, 0.02269134856760502, 0.006031445227563381, -0.003937857691198587, 0.02300555817782879, -0.034317079931497574, 0.0026827293913811445, -0.015560172498226166, -0.0033196855802088976, -0.010997312143445015, -0.013032839633524418, 0.027705030515789986, -0.0022148313000798225, 0.0033674999140203, 0.017117556184530258, 0.0028637410141527653, 0.009084735997021198, 0.0076434738002717495, 0.002535870997235179, 0.026393549516797066, -0.0032155185472220182, 0.029699573293328285, 0.04387995973229408, 0.0013336802367120981, 0.017117556184530258, 0.02039625681936741, -0.026448193937540054, 0.005153709556907415, 0.01706290990114212, -0.01002053264528513, 0.016653072088956833, -0.03344275802373886, -0.0011714528081938624, 0.019180405884981155, -0.015669463202357292, -0.039890870451927185, -0.010587474331259727, 0.006352484691888094, -0.018633956089615822, 0.009289654903113842, -0.014849786646664143, 0.0034392215311527252, -0.014959077350795269, -0.026133986189961433, 0.021065659821033478, 0.0065983873791992664, 0.019590243697166443, -0.021393530070781708, -0.015027383342385292, -0.014221369288861752, 0.013026009313762188, -0.006338823586702347, 0.015888042747974396, -0.001688872929662466, -0.013176282867789268, 0.02688535489141941, 0.015669463202357292, -0.026188630610704422, 0.01702192611992359, -0.02363397553563118, 0.013360709883272648, -0.04393460601568222, -0.029644928872585297, 0.0342077873647213, -0.0037978296168148518, -0.004149606917053461, -0.006454944144934416, -0.009023260325193405, -0.03273237496614456, -0.0387706495821476, -0.00822407752275467, -0.011926277540624142, 0.02269134856760502, 0.006472020875662565, 0.02819683589041233, 0.02028696797788143, -0.013873007148504257, -0.02299189567565918, 0.02069680579006672, 0.006284178700298071, 0.0034511752892285585, 0.017199523746967316, 0.008435826748609543, 0.027117596939206123, 0.015683123841881752, 0.022431785240769386, -0.020532870665192604, -0.0386340357363224, 0.02336074970662594, -0.005949477665126324, -0.013394863344728947, -0.023893538862466812, -0.006656447891145945, -0.034972820430994034, 0.013429015874862671, 0.017841601744294167, 0.009706323966383934, 0.0386340357363224, 0.02524600364267826, 0.008312875404953957, 0.029262414202094078, 0.0269399993121624, -0.010266435332596302, 0.0055430554784834385, -0.0030379220843315125, 0.04226792976260185, -0.03680342808365822, 0.04161218926310539, -0.0075478446669876575, -0.024754198268055916, 0.004313542041927576, -0.009965887293219566, 0.004836085252463818, 0.004419416654855013, 0.03642091155052185, 0.0077869170345366, -0.021147627383470535, 0.04502750560641289, 0.0029354626312851906, 0.0275820791721344, 0.01064211968332529, -0.02953563816845417, -0.03642091155052185, -0.03672146052122116, 0.011728189885616302, -0.012301962822675705, 0.03437172248959541, -0.010730917565524578, 0.009378453716635704, -0.012739122845232487, 0.013907160609960556, 0.024822505190968513, 0.01801919937133789, -0.048743367195129395, -0.007814239710569382, 0.0071584987454116344, 0.017923569306731224, 0.0220219474285841, -0.02980886399745941, 0.005594285205006599, 0.008627084083855152, 0.030765151605010033, -0.0032804093789309263, 0.001312334556132555, -0.016612088307738304, 0.01067627314478159, 0.02034161239862442, -0.015532850287854671, 0.013347048312425613, 0.007363417651504278, -0.024125780910253525, 0.04073787108063698, -0.01445361040532589, 0.009275994263589382, 0.0038149061147123575, 0.03442636877298355, 0.0017230261582881212, 0.00564551493152976, -0.009795121848583221, -0.005788957700133324, 0.0015906826592981815, -0.017486410215497017, -0.019084777683019638, 0.005666006356477737, 0.012896226719021797, -0.023128509521484375, 0.006704261992126703, -0.0028244650457054377, 0.001551406574435532, 0.021803367882966995, 0.038879938423633575, -0.010765071026980877, 0.0193853247910738, 0.009426267817616463, 0.008230907842516899, -0.010696765035390854, 0.0074317241087555885, 0.02292359061539173, 0.007165329530835152, -0.011058787815272808, 0.026379888877272606, 0.020929045975208282, 0.0007880838238634169, -0.01743176393210888, -0.0006898934952914715, -0.01017763651907444, 0.0027305439580231905, 0.008367519825696945, 0.006413960363715887, -0.028606673702597618, -0.037841685116291046, 0.009166703559458256, 0.008661237545311451, 0.00771861057728529, 0.0006139027536846697, 0.005843603052198887, 0.006540326867252588, -0.0058231111615896225, 0.022786976769566536, 0.01064211968332529, 0.0008828587597236037, 0.032049309462308884, 0.00016372163372579962, -0.009733646176755428, 0.01676236279308796, -0.013121637515723705, -0.04926249384880066, 0.0007325849146582186, -0.010751409456133842, 0.021434513852000237, -0.008449487388134003, 0.027418144047260284, 0.009194026701152325, -0.013668088242411613, -0.004142776597291231, -0.011229554191231728, -0.0033384698908776045, -0.010792393237352371, -0.011086110956966877, -0.003418729640543461, 0.005348382517695427, 0.031366247683763504, -0.05546470731496811, -0.005099064204841852, -0.0014907846925780177, 0.02102467603981495, 0.005392781458795071, -0.009016430005431175, 0.00745904678478837, 0.0315028615295887, 0.0043955096043646336, 0.017213184386491776, 0.007520522456616163, 0.05841553583741188, -0.033989209681749344, 0.038196876645088196, 0.024740537628531456, -0.0029405856039375067, 0.0016880191396921873, 0.016612088307738304, 0.013073823414742947, 0.014098417945206165, 0.03767774999141693, 0.03551926836371422, 0.015163996256887913, 0.036612171679735184, -0.02364763617515564, 0.013401693664491177, -0.002761281793937087, -0.00028154999017715454, 0.044098541140556335, 0.011605238541960716, -0.006902350578457117, 0.037568457424640656, 0.02527332678437233, 0.012541034258902073, -0.005587454419583082, -0.004344279877841473, 0.021912656724452972, 0.03415314480662346, -0.0046755652874708176, -0.04565592110157013, 0.0019296526443213224, -0.014330659061670303, -0.024453651160001755, -0.0036134026013314724, -0.02325146086513996, 0.00426572747528553, 0.0059358165599405766, 0.03117498941719532, 0.02882525324821472, -0.003644140437245369, 0.0038285674527287483, 0.02368861995637417, 0.03251379355788231, -0.03931709751486778, -0.014166723936796188, 0.010730917565524578, -0.010485014878213406, 0.008169432170689106, -0.04986359179019928, 0.0036612169351428747, 0.006683770101517439, -0.0031284280121326447, -0.043114930391311646, 0.029699573293328285, 0.04628434032201767, 0.003780753118917346, -0.01897548697888851, 0.013046501204371452, 0.012561526149511337, 0.008545116521418095, 0.00026148499455302954, 0.015041044913232327, 0.009487743489444256, -0.027390820905566216, 0.017964553087949753, -0.008442657068371773, -0.0005088818725198507, -0.014180385507643223, 0.008394842967391014, 0.017158539965748787, -0.013353879563510418, 0.02200828678905964, 0.008114786818623543, 0.010102500207722187, -0.01801919937133789, -0.02725420892238617, -0.019494615495204926, 0.010122992098331451, -0.02532797120511532, 0.007500030566006899, 0.007281450089067221, 0.018770568072795868, -0.0243033766746521, 0.005631853360682726, 0.04128431901335716, -0.011133925057947636, 0.011113433167338371, -0.009706323966383934, -0.01195360068231821, -0.021858012303709984, 0.03472691774368286, -0.020218661054968834, -0.024781521409749985, -0.0353553332388401, 0.016967281699180603, 0.01543722115457058, -0.005105894990265369, 0.0029030172154307365, -0.012916718609631062, 0.03669413924217224, -0.012896226719021797, 0.004084716085344553, -0.028278803452849388, -0.019822483882308006, -0.013504153117537498, -0.024849828332662582, 0.008620253764092922, -0.00194672925863415, 0.014016450382769108, -0.011202231049537659, 0.042814381420612335, -0.0044501544907689095, 0.02662579156458378, -0.015314269810914993, -0.02560119703412056, 0.014330659061670303, 0.005809449590742588, -0.01510935090482235, -0.0019211143953725696, 0.010621627792716026, -0.011454964056611061, -0.005737727973610163, 0.02366129867732525, 0.03666681423783302, -0.011051957495510578, -0.00805331114679575, 0.0005827380227856338, -0.0070560397580266, -0.0031045207288116217, -0.03051924891769886, -0.023073863238096237, -0.006967241410166025, 0.006680354941636324, -0.009870258159935474, 0.00804648082703352, -0.06000024452805519, -0.0030993977561593056, 0.01767766661942005, -0.01841537468135357, 0.0007488076807931066, 0.0004896707250736654, -0.02131156250834465, 0.007875715382397175, 0.003859305288642645, -0.03871600329875946, -0.02062849886715412, -0.021461835131049156, 0.013107976876199245, 0.003978841472417116, -0.02170773781836033, -0.010273265652358532, -0.0031369663774967194, -0.015614817850291729, -0.026038356125354767, 0.006222703028470278, -0.005307398736476898, -0.01460388395935297, 0.01833340711891651, 0.018224118277430534, -0.016243236139416695, -0.0081967543810606, -0.007042378187179565, -0.014057434163987637, -0.027185901999473572, -0.035246044397354126, 0.0070355478674173355, 0.03942639008164406, 0.03732255473732948, 0.03142089396715164, -0.000504185794852674, -0.009665340185165405, 0.01228147093206644, 0.028114868327975273, 0.004306711256504059, -0.006092920899391174, -0.0013857638696208596, -0.02038259617984295, 0.003463128814473748, 0.00027642701752483845, 0.022090254351496696, 0.023388072848320007, -0.0034409293439239264, 0.023538347333669662, 0.015983670949935913, -0.003985671792179346, 0.052049390971660614, -0.011933108791708946, -0.008538286201655865, -0.0026093001943081617, -0.04754117503762245, -0.01669405587017536, 0.0022950912825763226, -0.012117535807192326, 0.02266402542591095, -0.025409938767552376, -0.011174908839166164, -0.007219974417239428, -0.032923631370067596, 0.011386658065021038, -0.010054685175418854, 0.013408523984253407, 0.00852462463080883, 0.03838813304901123, 0.021735060960054398, 0.004409170709550381, 0.005245923064649105, 0.025806115940213203, 0.00047899785568006337, 0.015655800700187683, 0.03964496776461601, -0.008469979278743267, 0.010047854855656624, -0.017240507528185844, -0.01543722115457058, 0.012698139064013958, -0.022076591849327087, 0.010628458112478256, -0.001904037781059742, 0.027964593842625618, -0.016202252358198166, 0.011776003986597061, -0.0026041772216558456, -0.041858091950416565, 0.006366146262735128, 0.001681188470683992, 0.005075157154351473, -0.008668067865073681, -0.017664005979895592, -0.018497342243790627, 0.0002834711049217731, -0.023046541959047318, 0.017308812588453293, 0.005717236083000898, -0.00697065657004714, -0.015355253592133522, -0.018470020964741707, -0.0029115555807948112, -0.008155770599842072, 0.0012175595620647073, 0.002399258315563202, 0.00870222132652998, 0.0022165391128510237, -0.009815613739192486, -0.0035450963769108057, -0.034344401210546494, 0.018292423337697983, -0.015464543364942074, -0.016967281699180603, -0.025983711704611778, 0.009904411621391773, -0.01807384379208088, 0.021407190710306168, -0.036612171679735184, 0.004573105834424496, 0.017896248027682304, -0.00013063577353022993, -0.03480888530611992, 0.015464543364942074, -0.007138007320463657, -0.0022199542727321386, 0.024139441549777985, -0.007998666726052761, -0.011769173666834831, -0.010737748816609383, -0.00360315665602684, -0.0035450963769108057, 0.002923509106040001, 0.000594264711253345, -0.056284382939338684, -0.03740452229976654, 0.026803387328982353, 0.005580623634159565, -0.008292383514344692, -0.013224096968770027, -0.00037184235407039523, -0.0004324641777202487, 0.013592950999736786, -0.0029969383031129837, 0.0014267475344240665, 0.021830689162015915, 0.013989128172397614, -0.018497342243790627, -0.024112120270729065, 0.019439969211816788, -0.027336176484823227, -0.030382636934518814, -0.05043736472725868, -0.01807384379208088, -0.05158490687608719, -0.014822464436292648, -0.022226866334676743, 0.010888022370636463, -0.006956995464861393, -0.014316997490823269, -0.01575143076479435, 0.0002625522902235389, -0.010737748816609383, 0.028661318123340607, -0.005679667927324772, 0.017950892448425293, -0.008763696998357773, 0.019412647932767868, -0.034590303897857666, 0.01799187622964382, 0.005280076060444117, -0.013319726102054119, -0.008142109960317612, -0.012821090407669544, 0.008592930622398853, -0.0007257543038576841, 0.004310126882046461, 0.010198128409683704, 0.023715943098068237, -0.0033248085528612137, -0.031694117933511734, 0.03125695884227753, -0.0059904614463448524, -0.006530080921947956, 0.02594272792339325, 0.006793060339987278, -0.019194066524505615, 0.02364763617515564, 0.009952225722372532, 0.010327911004424095, 0.007541014347225428, 0.00018122511391993612, -0.007301941979676485, 0.007916699163615704, -0.012588849291205406, 0.02031428925693035, -0.007663965690881014, 0.026366226375102997, -0.007766425143927336, -0.009617525152862072, 0.0060997516848146915, -0.04300563782453537, -0.0027442050632089376, 0.019877130165696144, 0.01394131314009428, -0.012745953164994717, -0.004460400436073542, -0.014549239538609982, 0.00466190418228507, 0.0057104057632386684, 0.008572438731789589, 0.00402324041351676, 0.0002587100607343018, -0.018825212493538857, 0.03713129833340645, 0.01974051631987095, 0.023128509521484375, 0.02590174414217472, -0.01101097371429205, 0.01524596381932497, 0.011605238541960716, 0.028142191469669342, 0.025710485875606537, 0.006038276012986898, -0.012431744486093521, -0.010888022370636463, 0.023770587518811226, 0.03275969624519348, -0.0038900431245565414, 0.02493179589509964, 0.01769132912158966, -0.0039515187963843346, 0.03215860202908516, 0.020082049071788788, 0.0122951315715909, -0.00150103063788265, 0.026338905096054077, -0.017322475090622902, -0.011591576971113682, -0.020833417773246765, 0.006854536011815071, -0.044453732669353485, -0.011687206104397774, -0.008073803037405014, 0.013558798469603062, 0.008647575974464417, 0.0034221450332552195, 0.024795182049274445, 0.0036578017752617598, 0.013073823414742947, 0.016297880560159683, 0.0010698472615331411, -0.010587474331259727, 0.00983610562980175, -0.015000061132013798, -0.008203585632145405, -0.009719984605908394, -0.0025478245224803686, -0.009590202942490578, 0.007780086249113083, 0.0070560397580266, 0.005187862552702427, 0.0016487430548295379, -0.006178303621709347, -0.012404422275722027, 0.010129822418093681, -0.022117575630545616, 0.0038285674527287483, -0.027103934437036514, -0.013476830907166004, -0.01266398560255766, -0.010341571643948555, -0.03939906507730484, 0.00025529475533403456, -0.008169432170689106, 0.015915365889668465, 0.0050512501038610935, -0.051748842000961304, -0.025450922548770905, 0.005160539876669645, 0.0001176148871309124, 0.007295111659914255, -0.00804648082703352, 0.014439948834478855, 0.0035997412633150816, 0.008954954333603382, -0.024713214486837387, -0.005474749021232128, -0.0004909514682367444, 0.026748742908239365, 0.03838813304901123, -0.004064224194735289, 0.030765151605010033, -0.01904379390180111, -0.008367519825696945, 0.0007748494390398264, -0.003582664765417576, 0.007172160316258669, -0.014945415779948235, 0.0012619586195796728, 0.0126161715015769, -0.0016282511642202735, -0.0006173180881887674, -0.0506012998521328, 0.004381848499178886, -0.018934503197669983, 0.014098417945206165, -0.008879817090928555, -0.013162621296942234, -0.03051924891769886, 0.0006540326867252588, 0.007042378187179565, 0.013210436329245567, 0.006372976582497358, -0.01524596381932497, 0.00984976626932621, 0.007527352776378393, -0.0009801952401176095, 0.010867530480027199, 0.0022558150812983513, -0.018210455775260925, 0.0054918257519602776, -0.021898996084928513, -0.0011851141462102532, -0.014016450382769108, -0.004620920401066542, -0.032049309462308884, -0.0007910722051747143, 0.0024965947959572077, -0.02129790000617504, -0.008968615904450417, -0.014316997490823269, 0.016311541199684143, 0.003531435038894415, -0.023538347333669662, -0.002817634493112564, -0.005406442563980818, 0.02367495931684971, -0.00969949271529913, 0.005816280376166105, -0.0007027009269222617, 0.020136693492531776, -0.016871653497219086, -0.010949498042464256, -0.012199503369629383, 0.01933068037033081, -0.01804652065038681, 0.02225418947637081, -0.004385263659060001, 0.013189944438636303, 0.019836146384477615, -0.007629812229424715, -0.0327870175242424, -0.004576521459966898, -0.017827941104769707, -0.01800553686916828, 0.011700866743922234, 0.0054918257519602776, 0.00077058031456545, -0.0012645201059058309, -0.010792393237352371, 0.00012103020708309487, 0.011871633119881153, -0.00789620727300644, 0.022199543192982674, -0.004460400436073542, 0.00014387011469807476, -0.009631186723709106, -0.007199482526630163, -0.0015403068391606212, -0.016844330355525017, -0.013340217992663383, -0.010847038589417934, -0.0008414480835199356, 0.02233615703880787, 0.010293757542967796, -0.015191318467259407, -0.01576509140431881, 0.026338905096054077, -0.006489097140729427, -0.002330952091142535, -0.031065700575709343, -0.009255502372980118, 0.006205626297742128, 0.02226785011589527, 0.015901703387498856, 0.0015701907686889172, -0.014521916396915913, 0.027486450970172882, 0.008476810529828072, 0.005908493883907795, -0.013592950999736786, 0.02102467603981495, -0.013176282867789268, -0.010396216996014118, -0.015560172498226166, 0.017868924885988235, 0.007192652206867933, 0.02094270847737789, 0.0015855596866458654, -0.028961865231394768, 0.012903057970106602, 0.0027629893738776445, -0.016939958557486534, -0.0003321393160149455, -0.031393568962812424, 0.00598021550104022, 0.016161268576979637, 0.007773255463689566, 0.002344613429158926, 0.0009981256444007158, -0.031338926404714584, 0.00899593811482191, -0.018429037183523178, -0.006605218164622784, 0.011181739158928394, 0.012062890455126762, -0.022390801459550858, 0.01506836712360382, -0.01441262662410736, -0.006328577641397715, 0.019262373447418213, -0.0028688639868050814, -0.02030062861740589, -0.002298506675288081, -0.01441262662410736, -0.018224118277430534, 0.005969969555735588, 0.01331289578229189, 0.011878463439643383, 0.021065659821033478, 0.0032291796524077654, -0.008900308981537819, -0.021885335445404053, 0.011113433167338371, 0.0012320746900513768, -0.019808823242783546, -0.012561526149511337, -0.004026655573397875, 0.019603904336690903, -0.01831974647939205, 0.02695366181433201, 0.006806721445173025, 0.004101792816072702, 0.018114827573299408, -0.013688580133020878, 0.017964553087949753, 0.008989107795059681, 0.024713214486837387, 0.0340711772441864, -0.013251420110464096, 0.027103934437036514, 0.015970010310411453, 0.004375017713755369, 0.015915365889668465, -0.009829274378716946, -0.008340197615325451, 0.0022199542727321386, -0.010525998659431934, -0.00024376806686632335, -0.019849807024002075, -0.004976112861186266, 0.004149606917053461, -0.013531475327908993, -0.005160539876669645, 0.026789726689457893, -0.0013900329358875751, -0.03289631009101868, -0.010054685175418854, 0.013654426671564579, 0.015505527146160603, 0.004077885299921036, -0.018756907433271408, -0.015491866506636143, -0.008312875404953957, -0.009788291528820992, -0.005365458782762289, 0.00965167861431837, -0.014972737990319729, 0.011939939111471176, -0.011133925057947636, -0.010621627792716026, 0.017459087073802948, -0.01607930101454258, -0.007903037592768669, 0.005413273349404335, 0.009576541371643543, -0.005703574977815151, -0.011605238541960716, -1.9317871192470193e-05, -0.0019194066990166903, -0.008545116521418095, 0.02270500920712948, -0.004159852862358093, 0.0031369663774967194, 0.029262414202094078, -0.033606693148612976, -0.002648576395586133, -0.005273245275020599, 0.02303287945687771, 0.0008931047050282359, -0.007998666726052761, 0.02622961439192295, -0.0023890123702585697, -0.005303983110934496, 0.0013840561732649803, -0.020901724696159363, 0.01672137901186943, -0.004187175538390875, 0.0108333770185709, -0.009091567248106003, -0.002634915057569742, -0.019617564976215363, -0.014043772593140602, -0.0003037495189346373, 0.005034173373132944, -0.0071516684256494045, -0.01740444265305996, -0.014890770427882671, 0.002850079908967018, 0.013483661226928234, -0.011830649338662624, 0.017486410215497017, -0.0036748782731592655, -0.006349069532006979, -0.002848372096195817, 0.00935796182602644, 0.004470646381378174, -0.00984293594956398, -0.03251379355788231, 0.008333367295563221, -0.005864094942808151, 0.0045628598891198635, -0.01612028479576111, -0.005269830115139484, 0.011564254760742188, -0.06606584042310715, -0.049043916165828705, 0.006676939781755209, 0.007124345749616623, -0.012315623462200165, -0.008551946841180325, 0.009235010482370853, -0.022240526974201202, -0.002482933457940817, 0.0025512399151921272, 0.010286927223205566, -0.0002484641154296696, 0.022513752803206444, -0.0031694117933511734, -0.031093021854758263, 0.007691287901252508, -0.03404385223984718, 0.013429015874862671, -0.005717236083000898, 0.005365458782762289, 0.007739102467894554, 0.028306126594543457, 0.021516481414437294, 0.009638017043471336, -0.008811511099338531, -0.014849786646664143, -0.002428288571536541, -0.0155738340690732, -0.018797891214489937, 0.009405775927007198, 0.017240507528185844, -0.008148940280079842, 0.018278762698173523, 0.0053347209468483925, 0.0047780247405171394, 0.02467223070561886, 0.005389366298913956, -0.004682396072894335, -0.001731564407236874, -0.02168041653931141, 0.0047233798541128635, -0.007329264655709267, -0.01101097371429205, 0.0027868966571986675, -0.025464585050940514, -0.006437867414206266, 0.00599729223176837, 0.03838813304901123, -0.018592972308397293, 0.020929045975208282, 0.012889396399259567, 0.004665319342166185, 0.03174876421689987, -0.007233635988086462, 0.04653024300932884, -0.015642140060663223, -0.020737789571285248, -0.008791019208729267, -0.027664046734571457, 0.014016450382769108, -0.024125780910253525, -0.0005315082962624729, 0.01612028479576111, -0.0315028615295887, 0.00805331114679575, -0.022786976769566536, 0.008299213834106922, 0.04071054607629776, 0.013852515257894993, 0.004508215002715588, 0.0307924747467041, 0.01643449254333973, -0.0008743205107748508, 0.019795162603259087, -0.01412574015557766, 0.029317058622837067, -0.03081979788839817, 0.02855202928185463, 0.006017784122377634, -0.015546510927379131, -0.004313542041927576, 0.015833398327231407, 0.01067627314478159, 0.02554655261337757, 0.0015309146838262677, -0.016297880560159683, -0.015601156279444695, -0.0137910395860672, -0.014002788811922073, 0.013449507765471935, -0.015696784481406212, -0.0003349142789375037, -0.016297880560159683, -0.013750055804848671, -0.01834706962108612, -0.008244569413363934, -0.011174908839166164, -0.004163268022239208, 0.001296111848205328, -0.0077595943585038185, -0.01266398560255766, -0.0023651053197681904, 0.0035348504316061735, -0.0021038337145000696, 0.014426288194954395, -0.007875715382397175, -0.004979528486728668, 0.005963138770312071, 0.008832002989947796, 0.017322475090622902, -0.009480913169682026, 0.041858091950416565, -0.0123292850330472, -0.027718691155314445, -0.012383930385112762, 0.008565608412027359, 0.03409849852323532, 0.02292359061539173, -0.015819735825061798, 0.0015736061614006758, -0.03448101505637169, 0.01200141478329897, -0.0022728918120265007, -0.014467271976172924, 0.024726876989006996, 0.02882525324821472, 0.003097690176218748, -0.0035690036602318287, -0.008114786818623543, 0.0190301313996315, -0.003756845835596323, 0.02061483822762966, -0.008756865747272968, -0.007875715382397175, 0.021844351664185524, -0.004071054980158806, -0.0052834912203252316, -0.010621627792716026, 0.02628425881266594, -0.012848412618041039, 0.010239112190902233, -0.0023873047903180122, -0.0033879918046295643, -9.00522354640998e-06, -0.0021636015735566616, -0.001994543708860874, 0.009235010482370853, -0.00822407752275467, -0.01031424943357706, 0.0023275366984307766, -0.00998637918382883, -0.003068659920245409, 0.007827900350093842, 0.008756865747272968, 0.007274619769304991, -0.037541136145591736, -0.0021038337145000696, -0.019480952993035316, 0.003982256632298231, 0.008121618069708347, -0.012411252595484257, 0.0005080280243419111, -0.018483681604266167, 0.04297831654548645, 0.0011244922643527389, 0.0034170220606029034, 0.007247297093272209, 0.016297880560159683, -0.01279376819729805, -0.009672170504927635, 0.011079279705882072, 0.003210395574569702, 0.0006335407961159945, -0.0015616525197401643, 0.015000061132013798, -0.0043340339325368404, -0.00950823538005352, -0.030109411105513573, -0.004651658236980438, 0.027377160266041756, -0.010389386676251888, -0.008770527318120003, 0.04816959425806999, 0.02655748464167118, -0.003907119855284691, -0.026707759127020836, -0.030382636934518814, 9.744318958837539e-05, 0.005163955502212048, -0.012438574805855751, 0.008729543536901474, 0.015519188717007637, 0.008483640849590302, 0.007076531648635864, -0.010935836471617222, 0.00566942198202014, -0.01838805340230465, 0.008135278709232807, 0.017896248027682304, -0.004637997131794691, 0.01736345887184143, 0.0078074089251458645, 0.017513731494545937, -0.009877089411020279, -0.013401693664491177, 0.01709023304283619, 0.016680395230650902, -0.0027459128759801388, 0.009255502372980118, 0.009398945607244968, 0.0023838893976062536, 0.00903692189604044, 0.004484307952225208, -0.012069720774888992, -0.04131164401769638, 0.019863467663526535, -0.0021584786009043455, 0.002269476419314742, -0.02265036478638649, -0.007588828448206186, -0.00492146797478199, -0.0007278888951987028, -0.0024129196535795927, -0.012547865509986877, 0.026038356125354767, -0.007875715382397175, -0.02918044663965702, -0.028633994981646538, -0.006796475499868393, 0.00838801171630621, -0.0167487021535635, 0.014849786646664143, -0.007233635988086462, -0.025806115940213203, 0.01673503965139389, 0.009856597520411015, -0.0225957203656435, -0.014863448217511177, 0.015450882725417614, -0.010184467770159245, 0.04106574133038521, 0.022718671709299088, 0.01801919937133789, 0.00591190904378891, -0.00458676740527153, 0.0036885396111756563, -0.00999320950359106, 0.01525962445884943, -0.004812178201973438, -0.003025968559086323, -0.014248691499233246, 0.011687206104397774, -0.03306024521589279, -0.003227472072467208, -0.009597033262252808, -0.002173847518861294, 0.0027459128759801388, 0.013176282867789268, 0.008292383514344692, 0.00044356397120282054, -0.009965887293219566, 0.03319685533642769, -0.008913970552384853, -8.559631532989442e-05, 0.013080653734505177, -0.012090212665498257, 0.01181015744805336, -0.010184467770159245, -0.011468625627458096, 0.02004106529057026, 0.006830628961324692, -0.0035246044863015413, 0.0037363539449870586, -0.006065598223358393, 0.00027749428409151733, 0.016817007213830948, 0.007663965690881014, -0.03904387354850769, -0.011550593189895153, -0.008647575974464417, -0.003968595527112484, -0.019453631713986397, -0.01130469050258398, -0.01131152082234621, 0.0005630999803543091, -0.010758240707218647, -0.022814299911260605, 0.01378420926630497, 0.014685851521790028, -0.019480952993035316, -0.0007675919332541525, 0.00696382625028491, 0.015082028694450855, -0.011926277540624142, -0.003121597459539771, 0.011946769431233406, -0.017595699056982994, 0.0054986560717225075, 0.005450841970741749, 0.011086110956966877, 0.00041026464896276593, 0.026694096624851227, -0.011871633119881153, 0.02493179589509964, 0.009337469935417175, 0.010075177066028118, 0.005191277712583542, 0.011188570410013199, -0.009282824583351612, -0.006898934952914715, -0.016174929216504097, 0.015450882725417614, -0.020464563742280006, 0.028470061719417572, -0.03087444230914116, -0.02004106529057026, -0.0057104057632386684, -0.0012465897016227245, -0.01935800164937973, -0.016625750809907913, 0.029590284451842308, -0.021147627383470535, 0.028333447873592377, 0.014726835303008556, -0.006772568449378014, 0.0075478446669876575, 0.021912656724452972, -0.0050068506971001625, -0.0170355886220932, 0.02162577025592327, 0.019235050305724144, 0.012049228884279728, -0.010122992098331451, -0.018934503197669983, -0.018483681604266167, 0.014808802865445614, -0.007991835474967957, -0.023893538862466812, 0.0037397693376988173, 0.029590284451842308, 0.009139381349086761, -0.019180405884981155, 0.02168041653931141, -0.00021441771241370589, 0.007725441362708807, 0.021748721599578857, -0.0006621440988965333, -0.011024635285139084, 0.0010006871307268739, 0.022459108382463455, -0.008941292762756348, -0.00017418104107491672, 0.011222722940146923, -0.014016450382769108, 0.020833417773246765, 0.005915324669331312, -0.011222722940146923, -0.0126161715015769, -0.015355253592133522, 0.0278689656406641, 0.006287593860179186, 0.021571125835180283, -0.016926297917962074, -0.0005409003933891654, 0.0010792393004521728, 0.008080634288489819, 0.012219995260238647, -0.016270557418465614, -0.022500092163681984, -0.007452215999364853, -0.0032308874651789665, -0.0315028615295887, 0.004952205810695887, -0.025191359221935272, -0.0216667540371418, -0.0016231281915679574, 0.016311541199684143, -0.012062890455126762, 0.010122992098331451, -0.009296486154198647, 0.003480205312371254, -0.010102500207722187, 0.01934434100985527, 0.018497342243790627, 0.016584767028689384, -0.01003419328480959, -0.011946769431233406, 0.020123032853007317, -0.0033709153067320585, 0.029699573293328285, 0.009549219161272049, 0.013551967218518257, -0.0011253460543230176, 0.006950164679437876, 0.0038729666266590357, -0.006376392208039761, 0.02336074970662594, 0.0021601864136755466, 0.02393452264368534, 0.019289696589112282, -0.008545116521418095, 0.019863467663526535, 0.0016957035986706614, -0.033251501619815826, -0.002998646115884185, -0.0059392317198216915, -0.010259604081511497, 0.016311541199684143, -0.015560172498226166, 0.0028756947722285986, -0.0028295880183577538, 0.009542388841509819, -2.1986086721881293e-05, 0.007821070030331612, -0.0004960744408890605, -0.03669413924217224, -0.007254127878695726, 0.020150354132056236, 0.005461087916046381, -0.002242153976112604, 0.007028717081993818, 0.0013533183373510838, -0.02983618713915348, -0.019235050305724144, -0.002867156406864524, -0.014535577967762947, 0.00475411769002676, 0.015806075185537338, 0.01539623737335205, -0.044808924198150635, 0.0216667540371418, 0.005604531150311232, 0.0163935087621212, 0.013019178062677383, 0.010956328362226486, 0.010737748816609383, 0.02556021325290203, -0.000930673151742667, -0.005833357106894255, -0.0008175408584065735, -0.009617525152862072, 0.0045628598891198635, 0.01096998993307352, 0.008907140232622623, 0.00969949271529913, -0.004525291733443737, -0.03633894398808479, 0.006137319840490818, -0.008545116521418095, 0.01017080619931221, 0.004142776597291231, -0.01673503965139389, 0.016461815685033798, 0.004597013350576162, 0.0073224338702857494, 0.019822483882308006, -0.02463124692440033, -0.00804648082703352, 0.01232245471328497, 0.014344320632517338, -0.007971343584358692, -0.016967281699180603, -0.013654426671564579, 0.005389366298913956, -0.003210395574569702, -0.0007620420074090362, -0.0002352297742618248, 0.00984293594956398, 0.025778792798519135, 0.010935836471617222, -0.014822464436292648, 0.004532122053205967, 0.005348382517695427, 0.010956328362226486, -0.020915385335683823, 0.023715943098068237, -0.02193997986614704, -0.02692633867263794, -0.004743871744722128, 0.011188570410013199, 0.027773337438702583, -0.007342925760895014, 0.020423579961061478, 0.01775963418185711, 0.024399006739258766, 0.01868860051035881, 0.015327931381762028, 0.018620293587446213, 0.010908514261245728, 0.004812178201973438, -0.008299213834106922, 0.0006023760652169585, -0.026338905096054077, 0.0017392488662153482, 0.007766425143927336, -0.008934462442994118, -0.010280095972120762, -0.008756865747272968, 0.008579269982874393, -0.026079339906573296, -0.004101792816072702, -0.016926297917962074, -0.0019450215622782707, -0.00014258937153499573, 0.0054952409118413925, 0.0035724188201129436, -0.02521868236362934, -0.0062705171294510365, 0.00036309059942141175, 0.0024675645399838686, -0.027664046734571457, -0.005553301423788071, 0.005884586833417416, 0.0016555736074224114, -0.0067589073441922665, -0.001086923759430647, 0.016584767028689384, -0.0008990815258584917, 0.007841561920940876, 0.01737711951136589, 0.029945475980639458, -0.0015206687385216355, 0.01769132912158966, 0.006297839805483818, 0.012745953164994717, -0.01937166415154934, -0.005864094942808151, 0.02162577025592327, -0.008169432170689106, -0.017978215590119362, -0.014248691499233246, -0.041202351450920105, 0.02728153206408024, -0.013026009313762188, -0.003831982845440507, -0.007281450089067221, -0.0072677889838814735, -0.006369561422616243, 0.01740444265305996, 0.002974738832563162, -0.00341019150801003, -0.028470061719417572, -0.005532809533178806, 0.031612150371074677, 0.0035246044863015413, -0.009583372622728348, -0.0023838893976062536, 0.0010450861882418394, 0.0038046601694077253, 0.03994551673531532, 0.00950823538005352, 0.010601135902106762, -6.510443199658766e-05, 0.007875715382397175, -0.018251439556479454, -0.003835398005321622, -0.010232281871140003, 0.01460388395935297, 0.01702192611992359, -0.014139401726424694, 0.004067639354616404, 0.013073823414742947, 0.011796495877206326, -0.0032855323515832424, -0.00720631331205368, 0.015819735825061798, -0.009221348911523819, -0.022199543192982674, -0.01737711951136589, 0.0036578017752617598, 0.01573776826262474, 0.01866127736866474, -0.005075157154351473, -0.005433765240013599, 0.01149594783782959, -0.024685893207788467, -0.00822407752275467, 0.006509589031338692, -0.0029303396586328745, -0.0032804093789309263, -0.008784188888967037, -0.0033948225900530815, -0.005454257130622864, 0.013893499039113522, -0.010368894785642624, 0.006472020875662565, -0.012042398564517498, 0.017827941104769707, -0.013012347742915154, 0.05478164181113243, 0.0070560397580266, -0.011461795307695866, -0.013107976876199245, 0.01525962445884943, -0.02788262628018856, -0.02849738299846649, -0.014439948834478855, -0.019180405884981155, -0.023497363552451134, 0.033606693148612976, -0.011577915400266647, 0.01181015744805336, 0.0022489845287054777, 0.003531435038894415, -0.015286947600543499, -0.021735060960054398, -0.013661257922649384, 0.013347048312425613, 0.02001374214887619, 0.006403714418411255, 0.01935800164937973, -0.020888062193989754, -0.008791019208729267, -0.023811571300029755, 0.01543722115457058, -0.018101166933774948, 0.01525962445884943, -0.02590174414217472, -0.015478204935789108, -0.008832002989947796, -0.023797910660505295, -0.0064310370944440365, -0.001691434415988624, 0.000520408502779901, -0.010368894785642624, -0.0042588971555233, 0.0018135319696739316, -0.012192672118544579, 0.028114868327975273, 0.0014634622493758798, 0.006926257628947496, -0.018497342243790627, 0.0032308874651789665, -0.016502799466252327, 0.008681729435920715, 0.01930335722863674, 0.016161268576979637, -0.00581969553604722, 0.008722713217139244, -0.00950823538005352, -0.007500030566006899, -0.012083382345736027, -0.006171473301947117, -0.008989107795059681, -0.003616817994043231, -0.0050512501038610935, -0.002906432608142495, 0.02064215950667858, -0.02062849886715412, -0.008497302420437336, 0.008538286201655865, 0.0074317241087555885, -0.01543722115457058, 0.01199458446353674, 0.010806054808199406, 0.014153063297271729, 0.0036407250445336103, -0.010000040754675865, 0.003756845835596323, 0.005211769603192806, 0.013879837468266487, -0.0017469333251938224, 0.004238405264914036, -0.004733625799417496, 0.003678293665871024, 0.00017247337382286787, -0.01364076603204012, 0.022554736584424973, 0.006530080921947956, 0.01459022331982851, 0.01603831723332405, 0.009241840802133083, 0.006632540374994278, 0.0067349998280406, 0.0025273326318711042, -0.01246589794754982, 0.0123292850330472, -0.004573105834424496, 0.026079339906573296, 0.011243214830756187, -0.0001013921428238973, 0.0018374391365796328, 0.0022250772453844547, -0.0025614858604967594, -0.020177677273750305, 0.0007535037584602833, 0.024207748472690582, -0.012875734828412533, -0.026830710470676422, 0.014439948834478855, -0.01328557264059782, -0.0024487804621458054, -0.002727128565311432, 0.012042398564517498, 0.0022336156107485294, -0.009904411621391773, -0.0126503249630332, 0.007930359803140163, -0.001452362397685647, -0.004911222029477358, -0.010717256926000118, 0.04587450250983238, -0.0187432449311018, 0.020847078412771225, 0.008791019208729267, -0.012056060135364532, -0.015136673115193844, 0.009153042919933796, 0.002558070467785001, 0.010409878566861153, 0.025519229471683502, 0.0010442323982715607, -0.0012158519821241498, -0.004945375025272369, 0.0011313229333609343, -0.018784228712320328, 0.014549239538609982, 0.019180405884981155, -0.03469959273934364, -0.00037461728788912296, 0.02028696797788143, 0.007916699163615704, 0.01130469050258398, -0.006984318140894175, 0.017650345340371132, 0.008599761873483658, 0.0013345341430976987, -0.021789705380797386, 0.0015718984650447965, 0.0077117797918617725, -0.010225451551377773, -0.006465190090239048, 0.008688559755682945, -0.0012081675231456757, -0.010580644011497498, 0.003924196120351553, 0.0031642888206988573, -0.012370268814265728, -0.01837439090013504, -0.017664005979895592, -0.008633914403617382, 0.0061065820045769215, -0.013954974710941315, 0.005293737165629864, -0.0004730210348498076, -0.027404483407735825, -0.005276660900563002, -0.00458676740527153, 0.008312875404953957, 0.005150293931365013, -0.011536931619048119, 0.02460392564535141, -0.00786205381155014, 0.00818992406129837, -0.028797930106520653, -0.011475455947220325, 0.008654406294226646, -0.0096585089340806, -0.0007885107188485563, -0.00803965050727129, -0.006137319840490818, -0.014153063297271729, -0.013374371454119682, -0.010382555425167084, 0.013360709883272648, 0.011502779088914394, -0.00045679829781875014, 0.0023855972103774548, -0.0099795488640666, -0.017896248027682304, -0.005112725775688887, 0.0029764464125037193, 0.00435794098302722, 0.01831974647939205, -0.011113433167338371, -0.0042793890461325645, -0.016803346574306488, 0.019576583057641983, 0.005884586833417416, 0.013046501204371452, -0.0009682416566647589, 0.0006156103918328881, 0.012226825580000877, -0.0047780247405171394, 0.014849786646664143, 0.005068326368927956, 0.020095709711313248, 0.003722692606970668, -0.012711800634860992, 0.016543783247470856, 0.0031881961040198803, 0.005765050649642944, 0.0006523250485770404, 0.009439929388463497, 0.015491866506636143, 0.0065437424927949905, -0.01833340711891651, 0.00899593811482191, 0.009590202942490578, -0.033251501619815826, -0.005867510102689266, -0.013954974710941315, -0.01445361040532589, -0.011933108791708946, 0.002298506675288081, -0.008469979278743267, -0.0019125760300084949, 0.005027342587709427, -0.0016393508994951844, -0.016625750809907913, -0.00697065657004714, 0.02031428925693035, 0.008736373856663704, 0.002807388547807932, -0.001941606285981834, -0.01460388395935297, 0.016338864341378212, -0.00885249488055706, -0.020123032853007317, 0.0036509709898382425, -0.005286906845867634, 0.045109473168849945, -0.016953621059656143, -0.015491866506636143, -0.019139422103762627, -0.01935800164937973, 0.0061065820045769215, -0.02001374214887619, -0.009412606246769428, 0.011263706721365452, -0.001366125768981874, 0.0025256250519305468, 0.007909867912530899, 0.0007338656578212976, -0.0073156035505235195, -0.015150334686040878, 0.005109310150146484, -0.0019484368385747075, 0.024112120270729065, 0.001810116576962173, 0.0015821444103494287, 0.019494615495204926, -0.03543730080127716, 0.010327911004424095, -0.009911241941154003, -0.0007910722051747143, -0.003668047720566392, -1.6462881831103005e-05, 0.020901724696159363, 0.02457660250365734, -0.012725461274385452, -0.0070355478674173355, -0.008927632123231888, -0.001419916981831193, 0.00409154687076807, -0.01799187622964382, -0.02588808350265026, 0.0027971426025032997, -0.006195380352437496, -0.004453570116311312, 0.002283137757331133, -0.011454964056611061, 0.00020438521460164338, -0.021557465195655823, 0.0026690682861953974, -0.006280763074755669, 0.009890750050544739, 0.001565067796036601, -0.007916699163615704, 0.0062671019695699215, 0.006834044121205807, -0.0023890123702585697, -0.007165329530835152, 0.00838801171630621, 0.005208354443311691, 0.01181015744805336, 0.013026009313762188, 0.0014865156263113022, -0.029317058622837067, -0.015314269810914993, 0.020245984196662903, 0.004241820424795151, 0.0020611423533409834, -0.009781460277736187, -0.0032684558536857367, 0.0021823858842253685, 0.016666734591126442, -0.020491886883974075, -0.030300669372081757, -0.009077905677258968, -0.0008047334267757833, -0.024112120270729065, 0.0014182092854753137, 0.026106663048267365, -0.022718671709299088, -0.005300567951053381, 0.0272268857806921, -0.009870258159935474, 0.0021875088568776846, 0.01247955858707428, -0.01182381808757782, -0.010737748816609383, 0.016939958557486534, 0.005618192255496979, -0.03081979788839817, -0.01181698776781559, 0.005351797677576542, 0.023142170161008835, -0.027390820905566216, -0.003476790152490139, 0.016270557418465614, -0.013804701156914234, 0.023429056629538536, -0.011031465604901314, 0.004245235584676266, 0.001535183866508305, 0.004132530651986599, 0.004952205810695887, 0.005041004158556461, 0.014221369288861752, -0.0018596387235447764, -0.004709718748927116, 0.0003423852613195777, 0.024153104051947594, 0.015355253592133522, -0.005519147962331772, 0.012349776923656464, 0.011728189885616302, 0.020929045975208282, -0.016967281699180603, -0.013435847125947475, 0.012848412618041039, 0.04237722232937813, -0.0023036296479403973, 0.000844436464831233, -0.01972685568034649, -0.014822464436292648, 0.004354525823146105, -0.0007398424786515534, -0.010286927223205566, -0.017144877463579178, -0.0071516684256494045, 0.02792361006140709, -0.003794414224103093, -0.00508198793977499, -0.02068314328789711, 0.0020184507593512535, -0.0061065820045769215, -0.0009289655135944486, 0.0126161715015769, 0.010512338019907475, 0.0024539034347981215, 0.023169493302702904, 0.021243255585432053, -0.0170355886220932, -0.00870905164629221, 0.020109370350837708, 0.015997333452105522, 0.001890376559458673, 0.013620274141430855, -0.010143483988940716, 0.0025717318058013916, -0.007438554894179106, 0.0123292850330472, -0.026844371110200882, -0.004798516631126404, -0.007342925760895014, -0.022554736584424973, 0.019822483882308006, -0.00046192127047106624, 0.04855211079120636, 0.024453651160001755, -0.014057434163987637, -0.012103874236345291, -0.01064895000308752, 0.0036134026013314724, -0.008941292762756348, -0.00036821357207372785, 0.003025968559086323, -0.014549239538609982, 1.9011027063697838e-07, -0.015218640677630901, -0.0032257644925266504, 0.0022062931675463915, 0.009098397567868233, 0.032349858433008194, -0.0034118990879505873, -0.010997312143445015, 0.011215892620384693, 0.011755512095987797, -0.0065983873791992664, -0.01313529908657074, 0.01247955858707428, -0.014235030859708786, 0.011912616901099682, -0.017281491309404373, 0.016010994091629982, -0.003609987208619714, -0.02004106529057026, 0.006444698199629784, 0.016789685934782028, 0.030246024951338768, 0.0038388133980333805, 0.011181739158928394, -0.026093002408742905, 2.2039450414013118e-05, 0.017636682838201523, 0.020273305475711823, 0.014153063297271729, 0.010901683941483498, -0.004532122053205967, -0.021489158272743225, -0.012718630954623222, 0.011871633119881153, 0.004159852862358093, 0.004692642018198967, -0.0004730210348498076, 0.02030062861740589, 0.0037602612283080816, -0.025751469656825066, -0.009241840802133083, 0.014303336851298809, -0.009460421279072762, 0.01408475637435913, 0.03273237496614456, -0.011079279705882072, 0.003481913125142455, 0.018306085839867592, -0.004231574479490519, -0.002230200218036771, -0.009542388841509819, -0.022568397223949432, -0.012773276306688786, -0.0093716224655509, 0.005041004158556461, -0.0022558150812983513, 0.011188570410013199, -0.0021311561577022076, 0.0001402413472533226, -0.004972697701305151, 0.015136673115193844, -0.020888062193989754, 0.013873007148504257, -0.032377179712057114, 0.002044065622612834, 0.004036901518702507, -0.008681729435920715, -0.013948144391179085, -0.014535577967762947, 0.00557720847427845, 0.03120231255888939, -0.01576509140431881, 0.0046072592958807945, 0.019084777683019638, -0.008592930622398853, 0.009398945607244968, -0.02006838656961918, -0.002293383702635765, -0.027431804686784744, 0.027677707374095917, 0.016270557418465614, 0.008476810529828072, 0.014767819084227085, -0.004392094444483519, -0.01361344289034605, -0.007622981909662485, 5.162994784768671e-05, -0.008299213834106922, 0.0020235737320035696, -0.032677728682756424, 0.00419059069827199, -0.01968587189912796, 0.016789685934782028, -0.012991855852305889, -0.004409170709550381, 0.011946769431233406, 0.0011099771363660693, 0.009153042919933796, 0.010150314308702946, -0.004767778795212507, -0.01643449254333973, 0.018470020964741707, 0.019576583057641983, -0.022390801459550858, 0.008586100302636623, 0.0020713882986456156, -0.009856597520411015, 0.020423579961061478, 0.001656427513808012, -0.002291675889864564, -0.013101145625114441, -0.0255875363945961, -0.020232321694493294, 0.020765110850334167, 0.0016222742851823568, 0.02327878214418888, -0.032950952649116516, 0.0001540093362564221, 0.011065619066357613, -0.005064911209046841, 0.0005891417386010289, 0.007616151124238968, 0.007295111659914255, 0.017158539965748787, -0.014344320632517338, 0.01181015744805336, -0.016311541199684143, -0.003302609082311392, -0.019754178822040558, -0.01163939107209444, -0.022732332348823547, -0.02560119703412056, -0.0021875088568776846, 0.006789645180106163, -0.0037090315017849207, 0.024508295580744743, 0.01734979636967182, -0.011564254760742188, -0.000331498944433406, 0.005949477665126324, -0.00739074032753706, -0.009439929388463497, 0.002998646115884185, -0.013483661226928234, -0.010696765035390854, 0.003592910710722208, -0.016147606074810028, 0.024795182049274445, -0.025437261909246445, 0.001904037781059742, 0.005853848997503519, -0.008299213834106922, 0.011106602847576141, 0.001527499407529831, -0.004269143100827932, 0.01702192611992359, 0.023101186379790306, 0.04407121613621712, -0.006058767903596163, -0.04196738451719284, -0.0021123718470335007, -0.01130469050258398, 0.0006574480212293565, 0.005307398736476898, 0.030437281355261803, 0.0052664149552583694, -0.003022553166374564, 0.007219974417239428, 0.006793060339987278, -0.006161227356642485, -0.009781460277736187, 0.0053825355134904385, -0.01412574015557766, -0.01135250460356474, -0.016502799466252327, 0.0010561859235167503, -0.012971363961696625, 0.010894852690398693, -0.02168041653931141, 0.009050583466887474, 0.018142150714993477, -0.02333342842757702, 0.00046747116721235216, 0.012889396399259567, 0.01808750443160534, -0.026475517079234123, 0.0016461815685033798, 0.010881192050874233, -0.0009673878084868193, 0.003883212571963668, 0.022240526974201202, -0.015532850287854671, 0.0016846038633957505, 0.02532797120511532, -0.008558778092265129, -0.01524596381932497, -0.0037261079996824265, -0.006304670590907335, -0.003678293665871024, 0.0038524747360497713, 0.007616151124238968, 0.014357981272041798, 0.03275969624519348, -0.0030754907056689262, 0.027691369876265526, -0.0008414480835199356, 0.001885253586806357, -0.002605884801596403, -0.008155770599842072, -0.0013362417230382562, -0.028934543952345848, -0.024822505190968513, 0.0006565941730514169, 0.011372996494174004, -0.005344966892153025, -0.00706287007778883, -0.021516481414437294, 0.002040650462731719, 0.002194339409470558, -0.018265102058649063, 0.005303983110934496, 0.012158519588410854, 0.012493220157921314, 0.021161288022994995, 0.0004866823146585375, 0.003982256632298231, -0.00180157832801342, -0.020792433992028236, -0.015382575802505016, 0.006960410624742508, -0.011038295924663544, 0.01445361040532589, -0.011748681776225567, -0.004743871744722128, -0.0016393508994951844, -0.0163935087621212, 0.024439990520477295, 0.0003961764741688967, 0.010423539206385612, 0.002245569135993719, 0.019549259915947914, 0.01576509140431881, 0.01831974647939205, 0.01607930101454258, 0.005351797677576542, -0.0015334761701524258, -0.021407190710306168, -0.0015172534622251987, 0.012117535807192326, -0.032650407403707504, 0.002629792084917426, -0.00581969553604722, 0.022418124601244926, -0.0029371704440563917, 0.022827960550785065, -0.00341019150801003, 0.009146211668848991, -0.013299234211444855, -0.014330659061670303, -4.429235923453234e-05, 0.005116140935570002, -0.015847058966755867, -0.009535557590425014, 0.017855264246463776, -0.02034161239862442, 0.00739074032753706, -0.016612088307738304, -0.01265715528279543, 0.00040300708496943116, -0.002923509106040001, -0.003606572048738599, -0.0007765571353957057, -0.008510963059961796, 0.02301921881735325, 0.012875734828412533, -0.012179011479020119, 0.007254127878695726, -0.00656764954328537, 0.005925570614635944, 0.008456318639218807, 0.007732271682471037, -0.002269476419314742, 0.0038388133980333805, -0.03377062827348709, 0.0018203625222668052, 0.0017392488662153482, -0.00114839943125844, -0.00965167861431837, 0.018497342243790627, 0.007991835474967957, 0.006485681980848312, 0.0023121677804738283, -0.011366166174411774, 0.01741810329258442, -0.0036373098846524954, -0.0003319258685223758, -0.005047834478318691, -0.006588141433894634, -0.0023463210090994835, -0.00574455875903368, -0.0042793890461325645, 0.026653112843632698, 0.00033235279261134565, -0.013381201773881912, -0.0036509709898382425, 0.0038251520600169897, -0.012219995260238647, 0.0030276761390268803, 0.010730917565524578, 0.009719984605908394, -0.017786957323551178, 0.010013701394200325, 0.019521936774253845, 0.018893519416451454, -0.006755491718649864, -0.003377745859324932, -0.006980902515351772, 0.0060553522780537605, 0.023797910660505295, 0.0034597134217619896, -0.007506860885769129, 0.02819683589041233, -0.0037636763881891966, 0.007042378187179565, -0.013162621296942234, 0.02225418947637081, -0.004289634991437197, 0.006584726274013519, -0.015341592021286488, 0.007076531648635864, -0.0012491511879488826, 0.0005447426228784025, -0.01445361040532589, -0.015300608240067959, 0.0033470080234110355, 0.02030062861740589, 0.006489097140729427, 0.018551988527178764, 0.038196876645088196, -0.010341571643948555, 0.013060161843895912, -0.001965513452887535, 0.027117596939206123, 0.012964533641934395, 0.011461795307695866, -0.014795142225921154, -0.008866156451404095, -0.015163996256887913, -0.010423539206385612, -0.002843249123543501, 0.0068237981759011745, 0.00885249488055706, -0.025191359221935272, 0.00870222132652998, -0.012670816853642464, 0.012383930385112762, -0.004327203147113323, -0.004521876107901335, 0.015013721771538258, 0.010840208269655704, -0.0006002415320836008, -0.01734979636967182, -0.023825233802199364, 0.0044433241710066795, -0.0126503249630332, -0.003111351514235139, -0.0096585089340806, 0.019480952993035316, 0.006109997630119324, -0.012527373619377613, 0.0093716224655509, 0.006775983609259129, -0.0010117868660017848, 0.04038267582654953, 0.0010929006384685636, -0.01799187622964382, -0.011195400729775429, 0.008435826748609543, 0.015450882725417614, -0.03379794955253601, 0.0005118702538311481, 0.005372289568185806, -0.007978174835443497, -0.026844371110200882, -0.011892125010490417, -0.0017810864374041557, 0.016885314136743546, -0.011864801868796349, 0.001810116576962173, 0.014153063297271729, 0.012172180227935314, 0.0005870071472600102, 0.00984976626932621, -0.013367540203034878, 0.024358022958040237, -0.0028039731550961733, -0.0037090315017849207, -0.0005131509969942272, 0.01036206353455782, -0.00818309374153614, -0.004849746357649565, 0.022431785240769386, 0.002546116942539811, 0.0032718712463974953, 0.018538326025009155, 0.003311147214844823, -0.012356607243418694, 0.006810137070715427, -0.006089505739510059, 0.0043989247642457485, -0.005840187426656485, -0.021174948662519455, 0.001167183741927147, 0.008920800872147083, 0.011174908839166164, -0.008217246271669865, 0.006916011683642864, -0.0006215872126631439, -0.00630808575078845, 0.0009349423344247043, 0.00917353481054306, -0.008654406294226646, -0.00032829708652570844, -0.00356558826752007, -0.004207667429000139, 0.006700846832245588, 0.0031608734279870987, -0.02262304164469242, -0.008633914403617382, -0.004474062006920576, -0.0111544169485569, 0.0014890771126374602, -0.0011424226686358452, -0.0023873047903180122, -0.013408523984253407, 0.009665340185165405, -0.011543762870132923, 0.007513691671192646, -0.006762322504073381, -0.021735060960054398, -0.01441262662410736, -0.004275973420590162, -0.0015932441456243396, -0.0009289655135944486, -0.005362043622881174, 0.039836227893829346, 0.015232302248477936, 0.02001374214887619, -0.01897548697888851, 0.0307924747467041, -0.019781500101089478, 0.0073224338702857494, 0.01295087207108736, -0.011454964056611061, 0.010485014878213406, 0.005191277712583542, -0.025983711704611778, 0.0038217369001358747, -0.019945435225963593, 0.01134567428380251, -0.009207687340676785, -0.01676236279308796, 0.01101097371429205, 0.0020423580426722765, 0.007636643014848232, -0.010566982440650463, -0.003430683398619294, -0.009084735997021198, -0.005358628463000059, 0.034918174147605896, 0.02857935056090355, -0.003358961781486869, -0.007991835474967957, 0.0035587577149271965, -0.02491813339293003, 0.01096315961331129, 0.0005353505257517099, -0.018142150714993477, 0.01841537468135357, 0.0003043898905161768, -0.010041024535894394, 0.014480932615697384, 0.03128428012132645, -0.01706290990114212, 0.010409878566861153, -0.0032821171917021275, -0.0004049281997140497, -0.006738415453583002, 0.005983630660921335, 0.016174929216504097, -0.03898923099040985, 0.0003536985022947192, 0.01677602343261242, 0.01803286001086235, 0.00614073546603322, 0.018551988527178764, 0.005085403099656105, -0.004228159319609404, 0.016161268576979637, 0.019235050305724144, -0.0004764363693539053, -0.013265080749988556, 0.008551946841180325, -0.00290984776802361, 0.016857990995049477, 0.01736345887184143, 0.004935129079967737, -0.0025034253485500813, 0.012062890455126762, -0.012588849291205406, -0.03581981733441353, -0.003678293665871024, 0.008162601850926876, -0.029289735481142998, 0.0005212623509578407, 0.019125761464238167, 0.0051024798303842545, 0.01082654669880867, 0.0037090315017849207, 0.016024654731154442, 0.021776044741272926, -0.025368954986333847, 0.009467251598834991, -0.006287593860179186, 0.008913970552384853, 0.012978194281458855, -0.023538347333669662, -0.018879858776926994, 0.004129115026444197, -0.02129790000617504, 0.009467251598834991, -0.001312334556132555, 0.010894852690398693, -0.0022199542727321386, 0.032213244587183, -0.0005152855883352458, 0.003818321507424116, 0.0193853247910738, 0.014617545530200005, 0.024795182049274445, -0.018620293587446213, 0.008743205107748508, -0.007192652206867933, -0.010252773761749268, -0.008121618069708347, -0.015355253592133522, -0.015041044913232327, -0.017308812588453293, 0.0032121031545102596, 0.001352464547380805, -0.003780753118917346, 0.020833417773246765, -0.005276660900563002, -0.020136693492531776, 0.014822464436292648, -0.0027578664012253284, 0.00046192127047106624, -0.005478164181113243, -0.01997275836765766, -0.02394818514585495, -0.012534203939139843, 0.0033299315255135298, -0.005122971720993519, 0.02334708906710148, -0.012827920727431774, -0.011557423509657383, 0.00932380836457014, -0.003944688010960817, 0.02133888378739357, -0.009535557590425014, 0.007500030566006899, 0.013832023367285728, 0.003917365800589323, 0.009467251598834991, -0.038879938423633575, -0.01905745454132557, -0.0008388865971937776, -0.008094294928014278, 0.00933063868433237, -0.009706323966383934, 0.023060202598571777, 0.006318331696093082, 0.007909867912530899, -0.004224743694067001, 0.026530161499977112, -0.005570377688854933, 0.0008132717339321971, 0.016010994091629982, 0.015150334686040878, 0.007704949472099543, -0.00822407752275467, 0.017295151948928833, -0.002450488042086363, 0.0058265263214707375, -0.0015804367139935493, 0.012670816853642464, 0.016980942338705063, -0.009351130574941635, -0.004310126882046461, 0.017144877463579178, -0.023388072848320007, -0.007650304120033979, 0.013306064531207085, 0.010655781254172325, 0.0059392317198216915, 0.02200828678905964, 0.0017571792704984546, 0.006062183063477278, -0.011851141229271889, 0.00014525759615935385, 0.02849738299846649, 0.014713174663484097, -0.034235112369060516, -0.001473708194680512, -0.013510983437299728, -0.01196043100208044, 0.010655781254172325, -0.0015744599513709545, -0.013087484985589981, 0.009897581301629543, -0.004456985276192427, -0.014836126007139683, 0.004142776597291231, -0.003374330699443817, 0.005765050649642944, 0.0032206415198743343, 0.040164098143577576, -0.006724753882735968, -0.0003125012735836208, -0.006284178700298071, -0.008306044153869152, 0.019795162603259087, 0.022513752803206444, 0.02726786956191063, -0.013668088242411613, -0.011092941276729107, -0.0054303500801324844, -0.013087484985589981, -0.002298506675288081, -0.0010929006384685636, -0.0023326596710830927, -0.0024112120736390352, 0.006376392208039761, -0.006926257628947496, 0.006912596523761749, -0.010382555425167084, -0.011448133736848831, -0.007937191054224968, -0.004187175538390875, 0.010450862348079681, 0.008019158616662025, -0.005426934454590082, -0.002245569135993719, 0.010580644011497498, 0.005112725775688887, -0.0010843622731044888, 0.016680395230650902, 0.006854536011815071, 0.021502818912267685, 0.0122951315715909, 0.02687169425189495, 0.007875715382397175, -0.021079320460557938, -0.004648243077099323, -0.0012628125259652734, 0.004409170709550381, -0.000865782203618437, -0.03243182599544525, -0.01905745454132557, 0.000935796124394983, -0.008777357637882233, -0.0022797223646193743, -0.010485014878213406], "870c3230-bcd3-49bb-a774-c3c265fad517": [-0.026498228311538696, 0.0017191346269100904, -0.006708551198244095, 0.012241188436746597, -0.005510726012289524, -0.0028247490990906954, 0.026366759091615677, 0.03292558342218399, -0.020392242819070816, 0.017017880454659462, 0.026395974680781364, 0.05311331897974014, 0.013548570685088634, -0.020567532628774643, -0.0308805163949728, 0.008881434798240662, -0.014541888609528542, -0.009042118676006794, 0.01665269024670124, -0.02303622104227543, 0.07607650011777878, 0.00759596424177289, -0.048789460211992264, 0.003378012916073203, -0.009830930270254612, -0.016842588782310486, -0.014395812526345253, 0.016331322491168976, -0.03754159063100815, -0.001223388477228582, 0.013891849666833878, 0.015980739146471024, 0.02010008879005909, 0.01970568299293518, 0.01519192848354578, -0.02084507793188095, 0.01341710239648819, 0.02137095294892788, -0.019296670332551003, 0.003907539416104555, -0.02706792578101158, 0.020114697515964508, -0.006756025832146406, -0.0154402581974864, -0.06217004358768463, 0.007194254547357559, 0.009838234633207321, 0.009882057085633278, 0.010144994594156742, -0.004791300278156996, 0.010393324308097363, -0.0209619402885437, 0.00928314495831728, 0.030325425788760185, -0.0024486028123646975, -0.020289989188313484, 0.011766440235078335, 0.019106771796941757, -0.0028576164040714502, -0.00619728397578001, -0.017266210168600082, 0.023693565279245377, -0.005006762687116861, -0.004532014951109886, -0.01587848737835884, -0.04779614508152008, 0.0361100435256958, -0.012445694766938686, -0.07631022483110428, -0.01703248918056488, -0.007029918488115072, 0.016462791711091995, -0.017324641346931458, 0.0015931439120322466, 0.00973598100244999, -0.0234014131128788, 0.03619769215583801, 0.0037833743263036013, 0.004561230540275574, 0.004236210603266954, -0.022685639560222626, 0.03201990947127342, -0.0018624719232320786, -0.0095899049192667, 0.060066547244787216, 0.04434874281287193, -0.0056896694004535675, -0.027623016387224197, -0.013745773583650589, 0.0016753118252381682, 0.008742662146687508, -0.017996592447161674, -0.0013311196817085147, 0.0015575378201901913, 0.010386019945144653, 0.016754943877458572, 0.007690913509577513, 0.02886466309428215, 0.01934049278497696, -0.014257039874792099, 0.0063652717508375645, 0.01655043661594391, -0.03143560513854027, 0.02300700731575489, -0.01742689497768879, 0.0005564591265283525, 0.03266264498233795, -0.004316552542150021, -0.010765817947685719, 0.017850516363978386, 0.012540644966065884, -0.051039036363363266, 0.008698839694261551, -0.01817188411951065, -0.027973597869277, -0.01010117121040821, 0.01144507247954607, 0.012080504558980465, -0.02404414862394333, -0.05401898920536041, -0.014403116889297962, 0.049402981996536255, 0.02733086235821247, 0.004663483705371618, 0.0019464658107608557, -0.007464495487511158, -0.0019373360555619001, 0.0013393365079537034, 0.049286119639873505, -0.03672356531023979, 0.001082790084183216, 0.019939405843615532, 0.007807774469256401, 0.03245813772082329, 0.014651445671916008, 0.0042982930317521095, 0.03546730801463127, 0.027506154030561447, -0.03929450735449791, 0.048643384128808975, -0.027666838839650154, -0.0077055213041603565, -0.0012507777428254485, 0.01587848737835884, -0.008187572471797466, -0.017251603305339813, -0.03131874278187752, 0.00946574006229639, 0.007902723737061024, 0.03888549283146858, -0.0396743044257164, -0.042391322553157806, 0.017602186650037766, 0.0052697001956403255, 0.007734736427664757, 0.01640436053276062, 0.01587848737835884, 0.007387805264443159, 0.02430708520114422, 0.016944842413067818, 0.03958665952086449, -0.04005410149693489, 0.024584630504250526, 0.02023155800998211, 0.01777747832238674, 0.015162712894380093, 0.047766927629709244, 0.019282063469290733, -0.010692779906094074, 0.024365516379475594, 0.020392242819070816, 0.01163497194647789, 0.007647090591490269, -0.012825492769479752, -0.015834663063287735, 0.009107853285968304, 0.026410583406686783, 0.03000405803322792, 0.011313604190945625, -0.05404820665717125, -0.03762923926115036, -0.004236210603266954, -0.011832174845039845, -0.011985555291175842, -0.000380482932087034, 0.008815700188279152, 0.016316715627908707, 0.039119213819503784, 0.0017163957236334682, 0.004093786235898733, 0.023737387731671333, 0.006204587873071432, 0.009173586964607239, 0.006288581993430853, -0.00718329893425107, -0.00740606477484107, 0.017017880454659462, -0.018274135887622833, 0.02262720838189125, 0.022700246423482895, -0.02771066129207611, -0.0434722863137722, -0.05597641319036484, -0.003933102358132601, -0.042654260993003845, -0.012810885906219482, -0.026001568883657455, -0.05845970660448074, 0.005189358256757259, -0.01766061596572399, 0.060183409601449966, -0.013146860525012016, 0.02736007794737816, 0.008034192956984043, -0.0030529932118952274, 0.008538155816495419, -0.017616793513298035, 0.027418509125709534, 0.010765817947685719, 0.010203424841165543, 0.0003476157726254314, 0.03015013411641121, -0.014651445671916008, -0.008932561613619328, -0.05591798201203346, 0.00333784194663167, 0.030208565294742584, -0.00534273823723197, -0.03310087323188782, -0.030938945710659027, 0.051827847957611084, 0.004937376827001572, -0.029857981950044632, -0.03488300368189812, -0.027549978345632553, 0.03280872106552124, 0.033889684826135635, -0.019764114171266556, 0.0365774892270565, -0.0038089377339929342, 0.005649498198181391, 0.03488300368189812, 0.02633754536509514, 0.009889360517263412, 0.01576162502169609, -0.006515000015497208, 0.01481212954968214, 0.010473665781319141, 0.0008166574407368898, 0.00292517663910985, -0.022948576137423515, 0.0005815660115331411, 0.0356426015496254, -0.01869775727391243, -0.03333459794521332, 0.030091704800724983, -0.01322720292955637, -0.031055806204676628, -0.0071285199373960495, -0.032984014600515366, 0.006252062972635031, 0.03204912692308426, 0.02036302722990513, 0.0006514086853712797, 0.05834284797310829, 0.0021564504131674767, 0.03774609789252281, -0.055099956691265106, 0.013950279913842678, 0.0034729624167084694, 0.0028868315275758505, -0.01558633428066969, 0.04981199651956558, -0.0028685720171779394, -0.01957421563565731, 0.02198447287082672, -0.003023778088390827, -0.024000324308872223, -0.005656802095472813, 0.0023116564843803644, -0.019515784457325935, 0.009202802553772926, 0.051564909517765045, 0.023357588797807693, 0.004827819298952818, -0.012686721049249172, -0.01958882249891758, 0.006328752730041742, -0.0762517899274826, -0.022159764543175697, 0.01093380618840456, -0.0016862675547599792, 0.02454080618917942, 0.0030968161299824715, 0.053726837038993835, -0.017967376857995987, 0.000268871575826779, -0.002601982792839408, -0.06631860882043839, -0.012723240070044994, -0.015133497305214405, -0.023605918511748314, -0.004396894481033087, 0.01820109784603119, 0.019019125029444695, 0.015863878652453423, 0.08209484070539474, -0.0029233505483716726, -0.047766927629709244, -0.011123704724013805, -0.0009668420534580946, -0.01435929350554943, 0.010999539867043495, -0.013782292604446411, 0.03213677182793617, -0.02274406887590885, -0.007763951551169157, -0.018916871398687363, -0.005510726012289524, -0.03204912692308426, -0.013358671218156815, -0.0042106471955776215, -0.030208565294742584, 0.01665269024670124, 0.043238565325737, -0.0416901558637619, 0.03441556170582771, -0.029711905866861343, -0.00029306544456630945, -0.05688208341598511, -0.042917195707559586, -0.013745773583650589, -0.07999134808778763, -0.004013444297015667, -0.003573389956727624, -0.02820732071995735, -0.05022100731730461, -0.06240376830101013, 0.01380420383065939, 0.010006221942603588, -0.016214461997151375, 0.00872075092047453, 0.0068473233841359615, -0.013088430278003216, 0.02760840766131878, 0.032107554376125336, 0.012540644966065884, 0.006781589239835739, -0.03800903633236885, 0.0018113453406840563, 0.0008906085276976228, -0.0020195038523525, 0.03064679354429245, -0.00928314495831728, 0.019676469266414642, 0.010349500924348831, -0.007975762709975243, -0.00031018376466818154, -0.03216598555445671, 0.03535044938325882, 0.02391267940402031, -0.035145942121744156, -0.019661860540509224, 0.01500202901661396, 0.005193009972572327, 0.00512362364679575, -0.022466525435447693, -0.0015748844016343355, -0.0325457863509655, -0.02023155800998211, -0.026279114186763763, 0.007888116873800755, 0.017602186650037766, 0.0030164741910994053, -0.02556334063410759, 0.007044526282697916, 0.02302161417901516, -0.018464036285877228, -0.03219520300626755, 0.02681959606707096, -0.029302891343832016, -0.012657505460083485, 0.02899613231420517, 0.018624719232320786, 0.03856412693858147, 0.024891389533877373, 0.019223632290959358, -0.011342819780111313, 0.01600995473563671, 0.014147482812404633, -0.04744556173682213, 0.02477452903985977, -0.019004518166184425, -0.04899396747350693, -0.00753022963181138, 0.024438554421067238, 0.02186761237680912, -0.006021992769092321, -0.00839207973331213, -0.022568777203559875, 0.01934049278497696, -0.02326994389295578, -0.010276462882757187, -0.03441556170582771, 0.011459680274128914, -0.02937593124806881, -0.04575107619166374, 0.01638975366950035, 0.019048340618610382, -0.0014972813660278916, 0.02939053811132908, 0.0009207367547787726, 0.013446317054331303, 0.009604512713849545, 0.018376389518380165, -0.007493710611015558, 0.018011199310421944, -0.00820218026638031, -0.041660942137241364, -0.034006547182798386, 0.046744395047426224, 0.0597451776266098, -0.05845970660448074, -0.0015338003868237138, 0.014892471954226494, 0.005897827912122011, 0.039849597960710526, 0.012569859623908997, -0.0022276625968515873, -0.013979495503008366, -0.007990369573235512, 0.0067341141402721405, 0.006189980544149876, -0.009064029902219772, 0.02315308339893818, -0.012109720148146152, 0.04618930444121361, 0.025271188467741013, -0.006146157626062632, 0.008048800751566887, 0.012058593332767487, 0.006347012240439653, -0.012467605993151665, 0.012146239168941975, 0.012657505460083485, -0.0016205331776291132, -0.028572510927915573, -0.02223280258476734, 0.04575107619166374, 0.019778721034526825, 0.02160467393696308, 0.021327130496501923, -0.013650824315845966, 0.004594097379595041, 0.0006970575195737183, 0.00012165411317255348, -0.015980739146471024, -0.02468688413500786, 0.023576704785227776, -0.04066762328147888, -0.02125409245491028, -0.0052697001956403255, 0.008428598754107952, -0.02099115401506424, -0.004159520845860243, -0.055947195738554, 0.013701950199902058, 0.025490302592515945, 0.020640572533011436, 0.002947088098153472, -0.01194903627038002, -0.004550274461507797, 0.008275218307971954, 0.04186544939875603, 0.006222847383469343, -0.02858711965382099, -0.03952822834253311, 0.009509562514722347, 0.004046311601996422, 0.0029689993243664503, 0.006642816588282585, -0.04785457253456116, 0.0060439039953053, 0.023868856951594353, -0.00038162415148690343, -0.0009704939438961446, 0.028192711994051933, -0.04148564860224724, 0.01958882249891758, 0.0031789839267730713, 0.041251927614212036, -0.015308788977563381, 0.018025808036327362, 0.017339248210191727, -0.010824249126017094, -0.04522520303726196, -0.008056104183197021, -0.01576162502169609, 0.0056020235642790794, -0.03444477543234825, 0.019866367802023888, -0.018858442083001137, 0.018595503643155098, 0.012920442968606949, -0.002490599872544408, 0.0010380542371422052, -0.03418183699250221, -0.0035277409479022026, 0.006525955628603697, 0.007249033078551292, -0.03380203992128372, -0.01768983155488968, -0.04031703993678093, 0.025241972878575325, 0.007588660344481468, 0.008749966509640217, -0.04221603274345398, -6.664728425676003e-05, 0.004553926642984152, -0.011145616881549358, 0.011423161253333092, -0.0006158025935292244, 0.0038418048061430454, 0.008603890426456928, 0.007369545754045248, -0.010261855088174343, -0.0055764601565897465, -0.01449076272547245, -0.01932588592171669, 0.003164376365020871, -0.01828874461352825, 0.004721914418041706, -0.004922769032418728, 0.019150594249367714, 0.012190061621367931, 0.018610112369060516, 0.026629697531461716, -0.02630832977592945, -0.016813375055789948, -0.00014858691429253668, -0.00839207973331213, -0.006175372749567032, -0.012664809823036194, -0.017456110566854477, -0.0029689993243664503, -0.0076105715706944466, -0.016112208366394043, 0.03000405803322792, -0.01820109784603119, 0.016857197508215904, -0.017908945679664612, 0.0033177563454955816, -0.03359753265976906, -0.0060146888718008995, 0.021414775401353836, -0.02353288047015667, -0.020523710176348686, 0.0032629778143018484, -0.02962425909936428, 0.006007384974509478, -0.03800903633236885, -0.015148105099797249, 0.010919198393821716, 0.002722495701164007, -0.01048097014427185, -0.019106771796941757, 0.021546244621276855, -0.018873048946261406, 0.006876538507640362, -0.003441921202465892, 0.010093867778778076, -0.00793924368917942, 0.01858089677989483, -0.008107230998575687, 0.006241106893867254, 0.04575107619166374, -0.02122487686574459, 0.0014041578397154808, -0.014344685710966587, 0.0009777977829799056, 0.01831796020269394, -0.016375144943594933, -0.004371331073343754, -0.017134742811322212, 0.00888873916119337, -0.006894798018038273, -0.018989909440279007, -0.030705224722623825, -0.006956880446523428, 0.005883220117539167, 0.00692401360720396, 0.02021695114672184, 0.00483512319624424, -0.014519977383315563, -0.004364027641713619, 0.01704709604382515, -0.0064346580766141415, 0.04616009071469307, 0.00342000974342227, 0.01169340219348669, -0.002704236190766096, 0.032487355172634125, 0.025110503658652306, 0.022802500054240227, -0.002707888139411807, 0.029580436646938324, -0.005981821566820145, -0.017499933019280434, -0.03114345297217369, 0.014907079748809338, -0.029317500069737434, -0.0038710201624780893, 0.018595503643155098, -0.015834663063287735, 0.028514079749584198, 0.015206536278128624, 0.019486568868160248, 0.03359753265976906, 0.009268537163734436, -0.011919820681214333, 0.02579706348478794, -0.024467768147587776, 0.05311331897974014, -0.024628452956676483, 0.021005762740969658, -0.014585711993277073, -0.008443206548690796, 0.002468688413500786, -0.0002554051752667874, 0.015834663063287735, 0.010152298025786877, 0.003631820436567068, 0.020421456545591354, -0.009494954720139503, 0.0343279130756855, 0.0013064693193882704, 0.011415857821702957, 0.039352938532829285, -0.03391890227794647, 0.010963020846247673, -0.002074282616376877, -0.02452619932591915, -0.012876619584858418, 0.04247896745800972, -0.016492007300257683, -0.001856994116678834, -0.0006938620936125517, 0.029580436646938324, 0.015557118691504002, 0.04128114506602287, -0.04653988778591156, -0.005642194300889969, 0.009253929369151592, 0.02516893483698368, 0.01640436053276062, -0.009166283532977104, -0.0001649063779041171, 0.039469797164201736, 0.015922309830784798, -0.0072928559966385365, 0.023080045357346535, 0.002771796425804496, 0.009180891327559948, 0.0259577464312315, -0.009531473740935326, 0.0008098101243376732, 0.006288581993430853, -0.007420672569423914, 0.02885005623102188, 0.0271993950009346, 0.01252603717148304, -0.022729462012648582, 0.025373442098498344, 0.0016780507285147905, 0.02138555981218815, -0.009224713779985905, 0.017879730090498924, -0.014527281746268272, -0.002377390628680587, 0.00575540354475379, 0.025534125044941902, -0.010028133168816566, -0.03803825005888939, -0.01931127719581127, -0.00934157520532608, -0.013519355095922947, -0.0099770063534379, 0.015527903102338314, 0.00655151903629303, 0.035817891359329224, -0.005298915319144726, 0.006745070219039917, -0.01970568299293518, 0.00781507883220911, -0.00692401360720396, -0.0015009333146736026, -0.018478643149137497, -0.025095896795392036, 0.012496821582317352, -0.004327508620917797, -0.0427711196243763, 0.007062785793095827, 0.004444369580596685, -0.012321529909968376, -0.017631400376558304, 0.021312521770596504, -0.023722780868411064, -0.05033786967396736, -0.000173237276612781, -0.015381827019155025, 0.02378121018409729, 0.023167690262198448, 0.023065436631441116, 0.014892471954226494, -0.03505829721689224, 0.02760840766131878, -0.012117023579776287, -0.0016324019525200129, -0.019369708374142647, 0.05989125370979309, -0.00759596424177289, 0.06696134805679321, 0.00641639856621623, -0.002508859382942319, -0.03760002180933952, 0.005382908973842859, -0.030354641377925873, 0.03137717396020889, -0.009305056184530258, 0.006712202914059162, 0.014213217422366142, 0.02515432797372341, -0.018668541684746742, -0.00884491577744484, -0.03140639141201973, -0.003522263141348958, -0.043238565325737, -0.004678091499954462, 0.05603484436869621, -0.04031703993678093, -0.009020207449793816, 0.012204669415950775, -0.0006733201444149017, 0.010064652189612389, -0.0010599656961858273, 0.021575460210442543, 0.0099770063534379, 0.021078800782561302, 0.02481835149228573, -0.012095112353563309, 0.038973137736320496, -0.025125112384557724, 0.02873319573700428, -0.004524711519479752, -0.009757892228662968, -0.02936132252216339, 0.01881461963057518, 0.024891389533877373, -0.007402413059026003, 0.030237780883908272, 0.00470000272616744, 0.009626423940062523, -0.006116942036896944, -0.013271025381982327, -0.00619728397578001, -0.00355878216214478, -0.004995807074010372, 0.057028159499168396, 0.045458924025297165, -0.006445613689720631, 0.02592853084206581, -0.009480347856879234, 0.024570021778345108, 0.03736630082130432, -0.013877241872251034, 0.005390212871134281, 0.01691562682390213, 0.023693565279245377, -0.04919847473502159, -0.025475695729255676, 0.002037763362750411, -0.04353071749210358, -0.006883842404931784, -0.011393946595489979, 0.041894663125276566, -0.013906457461416721, 0.021590067073702812, 0.011065274477005005, -0.010838856920599937, -0.002581897424533963, 0.022481132298707962, 0.01087537594139576, 0.014680661261081696, 0.0015173668507486582, 0.00040969817200675607, -0.00967024639248848, -0.008370168507099152, -0.026878027245402336, 0.024511592462658882, -0.016608867794275284, -0.005985473748296499, -0.006189980544149876, 0.029945626854896545, 0.007785863243043423, 0.02569480985403061, 0.010071956552565098, -0.0004083287203684449, -0.002041415311396122, -0.016214461997151375, 0.010860768146812916, -0.015425650402903557, 0.017266210168600082, -0.0340941920876503, 0.03038385696709156, -0.04154407978057861, 0.0059087835252285, 0.0008120925631374121, 0.018989909440279007, 0.01481212954968214, -0.004334812052547932, 0.0032520222011953592, 0.009538778103888035, -0.015104282647371292, 0.034532420337200165, -0.009020207449793816, 0.0098601458594203, 0.012986176647245884, -0.025504909455776215, 0.023868856951594353, -0.0013493791921064258, 0.022101333364844322, -0.007008007261902094, 0.009005599655210972, 0.05328860878944397, -0.005554548930376768, -0.012124327011406422, -0.02746233157813549, -0.036051616072654724, -0.008728055283427238, 0.06386452913284302, -0.022305840626358986, -0.02467227540910244, -0.032370492815971375, 0.0005108103505335748, 0.012993481010198593, 0.025081289932131767, 0.021955257281661034, 0.011868693865835667, 0.05045473203063011, 0.02620607614517212, 0.02657126635313034, -0.003757811151444912, 0.014914383180439472, -0.0006582560017704964, -0.011978250928223133, 0.016126815229654312, 0.0039038872346282005, 0.02442394569516182, 0.01234344206750393, -0.00814375001937151, -0.019135987386107445, 0.02021695114672184, -0.007997673936188221, -0.015264966525137424, 0.008567371405661106, -0.00737684965133667, -0.02300700731575489, -0.010181513614952564, -0.010831552557647228, 0.01023264043033123, -0.03000405803322792, 0.005916087422519922, 0.0031990695279091597, 0.00534273823723197, -0.015104282647371292, -0.0007363155018538237, -0.024248654022812843, -0.03169854357838631, -0.01947196200489998, -0.022349663078784943, 0.029448969289660454, 0.03508751094341278, -0.004798604175448418, 0.02604539319872856, -0.050922174006700516, -0.011766440235078335, -0.00524778850376606, 0.0073366789147257805, 0.010597830638289452, -0.03272107616066933, 3.159754442094709e-06, 0.004473584704101086, 0.014067141339182854, -0.004374983254820108, 0.00214366870932281, 0.004623312968760729, 0.012160846032202244, -0.018215706571936607, -0.027900559827685356, -0.01855168119072914, -0.0033853165805339813, -0.005014066584408283, -0.029668083414435387, 0.021297914907336235, 0.020655179396271706, -0.02874780260026455, 0.001919076545163989, 0.03537966310977936, -0.01780669204890728, 0.030413072556257248, 0.022554170340299606, 0.018507858738303185, -0.022992398589849472, -0.023372197523713112, -0.020552925765514374, 0.020947331562638283, 0.00018932849343400449, -0.008304433897137642, -0.0060840751975774765, -0.00524778850376606, 0.014037925750017166, 0.0030310817528516054, 0.014191306196153164, 0.010838856920599937, -0.0021966213826090097, -0.007742040324956179, 0.01716395653784275, 0.008348256349563599, 0.015615548938512802, 0.01741228625178337, -0.01830335147678852, 0.007479103282094002, 0.00540116848424077, 0.0005395690677687526, 0.02604539319872856, -0.019778721034526825, 0.01500202901661396, -0.004364027641713619, -0.031085021793842316, -0.005032326094806194, 0.016711121425032616, -0.02990180440247059, 0.005759055260568857, -0.035671815276145935, -0.0060402522794902325, -0.022948576137423515, -0.03856412693858147, 0.020801255479454994, -0.009787107817828655, 0.01328563317656517, 0.030588362365961075, 0.034503206610679626, 0.016243677586317062, -0.042391322553157806, -0.023474451154470444, 0.034649282693862915, -0.0019428138621151447, -0.02554873377084732, 0.009071334265172482, -0.00642735417932272, -0.011788352392613888, -0.005616631358861923, -0.002943436149507761, 0.021823789924383163, -0.0216192826628685, -0.01056131161749363, -0.03213677182793617, 0.0191798098385334, 0.006540563423186541, 0.018610112369060516, 0.0019537697080522776, -0.016477398574352264, 0.00043617450864985585, -0.018128059804439545, 0.009882057085633278, -0.011773744598031044, -0.009933183901011944, -0.015542510896921158, -0.0008828482241369784, -0.00638718344271183, 0.022685639560222626, 0.0028101415373384953, -0.007186950650066137, -0.025373442098498344, 0.001455284422263503, -0.012642897665500641, -0.03239970654249191, 0.0031917656306177378, 0.0038089377339929342, -0.0217361431568861, 0.025081289932131767, -0.012387264519929886, -0.015075067058205605, -0.010298374108970165, 0.021297914907336235, 0.0042800335213541985, -0.026395974680781364, -0.021648498252034187, -0.0015392783097922802, -0.039761949330568314, -0.021064192056655884, -0.028660157695412636, -0.023547489196062088, 0.025008251890540123, 0.010473665781319141, -0.0025033813435584307, -0.015177320688962936, 0.008465117774903774, 0.00044644548324868083, -0.0042544701136648655, -0.01947196200489998, 0.014322774484753609, -0.010283766314387321, -0.021955257281661034, 0.003003692487254739, 0.010218032635748386, -0.0038235452957451344, -0.07566748559474945, -0.01653582975268364, 0.04297562688589096, 0.007468147203326225, -0.005554548930376768, -0.015118890441954136, -0.023708172142505646, -0.014987421222031116, 0.012379961088299751, -0.01475369930267334, -0.01062704622745514, -0.004331160336732864, 0.013081126846373081, -0.032487355172634125, 0.015323396772146225, 0.026133038103580475, -0.018464036285877228, 0.0015675806207582355, -0.027666838839650154, -0.015717802569270134, -0.04805907979607582, 0.003609908977523446, 0.0020286336075514555, 0.03537966310977936, -0.03660670295357704, -0.03155246749520302, -0.004776692949235439, 0.020567532628774643, -0.004542971029877663, -0.001551146968267858, -0.012387264519929886, -0.004035355988889933, -0.0004601401451509446, 0.014468850567936897, -0.010276462882757187, 0.00973598100244999, -0.0006523216725327075, -0.00010464992374181747, -0.00413395743817091, 0.01227040309458971, 0.008676928468048573, 0.026878027245402336, 0.00642735417932272, 0.008837612345814705, -0.004941028542816639, 0.0006660163053311408, -0.03152325004339218, 0.025402657687664032, -0.01744150184094906, 0.020158519968390465, 0.014417723752558231, -0.0004834210267290473, -0.017076311632990837, -0.013139557093381882, 0.014074444770812988, -0.0010563137475401163, -0.0007198819075711071, 0.02622068300843239, -0.000694318616297096, 0.0051382314413785934, -0.003005518577992916, 0.040492333471775055, 0.025782454758882523, 0.004568533971905708, 0.010254551656544209, -0.015323396772146225, 0.005634890869259834, -0.03219520300626755, -0.013183379545807838, -0.006095030810683966, 0.020947331562638283, -0.022671030834317207, 0.01157654169946909, -0.022422701120376587, 0.007048177998512983, 0.00018145407375413924, 0.011131009086966515, -0.011970947496592999, -0.005266048014163971, -0.021312521770596504, 0.019413530826568604, 0.008976384066045284, 0.0014233302790671587, -8.439325756626204e-05, -0.02353288047015667, -0.0008572848746553063, -0.002125409198924899, 0.03979116678237915, 0.03511672466993332, -0.011919820681214333, -0.003098641987890005, -0.001189608359709382, 0.006105986423790455, 0.026147644966840744, 0.021531635895371437, 0.03193226456642151, -0.012737847864627838, 0.006379879545420408, -0.012219277210533619, 0.006241106893867254, -0.020757433027029037, -0.008874131366610527, 0.01982254534959793, 0.031610894948244095, -0.009122461080551147, -0.04028782621026039, 0.0021272350568324327, -0.00322828465141356, 0.00979441124945879, 0.006361620035022497, 0.012599075213074684, 0.017251603305339813, 0.011131009086966515, 0.01469526905566454, -0.00737684965133667, 0.03365596383810043, 0.01023264043033123, -0.02416100911796093, 0.0005318087642081082, 0.012613683007657528, -0.006902101915329695, -0.012964265421032906, 0.016725728288292885, -0.021458597853779793, 0.0030073444359004498, 0.0001234800583915785, 0.007880812510848045, 0.008034192956984043, -0.01958882249891758, -0.008370168507099152, -0.018668541684746742, 0.0035861714277416468, -0.028908485546708107, 0.0032848892733454704, -0.021429384127259254, -0.020684394985437393, -0.01329293753951788, -0.016565045341849327, -0.007647090591490269, -0.018098846077919006, -0.011430465616285801, 0.017602186650037766, 0.009458435699343681, -0.024234047159552574, 0.0064529175870120525, -0.006200936157256365, 0.011620364151895046, 0.016681905835866928, 0.003951361868530512, 0.011905212886631489, 0.007997673936188221, -0.009451132267713547, 0.015104282647371292, 0.004188735969364643, -0.011350123211741447, 0.022349663078784943, 0.033130090683698654, -0.0015237577026709914, 0.033393025398254395, -0.013950279913842678, -0.0031698541715741158, 0.005580111872404814, -0.004144913051277399, 0.0026695432607084513, 0.0021418428514152765, 0.001547495136037469, -0.002631198149174452, -0.010407931171357632, -0.002759014954790473, -0.010532096028327942, 0.01574701815843582, -0.013300240971148014, 0.00921741034835577, -0.005941650830209255, -0.00820948462933302, -0.022568777203559875, -0.024248654022812843, -0.00041814320138655603, 0.0007112086750566959, -0.013095734640955925, -0.0099770063534379, 0.003933102358132601, 0.01545486506074667, 0.000697970506735146, 0.013519355095922947, 0.0013539440697059035, 0.003467484610155225, 0.01037141215056181, -0.03079286962747574, -0.0015374523354694247, -0.003951361868530512, -0.016813375055789948, -0.055947195738554, -0.034503206610679626, 0.006441961973905563, -0.008691536262631416, -0.019428139552474022, -0.009144372306764126, 0.034152623265981674, 0.013665431179106236, -0.008560067042708397, -0.009246625937521458, 0.00419238768517971, 0.019106771796941757, 0.011379338800907135, 0.00747179938480258, 0.002074282616376877, 0.0046488759107887745, -0.02036302722990513, 0.002023155800998211, 0.007858901284635067, 0.013468228280544281, -0.0197202917188406, -0.0198371522128582, 0.007508318405598402, 0.017470717430114746, 0.022042904049158096, 0.006876538507640362, -0.02657126635313034, -0.006902101915329695, 0.007026266772300005, 0.004484540317207575, 0.0378921739757061, 0.03114345297217369, -0.014198609627783298, 0.0008481551194563508, -0.015323396772146225, 0.0032045473344624043, 0.006591689772903919, -0.0038454567547887564, 0.021297914907336235, -0.001274515176191926, 0.007983066141605377, 0.0016534003661945462, 0.0024266913533210754, 0.00039326460682787, 0.0009732329053804278, 0.0030420375987887383, 0.003536870703101158, -0.009246625937521458, 0.04230367764830589, 0.011277085170149803, -0.02379581891000271, -0.03406497836112976, 0.01062704622745514, -0.0031187275890260935, -0.014556496404111385, -0.027053318917751312, 0.011832174845039845, 0.017456110566854477, 0.008925258181989193, -4.6390614443225786e-05, -0.03117266856133938, -0.01653582975268364, -0.0061096386052668095, 0.004780344665050507, 0.06433197110891342, -0.02570941671729088, 0.02606000006198883, -0.012241188436746597, -0.025212757289409637, -0.0025965049862861633, -0.006401790771633387, -0.00638718344271183, -0.0044626290909945965, 0.017076311632990837, -0.03292558342218399, -0.0022203586995601654, 0.00857467483729124, -0.00740606477484107, -0.0172808188945055, -0.0254172645509243, -0.01506045926362276, 0.009560689330101013, 0.0015283225802704692, 0.004721914418041706, -0.010765817947685719, -0.01766061596572399, 0.01334406342357397, -0.004747477360069752, 0.011474288068711758, 0.013241810724139214, -0.002885005669668317, 0.006474828813225031, 0.0253004040569067, -0.011795655824244022, 0.01278897374868393, -0.010714692063629627, 0.0012845578603446484, -0.02264181524515152, 0.023226121440529823, 0.017134742811322212, -0.014132875949144363, 0.005284307524561882, 0.005605675280094147, 0.0026202425360679626, 0.010276462882757187, 0.005025022197514772, -0.004941028542816639, 0.004751129541546106, -0.025125112384557724, -0.028630942106246948, -0.019924798980355263, 0.0002958043769467622, 0.008655017241835594, 0.002979955170303583, -0.0067779370583593845, 0.0055326372385025024, 0.009137067943811417, -0.0059964293614029884, 0.008925258181989193, 0.01820109784603119, -0.008304433897137642, -0.006997051648795605, 0.017339248210191727, -0.0033615792635828257, -0.007997673936188221, -0.003441921202465892, 0.01341710239648819, 0.015673980116844177, -0.018639327958226204, -0.016053777188062668, -0.006785240955650806, -0.009305056184530258, -0.008289826102554798, -0.000290098279947415, 0.007946547120809555, -0.00946574006229639, 0.01767522469162941, -0.006726810708642006, -0.011131009086966515, 0.0029982146807014942, 0.001322902855463326, -0.01744150184094906, -0.001768435351550579, 0.0018515161937102675, 0.01704709604382515, -0.0015986217185854912, -0.004177780356258154, -0.011613060720264912, 0.004612356889992952, -0.008749966509640217, -0.008596586063504219, -0.01831796020269394, -0.030091704800724983, -0.008589282631874084, 0.014125571586191654, -0.022072119638323784, 0.020056266337633133, -0.018259529024362564, -0.02481835149228573, 0.020275380462408066, 0.007946547120809555, -0.00793924368917942, -0.00566045381128788, -0.024628452956676483, 0.01731003448367119, 0.008881434798240662, 0.012715935707092285, -0.002581897424533963, 0.009553385898470879, 0.013008088804781437, 0.0034656585194170475, 0.01475369930267334, 0.006814456079155207, 0.021078800782561302, -0.016448182985186577, 0.006182676646858454, 0.02939053811132908, 0.006971488241106272, -0.015162712894380093, 0.0033104526810348034, 0.008421294391155243, 0.017353856936097145, 0.007522926200181246, 0.02211594209074974, 0.0033141046296805143, 0.03418183699250221, -0.00820218026638031, -0.010378716513514519, -0.022802500054240227, -0.008340952917933464, 0.005076149012893438, 0.0059197391383349895, 0.009911272674798965, 0.01985176093876362, 0.017470717430114746, -0.01768983155488968, -0.015133497305214405, -0.03272107616066933, 0.006277625914663076, -0.020041659474372864, 0.025972353294491768, 0.01563015766441822, -0.003456528764218092, -0.009020207449793816, 0.0013292937073856592, 0.0017958247335627675, -0.005492466501891613, -0.005981821566820145, -0.009750588797032833, 0.008311737328767776, -0.06515000015497208, -0.03675277903676033, -0.008757269941270351, 0.009253929369151592, -0.010086563415825367, -0.006682987790554762, 0.013336759991943836, -0.02021695114672184, -0.011817567050457, 0.008713447488844395, 0.0179381612688303, -0.007124868221580982, 0.0019957665354013443, -0.0021619282197207212, -0.01880001090466976, 0.0297557283192873, -0.04326777905225754, 0.03590553626418114, 0.005134579725563526, 0.015206536278128624, 0.003500351682305336, 0.023562096059322357, -0.0038673682138323784, 0.0020176779944449663, -0.005580111872404814, -0.023459842428565025, -0.005331782624125481, -0.01590770110487938, -0.01384802721440792, 0.01233613770455122, 0.04218681529164314, -0.01693023554980755, 0.009188194759190083, -0.0036409501917660236, 0.0004432500572875142, 0.013701950199902058, -9.808790491661057e-05, 0.0015867530601099133, -0.015308788977563381, 0.017368463799357414, -0.011875997297465801, -0.006953228730708361, -0.021443990990519524, 0.004893553908914328, -0.02570941671729088, 0.000935800839215517, -0.0007815078715793788, 0.0365774892270565, -0.016331322491168976, 0.01894608698785305, 0.01693023554980755, 0.0027864042203873396, 0.04285876825451851, -0.018712365999817848, 0.03672356531023979, -0.01449076272547245, 0.001001535216346383, -0.019924798980355263, 0.0020615009125322104, -0.0180550217628479, -0.018887657672166824, -0.011978250928223133, -0.005229528993368149, -0.00451740762218833, 0.008706143125891685, -0.006390835158526897, -0.0031442909967154264, 0.052733518183231354, 0.01830335147678852, -0.006997051648795605, 0.004364027641713619, -0.007373197935521603, -0.001426069182343781, 0.02036302722990513, -0.019384315237402916, -0.0016625301213935018, -0.021911434829235077, 0.037570808082818985, 0.012577163986861706, 0.0008718924946151674, -0.015673980116844177, 0.014030622318387032, 0.011328211985528469, 0.0001356911234324798, 0.00015771668404340744, -0.03406497836112976, -0.01907755620777607, 0.01985176093876362, 0.0038089377339929342, -0.005799226462841034, -0.012109720148146152, 0.0054815104231238365, -0.01399410329759121, -0.014439635910093784, 0.007274596486240625, 0.010510184802114964, -0.0009896664414554834, -0.007537533529102802, -0.013154164887964725, 0.002649457659572363, -0.01868315041065216, -0.009319663979113102, 0.02784213051199913, 0.012642897665500641, 0.012226580642163754, -0.01767522469162941, 0.003164376365020871, 0.029405144974589348, -0.001742872060276568, 0.0223934855312109, 0.004444369580596685, -0.012876619584858418, 0.02871858701109886, -0.019559606909751892, -0.013628912158310413, 0.00040764399454928935, 0.007669002283364534, 0.007186950650066137, -0.01614142395555973, -0.035408880561590195, -0.016608867794275284, -0.003562434110790491, 0.012423783540725708, -0.037716884166002274, 0.0197202917188406, 0.01780669204890728, 0.0050688451156020164, -0.01145237684249878, -0.009911272674798965, 0.0035642599686980247, -0.014782914891839027, 0.017981983721256256, -0.0055070738308131695, -0.0017072659684345126, 0.0046926988288760185, -0.017368463799357414, -0.008508940227329731, 0.014213217422366142, 0.017090918496251106, -0.004338464234024286, -0.003604430938139558, -0.008165661245584488, 0.018025808036327362, 0.0014781089266762137, -0.006810804363340139, 0.0007691826904192567, 0.004261774010956287, -0.008983688428997993, 0.007968458347022533, -0.0045064520090818405, 0.0004494126478675753, -0.009611816145479679, 0.007062785793095827, 0.02059674821794033, 0.004816863685846329, -0.02249573916196823, 0.0004311531374696642, -0.012226580642163754, -0.017383072525262833, 0.0006221934454515576, -0.014841345138847828, -0.00505423778668046, -0.004626964684575796, 0.04294641315937042, 0.005382908973842859, 0.022554170340299606, 0.013840722851455212, -0.011613060720264912, -0.006723158527165651, 0.007139476016163826, 0.005057889502495527, 0.006679335609078407, 0.007325722835958004, 0.001444328692741692, 0.00737684965133667, 0.012306923046708107, -0.008151053451001644, -0.032224416732788086, 0.017134742811322212, 0.01334406342357397, 0.011160223744809628, 0.005671409890055656, -0.0033469717018306255, 0.016053777188062668, -0.012628289870917797, -0.03342224285006523, -0.008004977367818356, -0.0006144331418909132, 0.017981983721256256, 0.0012023899471387267, 0.011313604190945625, 0.03406497836112976, 0.011189439333975315, -0.0025727676693350077, -0.016331322491168976, 0.0036683394573628902, -0.010050044395029545, 0.013512051664292812, -0.0031588985584676266, -0.004725566133856773, -0.0008928909664973617, 0.010765817947685719, 0.012431086972355843, -0.005101712420582771, -0.015148105099797249, 0.014213217422366142, 0.0043932427652180195, -0.009699461981654167, -0.0065661268308758736, -0.001094658742658794, -0.0018734276527538896, 0.0014525455189868808, -0.002722495701164007, -0.0296388678252697, -0.026279114186763763, -0.005492466501891613, 0.00967024639248848, 0.008932561613619328, -0.007387805264443159, 0.020640572533011436, -0.010904590599238873, -0.007270944304764271, -0.00832634512335062, -0.015673980116844177, 8.45073809614405e-05, -0.006087726913392544, -0.017061704769730568, -0.013979495503008366, 0.0010124908294528723, -0.006007384974509478, -0.00946574006229639, 0.01630210690200329, -0.010020829737186432, 0.0024303433019667864, -0.015527903102338314, 0.004082830622792244, -0.014045230112969875, 0.000950408517383039, 0.009911272674798965, 0.006189980544149876, 0.03903156891465187, 0.01744150184094906, 0.016959451138973236, 0.0215024221688509, -0.003962317947298288, -0.0038089377339929342, -0.021137230098247528, 0.021575460210442543, -0.0028667461592704058, 0.009889360517263412, -0.018712365999817848, 0.010919198393821716, -0.034795358777046204, -0.011160223744809628, -0.030471501871943474, -0.007402413059026003, -0.0028868315275758505, 0.011393946595489979, 0.0013840723549947143, 0.01944274641573429, 0.001647009514272213, 0.025373442098498344, -0.0018524292390793562, 0.015673980116844177, 0.009107853285968304, -0.011350123211741447, 0.0327795073390007, 0.012883923947811127, -0.0023627830669283867, 0.019413530826568604, 0.005773663055151701, -0.014030622318387032, -0.016448182985186577, -0.011649579741060734, -0.021429384127259254, 0.007446235977113247, 0.005616631358861923, -0.023605918511748314, 0.004846078809350729, 0.00332323438487947, -0.0006555170984938741, -0.0217361431568861, 0.0005409385776147246, -0.01130630075931549, -0.006723158527165651, -0.011832174845039845, -0.032487355172634125, 0.03371439501643181, 0.014644142240285873, -0.027681445702910423, 0.009210106916725636, 0.009553385898470879, -0.006657424382865429, 0.005298915319144726, 0.01270863227546215, 0.03523358702659607, -0.0198371522128582, 0.014315471053123474, -0.010444450192153454, 0.007281900383532047, 0.0019355100812390447, 0.01251873280853033, -0.018084237352013588, 0.038447264581918716, 0.011006844229996204, 0.009378094226121902, 0.004780344665050507, 0.007391457445919514, -0.013585089705884457, 0.012540644966065884, -0.019676469266414642, 0.01982254534959793, -0.02237887866795063, 0.03076365403831005, -0.010941109620034695, -0.006807152647525072, -0.018405605107545853, -0.009202802553772926, 0.020509103313088417, -0.023751994594931602, 0.03327616676688194, -0.03239970654249191, 0.012182758189737797, 0.01111640129238367, 0.005141883157193661, -0.012365353293716908, 0.012555251829326153, -0.005046933889389038, 0.003980577457696199, 0.010554008185863495, 0.017835907638072968, 0.011766440235078335, -0.01587848737835884, -0.027754483744502068, 0.0005117232794873416, -0.0025563340168446302, -0.037833742797374725, -0.019880974665284157, -0.011123704724013805, 0.019778721034526825, 0.010407931171357632, -0.013358671218156815, 0.0308805163949728, -0.0052258772775530815, -0.004389590583741665, 0.032487355172634125, -0.022802500054240227, -0.007011658977717161, 0.02518354170024395, 0.0217361431568861, -0.029434360563755035, -0.0026348500978201628, 0.0071285199373960495, 0.004568533971905708, 0.03064679354429245, -0.0013174250489100814, -0.004838775377720594, -0.017353856936097145, -0.02109340764582157, -0.0048752943985164165, 0.00921741034835577, 0.03774609789252281, 0.0032848892733454704, -0.0019300322746858, 0.01970568299293518, 0.025767847895622253, 0.006000081077218056, -0.010378716513514519, -0.00686923461034894, -0.00524778850376606, 0.0014945424627512693, -0.011868693865835667, 0.011773744598031044, -0.006489436607807875, -0.025767847895622253, -0.005707928910851479, 0.008698839694261551, -0.003838153090327978, -0.012715935707092285, 0.0025325966998934746, -0.014804826118052006, 0.012416480109095573, -0.00254172645509243, 0.03555495664477348, -2.49784643528983e-05, -0.008362864144146442, 0.0012042159214615822, 0.028952309861779213, 0.004802256356924772, 0.019559606909751892, 0.006785240955650806, 0.02452619932591915, 0.002118105301633477, 0.008581978268921375, 0.005978169851005077, 0.004159520845860243, 0.01830335147678852, -0.0043932427652180195, 0.01539643481373787, 0.0004217951209284365, -0.03470771387219429, 0.00040627451380714774, -0.011708009988069534, -0.03570103272795677, 0.0015392783097922802, 0.002457732567563653, 0.011291692964732647, 0.010218032635748386, -0.004630616400390863, -0.0008198528666980565, -0.012905835174024105, 0.0011339167831465602, -2.4507711714250036e-05, -0.003666513366624713, 0.003003692487254739, -0.012620986439287663, 0.005791922565549612, 0.013964887708425522, -0.0009933183901011944, 0.005868612788617611, -0.0076178754679858685, -0.009765196591615677, -0.03482457250356674, -0.006664728280156851, 0.008669624105095863, -0.014731788076460361, -0.003445573151111603, 0.017470717430114746, -0.0027024103328585625, -0.0217361431568861, 0.01703248918056488, -0.007307463325560093, -0.014768307097256184, 0.02619146928191185, -0.007931939326226711, 0.007022615056484938, 0.018244922161102295, -0.008158357813954353, -0.0033250602427870035, 0.002377390628680587, -0.0065478673204779625, -0.014972813427448273, 0.014140179380774498, -0.009626423940062523, 0.006182676646858454, 0.008070711977779865, -0.01868315041065216, 0.0031972434371709824, -0.016185246407985687, 0.008355560712516308, 0.012299618683755398, 0.0021345389541238546, 0.010429843328893185, -0.0008801093208603561, -0.015279574319720268, 0.019486568868160248, -0.013541266322135925, 0.004170476458966732, 0.030734438449144363, -0.007639787159860134, -0.012745151296257973, 0.019150594249367714, -0.01755836233496666, -0.0099185761064291, -0.006664728280156851, -0.019428139552474022, -0.011795655824244022, -0.006577082443982363, 0.016477398574352264, 0.043063271790742874, 0.007778559345752001, 0.0076178754679858685, -0.0028430086094886065, -0.0010362282628193498, -0.005839397199451923, 0.016345931217074394, -0.008735358715057373, -0.013307544402778149, 0.001657965243794024, 0.014972813427448273, 0.022145157679915428, 0.006975139956921339, 0.007968458347022533, 0.0029671734664589167, 0.01690101996064186, 0.01558633428066969, 0.012175453826785088, 0.011547326110303402, 0.007537533529102802, 0.028265751898288727, 0.020173126831650734, 0.0029689993243664503, -0.044816188514232635, 0.024234047159552574, -6.413659866666421e-05, 0.0034145319368690252, -0.002505207434296608, -0.032750289887189865, -0.00787350907921791, -0.010144994594156742, -0.015206536278128624, -0.002538074506446719, -0.009750588797032833, 0.0007463582442142069, 0.011678794398903847, 0.010700084269046783, -0.002671369118615985, -0.006697595119476318, 0.01833256706595421, -0.006861931178718805, -0.008830307982861996, -0.002947088098153472, 0.007457191590219736, 0.010692779906094074, -0.01488516852259636, -0.00362634239718318, 0.009210106916725636, -0.01340979803353548, -0.010838856920599937, 0.021210268139839172, 0.020173126831650734, 0.002207576995715499, 0.0016479224432259798, -0.01665269024670124, 0.015673980116844177, -0.021151838824152946, -0.009348878636956215, 0.002070630667731166, -0.0020980199333280325, -0.012255796231329441, -0.0015420172130689025, -0.02325533702969551, -0.018639327958226204, 0.005521681625396013, -0.0023153082001954317, -0.014417723752558231, 0.011861390434205532, -0.0010344022884964943, 0.007307463325560093, -0.010999539867043495, 0.0064090946689248085, -0.018668541684746742, 0.005616631358861923, 0.055508967489004135, -0.01062704622745514, 0.0028904834762215614, -0.006460221484303474, -0.017748262733221054, -0.011678794398903847, 0.015279574319720268, 0.007690913509577513, -0.0002063326828647405, 0.005627586971968412, -0.008939865045249462, -0.007062785793095827, -0.016345931217074394, -0.009129764512181282, -0.006281278096139431, 0.03371439501643181, -0.018142668530344963, -0.012752454727888107, 0.002833878854289651, 0.0051309275440871716, 0.007888116873800755, -0.005065193399786949, 0.021166445687413216, 0.002085238229483366, 0.0035167853347957134, -0.04589715227484703, 0.0071979062631726265, -0.0031114236917346716, 0.0023664350155740976, -0.012635594233870506, -0.00725268479436636, 0.02122487686574459, -0.028557904064655304, -0.011393946595489979, 0.03260421380400658, -0.0198371522128582, -0.0056202830746769905, -0.008618497289717197, 0.01525035873055458, -0.0020505450665950775, 0.022554170340299606, -0.009787107817828655, 0.006032948382198811, -0.0077201290987432, 0.028324181213974953, -0.009662942960858345, 0.040229395031929016, 0.01780669204890728, -0.010254551656544209, -0.003629994345828891, -0.008158357813954353, -0.025329619646072388, -0.022583385929465294, -0.0010234465589746833, -0.028061244636774063, -0.015338004566729069, 0.04072605445981026, -0.01653582975268364, 0.02099115401506424, 0.011518110521137714, -0.018244922161102295, -0.022948576137423515, -0.00820218026638031, -0.002373738680034876, 0.01717856526374817, 0.007011658977717161, 0.0007637048256583512, 0.00985284149646759, 0.0016086645191535354, 0.007742040324956179, 0.00940730981528759, 0.013234506361186504, -0.00940730981528759, 0.0076616983860731125, -0.01741228625178337, 0.0022094030864536762, -0.011518110521137714, -0.0004916377947665751, -0.005185706075280905, -0.028046635910868645, -0.001647009514272213, 0.0008038757950998843, 0.0035058294888585806, 0.002726147649809718, -0.0021016718819737434, 0.004144913051277399, 0.0199540127068758, 0.00375050725415349, -0.019734898582100868, 0.0019501177594065666, -0.027549978345632553, 0.020027050748467445, 0.00793924368917942, -0.004448021296411753, -0.00781507883220911, 0.035408880561590195, 0.007095653098076582, 0.002030459698289633, -0.015016636811196804, -4.022802386316471e-05, -0.0017583926673978567, 0.005985473748296499, 0.004933724645525217, -0.006420050282031298, 0.012000162154436111, -0.004703654907643795, 0.015235750935971737, -0.009516866877675056, 0.001893513137474656, -0.004659831989556551, 0.022817106917500496, 0.01881461963057518, 0.008494333364069462, -0.002870397875085473, -0.00744258426129818, 0.009699461981654167, -0.004079178906977177, 0.004780344665050507, 0.0012955135898664594, -0.005284307524561882, -0.0014635012485086918, 0.021034978330135345, 0.0016114034224301577, -0.0060840751975774765, 0.007654394488781691, 0.015338004566729069, 0.014498066157102585, 0.019486568868160248, 0.012182758189737797, 0.003045689547434449, 0.014081749133765697, 0.01931127719581127, -0.010575919412076473, 0.014739091508090496, -0.008282522670924664, 0.016214461997151375, 0.010079259984195232, 0.012883923947811127, -0.013365975581109524, -0.005331782624125481, -0.013110341504216194, -0.03558417037129402, 0.004798604175448418, 0.004101090133190155, -0.00876457430422306, -0.015717802569270134, 0.010276462882757187, 0.016448182985186577, 0.010123083367943764, 0.002132713096216321, 0.012431086972355843, 0.018478643149137497, -0.011686098761856556, 0.0005897827795706689, -0.002291570883244276, -0.002023155800998211, 0.017572971060872078, 0.017266210168600082, 0.026366759091615677, 0.0102472472935915, 0.021853003650903702, 0.004356723744422197, 0.0022605296690016985, -0.011101793497800827, -0.010144994594156742, -0.01252603717148304, 0.011474288068711758, 0.014439635910093784, -0.016857197508215904, -0.01828874461352825, -0.020260773599147797, -0.013672735542058945, 0.0020578489638864994, 0.014045230112969875, 0.01500202901661396, -0.018244922161102295, 0.006398139055818319, -0.008246003650128841, 0.006515000015497208, 0.01435929350554943, -0.00872075092047453, -0.005185706075280905, -0.0022203586995601654, 0.007946547120809555, -0.018361782655119896, 0.006438309792429209, 0.0035642599686980247, -0.004754781257361174, -0.00546690309420228, 0.005444991402328014, -0.025139719247817993, -0.00753022963181138, 0.015308788977563381, 0.02341601997613907, 0.003743203356862068, -0.019369708374142647, -0.013329456560313702, -0.010634349659085274, 0.010846160352230072, -0.007099304813891649, 0.004911813419312239, -0.0017081788973882794, -0.02721400186419487, 0.000665103318169713, -0.016754943877458572, 0.013300240971148014, 0.010634349659085274, 0.0012535166461020708, 0.0013201639521867037, -0.01868315041065216, 0.019267454743385315, -0.021590067073702812, -0.019398923963308334, -0.008121838793158531, 0.003925798926502466, 0.012511429376900196, -0.005412124563008547, -0.0029306544456630945, -0.0289815254509449, -0.012971569783985615, -0.013219899497926235, 0.02099115401506424, -0.016492007300257683, 0.0020432414021342993, 0.004809559788554907, -0.012482213787734509, 0.004729217849671841, 0.002936132252216339, 0.014184001833200455, -0.01716395653784275, 0.02467227540910244, -0.023489058017730713, 0.0117591368034482, 0.0020980199333280325, 0.03026699461042881, 0.00521857338026166, 0.012694024480879307, 0.013694646768271923, 0.013183379545807838, -0.0099185761064291, 0.017397679388523102, 0.0013256417587399483, 0.0024230394046753645, -0.0018378215609118342, 0.0047182622365653515, -0.01340979803353548, 0.010144994594156742, -0.007910028100013733, 0.022656423971056938, 0.0025910271797329187, 0.0025727676693350077, 0.010444450192153454, -0.01302269659936428, -0.016477398574352264, 0.0005706102820113301, 0.01386263407766819, -0.019238239154219627, -0.005415776278823614, 0.01945735327899456, -0.005813834257423878, 0.011788352392613888, 0.010261855088174343, -0.005328130442649126, 0.004137609153985977, 0.01589309424161911, 0.00454662274569273, -0.0028758759144693613, 0.0011357427574694157, 0.006617253180593252, -0.000359256227966398, -0.012591770850121975, 0.02977033704519272, -0.011810263618826866, 0.010378716513514519, -0.015279574319720268, -0.018537074327468872, 0.011357426643371582, -7.895820090197958e-06, 0.03716179355978966, -0.006449265871196985, -0.029478183016180992, -0.008669624105095863, -0.008370168507099152, 0.02378121018409729, -0.006047556176781654, -0.007647090591490269, 0.010429843328893185, -0.007910028100013733, -0.022700246423482895, -0.01227770745754242, -0.0012772540794685483, 0.0099770063534379, -0.021575460210442543, 0.011817567050457, -0.006989747751504183, 0.024759922176599503, 0.0034583548549562693, 0.005145535338670015, 0.010955717414617538, -0.023489058017730713, -0.007727432530373335, -0.015951525419950485, 0.016857197508215904, 0.009180891327559948, -1.881587377283722e-05, 0.0019282063003629446, 0.009947791695594788, -0.018770795315504074, -0.00781507883220911, -0.0038892796728760004, 0.00464157247915864, 0.0016972232842817903, -0.01828874461352825, -0.029419753700494766, -0.009480347856879234, 0.0006838193512521684, 0.008538155816495419, -0.017996592447161674, -0.01880001090466976, 0.008231395855545998, -0.007844293490052223, -0.012255796231329441, 0.0015757973305881023, 0.00396962184458971, -0.007880812510848045, -0.008990991860628128, -0.001720047672279179, 0.0031223795376718044, 0.0021601023618131876, -0.0066902912221848965, 0.0016040996415540576, -0.010174209251999855, -7.49211321817711e-05, 0.00181317119859159, 0.013395190238952637, -0.031114237383008003, 0.010123083367943764, -0.0021162794437259436, -0.004353071562945843, 0.012628289870917797, 0.00750101450830698, 0.005109016317874193, -0.01806963048875332, 0.01655043661594391, -0.0018515161937102675, -0.014001406729221344, -0.02021695114672184, 0.007522926200181246, 0.01316877268254757, -0.020815862342715263, 0.00762517936527729, -0.005105364136397839, 0.0026878027711063623, 0.014483458362519741, 0.012891227379441261, -0.012730543501675129, 0.016711121425032616, -0.000679710996337235, 0.0040170964784920216, 0.00921741034835577, 0.0016680079279467463, -0.04221603274345398, -0.021327130496501923, 0.001536539406515658, 0.021823789924383163, -0.021896827965974808, -0.0026878027711063623, 0.013585089705884457, 0.005861308891326189, 0.034561637789011, -0.015425650402903557, -0.007018962875008583, 0.019121378660202026, -0.013460924848914146, -0.005214921664446592, 0.007771255448460579, 0.004528363235294819, 0.002793707884848118, 0.01716395653784275, 0.004970243666321039, -0.0027791003230959177, -0.0004185996949672699, 0.030413072556257248, 0.013336759991943836, -0.000878739811014384, 0.03342224285006523, -0.015338004566729069, -0.016886413097381592, 0.007734736427664757, 0.026162253692746162, -0.006368923932313919, 0.002041415311396122, -0.0021126274950802326, -0.017894338816404343, -0.012489518150687218, 0.0007390544633381069, 0.012876619584858418, -0.011613060720264912, 0.004926420748233795, 0.03374360874295235, -0.012993481010198593, -0.0003320951946079731, -0.019997837021946907, 0.012029377743601799, -0.018712365999817848, 0.0005021370598115027, 0.002052371157333255, 0.013877241872251034, 0.002494251588359475, 0.028265751898288727, 0.01843482069671154, -0.017996592447161674, -0.005521681625396013, 0.0139867989346385, 0.008107230998575687, -0.00018967085634358227, 0.025621771812438965, -0.042040739208459854, 0.013899153098464012, -0.0016899193869903684, 0.002563637914136052, -0.017383072525262833, 0.026980280876159668, -0.010612438432872295, 0.005572808440774679, -0.0010919198393821716, -0.011335515417158604, 0.031085021793842316, 0.026483621448278427, 0.00578461866825819, -0.012533340603113174, -0.00967024639248848, -0.0014269822277128696, -0.0036354721523821354, 0.0052514406852424145, 0.003794330172240734, -0.007230773568153381, 0.0021564504131674767, -0.008180269040167332, 0.01048097014427185, -0.004060919396579266, 0.0050688451156020164, 0.02516893483698368, -0.0061096386052668095, -0.011956339702010155, 0.009012904018163681, -0.002454080618917942, -0.00013124036195222288, -0.008479725569486618, 0.009436524473130703, -0.016754943877458572, 0.010261855088174343, 0.002899613231420517, 0.0059270430356264114, -0.007281900383532047, -0.0030566451605409384, -0.008231395855545998, 0.02391267940402031, 0.012613683007657528, 0.006602645851671696, 0.009180891327559948, -0.02275867760181427, -0.004809559788554907, 0.023985717445611954, 0.02683420479297638, -0.0005984560702927411, -0.0009549733949825168, 0.009319663979113102, -0.011021452024579048, -0.009056726470589638, 0.0013877241872251034, -0.00017974224465433508, 0.03993724286556244, 0.00838477537035942, -0.00946574006229639, 0.002678673015907407, 0.003398098284378648, -0.01475369930267334, 0.01450536958873272, -0.005368301644921303, 0.021166445687413216, 0.006975139956921339, 0.0026202425360679626, -0.005298915319144726, 0.0138699384406209, -0.006259366404265165, -0.0016415317077189684, -0.009129764512181282, 0.000736772024538368, 0.005488814320415258, -0.00010978541831718758, 0.007910028100013733, -0.00454662274569273, -0.005864960607141256, -0.014498066157102585, 0.021706927567720413, 0.012452999129891396, 0.0034492250997573137, -0.0035167853347957134, 0.006244759075343609, -0.00512362364679575, -0.008494333364069462, 0.014315471053123474, -0.002631198149174452, -0.020947331562638283, -0.00940000545233488, 0.021794574335217476, 0.0014507195446640253, -0.0015557118458673358, 0.028309574350714684, 0.01969107612967491, 0.01151080708950758, 0.01766061596572399, -0.010312981903553009, 0.017748262733221054, -0.017996592447161674, 0.04297562688589096, 0.028280358761548996, 0.01163497194647789, 0.00877918116748333, 0.004579490050673485, 0.01430086325854063, 0.005923391319811344, 0.02452619932591915, -0.009020207449793816, 0.013658127747476101, -0.04174858704209328, -0.004236210603266954, -0.019413530826568604, 0.018507858738303185, -0.010349500924348831, 0.01676955074071884, -0.009706765413284302, 0.008311737328767776, -0.011978250928223133, 0.0017876079073175788, 0.010860768146812916, -0.020684394985437393, 0.012591770850121975, -0.004206995479762554, -0.014519977383315563, 0.010196121409535408, 0.010941109620034695, 0.00942191667854786, 0.03424026817083359, 0.0014607623452320695, -0.004973895847797394, -0.002749884966760874, -0.016345931217074394, -0.007515622302889824, 0.01830335147678852, -0.006222847383469343, 0.020406849682331085, -0.007044526282697916, -0.02886466309428215, 0.010079259984195232, -0.0067341141402721405, -0.014220520853996277, -0.0032264587935060263, -0.0025928530376404524, 0.012620986439287663, -0.0009613641886971891, 0.004448021296411753, -0.011415857821702957, -0.007924635894596577, 0.00832634512335062, -0.004181432072073221, -0.01678415946662426, -0.012577163986861706, -0.017061704769730568, 0.004345768131315708, -0.008823004551231861, 0.002302526729181409, 0.0038929316215217113, 0.004491844214498997, 6.065587149350904e-05, -0.00638718344271183, -0.006306841503828764, -0.005605675280094147, 0.018989909440279007, -0.0030548193026334047, -0.01234344206750393, 0.02046528086066246, -0.027287039905786514, 0.0361100435256958, -0.004301945213228464, -0.0024595586583018303, -0.013774989172816277, -0.009012904018163681, 0.020187735557556152, 0.021896827965974808, 0.005441339686512947, 0.006726810708642006, 0.013373279012739658, 0.023445235565304756, 0.01151080708950758, -0.0412227138876915, 0.0004087852139491588, -0.005707928910851479, -0.011788352392613888, 0.005875916685909033, 0.015542510896921158, 0.01278897374868393, -0.007044526282697916, -0.005141883157193661, 0.0031662024557590485, -0.0051820543594658375, -0.011372034437954426, 0.011043363250792027, -0.009874753654003143, -0.010860768146812916, -0.0160391703248024, 0.011583845131099224, -0.01843482069671154, -0.008056104183197021, -0.01638975366950035, 0.0021381909027695656, -0.00042430582107044756, -0.013665431179106236, 0.009012904018163681, 0.012358048930764198, -0.01741228625178337, -0.026498228311538696, 0.005843049380928278, 0.03462006896734238, -0.011927124112844467, 0.0045064520090818405, -0.0020651526283472776, -0.02147320657968521, 0.006018340587615967, -0.0001709548378130421, 5.3323532483773306e-05, -0.020552925765514374, 0.0006107812514528632, -0.0029525659047067165, 0.007479103282094002, -0.002581897424533963, -0.0028904834762215614, 0.004327508620917797, 0.005627586971968412, -0.002244096016511321, 0.004714610520750284, 0.0005829354631714523, -0.007552141323685646, 0.005390212871134281, -0.018142668530344963, -0.0012224754318594933, -0.0068290638737380505, -0.009604512713849545, -0.008954472839832306, -0.008815700188279152, 0.006482132710516453, 0.001709091942757368, -0.01703248918056488, -0.006653772201389074, 0.024336300790309906, -0.004962940234690905, 0.01640436053276062, -0.00047292179078795016, 0.022437309846282005, 0.007902723737061024, 0.0042544701136648655, 0.010488273575901985, 0.0023372196592390537, -0.009436524473130703, 0.006471177097409964, 0.00896908063441515, -0.012701328843832016, 0.0015054981922730803, 0.015980739146471024, -0.023620527237653732, -0.0009668420534580946, 0.0017337423050776124, 0.0059270430356264114, -0.023883463814854622, -0.0009641031501814723, -0.0343279130756855, 0.023211512714624405, 0.03353910148143768, 0.0209619402885437, 0.016725728288292885, 0.002978129079565406, -0.013563178479671478, -0.013015392236411572, -0.006372575648128986, -0.004842427093535662, -0.015323396772146225, 0.005886872299015522, -0.005032326094806194, 0.033889684826135635, 0.020757433027029037, 0.004239862784743309, 0.0076178754679858685, 0.0039294506423175335, 0.00046881340676918626, -0.0034930480178445578, -0.0031515946611762047, 0.014731788076460361, -0.00670489901676774, -0.009180891327559948, 0.00762517936527729, -0.0004752042586915195, -0.005777314770966768, -0.0010855289874598384, 0.0024376471992582083, -0.02138555981218815, -0.0037231179885566235, -0.012073200196027756, -0.004842427093535662, -0.016506614163517952, 0.0191798098385334, 0.019895583391189575, -0.0034492250997573137, 0.017879730090498924, 0.002976303221657872, 0.002302526729181409, -0.017003273591399193, 0.016360538080334663, -0.00857467483729124, -0.004185084253549576, 0.000490268343128264, 0.020888900384306908, 0.004911813419312239, -0.020772039890289307, -0.012036681175231934, 0.020246166735887527, 0.009137067943811417, -0.003456528764218092, 0.0024668623227626085, -0.015089674852788448, -0.005317174829542637, 0.0037377255503088236, -0.033480674028396606, 0.017616793513298035, 0.003206373192369938, -0.005678713321685791, -0.0046671354211866856, -0.0030566451605409384, 0.02569480985403061, -0.01488516852259636, -0.004594097379595041, 0.007793167140334845, 0.018756188452243805, 0.006160764954984188, -0.009567993693053722, 0.004981199745088816, 0.0008623062749393284, 0.0007988543948158622, 0.021663105115294456, 0.004221603274345398, 0.009239321574568748, -0.0024449508637189865, -0.0035934753250330687, -0.005203965585678816, 0.0009741458925418556, 0.01909216307103634, 0.016871804371476173, -0.012233884073793888, -0.006215543486177921, -0.04274190589785576, 0.03830118849873543, -0.0011914342176169157, 0.012452999129891396, 0.0042800335213541985, -0.014709876850247383, 0.006113290321081877, -0.008808396756649017, -0.0008878696244210005, 0.0002697845338843763, -0.006953228730708361, -0.018595503643155098, -0.019676469266414642, 0.004130305256694555, 0.0028284010477364063, 0.0015100630698725581, 0.012752454727888107, -0.0012069548247382045, 0.03575946018099785, -0.016871804371476173, 0.010261855088174343, -0.004466280806809664, 0.0064346580766141415, 0.0004085569526068866, -0.002203925047069788, -0.019734898582100868, 0.012233884073793888, 0.01744150184094906, 0.0035953011829406023, -0.01029107067734003, -0.022977791726589203, -0.01679876632988453, -0.0278567373752594, 0.003168028313666582, -0.012715935707092285, -0.00979441124945879, 0.0009056726703420281, 0.008114534430205822, -0.021064192056655884, -0.020918115973472595, -0.017061704769730568, -0.015951525419950485, -0.0076616983860731125, 0.007727432530373335, -0.007807774469256401, 0.007318419404327869, 0.01565937139093876, -0.023839641362428665, 0.010575919412076473, -0.00759596424177289, -0.014870560728013515, 0.0059270430356264114, -0.003482092171907425, -0.026162253692746162, 0.012715935707092285, 0.010773122310638428, -0.0012617334723472595, -0.030822085216641426, 0.00629223370924592, -0.0198371522128582, 0.015338004566729069, -0.007373197935521603, -0.015352612361311913, -0.016112208366394043, -0.003193591721355915, -0.01615603081882, 0.004951984155923128, -0.003058471018448472, 0.008801093325018883, -0.003018300049006939, 0.006672031711786985, 0.008917953819036484, 0.024993643164634705, -0.025913923978805542, -0.01386263407766819, -0.00759596424177289, 0.012051288969814777, -0.00753022963181138, 0.0010572266764938831, 0.012927746400237083, 0.02836800366640091, -0.0068035004660487175, 0.003936754539608955, 0.010320286266505718, -0.010948413982987404, 0.019545000046491623, -0.0021400167606770992, 0.0033360158558934927, -0.01690101996064186, -0.0021418428514152765, 0.006613601464778185, -0.0019738550763577223, 0.0023481755051761866, 0.015717802569270134, -0.010203424841165543, -0.010144994594156742, -0.007398761343210936, 0.0008193963440135121, 0.03012091852724552, 0.01741228625178337, 0.006412746384739876, -0.01023264043033123, -0.0040097925812006, 0.02125409245491028, -0.009830930270254612, -0.03561338409781456, -0.005072497297078371, 0.008896042592823505, -0.012672113254666328, -0.010473665781319141, -0.01251873280853033, -0.003609908977523446, -0.008348256349563599, 0.013497443869709969, 0.014527281746268272, 0.014870560728013515, 0.00039988369098864496, -0.015162712894380093, -0.005280655808746815, 0.020640572533011436, -0.0054632509127259254, 0.00010242454300168902, -0.003120553446933627, 0.028528688475489616, 0.019252847880125046, -0.004364027641713619, -0.024511592462658882, 0.025373442098498344, -0.020523710176348686, 0.01754375547170639, 0.007931939326226711, -0.012613683007657528, 0.00428733741864562, 0.006730462424457073, -0.009356182999908924, 0.007256336975842714, -0.0015045851469039917, 0.012971569783985615, 0.004973895847797394, -0.020918115973472595, 0.006584386341273785, 0.009757892228662968, -0.008187572471797466, 0.008625801652669907, -0.02020234242081642, 0.030354641377925873, 0.004619660787284374, 0.03932372108101845, 0.009370789863169193, 0.012862012721598148, -0.014249736443161964, -0.01652122102677822, -0.01630210690200329, 0.00985284149646759, -0.008530852384865284, -0.004093786235898733, 0.006390835158526897, 0.006051207892596722, -0.017368463799357414, 0.0234014131128788, 0.005813834257423878, -0.0199540127068758, 0.0014671531971544027, 0.001875253627076745, -0.007040874566882849, 0.002769970567896962, 0.0036555577535182238, 0.0011156572727486491, -0.037453945726156235, -0.002056022873148322, 0.009144372306764126, 0.018113452941179276, 0.023474451154470444, 0.006281278096139431, -0.009005599655210972, -0.009962399490177631, -0.009575297124683857, 0.03678199648857117, 0.00025426395586691797, -0.019238239154219627, 0.00903481524437666, -0.000679710996337235, -0.008742662146687508, -0.005514377728104591, 0.004871642217040062, 0.022349663078784943, -0.012138934805989265, -0.0026987583842128515, -0.03444477543234825, 0.0072855520993471146, -0.00333784194663167, -0.01252603717148304, 0.021560851484537125, 0.009582600556313992, -0.02074282430112362, 0.0037267699372023344, -0.007603268139064312, 0.012825492769479752, -0.022028295323252678, -0.01297887321561575, -0.008625801652669907, -0.022028295323252678, 0.025504909455776215, 0.0018296048510819674, -0.000236689142184332, -0.009692157618701458, 0.006555170752108097, -0.010904590599238873, 0.007858901284635067, 0.019150594249367714, 0.01884383335709572, -0.00814375001937151, 0.02480374462902546, -0.010692779906094074, 0.0008686970686540008, 0.012350745499134064, 0.008742662146687508, 0.0005879568634554744, -0.021677713841199875, -0.01004274096339941, -0.0014972813660278916, -0.008304433897137642, -0.02886466309428215, -0.012314226478338242, -0.020129304379224777, -0.014775610528886318, 0.007219817955046892, 0.005912435706704855, 0.0038600645493716, -0.006493088323622942, -0.007475451100617647, -0.022437309846282005, -0.005116320215165615, -0.013921065255999565, 0.0042106471955776215, 0.009575297124683857, 0.01399410329759121, -0.016579652205109596, -0.01372386235743761, -0.005050585605204105, 0.0072928559966385365, 0.018493251875042915, -0.011671490967273712, -0.0030566451605409384, 0.0005080713890492916, 0.0014425028348341584, 0.017748262733221054, -0.005255092401057482, -0.005795574747025967, 0.017090918496251106, 0.007588660344481468, 0.012138934805989265, -0.0032629778143018484, 0.004510103724896908, -0.01906294748187065, -0.007603268139064312, 0.008048800751566887, -0.007303811609745026, 0.02490599825978279, 0.013365975581109524, -0.02224740944802761, -0.012314226478338242, 0.019895583391189575, -0.004703654907643795, 0.004594097379595041, 0.04452403634786606, -0.006255714688450098, 0.011532718315720558, -0.0007673567160964012, 0.02097654715180397, -0.010787730105221272, 0.016711121425032616, -0.01716395653784275, 0.015235750935971737, 0.004360375460237265, -0.01717856526374817, 0.011605756357312202, 0.01653582975268364, 0.0032209809869527817, -0.01602456346154213, 0.013154164887964725, -0.009538778103888035, -0.010590527206659317, 0.005244136787950993, 0.008881434798240662, -0.017266210168600082, 0.0007787689100950956, -0.004108394030481577, 0.01767522469162941, 0.021137230098247528, -0.019238239154219627, -0.005854004994034767, -0.01132090762257576, -0.01493629440665245, 0.03269186243414879, 0.004999459255486727, 0.010196121409535408, -0.0036153867840766907, -0.005653150379657745, -0.02261260151863098, 0.007836990058422089, 0.0023865203838795424, 0.0178213007748127, -0.012080504558980465, 0.00915167573839426, -0.006909405812621117, 0.011905212886631489, 0.01998322829604149, -0.010911894962191582, 0.009056726470589638, 0.02505207434296608, 0.008684231899678707, 0.010196121409535408, -4.9357789976056665e-05, -0.008443206548690796, -0.02442394569516182, 0.004028052091598511, 0.011540022678673267, -0.015805447474122047, 0.007763951551169157, -0.0016488354885950685, -0.010320286266505718, 0.014739091508090496, -0.0028904834762215614, -0.020436065271496773, -0.01488516852259636, 0.010948413982987404, 0.004948332440108061, -0.0028685720171779394, 0.017003273591399193, -0.0008047887240536511, 0.0008175704278983176, -0.01704709604382515, -0.005536289419978857, 0.0024997296277433634, -0.0034054021816700697, -0.009078637696802616, 0.010013525374233723, 0.01037141215056181, 0.0038235452957451344, -0.003018300049006939, 0.0033451456110924482, -0.008107230998575687, 0.024964427575469017, -0.003951361868530512, -0.03201990947127342, 0.002317134290933609, -0.0051309275440871716, 0.00884491577744484, -0.0027425813023000956, 0.005985473748296499], "2c315702-c74a-425f-95cf-aa7f21ba6275": [-0.048058636486530304, -0.033083196729421616, -0.007659251801669598, 0.002112447051331401, -0.017153143882751465, -0.022239424288272858, 0.025088338181376457, 0.029921049252152443, -0.03552938252687454, -0.006495821289718151, 0.0023324547801166773, 0.00809180922806263, 0.003786743152886629, -0.02584904246032238, -0.03955664113163948, 0.01466966699808836, -0.033351678401231766, 0.010366465896368027, 0.013841841369867325, -0.040511250495910645, 0.09886177629232407, 0.0005640028393827379, -0.031144144013524055, -0.015094767324626446, -0.0067978654988110065, 0.00013307669723872095, -0.0003894416440743953, 0.022492993623018265, -0.014229651540517807, 0.016317861154675484, 0.020807510241866112, 0.015497492626309395, 0.020926836878061295, 0.009210492484271526, 0.0010273242369294167, -0.04030243307352066, 0.001060884678736329, 0.03964613750576973, -0.015437830239534378, -0.03156178444623947, -0.037110455334186554, 0.039795294404029846, -0.01600462943315506, -0.017973512411117554, -0.035380225628614426, -0.020583773031830788, 0.0024629677645862103, 0.005850713700056076, -0.027012472972273827, -0.006894818041473627, 0.008971840143203735, -0.021284814924001694, -0.004403883591294289, 0.038333550095558167, 0.013476405292749405, -0.020941751077771187, 0.019465090706944466, 0.04629857465624809, -0.01421473640948534, -0.01117937546223402, 0.016392439603805542, 0.028310146182775497, -0.006969396956264973, -0.008218593895435333, -0.018808795139193535, -0.05656062811613083, 0.01425202563405037, -0.0045530409552156925, -0.05122078210115433, -0.006973125971853733, -0.011925164610147476, -0.013819468207657337, -0.025371737778186798, 0.019748490303754807, -0.0015512409154325724, -0.005641893018037081, 0.05987193062901497, 0.01730230264365673, 0.02024071104824543, -0.009046419523656368, -0.04089906066656113, 0.010224765166640282, 0.008792851120233536, -0.0095684714615345, 0.02869795635342598, 0.02748977765440941, 0.02015121653676033, -0.02640092745423317, -0.011872959323227406, -0.018913205713033676, 0.004929664544761181, 0.0166460070759058, -0.006111740134656429, -0.016138872131705284, 0.004993056412786245, 0.011164459399878979, -0.005265269428491592, -0.00934473518282175, 0.03740876913070679, -0.049818698316812515, -0.026997556909918785, 0.0316811129450798, 0.0005229844828136265, 0.005104925017803907, -0.014900862239301205, 0.0047394884750247, -0.0029309503734111786, -0.02850405126810074, -0.006495821289718151, 0.06348154693841934, 0.011350906454026699, -0.031591616570949554, 0.0025338176637887955, -0.010858685709536076, -0.0496695414185524, -0.02513308636844158, 0.013841841369867325, 0.015944967046380043, 0.0030204448848962784, -0.025505980476737022, 0.010866143740713596, 0.022492993623018265, 0.0009704577969387174, 0.0007005754159763455, 0.004262183327227831, 0.010910890996456146, 0.005339848343282938, -0.015303587540984154, 0.007070078514516354, -0.00020206217595841736, -0.024074064567685127, -0.003113668644800782, 0.010097981430590153, 0.008263341151177883, 0.0002684840001165867, -0.02408898063004017, 0.008076893165707588, 0.040332261472940445, -0.0389898419380188, 0.04886408895254135, -0.04286794364452362, -0.0379159078001976, -0.0006870580255053937, 0.002431271830573678, 0.002778063528239727, 0.014706957153975964, -0.048446446657180786, 0.037856243550777435, -0.006507007870823145, 0.028205735608935356, -0.02098649926483631, -0.02769859880208969, 0.014155073091387749, -0.009314903058111668, 0.015422914177179337, 0.001989391865208745, -0.011798379942774773, -0.012357722036540508, 0.004649993497878313, 0.033351678401231766, 0.021941108629107475, -0.045493122190237045, 0.002142278477549553, 0.04030243307352066, 0.027012472972273827, 0.051011960953474045, 0.03099498525261879, 0.017361965030431747, -0.027101967483758926, 0.02595345303416252, 0.0166460070759058, -0.014915777370333672, -0.0036096181720495224, 0.025461232289671898, -0.02493917942047119, -0.001069274847395718, 0.041883502155542374, 0.02033020555973053, 0.010605118237435818, -0.015035104006528854, -0.015944967046380043, -0.016049377620220184, -0.017436543479561806, -0.006066992413252592, -0.02373100258409977, 0.04206249490380287, 0.00352944596670568, 0.0037886074278503656, 0.0030129870865494013, -0.03287437558174133, -0.0011438536457717419, -0.005489006172865629, -0.023939823731780052, 0.02170245721936226, -0.018420984968543053, 0.028563713654875755, 0.0011410570004954934, -0.03063700720667839, -0.007659251801669598, -0.001106564304791391, -0.009904076345264912, -0.04146586358547211, -0.0660470649600029, 0.014080493710935116, -0.019077280536293983, 0.0158405564725399, 0.01783926971256733, -0.013334705494344234, 0.023671338334679604, -0.02419339120388031, 0.020389867946505547, -0.035081908106803894, 0.01748129166662693, -0.015094767324626446, -0.02086717262864113, -0.00116063398309052, -0.016631092876195908, 0.022940466180443764, -0.009128456003963947, 0.0028899319004267454, -0.016243282705545425, 0.046149417757987976, 0.020360035821795464, -0.004172688815742731, -0.01767519675195217, -0.03752809762954712, -0.027161631733179092, -0.018719300627708435, -0.04140619933605194, 0.017257554456591606, 0.015676481649279594, 0.016213450580835342, -0.030040375888347626, -0.0006017584237270057, 0.0004164764832239598, 0.02068818360567093, -0.014050662517547607, 0.0436137355864048, 0.04987835884094238, -0.004933393560349941, -0.011328533291816711, 0.060677383095026016, 0.026982642710208893, -0.025073422119021416, 0.04579143598675728, -0.01995731145143509, 0.011335991322994232, 0.011380738578736782, 0.011007843539118767, -0.025684969499707222, 0.00706262094900012, 0.00790536217391491, -0.010537996888160706, -0.04194316640496254, -0.042360808700323105, 0.040063779801130295, 0.018913205713033676, -0.008300630375742912, 0.0017451460007578135, -0.019614247605204582, 0.030323775485157967, 0.030696671456098557, 0.026609746739268303, -0.0033019802067428827, 0.013647936284542084, -0.013826926238834858, 0.012104153633117676, -0.014848656952381134, -0.02004680596292019, -0.01095563918352127, -0.037766750901937485, -0.007551112677901983, 0.02723621018230915, -0.023074708878993988, -0.027370452880859375, 0.031502123922109604, 0.00397878373041749, -0.005093737971037626, 0.01673550345003605, -0.0188684593886137, 0.005384595599025488, -0.0041764178313314915, 0.0005835798219777644, 0.01131361722946167, 0.0001989158772630617, -0.0095684714615345, -0.015795808285474777, -0.032755047082901, -0.04543345794081688, 0.002546868985518813, -0.007372123189270496, 0.00929252989590168, 0.039228495210409164, 0.04331541806459427, 0.014610004611313343, -0.018808795139193535, 0.028295230120420456, 0.016228366643190384, -0.040153272449970245, 0.0025580557994544506, -0.013767262920737267, -0.02666941098868847, 0.0047394884750247, -0.014520509168505669, 0.03183026984333992, 0.022985214367508888, 0.029846470803022385, 0.016392439603805542, -0.02070309966802597, 0.027459947392344475, 0.06419751048088074, 0.010776649229228497, -0.01822707988321781, -0.006805323529988527, 0.017332132905721664, 0.008345377631485462, -0.005261540412902832, -0.003870644373819232, -0.02816098742187023, -0.014975440688431263, 0.03338151052594185, 0.038035232573747635, -0.04027260094881058, 0.03955664113163948, 0.021105825901031494, -0.02438729628920555, 0.014319146983325481, -0.013163173571228981, 0.007055162917822599, -0.009009129367768764, -0.025356821715831757, 0.011492607183754444, -0.03985495865345001, -0.0067382026463747025, -0.006111740134656429, -0.03517140448093414, -0.03063700720667839, -0.04406120628118515, -0.015117140486836433, -0.03761759027838707, -0.026236852630972862, -0.03338151052594185, -0.005339848343282938, -0.0006861257716082036, 0.036275170743465424, 0.008263341151177883, -0.028742704540491104, 0.04074990376830101, -0.04471750184893608, 2.6692541723605245e-06, 0.0009233798482455313, 0.0015512409154325724, 0.01997222565114498, -0.0006590909324586391, 0.017809439450502396, -0.024730360135436058, 0.027087051421403885, 0.007353478576987982, 0.004791693761944771, -0.021672625094652176, 0.03797556832432747, -0.028921693563461304, -0.03943731635808945, 0.003070785664021969, -0.007733830716460943, 0.0162880290299654, -0.001989391865208745, -0.05584467202425003, -0.0008035875507630408, -0.027176547795534134, -0.04820779338479042, 0.035022247582674026, 0.04304693266749382, -0.00321807898581028, -0.03931799158453941, -0.02382049709558487, 0.0485956035554409, 0.00577240576967597, -0.03535039350390434, 0.022686898708343506, -0.004168959800153971, 0.022149929776787758, 0.04066041111946106, -0.022135013714432716, 0.047790151089429855, 0.03621550649404526, 0.010403755120933056, 0.029935965314507484, 0.04230114445090294, 0.04561244696378708, -0.04820779338479042, 0.04239064082503319, -0.0430767647922039, -0.04477716609835625, -0.033441174775362015, -0.018241995945572853, 0.0251032542437315, 0.0025580557994544506, 0.02098649926483631, -0.019092194736003876, 0.012432300485670567, 0.031323134899139404, 0.02041970007121563, -0.009874245151877403, -0.00487745925784111, -0.02124006673693657, -0.04018310457468033, -0.016989070922136307, 0.008352835662662983, -0.009553555399179459, 0.028265397995710373, 0.0017367558320984244, 0.0034380867145955563, 0.011388196609914303, 0.028205735608935356, -0.032516393810510635, 0.0005145943141542375, 0.017824353650212288, -0.03054751269519329, -0.02944374457001686, 0.03385881707072258, 0.07792001962661743, -0.01821216382086277, 0.02723621018230915, -0.01453542523086071, -0.006197505630552769, 0.031412627547979355, 0.019077280536293983, 0.012864857912063599, -0.03245673328638077, -0.0004442105127964169, -0.0003195239114575088, -0.007017873227596283, -0.02408898063004017, -0.0011550405761227012, -0.04149569198489189, 0.015303587540984154, 0.02124006673693657, -0.0016267519677057862, -0.018361322581768036, 0.00034189759753644466, 0.013163173571228981, -0.007442973088473082, -0.0030148515943437815, -0.01144785899668932, -0.04358390346169472, -0.038781020790338516, 0.02337302453815937, 0.010291886515915394, 0.005712742917239666, -0.015974797308444977, 0.031024817377328873, -0.025550726801156998, 0.011343449354171753, -0.013961168006062508, -0.0029067122377455235, -0.0020938022062182426, -0.02684840001165867, -0.0007919345516711473, -0.028295230120420456, -0.01682499796152115, -0.01627311296761036, 0.018167417496442795, 0.0190474484115839, 0.023477433249354362, -0.028101325035095215, 0.0033150315284729004, 0.03937765210866928, 0.01103767566382885, 0.022284172475337982, 0.012290600687265396, -0.024148644879460335, 0.0032702842727303505, 0.01457271445542574, -0.007793494034558535, 0.005175774917006493, -0.029727144166827202, 0.005291372071951628, 0.023343192413449287, -0.0036636879667639732, -0.002338048070669174, -0.027564357966184616, -0.015661567449569702, 0.025640221312642097, -0.03144245967268944, -0.0027426385786384344, 0.0028507779352366924, -0.03714028745889664, 0.007748746313154697, 0.015467661432921886, 0.03332184627652168, -0.011686512269079685, 0.02823556773364544, -0.024954095482826233, 0.024446960538625717, -0.022657066583633423, -0.01675041764974594, -0.02289571799337864, -0.015885302796959877, -0.011790921911597252, 0.0031640094239264727, -0.006201234646141529, -0.007890446111559868, 0.021135656163096428, 0.005045261699706316, 0.003926578443497419, -0.038960009813308716, 0.018376238644123077, -0.0054591745138168335, -6.2925937527325e-05, -0.0537564642727375, 0.005022888071835041, -0.036662980914115906, 0.006943294312804937, 0.010843770578503609, 0.007748746313154697, -0.009001672267913818, -0.006130384746938944, 0.00956101343035698, -0.008069436065852642, -0.005746303591877222, -0.010045776143670082, 0.006294458173215389, 0.042092323303222656, 0.0331130251288414, -0.005216793157160282, -0.017227722331881523, 0.0030838369857519865, 0.02593853697180748, -0.010418671183288097, -0.017347048968076706, 0.010761733166873455, -0.009583387523889542, -0.013431658037006855, 0.011917706578969955, 0.011291244067251682, 0.005999871529638767, 0.02456628531217575, 0.022925550118088722, 0.03493275120854378, -0.02850405126810074, -0.003001800272613764, 0.015885302796959877, 0.008106725290417671, 0.0049035619013011456, 0.016258196905255318, 0.007129741832613945, 0.0050601777620613575, -0.010754276067018509, 0.012954353354871273, -0.0026773822028189898, -0.027087051421403885, -0.01691449247300625, -0.018450817093253136, 0.020374951884150505, -0.018719300627708435, 0.00030064614838920534, 0.005530024413019419, -0.015422914177179337, 0.0022727916948497295, -0.014557799324393272, 0.019897647202014923, 0.027116883546113968, 0.027996914461255074, -0.004131670575588942, -0.009531182236969471, 0.022776393219828606, 0.020166130736470222, -0.008427414111793041, 0.02162787690758705, 0.008718271739780903, -0.0025897519662976265, 0.04710402712225914, -0.0009900347795337439, 0.0039042048156261444, 0.0389898419380188, -0.023074708878993988, -0.012007201090455055, -0.020255625247955322, 0.017406713217496872, 0.013536068610846996, -0.00010679929982870817, 0.012491963803768158, 0.004526938311755657, 0.008151472546160221, -0.0023809310514479876, -0.014692041091620922, -0.022865887731313705, -0.022194677963852882, -0.0224333293735981, 0.006458531599491835, 0.027728430926799774, -0.004899832885712385, -0.0010720714926719666, -0.030845828354358673, 0.04435952380299568, -0.025983285158872604, 0.01921152137219906, 0.02070309966802597, 0.002408898202702403, 0.0322180800139904, 0.0032721487805247307, 0.020121384412050247, 0.012380095198750496, -0.04459817707538605, 0.032158415764570236, 0.013856757432222366, 0.02226925641298294, 0.0033485922031104565, 0.00286382925696671, -0.011925164610147476, 0.007401954848319292, 0.035380225628614426, -0.024685611948370934, 0.026147358119487762, 0.02759418822824955, 0.0019688827451318502, 0.043196093291044235, -0.03209875524044037, -0.003242317121475935, 0.013677768409252167, -0.023104539141058922, 0.05933496356010437, -0.004620162304490805, 0.011962453834712505, 8.279422036139295e-05, -0.02226925641298294, 0.0005467564915306866, -0.02484968490898609, 0.020031889900565147, -0.008994214236736298, -0.005742574576288462, -0.007853156886994839, -0.041615020483732224, 0.05563585087656975, 0.006111740134656429, 0.01416253112256527, 0.008882345631718636, -0.024909349158406258, -0.01933084800839424, -0.05623248219490051, -0.023238781839609146, -0.01673550345003605, 0.027161631733179092, -0.011112254112958908, -0.013073679059743881, 0.010918349027633667, 0.01085122860968113, 0.0020229523070156574, 0.009128456003963947, -0.047044362872838974, 0.0011830076109617949, -0.0097474604845047, 0.018241995945572853, 0.021642792969942093, -0.041436031460762024, 0.010403755120933056, 0.016586344689130783, 0.01950983703136444, 0.01590021885931492, 0.002151601016521454, -0.04298727214336395, 0.026177190244197845, 0.0017367558320984244, -0.0024872059002518654, 0.0248347707092762, -0.027191461995244026, -0.035469718277454376, 0.013580815866589546, 0.013289958238601685, 0.010120355524122715, -0.021642792969942093, 0.03044310212135315, 0.02373100258409977, -0.013707599602639675, -0.018077922984957695, 0.009769834578037262, -0.024417128413915634, -0.006648708134889603, -0.016422271728515625, 0.0021273628808557987, -0.013237752951681614, -0.03081599622964859, -0.0033094382379204035, 0.006887360475957394, -0.013043847866356373, -0.011761090718209743, 0.028653208166360855, -0.002841455629095435, -0.008173846639692783, -0.023387938737869263, -0.010269513353705406, -0.012887232005596161, -0.005489006172865629, -0.008129098452627659, 0.014460846781730652, -0.030756333842873573, 0.03442561626434326, 0.006454802583903074, -0.003365372307598591, -0.0323970690369606, -0.006052076816558838, 0.013856757432222366, 0.03630500286817551, -0.020494278520345688, 0.02531207539141178, -0.025625305250287056, -0.05244387313723564, 0.00818130373954773, 0.0022541468497365713, 0.011611932888627052, 0.027385367080569267, -0.013595730997622013, 0.03209875524044037, -0.01100038643926382, 0.02410389669239521, -0.009993570856750011, 0.017093481495976448, -0.008591488003730774, 0.023402854800224304, 0.001987527357414365, 0.014058120548725128, 0.013446573168039322, -0.06670335680246353, -0.025610391050577164, -0.0030372252222150564, 0.022597402334213257, 0.01766028068959713, -0.005231709219515324, 0.008479619398713112, -0.013737431727349758, 0.004030989017337561, -0.020852256566286087, 0.0028768805786967278, 0.004292014986276627, 0.009009129367768764, -0.029756976291537285, 0.010821396484971046, 0.03708062320947647, -0.050743475556373596, -0.0074653467163443565, 0.005365950986742973, 0.015258840285241604, 0.00558968773111701, 0.007297544274479151, -0.004202520474791527, 0.03514157235622406, 0.01950983703136444, 0.005761219188570976, -0.00837520882487297, 0.006920920684933662, -0.06228828802704811, 0.045135144144296646, 0.0063988687470555305, 0.012111611664295197, -0.011977369897067547, 0.01471441425383091, -0.015497492626309395, 0.005824611056596041, 0.024700528010725975, 0.019166775047779083, 0.008942008949816227, -0.0054591745138168335, -0.02604294754564762, 0.008531824685633183, -0.001601581578142941, 0.017824353650212288, 0.039228495210409164, 0.030219364911317825, -0.018137585371732712, 0.027847757562994957, -0.00720059173181653, 0.03457477316260338, 0.02162787690758705, -0.013118426315486431, 0.023015044629573822, 0.0331130251288414, 0.004705927800387144, -0.024133728817105293, -0.02143397182226181, -0.003492156509310007, -0.007234152406454086, -0.008412498980760574, -0.022701812908053398, 0.011231580749154091, 0.003152822609990835, 0.04239064082503319, -0.014080493710935116, -0.010172560811042786, 0.01997222565114498, 0.03433611989021301, 0.014997814781963825, 0.021389225497841835, 0.008017230778932571, -0.01145531702786684, 0.004265912342816591, 0.007260254584252834, -0.04370322823524475, 0.016854828223586082, 0.0017833677120506763, -0.0009112607804127038, -0.011716343462467194, 0.03594702482223511, 0.02419339120388031, -0.00549273518845439, -0.03281471133232117, 0.009404397569596767, 0.02871287241578102, 0.013439116068184376, 0.011164459399878979, -0.020926836878061295, -0.0033541854936629534, -0.015467661432921886, -0.001802944578230381, -0.026550084352493286, -0.0066375210881233215, -0.0035331747494637966, 0.004265912342816591, 0.006853799801319838, -0.03180043771862984, -0.04838678240776062, -0.015885302796959877, 0.00800977274775505, -0.027266042307019234, -0.008345377631485462, -0.016243282705545425, 0.024342549964785576, -0.008830140344798565, 0.02235875092446804, 0.001176481950096786, -0.006995499599725008, -0.028026746585965157, -0.010448502376675606, 0.05196657031774521, 0.007890446111559868, 0.0014197955606505275, -0.03633483499288559, 0.0006982448394410312, -0.028041662648320198, 0.024998843669891357, -0.00800231471657753, -0.003561141900718212, -0.03782641142606735, -0.005552398040890694, -0.004362864885479212, -0.027564357966184616, 0.031144144013524055, -0.017138227820396423, 0.02659483253955841, 0.02980172447860241, 0.023939823731780052, -0.01803317479789257, -0.007547383662313223, -0.00724533898755908, 0.007181947119534016, 0.011343449354171753, -0.027206378057599068, 0.021001415327191353, -0.019181689247488976, 0.006357850041240454, -0.022135013714432716, 0.01830165833234787, -0.003009258070960641, -0.02124006673693657, 0.00715584447607398, -0.007379581220448017, -0.00960576068609953, -0.01683991216123104, 0.017526037991046906, -0.0018877781694754958, -0.01942034251987934, 0.006700912956148386, 0.03415713086724281, -0.0012482641031965613, -0.019703742116689682, 0.013222836889326572, 0.009128456003963947, 0.020807510241866112, -0.023522181436419487, -0.012767905369400978, 0.010933265089988708, 0.014602546580135822, 0.0067978654988110065, 0.008494535461068153, -0.05417410284280777, -0.006122926715761423, 0.019763406366109848, -0.012454674579203129, -0.0036133471876382828, 0.008196219801902771, -0.0037997944746166468, -0.010232223197817802, -0.012119069695472717, -0.01103767566382885, 0.013461489230394363, -0.009896618314087391, 0.01425948366522789, -0.0021534652914851904, -0.0002668525849003345, -0.020285457372665405, -0.0011280056787654757, -0.0073050023056566715, -0.006551755592226982, -0.0015997171867638826, -0.0033411341719329357, -0.03758775815367699, 0.008919634856283665, -0.005153401289135218, -0.013782178983092308, -0.001198855577968061, -0.001130802440457046, 0.014818824827671051, -0.015035104006528854, -0.0016267519677057862, 0.018182333558797836, 0.027206378057599068, 0.015258840285241604, 0.012775363400578499, -0.001199787831865251, 0.033351678401231766, 0.030055291950702667, 0.009918992407619953, -0.006268355529755354, -0.0006357850506901741, -0.00241262698546052, -0.006995499599725008, -0.000557477178517729, -0.0008804969838820398, 0.04435952380299568, 0.041823841631412506, -0.006864986848086119, 0.018629806116223335, 0.01472187228500843, 0.013103511184453964, 0.026565000414848328, 0.0024499164428561926, 0.008017230778932571, -0.017317218706011772, -0.04215198755264282, -0.0038594575598835945, -0.006894818041473627, -0.012312974780797958, -0.006357850041240454, -0.013812010176479816, 0.009635592810809612, -0.019271185621619225, -0.030293945223093033, -0.013841841369867325, -0.0070327892899513245, 0.013312331400811672, 0.0443296916782856, 0.003893018001690507, 0.016228366643190384, -0.017719943076372147, -0.030204450711607933, 0.040153272449970245, -0.0033579145092517138, -0.02622193656861782, 0.020553940907120705, 0.004620162304490805, 0.02235875092446804, 0.011783464811742306, -0.023298444226384163, 0.010090523399412632, -0.028444388881325722, 0.007021602243185043, -0.02907085046172142, -0.007718915119767189, -0.0025319531559944153, 0.00965050794184208, -0.0028694227803498507, -0.04856577143073082, -0.0004926867550238967, 0.0009322360856458545, 0.03910917043685913, -0.009717629291117191, -0.027459947392344475, -0.022388583049178123, -0.03367982432246208, -0.011858043260872364, -0.005925292614847422, 0.00366928125731647, -0.000286196474917233, -0.014930693432688713, -0.013327247463166714, 0.008695898577570915, 0.007390767801553011, 0.022060435265302658, -0.0029756976291537285, 0.001229619374498725, -0.007618233561515808, -0.03081599622964859, -0.030935322865843773, -0.0436137355864048, 0.016526682302355766, -0.026475505903363228, -0.035380225628614426, 0.0018290472216904163, -0.02935425005853176, -0.023253697901964188, 0.008449788205325603, -0.014856114983558655, -0.02319403365254402, 0.03054751269519329, -0.0005966310855001211, -0.02474527433514595, 0.012014659121632576, 0.018614890053868294, -0.004146586172282696, 0.02125498279929161, -0.0065592131577432156, -0.019554585218429565, 0.0021012602373957634, 0.006152758374810219, -0.013304873369634151, 0.003156551392748952, -0.02015121653676033, -0.06312356889247894, -0.02161296270787716, 0.03788607567548752, -0.015780892223119736, -0.010262055322527885, -0.018629806116223335, -0.001331233186647296, 0.002267198171466589, 0.013498778454959393, 0.0161090400069952, -0.008539282716810703, 0.03227774426341057, 0.016705671325325966, -0.023895075544714928, 0.019942395389080048, 0.008494535461068153, -0.010127812623977661, -0.011142086237668991, -0.020762762054800987, -0.009717629291117191, -0.04799897223711014, -0.007786036003381014, 0.012402469292283058, 0.015236467123031616, -0.004855085629969835, -0.003089430509135127, -0.01457271445542574, -0.011753632687032223, 0.006197505630552769, 0.02089700475335121, -0.005369680002331734, 0.01830165833234787, 0.0019110840512439609, 0.0020714285783469677, -0.03433611989021301, -0.0012911469675600529, 0.0010338498977944255, 0.0051869614981114864, 0.00781586766242981, -0.008733187802135944, -0.005932750646024942, 0.023402854800224304, 0.03535039350390434, 0.013879131525754929, 0.0008007907890714705, 0.0018915070686489344, -0.02832506224513054, 0.008352835662662983, 0.0050042434595525265, -0.0001365725911455229, 0.02687823213636875, 0.009307445026934147, 0.003956410102546215, -0.005358492955565453, 0.028310146182775497, 0.0012417384423315525, 0.0074056838639080524, 0.006518194917589426, -0.01783926971256733, -0.039049506187438965, -0.006562942173331976, 0.010254597291350365, -0.017361965030431747, -0.013461489230394363, -0.0021068535279482603, -0.010217308066785336, 0.004914748948067427, -0.03678230941295624, 0.00196701823733747, 0.009918992407619953, 0.012148900888860226, -0.013334705494344234, 0.006335476413369179, -0.017138227820396423, 0.012059406377375126, 0.0028601004742085934, 0.032068923115730286, -0.0030372252222150564, 0.008390124887228012, -0.01164176408201456, 0.046030089259147644, 0.019524753093719482, 0.011783464811742306, 0.0032926579006016254, -0.04054108262062073, 0.002112447051331401, 0.008934550918638706, 0.017048733308911324, 0.03290420398116112, -0.003326218342408538, 0.018361322581768036, -0.005873087327927351, 0.030338691547513008, 0.0109929284080863, -0.0022485535591840744, 0.03663314878940582, 0.012805195525288582, 0.009635592810809612, 0.011343449354171753, 0.021269898861646652, -0.010321718640625477, -0.0083230035379529, 0.028817282989621162, 0.01085122860968113, -0.021389225497841835, -0.03985495865345001, -0.016392439603805542, -0.02907085046172142, -0.008106725290417671, -0.013454031199216843, 0.003070785664021969, 0.004989327862858772, 0.033351678401231766, 0.013170631602406502, -0.010791565291583538, 0.005321203731000423, -0.0011121577117592096, -0.021314647048711777, -0.01822707988321781, 0.004567957017570734, 0.005272727459669113, 0.010112897492945194, -0.02013630047440529, -0.04149569198489189, 0.0028078951872885227, -0.004422528203576803, 0.010388839058578014, 0.016258196905255318, -0.005742574576288462, -0.012626205570995808, -0.04537379741668701, 0.012380095198750496, -0.022761477157473564, 0.03403780609369278, -0.02757927216589451, -0.005839527118951082, -0.010127812623977661, 0.008554198779165745, -0.0024629677645862103, -0.010411213152110577, -0.002662466373294592, 0.019092194736003876, 0.0034623248502612114, -0.055785007774829865, -0.027638936415314674, 0.01912202686071396, 0.008293172344565392, 0.004497107118368149, -0.011007843539118767, 0.02356692962348461, -0.022671982645988464, 0.0056754532270133495, 0.0035555486101657152, 0.00042043847497552633, 0.0051869614981114864, 0.025148000568151474, 0.028936609625816345, 0.003134177764877677, 0.02089700475335121, -0.031889934092760086, -0.0018868459155783057, -0.0010170695604756474, 0.020941751077771187, 0.038512539118528366, -0.01921152137219906, -0.006231066305190325, 0.0007840105681680143, -0.003342998679727316, 0.02059868909418583, -0.013558441773056984, 0.013215378858149052, -0.01995731145143509, 0.032605890184640884, -0.02106107771396637, -0.009158287197351456, -0.012894690036773682, -0.019435258582234383, -0.009829497896134853, 0.023313360288739204, 0.02162787690758705, -0.010239681228995323, 0.010463418439030647, 0.01849556528031826, 0.011917706578969955, 0.006462260615080595, -0.010731901973485947, -0.015191719867289066, 0.00024121609749272466, -0.056142985820770264, -0.0053808665834367275, -0.03183026984333992, 0.00420997804030776, -0.00929252989590168, -0.0019148129504173994, 0.01710839755833149, -0.016631092876195908, -0.009038961492478848, 0.003630127292126417, 0.03409746661782265, 0.03385881707072258, -0.01273807417601347, -0.002095666714012623, -0.011507522314786911, 0.01273807417601347, -0.002392117865383625, 0.01737688109278679, 0.0007723576272837818, 0.002360421931371093, -0.019107110798358917, 0.005574772134423256, 0.010180017910897732, 0.024775106459856033, -0.04382255673408508, -0.032337404787540436, 0.013371994718909264, 0.006939565762877464, 0.0386318638920784, -0.014110325835645199, -0.014796451665461063, -0.0031546868849545717, -0.02602803148329258, 0.00795756746083498, 0.036483991891145706, -0.0020248168148100376, -0.007853156886994839, -0.0013685226440429688, -0.010470875538885593, 0.009687797166407108, 0.0067158290185034275, -0.02565513737499714, 0.0006865918985567987, -0.018987784162163734, 0.007413141429424286, 0.0040981099009513855, 0.007674167864024639, -0.017033817246556282, -0.02373100258409977, -0.010180017910897732, -0.01803317479789257, -0.02777317725121975, 0.018644722178578377, 0.0027855215594172478, 0.001307927304878831, -0.021389225497841835, 0.021419057622551918, 0.0030801082029938698, -0.022492993623018265, -0.0484166145324707, -0.021225152537226677, -0.007208049762994051, 0.0077039990574121475, 0.0027911148499697447, 0.001493442221544683, -0.013879131525754929, -0.0008609200594946742, 0.01912202686071396, 0.020076636224985123, -0.0251032542437315, 0.0020080364774912596, -0.004512022715061903, -0.025640221312642097, -0.008061978034675121, -0.0031863830517977476, 0.013588273897767067, 0.011902790516614914, -0.009762376546859741, -0.026386011391878128, 0.006119197700172663, 0.025162916630506516, -6.041326741978992e-06, 0.00933727715164423, -0.03779657930135727, -0.01701890304684639, 0.006025974173098803, 0.001524206018075347, -0.01291706319898367, 0.0037979299668222666, -0.022418413311243057, 0.024909349158406258, -0.006055805832147598, -0.0015102224424481392, 0.00568291125819087, 0.013983541168272495, -0.015161887742578983, 0.007480262313038111, -0.012767905369400978, -0.0075212810188531876, -0.002028545830398798, 0.025371737778186798, -0.018972869962453842, 0.016720587387681007, 0.008613861165940762, -0.003536903765052557, -0.019286099821329117, 0.0066039604134857655, 0.001587598118931055, 0.004914748948067427, -0.019748490303754807, -0.017033817246556282, -0.002833997830748558, 0.0032553684432059526, -0.02116548828780651, -0.01154481153935194, -0.007137199863791466, 0.006518194917589426, 0.007536196615546942, -0.01821216382086277, 0.020673267543315887, 0.012521794997155666, 0.0012827569153159857, 0.02769859880208969, 0.013595730997622013, 0.019554585218429565, 0.0034324934240430593, 0.03045801818370819, 0.021225152537226677, -0.005384595599025488, 0.008345377631485462, 0.008293172344565392, -0.012066864408552647, 0.021046161651611328, -0.00728635722771287, -0.028190819546580315, -0.005406969226896763, -0.011731259524822235, -0.0002971502544824034, -0.007651793770492077, -0.0025673783384263515, 0.003156551392748952, -0.0026773822028189898, -0.013670310378074646, 0.00038734410190954804, -0.0023175389505922794, -0.04561244696378708, 0.006700912956148386, 0.017973512411117554, -0.01132107526063919, 0.015795808285474777, 0.0007373987464234233, -0.03245673328638077, 0.0027184004429727793, -0.013625563122332096, -0.0010571557795628905, -0.012305516749620438, -0.02584904246032238, -0.0017190433572977781, -0.008591488003730774, 0.0006931175594218075, 0.00549273518845439, -0.011373280547559261, -0.012163816951215267, 0.01757078617811203, -0.012290600687265396, -0.017511123791337013, -0.02153838239610195, -0.0007882056524977088, 0.019345764070749283, 0.00947151891887188, -0.002228044206276536, -0.010060692206025124, -0.0007481194916181266, 0.036573488265275955, -0.013834384270012379, 0.03451510891318321, -0.010455960407853127, 0.013409283943474293, -0.0023417770862579346, -0.005489006172865629, 0.037498265504837036, -0.02153838239610195, 0.03484325855970383, -0.011843127198517323, 0.013379452750086784, -0.000789137848187238, 0.022701812908053398, 0.01435643620789051, -0.014982898719608784, -0.00393030745908618, -0.018749132752418518, -0.006163944955915213, 0.002282114000990987, -0.0014039475936442614, -0.006671081762760878, -0.008166388608515263, -0.011828212067484856, 0.019196605309844017, 0.013513694517314434, -0.014848656952381134, -0.003745724679902196, -0.022567572072148323, 0.0017833677120506763, 0.0035033433232456446, 0.0013219107640907168, -0.0013303009327501059, -0.0040981099009513855, -0.015393082983791828, 0.019912563264369965, 0.004888646304607391, 0.015930050984025, -0.0025133085437119007, -0.007972483523190022, 0.008166388608515263, -0.053845956921577454, -0.03359033167362213, -0.0026978913228958845, -0.013841841369867325, -0.003040954237803817, 0.006167673971503973, 0.008464704267680645, -0.013289958238601685, 0.010813938453793526, 0.010262055322527885, -0.007506364956498146, -0.017540954053401947, 0.002873151795938611, 0.011298701167106628, -0.022105183452367783, 0.01467712502926588, -0.02511817030608654, 0.012216022238135338, -0.00012060804874636233, -0.02584904246032238, -0.006827697157859802, 0.028384724631905556, -0.02513308636844158, -0.011007843539118767, 0.001671499339863658, -0.01132107526063919, -0.0008818953647278249, -0.01112717017531395, -0.0009900347795337439, 0.014237109571695328, 0.03248656541109085, -0.005119840614497662, 0.006324289832264185, 0.013334705494344234, -0.007472804747521877, 0.027534525841474533, 0.006059534847736359, 0.0005616722628474236, 0.010881059803068638, -0.009016587398946285, 0.0032535039354115725, -0.0071110972203314304, -0.025729715824127197, 0.009762376546859741, -0.013782178983092308, -0.016392439603805542, 0.006033432204276323, 0.006935836747288704, -0.01867455430328846, 0.015944967046380043, 0.019092194736003876, 0.008352835662662983, 0.04101838916540146, -0.014423556625843048, 0.02860846184194088, -0.015288672409951687, 0.004661180544644594, -0.04388221725821495, -0.019852900877594948, -0.016243282705545425, 0.014020831324160099, 0.005798508413136005, 0.008636235259473324, -0.010172560811042786, 0.00962067674845457, -0.016869744285941124, -0.008763018995523453, 0.04265912249684334, 0.0038109812885522842, 0.002119904849678278, 0.012894690036773682, 0.0010319853900000453, -0.020583773031830788, 0.017063649371266365, -0.01840606890618801, 0.03191976249217987, -0.027847757562994957, 0.034992415457963943, 0.015885302796959877, -0.0005430275341495872, -0.017138227820396423, 0.015102225355803967, 0.003745724679902196, 0.012581458315253258, -0.004717114847153425, -0.031144144013524055, 0.0027258584741503, 0.007610775530338287, -0.016407355666160583, 0.0386318638920784, -0.010441044345498085, 0.00652938149869442, -0.015229009091854095, -0.005977497901767492, 0.005268998444080353, 0.009628134779632092, 0.006913463119417429, 0.015452745370566845, 0.01812266930937767, -0.0014076764928177, 0.013565899804234505, 0.014229651540517807, 0.00648463424295187, 0.005351035390049219, 0.014595088548958302, 0.00630564521998167, -0.00021802671835757792, 0.02115057222545147, 0.011611932888627052, 0.024029318243265152, 0.02447679080069065, 0.01287231594324112, 0.005805966444313526, -0.03350083529949188, 0.0024275428149849176, -0.0024275428149849176, 0.012574000284075737, 0.0010263919830322266, -0.027355536818504333, -0.01785418577492237, -0.01453542523086071, 0.005362221971154213, -0.012096695601940155, -0.01849556528031826, 0.02408898063004017, 0.017227722331881523, 0.002517037559300661, 0.01858505979180336, 0.00021220024791546166, -0.002229908714070916, -0.005272727459669113, 0.0017199756111949682, -0.0036319917999207973, -0.0043143886141479015, -0.008270799182355404, -0.012477047741413116, -0.013476405292749405, -0.017242638394236565, 0.008293172344565392, -0.006671081762760878, -0.0010226629674434662, -0.006719558034092188, 0.0005817153141833842, -0.010881059803068638, 0.003956410102546215, 0.0046537225134670734, -0.004504564683884382, 0.005660537630319595, -0.0007579079829156399, -0.0054591745138168335, 0.012454674579203129, 0.021299730986356735, 0.013759804889559746, 0.012133984826505184, 0.008345377631485462, -0.019718658179044724, 0.0004227690806146711, -0.011887874454259872, 0.0008222322212532163, -0.01564665138721466, -0.012902148067951202, -0.00035727949580177665, -0.0163775235414505, 0.04853593930602074, 0.007689083460718393, 0.014796451665461063, 0.014229651540517807, 0.010142728686332703, -0.01117937546223402, -0.014110325835645199, 0.010411213152110577, 0.009038961492478848, -0.008427414111793041, -0.0039042048156261444, 0.010799023322761059, -0.00062692875508219, -0.0044150701723992825, -0.03567853942513466, 0.006786678917706013, 0.022015687078237534, 0.0081440145149827, -0.013864215463399887, 0.020121384412050247, 0.02068818360567093, -0.01085122860968113, -0.022388583049178123, -0.005783592816442251, -0.0031248554587364197, 0.014460846781730652, -0.0013498779153451324, -0.007428057491779327, 0.0222543403506279, 0.02373100258409977, -0.0017153144581243396, -0.021299730986356735, -0.002269062679260969, -0.005802237428724766, 0.027161631733179092, 0.005328661762177944, -0.002755689900368452, 0.01942034251987934, -0.00795010942965746, -0.0046872831881046295, -0.002073293086141348, -0.0037140287458896637, 0.02971222996711731, 0.012290600687265396, -0.010180017910897732, -0.014953067526221275, 0.012805195525288582, -0.00241635600104928, 0.0039042048156261444, 0.010582744143903255, -0.02264215052127838, -0.032784879207611084, 0.00021161758922971785, -0.009829497896134853, 0.010359007865190506, -0.009993570856750011, 0.0023492348846048117, -0.005336119327694178, -0.00643988698720932, 0.0028041661716997623, -0.0008301562629640102, 0.005973768886178732, -0.01098547037690878, -0.017347048968076706, -0.0028134884778410196, 0.008270799182355404, 0.010866143740713596, -0.013901504687964916, -0.0008040536195039749, -0.0014813231537118554, -0.014923235401511192, -0.004500836133956909, 0.0006786678568460047, -0.027713514864444733, -0.01563173532485962, 0.024983927607536316, -0.011097338981926441, 0.03212858363986015, 0.006644979119300842, 0.014826282858848572, 0.010008486919105053, 0.006167673971503973, -0.0032329948153346777, -0.015176803804934025, -0.0019465090008452535, -0.011969911865890026, 0.0015754790510982275, 0.0017516716616228223, 0.00809180922806263, -0.034723930060863495, 0.0016043783398345113, -0.014423556625843048, -0.0029980712570250034, 0.007208049762994051, 0.014177446253597736, 0.0035574128851294518, 0.010038318112492561, -0.003878102172166109, 0.018823711201548576, 0.0019987141713500023, 0.002524495357647538, 0.016049377620220184, -0.008390124887228012, -0.00023632185184396803, 0.018152501434087753, 0.016884660348296165, 0.01849556528031826, 0.006902276072651148, 0.013804552145302296, 0.0015689533902332187, -0.008569113910198212, -0.0022187219001352787, -0.007517552003264427, -0.007252797018736601, -0.02474527433514595, -0.009016587398946285, 0.0002845650597009808, -0.018749132752418518, -0.007689083460718393, -0.0034865629859268665, -0.013804552145302296, 0.0018663366790860891, -0.016869744285941124, -0.028131157159805298, -0.0030614633578807116, 0.01600462943315506, -0.02740028314292431, -0.008546740747988224, -0.001463610678911209, 0.008240967057645321, 0.042450305074453354, -0.00420997804030776, 0.008584029972553253, -0.02031528949737549, 0.008628777228295803, -0.008710814639925957, 0.02823556773364544, -0.011164459399878979, 0.015482577495276928, -0.018182333558797836, 0.02889186143875122, -0.0017945545259863138, 0.011753632687032223, 0.023164203390479088, -0.005981226917356253, -0.0020602417644113302, 0.011395653709769249, -0.012260769493877888, 0.02253773994743824, -0.010821396484971046, 0.04776031896471977, -0.039884790778160095, -0.0066934553906321526, -0.004079465288668871, -0.005533753428608179, -0.0008329529664479196, -0.013864215463399887, 0.026982642710208893, -0.026147358119487762, 0.0039414940401911736, -0.004728301428258419, -0.006861257832497358, -0.011097338981926441, 0.016541598364710808, 0.008501993492245674, 0.018510479480028152, 0.01748129166662693, 0.040511250495910645, 0.019912563264369965, -0.006313102785497904, -0.016899576410651207, -0.008129098452627659, -0.005272727459669113, -0.005373409017920494, 0.0008115115342661738, -0.012022117152810097, 0.012588916346430779, 0.005716471932828426, -0.010336633771657944, 0.020718015730381012, 0.011947537772357464, 0.014371352270245552, 0.026743989437818527, -0.0035499550867825747, -0.017168059945106506, 0.018331490457057953, 0.0331130251288414, -0.01278282143175602, -0.005086280405521393, 0.013237752951681614, 0.000975118950009346, -0.009150829166173935, 0.002306352136656642, -0.030786165967583656, -0.003359779017046094, -0.016675839200615883, 0.00933727715164423, -0.0020714285783469677, 0.019733574241399765, -0.009732545353472233, -0.006801594514399767, 0.020031889900565147, -0.0018915070686489344, 0.0066934553906321526, -0.013826926238834858, -0.010963096283376217, 0.001106564304791391, -0.004795422311872244, -0.009091166779398918, -0.010933265089988708, -0.021389225497841835, -0.01766028068959713, 0.006473447661846876, 0.018331490457057953, 0.0021310916636139154, -0.007308730855584145, -0.01774977520108223, 0.002244824543595314, -0.011880417354404926, 0.007349749561399221, 0.0030595988500863314, 0.013431658037006855, 0.003971325699239969, -0.004306930582970381, 0.018271828070282936, -0.006428700406104326, 0.02668432705104351, 0.016422271728515625, 0.029727144166827202, -0.0007182879489846528, 0.001796419033780694, -0.004952038172632456, -0.014237109571695328, 0.004269641358405352, -0.002878745086491108, 0.012372637167572975, 0.024342549964785576, -0.003963868133723736, 0.0013713192893192172, -0.014050662517547607, -0.01776469126343727, -0.004168959800153971, -0.01089597586542368, -0.006014787591993809, 0.009926450438797474, 0.005250353831797838, -0.007308730855584145, -0.008270799182355404, 0.01600462943315506, -2.292718090757262e-05, -0.017690112814307213, 0.010306802578270435, -0.030517680570483208, -0.015087309293448925, 0.02355201356112957, -0.010627491399645805, -0.004705927800387144, 0.001090716221369803, 0.002522630849853158, -0.02862337790429592, -0.01476661954075098, 0.00352944596670568, -0.00706262094900012, -0.014147615060210228, 0.007547383662313223, 0.009971197694540024, -0.033799152821302414, 0.016422271728515625, 0.012752990238368511, -0.00487373024225235, 0.013357078656554222, 0.00205837725661695, 7.760865264572203e-05, 0.016675839200615883, -0.010262055322527885, -0.009866787120699883, -0.0003141635679639876, 0.003592838067561388, -0.010739360004663467, 0.01942034251987934, 0.019554585218429565, -0.010724443942308426, 0.01701890304684639, -0.024446960538625717, 0.0010301208822056651, -0.026341263204813004, 0.013118426315486431, 0.005116111598908901, -0.012857400812208652, 0.031144144013524055, -0.003298251423984766, 0.012133984826505184, -0.0004355873097665608, -0.03403780609369278, -0.0012398740509524941, 0.0221648458391428, -0.007748746313154697, -0.013782178983092308, 0.004168959800153971, 0.015057477168738842, 0.004896103870123625, -0.0082335090264678, -0.01255908515304327, 0.0006628198898397386, 0.009307445026934147, 0.0052428958006203175, 0.03633483499288559, 0.0161985345184803, -0.00572392949834466, 0.03523106873035431, 0.001393693033605814, -0.0015997171867638826, 0.02043461613357067, -0.0018122670007869601, -0.010336633771657944, 0.00833046156913042, 0.016675839200615883, 0.03323235362768173, 0.0013638613745570183, 0.01774977520108223, 0.009948823601007462, 0.006764305289834738, 0.013379452750086784, 0.024074064567685127, 0.015676481649279594, 0.02088208869099617, 0.014423556625843048, 0.01080648135393858, -0.00010062323417514563, -0.023402854800224304, 0.014923235401511192, 0.007711457088589668, -0.0034791051875799894, -0.008733187802135944, -0.006548026576638222, -0.0009629998821765184, -0.00971017125993967, 0.003922849427908659, -0.0033541854936629534, 0.01104513369500637, -0.0053771380335092545, 0.020106468349695206, -0.009270155802369118, -0.0011727530509233475, -0.00833046156913042, 0.02068818360567093, -0.0032087566796690226, -0.04155535623431206, -0.013028931804001331, -0.007674167864024639, -0.0011485149152576923, -0.0032870646100491285, 0.012387553229928017, 0.010247139260172844, -0.005917834583669901, -0.005943937227129936, 0.023104539141058922, 0.012588916346430779, -0.008293172344565392, -0.0030390897300094366, -0.013998457230627537, 0.0019987141713500023, -0.005295101087540388, -0.013550983741879463, 0.00960576068609953, -0.007528738584369421, -0.008800309151411057, 0.007435515057295561, -0.0340079739689827, 0.005712742917239666, -0.0004735759284812957, 0.009978655725717545, -0.015020187944173813, -0.0095684714615345, -0.024715444073081017, 0.0044150701723992825, -0.0093894824385643, 0.013386910781264305, -0.00738330977037549, 0.00041740870801731944, 0.030323775485157967, -0.014386267401278019, -0.004545583389699459, 0.0079650254920125, 0.010209850035607815, 0.01857014372944832, 0.022388583049178123, 0.009001672267913818, -0.005768677219748497, -0.00459778867661953, 0.014841198921203613, -0.0038594575598835945, -0.0022261799313127995, -0.017257554456591606, -0.0012109746458008885, 0.023805581033229828, -0.016332777217030525, 0.019808152690529823, 0.013692683540284634, 0.003430628916248679, -0.0025580557994544506, 0.010269513353705406, 0.013222836889326572, -0.007935193367302418, -0.010560370981693268, -0.008859971538186073, 0.0034157130867242813, 0.005649350583553314, 0.0077039990574121475, -0.006495821289718151, 0.014423556625843048, 0.009352192282676697, -0.02197094075381756, -0.01416998915374279, 0.008308088406920433, 0.0053808665834367275, -0.014237109571695328, -0.010157644748687744, 0.01145531702786684, 0.0008105792803689837, 0.024536455050110817, -0.02086717262864113, 0.010441044345498085, -0.030293945223093033, 0.01701890304684639, 0.007129741832613945, 0.040809568017721176, 0.0017609939677640796, -0.006887360475957394, 0.005999871529638767, 0.012633663602173328, -0.00781586766242981, -0.027564357966184616, -0.00019553652964532375, -0.030413269996643066, -0.02217976190149784, 0.006607689429074526, 0.003113668644800782, 0.020941751077771187, 0.01581072434782982, -0.005078822374343872, -0.014229651540517807, -0.008770477026700974, 0.0021087180357426405, 0.0003959672758355737, 0.010463418439030647, 0.015780892223119736, 0.017600618302822113, -0.013744888827204704, -0.012223480269312859, -0.027161631733179092, 0.007763662375509739, -0.022373666986823082, 0.015087309293448925, -0.011940079741179943, -0.021478720009326935, 0.0024890704080462456, -0.0072490680031478405, 0.0019782050512731075, -0.007733830716460943, -0.014334062114357948, -0.005805966444313526, -0.0010431722039356828, 0.008949466980993748, 0.0027426385786384344, 0.03708062320947647, 0.02362659201025963, 0.002584158442914486, -0.01876404881477356, 0.0067978654988110065, -0.010187475942075253, -0.0016006494406610727, 0.007181947119534016, 0.007532467599958181, 0.0026382282376289368, 0.013304873369634151, -0.010739360004663467, 0.0005085347802378237, -0.0011969911865890026, -0.006406326312571764, -0.0022317732218652964, -0.019062364473938942, -0.012618747539818287, -0.008487077429890633, 0.04334525018930435, -0.013558441773056984, -0.00563443498685956, -0.0026382282376289368, -0.0009359650430269539, 0.016407355666160583, 0.022925550118088722, -0.005824611056596041, -0.0010646135779097676, -1.995567981794011e-05, -0.008792851120233536, 0.0047432174906134605, 0.020822426304221153, 0.026326347142457962, -0.013185547664761543, 0.0032068921718746424, -0.024491706863045692, 0.009001672267913818, -0.01848064921796322, -0.025043589994311333, 0.003242317121475935, -0.009851871058344841, 0.00018819516117218882, 0.011656680144369602, 0.021389225497841835, 0.012245853431522846, -0.0015922592720016837, 0.018465733155608177, -0.027638936415314674, 0.016034461557865143, -0.0032628264743834734, 0.027534525841474533, 0.0011363958474248648, -0.0059103770181536674, -0.004963225219398737, 0.02088208869099617, -0.009740002453327179, -0.02089700475335121, 0.0009546097717247903, 0.008904719725251198, -0.008584029972553253, -0.04588093236088753, 0.020374951884150505, -0.0015130192041397095, -0.000866979593411088, -0.00558968773111701, -0.014423556625843048, 0.015012729912996292, 0.0023548284079879522, 0.0031155331525951624, 0.01573614589869976, 0.028265397995710373, 0.0014925099676474929, 0.006022245157510042, 0.021135656163096428, -0.025535810738801956, 0.008770477026700974, -0.0020546484738588333, -0.0027855215594172478, -0.004851356614381075, 0.0022970298305153847, -0.020658351480960846, -0.007897904142737389, 0.00563816400244832, 0.010746818035840988, -0.0010077472543343902, -0.014610004611313343, 0.00353131047450006, -0.0019539669156074524, 0.017272470518946648, 0.019375594332814217, -0.01449067797511816, 0.0034585960675030947, 0.013051305897533894, 0.01590021885931492, 0.016989070922136307, -0.008904719725251198, 0.011209206655621529, 0.00034096534363925457, 0.004556769970804453, -0.016168702393770218, 0.00473575945943594, 0.004601517226547003, 0.01582564041018486, -0.003322489559650421, -0.008106725290417671, -0.02687823213636875, -0.014378809370100498, -0.0111719174310565, 0.006007329560816288, 0.006883631460368633, -0.005045261699706316, -0.03532056137919426, -0.02896643988788128, 0.015079851262271404, -0.01912202686071396, 0.011104796081781387, -0.008032145909965038, -0.04248013347387314, -0.00411302549764514, 0.007845698855817318, 0.03218824788928032, 0.018599973991513252, 0.0018467596964910626, 0.03448527678847313, 0.0023156744427978992, 0.016302945092320442, -0.013856757432222366, -0.022388583049178123, -0.004773048684000969, 0.0017628584755584598, 0.020464446395635605, -0.0004024929367005825, 0.004459817428141832, -0.0187789648771286, -0.017511123791337013, -0.014811367727816105, 0.021001415327191353, -0.001748874899931252, -0.01085122860968113, 0.01296181045472622, -0.009963739663362503, 0.008979298174381256, -0.011209206655621529, 0.010373922996222973, 0.0030465475283563137, 0.01801825873553753, -0.0077263726852834225, 0.0032553684432059526, -0.004180146846920252, 0.012327889911830425, 0.0005761219072155654, 0.00478423573076725, -0.006275813560932875, 0.011030217632651329, 0.025088338181376457, -0.0005243828054517508, 0.00478050671517849, 0.021866530179977417, 0.008986756205558777, -0.013752346858382225, -0.008755561895668507, 0.019360680133104324, -0.0005551466019824147, 0.017511123791337013, -0.009575929492712021, 0.02125498279929161, 0.0025822939351201057, 0.00017630915681365877, -0.015288672409951687, -0.010933265089988708, 0.014110325835645199, -0.026386011391878128, 0.0013722515432164073, -0.0025412756949663162, -0.005190690513700247, 0.0041167545132339, -0.0032255370169878006, -0.0054815481416881084, 0.0025300888810306787, 0.020195962861180305, 0.0014897133223712444, -0.009001672267913818, -0.005802237428724766, 0.005007972475141287, -0.007439244072884321, -0.011798379942774773, 0.0036506366450339556, -0.004377780947834253, -0.006618876475840807, -0.005925292614847422, -0.003387745935469866, 0.00818130373954773, -0.025356821715831757, 0.035201236605644226, -0.0051645878702402115, -0.002283978508785367, -0.007562299259006977, -0.004582872614264488, 0.029548155143857002, -0.012775363400578499, -0.002709078136831522, 0.008680982515215874, 0.0037047062069177628, 0.008673524484038353, -0.005433071870356798, 0.004247267730534077, 0.014811367727816105, 0.006969396956264973, 0.006939565762877464, 0.0030316319316625595, 0.014833740890026093, -0.00828571431338787, 0.01429677288979292, 0.00487373024225235, -0.022478077560663223, -0.011999743059277534, -0.007711457088589668, -0.009106081910431385, -0.011537354439496994, -1.6124771718750708e-05, -0.014095409773290157, -0.003322489559650421, -0.013416741974651814, 0.009486434981226921, -0.0008525298908352852, 0.009143372066318989, -0.012141442857682705, -0.029279671609401703, -0.03708062320947647, 0.001463610678911209, 0.0016537868650630116, -0.004884917289018631, -0.012327889911830425, -0.023850329220294952, 0.004422528203576803, -0.01977832056581974, 0.0025934807490557432, 0.008986756205558777, 0.023805581033229828, -0.012111611664295197, 0.011619390919804573, 0.026714157313108444, 0.00652938149869442, -0.001897100475616753, 0.0067382026463747025, 0.026162274181842804, 0.0027258584741503, -0.0008585894829593599, 0.006369037088006735, 0.022701812908053398, -0.03663314878940582, -0.00657785777002573, 0.006924649700522423, -0.01265603769570589, 0.008211135864257812, -0.009695255197584629, 0.0027258584741503, -0.021269898861646652, 0.001633277628570795, -0.027459947392344475, -0.026386011391878128, 0.008867429569363594, 0.004750675056129694, -0.024446960538625717, 0.005839527118951082, 0.033441174775362015, -0.01700398698449135, -0.0021310916636139154, 0.029548155143857002, 0.005522566847503185, 0.0032068921718746424, 0.001579207950271666, -0.012290600687265396, -0.006022245157510042, 0.02429780177772045, 0.010411213152110577, -0.007711457088589668, -0.005231709219515324, -0.00549646420404315, 0.02364150807261467, -0.011954995803534985, -0.02547614835202694, 0.005742574576288462, -0.018823711201548576, 0.011380738578736782, -0.0038631863426417112, 0.0009396940004080534, 0.010881059803068638, -0.0034865629859268665, 0.012849942781031132, 0.007793494034558535, 0.018987784162163734, -0.0125963743776083, 0.009120997972786427, 0.011559727601706982, -0.005429342854768038, -0.003342998679727316, -0.0005612061358988285, 0.018048090860247612, 0.0070104156620800495, 0.02556564286351204, 0.0027277227491140366, -0.03007020801305771, -0.01757078617811203, 0.0166460070759058, -0.014505594037473202, -0.010418671183288097, -0.0033243540674448013, -0.024715444073081017, -0.01306622102856636, 0.000751382322050631, -0.00809926725924015, 0.0017050597816705704, 0.0109929284080863, 0.03191976249217987, 0.010314260609447956, -0.009083708748221397, -0.014363894239068031, 0.01144785899668932, 0.005880545359104872, 0.004649993497878313, 0.015146972611546516, 0.008807767182588577, 0.022925550118088722, 0.028862029314041138, 0.020210878923535347, -0.015616819262504578, -0.021657709032297134, 0.00478050671517849, 0.010978012345731258, 0.01600462943315506, -0.0021534652914851904, 0.0019856628496199846, -0.018465733155608177, -0.025505980476737022, 0.0015978526789695024, 0.00568291125819087, 0.008718271739780903, 0.00120724574662745, -0.0020173590164631605, 0.012111611664295197, 0.0013806417118757963, 0.026177190244197845, 0.02907085046172142, -0.004996785428375006, -0.0028992542065680027, 0.0015838691033422947, -0.004180146846920252, -0.015452745370566845, -0.016780249774456024, 0.007483991328626871, -0.002716535935178399, -0.016049377620220184, -0.01140311174094677, 0.016258196905255318, -0.012529253028333187, 0.01645210199058056, 0.024148644879460335, -0.01127632800489664, -0.018883375450968742, 0.004840170033276081, 0.004243538714945316, 0.0020882089156657457, -0.02004680596292019, -0.008770477026700974, -0.007491449359804392, 0.013744888827204704, -0.004612704273313284, 0.002477883594110608, -0.0015456475084647536, -0.007853156886994839, -0.0017693841364234686, 0.004649993497878313, 0.020031889900565147, 0.015467661432921886, 0.0075995889492332935, -0.019107110798358917, 0.008621319197118282, 0.010038318112492561, 0.012767905369400978, -0.011373280547559261, 0.02355201356112957, -0.009277613833546638, -0.01449067797511816, 0.003956410102546215, 0.0036506366450339556, 0.007346020545810461, 0.016705671325325966, 0.012186190113425255, -0.015117140486836433, 0.01444593071937561, -0.009113539941608906, -0.006324289832264185, -0.002004307694733143, 0.002750096609815955, 0.020941751077771187, 0.014520509168505669, -0.010180017910897732, 0.0002486739831510931, 0.024342549964785576, 0.0015903947642073035, 0.006167673971503973, -0.0014058121014386415, -0.026341263204813004, -0.015780892223119736, -0.016138872131705284, -0.009374566376209259, 0.0032535039354115725, 0.006410055328160524, -0.0036525011528283358, 0.0054815481416881084, -0.006424971390515566, -0.01265603769570589, -0.02317911945283413, -0.010120355524122715, -0.014915777370333672, 0.006413784343749285, -0.013424200005829334, 0.013088595122098923, -0.013028931804001331, 0.005063906311988831, 0.014177446253597736, 0.004038446582853794, -0.008248425088822842, -0.0049035619013011456, 0.0065815867856144905, -0.019569501280784607, 0.0028880673926323652, -0.022746561095118523, 0.011335991322994232, -0.01463237777352333, 0.033262185752391815, 0.01293197926133871, -0.01764536462724209, 0.011708885431289673, 0.00792027823626995, 0.018808795139193535, 0.007853156886994839, -0.004008615389466286, -0.011887874454259872, 0.009829497896134853, -0.06073704734444618, 0.02604294754564762, -0.014751704409718513, 0.02584904246032238, -0.009165745228528976, -0.011104796081781387, -0.0033094382379204035, -0.008211135864257812, -0.02022579498589039, 0.02556564286351204, 0.02106107771396637, -0.01794368028640747, -0.007979940623044968, -0.0016733638476580381, -0.024760190397500992, 0.01831657439470291, 0.01296926848590374, 0.009143372066318989, 0.024954095482826233, 0.0049259355291724205, 0.006663623731583357, -0.018928121775388718, -0.010776649229228497, -0.003467918373644352, 0.009695255197584629, -0.007651793770492077, 0.020031889900565147, -0.013081137090921402, -0.007793494034558535, 0.021642792969942093, 0.011514980345964432, 0.0009602031786926091, 0.02070309966802597, 0.0020415971521288157, 0.023402854800224304, 0.01100038643926382, 0.00966542400419712, -0.0020471904426813126, 0.004541854374110699, 0.008024688810110092, -0.009784750640392303, -0.001903626136481762, -0.031710945069789886, -0.001470136339776218, -0.003907933831214905, 0.011418027803301811, 0.017138227820396423, 0.01758570224046707, 0.011940079741179943, -0.0065032788552343845, -0.012350264005362988, -0.013088595122098923, -0.036662980914115906, -0.000634386669844389, -0.008129098452627659, -0.01792876422405243, 0.006025974173098803, -0.030055291950702667, 0.016854828223586082, -0.01739179715514183, -0.005388324614614248, -0.008815224282443523, -0.006835155189037323, 0.022597402334213257, -6.0711878177244216e-05, 0.009546097368001938, 0.002498392714187503, 0.01810775324702263, 0.03117397613823414, 0.018077922984957695, -0.014378809370100498, -0.01407303661108017, 0.008151472546160221, -0.004754404071718454, -0.01094818115234375, 0.011522438377141953, 0.007222965359687805, -0.00947151891887188, 0.00962067674845457, 0.01766028068959713, -0.0112614119425416, -0.0034772406797856092, 0.013603189028799534, 0.00022944661031942815, -0.013521152548491955, -0.014222194440662861, 0.013998457230627537, 0.010187475942075253, -0.004814067389816046, 0.006134113762527704, -8.652316319057718e-05, 0.015378166921436787, -0.01794368028640747, 0.02153838239610195, 0.010746818035840988, 0.006122926715761423, -0.015512408688664436, 0.01100038643926382, 0.019345764070749283, -0.0025655138306319714, -0.005235437769442797, 0.009158287197351456, -0.01461746171116829, 0.017913848161697388, 0.00971017125993967, 0.015258840285241604, -0.011895332485437393, -0.005075093358755112, -0.026520252227783203, 0.003952681086957455, 0.018465733155608177, 0.007428057491779327, -0.013386910781264305, 0.010493249632418156, -0.022761477157473564, 0.008196219801902771, 0.004411341156810522, 0.002026681322604418, -0.021478720009326935, -0.007830783724784851, -0.011679054237902164, -0.03191976249217987, -0.01094818115234375, 0.00544798793271184, -0.007763662375509739, -0.01848064921796322, 0.010001028887927532, -0.010068150237202644, -0.020389867946505547, 0.006003600545227528, -0.008554198779165745, 0.018167417496442795, 0.004452359862625599, -0.0002082382416119799, 0.013603189028799534, -0.003708435222506523, 0.004463546443730593, 0.004385238513350487, -0.0038519995287060738, -0.0031845185440033674, 0.009807123802602291, -0.006719558034092188, 0.023954739794135094, 0.0028284043073654175, -0.01145531702786684, -0.011440401896834373, -0.013812010176479816, 0.02620702236890793, 0.005418156273663044, 0.014043204486370087, -0.010866143740713596, 0.016810081899166107, 0.022328918799757957, 0.012984184548258781, -0.00402353098616004, -0.00635039247572422, 0.005063906311988831, -0.02540156990289688, 0.015676481649279594, 0.012059406377375126, -0.0166460070759058, -0.006652436684817076, 0.004206249490380287, 0.031024817377328873, -0.0007322714664041996, 0.018003344535827637, -0.010784107260406017, -0.007778577972203493, -0.018749132752418518, -0.0018225215608254075, 0.016422271728515625, 0.015795808285474777, -0.026162274181842804, -0.015974797308444977, 0.008255883120000362, -0.01467712502926588, -0.007185676135122776, -0.003322489559650421, -0.021284814924001694, -0.0035052078310400248, 0.0125068798661232, -0.0017125176964327693, 0.00017700833268463612, -0.01440118346363306, 0.029115598648786545, -0.02179195173084736, -0.01141056977212429, 0.012223480269312859, -0.013565899804234505, 0.013744888827204704, 0.0038669153582304716, -0.008061978034675121, -0.00037802173756062984, -0.003581651020795107, 0.012954353354871273, 0.008740645833313465, -0.006335476413369179, 0.0010972418822348118, 0.0022970298305153847, 0.010150186717510223, 0.012670952826738358, 0.004206249490380287, -0.008971840143203735, -0.004705927800387144, -0.02520766481757164, -0.013841841369867325, -0.00924778264015913, 0.0030204448848962784, -0.00998611282557249, -0.004004886373877525, 0.007588401902467012, 0.0028433201368898153, -0.002576700644567609, 0.0017749775433912873, -0.011060048826038837, -0.008405040949583054, -0.011589559726417065, -0.006615147460252047, -0.006887360475957394, 0.009672882035374641, 0.006700912956148386, -0.017347048968076706, 0.01112717017531395, 0.015348335728049278, 0.00046308827586472034, -0.010500707663595676, 0.0011876687640324235, 0.008859971538186073, 0.018450817093253136, 0.030338691547513008, 0.00786807294934988, -0.001693872967734933, 0.03129330277442932, -0.00818130373954773, 0.013618105091154575, -0.005324932746589184, 0.012991642579436302, -0.008270799182355404, 0.012894690036773682, -0.004620162304490805, 0.002539411187171936, -0.0004782371106557548, 0.01467712502926588, 0.0190474484115839, -0.008852514438331127, 0.0026829754933714867, 0.011149544268846512, -0.009255239740014076, -0.0018393017817288637, 0.008472161367535591, -0.002373473020270467, 0.021493636071681976, 0.0032329948153346777, 0.015437830239534378, 0.009352192282676697, 0.02686331607401371, -0.008889803662896156, 0.003581651020795107, -0.007741288747638464, -0.004933393560349941, -0.02344760298728943, -0.007174489088356495, -0.004299473017454147, -0.023313360288739204, -0.008792851120233536, -0.0379159078001976, 0.013864215463399887, 0.0030204448848962784, 0.003260961966589093, -0.0036040248814970255, 0.014102867804467678, 0.005548669490963221, -0.0010636814404278994, -0.005000514443963766, -0.01822707988321781, -0.020732931792736053, 0.0188684593886137, -0.008464704267680645, 0.004403883591294289, 0.012730616144835949, -0.031323134899139404, 0.014326604083180428, -0.006387681700289249, -0.012812652625143528, 0.01785418577492237, -0.0011205477640032768, -0.04128687456250191, 0.004601517226547003, 0.015199177898466587, 0.013431658037006855, -0.020270541310310364, 0.0061490293592214584, -0.016884660348296165, 0.005011701490730047, -0.03549955040216446, -0.010597660206258297, 4.4747332140104845e-05, -0.0017218401189893484, -0.0071931337006390095, -0.001942780101671815, -0.014841198921203613, 0.013700141571462154, 0.017600618302822113, 0.023581843823194504, -0.008352835662662983, 0.01921152137219906, -0.013043847866356373, -0.013655394315719604, -0.001897100475616753, -0.01558698806911707, -0.018331490457057953, -0.0008777002803981304, 0.00993390753865242, -0.003150958102196455, -0.014505594037473202, 0.008986756205558777, 0.008494535461068153, -0.011604474857449532, 0.0036338563077151775, 0.015236467123031616, -0.00205837725661695, 0.009635592810809612, 0.0003582117205951363, 0.017600618302822113, 0.013267584145069122, -0.0036786035634577274, -0.005272727459669113, -0.020195962861180305, -0.0016761604929342866, 0.012230937369167805, 0.004325575660914183, 0.01712331362068653, -0.013759804889559746, 0.0011186833726242185, -0.00965050794184208, 0.0005994277889840305, 0.00733856251463294, -0.016422271728515625, -0.03135296329855919, 0.007469075731933117, 0.015251382254064083, -0.00942677166312933, -0.004485920071601868, -0.005030346103012562, -0.0049035619013011456, -0.028951523825526237, 0.03761759027838707, 0.026386011391878128, 0.027653852477669716, 0.0041167545132339, -0.023790664970874786, 0.007562299259006977, -0.005388324614614248, 0.00205651274882257, -0.011328533291816711, -0.01164176408201456, 0.0019110840512439609, 0.005828340072184801, 0.002373473020270467, -0.00956101343035698, 0.020255625247955322, -0.0380948968231678, 0.018987784162163734, -0.0161985345184803, -0.012387553229928017, 0.011708885431289673, 0.01554224081337452, -0.0033299473579972982, 0.007562299259006977, -0.016959238797426224, -0.0037811496295034885, -0.0008348174160346389, 0.001446830458007753, 0.00956101343035698, 0.018346406519412994, 0.005224251188337803, -0.002964510815218091, -0.015206634998321533, 0.010702070780098438, -0.010702070780098438, 0.045970428735017776, 0.03451510891318321, 0.014416099525988102, -0.010470875538885593, -0.012290600687265396, -0.015676481649279594, 0.009419313631951809, -0.0005896393558941782, 0.002655008342117071, -0.020732931792736053, 0.015706313773989677, 0.010888517834246159, 0.016034461557865143, 0.01657142862677574, -0.0061490293592214584, 0.003878102172166109, 0.004306930582970381, -0.0109034338966012, -0.00809180922806263, 0.014110325835645199, 0.01296926848590374, -0.024894433096051216, 0.011194291524589062, 0.00031765946187078953, 0.02714671567082405, 0.013700141571462154, 0.011507522314786911, -0.00933727715164423, -0.009173203259706497, -0.002073293086141348, 0.011649222113192081, -0.018734216690063477, -0.013946251943707466, 0.01282756868749857, -0.007070078514516354, 0.01269332692027092, 0.009963739663362503, 0.0063988687470555305, 0.011723801493644714, -0.0012855535605922341, -0.01278282143175602, -0.0160195454955101, 0.008539282716810703, -0.0019259997643530369, -0.017526037991046906, 0.01136582251638174, 0.03299370035529137, 0.004344220273196697, -0.000460757699329406, -0.0015894625103101134, -0.01636260747909546, 0.0111719174310565, -0.013901504687964916, 0.00563816400244832, -0.013588273897767067, 0.02786267362535, 0.0019931208807975054, -0.027847757562994957, -0.013118426315486431, -0.00933727715164423, -0.00025589880533516407, 0.007506364956498146, 0.00979220774024725, 0.010455960407853127, 0.005052719730883837, 0.01774977520108223, 0.016899576410651207, -0.003283335594460368, -0.0007481194916181266, 0.002578565152361989, 0.0051869614981114864, -0.005567314103245735, 0.008196219801902771, 0.0017302301712334156, 0.0005164588219486177, -0.016944322735071182, -0.03135296329855919, -0.027832841500639915, -0.012081779539585114, 0.012141442857682705, 0.019837984815239906, -0.0029551885090768337, 0.018823711201548576, -0.015266298316419125, -0.02088208869099617, -0.00040459047886542976, -0.004284556955099106, -0.0005714607541449368, -0.00933727715164423, -0.006823968142271042, -0.009963739663362503, 0.006380224134773016, -0.013446573168039322, 0.009538640268146992, 0.015437830239534378, -0.0012585187796503305, -0.0026344992220401764, 0.013312331400811672, -0.0010068150004372, 4.681573045672849e-05, -0.013088595122098923, 0.005205606576055288, -0.006432428956031799, 0.004728301428258419, 0.010828854516148567, -0.03743860125541687, 0.0021161760669201612, 0.0017759097972884774, 0.007536196615546942, 0.010634949430823326, -0.008158930577337742, 0.02558055892586708, 0.005694098304957151, 0.0014179311692714691, -0.016586344689130783, 0.01810775324702263, -0.002981291152536869, 0.015005272813141346, 0.013923878781497478, -0.0057761347852647305, 0.006492092274129391, -0.002714671427384019, 0.0030558700673282146, -0.004810338374227285, 0.019658995792269707, -0.019748490303754807, 0.008859971538186073, 0.030666839331388474, -0.011902790516614914, 0.016616176813840866, 0.01666092313826084, -0.008740645833313465, -0.003305709222331643, 0.026177190244197845, -0.003607753664255142, -0.011813296005129814, 0.016616176813840866, 0.010060692206025124, -0.008039603941142559, -0.002431271830573678, -0.0016621770337224007, 0.0189579539000988, 0.027012472972273827, -0.014915777370333672, 0.020494278520345688, -0.007439244072884321, -0.024640865623950958, 0.007711457088589668, 0.003303844714537263, -0.019375594332814217, 0.0033635077998042107, -0.005310016684234142, -0.00932981912046671, 0.017242638394236565, -0.00022257136879488826, 0.018376238644123077, -0.005902918986976147, 0.02859354577958584, -0.015146972611546516, -0.012119069695472717, 0.016123956069350243, -0.002655008342117071, 0.010396297089755535, 0.024491706863045692, 0.009120997972786427, -0.010709528811275959, -0.01968882605433464, 0.011514980345964432, -0.013856757432222366, -9.334013884654269e-05, 0.004776777699589729, -0.017809439450502396, -0.013908962719142437, -0.0010776648996397853, -0.014602546580135822, 0.009449144825339317, -0.003855728544294834, -0.014005915261805058, -0.008822682313621044, -0.0012212293222546577, 0.019092194736003876, 0.01476661954075098, 0.010888517834246159, 0.016616176813840866, 0.010612576268613338, -0.00822605099529028, 0.009217950515449047, 0.011917706578969955, 0.0017237045103684068, 0.017048733308911324, 0.022015687078237534, 3.4463602787582204e-05, 0.018048090860247612, -0.0029701043386012316, -0.012715700082480907, 0.01857014372944832, 0.013908962719142437, 0.02226925641298294, -0.023790664970874786, -0.0021683811210095882, -0.012909605167806149, -7.230656046885997e-05, -0.004713385831564665, 0.0024144914932549], "9698d911-4ec1-4061-8ec4-c9de86f0ec0b": [0.012301994487643242, 0.003534125629812479, -0.010744011960923672, 0.005523757543414831, -0.04772418364882469, -0.03547614812850952, 0.0012662826338782907, 0.018992552533745766, -0.02003120817244053, 0.028138114139437675, -0.0056755091063678265, 0.013549729250371456, -0.017427826300263405, -0.017980875447392464, 0.004414284601807594, -0.003470052732154727, -0.030080534517765045, 0.04208577051758766, 0.010244917124509811, 0.003979263361543417, 0.04502638056874275, -0.02374069020152092, -0.06436964869499207, 0.028569763526320457, -0.012436884455382824, -0.005230370908975601, -0.01597101055085659, -0.008342964574694633, -0.0049369847401976585, 0.006569157354533672, 0.044270992279052734, 0.019127443432807922, 0.023524867370724678, -0.0018682305235415697, 0.01372508704662323, 0.0027382730040699244, 0.01594403199851513, 0.062373269349336624, 0.011465674266219139, -0.014379304833710194, -0.0252919290214777, 0.04831770062446594, 0.013583452440798283, -0.06480129808187485, -0.05317375063896179, 0.029163280501961708, 0.024792835116386414, -0.03677109256386757, 0.01323273777961731, -0.0028984551317989826, 0.0016591505846008658, -0.012753876857459545, -0.00952999945729971, 0.018223678693175316, 0.00973907858133316, -0.01574169658124447, 0.012389672920107841, 0.03191504254937172, -0.014473727904260159, -0.043731432408094406, 0.006130763795226812, -0.015525872819125652, 0.03685202822089195, 0.00207056594081223, -0.015444938093423843, -0.028138114139437675, 0.004984196275472641, 0.02395651489496231, -0.05484639108181, 0.011755689047276974, 0.022634590044617653, 0.04535011574625969, -0.0078775929287076, 0.010851924307644367, -0.0063937995582818985, -0.017171533778309822, 0.022459233179688454, 0.02353835478425026, 0.008187840692698956, 0.021366622298955917, -0.026816189289093018, -0.0005918311653658748, 0.015121201984584332, -0.0016557782655581832, 0.041977860033512115, 0.02397000417113304, -0.03995450586080551, -0.019734449684619904, -0.05983733385801315, -0.03636642172932625, 0.004168109968304634, -0.01792692020535469, 0.008929736912250519, 0.015903566032648087, -0.015431448817253113, 0.011843367479741573, 0.03693296015262604, 0.027018524706363678, 0.03801208361983299, -0.049180999398231506, -0.015444938093423843, 0.010076304897665977, 0.010177472606301308, 0.021501513198018074, 0.00933440774679184, 0.01926233433187008, 0.0396847240626812, -0.026546409353613853, 0.006032968405634165, 0.0330481193959713, 0.02824602648615837, -0.009894202463328838, -0.005506895948201418, 0.005324794445186853, -0.0035948262084275484, -0.04710368812084198, -0.00037263441481627524, 0.015471916645765305, -0.03663620352745056, -0.047778140753507614, 0.037850216031074524, 0.048209790140390396, 0.006424149964004755, 0.01051469799131155, -0.001019264804199338, -0.02650594152510166, -0.006235303822904825, 0.014433261007070541, 0.018372057005763054, 0.0022307480685412884, 0.0018817195668816566, 0.019437691196799278, 0.019545603543519974, -0.01178266666829586, 0.012322228401899338, 0.021474534645676613, -0.010143749415874481, 0.022135496139526367, -0.015175157226622105, 0.026735255494713783, -0.024091405794024467, -0.026964569464325905, 0.030053555965423584, 0.0029254332184791565, 0.026951080188155174, -0.01830461248755455, 0.014338837936520576, 0.023470910266041756, -0.015256091952323914, 0.018034832552075386, -0.043515607714653015, -0.01965351589024067, 0.025642644613981247, 0.01508073415607214, -0.011398229748010635, -0.015539361163973808, -0.016888264566659927, 0.015714718028903008, 0.022243408486247063, -0.03275136277079582, 0.023228108882904053, -0.02803020179271698, 0.018061809241771698, 0.04046708717942238, 0.050314079970121384, 0.009138816967606544, 0.012618986889719963, -0.010561909526586533, -0.013947656378149986, 0.029648885130882263, 0.025737067684531212, -0.02726132795214653, 0.02376766875386238, 0.02297181636095047, -0.014392794109880924, -0.00666695274412632, 0.006188092287629843, 0.007209885865449905, 0.01052818726748228, -0.011944535188376904, -0.02765250951051712, -0.015161668881773949, -0.029460038989782333, 0.017265956848859787, -0.007378499023616314, 0.008457621559500694, 0.000603212509304285, 0.03256251662969589, 0.02007167600095272, 4.560450906865299e-05, 0.02666781097650528, -0.013300182297825813, 0.004222066141664982, 0.016105901449918747, -0.018641838803887367, 0.021852226927876472, 0.024442121386528015, -0.022809948772192, -0.018048319965600967, 0.02533239684998989, -0.01042701955884695, -0.07688746601343155, -0.047184623777866364, 0.01692873053252697, -0.022283876314759254, -0.0004501963558141142, -0.011735455133020878, 0.011661265976727009, 0.039819613099098206, -0.06258909404277802, 0.04696879908442497, -0.004255788866430521, -0.010379808023571968, -0.016240790486335754, 0.01509422343224287, 0.015606806613504887, -0.040979668498039246, 0.03601570799946785, 0.03426213562488556, -0.019613048061728477, -0.014284881763160229, -0.003429585602134466, -0.01814274489879608, -0.013300182297825813, -0.02666781097650528, -0.00414113188162446, 0.01713106781244278, -0.013387861661612988, -0.05074572563171387, -0.01870928332209587, 0.03909120708703995, 0.03874048963189125, -0.034909605979919434, -0.030647074803709984, -0.004785233177244663, 0.01988282799720764, 0.022877393290400505, -0.013347393833100796, 0.02513006143271923, -0.013306926935911179, 0.010946347378194332, 0.06463942676782608, -0.002773681655526161, 0.01421743631362915, 0.025197505950927734, 0.025575198233127594, 0.002225689822807908, 0.01869579404592514, -0.024077916517853737, -0.01847996935248375, 0.0041478765197098255, 0.01118914969265461, -0.011924301274120808, -0.031834106892347336, -0.0405210442841053, 0.048182811588048935, -0.02063821442425251, -0.01924884505569935, 0.0009965019999071956, -0.03231971338391304, 0.007209885865449905, 0.004363700747489929, 0.0014112896751612425, -0.006063318345695734, 0.0036588991060853004, 0.018021343275904655, 0.0020739382598549128, -0.04707670956850052, 0.009853735566139221, 0.02160942368209362, -0.043353740125894547, 0.0019356756238266826, 0.00530793284997344, -0.010359574109315872, -0.017994364723563194, -0.017373869195580482, 0.02919025905430317, 0.007884337566792965, 0.023889070376753807, 0.006967083550989628, -0.003861234523355961, 0.012625731527805328, 0.01731991395354271, 0.04095269367098808, -0.005115714389830828, 0.000955191848333925, 0.0017400847282260656, -0.023228108882904053, -0.04011637344956398, -0.026937590911984444, -0.010076304897665977, -0.00083336909301579, 0.03097080998122692, 0.008262029848992825, 0.042139727622270584, -0.0017434570472687483, -0.018655328080058098, -0.018830684944987297, -0.03188806399703026, 0.012578519992530346, -0.015836119651794434, 0.004980823956429958, 0.02159593626856804, -0.02449607662856579, -0.0017333402065560222, -0.01421743631362915, 0.05821865051984787, 0.030107513070106506, -0.03814697265625, 0.0034801694564521313, 0.026897123083472252, 0.006053201854228973, 0.0074594332836568356, 0.0007536995108239353, -0.013327160850167274, -0.012841555289924145, 0.02295832708477974, -0.02840789593756199, -0.00789108220487833, -0.020166099071502686, 0.014042079448699951, 0.0036184319760650396, -0.045053355395793915, 0.005921683739870787, 0.0015773733612149954, -0.04054802283644676, 0.002102602506056428, -0.007520133629441261, -0.011715222150087357, -0.024091405794024467, -0.05077270418405533, -0.014810954220592976, -0.056923702359199524, 0.0031817248091101646, -0.01910046488046646, -0.04286813363432884, -0.018992552533745766, -0.023093217983841896, -0.011270083487033844, -0.025952892377972603, -0.009455809369683266, 0.022351320832967758, -0.009523254819214344, 0.010912624187767506, 0.0067377700470387936, 0.018938597291707993, 0.00826877448707819, 0.013124825432896614, -0.00923324003815651, -0.0022914488799870014, 0.0007389458478428423, -0.03566499426960945, 0.008740890771150589, 0.02534588612616062, 0.005871099885553122, -0.019181398674845695, 0.004711043555289507, 0.012767366133630276, 0.012140125967562199, -0.0029574695508927107, -0.008794846944510937, -0.021353133022785187, -0.008127139881253242, -0.014554662629961967, 0.0018429385963827372, 0.015633784234523773, 0.004093920346349478, -0.026546409353613853, 0.029540972784161568, 0.011351018212735653, 0.005284327082335949, 0.04084477946162224, 0.006174603011459112, 0.017481781542301178, -0.037688348442316055, -0.013974633999168873, 0.02217596396803856, -0.03501752018928528, -0.014446750283241272, 0.016051944345235825, -0.03218482434749603, -0.0053045605309307575, 0.010575398802757263, -0.016645461320877075, 0.011701732873916626, 0.03178015351295471, 0.02666781097650528, 0.002994564361870289, -0.004697554279118776, -0.0013548043789342046, -0.024644456803798676, 0.02784135565161705, -0.021838737651705742, 0.015404471196234226, -0.03633944317698479, 0.028192071244120598, -0.010319107212126255, -0.006046457216143608, 0.009563721716403961, -0.030916854739189148, -0.0017687489744275808, -0.004997685085982084, 0.021096840500831604, 0.0049437289126217365, 0.02160942368209362, -0.034720759838819504, -0.02994564361870289, -0.00915905088186264, 0.020139120519161224, -0.01731991395354271, -0.007068251259624958, 0.01548540499061346, -0.020961951464414597, -0.005796910263597965, 0.002544368151575327, -0.02530541829764843, 0.011715222150087357, -0.013489029370248318, -0.09625770896673203, -0.01636219210922718, 0.05935172736644745, 0.03345279023051262, -0.04626736789941788, 0.00622855918481946, 0.009860480204224586, -0.010582143440842628, 0.04319187253713608, -0.028192071244120598, -0.02026052214205265, -0.016591506078839302, 0.025669623166322708, 0.0015950776869431138, 0.02453654445707798, -0.009138816967606544, 0.005786793306469917, -0.038821425288915634, -0.008976948447525501, -0.008005739189684391, 0.007297564763575792, -0.002790542785078287, 0.029864709824323654, 0.022675057873129845, -0.014257904142141342, 0.03698691725730896, -0.0015124573837965727, -0.017225490882992744, -0.04222065955400467, 0.00219365325756371, 0.026532920077443123, 0.028461851179599762, -0.002557857194915414, 0.03722972050309181, -0.01792692020535469, 0.008788102306425571, 0.016996176913380623, 0.02591242454946041, 0.003726344322785735, -0.019140932708978653, 0.039981480687856674, -0.006349960342049599, -0.03248158097267151, -0.007945038378238678, 0.0326974056661129, 0.017616672441363335, 0.010561909526586533, -0.06766097247600555, 0.014730019494891167, 0.0003536654694471508, -0.008241796866059303, 0.011600565165281296, 0.011297062039375305, 0.011802900582551956, 0.001155841164290905, -0.012187337502837181, 0.028138114139437675, 0.006434266921132803, -0.029540972784161568, -0.007304309401661158, -0.005486662499606609, 0.02507610432803631, 0.0035004031378775835, -0.02436118572950363, -0.030701030045747757, 0.009617677889764309, -0.02047634683549404, 0.016874775290489197, -0.013185526244342327, 0.0028984551317989826, -0.004906634334474802, 0.006501711905002594, 0.03410026431083679, -0.012713409960269928, 0.04945078119635582, 0.0053045605309307575, 0.013866721652448177, -0.013947656378149986, -0.02123173139989376, 0.00014953853678889573, -0.013691364787518978, -0.08120395243167877, 0.03965774551033974, -0.02124522067606449, -0.0051764147356152534, 0.028273005038499832, -0.0036218042951077223, -0.010184217244386673, -0.054037049412727356, -0.016456615179777145, 0.01021119486540556, -0.022459233179688454, -0.03426213562488556, 0.040224283933639526, -0.008808336220681667, -0.0026691416278481483, -0.018237167969346046, -0.0078775929287076, -0.015674252063035965, 0.006046457216143608, 0.007655024062842131, -0.015714718028903008, 0.012699920684099197, 0.0023723829071968794, 0.006252164952456951, 0.013448561541736126, -0.019181398674845695, -0.029702842235565186, 0.008410410024225712, -0.004512079991400242, 0.043893299996852875, 0.009287196211516857, -0.030296359211206436, -0.010062815621495247, 0.022904371842741966, -0.004889773204922676, 0.007284075487405062, 0.03218482434749603, -0.00857227761298418, 0.0007819421589374542, 0.03949587792158127, 0.038659557700157166, -0.029109325259923935, 0.001602665288373828, 0.017198512330651283, 0.0018176466692239046, -0.01041353028267622, 0.016618484631180763, -0.017090599983930588, 0.03930703178048134, 0.001527632586658001, 0.020557280629873276, -0.011317295022308826, 0.006343215703964233, -0.013772298581898212, -0.012868533842265606, -0.01691524311900139, -0.016618484631180763, 0.03466680645942688, -0.03078196384012699, -0.02201409451663494, -0.012787599116563797, 0.00020096545631531626, 0.01695570908486843, 0.01245711836963892, 0.013212503865361214, -0.01632172428071499, 0.021676870062947273, -0.023511378094553947, 0.020759616047143936, 0.0025561710353940725, 0.01441977173089981, 0.012207571417093277, 0.001680227229371667, 0.07116811722517014, -0.006646718829870224, -0.00023479340597987175, 0.031429436057806015, -0.015674252063035965, 0.018844174221158028, -0.01089913584291935, -0.004771743901073933, 0.023282064124941826, -0.006494967266917229, 0.0012831438798457384, -0.024104895070195198, 0.003611687570810318, -0.007769680581986904, -0.019073486328125, -0.023079728707671165, -0.028273005038499832, 0.017562715336680412, 0.00560131948441267, 0.025197505950927734, -0.010811456479132175, -0.012092914432287216, -0.012679687701165676, 0.03871351480484009, 0.0014804209349676967, -0.011330784298479557, 0.031429436057806015, 0.03350674733519554, -0.007547111716121435, 0.02258063480257988, 0.00045146094635128975, -0.029675863683223724, -0.044864509254693985, 0.025602176785469055, 0.017872963100671768, 0.01673988439142704, -0.013516006991267204, -0.009887457825243473, -0.024684922769665718, 0.012140125967562199, 0.018736261874437332, -0.011357762850821018, 0.037661369889974594, 0.029648885130882263, 0.024050937965512276, 0.038254886865615845, 0.008430643007159233, 0.0035240089055150747, -0.007614556699991226, -0.013199014589190483, 0.03615059703588486, -0.012146870605647564, 0.05314677581191063, 0.004997685085982084, -0.00934789702296257, -0.004046708811074495, -0.022836925461888313, 0.034558892250061035, 0.002731528365984559, -0.0065421792678534985, 0.022283876314759254, -0.04165412113070488, 0.04920797795057297, -0.014554662629961967, 0.0030991043895483017, 0.035503122955560684, -0.02337648719549179, -0.030485205352306366, -0.0028950828127563, -0.030431250110268593, 0.018776727840304375, 0.019788404926657677, -0.0027787399012595415, -0.005129203200340271, 0.005301188211888075, 0.0005973110673949122, 0.025413330644369125, 0.028866522014141083, -0.06863217800855637, -0.0016996177146211267, 0.01846648007631302, 0.010130261071026325, 0.02139360085129738, -0.037850216031074524, -0.02743668481707573, 0.023929538205266, 0.014595129527151585, -0.005628297571092844, -0.0057260929606854916, -0.008531810715794563, -0.005233743228018284, 0.037067852914333344, -0.00016081452486105263, 0.0032576005905866623, 0.009111839346587658, -0.006680441554635763, -0.00963791087269783, -0.011553353630006313, 0.003628548700362444, -0.03404631093144417, 0.03431608900427818, 0.01826414465904236, 0.011371251195669174, -0.006194836460053921, -0.005570969078689814, -0.025413330644369125, -0.017238978296518326, -0.047993965446949005, 0.018736261874437332, -0.026708276942372322, -0.015498894266784191, -0.023605801165103912, 0.02278297021985054, -0.020692169666290283, 0.011526375077664852, 0.0115803312510252, 0.014244414865970612, 0.013556473888456821, 0.007445944007486105, 0.00856553390622139, -0.02534588612616062, 0.006437639240175486, 0.007142440881580114, -0.004228810779750347, 0.005567596759647131, 0.011614054441452026, 0.012200826779007912, -0.014473727904260159, -0.01617334596812725, 0.0011179032735526562, -0.030889876186847687, -0.013064124621450901, -0.017063621431589127, 0.0074661774560809135, -0.01529655884951353, -0.03223877772688866, 0.0035442423541098833, -0.04926193505525589, 0.005931800696998835, 0.01988282799720764, 0.005695742554962635, 0.014730019494891167, 0.01636219210922718, -0.008896014653146267, -0.017994364723563194, 0.025629155337810516, -0.006012734491378069, 0.007810147944837809, -0.016038455069065094, 0.017994364723563194, 0.0039050739724189043, -0.033560704439878464, -0.03714878484606743, 0.014595129527151585, 0.004343467298895121, -0.008349709212779999, -0.009988626465201378, 0.0030434622894972563, 0.019033020362257957, 0.013866721652448177, -0.02688363566994667, 0.01579565368592739, -0.02921723760664463, -0.0025865212082862854, -0.030080534517765045, -0.0009332721820101142, 0.037067852914333344, -0.03722972050309181, -0.0014281509211286902, 0.003706110641360283, 0.010285384953022003, -0.008403665386140347, 0.019559092819690704, 0.012612242251634598, 0.015161668881773949, -0.009118583984673023, 0.008963460102677345, 0.01714455522596836, 0.039414942264556885, -0.00637356610968709, 0.023214619606733322, 0.03140246123075485, 0.022540166974067688, -0.022486211732029915, 0.02162291295826435, -0.002132952678948641, 0.0030063672456890345, 0.011175660416483879, 0.02124522067606449, 0.03930703178048134, 0.012011980637907982, 0.005287699401378632, -0.0036959939170628786, -0.01692873053252697, -0.028947455808520317, 0.05274210497736931, 0.020193075761198997, 0.00226784311234951, 0.029055368155241013, -0.011310551315546036, 0.008342964574694633, 0.04756231606006622, -0.03582686185836792, -0.012086169794201851, 0.016658950597047806, 0.001353961299173534, -0.020746126770973206, 0.008477854542434216, -0.008632978424429893, -0.035907793790102005, -0.014123013243079185, 0.003392490791156888, 0.02201409451663494, 0.0030839291866868734, 0.023025773465633392, 0.009213007055222988, -0.018628349527716637, 0.017292935401201248, -0.004157993011176586, 0.015471916645765305, -0.034747738391160965, -0.018210189417004585, 0.011209382675588131, 0.03175317496061325, 0.009900947101414204, -0.02507610432803631, 0.011243105866014957, -0.0019188143778592348, -0.005108969751745462, -0.013664386235177517, 0.05015220865607262, 0.007513388991355896, -0.020692169666290283, -0.028380917385220528, 0.013758809305727482, 0.01129031740128994, 0.018533926457166672, 0.03685202822089195, -0.013671130873262882, -0.01636219210922718, -0.03752647712826729, 0.019693981856107712, -0.020368434488773346, 0.007142440881580114, -0.002922060899436474, 0.033533725887537, -0.0042321826331317425, -0.00486953929066658, -0.012092914432287216, -0.011357762850821018, 0.012160359881818295, 0.03169921785593033, -0.02357882261276245, -0.0249412152916193, 0.03312905505299568, -0.025184016674757004, 0.034909605979919434, 0.02044936828315258, -0.003652154700830579, 0.002559543354436755, -0.00774270249530673, 0.03582686185836792, -0.01429837103933096, 0.029540972784161568, 0.013731831684708595, 0.0015630412381142378, -0.05476545915007591, 0.03037729300558567, -0.011404974386096, -0.024388164281845093, -0.0260608047246933, -0.005240487866103649, 0.016483593732118607, -0.019046509638428688, 0.012686431407928467, -0.020921483635902405, 0.02728830650448799, 0.005412472877651453, 0.018776727840304375, 0.022702036425471306, 0.0066096242517232895, -0.0036993662361055613, 0.00024259176279883832, 0.002340346574783325, -0.005547363311052322, 0.02104288525879383, 0.015552850440144539, 0.010663077235221863, -0.01614636741578579, 0.0030991043895483017, -0.019707471132278442, -0.04753533750772476, 0.009314174763858318, 0.0006904696929268539, -0.028704654425382614, -0.017576204612851143, 0.026438497006893158, 0.005840749479830265, 0.002338660415261984, 0.015552850440144539, 0.03615059703588486, 0.011951279826462269, -0.03868653625249863, -0.011796155944466591, -0.03156432881951332, 0.016065433621406555, -0.012362695299088955, -0.018061809241771698, 0.000492349558044225, 0.0010251662461087108, 3.901807212969288e-05, -0.002416222356259823, -0.04033219814300537, 0.037688348442316055, 0.022081540897488594, -0.014244414865970612, -0.011061003431677818, -0.011141938157379627, -0.010042581707239151, -0.003534125629812479, -0.0024786090943962336, -0.0033992354292422533, -0.012126636691391468, -0.006218442227691412, 0.017953896895051003, -0.0013126510893926024, -0.008632978424429893, -0.01382625475525856, -0.0004738021525554359, -0.007735958322882652, 0.010393297299742699, 0.0073380316607654095, 0.01711757853627205, -0.04424401372671127, 0.017468292266130447, 0.01042701955884695, -0.03499054163694382, 0.009617677889764309, -0.012288505211472511, -0.005479917861521244, -0.017009666189551353, -0.0270724818110466, 0.020300988107919693, 0.00026198223349638283, 0.024239785969257355, 0.0010732208611443639, -0.0023959886748343706, -0.016874775290489197, 0.011148682795464993, 0.04475659877061844, 0.0031665496062487364, -0.00905788317322731, 0.012072681449353695, -0.007783169858157635, -0.016294747591018677, 0.0003962402406614274, 0.04629434645175934, 0.04011637344956398, -0.04831770062446594, 0.004700926598161459, -0.004582897759974003, -0.014649085700511932, 0.016847796738147736, -0.017387358471751213, 0.009867224842309952, -0.0031884692143648863, -0.057894911617040634, -0.02411838434636593, 0.0020537045784294605, 0.014109523966908455, 0.02220294252038002, -0.003429585602134466, -0.0098335025832057, -0.020570769906044006, -0.05195973813533783, 0.025049127638339996, -0.011256595142185688, 0.0233360193669796, 0.009219751693308353, 0.022634590044617653, -0.003986007999628782, -0.007998994551599026, -0.010305617935955524, 0.03836279734969139, 0.006778236944228411, 0.011445441283285618, 0.025966381654143333, -0.027153415605425835, 0.009469298645853996, -0.01579565368592739, 0.0022627846337854862, 0.0030434622894972563, -0.026141738519072533, 0.009003926999866962, -0.013347393833100796, 0.013043890707194805, -0.019397223368287086, 0.0025915796868503094, -0.0015487091150134802, -0.03180713206529617, -0.004235554952174425, -0.018790217116475105, 0.028380917385220528, -0.003948913421481848, -0.00554399099200964, -0.017225490882992744, -0.00030961536685936153, 0.01383974403142929, 0.003432957921177149, -0.011114959605038166, -0.002075624419376254, 0.016078922897577286, -0.01982887275516987, 0.029163280501961708, -0.01013700570911169, 5.1347884436836466e-05, 0.011452185921370983, 0.00982001330703497, 0.00982001330703497, -0.03447795659303665, -0.0005732837598770857, -0.013988123275339603, 0.0014669318916276097, -0.02372720278799534, -0.03725669905543327, -0.01489188801497221, 0.010946347378194332, 0.007041273172944784, 0.0008148216875270009, 0.012173849157989025, -0.027949267998337746, 0.030269380658864975, 0.0043704453855752945, -0.007823636755347252, 0.011229616589844227, -0.010244917124509811, 0.007203141693025827, 0.0007536995108239353, -0.0074661774560809135, 0.020206565037369728, 0.030916854739189148, -0.0007330444059334695, 0.012531307525932789, 0.006849054712802172, 0.031213613227009773, -0.022270387038588524, 0.006117274519056082, 0.02488725818693638, 0.01614636741578579, -0.013037147000432014, -0.016038455069065094, -0.017009666189551353, -0.009793034754693508, -0.009064627811312675, -0.003571220440790057, -0.0010816515423357487, 0.011168915778398514, 0.031429436057806015, -0.033749550580978394, -0.015067245811223984, -0.014730019494891167, -0.008073183707892895, -0.010851924307644367, -0.026910612359642982, 0.006289259996265173, -0.03704087436199188, 0.0065927631221711636, 0.007661768700927496, 0.024684922769665718, -0.008558789268136024, -0.041357364505529404, -0.004559291992336512, -0.001353961299173534, 0.0099211810156703, -0.001610252889804542, -0.014568150974810123, 0.02490074746310711, -0.00963116716593504, 0.006174603011459112, -0.02198711782693863, 0.028165092691779137, -0.011168915778398514, 0.013448561541736126, 0.012733643874526024, 0.02024703286588192, -0.005112342070788145, -0.0038646068423986435, 0.04419006034731865, 0.011674754321575165, 0.010811456479132175, 0.032616473734378815, -0.03140246123075485, 0.04640226066112518, -0.004117526113986969, 0.017872963100671768, 0.010777734220027924, 0.019613048061728477, -0.026438497006893158, 0.006201581098139286, -0.008295753039419651, 0.003726344322785735, 0.008423898369073868, -0.005125830881297588, 0.0009214692981913686, 0.022661568596959114, -0.004967335145920515, 0.0076820021495223045, 0.0073987324722111225, 0.013475540094077587, 0.024995170533657074, 0.0032356807496398687, 0.0030991043895483017, -0.03196899965405464, 0.00486953929066658, -0.0005690684192813933, 0.007520133629441261, -0.0035138921812176704, 0.02142057754099369, -0.014096035622060299, -0.004839189350605011, -0.002276273677125573, 0.01594403199851513, -0.013414839282631874, 0.02821904793381691, -0.0028411266393959522, 0.022486211732029915, -0.00021044992899987847, 0.0075538563542068005, 0.0019997486378997564, -0.0025275067891925573, 0.014055568724870682, 0.004417656920850277, 0.028704654425382614, 0.0038106506690382957, 0.0072436085902154446, -0.011560098268091679, -0.01611938886344433, 0.05015220865607262, 0.022418765351176262, 0.023214619606733322, -0.01613287813961506, 0.027706464752554893, 0.00657590152695775, 0.002782112220302224, 0.006312865763902664, -0.0013092788867652416, -0.007547111716121435, 0.0315103717148304, 0.011364506557583809, -0.008902759291231632, -0.04054802283644676, 0.007769680581986904, 0.007432455196976662, 0.0016153112519532442, -0.02372720278799534, 0.01325297076255083, 0.02320113033056259, 0.013509262353181839, 0.004977451637387276, -0.010373063385486603, 0.035314276814460754, 0.008558789268136024, -0.018965573981404305, 0.006653463467955589, 0.011431952007114887, -0.007128952071070671, 0.0015192019054666162, 0.016240790486335754, -0.019963763654232025, -0.019235355779528618, 0.01429837103933096, 0.031159657984972, 0.02027401141822338, -0.0029473528265953064, -0.02530541829764843, 0.006059946492314339, 0.005334910936653614, -0.015390981920063496, 0.020098652690649033, -0.02158244699239731, -0.007722469046711922, -0.005844121798872948, -0.022634590044617653, -0.024226296693086624, -0.0014053882332518697, 0.008990437723696232, 0.026236161589622498, 0.014257904142141342, -0.023214619606733322, -0.034963563084602356, 0.010791223496198654, 0.019370244815945625, 0.015188646502792835, -0.010089794173836708, 0.006134136114269495, -0.01652405969798565, 0.0018581137992441654, -0.010777734220027924, 0.005078619346022606, 0.0019356756238266826, 0.015404471196234226, 0.019963763654232025, -0.02042238973081112, 0.0031159657519310713, -0.006204953417181969, 0.0010319107677787542, 0.011519630439579487, -0.004255788866430521, -0.008289008401334286, 0.009408597834408283, 0.0014264648780226707, -0.015471916645765305, -0.01731991395354271, 0.01257177535444498, -0.013205759227275848, 0.009793034754693508, -0.021960139274597168, 0.011519630439579487, -0.004481730051338673, -0.0036352933384478092, -0.007972015999257565, -0.007304309401661158, -0.027976246550679207, 0.008983693085610867, -0.019545603543519974, -0.015876587480306625, 0.01323273777961731, 0.031834106892347336, -0.008646467700600624, 0.006791726220399141, -0.02026052214205265, -0.023659756407141685, 0.005294444039463997, 0.003975891508162022, -0.008862292394042015, -0.012484095990657806, 0.008747635409235954, -0.005624925252050161, -0.010231428779661655, 0.010157238692045212, -0.019774915650486946, -0.021096840500831604, -0.019896317273378372, 0.028704654425382614, 0.012173849157989025, -0.01710408926010132, -0.027099458500742912, 0.009293940849602222, -0.002849557437002659, 0.019936785101890564, -0.019424201920628548, -0.0025426819920539856, -7.366274803644046e-05, -0.018034832552075386, -0.01130380667746067, 0.007344776298850775, -0.004390678834170103, -0.02299879491329193, 0.007236863952130079, 0.022122006863355637, -0.01137799583375454, 0.031186634674668312, -0.027112947776913643, -0.017562715336680412, -0.007634790614247322, 0.016402659937739372, -0.00885554775595665, 0.03040427155792713, -0.006488223094493151, -0.004073686897754669, -0.0003435487160459161, -0.019235355779528618, 0.008875780738890171, 0.011546608991920948, -0.04130340740084648, 0.019316289573907852, -0.0010260093258693814, 0.01789994165301323, -0.011789411306381226, -0.0075538563542068005, -0.03156432881951332, -0.01383974403142929, -0.020934972912073135, 0.010190961882472038, -0.013023657724261284, 0.030728008598089218, 0.0014888516161590815, 0.022661568596959114, -0.033425815403461456, -0.0040096137672662735, -0.021258709952235222, -0.011910812929272652, -0.040601976215839386, -0.00015259464271366596, 0.0055878302082419395, -0.01032585185021162, 0.006859171204268932, -0.007830381393432617, -0.0006896266131661832, 0.007371754385530949, -0.010265151038765907, 0.016200324520468712, -0.012484095990657806, 0.012625731527805328, -0.0003909710794687271, -0.022729013115167618, -0.022675057873129845, -0.02433420903980732, 0.013664386235177517, 0.0017063621198758483, 0.01129031740128994, -0.024428632110357285, -0.02295832708477974, -0.026613853871822357, -0.006488223094493151, 0.008835313841700554, -0.03383048623800278, -0.0021498140413314104, 0.014743508771061897, 0.0042928834445774555, -0.022472722455859184, -0.007628045976161957, -0.023416955024003983, 0.009503020904958248, -0.013785787858068943, 0.003323359414935112, 0.01537749357521534, 0.007634790614247322, -0.02432071976363659, 0.027585064992308617, -0.040413130074739456, 0.03442400321364403, 0.020287498831748962, 0.011472418904304504, -0.021501513198018074, 0.00818109605461359, 0.006683813873678446, 0.0027686231769621372, -0.0008106063469313085, 0.008214818313717842, -4.989887020201422e-05, 0.018614860251545906, -0.009543487802147865, 0.007344776298850775, -0.017077110707759857, -0.010663077235221863, -0.004114153794944286, -0.01274713221937418, 0.00506175821647048, -0.006946850102394819, -0.030916854739189148, 0.011742199771106243, 0.024995170533657074, 0.025575198233127594, -0.005203392822295427, 0.009705356322228909, -0.00030856154626235366, 0.006886149290949106, 0.006154369562864304, 0.025157039985060692, 0.01225478295236826, -0.003414410399273038, -0.014676063321530819, 0.011344273574650288, -0.012652709148824215, 0.004802094306796789, 0.014635596424341202, -0.022702036425471306, -0.017657138407230377, -0.01826414465904236, -0.00023964102729223669, -0.010258406400680542, -0.007486410904675722, 0.0062319315038621426, 0.0028107764665037394, -0.012787599116563797, 0.004764999728649855, -0.015471916645765305, -0.0219736285507679, -0.009462554007768631, 0.007358265575021505, 0.02784135565161705, 0.0030856153462082148, -0.013974633999168873, -0.05074572563171387, 0.0025915796868503094, -0.020287498831748962, -0.0028765355236828327, 0.022445743903517723, -0.022526677697896957, -0.02353835478425026, 0.018560903146862984, -0.015525872819125652, 0.007803403306752443, -0.03188806399703026, -0.023821625858545303, 0.008214818313717842, 0.006596134975552559, 0.004326606169342995, -0.011641032062470913, -0.019707471132278442, -0.0098335025832057, 0.01632172428071499, 0.03161828592419624, 0.00299625052139163, 0.012376184575259686, 0.00754036707803607, -0.03555708006024361, 0.011040770448744297, -0.012025468982756138, 0.008821824565529823, -0.004053453449159861, 0.0050988527946174145, 0.005584457889199257, -0.005324794445186853, -0.006680441554635763, 0.009948158636689186, 0.005186531692743301, 0.0007848928798921406, -0.011337528936564922, 0.007702235598117113, -0.018614860251545906, 0.01811576634645462, -0.02878558821976185, 0.00026113918283954263, -0.006107158027589321, -0.012315483763813972, 0.005135947838425636, -0.017468292266130447, -0.007843870669603348, -0.008525066077709198, 0.01789994165301323, -0.008275519125163555, 0.0033621403854340315, -0.008902759291231632, 0.0019373617833480239, -0.009388363920152187, 0.014514194801449776, -0.01029887329787016, 0.010764244943857193, -0.027369240298867226, 0.0029203747399151325, 0.012929234653711319, 0.0037870449014008045, 0.023632779717445374, -0.0007726684561930597, 0.008417153730988503, -0.05357842519879341, -0.0424095056951046, -0.004552547354251146, 0.008235052227973938, -0.013104591518640518, 0.010919368825852871, 0.018021343275904655, -0.014042079448699951, 0.007499900180846453, -0.0052472325041890144, 0.02005818672478199, 0.011978257447481155, 0.004249044228345156, 0.011438696645200253, -0.03701389580965042, 0.03679807111620903, -0.037850216031074524, 0.005928428377956152, 0.004660459700971842, 0.0022644707933068275, 0.01617334596812725, 0.0408717580139637, 0.0053922394290566444, -0.0036319210194051266, -0.011458930559456348, -0.0028377545531839132, -0.0039017016533762217, 0.012295249849557877, -0.0169422198086977, -0.027895312756299973, 0.046860888600349426, -0.0006892050732858479, -0.013104591518640518, -0.009118583984673023, 0.00681195966899395, 0.01198500208556652, -0.004458124283701181, -0.0034447608049958944, -0.012362695299088955, -0.030242403969168663, 0.0037769281771034002, -0.013279949314892292, -0.011371251195669174, 0.022135496139526367, -0.027706464752554893, -0.004764999728649855, 0.026033826172351837, 0.0043603284284472466, -0.002156558446586132, 0.029648885130882263, 0.004899889696389437, 0.0024364558048546314, 0.04626736789941788, -0.03078196384012699, 0.015647273510694504, -0.018237167969346046, -0.018587881699204445, -0.01814274489879608, -0.013313671573996544, 0.015390981920063496, 0.0024516310077160597, -0.02376766875386238, -0.038093019276857376, -0.027193883433938026, 0.009570466354489326, -0.004778488539159298, 0.01382625475525856, 0.06496316194534302, 0.0350714772939682, -0.025035638362169266, 0.030107513070106506, 0.00457952544093132, 0.004603131208568811, 0.010676566511392593, 0.022459233179688454, 0.0017721211770549417, 0.001634701737202704, 0.0053652613423764706, 0.0011963082943111658, -0.0039826356805861, -0.016604995355010033, 0.0073380316607654095, -0.0031800386495888233, 0.009024159982800484, 0.006656835786998272, -0.024671433493494987, -0.009199517779052258, -0.00965140014886856, -0.005425962153822184, -0.00029696940327994525, -0.005813771393150091, 0.010163983330130577, -0.021515000611543655, -0.008680189959704876, -0.0024297113995999098, 0.0031952138524502516, 0.006107158027589321, -0.022823438048362732, 0.01490537729114294, 0.0014441692037507892, 0.007513388991355896, 0.034774716943502426, -0.005479917861521244, 0.015175157226622105, 0.02259412407875061, -0.0033823740668594837, 0.024846792221069336, -0.0011566842440515757, 0.010757500305771828, 0.030701030045747757, -0.010663077235221863, 0.02124522067606449, 0.02994564361870289, -0.0293791051954031, -4.037487542518647e-06, 0.0178864523768425, 0.029352126643061638, -0.005739581771194935, -0.01450070645660162, -0.035125430673360825, -0.004299628082662821, -0.004114153794944286, -0.0017502015689387918, 0.007722469046711922, 0.026586875319480896, 0.015364004299044609, -0.009954903274774551, 0.006882776971906424, -0.018736261874437332, 0.014325348660349846, -0.00806643906980753, 0.0060936687514185905, -0.020934972912073135, -0.014136502519249916, 0.012025468982756138, 0.016672439873218536, 0.02530541829764843, 0.005193276330828667, 0.0389832928776741, -0.02063821442425251, 0.02262110263109207, -0.014271392486989498, 0.016051944345235825, 0.00047042989172041416, 0.0026978058740496635, 0.007344776298850775, 0.0033722573425620794, -0.0031125934328883886, -0.02997262217104435, 0.006579273846000433, 0.0025848352815955877, 0.01826414465904236, -0.0072705866768956184, 0.012403162196278572, 0.007722469046711922, -0.008228307589888573, -0.014055568724870682, -0.0010951405856758356, 0.0004099400248378515, 0.019194887951016426, -0.01489188801497221, -0.01130380667746067, -0.017171533778309822, 0.05670787766575813, -0.007857359014451504, 0.011431952007114887, -0.022148985415697098, 0.00876786932349205, -0.014392794109880924, 0.002512331586331129, -0.009078116156160831, 0.013428328558802605, 0.003766811452805996, -0.022675057873129845, -0.003220505779609084, -0.00043080587056465447, -0.010582143440842628, -0.012612242251634598, -0.006501711905002594, 0.013489029370248318, -0.00199131784029305, 0.019397223368287086, 0.0014264648780226707, 0.009111839346587658, -0.010002114810049534, -0.009718845598399639, -0.009051138535141945, -0.0032626588363200426, 0.019963763654232025, -0.0010799653828144073, 0.005139320157468319, 0.02432071976363659, 0.0229853056371212, -0.00875438004732132, -0.016483593732118607, 0.01988282799720764, -0.021838737651705742, 0.00965140014886856, 0.0025376235134899616, 0.00973907858133316, 0.024860279634594917, 0.0024550033267587423, -0.01827763393521309, 0.010292129591107368, -0.013239482417702675, 0.022337831556797028, 0.015701230615377426, 0.0015950776869431138, -0.0012570088729262352, 0.01594403199851513, -0.001297476002946496, -0.006407288834452629, 0.018925108015537262, -0.017778540030121803, -0.014082546345889568, 0.005135947838425636, 0.0036959939170628786, 0.0007756191771477461, -0.01811576634645462, 0.004329978488385677, 0.0004893988370895386, 0.011937790550291538, -0.006660208106040955, -0.0026472220197319984, 0.007169418968260288, -0.02588544599711895, -0.006279143039137125, -0.028488829731941223, -0.015148179605603218, -0.011539864353835583, 0.0009054510737769306, 0.0014247787185013294, -0.00299119227565825, -0.015067245811223984, 0.00816760677844286, 0.014959333464503288, -0.016402659937739372, -0.006009362637996674, 0.003962402231991291, -0.01988282799720764, 0.028488829731941223, 0.02726132795214653, -0.0031176519114524126, 0.00806643906980753, -0.007769680581986904, 0.004758255090564489, -0.01638917066156864, 0.009961647912859917, -0.017872963100671768, 0.0026472220197319984, -0.03175317496061325, 0.01236943993717432, -0.032805319875478745, -0.013785787858068943, -0.02762553095817566, 0.006140880286693573, 0.005449567921459675, -0.0007764622569084167, 0.010865412652492523, -0.009766057133674622, -0.022270387038588524, 0.03547614812850952, 0.002707922598347068, 0.020894505083560944, 0.016308236867189407, -0.020543791353702545, 0.013286693952977657, -0.0053753782995045185, -0.011168915778398514, 0.00126543955411762, 0.009226496331393719, -0.0030333453323692083, 0.013111336156725883, -0.008889270015060902, -0.021515000611543655, 0.014176969416439533, 0.003218819620087743, -0.04114153981208801, -0.01176917739212513, 0.017980875447392464, 0.006134136114269495, -0.018655328080058098, 0.0002411163877695799, 0.000568646879401058, 0.014460239559412003, -0.006100413389503956, -0.007884337566792965, 0.0003890741791110486, 0.01655103825032711, -0.02627662941813469, 0.0001764112093951553, 0.01003583800047636, 0.004903262015432119, 0.008322730660438538, 0.010770989581942558, 0.00589133333414793, -0.00797876063734293, -0.005857611075043678, -0.010049326345324516, -0.0033671988639980555, 0.00671079196035862, -0.017198512330651283, -0.01352275162935257, 0.013016913086175919, 0.007884337566792965, 0.018830684944987297, 0.003132826881483197, -0.01807529851794243, -0.011890579015016556, -9.979774040402845e-05, -0.03469378128647804, -0.016200324520468712, 0.00031551680876873434, 0.009118583984673023, -0.015552850440144539, -0.009118583984673023, -0.017481781542301178, 0.0006200738134793937, 0.011128448881208897, -0.018614860251545906, 0.011998491361737251, -0.033398836851119995, 0.010575398802757263, -0.004764999728649855, -0.010872157290577888, -0.005274210125207901, 0.0012713409960269928, 0.011243105866014957, -0.015525872819125652, 0.02647896483540535, 0.0023184269666671753, 0.021177776157855988, 0.0021717336494475603, -0.03204993158578873, -0.008794846944510937, -0.0064713614992797375, -0.006508456543087959, -0.010548420250415802, 0.014271392486989498, 0.015404471196234226, 0.01794040948152542, -0.025844980031251907, 0.03623153269290924, 0.000123719684779644, 0.008228307589888573, 0.014190458692610264, -0.01965351589024067, -0.009415342472493649, 0.009968392550945282, 0.03347976878285408, -0.0028192070312798023, 0.009462554007768631, 0.004181598778814077, -0.012598752975463867, 0.038281865417957306, 0.001915442175231874, -0.0005989971687085927, -0.018452992662787437, 0.005570969078689814, 0.008504833094775677, 0.015539361163973808, 0.02432071976363659, -0.015620295889675617, -0.004903262015432119, 0.01634870283305645, 0.02005818672478199, 0.00511908670887351, -0.0011221185559406877, -0.02372720278799534, -0.03140246123075485, -0.01325297076255083, -0.03536823391914368, -0.00848459918051958, -0.003293009242042899, -0.023214619606733322, 0.005608063656836748, 0.006896266248077154, -0.005577713716775179, -0.011829878203570843, -0.011991746723651886, -0.005618180613964796, -0.009664889425039291, 0.00867344532161951, 0.015849608927965164, -0.00040930771501734853, -0.009691867046058178, -0.015917053446173668, 0.0027062364388257265, 0.010271895676851273, -0.0023217990528792143, 0.008289008401334286, 0.019626537337899208, -0.0054428232833743095, -0.0041478765197098255, 0.01041353028267622, -0.025049127638339996, 0.02255365625023842, 0.003918563015758991, 0.015593317337334156, 0.005513640586286783, -0.01734689064323902, 0.017400847747921944, 0.00255279871635139, -0.017414337024092674, -0.0064545003697276115, 0.0066096242517232895, -0.011742199771106243, -0.002461747732013464, -0.012882023118436337, -0.0032896369230002165, -0.009813268668949604, 0.02552124299108982, -2.1564004782703705e-05, -0.005844121798872948, 0.008201329968869686, -0.004619992338120937, 0.0025325652677565813, 0.011816389858722687, 0.0021498140413314104, 0.008315986022353172, 0.01012351643294096, -0.006322982255369425, -0.0330481193959713, -0.012605497613549232, 0.010447252541780472, -0.023673245683312416, -0.022675057873129845, 0.023106707260012627, 0.0229853056371212, -0.033614661544561386, 0.02160942368209362, -0.012794343754649162, -0.002753447974100709, 0.02450956590473652, -0.004896517377346754, 0.013630663976073265, 0.02530541829764843, 0.01402859017252922, -0.01652405969798565, 0.011027281172573566, -0.003348651574924588, -0.0013691365020349622, 0.005257348995655775, -0.006262281909584999, -0.005129203200340271, -0.023916048929095268, -0.02414536289870739, -0.008039461448788643, -0.02765250951051712, 0.011701732873916626, 0.012052447535097599, 0.014460239559412003, 0.005557479802519083, 0.01673988439142704, -0.00035408700932748616, 0.024064427241683006, -0.019761428236961365, -0.014541173353791237, 0.0272478386759758, 0.022108519449830055, -0.010292129591107368, 0.006117274519056082, -0.0022627846337854862, -0.002645535860210657, -0.006498339585959911, -0.019113954156637192, -0.008235052227973938, 0.003438016166910529, 0.015606806613504887, 0.011020536534488201, -0.006673696916550398, -0.007324542850255966, 0.024037450551986694, -0.005813771393150091, -0.013569963164627552, 0.02314717322587967, 0.0007440042681992054, -0.019410712644457817, 0.019006041809916496, 0.012551541440188885, 0.041546210646629333, 0.007816892117261887, 0.004124270752072334, 0.008120395243167877, 0.013691364787518978, 0.014918866567313671, -0.004967335145920515, 0.009570466354489326, 0.006623113062232733, 0.014001612551510334, -0.000603212509304285, 0.01127682812511921, -0.009239984676241875, 0.025777533650398254, 0.0008717285236343741, -0.016699418425559998, -0.010892391204833984, -0.00914556160569191, -0.015552850440144539, 0.0023352880962193012, -0.014352327212691307, 0.005739581771194935, 0.007972015999257565, -0.0023656385019421577, -0.0020857411436736584, -0.011748944409191608, -0.012855044566094875, 0.0048864008858799934, 0.014123013243079185, 0.006245420314371586, -0.018183210864663124, -0.0019441063050180674, 0.006414033472537994, 0.017171533778309822, -0.012059192173182964, 0.004930240102112293, 0.005844121798872948, -0.024630967527627945, -0.006124019157141447, -0.003959029912948608, 0.01988282799720764, -0.00539898406714201, -0.01887115091085434, 0.01011002715677023, 0.011398229748010635, -0.0030620095785707235, -0.007580834440886974, 0.022917861118912697, 0.008504833094775677, 0.006589390803128481, -0.008457621559500694, -0.06820052862167358, 0.022148985415697098, -0.016092412173748016, -0.019613048061728477, 0.003652154700830579, -0.0029793893918395042, -0.006646718829870224, -0.0020132376812398434, -0.01402859017252922, 0.0013025343650951982, -0.008140629157423973, -0.023902559652924538, 0.029918666929006577, -0.01613287813961506, 0.0010024034418165684, -0.021312665194272995, -0.0032407392282038927, 0.014932354912161827, 0.04491846635937691, 0.007574089802801609, 0.013199014589190483, -0.001570628839544952, 0.015890076756477356, -0.01169498823583126, -0.005348400212824345, -0.020786594599485397, 0.009051138535141945, 0.017050132155418396, -0.005699114874005318, -0.0033621403854340315, 0.0029018274508416653, 0.01691524311900139, 0.0023875581100583076, 0.008262029848992825, 0.020705658942461014, 0.00399612495675683, 0.014460239559412003, -0.028003225103020668, 0.005712603684514761, 0.006157741881906986, 0.007864103652536869, -0.008794846944510937, -0.0010824946220964193, 0.011067748069763184, -0.015660762786865234, -0.011141938157379627, 0.007391987834125757, -0.03326394408941269, 0.013145058415830135, -0.005432706326246262, 0.008005739189684391, -0.01754922606050968, 0.03094383329153061, -0.019626537337899208, 0.011162171140313148, 0.006505084224045277, 0.002554484875872731, 0.007499900180846453, 0.041384339332580566, 0.0019070114940404892, -0.010568654164671898, -0.00774270249530673, 0.019329778850078583, -0.015053756535053253, 0.0037465777713805437, 0.0013345708139240742, -0.02534588612616062, -0.0034076659940183163, 0.03231971338391304, -0.014473727904260159, 0.020530302077531815, -0.011155427433550358, -0.000992286717519164, -0.009017416276037693, -0.009428831748664379, -0.021164286881685257, 0.02007167600095272, -0.015593317337334156, 0.00036062076105736196, 0.005874472204595804, 0.0012932606041431427, -0.007924804463982582, 0.0050145466811954975, 0.017832497134804726, -0.017279446125030518, -0.010305617935955524, -0.01147916354238987, 0.006559040397405624, -0.01429837103933096, 0.002203770214691758, 0.006704047322273254, -0.016038455069065094, -0.014257904142141342, -0.00036652220296673477, 0.008113650605082512, -0.009476043283939362, -0.00037368826451711357, 0.001805843785405159, 0.0024044194724410772, 0.014918866567313671, -0.03558405861258507, -0.009098350070416927, -0.024603988975286484, 0.012679687701165676, 0.0015537674771621823, 0.02415885031223297, 0.01108798198401928, 0.028488829731941223, -0.0007629732135683298, 0.006343215703964233, 0.009003926999866962, 0.005179787054657936, 0.009664889425039291, 0.011843367479741573, 0.0076213013380765915, 0.00965140014886856, 0.030728008598089218, -0.0057328371331095695, 0.006019479129463434, 0.018628349527716637, 0.011034025810658932, 0.01599798910319805, 0.006673696916550398, 0.023632779717445374, 0.00809341762214899, 0.009793034754693508, 0.0010706917382776737, 0.010359574109315872, 0.00102432316634804, -0.008154118433594704, 0.0036150598898530006, -0.019208377227187157, -0.007000806275755167, -0.009786290116608143, 0.007506644818931818, -0.013381117023527622, 0.009644655510783195, 0.0027062364388257265, -0.014945844188332558, 0.01614636741578579, -0.0011836623307317495, 0.001942420145496726, 0.012187337502837181, 0.006569157354533672, -0.015310048125684261, 0.01866881549358368, 0.004012986086308956, 0.03714878484606743, 0.013974633999168873, -0.0004872911667916924, 0.005186531692743301, 0.019990740343928337, 0.0095367431640625, -0.023282064124941826, 0.005173042416572571, -6.428365304600447e-05, -0.002930491464212537, -0.015822630375623703, 0.011762433685362339, -0.012821322306990623, -0.0019137560157105327, 0.004940357059240341, -0.004400795791298151, 0.014352327212691307, 0.01574169658124447, 0.0013548043789342046, -0.007729213684797287, 0.008477854542434216, 0.007169418968260288, -0.0029254332184791565, 0.026532920077443123, -0.02294483780860901, 0.021906184032559395, -0.0016895008739084005, 0.005985756870359182, -0.00510559743270278, -0.0049369847401976585, -0.008686934597790241, 0.0016760118305683136, 0.016267769038677216, -0.0058205160312354565, -0.002161616925150156, -0.003050206694751978, 0.008936481550335884, 0.005496779456734657, 0.02743668481707573, 0.01655103825032711, -0.011182405054569244, -0.0009046079940162599, 0.013880210928618908, -0.013340650126338005, -0.008727401494979858, -0.00666695274412632, -0.0025359373539686203, 0.024401653558015823, -0.013677875511348248, -0.022931348532438278, -0.0010285384487360716, 0.0003998232423327863, -0.0018547414802014828, 0.005213509779423475, 0.013441817834973335, -0.027153415605425835, 0.01471653115004301, 0.003357082139700651, 0.02765250951051712, -0.00914556160569191, 0.0016060374910011888, -0.010420274920761585, -0.0005977326072752476, 0.03237367048859596, 0.0061712306924164295, -0.005699114874005318, 0.0009535057470202446, -0.00865321233868599, 0.006940105464309454, -0.023457420989871025, 0.005412472877651453, 0.003898329334333539, -0.013583452440798283, 0.018736261874437332, -0.01870928332209587, 0.0229853056371212, -0.010953092016279697, -0.03725669905543327, -0.005301188211888075, 0.010029093362390995, 0.014918866567313671, -3.0692808650201187e-05, -0.019208377227187157, -0.022337831556797028, -0.03156432881951332, 0.002573032397776842, 0.004856050480157137, 0.01002234872430563, -0.0008413781761191785, -0.00453568622469902, 0.0001633437059354037, -0.01614636741578579, 0.002424652921035886, 0.016105901449918747, -0.0009189401171170175, 0.009685122407972813, -0.006528689991682768, 0.019774915650486946, -0.003520636586472392, 0.03215784579515457, 0.01924884505569935, 0.028084158897399902, -0.021960139274597168, 0.025804512202739716, 0.01964002661406994, 0.004603131208568811, -0.0005467272130772471, 0.004208576865494251, -0.015903566032648087, -0.018857663497328758, 0.003857862204313278, 0.00250895950011909, -0.00395228574052453, 0.019410712644457817, -0.020004229620099068, -0.013880210928618908, -0.009266963228583336, 0.006161114200949669, -0.020948462188243866, -0.00550015177577734, -0.0014770487323403358, -0.019936785101890564, 0.013563218526542187, -0.004748138133436441, 0.020152609795331955, -0.02026052214205265, 0.0009661517105996609, -0.01576867513358593, 0.006919872015714645, 0.017832497134804726, -0.008848803117871284, -0.0009155678562819958, -0.007655024062842131, 0.01421743631362915, -0.007560600992292166, -0.0048762839287519455, -0.0071829077787697315, -0.010366318747401237, 0.007715724408626556, 0.015202135778963566, 0.011897323653101921, -0.013064124621450901, -0.014864910393953323, 0.022095030173659325, -0.019774915650486946, -0.011991746723651886, -0.026775723323225975, -0.009381619282066822, 0.030835920944809914, -0.009759312495589256, -0.014136502519249916, -0.005989128723740578, 0.008700423873960972, -0.021663380786776543, -0.008761124685406685, -0.008949970826506615, -2.467280501150526e-05, -0.0026236162520945072, 0.015687741339206696, 0.0016650520265102386, 0.0013902130303904414, -0.002384185791015625, -0.010406785644590855, 0.010784478858113289, -0.011931045912206173, 0.0008894328493624926, -0.00955023244023323, 0.02162291295826435, -0.003948913421481848, -1.4990737327025272e-05, -0.005193276330828667, 1.9956913092755713e-05, -0.04575478658080101, 0.006134136114269495, 0.0017569460906088352, -0.002689375076442957, -0.011944535188376904, 0.0019171282183378935, -0.009172540158033371, 0.0018311357125639915, 0.010420274920761585, 0.003058637259528041, -0.01597101055085659, -0.030512183904647827, -0.015134690329432487, -0.02704550325870514, -0.0031260824762284756, -0.016051944345235825, 0.00725035322830081, -0.0002992878435179591, -0.00530793284997344, 0.005618180613964796, 0.003847745480015874, -0.0017038329970091581, 0.004957218188792467, 0.02334950864315033, -0.01791343092918396, -0.01672639511525631, 0.012720154598355293, -0.02297181636095047, -0.027976246550679207, -0.022729013115167618, -0.00019938471086788923, 0.0014062313130125403, 0.0017788656987249851, 0.0210293959826231, -0.003861234523355961, -0.01675337366759777, 0.018345080316066742, 0.0024330837186425924, -0.018776727840304375, -0.001514143543317914, 0.003149688243865967, -0.006383683066815138, -0.01715804450213909, 0.04073686897754669, -0.0013000051258131862, -0.000555157836060971, 0.014365815557539463, -0.002723097801208496, 0.01594403199851513, 0.022297365590929985, -0.009415342472493649, 0.003424527356401086, 0.011141938157379627, 0.0050988527946174145, -0.021096840500831604, 0.008140629157423973, 0.0020216682460159063, 0.0065489234402775764, -0.00904439389705658, -0.0018732888856902719, 0.0028765355236828327, -0.0007473765290342271, 0.020975440740585327, -0.01714455522596836, -0.009125327691435814, 0.01794040948152542, -0.014325348660349846, 0.003004681318998337, 0.009482786990702152, -0.0009433889645151794, -0.015148179605603218, 0.0057429540902376175, 0.0073987324722111225, 0.011742199771106243, 0.0058340048417449, -0.007378499023616314, -0.02201409451663494, 0.0006664423272013664, 0.01947815716266632, -0.006009362637996674, -0.009806524030864239, -0.009496276266872883, 0.02786833420395851, 0.0031665496062487364, 0.0031109072733670473, -0.014392794109880924, -0.023066239431500435, 0.014851421117782593, -0.016483593732118607, 0.00886903703212738, -0.011027281172573566, 0.0016372308600693941, 0.033803507685661316, -0.0005568439955823123, -0.0152830695733428, -0.026344073936343193, -0.019977252930402756, -0.002849557437002659, 0.004282766953110695, 0.03334487974643707, 0.006073435302823782, 0.006663580425083637, -0.004100664984434843, 0.000556422455701977, -0.00895671546459198, -0.02433420903980732, 0.01849345862865448, 0.02121824212372303, -0.011135193519294262, -0.011796155944466591, -0.013934167101979256, 0.004754882771521807, -0.025791022926568985, -0.0034160965587943792, -0.006107158027589321, -0.012693176046013832, -0.00021192528947722167, -0.01169498823583126, 0.013023657724261284, -0.011755689047276974, 0.038254886865615845, -0.0018817195668816566, 0.018452992662787437, -0.0032761478796601295, 0.014055568724870682, -0.011958024464547634, 4.22059056290891e-05, -0.005331538617610931, -0.001428994000889361, -0.009368130937218666, -0.0029406084213405848, -0.015890076756477356, -0.00015449152851942927, -0.02722086012363434, 0.011283572763204575, 0.002353835618123412, -0.019505135715007782, -0.01982887275516987, 0.021326154470443726, 0.0015942346071824431, -0.011148682795464993, -0.0071154627948999405, 0.026020336896181107, -0.022702036425471306, 0.008808336220681667, -0.026384539902210236, 0.023457420989871025, -0.004282766953110695, -0.0048088389448821545, -0.013394606299698353, 0.02162291295826435, 0.016901753842830658, 0.021933160722255707, 0.0035678481217473745, -0.004609875846654177, -0.003577964846044779, 0.0037870449014008045, -0.006653463467955589, -0.0014466983266174793, 0.006680441554635763, -0.018156232312321663, -0.017845984548330307, -0.00357459275983274, 0.014055568724870682, 0.019208377227187157, 0.0284348726272583, 0.01137799583375454, 0.003164863446727395, 0.004144504200667143, -0.008788102306425571, 0.00015807455929461867, -0.003689249511808157, -0.002134638838469982, 0.018587881699204445, 0.014082546345889568, -0.002325171371921897, -0.005773304495960474, 0.016847796738147736, -0.009206262417137623, 0.012868533842265606, 0.005122458562254906, 0.016604995355010033, 0.0011735454900190234, -0.018628349527716637, -0.015121201984584332, 0.011249850504100323, 0.016820820048451424, -0.014203947968780994, -0.0039826356805861, 0.017859473824501038, 0.0067478870041668415, -0.008032716810703278, 0.0026067548897117376, -0.02378115803003311, -0.0019677120726555586, -0.01812925562262535, 0.01655103825032711, 0.011998491361737251, 0.004029847215861082, 0.029487017542123795, 0.010642844252288342, 0.0031968997791409492, 0.022472722455859184, 0.015498894266784191, 0.006639974657446146, 0.015242602676153183, -0.014271392486989498, 0.0001036442190525122, -0.022540166974067688, 0.014797464944422245, 0.0045930142514407635, -0.026209183037281036, 0.005968895275145769, 0.0038882126100361347, -0.00048307585529983044, -0.022486211732029915, 0.006919872015714645, -0.021488023921847343, -0.009907691739499569, -0.04928891360759735, -0.004879656247794628, 0.004016358405351639, 0.03547614812850952, -0.017805518582463264, -0.02317415177822113, 0.005058385897427797, 0.008450876921415329, -0.004684065468609333, 0.001383468508720398, -0.012463863007724285, -0.02902838960289955, 0.003945541102439165, 3.374891821295023e-05, -0.0052371155470609665, 0.006717536598443985, 0.003689249511808157, -0.005850866436958313, 0.02645198628306389, 0.012275016866624355, -0.003082243027165532, -0.016901753842830658, -0.011458930559456348, 0.006167858373373747, 0.01595752127468586, 0.012335716746747494, 0.01147916354238987, -0.010690055787563324, -0.013920677825808525, -0.0010732208611443639, -0.007493155542761087, -0.010710288770496845, -0.009024159982800484, 0.008693679235875607, 0.01752224937081337, -0.0018412524368613958, -0.004818955436348915, -0.005001057405024767, -0.009428831748664379, -0.00020539153774734586, -0.005429334007203579, -0.01949164643883705, -0.012915745377540588, -0.014163480140268803, 0.004687437787652016, -0.013947656378149986, 0.014325348660349846, 0.020678682252764702, 0.005985756870359182, -0.00078404980013147, 0.010042581707239151, -0.017185023054480553, -0.01750876009464264, 0.002212200779467821, -0.01333390548825264, -0.0020823688246309757, 0.0038376287557184696, -0.014244414865970612, 0.006589390803128481, 0.006734397727996111, 0.01792692020535469, -0.0187227725982666, -0.015687741339206696, 0.006201581098139286, 0.004485102370381355, 0.008363197557628155, 0.006356704980134964, 0.02160942368209362, 0.013266460038721561, 0.011978257447481155, -0.02883954346179962, 0.003336848458275199, -0.026195693761110306, -0.008734146133065224, -0.009570466354489326, 0.0022425511851906776, 0.01372508704662323, -0.011539864353835583, 0.0072436085902154446, 0.0057429540902376175, -0.0038511177990585566, -0.0077764252200722694, 0.005388867110013962, -0.0017721211770549417, -0.020327966660261154, -0.016712907701730728, -0.00367576046846807, -0.01750876009464264, -0.0020773105788975954, -0.02784135565161705, -0.002480295253917575, 0.013731831684708595, -0.01159382052719593, 0.006380310747772455, 0.006218442227691412, 0.004751510452479124, -0.0131518030539155, 0.004967335145920515, 0.01750876009464264, -0.015107712708413601, 0.008046206086874008, -0.002857988001778722, -0.038254886865615845, -0.0013092788867652416, 0.002055390737950802, 0.011809645220637321, -0.01772458478808403, -0.002343718893826008, -0.011971513740718365, 0.001278928597457707, 0.014352327212691307, 0.013664386235177517, 0.0027214116416871548, 0.015890076756477356, 0.021838737651705742, 0.012288505211472511, 0.004060197621583939, -0.009455809369683266, 0.0034767971374094486, 0.002559543354436755, -0.010002114810049534, -0.027558086439967155, -0.009610933251678944, -0.009280451573431492, -0.015107712708413601, -0.00108333770185709, 0.00965140014886856, -0.023497888818383217, -0.01985585130751133, -0.009961647912859917, -0.002161616925150156, 0.009266963228583336, -0.0057530710473656654, -0.00816760677844286, 0.013745320960879326, -0.007128952071070671, -0.0056653921492397785, 0.011040770448744297, -0.00866670161485672, -0.016483593732118607, 0.021164286881685257, -0.0047987219877541065, 0.005193276330828667, -0.024374675005674362, -0.00866670161485672, -0.012538052164018154, -0.017468292266130447, 0.011094726622104645, -0.0016920301131904125, 0.021150797605514526, -0.003844373393803835, 0.01891161873936653, 0.034774716943502426, -0.0022627846337854862, 0.004168109968304634, -0.015647273510694504, 0.006124019157141447, -0.02123173139989376, -0.00104624277446419, 0.01633521355688572, -0.01632172428071499, 0.015876587480306625, -0.006552295759320259, 0.021083353087306023, 0.023093217983841896, 0.02534588612616062, 0.006316238082945347, -0.014487217180430889, -0.006586018484085798, 0.0028832799289375544, -0.0011963082943111658, 0.004161365330219269, -0.021906184032559395, -0.016038455069065094, -0.0026607110630720854, -0.017751561477780342, 0.0076820021495223045, 0.004518824629485607, -0.011162171140313148, -0.02356533333659172, 0.01653754897415638, -0.0026623972225934267, -0.01595752127468586, -0.004093920346349478, 0.010622610338032246, 0.016591506078839302, -0.007587578613311052, 0.01012351643294096, -0.01887115091085434, -0.02337648719549179, 0.009388363920152187, -0.01965351589024067, 0.008214818313717842, 0.009125327691435814, 0.0036150598898530006, 0.0017535737715661526, 0.003348651574924588, -0.015552850440144539, -0.003945541102439165, 0.016658950597047806, -0.008632978424429893, -0.017373869195580482, -0.014824442565441132, 0.0017400847282260656, 0.007223375141620636, -0.009718845598399639, -0.008815080858767033, -0.005348400212824345, 0.0034262132830917835, 0.0058980779722332954, -0.0074594332836568356, -0.021083353087306023, 0.017036642879247665, 0.008127139881253242, -0.007371754385530949, -0.014783975668251514, 0.005419217515736818, -0.01833159103989601, -0.017778540030121803, 0.0020132376812398434, -0.018938597291707993, 0.016011478379368782, 0.033749550580978394, 0.008693679235875607, 0.0015124573837965727, -0.011924301274120808, 0.0072705866768956184, 0.00043207046110183, 0.022432254627346992, 0.02201409451663494, -0.009927925653755665, -0.00028959260089322925, 0.022135496139526367, -0.005941917188465595, -0.004404168110340834, -0.01381276547908783, 0.021258709952235222, -0.014864910393953323, 0.020354945212602615, -0.016092412173748016, -0.004289511125534773, -0.0025646016001701355, 0.004464868456125259, 0.010885646566748619, -0.02005818672478199, -0.006333099212497473, 0.0010369691299274564, -0.014257904142141342, 0.002148127881810069, 0.022486211732029915, -0.012834811583161354, 0.002539309673011303, -0.002739958930760622, -0.005840749479830265, -0.00020781534840352833, 0.006161114200949669, 0.009786290116608143, 0.008740890771150589, -0.024563521146774292, 0.011168915778398514, -0.010595632717013359, -0.009354641661047935, -0.0007511703297495842, -0.009658144786953926, -0.011452185921370983, -0.008349709212779999, 0.022270387038588524, -0.002271215198561549, -0.025764046236872673, 0.005142692476511002, 0.014190458692610264, 0.0007726684561930597, 0.00020064930140506476, -0.00926021859049797, -0.00865321233868599, -0.0100088594481349, 0.0007187123410403728, -0.005193276330828667, 0.008700423873960972, 0.012922490015625954, 0.001901953131891787, 0.0037870449014008045, 0.014392794109880924, 0.0188981294631958, 0.033749550580978394, -0.00907137244939804, -0.015633784234523773, 0.010588888078927994, -0.0007962742238305509, -0.0007697177352383733, -0.02065170370042324, 0.0010799653828144073, 0.004947101231664419, 0.009644655510783195, -0.013920677825808525, -0.020206565037369728, -0.0037364610470831394, 0.015552850440144539, -0.0038915849290788174, -0.0024870396591722965, -0.0013345708139240742, 0.018385546281933784, 0.024050937965512276, 0.0017569460906088352, -0.029163280501961708, 0.011856856755912304, -0.00666695274412632, -0.022095030173659325, 0.004491846542805433, 0.013104591518640518, -0.000102168858575169, 0.012996679171919823, 0.013806020841002464, 0.007918059825897217, 0.003493658499792218, 0.01692873053252697, 0.005860982928425074, -0.03868653625249863, 0.025251463055610657, -0.0039017016533762217, 0.002763564931228757, -0.00021224144438747317, 0.024077916517853737, 0.021879205480217934, 0.007499900180846453, 0.001244362909346819, -0.00257471832446754, -0.0010116772027686238, 0.009496276266872883, -0.009509765543043613, -0.0026337329763919115, 0.007796658668667078, -0.008538555353879929, -0.010393297299742699, -0.022877393290400505, 0.004104037303477526, 0.0013682934222742915, 1.3041150850767735e-05, -0.028273005038499832, -0.009273707866668701, 0.008734146133065224, -0.015620295889675617, 0.001434052363038063, -0.017589693889021873, 0.026613853871822357, 0.007290820125490427, 0.011755689047276974, 0.008140629157423973, 0.033183012157678604, 0.016200324520468712, -0.025669623166322708, 0.0011305492371320724, -0.006650091148912907, 0.02665432170033455, 0.003955657593905926, -0.014257904142141342, 0.015390981920063496, 0.03178015351295471, -0.002854615682736039, 0.007870848290622234, 0.014082546345889568, -0.02005818672478199, 0.004056825302541256, -0.0009720531525090337, -0.024577010422945023, 0.016645461320877075, 0.006380310747772455, -0.014568150974810123, -0.0032474836334586143, -0.023902559652924538, 0.0031631772872060537, -0.020327966660261154, -0.010865412652492523, 0.005135947838425636, -0.01548540499061346, 0.004029847215861082, 0.008848803117871284, 0.006690558511763811, 0.005574341397732496, 0.010116771794855595, 0.03450493514537811, 0.019208377227187157, 0.02940608374774456, 0.003149688243865967, -0.0005479918327182531, -0.017603183165192604, -0.006538806948810816, 0.006903010420501232, -0.013468795455992222, 0.00632972689345479, 0.016996176913380623, 0.0013902130303904414, 0.02178478240966797, 0.016631972044706345, -0.010609121061861515, -0.003520636586472392, -0.0016599936643615365, 0.023862091824412346, 0.00036947292392142117, 0.009543487802147865, 0.01576867513358593, -0.017198512330651283, -0.002493784297257662, 0.00437719002366066, 0.007412221282720566, -0.007122207432985306, 0.006731025408953428, -0.009961647912859917, -0.01733340322971344, -0.01811576634645462, 0.026209183037281036, -0.006619741208851337, -0.007499900180846453, -0.0003850696375593543, -0.0053146774880588055, 0.011728710494935513, 0.0061037857085466385, 0.012686431407928467, 0.005658647511154413, -0.01489188801497221, -0.010555164888501167, -0.026789212599396706, 0.004636853933334351, 0.0009509765659458935, -0.007344776298850775, 0.01421743631362915, 0.023295553401112556, 0.011310551315546036, -0.01156684197485447, -0.018048319965600967, 0.00735152093693614, 0.008781357668340206, -0.01548540499061346, -0.004832444712519646, -0.015350515022873878, 0.028084158897399902, 0.01198500208556652, -0.006420777644962072, -0.021730825304985046, -0.014972821809351444, -0.004818955436348915, -0.001356490538455546, 0.007864103652536869, 0.012996679171919823, 0.002453317167237401, 0.021123819053173065, -0.029729820787906647, -0.01811576634645462, 0.014446750283241272, -0.01548540499061346, -0.0028208931908011436, -0.028380917385220528, 0.015067245811223984, 0.006508456543087959, -0.011310551315546036, -0.0010184217244386673, -0.021703848615288734, -0.015822630375623703, -0.004539058078080416, 0.007648279424756765, -0.00511908670887351, 0.018237167969346046, 0.01652405969798565, -0.0014762056525796652, 0.0031614911276847124, 0.01441977173089981, 0.0009239984792657197, 0.01580914296209812, -0.0029625280294567347, -0.01617334596812725, -0.003992752637714148, -0.023120196536183357, -0.01713106781244278, -0.00267588603310287, 0.011877089738845825, -0.01489188801497221, -0.0009003927116282284, 0.011472418904304504, 0.00031888906960375607, -0.0012527935905382037, -0.004582897759974003, 0.007122207432985306, -0.015674252063035965, 0.0016009791288524866, 0.0115803312510252, -0.03642037883400917, -0.011674754321575165, -0.008727401494979858, 0.00599250104278326, 0.007614556699991226, -0.016470104455947876, 0.019707471132278442, -0.001219914061948657, -0.008363197557628155, 0.003965774551033974, 0.007122207432985306, 0.010892391204833984, 0.03466680645942688, 0.01130380667746067, 0.015917053446173668, 0.01487839873880148, -0.013583452440798283, 0.01402859017252922, 0.0004687437613029033, 0.002261098474264145, -0.026141738519072533, 0.019545603543519974, 0.008262029848992825, -0.011458930559456348, 0.007526878267526627, 0.011216127313673496, -0.01888464018702507, -0.004913378972560167, -0.009442320093512535, -0.006245420314371586, 0.0036588991060853004, 0.03347976878285408, 0.014365815557539463, -0.008545299991965294, 0.005722720641642809, -0.007122207432985306, -0.004862795118242502, 0.009462554007768631, -0.028299983590841293, -0.005530501715838909, -0.015188646502792835, -0.011081237345933914, 0.019113954156637192, -0.013671130873262882, -0.01888464018702507, -0.0015579828759655356, -0.013603685423731804, -0.006751258857548237, -0.0008666701032780111, -0.0001152890472440049, -0.0027349006850272417, -0.0021177774760872126, 0.02317415177822113, -0.026303606107831, 0.0020435878541320562, 0.007155929692089558, 0.00608355225995183, 0.021258709952235222, -0.004485102370381355, 0.0073312874883413315, 0.006194836460053921, -0.02023354358971119, 0.0025409958325326443, -0.017576204612851143, -0.0021953394170850515, 0.004640225786715746, 0.0066871861927211285, -0.007513388991355896, -0.007068251259624958, 0.010710288770496845, -0.0013758809072896838, -0.022540166974067688, -0.00934789702296257, -0.019801894202828407, -0.0007785698981024325, 0.022310854867100716, 0.026411518454551697, 0.017751561477780342, 0.02767948806285858, 0.01673988439142704, -0.0042321826331317425, 0.011512886732816696, 0.01614636741578579, 0.004913378972560167, 0.012888766825199127, -0.010474231094121933, 0.028380917385220528, -0.010231428779661655, -0.006889521609991789, -0.019963763654232025, 0.0027197254821658134, 0.01303040236234665, -0.0013556474586948752, -0.026033826172351837, 0.0008144001476466656, -0.011789411306381226, 0.013731831684708595, -0.005338283255696297, 0.0016296433750540018], "2c94d49d-17af-41e4-9621-7b5e6450b367": [0.0001614663196960464, -0.01352965459227562, -0.00932654831558466, 0.02716076374053955, -0.0034603162202984095, -0.027841957286000252, -0.0018225539242848754, 0.011174465529620647, -0.012819474563002586, 0.005862609017640352, 0.031798675656318665, 0.005431428086012602, -0.008725069463253021, -0.016855906695127487, -0.02105901390314102, 0.01320355199277401, -0.006641632877290249, 0.021841660141944885, 0.019319796934723854, -0.029204344376921654, 0.06504669785499573, 0.007435150444507599, -0.05727819725871086, 0.001324340933933854, -0.02589983306825161, -0.0038951202295720577, -0.019363276660442352, -0.011891893111169338, -0.03530609607696533, 0.011355634778738022, 0.025551989674568176, 0.011188959702849388, 0.02405916154384613, 0.03203057125210762, -0.0010190721368417144, -0.025523001328110695, 0.030059458687901497, 0.04113246873021126, -0.004877052735537291, 0.002761006122455001, -0.048640087246894836, -0.004369781352579594, -0.0013841264881193638, -0.0038951202295720577, -0.05017639696598053, 0.006652503274381161, 0.014812326990067959, -0.01371082291007042, 0.008485927246510983, 0.026957856491208076, 0.01882701925933361, -0.04794440045952797, 0.011659997515380383, -0.0190879013389349, 0.024247577413916588, -0.0006223134114407003, -0.014507964253425598, 0.043335478752851486, -0.014421002939343452, -0.029378265142440796, -0.01916036754846573, 0.021131480112671852, 0.028697071596980095, 0.01947922445833683, -0.04217600077390671, -0.009833820164203644, 0.03350890427827835, -0.005145181901752949, -0.09351187199354172, -0.02730569802224636, 0.010239637456834316, 0.06533656269311905, -0.012254229746758938, 0.02846517600119114, -0.010775895789265633, 0.030349327251315117, 0.026088247075676918, 0.012362930923700333, 0.01094981748610735, 0.025638949126005173, -0.01979808136820793, -0.0011902762344107032, 0.020406806841492653, -0.008290265686810017, 0.035509005188941956, 0.03426256403326988, -0.0026667986530810595, -0.03411763161420822, 0.0077395131811499596, -0.02081262320280075, -0.0017917553195729852, 0.02810283936560154, 0.017942916601896286, -0.022957658395171165, -0.0011739711044356227, 0.017971903085708618, -0.015102196484804153, -0.004098028875887394, 0.025160664692521095, -0.02904491499066353, 0.0009429814526811242, 0.0339147225022316, -0.02240690588951111, 0.01329051237553358, -0.029885536059737206, -0.008246785029768944, -0.007674292661249638, -0.016681984066963196, 0.01158028282225132, 0.05487228184938431, 0.02997249737381935, -0.008812029846012592, 0.010493272915482521, 0.03466838225722313, -0.02142135053873062, -0.026160715147852898, 0.009594677947461605, 0.022769242525100708, 0.005300987046211958, -0.03295815363526344, -0.02463890053331852, 0.021131480112671852, 0.02946522645652294, 0.0065619186498224735, -0.009478730149567127, -0.02885650098323822, 0.008029382675886154, -0.009710625745356083, 0.03339295834302902, -0.009435249492526054, -0.026030274108052254, 0.0017337814206257463, 0.0007296556723304093, -0.008152577094733715, -0.03127691149711609, 0.00722499517723918, 0.011051271110773087, 0.05461139604449272, -0.07275722175836563, 0.04701681807637215, -0.02961016073822975, -0.03153779357671738, -0.026928868144750595, 0.014631158672273159, 0.004840819165110588, -0.01673995889723301, -0.04681390896439552, 0.007427903823554516, 0.0018714694306254387, 0.0077395131811499596, -0.03145083039999008, -0.03640759736299515, 0.01266004703938961, 0.04324851557612419, 0.007359059993177652, -0.004203106742352247, -0.022928670048713684, -0.002081624697893858, 0.0013759739231318235, 0.0011703477939590812, -0.004123392514884472, -0.05249534919857979, 0.006076387595385313, 0.03634962439537048, 0.02803037315607071, 0.008398965932428837, 0.014145627617835999, 0.029349278658628464, -0.019754599779844284, 0.024798328056931496, 0.03008844517171383, -0.00963091105222702, -0.012399164028465748, 0.01069618109613657, -0.007083683740347624, -0.004699507728219032, 0.04556747153401375, -0.0026305648498237133, 0.002299026818946004, -0.023537397384643555, -0.007337319664657116, -0.014363029971718788, 0.017812475562095642, 0.014681885950267315, 0.0008292982820421457, 0.012616566382348537, -0.012290462851524353, -0.004032808355987072, -0.02705930918455124, -0.006598152685910463, -0.029537692666053772, -0.027392659336328506, -0.0012772370828315616, 0.016754452139139175, -0.002387799322605133, 0.017580579966306686, -0.0008673436241224408, -0.02381277270615101, 0.013029630295932293, 0.008188811130821705, -0.005503895692527294, -0.04487178474664688, -0.04559645801782608, 0.015754403546452522, -0.012964409776031971, -0.0017881320090964437, -0.01067444123327732, -0.019435744732618332, 0.019421251490712166, -0.053509894758462906, 0.07669945061206818, -0.03359586372971535, 0.005750284530222416, -0.03258132189512253, -0.051422834396362305, 0.0011096564121544361, -0.006714100483804941, 0.006902515422552824, 0.014000692404806614, -0.025334587320685387, -0.007703279610723257, 0.027508607134222984, -0.011044024489820004, 0.003271901048719883, -0.021653246134519577, -0.00432992447167635, 0.016145726665854454, 0.02795790508389473, -0.02604476734995842, -0.04356737434864044, 0.038871489465236664, 0.006945996079593897, -0.024827314540743828, -0.015392065979540348, -0.005047351121902466, 0.01320355199277401, 0.012616566382348537, 0.01417461410164833, 0.028146320953965187, -0.05403165891766548, -0.009674391709268093, 0.008196057751774788, -0.0027809347957372665, 0.0011757827596738935, 0.03069717064499855, -0.0006626233807764947, 0.0019421250326558948, 0.004608923569321632, 0.0004583560221362859, -0.006913385353982449, -0.011623763479292393, 0.020406806841492653, 0.010957064107060432, -0.024073654785752296, -0.028697071596980095, 0.008391719311475754, 0.0036903999280184507, -0.030958052724599838, 0.00250193546526134, -0.010203403420746326, 0.0102468840777874, 0.029914524406194687, 0.014435497112572193, 0.021667739376425743, 0.03469736874103546, -0.03820478916168213, 0.022232983261346817, -0.016855906695127487, -0.030523249879479408, 0.02781297080218792, -0.003837146330624819, -0.019450237974524498, -0.0019548069685697556, -0.002047202782705426, -0.030639197677373886, 0.0201314315199852, -0.005909712519496679, -0.02575489692389965, -0.006156101822853088, 0.007522111292928457, -0.007572838570922613, 0.016725465655326843, 0.023508409038186073, 0.015203651040792465, -0.007942422293126583, 0.004442248959094286, -0.011174465529620647, -0.01979808136820793, -0.04678492248058319, 0.001983793918043375, 0.002184890676289797, -0.009623664431273937, 0.021653246134519577, 0.026349129155278206, 0.03704531118273735, -0.012761500664055347, -0.020073456689715385, -0.007264852058142424, -0.03930629417300224, 0.0032809593249112368, -0.009058419615030289, -0.020682182163000107, 0.00034920204780064523, 0.0018080604495480657, 0.02340695448219776, 0.001053494168445468, 0.05464038625359535, 0.03211753070354462, -0.03347991779446602, -0.019638651981949806, 0.017797982320189476, 0.0012690845178440213, 0.006478581577539444, 0.0006676054908894002, 0.045364562422037125, 0.042002078145742416, 0.019711120054125786, -0.027682529762387276, -0.04533557593822479, 0.008543901145458221, 0.013899238780140877, 0.017537100240588188, -0.051857639104127884, 0.034146618098020554, 0.03234942629933357, -0.019566185772418976, 0.03553799167275429, -0.026610013097524643, 0.02105901390314102, -0.03646557405591011, -0.023537397384643555, -0.013790537603199482, -0.012906435877084732, -0.029131876304745674, 0.0020761897321790457, -0.047886427491903305, -0.03837871178984642, -0.02752310037612915, -0.026523051783442497, -0.04872705042362213, -0.006844541523605585, -0.02168223261833191, -0.02871156483888626, -0.006656126584857702, 0.014776093885302544, -0.0038842500653117895, -0.04400217533111572, -0.003757432335987687, -0.005645206663757563, -0.007551098242402077, 0.0008093697833828628, -0.011188959702849388, 0.04061070457100868, 0.0044386256486177444, 0.050263356417417526, -0.01749361865222454, -0.008254031650722027, 0.018305253237485886, 0.002953044604510069, 0.008456939831376076, 0.04165423661470413, -0.008254031650722027, 0.004416885320097208, 0.01887049898505211, -0.0013524219393730164, 0.028334734961390495, -0.011283166706562042, 0.01161651685833931, 0.00411252211779356, -0.023030124604701996, -0.05458240956068039, 0.017537100240588188, 0.03171171247959137, 0.011029531247913837, -0.017116788774728775, -0.022682281211018562, 0.026059260591864586, -0.015247130766510963, -0.015623961575329304, 0.022450385615229607, 0.0019312549848109484, 0.03153779357671738, 0.02233443781733513, -0.019218342378735542, 0.010775895789265633, 0.022566333413124084, 0.0086598489433527, 0.014747106470167637, 0.02672596089541912, 0.03217550367116928, -0.02395770698785782, 0.04469786211848259, 0.004127015825361013, -0.016131233423948288, -0.017450138926506042, 0.03629165142774582, 0.0006322776898741722, 0.01918935589492321, -0.011913632974028587, -0.03762504830956459, 0.03869756683707237, 0.022885190322995186, 0.03687138855457306, -0.031189948320388794, -0.0028316618409007788, -0.032813217490911484, -0.01491378154605627, -0.006967735942453146, -0.007688786368817091, 0.010486026294529438, 0.029523199424147606, -0.015145677141845226, 0.010232389904558659, 0.004271950572729111, 0.0190879013389349, -0.003009206848219037, 0.012239736504852772, 0.011790438555181026, -0.012275969609618187, -0.04321952909231186, 0.01807335764169693, 0.0607566311955452, -0.06498872488737106, 0.020218390971422195, 0.0003589398693293333, 0.0077250199392437935, 0.0599449947476387, 0.0012690845178440213, -0.016319647431373596, 0.01194261945784092, -0.009232341311872005, 0.014957262203097343, -0.010080209001898766, 0.014587678015232086, -0.001556236413307488, -0.029131876304745674, -0.0020961181726306677, 0.007536605000495911, -0.007293839007616043, 0.013964459300041199, 0.01188464555889368, 0.047422636300325394, -0.02405916154384613, -0.009217847138643265, 0.014341289177536964, -0.01491378154605627, -0.038900475949048996, -0.013920978643000126, -0.020044470205903053, 0.035364069044589996, 0.013522407971322536, 0.021522803232073784, -0.009232341311872005, 0.01720375008881092, -0.01244264468550682, 0.012428151443600655, -0.018305253237485886, -0.04240789636969566, 0.01018891017884016, -0.02492876909673214, -0.05933626741170883, -0.0016893951687961817, 0.022276464849710464, 0.015565987676382065, -0.0064568412490189075, -0.058524634689092636, 0.005333597306162119, 0.0008197869174182415, 0.01979808136820793, -0.02503022365272045, 0.03643658384680748, 0.014522457495331764, -0.011116491630673409, 0.009094652719795704, 0.014399263076484203, 0.019827067852020264, -0.010841116309165955, 0.003304511308670044, 0.022522853687405586, -0.012833968736231327, -0.008790289983153343, -0.056727442890405655, -0.01258757896721363, -0.014478976838290691, 0.03176968917250633, -0.00789894163608551, -0.011159972287714481, -0.023319995030760765, 0.037277206778526306, -0.02997249737381935, 0.011587529443204403, -0.03275524452328682, 0.012355683371424675, 0.0005131594371050596, 0.014899288304150105, -0.019435744732618332, -0.005083584692329168, 0.0033099462743848562, -0.002953044604510069, -0.025233132764697075, 0.019609665498137474, -0.04150930047035217, 0.010072962380945683, 0.012935422360897064, -0.0017600508872419596, -0.002913187723606825, -0.03759606182575226, 0.006884398404508829, 0.013094850815832615, -0.008956965059041977, -0.050698161125183105, -0.007420657202601433, 0.0020780013874173164, 0.0022682282142341137, -0.0002685821382328868, -0.01947922445833683, -0.03153779357671738, 0.016754452139139175, 0.020189404487609863, -0.025494014844298363, 0.020174911245703697, 0.005493025295436382, -0.011428101919591427, 0.050408292561769485, 0.01860961690545082, -0.007311956025660038, -0.009348288178443909, -0.01620369963347912, 0.0016133044846355915, 0.002791804727166891, 0.010420805774629116, 0.004819078836590052, -0.02110249362885952, 0.010478779673576355, 0.04148031398653984, 0.006536555476486683, 0.009080159477889538, 0.015392065979540348, -0.013268772512674332, 0.029711615294218063, -0.02546502836048603, -0.020682182163000107, 0.024479473009705544, -0.04069766402244568, 0.03585684671998024, -0.01350791472941637, -0.004985753912478685, 0.012116541154682636, -0.020189404487609863, -7.78457906562835e-05, -0.02178368717432022, 0.018131332471966743, -0.03458142280578613, -0.008891744539141655, 0.02997249737381935, -0.044465966522693634, -0.024653393775224686, -0.006895268801599741, -0.007754006888717413, 0.019667640328407288, -0.030291354283690453, 0.0013279642444103956, 0.007471384014934301, 0.006920632440596819, 0.0048951697535812855, -0.024320043623447418, -0.0010643642162904143, 0.0049024163745343685, 0.005536505952477455, 0.013312253169715405, -0.003143271431326866, -0.0030327588319778442, 0.03478432819247246, 0.0035563353449106216, -0.026682479307055473, 0.019319796934723854, -0.017812475562095642, 0.012196255847811699, -0.01645008847117424, 0.011515062302350998, 0.023175058886408806, -0.01356588862836361, -0.001280860509723425, -0.011732464656233788, -0.01601528562605381, -0.02788543701171875, -0.01081937551498413, -0.02766803652048111, 0.003541841870173812, 0.002806298201903701, 0.004656027536839247, 0.03762504830956459, 0.011667244136333466, -0.029711615294218063, 0.0008795725298114121, 0.01127592008560896, -0.014855807647109032, 0.006351763382554054, 0.0031468947418034077, 0.00481545552611351, 0.018522655591368675, 0.011768698692321777, 0.039741095155477524, -0.017899436876177788, -0.014674639329314232, 0.016029778867959976, -0.028914473950862885, 0.014493471011519432, -0.003117907792329788, -0.016218192875385284, -0.022522853687405586, 0.008732316084206104, 0.02229095809161663, -0.024392511695623398, 0.03542204201221466, 0.016406608745455742, 0.02337796799838543, 0.014942768029868603, 0.023754797875881195, -0.026885388419032097, 0.02965364046394825, -0.021479323506355286, 0.05293015390634537, -0.008630861528217793, 0.037277206778526306, -0.007181514985859394, -0.008696082048118114, -0.001546272193081677, -0.012877448461949825, 0.01368908304721117, -0.00774676026776433, 0.020609715953469276, -0.00129625981207937, -0.030813118442893028, 0.042147014290094376, -0.03678442910313606, 0.031074000522494316, 0.027334686368703842, -0.03730619326233864, -0.019305303692817688, -0.012942668981850147, -0.00594232277944684, -0.014986248686909676, 0.030958052724599838, -0.006525685079395771, 0.0044458722695708275, 0.0009158061584457755, 0.03261030837893486, 0.03156678006052971, 0.008159823715686798, -0.03704531118273735, 0.004213976673781872, -0.010087455622851849, 0.018305253237485886, -0.018769044429063797, -0.04055273160338402, 0.012399164028465748, 0.013718070462346077, 0.00393135379999876, -0.024870796129107475, 0.008848263882100582, -0.019508210942149162, 0.02665349282324314, 0.023580877110362053, -0.01713128201663494, 0.012971656396985054, -0.004858936183154583, -0.010101948864758015, -0.0031740700360387564, -0.0034095889423042536, -0.008304758928716183, -0.023798279464244843, 0.026247674599289894, 0.00411976920440793, 0.004257456865161657, -0.004739365074783564, 0.002203007461503148, 0.010304857976734638, -0.03350890427827835, -0.01684141345322132, -0.015971804037690163, -0.0010317539563402534, -0.026494065299630165, 0.0056633236818015575, 0.00673584034666419, -0.01513118389993906, -0.004695884417742491, 0.01742115244269371, -0.005435051396489143, -0.00968888495117426, 0.016566036269068718, 0.009333794936537743, -0.017522606998682022, -0.01268178690224886, -0.04339345172047615, -0.013036876916885376, -0.02352290228009224, -0.022030076012015343, 0.011500569060444832, 0.0017790735000744462, -0.03713227063417435, 0.021769193932414055, -0.020319845527410507, 0.0012690845178440213, 0.018595123663544655, 0.018551642075181007, -0.031653739511966705, -0.04008894041180611, 0.003438575891777873, 0.011341140605509281, 0.01911688782274723, -0.012217995710670948, 0.010239637456834316, 0.0029693497344851494, 0.003974834457039833, 0.004203106742352247, -0.007652552332729101, -0.007409786805510521, -0.0002651852264534682, 0.009928027167916298, -0.018087850883603096, 0.0044929757714271545, 0.002284533344209194, -0.026073753833770752, -0.011268673464655876, 0.016276167705655098, 0.008145330473780632, 0.017435645684599876, 0.023856252431869507, 0.0010380948660895228, 0.01760956645011902, 0.0002962103171739727, -0.004293690901249647, -0.003953094128519297, 0.008167070336639881, -0.004659650847315788, -0.025131678208708763, -0.013913732022047043, 0.048060350120067596, -0.03008844517171383, -0.007681539282202721, 0.0041342624463140965, -0.005098078399896622, -0.0016187395667657256, -0.007395293563604355, 0.016073258593678474, 0.02817530743777752, 0.027073802426457405, 0.0011150913778692484, 0.018189305439591408, 0.04617619886994362, -0.01021065004169941, 0.035074200481176376, 0.019667640328407288, -0.009391768835484982, 0.004159626085311174, 0.01684141345322132, 0.0204937681555748, 0.0030852975323796272, 0.0176385547965765, 0.017116788774728775, 0.012754254043102264, 0.00950771663337946, -0.006902515422552824, -0.035943806171417236, -0.0073409429751336575, -0.007572838570922613, 0.017377670854330063, 0.027943411841988564, -0.02001548372209072, 0.034436486661434174, 0.007464137393981218, 0.003724822076037526, 0.006217699032276869, -0.013102097436785698, -0.0022374296095222235, 0.014834066852927208, 0.0005195003468543291, -0.03994400426745415, 0.0011313965078443289, 0.006308283191174269, 0.01017441600561142, 3.0515549951815046e-05, -0.002695785602554679, 0.011065765284001827, 0.008152577094733715, 0.045364562422037125, -0.002092494862154126, -0.014645651914179325, 0.008174317888915539, 0.012261476367712021, 0.017942916601896286, 0.002703032223507762, 0.00454370304942131, -0.012652800418436527, -0.014870300889015198, 0.02105901390314102, -0.027363672852516174, -0.01250061858445406, 0.01858063042163849, -0.005945946555584669, -0.0451616533100605, 0.021290907636284828, 0.024986743927001953, 0.019218342378735542, -0.013942718505859375, 0.003329874947667122, 0.011478829197585583, 0.04548051208257675, 0.018667589873075485, 0.012515111826360226, -0.013449940830469131, -0.043741293251514435, 0.022595321759581566, -0.012573085725307465, 0.00786270759999752, -0.0380888395011425, 0.010261377319693565, 0.027001336216926575, -0.024464977905154228, 0.004188613034784794, 0.013681836426258087, 0.013855758123099804, -0.022957658395171165, -0.03127691149711609, -0.012942668981850147, 0.03272625803947449, -0.03240739926695824, 0.01329051237553358, 0.010420805774629116, 0.010630960576236248, -0.008072863332927227, -0.0030327588319778442, 0.024551939219236374, -0.009377275593578815, 0.02374030463397503, 0.0010471532586961985, -0.0339147225022316, -0.008609121665358543, 0.04826325923204422, -0.012638306245207787, -0.01965314708650112, -0.016131233423948288, -0.004467612132430077, 0.009522209875285625, -0.005170545540750027, 0.01911688782274723, -0.01601528562605381, 0.03632063791155815, 0.006692360155284405, 0.00421035336330533, -0.024725861847400665, -0.026856401935219765, 0.004652404226362705, -0.003117907792329788, 0.01710229553282261, -0.02410264126956463, 0.016580531373620033, 0.010000495240092278, 0.04008894041180611, -0.015160170383751392, 0.025479521602392197, -0.026204194873571396, -0.023711318150162697, -0.035798873752355576, -0.008681588806211948, -0.012044074013829231, -0.03582786023616791, -0.010130936279892921, -0.02388523891568184, -0.03687138855457306, -0.0019421250326558948, -0.00792068149894476, 0.0003405965690035373, -0.0011196206323802471, 0.008217797614634037, 0.002355189062654972, -0.01505871582776308, 0.008029382675886154, -0.023247526958584785, 0.009928027167916298, 0.0233055017888546, -0.005163298919796944, -0.015174663625657558, -0.049190837889909744, 0.004529209807515144, 0.01850816234946251, -0.0049350266344845295, -0.015826869755983353, -0.017363177612423897, -0.01829075999557972, 0.023827265948057175, -0.00025454157730564475, -0.04104550927877426, -0.016942868009209633, -0.004974883981049061, 0.005511142313480377, -0.04342243820428848, 0.01998649537563324, 0.00297116138972342, 0.007228618487715721, 0.0033208164386451244, -0.017000840976834297, 0.011022284626960754, -0.008391719311475754, -0.04466887563467026, 0.02045028656721115, 0.021145973354578018, 0.0014303243951871991, 0.0037683025002479553, -0.00031002439209260046, -0.00499662384390831, -0.0009891793597489595, -0.02355189062654972, 0.022305451333522797, 0.026610013097524643, 0.012797734700143337, -0.003541841870173812, 0.0009062948520295322, 0.012906435877084732, 0.010790389031171799, 0.01424708217382431, -0.020899584516882896, 0.012217995710670948, -0.001278142910450697, -0.0044132620096206665, -0.0173196978867054, 0.04365433380007744, -0.017537100240588188, 0.016537049785256386, -0.03469736874103546, 0.0034693744964897633, -0.005757531151175499, 0.012080308049917221, 0.040494758635759354, 0.010993297211825848, 0.015826869755983353, 0.012160021811723709, -0.04121943190693855, -0.021073507145047188, -0.010536753572523594, -0.03794390708208084, 0.005482155364006758, -0.03965413570404053, -0.029711615294218063, -0.005471285432577133, -0.030291354283690453, 0.014348535798490047, -0.026378117501735687, 0.004750235006213188, 0.029204344376921654, 0.010507766157388687, 0.031247923150658607, -0.027407152578234673, -0.029378265142440796, 0.03368282690644264, -0.012304957024753094, -0.0025834611151367426, 0.007985902018845081, 0.010072962380945683, -0.0049350266344845295, -0.010725168511271477, -0.008456939831376076, 0.007913434877991676, -0.021551791578531265, 0.022175010293722153, -0.04519064351916313, 0.012899189256131649, 0.0007115388289093971, 0.005808258429169655, -0.004094405565410852, -0.022783735767006874, -0.006029283627867699, 0.0339147225022316, 0.007442397065460682, -0.01244264468550682, -0.004858936183154583, -0.0026360000483691692, -0.011065765284001827, 0.0002531828067731112, 0.017435645684599876, -0.012232488952577114, -0.011717971414327621, -0.009717872366309166, -0.027653541415929794, -0.0014031491009518504, -0.021885141730308533, -0.017450138926506042, 0.023247526958584785, 0.00026586459716781974, 0.012602073140442371, -0.04649505391716957, 0.0004266515315975994, -0.033885736018419266, 0.009174367412924767, -0.016942868009209633, 0.0002760553325060755, -0.030465275049209595, 0.028842005878686905, -0.041422341018915176, 0.023899734020233154, -0.03690037503838539, -0.03145083039999008, 0.03994400426745415, -0.002150468761101365, -0.002177644055336714, 0.03379877284169197, 0.019856054335832596, 0.0024747601710259914, 0.018377721309661865, 0.004703131038695574, 0.007362683303654194, -0.020000990480184555, -0.004608923569321632, -0.00810184981673956, 0.006090881302952766, -0.014435497112572193, -0.05730718374252319, -0.01421084813773632, 0.03408864140510559, 0.018421201035380363, -0.010413559153676033, 0.00569955725222826, -0.00020132336067035794, 0.0014402886154130101, 0.014073160476982594, 0.006634386256337166, -0.009819325990974903, -0.0064749582670629025, -0.007297462318092585, -0.03730619326233864, -0.002362435683608055, -0.0020327093079686165, 0.013884744606912136, -0.009601924568414688, -0.03521913290023804, -0.009775846265256405, -0.03611772879958153, -0.014442743733525276, -0.014783340506255627, 0.03632063791155815, -0.01408765371888876, -0.005993050057440996, -0.019421251490712166, -0.007152528036385775, -0.0012156398734077811, 0.0018107780488207936, -0.017870448529720306, 0.012029580771923065, 0.005250259768217802, 0.038001880049705505, -0.04440799355506897, 0.013681836426258087, -0.008036629296839237, 0.015971804037690163, -0.01807335764169693, -0.016131233423948288, 0.0030834858771413565, 0.006935125682502985, 0.031943608075380325, 0.021696725860238075, 0.024754848331212997, 0.020798129960894585, -0.035943806171417236, 0.062205977737903595, -0.023276513442397118, -0.007246735505759716, 0.026537545025348663, 0.001152230892330408, 0.00020087044686079025, -0.0032574075739830732, 0.009232341311872005, 0.00018807542801368982, -0.0029421746730804443, -0.020189404487609863, 0.006195958703756332, 0.016580531373620033, 0.0007219560211524367, 0.027754995971918106, -0.01824728026986122, 0.0366394929587841, -0.004790091887116432, -0.004826325923204422, 0.01473261322826147, -0.03026236779987812, 0.0020780013874173164, 0.013058616779744625, 0.010797635652124882, -0.009638157673180103, 0.0030490639619529247, -0.018348734825849533, 0.013957212679088116, -0.0012138282181695104, 0.01347168069332838, 0.0036088742781430483, -0.0053191035985946655, 0.0047647287137806416, 0.06835120916366577, -0.0028207916766405106, 0.012029580771923065, 0.027494113892316818, -0.004366158042103052, 0.004398768302053213, 0.027363672852516174, 0.012044074013829231, 0.017942916601896286, -0.008536654524505138, 0.008529407903552055, -0.012877448461949825, 0.021363375708460808, 0.034900277853012085, -0.011232439428567886, 0.016276167705655098, 0.02994351089000702, 0.00048598420107737184, 0.0011866529239341617, 0.010159922763705254, -0.004931403324007988, -0.007203254848718643, 0.014036926440894604, 0.0044458722695708275, -0.004174119792878628, -0.003963964059948921, 0.009101899340748787, -0.00014119810657575727, 0.003342556767165661, -0.006373503711074591, 0.006380750332027674, 0.01788494363427162, -0.014529704116284847, 0.029378265142440796, 0.008841017261147499, 0.030494261533021927, 0.025551989674568176, -0.015377572737634182, -0.015203651040792465, 0.02347942255437374, -0.013718070462346077, -0.010884596966207027, -0.020551741123199463, -0.013884744606912136, -0.0034675628412514925, 0.020174911245703697, 0.01213828194886446, 0.024001186713576317, 0.002197572495788336, -0.024914275854825974, -0.03278423100709915, 0.020856104791164398, -0.0033081346191465855, 0.008449693210422993, -0.012848461978137493, -0.01705881580710411, 0.005732167512178421, -0.016073258593678474, 0.0008066522423177958, 0.016363129019737244, -0.014131134375929832, 0.011341140605509281, 0.010159922763705254, -0.06730768084526062, -0.028189800679683685, -0.009594677947461605, -0.01444999035447836, 0.009297561831772327, -8.186546619981527e-05, 0.026682479307055473, -0.0020888715516775846, -0.011080258525907993, -0.01371082291007042, 0.002559909364208579, 0.011449841782450676, 0.02384175918996334, 0.023204047232866287, 0.018261773511767387, 0.0006793814245611429, -0.018711071461439133, -0.0025327340699732304, 0.020218390971422195, -0.012964409776031971, 0.008630861528217793, -0.01620369963347912, 0.003425894072279334, 0.0029947133734822273, 0.002701220568269491, -0.01100054383277893, -0.041538286954164505, 0.01513118389993906, -0.010384571738541126, -0.00368858827278018, -0.028769539669156075, -0.027189750224351883, -0.0040038214065134525, -0.01441375631839037, -0.00582637544721365, 0.02139236219227314, -0.0024294680915772915, 0.008413460105657578, -0.0019874172285199165, 0.01332674641162157, 0.005641583353281021, -0.0061379848048090935, -0.003681341651827097, -0.005815505050122738, 0.011087505146861076, -0.03304511308670044, -0.006775697693228722, -0.022740256041288376, 0.014283315278589725, -0.01430505607277155, -0.0061778416857123375, -8.45829927129671e-05, -0.030726157128810883, -0.013087604194879532, -0.032233480364084244, 0.012341190129518509, 0.005474908743053675, -0.036813415586948395, 0.0068010613322257996, -0.0345524325966835, 0.03649456053972244, 0.02311708591878414, 0.04075564071536064, 0.015826869755983353, -0.0032429140992462635, -0.014167367480695248, 0.019899535924196243, -0.0026849154382944107, 0.014181860722601414, -0.01332674641162157, 0.006061894353479147, 0.0013687271857634187, -0.001983793918043375, 0.020363327115774155, -0.01594281755387783, -0.015522507019340992, 0.0006363539723679423, -0.02175469882786274, 0.003610685933381319, 0.0010933511657640338, 0.02471136674284935, 0.004348041024059057, -0.007272099144756794, -0.028015878051519394, 0.00795691553503275, 0.007804734166711569, -0.005804635118693113, 0.014515210874378681, -0.05226345732808113, -0.004224846605211496, -0.006467711180448532, 0.008413460105657578, -0.0069967228919267654, -0.0012301333481445909, -0.019276315346360207, -0.017508111894130707, -0.003739315550774336, 0.01000774186104536, -0.0011929938336834311, 0.010703427717089653, -0.013964459300041199, 0.001972923753783107, -0.0025653443299233913, -0.0065474254079163074, -0.013196305371820927, -0.014544198289513588, 0.018450187519192696, -0.0007029333501122892, -0.01491378154605627, 0.0013805030612275004, -0.01497175544500351, 0.016971854493021965, -0.0007251264760270715, 0.0215372983366251, -0.01860961690545082, 0.016319647431373596, -0.04116145521402359, -0.03040730208158493, -0.023609863594174385, -0.0006327306036837399, 0.016044272109866142, 0.02904491499066353, 0.012457137927412987, -0.022175010293722153, 0.002061696257442236, 0.0033769786823540926, -0.025957806035876274, 0.00892797764390707, -0.019029926508665085, -0.020435793325304985, 0.013638355769217014, -0.009797586128115654, 0.0004497505142353475, -0.009333794936537743, -0.016145726665854454, 0.02362435683608055, -0.011297660879790783, 0.00930480845272541, 0.009841066785156727, 0.00280448654666543, 0.018479175865650177, 0.019290810450911522, -0.03011743165552616, 0.005021987482905388, 0.05971309915184975, 0.008203304372727871, -0.01426882203668356, 0.0027320191729813814, 0.0005050068721175194, -0.010297611355781555, 0.004623417276889086, -0.0008347333059646189, 0.020682182163000107, 0.02240690588951111, 0.010268623940646648, 0.0007219560211524367, -0.028189800679683685, -0.015580480918288231, -0.005340843927115202, -0.009732365608215332, -0.011522308923304081, 0.005500271916389465, 0.024798328056931496, 0.019319796934723854, -0.00874680932611227, 0.007869954220950603, -0.0003605250967666507, 0.019073408097028732, -0.01365284901112318, 0.022754749283194542, -0.013377473689615726, 0.032842203974723816, -0.006804684642702341, -0.0044531188905239105, 0.023102592676877975, 0.03779897093772888, -0.009413509629666805, 0.0011377374175935984, -0.010145429521799088, -0.009029432199895382, 0.0010399065213277936, -0.018160318955779076, -0.00023416013573296368, -0.02803037315607071, 0.0057212975807487965, 0.010130936279892921, 0.01601528562605381, -0.0102468840777874, 0.008754055947065353, -0.021290907636284828, -0.04014691337943077, 0.011457088403403759, -0.014276068657636642, 0.009203353896737099, 0.004257456865161657, -0.022537346929311752, -0.011536803096532822, 0.013109344057738781, -0.014254328794777393, 0.004587183706462383, 0.0013596686767414212, -0.03603076934814453, -0.0035436535254120827, 0.003985704388469458, 0.00908740609884262, 0.02662450633943081, -0.027783984318375587, -0.01584136299788952, 0.006532932166010141, 0.017000840976834297, -0.006018413696438074, 0.0007400728645734489, -0.020116938278079033, 0.014544198289513588, -0.009384522214531898, -0.006047400645911694, -0.00719600822776556, 0.0008161635487340391, 0.007290215697139502, -0.01807335764169693, -0.021261921152472496, 0.0050328578799963, 0.0015408371109515429, 0.004793715663254261, 0.0008170694345608354, 0.02495775744318962, -0.008681588806211948, 0.0006984040956012905, -0.0028117334004491568, 0.01247887872159481, -0.0036722831428050995, 0.022711269557476044, 0.02474035508930683, 0.0014973566867411137, 0.007156151346862316, -0.018232787027955055, -0.03263929486274719, -0.003848016494885087, -0.003655978012830019, 0.002409539418295026, -0.01497175544500351, 0.012471631169319153, 0.010580233298242092, 0.03553799167275429, 0.0033769786823540926, -0.009899040684103966, -0.003380601992830634, 0.012428151443600655, 0.009862806648015976, 0.011913632974028587, -0.014363029971718788, -0.005811881739646196, -0.03069717064499855, 0.004416885320097208, -0.006627139635384083, 0.016725465655326843, -0.011101998388767242, -0.00755834486335516, -0.014797833748161793, -0.06707578152418137, -0.027726009488105774, 0.017406659200787544, -0.00570680433884263, 0.018102344125509262, 0.00027062027947977185, 0.012000593356788158, -0.02092857100069523, 0.007337319664657116, 0.0007446020608767867, 0.010319351218640804, -0.004242963623255491, 0.0020508260931819677, -0.0022700398694723845, 0.0010480590863153338, 0.01824728026986122, -0.013942718505859375, 0.0012473443057388067, -0.0038190295454114676, 0.001715664635412395, 0.012181762605905533, 0.00597130972892046, 0.017595073208212852, 0.00350741995498538, -0.01179768517613411, -0.004206730052828789, 0.007601825520396233, -0.03159576654434204, -0.03617570176720619, 0.02882751263678074, 0.007978655397891998, -0.018305253237485886, 0.005315480288118124, -0.007384423166513443, 0.012594826519489288, 0.040233876556158066, 0.0006635292083956301, 0.008688835427165031, 0.014942768029868603, -0.011667244136333466, 0.004018314648419619, -0.008087356574833393, -0.021943114697933197, 0.021479323506355286, 0.014131134375929832, 0.010399064980447292, 0.00023891580349300057, 0.05832172557711601, 0.0018750927411019802, 0.026276662945747375, 0.003572640474885702, 0.009601924568414688, 0.034610409289598465, -0.00838447269052267, 0.02875504642724991, -0.01918935589492321, 0.006656126584857702, -0.0038588866591453552, -0.0012953539844602346, 0.006532932166010141, -0.019363276660442352, 0.027726009488105774, 0.0073735532350838184, -0.04119044542312622, 0.0024928769562393427, -0.003130589611828327, 0.009101899340748787, 0.03895844891667366, -0.003782795974984765, -0.002260981360450387, 0.016826920211315155, 0.009717872366309166, 0.0060329074040055275, 0.019711120054125786, -0.009783092886209488, 0.016609517857432365, -0.01926182210445404, 0.02265329472720623, 0.0010960687650367618, -0.024870796129107475, 0.000529464625287801, 0.017145775258541107, 0.02352290228009224, -0.0020019107032567263, 0.024682380259037018, -0.02827676199376583, -0.012109294533729553, 0.011659997515380383, -0.009833820164203644, 0.011007791385054588, -0.001270896173082292, -0.0007255793898366392, -0.009174367412924767, -0.026218688115477562, -0.0011178089771419764, -0.007949668914079666, -0.0053118569776415825, -0.006246685981750488, 0.022464878857135773, -0.002893259050324559, -0.03304511308670044, 0.012471631169319153, 0.013797784224152565, -0.008398965932428837, 0.011529555544257164, 0.0022102543152868748, -0.01453695073723793, 0.0038407696411013603, 0.006166971754282713, 0.022203996777534485, 0.01421084813773632, 0.006627139635384083, -0.013319499790668488, -0.026030274108052254, -0.026595517992973328, 0.009341041557490826, 0.028842005878686905, 0.01197885349392891, -0.011283166706562042, -0.016363129019737244, -0.04263979196548462, 0.013834018260240555, -0.0013442693743854761, -0.02842169627547264, 0.00518503924831748, 0.024508459493517876, 0.014326795935630798, -0.0027175256982445717, -0.00667424313724041, 0.016493570059537888, -0.0032936411444097757, 0.011906386353075504, -0.01760956645011902, -0.012355683371424675, 0.020464779809117317, 0.0009275821503251791, 0.021595271304249763, -0.004297314211726189, 0.013703576289117336, -0.02943623997271061, -0.0013460811460390687, 0.0018026253674179316, -0.016710972413420677, 0.0003401436551939696, -0.005576362833380699, 0.0023406955879181623, 0.006387997418642044, -0.013297758996486664, -0.01868208311498165, -0.003387848846614361, 0.0014584055170416832, -0.010536753572523594, 0.017595073208212852, 0.02737816609442234, 0.005565492901951075, -0.016247181221842766, 0.013928225263953209, -0.024624407291412354, -0.006797437556087971, -0.0009529456729069352, -0.017841462045907974, -0.007688786368817091, -0.019145874306559563, 0.041103482246398926, -0.0012971656396985054, 0.001162195228971541, 0.007217748556286097, 0.006692360155284405, 0.008797536604106426, -0.022493867203593254, 0.0052466364577412605, 0.026972349733114243, 0.010928076691925526, -0.00936278235167265, 0.001796284574083984, 0.010920830070972443, 0.01069618109613657, -0.0367264561355114, -0.021073507145047188, 0.0007305614999495447, 0.01338472031056881, 0.008130837231874466, 0.03469736874103546, 0.005808258429169655, -0.0022247477900236845, -0.024117134511470795, -0.010717921890318394, -0.0025399806909263134, 0.019856054335832596, 0.0011277731973677874, 0.01017441600561142, 0.025711417198181152, 0.005772024858742952, -0.007156151346862316, -0.016421101987361908, -0.0019149498548358679, -0.01402967981994152, -0.014718119986355305, 0.01569642871618271, 0.004221223294734955, 0.029740601778030396, -0.012993396259844303, 0.008130837231874466, 0.0024928769562393427, -0.03263929486274719, 0.03113197535276413, 0.03333498165011406, -0.013493421487510204, 0.0007600013632327318, 0.010348337702453136, -0.00022181804524734616, -0.013834018260240555, 0.002690350404009223, -0.018696576356887817, -0.013116590678691864, 0.008848263882100582, -0.006917009130120277, -0.005768401548266411, -0.016363129019737244, 0.009906287305057049, -0.006840918213129044, -0.009341041557490826, 0.014080407097935677, -0.018566135317087173, 0.005069091450423002, -0.001280860509723425, -0.011181713081896305, -0.007398916874080896, 0.007228618487715721, 0.0038878736086189747, -0.003732068696990609, 0.002536357380449772, 0.008406213484704494, -0.0030635574366897345, -0.016725465655326843, 0.0024729485157877207, -0.011486075818538666, -0.015884844586253166, 0.01121794618666172, -0.003137836465612054, 0.04663999006152153, 0.020145924761891365, 0.007993149571120739, 0.0065619186498224735, 0.0036922115832567215, 0.020899584516882896, 0.002362435683608055, 0.01952270418405533, -0.015899337828159332, -0.003630614373832941, -0.009558443911373615, 0.016073258593678474, -0.030059458687901497, 7.20144307706505e-05, -0.021276414394378662, 0.013558642007410526, 0.0048879231326282024, 0.00405817199498415, 0.0030834858771413565, 0.0020145925227552652, -0.02434903010725975, 0.01161651685833931, -0.02066768892109394, 0.008717822842299938, 0.016406608745455742, -0.00015716358029749244, 0.004540079738944769, 0.009471483528614044, -0.001132302451878786, 0.010862856172025204, 0.010348337702453136, -0.0173196978867054, -0.02117495983839035, -0.002311708638444543, 0.012391917407512665, 0.01505871582776308, 0.016348635777831078, -0.030639197677373886, 0.009594677947461605, -0.002203007461503148, -0.01676894538104534, 0.0035961924586445093, 0.005449545104056597, -0.010833869688212872, -0.0012799546821042895, -0.024233082309365273, -0.017971903085708618, 0.010848362930119038, 0.011710724793374538, -0.030030472204089165, 0.0010317539563402534, 0.015609468333423138, 0.017044320702552795, -0.011573036201298237, -0.006819177884608507, 0.03826276212930679, -0.022319944575428963, 0.0037356920074671507, -0.009906287305057049, -0.00719600822776556, 0.013341239653527737, 0.010652701370418072, 0.006224945653229952, 0.013674589805305004, 0.010196156799793243, 0.010058469139039516, 0.004891546443104744, 0.012747007422149181, -0.011855659075081348, -0.018551642075181007, -0.021145973354578018, 0.019406758248806, -0.0022374296095222235, 0.03191462159156799, -0.02381277270615101, 9.692508319858462e-05, -0.00894247181713581, 0.0068590352311730385, 0.005873478949069977, -0.022479373961687088, 0.026073753833770752, -0.03426256403326988, 0.009870053268969059, 0.024725861847400665, -0.015203651040792465, -0.0021559037268161774, 0.0079351756721735, 0.010486026294529438, -3.3034921216312796e-05, -0.0002482006966602057, 0.02045028656721115, 0.007449644152075052, 0.010935323312878609, -0.021116986870765686, -0.007891695015132427, 0.014109393581748009, -0.01387025136500597, -0.013391966931521893, -0.007101800758391619, 0.004471235908567905, 0.015826869755983353, 0.00039290892891585827, 0.015029729343950748, -0.004489352460950613, -0.0030381937976926565, 0.019856054335832596, 0.0005217649741098285, 0.008268524892628193, -0.005112571641802788, 0.010754154995083809, -0.01170347724109888, -0.014710872434079647, -0.001971112098544836, -0.0057285442017018795, 0.02207355573773384, 0.0072757224552333355, 0.006580035667866468, 0.0018732810858637094, -0.014377523213624954, 0.01071067526936531, -0.00021966666099615395, 0.018406707793474197, -0.014152874238789082, -0.003905990393832326, 0.00582637544721365, 0.016508063301444054, 0.004623417276889086, -0.01565294899046421, -0.013333993032574654, -0.017971903085708618, -0.00041804605280049145, -0.0018279890064150095, 0.008551147766411304, -0.026682479307055473, -0.023131579160690308, 0.007366306614130735, 0.018058864399790764, -0.02005896344780922, -0.002375117503106594, -0.009254081174731255, -0.00878304336220026, 0.006427854299545288, 0.0006689642323181033, 0.004083535168319941, 0.005482155364006758, -0.017551593482494354, 0.00021072148228995502, 0.011906386353075504, 0.0008442446705885231, 0.022015582770109177, 0.008732316084206104, 0.02337796799838543, -0.013152824714779854, 0.026349129155278206, 0.0034566926769912243, -0.01620369963347912, 0.006648879498243332, -0.0017953787464648485, 0.027682529762387276, 0.012239736504852772, -0.022783735767006874, 0.01858063042163849, -0.009196107275784016, -0.021522803232073784, -0.0008465092978440225, -0.0027881814166903496, 0.006540178786963224, 0.022624308243393898, 0.003259219229221344, 0.008978704921901226, -0.005583609454333782, 0.003317193128168583, -2.8548174668685533e-05, -0.006134361494332552, -0.013268772512674332, -0.02105901390314102, 0.0006109903915785253, 0.024551939219236374, 0.009174367412924767, 0.008949718438088894, -0.0011558543192222714, -0.014442743733525276, -0.012333943508565426, -0.015971804037690163, -0.0018769045127555728, -0.04232093319296837, -0.0006762109696865082, 0.02103002555668354, 0.0038588866591453552, -0.031102988868951797, 0.02503022365272045, 0.01807335764169693, 0.0028008632361888885, 0.01698634773492813, -0.00579014141112566, 0.014464483596384525, 0.008768550120294094, 0.006630762945860624, 0.001616927795112133, -0.0061307381838560104, 0.004192236345261335, 0.022348931059241295, 0.01282672118395567, 0.020798129960894585, 0.0008030288736335933, -0.009239587932825089, -0.01933429017663002, -0.0025852727703750134, -0.027624554932117462, 0.012196255847811699, -0.0017772618448361754, -0.002355189062654972, 0.01645008847117424, 0.005203155800700188, -0.0044386256486177444, 0.006036530714482069, -0.008833770640194416, -0.011790438555181026, 0.035914819687604904, 0.01197885349392891, -0.0008292982820421457, -0.004848065786063671, 5.838434162797057e-07, -0.0037610556464642286, -0.004514716099947691, -0.015203651040792465, -0.0036704714875668287, 0.002125105122104287, 0.011710724793374538, 0.01894296705722809, 0.011993346735835075, -0.014007939025759697, 0.011123739182949066, 0.009551197290420532, -0.009862806648015976, 0.02558097615838051, -0.009297561831772327, -0.02192862145602703, -0.0015951875830069184, 0.011319400742650032, 0.015870351344347, -0.009167119860649109, 0.00013451752602122724, 0.0026160713750869036, 0.03913237154483795, 0.011210699565708637, 0.012123788706958294, 0.014674639329314232, 0.010022235102951527, 0.017087802290916443, 0.0012718020007014275, -0.007471384014934301, -0.03133488446474075, 0.015044222585856915, 0.015899337828159332, -0.011051271110773087, -0.0002420862583676353, -0.007623565383255482, -0.00936278235167265, -0.01089184358716011, -0.009384522214531898, -0.00022521494247484952, -0.011167218908667564, -0.007522111292928457, 0.006877151783555746, -0.0013913732254877687, -0.015363078564405441, -0.0035364069044589996, 0.01778348907828331, 0.006753957364708185, -0.019305303692817688, 0.00046832027146592736, 0.002005534013733268, -0.01314557809382677, -0.017913930118083954, 0.004174119792878628, 0.0032990763429552317, 0.008717822842299938, 0.004540079738944769, 0.03162475302815437, 0.01901543326675892, -0.012384670786559582, 0.012783241458237171, 0.004416885320097208, 0.007601825520396233, -0.002059884602203965, -0.00198017037473619, 0.023175058886408806, 0.004793715663254261, 0.010275870561599731, -0.0024240328930318356, -0.04066867753863335, 0.010623713955283165, 0.00042642507469281554, -0.018087850883603096, -0.0324653759598732, -0.018160318955779076, -0.011246933601796627, 0.011341140605509281, 0.004706754814833403, -0.002003722358494997, -0.015971804037690163, -0.008775796741247177, 0.01879803091287613, -0.0011911821784451604, -0.001101503730751574, -0.004333547782152891, -0.003221173770725727, 0.005340843927115202, 0.026523051783442497, 0.009014938957989216, -0.008210550993680954, 0.009159873239696026, -0.018377721309661865, 0.007036580238491297, -0.0032121154945343733, -0.013754303567111492, 0.0036922115832567215, 0.014645651914179325, -0.014442743733525276, 0.023204047232866287, 0.021015532314777374, 0.01121794618666172, 0.012848461978137493, -0.012971656396985054, 0.00982657354325056, 0.005177792627364397, -0.004406014923006296, -0.03055223636329174, 0.012384670786559582, 0.023030124604701996, 0.019566185772418976, -0.005565492901951075, -0.0015752591425552964, 0.023276513442397118, -0.01824728026986122, -0.020899584516882896, 0.014819573611021042, 0.002509182086214423, 0.012007840909063816, -0.0197690948843956, 0.014899288304150105, 0.0005598103161901236, 0.016348635777831078, -0.00643147761002183, 0.009775846265256405, -0.004594430327415466, 0.005355337634682655, 0.0026323767378926277, 0.0367264561355114, 0.018913978710770607, -0.01139911450445652, 0.00247113686054945, 0.009138133376836777, -0.01402967981994152, -0.006025660317391157, -0.015073210000991821, -0.02388523891568184, -0.016566036269068718, 0.019218342378735542, 0.008449693210422993, -0.008188811130821705, 0.017797982320189476, -0.006319153122603893, -0.019638651981949806, -0.01188464555889368, -0.005858985707163811, 0.014080407097935677, 0.013239785097539425, 0.0036414845380932093, 0.008203304372727871, -0.007101800758391619, -0.004398768302053213, 0.0035364069044589996, 0.005181415937840939, 0.0024838184472173452, 0.024305550381541252, -0.02532009407877922, -0.010630960576236248, -0.023291006684303284, -0.0233055017888546, 0.0016060577472671866, -0.010703427717089653, -0.0019004563800990582, -0.004079911857843399, 0.017986396327614784, 0.0044929757714271545, -0.00201096897944808, 0.024320043623447418, 0.037422142922878265, -0.0016241745324805379, -0.018189305439591408, -0.005300987046211958, -0.004011068027466536, 0.009725118987262249, 0.02892896719276905, 0.0027447009924799204, 0.005529258865863085, 0.0151891577988863, 4.231980346958153e-05, -0.00500387093052268, -0.015029729343950748, -0.006243062671273947, 0.0028787655755877495, -0.0038443931844085455, -0.007978655397891998, -0.004641533829271793, 0.025885337963700294, -0.01421084813773632, -0.0077177733182907104, 8.577190601499751e-05, -0.004402391612529755, 0.004304560832679272, 0.010870102792978287, 0.006786567624658346, -0.000588797265663743, 0.013232538476586342, -0.003251972608268261, -0.0033316866029053926, -0.006210452411323786, 0.009732365608215332, 0.004456742201000452, -0.003282771212980151, 0.00484444247558713, 0.007011216599494219, 0.00774676026776433, -0.029740601778030396, 0.012312203645706177, 0.010435299016535282, 0.015623961575329304, 0.025667937472462654, 0.0233055017888546, 0.00900044571608305, 0.018305253237485886, 0.015783390030264854, -0.010348337702453136, 0.020319845527410507, 0.005525635555386543, 0.01565294899046421, 0.00950771663337946, -0.0040617953054606915, -0.008036629296839237, -0.004471235908567905, -0.007185138296335936, -0.010319351218640804, -0.0055908565409481525, -0.0006168783293105662, -0.02142135053873062, -0.019290810450911522, 0.007833721116185188, 0.003956717438995838, 0.0011540426639840007, -0.01141360867768526, 0.009297561831772327, 0.017986396327614784, -0.0002559003478381783, -0.018696576356887817, 0.013138331472873688, 0.030610209330916405, 0.004467612132430077, -0.006337270140647888, 0.020116938278079033, -0.005960439797490835, 0.023798279464244843, 0.01246438454836607, 0.0044603655114769936, -0.014486224390566349, -0.010609220713376999, -0.006576412357389927, 0.024291057139635086, 0.00294036278501153, 0.003541841870173812, 0.013783290982246399, -0.009043925441801548, -0.005348090548068285, -0.005188662558794022, 0.00914537999778986, 0.004032808355987072, -0.03249436244368553, 0.0026088247541338205, 0.008717822842299938, -0.00545679172500968, 0.006779321003705263, -0.019827067852020264, -0.00268310378305614, 0.015870351344347, 0.009754105471074581, -0.0201314315199852, -0.006993099581450224, 0.006793814245611429, -0.005170545540750027, -0.012515111826360226, 0.019000940024852753, 0.0007627189042977989, -0.0061307381838560104, -0.005985803436487913, 0.009312055073678493, -0.005101701710373163, -0.01246438454836607, -0.011355634778738022, -0.026783933863043785, 7.37128866603598e-05, -0.0173196978867054, 0.006569165736436844, 0.007500370964407921, -0.023682331666350365, -0.007272099144756794, -0.004916910082101822, 0.010080209001898766, 0.004250210244208574, 0.0009891793597489595, 0.022957658395171165, -0.015565987676382065, 0.010406311601400375, -0.02197210118174553, -0.022160517051815987, 0.0017310639377683401, -0.005268376786261797, 0.003177693346515298, -0.0015825058799237013, -0.0018913979874923825, -0.0064822048880159855, -0.009804832749068737, -0.008464186452329159, 0.015102196484804153, -0.0014348536496981978, -0.013986199162900448, 0.016855906695127487, -0.0031613882165402174, -0.005782894790172577, -0.01749361865222454, 0.0036269910633563995, -0.006051023956388235, 0.01188464555889368, -0.0159138310700655, 0.017290711402893066, -0.009710625745356083, 0.014805080369114876, -0.0005992144579067826, 0.019131381064653397, -0.023363474756479263, 0.026465076953172684, 0.012594826519489288, -0.017305204644799232, 0.009225093759596348, 0.01253685262054205, 0.006790190935134888, -0.011493322439491749, -0.027320193126797676, -0.004819078836590052, 0.011587529443204403, 0.030001483857631683, -0.006362633779644966, 0.009804832749068737, -0.008203304372727871, -0.0040038214065134525, -0.023175058886408806, -0.004253833554685116, 0.004576313309371471, -0.02597229927778244, -0.0022265594452619553, -0.012225242331624031, -0.0044205086305737495, 0.0020906832069158554, 0.0009764975984580815, -0.017754502594470978, -0.004742988385260105, 0.01717476360499859, -0.007398916874080896, -0.0026849154382944107, -0.014348535798490047, 0.009094652719795704, 0.020841611549258232, -0.008696082048118114, 0.023899734020233154, -0.01442825049161911, 0.00560897309333086, -0.00966714508831501, -0.02352290228009224, 0.006830048281699419, 0.0010009553516283631, 0.04046577215194702, -0.009312055073678493, -0.003942224197089672, -0.009558443911373615, -0.026856401935219765, 0.02968262881040573, -0.03568292409181595, -0.013776044361293316, 0.016189206391572952, 0.004547326359897852, 0.011993346735835075, 0.0005865326384082437, 0.01858063042163849, -0.00756559194996953, -0.010761401616036892, 0.006420607678592205, -0.009536704048514366, 0.022537346929311752, -0.01821829192340374, 0.013718070462346077, 0.00936278235167265, -0.015232637524604797, -0.007235865108668804, 0.009783092886209488, 0.003739315550774336, -0.010986050590872765, -1.244824943569256e-05, -0.011949867010116577, 0.018203798681497574, -0.01645008847117424, -0.010638207197189331, -0.004362534731626511, -0.000518141605425626, -0.014022433198988438, -0.006989476270973682, -0.007804734166711569, 0.009833820164203644, -0.0020345209632068872, 0.00457268999889493, -0.008159823715686798, -0.026218688115477562, 0.006949619390070438, -0.01103677786886692, 0.005974933505058289, -0.0072757224552333355, 0.016681984066963196, 0.004608923569321632, -0.004623417276889086, 0.0023914226330816746, -0.004094405565410852, -0.001992852194234729, -0.03159576654434204, 0.017218243330717087, -0.008362732827663422, 0.003233855590224266, -0.0005412405589595437, 0.0017084178980439901, -0.016464583575725555, -0.006974983029067516, 0.023276513442397118, -0.0038842500653117895, 0.011522308923304081, -0.0007468666881322861, 0.0033099462743848562, -0.007420657202601433, 0.006641632877290249, -0.020841611549258232, -0.03626266494393349, 0.01338472031056881, -0.0005244824569672346, 0.0016640316462144256, 0.0047647287137806416, 0.02558097615838051, -0.01329051237553358, -0.005967686418443918, 0.014710872434079647, 0.011935372836887836, -0.02434903010725975, 0.005855362396687269, 0.004786468576639891, -0.02287069708108902, 0.03968312218785286, -0.00018422560242470354, -0.03707429766654968, -0.007761253509670496, -0.005329973995685577, 0.030059458687901497, -0.021725712344050407, -0.00950771663337946, 0.015029729343950748, -0.022175010293722153, 0.02582736499607563, -0.020334338769316673, -0.011283166706562042, 0.0051234420388937, -0.007493124343454838, -0.012123788706958294, 0.009138133376836777, -0.0060075437650084496, -0.005895219277590513, 8.277130837086588e-05, 0.024986743927001953, 0.01831974647939205, 0.010116443037986755, -0.007177891209721565, 0.016218192875385284, 0.0026885387487709522, 0.025305600836873055, -0.012667293660342693, -0.027494113892316818, -0.015812376514077187, 0.01858063042163849, -0.008543901145458221, 0.009681638330221176, -0.017435645684599876, -0.003945847507566214, 0.005145181901752949, 0.0004841725167352706, 0.00615972513332963, -0.01286295522004366, -0.003938600886613131, 0.03701632469892502, 0.0060655176639556885, -0.005384324584156275, -0.023798279464244843, 0.013276019133627415, -0.012978903017938137, -0.005156052298843861, 0.029711615294218063, 0.02001548372209072, -0.01792842335999012, 0.03597279265522957, 0.011225192807614803, -0.010688934475183487, -0.0006549237295985222, 0.003630614373832941, 0.013986199162900448, 0.009797586128115654, 0.007869954220950603, -0.007456890773028135, -0.005750284530222416, 0.0017455574125051498, 0.017508111894130707, -0.018783537670969963, 0.005576362833380699, 0.00048824879922904074, -0.016189206391572952, 0.014652898535132408, -0.024363525211811066, 0.0409005731344223, 0.012449891306459904, 0.007138034328818321, -0.007522111292928457, -0.006663373205810785, 0.006706853397190571, -0.011138232424855232, 0.013638355769217014, 0.015739908441901207, -0.01814582571387291, -0.006543802097439766, -0.022059062495827675, -0.0034983614459633827, -0.008681588806211948, -0.006047400645911694, 0.0366394929587841, -0.02005896344780922, -0.02889998070895672, 0.012007840909063816, 0.0015064150793477893, 0.003145083086565137, -0.02272576279938221, -0.0040038214065134525, -0.030958052724599838, 0.009275821037590504, -0.007869954220950603, -0.014218094758689404, 0.00364329619333148, -0.005500271916389465, -0.0002479742397554219, 0.02994351089000702, 0.00944974273443222, -0.0018189306138083339, -0.0048879231326282024, -0.005369830876588821, -0.008022136054933071, 0.02979857660830021, 0.0118339192122221, -0.005652453750371933, 0.015957310795783997, 0.0180008914321661, -0.023928720504045486, -0.006648879498243332, 0.013109344057738781, 0.011515062302350998, 0.013616615906357765, 0.0032066802959889174, 0.014696379192173481, -0.001300788950175047, -0.0176385547965765, -0.02001548372209072, -0.003804536070674658, -0.016261674463748932, 0.01630515418946743, 0.014319549314677715, 0.009420756250619888, -0.018189305439591408, 0.02658102475106716, -0.0014719931641593575, -0.016189206391572952, -0.01584136299788952, -0.017725514248013496, 0.0060800109058618546, -0.017160268500447273, -0.008413460105657578, 0.005442298483103514, 0.01195711363106966, 0.009754105471074581, 0.008138083852827549, -0.006909762043505907, 0.006101751234382391, -0.01565294899046421, 0.019972002133727074, -0.016870399937033653, 0.0074134101159870625, 0.007623565383255482, 0.005811881739646196, -0.023059111088514328, 0.004489352460950613, 0.01139911450445652, -0.001078857691027224, -0.0026667986530810595, -0.009572937153279781, 0.025638949126005173, -0.0014167367480695248, 0.004695884417742491, -0.019421251490712166, 0.007580085191875696, -0.030175406485795975, 0.037393152713775635, 0.009058419615030289, -0.0010208837920799851, 0.00668149022385478, 0.005152428988367319, 0.00966714508831501, 0.0022229361347854137, -0.008290265686810017, -0.020029976963996887, 0.009246834553778172, -0.044958747923374176, -0.005906089209020138, -0.01802987791597843, 0.005203155800700188, -0.016131233423948288, 0.004293690901249647, 0.006438724230974913, 0.0053517138585448265, 0.00266861030831933, -0.009986001066863537, 0.025856351479887962, -0.009565690532326698, -0.007913434877991676, 0.00752935791388154, -0.030465275049209595, 0.003574452130123973, 0.01756608672440052, 0.0029874667525291443, 0.018276266753673553, 0.019218342378735542, 0.005195909179747105, -0.006920632440596819, -0.02269677445292473, -0.017580579966306686, 0.02982756309211254, -0.005565492901951075, 0.011145479045808315, -0.012254229746758938, 0.003694023471325636, 0.005478532053530216, -0.014102146960794926, -0.00251642893999815, -0.027624554932117462, 0.009101899340748787, 0.007297462318092585, 0.004217599984258413, -0.002646869979798794, -0.006594529375433922, -0.022175010293722153, 0.002177644055336714, -0.02759556844830513, -0.025711417198181152, 0.0011857470963150263, 0.008580134250223637, -0.003942224197089672, 0.0007744948379695415, 0.01771102100610733, 0.01742115244269371, 0.01688489317893982, -0.0007287498447112739, -0.0034820563159883022, -0.02434903010725975, -0.025233132764697075, 0.0038842500653117895, 0.0005195003468543291, 0.009645405225455761, 0.014007939025759697, -0.008159823715686798, 0.013848511502146721, -0.03684240207076073, 0.012210749089717865, -0.007123541086912155, -0.006525685079395771, 0.01839221455156803, 0.008667095564305782, 0.013681836426258087, 0.0014837690396234393, 0.0215372983366251, 0.008464186452329159, 0.011891893111169338, -0.04232093319296837, 0.004351664800196886, -0.013899238780140877, -0.0030617457814514637, 0.0012844838201999664, 0.016566036269068718, -0.011667244136333466, -0.007199631538242102, 0.0201314315199852, 0.0061379848048090935, -0.004195859655737877, -0.011602023616433144, 0.0034621278755366802, -0.00926857441663742, -0.014181860722601414, -0.01105851773172617, 0.024073654785752296, -0.006000296678394079, -0.0072829690761864185, -0.009029432199895382, 0.0065220617689192295, 0.016276167705655098, -0.00966714508831501, 0.011949867010116577, 0.006746710743755102, 0.003873380133882165, -0.03171171247959137, 0.00719600822776556, 0.035624951124191284, 0.0019185731653124094, -0.013138331472873688, -0.004771975334733725, -0.009319301694631577, 0.006612645927816629, 0.024435991421341896, 0.004340794403105974, -0.0077974870800971985, -0.0025635326746851206, -0.0008193340036086738, 0.0016051519196480513, 0.008906237781047821, -0.007826474495232105, 0.00100548448972404, 0.03765403851866722, -0.011442595161497593, 0.021914128214120865, -0.002311708638444543, -0.01210204791277647, -0.02752310037612915, -0.0015018859412521124, -0.00396758783608675, -0.028189800679683685, -0.009188860654830933, -0.008167070336639881, -0.0020218391437083483, 0.003982081077992916, 0.008391719311475754, -0.007072813808917999, -0.01073241513222456, 0.006369880400598049, -0.020609715953469276, -0.0023859876673668623, 0.020334338769316673, 0.0018307064892724156, 0.016870399937033653, -0.013160071335732937, 0.027073802426457405, 0.0064822048880159855, -0.01843569427728653, -0.023928720504045486, 0.00044205086305737495, -0.013942718505859375, 0.014464483596384525, -0.004728494677692652, -0.01824728026986122, -0.007130787707865238, -0.029523199424147606, 0.015363078564405441, -0.012935422360897064, 0.00490603968501091, 0.0004986659623682499, 0.002175832400098443, 0.014986248686909676, 0.01879803091287613, 0.00402193795889616, 0.027247725054621696, 0.009254081174731255, -0.02272576279938221, 0.0031414597760885954, 0.007543851621448994, -0.008551147766411304, 0.007130787707865238, 0.0024928769562393427, 0.013964459300041199, 0.007235865108668804, 0.006949619390070438, 0.006739464122802019, -0.010268623940646648, 0.009478730149567127, -0.013044123537838459, -0.02805935963988304, 0.006445971317589283, -0.0004968543071299791, -0.008130837231874466, 0.017740007489919662, -0.0020852480083703995, 0.012413657270371914, 0.00259251962415874, -0.013123837299644947, 0.0018805278232321143, 0.01637762226164341, -0.0013352109817788005, 0.00352191342972219, -0.01579788327217102, 0.03684240207076073, 0.0011730652768164873, 0.0009402639116160572, 0.00667424313724041, 0.011391867883503437, 0.007065567187964916, 0.020363327115774155, -0.004431378562003374, -0.03011743165552616, -0.005170545540750027, 0.0021903258748352528, 0.007500370964407921, -0.0084786806255579, -0.03376978635787964, -0.0134209543466568, 0.02839270979166031, 0.007127164397388697, -0.012268722988665104, 0.004014691337943077, -0.015334092080593109, 0.004742988385260105, -0.01853714883327484, -0.03008844517171383, 0.002177644055336714, -0.016797931864857674, 0.00713441101834178, -0.02434903010725975, -0.005152428988367319, 0.009768599644303322, 0.016942868009209633, -0.003090732730925083, 0.0003602986107580364, -0.005710427649319172, 0.011529555544257164, -0.00402193795889616, 0.01282672118395567, 0.012239736504852772, -0.020537247881293297, 0.02345043607056141, 0.005072714760899544, 0.01576889678835869, -0.004072665236890316, 0.005866232328116894, -0.004348041024059057, 0.012884695082902908, 0.02723323181271553, -0.017667541280388832, -0.015232637524604797, 0.0254360418766737, -0.02742164582014084, -0.012739760801196098, -0.00361249758861959, 0.017653048038482666, 0.013276019133627415, 0.009768599644303322, -0.003074427368119359, 0.005898842588067055, 0.007609072141349316, -0.00247113686054945, 0.001300788950175047, -0.009094652719795704, 0.008638108149170876, 0.02524762600660324, 0.0011703477939590812, 0.03640759736299515, 0.03011743165552616, -0.008913484402000904, -0.004931403324007988, -0.0010752343805506825, 0.006228568963706493, -0.0038081593811511993, 0.014073160476982594, -0.0032193621154874563, 0.009739612229168415, -0.008152577094733715, 0.006290166173130274, 0.00944974273443222, 0.0026885387487709522, 0.0044386256486177444, -0.014239834621548653, -0.008210550993680954, -0.029537692666053772, -0.012312203645706177, -0.00981207937002182, 0.007435150444507599, 0.017522606998682022, 0.010558493435382843, -0.00015036975673865527, 0.011993346735835075, -0.023001138120889664, 0.0016078694025054574, -0.044639889150857925, -0.015087703242897987, -0.010797635652124882, 0.007855460979044437, -0.000741431606002152, -0.012674540281295776, 0.007877201773226261, 0.008913484402000904, -0.001546272193081677, 0.01368908304721117, 0.006011167075484991, -0.026450583711266518, 0.002139598596841097, 0.002420409582555294, -0.009703379124403, -0.021957607939839363, -0.003079862566664815, 0.009957014583051205, 0.003407777287065983, -0.036233678460121155, -0.021044518798589706, -0.010870102792978287, -0.001139549189247191, -0.010355585254728794, 0.0005770213319920003, -0.002413162961602211, 0.0021232934668660164, -0.005264753475785255, 0.009022185578942299, -0.002074378076940775, 0.03205955773591995, -0.0162326879799366, -0.010377325117588043, -0.0044205086305737495, -0.0026160713750869036, 0.00022362972958944738, -0.006022037006914616, 0.02211703546345234, -0.00677207438275218, -0.011645503342151642, 0.013123837299644947, 0.010203403420746326, -0.008123590610921383, 0.004250210244208574, 0.002331637078896165, -0.00963091105222702, -0.022537346929311752, -0.01778348907828331, 0.02463890053331852, 0.024392511695623398, 0.009558443911373615, 0.011877398937940598, 0.0001937369379447773, 0.02611723355948925, 0.010101948864758015, 0.005532882642000914, 0.023682331666350365, -0.008920731022953987, -0.00752935791388154, -0.02214602380990982, -0.018696576356887817, 0.012710773386061192, -0.0048879231326282024, -0.03910338506102562, -0.014768846333026886, -0.014094900339841843, -0.024117134511470795, 0.0044205086305737495, -0.014073160476982594, 0.006638009566813707, -0.01676894538104534, 0.020508261397480965, 0.007011216599494219, 0.009710625745356083, 8.973496733233333e-06, -0.018479175865650177, -0.008732316084206104, -0.001452970434911549, 0.02236342616379261, -0.014507964253425598, -0.0021921375300735235, 0.012957163155078888, 0.020464779809117317, -0.006398867350071669, 0.008732316084206104, 0.005685064010322094, -0.008580134250223637, 0.007246735505759716, -0.015290611423552036, -0.025117184966802597, 0.006703230086714029, 0.0009366405429318547, -0.004406014923006296, 0.014486224390566349, -0.011812178418040276, 0.018913978710770607, -0.023783786222338676, -0.005453168414533138, 0.009072912856936455, 0.008862757124006748, -0.005380700808018446, -0.012131035327911377, -0.005692310631275177, 0.00275919446721673, 0.00914537999778986, 0.04275573790073395, 0.031363870948553085, 0.0024475848767906427, 0.0011667243670672178, 0.0048625594936311245, -0.035509005188941956, 0.008862757124006748, -0.01179768517613411, 5.7945573644246906e-05, -0.005710427649319172, 0.01286295522004366, -0.011870152316987514, 0.029247824102640152, 0.020899584516882896, -0.010080209001898766, 0.01662401109933853, -0.013558642007410526, -0.00010077491606352851, 0.0019294433295726776, 0.009442496113479137, -0.012529605068266392, -0.028972448781132698, -0.0021033650264143944, 0.02008794993162155, 0.024175109341740608, 0.006206828635185957, 0.005485778674483299, 0.00028194329934194684, -0.022885190322995186, 0.014000692404806614, 0.016783438622951508, -0.0064894515089690685, -0.0032084921840578318, 0.016392115503549576, 0.003746562171727419, 0.01350791472941637, 0.014326795935630798, 0.007076437119394541, 0.008167070336639881, -0.0004610735340975225, -0.007884448394179344, -0.025638949126005173, -0.004938649944961071, -0.001152230892330408, -0.016406608745455742, -0.0068662818521261215, 0.033161062747240067, -0.0118339192122221, -0.0068662818521261215, 0.0031613882165402174, -0.0007776652928441763, 0.003329874947667122, -0.007580085191875696, 0.013573135249316692, -0.024812821298837662, 0.017015334218740463, 0.009101899340748787, -0.014805080369114876, -0.01320355199277401, -0.0076670460402965546, 6.857506377855316e-06, 0.0030400054529309273, 0.0038298997096717358, 0.02904491499066353, -0.0023606240283697844, 0.025856351479887962, -0.000790800026152283, 0.015464533120393753, 0.01473261322826147, 0.0016839600866660476, 0.011210699565708637, -0.011848412454128265, 0.005235766526311636, 0.004612546879798174, -0.005913336295634508, -0.00393135379999876, -0.010232389904558659, -0.02139236219227314, -0.007891695015132427, 0.01033384446054697, 0.013254279270768166, 0.011986100114881992, 0.001992852194234729, 0.005300987046211958, -0.017363177612423897, 0.01850816234946251, -0.00533722061663866, 0.014065912924706936, 0.0003559958713594824, -0.008051122538745403, -0.00668149022385478, -0.0017192879458889365, -0.01426882203668356, 0.01176145114004612, 0.022392412647604942, -0.0036777181085199118, -0.012449891306459904, 0.02243589237332344, -0.0008754961891099811, 0.0173196978867054, -0.0028135450556874275, -0.002478383481502533, -0.0060329074040055275, 0.0006562824710272253, 0.0022501114290207624, -0.04666897654533386, 0.0006639821222051978, -0.00918161403387785, 0.006141608115285635, 0.020435793325304985, -0.006782944314181805, 0.015508013777434826, 0.0013379284646362066, 0.0001251194189535454, -0.019464731216430664, 0.018406707793474197, 0.0007898941403254867, 0.023928720504045486, 0.029914524406194687, 0.004279197193682194, -0.002163150580599904, -0.020363327115774155, 0.010051221586763859, -0.0016884893411770463, 0.013602122664451599, 0.01246438454836607, 0.01280498132109642, 0.015623961575329304, 0.002809921745210886, -0.002286344999447465, 0.010797635652124882, -0.003963964059948921, 0.001952995196916163, 0.0017808852717280388, -0.007268475368618965, 0.0013080356875434518, 0.02265329472720623, 0.012884695082902908, 0.008594628423452377, -0.011138232424855232, 0.0061778416857123375, 0.014326795935630798, 0.02705930918455124, 0.0009008597698993981, 0.02752310037612915, -0.014036926440894604, -0.019682133570313454, 0.02589983306825161, 0.027117284014821053, -0.00789894163608551, 0.0027229608967900276, 0.007630812469869852, -0.006627139635384083, 0.0003136477607768029, 0.0007953292224556208, -0.01756608672440052, -0.02640710398554802, 0.03330599516630173, 0.011319400742650032, -0.0084786806255579, 0.0008700611651875079, -0.000947510648984462, 0.008203304372727871, 0.013261525891721249, 0.009456989355385303, -0.015044222585856915, -0.00842070672661066, -0.008529407903552055, -0.014384769834578037, -0.0048516895622015, 0.0006689642323181033, -0.010594727471470833, -0.008754055947065353, -0.0069315023720264435, -0.007109047379344702, 0.007181514985859394, -0.00355271203443408, -0.01821829192340374, -0.00430093752220273, 0.012812227942049503, -0.0002284986258018762, 0.0022501114290207624, -0.005898842588067055, 0.013797784224152565, 0.010558493435382843, -0.011478829197585583, 0.0057031805627048016, 0.014805080369114876, 0.002420409582555294, -0.007083683740347624, 0.014464483596384525, 0.02347942255437374, -0.00015648419503122568, -0.03249436244368553, 0.00294036278501153, 0.019972002133727074, 0.004681391175836325, 0.0026758569292724133, -0.0626697689294815, 0.005572739522904158, 0.00042778384522534907, 0.004880676046013832, -0.027146270498633385, -0.004090782254934311], "6dd6e451-5c6d-4da8-91e6-5b809cbb2260": [-0.03769364580512047, -0.02115865983068943, -0.01852530986070633, 0.014008808881044388, -0.03184515982866287, -0.014322667382657528, -0.010441537946462631, -0.0008114391821436584, -0.03227384388446808, 0.004505018703639507, 0.03463161364197731, 0.011873039416968822, -0.004539466463029385, -0.039990171790122986, -0.01271509937942028, 0.012232828885316849, -0.023592976853251457, 0.01624409481883049, 0.017958832904696465, -0.023256152868270874, 0.0732438713312149, 0.010058783926069736, -0.03692813962697983, 0.004279193468391895, 0.005213113967329264, -0.0028228131122887135, -0.01638188585639, 0.0074330889619886875, -0.038857221603393555, 0.013717914931476116, 0.022842777892947197, 0.020224738866090775, 0.018341587856411934, 0.005377698224037886, 0.014904453419148922, -0.05248327553272247, 0.023746078833937645, 0.05282009765505791, -0.03426416963338852, -0.032916873693466187, -0.04473632574081421, -0.002750089857727289, -0.01802007481455803, 0.009476996958255768, -0.04635920375585556, 0.017805730924010277, 0.01737704686820507, -0.027910446748137474, 0.019612332805991173, 0.006659925449639559, 0.02192416787147522, -0.03965334966778755, 0.008634937927126884, -0.00687044020742178, 0.02319491282105446, 0.005932691972702742, 0.02230692282319069, 0.0511665977537632, -0.018800893798470497, -0.024205384775996208, -0.01875496283173561, -0.012546687386929989, -0.019750123843550682, 0.008083771914243698, -0.01070181094110012, -0.019474539905786514, 0.017698559910058975, 0.008696178905665874, -0.0339885838329792, -0.0008344044326804578, 0.026394739747047424, 0.039990171790122986, -0.032825011759996414, 0.013319850899279118, -0.012424205429852009, 0.0037165444809943438, 0.05294257774949074, -0.00740246893838048, 0.004776773974299431, 0.022643746808171272, -0.05799493566155434, 0.009798510931432247, 0.022582504898309708, -0.0036055457312613726, 0.06699731945991516, 0.008657903410494328, -0.05364684760570526, -0.052850719541311264, -0.01379446592181921, -0.01687181182205677, 0.015210657380521297, -0.00196735723875463, 0.012761029414832592, -0.021388312801718712, -0.012845235876739025, 0.01939798891544342, 0.018846822902560234, 0.021816996857523918, 0.02659377083182335, -0.033957965672016144, 0.004202642478048801, 0.03184515982866287, -0.0531875416636467, -0.004688740707933903, -0.0002487903111614287, -0.007050334941595793, 0.010525744408369064, -0.014292046427726746, -0.023914489895105362, 0.07306014746427536, 0.011842419393360615, -0.023133672773838043, 0.01610630191862583, 0.017989452928304672, -0.042531661689281464, -0.06460893154144287, -0.004217952955514193, -0.024863721802830696, 0.007612983696162701, -0.02431255578994751, 0.009867406450212002, 0.033559899777173996, 0.02584357187151909, -0.005048529710620642, -0.031018411740660667, 0.015677617862820625, -0.005504007451236248, -0.028446301817893982, 0.013871016912162304, 0.011857729405164719, -0.016305334866046906, -0.009063622914254665, -0.018678411841392517, 0.04687974974513054, 0.004168194718658924, 0.00525521719828248, 0.016795260831713676, 0.046940989792346954, -0.05471855774521828, 0.035060297697782516, -0.028400370851159096, -0.037846747785806656, -0.025399576872587204, 0.002956777112558484, 0.0012678736820816994, -0.016458436846733093, -0.04522625356912613, 0.04424640163779259, -0.012186897918581963, 0.021357690915465355, -0.014445148408412933, -0.0012401239946484566, 0.035856425762176514, -0.0068206824362277985, 0.01002050843089819, 0.006189137697219849, -0.012814614921808243, 0.010035818442702293, 0.019566401839256287, 0.005500179715454578, 0.02216913178563118, -0.052850719541311264, 0.003890697844326496, 0.04574679955840111, 0.06522133946418762, 0.0226590558886528, 0.03827543184161186, 0.014047084376215935, -0.03726496174931526, 0.02504744380712509, 0.023210221901535988, -0.012883510440587997, 0.0054848697036504745, 0.006966128945350647, -0.0002485511067789048, -0.017530148848891258, 0.03224322572350502, 0.023363323882222176, 0.012370619922876358, -0.04446074366569519, 0.005756624974310398, -0.031140891835093498, -0.0069163707084953785, -0.018846822902560234, 0.0036342523526400328, 0.028675954788923264, 0.009806166402995586, -0.0014018377987667918, 0.0010133420582860708, 8.653836266603321e-05, -0.013733225874602795, 0.01852530986070633, -0.011949590407311916, -0.0019577883649617434, 0.006418790202587843, 0.012684478424489498, 0.0005277225282043219, -0.0113295279443264, -0.0005009297165088356, -0.017040222883224487, -0.0026084708515554667, -0.054841041564941406, -0.02957925572991371, 0.039745211601257324, -0.012883510440587997, 0.011719937436282635, -0.004914565477520227, -0.07875553518533707, 0.012209863401949406, -0.036101389676332474, 0.03677503764629364, -0.015677617862820625, 0.03060503676533699, -0.0039997827261686325, -0.032426945865154266, -0.007792878430336714, -0.02631818875670433, 0.032947491854429245, 0.010242505930364132, -0.03227384388446808, -0.0006932637770660222, 0.013350470922887325, 0.008726798929274082, -0.005247561726719141, -0.03888783976435661, -0.022460024803876877, 0.0034007723443210125, 0.042286697775125504, -0.03662193566560745, 0.00824452843517065, 0.049298759549856186, 0.0029414671007543802, -0.002241026610136032, -0.04424640163779259, -0.019459230825304985, 0.002369249239563942, -0.002763486234471202, 0.007547915447503328, 0.024251313880085945, -0.004114609211683273, 0.014008808881044388, 0.029793597757816315, 0.014781972393393517, -0.014889143407344818, 0.029502704739570618, 0.01702491194009781, 0.018464069813489914, 0.0168871209025383, -0.006016897968947887, -0.027543002739548683, 0.025399576872587204, 0.012745719403028488, 0.005810210946947336, -0.03845915570855141, -0.03163081780076027, 0.05202396959066391, -0.010969739407300949, -0.030941860750317574, -0.004210297483950853, -0.04292972758412361, -0.012684478424489498, 0.0024668516125530005, 0.031309302896261215, 0.013381091877818108, 0.031293995678424835, -0.022827468812465668, 0.007134540937840939, -0.02735927887260914, -0.01838751882314682, 0.04041885584592819, -0.008359354920685291, -0.01613692194223404, 0.006537443958222866, -0.0011128581827506423, -0.016090992838144302, 0.011696972884237766, 0.003930887207388878, -0.018724342808127403, -0.03368237987160683, 0.01800476387143135, -0.000250943296123296, -0.014728386886417866, 0.003980644978582859, 0.025874193757772446, -0.025491438806056976, -0.01454466488212347, -0.011796488426625729, 0.0035653566010296345, -0.05306506156921387, 0.001001859433017671, 0.0003442396700847894, -0.002206578617915511, 0.020071636885404587, 0.0026658838614821434, 0.05606585368514061, -0.006074311211705208, 0.017438286915421486, -0.007149850949645042, -0.0428684838116169, 0.0007095308392308652, -0.03215136379003525, 0.008076116442680359, 0.011957244947552681, -0.007945979945361614, 0.012049106881022453, 0.013304540887475014, 0.04525687173008919, 0.03215136379003525, -0.06662987172603607, 0.00687044020742178, 0.021327070891857147, 0.0027711414732038975, -0.00645706569775939, 0.02268967777490616, 0.007528777699917555, 0.02795637585222721, 0.018586549907922745, -0.017208633944392204, -0.021587343886494637, -0.029946699738502502, 0.029410842806100845, 0.01662684790790081, -0.05799493566155434, 0.0037299410905689, 0.0400514118373394, -0.05857672169804573, 0.03649945184588432, -0.0028247269801795483, -0.016473745927214622, -0.007900049909949303, -0.001908987294882536, 0.002275474602356553, -0.02945677377283573, 0.009867406450212002, -0.0168871209025383, -0.03539711982011795, -0.009783200919628143, -0.03806108981370926, 0.0014123634900897741, -0.05211583152413368, -0.019688883796334267, -0.0002332409203518182, 0.0009401403367519379, -0.018081314861774445, 0.039347145706415176, 0.0034773231018334627, -0.021970098838210106, 0.012010831385850906, -0.014935074374079704, -0.0041949874721467495, 0.0010114283068105578, -0.0036533901002258062, 0.009094242937862873, 0.010786017403006554, 0.061148833483457565, -0.03502967581152916, 0.0009123906493186951, -0.028247270733118057, 0.020883075892925262, -0.026425359770655632, 0.023485805839300156, -0.03248818963766098, -0.011635731905698776, -0.003739509731531143, -0.00671351095661521, 0.025613920763134956, -0.038734737783670425, 8.444517152383924e-05, -0.007900049909949303, -0.006893405690789223, -0.029808906838297844, 0.005304974969476461, 0.024787170812487602, -0.031064340844750404, -0.01133718341588974, -0.01348060742020607, 0.05958719551563263, -0.008680867962539196, -0.04057195782661438, 0.02278153784573078, 0.011038634926080704, 0.0006602512439712882, 0.012485446408390999, 0.0012162019265815616, 0.06516009569168091, 0.023868560791015625, 0.007038852199912071, -0.007662741933017969, 0.0076589141972362995, -0.001001859433017671, -0.023746078833937645, 0.023409254848957062, -0.0432971715927124, -0.023531736806035042, -0.045654937624931335, 0.02772672474384308, -0.013518882915377617, -0.0007152721518650651, -0.0028897952288389206, -0.04044947773218155, 0.022505953907966614, 0.006131724454462528, 0.013136128894984722, -0.019933845847845078, 0.010364986956119537, -0.04746153578162193, -0.009308584965765476, -0.008313423953950405, 0.01001285295933485, 0.03527463972568512, 0.00708861043676734, -0.012891165912151337, 0.01826503686606884, 0.024082902818918228, 0.03815295174717903, -0.0006147991516627371, -0.0012219431810081005, 0.019428610801696777, -0.021480172872543335, -0.037601787596940994, 0.0151187963783741, 0.056494541466236115, -0.013495917432010174, 0.035580843687057495, 0.005714522209018469, 0.026777492836117744, 0.02910463884472847, -0.013779155910015106, -0.013082543388009071, -0.003819888224825263, 0.0038505084812641144, 0.02317960187792778, -0.020607493817806244, 0.017943523824214935, 0.014866177923977375, -0.021893547847867012, -0.01749952882528305, 0.01158980093896389, 0.022980570793151855, 0.013725570403039455, 0.030834689736366272, 0.0084971459582448, -0.003980644978582859, 0.014184875413775444, -0.018111934885382652, -0.0246799997985363, -0.033468037843704224, 0.01610630191862583, 0.0010516175534576178, 0.006491513457149267, 0.0038390259724110365, 0.025629229843616486, -0.0584542416036129, 0.02382262982428074, -0.0039997827261686325, -0.0037930954713374376, 0.0020534771028906107, -0.025782331824302673, -0.002507040975615382, -0.018831513822078705, -0.027925755828619003, 0.0011473060585558414, -0.018433447927236557, 0.006606339942663908, -0.010058783926069736, -0.041490569710731506, 0.0047117057256400585, 0.0329781137406826, 0.00275583122856915, -0.004738498479127884, 0.025721091777086258, -0.02884436585009098, -0.016933051869273186, 0.025292405858635902, -0.004328951705247164, -0.010219540446996689, 0.006384342443197966, 0.003471581730991602, 0.0028094167355448008, -0.008925830945372581, -0.016152232885360718, -0.033468037843704224, -0.01965826191008091, 0.02644066885113716, 0.018831513822078705, -0.013886326923966408, 0.0067900619469583035, -0.04991116374731064, 0.04684913158416748, -0.009928647428750992, 0.019933845847845078, -0.021388312801718712, 0.02555267885327339, 0.0012898821150884032, -0.005902071949094534, -0.023746078833937645, -0.01939798891544342, -0.025858882814645767, -0.01850999891757965, -0.016810569912195206, 0.0302375927567482, -0.04776773974299431, 0.004527983721345663, 0.012362965382635593, -0.028247270733118057, -0.007567053195089102, -0.01866310089826584, 0.015562791377305984, -0.022582504898309708, -0.026547839865088463, -0.04317468777298927, -0.012454826384782791, -0.024389106780290604, 0.020714664831757545, -0.019352059811353683, 0.0032514980994164944, -0.015662306919693947, 0.003079258603975177, 0.015394379384815693, -0.021097419783473015, 0.018479378893971443, -0.004394019953906536, -0.0282166488468647, -0.013151438906788826, 0.002045821864157915, -0.01316674891859293, -0.008022530935704708, -0.011038634926080704, -0.009109552949666977, -0.033713001757860184, 0.0024611104745417833, 0.007758430205285549, -0.02256719581782818, 0.013388746418058872, 0.034968435764312744, 0.008007220923900604, 0.0002120698190992698, 0.03827543184161186, -0.0003394552622921765, 0.03662193566560745, -0.019719503819942474, 0.022199751809239388, -0.000448061793576926, -0.025368956848978996, 0.011145805940032005, 0.016458436846733093, 0.0005726961535401642, 0.030283523723483086, -0.006648442707955837, 0.012676823884248734, -0.05024798959493637, 0.00613937946036458, -0.017958832904696465, -0.0002221171307610348, 0.00855838693678379, -0.02180168777704239, -0.001578861614689231, -0.013985843397676945, -0.013649019412696362, -0.008321079425513744, -0.012301724404096603, 0.00582552095875144, 0.026930594816803932, 0.042378559708595276, 0.005576730705797672, -0.022827468812465668, 0.010058783926069736, 0.03386610373854637, -0.006319274194538593, 0.015593411400914192, 0.04397081956267357, -0.016565607860684395, -0.003548132721334696, 0.008236872963607311, -0.007092437706887722, 0.01765262894332409, -0.010104713961482048, 0.015409689396619797, -0.013702604919672012, -0.001752057927660644, 0.03855101764202118, -0.013503572903573513, 0.017958832904696465, -0.017101462930440903, 0.014445148408412933, -0.014284391887485981, -0.046542927622795105, -0.017698559910058975, -0.009377481415867805, 0.024128833785653114, 0.005017909221351147, 0.004991116467863321, 0.014912108890712261, -0.007635949179530144, -0.023991040885448456, 0.008650247938930988, 0.0006506823701784015, -0.013687294907867908, 0.019872605800628662, 0.003957679960876703, 0.022000718861818314, 0.018540620803833008, 0.0315389558672905, -0.023026499897241592, -0.025537369772791862, 0.007984255440533161, -0.00204773573204875, -0.009599478915333748, 0.009928647428750992, 0.012041451409459114, -0.02999262884259224, 0.03270253166556358, 0.035611461848020554, -0.023654216900467873, 0.053218163549900055, 0.007456054445356131, 0.011758212931454182, 0.01812724582850933, 0.015455620363354683, -0.026486599817872047, 0.01573885791003704, -0.012952406890690327, 0.06448645144701004, -0.04638982564210892, 0.03190639987587929, -0.019673572853207588, -0.0008999511483125389, 0.005706867203116417, -0.024205384775996208, 0.0024611104745417833, 0.009691339917480946, 0.0005722177447751164, 0.0094540324062109, -0.04749215766787529, 0.013748535886406898, -0.0168871209025383, 0.029640495777130127, 0.03233508765697479, -0.018326276913285255, -0.01786697283387184, -0.016734018921852112, 0.000580351275857538, -0.010939118452370167, 0.05931160971522331, -0.008726798929274082, -0.007854118943214417, -0.01202614139765501, 0.015164726413786411, 0.020439080893993378, -0.0024630241096019745, -0.039347145706415176, 0.008030185475945473, -0.0013042354257777333, 0.02379200980067253, -0.00023156637325882912, -0.030038559809327126, -0.014598250389099121, 0.015195347368717194, 0.017530148848891258, -0.011092220433056355, 0.02722148783504963, -0.02846161276102066, 0.008987071923911572, 0.012271104380488396, -0.014047084376215935, 0.01038795243948698, -0.0011693144915625453, 5.762247019447386e-05, -0.010112369433045387, 0.01624409481883049, 0.0063613769598305225, -0.0011291252449154854, -0.007766085211187601, 0.02933429181575775, -0.004658120218664408, -0.015386723913252354, 0.024894341826438904, -0.0025663678534328938, -0.014559974893927574, -0.039255283772945404, -0.011245322413742542, -0.0220466498285532, -0.014345632866024971, 0.0037184583488851786, -0.016917740926146507, -0.019841983914375305, 6.734084308845922e-05, 0.026241637766361237, -0.015937890857458115, 0.015141761861741543, 0.0036495625972747803, -0.00012182352656964213, -0.01889275386929512, -0.002507040975615382, -0.01964295282959938, -0.014506389386951923, -0.017346426844596863, -0.023577667772769928, 0.02859940379858017, -0.0110233249142766, -0.019244888797402382, 0.029808906838297844, 0.00556907569989562, -0.017790421843528748, 0.005155700724571943, 0.029303671792149544, -0.024220693856477737, -0.036836277693510056, 0.0072761597111821175, 0.014873833395540714, 0.019719503819942474, 0.023991040885448456, 0.005021736957132816, 0.0018094711704179645, -0.015072865411639214, 0.014950384385883808, -0.005496352445334196, -0.0011157288681715727, -0.004788256715983152, 0.011559180915355682, -0.003624683478847146, 0.05376932770013809, -0.01702491194009781, -0.03236570581793785, -0.0308499988168478, 0.004753808956593275, 0.00964540895074606, 0.01573885791003704, -0.001454466488212347, -0.005622661206871271, 0.032304465770721436, -0.018464069813489914, -0.0025395750999450684, 0.0028553472366183996, -0.006212102714926004, 0.0038677325937896967, 0.004355744458734989, 0.014353287406265736, 0.02445034682750702, -0.018555929884314537, 0.027895135805010796, -0.0016209646128118038, -0.009055967442691326, -0.016182852908968925, 0.01763731986284256, 0.004696395713835955, 0.02807885780930519, 0.020117567852139473, 0.03968396782875061, 0.03048255480825901, 0.028262579813599586, -0.0368056558072567, 0.030528485774993896, 0.01587664894759655, -0.010778361931443214, 0.02152610383927822, -0.004658120218664408, 0.014498733915388584, -0.00918610394001007, 0.01840282790362835, 0.008374664932489395, 0.01039560791105032, 0.009538237936794758, -0.010732431896030903, -0.0135495038703084, -0.020745284855365753, -0.011268287897109985, 0.03665255382657051, 0.03239632770419121, 0.002528092358261347, 0.013319850899279118, 0.020684044808149338, 0.04819642752408981, 0.02809416875243187, -0.019995085895061493, -0.017974143847823143, 0.018586549907922745, 0.005714522209018469, -0.050707295536994934, -0.0017329202964901924, 0.006342239212244749, -0.026027293875813484, -0.0024266624823212624, -0.02242940478026867, 0.01875496283173561, 0.01328923087567091, 0.04645106568932533, 0.0025319198612123728, -0.03123275376856327, 0.00055116624571383, 0.01171228289604187, 0.003812233218923211, 0.006606339942663908, 0.000457152200397104, -0.01473604142665863, -0.012983026914298534, 0.0009487522765994072, -0.031569577753543854, 0.007632121443748474, 0.007490502204746008, -0.00830576941370964, -0.043511513620615005, 0.021832307800650597, 0.00933155044913292, 0.021449552848935127, 0.004083988722413778, 0.0005827434943057597, 0.02328677289187908, 0.014353287406265736, 0.023914489895105362, -0.015218311920762062, 0.01202614139765501, -0.02017880789935589, 0.02911994978785515, -0.0042638834565877914, 0.007769912946969271, -0.008275148458778858, -0.007976599968969822, -2.9394337616395205e-05, -0.009744925424456596, 0.0016410591779276729, 0.010035818442702293, 0.025139303877949715, 0.0077278101816773415, -0.03450912982225418, -0.006866612937301397, 0.03450912982225418, -0.029533324763178825, 0.0013004078064113855, -0.0005334638408385217, 0.0012171587441116571, -0.01587664894759655, -0.03460099175572395, 0.03441726788878441, 0.001954917795956135, 0.030543796718120575, 0.004179677460342646, -0.022138509899377823, -0.009714305400848389, 0.04320530965924263, -0.019428610801696777, -0.04194987565279007, -0.019306128844618797, -0.012370619922876358, -0.01788228191435337, -0.01610630191862583, 0.02076059579849243, -0.0036840103566646576, 0.038489777594804764, 0.017928212881088257, 0.004317468963563442, -0.039224665611982346, 0.008650247938930988, -0.009415756911039352, -0.009622444398701191, 0.013113163411617279, -0.023501116782426834, 0.021617963910102844, -0.002685021609067917, 0.03112558275461197, 0.008841625414788723, 0.004443777725100517, -0.02870657481253147, -0.008673213422298431, -0.0015176209853962064, -0.01196490041911602, -0.017223944887518883, -0.014912108890712261, -0.010870222933590412, 0.001361648552119732, -0.025782331824302673, 0.002916587982326746, -0.004367226734757423, 0.011788833886384964, -0.0027864514850080013, -0.02556798979640007, 0.0063996524550020695, 0.004619844723492861, -0.029655804857611656, -0.015585756860673428, 0.003429478732869029, -0.0022888709791004658, 0.008275148458778858, 0.0059709674678742886, -0.048410769551992416, 0.0013702604919672012, 0.031661439687013626, -0.022613126784563065, 0.005580557975918055, 0.00661016721278429, -0.014598250389099121, 0.031661439687013626, -0.03628510981798172, -0.0410618856549263, -0.011367803439497948, -0.0194132998585701, -0.008458870463073254, -0.025675160810351372, -0.01002050843089819, -0.014246116392314434, -0.0002571630757302046, -0.020056327804923058, -0.036223869770765305, 0.006177654955536127, 0.01903054490685463, -0.04002079367637634, 0.0027252109721302986, 0.0019826674833893776, 0.014261426404118538, -0.005542282946407795, 0.007984255440533161, 0.046420443803071976, 0.008481835946440697, -0.036866895854473114, -0.004275365732610226, 0.016703398898243904, 0.0065642367117106915, -0.025368956848978996, -0.008650247938930988, -0.0016582831740379333, 0.013189714401960373, 0.003942369483411312, 0.01610630191862583, 0.0017463166732341051, 0.017331115901470184, -0.013962877914309502, 0.01133718341588974, 0.007601500954478979, 0.0012362964916974306, 0.008856935426592827, -0.03285563364624977, 0.008458870463073254, 0.003972989972680807, 0.012003175914287567, 0.05407553166151047, 0.0014755179872736335, 0.024879030883312225, 0.010472158901393414, -0.05113597959280014, -0.029426153749227524, -0.008428250439465046, -0.008680867962539196, 0.035611461848020554, -0.027037765830755234, -0.0029261568561196327, -0.017070842906832695, -0.030589725822210312, 0.021112728863954544, -0.01013533491641283, 0.0019252542406320572, -0.009002381935715675, 0.026547839865088463, 0.019688883796334267, -0.03086530975997448, -0.02330208383500576, 0.03778550773859024, -0.009913337416946888, -0.005347078200429678, 0.0020649596117436886, 0.007287642452865839, -0.002905105473473668, -0.008688523434102535, 0.020561562851071358, 6.710161687806249e-05, -0.04243979975581169, 0.015049900859594345, -0.06852833926677704, 0.02227630279958248, -0.00354430521838367, 0.0189080648124218, -0.019489850848913193, -0.03359052166342735, -0.008719143457710743, 0.020622802898287773, 0.017331115901470184, -0.011069254949688911, -0.014016463421285152, -0.023975731804966927, -0.003396944608539343, -0.012125656940042973, 0.032181985676288605, -0.014521699398756027, -0.01929081790149212, -0.026869354769587517, -0.0013769586803391576, 0.0063307564705610275, 0.006690545938909054, 0.01726987585425377, -0.008198597468435764, 0.015815408900380135, 0.009094242937862873, -0.03919404372572899, 0.012584962882101536, 0.0003050073573831469, 0.015624032355844975, -0.024909652769565582, 0.01589195989072323, -0.005802555475383997, 0.00037462080945260823, -0.030895929783582687, -0.013358126394450665, -0.03147771582007408, -0.02921180985867977, 0.028798436746001244, 0.006728820968419313, 0.0008875115890987217, 0.017974143847823143, 0.004505018703639507, 0.015953199937939644, 0.013143783435225487, -0.008765074424445629, -0.014705421403050423, -0.007368020713329315, -0.005477214697748423, 0.01927550882101059, 0.035978905856609344, -0.020362529903650284, -0.05076853558421135, -0.029181189835071564, 0.03738744184374809, -0.03060503676533699, -0.01635126583278179, 0.0016161801759153605, -0.002956777112558484, -0.00011996956163784489, -0.005301147699356079, -0.005312629975378513, 0.0008922960259951651, 0.014981004409492016, 0.02443503588438034, -0.03037538379430771, -0.001158788800239563, -0.002952949609607458, 0.014636525884270668, -0.002526178490370512, -0.041245605796575546, -0.0024725929833948612, -0.0736113116145134, -0.010977393947541714, 0.003946197219192982, 0.03088061884045601, -0.012439515441656113, -0.009676029905676842, 0.0033912034705281258, 0.008045496419072151, -0.004960495978593826, 0.009484652429819107, -0.02899746783077717, 0.007823498919606209, 0.023638907819986343, 0.017530148848891258, -0.02719086781144142, 0.013273919932544231, -0.02370014786720276, 0.0017568423645570874, 0.008321079425513744, -0.016045061871409416, -0.0024840757250785828, 0.0127916494384408, 0.03616262972354889, 0.004868634976446629, 0.011252976953983307, 0.02077590487897396, -0.03389672562479973, 0.023761389777064323, -0.0058752791956067085, -0.022490644827485085, -0.014207840897142887, 0.002951035974547267, -0.004003610461950302, 0.015386723913252354, 0.02582826279103756, -0.003423737594857812, 0.02504744380712509, -0.008374664932489395, 0.016978982836008072, 0.00561117846518755, 0.0014716903679072857, 0.042011115700006485, -0.0030141903553158045, -0.009691339917480946, -0.011804143898189068, -0.002399869728833437, 0.01662684790790081, -0.022582504898309708, -0.0056264884769916534, 0.01342702191323042, 0.012577307410538197, -0.012125656940042973, 0.005905899219214916, -0.01828034780919552, 0.010939118452370167, 0.005481041967868805, 0.0063919974491000175, 0.016320643946528435, -0.0007698146509937942, -0.011260632425546646, 0.05364684760570526, 0.006575719453394413, -0.0024898168630898, 0.011819453909993172, -0.003377807093784213, 0.013159094378352165, 0.026302877813577652, 0.017438286915421486, 0.03475409373641014, -0.00037294626235961914, 0.0032438430935144424, -0.002133855363354087, 0.014360942877829075, 0.019551090896129608, 0.005733659956604242, -0.005542282946407795, 0.01651967689394951, -0.0032591531053185463, 0.013962877914309502, -0.0014994400553405285, -0.005940347444266081, 0.003188343485817313, 0.02066873386502266, 0.011719937436282635, -0.027665482833981514, -0.019505159929394722, 0.013097853399813175, -0.02934960275888443, -0.0149197643622756, -0.012447170913219452, 0.01762200891971588, 0.02797168679535389, 0.020684044808149338, 0.011666351929306984, 0.010051128454506397, 0.031692057847976685, 0.01271509937942028, 0.00023336053709499538, 0.008696178905665874, 0.001854444737546146, 0.0030945688486099243, 0.006380514707416296, 0.008229218423366547, -0.023378634825348854, 0.01322033442556858, 0.006445582956075668, -0.006847475189715624, 0.019198957830667496, -0.015325483866035938, -0.019581710919737816, 0.004638982471078634, 0.010686500929296017, -0.028002306818962097, -0.014131289906799793, -0.005932691972702742, 0.000290175637928769, -0.006445582956075668, -0.02656315080821514, -0.016090992838144302, 0.005959485191851854, 0.004715533461421728, 0.026639701798558235, 0.010112369433045387, -0.06206744164228439, -0.0030046214815229177, 0.00440550222992897, -0.009339205920696259, -0.0037567338440567255, -0.010525744408369064, 0.010808981955051422, -0.009423411451280117, -0.007823498919606209, -0.021388312801718712, 0.001003773184493184, -0.006437927950173616, 0.06185309961438179, 0.02885967679321766, -0.040510717779397964, -0.0010946773691102862, -0.03643821179866791, 0.005190148949623108, 0.012110346928238869, -0.013832741416990757, 0.016978982836008072, -0.009201413951814175, 0.01850999891757965, -0.00207644235342741, 0.0032132226042449474, -0.00354430521838367, -0.017530148848891258, 0.010204230435192585, -0.0035710979718714952, 0.02343987487256527, -0.015692926943302155, -0.009798510931432247, -0.031937021762132645, -0.011781178414821625, 0.002998880110681057, 0.019091786816716194, 0.015180036425590515, -0.014008808881044388, -0.004363399464637041, 0.005021736957132816, 0.012102692387998104, 0.0097602354362607, -0.0046160174533724785, -0.016274714842438698, -0.010992704890668392, -0.021694514900445938, -0.008971761912107468, 0.01410832442343235, 0.008344044908881187, -0.015157071873545647, -0.012569651938974857, 0.00918610394001007, -0.015340793877840042, -0.018341587856411934, -0.02748176082968712, 0.02432786487042904, 0.0226590558886528, -0.00682833744212985, -0.002353939227759838, -0.01803538389503956, 0.019841983914375305, -0.0017013429896906018, 0.03374362364411354, -0.0024840757250785828, 0.0027022454887628555, -0.008749764412641525, -0.00399595545604825, -0.008941140957176685, 0.044307641685009, -0.0036399937234818935, -0.012064416892826557, 0.01702491194009781, -0.0023807319812476635, 0.01613692194223404, -0.01589195989072323, -0.007188126444816589, -0.02673156186938286, -0.014261426404118538, -0.01725456491112709, 0.006242723204195499, 0.017361735925078392, -0.023975731804966927, -0.008841625414788723, -0.010893188416957855, 0.009040657430887222, 0.019168337807059288, -0.01786697283387184, 0.005236079450696707, -0.0008348828996531665, 0.011551525443792343, 0.0005597781855612993, 0.022505953907966614, 0.012615582905709743, 0.006717338692396879, -0.0043825372122228146, 0.001333898864686489, -0.011444354429841042, 0.012378275394439697, -0.0031711196061223745, -0.018219105899333954, -0.03649945184588432, 0.006185309961438179, 0.015983821824193, -0.016290023922920227, -0.04697161167860031, -0.01058698445558548, 0.01953578181564808, 0.000739194278139621, -0.007176643703132868, 0.007444571703672409, -0.026991834864020348, -0.011321873404085636, 0.001830522553063929, 0.029074018821120262, -0.00415288470685482, 0.026256946846842766, -0.0190152358263731, -0.023960420861840248, -0.01158980093896389, -0.005052356980741024, 0.024664688855409622, 0.0013080629287287593, 0.00550783472135663, -0.02633349783718586, -0.010487468913197517, 0.018188485875725746, -0.011628076434135437, 0.002951035974547267, -0.031416475772857666, -0.023225532844662666, 0.012998336926102638, 0.012424205429852009, 0.00019520471687428653, 0.005645626224577427, -0.007723982445895672, 0.023837940767407417, -0.006801544688642025, 0.0034849781077355146, 0.01554748136550188, -0.007467537187039852, -0.015264242887496948, 0.03172267973423004, -0.02242940478026867, -0.0071421959437429905, -0.004688740707933903, 0.000452606996987015, -0.024496277794241905, 0.011666351929306984, 0.020454391837120056, -0.015348448418080807, -0.0029644323512911797, 0.01864779181778431, 0.0011559181148186326, 0.019734812900424004, -0.010816637426614761, 0.01322033442556858, -0.004080160986632109, -0.012271104380488396, -0.003318479983136058, -0.026501910760998726, 0.011383113451302052, -0.0008573696832172573, -0.0019281249260529876, 0.0013970533618703485, -0.00488011771813035, 0.01448342390358448, 0.002279302105307579, 0.013978187926113605, -0.0021032351069152355, 0.020684044808149338, -0.013120818883180618, 0.022842777892947197, 0.005366215948015451, -0.017346426844596863, -0.0007722068694420159, -0.0007540260558016598, 0.011383113451302052, 0.020883075892925262, 0.011666351929306984, -0.018969304859638214, -0.01749952882528305, 0.006989093963056803, -0.0002025009598582983, -0.016167543828487396, -0.002635263605043292, 0.012301724404096603, 0.007578535936772823, 0.001971184741705656, 0.004922220949083567, -0.010051128454506397, -0.03100310079753399, 0.009660718962550163, -0.004834187217056751, 0.03493781387805939, 0.017162704840302467, -0.018234416842460632, -0.02354704588651657, -0.00856604240834713, -0.02091369591653347, -0.009783200919628143, 0.01390929240733385, -0.045532453805208206, 0.007023542188107967, -0.017943523824214935, -0.022949950769543648, 0.022398782894015312, -0.025139303877949715, -0.024526897817850113, 0.018555929884314537, 0.009676029905676842, 0.005481041967868805, -0.0033912034705281258, 0.001478388556279242, 0.00572600495070219, -0.019612332805991173, 0.004738498479127884, -0.002411352237686515, 0.014766662381589413, 0.031967643648386, -0.020622802898287773, -0.008152667433023453, 0.007467537187039852, 0.01328157540410757, 0.00045547765330411494, 0.009308584965765476, 0.026639701798558235, -0.004256227985024452, -0.009484652429819107, -8.223237819038332e-05, -0.01348826289176941, 0.006147034466266632, 0.008053150959312916, 0.02757362276315689, -0.0013472952414304018, 0.016152232885360718, -0.023118361830711365, -0.020086947828531265, -0.007536432705819607, -0.03404982388019562, 4.2102976294700056e-05, 0.007406296208500862, -0.006858957465738058, 0.014942728914320469, 0.022016029804944992, 0.014399218373000622, 0.003630424849689007, -0.025368956848978996, 0.02454220876097679, -0.006001587957143784, 0.0017042136751115322, 0.00933155044913292, -0.007547915447503328, -0.006835992448031902, -0.004064850974828005, 0.022720297798514366, -0.0005392051534727216, -0.010717120952904224, -0.02014818787574768, -0.002011374104768038, -0.02471061982214451, 0.00017499049135949463, -0.007968945428729057, -0.0018075573025271297, -0.018586549907922745, 0.0054925247095525265, 0.002137682866305113, -0.013465297408401966, 0.015103486366569996, -0.0041260914877057076, 0.01599913090467453, -0.005538455210626125, 0.018693720921874046, 0.011551525443792343, -0.031018411740660667, 0.030819378793239594, -0.03322307765483856, 0.003894525347277522, -0.007754602935165167, -0.012064416892826557, 0.0018582722404971719, 0.014330321922898293, 0.015815408900380135, 0.013511228375136852, -0.0026697113644331694, 0.014965694397687912, 0.004619844723492861, -0.008604316972196102, -0.014047084376215935, -0.0024993857368826866, 0.020745284855365753, -0.015922579914331436, 0.0005023650592193007, 0.0023099223617464304, 0.012110346928238869, 0.011934280395507812, 7.559398363810033e-05, -0.0013932257425040007, 0.019933845847845078, -0.009890371933579445, -0.00456625921651721, -0.0016219215467572212, -0.004003610461950302, 0.020821835845708847, -0.010257815942168236, -0.005121252965182066, -0.00781584344804287, 0.03858163580298424, -0.010954429395496845, 0.006717338692396879, 0.005017909221351147, 0.017438286915421486, 0.0521770715713501, -0.010594639927148819, 0.02040846087038517, -0.013572468422353268, -0.006208275444805622, -0.026547839865088463, -0.01852530986070633, -0.0018496603006497025, -0.010043473914265633, 0.018188485875725746, 0.00039208398084156215, -0.03227384388446808, 0.017193324863910675, 0.0020649596117436886, 0.00913251843303442, 0.026011984795331955, 0.030834689736366272, 0.003517512232065201, 0.01913771592080593, 0.005094460211694241, 0.012615582905709743, 0.01038795243948698, -0.016075681895017624, 0.007325917948037386, -0.01485852338373661, 0.012095036916434765, -0.0047423262149095535, 0.00038706031045876443, -0.008451215922832489, 0.011375458911061287, 0.01158980093896389, 0.018724342808127403, 0.03604014962911606, -0.02999262884259224, -0.008864589966833591, 0.0063307564705610275, -0.0011119013652205467, -0.0060398634523153305, -0.03273314982652664, 0.006085793953388929, -0.015570445917546749, -0.006043690722435713, -0.004110781475901604, -0.00456625921651721, -0.007624466437846422, -0.01411597989499569, -0.0138557069003582, -0.01763731986284256, -0.00844356045126915, 0.022352853789925575, 0.03184515982866287, 0.0038409398403018713, 0.01070181094110012, 0.0014975263038650155, -0.0011214702390134335, 0.03401920571923256, -0.014039428904652596, 0.0045165009796619415, 0.006047518458217382, 0.026609081774950027, -0.0007870385888963938, -0.009232034906744957, -0.010043473914265633, 0.0011501767439767718, 0.033314935863018036, -0.0026831079740077257, -0.0011932366760447621, -0.007390986196696758, -0.023378634825348854, -0.003261066973209381, 0.010900843888521194, -0.018877442926168442, 0.016167543828487396, 0.02533833682537079, 0.012707443907856941, 0.003546218853443861, -0.0032916872296482325, 0.014138945378363132, 0.003345272969454527, -0.0026869354769587517, -0.01826503686606884, 0.00430981395766139, 0.005006426479667425, -0.023516425862908363, -0.010464503429830074, 0.013572468422353268, 0.012584962882101536, -0.017928212881088257, 0.001870711799710989, -0.0149197643622756, 0.0076895346865057945, 0.0010114283068105578, -0.002248681616038084, 0.03248818963766098, -0.001337726367637515, -0.02596605382859707, -0.006047518458217382, -0.001748230424709618, 0.006342239212244749, 0.015555135905742645, 0.015287208370864391, -0.011115185916423798, -0.012095036916434765, -0.010900843888521194, 0.0014736042357981205, -0.01751483790576458, -0.0034084273502230644, 0.003856249852105975, -0.016305334866046906, -0.0009808079339563847, -0.018310967832803726, 0.06589498370885849, 0.0009262654930353165, 0.008543076924979687, 0.002401783363893628, 0.007792878430336714, 0.0014257598668336868, -0.012883510440587997, 0.004887772724032402, 0.02092900685966015, 0.0042638834565877914, -0.003783526597544551, 0.003356755478307605, 0.011145805940032005, 0.004106954205781221, -0.03487657383084297, -0.003588321851566434, 0.012470136396586895, 0.015593411400914192, 0.020469700917601585, 0.020867766812443733, 0.00924734491854906, -0.01216393243521452, -0.03414168581366539, 0.016075681895017624, -0.00024149406817741692, 0.027267418801784515, -0.0136566748842597, -0.001774066360667348, 0.027144936844706535, 0.014192530885338783, 0.002212319988757372, -0.008481835946440697, 0.0026658838614821434, 0.003992127720266581, -0.0012965803034603596, 0.026486599817872047, -0.005733659956604242, 0.015157071873545647, 0.0030524658504873514, 0.00333570409566164, 0.021449552848935127, -0.016917740926146507, 0.02607322484254837, 0.024373795837163925, -0.01786697283387184, 0.007222574204206467, 0.01328157540410757, -0.00430981395766139, -0.0071115754544734955, 0.0033548418432474136, -0.012454826384782791, -0.021816996857523918, 0.0031692059710621834, 0.009423411451280117, 0.029288360849022865, 0.00598627794533968, 0.009323895908892155, -0.02316429279744625, 0.007635949179530144, -9.736313222674653e-05, -0.01915302686393261, 0.015815408900380135, -0.014850867912173271, -0.014514043927192688, -0.022107889875769615, -0.0009138259920291603, 0.006384342443197966, 0.0026046433486044407, -0.006935508456081152, -0.005010254215449095, -0.013901636935770512, -0.018418138846755028, 0.011918970383703709, -0.024664688855409622, -0.011115185916423798, 0.02203133888542652, 0.0022352852392941713, 0.03100310079753399, 0.014866177923977375, 0.004168194718658924, 0.004531811457127333, 0.004661947954446077, -0.0033337902277708054, -0.0329781137406826, 0.01612161286175251, -0.01852530986070633, 0.0037586474791169167, -0.007685706950724125, -0.0014248030493035913, -0.015516860410571098, -0.012638548389077187, -0.010502778925001621, 0.0034428753424435854, -0.003270635847002268, 0.009010037407279015, 0.004864807706326246, -0.007368020713329315, -0.008167977444827557, 0.01913771592080593, -0.0034026859793812037, 0.013082543388009071, 0.0099592674523592, -0.007509639952331781, 0.0108242928981781, -0.000660729652736336, -0.0013587778666988015, 0.0189080648124218, 0.007708672434091568, -0.024756550788879395, -0.004145229235291481, 0.01051043439656496, -0.009989888407289982, 0.013434677384793758, -0.00771632743999362, -0.017361735925078392, -0.0034467028453946114, 0.005121252965182066, -0.005837003700435162, -0.00613937946036458, -0.01505755539983511, -0.017208633944392204, -0.003712716978043318, -0.012355309911072254, -0.008581352420151234, 0.007279987446963787, 0.012033795937895775, -0.0021242864895612, -0.004317468963563442, -0.0014161909930408, 0.010112369433045387, -0.0017233514226973057, -0.008673213422298431, 0.027634862810373306, -0.025491438806056976, 0.01711677387356758, -0.00702736945822835, -0.015578101389110088, 0.006169999949634075, 0.01723925583064556, -0.023240843787789345, 0.005959485191851854, 0.006506823468953371, 0.005756624974310398, 0.02673156186938286, 0.001398010179400444, 0.0003700756060425192, -0.0023099223617464304, -0.0225518848747015, 0.009584168903529644, -0.01625940389931202, 0.026915283873677254, -0.016182852908968925, 0.007387158460915089, -0.026762183755636215, -0.0019405644852668047, 0.006793889217078686, -0.013128473423421383, 0.04372585564851761, -0.01442983839660883, -0.0043519167229533195, -0.005944174714386463, -0.0014592509251087904, 0.013457641936838627, -0.00015417822578456253, -0.0037605613470077515, 0.024036971852183342, -0.002478334354236722, 0.017407666891813278, 0.016825880855321884, -0.004355744458734989, -0.021755756810307503, -0.008099081926047802, -0.0030601208563894033, -0.025797642767429352, 0.008611972443759441, -0.012921785935759544, 0.005002599209547043, 0.007046507205814123, -0.01599913090467453, 0.004210297483950853, -0.0038351984694600105, 0.0036935792304575443, 0.02732865884900093, 0.0113295279443264, 0.006663752719759941, 0.009676029905676842, 0.0032476705964654684, -0.018356896936893463, 0.0015482412418350577, 0.009270310401916504, 0.006219757720828056, 0.016596227884292603, 0.022245682775974274, 0.0062350681982934475, -0.00907893292605877, -0.01815786585211754, 0.01939798891544342, 0.009752579964697361, 0.022368162870407104, -0.014636525884270668, -0.011467319913208485, 0.006866612937301397, 0.009875061921775341, 0.022138509899377823, -0.0008712445269338787, -0.008190942928195, 0.00450884597375989, -0.025032132863998413, -0.0011128581827506423, -0.0004502147785387933, -0.04547121375799179, -0.012003175914287567, 0.0040954714640975, 0.028660643845796585, -0.01625940389931202, 0.0047806017100811005, -0.000580351275857538, 0.006640787702053785, 0.007517294958233833, 0.0020611321087926626, 0.02584357187151909, 0.010862568393349648, -0.016274714842438698, -0.0030830861069262028, 0.005117425229400396, -0.0006927853683009744, 0.0012295983033254743, 0.02532302588224411, 0.010181264951825142, 0.004512673709541559, 0.01661153882741928, 0.0035366499796509743, -0.023133672773838043, 0.0012181156780570745, -0.011092220433056355, 0.012623238377273083, 0.01334281638264656, -0.005637971218675375, 0.029380222782492638, 0.0011913228081539273, -0.004612189717590809, 0.0025797642301768064, -0.01837220788002014, -0.005167183466255665, 0.0024898168630898, -0.009622444398701191, -0.007490502204746008, 0.008611972443759441, -0.0021472517400979996, -3.0680152121931314e-05, -0.013610743917524815, 0.003775871591642499, -0.006495341192930937, 0.02317960187792778, 0.02241409383714199, 0.004527983721345663, -0.006690545938909054, 0.004015092737972736, 0.004631327465176582, -0.022016029804944992, 0.006954646203666925, 0.0060704839415848255, -0.017055533826351166, -0.013013646937906742, 0.024634068831801414, 0.017484217882156372, -0.029824217781424522, 0.006208275444805622, 0.014070048928260803, -0.008014875464141369, 0.011030979454517365, 0.00944637693464756, 0.01990322582423687, 0.019367368891835213, -0.002116631483659148, -0.006487686187028885, -0.013120818883180618, -0.010479813441634178, -0.01051043439656496, -0.0023864733520895243, 0.012546687386929989, -0.00824452843517065, 0.019306128844618797, -0.0024209211114794016, 0.004083988722413778, -0.01828034780919552, 0.00724553968757391, 0.01302895788103342, -0.004596879705786705, 0.020209427922964096, 0.01711677387356758, -0.0051710112020373344, 0.013442331925034523, -0.024894341826438904, 0.006124069448560476, 0.02962518483400345, -0.005500179715454578, -0.00567241944372654, -0.0008391888695769012, 0.006702028214931488, -0.011184081435203552, -0.01774449087679386, 0.009277964942157269, -0.014904453419148922, 0.0015243191737681627, 0.0032132226042449474, 0.017040222883224487, 0.018969304859638214, -0.011176426894962788, 0.019750123843550682, -0.0036744417157024145, -0.006326929200440645, -0.001390355173498392, -0.009982232935726643, -0.005377698224037886, -0.010786017403006554, -0.0013453814899548888, 0.01863248087465763, -0.010839602909982204, 0.0168871209025383, -0.0003817974356934428, 0.02319491282105446, 0.012883510440587997, -0.0004698309348896146, 0.006303963717073202, 0.009844441898167133, 0.009591823443770409, -0.003236187854781747, 0.0036725278478115797, -0.02051563188433647, 0.020362529903650284, 0.009063622914254665, -0.011122841387987137, -0.012271104380488396, -0.000887033180333674, 0.010923808440566063, 0.0013702604919672012, -0.014644180424511433, -0.00914017390459776, -0.004558604210615158, -0.020347220823168755, 0.00724553968757391, 0.007953635416924953, -0.007846463471651077, 0.0022697332315146923, 0.0071728164330124855, 0.002091752365231514, -0.019214266911149025, 0.003037155605852604, 0.0006372859934344888, -0.007612983696162701, -0.009270310401916504, 0.017560768872499466, 0.012584962882101536, -0.009867406450212002, -0.010204230435192585, 0.033468037843704224, 0.03417230769991875, -0.027389900758862495, -0.007123058196157217, 0.011505595408380032, 0.019091786816716194, -0.008948796428740025, -8.229217928601429e-05, 0.004994944203644991, -0.016779949888586998, -0.004397847224026918, 0.004394019953906536, -0.04060257971286774, -0.001394182676449418, -0.012929441407322884, -0.029181189835071564, -0.03199826180934906, -0.0008425379637628794, 0.003356755478307605, 0.014276736415922642, -0.012240483425557613, -0.0006420703721232712, -0.021112728863954544, 0.0016582831740379333, 0.037601787596940994, 0.007322090212255716, -0.0071039204485714436, -0.012454826384782791, -0.007065644953399897, 0.004684912972152233, 0.02732865884900093, 0.010724776424467564, 0.008987071923911572, -0.002681194106116891, -0.0011128581827506423, 0.004447605460882187, -0.0007114445907063782, -0.007279987446963787, 0.008543076924979687, 0.014835557900369167, -0.03334555774927139, -0.0010784103069454432, 0.01864779181778431, 0.008711488917469978, -0.0010707553010433912, -0.002212319988757372, 0.006464720703661442, -0.009653064422309399, -0.019995085895061493, -0.018984615802764893, 0.0018592291744425893, 0.014751352369785309, 0.023455185815691948, -0.011635731905698776, -0.020837146788835526, 0.01077070739120245, -0.009293274953961372, 0.001516664051450789, 0.018724342808127403, -0.007165160961449146, 0.0032381017226725817, -0.010464503429830074, 0.008634937927126884, -0.006055173464119434, 0.012768684886395931, -0.017285184934735298, 0.010204230435192585, -0.00901769194751978, 0.012630892917513847, 0.005504007451236248, 0.05242203176021576, -0.005894416943192482, 0.010364986956119537, 0.0029338118620216846, -0.005415973719209433, -0.013120818883180618, -0.02899746783077717, 0.0019300386775285006, -0.02040846087038517, -0.009721959941089153, 0.02080652490258217, 0.0025395750999450684, 0.010747741907835007, 0.01636657491326332, -0.033069975674152374, -0.025093374773859978, -0.019627641886472702, -0.004627499729394913, 0.000894209835678339, 0.010319056920707226, 0.0027347796130925417, -0.017713870853185654, -0.01903054490685463, 0.004003610461950302, 0.006935508456081152, 0.003896439215168357, -5.179144500289112e-05, 0.0390409417450428, -0.023975731804966927, -0.0065565817058086395, -0.006480030715465546, -0.0006980482139624655, 0.01158980093896389, -0.016688089817762375, -0.002242940478026867, 0.0024170936085283756, 0.009982232935726643, 0.009094242937862873, -0.006338411942124367, 0.012171587906777859, 0.013618399389088154, 0.008550731465220451, -0.022704986855387688, -0.0007415864965878427, -0.02017880789935589, 0.009117208421230316, 0.028675954788923264, -0.0042256079614162445, 0.009783200919628143, 0.027803273871541023, -0.010028163902461529, 0.007440744433552027, 0.0008052194025367498, 0.0037471649702638388, -0.011360148899257183, -0.015363759361207485, 0.006621649954468012, -0.006089621223509312, 0.030314143747091293, -0.01554748136550188, 0.005997760221362114, 0.008137357421219349, -0.002317577600479126, -0.00582552095875144, 0.026547839865088463, 0.026547839865088463, 0.013618399389088154, -0.0013061491772532463, 0.003743337467312813, -0.013120818883180618, 0.005561420693993568, 0.0034543578512966633, 0.006989093963056803, 0.0014927418669685721, 0.001277442555874586, 0.007513467688113451, -0.0026122983545064926, -0.012378275394439697, 0.014521699398756027, 0.014628870412707329, 0.009285620413720608, 0.016810569912195206, 0.00682833744212985, -0.004363399464637041, -3.776708763325587e-05, 0.0008884685230441391, -0.04375647380948067, 0.01436859741806984, 0.005748969968408346, 0.011030979454517365, 0.014077704399824142, 0.007065644953399897, 0.004994944203644991, 0.007149850949645042, 0.006537443958222866, -0.02089838683605194, -0.006445582956075668, 0.022016029804944992, 0.006778579205274582, 0.0005549938068725169, 0.022383473813533783, 0.008680867962539196, 0.017667939886450768, -0.014024118892848492, 0.013266265392303467, 0.015539825893938541, -0.005312629975378513, -0.001114772050641477, 0.0019175992347300053, 0.012294068932533264, 0.01007409393787384, 0.011888349428772926, 0.04081692174077034, -0.02419007383286953, 0.03766302764415741, 0.010479813441634178, -0.006353721953928471, -0.010410917922854424, 0.009691339917480946, -0.0010410917457193136, -0.0014860436785966158, 0.009040657430887222, -2.1903715605731122e-05, 0.013067233376204967, -0.017315806820988655, -0.00938513595610857, 0.004214125219732523, 0.00462367245927453, 0.017989452928304672, -0.022521264851093292, 0.009622444398701191, 0.00875741895288229, -0.004964323714375496, 0.02584357187151909, 0.005128907971084118, 0.012607927434146404, -0.0003681618254631758, -0.007739292457699776, -0.029058709740638733, 0.006242723204195499, 0.010877878405153751, -0.022383473813533783, -0.0025778503622859716, 0.022460024803876877, -0.01353419292718172, -0.010992704890668392, 0.0023749906104058027, -0.006001587957143784, -0.004214125219732523, -0.002554885111749172, -0.018617169931530952, -0.012845235876739025, 0.0016286197351291776, -0.002522350987419486, 0.012454826384782791, -0.007961289957165718, -0.03303935378789902, -0.004769118968397379, -0.00440550222992897, 0.015440309420228004, 0.005794900469481945, 0.012998336926102638, 0.02469530887901783, -0.01411597989499569, 0.013312195427715778, -0.01725456491112709, -0.0075326054356992245, 0.0025721092242747545, 0.006384342443197966, 0.017468906939029694, -0.0009903768077492714, -0.01007409393787384, -0.03313121572136879, -0.012684478424489498, -0.014468113891780376, 0.01019657589495182, 0.017331115901470184, -0.005320285446941853, 0.007674224209040403, 0.005002599209547043, 0.004240917973220348, -0.014713076874613762, 0.0049375309608876705, -0.00933155044913292, 0.019076475873589516, -0.0029759148601442575, 0.003609373467043042, 0.011934280395507812, 0.005764280445873737, -0.0054542492143809795, 0.016182852908968925, -0.0006272386526688933, 0.01714739389717579, -0.009048312902450562, -0.006303963717073202, 0.0021089764777570963, 0.006215930450707674, 0.012707443907856941, -0.0027864514850080013, -0.007146023213863373, 0.009829130955040455, 0.0030983963515609503, 0.013702604919672012, -0.00048681566840969026, 0.022613126784563065, 0.006533616688102484, -0.014276736415922642, -0.018586549907922745, 0.015187691897153854, -0.005304974969476461, -0.022582504898309708, 0.012768684886395931, -0.009476996958255768, -0.01837220788002014, 0.0007626379956491292, -0.006177654955536127, -0.014207840897142887, -0.01128359790891409, 0.01662684790790081, -0.004394019953906536, -0.0071039204485714436, 0.007639776449650526, 0.002317577600479126, 0.0052284239791333675, -0.011115185916423798, 0.01624409481883049, -0.024986203759908676, 0.00016111564764287323, 0.00026362205971963704, 0.010250161401927471, 0.00338354823179543, -0.025123994797468185, 0.025399576872587204, -0.001578861614689231, -0.030941860750317574, -0.002600815612822771, -0.002719469601288438, 0.025874193757772446, -0.010433883406221867, -0.006575719453394413, 0.0016008700476959348, 0.0006664709653705359, -0.0025012996047735214, 0.002752003725618124, 0.013687294907867908, -0.005997760221362114, -0.01576947793364525, 0.012447170913219452, -0.005565247964113951, 0.02155672386288643, 0.0018037297995761037, -0.005948002450168133, 0.011008014902472496, -0.015830719843506813, -0.0004050019197165966, -0.004462915472686291, 0.0036744417157024145, -0.016779949888586998, -1.3433779713523109e-05, -0.0014707335503771901, 0.012607927434146404, 0.015348448418080807, 0.006629304960370064, 0.0016247921157628298, -0.010150644928216934, 0.0016898603644222021, -0.031569577753543854, -0.015478584915399551, -0.018601860851049423, 0.0013472952414304018, 0.00032127441954798996, -0.015019279904663563, -0.01978074386715889, -0.001162616303190589, -0.025001512840390205, 0.013472952879965305, 0.0037548199761658907, 0.013962877914309502, 0.003067776095122099, -0.018617169931530952, 0.0072991251945495605, 0.003065862227231264, 0.009438721463084221, 0.004260055720806122, 0.01165869738906622, -0.010127679444849491, -0.0021434242371469736, -0.0002197249123128131, -0.014253770932555199, -0.026348808780312538, -0.00026362205971963704, 0.012202207930386066, -0.00608196621760726, 0.0022180613595992327, 0.011520905420184135, 0.00035667920019477606, -0.03362113982439041, 0.010732431896030903, -0.010296091437339783, -0.033957965672016144, 0.008122047409415245, -0.003854336217045784, -0.008604316972196102, -0.007551743183284998, 0.02492496185004711, 0.002290784614160657, -0.005955657456070185, 0.011941934935748577, 0.003506029723212123, -0.019841983914375305, 0.014850867912173271, 0.0003119447792414576, -0.0056571089662611485, 0.02382262982428074, -0.004926048219203949, -0.03178391978144646, -0.007230229210108519, 0.006855130195617676, 0.009086587466299534, -0.023623596876859665, -0.020592182874679565, 0.014016463421285152, -0.002681194106116891, 0.023240843787789345, -0.007827325724065304, 0.005014081951230764, 0.007544087711721659, -0.01662684790790081, 0.01116111595183611, -0.0021147176157683134, -0.006261860951781273, 0.0030601208563894033, 0.012707443907856941, 0.014598250389099121, 0.01664215885102749, 0.009844441898167133, 0.0037165444809943438, 0.007314435206353664, -0.0040686787106096745, 0.004765291232615709, -0.005515489727258682, -0.009806166402995586, -0.0009788941824808717, 0.03251880779862404, 0.00777374068275094, 0.02647128887474537, -0.014253770932555199, -0.018678411841392517, -0.005312629975378513, 0.003817974589765072, -0.0005205458728596568, -0.02544550783932209, 0.007188126444816589, 0.026364117860794067, 0.006950818467885256, -0.0008061763364821672, -0.023470494896173477, 0.002757744863629341, -0.006101103965193033, -0.003930887207388878, 0.02899746783077717, 0.0025816778652369976, 0.004550949204713106, 0.026134466752409935, 0.02533833682537079, -0.01070946641266346, -0.011314217932522297, -0.0008473224006593227, 0.037448685616254807, 0.0005454249330796301, -0.010594639927148819, -0.0004195944347884506, 0.0007894308073446155, -0.007632121443748474, -0.0003672049497254193, -0.02014818787574768, 0.005128907971084118, 0.0030122767202556133, -0.0136566748842597, -0.0005133692757226527, -0.006667580455541611, 0.007597673684358597, 0.02102086879312992, 0.003356755478307605, 0.005798728205263615, -0.014820247888565063, -0.011153461411595345, -0.001856358489021659, 0.00503704696893692, 0.005481041967868805, -0.0031385854817926884, 0.00969899445772171, -0.007318262942135334, 0.007597673684358597, -0.01929081790149212, 0.010632915422320366, 0.03977582976222038, -0.009224379435181618, -0.0054542492143809795, 0.01589195989072323, 0.0039691622368991375, 0.0007138368091545999, -0.008007220923900604, -0.005542282946407795, -0.0032476705964654684, -0.012248138897120953, -0.03037538379430771, -0.006969956215471029, 0.011497939936816692, -0.00472318846732378, 0.00566859170794487, 0.009920991957187653, 0.023654216900467873, 0.010472158901393414, 0.027144936844706535, -0.013610743917524815, -0.021128039807081223, 0.011696972884237766, -0.00013671506894752383, 0.0006162344943732023, 0.007260849699378014, -0.007678051944822073, 0.003414168721064925, -0.018234416842460632, 0.015072865411639214, 0.0045165009796619415, 0.030895929783582687, 0.009989888407289982, -0.0061661722138524055, -0.004826532211154699, -0.00582552095875144, -0.01638188585639, 0.0125926174223423, 0.005381525959819555, 0.02379200980067253, 0.02281215786933899, -0.018310967832803726, -0.02293463982641697, 0.025246476754546165, -0.014582940377295017, -0.030696896836161613, 0.010594639927148819, -0.0054542492143809795, 0.0037643888499587774, 0.008788039907813072, -0.019183646887540817, 0.008680867962539196, -0.006277170963585377, -0.001197064178995788, 0.004145229235291481, 0.0004664818407036364, -0.01384805142879486, 0.001038221176713705, 0.02683873474597931, -0.023225532844662666, 0.00393471447750926, -0.005504007451236248, 0.019045855849981308, -0.00370123446919024, -0.006679063197225332, 0.03273314982652664, -0.008512455970048904, 0.004929875954985619, 0.002987397601827979, 0.014827902428805828, -0.003942369483411312, 0.021725136786699295, 0.0028859677258878946, 0.0079919109120965, -0.014062394388020039, 0.024480966851115227, -0.0006262817769311368, -0.016718709841370583, 0.01265385840088129, 0.011298907920718193, 0.009254999458789825, -0.013472952879965305, 0.005125080700963736, -0.029196500778198242, 0.024373795837163925, -0.04525687173008919, -0.004233262967318296, -0.009591823443770409, 0.02569047175347805, -0.020974937826395035, 0.007272332441061735, 0.0015338880475610495, 0.0013147611171007156, -0.010885532945394516, -0.005324112717062235, 0.011107530444860458, -0.011742902919650078, -0.018234416842460632, -0.004018920473754406, -0.032825011759996414, 0.007612983696162701, 0.031202133744955063, 0.0069163707084953785, 0.017300495877861977, 0.012516066431999207, 0.0045165009796619415, -0.011199391447007656, -0.00933155044913292, -0.013671984896063805, 0.02054625190794468, -0.0031290166079998016, 0.021771065890789032, -0.00901769194751978, -0.011727592907845974, 0.011574490927159786, -0.011873039416968822, -0.012554341927170753, -0.0045853969641029835, 0.011490285396575928, 0.010265471413731575, 0.009951612912118435, 0.007188126444816589, -0.015417344868183136, -0.02504744380712509, -0.00403423048555851, -0.008344044908881187, -0.008780384436249733, -0.006904887966811657, 0.005936519708484411, 0.005576730705797672, 0.008696178905665874, 0.028568783774971962, 0.012676823884248734, 0.015677617862820625, -0.0019463057396933436, 0.0027654001023620367, -0.02016349881887436, -0.02795637585222721, 0.01159745641052723, 0.0018075573025271297, -0.027252107858657837, 0.01384805142879486, -0.024082902818918228, 0.028155408799648285, -0.03160019963979721, 0.012202207930386066, -0.015203001908957958, -0.01875496283173561, 0.021449552848935127, 0.005488696973770857, 0.005710694473236799, -0.014468113891780376, 0.021235210821032524, 0.003023759229108691, 0.015340793877840042, -0.028369750827550888, 0.009676029905676842, -0.006288653705269098, 0.009147828444838524, -0.004172022454440594, 0.01139076892286539, 0.0062044477090239525, -0.010717120952904224, 0.023868560791015625, 0.0067900619469583035, -0.013993498869240284, 0.0008243571501225233, 0.007563225459307432, -0.030069179832935333, -0.006147034466266632, -0.0024649379774928093, 0.0003478279977571219, -0.004661947954446077, -0.018081314861774445, -0.021082108840346336, -0.0037586474791169167, 0.030589725822210312, -0.009270310401916504, -0.008412940427660942, 0.008902865462005138, 0.016550296917557716, -0.03325369581580162, 0.014590594917535782, 0.03127868473529816, -0.010786017403006554, -0.005163355730473995, -0.0074330889619886875, -0.02896684780716896, 0.01964295282959938, 0.01803538389503956, -0.01800476387143135, -0.028002306818962097, 0.006036035716533661, -0.013970533385872841, 0.0190152358263731, 0.008719143457710743, 0.004604534711688757, -0.0017558855470269918, 0.009339205920696259, 0.002275474602356553, 0.014093014411628246, 0.005515489727258682, -0.006989093963056803, -0.007838808931410313, 0.007318262942135334, 0.006059001199901104, -0.035703323781490326, -0.025399576872587204, 0.006376686971634626, 0.01586133986711502, -0.004635155200958252, -0.011995520442724228, -0.01601444184780121, -0.018724342808127403, -0.006541271694004536, 0.007069472689181566, 0.0164890568703413, 0.00513656297698617, 0.01599913090467453, 0.010418573394417763, -0.0058523137122392654, 0.019949156790971756, 0.01576947793364525, -0.015241277404129505, -0.004627499729394913, -0.01158980093896389, -0.005538455210626125, 0.032671909779310226, -0.014988659881055355, -0.015708237886428833, 0.0009683684911578894, -0.010035818442702293, 0.013097853399813175, 0.004122264217585325, -0.01033436693251133, -0.009882716462016106, 0.0049796337261796, 0.02647128887474537, 0.008060806430876255, 0.00702736945822835, 0.017315806820988655, 0.010058783926069736, -0.0043901922181248665, -0.0032859458588063717, 0.00023934106866363436, -0.027543002739548683, 0.025537369772791862, -0.007693361956626177, 0.023087741807103157, -0.0002371880691498518, 0.012271104380488396, -0.008581352420151234, 0.00519780395552516, 0.0026237808633595705, -0.01575416885316372, -0.015654651448130608, 0.012248138897120953, -0.008971761912107468, -0.0012219431810081005, 0.004455260466784239, -0.014376252889633179, -0.0010937205515801907, -0.017713870853185654, 0.012699788436293602, -0.0015396293019875884, 0.00556907569989562, 0.013205024413764477, 0.011474975384771824, -0.013702604919672012, 0.021617963910102844, 0.006085793953388929, -0.004283021204173565, 0.0110233249142766, 0.0036935792304575443, 0.006480030715465546, 0.009316240437328815, -0.002637177472934127, 0.010571674443781376, -0.022490644827485085, -0.021954787895083427, -0.013748535886406898, -0.002007546368986368, -0.021725136786699295, -0.003509857226163149, 0.021893547847867012, 0.008895210921764374, 0.01390929240733385, 0.008895210921764374, -0.022858088836073875, -0.004960495978593826, -0.010495123453438282, -0.019183646887540817, -0.006208275444805622, -0.01840282790362835, -0.0006272386526688933, -0.001812341739423573, 0.015524515882134438, 0.007436916697770357, 0.02735927887260914, -0.0038351984694600105, 0.0168871209025383, -0.00023431741283275187, -0.01749952882528305, 0.00950761791318655, -0.002910846611484885, 0.0019338662968948483, -0.0002530963101889938, 0.010816637426614761, 0.014514043927192688, 0.009033001959323883, 0.005469559226185083, -0.004505018703639507, 0.0006851302459836006, 0.009936302900314331, 0.00541214644908905, -0.002202751114964485, -0.013074887916445732, 0.03518277779221535, -0.028430992737412453, 0.012248138897120953, -0.014873833395540714, -0.001932909362949431, -0.017193324863910675, -0.007938324473798275, -0.000238623411860317, -0.013074887916445732, 0.002595074474811554, 0.0035710979718714952, 0.00333570409566164, -0.010694156400859356, -0.01938267983496189, 0.021311761811375618, -0.00692402571439743, 0.008160321973264217, 0.006104931700974703, -0.02117396891117096, 0.018448758870363235, -0.003655303968116641, 0.013358126394450665, 0.005714522209018469, 0.007421606685966253, -0.01247779093682766, 0.010916153900325298, -0.003988299984484911, -0.004099298734217882, 0.004332778975367546, 0.008765074424445629, 0.00440932996571064, -0.010188920423388481, -0.011038634926080704, -0.008160321973264217, 0.008328733965754509, 0.003349100472405553, 0.00914017390459776, -0.0015051814261823893, 0.018816202878952026, -0.005209286697208881, -0.009499962441623211, -0.029808906838297844, -0.002208492485806346, -0.0079919109120965, -0.014192530885338783, -0.009201413951814175, 0.009775545448064804, -0.013610743917524815, -0.022245682775974274, -0.007352710701525211, 0.009614788927137852, 0.0055116624571383, 0.01599913090467453, -0.014223150908946991, -0.026655010879039764, -0.009400446899235249, -0.0004004567163065076, 0.0021472517400979996, -0.026364117860794067, -0.004172022454440594, -0.011574490927159786, 0.010977393947541714, -0.016550296917557716, -0.009545893408358097, -0.016182852908968925, 0.0011176426196470857, -0.012799304910004139, 0.015983821824193, 0.010288436897099018, -0.003079258603975177, -0.0028113306034356356, 0.03542774170637131, 0.0004387321532703936, 0.02192416787147522, -0.019995085895061493, -0.008321079425513744, -0.012003175914287567, 0.006303963717073202, -0.0047729467041790485, 0.0002487903111614287, 0.019505159929394722, -0.01976543292403221, -0.009783200919628143, 0.01762200891971588, 0.008397630415856838, -0.014360942877829075, 0.008734453469514847, -0.0108242928981781, 0.003821802092716098, -0.012998336926102638, -0.00482270447537303, 0.02140362188220024, 0.004864807706326246, 0.012171587906777859, 0.016933051869273186, 0.005427456460893154, -0.002394128357991576, 0.003119447734206915, -0.002748176222667098, 0.008229218423366547, 0.0026639702264219522, 0.005438939202576876, -0.025644540786743164, -0.0018965477356687188, 0.007345055695623159, 0.006013070698827505, -0.037081241607666016, 0.009898027405142784, -0.00419115973636508, -0.021510792896151543, -0.004792084451764822, -0.021510792896151543, 0.012623238377273083, -0.025001512840390205, 0.020347220823168755, -0.0034734955988824368, 0.02948739379644394, -0.0037222858518362045, -0.020469700917601585, -0.009691339917480946, 0.00830576941370964, 0.009920991957187653, -0.006732648704200983, -0.011566836386919022, 0.02582826279103756, 0.01976543292403221, 0.000553079997189343, 0.003976817708462477, 0.024404415860772133, -0.014062394388020039, 0.0016956017352640629, -0.0005516446544788778, -0.016688089817762375, 0.017223944887518883, 0.010778361931443214, -0.017713870853185654, 6.261621456360444e-05, -0.026226326823234558, 0.0063613769598305225, -0.002962518483400345, -0.020362529903650284, 0.01139076892286539, 0.012447170913219452, -0.015049900859594345, -0.00608196621760726, -0.0199185349047184, -0.0025338337291032076, 0.01190365944057703, 0.04859448969364166, 0.01468245591968298, -0.009224379435181618, -0.004428467713296413, 0.013005992397665977, -0.049574341624975204, 0.00236159423366189, -0.013036612421274185, -0.00572600495070219, -0.012783994898200035, 0.014299701899290085, -0.007260849699378014, 0.015830719843506813, 0.015386723913252354, -0.021097419783473015, 0.008474181406199932, -0.0026180397253483534, -0.0034734955988824368, -0.0020649596117436886, 0.010724776424467564, 0.0006104931817390025, -0.0003353884967509657, 0.0025778503622859716, 0.009920991957187653, 0.02985483780503273, 0.01650436595082283, 0.006273343693464994, -0.01800476387143135, -0.00887224543839693, 0.002051563234999776, 0.024725930765271187, -0.0019252542406320572, -0.020071636885404587, 0.012072071433067322, 0.00509828794747591, 0.01517238188534975, 0.0004923177766613662, 0.011582146398723125, 0.005121252965182066, -0.00661016721278429, -0.00786942895501852, -0.02178637683391571, 0.007035024464130402, -0.0010879791807383299, -0.02673156186938286, 0.0015903442399576306, 0.010204230435192585, -0.004845669958740473, 0.014223150908946991, -0.007146023213863373, -0.007892394438385963, -0.011918970383703709, -0.0270990077406168, 0.00017331594426650554, -0.022123200818896294, 0.0215414147824049, 0.010533398948609829, -0.028323819860816002, -0.019122406840324402, 0.004439950454980135, 0.0002999837161041796, 0.0013319851132109761, 0.015302518382668495, 0.0168871209025383, 2.135051545337774e-05, 0.024511586874723434, 0.009630098938941956, 0.00708861043676734, 0.008275148458778858, 0.00824452843517065, 0.01852530986070633, -0.02129645086824894, -0.02657846175134182, 0.0018697548657655716, -0.02769610285758972, -0.01328157540410757, -0.004045713227242231, -0.023592976853251457, -0.015509205870330334, 0.019796054810285568, 0.01416956540197134, -0.022980570793151855, 0.006284825969487429, -0.009354515932500362, -0.017422977834939957, 0.0004411243717186153, -0.007257021963596344, 0.01165869738906622, 0.005312629975378513, -0.007624466437846422, 0.0037930954713374376, 0.005113597959280014, -0.019734812900424004, 0.02229161188006401, 0.017040222883224487, 0.00765508646145463, -0.00771249970421195, 0.01216393243521452, 0.0028400372248142958, 0.013067233376204967, -0.005232251714915037, 0.019107095897197723, 0.0017491873586550355, 0.015616376884281635, 0.005347078200429678, -0.01840282790362835, 0.014781972393393517, -0.008680867962539196, 0.01610630191862583, 0.02656315080821514, -0.010541054420173168, 0.028124788776040077, 0.006943163461983204, 0.002436231356114149, -0.0051021152175962925, 0.021740445867180824, 0.013457641936838627, 0.012194553390145302, 0.017285184934735298, 0.012102692387998104, -0.0276042427867651, 0.0017654544208198786, 0.007410123944282532, -0.019872605800628662, -0.00535473320633173, -0.0031213616020977497, 0.006908715702593327, 0.021572034806013107, -0.009997542947530746, 0.002792192855849862, 0.0049758064560592175, -0.00488394545391202, -0.007390986196696758, 0.015907270833849907, -0.0037682163529098034, -0.004022748209536076, 0.003104137722402811, 0.015402033925056458, -0.009033001959323883, -0.02155672386288643, -0.006694373209029436, 0.031202133744955063, 0.02973235584795475, -0.010717120952904224, 0.02405228279531002, -0.009155483916401863, -0.014001153409481049, 0.017805730924010277, 0.005810210946947336, -0.009400446899235249, 0.007639776449650526, -0.010035818442702293, -0.002325232606381178, 0.009086587466299534, 0.00456243148073554, 0.0017788507975637913, -0.03674441576004028, 0.04204173758625984, 0.0020534771028906107, -0.009224379435181618, -0.006843647453933954, 0.0038026643451303244, 0.009515272453427315, 0.015708237886428833, 0.006441755220293999, -0.01662684790790081, 0.003825629595667124, -0.0009248301503248513, -0.011291252449154854, 0.01107691042125225, 0.0030027078464627266, 0.0021242864895612, -0.01548624038696289, -0.007708672434091568, -0.006380514707416296, -0.012929441407322884, -0.0033988584764301777, -0.02001039683818817, -0.008734453469514847, -0.002841950859874487, 0.028614714741706848, 0.01814255490899086, 0.013051922433078289, -0.003456271719187498, 0.005094460211694241, 8.773447189014405e-05, -0.00645706569775939, -1.8988203009939753e-05, -0.013358126394450665, 0.0015960856107994914, -0.005676246713846922, -0.010541054420173168, 0.012416550889611244, 0.0010391779942438006, -0.011030979454517365, -0.0021070626098662615, -0.001319545553997159, 0.009209069423377514, -0.03864287585020065, 0.00393854221329093, 0.0038849564734846354, -0.0011865384876728058, -0.008014875464141369, -0.007731637451797724], "0d614f08-4ea9-4e7f-9251-b35cf32549e5": [-0.024633239954710007, 0.015165260061621666, -0.010997249744832516, -0.004745234735310078, -0.03973103314638138, -0.02128983661532402, -0.0029704568441957235, 0.01830626092851162, -0.04728742688894272, 0.03964107483625412, 0.021079936996102333, 0.03400376811623573, 0.02121487259864807, -0.0016688908217474818, -0.00953544769436121, 0.015787463635206223, 0.0062107848934829235, 0.02049521543085575, 0.010097679682075977, -0.03631266579031944, 0.062130339443683624, -0.00945298746228218, -0.048216983675956726, 0.017796503379940987, -0.0020109149627387524, -0.006143317092210054, -0.0011113444343209267, 0.01907089538872242, -0.05649303272366524, -0.001009205705486238, 0.009265576489269733, 0.005577337462455034, 0.004898911342024803, 0.0021870809141546488, -0.0050975666381418705, -0.02283409982919693, -0.023178935050964355, 0.026852181181311607, 0.006735534407198429, -0.015037821605801582, -4.480282950680703e-05, 0.036942362785339355, 0.02581767551600933, -0.004482859745621681, -0.04899660870432854, 0.02206946350634098, -0.013800911605358124, -0.016642054542899132, 0.017001884058117867, 0.0275268591940403, 0.010569954290986061, 0.02055518701672554, -0.00010553555330261588, -0.011956792324781418, 0.029131093993782997, -0.045308370143175125, 0.049116551876068115, 0.08330023288726807, -0.018606116995215416, -0.055143676698207855, 0.026267459616065025, -0.026297446340322495, -0.03412371128797531, -0.0038606571033596992, 0.013208694756031036, -0.01408577524125576, 0.013351126573979855, 0.006525634787976742, -0.038471635431051254, 0.021604686975479126, -0.0066343327052891254, 0.017856474965810776, -0.0669880211353302, 0.024798162281513214, 0.007185319904237986, -0.016941912472248077, 0.005344948265701532, 0.012923830188810825, 0.02889120765030384, 0.0017532255733385682, 0.001055121305398643, 0.0004125374252907932, -0.002981701632961631, 0.006922944914549589, 0.07178573310375214, -0.004093045834451914, -0.012114216573536396, -0.05742258578538895, -0.012976305559277534, -0.024078505113720894, -0.03040548413991928, 0.02670225314795971, -0.021619679406285286, 0.002603132277727127, 0.025307917967438698, -0.001977181062102318, -0.005225005559623241, 0.0006034619291312993, 0.008920741267502308, 0.006300742272287607, 0.011042228899896145, 0.009490469470620155, -0.02272914908826351, -0.023163942620158195, 0.00592217268422246, -0.029865741729736328, 0.00797619204968214, 0.013995818793773651, -0.036102764308452606, 0.023898590356111526, 0.02742190845310688, -0.0633297711610794, 0.046927597373723984, 0.013081255368888378, -0.0454283133149147, -0.012324117124080658, -0.02503804676234722, -0.026312438771128654, 0.011739395558834076, -0.03736216574907303, 0.0071141039952635765, -0.040870487689971924, 0.027047088369727135, -0.011911813169717789, -0.020930008962750435, 0.026867173612117767, -0.009415505453944206, 0.015397649258375168, 0.02658230997622013, 0.01607232727110386, -0.008583402261137962, 0.0034595984034240246, 0.018501168116927147, 0.026222482323646545, 0.002627495676279068, 0.027976645156741142, 0.01740669086575508, 0.053014691919088364, -0.012466548942029476, 0.017901454120874405, -0.063929483294487, -0.04117034748196602, -0.04899660870432854, 0.007631356827914715, 0.008823287673294544, 0.03400376811623573, -0.02518797479569912, 0.045278385281562805, -0.027886686846613884, 0.03054041974246502, -0.05793234333395958, -0.014955360442399979, -0.029281022027134895, 0.015727492049336433, 0.04890665411949158, -0.052205078303813934, -0.021499736234545708, 0.01839621737599373, -0.02063015103340149, 0.03253446891903877, 0.016582084819674492, -0.06338974088430405, -0.00472274562343955, 0.03883146122097969, 0.034573495388031006, 0.030060648918151855, 0.05955157056450844, -0.0005734762526117265, -0.017841482535004616, 0.016417162492871284, 0.020420251414179802, -0.009370526298880577, 0.014220710843801498, -0.01901092380285263, 0.0055998265743255615, -0.04875672608613968, 0.01983553171157837, -0.02499306946992874, 0.01824628934264183, -0.0686672180891037, -0.027976645156741142, 0.006525634787976742, -0.0022845345083624125, -0.021649664267897606, -0.0028205285780131817, 0.03142499923706055, -0.008178595453500748, 0.006038367282599211, 0.026132524013519287, 0.01907089538872242, -0.02599758841097355, -0.008553416468203068, 0.009340541437268257, 0.0015836190432310104, -0.01026260107755661, -0.03133504092693329, 0.007878738455474377, 0.007241542916744947, -0.005187523551285267, -0.01680697686970234, -0.010989753529429436, -0.0311251413077116, 0.0024232182186096907, 0.03562299534678459, -0.016117306426167488, 0.019220823422074318, -0.012601484544575214, -0.06962676346302032, 0.017106832936406136, -0.0140707828104496, 0.03868153318762779, -0.04629789665341377, 0.01109470333904028, 0.0008588087512180209, -0.02733195200562477, 0.014040797017514706, -0.03412371128797531, 0.0016492126742377877, 0.006750527303665876, -0.02290906384587288, -0.0038025598041713238, 0.0032515728380531073, 0.005386178847402334, -0.020075416192412376, -0.0455782413482666, -0.005843460559844971, -0.00953544769436121, 0.00704288762062788, -0.016926920041441917, -0.0001673810329521075, -0.004808954428881407, -0.006615591701120138, 0.012114216573536396, 0.010135161690413952, -0.003377137705683708, 0.027077073231339455, 0.0455782413482666, 0.015817448496818542, -0.03046545572578907, -0.031544942408800125, 0.004347924143075943, 0.019160853698849678, -0.01482792105525732, 0.0028448919765651226, 0.029116099700331688, 0.008853273466229439, -0.0032946772407740355, 0.034633465111255646, 0.010922285728156567, 0.008313531056046486, -0.017316732555627823, 0.00572351785376668, -0.02051020786166191, -0.003943117801100016, -0.014625517651438713, 0.02212943509221077, 0.033883824944496155, -0.003849412314593792, -0.004992616828531027, 0.026117531582713127, 0.012166691944003105, 0.013538536615669727, -0.04263964295387268, -0.0010363803012296557, 0.03973103314638138, -0.0318148136138916, 0.014902886003255844, -0.006060856860131025, 0.002232059370726347, 0.04551827162504196, -0.015667520463466644, -0.003542059101164341, -0.006896707694977522, 0.01835124008357525, -0.008425978012382984, -0.0028580105863511562, -0.013118737377226353, 0.006188295781612396, 0.03943117707967758, -0.014348150230944157, -0.01598237082362175, -0.03058539889752865, 0.028426429256796837, 0.049926165491342545, -0.0039056355599313974, 0.03040548413991928, -0.005187523551285267, -0.010622428730130196, -0.008995705284178257, -0.000632510578725487, 0.0014861655654385686, 0.003823174862191081, 0.00907816644757986, 0.03178482502698898, -0.008583402261137962, 0.024618247523903847, -0.010090183466672897, -0.0018178821774199605, 0.001146952505223453, -0.013111241161823273, -0.0011834974866360426, 0.00685547711327672, -0.005577337462455034, -0.01562254223972559, 0.05841211602091789, -0.03048045001924038, 0.027152037248015404, 0.04521841183304787, -0.03742213547229767, 0.04731741175055504, 0.03499329462647438, -0.0007608867599628866, -0.005015105940401554, -0.0023576244711875916, -0.002893618540838361, 0.011581971310079098, -0.0027268233243376017, -0.030240563675761223, 0.003024806035682559, -0.011184660717844963, 0.00332841114141047, 0.025307917967438698, -0.046777669340372086, -0.000245976320002228, 0.0250080619007349, -0.029415957629680634, 0.036942362785339355, -0.03589286655187607, -0.014902886003255844, -0.029266029596328735, -0.048456866294145584, -0.004347924143075943, -0.011889324523508549, -0.017766518518328667, -0.0455782413482666, -0.016926920041441917, -0.05955157056450844, -0.038381677120923996, 0.011207150295376778, -0.03151495382189751, -0.010000226087868214, -0.030045656487345695, 0.03337406739592552, -0.027646802365779877, -0.03421366587281227, -0.030300535261631012, 0.0038344194181263447, 0.010562458075582981, -0.018546147271990776, -0.019670609384775162, 0.000902850239071995, -0.02209945023059845, 0.034603480249643326, 0.004831443540751934, 0.04626791179180145, -0.03565298020839691, -0.043779101222753525, -0.03559300675988197, -0.011507006362080574, 0.00916812289506197, -0.009610411711037159, -0.057512544095516205, -0.02523295395076275, -0.0025244199205189943, 0.011889324523508549, 0.028441421687602997, -0.0001806169020710513, -0.02506803348660469, -0.01595238409936428, 0.004456622526049614, -0.032234612852334976, 0.0016979394713416696, 0.030210578814148903, -0.033943794667720795, 0.008261056616902351, -0.04359918832778931, 0.03048045001924038, -0.016402170062065125, 0.024783169850707054, 0.02520296908915043, 0.019310781732201576, -0.010899797081947327, -0.007766292430460453, -0.012369095347821712, 0.002666851971298456, 0.0034595984034240246, 0.011851842515170574, -0.02365870587527752, 0.028471408411860466, 0.005022602155804634, -0.03826173394918442, 0.017256762832403183, -0.029116099700331688, 0.00022442411864176393, 0.00258251721970737, -0.02806660160422325, 0.001593926572240889, -0.0023332610726356506, 0.0038306713104248047, -0.030105628073215485, 0.01026260107755661, -0.0034071234986186028, 0.004430384840816259, 0.023193927481770515, 0.021094929426908493, -0.03643260896205902, 0.01748165488243103, -0.029236042872071266, 0.02430339716374874, 0.013373615220189095, 0.01599736325442791, 0.0011900569079443812, 0.026432381942868233, -0.0005261550541035831, 0.02817155048251152, 0.032354556024074554, -0.022609205916523933, 0.0562831312417984, -0.024168461561203003, -0.016327206045389175, 0.01443061139434576, 0.014490582048892975, -0.009917765855789185, 0.014205718412995338, -0.03214465454220772, 0.04422888532280922, 0.027152037248015404, 0.020780079066753387, 0.00147960614413023, -0.03796187788248062, 0.01766156777739525, 0.034783393144607544, -0.008261056616902351, -0.02902614325284958, 0.0030829033348709345, -0.0015901783481240273, 0.02060016617178917, -0.020315302535891533, 0.010764861479401588, 0.0004891415010206401, -0.004636536817997694, 0.02048022300004959, 0.01818631775677204, -0.01688194088637829, -0.030060648918151855, 0.013635990209877491, -0.038381677120923996, -0.01100474689155817, 0.03628268092870712, -0.00591467646881938, -0.007132844999432564, -0.013958336785435677, -0.02212943509221077, -0.03709229454398155, -0.004389154724776745, -0.027676787227392197, -0.017061855643987656, -0.02358374185860157, 0.020435243844985962, -0.05391426384449005, -0.026807202026247978, 0.006255763582885265, 0.010022715665400028, 0.0023819878697395325, 0.036852408200502396, -0.02203947864472866, 0.00041019479976966977, 0.0024588261730968952, 0.007620112504810095, 0.021514728665351868, 0.0010476248571649194, 0.0004654809017665684, 0.0220244862139225, 0.04890665411949158, 0.0021233614534139633, -0.011274618096649647, -0.0182013101875782, 0.005618567578494549, -0.02901115082204342, -0.005869697779417038, -0.009273073635995388, -0.007447694428265095, -0.018546147271990776, -0.006874218583106995, 0.002904863329604268, -0.023973556235432625, -0.01913086697459221, -0.03676244989037514, 0.00034108717227354646, 0.025307917967438698, 0.03730219230055809, 0.012241655960679054, -0.021814586594700813, -0.015112785622477531, 0.021874558180570602, 0.007638853508979082, 0.010997249744832516, -0.022324342280626297, -0.017136819660663605, -0.027137044817209244, 0.014797935262322426, -0.01607232727110386, 0.02287907712161541, 0.006491900887340307, -0.040780533105134964, 0.044618699699640274, -0.014048293232917786, 0.025487832725048065, 0.0052812290377914906, -0.013388608582317829, -0.023178935050964355, 0.020105402916669846, -0.04512845724821091, 0.02830648608505726, 0.026522338390350342, 0.0020352783612906933, -0.025307917967438698, 0.0006320420070551336, 0.03439358249306679, 0.015592556446790695, -0.010562458075582981, -0.012863858602941036, -0.02674723044037819, -0.013591011986136436, 0.017391696572303772, 0.009048180654644966, -0.007653846405446529, -0.014767950400710106, -0.02751186676323414, -0.02365870587527752, -0.027631809934973717, 0.005775992758572102, -0.030975213274359703, 0.009797822684049606, 0.018096361309289932, -0.010075190104544163, -0.0297458004206419, 0.024033525958657265, 0.012444059364497662, 0.02815655805170536, -0.027107059955596924, 0.02958087809383869, -0.004250471014529467, -0.005056336056441069, -0.019235817715525627, 0.012773902155458927, 0.01599736325442791, 0.020090408623218536, -0.017076848074793816, 0.024618247523903847, -0.005502373445779085, 0.012384087778627872, -0.03133504092693329, -0.0036470089107751846, -0.003950614016503096, -0.020000452175736427, -0.0006788946338929236, -0.002440085168927908, -0.00952795147895813, -0.023943569511175156, -0.0035570519976317883, 0.020780079066753387, 0.00296108634211123, 0.02887621521949768, -0.00342586450278759, -0.01760159805417061, -0.04096044600009918, 0.037751976400613785, -0.027286972850561142, -0.004827695433050394, 0.03760204836726189, -0.03403375297784805, 0.04191998764872551, 0.02806660160422325, 0.009040684439241886, 0.01680697686970234, 0.004081801511347294, 0.010307579301297665, -0.013043773360550404, -0.023493783548474312, -0.0009951499523594975, -0.028696300461888313, 0.00945298746228218, -0.017976418137550354, 0.006042115390300751, 0.016192270442843437, -0.01604234240949154, -0.01833624579012394, 0.016956904903054237, -0.0010926034301519394, 0.005678539164364338, 0.03892141953110695, -0.025517817586660385, 0.026777217164635658, -0.025727717205882072, 0.02127484418451786, 0.006754275411367416, 0.0005289662512950599, 0.0013418594608083367, -0.03046545572578907, 0.022294357419013977, 0.04021080583333969, 0.01072737853974104, -0.011536992155015469, -0.04482860118150711, -0.007713817525655031, 0.01599736325442791, 0.037721991539001465, -0.02584766037762165, 0.016282226890325546, 0.005427408963441849, 0.011581971310079098, 0.021859563887119293, -0.024783169850707054, 0.007878738455474377, -0.022654185071587563, 0.01107221469283104, 0.044048972427845, 0.012826376594603062, -0.009565433487296104, 0.016162283718585968, -0.023958561941981316, 0.026972124353051186, -0.013268665410578251, 0.03280434012413025, 0.022594213485717773, -0.006495648995041847, -0.005232502240687609, 0.008628381416201591, 0.02055518701672554, -0.013591011986136436, -0.019190838560461998, -0.01817132532596588, -0.03253446891903877, -0.0037107286043465137, -0.026357417926192284, -0.021469751372933388, 0.017196791246533394, 0.022564228624105453, -0.002085879212245345, -0.015652528032660484, 0.002271415665745735, 0.007623860612511635, 0.03631266579031944, -0.005476135760545731, 0.02272914908826351, -0.0038681533187627792, 0.012279137969017029, 0.03121509775519371, 0.015382656827569008, -0.0025975098833441734, 0.005787237081676722, -0.017736533656716347, 0.005820970982313156, 0.014190725982189178, -0.024828147143125534, -0.018006404861807823, 0.026207489892840385, 0.009040684439241886, 0.0016061082715168595, 0.04638785496354103, -0.019250810146331787, -0.005187523551285267, 0.006345720496028662, 0.01250403095036745, 0.00014875711349304765, 0.022579221054911613, 0.028006630018353462, -0.001030757906846702, 0.023808633908629417, 0.011656935326755047, -0.058172229677438736, 0.03709229454398155, -0.033793866634368896, -0.001499284291639924, 0.00043338685645721853, 0.0020127890165895224, 0.008613388054072857, -0.015322685241699219, -0.013126233592629433, -0.009385519661009312, -0.025337904691696167, -0.03667249158024788, 0.015367663465440273, -0.009265576489269733, -0.004332931712269783, -0.012668952345848083, -0.015727492049336433, -0.0006620276835747063, -0.004651529248803854, -0.03148496896028519, 0.0257726963609457, -0.004231730010360479, 0.019310781732201576, 0.014925374649465084, 0.00048445622087456286, 0.022609205916523933, -0.03115512616932392, 0.016911925747990608, -0.01488039642572403, -0.025472840294241905, -0.020000452175736427, 0.009130640886723995, -0.028576357290148735, 0.029101107269525528, 0.044558729976415634, -0.008538424037396908, 0.004460370633751154, -0.0005186586640775204, 0.010375047102570534, 0.02662728913128376, 0.005749755073338747, -0.0049851201474666595, 0.03673246502876282, 0.0034408573992550373, 0.013531040400266647, -0.017286747694015503, -0.0029123597778379917, -0.02892119437456131, 0.014393129386007786, 0.010982257314026356, 0.021904543042182922, -0.02893618680536747, -0.03286430984735489, -0.026462366804480553, -0.00797619204968214, 0.002393232425674796, -0.004231730010360479, -0.006746779195964336, 0.001241594785824418, 0.028441421687602997, -0.014318164438009262, 0.02055518701672554, 0.013486062176525593, -0.0016679537948220968, -0.012901341542601585, 0.02045023813843727, -0.006859225686639547, 0.02805160917341709, -0.02287907712161541, 0.017841482535004616, -0.027721766382455826, 0.02269916422665119, -0.04194997251033783, 0.0006859225686639547, 0.010090183466672897, 0.038321707397699356, -0.02055518701672554, 0.0004303414316382259, 0.0044866083189845085, 0.04042070358991623, -0.028681308031082153, 0.04968627914786339, 0.013808407820761204, 0.0011610082583501935, -0.009565433487296104, 0.02584766037762165, 0.009482973255217075, 0.009003202430903912, 0.0267622247338295, -0.001380278612487018, -0.0016154787736013532, -0.006484404671937227, -0.00685547711327672, 0.016986891627311707, 0.006060856860131025, 0.0182762760668993, -0.002134606009349227, 0.03652256354689598, 0.014955360442399979, 0.024393355473876, 0.021724628284573555, 0.027002109214663506, 0.026957131922245026, -0.01755661889910698, -0.021004972979426384, -0.0009328359155915678, 0.006566864904016256, -0.036042794585227966, -0.006435677874833345, 0.0040743048302829266, -0.03553303703665733, 0.0038644052110612392, -0.026252467185258865, 0.02045023813843727, -0.03910133242607117, 0.03400376811623573, 0.007440198212862015, -0.014415618032217026, 0.013943343423306942, 0.02134980820119381, -0.004782716743648052, -0.012826376594603062, 0.00157331139780581, 0.015022828243672848, -0.015757476910948753, 0.0129613121971488, 0.0036245197989046574, -0.022684171795845032, 0.006720541510730982, 0.03037549927830696, -0.024828147143125534, 0.034663453698158264, 0.02970082126557827, 0.01252651959657669, 0.008156106807291508, -0.010375047102570534, -0.024618247523903847, 0.0006587480311281979, -0.005191271658986807, -0.004044319503009319, 0.004505349323153496, -0.0027774241752922535, 0.042369771748781204, -0.03643260896205902, 0.00841848086565733, -0.004257967229932547, 0.00952795147895813, 0.03559300675988197, 0.002179584465920925, -0.03343404084444046, -0.003916880115866661, 0.009955247864127159, 0.03262442722916603, 0.015150267630815506, 0.019580652937293053, 0.016642054542899132, -0.003663875861093402, 0.022384313866496086, -0.009625405073165894, 0.010210125707089901, 0.003823174862191081, -0.009378023445606232, 0.017946433275938034, -0.021799594163894653, 0.021634671837091446, 0.004295449238270521, -0.002576894825324416, -0.030330520123243332, 0.015210239216685295, -0.018426204100251198, -0.05250493437051773, -0.024858133867383003, -0.014325661584734917, -0.011349582113325596, 0.0037706999573856592, 0.012084230780601501, -0.012706434354186058, 0.016447149217128754, 0.04656776785850525, 0.001101973932236433, -0.022384313866496086, -0.021664658561348915, 0.015712499618530273, -0.022264370694756508, 0.009482973255217075, -0.023148948326706886, 0.036222707480192184, -0.01815633289515972, 0.012459052726626396, 0.03037549927830696, -0.028756272047758102, -0.016177278012037277, -0.0025206715799868107, -0.009370526298880577, -0.00323657994158566, -0.004928897134959698, -0.010937279090285301, 0.011986778117716312, -0.006218281574547291, -0.008613388054072857, -0.004021829925477505, 0.00778878154233098, 0.00722280191257596, -0.011492013931274414, 0.014048293232917786, 0.00702789518982172, 0.03448353707790375, -0.03295426815748215, -0.020974986255168915, -0.014902886003255844, 0.0303605068475008, -0.003849412314593792, 0.0027137044817209244, -0.03730219230055809, 0.0006151750567369163, -0.00916062667965889, -0.001335300039499998, 0.0071216002106666565, 0.014093272387981415, -0.008988209068775177, 0.008448466658592224, -0.03427363932132721, -0.02581767551600933, -0.03277435526251793, 0.009677879512310028, -0.0031072667334228754, -0.007324003614485264, -0.017796503379940987, 0.02286408469080925, 0.010172643698751926, -0.022579221054911613, -0.05556347593665123, -0.026537330821156502, 0.027586830779910088, -0.044438786804676056, -0.003821300808340311, -0.00027127674547955394, 0.027856701985001564, 0.037062305957078934, 0.008111127652227879, 0.002668726025149226, -0.01212171372026205, 0.01450557541102171, 0.06680810451507568, -0.011244632303714752, 0.007380226626992226, -0.02368869073688984, -0.004108038730919361, -0.010007722303271294, -0.008508438244462013, 0.012908837758004665, 0.04788713902235031, -0.013665976002812386, -0.006900455802679062, 0.02069012261927128, -0.023373842239379883, -0.01589241251349449, 0.00797619204968214, 0.04320937395095825, -0.002042774809524417, 0.007147837895900011, -0.010757364332675934, -0.013606004416942596, 0.019175846129655838, -0.013306147418916225, -0.029850749298930168, -0.023223914206027985, -0.011199653148651123, -0.004876422230154276, 0.017076848074793816, -0.021169893443584442, 0.04120033234357834, -0.012316619977355003, -0.0019115874310955405, -0.0017082470003515482, 0.010360054671764374, 0.0297458004206419, -0.01890597492456436, 0.01177687756717205, 0.01602734811604023, 0.00914563424885273, -0.0022601711098104715, 0.004100542515516281, 0.008058653213083744, 0.014010811224579811, -0.015030324459075928, -0.004591558128595352, 0.006222029682248831, -0.012998794205486774, -0.004235478118062019, -0.007631356827914715, 0.01751163974404335, 0.015397649258375168, -0.008283545263111591, -0.002069012261927128, -0.008508438244462013, 0.04647781327366829, -0.017136819660663605, -0.023823626339435577, -0.017991410568356514, -0.014648007228970528, -0.0005762873915955424, 0.02961086481809616, -0.011521999724209309, -0.0026387402322143316, -0.024138476699590683, -0.016642054542899132, -0.010787350125610828, -0.011229638941586018, 0.030975213274359703, -0.008815791457891464, -0.021724628284573555, -0.02069012261927128, 0.0026181251741945744, 0.004505349323153496, -0.02286408469080925, 0.009108152240514755, -0.024888118728995323, 0.017886461690068245, -0.0175866037607193, -0.026777217164635658, 0.017691554501652718, -0.014310668222606182, 0.01817132532596588, 0.0043816580437123775, 0.002275163773447275, -0.040060874074697495, -0.0012856362154707313, -0.03277435526251793, -0.007886235602200031, -0.021109921857714653, -0.047557298094034195, 0.04021080583333969, 0.02442334033548832, 0.01670202612876892, 0.01668703369796276, -0.02051020786166191, 0.006941686384379864, 0.006596850696951151, -0.02967083640396595, -0.0006301678949967027, 0.008643373847007751, -0.010082686319947243, -0.012076734565198421, 0.00907816644757986, 0.02811158075928688, -0.017346719279885292, -0.0024100993759930134, 0.019160853698849678, 0.0010260726558044553, -0.017871469259262085, -0.014198222197592258, -0.0182013101875782, -0.01899593137204647, 0.01751163974404335, 0.01902591809630394, 0.006454418879002333, 0.01670202612876892, -0.006214533466845751, -0.03049544245004654, -0.020810065791010857, 0.0002612034440971911, 0.0014468092704191804, -0.017721539363265038, -0.021139908581972122, -0.02203947864472866, -0.0809013769030571, -0.02133481577038765, 0.0017691553803160787, 0.021469751372933388, -0.0036938616540282965, -0.013920854777097702, 0.027811722829937935, 0.014423114247620106, -0.02593761868774891, 0.038351692259311676, -0.019340766593813896, -0.027212008833885193, 0.011904316954314709, 0.01676199771463871, 7.320723671000451e-05, 0.0068104988895356655, -0.007196564693003893, 0.0038325453642755747, 0.008201085031032562, -0.009325548075139523, -0.009557937271893024, -0.006008381489664316, 0.03820176422595978, 0.00333403330296278, -0.009250584058463573, 0.04206991568207741, -0.0319647416472435, 0.0054049198515713215, -0.03039049170911312, -0.021799594163894653, 0.014707978814840317, -0.012766405940055847, -0.012099224142730236, -0.008500942029058933, 0.01593739166855812, 0.005967151373624802, 0.006045863963663578, -0.0073090107180178165, 0.03745212033390999, 0.017211783677339554, 0.0034389833454042673, 0.002020285464823246, -0.002415721770375967, -0.011477021500468254, -0.009580426849424839, -0.026537330821156502, 0.012728923000395298, -0.02583266794681549, 0.0027942911256104708, -0.005180027335882187, 0.011986778117716312, 0.017916446551680565, 0.004153017420321703, -0.018441196531057358, 0.0063269794918596745, -0.003358396701514721, -0.01910088211297989, -0.015277707017958164, -0.0026068806182593107, -0.015330181457102299, 0.029565885663032532, 0.014318164438009262, 0.007743803318589926, -0.008193588815629482, -0.016192270442843437, 0.03442356735467911, 0.006072101183235645, 0.014992842450737953, 0.004059311933815479, -0.0012697064084932208, 0.03571294993162155, -0.014558049850165844, 0.0024475816171616316, 0.0055923303589224815, -0.0024550780653953552, -0.010045204311609268, 0.02821652963757515, -0.008231070823967457, 0.036912377923727036, -0.0027249492704868317, -0.02367369830608368, 0.0055923303589224815, 0.010487493127584457, -0.006150813773274422, -0.00832852441817522, -0.014295675791800022, -0.0035589260514825583, -0.0348733514547348, -0.00722280191257596, 0.00877081323415041, 0.03115512616932392, 0.014348150230944157, 0.02066013775765896, 0.025682739913463593, -0.005018854048103094, 0.049176525324583054, -0.004216737113893032, -0.019490694627165794, 0.010315075516700745, -0.0006226715049706399, 9.270964801544324e-05, -0.017931438982486725, -0.003875649766996503, -0.02578768879175186, -0.004928897134959698, -0.017106832936406136, -0.013613501563668251, 0.029850749298930168, -0.01369596179574728, -0.013875875622034073, -0.014573043212294579, 0.011132185347378254, -0.03736216574907303, 0.030825285241007805, -0.008995705284178257, 0.016522113233804703, 0.02287907712161541, 0.009250584058463573, -0.013793415389955044, 0.019505688920617104, -0.010390039533376694, 0.032354556024074554, 0.013351126573979855, -0.06914699077606201, 0.005693532060831785, -0.018651096150279045, -0.015030324459075928, -0.01557756308466196, 0.007207809016108513, 0.031065169721841812, -0.012489037588238716, 0.02048022300004959, -0.0012528394581750035, 0.006188295781612396, -0.00492140045389533, 0.01838122494518757, 0.012414073571562767, -0.01838122494518757, 0.014160740189254284, -0.01680697686970234, 0.02218940667808056, 0.0025225458666682243, 0.006889211013913155, 0.020915014669299126, 0.005052587948739529, 0.005607323255389929, -0.00909315887838602, -0.013148723170161247, -0.01480543240904808, -0.005468639545142651, -0.019430724903941154, 0.035413093864917755, 0.04641783982515335, 0.013118737377226353, 0.0031072667334228754, -0.024558275938034058, -0.01450557541102171, -0.0027024599257856607, 0.006979168392717838, 0.0063944472931325436, -0.016132298856973648, 0.00834351684898138, 0.010240111500024796, -0.014370639808475971, -0.004096794407814741, -0.0072302985936403275, -0.022384313866496086, -0.015667520463466644, -0.006053360179066658, 0.0012743916595354676, 0.004865177441388369, -0.000351394759491086, 0.013620997779071331, 0.006788009312003851, 0.011694417335093021, -0.014842914417386055, -0.014183228835463524, -0.0007660405826754868, 0.012758908793330193, 0.008216077461838722, -0.010300083085894585, 0.0034839618019759655, -0.00555109977722168, 0.015097792260348797, -0.007946206256747246, -0.009550441056489944, 0.007938710041344166, -0.001289384439587593, -0.004153017420321703, 0.02431839145720005, 0.008148609660565853, -0.002723074983805418, -0.00138777494430542, -0.0033921306021511555, 0.00453533511608839, 0.008216077461838722, 0.0024906860198825598, 0.024753183126449585, -0.025412868708372116, -0.009437994100153446, -0.010479996912181377, -0.011934302747249603, 0.02427341230213642, -0.001950943609699607, 0.0005472387420013547, 0.009865290485322475, -0.007267780601978302, 0.019655616953969002, 0.01595238409936428, 0.004111787304282188, -0.00805115606635809, -0.013913357630372047, 0.013471068814396858, -0.007841256447136402, 0.014588035643100739, -0.011596963740885258, 0.0032928031869232655, 0.009018194861710072, -0.006349469069391489, -0.011956792324781418, 0.030975213274359703, 0.004786464851349592, 0.004516593646258116, -0.01599736325442791, -0.0008007115102373064, 0.014040797017514706, 0.0068217432126402855, -0.08252060413360596, 0.010067693889141083, -0.000680300232488662, -0.002790542785078287, -0.007260283920913935, 0.01971558853983879, 0.005314962938427925, 0.002974205184727907, 0.008178595453500748, 0.005554848350584507, -0.014715475030243397, 0.009932758286595345, -0.007743803318589926, -0.015697507187724113, -0.034783393144607544, -0.03052542731165886, 0.008905748836696148, 0.04009086266160011, 0.00553610734641552, -0.019205830991268158, -0.012931326404213905, 0.01914585940539837, 0.020825058221817017, -0.012069238349795341, 0.008740827441215515, -0.008006177842617035, -0.009048180654644966, 0.009737851098179817, -0.005686035379767418, 0.0036282679066061974, -0.010944775305688381, 0.016162283718585968, -0.013276162557303905, 0.015397649258375168, 0.022999020293354988, 0.017091840505599976, -0.027886686846613884, 0.0190409105271101, -0.019445717334747314, -0.011784374713897705, 0.0259226243942976, 0.012968809343874454, -0.019235817715525627, -0.006525634787976742, -0.003875649766996503, -0.012788894586265087, -0.02286408469080925, 0.01676199771463871, 0.014925374649465084, 0.0012453430099412799, -0.04206991568207741, 0.014258193783462048, 0.03118511289358139, -0.01584743522107601, 0.0033115441910922527, -0.020765086635947227, 0.02886122278869152, 0.010315075516700745, 0.01826128177344799, -0.008073645643889904, -0.010877307504415512, 0.03526316583156586, -0.00033171664108522236, 0.008928237482905388, 0.014348150230944157, 0.026207489892840385, -0.0017419809009879827, 0.017376704141497612, -0.006045863963663578, 0.015150267630815506, 0.00342399044893682, 0.017376704141497612, 0.0030566658824682236, 0.042339786887168884, -0.0010635547805577517, -0.012249152176082134, -0.02145475707948208, -0.0007004468934610486, -0.0002914233773481101, 0.01251152716577053, -0.017691554501652718, -0.005663546267896891, 0.011529495939612389, 0.011252128519117832, -0.013830897398293018, -0.03280434012413025, -0.018006404861807823, -0.0010738623095676303, 0.034603480249643326, -0.010764861479401588, 0.0036039045080542564, -0.009393015876412392, -0.038531605154275894, 0.022654185071587563, -0.008126121014356613, 0.028006630018353462, -0.006458166986703873, -0.03760204836726189, -0.017766518518328667, -0.019460709765553474, 0.006439425982534885, 0.010315075516700745, 0.015742484480142593, -0.03043547086417675, 0.019400738179683685, -0.012489037588238716, -0.029475929215550423, 0.0007843130733817816, -0.006739282980561256, -0.010742371901869774, 0.009415505453944206, -0.013553529977798462, 0.00333403330296278, 0.028591351583600044, 0.014940368011593819, -0.01602734811604023, -0.01890597492456436, 0.004786464851349592, 0.015652528032660484, 0.006949182599782944, 0.0319647416472435, 0.042159873992204666, -0.005018854048103094, 0.020015444606542587, -0.0034052494447678328, 0.003729469608515501, -0.006214533466845751, 0.01679198443889618, 0.024588262662291527, -0.0198055449873209, 0.010075190104544163, -0.043089430779218674, -0.016162283718585968, -0.008478452451527119, 0.009303058497607708, 0.005847208667546511, 0.010360054671764374, -0.02352377027273178, -0.02272914908826351, 0.02505303919315338, -0.021004972979426384, -0.010817335918545723, -0.006956678815186024, 0.0076051196083426476, 0.013216190971434116, -0.009235590696334839, -0.018681082874536514, -0.006386951077729464, 0.010854817926883698, -0.01557756308466196, 0.018741052597761154, -0.019235817715525627, -0.004666522145271301, -0.008440970443189144, 0.01740669086575508, -0.030030664056539536, -0.012713930569589138, 0.005195019766688347, -0.003118511289358139, -0.011372070759534836, 0.0034408573992550373, 0.011154674924910069, -0.023058991879224777, -0.01833624579012394, 0.00516503443941474, -0.013815904967486858, 0.02827650122344494, 0.010539968498051167, 0.010982257314026356, -0.02070511505007744, -0.00046290401951409876, -0.03679243475198746, -0.004437881521880627, -0.013141226954758167, 0.007353989407420158, -0.005243746563792229, 0.01480543240904808, -0.018771039322018623, 0.028471408411860466, 0.003909383900463581, 0.011919310316443443, -0.008688352070748806, -0.03376388177275658, -0.0034052494447678328, -0.006574361585080624, -0.003973103128373623, 0.014992842450737953, -0.021799594163894653, -0.009992729872465134, 0.01817132532596588, 0.02590763196349144, 0.0072340467013418674, -0.0229390487074852, -0.011229638941586018, 0.00572726596146822, 0.005982144270092249, -0.004632788244634867, -0.0026837189216166735, 0.012174188159406185, -0.013868379406630993, 0.025637760758399963, 0.005243746563792229, 0.0009707865538075566, -0.005674791056662798, 0.008126121014356613, -0.0005950284539721906, 0.008231070823967457, 0.0591917410492897, -0.034573495388031006, 0.009415505453944206, -0.015300195664167404, -0.0035064511466771364, -0.027601823210716248, -0.01686694845557213, -0.012376591563224792, -0.001009205705486238, -0.01833624579012394, -0.0027080823201686144, -0.033194154500961304, 0.01748165488243103, -0.013426090590655804, 0.03646259382367134, 0.044528741389513016, -0.008560913614928722, -0.008808295242488384, -0.0010598065564408898, 0.0001474686578148976, -0.004471615422517061, 0.015532584860920906, -0.030945226550102234, -0.006124576088041067, -0.013905861414968967, 0.030105628073215485, 0.007766292430460453, -0.010142657905817032, -0.008231070823967457, 0.010090183466672897, -0.0025431609246879816, 0.04290951415896416, 0.04716748371720314, -0.03148496896028519, -0.011544489301741123, 0.017856474965810776, 0.009220598265528679, 0.011671927757561207, 0.0019284543814137578, -0.014010811224579811, 0.0227891206741333, -0.032354556024074554, -0.007447694428265095, 0.013860883191227913, 0.013268665410578251, -0.014198222197592258, 0.026057559996843338, -0.0012134831631556153, -0.010112672112882137, 0.016507118940353394, 0.011139682494103909, -0.018426204100251198, 0.02740691602230072, -0.005847208667546511, -0.006574361585080624, 0.0107048898935318, -0.006791757885366678, 0.01288634818047285, -0.0008639625739306211, 0.00907067023217678, -0.007698824629187584, -0.005393675062805414, 0.0044941045343875885, -0.017811497673392296, 0.007290269713848829, -0.007916221395134926, -0.018066374585032463, -0.02808159403502941, -0.039970919489860535, -0.0007908724364824593, 0.012264145538210869, 0.0022151924204081297, -0.00014840571384411305, 0.021154901012778282, 0.004115535411983728, -0.017721539363265038, -0.02356874942779541, 0.003354648593813181, 0.001146952505223453, 0.00454657943919301, -0.00759762292727828, -0.008635877631604671, 0.02046523056924343, -0.006904203910380602, -0.007578881923109293, -0.0012312872568145394, -0.008823287673294544, -0.008006177842617035, -0.008988209068775177, 0.008965719491243362, 0.0019603141117841005, -0.0033921306021511555, 0.007796278223395348, 0.015517592430114746, -0.013905861414968967, -0.011671927757561207, -0.011746891774237156, -0.01035255752503872, 0.008958223275840282, -0.0058921873569488525, 0.017991410568356514, -0.00609459076076746, 0.011139682494103909, 0.017766518518328667, 0.01288634818047285, -0.007286521606147289, -0.029520906507968903, 0.012653958983719349, -0.003954362124204636, -0.003264691447839141, -0.005689783953130245, 0.05094568058848381, 0.010869811289012432, 0.004509097430855036, -0.008680855855345726, -0.006000885274261236, -0.016597077250480652, 3.418778078412288e-06, 0.027571838349103928, 0.009310555644333363, -0.019565660506486893, -0.008178595453500748, -0.02350877784192562, -0.01489538885653019, 0.0018619236070662737, -0.01287135574966669, 0.02281910739839077, 0.015772471204400063, 0.006135820876806974, -0.012743916362524033, 0.01902591809630394, 0.024543283507227898, 0.0024756931234151125, 0.003958110697567463, 0.009303058497607708, -0.0022170667070895433, 0.005187523551285267, -0.0011525747831910849, 0.01375593338161707, -0.016177278012037277, 0.021799594163894653, -0.005637309048324823, -0.000691076333168894, -0.02827650122344494, -0.00389439077116549, -0.006941686384379864, 0.01377842202782631, 0.005018854048103094, 0.022444285452365875, -0.023973556235432625, 0.013958336785435677, -0.024033525958657265, -0.0068104988895356655, 0.026012582704424858, 0.01907089538872242, -0.0007182508707046509, -0.016941912472248077, 0.011334588751196861, -0.007646349724382162, -0.0031541192438453436, -0.004516593646258116, -0.022954043000936508, -0.01983553171157837, 0.012091727927327156, 0.01821630448102951, 0.006068353075534105, -0.014760453253984451, -0.010539968498051167, 0.0005795671022497118, -0.007657594513148069, 0.00536368926987052, -0.017271755263209343, -0.010142657905817032, -0.01596737653017044, -0.026222482323646545, -0.006428181193768978, -0.01101224310696125, -0.021904543042182922, -0.008231070823967457, 0.009595419280230999, -0.01332863699644804, -0.005970899481326342, 0.018441196531057358, 0.002696837531402707, -0.025442853569984436, 0.0026143768336623907, 0.010689896531403065, 0.021049950271844864, 0.014842914417386055, 0.0033434038050472736, -0.005772244650870562, -0.01452056784182787, -0.00840348843485117, -0.003191601485013962, -0.01592239923775196, 0.00647690799087286, 0.011686921119689941, -0.002185206860303879, -0.010839825496077538, 0.011439538560807705, -0.018111353740096092, -0.00037692944169975817, -0.0021552210673689842, -0.004898911342024803, 0.013021283783018589, 0.014475589618086815, -0.011596963740885258, -0.010809839703142643, -0.010907293297350407, 0.009692872874438763, -0.010067693889141083, -0.0008414732874371111, 0.01745166815817356, -0.0016604573465883732, 0.01593739166855812, 0.004063060507178307, -0.007095362991094589, 0.023853613063693047, 0.00032703139004297554, -0.014910382218658924, -0.004479111637920141, -0.018696075305342674, -0.002366994973272085, -0.007946206256747246, 0.0011909939348697662, -0.0205701794475317, 0.0077213142067193985, 0.019310781732201576, 0.003543933155015111, -0.01907089538872242, -0.008306034840643406, -0.004767723847180605, -0.01487290021032095, -0.0026162511203438044, -0.0005701965419575572, 0.008650870062410831, -0.0022433041594922543, -0.014295675791800022, -0.011424546130001545, -0.005397423170506954, -0.002252674661576748, 0.004205492325127125, 0.017721539363265038, 0.00024082254094537348, -0.005457394756376743, 0.0009290876914747059, 0.005419912748038769, 0.01833624579012394, -0.0110872071236372, 0.013538536615669727, -0.008321027271449566, 0.011866834945976734, -0.01220417395234108, 0.006982916500419378, 0.018726060166954994, -0.008583402261137962, 0.01679198443889618, -0.01914585940539837, -0.00914563424885273, -0.008141113445162773, 0.0074214572086930275, 0.03871151804924011, -0.03484336659312248, 0.0021196131128817797, -0.0010438766330480576, 0.004066808614879847, 0.00296108634211123, -0.030225571244955063, 0.018006404861807823, -0.002578768879175186, -0.009865290485322475, 0.02356874942779541, -0.007571385707706213, -0.014213214628398418, -0.0012622099602594972, -0.00798368826508522, 0.01604234240949154, 0.00012005987082375214, 0.029910720884799957, 0.01027759350836277, -0.008500942029058933, -0.0038606571033596992, -0.003780070459470153, 0.002322016516700387, -0.013800911605358124, 0.01746666245162487, -0.00777378911152482, -0.003753833007067442, 0.01107221469283104, -0.005015105940401554, 0.026087546721100807, 0.006529382895678282, 0.005828467663377523, 0.005682287272065878, 0.0027155785355716944, -0.011327092535793781, -0.020795073360204697, -0.0011225891066715121, -0.016522113233804703, -0.001527395797893405, 0.015787463635206223, -0.016627062112092972, 0.017361711710691452, 0.004891415126621723, 0.009063173085451126, -0.02060016617178917, -0.013411098159849644, 0.003780070459470153, 0.003290928900241852, 0.0043741618283092976, -0.007294017821550369, 0.004145521204918623, -9.393953223479912e-05, 0.013860883191227913, 0.005633560474961996, -0.001922832103446126, 0.001990299904718995, -0.013988322578370571, -0.023478791117668152, -0.012196677736938, -0.001336237066425383, -0.04521841183304787, -0.008958223275840282, 0.006896707694977522, -0.00554735166952014, -0.017331726849079132, 0.01893595978617668, 0.025457846000790596, 0.011342085897922516, 0.01184434536844492, 0.0016773242969065905, -0.006709297187626362, 0.005824719555675983, -0.002200199756771326, -0.009955247864127159, -0.007376478519290686, -0.010562458075582981, -0.017181796953082085, 0.020945001393556595, 0.012931326404213905, -0.028711292892694473, 0.03039049170911312, 0.010787350125610828, -0.019325774163007736, 0.0003544401843100786, 0.012271641753613949, 0.019310781732201576, 0.03039049170911312, 0.003898139111697674, 0.012466548942029476, -0.022624200209975243, -0.010877307504415512, 0.0037388401105999947, -0.015517592430114746, 0.002084005158394575, 0.004025578033179045, 0.0035345626529306173, 0.015397649258375168, -0.019490694627165794, -0.00797619204968214, -2.7906598916160874e-05, -0.017316732555627823, -0.003675120649859309, -0.03190476819872856, -0.0016632684273645282, 0.03481338173151016, 0.008800799027085304, -0.0008311657002195716, 0.0013484187657013535, 0.013643486425280571, -0.01833624579012394, 0.000468994869152084, -0.006525634787976742, -0.005011357832700014, 0.01524022500962019, 0.003821300808340311, 0.011237135156989098, -0.018006404861807823, 0.0010110798757523298, 0.01607232727110386, -0.00046454384573735297, 0.006068353075534105, -0.010405032895505428, 0.017031868919730186, 0.003920628223568201, -0.001034506130963564, 0.00323470588773489, -0.006120827980339527, -0.012998794205486774, 0.002136480063199997, 0.005071328952908516, -0.014468093402683735, 0.015322685241699219, 0.0067018005065619946, -0.035443078726530075, -0.011357078328728676, -0.0175866037607193, -0.008583402261137962, 0.007496421225368977, -0.017811497673392296, 0.012976305559277534, 0.0016304716700688004, -0.014745460823178291, 0.007481428328901529, 0.019985459744930267, -0.011581971310079098, 0.0038287972565740347, -0.0069979093968868256, 0.006072101183235645, 0.004396650940179825, 0.010045204311609268, -0.00871084164828062, -0.019235817715525627, 0.004265463910996914, -0.015090296044945717, 0.007200312800705433, 0.0023070236202329397, 0.007706321310251951, 0.0151802534237504, -0.02277412824332714, 0.015352671034634113, 0.004928897134959698, 0.01607232727110386, -0.0024981824681162834, 0.009220598265528679, 0.008643373847007751, -0.015457620844244957, 0.002976079238578677, 0.021739622578024864, -0.013246176764369011, 0.014408121816813946, 4.869745680480264e-05, 0.017106832936406136, 0.0030154355335980654, 0.007200312800705433, -0.012331613339483738, 0.00021200816263444722, 0.0022208148147910833, 0.009595419280230999, 0.012459052726626396, -0.010307579301297665, 0.001806637505069375, -0.012069238349795341, -0.006675563286989927, -0.028336472809314728, 0.0060121300630271435, 0.017991410568356514, -0.0052849771454930305, -0.0009422064758837223, -0.01896594651043415, -0.007046636193990707, -0.005419912748038769, 0.00646941177546978, -0.0005744132795371115, -0.000517253065481782, -0.012683944776654243, 0.014175732620060444, 0.016327206045389175, 0.003277810290455818, 0.015397649258375168, 0.011117192916572094, 0.0006517201545648277, 0.018006404861807823, 0.018471181392669678, -0.005153789650648832, 0.004850184544920921, -0.0011328966356813908, 0.009115648455917835, -0.007500169333070517, -0.020375274121761322, -0.008448466658592224, -0.012766405940055847, 0.02137979306280613, -0.033164169639348984, -0.0259226243942976, -0.015757476910948753, 0.011177164502441883, -0.0077812853269279, 0.022609205916523933, -0.0297458004206419, 0.0010616807267069817, -0.0034670948516577482, -0.00554735166952014, -0.009925262071192265, -0.012758908793330193, -0.004816450644284487, -0.007204060908406973, 0.01911587454378605, -0.0029460936784744263, -0.007923717610538006, -0.007196564693003893, 0.01970059610903263, 0.011926806531846523, -0.010202629491686821, 0.0014580539427697659, 0.024543283507227898, -0.02067513018846512, 0.02209945023059845, 0.016522113233804703, -0.0014158865669742227, -0.01833624579012394, -0.0020334043074399233, -0.00161828997079283, 0.005850956775248051, -0.014460597187280655, 0.006713045295327902, 0.004018081817775965, -0.02287907712161541, 0.02586265280842781, 0.006570613477379084, -0.011417049914598465, 0.01145453192293644, -0.009505461901426315, -0.0074327015317976475, 0.01293882355093956, 0.00517253065481782, -0.02505303919315338, 0.017856474965810776, 0.0057160211727023125, 0.012421569786965847, -0.00023086635337676853, 0.009318051859736443, -0.0004783654003404081, -0.017976418137550354, 0.01182185672223568, -0.0014646133640781045, 0.014408121816813946, 0.017016876488924026, 0.012983801774680614, 0.0003947334480471909, -0.01177687756717205, 0.0011225891066715121, -0.005457394756376743, 0.009775333106517792, -0.005820970982313156, 0.009602915495634079, 0.0024532037787139416, 0.019625630229711533, -0.008530927821993828, 0.00267434841953218, 0.022279364988207817, -0.011971784755587578, -0.01377092581242323, 0.0012631469871848822, 0.002055893652141094, -0.012114216573536396, -0.0074252053163945675, 0.011911813169717789, -0.016956904903054237, -0.02051020786166191, -0.0028523884247988462, -0.022384313866496086, 0.0008611513767391443, 0.004992616828531027, 0.011941798962652683, 0.015015332028269768, 0.028546372428536415, 0.0036488831974565983, 0.027241995558142662, -0.005018854048103094, -0.0057085249572992325, -0.0037107286043465137, 0.023973556235432625, 0.011964288540184498, 0.004321686923503876, -0.03151495382189751, -0.0034183680545538664, -0.012114216573536396, 0.007485176902264357, 0.014280682429671288, -0.020810065791010857, 0.011859338730573654, -0.001287510385736823, 0.0035608001053333282, -0.0017185546457767487, -0.00435916893184185, 0.013995818793773651, -0.008178595453500748, 0.02290906384587288, -0.005641057156026363, 0.0012359725078567863, 0.002348253969103098, 0.003819426754489541, 0.004250471014529467, -0.015667520463466644, -0.011709409765899181, 0.004280456807464361, 0.0024082253221422434, 0.007470184005796909, -0.0009506399510428309, 0.003448353847488761, -0.01742168329656124, 0.0036432608030736446, -0.004250471014529467, 0.009947750717401505, 0.02122986502945423, -0.0025956358294934034, 0.018786031752824783, 0.025382881984114647, 0.013253672979772091, 0.0010579325025901198, 0.01584743522107601, 0.006743031088262796, 0.002267667558044195, 0.0029910721350461245, 0.008605891838669777, -0.00026190621429122984, 0.009985233657062054, 0.03748210519552231, -0.0004947638371959329, 0.007458939217031002, 0.004295449238270521, 0.00398059980943799, -0.01256400253623724, 0.0022395558189600706, -0.004126779735088348, 0.00453533511608839, -0.004617795348167419, 0.009970240294933319, 0.018546147271990776, 0.013935847207903862, 0.014685489237308502, 0.011859338730573654, -0.017826490104198456, 0.022969035431742668, -0.0010644918074831367, 0.009835304692387581, 0.005794733762741089, 0.01764657534658909, 0.0221744142472744, 0.004441629629582167, -0.008823287673294544, -0.03298425301909447, 0.004928897134959698, 0.011514503508806229, 0.0012144203064963222, -0.002505678916350007, 0.016162283718585968, 0.0017654072726145387, -9.979611058952287e-05, -0.008508438244462013, -0.026027575135231018, 0.011432042345404625, 0.0011900569079443812, -0.018621111288666725, -0.017241768538951874, 0.010060197673738003, 0.011222142726182938, 0.010165147483348846, 0.03556302189826965, -0.02445332705974579, 0.018006404861807823, 0.0023276389110833406, 0.01748165488243103, -0.008928237482905388, -0.016297219321131706, -0.023928577080368996, -0.0019265803275629878, -0.015120281837880611, -0.003540185047313571, 0.0032422023359686136, -0.013928350992500782, -0.009355533868074417, 0.03874150663614273, 0.0025712724309414625, -0.008658366277813911, -0.014633014798164368, 0.0008728645625524223, 0.004565320443361998, 0.01599736325442791, 0.013553529977798462, -0.006117079872637987, -0.004336679819971323, 0.014288178645074368, 0.0273769311606884, -0.023403827100992203, 0.008838281035423279, 0.033134181052446365, 0.00913813803344965, 0.00872583407908678, -0.0026462366804480553, -0.0073127588257193565, -0.005018854048103094, -0.02203947864472866, -0.004464118741452694, 0.002931100782006979, -0.00417175842449069, -0.01970059610903263, 0.003596408059820533, 0.017031868919730186, -0.00010811245010700077, 0.004265463910996914, -0.0032197129912674427, -0.010937279090285301, 0.004021829925477505, 0.0043741618283092976, 0.01839621737599373, -7.080603973008692e-05, 0.00777378911152482, 0.006559368688613176, -0.021079936996102333, 0.009722858667373657, -0.020795073360204697, 0.011207150295376778, -0.008988209068775177, 0.0006512515828944743, -0.0049176523461937904, -0.002535664476454258, 0.011919310316443443, -0.01405579037964344, -0.020855044946074486, -0.013186205178499222, 0.005671042948961258, 0.004857681225985289, -0.0005561407306231558, -0.006390699185431004, 0.005397423170506954, 0.020150380209088326, -0.018501168116927147, -0.016567090526223183, -0.0012500282609835267, 0.009235590696334839, -0.0011909939348697662, 0.023898590356111526, -0.023403827100992203, -0.000773068459238857, -0.013403601013123989, 0.026897160336375237, -0.01596737653017044, 0.0182013101875782, 0.003783818567171693, -0.026897160336375237, -0.013823401182889938, 0.008748323656618595, 0.005693532060831785, -0.00916062667965889, -0.007279024925082922, -0.0030622880440205336, 0.00536368926987052, 0.02599758841097355, -0.013561026193201542, 0.00952795147895813, -0.0035045768599957228, -0.014213214628398418, -0.005584833677858114, -0.003678868757560849, 0.00023730858811177313, -0.038351692259311676, -0.003069784492254257, 0.006952930707484484, -0.022264370694756508, 0.0015433257212862372, -0.015457620844244957, -0.0007238732068799436, 0.005198768340051174, 0.0046102991327643394, -0.02194952219724655, 0.01034506130963564, -0.005258739460259676, -0.0025675243232399225, 0.018486175686120987, -0.017166804522275925, -0.01146202813833952, -0.008853273466229439, -0.0023126460146158934, -0.008628381416201591, 0.004516593646258116, 0.014655503444373608, -0.023868605494499207, 0.0129613121971488, -0.0013249925104901195, -0.014370639808475971, -0.01968560181558132, -0.003215964650735259, 0.005925921257585287, 0.01835124008357525, -0.011207150295376778, 0.02131982147693634, -0.0028730034828186035, 0.005494876764714718, -0.009850298054516315, -0.005063832737505436, 0.014722971245646477, -0.00832852441817522, 0.008523430675268173, 0.0002530042256694287, 0.013418594375252724, -0.007057880517095327, 0.0037219731602817774, -0.02046523056924343, -0.04042070358991623, -0.004093045834451914, 0.009415505453944206, -0.0017223027534782887, -0.014198222197592258, -1.6544836398679763e-05, 0.021109921857714653, 0.0037913150154054165, 0.004640284925699234, 0.001853490131907165, 0.009880282916128635, -0.026522338390350342, -0.009857794269919395, -0.01554757822304964, -0.008913245052099228, 0.02376365475356579, 0.010165147483348846, -0.02206946350634098, 0.0034577243495732546, -0.0114695243537426, -0.01907089538872242, -0.024093497544527054, -0.015067806467413902, 0.005532358773052692, 0.001288447412662208, -0.007091614417731762, -0.008823287673294544, 0.02070511505007744, 0.003185979090631008, -0.00796869583427906, -0.005682287272065878, 0.0046815150417387486, -0.01214420236647129, 0.018846003338694572, 0.00031531823333352804, 0.003954362124204636, -0.04617795720696449, 0.012174188159406185, -0.00946048367768526, -0.007488925009965897, 0.015787463635206223, 0.010412529110908508, -0.015697507187724113, -0.0033134182449430227, 0.01818631775677204, -0.0006540627800859511, 0.006252015475183725, 0.002558153821155429, 0.013193701393902302, -0.006087094079703093, 0.013860883191227913, -0.0033209146931767464, 0.005569841247051954, -0.015412642620503902, 0.011566977947950363, 0.005228753667324781, -0.01760159805417061, 0.03127507120370865, -0.01985052414238453, 0.009123144671320915, 0.011701913550496101, -0.03340405225753784, -0.004786464851349592, -0.00916062667965889, -0.001125400303862989, 0.0023313870187848806, -0.001639842172153294, -0.004160513635724783, -0.005150041542947292, -0.0035589260514825583, 0.014318164438009262, -0.01221167016774416, 0.0036957357078790665, 0.003066036384552717, 0.0035383107606321573, -0.008103631436824799, 0.011297106742858887, 0.009572929702699184, 0.013568522408604622, 0.019565660506486893, 0.039131321012973785, 0.016372183337807655, 0.018831010907888412, -0.011147178709506989, 0.012339109554886818, -0.018636103719472885, 0.018021397292613983, 0.0094454912468791, -0.014460597187280655, -0.0016576461493968964, 0.020240338519215584, 0.01668703369796276, -0.025382881984114647, 0.01027009729295969, 0.011866834945976734, -0.005416164640337229, -0.017016876488924026, -0.000703726545907557, 0.010247607715427876, 0.002372617367655039, 0.02658230997622013, -0.0018028892809525132, -0.006334476172924042, -0.042999472469091415, -0.010839825496077538, -0.015532584860920906, -0.018006404861807823, 0.010584946721792221, 0.005517365876585245, 0.012743916362524033, 0.02671724557876587, 0.013740940019488335, 0.006255763582885265, -0.01408577524125576, 0.008538424037396908, 0.017841482535004616, 0.013643486425280571, 0.01755661889910698, 0.012376591563224792, -0.015075303614139557, -0.00760137103497982, 0.014100768603384495, -0.004055563826113939, 0.014730468392372131, -0.018126346170902252, -0.009767836891114712, 0.028636328876018524, -0.015007835812866688, 0.005041343159973621, -0.0024963084142655134, 0.0005659798043780029, 0.014378136023879051, 0.014610525220632553, -0.021859563887119293, -0.00267997058108449, -0.01027759350836277, 0.002717452822253108, -0.0035045768599957228, -0.0008639625739306211, -0.007050384301692247, 0.00018729340808931738, -0.007338996510952711, -0.010082686319947243, 0.010292586870491505, -0.017256762832403183, -0.023388834670186043, -0.004055563826113939, 0.003474591299891472, -0.00041534859337843955, 0.011589467525482178, -0.00027010543271899223, -0.009835304692387581, 0.026867173612117767, 0.016282226890325546, 0.018111353740096092, -0.0016276604728773236, -0.006791757885366678, -0.008545920252799988, -0.01524772122502327, 0.00399184413254261, -0.0029385972302407026, -0.006743031088262796, -0.010007722303271294, -0.004561572335660458, 0.003377137705683708, -0.01761659048497677, 0.008740827441215515, -0.011941798962652683, -0.00035280032898299396, -0.023118963465094566, -0.013808407820761204, 0.006892959587275982, 0.01914585940539837, -0.00277367583476007, 0.00436291703954339, -0.014400625601410866, 0.018786031752824783, -0.015307692810893059, -0.008958223275840282, 0.011162171140313148, 0.004205492325127125, 0.012009266763925552, 0.01489538885653019, 0.017211783677339554, -0.016971897333860397, 0.02656731754541397, -0.024813154712319374, 0.0010579325025901198, 0.008988209068775177, -0.00759762292727828, -0.0033509002532809973, -0.018816018477082253, 0.010937279090285301, 0.0013259295374155045, 0.032264597713947296, 0.02054019458591938, 0.01519524585455656, 0.010667407885193825, 0.006461915094405413, -0.0018403714057058096, 0.005015105940401554, -0.025292925536632538, 0.0017588478513062, 0.023793641477823257, 0.02574271149933338, -0.012309123761951923, -0.003026680089533329, -0.0006535942084155977, 0.0010129539296030998, 0.0033246628008782864, 0.026072554290294647, 0.008545920252799988, -0.010412529110908508, 0.027227003127336502, 0.003290928900241852, -0.012826376594603062, -0.0036057785619050264, 0.024138476699590683, 0.014670496806502342, -0.025442853569984436, 0.028681308031082153, 0.018051382154226303, -0.012736420147120953, 0.008216077461838722, -0.011596963740885258, -0.024678219109773636, -0.02055518701672554, -0.039850976318120956, -0.018066374585032463, 0.0038100562524050474, 0.0069266934879124165, -0.0027961651794612408, 0.008321027271449566, 0.005581085570156574, -0.005824719555675983, -0.001804763451218605, 0.010082686319947243, 0.027077073231339455, -0.00802117120474577, -0.02364371344447136, -0.008590898476541042, -0.02353876270353794, 0.008388495072722435, 0.015345174819231033, 0.004557824227958918, -0.006300742272287607, -0.001312810811214149, 0.003916880115866661, -0.008141113445162773, -0.006529382895678282, -0.001783211249858141, 0.0015536333667114377, 0.01293882355093956, 0.007938710041344166, 0.013890868984162807, -0.004108038730919361, -0.014273186214268208, 0.003195349592715502, 0.0021214871667325497, 0.007102859206497669, 0.0075376518070697784, 0.03346402570605278, -0.0006320420070551336, 0.004115535411983728, -0.004617795348167419, -0.011289610527455807, 0.005686035379767418, -0.004055563826113939, -0.018426204100251198, -0.015742484480142593, 0.018036389723420143, -0.022279364988207817, 0.0070091537199914455, 0.01562254223972559, -0.007518910802900791, 0.00013973798195365816, -0.004123031627386808, -0.01908588781952858, -0.011574474163353443, -0.024048520252108574, 0.022219393402338028, -0.004460370633751154, -0.019220823422074318, 0.010802343487739563, -0.0007519847713410854, 0.011267120949923992, 0.010944775305688381, 0.012084230780601501, -0.01371095422655344, -0.024873126298189163, 0.02048022300004959, -0.004048067610710859, -0.0027586829382926226, -0.001689505996182561, 0.006431929301470518, 0.006945434492081404, 0.015367663465440273, -0.03811180591583252, -0.014543057419359684, -0.01835124008357525, 0.020959993824362755, 0.0026574814692139626, -0.0030435470398515463, 0.015082799829542637, -0.0019172097090631723, 0.007140341214835644, 0.00947547610849142, -0.014108264818787575, -0.002560027875006199, 0.020765086635947227, 0.007908724248409271, -0.014288178645074368, 0.0002792417071759701, -0.004422888625413179, 0.00870334543287754, -0.007530155126005411, 0.007252787705510855, 0.009400512091815472, 0.012916333973407745, -0.008830783888697624, -0.0022901566699147224, 0.01175438892096281, -0.0033434038050472736, -0.005333703942596912, 0.003632016247138381, 0.005873445887118578, -0.007338996510952711, -0.0065106418915092945, -0.0032459504436701536, -0.016911925747990608, 0.01034506130963564, 0.014677993021905422, -0.0008995705866254866, -0.024648234248161316, 0.0010682400315999985, -0.0044903564266860485, 0.01890597492456436, 0.030015671625733376, 0.030240563675761223, 0.0005322459037415683, 0.003819426754489541, 0.01835124008357525, 0.021769607439637184, -0.006132072769105434, -0.009917765855789185, -0.0034839618019759655, -0.004021829925477505, -0.016162283718585968, -0.007563889026641846, -0.009295562282204628, -0.014025804586708546, 0.01823129691183567, 0.01033756509423256, 0.01824628934264183, -0.008943230845034122, -0.03139501437544823, 0.005569841247051954, -0.02517298236489296, 0.03040548413991928, -0.003214090596884489, 0.004108038730919361, 0.012286634184420109, 0.01138706412166357, -0.0014711726689711213, 0.032444510608911514, 0.00041464579408057034, -0.008171099238097668, 0.009625405073165894, -0.018696075305342674, 0.02806660160422325, 0.0032028460409492254, -0.02971581369638443, -0.03442356735467911, -0.002666851971298456, 0.014010811224579811, 0.020255330950021744, 0.022654185071587563, -0.013658479787409306, -0.008463460020720959, 0.01826128177344799, 0.01674700528383255, 0.008883259259164333, 0.020105402916669846, 0.016941912472248077, -0.013988322578370571, 0.0004385406500659883, 0.005191271658986807, -0.006761772092431784, -0.010967263951897621, 0.01913086697459221, -0.004108038730919361, 0.0026349921245127916, 0.0031260077375918627, 0.008853273466229439, 0.01748165488243103, -0.01829126849770546, 0.0033209146931767464, -0.0036207714583724737, 0.009580426849424839, -0.019550666213035583, 0.0006948245572857559, 0.008523430675268173, -0.018860995769500732, 0.0011450783349573612, -0.012653958983719349, 0.009243087843060493, -0.024918105453252792, 0.011304602958261967, 0.006589354481548071, 0.0018375603249296546, -0.02064514346420765, -0.007072873413562775, -0.020360279828310013, 0.00029470305889844894, 0.022969035431742668, 0.01764657534658909, 0.009782830253243446, 0.001241594785824418, 0.013298651203513145, 0.01598237082362175, -0.00047110323794186115, -0.015457620844244957, -0.0072265500202775, -0.005753503181040287, -0.002230185316875577, 0.029206058010458946, -0.008890755474567413, 0.016537105664610863, 0.004329183138906956, -0.003946865908801556, -0.009790326468646526, -0.0008827036363072693, -0.002998568583279848, -0.014550553634762764, 0.005989640485495329, -0.008943230845034122, -0.017316732555627823, 0.01587742008268833, 0.003845664206892252, 0.024948090314865112, 0.0353231355547905, -0.0032534468919038773, 0.009992729872465134, 0.001593926572240889, 0.010899797081947327, -0.006746779195964336, -0.002363246865570545, 0.010937279090285301, -0.019655616953969002, 0.0004600928514264524, -0.013441083021461964, 0.00025628390721976757, -0.005641057156026363, -0.005082573741674423, 0.001830063876695931, 0.017076848074793816, 0.02350877784192562, -0.0001587133010616526, -0.014273186214268208, 0.013088751584291458, 0.0008232007967308164, 0.02505303919315338, 0.020090408623218536, -5.9385711210779846e-05, 0.01895095221698284, 0.004156765528023243, 0.014468093402683735, 0.007488925009965897, 0.0015030325157567859, -0.0059034316800534725, 0.002252674661576748, -0.0033415297511965036, 0.0005692595150321722, 0.005386178847402334, 0.007286521606147289, 0.005817222874611616, -0.0021514729596674442, -0.01027759350836277, -0.00276805367320776, -0.0017813370795920491, 0.023283883929252625, 0.007057880517095327, -0.013388608582317829, 0.008845777250826359, -0.017751526087522507, 0.01145453192293644, 0.01670202612876892, -0.016582084819674492, 0.00721905380487442, 0.010450011119246483, -0.006964175496250391, 0.008673359639942646, -0.03274436667561531, -0.00907067023217678, -0.01071238610893488, 0.005689783953130245, 0.004838939756155014, -0.002972331130877137, -0.0031091407872736454, 0.013493558391928673, -0.01974557340145111, -0.002085879212245345, -0.009707865305244923, -0.006743031088262796, -0.013088751584291458, -0.0028505141381174326, 0.007316507399082184, -0.024543283507227898, -0.020240338519215584, 0.01257149875164032, 0.014025804586708546, 0.008898251689970493, -0.02443833276629448, -0.026012582704424858, -0.010922285728156567, -0.0077363066375255585, 0.008748323656618595, -0.010802343487739563, 0.0055960784666240215, 0.002372617367655039, 0.008853273466229439, 0.006615591701120138, 0.0016314086969941854, 0.030090635642409325, -0.01184434536844492, -0.009010698646306992, 0.012166691944003105, -0.01685195602476597, -0.010240111500024796, -0.01176938135176897, 0.014790439046919346, -0.010667407885193825, -0.013208694756031036, -0.03712227940559387, -0.026447374373674393, -0.005487380549311638, 0.007012902293354273, -0.024543283507227898, 0.0060196262784302235, 0.024693211540579796, -0.004340427927672863, 0.009872786700725555, 0.02425841987133026, 0.011896820738911629, -0.0033434038050472736, 0.014955360442399979, -0.003954362124204636, 0.014655503444373608, -0.025502825155854225, -0.009580426849424839, 0.029131093993782997, -0.0001685523457126692, 0.0022620451636612415, 0.006649325601756573, 0.00473398994654417, -0.001964062452316284, 0.01586242765188217, -0.004895163234323263, 0.00951295904815197, 0.006491900887340307, -0.0047939615324139595, -0.020915014669299126, 0.004662774037569761, -0.00741021241992712, -0.004501601215451956, -0.01685195602476597, 0.004085549619048834, -0.011994274333119392, -0.011514503508806229, -0.013396104797720909, -0.010247607715427876, 0.013043773360550404, -0.005007609259337187, 0.001962188398465514, 0.008883259259164333, 0.002299527171999216, 0.0008002429967746139, -0.014325661584734917, -0.0016079823253676295, -0.0038681533187627792, 0.013231183402240276, -0.010899797081947327, -0.003382760100066662, -0.0020521453116089106, 0.011919310316443443, 0.00796869583427906, 0.009183116257190704, 0.022984027862548828, 0.012346605770289898, 0.00946797989308834, -0.0037669516168534756, -0.03208468481898308, 0.011297106742858887, 0.01761659048497677, -0.028531379997730255, 0.015037821605801582, -0.013021283783018589, -0.00398059980943799, -0.0010738623095676303, -0.010689896531403065, 0.008748323656618595, 0.01602734811604023, -0.002059641759842634, -0.017301740124821663, -0.017166804522275925, -0.0029479677323251963, -0.009378023445606232, 0.04947638139128685, 0.03283432498574257, 0.016327206045389175, -0.005337452050298452, 0.004872673656791449, -0.008013674058020115, 0.0015826818998903036, 0.0166720412671566, -0.0006114268908277154, 0.019385745748877525, 0.017256762832403183, 0.01295381598174572, 0.023058991879224777, 0.008988209068775177, -0.011544489301741123, 0.02506803348660469, 0.0031990977004170418, -0.012976305559277534, -0.011806863360106945, 0.01294631976634264, -0.0009370526531711221, 0.004224233329296112, -0.014835418201982975, -0.008838281035423279, -0.00019502408395055681, -0.007380226626992226, 0.012788894586265087, -0.015382656827569008, -0.005007609259337187, -0.004153017420321703, 0.030735326930880547, 0.0023782397620379925, -0.02958087809383869, 0.016462141647934914, 0.0221744142472744, 0.002020285464823246, 0.009970240294933319, 0.005067580845206976, 0.002443833276629448, 0.0035776670556515455, -0.015150267630815506, -0.0018450566567480564, 0.003371515544131398, 0.007458939217031002, -0.018591124564409256, -0.01818631775677204, 0.008073645643889904, 0.01369596179574728, -0.01101973932236433, 0.005476135760545731, 0.008066149428486824, 0.01679198443889618, -0.00629699369892478, 0.015060310252010822, 0.015517592430114746, 0.013261169195175171, 0.01481292862445116, -0.010952271521091461, -0.008598395623266697, 0.013411098159849644, 0.004587810020893812, -0.0009895276743918657, 0.003187853144481778, 0.004689011722803116, -0.0025394128169864416, 0.015307692810893059, 0.01899593137204647, 0.012414073571562767, -0.0027980392333120108, 0.008231070823967457, 0.006945434492081404, -0.004419140517711639, -0.009692872874438763, -0.00435542082414031, -0.014692985452711582, -0.011551985517144203, -0.02886122278869152, -0.017706546932458878, -0.01895095221698284, -0.009130640886723995, 0.002936722943559289, -0.013418594375252724, 0.004029326606541872, -0.004561572335660458, -0.01519524585455656, -0.008156106807291508, 0.0011853716569021344, 0.004115535411983728, 0.024123484268784523, 0.013598508201539516, 0.008425978012382984, 0.006304490379989147, -0.01595238409936428, 0.006967923603951931, 0.01487290021032095, 0.009505461901426315, -0.01818631775677204, -0.0008194525726139545, 0.005974647589027882, 0.008860769681632519, -0.005254991352558136, 0.008538424037396908, 0.01102723553776741, 0.015682512894272804, 0.0060233743861317635, -0.02122986502945423, -0.02733195200562477, -0.019490694627165794, 0.01598237082362175, 0.012916333973407745, -0.007346492726355791, 0.022234385833144188, -0.002631243783980608, 0.003568296553567052, 0.00416426220908761, 0.01985052414238453, 0.0074252053163945675, 0.007848753593862057, 0.003969355020672083, -0.00741021241992712, -0.005153789650648832, 0.0030323024839162827, 0.019460709765553474, 0.009835304692387581, -0.015232727862894535, -0.01138706412166357, 0.008568409830331802, 0.0023107719607651234, -0.005329955369234085, -0.001547073945403099, -0.0017916447250172496, -0.01295381598174572, -0.014670496806502342, 0.02739192359149456, -0.01745166815817356, 0.002044648863375187, 0.0036282679066061974, 0.008830783888697624, 0.007196564693003893, 0.010854817926883698, -0.03298425301909447, 0.02220439910888672, 0.008560913614928722, 0.011536992155015469, -0.003632016247138381, -0.004970127250999212, -0.0077363066375255585, 0.012751412577927113, 0.014633014798164368, 0.012803887948393822, -0.006611843593418598, 0.0030491694342345, 0.005247495137155056, 0.0058996835723519325, -0.0020071668550372124, 0.007515162229537964, -0.02743690274655819, 0.026327431201934814, 0.005007609259337187, 0.010180139914155006, -0.004029326606541872, 0.016267234459519386, 0.009280569851398468, 0.013246176764369011, 0.01289384439587593, 0.002505678916350007, -0.015412642620503902, 0.030705342069268227, -0.02961086481809616, -0.005127551965415478, -0.006034619174897671, -0.004996364936232567, -0.014588035643100739, 0.009722858667373657, -0.011851842515170574, 0.023808633908629417, 0.002470070729032159, -0.004392902832478285, -0.023838620632886887, -0.010787350125610828, 0.00314662279561162, 0.0006845169700682163, 0.008358510211110115, 0.0027005858719348907, -0.013538536615669727, 0.012841369956731796, -0.007923717610538006, 0.023493783548474312, 0.006042115390300751, -0.011529495939612389, 0.011222142726182938, -0.003285306738689542, -0.0059071797877550125, 0.007080370094627142, -0.0074252053163945675, 0.020195359364151955, 0.0022170667070895433, -0.02286408469080925, -0.02815655805170536, 0.0034314868971705437, 0.010322571732103825, 0.005389926955103874, -0.020075416192412376, 0.01826128177344799], "b8fe2fb5-e262-498e-a07d-05ad188e6b6e": [-0.030501186847686768, 0.013321633450686932, -0.003889413084834814, 0.007156834937632084, -0.032784443348646164, -0.026643266901373863, -0.004503530915826559, 0.013242900371551514, -0.035681821405887604, 0.04664146155118942, 0.026312587782740593, 0.021525617688894272, -0.00731036439538002, 0.0056490967981517315, -0.03138299658894539, 0.002312783617526293, 0.016234755516052246, 0.025084352120757103, -0.00485389307141304, -0.029320189729332924, 0.07382011413574219, -0.013912131078541279, -0.030611412599682808, 0.031178290024399757, -0.039586979895830154, 0.000284177134744823, -0.018218830227851868, -0.004239775240421295, -0.043271686881780624, -0.006483667064458132, 0.030642906203866005, 0.0026828288100659847, 0.008290590718388557, -0.0015913918614387512, -0.015085253864526749, -0.021163444966077805, -0.00446416437625885, 0.019368331879377365, 0.018706973642110825, 0.005235748365521431, -0.020612314343452454, 0.03335132449865341, 0.0018482585437595844, 0.001905340002849698, -0.03605974093079567, 0.012424075976014137, -0.02278534695506096, -0.00965267326682806, -0.0008926360169425607, -0.011463533155620098, 0.004668870475143194, 0.019179372116923332, -0.0016248534666374326, -0.021257925778627396, 0.01262090913951397, -0.04342915490269661, 0.05590046942234039, 0.0993926078081131, -0.020376116037368774, -0.05379042401909828, 0.016037924215197563, -0.021242178976535797, -0.03886263817548752, 0.006259277928620577, 0.007026925217360258, -0.02467494085431099, -0.007522943429648876, -0.005109775345772505, -0.019069146364927292, 0.025178831070661545, 0.008637016639113426, 0.0022104305680841208, -0.034642543643713, 0.023179011419415474, 0.0006657864432781935, 0.006845839321613312, 0.0033619015011936426, 0.002869819989427924, 0.03820127993822098, 0.013290139846503735, 0.007660726550966501, 0.0035587341990321875, -0.010802175849676132, 0.019557291641831398, 0.06182119622826576, 0.00530660804361105, -0.006826156284660101, -0.05334952101111412, -0.034988969564437866, -0.015163986943662167, -0.04988526552915573, 0.024627700448036194, -0.004113802220672369, 0.013227153569459915, 0.03059566579759121, 0.005153078585863113, 0.0006392140057869256, 0.02020290307700634, 0.018486522138118744, 0.0063616312108933926, 0.003920906223356724, 0.030091773718595505, -0.025714216753840446, -0.004318508319556713, -0.0015451362123712897, -0.024265527725219727, 0.004538960754871368, 0.011227333918213844, -0.009487333707511425, 0.03448507934808731, 0.019919464364647865, -0.0558374859392643, 0.016030050814151764, 0.012833488173782825, -0.050294678658246994, -0.01334525365382433, -0.013959371484816074, -0.0346110537648201, 0.010030591860413551, -0.028658833354711533, 0.019809236750006676, -0.022911319509148598, 0.05857739597558975, -0.023982089012861252, -0.008904708549380302, 0.023982089012861252, -0.020013943314552307, 0.016722900792956352, 0.010983261279761791, 0.014715208671987057, 0.009991224855184555, -0.013715298846364021, 0.015140366740524769, 0.012770501896739006, 0.0018836883828043938, 0.03417014703154564, 0.014896294102072716, 0.045161280781030655, 0.0011642650933936238, 0.03760290890932083, -0.036658111959695816, -0.042232412844896317, -0.039114583283662796, -0.006227784790098667, 0.016329236328601837, 0.0245804600417614, -0.035335395485162735, 0.04220091924071312, -0.024312768131494522, 0.035429876297712326, -0.05158589780330658, -0.029997294768691063, -0.02580869570374489, 0.015833217650651932, 0.06279748678207397, -0.04931838810443878, -0.005507377441972494, 0.03256399184465408, 0.0039917659014463425, 0.03807530552148819, 0.029666615650057793, -0.04859404265880585, -0.016006430611014366, 0.03423313423991203, 0.02801322191953659, 0.044940829277038574, 0.05149142071604729, 0.011432039551436901, -0.03593376651406288, 0.020486341789364815, 0.03196562081575394, -0.012329597026109695, 0.025478016585111618, -0.002503711264580488, -0.003592195687815547, -0.04065775126218796, 0.022360188886523247, -0.020013943314552307, 0.02502136491239071, -0.06544291973114014, -0.024391500279307365, -0.006763169541954994, 0.004641313571482897, -0.020596567541360855, -0.0412876158952713, 0.018722720444202423, -0.020801274105906487, 0.0022911319974809885, 0.027099918574094772, 0.03492598235607147, -0.007794572506099939, -0.021037472411990166, 0.020124169066548347, 0.01864398829638958, 0.005027105566114187, -0.04037431254982948, -0.023588424548506737, -0.009487333707511425, -0.011550139635801315, 0.006239594891667366, -0.0011918216478079557, -0.03357177600264549, -0.002716290531679988, 0.052184268832206726, 0.0011071836343035102, -0.0008513011853210628, -0.014408149756491184, -0.06386825442314148, 0.01540018618106842, -0.023241998627781868, 0.049412865191698074, -0.03133575618267059, 0.01467584166675806, 0.015045886859297752, -0.01798263005912304, 0.027525076642632484, -0.030879104509949684, 0.015093127265572548, -0.004212218336760998, -0.015817470848560333, -0.0009570987313054502, -0.00770009309053421, 0.004322445020079613, -0.004531087353825569, -0.03319385647773743, -0.0061175585724413395, -0.012077650986611843, 0.02110045962035656, 0.012368963100016117, -0.013242900371551514, 0.012235117144882679, 0.006995432078838348, 0.02155711129307747, -0.0010491180000826716, -0.008574030362069607, 0.04116164147853851, 0.029052497819066048, 0.003133575664833188, -0.043145716190338135, -0.024533221498131752, -0.0022025571670383215, 0.018061364069581032, -0.015242720022797585, -0.02267512120306492, 0.026548786088824272, -0.0022104305680841208, -0.02401358261704445, 0.032343540340662, 0.006940319202840328, 0.01609303615987301, 0.0059719025157392025, 0.041822999715805054, -0.014762448146939278, -0.011211587116122246, -0.0005102886352688074, 0.0023915166966617107, 0.04261033236980438, -0.006412807386368513, -0.006956065539270639, 0.01930534653365612, -0.001554977847263217, 0.00045296113239601254, -0.02755657024681568, -0.0012370931217446923, 0.040122367441654205, -0.057443637400865555, 0.03316236287355423, -0.0025135527830570936, 0.015423805452883244, 0.06607278436422348, 0.00692457240074873, -0.013597198761999607, 0.0063695041462779045, 0.007085975259542465, -0.01695910096168518, -0.013353126123547554, -0.0031375123653560877, 0.03426462784409523, 0.022942813113331795, -0.00035971164470538497, -0.0022497971076518297, -0.02914697863161564, 0.02713141217827797, 0.04216942563652992, 0.015329326502978802, 0.024485981091856956, 0.0040586888790130615, -4.5825097913620993e-05, -0.014699461869895458, -0.018155843019485474, -0.0038716981653124094, 0.006739549804478884, 0.026611773297190666, 0.04301974177360535, -0.00323789706453681, -0.0036532138474285603, 0.00491687934845686, -0.03300489857792854, 0.01908489316701889, -0.013179914094507694, 0.0005299719050526619, 0.005042852368205786, -0.018817201256752014, -0.029509149491786957, 0.05338101461529732, -0.009802266024053097, 0.021194938570261, 0.0435551255941391, -0.03725648298859596, 0.035902272909879684, 0.027777021750807762, 0.002625747350975871, 0.013857018202543259, -0.0015963127370923758, 0.011857198551297188, -0.0009290500893257558, -0.021509870886802673, -0.03215457871556282, -0.006294707767665386, -0.027934487909078598, -0.007038735318928957, 0.0006972796400077641, -0.04119313508272171, 0.020612314343452454, 0.037130508571863174, -0.023304985836148262, 0.018581001088023186, -0.03451657295227051, -0.04198046773672104, -0.04339766129851341, -0.05032616853713989, -0.01048724353313446, -0.024076567962765694, -0.009188148193061352, -0.0524362176656723, -0.007180454675108194, -0.06049847975373268, -0.028753312304615974, 0.013022447936236858, -0.0424528643488884, -0.009503079578280449, -0.007936292327940464, 0.028312407433986664, -0.04490933567285538, -0.029398923739790916, -0.04903494939208031, 0.013975117355585098, 0.01455774251371622, -0.004350001458078623, 0.005373531021177769, 0.0009010014473460615, -0.025478016585111618, 0.03002878837287426, 0.023037292063236237, 0.03785485401749611, -0.01809285581111908, -0.05760110542178154, -0.016037924215197563, 0.005771133117377758, 0.02086425945162773, -0.02869032695889473, -0.03810679912567139, -0.03694155067205429, -0.016124529764056206, 0.009290500544011593, 0.022911319509148598, -0.00028466922231018543, -0.017132313922047615, 0.0234467051923275, 0.006101811770349741, -0.02878480590879917, 0.006778916344046593, 0.035776302218437195, -0.027210144326090813, 0.003771313466131687, -0.022517655044794083, 0.039681460708379745, 0.0008837785571813583, 0.020801274105906487, 0.02476941980421543, 0.012683895416557789, 0.0046058837324380875, -0.013014574535191059, -0.014022357761859894, 0.019132133573293686, -0.0034032363910228014, 0.002194683998823166, -0.019730504602193832, -0.006428554188460112, 0.021604351699352264, -0.042389877140522, 0.013880638405680656, -0.03407566621899605, -0.003289073472842574, 0.0016563467215746641, -0.020234394818544388, -0.003513462608680129, 0.008361450396478176, 0.007058418355882168, -0.015675751492381096, -0.005952219013124704, 0.03313086926937103, 0.021021725609898567, 0.0034583494998514652, 0.03983892872929573, -0.014069597236812115, -0.0028973764274269342, -0.026973946020007133, 0.009164527989923954, 0.0345795601606369, 0.018155843019485474, 0.028170688077807426, 0.01820308342576027, 0.002269480377435684, 0.02980833500623703, 0.0009344629943370819, -0.011668238788843155, 0.03272145986557007, -0.03070589154958725, -0.01653394289314747, 0.027777021750807762, 0.006566336844116449, 0.008644890040159225, 0.024722179397940636, -0.02199801616370678, 0.04859404265880585, -0.00530267134308815, 0.025934668257832527, 0.0020293444395065308, -0.03417014703154564, 0.014187697321176529, 0.02387186326086521, -0.00016767680062912405, -0.012187877669930458, 0.0022045255172997713, 0.010266791097819805, 0.016581181436777115, -0.011148600839078426, 0.012038283981382847, 0.014636475592851639, 0.01640796847641468, 0.03113105148077011, 0.006487603764981031, -0.032343540340662, -0.029761096462607384, 0.001018608920276165, -0.034107159823179245, -0.004503530915826559, 0.034012679010629654, 0.005223938263952732, 0.012235117144882679, 0.003149322234094143, -0.019132133573293686, -0.02568272314965725, -0.007940229028463364, -0.024643447250127792, -0.00649941386654973, -0.04289377108216286, 0.01262090913951397, -0.05908128619194031, -0.039366528391838074, 0.007861495949327946, 0.04207494482398033, -0.004263394977897406, 0.032343540340662, -0.022627880796790123, -0.018801454454660416, -0.005184571724385023, -0.005810499656945467, 0.021242178976535797, -0.024060823023319244, 0.014754574745893478, -0.0014595140237361193, 0.03920906409621239, -0.016219010576605797, -0.0017518105451017618, -0.02958788350224495, 0.017384259030222893, -0.011794212274253368, 0.014408149756491184, 0.009164527989923954, 0.011998917907476425, -0.02913123182952404, -0.0034819694701582193, 0.007652853149920702, -0.026407066732645035, -0.04097268357872963, -0.042263906449079514, -0.01428217627108097, 0.015329326502978802, 0.020785527303814888, -0.0089362021535635, -0.0053577846847474575, -0.004176788497716188, 0.021714577451348305, 0.014140456914901733, 0.01540805958211422, -0.0284698735922575, -0.019006159156560898, -0.012707515619695187, -0.0003988321404904127, -0.004574390593916178, 0.0015815503429621458, 0.02936743013560772, -0.0379808284342289, 0.03124127723276615, -0.021809056401252747, 0.023037292063236237, -0.011455659754574299, 0.010731315240263939, 0.00695212883874774, -0.0021651589777320623, -0.03539838269352913, 0.009219640865921974, 0.016927607357501984, -0.0004318015999160707, -0.0312727689743042, -0.01876996085047722, 0.03820127993822098, 0.01306181401014328, -0.03772887960076332, 0.00530267134308815, -0.0301547609269619, -0.004109865520149469, 0.024422993883490562, 0.005904979072511196, -0.005869549233466387, -0.017274033278226852, -0.014778194949030876, -0.001969310687854886, -0.020565073937177658, 0.0015697403578087687, -0.02265937440097332, 0.01608516275882721, 0.02276960015296936, -0.01675439439713955, -0.01974625140428543, 0.02412380836904049, 0.028202181681990623, 0.03870517015457153, -0.017148060724139214, 0.011865071952342987, 0.002598190912976861, 0.0010688012698665261, -0.029950054362416267, 0.010621089488267899, 0.02859584614634514, 0.016234755516052246, -0.025478016585111618, 0.019935209304094315, -0.0019092765869572759, -0.011605252511799335, -0.030989332124590874, -0.0043539381586015224, 0.011739098466932774, -0.0061175585724413395, -0.018581001088023186, 0.0015480887377634645, -0.01653394289314747, -0.010046337731182575, 0.018234575167298317, -0.007932355627417564, -0.006188418250530958, 0.026706252247095108, 0.007641043048352003, -0.016439462080597878, -0.035114943981170654, 0.045035310089588165, -0.013140547089278698, -0.006881269160658121, 0.029776841402053833, -0.043145716190338135, 0.046956393867731094, 0.03728797659277916, 0.01974625140428543, 0.018376296386122704, -0.01189656462520361, -0.0027615618892014027, -0.015376565977931023, -0.029619375243782997, -0.005338101182132959, -0.029099738225340843, 0.011306066997349262, -0.018218830227851868, -0.01966751739382744, 0.008668509311974049, -0.03760290890932083, -0.022186975926160812, 0.009936111979186535, -0.00776307936757803, -0.014376656152307987, 0.055648524314165115, -0.010502989403903484, 0.035429876297712326, -0.019714757800102234, 0.026706252247095108, -0.0024997745640575886, 6.446269253501669e-05, 0.016392221674323082, -0.02858009934425354, 0.028627339750528336, 0.02445448748767376, 0.01132968720048666, -0.008392944000661373, -0.03804381191730499, -0.011093487963080406, 0.01888018660247326, 0.0368785634636879, -0.027981728315353394, 0.004109865520149469, -0.0009452887461520731, 0.0019653739873319864, 0.010739188641309738, -0.016376476734876633, 0.006566336844116449, -0.03587077930569649, -0.004936562851071358, 0.020596567541360855, 0.021478377282619476, -0.009180274792015553, 0.01333738025277853, -0.028107700869441032, 0.004590137396007776, -0.0028009284287691116, 0.050861556082963943, 0.018266068771481514, -0.00263755745254457, -0.014699461869895458, 0.019242359325289726, 0.01842353492975235, -0.021793309599161148, -0.004999549128115177, -0.014935661107301712, -0.02700543776154518, -0.005420770961791277, -0.018895933404564857, -0.03158770129084587, 0.02834390103816986, 0.029776841402053833, -0.023714397102594376, -0.02299005351960659, 0.014667968265712261, 0.02187204360961914, 0.019824983552098274, -0.0032438018824905157, 0.01651819609105587, 0.010353396646678448, 0.00931412074714899, 0.02412380836904049, 0.0037595033645629883, -0.0161875169724226, 0.0006948192021809518, -0.012605162337422371, 0.0032733269035816193, 0.02979258820414543, -0.030753131955862045, -0.020281635224819183, 0.03842173144221306, 0.017163805663585663, -0.0073457942344248295, 0.024060823023319244, -0.019179372116923332, -0.006231721490621567, 0.010062084533274174, 0.01662842184305191, -0.017022086307406425, 0.030831865966320038, 0.021352404728531837, 0.014313669875264168, 0.014093217439949512, 0.0032477385830134153, -0.04295675456523895, 0.026643266901373863, -0.0212106853723526, 0.017699191346764565, 0.009660545736551285, 0.012030411511659622, -0.008455930277705193, -0.011597379110753536, 0.006810409482568502, -0.023966342210769653, -0.028107700869441032, -0.020061183720827103, 0.02691095881164074, 0.001461482373997569, -0.00886534247547388, -0.012117017060518265, 0.001695713261142373, -0.01345547940582037, -0.002584412693977356, -0.02199801616370678, 0.023163264617323875, -0.00524755846709013, 0.012904347851872444, 0.002899344777688384, -0.01897466741502285, 0.023840369656682014, -0.04119313508272171, 0.03138299658894539, -0.024753673002123833, -0.019447065889835358, -0.0019624214619398117, 0.032438021153211594, -0.023604171350598335, 0.016707153990864754, 0.009518826380372047, -0.009211767464876175, 0.01597493700683117, 0.011550139635801315, 0.008904708549380302, 0.0028934399597346783, 0.02097448706626892, -0.01351059228181839, 0.038925621658563614, 0.03185539320111275, 0.02064380794763565, -0.008038644678890705, -0.0036217207089066505, -0.03602824732661247, 0.0097707724198699, 0.0011022627586498857, 0.021494124084711075, -0.0032733269035816193, -0.027320370078086853, -0.015793850645422935, 0.013479099608957767, 0.009581812657415867, 0.00775914266705513, -0.0017862562090158463, 0.015093127265572548, 0.0368785634636879, -9.976954606827348e-05, 0.01684887334704399, 0.010195930488407612, -0.011613125912845135, -0.006345884408801794, 0.018155843019485474, -0.009589686058461666, -0.0036256571765989065, -0.026611773297190666, 0.028942272067070007, -0.012101271189749241, 0.03190263360738754, -0.03993340581655502, -0.0004409051325637847, 0.004645250272005796, 0.016171770170331, -0.01300670113414526, -0.0030843676067888737, 0.025178831070661545, 0.03514643758535385, -0.02713141217827797, 0.038673676550388336, 0.033099375665187836, 0.0069836219772696495, -0.010904528200626373, 0.020927246659994125, 0.012431949377059937, 0.018581001088023186, 0.020013943314552307, 0.000745011551771313, -0.00015414456720463932, -0.014219189994037151, -0.014510502107441425, 0.01500652078539133, 0.0014585298486053944, 0.00031567036057822406, -0.0030883040744811296, 0.03565032780170441, 0.015833217650651932, 0.02177756279706955, 0.038673676550388336, 0.013542085886001587, 0.011935931630432606, -0.03206010162830353, -0.029178470373153687, -0.013707425445318222, -0.008707876317203045, -0.02580869570374489, 0.0034642545506358147, -0.002783213509246707, -0.037445440888404846, 0.0010245138546451926, -0.020486341789364815, 0.020911499857902527, -0.01513249333947897, 0.0251000989228487, 0.023698650300502777, -0.024706432595849037, 0.008432310074567795, 0.009991224855184555, -0.018014123663306236, -0.027509329840540886, 0.013738918118178844, 0.023273492231965065, -0.036437660455703735, -0.01256579626351595, 0.0005565442843362689, -0.0023560866247862577, -0.002078552730381489, 0.02757231704890728, 0.004842082969844341, 0.03983892872929573, 0.02621810883283615, 0.014061723835766315, 0.017620457336306572, 0.0019466748926788568, -0.003920906223356724, -0.008723623119294643, -0.011014754883944988, -0.0005230827373452485, 0.010085704736411572, 0.0037811549846082926, 0.04201195761561394, -0.023745890706777573, 0.004570453893393278, -0.015549778938293457, 0.0035587341990321875, 0.053979385644197464, -0.002025407971814275, -0.002192715648561716, -0.012967334128916264, -0.010691949166357517, 0.025698469951748848, 0.0008316179155372083, -0.002052964409813285, 0.014321543276309967, -0.010416383855044842, 0.017793670296669006, -0.0038303632754832506, 0.013628692366182804, -0.010329777374863625, -0.01210914459079504, 0.0036532138474285603, -0.026958199217915535, 0.01943131908774376, -0.00566484360024333, -0.018832948058843613, -0.020942993462085724, 0.017714938148856163, -0.02020290307700634, -0.053853411227464676, -0.0008316179155372083, -0.01105412095785141, -0.015352945774793625, 0.01105412095785141, 0.006460047326982021, -0.011219460517168045, 0.03653213754296303, 0.040027886629104614, 0.010628962889313698, -0.0005442422698251903, -0.007097784895449877, 0.021714577451348305, -0.050830062478780746, 0.003850046545267105, -0.012872855179011822, 0.0323750339448452, -0.019462810829281807, 0.007841812446713448, 0.011298193596303463, -0.019336838275194168, -0.013266520574688911, -0.007869369350373745, -0.003800838254392147, 0.005460137501358986, -0.009857378900051117, -0.01908489316701889, 0.01094389520585537, -0.009534573182463646, 0.0021868105977773666, 0.01104624755680561, -0.013030321337282658, 0.0050743455067276955, 0.0034111097920686007, 0.03303639218211174, -0.00443660793825984, 0.028438379988074303, -0.009810138493776321, -0.012896474450826645, -0.027399104088544846, 0.047050874680280685, -0.0072670611552894115, 0.0009531620889902115, -0.0346110537648201, 0.01595919020473957, -0.004247648641467094, -0.005164888687431812, -0.005948282312601805, -0.014195569790899754, -0.005676653236150742, -0.02075403369963169, -0.029068244621157646, -0.03341430798172951, -0.025934668257832527, -0.0006116574513725936, 9.77397066890262e-05, -0.022911319509148598, -0.015368692576885223, 0.02990281581878662, 0.001607138547115028, -0.005097965244203806, -0.06427767127752304, -0.03832725062966347, 0.029430417343974113, -0.027210144326090813, 0.0064482372254133224, -0.005987648852169514, 0.00610968517139554, 0.05716019868850708, 0.011998917907476425, 0.0009989256504923105, -0.022486161440610886, 0.005881359335035086, 0.054861195385456085, -0.007648916449397802, 0.010085704736411572, -0.016896113753318787, -0.011565886437892914, 0.00803077220916748, -0.00491294264793396, 0.01629774272441864, 0.019557291641831398, -0.0025804759934544563, -0.0035213360097259283, 0.017699191346764565, -0.020628061145544052, -0.011313940398395061, 0.01572299189865589, 0.03772887960076332, 0.016565434634685516, 0.005369594320654869, 0.002700543962419033, -0.006971812341362238, 0.011754845269024372, -0.012187877669930458, -0.020565073937177658, -0.004708237014710903, -0.01708507351577282, -0.010353396646678448, 0.015289959497749805, -0.003617784008383751, 0.044814854860305786, -0.001450656563974917, -0.005361721385270357, -0.004121675621718168, 0.014841181226074696, 0.013534212484955788, -0.005227874964475632, 0.014360909350216389, 0.015384439378976822, 0.014439642429351807, -0.011613125912845135, -0.024375755339860916, 0.008849595673382282, 0.007459957152605057, -0.004609820432960987, 0.009235387668013573, -0.0021868105977773666, -0.0009684166288934648, -0.0076764728873968124, 0.0013109054416418076, 0.0063695041462779045, 0.011975297704339027, -0.02043910138309002, 0.01575448550283909, -0.011250954121351242, 0.0368785634636879, -0.023966342210769653, -0.016360729932785034, -0.021809056401252747, -0.02949340268969536, 0.022848332300782204, 0.04122462868690491, -0.016234755516052246, 0.014305796474218369, -0.02076978050172329, -0.02108471281826496, -0.012857108376920223, -0.008668509311974049, 0.04368110001087189, -0.004062625579535961, -0.027666795998811722, -0.01138480007648468, -0.00926688127219677, 0.016691407188773155, -0.009731405414640903, 0.009605432860553265, -0.029099738225340843, 0.012069777585566044, -0.009227514266967773, -0.017274033278226852, 0.01876996085047722, -0.018502268940210342, 0.02813919447362423, -0.011998917907476425, -0.002663145773112774, -0.03091059811413288, -0.003135544015094638, -0.03360326960682869, -0.023698650300502777, -0.011361179873347282, -0.03146173059940338, 0.045791145414114, -0.008345703594386578, 0.014904167503118515, 0.02253340184688568, -0.03536688908934593, 0.0007105658296495676, 0.024155301973223686, -0.026879465207457542, 0.007892988622188568, 0.009007061831653118, 0.004113802220672369, -0.01695910096168518, -0.0005132411024533212, 0.020486341789364815, -0.01150289922952652, -0.011140727438032627, 0.017604712396860123, -0.005475884303450584, -0.004507467616349459, 0.002533236052840948, -0.004696426913142204, -0.01963602378964424, -0.003157195635139942, 0.026202362030744553, 0.012117017060518265, 0.016140276566147804, -0.007593803573399782, -0.012510682456195354, -0.019037652760744095, -0.0037417884450405836, -0.00041334854904562235, -0.0017153965309262276, -0.012526429258286953, -0.029887069016695023, -0.08251224458217621, -0.013258647173643112, 0.003678802167996764, 0.0262496005743742, 0.0033343450631946325, -0.030942091718316078, 0.03080037236213684, 0.02110045962035656, -0.02744634449481964, 0.03250100463628769, -0.03483150526881218, -0.023415211588144302, 0.018281815573573112, 0.022076748311519623, 0.02634408138692379, 0.00572389317676425, 0.00898344162851572, 0.008778735995292664, 0.0018079078290611506, -0.020738286897540092, -0.029414670541882515, -0.014612855389714241, 0.034012679010629654, -0.014148330315947533, -0.0025863810442388058, 0.03259548544883728, -0.02826516702771187, 0.02132091112434864, -0.022596387192606926, -0.016596928238868713, 0.02130516618490219, -0.006708056665956974, -0.0005016772192902863, -0.0076764728873968124, 0.022927066311240196, 0.0009915444534271955, 0.0073064276948571205, -0.002743846969678998, 0.03760290890932083, 0.026044895872473717, 0.0032713585533201694, -0.005326291546225548, -0.008581902831792831, -0.010054211132228374, -0.0032398654147982597, -0.008518916554749012, 0.025950415059924126, -0.025383537635207176, -0.012368963100016117, 0.008298464119434357, 0.006676563061773777, 0.014652222394943237, 0.0058931694366037846, -0.021352404728531837, 0.009613306261599064, -0.023257745429873466, -0.016124529764056206, -0.00449172081425786, -0.0007730601937510073, -0.000731233274564147, 0.04443693906068802, 0.017809417098760605, 0.003562670899555087, 0.009936111979186535, 0.0015569461975246668, 0.03439059853553772, 0.015337199904024601, 0.006613576784729958, 0.009636926464736462, 0.016486702486872673, 0.027304625138640404, -0.0011908374726772308, 0.01932109147310257, 0.007085975259542465, -0.001580566167831421, -0.0060112690553069115, 0.020391860976815224, -0.01765195094048977, 0.03854770585894585, -0.014258556999266148, -0.008755115792155266, 0.01540018618106842, 0.017006339505314827, -0.007440274115651846, -0.016156023368239403, 0.0080937584862113, -0.007152898237109184, -0.019714757800102234, -0.02333647757768631, 0.02243892103433609, 0.02612362802028656, 0.014014484360814095, 0.030327973887324333, 0.021352404728531837, 0.0010107356356456876, 0.04509829357266426, 0.00404294254258275, -0.021604351699352264, -0.0019073083531111479, 0.020297382026910782, -0.010172311216592789, -0.01417195051908493, -0.015762358903884888, -0.027777021750807762, 0.0029072181787341833, -0.013250773772597313, -0.005440454464405775, 0.03952399641275406, -0.019368331879377365, -0.020139915868639946, -0.005011359229683876, 0.027084171772003174, -0.020407607778906822, 0.02867458015680313, -0.016722900792956352, 0.0029131232295185328, 0.022470414638519287, 0.0071214050985872746, -0.010747062042355537, 0.007770952768623829, 0.00032428177655674517, 0.021809056401252747, -0.0066253868862986565, -0.0636163130402565, -0.008306337520480156, -0.004861766472458839, 0.0011928058229386806, -0.01255792286247015, 0.008274843916296959, 0.02870607189834118, -0.013872765004634857, 0.026611773297190666, -0.022627880796790123, 0.013360999524593353, 0.006554527208209038, 0.014416023157536983, 0.014408149756491184, -0.02064380794763565, 0.014715208671987057, -0.03206010162830353, 0.025178831070661545, -0.002783213509246707, 0.017667697742581367, 0.0080858850851655, 0.00938498042523861, 0.012447696179151535, -0.015163986943662167, -0.022470414638519287, -0.009999098256230354, -0.02267512120306492, -0.016943354159593582, 0.011298193596303463, 0.033319830894470215, -0.0020332811400294304, 0.013148420490324497, -0.03284743055701256, -0.0033796164207160473, -0.0016888240352272987, 0.006231721490621567, 0.015943443402647972, -0.022801093757152557, 0.007223757915198803, 0.008503169752657413, -0.020565073937177658, 0.008188238367438316, 0.000862126995343715, -0.007479640655219555, -0.019384078681468964, -0.026265347376465797, 0.009699912741780281, -0.01306181401014328, 0.013463352806866169, 0.01741575263440609, 0.01651819609105587, 0.021903537213802338, -0.007467830553650856, -0.01172335259616375, 0.0026690505910664797, 0.0052790516056120396, -0.0001128712174249813, 0.0173212718218565, 0.01138480007648468, 0.003314661793410778, 0.007215884514153004, -0.002582444343715906, -0.00694819213822484, 0.005259368102997541, -0.01875421404838562, 0.00649941386654973, 0.01184145174920559, 0.009967604652047157, -0.008282717317342758, -0.0021730323787778616, 0.003678802167996764, -0.004475974477827549, 0.012061904184520245, 0.003064684337005019, 0.027840008959174156, -0.019699010998010635, -0.0131248002871871, -0.004960182588547468, -0.007235568016767502, 0.0424528643488884, 0.004361811559647322, 0.0047043003141880035, -0.010038464330136776, 0.004035069141536951, 0.02546226978302002, 0.023147519677877426, -0.0014851023443043232, -0.00728674465790391, -0.012801995500922203, 0.013242900371551514, 0.0031060189940035343, 0.005562490317970514, -0.019352585077285767, -0.005133395548909903, 0.0008360466454178095, 0.0005944345612078905, 0.002716290531679988, 0.03357177600264549, 0.010628962889313698, 0.01752597838640213, -0.026816479861736298, 0.00032428177655674517, 0.002887534908950329, -0.00904642790555954, -0.08761414885520935, -0.010337650775909424, -0.0106132160872221, -0.007211947813630104, -0.008424436673521996, 0.023808876052498817, 0.017604712396860123, 0.004790906328707933, -0.014022357761859894, 0.015352945774793625, 0.003212308743968606, 0.007885115221142769, -0.013132673688232899, -0.010778555646538734, -0.02498987317085266, -0.017022086307406425, 0.005078282207250595, 0.03952399641275406, -0.006235658191144466, -0.012085524387657642, -0.014069597236812115, 0.006696246564388275, 0.0018354643834754825, -0.006609640084207058, -0.004538960754871368, -0.019147880375385284, -0.01546317245811224, 0.0015972969122231007, -0.01728978008031845, 1.653086656006053e-05, -0.018801454454660416, 0.016100909560918808, -0.0035449559800326824, 0.005885296035557985, 0.01345547940582037, 0.02231294848024845, -0.0195415448397398, 0.01854950748383999, -0.02991856262087822, -0.004172851797193289, 0.020407607778906822, 0.00926688127219677, -0.01966751739382744, -0.0033343450631946325, -0.026186615228652954, -0.009668419137597084, -0.010180184617638588, 0.0061569251120090485, 0.006739549804478884, -0.003981924150139093, -0.028517113998532295, 0.013376746326684952, 0.02747783623635769, -0.02390335686504841, -0.0030253177974373102, -0.010912401601672173, 0.02914697863161564, 0.00965267326682806, 0.015998557209968567, 0.0013050003908574581, -0.0035351142287254333, 0.034894492477178574, -0.0030253177974373102, -0.008739368990063667, 0.010510862804949284, 0.032217565923929214, -0.014786068350076675, 0.012636655941605568, -0.005920725874602795, 0.021383898332715034, 0.0018531793029978871, 0.020061183720827103, 0.0016622516559436917, 0.02599765546619892, -0.0035488924477249384, -0.006397061049938202, -0.03092634491622448, -0.01133756060153246, -0.00031148764537647367, 0.012841361574828625, -0.009424346499145031, 0.004231901839375496, 0.021462630480527878, 0.009219640865921974, 0.006822219584137201, -0.03161919489502907, -0.03379222750663757, -0.00689701596274972, 0.030753131955862045, -0.004621630534529686, 0.006393124349415302, -0.01010145153850317, -0.025194577872753143, 0.012038283981382847, -0.022816840559244156, 0.04755476489663124, -0.012117017060518265, -0.03930354118347168, -0.01865973509848118, -0.033319830894470215, -7.891759014455602e-05, 0.007778826169669628, 0.017053579911589622, -0.03842173144221306, 0.024029329419136047, -0.015998557209968567, -0.01809285581111908, -0.0005919741815887392, 0.004172851797193289, -0.021604351699352264, -0.0022419237066060305, -0.023808876052498817, 0.0013227153103798628, 0.016817381605505943, 0.02733611688017845, -0.00019560243526939303, -0.009999098256230354, 0.007038735318928957, 0.004598010331392288, 0.002269480377435684, 0.022848332300782204, 0.037886347621679306, -0.016329236328601837, 0.012006791308522224, 0.0023816749453544617, 0.012298103421926498, -0.019163625314831734, 0.008944075554609299, 0.020124169066548347, -0.021730324253439903, 0.0026100007817149162, -0.03848471865057945, -0.016880366951227188, -0.018250321969389915, 0.007904798723757267, 0.021730324253439903, 0.02221846953034401, -0.031099557876586914, -0.007534753531217575, 0.014164077118039131, -0.043145716190338135, -0.0234467051923275, -0.015305706299841404, 0.007389097474515438, -0.003932716324925423, -0.02958788350224495, -0.010180184617638588, -0.010148691013455391, 0.019510051235556602, -0.004601947031915188, 0.014975027181208134, -0.015297832898795605, -0.00529873464256525, 0.0013168103760108352, 0.015557652339339256, -0.031225530430674553, -0.005979775916785002, 0.008700002916157246, 0.00037324390723370016, -0.010306157171726227, 0.005574300419539213, 0.022832587361335754, -0.021746071055531502, -0.020801274105906487, 0.012983080931007862, 0.001579581992700696, 0.028643086552619934, 0.011510772630572319, -0.0020667428616434336, -0.018470775336027145, 0.016596928238868713, -0.025918923318386078, 0.0024485981557518244, -0.005259368102997541, 0.016156023368239403, -0.0057160197757184505, 0.010125070810317993, -0.020628061145544052, 0.023415211588144302, 0.0022005890496075153, 0.006495477166026831, -0.0035803858190774918, -0.005058598704636097, 4.35492220276501e-05, -0.016250502318143845, -0.007082038559019566, 0.011998917907476425, -0.026847971603274345, -0.008574030362069607, 0.010471496731042862, 0.03502046316862106, 0.013408239930868149, -0.026265347376465797, -0.02826516702771187, -0.001982104731723666, 0.011424166150391102, 0.002129729138687253, 0.006200228352099657, 0.014313669875264168, -0.019399825483560562, 0.005353847984224558, -0.0011563918087631464, -0.007294617593288422, -0.008298464119434357, 0.03002878837287426, 0.0012784280115738511, 0.005294797942042351, 0.060655947774648666, -0.03883114457130432, -0.002769435290247202, -0.04261033236980438, -0.006215974688529968, -0.0312570221722126, -0.023982089012861252, -0.016250502318143845, -0.0027615618892014027, -0.014108964242041111, -0.004444480873644352, -0.026044895872473717, 0.014943534508347511, -0.015943443402647972, 0.03527240827679634, 0.03168218210339546, -0.0020175345707684755, 0.003117829095572233, -0.016707153990864754, -0.007778826169669628, -0.024249780923128128, 0.025052858516573906, -0.009786519221961498, -0.008999188430607319, -0.02223421446979046, 0.0379178412258625, 0.01608516275882721, 0.0076685999520123005, -0.012864981777966022, 0.01262090913951397, -0.009022808633744717, 0.04053177684545517, 0.03426462784409523, -0.03407566621899605, -0.016344983130693436, 0.008762989193201065, 0.006960002239793539, 0.01273113489151001, 0.006550590507686138, 0.005389277823269367, -0.0043421280570328236, -0.011817831546068192, -0.013321633450686932, -0.014423895627260208, 0.004633440636098385, -0.003733915276825428, 0.015329326502978802, 0.007861495949327946, -0.007794572506099939, 0.012400456704199314, 0.015226973220705986, -0.02612362802028656, 0.01818733662366867, 0.005810499656945467, -0.0070229885168373585, -0.015557652339339256, -0.009581812657415867, -0.007145024836063385, -0.009920365177094936, 0.008377197198569775, 0.008857469074428082, 0.0022891636472195387, -0.004747603554278612, -0.028895031660795212, -0.0025548876728862524, -0.007920545525848866, -0.01796688325703144, -0.032784443348646164, -0.036217205226421356, -0.001999819651246071, -0.0012863012962043285, -0.0097707724198699, 0.004613757133483887, 0.021824803203344345, 0.007900862023234367, -0.0009979414753615856, -0.009479460306465626, 0.0038342999760061502, -0.005920725874602795, -0.002224208787083626, -0.01099113468080759, 0.008282717317342758, 0.013156293891370296, -0.008282717317342758, -1.8683724192669615e-05, 0.004377557896077633, -0.00821185763925314, -0.0023915166966617107, -0.0069442554377019405, -0.005546743981540203, 0.00046526314690709114, 0.0017931454349309206, -0.004125612322241068, 0.018140096217393875, -0.023399464786052704, -0.005054662469774485, -0.007928418926894665, -0.0015569461975246668, 0.00854253675788641, -0.008684256114065647, 0.022076748311519623, 0.007849685847759247, 0.004009481053799391, 0.0156363844871521, 0.029052497819066048, 0.003948462661355734, -0.025840189307928085, 0.007928418926894665, -0.005267241504043341, -0.005975839216262102, -0.006373440846800804, 0.06150626391172409, -0.003133575664833188, -0.005566427018493414, -0.0031847520731389523, -0.005412897560745478, -0.016250502318143845, -0.0067316764034330845, 0.022265708073973656, 0.0017803512746468186, -0.01921086572110653, -0.007837875746190548, -0.014045977033674717, -0.009692039340734482, 0.0077079664915800095, -0.02333647757768631, 0.020281635224819183, 0.01650244928896427, 0.004397241398692131, -0.006019141990691423, 0.004660997074097395, 0.031760916113853455, 0.010621089488267899, 0.0064088706858456135, -0.007448147051036358, 0.004869639407843351, -0.02032887563109398, 0.003828394925221801, 0.028060462325811386, -0.028721818700432777, 0.025871682912111282, 0.01351059228181839, -0.0006441348232328892, -0.026973946020007133, -0.01996670290827751, -0.0065466538071632385, 0.008290590718388557, 0.012046157382428646, 0.006656880024820566, -0.017935389652848244, 0.016266249120235443, -0.007326111197471619, -0.006613576784729958, -0.002334435237571597, 0.01608516275882721, 0.0051727620884776115, -0.01996670290827751, 0.006810409482568502, -0.007259187754243612, -0.00773158622905612, -0.006755296140909195, -0.0074127172119915485, -0.02555675059556961, 0.01908489316701889, 0.01686462014913559, 0.00326545350253582, -0.02031312882900238, -0.013534212484955788, -0.0009684166288934648, -0.012581542134284973, 0.0019161658128723502, -0.0046058837324380875, -0.011802085675299168, -0.013494846411049366, -0.028832046315073967, -0.0065466538071632385, -0.015762358903884888, -0.02042335458099842, -0.0033894581720232964, -0.0005166857154108584, -0.006987558677792549, -0.010069957934319973, 0.0262496005743742, 0.009172401390969753, -0.016896113753318787, -0.00023472293105442077, 0.00988887157291174, 0.01796688325703144, 0.017809417098760605, 0.008841722272336483, 0.012597288936376572, 0.006715929601341486, -0.009471586905419827, 0.0018767992733046412, -0.016817381605505943, 0.015360819175839424, 0.006334074307233095, 0.011550139635801315, -0.005239685066044331, 0.00443267123773694, -0.022186975926160812, -0.01021955069154501, 0.010266791097819805, -0.010290410369634628, 0.00173704803455621, 0.02691095881164074, -0.01055022981017828, -0.01384914480149746, -0.015541905537247658, -0.0064009977504611015, -0.002545046154409647, 0.00903855450451374, 0.013975117355585098, -4.693228402175009e-05, -0.007570183370262384, -0.004200408700853586, -0.006172671914100647, 0.012140637263655663, -0.008644890040159225, -0.01350271888077259, -0.003320566611364484, -0.013109054416418076, -0.0022281454876065254, -0.016659915447235107, -0.009196020662784576, -0.02199801616370678, 0.00887321587651968, 0.02108471281826496, 0.0056490967981517315, -0.024485981091856956, -0.0234309583902359, -0.018329055979847908, -0.00888108927756548, -0.00530267134308815, -0.01351846568286419, 0.013471226207911968, 0.007515070494264364, -0.02021864987909794, -0.015675751492381096, 0.002952489536255598, 0.002822580048814416, -0.0017459054943174124, 0.027084171772003174, 0.004692490212619305, -0.0008640952873975039, -0.008329957723617554, 0.009660545736551285, 0.02434426173567772, -0.0028954080771654844, -0.005109775345772505, 0.0002795023610815406, 0.009447966702282429, -0.006688373163342476, -0.0009634958114475012, 0.013266520574688911, -0.00012179019540781155, 0.027540823444724083, -0.016943354159593582, 0.0012302040122449398, -0.005590047221630812, 0.004546834155917168, 0.027414850890636444, -0.03807530552148819, -0.010794302448630333, 0.0024230098351836205, 0.006991495378315449, -0.007778826169669628, -0.027493583038449287, 0.010282536968588829, -0.004511404316872358, -0.0106132160872221, 0.021809056401252747, 0.0035725124180316925, -0.014880548231303692, -0.004625567235052586, 0.009558193385601044, 0.022958559915423393, 0.004794843029230833, 0.029083991423249245, 0.018832948058843613, 0.005082218907773495, 0.011534392833709717, -0.002767466939985752, 0.005192445125430822, -0.02487964555621147, 0.011140727438032627, 0.008062264882028103, 0.006519096903502941, 0.00013372318062465638, -0.004011449404060841, 0.018281815573573112, 0.0014536090893670917, -0.0015638353070244193, 0.008975568227469921, -0.01306968741118908, 0.0013050003908574581, -0.023304985836148262, -0.004684616811573505, -0.009188148193061352, -0.0034189829602837563, 0.007979595102369785, -0.01829756237566471, 0.011432039551436901, 0.0009561145561747253, 0.00101762474514544, -0.02144688554108143, -0.012652402743697166, -0.00688914256170392, 0.006700183264911175, -0.005239685066044331, -0.008022898808121681, 0.008511043153703213, 0.005546743981540203, 0.0074914502911269665, -0.006247468292713165, -0.0009782582055777311, 0.004346064757555723, 0.006885205861181021, -0.01586471125483513, -0.006483667064458132, -0.012715389020740986, -0.041571054607629776, -0.017037833109498024, 0.0031808156054466963, -0.010865162126719952, -0.008337831124663353, 0.01573873870074749, 0.022155482321977615, 0.017116567119956017, -0.0008975568343885243, 0.009282627142965794, 0.0038480781950056553, 0.015266340225934982, -0.009188148193061352, -0.004082309082150459, -0.006715929601341486, -0.00944009330123663, -0.00860552303493023, 0.022470414638519287, 0.02613937482237816, -0.01584109105169773, 0.033760733902454376, -9.52177942963317e-05, -0.014006610959768295, -0.000620514911133796, 0.024832407012581825, 0.014022357761859894, 0.013707425445318222, 0.002472217893227935, 0.007928418926894665, -0.030123267322778702, -0.005475884303450584, -0.0013020479818806052, -0.01473882794380188, -0.0017419689102098346, 0.010282536968588829, -0.002838326618075371, 0.011746971867978573, -0.0033638698514550924, -0.02434426173567772, -3.158548861392774e-05, -0.00281667523086071, 0.004621630534529686, -0.015770230442285538, 0.00847955048084259, 0.027493583038449287, 0.008511043153703213, 0.0016888240352272987, 0.016140276566147804, 0.018376296386122704, -0.021856296807527542, -0.003186720423400402, -0.010707695968449116, -0.015904078260064125, 0.0034721277188509703, 0.0020569011103361845, 0.02143113873898983, -0.01985647715628147, 0.013817651197314262, 0.0071607716381549835, 0.0040901824831962585, 0.008038644678890705, -0.0014703398337587714, 0.012077650986611843, -0.0009192084544338286, -0.005629413761198521, 0.002257670508697629, -0.0035036210902035236, -0.014164077118039131, 0.00023472293105442077, 0.006873395759612322, -0.01584896445274353, 0.0037122636567801237, 0.003483937820419669, -0.012038283981382847, -0.022690868005156517, -0.01598281040787697, -0.013305886648595333, 0.01462860219180584, -0.01998244971036911, 0.0010953736491501331, 0.019462810829281807, -0.010565976612269878, -0.005983712151646614, 0.010282536968588829, -0.001631742576137185, 0.001696697436273098, 0.0031119240447878838, 0.003513462608680129, 0.014849054627120495, 0.00065889727557078, -0.0105974692851305, -0.02199801616370678, 0.00770009309053421, 0.001056991284713149, 0.0015038014389574528, 0.0025371727533638477, 0.01351846568286419, 0.01910063996911049, -0.029871322214603424, 0.010825795121490955, 0.017935389652848244, 0.001357161090709269, 0.0003971098631154746, 0.011235207319259644, 0.011991044506430626, -0.022958559915423393, -0.005798689555376768, 0.031666435301303864, 0.0036925803869962692, 0.0038224898744374514, -0.0008129188208840787, 0.00779063580557704, -0.002909186528995633, 0.013581451959908009, -0.008369323797523975, -0.004062625579535961, 0.012510682456195354, 0.0029977611266076565, -0.004692490212619305, -0.003720137057825923, 0.00858977623283863, -0.014762448146939278, -0.011951678432524204, -0.022927066311240196, -0.0005388293648138642, 0.01888018660247326, 0.004786970093846321, -0.016691407188773155, -0.015667878091335297, -0.0013197629014030099, -0.002704480430111289, 0.004688553512096405, -0.004306698217988014, 0.0014949439791962504, -0.008684256114065647, -0.0009329867316409945, 0.012180004268884659, 0.008188238367438316, 0.0017085073050111532, 0.011148600839078426, 0.00027335132472217083, -0.0014978963881731033, -0.0015648194821551442, -0.00038480781950056553, -0.00029647917835973203, -0.008558283559978008, 0.003607942257076502, -0.01976199820637703, -0.014912040904164314, -0.0020273763220757246, -0.02321050502359867, 0.02097448706626892, -0.020344622433185577, -0.022470414638519287, -0.01210914459079504, 0.018360549584031105, -0.012479189783334732, 0.004550770856440067, -0.022911319509148598, -0.002676923992112279, -0.007944165728986263, -0.009164527989923954, -0.01673864759504795, -0.011298193596303463, -0.0066253868862986565, -0.007995341904461384, 0.017872404307127, -0.005062535405158997, 0.002269480377435684, -0.0026178741827607155, 0.01840778812766075, 0.002861946588382125, -0.007396970875561237, 0.013022447936236858, 0.021494124084711075, -0.007467830553650856, 0.01267602201551199, 0.03136724978685379, -0.009416474029421806, -0.010951768606901169, -0.0052790516056120396, 0.00485782977193594, -0.005227874964475632, 0.000535384810063988, -0.0016819349257275462, 0.010802175849676132, -0.019179372116923332, 0.03180815652012825, 0.013809777796268463, -0.013731044717133045, 0.00611362187191844, -0.028611592948436737, 0.008306337520480156, 0.011794212274253368, 0.0041689155623316765, -0.0324065275490284, 0.005530997179448605, 0.009172401390969753, 0.005286925006657839, 0.005188508424907923, 0.013589325360953808, 0.000270890915999189, -0.012967334128916264, 0.00779063580557704, 0.009211767464876175, 0.004133485723286867, 0.018124349415302277, 0.015557652339339256, -0.003159163985401392, -0.0080937584862113, 0.00386382476426661, -0.0016150118317455053, 0.008825975470244884, 0.006881269160658121, 0.008833848871290684, -0.0009753057383932173, 0.01177059207111597, -6.9445013650693e-05, 0.011132854036986828, 0.029162723571062088, 0.0012193782022222877, 0.005574300419539213, 0.006212037988007069, -0.0022537338081747293, -0.009983351454138756, -0.00736941397190094, -0.001225283253006637, -0.019179372116923332, -0.01088090892881155, -0.003529209177941084, -0.023053038865327835, -0.0002637557336129248, -0.001969310687854886, 0.013817651197314262, 0.013628692366182804, 0.021462630480527878, 0.01133756060153246, 0.025320550426840782, -0.005204255226999521, -0.0071214050985872746, 0.0027182588819414377, 0.019604532048106194, 0.02621810883283615, -0.0038598880637437105, -0.039807435125112534, 0.0010550229344516993, -0.009471586905419827, 0.0016494574956595898, 0.010904528200626373, -0.018266068771481514, 0.006782853044569492, 0.0032989149913191795, 0.01773068495094776, -0.013817651197314262, 0.008747242391109467, 0.01921086572110653, -0.006582083646208048, 0.009503079578280449, -0.002206493867561221, 0.012589415535330772, -0.009251134470105171, 0.01540805958211422, 0.004176788497716188, -0.008700002916157246, -0.0041689155623316765, 0.007837875746190548, 0.002123824320733547, 0.004259458277374506, -0.0008508090977557003, -0.0029997294768691063, -0.014416023157536983, 0.0026198425330221653, -0.009447966702282429, 0.007861495949327946, 0.005767196416854858, -0.0007681393763050437, 0.008022898808121681, 0.02724163793027401, 0.008550410158932209, 0.002047059591859579, 0.012794122099876404, -0.0050349789671599865, 0.0016199327073991299, -0.0011032469337806106, 0.005806562956422567, -0.009243261069059372, 0.012195750139653683, 0.05035766214132309, -1.14562749331526e-06, -0.002871788339689374, 0.007448147051036358, 0.005062535405158997, -0.010321903973817825, -0.010148691013455391, -0.01417195051908493, 0.001501833088696003, -0.011069867759943008, 0.004172851797193289, 0.010857288725674152, 0.01015656441450119, 0.02108471281826496, -0.01132968720048666, 0.0016691407654434443, 0.02757231704890728, -0.005853802897036076, 0.013967243954539299, 0.011597379110753536, 0.004649186972528696, 0.02376163750886917, -0.007471767254173756, -0.000907890556845814, -0.04144508019089699, 0.003029254265129566, 0.010243170894682407, 0.0089362021535635, 0.0022419237066060305, 0.019793489947915077, 0.012857108376920223, -0.003842173144221306, -0.01262090913951397, -0.015943443402647972, 0.005027105566114187, 0.007896925322711468, -0.015667878091335297, -0.00014614823157899082, 0.010069957934319973, 0.005629413761198521, 0.016234755516052246, 0.03565032780170441, -0.02368290349841118, 0.010416383855044842, -0.011565886437892914, 0.021352404728531837, -0.0075898668728768826, 0.0007961880182847381, -0.009416474029421806, 0.0026985756121575832, -0.017951136454939842, -0.00926688127219677, 0.00527511490508914, 0.007593803573399782, -0.0007336936541832983, 0.05259368196129799, -0.002139570889994502, 0.003647308796644211, -0.013282266445457935, -0.0011130885686725378, -0.010369143448770046, 0.012872855179011822, 0.017903897911310196, -0.0007228679023683071, -0.0040311324410140514, 0.007841812446713448, 0.04043729975819588, -0.011998917907476425, 0.005857739597558975, 0.010589595884084702, 0.009558193385601044, 0.007078101858496666, -0.011613125912845135, -0.005566427018493414, 0.003578417468816042, -0.013746791519224644, -0.010377016849815845, 0.012384709902107716, -0.0030194127466529608, -0.008003215305507183, -0.016360729932785034, 0.004479911178350449, 0.0043814945966005325, 0.005353847984224558, 0.010188058018684387, -0.014644348993897438, -0.0009575908188708127, 0.0004832241393160075, 0.00608212873339653, 0.00650335056707263, -0.007089911960065365, 0.013526339083909988, -0.025966161862015724, 0.008857469074428082, -0.005550680682063103, 0.013093307614326477, 0.0015746611170470715, -0.011975297704339027, -0.002777308691293001, 0.005019232165068388, 0.0022655436769127846, -0.001434909994713962, -0.01608516275882721, -0.005361721385270357, 0.015415932983160019, 0.006456110626459122, -0.00692063570022583, 0.009196020662784576, -0.005507377441972494, 0.008959822356700897, -0.018565254285931587, -0.01842353492975235, 0.00386579311452806, 0.008637016639113426, -0.011518646031618118, 0.02132091112434864, -0.028863538056612015, -0.002714322181418538, -0.003109955694526434, 0.020407607778906822, -0.010510862804949284, 0.009203894063830376, 0.012739008292555809, -0.021683083847165108, -0.004227965138852596, 0.023068785667419434, 0.0004485323734115809, -0.00854253675788641, -0.0047121732495725155, 0.0031670371536165476, 0.008314210921525955, 0.020124169066548347, -0.01216425746679306, 0.013715298846364021, -0.0017163805896416306, -0.011353306472301483, -0.00018219320918433368, -0.005282988306134939, 0.002014582045376301, -0.028501367196440697, 0.0020706793293356895, 0.008282717317342758, -0.014967153780162334, 0.01016443781554699, -0.013416113331913948, -0.007156834937632084, 0.009416474029421806, 0.002131697488948703, -0.02355693094432354, -0.0017577154794707894, -0.018612494692206383, 0.0010609279852360487, 0.011164347641170025, -0.010912401601672173, -0.012069777585566044, -0.0010560071095824242, 0.004621630534529686, -0.007538690231740475, 0.0008429358131252229, 0.010731315240263939, -0.022076748311519623, 0.016707153990864754, 0.005487693939357996, -0.017132313922047615, -0.02491113916039467, -0.0006835013628005981, 0.014644348993897438, 0.009991224855184555, -0.013298013247549534, 0.02735186368227005, -0.00452321395277977, -0.000411380227888003, -0.0074520837515592575, 0.001408337615430355, 0.024690687656402588, -0.025399284437298775, 0.006641133222728968, 0.0003073049592785537, 0.01963602378964424, -0.024360008537769318, 0.0161875169724226, -0.02980833500623703, -0.027965981513261795, -0.001396527630276978, 0.012014664709568024, -0.004660997074097395, -0.012392583303153515, -1.3232382116257213e-05, 0.010384890250861645, 0.01172335259616375, -0.0021572858095169067, -0.013809777796268463, 0.013038193807005882, -0.02009267546236515, -0.010298283770680428, -0.011195840314030647, -0.015471045859158039, 0.01977774314582348, 0.0089362021535635, -0.02487964555621147, 0.00931412074714899, -0.023730143904685974, -0.01473095454275608, -0.03848471865057945, 0.002194683998823166, 0.007715839426964521, -0.0006835013628005981, 0.002922964747995138, -0.008164618164300919, 0.02379312925040722, 0.007896925322711468, -0.0005860691890120506, 0.0015333263436332345, 0.01551041193306446, -0.010077831335365772, 0.0156442578881979, 0.007499323692172766, 0.009400727227330208, -0.036563631147146225, 0.012392583303153515, -0.004216155037283897, -0.0018767992733046412, 0.014061723835766315, 0.025178831070661545, -0.004806653130799532, 0.007333984132856131, 0.004444480873644352, -0.002741878619417548, -0.003249706933274865, 0.003397331340238452, 0.010731315240263939, -0.0038677614647895098, 0.0073851607739925385, -0.001108167809434235, -0.000480025599244982, -0.015880458056926727, 0.0245647132396698, 0.002899344777688384, -0.009164527989923954, 0.03037521429359913, -0.021242178976535797, 0.008715749718248844, 0.008818102069199085, -0.029383176937699318, -7.362770702457055e-05, -0.0031276706140488386, 0.008243351243436337, 0.014408149756491184, -0.022486161440610886, -0.017022086307406425, -0.002440724754706025, 0.01188869122415781, 0.01340036652982235, -0.0029839829076081514, 0.0008016009232960641, 0.0036925803869962692, -0.00649941386654973, -0.003615815658122301, -0.006668690126389265, 0.004979866091161966, 0.01172335259616375, 0.029288697987794876, 0.03202860802412033, 0.014754574745893478, 0.019447065889835358, -0.01598281040787697, 0.0019899781327694654, -0.015809597447514534, 0.006550590507686138, 0.0022123989183455706, -0.02465919405221939, -0.01551041193306446, 0.015715118497610092, 0.005290861241519451, -0.01390425767749548, 0.01188869122415781, 0.00021836120868101716, -0.002440724754706025, -0.00859764963388443, 0.0016425683861598372, 0.023934848606586456, 0.0023580549750477076, 0.02231294848024845, -0.016707153990864754, -0.0028501367196440697, -0.051522914320230484, -0.019179372116923332, -0.014014484360814095, -0.015219099819660187, 0.019116386771202087, 0.002741878619417548, 0.010321903973817825, 0.018155843019485474, 0.0012469347566366196, 0.009479460306465626, -0.02544652484357357, 0.009558193385601044, 0.014549869112670422, 0.00491687934845686, 0.015384439378976822, 0.0011947741732001305, -0.018360549584031105, -0.004231901839375496, 0.008707876317203045, -0.006322264671325684, 0.000437460548710078, -0.008243351243436337, -0.004334254655987024, 0.03417014703154564, -0.01697484776377678, 0.0018590843537822366, -0.017919644713401794, 0.0029957927763462067, 0.014526248909533024, 0.01500652078539133, -0.02133665792644024, -0.012447696179151535, -0.00017862561799120158, -0.005251494701951742, -0.0015835185768082738, -0.012691768817603588, -0.002440724754706025, 0.009180274792015553, -0.010833668522536755, -0.008007152006030083, 0.009030682034790516, -0.011148600839078426, -0.024029329419136047, -0.0008139029960148036, -0.002743846969678998, -0.0016278059920296073, 0.011250954121351242, 0.0002008923183893785, -0.003017444396391511, 0.013298013247549534, 0.010754935443401337, 0.004393304698169231, 0.005105838645249605, -0.012101271189749241, 0.00281667523086071, -0.004893259610980749, 0.02075403369963169, -0.011195840314030647, 0.0048105898313224316, -0.0114477863535285, -0.003724073525518179, 0.0027654985897243023, -0.010928148403763771, 0.009747152216732502, -0.011746971867978573, -0.009133034385740757, -0.01048724353313446, -0.00926688127219677, 0.009408600628376007, 0.013211406767368317, 0.004558643791824579, 0.012195750139653683, -0.012148510664701462, 0.01010932493954897, -0.02867458015680313, -0.009219640865921974, -0.0002092577051371336, 0.001567772007547319, 0.0037260418757796288, 0.005444390699267387, 0.0017547629540786147, -0.0013955434551462531, 0.019557291641831398, -0.019179372116923332, -0.0019496273016557097, -0.005023168865591288, -0.008818102069199085, -0.006428554188460112, -0.011274573393166065, 0.009573940187692642, 0.009644799865782261, 0.012983080931007862, 0.02110045962035656, 0.012298103421926498, -0.005775069817900658, -0.002777308691293001, -0.016691407188773155, -0.005743576679378748, -0.031666435301303864, -0.013880638405680656, 0.022013762965798378, 0.01888018660247326, -0.00802683550864458, 0.0019555322360247374, 0.00728280795738101, -0.006357694510370493, -0.008463803678750992, 0.002924933098256588, 0.023635663092136383, -0.004830272868275642, 0.028942272067070007, -0.0008252208353951573, -0.021714577451348305, -0.010408510453999043, 0.015589145012199879, 0.020360369235277176, -0.006936382502317429, 0.01546317245811224, 0.01888018660247326, 0.0008665557252243161, 0.002769435290247202, 0.006306517869234085, -0.013912131078541279, -0.02020290307700634, -0.04881449416279793, -0.015478919260203838, 0.00569240003824234, 0.00695212883874774, -0.008794482797384262, -0.0037555668968707323, 0.008042581379413605, -0.002661177422851324, -0.006542717106640339, 0.012046157382428646, 0.005885296035557985, -0.019588785246014595, -0.021840550005435944, 0.0019663581624627113, -0.0010294347302988172, -0.008188238367438316, 0.006719866301864386, 0.0055821738205850124, -0.005901042837649584, 0.0017449214356020093, -0.005814436357468367, -0.010455749928951263, 0.004897196311503649, -0.002547014504671097, 0.0040586888790130615, 0.006613576784729958, 0.00037152160075493157, 0.012904347851872444, -0.009967604652047157, -0.011928058229386806, 0.0005240669124759734, -0.012093397788703442, 0.013077560812234879, 0.008078011684119701, 0.017478737980127335, -0.012463442981243134, -0.00407837238162756, -0.010857288725674152, -0.014518375508487225, 0.010140817612409592, -0.006168735213577747, -0.0067710429430007935, -0.007892988622188568, 0.004515341017395258, -0.007613486610352993, 0.017557471990585327, 0.0032457702327519655, -0.012235117144882679, 0.0076685999520123005, -0.002255702158436179, -0.02665901370346546, -0.006074255332350731, -0.019935209304094315, 0.012801995500922203, -0.0016268218168988824, -0.007097784895449877, 0.015376565977931023, -0.010565976612269878, 0.009140907786786556, 0.019399825483560562, 0.022895572707057, -0.002090362599119544, -0.011006881482899189, 0.007865432649850845, -0.0038165850564837456, -0.008810228668153286, 0.0017567313043400645, 0.005822309758514166, -0.0022301138378679752, 0.02086425945162773, -0.04005938023328781, -0.011691858991980553, -0.012266610749065876, 0.028170688077807426, -0.002991856075823307, -0.005759323015809059, 0.001527421292848885, -0.007578056771308184, -0.0015392312780022621, 0.00344653963111341, -0.015478919260203838, -0.007389097474515438, 0.02054932713508606, 0.009070048108696938, -0.0023934850469231606, -0.0026296840514987707, 0.0005107807228341699, 0.008109505288302898, -0.006810409482568502, 0.0008862389950081706, 0.020076928660273552, 0.004842082969844341, 0.004003576003015041, 0.0022911319974809885, 0.001330588711425662, -0.0011455659987404943, -0.015833217650651932, -0.011101361364126205, -0.003907127771526575, 0.00026892259484156966, -0.0022419237066060305, 0.008526789955794811, -0.017053579911589622, 0.011652492918074131, 0.0014939598040655255, -0.006007332354784012, -0.015494666062295437, -0.009558193385601044, -0.003354028332978487, 0.029981547966599464, 0.02700543776154518, 0.03300489857792854, -0.008463803678750992, -0.0007081054500304163, 0.018140096217393875, 0.014770321547985077, -0.004350001458078623, -0.0011406451230868697, -0.005377467721700668, 0.007444210350513458, -0.015195479616522789, -0.0016474892618134618, -0.022139735519886017, -0.008042581379413605, 0.016659915447235107, 0.010959642007946968, 0.01728978008031845, -0.009109415113925934, -0.016455208882689476, 0.015573399141430855, -0.020029690116643906, 0.029997294768691063, 0.008172491565346718, 0.01743149943649769, 0.014534122310578823, 0.004141358658671379, 0.0031414490658789873, 0.026044895872473717, -0.008463803678750992, -0.020691048353910446, 0.02546226978302002, -0.03357177600264549, 0.034768518060445786, 0.003747693495824933, -0.012880728580057621, -0.01985647715628147, -0.0023521501570940018, 0.004365747794508934, 0.016691407188773155, 0.014691588468849659, -0.006412807386368513, -0.0012774438364431262, 0.011565886437892914, 0.018045617267489433, -0.008786609396338463, 0.025840189307928085, -0.004066562280058861, -0.0038480781950056553, -0.0005703225615434349, -0.00566090689972043, 0.011668238788843155, -0.005031042266637087, 0.01266814861446619, -0.013014574535191059, 0.00859764963388443, 0.009692039340734482, -0.019273852929472923, 0.016801634803414345, -0.029225710779428482, -0.01132968720048666, -0.006956065539270639, 0.010046337731182575, -0.015053760260343552, 0.005267241504043341, 0.00903855450451374, -0.02143113873898983, 0.013046067208051682, -0.015471045859158039, -0.0020982360001653433, -0.022801093757152557, 0.004259458277374506, -0.012864981777966022, 0.002373801777139306, -0.039366528391838074, -0.01595919020473957, -0.016596928238868713, -0.005838056094944477, 0.014416023157536983, 0.015604891814291477, 0.008951948955655098, 0.0026572407223284245, 0.002011629519984126, 0.021462630480527878, 0.0061844815500080585, -0.011156474240124226, -0.0060781920328736305, 0.005940409377217293, -0.0005058599053882062, 0.026281094178557396, -0.00802683550864458, 0.025178831070661545, 0.009282627142965794, -0.006582083646208048, -0.006353757809847593, -0.007979595102369785, -0.00932199414819479, -0.01456561591476202, 0.012101271189749241, -0.004641313571482897, -0.01865973509848118, 0.023021545261144638, -0.005251494701951742, 0.024391500279307365, 0.02733611688017845, -0.008999188430607319, 0.015258466824889183, -0.018691228702664375, 0.016770141199231148, -0.0006805488374084234, -0.004180725198239088, 0.02724163793027401, -0.023068785667419434, 0.01055022981017828, -0.008188238367438316, -0.00242891488596797, -0.012833488173782825, -0.013990864157676697, -0.005747513379901648, 0.009810138493776321, 0.013321633450686932, -0.004999549128115177, -0.022029509767889977, -0.001081595430150628, -0.0026296840514987707, 0.02265937440097332, 0.01721104606986046, 0.012077650986611843, 0.016329236328601837, 3.1831528758630157e-05, 0.02133665792644024, 0.0045665171928703785, -0.004109865520149469, -0.011345434002578259, 0.015833217650651932, -0.008408690802752972, -0.007948102429509163, 0.001318778726272285, 0.006767106242477894, 0.01575448550283909, -0.0022655436769127846, -0.013305886648595333, -0.007782762870192528, -0.006511223968118429, 0.033099375665187836, 0.0027182588819414377, -0.0075977398082613945, 0.0070544821210205555, -0.019242359325289726, 0.021950775757431984, 0.008361450396478176, -0.013534212484955788, 0.0006352773634716868, 0.005708146840333939, -0.0005031534237787127, 0.01512461993843317, -0.03703603148460388, -0.007767016068100929, -0.019336838275194168, -0.0003365838201716542, -0.0035311775282025337, -0.000665294355712831, -0.0015431679785251617, 0.01875421404838562, -0.00821185763925314, -0.0066253868862986565, -0.008841722272336483, -0.007440274115651846, -0.004664933774620295, -0.004814526531845331, 0.01150289922952652, -0.014667968265712261, -0.009298373945057392, 0.004905069246888161, 0.007542626932263374, 0.015423805452883244, -0.002145475707948208, -0.02021864987909794, -0.0064088706858456135, -0.002052964409813285, 0.019242359325289726, 0.001294174580834806, 0.009455840103328228, 0.009542446583509445, -0.0023915166966617107, 0.013250773772597313, 0.005086155608296394, 0.028091954067349434, 0.004176788497716188, -0.005086155608296394, 0.011030501686036587, -0.03202860802412033, -0.014061723835766315, -0.00692457240074873, 0.00936923362314701, 0.010747062042355537, -0.017478737980127335, -0.02133665792644024, -0.02667476050555706, -0.0025785076431930065, 0.011573759838938713, -0.016014304012060165, 0.0063025811687111855, 0.017825163900852203, -0.006231721490621567, 0.005889232736080885, 0.024060823023319244, 0.003891381435096264, -0.012778375297784805, 0.012298103421926498, -0.0040016076527535915, 0.034894492477178574, -0.022029509767889977, -0.014502628706395626, 0.03218607231974602, 0.003147353883832693, 3.447646668064408e-05, 0.0009482412715442479, 0.005550680682063103, 0.0020175345707684755, 0.003277263604104519, -0.004798779729753733, 0.0033894581720232964, 0.018612494692206383, -0.0010117198107764125, -0.006231721490621567, 0.0010353396646678448, -0.014793941751122475, -0.0005993553786538541, -0.018612494692206383, 0.0026690505910664797, -0.004775159992277622, -0.003029254265129566, -0.018470775336027145, -0.005853802897036076, 0.008566156961023808, -0.010329777374863625, 0.006074255332350731, -0.010203803889453411, 0.0005235748249106109, -0.0043814945966005325, -0.025619735941290855, -0.0030745258554816246, -0.004668870475143194, 0.005487693939357996, -0.0053656576201319695, -0.006326201371848583, 0.0019624214619398117, 0.02265937440097332, 0.017352765426039696, -0.001697681494988501, 0.019793489947915077, -0.003928779624402523, 0.0062632146291434765, -0.002062806161120534, -0.02498987317085266, 0.011124980635941029, 0.022061003372073174, -0.015242720022797585, 0.012061904184520245, -0.01150289922952652, -0.003800838254392147, -0.00686158612370491, -0.01862824149429798, 0.004645250272005796, 0.012723262421786785, 0.00449172081425786, -0.007975658401846886, -0.022061003372073174, -0.008495297282934189, -0.007058418355882168, 0.0524362176656723, 0.047964178025722504, 0.0106053426861763, -0.0060781920328736305, 0.015439552254974842, -0.02253340184688568, -0.001541199628263712, 0.020013943314552307, -0.007999278604984283, 0.02300579845905304, 0.01429004967212677, -0.00443267123773694, 0.018045617267489433, 0.01507738046348095, -0.012313850224018097, 0.01763620413839817, -0.007463893853127956, -0.0106132160872221, -0.009093668311834335, 0.0056097302585840225, -0.010022718459367752, 0.004216155037283897, -0.0038539832457900047, -0.010251044295728207, -0.0004069514980074018, -0.006338011007755995, 0.0026946389116346836, -0.011660365387797356, -0.012069777585566044, -0.02256489358842373, 0.040122367441654205, 0.001070769620127976, -0.01930534653365612, 0.011699732393026352, 0.01598281040787697, 0.0003717676445376128, 0.019368331879377365, 0.008235477842390537, -0.0036492771469056606, -0.009361360222101212, -0.024974126368761063, -0.008849595673382282, -0.002730068750679493, -0.0036886436864733696, -0.011274573393166065, -0.010526609607040882, 0.007097784895449877, 0.01873846724629402, -0.0027202272322028875, 0.003629593877121806, 0.009896744973957539, 0.02021864987909794, -0.01350271888077259, -0.010802175849676132, 0.021478377282619476, 0.0006603735382668674, 0.012589415535330772, -0.0089362021535635, -0.020391860976815224, 0.02300579845905304, 0.0015461203875020146, 0.0012616972671821713, 0.0007774889236316085, 0.0010432129492983222, 0.002834390150383115, 0.004794843029230833, 0.008786609396338463, 0.008904708549380302, -0.009518826380372047, 0.0066253868862986565, 0.007459957152605057, -0.001162296743132174, -0.005566427018493414, -0.014038103632628918, -0.006814346183091402, 0.0034032363910228014, -0.029950054362416267, -0.013951498083770275, -0.028548605740070343, -0.006066381931304932, 0.007566246669739485, 0.006160861812531948, 0.01653394289314747, -0.0058262464590370655, -0.008951948955655098, -0.003149322234094143, -0.008739368990063667, 0.0081016318872571, 0.0024604080244898796, 0.022816840559244156, 0.007176517974585295, -0.007526880130171776, -0.010731315240263939, 0.008786609396338463, 0.017951136454939842, 0.016486702486872673, 0.0075898668728768826, 0.00533022778108716, 0.005562490317970514, -0.0021356341894716024, -0.014038103632628918, 0.009471586905419827, 0.0005678621819242835, 0.023415211588144302, 0.005353847984224558, -0.024737926200032234, -0.017274033278226852, -0.025068605318665504, 0.018108602613210678, 0.014486882835626602, 0.003080430906265974, 0.007830002345144749, -0.006613576784729958, 0.006046698894351721, -0.0018256227485835552, 0.020565073937177658, -0.002820611698552966, -0.0038618564140051603, 0.013872765004634857, 0.006074255332350731, -0.009589686058461666, -0.0022635753266513348, 0.017148060724139214, 0.013384619727730751, -0.021919284015893936, -0.005747513379901648, 0.007467830553650856, -0.003104050876572728, 0.005779006518423557, 0.000244810595177114, 0.0040980554185807705, -0.008794482797384262, -0.005739639978855848, 0.017935389652848244, -0.014321543276309967, -0.00023484595294576138, -0.012337470427155495, -0.0019151816377416253, 0.013809777796268463, 0.016234755516052246, -0.034201640635728836, 0.0073851607739925385, 0.006208101753145456, -0.005653033498674631, 0.011313940398395061, 0.013384619727730751, -0.004133485723286867, -0.005641223397105932, 0.015667878091335297, 0.014108964242041111, 0.0006116574513725936, 0.009077921509742737, -0.0011002945248037577, 0.008054391480982304, 0.001437862403690815, 0.01642371527850628, -0.02891077846288681, 0.017384259030222893, 0.003796901786699891, 0.014195569790899754, -0.005223938263952732, 0.023415211588144302, 0.00886534247547388, 0.017825163900852203, 0.007975658401846886, -0.002074616029858589, -0.015321453101933002, 0.02746208943426609, -0.02903675101697445, -0.019352585077285767, -0.0030469694174826145, -0.005960092414170504, -0.023131772875785828, 0.011274573393166065, -0.009558193385601044, 0.021620096638798714, -0.00027212113491259515, -0.0004135945928283036, -0.022375935688614845, -0.012888601049780846, -0.02601340226829052, 0.011510772630572319, 0.004586200695484877, 0.001267602201551199, -0.006593893747776747, 0.010502989403903484, -0.0017793670995160937, 0.017478737980127335, 0.01809285581111908, 0.009550319984555244, 0.009534573182463646, 0.009613306261599064, -0.017573218792676926, -0.006967875640839338, -0.0080858850851655, 0.007857559248805046, 0.002901313127949834, -0.017620457336306572, -0.01773068495094776, 0.01965177059173584, 0.008180364966392517, 0.006424617487937212, -0.010440003126859665, 0.028202181681990623], "d9f10a91-8e5f-4f4d-8f87-2af269a66b92": [-0.012148530222475529, -0.0009638745686970651, 0.0010078202467411757, -0.009086007252335548, -0.023797055706381798, -0.006925833877176046, 0.004281282890588045, 0.019922027364373207, -0.00963288638740778, 0.02637520059943199, 0.021968917921185493, 0.04400033503770828, -0.0022304856684058905, 0.014148545451462269, -0.05490667000412941, -0.01182821486145258, -0.016484500840306282, 0.04903162270784378, -0.01776576042175293, -0.027437709271907806, 0.06243797764182091, -0.0059844208881258965, -0.041594065725803375, 0.035594020038843155, -0.015687620267271996, -0.00956257339566946, -0.03025023080408573, -0.02226579561829567, -0.02065640687942505, -0.023062676191329956, 0.03728153556585312, 0.019359523430466652, 0.037219032645225525, -0.03603152558207512, -0.013984481804072857, -0.014132920652627945, -0.012929785996675491, 0.007386775221675634, 0.006847708486020565, 0.012679784558713436, 0.00807037390768528, 0.01382823009043932, 0.037094034254550934, 0.00856256578117609, -0.0412815660238266, -0.007273492868989706, -0.013664166443049908, -0.027093956246972084, 0.013031349517405033, -0.012531345710158348, -0.010492267087101936, 0.013976668938994408, -0.007152398116886616, 0.019937651231884956, 0.0035117454826831818, -0.007656308356672525, 0.04031280800700188, 0.11362586915493011, 0.006601613014936447, -0.02039078064262867, 0.01965639926493168, -0.01825013943016529, -0.010867270641028881, 0.009117256850004196, -0.007933653891086578, 0.019937651231884956, -0.03293775022029877, 0.011156335473060608, -0.044469088315963745, 0.015445430763065815, 0.013164162635803223, 0.01889076828956604, -0.014125107787549496, 0.0005058632232248783, -0.009718824177980423, -0.016781378537416458, 0.02789083868265152, 0.0036816687788814306, 0.03725028410553932, 0.031343989074230194, -0.0031582273077219725, -0.006589894182980061, 0.009179757907986641, 0.04190656915307045, 0.05353165790438652, 0.012617283500730991, -0.04778161272406578, -0.0525316521525383, -0.03837529197335243, 0.04212532192468643, -0.01338291447609663, 0.02901584655046463, -0.04443784058094025, -0.024672063067555428, 0.013109475374221802, -0.0038594044744968414, 0.016109498217701912, 0.006691457238048315, 0.025453319773077965, 0.0007304743048734963, -0.008984443731606007, 0.037594035267829895, -0.07893810421228409, 0.011086022481322289, 0.0019463038770481944, -0.008789129555225372, 0.03565652295947075, 0.015468868426978588, 0.0021211099810898304, -0.010304765775799751, 0.007445369381457567, -0.04740661010146141, -0.0005815473850816488, 0.027859587222337723, -0.035594020038843155, -0.01107820961624384, -0.007339899893850088, -0.026734579354524612, 0.0029746319632977247, -0.04456283897161484, -0.002417987212538719, -0.014773550443351269, 0.012859473004937172, 0.0019795072730630636, -0.018812643364071846, 0.025093941017985344, -0.032719001173973083, 0.026547078043222427, 0.0036582311149686575, 0.0034062759950757027, 0.031593989580869675, -0.008656316436827183, 0.03206274285912514, 0.035562772303819656, 0.010289140976965427, 0.0525628998875618, 0.04968787729740143, 0.05178164690732956, 0.0018427874892950058, 0.040437810122966766, -0.049969132989645004, -0.0287814699113369, -0.00963288638740778, -0.005457072984427214, -0.0007050834828987718, -0.010195390321314335, -0.02965647540986538, 0.04112531244754791, 0.006722707767039537, -0.007039116229861975, -0.053219154477119446, -0.03575027361512184, -0.021312663331627846, 0.029359599575400352, 0.05600042641162872, -0.05106288939714432, 0.005738324951380491, 0.04340657964348793, -0.005601605400443077, 0.017437633126974106, 0.018406391143798828, -0.03900029882788658, -0.0013007911620661616, 0.013586041517555714, 0.023828307166695595, 0.020437655970454216, 0.0375002846121788, 0.01900014467537403, -0.03350025415420532, 0.022359546273946762, 0.03618777543306351, -0.00975788664072752, 0.030078355222940445, -0.02639082632958889, -0.0033730727154761553, -0.03787528723478317, 0.033562757074832916, 0.0005473674391396344, 0.04550034552812576, -0.016797002404928207, -0.014515736140310764, -0.030797110870480537, -0.0015205193776637316, -0.03603152558207512, -0.03387525677680969, -0.00875787902623415, 0.0038008103147149086, 0.00245704990811646, 0.024672063067555428, 0.01626574993133545, -0.00851568952202797, -0.021203286945819855, 0.05440666526556015, 0.013336039148271084, 0.006488330662250519, -0.05312540382146835, 0.01625012420117855, 0.013906355947256088, -0.009781324304640293, 0.0064102052710950375, -0.004125031642615795, -0.024578312411904335, -0.015203241258859634, 0.05587542802095413, 0.004750036168843508, 0.02428143471479416, -0.0009233469027094543, -0.025828322395682335, -0.006390673574060202, -0.008023498579859734, 0.036219026893377304, -0.021343912929296494, 0.0025468943640589714, 0.007859434932470322, -0.013109475374221802, 0.021734541282057762, -0.035219017416238785, 0.03265649825334549, 0.013742292299866676, 0.0021406414452940226, 0.03312525153160095, 0.006394580006599426, -0.002660176483914256, -0.035969022661447525, -0.03465651348233223, 0.003371119499206543, -0.010429766960442066, 0.015484493225812912, -0.013898543082177639, -0.02603144943714142, 0.030453357845544815, 0.00030761954258196056, -0.0019209131132811308, -0.02112516202032566, -0.01039070449769497, 0.018093887716531754, 0.01063289400190115, 0.0009248117567040026, -0.056594181805849075, 0.01045320462435484, 0.007074272725731134, 0.012156343087553978, -0.03350025415420532, 0.004699254408478737, 0.013351663947105408, 0.01501573994755745, -0.04015655815601349, 0.005886763799935579, 0.01914077065885067, 0.003279321826994419, 5.8197467296849936e-05, 0.011296961456537247, 0.01239071972668171, 0.0008833075407892466, -0.00581645080819726, 0.0036484652664512396, 0.02525019273161888, -0.020828284323215485, 0.009929763153195381, 0.010929770767688751, -0.008843817748129368, -0.0033867445308715105, -0.012648534029722214, 0.002380877500399947, 0.03706278279423714, -0.03731278330087662, 0.05543792247772217, -0.013359476812183857, 0.005242227576673031, 0.07143804430961609, 0.007988342083990574, -0.018578266724944115, 0.03240649774670601, 0.0005576214171014726, 0.012328218668699265, -0.013773542828857899, -0.02714083157479763, 0.012132905423641205, -0.024078309535980225, -0.01837513968348503, 0.031953368335962296, -0.021843915805220604, 0.06103171408176422, 0.029797103255987167, -0.0013554791221395135, 0.031937744468450546, -0.010187577456235886, -0.0035117454826831818, -0.01262509636580944, -0.05390666052699089, -0.010867270641028881, 0.010257890447974205, 0.01603137142956257, 0.018593892455101013, -0.0074844323098659515, -0.02553144469857216, 0.000885260640643537, -0.05178164690732956, 0.00286134984344244, -0.017078254371881485, 0.00993757601827383, -0.009961013682186604, -0.03512526676058769, -0.026828330010175705, 0.03578152135014534, -0.00010748372733360156, 0.01853139139711857, 0.012531345710158348, -0.02176579087972641, 0.023609554395079613, 0.03865654394030571, -0.04978162795305252, 0.014968864619731903, -0.012531345710158348, -0.0031406490597873926, -0.007453181780874729, -0.023422053083777428, -0.0450315922498703, -0.04075030982494354, -0.011781339533627033, 0.0033320565707981586, -0.018984518945217133, -0.0425628237426281, 0.03337525576353073, 0.03164086490869522, -0.021109536290168762, 0.038344044238328934, -0.019953276962041855, -0.0024472842924296856, -0.061125464737415314, -0.04515659436583519, -0.03025023080408573, -0.05218789726495743, -0.013164162635803223, -0.019093895331025124, -0.03925029933452606, -0.018968895077705383, -0.0225001722574234, 0.007578182965517044, -0.014117294922471046, 0.006871146149933338, 0.02451581135392189, -0.012328218668699265, -0.029218973591923714, 0.014570423401892185, -0.04428158700466156, 0.012398531660437584, 0.008617253042757511, -0.02112516202032566, 0.029922103509306908, 0.0008857489447109401, -0.020312655717134476, 0.018797017633914948, 0.030359607189893723, 0.030562732368707657, 4.1351635445607826e-05, -0.056219179183244705, -0.023672055453062057, 0.015593868680298328, -0.006207078695297241, -0.03550026938319206, -0.04328158125281334, -0.04481284320354462, -0.002414081012830138, 0.0004870642733294517, 0.028578342869877815, 0.03603152558207512, 0.012179780751466751, 0.014351671561598778, -0.0038594044744968414, -0.028750218451023102, -0.008546940051019192, 0.01300791185349226, 0.0009121163166128099, -0.0007622128468938172, -0.01926577277481556, 0.027734586969017982, 0.014437610283493996, -0.02740645967423916, 0.014711049385368824, -0.037187784910202026, 0.01244540698826313, -0.007140679284930229, -0.008554752916097641, 0.02364080585539341, -0.01571105793118477, 0.03353150561451912, -0.011398524045944214, -0.00962507352232933, 0.008820380084216595, -0.06931302696466446, 0.04703160747885704, -0.012984474189579487, -0.006293016951531172, 0.018547017127275467, -0.019218897446990013, -0.005199258215725422, -0.0052109770476818085, 0.015539181418716908, 0.00138477620203048, 0.009461009874939919, -0.013671979308128357, 0.013523540459573269, 0.029422098770737648, 0.036719031631946564, -0.04190656915307045, -0.018203264102339745, -0.026234574615955353, -0.0034238542430102825, 0.02478143945336342, 0.0018242326332256198, 0.01238290686160326, 0.024234559386968613, 0.00047265985631383955, 0.03228149563074112, -0.01300009898841381, -0.024843938648700714, 0.05287540331482887, -0.01231259386986494, -0.039719052612781525, 0.03806278854608536, -0.012734471820294857, -0.015921996906399727, 0.003218774450942874, 0.0010820395546033978, 0.027062706649303436, 0.020078279078006744, 0.041969068348407745, -0.004105499945580959, 0.0029922104440629482, 0.027828337624669075, -0.0009267648565582931, 0.013429789803922176, 0.02362518012523651, 0.0070234909653663635, -0.0026035355404019356, 0.005789106711745262, -0.019484523683786392, -0.00013525494432542473, -0.0027207238599658012, 0.010109452530741692, 0.03478151559829712, 0.00862506590783596, 0.02014077827334404, -0.055844176560640335, -0.004273470025509596, -0.03065648302435875, -0.007230523973703384, 0.0038086227141320705, 0.007906310260295868, 0.03200024366378784, 0.018406391143798828, -0.0010048904223367572, 0.00014624134928453714, -0.010836020112037659, -0.019812650978565216, 0.008265688084065914, -0.01950014941394329, 0.014171983115375042, -0.021234536543488503, -0.05825044587254524, -0.0030566640198230743, 0.03365650773048401, -0.03765653818845749, 0.02539081871509552, -0.01225009374320507, -0.05106288939714432, 0.0035117454826831818, 0.010421954095363617, 0.008257875218987465, -0.0016084107337519526, -0.004281282890588045, -0.00653911242261529, 0.03462526574730873, -0.020703282207250595, -0.0002294939331477508, -0.006433642935007811, 0.006269579287618399, 0.009867263026535511, 0.00020019683870486915, 0.029562724754214287, 0.004476596601307392, -0.032437749207019806, 0.003218774450942874, -0.003718778258189559, -0.021437663584947586, -0.03015648014843464, -0.035187769681215286, -0.015671994537115097, -0.0020449375733733177, 0.035344019532203674, 0.01193759124726057, -0.008539127185940742, -0.010156327858567238, -0.0017695447895675898, 0.004253938794136047, 0.019812650978565216, -0.02089078351855278, -0.007777403108775616, -0.01828138902783394, 0.02551581896841526, -0.004457065369933844, -0.029375223442912102, 0.04075030982494354, -0.012507908046245575, 0.018328264355659485, -0.017187630757689476, 0.026984581723809242, -0.018343890085816383, 0.006238328758627176, -0.015484493225812912, -0.04312532767653465, -0.000674321549013257, 0.001238290686160326, 0.010929770767688751, -0.014218858443200588, -0.031843993812799454, -0.013781354762613773, 0.04440658912062645, -0.023234551772475243, -0.013093849644064903, -0.022031418979167938, -0.035219017416238785, 0.015445430763065815, 0.023922057822346687, 0.004968788009136915, -0.018547017127275467, -0.022812673822045326, -0.013586041517555714, -0.024859564378857613, -0.007960998453199863, -0.0007216851809062064, 0.007703183684498072, 0.01675012707710266, 0.025593945756554604, 0.005675824359059334, -0.0400315560400486, -0.0045156595297157764, 0.02414080873131752, 0.030593983829021454, -0.030672108754515648, 0.024734564125537872, 0.008929755538702011, -0.026562701910734177, -0.034344013780355453, 0.01737513206899166, 0.007875059731304646, 0.0487816222012043, 0.000495365122333169, 0.00837506353855133, 1.9409328160691075e-05, -0.006902396213263273, -0.049469128251075745, -0.015054802410304546, 0.01456261146813631, -0.02700020559132099, -0.0047773802652955055, -0.010711018927395344, -0.012031341902911663, -0.013062600046396255, 0.0035898711066693068, 0.00478128669783473, 0.00969538651406765, 0.018422015011310577, 0.027593960985541344, 0.005960982758551836, -0.03925029933452606, 0.026718953624367714, -0.017468882724642754, 0.006859427317976952, 0.019718900322914124, -0.02653145231306553, 0.055719174444675446, 0.025578320026397705, -0.005585980135947466, 0.008773504756391048, -0.0019091942813247442, -0.030437732115387917, 0.01514074020087719, -0.022062668576836586, 0.024312686175107956, -0.0550629198551178, 0.032218996435403824, -0.015203241258859634, -0.005605511367321014, 0.019547024741768837, -0.03065648302435875, -0.04690660908818245, -0.00969538651406765, -0.02428143471479416, -0.011711026541888714, 0.05281290411949158, 0.002917991019785404, -0.0029199442360550165, -0.009296946227550507, 0.015843870118260384, -0.007519588805735111, 0.01501573994755745, 0.0057539502158761024, 0.0059844208881258965, 0.04528159648180008, 0.02189079113304615, 0.002343767788261175, -0.02725020796060562, -0.027547085657715797, -0.032468996942043304, 0.018359515815973282, 0.011882903054356575, -0.01687512919306755, -0.005543011240661144, -0.016484500840306282, 0.010054764337837696, 0.008750067092478275, -0.012992287054657936, -0.005945357959717512, -0.03428151085972786, -0.0007314509130083025, -0.005796919111162424, -0.0010712972143664956, -0.009046943858265877, 0.008507877588272095, -0.04731285944581032, -0.004109406378120184, 0.00638286117464304, 0.033594004809856415, -0.004218782298266888, 0.03368775546550751, -0.022234544157981873, 0.02550019510090351, -0.010148514993488789, -0.022812673822045326, -0.008851629681885242, 0.0053594158962368965, -0.024984566494822502, 0.013086037710309029, -0.025093941017985344, -0.013093849644064903, 0.01075789425522089, 0.017812635749578476, 0.01462511159479618, 0.014296984300017357, 0.018187638372182846, -0.03306275233626366, -0.007375056389719248, -0.005511760711669922, -0.01275790948420763, 0.0015468867495656013, -0.018234513700008392, 0.0300002284348011, -0.004746129736304283, 0.00607035867869854, 0.01182821486145258, -0.008343813940882683, 0.004019561689347029, 0.008851629681885242, -0.013718854635953903, 0.0008730535628274083, 0.030937736853957176, 0.025468943640589714, -0.035844024270772934, 0.0438128337264061, -0.011414149776101112, -0.0051562893204391, 0.03215649351477623, 0.0020840002689510584, -0.023187676444649696, -0.0032168214675039053, 0.007136773318052292, 0.0025429881643503904, 0.025468943640589714, 0.0016162232495844364, -0.024453312158584595, 0.02303142659366131, -0.02514081634581089, 0.026047073304653168, 0.0024218934122473, 0.004570347256958485, 0.003431666875258088, -0.016234498471021652, 0.014468860812485218, 0.00041211250936612487, -0.008554752916097641, -0.01589074544608593, 0.00343947927467525, 0.017468882724642754, -0.013539166189730167, -0.015578243881464005, 0.024828314781188965, 0.0003435084945522249, -0.00800006091594696, 0.01803138665854931, -0.0011640713782981038, 0.003572292858734727, -0.018359515815973282, 0.00634770467877388, -0.0017646618653088808, 0.0017744275974109769, -0.03206274285912514, 0.0387502945959568, -0.04303157702088356, -0.023984558880329132, -0.015171990729868412, 0.027234582230448723, -0.01975014992058277, -0.0017255990533158183, 0.029593976214528084, -0.0019463038770481944, 0.011750089935958385, 0.021828291937708855, -0.0057109808549284935, 0.007601620629429817, 0.011984466575086117, 0.018297014757990837, 0.023422053083777428, -0.0051562893204391, -0.0020117340609431267, -0.019828276708722115, -0.004015655722469091, -0.02239079587161541, 0.01037507876753807, 9.362864511786029e-05, 0.031203363090753555, -0.01007038913667202, -0.025422068312764168, -0.03353150561451912, 6.610158015973866e-05, -0.004316439386457205, 0.010929770767688751, 0.018109513446688652, 0.014218858443200588, 0.008898505009710789, -0.00931257102638483, -0.00301760109141469, 0.0032832282595336437, -0.004222688265144825, -0.002654317067936063, 0.021187661215662956, -0.003234399715438485, 0.00259572290815413, -0.01145321223884821, 0.008906317874789238, -0.01787513680756092, 0.01368760410696268, -0.015218866057693958, 0.005964889191091061, 0.020343905314803123, -0.004746129736304283, -0.0007812559488229454, 0.003628934035077691, 0.01144539937376976, 0.024718938395380974, -0.022078294306993484, 0.02914084680378437, -2.552814839873463e-05, 0.018093887716531754, -0.022109543904662132, 0.03578152135014534, 0.007585995364934206, 0.01700012944638729, 0.015859495848417282, -0.015476680360734463, -0.002513691084459424, 0.018562640994787216, 0.003177758539095521, 0.002380877500399947, -0.03553152084350586, -0.010351641103625298, 0.011148522607982159, 0.026609577238559723, 0.01507042720913887, 0.020609531551599503, 0.01583605818450451, 0.03300025314092636, 0.018203264102339745, -0.035187769681215286, -0.020984534174203873, -0.008171937428414822, -0.03603152558207512, -0.0412503145635128, 0.006222703494131565, 0.0026308794040232897, -0.031937744468450546, -0.015421993099153042, -0.025843946263194084, 0.03450026363134384, -0.05281290411949158, 0.01664075255393982, 0.014234483242034912, -0.02976585179567337, 0.01193759124726057, 0.005175820551812649, 0.004769567865878344, -0.02828146517276764, 0.011750089935958385, -0.001826185849495232, -0.03362525627017021, 0.003541042562574148, -0.022234544157981873, -0.007230523973703384, 0.014578236266970634, 0.016406375914812088, -0.01069539412856102, 0.025359569117426872, 0.04103156179189682, 0.016343874856829643, -0.01800013706088066, -0.01262509636580944, -0.0038730765227228403, -0.0045898789539933205, -0.030859610065817833, -0.003078148467466235, 0.008851629681885242, 0.014265733771026134, 0.04050030931830406, -0.020922034978866577, 0.01712513156235218, -0.0034824484027922153, 0.04903162270784378, 0.03368775546550751, 0.002371111884713173, -0.0030117416754364967, 0.016718877479434013, -0.038094040006399155, 0.035187769681215286, -0.01987515203654766, 0.01826576516032219, 0.003146508475765586, 0.004886756185442209, 0.030968986451625824, -0.001160165062174201, 0.020297029986977577, -0.014968864619731903, -0.00245704990811646, 0.032218996435403824, -0.027547085657715797, -0.005351603496819735, -0.021578289568424225, 0.00875787902623415, 0.000976569950580597, 0.04137531667947769, -0.026812704280018806, -0.04743786156177521, -0.0017597790574654937, -0.004636754281818867, 0.0069844285026192665, -0.0025254099164158106, 0.02612520009279251, -0.023312678560614586, 0.034719016402959824, 0.041219063103199005, 0.025328317657113075, -0.01262509636580944, -0.030968986451625824, 0.033969007432460785, -0.04187531769275665, 0.009359446354210377, -0.0400315560400486, -0.0053594158962368965, -0.024172060191631317, 0.004308626521378756, 0.02400018274784088, 0.016062622889876366, 0.004511753097176552, -0.02501581609249115, -0.024062683805823326, -0.005902388598769903, -0.02714083157479763, -0.024343935772776604, 0.002857443643733859, -0.005214883480221033, -0.0025019722525030375, 0.01850014179944992, 0.017687635496258736, 0.015617306344211102, -0.0010791098466143012, -0.007168023381382227, -0.016468875110149384, 0.022984551265835762, -0.0009453197126276791, 0.00419143820181489, 0.0008632878307253122, 0.05775044113397598, 0.00600785855203867, 0.019843900576233864, -0.03840654343366623, -0.0034844016190618277, 0.004414096008986235, -0.01726575754582882, -0.022687673568725586, -0.03815654292702675, 0.013773542828857899, -0.029390849173069, -0.017109505832195282, -0.022062668576836586, -0.014671986922621727, 0.03206274285912514, 0.015406367368996143, -0.006500049494206905, -0.001168954186141491, 0.035094019025564194, 0.002037124941125512, -0.0338127575814724, -0.03403151035308838, -0.03400025889277458, 0.03937530145049095, -0.0306252334266901, 0.0146954245865345, -0.0014502063859254122, -0.003265650011599064, 0.07306306064128876, 0.013640728779137135, -0.006921927910298109, -0.015039177611470222, -0.007003959733992815, 0.038094040006399155, -0.02300017513334751, 0.006550831254571676, 0.0012451267102733254, 0.006632863078266382, -0.006421924103051424, 0.022312670946121216, 0.01726575754582882, -0.00021069496870040894, 0.015492306090891361, -0.016296999529004097, -0.016328249126672745, -0.017609508708119392, 0.01163290161639452, -0.012734471820294857, 0.04093781113624573, -0.04540659487247467, 0.00046850944636389613, -0.020187653601169586, -0.014101670123636723, 0.03943780064582825, -0.02165641449391842, -0.03403151035308838, 0.006578175351023674, -0.012898535467684269, -0.025968948379158974, 0.0034062759950757027, 0.020437655970454216, 0.036437779664993286, -0.0004025909584015608, -0.018562640994787216, -0.015781370922923088, -0.00962507352232933, 0.011914153583347797, 0.01600012183189392, 0.009257882833480835, 0.028734594583511353, 0.018047012388706207, -0.03418776020407677, 0.0038008103147149086, 0.014062607660889626, 0.020562656223773956, -0.00043677090434357524, 0.007480525877326727, 0.00914069451391697, -0.006019577383995056, -0.008796942420303822, 0.00793756078928709, 0.00962507352232933, -0.0029004127718508244, 0.008656316436827183, 0.013171975500881672, -0.031953368335962296, 0.01238290686160326, 0.016156373545527458, -0.004023468121886253, -0.014867301099002361, -0.01625012420117855, 0.014148545451462269, 0.03160961717367172, 0.0027363488916307688, 0.0018877097172662616, -0.025937698781490326, 0.0006210985011421144, -0.01107820961624384, -0.0010634846985340118, 0.026109574362635612, 0.007472713477909565, -0.008882880210876465, -0.0181563887745142, 0.005074257496744394, -0.010648518800735474, 0.01369541697204113, -0.0037773726508021355, -0.02512519247829914, 0.02290642447769642, 0.004918006248772144, -0.00832037627696991, -0.0014160263817757368, -0.020062653347849846, 0.02776583656668663, -0.008273500949144363, 0.0012148530222475529, -0.019437648355960846, 0.008875067345798016, -0.03840654343366623, -0.01044539175927639, 0.0021035317331552505, -0.00478128669783473, 0.010898520238697529, -0.00882819201797247, 0.01850014179944992, -8.197083661798388e-05, -0.012437595054507256, 0.023562679067254066, -0.015500118024647236, 0.001086922362446785, -0.02050015702843666, -0.015031364746391773, -0.005976608023047447, 0.009593822993338108, 0.018562640994787216, -0.005980514455586672, -0.033594004809856415, -0.0021289223805069923, 0.030437732115387917, 0.0011298914905637503, -0.011882903054356575, -0.016343874856829643, -0.009648511186242104, -0.021578289568424225, 0.009703199379146099, 0.008976630866527557, 0.017687635496258736, 0.014265733771026134, -0.0036015899386256933, -0.013968857005238533, -0.018547017127275467, 0.008125062100589275, -0.019343897700309753, 0.0008877021027728915, -0.01965639926493168, -0.02164079062640667, -0.07331305742263794, 0.006300829350948334, 0.013062600046396255, 0.0312502384185791, -0.006242235191166401, -0.030828360468149185, 0.012789160013198853, -0.010289140976965427, -0.00415628170594573, 0.004871130920946598, -0.013796980492770672, -0.03114086203277111, 0.015898559242486954, 0.007640683092176914, 0.0030664296355098486, 0.005605511367321014, -0.0013671979540959, 0.004007842857390642, -0.010406329296529293, -0.017093880102038383, -0.027484584599733353, -0.006203172262758017, 0.015531368553638458, -0.007621151860803366, 0.007914123125374317, 0.05356290936470032, -0.028047088533639908, -0.006839896086603403, -0.01494542695581913, 0.01345322746783495, 0.005101601593196392, 0.00215626647695899, 0.005031288601458073, -0.017968887463212013, 0.004765661433339119, -0.025953322649002075, 0.014507923275232315, 0.008437564596533775, 0.02837521582841873, 0.001458018901757896, -0.004402377177029848, 0.002408221596851945, -0.020812658593058586, -0.028297090902924538, 0.008187562227249146, 0.0063672359101474285, 0.015609494410455227, -0.014273546636104584, 0.007835997268557549, 0.01975014992058277, 0.005101601593196392, -0.0014433703618124127, 0.0039336238987743855, -0.031968992203474045, 0.011789152398705482, -0.009882887825369835, -0.010773519985377789, -0.02239079587161541, -0.015461055561900139, -0.001476573757827282, 0.06418798863887787, 0.007652401924133301, -0.006839896086603403, -0.00462503544986248, 0.01370322983711958, 0.010726644657552242, 0.019734526053071022, 0.024687688797712326, 0.01790638640522957, 0.0003955108404625207, 0.01032039150595665, 0.0014375109458342195, 0.004656285513192415, 0.021672040224075317, 0.027937714010477066, -0.0024746281560510397, 0.03565652295947075, -0.01601574756205082, 0.025687696412205696, -0.0106250811368227, -0.00472269207239151, -0.00900788139551878, 0.014679799787700176, -0.011640713550150394, -0.00932038389146328, -0.017078254371881485, 0.003314478322863579, 0.00697270967066288, -0.02253142185509205, 0.011804777197539806, 0.007996154949069023, -0.010921957902610302, 0.03837529197335243, -0.008820380084216595, 0.010156327858567238, 0.03478151559829712, 0.007562557701021433, -0.019547024741768837, -0.009171945042908192, 0.013476665131747723, -0.018453266471624374, -0.0049726939760148525, 0.002224626252427697, -0.016218874603509903, 0.009476634673774242, -0.006859427317976952, 0.002343767788261175, 0.04337533190846443, -0.004101593978703022, -0.012773535214364529, 0.005050819832831621, 0.000554691709112376, -0.02151578851044178, -0.012367282062768936, -0.013351663947105408, 0.0275314599275589, 0.020093902945518494, -3.1799558200873435e-05, 0.0010039139306172729, 0.014812612906098366, -0.003980499226599932, 0.02478143945336342, -0.0039316704496741295, -0.05037538334727287, 0.002748067956417799, 0.0001116951898438856, -0.010031326673924923, -0.024093933403491974, -0.006531300023198128, 0.038719046860933304, -0.002289080061018467, 0.016359500586986542, 0.00013794050028081983, 0.017062630504369736, 0.00391409220173955, -0.002687520580366254, 0.004418002441525459, 0.002193376189097762, 0.0021816573571413755, -0.01890639401972294, -0.004769567865878344, 0.0005615277332253754, 0.010640705935657024, 0.007925841957330704, 0.012820410542190075, -0.0012734471820294857, -0.007820372469723225, -0.0077539654448628426, 0.012242280878126621, -0.008359438739717007, -0.01168758887797594, 0.00738286878913641, 0.018797017633914948, -0.004761755000799894, 0.006343798246234655, -0.014664174057543278, 0.007988342083990574, 0.030437732115387917, 0.008820380084216595, 0.011054771952331066, -0.02665645256638527, -0.0200157780200243, 0.022593922913074493, -0.003306665923446417, 0.010492267087101936, -0.006257860455662012, -0.020078279078006744, -0.005351603496819735, -0.021078286692500114, -0.009523510001599789, -0.019734526053071022, 0.010648518800735474, -0.000931159476749599, -0.01614074781537056, 0.018968895077705383, -0.0022226732689887285, 0.006765676662325859, 0.00446878420189023, 0.004179719369858503, -0.019062645733356476, 0.0023086112923920155, 0.011187585070729256, 0.01300009898841381, 0.027484584599733353, -0.010531330481171608, 0.005793013144284487, 0.021953292191028595, -0.015492306090891361, -0.007664120756089687, 0.0029883040115237236, 0.0193907730281353, -0.024437686428427696, -0.016343874856829643, 0.008414126932621002, 0.004140656441450119, 0.019468897953629494, 0.007894591428339481, 0.006718801334500313, -0.022328294813632965, -0.021718915551900864, -0.00844537653028965, 0.0021386882290244102, 0.011515713296830654, 0.022734548896551132, 0.008859442546963692, -0.005293009337037802, 0.018218889832496643, 0.01964077539741993, 0.01514074020087719, -0.021609539166092873, -0.0069102090783417225, -0.006222703494131565, 0.0037637006025761366, 0.005332071799784899, 0.000994636444374919, -0.02526581846177578, -0.006644581910222769, 0.004808630328625441, 0.003187524387612939, -0.007437556516379118, 0.02789083868265152, 0.010789144784212112, 0.005718793720006943, -0.02128141187131405, -0.021922042593359947, 0.0040898751467466354, -0.0181407630443573, -0.08350063860416412, -0.010734456591308117, -0.014687611721456051, -0.001600598101504147, -0.00925007089972496, 0.0034785422030836344, -0.012539158575236797, 0.0073359934613108635, 0.0004489780403673649, 0.009046943858265877, -0.029437724500894547, 0.012750097550451756, -0.009023506194353104, -0.00831256341189146, -0.026859579607844353, -0.007750059012323618, 0.021234536543488503, 0.023609554395079613, -0.010531330481171608, -0.003695340594276786, 0.001109383418224752, -0.015265741385519505, 0.012789160013198853, -0.010851644910871983, 0.009859450161457062, 0.0026758017484098673, -0.006418017670512199, 0.015039177611470222, -0.0014326281379908323, 0.02340642921626568, -0.008437564596533775, 0.013882918283343315, -0.017843885347247124, -0.007929747924208641, 0.026687704026699066, 0.03340650349855423, 0.004738317336887121, 0.02428143471479416, -0.008492251858115196, 0.014218858443200588, 0.0018554829293861985, 0.017781386151909828, -0.025547070428729057, -0.006351611111313105, -0.026359576731920242, 0.009711011312901974, -0.032719001173973083, -0.00175196654163301, 0.028093963861465454, 0.014953238889575005, -0.005863326136022806, 0.009023506194353104, 0.010812582448124886, -0.024922065436840057, -0.0002766134275589138, -0.0043515958823263645, 0.010281328111886978, -0.005320352967828512, 0.026859579607844353, 0.01925014704465866, -0.009882887825369835, 0.030218981206417084, -0.021953292191028595, -0.0018564594211056828, 0.015796994790434837, 0.0046953484416007996, 0.0012275484623387456, 0.0387502945959568, -0.0225001722574234, 0.0008398501668125391, 0.01332041434943676, 0.031203363090753555, -0.010882895439863205, 0.016359500586986542, -0.0003972198173869401, -0.015328241512179375, -0.006578175351023674, -0.03762528672814369, -0.0003398463304620236, 0.00976569950580597, 0.0087656918913126, 0.004750036168843508, -0.016453251242637634, 0.005398478824645281, -0.008164124563336372, -0.040594059973955154, -0.018297014757990837, -0.01325010135769844, 0.030797110870480537, -0.012234468013048172, 0.0014150498900562525, -0.00023791685816831887, -0.01476573757827282, 0.021078286692500114, 0.003810575930401683, 0.04300032928586006, -0.021562663838267326, -0.02225016988813877, -0.03154711425304413, -0.03265649825334549, -0.006824270822107792, 0.00837506353855133, 0.004316439386457205, -0.018453266471624374, 0.007839903235435486, 0.008218812756240368, -0.0008960029226727784, 0.020562656223773956, 0.020218905061483383, -0.003509792499244213, 0.008296938613057137, -0.0032031494192779064, 0.0027207238599658012, 0.02075015753507614, 0.008273500949144363, 0.009148507378995419, -0.008210999891161919, 0.017593884840607643, -0.004644566681236029, -0.004460971336811781, 0.008726629428565502, 0.017812635749578476, -0.02765646018087864, -0.020093902945518494, 0.029609600082039833, 0.006964896805584431, -0.017859511077404022, -0.006058639846742153, 0.014843863435089588, -0.02764083631336689, -0.01039070449769497, -0.0475628636777401, -0.01700012944638729, -0.01787513680756092, 0.0009409251506440341, 0.015781370922923088, 0.009679761715233326, -0.022937674075365067, 0.017593884840607643, 0.02590644732117653, -0.052719153463840485, 0.0034336198586970568, 0.008882880210876465, 0.02737520821392536, -0.0162813737988472, -0.012515720911324024, -0.007117241621017456, -0.009257882833480835, 0.01839076541364193, -0.02378143183887005, 0.007832091301679611, -0.016328249126672745, -0.029547100886702538, -0.0032051026355475187, -0.016078246757388115, -0.026937706395983696, 0.01476573757827282, -0.0011894621420651674, 0.00033960220753215253, 0.0037168252747505903, 0.0030644764192402363, 0.00466019194573164, -0.020922034978866577, -0.00837506353855133, -0.0005415080231614411, 0.012578221037983894, 0.014461047947406769, 0.012171967886388302, -0.01268759649246931, 0.0029511942993849516, 0.018703266978263855, -0.016203248873353004, 0.02164079062640667, -0.0003525417414493859, 0.0206407830119133, 0.00434768944978714, 0.01914077065885067, -0.017109505832195282, 0.02340642921626568, 0.000967780826613307, -0.006460986565798521, -0.008390689268708229, -0.018828269094228745, -0.00925007089972496, 0.0004484897362999618, 0.023468928411602974, -0.008812567219138145, -0.01925014704465866, -0.001925795921124518, -4.647862442652695e-05, 0.04193782061338425, 0.016781378537416458, 0.0035937773063778877, -0.012226656079292297, 0.006847708486020565, 0.007718808948993683, -0.01176571473479271, -0.014242296107113361, 0.021172037348151207, 0.005394572392106056, 0.011750089935958385, -0.001838881173171103, 0.005820356775075197, -0.018547017127275467, 0.01507824007421732, -5.455058840198035e-07, 0.001096688094548881, 0.04737536236643791, -0.020687658339738846, 0.0037051064427942038, -0.03129711374640465, 0.0073359934613108635, -0.01037507876753807, -0.003812529146671295, -0.023297052830457687, 0.017562633380293846, -0.016968879848718643, -0.02326580323278904, -0.006589894182980061, 0.0011484462302178144, 0.00622660992667079, 0.018422015011310577, 0.008664128370583057, 0.0262814499437809, -0.009461009874939919, -0.006632863078266382, -0.0159454345703125, -0.024297060444951057, 0.0013603619299829006, 0.011211022734642029, -0.010570392943918705, -0.025547070428729057, 0.024172060191631317, 0.026422075927257538, 0.006308641750365496, -0.0035293237306177616, 0.00956257339566946, -0.01132039912045002, 0.015718869864940643, 0.018781393766403198, -0.013398539274930954, -0.013742292299866676, -0.006371142342686653, 0.017984511330723763, 0.006527393590658903, 0.0005776411271654069, 0.0011240319581702352, 0.018422015011310577, 0.004445346537977457, -0.009648511186242104, -0.005484416615217924, 0.017234506085515022, -0.008648503571748734, 0.018687643110752106, 0.021187661215662956, 0.01925014704465866, 0.015703244134783745, 0.028234589844942093, 0.0016298952978104353, 0.0168907530605793, -0.005636761896312237, 0.0017041146056726575, -0.0017070443136617541, 0.003343775402754545, 0.00011047447333112359, -0.0065156747587025166, 0.017047004774212837, 0.010093826800584793, 0.006750051397830248, -0.007058647461235523, -0.0014394641621038318, 0.007402400020509958, -0.013468853197991848, -0.007882872596383095, -0.026672078296542168, -0.029468974098563194, -0.00844537653028965, -0.007238336373120546, -0.009195382706820965, 0.010882895439863205, 0.011914153583347797, -0.0146954245865345, 0.000866705842781812, -0.0017558727413415909, 0.004410190042108297, -0.01700012944638729, -0.0068359896540641785, -0.016812628135085106, -0.00800787378102541, -0.004640660248696804, -0.006812551990151405, 0.0021797041408717632, 0.01990640163421631, 0.00800787378102541, -0.009812574833631516, -0.002214860636740923, 0.018109513446688652, -0.0006206101970747113, 0.030922111123800278, -0.0001362315088044852, 0.004445346537977457, -0.011921965517103672, -0.008656316436827183, -0.004765661433339119, -0.01639075018465519, -0.003314478322863579, -0.008711003698408604, 0.021547039970755577, 0.006648488342761993, 0.004609410185366869, 0.012468845583498478, 0.011148522607982159, 0.002455096924677491, -0.025687696412205696, -0.004441440105438232, -0.014203233644366264, 0.005707074888050556, -0.02028140425682068, 0.06178172305226326, -0.0012675877660512924, 0.011476649902760983, 0.005101601593196392, -0.003916045650839806, -0.019453274086117744, -0.002095719100907445, 0.014914176426827908, 0.011976653710007668, -0.0115625886246562, -0.006199265830218792, -0.029797103255987167, -0.0013613385381177068, 0.024062683805823326, 0.003033226355910301, 0.0193907730281353, 0.0011162194423377514, 0.008711003698408604, -0.01314072497189045, 0.01975014992058277, 0.014679799787700176, -0.01951577328145504, -0.018187638372182846, -0.02014077827334404, -0.00015295526827685535, -0.006750051397830248, -0.02026578038930893, 0.022687673568725586, -0.003408229211345315, 0.028062714263796806, 0.006785207893699408, 0.011664151214063168, -0.013429789803922176, -0.024703312665224075, -0.01651575043797493, 0.011609463952481747, 0.00703520979732275, 0.0014961052220314741, -0.029218973591923714, 0.015086052939295769, 0.009898512624204159, -0.002980491379275918, 0.016203248873353004, 0.02440643683075905, 0.0013681744458153844, -0.02562519535422325, 0.005714887287467718, -0.008039123378694057, 0.020937658846378326, -0.014789175242185593, -0.022078294306993484, -0.007597714196890593, 0.008820380084216595, 0.02426581084728241, 0.008265688084065914, -0.011406336911022663, -0.014796988107264042, -0.007375056389719248, -0.004398471210151911, 0.014265733771026134, 0.0034844016190618277, -0.025734571740031242, -0.004558628425002098, -0.029797103255987167, -0.0023418148048222065, -0.008304750546813011, -0.03142211586236954, -0.005730512551963329, -0.00925007089972496, -0.0010859457543119788, -0.0014179795980453491, -0.0050976951606571674, 0.004574253689497709, -0.022937674075365067, 0.010789144784212112, 0.005664105527102947, 0.016468875110149384, 0.02750021032989025, 0.011914153583347797, -0.007515682373195887, 0.012711034156382084, -0.01363291684538126, -0.012586033903062344, -0.006324267014861107, -0.0009663159726187587, 0.007746153045445681, -0.002320330124348402, -0.004929725080728531, 0.0038652638904750347, -0.02403143420815468, -0.015851683914661407, 0.012289156205952168, -0.008109437301754951, 0.0054687918163836, 0.020937658846378326, -0.002361346036195755, -0.007289118133485317, -0.02262517251074314, 0.013843855820596218, -0.018968895077705383, 0.014117294922471046, 0.01076570712029934, -0.003724637906998396, 0.0033281503710895777, -0.0218751672655344, -3.521755206747912e-05, 0.0004191926564089954, -0.005824263207614422, -0.0039726863615214825, 0.004980506841093302, -0.018343890085816383, 0.00011493007332319394, -0.017578259110450745, -0.001536144525744021, -0.013500102795660496, 0.012789160013198853, 0.02212516963481903, 0.0075664641335606575, -0.028218965977430344, -0.011132897809147835, -0.013242288492619991, -0.01294541172683239, -0.011437587440013885, -0.013117287307977676, 0.016343874856829643, 0.0016201295657083392, -0.031234612688422203, -0.012281343340873718, 0.003531276946887374, -0.011836027726531029, -0.004437533672899008, 0.022937674075365067, 0.002136735012754798, -0.015179803594946861, -0.012773535214364529, 0.006414111237972975, -0.0029922104440629482, -0.003500026650726795, 0.003980499226599932, -0.006320360582321882, 0.017203256487846375, -0.008390689268708229, 0.0002526874886825681, 0.016296999529004097, -0.01237509399652481, 8.92951138666831e-05, -0.030359607189893723, -0.02112516202032566, 0.018984518945217133, 0.00962507352232933, -0.00044140961836092174, -0.026343951001763344, 0.0008012756588868797, 0.017437633126974106, -0.005789106711745262, 0.005464885383844376, -0.020187653601169586, 0.006164109334349632, -0.011882903054356575, 0.0010439532343298197, 0.007757871877402067, 0.0075234947726130486, -0.028609592467546463, -0.006140671670436859, 0.004691442009061575, 0.007554745301604271, 0.007636777125298977, -0.009421946480870247, 0.023797055706381798, 0.006742238998413086, 0.026828330010175705, 0.012992287054657936, 0.010296953842043877, -0.03343775495886803, 0.019922027364373207, 0.018734518438577652, -0.015757933259010315, 0.012414157390594482, 0.004960975144058466, 0.008476627059280872, 0.0031621335074305534, -0.008539127185940742, 0.01614074781537056, -0.00042578449938446283, 0.014476672746241093, -0.037469036877155304, -0.0087656918913126, -0.0031582273077219725, -0.014711049385368824, 0.01700012944638729, -0.0015322382096201181, 0.02228141948580742, 0.014437610283493996, -0.005996139720082283, -0.013476665131747723, -0.007640683092176914, 0.00722661754116416, 0.028437716886401176, 0.0049414439126849174, -0.01170321460813284, -0.00944538414478302, -0.004566441290080547, 0.009289133362472057, -0.009773512370884418, -0.0043828459456563, -0.00607035867869854, -0.0061289528384804726, -0.02912522293627262, -0.005179726984351873, -0.005187539383769035, -0.03115648776292801, -0.029078347608447075, 0.000357668730430305, 0.0047109732404351234, 0.0007417048909701407, 0.01926577277481556, 0.013343852013349533, 0.021109536290168762, 0.02265642210841179, 0.003779325634241104, 0.01056258101016283, 0.011406336911022663, -0.013023536652326584, -0.0037461223546415567, -0.019718900322914124, -0.021828291937708855, 0.0008911200566217303, 0.02037515491247177, -0.0025195505004376173, -0.031234612688422203, 0.016828253865242004, 0.004179719369858503, -0.018937643617391586, 0.005511760711669922, 0.01244540698826313, 0.012507908046245575, 0.006418017670512199, -0.0064844246953725815, -0.001554699381813407, -0.012789160013198853, -0.0059492639265954494, 0.0002541523426771164, -0.023312678560614586, -0.0018291155574843287, 0.0019668119493871927, -0.029547100886702538, 0.006437548901885748, 0.006886771414428949, -0.023937683552503586, -2.7328700525686145e-05, 0.004867224488407373, 0.0090781943872571, -0.019234521314501762, 0.014546985737979412, 0.01314072497189045, 0.0036406528670340776, 0.006609425414353609, 0.004214875865727663, 0.007859434932470322, -0.016406375914812088, 0.006871146149933338, -0.013296976685523987, -0.012171967886388302, 0.00446878420189023, 0.002806662116199732, 0.012773535214364529, -0.017953261733055115, 0.03168774023652077, -0.010429766960442066, 0.012890723533928394, -0.0029883040115237236, -0.0020488437730818987, 0.027297083288431168, 0.00500003807246685, 0.007421931717544794, 0.030078355222940445, -0.02425018511712551, -0.005031288601458073, 0.0030195543076843023, 0.0041289376094937325, -0.00646879943087697, 0.011109460145235062, 0.022234544157981873, -0.02137516252696514, -0.005664105527102947, -0.015062615275382996, -0.029047096148133278, 0.025687696412205696, -0.006863333750516176, -0.0013720807619392872, 0.014226671308279037, -0.007652401924133301, -0.007171929813921452, 0.014648549258708954, -0.005800825543701649, -0.008195375092327595, -0.011726652272045612, -0.008406314067542553, 0.029343973845243454, 0.01951577328145504, 0.001151375938206911, 0.003371119499206543, 0.008484439924359322, -0.01701575517654419, 0.015796994790434837, -0.011593838222324848, 0.013398539274930954, -3.7658977817045525e-05, -0.029078347608447075, 0.014640736393630505, -0.008906317874789238, 0.021297037601470947, -0.026093948632478714, 0.013804792426526546, -0.025828322395682335, -0.0020293123088777065, 0.015632931143045425, 0.007609433028846979, -0.0013935653259977698, 0.004152375273406506, 0.0018535297131165862, 0.0076055265963077545, -0.0011943450663238764, 0.01400010660290718, 0.003929717466235161, 0.0006367235910147429, 0.010117264464497566, -0.022843923419713974, 0.009500072337687016, -0.006656300742179155, 0.0016914191655814648, -0.019422022625803947, -0.010984458960592747, -0.018234513700008392, -0.0034199480433017015, 0.00581645080819726, -0.007324274629354477, -0.014843863435089588, -0.007203179877251387, 0.0018330217571929097, -0.002292986260727048, 0.001238290686160326, 0.0012402437860146165, -0.0017939589451998472, -0.005531292408704758, 0.006164109334349632, -0.01038289163261652, 0.017422007396817207, 0.005332071799784899, 0.003375025698915124, 0.006140671670436859, -0.014867301099002361, 0.0036816687788814306, -0.001715833437629044, -0.020843908190727234, -0.001976577565073967, 0.015007927082479, 0.001678723725490272, 0.01069539412856102, -0.00700786616653204, 0.0018203264335170388, 0.008578190580010414, -0.027562709525227547, -0.013781354762613773, 0.006214891094714403, 0.014265733771026134, -0.0023476742208003998, -0.0010742269223555923, -0.02903147228062153, 0.011898527853190899, -0.0007631893968209624, -0.002187516773119569, -0.008429751731455326, -0.000981452758423984, 0.003275415627285838, 0.007394587621092796, -0.007980529218912125, -0.01038289163261652, -0.006648488342761993, 0.01603137142956257, 0.007945372723042965, 0.004125031642615795, -0.015500118024647236, 0.002884787740185857, 0.01307822484523058, -0.009093819186091423, 0.019453274086117744, 0.012211030349135399, -0.013359476812183857, -0.007039116229861975, -0.006296922918409109, -0.003050804603844881, -0.003576199058443308, -0.003669949946925044, -0.002875021891668439, -0.0006962943589314818, -0.00286134984344244, 0.013429789803922176, -0.0037617473863065243, 0.0027832244522869587, 0.01207821723073721, -0.022984551265835762, -0.006085983943194151, -0.0023047050926834345, 0.03140648826956749, -0.033094003796577454, 0.010476642288267612, 0.012882910668849945, 0.014257920905947685, 0.008664128370583057, 0.014984489418566227, -0.012023529037833214, 0.006320360582321882, 0.006125046871602535, 0.013351663947105408, 0.0031660397071391344, 0.005136758089065552, 0.004617222584784031, -0.001825209241360426, 0.004378939513117075, 0.001426768722012639, -0.007476619444787502, 0.0033828383311629295, 0.01144539937376976, 0.014859488233923912, 0.003351588035002351, 0.017312632873654366, -0.002917991019785404, -0.0026992394123226404, 0.0262814499437809, 0.0050078509375452995, 0.004375033546239138, 0.005812544375658035, -0.003078148467466235, -0.005652386695146561, -0.011086022481322289, 0.019672024995088577, -0.01915639638900757, -0.003517604898661375, 0.003917998634278774, -0.01800013706088066, -0.007777403108775616, -0.010507892817258835, -0.00587895093485713, 0.018406391143798828, 0.013867293484508991, 0.007863340899348259, 0.01801576279103756, -0.006390673574060202, -0.00893756840378046, -0.00028637913055717945, 0.02928147278726101, 0.018343890085816383, -0.005890669766813517, -0.017312632873654366, 0.0014365344541147351, -0.005812544375658035, -0.007593807764351368, 0.015539181418716908, -0.016984503716230392, 0.023234551772475243, 0.006804739590734243, 0.013093849644064903, -0.009953200817108154, -0.006304735783487558, 0.0009931715903803706, 0.0001795668067643419, 0.0065156747587025166, -0.0013818464940413833, 0.012609471566975117, -0.01589074544608593, 0.03137524053454399, 0.03187524154782295, -0.012523532845079899, -0.014336046762764454, 0.0262814499437809, 0.005058632232248783, 0.014781362377107143, -0.010554768145084381, -0.009789137169718742, -0.02190641686320305, -0.009093819186091423, -0.01193759124726057, 0.021234536543488503, 0.01432042196393013, -0.0010576252825558186, -0.006742238998413086, 0.027562709525227547, 0.01431260909885168, -0.027093956246972084, -0.0007114312029443681, -0.005031288601458073, 0.022922050207853317, -0.010156327858567238, 0.003003929276019335, 0.006125046871602535, -0.006242235191166401, 0.03468776494264603, 0.011015709489583969, -0.005394572392106056, 0.013445415534079075, 0.011617275886237621, -0.0070234909653663635, 0.005011756904423237, -0.004613316617906094, 0.0075664641335606575, -0.016609501093626022, -0.00982819963246584, 0.010820395313203335, 0.008289125747978687, 0.02764083631336689, -0.0014824331738054752, 0.0034023697953671217, 0.017984511330723763, 0.007675839588046074, 0.007050835061818361, 0.012875097803771496, 0.009257882833480835, 0.014336046762764454, 0.005652386695146561, -0.004093781113624573, -0.020203279331326485, 0.011726652272045612, -0.0025937696918845177, 0.026953330263495445, 0.013867293484508991, 0.018718892708420753, 0.0212501622736454, -0.017468882724642754, -0.0027578335721045732, -0.02553144469857216, 0.009836012497544289, 0.01837513968348503, -0.017922012135386467, -0.005824263207614422, 0.003388697747141123, 0.010906333103775978, 0.010054764337837696, 0.019468897953629494, -0.009875074960291386, -0.0007622128468938172, 0.0021035317331552505, 0.021437663584947586, -0.020187653601169586, -0.011914153583347797, 0.008531315252184868, 0.001513683469966054, -0.007750059012323618, -0.00507035106420517, 0.011429774574935436, -0.0007143609109334648, 0.0022070480044931173, 0.03840654343366623, 0.005668011959642172, 0.009289133362472057, -0.009554760530591011, -0.01262509636580944, -0.016797002404928207, 0.0006914115510880947, 0.0031992432195693254, 0.013851667754352093, -0.008976630866527557, -0.020203279331326485, 0.03565652295947075, 0.0023691586684435606, -0.01494542695581913, 0.005062538664788008, 0.020922034978866577, 0.007496151141822338, -0.018687643110752106, -0.003214868251234293, 0.00869537889957428, -0.0056719183921813965, -0.004214875865727663, 0.011679776944220066, -0.004593784920871258, -0.015414180234074593, -0.011039147153496742, 0.017203256487846375, -0.008171937428414822, 0.0004218782123643905, 0.0041289376094937325, -0.013796980492770672, -0.0034844016190618277, 0.001729505369439721, -0.0003017601266037673, -0.007140679284930229, 0.009109444916248322, 0.006214891094714403, -0.02365642972290516, 0.019562648609280586, -0.017093880102038383, 0.026922080665826797, -0.003652371698990464, -0.012336031533777714, 0.015882933512330055, 0.004683629609644413, -0.006789114326238632, 0.009921950288116932, -0.00944538414478302, 0.0054687918163836, 0.013757917098701, 0.0005434611812233925, -0.017234506085515022, 0.026172075420618057, -0.0014052841579541564, -0.013984481804072857, -0.021984543651342392, -0.013984481804072857, -0.012812597677111626, -0.0066055189818143845, 0.0007529354188591242, 0.036094024777412415, 0.0034844016190618277, 0.012789160013198853, -0.007039116229861975, 0.020406406372785568, -0.019328271970152855, 0.015375116840004921, 0.0312814898788929, -0.010062577202916145, 0.011273523792624474, 0.023484554141759872, -0.0168907530605793, 0.00060986791504547, -0.013992294669151306, 0.004796911496669054, 0.01500011421740055, 0.026859579607844353, -0.012367282062768936, 0.013726667501032352, -0.021062660962343216, -0.01176571473479271, 0.013750105164945126, -0.0034980736672878265, 0.010789144784212112, -0.0350315161049366, 0.008578190580010414, -0.0003605984675232321, -0.007609433028846979, 0.0076797460205852985, -0.012429782189428806, 0.00014587513578590006, 0.022359546273946762, -0.0012421970022842288, -0.012234468013048172, 0.009336008690297604, -0.0013564556138589978, -0.0017763806972652674, 0.020937658846378326, -0.017359508201479912, 0.011429774574935436, -0.008117249235510826, 0.005199258215725422, 0.0061719221994280815, -0.0019043113570660353, 0.013367289677262306, -0.016703251749277115, 0.008554752916097641, 0.017781386151909828, -0.017047004774212837, -0.016609501093626022, 0.009773512370884418, 0.011156335473060608, -0.008414126932621002, -0.0032070556189864874, 0.007378962356597185, -0.0025293161161243916, -0.0011611416703090072, -0.00797271728515625, 0.01200790423899889, 0.016343874856829643, -0.023578304797410965, 0.023843931034207344, 0.0031172113958746195, 0.02801583893597126, -0.02087515965104103, 0.005496135912835598, -0.017437633126974106, -0.033562757074832916, 0.0044336277060210705, 0.015992309898138046, -0.0017968886531889439, -0.029312724247574806, -1.2695409168372862e-05, 0.0012763768900185823, 0.0011806730180978775, -0.020687658339738846, 0.0009209054405800998, 0.008773504756391048, -0.013445415534079075, -0.0032812750432640314, -0.037969037890434265, -0.009945387952029705, 0.0025449413806200027, -0.0005571331712417305, -0.003816435346379876, 0.0037910444661974907, -0.028703343123197556, 0.005093788728117943, -0.030843986198306084, 0.015109490603208542, 0.01539074257016182, -0.002394549548625946, 0.011992279440164566, -0.01100789662450552, 0.0162813737988472, 0.009218820370733738, 0.006585987750440836, -0.017328256741166115, 0.021093910560011864, -0.012656346894800663, 0.027609584853053093, -0.002076187636703253, 0.004375033546239138, -0.030203355476260185, 0.007171929813921452, -0.015484493225812912, -0.02276579849421978, 0.005222695879638195, 0.03850029408931732, -0.000953620532527566, 0.017953261733055115, 0.00060986791504547, -0.0027617397718131542, -0.01837513968348503, 0.02100015990436077, 0.0040898751467466354, 0.0036640905309468508, 0.007488338276743889, 0.010789144784212112, -0.00762505829334259, -0.003099632915109396, 0.01275790948420763, 0.022937674075365067, -0.01812513917684555, 0.017484508454799652, -0.027812711894512177, 0.014445423148572445, -0.004171906970441341, -0.03312525153160095, -0.02828146517276764, -0.00021423502766992897, -0.00731255579739809, 0.0200157780200243, -0.01853139139711857, -0.0022168138530105352, -0.01225009374320507, 0.013601666316390038, 0.016296999529004097, -0.015851683914661407, -0.0024453310761600733, 0.017468882724642754, 0.020047027617692947, -0.016343874856829643, 0.0029140848200768232, 0.010023513808846474, 0.008671941235661507, 0.020609531551599503, 0.0318596176803112, 0.016421999782323837, -0.01168758887797594, -0.0050469134002923965, -0.015086052939295769, -0.006988334469497204, 0.0005932662170380354, -0.0015986450016498566, 0.009617260657250881, -0.008500064723193645, 0.024609562009572983, 0.021843915805220604, 0.0008706121006980538, 0.017609508708119392, -0.010054764337837696, 0.014961051754653454, -0.014859488233923912, 0.0011181725421920419, 0.01232040673494339, 0.00534769706428051, 0.016547001898288727, -0.00333010358735919, 0.010476642288267612, -0.04025030881166458, -0.011961028911173344, -0.024984566494822502, -0.006406298838555813, 0.002550800796598196, 0.006734426598995924, 0.01170321460813284, 0.012476657517254353, 0.005714887287467718, -0.005230508744716644, -0.004730504937469959, 0.013984481804072857, 0.012500095181167126, 0.014531360939145088, 0.018593892455101013, 0.006460986565798521, -0.016984503716230392, -0.010359453968703747, 0.005675824359059334, -8.111634087981656e-05, -0.004453158937394619, -0.008179750293493271, -0.0031797117553651333, 0.011554775759577751, -0.014921989291906357, 0.007945372723042965, -0.0038691700901836157, 0.011164147406816483, 0.007906310260295868, 0.016359500586986542, -0.02201579324901104, -0.012586033903062344, -0.008586003445088863, 0.015476680360734463, -0.007210992742329836, -0.017593884840607643, 0.006855520885437727, 0.010484455153346062, -0.008273500949144363, 0.001976577565073967, 0.020187653601169586, -0.013742292299866676, -0.03662528097629547, -0.0015625118976458907, 0.008921942673623562, -0.0026406452525407076, -0.0007553768809884787, 0.005062538664788008, -0.002935569267719984, 0.0011084069265052676, -0.012992287054657936, 0.016797002404928207, -0.002113297348842025, -0.008507877588272095, 0.002292986260727048, 0.014523548074066639, 0.02428143471479416, -0.0016386844217777252, 0.005531292408704758, -0.008664128370583057, -0.015093864873051643, 0.0009751050965860486, -0.003976592794060707, -0.0006586964591406286, -0.0014472766779363155, -0.001275400398299098, -0.018218889832496643, -0.012046966701745987, -0.0016630985774099827, 0.0060234833508729935, 0.001188485650345683, 0.003990264609456062, -0.01100789662450552, 0.02289079874753952, -0.016312625259160995, -0.007242242805659771, 0.009304758161306381, -0.0017509899334982038, 0.005230508744716644, 0.00031347895856015384, 0.008726629428565502, -0.005324259400367737, 0.024734564125537872, -0.012039154767990112, -0.01639075018465519, -0.009812574833631516, -0.02115641161799431, -0.0002080093981930986, -0.020093902945518494, -0.012414157390594482, 0.02390643209218979, -0.0003239770885556936, 0.0319221168756485, -0.003068382851779461, 0.011156335473060608, 0.0004624058783520013, -0.0073359934613108635, 0.009742261841893196, -0.0016494266455993056, -0.003853545058518648, 0.02625020034611225, 0.012671971693634987, -0.011468837037682533, -0.0011406337143853307, 0.013664166443049908, -0.01232040673494339, -0.0025117378681898117, 0.010461017489433289, 0.00969538651406765, 0.002775411820039153, 0.02089078351855278, -0.010875082574784756, 0.0013320414582267404, -0.002623066771775484, 0.017234506085515022, -0.006066452711820602, -0.011101647280156612, 0.010171952657401562, 0.007789121940732002, 0.006531300023198128, 0.008992255665361881, -0.006300829350948334, -0.0031484614592045546, -0.007820372469723225, -0.039187800139188766, -0.017828261479735374, 0.007101616822183132, 0.006738332565873861, -0.019297022372484207, -0.027718961238861084, 0.014156358316540718, 0.02475018799304962, -0.014812612906098366, -0.008593815378844738, -0.0004555698833428323, 0.002037124941125512, -0.008367251604795456, -0.007265680469572544, -0.018562640994787216, -0.0073438058607280254, 0.006398486439138651, 0.013718854635953903, -0.019437648355960846, 0.018547017127275467, -0.003412135411053896, -0.007777403108775616, -0.012148530222475529, -0.022593922913074493, -0.012906348332762718, -0.020093902945518494, 0.010406329296529293, 0.011226648464798927, -0.012351656332612038, -0.0200157780200243, 0.007511775940656662, 0.0010390704264864326, 0.004921912681311369, 0.014023544266819954, -4.284700480639003e-05, -0.012601658701896667, 0.0024414248764514923, -0.020562656223773956, -0.0013808698859065771, 0.010468829423189163, 0.0016113404417410493, -0.009187569841742516, 0.005406291224062443, 0.018828269094228745, 0.007402400020509958, 0.011273523792624474, -0.004730504937469959, -0.01038289163261652, -0.00026074418565258384, 0.0016865363577380776, -0.0024668157566338778, -0.008179750293493271, -0.00746880704537034, -0.004535190761089325, -0.011515713296830654, -0.004789099097251892, 0.02525019273161888, -0.0011591885704547167, 0.017547009512782097, 0.0013750104699283838, 0.008171937428414822, -0.02587519772350788, -0.005160195752978325, -0.00446878420189023, 0.012226656079292297, -0.022172044962644577, 0.003392603946849704, 0.008343813940882683, 0.009523510001599789, 0.01176571473479271, -0.02740645967423916, -0.026984581723809242, -0.010328203439712524, 0.03678153082728386, 0.008125062100589275, -0.009039131924510002, 0.011750089935958385, 0.0033398692030459642, -0.000986335682682693, 0.005609417799860239, -0.0027832244522869587, -0.007949279621243477, -0.0016445438377559185, -0.0021679853089153767, -0.0005712934071198106, -0.016468875110149384, 0.01082820724695921, 0.0015761839458718896, -0.0008461978868581355, -0.013359476812183857, 0.004730504937469959, -0.017578259110450745, -0.013554790988564491, -0.0021484538447111845, 0.001696301973424852, 0.007519588805735111, -0.005855513270944357, -0.002687520580366254, 0.006656300742179155, -0.008750067092478275, -0.0169063787907362, 0.007113335654139519, -0.003962920978665352, -0.010500079952180386, 0.013203226029872894, 8.825751137919724e-05, -0.010343829169869423, -0.003943389281630516, -0.008898505009710789, 0.027343958616256714, 0.021234536543488503, 0.02412518486380577, 0.007820372469723225, 0.005812544375658035, 0.02251579612493515, 0.01889076828956604, 0.001504894345998764, -0.0012920020380988717, -0.007160210981965065, -2.024856803473085e-05, -0.013898543082177639, -0.011882903054356575, -0.006785207893699408, -0.018922019749879837, 0.0031308832112699747, -0.007960998453199863, 0.013148537836968899, -0.0030429919715970755, -0.02400018274784088, 0.009101632051169872, -0.01575011946260929, 0.0350315161049366, 0.015328241512179375, 0.017734510824084282, 0.0022578297648578882, -0.005511760711669922, -0.004179719369858503, 0.0076055265963077545, 0.002980491379275918, -0.01482823770493269, 0.011539150960743427, -0.026468951255083084, 0.019578274339437485, -0.010789144784212112, -0.012601658701896667, 0.0050976951606571674, 0.003289087675511837, 0.00180665438529104, 0.0019248194294050336, -0.0006215867470018566, -0.015515743754804134, -0.004875037353485823, 0.02989085391163826, 0.0187501423060894, -0.017343882471323013, 0.02839084155857563, 0.006691457238048315, -0.003917998634278774, 0.0028047088999301195, 0.021093910560011864, 0.017859511077404022, -0.007968810386955738, 0.004078156314790249, -0.015289179049432278, -0.00668755080550909, 0.004078156314790249, -0.012336031533777714, 0.018437640741467476, -0.008148499764502048, 0.0024843940045684576, 0.00048364626127295196, 0.016703251749277115, -0.007168023381382227, 0.0006264696130529046, -0.004152375273406506, -0.024593938142061234, 0.0018457171972841024, -0.00033056893153116107, -0.0015390742337331176, -0.020234528928995132, 0.007039116229861975, -0.008421938866376877, -0.01307822484523058, -0.024843938648700714, -2.9525981517508626e-06, -0.010640705935657024, -0.0012871192302554846, 0.023062676191329956, 0.016359500586986542, 0.004793005529791117, 0.011726652272045612, -0.007437556516379118, 0.0018105607014149427, -0.002113297348842025, 0.0004567905853036791, -0.0024687687400728464, 0.006804739590734243, -0.007089897990226746, 0.025172067806124687, -0.019468897953629494, 0.015367304906249046, 5.5420343414880335e-05, 0.0040898751467466354, -0.001875990885309875, 0.016609501093626022, 0.013445415534079075, -0.007867247797548771, -0.0006616261671297252, 0.004003936890512705, -0.011351648718118668, 0.016703251749277115, 0.01962514966726303, 0.014961051754653454, 0.012468845583498478, -0.010992271825671196, 0.008367251604795456, -0.035187769681215286, 0.007074272725731134, 0.005043007433414459, 0.0014091904740780592, 0.020703282207250595, 0.004168000537902117, 0.031953368335962296, -0.012164155021309853, -0.011218835599720478, 0.014054794795811176, -0.00793756078928709, -0.024703312665224075, 0.015234490856528282, 0.0018652486614882946, -0.0106250811368227, -0.014226671308279037, -0.007589901797473431, -0.008336001075804234, 0.02500019036233425, 0.015117302536964417, 0.006183641031384468, 0.030812734737992287, -0.002375018084421754, 0.007109429221600294, -0.0012783301062881947, 0.0035879178903996944, -0.011593838222324848, 0.010015701875090599, -0.004984412807971239, -0.018562640994787216, -0.002455096924677491, 0.009812574833631516, 0.017609508708119392, 0.0025605664122849703, -0.016718877479434013, -0.0006010787910781801, 0.009804761968553066, 0.046094100922346115, 0.009664135985076427, -0.0027129112277179956, -0.0013671979540959, -0.007058647461235523, 0.0004118683864362538, 0.010414142161607742, -0.002242204500362277, 0.0115625886246562, 0.005246133543550968, 0.018593892455101013, 0.00585160730406642, -0.016468875110149384, -0.013789167627692223, -0.023547055199742317, 0.0040469057857990265, -0.003929717466235161, 0.0008466861327178776, -0.005875044967979193, -0.001683606649748981, -0.00553910480812192, -0.013367289677262306, -0.024234559386968613, 0.004300814121961594, -0.0019062645733356476, -0.0036816687788814306, -0.004421908874064684, -0.026062699034810066, 0.01626574993133545, 0.01370322983711958, 0.0030078354757279158, 0.01912514679133892, -0.0032168214675039053, -0.024109559133648872, -0.0008564518648199737, 0.010468829423189163, 0.0037597944028675556, 0.005132851656526327, -0.005777387879788876, 0.0005644574412144721, -0.0007011772249825299, 0.025078317150473595, 0.004601597785949707, 0.013195413164794445, 0.01665637642145157, -0.00607035867869854, 0.002490253420546651, -0.00519144581630826, 0.01463292445987463, -0.004293001722544432, 0.01025007851421833, 0.014086045324802399, 0.0004765661433339119, -0.021062660962343216, -0.02150016464293003, 0.008882880210876465, 0.01762513443827629, -0.020093902945518494, 0.02090640924870968, 0.02300017513334751, 0.0031386958435177803, -0.006113328039646149, 0.016703251749277115, 0.00014099228428676724, -0.007671933621168137, 0.017968887463212013, -0.018859518691897392, 0.015132928267121315, -0.03590652346611023, -0.0024414248764514923, 0.02015640400350094, -0.0010293046943843365, 0.0043594082817435265, -0.00019409327069297433, 0.017156381160020828, -0.012218843214213848, -0.002537128748372197, -0.012218843214213848, 0.006414111237972975, 0.02776583656668663, 0.015632931143045425, 0.004187531769275665, 0.00200001522898674, -0.0002197282447014004, -0.0015800901455804706, -0.015234490856528282, -0.012968849390745163, -0.0035898711066693068, 0.006554737687110901, -0.004753942601382732, 0.005500041879713535, 0.002976585179567337, -0.01765638403594494, 0.00875787902623415, 0.0001235971285495907, 0.0106250811368227, 0.0029297098517417908, -0.020828284323215485, -0.021422037854790688, 0.003265650011599064, 0.014656362123787403, -0.0057812943123281, 0.008437564596533775, 0.0021406414452940226, 0.012125092558562756, 0.007168023381382227, 0.0017138802213594317, 0.018187638372182846, -0.018234513700008392, 0.005386759992688894, 0.004332064185291529, -0.01332041434943676, -0.003109398763626814, -0.0087656918913126, -0.0023828307166695595, 0.004992225673049688, 0.004593784920871258, 0.014406359754502773, -0.015171990729868412, -0.011203210800886154, 0.006832083221524954, 0.011953216046094894, -0.006832083221524954, 0.009359446354210377, -0.02226579561829567, -0.01764076016843319, 0.0024687687400728464, 0.05475041642785072, 0.03900029882788658, 0.013664166443049908, -0.004082062281668186, 0.009531322866678238, -0.04275032505393028, 0.002582050859928131, 0.010656331665813923, -0.014671986922621727, -0.0021269693970680237, 0.008507877588272095, -0.02587519772350788, 0.0294064749032259, 0.010273516178131104, -0.007519588805735111, 0.017718885093927383, 0.006332079414278269, -0.010898520238697529, 0.008843817748129368, -0.005355509463697672, -0.002255876548588276, 0.0187501423060894, -0.011117272078990936, -0.006824270822107792, 0.013546978123486042, -0.0024687687400728464, -0.0014882925897836685, -0.008125062100589275, -0.0042344070971012115, -0.008781316690146923, 0.022953299805521965, -0.013171975500881672, -0.012234468013048172, 0.015789182856678963, 0.01850014179944992, 0.0005556683172471821, -0.0018379046814516187, 0.01345322746783495, -0.004746129736304283, -0.01556261908262968, -0.01739075779914856, -0.020406406372785568, 0.009429759345948696, -0.015125115402042866, -0.010742269456386566, -0.008195375092327595, 0.00869537889957428, -0.00199122610501945, -0.0015879027778282762, 0.014656362123787403, 0.019843900576233864, 0.019109521061182022, -0.012546970508992672, -0.011109460145235062, 0.0007793028489686549, -0.0011406337143853307, -0.01070320699363947, 0.002728536492213607, -0.0034707295708358288, 0.008656316436827183, -0.0024257998447865248, -0.0078047472052276134, -0.0013359476579353213, 0.014859488233923912, -0.003210962051525712, -0.0005048866732977331, 0.011218835599720478, 0.006492237094789743, -0.009289133362472057, 0.010968833230435848, -0.00681645842269063, 0.010539143346250057, -0.007277399301528931, -0.006019577383995056, -0.027703335508704185, -0.005261758808046579, -0.023172052577137947, -0.0045469095930457115, -0.023343928158283234, 0.002154313260689378, -0.0013994247419759631, -0.0042344070971012115, -0.0021015785168856382, -0.003509792499244213, 0.0010195390786975622, -0.009101632051169872, 0.0003261743695475161, 0.017718885093927383, -4.2175615817541257e-05, -0.0013671979540959, -0.0054414477199316025, -0.009062569588422775, -0.004750036168843508, 0.01978140138089657, 0.021984543651342392, 0.00023925963614601642, -0.008367251604795456, -0.008265688084065914, 0.005718793720006943, -0.009789137169718742, 0.005324259400367737, 0.024812689051032066, 0.012507908046245575, 0.00600785855203867, -0.003599636722356081, -0.020093902945518494, -0.01801576279103756, -0.017734510824084282, 0.017203256487846375, 0.01363291684538126, -0.016781378537416458, 0.0005766645772382617, -0.006453174166381359, -0.0012373140780255198, -0.017922012135386467, 0.02039078064262867, 6.085251516196877e-05, 0.009492259472608566, 0.004230501130223274, 0.003898467170074582, -0.01701575517654419, 0.013836042955517769, 0.04103156179189682, 0.014406359754502773, -0.013304788619279861, -0.017078254371881485, 0.0006933646509423852, 0.002335955388844013, -0.008046936243772507, 0.012609471566975117, -0.005996139720082283, 0.004675816744565964, -0.005304728168994188, 0.019437648355960846, -0.012125092558562756, -0.003927764482796192, -0.0013720807619392872, -0.001146493130363524, 0.014484485611319542, -0.0007993225008249283, -0.03218774497509003, 0.0153204295784235, 0.004824255593121052, -0.0032773688435554504, 0.020359531044960022, 0.021109536290168762, -0.012171967886388302, -0.006101609207689762, 0.020093902945518494, -0.0005161172011867166, -0.0034199480433017015, 0.013914168812334538, 0.0031426020432263613, 0.0375315360724926, -0.002228532684966922, 0.00856256578117609, -0.03603152558207512, 0.033969007432460785, 0.0019463038770481944, -0.0005380900693126023, -0.0008139710407704115, 0.030687734484672546, 0.0028828345239162445, 0.015523555688560009, 0.00018554828420747072, -0.013640728779137135, -0.017234506085515022, 0.016937628388404846, -0.030687734484672546, -0.018968895077705383, -0.000774908228777349, 0.003320337738841772, -0.012304781004786491, 0.018953269347548485, -0.005570354871451855, 0.02475018799304962, -0.007285211700946093, 0.007738340180367231, -0.018234513700008392, -0.02014077827334404, -0.01580480858683586, 0.018687643110752106, 0.00793756078928709, 0.003177758539095521, -0.028297090902924538, 0.01032039150595665, -0.009390696883201599, -0.001037117326632142, 0.019687650725245476, 0.01650012657046318, -0.011679776944220066, 0.011742277070879936, -0.008914130739867687, -0.008898505009710789, -0.027828337624669075, 0.011570400558412075, -0.002119156764820218, -0.013265726156532764, -0.01262509636580944, 0.010773519985377789, -0.004668004345148802, 0.02787521295249462, -0.018078263849020004, 0.02712520770728588], "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd": [0.0005180916050449014, 0.003953008446842432, -0.0004355193814262748, -0.011273394338786602, -0.02247706986963749, -0.03285110369324684, 0.0054972609505057335, 0.031986601650714874, -0.011824166402220726, -0.0033429760951548815, -0.002117682946845889, 0.04598596692085266, 0.015561048872768879, 0.01146860420703888, -0.043364569544792175, 0.0015939269214868546, -0.0059992303140461445, 0.03541672229766846, 0.011705645360052586, -0.05906505510210991, 0.07696862518787384, -0.014076055958867073, -0.04093838483095169, 0.03237701952457428, -0.007919960655272007, -0.03218181058764458, -0.03354828432202339, 0.0029769570101052523, -0.008979673497378826, -0.016774142161011696, 0.041189372539520264, 0.014278238639235497, 0.016620762646198273, -0.0033447190653532743, -0.0061804973520338535, 0.003817058401182294, 0.024457059800624847, 0.03048069216310978, 0.0007568756118416786, -0.003351690946146846, 0.002429670887067914, 0.01808483898639679, 0.0582842156291008, 0.028012676164507866, -0.01800117827951908, -0.004807053133845329, -0.006483770441263914, -0.007843270897865295, -0.00781538337469101, -0.002884580520913005, -0.0054170857183635235, 0.0049604326486587524, -0.008226719684898853, 0.022379465401172638, 0.016355833038687706, -0.015254289843142033, 0.021821722388267517, 0.07992467284202576, 0.012402825057506561, -0.03926515579223633, 0.029253656044602394, 0.0036462494172155857, 0.011649871245026588, -0.005709900986403227, -0.011412830092012882, 0.005291593261063099, -0.0036706505343317986, -0.01744343340396881, -0.03993444889783859, -0.02419213205575943, -0.012263389304280281, 0.03664375841617584, -0.014271266758441925, 0.005946942139416933, -0.004702476318925619, -0.039014171808958054, 0.01279324572533369, -0.0037577981129288673, 0.03326940909028053, 0.011991488747298717, -0.01646738313138485, -0.003834487870335579, 0.003001358127221465, -0.004092444200068712, 0.06402897834777832, 0.019228212535381317, -0.030369143933057785, -0.03474743291735649, -0.045121464878320694, 0.02632550150156021, 0.002623138250783086, 0.03826121613383293, -0.037815023213624954, 0.008958757854998112, 0.02131975255906582, 0.004427090287208557, -3.918911897926591e-05, 0.02405269630253315, 0.028891121968626976, 0.007515596225857735, 0.02650676853954792, 0.024136357009410858, -0.03608601540327072, 0.013720494695007801, 0.0008509948384016752, -0.008373127318918705, 0.012082122266292572, 0.01582597754895687, -0.01720639318227768, -0.0003498970181681216, 0.011949658393859863, -0.03145674243569374, -0.005549549590796232, -0.006466340739279985, -0.026520712301135063, 0.0009141767513938248, 0.003991353325545788, -0.012298247776925564, 0.010562270879745483, -0.05672253295779228, -0.010157906450331211, 0.010952691547572613, 0.026018742471933365, 0.027789579704403877, -0.009502558037638664, -0.0054972609505057335, -0.003949522506445646, 0.04263950511813164, 0.03469165787100792, -0.0012209357228130102, -0.008066368289291859, 0.008589252829551697, 0.02002299763262272, 0.034440673887729645, 0.027357326820492744, 0.049834396690130234, 0.04844003915786743, 0.0441175252199173, -0.010095160454511642, 0.03614179044961929, -0.045400336384773254, -0.007118203677237034, -0.019228212535381317, 0.013595002703368664, -0.015114854089915752, 0.013399791903793812, -0.03600235655903816, 0.028193943202495575, -0.011245506815612316, -0.018196387216448784, -0.03770347312092781, -0.04113359749317169, -0.03260011970996857, -0.00185624067671597, 0.01874018833041191, -0.02353678271174431, -0.0149196432903409, 0.04316936060786247, -0.011998460628092289, 0.02207270637154579, 0.0165649875998497, -0.057057179510593414, 0.011001493781805038, -0.004305084235966206, 0.03736882656812668, 0.021166373044252396, 0.03159618005156517, 0.0291421078145504, -0.016760198399424553, 0.01344162318855524, 0.0393209308385849, -0.004064557142555714, -0.011670786887407303, -0.0417192280292511, -0.004779166076332331, 0.0021804291754961014, 0.07077767699956894, -0.007041513919830322, 0.024666214361786842, -0.00867291446775198, -0.010680791921913624, -0.02401086501777172, 0.007438906468451023, -0.04010177031159401, -0.026158178225159645, -0.0031512517016381025, 0.023843541741371155, 0.03299053758382797, 0.017638644203543663, 0.007010140921920538, -0.015114854089915752, -0.015365838073194027, 0.015839921310544014, -0.00011852053285110742, 0.002795690204948187, -0.0648655891418457, 0.026660148054361343, -0.0033726063556969166, 0.029476754367351532, 0.011496491730213165, -0.037536151707172394, -0.04408963769674301, -0.043922316282987595, 0.055160850286483765, -0.009391008876264095, 0.03756403550505638, -0.0008226719219237566, 9.499071893515065e-05, -0.00953044556081295, 0.02391326054930687, 0.02650676853954792, -0.015282177366316319, 0.003973923623561859, 0.005113812163472176, -0.02155679278075695, 0.026911132037639618, -0.018238218501210213, 0.01854497753083706, 0.010248539969325066, -0.0007512110169045627, 0.024066640064120293, 0.013476481661200523, 0.009614106267690659, -0.03890262171626091, -0.058116890490055084, 0.0009072049870155752, -0.021166373044252396, -0.011601069010794163, -0.020524967461824417, -0.005399656016379595, 0.02886323630809784, -0.023188194260001183, -0.002065394539386034, -0.021821722388267517, 0.026492824777960777, 0.034942641854286194, 0.023662276566028595, 0.03870741277933121, -0.013079089112579823, -0.012563176453113556, 0.02548888698220253, 0.010499524883925915, 0.004141246899962425, 0.019548915326595306, 0.02802661992609501, 0.0026771696284413338, -0.05602535232901573, 0.009112137369811535, 0.0055809225887060165, 0.008428901433944702, -0.002009620191529393, -0.008993617258965969, 0.020329756662249565, 0.022309746593236923, -0.01814061403274536, -0.008247634395956993, -0.000776919536292553, -0.0459023043513298, -0.007857213728129864, 0.0038658608682453632, -0.012835076078772545, 0.008756576105952263, 0.009056363254785538, -0.010304314084351063, 0.06285770982503891, 0.006177011411637068, 0.03625334054231644, -0.006006202194839716, -0.005193987861275673, 0.04844003915786743, -0.0177641361951828, -0.006783557590097189, 0.009007560089230537, -0.00909122172743082, 0.014835981652140617, -0.0019172439351677895, -0.03335307165980339, -0.014347956515848637, 0.006905564107000828, -0.01970229484140873, 0.019046947360038757, -0.04804961755871773, 0.04871891066431999, 0.04339245706796646, 0.002067137509584427, 0.011642899364233017, 0.007655031979084015, -0.017080901190638542, -0.028417041525244713, -0.036894746124744415, -0.025321563705801964, 0.02567015215754509, 0.012381909415125847, 0.0105274124071002, 0.010325229726731777, -0.02335551753640175, 0.004343429114669561, -0.03421757370233536, 0.01724822260439396, -0.00969079602509737, -0.003918149508535862, 0.007822355255484581, -0.041886549443006516, -0.02483353763818741, 0.027719860896468163, 0.004325999412685633, 0.03625334054231644, -0.01026945561170578, -0.013155778869986534, 0.015463443472981453, 0.02682747133076191, -0.03410602733492851, 0.03474743291735649, -0.018656525760889053, -0.002516818465664983, -0.015784146264195442, -0.005779618863016367, -0.03926515579223633, -0.008749604225158691, -0.0074110194109380245, 0.01524034608155489, -0.016411608085036278, -0.027678029611706734, 0.023425234481692314, 0.05404536426067352, -0.02109665423631668, 0.031149985268712044, -0.029448866844177246, -0.014055141247808933, -0.03025759570300579, -0.019967224448919296, -0.010785368271172047, -0.060626737773418427, -0.008498619310557842, -0.00795481912791729, -0.04395020380616188, -0.04065951332449913, -0.07429146021604538, 0.002049708040431142, 0.006239757407456636, -0.01646738313138485, -0.005786590743809938, -0.0182661060243845, 0.005180044565349817, 0.016690479591488838, -0.02613029070198536, 0.006114264950156212, -0.011140930466353893, -0.02275594137609005, 0.05014115571975708, 0.0007499037892557681, -0.005124269984662533, 0.03301842510700226, -0.0037194532342255116, 0.03497052937746048, 0.00573430210351944, -0.03714573010802269, -0.012381909415125847, 0.03488686680793762, -0.0058702523820102215, 0.007031056098639965, -0.04492625221610069, -0.03775924816727638, 0.024959029629826546, -0.010806283913552761, 0.0060968357138335705, 0.022086650133132935, 0.0020932818297296762, -0.007187921553850174, -0.0005298564792610705, -0.04277893900871277, -0.006936937104910612, 0.01478020753711462, -0.02183566428720951, 0.0030815338250249624, -0.03798234462738037, 0.006295531988143921, 0.005636697169393301, -0.0319308266043663, 0.012779301963746548, -0.028514645993709564, -0.012828105129301548, -0.01443161815404892, -0.023020870983600616, 0.031345196068286896, -0.009209742769598961, 0.04127303138375282, -0.02247706986963749, 0.004197021014988422, 0.03720150515437126, -0.056081127375364304, 0.016481325030326843, 0.02410847134888172, -0.007044999860227108, 0.012939653359353542, -0.009927837178111076, -0.007961791008710861, 0.008038480766117573, -0.026520712301135063, -0.007689890917390585, -0.025405224412679672, 0.0044619496911764145, 0.02498691715300083, -0.003276744158938527, 0.026200009509921074, -0.04049219191074371, -0.009425868280231953, -0.0002851900353562087, 0.007571370340883732, 0.00916093960404396, 0.004322513472288847, 0.0025882793124765158, 0.011677758768200874, -0.008087283000349998, 0.02659042924642563, -0.00795481912791729, 0.022602561861276627, 0.006354792043566704, -0.029950836673378944, -0.02802661992609501, 0.0019399021985009313, 0.004155190661549568, -0.0222539734095335, 0.00291421078145504, -0.0029455837793648243, 0.02183566428720951, 0.013058174401521683, 0.03798234462738037, -0.017150618135929108, 0.004214450716972351, 0.03246068209409714, 0.0015364096034318209, 0.03505419194698334, 0.01061804499477148, -0.02049707993865013, -0.0197580698877573, 0.0022327175829559565, -0.019674409180879593, -0.014529222622513771, -0.034524332731962204, -0.004643216263502836, 0.05083833634853363, 0.008177916519343853, 0.017080901190638542, -0.0209572184830904, 0.00596785731613636, -0.02654859982430935, 0.005281135439872742, 0.0005119912675581872, 0.024959029629826546, 0.021012993529438972, 0.024638326838612556, 0.029337318614125252, 0.02572592720389366, 0.01998116821050644, -0.006494227796792984, 0.012821133248507977, 0.0077805244363844395, 0.006459368858486414, -0.021012993529438972, -0.02137552574276924, -0.004127303138375282, 0.01059713028371334, -0.044340621680021286, 0.0266462042927742, -0.03575136885046959, -0.015700485557317734, 0.0023616959806531668, 0.018307937309145927, 0.02483353763818741, 0.016592875123023987, 0.011594097130000591, -0.06759853661060333, 0.01357408706098795, 0.0036357915960252285, -0.004210964776575565, -0.011907828040421009, -0.0005067624151706696, 0.020524967461824417, -0.002377382479608059, 0.03287899121642113, -0.010806283913552761, -0.03756403550505638, 0.007710806559771299, 0.00507546728476882, 0.003193082520738244, 0.0013934876769781113, -0.040408529341220856, 0.006794015411287546, 0.0056889853440225124, 0.03089899942278862, 0.002098510507494211, -0.0004570883756969124, 0.007376160006970167, 0.008373127318918705, -0.02187749557197094, 0.023578613996505737, -0.02127792127430439, -0.0058075059205293655, -0.03148462995886803, 0.025698039680719376, 0.011559237726032734, -0.05097777396440506, 0.03368771821260452, -0.004845398012548685, 0.013225496746599674, -0.0379265695810318, 0.0028915524017065763, -0.004650188144296408, 0.02201693132519722, -0.0016531870933249593, -0.03343673422932625, 0.00374734029173851, 0.0039007198065519333, -0.011761419475078583, -0.001544252852909267, -0.0315404050052166, 0.0016688737086951733, 0.03541672229766846, -0.01610484905540943, -0.00031460230820812285, -0.013002399355173111, -0.01688569039106369, 0.03923726826906204, -0.00266671204008162, 0.009676853194832802, -0.030564354732632637, -0.01450133603066206, -0.004141246899962425, -0.003586989128962159, -0.00752953952178359, 0.002084566978737712, 0.00034793620579876006, 0.0046536740846931934, 0.008651998825371265, -0.00860319659113884, -0.018098782747983932, -0.015588936395943165, 0.030173933133482933, 0.03497052937746048, -0.028695913031697273, 0.021110597997903824, 0.016578931361436844, -0.022309746593236923, -0.02307664416730404, 0.01019973773509264, 0.008401013910770416, 0.028528589755296707, -0.01260500680655241, 0.009830232709646225, -0.014459504745900631, -0.014557110145688057, -0.05379437655210495, -0.01590963825583458, 0.005926026497036219, -0.027594368904829025, -0.01678808405995369, -0.026437049731612206, -0.02035764418542385, 0.000495868967846036, -0.026060573756694794, -0.017122730612754822, 0.010192765854299068, 0.007501652464270592, 0.036978404968976974, 0.007989678531885147, -0.036699533462524414, 0.021291865035891533, -0.023062700405716896, 0.021222146227955818, 0.02483353763818741, -0.001387387397699058, 0.05945547670125961, 0.02734338492155075, -0.004744307138025761, 0.02580958977341652, -0.039432477205991745, -0.012402825057506561, 0.01804300770163536, -0.019869618117809296, 0.026729866862297058, -0.04314147308468819, 0.019033003598451614, -0.010164878331124783, 0.0034283807035535574, -0.01299542747437954, -0.02734338492155075, -0.03262800723314285, -0.023787768557667732, -0.0190608911216259, 0.01716456189751625, 0.03048069216310978, 0.020232152193784714, -0.017053013667464256, -0.01702512614428997, 0.0071356333792209625, -0.0157702025026083, 0.008184888400137424, 0.0025551633443683386, 0.014103943482041359, 0.05265100300312042, -0.0018266105325892568, 0.01144768949598074, -0.011496491730213165, -0.01970229484140873, -0.012570148333907127, 0.014445560984313488, -0.003796142991632223, 0.0008178788120858371, 0.024443116039037704, -0.026423107832670212, 0.015477387234568596, 0.01836371049284935, -0.013595002703368664, 0.001389130367897451, -0.006246729288250208, -0.000279961182968691, 0.011998460628092289, 0.0007037156610749662, -0.023062700405716896, 0.009391008876264095, -0.04169134050607681, 0.015574992634356022, 0.0009002331644296646, 0.01974412612617016, 0.0030641043558716774, 0.005549549590796232, -0.01822427473962307, 0.015477387234568596, -0.01253528892993927, -0.015812033787369728, -0.01390176173299551, -0.026200009509921074, -0.04149613156914711, 0.022449182346463203, -0.025405224412679672, 0.00999058410525322, 0.0012601520866155624, 0.0015337951481342316, 0.01886568032205105, 0.014654715545475483, 0.0031808819621801376, -0.015588936395943165, 0.017554981634020805, -0.014696545898914337, -0.0009525216300971806, -0.004622300621122122, 0.0037543121725320816, 0.030424917116761208, -0.02341129072010517, -0.03159618005156517, 0.0043992032296955585, -0.0021961156744509935, 0.014117887243628502, -0.009363122284412384, -0.014006338082253933, 0.024457059800624847, 0.02423396334052086, 0.018754132091999054, -0.019186383113265038, 0.031010549515485764, -0.04487048089504242, 0.008679886348545551, 0.043085698038339615, 0.0209572184830904, 0.002828806173056364, -0.022379465401172638, 0.013350989669561386, 0.026478881016373634, 0.013790212571620941, -0.0003498970181681216, -0.019632577896118164, -0.002813119674101472, -0.0036532210651785135, 0.03789868205785751, 0.01068776287138462, 0.016760198399424553, 0.018809905275702477, 0.0031617095228284597, 0.02331368625164032, 0.0019555888138711452, -0.012430712580680847, -0.03840065374970436, 0.020608628168702126, -0.006201412528753281, -0.013371904380619526, -0.0023355516605079174, 0.015672598034143448, 0.02456860989332199, -0.011845081113278866, 0.02377382479608059, 0.00855439342558384, -0.0020270496606826782, -0.024401286616921425, 0.0006570917903445661, 0.009028475731611252, 0.0054972609505057335, -0.014975418336689472, 0.03778713569045067, -0.024415230378508568, -0.0407152883708477, -0.007236724253743887, 0.02197510190308094, 0.002511589555069804, 0.021765947341918945, 0.01344162318855524, -0.00994178093969822, 0.007585314102470875, 0.029588302597403526, -0.031707730144262314, 0.011022409424185753, 0.02668803557753563, 0.01915849559009075, 0.029169995337724686, 0.003660192945972085, 0.004325999412685633, -0.019437367096543312, 0.014159717597067356, -0.013058174401521683, 0.022449182346463203, 0.006389650981873274, 0.01698329485952854, -0.005438000895082951, -0.011698673479259014, -0.042806826531887054, 0.0020200780127197504, 0.011370999738574028, 0.016718367114663124, -0.0043782880529761314, 0.0005690728430636227, -0.0022954638116061687, -0.009586219675838947, -0.011106071062386036, -0.0015486101619899273, -0.024582553654909134, 0.004454977810382843, 0.0004658031102735549, -0.004434062168002129, 0.021445244550704956, -0.02571198344230652, -0.012765358202159405, -0.010924804024398327, 0.02507057785987854, -0.020566798746585846, -0.0008562236907891929, 0.0072855269536376, 0.007843270897865295, -0.02062257193028927, -0.00032440637005493045, 0.001268866821192205, 0.015351895242929459, -0.0005285493098199368, 0.03396658971905708, -0.00450029456987977, 0.012110009789466858, -0.013734438456594944, 0.016899634152650833, -0.015017248690128326, 0.008638055063784122, 0.032823216170072556, -0.018726244568824768, -0.0012662524823099375, -0.0019189869053661823, 0.01306514535099268, -0.0011416316265240312, -0.023341573774814606, -0.009356150403618813, 0.0029595273081213236, 0.02497297339141369, -0.002656254218891263, 0.028249718248844147, 0.014654715545475483, 0.018851736560463905, 0.01471048966050148, -0.03895839676260948, 0.010959663428366184, 0.01086902990937233, -0.010067273862659931, -0.019074833020567894, -0.011503463611006737, -0.011419801972806454, -0.04166345298290253, 0.0072855269536376, -0.00973959919065237, 0.03251645714044571, -0.04562343284487724, 0.016383720561861992, -0.006884648464620113, -0.0053055365569889545, 0.012193671427667141, -0.025795646011829376, -0.028472814708948135, -0.021501019597053528, 0.008763547986745834, -0.010185793973505497, -0.005322966258972883, 0.006515143439173698, -0.047631312161684036, 0.001084985793568194, 0.02044130675494671, 0.01443161815404892, -0.005490289535373449, 0.045958079397678375, 0.06380587816238403, 0.010750509798526764, -0.012807189486920834, -0.02133369632065296, 0.019953280687332153, -0.010032414458692074, -0.003813572460785508, -0.004402689170092344, 0.0331299751996994, -0.015282177366316319, 0.02622789703309536, -0.03748037666082382, 0.009906922467052937, -0.007153062615543604, 0.06018054485321045, 0.0355282723903656, -0.012381909415125847, -0.011273394338786602, 0.012033320032060146, -0.048635248094797134, 0.011747476644814014, -0.0239550918340683, 0.02626972831785679, 0.01646738313138485, -0.00994178093969822, 0.016202453523874283, 0.00493603153154254, 0.011594097130000591, -0.017513152211904526, -0.005929512437433004, 0.036058127880096436, -0.021068766713142395, -0.022686224430799484, -0.0351378507912159, -0.00835221167653799, -0.010311285965144634, 0.029393091797828674, -0.002147313207387924, -0.03329729661345482, -0.019451310858130455, 0.013560143299400806, -0.00019019930914510041, 0.03039703145623207, 0.03053646720945835, 0.003848431399092078, 0.020009053871035576, 0.027413101866841316, 0.030369143933057785, -0.04043641686439514, -0.028235774487257004, 0.02567015215754509, -0.00513472780585289, 0.027036625891923904, -0.03884684666991234, -0.016718367114663124, 0.01436190027743578, -0.003419665852561593, 0.006964824162423611, 0.004036670085042715, 0.004521209746599197, -0.035974469035863876, -0.005232332739979029, 0.008638055063784122, -0.018293993547558784, -0.006814930588006973, 0.0055948663502931595, -0.005347367376089096, -0.004503780044615269, 0.026618316769599915, 0.012730499729514122, 0.014515279792249203, 0.017554981634020805, -0.0014083028072491288, -0.05117298290133476, -0.0001176490550278686, -0.02992294915020466, -0.02410847134888172, 0.021263977512717247, 0.05477042868733406, 0.031066322699189186, 0.04456372186541557, -0.04297415167093277, -0.012123953551054, 0.02205876260995865, -0.0024366427678614855, -0.028417041525244713, -0.029867174103856087, -0.004465435165911913, -0.010367061011493206, -0.019590746611356735, -0.015588936395943165, -0.022700168192386627, 0.013267328031361103, 0.0331299751996994, 0.015895694494247437, 0.009523473680019379, 0.028514645993709564, 0.008254606276750565, -0.02992294915020466, -0.017875684425234795, -0.019576802849769592, 0.017262166365981102, -0.03904205933213234, 0.036197565495967865, 0.001423989306204021, -0.002117682946845889, 0.048691023141145706, 0.024763818830251694, -0.01225641742348671, -0.0258514191955328, -0.014020281843841076, 0.019507085904479027, 0.000776919536292553, -0.016941463574767113, -0.0017272625118494034, 0.00211594020947814, -0.007696862798184156, 0.03965557739138603, -0.000935963646043092, 0.016620762646198273, 0.02169622853398323, -0.014138801954686642, -0.02626972831785679, -0.014027253724634647, 0.0029926435090601444, 0.006609262432903051, 0.04453583434224129, -0.04528878629207611, -0.0019311874639242887, -0.02303481474518776, -0.008575309067964554, 0.05672253295779228, 0.009397980757057667, 0.004712934140115976, 0.019172439351677895, -0.01800117827951908, -0.013009371235966682, 0.011050296947360039, 0.012779301963746548, 0.03229336068034172, -0.006619720254093409, -0.029644077643752098, -0.019688351079821587, -0.035500384867191315, 0.01868441328406334, 0.002705056918784976, 0.0013141835806891322, 0.04238852113485336, 0.02183566428720951, -0.023787768557667732, 0.002499388763681054, 0.005720358807593584, 0.03904205933213234, 0.012479514814913273, 0.0189632847905159, 0.007696862798184156, -0.007794468197971582, -0.007662003859877586, 0.00655697425827384, 0.006902078166604042, -0.003227941459044814, -0.00745982164517045, 0.012437684461474419, -0.06542333215475082, 0.010192765854299068, -0.004068043082952499, 0.0013900018529966474, -0.001784779829904437, -0.018056951463222504, 0.005831907503306866, 0.012939653359353542, 0.010722622275352478, -0.00032288130023516715, -0.022909320890903473, -0.008373127318918705, -0.015296120196580887, -0.011510435491800308, 0.030090272426605225, 0.010143963620066643, 0.007620173040777445, -0.017122730612754822, -0.011308252811431885, 0.002651025541126728, 0.004859341774135828, 0.018210330978035927, 0.01072959415614605, 0.02405269630253315, 0.008645026944577694, -0.005716872867196798, 0.0005407499265857041, -0.0027800037059932947, 0.025363393127918243, -0.012779301963746548, -0.007445878349244595, -0.023927204310894012, -0.002286749193444848, -0.050810448825359344, -0.007787496317178011, 0.008540450595319271, 0.03048069216310978, 0.0085334787145257, -0.010436778888106346, -0.006637149956077337, 0.005737788043916225, 0.0026335958391427994, -0.005960885435342789, -0.0229511521756649, 0.002323351101949811, -0.003452782053500414, -0.03117787279188633, 0.003939064685255289, 0.012451627291738987, 0.03575136885046959, 0.020329756662249565, -0.0630808100104332, -0.019688351079821587, 0.029086332768201828, -0.0076829190365970135, -0.011663815006613731, -0.01814061403274536, -0.026757752522826195, -0.01385295856744051, 0.011628955602645874, 0.0073622167110443115, -0.00732038589194417, 5.8933463151333854e-05, 0.008303409442305565, -0.02572592720389366, -0.021891439333558083, 0.015784146264195442, -0.006163067650049925, -0.011886912398040295, -0.02802661992609501, -0.0020165920723229647, -0.028514645993709564, 0.009920865297317505, 0.009711711667478085, 0.04124514386057854, -0.02738521434366703, -0.026729866862297058, 0.004664131440222263, -0.010248539969325066, -0.01015093456953764, 0.009635021910071373, -0.010206709615886211, -0.04277893900871277, 0.0037055097054690123, 0.0007751765660941601, -0.0003268029249738902, 0.004953461233526468, -0.00038235943065956235, 0.0004050177813041955, 0.009119109250605106, -0.003093734383583069, -0.0031808819621801376, -0.02048313617706299, 0.02456860989332199, -0.009962696582078934, -0.02012060396373272, 0.03798234462738037, -0.015742314979434013, -0.0025220471434295177, -0.007989678531885147, 0.019074833020567894, 0.003295916598290205, 0.00842192955315113, -0.014682602137327194, -0.004346915055066347, 0.005570465233176947, -0.011238534934818745, 0.022867491468787193, 0.034858979284763336, 0.043782878667116165, -0.01146860420703888, 0.0012819389812648296, 0.006504685617983341, -0.02048313617706299, -0.024317624047398567, -0.008638055063784122, -0.006982253864407539, 0.017192449420690536, -0.01790357194840908, 0.02099904976785183, 0.01618850976228714, 0.03391081467270851, -0.0046397303231060505, 0.018475258722901344, -0.02341129072010517, 0.006902078166604042, 0.007417990826070309, 0.017178505659103394, -0.03382715582847595, -0.005741273984313011, 0.003261057659983635, 0.039990220218896866, 0.008986645378172398, 0.017917515709996223, -0.015268233604729176, -0.017331885173916817, 0.014877812936902046, 0.01286296360194683, 0.022128481417894363, 0.017150618135929108, 0.003932092804461718, 0.0034126942045986652, 0.0105274124071002, 0.01186599675565958, 0.037396714091300964, 0.002288492163643241, 0.021570736542344093, 0.004291140474379063, -0.0005185273475944996, 0.007452849764376879, -0.007107745856046677, -0.0037891711108386517, -0.017415545880794525, 0.002307664602994919, 0.007871157489717007, -0.00298392865806818, -0.027357326820492744, 0.016453439369797707, 0.005396170075982809, 0.0021804291754961014, -0.001871927292086184, -0.006135180592536926, 0.009886006824672222, 0.027371270582079887, 0.005197473801672459, -0.004085472319275141, 0.04250006750226021, 0.00254993443377316, -0.02752465009689331, -0.009467698633670807, 0.02900267206132412, 0.006563946139067411, -0.02646493725478649, 0.012033320032060146, -0.019437367096543312, -0.00948164239525795, -0.007201865315437317, 0.012221558019518852, 0.03321363776922226, -0.003193082520738244, -0.018029063940048218, -0.03519362583756447, -0.019925393164157867, -0.00902150385081768, -0.01471048966050148, -0.02335551753640175, 0.03982289880514145, 0.020706234499812126, -0.001484121079556644, 0.01186599675565958, 0.005622753407806158, -0.009356150403618813, 0.01678808405995369, -0.01197754591703415, -0.04768708348274231, -0.03438489884138107, -0.0015137512236833572, -0.02428973652422428, -0.017694419249892235, -0.006814930588006973, 0.02534945122897625, -0.00034227161086164415, 0.013267328031361103, 0.010367061011493206, -0.005026665050536394, -0.0019137579947710037, -0.004085472319275141, 0.012096066027879715, -0.017987234517931938, -0.000854480778798461, -0.03165195509791374, -0.01133614033460617, -0.0038902622181922197, -0.005054552108049393, 0.008805378340184689, 0.004695504438132048, -0.005438000895082951, -0.007243696134537458, -0.010276427492499352, 0.006898592226207256, -0.009851147420704365, -0.007696862798184156, -9.346564183942974e-05, 0.01065987627953291, -0.0105274124071002, -0.013197610154747963, 0.005988772958517075, 0.003125107614323497, 0.03544460982084274, -0.00031111639691516757, 0.0010588414734229445, -0.01600724458694458, -0.01503119245171547, 0.005047580227255821, 0.007613201159983873, 0.01786174066364765, -0.009007560089230537, -0.026004798710346222, -0.013567115180194378, -0.015979357063770294, -0.021026937291026115, -0.025893250480294228, 0.01311394851654768, -0.017778079956769943, -0.017931459471583366, 0.01517062820494175, -0.0041517047211527824, 0.0025952509604394436, -0.004904658533632755, 0.013608945533633232, -0.02077595144510269, -0.019967224448919296, -0.0013786726631224155, -0.016132736578583717, 0.0291421078145504, -0.0061804973520338535, 0.01505907904356718, 0.01720639318227768, 0.003074561944231391, -0.03117787279188633, -0.011384942568838596, 0.024066640064120293, -0.002304178662598133, -0.018656525760889053, 0.012430712580680847, -0.0003886776394210756, 0.021779891103506088, 0.00012102602340746671, 0.006292046047747135, -0.02850070223212242, 0.005654126405715942, -0.026841415092349052, 0.0038379738107323647, -0.005587894469499588, 0.01126642245799303, 0.003240142250433564, 0.009314319118857384, -0.0032645436003804207, 0.016913577914237976, 0.008679886348545551, -0.017080901190638542, -0.005682013928890228, 0.01756892539560795, 0.00999058410525322, 0.012270361185073853, -0.008693830110132694, -0.009586219675838947, -0.001344685209915042, 0.021222146227955818, -0.005939970258623362, 0.0004897686885669827, 0.030285481363534927, 0.016397664323449135, 0.009830232709646225, -0.05605323985219002, -0.013141835108399391, -0.015282177366316319, -0.005939970258623362, -0.012388881295919418, 0.00112768798135221, -0.0065988050773739815, 0.020287927240133286, 0.010910861194133759, 0.0013359703589230776, -0.024861425161361694, -0.0002477166417520493, -0.012918737716972828, 0.027970844879746437, -0.040826838463544846, -0.004057585261762142, 0.008045452646911144, -0.018754132091999054, -0.014145773835480213, -0.00666155107319355, 0.00739010376855731, 0.02992294915020466, -0.00735524483025074, -0.019925393164157867, 0.002861922373995185, 0.025196071714162827, 0.014557110145688057, -0.019046947360038757, -0.018293993547558784, -0.009377066045999527, 0.004862827714532614, -0.0017917515942826867, 0.009795373305678368, 0.019395535811781883, -0.010513468645513058, -0.003397007705643773, -0.007982706651091576, -0.0006235400214791298, 0.033520396798849106, 0.030508579686284065, -0.0085334787145257, 0.029114220291376114, -0.004981348291039467, 0.008589252829551697, -0.0025359909050166607, 0.003276744158938527, -0.026423107832670212, -0.0031442800536751747, 0.0018213817384094, -0.015407669357955456, -0.023369459435343742, -0.014152745716273785, 0.03979501128196716, -0.0006466340855695307, 0.019297931343317032, 0.02886323630809784, 0.0053194803185760975, -0.03025759570300579, -0.014738377183675766, -0.020329756662249565, 0.00999058410525322, 0.01059713028371334, 0.021110597997903824, 0.01144768949598074, 0.01006030198186636, 0.022100593894720078, 0.0009603648795746267, 0.016551043838262558, 0.025739870965480804, 0.006950880866497755, 0.0022658337838947773, 0.03759192302823067, -0.011440717615187168, -0.010283399373292923, 0.025684095919132233, 0.00809425488114357, 0.0005499004037119448, 0.019548915326595306, -0.0017037326470017433, -0.025642266497015953, -0.012800217606127262, -0.020329756662249565, -0.00029477625503204763, 0.008442845195531845, 0.012374937534332275, 0.0028880664613097906, -0.01642555184662342, -0.015477387234568596, 0.012472542934119701, -0.0327395536005497, -0.015853865072131157, -0.003729910822585225, 0.01678808405995369, -0.01484992541372776, -0.001224421663209796, 0.004796595778316259, -0.00662669213488698, 0.04662737250328064, 0.024819593876600266, 0.030313368886709213, -0.015937525779008865, -0.019590746611356735, -0.04397808760404587, -0.017499208450317383, 0.022686224430799484, 0.029532527551054955, 0.0024157273583114147, -0.008366155438125134, 0.004437548108398914, 0.007571370340883732, 0.008150029927492142, 0.030452804639935493, -0.005549549590796232, -0.00021144149650353938, -0.0011764905648306012, 0.015114854089915752, -0.00022189920127857476, 0.005197473801672459, -0.006665037013590336, -0.010611073113977909, 0.00881235022097826, 0.027301553636789322, 0.010192765854299068, 0.008993617258965969, 0.012549232691526413, 0.005943456199020147, -0.03039703145623207, -0.016941463574767113, 0.018475258722901344, -0.0031861108727753162, -0.001284553436562419, 0.0024192132987082005, 0.014863869175314903, -0.01914455182850361, 0.0033360044471919537, -0.04626483842730522, -0.017973290756344795, -0.014347956515848637, -0.006814930588006973, -0.0008231076644733548, 0.0031651954632252455, -0.017429489642381668, 0.02109665423631668, 0.029225768521428108, -0.038595862686634064, 0.0005002263933420181, -0.007097288500517607, 0.009035447612404823, -0.01339282002300024, -0.013281271792948246, 0.005162614863365889, -0.0029072389006614685, 0.03220969811081886, -0.01126642245799303, -0.00513472780585289, -0.019911449402570724, -0.03209814801812172, -0.015114854089915752, -0.002895038342103362, -0.026032686233520508, -0.0229511521756649, -0.01200543250888586, -0.004015754442662001, 0.009377066045999527, 0.003076304914429784, 0.006375707685947418, -0.022281860932707787, -0.008937842212617397, 0.010980579070746899, 0.016802027821540833, 0.017136674374341965, 0.004974376410245895, 0.002603965811431408, 0.000467981823021546, -0.007933903485536575, -0.02696690708398819, 0.02327185496687889, -0.01510091032832861, 0.012988455593585968, 0.00941192451864481, 0.029476754367351532, 0.0018544977065175772, 0.03410602733492851, -0.008359183557331562, -0.008052424527704716, -0.0056785279884934425, -0.03418968617916107, -0.013385848142206669, -0.0033203179482370615, 0.030703790485858917, -0.023104531690478325, -0.013155778869986534, 0.009565304033458233, -0.0020758523605763912, 0.027120286598801613, 0.008568337187170982, 0.011050296947360039, -0.03301842510700226, -0.007738693617284298, 0.01814061403274536, -0.022741999477148056, -0.021445244550704956, 0.014654715545475483, 7.489234121749178e-05, 0.006302503403276205, 0.007871157489717007, 0.0431135855615139, -0.008387071080505848, 0.013629861176013947, 0.010820227675139904, 0.000299351493595168, 0.041049934923648834, -0.009328262880444527, 0.018196387216448784, -0.011663815006613731, 0.013448594138026237, -0.004095930140465498, 0.0069543663412332535, -0.026311557739973068, 0.012570148333907127, -0.006553488317877054, -0.017401602119207382, -0.03126153349876404, 0.007689890917390585, 0.006177011411637068, 0.00675567053258419, 0.022546788677573204, -0.00955136027187109, -0.01590963825583458, 0.010848114266991615, -0.014257322996854782, -0.0023338086903095245, 0.03287899121642113, 0.011357055976986885, -0.0065848613157868385, -0.02626972831785679, 0.030173933133482933, 0.04116148501634598, -0.00026187809999100864, -0.007397075649350882, 0.011454660445451736, -0.0035085564013570547, 0.017290053889155388, 0.01818244345486164, -0.03884684666991234, -0.021152429282665253, 0.0028741229325532913, 0.005190501920878887, 0.030229708179831505, 0.0028253202326595783, -0.020427362993359566, 0.031707730144262314, -0.003416180144995451, -0.003695051884278655, -0.015644710510969162, 0.024415230378508568, -0.03469165787100792, 0.0007220166153274477, -0.005852822680026293, 0.01887962408363819, 0.00809425488114357, 0.014187605120241642, -0.007222780492156744, 0.005985287018120289, -0.006149123888462782, -0.013309158384799957, 0.02822183072566986, -0.01484992541372776, 0.008205804042518139, -0.004444519989192486, 0.0254470556974411, 0.01489175669848919, -0.011594097130000591, -0.02576775848865509, 0.014598940499126911, 0.018377654254436493, -0.0008279007743112743, -0.014863869175314903, -0.019534971565008163, -0.02992294915020466, -0.008129114285111427, 0.002668455010280013, -0.012939653359353542, 0.0013629861641675234, 0.01299542747437954, -0.020594686269760132, 0.0004355193814262748, -0.008184888400137424, 0.02035764418542385, -0.009209742769598961, 0.004165648017078638, -0.010032414458692074, -0.01766653172671795, -0.00036362273385748267, -0.021361583843827248, -0.003559101838618517, 0.003935578744858503, 0.012409796938300133, -0.012953597120940685, 0.008909955620765686, 0.01325338426977396, 0.0008082925924099982, 0.02099904976785183, -0.005939970258623362, 0.01144768949598074, -0.013267328031361103, -0.0076829190365970135, 0.007822355255484581, -0.009683825075626373, 0.018349766731262207, 0.007557427044957876, 0.013762325048446655, 0.012430712580680847, -0.0030832767952233553, 0.0013237698003649712, -0.008366155438125134, 0.011559237726032734, -0.015714427456259727, 0.0011616755509749055, -0.006041061133146286, 0.003764769760891795, -0.015198515728116035, 0.046655260026454926, 0.0041377609595656395, 0.02530761994421482, 0.00653257267549634, -0.0048802574165165424, -0.015128797851502895, 0.014529222622513771, 0.02702268213033676, 0.01586780697107315, -0.014473448507487774, -0.008010593242943287, -0.014696545898914337, 0.0004174362984485924, 0.016439495608210564, 0.00038127010338939726, 0.007592285983264446, -0.010213681496679783, -0.0014135316014289856, 0.006863733287900686, 0.025474943220615387, 0.020009053871035576, -0.019088776782155037, -0.03742460161447525, -0.012214587070047855, 0.003173910081386566, 0.02525184489786625, -0.025279732421040535, 0.029448866844177246, 0.006895106285810471, 0.025921138003468513, 0.0008287722594104707, 0.009077278897166252, 0.006107293535023928, -0.025014804676175117, -0.01901905983686447, 0.01979990117251873, 0.012179727666079998, 0.01344162318855524, -0.003227941459044814, 0.015798090025782585, 0.01790357194840908, 0.007044999860227108, 0.036615874618291855, 0.02419213205575943, -0.031707730144262314, -0.012639866210520267, 0.00962107814848423, -0.007599257864058018, 0.03636488690972328, -0.017457377165555954, -0.026701979339122772, -0.020734122022986412, -0.003158223582431674, 0.012835076078772545, 0.006177011411637068, -0.006651093252003193, -0.008233691565692425, -0.012437684461474419, -0.006494227796792984, 0.00960016343742609, 0.0025603920221328735, -0.0222539734095335, -0.006929965224117041, -0.03190293908119202, -0.010569242760539055, 0.003365634474903345, -0.01344162318855524, -0.002865408081561327, 0.005253248382359743, -0.01204726379364729, -0.008428901433944702, -0.0004618814855348319, 0.012639866210520267, -0.009906922467052937, -0.007745665498077869, 0.016481325030326843, 0.0016636447980999947, 0.026116348803043365, 0.030982661992311478, 0.006110779009759426, 0.0023982978891581297, -0.006710353773087263, -0.013887817971408367, -0.003660192945972085, -0.0016383720794692636, 0.01947919838130474, 0.006741726770997047, -0.010255511850118637, 0.013525283895432949, -0.016383720561861992, -0.012772330082952976, 0.004064557142555714, -0.001484121079556644, 0.015812033787369728, -0.003576531307771802, 0.00527416355907917, 9.341117220174056e-06, -0.04208176210522652, 0.015114854089915752, -0.025000860914587975, 0.013197610154747963, 0.0001735323603497818, -0.0045072659850120544, -0.005831907503306866, -0.009328262880444527, 0.00874263234436512, -0.012737471610307693, 0.006577889434993267, -0.009934809058904648, 0.012598035857081413, -0.0041238171979784966, -0.009823260828852654, -0.01510091032832861, -0.006250215228646994, -0.010673820041120052, 0.011496491730213165, 0.002237946493551135, -0.006278102286159992, -0.033102087676525116, -0.012918737716972828, -0.012960569001734257, -0.005392684135586023, -0.022741999477148056, -0.0026179093401879072, 0.017931459471583366, 0.014020281843841076, -0.03580714389681816, -0.006818416528403759, -0.003069333266466856, -0.008909955620765686, -0.0012714812764897943, 0.01754103973507881, 0.009328262880444527, -0.015017248690128326, 0.004203992895781994, 0.0013629861641675234, 0.016857802867889404, -0.003451039083302021, 0.00816397275775671, -0.011391914449632168, 0.02956041507422924, 0.0014693060657009482, 0.0015921839512884617, 0.024554666131734848, -0.006260673049837351, -0.03181927651166916, 0.009558332152664661, -0.0353330634534359, 0.006570917554199696, -0.0001591530308360234, 0.005964371375739574, -0.027650143951177597, 0.009586219675838947, 0.009077278897166252, 0.00034728259197436273, -0.005012721288949251, -0.006658065132796764, -0.00298392865806818, -0.02474987506866455, 0.005277649499475956, 0.02039947547018528, 0.021110597997903824, -0.00994875282049179, -0.0025778214912861586, 0.0016636447980999947, -0.012591063976287842, 0.014933587051928043, -0.01232613530009985, 0.02299298346042633, 0.00962107814848423, 0.005312508437782526, 0.02137552574276924, 0.002804405055940151, -0.02151496335864067, 0.004841912537813187, 0.018419485539197922, -0.013100004754960537, 0.015003304928541183, -0.00263185310177505, 0.019130608066916466, 0.008944814093410969, -0.010701706632971764, 0.02191932685673237, -0.002530761994421482, -0.008833265863358974, -0.03053646720945835, 0.02063651569187641, 0.0011120014823973179, -0.027859296649694443, 0.019256100058555603, -0.006971796043217182, 0.020887501537799835, -0.0017351057613268495, 0.00529856514185667, -0.009425868280231953, -0.026353389024734497, -0.0008340011117979884, 0.013169722631573677, 0.008686858229339123, -0.011322196573019028, -0.005382226314395666, -0.00038235943065956235, 0.00672081159427762, 0.006208384409546852, -0.009349178522825241, -0.021110597997903824, -0.023341573774814606, -0.016732310876250267, -0.00814305804669857, -0.010262483730912209, 0.0008209290099330246, -0.009216714650392532, 0.0013995880726724863, 0.00862411130219698, 0.008735660463571548, 0.02470804564654827, -0.009279460646212101, -0.010025442577898502, 0.020469192415475845, 0.01304423063993454, 0.013873874209821224, 0.0058214496821165085, -0.029393091797828674, 0.00675567053258419, -0.0029002672526985407, 0.0015773688210174441, 0.011559237726032734, 0.019395535811781883, -0.0015921839512884617, -0.030313368886709213, 0.02696690708398819, 0.007996650412678719, -0.010541355237364769, 0.009697767905890942, 0.012486486695706844, 0.02155679278075695, 0.005946942139416933, -0.01531006395816803, 0.005441486835479736, 0.0003590474952943623, -0.010562270879745483, -0.005427543073892593, -0.003604418598115444, 0.005068495869636536, 0.0051765586249530315, -0.025753814727067947, 0.00046667459537275136, -0.0026963420677930117, -0.0003725553397089243, -2.321662577742245e-05, 0.009544388391077518, -0.009314319118857384, -0.013964507728815079, 0.01158712524920702, -0.010645932517945766, -0.010562270879745483, -0.015212458558380604, 0.007487709168344736, 0.0010300828143954277, -0.01966046541929245, -0.015268233604729176, -0.012374937534332275, -0.0039599803276360035, -0.013232468627393246, 0.005612295586615801, 0.014557110145688057, -0.039627689868211746, 0.04319724813103676, -0.0020880529191344976, 0.012214587070047855, -0.01260500680655241, -0.006870705168694258, 0.023857485502958298, 0.007020598743110895, 0.0016924034571275115, 0.017973290756344795, -0.020050885155797005, -0.023146362975239754, -0.00916093960404396, 0.014117887243628502, 0.009307348169386387, 0.01692752167582512, 0.009697767905890942, -0.0177641361951828, 0.0017795509193092585, -0.013908732682466507, -0.017429489642381668, 0.015337951481342316, 0.010492553003132343, 0.009635021910071373, -0.014877812936902046, 0.0025708498433232307, 0.005873738322407007, 0.005061523988842964, -0.008394042029976845, -0.007445878349244595, 0.008854180574417114, -0.00036994091351516545, 0.01632794551551342, 0.01079931203275919, 0.014612884260714054, 0.003831001929938793, -0.007020598743110895, -0.01756892539560795, 0.012193671427667141, -0.004210964776575565, 0.040687400847673416, 0.0016880461480468512, -0.012103037908673286, 0.017973290756344795, -0.000633561983704567, 0.019297931343317032, -0.011182760819792747, 0.019270043820142746, -0.01692752167582512, -0.0005311637069098651, 0.0291421078145504, 0.02085961401462555, -0.006602291017770767, 0.008700801059603691, 0.0019277016399428248, 0.013378876261413097, 0.009167911484837532, 0.0063582779839634895, 0.010157906450331211, -0.017652587965130806, 0.016899634152650833, -0.006835846230387688, 0.02493114210665226, -0.0014762778300791979, 0.0088820680975914, -0.006787043530493975, -0.021082710474729538, 0.007982706651091576, -0.0016436008736491203, 0.0017725791549310088, -0.0002177596907131374, -0.018893567845225334, 0.001716804807074368, 0.011712617240846157, -0.030034497380256653, -0.00655697425827384, -0.00012113495904486626, -0.00031743457657285035, -0.008930870331823826, 0.003576531307771802, 0.0007629759493283927, 0.004294626414775848, 0.018098782747983932, 0.0048175109550356865, 0.008728688582777977, -0.01489175669848919, 0.00895178597420454, 0.007599257864058018, -0.002222259994596243, -0.02239340916275978, 0.018238218501210213, -0.005884195677936077, 0.00520444568246603, 0.008979673497378826, 0.00030392673215828836, 0.01632794551551342, -0.003932092804461718, -0.016690479591488838, 0.0009429354104213417, 0.015547105111181736, -0.000188892096048221, 0.005190501920878887, -0.030703790485858917, 0.008331296034157276, -0.0027259723283350468, -0.023062700405716896, -0.01438978686928749, 0.003980895504355431, -0.004085472319275141, -0.00331334606744349, -0.004040156025439501, -0.0016723595326766372, -0.017080901190638542, -0.00047146770521067083, -0.0038728327490389347, -0.021570736542344093, -0.010429807007312775, -0.0024017838295549154, 0.02039947547018528, -0.0010971863521263003, 0.013978451490402222, -0.007487709168344736, -0.024345511570572853, 0.009349178522825241, 0.00020730200049001724, -0.010562270879745483, -0.007627144921571016, -0.008693830110132694, -0.0056436690501868725, -0.004001811146736145, -0.011120014823973179, 0.01692752167582512, -0.012528317049145699, -0.00025664924760349095, 0.012598035857081413, -0.026018742471933365, -0.008791434578597546, 0.003886776277795434, 0.016676535829901695, -0.020204264670610428, 0.012277333065867424, 0.005152157042175531, 0.006434967741370201, 0.0065500023774802685, 0.014278238639235497, -0.0003780020633712411, -0.011635927483439445, -0.005650640465319157, 0.019130608066916466, 0.00038649895577691495, 0.006264158524572849, -0.006344334222376347, 0.0001979336520889774, 0.019507085904479027, 0.01582597754895687, -0.007397075649350882, 0.0010980578372254968, 0.011601069010794163, 0.01052044052630663, 0.01278627384454012, 0.034161802381277084, 0.001179976505227387, -0.002987414598464966, -0.004918602295219898, -0.007989678531885147, -0.010931775905191898, -0.017415545880794525, -0.014543166384100914, -0.027817465364933014, -0.022086650133132935, 0.021668342873454094, -0.028514645993709564, -0.0038205443415790796, 0.02183566428720951, -0.01812667027115822, -0.01914455182850361, 0.00027560381568036973, -0.000672342604957521, 0.015282177366316319, 0.029225768521428108, 0.005389198195189238, 0.014334012754261494, -0.012235501781105995, -0.016760198399424553, -0.0031895965803414583, 0.014975418336689472, -0.011099099181592464, -0.0036323056556284428, -0.007090316619724035, -0.007689890917390585, -0.005636697169393301, -0.022867491468787193, -0.007745665498077869, -0.01623034104704857, 0.014347956515848637, 0.006480284500867128, 0.01425035111606121, 0.0016453438438475132, -0.00987206306308508, 0.007058943621814251, 0.012563176453113556, 0.018447373062372208, -0.011036353185772896, 0.004029698204249144, -0.011043325066566467, 0.027329441159963608, 0.025182127952575684, 0.00324362819083035, 0.012409796938300133, 0.021501019597053528, 0.004521209746599197, 0.01544949971139431, -0.006257187109440565, -0.002657997189089656, -0.015156684443354607, -0.01664864830672741, -0.008875096216797829, 0.012688668444752693, 0.03181927651166916, -0.0028532075230032206, -0.004894200712442398, 0.02738521434366703, 0.01471048966050148, -0.03589080646634102, -0.004531667567789555, 0.0015677826013416052, 0.020566798746585846, 0.007975734770298004, -0.0003991353150922805, 0.007738693617284298, -0.023020870983600616, 0.02433156780898571, 0.007878129370510578, 0.0033813209738582373, 0.019033003598451614, 0.012193671427667141, 0.01887962408363819, 0.004109873902052641, -0.0006004459573887289, 0.008184888400137424, 0.002304178662598133, 0.003140794113278389, 0.003778713522478938, 0.007146090734750032, 0.03285110369324684, 0.013873874209821224, -0.015742314979434013, 0.03575136885046959, 0.006783557590097189, 0.008763547986745834, 0.003416180144995451, 0.004716420080512762, 0.009153968654572964, 0.004911630414426327, 0.0017455634661018848, -0.006041061133146286, -0.0024436144158244133, -0.01151740737259388, 0.02359255775809288, 0.013127892278134823, 0.023369459435343742, -0.008631083182990551, -0.002724229358136654, -0.001538152457214892, -0.027678029611706734, 0.009565304033458233, -0.005033636931329966, -0.015979357063770294, -0.005573950707912445, 0.006312961224466562, 0.009439812041819096, 0.006100321654230356, 0.02039947547018528, 0.00507546728476882, -0.01371352281421423, -0.00294906971976161, -0.019548915326595306, -0.027650143951177597, -0.004698990378528833, 0.02692507579922676, 0.0013011114206165075, -0.012500430457293987, 0.00035795813892036676, 0.0017603784799575806, -0.013546199537813663, 0.0056889853440225124, 0.01864258199930191, 0.011133958585560322, 0.018419485539197922, -0.019228212535381317, -0.013678663410246372, -0.013567115180194378, -0.0012967541115358472, -0.0012601520866155624, -0.0009037190466187894, -0.013218524865806103, -0.007843270897865295, 0.019632577896118164, -0.019325818866491318, -0.0016584160039201379, 0.0052637062035501, 0.016899634152650833, -0.006734754890203476, -0.009579247795045376, -0.00042593316175043583, -0.005936484318226576, -0.0189632847905159, -0.004468921106308699, -0.0010161392856389284, -0.0052253613248467445, -0.018656525760889053, 0.004392231348901987, 0.009523473680019379, -0.0037055097054690123, 0.010994521901011467, 0.0013812871184200048, -0.020887501537799835, 0.006738240830600262, 0.001784779829904437, -0.0010196252260357141, -0.015672598034143448, 0.009572275914251804, 0.008861152455210686, -0.01054832711815834, 0.028375210240483284, -0.02081778272986412, -0.004726877901703119, 0.014975418336689472, 0.0046397303231060505, 0.016383720561861992, -0.00336040579713881, -0.0069090500473976135, -0.010848114266991615, -0.017276110127568245, 0.01544949971139431, 0.027775635942816734, -0.0012235501781105995, -0.0012401081621646881, 0.013190638273954391, -0.0189632847905159, -0.009537416510283947, -0.02567015215754509, -0.003907691687345505, -0.0050092353485524654, 0.0008549164631403983, -0.00016754097305238247, 0.026158178225159645, 0.016341889277100563, 0.027259722352027893, -0.012061207555234432, 0.02247706986963749, -0.013350989669561386, 0.023522838950157166, 0.010422835126519203, 0.007585314102470875, 0.012828105129301548, 0.011461632326245308, 0.0005603581084869802, 0.009697767905890942, -0.018377654254436493, 0.00294906971976161, 0.003977409563958645, 0.023885373026132584, -0.003400493413209915, -0.0020375074818730354, -0.005981801077723503, -0.00821277592331171, -0.007578342221677303, -0.005915569141507149, 0.01425035111606121, -0.015937525779008865, 0.009153968654572964, -0.009641993790864944, -0.003125107614323497, 0.0259490255266428, -0.008631083182990551, -0.002675426658242941, -0.002551677403971553, 0.006623206194490194, 0.0036671648267656565, 0.03798234462738037, -0.0004906401736661792, 0.00043312282650731504, 0.008784462697803974, -0.024680158123373985, 0.026952963322401047, -0.023285798728466034, 0.005187016446143389, 0.012263389304280281, -8.567683835281059e-05, 0.012068178504705429, -0.008157001808285713, -0.002858436433598399, 0.007097288500517607, -0.012347050942480564, -0.022128481417894363, -0.003088505705818534, -0.0029926435090601444, -0.010576214641332626, -0.006156095769256353, 0.002703313948586583, -0.005800534505397081, -0.010541355237364769, 0.005591380409896374, 0.001247951528057456, -0.0014353184960782528, -0.01098755095154047, 0.027956902980804443, -0.0031669384334236383, 0.013483453541994095, -0.014257322996854782, -0.013978451490402222, -0.0059992303140461445, -0.029114220291376114, -0.009307348169386387, 0.014208520762622356, -0.011384942568838596, -0.008798406459391117, -1.640823029447347e-05, 0.008658970706164837, -0.007550455164164305, -0.018935397267341614, -0.00788510125130415, -0.015435556881129742, -0.018098782747983932, -0.0040052966214716434, -0.024178188294172287, -0.01814061403274536, -2.4687238692422397e-05, -0.0033238036558032036, -0.0007329100626520813, 0.0015651682624593377, -0.028040563687682152, -0.012890851125121117, -0.01066684816032648, 0.007696862798184156, 0.01411091536283493, 0.01100846566259861, 0.017122730612754822, -0.021403413265943527, 0.011496491730213165, 0.003487640991806984, 0.007627144921571016, -0.018614696338772774, 0.016216397285461426, -0.010185793973505497, 0.011838109232485294, 0.004130789078772068, -0.007996650412678719, -0.02077595144510269, 0.009307348169386387, -0.00029826213722117245, -0.035221513360738754, 0.0001305033074459061, 0.023397346958518028, -0.007571370340883732, 0.013985422439873219, -0.0027817466761916876, 0.0036288199480623007, -0.026018742471933365, -0.005744759924709797, 0.016063017770648003, 0.0011076440569013357, 0.01385295856744051, 0.00450029456987977, -0.0025795644614845514, -0.012033320032060146, 0.010053330101072788, 0.017136674374341965, -0.008889039978384972, 0.015393725596368313, -0.00960016343742609, 0.007648060098290443, 0.0036323056556284428, -0.01828004978597164, -0.03510996326804161, 0.0012096066493541002, -0.0020357645116746426, 0.017973290756344795, -0.03209814801812172, -0.020190320909023285, -0.00821277592331171, 0.01253528892993927, 0.0018353252671658993, -0.01107818353921175, -0.007689890917390585, 0.02956041507422924, 0.022700168192386627, -0.0197580698877573, 0.006480284500867128, 0.00739010376855731, 0.0003115521394647658, 0.023718049749732018, 0.02978351339697838, 0.026395220309495926, -0.010325229726731777, -0.008937842212617397, -0.013009371235966682, 0.012493458576500416, 0.012765358202159405, 0.007522568106651306, -0.005427543073892593, -0.009425868280231953, 0.02608846127986908, 0.006783557590097189, -0.0039599803276360035, 0.0019887047819793224, 0.00821277592331171, 0.0037403686437755823, 0.00213859835639596, 0.0038449454586952925, 0.0003135129518341273, -0.006177011411637068, 0.0226583369076252, -0.002321608131751418, 0.0234531220048666, -0.03828910365700722, -0.01339282002300024, -0.02969985082745552, -0.003998325206339359, 0.006204898469150066, 0.01632794551551342, 0.0012836819514632225, 0.010652904398739338, 0.0023843541275709867, -0.009488614276051521, 0.005880709737539291, 0.008937842212617397, 0.011287338100373745, 0.030006609857082367, 0.020134547725319862, -0.010381003841757774, -0.0014684345806017518, -0.0005756089230999351, 0.015477387234568596, -0.011998460628092289, -0.008359183557331562, -0.007438906468451023, -0.006466340739279985, 0.0008858538349159062, -0.027789579704403877, 0.016662592068314552, -0.000293469027383253, -0.018698357045650482, 0.001152960816398263, 0.030703790485858917, -0.009007560089230537, 0.011845081113278866, -0.0022274889051914215, 0.022909320890903473, -0.023285798728466034, -0.01828004978597164, -0.007048485800623894, 0.01260500680655241, -0.004451491869986057, 0.000953393115196377, 0.020845670253038406, -0.0052846213802695274, -0.034942641854286194, 0.0007298599230125546, 0.008198832161724567, 0.0004339943116065115, -0.0009926094207912683, 0.011210648342967033, -0.010541355237364769, 0.002860179403796792, -0.006302503403276205, 0.013406763784587383, -0.02159862406551838, -0.008993617258965969, -0.0065011996775865555, 0.012235501781105995, -0.0048802574165165424, -0.0005847594002261758, 0.010910861194133759, -0.0279429592192173, 0.008512563072144985, 0.006637149956077337, -0.0021996016148477793, 0.004409661050885916, -0.011175788938999176, 0.007404047530144453, -0.011391914449632168, 0.006170039530843496, 0.01702512614428997, 0.011245506815612316, 0.001908529200591147, -0.0022623478434979916, -0.007522568106651306, 0.015853865072131157, -0.02493114210665226, 0.004179591778665781, 0.015435556881129742, -0.001559939351864159, 0.0007947847479954362, 0.008108198642730713, 0.017290053889155388, -0.006340848281979561, 0.010220653377473354, 0.009697767905890942, -0.002459301147609949, 0.0020688804797828197, -0.019172439351677895, -0.0018475259421393275, -0.006051518954336643, -0.02877957373857498, 0.002311150310561061, 0.011649871245026588, 0.023982977494597435, 0.0013211553450673819, 0.010506496764719486, 0.010471637360751629, 0.010171850211918354, 0.019033003598451614, -0.0008004493429325521, 0.014557110145688057, 0.023648332804441452, 0.0018074380932375789, -0.007114717736840248, -0.006379193160682917, 0.015742314979434013, -0.005636697169393301, 0.014877812936902046, 0.015937525779008865, 0.0016287858597934246, 0.007369188591837883, 0.019507085904479027, -0.0286401379853487, 0.00828249379992485, -0.0068602473475039005, 0.017094843089580536, 0.002325094072148204, -0.013985422439873219, 0.00433645723387599, -0.007996650412678719, -0.009906922467052937, -2.8322921934886836e-05, -0.003398750675842166, -0.01065987627953291, -0.006473312620073557, -0.028695913031697273, -0.007062429562211037, -0.009230658411979675, 0.002534247934818268, -0.016620762646198273, -0.0034597537014633417, 0.002712028566747904, 0.008889039978384972, -0.024080583825707436, -0.00814305804669857, 0.013162750750780106, 0.006121236830949783, -0.005329938139766455, -0.004932545591145754, -0.016341889277100563, 0.005479831714183092, 0.005413599777966738, 0.0006130823167040944, 0.006236271467059851, 0.020803838968276978, -0.012960569001734257, -0.018029063940048218, -0.011036353185772896, -0.007724749855697155, 0.0045072659850120544, -0.012305219657719135, 0.008233691565692425, -0.005361311137676239, -0.013246412388980389, -0.013079089112579823, -0.0088820680975914, 0.0015477386768907309, 0.0016000272007659078, 0.03396658971905708, 0.01436190027743578, -0.02373199351131916, -0.007724749855697155, -0.01924215629696846, -0.015672598034143448, 0.009899950586259365, -0.006351306103169918, -0.017596812918782234, -0.0002518561377655715, 0.018670469522476196, 0.018949341028928757, 0.0035259858705103397, -0.0038588892202824354, -0.010136991739273071, 0.002987414598464966, 0.007010140921920538, -0.008589252829551697, -0.009370094165205956, -0.0071356333792209625, -0.0060480330139398575, -0.016495268791913986, -0.00423188041895628, 0.022226085886359215, 0.010074244812130928, 0.019604690372943878, -0.0011137444525957108, 0.004943003412336111, -0.014215491712093353, -0.003466725582256913, 0.0017969803884625435, 0.02169622853398323, -0.02048313617706299, -0.006375707685947418, 0.027594368904829025, 0.01956285908818245, 0.015017248690128326, -0.021528905257582664, -0.023620445281267166, -0.0065500023774802685, 0.014752320013940334, -0.004284168593585491, 0.0054624020121991634, 0.011594097130000591, -3.532195114530623e-05, -0.004298112355172634, 0.004908144474029541, 0.006410566624253988, 0.006466340739279985, -0.011482547968626022, -0.00735524483025074, 0.0026823985390365124, -0.023467065766453743, 0.026715923100709915, 0.011154873296618462, -0.00739010376855731, -0.007794468197971582, -0.004106387961655855, -0.012165783904492855, -0.013811128214001656, -0.011154873296618462, 0.0032715152483433485, -0.01061804499477148, -0.012981484644114971, 0.003055389504879713, 0.0056889853440225124, -0.010541355237364769, 0.0046536740846931934, -0.02307664416730404, -0.010394947603344917, -0.03251645714044571, 0.018949341028928757, 0.004420118872076273, -0.018628638237714767, -0.02826366201043129, -0.007487709168344736, 0.009167911484837532, -0.001892842585220933, 0.007146090734750032, 0.010924804024398327, 0.024206075817346573, 0.0017316198209300637, 0.021961158141493797, 0.011552265845239162, -0.0030414459761232138, -0.005542577710002661, -0.009886006824672222, -0.003506813431158662, 0.008059396408498287, 0.0027800037059932947, -0.022170310840010643, -0.0054170857183635235, -0.00999058410525322, 0.0037089954130351543, -0.006232785526663065, -0.021891439333558083, 0.01832187920808792, -0.014598940499126911, 0.005267191678285599, 0.009230658411979675, 0.01790357194840908, 0.004793109837919474, -0.001995676662772894, 0.011238534934818745, -0.010367061011493206, -0.008052424527704716, -0.016620762646198273, 0.025600435212254524, -0.008512563072144985, 0.011503463611006737, -0.002483702264726162, -0.012235501781105995, 0.028249718248844147, 0.002720743417739868, 0.012347050942480564, -0.00018475260003469884, 0.011085155420005322, -0.007599257864058018, 0.015365838073194027, 0.02405269630253315, 0.00987903494387865, -0.01197754591703415, 0.03299053758382797, 0.00589813943952322, -0.008965729735791683, -0.004113359842449427, 0.01770836114883423, -0.00586328050121665, 0.00781538337469101, 0.014069084078073502, 0.0006788786267861724, -0.010722622275352478, -0.008219747804105282, -0.023467065766453743, 0.015812033787369728, 0.016690479591488838, -0.004287654533982277, 0.0214591883122921, 0.001838811207562685, 0.0029577845707535744, -0.006508171558380127, -0.015254289843142033, -0.012988455593585968, 0.011482547968626022, 0.004887228831648827, -0.02816605567932129, -0.018210330978035927, 0.003057132475078106, -0.01066684816032648, -0.012402825057506561, -0.008449817076325417, -0.019576802849769592, -0.014208520762622356, -0.01979990117251873, 0.021668342873454094, 0.01278627384454012, -0.0002978264237754047, 0.009781429544091225, -0.0059539140202105045, -0.012577120214700699, 0.010004526935517788, 0.00028431855025701225, -0.010374032892286777, 0.005277649499475956, 0.010855086147785187, 0.020092716440558434, 0.0009037190466187894, 0.010534383356571198, -0.002691113157197833, -0.0010989293223246932, 0.0047687082551419735, 0.015979357063770294, 0.016132736578583717, -0.02030186913907528, 0.0004749536165036261, 0.0015494816470891237, -0.005776132922619581, -0.0036915659438818693, 0.005441486835479736, 0.015505274757742882, -0.0031111640855669975, 0.004814025014638901, -0.0031460230238735676, -0.015254289843142033, 0.017150618135929108, -0.007404047530144453, -0.004402689170092344, 0.013086060993373394, -0.003226198721677065, 0.0419144369661808, -0.031205758452415466, 0.0009577504824846983, 0.012591063976287842, -0.013385848142206669, -0.017373716458678246, 0.027636200189590454, 0.008631083182990551, -0.0009298633085563779, -0.019046947360038757, -0.007689890917390585, -0.01610484905540943, 0.011956630274653435, 0.01158712524920702, 0.01692752167582512, 0.016341889277100563, 0.00229023490101099, 0.010910861194133759, 0.0015773688210174441, -0.0019120150245726109, -0.010234596207737923, 0.011852052994072437, -0.01537978183478117, 0.001498064724728465, 0.0038728327490389347, 0.03011815808713436, 0.02599085494875908, 0.007515596225857735, -0.008317352272570133, 0.014076055958867073, 0.019353706389665604, 0.04199809953570366, -0.005295079201459885, -0.0014893498737365007, -0.004611843265593052, -0.00021220404596533626, -0.011900856159627438, 0.013539227657020092, 0.003104192204773426, 0.010136991739273071, -0.000468853279016912, 0.003576531307771802, -0.0033429760951548815, -0.02928154356777668, -0.004859341774135828, -0.014933587051928043, 0.0002046875742962584, -0.009495586156845093, 0.0019207297591492534, -0.0005939098773524165, -0.006975281983613968, -0.03583503141999245, 0.0010457694297656417, -0.03053646720945835, 0.003750826232135296, -0.01072959415614605, 0.008115170523524284, -0.015226402319967747, -0.01915849559009075, 0.02696690708398819, 0.017499208450317383, -0.003487640991806984, 0.01260500680655241, -0.006957852281630039, -0.023062700405716896, 0.0005150414071977139, 0.005730816163122654, 0.01498936116695404, -0.021863551810383797, -0.017178505659103394, 0.0020932818297296762, 0.00367762241512537, 0.0027887183241546154, 0.00211594020947814, -0.0015224659582599998, -0.007107745856046677, -0.004528181627392769, -0.004423604812473059, 0.01850314624607563, 0.009844175539910793, -0.009509529918432236, 0.004008782561868429, -0.003729910822585225, 0.013957535848021507, -0.009718683548271656, -0.01646738313138485, -0.000306105415802449, 0.018154557794332504, -0.00814305804669857, 0.0014849925646558404, 0.024359455332159996, 0.025182127952575684, -0.005288107320666313, 0.023620445281267166, 0.007989678531885147, -0.030173933133482933, 0.018252162262797356, 0.0015991557156667113, 0.004169133957475424, -0.023146362975239754, -0.0032558287493884563, 0.017317941412329674, -0.0017019896768033504, -0.0027085428591817617, -0.007376160006970167, 0.01072959415614605, -0.015644710510969162, -0.0020392504520714283, -0.00962107814848423, 0.01974412612617016, 0.030369143933057785, 0.027092399075627327, 0.009892978705465794, 0.007173978257924318, 0.004657159559428692, -0.011601069010794163, -0.0221563670784235, -0.005650640465319157, -0.0015852120704948902, -0.00960016343742609, 0.014229435473680496, 0.002649282570928335, -0.005037122406065464, -0.013776268810033798, -0.00821277592331171, 0.012918737716972828, 0.00029651919612661004, 0.0031163927633315325, -0.013246412388980389, -0.007627144921571016, -0.0014884785050526261, 0.01343465130776167, -0.010604102164506912, 0.010924804024398327, -0.007027570623904467, 0.00044619495747610927, 0.0016958893975242972, -0.007620173040777445, 0.02678564004600048, -0.015812033787369728, 0.023369459435343742, -0.0073622167110443115, -0.0056785279884934425, 0.00900058913975954, 0.00580401998013258, -0.014347956515848637, 0.005824935622513294, -0.016453439369797707, 0.009774457663297653, -0.0074110194109380245, -0.016314003616571426, 0.0016409865347668529, 0.0063094752840697765, 0.0016418580198660493, 0.0229511521756649, -0.024805650115013123, -0.018070895224809647, 0.023188194260001183, 0.0395161397755146, 0.03806600719690323, -0.001146860420703888, -0.025000860914587975, -0.007648060098290443, -0.034858979284763336, 0.0031268505845218897, 0.000594781362451613, -0.02668803557753563, -0.012835076078772545, 0.004528181627392769, -0.02267228066921234, 0.026200009509921074, 0.024038752540946007, 0.009404952637851238, 0.0023494951892644167, 0.005929512437433004, -0.009920865297317505, -0.0047687082551419735, -0.0022274889051914215, 0.0007668975740671158, 0.00841495767235756, -0.009474670514464378, -0.005939970258623362, 0.014668659307062626, -0.0022170310840010643, -0.004643216263502836, -0.021291865035891533, -0.013678663410246372, -0.011963602155447006, 0.0021769432350993156, -0.018447373062372208, -0.0009995813015848398, 0.010827199555933475, 0.006605776958167553, 0.014933587051928043, -0.011043325066566467, 0.010422835126519203, -0.006692924071103334, -0.002047965070232749, -0.027552537620067596, -0.011384942568838596, -0.004256281536072493, -0.003973923623561859, -0.02099904976785183, 0.0030240165069699287, 0.006853275466710329, -0.0034248947631567717, -0.022965095937252045, 0.017457377165555954, 0.01033917348831892, 0.01664864830672741, -0.022979039698839188, -0.0019538458436727524, 0.008498619310557842, 0.028193943202495575, -0.005810991860926151, -0.0009516501449979842, 0.001542509882710874, -0.004636244382709265, -0.01900511607527733, -0.0019451311090961099, 0.0029542986303567886, 0.012814161367714405, -0.007773552555590868, -0.006647607311606407, 0.006867219228297472, 0.02572592720389366, 0.010673820041120052, 0.013364933431148529, -0.012876907363533974, -0.01901905983686447, -0.01054832711815834, -0.015226402319967747, -0.028458870947360992, -0.010422835126519203, -0.024666214361786842, -0.013162750750780106, -0.02243524044752121, 0.013825071975588799, 0.009648965671658516, 0.010227624326944351, -0.0033638915047049522, 0.003034474328160286, -0.007592285983264446, -0.0012061207089573145, 0.005357825197279453, 0.0226583369076252, -0.007968762889504433, 0.006794015411287546, -0.028556477278470993, -0.0017115758964791894, -0.014557110145688057, 0.008700801059603691, 0.00447589298710227, -0.007773552555590868, -0.005682013928890228, 0.014194577001035213, -0.000559922365937382, 0.006574403494596481, 0.006417538039386272, 0.020469192415475845, 0.016174566000699997, -0.0007429320248775184, 0.00016732310177758336, -0.026116348803043365, -0.004597899504005909, -0.018656525760889053, 0.011252478696405888, 0.009432840161025524, -0.02183566428720951, 0.012012404389679432, -0.0011163587914779782, 0.004908144474029541, -0.007933903485536575, 0.02076200768351555, 0.00327848712913692, 0.01596541330218315, 0.012089094147086143, 0.0011032867478206754, -0.010722622275352478, 0.013943592086434364, 0.03530517593026161, 0.016481325030326843, 0.0015634252922609448, -0.005329938139766455, 0.010952691547572613, 0.009105165489017963, -0.018893567845225334, -0.0037089954130351543, 0.008679886348545551, -0.0072646113112568855, 0.0016558015486225486, 0.006950880866497755, -0.0259490255266428, 0.001891099731437862, 0.003604418598115444, -0.004862827714532614, 0.024735933169722557, -0.0017900086240842938, -0.015602879226207733, 0.01730399765074253, 0.00881235022097826, -0.00586328050121665, 0.009418896399438381, 0.007438906468451023, -0.01738766022026539, 0.007822355255484581, 0.021905383095145226, -0.005329938139766455, 0.008714744821190834, 0.010450722649693489, -0.004692018963396549, 0.029058445245027542, -0.005573950707912445, 0.010143963620066643, -0.03441278636455536, 0.01780596747994423, -0.011099099181592464, -0.011210648342967033, 0.0012531803222373128, 0.01624428480863571, -0.0020444791298359632, 0.015268233604729176, 0.0005634082481265068, -0.026715923100709915, 0.0035364434588700533, 0.005500746890902519, -0.044201187789440155, -0.017401602119207382, -0.00909122172743082, 0.003557358868420124, -0.014473448507487774, 0.020413419231772423, -0.0006514271954074502, 0.03218181058764458, -0.0029194396920502186, -0.010283399373292923, -0.02928154356777668, -0.0007586185820400715, 0.0052706776186823845, 0.009474670514464378, 0.008442845195531845, 0.004434062168002129, -0.005336910020560026, 0.0017664788756519556, -0.011754448525607586, 0.011113042943179607, 0.026799583807587624, 0.012214587070047855, -0.007738693617284298, 0.035639822483062744, -0.006250215228646994, -0.011928742751479149, -0.017917515709996223, 0.006469826679676771, -0.0027312010060995817, 0.002183915115892887, -0.029532527551054955, 0.009077278897166252, -0.014173661358654499, 0.03321363776922226, -0.021263977512717247, 0.022365521639585495], "bef3b984-31fd-42b0-b39d-8f2fe64fb443": [-0.015169997699558735, -0.007333863992244005, 0.00915732141584158, -0.01583969034254551, -0.0067114862613379955, -0.03726986050605774, 0.038813065737485886, 0.02537553384900093, -0.03281494602560997, -0.009790617041289806, 0.00947760883718729, 0.06295112520456314, 0.018387435004115105, 0.004993578884750605, -0.04367561638355255, 0.02209986187517643, -0.002187420381233096, 0.030718516558408737, -0.003075491404160857, -0.05226515606045723, 0.061553504317998886, 0.0016369257355108857, -0.03342640399932861, 0.035202547907829285, -0.02393423765897751, -0.021808691322803497, -0.011122724041342735, -0.006318405736237764, -0.015432051382958889, -0.010984417982399464, 0.026991531252861023, 0.0011974398512393236, 0.04288945719599724, 0.0015113583067432046, -0.002065492793917656, -0.0007902556681074202, 0.016232771798968315, 0.02672947756946087, 0.0008880709065124393, -0.02456025592982769, -0.002795239444822073, 0.03863836079835892, 0.04221976175904274, 0.011654110625386238, -0.023701300844550133, -0.008443952538073063, -0.007803376764059067, -0.003173761535435915, -0.02140105329453945, -0.0135103240609169, -5.007341314922087e-05, 0.007766980677843094, -0.01500985398888588, 0.012665929272770882, 0.015592195093631744, 0.003674211213365197, 0.03575577214360237, 0.06685280799865723, 0.0071955579333007336, -0.014012593775987625, 0.03132997453212738, 0.011916164308786392, 0.009870689362287521, -0.010089067742228508, -0.03869659826159477, 0.0008625934133306146, -0.006736963987350464, -0.012265569530427456, -0.048246998339891434, -0.021182674914598465, -0.014718682505190372, 0.035697538405656815, 0.003037275280803442, -0.015184556134045124, -0.010110905393958092, -0.013634071685373783, 0.03098057024180889, 0.027573872357606888, 0.04778112471103668, 0.006129145156592131, -0.000828926800750196, -0.0036032383795827627, 0.003938084933906794, -0.008895267732441425, 0.05523509532213211, 0.009615914896130562, -0.04364649951457977, -0.03418345004320145, -0.030136175453662872, 0.019362857565283775, 0.01930462196469307, 0.026845945045351982, -0.043937671929597855, 0.004538624547421932, 0.018838750198483467, 0.00340305850841105, -0.016130860894918442, 0.025273622944951057, 0.010183698497712612, 0.004429435357451439, 0.038172490894794464, 0.02623448707163334, -0.04550999402999878, 0.02490966022014618, -0.012767838314175606, -0.009368419647216797, -0.0060599916614592075, 0.0018580335890874267, -0.0026623927988111973, 0.008414835669100285, 0.00955040194094181, -0.015242790803313255, -0.0025677622761577368, -0.0005741523928008974, -0.030398229137063026, 0.011734182015061378, 0.005186479538679123, -0.002356663579121232, 0.02870943956077099, -0.03796866908669472, -0.00888798851519823, 0.015781456604599953, 0.043122392147779465, 0.019159037619829178, -0.001355763990432024, -0.010744201950728893, -0.012185497209429741, 0.02951015904545784, 0.006456712260842323, 0.005259272176772356, 0.023453805595636368, -0.02290058135986328, 0.02587052434682846, 0.0333099365234375, 0.025666704401373863, 0.03199966996908188, 0.030136175453662872, 0.04041450470685959, -0.016523942351341248, 0.031562913209199905, -0.05456540361046791, -0.01680055446922779, -0.00922283437103033, 0.03942452371120453, -0.005230155307799578, 0.02738461270928383, -0.03648369759321213, 0.03360110893845558, -0.016713201999664307, -0.012251010164618492, -0.03287317976355553, -0.02901516854763031, 0.0077742598950862885, 0.0076577914878726006, 0.04781024158000946, -0.03528989851474762, -0.006431234534829855, 0.02326454594731331, -0.02933545596897602, 0.017877886071801186, 0.02904428541660309, -0.046412620693445206, -0.006533144507557154, 0.005830694921314716, 0.02901516854763031, 0.0012847910402342677, 0.049062278121709824, 0.013408414088189602, -0.03336817026138306, 0.014587655663490295, 0.023482924327254295, 0.0008398457430303097, -0.014966177754104137, -0.03150467947125435, -0.015737781301140785, 0.008043592795729637, 0.06941511482000351, 0.004997218493372202, 0.021386492997407913, -0.01930462196469307, -0.006827954668551683, -0.00792712438851595, 0.01844566874206066, -0.04847993329167366, -0.032582011073827744, 0.014543980360031128, -0.00408367021009326, 0.0326402448117733, 0.03377581015229225, -0.0014667727518826723, -0.02819989062845707, -0.02323542907834053, 0.031126156449317932, -0.007723304908722639, 0.010715085081756115, -0.059282369911670685, 0.022842347621917725, 0.002402158919721842, 0.008698727004230022, 0.008924384601414204, -0.03613429516553879, -0.05494392663240433, -0.048887573182582855, 0.05660359933972359, -0.008800636976957321, 0.037153393030166626, 0.00294446456246078, -0.028461944311857224, -0.011588596738874912, 0.007439413573592901, 0.03080586902797222, -0.007686908822506666, -0.018751397728919983, 0.018824191763997078, -0.031126156449317932, 0.031242623925209045, -0.014900664798915386, 0.01045303139835596, -0.02393423765897751, 0.005048173479735851, 0.01145029067993164, 0.004753362853080034, -0.0014913403429090977, -0.05197398364543915, -0.03907511755824089, -0.00552132586017251, 0.0010099986102432013, 0.02870943956077099, -0.036367230117321014, -0.023715859279036522, 0.03913335129618645, -0.03182496502995491, -0.00044631020864471793, -0.028927817940711975, 0.01540293451398611, 0.03942452371120453, 0.020338278263807297, 0.032727595418691635, -0.0050044977106153965, -0.011523083783686161, 0.003202878637239337, 0.0209351796656847, -0.016742320731282234, 0.009761500172317028, 0.020192693918943405, -0.00700993649661541, -0.03447461873292923, 0.006314766127616167, 0.012738721445202827, -0.016582176089286804, -0.012724163010716438, 0.009746941737830639, 0.023817770183086395, 0.014048989862203598, -0.008618654683232307, 0.00490986742079258, 0.03316435217857361, -0.046762026846408844, -0.010271049104630947, -0.004367561545222998, -0.024516580626368523, 0.029087960720062256, 0.0013366558123379946, -0.011523083783686161, 0.05674918368458748, 0.0006878909771330655, 0.048712871968746185, 0.006991738453507423, 0.008684168569743633, 0.05264367535710335, -0.018503902480006218, -0.01894065923988819, 0.01662585139274597, -0.015563078224658966, 0.0008325664675794542, -0.012331082485616207, -0.019362857565283775, -0.01666952669620514, -0.011872489005327225, -0.024108940735459328, 0.020323719829320908, -0.030136175453662872, 0.03639634698629379, 0.015155439265072346, 0.003315707203000784, 0.007665070705115795, 0.011479408480226994, -0.01978505402803421, -0.024938777089118958, -0.035377249121665955, -0.021328259259462357, 0.009812455624341965, -0.005936244502663612, 0.019726820290088654, 0.013998035341501236, -0.023861445486545563, 0.006150982808321714, -0.023715859279036522, -0.017528481781482697, -0.012556740082800388, 0.003635995090007782, -0.01327010802924633, -0.035027846693992615, -0.031592030078172684, 0.0209351796656847, -0.018503902480006218, 0.03342640399932861, 0.005423055961728096, 0.0044840299524366856, 0.01945020817220211, 0.04437442868947983, -0.03712427616119385, 0.016043510288000107, -0.03307700157165527, -0.015213673003017902, -0.02390512079000473, 0.00445127347484231, -0.036163412034511566, -0.008043592795729637, -0.02157575450837612, 0.010977138765156269, -0.029757654294371605, -0.038521893322467804, 0.02391967922449112, 0.03249466046690941, -0.023279104381799698, 0.042627401649951935, -0.03392139449715614, -0.03392139449715614, -0.031766731292009354, -0.007534043863415718, -0.021823249757289886, -0.05727329105138779, 0.0020527539309114218, -0.011239192448556423, -0.037007804960012436, -0.02256573550403118, -0.0580594539642334, 0.02837459184229374, 0.014463908970355988, -0.00011726448428817093, 0.004007237963378429, -0.013306505046784878, -0.008189178071916103, 0.013816053979098797, -0.017106283456087112, 0.017557598650455475, -0.011508525349199772, -0.019159037619829178, 0.029073402285575867, 0.0009426653850823641, 0.00610730703920126, 0.016858788207173347, -0.00931018590927124, 0.03293141350150108, 0.01781965233385563, -0.014725962653756142, -0.0014704124769195914, 0.011748741380870342, -0.014631331898272038, 0.00614370359107852, -0.03543548285961151, -0.032902296632528305, 0.027108000591397285, -0.01648026704788208, 0.011595875956118107, 0.034853141754865646, 0.004844353999942541, 0.015169997699558735, 0.023308221250772476, -0.02209986187517643, 0.0106350127607584, 0.020017990842461586, -0.014136341400444508, -0.00856042094528675, -0.045772045850753784, 0.034387268126010895, -0.011479408480226994, -0.038842182606458664, 0.013481207191944122, -0.030951453372836113, 0.005881649907678366, 0.0007333863759413362, -0.039832163602113724, 0.045917633920907974, 0.002269312273710966, 0.00020108981698285788, 0.0020491143222898245, 0.014201855286955833, 0.019348299130797386, -0.04859640449285507, 0.028097979724407196, 0.017528481781482697, -0.0009071789681911469, 0.002915347460657358, -0.02918987162411213, 0.009499446488916874, 0.012476667761802673, -0.049877554178237915, 0.009448491968214512, -0.005612317007035017, 0.007563161198049784, 0.026947855949401855, -0.004454913083463907, 0.035697538405656815, -0.016727760434150696, -0.005044533871114254, -0.019231829792261124, 0.0009936202550306916, 0.004072751384228468, 0.012418434023857117, -0.0017242769245058298, -0.004676930606365204, -0.00980517640709877, 0.021896041929721832, 0.0015350159956142306, 0.008465790189802647, 0.0030500139109790325, -0.014551259577274323, -0.03179584816098213, 0.018998892977833748, -0.005666911136358976, 0.004309327341616154, 0.0009781518019735813, 0.0010227373568341136, 0.01534469984471798, -0.0031919595785439014, 0.020862385630607605, -0.010118184611201286, 0.015752339735627174, 0.033542875200510025, 0.014296485111117363, 0.023322779685258865, 0.03293141350150108, 0.007606836501508951, -0.016887905076146126, 0.008793357759714127, -0.009637752547860146, -0.0106350127607584, -0.03278582915663719, 0.005856172181665897, 0.05476922541856766, -0.002605978399515152, 0.011275588534772396, -0.018882425501942635, -0.013976197689771652, -0.016989815980196, 0.00020541188132483512, 0.001620547380298376, 0.014776917174458504, 0.015373817645013332, 0.028942376375198364, 0.022463826462626457, 0.0448111817240715, 0.0273554939776659, -0.0023985193111002445, 0.019843289628624916, -0.005863451398909092, 0.007057251874357462, -0.01681511290371418, -0.042598284780979156, -0.0017988894833251834, -0.00018391529738437384, -0.01327010802924633, 0.01977049559354782, -0.03709515929222107, 0.001332106301560998, 0.027661224827170372, 0.024210849776864052, 0.01716451719403267, 0.021357376128435135, 0.0019563036039471626, -0.04993578791618347, 0.0230752844363451, 0.021997952833771706, -0.020090783014893532, -0.022638527676463127, -0.0015395655063912272, 0.022798672318458557, -0.0048370747826993465, 0.020061666145920753, -0.017251869663596153, -0.03913335129618645, -0.027282701805233955, 0.001824366976507008, 0.012855189852416515, 0.004371201153844595, -0.054303351789712906, 0.010445752181112766, -0.020163577049970627, 0.014711403287947178, -0.01665496826171875, -0.009710545651614666, 0.017091725021600723, 0.0001533196191303432, -0.01696069724857807, 0.017732299864292145, -0.024327319115400314, -0.01204719115048647, -0.030427346006035805, 0.01993064023554325, 0.007191918324679136, -0.031126156449317932, 0.03298965096473694, 0.002154663670808077, 0.010234653018414974, -0.03514431416988373, -0.00864777248352766, -0.014150899834930897, 0.02949560061097145, -0.006813396234065294, -0.026627568528056145, 0.008582258597016335, -0.0023803210351616144, -0.006751522421836853, -0.024502020329236984, -0.036338113248348236, -0.008604096248745918, 0.030631165951490402, -0.02355571649968624, 0.013692306354641914, -0.02207074500620365, -0.01864948868751526, 0.056458014994859695, 0.006362081505358219, 0.007847052998840809, -0.014937060885131359, -0.023715859279036522, 0.00490986742079258, 0.01878051459789276, 0.009652310982346535, 0.006231054663658142, -0.00614370359107852, 0.007497647777199745, -0.004582300316542387, 0.007723304908722639, -0.011865208856761456, -0.003514067269861698, 0.027399171143770218, 0.0425400510430336, -0.014573097229003906, 0.027166234329342842, 0.024167174473404884, -0.0067442432045936584, -0.021328259259462357, 0.015533961355686188, 0.0008853411418385804, 0.06615400314331055, 0.00204183510504663, 0.014878827147185802, -0.0028753115329891443, -0.0008889808086678386, -0.03511519730091095, -0.024647606536746025, 0.00622013583779335, -0.0052993083372712135, -0.005594118498265743, -0.026307279244065285, -0.012687766924500465, 0.0016933400183916092, -0.023613950237631798, -0.0027042485307902098, 0.00024795011267997324, 0.006136424373835325, 0.026962414383888245, -0.01500985398888588, -0.03153379634022713, 0.017732299864292145, -0.026118019595742226, 0.016058068722486496, 0.032232604920864105, -0.014878827147185802, 0.058437976986169815, 0.017761416733264923, 0.0005696028238162398, 0.019217271357774734, -0.052177805453538895, -0.010285607539117336, 0.005987199023365974, -0.0027588431257754564, 0.03316435217857361, -0.030281761661171913, 0.005878010299056768, -0.008698727004230022, 0.012018074281513691, 0.007497647777199745, -0.018707722425460815, -0.028578411787748337, -0.014449349604547024, -0.022012511268258095, 0.01615997776389122, 0.04993578791618347, 0.013328342698514462, -0.013735981658101082, -0.023992471396923065, 0.006409396883100271, -0.0025841407477855682, 0.010176418349146843, 0.002995419315993786, 0.009514004923403263, 0.05951530858874321, -0.015024412423372269, 0.015912482514977455, -0.0013393856352195144, -0.014893385581672192, -0.024618489667773247, -0.0018462047446519136, 0.022143537178635597, 0.0006874360260553658, 0.018169056624174118, -0.007992638275027275, 0.018256407231092453, 0.013124522753059864, -0.006045433226972818, -0.021896041929721832, -0.0029644824098795652, 0.006373000331223011, -0.005674190819263458, -0.005146443378180265, -0.011646831408143044, -0.0026041585952043533, -0.04583027958869934, 0.00494990311563015, 0.007049972657114267, 0.002191060222685337, -0.002251113997772336, 0.008371160365641117, -0.014056269079446793, 0.0029626626055687666, -0.0032065182458609343, -0.016931580379605293, 0.006915306206792593, -0.023191751912236214, -0.04647085815668106, 0.03351375833153725, -0.017179075628519058, 0.015271907672286034, 0.006231054663658142, 0.007512206211686134, -0.006729684770107269, 0.01844566874206066, -0.011006255634129047, -0.03220348805189133, 0.008553141728043556, -0.012505784630775452, 0.002314807614311576, 0.009681428782641888, 0.02030916139483452, 0.018678605556488037, -0.009106365963816643, -0.03706603869795799, 0.010627733543515205, 0.01343025267124176, 0.009033573791384697, -0.009011735208332539, -0.000974512193351984, 0.023002492263913155, 0.021852366626262665, 0.02310440130531788, -0.026161694899201393, 0.026744036003947258, -0.056312430649995804, 0.01714995875954628, 0.057797398418188095, 0.005106407683342695, -0.001003629295155406, 0.0019581234082579613, 0.0036687518004328012, 0.028767673298716545, 0.005543163511902094, -0.023876003921031952, -0.010045391507446766, -0.002254753839224577, -0.0010245571611449122, 0.03252377733588219, 0.00029094330966472626, 0.0034394548274576664, 0.030107058584690094, -0.004953542724251747, 0.022886022925376892, -0.0035122474655508995, -0.016087185591459274, -0.02077503502368927, 0.01401987299323082, -0.02686050534248352, -0.012491226196289062, 0.009637752547860146, 0.02984500490128994, -0.0030117977876216173, -0.015563078224658966, 0.016596734523773193, -0.01474052108824253, 0.0026605729945003986, -0.020847827196121216, -0.008327484130859375, 0.01367774698883295, -0.007483088877052069, -0.02227456495165825, 0.04367561638355255, -0.01221461407840252, -0.044898536056280136, -0.009048132225871086, 0.024167174473404884, 0.00033916847314685583, 0.006904386915266514, 0.014951619319617748, -0.011151840910315514, -0.008909826166927814, 0.06132056564092636, -0.017601273953914642, 0.0033866800367832184, 0.027399171143770218, 0.03374669328331947, 0.023322779685258865, -0.0009817915270105004, 0.01393252145498991, -0.018518460914492607, 0.014136341400444508, -0.018722280859947205, 0.025914199650287628, 0.007475809659808874, 0.008458510972559452, -0.0017233670223504305, -0.03333905339241028, -0.06003941595554352, 0.0012665928807109594, 0.01581057347357273, 0.02375953644514084, -0.009019015356898308, 0.007890728302299976, 0.0069007473066449165, -0.01896977610886097, -0.018911542370915413, -0.010161859914660454, -0.02720990963280201, 0.0007816115394234657, -0.011654110625386238, 0.010664129629731178, 0.0291607528924942, -0.019988873973488808, -0.02405070699751377, 0.014267368242144585, 0.010693246498703957, -0.013968918472528458, -0.003426716197282076, 0.009368419647216797, -0.0013594035990536213, 0.0019472045823931694, -0.00035440942156128585, 0.005674190819263458, 0.017746858298778534, 0.006766080856323242, 0.019916081801056862, 0.02224544808268547, 0.003883490338921547, -0.012927982956171036, 0.028330916538834572, -0.01088978722691536, 0.010685967281460762, 0.03741544485092163, -0.009120924398303032, 0.0061400639824569225, 0.01728098653256893, 0.0006128235254436731, -0.030398229137063026, -0.020876944065093994, -0.001512268208898604, 0.011559479869902134, 0.033717576414346695, 0.0025295461528003216, 0.02587052434682846, -0.002362122992053628, 0.013139081187546253, 0.026613010093569756, -0.03543548285961151, 0.012127263471484184, -0.004778840579092503, -0.009281069040298462, -0.005510407034307718, -0.031242623925209045, -0.02999059110879898, -0.03080586902797222, 0.009936203248798847, -0.012593136169016361, 0.020192693918943405, -0.034532856196165085, 0.01700437441468239, -0.008720564655959606, 0.0075849988497793674, 0.017441129311919212, -0.024283643811941147, -0.019057126715779305, -0.010948020964860916, 0.0034776709508150816, -0.00874240230768919, 0.011712344363331795, 0.000708363892044872, -0.04061832278966904, 0.0044840299524366856, 0.02042563073337078, 0.018358318135142326, -0.013575837947428226, 0.023148076608777046, 0.06050528958439827, 0.030718516558408737, -0.009506725706160069, -0.014624052681028843, 0.008640493266284466, -0.00335756316781044, -0.002647834364324808, -0.0029972391203045845, 0.024793192744255066, 0.0009035393013618886, 0.030922336503863335, -0.04644174128770828, 0.013422972522675991, -0.014289205893874168, 0.0409386120736599, 0.031038805842399597, -0.02294425666332245, -0.0036050581838935614, 0.03796866908669472, -0.036862220615148544, 0.018008911982178688, -0.00949216727167368, 0.018023470416665077, 0.024938777089118958, -0.01601439341902733, 0.017586715519428253, 0.00631112651899457, 0.026423748582601547, 0.004982660058885813, -0.01187976822257042, 0.024793192744255066, -0.03298965096473694, -0.0248805433511734, -0.0055977581068873405, -0.00848762784153223, -0.026176253333687782, 0.03689133748412132, -0.027981512248516083, -0.033892277628183365, -0.02108076401054859, 0.005805217660963535, 0.013146360404789448, 0.01795067824423313, 0.034853141754865646, 0.004069111775606871, 0.0234101302921772, 0.036658402532339096, 0.028651203960180283, -0.04085126146674156, -0.03132997453212738, 0.013481207191944122, -0.019552117213606834, 0.01418729592114687, -0.037357211112976074, -0.014048989862203598, -0.0045677414163947105, 0.005102768074721098, 0.002940824953839183, 0.01014002226293087, -0.008807916194200516, -0.026802269741892815, 0.006296568084508181, 0.00949216727167368, -0.0353190153837204, -0.007475809659808874, 0.005910766776651144, -0.017732299864292145, 0.002698789117857814, 0.01540293451398611, 0.01278239767998457, 0.019552117213606834, 0.0045422641560435295, -0.01927550509572029, -0.04201594367623329, 0.024108940735459328, -0.013910683803260326, -0.02470584027469158, 0.011202795431017876, 0.044782064855098724, 0.008764240890741348, 0.039977747946977615, -0.04224887862801552, -0.010365679860115051, 0.02474951557815075, -0.010984417982399464, -0.04184124246239662, -0.018372876569628716, -0.0001568455045344308, -0.01898433454334736, -0.028316358104348183, -0.01680055446922779, -0.02074591815471649, 0.02540465071797371, 0.02866576425731182, 0.01328466646373272, 0.001649664482101798, 0.010860670357942581, 0.015621311962604523, -0.03179584816098213, -0.0006869810749776661, -0.02573949657380581, 0.04006509855389595, -0.027486521750688553, 0.027239026501774788, 0.014078107662498951, 0.012673208490014076, 0.04204506054520607, 0.038813065737485886, -0.0005887109437026083, -0.007796097546815872, -0.017834210768342018, 0.01847478561103344, -0.0072537921369075775, 0.011712344363331795, -0.0069808196276426315, -0.0024713119491934776, -0.014871547929942608, 0.05963177606463432, -0.007876169867813587, 0.0074685304425656796, 0.015097204595804214, -0.021328259259462357, -0.035668421536684036, -0.025521118193864822, 0.000504544354043901, -0.006274730432778597, 0.03188319876790047, -0.023162635043263435, -0.0008389357826672494, -0.013321063481271267, -0.006955341901630163, 0.054798342287540436, -0.012163659557700157, 0.004302048124372959, -0.0007688728510402143, -0.012855189852416515, -0.0031246263533830643, -0.007322945166379213, -0.0029517437797039747, 0.021211791783571243, -0.010700526647269726, -0.03296053409576416, -0.022012511268258095, -0.018678605556488037, -0.003066392382606864, -0.020498422905802727, 0.0031810407526791096, 0.04495676979422569, 0.012236451730132103, -0.022056186571717262, -0.00115467410068959, 0.011435732245445251, 0.020236369222402573, 0.000465418299427256, 0.02094973810017109, 0.005124605726450682, 0.00018459772400092334, -0.009048132225871086, 0.0018671326106414199, -0.007919845171272755, -0.007781539112329483, -0.003080950817093253, 0.021837808191776276, -0.028942376375198364, 0.005783379543572664, 0.009608635678887367, 0.00688254926353693, 0.0013457549503073096, -0.006635054014623165, -0.000827561947517097, 0.02520083077251911, 0.004844353999942541, -0.02080415189266205, -0.03132997453212738, -0.002065492793917656, -0.031242623925209045, -0.00622013583779335, 0.064756378531456, 0.009848851710557938, 0.025492001324892044, -0.01095530018210411, -0.011166399344801903, -0.006558621767908335, 0.01319003663957119, 0.02474951557815075, 0.009666870348155499, 0.015126322396099567, 0.00833476334810257, -0.01583969034254551, -0.011523083783686161, -0.0034339954145252705, 0.031213507056236267, -0.0027588431257754564, 0.004771561361849308, -0.022041628137230873, 0.007563161198049784, -0.0346493236720562, -0.015621311962604523, 0.015388376079499722, 0.009666870348155499, 0.008989897556602955, -0.015475726686418056, 0.0006496747955679893, -0.004847993608564138, -0.009375698864459991, 0.0024512941017746925, -0.010343842208385468, 0.012651370838284492, -0.0014321962371468544, -0.035027846693992615, -0.006631414406001568, -0.005368461366742849, 0.0293645728379488, 0.008931663818657398, -0.06865806877613068, -0.022056186571717262, 0.04035627096891403, -0.010008995421230793, -0.0007802466861903667, 0.005645073484629393, -0.025273622944951057, -0.01269504614174366, 0.015563078224658966, -0.009674149565398693, -0.0015759618254378438, -0.0027333656325936317, 0.009994436986744404, -0.026627568528056145, -0.005601397715508938, 0.0062820096500217915, -0.018372876569628716, -0.016378356143832207, -0.020221810787916183, 0.02161942981183529, -0.036687519401311874, 0.007362981326878071, 0.01078787725418806, 0.02588508278131485, -0.029582951217889786, -0.015883365646004677, 0.027486521750688553, -0.011246471665799618, -0.017863327637314796, 0.0014740520855411887, -0.018562138080596924, -0.026409190148115158, -0.002731545828282833, 0.019188154488801956, -0.0041382648050785065, -0.004262012429535389, -0.0022838707081973553, 0.01062045432627201, 0.0024622129276394844, -0.005663271527737379, -0.015621311962604523, -0.008502187207341194, 0.02537553384900093, -0.006540423724800348, -0.010933462530374527, 0.05197398364543915, -0.026016108691692352, -0.006427594926208258, -0.006831594277173281, 0.020338278263807297, 0.0019126280676573515, -0.006070910952985287, -0.016261888667941093, -0.013044451363384724, 0.011952560395002365, -0.011850650422275066, 0.02029460296034813, 0.017703182995319366, 0.04402502253651619, -0.00040877648280002177, 0.006995378062129021, -0.001698799547739327, -0.0275593139231205, -0.014624052681028843, 0.0037997786421328783, 0.006591378711163998, 0.036512814462184906, -0.013306505046784878, 0.009368419647216797, 0.010744201950728893, 0.036017823964357376, 0.016101744025945663, 0.020003432407975197, -0.026627568528056145, 0.006846153177320957, 0.015388376079499722, 0.022332798689603806, -0.04565557837486267, -0.01410722453147173, 0.013044451363384724, 0.04670379310846329, -0.0037160671781748533, 0.03386316075921059, -0.02042563073337078, -0.03680398687720299, 0.005230155307799578, 0.007068170700222254, 0.032087020576000214, 0.019188154488801956, 0.0009089987725019455, -0.013539440929889679, 0.002600518986582756, 0.019159037619829178, 0.018081706017255783, 0.010402075946331024, 0.028418269008398056, 0.010001716203987598, 0.0063875592313706875, 0.016101744025945663, -0.00932474434375763, -0.00544489361345768, -0.01963946968317032, 0.0071227652952075005, 0.005361182149499655, -0.007978079840540886, -0.005885289516299963, 0.004036354832351208, 0.004753362853080034, 0.00824013352394104, -0.005146443378180265, -0.0046478137373924255, 0.0051355245523154736, 0.012964379042387009, 0.0053830198012292385, -0.021502962335944176, 0.03269847854971886, -0.0009544942295178771, -0.004276570864021778, -0.010948020964860916, 0.021051647141575813, 0.007013576105237007, -0.025783171877264977, 0.023541158065199852, -0.022682202979922295, 0.00166058330796659, -0.010693246498703957, 0.020978854969143867, 0.02058577351272106, -0.0035886799450963736, -0.016523942351341248, -0.03118439018726349, -0.005863451398909092, -0.013277387246489525, -0.00305365351960063, -0.026176253333687782, 0.026074344292283058, 0.010744201950728893, -0.0036851302720606327, 0.019042568281292915, 0.0034667521249502897, -0.014951619319617748, 0.010234653018414974, -0.0174556877464056, -0.03246554359793663, -0.025681262835860252, 0.011544921435415745, -0.019843289628624916, -0.015228231437504292, -0.017368337139487267, 0.027646666392683983, 0.00664233323186636, 0.014733241870999336, 0.008007196709513664, -0.004673290997743607, 0.009397536516189575, -0.015883365646004677, 0.005579560063779354, -0.022128978744149208, 0.0019017091253772378, -0.018547579646110535, -0.01894065923988819, -0.0038216165266931057, -0.006562261376529932, 0.008589537814259529, 0.00015502570022363216, -0.01236747857183218, -0.013903404586017132, -0.0020491143222898245, 0.00360687798820436, -0.005051813088357449, 0.017761416733264923, 0.0032046984415501356, 0.0012520343298092484, -0.008516745641827583, -0.008749681524932384, 0.0037997786421328783, -0.00832020491361618, 0.03648369759321213, 0.015038970857858658, 0.009608635678887367, -0.014638611115515232, -0.009011735208332539, 0.00833476334810257, 0.006405757274478674, 0.023672183975577354, -0.008851591497659683, -0.014434791170060635, -0.005182839930057526, -0.019668586552143097, -0.01095530018210411, -0.022711321711540222, 0.026758594438433647, -0.01540293451398611, -0.017222750931978226, 0.007956241257488728, -0.006289288867264986, 0.011894326657056808, -0.007497647777199745, 0.012833352200686932, -0.007100927643477917, -0.010387517511844635, -0.004844353999942541, -0.0007406656513921916, 0.02753019705414772, -0.0095649603754282, 0.01567954570055008, 0.012294686399400234, -0.0044585526920855045, -0.01383789163082838, -0.009601356461644173, 0.010125463828444481, -0.005495848599821329, -0.020090783014893532, -0.0014358359621837735, -0.0034339954145252705, 0.041317135095596313, 0.008473069407045841, -0.000517738051712513, -0.030369112268090248, -0.0032975091598927975, -0.026991531252861023, 0.011173678562045097, 0.0034103377256542444, 0.013291945680975914, 0.007151882164180279, 0.02096429653465748, -0.006656892132014036, 0.0154174929484725, 0.0018452948424965143, -0.005306587554514408, -0.0035195269156247377, 0.001620547380298376, 0.004487669561058283, 0.006613216362893581, 0.00708636874333024, -0.017746858298778534, -0.008800636976957321, 0.016101744025945663, -0.0023876004852354527, -0.020483864471316338, 0.03607606142759323, 0.02853473648428917, 0.007788818329572678, -0.05485657602548599, -0.010365679860115051, -0.004018156789243221, -0.014653169550001621, -0.002906248439103365, -0.010096346959471703, 0.0032793108839541674, 0.0051100472919642925, -0.0028789511416107416, 0.009506725706160069, -0.027632107958197594, 0.015708664432168007, 0.0038725712802261114, 0.023963354527950287, -0.032057903707027435, -0.007548602297902107, 0.008451231755316257, -0.02405070699751377, -0.020352836698293686, 0.0030463743023574352, 0.009652310982346535, 0.02390512079000473, -0.00321197765879333, -0.011938001960515976, -0.010190977714955807, 0.0230752844363451, 0.009113645181059837, -0.004090949427336454, -0.008960780687630177, -0.014871547929942608, 0.0007697827531956136, 0.009994436986744404, -0.0012074487749487162, 0.009397536516189575, -0.006908026989549398, 0.003150103846564889, 8.55172038427554e-06, -0.012898865155875683, 0.027471963316202164, 0.028432827442884445, -0.006565900985151529, 0.025462884455919266, -0.0018744119442999363, 0.014827871695160866, 0.029786771163344383, -0.0011774218874052167, -0.021459287032485008, 0.011173678562045097, -0.003648733953014016, -0.0012574938591569662, -0.022784113883972168, -0.022507501766085625, 0.034882258623838425, -0.0036268960684537888, 0.032727595418691635, 0.01943564973771572, -0.013939800672233105, -0.024007031694054604, -0.02028004452586174, -0.006635054014623165, 2.7126652639708482e-05, -0.003237455151975155, 0.0266858022660017, 0.009725104086101055, -0.0064385137520730495, 0.027748575434088707, 0.0025877803564071655, 0.01729554496705532, -0.007020855322480202, 0.01319003663957119, -0.004476750735193491, 0.02504068799316883, 0.005415776744484901, -0.0037488238885998726, 0.0154174929484725, 0.015271907672286034, -0.01105721015483141, 0.0026023387908935547, -0.016742320731282234, -0.03313523530960083, -0.016028951853513718, -0.038347192108631134, -0.00022361005540005863, 0.020396513864398003, 0.011428453028202057, 0.011559479869902134, -0.014449349604547024, -0.005797937978059053, 0.002920806873589754, -0.01598527655005455, -0.030252644792199135, -0.017746858298778534, 0.009426654316484928, -0.009244672022759914, -0.0015887005720287561, 0.0018116282299160957, -0.005746983457356691, 0.03266936168074608, 0.027078881859779358, 0.03462020680308342, -0.0004115062183700502, -0.014966177754104137, -0.045247938483953476, -0.015446609817445278, 0.02802518755197525, 0.02343924716114998, -0.008858870714902878, 0.0006164631340652704, -0.005128245335072279, 0.022696763277053833, 0.010038112290203571, 0.01748480461537838, -0.013954360038042068, 0.004589579533785582, -0.008953501470386982, 0.025331858545541763, 0.007686908822506666, 0.000532296602614224, 0.0046478137373924255, 0.011028093285858631, 0.0014795114984735847, 0.026816828176379204, 0.017018932849168777, -0.001006359001621604, -1.11392728285864e-05, 0.008094547316432, -0.011654110625386238, -0.022128978744149208, -0.008181898854672909, 6.807254248997197e-05, -0.013626792468130589, 0.0020636729896068573, 0.026991531252861023, -0.009470329619944096, -0.0005796118639409542, -0.03697868809103966, -0.016713201999664307, -0.011574038304388523, 0.005364821758121252, -0.013328342698514462, 0.009943482466042042, -0.013626792468130589, 0.03080586902797222, 0.018416551873087883, -0.04516058787703514, 0.0003298418887425214, 0.007031774148344994, 0.0270206481218338, -0.018241848796606064, -0.0043275258503854275, 0.021502962335944176, 0.004014517180621624, 0.03409609943628311, 0.005270191002637148, 0.0004033170407637954, -0.005390299018472433, -0.027457404881715775, -0.029218988493084908, -0.008203736506402493, -0.025011569261550903, -0.03365934267640114, -0.013772377744317055, 0.005816136486828327, 0.004454913083463907, -5.388365389080718e-05, -0.021357376128435135, -0.02817077375948429, -0.0033229864202439785, 0.021633988246321678, 0.011202795431017876, 0.023948796093463898, 0.0037306256126612425, 0.016028951853513718, -0.01278239767998457, 0.0069335042499005795, -0.02193971909582615, -0.005332064814865589, -0.016130860894918442, 0.033892277628183365, 0.006482189521193504, 0.0375901460647583, -0.008989897556602955, 0.031271740794181824, -0.008378439582884312, -0.01898433454334736, 0.0015277366619557142, -0.04417060688138008, -0.007115486077964306, 0.007297467906028032, 0.02090606279671192, -0.022973375394940376, -0.003091869642958045, -0.009535843506455421, -0.006150982808321714, 0.03351375833153725, 0.010525823570787907, 0.011996235698461533, -0.03989039734005928, 0.0026369153056293726, 0.013473927974700928, -0.02802518755197525, -0.036512814462184906, 0.009332023561000824, -0.01476963795721531, 0.0012693225871771574, -0.005175560712814331, 0.03505696356296539, -0.0011355660390108824, 0.009040853008627892, -0.004094589035958052, 0.006252892315387726, 0.028986051678657532, 0.0021801411639899015, 0.016917021945118904, -0.031213507056236267, 0.00045586423948407173, 0.003934445325285196, 0.0031027887016534805, -0.029874121770262718, 0.01567954570055008, -0.01105721015483141, -0.030834985896945, -0.03441638499498367, 0.007948962040245533, 0.009251951240003109, -0.0013948900159448385, 0.021357376128435135, 0.0011947101447731256, -0.023133518174290657, -0.00167878158390522, -0.0008594087557867169, -0.008021755144000053, 0.023351896554231644, -0.0004745173791889101, 0.004662372171878815, -0.038492776453495026, 0.03837630897760391, 0.024851426482200623, -0.011894326657056808, 0.0058452533558011055, 0.023992471396923065, -0.004720606375485659, 0.006522225681692362, 0.015766898170113564, -0.018431110307574272, -0.024647606536746025, -0.006558621767908335, 0.017877886071801186, 0.003344824304804206, -0.0027333656325936317, -0.027646666392683983, 0.011923443526029587, -0.01096258033066988, 0.00890254694968462, -0.006201937794685364, 0.025302741676568985, -0.015111763961613178, -0.018241848796606064, 0.011566759087145329, 0.009404816664755344, 0.024531139060854912, 0.018882425501942635, 0.003031815867871046, 0.013109964318573475, -0.0054412540048360825, -0.0013957999181002378, 0.02718079276382923, -0.007151882164180279, -0.0024913300294429064, 0.01046758983284235, 0.021459287032485008, 0.0143474405631423, -0.005404857452958822, -0.020250927656888962, 0.005412136670202017, 0.01764494925737381, -0.0012411155039444566, -0.011843371205031872, -0.013561279512941837, -0.031912319362163544, -0.0036432743072509766, 0.005433974787592888, -0.014507584273815155, -7.995822670636699e-05, 0.011443011462688446, -0.013488486409187317, 0.004440354183316231, -0.0033848602324724197, 0.019159037619829178, 0.005266551394015551, 0.006795198190957308, -0.018722280859947205, -0.02850561961531639, -0.006078190170228481, -0.005863451398909092, 0.0011728722602128983, -0.00267695146612823, 0.004371201153844595, -0.02256573550403118, -0.0176595076918602, 0.02159031294286251, -0.00535390293225646, 0.019741378724575043, -0.003080950817093253, 0.008509466424584389, -0.01828552410006523, -0.009040853008627892, -0.0014567638281732798, -0.0012738722143694758, 0.008837033063173294, 0.014449349604547024, 0.010183698497712612, 0.00939025729894638, -0.00965959019958973, -0.003854373237118125, 0.001989060314372182, 0.0046842098236083984, -0.0034958692267537117, 0.0095649603754282, 0.007388458587229252, 0.010045391507446766, -0.017179075628519058, 0.05637066438794136, 0.003528625937178731, 0.02753019705414772, -0.001326646888628602, -0.004316607024520636, -0.028651203960180283, 0.009827014058828354, 0.025448326021432877, 0.011086327023804188, -0.010977138765156269, -0.0039235264994204044, -0.010744201950728893, 0.003934445325285196, 0.012309244833886623, -0.008756961673498154, 0.017106283456087112, 0.0031810407526791096, 0.008706006221473217, -0.002303888788446784, 0.04545176029205322, 0.007322945166379213, -0.006005397532135248, -0.025346416980028152, -0.01286246906965971, 0.0014758718898519874, 0.009361140429973602, -0.01648026704788208, 0.01930462196469307, 0.024603931233286858, 0.03942452371120453, 0.010918904095888138, 0.01581057347357273, -0.008749681524932384, -0.01617453619837761, -0.018591254949569702, 0.028578411787748337, 0.009572239592671394, 0.02621992863714695, -0.0009626834071241319, 0.009783337824046612, 0.023337338119745255, 0.002431276021525264, 0.035348132252693176, 0.02470584027469158, -0.01911536231637001, -0.0030827706214040518, 0.0016068987315520644, -0.011064489372074604, 0.0425400510430336, -0.025783171877264977, -0.026292720809578896, -0.005201037973165512, 0.0014085386646911502, 0.01684422977268696, -0.009004455991089344, -0.01927550509572029, 0.004109147470444441, 0.0023930598981678486, -0.0017925201682373881, 0.010736922733485699, 0.017062608152627945, -0.020396513864398003, -0.001224737148731947, -0.030922336503863335, 0.001838015508837998, 0.010991697199642658, -0.00037874947884120047, 0.00713732372969389, 0.00816734042018652, -0.017106283456087112, 0.0001372824772261083, -0.01021281536668539, 0.006864351220428944, -0.008473069407045841, -0.010729643516242504, 0.012236451730132103, 0.0014758718898519874, 0.027137117460370064, 0.02522994764149189, 0.01599983498454094, 0.021168116480112076, -0.0013484846567735076, -0.010278328321874142, -0.005022695753723383, -0.00412006676197052, 0.010715085081756115, -0.003133725607767701, -0.002469492144882679, 0.01550484448671341, -0.008502187207341194, -0.005921685602515936, 0.02275499701499939, -0.0005937154055573046, -0.008443952538073063, 2.2534457457368262e-05, 0.0016633131308481097, -0.009528563357889652, -0.024341877549886703, 0.01684422977268696, -0.018096264451742172, 0.013896125368773937, 0.005910766776651144, -0.009739662520587444, -0.007293827831745148, -0.013211874291300774, 0.001849844353273511, 0.006067271344363689, -0.0039490037597715855, -0.01072236429899931, 0.010780598036944866, -0.017193634063005447, -0.009404816664755344, -0.008443952538073063, -0.004152823239564896, -0.005626875441521406, 0.02240559086203575, 0.015242790803313255, -0.0013184576528146863, -0.03310611844062805, -0.012294686399400234, -0.004524066112935543, -0.004109147470444441, -0.026132578030228615, -0.0014103584690019488, 0.01228740718215704, 0.009695987217128277, -0.03418345004320145, -0.010693246498703957, -0.0006537694134749472, -0.013968918472528458, 0.003401238704100251, 0.019566675648093224, 0.009339302778244019, -0.018664047122001648, -0.0005186479538679123, 0.004072751384228468, 0.013197315856814384, -0.0032902297098189592, 0.0047570024617016315, -0.014951619319617748, 0.020833268761634827, 0.007868890650570393, 0.008625934831798077, 0.014937060885131359, 0.0022583934478461742, -0.025186272338032722, -0.006973540410399437, -0.02621992863714695, 0.010081788524985313, -0.01716451719403267, 0.005830694921314716, -0.029408248141407967, -0.0029717618599534035, 0.004938984289765358, -0.0002064355358015746, 0.01550484448671341, -0.008793357759714127, -0.006005397532135248, -0.01714995875954628, 0.01260769460350275, 0.01088978722691536, 0.01648026704788208, -0.009950761683285236, -0.0037451842799782753, -0.00899717677384615, -0.011916164308786392, 0.017513923346996307, -0.006325685419142246, 0.013452090322971344, -0.014398395083844662, 0.013983476907014847, 0.018693163990974426, 0.008203736506402493, -0.02290058135986328, 0.012629532255232334, 0.009586798027157784, -0.012884306721389294, 0.006103667430579662, 0.0011091786436736584, 0.016087185591459274, 0.008938943035900593, -0.012731442227959633, 0.02553567662835121, -0.0007411206024698913, 0.007548602297902107, -0.030893219634890556, 0.01847478561103344, 0.006645972840487957, -0.023541158065199852, 0.015155439265072346, -0.004018156789243221, 0.022798672318458557, 0.0053575425408780575, 0.004971741233021021, -0.010183698497712612, -0.020556656643748283, 0.011195516213774681, 0.00899717677384615, 0.010656850412487984, -0.01310268510133028, -0.023162635043263435, -0.00042060529813170433, 0.007326584775000811, -0.007803376764059067, -0.0015495745465159416, 0.005313866771757603, -0.019552117213606834, -0.0098998062312603, -0.017077166587114334, -0.008291088044643402, -0.010613175109028816, -0.021968835964798927, -0.00020700422464869916, -0.00034258063533343375, 0.004101868253201246, 0.01795067824423313, 0.0038470940198749304, 0.003963562194257975, -0.009128203615546227, 0.013808773830533028, 0.007992638275027275, 0.008327484130859375, -0.01981417089700699, 0.007199197541922331, -0.004280210472643375, -0.011734182015061378, 0.015126322396099567, 0.008975339122116566, -0.0038034182507544756, -0.03878394886851311, 0.03974481299519539, 0.003379400819540024, -0.02061489038169384, 0.013291945680975914, 0.0023876004852354527, 0.014150899834930897, 0.003586860140785575, -0.015737781301140785, 0.015475726686418056, -0.0030445544980466366, -0.014871547929942608, -0.006489468738436699, -0.013801494613289833, 0.004636894911527634, 0.011566759087145329, -0.02423996664583683, 0.00671512633562088, 0.002423996804282069, -0.009746941737830639, -2.4226319510489702e-05, 0.007541323080658913, 0.0015632230788469315, -0.011799695901572704, 0.00717372028157115, -0.003315707203000784, -0.0010554940672591329, -0.018547579646110535, 0.013670467771589756, 0.0006032694363966584, -0.01633468084037304, -0.0075267646461725235, -0.005310227163136005, -0.001838015508837998, -0.01499529555439949, 0.003159202868118882, 0.025957874953746796, -0.017441129311919212, 0.03345552086830139, 0.002842554822564125, 0.012957099825143814, -0.0026551135815680027, -0.012746000662446022, 0.02060033194720745, 0.009048132225871086, 0.005936244502663612, 0.01665496826171875, -0.02343924716114998, -0.01162499375641346, -0.004349363502115011, 0.0008953501237556338, -0.0035413645673543215, 0.006995378062129021, 0.002864392474293709, -0.018329201266169548, 0.0029590229969471693, -0.018751397728919983, -0.011231913231313229, 0.01668408513069153, 0.0007306566694751382, -0.0015668628038838506, 0.011799695901572704, 0.0009262870298698545, 0.006274730432778597, -0.006696927826851606, -0.006897107698023319, -0.01665496826171875, -0.016538500785827637, -0.012192776426672935, 0.023526599630713463, 0.012476667761802673, 0.010110905393958092, -0.006911666598170996, -0.013255549594759941, -0.009470329619944096, 0.01534469984471798, 0.0031646625138819218, 0.034532856196165085, -0.0046259756200015545, -0.015635870397090912, 0.003024536417797208, -0.008698727004230022, 0.01490794401615858, -0.01911536231637001, 0.001890790299512446, -0.026904180645942688, 0.002882590750232339, 0.015956159681081772, 0.014791475608944893, -0.0029863202944397926, 0.0001479739003116265, -0.007071810308843851, -0.00017185900651384145, 0.0052993083372712135, 0.00555772241204977, 0.011603155173361301, 0.00022383753093890846, 0.012316524051129818, 0.011981677263975143, 0.009841572493314743, 0.007297467906028032, 0.00461869640275836, -0.00888798851519823, -0.020644009113311768, 0.002871671924367547, -0.009193717502057552, 0.015126322396099567, -0.007817935198545456, -0.007282909005880356, -0.012687766924500465, 0.013794215396046638, -0.03316435217857361, -0.023381013423204422, 0.0007857061573304236, -0.007847052998840809, -0.004342084284871817, 0.0054885693825781345, -0.0010099986102432013, -0.002050934126600623, -0.006948062684386969, 0.009011735208332539, 0.011515804566442966, -0.024531139060854912, -0.0014904304407536983, 0.0019654028583317995, -0.01070780586451292, 0.0006455802358686924, 0.022682202979922295, -0.006726045161485672, 0.012345640920102596, 0.018387435004115105, 0.006394838448613882, 0.022289123386144638, 0.006172820460051298, -0.027093440294265747, 0.00932474434375763, 0.008116385899484158, -0.0017452049069106579, -0.012564019300043583, -0.026773152872920036, 0.006736963987350464, -0.010169139131903648, -0.022012511268258095, -0.0230752844363451, -0.0011355660390108824, -0.00577610032632947, 0.0030700319912284613, -0.0029371853452175856, 0.010008995421230793, -0.01664040982723236, -0.01352488249540329, -0.007832493633031845, -0.010474869050085545, -0.010554940439760685, -0.0016969797434285283, 0.002888050163164735, 0.007803376764059067, 0.012207334861159325, 0.005273830611258745, -0.013386576436460018, 0.004130985587835312, -0.003825256135314703, -0.013604954816401005, -0.007268350571393967, -0.0014403854729607701, -0.008516745641827583, -0.008436673320829868, -0.013022612780332565, 0.00770874647423625, -0.0005941703566350043, -0.0018725921399891376, 0.01029288675636053, -0.015461168251931667, -0.012571298517286777, 0.005514046642929316, 0.004043634049594402, -0.024458345025777817, 0.00039876747177913785, 0.0042947689071297646, 0.014594935812056065, -0.0007720575085841119, 0.0059034875594079494, 0.005310227163136005, -0.0028461944311857224, -0.0017024391563609242, 0.006977180019021034, 0.010423913598060608, 0.004021796397864819, -0.012236451730132103, -4.6974037104519084e-05, 0.026642126962542534, 0.022463826462626457, -0.01145029067993164, -0.010518544353544712, 0.006172820460051298, 0.016727760434150696, 0.007461251225322485, 0.013204595074057579, 0.004229255486279726, -0.00474608363583684, 0.0006392108625732362, -0.0013712324434891343, -0.010860670357942581, 0.0016705923480913043, -0.0248805433511734, -0.03482402488589287, -0.016276447102427483, 0.015257349237799644, -0.024487461894750595, -0.00494990311563015, 0.02486598491668701, -0.008866149932146072, -0.008429394103586674, 0.00046678315266035497, 0.007199197541922331, 0.014536701142787933, 0.02407982386648655, -0.002240195171907544, 0.019173596054315567, -0.008342042565345764, -0.012054470367729664, 0.010132743045687675, 0.01368502713739872, 0.0019908801186829805, -0.013663188554346561, -0.01442751195281744, -0.019086245447397232, 0.007766980677843094, -0.02322087064385414, -0.006693288218230009, -0.025302741676568985, 0.00791256595402956, 0.0032629326451569796, 0.008211015723645687, 0.002265672665089369, -0.011523083783686161, -0.015796015039086342, 0.02670036070048809, 0.03001970797777176, -0.013124522753059864, -0.015432051382958889, -0.012396596372127533, 0.01963946968317032, 0.02096429653465748, -0.003475851146504283, 0.012061749584972858, 0.021459287032485008, -0.004502227995544672, 0.014522142708301544, -0.0013985296245664358, -0.014587655663490295, -0.018882425501942635, -0.007701467256993055, -0.01238203700631857, 0.0074430531822144985, 0.029568392783403397, -0.0001387610682286322, 0.02011990174651146, 0.026147136464715004, 0.01895521767437458, -0.03459108993411064, -0.03505696356296539, -0.001972682075574994, 0.017441129311919212, 0.0034248963929712772, -0.00791256595402956, 0.005099128466099501, -0.02786504290997982, 0.009113645181059837, 0.005008137319236994, 0.005830694921314716, 0.0158542487770319, 0.008502187207341194, 0.014420232735574245, 0.014616773463785648, 0.00593988411128521, 0.01500985398888588, -0.011668669059872627, -0.006191018503159285, 0.01153764221817255, -0.005623235832899809, 0.029291780665516853, 0.004571381025016308, -0.018765956163406372, 0.01898433454334736, 0.008931663818657398, 0.006784279365092516, 0.019755937159061432, 0.010656850412487984, 0.011938001960515976, 0.004367561545222998, -0.017543040215969086, -0.013393855653703213, -0.008218294940888882, -0.0033084279857575893, 0.016451148316264153, 0.00391988642513752, 0.028636645525693893, 0.005550443194806576, -0.007650512270629406, 0.00026341856573708355, -0.02504068799316883, 0.011493966914713383, -0.01460221502929926, -0.017441129311919212, 0.005186479538679123, 0.005372100975364447, -0.0009572239359840751, 0.01343025267124176, 0.02470584027469158, -0.0021801411639899015, 4.029189585708082e-05, -0.0076577914878726006, -0.01500985398888588, -0.038813065737485886, -0.0017042589606717229, 0.006773360073566437, -0.007599557284265757, 0.0038325353525578976, 0.00044426292879506946, -0.004316607024520636, -0.004134625196456909, -0.0018170876428484917, 0.024458345025777817, 0.027996070683002472, 0.010926183313131332, -0.020250927656888962, -0.0057142265141010284, -0.012534902431070805, -0.005899847950786352, -0.004469471517950296, 0.005688749253749847, -0.02422540821135044, -0.018329201266169548, 0.010220094583928585, -0.007333863992244005, -0.009623194113373756, 0.007133684121072292, 0.020876944065093994, -0.02125546708703041, -0.0037306256126612425, 0.008218294940888882, -0.007592278067022562, -0.016392914578318596, 0.0054667312651872635, -0.0026751316618174314, -0.005554082803428173, -0.010445752181112766, -0.0044367145746946335, 0.005124605726450682, -0.000456091744126752, 0.005448533222079277, 0.0056305150501430035, -0.01550484448671341, -0.011661389842629433, 0.007184639107435942, -0.008858870714902878, -0.010533102788031101, 0.022449268028140068, 0.017033491283655167, -0.016553059220314026, 0.015082646161317825, -0.034358151257038116, 0.0028025186620652676, 0.007159161381423473, -0.00045586423948407173, 0.004087309818714857, 0.004942623898386955, -0.009768779389560223, -0.021342817693948746, -0.019712261855602264, 0.01963946968317032, 0.01030744519084692, -0.003222896484658122, -0.0022838707081973553, 0.015111763961613178, -0.02306072600185871, -0.005186479538679123, -0.02339557185769081, -0.00199633976444602, -0.009907085448503494, -0.0012374757789075375, -2.301784661540296e-05, 0.02886958234012127, -0.0051355245523154736, 0.0194647666066885, -0.028592970222234726, 0.018533019348978996, -0.005550443194806576, 0.029626626521348953, 0.0234101302921772, 0.010758760385215282, 0.011595875956118107, 0.0037743011489510536, 0.011413894593715668, -0.0023166274186223745, -0.03325170278549194, -0.008072709664702415, -0.01129742618650198, 0.03351375833153725, -0.010365679860115051, -0.007199197541922331, -0.011202795431017876, -0.0088297538459301, -0.00832020491361618, -0.0001649209443712607, 0.012294686399400234, -0.02243470773100853, 0.007159161381423473, -0.015053529292345047, -0.008771520107984543, 0.022827789187431335, -0.005095488857477903, -0.0019290064228698611, 0.015592195093631744, 0.006194658577442169, 0.007803376764059067, 0.02243470773100853, -0.0060345144011080265, 0.011894326657056808, 0.00842211488634348, -0.006762441247701645, 0.019493883475661278, -0.005736064165830612, 0.0083929980173707, 0.01128286775201559, -0.011661389842629433, 0.002560483058914542, -0.005969000980257988, -0.004141904413700104, -0.000945395149756223, -0.008713285438716412, -0.019348299130797386, -0.0072064767591655254, -0.0019435649737715721, -0.014616773463785648, -0.01400531455874443, 0.010423913598060608, 0.0019035289296880364, 0.01177785824984312, -0.008494907990098, 0.004738804418593645, -0.002698789117857814, -0.008480348624289036, 0.03479490801692009, -0.0019745018798857927, 0.018751397728919983, -0.01343025267124176, -0.007606836501508951, -0.010132743045687675, -0.017717741429805756, 0.000457456597359851, 0.011159120127558708, 0.0022147176787257195, -0.011035372503101826, -1.5127231563383248e-05, 0.0012283767573535442, -0.006394838448613882, -0.03217437118291855, -0.016218213364481926, -0.008443952538073063, -0.018052589148283005, -0.014551259577274323, -0.01997431553900242, -0.022216331213712692, 0.0013129982398822904, 0.0010227373568341136, -0.0013457549503073096, 0.00013330162619240582, -0.02670036070048809, 0.0003193779557477683, -0.009965320117771626, 0.0005241074250079691, -0.0031755813397467136, 0.0004283395246602595, 0.003839814569801092, -0.006172820460051298, 0.02044018916785717, 0.0049207862466573715, 0.02013446018099785, -0.017397454008460045, 0.019537558779120445, -0.013735981658101082, -0.00823285337537527, 0.008291088044643402, 0.00552132586017251, -0.023512041196227074, 0.016887905076146126, -0.0038762111216783524, -0.02490966022014618, 0.001161043532192707, 0.02838915027678013, -0.0013020792976021767, 0.005266551394015551, -0.0007311116205528378, 0.010016274638473988, -0.03528989851474762, -0.003315707203000784, 0.0013166378485038877, 0.004895308520644903, 0.015053529292345047, 0.021226350218057632, -0.027763133868575096, -0.013328342698514462, 0.016392914578318596, 0.010190977714955807, -0.007140963338315487, 0.008625934831798077, -0.014856989495456219, 0.008516745641827583, 0.015737781301140785, -0.023308221250772476, -0.02706432342529297, 0.00511368690058589, -0.00905541144311428, 0.030631165951490402, -0.023279104381799698, -0.022784113883972168, -0.0005127335316501558, 0.014842430129647255, 0.006937143858522177, -0.016291005536913872, -0.006460351869463921, 0.009004455991089344, 0.03462020680308342, -0.0012966198846697807, 0.005958082154393196, 0.008793357759714127, -0.004902588203549385, 0.008531304076313972, 0.009543122723698616, 0.030718516558408737, -0.018547579646110535, 0.006096388213336468, -0.002280231099575758, -0.0023075283970683813, 0.017441129311919212, 0.004090949427336454, 0.006798837799578905, -0.0145803764462471, 0.02094973810017109, 0.0013839710736647248, -0.002018177416175604, 0.012753279879689217, -0.013568558730185032, -0.003173761535435915, 0.010365679860115051, -0.008342042565345764, -5.3172789193922654e-05, 0.011253750883042812, 0.027108000591397285, -9.428928751731291e-05, 0.006929864641278982, -0.03456197306513786, -0.0068061170168221, -0.030893219634890556, -0.00024590283283032477, -0.0017215472180396318, 0.0179943535476923, -0.006984459236264229, -0.000545490242075175, 0.003350283717736602, -0.0001059474961948581, -0.004367561545222998, 0.005721505731344223, 0.013131801970303059, 0.023322779685258865, 0.01927550509572029, -0.01352488249540329, -0.013539440929889679, -0.009528563357889652, 0.022056186571717262, -0.011413894593715668, -0.022856906056404114, -0.006857072003185749, -0.0017415651818737388, 0.006940783467143774, -0.03153379634022713, 0.023337338119745255, -0.009295627474784851, -0.020250927656888962, 0.007723304908722639, 0.0275593139231205, -0.009120924398303032, 0.020250927656888962, -0.0044585526920855045, 0.02821444906294346, -0.004957182332873344, -0.004167381674051285, -0.01294982060790062, 0.012039911933243275, -0.005288389511406422, -0.027399171143770218, 0.01228740718215704, 0.004123706370592117, -0.036833103746175766, 0.007868890650570393, 0.012141821905970573, -0.007905286736786366, -0.0015905203763395548, 0.0008148232591338456, -0.0045677414163947105, -0.000488620949909091, -0.018736839294433594, 0.01749936304986477, -0.028447385877370834, -0.012447550892829895, 0.006729684770107269, 0.012593136169016361, 0.004007237963378429, 0.0069808196276426315, 0.022551177069544792, -0.03348464146256447, 0.00965959019958973, 0.01713540032505989, 0.0007079089409671724, 0.004807957448065281, -0.006252892315387726, 0.0036578329745680094, -0.02506980486214161, 0.003514067269861698, 0.020527539774775505, 0.005987199023365974, -0.000677881995216012, 0.006089108996093273, -0.00890254694968462, 0.017397454008460045, -0.003703328315168619, -0.0006191928405314684, 0.014645890332758427, -0.001358493696898222, 0.008625934831798077, 0.008706006221473217, 0.017368337139487267, 0.004971741233021021, 0.009601356461644173, 0.00597991980612278, -0.0019508441910147667, -0.0066277747973799706, -0.014383836649358273, 0.001608718535862863, -0.008786078542470932, -0.02110988087952137, -0.005696028470993042, -0.001716087805107236, 0.022012511268258095, 0.008196457289159298, 0.0003573666326701641, 0.006991738453507423, 0.000587801041547209, -0.0066605317406356335, -7.489685958717018e-05, 0.00688254926353693, 0.016611292958259583, 0.0017561237327754498, -0.009506725706160069, -0.0039744810201227665, 0.003100968897342682, 6.812941137468442e-05, -0.0032629326451569796, 0.005550443194806576, 0.00932474434375763, 0.004687849432229996, 0.012411154806613922, -0.03033999539911747, 0.00792712438851595, -0.003912607207894325, 0.0252153892070055, 0.0010873408755287528, -0.004407597705721855, -0.008400277234613895, -0.013998035341501236, 0.005310227163136005, 0.006325685419142246, -0.005867091007530689, -0.010496706701815128, -0.010627733543515205, -0.02821444906294346, 0.0009276518831029534, -0.019552117213606834, 0.004713327158242464, -0.02144472859799862, -0.022871464490890503, -0.0071700806729495525, 0.014813313260674477, -0.011348381638526917, -0.005102768074721098, 0.01220005564391613, -0.0007675079978071153, -0.001178331789560616, 0.010402075946331024, -0.01203263271600008, 0.007315665949136019, 0.009484888054430485, 0.01476963795721531, 0.0022838707081973553, 0.02240559086203575, -0.01761583238840103, -0.021328259259462357, 0.009579518809914589, -0.0054412540048360825, 0.022522060200572014, -0.020818710327148438, 0.014063548296689987, -0.006751522421836853, -0.029422806575894356, -0.02310440130531788, -0.016058068722486496, 0.004047273658216, 0.00325747299939394, 0.01450030505657196, 0.015592195093631744, -0.03674575313925743, 0.00232754647731781, -0.006824315059930086, -0.007970799691975117, 0.005605037324130535, -0.008109106682240963, 0.0010454850271344185, 0.003412157529965043, 0.008181898854672909, 0.01748480461537838, 0.009317465126514435, 0.003676031017675996, -0.01761583238840103, 0.007686908822506666, 0.005197398364543915, -0.010358400642871857, -0.008480348624289036, -0.0012483947211876512, -0.02339557185769081, 0.0028261763509362936, 0.0007597737712785602, 0.03392139449715614, 0.006336604245007038, -0.0002736550522968173, -0.009630473330616951, 0.0043275258503854275, -0.015781456604599953, 0.00949216727167368, -0.008400277234613895, 0.029466483741998672, -0.014951619319617748, 0.012462109327316284, 0.016931580379605293, 0.028229007497429848, 0.020483864471316338, -0.01476963795721531, -0.017237309366464615, -0.0018389254109933972, -0.0013930702116340399, -0.005313866771757603, 0.009499446488916874, 0.015068087726831436, 0.0042219762690365314, 0.008691447786986828, -0.0005941703566350043, 0.007239233702421188, 0.0070645310916006565, -0.014158179052174091, -0.011122724041342735, 0.01056221965700388, -0.028753114864230156, 0.024647606536746025, 0.0010372959077358246, 0.0066605317406356335, -0.01245483011007309, -0.0083929980173707, -0.013714144006371498, -0.005899847950786352, -0.005947163328528404, 0.018722280859947205, -0.0009262870298698545, -0.013321063481271267, -0.0019763216841965914, 0.0131754782050848, -0.010605895891785622, 0.0018280065851286054, -0.023002492263913155, -0.024793192744255066, -0.01615997776389122, 0.004716966766864061, 0.00391988642513752, -0.02636551484465599, -0.013204595074057579, 0.0014030792517587543, 0.0013430252438411117, 0.008749681524932384, 0.004502227995544672, 0.014551259577274323, 0.01863493025302887, -0.004662372171878815, 0.022318240255117416, -0.007963520474731922, -0.00807998888194561, -0.007650512270629406, 0.0018598533933982253, -0.005415776744484901, 0.005215596407651901, -0.004462192300707102, -0.015781456604599953, -0.011392056941986084, -0.0037142473738640547, -0.0019381055608391762, -0.0024713119491934776, -0.007228314410895109, 0.01812538132071495, -0.026962414383888245, 0.0023002491798251867, 0.003241094760596752, 0.01039479672908783, -0.0024731317535042763, -0.00971782486885786, 0.012389317154884338, -0.0004049093695357442, -0.004596858751028776, -0.016116302460432053, 0.02227456495165825, -0.0073375036008656025, 0.007919845171272755, -0.002746104495599866, -0.033542875200510025, 0.0070900083519518375, -0.004582300316542387, 0.02308984287083149, -0.014493025839328766, 0.0054084970615804195, -0.014238251373171806, 0.017091725021600723, 0.022987933829426765, 0.011974398046731949, -0.019159037619829178, 0.031242623925209045, 0.013139081187546253, -0.012724163010716438, 0.0017661327729001641, 0.013080847449600697, -0.00988524779677391, 0.005626875441521406, 0.017877886071801186, 0.0011473948834463954, -0.0055249654687941074, -0.009958040900528431, -0.013874287717044353, 0.021517520770430565, 0.010744201950728893, -0.007199197541922331, 0.0004954452742822468, 0.015752339735627174, -0.0030609327368438244, -0.007497647777199745, -0.0037888598162680864, -0.011122724041342735, 0.01633468084037304, -0.0033357252832502127, -0.02522994764149189, -0.005561362020671368, -0.014798754826188087, 0.0010727823246270418, -0.004058192949742079, -0.009353861212730408, -0.009557681158185005, -0.0179943535476923, -0.017193634063005447, 0.03048558160662651, 0.025128038600087166, 0.002915347460657358, 0.00717372028157115, -0.005059092305600643, -0.02159031294286251, 0.011530363000929356, 0.00327567127533257, 0.015126322396099567, 0.011508525349199772, 0.021721340715885162, 0.01269504614174366, 0.006067271344363689, 0.010795156471431255, 0.0008216475252993405, -0.003272031666710973, 0.014660448767244816, 0.0007424855139106512, 0.01383789163082838, -0.025011569261550903, -0.016713201999664307, -0.002036375692114234, -0.004178300499916077, 0.00039490035851486027, -0.006030874792486429, 0.009419375099241734, -0.014398395083844662, -0.0068752700462937355, -0.0010827913647517562, -0.033397287130355835, 0.019028009846806526, -0.012585856951773167, 0.011748741380870342, 0.01220005564391613, -0.006860711611807346, 0.039308056235313416, -0.032232604920864105, 0.007759701460599899, 0.016043510288000107, -0.020149018615484238, -0.021386492997407913, 0.023846887052059174, 0.010343842208385468, 0.0012766019208356738, -0.02589964121580124, -0.0006387559114955366, -0.014070827513933182, -2.3316410079132766e-05, 0.004021796397864819, 0.008545862510800362, 0.023206310346722603, -0.0007611386245116591, -0.0006587738753296435, -0.017717741429805756, -0.01344481110572815, -0.009725104086101055, 0.027326377108693123, -0.004993578884750605, -0.007100927643477917, -0.011574038304388523, 0.03199966996908188, 0.03261112794280052, 0.005961721763014793, -0.015140880830585957, 0.0013393856352195144, 0.022740438580513, 0.0418703593313694, -0.007730584125965834, 0.004473111126571894, -0.008975339122116566, 0.009754220955073833, -0.018241848796606064, 0.019086245447397232, 0.010220094583928585, 0.015548519790172577, 0.008553141728043556, 0.002152843866497278, -0.007177359890192747, -0.0273554939776659, 0.001175602083094418, -0.008735123090445995, 0.002251113997772336, -0.012898865155875683, -0.00013750995276495814, 0.0005009047454223037, 0.001174692064523697, -0.03342640399932861, 0.004735164809972048, -0.03098057024180889, 0.012098145671188831, 0.0006915305857546628, 0.0014249170199036598, -0.027006089687347412, -0.03479490801692009, 0.02291513979434967, 0.011326543055474758, -0.005273830611258745, 0.006700567435473204, -0.011748741380870342, -0.02393423765897751, 0.0010664130095392466, 0.00655134255066514, 0.013364738784730434, -0.017848769202828407, -0.017848769202828407, 0.0015623131766915321, -0.0017770517151802778, -0.012760559096932411, 0.0106350127607584, -0.011362940073013306, -0.008436673320829868, 0.013211874291300774, -0.005102768074721098, 0.017688624560832977, 0.018416551873087883, -0.011246471665799618, -0.009710545651614666, -0.007133684121072292, 0.01978505402803421, -0.016203653067350388, -0.0035359051544219255, 0.004691489040851593, 0.012542181648314, 0.003075491404160857, 0.008545862510800362, 0.022128978744149208, 0.01728098653256893, -0.0021128079388290644, 0.012229172512888908, 0.007898007519543171, -0.019057126715779305, 0.022958816960453987, -0.009870689362287521, 0.0020527539309114218, -0.00981973484158516, -0.02240559086203575, 0.014529421925544739, 0.011166399344801903, -0.003537724958732724, -0.011195516213774681, 0.03310611844062805, -0.0023530239704996347, -0.001501349383033812, 0.000224747447646223, 0.020673125982284546, 0.024138057604432106, 0.01764494925737381, 0.007490368559956551, -0.0023421049118041992, 0.004615056794136763, -0.00298995990306139, -0.01665496826171875, -0.010220094583928585, 0.002493149833753705, -0.008676889352500439, 0.009091807529330254, -0.0038907695561647415, 0.007097287569195032, -0.018547579646110535, -0.0074685304425656796, 0.010678688064217567, 0.0007656881352886558, 0.01087522879242897, -0.008203736506402493, -0.028491061180830002, -0.0031573830638080835, 0.013706864789128304, 0.010387517511844635, 0.006795198190957308, -0.005743343848735094, 0.004225615877658129, 0.0030354554764926434, -0.002824356546625495, 0.013830612413585186, -0.002298429375514388, 0.024647606536746025, -0.008837033063173294, 0.0010345662012696266, 0.012294686399400234, 0.012651370838284492, -0.013735981658101082, 0.004666011780500412, -0.0131754782050848, 0.00864777248352766, -0.020323719829320908, -0.0027206270024180412, 0.008953501470386982, 0.02058577351272106, -0.007392098195850849, 0.026845945045351982, -0.019188154488801956, -0.012316524051129818, 0.015868807211518288, 0.041317135095596313, 0.01646570675075054, -0.0010727823246270418, -0.007191918324679136, 0.007599557284265757, -0.03499872609972954, 0.0036778508219867945, 0.004844353999942541, -0.030864102765917778, -0.013481207191944122, 0.014616773463785648, -0.01830008439719677, 0.01228740718215704, 0.017848769202828407, -0.0022529338020831347, -0.00264055491425097, -0.006525865290313959, -0.012483946979045868, 0.01581057347357273, -0.003534085350111127, -0.0069335042499005795, 0.0007934403838589787, -0.005306587554514408, -0.0014758718898519874, 0.01646570675075054, -0.017601273953914642, -0.007978079840540886, -0.011377498507499695, -0.010030833072960377, 0.0005295668379403651, 0.011159120127558708, -0.015301024541258812, -0.012170938774943352, 0.008116385899484158, 0.01582513190805912, 0.02339557185769081, -0.002045474713668227, 0.010642291978001595, -0.006736963987350464, -0.012301965616643429, -0.030252644792199135, -0.01161043532192707, 0.00342125678434968, -0.00539393862709403, -0.02090606279671192, -0.004443994257599115, 0.005816136486828327, -0.012927982956171036, -0.012804235331714153, 0.0053175063803792, 0.014201855286955833, 0.0194647666066885, -0.01681511290371418, 0.006078190170228481, 0.012323803268373013, 0.019828729331493378, -0.012447550892829895, 0.0011237371945753694, -0.008800636976957321, -0.0061182258650660515, -0.0113702192902565, 0.0026569333858788013, 0.005419416353106499, 0.03307700157165527, -0.0038179769180715084, 0.007155521772801876, 0.013335621915757656, 0.028432827442884445, 0.008931663818657398, 0.0003612337459344417, -0.00923739280551672, 0.0014285566285252571, -0.0024330958258360624, -0.0018853307701647282, -0.022128978744149208, -0.01860581338405609, -0.035202547907829285, -0.009040853008627892, -0.019231829792261124, 0.0216048713773489, 0.007013576105237007, 0.016887905076146126, -0.009863410145044327, -0.005008137319236994, -0.012258290313184261, -0.00857497937977314, -0.014398395083844662, 0.030834985896945, -0.005011776927858591, 0.01105721015483141, -0.02308984287083149, -0.025331858545541763, -0.007766980677843094, 0.005779739934951067, 0.0011683227494359016, -0.009557681158185005, -0.011217353865504265, 0.015883365646004677, 0.0029535635840147734, -0.002562302863225341, 0.003173761535435915, 0.014725962653756142, 0.004895308520644903, -0.0014813313027843833, -0.004065472166985273, -0.021342817693948746, -0.01993064023554325, -0.005965361371636391, 0.0057142265141010284, 0.01665496826171875, -0.012119983322918415, 0.0033994188997894526, -0.009841572493314743, -0.0024094381369650364, -0.008480348624289036, 0.020003432407975197, 0.004029075615108013, 0.017572157084941864, 0.016523942351341248, -0.00874240230768919, -0.0005796118639409542, 0.01763039082288742, 0.04090949520468712, -0.0020636729896068573, -0.0036268960684537888, -0.005914406385272741, 0.0019417451694607735, 0.01087522879242897, -0.01749936304986477, -0.01162499375641346, 0.011828812770545483, -0.020047107711434364, -0.0063657211139798164, -0.005816136486828327, -0.03319346904754639, 0.0012766019208356738, 0.005634154658764601, -0.009164600633084774, 0.030834985896945, -0.013910683803260326, -0.02207074500620365, 0.01062045432627201, 0.010496706701815128, 0.0018634930020198226, 0.007352062035351992, 0.007978079840540886, -0.007133684121072292, 0.010554940439760685, 0.01830008439719677, 0.0033648423850536346, 0.0015586735680699348, 0.006231054663658142, 0.003537724958732724, 0.03363022580742836, -0.007577719632536173, 0.0036086977925151587, -0.01714995875954628, 0.03779396787285805, -0.013539440929889679, -0.011253750883042812, -0.015242790803313255, 0.007978079840540886, -0.006864351220428944, 0.010540382005274296, 0.0088297538459301, -0.022128978744149208, 0.0051355245523154736, 0.010918904095888138, -0.043297093361616135, -0.03287317976355553, -0.018241848796606064, -0.012534902431070805, -0.005059092305600643, 0.016756879165768623, -0.0019253668142482638, 0.024516580626368523, -0.0016969797434285283, 0.0034103377256542444, -0.019421091303229332, 0.005397578235715628, -0.0036632923875004053, 0.009783337824046612, -0.0019563036039471626, 0.004247453995049, -0.008837033063173294, -0.010351121425628662, -0.0074685304425656796, 0.009077249094843864, 0.03890041634440422, -0.0006965351058170199, -0.006369360722601414, 0.031097039580345154, -0.013211874291300774, -0.018911542370915413, -0.01179241668432951, 0.002995419315993786, -0.01328466646373272, 0.001669682445935905, -0.045277055352926254, 0.01550484448671341, -0.007352062035351992, 0.019712261855602264, -0.03994863107800484, -0.002090970054268837], "befeab50-a804-46f1-8722-bc31dc6d52e4": [0.015794817358255386, 0.016226163133978844, 0.005785089917480946, -0.014500784687697887, -0.0421956330537796, -0.023153046146035194, 0.018154526129364967, 0.02737768366932869, -0.018014973029494286, -0.017558256164193153, -0.016556013375520706, 0.056379254907369614, 0.00018861406715586782, -0.02026050165295601, -0.05150759965181351, -0.025842605158686638, -0.03397471830248833, 0.038922492414712906, 0.015870938077569008, -0.044250864535570145, 0.056632984429597855, -0.024853050708770752, -0.019486619159579277, 0.04130757227540016, 0.005747030023485422, -0.018979154527187347, -0.04191653057932854, -0.0058516948483884335, -0.019080648198723793, 0.006768301595002413, 0.04808221757411957, 0.01626422256231308, 0.005204678047448397, -0.017177658155560493, -0.014094813726842403, -0.020920203998684883, -0.005410835146903992, 0.01703810505568981, 0.01474183052778244, -0.013904514722526073, 0.006717555224895477, 0.017393330112099648, 0.057647913694381714, 0.031056798994541168, 0.004662325605750084, -0.010079503990709782, -0.005226879380643368, -0.021732147783041, 0.01810378022491932, -0.01880154199898243, 0.009629130363464355, -0.005981732159852982, -0.00021587044466286898, -0.0031573777087032795, 0.010219057090580463, 0.01599780283868313, 0.012826153077185154, 0.0706389918923378, -0.011011969298124313, -0.02821500040590763, 0.01722840406000614, -0.0030701574869453907, -0.005505984649062157, 0.01200786791741848, -0.02478961832821369, 0.007738826330751181, -0.0454687774181366, 0.005033408757299185, -0.027022460475564003, -0.02040005475282669, 0.01375227514654398, 0.06576734036207199, -0.020501546561717987, -0.03874487802386284, -0.011075402610003948, -0.018408257514238358, 0.015667952597141266, 0.011576523073017597, 0.01499556191265583, 0.005639194045215845, 0.01283249631524086, -0.04186578094959259, 0.0005538494442589581, 0.0032303256448358297, 0.086928591132164, -0.015515713021159172, -0.017190344631671906, -0.024612005800008774, -0.06145389378070831, 0.016530640423297882, -0.011030999012291431, 0.01949930563569069, -0.0402926430106163, -0.007326512131839991, 0.015097054652869701, -0.012566078454256058, -0.0037457188591361046, 0.014399291947484016, 0.011716076172888279, 0.005049267318099737, 0.017367957159876823, 0.022709015756845474, -0.01588362455368042, -0.008969427086412907, 0.013498542830348015, 0.006397218443453312, 0.02116125077009201, -0.0065526291728019714, 0.012185480445623398, -0.004732102155685425, 0.009159726090729237, -0.0554150715470314, 0.005429865326732397, -0.009679876267910004, -0.045138925313949585, -0.006964943837374449, -0.010301520116627216, -0.03270605579018593, 0.001372531638480723, -0.041332945227622986, -0.00934368185698986, -0.011735105887055397, 0.05302999168634415, 0.030397094786167145, -0.013041825965046883, 0.012731003575026989, -0.0035459049977362156, 0.04557026922702789, 0.007332855369895697, 0.024218721315264702, 0.0003754440986085683, -5.639590381179005e-05, 0.027732908725738525, 0.02057766728103161, 0.05318222939968109, 0.03937920928001404, 0.03280755132436752, 0.04371802508831024, 0.010117564350366592, 0.024370960891246796, -0.035420987755060196, -0.004576691426336765, -0.011360851116478443, -0.0160231776535511, -0.016276909038424492, 0.000684680009726435, -0.02978813834488392, 0.008176513947546482, -0.0015414219815284014, -0.03798368200659752, -0.0334165059030056, -0.015908997505903244, -0.010567938908934593, 0.010720177553594112, 0.060083743184804916, -0.03473591431975365, -0.007453377824276686, 0.03856726735830307, -0.009070919826626778, 0.0011608239728957415, 0.02783440239727497, -0.043616533279418945, 0.02046348713338375, 0.0030955306719988585, 0.03613143786787987, -0.007840319536626339, 0.008550768718123436, 0.010694804601371288, -0.047422513365745544, 0.025817232206463814, 0.025944098830223083, -0.014373918995261192, -0.009908235631883144, -0.029889632016420364, -0.0043166158720850945, -0.014310485683381557, 0.06246882304549217, -0.02986425906419754, 0.04277921840548515, 0.0011600310681387782, 0.0003334197390358895, -0.024535885080695152, 0.01696198619902134, -0.007015690207481384, -0.04262697696685791, 0.008316067047417164, -0.0010783610632643104, 0.02217617817223072, 0.013003765605390072, 0.019841844215989113, 0.008988456800580025, -0.017253777012228966, 0.028291119262576103, 0.010117564350366592, -0.0011021484388038516, -0.054806116968393326, 0.0390239842236042, 0.014196306467056274, 0.00873472448438406, -0.008823530748486519, -0.009457861073315144, -0.03836428001523018, -0.03273142874240875, 0.03717174008488655, -0.018192585557699203, 0.03075231984257698, -0.026768727228045464, -0.015731384977698326, -0.01632765494287014, 0.001953736413270235, 0.022696329280734062, -0.0002682026824913919, -0.020552292466163635, -0.007745169568806887, 0.012179137207567692, 0.02681947499513626, -0.01588362455368042, 0.03232545778155327, 0.010333236306905746, 0.003615681314840913, 0.002385081024840474, 0.006717555224895477, -0.00839218683540821, -0.054806116968393326, -0.024612005800008774, -0.01242018211632967, 0.004462511744350195, -0.0019299491541460156, -0.010041444562375546, -0.029204554855823517, 0.000476143992273137, -0.003878928255289793, -0.00011219712905585766, 0.011322791688144207, 0.00619423296302557, 0.023863496258854866, 0.03737472742795944, 0.021135877817869186, -0.02281050756573677, -0.0014097985113039613, 0.017444076016545296, -0.017710493877530098, -0.00956569705158472, 0.00471624406054616, 0.03471054136753082, 0.0033746357075870037, -0.06475240737199783, 0.016340341418981552, 0.006514569744467735, -0.021389609202742577, -0.038161296397447586, 0.008316067047417164, -0.019296320155262947, 0.014208992943167686, -0.01849706470966339, 0.0023501927498728037, -0.0004420487384777516, -0.03430457040667534, -0.005144416820257902, -0.0009134352440014482, -0.01824333146214485, -0.005230050999671221, 0.019791096448898315, -0.01188100129365921, 0.05115237459540367, -0.01943587325513363, 0.016657507047057152, -0.01203958410769701, -0.0022280842531472445, 0.0618598647415638, -0.02171946130692959, -0.012965706177055836, 0.045900121331214905, -0.027986641973257065, 0.00486213993281126, -0.009261218830943108, -0.04924938455224037, 0.0034761286806315184, -0.023153046146035194, -0.03597920015454292, 0.022290358319878578, -0.030092617496848106, 0.05947478488087654, 0.008436589501798153, -0.008956740610301495, 0.01105637289583683, 0.010466445237398148, -0.012369436211884022, -0.016682879999279976, -0.0334165059030056, 0.0025071895215660334, -0.0005859623779542744, 0.016758998855948448, 0.009388084523379803, 0.0065526291728019714, -0.018154526129364967, -0.0036378828808665276, -0.03290904313325882, -0.009438831359148026, -0.0057787466794252396, -0.005988075397908688, -0.0224172230809927, 0.002526219468563795, -0.006140314973890781, 0.05026431381702423, -0.012673914432525635, 0.024916483089327812, 0.004364190623164177, -0.008690321817994118, 0.0353194959461689, 0.02306424081325531, -0.021123189479112625, 0.025385888293385506, -0.00987651851028204, -0.0004614751087501645, 0.007345541846007109, 0.000638691068161279, -0.03486277908086777, -0.010916819795966148, 0.008931366726756096, 0.033391132950782776, -0.003063814016059041, -0.017520194873213768, 0.020996324717998505, 0.019994083791971207, -0.012927645817399025, 0.03549711033701897, -0.011995181441307068, 0.008252633735537529, -0.05566880479454994, -0.041840407997369766, -0.023038867861032486, -0.03125978261232376, -0.004005794413387775, -0.001720620202831924, -0.01816721260547638, -0.020945578813552856, -0.062367331236600876, 0.013777648098766804, 0.007161586079746485, 0.006863451097160578, 0.002821182832121849, -0.02859559841454029, -0.024345586076378822, 0.002634055446833372, -0.03356874734163284, 0.026388129219412804, -0.016479894518852234, -0.01943587325513363, 0.037070248275995255, 0.0006557386950589716, -0.013194064609706402, 0.014120186679065228, 0.0009023344609886408, 0.007745169568806887, -0.005991247016936541, -0.05769865959882736, -0.030270230025053024, 0.0032921729143708944, -0.007745169568806887, 0.0012979978928342462, -0.025309769436717033, -0.04255085811018944, -0.003523703431710601, 0.006232292857021093, 0.009362711571156979, 0.028950823470950127, 0.04178966209292412, 0.014386605471372604, 0.006482853088527918, -0.03864338621497154, 0.0008357298211194575, -0.003628367790952325, 0.005547216162085533, 0.010142937302589417, -0.010428385809063911, 0.009698905982077122, 0.002039371058344841, 0.004047025460749865, -0.0018363854615017772, -0.020603040233254433, -0.00034491694532334805, -0.006482853088527918, -0.04607773572206497, 0.034913524985313416, -0.0057565453462302685, 0.04625534638762474, -0.007041063625365496, -0.015452279709279537, 0.009939951822161674, -0.03509113937616348, 0.022150805220007896, 0.030092617496848106, 0.00664143543690443, 0.007916439324617386, -0.01962617225944996, -0.03932846337556839, -0.006501882802695036, -0.009635473601520061, -0.003999450709670782, -0.017570942640304565, 0.005785089917480946, 0.023241853341460228, -0.005461581517010927, 0.05338521674275398, -0.03861801326274872, -0.027910521253943443, -0.018217958509922028, -0.001546972431242466, 0.02796126902103424, 0.0008809258579276502, 0.021313488483428955, -0.006844420917332172, 0.00527445413172245, 0.03062545508146286, -0.007003003731369972, 0.006838077679276466, 0.016720939427614212, -0.03887174651026726, -0.01975303702056408, 0.01366346888244152, -0.010878760367631912, -0.004183406475931406, 0.009736966341733932, -0.006216434296220541, 0.002348606940358877, 0.014678397215902805, 0.016809746623039246, 0.004652810748666525, 0.00994629506021738, 3.917483627446927e-05, -0.014475411735475063, 0.01957542449235916, -0.0036664276849478483, 0.006546285934746265, -0.007307481952011585, -0.0036664276849478483, -0.0029147465247660875, -0.003878928255289793, -0.016226163133978844, 0.008360469713807106, 0.03734935447573662, 0.011221298016607761, 0.002624540589749813, -0.018078405410051346, 0.003195437602698803, 0.011563836596906185, 0.012350405566394329, 0.014538844116032124, 0.018319452181458473, 0.014348545111715794, 0.03742547333240509, 0.005382290575653315, 0.013003765605390072, -0.01076458115130663, 0.009058233350515366, -0.018459003418684006, 0.014779889956116676, -0.00246912962757051, 0.009381741285324097, -0.03633442521095276, -0.02986425906419754, 0.024675438180565834, -0.035420987755060196, 0.01913139410316944, -0.01765974797308445, -0.01894109509885311, -0.009990697726607323, 0.00968621950596571, 0.009172412566840649, 0.005280797369778156, 0.0018570012180134654, -0.03864338621497154, -0.00016770100046414882, 0.002367636887356639, -0.017380643635988235, -0.00959741324186325, 0.009749652817845345, -0.00915338285267353, 0.0012750034220516682, 0.01417093351483345, -0.005518671125173569, -0.04067324101924896, -0.017621688544750214, -0.0007084673852659762, 0.019423186779022217, -0.033137399703264236, -0.043489668518304825, -0.012933989986777306, 0.02821500040590763, 0.02395230159163475, 0.041206080466508865, 0.012794436886906624, -0.01716497167944908, -0.007948155514895916, -0.009679876267910004, 0.02497991733253002, -0.010022414848208427, -0.019981395453214645, -0.036943379789590836, 0.03295978903770447, -0.00035383724025450647, -0.0415613055229187, 0.05998224765062332, -0.013041825965046883, 0.013777648098766804, 0.008055991493165493, 0.006926883943378925, -0.01124667190015316, 0.02382543683052063, 0.00680001825094223, -0.006850764621049166, -0.0014296213630586863, -0.0022344274912029505, -0.025322455912828445, -0.014373918995261192, -0.02910306304693222, 0.007586587220430374, 0.04016577824950218, -0.028950823470950127, 0.008601515553891659, -0.029179181903600693, -0.031285159289836884, 0.006441621575504541, 0.035294122993946075, 0.0040406822226941586, -0.013993320986628532, -0.032934416085481644, -0.028874702751636505, -0.02669260837137699, -0.0007382016046904027, 0.009318307973444462, 0.0028592427261173725, 0.005429865326732397, 0.025144843384623528, -0.032680682837963104, -0.026514995843172073, -0.01016831025481224, 0.046407584100961685, 0.012344062328338623, -0.02097095176577568, 0.030955305323004723, 0.023914242163300514, -0.01830676570534706, 0.0006264009280130267, -0.001261523924767971, -0.0037742636632174253, 0.04633146524429321, 0.010853387415409088, 0.015655266121029854, -0.00858248583972454, -0.0009308793232776225, -0.04879266768693924, -0.005921470932662487, 0.01562989130616188, -0.015287353657186031, 0.018141839653253555, -0.01489406917244196, -0.02973739244043827, -0.0037552339490503073, -0.022835882380604744, -0.021617967635393143, 0.034659791737794876, 0.029889632016420364, 0.024916483089327812, 0.005439380183815956, -0.0479046031832695, 0.021262742578983307, -0.028620971366763115, 0.023685883730649948, 0.03460904583334923, -0.014158246107399464, 0.07530765980482101, 0.04676280915737152, -0.0056740823201835155, 0.0032890012953430414, -0.010599655099213123, 0.004294414538890123, 0.014031380414962769, -0.021554535254836082, 0.026007531210780144, -0.03800905495882034, 0.01664482057094574, -0.009673533029854298, 0.011506746523082256, 0.014208992943167686, -0.018966468051075935, -0.04620460048317909, -0.0365881584584713, -0.014691083692014217, -0.010301520116627216, 0.018979154527187347, 0.004284899216145277, -0.0127690639346838, -0.019854530692100525, 0.010992939583957195, 0.002099632518365979, 0.009369054809212685, -0.006422591861337423, -0.02040005475282669, 0.04118070751428604, 0.01226159930229187, 0.016847806051373482, -0.03354337438941002, -0.03100605309009552, -0.029077688232064247, 0.01101831253618002, 0.006508226040750742, -0.02555081434547901, 0.01442466489970684, 0.004830423276871443, 0.019486619159579277, 0.016936611384153366, -0.029610525816679, 0.006895167753100395, -0.005807291716337204, -0.0042373244650661945, -0.010948536917567253, 0.011728762648999691, -0.01556645892560482, -0.0060546803288161755, -0.022594835609197617, 0.02574111334979534, -0.010460101999342442, 0.037831444293260574, -0.01621347665786743, 0.023685883730649948, -0.03328964114189148, -0.007662707008421421, 0.0036759425420314074, 0.001363016664981842, -0.03473591431975365, -0.003590308129787445, -0.014196306467056274, 0.03354337438941002, -0.027555296197533607, -0.011919061653316021, 0.011557493358850479, 0.027047833427786827, 0.0005784297245554626, 0.009717936627566814, 0.021123189479112625, -0.015414220280945301, -0.005271282512694597, -0.004205608274787664, -0.017317209392786026, 0.0056772539392113686, -0.00014966224262025207, 0.016353027895092964, -0.00045077077811583877, -0.02344483882188797, -0.00978771224617958, 0.005626507569104433, 0.0105489082634449, -0.012762720696628094, 0.003419038839638233, 0.0129022728651762, 0.001359845045953989, 0.00968621950596571, -0.04315981641411781, 0.038212042301893234, -0.01759631559252739, 0.008741067722439766, 0.04054637625813484, 0.0195119921118021, -0.0043356460519135, 0.005991247016936541, 0.03537024185061455, 0.007542184088379145, 0.019296320155262947, -0.012864213436841965, -0.02813887968659401, -0.004763818811625242, -0.000995105248875916, 0.04191653057932854, -0.009172412566840649, 0.026210516691207886, -0.018661988899111748, -0.0002267729869345203, 0.008969427086412907, 0.016822433099150658, -0.0063559869304299355, -0.036562781780958176, 0.004808221478015184, 0.006432106718420982, -0.016923924908041954, -0.007491437718272209, 0.0302448570728302, 0.020691845566034317, -0.03410158306360245, 0.00436736224219203, -0.007028376683592796, -0.007497780956327915, -0.00668583856895566, -0.01632765494287014, 0.0205142330378294, 0.00873472448438406, -0.01981647126376629, 0.019651545211672783, -0.02064109966158867, -0.029382167384028435, -0.02758067101240158, 0.03252844512462616, -0.007383601740002632, 0.008595172315835953, 0.033644866198301315, 0.002754578134045005, -0.006533599458634853, 0.022061998024582863, -0.033695612102746964, -0.0031256612855941057, 0.027098579332232475, -0.002634055446833372, 0.027149325236678123, 0.0013669811887666583, 0.004196093417704105, -0.022074684500694275, 0.027047833427786827, 0.00478284852579236, 0.01773586869239807, 3.758901220862754e-05, 0.030447842553257942, 0.0037330323830246925, -0.03448218107223511, -0.0529792457818985, 0.008633231744170189, 0.0005562281585298479, -0.015794817358255386, -0.01994333602488041, 0.005705798510462046, -0.006143486592918634, -0.006844420917332172, -0.018903035670518875, 0.0059753889217972755, -0.009147039614617825, -0.024155287072062492, -0.004935087636113167, -0.009990697726607323, 0.008874277584254742, -0.01797691360116005, -0.006283039227128029, -0.009717936627566814, 0.04288071021437645, -0.025614246726036072, -0.00886159110814333, 0.021250056102871895, -0.020184382796287537, -0.024472452700138092, 0.024561259895563126, 0.012616824358701706, 0.03473591431975365, 0.0042214663699269295, 0.0060483370907604694, 0.005458409897983074, -0.003204952459782362, -0.016467208042740822, 0.0371209941804409, 0.01842094399034977, 0.01830676570534706, 0.03788219019770622, -0.0020980467088520527, -0.00921681523323059, 0.0148306367918849, -0.0013796677812933922, 0.0042373244650661945, -0.032883670181035995, -0.02922992780804634, 0.02071721851825714, 0.035547856241464615, -0.0013305072207003832, 0.025385888293385506, -0.0030368550214916468, 0.010187340900301933, 0.009514950215816498, -0.04313444346189499, 0.028950823470950127, -0.010466445237398148, -0.02758067101240158, -0.012242569588124752, 0.010238086804747581, -0.0033587776124477386, -0.05272551253437996, 0.005512327887117863, -0.015934370458126068, 0.02623588964343071, -0.049401622265577316, 0.00741531839594245, 0.00176660914439708, -0.013929887674748898, 0.013815708458423615, -0.016822433099150658, -0.01436123251914978, -0.019283633679151535, -0.012470928952097893, -0.0033016877714544535, 0.015908997505903244, 0.0007282901788130403, -0.04163742437958717, -0.011113462038338184, -0.00020615725952666253, 0.023990362882614136, 0.00744703458622098, 0.013041825965046883, 0.03983592614531517, 0.03397471830248833, 0.0012226711260154843, -0.01063771452754736, 0.017177658155560493, -0.00467184092849493, 0.001652429811656475, -0.01385376788675785, 0.03303590789437294, 0.00816382747143507, 0.022087372839450836, -0.03684188798069954, 0.005436208564788103, -0.016124669462442398, 0.03714636713266373, 0.030067244544625282, -0.028189627453684807, -0.008366812951862812, 0.010720177553594112, -0.03450755402445793, 0.00775151327252388, -0.02796126902103424, 0.00981308612972498, 0.038389652967453, -0.0013503300724551082, 0.023838123306632042, -0.02001945674419403, 0.014564217999577522, -0.02140229567885399, -0.013016452081501484, 0.03318814933300018, 0.006333785597234964, -0.018966468051075935, -0.03181799501180649, 0.010669431649148464, -0.012914959341287613, 0.012369436211884022, -0.014538844116032124, -0.019283633679151535, -0.01873810961842537, 0.004548146389424801, 0.004608407616615295, 0.01875079609453678, 0.02445976622402668, -0.00527445413172245, 0.008411216549575329, 0.024662751704454422, 0.026920966804027557, -0.024244094267487526, 0.0031827508937567472, 0.025500068441033363, -0.007935469038784504, 0.047371767461299896, -0.029635898768901825, -0.027656789869070053, -0.003504673484712839, -0.01417093351483345, 0.01918214000761509, -0.0038979582022875547, 0.02720007300376892, -0.044250864535570145, 0.012274286709725857, 0.020311247557401657, -0.01038398314267397, 0.0007144142291508615, 0.015985116362571716, -0.00740263145416975, 0.01029517687857151, 0.020247815176844597, 0.030194109305739403, 0.0145134711638093, -0.006191061343997717, -0.015477652661502361, -0.02555081434547901, 0.018344825133681297, -0.03138665109872818, -0.018509751185774803, 0.0011679602321237326, 0.05399417132139206, 0.023457525297999382, 0.03432994335889816, -0.03963294252753258, -0.0230008065700531, 0.01637840084731579, -0.03445680812001228, -0.015401533804833889, -0.04846281558275223, 0.0132194384932518, -0.021516475826501846, -0.0011980908457189798, -0.0018046689219772816, -0.0061625163070857525, 0.025068722665309906, 0.014069439843297005, 0.020564980804920197, 0.01207130029797554, 0.025525441393256187, 0.007136213127523661, -0.033315014094114304, -0.025119470432400703, -0.04447922110557556, 0.029204554855823517, -0.0372224859893322, 0.034786660224199295, -0.01798960007727146, 0.008563455194234848, 0.03686726093292236, 0.03207172825932503, -0.005245909560471773, -0.006939570419490337, -0.008297037333250046, 0.03600457310676575, 0.0003467010101303458, -0.0011972979409620166, 0.009280248545110226, -0.008937709964811802, -0.0005800155340693891, 0.024421706795692444, -0.007929125800728798, 0.018649302423000336, 0.009476890787482262, -0.014538844116032124, -0.021643340587615967, -0.01943587325513363, 0.025056036189198494, -0.004754303488880396, 0.026083651930093765, -0.05830761790275574, 0.0017792957369238138, -0.004053369164466858, -0.013333617709577084, 0.05125386640429497, -0.010923163034021854, -0.001451822929084301, -0.008442932739853859, -0.00778322946280241, -0.021173937246203423, -0.01582019031047821, 0.0062576658092439175, 0.015782130882143974, -0.013676155358552933, -0.010422042571008205, -0.02312767319381237, -0.028037387877702713, -0.001182232634164393, -0.007491437718272209, 0.018953781574964523, -0.004576691426336765, 0.005379118956625462, -0.016987359151244164, 0.009635473601520061, 0.01038398314267397, 0.027352310717105865, 0.013156005181372166, 0.02851947955787182, 0.022467970848083496, -0.006140314973890781, -0.030422469601035118, -0.005528186447918415, -0.007776886224746704, -0.01413287315517664, -0.0031050455290824175, 0.0022487000096589327, -0.04194190353155136, 0.010536221787333488, 0.021770207211375237, -0.000453149521490559, 0.005033408757299185, -0.01773586869239807, -0.008823530748486519, 0.007193302735686302, 0.02013363502919674, 0.009337338618934155, -0.002702245954424143, 0.004361019004136324, -0.014031380414962769, -0.018027659505605698, 0.04321056231856346, 0.0020092404447495937, 0.023711256682872772, 0.007199645973742008, 0.004954117815941572, 0.027225445955991745, 0.03113291785120964, -0.013993320986628532, 0.005696283653378487, 0.046026986092329025, 0.008398530073463917, 0.00531885726377368, -0.018763482570648193, -0.008398530073463917, 0.017304522916674614, -0.015236607752740383, 0.010992939583957195, -0.019347066059708595, 0.014107500202953815, -0.012883243151009083, 0.008208231069147587, -0.022645583376288414, 0.03240157663822174, 0.015020935796201229, -0.016911238431930542, 0.011341821402311325, -0.004510086495429277, -0.007846662774682045, 0.01470377016812563, -0.02317841909825802, -0.007732483092695475, -0.016873179003596306, -0.021998565644025803, 0.0016873178537935019, 0.015579145401716232, 0.044504594057798386, -0.009426143951714039, -0.051761332899332047, -0.010821670293807983, 0.011373537592589855, -0.014107500202953815, -0.0191948264837265, -0.022379163652658463, 0.009540324099361897, -0.018598556518554688, 0.0083541264757514, 0.020603040233254433, 0.015249294228851795, 0.006041993852704763, 0.015236607752740383, -0.019600797444581985, -0.01464033778756857, 0.015604519285261631, 0.0012924474431201816, -0.00927390530705452, -0.03811055049300194, 0.02197319269180298, -0.02783440239727497, 0.025500068441033363, 0.0040375106036663055, 0.0214149821549654, -0.009159726090729237, -0.03189411386847496, 0.006660465616732836, -0.009749652817845345, -0.005036580376327038, 0.0003346090961713344, -0.018014973029494286, -0.03260456398129463, 0.020539605990052223, 0.0011061129625886679, 0.000653359922580421, 0.0005288726533763111, 0.0011314862640574574, -0.004706728737801313, -0.013194064609706402, -0.006882480811327696, -0.006010277196764946, -0.012908616103231907, 0.01824333146214485, 0.004713071975857019, -0.010777267627418041, 0.03544636443257332, -0.030067244544625282, 0.013828394934535027, -0.016479894518852234, 0.0010030344128608704, 0.009705249220132828, 0.010428385809063911, -0.007618303876370192, 0.0013979048235341907, 0.012223539873957634, 0.0044815419241786, 0.03887174651026726, 0.032553818076848984, 0.02084408514201641, -0.016276909038424492, 0.004690870642662048, 0.0060483370907604694, -0.03836428001523018, -0.024624692276120186, 0.011138835921883583, -0.0042246379889547825, 0.017634375020861626, -0.005613821092993021, 0.009235844947397709, 0.016720939427614212, 0.020108262076973915, 0.011303761042654514, 0.027022460475564003, -0.021516475826501846, -0.0020203411113470793, 0.007878378964960575, 0.0045196013525128365, -0.023153046146035194, -0.027935894206166267, -0.021326176822185516, 0.01082801353186369, 0.005645537283271551, -0.004541803151369095, 0.0023438495118170977, 0.007872035726904869, 0.012978392653167248, 0.013841081410646439, 0.03359412029385567, -0.0026689437218010426, -0.006825391203165054, 0.012591451406478882, 0.006952257361263037, 0.013739588670432568, 0.022785134613513947, 0.018268704414367676, 0.001904575969092548, 0.031868740916252136, -0.008075021207332611, 0.006838077679276466, -0.02040005475282669, 0.012375779449939728, -0.006213262677192688, 0.0031288329046219587, 0.0006176788592711091, -0.016809746623039246, -0.015985116362571716, 0.020691845566034317, -0.0076119606383144855, -0.0032731429673731327, 0.007491437718272209, 0.0060578519478440285, -0.00033956480911001563, 0.019144080579280853, 0.003520531812682748, -0.002354950178414583, 0.027732908725738525, 0.008519052527844906, -0.01127838809043169, 0.015667952597141266, 0.015173174440860748, -0.0040153092704713345, -0.008455619215965271, -0.006869794335216284, -0.004269041121006012, 0.00683173444122076, 0.004183406475931406, -0.000876961275935173, 0.03146276995539665, -0.015934370458126068, -0.006229120772331953, -0.02681947499513626, -0.009667189791798592, -0.012141076847910881, -0.013828394934535027, 0.0005712934653274715, 0.033771730959415436, 0.009832115843892097, 0.006029306910932064, -0.014500784687697887, -0.0008658604929223657, -0.008373156189918518, -0.002702245954424143, -0.034203074872493744, -0.018446316942572594, -0.02254408970475197, -0.003314374480396509, -0.006698525045067072, -0.004072398878633976, -0.021110503003001213, 0.0038376967422664165, 0.00014797730545978993, 0.022848568856716156, 0.00467184092849493, 0.013143318705260754, 0.0015231850557029247, -0.005106356926262379, 0.007358228322118521, -0.02517021633684635, 0.0021535505075007677, -0.012382122687995434, -0.005902441218495369, -0.00543303694576025, 0.005074640270322561, -0.003400009125471115, 0.011430627666413784, -0.003346090903505683, 0.00775151327252388, -0.008157484233379364, -7.963815733091906e-05, -0.0028877875301986933, -0.0006624784437008202, 0.004500571638345718, 0.03651203587651253, -0.009096292778849602, 0.007776886224746704, -0.02008288912475109, 0.005011207424104214, 0.03171650320291519, 0.008157484233379364, 0.007389944978058338, -0.021427668631076813, -0.013320931233465672, 0.016670193523168564, -0.020285874605178833, 0.018332138657569885, -0.006321098655462265, -0.033771730959415436, -0.015135115012526512, -0.01518586091697216, -0.017558256164193153, -0.02648962289094925, 0.009172412566840649, -0.008335096761584282, -0.016175415366888046, 0.006825391203165054, 0.007060093339532614, 0.006869794335216284, 0.004697213880717754, -0.006473338231444359, -0.009172412566840649, -0.02249334380030632, 0.0029876944608986378, -0.002719690091907978, 0.04341354966163635, -0.01089779008179903, 0.014221679419279099, 0.00300196697935462, 0.0037552339490503073, -0.00741531839594245, -0.008988456800580025, 0.04054637625813484, -0.0039328462444245815, -0.002483402146026492, 0.024041108787059784, 0.006095911841839552, 0.024764245375990868, 0.007041063625365496, -0.010498162358999252, -0.021681400015950203, -0.014094813726842403, -0.03321352228522301, -0.025512754917144775, 0.015287353657186031, -0.01754556968808174, -0.018268704414367676, 0.02732693776488304, 0.024612005800008774, 0.020932890474796295, 0.00543303694576025, -0.02287394180893898, -0.022315731272101402, -0.008271663449704647, 0.0042246379889547825, 0.012312346138060093, -0.00861420203000307, -0.0027878805994987488, -0.007332855369895697, 0.02019706927239895, 0.004281727597117424, -0.006394046824425459, 0.025906039401888847, 0.03011799044907093, 0.004399078898131847, -0.03235083073377609, -0.009635473601520061, -0.011830255389213562, -0.030726946890354156, -0.004979490768164396, -0.015439593233168125, -0.002864000154659152, 0.0014867110876366496, 0.0004559247172437608, 0.007948155514895916, -0.007136213127523661, 0.004824080038815737, -0.0034602703526616096, 0.011620926670730114, -0.02496723085641861, -0.011741449125111103, 0.00725673558190465, -0.013929887674748898, -0.02991500496864319, -0.006397218443453312, 0.02027318812906742, 0.023216480389237404, -0.012001524679362774, -0.02040005475282669, 0.003720345674082637, 0.018966468051075935, 0.009546667337417603, -0.016568699851632118, 0.013397050090134144, -0.007523154374212027, 0.006723898462951183, -0.00024045072495937347, 0.00899480003863573, 0.017431389540433884, -0.02260752208530903, 0.0006196611793711782, -0.017583629116415977, 0.0066097192466259, 0.01829407922923565, 0.030067244544625282, -0.009648160077631474, 0.045012060552835464, 0.0014391363365575671, -0.01837019808590412, 0.010466445237398148, 0.003431725548580289, -0.014982875436544418, -0.004357847385108471, -0.015236607752740383, -0.00254207756370306, -0.018091091886162758, -0.022823194041848183, 0.030194109305739403, -0.0035681065637618303, 0.01797691360116005, 0.018636615946888924, 0.01508436817675829, -0.01000338513404131, -0.003818666795268655, -0.02033662050962448, 0.01613735593855381, 0.01963885873556137, 0.004757475107908249, 0.0031304187141358852, -0.016416462138295174, 0.008683978579938412, -0.0009507021750323474, 0.0007837940356694162, 0.021072443574666977, 0.011475030332803726, 0.035040389746427536, 0.030777692794799805, -0.0024738870561122894, 0.014564217999577522, -0.0022074684966355562, -0.012813466601073742, 0.004560832865536213, 0.010491819120943546, 0.01455153152346611, -0.023597078397870064, -0.024091854691505432, -0.023394091054797173, -0.00020536435476969928, 0.03037172183394432, 0.010117564350366592, 0.018522437661886215, -0.008595172315835953, -0.020235128700733185, 0.01759631559252739, -0.03374635800719261, -0.01626422256231308, -0.0064511364325881, 0.018217958509922028, -0.023926928639411926, -0.005312514025717974, -0.00649553956463933, -0.01417093351483345, 0.027225445955991745, 0.0077134533785283566, 0.02851947955787182, -0.014919442124664783, -0.040571749210357666, -0.05323297530412674, -0.021567221730947495, 0.009572040289640427, 0.032249338924884796, 0.010352266021072865, -0.013828394934535027, -0.0034761286806315184, 0.0015192204155027866, -0.0004420487384777516, 0.02707320638000965, 0.006476509850472212, -0.0002824750845320523, 0.009426143951714039, 0.02279782108962536, 0.005607477389276028, 0.008144797757267952, -0.011773165315389633, -0.011126148514449596, 0.01746944896876812, 0.04351504147052765, -0.014856009744107723, 0.003701315727084875, 0.008297037333250046, 0.002600753214210272, -0.023114986717700958, -0.0059722173027694225, 0.022442596033215523, 0.004183406475931406, -0.025842605158686638, -0.02407916821539402, 0.014221679419279099, -0.026667235419154167, -0.0077071101404726505, -0.03113291785120964, -0.019994083791971207, -0.024916483089327812, -0.010079503990709782, 0.015097054652869701, -0.0029797654133290052, -0.02567768096923828, 0.009553010575473309, 0.017203031107783318, -0.022442596033215523, -0.0014534087385982275, 0.012350405566394329, 0.0009649745770730078, -0.023406779393553734, -0.019727664068341255, 0.00048288374091498554, 0.0033714640885591507, 0.04331205412745476, -0.04333742707967758, 0.0077959164045751095, -0.019144080579280853, -0.010555251501500607, -0.00046187156112864614, -0.01842094399034977, 0.001090254751034081, -0.013346304185688496, 0.004199265036731958, -0.003882099874317646, 0.009267562068998814, -0.007275765761733055, 0.0008028239826671779, -0.021503787487745285, 0.017342584207654, -0.00410094391554594, 0.015972429886460304, 0.026083651930093765, 0.013257497921586037, 0.003539561526849866, -0.005753373261541128, 0.011030999012291431, -0.03798368200659752, 0.0020013111643493176, -0.010276146233081818, 0.029458286240696907, 0.009191442281007767, 0.0041294884867966175, -0.014817949384450912, 0.020869458094239235, -0.013194064609706402, -0.022531403228640556, -0.013397050090134144, -0.03400009125471115, -0.0030812581535428762, -0.005020722281187773, 0.02725081890821457, -0.007072779815644026, -0.021884385496377945, -0.002588066505268216, 0.0041199736297130585, 0.010777267627418041, 0.00668583856895566, 0.006533599458634853, -0.012914959341287613, -0.001999725354835391, 0.006229120772331953, -0.011392567306756973, -0.022518716752529144, 0.028062760829925537, -0.011684359051287174, -0.0019156767521053553, 0.006825391203165054, 0.02097095176577568, -0.0077134533785283566, 0.025144843384623528, 0.018154526129364967, 0.0005007243016734719, 0.04351504147052765, 0.0008396944031119347, 0.0025468352250754833, -0.0004357054422143847, 0.003254113020375371, -0.023850809782743454, 0.007421661633998156, -0.03372098505496979, 0.026388129219412804, -0.02973739244043827, -0.019220199435949326, -0.03138665109872818, -0.016048550605773926, 0.00918509904295206, 0.0214149821549654, 0.025703053921461105, 0.015782130882143974, -0.021250056102871895, -0.005591619294136763, -0.02846873179078102, -0.0063559869304299355, 0.030600080266594887, 0.008411216549575329, -0.00800524465739727, -0.024561259895563126, 0.03273142874240875, 0.02579185925424099, 0.007047406863421202, 0.005125386640429497, 0.008785471320152283, -0.020856771618127823, 0.011563836596906185, 0.02116125077009201, -0.030219482257962227, -0.00683173444122076, 0.004871654789894819, 0.004408593755215406, 0.008722038008272648, 0.007358228322118521, -0.01696198619902134, 0.0160231776535511, -0.00956569705158472, -0.02745380438864231, -0.007529497612267733, 0.01887766271829605, -0.03887174651026726, -0.007383601740002632, -0.031285159289836884, 0.010586968623101711, 0.006099083460867405, 0.008214574307203293, 0.004573519807308912, 0.009445174597203732, -0.018014973029494286, -0.011405253782868385, 8.578322740504518e-05, -0.01835751160979271, 0.013156005181372166, -0.01425973977893591, 0.02591872587800026, 0.027986641973257065, 0.013117944821715355, -0.017888106405735016, -0.010441072285175323, 0.02412991411983967, -0.009191442281007767, -0.009743309579789639, -0.026464249938726425, -0.02230304479598999, 0.0021139048039913177, -0.0005578139680437744, -0.006983973551541567, 0.011995181441307068, 0.015477652661502361, -0.013397050090134144, 0.0019521507201716304, -0.017811987549066544, 0.017190344631671906, 0.010498162358999252, 0.0020869458094239235, 0.009832115843892097, -0.01683511957526207, 0.003431725548580289, -0.011062716133892536, 0.003717174055054784, 0.010028758086264133, 0.0041168020106852055, -0.020742591470479965, 0.010682118125259876, 0.014208992943167686, 0.0029210897628217936, 0.020159007981419563, 0.0023375062737613916, 0.016150042414665222, -0.019423186779022217, -0.007440691348165274, 0.013232124969363213, -0.008931366726756096, 0.0039391894824802876, 0.015426906757056713, 0.00592464255169034, 0.012851526960730553, -0.00997801125049591, 0.022467970848083496, -0.0032858296763151884, -0.0004475991299841553, -0.0022487000096589327, 0.025779172778129578, 0.007028376683592796, 0.011773165315389633, -0.005283969454467297, 0.03537024185061455, 0.004164376761764288, 0.006787331309169531, -0.011538463644683361, 0.013194064609706402, -0.020311247557401657, 0.009039202705025673, 0.01626422256231308, 0.01976572349667549, -0.01913139410316944, -0.0016952470177784562, -0.013904514722526073, 0.018953781574964523, 0.011716076172888279, 0.008842560462653637, 0.0158075038343668, -0.0012892758240923285, -0.004278555978089571, -0.0029274332337081432, 0.0296612735837698, 0.024814991280436516, -0.007656363770365715, -0.02279782108962536, -0.02496723085641861, 0.009882861748337746, 0.0042214663699269295, -0.014475411735475063, 0.024282153695821762, 0.001760265906341374, 0.023673197254538536, 0.011265701614320278, 0.0023295769933611155, -0.003961391281336546, -0.023736629635095596, -0.01607392355799675, 0.012813466601073742, 0.005230050999671221, 0.019600797444581985, -0.022785134613513947, -0.010948536917567253, 0.026261264458298683, -0.009394427761435509, 0.020235128700733185, 0.025398574769496918, -0.008905993774533272, -0.014094813726842403, 0.007998901419341564, -0.005559902638196945, 0.022138118743896484, -0.0176090020686388, -0.0030733291059732437, -0.01404406689107418, 0.005563074257224798, 0.01963885873556137, 0.012845183722674847, -0.01299107912927866, -0.007967185229063034, -0.0025198759976774454, 0.0006426556501537561, 0.004697213880717754, -0.008690321817994118, -0.02872246503829956, 0.003339747665449977, -0.02059035375714302, -0.0028053245041519403, -0.01048547588288784, -0.0021154906135052443, 0.00588975427672267, -0.0013122702948749065, -0.012553391046822071, -0.008157484233379364, -0.01518586091697216, 0.0006612890865653753, -0.018319452181458473, -0.00029159357654862106, -0.0037774352822452784, 0.011557493358850479, 0.01637840084731579, 0.025766486302018166, 0.00809405092149973, 0.022696329280734062, 0.0013963190140202641, -0.015008248388767242, -0.001523977960459888, 0.0015461795264855027, 0.020247815176844597, 0.019283633679151535, -0.015870938077569008, 0.01508436817675829, -0.009832115843892097, -0.019664231687784195, -0.0034507554955780506, 0.007072779815644026, 0.013422423973679543, 0.0004781262541655451, 0.007935469038784504, -0.005388633813709021, -0.03252844512462616, 0.016099296510219574, -0.029686646535992622, 0.011221298016607761, 0.0007897408795543015, -0.0107074910774827, -0.0007072779699228704, 0.0001000556512735784, 0.002557935891672969, 0.008867934346199036, -0.00010278129047947004, -0.005594790913164616, 0.015097054652869701, -0.014107500202953815, -0.008880620822310448, -0.010504505597054958, -0.009958981536328793, -0.01956273801624775, 0.007872035726904869, 0.01856049709022045, 0.006343300454318523, -0.026337383314967155, -0.02648962289094925, 0.00927390530705452, 0.011811225675046444, -0.01837019808590412, -0.011538463644683361, 0.003878928255289793, 0.006901510991156101, -0.05566880479454994, -0.018408257514238358, 0.018192585557699203, -0.022721702232956886, -0.0008087708265520632, 0.01848437823355198, -0.003216053359210491, -0.004430795554071665, -0.000267607974819839, 0.0022946889512240887, 0.016695566475391388, 0.0023137188982218504, 0.010479132644832134, -0.015642579644918442, 0.025703053921461105, 0.009001143276691437, 0.01006681751459837, 0.02128811553120613, -0.013130632229149342, -0.03245232626795769, -0.010219057090580463, -0.02045080065727234, 0.020882144570350647, 0.00668583856895566, -0.012204510159790516, -0.028164254501461983, 0.017621688544750214, 0.027606043964624405, 0.002459614770486951, -0.002545249182730913, -0.015591832809150219, -0.0019156767521053553, -0.011443314142525196, 0.006698525045067072, 0.030397094786167145, 0.027428431436419487, -0.025690367445349693, -1.8546719729783945e-05, -0.011703389696776867, 0.008506366051733494, 0.012572421692311764, -0.0011354507878422737, 0.024764245375990868, 0.0024247264955192804, 0.018649302423000336, 0.007117182947695255, 0.006508226040750742, -0.031082171946763992, 0.002613439690321684, 0.03016873635351658, -0.015896311029791832, 0.034152328968048096, 0.00619423296302557, 0.01658138819038868, 0.009324651211500168, -0.0036822857800871134, 0.0056709107011556625, 0.009648160077631474, 0.0016460864571854472, -0.021199310198426247, 0.016441835090517998, -0.004881169646978378, -0.023038867861032486, 0.01079629734158516, -0.005556731019169092, 0.03945532813668251, 0.013143318705260754, 0.0032366691157221794, -0.0078022596426308155, -0.017685120925307274, -0.0035681065637618303, 0.015363473445177078, -0.0008420731173828244, -0.0026388128753751516, -0.018205272033810616, -0.008398530073463917, 0.014221679419279099, -0.005417178384959698, 0.0038694131653755903, -0.022125432267785072, -0.013574662618339062, -0.007757856510579586, -0.012179137207567692, -0.020184382796287537, -0.0008634817786514759, 0.0023168905172497034, 0.004846281372010708, 0.011830255389213562, -0.0083541264757514, 0.02801201492547989, 0.013054512441158295, 0.006742928177118301, 0.015769444406032562, 0.007884722203016281, -0.017494821920990944, 0.010238086804747581, -0.02317841909825802, 0.00794181227684021, 0.0024215548764914274, 0.02116125077009201, 0.013574662618339062, 0.01594705693423748, 0.011804882436990738, -0.04001354053616524, 0.01219816692173481, 0.006698525045067072, -0.021250056102871895, 0.0062513225711882114, 0.007922782562673092, 0.02973739244043827, -0.01302913948893547, 0.010542565025389194, 0.0042309812270104885, -0.021491101011633873, -0.01753288321197033, 0.01601048931479454, 0.005550387781113386, 0.004808221478015184, 0.00014203046157490462, -0.022480657324194908, -0.0030495417304337025, -0.00718061625957489, -0.009775025770068169, -1.9463524949969724e-05, -0.004766990430653095, 2.6067000362672843e-05, -0.012654884718358517, 0.01006681751459837, -0.008036961778998375, 0.0029829370323568583, -0.004497400019317865, 0.012813466601073742, 0.012965706177055836, -0.001980695640668273, -0.0037425472401082516, -0.004833594895899296, 0.003051127539947629, -0.009743309579789639, 0.00968621950596571, 0.016911238431930542, -0.02826574631035328, 0.024814991280436516, 0.001658773049712181, 0.004912886302918196, -0.00918509904295206, -0.0032287398353219032, 0.02032393403351307, -0.0021931962110102177, 0.005525014828890562, 0.016276909038424492, -0.024941857904195786, -0.021300802007317543, -0.01048547588288784, -0.013955260626971722, 0.0023137188982218504, 0.01708885096013546, -0.005004864186048508, -0.018319452181458473, -0.006888824049383402, -0.003780607134103775, -0.009952638298273087, 0.021757520735263824, 0.009166069328784943, 0.0029734221752732992, 0.018446316942572594, -0.012705630622804165, -0.0019648373126983643, 0.0056709107011556625, -0.004062884021550417, -0.0039201597683131695, -0.015908997505903244, -0.014399291947484016, 0.017101537436246872, 0.0010989768197759986, 0.009775025770068169, 0.0230008065700531, -0.008449275977909565, -0.014678397215902805, 0.025423947721719742, -0.0004947774577885866, 0.02694633975625038, 0.030701573938131332, -0.021694086492061615, 0.010174653492867947, -0.0040216525085270405, 0.006952257361263037, -0.024117227643728256, 0.011830255389213562, -0.024688124656677246, -0.010123907588422298, 0.015794817358255386, 0.04166279733181, -0.00489385612308979, 0.01268025767058134, 0.003507845103740692, -0.012217196635901928, 0.0038376967422664165, 0.019486619159579277, 0.007859349250793457, -0.017570942640304565, -0.0014962259447202086, 0.0023232337553054094, 0.03321352228522301, 0.01683511957526207, 0.017710493877530098, -0.008791814558207989, -0.02477693185210228, 0.0035522482357919216, 0.021326176822185516, 0.005994419101625681, -0.01089779008179903, -0.006292554084211588, -0.010973909869790077, 0.003780607134103775, -0.02674335427582264, -0.0076056174002587795, -0.002567450748756528, -0.005658223759382963, -0.005886582657694817, 0.008823530748486519, 0.002413625828921795, 0.006666808854788542, 0.010111221112310886, 0.012344062328338623, -0.0009657674818299711, -0.00341586722061038, 0.007884722203016281, 0.012103017419576645, -0.006578002590686083, -0.013993320986628532, 0.012477272190153599, -0.010745550505816936, 0.025563500821590424, 0.015553772449493408, -0.0031335903331637383, 0.02661648765206337, -0.008436589501798153, -0.02610902488231659, -0.010491819120943546, -0.006907854229211807, -0.0010965981055051088, -0.002324819564819336, -0.03600457310676575, -0.008309723809361458, -0.00937539804726839, -0.022252297028899193, -0.011811225675046444, -0.004535459913313389, 0.0009403942967765033, 0.00861420203000307, -0.00908360630273819, -0.0008044097921811044, -0.0028830301016569138, -0.011011969298124313, -0.00641942024230957, -0.034279193729162216, -0.007205989211797714, 0.006349643692374229, -0.004456168506294489, 0.015350786969065666, 0.006850764621049166, 0.002854485297575593, -0.03321352228522301, 0.007573900744318962, -0.008715694770216942, -0.0032890012953430414, -0.009540324099361897, -0.008385843597352505, -0.005892925895750523, -0.009832115843892097, -0.0224172230809927, 0.012781750410795212, -0.008423903025686741, -0.001149723189882934, 0.01989259012043476, -0.019524678587913513, 0.00398676423355937, 0.004208779893815517, 0.028620971366763115, -0.024814991280436516, 0.025259021669626236, 0.019461246207356453, 0.0017523367423564196, -0.0012329790042713284, 0.014082127250730991, 0.004456168506294489, 0.008151140995323658, 0.008779128082096577, -0.003057470778003335, 0.01823064498603344, -0.012788093648850918, 0.007821289822459221, 0.01375227514654398, 0.021694086492061615, 0.018091091886162758, -0.01385376788675785, 0.013358990661799908, 0.015680639073252678, 0.011456000618636608, 0.005103185307234526, 0.025106782093644142, -0.007998901419341564, 0.003815495176240802, 0.021364236250519753, -0.001579481759108603, -0.008639574982225895, -0.010935849510133266, 0.002692731097340584, -0.04787923023104668, -0.010859730653464794, 0.025220962241292, -0.023901555687189102, -0.001395526109263301, 0.00902651622891426, -0.004662325605750084, -0.015985116362571716, -0.013803021982312202, 0.002818011213093996, 0.016746312379837036, 0.012248912826180458, -0.0006204540841281414, 0.005896097514778376, -0.014411978423595428, -0.014348545111715794, -0.011842941865324974, 0.023622451350092888, 0.004440310411155224, -0.015642579644918442, 0.0021725804544985294, -0.00349515862762928, 0.0034856435377150774, -0.022188864648342133, 0.008119424805045128, -0.008182857185602188, 0.028417985886335373, 0.005093670450150967, 0.0277075357735157, -0.011633613146841526, -0.007694423198699951, 0.0022883457131683826, 0.002256629057228565, 0.010117564350366592, -0.005249081179499626, -0.016949297860264778, -0.021960506215691566, 0.026667235419154167, 0.02528439462184906, -0.01079629734158516, 0.008106738328933716, 0.024827677756547928, 0.01455153152346611, -0.00036672205897048116, -0.0030876013915985823, -0.003043198259547353, -0.013079885393381119, -0.007034719921648502, -0.009032859466969967, 0.0062513225711882114, 0.0176090020686388, -0.0008825116674415767, 0.007485094480216503, 0.02922992780804634, -2.5397979698027484e-05, -0.04442847520112991, -0.008766441605985165, -0.0013416080037131906, 0.012762720696628094, 0.009204128757119179, 0.011976150795817375, 0.010885103605687618, -0.006210091058164835, 0.03443143516778946, 0.013511230237782001, 0.0011481373803690076, 0.02707320638000965, 0.014247052371501923, 0.033315014094114304, -0.0028132537845522165, 0.002643570536747575, 0.009800398722290993, -0.025385888293385506, -0.009178755804896355, -0.0010577453067526221, 0.005039751995354891, 0.020729904994368553, -0.00619423296302557, -0.0002489745384082198, 0.02178289368748665, 0.004005794413387775, 0.008563455194234848, 0.01089779008179903, -0.0014224851038306952, 0.0031478628516197205, 0.005626507569104433, 0.004085085354745388, -0.003821838414296508, 0.011329134926199913, -0.01804034598171711, 0.011836598627269268, 0.015617205761373043, 0.023089613765478134, 0.013143318705260754, 0.010701147839426994, -0.0026689437218010426, -0.035040389746427536, 0.010206370614469051, 0.003628367790952325, -0.01677168719470501, -0.017862733453512192, 0.01328287087380886, -0.010961223393678665, 0.004808221478015184, 0.007897408679127693, -0.011582866311073303, -0.00039130233926698565, 0.014792576432228088, 0.0012789679458364844, -0.027555296197533607, 0.0010632957564666867, 0.01708885096013546, -0.0011140421265736222, -0.021313488483428955, 0.008538082242012024, -0.006422591861337423, -0.00706643657758832, 0.0018316280329599977, 0.016289595514535904, 0.029712019488215446, 0.02292468771338463, -0.010403012856841087, -0.015477652661502361, -0.0014526158338412642, 0.01287055667489767, 0.009965324774384499, 0.004411765374243259, -0.00741531839594245, -0.025956785306334496, 0.025005290284752846, -0.0059563592076301575, 0.0007005382212810218, 0.0008357298211194575, 0.027809029445052147, 0.009832115843892097, -0.0014597519766539335, 0.005848522763699293, 0.019283633679151535, -0.02623588964343071, -0.009629130363464355, -0.007440691348165274, 0.01531272754073143, -0.0030098960269242525, -0.01696198619902134, 0.005689940415322781, 0.0015549014788120985, 0.010555251501500607, -0.00047733334940858185, -0.016492580994963646, -0.005702626891434193, -0.012604137882590294, 0.0014256567228585482, -0.020869458094239235, 0.0198291577398777, 0.015097054652869701, -0.0006022171000950038, 0.020095575600862503, -0.03075231984257698, 0.0061720311641693115, 0.016289595514535904, 0.0008563455776311457, -0.003710830816999078, 0.0019489791011437774, -0.008715694770216942, -0.0145134711638093, -0.009457861073315144, 0.010098534636199474, 0.0009102636249735951, 0.02216349169611931, -0.011126148514449596, 0.0030907730106264353, -0.009870175272226334, -0.007313825190067291, -0.0258045457303524, 0.013270184397697449, -0.0036822857800871134, -0.0016302282456308603, 0.01089779008179903, 0.03169113025069237, 0.009261218830943108, 0.03227471187710762, -0.005061953794211149, 0.022201551124453545, -0.009603756479918957, -0.007453377824276686, -0.004094600211828947, 0.004411765374243259, 0.011341821402311325, -0.0011877829674631357, -0.0007615925278514624, -0.007117182947695255, -0.0037774352822452784, -0.006184718105942011, 0.019867217168211937, 0.031082171946763992, 0.006964943837374449, -0.002131348941475153, -0.008461962454020977, -0.010834356769919395, 0.004456168506294489, 0.021427668631076813, -0.001090254751034081, -0.021427668631076813, 0.012762720696628094, -0.009108979254961014, -0.00908360630273819, 0.000653359922580421, -0.005712142214179039, -0.006850764621049166, 0.018915722146630287, -0.005331544205546379, 0.008538082242012024, 0.031031426042318344, -0.006302068941295147, 0.014247052371501923, 0.023647824302315712, -0.0044212802313268185, 0.019740350544452667, -0.011475030332803726, 0.00341586722061038, 0.0062735239043831825, -0.005731171928346157, 0.014678397215902805, -0.011462343856692314, -0.002873515011742711, 0.01079629734158516, -0.0035807930398732424, -0.025626933202147484, 0.009660846553742886, 0.017139596864581108, -0.003885271493345499, 0.007313825190067291, 0.008633231744170189, 0.01911870762705803, -0.011620926670730114, 0.002762507414445281, 0.012807123363018036, 0.0030749149154871702, -0.015870938077569008, 0.026895593851804733, -0.011233985424041748, 0.0327821783721447, -0.005712142214179039, -0.01943587325513363, -0.022696329280734062, -0.030447842553257942, -0.009292935021221638, 0.007516811136156321, 0.002895716577768326, -0.003428553929552436, -1.406180854246486e-05, -0.0015144629869610071, -0.0060641951858997345, -0.023482898250222206, -0.009965324774384499, -0.025309769436717033, -0.01645452156662941, -0.00687613757327199, -0.03384784981608391, -0.009362711571156979, 0.011544806882739067, 0.0016016833251342177, -0.005531358066946268, 0.012604137882590294, -0.01226159930229187, -0.004925572779029608, -0.014602277427911758, 0.02560156024992466, 0.0017396501498296857, -0.006184718105942011, 0.01765974797308445, -0.02572842687368393, 0.006660465616732836, 0.011633613146841526, 0.01003510132431984, -0.024954544380307198, 0.0249037966132164, 0.010307863354682922, 0.0026514995843172073, 0.00010446622763993219, -0.005226879380643368, -0.012020554393529892, 0.028037387877702713, -0.006476509850472212, -0.02560156024992466, -0.003339747665449977, 0.030701573938131332, -0.006914197467267513, 0.01184928510338068, -0.002025098539888859, 0.004307101015001535, -0.014564217999577522, 0.0005403698887676001, 0.01930900663137436, -0.00908360630273819, 0.01640377566218376, 0.009400770999491215, -0.00797352846711874, -0.012585108168423176, 0.0028751008212566376, 0.030853813514113426, -0.008696665056049824, 0.023292599245905876, -0.008671292103827, 0.0019251917256042361, 0.013067198917269707, -0.02915380895137787, -0.02872246503829956, -0.005157103296369314, -0.008125768043100834, 0.025563500821590424, -0.023964988067746162, -0.008576142601668835, -0.02071721851825714, 0.01423436589539051, -0.008569798432290554, -0.01318137813359499, 0.0001684939197730273, 0.025969471782445908, 0.015147801488637924, -0.019917963072657585, 0.013549289666116238, 0.004405422136187553, -0.016568699851632118, 0.019283633679151535, 0.03628367930650711, 0.03610606491565704, 0.0021012183278799057, -0.007174272555857897, -0.0160231776535511, -0.0019775237888097763, 0.004950946196913719, -0.013701529242098331, 0.013955260626971722, -0.005724828690290451, 0.03813592344522476, 0.018826914951205254, -0.008404873311519623, 0.018522437661886215, 0.0029115749057382345, 0.008373156189918518, 0.0018347996519878507, 0.008487336337566376, -0.0020932890474796295, -0.01063771452754736, 0.03638517111539841, -0.005080983508378267, -0.012883243151009083, -0.02648962289094925, -0.005819978192448616, -0.017685120925307274, 0.0055757611989974976, 0.00043530898983590305, 0.01181756891310215, -0.0038313535042107105, 0.010878760367631912, 7.012320565991104e-05, -0.018890349194407463, -0.009438831359148026, 0.004655982367694378, 0.02783440239727497, 0.014729143120348454, 0.017253777012228966, -0.004690870642662048, -0.006774644833058119, -0.003815495176240802, 0.025626933202147484, 0.004589377902448177, -0.015908997505903244, 0.00039467221358790994, -0.007948155514895916, 0.0036442261189222336, -0.013194064609706402, 0.01741870306432247, -0.02737768366932869, -0.0056677390821278095, 0.02567768096923828, 0.021186623722314835, -0.01637840084731579, -0.0014882968971505761, -0.012058613821864128, 0.0062735239043831825, -0.011386224068701267, -0.014082127250730991, -0.0039106449112296104, 0.017444076016545296, -0.023089613765478134, -0.008195544593036175, 0.024624692276120186, 0.013295557349920273, -0.02242990955710411, -0.0023898384533822536, 0.007161586079746485, 0.0018443146254867315, -0.004462511744350195, 0.010789954103529453, -0.019359752535820007, -0.0028862017206847668, -0.00984480232000351, 0.013549289666116238, -0.009952638298273087, 0.0016667022136971354, 0.002821182832121849, 0.01328287087380886, 0.014843323267996311, 0.0030558849684894085, 0.009895548224449158, -0.020488860085606575, -0.007529497612267733, 0.004976319149136543, -0.00927390530705452, 0.0030653998255729675, -0.020374681800603867, -0.003717174055054784, -0.020476173609495163, -0.005423521623015404, 0.007060093339532614, 0.003691800870001316, -0.012141076847910881, -0.0022407709620893, -0.0036378828808665276, 0.022696329280734062, -0.03260456398129463, 0.004208779893815517, 0.015363473445177078, -0.009191442281007767, 0.001852243673056364, 0.0003536389849614352, 0.015591832809150219, 0.0027640932239592075, 0.0040184808894991875, -0.018078405410051346, 0.0033651208505034447, -0.007789572700858116, -0.013879140838980675, 0.005781918298453093, -0.011360851116478443, -0.03029560297727585, 0.024294840171933174, -0.010523535311222076, 0.014957502484321594, -0.0033778075594455004, 0.0007814153213985264, 0.0007493023877032101, -0.003438068786635995, 0.008779128082096577, 0.010117564350366592, 0.004560832865536213, 0.006857107859104872, -0.006508226040750742, -0.005708970595151186, -0.0036442261189222336, 0.01238846592605114, -0.004830423276871443, -0.001661944668740034, 0.023356031626462936, 0.004595721140503883, -0.0028560711070895195, 0.01618810184299946, -0.01773586869239807, -0.00664143543690443, 0.0025864806957542896, 0.012724660336971283, 0.00634012883529067, -0.009901892393827438, 0.005493298172950745, 0.004183406475931406, -0.009553010575473309, 0.016061237081885338, -0.03037172183394432, -0.004192921798676252, -0.006698525045067072, -0.03169113025069237, 0.0005118250264786184, 0.00027633001445792615, -0.01772318221628666, -0.021554535254836082, -0.023787377402186394, 0.003308031242340803, 0.012375779449939728, -0.01489406917244196, -0.011703389696776867, 0.008899650536477566, -0.006952257361263037, -0.0005621750024147332, -0.008100394159555435, -0.02890007756650448, -0.003047955920919776, -0.00832241028547287, 0.03049858845770359, -0.006806361488997936, 0.017634375020861626, -0.013485856354236603, -0.0020837741903960705, -0.009863832034170628, -0.027225445955991745, 0.004982662387192249, -0.015046308748424053, 0.004868483170866966, -4.710396024165675e-05, -0.01938512548804283, -0.018256017938256264, -0.024117227643728256, -0.00048288374091498554, -0.0010173068149015307, 0.03303590789437294, -0.005176133010536432, -0.015541085973381996, -0.0039423611015081406, -0.018141839653253555, -0.01196980755776167, -0.006289382465183735, 0.005093670450150967, -0.012483615428209305, -6.452325760619715e-05, 0.011126148514449596, 0.009997041895985603, 0.00722501939162612, -0.007745169568806887, -0.011747792363166809, -0.001097391010262072, 0.024294840171933174, -0.013447796925902367, -0.011754135601222515, 0.00020496788783930242, -0.006308412179350853, -0.01658138819038868, -0.004998520947992802, 0.016860492527484894, 0.004357847385108471, -0.007434348110109568, 0.0025595217011868954, 0.008189200423657894, -0.017862733453512192, 0.011430627666413784, -0.004357847385108471, 0.02566499263048172, -0.007916439324617386, 0.0009887618944048882, 0.012876899912953377, 0.021833639591932297, 0.020679159089922905, -0.02336871810257435, -0.034406062215566635, -0.018091091886162758, 0.007656363770365715, -0.008423903025686741, -0.008601515553891659, 0.008626888506114483, -1.2104305824323092e-05, -0.0005558317061513662, 0.008208231069147587, -0.011316447518765926, -0.015338100492954254, 0.01337167713791132, -0.008645918220281601, -0.008151140995323658, -0.022950060665607452, 0.009762339293956757, -0.008335096761584282, -0.003158963518217206, 0.0022518716286867857, -0.0029020600486546755, -0.012762720696628094, -0.013891828246414661, -0.006863451097160578, 0.005122215021401644, 0.0037584055680781603, -0.008956740610301495, -0.010663088411092758, -0.0036505693569779396, -0.0027307907585054636, -0.009952638298273087, -0.013815708458423615, 0.0038408683612942696, -0.022328417748212814, 0.011919061653316021, 0.00017285493959207088, -0.00387575663626194, -0.014437351375818253, -0.01753288321197033, 0.014919442124664783, 0.021199310198426247, 0.020603040233254433, 0.021300802007317543, 0.009990697726607323, 0.0044022505171597, 0.009128008969128132, 0.004161205142736435, 0.0014938472304493189, -0.007339198607951403, -0.015008248388767242, -0.006022963672876358, -0.005302999168634415, -0.02928067557513714, -0.0023533643689006567, -0.021440355107188225, 0.0012718316866084933, 0.012737346813082695, -0.010802640579640865, -0.022442596033215523, 0.019930649548768997, -0.03247769922018051, 0.0018379712710157037, 0.014056753367185593, 0.016340341418981552, 0.002282002242282033, 0.009578383527696133, -0.008519052527844906, -0.019093334674835205, -0.009667189791798592, -0.02783440239727497, 0.019524678587913513, -0.027428431436419487, 0.016086610034108162, -0.011538463644683361, -0.007047406863421202, 0.014158246107399464, 0.00886159110814333, 0.011240328662097454, -0.002191610401496291, 0.01791348122060299, -0.011322791688144207, 0.008138454519212246, 0.012781750410795212, 0.022594835609197617, 0.0014676811406388879, 0.019524678587913513, 0.002852899255231023, -0.004510086495429277, -0.012946676462888718, 0.0210978165268898, 0.013638095930218697, -0.011925404891371727, 0.004294414538890123, 0.01703810505568981, -0.01741870306432247, -0.0015858251135796309, -0.008125768043100834, 0.011005626060068607, 0.005937329027801752, -0.003511016722768545, 0.017291836440563202, 0.0019029901595786214, -0.008931366726756096, -0.006381360348314047, -0.005556731019169092, -0.0176090020686388, 0.015211234800517559, 0.0006172824068926275, -0.029635898768901825, -0.02089483104646206, 0.009717936627566814, 0.0009475304977968335, -0.0014074197970330715, 0.0036442261189222336, 0.001323371077887714, -0.007827633060514927, 0.002053643576800823, 0.020298561081290245, 0.018319452181458473, -0.017241090536117554, 0.008271663449704647, -0.019207512959837914, -0.01575675792992115, 0.002692731097340584, 0.013054512441158295, -0.007193302735686302, 0.005363260395824909, -0.0028164254035800695, 0.019600797444581985, -0.01607392355799675, 0.017139596864581108, 0.00390747282654047, 0.002705417573451996, 0.014944816008210182, 0.012064957059919834, 0.017000045627355576, -0.026286637410521507, 0.003970906138420105, 0.006083224900066853, -0.024688124656677246, 0.008271663449704647, 0.009121665731072426, 0.008461962454020977, -0.006717555224895477, 0.0009546666988171637, 0.00959741324186325, -0.0079037519171834, -0.0032636281102895737, -0.010060474276542664, 0.021250056102871895, 0.004830423276871443, -0.006749271415174007, 0.04315981641411781, -0.009172412566840649, -0.0009356368100270629, -0.002515118569135666, 0.0016968328272923827, -0.01508436817675829, 0.01975303702056408, -0.0014486511936411262, -0.003999450709670782, -0.014094813726842403, 0.002846556017175317, 0.008081364445388317, 0.015249294228851795, -0.005388633813709021, -0.0007175858481787145, 0.011107118800282478, -0.0042341528460383415, 0.024383647367358208, 0.0023089612368494272, 0.0009308793232776225, -0.02084408514201641, 0.00015897896082606167, 0.0027672648429870605, -0.0230008065700531, -0.010758237913250923, 0.012382122687995434, 0.03727323189377785, -0.00360616622492671, 0.00235177855938673, 0.003444412024691701, 0.024497825652360916, 0.023292599245905876, -0.005230050999671221, -0.008055991493165493, -0.003444412024691701, -0.010713834315538406, -0.006863451097160578, 0.0027894664090126753, -0.0010244430741295218, 0.012724660336971283, -0.010726520791649818, 0.004075570497661829, 0.004192921798676252, -0.010745550505816936, -0.007840319536626339, -0.03318814933300018, -0.003504673484712839, -0.00231847632676363, 0.002282002242282033, -0.006730241701006889, -0.003526875050738454, -0.028823956847190857, 0.005011207424104214, -0.007757856510579586, 0.0028100821655243635, -0.0065589724108576775, -0.0017523367423564196, -0.016923924908041954, -0.040571749210357666, 0.008461962454020977, 0.00024382061383221298, 0.01721571758389473, -0.002299446379765868, -0.011272044852375984, -0.03628367930650711, -0.016111982986330986, 0.008817187510430813, 0.013676155358552933, -0.0016762171871960163, -0.017748555168509483, -0.005230050999671221, 0.0010062060318887234, 0.011798539198935032, 0.011925404891371727, -0.010301520116627216, 0.001303548226132989, -0.012236226350069046, -0.007497780956327915, -0.002846556017175317, 0.013358990661799908, -0.01375227514654398, 0.003964562900364399, 0.017558256164193153, 0.00937539804726839, 0.009039202705025673, -0.004808221478015184, 0.0044212802313268185, 0.016441835090517998, -0.0066541219130158424, 0.00987651851028204, 0.03953144699335098, 0.021237369626760483, -0.00018742471002042294, 0.017900792881846428, 0.0042119515128433704, -0.0036410544998943806, 0.025081409141421318, -0.010904133319854736, 0.010085847228765488, -0.030346348881721497, -0.007421661633998156, 0.003022582735866308, 0.0019331207731738687, 0.0108660738915205, -0.017380643635988235, 0.014576904475688934, 0.006590689066797495, -0.008753754198551178, -0.0033746357075870037, 0.02586797997355461, 0.02420603483915329, 0.014678397215902805, 0.0034824719186872244, -0.002499260473996401, 0.006603375542908907, 0.0002125005703419447, -0.020057516172528267, 0.024802304804325104, -0.0002174562687287107, -0.011005626060068607, -0.005042923614382744, -0.002757749753072858, 0.002613439690321684, -0.010586968623101711, -0.012458241544663906, 0.007650020066648722, -0.0061720311641693115, -0.00022419601737055928, -0.006920540705323219, -0.01455153152346611, 0.01013659406453371, 0.02821500040590763, 0.002419969066977501, -0.00861420203000307, 0.00390747282654047, -0.002364465268328786, -0.005518671125173569, 0.0040406822226941586, 0.026286637410521507, -0.013016452081501484, 0.0023438495118170977, -0.016162728890776634, -0.013701529242098331, 0.0032271540258079767, -0.004541803151369095, -0.01811646670103073, 0.0009736965876072645, -0.02140229567885399, -0.00045077077811583877, -0.011316447518765926, 0.008151140995323658, -0.0005042923730798066, 0.019080648198723793, -0.018598556518554688, 0.008823530748486519, -0.01697467267513275, -0.0032604564912617207, 0.0179261676967144, 0.030853813514113426, 0.009851145558059216, -0.004151690285652876, -0.0059690456837415695, 0.0023295769933611155, -0.04511355236172676, 0.011011969298124313, 0.02517021633684635, -0.013422423973679543, 0.006945914123207331, 0.0014153489610180259, -0.01664482057094574, 0.017101537436246872, 0.02548738196492195, 0.0005835836636833847, 0.009673533029854298, -0.0032921729143708944, -0.02255677618086338, -0.014082127250730991, -0.009939951822161674, 0.007643676828593016, 0.021643340587615967, -0.018915722146630287, -0.001993382116779685, 0.015147801488637924, -0.010910476557910442, -0.005455238278955221, -0.0008975770324468613, -0.0027561639435589314, 0.02439633384346962, 0.01067577488720417, -0.02102169767022133, -0.008017932064831257, 0.015921683982014656, 0.008855246938765049, 0.006206919439136982, -0.0088045010343194, 0.00019386711937841028, -0.006844420917332172, -0.008810844272375107, -0.02192244678735733, -0.008341439999639988, -0.002906817477196455, -0.007155242841690779, -0.018217958509922028, -0.009470547549426556, 0.0066097192466259, 0.015160487964749336, -0.020171694457530975, 0.01550302654504776, 0.022759761661291122, 0.02355901710689068, -0.026920966804027557, -0.01849706470966339, 0.004795535001903772, 0.015135115012526512, -0.0008626888738945127, 0.0029210897628217936, -0.0041136303916573524, 0.008601515553891659, -0.014881382696330547, -0.006901510991156101, -0.0077959164045751095, 0.02758067101240158, -0.005138073116540909, -0.0007374086999334395, 0.009610099717974663, 0.01696198619902134, 0.01120861154049635, -0.007573900744318962, -0.0008729966939426959, 0.0023533643689006567, -0.0036695993039757013, -0.003539561526849866, -0.04201802238821983, -0.003022582735866308, -0.03346725180745125, -0.01060599833726883, -0.031107544898986816, 0.0035427333787083626, 0.012401152402162552, 0.004472026601433754, 0.016162728890776634, 0.0030653998255729675, -0.006244979333132505, 0.0021694088354706764, 0.0003807962639257312, 0.019207512959837914, 0.0004694042436312884, -0.01032689306885004, -0.01797691360116005, -0.012502645142376423, -0.026464249938726425, -0.0019156767521053553, 0.0023264053743332624, -0.004817736800760031, -0.00501755066215992, -0.009032859466969967, 0.004389564041048288, -0.005042923614382744, -0.002630883827805519, 0.025449320673942566, -0.0043293023481965065, -0.014488098211586475, -0.011075402610003948, -0.01797691360116005, -0.007028376683592796, -0.006501882802695036, 0.008785471320152283, 0.009768682532012463, -0.0005054817302152514, 0.018091091886162758, -0.009089949540793896, 0.0045227729715406895, -0.009851145558059216, 0.024612005800008774, 0.006184718105942011, 0.011633613146841526, -0.005008035805076361, 0.013993320986628532, 0.015147801488637924, -0.004564004484564066, 0.020159007981419563, -0.0029464629478752613, 0.00737091526389122, -0.007041063625365496, 0.00740263145416975, -0.001481160637922585, -0.021694086492061615, 0.02211274579167366, 0.004985834006220102, -0.010187340900301933, -0.0013669811887666583, 0.023114986717700958, -0.01569332554936409, -0.005743858404457569, 0.018649302423000336, 0.00011536877718754113, 0.01804034598171711, -0.004345160908997059, -0.02681947499513626, -0.010060474276542664, 0.002223326824605465, -0.0031224896665662527, 0.019270947203040123, 0.0006248151184991002, -0.022074684500694275, 0.012692944146692753, 0.024180661886930466, 0.006508226040750742, 0.00372351729311049, 0.01637840084731579, -0.006806361488997936, 0.022569462656974792, 0.0026578428223729134, 0.01092950627207756, -0.03323889523744583, 0.011062716133892536, -0.008747410960495472, -0.012559735216200352, -0.015338100492954254, 0.020691845566034317, -0.011386224068701267, 0.0016603588592261076, 0.021567221730947495, -0.010669431649148464, -0.022087372839450836, 0.013244811445474625, -0.04935087636113167, -0.012255256064236164, -0.006533599458634853, 0.019791096448898315, -0.006622405722737312, 0.014538844116032124, 0.012242569588124752, 0.02656574174761772, -0.0029702503234148026, 0.0006953842821530998, -0.040825482457876205, 0.010117564350366592, 0.002216983586549759, 0.016162728890776634, 0.013244811445474625, 0.02255677618086338, -0.015439593233168125, 0.0026911452878266573, -0.013244811445474625, 0.01196980755776167, 0.015921683982014656, 0.01226159930229187, -0.022264985367655754, 0.03432994335889816, -0.013295557349920273, -0.012160106562077999, -0.019550051540136337, 0.0044815419241786, -0.009381741285324097, 0.0033619492314755917, -0.026895593851804733, 0.01455153152346611, -0.01340973749756813, 0.0028751008212566376, -0.03143739700317383, -0.002282002242282033], "b67796a6-a9cf-4173-a287-4adff8df6d4b": [-0.018429869785904884, -0.004856994841247797, 0.0003729729214683175, 0.013193312101066113, 0.009109500795602798, -0.027398791164159775, 0.022548826411366463, 0.03283918648958206, -0.02107274904847145, 0.005036232527345419, 0.010641808621585369, 0.01844392716884613, 0.022478537634015083, -0.014690475538372993, -0.046756479889154434, 0.030871085822582245, -0.00951015017926693, 0.020313624292612076, 0.03098354861140251, -0.026681840419769287, 0.07692467421293259, 0.011717235669493675, -0.04445099085569382, 0.024840259924530983, -0.0054860846139490604, -0.006252238526940346, -0.015112211927771568, 0.00023766589583829045, -0.01706625707447529, -0.0023037337232381105, 0.0017291181720793247, 0.01003029104322195, 0.022633172571659088, 0.012399042956531048, -0.013024617917835712, -0.017487991601228714, 0.0028098172042518854, -0.002760614501312375, -0.02526199445128441, -0.036297425627708435, -0.050299063324928284, 0.04262346774339676, 0.020454203709959984, 0.005036232527345419, -0.02842501737177372, -0.008181680925190449, -0.01999029330909252, -0.0028941642958670855, 0.006628286559134722, 0.004530149046331644, -0.00728197768330574, -0.013889176771044731, -0.022042741999030113, 0.011112747713923454, 0.011112747713923454, -0.03469482809305191, 0.030336886644363403, 0.07141398638486862, 0.009383629076182842, -0.024573160335421562, 0.01767074503004551, 0.01481699664145708, -0.006863755639642477, -0.02869211509823799, -0.027637775987386703, -0.0038272554520517588, 0.0008439116063527763, -0.025416631251573563, -0.07253861427307129, -0.01803625002503395, 0.0001842899073380977, 0.024980837479233742, -0.023462587967514992, 0.006607199553400278, 0.015168443322181702, -0.006498251110315323, 0.030758623033761978, -0.0007665933226235211, 0.0022615601774305105, 0.01463424414396286, -0.01615249365568161, -0.004428229760378599, 0.00846283882856369, -0.0031120614148676395, 0.0974491685628891, 0.006505280267447233, 0.0021613978315144777, -0.028874868527054787, -0.006311984267085791, -0.02471373789012432, 0.010262246243655682, 0.03432932123541832, -0.0015639382181689143, -0.02758154459297657, -0.00863153301179409, 0.016574230045080185, -0.01911870576441288, 0.00701487809419632, 0.008919719606637955, 0.004199789371341467, 0.0060659716837108135, 0.021494485437870026, -0.03449801728129387, 0.015618295408785343, -0.0055282581597566605, -0.012061653658747673, 0.012609911151230335, -0.003516225144267082, -0.02370157092809677, 0.03992435708642006, -0.0011676819995045662, -0.04276404529809952, 0.0017616270342841744, 0.027258213609457016, -0.04245477169752121, -0.008012986741960049, -0.009404716081917286, 0.015955684706568718, 0.04546315595507622, -0.04481649398803711, 0.001027981867082417, -0.01069101132452488, 0.05105818808078766, 0.002228172728791833, -0.01473264954984188, -0.0020120327826589346, 0.00011828380957012996, -0.027019228786230087, 0.01996217854321003, 0.004125985316932201, -0.014901343733072281, -0.007970813661813736, 0.01598379947245121, 0.03652235120534897, 0.007542048115283251, 0.030871085822582245, 0.03278295695781708, 0.06252941489219666, -0.014254681766033173, 0.03413251414895058, -0.06393519788980484, -0.02666778303682804, -0.023279834538698196, 0.03163021057844162, 0.005517714656889439, 0.02912791073322296, -0.05797466263175011, 0.026091409847140312, -0.031377170234918594, 0.00600974028930068, -0.044394757598638535, -0.04211738333106041, 0.008083276450634003, 0.01446554996073246, 0.05769350379705429, -0.011984335258603096, -0.04290462285280228, 0.0026832963339984417, -0.02292838878929615, 0.045266345143318176, 0.04605358839035034, -0.06348534673452377, -0.015280906111001968, 0.004916740581393242, 0.02538851648569107, 0.01875320076942444, 0.020960286259651184, 0.031883254647254944, -0.0492306649684906, 0.018935952335596085, 0.03196759894490242, 0.0008109634509310126, -0.002985540544614196, -0.024123307317495346, 0.004459859803318977, -0.005306846462190151, 0.05620336905121803, -0.006090573035180569, 0.030252540484070778, -0.0222536101937294, -0.012722373940050602, 0.013818887993693352, -0.003157749306410551, -0.0357351079583168, -0.01358693279325962, 0.017291182652115822, -0.0030716450419276953, 0.021297674626111984, 0.004101383965462446, -0.01895001158118248, -0.035622645169496536, -0.0030663732904940844, -0.008399578742682934, 0.021705353632569313, 0.0014839840587228537, -0.048274729400873184, 0.021325791254639626, 0.0015630596317350864, -0.0033703746739774942, 0.006958646234124899, -0.013305775821208954, -0.06584706902503967, -0.03790002316236496, 0.0512549988925457, -0.006758322007954121, 0.023223603144288063, 0.010360651649534702, -0.011119776405394077, 0.011899988166987896, 9.181547648040578e-05, 0.04093652218580246, -0.021297674626111984, 0.02053854987025261, 0.011351731605827808, -0.01895001158118248, 0.016503941267728806, -0.02343447133898735, 0.032558031380176544, -0.026358509436249733, -0.022970562800765038, 0.0033668603282421827, -0.03314846009016037, -0.007085167337208986, -0.048302847892045975, -0.06039261817932129, -0.0040381234139204025, 0.007886465638875961, 0.03109601140022278, -0.02873428910970688, 0.008012986741960049, 0.04149883612990379, 0.0037288505118340254, -0.029802687466144562, -0.006006225477904081, 0.02027145028114319, 0.04352317005395889, -0.001216005883179605, 0.03177078813314438, -0.0034301206469535828, -0.012884039431810379, 0.008975951001048088, 0.03871537744998932, 0.006160862278193235, -0.01625089906156063, -0.013474470004439354, 0.007253861986100674, -0.0173614714294672, 0.006350643467158079, 0.031911369413137436, 0.003544340841472149, -0.009369571693241596, 0.026766188442707062, 0.0059464797377586365, -0.006146804429590702, 0.0024689137935638428, 0.017389588057994843, 0.03463859483599663, -0.036100614815950394, 0.021128980442881584, -0.026442857459187508, -0.023996787145733833, 0.020327681675553322, 0.019034357741475105, -0.011372818611562252, 0.026695897802710533, -0.030730508267879486, 0.04197680577635765, 0.0107894167304039, 0.012771576642990112, 0.03250179812312126, -0.028453132137656212, -0.0192171111702919, 0.032220643013715744, 0.02201462723314762, -0.00829414464533329, -0.022070858627557755, 0.0064490484073758125, -0.018331464380025864, 0.003470537019893527, -0.005784814245998859, 0.014303884468972683, -0.025276053696870804, 0.04133014380931854, 0.05580975115299225, -0.011232239194214344, 0.004245477262884378, -0.009847539477050304, -0.016236841678619385, -0.033401504158973694, -0.02053854987025261, -0.0286640003323555, 0.00035825607483275235, -0.0018855120288208127, 0.03615684434771538, 0.02620387263596058, -0.004885110538452864, -0.0175301656126976, -0.011161950416862965, -0.023068968206644058, 0.002895921468734741, -0.012244406156241894, -0.011014342308044434, 0.007011363282799721, -0.04175188019871712, 0.03193948417901993, -0.008884575217962265, 0.031883254647254944, 0.007499874569475651, 0.004632068797945976, 0.019132763147354126, 0.04655966907739639, -0.01689756102859974, 0.011197094805538654, -0.018050307407975197, 0.005103007424622774, 0.005907820537686348, 0.0005877947551198304, -0.04332635924220085, -0.024151423946022987, -0.013207370415329933, 0.0009884440805763006, 0.006368215661495924, -0.0374220535159111, 0.03143339976668358, 0.013474470004439354, -0.03382324054837227, 0.028579652309417725, -0.023884324356913567, -0.01776915043592453, -0.055388014763593674, -0.04172376170754433, -0.027792412787675858, -0.03860291466116905, -0.04386055842041969, -0.03179890662431717, -0.033738892525434494, -0.015224674716591835, -0.0482184998691082, 0.007963784039020538, -0.0055704317055642605, 0.0064490484073758125, -0.017544222995638847, -0.023926498368382454, -0.015618295408785343, 0.025135474279522896, -0.008877545595169067, -0.001539336983114481, -0.007759945001453161, -0.03581945598125458, 0.030702391639351845, 0.0008689521928317845, -0.013959466479718685, 0.00880022719502449, -0.0030154134146869183, 0.030842971056699753, 0.00964369997382164, 0.004097869619727135, 0.016264958307147026, 0.008990009315311909, -0.00972804706543684, 0.021367965266108513, -0.03669104352593422, -0.025276053696870804, 0.008652620017528534, 0.0006747778388671577, 0.012975415214896202, 0.022211438044905663, -0.009383629076182842, 0.01928739994764328, 0.0236031673848629, -0.032726723700761795, -0.01871102675795555, 0.04296085610985756, -0.017178719863295555, -0.0013996368506923318, -0.03430120646953583, 0.03264237940311432, 0.009496091865003109, -0.027230096980929375, 0.004941341932862997, -0.010585577227175236, 0.02519170567393303, -0.002098137279972434, -0.03823741152882576, 0.05156427249312401, 0.025472862645983696, 0.007865379564464092, 0.021606948226690292, 0.022337958216667175, 0.01197027787566185, -0.05080514773726463, 0.029071679338812828, -0.007851321250200272, -0.010536374524235725, -0.02222549542784691, -0.014022726565599442, 7.698881381656975e-05, 0.002662209328263998, -0.004125985316932201, -0.01807842217385769, 0.014845112338662148, 0.02239418961107731, 0.023223603144288063, 0.002243987750262022, 0.03126470744609833, -0.03584757447242737, 0.0037288505118340254, -0.00263057928532362, 0.004473917651921511, -0.00991079956293106, 0.019399862736463547, -0.003136662533506751, -0.005507171154022217, 0.01830334961414337, 0.03567887842655182, 0.01235686894506216, 0.013896206393837929, 0.021761585026979446, -0.010599635541439056, -0.03790002316236496, 0.03148963302373886, 0.026780245825648308, 0.02138202264904976, 0.004435258451849222, 0.011646946892142296, 0.009236021898686886, -0.0022404734045267105, 0.0411333329975605, -0.013706425204873085, 0.00037033704575151205, 0.014135190285742283, 0.0411333329975605, 0.01672886684536934, 0.01227252185344696, 0.0047480459325015545, 0.001982159912586212, 0.010360651649534702, -0.02818603254854679, -0.0086807357147336, -0.012638026848435402, 0.01844392716884613, 0.0131511390209198, -0.012595852836966515, -0.0024671563878655434, -0.01554800570011139, -0.032726723700761795, -0.0323612205684185, 0.0027992737013846636, -0.0069024148397147655, 0.029802687466144562, 0.001127265626564622, 0.03098354861140251, -0.006188977975398302, 0.02772212214767933, 0.013235486112535, -0.008237912319600582, 0.00596756674349308, -0.035397719591856, -0.005338476970791817, -0.051001958549022675, -0.05072079971432686, -0.013980553485453129, 0.0005583610618487, 0.012708315625786781, 0.026892708614468575, -0.012096798978745937, -0.0044493163004517555, 0.024390406906604767, 0.017108429223299026, 0.027637775987386703, 0.016040030866861343, 0.022042741999030113, -0.0237718615680933, 0.019568556919693947, 0.015055980533361435, -0.01052231714129448, -0.020721303299069405, -0.006062457337975502, 0.032558031380176544, -0.007380382623523474, 0.02285810001194477, -0.005078406073153019, -0.007830234244465828, 0.00609408738091588, -0.024432580918073654, -0.0007433099672198296, -0.009671815671026707, -0.05443207919597626, -0.007007848937064409, -0.02620387263596058, 0.0284953061491251, 0.0014901343965902925, 0.017347414046525955, 0.009931886568665504, -0.004045152571052313, -0.01672886684536934, 0.02044014446437359, -0.0384342223405838, -0.02683647722005844, -0.01454989705234766, 0.021522602066397667, -0.013608019798994064, -0.035594530403614044, 0.010796445421874523, -0.002484728815034032, 0.03230498731136322, -0.04602547362446785, -0.006139775272458792, -0.019948119297623634, 0.03736582398414612, 0.008758054114878178, -0.02552909404039383, -0.023785918951034546, -0.004270078614354134, 0.01109166070818901, -0.014121131971478462, -0.034582365304231644, -0.018457984551787376, 0.041836224496364594, -0.019751310348510742, 0.013347948901355267, -0.015210617333650589, -0.031545862555503845, 0.04346694052219391, 0.01895001158118248, -0.014339028857648373, 0.0029416095931082964, -0.029212256893515587, 0.013875119388103485, -0.0033159004524350166, 0.0027781869284808636, 0.022675346583127975, -0.027764296159148216, -0.02124144323170185, 0.00424899160861969, -0.022113032639026642, -0.022619115188717842, -0.012884039431810379, 0.012546650134027004, 0.04546315595507622, -0.022605057805776596, 0.005197898019105196, 0.02856559492647648, -0.008012986741960049, -0.01622278429567814, 0.034947868436574936, -0.0022088431287556887, 0.034610480070114136, -0.0010842133779078722, 0.01861262135207653, -0.03312034532427788, 0.005644235294312239, -0.03598815202713013, -0.02801733836531639, 0.004343882203102112, -0.02299867756664753, 0.010782387107610703, -0.004354425705969334, -0.010613692924380302, -0.017389588057994843, -0.015252790413796902, -0.0061503187753260136, 0.01996217854321003, 0.017473934218287468, 0.0028994360473006964, -0.006396331824362278, -0.018739143386483192, 0.010023262351751328, -0.005777785088866949, 0.009025153703987598, 0.02080564945936203, -0.005103007424622774, 0.08243536204099655, 0.017951902002096176, -0.021705353632569313, 0.017150603234767914, -0.03719712793827057, 0.0037921108305454254, -0.022084916010499, 0.01776915043592453, 0.01723495125770569, -0.041048984974622726, -0.008069218136370182, -0.017712919041514397, 0.01205462496727705, 0.015182501636445522, -0.037618864327669144, -0.010086523368954659, 0.008821314200758934, -0.010367680341005325, 0.016981909051537514, 0.057328000664711, -0.012757518328726292, -0.001184375723823905, -0.02818603254854679, 0.022408246994018555, -0.005292788613587618, 0.011450136080384254, 0.0031278764363378286, 0.006807524245232344, 0.03430120646953583, 0.0033844325225800276, 0.016771040856838226, 0.0035250112414360046, -0.024798085913062096, -0.038153063505887985, 0.0021526115015149117, 0.013987582176923752, 0.0014831054722890258, 0.011133834719657898, -0.004568808246403933, 0.017923787236213684, -0.011696149595081806, -0.0044071427546441555, -0.011583685874938965, 0.0035759711172431707, -0.0011984335724264383, 0.005739125888794661, 0.013003530912101269, -0.01428279746323824, 0.0023828092962503433, -0.042370423674583435, 0.025613442063331604, 0.019638847559690475, 0.03936203941702843, -0.0025655615609139204, 0.0019540442153811455, -0.005619634408503771, 0.005675865802913904, -0.0007367203361354768, -0.01841581240296364, 0.006719662807881832, -0.021789701655507088, -0.030927317216992378, 0.05502250790596008, -0.004835907835513353, 0.004923769738525152, 0.015084096230566502, -0.013741569593548775, -0.03531337529420853, -0.008005958050489426, -0.008034073747694492, -0.025852425023913383, 0.03278295695781708, -0.01547771692276001, -0.003605843987315893, -0.0007771367090754211, 0.02367345616221428, 0.021494485437870026, -0.015407427214086056, -0.03936203941702843, -0.003099760739132762, -0.01320034172385931, 0.014085987582802773, 0.013924322091042995, 0.006413904018700123, 0.010311448946595192, 0.017656687647104263, 0.017726976424455643, -0.005682894494384527, 0.01803625002503395, -0.05569728836417198, 0.00942580308765173, 0.0512549988925457, 0.008427694439888, 0.024868374690413475, 0.007176543585956097, -0.008947835303843021, 0.05325121805071831, 0.019498268142342567, 0.005162753164768219, -0.024629391729831696, 0.013390122912824154, -0.009489063173532486, 0.013769685290753841, -0.01109166070818901, 0.006217093672603369, 0.02117115445435047, -0.014746706932783127, 0.010002175346016884, 0.015196559019386768, -0.017487991601228714, -0.01999029330909252, -0.0005341991200111806, -0.01060666423290968, -0.01208976935595274, -0.007823205552995205, 0.01663046143949032, 0.0003716549836099148, -0.006174920126795769, 0.010508258827030659, -0.030365003272891045, 0.007640453055500984, -0.03700031712651253, 0.0022879187017679214, 0.00027676436002366245, -0.005011631175875664, -0.01438120286911726, 0.03939015790820122, -0.01948421075940132, -0.06550968438386917, -0.011583685874938965, 0.017305240035057068, 0.008357404731214046, 0.012342811562120914, 0.020355798304080963, -0.015238733030855656, -0.008266028948128223, 0.03109601140022278, -0.003208709182217717, 0.010325506329536438, 0.002359965117648244, 0.007977842353284359, 0.02808762714266777, -0.0038377989549189806, 0.021199271082878113, 0.0016043545911088586, -0.003648017765954137, -0.014592071063816547, 0.02029956690967083, 0.012799692340195179, 0.022675346583127975, -0.009889712557196617, -0.040655363351106644, -0.033064115792512894, 0.011232239194214344, 0.007942697033286095, 0.024798085913062096, 0.019413920119404793, 0.004832393489778042, 0.0034617509227246046, 0.009868625551462173, 0.0004476553585845977, 0.004375512711703777, -0.00670911930501461, 0.01841581240296364, -0.002718440955504775, 0.013910263776779175, 0.048134151846170425, -0.037956252694129944, -0.020679129287600517, -0.005032718181610107, 0.04082405939698219, -0.011534484103322029, -0.02384215034544468, 0.0173614714294672, 0.010206014849245548, -0.013896206393837929, 0.020074641332030296, 0.018893780186772346, 0.04816226661205292, -0.03632554039359093, 0.032051946967840195, 0.014240624383091927, 0.009039211086928844, 0.008561244234442711, 0.03177078813314438, 0.012448245659470558, 0.002530416939407587, 0.020004350692033768, -0.0033492879010736942, 0.00714842788875103, 0.017965959385037422, 0.0014804695965722203, -0.005507171154022217, -0.010072465054690838, -0.01208976935595274, 0.013643164187669754, 0.020426087081432343, 0.004270078614354134, 0.038827840238809586, 0.02974645607173443, 0.043916791677474976, -0.0012502719182521105, -0.029830804094672203, 0.017544222995638847, 0.012202232144773006, 0.0013873361749574542, -0.012539621442556381, -0.03905276581645012, -0.02150854282081127, -0.012701286934316158, -0.003690191311761737, -0.012216290459036827, -0.013832945376634598, -0.004241962917149067, 0.011942162178456783, -0.011218181811273098, -0.012757518328726292, 0.010213043540716171, 0.02027145028114319, 0.018767258152365685, 0.0025550180580466986, 0.002040148712694645, 0.01003029104322195, -0.020510435104370117, -0.017614513635635376, -0.02856559492647648, 0.009960002265870571, 0.005254129413515329, 0.0012924455804750323, -0.028453132137656212, 0.042370423674583435, 0.05654076114296913, 0.020594781264662743, -0.011014342308044434, -0.009369571693241596, 0.022970562800765038, 0.01069101132452488, -0.012532592751085758, 0.007717771455645561, 0.017586397007107735, 0.0007969056023284793, 0.032726723700761795, -0.032192524522542953, 0.012884039431810379, -0.008912690915167332, 0.04743126034736633, 0.04192057251930237, -0.007513932418078184, 0.005805900786072016, 0.034273091703653336, -0.010374709032475948, -0.003690191311761737, -0.035791341215372086, -0.0013126537669450045, 0.022141147404909134, -0.014760765247046947, 0.025543153285980225, 0.004568808246403933, 0.02053854987025261, -0.001947015174664557, -0.007872408255934715, 0.028171975165605545, -0.03061804361641407, -0.015660468488931656, -0.01591351069509983, -0.012349840253591537, -0.013699395582079887, 0.02171941101551056, -0.0364098884165287, -0.03581945598125458, -0.02721603959798813, -0.005964051932096481, 0.028551537543535233, -0.012124914675951004, 0.01672886684536934, 0.004350911360234022, 0.028312552720308304, 0.025782136246562004, 0.021325791254639626, -0.02637256681919098, -0.005341991316527128, 0.017220892012119293, -0.022703463211655617, 0.013108965009450912, -0.02003246732056141, -0.009601525962352753, -0.008469867520034313, 0.006006225477904081, 0.023729687556624413, 0.03449801728129387, -0.01928739994764328, -0.012216290459036827, -0.0022721034474670887, 0.014226566068828106, -0.027061402797698975, -0.015337137505412102, -0.0023669940419495106, -0.021424196660518646, 0.0038659146521240473, 0.0056547787971794605, 0.0035601560957729816, -0.010929995216429234, -0.0033106287010014057, -0.013692366890609264, -0.03449801728129387, 0.02842501737177372, -0.029493413865566254, -0.015758873894810677, -0.013326861895620823, 0.014774823561310768, 0.004326310008764267, 0.02010275609791279, -0.037112779915332794, 0.0013231971533969045, 0.019160879775881767, 0.0002787412377074361, -0.015829162672162056, 0.014261710457503796, 0.005890248343348503, -0.001904841628856957, -0.02464344911277294, -0.009756162762641907, -0.03722524270415306, -0.0032227670308202505, 0.024151423946022987, 0.00538767920807004, -0.010951082222163677, -0.0028713203500956297, 0.01082456111907959, -0.010866735130548477, -0.040036819875240326, 0.0024197110906243324, 0.02687865123152733, -0.011070573702454567, 0.025599384680390358, 0.0175301656126976, 0.01350258570164442, 0.03548206761479378, 0.01648988388478756, 0.002175455680117011, 0.0032210098579525948, -0.0035970578901469707, 0.02343447133898735, 0.011534484103322029, 0.017853496596217155, 0.00824494194239378, -0.007042993791401386, -0.015337137505412102, 0.05943668261170387, 0.009749134071171284, -0.031714558601379395, 0.023153314366936684, -0.018767258152365685, -0.032895419746637344, -0.008645591326057911, -0.012652084231376648, 0.004389570560306311, 0.023814033716917038, -0.007169514428824186, 0.013854032382369041, -0.011056516319513321, -0.013762656599283218, 0.02606329321861267, -0.014859170652925968, -0.0038834870792925358, -0.009538265876471996, -0.04605358839035034, -0.0023494218476116657, -0.024910548701882362, -0.019399862736463547, 0.010901879519224167, -0.024601275101304054, -0.008441751822829247, -0.0241092499345541, -0.02775023877620697, 0.020285509526729584, -0.0018925409531220794, -0.003809683257713914, 0.034076280891895294, 0.03964319825172424, -0.0013609776506200433, 0.0018696968909353018, 0.043719980865716934, 0.033232808113098145, -8.154664101311937e-05, 0.022098973393440247, 0.0070675951428711414, 0.005292788613587618, 0.015660468488931656, 0.014184392057359219, -0.01193513348698616, -0.001961073139682412, -0.015533948317170143, 0.003157749306410551, -0.03250179812312126, 0.024137364700436592, -0.008589359931647778, 0.017614513635635376, 0.010466085746884346, -0.03247368335723877, 0.005071377381682396, 0.022141147404909134, -7.155237108236179e-05, -0.012469331733882427, -0.026597492396831512, -0.01740364544093609, -0.01743176020681858, -0.011646946892142296, 0.037956252694129944, 0.011513397097587585, 0.022366072982549667, -0.0014848626451566815, 0.0010314963292330503, -0.013347948901355267, 0.022127090021967888, 0.0193858053535223, -0.019315514713525772, 0.003872943576425314, -0.01057151984423399, -0.018401753157377243, 0.0008012987091206014, -0.011295500211417675, 0.015491774305701256, -0.01187187246978283, -0.00954529456794262, -0.029324719682335854, -0.007064080331474543, -0.05013037100434303, -0.018429869785904884, -0.011168979108333588, 0.009186819195747375, 0.005046776030212641, -0.0012450002832338214, -0.003957290668040514, 0.00022844041814096272, -0.015154385939240456, -0.007081652991473675, 0.006294412072747946, -0.014240624383091927, -0.01878131739795208, -0.01608220487833023, -0.0002631457755342126, -0.007984871044754982, 0.011977306567132473, -0.0003505681816022843, -0.07568757981061935, -0.033429618924856186, 0.022211438044905663, -0.0037288505118340254, -0.005349020007997751, 0.01871102675795555, -0.032923534512519836, -0.00854718592017889, 0.0017212106613442302, -0.002113952534273267, 0.00722574582323432, 0.01082456111907959, 0.0007231017807498574, -0.009383629076182842, -0.022914331406354904, 0.015055980533361435, -0.015407427214086056, -0.013565845787525177, -0.022773751989006996, 0.007795089855790138, -0.047965459525585175, -0.03064616024494171, 0.012342811562120914, 0.03331715613603592, -0.008230883628129959, -0.009418774396181107, 0.02063695527613163, -0.006445534061640501, -0.009657757356762886, 0.013572875410318375, -0.014760765247046947, -0.005886733531951904, -0.005148695316165686, 0.019765367731451988, -0.003257911652326584, 0.006905929651111364, -0.004582866095006466, 0.009531237185001373, -0.01648988388478756, -0.01817682757973671, -6.194249726831913e-05, 0.002734255976974964, 0.022984620183706284, -0.006796980742365122, 0.00269383960403502, 0.04622228071093559, -0.0367472767829895, 0.010676953941583633, -0.009988117963075638, -0.004610981792211533, -0.0009691145387478173, -0.005377135705202818, -0.017473934218287468, -0.013530701398849487, 0.015407427214086056, -0.015786990523338318, 0.0036093585658818483, 0.011731293983757496, 0.01675698347389698, 0.014957575127482414, 0.015997858718037605, 0.009116529487073421, -0.035594530403614044, -0.0065193381160497665, -0.01183672808110714, -0.017487991601228714, 0.04006493464112282, -0.008209796622395515, 0.0038413135334849358, 0.019920004531741142, 0.029802687466144562, -0.0076053086668252945, 0.007331179920583963, -0.01830334961414337, 0.005510685499757528, -0.0026112496852874756, 0.024193597957491875, -0.018626680597662926, -0.015688585117459297, 0.004596923943608999, 0.0677589401602745, -0.012131943367421627, 0.007802118547260761, -0.00854718592017889, -0.02765183337032795, 0.03283918648958206, 0.02117115445435047, 0.015730759128928185, 0.025669673457741737, 0.0053209043107926846, -0.022647231817245483, -0.002212357474491, 0.03553830087184906, 0.027103576809167862, 0.0018486101180315018, 0.022337958216667175, 0.00740849832072854, 0.0011931618209928274, 0.01639147847890854, 0.018457984551787376, -0.011907016858458519, -0.01993406191468239, 0.007696684915572405, -3.594092413550243e-05, -0.0108737638220191, 0.0077318293042480946, 0.013080849312245846, -0.0020629926584661007, 0.004062724765390158, -0.004048666916787624, -0.004547721706330776, 0.0050748917274177074, 0.026920823380351067, 0.009784278459846973, -0.01100731361657381, 0.013741569593548775, -0.007296035531908274, -0.010817532427608967, -0.0064912224188447, 0.009327397681772709, 0.006582598201930523, -0.011998393572866917, 0.006839154753834009, -0.010009204968810081, 0.003219252685084939, 0.02003246732056141, -0.005088949576020241, 0.02943718247115612, -0.0031788363121449947, -0.03129282221198082, -0.03522902727127075, 0.0012397285318002105, -0.014859170652925968, -0.002365236869081855, -0.03297976776957512, 0.01668669283390045, 0.020116813480854034, -0.012462303042411804, -0.00828008633106947, -0.011949190869927406, -0.02167723886668682, 0.018739143386483192, 0.0019558013882488012, -0.04757183790206909, -0.02775023877620697, 0.00020449810835998505, -0.016813214868307114, -0.002456613117828965, -0.012167087756097317, 0.03896842151880264, 0.01481699664145708, 0.01574481651186943, -0.002275618026033044, -0.005461483262479305, 0.01803625002503395, 0.00473750289529562, 0.010761301033198833, -0.013727511279284954, 0.0219162218272686, -0.027736181393265724, -0.014275768771767616, 0.004417686257511377, 0.006445534061640501, 0.012954329140484333, 0.0018661824287846684, -0.00841363612562418, -0.003904573852196336, -0.013938379473984241, 0.014606128446757793, -0.01962478831410408, 0.006118688732385635, -0.017614513635635376, 0.0067020901478827, 0.0015173715073615313, -0.01456395536661148, -0.015365254133939743, -0.018148712813854218, 0.03657858073711395, 0.02782052755355835, 0.010269274935126305, -0.026246046647429466, -1.9494314983603545e-05, 0.023617224767804146, 0.005556373856961727, 0.014240624383091927, -0.015576121397316456, -0.015632353723049164, -0.004909711889922619, -0.011738322675228119, -0.002113952534273267, 0.003778052981942892, 0.0010517045157030225, -0.033935703337192535, 0.006333071272820234, 0.01871102675795555, -0.014374174177646637, -0.004270078614354134, 0.00728197768330574, 0.026147641241550446, -0.014479607343673706, -0.007942697033286095, 0.011337673291563988, 0.0033176576253026724, 0.03179890662431717, -0.012659113854169846, 0.0002870880998671055, 0.0075279902666807175, -0.015309021808207035, -0.0023775375448167324, -0.013980553485453129, 0.00011070573964389041, 0.006839154753834009, -0.023659398779273033, 0.004677756689488888, -0.0014233594993129373, 0.02114303968846798, 0.012497447431087494, 0.013474470004439354, -0.03894030302762985, -0.0064068748615682125, -0.038321759551763535, -0.0009612069698050618, 0.023715630173683167, -0.008884575217962265, 0.005974595434963703, 0.017628571018576622, -0.02912791073322296, -0.0007332058739848435, 0.027061402797698975, 0.004284136462956667, -0.012349840253591537, 0.0026832963339984417, 0.017586397007107735, -0.0059464797377586365, -0.010353622026741505, 0.004667213186621666, -0.003094488987699151, -0.008399578742682934, -0.008041102439165115, -0.03230498731136322, 0.03430120646953583, 0.025472862645983696, -0.013544759713113308, -0.05308252200484276, -0.005025689024478197, 0.005127608776092529, -0.015871336683630943, -0.04565996676683426, -0.013811859302222729, -0.004178702365607023, 0.012567737139761448, -0.007738858461380005, 0.009721018373966217, -0.021466370671987534, 0.002249259501695633, 0.007204659283161163, 0.03317657858133316, -0.03196759894490242, -0.0005609969375655055, -0.003293056506663561, -0.014859170652925968, -0.019948119297623634, 0.0037007348146289587, 0.011429050005972385, 0.038490451872348785, -0.0043649692088365555, -0.012588824145495892, -0.0034775659441947937, 0.02282998338341713, 0.016967851668596268, -0.004087326116859913, -0.011253326199948788, -0.013108965009450912, 0.0032543973065912724, 0.005482569802552462, 0.013144110329449177, -0.00011246297071920708, -0.022337958216667175, 0.004793734289705753, -0.003753451630473137, -0.018359581008553505, 0.015294964425265789, 0.03891218826174736, -0.01634930446743965, 0.01345338299870491, -0.012722373940050602, 0.004628554452210665, 0.019470151513814926, 0.006839154753834009, -0.014578012749552727, 0.016546115279197693, -0.002604220760986209, -0.003020685166120529, -0.003967834170907736, 0.002750071231275797, 0.02316737174987793, 0.014374174177646637, 0.01074021402746439, -0.008856459520757198, -0.006020283326506615, -0.0018855120288208127, 0.0008997037657536566, -0.0061081452295184135, 0.001925928401760757, 0.011632888577878475, 0.01885160617530346, 0.00491322623565793, -5.925173172727227e-05, 0.045238230377435684, -0.00366207561455667, 0.025908658280968666, -0.006726691499352455, 0.01421250868588686, -0.011766438372433186, 0.014774823561310768, -0.004203303717076778, -0.01003029104322195, 0.011907016858458519, 0.017389588057994843, -0.0031700499821454287, 0.012884039431810379, -0.0068602412939071655, -0.043719980865716934, -0.018739143386483192, -0.024966780096292496, -0.00023261384922079742, 0.01407895889133215, -0.004733988083899021, -0.006934045348316431, -0.01601191610097885, 0.00982645247131586, 0.0062803542241454124, -0.01875320076942444, -0.01161883119493723, -0.011049486696720123, 0.01887972094118595, 0.004614496137946844, 0.0013838217128068209, -0.0029714826960116625, -0.0020946229342371225, 0.020651012659072876, -0.01554800570011139, 0.024980837479233742, -0.01952638290822506, -0.0357351079583168, -0.034441784024238586, -0.02357505075633526, 0.023982729762792587, 0.026428798213601112, -0.017473934218287468, -0.008533128537237644, 0.014437434263527393, 0.022633172571659088, -0.004305223003029823, 0.02323766238987446, -0.006596656050533056, -0.0003022442397195846, 0.0019751309882849455, 0.02268940396606922, 0.00494837062433362, 0.003605843987315893, 0.02801733836531639, 0.02066507190465927, -0.005566917359828949, 0.013080849312245846, 0.015140327624976635, 0.004178702365607023, -0.0027518284041434526, -0.001978645334020257, -0.010269274935126305, -0.00494837062433362, -0.002593677258118987, 2.339317688893061e-05, 0.004424714948982, 0.020988402888178825, 0.025838367640972137, -0.010114639066159725, -0.01456395536661148, -0.009355513378977776, -0.007296035531908274, 0.011815641075372696, 0.014043813571333885, -0.011400934308767319, -0.006849697791039944, -0.008301173336803913, 0.03416062891483307, 0.011204123497009277, -0.054910045117139816, -0.009756162762641907, -0.003929174970835447, 0.003126119263470173, 0.011443107388913631, 0.003918631933629513, 0.0033475307282060385, 0.00012366533337626606, 0.007781032007187605, -0.0014216023264452815, 0.005426338408142328, 0.00468830019235611, -0.00326669798232615, -0.024151423946022987, -0.007738858461380005, -0.0509176105260849, -0.01675698347389698, -0.0030154134146869183, 0.0021895135287195444, 0.01082456111907959, 0.006027312483638525, 0.002890649950131774, -0.04141448810696602, -0.009418774396181107, 0.018331464380025864, -0.0037077637389302254, 0.021114923059940338, -0.019301457330584526, -0.000441065727500245, -0.04377621412277222, 0.014128160662949085, -0.032558031380176544, -0.0017827138071879745, -0.017347414046525955, 0.023209545761346817, 0.009320368990302086, 0.02734255976974964, -0.015955684706568718, 0.027440965175628662, -0.022942446172237396, -0.004456345457583666, 0.0015621809288859367, -0.027117634192109108, -0.018795374780893326, 0.01830334961414337, 0.01126035489141941, -0.017445819452404976, -0.004386055748909712, -0.0020383913069963455, 0.019568556919693947, 0.05297005921602249, 0.012202232144773006, -0.005721553694456816, -0.03382324054837227, 0.0010420397156849504, 0.004361454863101244, -0.02565561607480049, -0.011239268817007542, 0.0012502719182521105, -0.019104648381471634, -0.008427694439888, 0.01193513348698616, -0.0023459072690457106, -0.0009489063522778451, -0.0009374843211844563, -0.008055160753428936, 0.008877545595169067, 0.03716901317238808, -0.001961073139682412, 0.02292838878929615, -0.038799725472927094, -0.002275618026033044, -0.01367127988487482, 0.008772111497819424, -0.01668669283390045, 0.020187104120850563, -0.019413920119404793, -0.023251719772815704, -0.027426907792687416, 0.006013254635035992, -0.014156276360154152, -0.0034775659441947937, 0.013973524793982506, -0.006912958342581987, -0.007380382623523474, 0.009981089271605015, 0.009938915260136127, -0.03486352041363716, 0.0330359973013401, -0.010951082222163677, 0.01099325530230999, -0.03486352041363716, 0.027201982215046883, 0.02150854282081127, -0.02946529909968376, 0.0130667919293046, 0.02073536068201065, 0.0012687229318544269, 0.022801868617534637, 0.012293608859181404, -0.034610480070114136, -0.001690459088422358, -0.010599635541439056, 0.004294679965823889, -0.002741284901276231, -0.002927551744505763, -0.010149783454835415, 0.01092296652495861, -0.008975951001048088, 0.005545830354094505, 0.011183036491274834, 0.0046636988408863544, 0.00482184998691082, 0.0019979749340564013, -0.004319280851632357, 0.021592890843749046, 0.00920790620148182, 0.009306310676038265, 0.011084632016718388, 0.02029956690967083, -0.004712901543825865, -0.0062452093698084354, 0.01043797004967928, -0.0019435007125139236, 0.004958914127200842, 0.0037429083604365587, 0.03132093697786331, 0.014620186761021614, -0.01918899454176426, -0.01625089906156063, 0.005426338408142328, 0.023223603144288063, -0.016264958307147026, -0.00705705164000392, -0.013593961484730244, -0.044422876089811325, 0.014901343733072281, 0.016700752079486847, -0.020819708704948425, -0.012813749723136425, 0.01871102675795555, -0.004628554452210665, -0.001664979150518775, -0.0003334351349622011, 0.00683563994243741, -0.0009972302941605449, 0.01581510528922081, -0.016363361850380898, -0.016096262261271477, -0.005131123121827841, -0.012919183820486069, 0.004804277792572975, -0.004104898311197758, 0.0008737845928408206, -0.02758154459297657, -0.01601191610097885, 0.007071109488606453, -0.017473934218287468, 0.02603517845273018, -0.005363077856600285, -0.00306813046336174, -0.006993791088461876, -0.008807256817817688, 0.001002501929178834, -0.016447709873318672, -0.0029908122960478067, 0.01820494420826435, -0.0018169799586758018, 0.006628286559134722, -0.009011095389723778, -0.02387026697397232, -0.008793198503553867, -0.018317406997084618, -0.009446890093386173, -0.001952286926098168, -0.010304420255124569, 0.0175301656126976, -0.018486101180315018, 0.05384164676070213, 0.0076826270669698715, 0.019905947148799896, 0.004582866095006466, 0.0058691613376140594, -0.02282998338341713, 0.003022442338988185, 0.024292001500725746, 0.0024671563878655434, -0.011625859886407852, -0.009889712557196617, -0.007956755347549915, -0.0008373219752684236, 0.019920004531741142, -0.017994076013565063, -0.0011632888345047832, 0.0020278480369597673, 0.006034341175109148, -0.011422020383179188, 0.040317974984645844, 0.019512325525283813, -0.0001164167479146272, -0.02447475492954254, -0.013397151604294777, -0.010360651649534702, 0.0076545109041035175, -0.008828343823552132, 0.02282998338341713, 0.024980837479233742, 0.03193948417901993, 0.012560708448290825, 0.002688567852601409, -0.0007195873185992241, -0.009981089271605015, -0.009236021898686886, 0.022239552810788155, 0.01591351069509983, 0.014578012749552727, -0.006167890969663858, 0.012715345248579979, 0.015070038847625256, -0.012146000750362873, 0.037815675139427185, 0.008652620017528534, -0.017305240035057068, -0.008589359931647778, 0.006930530536919832, -0.008828343823552132, 0.030393118038773537, -0.02201462723314762, -0.03548206761479378, -0.01445149164646864, 0.014317941851913929, 0.009081385098397732, -0.01965290494263172, -0.024699680507183075, -0.010423911735415459, -0.0027307416312396526, -0.005517714656889439, 0.004909711889922619, 0.01641959324479103, 0.010698040015995502, -0.012954329140484333, -0.03621307760477066, -0.003943232819437981, 0.0019329573260620236, 0.010170870460569859, -0.004909711889922619, 0.012131943367421627, -0.022942446172237396, -0.01069101132452488, 0.0004691814538091421, 0.007907552644610405, -0.007060565985739231, -0.012434187345206738, 0.022281726822257042, 0.00844878051429987, 0.02100246027112007, 0.02637256681919098, 0.0014418105129152536, 0.013256573118269444, -0.002707897452637553, 0.0031296336092054844, 0.005134637467563152, 0.0030857028905302286, 0.0007494603050872684, -0.005190869327634573, 0.0010921208886429667, 0.020932171493768692, -0.033710777759552, -0.0027676434256136417, 0.00844878051429987, 0.0002890649775508791, -0.014064900577068329, 0.010290361940860748, 0.008146536536514759, -0.012581795454025269, -0.020173046737909317, 0.01109166070818901, -0.014662359841167927, 0.01618061028420925, 0.025430690497159958, 0.0005456211511045694, -0.002665723906829953, -0.012736431322991848, -0.0034986527170985937, 0.01327063050121069, 0.0013065034290775657, -0.009320368990302086, 0.003855371382087469, -0.02138202264904976, -0.012659113854169846, -0.012645055539906025, -0.006986762396991253, 0.0032649405766278505, 0.0027834586799144745, 0.00368316238746047, 0.0019083560910075903, -0.015070038847625256, -0.020791592076420784, -0.005812929943203926, -0.008287115022540092, -0.01986377313733101, -0.01709437184035778, 0.018162770196795464, 0.01324954442679882, -0.024137364700436592, -0.005703981500118971, 0.0014049086021259427, -0.012279550544917583, 0.006062457337975502, -0.007042993791401386, 0.008153565227985382, -0.021831873804330826, -0.012778605334460735, 0.00880022719502449, 0.021972453221678734, -0.01416330598294735, 0.0027641290798783302, -0.01065586693584919, 0.010599635541439056, 0.012785634025931358, 0.011822669766843319, 0.007781032007187605, 0.01993406191468239, -0.0031700499821454287, -0.020777534693479538, -0.022295784205198288, 0.017220892012119293, -0.007401469629257917, 0.026695897802710533, -0.02131173387169838, 0.00035781675251200795, -0.000548256968613714, -0.0051592388190329075, -0.0013917293399572372, -0.020594781264662743, 0.017459876835346222, -0.01618061028420925, 0.014015697874128819, 0.005630177445709705, 0.004832393489778042, -0.005949994083493948, -0.0017897427314892411, -0.016025973483920097, -0.009489063173532486, 0.005405251868069172, 0.008975951001048088, 0.021972453221678734, -0.013748598285019398, -0.005317389965057373, 0.012539621442556381, 0.002122738631442189, -0.007053537294268608, 0.0012643298832699656, -0.008603417314589024, 0.001335497829131782, -0.00622060801833868, -0.008772111497819424, 0.012469331733882427, 0.015871336683630943, -0.0027272270526736975, 0.019329573959112167, -0.007246832828968763, -0.01656017266213894, -0.03163021057844162, 0.02044014446437359, 0.0022527738474309444, -0.01969507895410061, 0.00269383960403502, -0.001962830312550068, 0.02370157092809677, -0.004006493370980024, -0.0002457931113895029, -0.018022190779447556, -0.014324971474707127, 0.017291182652115822, 0.009903770871460438, 0.005349020007997751, -0.010339564643800259, -0.01175238098949194, -0.010929995216429234, 0.005057319533079863, 0.0011228724615648389, 0.011358760297298431, -0.01861262135207653, -0.019807541742920876, -0.028846751898527145, -0.00964369997382164, -0.005257644224911928, -0.04298897087574005, -0.022070858627557755, 0.00547905545681715, -0.019413920119404793, -0.004586380440741777, 0.020594781264662743, -0.0019312001531943679, -0.01367127988487482, -0.007401469629257917, 0.012497447431087494, 0.006804009899497032, 0.008343346416950226, -0.015604237094521523, -0.0017053955234587193, -0.010845648124814034, -0.011541512794792652, 0.01208976935595274, 0.015140327624976635, 0.0050397468730807304, -0.023729687556624413, 0.038153063505887985, 0.0066177430562675, -0.005591518245637417, 0.013896206393837929, 0.0011202367022633553, 0.015463658608496189, 0.015576121397316456, -0.004804277792572975, 0.01757233962416649, -0.009889712557196617, -0.022872157394886017, 0.003229795955121517, -0.009587468579411507, -0.019582614302635193, 0.0001469486887799576, -0.03312034532427788, 0.004069753922522068, -0.007900523953139782, 0.0055704317055642605, -2.2995052859187126e-05, 0.009650728665292263, -0.011429050005972385, 0.0002589723444543779, 0.012202232144773006, 0.015140327624976635, 0.006308469921350479, -0.0004366726498119533, -0.001769534545019269, -0.019877830520272255, -0.024629391729831696, -0.005939450580626726, -0.008336317725479603, -0.0055352868512272835, 0.00687781348824501, 0.02056666649878025, 0.016405535861849785, -0.025754021480679512, 0.030533697456121445, 0.0009120044414885342, 0.008322260342538357, -0.0044493163004517555, -0.0013065034290775657, 0.019006242975592613, 0.018261175602674484, -0.0009541780455037951, 0.024418523535132408, -0.006846183445304632, -0.008153565227985382, 0.0071097686886787415, 0.0005337598267942667, 0.0009840510319918394, -0.004024065565317869, -0.006572055164724588, -0.021789701655507088, 0.014353087171912193, -0.03312034532427788, -0.013769685290753841, 0.013059762306511402, -0.0050397468730807304, 0.00521898502483964, 0.000360232952516526, -0.017108429223299026, 0.021958395838737488, -0.0002708336978685111, -0.00939065869897604, -0.012476361356675625, -0.020243335515260696, 0.002291433047503233, 0.00962964165955782, 0.0009172761347144842, 0.002532174112275243, -0.014001640491187572, -0.00728197768330574, -0.003020685166120529, 0.016025973483920097, 0.005380650516599417, 0.023378239944577217, -0.006572055164724588, -0.019666962325572968, -0.002426740014925599, 0.002312519820407033, -0.00016715687524992973, 0.005573946051299572, -0.0028678057715296745, -0.022267669439315796, -0.0018978127045556903, 0.02755342796444893, 0.02027145028114319, -0.023279834538698196, 0.0022264153230935335, 0.0044914898462593555, -0.004234933760017157, 0.010184927843511105, 0.013277660124003887, 0.014479607343673706, 0.0033317154739052057, -0.0006071243551559746, 0.005464997608214617, 0.014999749138951302, -0.011386875994503498, -0.009306310676038265, -0.0010402825428172946, -0.015927568078041077, -0.010599635541439056, 0.0019294428639113903, 0.01353773009032011, -0.011302528902888298, -0.013544759713113308, -0.004210332408547401, 0.005819958634674549, -0.03688785433769226, -0.009833481162786484, -0.000448753620730713, 0.0006949860253371298, -0.004972971975803375, 0.02131173387169838, -0.008209796622395515, 0.0016957307234406471, 0.010585577227175236, 0.0028467189986258745, 0.022956503555178642, -0.0037815675605088472, 0.010198986157774925, 0.004537178203463554, -0.02784864418208599, 0.0014997991966083646, 0.025008954107761383, 0.0027887301985174417, 0.006586113013327122, 0.006515823304653168, -0.0010148026049137115, 0.009130587801337242, -0.006371730472892523, -0.005377135705202818, 0.01547771692276001, 0.0036550466902554035, -0.005735611543059349, -0.0030031127389520407, -0.013593961484730244, 0.010557461529970169, 0.0071097686886787415, -0.004765618592500687, -0.012096798978745937, -0.0008276571752503514, -0.0019136277260258794, 0.013094907626509666, -0.0034986527170985937, 0.00487105268985033, -0.010845648124814034, -0.0032174952793866396, 0.014676418155431747, -0.0051943836733698845, -0.005949994083493948, -0.010796445421874523, 0.012146000750362873, 0.01827523298561573, 0.01663046143949032, 0.013221428729593754, -0.0025409602094441652, 0.008905661292374134, -0.0056969523429870605, 0.0045617795549333096, 0.004357940051704645, -0.0028467189986258745, 0.0011307800887152553, 0.015013806521892548, -0.023378239944577217, 0.02434823289513588, 0.02070724405348301, -0.00736632477492094, 0.0003435392281971872, 0.0022457449231296778, 0.0025444747880101204, -0.0021438254043459892, -0.004976486787199974, -0.029240373522043228, 0.02090405486524105, 0.00530333211645484, 0.020412029698491096, 0.0012493933318182826, 0.010283333249390125, -0.0007419920293614268, -0.020327681675553322, -0.014620186761021614, 0.01324954442679882, 0.02562749944627285, 0.007239803671836853, -0.01743176020681858, -0.011302528902888298, 0.0034564791712909937, 0.010543404147028923, 0.011028400622308254, -0.0018661824287846684, 0.004350911360234022, 0.008308202028274536, -0.002959182020276785, 0.03210818022489548, 0.007823205552995205, -0.006730205845087767, 0.008722909726202488, -0.007053537294268608, -0.003714792663231492, -0.007781032007187605, -0.017220892012119293, -0.021199271082878113, -0.020791592076420784, 0.014985690824687481, -0.012792663648724556, 0.0022527738474309444, 0.01648988388478756, -0.0037007348146289587, -0.015210617333650589, 0.010325506329536438, -0.0014523538993671536, 0.008751025423407555, 0.035931918770074844, 0.013130052015185356, 0.03733770549297333, -0.011766438372433186, -0.010255217552185059, -0.007977842353284359, 0.010564490221440792, 0.0024302545934915543, -0.005500142462551594, -0.019638847559690475, -0.022197378799319267, 0.010374709032475948, -0.026189815253019333, -0.011218181811273098, -0.015969742089509964, 0.00487105268985033, -0.0013003530912101269, 0.004800762981176376, -0.0005609969375655055, -0.01464830245822668, 0.012616939842700958, 0.02171941101551056, 0.022956503555178642, -0.0076123373582959175, 0.0008518191752955317, -0.0022106003016233444, 0.025936773046851158, 0.0246153324842453, 0.010339564643800259, 0.014507723972201347, 0.0031331481877714396, 0.006466621067374945, 0.010648837313055992, -0.02302679419517517, -0.005510685499757528, -0.0039959498681128025, -0.003168292809277773, -0.015969742089509964, 0.016574230045080185, 0.040008701384067535, 0.0001384920033160597, 0.02100246027112007, 0.016616404056549072, 0.02181781642138958, -0.013664251193404198, -0.020679129287600517, -0.00054254598217085, 0.020524492487311363, 0.015112211927771568, -0.01767074503004551, 0.015702642500400543, -0.006557997316122055, 0.0281579177826643, 0.016883503645658493, 0.014606128446757793, 0.004428229760378599, 0.008434723131358624, 0.018289290368556976, -0.004614496137946844, 0.0021490971557796, 0.02357505075633526, 0.007513932418078184, 0.0029908122960478067, 0.020046524703502655, -0.0029978412203490734, 0.032192524522542953, 0.019132763147354126, 0.0031612638849765062, 0.014324971474707127, 0.009805365465581417, 0.02124144323170185, 0.02063695527613163, -0.0015911753289401531, 0.015238733030855656, 0.013727511279284954, -0.014374174177646637, -0.01827523298561573, 0.0013952438021078706, 0.02080564945936203, 0.010402824729681015, -0.011393904685974121, 0.03163021057844162, -0.004143557511270046, 0.0050397468730807304, -0.009074356406927109, -0.010058406740427017, 0.001989188836887479, -0.005426338408142328, -0.019638847559690475, 0.007443643175065517, 0.01099325530230999, 0.009706960059702396, 0.03553830087184906, 0.03753451630473137, -0.023856207728385925, -0.009130587801337242, 0.0007679112604819238, -0.00613626092672348, -0.03683162480592728, -0.0075631351210176945, 0.008336317725479603, -0.0019804027397185564, 0.01215303037315607, 0.0006110781105235219, -0.010965139605104923, -0.005004602484405041, -0.004684785846620798, 0.015435542911291122, 0.01665857806801796, 0.002818603301420808, -0.01807842217385769, -0.009299281984567642, -0.005338476970791817, 0.0044071427546441555, 0.004452830646187067, 0.0012722373940050602, -0.0056547787971794605, -0.01057151984423399, 0.023111140355467796, -0.013938379473984241, -0.0022879187017679214, 0.004136528819799423, -0.010283333249390125, 0.005957023240625858, -0.012813749723136425, 0.007130855228751898, -0.021283617243170738, -0.015632353723049164, 0.013024617917835712, 0.009250079281628132, -0.006912958342581987, -0.01999029330909252, -0.004551236052066088, -0.0010218315292149782, -0.001628955826163292, -0.002061235485598445, -0.011555570177733898, -0.026695897802710533, -0.009538265876471996, 0.006863755639642477, 0.008645591326057911, 0.008751025423407555, -0.0059113348834216595, 0.01723495125770569, 0.001748447772115469, 0.015098154544830322, -0.02529011107981205, -0.004463374149054289, 0.02299867756664753, -0.01183672808110714, 0.001670250901952386, 0.0029626963660120964, 0.0038870014250278473, -0.026752129197120667, -0.020116813480854034, 0.0018591535044834018, 0.016138436272740364, 0.00731712207198143, 0.00026116889785043895, 0.005886733531951904, -0.009383629076182842, 0.01328468881547451, -0.012117885053157806, -0.011105719022452831, -0.020018409937620163, -0.0007318879361264408, -0.007102739531546831, 0.02312519960105419, -0.009847539477050304, 0.023659398779273033, -0.023420413956046104, 0.005566917359828949, -0.01311599463224411, 0.02114303968846798, 0.011267384514212608, 0.0036866767331957817, 0.019104648381471634, 0.012434187345206738, 0.02673807181417942, -0.022197378799319267, -0.006677489262074232, -0.008308202028274536, -0.004885110538452864, 0.03615684434771538, -0.010641808621585369, -0.008230883628129959, -0.002254531253129244, -0.006610714364796877, -0.007830234244465828, 0.0009128830279223621, 0.023111140355467796, -0.007443643175065517, 0.006171405781060457, -0.009348484687507153, -0.0030031127389520407, 0.003669104538857937, -0.0085963886231184, -0.008237912319600582, 0.008975951001048088, 0.012820779345929623, 0.009243050590157509, 0.01682727225124836, -0.0044422876089811325, 0.011274413205683231, 0.006923501845449209, -0.020693186670541763, 0.028214149177074432, -0.009503121487796307, 0.009186819195747375, 0.009903770871460438, -0.029521530494093895, 0.011267384514212608, -0.0031647784635424614, 0.024699680507183075, 0.0028572625014930964, -0.007513932418078184, -0.005739125888794661, -0.011485281400382519, -0.014929459430277348, -0.011414991691708565, 0.0009629642008803785, 0.025346342474222183, -0.010044349357485771, 0.008258999325335026, -0.0008518191752955317, -0.011759409680962563, -0.01658828929066658, -0.01069101132452488, 0.03497598320245743, 0.002040148712694645, 0.028171975165605545, -0.004414171911776066, 0.0010886064264923334, -0.002525145187973976, -0.017797265201807022, 0.0034828376956284046, 0.02333606779575348, 0.0007995414780452847, -0.008308202028274536, -1.5169871403486468e-05, 0.015196559019386768, 0.013931350782513618, -0.026794303208589554, -0.02232390083372593, -0.008568272925913334, -0.021100865676999092, 0.0077248006127774715, -0.02582431025803089, -0.038855958729982376, 0.003444178495556116, -0.001737025799229741, -0.013481498695909977, 0.0023529361933469772, -0.00982645247131586, -0.008420664817094803, -0.022211438044905663, -0.009622612968087196, -0.004048666916787624, 0.004118956159800291, -0.004477431997656822, -0.015140327624976635, 0.02292838878929615, 0.00920790620148182, 0.005711010191589594, -0.02171941101551056, 0.01574481651186943, -0.0003857128613162786, 0.01240607164800167, 0.005851589143276215, 0.003565427614375949, -0.034610480070114136, 0.015351195819675922, -0.004403628408908844, -0.01564641110599041, 0.003830770030617714, 0.005742640700191259, 0.00015046315093059093, -0.00415761535987258, -0.01235686894506216, 0.008048131130635738, -0.0364098884165287, -1.8794165953295305e-05, 0.007310093380510807, 0.0015648168046027422, 0.019371747970581055, 0.023785918951034546, -0.02738473378121853, -0.013629106804728508, 0.02775023877620697, -0.010290361940860748, -0.009496091865003109, 0.0047410172410309315, -0.008891603909432888, -0.0071589709259569645, 0.01665857806801796, -0.013572875410318375, -0.023898381739854813, 0.0055704317055642605, 0.0019347146153450012, 0.019849713891744614, -0.022675346583127975, -0.014929459430277348, -0.01180158369243145, 0.006238180678337812, 0.017206834629178047, -0.010972169227898121, 0.0008118420955725014, 0.015210617333650589, 0.00735929561778903, 0.0033018426038324833, -0.007457701023668051, 0.016742924228310585, -0.0030821883119642735, 0.004502033349126577, 0.011949190869927406, 0.018964068964123726, -0.005995682440698147, 0.00534550566226244, -0.008912690915167332, 0.011133834719657898, 0.018795374780893326, -0.0020225762855261564, 0.0027746723499149084, -0.009622612968087196, 0.02637256681919098, -0.0006044884794391692, -0.008371462114155293, 0.0002761053910944611, -0.017516108229756355, -0.00352852582000196, -0.0012792663183063269, -0.007042993791401386, -0.0085120415315032, 0.004245477262884378, 0.036466117948293686, -0.00486402353271842, 0.005190869327634573, -0.04959617182612419, -0.004649640992283821, -0.006473649758845568, 0.011323615908622742, 0.006069486029446125, 0.016813214868307114, 0.004498519003391266, 0.01892189495265484, 0.02647097222507, 0.006796980742365122, -0.01689756102859974, 0.02097434364259243, 0.009018125012516975, 0.012975415214896202, 0.006185463629662991, 0.015590179711580276, -0.0035794854629784822, -0.023350125178694725, 0.007085167337208986, 0.005254129413515329, -0.002790487604215741, -0.008308202028274536, -0.006642344407737255, 0.008392549119889736, -0.01605409011244774, 0.02167723886668682, 0.002289675874635577, -0.0076123373582959175, -0.008568272925913334, 0.004477431997656822, -0.01663046143949032, 0.01996217854321003, -0.0031805934850126505, 0.0060308268293738365, -0.006420932710170746, 0.004336853511631489, -0.012286580167710781, 0.004726959392428398, -0.015280906111001968, -0.0015516375424340367, 0.019442036747932434, -0.0055704317055642605, -0.03969942778348923, 0.0032385822851210833, 0.011625859886407852, -0.022450421005487442, -0.004509062506258488, 0.010480143129825592, -0.009123559109866619, 0.019245225936174393, -0.009355513378977776, 0.023251719772815704, -0.03328904137015343, -0.022408246994018555, -0.009538265876471996, 0.008856459520757198, 0.016194667667150497, -0.000110211520222947, 0.01668669283390045, -0.017150603234767914, 0.008968922309577465, 0.019062474370002747, 0.003324686549603939, 0.006210064981132746, -0.0011492309859022498, -0.0012151272967457771, -0.02029956690967083, -0.016883503645658493, 0.015604237094521523, 0.010177899152040482, 0.008793198503553867, 0.01183672808110714, -0.0011887687724083662, 0.009601525962352753, -0.01109166070818901, -0.003669104538857937, 0.006027312483638525, -0.012082740664482117, 0.013144110329449177, 0.008251970633864403, 0.023476645350456238, 0.00714842788875103, 0.022295784205198288, 0.006529881153255701, 0.0022844041232019663, -0.0134885273873806, -0.01982159912586212, -0.029690224677324295, -0.0014277525478973985, 0.008533128537237644, 0.011984335258603096, 0.014423375949263573, 0.010220072232186794, -0.008237912319600582, 0.0006440262659452856, 0.005148695316165686, -0.0063225277699530125, 0.002342392923310399, -0.013910263776779175, 0.0023002191446721554, 0.015632353723049164, 0.012877010740339756, -0.03655046597123146, 0.008666678331792355, 0.0005258522578515112, -0.0009532994008623064, -0.0010446755914017558, 0.009025153703987598, 0.005408766213804483, 0.005640720948576927, 0.024024901911616325, -0.020158987492322922, 0.0018275233451277018, -0.012940270826220512, 0.021733470261096954, 0.007935668341815472, 0.0011676819995045662, 0.015491774305701256, -0.0042560207657516, 0.011928103864192963, -0.000949784938711673, 0.0020278480369597673, 0.006164376623928547, 0.0173614714294672, -0.02690676599740982, 0.008399578742682934, -0.018640737980604172, 0.009320368990302086, -0.0056126052513718605, -0.0036093585658818483, 0.0047410172410309315, 0.006705604959279299, -0.021255502477288246, 0.012736431322991848, 0.014233594760298729, -0.0076545109041035175, 0.00731712207198143, 0.005725068040192127, -0.008476896211504936, 0.010072465054690838, 0.013657222501933575, -0.01632118970155716, 0.021016517654061317, 0.015660468488931656, -0.011977306567132473, -0.023083025589585304, 0.0017422974342480302, -0.007802118547260761, 0.00871588010340929, -0.014831054955720901, 0.02336418256163597, -0.005138152278959751, -0.01445149164646864, 0.004178702365607023, -0.0049448562785983086, 0.00952420849353075, 0.022956503555178642, 0.0020647498313337564, 0.017052197828888893, -0.009362542070448399, 0.00929225329309702, -0.012877010740339756, -0.016967851668596268, -0.019160879775881767, -0.0032262816093862057, -0.007900523953139782, 0.0054579684510827065, 0.009967030957341194, 0.018247118219733238, 0.0028150887228548527, 0.011140863411128521, -0.0055704317055642605, 0.01178752537816763, -0.0027254698798060417, -0.0034933811984956264, -0.017783207818865776, -0.002296704798936844, -0.017108429223299026, -0.01178752537816763, -0.012420129962265491, 0.025079242885112762, -0.008554214611649513, 0.025163590908050537, -0.0040662395767867565, 0.005029203370213509, -0.007380382623523474, -0.00047577108489349484, -0.004994058981537819, 0.010831589810550213, -0.015632353723049164, 0.00960855558514595, 0.01807842217385769, 0.035116564482450485, 0.014254681766033173, -0.008132479153573513, -0.012806721031665802, 0.0055282581597566605, 0.0016684936126694083, -0.0026428799610584974, 0.0044422876089811325, 0.004990544635802507, 0.0063225277699530125, 0.014760765247046947, 0.002249259501695633, -0.011471223086118698, -0.012968386523425579, -0.00666694575920701, -0.01416330598294735, 0.0033651029225438833, -0.024657506495714188, 0.016799157485365868, 0.002307248068973422, 0.008476896211504936, -0.00350743904709816, -0.0019997323397547007, 0.002665723906829953, -0.024629391729831696, -0.0002708336978685111, 0.008455810137093067, 0.003147206036373973, -0.00816059485077858, -0.010044349357485771, 0.0077669741585850716, 0.0031331481877714396, 0.003876458154991269, -0.004217361565679312, -0.01743176020681858, 0.0016667364398017526, -0.0043298243544995785, -0.0017256037099286914, -0.029887035489082336, -0.005802386440336704, 0.010543404147028923, 0.003872943576425314, 0.03244556859135628, 0.013221428729593754, 0.007035964634269476, 0.027103576809167862, -0.010929995216429234, 0.0268083605915308, -0.010374709032475948, 0.005440396256744862, -0.007879436947405338, 0.014170334674417973, 0.0015621809288859367, -0.0035337975714355707, -0.008392549119889736, -0.01301758922636509, -0.005464997608214617, 0.010114639066159725, 0.013685338199138641, 0.001992703415453434, -0.01996217854321003, -0.003512710565701127, -0.023631282150745392, 0.0198918879032135, 0.012877010740339756, 0.021058691665530205, 0.017038140445947647, -0.0066599166020751, 0.012792663648724556, 0.0020963801071047783, -0.01240607164800167, -0.005718039348721504, 0.027862701565027237, -0.01554800570011139, 0.026962997391819954, 0.0022826469503343105, -0.015505832619965076, 0.000980536569841206, -0.008287115022540092, 0.018233058974146843, 0.01188593078404665, -0.004241962917149067, -0.01689756102859974, 0.02039797231554985, 0.018893780186772346, 0.011302528902888298, -0.030027613043785095, 0.02299867756664753, 0.008736967109143734, -0.007774002850055695, 0.007331179920583963, 0.006241695024073124, -0.01539336983114481, -0.011857815086841583, 0.016166552901268005, -0.01180158369243145, -0.0024284974206238985, 0.019371747970581055, -0.00946094747632742, 0.015407427214086056, -0.005204927176237106, -0.006969189736992121, -0.011190066114068031, 0.005602061748504639, -0.018401753157377243, -0.013769685290753841, 0.0018433383665978909, -0.02097434364259243, 0.013699395582079887, -0.013165196403861046, -0.016194667667150497, 0.005651264451444149, -0.0007657146779820323, -0.0023002191446721554, -0.0022826469503343105, -0.005180325824767351, -0.004614496137946844, -0.0014330242993310094, -0.011443107388913631, 0.028382843360304832, 0.005746155045926571, 0.00245309853926301, 0.007520961109548807, -0.015210617333650589, -0.008385520428419113, 0.009981089271605015, -0.009264137595891953, 0.0011518668616190553, 0.005018660333007574, 0.010016233660280704, 0.010592605918645859, 0.015098154544830322, 0.002860776847228408, 0.006645858753472567, 0.01345338299870491, 0.011583685874938965, 0.008673707023262978, 0.018626680597662926, -0.03115224279463291, -0.011464194394648075, 0.012525564059615135, 0.0039537763223052025, 0.0037429083604365587, 0.0036093585658818483, 0.016574230045080185, 0.0041084131225943565, -0.014746706932783127, 0.015055980533361435, -0.02488243207335472, 0.009784278459846973, -0.002922279993072152, 0.007991899736225605, 0.015997858718037605, -0.007661540061235428, 0.011569628491997719, -0.024896491318941116, 0.015309021808207035, 0.008336317725479603, -0.024840259924530983, -0.016377421095967293, 0.016813214868307114, 0.010339564643800259, 0.000991079956293106, -0.03213629499077797, 0.02036985568702221, -0.0028502335771918297, 0.02794704958796501, 0.008069218136370182, 0.015182501636445522, 0.012736431322991848, -0.0015367011073976755, -0.0027940019499510527, 0.010079493746161461, 0.0028203604742884636, -0.015871336683630943, 0.026049235835671425, -0.006955131888389587, 0.006006225477904081, -0.0015902967425063252, 0.008371462114155293, 0.010114639066159725, 0.010283333249390125, -0.010213043540716171, 0.007464729715138674, 0.0020858366042375565, 0.03860291466116905, 0.004839422181248665, 0.0012019480345770717, -0.008399578742682934, 0.009165732190012932, 0.0029890548903495073, 0.01757233962416649, -0.0005544073064811528, 0.007134370040148497, 0.0005983381415717304, 0.0016667364398017526, -0.013720482587814331, -0.024123307317495346, -0.01588539406657219, -0.02039797231554985, 0.0011202367022633553, -0.00946094747632742, 0.003799139754846692, 0.0005754941375926137, 0.008357404731214046, -0.01902030035853386, -0.00609408738091588, -0.01651799865067005, 0.004927284084260464, -0.000360232952516526, -0.011864843778312206, -0.010009204968810081, -0.016700752079486847, 0.010093552060425282, 0.0006141532794572413, -0.012602881528437138, 0.031377170234918594, 0.0010666410671547055, -0.03615684434771538, 0.00014200646546669304, 0.0061432900838553905, 0.015730759128928185, -0.008357404731214046, 0.00543688191100955, 0.010290361940860748, -0.0038342843763530254, -0.012638026848435402, -0.00974210537970066, 0.00977724976837635, -0.005415794905275106, 0.005180325824767351, -0.02167723886668682, 0.009172760881483555, 0.01362207718193531, -0.00723277498036623, 0.006596656050533056, -0.018486101180315018, 0.01099325530230999, -0.011991364881396294, -0.009130587801337242, -0.0007446279050782323, 0.007851321250200272, -0.03182702139019966, 0.008385520428419113, 0.03756263479590416, 0.014802939258515835, -0.010915936902165413, 0.024741854518651962, -0.002792244777083397, -0.010325506329536438, 0.016307130455970764, -0.020482318475842476, -0.004361454863101244, -0.003605843987315893, -0.02502301149070263, 0.003396733198314905, 0.00954529456794262, -0.005566917359828949, 0.0032631834037601948, 0.0018275233451277018, -0.004104898311197758, 0.005851589143276215, 0.002034876961261034, 0.009250079281628132, 0.016377421095967293, 0.02640068344771862, -0.010423911735415459, -0.002964453771710396, 0.003403762122616172, -0.0012089769588783383, -0.01827523298561573, -0.009193847887217999, -0.002969725290313363, -0.016883503645658493, 0.0025146016851067543, -8.094259101198986e-05, 0.0019224139396101236, -0.027019228786230087, 0.0004241523565724492, 0.012511505745351315, 0.00547905545681715, 0.002407410414889455, 0.0010350107913836837, -0.028635883703827858, -0.006635315250605345, 0.021283617243170738, 0.00831523071974516, -0.005886733531951904, -0.0030154134146869183, 0.015309021808207035, 0.01099325530230999, -0.016208726912736893, 0.012384984642267227, 0.009819423779845238, 0.024123307317495346, 0.007060565985739231, -0.009032182395458221, 0.009018125012516975, 0.003250882728025317, -0.02292838878929615, 0.00986159685999155, -0.006912958342581987, 0.009650728665292263, -0.0014646544586867094, 0.0027377705555409193, 0.00816059485077858, 0.006069486029446125, 0.007633424364030361, 0.011105719022452831, -0.012497447431087494, -0.008371462114155293, -0.0038272554520517588, 0.04431040957570076, 0.018162770196795464, -0.00538767920807004, 0.004881595727056265, -0.005770756397396326, -0.053194984793663025, 0.008568272925913334, 0.00837849173694849, -0.01665857806801796, 0.016546115279197693, -0.00010285309690516442, -0.0086807357147336, 0.006772379856556654, 0.02374374493956566, -0.010536374524235725, 0.004171673208475113, -0.014985690824687481, -0.002511087339371443, -0.01895001158118248, 0.006055428180843592, 0.010979197919368744, -0.007970813661813736, -0.023617224767804146, -0.002885378198698163, 0.0023248204961419106, -0.003444178495556116, 0.01345338299870491, -0.016264958307147026, -0.015519890002906322, 0.00011795433238148689, 0.03281107172369957, -0.022436363622546196, -0.015576121397316456, -0.00302595691755414, -0.010156812146306038, 0.011063545010983944, 0.007415527477860451, 0.013340920209884644, -0.008188710547983646, -0.018598563969135284, -0.02673807181417942, -0.015857279300689697, 0.0109581109136343, -0.010817532427608967, -0.03151774778962135, -0.007464729715138674, 0.007809147704392672, -0.010515288449823856, -0.011646946892142296, 0.011625859886407852, 0.003648017765954137, 0.009791307151317596, -0.015337137505412102, 0.005064348224550486, -0.0032122237607836723, 0.01996217854321003, -0.009847539477050304, -0.00977724976837635, 0.0039889211766421795, 0.0035970578901469707, -0.02104463428258896, 0.004361454863101244, 0.0021262529771775007, 0.02963399328291416, -0.002133282134309411, 0.008666678331792355, 0.01554800570011139, 0.003117332933470607, -0.006473649758845568, -0.002238715998828411, -0.0001938448695000261, 0.0009111257968470454, 0.0033686175011098385, -0.0055352868512272835, -0.021199271082878113, -0.01402975618839264, -0.029549647122621536, -0.014578012749552727, -0.014578012749552727, 0.021902164444327354, 0.006631800904870033, 0.005718039348721504, -0.005197898019105196, -0.01301758922636509, -0.008357404731214046, 0.008406607434153557, -0.01672886684536934, 0.007717771455645561, -0.003894030349329114, 0.0010314963292330503, -0.02138202264904976, -0.00955935288220644, -0.0016008401289582253, 0.002957424847409129, 0.027300387620925903, -0.0036199018359184265, -0.008856459520757198, 0.008519070222973824, -0.006241695024073124, 0.0008355647441931069, -0.003062858711928129, 0.0017598698614165187, 0.004582866095006466, -0.01301758922636509, -0.012469331733882427, -0.028509363532066345, -0.01803625002503395, 0.007176543585956097, 0.010255217552185059, 0.00960855558514595, -0.009685873985290527, 0.005658293142914772, 0.0020383913069963455, 0.006688032299280167, -0.007977842353284359, 0.014022726565599442, 0.0022211438044905663, 0.015941627323627472, 0.014985690824687481, 0.004231419414281845, -0.021494485437870026, 0.022309841588139534, 0.046925175935029984, 0.01750205084681511, -0.007211687974631786, -0.004712901543825865, 0.007088681682944298, 0.005552859511226416, -0.021016517654061317, -0.008666678331792355, 0.007675597909837961, -0.010529345832765102, -0.011928103864192963, -0.0015252790180966258, -0.01783943921327591, -0.00048675379366613925, 0.005500142462551594, -0.016110321506857872, 0.040711596608161926, -0.0038237411063164473, -0.0037815675605088472, 0.019905947148799896, 0.01217411644756794, 0.008589359931647778, 0.015140327624976635, 0.009699931368231773, -0.01851421780884266, 0.01651799865067005, 0.022745637223124504, 0.0033457735553383827, -0.0011747109238058329, -0.01328468881547451, 0.00849798321723938, 0.02235201559960842, 0.0003611115680541843, -0.009580439887940884, -0.01723495125770569, 0.025515036657452583, 0.0028203604742884636, -0.015252790413796902, -0.002310762647539377, 0.005433367565274239, 0.011485281400382519, 0.02555721066892147, 0.006923501845449209, -0.016771040856838226, -0.005001087673008442, 0.011682091280817986, -0.03520090878009796, -0.016981909051537514, -0.013207370415329933, -0.01180158369243145, -0.012560708448290825, 0.02384215034544468, -0.013600991107523441, 0.019076531752943993, -0.006389302667230368, 0.015618295408785343, -0.026021121069788933, -0.024559101089835167, -0.0037815675605088472, 0.020327681675553322, 0.002437283517792821, 0.007970813661813736, -0.008772111497819424, 0.002908222144469619, 0.0013390122912824154, 0.009573410265147686, 0.02714575082063675, 0.0038413135334849358, 0.012947299517691135, 0.02353287674486637, 0.002734255976974964, -0.002500543836504221, -0.009615584276616573, -0.0007270555361174047, -0.008645591326057911, -0.003626930993050337, -0.02582431025803089, 0.002034876961261034, -0.016307130455970764, 0.0066564022563397884, -0.028368784114718437, 0.005791842937469482], "67b7b9b7-4890-40cc-8c10-e546a2826cba": [-0.032973047345876694, 0.0036362798418849707, -0.0062248180620372295, 0.030846746638417244, -0.013851760886609554, -0.03144765645265579, -9.666090772952884e-05, 0.031894486397504807, -0.030430732294917107, 0.03617790341377258, 0.033558547496795654, 0.001691024168394506, -0.009067587554454803, 0.009160035289824009, -0.0005532422801479697, 0.005412047728896141, 0.00491128908470273, 0.0022900088224560022, 0.0026886898558586836, -0.03386670723557472, 0.0804295763373375, -0.0317712239921093, -0.04311148822307587, 0.019814644008874893, -0.030939193442463875, 0.010138440877199173, -0.022695932537317276, 0.004098518751561642, -0.018181398510932922, -0.012950395233929157, 0.02546936646103859, 0.013235442340373993, -0.018813125789165497, 0.008759427815675735, -0.008250965736806393, -0.014360223896801472, 0.01001517754048109, 0.0023554926738142967, 0.020877793431282043, -0.0009292929316870868, -0.04203293099999428, 0.03787278011441231, 0.013874872587621212, 0.009429674595594406, -0.030908377841114998, -0.022711340337991714, -0.02063126489520073, -0.030353691428899765, 0.014899502508342266, 0.0003307897422928363, 0.0065406812354922295, 0.03633198142051697, 0.0026694301050156355, -0.008135405369102955, 0.05016833543777466, -0.04551513120532036, 0.05836537107825279, 0.08702418953180313, 0.007730946410447359, -0.07667003571987152, -0.014529711566865444, -0.006236373912543058, -0.021940942853689194, 0.011317150667309761, 0.011902653612196445, -0.006190150044858456, -0.013720792718231678, -0.008343413472175598, -0.02574671059846878, 0.02469896897673607, 0.009514418430626392, -0.0008397341007366776, -0.04828856140375137, 0.014922614209353924, 0.023574186488986015, -0.015092101879417896, 0.005138556472957134, 0.008613052777945995, 0.039444390684366226, -0.0017170251812785864, 0.009753242135047913, -0.005049960687756538, 0.0031701887492090464, 0.014599046669900417, 0.0677950456738472, 0.015161437913775444, 0.0053003402426838875, -0.050476495176553726, -0.04033805429935455, -0.016917945817112923, -0.032788150012493134, 0.017950279638171196, -0.016147548332810402, -0.0034802742302417755, -0.001053519663400948, 0.008397340774536133, -0.007072255946695805, -0.0018451038049533963, 0.023188987746834755, 0.013181514106690884, 0.0010024807415902615, -0.004992180969566107, -0.011579086072742939, -0.009629977867007256, 0.008189333602786064, -0.00832800567150116, -0.02255726046860218, -0.0024922383017838, -0.019491076469421387, 0.0495828315615654, 0.021940942853689194, -0.06804157793521881, 0.023450924083590508, 0.004687873646616936, -0.05673212930560112, -0.0186744537204504, -0.03133980184793472, -0.024760600179433823, 0.017549673095345497, -0.02902860753238201, 0.019691379740834236, -0.0004839064204134047, 0.046716950833797455, 0.00865927617996931, -0.008443565107882023, 0.02061585709452629, 0.002351640723645687, 0.03098541870713234, 0.0015956873539835215, 0.01089343149214983, -0.0037980633787810802, -0.02499171905219555, 0.011625309474766254, -0.003181744832545519, 0.00958375446498394, 0.021139727905392647, 0.028612591326236725, 0.053095847368240356, 0.004583869595080614, 0.029275134205818176, -0.06576119363307953, -0.022403182461857796, -0.02112432010471821, 0.025037944316864014, 0.004876621067523956, 0.013273961842060089, -0.03186367079615593, 0.02459111250936985, -0.03039991483092308, 0.0330963097512722, -0.0789504125714302, -0.0317712239921093, -0.03941357508301735, 0.017087433487176895, 0.07525250315666199, -0.03922868147492409, -0.011594493873417377, 0.03174040839076042, -0.004841953050345182, 0.03087756223976612, 0.0342981293797493, -0.05586928129196167, 0.005134704522788525, 0.0301071647554636, 0.032788150012493134, 0.027996273711323738, 0.0381501205265522, 0.004244894254952669, -0.04982936009764671, 0.022110430523753166, 0.03058481030166149, -0.025037944316864014, 0.018535781651735306, -0.009360338561236858, -0.0011209294898435473, -0.01499965414404869, 0.036455247551202774, 0.01069312822073698, 0.05013751983642578, -0.04375862330198288, -0.034914448857307434, -0.017734568566083908, 0.005573831498622894, -0.0066369809210300446, -0.01905965246260166, 0.006579201202839613, -0.011039807461202145, 0.01848955824971199, 0.007064552046358585, 0.01152515783905983, -0.009606866165995598, -0.01577005162835121, 0.025592630729079247, 0.00376339559443295, -0.013612937182188034, -0.034606289118528366, -0.03294222801923752, -0.02215665392577648, 0.003911697305738926, 0.019028836861252785, 0.015646789222955704, -0.04591573774814606, -0.013243146240711212, 0.024899272248148918, -0.01607050746679306, 0.021463295444846153, -0.004622389562427998, -0.028027089312672615, 0.008150814101099968, -0.05374298244714737, 0.02556181512773037, -0.039351943880319595, 0.007199371699243784, 0.004418233875185251, -0.013813240453600883, 0.026116501539945602, -0.017195289954543114, 0.043604541569948196, -0.002498016459867358, -0.024329178035259247, 0.00846667680889368, 0.017749976366758347, -0.009352634660899639, -0.011887244880199432, -0.042649246752262115, 0.005196336191147566, 0.0026463179383426905, 0.0065946090035140514, 0.0009774428326636553, -0.009629977867007256, 0.013767017051577568, -0.01389028038829565, 0.010554456152021885, -0.011825613677501678, -0.0135590098798275, 0.05876598134636879, 0.036270350217819214, -0.03147847205400467, -0.02286542020738125, -0.023897754028439522, 0.0128271309658885, 0.022095022723078728, -0.019090469926595688, -0.017503447830677032, 0.016532747074961662, 0.017010394483804703, -0.013142994605004787, 0.04973691329360008, 0.013435745611786842, 0.026917714625597, -0.02508416771888733, 0.005743319168686867, 0.0021243731025606394, 0.0037441356107592583, 0.010685424320399761, -0.0011902652913704515, 0.041293345391750336, -0.01108603086322546, 0.014699199236929417, 0.0007501753279939294, 0.0038308054208755493, 0.004125482868403196, -0.03201775252819061, -0.004780321381986141, 0.047980405390262604, -0.04335801303386688, 0.016594378277659416, 0.004868917167186737, 0.012934986501932144, 0.042926590889692307, 0.003093149047344923, 0.0032433767337352037, -0.0004913696320727468, 0.01839711144566536, 0.0022726748138666153, -0.032387543469667435, -0.01986086741089821, 0.021139727905392647, -0.001747841015458107, -0.003018035087734461, -0.018042726442217827, -0.011894948780536652, 0.037811145186424255, 0.042279455810785294, 0.043727803975343704, 0.009206259623169899, -0.02728750742971897, -0.009552938863635063, -0.012226220220327377, -0.023574186488986015, 0.004198670387268066, 0.009760946035385132, 0.018828533589839935, 0.03485281765460968, 0.005577683448791504, -0.00299107120372355, -0.013597529381513596, -0.004506829660385847, -0.030523179098963737, -0.006648537237197161, -0.015515821054577827, -0.024067241698503494, -0.009360338561236858, -0.00084069708827883, 0.0432039350271225, -0.022341549396514893, 0.02129380777478218, 0.025346102192997932, -0.02004576288163662, 0.041786402463912964, 0.02613190934062004, -0.014591342769563198, -0.0053735277615487576, 0.002187930978834629, -0.0007419898174703121, 0.02710261009633541, -0.01693335361778736, -0.013250850141048431, -0.0046686134301126, -0.019152101129293442, -0.01676386594772339, -0.0024768305011093616, -0.03294222801923752, 0.03140143305063248, 0.031308986246585846, -0.03158633038401604, 0.018073543906211853, -0.015562045387923717, -0.0342981293797493, -0.038180939853191376, -0.04828856140375137, -0.004772617481648922, -0.04203293099999428, -0.016902538016438484, -0.040122341364622116, -0.021617375314235687, -0.05938229709863663, -0.02526906318962574, 0.01673305034637451, -0.016394075006246567, -0.01258060336112976, -0.01025400124490261, 0.041878849267959595, -0.030569402500987053, -0.014290887862443924, -0.010747055523097515, 0.040122341364622116, 0.013381818309426308, -0.042957406491041183, 0.011586789973080158, 0.0009312189067713916, -0.010045993141829967, 0.01351278554648161, 0.02072371356189251, 0.03851991146802902, -0.0042410423047840595, -0.07543739676475525, 0.005415899679064751, -0.0026636519469320774, 0.0010429266840219498, -0.026686595752835274, -0.03571566194295883, -0.04231027141213417, -0.0009037734707817435, 0.025315286591649055, 0.04363535717129707, 0.014722310937941074, -0.019891683012247086, 0.0001645522570470348, 0.01811976730823517, -0.02693312242627144, -0.01088572759181261, 0.007476715371012688, -0.019383220002055168, -0.010377264581620693, -0.02274215593934059, 0.04773387685418129, 0.002850473625585437, 0.009452786296606064, 0.016239995136857033, -0.009082995355129242, 0.003353158477693796, 0.012526676058769226, -0.007002920377999544, 0.034421395510435104, 0.006313413847237825, -0.0023940126411616802, -0.02574671059846878, -0.013597529381513596, -0.00045501647400669754, -0.043142303824424744, 0.01714906468987465, -0.01859741471707821, -0.015415669418871403, -0.029983900487422943, -0.03149387985467911, -0.02556181512773037, 0.021432479843497276, 0.00023099911049939692, -0.023111948743462563, 0.01026940904557705, 0.01577775739133358, 0.0018605118384584785, -0.005415899679064751, 0.021802270784974098, -0.008582236245274544, -0.012264740653336048, -0.02508416771888733, 0.021340031176805496, 0.04126252979040146, 0.030153388157486916, 0.026301397010684013, 0.019706787541508675, 0.03765706717967987, 0.046994294971227646, 0.0026694301050156355, -0.013543601147830486, 0.03377426043152809, -0.03950602188706398, -0.005311896093189716, 0.01966056413948536, -0.009090699255466461, 0.021155135706067085, 0.014052064158022404, 0.0031008529476821423, 0.010107625275850296, 0.004664761479943991, 0.032202646136283875, 0.007919694297015667, -0.04055376350879669, 0.022788381204009056, 0.02999930828809738, -0.022526444867253304, 0.0041871145367622375, -0.01020777691155672, 0.009352634660899639, 0.0377495139837265, -0.026255173608660698, 0.018412519246339798, 0.015708420425653458, 0.0029679592698812485, 0.01597806066274643, -0.021648190915584564, -0.024159690365195274, -0.04308067262172699, -0.026856083422899246, -0.024945495650172234, 0.015431077219545841, 0.040800292044878006, -0.0049844766035676, 0.0014868685975670815, 0.011679237708449364, -0.03571566194295883, -0.00895973201841116, -0.01984545961022377, -0.006906620226800442, 0.007965917699038982, -0.02876667119562626, 0.01064690388739109, -0.05663967877626419, -0.027934640645980835, -0.0002441199467284605, 0.03996826335787773, -0.007711686659604311, 0.034421395510435104, -0.03861236199736595, -0.025423143059015274, -0.008651572279632092, 0.006105406209826469, 0.019229140132665634, 4.438817995833233e-05, -0.009722426533699036, 0.001315455068834126, 0.04258761554956436, -0.014105992391705513, 0.0003211597795598209, -0.023558778688311577, 0.030738890171051025, 0.006467493250966072, -0.009052179753780365, 0.01476083043962717, -0.007257151883095503, -0.029845228418707848, -0.01239570789039135, 0.005620055366307497, 0.002667503897100687, -0.043327197432518005, -0.02728750742971897, 0.004660909529775381, 0.006205557845532894, 0.01946026086807251, 0.007989030331373215, 0.005820359103381634, -0.004799581132829189, 0.004375861957669258, 0.00665624113753438, -0.009645386599004269, -0.01839711144566536, -0.009252483025193214, -0.019521892070770264, 0.024714376777410507, 0.00498832855373621, -0.02875126339495182, 0.02488386444747448, -0.031617145985364914, 0.02807331271469593, -0.015823980793356895, 0.029891451820731163, -0.00436045415699482, -0.023990202695131302, -0.01878231018781662, 0.015169141814112663, -0.029382990673184395, 0.006567645352333784, 0.02642466127872467, 0.006702465005218983, -0.02158655971288681, -0.03531505540013313, 0.05488317087292671, -0.0032375988084822893, -0.020569633692502975, -0.01724151335656643, -0.0041678547859191895, -0.016517339274287224, 0.02875126339495182, 0.00891350768506527, -0.013481969945132732, -0.021247584372758865, -0.00846667680889368, -0.0041678547859191895, -0.015138326212763786, 0.0033781963866204023, -0.033743444830179214, -0.004610833711922169, 0.01771916076540947, -0.015415669418871403, -0.0190750602632761, 0.00622096611186862, 0.012025916948914528, 0.018905572593212128, -0.031524695456027985, 0.006948992144316435, -0.007372711319476366, 0.004033035133033991, -0.013867168687283993, 0.029413806274533272, 0.020739121362566948, 0.020307697355747223, 0.008420453406870365, 0.031000826507806778, -0.017672935500741005, 0.001219155266880989, -0.03291141241788864, -0.0038288794457912445, 0.0024363845586776733, -0.02488386444747448, -0.03069266676902771, -0.011270926333963871, -0.004522237926721573, -0.012041324749588966, -0.008543716743588448, -0.013127586804330349, 0.008851876482367516, 0.014483487233519554, 0.016532747074961662, -0.01762671209871769, -0.03346610069274902, 0.008744020015001297, -0.027272097766399384, 0.004714837297797203, 0.035191792994737625, -0.00716855563223362, 0.06847299635410309, 0.006471345201134682, 0.003266488667577505, 0.034421395510435104, -0.007626942824572325, 0.003195226890966296, -0.0011517454404383898, -0.034791186451911926, 0.0036979117430746555, -0.019321588799357414, -0.004083110950887203, -0.023266026750206947, -0.040800292044878006, -0.006459789350628853, -0.043327197432518005, -0.027564849704504013, -9.016066906042397e-05, 0.0032164128497242928, -0.010639199987053871, 0.05633152276277542, -0.02585456520318985, 0.026963939890265465, -0.020477185025811195, 0.006267189979553223, 0.009167739190161228, 0.004707133397459984, 0.010130736976861954, -0.0038635472301393747, 0.02083156816661358, 0.022726748138666153, 0.01637866720557213, -0.020893201231956482, -0.019152101129293442, -0.003337750444188714, 0.015823980793356895, 0.03842746466398239, -0.002353566698729992, 0.01520766131579876, -0.008898099884390831, -0.0004099963407497853, 0.015184549614787102, -0.019491076469421387, 0.01437563169747591, -0.02922891080379486, -0.004922844935208559, 0.013774720951914787, 0.01889016479253769, -0.004541497677564621, 0.007480567321181297, -0.02673281915485859, 0.007461307104676962, -0.014529711566865444, 0.04945956915616989, 0.008189333602786064, -0.007950509898364544, 0.005870434921234846, 0.011894948780536652, 0.001619762391783297, -0.009699313901364803, -0.01887475699186325, -0.0018152509583160281, -0.02816576138138771, 0.009599162265658379, -0.003345454577356577, -0.008797948248684406, 0.012888763099908829, -0.005365823861211538, -0.008250965736806393, -0.0009288113797083497, 0.004610833711922169, -0.001921180635690689, 0.05380461364984512, -0.006856544408947229, 0.003503386164084077, 0.014052064158022404, 0.007576867006719112, 0.05247953161597252, 0.028443103656172752, -0.033558547496795654, 0.0028292876668274403, 0.017888648435473442, 0.008312596939504147, 0.008898099884390831, -0.017010394483804703, -0.012942690402269363, 0.04089273884892464, -0.0011507824528962374, -0.01157138217240572, 0.04252598434686661, -0.014290887862443924, 0.008166221901774406, 0.02363581955432892, 0.00789658259600401, -0.009437378495931625, 0.009283299557864666, 0.028612591326236725, 0.03565403074026108, 0.020014947280287743, 0.000657727534417063, -0.03457547351717949, 0.015600564889609814, -0.019090469926595688, 0.013728497549891472, -0.0022880828473716974, 0.0018508818466216326, -0.013135290704667568, -0.0023343067150563, -0.0028697336092591286, 0.0013308629859238863, -0.03012257255613804, -0.01220310851931572, 0.015823980793356895, -0.021540336310863495, -0.006583053153008223, -0.010500527918338776, 0.016101323068141937, -0.02227991819381714, 0.0065637934021651745, -0.023404698818922043, 0.00953753013163805, -0.007153147831559181, 0.01731855235993862, 0.0003849583736155182, -0.002326602814719081, 0.007307227700948715, -0.03827338665723801, 0.029891451820731163, -0.023497147485613823, -0.03463710471987724, -0.009992065839469433, 0.05133933946490288, -0.01525388564914465, 0.003998367115855217, 0.024714376777410507, -0.01201050914824009, 0.006213262211531401, 0.005381231661885977, -0.00043599726632237434, -0.010623792186379433, 0.008181629702448845, -0.02488386444747448, 0.02855096012353897, 0.007734798360615969, 0.004464457742869854, -0.020585041493177414, -0.00038062490057200193, -0.022788381204009056, 0.030723482370376587, -0.007904286496341228, 0.03553076833486557, -0.011163070797920227, -0.037225645035505295, -0.03534587100148201, 0.00024941645096987486, 0.0035534619819372892, 0.008728612214326859, 0.01026170514523983, 0.011317150667309761, 0.04135498031973839, 0.0028889935929328203, 0.008790244348347187, 0.0022457109298557043, 0.002746469806879759, -0.01519995741546154, 0.007734798360615969, -0.0029852932784706354, 0.009229371324181557, -0.018320070579648018, 0.022588077932596207, -0.0065406812354922295, 0.031802039593458176, -0.04009152576327324, -0.02274215593934059, 0.002091631293296814, 0.01753426529467106, -0.0066369809210300446, -0.010176961310207844, 0.010800983756780624, 0.042741697281599045, -0.03873562440276146, 0.04499125853180885, 0.02845851145684719, -0.005161668173968792, 0.003031517146155238, 0.03898215293884277, 0.0076192389242351055, 0.007149295881390572, 0.029074830934405327, -0.030184203758835793, -0.004375861957669258, 0.0013038991019129753, -0.025900790467858315, 0.01195658091455698, 0.008566828444600105, 0.00261550210416317, 0.027441585436463356, 0.04489881172776222, 0.01306595467031002, 0.040122341364622116, 0.025916198268532753, 0.023943977430462837, 0.02770352177321911, -0.021848494186997414, -0.005073072388768196, -0.0033955303952097893, -0.01577005162835121, -0.008143109269440174, 0.008351117372512817, -0.010323336347937584, -0.04101600497961044, -0.0054505676962435246, -0.019614340737462044, 0.03358936309814453, -0.018905572593212128, 0.015315517783164978, 0.021155135706067085, -0.003339676419273019, -0.0015966504579409957, 0.0001473386655561626, 0.0062017058953642845, -0.009629977867007256, -0.0012990840477868915, 0.0033184904605150223, -0.03488363325595856, 0.011995101347565651, 0.0019250327022746205, 0.004560757894068956, -0.013173810206353664, 0.003018035087734461, 0.014922614209353924, 0.026085685938596725, 0.03506853058934212, 0.023774489760398865, -0.0019375516567379236, -0.0017391741275787354, -0.0003683466638904065, -0.012164589017629623, 0.002072371309623122, -0.00788887869566679, 0.006956696510314941, -0.0004774061671923846, 0.01976841874420643, -0.02710261009633541, 0.006802616640925407, -0.009506714530289173, 0.01268845982849598, 0.05217137187719345, -0.004152446519583464, -0.019013429060578346, -0.010338745079934597, -0.014421855099499226, 0.019506484270095825, -0.0045800176449120045, -0.0023323807399719954, 0.015592860989272594, -0.005673983134329319, 0.02402101829648018, -0.01243422832340002, 0.004202522337436676, 0.016424890607595444, -0.008582236245274544, 0.037133198231458664, -0.02400561049580574, 0.011163070797920227, -0.00939115509390831, -0.01264223549515009, -0.017118249088525772, 0.024745192378759384, -0.02283460460603237, -0.05623907223343849, -0.006386601831763983, -0.0009899617871269584, 0.004899732768535614, 0.010931950993835926, 0.02092401683330536, 0.0016351703088730574, 0.04101600497961044, 0.045761656016111374, 0.031986936926841736, -0.018243031576275826, -0.00590895488858223, 0.013166106306016445, -0.023605002090334892, 0.009136923588812351, -0.017595896497368813, 0.020076578482985497, -0.027164243161678314, 0.010685424320399761, 0.020554225891828537, -0.012742387130856514, 0.008605348877608776, -0.0025461663026362658, -0.011032103560864925, 0.02351255528628826, 0.005916658788919449, -0.017580488696694374, 0.00416400283575058, -0.00022883235942572355, 0.01094735972583294, 0.0277805607765913, 0.008166221901774406, -0.002632836112752557, -0.003923253156244755, 0.026224356144666672, -0.003457162296399474, 0.01702580228447914, -0.018551189452409744, -0.010577567853033543, -0.03146306425333023, 0.02303490787744522, -0.02623976580798626, 0.009868801571428776, -0.027426177635788918, 0.0061708902940154076, -0.006679352838546038, -0.024128872901201248, -0.016116730868816376, -0.005327303893864155, 0.001110336510464549, -0.008751723915338516, -0.0360238216817379, -0.007126184180378914, -0.02459111250936985, -0.0017314701108261943, -0.014583638869225979, 0.003799989353865385, -0.017595896497368813, 0.019537299871444702, -0.004861213266849518, -0.02130921557545662, -0.05004507303237915, -0.02160196751356125, 0.028211984783411026, -0.03710237890481949, 0.0005233893170952797, -0.00292751332744956, 0.010985879227519035, 0.03531505540013313, 0.028535552322864532, -0.0035958338994532824, -0.005720207002013922, -0.010300224646925926, 0.050599757581949234, 4.8751764552434906e-05, 0.01137878280133009, 0.001938514644280076, -0.020014947280287743, 0.0018845867598429322, 0.011995101347565651, 0.0075961267575621605, 0.013851760886609554, 0.005265672225505114, -0.01753426529467106, 0.012811723165214062, -0.014629863202571869, -0.027241282165050507, -0.002937143435701728, 0.054081957787275314, -0.007076107896864414, 0.0038308054208755493, 0.0016101323999464512, -0.0071608517318964005, 0.014545119367539883, -0.01549270935356617, -0.02158655971288681, -0.0317712239921093, -0.028705039992928505, -0.022880828008055687, 0.011263222433626652, -0.023219803348183632, 0.03263407200574875, -0.004757209215313196, -0.014845574274659157, -0.024051833897829056, 0.021910127252340317, 0.0005705762305296957, -0.008143109269440174, 0.014683790504932404, 0.02546936646103859, 0.0119642848148942, 0.0071608517318964005, -0.007272559683769941, 0.009699313901364803, 0.01084720715880394, -0.007045292295515537, 0.0024864603765308857, -0.008181629702448845, -0.015947243198752403, -0.010169257409870625, 0.0010544826509431005, -0.008690092712640762, -7.535458280472085e-05, -0.023558778688311577, 0.01879771798849106, -0.017287736758589745, 0.01731855235993862, -0.008428157307207584, -0.011448117904365063, 0.00491514103487134, -0.0015918354038149118, 0.03214101493358612, 0.040029894560575485, -0.013351001776754856, 0.0007183963898569345, -0.023497147485613823, -0.020692897960543633, -0.01566990092396736, 0.0022957867477089167, 0.030538586899638176, -0.00808147806674242, -0.03368181362748146, -0.02835065685212612, -0.004422085825353861, 0.012518972158432007, -0.0047109853476285934, 0.00789658259600401, -0.026763636618852615, 0.01742640882730484, -0.01634785160422325, -0.03630116581916809, 0.01177168544381857, -0.005492939613759518, 0.01200280524790287, -0.002979515353217721, -0.003004553262144327, -0.021802270784974098, 0.0028986234683543444, -0.023158172145485878, -0.00621711416170001, -0.005901250522583723, -0.02189471945166588, 0.04175558686256409, 0.011679237708449364, 0.00808147806674242, 0.0050152926705777645, -0.007126184180378914, -0.009260186925530434, 0.005754875019192696, -0.020384738221764565, -0.008759427815675735, 0.0011055214563384652, -0.008166221901774406, -0.006945140194147825, 0.008266373537480831, 0.006648537237197161, -0.023312252014875412, 0.009252483025193214, 0.01858200691640377, -0.020199842751026154, -0.0024537185672670603, -0.0030392210464924574, -0.0165481548756361, -0.018628230318427086, 1.9455565052339807e-05, 0.006120814010500908, 0.018813125789165497, 0.01656356267631054, 0.004468310158699751, -0.007788726594299078, -0.009306411258876324, 0.004206374753266573, -0.01868986152112484, 0.0004408122622407973, -0.028889935463666916, -0.019999539479613304, -0.08005978912115097, -0.016979577019810677, -0.0026366880629211664, 0.033157940953969955, -0.004626241512596607, -0.03651687875390053, 0.0115636782720685, 0.014922614209353924, -0.004098518751561642, 0.021232176572084427, -0.020061170682311058, -0.01799650304019451, 0.01973760314285755, 0.02024606615304947, 0.024621928110718727, -0.004918992985039949, 0.004510681610554457, 0.008420453406870365, -0.01389798428863287, -0.02198716625571251, -0.011686941608786583, -0.00721477996557951, 0.027641890570521355, -0.011894948780536652, -0.006960548460483551, 0.028828302398324013, -0.029167277738451958, 0.014213847927749157, -0.028104128316044807, -0.0048650652170181274, 0.010924247093498707, 0.00982257816940546, -0.009599162265658379, -0.0033936044201254845, 0.026024052873253822, 0.0019577746279537678, 0.014529711566865444, 0.008921211585402489, 0.02090860903263092, 0.023358475416898727, -0.006529125384986401, -0.008936620317399502, -0.02332765981554985, -0.01702580228447914, -0.013343297876417637, -0.028443103656172752, 0.04021478816866875, -0.033558547496795654, 0.0010891505517065525, 0.01918291673064232, 0.011224702931940556, 0.006359637714922428, 0.01802731864154339, -0.025099575519561768, -0.022310733795166016, -0.007438195403665304, -0.012018213048577309, -0.010808687657117844, -0.0044490499421954155, -0.014876390807330608, 0.05066138878464699, 0.004764913115650415, 0.009029068052768707, 0.005323451943695545, -0.020184434950351715, 0.020662082359194756, 0.030137980356812477, 0.02497631125152111, 0.004587721545249224, 0.018643638119101524, 0.036825038492679596, -0.012033620849251747, 0.017472632229328156, 0.029413806274533272, 0.00963768269866705, -0.003147076815366745, 0.011425006203353405, -0.00872090831398964, 0.037718698382377625, -0.01171005330979824, -0.011794797144830227, 0.010816391557455063, 0.006471345201134682, 0.0005696132429875433, -0.016717642545700073, 0.010854911990463734, 0.00038110639434307814, -0.010708536021411419, -0.026501700282096863, 0.02409805729985237, 0.014968838542699814, 0.018705269321799278, 0.03291141241788864, 0.005030700471252203, 0.002168671227991581, 0.06397387385368347, -0.005704799201339483, -0.007338043302297592, -0.009606866165995598, 0.006001402623951435, -0.01244193222373724, -0.027518626302480698, 0.001894216751679778, -0.034914448857307434, 0.009814874269068241, 0.005647019483149052, -0.013790128752589226, 0.032973047345876694, -0.0265171080827713, -0.013104474171996117, -0.012179996818304062, 0.009013659320771694, -0.02556181512773037, 0.018073543906211853, -0.017657527700066566, 0.004834249150007963, -0.00267520803026855, -0.008859580382704735, -0.02895156666636467, -0.00027854711515828967, -0.005404343828558922, 0.03466792032122612, -0.013220034539699554, -0.05278768762946129, 0.004310378339141607, -0.011686941608786583, -0.0063557857647538185, -0.005889694672077894, 0.006771800573915243, 0.02787300944328308, -0.020769936963915825, 0.018705269321799278, -0.02768811397254467, 0.01268845982849598, 0.004876621067523956, 0.02100105583667755, 0.018920982256531715, -0.029860636219382286, 0.017657527700066566, -0.021478703245520592, 0.00804295763373375, 0.014645271003246307, 0.012272444553673267, -0.011794797144830227, -0.0036131679080426693, 0.008566828444600105, -0.011941173113882542, -0.02767270617187023, -0.007588422857224941, -0.004298822488635778, -0.003911697305738926, -0.00423333840444684, 0.02380530722439289, 0.010038289241492748, 0.005134704522788525, -0.026285989210009575, -0.02391316182911396, 0.014236959628760815, -0.010277112945914268, 0.007064552046358585, -0.0326957032084465, 0.008797948248684406, 0.011933469213545322, -0.0008488825988024473, -0.002151337219402194, -0.006236373912543058, -0.009676202200353146, -0.02334306761622429, 0.002168671227991581, -0.0023670487571507692, 0.0033781963866204023, -0.012072140350937843, -0.0011007065186277032, -0.007927398197352886, 0.009136923588812351, 0.008428157307207584, -0.007083812262862921, -0.003214486874639988, 0.010061400942504406, -0.004214078653603792, 0.0008021771791391075, 0.003615093883126974, 0.005404343828558922, 0.0035187939647585154, -0.018813125789165497, 0.005689391400665045, -0.0007602868136018515, -0.013967320322990417, 0.006086146458983421, 0.019537299871444702, 0.020893201231956482, 0.0029525512363761663, -0.006783356890082359, 0.005500643514096737, -0.003058481030166149, 0.01456823106855154, 0.01724151335656643, 0.029506253078579903, -0.03377426043152809, 0.0019645155407488346, -0.006902768276631832, -0.010754759423434734, 0.039259497076272964, 0.01731855235993862, -0.008967435918748379, 0.008058365434408188, -0.0036651697009801865, 0.022603485733270645, 0.02662496455013752, -0.00832800567150116, -0.027364546433091164, -0.009861097671091557, 0.01325855404138565, 0.0050692204385995865, 0.0055815353989601135, -0.003923253156244755, 0.004368158057332039, -0.0017150990897789598, 0.005481383763253689, -0.002759951865300536, 0.03710237890481949, -0.004568461794406176, 0.005115444306284189, -0.017934871837496758, -0.00051424081902951, 0.008859580382704735, -0.006906620226800442, -0.0856066569685936, -0.015823980793356895, -0.0107008321210742, -0.003599685849621892, -0.001985701499506831, 0.019691379740834236, 0.012703867629170418, 0.007615386974066496, -0.00983028206974268, 0.012372596189379692, 0.001015962683595717, 0.019999539479613304, -0.0017324330983683467, -0.0011738943867385387, -0.017010394483804703, -0.010300224646925926, -0.0023497147485613823, 0.019090469926595688, 0.016209179535508156, -0.007858062162995338, -0.007942805998027325, 0.020585041493177414, -0.004934400785714388, -0.0015446485485881567, 0.006174742244184017, -0.023219803348183632, -0.00939885899424553, -0.003118186956271529, -0.0009292929316870868, 0.004845805000513792, -0.01370538491755724, 0.013767017051577568, -0.017395593225955963, 0.009737834334373474, 0.016224587336182594, 0.026301397010684013, -0.029675740748643875, 0.015068990178406239, -0.018227623775601387, -0.0004232375358697027, 0.008967435918748379, 0.0011777463369071484, -0.006371193565428257, 0.008143109269440174, -0.017565080896019936, -0.019013429060578346, -0.032788150012493134, 0.0029987753368914127, 0.01802731864154339, -0.00934493076056242, -0.03728727623820305, 0.0037229496520012617, 0.01986086741089821, -0.005804950837045908, -0.002422902500256896, -0.0169487614184618, 0.02730291523039341, 0.0028620294760912657, 0.01107832696288824, 0.006752540823072195, 0.001938514644280076, 0.021478703245520592, -0.020600449293851852, -0.013759313151240349, 0.010084513574838638, 0.02257266826927662, -0.010770168155431747, 0.015947243198752403, -0.0022553408052772284, 0.005558423697948456, 0.006837284658104181, 0.017934871837496758, 0.003539979923516512, 0.0061477781273424625, 0.009622273966670036, -0.02847391925752163, -0.021817678585648537, -0.010477416217327118, -0.00026241689920425415, 0.012665347196161747, 6.77709758747369e-05, 0.014075175859034061, 0.0022514888551086187, 0.0059744385071098804, 0.0036825037095695734, -0.04369698837399483, -0.027225874364376068, -0.006717872805893421, 0.028412288054823875, 0.0007915841997601092, -0.0031682627741247416, -0.0026944680139422417, -0.025130391120910645, 0.000783880241215229, -0.006024514324963093, 0.0428033284842968, -0.010924247093498707, -0.047795508056879044, -0.03959847241640091, -0.012164589017629623, 0.0006432825466617942, 0.0035149420145899057, 0.00047042444930411875, -0.030862154439091682, 0.021170543506741524, -0.009622273966670036, -0.029675740748643875, 0.010993583127856255, 0.015739236027002335, -0.008759427815675735, 0.017195289954543114, -0.00871320441365242, -0.0005017218645662069, 0.004822693299502134, 0.017210697755217552, 0.004853508900851011, -0.01617836393415928, 0.02217206172645092, 0.001241304213181138, 0.010053697042167187, 0.024544889107346535, 0.013535897247493267, -0.0099689532071352, 0.01457593496888876, 0.015854796394705772, 0.00042853402555920184, -0.008597644977271557, 0.006351933814585209, 0.017595896497368813, -0.024467848241329193, -0.011055215261876583, -0.04597736895084381, -0.008559124544262886, -0.03913623094558716, 0.005716355051845312, 0.00753064313903451, 0.016994984820485115, -0.027934640645980835, 0.005180928390473127, 0.02922891080379486, -0.03275733441114426, -0.007026032079011202, -0.021571151912212372, 0.013489673845469952, -0.020276881754398346, -0.030461547896265984, -0.01645570620894432, -0.012357188388705254, 0.017765384167432785, -0.0030623332131654024, 0.010747055523097515, -0.01664060167968273, -0.013782424852252007, -0.014468079432845116, 0.012133772484958172, -0.03941357508301735, -0.0008098811958916485, -0.00024099020811263472, 0.008220149204134941, -0.004368158057332039, 0.007996734231710434, 0.014776239171624184, -0.01983005180954933, -0.011748573742806911, 0.002727209823206067, 0.00828178133815527, 0.025515589863061905, 0.02227991819381714, 0.011548269540071487, -0.018227623775601387, 0.011232406832277775, -0.03155551478266716, 0.0035688700154423714, -0.0022245249710977077, 0.02642466127872467, -0.0032318206503987312, 0.03328120335936546, -0.02061585709452629, 0.015646789222955704, -0.0006639870116487145, -0.006771800573915243, -0.004052294883877039, -0.011748573742806911, -0.016578970476984978, -0.020061170682311058, -0.013951912522315979, 0.0055044954642653465, -0.024267544969916344, 0.005612351465970278, 0.00939115509390831, 0.0364244282245636, 0.008528308942914009, -0.01983005180954933, -0.04375862330198288, 0.014522007666528225, 0.014552823267877102, -0.00684884050861001, 0.01151745393872261, 0.021555744111537933, -0.02644006907939911, 0.01567760482430458, -0.0045800176449120045, -0.025346102192997932, 0.003851991379633546, 0.030523179098963737, 0.020153619349002838, 0.0065946090035140514, 0.0534348227083683, -0.04153987392783165, 0.002108965301886201, -0.05500643700361252, -0.014313999563455582, -0.0023131207562983036, -0.02431376837193966, -0.042926590889692307, -0.007989030331373215, -0.019722195342183113, 0.003979106899350882, -0.012934986501932144, 0.019506484270095825, -0.005288783926516771, 0.012911874800920486, 0.01389028038829565, -0.0018951797392219305, 0.005053812637925148, 0.009691610001027584, -0.008381932973861694, -0.010045993141829967, 0.01799650304019451, 0.004703281447291374, -0.010053697042167187, -0.016055099666118622, 0.03972173482179642, 0.012804019264876842, 0.00320870871655643, -0.005211744457483292, 0.014491191133856773, -0.010053697042167187, 0.04271088168025017, 0.029213503003120422, -0.021355440840125084, -0.005689391400665045, -0.010854911990463734, 0.011409598402678967, -0.0011035954812541604, 0.017749976366758347, -0.005338860210031271, 0.009768649935722351, -0.034421395510435104, -0.03553076833486557, 0.0008238446316681802, -0.00753064313903451, 0.00423719035461545, 0.026871491223573685, -0.004229486454278231, -0.006382749415934086, 0.014984246343374252, 0.024467848241329193, -0.011193886399269104, 0.002746469806879759, 0.005577683448791504, -0.010277112945914268, 0.006167038343846798, 0.003651687875390053, 0.0033416023943573236, -0.011825613677501678, -0.0002679541357792914, 0.028643406927585602, -0.0018364369170740247, 0.007172408048063517, -0.027718929573893547, -0.008528308942914009, -0.0009784058202058077, -0.010993583127856255, -0.024745192378759384, -0.030322875827550888, 0.0026463179383426905, 0.012665347196161747, -0.010677720420062542, -0.006864248774945736, 0.013967320322990417, 0.010400376282632351, -0.008605348877608776, -0.008643868379294872, 0.0023015649057924747, -0.012696163728833199, 0.014552823267877102, -0.009814874269068241, -0.004402826074510813, 0.00865927617996931, 0.011725462041795254, -0.00010809650848386809, -0.00997665710747242, -0.012495859526097775, 0.008898099884390831, -0.01665601134300232, -0.005439011845737696, 0.002386308740824461, 0.013428041711449623, -0.011725462041795254, 0.0005161668523214757, -0.029644925147294998, -0.005600795615464449, 0.006771800573915243, 0.0009654053137637675, 0.007965917699038982, 0.008975139819085598, 0.027626480907201767, -0.004568461794406176, 0.009961249306797981, 0.004210226703435183, 0.0034186423290520906, 0.010554456152021885, -0.012904170900583267, 0.0043180822394788265, -0.010277112945914268, 0.006351933814585209, 0.00025302768335677683, 0.06748688966035843, -0.0034051602706313133, -0.008805652149021626, -0.005955178756266832, 0.015615972690284252, -0.013374113477766514, 0.005061516538262367, 0.034113235771656036, -0.004506829660385847, -0.009984361939132214, -0.0033338984940201044, -0.031047049909830093, -0.012287852354347706, -0.001785397995263338, -0.017457224428653717, 0.028905343264341354, 0.018427927047014236, 0.014059768058359623, -0.011425006203353405, 0.022387772798538208, 0.004834249150007963, 0.023882346227765083, -0.0021243731025606394, 0.0044721621088683605, -0.013713088817894459, -0.00034403096651658416, 0.004210226703435183, 0.01045430451631546, -0.015038174577057362, 0.019414035603404045, 0.019537299871444702, -0.007384267169982195, -0.028027089312672615, -0.017164472490549088, 0.00804295763373375, -0.0025596481282263994, 0.009167739190161228, 0.004056146834045649, -0.024344585835933685, 0.015569749288260937, -0.007349599618464708, -0.0011700423201546073, 0.021232176572084427, 0.008073774166405201, 0.001967404503375292, -0.024236729368567467, 0.006359637714922428, -0.008004438132047653, -0.02160196751356125, -0.02343551442027092, -0.01665601134300232, -0.0037672475446015596, 0.008289485238492489, 0.018951797857880592, 0.012164589017629623, -0.017796199768781662, -0.005030700471252203, -0.004630093462765217, -0.019691379740834236, -0.002813879633322358, -0.018659045919775963, -0.004572313744574785, -0.02583915740251541, -0.03226428106427193, 0.00024351807951461524, -0.01665601134300232, -0.0047880252823233604, -0.01587020419538021, 0.010908839292824268, -0.01577775739133358, -0.001315455068834126, 0.02100105583667755, 0.009760946035385132, -0.01220310851931572, -0.014167624525725842, 0.023358475416898727, 0.015901019796729088, 0.02419050596654415, 0.0044721621088683605, 0.006509865168482065, 0.007295671384781599, -0.002605872228741646, -0.008744020015001297, 0.0025346102192997932, 0.008605348877608776, 0.02101646549999714, 0.021910127252340317, -0.018612822517752647, 0.004329638089984655, -0.020492594689130783, -0.006586905103176832, -0.004079259000718594, -0.019783826544880867, -0.007368859369307756, 0.021324623376131058, -0.007272559683769941, 0.0056046475656330585, -0.01673305034637451, 0.0009475898696109653, -0.011478934437036514, 0.01239570789039135, 0.01916750892996788, -0.0014011618914082646, 0.0022784529719501734, 0.001290417043492198, -0.005057664588093758, 0.013967320322990417, -0.014028952457010746, -0.02294246107339859, -0.00027325062546879053, -0.009560642763972282, -0.028705039992928505, -0.007064552046358585, -0.010831799358129501, -0.02024606615304947, 0.010685424320399761, 0.017888648435473442, -0.003004553262144327, -0.020569633692502975, -0.025484774261713028, -0.00597829045727849, 0.0005282043130137026, -0.011386486701667309, -0.012611419893801212, 0.023219803348183632, 0.0028543255757540464, -0.018412519246339798, -0.008890395984053612, -0.011648422107100487, -0.016871722415089607, 0.009059883654117584, 0.02041555382311344, 0.007580718956887722, -0.0066716489382088184, -0.011232406832277775, 0.0021051133517175913, 0.02488386444747448, -0.015215366147458553, 0.006209409795701504, 0.006902768276631832, 0.012696163728833199, 0.018612822517752647, 0.006263338029384613, 0.01702580228447914, 0.011702349409461021, 0.01461445540189743, -0.02150951884686947, -0.0150535823777318, 0.001194117357954383, -0.006644684821367264, 0.02178686298429966, -0.030322875827550888, -0.00866698008030653, 0.005639315117150545, -0.008096885867416859, -0.0020088134333491325, -0.03146306425333023, 0.01986086741089821, -0.00021137802104931325, -0.007153147831559181, 0.008690092712640762, -0.001050630584359169, -0.015230773948132992, -0.009275594726204872, 0.005932066589593887, 0.02517661452293396, 0.0032298946753144264, 0.024128872901201248, 0.022202877327799797, 0.01983005180954933, -0.0032048567663878202, 0.003511090064421296, 0.0004653687065001577, -0.028504736721515656, 0.003495682030916214, 0.01264223549515009, 0.004190966486930847, 0.012257036752998829, -0.009599162265658379, 0.022772973403334618, -0.007480567321181297, -0.010038289241492748, 0.007218631915748119, -0.008266373537480831, -0.0034995342139154673, -0.023943977430462837, 0.0005070183542557061, -0.01200280524790287, -9.419322304893285e-05, 0.00046392419608309865, -0.017580488696694374, 0.016101323068141937, 0.0037402836605906487, 0.0020954832434654236, -0.031324394047260284, -0.008690092712640762, 0.0016919871559366584, 0.020091986283659935, 0.0008397341007366776, -0.009576050564646721, 0.012079845182597637, 0.0036478356923907995, 0.01307365857064724, -0.015723828226327896, 0.0036285759415477514, -0.012804019264876842, -0.0113325584679842, -0.02314276434481144, -0.017272328957915306, -0.006544533185660839, -0.04277251288294792, -0.023158172145485878, 0.008890395984053612, -0.0020954832434654236, -0.016101323068141937, 0.012981210835278034, 0.028335249051451683, 0.016517339274287224, 0.011640718206763268, 0.00019428481755312532, 0.0036305019166320562, 0.004556905943900347, 0.00510388845577836, 0.0055815353989601135, -0.014344816096127033, -0.004125482868403196, 0.0013915318995714188, 0.016625193879008293, 0.02090860903263092, -0.00895973201841116, 0.022680524736642838, 0.007014476228505373, -0.026856083422899246, 0.00672942865639925, 0.019984131678938866, 0.012357188388705254, 0.016101323068141937, 0.0026193540543317795, 0.015538932755589485, -0.028042497113347054, -0.016039691865444183, -0.008628460578620434, -0.007873469963669777, -0.0026906158309429884, 0.006247929763048887, -0.0016630972968414426, 0.01607050746679306, -0.011070623062551022, -0.029382990673184395, -3.22905216307845e-05, 0.000951923371758312, -0.002282304922118783, -0.017488040030002594, 0.016486523672938347, 0.02982982061803341, 0.01244193222373724, 0.009067587554454803, 0.0072610038332641125, 0.0008681425242684782, -0.010477416217327118, 0.00038110639434307814, -0.0017372480360791087, -0.007700130809098482, 0.0033165644854307175, 0.013042842969298363, 0.011163070797920227, -0.016039691865444183, 0.015361741185188293, 0.0014011618914082646, 0.01456823106855154, -0.00015311664901673794, -0.0009129219688475132, 0.008443565107882023, 0.0008955879602581263, -0.004999884869903326, -0.001777693978510797, -0.008366525173187256, -0.009437378495931625, -0.005550719331949949, -0.0003681059170048684, -0.009576050564646721, 0.006756392773240805, 0.00035390170523896813, -0.008150814101099968, -0.014591342769563198, -0.01975301094353199, -0.018736084923148155, 0.009552938863635063, -0.015500413253903389, -0.002632836112752557, 0.003911697305738926, -0.009406562894582748, 0.006213262211531401, 0.019414035603404045, -0.007773318327963352, 0.0009967026999220252, 0.001738211140036583, 0.0018277699127793312, 0.011001287028193474, 0.020954832434654236, -0.01839711144566536, -0.008813356049358845, -0.002655948046594858, -0.01432940736413002, -0.001916365697979927, 0.014306295663118362, 0.02160196751356125, 0.021324623376131058, -0.012226220220327377, 0.019213732331991196, 0.006806468591094017, -0.00677950493991375, -0.00578569108620286, 0.012056732550263405, 0.005404343828558922, -0.017657527700066566, -0.00010520750947762281, 0.023851530626416206, -0.012025916948914528, 0.0068449885584414005, 0.010785575956106186, -0.0002056000375887379, -0.006109258159995079, 0.022480221465229988, 0.005797246936708689, 0.004499125760048628, 0.004714837297797203, 0.01588561199605465, -0.0027387659065425396, -0.0035091640893369913, 0.013851760886609554, -0.016671419143676758, -0.018951797857880592, -0.011309446766972542, -0.015823980793356895, 0.025407735258340836, -0.01587020419538021, -0.005257968325167894, -0.002578908111900091, -0.005612351465970278, -0.008651572279632092, -0.0020165175665169954, 0.001953922677785158, 0.00019139582582283765, 0.006012958474457264, 0.007569163106381893, 0.010816391557455063, -0.0043180822394788265, -0.005365823861211538, 0.012726979330182076, 0.00938345119357109, -0.0004684984451159835, -0.0021051133517175913, 0.010770168155431747, -0.0018451038049533963, 0.002388234715908766, 0.006887360475957394, -0.02400561049580574, -0.023697450757026672, 0.000845512084197253, -0.01566990092396736, 0.020954832434654236, -0.014067471958696842, -0.020939424633979797, -0.0032626367174088955, 0.020785344764590263, -0.004945956636220217, 0.0014416077174246311, -0.02440621703863144, -0.011725462041795254, -0.0005850211600773036, -0.017087433487176895, -0.024714376777410507, -0.005820359103381634, -0.0205388180911541, -0.011001287028193474, 0.0027406918816268444, -0.006255634129047394, -0.014421855099499226, 0.005011440720409155, 0.019814644008874893, 0.011371077969670296, -0.015092101879417896, 0.010500527918338776, 0.01108603086322546, 0.0007617312949150801, 0.008543716743588448, 0.014860982075333595, -0.014121400192379951, -0.0169487614184618, -0.01239570789039135, -0.0024325326085090637, -0.006640832871198654, 0.0008411785820499063, 0.003018035087734461, 0.013836353085935116, -0.01878231018781662, 0.02701016329228878, 0.0024922383017838, -0.01389028038829565, 0.0009244779357686639, -0.026363028213381767, 0.014452671632170677, 0.010770168155431747, -0.00037942113704048097, -0.03405160456895828, -0.010716239921748638, 0.014722310937941074, 0.018073543906211853, -0.0033781963866204023, 0.0018720678053796291, -0.0006389490445144475, -0.014529711566865444, 0.009961249306797981, 0.0033416023943573236, 0.0046686134301126, 0.02294246107339859, 0.016394075006246567, 0.009090699255466461, -0.0068681007251143456, 0.016332443803548813, 0.00416400283575058, 0.023373883217573166, 0.004079259000718594, 0.0074112312868237495, 0.0007126184063963592, 0.014491191133856773, 0.0036112419329583645, 0.0037980633787810802, 0.026363028213381767, -0.002935217460617423, -0.004144742619246244, 0.0007718427805230021, 0.008143109269440174, -0.018165990710258484, -0.009699313901364803, 0.017657527700066566, -0.04357372596859932, -0.00027084312750957906, 0.009552938863635063, -0.025530997663736343, -0.011679237708449364, 0.001327974023297429, -0.006263338029384613, 0.021540336310863495, 0.02902860753238201, 0.012418819591403008, 0.024467848241329193, -0.008381932973861694, -0.013921096920967102, -0.004714837297797203, 0.02767270617187023, 0.02497631125152111, -0.00919855572283268, -0.020184434950351715, -0.004271858371794224, -0.0011806352995336056, 0.004125482868403196, 0.018366293981671333, -0.02818116918206215, 0.0008363636443391442, -0.0032202647998929024, 0.011347966268658638, 0.008266373537480831, 0.004637797363102436, 0.004063850734382868, 0.009483602829277515, 0.015323221683502197, 0.0010265556629747152, 0.00416400283575058, -0.010346448980271816, 0.009121515788137913, 0.00029973307391628623, -0.015854796394705772, -0.005577683448791504, 0.02323521114885807, -0.007010624278336763, 0.01848955824971199, -0.014313999563455582, -0.003678651759400964, -0.01905965246260166, 0.007519087288528681, -0.00982257816940546, 0.006328821647912264, 0.0022341550793498755, -0.007861914113163948, 0.0008589940844103694, 0.02990686148405075, 0.0066947611048817635, 0.005924362689256668, 0.012449636124074459, -0.01876690238714218, 0.003982958849519491, 0.0019500706112012267, -0.005019144620746374, -0.007110775914043188, 0.004256450571119785, 0.03380507603287697, -0.00024472182849422097, -0.002571204211562872, 0.007773318327963352, -0.005388936027884483, -0.005215596407651901, -0.00022185062698554248, -0.0067486888729035854, -0.0013636049116030335, -0.0115636782720685, 0.011425006203353405, 0.012765498831868172, 0.005481383763253689, 0.01975301094353199, 0.0035862040240317583, 0.005100036505609751, 0.023004092276096344, -0.00454920157790184, 0.014159919694066048, 0.02160196751356125, 0.01569301262497902, 0.022618893533945084, -0.005177076440304518, -0.005427455995231867, -0.03630116581916809, 0.029953084886074066, 0.003278044518083334, 0.013543601147830486, 0.005932066589593887, 0.036640141159296036, 0.019306180998682976, 0.0013616789365187287, 0.008351117372512817, 0.008312596939504147, 0.0007824357599020004, 0.0075267911888659, -0.0038211753126233816, 0.0011758203618228436, 0.0020839273929595947, 0.004221782553941011, 0.010931950993835926, 0.03454465791583061, -0.023111948743462563, 0.008243261836469173, -0.00672942865639925, 0.006274893879890442, -0.0064867534674704075, -0.00684884050861001, -0.015076694078743458, 0.005134704522788525, -0.007715538609772921, -0.006933584343641996, 0.0073149316012859344, -0.001953922677785158, -0.005388936027884483, 0.03395915403962135, 0.014059768058359623, 3.924216071027331e-05, -0.022095022723078728, -0.0020608154591172934, -0.006517569534480572, -7.318783173104748e-05, 0.013112178072333336, 0.00326841464266181, -0.009953545406460762, 0.00010310095240129158, 0.04033805429935455, -0.00938345119357109, -0.003617019858211279, 0.028042497113347054, 0.008643868379294872, 0.019537299871444702, -0.005739467218518257, 0.004202522337436676, 0.008312596939504147, -0.016394075006246567, 0.009406562894582748, 0.020739121362566948, -3.198958438588306e-05, -0.016994984820485115, -0.01499965414404869, 0.008620756678283215, 0.0018682157387956977, 0.012911874800920486, 0.0007939917268231511, -0.01685631461441517, -0.009406562894582748, 0.0013058250769972801, 0.011810204945504665, -0.004160150419920683, 0.00685269245877862, 0.008304893039166927, -0.015654493123292923, 0.0013626419240608811, -0.012726979330182076, 0.005612351465970278, 0.007665462791919708, -0.009036771953105927, -0.003834657371044159, 0.00039675511652603745, 0.015901019796729088, -0.009283299557864666, -0.024514073505997658, 0.0026906158309429884, 0.004429790191352367, 0.010955063626170158, -0.004133186768740416, 0.005650871433317661, -0.007515234872698784, 0.02063126489520073, -0.011918061412870884, -0.016871722415089607, 0.006271041929721832, -0.005296488292515278, -0.000590799143537879, 0.020369330421090126, -0.01461445540189743, -0.0042641544714570045, -0.0023169727064669132, 0.03076970763504505, -0.00709151616320014, 0.01761130429804325, 0.018951797857880592, -0.02274215593934059, -0.01588561199605465, 0.004703281447291374, 0.012934986501932144, -0.011109142564237118, -0.006987512111663818, 0.009029068052768707, 0.013004322536289692, 0.028319839388132095, -0.003424420254305005, -0.004996032919734716, 0.006317265797406435, -0.01437563169747591, -0.009075291454792023, -0.009044475853443146, 0.0002648243971634656, -0.033650998026132584, 0.009907322004437447, 0.007226335816085339, -0.017688343301415443, 0.005284931976348162, -0.014545119367539883, 0.002873585559427738, 0.014691495336592197, 0.020585041493177414, -0.0014974615769460797, 0.00542360357940197, -0.01025400124490261, -0.003819249337539077, 0.020877793431282043, -0.01065460778772831, 0.017796199768781662, 0.00047523941611871123, 0.014452671632170677, -0.009807170368731022, -0.014899502508342266, 0.008482084609568119, -0.023589594289660454, 0.025438550859689713, 0.01504587847739458, -0.011995101347565651, -0.02516120672225952, -0.000939404359087348, 0.01433711126446724, 0.0033916784450411797, -0.010192369110882282, 0.020846977829933167, 0.007210927549749613, -0.014853278174996376, -0.006918176542967558, 0.008821059949696064, 0.03476037085056305, -0.016394075006246567, 0.02429836057126522, -0.014545119367539883, 0.010192369110882282, -0.0235279630869627, 0.0053003402426838875, -0.016116730868816376, -0.027040978893637657, -0.004714837297797203, 0.010338745079934597, -0.0012422672007232904, -0.01984545961022377, -1.4497631127596833e-05, 0.006529125384986401, 0.011432710103690624, -0.014082880690693855, -0.011294038966298103, 0.013928800821304321, -0.037225645035505295, -0.0021667450200766325, -0.031154906377196312, -0.01637866720557213, 0.02295786887407303, 0.004140890669077635, -0.027903825044631958, 0.008844171650707722, -0.019506484270095825, -0.01026170514523983, -0.032171830534935, -0.00010346208000555634, 0.007881173864006996, 0.0014483487466350198, 0.0037402836605906487, -0.010038289241492748, 0.022418590262532234, 0.0028947715181857347, 0.001386716845445335, 0.0003406604810152203, 0.00876713264733553, -0.004152446519583464, 0.006891212426126003, 0.002494164276868105, 0.0009081069729290903, -0.03996826335787773, 0.01157138217240572, -0.010793279856443405, 0.0020974092185497284, 0.006737133022397757, -0.0050923326052725315, -0.00038929187576286495, 0.005959030706435442, 0.010038289241492748, -0.006548385135829449, -0.007904286496341228, 0.0037807293701916933, 0.028196576982736588, 0.006167038343846798, -0.000519055814947933, -0.0014358297921717167, -0.0026520960964262486, -0.023697450757026672, 0.00827407743781805, -0.0018354738131165504, -0.022110430523753166, 0.01525388564914465, -0.017595896497368813, 0.008589941076934338, -0.0007169519085437059, -0.031139498576521873, -0.01637866720557213, -0.007068403996527195, 0.018381701782345772, 0.02121676877140999, -0.020754529163241386, -0.016209179535508156, 0.004063850734382868, 0.009853393770754337, 0.006036070175468922, -0.02257266826927662, -0.0034224942792207003, 0.01325855404138565, 0.0021243731025606394, -0.008243261836469173, -0.002091631293296814, 0.016517339274287224, 0.01524618174880743, 0.027364546433091164, 0.026794452220201492, 0.024344585835933685, 0.011001287028193474, -0.009421970695257187, -0.0013626419240608811, -0.025638854131102562, 0.011887244880199432, 0.006606165319681168, -0.024822231382131577, -0.0107008321210742, 0.00909840315580368, 0.015461892820894718, -0.01132485456764698, -0.0035784998908638954, 0.0022534148301929235, -0.013374113477766514, -0.018828533589839935, -0.006467493250966072, 0.019152101129293442, 0.011340262368321419, 0.023358475416898727, -0.014660678803920746, -0.0031759669072926044, -0.04523778706789017, -0.015808572992682457, -0.010670015588402748, -0.010477416217327118, 0.008289485238492489, 0.004918992985039949, 0.0169487614184618, 0.0313706174492836, -0.018612822517752647, 0.008243261836469173, -0.023589594289660454, 0.0005421678069978952, 0.0006620610365644097, -0.005065368488430977, 0.019213732331991196, -0.00032717850990593433, -0.0034494581632316113, 0.014313999563455582, -0.00024038834089878947, 0.01966056413948536, 0.0015793164493516088, 0.005400491878390312, 3.719579035532661e-05, 0.01916750892996788, -0.010423488914966583, 0.015022765845060349, -0.001900957664474845, 0.0091061070561409, 0.0021860050037503242, 0.004144742619246244, -0.017380185425281525, -0.010800983756780624, 0.003832731395959854, -0.01026170514523983, -0.0014704976929351687, -0.0054313079454004765, -0.014891798608005047, 0.0046031298115849495, -0.02391316182911396, -0.010908839292824268, 0.0053003402426838875, -0.023851530626416206, -0.044190045446157455, 4.70364248030819e-05, 0.007911990396678448, -0.002860103501006961, 0.015654493123292923, 0.008250965736806393, -0.0019298476399853826, 0.019105877727270126, 0.0025923901703208685, 0.0060514784418046474, 0.0014473857590928674, -0.01702580228447914, 0.005392787978053093, 0.0008912545163184404, 0.009814874269068241, -0.003453310113400221, -0.0053504160605371, -0.008312596939504147, -0.007126184180378914, 0.0073341913521289825, 0.0010920395143330097, 0.006163185928016901, -0.01325855404138565, 0.002318898681551218, -0.004198670387268066, -0.017873240634799004, -0.0017815460450947285, 0.014398743398487568, 0.0002821583766490221, 0.016825499013066292, -0.0006139111355878413, 0.00522715225815773, -0.02198716625571251, -0.017195289954543114, 0.012819427065551281, -0.009491306729614735, 0.0002758988703135401, 0.0024517925921827555, 0.016532747074961662, 0.007549902889877558, 0.008605348877608776, -0.0018354738131165504, 0.0024729783181101084, 0.004441346041858196, -0.014907206408679485, -0.013273961842060089, -0.014830166473984718, 0.009568346664309502, 0.021170543506741524, 0.0134588573127985, 0.024159690365195274, 0.007638498675078154, 0.009283299557864666, -0.002293860772624612, -0.021262992173433304, -0.003842361271381378, -0.017549673095345497, -0.0021301512606441975, 0.007615386974066496, 0.026162724941968918, 0.005096184555441141, 0.019521892070770264, 0.0066177211701869965, -0.01704121008515358, -0.00030478881672024727, 0.02730291523039341, 0.021155135706067085, 0.0054505676962435246, 0.03543832153081894, -0.011101438663899899, -0.01617836393415928, -0.019013429060578346, 0.01916750892996788, 0.012711571529507637, -0.007199371699243784, 0.015230773948132992, 0.004210226703435183, 0.008620756678283215, 0.0012547861551865935, 0.0010641126427799463, -0.003684429684653878, -0.009067587554454803, -0.04181721806526184, -0.013497377745807171, 0.005566127598285675, 0.0018537708092480898, -0.0012769351014867425, -0.013327890075743198, 0.01307365857064724, -0.0013761238660663366, 0.0013000470353290439, 0.01021548081189394, 0.007076107896864414, -0.022033389657735825, -0.015192253515124321, -0.020600449293851852, -0.010824095457792282, -0.009999769739806652, 0.007796430494636297, 0.022911643609404564, 0.0048650652170181274, 0.008636164478957653, -0.007677018642425537, 0.0008339561172761023, -0.004009922966361046, -0.007280263584107161, 0.00018501596059650183, -0.01713365688920021, 0.009437378495931625, 0.012842538766562939, -0.011340262368321419, -0.015392557717859745, 0.0006148741231299937, 0.0016871722182258964, 0.011748573742806911, -0.002447940409183502, 0.020307697355747223, -0.007137740030884743, 0.0023323807399719954, -0.005516051780432463, -0.0043951221741735935, 0.005442863795906305, 0.0014358297921717167, -0.014722310937941074, 0.0032915265765041113, -0.006321117747575045, -0.004818841349333525, 0.021155135706067085, 0.015854796394705772, 0.004645501729100943, 0.016209179535508156, 0.014398743398487568, -0.01215688418596983, -0.015261589549481869, -0.007187815848737955, 0.012857947498559952, -0.0062248180620372295, -0.013535897247493267, 0.01566990092396736, -0.018813125789165497, 0.00827407743781805, 0.01306595467031002, 0.023759081959724426, 0.004156298469752073, -0.008782540448009968, 0.009452786296606064, -3.587166793295182e-05, 0.002860103501006961, -0.014899502508342266, 0.007684722542762756, 0.009437378495931625, 0.023605002090334892, -0.032110199332237244, -0.007996734231710434, -0.0014656827552244067, 0.013127586804330349, -0.0010467786341905594, -0.0028003978077322245, 0.009668498300015926, -0.0020800752099603415, -0.006359637714922428, -0.00982257816940546, -0.016702234745025635, -0.01418303232640028, 0.023096539080142975, 0.0006538755260407925, 0.0014098287792876363, 0.000867661030497402, -0.003669021651148796, 0.013628344982862473, -0.0047880252823233604, 0.006910472642630339, 0.019090469926595688, -0.009129219688475132, -0.015384853817522526, 0.003122038906440139, -0.004930548835545778, -0.008482084609568119, -0.012226220220327377, -0.012426524423062801, -0.0032318206503987312, 0.0005065368604846299, -0.015169141814112663, 3.22905216307845e-05, -0.011602197773754597, 0.01713365688920021, 0.007341895252466202, -0.009668498300015926, -0.02499171905219555, -0.00479572918266058, -0.0160859152674675, 0.0402764230966568, 0.02816576138138771, 0.01830466277897358, 0.004229486454278231, 0.014799350872635841, 0.0099689532071352, 0.017565080896019936, -0.013905689120292664, -0.000312733551254496, -0.005562275648117065, 0.018859349191188812, -0.00938345119357109, -0.003676725784316659, -0.01171005330979824, -0.016825499013066292, -0.001171968411654234, 0.0004959438811056316, 0.019521892070770264, -0.004957512952387333, -0.012673051096498966, 0.012349484488368034, -0.012049028649926186, 0.037410538643598557, 0.005596943199634552, 0.016625193879008293, -0.009861097671091557, 0.0001115271879825741, 0.005589239299297333, 0.028396880254149437, -0.001896142726764083, -0.0190750602632761, 0.015916427597403526, -0.020600449293851852, 0.0377495139837265, 0.0014868685975670815, -0.013343297876417637, -0.0150535823777318, -0.00785035826265812, 0.0030084052123129368, 0.013767017051577568, -0.000194044056115672, -0.006756392773240805, 0.0005980216665193439, 0.0075267911888659, 0.02952166087925434, -0.017888648435473442, 0.026671187952160835, 0.006190150044858456, 0.001533092581667006, 0.003963699098676443, -0.003195226890966296, 0.0035322760231792927, -0.0060938503593206406, 0.0141907362267375, 0.009907322004437447, -0.0012172292917966843, 0.0017170251812785864, -0.021155135706067085, 0.017873240634799004, -0.024144280701875687, -0.004260302521288395, 0.00223993300460279, 0.007623090874403715, -0.017256921157240868, 0.008751723915338516, 0.006455937400460243, -0.010931950993835926, 0.006324969697743654, -0.0027214318979531527, -0.014283183962106705, -0.025022536516189575, 5.29347853444051e-05, 0.0016505782259628177, -0.011910357512533665, -0.015515821054577827, 0.007026032079011202, -0.005878138821572065, -0.0005046108854003251, 0.022680524736642838, 0.012257036752998829, 0.008304893039166927, 0.01480705477297306, 0.00846667680889368, 0.008351117372512817, 0.00953753013163805, 0.00597829045727849, -0.008358821272850037, 0.0061708902940154076, -2.5940753403119743e-05, 0.03272651880979538, -0.007573015056550503, 0.019922498613595963, 0.007353451568633318, -0.0009105144417844713, -0.002324676839634776, -0.0015629454283043742, 0.002596242120489478, 0.004826545249670744, 0.013212330639362335, 0.015384853817522526, -0.016702234745025635, 0.007503679022192955, 0.00846667680889368, 0.03959847241640091, 0.021925535053014755, -0.010685424320399761, -0.0019597006030380726, 0.0013260480482131243, 0.020754529163241386, -0.004945956636220217, 2.857395156752318e-05, 0.017118249088525772, -0.02198716625571251, 0.01332018617540598, -0.0011353744193911552, 0.003670947626233101, -0.003624723758548498, 0.0008936619851738214, -0.00665238918736577, 0.013905689120292664, 0.00037893964326940477, 0.0002982885926030576, -0.012942690402269363, 0.0036362798418849707, -0.003539979923516512, 0.017364777624607086, 0.014514303766191006, 0.004957512952387333, 0.005901250522583723, 0.006502161268144846, 0.014537415467202663, 0.013142994605004787, 0.009545234963297844, -0.016702234745025635, 0.011594493873417377, -0.005003736820071936, -0.005647019483149052, -0.007858062162995338, -0.010554456152021885, 0.015592860989272594, -0.004803433082997799, -0.009730130434036255, 0.004572313744574785, -0.0064097135327756405, 0.025484774261713028, 0.009961249306797981, -0.012210812419652939, 0.00045092374784871936, -0.0018191029084846377, 0.019198324531316757, 0.011602197773754597, -0.02218746952712536, 0.007765614427626133, -0.0013790129451081157, 0.007330339401960373, 0.005096184555441141, -0.046532053500413895, -0.006259486079216003, -0.024421624839305878, -0.0032202647998929024, -0.0056585753336548805, 0.005847322754561901, 0.00578569108620286, 0.00554301543161273, -0.003877029288560152, -0.0034899041056632996, -0.02090860903263092, -0.007330339401960373, -0.009653090499341488, -0.0018614748260006309, 0.006182446144521236, -0.028196576982736588, 0.0005551682552322745, -0.009082995355129242, 0.0022880828473716974, 0.004965216852724552, 0.003967551048845053, -0.02032310701906681, 0.0043411944061517715, -0.0005123148439452052, 0.004761061165481806, -0.00015131103282328695, 0.00958375446498394, 0.006821876857429743, -0.007711686659604311, 0.0076731666922569275, -0.015338629484176636, 0.02286542020738125, -0.011394190602004528, -0.029876044020056725, 0.013089066371321678, -0.021756047382950783, -0.008420453406870365, 0.007703982759267092, 0.011024398729205132, 0.017780791968107224, -0.010130736976861954, -0.01476853433996439, -0.011240110732614994, -0.00804295763373375, 0.013227738440036774, -0.014930318109691143, 0.00511159235611558, 0.02497631125152111, 0.0036382058169692755, 0.013150698505342007, 0.021417072042822838, -0.006929732393473387, -0.003572721965610981, 0.017164472490549088, -0.011448117904365063, 0.023127356544137, -0.021463295444846153, -0.019398627802729607, 0.015546636655926704, -0.0017911759205162525, 0.0018922907765954733, 0.0006322080735117197, -0.005685538984835148, -0.0093372268602252, 0.014398743398487568, -0.003511090064421296, -0.005327303893864155, 0.024421624839305878, 0.0027638038154691458, -0.013759313151240349, 0.00042805253178812563, -0.006598460953682661, 0.0014839796349406242, -0.02363581955432892, -0.0201382115483284, 0.005053812637925148, -0.01200280524790287, -0.015585157088935375, -0.010924247093498707, 0.016286218538880348, -0.011648422107100487, 0.006251781713217497, -0.0015879834536463022, 0.01905965246260166, -0.022095022723078728, -0.027071794494986534, -0.01113225519657135, -0.00032356727751903236, -0.0005681687034666538, -0.006825728807598352, 0.0009100329480133951, -0.0047533572651445866, 0.022541852667927742, 0.009737834334373474, -0.001976071624085307, 0.013836353085935116, -0.016055099666118622, 0.01830466277897358, -0.006740984972566366, -0.018551189452409744, 0.01918291673064232, -0.007742502726614475, -0.013713088817894459, 0.007372711319476366, -0.014660678803920746, 0.004137038718909025, -0.0010602605761960149, -0.01506128627806902, 0.0033088605850934982, 0.008312596939504147, 0.01020777691155672, -0.0015186475357040763, -0.009160035289824009, -0.0032741925679147243, 0.006367341615259647, 0.05411277338862419, 0.01828925497829914, 0.02072371356189251, 0.007919694297015667, 0.010007473640143871, -0.02177145518362522, 0.003222190774977207, 0.016301628202199936, -0.000875365047249943, -0.0076962788589298725, 0.010431192815303802, 0.006740984972566366, 0.026563331484794617, 0.021956350654363632, -0.011987397447228432, 0.012187700718641281, 0.004094666801393032, -0.016594378277659416, -0.009861097671091557, 0.008343413472175598, -0.00934493076056242, 0.02488386444747448, -0.00541975162923336, -0.0051693725399672985, -0.009136923588812351, -0.0019452556734904647, 0.004179410636425018, -0.022603485733270645, 0.006621573120355606, -0.00047812843695282936, 0.043820254504680634, 0.003364714328199625, -0.037225645035505295, 0.02807331271469593, 0.012318667955696583, 0.004148594569414854, 0.009599162265658379, 0.009915025904774666, 8.041031833272427e-05, -0.005623907316476107, -0.023204395547509193, -0.01810435950756073, 0.007295671384781599, -0.005731763318181038, -0.022418590262532234, -0.0070529961958527565, 0.01684090681374073, 0.02118595317006111, -0.0002713246503844857, 0.010685424320399761, 0.0025134242605417967, 0.022002574056386948, -0.005157816223800182, -0.006683204788714647, 0.018181398510932922, 0.0034976082388311625, 0.005893546622246504, 0.005261820275336504, -0.010146144777536392, 0.006367341615259647, 0.004853508900851011, -0.012665347196161747, 0.002247636904940009, 0.01799650304019451, -0.01432940736413002, -0.0011902652913704515, 0.01588561199605465, 0.02332765981554985, -0.01634785160422325, -0.0036728738341480494, 0.0034995342139154673, 0.0046570575796067715, -0.014075175859034061, -0.01041578408330679, -0.019383220002055168, -0.009560642763972282, -0.03503771126270294, -0.009013659320771694, -0.017873240634799004, -0.0025057203602045774, -0.005188632290810347, -0.003135520964860916, 0.0066716489382088184, -0.00696825236082077, -0.006340377498418093, 0.00043503427878022194, -0.00326841464266181, 0.0049844766035676, 0.014860982075333595, 0.013851760886609554, -0.01462215930223465, -0.007126184180378914, -0.01983005180954933, 0.007418935187160969, 0.008728612214326859, 0.0031297430396080017, 0.010092217475175858, -0.010670015588402748, 0.004198670387268066, -0.0011093735229223967, -0.006155482027679682, 0.020199842751026154, -0.0004983513499610126, 0.008096885867416859, 0.01108603086322546, -0.03260325640439987, -0.012896467000246048, -0.01811976730823517, 0.0064867534674704075, 0.01889016479253769, -0.005962882656604052, -0.004029182717204094, -0.014267776161432266, 0.012349484488368034, -0.0011122624855488539, 0.004972920753061771, 0.000627874571364373, 0.0007005809457041323, 0.004275710321962833, 0.003599685849621892, -0.01887475699186325, 0.010962767526507378, 0.027225874364376068, 0.00919855572283268, 0.0002427958243060857, -5.4800595535198227e-05, 0.014098288491368294, 0.005396639928221703, -0.0054313079454004765, -0.01026170514523983, -0.009861097671091557, -0.008643868379294872, -0.014352519996464252, 0.01022318471223116, -0.015808572992682457, -0.00348605215549469, -0.004321934189647436, -0.002729135798290372, 0.010631496086716652, -0.0025654262863099575, -0.03207938373088837, 0.021324623376131058, 0.02586997300386429, -0.000892698997631669, 0.004433642141520977, 0.01238800399005413, -0.00045622020843438804, 0.008019845932722092, 0.00020415554172359407, 0.012549787759780884, -0.008366525173187256, 0.007738650776445866, -0.009707017801702023, 0.019706787541508675, 0.0006808394682593644, 0.009090699255466461, -0.031432248651981354, 0.006398157682269812, -0.013628344982862473, 0.010307928547263145, -0.003399382345378399, 0.011894948780536652, 0.013443449512124062, 0.032171830534935, 0.012257036752998829, -0.009707017801702023, -0.017457224428653717, 0.03241835907101631, -0.032387543469667435, -0.022772973403334618, -0.003206782741472125, 0.0036112419329583645, -0.01636325940489769, 0.020292289555072784, -0.005512199364602566, 0.03204856812953949, -0.003719097701832652, 0.014498895034193993, -0.029105646535754204, -0.025007126852869987, -0.010161553509533405, -0.0010227037128061056, 0.01976841874420643, 0.008582236245274544, -0.015307813882827759, 0.019629748538136482, 0.004329638089984655, 0.011502046138048172, 0.014922614209353924, 0.006182446144521236, 0.0017449520528316498, 0.007611535023897886, -0.013982728123664856, -0.003948291298002005, -0.013867168687283993, 0.016887130215764046, 0.013035139068961143, -0.012958099134266376, -0.022218285128474236, 0.01412910409271717, 0.007018328178673983, 0.021740639582276344, -0.007303375750780106, 0.025145798921585083], "2375910a-0684-4ff8-955d-d8b8b43535d1": [-0.042533084750175476, -0.0045659663155674934, -0.008308381773531437, 0.00947447121143341, -0.03466198593378067, -0.030376611277461052, -0.010159548372030258, 0.002425100188702345, 1.7650756490183994e-05, -0.023540416732430458, 0.03128033131361008, 0.03483689948916435, 0.008075164631009102, -0.013942047953605652, -0.035565707832574844, -0.003450893796980381, -0.005491549149155617, 0.025712257251143456, 0.012929008342325687, -0.03708162158727646, 0.06238574534654617, -0.027359357103705406, -0.04212495684623718, 0.003139329608529806, -0.019779780879616737, -0.004941300954669714, -0.029166793450713158, -0.008505159988999367, -0.02473565749824047, 0.003642205148935318, 0.026236996054649353, 0.041512757539749146, 0.0023522195406258106, -0.02160179428756237, 0.009241253137588501, -0.008330246433615685, 0.027199018746614456, 0.03958871215581894, -0.016310665756464005, -0.029166793450713158, -0.04005514830350876, 0.003350683022290468, 0.003598476992920041, 0.029778990894556046, -0.05124960094690323, 0.00144212378654629, 0.02034824900329113, -0.034545376896858215, 0.020537737756967545, 0.002601835411041975, 0.022724153473973274, -0.017097776755690575, 0.0037114417646080256, -0.021456032991409302, -0.003425385570153594, -0.020085878670215607, 0.030347459018230438, 0.0756208524107933, 0.02526039630174637, -0.020464858040213585, -0.001279053627513349, -0.012593758292496204, -0.0042052073404192924, -0.004733591340482235, -0.035011813044548035, 0.00675238249823451, -0.02706783451139927, -0.006114677991718054, -0.033525049686431885, -0.008410414680838585, -0.0021299340296536684, 0.04751811549067497, -0.0297352634370327, 0.013468325138092041, -0.0005620911833830178, 0.0031794137321412563, -0.0008786660619080067, 0.011872241273522377, 0.019590290263295174, 0.01932791993021965, -0.04798455163836479, -0.004719015210866928, 0.016237786039710045, 0.02935628406703472, 0.07270563393831253, 0.009357862174510956, -0.037606362253427505, -0.041600216180086136, -0.031338635832071304, -0.0010303487069904804, -0.019036399200558662, 0.027956977486610413, -0.02301567606627941, -0.03620705381035805, -0.009168372489511967, 0.011245468631386757, 0.010509374551475048, 0.007251614239066839, 0.03448707237839699, -0.015844231471419334, 0.013803575187921524, 0.02731562778353691, -0.05063740164041519, 0.006741450633853674, -0.013278835453093052, -0.0034454278647899628, -0.0039027531165629625, 0.00487206457182765, -0.002288449089974165, 0.050200119614601135, 0.019692324101924896, -0.014080521650612354, 0.009999210946261883, 0.011099707335233688, -0.04294121637940407, -0.019459106028079987, -0.028073586523532867, -0.011806648224592209, 0.013154938817024231, -0.014065945520997047, 0.013752559199929237, 0.0031302194111049175, 0.03285454958677292, 0.018453354015946388, -0.005484261084347963, 0.025027180090546608, -0.024837689474225044, -0.008680072613060474, 0.013293411582708359, -0.005396804306656122, -0.003476402023807168, -0.01714150421321392, 0.008016860112547874, 0.030376611277461052, -0.003653137246146798, 0.02864205464720726, 0.03469114005565643, 0.05398990958929062, -0.042999520897865295, 0.03151354938745499, -0.0475764200091362, -0.03786873072385788, -0.038451775908470154, -0.007681609597057104, -0.01610659994184971, -0.014131537638604641, -0.03043491579592228, 0.01010124385356903, -0.021179085597395897, 0.010983098298311234, -0.029778990894556046, -0.02534785307943821, -0.015844231471419334, 0.04576898366212845, 0.04539000242948532, -0.0196485947817564, -0.01769539713859558, 0.02434210292994976, -0.008548888377845287, 0.016529308632016182, 0.022592969238758087, -0.06588401645421982, 0.00520367082208395, -0.01823471300303936, 0.04200834780931473, 0.012870704755187035, 0.03340844064950943, 0.002858739346265793, -0.001276320545002818, 0.01925504021346569, 0.03883075341582298, -0.029560349881649017, 0.004755455534905195, -0.019298767670989037, 0.020596042275428772, -0.024283798411488533, 0.0466143973171711, -0.0056810383684933186, 0.0347202904522419, -0.028204770758748055, -0.004795540124177933, -0.008191773667931557, -0.0015232034493237734, -0.01807437464594841, -0.027563422918319702, 0.00763059314340353, -0.015188305638730526, -0.008009571582078934, -0.007761778309941292, 0.017330992966890335, -0.010283445008099079, -0.007710761856287718, 0.015392371453344822, -0.007550424430519342, 0.003157549537718296, -0.02855459786951542, 0.022884491831064224, 0.011121571063995361, 0.01862826757133007, 0.010822760872542858, -0.0033033108338713646, -0.041833434253931046, -0.03614874929189682, 0.054048214107751846, -0.015377795323729515, 0.013840015977621078, -0.018497083336114883, -0.04311612993478775, 0.004227071534842253, -0.04372832551598549, 0.04920894280076027, -0.017491331323981285, 0.02903560921549797, 0.010239716619253159, -0.012950873002409935, 0.0165147315710783, -0.020129606127738953, 0.04241647571325302, 0.003496444085612893, -0.026105811819434166, 0.024138037115335464, 0.021237390115857124, 0.007878387346863747, -0.009532775729894638, -0.04334934800863266, 0.0012489903019741178, 0.021660098806023598, 0.04483611136674881, -0.040025994181632996, -0.008381262421607971, 0.038539230823516846, -0.007306274492293596, 0.0011925079161301255, -0.018249288201332092, 0.006351539399474859, 0.023176012560725212, -0.006191202439367771, 0.02457531914114952, -0.02294279634952545, 0.007973131723701954, 0.005735699087381363, 0.05142451450228691, -0.013891031965613365, 0.014335603453218937, 0.017185233533382416, -0.0034035213757306337, -0.04037582129240036, -0.009379725903272629, -0.004048514179885387, -0.012462573125958443, 0.0188469085842371, 0.003789788344874978, 0.007535848300904036, -0.02598920278251171, -0.0025599291548132896, 0.028394261375069618, 0.011493261903524399, -0.05390245094895363, 0.0032759804744273424, 0.01247714925557375, -0.010400054045021534, -0.0005147188785485923, 0.040259212255477905, 0.0227824579924345, 0.06156948581337929, -0.008330246433615685, 0.011405805125832558, -0.009022611193358898, -0.013249683193862438, 0.033525049686431885, -0.028656629845499992, -0.0019440884934738278, 0.008089740760624409, -0.014648989774286747, 0.019998421892523766, 0.010035650804638863, -0.02386108972132206, -0.02043570578098297, -0.016718797385692596, 0.020858412608504295, 0.03585722669959068, -0.014969663694500923, 0.02800070494413376, 0.033379290252923965, -0.006271371152251959, 0.011136147193610668, -0.0052109588868916035, 0.007841946557164192, -0.043553415685892105, 0.0002783125964924693, -0.008818546310067177, -0.0011059623211622238, 0.027986129745841026, 0.022053653374314308, 0.02511463686823845, -0.03020169772207737, 0.0011961519485339522, -0.03349589928984642, -0.01728726550936699, -0.021616369485855103, 0.020770955830812454, 0.011274619959294796, 0.005229179281741381, -0.005331211723387241, 0.047080833464860916, -0.006843483075499535, 0.014430347830057144, 0.026630550622940063, -0.04101717099547386, 0.02645563893020153, 0.06355183571577072, 0.006234930828213692, -0.004070378374308348, 0.013293411582708359, 0.01871572434902191, 0.004697151016443968, -0.002869671443477273, -0.04297037050127983, -0.02684919349849224, 0.0019021822372451425, 0.023496687412261963, -0.004216139670461416, -0.034778594970703125, 0.012637486681342125, 0.039559561759233475, -0.03489520400762558, 0.040492430329322815, -0.024240069091320038, 0.004340036306530237, -0.04632287472486496, -0.02425464615225792, -0.021149935200810432, -0.02221398986876011, -0.026236996054649353, -0.027096986770629883, -0.028525445610284805, -0.01862826757133007, -0.04483611136674881, 0.008636344224214554, -0.015683893114328384, 0.002565395087003708, -0.001025793724693358, -0.026543093845248222, -0.018453354015946388, 0.03168846294283867, -0.007528560236096382, -0.011908681131899357, -0.003416275605559349, 0.0006891766679473221, 0.0280881617218256, 0.0009438030538149178, -0.03638196736574173, 0.001045835786499083, 0.023263469338417053, 0.05264890566468239, -0.007557712495326996, -0.04611881077289581, -0.029283402487635612, 0.03734399005770683, -0.04349511116743088, 0.01248443778604269, -0.03941379860043526, -0.03716907650232315, 0.005702902562916279, -0.004398340824991465, 0.0541648231446743, 0.004642490763217211, 0.012936296872794628, -0.00821363739669323, -0.009248541668057442, -0.05760478228330612, -0.033525049686431885, 0.028146466240286827, -0.03676094859838486, -0.021004173904657364, -0.018992669880390167, 0.02753427065908909, -0.00432546017691493, -0.008862274698913097, 0.00763059314340353, -0.007565000560134649, -0.0025089127011597157, 0.010443782433867455, -0.023540416732430458, 0.020377401262521744, 0.012593758292496204, 0.0309013519436121, -0.027796639129519463, -0.0013100277865305543, 0.01400035247206688, -0.009525487199425697, 0.007674321532249451, 0.0034290296025574207, -0.02450243942439556, -0.010800897143781185, 0.009350573644042015, -0.002405057894065976, -0.025333277881145477, -0.008774817921221256, -0.057633936405181885, 0.02862747758626938, 0.009598367847502232, 0.009831585921347141, -0.0237882100045681, 0.04055073484778404, -0.060986440628767014, -0.010932081378996372, -0.019852660596370697, 0.013140362687408924, 0.014853055588901043, 0.022665848955512047, -0.0011952409986406565, 0.027359357103705406, 0.01886148564517498, 0.02737393230199814, 0.0012672104639932513, 0.010108531452715397, 0.031805068254470825, 0.01190139353275299, -0.037839580327272415, 0.02190789207816124, 0.035011813044548035, -0.004391052760183811, 0.0010868310928344727, -0.014291875064373016, 0.03722738102078438, 0.017418449744582176, 0.027403084561228752, 0.0056773945689201355, -0.009846162050962448, -0.008978882804512978, 0.0409880205988884, -0.02629530057311058, 0.017666244879364967, 0.001151512609794736, -0.0026947581209242344, -0.0028623833786696196, -0.012389692477881908, 0.0024779385421425104, -0.019750628620386124, -0.00029197768890298903, 0.030784742906689644, -0.003829872701317072, 0.0056263781152665615, -0.01871572434902191, 0.008432279340922832, -0.007718049921095371, 0.006522808689624071, -0.010830049403011799, 0.03381657227873802, 0.01400035247206688, 0.025712257251143456, -0.010480222292244434, 0.008439566940069199, -0.021397728472948074, -0.00700382050126791, 0.008694648742675781, -0.023219741880893707, 0.010174124501645565, -0.01769539713859558, -0.021776707842946053, -0.0041359709575772285, 0.00637704785913229, -0.005017825402319431, 0.0019222244154661894, -0.02810273878276348, -0.01076445635408163, -0.000826283183414489, 0.013854592107236385, -0.0015878848498687148, 0.03060982935130596, -0.019910965114831924, -0.04579813405871391, 0.028073586523532867, 0.012783247977495193, -0.010283445008099079, -0.0021262899972498417, -0.011085131205618382, -0.012936296872794628, -0.03171761333942413, -0.015188305638730526, -0.003602121025323868, -0.030784742906689644, -0.00735729094594717, -0.0031666597351431847, -0.014065945520997047, -0.043232738971710205, -0.05530175939202309, 0.005925188306719065, -0.04043412581086159, 0.06681688129901886, 0.003011788474395871, 0.009714976884424686, -0.0006308722076937556, -0.008738377131521702, -0.011697327718138695, -0.004529525991529226, -0.033146072179079056, -0.030318306758999825, -0.015188305638730526, 0.03066813386976719, -0.03168846294283867, -0.017812006175518036, 0.00019791623344644904, -0.017097776755690575, 0.01482390332967043, -0.027446813881397247, 0.018642842769622803, -0.02120823785662651, -0.004653422627598047, -0.02300110086798668, -0.026091234758496284, -0.008782105520367622, 0.013723406940698624, -0.010706151835620403, 0.005666462238878012, -0.019065551459789276, 5.893075285712257e-05, 0.02668885514140129, -0.004234359599649906, -0.009095491841435432, -0.015232034027576447, -0.03437046706676483, 0.012863416224718094, 0.0076888976618647575, -0.0024888706393539906, -0.018103526905179024, -0.024589896202087402, 0.005320279859006405, -0.017389297485351562, -0.011055978946387768, 0.014853055588901043, -0.027577998116612434, 0.013118498027324677, 0.034778594970703125, 0.00025348764029331505, -0.006191202439367771, -0.0020133249927312136, 0.006817975081503391, 0.02346753515303135, -0.010509374551475048, 0.004456645343452692, 0.03708162158727646, -0.0353616401553154, -0.011522414162755013, 0.019546562805771828, 0.02090214006602764, 0.023496687412261963, -0.02996847964823246, 0.012907144613564014, -0.027024107053875923, 0.006661281920969486, -0.04483611136674881, 0.00852702371776104, -0.0036859335377812386, -0.020071301609277725, -0.018817756325006485, -0.012950873002409935, -0.000480100599816069, -0.0015897068660706282, -0.03107626549899578, 0.00047964509576559067, 0.014065945520997047, 0.03075559064745903, 0.017578788101673126, -0.01730184070765972, -0.01689371094107628, 0.016412699595093727, -0.013169514946639538, 0.03396233543753624, 0.034166399389505386, -0.020596042275428772, 0.04760557413101196, 0.012775959447026253, -0.004044870380312204, 0.0022101025097072124, -0.025318700820207596, -0.022286871448159218, -0.014466788619756699, -0.014408484101295471, 0.003840804798528552, -0.018992669880390167, 0.016806254163384438, 0.0023686178028583527, -0.0021955263800919056, -0.014729158021509647, -0.038626689463853836, -0.037373144179582596, -0.010480222292244434, -0.02284076251089573, 0.01565474085509777, 0.026718007400631905, 0.009860738180577755, -0.012338676489889622, -0.017418449744582176, 0.0010640559485182166, -0.01095394603908062, 0.0060928137972950935, 0.005549853667616844, 0.0007588687003590167, 0.05862510949373245, 0.02496887557208538, 0.0014084165450185537, -0.0380144938826561, -0.04891742393374443, -0.013329851441085339, 0.026776311919093132, 0.012112746946513653, -0.026892920956015587, 0.010334460996091366, -0.02456074394285679, 0.0452442429959774, 0.027986129745841026, -0.03311691805720329, 0.031805068254470825, -0.0009018967393785715, 0.011150723323225975, 0.008869562298059464, 0.017957765609025955, -0.040113452821969986, 0.026645127683877945, -0.04101717099547386, 0.038393471390008926, -0.018409626558423042, 0.03326268121600151, 0.00011472991900518537, 0.004587830509990454, 0.005010537337511778, -0.013497477397322655, -0.0023012033198028803, -0.005939764436334372, -0.007156869396567345, -0.004212495405226946, -0.03725653514266014, 0.01900724694132805, -0.014831190928816795, 0.016689645126461983, 0.030172545462846756, -0.011106994934380054, -0.020683499053120613, -0.004117751028388739, -0.0049850293435156345, 0.0032468282151967287, 0.015290338546037674, -0.016485579311847687, 0.00040425927727483213, -0.004908504895865917, -0.007572288624942303, 0.024385830387473106, -0.00857075210660696, -0.03810194879770279, 0.009350573644042015, -0.00700382050126791, 0.0020424772519618273, 0.011799360625445843, -0.030697286128997803, -0.011966985650360584, 0.01769539713859558, 0.013708830811083317, -0.01980893313884735, 0.05909154564142227, -0.03711077198386192, 0.005484261084347963, 0.03483689948916435, -0.004070378374308348, 0.0070220404304564, 0.006351539399474859, 0.00946718268096447, -0.017083199694752693, 0.017491331323981285, -0.002230144804343581, -0.012542742304503918, -0.010319884866476059, -0.02104790136218071, 0.005914256442338228, -0.0015058942371979356, -0.0003252294263802469, 0.014743734151124954, -0.011507838033139706, -0.001869385945610702, 0.025377005338668823, -0.018686572089791298, -0.017826581373810768, 0.00543688889592886, 0.01185037661343813, -0.01753505878150463, 0.016995742917060852, 0.027490541338920593, 0.010152259841561317, -0.014911359176039696, 0.0015022502047941089, 0.0022975592873990536, 0.0015022502047941089, -0.019371649250388145, -0.0009811543859541416, 0.00608188146725297, 0.0014002175303176045, -0.009962770156562328, 0.028583750128746033, -0.038072798401117325, -0.013657813891768456, 0.02518751658499241, 0.01126004382967949, -0.020144183188676834, -0.0021026036702096462, 0.02660139836370945, -0.01644185185432434, -0.015421523712575436, 0.011209027841687202, -0.009962770156562328, 0.007623305078595877, 0.001996926963329315, 0.013154938817024231, 0.02119366265833378, 0.00879668164998293, 0.015202881768345833, -0.01816183142364025, 0.009532775729894638, 0.04139614850282669, 0.016471004113554955, -0.010851913131773472, 0.02942916378378868, 0.006213066633790731, -0.01956113800406456, -0.04297037050127983, 0.01846793107688427, 0.0066831461153924465, 0.03285454958677292, 0.0071167852729558945, 0.0016407233197242022, 0.01854081079363823, -0.030493220314383507, 0.0008695559808984399, -0.010611407458782196, -0.010239716619253159, 0.037052467465400696, 0.007783642038702965, -0.004992317408323288, 0.03740229457616806, -0.021456032991409302, 0.0036403832491487265, 0.0031794137321412563, -0.0030464068986475468, -0.008767529390752316, 0.011777495965361595, 0.013118498027324677, 0.016325242817401886, 0.006701366044580936, 0.009095491841435432, 0.02706783451139927, 0.019313344731926918, -0.023336350917816162, 0.046206265687942505, 0.001185219851322472, 0.004500373732298613, -0.007470255717635155, 0.012579182162880898, -0.0031338634435087442, 0.015057120472192764, 0.0165147315710783, -0.0018056154949590564, 0.010946657508611679, 0.0009948194492608309, -0.00014667210052721202, -0.03107626549899578, -0.023919394239783287, 0.0003482323663774878, 0.023831937462091446, 0.040725648403167725, 0.010757168754935265, -0.001174287754110992, 0.009459895081818104, 0.05626378208398819, 0.00018823677964974195, -0.004117751028388739, -0.00978056900203228, 0.015669317916035652, -0.021485185250639915, -0.059587132185697556, 0.01839504949748516, 0.008330246433615685, -0.00880397018045187, 0.023132285103201866, -0.024473287165164948, 0.02441498264670372, -0.029691534116864204, 0.04553576558828354, 0.025449886918067932, -0.0309013519436121, -0.004999605473130941, -0.012404268607497215, -0.0059361206367611885, -0.024531591683626175, -0.011478685773909092, -0.009365149773657322, -0.03060982935130596, 0.003738771891221404, -0.03288370370864868, 0.005458752624690533, 0.009008035063743591, -0.0035893667954951525, -0.01658761128783226, 0.026965802535414696, 0.036032140254974365, -0.0060417973436415195, -0.0022702289279550314, 0.026003777980804443, 0.007455679588019848, -0.012389692477881908, 0.0004313617246225476, -0.0028915356379002333, 0.00012196103489259258, -0.012571893632411957, 0.016325242817401886, -0.018832333385944366, 0.005506125278770924, -0.0006878101266920567, 0.01291443221271038, 0.04967537894845009, -0.0006682234816253185, 0.014379331842064857, 0.019823508337140083, 0.004627914633601904, 0.016791677102446556, -0.0700819343328476, 0.008242789655923843, 0.009707688353955746, -0.010961233638226986, 0.03903482109308243, -0.0068070427514612675, 0.007769066374748945, -0.027330204844474792, 0.0032778026070445776, 0.010327173396945, -0.01940080150961876, 0.013519341126084328, 0.008235502056777477, -0.030697286128997803, -0.023817362263798714, 0.05072486028075218, -0.014707294292747974, -0.022986523807048798, -0.01878860406577587, 0.0034836900886148214, -0.010494798421859741, -0.009554639458656311, 0.009532775729894638, -0.006500944495201111, 0.03743144869804382, 0.044719502329826355, 0.02958950214087963, -0.0502292737364769, -0.008082452230155468, 0.02527497336268425, -0.004139614757150412, 0.010021074675023556, -0.022592969238758087, 0.00018812291091307998, 0.011216316372156143, 0.0057830712758004665, 0.014969663694500923, 0.002097137738019228, -0.014248146675527096, -0.027286475524306297, 0.003880889154970646, 0.0020643414463847876, -0.01995469257235527, -0.010130396112799644, -0.012360540218651295, 0.0005261064507067204, -0.026411909610033035, 0.022563816979527473, -0.008250078186392784, -0.0003252294263802469, 0.018657419830560684, -0.005353075917810202, 0.00057256780564785, 0.03311691805720329, -0.032679636031389236, -0.008271941915154457, 0.010290732607245445, 0.03163015842437744, 0.009984634816646576, 0.027199018746614456, -0.0564970001578331, -0.009561927989125252, 0.02253466472029686, -0.029458316043019295, -0.035565707832574844, -0.01642727479338646, -0.011012250557541847, 0.007415595464408398, -0.048246920108795166, -0.020610617473721504, -0.01604829542338848, 0.00401207385584712, 0.012717654928565025, -0.019663171842694283, 0.013723406940698624, 0.019692324101924896, -0.0032012779265642166, -0.021237390115857124, -0.05011266469955444, 0.0021864164154976606, 0.017039472237229347, -0.027563422918319702, 0.023190589621663094, 0.013468325138092041, 0.022476360201835632, 0.018526233732700348, 0.028904424980282784, -0.0008941531996242702, -0.010582255199551582, -0.031163720414042473, 0.03530333563685417, 0.008104316890239716, -0.006879923399537802, -0.02252008765935898, -0.01846793107688427, -0.0029279759619385004, 0.025143787264823914, 0.01306748203933239, -0.003895465051755309, 0.01698116771876812, 0.0010795430280268192, -0.008126180619001389, -0.003968345932662487, 0.002193704480305314, -0.014036793261766434, 0.025872593745589256, -0.026266148313879967, -0.013555781915783882, -0.0034891560208052397, 0.00013448737445287406, 0.04626457020640373, 0.009612943977117538, -0.015290338546037674, -0.007411951664835215, -0.03163015842437744, -0.012375116348266602, 0.0056810383684933186, 0.006555605214089155, 0.03378742188215256, -0.004318172112107277, -0.01980893313884735, -0.006621197331696749, -0.023146862164139748, 0.013031041249632835, 0.019969269633293152, -0.01698116771876812, -0.01224393118172884, 0.018963517621159554, 0.014780174940824509, -0.01549440436065197, -0.00978056900203228, 0.02370075322687626, -0.008738377131521702, 0.020173335447907448, -0.010195988230407238, 0.00025280439876951277, 0.011493261903524399, 0.009540063329041004, 0.01737472228705883, 0.0017054047202691436, 0.00013084335660096258, 0.03241726756095886, -0.06086983159184456, 0.044340524822473526, -0.0055753616616129875, 0.0010667890310287476, -0.014437636360526085, -0.031571853905916214, 0.037052467465400696, 0.04165852069854736, 0.009868025779724121, -0.006209422368556261, 0.009882601909339428, -0.02160179428756237, 0.002753062639385462, -0.015742197632789612, 0.03562401235103607, 0.0011114283697679639, 0.011442245915532112, -0.028423413634300232, -0.011252756230533123, 0.02747596614062786, -0.0011578896082937717, 0.0005429600714705884, -0.008913290686905384, 0.017651667818427086, -0.02574140951037407, -0.04014260321855545, 0.008935154415667057, 0.0034199196379631758, 0.025551918894052505, -0.020931292325258255, -0.012280371971428394, -0.013599509373307228, 0.007298986427485943, -0.026703432202339172, -0.028437988832592964, -0.026076659560203552, 0.0024178121238946915, 0.017884885892271996, -0.016558459028601646, 0.0026947581209242344, 0.03066813386976719, -0.0037606360856443644, 0.010392765514552593, -0.011420381255447865, -0.004001141991466284, 0.002213746542111039, -0.018730299547314644, -0.005786715541034937, 0.0133808683604002, 0.011252756230533123, -0.0300559364259243, -0.03731483966112137, -0.029400011524558067, 0.02346753515303135, -0.01467085350304842, -0.004274444188922644, -0.0015651097055524588, -0.011602582409977913, -0.0001865286467364058, 0.013125786557793617, 0.009540063329041004, 0.0008914201753214002, -0.00022012201952748, 0.008286518044769764, -0.030347459018230438, -0.011704615317285061, 0.009831585921347141, 0.005640954244881868, -0.013235107064247131, -0.01986723579466343, -0.010261580348014832, -0.036352816969156265, 0.0032395401503890753, -0.003997497726231813, 0.059674590826034546, -0.0017709973035380244, -0.032737940549850464, -0.001627058140002191, 0.006879923399537802, -0.011427669785916805, 0.017622515559196472, -0.01561101246625185, -0.038772448897361755, 0.024517014622688293, 0.005513413343578577, -0.01698116771876812, 0.018030647188425064, -0.030872199684381485, -0.003942837473005056, -0.0028970015700906515, -0.020304519683122635, -0.0019878167659044266, -0.017491331323981285, 0.03098880872130394, -0.00943074282258749, -0.004161478951573372, 0.04903402924537659, -0.0300559364259243, 0.008971595205366611, -0.02387566678225994, -0.0050032492727041245, -0.025610223412513733, 0.006559249013662338, -0.002228322671726346, 0.01283426396548748, -0.010465646162629128, -0.0016625873977318406, 0.007973131723701954, -0.009000747464597225, 0.024473287165164948, -0.007732626050710678, -0.010851913131773472, 0.01373798307031393, -0.012506301514804363, -0.03020169772207737, -0.004664354957640171, -0.005757563281804323, 0.03553655371069908, -0.017782853916287422, 0.013235107064247131, 0.015946263447403908, 0.015392371453344822, -0.008454143069684505, 0.013832727447152138, -0.020523160696029663, 0.00951091106981039, -0.01400764100253582, -0.009175661019980907, -0.002354041673243046, -0.00729534262791276, 0.004923081025481224, 0.06996532529592514, 0.0007994084735400975, -0.001017594593577087, -0.019225887954235077, 0.002980814315378666, 0.01490407157689333, 0.02330719865858555, 0.005480616819113493, 0.00639891205355525, -0.0194882582873106, -0.002490692539140582, -0.005527989473193884, 0.030959656462073326, 0.03702331706881523, -0.012316811829805374, 0.007790930103510618, 0.013985776342451572, -0.013942047953605652, 0.013213243335485458, -0.019663171842694283, -0.0109102176502347, -0.007251614239066839, 0.01440119557082653, -0.010195988230407238, -0.0023941260296851397, -0.01252816617488861, 0.020144183188676834, -0.04218326136469841, 0.0007110408041626215, 0.014175266027450562, -0.012673926539719105, -0.009634807705879211, 0.008373974822461605, 0.0019513765582814813, 0.012746807187795639, 0.027038682252168655, 0.02448786236345768, -0.015392371453344822, -0.010589542798697948, 0.00019051429990213364, 0.007994995452463627, -0.011085131205618382, 0.00031839689472690225, -0.016952015459537506, 0.018190983682870865, -0.007572288624942303, 0.0036877556703984737, 0.04859674721956253, 0.0006513698608614504, -0.006945515982806683, -0.008002283982932568, 0.010604118928313255, -0.0330294631421566, -0.0026091234758496284, -0.016164904460310936, 0.010072091594338417, 0.02651394158601761, -0.007769066374748945, -0.006872635334730148, 0.007572288624942303, -0.016529308632016182, 0.01861369051039219, 0.000957468175329268, -0.04944216087460518, -0.0175204835832119, -0.0019695968367159367, 0.012345964089035988, 0.006701366044580936, 0.012659350410103798, 0.02136857621371746, 0.003490978153422475, -0.0031757696997374296, -0.002204636577516794, 0.008869562298059464, 0.0035146642476320267, 0.02190789207816124, 0.012535453774034977, -0.02629530057311058, 0.010290732607245445, -0.03060982935130596, -0.005280195735394955, -0.009955482557415962, -0.010327173396945, 0.02284076251089573, -0.004482153337448835, -0.0023886598646640778, -0.003148439573124051, 0.017957765609025955, -0.011369365267455578, -0.010800897143781185, -0.00970040075480938, -0.001607016078196466, 0.0013628662563860416, -0.007302630692720413, -0.032912854105234146, -0.012703078798949718, -0.000384672632208094, 0.023919394239783287, 0.0032213202212005854, 0.018511658534407616, -0.03130948171019554, -0.006333319470286369, -0.01162444707006216, 0.011835800483822823, 0.01620863378047943, -0.01862826757133007, -0.01947368122637272, -0.0070220404304564, -0.02588716894388199, -0.017170656472444534, -0.00399020966142416, 0.017170656472444534, -0.022826187312602997, 0.0023558635730296373, -0.0010048404801636934, -0.01189410500228405, -0.02253466472029686, -0.02708241157233715, 0.021397728472948074, -0.028029857203364372, -0.010545815341174603, 0.02027536742389202, -0.013577645644545555, 0.05025842413306236, -0.026149539276957512, 0.017899461090564728, 0.008716513402760029, 0.004190631210803986, -0.018176408484578133, -0.005670106504112482, 0.00817719753831625, 0.0066503495909273624, -0.012513590045273304, 0.012557318434119225, -0.0043946970254182816, 0.019750628620386124, -0.0026564958970993757, -0.0017655312549322844, -0.020537737756967545, -0.0020534093491733074, -0.02034824900329113, -0.011252756230533123, 0.011216316372156143, 0.0030482287984341383, -0.007145937532186508, -0.0019185803830623627, -0.011966985650360584, -0.008432279340922832, 0.0031156432814896107, 0.004504017531871796, -0.005994424689561129, -0.015844231471419334, 0.021091630682349205, -0.0062495069578289986, 0.022039076313376427, -0.005006893537938595, -0.001538690528832376, -0.0015742197865620255, 0.0019987488631159067, -0.010742592625319958, 0.012047153897583485, -0.007769066374748945, 0.001684451592154801, -0.0469350703060627, 0.00553892133757472, -0.0005939764669165015, -0.007601440884172916, -0.047226592898368835, -0.024939723312854767, 0.008424990810453892, 0.0004377387813292444, 0.0015368685126304626, 0.007528560236096382, -0.013533917255699635, -0.00610374566167593, -0.0002810455916915089, 0.014729158021509647, -0.02190789207816124, 0.021660098806023598, -0.0074265277944505215, -0.01816183142364025, -0.002146332059055567, 0.0025289549957960844, 0.02300110086798668, 0.012469861656427383, 0.00786381121724844, -0.015115424990653992, 0.0019586647395044565, 0.016456427052617073, 0.01311121042817831, 0.0019932829309254885, -0.0044129169546067715, -0.01463441364467144, -0.004296308383345604, 0.0045149498619139194, 0.004806471988558769, 0.0022920931223779917, -0.009182948619127274, 0.01314765028655529, -0.005440532695502043, 0.0064389961771667, 0.040579888969659805, 0.026003777980804443, 0.00432546017691493, 0.027956977486610413, -0.01698116771876812, -0.0021244678646326065, -0.008519736118614674, 0.0036312732845544815, -0.0098242973908782, 0.008097028359770775, -0.0032559384126216173, -0.024138037115335464, -0.02348211221396923, 0.01099767442792654, 0.01940080150961876, 0.014167978428304195, 0.008585328236222267, 0.01706862449645996, 0.0008390372968278825, -0.019590290263295174, -0.010625983588397503, -0.03066813386976719, 0.027184443548321724, -0.0007638792158104479, 0.021878739818930626, 0.021630946546792984, 0.015100848861038685, 0.019065551459789276, -0.02033367194235325, 0.011376652866601944, 0.019940117374062538, 0.033845726400613785, -0.00047463455121032894, 0.024167189374566078, 0.0021408661268651485, -0.02214111015200615, -0.004063090309500694, 0.011216316372156143, -0.01498423982411623, 0.01721438392996788, 0.01588795892894268, -0.014853055588901043, -0.009044475853443146, -0.02606208249926567, -0.0002070262999041006, -0.006551960948854685, 0.0007634237408638, 0.010523950681090355, -0.004923081025481224, -0.02636818215250969, 0.009984634816646576, -0.023744482547044754, -0.005724766757339239, 0.002789502963423729, -0.00798770785331726, 0.014102385379374027, 0.016398122534155846, -0.014955087564885616, -0.01604829542338848, 0.021310271695256233, 0.0007761777960695326, 0.013665102422237396, 0.013643237762153149, -0.04326189309358597, -0.015917111188173294, -0.018876060843467712, -0.005735699087381363, 0.014918647706508636, -0.006774246692657471, -0.014167978428304195, 0.02167467400431633, 0.0175204835832119, -0.001732734963297844, 0.01940080150961876, -0.004442069213837385, -0.0051927389577031136, 0.014583396725356579, 0.01596083864569664, -0.0044675772078335285, 0.010334460996091366, 0.010961233638226986, -0.011595294810831547, 0.00030792030156590044, 0.019546562805771828, 0.010159548372030258, 0.00915379635989666, 0.019692324101924896, 0.046526938676834106, -0.014124250039458275, -0.009977346286177635, 0.01932791993021965, -0.0065811132080852985, -0.014058656990528107, 0.023904819041490555, 0.015917111188173294, -0.01980893313884735, -0.005892392247915268, -0.03186337277293205, -0.01753505878150463, 0.0011168943019583821, -0.013723406940698624, -0.0005051532643847167, -0.01369425468146801, -0.033991485834121704, 0.008993458934128284, 0.029793566092848778, -0.03859753534197807, 0.012659350410103798, 1.755111588863656e-05, 0.02323431707918644, -0.01698116771876812, -0.012761383317410946, 0.012739519588649273, -0.014481364749372005, 0.0300559364259243, -0.014576109126210213, 0.008417703211307526, -0.0060417973436415195, 0.0071678017266094685, -0.00455867825075984, 0.01248443778604269, -0.05515599623322487, -0.0001276548282476142, 0.00364767131395638, -0.0018484328174963593, -0.005509769078344107, -0.008957019075751305, 4.69737897219602e-05, -0.028350532054901123, 0.013278835453093052, 0.0005520701524801552, 0.007306274492293596, 0.009809721261262894, 0.008927866816520691, 0.007080344948917627, -0.007178733590990305, 0.009598367847502232, -0.02542073465883732, 0.03232980892062187, -0.011609870940446854, 0.013366292230784893, 0.006333319470286369, 0.008038723841309547, 0.0028878916054964066, 0.03527418524026871, -0.002980814315378666, -0.0038699570577591658, 0.004431137349456549, -0.03232980892062187, -0.02778206393122673, 0.017505906522274017, 0.000578489329200238, -0.023452959954738617, -0.016456427052617073, 0.0002635087294038385, 0.0029425520915538073, 0.025158364325761795, 0.008461431600153446, 0.0061073899269104, -0.018963517621159554, -0.002714800415560603, -0.015013392083346844, -0.01730184070765972, -0.019196735695004463, 0.008461431600153446, -0.001185219851322472, 0.0005611801752820611, 0.01459068525582552, 0.019619442522525787, 0.01103411428630352, 0.009088204242289066, 0.0039792777970433235, 0.014328314922749996, 0.049500465393066406, -0.0018183696083724499, 0.01728726550936699, -0.020479433238506317, -0.015100848861038685, -0.014802038669586182, 0.00794397946447134, -0.010844625532627106, -0.004474865272641182, -0.0139639126136899, -0.012768671847879887, -0.015596436336636543, 0.017097776755690575, 0.0014412128366529942, 0.01644185185432434, 0.006985600106418133, 0.018453354015946388, 0.0005352165317162871, 0.005906968377530575, 0.006311455275863409, -0.003935549408197403, 0.028394261375069618, -0.0014822081429883838, -0.009817009791731834, -0.01744760200381279, 0.027344780042767525, 0.035711467266082764, 0.018919790163636208, 0.0027931469958275557, 0.008716513402760029, -0.016777101904153824, 0.03818940743803978, 0.03920973464846611, -0.031047113239765167, -0.022753305733203888, 0.016645915806293488, 0.009540063329041004, -0.0016188591253012419, -0.008009571582078934, 0.0012717655627056956, 0.010174124501645565, -0.0027403084095567465, -0.018365897238254547, -0.010961233638226986, 0.005046977661550045, -0.013985776342451572, 0.016412699595093727, -0.023219741880893707, 0.0009902644669637084, 4.640440965886228e-05, -0.005939764436334372, -0.006850771140307188, 0.029618654400110245, 0.0016106601106002927, -0.0267617367208004, 0.005998068954795599, 0.009335997514426708, 0.02183501049876213, 0.0024779385421425104, -0.0004955877084285021, 0.009328709915280342, 0.007506696041673422, -0.01451051700860262, 0.004970453213900328, 0.03098880872130394, -0.008155332878232002, 0.008701937273144722, -0.017039472237229347, -0.03128033131361008, -0.005323923658579588, 0.0044457134790718555, -0.03515757620334625, 0.005859595723450184, 0.026543093845248222, -9.144230716628954e-05, -0.009095491841435432, -0.0023686178028583527, 0.015013392083346844, -0.01319137867540121, 0.003642205148935318, -0.021893315017223358, -0.011690039187669754, -0.006952804047614336, -0.016631340608000755, 0.006151117850095034, 0.007094921078532934, -0.0003744238056242466, -0.014838479459285736, -0.002304847352206707, 0.00231942324899137, 0.007725337985903025, 0.01435746718198061, -0.012061730027198792, 0.017258113250136375, -0.005291127599775791, -0.0058340877294540405, -0.010115819983184338, 0.007178733590990305, 0.00860719196498394, 0.009977346286177635, 0.0194882582873106, 0.010108531452715397, 0.0017536880914121866, -0.010968522168695927, 0.00763059314340353, -0.01909470371901989, -0.03754805773496628, -0.00455503398552537, -0.0057830712758004665, 0.005848663859069347, -0.016310665756464005, 0.06961549818515778, 0.010159548372030258, 0.01181393675506115, -0.00020896218484267592, -0.011143435724079609, -0.01816183142364025, -0.023380078375339508, 0.007681609597057104, 0.0029972123447805643, 0.004055802244693041, -0.00942345429211855, -0.014233570545911789, 0.006756026763468981, 0.013825439848005772, -0.02323431707918644, -0.006001712754368782, -0.010574967600405216, 0.00825736578553915, 0.016543883830308914, 0.027752911671996117, 0.024619048461318016, -0.020872987806797028, -0.019342496991157532, 0.001330980914644897, -0.0065774694085121155, 0.01572762243449688, 0.010268868878483772, 0.003653137246146798, 0.011588006280362606, 0.009496334940195084, 0.01619405671954155, 0.0008540689013898373, -0.007871098816394806, -0.00395376980304718, -0.011777495965361595, 0.016500156372785568, 0.01248443778604269, 0.0020643414463847876, -0.017097776755690575, 0.022039076313376427, 0.020537737756967545, 0.0007884763763286173, 0.015115424990653992, 0.030872199684381485, -0.0188469085842371, -0.014124250039458275, 0.004624270834028721, -0.008898714557290077, 0.006366115529090166, -0.005057909991592169, -0.02152891270816326, -0.011996137909591198, 0.003439961699768901, -0.004689862951636314, 0.015202881768345833, -0.009299557656049728, 0.0015104493359103799, -0.006723230239003897, -0.0037223738618195057, 0.0016972057055681944, -0.01900724694132805, -0.004259868059307337, -0.00942345429211855, -0.022578392177820206, -0.0166750680655241, -0.015669317916035652, -0.0032158540561795235, -0.023846514523029327, -0.0024414982181042433, -0.010691575706005096, -0.01459068525582552, -0.005112570244818926, -7.437516842401237e-07, -0.00214268802665174, -0.006100101862102747, 0.018190983682870865, 0.008767529390752316, 0.019211310893297195, 0.018803181126713753, -0.006158405914902687, 0.00520731508731842, 0.0007729892968200147, 0.013781711459159851, -0.01521745789796114, 0.0007634237408638, -0.00010749880311777815, -0.0004992317408323288, -0.01604829542338848, -0.004606050439178944, -0.036906708031892776, 0.012557318434119225, 0.001949554542079568, 0.002507090801373124, -0.0035857227630913258, 0.022957371547818184, -0.002228322671726346, -0.012761383317410946, -0.018511658534407616, -0.0012590114492923021, -0.013898319564759731, 0.021718403324484825, 0.018190983682870865, -0.0023303553462028503, 0.01620863378047943, -0.020945869386196136, -0.00704390462487936, 0.013395444490015507, -0.011281908489763737, -0.026965802535414696, -0.004529525991529226, 0.00844685547053814, 0.005356720183044672, 0.025916321203112602, 0.005954340565949678, -0.009139220230281353, 0.0009269494330510497, 0.010771744884550571, -0.004631558433175087, -0.022869914770126343, -0.015844231471419334, -0.0204940102994442, -0.016543883830308914, -0.02269500121474266, -0.007470255717635155, 0.017899461090564728, 0.004664354957640171, -0.01908012665808201, -0.002047943416982889, -0.009343286044895649, -0.012593758292496204, -0.022097380831837654, -0.0063223871402442455, 0.018205560743808746, -0.016485579311847687, -0.004613338503986597, 0.0016024609794840217, -0.004332748241722584, 0.020785531029105186, 0.015334066934883595, -0.011136147193610668, 0.026003777980804443, 0.010793608613312244, 0.0006864436436444521, 0.024925146251916885, 0.012579182162880898, -0.0006841660942882299, -0.03075559064745903, -0.027446813881397247, 0.011566142551600933, -0.008381262421607971, 0.010283445008099079, -0.0188469085842371, 0.012280371971428394, 0.019050974398851395, 0.016704220324754715, -0.003330640960484743, -0.008424990810453892, 0.01800149492919445, -0.005298415664583445, 0.004981385078281164, 0.015363219194114208, 0.004270799923688173, -0.004992317408323288, -0.006070949602872133, 0.0031302194111049175, 0.003390767378732562, 0.009328709915280342, 0.005415024701505899, 0.02292821928858757, -0.005433244630694389, -0.001809259527362883, -0.005065198056399822, 0.016791677102446556, -0.029312554746866226, -0.0005693792481906712, 0.0013546671252697706, 0.003097423119470477, 0.016864558681845665, -0.011872241273522377, -0.010888353921473026, 0.0066321296617388725, -0.004106818698346615, 0.031659308820962906, 0.004653422627598047, 0.01862826757133007, -0.03060982935130596, -0.01432102732360363, -0.006555605214089155, -0.02348211221396923, 0.028277652338147163, -0.00765245733782649, 0.022272294387221336, 0.014284586533904076, -0.007306274492293596, -0.0033233528956770897, -0.016573036089539528, 0.006967380177229643, 0.02050858549773693, 0.009204813279211521, -0.01689371094107628, -0.009999210946261883, -0.002350397640839219, -0.008898714557290077, 0.003576612798497081, 0.006672213785350323, -0.02706783451139927, -0.0025981913786381483, -0.026557670906186104, 0.003866313025355339, 0.004423849284648895, -0.022126533091068268, -0.013912895694375038, -0.004587830509990454, 0.014845767058432102, -0.011595294810831547, 0.008585328236222267, -0.010188700631260872, 0.02488141879439354, 0.00606366153806448, -0.00884769856929779, 0.010436493903398514, 0.0012690324801951647, -0.020931292325258255, 0.024036003276705742, -0.019065551459789276, -0.003268692409619689, 0.00575027521699667, 0.028467141091823578, 0.027563422918319702, -0.0075868647545576096, 0.033000312745571136, 0.013031041249632835, -0.016500156372785568, 0.009846162050962448, 0.01139122899621725, 0.016485579311847687, -0.0036968656349927187, -0.009853449650108814, 0.005272907670587301, 0.007470255717635155, -0.001778285251930356, 0.018803181126713753, -0.018263865262269974, -0.0028878916054964066, -0.0037934323772788048, -0.02215568535029888, -0.022170262411236763, 0.0027220884803682566, -0.0001379036548314616, -2.761489486147184e-05, 0.01408780924975872, 0.00276946066878736, -0.02308855764567852, 0.018103526905179024, 0.02104790136218071, 0.003678645472973585, 0.0045696101151406765, 0.00138473033439368, 0.00973684061318636, -0.025318700820207596, -0.004547745920717716, -0.007047548890113831, -0.014248146675527096, -0.004329104442149401, 0.011493261903524399, 0.003496444085612893, -0.020916717126965523, 0.03218404948711395, 0.003556570503860712, 0.020144183188676834, -0.013832727447152138, 0.016471004113554955, 0.017637092620134354, 0.020289944484829903, 0.000672323047183454, 0.013154938817024231, -0.010706151835620403, -0.0218204353004694, 0.0014776530442759395, -0.007437459658831358, 0.013227819465100765, 0.013905608095228672, 0.005724766757339239, -0.013512053526937962, -0.017330992966890335, -0.015523556619882584, -0.00888413842767477, 0.012418844737112522, -0.022490937262773514, 0.016645915806293488, 0.005338499788194895, -0.006482724566012621, 0.008680072613060474, 0.003028186736628413, -0.0007256169337779284, 0.005786715541034937, 0.0004299952124711126, -0.010130396112799644, 0.00698195630684495, 0.021616369485855103, -7.732170342933387e-05, -0.0007643347489647567, -0.014955087564885616, -0.005108926445245743, 0.012120034545660019, -0.007360935211181641, 0.024837689474225044, 0.028933577239513397, -0.010305308736860752, 0.02964780665934086, 0.0003359337570145726, -0.005046977661550045, 0.0032723364420235157, 0.0006176626193337142, -0.020931292325258255, -0.002177306218072772, 0.00907362811267376, 0.017724549397826195, -0.008184485137462616, 0.030697286128997803, -0.006745094433426857, 0.01185766514390707, 0.00907362811267376, 0.01068428810685873, 0.004653422627598047, 0.005411380436271429, 0.0020242570899426937, -0.006508232560008764, 0.01712692901492119, -0.027359357103705406, 0.01373069453984499, -0.00017218028369825333, -0.012280371971428394, -0.015377795323729515, 0.013235107064247131, -0.0015541776083409786, -0.012630198150873184, -0.025610223412513733, 0.012739519588649273, 0.004544102121144533, -0.010538526810705662, 0.0006759670795872808, -0.003942837473005056, -0.006825263146311045, 0.005396804306656122, -0.005600870121270418, 0.00888413842767477, 0.022199414670467377, 0.01087377779185772, -0.0006991977570578456, 0.015829654410481453, -0.022651273757219315, 0.015902534127235413, 0.006551960948854685, 0.0019185803830623627, -0.015436099842190742, 0.010742592625319958, 0.010312597267329693, -0.012294948101043701, 0.01037090178579092, 0.0031156432814896107, 0.013001888990402222, -0.005138078238815069, -0.008913290686905384, 0.0025836152490228415, 0.01816183142364025, -0.003328818827867508, -0.004915792960673571, -0.01916758343577385, -0.012003425508737564, -0.00039674347499385476, -0.01291443221271038, -0.035478249192237854, -0.005804935470223427, -0.004423849284648895, 0.008519736118614674, -0.003964701667428017, -0.007127717137336731, -0.020144183188676834, -0.00428537605330348, 0.033146072179079056, -0.003359793219715357, -0.021937044337391853, -0.0029534841887652874, 0.012090882286429405, 0.006180270109325647, 0.02785494364798069, 0.01553813274949789, -0.01494051143527031, 0.01932791993021965, -0.019211310893297195, -0.0035073761828243732, -0.007951267063617706, -0.00911735650151968, 0.006883567664772272, -0.001684451592154801, -0.024589896202087402, 0.012273083440959454, 0.0025726831518113613, 0.0023066692519932985, 0.0038480928633362055, -0.008935154415667057, -0.0009702222887426615, 0.005444176960736513, -0.00334521709010005, -0.0218204353004694, -0.003057338995859027, 0.006242218893021345, 0.02284076251089573, 0.0019040042534470558, -0.010203276760876179, -0.00973684061318636, -0.026659702882170677, -0.009080915711820126, -0.001025793724693358, 0.008366686291992664, 0.00844685547053814, -0.0013829083181917667, -0.007247970439493656, 0.0165147315710783, 0.020144183188676834, 0.0027822148986160755, -0.007459323853254318, -0.003968345932662487, 0.0058340877294540405, -0.006311455275863409, 0.03387487679719925, 0.0017172478837892413, 0.004048514179885387, 0.025172939524054527, 0.004197919275611639, 0.005863239988684654, -0.003804364474490285, -0.00943074282258749, -0.011507838033139706, 0.0010695219971239567, 0.01775370165705681, -0.013431884348392487, 0.0002712522691581398, -0.0023412874434143305, -0.03262133151292801, -0.008854986168444157, -0.007958555594086647, -0.005491549149155617, 0.017739124596118927, 0.018803181126713753, 0.014386619441211224, 0.00319763389416039, -0.028685782104730606, -0.003527418477460742, -0.012863416224718094, 0.011245468631386757, 0.01217105146497488, 0.016529308632016182, -0.03393318131566048, 0.0006103745545260608, -0.010968522168695927, -0.018278440460562706, -0.0070147523656487465, -0.01610659994184971, 0.006978312041610479, 0.004453001543879509, 0.012856128625571728, -0.002051587449386716, -0.0056227343156933784, 0.031163720414042473, 0.013883744366466999, 0.011012250557541847, -0.013176802545785904, 0.017258113250136375, -0.001647100318223238, 0.03550740331411362, 0.03425385802984238, 0.0005147188785485923, 0.0029261538293212652, 0.030318306758999825, 0.009940906427800655, 0.01482390332967043, -0.0033980554435402155, -0.013832727447152138, -0.009598367847502232, -0.01814725622534752, 0.0019276904640719295, 0.013832727447152138, 0.029400011524558067, 0.003002678509801626, 0.0054186685010790825, 0.025245821103453636, -0.0003867223858833313, -0.04148360714316368, -7.162791007431224e-05, -0.003496444085612893, 0.009000747464597225, 0.0061110337264835835, -0.0008435923373326659, -0.004919436760246754, 0.0031211094465106726, 0.0188469085842371, 0.011238180100917816, 0.0011979739647358656, 0.009029899723827839, 0.010924793779850006, 0.01373069453984499, -0.015275762416422367, -0.0062677268870174885, 0.0045149498619139194, 0.0004477598413359374, -0.002148154191672802, 0.010305308736860752, -0.007408307399600744, 0.01972147636115551, 0.005404092371463776, -0.022636696696281433, 0.03215489536523819, 0.009379725903272629, 0.011194451712071896, 0.019138431176543236, 0.010188700631260872, 0.007233394309878349, 0.0031903458293527365, 0.003501910250633955, -0.020931292325258255, 0.011959697119891644, 0.03098880872130394, 0.008403127081692219, -0.004296308383345604, 0.021630946546792984, -0.01400035247206688, -0.005531633272767067, -0.0010385477216914296, 0.012892568483948708, 0.017243536189198494, 0.009029899723827839, -0.002323067281395197, 0.007393731269985437, 0.004999605473130941, 0.02113535813987255, -0.0013692432548850775, 0.033845726400613785, -0.017330992966890335, 0.010523950681090355, 0.014597972854971886, -0.007718049921095371, -0.012550029903650284, 0.009846162050962448, 0.01490407157689333, 0.01400035247206688, -0.008053299970924854, -0.006646705791354179, 0.029939327389001846, -0.01217105146497488, -0.004974097013473511, 0.022272294387221336, -0.002344931475818157, 0.00727712269872427, -0.0073281386867165565, 0.004511305596679449, -0.0006249506841413677, 0.011281908489763737, 0.013912895694375038, -0.005309347528964281, -0.0010048404801636934, -0.017855733633041382, 0.03294200822710991, -0.012550029903650284, -0.009008035063743591, 0.01737472228705883, -0.001424814690835774, 0.008694648742675781, -0.010917505249381065, 0.004533169791102409, -0.011238180100917816, -0.010523950681090355, -0.0028897137381136417, 0.019123855978250504, 0.00012241654621902853, -0.02801528200507164, -0.0073244948871433735, 0.0060928137972950935, -0.000660935475025326, -0.002547175157815218, 0.005178162828087807, -0.03544909879565239, -0.01696659065783024, -0.010115819983184338, -0.006147474050521851, -0.004606050439178944, 0.012433420866727829, 0.009933617897331715, -0.01918216049671173, 0.028292227536439896, -0.009365149773657322, -0.00036440271651372313, 0.006023576948791742, -0.005651886109262705, 0.008658208884298801, 0.004041226115077734, -0.008271941915154457, -0.018365897238254547, -0.007073056884109974, -0.014969663694500923, 0.015902534127235413, 0.022053653374314308, -0.0041869874112308025, 0.014102385379374027, -0.010706151835620403, -0.014270010404288769, -0.020391976460814476, -0.008344822563230991, -0.0021499760914593935, 0.012673926539719105, 0.003572968766093254, 0.029006456956267357, 0.0015897068660706282, 0.02840883657336235, -0.017330992966890335, 0.02174755558371544, -0.007994995452463627, 0.017899461090564728, 0.006868991535156965, -0.011012250557541847, 0.005345787853002548, 0.014430347830057144, -0.0020789175760000944, 0.0011296484153717756, -0.022476360201835632, 0.005684682633727789, 0.020712651312351227, 0.018803181126713753, -0.010822760872542858, 0.010881065391004086, 0.006522808689624071, -0.012192915193736553, -0.010574967600405216, -0.0004088143177796155, 0.017010319977998734, -0.02106247842311859, -0.002871493576094508, -0.0014603439485654235, -0.016092024743556976, 0.012885280884802341, -0.016616763547062874, -0.011063266545534134, 0.004471221473067999, 0.009459895081818104, -0.01728726550936699, 0.004197919275611639, -0.0009820653358474374, 0.0037934323772788048, 0.03262133151292801, -0.023963123559951782, 0.009977346286177635, -0.0312220249325037, -0.0007675232482142746, -0.0014986061723902822, 0.0008823100943118334, 0.025143787264823914, -0.012426133267581463, 0.031659308820962906, 0.0065300967544317245, 0.006879923399537802, -0.013329851441085339, -0.011136147193610668, 0.008148045279085636, -0.00320856599137187, -0.0052619753405451775, 0.023584144189953804, -0.00027421306003816426, -0.008774817921221256, 0.016922863200306892, 0.009306845255196095, 0.008833122439682484, -0.029604077339172363, 0.018278440460562706, -0.0050870622508227825, 0.02190789207816124, -0.01714150421321392, -0.02066892199218273, 0.0002767183177638799, -0.02043570578098297, -0.011843089014291763, -0.0029990344773977995, -0.0038080085068941116, -0.033612508326768875, -1.5102785255294293e-05, 0.008206349797546864, 0.004041226115077734, -0.010611407458782196, 0.0073281386867165565, -0.005914256442338228, -0.013431884348392487, 0.007160513661801815, -0.028423413634300232, -0.018744876608252525, -0.01610659994184971, -0.011413093656301498, -0.020931292325258255, 0.002166374120861292, -0.021397728472948074, -0.012003425508737564, -0.024371255189180374, 0.014648989774286747, 0.004966808948665857, 0.0038480928633362055, 0.015057120472192764, -0.025377005338668823, 0.011063266545534134, -0.0005311169661581516, 0.009707688353955746, -0.00463884649798274, 0.008971595205366611, -0.004704439081251621, 0.019138431176543236, 0.006566537078469992, 0.017884885892271996, -0.019123855978250504, 0.004791895858943462, 0.0027603507041931152, 0.006774246692657471, 0.006756026763468981, 0.02174755558371544, -0.005888747982680798, -0.008665496483445168, -0.002521666930988431, 7.584131526527926e-05, -0.03702331706881523, 0.000250754615990445, 0.01612117700278759, -0.00786381121724844, 0.014080521650612354, 0.006701366044580936, -0.012586469762027264, -0.0035656807012856007, 0.01628151349723339, -0.0013492010766640306, -0.021572642028331757, 0.0015323134139180183, -0.004197919275611639, -0.018686572089791298, 0.004197919275611639, -0.02988102287054062, -0.048013702034950256, -0.0027967910282313824, 0.0030536949634552, 0.014838479459285736, -0.01682082936167717, -0.025143787264823914, -0.004216139670461416, 0.00829380564391613, 0.015683893114328384, -0.0196485947817564, 0.009984634816646576, 0.02230144664645195, 0.003826228668913245, -0.0073755113407969475, -0.01260104589164257, 0.008833122439682484, 0.012491725385189056, 0.007565000560134649, 0.01581507921218872, 0.027505118399858475, 0.0013865523505955935, 0.01597541570663452, -0.007229750044643879, 0.005640954244881868, -0.011522414162755013, 0.020071301609277725, -0.003173947799950838, -0.020610617473721504, 0.029778990894556046, 0.011835800483822823, -0.009481758810579777, -0.01275409571826458, -0.0012726765125989914, -0.002339465543627739, 0.0010813650442287326, 0.005906968377530575, -0.00391004141420126, -0.012426133267581463, 0.015902534127235413, -0.007073056884109974, 0.014955087564885616, -0.04317443445324898, -0.007659745402634144, -0.014204418286681175, 0.006012645084410906, 0.02606208249926567, 0.005841375794261694, 0.0014712760457769036, 0.03349589928984642, 0.01776827685534954, -0.01103411428630352, -0.015130001120269299, 0.004664354957640171, 0.027825791388750076, -0.00520731508731842, 0.010195988230407238, 0.009496334940195084, -0.004369188565760851, 0.006493656430393457, 0.003749703988432884, -0.01808895170688629, -0.010341749526560307, -0.00896430667489767, 0.0029534841887652874, 0.015756774693727493, 0.0014658099971711636, 0.013942047953605652, -0.00798041932284832, -0.009379725903272629, 0.00576849514618516, 0.0023084913846105337, -0.032358963042497635, -0.006315099075436592, 0.0072188181802630424, 0.016412699595093727, -0.01816183142364025, -0.0033033108338713646, -0.0010631449986249208, 0.02206822857260704, -0.0247939620167017, -0.0003322897246107459, 0.015756774693727493, -0.0036549593787640333, -0.006260438822209835, 0.01185766514390707, 0.013555781915783882, -0.013825439848005772, -0.014955087564885616, -0.0011979739647358656, -0.01064055971801281, 0.0010786320781335235, -0.007783642038702965, 0.0018183696083724499, -0.010144972242414951, -0.00857075210660696, -0.006118321791291237, 0.01162444707006216, 0.022709578275680542, 0.008322957903146744, 0.014189842157065868, -0.00782008282840252, -0.01131106074899435, 0.0047736759297549725, -0.013825439848005772, 0.0016625873977318406, -0.005342144053429365, -0.004442069213837385, -0.0175204835832119, -0.0027056902181357145, -0.0012216601753607392, 0.00978056900203228, 0.003975633531808853, 0.02810273878276348, 0.007856522686779499, -0.007433815859258175, -0.01941537670791149, -0.016237786039710045, 0.02582886442542076, -0.01252087764441967, -0.001558732707053423, 0.0226221214979887, -0.010181412100791931, -0.025464462116360664, 0.020129606127738953, -0.010859201662242413, -0.02380278706550598, -0.01010124385356903, -0.0031794137321412563, -0.009314133785665035, 0.010589542798697948, -0.022665848955512047, 0.021222814917564392, -0.002277516992762685, 0.020566890016198158, 0.003285090671852231, 0.003753348020836711, -0.001803793478757143, -0.012586469762027264, 0.025231244042515755, -0.014444923959672451, 0.0006768780876882374, 0.023511264473199844, 0.020770955830812454, -0.015042544342577457, 0.006347895599901676, 0.007725337985903025, -0.004529525991529226, 0.012389692477881908, 0.011551566421985626, 0.005637309979647398, -0.007790930103510618, 0.023117709904909134, 0.0044675772078335285, 0.021324846893548965, 0.009102780371904373, 0.02119366265833378, 0.011682751588523388, 0.0031848798971623182, 0.019779780879616737, 0.002408701926469803, 0.00763059314340353, -0.0023558635730296373, -0.005611801985651255, -0.014503228478133678, 0.0013209598837420344, -0.026164116337895393, -0.029370859265327454, -0.005600870121270418, -0.008286518044769764, -0.0134610366076231, -0.017622515559196472, 0.011340213008224964, -0.0017427559942007065, -0.009911754168570042, -0.007462967652827501, 0.01490407157689333, -0.00306098279543221, -0.00020053537446074188, -0.008140756748616695, -0.03136778622865677, 3.1742893042974174e-05, 0.027446813881397247, 0.006285946816205978, 0.006114677991718054, 0.005236467346549034, 0.004168767016381025, -0.02472108043730259, -0.011106994934380054, -0.0102470051497221, 0.0035073761828243732, -0.014270010404288769, 0.011092418804764748, -0.005721122957766056, -0.018482506275177002, -0.010924793779850006, -0.0015860628336668015, 0.011456822045147419, -0.002835053252056241, 0.011952409520745277, 0.014525093138217926, -0.004544102121144533, 0.011434957385063171, -0.03614874929189682, -0.01940080150961876, 0.01588795892894268, -0.005903324112296104, -0.010932081378996372, -0.01010124385356903, 0.013446460478007793, 0.012003425508737564, 0.011048690415918827, 0.0011205383343622088, -0.014080521650612354, -0.0027457745745778084, 0.0003607587132137269, 0.015115424990653992, -0.02393397130072117, -0.01886148564517498, -2.818427310558036e-05, -0.02285533957183361, -0.020843835547566414, 0.015946263447403908, -0.020843835547566414, 0.01862826757133007, -0.016543883830308914, 0.016339818015694618, -0.009795145131647587, -0.011048690415918827, 0.0035055542830377817, 0.013584933243691921, -0.008497871458530426, 0.006242218893021345, 0.01822013594210148, 0.0360029898583889, 0.012273083440959454, -0.028263075277209282, -0.012622910551726818, 0.0026492078322917223, 0.007776353973895311, -0.007484831847250462, -0.002678360091522336, 0.009889890439808369, 0.0027257325127720833, 0.011114283464848995, -0.0017145148012787104, 0.0009401590214110911, -0.012229355983436108, -0.007240682374686003, -0.01373069453984499, -0.005983492825180292, -0.014291875064373016, 0.006989244371652603, -0.0006377047975547612, -0.011296484619379044, -0.010436493903398514, -0.006551960948854685, 0.005331211723387241, -0.01134750060737133, -0.029166793450713158, -0.008548888377845287, 0.00522553501650691, -0.016325242817401886, -0.009729553014039993, 0.019502833485603333, 0.0010631449986249208, -0.01722896099090576, -0.004423849284648895, -0.02082926034927368, -0.007455679588019848, 0.04037582129240036, 0.001811992609873414, -0.016952015459537506, -0.00666856998577714, -0.009714976884424686, 0.027213595807552338, 0.02629530057311058, 0.022592969238758087, -0.002303025219589472, 0.016398122534155846, -0.004886640701442957, 0.012965449132025242, -0.016937438398599625, 0.0049121486954391, -0.01193054486066103, 0.005105282180011272, 0.007659745402634144, -0.009583791717886925, -0.03323352709412575, -0.012615622021257877, -0.0015323134139180183, 0.002590903313830495, -0.009569215588271618, -0.01225121971219778, -0.02527497336268425, -0.012265795841813087, 0.008629056625068188, 0.021499760448932648, 0.020391976460814476, 0.01916758343577385, 0.011041402816772461, -0.006796110887080431, 0.0066503495909273624, -0.0019386225612834096, -0.01302375365048647, -0.012433420866727829, -0.002395947929471731, -0.011128859594464302, 0.0133808683604002, -0.01957571506500244, -0.01131106074899435, -0.007674321532249451, -0.0005115303210914135, 0.016383547335863113, -0.001809259527362883, -0.007805506233125925, -0.0208146832883358, 0.002111713867634535, 0.013512053526937962, 0.015071696601808071, 0.0023103132843971252, 0.033758267760276794, 0.013818151317536831, -0.005349432118237019, -0.003855380928143859, 0.006533741019666195, -0.008789394050836563, 0.010385477915406227, -0.004190631210803986, 0.004329104442149401, 0.009080915711820126, -0.000723794917576015, -0.01775370165705681, 0.011988849379122257, 0.005917900241911411, -0.011041402816772461, -0.009576504118740559, -0.008585328236222267, -0.0016735194949433208, -0.0140440808609128, 0.0022975592873990536, -0.033758267760276794, -0.0008522468851879239, -0.017316417768597603, -0.00639891205355525, -0.005761207081377506, 0.013606797903776169, -0.009335997514426708, -0.016310665756464005, -0.026324452832341194, 0.008818546310067177, 0.017112351953983307, -0.013606797903776169, 0.013934760354459286, 0.02027536742389202, -0.0015095382696017623, 0.02168925106525421, -0.018453354015946388, -0.010494798421859741, -0.0052619753405451775, 0.0033324628602713346, -0.014153402298688889, 0.00350008811801672, -0.017316417768597603, 0.0008057855302467942, -0.0003552926646079868, 0.003975633531808853, 0.00022012201952748, 0.0033579710870981216, -0.012768671847879887, 0.00457689817994833, 0.006901787593960762, -0.0380144938826561, -0.027446813881397247, -0.0038480928633362055, 0.005608158186078072, 0.016004567965865135, 0.020858412608504295, 0.022913644090294838, 0.011405805125832558, -0.009335997514426708, 0.001860275981016457, -0.02380278706550598, 0.01728726550936699, 0.0008189951186068356, 0.00428537605330348, 0.01902182213962078, -0.0005734788137488067, 0.04101717099547386, -0.012411557137966156, 0.012426133267581463, 0.017812006175518036, -0.002333999378606677, -0.02409430779516697, 0.010815473273396492, -0.00844685547053814, -0.008140756748616695, -0.024312950670719147, 0.016164904460310936, -0.0038225846365094185, 0.013606797903776169, -0.00018857841496355832, 0.00725525850430131, 0.011784784495830536, 0.0098242973908782, 0.00853431224822998, -0.0025234888307750225, 0.021703826263546944, -0.018817756325006485, 0.014415771700441837, -0.015100848861038685, -0.006180270109325647, 0.03355420380830765, 0.017651667818427086, 0.013009177520871162, -0.0011387584963813424, -0.012622910551726818, -0.00635518366470933, 0.005546209402382374, 0.0287295114248991, 0.010086667723953724, 0.01001378707587719, -0.008075164631009102, 0.017666244879364967, 0.008111604489386082, 0.006078237667679787, 0.0017290909308940172, 0.006260438822209835, -0.003177591832354665, -0.004489441402256489, -9.017544471134897e-06, -0.02393397130072117, 0.00045686992234550416, -0.011128859594464302, 0.01760794036090374, 0.0009365149890072644, 0.002097137738019228, 0.0008126180619001389, 0.0005648242076858878, -0.016223208978772163, 0.003840804798528552, -0.015946263447403908, 0.0008399483049288392, -0.020683499053120613, 0.01087377779185772, -0.027257323265075684, -0.025012603029608727, 0.013861879706382751, 0.005032401531934738, 0.0035839008633047342, 0.03256302699446678, -0.0017728193197399378, -0.021295694634318352, -0.021543489769101143, -0.011573431082069874, -0.012921720743179321, -0.017330992966890335, -0.020129606127738953, -0.008373974822461605, -0.006748738698661327, -0.024662775918841362, 0.0027366643771529198, 0.0011159833520650864, 0.01760794036090374, -0.009226677007973194, -0.004587830509990454, 0.0018047045450657606, 0.007783642038702965, -0.0035784346982836723, 0.015130001120269299, 0.009671248495578766, 0.010553102940320969, -0.011886817403137684, -0.012994601391255856, -0.004427493084222078, 0.0006700454978272319, -0.02199534885585308, 0.0056773945689201355, 0.03171761333942413, 2.078234319924377e-05, -0.0035183082800358534, 0.03285454958677292, 0.011165299452841282, -0.017724549397826195, 0.008075164631009102, -0.003942837473005056, 0.0017017606878653169, -0.0219807717949152, -0.012061730027198792, 0.016339818015694618, 0.006271371152251959, -0.007965843193233013, 0.009612943977117538, 0.025085484609007835, 0.009015323594212532, 0.01041463017463684, -0.018249288201332092, 0.01059683132916689, 0.009722264483571053, 0.018876060843467712, -0.011376652866601944, -0.006231286562979221, 0.011872241273522377, 0.011697327718138695, -0.016529308632016182, -0.010312597267329693, -0.0037970764096826315, -0.0072224619798362255, 0.005134434439241886, -0.01988181285560131, 0.0067341625690460205, -0.0237882100045681, 0.0036604253109544516, -0.003826228668913245, 0.01995469257235527, -0.002496158704161644, -0.02074180357158184, -0.01822013594210148, -0.006559249013662338, 0.013307987712323666, -0.015232034027576447, 0.0015450675273314118, 0.015917111188173294, 0.017272688448429108, 0.014845767058432102, 0.0006727785221301019, 0.026309877634048462, -0.016062872484326363, 0.006763314828276634, -0.0046716430224478245, -0.022811610251665115, -0.008599904365837574, -0.005094350315630436, -0.019123855978250504, 0.004449357278645039, -0.028350532054901123, 0.01498423982411623, -0.016077447682619095, -0.003015432506799698, 0.008031436242163181, 0.014765598811209202, 0.014379331842064857, -0.00043705551070161164, -0.011143435724079609, -0.022826187312602997, 0.006238574627786875, 0.0458855926990509, 0.020056726410984993, -0.010611407458782196, -0.0010385477216914296, 0.012965449132025242, -0.030959656462073326, -0.0007119518122635782, 0.007550424430519342, -0.010742592625319958, 0.003552926704287529, 0.0012243931414559484, 0.0021991704124957323, 0.019459106028079987, 0.012870704755187035, -0.007557712495326996, 0.023336350917816162, -0.005910612177103758, -0.013541205786168575, -0.01333713997155428, 0.0005283839418552816, -0.009408878162503242, 0.0010011964477598667, -0.008067876100540161, 0.010341749526560307, 0.016237786039710045, -0.006657637655735016, 0.0017464000266045332, -0.0011305594816803932, -0.005090706050395966, -0.007229750044643879, 0.01122360397130251, 0.0004732680390588939, -0.025916321203112602, 0.01482390332967043, -0.0020497653167694807, 0.0017464000266045332, -0.01368696615099907, 0.007309918757528067, -0.0037150857970118523, -0.004139614757150412, -0.013169514946639538, -0.023059405386447906, 0.007951267063617706, 0.008869562298059464, -0.046352025121450424, -0.016296090558171272, 0.019371649250388145, 0.021572642028331757, 0.015465252101421356, 0.01405136939138174, 0.007601440884172916, 0.002855095313861966, -0.01189410500228405, -0.008818546310067177, -0.01041463017463684, 0.010538526810705662, 0.008854986168444157, -0.007681609597057104, -0.011136147193610668, 0.013278835453093052, -8.386956324102357e-05, -0.0024633624125272036, 0.008169909007847309, 0.01886148564517498, -0.005006893537938595, 0.007572288624942303, 0.0023066692519932985, 0.00551705714315176, -0.0019422665936872363, 0.022184837609529495, -0.004624270834028721, -0.00907362811267376, -0.007601440884172916, -0.004438425414264202, -0.028904424980282784, 0.002046121284365654, -0.022418055683374405, -0.017433026805520058, -0.004416561219841242, 0.017403874546289444, 0.00951091106981039, -0.014372043311595917, -0.0018611869309097528, -0.004329104442149401, -0.016135752201080322, -0.0068580592051148415, -0.006905431859195232, 0.004055802244693041, -0.007200597785413265, -0.0033944114111363888, 0.0021590860560536385, -0.01690828613936901, -0.027796639129519463, 0.01162444707006216, 0.00822092592716217, -0.002552641090005636, -0.00199510483071208, 0.01737472228705883, -0.0022866271901875734, 0.0023267113137990236, 0.013927471823990345, 0.016150329262018204, 0.00731720682233572, -0.011733767576515675, -0.012958160601556301, -0.0392971895635128, -0.021616369485855103, -0.007073056884109974, 0.019153008237481117, 0.010086667723953724, -0.024925146251916885, 0.015275762416422367, -0.016412699595093727, 0.006172982044517994, -0.02168925106525421, 0.04005514830350876, -0.0010248826583847404, 0.019459106028079987, -0.00152138143312186, -0.013468325138092041, -0.02714071422815323, 0.00790025107562542, 0.015946263447403908, 0.0030500509310513735, -0.0007260724087245762, 0.012921720743179321, -0.008126180619001389, 0.011551566421985626, -0.005006893537938595, -0.007557712495326996, 0.0012590114492923021, -0.003775212215259671, -0.008373974822461605, 0.014889495447278023, -0.007113141007721424, -0.010181412100791931, 0.002661961829289794, 0.001422081608325243, 0.00861448049545288, -0.004981385078281164, -0.019779780879616737, 0.03541994467377663, 0.017972342669963837, 0.009452606551349163, 0.042678847908973694, 0.009015323594212532, -0.009722264483571053, 0.012353252619504929, -0.007226106245070696, -0.00199510483071208, 0.001900360221043229, 0.013759846799075603, 0.0021609081886708736, 0.01807437464594841, -0.0014767420943826437, 0.020916717126965523, -0.034545376896858215, 0.032125744968652725, 0.002273872960358858, -0.012936296872794628, -0.0005283839418552816, 0.008825833909213543, 0.014255434274673462, 0.02457531914114952, 0.007878387346863747, -0.03661518543958664, -0.004988673143088818, -0.0017409339779987931, -0.02982271835207939, 0.00231942324899137, 0.015917111188173294, -0.007645169273018837, -0.02488141879439354, 0.008556175976991653, -0.007153225596994162, 0.01467814203351736, -0.0038626689929515123, 0.00575027521699667, -0.010545815341174603, -0.010662423446774483, -0.002035189187154174, 0.0038080085068941116, 0.013235107064247131, -0.0025508191902190447, -0.0063734035938978195, 0.011238180100917816, -0.007499407976865768, -0.007754490245133638, 0.006723230239003897, -0.003738771891221404, -0.024604471400380135, 0.016616763547062874, 0.005637309979647398, -0.02026079222559929, -0.02505633234977722, 0.012192915193736553, -0.020916717126965523, -0.005928832571953535, -0.030784742906689644, 0.005189094692468643, 0.001894894172437489, -0.0006112855626270175, -0.03716907650232315, 0.0040849545039236546], "5ee4322d-3a2d-4bc5-9108-537d571eccc6": [0.012972274795174599, 0.03799529746174812, -0.009435025975108147, -0.00849223230034113, -0.018543973565101624, -0.049252111464738846, 0.017608268186450005, 0.023279206827282906, -0.021407797932624817, -0.008208685554564, 0.00879704486578703, 0.020004240795969963, 0.019834112375974655, 0.01580774411559105, -0.044998906552791595, 0.031020039692521095, 0.0032023086678236723, 0.04808956757187843, -0.005217264406383038, -0.018699923530220985, 0.07275815308094025, -0.018175361678004265, -0.03949809446930885, 0.01726801134645939, -0.010044652037322521, -0.01003047451376915, 0.000943679828196764, -0.0026812911964952946, -0.05532001703977585, -0.01003047451376915, 0.02152121625840664, 0.0132699990645051, -0.0011997581459581852, -0.005791447125375271, 0.004809665959328413, -0.009938322007656097, 0.0030977509450167418, 0.0062628439627587795, -0.0035071216989308596, 0.011214283294975758, 0.002144324127584696, 0.04290065914392471, 0.02422909066081047, -0.005681572947651148, -0.02758912183344364, 0.00637271860614419, -0.0032731955870985985, 0.020075127482414246, 0.0011944416910409927, -0.004125608596950769, 0.0015772301703691483, 0.014460896141827106, 0.004196495283395052, 0.001991917612031102, 0.00224888208322227, -0.04250369220972061, 0.06737076491117477, 0.07428930699825287, 0.00871198158711195, -0.018161185085773468, 0.037541620433330536, -0.004639537539333105, -0.020117659121751785, -0.012121633626520634, 0.019663983955979347, -0.0066172778606414795, -0.013468481600284576, 0.001466469606384635, -0.03408234938979149, -0.017112061381340027, -0.01227758452296257, 0.04170976206660271, -0.039980124682188034, 0.02241438999772072, -0.02629898302257061, -0.03351525217294693, 0.024016430601477623, 0.02662506140768528, 0.01925284042954445, 0.008860843256115913, 0.017537381500005722, 0.003390158759430051, -0.012468978762626648, 0.001430140109732747, 0.09028135985136032, 0.007705389522016048, -0.010101361200213432, -0.04825969785451889, -0.016119645908474922, -0.005405114497989416, -0.03618059679865837, 0.04522574320435524, -0.013503924943506718, -0.009647686034440994, 0.005681572947651148, -0.011646692641079426, 0.005862333811819553, 0.01580774411559105, 0.03703123703598976, 0.021889828145503998, 0.03314664214849472, 0.017239656299352646, -0.0360671766102314, 0.00270964577794075, 0.00085994484834373, -0.04627486690878868, 0.007925137877464294, 0.007088674698024988, -0.029517240822315216, 0.024144025519490242, 0.0038314287085086107, -0.044998906552791595, 0.01098035741597414, 0.011348968371748924, -0.055773694068193436, 0.0019033091375604272, -0.001765966066159308, -0.02702202834188938, 0.029857497662305832, -0.04346775263547897, -0.0005834865150973201, -0.018501440063118935, 0.03935632109642029, -0.016686739400029182, -0.007063864264637232, 0.013234555721282959, -0.02078399434685707, 0.017083706334233284, 0.02439921908080578, 0.016233064234256744, 0.023917188867926598, -0.003905859775841236, 0.016148000955581665, 0.01818953827023506, -0.008938819169998169, 0.011270992457866669, 0.01258239708840847, 0.04845818132162094, 0.001042035175487399, 0.03340183570981026, -0.07366550713777542, -0.040944185107946396, -0.03269296884536743, 0.01750902645289898, 0.006291198544204235, 0.0055716983042657375, -0.018629036843776703, 0.02731975167989731, 0.00306407967582345, 0.015396601520478725, -0.04973414167761803, -0.028425585478544235, -0.01049123890697956, 0.013666965067386627, 0.0441766194999218, -0.05988512188196182, -0.027489880099892616, 0.029800787568092346, 0.0160062275826931, 0.007542349863797426, 0.04343939945101738, -0.04060392826795578, 0.012490244582295418, 0.043496109545230865, 0.021932359784841537, 0.018061943352222443, 0.05154884234070778, 0.0060360063798725605, -0.013418860733509064, 0.014198615215718746, 0.04635993391275406, -0.002156729344278574, 0.011937327682971954, 0.0033795256167650223, 0.00586587842553854, -0.020769815891981125, 0.030282817780971527, -0.00549017870798707, 0.007967670448124409, -0.05126529559493065, -0.029035210609436035, -0.01351101417094469, 0.011554540134966373, -0.0056142304092645645, -0.009130213409662247, 0.0176224447786808, 0.010625923052430153, 0.0033299049828201532, 0.008867931552231312, 0.011745934374630451, -0.0034380073193460703, -0.011476564221084118, 0.01757991313934326, -0.006167146842926741, -0.00062823377083987, -0.022669581696391106, 0.002699012868106365, 0.001871410058811307, -0.019593097269535065, 0.01572268083691597, 0.0018926761113107204, -0.026143033057451248, 0.01633230596780777, 0.03031117282807827, 0.0012653283774852753, 0.013362151570618153, -0.020415382459759712, -0.028354698792099953, 0.0336286723613739, -0.04080241173505783, 0.05222935602068901, -0.027291396632790565, 0.000989756197668612, 0.0036648449022322893, -0.0015674831811338663, 0.018501440063118935, -0.022541984915733337, -0.0020433105528354645, 0.023676173761487007, -0.036322370171546936, 0.01940879039466381, 0.014177349396049976, 0.031133459880948067, -0.023676173761487007, -0.0506414920091629, 0.008428433910012245, -0.012064924463629723, 0.03805200383067131, -0.02965901419520378, -0.02366199530661106, 0.013645698316395283, -0.014184437692165375, -0.01689940132200718, 0.0008998186676762998, 0.013645698316395283, 0.013404684141278267, 0.035443373024463654, 0.02588783949613571, -0.059828415513038635, -0.003969657700508833, -0.0019015369471162558, 0.023562755435705185, 0.024214912205934525, -0.0011722896015271544, 0.026880254969000816, 0.006773228757083416, -0.004526118747889996, 0.0023428068961948156, -0.0012157077435404062, -0.02269793674349785, -0.00011009597801603377, 0.001029629958793521, -0.016516612842679024, -0.013539368286728859, -0.010335288010537624, -0.0012812779750674963, 0.02139361947774887, -0.012100367806851864, -0.00927907507866621, 0.010746430605649948, 0.011561628431081772, 0.018572326749563217, -0.03184232488274574, -0.006716519128531218, 0.05931802839040756, -0.017523203045129776, 0.006312464829534292, 0.0004576625651679933, 0.021705521270632744, 0.034422602504491806, -0.009186922572553158, 0.002706101629883051, 0.023491868749260902, -0.006479048635810614, 0.026766834780573845, 0.005635496228933334, -0.007918049581348896, 0.012858855538070202, 0.007903872057795525, -0.004745867568999529, 0.02115260437130928, -0.03331677243113518, 0.01324873324483633, 0.0397249311208725, 0.01045579556375742, 0.01896929368376732, -0.00018663151422515512, -0.028539003804326057, -0.010285667143762112, -0.002863824600353837, 0.015084699727594852, 0.013964689336717129, 0.01644572615623474, 0.008392990566790104, 0.040008481591939926, 0.01098035741597414, -0.025377456098794937, -0.031785618513822556, -0.005483089946210384, -0.008563118986785412, -0.010838583111763, 0.02191818132996559, -0.03759833052754402, -0.03711630031466484, 0.04003683477640152, -0.04304243251681328, 0.0269511416554451, 0.004614727105945349, -0.025235682725906372, 0.03382715582847595, 0.025590116158127785, 0.01280214637517929, -0.005054225213825703, -0.004511941224336624, 0.012022391892969608, -0.004674980882555246, -0.007747921627014875, -0.049422238022089005, 0.013170757330954075, -0.017778396606445312, 0.02902103401720524, 0.0036116796545684338, -0.04437510296702385, 0.00014454250049311668, 0.04292901232838631, -0.0200609490275383, 0.013106959871947765, -0.025802776217460632, -0.023151611909270287, -0.03453602269291878, -0.0461898036301136, -0.016233064234256744, 0.0005307645187713206, -0.03683275356888771, -0.05123693868517876, -0.007932227104902267, -0.0018129285890609026, -0.06527251750230789, 0.013624432496726513, -0.028581535443663597, 0.005695750005543232, 0.008081088773906231, 0.006567656993865967, -0.01633230596780777, -0.028156215324997902, -0.03581198304891586, -0.0026564807631075382, 0.011441120877861977, -0.0016516612377017736, 0.008343369700014591, 0.0008971603820100427, -0.02848229557275772, -0.020358674228191376, 0.01227758452296257, 0.06425175070762634, -0.015070522204041481, -0.04987591505050659, -0.033940576016902924, 0.005833979230374098, -0.018813341856002808, -0.011497830040752888, -0.026795189827680588, -0.02605796791613102, 0.016119645908474922, 0.007400576490908861, 0.02625645138323307, 0.004618271719664335, 0.004355990793555975, 0.02390301041305065, -0.01078187394887209, -0.040859121829271317, -0.004313458688557148, 0.01949385553598404, -0.03986670449376106, -0.007655768655240536, -0.0417381152510643, 0.012128721922636032, 0.0014868495054543018, 0.01375911757349968, 0.018699923530220985, -0.0014345705276355147, 0.007226903922855854, -0.007875517942011356, -0.02876584231853485, 0.018288780003786087, -0.0024083771277219057, 0.025136440992355347, -0.014872039668262005, 0.0401218980550766, 0.017353076487779617, -0.04389307275414467, 0.01908271200954914, 0.011611249297857285, -0.01000920869410038, 0.005862333811819553, -0.018529795110225677, -0.0056567625142633915, 0.010243134573101997, -0.010540858842432499, -0.03221093863248825, -0.019181953743100166, 0.007854251191020012, -0.0009463380556553602, 0.01104415487498045, 0.02678101323544979, -0.03428082913160324, 0.009924144484102726, -0.037059590220451355, 0.02366199530661106, 0.028794197365641594, 0.011313525028526783, 0.004189406521618366, 0.011696313507854939, -0.030367882922291756, 0.016785981133580208, 0.011852264404296875, -0.007443108595907688, 0.02706455998122692, -0.05118023231625557, -0.044516876339912415, 0.020514624193310738, 0.007358044385910034, -0.01173175685107708, 0.0039980122819542885, -0.03666262701153755, 0.03067978471517563, 0.015169763937592506, 0.020840704441070557, 0.031303588300943375, -0.029630661010742188, -0.015198118053376675, 0.01604875922203064, 0.010342376306653023, 0.01722547970712185, 0.0025235682260245085, -0.038477327674627304, 0.028184570372104645, -0.027688363566994667, -0.0016002682968974113, -0.019465500488877296, -0.013588989153504372, 0.03944138437509537, 0.02091159112751484, -0.02900685742497444, 0.0073084235191345215, 0.02354857698082924, -0.024413395673036575, 0.008839577436447144, 0.05129364877939224, 0.006716519128531218, -0.0038491503801196814, -0.008655271492898464, -0.007074497174471617, -0.026128854602575302, 0.0046111829578876495, -0.014085196889936924, -0.020840704441070557, -0.014900393784046173, 0.015439133159816265, -0.06600973755121231, 0.0006291198660619557, 0.00781880784779787, -0.006308920681476593, -0.017608268186450005, 0.060282088816165924, -0.01644572615623474, 0.012383914552628994, -0.03586869314312935, -0.004419788718223572, 0.021748054772615433, 0.003002053825184703, -0.015396601520478725, 0.026511643081903458, 0.0275607667863369, -0.011079598218202591, -0.025349101051688194, -0.013064427301287651, 0.0002092266659019515, -0.014957103878259659, 0.010363642126321793, 0.029148630797863007, -0.014482161961495876, -0.029120275750756264, -0.01558090653270483, -0.004061810672283173, -0.022924773395061493, -0.017608268186450005, -0.056624334305524826, -0.014531782828271389, 0.005458279512822628, 0.05617065727710724, 0.026724303141236305, 0.004986882675439119, -0.010002120397984982, 0.019139422103762627, -0.005103845614939928, 0.009697306901216507, -0.024016430601477623, 0.021081717684864998, -0.016970288008451462, -0.011589983478188515, -0.02130855619907379, -0.006783861666917801, 0.04814627766609192, -0.04222014546394348, 0.009179833345115185, -0.011816821061074734, 0.03221093863248825, -0.03340183570981026, -0.021053364500403404, -0.004540296271443367, 0.002699012868106365, 0.0015612805727869272, 0.04485713317990303, 0.004905363079160452, -0.0045367516577243805, -0.011675046756863594, -0.002713190158829093, 0.025873662903904915, 0.008407168090343475, -0.03416741266846657, 0.007248169742524624, -0.013199112378060818, 0.007811719551682472, 0.014999635517597198, 0.001009250059723854, -0.03870416432619095, -0.012653284706175327, 0.01957891881465912, -0.009286163374781609, -0.01759408973157406, 0.006365629844367504, -0.03192739188671112, 0.00972566194832325, 0.015027990564703941, 0.00017832446610555053, -0.02475365251302719, 0.05520659685134888, 0.031388651579618454, 0.004667892120778561, -0.03748491033911705, 0.04040544480085373, 0.006227400619536638, -0.021733876317739487, -0.043099142611026764, 0.008903375826776028, 0.028099507093429565, 0.03164384514093399, -0.02071310766041279, 0.024540992453694344, -0.0026724303606897593, 0.003554970258846879, -0.022258438169956207, -0.0018767266301438212, 0.008463877253234386, -0.02058551087975502, -0.026469111442565918, -0.015212295576930046, 0.006011195946484804, 2.9185403036535718e-05, -0.011448209173977375, 0.009605154395103455, -0.008485144004225731, 0.018983470275998116, -0.0006836140528321266, -0.014872039668262005, -0.03456437587738037, 0.028312167152762413, -9.082364704227075e-05, 0.012695816345512867, 0.039044421166181564, -0.03788187727332115, 0.0470120906829834, 0.007847162894904613, 0.020287787541747093, 0.033004868775606155, -0.005646129604429007, -0.012773791328072548, -0.003597502363845706, -0.016842691227793694, -0.030197754502296448, -0.014999635517597198, -0.004164596553891897, -0.018870051950216293, 0.005220809020102024, -0.031218523159623146, -0.007939315401017666, -0.04315585270524025, -0.0060785384848713875, -0.015424955636262894, -0.002784077078104019, 0.07360880076885223, -0.001860777148976922, -0.0003453513782005757, -0.001825333689339459, 0.007506906520575285, -0.0020557157695293427, -0.00224888208322227, 0.029573950916528702, -0.02447010576725006, -0.00018663151422515512, 0.03238106518983841, 0.027291396632790565, -0.010859849862754345, -0.025746066123247147, 0.00038456061156466603, 0.03864745423197746, 0.034025639295578, -0.027886847034096718, 0.014382921159267426, -0.016261419281363487, 0.021889828145503998, 0.010994534008204937, -0.03192739188671112, 0.00042133309761993587, 0.003760542022064328, 0.003267879132181406, 0.029715724289417267, 0.01733889803290367, -0.001871410058811307, 0.011377322487533092, -0.008116532117128372, 0.006032462231814861, -0.008315015584230423, 0.03541501984000206, 0.007248169742524624, 0.01373785175383091, -0.02252780832350254, -0.009605154395103455, -0.024044783785939217, -0.0036223127972334623, -0.007953492924571037, -0.027929378673434258, -0.02160627953708172, 0.023123256862163544, -0.011689224280416965, -0.012135811150074005, 0.032919805496931076, 0.010959090664982796, -0.025434164330363274, 0.017636623233556747, -0.012837589718401432, 0.022683758288621902, 0.028028620406985283, -0.0013433038257062435, 0.009817814454436302, 0.013872535899281502, 0.01755155809223652, 0.00824412889778614, 0.0020698930602520704, -0.017537381500005722, -0.0072658914141356945, -0.015325714834034443, -0.01183099765330553, 0.003966113552451134, -0.00854894146323204, -0.010675543919205666, 0.01969233900308609, 0.01628977432847023, -0.020089304074645042, 0.015283182263374329, -0.0372864305973053, -0.012603663839399815, 0.0020167280454188585, 0.009108946658670902, 0.0019121699733659625, 0.015595084056258202, 0.02965901419520378, -0.002098247641697526, 0.0077620986849069595, 0.0050435918383300304, -0.0429573692381382, 0.038845937699079514, -0.03456437587738037, 0.015439133159816265, 0.010335288010537624, 0.005607141647487879, -0.030055981129407883, -0.029885852709412575, -0.007925137877464294, -0.0008391218725591898, -0.041879888623952866, -0.021705521270632744, 0.01446798536926508, -0.018061943352222443, -0.016133824363350868, 0.03096333146095276, -0.029148630797863007, -0.006248666904866695, 7.415418076561764e-05, -0.02946053259074688, 0.011334790848195553, 0.013858359307050705, 0.02974407933652401, -0.010321110486984253, 0.017778396606445312, 0.028383053839206696, -0.012157076969742775, 0.013943423517048359, -0.028709132224321365, -0.01278796885162592, -0.016828512772917747, 0.015836099162697792, -0.031133459880948067, -0.011745934374630451, 0.03294815868139267, -0.012440623715519905, -0.001890903920866549, 0.012958097271621227, 0.00857020728290081, 0.016842691227793694, 0.009406670928001404, 0.010788963176310062, 0.007847162894904613, -0.009732750244438648, 0.03340183570981026, -3.511109025566839e-05, 0.01860068179666996, -0.02585948444902897, 0.014645202085375786, -0.018132830038666725, 0.024711119011044502, 0.002261287299916148, -0.014269501902163029, -0.034025639295578, 0.008130709640681744, -0.002275464590638876, -0.006202590186148882, 0.013709496706724167, 0.01045579556375742, 0.035273246467113495, -0.013319619931280613, 0.011965682730078697, 0.01298645231872797, -0.005880055483430624, -0.013326708227396011, 0.013482659123837948, -0.024583524093031883, 0.038959354162216187, -0.024711119011044502, 0.01851561851799488, -0.035840339958667755, 0.010094272904098034, -0.04570777341723442, 0.005068402271717787, 0.015623439103364944, 0.037059590220451355, 0.004752956330776215, 0.0017110288608819246, 0.012915565632283688, 0.02431415393948555, 0.010441618040204048, 0.03561350330710411, 0.018161185085773468, 0.007287157699465752, -0.021833118051290512, 0.016233064234256744, -0.008867931552231312, 0.0009357050294056535, 0.03975328803062439, -0.005681572947651148, 0.030055981129407883, -0.01609129086136818, 0.01045579556375742, 0.013744940049946308, -0.0018979926826432347, 0.001818245043978095, 0.003941303119063377, 0.028751663863658905, 0.003344082273542881, 0.017041174694895744, 0.03674769029021263, 0.04068899154663086, 0.040178608149290085, -0.022173374891281128, -0.027787605300545692, 0.012135811150074005, -0.01548166573047638, -0.031105104833841324, -0.008159064687788486, -0.008442611433565617, -0.03464944288134575, 0.005745370872318745, 0.007280068937689066, 0.020231077447533607, -0.05676610767841339, 0.029772434383630753, -0.005086123943328857, -0.05200251564383507, 0.015751035884022713, 0.017480671405792236, -0.024526813998818398, -0.01896929368376732, 0.035074763000011444, 0.006560568232089281, -0.02213084138929844, -0.00251293508335948, -0.027404816821217537, -0.008166152983903885, -0.0017030540620908141, 0.031020039692521095, -0.01596369594335556, 0.029517240822315216, 0.007237536832690239, 0.030849911272525787, 0.013752029277384281, 0.019749047234654427, 0.008655271492898464, -0.0056567625142633915, 0.01860068179666996, 0.02171969972550869, 0.0015231790021061897, -0.003127877600491047, 0.06799456477165222, -0.026454932987689972, -0.003625857178121805, -0.014432542026042938, 0.028227102011442184, 0.06317427009344101, 0.026483288034796715, -0.006890191696584225, 0.0007638047100044787, -0.005522077437490225, 0.03756997734308243, -0.007847162894904613, 0.004597005434334278, 0.04834476113319397, -0.0012334294151514769, 0.00828666053712368, -0.019337903708219528, 0.0056142304092645645, -0.0073934877291321754, -0.006440061144530773, 0.004770678002387285, -0.024214912205934525, 0.008315015584230423, 0.01380164921283722, -0.013830004259943962, -0.00826539471745491, 0.0031916757579892874, -0.019876644015312195, -0.04752247408032417, -0.006028917618095875, -0.00515701062977314, -0.00946338102221489, 0.004887641407549381, 0.011618337593972683, 0.009548445232212543, 0.03209751844406128, 0.03745655715465546, 0.02224426157772541, 0.010150982066988945, -0.010264401324093342, -0.007556527387350798, -0.011653780937194824, -0.006340819410979748, -0.005794991739094257, 0.03127523139119148, -0.018955115228891373, 0.00017057123477570713, 0.026072144508361816, -0.011150484904646873, -0.03513147309422493, -0.0027078737039119005, -0.007556527387350798, 0.0066491770558059216, -0.0030764848925173283, -0.002126602455973625, -0.010654278099536896, -0.015623439103364944, -0.01871410198509693, 0.025434164330363274, 0.02561846934258938, -0.002209894359111786, -0.013723674230277538, 0.003356487490236759, -0.011497830040752888, 0.029800787568092346, -0.01731054298579693, 0.0011457070941105485, -0.007085130549967289, 0.03878922760486603, 0.016644207760691643, -0.010221868753433228, -0.03433753922581673, 0.004239027388393879, 0.01572268083691597, -0.004635993391275406, -0.028680777177214622, 0.003416741266846657, 0.010462883859872818, -0.008407168090343475, -0.021549571305513382, -0.01596369594335556, -0.010129716247320175, 0.0008231723331846297, -0.0021549570374190807, 0.003223574720323086, -0.025377456098794937, 0.011958594433963299, 0.020443737506866455, -0.014297856949269772, -0.0494505949318409, -0.011341879144310951, 0.00687955878674984, -0.025746066123247147, 0.020472092553973198, 0.007733744103461504, 0.01152618508785963, 0.0709434524178505, 0.024058962240815163, -0.036322370171546936, -0.028751663863658905, -0.0017668521031737328, 0.049904268234968185, -0.0023392627481371164, -0.013305442407727242, -0.017976878210902214, 0.015027990564703941, -0.00368256657384336, -0.015212295576930046, 0.020160190761089325, 0.006199046038091183, -0.010427440516650677, 0.00849223230034113, 0.020557155832648277, -0.036010466516017914, 0.00950591266155243, -0.02747570350766182, 0.04797615110874176, -0.02200324647128582, -0.005206631496548653, -0.008031468838453293, -0.0013557090424001217, 0.02610049955546856, -0.004472953733056784, -0.025051375851035118, -0.002225843956694007, 0.0026919241063296795, -0.0066598099656403065, 0.02160627953708172, -0.0065428465604782104, 0.03833555430173874, 0.014177349396049976, -0.0052597965113818645, -0.01232011616230011, 0.004713968839496374, 0.00857020728290081, 0.01718294806778431, 0.006408161949366331, 0.0017686242936179042, 0.0020309053361415863, -0.01670091785490513, -0.008931729942560196, 0.049337174743413925, 0.016828512772917747, 0.0009720345260575414, 0.014928748831152916, 0.007173738908022642, -0.010866938158869743, -0.026114678010344505, 0.030452946200966835, 0.009194010868668556, 0.022513629868626595, -0.02078399434685707, 0.016133824363350868, -0.018629036843776703, 0.04193659871816635, -0.027688363566994667, -0.01847308687865734, -0.006883102934807539, -0.043354332447052, 0.0025501507334411144, 0.025590116158127785, 0.007634502835571766, 0.0009640597272664309, 0.0013105187099426985, -0.012844678945839405, -0.018104474991559982, -0.011122130788862705, 0.044516876339912415, 0.020188545808196068, 0.015027990564703941, 0.0013831775868311524, -0.02422909066081047, -0.0029471165034919977, -0.006783861666917801, 0.0008351344731636345, -0.016601676121354103, 0.029602305963635445, -0.021407797932624817, -0.03453602269291878, 0.029800787568092346, -0.016176356002688408, 0.03238106518983841, 0.0011465931311249733, -0.014375831931829453, -0.02734810672700405, 0.011597071774303913, -0.031048394739627838, -0.016672562807798386, -0.02160627953708172, -0.024739474058151245, 0.026369869709014893, -0.019224485382437706, 0.018090298399329185, 0.028751663863658905, -0.041879888623952866, -0.0007474121521227062, -0.020727284252643585, -0.020075127482414246, -0.010016296990215778, -0.003462817519903183, -0.011256814934313297, 0.01027148962020874, 0.015311537310481071, 0.012901388108730316, -0.010625923052430153, 0.0005196884740144014, 0.029800787568092346, 0.014191526919603348, 0.02184729464352131, -0.004402067046612501, -0.01868574693799019, -0.01568014919757843, 0.027121270075440407, 0.013900890946388245, 0.013461393304169178, 0.02354857698082924, -0.021336911246180534, -0.017820928245782852, -0.015127231366932392, 0.01709788292646408, 0.004540296271443367, -0.002222299575805664, 0.0027149624656885862, -0.030623074620962143, -0.06192666292190552, -0.009222365915775299, 0.005915498826652765, 0.03002762608230114, 0.016034582629799843, -0.008719069883227348, 0.007336778100579977, -0.0051605552434921265, -0.009179833345115185, 0.035726919770240784, -0.008215773850679398, -0.03257954865694046, 0.0031261055264621973, 0.013617344200611115, -0.006248666904866695, 0.011228460818529129, 0.0024438207037746906, 0.0073934877291321754, 0.00857020728290081, -0.01847308687865734, -0.01609129086136818, -0.007280068937689066, 0.035726919770240784, -0.001337987370789051, -0.014645202085375786, 0.04468700662255287, -0.028312167152762413, -0.003367120400071144, -0.0360671766102314, -0.01280923467129469, 0.016389016062021255, -0.01648825779557228, -0.02876584231853485, -0.015779389068484306, 0.014673556201159954, -0.0012830501655116677, -7.398804154945537e-05, 0.007056775502860546, 0.029857497662305832, 0.013340885750949383, 0.006418794859200716, -0.01151200756430626, -0.018132830038666725, -0.026440756395459175, 0.014382921159267426, -0.011561628431081772, 0.028014441952109337, -0.009456291794776917, 0.0013982410309836268, 0.02852482721209526, 0.019990062341094017, 0.012263406999409199, 0.0194513238966465, -0.014014310203492641, 0.005394481588155031, -0.005794991739094257, -0.003544337349012494, -0.018019411712884903, 0.006369173992425203, 0.016034582629799843, 0.04003683477640152, 0.009605154395103455, 0.021776407957077026, -0.007287157699465752, 0.0026653415989130735, 0.02354857698082924, 0.011171751655638218, 0.00877577904611826, -0.0026192653458565474, 0.009442114271223545, 0.01677180454134941, -0.019068535417318344, 0.003002053825184703, 0.017083706334233284, 0.004533207509666681, -0.004409155808389187, 0.024980489164590836, -0.011597071774303913, 0.007691211998462677, -0.0014017854118719697, 0.006284110248088837, 0.010158070363104343, -0.008534763939678669, -0.014815330505371094, -0.007875517942011356, -0.01818953827023506, -0.005858789663761854, -0.022669581696391106, -0.004749412182718515, 0.028751663863658905, 0.014971280470490456, 0.0170269962400198, 0.025065554305911064, 0.020075127482414246, -0.004451687913388014, 0.024668587371706963, -0.007960581220686436, -0.014482161961495876, -0.014900393784046173, 0.01957891881465912, -0.012284672819077969, -0.0001322480820817873, 0.0013982410309836268, -0.02784431353211403, 0.010916559025645256, -0.005915498826652765, 0.0004321876331232488, 0.037541620433330536, -0.020854881033301353, -0.02359110862016678, -0.012263406999409199, 0.00878995656967163, -0.016885222867131233, 0.018827520310878754, 0.0030924342572689056, 0.015793567523360252, 0.01879916526377201, -0.013525191694498062, 0.004331180360168219, 0.008123621344566345, -0.02224426157772541, 0.017282187938690186, 0.000963173690252006, -0.0583539716899395, -0.006486137397587299, -0.007868428714573383, -0.015183941461145878, -0.01585027575492859, 0.01000920869410038, 0.035925403237342834, -0.009385405108332634, 0.021492861211299896, 0.014482161961495876, 0.000855071353726089, -0.021790586411952972, 0.009030971676111221, 0.03124687820672989, 0.002286097500473261, -0.006397529039531946, -0.007166650146245956, 0.01871410198509693, -0.004993971437215805, 0.028822550550103188, 0.001371658523567021, 0.0042000398971140385, 0.003044585697352886, -0.007974758744239807, -0.0025696444790810347, -0.012851767241954803, -0.009179833345115185, -0.023846302181482315, 0.005745370872318745, 0.03844897076487541, -0.009527178481221199, -0.00522789778187871, -0.014198615215718746, 0.017112061381340027, 0.01558090653270483, 0.014120640233159065, -0.004809665959328413, -0.021209314465522766, 0.006202590186148882, 0.00883248820900917, -0.007705389522016048, 0.026653416454792023, -0.024498458951711655, 0.004175229463726282, -0.008456788957118988, -0.027858491986989975, -0.005291695706546307, -0.012695816345512867, -0.009264897555112839, 0.017693331465125084, -0.0024704032111912966, -0.004791944287717342, -0.015127231366932392, -0.013971777632832527, -0.009860346093773842, 0.0021478685084730387, -0.003305094549432397, -0.02176223136484623, -0.018543973565101624, -0.014290767721831799, 0.024583524093031883, 0.00946338102221489, 0.008889198303222656, 0.021421974524855614, -0.023520221933722496, -0.0008843121468089521, 0.0051180231384932995, 0.023817947134375572, -0.017239656299352646, 0.009449203498661518, -0.003581552766263485, 0.006202590186148882, 0.01726801134645939, 0.01150491926819086, 0.0053023286163806915, -0.020684752613306046, -0.013702408410608768, -0.009995031170547009, 0.00725525850430131, 0.026922786608338356, 0.007655768655240536, 0.008038557134568691, 0.020046772435307503, 0.0023055914789438248, 0.03439424932003021, 0.010150982066988945, 0.01055503636598587, -0.004093709401786327, 0.009796548634767532, 0.00828666053712368, 0.009895789436995983, -0.0009286163840442896, -0.010569213889539242, -0.005720560438930988, 0.0077620986849069595, 0.004749412182718515, -0.01637483760714531, 0.026284806430339813, 0.02191818132996559, 0.01045579556375742, -0.005281062796711922, 0.002835469786077738, 0.016800159588456154, -0.005748915020376444, -0.05271138623356819, -0.025958726182579994, -0.017565736547112465, 0.004915995988994837, -0.015269005671143532, 0.024144025519490242, 0.001466469606384635, 0.021776407957077026, -0.012525687925517559, 0.029914207756519318, -0.015311537310481071, 0.005961575545370579, 0.005692205857485533, -0.029772434383630753, -0.01592116244137287, -0.02001841738820076, 0.009307430125772953, 0.006553479935973883, 0.00774083286523819, -0.019224485382437706, 0.0032466130796819925, 0.009676041081547737, 0.010448706336319447, -0.004448143299669027, -0.003035724861547351, -0.03825048729777336, -0.01353227999061346, 0.007790453266352415, -0.0028992679435759783, -0.0004842451016884297, -0.0063904402777552605, -0.0010881115449592471, -0.00524561945348978, 0.01722547970712185, 0.00690082460641861, 0.031672198325395584, -0.007485640235245228, 0.01549584325402975, -0.04165305197238922, 0.0015373562928289175, 0.007024876773357391, 0.01896929368376732, -0.010299844667315483, 0.007684123236685991, -0.018955115228891373, -0.0022701481357216835, -0.01840220019221306, 0.010420352220535278, 0.04219179227948189, -0.006666898727416992, -0.006698797456920147, 0.014056841842830181, 0.029318759217858315, -0.05203087255358696, 0.015453310683369637, 0.0057241045869886875, 0.0005812713061459363, 0.011193017475306988, 0.023406803607940674, -0.012355559505522251, 0.007343866862356663, 0.019550565630197525, 0.0005028528394177556, 0.009435025975108147, -0.0025466063525527716, 0.023676173761487007, 0.004674980882555246, 0.02427162230014801, -0.002986104227602482, 0.018302958458662033, 0.003735731588676572, -0.0004403839120641351, 0.009137301705777645, 0.014645202085375786, 0.03464944288134575, -0.015524197369813919, -0.02671012654900551, -0.010994534008204937, -0.00028133176965638995, 0.018586505204439163, 0.001746472204104066, -0.005585875827819109, 0.015793567523360252, -0.03864745423197746, -0.007889694534242153, -0.049904268234968185, -0.026554174721240997, -0.025703534483909607, 0.024285798892378807, -0.011582894250750542, 0.005263341125100851, 0.006082082632929087, -0.03745655715465546, 0.010413262993097305, -0.02313743345439434, 0.02220172993838787, -0.00038500363007187843, -0.013574811629951, -0.023817947134375572, -0.01670091785490513, -0.0020273609552532434, 0.01274543721228838, 0.01585027575492859, -0.03918619453907013, 0.01280923467129469, -0.0006118412129580975, -0.00878995656967163, 0.020443737506866455, -0.016474079340696335, 0.0005121567519381642, 0.018388021737337112, 0.0008240584284067154, 0.0039200372993946075, 0.026369869709014893, 0.0316154882311821, -0.036690980195999146, -0.003259018063545227, 0.008166152983903885, 0.010150982066988945, 0.006805127486586571, 0.009420848451554775, 0.03946974128484726, 8.179665746865794e-05, 0.0309916865080595, 0.005880055483430624, -0.0011040610261261463, -0.002863824600353837, 0.0007540577789768577, 0.008109443821012974, -0.0031881313771009445, -0.0015550779644399881, -0.032607901841402054, -0.007790453266352415, -0.004288648255169392, -0.0006406389875337481, 0.009739838540554047, 0.028709132224321365, -0.023250853642821312, -0.0008147545158863068, -0.012383914552628994, -0.020486269146203995, 0.002085842425003648, 0.012107456102967262, -0.0021620457991957664, -0.002179767470806837, 0.004625360015779734, -0.03360031917691231, -0.020557155832648277, 0.014957103878259659, 0.009435025975108147, -0.0010703898733481765, -0.017863459885120392, 0.007606147788465023, 0.0025962269864976406, 0.013610254973173141, -0.025590116158127785, -0.0017438139766454697, 0.022272616624832153, 0.003732187207788229, -0.0007279182900674641, -0.0034769948106259108, -0.0008856413187459111, -0.03978164121508598, -0.025476695969700813, -0.009683129377663136, -0.0061955018900334835, 0.012313027866184711, -0.013461393304169178, -0.011448209173977375, -0.008641093969345093, -0.010172247886657715, -0.0376833938062191, -0.007379310205578804, -0.0053873928263783455, 0.013971777632832527, -0.003620540490373969, 0.002321540843695402, -0.019224485382437706, 0.03822213411331177, 0.0033688927069306374, -0.017197124660015106, -0.0025093909353017807, -0.0024243267253041267, -0.0042425720021128654, 0.021138427779078484, 0.02872331067919731, 0.0002636100980453193, -0.04993262514472008, -0.010959090664982796, 0.01450342871248722, 0.040944185107946396, 0.0012130493996664882, 0.0018944483017548919, -0.025306569412350655, 0.009186922572553158, 0.0018519163131713867, -0.026568353176116943, 0.01738142967224121, -0.0015843188157305121, -0.012206697836518288, 8.451029134448618e-05, 0.000199812013306655, -0.011894796043634415, 0.011185928247869015, 0.026355693116784096, 0.011852264404296875, 0.012369737029075623, 0.04939388483762741, -0.01993335224688053, 0.011611249297857285, -0.03887429088354111, -0.016303950920701027, -0.02848229557275772, -0.006808672100305557, -0.02099665440618992, 0.008293749764561653, -0.02152121625840664, -0.0285673588514328, -0.03518817946314812, 0.0022045779041945934, -0.015198118053376675, 0.021053364500403404, 0.043751299381256104, -0.011554540134966373, -0.015595084056258202, 0.003980290610343218, 0.006294743157923222, -0.011724667623639107, 0.024867070838809013, -0.015042168088257313, -0.012851767241954803, -0.020769815891981125, 0.04363788291811943, 0.01823207177221775, -0.006723607890307903, -0.006585378665477037, 0.01558090653270483, 0.0030144588090479374, 0.02828381210565567, 0.01251859962940216, -0.02723468840122223, -0.03496134281158447, 0.015779389068484306, 0.012142899446189404, -0.0013424177886918187, -3.73539915017318e-05, -0.01404266431927681, 0.004926628898829222, -0.0235060453414917, 0.0038456059992313385, 0.0039200372993946075, 0.01929537206888199, -0.0019157143542543054, 0.013652787543833256, 0.016785981133580208, -0.005011693108826876, 0.015027990564703941, -0.013659875839948654, -0.037173010408878326, 0.007216271013021469, -0.00042376984492875636, 0.014631024561822414, 0.024626055732369423, -0.001009250059723854, 0.011292259208858013, 0.01130643580108881, 0.01775004155933857, 0.02808532863855362, -0.002879774197936058, 0.0010606430005282164, -0.00478131091222167, 0.013284176588058472, -0.005802080035209656, -0.021081717684864998, -0.021733876317739487, -0.03898771107196808, -0.008173242211341858, -0.003344082273542881, -0.0035124383866786957, 0.002699012868106365, 0.015240650624036789, -0.006142336409538984, 0.0010234273504465818, -0.009413760155439377, 0.014390009455382824, -0.013057339005172253, -0.002716734539717436, -0.024626055732369423, -0.00549017870798707, 0.02265540510416031, -0.00712057389318943, 0.006011195946484804, -0.007769187446683645, 0.0095200901851058, -0.0160062275826931, -0.005351949483156204, 0.004600550048053265, -0.008761601522564888, 0.022910596802830696, 0.003959024790674448, 0.013114048168063164, -0.02557593770325184, 0.004685613792389631, -0.0022347047924995422, 0.0003429146308917552, -0.002844330621883273, -0.0034185133408755064, 0.008938819169998169, 0.011086687445640564, 0.0027929379139095545, 0.002298502717167139, 0.019791578873991966, -0.0085134981200099, -0.020727284252643585, 0.010881115682423115, 0.007528172340244055, -0.011845175176858902, -0.009087680839002132, 0.05920461192727089, 0.009640597738325596, 0.020231077447533607, -0.018104474991559982, -0.005128656048327684, -0.017083706334233284, -0.008931729942560196, 0.023080725222826004, -0.0011997581459581852, -0.014801152981817722, -0.0008785526151768863, -0.008584384806454182, -0.018005233258008957, 0.019465500488877296, -0.014397098682820797, 0.009080592542886734, -0.010065917856991291, 0.006323097739368677, 0.014857862144708633, 0.018671568483114243, 0.027177978307008743, 0.01644572615623474, 0.00871198158711195, -0.0071418397128582, 0.0008324762457050383, 0.003693199483677745, -0.016927754506468773, 0.002068120753392577, -0.0014717860613018274, 0.025023020803928375, -0.015524197369813919, 0.00020003353711217642, -0.02086905762553215, -0.0062203118577599525, -0.005231441929936409, 0.022272616624832153, 0.011214283294975758, 0.020231077447533607, -0.011937327682971954, 0.006174235604703426, -0.008343369700014591, -0.016785981133580208, 0.02329338528215885, 0.012752525508403778, 0.0007097535417415202, -0.020330319181084633, 0.01657332107424736, -0.007226903922855854, 0.00500460434705019, -0.0053023286163806915, -0.014673556201159954, -0.004504852928221226, 0.017452316358685493, 0.02588783949613571, -0.00013424178177956492, -0.013929245993494987, -0.003067624056711793, 0.0008887425647117198, 0.025476695969700813, 0.013851270079612732, -0.0019210308091714978, -0.00909476913511753, -0.01871410198509693, -0.01847308687865734, -0.007896783761680126, -0.009612242691218853, -0.011646692641079426, -0.0067448741756379604, -0.0005781700019724667, -0.009137301705777645, -0.00014631467638537288, 0.016176356002688408, 0.0013743167510256171, -0.014928748831152916, 0.003429146483540535, -0.0037463644985109568, 0.02354857698082924, 0.007875517942011356, 0.022924773395061493, 0.010689721442759037, -0.006082082632929087, -0.015311537310481071, 0.00844970066100359, -0.017324721440672874, -0.0016419142484664917, -0.006652721203863621, 0.00159849610645324, 0.008605650626122952, 0.009860346093773842, -0.027702540159225464, -0.016516612842679024, -0.008031468838453293, -0.01126390416175127, 0.00032718662987463176, 0.011887707747519016, 2.119679811585229e-05, -0.006808672100305557, -0.030282817780971527, 0.01689940132200718, -0.009867435321211815, 0.021492861211299896, -0.00438788952305913, -0.014815330505371094, 0.009605154395103455, 0.01076060812920332, -0.005284606944769621, 0.015906985849142075, 0.003581552766263485, -0.0011129219783470035, -0.008428433910012245, -0.016956109553575516, 0.001641028211452067, -0.011646692641079426, 0.017537381500005722, -0.005784358363598585, 0.003601046744734049, 0.005440557841211557, 0.012064924463629723, -0.030084336176514626, -0.007797542028129101, -0.01548166573047638, -0.011377322487533092, -0.0072658914141356945, -0.02568935789167881, 0.011667958460748196, 0.0003584211226552725, -0.02139361947774887, -0.0021726787090301514, 0.0067874058149755, -0.01568014919757843, 0.01868574693799019, 0.0030605352949351072, 0.0014629252254962921, -0.008371724747121334, -0.005412203259766102, -0.00798184797167778, 0.006943356711417437, 0.0036045911256223917, 0.0022843254264444113, 0.002229388104751706, 0.015453310683369637, 0.014957103878259659, 0.00021775522327516228, 0.022102488204836845, -0.014985457994043827, 0.026936963200569153, -0.008556030690670013, 0.0030162311159074306, -0.008641093969345093, -0.0018147006630897522, 0.048401471227407455, -0.03133194148540497, -0.011086687445640564, -0.014035576023161411, -0.015736857429146767, -0.011412765830755234, -0.022102488204836845, 0.005178276915103197, -0.007187915965914726, 0.0048380205407738686, 0.014056841842830181, 0.003106611780822277, 0.005238530691713095, 0.00264407554641366, 0.016105469316244125, 0.005390936974436045, 0.019763225689530373, 0.009101858362555504, 0.007485640235245228, -0.0029240783769637346, 0.006312464829534292, 0.008081088773906231, 0.00871198158711195, -0.017934346571564674, 0.01272417139261961, -0.019422968849539757, 6.861615838715807e-05, -0.001032288302667439, 0.01249733380973339, 0.027645831927657127, -0.011093775741755962, 0.005823346320539713, 0.008598562330007553, 0.012050746940076351, 0.008392990566790104, -0.012121633626520634, -0.013915068469941616, 0.005390936974436045, -0.004285103641450405, 0.016913577914237976, -0.003103067399933934, 0.020571334287524223, 0.0038456059992313385, -0.0013565950794145465, 0.002140779746696353, -0.007230448070913553, 0.00017854598991107196, 0.023860478773713112, -0.010597568936645985, -0.000762918614782393, 0.014616847038269043, 0.00923654343932867, 0.008846665732562542, 0.017083706334233284, 0.0014381149085238576, -0.0026121765840798616, -0.013319619931280613, -0.02673848159611225, -0.01993335224688053, -0.0061281593516469, -0.03430918604135513, -0.0016250786138698459, 0.012334293685853481, 0.013652787543833256, -0.01199403777718544, 0.0033387658186256886, 0.00998794287443161, 0.01633230596780777, 0.011093775741755962, -0.003221802646294236, -0.010973268188536167, 0.009810726158320904, -0.02739063836634159, 0.009697306901216507, 0.008151975460350513, -0.021889828145503998, -0.007280068937689066, 0.014191526919603348, 0.018742455169558525, -0.005628407467156649, 0.04202166199684143, 0.00012294419866520911, -0.03388386592268944, 0.00800311379134655, 0.001913942163810134, 0.012355559505522251, 0.01568014919757843, -0.0073934877291321754, 0.012355559505522251, -0.016190532594919205, -0.00109165592584759, -0.005018781870603561, -0.005663851276040077, 0.0018129285890609026, 0.00474232342094183, -0.009045149199664593, 0.024767829105257988, -0.0031455992721021175, -0.0031083838548511267, -2.1335248675313778e-05, 0.007294246461242437, 0.005167644005268812, -0.012072012759745121, 0.014928748831152916, 0.022499453276395798, 0.003347626654431224, -0.014319122768938541, -0.002782304771244526, 0.012795058079063892, -0.02658252976834774, 0.012958097271621227, -0.022471098229289055, -0.007854251191020012, 0.025675179436802864, -0.006776772905141115, 0.006978800054639578, -0.010959090664982796, 1.5188039469649084e-05, 0.005812713410705328, 0.003450412303209305, 0.005082579795271158, 0.007021332159638405, 0.010654278099536896, 0.007698300760239363, 0.010703898966312408, 0.011901884339749813, -0.017211301252245903, -0.014390009455382824, -0.007329689804464579, 0.010207691229879856, -0.0066598099656403065, 0.006755507085472345, 0.010824406519532204, -0.03153042495250702, -0.013241644017398357, -0.01811865158379078, -0.015141408890485764, 0.011611249297857285, 0.0037534532602876425, 0.00844970066100359, 0.0013433038257062435, -0.0180335883051157, 0.002255970612168312, 0.015949517488479614, -0.02573188953101635, 0.0006424111197702587, 0.00412206444889307, -0.0009410215425305068, 0.026894431561231613, 0.009895789436995983, 0.01576521247625351, -0.005366126541048288, 0.0004186748410575092, 0.003432690631598234, 0.03002762608230114, -0.010335288010537624, 0.005316506139934063, 0.008173242211341858, -0.020514624193310738, -0.00553271034732461, 0.0038952266331762075, 0.00019759680435527116, 0.010236046276986599, 0.011497830040752888, -0.0006388667970895767, -0.009647686034440994, -0.011405677534639835, 0.022740468382835388, 0.014078107662498951, 0.008867931552231312, -0.002395972143858671, 0.009406670928001404, 0.005763092543929815, 0.017636623233556747, -0.006340819410979748, -0.004483586642891169, 0.0016330534126609564, 0.0016658385284245014, -0.008875020779669285, -0.007414753548800945, 0.016559144482016563, -0.011455298401415348, 0.007499817758798599, -0.02475365251302719, 0.017565736547112465, 0.022910596802830696, 0.007372221443802118, -0.007280068937689066, -0.020656397566199303, -0.0007509564748033881, -0.011887707747519016, 0.01677180454134941, -0.004146874882280827, 0.012688728049397469, -0.0166158527135849, 0.011703401803970337, 0.009612242691218853, 0.006585378665477037, -0.011561628431081772, 0.0068122162483632565, 0.01620471104979515, -0.0016020404873415828, 0.017764218151569366, -0.01718294806778431, 0.013957600109279156, -0.009179833345115185, -0.01648825779557228, 0.011327702552080154, 0.0013946967665106058, -0.009576799347996712, -0.008322103880345821, 0.022159196436405182, -0.00883248820900917, -0.02326503023505211, -0.008719069883227348, 0.018940938636660576, -0.017353076487779617, 0.007903872057795525, -0.014319122768938541, -0.003597502363845706, -0.010675543919205666, 0.002064576605334878, -0.013425949960947037, -0.009399582631886005, -0.0023888833820819855, -0.008648183196783066, 0.012816323898732662, -0.006060816813260317, -0.002151412656530738, -0.005071946885436773, 0.009995031170547009, 0.00010882223432417959, -0.007903872057795525, 0.015439133159816265, 0.0332317054271698, -0.013206200674176216, 0.014744442887604237, 0.030764847993850708, -0.005082579795271158, 0.007910961285233498, -0.004132697358727455, -0.01298645231872797, -0.002156729344278574, 0.006652721203863621, -0.007854251191020012, 0.016757626086473465, -0.025221504271030426, 0.019352082163095474, 0.006521580740809441, -0.012702904641628265, 0.008889198303222656, -0.018444731831550598, 0.001726092305034399, 0.008151975460350513, 0.020131835713982582, -0.024058962240815163, 0.02171969972550869, 0.011894796043634415, 0.0065428465604782104, 0.008676538243889809, 0.008556030690670013, 0.015609261579811573, -0.0166158527135849, 0.006369173992425203, -0.003333449363708496, -0.0018979926826432347, 0.026270627975463867, 0.0309916865080595, 0.004441054537892342, -0.005578787066042423, -0.0011802642839029431, 0.008251217193901539, -0.007847162894904613, 0.008577296510338783, 0.013128225691616535, -0.011597071774303913, 0.004178773611783981, -0.006021829321980476, -0.015552552416920662, 0.028383053839206696, -0.001143934903666377, -0.015424955636262894, -0.004217761568725109, -0.004554473329335451, -0.0007948176353238523, -0.003732187207788229, 0.019706515595316887, 0.004008645657449961, -0.017452316358685493, -0.004678525496274233, 0.002784077078104019, -0.0022045779041945934, -0.002151412656530738, 0.013567723333835602, 0.005692205857485533, -0.0003920923045370728, 0.008619828149676323, 0.023676173761487007, -0.008229951374232769, -0.011660870164632797, -0.007521084044128656, 0.011589983478188515, 0.01580774411559105, 0.012192520312964916, -0.012376826256513596, -0.014312034472823143, 0.002449137158691883, -0.0067271520383656025, 0.014049753546714783, -0.01981993392109871, 0.015609261579811573, 0.007478551939129829, 0.002647619927302003, -0.013709496706724167, 0.006780317518860102, 0.015751035884022713, 0.011405677534639835, 0.030169399455189705, -0.008052734658122063, 0.0152973597869277, 0.008378813043236732, 0.009052237495779991, 0.011313525028526783, -0.008300838060677052, 0.00883248820900917, 0.011398589238524437, 0.0008989325724542141, 0.012837589718401432, -0.007301334757357836, 0.007691211998462677, 0.009449203498661518, -0.0069717117585241795, 0.0022134387400001287, 0.005064858123660088, 0.021818941459059715, 0.02115260437130928, 0.017012819647789, 0.030367882922291756, 0.028397230431437492, -0.02171969972550869, 0.015226473100483418, 0.0035230712965130806, -0.009732750244438648, 0.003912948537617922, 0.005947398021817207, -0.0033954752143472433, 0.014687733724713326, 0.022428566589951515, -0.010448706336319447, 0.009449203498661518, 0.006337275262922049, 0.022300969809293747, 0.00978945940732956, -0.005731193348765373, -0.006252211052924395, 0.009647686034440994, -0.015736857429146767, 0.026327338069677353, 0.00564258499071002, -0.00538030406460166, 0.01378038339316845, -0.0004846881201956421, -0.0052030873484909534, 0.028992678970098495, 0.014312034472823143, 0.000563992653042078, 0.024328330531716347, 0.01548166573047638, -0.0031243334524333477, -0.005759548395872116, -0.008626917377114296, -0.023491868749260902, -0.00033848421298898757, 0.014007220976054668, -0.004593461286276579, 0.0029878763016313314, 0.011086687445640564, 0.005709927529096603, -0.023931365460157394, -0.0010508960112929344, -0.017721686512231827, 0.0194513238966465, -0.006762595847249031, -0.013192023150622845, 0.0021709066350013018, 0.011866440996527672, 0.012242141179740429, 0.015226473100483418, 0.020358674228191376, -0.025661002844572067, -0.002312680007889867, -0.0025572394952178, 0.012490244582295418, -0.009860346093773842, 0.01250442210584879, -0.015836099162697792, 0.0036294013261795044, 0.012213786132633686, -0.014340388588607311, 0.011632515117526054, 0.008407168090343475, 0.007903872057795525, 0.04346775263547897, 0.006475504487752914, -0.01670091785490513, -0.01940879039466381, 0.0053448607213795185, 0.002759266644716263, -0.005089668557047844, 0.014184437692165375, -0.00949882436543703, 0.004295737016946077, -0.01019351463764906, 0.03289145231246948, -0.01685686782002449, 0.011604160070419312, 0.03212587535381317, 0.01587863080203533, -0.018657391890883446, -0.011519096791744232, -0.005848156753927469, -0.006011195946484804, -0.02152121625840664, 0.006464871112257242, 0.009534267708659172, -0.008151975460350513, -0.02180476300418377, -0.0020149557385593653, 0.013199112378060818, 0.003689655102789402, 0.00903805997222662, 0.012596574611961842, -0.011391500011086464, 0.018005233258008957, -0.006312464829534292, 0.002344579203054309, 0.008180330507457256, 0.023123256862163544, 0.01624724268913269, -0.008499320596456528, -0.0053448607213795185, -0.012929742224514484, 0.005933220498263836, 0.006907913368195295, -0.001926347380504012, 0.008520587347447872, -0.005461823660880327, 0.009215276688337326, -0.007840074598789215, -0.02678101323544979, -0.012220875360071659, -0.003742820117622614, 0.0002341477811569348, -0.005383848212659359, 0.010888203978538513, 0.0014815330505371094, 0.007063864264637232, -0.003966113552451134, 0.0005896891234442592, -0.019196130335330963, 0.01884169690310955, -0.010236046276986599, 0.002218755194917321, -0.005653217900544405, 0.02272629179060459, 0.0015302676474675536, 0.02062804251909256, -0.00539802573621273, 0.006822849158197641, 0.01899764873087406, -0.015424955636262894, 0.010129716247320175, 0.01253986544907093, -0.00438788952305913, 0.004090165253728628, -0.016559144482016563, -0.00599701888859272, 0.002771671861410141, 0.01807611994445324, -0.002068120753392577, 0.011058332398533821, -0.014113551005721092, -0.0054299249313771725, -0.0021425518207252026, -0.015779389068484306, 0.017735863104462624, -0.02010348066687584, -0.0047600450925529, 0.014942926354706287, -0.008066912181675434, -0.0011067193700000644, -0.02330756187438965, -0.011462386697530746, 0.010710987262427807, -0.0039306702092289925, -0.0029488885775208473, 0.008300838060677052, -0.008336281403899193, 0.003239524317905307, 0.008804134093225002, -0.009661863557994366, 0.006301831919699907, -0.013752029277384281, 0.006549935322254896, 0.009172745048999786, -0.0020167280454188585, 0.00251293508335948, -0.011944416910409927, 0.006911457981914282, -0.001890903920866549, -0.0030162311159074306, -0.022343503311276436, -0.0012786197476089, 0.0016693829093128443, 0.01733889803290367, -0.013638610020279884, 0.03277803212404251, 0.0024668588303029537, 0.000522789778187871, -0.007896783761680126, 0.009690218605101109, 0.009087680839002132, -0.019267017021775246, 0.025802776217460632, -0.023165788501501083, 0.004951439332216978, -0.005709927529096603, -0.0105337705463171, 0.002514707390218973, -0.010243134573101997, -0.007109940517693758, -0.006734240800142288, 0.004490675404667854, -0.018742455169558525, -1.918926318467129e-05, 0.012079101987183094, 0.010732253082096577, 0.0008245014469139278, -0.017211301252245903, -0.008860843256115913, -0.041596341878175735, -0.013114048168063164, -0.004834475927054882, -0.018813341856002808, -0.0006884875474497676, -0.0006078538717702031, -0.002955977339297533, -0.009208188392221928, -0.015070522204041481, -0.01604875922203064, -0.028354698792099953, 0.0036471232306212187, -0.0026688859798014164, -0.007106396369636059, -0.011093775741755962, -0.01957891881465912, 0.01921030879020691, -0.016715094447135925, -0.0021354632917791605, -0.008676538243889809, 0.004674980882555246, -0.00974692776799202, 0.016062937676906586, 0.0013725446769967675, 0.013064427301287651, -0.035840339958667755, 0.0068122162483632565, -0.0061636026948690414, -0.006943356711417437, 0.017282187938690186, 0.016885222867131233, -0.015098877251148224, -0.013347974047064781, -0.00575245963409543, -0.0008444383856840432, -0.004005101043730974, 0.0006720949895679951, 0.005036503542214632, -0.002667113905772567, 0.007127662189304829, 0.006085627246648073, 0.0038881381042301655, -0.004749412182718515, 0.02775925025343895, -0.003290917258709669, 0.0016853323904797435, 0.013036072254180908, -0.01714041456580162, -0.013284176588058472, 0.017820928245782852, -0.03802365064620972, -0.02447010576725006, 0.010675543919205666, 0.0017447000136598945, 0.029120275750756264, -0.007896783761680126, -0.016459902748465538, -0.003951936028897762, -0.0054299249313771725, 0.015339892357587814, -0.030367882922291756, 0.00956262182444334, 0.0031774984672665596, -0.00972566194832325, -0.010172247886657715, 0.004175229463726282, 0.009385405108332634, 0.0013211517361924052, 0.019465500488877296, 0.018047764897346497, 0.023066546767950058, -0.005128656048327684, -0.012263406999409199, 0.004827387630939484, 0.008889198303222656, 0.022584518417716026, 0.0007917163311503828, -0.015183941461145878, -0.014602669514715672, 0.018487263470888138, 0.01568014919757843, -0.02281135506927967, -0.00948464684188366, -0.019267017021775246, 0.0037109211552888155, -0.0040724435821175575, 0.014744442887604237, 0.0036045911256223917, -0.0023658452555537224, 0.036123886704444885, -0.022499453276395798, -0.006468415725976229, -0.040547218173742294, -0.009264897555112839, -0.00923654343932867, -0.017778396606445312, 0.02516479417681694, -0.005982841365039349, 0.012844678945839405, 0.012164165265858173, 0.015977872535586357, 0.0016977376071736217, -0.013596078380942345, 0.022868065163493156, 0.01587863080203533, 0.013900890946388245, 0.012291762046515942, 0.0009915283881127834, -0.002084070350974798, 0.004855742212384939, 0.01779257319867611, 0.00522789778187871, 0.015141408890485764, -0.01698446460068226, -0.00449776416644454, 0.03547172620892525, -0.003475222736597061, -0.007202093489468098, -0.016630031168460846, 0.005812713410705328, 0.009697306901216507, 0.020698929205536842, -0.031190168112516403, -0.01609129086136818, -0.014701911248266697, -0.004246116150170565, -0.008648183196783066, -0.011419855058193207, 0.0006012082449160516, 0.0010712759103626013, -0.017920169979333878, 0.00474232342094183, 0.012383914552628994, -0.004331180360168219, 0.006454238202422857, -0.0009419076377525926, -0.008945907466113567, -0.01223505288362503, 0.004430421628057957, -0.012929742224514484, -0.0028496473096311092, 0.0043843453750014305, 0.031048394739627838, 0.006255755200982094, -0.0010278578847646713, 0.0023055914789438248, -0.0018040677532553673, 0.006620822008699179, 0.005295239854604006, 0.002498757792636752, -0.0012848222395405173, -0.016233064234256744, -0.004685613792389631, -0.005093212705105543, 0.0013069744454696774, 0.009775282815098763, -0.014014310203492641, -0.000739880430046469, -0.028056973591446877, -0.002847875002771616, 0.02439921908080578, 0.02673848159611225, 0.01404266431927681, 0.028950147330760956, -0.007641591131687164, 0.021053364500403404, -0.022839710116386414, 0.002059259917587042, 0.008931729942560196, 0.017735863104462624, 0.0030729405116289854, 0.011816821061074734, 0.026072144508361816, -0.02374706044793129, 0.009966676123440266, -0.029517240822315216, 0.00522789778187871, 0.008066912181675434, 0.004001556895673275, 0.008350458927452564, -0.018175361678004265, -0.014843684621155262, -0.009590976871550083, 0.022017423063516617, 0.008400079794228077, 0.013433038257062435, 0.021861473098397255, 0.010675543919205666, -0.002378250239416957, 0.010675543919205666, -0.020004240795969963, 0.01932372711598873, 0.008456788957118988, 0.012242141179740429, -0.003760542022064328, -0.00110140279866755, 0.016686739400029182, -0.011412765830755234, 0.012908476404845715, 0.014517605304718018, 0.0019440690521150827, 0.01272417139261961, 0.021648813039064407, 0.0038810493424534798, -0.004717512987554073, -0.0029772433917969465, 0.011540362611413002, 0.015751035884022713, -0.012575308792293072, 0.024952134117484093, 0.019961707293987274, -0.0015887492336332798, 0.01454596035182476, -0.0021478685084730387, -0.014078107662498951, -0.03708794713020325, -0.03430918604135513, -0.021124251186847687, 0.0075352611020207405, 0.032352712005376816, -0.007783364970237017, -0.005231441929936409, 0.009952499531209469, 0.010505415499210358, 0.005263341125100851, -0.0044694095849990845, 0.022712113335728645, -0.015892809256911278, 0.0006220312207005918, -0.014333300292491913, -0.025944549590349197, 0.019848288968205452, 0.01689940132200718, -0.0036187684163451195, -0.012979363091289997, 0.010640100575983524, 0.0016126735135912895, -0.019791578873991966, -0.005507900379598141, -0.005100301466882229, 0.004164596553891897, -0.002505846554413438, 0.020571334287524223, 0.006606644950807095, -0.0029488885775208473, -0.01750902645289898, -0.0016091291327029467, 0.0052704294212162495, -0.006354996934533119, 0.016233064234256744, 0.022783000022172928, 0.004969161003828049, 0.0050329589284956455, -0.01757991313934326, -0.014673556201159954, 0.010448706336319447, 0.00031168016721494496, -0.003528387751430273, -0.018331313505768776, 0.010710987262427807, -0.008485144004225731, -0.017849283292889595, -0.0050435918383300304, 0.0020769815891981125, -0.005366126541048288, -0.01209327857941389, -0.0102289579808712, -0.01677180454134941, 0.005323594901710749, 0.014134816825389862, -0.011292259208858013, -0.015552552416920662, 0.028255457058548927, 0.014085196889936924, 0.014134816825389862, 0.0088112223893404, 0.020528802648186684, 0.00042775721522048116, -0.021989068016409874, 0.0016826741630211473, 0.02585948444902897, -0.019522210583090782, 0.012936831451952457, 0.016034582629799843, 0.02649746648967266, -0.007825897075235844, -0.03481956943869591, -0.009165656752884388, -0.022641226649284363, 0.024824539199471474, 0.0007008927059359848, 0.00014321338676381856, -0.006847659591585398, -0.0036719334311783314, 0.004423332866281271, -0.00027823049458675086, -0.004607638344168663, -0.013085693120956421, 0.01718294806778431, -0.014148994348943233, -0.021577926352620125, -0.028071152046322823, -0.0066172778606414795, 0.0002527555625420064, -0.015212295576930046, -0.006323097739368677, 0.014482161961495876, 0.01373785175383091, 0.011667958460748196, -0.003778263693675399, -0.0002791165607050061, -0.005745370872318745, -0.014333300292491913, -0.005536254961043596, 0.017863459885120392, 0.0011253270786255598, -0.010696809738874435, -0.010505415499210358, 0.012227963656187057, 0.01209327857941389, 0.008846665732562542, 0.0037534532602876425, -0.010895293205976486, -0.0021496405825018883, -0.003032180480659008, 0.03002762608230114, 0.013645698316395283, 0.033203352242708206, 0.007776276208460331, 0.009995031170547009, 0.018444731831550598, 0.01553837489336729, -0.0022772366646677256, 0.00491245137527585, 0.0009605154045857489, 0.006826393771916628, -0.012001126073300838, -0.016743449494242668, -0.021180959418416023, -0.007024876773357391, -0.01073934230953455, 0.005507900379598141, 0.010186425410211086, -0.013021895661950111, -0.019763225689530373, -0.0003061421448364854, -0.012858855538070202, 0.034507669508457184, -0.00035664893221110106, -0.0016614081105217338, 0.019394613802433014, -0.008180330507457256, 0.003693199483677745, 0.026880254969000816, 0.0043524461798369884, -0.017438139766454697, 0.02078399434685707, -0.026979496702551842, 0.023888833820819855, -0.0017500165849924088, -0.016190532594919205, -0.02082652598619461, 0.0021460962016135454, 0.011880618520081043, 0.02468276582658291, 0.02869495563209057, -0.023676173761487007, -0.005252707749605179, 0.024370864033699036, 0.002590910531580448, -0.003877504961565137, 0.014801152981817722, 0.013674053363502026, -0.016998641192913055, -0.010122627019882202, -0.010108450427651405, -0.0029648381751030684, 0.011816821061074734, 0.017721686512231827, -0.002160273492336273, 0.0044056111946702, 0.0024934413377195597, 0.004061810672283173, 0.003771174931898713, 0.0017269783420488238, -0.0009950726525858045, 0.0014079880202189088, -0.006397529039531946, -0.00019659995450638235, -0.01379456091672182, 0.007014243397861719, -0.018458908423781395, 0.005553976632654667, -0.023676173761487007, 0.005979297216981649, -0.012554042972624302, 0.02568935789167881, 0.00034889570088125765, -0.0012041885638609529, -0.033203352242708206, -0.004799032583832741, -0.01977740228176117, -0.0008488688035868108, 0.0025926828384399414, 0.021294379606842995, 0.010179337114095688, 0.006936267949640751, 0.011136308312416077, 0.01624724268913269, 0.013730762526392937, -0.012490244582295418, 0.006872470024973154, 0.0049904268234968185, -0.010810228995978832, 0.0023268575314432383, 0.0025235682260245085, 0.009371227584779263, -0.00436662370339036, -0.010328198783099651, -0.02329338528215885, -0.0044056111946702, 0.004448143299669027, -0.02354857698082924, 0.00978945940732956, -0.00725171435624361, -0.023080725222826004, -0.00427447073161602, 0.011434032581746578, 0.008697804063558578, 0.028142038732767105, -0.00847096648067236, -0.009222365915775299, -0.017480671405792236, 0.006613733246922493, -0.031388651579618454, -0.0065322136506438255, 0.004373712465167046, -0.018444731831550598, 0.01729636639356613, -0.013929245993494987, 0.0026192653458565474, 0.009583888575434685, 0.003817251417785883, 0.0085134981200099, 0.0077620986849069595, -0.003820795565843582, -0.0006703227991238236, -0.02439921908080578, 0.011200105771422386, -0.02507973089814186, 0.01670091785490513, 0.006053728051483631, 0.007414753548800945, 0.023477690294384956, -0.0018200172344222665, 0.01282341219484806, -0.00774083286523819, 0.0076203253120183945, 0.00852767564356327, 0.00854894146323204, -0.003274967661127448, -0.008187418803572655, 0.009867435321211815, 0.0007739946595393121, 0.003721554297953844, 0.012731259688735008, -0.03255119547247887, 0.009888701140880585, 0.008917552419006824, 0.010285667143762112, 0.0038845937233418226, -0.001706598442979157, -0.0043418132700026035, -0.006113981828093529, 0.004355990793555975, 0.022230083122849464, -0.018444731831550598, 0.0016924210358411074, 0.0019405246712267399, -0.012865944765508175, 0.01450342871248722, -0.03751326724886894, -0.00736513314768672, -0.004703335464000702, -0.003948391880840063, 0.0015674831811338663, 0.0007549438741989434, -0.009775282815098763, 0.014985457994043827, -0.023860478773713112, 0.0015869770431891084, -0.002597999293357134, -0.013865447603166103, -0.007241080980747938, 0.003450412303209305, 0.006181324366480112, -0.014673556201159954, -0.002222299575805664, -0.0011864668922498822, 0.0013264681911095977, 0.007180827669799328, -0.019267017021775246, 0.003941303119063377, -0.002007867209613323, 0.0003827884211204946, -0.009598065167665482, 0.0022701481357216835, -0.0063904402777552605, 0.008903375826776028, 0.002741544973105192, -0.007301334757357836, 0.007499817758798599, 0.01505634468048811, -0.014390009455382824, -0.00159849610645324, 0.020897412672638893, -0.014439630322158337, -0.005071946885436773, -0.016686739400029182, -0.00023636299010831863, -0.0012998856836929917, -0.012072012759745121, -0.022343503311276436, -0.01620471104979515, -0.004802577197551727, 0.007705389522016048, -0.006826393771916628, -0.0019547019619494677, 0.015113054774701595, 0.0017801434732973576, 0.01775004155933857, 0.019068535417318344, 0.003627629252150655, -0.0015169763937592506, 0.032069165259599686, -0.0040724435821175575, 0.01580774411559105, -0.015779389068484306, -0.017650799825787544, 0.024611879140138626, 0.02702202834188938, 0.00282129249535501, 0.0073084235191345215, 0.022031601518392563, -0.01406393013894558, 0.009775282815098763, 0.0011022889520972967, 0.0024739473592489958, 0.020472092553973198, 0.002794709987938404, -0.008272483013570309, 0.008499320596456528, -0.0025891384575515985, 0.004093709401786327, -0.015864454209804535, 0.0060360063798725605, -0.004511941224336624, -0.024144025519490242, -0.00691854627802968, -0.009739838540554047, 0.008166152983903885, -0.007641591131687164, 0.0011200106237083673, 0.008180330507457256, -0.002064576605334878, 0.02561846934258938, -0.00949882436543703, -0.011781377717852592, -0.007336778100579977, 0.00800311379134655, -0.01709788292646408, 0.0025271126069128513, -0.0039200372993946075, -0.007953492924571037, 0.0048380205407738686, -0.004635993391275406, 0.02224426157772541, -0.006975255906581879, 0.00535903824493289, -0.006234489381313324, -0.027574945241212845, 0.01079605147242546, 0.022400211542844772, -0.02102500945329666, -0.00562131917104125, 0.0023924277629703283, 0.007226903922855854, -0.010207691229879856, 0.0020769815891981125, 0.0031314219813793898, 0.011901884339749813, 0.002153184963390231, -0.007248169742524624, -0.0026352147106081247, -0.0010287439217790961, 0.0007872859132476151, 0.048855144530534744, 0.041879888623952866, -0.0008125393069349229, 0.0005502583808265626, 0.008619828149676323, -0.020897412672638893, 0.0026777468156069517, 0.015949517488479614, -0.019068535417318344, 0.000725260004401207, -0.0027468614280223846, 0.01929537206888199, 0.00368256657384336, 0.008591474033892155, -0.009881612844765186, 0.015410779044032097, 0.006798039190471172, 0.013078604824841022, -0.00950591266155243, 0.006340819410979748, -0.01714041456580162, 0.005029414780437946, -0.0214786846190691, 0.0014257096918299794, -0.012624929659068584, -0.011249726638197899, -0.0023888833820819855, -0.010328198783099651, -0.021776407957077026, -0.006457782816141844, 0.029885852709412575, -0.004919540137052536, -0.01698446460068226, 0.0176224447786808, 0.015027990564703941, 0.004111431539058685, -0.004033456090837717, -0.010420352220535278, 0.02678101323544979, -0.009023882448673248, -0.028425585478544235, -0.024540992453694344, 0.0016950793797150254, -0.00149925472214818, -0.01298645231872797, -0.002702557248994708, 0.0010792507091537118, 0.01473026629537344, -0.01932372711598873, -0.00676613999530673, 0.009732750244438648, 0.01624724268913269, 0.0017048262525349855, 0.01759408973157406, 0.0033121833112090826, 2.982227670145221e-05, 0.00873324740678072, 0.0017491304315626621, -0.013376329094171524, 0.021180959418416023, -0.015836099162697792, -0.001631281222216785, 0.0063798073679208755, 0.016459902748465538, 0.0023233131505548954, 0.011377322487533092, 0.005965119693428278, 0.011100864969193935, 0.009924144484102726, 0.0006317781517282128, 0.007556527387350798, -0.007528172340244055, 0.002541289897635579, 0.018501440063118935, -0.004969161003828049, -0.004908907227218151, -0.018940938636660576, -0.019763225689530373, -0.01864321529865265, -0.004511941224336624, -0.005309417378157377, 0.013865447603166103, -0.0002873128396458924, -0.011908973567187786, -0.019196130335330963, -0.0005480431718751788, -0.0012316572247073054, 0.013241644017398357, -0.009144390001893044, 0.015127231366932392, 0.005447646602988243, -0.012043658643960953, -0.0059934742748737335, -0.005848156753927469, 0.027206333354115486, 0.0230949018150568, -0.030764847993850708, 0.020273609086871147, 0.0035071216989308596, -0.006798039190471172, -0.021677166223526, 0.016020404174923897, 0.00043839021236635745, -0.008768690750002861, -0.011653780937194824, -0.02739063836634159, -0.014163171872496605, -0.01604875922203064, 0.016502434387803078, 0.008435523137450218, -0.005717016290873289, 0.006868925876915455, 0.002660025143995881, 0.017211301252245903, 0.009406670928001404, 0.010746430605649948, -0.0010384907945990562, 0.004809665959328413, -0.011781377717852592, -0.02135108783841133, -0.014191526919603348, -4.693477967521176e-05, 0.03266461193561554, -0.0028585081454366446, -0.022485276684165, -0.01102288905531168, -0.0008023493574000895, 0.005522077437490225, 0.005631952080875635, 0.0019458412425592542, -0.006975255906581879, -0.018742455169558525, -0.0017801434732973576, 0.012901388108730316, -0.021705521270632744, -0.007733744103461504, -0.009973765350878239, -0.02313743345439434, 0.017395608127117157, 0.01525482814759016, -0.028921792283654213, 0.036038823425769806, 0.018458908423781395, -0.0025749611668288708, 0.01879916526377201, -0.0026121765840798616, -0.006893736310303211, 0.007755009923130274, 0.007053231354802847, 0.007138295564800501, -0.0018536883872002363, -0.0020929311867803335, -0.014886217191815376, 0.021833118051290512, -0.0025306567549705505, 0.027787605300545692, -0.01329126488417387, 0.012412269599735737, 0.0033068666234612465, 0.019621452316641808, 0.006316008977591991, -3.73539915017318e-05, -0.000983553589321673, 0.011370234191417694, 0.015566729940474033, -0.008336281403899193, -0.022173374891281128, 0.019267017021775246, -0.024767829105257988, 0.006362085696309805, -0.0027539501897990704, -0.019238663837313652, -0.006518036127090454, 0.004529662895947695, -0.006627910770475864, 0.02159210294485092, -0.006975255906581879, 0.008917552419006824, -0.021039186045527458, -0.020401205867528915, -0.020032593980431557, 0.015892809256911278, 0.007329689804464579, -0.0013805193593725562, -0.01912524364888668, 0.021875649690628052, 0.002482808195054531, 0.014078107662498951, 0.01783510483801365, -0.010321110486984253, 0.011845175176858902, -0.00032962337718345225, -0.007521084044128656, -0.012029481120407581, -0.004100798163563013, 0.02062804251909256, 0.002151412656530738, -0.009116035886108875, -0.014843684621155262, 0.012632017955183983, 0.00948464684188366, -0.0016038126777857542, -0.029148630797863007, 0.008279572241008282], "59c4c9ed-f963-4760-93b6-dd7c3a97bb54": [-0.004230555146932602, 0.0014460267266258597, -0.0011568213813006878, 0.004905367735773325, -0.008802223950624466, -0.014208138920366764, 0.021401194855570793, 0.03268761932849884, -0.038086120039224625, -0.01926552504301071, 0.024055952206254005, 0.013414678163826466, 0.01966596394777298, -0.038175106048583984, -0.009781072847545147, 0.002962500788271427, 0.024115275591611862, 0.0163883026689291, 0.0027937977574765682, -0.042327798902988434, 0.04401853680610657, -0.032272350043058395, -0.05140439420938492, 0.04728136584162712, 0.019176539033651352, -0.008920872583985329, -0.018761269748210907, 0.026339933276176453, -0.021430857479572296, -0.0027363274712115526, 0.015528102405369282, -0.003242436796426773, 0.013310860842466354, -0.021312208846211433, -0.02456020750105381, -0.027734050527215004, 0.0026158252730965614, -0.009106260724365711, -0.0033406924922019243, -0.009276817552745342, -0.025717029348015785, 0.015839554369449615, 0.013340523466467857, 0.0060288188979029655, -0.053510405123233795, 0.01757478527724743, 0.012480323202908039, -0.02089693956077099, -0.005754444748163223, 0.015305636450648308, 0.04125996306538582, -0.0077047268860042095, -0.021697815507650375, -0.007560124155133963, 0.01455666869878769, -0.020392684265971184, 0.009499283507466316, 0.03802679479122162, -0.019784610718488693, -0.05573505908250809, 0.009536360390484333, -0.013600066304206848, -0.026592060923576355, -0.011761017143726349, -0.029513776302337646, -0.010544871911406517, 0.01368163712322712, -0.04440414160490036, -0.04194219037890434, -0.006106682121753693, -0.005606134422123432, 0.04784494638442993, -0.05920552462339401, -0.0016221452970057726, 0.017678603529930115, 0.0022042638156563044, 0.008824470452964306, 0.016729416325688362, 0.013948596082627773, -0.014111737720668316, 0.009566023014485836, -0.018108703196048737, 0.017322657629847527, -0.018346000462770462, 0.09818150848150253, -0.01953248307108879, 0.014408358372747898, -0.04295070096850395, 0.012205948121845722, 0.00506850890815258, -0.015394622460007668, 0.009884890168905258, -0.014882951974868774, 0.00011192802776349708, -0.00996646098792553, 0.01079699955880642, 0.025405576452612877, 0.011597875505685806, 0.023180920630693436, 0.002241341397166252, 0.0152314817532897, 0.021074911579489708, -0.012799190357327461, 0.0025861631147563457, -0.033221535384655, 0.006077019963413477, 0.003296199254691601, 0.013429509475827217, -0.031916406005620956, 0.04301002621650696, 0.00983298197388649, -0.037433553487062454, 0.018123535439372063, -0.00169908138923347, -0.032628294080495834, -0.03841240331530571, -0.006510828156024218, -0.02036302164196968, -0.00012351477926131338, -0.044463466852903366, 0.054340943694114685, -0.00029476697091013193, 0.012450660578906536, 0.01831633783876896, -0.006792617961764336, 0.0017574785742908716, 0.0014450997114181519, -0.0037763542495667934, 0.00457908445969224, 0.008683575317263603, 0.00040043817716650665, 0.014957106672227383, 0.023922473192214966, 0.04668812453746796, -0.015075755305588245, -0.0018724191468209028, -0.006180837284773588, 0.03894631937146187, -0.050069600343704224, 0.04562028869986534, -0.05270952731370926, -0.0637141615152359, -0.03215370327234268, 0.025049632415175438, 0.002072638366371393, 0.002159770578145981, -0.028208643198013306, 0.030996879562735558, -0.010003538802266121, 0.04007347673177719, -0.04689575731754303, -0.02312159538269043, 0.012450660578906536, 0.0006822280120104551, 0.019962584599852562, -0.0200664009898901, 0.005361421965062618, 0.011175191029906273, -0.0008356365724466741, 0.01282885205000639, 0.008416617289185524, -0.04096334055066109, 0.0054652392864227295, 0.026992497965693474, 0.03722591698169708, 0.02085244655609131, 0.00677407905459404, 0.027630234137177467, -0.009417712688446045, 0.02617679163813591, 0.018197689205408096, -0.029543437063694, 0.01634380966424942, -0.03571315109729767, 0.005009184591472149, 0.010960141196846962, 0.04286171495914459, 0.0005343810189515352, 0.02254318632185459, -0.0077047268860042095, -0.01282885205000639, 0.03612842038273811, -0.01874643936753273, 0.0019947753753513098, 0.0051723262295126915, 0.008335046470165253, -0.011167775839567184, 0.016684923321008682, 0.01634380966424942, 0.007189348340034485, -0.00460133096203208, -0.025820845738053322, 0.005235358141362667, -0.0037059069145470858, 0.010122186504304409, -0.005435577128082514, 0.013985673896968365, 0.012524816207587719, 0.03141215071082115, -0.0037763542495667934, -0.013244121335446835, -0.05926484987139702, -0.03618774563074112, 0.05905721336603165, -0.02325507625937462, 0.02141602709889412, -0.05187898874282837, -0.024678856134414673, 0.007526754401624203, -0.07041779160499573, 0.03654368966817856, -0.04146759584546089, -0.002558354986831546, -0.010366898961365223, 0.005064801312983036, -0.006755540147423744, -0.040399760007858276, 0.027036990970373154, 0.01564675010740757, -0.02678486332297325, -0.03425971046090126, 0.019087553024291992, -0.02141602709889412, -0.012139208614826202, -0.05345107987523079, -0.006355102173984051, -0.0004908148548565805, 0.00806067232042551, -0.0012652733130380511, 0.0018928118515759706, 0.0100480318069458, 0.004323249217122793, -0.0009056205744855106, -0.010937894694507122, -0.028594251722097397, 0.04772629588842392, 0.0447600893676281, 0.015750568360090256, -0.0012217072071507573, -0.022869467735290527, 0.007830791175365448, -0.02220207080245018, -0.016328979283571243, 0.005884216167032719, 0.028178982436656952, 0.015676412731409073, 0.00021447078324854374, 0.03583180159330368, -0.013266367837786674, -0.046035557985305786, 0.006940928287804127, 0.01928035542368889, -0.016284486278891563, -0.039658211171627045, -0.01865745149552822, 0.016684923321008682, 0.025197941809892654, -0.02094143256545067, 0.00030334119219332933, -0.01101204939186573, -0.011501474305987358, -0.008520434610545635, 0.012369089759886265, 0.03072992153465748, 0.05573505908250809, -0.03903530538082123, 0.025242434814572334, 0.007786297705024481, -0.00016186693392228335, 0.02905401401221752, -0.02788236178457737, 0.0034408019855618477, 0.02137153223156929, -0.0018826154991984367, 0.010552287101745605, 0.0017352320719510317, -0.0024990306701511145, 0.012072469107806683, 0.02242453768849373, -0.022869467735290527, -0.024308079853653908, -0.018583297729492188, -0.001405241317115724, 0.01753029227256775, -0.004857166670262814, 0.021697815507650375, -0.02826796844601631, 0.012391336262226105, -0.03075958415865898, 0.014845874160528183, 0.013333107344806194, 0.017470968887209892, 0.04016246646642685, 0.031174853444099426, 0.025820845738053322, 0.005539394449442625, -0.01787140779197216, -0.00460133096203208, -0.02718530222773552, -0.01625482365489006, -0.003107103519141674, -0.006822279654443264, -0.010240835137665272, -0.01939900405704975, 0.04467110335826874, -0.024441558867692947, 0.0637141615152359, 0.012443245388567448, -0.0029346926603466272, 0.021490180864930153, 0.0374038890004158, 0.016462458297610283, -0.008164489641785622, 0.00920266192406416, -0.0024804919958114624, 0.010277912952005863, 0.013169966638088226, -0.015335298143327236, -0.029335802420973778, -0.021341871470212936, -0.002563916612416506, 0.015676412731409073, -0.026606891304254532, -0.012027976103127003, 0.032450322061777115, -0.03618774563074112, 0.032361336052417755, -0.034585993736982346, -0.002558354986831546, -0.0498323030769825, -0.030878230929374695, -0.03396308794617653, -0.012858514674007893, -0.012354259379208088, -0.032835930585861206, -0.013392431661486626, -0.030967218801379204, -0.04078536853194237, -0.01625482365489006, -0.02590983174741268, -0.007289457600563765, -0.015335298143327236, 0.021445687860250473, -0.008809640072286129, 0.01377062313258648, 0.019250694662332535, 0.01721884123980999, 0.011523720808327198, 0.010633857920765877, 0.02018504962325096, 0.0008690064423717558, -0.0274522602558136, 0.022691495716571808, -0.013674221932888031, 0.006792617961764336, -0.028505265712738037, -0.025865338742733, -0.01665526069700718, -0.012205948121845722, -0.007278334349393845, 0.017115022987127304, -0.023966966196894646, -0.0293209720402956, 0.013778039254248142, 0.018212521448731422, 0.02076346054673195, -0.014082075096666813, -0.014119152911007404, 0.012102130800485611, 0.02211308479309082, -0.05181966349482536, -0.016225161030888557, 0.032005392014980316, -0.02015538699924946, -0.0253907460719347, -0.0498323030769825, 0.017559954896569252, 0.011234515346586704, 0.005732198245823383, 0.024708518758416176, 0.03562416508793831, 0.0009510406525805593, 0.014030166901648045, -0.024886490777134895, 0.00983298197388649, 0.003349961945787072, -0.0011790678836405277, 0.00734136626124382, 0.018286677077412605, 0.014630824327468872, -0.04793393239378929, -0.004694025032222271, -0.002999578369781375, -0.013778039254248142, -0.00017727731028571725, 0.0360097736120224, -0.014957106672227383, -0.014089491218328476, -0.021742308512330055, -0.010478132404386997, 0.004200892988592386, -0.0015146202640607953, -0.018954074010252953, 0.016091682016849518, 0.023240244016051292, -0.029484113678336143, -0.013340523466467857, -0.006889019627124071, 0.0030051402281969786, 0.016551444306969643, 0.009299064055085182, -0.016492119058966637, 0.03488261252641678, 0.00451234495267272, 0.017381982877850533, 0.008097749203443527, 0.028876040130853653, 0.023447878658771515, -0.03630639240145683, -0.040755707770586014, 0.08002831041812897, 0.030314652249217033, -0.0051834494806826115, 0.010633857920765877, -0.048794131726026535, 0.022928792983293533, 0.021030418574810028, 0.017292996868491173, -0.0024563914630562067, -0.04384056478738785, -0.04653981328010559, 0.0007271845825016499, 0.017204010859131813, -0.02386314794421196, 0.00028990054852329195, -0.03194606676697731, 0.01625482365489006, -0.014942276291549206, -0.0001680079149082303, -0.04250577092170715, -0.02810482680797577, 0.036247070878744125, -0.004938737489283085, -0.021860957145690918, -0.0071300240233540535, -0.004705148283392191, -0.02731878124177456, 0.0145492535084486, 0.028089996427297592, 0.0058582620695233345, 0.004734810441732407, 0.03864969685673714, -0.01773792691528797, -0.013881856575608253, -0.009321310557425022, -0.012814021669328213, -0.023581357672810555, -0.010389145463705063, -0.007853037677705288, -0.05745546147227287, -0.021208392456173897, -0.021579166874289513, 0.026473412290215492, 0.0027845283038914204, -0.0031645738054066896, -0.048497509211301804, 0.01086373906582594, 0.011308670043945312, 0.01005544699728489, -0.0024619530886411667, 0.020600318908691406, -0.0001420535845682025, -0.007608325220644474, 0.02040751464664936, 0.004097075667232275, -0.01437869668006897, -0.03075958415865898, 0.0047570569440722466, -0.0200664009898901, -0.0015971179818734527, -0.023700006306171417, -0.01083407737314701, -0.017723096534609795, 0.007178225088864565, -0.032924916595220566, -0.026325101032853127, 0.009217493236064911, -0.034497007727622986, 0.0007735316175967455, 0.0045753768645226955, 0.06211240962147713, -0.009425127878785133, 0.03334018588066101, 0.0293209720402956, -0.009506698697805405, -0.006733293645083904, 0.013043902814388275, -0.03930226340889931, -0.014334202744066715, -0.029217155650258064, -0.0045865001156926155, -0.025064462795853615, 0.010604196228086948, -0.0004389061941765249, 0.0024916152469813824, 0.012814021669328213, -0.027111146599054337, -0.030967218801379204, 0.005268727894872427, -0.0221575777977705, -0.027941685169935226, 0.006577567663043737, -0.025642873719334602, 0.015617088414728642, 0.00681857205927372, 0.025583550333976746, -0.012183701619505882, -0.00041434227023273706, -0.0017630401998758316, 0.004716271534562111, -0.0018631498096510768, -0.00987747497856617, -0.026384426280856133, -0.003003286197781563, 0.00983298197388649, -0.013889271765947342, -0.017470968887209892, -0.042980361729860306, 0.008861548267304897, -0.012843683362007141, 0.0021523551549762487, 0.01665526069700718, -0.01280660554766655, 0.0049906461499631405, 0.04698474332690239, -0.028001008555293083, -0.05042554810643196, 0.018212521448731422, 0.03381477668881416, 0.02552422508597374, -0.0378488227725029, 0.01923586241900921, 0.006036234553903341, -0.010908232070505619, -0.030210833996534348, 0.010337237268686295, -2.3579041226184927e-05, 0.008208982646465302, 0.001543355407193303, 0.03399275243282318, -0.03006252460181713, 0.008876379579305649, -0.04535333067178726, 0.019117213785648346, 0.011019465513527393, -0.04250577092170715, 0.007867868058383465, -0.02806033380329609, -0.03072992153465748, -0.0070076677948236465, -0.006629476323723793, -0.0016490266425535083, 0.018034547567367554, 0.002949523739516735, 0.017026036977767944, -0.004671778529882431, -0.06122254580259323, 0.011827756650745869, -0.013051318004727364, 0.02368517592549324, 0.015009015798568726, 0.004197185393422842, 0.049150075763463974, 0.013229290023446083, 0.02097109518945217, 0.02831246145069599, -0.016833234578371048, 0.003793039359152317, -0.045205019414424896, -0.02806033380329609, 0.003837532363831997, -0.04185320436954498, 0.013815117068588734, -0.004263924900442362, -0.003507541725412011, -0.003963596187531948, -0.025539055466651917, -0.04312867298722267, 0.013792870566248894, -0.0015850677154958248, 0.020748630166053772, 0.016966713592410088, -0.00041920869261957705, -0.007170809432864189, -0.014341618865728378, -0.0023395970929414034, -0.007830791175365448, -0.0028067748062312603, -0.0029198615811765194, 0.0015934101538732648, -0.014044998213648796, 0.004393696319311857, 0.0161658376455307, -0.04532366618514061, -0.03912429139018059, 0.014015335589647293, -0.010678350925445557, 0.022261396050453186, -0.011390240862965584, -0.0012967893853783607, 0.004519760608673096, 0.02665138430893421, 0.030878230929374695, -0.015090586617588997, 0.05113743618130684, 0.0013765061739832163, 0.01442318968474865, 0.042327798902988434, -0.00112808623816818, -0.0221575777977705, 0.0016267800237983465, -0.006926096975803375, 0.03666234016418457, -0.004263924900442362, 0.04072604328393936, 0.0029847475234419107, 0.006559028755873442, 0.01297716237604618, -0.01282885205000639, 0.015112833119928837, -0.010211173444986343, -0.016729416325688362, 0.009951629675924778, -0.004827504511922598, 0.01753029227256775, -0.004630993120372295, -0.009996122680604458, 0.030492624267935753, -0.024723349139094353, -0.02097109518945217, -0.027392936870455742, 0.00923973973840475, 0.0035650120116770267, 0.009254571050405502, -0.001959551591426134, 0.018420156091451645, 0.0019447205122560263, 0.017456138506531715, 0.025806015357375145, 0.008031009696424007, -0.033280860632658005, 0.0073339506052434444, -0.003401870606467128, 0.021964775398373604, 0.003566865809261799, -0.02736327424645424, -0.016462458297610283, -0.004260217305272818, 0.020867276936769485, -0.010722843930125237, 0.028075164183974266, -0.004386281128972769, 0.008231229148805141, 0.032094378024339676, -0.01932484842836857, 0.028223475441336632, 0.038353078067302704, 0.007092946209013462, 0.015075755305588245, 0.020985925570130348, 0.022602509707212448, -0.04004381597042084, 0.021312208846211433, -0.0006205864483490586, 0.004145276732742786, 0.011464396491646767, 0.0013375746784731746, -0.021119404584169388, 0.00018677844491321594, 0.016269654035568237, 0.017812082543969154, -0.02512378618121147, -0.05905721336603165, -0.01179809495806694, 0.02617679163813591, -0.005213111639022827, 0.0008407347486354411, -0.0036280439235270023, -0.00019546851399354637, -0.009395466186106205, -0.01953248307108879, 0.00015213406004477292, -0.00010874167492147535, 0.010507794097065926, 0.0010780314914882183, 0.012124377302825451, 0.007167101372033358, -0.016136175021529198, 0.013385016471147537, -0.005031431559473276, -0.03666234016418457, -0.0018520265584811568, 0.0036614136770367622, -0.013889271765947342, 0.008898626081645489, -0.006907558534294367, -0.019295187667012215, -0.020214712247252464, -0.0062401616014540195, 0.011916743591427803, 0.02150501310825348, 0.01926552504301071, -0.005609842017292976, 0.02076346054673195, 0.021623661741614342, 0.019769780337810516, -0.008297968655824661, -0.04072604328393936, -0.015854384750127792, 0.02525726705789566, -0.0012893738457933068, 0.035238560289144516, -0.014000504277646542, -0.02386314794421196, -0.02220207080245018, 0.01011477131396532, 0.011857419274747372, 0.01164978463202715, 0.0038709023501724005, 0.007441475987434387, 0.02853492647409439, -0.019413836300373077, -0.008186736144125462, 0.004130445420742035, 0.015809891745448112, -0.005302098114043474, -0.029751071706414223, -0.015453946776688099, 0.050277236849069595, -0.018212521448731422, -0.003127496223896742, -0.0001991762692341581, 0.021356701850891113, -0.03888699412345886, -0.04007347673177719, 0.03396308794617653, 0.009128507226705551, -0.010441054590046406, 0.004957276396453381, 0.018939241766929626, 0.021445687860250473, -0.01551327109336853, 0.03977685794234276, 0.023566527292132378, 0.029825227335095406, -0.00768248038366437, 0.024945814162492752, 0.031263839453458786, 0.017055699601769447, 0.010300159454345703, 0.01586921699345112, -0.0037281534168869257, -0.0027900899294763803, -0.01919136941432953, 0.02015538699924946, 0.008579757995903492, -0.021475350484251976, -0.003540911478921771, 0.016670092940330505, 0.010522625409066677, 0.018687114119529724, -0.0001195752847706899, 0.02889087237417698, 0.03479362651705742, -0.004842335358262062, 0.005042554810643196, 0.0011809217976406217, -0.026117466390132904, -0.029869720339775085, -0.02530176006257534, 0.004301002714782953, -0.03793780878186226, 0.020600318908691406, -0.0002546768228057772, 0.029958706349134445, -0.029039181768894196, 0.02350720390677452, 0.01077475305646658, -0.03945057466626167, -0.011382825672626495, 0.014245216734707355, 0.02696283720433712, 0.0029903091490268707, -0.006077019963413477, 0.011990898288786411, 0.009536360390484333, 5.3791496611665934e-05, -0.04828987643122673, 0.014541837386786938, 0.021356701850891113, 0.021074911579489708, -0.0012040953151881695, 0.02674037031829357, 0.027289118617773056, 0.01005544699728489, -0.007467430084943771, 0.016151005402207375, 0.011516304686665535, -0.0015025701140984893, -0.020822783932089806, 0.007749219890683889, -0.03064093552529812, -0.008112580515444279, 0.02175714075565338, -0.02229105867445469, 0.014875535853207111, -0.00016777617565821856, 0.018553635105490685, 0.004111906513571739, 0.013362769968807697, -0.0005436504143290222, 0.011375410482287407, 0.003948765341192484, 0.02613229863345623, -0.02246903069317341, -0.022320719435811043, 0.017426475882530212, -0.00587680097669363, 0.025717029348015785, -0.00041411054553464055, 0.010344652459025383, 6.222086085472256e-05, -0.02478267252445221, 0.02783786877989769, 0.01182034146040678, 0.013718714937567711, 0.0034815873950719833, 0.00537625327706337, -0.03764118626713753, 0.005379960872232914, -0.02097109518945217, -0.025553887709975243, -0.02997353859245777, -0.001536866882815957, -0.0023340354673564434, -0.009973876178264618, 0.002799359383061528, -0.011553382501006126, 0.06774820387363434, 0.047311026602983475, 0.0047570569440722466, -0.02918749302625656, 0.024812335148453712, 0.005498609039932489, -5.4168067435966805e-05, 0.02080795355141163, -0.00592129398137331, 0.01953248307108879, -0.005665458273142576, -0.011456980369985104, 0.004471559543162584, -0.007170809432864189, -0.022038931027054787, -0.02976590394973755, -0.0016814694972708821, -0.018687114119529724, -0.024174600839614868, -0.010003538802266121, -0.007749219890683889, -0.027155639603734016, -0.004015504848212004, 0.0012402459979057312, -0.002415606053546071, 0.006492289248853922, -0.0036280439235270023, -0.001409876043908298, -0.004419650882482529, 0.008928287774324417, -0.013755792751908302, -0.03755220025777817, -0.009336141869425774, 0.02644374966621399, 0.00031585487886331975, 0.02657722868025303, -0.050751831382513046, 0.008468525484204292, 0.0434252955019474, -0.02994387596845627, -0.012272688560187817, -0.0028382909949868917, 0.01265088003128767, -0.007845621556043625, -0.022795313969254494, -0.024500884115695953, 0.00046347008901648223, -0.03885733336210251, -0.033488497138023376, -0.023848317563533783, 0.01348141860216856, -0.03538686782121658, 0.011115866713225842, -0.02372966893017292, -0.03953956067562103, 0.007919777184724808, 0.0006349540199153125, -0.031263839453458786, 0.014734641648828983, 0.00803842581808567, 0.015795061364769936, 0.04312867298722267, 0.02556871809065342, 0.003674390958622098, -0.030789244920015335, -0.012569309212267399, 0.05413330718874931, 0.020466839894652367, 0.0032887838315218687, -0.0007202325505204499, 0.0016397571889683604, 0.011130698025226593, 0.004634701181203127, -0.022750820964574814, -0.0039784274995327, 0.0020170218776911497, -0.004846043419092894, -0.005064801312983036, -0.0015600404003635049, 0.006510828156024218, 0.019295187667012215, 0.02889087237417698, -0.013207043521106243, 0.017233671620488167, 0.027912022545933723, 0.006277238950133324, 0.029825227335095406, -0.015498439781367779, -0.021831296384334564, -0.03064093552529812, -0.03838273882865906, 0.01295491587370634, -0.000836100080050528, -0.023388555273413658, 0.0013477710308507085, -0.006180837284773588, 0.004649532027542591, -0.033933427184820175, -0.0016230723122134805, 0.03722591698169708, 0.014059828594326973, -0.0004945225664414465, -0.004627285525202751, 0.009084014222025871, 0.017752759158611298, -0.012383921071887016, 0.004434481728821993, 0.022647002711892128, -0.007652818225324154, -0.008119995705783367, 0.036039434373378754, -0.004653239622712135, 0.009061767719686031, -0.006340270861983299, -0.012732450850307941, 0.005205695983022451, -0.0006256846245378256, 0.015839554369449615, -0.03959888592362404, 0.04959500953555107, -0.02862391248345375, -0.0030199710745364428, -0.020481670275330544, -0.046658460050821304, 0.02644374966621399, 0.016729416325688362, -0.008201566524803638, -0.00014263292541727424, -0.014052413403987885, -0.010337237268686295, -0.013451755978167057, 0.009640177711844444, 0.03334018588066101, -0.004653239622712135, -0.017322657629847527, -0.0020114602521061897, -0.007196763530373573, 0.03618774563074112, -0.032005392014980316, -0.005005476996302605, -0.02303260937333107, 0.018375663086771965, 0.015261143445968628, -0.033013902604579926, -0.0028067748062312603, -0.02303260937333107, -0.0055764722637832165, -0.0003652144514489919, -0.014497344382107258, -0.035297881811857224, -0.010530040599405766, 0.0015174010768532753, 0.00593241723254323, -0.022958455607295036, -0.03850138932466507, 0.03775983676314354, 0.006948343478143215, 0.019903259351849556, 0.020600318908691406, -0.003993258345872164, 0.010441054590046406, -0.001256003975868225, -0.002072638366371393, 0.00682969531044364, 0.008705822750926018, 0.003952472936362028, 0.004953568335622549, 0.02765989489853382, -0.007734389044344425, -0.04793393239378929, -0.014363865368068218, 0.0001897910115076229, -0.0009278671350330114, -0.0135036651045084, -0.001702789100818336, -0.03212403878569603, 0.006492289248853922, 0.005728490184992552, 0.002004044596105814, -0.007719557732343674, -0.009039521217346191, 0.013562988489866257, -0.021519843488931656, -0.013385016471147537, 0.018153196200728416, -0.0003969621320720762, 0.006236453540623188, -0.045205019414424896, -0.015765398740768433, -0.06840077042579651, 0.015261143445968628, -0.003956180531531572, 0.057663094252347946, -0.006180837284773588, -0.014808796346187592, 0.015038677491247654, 0.0079568549990654, 0.0018622229108586907, 0.012420998886227608, -0.018998567014932632, -0.020689304918050766, 0.004130445420742035, 0.011590460315346718, -0.015290805138647556, 0.01634380966424942, -0.010537455789744854, -0.0073117041029036045, -0.0003510786045808345, 0.027585741132497787, -4.2899951949948445e-05, -0.016106512397527695, 0.03360714390873909, 0.0010075840400531888, -0.008372124284505844, 0.039925169199705124, -0.03132316470146179, 0.02251352369785309, -0.0232995692640543, -0.021994436159729958, 0.012102130800485611, 0.0010474424343556166, 0.0016814694972708821, 0.017648940905928612, 0.010455884970724583, 0.010522625409066677, -0.011375410482287407, 0.007986516691744328, 0.011115866713225842, 0.009187831543385983, 0.01103429589420557, 0.024115275591611862, -0.012984578497707844, -0.005257604643702507, 0.01376320794224739, -0.017115022987127304, 0.012517400085926056, -0.004571669269353151, -0.036869972944259644, 4.959130092174746e-05, 0.01389668695628643, 0.018108703196048737, 0.017337489873170853, -0.022365212440490723, 0.010085109621286392, 0.0021764556877315044, 0.02071896754205227, -0.01578022912144661, -0.007771466393023729, -0.010552287101745605, 0.017189178615808487, 0.007793713361024857, -0.02197960577905178, -0.0019354511750862002, -0.011449565179646015, 0.02002190798521042, 0.00504626240581274, 0.02281014434993267, 0.005635796580463648, 0.021964775398373604, 0.02608780562877655, -0.019903259351849556, 0.029083674773573875, 0.025049632415175438, 0.006636891979724169, -0.009551191702485085, 0.014237801544368267, 0.011746185831725597, 0.014927444979548454, -0.014920029789209366, 0.0025138617493212223, 0.007163393776863813, 0.010188926942646503, -0.0011892642360180616, -0.017411645501852036, -0.011464396491646767, -0.009210078045725822, 0.0029346926603466272, 0.022172410041093826, 0.01352591160684824, 0.00928423274308443, 0.0008666890789754689, 0.025316590443253517, 0.027719220146536827, -0.02015538699924946, 0.04330664500594139, 0.001559113385155797, -0.015617088414728642, -0.024441558867692947, -0.018761269748210907, 0.016966713592410088, -0.017500631511211395, 0.004319541156291962, -0.015720905736088753, -0.007515631150454283, -0.015186987817287445, 0.008668744936585426, 0.027244625613093376, -0.0387980081140995, -0.01966596394777298, -0.039747197180986404, 0.016684923321008682, -0.035327546298503876, 0.016966713592410088, 0.004816381260752678, -0.01079699955880642, 0.015839554369449615, -0.008416617289185524, -0.024634363129734993, -0.015453946776688099, -0.020422346889972687, -0.000424538622610271, -0.006154882721602917, -0.049268726259469986, -0.017411645501852036, 0.002115277573466301, 0.004037751350551844, -0.010693182237446308, 0.016877727583050728, 0.017426475882530212, 0.005821184255182743, -0.001274542766623199, 0.018731607124209404, 0.006392179522663355, 0.012636048719286919, -0.00016012892592698336, 0.029780734330415726, 0.00041689135832712054, 0.03497159853577614, -0.02507929317653179, 0.0071077775210142136, -0.002862391294911504, 0.003134911647066474, -0.005120417568832636, 0.009365803562104702, -0.017752759158611298, 0.00015561009058728814, 0.0107302600517869, -0.012027976103127003, -0.021297378465533257, 0.00449009845033288, 0.020555825904011726, 0.025628043338656425, -0.014905198477208614, -0.02534625306725502, -0.03704794496297836, 1.0587395081529394e-05, -0.012962331995368004, 0.015016430988907814, -0.024055952206254005, -0.007537877652794123, 0.004738518502563238, 0.01966596394777298, -0.007137439679354429, 0.008468525484204292, -0.01551327109336853, -0.028920534998178482, -0.012383921071887016, -0.015216650441288948, 0.00734136626124382, 0.006492289248853922, -0.004675486125051975, -0.01791590079665184, -0.020600318908691406, 0.024960646405816078, -0.015350129455327988, -0.02447122149169445, -0.015142494812607765, 0.011968651786446571, 0.042238809168338776, -0.002951377537101507, -0.004371449816972017, -0.0047681801952421665, 0.04022178798913956, 0.012495153583586216, 0.007890114560723305, -0.0014358303742483258, 0.011664615012705326, -0.022394875064492226, -0.006173421628773212, 0.012725034728646278, 0.02604331262409687, -0.013496248982846737, -0.004938737489283085, 0.03194606676697731, 0.0036447288002818823, 0.016595937311649323, 0.009617931209504604, -0.012502569705247879, -0.02653273567557335, -0.018583297729492188, 0.0044048200361430645, 0.012665710411965847, -0.014920029789209366, -0.0023674052208662033, -0.0016480996273458004, -0.021653322502970695, 0.029217155650258064, -0.0045012217015028, 0.030878230929374695, -0.0044641438871622086, -0.009195246733725071, -0.004842335358262062, -0.018731607124209404, -0.010099940001964569, -0.006922389380633831, -0.016017526388168335, -0.011568213813006878, 0.0015211089048534632, -0.011634953320026398, 0.025138618424534798, 0.0009028397616930306, 0.012435829266905785, -0.0274522602558136, 0.01773792691528797, 0.009343557059764862, -0.021445687860250473, -0.04597623273730278, -0.01652178168296814, 0.014208138920366764, -0.007786297705024481, -0.00225617247633636, 0.008164489641785622, -0.01271761953830719, 0.014163645915687084, 0.01856846548616886, 0.016937050968408585, 0.007808544207364321, 0.02085244655609131, -0.014141399413347244, -0.031886741518974304, -0.0038857331965118647, 0.0044975136406719685, -0.0007322827586904168, 0.016966713592410088, 0.01258414052426815, -0.02303260937333107, -0.006696215830743313, 0.016062019392848015, 0.032717280089855194, 0.0039228107780218124, -0.016195498406887054, -0.023269906640052795, 0.0184794794768095, 0.0037170301657170057, 0.008223813027143478, -0.026517905294895172, -0.01836083084344864, 0.013132888823747635, -0.01168686244636774, 0.0029309848323464394, 0.017990054562687874, 0.0293209720402956, -0.015142494812607765, 0.019562145695090294, -0.024011459201574326, 0.011264177039265633, 0.022038931027054787, 0.010530040599405766, -0.0008296114974655211, 0.023714838549494743, -3.111043042736128e-05, -0.021267715841531754, -0.01013701781630516, 0.001409876043908298, -0.012450660578906536, 0.009061767719686031, -0.01190932746976614, -0.006547905504703522, 0.02272115834057331, -0.015075755305588245, -0.00648858118802309, -0.013377601280808449, 0.00043473494588397443, -0.007971685379743576, 0.013110642321407795, -0.008164489641785622, -0.025331420823931694, 0.007749219890683889, 0.011093620210886002, 0.006688800640404224, 0.009684670716524124, 0.05152304470539093, -0.0061622983776032925, 0.015617088414728642, -0.008053256198763847, -0.016195498406887054, 0.0051834494806826115, 0.023002948611974716, -0.00928423274308443, 0.014564084820449352, 0.015765398740768433, -0.03574281558394432, -0.000978848896920681, -0.014601161703467369, -0.00027437429525889456, 0.003249852219596505, 0.001009437837637961, 0.012413582764565945, 0.0017825060058385134, -0.01935451105237007, 0.00010509184357943013, -0.03304356336593628, -0.024530544877052307, -0.024930983781814575, -0.004627285525202751, -0.0010993510950356722, 0.010426223278045654, -0.0065441979095339775, -0.02918749302625656, 0.0166107676923275, 0.0015016430988907814, 0.01744130626320839, 0.005506024695932865, -0.051463719457387924, -9.391063213115558e-05, 0.00814965832978487, 0.0009352826746180654, 0.025850508362054825, -0.00895795039832592, -0.03921327739953995, 0.014742056839168072, -0.018034547567367554, 0.011182606220245361, -0.0038671945221722126, -0.010448469780385494, -0.008668744936585426, -3.678794018924236e-05, -0.005802645813673735, 0.005268727894872427, 0.014690148644149303, 0.028475603088736534, -0.017797252163290977, 0.010648689232766628, 0.021163899451494217, -0.0011030588066205382, 0.02180163376033306, 0.03630639240145683, 0.035119909793138504, -0.0033258614130318165, 0.032924916595220566, -0.0024489760398864746, 0.0001901386131066829, 0.0072746267542243, -0.0017324512591585517, 0.04238712042570114, -0.0007123535615392029, 0.019680794328451157, -0.017767589539289474, -0.024055952206254005, 0.011190022341907024, 0.007845621556043625, -0.00592129398137331, -0.019562145695090294, 0.008438863791525364, -0.004438189789652824, -0.003572427434846759, -0.021519843488931656, -0.017278164625167847, -0.01856846548616886, 0.0015739444643259048, 0.0058582620695233345, 0.0012078030267730355, -0.0274522602558136, -0.02521277405321598, 0.008498188108205795, -0.013399847783148289, 0.005446700379252434, 0.011738770641386509, 0.004664362873882055, 0.007055868860334158, 0.004141568671911955, -0.04698474332690239, -0.0073302430100739, -0.01560225710272789, 0.010307574644684792, -0.009595684707164764, -0.000844442518427968, 0.012376505881547928, -0.013778039254248142, 0.004679194185882807, -0.0017676749266684055, -0.015973033383488655, -0.0012105838395655155, -0.02368517592549324, 0.0031256424263119698, -0.013266367837786674, 0.03796746954321861, -0.04576859995722771, -0.005087047815322876, -0.001836268580518663, 0.017723096534609795, 0.020036738365888596, 0.010478132404386997, -0.004564253613352776, 0.0401921272277832, 0.0015887755434960127, 0.013540741987526417, -0.008134827017784119, -0.027912022545933723, -0.017841745167970657, 0.0006409791531041265, 0.0037578155752271414, -0.016833234578371048, -0.029617592692375183, 0.01849430985748768, -0.0015934101538732648, 0.02552422508597374, -0.02390764094889164, 0.02054099552333355, -0.023581357672810555, 0.0020633689127862453, -0.017189178615808487, -0.016403133049607277, -0.004008089192211628, 0.01470497902482748, -0.012272688560187817, 0.006870480719953775, 0.010893400758504868, 0.015246312133967876, 0.02438223548233509, 0.0304629635065794, 0.0075341700576245785, 0.013333107344806194, 0.04517535865306854, -0.03959888592362404, 0.004111906513571739, -0.025731859728693962, -0.01856846548616886, -0.007289457600563765, -0.016848064959049225, -0.018865086138248444, 0.0068074488081038, 0.004260217305272818, -0.008297968655824661, -0.01669975370168686, 0.003841240191832185, -0.04179387912154198, 0.02132703922688961, 0.0558537095785141, -0.004412235226482153, -0.010344652459025383, 0.0020281451288610697, -0.011924158781766891, 0.009380634874105453, 0.021920282393693924, -0.026636553928256035, 0.008883794769644737, -0.021564336493611336, 0.014319372363388538, 0.012228194624185562, 0.0013755792751908302, -0.017426475882530212, 0.00845369417220354, 0.009714333340525627, 0.00113642867654562, 0.022083424031734467, -0.00539849977940321, -0.01175360195338726, 0.013577819801867008, -0.011390240862965584, -0.0007494311430491507, -0.01542428508400917, -0.006077019963413477, 0.009870058856904507, -0.02027403563261032, 0.011323501355946064, 0.008646498434245586, 0.02714080922305584, -0.0061289286240935326, 0.010344652459025383, -0.019606638699769974, -0.018168028444051743, 0.0012207801919430494, -0.010441054590046406, -0.005591303110122681, -0.01267312653362751, -0.007167101372033358, -0.016373472288250923, 0.0010372460819780827, 0.02967691794037819, 0.03464531525969505, -0.014111737720668316, -0.0021616246085613966, 0.00918041542172432, -0.010463301092386246, -0.018168028444051743, -0.024812335148453712, 0.025034800171852112, -0.010107356123626232, -0.006284654606133699, -0.028342124074697495, -0.03719625622034073, -0.001966967014595866, 0.0200960636138916, -0.02002190798521042, 0.01005544699728489, 0.015617088414728642, 0.015098001807928085, -0.01647728867828846, 0.0017704557394608855, 0.007337658666074276, 0.008409201167523861, 0.004445604979991913, -0.0033073225058615208, -0.003674390958622098, 0.015943370759487152, 0.0008096822421066463, 0.009061767719686031, 0.003242436796426773, -0.011345747858285904, -0.01634380966424942, -0.009514113888144493, -0.01299940887838602, 0.0012467345222830772, 0.0272297952324152, -0.0007480407366529107, 0.019992245361208916, 0.008483356796205044, -0.0007420156034640968, -0.012799190357327461, -0.014868120662868023, -0.03562416508793831, 0.022973285987973213, 0.010574533604085445, 0.027867529541254044, -0.010559702292084694, -0.0021023002918809652, -0.0009130361140705645, 0.0039228107780218124, -0.021134236827492714, 0.011545967310667038, -0.009677255526185036, 0.009632762521505356, -0.0026306563522666693, 0.062171731144189835, 0.01971045695245266, 0.0008921799599193037, -0.014653070829808712, -0.019250694662332535, -0.027897192165255547, -0.026562398299574852, 0.01164978463202715, 0.017856575548648834, -0.0011994605883955956, -0.0031256424263119698, 0.020348191261291504, 0.0161658376455307, 0.00509075541049242, -0.033844441175460815, 0.010062863118946552, -0.0009260132792405784, 0.011634953320026398, -0.007756635546684265, 0.020466839894652367, 0.02837178483605385, -0.0048794131726026535, -0.0009705064003355801, -0.0018881771247833967, -0.0058582620695233345, 0.014334202744066715, -0.0012810314074158669, 0.014645654708147049, 0.00586567772552371, 0.03408173844218254, -0.0011521866545081139, -0.026977667585015297, -0.017648940905928612, -0.002430437132716179, -0.010144433937966824, 0.008817055262625217, 0.016773909330368042, 0.01773792691528797, -0.00806067232042551, 0.018153196200728416, -0.013711299747228622, 0.016239991411566734, 0.005754444748163223, 0.03915395215153694, -0.02285463735461235, -0.016877727583050728, 0.016551444306969643, -0.007582370657473803, 0.005316928960382938, 0.004449313040822744, -0.008446278981864452, -0.018939241766929626, -0.00027553297695703804, -0.015083170495927334, -0.005216819234192371, -0.009098844602704048, 0.007652818225324154, 0.0033351308666169643, -0.003930226434022188, -0.007404398173093796, -0.019072720780968666, -0.00011430331505835056, 0.002424875507131219, -0.026325101032853127, -0.01527597475796938, -0.010619026608765125, 0.001006657024845481, -0.014059828594326973, 0.014044998213648796, -0.0052946824580430984, -0.00793460849672556, -0.009462205693125725, 0.0159137099981308, -0.008498188108205795, 0.01160529162734747, 0.01463823951780796, -0.0034500714391469955, 0.02022954262793064, 0.011501474305987358, 0.01269537303596735, 0.008312799967825413, 0.0014460267266258597, 0.004156399983912706, 0.007882699370384216, -0.0033481079153716564, -0.008231229148805141, 0.02036302164196968, -0.010314990766346455, 0.004894244018942118, -0.027674727141857147, -0.008995027281343937, 0.00457908445969224, 0.004994353745132685, 0.00029476697091013193, -9.385269368067384e-05, -0.004241678398102522, 0.002130108652636409, -0.01453442219644785, -8.655303827254102e-05, -0.007630571722984314, 0.02985488995909691, 0.010374315083026886, 0.010759921744465828, 0.0091136759147048, 0.012613802216947079, 0.02141602709889412, 0.03767085075378418, -0.00595466373488307, -0.013889271765947342, -0.003544619306921959, -0.00038769273669458926, -0.008045841008424759, -0.009380634874105453, 0.011575629003345966, -0.02911333739757538, 0.00803842581808567, 0.004212016239762306, 0.013422094285488129, -0.012013144791126251, -0.0046977330930531025, -0.001998482970520854, -0.005650627426803112, -0.01269537303596735, -0.014942276291549206, 0.014994184486567974, 0.008913456462323666, -0.032272350043058395, -0.010455884970724583, 0.008839301764965057, -0.002526839030906558, 0.013918934389948845, 0.000856492726597935, 0.006866773124784231, -0.014326787553727627, 0.02350720390677452, 0.008386954665184021, 0.016848064959049225, -0.007734389044344425, 0.000565896974876523, -0.014326787553727627, 0.021134236827492714, 0.02491615153849125, 0.00994421448558569, 0.012821436859667301, 0.0009028397616930306, 0.012495153583586216, -0.010767336934804916, -0.022572847083210945, 0.006010280456393957, 0.0026547566521912813, 0.035505518317222595, -0.03313254937529564, 0.001826072228141129, -0.009336141869425774, -0.016032356768846512, -0.008023594506084919, -0.02875739336013794, 0.0378488227725029, -0.0012652733130380511, -0.001686104224063456, 0.01919136941432953, -1.8104300352206337e-06, -0.011901912279427052, 0.006184544879943132, -0.008587174117565155, -0.003138619475066662, 0.0018010447965934873, 0.033369846642017365, 0.016328979283571243, -0.0216829851269722, -0.0288463793694973, 0.00363731337711215, 0.0004080854123458266, -0.013733546249568462, -0.01098980288952589, -0.01262863352894783, -0.01578022912144661, 0.018553635105490685, -0.01966596394777298, 0.024026289582252502, 0.0012291227467358112, 0.02590983174741268, 0.006017695646733046, 0.0005269654793664813, 0.012443245388567448, -0.01374837663024664, -0.0019373049726709723, -0.0012087300419807434, -0.015528102405369282, -0.010441054590046406, -0.018672283738851547, 0.02752641588449478, -0.005991741549223661, 0.0007211594493128359, -0.01739681325852871, -0.004634701181203127, 0.006032526958733797, 0.010633857920765877, -0.005698828492313623, 0.015075755305588245, -0.0039895507507026196, 0.000987191335298121, 0.018108703196048737, 0.03334018588066101, -0.016877727583050728, -0.0009329653112217784, -0.02062998153269291, -0.0023433049209415913, -0.013518495485186577, -0.014141399413347244, -0.03452666848897934, -0.0200960636138916, -0.005290974862873554, 0.002652902854606509, -0.015528102405369282, -0.008513018488883972, 0.004019212909042835, 0.010270497761666775, 0.010974971577525139, -0.022973285987973213, 0.001123451511375606, 0.008728069253265858, -0.0256132110953331, 0.006414426025003195, -0.008550096303224564, 0.001554478658363223, -0.00027622818015515804, 0.021905450150370598, 0.041230298578739166, 0.00834987685084343, 0.017026036977767944, 0.009402881376445293, -0.020303698256611824, 0.025583550333976746, -0.010062863118946552, 0.01778241991996765, 0.009299064055085182, 0.0015007162000983953, 0.02927647903561592, 0.0030069940257817507, -0.024411896243691444, 0.019873598590493202, 0.012332011945545673, -0.005509732756763697, 0.0042935870587825775, -0.021816464141011238, -0.003933934029191732, -0.012643463909626007, 0.017812082543969154, -2.5085319066420197e-05, 0.018153196200728416, -0.009017273783683777, -0.0256132110953331, 0.00336479302495718, 0.018894748762249947, 0.002537962282076478, -0.004734810441732407, 0.006166005972772837, 0.007741804700344801, -0.02819381281733513, 0.0003721664834301919, -0.015483609400689602, -0.024619530886411667, -0.006284654606133699, 0.006551613099873066, 0.016981543973088264, -0.013132888823747635, 0.006659138482064009, 0.02438223548233509, -0.005635796580463648, 0.014801381155848503, -0.008594589307904243, 0.0012003876036033034, -0.0042046005837619305, -0.010322405956685543, -0.006707339081913233, 0.006355102173984051, -0.008142243139445782, 0.007964270189404488, 0.007066992111504078, 0.032094378024339676, 0.009662424214184284, 0.0038746099453419447, -0.03434869647026062, -0.011761017143726349, -0.026072973385453224, 0.012613802216947079, 0.01546877808868885, -0.0030181172769516706, 0.02801584079861641, 0.013926349580287933, -0.02736327424645424, -0.001129940152168274, 0.01087857037782669, 0.007756635546684265, 0.010359483771026134, -0.014667901210486889, 0.0034945644438266754, 0.004100783262401819, 0.013347938656806946, 0.0019521360518410802, 0.00821639783680439, -0.021920282393693924, -0.0005960225244052708, 0.01446768268942833, 0.004052582662552595, 0.02054099552333355, 0.0027882361318916082, -6.059871520847082e-05, 0.0058805085718631744, -0.004897952079772949, 0.00038861966459080577, 0.017752759158611298, 0.0129326693713665, 0.0055875955149531364, -0.002137524075806141, 0.017381982877850533, 0.009499283507466316, 0.005168618634343147, 0.02233555167913437, 0.0035909663420170546, -0.004927614238113165, 0.009536360390484333, 0.009617931209504604, 0.009514113888144493, 0.011723939329385757, -0.003544619306921959, -0.014942276291549206, -0.006981713697314262, -0.01437869668006897, 0.024456389248371124, -0.008713237941265106, -0.007764051202684641, -0.013600066304206848, -0.009551191702485085, -0.005439285188913345, -0.00010636638762662187, -0.00421572383493185, -0.016180668026208878, 0.0006952051189728081, 0.006369933020323515, 0.00020091429178137332, -0.012324596755206585, -0.026503074914216995, 0.003533496055752039, 0.007526754401624203, -0.003822701284661889, 0.002415606053546071, 0.004375157877802849, 0.017559954896569252, 0.011768432334065437, -0.005646919831633568, 0.01634380966424942, -0.014007920399308205, 0.008653913624584675, -0.014304541051387787, 0.01105654239654541, -0.0037318612448871136, -0.007011375855654478, -0.0019465744262561202, -0.000994606874883175, 0.02456020750105381, -0.00821639783680439, -0.034467343240976334, -0.012984578497707844, 0.010893400758504868, 0.007853037677705288, -0.007697311230003834, -0.014304541051387787, 0.00932872574776411, -0.00462357746437192, -0.008616835810244083, -0.021816464141011238, -0.0056877052411437035, -0.019043060019612312, -0.004108198918402195, 0.0017305973451584578, 0.011390240862965584, -0.008386954665184021, -0.004935029428452253, 0.025687366724014282, 0.018153196200728416, -0.0006113170529715717, 0.013800285756587982, 0.03084857016801834, -0.007949438877403736, 0.023744499310851097, 0.028001008555293083, -0.0016091681318357587, 0.007942023687064648, -0.010515209287405014, -0.00983298197388649, -0.00895795039832592, -0.014007920399308205, 0.014252632856369019, 0.02106008119881153, -0.017337489873170853, 0.021920282393693924, 0.011850003153085709, -0.004434481728821993, 0.013333107344806194, -0.02211308479309082, -0.0005028650630265474, 0.007348781917244196, 0.023892810568213463, -0.028816716745495796, 0.006399595178663731, 0.018865086138248444, 0.013429509475827217, -0.013622312806546688, -0.012154039926826954, -0.018998567014932632, -0.0270073302090168, -0.005784106906503439, 0.0196214709430933, 0.011464396491646767, -0.003511249553412199, -0.004738518502563238, -0.0037151763681322336, -0.007430352736264467, 0.01827184483408928, 0.0019354511750862002, 0.01002578530460596, 0.015884047374129295, 0.01831633783876896, -0.003959888592362404, 0.012680541723966599, -0.006143759470432997, -8.562610310036689e-05, 0.0013746522599831223, -0.0182273518294096, 0.016151005402207375, 0.0010400268947705626, 0.02027403563261032, -0.01079699955880642, -0.00647745793685317, 0.00595466373488307, -0.0014895929489284754, -0.019176539033651352, -0.008275722153484821, -0.014319372363388538, -0.008275722153484821, -0.014222970232367516, 0.009210078045725822, 0.01075250655412674, -0.00198365212418139, 0.005361421965062618, 0.021564336493611336, -0.007964270189404488, -0.006210499443113804, -0.0017268896335735917, 0.004378865472972393, -0.003264683298766613, 0.006970590446144342, -0.004263924900442362, -0.004260217305272818, -0.010085109621286392, -0.01105654239654541, 0.02251352369785309, -0.035238560289144516, -0.008550096303224564, -0.004564253613352776, 0.020644811913371086, -0.015135079622268677, 0.0019391588866710663, -0.008987612091004848, 0.017930731177330017, 0.009959045797586441, -0.007011375855654478, 0.005524563603103161, -0.013214459642767906, 0.03304356336593628, 0.00895795039832592, -0.0019317433470860124, -0.005276143550872803, 0.01699637621641159, 0.02464919351041317, 0.001826072228141129, 0.0031608659774065018, -0.0012411728966981173, 0.015142494812607765, 0.006926096975803375, -0.012205948121845722, 0.006692508235573769, 0.035861462354660034, -0.007749219890683889, 0.016937050968408585, 0.025153448805212975, 0.0019502821378409863, 0.007853037677705288, -0.0033629389945417643, 0.01699637621641159, -0.0031571583822369576, 0.012131793424487114, 0.004167523235082626, 0.0002398457727394998, 0.017381982877850533, 0.03129350021481514, 0.00992196798324585, -0.006407010834664106, -0.0018751999596133828, 0.010567118413746357, 0.0002773868618533015, -0.010619026608765125, 0.015720905736088753, 0.0015377937816083431, -0.005750737152993679, 0.015216650441288948, 0.02058548852801323, 0.01459374651312828, 0.011961236596107483, -0.004326956812292337, -0.015031262300908566, 0.03259863331913948, 0.00456796120852232, -0.004160107579082251, 0.014994184486567974, 0.015617088414728642, -0.0032016513869166374, -0.009076598100364208, -0.0008694698917679489, -0.0288463793694973, -0.007304288912564516, 0.012072469107806683, -0.0048682899214327335, -0.0055764722637832165, 0.011790678836405277, 0.00047644725418649614, 0.011093620210886002, -0.012517400085926056, -0.01190932746976614, 0.015542932786047459, -0.012005729600787163, -0.008031009696424007, 0.015987863764166832, 0.007882699370384216, 0.024753011763095856, 0.01928035542368889, 0.029350634664297104, -0.025242434814572334, 0.015439115464687347, 0.013436924666166306, 0.014475097879767418, 0.0009056205744855106, 0.0004530420119408518, -0.006781494244933128, 0.018197689205408096, 0.003971011843532324, -0.026250947266817093, -0.01098980288952589, -0.0018677845364436507, -0.005146372132003307, 0.025094125419855118, -0.014363865368068218, 0.013147720135748386, -0.02281014434993267, -0.0010214881040155888, 0.009951629675924778, 0.010463301092386246, 0.012050222605466843, -0.012969747185707092, -0.0034278249368071556, -0.013970842584967613, 0.0039895507507026196, 0.0012087300419807434, 0.005468947347253561, 0.016581106930971146, -0.008201566524803638, 0.010277912952005863, 0.012443245388567448, -0.010166680440306664, -0.0029309848323464394, -0.01782691292464733, 0.02071896754205227, -0.002960646990686655, -0.00535400677472353, -0.035030923783779144, -0.007964270189404488, 0.027170471847057343, -0.011197437532246113, 0.0007721412112005055, -0.023195751011371613, -0.009098844602704048, -0.0014895929489284754, -0.0044975136406719685, 0.022276226431131363, 0.009076598100364208, 0.011850003153085709, 0.03749287873506546, -0.0293209720402956, 0.02460470050573349, -0.010663519613444805, 0.0025843093171715736, -0.010381730273365974, 0.01910238340497017, 0.018939241766929626, 0.004664362873882055, 0.03032948262989521, -0.023655513301491737, -0.027081483975052834, -0.013288614340126514, 0.00542074628174305, 0.012205948121845722, -0.0024452682118862867, 0.013192213140428066, 3.305121208541095e-05, -0.011597875505685806, -0.009106260724365711, 0.002810482634231448, 3.3630549296503887e-05, 0.013014240190386772, -0.00819415133446455, 0.011879665777087212, -0.020007077604532242, 0.010589364916086197, 0.005665458273142576, -0.00834987685084343, -0.019829105585813522, 0.00763798737898469, -0.00011134869419038296, -0.02150501310825348, 0.013088395819067955, -0.003822701284661889, 0.013147720135748386, -0.012554477900266647, -0.009580854326486588, -0.002699249889701605, 0.0044270665384829044, 0.020333360880613327, -0.006221622694283724, -0.009402881376445293, 0.011501474305987358, -0.025005139410495758, -0.004656947683542967, 0.015943370759487152, -0.000859273539390415, -0.022824974730610847, -0.015720905736088753, 0.0009167438256554306, -0.009588269516825676, 0.005124125629663467, -0.008772562257945538, -0.012250442057847977, 0.0180048868060112, 0.009558606892824173, -0.021356701850891113, -0.0011605290928855538, -0.010218588635325432, 0.00915816891938448, 0.02438223548233509, -0.0184794794768095, 0.00589904747903347, -0.01160529162734747, 0.016892557963728905, -0.016373472288250923, -0.019413836300373077, 0.0007582370890304446, -0.02027403563261032, 0.04268374294042587, -0.00688531156629324, -0.022350382059812546, -0.00930647924542427, -0.019043060019612312, 0.011063958518207073, -0.009499283507466316, -0.005802645813673735, 0.02469368651509285, 0.011264177039265633, 0.005672873929142952, 0.0037726466543972492, 0.00730799650773406, -0.001268981141038239, -0.024901321157813072, 0.01455666869878769, 0.005350298713892698, 0.03120451420545578, 0.006351394113153219, -0.006759247742593288, -0.009195246733725071, -0.003255414078012109, -0.018034547567367554, -0.0030218251049518585, 0.021356701850891113, -0.01542428508400917, -1.330303985014325e-05, -0.0015415014931932092, 0.0277043879032135, 0.0028827839996665716, 0.014653070829808712, -0.014497344382107258, 0.004026628099381924, 0.0039228107780218124, -0.022735988721251488, -0.020422346889972687, 0.003919103182852268, 0.004753349348902702, 0.007100361865013838, -0.012250442057847977, -0.024589870125055313, -0.013859610073268414, -0.02390764094889164, -0.005402207374572754, 0.003088564844802022, 0.004356618970632553, -0.004508636891841888, -0.0018603689968585968, 0.009973876178264618, 0.009358388371765614, -0.008357292972505093, 0.0029958707746118307, 0.006521951407194138, 0.0013023510109633207, 0.002981039695441723, -0.02337372489273548, 0.019087553024291992, -0.023611020296812057, -9.674938337411731e-05, 0.007026206701993942, 0.0006854722741991282, 0.006054773461073637, 0.02175714075565338, -0.002723350189626217, 0.00806067232042551, 0.0008342461660504341, -0.012687957845628262, -0.02709631621837616, -0.00832763034850359, 0.030166340991854668, -0.005557933356612921, 0.005873092915862799, 0.0020689305383712053, -0.0017463553231209517, -0.0017352320719510317, 0.014764303341507912, -0.004605039022862911, 0.002810482634231448, 0.00681857205927372, -0.006707339081913233, -0.005962079390883446, 0.013318276964128017, -0.02002190798521042, -0.021475350484251976, -0.014304541051387787, -0.003930226434022188, 0.007070699706673622, -0.010188926942646503, 0.010559702292084694, 0.010411391966044903, 0.0014710540417581797, 0.016640430316329002, -0.01787140779197216, 0.00808291882276535, 0.0074118138290941715, -0.0007369174272753298, -0.007904945872724056, 0.01352591160684824, 0.006788909900933504, -0.0012244880199432373, 0.012176286429166794, 0.010515209287405014, 0.015854384750127792, 0.02011089399456978, 0.0012003876036033034, 0.018598128110170364, -0.011968651786446571, 0.012458075769245625, -0.015038677491247654, -0.015157326124608517, -0.014193308539688587, 0.02229105867445469, 0.00511300191283226, -0.0070299142971634865, -0.022172410041093826, -0.024189431220293045, -0.009380634874105453, -0.0027289120480418205, 0.006470042746514082, -0.016002696007490158, -0.0011670177336782217, 0.03064093552529812, -0.006559028755873442, -0.009343557059764862, -0.023017778992652893, -0.000352005532477051, -0.013370185159146786, 0.002521277405321598, 0.04499738663434982, 0.007526754401624203, 0.008839301764965057, 0.018820593133568764, 0.0022376335691660643, 0.009439959190785885, -0.027081483975052834, 0.009469620883464813, 0.03571315109729767, -0.0036614136770367622, -0.0005904608988203108, -0.011938990093767643, -0.00223948759958148, -0.008119995705783367, 0.00996646098792553, -0.012880761176347733, 0.010811830870807171, -0.019918091595172882, -0.005072216968983412, 0.023388555273413658, -0.002541670110076666, 0.01382994744926691, -0.006006572395563126, -0.0035965279676020145, 0.006685092579573393, -0.0021690400317311287, -0.004986938089132309, 0.006418134085834026, 0.009773657657206059, -0.007430352736264467, 0.009610516019165516, -0.0055875955149531364, 0.008846716955304146, 0.026844188570976257, -0.018850255757570267, -0.008223813027143478, 0.016937050968408585, 0.007100361865013838, -0.03933192789554596, 0.004909075330942869, 0.0018909580539911985, 0.0017667480278760195, -0.017515461891889572, -0.020170219242572784, 0.0009060840238817036, 0.016803571954369545, 0.007037329953163862, 0.008779977448284626, -0.011138113215565681, -0.0035872585140168667, 0.0011076935334131122, 0.012509984895586967, 0.0200664009898901, -0.016714585945010185, -0.006547905504703522, -0.01457150001078844, -0.004705148283392191, 0.0216829851269722, 0.008253475651144981, 0.0030477794352918863, -0.0015628212131559849, -0.005483778193593025, 0.0017231818055734038, -0.016833234578371048, 0.020526163280010223, 0.02622128464281559, 0.013800285756587982, 0.02714080922305584, -0.015305636450648308, 0.014742056839168072, -0.008765146136283875, -0.000978848896920681, -0.004412235226482153, -0.01578022912144661, 0.018390493467450142, 0.0068630650639534, 0.001429341733455658, -0.028698068112134933, 0.0044270665384829044, -0.007356197573244572, -0.01070801354944706, -0.028594251722097397, -0.004059997852891684, -0.018168028444051743, -0.023788992315530777, -0.0008249767706729472, 0.003815285861492157, 0.013577819801867008, 0.012243025936186314, 0.019562145695090294, 0.007942023687064648, 0.011768432334065437, -0.02875739336013794, -0.0041934773325920105, -0.028001008555293083, 0.004460436291992664, 0.007808544207364321, 0.030996879562735558, -0.0035038338974118233, 0.014482514001429081, 0.027214964851737022, -0.013451755978167057, 0.0003383331641089171, 0.015350129455327988, 0.011486642993986607, -0.009254571050405502, 0.016937050968408585, -0.00023752842389512807, -0.0049795228987932205, -0.0009556753211654723, 0.031056204810738564, 0.01536496076732874, -0.010337237268686295, 0.004434481728821993, 0.006169714033603668, -0.004108198918402195, -0.001009437837637961, -0.01009252481162548, -0.01753029227256775, -0.010344652459025383, -0.026517905294895172, -0.02083761617541313, -0.010811830870807171, 0.019176539033651352, -0.02005157060921192, -0.018242182210087776, -0.0030440716072916985, -0.001953989965841174, -0.0161658376455307, -0.0032813684083521366, 0.021742308512330055, -0.012094715610146523, -0.0054763625375926495, -0.031886741518974304, -0.021119404584169388, 0.018390493467450142, 0.020704135298728943, 0.004690317437052727, 0.0031960897613316774, 0.00019477331079542637, -0.01368163712322712, -0.00987747497856617, -0.0016527343541383743, -0.005250189453363419, -0.0007628717576153576, -0.008097749203443527, 0.013889271765947342, -0.012969747185707092, 0.0015146202640607953, -0.0013792869867756963, -0.0062401616014540195, -0.0012476615374907851, -0.012376505881547928, 0.0012458076234906912, 0.026013650000095367, -0.0010706159519031644, -0.005609842017292976, -0.016269654035568237, -0.01856846548616886, 0.011716524139046669, -0.004960983991622925, 0.0009630908607505262, -0.029246816411614418, -0.0030607564840465784, -0.0036002357956022024, 0.007089238613843918, -0.006217914633452892, 0.003926518838852644, -0.01002578530460596, 0.003959888592362404, -0.012198532931506634, -0.011716524139046669, -0.01621033065021038, -0.007771466393023729, -0.01186483446508646, -0.017233671620488167, 0.017026036977767944, 0.0037967469543218613, 0.014564084820449352, -0.011405072174966335, 0.000981629709713161, -0.008965365588665009, 0.0018501726444810629, -0.009588269516825676, 0.004382573068141937, 0.01085632387548685, -0.0050796321593225, 0.003262829501181841, 0.013014240190386772, 0.03571315109729767, -0.032005392014980316, 0.0055542257614433765, -0.030492624267935753, 0.005127833224833012, -0.009098844602704048, -0.013036486692726612, 0.007497092243283987, -0.016788741573691368, 0.007467430084943771, 0.006043650209903717, -0.003527934430167079, -0.013792870566248894, 0.013370185159146786, -0.009017273783683777, -0.01168686244636774, -0.026770032942295074, -0.009173000231385231, -0.012420998886227608, -0.004527175799012184, -0.0026547566521912813, -0.0024823457933962345, -0.003073733765631914, 0.0026417796034365892, 0.008787392638623714, 0.01168686244636774, 0.01883542537689209, -0.010337237268686295, -0.0013088395353406668, 0.012383921071887016, -0.006206791382282972, 0.011694277636706829, -0.008668744936585426, -0.017070529982447624, 0.011234515346586704, 0.00649970443919301, -0.0030273867305368185, 0.005928709637373686, -0.009795904159545898, -0.006911266129463911, 0.005572764668613672, 0.011790678836405277, 0.011234515346586704, -0.013985673896968365, 0.01446768268942833, 0.00031585487886331975, 0.020570656284689903, 0.0006975224823690951, 0.0018807617016136646, -0.02801584079861641, -0.009580854326486588, -0.0020281451288610697, -0.006136344280093908, -0.004456728231161833, 0.004668070934712887, -0.005646919831633568, -0.006733293645083904, 0.008661328814923763, -0.01440094318240881, -0.009084014222025871, -0.0200664009898901, -0.009632762521505356, 0.021356701850891113, 0.011419903486967087, -0.009388050064444542, 0.02180163376033306, -0.017930731177330017, 0.014860705472528934, 0.0010353921679779887, -0.0009287940920330584, -0.010196342132985592, 0.022098254412412643, -0.019384173676371574, 0.013132888823747635, 0.008602005429565907, -0.022647002711892128, -0.006077019963413477, -0.012257857248187065, 0.017545124515891075, -0.004401111975312233, 0.025553887709975243, -0.007382151670753956, 0.005643211770802736, 0.01634380966424942, 0.014564084820449352, -0.004812673665583134, 0.020303698256611824, 0.014497344382107258, -0.035297881811857224, 0.006618353072553873, -0.015112833119928837, -0.008112580515444279, -0.016492119058966637, 1.1014656593033578e-05, 0.025019969791173935, 0.019962584599852562, 0.01665526069700718, 0.02011089399456978, 0.011924158781766891, -0.019784610718488693, 0.005127833224833012, 0.002994016744196415, -0.008765146136283875, -0.024975476786494255, -0.017945561558008194, 0.01744130626320839, -0.01357040461152792, -0.005572764668613672, -0.024960646405816078, -0.0036039433907717466, -0.040844693779945374, 0.0069594671949744225, 0.0031905281357467175, 0.02197960577905178, 0.004727394785732031, 0.030121847987174988, 0.012554477900266647, -0.0011086204322054982, 0.027956515550613403, 0.0012476615374907851, 0.002402629004791379, -0.004553130362182856, -0.00736361276358366, -0.010285328142344952, 0.0015832138014957309, -0.007890114560723305, 0.013147720135748386, 0.007919777184724808, -0.011694277636706829, -0.005391084123402834, 0.007159686181694269, -0.003789331531152129, 0.006529366597533226, -0.011464396491646767, -0.019591808319091797, -0.012443245388567448, 0.003919103182852268, -0.032064713537693024, 0.008557511493563652, 0.004942445084452629, -0.016492119058966637, -0.003535349853336811, 0.0055653490126132965, 0.011768432334065437, 0.020911769941449165, 0.004920198582112789, -0.010122186504304409, -0.017886238172650337, -0.006125221028923988, -0.005446700379252434, 3.94528906326741e-05, 0.01634380966424942, 0.0007016937015578151, 0.00923973973840475, 0.0032813684083521366, 0.016937050968408585, -0.01273986604064703, 0.003652144456282258, 0.001577652175910771, 0.009447374381124973, 0.0015155471628531814, -0.0018631498096510768, -0.0251682810485363, 0.03102654218673706, -0.025464901700615883, 0.014586331322789192, 0.006510828156024218, 0.0006585909868590534, 0.01160529162734747, 0.0015164741780608892, 0.0062735313549637794, 0.0108414925634861, -0.0022876884322613478, 0.004816381260752678, 0.0030144094489514828, -0.005239066202193499, -0.006822279654443264, 0.01451217569410801, 0.025880170986056328, 0.018123535439372063, 0.005713659338653088, 0.0028883456252515316, -0.008016178384423256, 0.0159137099981308, 0.021623661741614342, 0.003138619475066662, 0.004397404380142689, 0.013110642321407795, -0.0020707843359559774, 0.017144685611128807, 0.01818285882472992, -0.006692508235573769, 0.006673969328403473, -0.0007123535615392029, -0.028698068112134933, 0.004156399983912706, -0.04339563101530075, -0.009640177711844444, 0.0026714415289461613, 0.007207886781543493, 0.01612134464085102, 0.007712142542004585, -0.017055699601769447, 0.007226425688713789, -0.005913878325372934, 0.0006738855154253542, -0.007582370657473803, 0.02076346054673195, -0.028965028002858162, -0.007927192375063896, 0.013303445652127266, -0.023566527292132378, -0.014853289350867271, 0.01276211254298687, 0.015943370759487152, 0.019784610718488693, -0.011390240862965584, -0.0075119235552847385, 0.007608325220644474, -0.002971770241856575, -0.011330916546285152, -0.006091850809752941, 0.005142664071172476, -0.013444340787827969, 0.01782691292464733, 0.006069604307413101, -0.006110389716923237, 0.0065664444118738174, 0.002274711150676012, -0.009973876178264618, -0.004905367735773325, 0.0025861631147563457, 0.005457824096083641, -0.005105586722493172, 0.016180668026208878, -0.001256003975868225, 0.004397404380142689, -0.022276226431131363, -0.011130698025226593, -0.0029791858978569508, -0.0002970843343064189, 0.0022135332692414522, -0.00028781493892893195, 0.0200664009898901, 0.0035761352628469467, -0.010255666449666023, 0.015290805138647556, 0.009447374381124973, -0.026636553928256035, -0.0011466250289231539, -0.005813769064843655, 0.002148647326976061, -0.0003422726585995406, 0.00766023388132453, 0.025672536343336105, -0.009996122680604458, 0.0028605374973267317, -0.003815285861492157, 0.004719979595392942, 0.0018928118515759706, -0.004957276396453381, 0.002093031071126461, 0.018079042434692383, 0.004723687190562487, 0.00016847137885633856, -0.009595684707164764, -0.0050610932521522045, 0.013110642321407795, -0.0031701354309916496, -0.027734050527215004, 0.0006859357235953212, -0.013577819801867008, -0.011367994360625744, -0.017559954896569252, -0.005832307506352663, 0.006618353072553873, -0.002845706418156624, 0.007055868860334158, 0.0040117972530424595, 0.013444340787827969, 0.013132888823747635, -0.014712395146489143, -0.01773792691528797, -0.0031312040518969297, 0.027348443865776062, -0.00171854707878083, -0.007860452868044376, 0.010463301092386246, -0.0006530293612740934, 0.003718883963301778, -0.020570656284689903, 0.010804414749145508, 0.0022116792388260365, 0.013533326797187328, -0.00987747497856617, -0.04514569416642189, 0.022528354078531265, 0.01753029227256775, -0.028505265712738037, 0.011479227803647518, -0.02972141094505787, 0.00761574087664485, -0.013518495485186577, -0.012814021669328213, 0.00341484765522182, 0.009380634874105453, 0.02438223548233509, -0.006540489848703146, -0.009313895367085934, 0.006169714033603668, -0.004723687190562487, 0.04579826071858406, 0.019458329305052757, 0.0014831043081358075, 0.009061767719686031, 0.0028549758717417717, -0.01926552504301071, 0.0074006905779242516, 0.005016600247472525, -0.00924715492874384, 0.0037485461216419935, 0.006425549276173115, -0.0038820256013423204, 0.025583550333976746, 0.023877980187535286, -0.00041665960452519357, 0.012598970904946327, -0.0024656609166413546, -0.005487485788762569, -0.009617931209504604, 0.012591555714607239, 0.01560225710272789, -0.010515209287405014, -0.02002190798521042, 0.0046087466180324554, 0.008943119086325169, -0.001991067547351122, 0.002856829669326544, -0.013889271765947342, -0.0051612029783427715, -0.019043060019612312, 0.02094143256545067, 0.003003286197781563, -0.03856071084737778, -0.0010298305423930287, -0.0017166932811960578, 0.01085632387548685, -0.005502317100763321, 0.002398921176791191, 0.011738770641386509, -0.0037244458217173815, -0.008987612091004848, -0.00821639783680439, 0.007133731618523598, -0.010715428739786148, -0.025628043338656425, 0.00022860663011670113, 0.02381865493953228, 0.0020411224104464054, -0.008676160126924515, 0.005075924564152956, -0.00906918291002512, -0.002018875675275922, -0.0075119235552847385, 0.006551613099873066, 0.007460014894604683, 0.006269823294132948, 0.007348781917244196, 0.006948343478143215, -0.006610937416553497, -0.0002658001030795276, -0.002971770241856575, 0.0018640767084434628, 0.004338080063462257, 0.051018789410591125, -0.0003149279218632728, 0.024144938215613365, 0.007078115362673998, 0.0057359058409929276, -0.007608325220644474, 0.009736579842865467, 0.0029903091490268707, -0.012569309212267399, 0.013021656312048435, -0.00932872574776411, -0.0006544197676703334, -0.00895795039832592, -0.03369612991809845, -0.03156045824289322, -0.013229290023446083, 0.01352591160684824, -0.010552287101745605, 0.013800285756587982, 0.0135036651045084, -0.008112580515444279, -0.012420998886227608, -0.006458919495344162, -0.01002578530460596, -0.004312125965952873, 0.00821639783680439, -0.013666805811226368, -0.015661582350730896, -0.0038709023501724005, 0.0003990477416664362, -0.004137861076742411, 0.0030125556513667107, 0.004530883859843016, -0.012191117741167545, 0.006559028755873442, 0.004530883859843016, -0.013169966638088226, 0.015750568360090256, 0.02238004468381405, 0.006143759470432997, -0.0004254655505064875, -0.008498188108205795, -0.03084857016801834, -0.0006711047026328743, 0.0017686019418761134, 0.010122186504304409, 0.032746944576501846, -0.012124377302825451, 0.028178982436656952, 0.008765146136283875, -0.0070410375483334064, -0.01195382047444582, 0.0037911853287369013, 0.03055194951593876, 0.010396561585366726, 0.0032720989547669888, -0.015098001807928085, 0.007508215494453907, 0.01901339739561081, 0.0025083001237362623, -0.002122692996636033, 0.0016175106866285205, -0.005276143550872803, 0.00682969531044364, 0.015453946776688099, 0.007741804700344801, 0.012613802216947079, -0.0037485461216419935, -0.01179809495806694, 0.006403302773833275, 0.03072992153465748, -0.002306227106601, -0.000564970076084137, 0.004263924900442362, -0.01446768268942833, 0.008995027281343937, 0.0035538887605071068, -0.029083674773573875, -0.0013486979296430945, 0.02141602709889412, 0.000984410522505641, 0.0014886659337207675, -0.01971045695245266, -0.011612706817686558, 0.010366898961365223, 0.01607685163617134, 0.0037707926239818335, -0.009692086838185787, 0.012050222605466843, -0.0008050475735217333, 0.01374096143990755, -0.01634380966424942, 0.0055764722637832165, -0.03500126302242279, 0.018731607124209404, -0.030996879562735558, 0.005127833224833012, 0.022706327959895134, 0.005309513304382563, 0.007048453204333782, 0.024634363129734993, 0.026295440271496773, -0.011456980369985104, -0.00648858118802309, -0.009439959190785885, -0.031056204810738564, 0.008520434610545635, -0.012710204347968102, -0.014074659906327724, -0.022780481725931168, 0.00014738348545506597, -0.01365939062088728, 0.006032526958733797, -0.004349203314632177, -0.013881856575608253, -0.032183364033699036, 0.00012826535385102034, 0.0012031684163957834, 0.0198439359664917, 0.007993931882083416, 0.0027826745063066483, -0.005087047815322876, 0.0015906293410807848, -0.00111696298699826, 0.009662424214184284, -0.0004857166495639831, -0.002441560383886099, 2.6968165911966935e-05, 0.018257014453411102, -0.016536613926291466, -0.021401194855570793, -0.0037503999192267656, -0.003144181100651622, -0.0062735313549637794, -0.011612706817686558, -0.04185320436954498, -0.001820510602556169, 0.0019076429307460785, -1.8756056306301616e-05, -0.011961236596107483, 0.01087857037782669], "67cfb681-888c-4ffc-82f5-f02734835b54": [-0.018721796572208405, 0.014248115010559559, -0.00017015187768265605, 0.0063721779733896255, -0.03721803054213524, -0.03686715289950371, 0.0030654750298708677, 0.033884696662425995, -0.02162906341254711, -0.004238720051944256, 0.01270049624145031, 0.044285695999860764, 0.002440475160256028, 0.00019071108545176685, -0.02302004024386406, -0.008189219981431961, -0.003703006077557802, 0.03586464747786522, 0.004827692173421383, -0.03177943453192711, 0.03937341645359993, -0.02796991355717182, -0.024022547528147697, 0.03822053596377373, -0.0004029603733215481, -0.041603993624448776, -0.015977436676621437, 0.023283198475837708, -0.03689221665263176, 0.009812026284635067, 0.031954873353242874, 0.005792604293674231, 0.01596490666270256, -0.011848365887999535, -0.013959893956780434, -0.025989964604377747, -0.0018812649650499225, 0.022167911753058434, -0.029122795909643173, -0.016604004427790642, 0.0043828305788338184, 0.0018123426707461476, 0.05488719791173935, 0.013609017245471478, -0.04290725290775299, 0.03406013548374176, 0.024837082251906395, -0.024260642006993294, 0.03724309429526329, 0.020776934921741486, -0.003289472311735153, 0.003568294458091259, -0.013884706422686577, -0.020137837156653404, 0.013032576069235802, -0.0011669795494526625, 0.016879692673683167, 0.036591462790966034, -0.001804510597139597, -0.015363402664661407, 0.019461145624518394, 0.012675433419644833, -0.004664785228669643, -0.007255636155605316, 0.005845862440764904, -0.028345853090286255, 0.008552628569304943, -0.018984954804182053, -0.057694211602211, -0.034010011702775955, -0.009398492984473705, 0.036967404186725616, -0.04541351646184921, -0.003950499929487705, 0.008414783515036106, -0.0104636549949646, -0.012274431064724922, 0.00919172540307045, 0.015576435253024101, -0.0061497469432652, -0.014010019600391388, -0.013796987012028694, -0.02626565471291542, 0.006168543826788664, 0.07749370485544205, 0.0067042578011751175, 0.014135332778096199, -0.019786959514021873, -0.010989970527589321, -0.03205512464046478, -0.015488715842366219, -0.0008693605777807534, -0.006735586561262608, 0.006394107826054096, 0.009962402284145355, -0.012355884537100792, 0.017493726685643196, 0.008189219981431961, 0.017105257138609886, 0.017919791862368584, 0.04438594728708267, -0.011209269054234028, -0.018421044573187828, 0.010400998406112194, -0.007462403271347284, -0.03245612606406212, 0.009298241697251797, 0.004937341436743736, -0.023383449763059616, 0.015325808897614479, 0.03982454538345337, -0.02041352540254593, 0.022907258942723274, 0.015300746075809002, -0.027418535202741623, -0.01741853915154934, 0.014749367721378803, -0.006954884622246027, 0.02536339871585369, -0.04345862939953804, -0.0006226501427590847, -0.00022556382464244962, 0.02394735813140869, 0.01957392692565918, -0.016390971839427948, -0.026090215891599655, 0.003659146372228861, -0.01151002012193203, 0.0322556272149086, 0.007036338094621897, 0.005241225939244032, 0.011203003115952015, 0.02954886108636856, 0.05162905156612396, 0.03165412321686745, 0.006265661679208279, 0.008013781160116196, 0.04593983292579651, -0.010776937939226627, 0.02932329662144184, -0.061152856796979904, -0.04967416450381279, -0.054937321692705154, 0.0209273099899292, 0.01231202483177185, 0.0012562652118504047, -0.00461152708157897, 0.05015035718679428, -0.023170417174696922, 0.0005513782380148768, -0.041228052228689194, 0.0019799491856247187, 0.02008771151304245, 0.031428560614585876, 0.04213031008839607, 0.003093670355156064, -0.007794483099132776, 0.039223041385412216, -0.004943606909364462, 0.008358392864465714, 0.006735586561262608, -0.07759395241737366, -0.0024389089085161686, 0.0033364647533744574, 0.06215536594390869, 0.01709272526204586, 0.009849620051681995, 0.018684202805161476, 0.015400996431708336, 0.023684201762080193, 0.017431071028113365, 0.002086465246975422, 0.009135334752500057, -0.01793232373893261, 0.015977436676621437, -0.020526308566331863, 0.044285695999860764, -0.034335825592279434, 0.025601493194699287, -0.04426063597202301, -0.020338337868452072, 0.005679822526872158, 0.010632827877998352, -0.02932329662144184, -0.019837085157632828, 0.009548868052661419, -0.022330818697810173, 0.02533833682537079, 0.0034805750474333763, 0.003474309341982007, -0.04513782635331154, 0.0070676663890480995, 0.02191728539764881, -0.013320797123014927, 0.0007088029524311423, -0.02117793634533882, 0.024185454472899437, 0.03779447078704834, 0.01600250042974949, 0.0014896610518917441, -0.022067660465836525, -0.05383456498384476, -0.043634068220853806, 0.04932329058647156, -0.011766912415623665, 0.011021299287676811, -0.036365900188684464, -0.03583958372473717, -0.0020253751426935196, -0.021140342578291893, 0.02437342330813408, -0.02018796280026436, 0.01651628501713276, 0.005294484086334705, -0.005441727116703987, 0.01850876398384571, -0.026566404849290848, -0.0064223031513392925, 0.020513776689767838, -0.01857142150402069, -0.007474934216588736, 0.006697992328554392, -0.008721801452338696, -0.027919787913560867, -0.09233079105615616, 0.02626565471291542, -0.004536339081823826, -0.007819545455276966, -0.03418545052409172, -0.0018859641859307885, 0.038771916180849075, -0.002421678276732564, 0.003005951177328825, 0.011798241175711155, 0.005623431410640478, 0.06621551513671875, 0.036942340433597565, 0.02043858915567398, -0.003959898371249437, -0.0178070105612278, 0.028345853090286255, 0.020488712936639786, 0.003890975844115019, 0.03847116231918335, 0.02568921260535717, -0.0028336455579847097, -0.013822049833834171, 0.019298238679766655, 0.004993732552975416, 0.0028634073678404093, -0.02456139400601387, 0.02684209495782852, -0.021791972219944, -0.004533206112682819, -0.02408520318567753, 0.016654128208756447, 0.0027960515581071377, -0.016954880207777023, -0.0020974301733076572, 0.023583950474858284, -0.005548243410885334, -0.0010009394027292728, 0.014135332778096199, -0.0023715528659522533, 0.0757894441485405, 0.001336152316071093, 0.04649120941758156, -0.02556389942765236, -0.016328314319252968, 0.04052630066871643, -0.04052630066871643, 0.002153821289539337, 0.012048867531120777, 0.013157889246940613, 0.020488712936639786, 0.005422930233180523, -0.002423244761303067, -0.0050814514979720116, 0.02172931469976902, -0.03147868439555168, 0.006572679150849581, -0.024523800238966942, -0.003812655108049512, 0.045087702572345734, -0.019849617034196854, 0.028897231444716454, 0.005942980293184519, 0.0028242471162229776, -0.03957391902804375, 0.005031326320022345, -0.009812026284635067, 0.004812028259038925, 0.01454886607825756, 0.003273808164522052, 0.017117787152528763, 0.0018295731861144304, -0.02295738458633423, -0.008634082041680813, -0.0356641449034214, -0.024974927306175232, -0.002407580614089966, -0.004946739878505468, 2.3997974494704977e-05, -0.00563282985240221, 0.03736840561032295, -0.03994986042380333, 0.07268167287111282, 0.01454886607825756, -0.03779447078704834, 0.014924806542694569, 0.034786954522132874, -0.005902253556996584, 0.005388468969613314, 0.010921048000454903, 0.00641290470957756, -0.0014371861470863223, 0.024974927306175232, -0.045213013887405396, -0.008126563392579556, -0.0288471058011055, 0.0003745690919458866, -0.007149119861423969, -0.04721802845597267, -0.012499995529651642, 0.019423551857471466, -0.027869664132595062, 0.05383456498384476, -0.030927306041121483, -0.008853379637002945, -0.03285713121294975, -0.015827061608433723, -0.0122994938865304, -0.0106202969327569, -0.028546355664730072, -0.015538841485977173, -0.014761898666620255, -0.019949866458773613, -0.05228068307042122, 0.0015280382940545678, -0.016817035153508186, 0.007055134978145361, -0.014135332778096199, 0.005097115878015757, 0.00042528178892098367, -0.002471803454682231, -0.01114034652709961, -0.00439536152407527, 0.013734330423176289, 0.008458643220365047, 0.029147857800126076, 0.0006939220475032926, -0.018358388915657997, 0.030150363221764565, 0.0027866531163454056, 0.02636590413749218, 0.008859645575284958, -0.04165411740541458, -0.0424310602247715, -0.0034805750474333763, -0.004783832933753729, 0.015751874074339867, -0.046015020459890366, -0.009931073524057865, 0.005338343791663647, -0.014448615722358227, 0.02269422635436058, -0.01931076869368553, 0.02050124481320381, 0.018370920792222023, 0.011209269054234028, -0.05213030427694321, 0.01825813762843609, 0.018421044573187828, -0.016691721975803375, -0.024761894717812538, -0.03090224415063858, 0.010369670577347279, -0.015075181610882282, 0.021203000098466873, 0.007687966804951429, -0.0023292596451938152, 0.018884703516960144, 0.014448615722358227, -0.003317667869850993, 0.004364033229649067, 0.03177943453192711, 0.01969924010336399, -0.013997488655149937, 0.019160393625497818, 0.022456131875514984, -0.044862136244773865, -0.012324556708335876, -0.01078320387750864, -0.018947361037135124, -0.024573925882577896, -0.0006990128895267844, -0.005560774821788073, -0.01959899067878723, -0.042280685156583786, -0.05283205956220627, 0.01947367750108242, -0.016691721975803375, 0.019385958090424538, 0.01912279985845089, 0.04844609647989273, -0.021491220220923424, 0.0005690004327334464, 0.0029934197664260864, 0.0037781940773129463, 0.009611524641513824, 0.011203003115952015, -0.018370920792222023, 0.01951127126812935, -0.00978696346282959, 0.01205513346940279, 0.025639086961746216, 0.004912278614938259, 0.013433578424155712, -0.031854625791311264, -0.013333328068256378, 0.03541351854801178, 0.03233081474900246, -0.005538844969123602, 0.018746860325336456, -0.0520801804959774, 0.03699246793985367, 0.01959899067878723, 0.04230574890971184, -0.015150370076298714, -0.01606515608727932, -0.02156640775501728, 0.01137844193726778, 0.02031327597796917, -0.003850249107927084, -0.0010800433810800314, -0.030701741576194763, 0.01715538091957569, -0.009053881280124187, -0.02568921260535717, -0.02443608082830906, -0.0017700494499877095, 0.0223684124648571, -0.005134709645062685, -0.022944852709770203, -0.029373422265052795, 0.011716787703335285, -0.0009108705562539399, 0.0007835993310436606, 0.013571423478424549, -0.008527565747499466, 0.0013212714111432433, 0.029799487441778183, 0.0009218354825861752, 0.02355888858437538, -0.002315161982551217, 0.008978692814707756, -0.011635334230959415, -0.004849622026085854, 0.031152870506048203, -0.05072679743170738, -0.013057638891041279, -0.034135326743125916, 0.004317041020840406, -0.03586464747786522, 0.0019564528483897448, -0.07418543100357056, 0.023897234350442886, 0.01313282735645771, 0.013433578424155712, 0.0061904736794531345, 0.009254381991922855, 0.01873432844877243, -0.013270671479403973, 0.01550124678760767, 0.023446105420589447, -0.02295738458633423, -0.013621548190712929, -0.0026190464850515127, 0.0015288214199244976, -0.006174809765070677, -0.019611520692706108, -0.02208019234240055, -0.02739347331225872, 0.0022196106147021055, 0.005802002735435963, -0.000787515367846936, -0.017230570316314697, -0.048245593905448914, 0.014611522667109966, -0.00032483538961969316, 0.06656639277935028, -0.00539160193875432, 0.00242637749761343, 0.008007515221834183, 0.013546360656619072, -0.010043855756521225, 0.02015036717057228, -0.03416038677096367, -0.03528820723295212, -0.027644099667668343, 0.007706763688474894, -0.011610271409153938, -0.0022180441301316023, 0.0345112644135952, -0.018007511273026466, 0.01735588349401951, -0.028245603665709496, -0.007456137333065271, 0.020325805991888046, 0.012205509468913078, -0.01590224914252758, 0.01278194971382618, -0.01721803843975067, 0.037744347006082535, 0.021553875878453255, 0.0015570169780403376, -0.021992472931742668, 0.01521302666515112, 0.02819547802209854, -0.007443605922162533, 0.014561397954821587, -0.0012805445585399866, -0.004539472050964832, 0.012067664414644241, 0.0007091945735737681, 0.00310306902974844, -0.012857138179242611, -0.034360889345407486, -0.010156637988984585, -0.0033615275751799345, 0.014974931254982948, 0.011334582231938839, -0.013796987012028694, -0.008703004568815231, 0.028596479445695877, -0.018458640202879906, -0.010758141055703163, 0.004633456934243441, 0.0167042538523674, 0.020037585869431496, -0.012431073002517223, 0.017305757850408554, 0.004746238701045513, -0.03721803054213524, -0.01889723539352417, 0.02353382483124733, -0.02105262316763401, 0.01258771400898695, -0.01281327847391367, 0.006347115151584148, -0.031854625791311264, 0.023320792242884636, -0.027894726023077965, 0.0036403494887053967, 0.012305759824812412, -0.03157893568277359, -0.004514409229159355, -0.017205506563186646, -0.0339348241686821, 0.00016036178567446768, -0.012030070647597313, -0.009248116984963417, 0.01774435304105282, -0.009204257279634476, -0.004288845229893923, 0.010839594528079033, -0.031854625791311264, 0.020238086581230164, 0.008414783515036106, 0.00927317887544632, 0.03711777925491333, 0.00441729137673974, 0.05914784595370293, 0.013157889246940613, 0.031428560614585876, 0.0005893638008274138, -0.008778192102909088, 0.015626560896635056, -0.02365913800895214, -0.006672929506748915, 0.0005400216905400157, -0.017330819740891457, 0.006992478389292955, -0.019110267981886864, 0.030476178973913193, -0.006923556327819824, -0.03563908487558365, -0.017506258562207222, -0.0013439843896776438, -0.0012617476750165224, 0.019786959514021873, 0.013283202424645424, 0.0011340847704559565, -0.03165412321686745, -0.025964902713894844, 0.027644099667668343, 0.004006890580058098, 0.01313282735645771, -0.007218042388558388, -0.007850874215364456, 0.0022979313507676125, 0.028771918267011642, 0.0378696583211422, -0.008859645575284958, -0.03937341645359993, 0.007487465627491474, 0.00879072304815054, 0.018471170216798782, -0.031979937106370926, 0.022493725642561913, -0.009254381991922855, 0.016528815031051636, 0.0138596436008811, -0.032406002283096313, -0.0038565148133784533, -0.013583954423666, 0.01635337620973587, 0.05634082853794098, 0.0068859620951116085, -0.02407267317175865, 0.010275685228407383, -0.024548862129449844, 0.04438594728708267, -0.016240594908595085, 0.020451119169592857, 0.02043858915567398, 0.0035933570470660925, -0.0037186702247709036, -0.0189348291605711, -0.006754383444786072, -0.035714272409677505, -0.0025971168652176857, 0.0051378426142036915, -0.03724309429526329, 0.015325808897614479, -0.024122796952724457, -0.017907261848449707, 0.027869664132595062, 0.001771615818142891, -0.015375933609902859, 0.006898493506014347, -0.009874682873487473, 0.012493729591369629, 0.030952367931604385, -0.013583954423666, 0.03443607687950134, 0.0037781940773129463, 0.03268169239163399, 0.023195479065179825, 0.008095234632492065, -0.043283190578222275, -0.00843358039855957, 0.003646615194156766, 0.016917286440730095, 0.0013283202424645424, -0.015664154663681984, -0.0034805750474333763, 0.011015033349394798, 0.015263152308762074, -0.012067664414644241, 0.047819528728723526, -0.009122803807258606, 0.0029495602939277887, 0.017781948670744896, 0.002379385055974126, 0.034912265837192535, 0.023546356707811356, 0.00854636263102293, 0.003818920813500881, 0.015877187252044678, 0.002037906553596258, -0.044862136244773865, 0.0043765646405518055, -0.013959893956780434, 0.007725561037659645, 0.008283204399049282, 0.000596021069213748, -0.005297617055475712, -0.035588957369327545, -0.00471491040661931, 0.003568294458091259, -0.03531327098608017, -0.04664158448576927, 0.016553878784179688, -0.012637839652597904, 0.004987466614693403, -0.01641603372991085, 0.01879698596894741, -0.012355884537100792, -0.016102749854326248, -0.009649119339883327, 0.012725559063255787, 0.017681697383522987, 0.013170421123504639, 0.001636904082261026, -0.00048206435167230666, 0.013684204779565334, -0.023032572120428085, 0.05130323767662048, -0.02086465433239937, -0.03443607687950134, -0.023157885298132896, 0.005654759705066681, -0.011146612465381622, 0.008038843981921673, 0.030626554042100906, -0.01832079514861107, -0.01741853915154934, -0.007781951688230038, -0.018045105040073395, 0.030275678262114525, 0.011597739532589912, 0.011842100881040096, 0.03152880817651749, -0.0037092717830091715, 0.01442355290055275, -0.018045105040073395, 0.007650373037904501, -0.019686708226799965, 0.001929823774844408, 0.004495612345635891, 0.02394735813140869, -0.022681694477796555, -0.028220539912581444, -0.03799497336149216, 0.03035086579620838, 0.009166663512587547, -0.0026597734540700912, -0.02295738458633423, 0.003511903341859579, 0.005213030613958836, -0.011466161347925663, 0.026165403425693512, 0.009479946456849575, -0.011835834942758083, -0.00501252943649888, -0.012844606302678585, -0.02736840955913067, 0.05283205956220627, -0.025739338248968124, -0.02031327597796917, -0.015162901021540165, 0.010263154283165932, -0.035588957369327545, 0.006798243150115013, 0.01070175040513277, 0.018583953380584717, -0.019486207515001297, 0.02098996751010418, 0.019147861748933792, 0.04568920657038689, -0.016716785728931427, 0.01223057135939598, 0.016177939251065254, 0.013997488655149937, -0.014912274666130543, 0.01205513346940279, 0.015075181610882282, -0.0011262526968494058, 0.028796982020139694, 0.009956136345863342, -0.007418543566018343, -0.002059836173430085, 0.019874678924679756, -0.013358390890061855, -0.007424809038639069, -0.01007518358528614, -0.0018076434498652816, 0.03353382274508476, 0.020513776689767838, 0.005206764675676823, 0.005244358908385038, 0.023546356707811356, 0.05588970333337784, -0.019498739391565323, -0.015363402664661407, 0.030626554042100906, -0.0011121549177914858, -0.03689221665263176, -0.014273177832365036, 0.0012687965063378215, -0.03937341645359993, 0.035689208656549454, -0.01329573430120945, 0.038095224648714066, -0.008088969625532627, 0.03380950912833214, 0.001943921553902328, -0.025488711893558502, 0.0024780691601336002, -0.00013226420560386032, -0.008295736275613308, -0.008333330042660236, -0.010858391411602497, -0.0002615913690533489, 0.005159772466868162, -0.0015718978829681873, -0.04365913197398186, 0.0009641287033446133, 0.01006265264004469, 0.017080193385481834, -0.013634080067276955, 0.05122805014252663, 0.023345855996012688, 0.0075814505107700825, -0.008753129281103611, 0.02228069305419922, 0.009605259634554386, -0.0008474307251162827, -0.0008145360043272376, -0.013170421123504639, -0.00552944652736187, -0.018483702093362808, 0.018496233969926834, -0.017042599618434906, 0.015626560896635056, -0.013233077712357044, 0.009479946456849575, 0.029724299907684326, -0.021942347288131714, -0.009805760346353054, 0.024862146005034447, 0.0037593969609588385, 0.010469920933246613, -0.032305750995874405, 0.021679189056158066, 0.05523807182908058, -0.023182949051260948, 0.031403496861457825, 0.005388468969613314, 0.00846490915864706, -0.020877184346318245, -0.010451124049723148, 0.005003130994737148, -0.004996865056455135, 0.006036965176463127, -0.01221804041415453, -0.020426057279109955, -0.04614033177495003, 0.015513778664171696, -0.024185454472899437, -0.02041352540254593, -0.02176690846681595, -0.01282580941915512, 0.0023621544241905212, 0.009711775928735733, 0.026967408135533333, 0.008458643220365047, 0.03235587850213051, 0.03929822891950607, 0.00760651333257556, -0.026340842247009277, 0.008583956398069859, 0.014436084777116776, 0.014761898666620255, 0.015112776309251785, -0.03055136650800705, 0.008327064104378223, 0.026967408135533333, -0.013082701712846756, 0.018884703516960144, -0.007619044743478298, -0.03596489876508713, -0.017205506563186646, -0.007186714094132185, 0.01067042164504528, -0.021428562700748444, -0.011773178353905678, 0.004671050701290369, -7.91774073150009e-06, -0.016917286440730095, -0.0061497469432652, -0.001614974346011877, 0.02507517859339714, -0.017819542437791824, -0.0029573922511190176, -0.008320799097418785, 0.01989974081516266, -0.013809517957270145, -0.018245607614517212, 0.017518790438771248, 0.05010022968053818, 0.03749372065067291, 0.007850874215364456, -0.06766914576292038, 0.0026362771168351173, 0.037518780678510666, -1.1607383385126013e-05, -0.03010023944079876, -0.00962405651807785, 0.005845862440764904, 0.0026425428222864866, -0.04005010798573494, -0.009248116984963417, -0.006347115151584148, -0.03927316889166832, -0.0045426045544445515, 1.622708441573195e-05, 0.01850876398384571, 0.021416030824184418, 0.022807009518146515, -0.011290722526609898, -0.026065152138471603, -0.014323302544653416, -0.006560147739946842, -0.047919780015945435, 0.037644095718860626, 0.0008231513202190399, 0.007700498215854168, 0.053233060985803604, 0.04471176117658615, 0.013646611012518406, -0.02726816013455391, 0.001735588302835822, 0.05739346146583557, -0.007863405160605907, -0.017493726685643196, -0.009680447168648243, -0.014523804187774658, 0.020012523978948593, 0.021140342578291893, -0.002528194570913911, 0.006572679150849581, 0.00786967109888792, 0.005278820171952248, -0.011234331876039505, -0.014511272311210632, 0.007518793921917677, 0.013997488655149937, 0.030952367931604385, -0.04889722540974617, 0.005513782147318125, 0.01680450513958931, -0.02285713329911232, 0.03373432159423828, 0.0019752499647438526, -0.016077687963843346, -0.015588966198265553, -0.012581449002027512, -0.013508766889572144, 0.006262528710067272, -0.036065150052309036, 0.0026597734540700912, -0.010256888344883919, -0.015877187252044678, -0.016340846195816994, -0.008389720693230629, 0.042280685156583786, 0.0161278136074543, 0.01437342818826437, 0.0071177915669977665, 0.01773182302713394, -0.008609019219875336, 0.0013721799477934837, 0.007913530804216862, 0.02601502649486065, 0.004793231375515461, 0.000848997151479125, 0.018709266558289528, 0.0014160395367071033, 0.006954884622246027, -0.035814523696899414, -0.0042669158428907394, 0.012556386180222034, -0.009154131636023521, 0.01477443054318428, -0.03235587850213051, 0.043609004467725754, -0.0057330806739628315, -0.02140350081026554, -0.011422301642596722, -0.039348356425762177, 0.013483704067766666, 0.029348358511924744, 0.018822047859430313, -0.017957385629415512, -0.004718043375760317, -0.004185461904853582, -0.004432955756783485, -0.01545112207531929, 0.06375937163829803, 0.016654128208756447, -0.005924182943999767, -0.0023950492031872272, -0.009636587463319302, 0.027694225311279297, -0.010225559584796429, 0.0067857117392122746, 0.015275683254003525, 0.005532579496502876, 0.024511268362402916, -0.02999998815357685, -0.0006473211687989533, 0.02919798344373703, 0.019047612324357033, -0.01170425582677126, -0.0245989877730608, -0.048596471548080444, -0.005025060847401619, -0.03553883358836174, -0.023671669885516167, -0.025714276358485222, -0.03255637735128403, 0.051328301429748535, -0.005407265853136778, 0.012788215652108192, -0.0017214905237779021, 0.005300750024616718, 0.028721792623400688, -0.005560774821788073, -0.028596479445695877, -0.0022979313507676125, -0.0086278161033988, -0.009310773573815823, -0.01218671165406704, 0.011359645053744316, 0.01561402902007103, -0.03859647735953331, -0.027543848380446434, 0.012493729591369629, 0.0016870293766260147, -0.007857140153646469, 0.001326753874309361, -0.017919791862368584, -0.01075187511742115, 0.02353382483124733, 0.013095232658088207, -0.010413529351353645, 0.0013377188006415963, 0.021140342578291893, -0.02807016484439373, -0.019774427637457848, 0.00959272775799036, 0.004812028259038925, -0.011196737177670002, -0.027117783203721046, 0.019235581159591675, -0.0361904613673687, -0.007098994683474302, 0.0104636549949646, 0.045213013887405396, -0.0006864815368317068, -0.03255637735128403, -0.005977441091090441, 0.01453633513301611, -0.017619039863348007, 0.010388467460870743, -0.018358388915657997, -0.04187968373298645, 0.0029464273247867823, 0.03152880817651749, 0.0031046352814882994, 0.017694229260087013, -0.0010722113074734807, -0.005639095325022936, 0.008796988986432552, -0.004082078579813242, 0.007418543566018343, -0.024135328829288483, 0.022656632587313652, 0.011604005470871925, -0.019661646336317062, 0.04874684661626816, -0.03804509714245796, 0.024185454472899437, -0.02919798344373703, -0.003916038665920496, 0.02053883858025074, -0.0075313253328204155, -0.005764408968389034, -0.007675435394048691, -0.0010565471602603793, 0.010689218528568745, -0.010200497694313526, 0.02221803553402424, 0.03646615147590637, 0.007293230388313532, 0.011635334230959415, 0.021416030824184418, -0.013959893956780434, -0.01699247397482395, -0.0006665097898803651, -0.00671052373945713, 0.0334085077047348, 0.004320173524320126, -0.014110269956290722, -0.00016662744747009128, 0.025614025071263313, 0.014949868433177471, 0.034360889345407486, -0.011729318648576736, 0.010181699879467487, -0.0012789781903848052, 0.0019470544066280127, -0.0019172924803569913, -0.0017731823027133942, 0.0014121235581114888, 0.018370920792222023, -0.004846489522606134, 0.01038220152258873, -0.007111526094377041, 0.010563905350863934, -0.002064535627141595, -0.01145989540964365, 0.022030066698789597, -0.0068922280333936214, 0.0011466160649433732, -0.0036058882251381874, -0.022042598575353622, 0.011021299287676811, 0.02907267026603222, -0.00843358039855957, -0.0036748105194419622, 0.0181202944368124, -0.007424809038639069, 0.004291978199034929, -0.006002503912895918, 0.005244358908385038, 0.00989974569529295, 0.0053195469081401825, 0.0047744340263307095, -0.013709267601370811, -0.029147857800126076, -0.016140345484018326, -0.014110269956290722, 0.010375935584306717, 0.01661653444170952, -0.003159459913149476, 0.008997490629553795, 0.009912276640534401, 0.023959890007972717, -0.012268166057765484, 0.03132830932736397, -0.0010416662553325295, -0.029147857800126076, -0.007061400916427374, -0.0038063894025981426, 0.01922304928302765, -0.014498741365969181, 0.012869669124484062, -0.013170421123504639, -0.004432955756783485, -0.009855885989964008, 0.006134083028882742, 0.02694234624505043, -0.007186714094132185, -0.010476185940206051, -0.01976189762353897, 0.008596488274633884, -0.014160395599901676, 0.01651628501713276, -0.029147857800126076, 0.015075181610882282, 0.00517543638125062, -2.5185023332596757e-05, -0.012124055065214634, -0.010394732467830181, -0.00746866874396801, 0.017719291150569916, -0.009724306873977184, -0.026115277782082558, -0.028947357088327408, 0.00288533722050488, 0.005131577141582966, -0.029573922976851463, 0.010150372050702572, 0.04370925575494766, 0.0018781321123242378, 0.010037589818239212, -0.009692979045212269, 0.0020191094372421503, 0.008245610632002354, 0.0009985897922888398, 0.022744351997971535, -0.01289473194628954, 0.018684202805161476, -2.5111598006333224e-05, 0.022619038820266724, -0.00021596952865365893, 0.025864651426672935, 0.010570171289145947, 0.00978696346282959, -0.01709272526204586, -0.012387213297188282, -0.014486209489405155, -0.011773178353905678, -0.023007510229945183, -0.0001268796477233991, 0.014724304899573326, 0.03213031217455864, -0.015075181610882282, -0.010087715461850166, 0.01094611082226038, -0.02160400152206421, 0.011409769766032696, 0.004862153436988592, -0.008558893576264381, -0.012318290770053864, 0.010112778283655643, 0.0033928558696061373, -0.010770672932267189, 0.006779445800930262, -0.023395981639623642, -0.03533833101391792, -0.010914782993495464, -0.005322679411619902, 0.013646611012518406, -0.012556386180222034, 0.0020676683634519577, -0.0209273099899292, -0.02804510109126568, 0.010595234110951424, -0.023458637297153473, -0.022092722356319427, -0.03714284300804138, 0.01941101998090744, 0.012763152830302715, -0.0030184825882315636, -0.004727441817522049, -0.01290726289153099, 0.039097730070352554, 0.020739341154694557, 0.020789464935660362, 0.025739338248968124, -0.008565159514546394, -0.011416035704314709, -0.014962400309741497, 0.024385955184698105, 0.010626561939716339, -0.004517542198300362, -0.01661653444170952, 0.02536339871585369, -0.0011442664545029402, 0.016629066318273544, 0.021077685058116913, -0.025451118126511574, -0.014962400309741497, -0.02439848706126213, 0.002424811013042927, 0.017907261848449707, -0.005447993054986, -0.016954880207777023, 0.001674498082138598, -0.013408515602350235, 0.02324560470879078, 0.007976187393069267, -0.004987466614693403, 0.0011278190650045872, 0.0025595228653401136, 0.007926061749458313, -0.0007640191470272839, 0.010996236465871334, -0.008953630924224854, -0.00017142458818852901, -0.007756889332085848, 0.004483080934733152, -0.03651627525687218, 0.034335825592279434, -0.00919172540307045, 0.020288212224841118, -0.046892210841178894, 0.00264410930685699, -0.0025485579390078783, -0.02201753482222557, -0.005075186025351286, -0.01731828972697258, 0.017781948670744896, 0.010745610110461712, -0.00032385639497078955, -0.023746857419610023, -0.0021052623633295298, 0.009279444813728333, 0.019586458802223206, 0.0059649101458489895, -0.012957388535141945, 0.0061810752376914024, -0.001998746069148183, -0.03719296678900719, -0.02289472706615925, -0.009630322456359863, 0.006203005090355873, 0.02929823473095894, 0.01793232373893261, -0.018245607614517212, -0.011967414058744907, 0.006616538856178522, 0.01464911736547947, 0.0031469285022467375, -0.004686715081334114, -0.021654127165675163, 0.009849620051681995, -0.006904758978635073, 0.010689218528568745, -0.02365913800895214, -0.012224306352436543, -0.010407264344394207, -0.0063063884153962135, 0.028220539912581444, 0.02072680927813053, 0.013646611012518406, -0.009918542578816414, 0.02704259566962719, -0.027343347668647766, 0.002722430042922497, 0.006610272917896509, 0.010444858111441135, -0.016102749854326248, 0.035714272409677505, 0.004439221229404211, -0.01329573430120945, -0.0045081437565386295, 0.021328313276171684, 0.013471173122525215, 0.002620612969622016, 0.02308269776403904, 0.016102749854326248, 0.0012194544542580843, -0.024586455896496773, 0.002932329662144184, -0.020363399758934975, 0.02671678178012371, -0.011159143410623074, 0.0014465845888480544, 0.00927317887544632, 0.004013156518340111, 0.036065150052309036, -0.00036125455517321825, 0.00949874334037304, 0.026741843670606613, 0.017293225973844528, 0.002467104233801365, 0.03160399943590164, -0.016716785728931427, -0.012199243530631065, -0.014949868433177471, 0.00676691485568881, -0.0006876564002595842, 0.03373432159423828, 0.006622804328799248, -0.02082705870270729, -0.02115287445485592, -0.011390972882509232, -0.00017044557898771018, 0.015877187252044678, 0.00941728986799717, 0.007493731565773487, 0.002760024042800069, -0.008696738630533218, 0.012130321003496647, -0.01680450513958931, -0.003771928371861577, -0.0014959267573431134, -0.014035082422196865, -0.011127815581858158, 0.021704252809286118, -0.022192973643541336, -0.016817035153508186, 0.005811401177197695, 0.0029855878092348576, 0.012481197714805603, -0.019523801282048225, -0.0361904613673687, -0.01657894067466259, 0.012443603947758675, 0.007048869505524635, 0.02691728249192238, 0.0023699866142123938, -0.025889713317155838, 0.01719297654926777, 0.01414786372333765, -0.009517540223896503, 0.026791969314217567, -0.03170424699783325, -0.01580199971795082, 0.020651621744036674, 0.01021929457783699, 0.003869045991450548, 0.012687965296208858, 0.02131578139960766, -0.023834576830267906, 0.0063126543536782265, 0.016278188675642014, 0.006303255446255207, 0.016403501853346825, 0.022293224930763245, 0.025037584826350212, -0.005144108086824417, 0.012750621885061264, -0.008251876570284367, 0.012869669124484062, -0.01873432844877243, 0.022005004808306694, 0.020325805991888046, 0.002951126778498292, 0.015701748430728912, -0.031177932396531105, -0.03556389734148979, 0.007305761333554983, -0.012431073002517223, -0.002871239557862282, -0.023997483775019646, 0.006184208206832409, -0.0021318914368748665, 0.01625312678515911, -0.03744359314441681, -0.006911024916917086, -0.006434834562242031, -0.014511272311210632, 0.01996239833533764, 0.0060244337655603886, -0.003383457427844405, -0.00595551123842597, 0.039999984204769135, -0.018746860325336456, 0.016954880207777023, -0.00237468583509326, -0.0015836460515856743, 0.001305607263930142, -0.0010667289607226849, -0.03348369523882866, -0.013897237367928028, -0.003067041514441371, 0.0013557325582951307, -0.007850874215364456, 0.016315782442688942, -0.003320800606161356, -0.025664150714874268, 0.006936087738722563, 0.007788217626512051, -0.01521302666515112, 0.01989974081516266, -0.02987467497587204, 0.015012525022029877, -0.004630323965102434, 0.007556388154625893, -0.04338344186544418, 0.009235585108399391, -0.019373426213860512, 0.027669161558151245, 0.009254381991922855, 0.007932327687740326, 0.0009312339825555682, 0.04285712540149689, -0.014799493364989758, 0.007073931861668825, -0.011322050355374813, -0.05468669533729553, -0.014736836776137352, 0.014849618077278137, 0.019335832446813583, -0.015438590198755264, -0.003195487428456545, -0.005278820171952248, 0.016979943960905075, 0.010927313938736916, -0.006287591531872749, 0.015250620432198048, -0.030751867219805717, -0.004053883254528046, -0.0138596436008811, -0.008001250214874744, -0.030927306041121483, 0.02289472706615925, -0.0046741836704313755, 0.0033239335753023624, 0.003433582605794072, 0.02909773215651512, 0.009843354113399982, 0.009517540223896503, -0.008734332397580147, -0.001194391748867929, 0.05553882569074631, -0.0328320674598217, 0.024197986349463463, -0.028822043910622597, 0.0011607138440012932, -0.032882191240787506, -0.0018436709651723504, -0.0018546358915045857, 0.01454886607825756, -0.01766916550695896, -0.022042598575353622, -0.0368170291185379, 0.009229320101439953, -0.01600250042974949, 0.021027561277151108, 0.0469924621284008, -0.024473674595355988, -0.021879689767956734, 0.020914778113365173, 0.012474932707846165, -0.0029620914719998837, 0.00946741458028555, -0.005682955030351877, 0.009035084396600723, -0.03576439619064331, 0.02185462787747383, 0.024135328829288483, -0.01766916550695896, 0.004645988345146179, 0.015200495719909668, -0.00461152708157897, 0.010958642698824406, 0.020263150334358215, -0.0446867011487484, -0.008565159514546394, 0.03238093852996826, -0.004552003461867571, -0.0001984452537726611, -0.0054354616440832615, -0.019360894337296486, 0.017180444672703743, -0.03250625357031822, 0.012775683775544167, -0.0020535707008093596, 0.018358388915657997, -0.01676691137254238, 0.0074812001548707485, -0.013208014890551567, -0.024511268362402916, -0.007343355566263199, -0.019172925502061844, -0.005895987618714571, 0.012380947358906269, -0.005134709645062685, -0.0077631548047065735, 0.018659140914678574, 0.006510022561997175, 0.0006332234479486942, 0.0011356511386111379, 0.0005803569220006466, 0.004783832933753729, -0.007788217626512051, -0.008458643220365047, -0.006262528710067272, 0.014110269956290722, -0.003869045991450548, -0.012167914770543575, -0.011954882182180882, -0.03614033758640289, -0.007030072622001171, 0.005789471324533224, -0.0026597734540700912, 0.013934832066297531, 0.03228069096803665, 0.0024185453075915575, 0.00045386888086795807, 0.0022572046145796776, 0.02819547802209854, -0.010852126404643059, -0.002611214527860284, -0.006090223323553801, -0.000683348742313683, 0.025162898004055023, -0.00827067345380783, 0.012713027186691761, 0.01754385232925415, 0.004439221229404211, -0.006622804328799248, 0.0023872170131653547, 0.00477130152285099, -0.0001693686645012349, 0.0075814505107700825, -0.0017653502291068435, 0.004201126284897327, -0.009755635634064674, -0.016729317605495453, -0.009530071169137955, 0.001790412818081677, -0.01770675927400589, 0.016340846195816994, 0.0061309500597417355, 0.0288471058011055, -0.006760648917406797, -0.0016823301557451487, 0.005805135704576969, -0.0016588339349254966, -0.03137843310832977, 0.025100240483880043, 0.0025532571598887444, -0.007443605922162533, -0.00590851902961731, 0.04914785176515579, 0.015037587843835354, 0.02025061845779419, -0.01097743958234787, -0.029724299907684326, -0.011773178353905678, -0.01770675927400589, 0.002625312190502882, 0.015037587843835354, -0.01342104747891426, -0.001990914111956954, 0.009448617696762085, -0.0018937962595373392, 0.0062405988574028015, -0.028120290488004684, 0.009291976690292358, -0.005115912761539221, -0.002274435246363282, 0.0002682486374396831, -3.0080071155680344e-05, 0.0367669016122818, 0.0013776624109596014, -0.02624059095978737, 0.0019501872593536973, 0.0010479319607838988, 0.009768166579306126, -0.002963657956570387, 0.007399746682494879, -0.0027506256010383368, 0.032656628638505936, 0.010087715461850166, -0.00790099985897541, -0.01735588349401951, -0.012011273764073849, -0.009667916223406792, 0.013220545835793018, 0.010601500049233437, 0.018333327025175095, -0.022105254232883453, 0.02066415175795555, -0.005454258527606726, -0.017142850905656815, 0.009197991341352463, 0.021077685058116913, -0.025100240483880043, 0.00738721527159214, 0.01657894067466259, -0.012656636536121368, 0.01374686136841774, 0.009755635634064674, -0.01442355290055275, -0.021842096000909805, 0.00315476069226861, 0.013609017245471478, 0.013997488655149937, -0.006572679150849581, 0.00501252943649888, -0.007669169921427965, 0.004436088260263205, 0.0018969291122630239, -0.0013753128005191684, -0.016015030443668365, -0.000501252943649888, -0.02887216955423355, -0.022443599998950958, -0.0005921050324104726, -0.012719293124973774, -0.002838344778865576, 0.0073496210388839245, -0.020839590579271317, -0.011879694648087025, -0.007443605922162533, 0.01854635775089264, -0.014987463131546974, 0.0061904736794531345, 0.03290725499391556, 0.003850249107927084, 0.016052626073360443, 0.026416029781103134, 0.02433582954108715, -0.0037092717830091715, 0.00412907125428319, -0.004639722406864166, -0.017907261848449707, -0.0012742789695039392, -0.008201750926673412, 0.012286962941288948, -0.013734330423176289, 0.013408515602350235, -0.01577693596482277, -0.012600245885550976, -0.014962400309741497, 0.005476188380271196, 0.009906010702252388, 0.0029808885883539915, -0.0026785703375935555, 0.009248116984963417, -0.026641594246029854, 0.010250622406601906, -0.012706762179732323, 0.029598986729979515, 0.0019564528483897448, -0.003988093696534634, 0.005247491877526045, -0.004414158873260021, 0.009780697524547577, 0.02070174552500248, 0.002766289748251438, -0.038320787250995636, 0.009329570457339287, -0.007612778805196285, -0.005031326320022345, -0.011190472170710564, 0.011196737177670002, -0.02704259566962719, 0.003969296813011169, 0.018170418217778206, 0.003771928371861577, -0.004467417020350695, -0.011284456588327885, -0.010501248762011528, -0.00447368249297142, -0.0016118414932861924, -0.007318292744457722, 0.008364658802747726, 0.018421044573187828, -0.034335825592279434, 0.002556389896199107, 0.020551370456814766, -0.00010945327812805772, 0.0005834897747263312, -0.0013988090213388205, 0.024223048239946365, -0.011522551998496056, -0.0018812649650499225, 0.008051374927163124, 0.013208014890551567, 0.012211774475872517, -0.001090225181542337, -0.02115287445485592, 0.00011356511822668836, 0.0008000466623343527, 0.0034586451947689056, 0.006209270562976599, -0.010263154283165932, 0.005620298441499472, -0.003847116371616721, -0.030400991439819336, -7.415997970383614e-05, -0.009711775928735733, 0.02639096789062023, -0.03548870608210564, 0.015413527376949787, -0.008609019219875336, -0.006199872121214867, 0.024060141295194626, -0.03165412321686745, 0.012199243530631065, -0.018947361037135124, 0.012224306352436543, 0.03270675241947174, 0.00499059958383441, -0.009755635634064674, -0.005780072882771492, -0.0010040722554549575, -0.010288216173648834, 0.010908517055213451, 0.010858391411602497, 0.004805762320756912, -0.0005235743592493236, -0.003859647549688816, 0.017080193385481834, -0.005388468969613314, -0.016240594908595085, 0.004633456934243441, -0.006159145385026932, -0.006337716709822416, 0.008540096692740917, 0.00013373271212913096, 0.02005011774599552, 0.011447363533079624, 0.0032769411336630583, 0.01145989540964365, -0.007781951688230038, -0.004219923168420792, -0.012092727236449718, 0.009010021574795246, -0.010375935584306717, -0.014636585488915443, 0.001823307597078383, -0.02172931469976902, 0.031278181821107864, 0.012305759824812412, 0.0024702372029423714, -0.007499997038394213, -0.03350875899195671, 0.001293859095312655, 0.019624052569270134, 0.017142850905656815, -0.00010553724132478237, -0.010388467460870743, 0.00644736597314477, 0.0053038825280964375, 0.008803254924714565, 0.007324558682739735, -0.014586460776627064, -0.018433576449751854, -0.015639090910553932, -0.02134084329009056, 0.005870924796909094, -0.01809523068368435, -0.011804507113993168, 0.009830823168158531, 0.008496236987411976, -0.017067663371562958, 0.028922295197844505, -0.004818293731659651, -0.008489971980452538, -0.0006351814372465014, -0.0034429810475558043, -0.006387841887772083, -0.0027913523372262716, -0.01786966808140278, 0.0015131572727113962, -0.0025861519388854504, -0.0029197982512414455, -0.009022552520036697, 0.013057638891041279, 0.019812021404504776, -0.003975562285631895, 0.029273170977830887, -0.002114660805091262, -0.030726805329322815, 0.022255631163716316, 0.006403506267815828, 0.026165403425693512, 0.01397242583334446, -0.009354633279144764, 0.026165403425693512, -0.00253446027636528, -0.02626565471291542, 0.007750623393803835, 0.0027631567791104317, -0.0016181070823222399, 0.006409771740436554, -0.013659142889082432, -0.0015452688094228506, 0.003944233991205692, 0.0036340837832540274, -1.9702569261426106e-05, 0.006992478389292955, 0.002839911263436079, -0.013571423478424549, 0.008283204399049282, 0.02530074119567871, 0.0035463646054267883, 0.0009312339825555682, 0.00698621291667223, 0.012142851948738098, -0.03218043968081474, -0.01054510846734047, -0.0161278136074543, -0.011234331876039505, -0.000846647541038692, -0.0072493706829845905, 0.022431068122386932, -0.01892229914665222, 0.006331451237201691, -0.004172930493950844, -0.013822049833834171, 0.018583953380584717, -0.0089035052806139, 0.0070175412110984325, 0.005657892674207687, 0.0018170418916270137, -0.012969919480383396, 0.00989974569529295, -0.0019799491856247187, -0.004003757610917091, 5.962168870610185e-05, 0.00021185768127907068, 0.03100249357521534, -0.006030699238181114, -0.019335832446813583, -0.009266913868486881, -0.018533827736973763, 0.0024060141295194626, 0.01625312678515911, 0.0022947986144572496, 0.005607767030596733, 0.01261904276907444, -0.008214282803237438, -0.0027819538954645395, 0.007944858632981777, -0.006691726855933666, -0.017794478684663773, -0.015288214199244976, -0.0004550436860881746, 0.011127815581858158, 0.011209269054234028, 0.0047900984063744545, -0.013884706422686577, -0.0124561358243227, 0.0032393471337854862, -0.004733707290142775, -0.0024812021292746067, 0.029924800619482994, 0.018170418217778206, -0.005159772466868162, 0.011447363533079624, -0.0030498108826577663, -0.013308265246450901, 0.005281952675431967, 0.01253758929669857, -0.007669169921427965, -0.009492477402091026, 0.013847112655639648, 0.02726816013455391, 0.004755637142807245, 0.019147861748933792, -0.023070165887475014, 0.011535082943737507, 0.021553875878453255, -0.004439221229404211, 0.0020175431855022907, 0.005538844969123602, 0.0006481044110842049, 0.00949874334037304, 0.01699247397482395, -0.0021553875412791967, 0.027418535202741623, 0.013082701712846756, -0.010281951166689396, -0.0038251865189522505, -0.007080197799950838, -0.0032111515756696463, -0.00024964744807220995, -0.025664150714874268, -0.015325808897614479, 0.0044423541985452175, -0.008245610632002354, 0.0011473993072286248, 0.0013110897270962596, -0.008577690459787846, -0.008045109920203686, 0.01696741208434105, 0.013258140534162521, 0.003273808164522052, 0.007192979566752911, 0.009768166579306126, -0.010338341817259789, 0.003850249107927084, 0.015476183965802193, -0.016666660085320473, -0.015488715842366219, -0.007568919565528631, 0.009147865697741508, 0.014924806542694569, -0.0028414775151759386, -0.0022117786575108767, -0.001948620774783194, 0.020626557990908623, -0.001998746069148183, -0.0223433505743742, -0.026641594246029854, 0.01912279985845089, 0.012111524119973183, 0.017506258562207222, -0.017180444672703743, -0.0029244977049529552, 0.004041351843625307, -0.004974935203790665, -0.01793232373893261, 0.0008724933722987771, -0.009010021574795246, 0.003414785722270608, 0.0033740587532520294, 0.013922300189733505, 0.003966163843870163, -0.0046585192903876305, 0.014310771599411964, -0.013546360656619072, -0.010413529351353645, -0.003859647549688816, 0.012399744242429733, -0.008201750926673412, -0.00245457305572927, 0.0029432945884764194, -0.0036434822250157595, 0.022142847999930382, 0.0052036321721971035, 0.007593981921672821, 0.015125307254493237, -0.005372805055230856, -0.0043107750825583935, 0.0019924803636968136, -0.014335834421217442, 0.005895987618714571, 0.005510649643838406, 0.004620925523340702, -0.012832075357437134, -0.022556381300091743, -0.003145362250506878, 0.0028132821898907423, 0.001934522995725274, -0.01713031902909279, 0.021478688344359398, 0.00822681374847889, 0.009924808517098427, 0.008408517576754093, 0.003405387047678232, 0.003071740735322237, -0.009291976690292358, -0.021867159754037857, 0.013433578424155712, 0.008001250214874744, 0.002608081791549921, 0.010169168934226036, -0.0033928558696061373, -0.0021021293941885233, 0.03669171407818794, -0.012036336585879326, -0.0018499366706237197, 0.019812021404504776, 0.002153821289539337, -0.00902881845831871, 0.04285712540149689, -0.001248433138243854, -0.00509398290887475, 0.01947367750108242, -0.010175434872508049, -0.007111526094377041, -0.01766916550695896, -0.011322050355374813, -0.0356641449034214, -0.025664150714874268, 0.017180444672703743, -0.014736836776137352, -0.014924806542694569, 0.006118418648838997, -0.0197994913905859, -0.010595234110951424, 0.005128444172441959, 0.03112780675292015, 0.013258140534162521, 0.002760024042800069, -0.0009398492402397096, 0.02156640775501728, -0.006716789212077856, -0.02839597873389721, -0.0025438587181270123, 0.03122805804014206, -0.015952374786138535, 0.006033832207322121, -0.019010016694664955, 0.0038659132551401854, 0.007142854388803244, -0.019135331735014915, 0.009260647930204868, -0.03350875899195671, 0.0028179814107716084, -0.0068859620951116085, 0.011090220883488655, -0.018621547147631645, 0.005009396467357874, 0.014598991721868515, 0.024035077542066574, 0.029047608375549316, -0.020488712936639786, -0.0009805760346353054, -0.010952376760542393, 0.021553875878453255, 0.03147868439555168, -0.02289472706615925, -0.008652878925204277, 0.03689221665263176, 0.0009664783137850463, 0.014235583133995533, 0.01075187511742115, -0.004974935203790665, -0.002769422484561801, 5.604830221273005e-05, -0.01402255054563284, 0.007756889332085848, 0.0350877046585083, -0.0048558879643678665, 0.032631564885377884, 0.022706758230924606, 0.018746860325336456, -0.00479636387899518, 0.005147241055965424, 0.027343347668647766, -0.007286964450031519, 0.00701127527281642, 0.0026331443805247545, 0.004874684847891331, 0.00701127527281642, 0.02681703120470047, 0.004088344052433968, -0.0038941088132560253, 0.009686713106930256, 0.006528819445520639, -0.009548868052661419, -0.002608081791549921, 0.007543856743723154, -0.005100248847156763, 0.00315476069226861, 0.027869664132595062, 0.01931076869368553, -0.0010479319607838988, 0.005711150821298361, 0.022431068122386932, -0.03285713121294975, 0.029348358511924744, 0.011209269054234028, 0.0017058263765648007, -0.0026566404849290848, 0.007537590805441141, -0.0005329728592187166, 0.013107764534652233, -0.008358392864465714, -0.005811401177197695, -0.008978692814707756, 0.0010917915496975183, -0.0036058882251381874, -0.001730889081954956, 0.00698621291667223, -0.007832077331840992, -0.005447993054986, -0.019523801282048225, -0.024473674595355988, 0.018884703516960144, -0.02131578139960766, -0.033007506281137466, -0.007324558682739735, 0.007957390509545803, 0.00012893557141069323, 0.01182956900447607, 0.04355888068675995, -0.024711769074201584, 0.019949866458773613, 0.021466156467795372, 0.01049498375505209, -0.012061398476362228, -0.010726813226938248, 0.0015624994412064552, -0.0038157880771905184, -0.011002502404153347, -0.0075814505107700825, -0.009053881280124187, -0.0028242471162229776, 0.0006665097898803651, 0.02288219705224037, -0.005939847324043512, 0.0037844597827643156, -0.014360896311700344, 0.002545424969866872, -0.02088971622288227, 0.004924810025840998, 0.013546360656619072, -0.012775683775544167, -0.01651628501713276, -0.0012625308008864522, 0.010952376760542393, -0.007374683860689402, -0.004677316639572382, 0.014887211844325066, -0.0008380322251468897, 0.008045109920203686, 0.008991224691271782, -0.001865600817836821, -0.022105254232883453, -0.01889723539352417, -0.008283204399049282, 0.0021694854367524385, -0.007437340449541807, -0.026340842247009277, 0.010050121694803238, 0.014887211844325066, 0.01885964162647724, -0.004351502284407616, -0.0038565148133784533, -0.02070174552500248, 0.007080197799950838, 0.0012523491168394685, 0.016892224550247192, 0.004696113523095846, 0.008408517576754093, 0.002390349982306361, -0.01918545551598072, 0.018045105040073395, -0.02423558011651039, -0.016340846195816994, -0.006516288034617901, 0.018107762560248375, 0.010852126404643059, 0.005031326320022345, -0.010031324811279774, -0.013446110300719738, -0.01760650984942913, -0.008408517576754093, -0.0037499985191971064, 0.004075813107192516, -0.001813909038901329, 0.0012092726537957788, -0.015438590198755264, -0.00125313235912472, -0.02162906341254711, -0.002230575541034341, -0.026290716603398323, -0.00223684124648571, 0.002579886233434081, 0.03125312179327011, -0.011165409348905087, 0.015187963843345642, -0.015513778664171696, 0.016303252428770065, -0.025150366127490997, 0.008126563392579556, 0.008139094337821007, -0.010482451878488064, 0.01645362749695778, 0.0033928558696061373, 0.002310462761670351, -0.004921677056699991, -0.0106202969327569, 0.00045661008334718645, 0.014899743720889091, 0.02027568221092224, -0.01194235123693943, 0.0010252188658341765, -0.0043765646405518055, -0.020388463512063026, -0.024924801662564278, 0.024711769074201584, -0.001087875571101904, -0.03042605333030224, 0.006083957385271788, -0.011165409348905087, -0.0065538822673261166, -0.011936085298657417, -0.0012946423375979066, -0.008734332397580147, 0.001040883013047278, 0.00037378587876446545, -0.01010651234537363, 0.029147857800126076, -0.011033830232918262, 0.006109020207077265, 0.017005005851387978, -0.004320173524320126, 0.012857138179242611, -0.012406010180711746, -0.005469922441989183, 0.002991853514686227, -0.0009735272033140063, 0.005260022822767496, -0.029122795909643173, 0.01764410361647606, -0.003298870986327529, 0.0005592103116214275, -0.008909771218895912, -0.005598368588835001, 0.009642853401601315, -0.015250620432198048, -0.014335834421217442, 0.020977435633540154, -7.87613244028762e-05, 0.002431076718494296, 0.0036716777831315994, -0.004483080934733152, -0.009874682873487473, -0.01857142150402069, 0.018696734681725502, 0.007944858632981777, 0.029724299907684326, 0.0017637837445363402, -0.025864651426672935, -0.012387213297188282, -0.002274435246363282, -0.01616540737450123, -0.016265658661723137, 0.013308265246450901, 0.0030122168827801943, -1.4256827853387222e-05, 0.015513778664171696, 0.0033740587532520294, -0.014974931254982948, -0.010031324811279774, -0.01009398140013218, -0.02726816013455391, -0.01250626053661108, -0.02269422635436058, -0.01741853915154934, 0.016328314319252968, 0.011729318648576736, 0.004354634787887335, -0.020739341154694557, -0.00207706680521369, -0.018045105040073395, -0.01533833984285593, -0.003048244398087263, -0.0028837707359343767, -0.006998744327574968, -0.007894733920693398, -0.01832079514861107, 0.01832079514861107, 0.003433582605794072, 0.002854008926078677, -0.007587716449052095, 0.022380944341421127, -0.002816414926201105, 0.0015899116406217217, -0.002003445290029049, -0.0015805131988599896, -0.04120299220085144, 0.012211774475872517, 0.016152875497937202, -5.1251154218334705e-05, 0.003383457427844405, 0.02063908986747265, -0.007474934216588736, -0.013032576069235802, 0.003587091341614723, 0.019999992102384567, -0.01049498375505209, -0.022155379876494408, 0.018646609038114548, 0.006954884622246027, 0.0011286023072898388, 0.005839596502482891, 0.007355886977165937, -0.003024748293682933, 0.014523804187774658, 0.012387213297188282, -0.002119360025972128, 0.01600250042974949, 0.004962404258549213, -0.000981359276920557, -0.0038721789605915546, -0.019624052569270134, -0.04606514424085617, -0.004846489522606134, -0.011685458943247795, 0.01218671165406704, -0.019436081871390343, -0.013684204779565334, -0.00894736498594284, -0.0037938582245260477, 0.013809517957270145, -0.0029495602939277887, -0.009830823168158531, 0.010614030994474888, 0.014298239722847939, 0.014849618077278137, -0.00989974569529295, -0.00035107287112623453, 0.003348996164277196, 0.027819538488984108, 0.025100240483880043, 0.015438590198755264, 0.011522551998496056, -0.0037907252553850412, 0.0060651605017483234, -0.00954260304570198, 0.031403496861457825, 0.0025673548225313425, -0.018809515982866287, -0.01334585901349783, 0.030827054753899574, 0.0027615902945399284, -0.019260644912719727, -0.004965536762028933, -0.008796988986432552, 0.007380949333310127, -0.002416979055851698, 0.004915411584079266, -0.011127815581858158, -0.00622806791216135, 0.021904753521084785, 0.003781326813623309, -0.0090601472184062, -0.021804502233862877, -0.00914160069078207, -0.029348358511924744, 0.0010541975498199463, 0.024837082251906395, 0.007080197799950838, -0.0010557640343904495, 0.020839590579271317, 0.004993732552975416, 0.0038565148133784533, -0.015914781019091606, 0.003997492138296366, 0.0166791919618845, 0.001582079567015171, 0.013583954423666, -0.014561397954821587, 0.00733082415536046, -0.008878442458808422, 0.017330819740891457, -0.022030066698789597, 0.011660396121442318, -0.02053883858025074, -0.01057643722742796, 0.029598986729979515, -0.023458637297153473, -0.006318919826298952, -0.016466159373521805, 0.002886903705075383, 0.019260644912719727, 0.01918545551598072, -0.000541588116902858, 0.012474932707846165, 0.0028837707359343767, 0.006268794648349285, -0.01600250042974949, 0.003085838397964835, -0.0019971795845776796, 0.016829567030072212, -0.02088971622288227, -0.01353382971137762, 0.016115281730890274, -0.006162278354167938, -0.015375933609902859, -0.007725561037659645, -0.016666660085320473, 0.0013925433158874512, 0.008026313036680222, -0.0075814505107700825, -0.0008818918722681701, 0.029724299907684326, -0.0004910712596029043, 0.005112779792398214, -0.005645361263304949, -0.009855885989964008, -0.0011419168440625072, 0.004085211548954248, 0.016553878784179688, -0.0027850866317749023, 0.009987465105950832, -0.010607765056192875, -0.0005051689804531634, -0.00041118403896689415, 0.0034179184585809708, -0.0032581440173089504, -0.019335832446813583, -0.0032456128392368555, -0.013496235013008118, -0.00590851902961731, 0.020100243389606476, 0.019674178212881088, -0.005789471324533224, 0.002539159497246146, -0.008571425452828407, 0.006578944623470306, -0.02784460037946701, 0.0022008137311786413, 0.014624054543673992, -0.0027944850735366344, 0.007142854388803244, 0.009454883635044098, 0.030025050044059753, -0.02501252107322216, 0.02230575494468212, -0.026190465316176414, -0.007969921454787254, -0.017694229260087013, 0.006754383444786072, -0.00803257804363966, -0.020263150334358215, -0.013195483945310116, 0.0004906796384602785, 0.011134080588817596, 0.010288216173648834, -0.00039434508653357625, 0.009235585108399391, 0.0265914686024189, -0.0015335207572206855, 0.004683582112193108, -0.00843358039855957, 0.011954882182180882, 0.011760647408664227, 0.013784456066787243, 0.00015566253568977118, -0.005291351117193699, 0.020388463512063026, 0.01177944429218769, 0.013383453711867332, 0.014674179255962372, -0.008615285158157349, -0.011040096171200275, 0.014523804187774658, -0.025162898004055023, 0.008571425452828407, -0.009999996051192284, 0.0076629044488072395, 0.013483704067766666, -0.02218044176697731, 0.010933579877018929, 0.004097742959856987, -0.004959271289408207, -0.005050123203545809, 0.0029103998094797134, -0.031854625791311264, -0.014736836776137352, -0.044285695999860764, -0.01754385232925415, -0.01545112207531929, 0.026315778493881226, -0.021842096000909805, -0.014310771599411964, -0.011635334230959415, 0.021015029400587082, -0.009486211463809013, -0.001598526956513524, 0.03862153738737106, -0.014786961488425732, 0.0016212399350479245, -0.017167912796139717, -0.024022547528147697, 0.013258140534162521, 0.016842098906636238, 0.011535082943737507, 0.0012617476750165224, 0.008558893576264381, -0.010996236465871334, -0.022932322695851326, -0.0009594294242560863, -0.004689847584813833, 0.004927942994982004, -0.002462405012920499, 0.016917286440730095, -0.015601498074829578, -0.020375931635499, -0.004949872847646475, -0.021253123879432678, -0.002523495350033045, -0.0020895982161164284, 0.007293230388313532, 0.0046741836704313755, -0.018170418217778206, 0.0020801997743546963, -0.011447363533079624, -0.012957388535141945, 0.007687966804951429, -0.01883457973599434, -0.015689216554164886, -0.01754385232925415, 0.0004828475648537278, 0.006522553972899914, -0.004511276260018349, -0.013333328068256378, -0.010363404639065266, 0.006337716709822416, 0.013684204779565334, 0.0009868417400866747, -0.004736840259283781, -0.0020582699216902256, -0.00029057005303911865, -0.01786966808140278, -0.014436084777116776, 0.007637841627001762, 0.008176688104867935, 0.019461145624518394, -0.0015852124197408557, 0.003233081428334117, -0.005451125558465719, 0.0012257200432941318, 0.003005951177328825, 0.0009108705562539399, -0.0015836460515856743, 0.020977435633540154, 0.012274431064724922, 0.03370926156640053, 0.02060149610042572, -0.036842089146375656, -0.011434832587838173, -0.01533833984285593, 0.004244985990226269, -0.0008098367834463716, 0.007368418388068676, 0.009874682873487473, 0.008458643220365047, 0.008414783515036106, 0.007919796742498875, 0.013546360656619072, 0.0014794793678447604, 0.006199872121214867, -0.0017841472290456295, 0.0008936399826779962, -0.022769413888454437, 0.0030513773672282696, -0.0007777252467349172, -0.018721796572208405, 0.002954259514808655, -0.02228069305419922, 0.008953630924224854, 0.000856046041008085, -0.019335832446813583, 0.015639090910553932, 0.0009093041298910975, -0.012174180708825588, 0.009229320101439953, 0.00727443303912878, -0.008809519931674004, 0.007424809038639069, -0.028120290488004684, -0.009010021574795246, -0.011516286060214043, 0.010050121694803238, 0.007211776450276375, -0.014385959133505821, -0.01009398140013218, -0.014360896311700344, 0.02160400152206421, 0.025601493194699287, 0.01973683387041092, -0.006691726855933666, 0.0067857117392122746, -0.003502504900097847, 0.017205506563186646, -0.0008779758354648948, -0.0038377176970243454, -0.0046083941124379635, -0.003433582605794072, -0.004295111168175936, 0.006647867150604725, -0.01860901527106762, -0.004683582112193108, -0.002802317263558507, 0.0008168856729753315, 0.006121551617980003, -0.014511272311210632, -0.018984954804182053, 0.005745611619204283, -0.004949872847646475, 0.01625312678515911, 0.018032575026154518, -0.0040350863710045815, 0.013558891601860523, -0.003753131255507469, 0.023746857419610023, 0.0035620287526398897, 0.000331101065967232, -0.00978696346282959, 0.02578946389257908, -0.021929815411567688, 0.017619039863348007, 0.009780697524547577, -0.03867166489362717, 0.0011583642335608602, -0.008552628569304943, 0.022543851286172867, 0.004765035584568977, 0.02684209495782852, -0.021967409178614616, 0.008389720693230629, 0.04345862939953804, -0.004962404258549213, 0.004696113523095846, 0.013684204779565334, 0.00994987040758133, -0.025350866839289665, -0.005767541471868753, -0.001520989346317947, -0.010895986109972, -0.00296522444114089, 0.011284456588327885, 0.004345236346125603, 0.01334585901349783, -0.00032072357134893537, 0.01616540737450123, 0.01009398140013218, -0.012124055065214634, 0.0007937810150906444, 0.0031782567966729403, -0.010012526996433735, -0.013759393244981766, -0.015977436676621437, 0.007192979566752911, -0.012857138179242611, -0.006723055150359869, -0.001939222333021462, -0.0040444848127663136, -0.020588964223861694, 0.007261902093887329, -0.008427315391600132, -0.004887216258794069, -0.001043232623487711, 0.012161649763584137, 0.013822049833834171, 0.0009335835929960012, 0.030927306041121483, 0.015426059253513813, 0.01078320387750864, 0.0016463026404380798, -0.020814528688788414, 0.010676687583327293, 0.00938596110790968, 0.0001787671644706279, 0.0062468647956848145, -0.002045738510787487, -0.009398492984473705, 0.008107766509056091, 0.0060808248817920685, 0.018746860325336456, -0.0032769411336630583, -0.0031704248394817114, 0.0010557640343904495, 0.003168858354911208, -0.0036810762248933315, -0.04042604938149452, 0.005798869766294956, -0.0064223031513392925, -0.0006144264480099082, 0.0011058893287554383, -0.011691724881529808, 0.023283198475837708, 0.02105262316763401, 0.005789471324533224, 0.0007162434631027281, -0.005510649643838406, 0.006860899738967419, -0.0005333644803613424, -0.009830823168158531, 0.000964911887422204, 0.0042669158428907394, 0.030025050044059753, -0.026791969314217567, 0.01154134888201952, -0.012794481590390205, 0.006829571444541216, -0.020388463512063026, 0.014598991721868515, -0.002092730952426791, -0.0035964897833764553, -0.03521301969885826, 0.018947361037135124, -0.0023699866142123938, 0.002625312190502882, 0.005830198060721159, 0.006641601212322712, 0.015012525022029877, 0.002996552735567093, -0.0002729478874243796, 0.0015139405149966478, 0.0020629691425710917, -0.0026738711167126894, 0.012637839652597904, 0.0009163530194200575, -0.008358392864465714, -0.013170421123504639, 0.02446114271879196, 0.01773182302713394, 0.010745610110461712, -0.007807014510035515, 0.0036748105194419622, 0.020388463512063026, 0.023233072832226753, -0.01118420623242855, -0.017518790438771248, 0.009003755636513233, 0.0061904736794531345, -0.002523495350033045, 0.021065155044198036, -0.0017136584501713514, 0.0024530065711587667, 0.0006915724370628595, -0.022518787533044815, -0.004824559669941664, -0.012725559063255787, -0.009279444813728333, -0.0023292596451938152, 0.009724306873977184, 0.011572676710784435, 0.005917917471379042, -0.010645358823239803, -0.004226188641041517, -0.025501243770122528, 0.010125309228897095, -0.022869665175676346, -0.003280073869973421, -0.023709263652563095, -0.0011411336017772555, -0.005823932588100433, -0.02887216955423355, -0.012067664414644241, 0.019786959514021873, 0.014962400309741497, 0.00854636263102293, -0.01369673665612936, -0.033007506281137466, -0.0037218029610812664, 0.0057832058519124985, 0.01533833984285593, -0.019837085157632828, -0.015400996431708336, 0.007725561037659645, 0.001468514441512525, -0.02887216955423355, 0.008139094337821007, 0.012393479235470295, -0.01647868938744068, -0.00479636387899518, -0.003386590164154768, -0.007612778805196285, 0.029473673552274704, -0.01181703805923462, 0.005645361263304949, -0.009530071169137955, 0.008652878925204277, -0.01738094538450241, -0.014736836776137352, -0.003057642839848995, -0.002811715705320239, -0.006779445800930262, -0.008815785869956017, 0.0161278136074543, 0.013934832066297531, 0.001823307597078383, 0.01577693596482277, 0.016754379495978355, -0.00959272775799036, 0.014786961488425732, -0.007813280448317528, 0.002291665878146887, -0.014122801832854748, 0.014461147598922253, 0.023195479065179825, 0.0030263145454227924, 0.003906640224158764, -0.014035082422196865, 0.012437338940799236, -0.0013941096840426326, -0.009053881280124187, -0.00417606346309185, 0.003499372163787484, 0.02259397692978382, 0.001315005705691874, -0.010307013057172298, -0.005498118232935667, -0.0043107750825583935, -0.012944856658577919, -0.02324560470879078, -0.003117166692391038, -0.007894733920693398, -0.02433582954108715, -0.0009782264241948724, -0.009197991341352463, -0.0041603995487093925, -0.001291509484872222, 0.0040288204327225685, 0.01892229914665222, 0.0005388468853197992, 0.024837082251906395, -0.015814529731869698, -0.011879694648087025, 0.010256888344883919, 0.010664156638085842, -0.007537590805441141, -0.022606506943702698, 0.000274318503215909, -0.007875937037169933, 0.004226188641041517, -0.01854635775089264, 0.016315782442688942, 0.005701752379536629, 0.02298244647681713, -0.012167914770543575, -0.02691728249192238, 0.00445175264030695, 0.009755635634064674, -0.04235587269067764, 0.01522555761039257, -0.0172556322067976, -0.004664785228669643, -0.01873432844877243, -0.0059492457658052444, 0.008233079686760902, 0.0161278136074543, 0.006585210561752319, -0.006083957385271788, 0.006516288034617901, 0.001586778787896037, -0.016691721975803375, 0.031177932396531105, 0.018170418217778206, -0.008646612986922264, -0.005291351117193699, -0.0020018788054585457, -0.024862146005034447, 0.013646611012518406, 0.007180448155850172, -0.009837089106440544, -0.012368416413664818, 0.022230567410588264, -0.0021788838785141706, -0.003414785722270608, 0.012337087653577328, -0.015150370076298714, 0.013070170767605305, 0.0015327375149354339, -0.004047617316246033, -0.01369673665612936, 0.006616538856178522, -0.015187963843345642, -0.004633456934243441, -0.02355888858437538, 0.017167912796139717, 0.004411025904119015, 0.0013604317791759968, -0.00622806791216135, -0.01573934219777584, -0.024874677881598473, 0.0036121539305895567, 0.012650370597839355, -0.00028312960057519376, -0.008565159514546394, -0.0032362141646444798, 0.00509398290887475, 0.013258140534162521, 0.005645361263304949, 0.008753129281103611, 0.006879696622490883, -0.004548870492726564, -0.005119045730680227, -0.018270669505000114, 0.005447993054986, -0.005018794909119606, -0.015426059253513813, 0.008972427807748318, 0.0072994958609342575, 0.010695484466850758, -0.023132823407649994, -0.004157266579568386, -0.0024138460867106915, 0.00017367630789522082, -0.014185458421707153, -0.0005584271275438368, 0.005968042649328709, 0.021791972219944, 0.012944856658577919, -0.0005482453852891922, -0.016917286440730095, 0.003204885870218277, 0.004332704935222864, 0.0067857117392122746, 0.015764404088258743, 0.023546356707811356, -0.00479636387899518, 0.016917286440730095, 0.0074812001548707485, 0.010050121694803238, 0.008151626214385033, -0.002941728103905916, 0.018483702093362808, -0.02117793634533882, -0.0013048240216448903, 0.018032575026154518, -0.006146613974124193, -0.007205510977655649, -0.03218043968081474, -0.018759390339255333, -0.023959890007972717, 0.0181202944368124, 0.010344607755541801, -0.00558583764359355, 0.012036336585879326, -0.0064285690896213055, -0.019711771979928017, -0.0005623431643471122, -0.01877192221581936, 0.003427316900342703, -0.014899743720889091, 0.024035077542066574, 0.004880950320512056, -0.010413529351353645, -0.014962400309741497, 0.0006786494632251561, -0.010162902995944023, -0.007424809038639069, -0.020225556567311287, 0.018809515982866287, -0.001846803817898035, 0.0025548236444592476, 0.004996865056455135, 0.011497489176690578, 0.009354633279144764, -0.010902251116931438, -0.004201126284897327, -0.029373422265052795, -0.004996865056455135, 0.014360896311700344, 0.009392227046191692, 0.00041470848373137414, -0.034135326743125916, 0.013308265246450901, -0.009260647930204868, 0.002120926510542631, 0.003646615194156766, 0.02421051636338234, 0.0012578315800055861, 0.01002505887299776, 0.014586460776627064, -0.013283202424645424, 0.006099621765315533, 0.007807014510035515, -0.01173558458685875, 0.009667916223406792, -0.001312656095251441, -0.0042105247266590595, 0.011334582231938839, 0.014862149953842163, 0.003345863427966833, -0.012324556708335876, 0.016942348331212997, -0.005444860085844994, -0.022205505520105362, 0.008070172742009163, -0.01313282735645771, -0.001004855497740209, 0.017844604328274727, -0.015714280307292938, 0.020137837156653404, -0.0010322678135707974, -0.035914771258831024, 0.008489971980452538, 0.028596479445695877, 0.009172928519546986, -0.005786338355392218, -0.017431071028113365, 0.0017606508918106556, 0.01398495677858591, 0.018947361037135124, 0.00016927077376749367, -0.010206762701272964, 0.004304509609937668, -0.0016055757878348231, 0.015463653020560741, -0.005695486441254616, 0.020300744101405144, -0.021253123879432678, 0.02363407611846924, -0.01715538091957569, 0.0017324554501101375, 0.0138596436008811, 0.012167914770543575, -0.0017214905237779021, 0.012493729591369629, 0.011228065937757492, 0.016390971839427948, -0.001021302887238562, 0.0016134078614413738, -0.04255637526512146, 0.0021553875412791967, -0.013558891601860523, 0.0053132809698581696, -0.012030070647597313, 0.005463656969368458, -0.016754379495978355, 0.015250620432198048, 0.007938593626022339, -0.012224306352436543, -0.013220545835793018, 0.002932329662144184, -0.01058896817266941, 0.0014395357575267553, 0.00022556382464244962, 0.0006719921948388219, 0.01699247397482395, 0.007261902093887329, -0.009974933229386806, 0.021491220220923424, 0.0015546673675999045, -0.014122801832854748, -0.0037656626664102077, 0.022005004808306694, -0.008890974335372448, -0.02109021693468094, -0.007192979566752911, 0.013684204779565334, 0.002355888718739152, -0.001350250095129013, -0.033208008855581284, 0.00687343068420887, -0.01058896817266941, -0.010526311583817005, -0.03273181617259979, -0.013734330423176289], "8698b735-ee66-4b51-8f50-cdb723ee0c48": [0.00796009786427021, 0.026007255539298058, -0.009759834036231041, 0.030417677015066147, -0.02232242003083229, -0.03166966512799263, 0.015649879351258278, 0.004282376263290644, -0.008088142611086369, -0.011253686621785164, 0.020558251067996025, 0.052754323929548264, 0.0156071987003088, 0.014006642624735832, -0.03491346165537834, -0.0131387859582901, 0.0076542142778635025, 0.03155585005879402, -0.005893602501600981, -0.002351038856431842, 0.04068968817591667, -0.043933480978012085, -0.038327980786561966, 0.023531729355454445, 0.004442431963980198, -0.019789984449744225, -0.012896924279630184, 0.0051786876283586025, -0.03912470117211342, 0.021781787276268005, 0.01577792502939701, 0.0035763531923294067, 0.017157958820462227, -0.027045838534832, -0.0005948732723481953, -0.004894144367426634, 0.02735883556306362, -0.010101286694407463, -0.0034643143881112337, 0.01700146123766899, 0.0016939217457547784, -0.002473748056218028, 0.031185943633317947, 0.0045420220121741295, -0.04811626672744751, 0.012996514327824116, 0.014881613664329052, -0.009809629060328007, 0.02865350805222988, -0.014376549050211906, -0.0171437319368124, -0.0038377775344997644, -0.01574946939945221, -0.015265746973454952, 0.029279503971338272, -0.02404390648007393, 0.03485655039548874, 0.032807838171720505, 0.016418147832155228, -0.012000612914562225, 0.0304461307823658, 0.012818674556910992, -0.009475290775299072, -0.02141188085079193, 0.00985231064260006, -0.00678991386666894, 0.011218118481338024, -0.023745136335492134, -0.035567909479141235, -0.04142950102686882, -0.001194192562252283, 0.059298817068338394, -0.027586471289396286, -0.012640834785997868, -0.012768879532814026, -0.009418382309377193, 0.015109247528016567, 0.018182314932346344, 0.024968672543764114, -0.023261412978172302, -0.005982522387057543, -0.0007389233214780688, 0.021354973316192627, -0.003064175369217992, 0.08894822746515274, 0.023702455684542656, 0.012448768131434917, -0.04174249991774559, 0.0003650156722869724, -0.023417912423610687, -0.027444198727607727, 0.00019662384875118732, 0.014838932082057, -0.011097188107669353, 0.016218965873122215, -0.013359306380152702, 0.006487586535513401, 0.01007994543761015, 0.03286474943161011, 0.007046002894639969, 0.03644999489188194, 0.0031388679053634405, -0.01728600449860096, 0.02498289942741394, 0.03138512372970581, -0.03684835508465767, 0.0041152071207761765, 0.02449917607009411, -0.036933716386556625, 0.03001931495964527, 0.023802045732736588, -0.039978329092264175, -0.006747232284396887, 0.028255147859454155, -0.056140389293432236, -0.007046002894639969, -0.004837235901504755, -0.027686061337590218, 0.009034249000251293, -0.05375022441148758, -0.005047086160629988, -0.004022730514407158, 0.03992142155766487, 0.03092985413968563, -0.027031611651182175, 0.008386912755668163, -0.0042183538898825645, 0.028354737907648087, 0.013956847600638866, 0.017300231382250786, 0.022279739379882812, 0.007099354639649391, 0.03104367107152939, 0.026362935081124306, 0.015934422612190247, -0.0014004864497110248, 0.006416450720280409, 0.03963688015937805, -0.012398973107337952, 0.034941915422677994, -0.07142036408185959, -0.042738400399684906, -0.026334479451179504, -0.008621660992503166, -0.015294200740754604, -0.020216800272464752, 0.005705092567950487, 0.012918264605104923, -0.024612993001937866, 0.004132991190999746, -0.06254260987043381, -0.04444565996527672, -0.0015036333352327347, 0.019078627228736877, 0.06937164813280106, -0.02064361423254013, -0.03209648281335831, 0.028852688148617744, 0.008017007261514664, 0.011509775184094906, 0.032352570444345474, -0.05346568301320076, 0.0067009939812123775, 0.02505403570830822, 0.020102983340620995, 0.0152230653911829, 0.05118933692574501, 0.03286474943161011, -0.0034376385156065226, 0.028127102181315422, 0.027586471289396286, -0.005296061746776104, 0.004364182706922293, 0.014106232672929764, -0.00113283796235919, -0.02260696329176426, 0.020145663991570473, -0.005818909965455532, 0.0395515151321888, -0.032352570444345474, -0.022194376215338707, -0.0026693716645240784, 0.012406086549162865, 0.02644829824566841, -0.03394601121544838, -0.0026249117217957973, -0.00966024398803711, 0.007291421294212341, 0.039096247404813766, -0.0020415980834513903, -0.01942007802426815, 0.0046629528515040874, 0.041031140834093094, -0.0031566519755870104, -0.0016850297106429935, -0.014141800813376904, -0.004068968817591667, 0.010321807116270065, -0.0008865301497280598, 0.03946615383028984, 0.012797334231436253, -0.053551044315099716, -0.029307957738637924, 0.04677891358733177, -0.015578744001686573, 0.014056437648832798, -0.03852716088294983, -0.027757195755839348, 0.036307722330093384, -0.03610854223370552, 0.03716135025024414, -0.012007726356387138, 0.009717152453958988, -0.011552456766366959, 0.005701535847038031, 0.008948885835707188, -0.013985302299261093, 0.02476949244737625, 0.030389221385121346, -0.028468554839491844, 0.026021482422947884, 0.04413266107439995, 0.011516888625919819, -0.030133133754134178, -0.06874565780162811, 0.028468554839491844, -0.0012297604698687792, 0.03827106952667236, -0.05585584416985512, -0.03292165696620941, 0.035994723439216614, -0.015621425583958626, -0.011573798023164272, 0.011331936344504356, -0.025395486503839493, 0.021611060947179794, 0.0350557304918766, 0.021639516577124596, -0.05540057644248009, 0.014682432636618614, 0.004929712042212486, 0.04205549508333206, 0.004574032966047525, 0.019761530682444572, 0.01165204681456089, -0.00029499136144295335, -0.010364488698542118, 0.01658887229859829, 0.0025555542670190334, -0.02834051102399826, -0.030417677015066147, 0.0012920043664053082, -0.011901022866368294, -0.0010990484151989222, -0.013622509315609932, 0.021013520658016205, 0.01917821727693081, -0.04034823551774025, -0.02018834464251995, -0.01153111644089222, 0.001019909861497581, 0.015194610692560673, 0.0009745607385411859, 0.02533857896924019, 0.05981099605560303, -0.011872568167746067, 0.025381259620189667, -0.0171437319368124, 0.02176756039261818, 0.03781580179929733, -0.018353041261434555, -0.01927780732512474, 0.01654619164764881, 0.005651740822941065, 0.014547275379300117, -2.867662624339573e-05, 0.025167852640151978, -0.004470886196941137, 0.03229566290974617, 0.0024399585090577602, 0.02018834464251995, -0.012655062600970268, -0.00040102817001752555, 0.02771451510488987, 0.021212700754404068, 0.0032331228721886873, -0.03229566290974617, -0.018168088048696518, -0.03391755744814873, 0.0008594096289016306, -0.005566377658396959, 0.017513638362288475, 0.0251251719892025, 0.0182961318641901, 0.029734771698713303, -0.023247186094522476, -0.02442803978919983, -0.003300701966509223, -0.004858576226979494, 0.014006642624735832, 0.010656145401299, -0.015251519158482552, 0.007206058595329523, -0.012185566127300262, 0.031129034236073494, -0.029905498027801514, 0.05798992142081261, 0.011253686621785164, -0.003179771127179265, 0.02568002976477146, 0.020899703726172447, 0.009539313614368439, 0.017755500972270966, 0.007853394374251366, 0.02316182292997837, 0.00578334229066968, 0.024228859692811966, -0.053977858275175095, -0.025082489475607872, -0.02347481995820999, 0.0003721292596310377, 0.0029165686573833227, -0.05722165107727051, -0.012007726356387138, 0.023958543315529823, -0.03334847092628479, 0.030531493946909904, -0.04123032093048096, -0.026619022712111473, -0.045925285667181015, -0.0640222355723381, -0.03713289648294449, -0.016802281141281128, -0.04734800010919571, -0.028966505080461502, -0.015905968844890594, -0.006658312864601612, -0.051559243351221085, 0.004296603612601757, -0.04171404242515564, 0.02582230232656002, -0.029905498027801514, -0.018737174570560455, 0.006281292997300625, -0.0029201253782957792, 0.002598235849291086, 0.0067258914932608604, 0.029023414477705956, 0.0023350331466645002, 0.020657841116189957, 0.000914984499104321, -0.014838932082057, -0.021226927638053894, 0.019363170489668846, 0.046693552285432816, 0.0127546526491642, -0.02908032201230526, -0.022934187203645706, -0.0008834179607219994, -0.021298063918948174, -0.0005468566087074578, -0.012996514327824116, -0.04430338740348816, 0.012889810837805271, -0.031185943633317947, 0.01711527816951275, 0.00030166032956913114, 0.019334714859724045, 0.028852688148617744, 0.009233429096639156, -0.050250343978405, 0.0003358944377396256, 0.00960333552211523, -0.024925990030169487, -0.03289320319890976, -0.019718848168849945, 0.023944316431879997, 0.017058368772268295, 0.013110331259667873, 0.013551373966038227, 0.014461912214756012, 0.005278277676552534, -0.005015075206756592, -0.005907829850912094, 0.012797334231436253, 0.015977105125784874, 0.018353041261434555, -0.00552725326269865, 0.0044282046146690845, 0.03656380996108055, -0.03750280290842056, 0.017485184594988823, -0.015109247528016567, 0.002744064200669527, 0.0021020635031163692, -0.002395498799160123, -0.010705940425395966, -0.00718116108328104, -0.030531493946909904, -0.04154331982135773, 0.009212088771164417, -0.014056437648832798, -0.02834051102399826, 0.015322655439376831, 0.051729965955019, -0.023403683677315712, -0.012797334231436253, -0.03383219614624977, -0.0013088990235701203, 0.02393008954823017, -0.019619258120656013, -0.0029379092156887054, -0.01582060568034649, -0.02186715044081211, 0.025850756093859673, 0.015308428555727005, -0.014668205752968788, 0.03488500416278839, -0.04623828083276749, -0.023944316431879997, 0.023816272616386414, 0.02385895326733589, -0.0034074056893587112, 0.017897771671414375, -0.03445819020271301, 0.05588429793715477, 0.025310125201940536, 0.019405851140618324, 0.009318792261183262, -0.03391755744814873, -0.01725754886865616, 0.0017534979851916432, 0.016816508024930954, 0.03147048503160477, -0.03141357749700546, -0.02043020725250244, 0.023247186094522476, -0.022962642833590508, 0.002493310486897826, -0.04510010778903961, -0.018011588603258133, 0.044844020158052444, 0.000348565517924726, 0.0006562279304489493, -0.0258934386074543, 0.017968907952308655, -0.019832666963338852, 0.0266617052257061, 0.014027983881533146, -0.006331088021397591, 0.015052339062094688, 0.016788052394986153, 0.011552456766366959, 0.0032331228721886873, 0.010513873770833015, 0.028297828510403633, -0.00033500525751151145, -0.01256258599460125, 0.01889367401599884, -0.0823468267917633, -0.009382814168930054, -0.008500730618834496, 0.02809864841401577, -0.024413812905550003, 0.009226315654814243, -0.03656380996108055, -0.01357982773333788, 0.0034554223529994488, 0.01310321781784296, 0.005022188648581505, -0.01438366249203682, -0.01419159583747387, -0.018381495028734207, 0.0019135535694658756, 0.01049964688718319, -0.022791916504502296, -0.005288948304951191, 0.002688933862373233, -0.002969920402392745, -0.011388844810426235, 0.02071475051343441, -0.030104678124189377, -0.03744589537382126, -0.0281982384622097, -0.017314458265900612, -0.004908371716737747, -0.017129505053162575, -0.040575869381427765, -0.007177604362368584, -0.01658887229859829, 0.042140860110521317, 0.004278819542378187, 0.018523767590522766, -0.006711664609611034, 0.019932257011532784, -0.013672304339706898, 0.016218965873122215, -0.03408828377723694, 0.00656227907165885, -0.01086243987083435, -0.02701738476753235, -0.022692326456308365, -0.02484062872827053, 0.04310830682516098, -0.020373297855257988, 0.029137231409549713, -0.01107584685087204, -0.005132449325174093, -0.018253451213240623, -0.024200405925512314, -0.017940454185009003, 0.015422245487570763, -0.008522070944309235, 0.04083196073770523, 0.015621425583958626, -0.004869246855378151, -0.02757224254310131, -0.002290573436766863, 0.041970133781433105, 0.0045491354539990425, -0.0012342064874246716, -0.0006175478338263929, -0.03636462986469269, 0.0258934386074543, 0.0031139703933149576, -0.018979037180542946, -0.006857492960989475, -0.04245385527610779, 0.015507608652114868, -0.02831205539405346, -0.0042041270062327385, 0.011403071694076061, -0.03260865807533264, 0.0013426885707303882, 0.027131201699376106, -0.010328920558094978, -0.009261883795261383, 0.030218495056033134, 0.03223875164985657, 0.011659161187708378, -0.06908711045980453, 0.02078588679432869, 0.017129505053162575, -0.010513873770833015, -0.011253686621785164, 0.023844726383686066, 0.002612462965771556, 0.00924054253846407, 0.0033771730959415436, 0.0058153532445430756, -0.028454327955842018, 0.02778565138578415, -0.02253582701086998, -0.004698520991951227, -0.010926461778581142, -0.018523767590522766, 0.0042930468916893005, -0.019889574497938156, -0.012192679569125175, 0.0013640293618664145, -0.01584906131029129, -0.004193456377834082, 0.008685683831572533, -0.0034127410035580397, 0.002096728188917041, -0.0024203963112086058, -0.04003524035215378, 0.015521835535764694, -0.010257785208523273, 0.022037876769900322, 0.019092854112386703, 0.006217270623892546, 0.05844518914818764, 0.019405851140618324, 0.021113110706210136, 0.003626148449257016, -0.00697131035849452, 0.011011824943125248, -0.0024790833704173565, -0.004581146873533726, -0.01932048797607422, -0.019989164546132088, -0.001444946276023984, 0.00012915597471874207, 0.004755429457873106, -0.03001931495964527, -0.037104442715644836, -0.012569699436426163, -0.013323739171028137, -0.0006873498787172139, 0.007931644096970558, 0.04803090542554855, -0.0022603406105190516, -0.015336882323026657, 0.01214288454502821, 0.023417912423610687, 0.013081877492368221, -0.013302397914230824, 0.018168088048696518, -0.010890893638134003, 0.009816743433475494, 0.030872944742441177, 0.002596457488834858, -0.029421774670481682, -0.031925756484270096, -0.0011390623403713107, 0.029165685176849365, 0.013131672516465187, -0.03195421025156975, 0.0035158877726644278, -0.021369200199842453, 0.0060252039693295956, -6.591177952941507e-05, -0.042425401508808136, 0.01745673082768917, -0.0006219937931746244, 0.0005441890098154545, 0.035567909479141235, -0.004598930478096008, -0.009966128505766392, 0.011047393083572388, -0.020174117758870125, 0.030531493946909904, 0.014035097323358059, 0.022806143388152122, 0.0152230653911829, 0.013337966054677963, 0.0025288783945143223, -0.00998746883124113, 0.001611226354725659, -0.01126791350543499, -0.030730674043297768, -0.000409253261750564, -0.012655062600970268, 0.01476779580116272, -0.014376549050211906, 0.002889892552047968, 0.03972224146127701, -0.0006228830316103995, -0.02368822693824768, -0.0023136925883591175, -0.006423564627766609, 0.020529797300696373, 0.04951053112745285, -0.00757596455514431, 0.02004607394337654, 0.007519056089222431, 0.041201867163181305, 0.014255617745220661, -0.009994582273066044, -0.024171952158212662, 0.019149761646986008, -0.012640834785997868, 0.013273944146931171, -0.01570678874850273, -0.004026287235319614, -0.028440101072192192, -0.014533047564327717, 0.015592971816658974, -0.010777076706290245, 0.03696217015385628, -0.012007726356387138, -0.00967447180300951, 0.0179119985550642, 0.005463230889290571, 0.007046002894639969, 0.0012039737775921822, 0.0038022096268832684, 0.007718236185610294, 0.013081877492368221, -0.004808781202882528, -0.0433928482234478, 0.006917958613485098, -0.0032473502214998007, 0.015962878242135048, 0.008749705739319324, 0.02999086119234562, -0.017172187566757202, -0.01203618012368679, -0.001995359780266881, 0.013145899400115013, -0.0327509306371212, -0.006868163123726845, 0.022649643942713737, -0.006199486553668976, -0.005459674168378115, -0.00046727340668439865, -0.020359070971608162, 0.01063480507582426, -0.027316154912114143, -0.004147218074649572, -0.001402264810167253, 0.006519597955048084, 0.018452631309628487, -0.0033149290829896927, -0.01781240850687027, 0.010400056838989258, -0.012676402926445007, 0.024556085467338562, -0.014881613664329052, -0.020031847059726715, -0.013394874520599842, 0.032068029046058655, 0.0067009939812123775, -0.015834832563996315, 0.0278141051530838, -0.011929476633667946, -0.005374311003834009, 0.009361473843455315, -0.008877750486135483, 0.018452631309628487, 0.01934894360601902, 0.015052339062094688, 0.018239224329590797, -0.0026249117217957973, 0.006067885551601648, -0.021255383267998695, 0.025623122230172157, -0.030246950685977936, 0.013956847600638866, -0.019889574497938156, 0.021212700754404068, 0.017712818458676338, -0.0009265440166927874, -0.03855561465024948, 0.0217248797416687, 0.006857492960989475, -0.0005979854613542557, -0.01030758023262024, 0.004815895110368729, 0.038612522184848785, -0.022407783195376396, 0.012711971066892147, 0.007462147623300552, -0.010947802104055882, -0.0019900244660675526, -0.010001695714890957, -0.02883846126496792, 0.03667762875556946, -0.032210297882556915, 0.01738559454679489, 0.003948037978261709, 0.009169407188892365, -0.027828332036733627, -0.011851227842271328, 0.02442803978919983, 0.019434304907917976, -0.007711122743785381, -0.008557639084756374, 0.019903801381587982, 0.03650690242648125, -0.008500730618834496, 0.01623319461941719, 0.010072831995785236, -0.005900716409087181, -0.016475055366754532, 0.027970604598522186, 0.013793235644698143, 0.0027387291193008423, 0.044417206197977066, -0.014867385849356651, 0.0007264745654538274, -0.005569934844970703, 0.01088378019630909, -0.01582060568034649, -0.02316182292997837, -0.005260493606328964, 0.0015632095746695995, 0.02488330937922001, 0.009119612164795399, 0.032694023102521896, 0.04512856528162956, 0.0448724739253521, 0.031271304935216904, -0.041344139724969864, 0.0071455929428339005, 0.004108093678951263, -0.033263109624385834, -0.03940924257040024, -0.028041739016771317, -0.015692561864852905, -0.017414048314094543, 0.016048241406679153, -0.004808781202882528, 0.038470249623060226, -0.045327745378017426, 0.03047458454966545, -0.023346776142716408, -0.04399039223790169, -0.0008634109981358051, 0.008543412201106548, -0.003439416876062751, -0.0006811254424974322, 0.007273637689650059, 0.005214255303144455, -0.013622509315609932, -0.02291996031999588, -0.049140624701976776, 0.00027542898897081614, 0.011730296537280083, 0.02306223288178444, -0.0008771935827098787, 0.03246638923883438, 0.024029679596424103, 0.03135666996240616, -0.0006050990778021514, 0.01934894360601902, -0.0020344844087958336, -0.0005152900703251362, 0.010222217068076134, 0.02435690350830555, 0.0010439181933179498, -0.023147596046328545, 0.059469543397426605, -0.020216800272464752, 0.023730909451842308, 0.00803123414516449, 0.0456976518034935, 0.03545409068465233, 0.013643849641084671, 0.01114698313176632, 0.006765016354620457, 0.007170490454882383, 0.017129505053162575, -0.03568172827363014, 0.017243321985006332, 0.034202102571725845, 0.00056552974274382, 0.0395515151321888, 0.014227163977921009, 0.008394026197493076, -0.024257313460111618, -0.020287934690713882, 0.012953832745552063, -0.016389692202210426, 0.0011995277600362897, -0.007625759579241276, -0.03690526261925697, -0.013316625729203224, -0.008337117731571198, -0.025850756093859673, -0.01833881437778473, -0.0029325741343200207, 0.00179351179394871, 0.009261883795261383, 0.01661732792854309, 0.01757054775953293, 0.01153111644089222, 0.041344139724969864, 0.04051896184682846, 0.026092618703842163, -0.004296603612601757, 0.021497244015336037, -0.00033678364707157016, 0.006121237296611071, -0.00235281721688807, -0.018082724884152412, 0.0005241820472292602, 0.009710039012134075, -0.016176285222172737, 0.01994648389518261, -0.0023990555200725794, -0.010969143360853195, -0.014461912214756012, 0.01123234536498785, -0.005004405044019222, -0.0015889963833615184, -0.010193763300776482, -0.0002767627884168178, -0.013401987962424755, -0.0247410386800766, 0.009959015063941479, -0.002847211202606559, 0.03747434914112091, -0.005228482652455568, 0.015208838507533073, -0.00553792342543602, 0.010912234894931316, 0.009076930582523346, -0.01788354478776455, 0.008116597309708595, 0.04160022735595703, 0.022279739379882812, 0.0039871628396213055, -0.05298195779323578, 0.015066566877067089, 0.01545070018619299, -0.014212936162948608, -0.03243793174624443, -0.005591275170445442, 0.0053280727006495, -0.019989164546132088, -0.023873180150985718, 0.021397653967142105, -0.011865454725921154, -0.016034014523029327, 0.0020006948616355658, -0.0110545065253973, 0.011047393083572388, 0.018040044233202934, 0.018253451213240623, -0.004620271269232035, -0.034031376242637634, 0.003752414369955659, 0.02834051102399826, -0.0464659184217453, 0.03534027561545372, 0.015863288193941116, -0.006818368099629879, 0.07227399200201035, 0.02579384855926037, -0.01394262071698904, -0.026818204671144485, -0.016176285222172737, 0.04518547281622887, 0.008436707779765129, -0.008472275920212269, -0.01335219293832779, -0.003521223086863756, 0.028852688148617744, 0.014504593797028065, 0.0010296909604221582, 0.008842182345688343, 0.010876666754484177, -0.0014262731419876218, -0.016844961792230606, -0.020757431164383888, 0.007326989434659481, -0.012249588035047054, 0.02893805131316185, -0.02575116604566574, 0.00054018764058128, 0.023816272616386414, 0.005697979126125574, 0.04068968817591667, -0.0007242515566758811, -0.01436232216656208, -0.01256258599460125, -0.026220662519335747, -0.006035874132066965, 0.0046238284558057785, -0.014084892347455025, 0.02663325145840645, -0.003023272380232811, -0.03223875164985657, -0.015792151913046837, 0.001647683442570269, 0.029620954766869545, 0.025381259620189667, -0.00776803120970726, -0.004911928437650204, 0.015137702226638794, -0.005890045780688524, -0.01822499744594097, 0.03411673754453659, 0.03522645682096481, -0.009702925570309162, 0.002011365257203579, -0.002432845067232847, -0.0027013826183974743, 0.006256395485252142, 0.025409715250134468, 0.007248740177601576, 0.018594903871417046, -0.011829886585474014, 0.02078588679432869, -0.02735883556306362, 0.04140104725956917, -0.022891506552696228, -0.004150775261223316, -0.001333796652033925, -0.03277938440442085, 0.00853629782795906, 0.026362935081124306, 0.00696419645100832, -0.0033665027003735304, 0.004132991190999746, -0.025708485394716263, -0.013053422793745995, -0.014319640584290028, 0.02936486527323723, 0.017414048314094543, 0.0008994234958663583, -0.007046002894639969, 0.01007994543761015, 0.005580605007708073, -0.01725754886865616, -0.008237527683377266, -0.01886521838605404, 0.02442803978919983, -0.017997361719608307, -0.026619022712111473, 0.012278042733669281, -0.016560418531298637, 0.034031376242637634, -0.004499340429902077, -0.02488330937922001, -0.041657134890556335, 0.001463619526475668, -0.015095020644366741, -0.0016094478778541088, -0.02560889534652233, -0.038299523293972015, 0.02495444566011429, -0.00512533588334918, 0.0159913320094347, 0.02361709251999855, -0.013345079496502876, -0.008429594337940216, 0.0019099967321380973, -0.031271304935216904, 0.001001236611045897, -0.014952749013900757, 0.010414283722639084, -0.007689781952649355, 0.03454355522990227, -0.001193303382024169, -0.039039336144924164, -0.007796485908329487, 0.022336646914482117, 0.011787205003201962, -0.008920432068407536, -0.01545070018619299, -0.017157958820462227, -0.008586093783378601, 0.03215339034795761, 0.006811254657804966, -0.0025662246625870466, 0.00531740253791213, 0.015763698145747185, -0.014653978869318962, -0.01872294768691063, 0.0012128656962886453, -0.005925613921135664, 0.00035923588438890874, -0.03300701826810837, -0.005868704989552498, -0.0640222355723381, -0.01745673082768917, 0.002118068980053067, 0.03258020430803299, 0.006537381559610367, -0.0071135819889605045, 0.0033682810608297586, 0.006124794017523527, 0.004186342936009169, 0.018395721912384033, -0.014597070403397083, -0.0532665029168129, 0.004684293642640114, 0.010179535485804081, -0.004936825949698687, 0.012498563155531883, -0.009112498722970486, -0.019676167517900467, 0.007625759579241276, -0.004890587646514177, -0.014092005789279938, -0.01245588157325983, 0.032381024211645126, 0.0024186179507523775, -0.012939605861902237, 0.050933245569467545, -0.031612757593393326, 0.017328685149550438, -0.024556085467338562, -0.008280209265649319, 0.01666000857949257, -0.009055589325726032, -0.00834423117339611, -0.0012146440567448735, 0.006434234790503979, -0.0011070511536672711, 0.0019793540704995394, 0.007832054048776627, 0.021710652858018875, 0.01903594471514225, 0.011751636862754822, -0.016147831454873085, -0.03377528861165047, -0.023005323484539986, 0.028952278196811676, 0.0020860577933490276, 0.033746831119060516, -0.008024120703339577, -0.0009087600628845394, 0.019363170489668846, 0.017015688121318817, 0.0023048005532473326, 0.012669289484620094, -0.023005323484539986, 0.008251754567027092, 0.011630706489086151, 0.00698909442871809, -0.028297828510403633, 0.0011550678173080087, 0.0033629457466304302, 0.06225806847214699, 0.0002108510088874027, -0.02018834464251995, -0.018182314932346344, 0.013828802853822708, 0.02375936321914196, 0.005047086160629988, 0.02987704426050186, -0.0011452867183834314, -0.00963890366256237, 0.017172187566757202, -0.018068498000502586, 0.005360084120184183, 0.035084184259176254, 0.004858576226979494, 0.013117444701492786, 0.006466245744377375, -0.0046700662933290005, 0.023318322375416756, 0.0012413200456649065, -0.01616205833852291, 0.006665426306426525, -0.0035158877726644278, -0.0179119985550642, -0.0008256200817413628, -0.014298299327492714, 0.0033416051883250475, -0.02124115638434887, 0.043165214359760284, 0.01707259565591812, -0.017712818458676338, 0.008322890847921371, 0.028539691120386124, 0.024171952158212662, 0.0036528243217617273, 0.05286813899874687, -0.007319875992834568, -0.01934894360601902, -0.016631554812192917, 0.01478202361613512, 0.005612615961581469, 0.010898007079958916, -0.001003015087917447, -0.019576577469706535, 0.00860743410885334, 0.009112498722970486, -0.010649031959474087, 0.03516954928636551, -0.014668205752968788, -0.021354973316192627, -0.013217034749686718, 0.008180619217455387, -0.007398125249892473, -0.0022194376215338707, -0.011780091561377048, 0.014867385849356651, 0.010720168240368366, 0.003562126075848937, -0.01903594471514225, 0.013814575970172882, -0.02785678580403328, 0.004179229494184256, -0.009190747514367104, -0.05420549586415291, -0.026121072471141815, -0.010179535485804081, 0.0058402507565915585, -0.025082489475607872, 0.014035097323358059, 0.03590936213731766, -0.008792387321591377, 0.023361003026366234, 0.012505676597356796, -0.004264592193067074, 0.01021510362625122, 0.019690394401550293, 0.011808546259999275, 0.01836726814508438, 0.008251754567027092, -0.020359070971608162, 0.017200641334056854, -0.0009301008540205657, -0.008778160437941551, -0.016048241406679153, 0.004278819542378187, -0.015564517118036747, 0.005623286589980125, -0.008792387321591377, -0.00655160890892148, -0.006085669156163931, -0.0033309347927570343, -0.0008656340069137514, 0.029194140806794167, -0.004424647893756628, -0.004470886196941137, -0.02735883556306362, -0.012420314364135265, 0.02481217309832573, 0.001254657981917262, -0.021354973316192627, -0.004250365309417248, -0.005032859276980162, 0.016119375824928284, 0.004154331982135773, 0.01934894360601902, -0.03195421025156975, -0.007511942647397518, -0.01970462128520012, -0.021226927638053894, 0.004787440411746502, 0.01784086413681507, -0.003755971323698759, -0.005619729869067669, 0.002118068980053067, 0.010613463819026947, -0.0304461307823658, 0.00010136853961739689, -0.0319826640188694, 0.01759900152683258, -0.005591275170445442, -0.011289254762232304, 0.008166392333805561, -0.007618646137416363, 0.026889339089393616, 0.005534366704523563, 0.00845093559473753, 0.023986998945474625, -0.011097188107669353, -0.005452560726553202, 0.009368587285280228, 0.02701738476753235, 0.01515192911028862, -0.0053280727006495, -0.010421397164463997, -0.00616747559979558, -0.00030121573945507407, 0.00555570749565959, -0.001733046374283731, -0.029421774670481682, -0.0021234042942523956, -0.020487116649746895, 0.010364488698542118, 0.019092854112386703, 0.011936590075492859, -0.0078035993501544, 0.02358863689005375, -0.01030758023262024, 0.024129269644618034, 0.010720168240368366, -0.006715221330523491, -0.01333085261285305, 0.0016592430183663964, 0.009311678819358349, -0.005431219935417175, 0.014924295246601105, -0.019832666963338852, -0.009325905703008175, -0.0007527059060521424, 0.004193456377834082, -0.020444434136152267, 0.009020022116601467, 0.006210157182067633, 0.015422245487570763, -0.024627219885587692, -0.0028810007497668266, 0.008529184386134148, -0.020686296746134758, -0.023417912423610687, -0.031157488003373146, 0.008522070944309235, 0.0021625289227813482, -0.021041974425315857, -0.007341216318309307, -0.0011595138348639011, 0.018082724884152412, 0.01145998015999794, 0.010392943397164345, -0.027003156021237373, 0.007704009301960468, 0.0007420355104841292, -0.039096247404813766, -0.019377397373318672, -0.015493381768465042, 0.015408018603920937, 0.006636972073465586, 0.03881170228123665, -0.020344844087958336, -0.011829886585474014, 0.03277938440442085, 0.015080793760716915, 0.010122627019882202, -0.002203431911766529, -0.027202337980270386, 0.0030463915318250656, -0.009959015063941479, 0.004694964271038771, -0.0020238140132278204, -0.0046629528515040874, -0.0013008962851017714, -0.020174117758870125, 0.0014493922935798764, 0.006487586535513401, 0.028425872325897217, -0.0003639041678979993, 0.020629387348890305, -0.030389221385121346, 0.0005344078526832163, 0.03366146981716156, 0.020102983340620995, 0.006921515334397554, 0.007202501874417067, -0.00128844752907753, -0.01826767809689045, -0.011708956211805344, 0.006238611415028572, 0.030986763536930084, -0.01040717028081417, 0.012214019894599915, 0.02218014746904373, -0.00010303578892489895, -0.02004607394337654, -0.002614241326227784, -0.004079639445990324, 0.0070246621035039425, -0.017271777614951134, 0.014867385849356651, -0.0005815353360958397, -0.007952984422445297, 0.012363404966890812, 0.0021198473405092955, -0.0032704693730920553, -0.00012615493324119598, 0.036478448659181595, -0.009838083758950233, 0.013266829773783684, -0.001629010308533907, -0.009517972357571125, -0.01759900152683258, 0.015023885294795036, -3.137200837954879e-05, 0.035738635808229446, 0.01738559454679489, -0.020216800272464752, -0.019690394401550293, -0.019163990393280983, -0.00023452589812222868, 0.012968059629201889, 0.01107584685087204, 0.006882390473037958, -0.012462995015084743, -0.01970462128520012, -0.0011790761491283774, -0.04367739334702492, -0.021041974425315857, -0.007319875992834568, 0.00235281721688807, -0.00761153269559145, 0.025310125201940536, 0.009646017104387283, -0.03337692469358444, 0.0278141051530838, -0.004100979771465063, 0.0064698029309511185, -0.013167239725589752, -0.018594903871417046, -0.01812540739774704, -0.006007419899106026, 0.006505370605736971, 0.022023649886250496, 0.007504828739911318, -0.03849870339035988, 0.012968059629201889, 0.014867385849356651, 0.0011346163228154182, 0.006508927326649427, -0.026121072471141815, 0.002703161211684346, 0.015066566877067089, 0.0205440241843462, -0.002989482833072543, -0.002263897331431508, 0.02327563986182213, -0.03286474943161011, -0.01040717028081417, 0.02114156447350979, 0.009759834036231041, 0.004154331982135773, 0.01415602769702673, 0.041827861219644547, -0.027216564863920212, 0.03502727672457695, 0.012157111428678036, 0.004342841915786266, 9.736714855534956e-05, 0.008045461028814316, 0.026917794719338417, 0.0030979649163782597, 0.009368587285280228, -0.03562481701374054, -0.013473124243319035, -0.001986467745155096, -0.006032317411154509, 0.0012662175577133894, 0.002854324644431472, 0.007405238691717386, 0.01175875123590231, 0.00979540217667818, -0.02481217309832573, -0.010798417031764984, 0.009937673807144165, -0.004702077712863684, -0.004015617072582245, 0.00925477035343647, -0.010855326429009438, -0.007931644096970558, 0.019149761646986008, 0.005068426951766014, -0.0013053423026576638, 0.008081029169261456, -0.004040514584630728, -0.015322655439376831, 0.018850991502404213, -0.027301928028464317, 0.01683073490858078, -0.003154873615130782, 0.004769656807184219, -0.015023885294795036, -0.01082687173038721, 0.009155180305242538, -0.030133133754134178, -0.004051184747368097, -0.004730531945824623, -0.003798652673140168, 0.013252602890133858, -0.001497408957220614, 0.006331088021397591, -0.007230956107378006, 0.01306764967739582, -0.032352570444345474, -0.00020973951905034482, -0.01172318309545517, 0.025523532181978226, -0.0028561032377183437, 0.005303175188601017, -0.006277735810726881, 0.04541310667991638, -0.01545070018619299, 0.0008567420300096273, 0.010613463819026947, -0.01980421133339405, -0.021326517686247826, 0.02148301713168621, 0.02274923399090767, -0.022478919476270676, -0.015009657479822636, 0.009589108638465405, 0.0030872945208102465, 0.020728977397084236, -0.01040717028081417, 0.017542092129588127, -0.024271542206406593, -0.00038546722498722374, -0.027742968872189522, -0.05759155750274658, -0.0006949080270715058, 0.02313336916267872, -0.004100979771465063, -0.002240778412669897, -0.015095020644366741, -0.00979540217667818, 0.010037263855338097, 0.02358863689005375, -0.006402223836630583, 0.0030712890438735485, 0.07016836851835251, -0.033718377351760864, -0.007170490454882383, -0.02596457302570343, 0.007931644096970558, -0.013793235644698143, -0.0066867670975625515, -0.03363301604986191, 0.014092005789279938, -0.027373062446713448, -0.021127337589859962, -0.025068262591958046, -0.004652282688766718, -0.011837000027298927, 0.010129740461707115, 0.05798992142081261, -0.0035087743308395147, -0.023802045732736588, 0.01293249148875475, -0.015208838507533073, -0.003738187253475189, 0.01819654181599617, -0.02488330937922001, -0.007102911360561848, -0.03340538218617439, 0.046522825956344604, 0.026917794719338417, 0.003281139535829425, 0.009781175293028355, 0.018537994474172592, 0.00266759330406785, 0.003119305707514286, 0.005011518485844135, -0.03972224146127701, -0.02785678580403328, 0.01084821205586195, -0.0017881765961647034, -0.016460828483104706, 0.0062599522061645985, -0.0033469402696937323, -0.008009892888367176, -0.032836295664310455, -0.0007246961467899382, -0.006722334772348404, 0.0139070525765419, -0.00882084108889103, 0.014725114218890667, -0.0012146440567448735, -0.0046380553394556046, 0.006932185497134924, -0.003812879789620638, -0.008244641125202179, 0.002301243832334876, -0.008145051077008247, -0.009781175293028355, 0.010585010051727295, 0.013131672516465187, 0.019718848168849945, -0.011068733409047127, -0.00796009786427021, 0.010222217068076134, -0.007632873486727476, -0.0017695034621283412, -0.00634175818413496, 0.029279503971338272, -0.013949734158813953, -0.010698826983571053, -0.02277768962085247, -0.04635209962725639, 0.0063773263245821, 0.00553792342543602, -0.009368587285280228, -0.009340132586658001, 0.016076695173978806, -0.007554623764008284, 0.007490601856261492, 0.0015000766143202782, 0.023361003026366234, -0.014682432636618614, 0.0045100110583007336, -0.009020022116601467, -0.007262967061251402, 0.027458425611257553, -0.014504593797028065, 0.017684364691376686, 0.008358458988368511, 0.001620118273422122, -0.00011626260675257072, -0.004154331982135773, 0.0034696494694799185, 0.006103453226387501, 0.016603101044893265, -0.0007589302840642631, 0.019050171598792076, -0.019676167517900467, -0.006925072055310011, 0.0014653978869318962, -0.001479625003412366, -0.023745136335492134, 0.011787205003201962, 0.000439708266640082, 0.009816743433475494, -0.004908371716737747, -0.002326141344383359, 0.014952749013900757, -0.009510858915746212, -0.031157488003373146, 0.012569699436426163, 0.002889892552047968, 0.004161445423960686, 0.004029843956232071, 0.05389249697327614, 0.016247421503067017, 0.014582842588424683, -0.010855326429009438, 0.0026106846053153276, -0.012619494460523129, 0.0011114971712231636, 0.021582607179880142, 0.01627587527036667, -0.006640528794378042, -0.0016263426514342427, -0.003476763144135475, -0.0022425567731261253, 0.010400056838989258, -0.014433457516133785, -0.0003727961448021233, -0.011018938384950161, 0.016332784667611122, -0.0017117056995630264, 0.029066095128655434, 0.04350666701793671, -0.00491548515856266, -0.005513025913387537, 0.00918363407254219, -0.008514957502484322, -0.004012060351669788, -0.0034963255748152733, -0.016048241406679153, -0.0009576659649610519, 0.021539926528930664, 0.009112498722970486, -0.017926227301359177, -0.009503745473921299, -0.012206906452775002, -0.01798313483595848, 0.013643849641084671, 0.014739342033863068, 0.011943704448640347, -0.018324587494134903, 0.012640834785997868, 0.002100285142660141, -0.015664108097553253, 0.012114429846405983, 0.022350873798131943, -0.009909220039844513, -0.011502661742269993, 0.0015160820912569761, -0.008578979410231113, 0.00013249045878183097, -0.01987534761428833, -0.006900174543261528, -0.013807462528347969, -0.005303175188601017, 0.013793235644698143, -0.004776770249009132, -0.018594903871417046, -0.01111141499131918, -0.011936590075492859, 0.02176756039261818, 0.004997291136533022, -0.00370973302051425, -0.011068733409047127, -0.02649097889661789, -0.008578979410231113, -0.013387761078774929, -0.013145899400115013, -0.0072345128282904625, -0.009909220039844513, 0.004485113546252251, -0.01781240850687027, 0.0020344844087958336, -0.007888962514698505, 0.008351345546543598, -0.004652282688766718, -0.00038191041676327586, 0.014234277419745922, 0.0054205493070185184, 0.029734771698713303, 0.019050171598792076, -0.0004566030402202159, 0.008650115691125393, -0.010279125533998013, 0.015464927069842815, -0.006590733770281076, 0.014141800813376904, -0.0049688369035720825, 0.025039808824658394, -0.004574032966047525, 0.007334102876484394, -0.02260696329176426, -0.01021510362625122, -0.001863758428953588, 0.007618646137416363, 0.015962878242135048, 0.0038555613718926907, 0.0007433692808263004, -0.005626843310892582, -0.031897302716970444, -0.003414519364014268, -0.008948885835707188, 0.032523296773433685, 0.0005406322306953371, -0.013508692383766174, -0.00578334229066968, 0.007832054048776627, 0.0036012509372085333, 0.041486408561468124, -0.010784190148115158, -0.030787581577897072, -0.008899090811610222, 0.001689475728198886, 0.0050577567890286446, -0.012847129255533218, 0.011203891597688198, -0.011403071694076061, 0.009496632032096386, 0.00296102836728096, -0.0024773050099611282, -0.007931644096970558, -0.014739342033863068, -0.0034002922475337982, 0.008529184386134148, -0.007597305346280336, -0.008742592297494411, 0.006000306457281113, 0.007810712791979313, -0.03625081479549408, 0.006875277031213045, -0.006878833752125502, -0.012868469581007957, 0.01214288454502821, 0.014547275379300117, 0.01133904978632927, -0.00369550590403378, 0.008621660992503166, 0.0005726433591917157, 0.008372685872018337, 0.014426344074308872, 0.01738559454679489, -0.01582060568034649, 0.01973307691514492, 0.018552221357822418, 0.003752414369955659, 0.016674235463142395, -0.019903801381587982, 0.011602251790463924, 0.005623286589980125, -0.008436707779765129, 0.004214797168970108, -0.008294436149299145, 0.031897302716970444, -0.03994987532496452, -0.003565683029592037, -0.00834423117339611, 0.005790455732494593, -0.005534366704523563, -0.025210535153746605, 0.029933951795101166, -0.01707259565591812, -0.008493617177009583, 0.011395958252251148, 0.005189357791095972, -0.0016841405304148793, 0.0014582843286916614, 0.006583619862794876, 0.003094408195465803, 0.014753568917512894, 0.018111178651452065, 0.0163754653185606, -0.010449851863086224, -0.00717404717579484, 0.011168323457241058, 0.0016752484953030944, -0.029023414477705956, -0.005715763196349144, -0.0030268291011452675, -0.004357068799436092, 0.008479389362037182, -0.0033931785728782415, 0.030730674043297768, 0.01195081789046526, 0.0028863358311355114, 0.010798417031764984, 0.0017179300775751472, 0.02970631793141365, 0.0017890658928081393, 0.004901257809251547, -0.02438535913825035, -0.010698826983571053, 0.004367739427834749, -0.004570476245135069, 0.017314458265900612, 0.0034429735969752073, -0.00531740253791213, -0.01419159583747387, -0.010506760329008102, 0.0011426190612837672, 0.037075988948345184, 0.0074834879487752914, -0.00224789185449481, 0.005157346837222576, 0.007131366059184074, -0.00011692949919961393, 0.012868469581007957, 0.01210731640458107, -0.026505205780267715, -0.016290102154016495, -0.01620473898947239, -0.008351345546543598, -0.004349955357611179, -0.03260865807533264, -0.008877750486135483, 0.001148843439295888, 0.020273707807064056, -0.017926227301359177, 0.012228247709572315, 0.01767013780772686, 0.005413435865193605, 0.005324515979737043, -0.015365337021648884, -0.015905968844890594, 0.005331629421561956, -0.017627455294132233, -0.005054200068116188, -0.005018631927669048, 0.003852004650980234, -0.011538229882717133, 0.013572714291512966, 0.020757431164383888, -0.013281057588756084, 0.032523296773433685, 0.002263897331431508, -0.04168558865785599, 0.024171952158212662, 0.01924935169517994, 0.022521600127220154, 0.008052574470639229, -0.003414519364014268, 0.02117002010345459, -0.006437791511416435, -0.015905968844890594, 0.012206906452775002, 0.0013462454080581665, 0.0007567072752863169, 0.004140104632824659, -0.013729212805628777, 0.017869317904114723, -0.0021643072832375765, -0.01128214132040739, -2.4508512069587596e-05, 0.011694728396832943, 0.002875665435567498, -0.025921892374753952, 0.01872294768691063, 0.023403683677315712, 0.004805224481970072, 0.0034358601551502943, -0.00534585677087307, 0.012192679569125175, -0.01850954070687294, 0.011225231923162937, -0.01123234536498785, -0.009731380268931389, 0.007753804326057434, -0.00370973302051425, 0.006352428812533617, -0.008137937635183334, 0.02872464433312416, -0.004613157827407122, 0.0020576035603880882, 0.014454798772931099, -0.015052339062094688, 0.0033131507225334644, 0.0057122064754366875, 0.0023759363684803247, -0.0034518656320869923, 0.005541480146348476, 0.011211005039513111, -0.0027369505260139704, 0.003876902163028717, 0.015834832563996315, 0.023560183122754097, -0.003108635311946273, -0.017086824402213097, -0.0039124698378145695, -0.014867385849356651, 0.008458049036562443, 0.010008810088038445, -0.004335728008300066, 0.0013391318498179317, 0.0008771935827098787, -0.01704414188861847, 0.012676402926445007, 0.010456965304911137, -0.021397653967142105, 0.0036279268097132444, -0.004353512078523636, -0.007038889452815056, 0.030787581577897072, -0.004157888703048229, -0.0004294825193937868, 0.0018779856618493795, -0.0016601321985945106, -0.002098506549373269, -0.0004083640524186194, -0.0048728035762906075, 0.020757431164383888, 0.009140952490270138, -0.02117002010345459, -0.010542328469455242, -0.010229330509901047, -0.01668846234679222, -0.0028009728994220495, 0.011168323457241058, -0.01149554830044508, -0.019747303798794746, 0.014838932082057, 0.04154331982135773, 0.0043321712873876095, 0.006857492960989475, -0.00471630459651351, -0.0006486697238869965, -0.0076684411615133286, 0.016218965873122215, 0.008408254012465477, 0.003642153926193714, 0.0036030292976647615, -0.001446724752895534, 0.00023430360306520015, -0.020942384377121925, 0.008237527683377266, -0.011929476633667946, -0.008145051077008247, -0.0006064328481443226, -0.0031210840679705143, 0.01310321781784296, 0.0030606186483055353, -0.025594668462872505, -0.011033165268599987, 0.008088142611086369, -0.00595762487500906, -0.003571018110960722, 0.008130824193358421, 0.008635888807475567, -0.0027582913171499968, -0.0013604725245386362, 0.005950511433184147, 0.019391624256968498, -0.0037061760667711496, 0.001402264810167253, -0.008614547550678253, -0.007682668510824442, 0.0258934386074543, -0.017186414450407028, -0.0047589861787855625, 0.0044531021267175674, 0.009382814168930054, 0.006263508927077055, 0.009482404217123985, 0.00966024398803711, -0.003327377839013934, 0.023674000054597855, 0.010542328469455242, -0.009816743433475494, 0.000361458893166855, 0.016489282250404358, -0.004168558865785599, -0.0034020706079900265, -0.014227163977921009, 0.004499340429902077, -0.005612615961581469, -0.009681585244834423, -0.031328216195106506, -0.008365572430193424, -0.006420007441192865, 0.0034678711090236902, 0.00046549501712433994, -0.0017623899038881063, -0.008550525642931461, -0.00043948597158305347, 0.010392943397164345, 0.0007727128104306757, -0.007632873486727476, 0.020913930609822273, 0.009204975329339504, -0.0159913320094347, 0.016403919085860252, 0.030958307906985283, -0.009766947478055954, 8.680792961968109e-05, 0.006021647248417139, -0.0015116361901164055, -0.004200570285320282, -0.011673388071358204, 0.003354053944349289, 0.013245489448308945, -0.014063551090657711, 0.00656227907165885, 0.006107009947299957, 0.008792387321591377, 0.004869246855378151, -0.014725114218890667, 0.010314693674445152, 0.0131387859582901, 0.013081877492368221, -0.03667762875556946, 0.015408018603920937, 0.018907900899648666, 0.020629387348890305, -0.004125877283513546, 0.012939605861902237, -0.006156804971396923, -0.007447920273989439, 0.0017197084380313754, 0.011943704448640347, -0.019918030127882957, 0.008109482936561108, 0.01553606241941452, 0.013565600849688053, 0.012861356139183044, 0.014497480355203152, 0.010101286694407463, 0.0010999375954270363, 0.0072273993864655495, 0.0005028413143008947, -0.009724266827106476, 0.00841536745429039, 0.001254657981917262, -0.002724501769989729, 0.02484062872827053, -0.017727045342326164, -0.0009656687616370618, -0.020970840007066727, 0.006658312864601612, -0.0015667664119973779, -0.003640375565737486, 0.008771046064794064, 0.004406863823533058, 0.002763626631349325, 0.0062599522061645985, -0.010805530473589897, -0.009873651899397373, -0.006071442272514105, 0.017712818458676338, 0.018637584522366524, 0.003738187253475189, -0.004140104632824659, 0.02491176314651966, -0.012704857625067234, -0.02599302865564823, -0.013650964014232159, 0.004207683727145195, 0.014220050536096096, 0.00921920221298933, -0.008081029169261456, -0.0027156099677085876, -0.014369435608386993, -0.014966975897550583, 0.022279739379882812, -0.029450228437781334, 0.010421397164463997, 0.007170490454882383, 0.01294671930372715, -0.016332784667611122, -4.709969289251603e-05, 0.007604419253766537, 0.003780868835747242, 0.020487116649746895, -0.0035230014473199844, 0.016347011551260948, -0.003972935490310192, 0.026533659547567368, 0.02831205539405346, -0.012804447673261166, -0.005367197562009096, 0.03400292247533798, 0.010969143360853195, 0.011986385099589825, 0.008927545510232449, -0.00214296649210155, 0.003805766347795725, 0.007099354639649391, 0.005872261710464954, -0.0023990555200725794, 0.02526744268834591, 0.003057061927393079, 0.0349988229572773, 0.022237056866288185, 0.0077893720008432865, -0.006089225877076387, 0.008927545510232449, 0.006679653190076351, -0.015792151913046837, 0.0039053563959896564, -0.0008838625508360565, -0.014597070403397083, 0.008650115691125393, 0.026960475370287895, -0.0009105384815484285, 0.00245774257928133, 0.004118763841688633, 0.006206599995493889, 0.004709191154688597, 0.001193303382024169, -0.01394262071698904, -0.004470886196941137, -0.011701841838657856, 0.028610825538635254, 0.023346776142716408, -0.007042446173727512, 0.018594903871417046, -0.009076930582523346, -0.018950581550598145, 0.027757195755839348, 0.01147420797497034, -0.01836726814508438, 0.004929712042212486, 0.009695812128484249, 0.0009701147209852934, -0.008401140570640564, -0.014340980909764767, -0.012925378046929836, 0.005591275170445442, 0.007867621257901192, -0.0030446129385381937, -0.0055094691924750805, 0.014952749013900757, 0.001001236611045897, 0.005861591547727585, -0.004410420544445515, -0.0005495242075994611, 0.015137702226638794, -0.004837235901504755, -0.015834832563996315, -0.003274026094004512, 0.014092005789279938, 0.02421463280916214, 0.01336642075330019, 0.023005323484539986, -0.014625524170696735, -0.00031811048393137753, 0.011374616995453835, -0.0034447519574314356, -0.026121072471141815, 0.0026782636996358633, -0.022692326456308365, 0.017783954739570618, -0.020174117758870125, -0.0004094755568075925, 0.004798111040145159, 0.019960710778832436, 0.00256266794167459, 0.028539691120386124, 0.0035123310517519712, -0.0035941372625529766, -0.02232242003083229, 0.014248504303395748, -0.008557639084756374, 0.0014396110782399774, -0.006868163123726845, -0.002064717235043645, 0.0013293506344780326, -0.02236510068178177, 0.02078588679432869, -0.018324587494134903, -0.014355208724737167, 0.026391388848423958, 0.0004257034161128104, 0.0003883571189362556, -0.010015923529863358, -0.004456658847630024, -0.01570678874850273, -0.013188580982387066, 0.0068005844950675964, 0.0029023413080722094, -0.013779007829725742, -0.013387761078774929, -0.006444905418902636, 0.006316860672086477, 0.005907829850912094, 0.0019295590464025736, -0.008578979410231113, -0.013793235644698143, 0.0001507190172560513, -0.003933810628950596, 0.021667970344424248, 0.013423329219222069, 0.02232242003083229, 0.01333085261285305, -0.023005323484539986, 0.010755735449492931, -0.02291996031999588, -0.0031121920328587294, 0.011708956211805344, 0.018011588603258133, 0.00348565517924726, 0.0018495313124731183, 0.007519056089222431, -0.009005794301629066, -0.02145456336438656, -0.010087058879435062, -0.0014911845792084932, -0.006171032320708036, -0.010037263855338097, 0.006747232284396887, -0.0001499409700045362, -0.0021376314107328653, -0.01843840442597866, -0.010051491670310497, -0.0015560960164293647, -0.015664108097553253, -0.006501813884824514, 0.02484062872827053, 0.0036190347746014595, -0.0018690936267375946, 0.00493326922878623, 0.01207174826413393, -0.01478202361613512, 0.013949734158813953, 0.005164460279047489, -0.021995196118950844, 0.0009710039012134075, 0.008827955462038517, 0.018040044233202934, -0.008472275920212269, -0.010969143360853195, 0.000870969204697758, 0.026917794719338417, 0.02785678580403328, -0.012519904412329197, -0.010947802104055882, 0.00148051418364048, -0.011004711501300335, -0.004015617072582245, -0.005964738316833973, 0.013394874520599842, -0.03354765102267265, -0.002432845067232847, 0.01493852213025093, -0.005029302556067705, -0.006462689023464918, -0.008308663964271545, -0.009418382309377193, 0.002482640091329813, 0.0049688369035720825, -0.014227163977921009, 0.023218730464577675, 0.006210157182067633, 0.009162293747067451, 0.00985231064260006, -0.019505441188812256, 0.024968672543764114, -0.032352570444345474, 0.003990719560533762, -0.0005295172450132668, -0.0076542142778635025, -0.00739101180806756, -0.020600933581590652, 0.0205440241843462, -0.002306578913703561, -0.02200942300260067, -0.019334714859724045, -0.013522919267416, 0.0152230653911829, 0.007074457127600908, -0.01310321781784296, 0.025950346142053604, 0.002422174671664834, -0.00184597447514534, -0.018637584522366524, 0.01226381491869688, 0.009809629060328007, -0.013017854653298855, 0.024854855611920357, -0.015521835535764694, 0.004033401142805815, -0.002395498799160123, -0.01233495119959116, 0.0016254534712061286, -0.009397041983902454, -0.003624370088800788, -0.011082960292696953, 0.013722099363803864, -0.03124285116791725, -1.758944199536927e-05, -0.0063773263245821, 0.02078588679432869, -0.011815659701824188, -0.004022730514407158, -0.016603101044893265, -0.02953559160232544, -0.013821689411997795, -0.015279973857104778, -0.04390502721071243, 0.014966975897550583, 0.011929476633667946, 0.024171952158212662, -0.012256701476871967, 0.001959791872650385, -0.007824939675629139, -0.027316154912114143, 0.004741202108561993, 0.005061313509941101, 0.004552692640572786, 0.007455033715814352, -0.0050897677429020405, 0.011659161187708378, -0.01742827519774437, 0.003908913116902113, -0.011815659701824188, 0.014810477383434772, -0.005246266722679138, 0.009461063891649246, -0.0002266342780785635, -0.000932768452912569, -0.031299758702516556, 0.01166627462953329, -0.004922598600387573, -0.01584906131029129, 0.02001762017607689, 0.016190512105822563, -0.0008225078927353024, -0.016247421503067017, -0.006804141215980053, 0.011765864677727222, -0.015023885294795036, -0.004406863823533058, 0.022962642833590508, 0.0064840298146009445, 0.012889810837805271, -0.0010225774021819234, -0.013017854653298855, 0.004655839409679174, 0.02064361423254013, -0.0021038418635725975, -0.0023403684608638287, -0.004556249361485243, 0.007412352133542299, -0.0033042586874216795, 0.013686531223356724, -0.0262775719165802, -0.03240947797894478, 0.001637013047002256, -0.004958166740834713, 0.023176049813628197, 0.0027831888291984797, -0.0073625571094453335, -0.0009212088771164417, -0.003780868835747242, 0.020942384377121925, -0.03872634097933769, 0.008593207225203514, 0.01893635466694832, 0.002196318469941616, -0.00276896171271801, -0.0017472736071795225, 0.0071206954307854176, 0.006163918878883123, 0.025182079523801804, 0.021895604208111763, 0.017542092129588127, -0.014739342033863068, 0.0040831961669027805, 0.0041152071207761765, -0.0016014451393857598, 0.009845197200775146, 0.0013800348388031125, -0.007412352133542299, -0.013629622757434845, 0.01927780732512474, 0.00245774257928133, -0.016603101044893265, -0.0050008478574454784, -0.006636972073465586, 0.005569934844970703, -0.014397889375686646, 0.006914401426911354, -0.004904814530164003, -0.017371367663145065, 0.035112641751766205, -0.0014413895551115274, -0.004015617072582245, -0.03184039145708084, -0.005552150774747133, -0.016418147832155228, -0.0025199863594025373, 0.02802751213312149, 0.0019740189891308546, 0.010122627019882202, 0.033120837062597275, 0.01476779580116272, -0.0052676075138151646, -0.020529797300696373, 0.00655160890892148, 0.006992651149630547, 0.009574880823493004, 0.020871249958872795, 0.0019384510815143585, -0.004364182706922293, -0.01704414188861847, 0.016361238434910774, -0.01417025551199913, 0.014924295246601105, -0.015692561864852905, -0.00489770108833909, 0.035084184259176254, 0.00031499829492531717, -0.0037239601369947195, -0.012363404966890812, 0.017513638362288475, 0.011104301549494267, 0.01795468106865883, -0.009809629060328007, 0.0034625360276550055, -0.0015018549747765064, -0.003562126075848937, -0.005673081614077091, -0.016773825511336327, -0.0013640293618664145, -0.0037595280446112156, -0.031100580468773842, -0.0025466622319072485, 0.008322890847921371, -0.012356291525065899, -0.008280209265649319, -0.004702077712863684, -0.001926002325490117, 0.008216187357902527, -0.01461129728704691, -0.007675555068999529, -0.012235361151397228, 0.010222217068076134, 0.014753568917512894, -0.0029130117036402225, 0.008472275920212269, -0.019918030127882957, -0.006010976620018482, 0.007796485908329487, 0.002203431911766529, 0.0020095868967473507, -0.004997291136533022, -0.014397889375686646, -0.00369550590403378, 0.005182244349271059, -0.009140952490270138, -0.004225467797368765, -0.018737174570560455, 0.010520987212657928, -0.01673114486038685, -0.006067885551601648, 0.030503038316965103, 0.020174117758870125, 0.010613463819026947, 0.01879408396780491, -0.011381731368601322, 0.015692561864852905, -0.021810242906212807, 0.0022674542851746082, 0.006203043274581432, -0.004250365309417248, 0.010264898650348186, 0.011993499472737312, 0.030816037207841873, -0.027828332036733627, 0.024556085467338562, -0.03016158752143383, -0.005865148268640041, -0.008557639084756374, 0.0015143037308007479, -0.0011461758986115456, -0.0006193262524902821, -0.02414349652826786, -0.017086824402213097, 0.014881613664329052, 0.01191524975001812, 0.01819654181599617, 0.013537146151065826, 0.0029379092156887054, -0.01156668458133936, -0.0011257242877036333, -0.021525699645280838, 0.017826635390520096, 0.017129505053162575, 0.016844961792230606, -0.003145981580018997, 0.011139869689941406, 0.021852923557162285, -0.006316860672086477, 0.011929476633667946, 0.015294200740754604, -0.005086211021989584, 0.0028116432949900627, 0.01355848740786314, -0.024299995973706245, 0.003019715426489711, 0.0013640293618664145, 0.004990177694708109, 0.021611060947179794, 0.0017970686312764883, 0.015351110137999058, -0.0017668359214439988, 0.0001616116933291778, -0.0062741790898144245, 0.005978965666145086, -0.018025817349553108, -0.019292034208774567, -0.023986998945474625, -0.02903764136135578, 0.0003450087097007781, 0.035994723439216614, -0.02404390648007393, -0.018737174570560455, 0.0030623970087617636, 0.007298535201698542, -0.015251519158482552, 0.008002779446542263, 0.025978801771998405, -0.011367503553628922, -6.196596950758249e-05, -0.023261412978172302, -0.011211005039513111, 0.013871484436094761, 0.015578744001686573, 0.005473901052027941, 0.0033665027003735304, 0.01210731640458107, -0.0067009939812123775, -0.020302163437008858, -0.0070175486616790295, -0.015436472371220589, 0.008913317695260048, -0.02162528969347477, 0.008251754567027092, 0.0011906357249245048, 0.0022052102722227573, -0.011772978119552135, -0.012285156175494194, -0.008514957502484322, -0.011317708529531956, 0.018907900899648666, 0.024755265563726425, -0.013088990934193134, -0.011381731368601322, -0.008621660992503166, -0.015251519158482552, 0.0030606186483055353, 0.002283459762111306, -0.005456117447465658, -0.00468785036355257, 0.008038347586989403, -0.0019580135121941566, 0.0006584509392268956, -0.01478202361613512, -6.068774382583797e-05, 0.0001899548660730943, -0.007042446173727512, 0.008650115691125393, -0.0073554436676204205, -0.014113346114754677, -0.003933810628950596, -0.009525085799396038, -0.019121307879686356, 0.010336034931242466, 0.006235054694116116, 0.011545343324542046, 0.0029414661694318056, 0.011175436899065971, -0.008749705739319324, -0.011801432818174362, 0.005032859276980162, 0.02641984261572361, -0.0002876554790418595, 0.00941126886755228, 0.009823856875300407, 0.022663872689008713, 0.01745673082768917, -0.047888632863759995, -0.014725114218890667, -0.019960710778832436, 0.0019793540704995394, 0.006548052188009024, -0.0013080098433420062, 0.00017939564713742584, 0.008934658952057362, 0.020487116649746895, -0.0012626608368009329, -0.0015000766143202782, -0.014924295246601105, -0.00944683700799942, 0.0009959014132618904, -0.006857492960989475, -0.01906440034508705, -0.005484571680426598, -0.004118763841688633, 0.0002578673302195966, -0.012591039761900902, -0.0040831961669027805, 0.0175278652459383, 0.011694728396832943, 0.0016512401634827256, 0.014234277419745922, 0.010748622007668018, -0.021852923557162285, -0.005872261710464954, 0.004517124500125647, 0.015905968844890594, -0.002413282636553049, -0.008237527683377266, 0.0001843973877839744, 0.007038889452815056, 0.00697131035849452, -0.00030788470758125186, -0.0005762001383118331, -0.009361473843455315, 0.0025857870932668447, 0.010649031959474087, 0.014298299327492714, 0.026505205780267715, 0.0006286628195084631, 0.01268351636826992, 0.014042210765182972, 0.014469025656580925, -0.0006713442853651941, -0.01499543059617281, -0.014696660451591015, 0.008522070944309235, -0.006526711396872997, -0.006608517374843359, -0.017314458265900612, -0.012342064641416073, -0.01658887229859829, -0.011794318445026875, 0.009197860956192017, -0.010798417031764984, -0.018239224329590797, -0.006839708890765905, -0.01168761495500803, 0.012363404966890812, -0.0015480932779610157, 0.016788052394986153, 0.002176756039261818, -0.007469261065125465, 0.023702455684542656, 0.014867385849356651, -0.0046238284558057785, -0.022649643942713737, 0.025352805852890015, -0.03585245460271835, 0.022350873798131943, -0.00037590833380818367, -0.023716682568192482, -0.00092298723757267, 0.004374852869659662, 0.010087058879435062, 0.014490365982055664, 0.019363170489668846, -0.01764168217778206, 0.011886795051395893, 0.02603570930659771, -0.002838319167494774, -0.003916027024388313, 0.02735883556306362, 0.028368964791297913, -0.00803123414516449, 4.8350128054153174e-05, -0.004385523032397032, -0.004997291136533022, -0.012043294496834278, 0.006309747230261564, 0.012448768131434917, 0.009503745473921299, 0.014020869508385658, 0.008472275920212269, -0.010983370244503021, -0.004527794662863016, 0.0026853771414607763, 0.01149554830044508, -0.011851227842271328, -0.01005860511213541, -0.010990483686327934, -0.0058082398027181625, -0.019505441188812256, 0.0006851268699392676, -0.013110331259667873, -0.016261648386716843, -0.009069817140698433, 0.010513873770833015, -0.005658854264765978, -0.002306578913703561, -0.028582371771335602, 0.024556085467338562, 0.002438180148601532, -0.013394874520599842, 0.021013520658016205, 0.020102983340620995, 0.004068968817591667, 0.017371367663145065, -0.0013462454080581665, 0.007504828739911318, 0.007526169531047344, -0.01478202361613512, 0.026220662519335747, 0.001725043635815382, 0.001045696553774178, 0.00879950076341629, 0.00453135184943676, -0.005932727362960577, -0.003124640788882971, 0.0026053492911159992, -0.023645546287298203, 0.0077751451171934605, 0.00041747832437977195, -0.03827106952667236, 0.0068966178223490715, -0.0051858010701835155, -0.00718116108328104, 0.01049964688718319, 0.003763084765523672, 3.353942884132266e-05, 0.026092618703842163, -0.014696660451591015, 0.002717388328164816, -0.017029915004968643, 0.026234889402985573, -0.03090140037238598, 0.006338201463222504, 0.010350261814892292, -0.011716069653630257, 0.04222622141242027, -0.010535215027630329, 0.009589108638465405, -0.004609601106494665, 0.008685683831572533, 0.001385370036587119, 0.018082724884152412, -0.0010172422043979168, -0.0040013897232711315, -0.026761295273900032, 0.015934422612190247, -0.01409911923110485, 0.009873651899397373, -0.0018353040795773268, 0.007746690884232521, 0.004186342936009169, 0.004552692640572786, 0.021568380296230316, 0.00614969152957201, 0.0002794303873088211, 0.011118528433144093, 0.0011452867183834314, -0.013501578010618687, -0.014220050536096096, 0.013622509315609932, 0.007462147623300552, 0.011239459738135338, 0.012093089520931244, -0.020970840007066727, 0.017513638362288475, 0.017399821430444717, 0.007202501874417067, -0.0008082807180471718, -0.004186342936009169, -0.003866231767460704, -0.0016752484953030944, 0.0033042586874216795, 0.03886860981583595, -0.0007162487599998713, 0.011545343324542046, -0.0016316778492182493, -0.02099929377436638, 0.012420314364135265, -0.03232411667704582, -0.012000612914562225, -0.002838319167494774, -0.0005108441109769046, 0.005320959258824587, 0.0033878434915095568, -0.009653130546212196, 0.010222217068076134, -0.01630432903766632, -0.004033401142805815, -0.03502727672457695, -0.006238611415028572, -0.015948651358485222, -0.0007522612577304244, -0.003405627328902483, -0.027586471289396286, -0.011922363191843033, 0.013615395873785019, 0.015834832563996315, 0.016560418531298637, -0.02365977317094803, -0.03323465585708618, 0.013850144110620022, -0.013835917226970196, -0.011623593047261238, -0.012093089520931244, 0.004911928437650204, 0.007824939675629139, 0.0013097883202135563, -0.020686296746134758, 0.0046629528515040874, -0.006889503914862871, -0.00918363407254219, -0.019192444160580635, -0.0037061760667711496, 0.004958166740834713, 0.005740660708397627, -0.01233495119959116, -0.004381966311484575, 0.004823008552193642, 0.0005237374571152031, 0.0012662175577133894, -0.03033231385052204, -0.004140104632824659, 0.0009096493013203144, -0.010414283722639084, 0.011837000027298927, 0.03155585005879402, 0.007860507816076279, 0.014490365982055664, 0.01049964688718319, 0.015294200740754604, -0.0030784024856984615, 0.021881377324461937, -0.002900562947615981, 0.0006633414886891842, -0.004492226988077164, -0.007223842199891806, 0.017755500972270966, 0.004858576226979494, 0.014739342033863068, -0.00029387985705398023, 0.014027983881533146, -0.0007429246907122433, 0.013046309351921082, -0.0005557485856115818, 0.011751636862754822, 0.023816272616386414, -0.0011630706721916795, -0.012171338312327862, 0.0055165826342999935, 0.0015472040977329016, 0.012192679569125175, -0.019021717831492424, 0.0020184789318591356, -0.02277768962085247, -0.008948885835707188, -0.004577590152621269, -0.0131387859582901, -0.004883473739027977, -0.00806680228561163, -0.0022692326456308365, 0.004990177694708109, 0.026078391820192337, 0.007824939675629139, -0.02956404723227024, -0.0035230014473199844, 0.0068076979368925095, 0.019846893846988678, 0.0019935814198106527, -0.008827955462038517, 0.0029147902969270945, 0.00018917681882157922, -0.0008562974398955703, -0.01725754886865616, 0.01690187118947506, 0.0014360543573275208, 0.00614969152957201, -0.020842794328927994, -0.021966740489006042, 0.01478202361613512, 0.006530268117785454, -0.030133133754134178, -0.011395958252251148, 0.0030001532286405563, 0.008827955462038517, -0.010819758288562298, -0.004019173793494701, 0.008578979410231113, 0.022208603098988533, 0.009653130546212196, -0.012007726356387138, -0.0038555613718926907, 0.007220285478979349, 0.004876360297203064, 0.044844020158052444, 0.02886691503226757, 0.009774061851203442, 0.005029302556067705, -0.012896924279630184, -0.03872634097933769, -0.0014885170385241508, 0.00613190745934844, -0.012904037721455097, -0.008877750486135483, 0.013046309351921082, 0.006974867079406977, -0.0012555471621453762, 0.006622744724154472, -0.012278042733669281, 0.027899468317627907, 0.007376784458756447, 0.0029681420419365168, -0.0029325741343200207, -0.003425189759582281, -0.028440101072192192, 0.001532087684608996, -0.015180383808910847, 0.005427663214504719, 0.00451356777921319, -0.01966194063425064, 0.0053814249113202095, -0.01086243987083435, -0.01764168217778206, 0.00489770108833909, 0.028397418558597565, -0.011154096573591232, -0.018210770562291145, 0.013985302299261093, 0.003997833002358675, -0.008543412201106548, -7.063564407872036e-05, -0.0016041126800701022, 0.014084892347455025, 0.0010083502857014537, -0.007718236185610294, -0.01613360457122326, -0.0019989165011793375, 0.0010288017801940441, -0.01875140145421028, 0.01172318309545517, 0.0013133450411260128, 0.003990719560533762, -0.027529561892151833, 0.013458897359669209, 0.0058402507565915585, 0.02239355631172657, 0.007817826233804226, 0.013409102335572243, -0.005626843310892582, 0.014981203712522984, 0.005690865684300661, 0.01415602769702673, -0.013615395873785019, 0.003990719560533762, -0.010030150413513184, -0.005993192549794912, 0.005377867724746466, 0.02088547684252262, 0.0028258704114705324, 0.008287322707474232, 0.0017223759787157178, 0.01455438882112503, 0.00308373779989779, -0.00552725326269865, 0.008586093783378601, -0.014120460487902164, -0.0003112192207481712, 0.00046015981934033334, -0.017698591575026512, -0.010734395124018192, -0.024783719331026077, -0.017755500972270966, -0.0021500801667571068, 0.007259410340338945, 0.00257689505815506, 0.011851227842271328, 0.007476374506950378, -0.007156263571232557, -0.018253451213240623, -0.0006473359535448253, -0.002882779110223055, -0.004261035472154617, -0.01673114486038685, 0.016773825511336327, -0.012306496500968933, -0.002429288113489747, -0.000148051418364048, -0.00255911098793149, 0.0110402787104249, 0.01409911923110485, -0.0258649829775095, 0.014981203712522984, 0.005609059240669012, -0.007049559615552425, 0.013508692383766174, 0.00825886894017458, -0.006053658202290535, -0.01268351636826992, -0.020458661019802094, -0.01920667104423046, 0.006459132302552462, 0.006697437260299921, 0.013153012841939926, 0.012711971066892147, -0.016119375824928284, 0.013643849641084671, -0.00370973302051425, 0.006288406439125538, 0.009012908674776554, 0.025082489475607872, 0.008593207225203514, 0.012804447673261166, 0.017513638362288475, -0.0023119142279028893, -0.016745371744036674, 0.009617562405765057, 0.012327837757766247, 0.0009309900342486799, 0.0032793611753731966, -0.0009905663318932056, -0.0008567420300096273, -0.001707259682007134, 0.010542328469455242, -0.010108400136232376, 0.00656939297914505, -0.005139562766999006, -0.008351345546543598, 0.0077751451171934605, -0.007291421294212341, -0.0004076971672475338, -0.0029912611935287714, -0.022137466818094254, 0.017556320875883102, 0.007426579482853413, -0.040775053203105927, 0.019918030127882957, 0.029820134863257408, 0.014881613664329052, 0.011317708529531956, -0.012889810837805271, -0.014205822721123695, 0.003258020617067814, 0.01644660159945488, 0.00635954225435853, -0.011552456766366959, 0.011893908493220806, 0.009581995196640491, 0.016788052394986153, -0.010165308602154255, 0.008884863927960396, -0.012327837757766247, 0.008315777406096458, -0.0077822585590183735, 0.008209073916077614, 0.0024186179507523775, 0.009261883795261383, 0.00862877443432808, 0.01749941147863865, 0.017542092129588127, -0.004762542899698019, -0.02632025256752968, 0.006074998993426561, -0.03733207657933235, -0.006601403933018446, -0.0029912611935287714, -0.0007856062147766352, -0.007903189398348331, 0.005616172682493925, -0.003380729816854, 0.029649408534169197, 0.005566377658396959, 0.014284072443842888, -0.01906440034508705, 0.002996596274897456, -0.0049617234617471695, 0.012363404966890812, 0.007319875992834568, 0.009774061851203442, 0.0010519209317862988, 0.029905498027801514, 0.003405627328902483, 0.007056673057377338, 0.005541480146348476, -0.003859118092805147, -0.011609365232288837, 0.009909220039844513, -0.015109247528016567, -0.014127573929727077, -0.004442431963980198, 0.021283837035298347, -0.00369194895029068, -0.0050506433472037315, -0.02138342708349228, 0.013167239725589752, -0.0030766241252422333, 0.019918030127882957, -0.02330409362912178, 0.01184411346912384], "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58": [-0.017546338960528374, 0.002936876378953457, 0.00021902486332692206, 0.04872817546129227, -0.02211647853255272, -0.0150365075096488, 0.00012958873412571847, 0.02863454632461071, -0.05382275581359863, 0.010024338960647583, 0.019389377906918526, 0.05711925029754639, 0.011567696928977966, -0.01810074970126152, -0.019089696928858757, 0.042824454605579376, -0.004334140568971634, 0.01333581656217575, 0.01527625322341919, -0.0010058052139356732, 0.05142530798912048, -0.006652924232184887, -0.03766993433237076, 0.01766621135175228, -0.01988385245203972, -0.0054055009968578815, -0.029578542336821556, 0.03308481350541115, -0.02793029509484768, 0.007814189419150352, 0.012197027914226055, 0.003210335737094283, 0.0062333703972399235, 0.02172689139842987, -0.00042493868386372924, -0.008990437723696232, 0.004622583743184805, -0.0023524980060756207, -0.04258470982313156, -0.01883496716618538, -0.03710054233670235, 0.008825613185763359, 0.006694130599498749, -0.021142514422535896, -0.05403253436088562, 0.029878223314881325, -0.004978455137461424, 0.013380768708884716, 0.00466753588989377, 0.011590173467993736, 0.024888530373573303, -0.008960469625890255, -0.01801084540784359, -0.012391820549964905, -0.001953547354787588, -0.059246987104415894, 0.03554219752550125, 0.07066484540700912, -0.0009500833111815155, -0.05202466994524002, 0.046360693871974945, -0.02439405582845211, -0.029054099693894386, -0.010196655057370663, -0.03182614967226982, -0.026896394789218903, 0.017201704904437065, -0.006162196397781372, -0.07384146749973297, 0.008196283131837845, -0.021127529442310333, 0.020812863484025, -0.015583425760269165, 0.007297238800674677, 0.033204685896635056, -0.030043046921491623, 0.04126610979437828, 0.00603108573704958, -0.006353242788463831, 0.009230183437466621, 0.01055627316236496, 0.007057494018226862, 0.0015630251727998257, -0.026297030970454216, 0.07396133989095688, -0.02145717851817608, -0.017935924232006073, -0.03077726624906063, 0.007038763724267483, -0.013620513491332531, -0.015943042933940887, 0.005206962116062641, -0.003937062807381153, 0.005326834507286549, 0.01962912268936634, -0.026566745713353157, 0.011874870397150517, 0.015583425760269165, 0.016197772696614265, 0.00216332427226007, 0.03377407789230347, 0.013096071779727936, -0.0036804606206715107, -0.007286000996828079, 0.0036467465106397867, -0.008600852452218533, -0.0011472173500806093, -0.01396514754742384, -0.006990065798163414, 0.017890971153974533, 0.017591290175914764, -0.036351338028907776, 0.040936462581157684, -0.006038577761501074, -0.03485293313860893, -0.013418229296803474, -0.00025964571977965534, -0.01326838880777359, -0.010683637112379074, -0.03212583065032959, 0.03533242270350456, 0.023135393857955933, -0.02688140980899334, 0.0003212208684999496, -0.02457386441528797, -0.009582309052348137, 0.004199283663183451, 0.018175669014453888, -0.006978827528655529, -0.027091186493635178, 0.0250533539801836, 0.027945278212428093, 0.016152821481227875, 0.02719607576727867, 0.03242551535367966, -0.008480980060994625, 0.0036561114247888327, 0.038748789578676224, 0.006596733815968037, 0.019164618104696274, -0.06413178890943527, -0.0391683429479599, -0.03128672391176224, -0.004225505981594324, -0.004180553834885359, -0.010870938189327717, -0.043303944170475006, 0.026386935263872147, -0.017606275156140327, 0.04710989445447922, -0.05948673188686371, -0.07539980858564377, -0.00218018121086061, 0.008900533430278301, 0.02592243067920208, -0.04126610979437828, -0.03599172085523605, 0.022041557356715202, -0.005648992024362087, 0.024199262261390686, -0.0032946208957582712, -0.04210522025823593, -0.0038359202444553375, 0.035901814699172974, 0.05385272577404976, 0.01326838880777359, 0.02601233497262001, 0.03413369879126549, -0.028739433735609055, 0.017471417784690857, 0.03308481350541115, -0.020183533430099487, 0.009627261199057102, -0.01862519048154354, -0.024978434666991234, 0.014242352917790413, -0.0031691293697804213, 0.020078646019101143, 0.005570325534790754, -0.01517136488109827, -0.026416903361678123, 0.013508133590221405, -0.0020097375381737947, -0.01582317054271698, 0.01766621135175228, -0.0013672958593815565, -0.003086717100813985, 0.039018500596284866, 0.023330187425017357, 0.010383956134319305, -0.005102073773741722, 0.004322902299463749, -0.027765469625592232, 0.022805744782090187, -0.022670887410640717, -0.007248540874570608, -0.008016473613679409, 0.00933507177978754, -0.01285632699728012, -0.008068918250501156, -0.014204892329871655, -0.001519945915788412, -0.0005834419862367213, 0.02102264203131199, -0.006503083743155003, 0.006461877375841141, -0.0270612183958292, -0.03937811776995659, 0.010204147547483444, -0.048937950283288956, 0.0569094754755497, -0.028919242322444916, 0.0013513752492144704, 0.006956351455301046, -0.020648039877414703, 0.00238808523863554, -0.02400447055697441, 0.024364087730646133, -0.023794693872332573, -0.022895649075508118, -0.030177904292941093, 0.010781033895909786, -0.01709681749343872, -0.006106005981564522, -0.054841671139001846, -0.04974709078669548, -0.018595222383737564, 0.0048960428684949875, -0.03467312455177307, 0.023135393857955933, 0.009574816562235355, -0.0003612564178183675, -0.014759303070604801, -0.0023749740794301033, -0.03799958527088165, 0.05699937790632248, 0.03404379263520241, 0.01296121533960104, -0.02355494722723961, -0.005896228831261396, 0.015403617173433304, 0.011927315033972263, 0.03422360122203827, -0.019224554300308228, 0.02941371686756611, -0.006600480061024427, -0.00466753588989377, 0.00974713359028101, 0.01757630705833435, -0.015763234347105026, 0.002893797354772687, 0.009574816562235355, 0.017411481589078903, -0.015763234347105026, -0.03155643865466118, 0.04510203003883362, 0.006057307589799166, -0.011275507509708405, 0.008301171474158764, -0.008952978067100048, 0.017111800611019135, 0.010129227302968502, 0.0003148994583170861, 0.054841671139001846, 0.0072934930212795734, -0.02571265399456024, 0.026042303070425987, 0.008068918250501156, 0.03479299694299698, 0.019898835569620132, -0.027136139571666718, 0.018595222383737564, 0.004116871394217014, 0.004588869400322437, 0.040067385882139206, 0.004465250764042139, 0.0062633384950459, -0.01831052638590336, 0.026641665026545525, -0.03257535398006439, -0.0244390070438385, -0.008930501528084278, 0.024798626080155373, 0.038928598165512085, 0.03698066994547844, 0.004794900305569172, -0.021232418715953827, -0.02854464203119278, -0.019254522398114204, -0.012751437723636627, -0.010983319021761417, 0.02920394018292427, 0.011305475607514381, 0.02255101501941681, 0.0023618629202246666, -0.0030548758804798126, 0.004682519938796759, -0.05430224537849426, -0.016287676990032196, -0.0036074132658541203, -0.006023593712598085, 0.026896394789218903, 0.0024199262261390686, -0.03737025335431099, 0.026866426691412926, -0.043423816561698914, 0.040936462581157684, 0.014564509503543377, -0.011545221321284771, 0.010294051840901375, 0.04420298710465431, 0.005416738800704479, -0.004442774690687656, -0.013253403827548027, 0.03728035092353821, -0.03371414169669151, -0.004116871394217014, -0.0015152634587138891, -0.009777101688086987, -0.029173972085118294, 0.021846765652298927, 0.0009823926957324147, -0.04878811165690422, 0.011410364881157875, 0.03755006194114685, -0.006113498006016016, 0.01718672178685665, -0.009305103681981564, -0.010039323009550571, -0.03985761106014252, -0.008391075767576694, -0.020258454605937004, -0.014759303070604801, -0.009350055828690529, -0.03242551535367966, 0.0008901470573619008, -0.03907843679189682, -0.03698066994547844, -0.011642617173492908, -0.023270251229405403, 0.01055627316236496, -0.007904093712568283, 0.022326255217194557, -0.007016287650913, 0.0011453443439677358, 0.011492776684463024, 0.005641499999910593, 0.031406596302986145, -0.006192164495587349, -0.004697503987699747, 0.0009388452162966132, -0.010773541405797005, 0.05499151349067688, 0.015508505515754223, 0.019659090787172318, -0.030717330053448677, -0.030043046921491623, -0.013088579289615154, -0.010863445699214935, -0.011395380832254887, 0.0063981954008340836, 0.002635322278365493, -0.022191397845745087, 0.0010619955137372017, 0.0017596909310668707, 0.03536238893866539, -0.013305848464369774, -0.008593360893428326, 0.009702181443572044, -0.012496708892285824, -0.02671658620238304, 0.01486419141292572, 0.039138372987508774, -0.007776728831231594, -0.03064241074025631, -0.02587747760117054, 0.03488289937376976, -0.007166128605604172, -0.01858023926615715, 0.03251541778445244, -0.00698257377371192, -0.004907280672341585, 0.013755370862782001, -0.0020958958193659782, 0.003789094975218177, 0.017801066860556602, 0.011088207364082336, -0.011852394789457321, 0.012713978067040443, 0.04228502884507179, -0.0351526141166687, 0.00203783274628222, -0.019329441711306572, 7.175961945904419e-05, -0.016976943239569664, 0.01496907975524664, 0.0016978817293420434, -0.04429289326071739, 0.006458131596446037, -0.010601225309073925, 0.006915145553648472, -0.03476302698254585, 0.013755370862782001, -0.015118920244276524, 0.04201531410217285, -0.010301543399691582, -0.032545387744903564, -0.03763996809720993, 0.010571257211267948, -0.004764932207763195, -0.00567146809771657, 0.012069663032889366, 0.03808949142694473, -0.0029537335503846407, 0.007454571779817343, -0.001900166622363031, -0.019419346004724503, 0.04447270184755325, -0.0299081914126873, -0.03155643865466118, 0.035692039877176285, 0.018475349992513657, -0.013875243254005909, 0.02715112268924713, -0.019314458593726158, 0.0541224367916584, 0.024903513491153717, 0.026911377906799316, 0.006630448158830404, -0.017905956134200096, -0.004300426226109266, -4.5010721805738285e-05, 0.005461691413074732, -0.016107868403196335, 0.012466740794479847, 0.011140651069581509, 0.03991754725575447, -0.01600297912955284, 0.005383024923503399, -0.015478537417948246, -0.033504366874694824, 0.035781942307949066, 0.012331884354352951, -0.005735150538384914, -0.018550271168351173, -0.014332257211208344, -0.012017219327390194, -0.007761744782328606, -0.004334140568971634, -0.011949790641665459, 0.006038577761501074, -0.0064656236208975315, 0.008113870397210121, -0.01591307483613491, 0.01544856932014227, -0.004783662501722574, -0.012706485576927662, -0.021367274224758148, -0.005959911271929741, -0.08618833124637604, 0.0036017943639308214, -0.0003671095473691821, 0.036830827593803406, -0.015883106738328934, 0.0351526141166687, -0.019913820549845695, 0.010458876378834248, 0.00374226993881166, 0.008316155523061752, -3.438725616433658e-05, -0.01333581656217575, -0.0016061043133959174, 0.023704789578914642, 0.05301361531019211, 0.039408087730407715, -0.0024442754220217466, -0.01652742177248001, -0.0029799556359648705, -0.010796017944812775, 0.009544848464429379, 0.015568441711366177, -0.04899788647890091, -0.0025004656054079533, 0.010578748770058155, -0.010174179449677467, -0.0033845254220068455, 0.02482859417796135, -0.03428353741765022, -0.0023206567857414484, 0.0026840204373002052, 0.023674819618463516, -0.00893799401819706, 0.001959166256710887, 0.012489217333495617, 0.00024302277597598732, -0.0021858003456145525, -0.006843971088528633, -0.055231258273124695, -0.003097955137491226, -0.044262923300266266, -0.003120431210845709, -0.03784974291920662, -0.0008419170626439154, -0.003687952645123005, -0.04219512268900871, 0.0484284944832325, -0.04135601595044136, -0.009207706898450851, -0.007488285657018423, -0.028005214408040047, -0.003341446164995432, -0.004940995015203953, -0.03829926624894142, 0.008098886348307133, 0.0019310711650177836, 0.020782895386219025, 0.014100003987550735, 0.010473860427737236, 0.038149427622556686, 0.0034894137643277645, -0.009499896317720413, -0.009372531436383724, -0.03497280552983284, 0.003847158281132579, 0.00964224524796009, -0.02006366103887558, -0.0015143268974497914, -0.013852766714990139, -0.01819065399467945, -0.012399313040077686, -0.024633800610899925, 0.014549525454640388, -3.342148556839675e-05, -0.00821875873953104, 0.00941748358309269, 0.004143093712627888, -0.026072271168231964, 0.032934971153736115, 0.0276755653321743, 0.02496344968676567, -0.05061616748571396, 0.010279067791998386, -0.010803509503602982, -0.008683265186846256, -0.04210522025823593, 0.01573326624929905, 0.008278694935142994, 0.0067053684033453465, -0.004536425229161978, -0.0006424417369998991, -0.02526313066482544, 0.030372697860002518, -0.008061426691710949, 0.01075106579810381, -0.013897718861699104, -0.021891716867685318, 0.0058288006111979485, -0.03002806380391121, -0.008016473613679409, -0.009499896317720413, -0.025427956134080887, 0.035422325134277344, -0.0012286931741982698, 0.008465996012091637, 0.009522372856736183, -0.013620513491332531, -0.03758003190159798, 0.020992673933506012, -0.015178856439888477, 0.017501385882496834, 0.013208451680839062, -0.02359990030527115, 0.05154518038034439, -0.005064613651484251, 0.008615836501121521, 0.007896601222455502, -0.01112566702067852, -0.04270458221435547, -0.041415952146053314, -0.012773914262652397, -0.01156020537018776, -0.018370462581515312, 0.010983319021761417, -0.006308290641754866, 0.0016622946131974459, 0.017905956134200096, -0.034343473613262177, -0.038628917187452316, 0.00667914655059576, -0.027001282200217247, -0.006506829522550106, 0.038149427622556686, -0.01700691133737564, 0.020258454605937004, -0.019389377906918526, 0.009702181443572044, -0.008855581283569336, 0.01114814355969429, 0.010511321015655994, -0.018655158579349518, 0.015763234347105026, 0.033114779740571976, 0.02715112268924713, 0.009522372856736183, -0.05631010979413986, 0.035392358899116516, -0.0060123554430902, 0.034463346004486084, -0.023105425760149956, 0.010811001993715763, -0.005690198391675949, 0.0061771804466843605, 0.018520303070545197, -0.012092139571905136, 0.036651019006967545, 0.014332257211208344, 0.02045324631035328, 0.04021722823381424, 0.01221950352191925, -0.004206775687634945, 0.010264083743095398, 0.012953722849488258, 0.008016473613679409, 0.002740210620686412, 0.01753135398030281, 0.03335452452301979, 0.015598409809172153, 0.01753135398030281, -0.008758185431361198, 0.01700691133737564, -0.00421801395714283, 0.032725196331739426, 0.010781033895909786, -0.01744144968688488, 0.008458503521978855, 0.0066866385750472546, -0.013433213345706463, 0.01254915352910757, -0.013822798617184162, -0.004173061810433865, -0.024334119632840157, -0.001135979313403368, 0.00746580958366394, 0.025637732818722725, 0.0009243294480256736, 0.019314458593726158, -0.009372531436383724, 0.001399136963300407, 0.026956330984830856, 0.01564336195588112, -0.008196283131837845, 0.03161637485027313, -0.013260896317660809, 0.019599154591560364, -0.005678960122168064, -0.032185766845941544, -0.0064656236208975315, 0.011410364881157875, 0.008900533430278301, 0.009072850458323956, 0.01828055828809738, 0.014399684965610504, 0.00793406181037426, 0.025368019938468933, -0.0037441428285092115, 0.025862494483590126, 0.05783848464488983, -0.01162763312458992, 0.014189908280968666, 0.031676311045885086, 0.026566745713353157, -0.020962705835700035, 0.08451011776924133, 0.009739641100168228, -0.00018858848488889635, 0.010046814568340778, -0.0054729292169213295, -0.004195537883788347, 0.0028507180977612734, 0.015808187425136566, 0.013193467631936073, -0.03046260215342045, -0.05301361531019211, 0.004154331516474485, 0.0047911545261740685, -0.005034645553678274, -0.01512641180306673, -0.012429281137883663, 0.0035306198988109827, -0.01682710275053978, -0.016332630068063736, 0.006150958128273487, 0.007488285657018423, 0.019868867471814156, 0.013470673002302647, 0.007660602685064077, 0.009237674996256828, -0.01696196012198925, 0.023839645087718964, -0.02368980459868908, -0.032245706766843796, 0.00617343420162797, 0.0066491784527897835, -0.01835547760128975, -0.009777101688086987, 0.01705186441540718, -0.018505318090319633, -0.009252659045159817, 0.010069291107356548, 0.005124549847096205, 0.017636243253946304, 0.021187465637922287, -0.019344426691532135, -0.0013813433470204473, 0.025158243253827095, 0.0033882714342325926, 0.0021520862355828285, 0.011260523460805416, -0.01967407576739788, 0.027480771765112877, 0.0319160558283329, 0.05786845460534096, 0.001640754984691739, -0.027046235278248787, -0.0343734435737133, -0.0025060847401618958, 0.016991928219795227, 0.0029331303667277098, -0.016092883422970772, 0.0046075996942818165, 0.026371952146291733, -0.03125675767660141, 0.0023618629202246666, 0.015193840488791466, 0.012084647081792355, 0.007623142562806606, -0.012167059816420078, -0.011665093712508678, 0.03686079755425453, -0.01853528618812561, -0.009799577295780182, -0.005191978067159653, 0.01958417147397995, -0.025083322077989578, -0.024633800610899925, 0.0009608530672267079, 0.03038768097758293, -0.02364485152065754, -0.0007487349212169647, -0.0012839469127357006, 0.01762125827372074, -0.021846765652298927, 0.027990231290459633, 0.011170619167387486, 0.013141023926436901, -0.01976398006081581, 0.026386935263872147, 0.007641872391104698, -0.016887038946151733, 0.029338795691728592, -0.004173061810433865, 0.04794900491833687, -0.005349310580641031, -0.019254522398114204, 0.010983319021761417, -0.004899788647890091, -0.00743209570646286, 0.020093629136681557, 0.026252079755067825, 0.015358665026724339, -0.006135974079370499, 0.020737944170832634, 0.027480771765112877, 0.016242725774645805, -0.01844538189470768, 0.019898835569620132, 0.0017512624617666006, -0.012998674996197224, -0.023150378838181496, -0.00023295536811929196, 0.010811001993715763, -0.028229976072907448, 0.013058611191809177, 0.015163872390985489, 0.015373649075627327, -0.02911403588950634, 0.012519185431301594, 0.01664729416370392, -0.015051491558551788, -0.0023731011897325516, 0.016332630068063736, -0.007604412268847227, 0.0033901443239301443, 0.0050795977003872395, 0.008615836501121521, 0.014886667020618916, -0.007139906287193298, -0.020558135583996773, 0.03173624724149704, 0.006888923235237598, 0.029084067791700363, 0.012339376844465733, 0.024903513491153717, 0.04108630120754242, 0.018475349992513657, -0.018999792635440826, 0.010503828525543213, 0.00771679263561964, -0.009252659045159817, -0.0008391075534746051, -0.011110682971775532, -0.019659090787172318, -0.004225505981594324, 0.02307545766234398, -0.025982366874814034, 0.006214640568941832, 0.030087999999523163, 0.012624073773622513, 0.02348002791404724, 0.039797671139240265, -0.009065358899533749, 0.006473115645349026, 0.02391456626355648, 0.013470673002302647, -0.00964224524796009, 0.0050683594308793545, 0.013283372856676579, 0.014886667020618916, 0.02207152545452118, 0.002717734547331929, 0.026117222383618355, -0.0001323982432950288, -0.014616954140365124, 0.021007657051086426, -0.0001678683329373598, 0.009881990030407906, 0.01905972883105278, 0.01477428711950779, -0.04707992821931839, -0.006188418250530958, -0.011485285125672817, -0.027600646018981934, -0.03251541778445244, 0.02106759324669838, 0.006102259736508131, -0.0035193818621337414, 0.030312759801745415, -0.020872801542282104, 0.04051690921187401, 0.02373475767672062, -0.008203774690628052, 0.0031054471619427204, 0.023450059816241264, 0.011515253223478794, -0.0034819217398762703, 0.013957655057311058, 0.0034107475075870752, 0.02521817944943905, -0.021921684965491295, -0.018220622092485428, -0.01678215153515339, -0.0002750980493146926, -0.020827848464250565, -0.011050746776163578, -0.018909888342022896, 0.0023787200916558504, -0.013163499534130096, -0.01774113066494465, -0.047049958258867264, -0.01726164110004902, -0.02740585245192051, 0.02571265399456024, 0.002455513458698988, 0.012788898311555386, -0.012998674996197224, 0.012758930213749409, 0.009215199388563633, 0.0007126795244403183, -0.011702553369104862, -0.018819984048604965, -0.0028750672936439514, 0.03046260215342045, -0.020558135583996773, 0.022715840488672256, -0.052743904292583466, 0.003562461119145155, 0.014347241260111332, -0.008158822543919086, -0.005765118636190891, -0.018595222383737564, 0.03212583065032959, -0.018730079755187035, -0.03020787239074707, -0.007806696929037571, -0.015231301076710224, 0.007368413265794516, 0.0029911936726421118, -0.004794900305569172, 0.011133159510791302, -0.049777060747146606, 0.00911780260503292, -0.041505854576826096, -0.03695069998502731, -0.020932737737894058, 0.02688140980899334, -0.02234123833477497, 0.0004338354628998786, 0.029308827593922615, 0.015853138640522957, 0.026386935263872147, 0.010653669014573097, 0.004802392330020666, -0.014384700916707516, 0.007739268708974123, 0.033684175461530685, 0.0016885166987776756, 0.011372904293239117, -0.008623328991234303, -0.0030511298682540655, 0.0032627799082547426, -0.026731569319963455, -0.02264091931283474, 0.011710045859217644, 0.022655904293060303, -0.016362598165869713, -0.01494660321623087, -0.016452502459287643, -0.026282047852873802, 0.018520303070545197, 0.0037441428285092115, 0.0013560577062889934, 0.002777670742943883, 0.012107123620808125, -0.016227740794420242, 0.016602342948317528, -0.023524979129433632, 0.005087089724838734, 0.00812885444611311, -0.033893950283527374, 0.013141023926436901, 0.0003404191811569035, -0.03602169081568718, 0.035602133721113205, 0.00192919815890491, 0.014527049846947193, -0.019434330984950066, -0.011590173467993736, 0.02989320643246174, -0.009110311046242714, 0.003556842217221856, -0.006383210886269808, 0.020932737737894058, 0.010983319021761417, -0.013425720855593681, 0.013103563338518143, 0.039797671139240265, -0.01355308573693037, 0.02102264203131199, -0.008143838495016098, -0.010294051840901375, 0.009829545393586159, 0.001670723082497716, -0.03991754725575447, 0.008593360893428326, -0.01849033497273922, -0.010938366875052452, -0.02040829509496689, 0.025517860427498817, -0.016797134652733803, -0.017456434667110443, -0.03743018954992294, -0.005502897314727306, 0.031046979129314423, 0.014017591252923012, -0.0045027113519608974, 0.007889109663665295, -0.007694316562265158, 0.0017774845473468304, -0.002785162767395377, -0.027166107669472694, 0.02452891133725643, -0.022521046921610832, 0.007162382360547781, -0.019808931276202202, 0.005997371394187212, -0.011080714873969555, -0.009387515485286713, -0.007424603682011366, -0.019434330984950066, 0.02124740183353424, 0.011013287119567394, -0.021007657051086426, 0.02067800797522068, -0.013418229296803474, 0.017816051840782166, -0.008705740794539452, -0.01143284048885107, -0.020273437723517418, -0.015628378838300705, -0.033983856439590454, 0.010781033895909786, -0.025457924231886864, -0.05061616748571396, 0.035901814699172974, 0.018819984048604965, 0.02234123833477497, 0.010204147547483444, -0.04429289326071739, 0.00031372884404845536, -0.0029218923300504684, -0.030717330053448677, 0.01616780459880829, 0.023764725774526596, -0.010039323009550571, -0.004753694403916597, 0.02574262209236622, 0.020737944170832634, -0.037130508571863174, -0.01613783650100231, 0.036171529442071915, 0.024708721786737442, -0.0379396490752697, 0.000772615778259933, -0.04633072391152382, -0.0036055403761565685, 0.0072260648012161255, -0.018909888342022896, -0.013987623155117035, -0.009784593246877193, 0.022146446630358696, -0.025862494483590126, -0.025233162567019463, 0.007424603682011366, -0.0077692368067801, 0.005450453143566847, -0.02784039080142975, -0.01814570091664791, -0.06533052027225494, -0.005353056825697422, -0.005409246776252985, 0.04678024724125862, 0.004498965106904507, -0.028754418715834618, 0.013867750763893127, 0.025083322077989578, -0.031496502459049225, 0.003461318789049983, -0.03077726624906063, -0.012489217333495617, -0.006214640568941832, 0.023105425760149956, -0.009065358899533749, 0.0034107475075870752, -0.02124740183353424, -0.010758557356894016, -0.0002178542345063761, 0.017711162567138672, -0.0260572861880064, 0.007836665026843548, 0.018804999068379402, -0.004120617639273405, -0.005899975076317787, 0.03025282360613346, -0.030357712879776955, -0.009657229296863079, -0.026341984048485756, -0.03230564296245575, 0.026596713811159134, -0.02521817944943905, -0.0019572933670133352, -0.00014504104910884053, 0.006506829522550106, 0.023884598165750504, -0.003963284660130739, -0.00706873182207346, 0.010548780672252178, 0.011155635118484497, 0.005120803602039814, 0.00315789133310318, -0.013141023926436901, -0.0011003921972587705, 0.01919458620250225, -0.015418601222336292, -0.008361107669770718, -0.03323465213179588, -0.01669224724173546, -0.0020640548318624496, 0.009454944171011448, 0.023465042933821678, -0.0013251531636342406, -0.017846019938588142, 0.010324019938707352, 0.00902789831161499, 0.007806696929037571, -0.007199842482805252, 0.011942299082875252, -0.003215954639017582, 0.026386935263872147, 0.02067800797522068, 0.007851649075746536, -0.03134666010737419, -0.02754070982336998, 0.023794693872332573, -0.0032983669079840183, 0.03802955523133278, 0.019734011963009834, 0.007551968097686768, -0.0034763028379529715, -0.015987996011972427, 0.02521817944943905, 0.01132045965641737, 0.004371600691229105, -0.014512065798044205, 0.031106915324926376, 0.03230564296245575, 0.023809676989912987, -0.01967407576739788, -0.012316900305449963, 0.01377035491168499, 0.014452129602432251, 0.0022457365412265062, -0.03476302698254585, -0.008593360893428326, -0.012234487570822239, -0.011275507509708405, 0.030582474544644356, 0.005439214874058962, 0.03728035092353821, -0.01527625322341919, 0.023360155522823334, 0.02683645859360695, -0.0075182537548244, 0.03904847055673599, -0.029173972085118294, -0.00707247806712985, -0.014519557356834412, -0.012886295095086098, 0.001778421108610928, -0.0334743969142437, 0.005315596703439951, -0.004498965106904507, 0.0062820687890052795, -0.03467312455177307, -0.009822053834795952, 0.00048089478514157236, -0.002489227568730712, -0.00018531072419136763, -0.016227740794420242, 0.03055250644683838, -0.030717330053448677, 0.05139533802866936, -0.0010376464342698455, 0.003538111923262477, 0.010256591252982616, -0.0027495757676661015, 0.01287131104618311, -0.0042404900304973125, -0.00044156162766739726, 0.019599154591560364, -0.018700111657381058, -0.022221365943551064, -0.016467485576868057, -0.007439587730914354, 0.015246285125613213, -0.0023787200916558504, 0.025592781603336334, 0.02391456626355648, 0.007993998005986214, 0.017231673002243042, 0.028304895386099815, 0.003303986042737961, -0.001370105310343206, 0.012084647081792355, 0.03781977668404579, -0.014616954140365124, 0.03895856440067291, -0.021651972085237503, -0.007394635584205389, -0.005019661504775286, -0.0009407182224094868, 0.02391456626355648, -0.003850904293358326, -0.010151702910661697, 0.006420671474188566, -0.01577821932733059, -0.018025828525424004, -0.00693012960255146, -0.004487726837396622, 0.01604793220758438, 0.025727637112140656, -0.016017964109778404, -0.029099050909280777, -0.017036879435181618, -0.019419346004724503, -0.006769050844013691, 0.0031091931741684675, -0.02364485152065754, -0.007525745779275894, 0.010016846470534801, 0.020707976073026657, -0.004364108666777611, 0.028334863483905792, -0.004547663498669863, -0.037699904292821884, 0.006023593712598085, -0.028709465637803078, 0.01805579662322998, -0.013410736806690693, -0.014077527448534966, 0.004371600691229105, -0.01012173481285572, 0.011260523460805416, -0.03305484354496002, -0.0040681734681129456, 0.009170247241854668, 0.015478537417948246, 0.027945278212428093, -0.005206962116062641, -0.018640175461769104, 0.0030773519538342953, 0.029233908280730247, -0.0029537335503846407, 0.0046075996942818165, -0.009260151535272598, 0.01718672178685665, -0.006390702910721302, 0.015156379900872707, 0.019344426691532135, 0.029233908280730247, -0.013305848464369774, 0.0018795634387061, 0.025847509503364563, -0.0011322333011776209, 0.021187465637922287, 0.03203592821955681, -0.02247609570622444, -0.029428701847791672, -0.0008170997025445104, 0.013238419778645039, 0.015388633124530315, -0.008675772696733475, 0.011590173467993736, 0.01735154539346695, -0.011799950152635574, 0.01678215153515339, 0.021966638043522835, 0.017156753689050674, -0.012017219327390194, 0.006847716867923737, 0.014257336966693401, -0.015051491558551788, 0.011792457662522793, -0.022131461650133133, -0.011754998005926609, -0.0026278302539139986, -0.012624073773622513, -0.024978434666991234, 0.024379070848226547, 0.024364087730646133, 0.02172689139842987, -0.037699904292821884, 0.030477585271000862, 0.007222318556159735, -0.00486232852563262, -0.05744890123605728, -0.007300985045731068, 0.017321577295660973, -0.006109751760959625, -0.008301171474158764, 0.04129607975482941, -0.013200960122048855, 0.0025042116176337004, -0.0001651758939260617, 0.03137663006782532, 0.00891551747918129, 0.02416929416358471, -0.003918332513421774, -0.018730079755187035, 0.00455890130251646, 0.003049256978556514, 0.016107868403196335, 0.004079411271959543, 0.02106759324669838, -0.03404379263520241, 0.00228881579823792, 0.01657237485051155, 0.021741876378655434, -0.007799204904586077, 0.002017229562625289, -0.021622003987431526, 0.013628005981445312, -0.0032758908346295357, 0.020692991092801094, -0.020663022994995117, -0.03116685152053833, -0.0013373276451602578, -0.0036935717798769474, -0.0028788133058696985, 0.025368019938468933, 0.013418229296803474, -0.013732894323766232, 0.02662668190896511, -0.00698257377371192, -0.013613021932542324, 0.022446127608418465, 0.021037625148892403, 0.004794900305569172, 0.024978434666991234, -0.016062915325164795, -0.019599154591560364, 0.003253414761275053, 0.0029499875381588936, -0.001987261464819312, 0.004386584740132093, -0.02421424724161625, -0.021007657051086426, 0.0019020396284759045, -0.01666227914392948, -0.015081459656357765, -0.00915526319295168, 0.004637567792087793, 0.0064169252291321754, 0.019374394789338112, -0.008593360893428326, -0.006038577761501074, 0.008615836501121521, 0.012511692941188812, 0.00964224524796009, 0.004630075767636299, 0.034253571182489395, 0.001516199903562665, 0.031046979129314423, 0.0051732477732002735, 0.01766621135175228, -0.011357920244336128, 0.009949417784810066, 0.018115732818841934, 0.021562067791819572, 0.002170816296711564, -0.0058288006111979485, -0.0007220445550046861, -0.0036467465106397867, -0.00021890780772082508, -0.008465996012091637, -0.022236350923776627, -0.014354732818901539, -0.0066267019137740135, -0.01648247055709362, -0.0015049618668854237, -0.02216142974793911, -0.010166686959564686, -0.011777473613619804, -0.011792457662522793, 0.003124177223071456, 0.015763234347105026, -0.008143838495016098, -0.009514880366623402, 0.02509830705821514, -0.011103191412985325, 0.010526305064558983, 0.007338445167988539, -0.023929549381136894, -0.00023002878879196942, 0.009020406752824783, -0.00228881579823792, 0.023360155522823334, 0.007600666489452124, -0.040157292038202286, 0.024154311046004295, -0.00361677841283381, -0.010983319021761417, 0.014489589259028435, -0.011312968097627163, -0.0042030299082398415, -0.0066866385750472546, -0.011208079755306244, 0.0012389947660267353, 0.0031972245778888464, 0.028649529442191124, -0.00812885444611311, -0.016842087730765343, 0.00642441725358367, -0.0037741109263151884, -0.0004764464101754129, 0.018550271168351173, 0.028379816561937332, 0.005015915259718895, 0.013403245247900486, -0.015973011031746864, -0.003189732553437352, -0.007608158513903618, -8.083199645625427e-05, 0.045701395720243454, -0.008518439717590809, 0.0056939441710710526, -0.021472163498401642, -0.01648247055709362, -0.014811746776103973, 0.019659090787172318, 0.00913278665393591, 0.0006864574388600886, 0.0016182789113372564, 0.006510575767606497, 0.02259596809744835, -0.025113290175795555, 0.003959538880735636, -0.00913278665393591, -0.004322902299463749, -0.020962705835700035, -0.010279067791998386, -3.061197276110761e-05, -0.02455887943506241, 0.0022251333575695753, -0.018415413796901703, 0.015763234347105026, -0.011680077761411667, 0.011754998005926609, 0.002521068789064884, 0.00915526319295168, -0.017501385882496834, -0.002860083244740963, -0.013702926225960255, -0.0020603088196367025, -0.006132227834314108, -0.013732894323766232, -0.0006859891582280397, -0.007739268708974123, -0.01394267100840807, -0.015987996011972427, -0.02626706287264824, -0.006896415259689093, 0.0023037998471409082, -0.004997185431420803, -0.03041764907538891, 0.015718283131718636, -0.04540171101689339, 0.008248726837337017, 0.008203774690628052, -0.01171753741800785, -0.0024105613119900227, 0.030672378838062286, -0.015043999999761581, 0.011402872391045094, 0.007799204904586077, 0.0004785535275004804, 0.011597665026783943, -0.02872445061802864, -0.013702926225960255, -0.0014665651833638549, 0.006087275687605143, -0.004382838495075703, -0.023899581283330917, 0.0054729292169213295, 0.0044240448623895645, 0.020003724843263626, -0.00905037485063076, -0.0015667711850255728, -0.02348002791404724, 0.01182242576032877, -0.0001768821821315214, -0.010983319021761417, -0.028379816561937332, 0.012511692941188812, -0.018610207363963127, -0.010578748770058155, -0.0005904657300561666, -0.011350427754223347, 0.025592781603336334, 0.024993417784571648, 0.017681194469332695, -0.00914027914404869, 0.049807026982307434, -0.02452891133725643, 0.01796589232981205, -0.02959352545440197, -0.010855954140424728, -0.006727844476699829, -0.019524235278367996, -0.018939856439828873, 0.00026924489066004753, -0.01444463711231947, 0.0005909340106882155, 0.003245922736823559, 0.020348358899354935, -0.01953921839594841, 0.03317471593618393, 0.03034272976219654, 0.001641691429540515, -0.011020778678357601, 0.013680449686944485, -0.008458503521978855, 0.010181671008467674, 0.029218923300504684, -0.026252079755067825, 0.003918332513421774, -0.02072295919060707, 0.02133730612695217, -0.013320832513272762, 0.023509996011853218, -0.006300798617303371, 0.010975826531648636, 0.010481352917850018, 0.007904093712568283, 0.014811746776103973, -0.025682685896754265, -0.023015521466732025, -0.00027743930695578456, 0.015006539411842823, 0.013170992024242878, -0.008765676990151405, 0.02815505489706993, 0.025113290175795555, 0.0023731011897325516, 0.004543917253613472, 0.008353615179657936, -0.017081832513213158, -0.005720166489481926, 0.012144583277404308, 0.00024911004584282637, -0.020033692941069603, -0.003120431210845709, 0.017081832513213158, -0.006600480061024427, 0.02325526624917984, 0.015073968097567558, -0.004184299614280462, 0.019808931276202202, 0.005308104678988457, 0.00359055632725358, -0.010009354911744595, -0.020213501527905464, 0.011073223315179348, -0.023150378838181496, -0.01616780459880829, -0.023330187425017357, 0.004783662501722574, 0.0018102622125297785, -0.01958417147397995, -0.01123055536299944, -0.03488289937376976, -0.0053680408746004105, 0.020782895386219025, -0.023659836500883102, 0.0006813066429458559, 0.021322323009371758, 0.02124740183353424, -0.00922269094735384, 0.01022662315517664, 0.020947720855474472, 4.331331001594663e-05, 0.0025323068257421255, 0.004761186428368092, -0.024379070848226547, 0.01125303190201521, 0.016287676990032196, -0.0064543853513896465, 0.008990437723696232, -0.0023749740794301033, -0.014234860427677631, -0.0038996024522930384, 0.005731404293328524, 0.0067053684033453465, 0.0017934051575139165, -0.001703500747680664, 0.006293306592851877, 0.0007744887843728065, 0.0008803137461654842, -0.005296866409480572, 0.002461132360622287, -0.029743365943431854, 0.009012914262712002, 0.02731594815850258, 0.00667914655059576, 0.014414669014513493, -0.00893799401819706, -0.008031457662582397, -0.010331511497497559, -0.012698994018137455, -0.009327579289674759, -0.007668094709515572, 0.023285234346985817, 0.00012642804358620197, 0.06916643679141998, 0.005132041871547699, 0.015478537417948246, -0.00718111265450716, 0.0014431526651605964, -0.024154311046004295, -0.008038950152695179, 0.00914027914404869, 0.03332455828785896, -0.015987996011972427, 0.019314458593726158, 0.004974708892405033, 0.008480980060994625, 0.01905972883105278, -0.016467485576868057, 0.011387888342142105, 0.0035212549846619368, 0.00991944968700409, -0.0044914730824530125, 0.019044745713472366, 0.01234686840325594, 0.0002846972201950848, 0.002292561810463667, -0.003189732553437352, 0.00037975236773490906, -0.0022700857371091843, -0.0014918508240953088, 0.015066475607454777, 0.009484912268817425, 0.028529657050967216, -0.0026240842416882515, -0.01819065399467945, -0.0027027504984289408, 0.010241607204079628, -0.0020265947096049786, 0.0135306091979146, 0.012968706898391247, 0.011140651069581509, -0.014991555362939835, 0.01762125827372074, -0.021397242322564125, 0.019044745713472366, 0.014347241260111332, 0.02425919845700264, -0.016422534361481667, -0.005862514954060316, 0.018385445699095726, -0.0054841674864292145, 0.007656856440007687, -0.009492404758930206, -0.013800323009490967, 0.0008952977950684726, -0.007462063804268837, 0.013066103681921959, 0.007173620630055666, -0.01412247959524393, -0.008990437723696232, -0.013815307058393955, -0.0028469720855355263, -0.001265216851606965, -0.007345937192440033, -0.005682705901563168, -0.012998674996197224, -0.025083322077989578, -0.011163127608597279, -0.01962912268936634, -0.024334119632840157, 0.0037104287184774876, -0.0032421767245978117, -2.2344400349538773e-05, -0.012841342948377132, 0.014369716867804527, 0.013785338960587978, -0.030957074835896492, 0.01405505184084177, 0.006495591718703508, 0.014714350923895836, 0.01971902698278427, 0.00012139432510593906, 0.013111055828630924, -0.005832546856254339, -0.006948859430849552, 0.004158077761530876, -0.008855581283569336, 0.0028001468162983656, -0.0033096049446612597, 0.01081849355250597, -0.01905972883105278, -0.006034831516444683, -0.018595222383737564, 0.022281302139163017, 0.009926942177116871, 0.00893799401819706, 0.0005796959740109742, 0.02190670184791088, -0.007263524923473597, -0.00578010268509388, -0.004648805595934391, 0.00301554286852479, 0.002642814302816987, -0.00166978663764894, 0.01534368097782135, 0.0010835351422429085, 0.02421424724161625, -0.005195723846554756, 0.01905972883105278, 0.015313712880015373, -0.016332630068063736, -0.0006920764571987092, -0.002200784394517541, 0.0071473983116447926, 0.004562647547572851, -0.019164618104696274, 0.02120245061814785, -0.017696179449558258, -0.004768678452819586, 0.011747505515813828, 0.011919822543859482, -0.01714176870882511, -0.016242725774645805, -0.017471417784690857, 0.0010001861955970526, -0.023674819618463516, -0.007428349461406469, 0.008263710886240005, 0.005469183437526226, -0.031975992023944855, -0.009822053834795952, -0.009762117639183998, -0.01123055536299944, 0.00687393918633461, 0.028694482520222664, 0.011073223315179348, 0.0023824661038815975, -0.0014543907018378377, -0.00040222847019322217, 0.018640175461769104, 0.013485657051205635, 0.008908025920391083, -0.0029293843545019627, 0.02840978465974331, 0.008098886348307133, 0.023539964109659195, 0.008203774690628052, -0.0036430004984140396, 0.011620141565799713, -0.00631578266620636, -0.01313353143632412, -0.0011135032400488853, -0.0024143073242157698, 0.022835712879896164, -0.036261435598134995, 0.002041578758507967, -0.006990065798163414, -0.006956351455301046, -0.009702181443572044, -0.02701626718044281, 0.026476839557290077, 0.010346495546400547, 0.0048960428684949875, 0.02015356533229351, -0.003152272431179881, -0.013343309052288532, -0.00771679263561964, 0.015081459656357765, -0.008990437723696232, 0.017411481589078903, 0.02539798803627491, 0.013732894323766232, -0.0072822547517716885, -0.004405314568430185, -4.8171423259191215e-05, -0.00863082055002451, -0.014579493552446365, -0.02250606380403042, 0.004435282666236162, -0.007536984048783779, 0.0023899581283330917, -0.014197399839758873, 0.02286568097770214, 0.0015808186726644635, 0.031406596302986145, 0.0033545573242008686, -0.0033676682505756617, -0.008271203376352787, -0.0003554032591637224, 0.019179601222276688, -0.0009027898195199668, -0.005165755748748779, -0.0019385631894692779, 0.004098141565918922, 0.019464299082756042, -0.0033545573242008686, -0.007345937192440033, -0.042165156453847885, -0.015673330053687096, 0.004764932207763195, 0.02273082360625267, 0.007237302605062723, 0.002740210620686412, -0.012639057822525501, 0.010811001993715763, 0.01639256626367569, -0.0013504386879503727, -0.01819065399467945, -0.0048848045989871025, -0.005176994018256664, 0.006690384354442358, -0.018864935263991356, -0.006615464109927416, -0.016887038946151733, -0.02037832699716091, 0.003315224079415202, 0.0036804606206715107, -0.031046979129314423, 0.007469555828720331, 0.0017568814801052213, 0.010938366875052452, 0.008465996012091637, 0.004588869400322437, -0.0018851824570447206, 0.0036130324006080627, -0.02784039080142975, 0.003002431709319353, -0.011605157516896725, -0.005941181443631649, -0.0002659671299625188, 0.024513928219676018, 0.025038370862603188, 0.011620141565799713, 0.03404379263520241, -0.018340494483709335, -0.03497280552983284, 0.006761558819562197, 0.0006209021084941924, 0.0323655791580677, 0.021322323009371758, -0.006727844476699829, 0.01826557330787182, 0.0048286146484315395, -0.011515253223478794, 0.002339386846870184, 0.006225878372788429, -0.019134650006890297, 0.010114243254065514, -0.009207706898450851, 0.0045401714742183685, -0.017321577295660973, -0.012077155523002148, -2.9368178729782812e-05, -0.005480421241372824, -0.0033882714342325926, -0.02006366103887558, 0.00791158527135849, 0.01971902698278427, 0.0006621083011850715, 0.015568441711366177, 0.0023150378838181496, -0.006922637578099966, -0.023674819618463516, -0.002689639339223504, -0.002944368403404951, -0.01618278957903385, -0.012069663032889366, -0.001796214608475566, 0.02300053834915161, 2.2095640815678053e-05, 0.01849033497273922, 0.003019288880750537, -0.0006031085504218936, 0.02129235491156578, 0.0061771804466843605, 0.006312036886811256, 0.017516370862722397, -0.006761558819562197, 0.006188418250530958, 0.006784034892916679, 0.008518439717590809, -0.011395380832254887, 0.007308477070182562, -0.008570884354412556, -0.003165383357554674, -0.008480980060994625, -0.015808187425136566, 0.010863445699214935, -0.0065705119632184505, 0.005461691413074732, 0.013882734812796116, 8.40512293507345e-05, 0.03077726624906063, 0.004405314568430185, -0.01876004785299301, 0.018085764721035957, 0.002706496510654688, 0.014189908280968666, 0.01871509477496147, -0.012691501528024673, -0.004386584740132093, 0.015718283131718636, 0.020992673933506012, -0.01814570091664791, -0.008406059816479683, -0.028334863483905792, -0.008780661039054394, -0.0034350964706391096, 0.006503083743155003, 0.005948673468083143, 0.0060610538348555565, -0.012204519473016262, 0.0016594850458204746, 0.004671281669288874, -0.004255474079400301, 0.010488844476640224, -0.006761558819562197, -0.002957479562610388, 0.0033058589324355125, -0.009380023926496506, 0.012174551375210285, -0.004244235809892416, 0.018730079755187035, -0.004247982054948807, 0.009454944171011448, -0.012968706898391247, 0.01093087438493967, -0.004592615645378828, 7.907605322543532e-05, -0.011702553369104862, -0.018864935263991356, -0.015793202444911003, -0.03823933005332947, 0.02102264203131199, -0.001006741775199771, -0.007664348464459181, -0.014654413796961308, -0.018804999068379402, 0.007428349461406469, -0.006135974079370499, 0.0012764548882842064, -0.025607764720916748, 0.01125303190201521, -0.010466368868947029, 0.01125303190201521, -0.00034510172554291785, -0.022056542336940765, -0.0016426279908046126, -0.010346495546400547, 0.0010470114648342133, -0.008758185431361198, -0.007799204904586077, 0.01905972883105278, -0.0021614511497318745, -0.022670887410640717, 0.0017568814801052213, -0.009267643094062805, 0.01053379662334919, -0.00014492399350274354, -0.02788534201681614, 0.014939111657440662, -0.021217433735728264, -0.006488099694252014, -0.012009726837277412, 0.017636243253946304, -0.00832364708185196, -0.02268587239086628, -0.02168194018304348, 0.022281302139163017, -0.013373277150094509, 0.010743573307991028, -0.01862519048154354, -0.025083322077989578, -0.008173806592822075, -0.005566579755395651, -0.017276626080274582, -0.021262386813759804, -0.0037928412202745676, -0.011005794629454613, 0.014077527448534966, 0.0015527235809713602, -0.005795086733996868, -0.019224554300308228, 0.04372349753975868, -0.008645804598927498, 0.002335640834644437, -0.01630266197025776, 0.03410372883081436, 0.008076410740613937, 0.024858562275767326, 0.020228486508131027, -0.003918332513421774, 0.011118175461888313, -0.00718111265450716, -0.009679704904556274, -0.005162009969353676, -0.009042882360517979, 0.017066849395632744, 0.02688140980899334, -0.013163499534130096, 0.028379816561937332, 0.01062370091676712, -0.009095326997339725, 0.00416556978598237, -0.005023407284170389, -0.0016772786621004343, 0.01616780459880829, 0.039497990161180496, -0.03230564296245575, 0.013523117639124393, -0.0011715664295479655, 0.02033337391912937, -0.006188418250530958, -0.011567696928977966, -0.02220638282597065, -0.020033692941069603, -0.013448197394609451, 0.02019851841032505, 0.009589800611138344, 0.0005487913149408996, -0.00038771264371462166, 0.006720352452248335, -0.009012914262712002, 0.006199656520038843, 0.002241990529000759, -0.0005057121743448079, -0.0008161631994880736, 0.02592243067920208, -0.0026034810580313206, 0.024798626080155373, -0.027465788647532463, -0.01657237485051155, -0.010975826531648636, -0.02727099508047104, -0.009170247241854668, 0.0003284787817392498, 0.010915890336036682, -0.00902789831161499, 0.00022382444876711816, -0.0028544641099870205, -0.01212959922850132, -0.006094767712056637, -0.0023749740794301033, -0.016272693872451782, -0.011635125614702702, 0.00031677246442995965, -0.0008021156536415219, 0.020438263192772865, 0.011507760733366013, 0.012818866409361362, 0.012788898311555386, 0.0010339004220440984, -0.007136160507798195, -0.009462435729801655, 0.017276626080274582, -0.01053379662334919, -0.0035306198988109827, -0.019689058884978294, -0.0023037998471409082, -0.014287305064499378, -0.013275880366563797, 0.02430415153503418, -0.026806490495800972, -0.005637753754854202, -0.001946055213920772, -0.0007403063937090337, -0.002371228067204356, 0.0016519930213689804, 0.02058810368180275, 0.011725029908120632, 0.026731569319963455, -0.011635125614702702, 0.022580983117222786, 0.002509830752387643, 0.02469373680651188, 0.006907653529196978, -0.013920195400714874, 0.01003183051943779, 0.021756859496235847, 0.01828055828809738, 0.006907653529196978, 0.008728217333555222, -0.0056564840488135815, -0.012361852452158928, 0.023659836500883102, 0.011275507509708405, -0.0005558151169680059, 0.0033676682505756617, -0.009125295095145702, 0.01123804785311222, 0.020513182505965233, 0.02509830705821514, 0.025068338960409164, 0.022805744782090187, 0.00961976870894432, 0.006536797620356083, 0.0023487519938498735, -0.012421788647770882, 0.013328325003385544, 0.00863082055002451, 0.02049819938838482, 0.01206217147409916, -0.01475181058049202, 0.0009112183470278978, 0.0007880681077949703, -0.014129972085356712, 0.0075032697059214115, 0.013380768708884716, -0.009762117639183998, 0.001687580137513578, 0.021142514422535896, 0.020947720855474472, 0.0034631916787475348, -0.0020284675993025303, 0.006990065798163414, -0.017276626080274582, 0.03647121042013168, -0.0009154326398856938, 0.0018851824570447206, 0.022191397845745087, 0.025547828525304794, -0.006615464109927416, 0.0017699925228953362, -0.010391447693109512, -0.035032741725444794, 0.0034107475075870752, 0.015133904293179512, 0.0009168373653665185, -0.023015521466732025, 0.0009290119633078575, -9.031410445459187e-05, -0.005585309583693743, -0.017950907349586487, -0.018610207363963127, 0.004645059816539288, 0.0028376069385558367, -0.0037609999999403954, -0.01525377668440342, -0.02163698710501194, 0.02181679755449295, 0.01184490229934454, 0.02649182453751564, -0.010503828525543213, 0.015238792635500431, 0.008473487570881844, 0.009080342948436737, -0.010758557356894016, 0.0003104510542470962, -0.008975453674793243, 0.006199656520038843, -0.003236557822674513, -0.019269505515694618, -0.01335829310119152, -0.015793202444911003, -0.009484912268817425, 0.03991754725575447, 0.0024199262261390686, 0.011552712880074978, -0.016857070848345757, 0.0012979945167899132, 0.024633800610899925, 0.013702926225960255, 0.009305103681981564, -0.006094767712056637, -0.009679704904556274, -0.01335080061107874, 0.009380023926496506, -0.010571257211267948, -0.0010676145320758224, 0.04120617359876633, 0.024903513491153717, -0.0009257341735064983, 0.015231301076710224, -0.01826557330787182, -0.0007070605061016977, -0.02719607576727867, 0.026087254285812378, 0.0033002400305122137, -0.016107868403196335, -0.022326255217194557, -0.0014665651833638549, 0.019599154591560364, -0.01525377668440342, -0.0034594456665217876, -0.016362598165869713, -0.02207152545452118, 0.00038911739829927683, -0.004686265718191862, 0.01892487145960331, 0.017591290175914764, 0.006510575767606497, 0.025203194469213486, -0.012541661038994789, 0.051515210419893265, -0.015853138640522957, 0.01053379662334919, -0.0034856677521020174, 0.012893786653876305, 0.009057866409420967, 3.441652006586082e-05, 0.01355308573693037, -0.032455481588840485, -0.024199262261390686, -0.009357547387480736, 0.020663022994995117, 0.008038950152695179, 0.009881990030407906, -0.020663022994995117, -0.0021071338560432196, 0.0037104287184774876, -0.013365784659981728, -0.010346495546400547, 0.01374787837266922, 0.0006564892828464508, -0.01840043067932129, 0.02247609570622444, -0.016707230359315872, 0.005180739797651768, -0.004296680446714163, 0.004131855443120003, -0.009627261199057102, 0.01691700704395771, -9.698669600766152e-05, -0.02671658620238304, 0.004929756745696068, 0.02626706287264824, 0.010294051840901375, 0.006218386348336935, -0.002994939684867859, -0.00771679263561964, 0.008803137578070164, 0.008083902299404144, 0.0033021129202097654, 0.005015915259718895, 0.0031803674064576626, -0.02159203588962555, -0.0022850697860121727, 0.003678587730973959, 0.017336562275886536, -0.015553457662463188, -0.014264828525483608, 0.022625936195254326, -0.011425348930060863, 0.01783103495836258, -0.004641313571482897, 0.0012680264189839363, -0.004978455137461424, 0.0004755099071189761, -0.014519557356834412, 0.008121362887322903, 0.0047911545261740685, 0.01477428711950779, 0.025323066860437393, -0.015658346936106682, -0.00427420437335968, -0.00013134468463249505, 0.005229438189417124, -0.033414460718631744, -0.01705186441540718, -0.0010264083975926042, -0.0125266769900918, 0.03572200611233711, -0.013777846470475197, -0.018819984048604965, -0.03182614967226982, -0.008361107669770718, 0.006394449155777693, 0.0053568026050925255, 0.0043079182505607605, -0.006124735809862614, 0.0071586365811526775, 0.011784966103732586, 0.010039323009550571, 0.00802396610379219, 0.02348002791404724, -0.0045289332047104836, 0.026416903361678123, 0.01666227914392948, 0.022236350923776627, -0.005585309583693743, -0.017756115645170212, -0.00511331157758832, -0.02924889139831066, -0.009792085736989975, 0.019389377906918526, -0.0024161802139133215, -0.023135393857955933, -1.3447612218442373e-05, 0.012811374850571156, 0.025727637112140656, -0.0004263434384483844, -0.003416366409510374, 0.007836665026843548, -0.016407549381256104, 0.000605449837166816, -0.018325509503483772, -0.020663022994995117, 0.0019498012261465192, 0.000417446659412235, -0.01879001595079899, -0.009567325003445148, -0.011462808586657047, -0.0034819217398762703, -0.03176621347665787, 0.007510761730372906, 0.0023862121161073446, 9.86987379292259e-06, -0.016452502459287643, -0.0010179798118770123, -0.0018449128838256001, 0.0028450991958379745, -0.0075706979259848595, 0.029338795691728592, -0.019734011963009834, 0.013170992024242878, 0.023809676989912987, -0.02671658620238304, -0.013260896317660809, -0.03134666010737419, 0.008930501528084278, 0.003470683703199029, -0.0006953541887924075, 0.022011589258909225, 0.019853884354233742, -0.012646549381315708, 0.012953722849488258, -0.008226251229643822, 0.0028919242322444916, -0.017036879435181618, 8.223675831686705e-05, 0.022625936195254326, 0.012114615179598331, 0.008091394789516926, 0.015673330053687096, 0.0005609658546745777, 0.021352291107177734, 0.007510761730372906, 0.0010451384587213397, 0.002183927223086357, 0.018775030970573425, -0.0073309531435370445, 0.007660602685064077, 0.007799204904586077, -0.024798626080155373, -0.0025341797154396772, -0.01045138482004404, -0.013365784659981728, -0.014729334972798824, -0.0023862121161073446, 0.008136346936225891, 0.006495591718703508, -0.0042592198587954044, -5.0863873184425756e-05, -0.015103936195373535, -0.0016304533928632736, 0.009020406752824783, 0.0016257709357887506, 0.000701441487763077, 0.025502875447273254, 0.020123597234487534, 0.01639256626367569, 0.016107868403196335, 0.016512438654899597, 0.022356223315000534, 0.0071586365811526775, -0.0033583033364266157, 0.013912702910602093, -0.031496502459049225, 0.022086510434746742, 0.012594105675816536, -0.019314458593726158, -0.007593174465000629, 0.0260572861880064, 0.01114814355969429, -0.023794693872332573, -0.00010652732453309, -0.03419363498687744, -0.01272146962583065, -0.033114779740571976, 0.012249471619725227, -0.0005661166505888104, 0.017021896317601204, 0.020932737737894058, -0.005394262727349997, -0.015793202444911003, -0.03239554539322853, 0.0042030299082398415, -0.023045489564538002, -0.02019851841032505, 0.024858562275767326, 0.015298728831112385, -0.009717165492475033, 0.010009354911744595, 0.02154708281159401, -0.009095326997339725, -0.021127529442310333, -0.009799577295780182, 0.005229438189417124, 0.006671654526144266, 0.012324392795562744, -0.009559832513332367, -0.01326838880777359, -0.03566206991672516, 0.009447451680898666, -0.01582317054271698, 0.009462435729801655, -0.02736089937388897, 0.002114625880494714, 0.024034438654780388, -0.0011959156254306436, 0.010721097700297832, -0.013702926225960255, -0.012212011963129044, -0.004603853449225426, 0.0015133904526010156, -0.0005820372025482357, 0.001307359547354281, 0.011447824537754059, -0.020812863484025, 0.006300798617303371, -0.009777101688086987, 0.010001862421631813, 0.016542406752705574, 0.009357547387480736, 0.01182242576032877, -0.002577258972451091, -0.010241607204079628, -0.014452129602432251, 0.013980131596326828, 0.018565254285931587, -0.004633821547031403, -0.0130286430940032, -0.013013659045100212, -0.0017306593945249915, 0.010593732818961143, -0.0017475164495408535, 0.002200784394517541, -0.0021015149541199207, -0.001657612039707601, -0.006143466103821993, 0.0019610393792390823, 0.017801066860556602, -0.004322902299463749, -0.01436222530901432, -0.01333581656217575, 0.0007885363302193582, 0.013852766714990139, -0.00974713359028101, -0.00552911963313818, -0.016812119632959366, 0.009687197394669056, -0.004026967100799084, -0.022221365943551064, 0.01739649847149849, 0.01634761318564415, 0.016677262261509895, 0.03677089139819145, 4.7205652663251385e-05, 0.028904259204864502, -0.0014693747507408261, 0.01206217147409916, 0.006918891333043575, -0.015508505515754223, 0.015373649075627327, 0.022670887410640717, -0.001461882726289332, -0.039797671139240265, -0.001779357553459704, -0.011312968097627163, -0.002268212614580989, -0.005004677455872297, 0.001436597085557878, 0.007450825534760952, -0.01657237485051155, 0.009110311046242714, -0.007237302605062723, 0.01753135398030281, 0.0005623706383630633, 0.011417856439948082, 0.010061798617243767, 0.022790761664509773, -0.01534368097782135, 0.0035474770702421665, -0.02106759324669838, 0.007274762727320194, 0.01591307483613491, 0.021921684965491295, 0.0012118361191824079, -0.006267084740102291, 0.014077527448534966, -0.01075106579810381, 0.015838155522942543, 0.0009973767446354032, 0.02168194018304348, 0.005652737803757191, 0.02312041074037552, -0.02246111072599888, -0.0011331698624417186, -0.00491851894184947, 0.01405505184084177, 0.011807441711425781, -0.018475349992513657, 0.012579121626913548, -0.004753694403916597, -0.001428168616257608, 0.008615836501121521, -0.0003603199147619307, -0.02286568097770214, -0.012122107669711113, -0.0419553779065609, -0.009290119633078575, 0.0040082368068397045, 0.01844538189470768, -0.020737944170832634, 0.008008982054889202, -0.0065705119632184505, -0.014189908280968666, -0.0077692368067801, 0.004637567792087793, 0.025862494483590126, -0.002335640834644437, -0.00891551747918129, -0.0071211764588952065, -0.016332630068063736, 0.024409038946032524, 0.020558135583996773, -0.010129227302968502, 0.003974522929638624, 0.01105823926627636, -0.005143279675394297, -0.01762125827372074, 0.010481352917850018, -0.011792457662522793, -0.006907653529196978, -0.013313340954482555, 0.01042890828102827, 4.050379720865749e-05, -0.009986878372728825, -0.00522569241002202, 0.002901289379224181, 0.003970776684582233, -0.009095326997339725, 0.000897639081813395, 0.03284506872296333, 0.013365784659981728, -0.006102259736508131, -0.024888530373573303, -0.016632311046123505, 0.0331447497010231, 0.016587357968091965, -0.003532493021339178, -0.016602342948317528, -0.006360734812915325, 0.004439028911292553, -0.004341632593423128, -0.008406059816479683, -0.00531185045838356, 0.007679332513362169, -0.00850345566868782, 0.009732149541378021, -0.013628005981445312, -0.017546338960528374, -0.006712860427796841, -0.005390516947954893, -0.014227368868887424, 0.00336579536087811, -0.011350427754223347, 0.035122644156217575, -0.0032309386879205704, -0.004753694403916597, -0.008698249235749245, -0.0012521058088168502, -0.011425348930060863, 0.02959352545440197, -0.014197399839758873, -0.004116871394217014, -0.00388461840339005, 0.01923953741788864, 0.00812885444611311, -0.020558135583996773, 0.01206217147409916, -0.018085764721035957, 0.01823560521006584, -0.00432664854452014, 0.004671281669288874, 0.01664729416370392, -0.00924516748636961, 0.00457763159647584, 0.01643751747906208, -0.01093087438493967, -0.015928059816360474, -0.0022532285656780005, -0.0003099828027188778, -0.008421043865382671, -0.008248726837337017, -0.009881990030407906, -0.014579493552446365, -0.020273437723517418, 0.0015583425993099809, -0.006671654526144266, 0.02037832699716091, -0.005499151535332203, 0.015973011031746864, 0.009110311046242714, 0.015186348930001259, -0.003929570782929659, -0.003212208626791835, 0.011178111657500267, -0.014242352917790413, 0.0008714169380255044, -0.009042882360517979, -0.021367274224758148, 0.019344426691532135, 0.013470673002302647, -0.007529492024332285, -0.023465042933821678, 0.005281882360577583, 5.53415302420035e-05, 0.01766621135175228, 0.0037235398776829243, 0.014219876378774643, -0.007450825534760952, 0.01105823926627636, 0.008113870397210121, 0.023135393857955933, -0.012144583277404308, -0.014564509503543377, -0.010541289113461971, -0.0058288006111979485, -0.004847344476729631, 0.013485657051205635, -0.007536984048783779, -0.015703298151493073, 0.0018683254020288587, 0.010458876378834248, 0.01826557330787182, -0.008083902299404144, -0.006390702910721302, -0.016317645087838173, -0.02959352545440197, 0.02199660614132881, 0.004431536886841059, 0.007439587730914354, 0.0319160558283329, -0.012639057822525501, -0.016017964109778404, -0.0021296099293977022, -0.01103576272726059, -0.018640175461769104, 0.016767166554927826, -0.028005214408040047, 0.013433213345706463, 0.00952986441552639, -0.02911403588950634, -0.02439405582845211, -0.017246657982468605, 0.013036135584115982, -1.3667105122294743e-05, 0.010099259205162525, -0.023045489564538002, 0.006540543865412474, 0.016842087730765343, 0.007462063804268837, 0.009777101688086987, -0.0017550084739923477, 0.003719793865457177, -0.026521792635321617, 0.008952978067100048, -0.006274576764553785, -0.004341632593423128, -0.009829545393586159, 0.0024911006912589073, 0.004581377375870943, -0.002785162767395377, 0.010661161504685879, 0.015246285125613213, 0.014939111657440662, 0.004641313571482897, -0.007499523926526308, -0.01313353143632412, 0.00852593220770359, -0.015156379900872707, -0.013328325003385544, 0.0024948467034846544, -0.017156753689050674, -0.0012502328027039766, -0.018175669014453888, 0.003161637345328927, -0.02781042270362377, 0.0031129391863942146, -0.0028132579755038023, -0.004382838495075703, -0.015336189419031143, 0.004270458128303289, 0.01940436288714409, -0.008645804598927498, 0.015186348930001259, -0.0034107475075870752, 0.00732346111908555, -0.008585868403315544, 0.0004626329755410552, 0.01477428711950779, 0.014002607204020023, -0.01967407576739788, 0.007064986042678356, 0.01125303190201521, 0.006308290641754866, 0.0051844860427081585, 0.004232998006045818, 0.002715861424803734, 0.022146446630358696, -0.002363736042752862, -0.029578542336821556, -0.012736453674733639, -0.0005239739548414946, -0.0014778032200410962, -0.0013307721819728613, -0.011702553369104862, -0.01145531702786684, 0.008428535424172878, -0.0002980424033012241, 0.00922269094735384, -0.0024536403361707926, 0.0036973177921026945, 0.014736826531589031, -0.009447451680898666, -0.008443519473075867, -0.027570677921175957, 0.011050746776163578, 0.0120247108861804, -0.023450059816241264, -0.004633821547031403, -0.004967216867953539, -0.004704996012151241, -0.010653669014573097, -0.009267643094062805, -0.006248354446142912, 0.0011884236009791493, 0.010346495546400547, -0.004120617639273405, -0.01801084540784359, 0.020962705835700035, -0.008960469625890255, 0.03743018954992294, -0.0006550845573656261, 0.006506829522550106, 0.011725029908120632, -0.010353988036513329, -0.00255665578879416, -0.00013532482262235135, 0.006548035889863968, -0.0037272858899086714, 0.019254522398114204, -0.003538111923262477, -0.006888923235237598, 0.02307545766234398, 0.017771098762750626, 0.005315596703439951, 0.021846765652298927, -0.013230928219854832, -0.0035680802538990974, 0.0019947534892708063, 0.02076791226863861, -0.00019034443539567292, -0.0014684381894767284, 0.00757444417104125, 0.010241607204079628, -0.0025042116176337004, 0.015141395851969719, 0.006881431210786104, -0.0010516939219087362, -0.013058611191809177, -0.042464837431907654, -0.016797134652733803, -0.020513182505965233, 0.0016023583011701703, -0.020183533430099487, 0.005806324537843466, 0.006799018941819668, 0.0030436378438025713, 0.0025060847401618958, 0.011882362887263298, -0.019913820549845695, 0.006278322543948889, -0.018804999068379402, 0.013912702910602093, -0.030927106738090515, 0.008780661039054394, 0.015373649075627327, -0.0005492595955729485, -0.01896982453763485, -0.005802578758448362, 0.003880872391164303, 0.0026371951680630445, -0.007776728831231594, -0.01344070490449667, -0.014984063804149628, -0.0067540667951107025, 0.010398940183222294, -0.015463553369045258, 0.0043191565200686455, -0.015568441711366177, 0.014174924232065678, -0.0023487519938498735, -0.0014590731589123607, 0.004101887345314026, -0.010945858433842659, -0.006660416256636381, -0.018939856439828873, 0.006124735809862614, -0.005712674465030432, -0.0041356016881763935, -0.006353242788463831, -0.01700691133737564, -0.0009252659510821104, -0.02662668190896511, -0.01595802791416645, 0.0007829173118807375, 0.004094395320862532, -0.018550271168351173, 0.008735708892345428, 0.025338051840662956, 0.0017512624617666006, 0.0008339568157680333, 0.01871509477496147, -0.000471998006105423, 0.010151702910661697, -0.016752183437347412, -0.004911026917397976, 0.015613393858075142, -0.0015630251727998257, 0.023539964109659195, 0.029173972085118294, -0.017501385882496834, -0.01696196012198925, 0.001674469094723463, 0.009792085736989975, -0.01709681749343872, -0.0056939441710710526, -0.018220622092485428, 0.017366530373692513, 0.013538101688027382, -0.007023779675364494, -0.019374394789338112, -0.01792093925178051, 0.02300053834915161, -0.014369716867804527, -0.028949210420250893, -0.0042592198587954044, -0.00812885444611311, -0.01003183051943779, -0.00656676571816206, 0.008443519473075867, -0.005933689419180155, -0.012017219327390194, 0.017801066860556602, 0.006645432207733393, 0.006300798617303371, 0.0072934930212795734, -0.013702926225960255, -0.012361852452158928, -0.0009421230060979724, 0.006364481057971716, -0.004498965106904507, -0.008735708892345428, -0.0012005980825051665, -0.0013719783164560795, -0.004337886348366737, -0.01971902698278427, 0.01700691133737564, 0.0005267834640108049, 0.00432664854452014, 0.004678773693740368, -0.041985347867012024, 0.012271948158740997, 0.017756115645170212, -0.00974713359028101, 0.01186737883836031, 0.0007482666987925768, 0.0025042116176337004, -0.008046441711485386, -0.014766794629395008, 0.006248354446142912, 0.012886295095086098, 0.011380396783351898, -0.010526305064558983, -0.021442195400595665, -0.009057866409420967, 0.00693012960255146, 0.046061012893915176, 0.03614156320691109, 0.006712860427796841, -0.011080714873969555, -0.010945858433842659, -0.017546338960528374, 0.004798646550625563, -0.0027008773759007454, -0.010870938189327717, -0.013036135584115982, 0.021696923300623894, -0.02268587239086628, 0.022521046921610832, 0.026851441711187363, -0.011088207364082336, 0.006948859430849552, 0.007477047853171825, 0.0015714536421000957, -0.01495409570634365, 0.007615650538355112, 0.011769982054829597, -0.0030998282600194216, -0.0013719783164560795, -0.00037553810398094356, 0.009739641100168228, 0.010076782666146755, -0.0030080508440732956, -0.013800323009490967, -0.0040681734681129456, -0.02963847853243351, 0.04090649262070656, 0.0006354179349727929, -0.032725196331739426, 0.010863445699214935, 0.01657237485051155, 0.020962705835700035, -0.004772424232214689, 0.01618278957903385, 0.0017484528943896294, -0.002326275920495391, -0.0006574257859028876, -0.0052893743850290775, 0.003667349461466074, -0.0029705907218158245, -0.040546875447034836, 0.0032890019938349724, 0.011312968097627163, -0.004585123620927334, -0.0002136399707524106, 0.0043079182505607605, 0.01031652744859457, 0.007390889339148998, 0.004225505981594324, 0.012736453674733639, -0.003019288880750537, -0.0037104287184774876, 0.015358665026724339, -0.009881990030407906, -0.010473860427737236, 0.02229628711938858, -0.008398567326366901, 0.010511321015655994, 0.0075145079754292965, 0.021711908280849457, -0.012489217333495617, 0.010563764721155167, -0.01123804785311222, -0.007979013957083225, 0.0002347113040741533, 0.006915145553648472, 0.011582680977880955, -0.01493161916732788, 0.0037235398776829243, 0.003223446663469076, -0.01730659417808056, -0.0030436378438025713, -0.03242551535367966, -0.009192722849547863, 0.010076782666146755, 0.009694688953459263, -0.008196283131837845, -0.0010132973548024893, -0.012144583277404308, -0.010473860427737236, -0.011904838494956493, -0.013508133590221405, -0.011350427754223347, 0.017890971153974533, 0.00924516748636961, -0.00922269094735384, 0.0006260529044084251, -0.012796390801668167, 0.004982201382517815, 0.012451756745576859, -0.0015499141300097108, -0.0027008773759007454, 0.0006958224694244564, -0.0008391075534746051, 0.013995115645229816, 0.0023281488101929426, 0.009792085736989975, -0.00841355137526989, 0.004630075767636299, -0.00031255820067599416, -0.009739641100168228, -0.04177556931972504, -0.0155384736135602, 0.02040829509496689, 0.006701622623950243, 0.009200215339660645, -0.01263156533241272, 0.024753673002123833, -0.006139719858765602, 0.005326834507286549, 0.010990810580551624, 0.011095698922872543, 0.025937413796782494, -0.0046075996942818165, 0.016407549381256104, -0.012339376844465733, 0.0044128065928816795, 0.0022831966634839773, 0.01730659417808056, -0.008585868403315544, 0.007368413265794516, 0.005150771699845791, 0.0020603088196367025, 0.034822963178157806, 0.0009683450916782022, -0.003562461119145155, 0.010518812574446201, -0.00843602791428566, 0.006046069785952568, 0.03308481350541115, -0.006439401302486658, 0.02259596809744835, 0.011784966103732586, -0.007083715870976448, 0.004510203376412392, 0.020752927288413048, -0.02359990030527115, 0.015096443705260754, 0.002646560315042734, -0.006135974079370499, 0.0020265947096049786, -0.018430398777127266, 0.008900533430278301, 0.015838155522942543, 0.033114779740571976, 0.005926197394728661, 0.004641313571482897, -0.006619209889322519, -0.0038733803667128086, 0.01427232101559639, -0.008788153529167175, 0.006334512960165739, -0.010990810580551624, 0.035212550312280655, -0.004506457131356001, -0.005128295626491308, 0.02386961318552494, 0.014811746776103973, 0.011447824537754059, 0.015703298151493073, 0.01778608374297619, -0.002183927223086357, -0.01591307483613491, -0.009342563338577747, -0.007334698922932148, -0.012174551375210285, -0.0025154496543109417, 0.005502897314727306, -0.009290119633078575, -0.002590369898825884, -0.01652742177248001, 0.005454199388623238, 0.004764932207763195, 0.0035137629602104425, -0.010099259205162525, 0.00041697840788401663, 0.0001515965850558132, 0.011380396783351898, 0.01696196012198925, -0.005566579755395651, -0.0049522328190505505, -0.0005197597201913595, -0.012766421772539616, 0.01022662315517664, -0.001925452146679163, -0.0031129391863942146, -0.006660416256636381, 0.027705533429980278, -0.01801084540784359, -0.0014337876345962286, 0.0024068152997642756, -0.008885549381375313, -0.008518439717590809, -0.00612099003046751, -0.031106915324926376, 0.02820000797510147, 0.007645618636161089, 0.009784593246877193, 0.00506086740642786, 0.013021151535212994], "d2f6bd59-18bb-493f-9220-a47f52e372fe": [-0.025865821167826653, -0.004179239738732576, -0.005931372754275799, 0.04585622623562813, 0.0024865600280463696, -0.022046800702810287, -0.009813344106078148, 0.04347807914018631, -0.06060072034597397, -0.00211235205642879, 0.005658585578203201, 0.04219108447432518, 0.02800615131855011, -0.032650526612997055, -0.032286811619997025, 0.0636223629117012, -0.015094224363565445, 0.00876416265964508, 0.047758739441633224, -0.020955651998519897, 0.05598432198166847, -0.005836946424096823, -0.03348987177014351, -1.8975430066348054e-05, -0.033741675317287445, 0.001844810787588358, -0.019486797973513603, 0.03399347886443138, -0.05106016620993614, -0.00592787517234683, 0.0318671390414238, -0.004490496590733528, -2.2814232579548843e-05, 0.013205697759985924, -0.0034518069587647915, -0.025012485682964325, 0.006323067005723715, 0.00826754979789257, -0.026831068098545074, -0.028677627444267273, -0.04566037654876709, 0.02797817252576351, 0.01854952797293663, -0.006760226096957922, -0.03749075159430504, 0.03239872306585312, -0.0009250283474102616, 0.031055770814418793, 0.010233016684651375, -0.015667777508497238, 0.006165689788758755, 0.007805909961462021, -0.041547585278749466, 0.01471651904284954, 0.021934887394309044, -0.06826674193143845, 0.01510821282863617, 0.07856270670890808, 0.009302742779254913, -0.017346467822790146, 0.04090408980846405, -0.0021245924290269613, -0.05704749375581741, -0.028817517682909966, -0.013366571627557278, -0.024970518425107002, 0.005948858801275492, 0.018311714753508568, -0.05802673101425171, -0.006018804386258125, -0.03055216372013092, 0.02029816433787346, -0.02179499715566635, 0.01871739700436592, 0.02148723602294922, -0.052654922008514404, 0.043002452701330185, 0.00012994550343137234, -0.023193905130028725, 0.01990647055208683, 0.011142306961119175, -0.004105797037482262, -0.0013551927404478192, -0.02876156195998192, 0.07962588220834732, 0.0026386913377791643, -0.023963304236531258, -0.0241031963378191, -0.01738843508064747, -0.031167684122920036, 0.004021862521767616, 0.0025932269636541605, -0.011960668489336967, -0.005627110134810209, -0.0033783642575144768, 0.010177060030400753, 0.013982092030346394, 0.02427106536924839, 0.006246127188205719, 0.008127659559249878, 0.007617057301104069, 0.008351484313607216, -0.009638480842113495, -0.019822536036372185, -0.003972900565713644, 0.002198035130277276, -0.025544071570038795, -0.03402145951986313, -9.464491449762136e-05, 0.017906030640006065, 0.011995641514658928, -0.04857010766863823, 0.049185626208782196, 0.0024865600280463696, -0.03488878160715103, -0.0021298383362591267, -0.006452465895563364, -0.007246346678584814, 0.021179476752877235, -0.006309078074991703, 0.025641994550824165, 0.025474125519394875, -0.038665834814310074, -0.0009451376390643418, -0.014436736702919006, -0.025586038827896118, -0.0020459038205444813, -0.0013254659716039896, 4.931699368171394e-05, -0.030608121305704117, -0.005746017210185528, 0.012918921187520027, 0.02890145219862461, 0.04675152525305748, 0.04328223317861557, -0.0006115853902883828, 0.013261653482913971, 0.033182114362716675, 0.0061796787194907665, 0.03970102593302727, -0.05380202457308769, -0.03617577627301216, -0.01973860152065754, 0.011911706998944283, 0.008820119313895702, 0.019892480224370956, -0.06681187450885773, 0.014338813722133636, 0.004025359638035297, 0.04582824558019638, -0.0464157871901989, -0.05254300683736801, 0.0029149758629500866, 0.023501664400100708, -0.01719258725643158, -0.02439696714282036, -0.04023261368274689, 0.009400665760040283, 0.002626450965180993, 0.036623429507017136, 0.01699673943221569, -0.018311714753508568, -0.020018381997942924, 0.02148723602294922, 0.03074801154434681, 0.012730068527162075, 0.038805726915597916, 0.013296626508235931, -0.034301239997148514, 0.022074777632951736, 0.025054452940821648, -0.024858606979250908, -0.0064279851503670216, -0.01175782736390829, -0.009008971974253654, 0.003226232947781682, 0.018703408539295197, 0.008869080804288387, 0.025963744148612022, -0.01373728271573782, -0.046611636877059937, -0.0011680887546390295, -0.005081535782665014, -0.006081755273044109, 0.0045429556630551815, 0.027726368978619576, 0.0003471042145974934, 0.043030429631471634, 0.007148423232138157, 0.005487218964844942, -0.0018745375564321876, 0.026103634387254715, -0.0218229740858078, 0.02754451148211956, -0.036287691444158554, -0.011967663653194904, 0.005133994854986668, 0.017402423545718193, -0.028257954865694046, -0.026005711406469345, -0.004354103002697229, 0.0059733400121331215, -0.015415973030030727, 0.01617138460278511, -0.0009311485337093472, 0.012576188892126083, 0.0016909308033064008, -0.025446148589253426, -0.0021683084778487682, -0.030859924852848053, 0.04073622077703476, -0.015891602262854576, -0.012848976068198681, 0.011953674256801605, -0.022312592715024948, 0.008771156892180443, 0.003850495908409357, 0.028285931795835495, -0.038106270134449005, -0.04795458912849426, -0.018605485558509827, 0.010855531319975853, -0.02252242900431156, -0.015849635004997253, -0.05964946374297142, -0.048654042184352875, -0.02698494680225849, -0.005945361685007811, -0.04073622077703476, 0.00592787517234683, 0.005969842430204153, 0.003693118691444397, -0.028621669858694077, 0.007945801131427288, -0.010177060030400753, 0.0708407312631607, 0.035700149834156036, 0.010995421558618546, -0.024061229079961777, -0.00814864318817854, 0.0382181853055954, 0.042275018990039825, 0.01327564287930727, -0.03379763290286064, 0.01401706412434578, -0.004165250342339277, -0.00828153919428587, 0.012065586633980274, 0.023026036098599434, -0.02152920328080654, -0.008848097175359726, -0.0016297285910695791, -0.006623832508921623, 0.0007090718136169016, -0.024914562702178955, 0.04498890042304993, 0.0029412053991109133, 0.004518474917858839, 0.007211374118924141, 0.011694876477122307, 0.01762624830007553, 0.038861680775880814, -0.01387017872184515, 0.025502104312181473, 0.005147983785718679, -0.016409197822213173, 0.016619034111499786, -0.007116947788745165, 0.027194783091545105, 0.014121982268989086, -0.028621669858694077, -0.007260335609316826, 0.01074361801147461, -0.003878474235534668, 0.022074777632951736, -0.012988866306841373, 0.0021613137796521187, -0.019696634262800217, 0.033349983394145966, -0.034273263067007065, 0.0031667794100940228, 0.004378584213554859, 0.024159152060747147, 0.04202321544289589, 0.039952829480171204, -0.005431262776255608, 0.00030010961927473545, -0.019123081117868423, -0.008638260886073112, -0.012695095501840115, -0.0163392536342144, 0.02611762471497059, -0.0013263402506709099, 0.017150619998574257, 0.006200662348419428, 0.005903394427150488, 0.009841321967542171, -0.06060072034597397, -0.009771376848220825, -0.028243964537978172, 0.004920660983771086, 0.01324066985398531, 0.0033224080689251423, -0.047926608473062515, 0.023054014891386032, -0.04219108447432518, 0.04017665609717369, 0.021179476752877235, -0.010267989709973335, 0.009533562697470188, 0.05981733277440071, -0.025949755683541298, 0.0010194546775892377, 0.020969640463590622, 0.02836986631155014, -0.0030408776365220547, -0.006770717911422253, -0.016954772174358368, -0.002115849405527115, -0.024746693670749664, 0.020885705947875977, -0.022690298035740852, -0.04524070397019386, 0.00044808792881667614, 0.020773792639374733, -0.0025127895642071962, 0.01702471822500229, -0.010177060030400753, -0.016772914677858353, -0.029936645179986954, 0.00044349775998853147, -0.00319475750438869, -0.010568754747509956, -0.016381220892071724, -0.05472530424594879, -0.007414215710014105, -0.01752832531929016, -0.049577321857213974, -0.0134085388854146, -0.01619936153292656, -0.001554537215270102, -0.0036651405971497297, 0.012177499942481518, -0.0020144283771514893, 0.005532683804631233, 0.00105180440004915, 0.029908666387200356, 0.009981213137507439, -0.012373346835374832, 0.00017027341527864337, 0.0008450282621197402, -0.012261434458196163, 0.06893821805715561, 0.014059031382203102, 0.034441132098436356, -0.02856571413576603, -0.004724814090877771, 0.0040918076410889626, -0.0014268867671489716, -0.034804847091436386, 0.03343391790986061, -0.01454865001142025, -0.005263393744826317, 0.0018395648803561926, -0.02767041325569153, 0.047926608473062515, -0.010302961803972721, -0.018325703218579292, -0.010177060030400753, -0.014884388074278831, -0.031559377908706665, 0.013618375174701214, 0.022508440539240837, 0.0027418609242886305, -0.017500346526503563, -0.026173580437898636, 0.025586038827896118, -0.009806349873542786, -0.03514058515429497, 0.013597391545772552, -0.005976837128400803, 0.01219848357141018, 0.013205697759985924, 0.004126780666410923, 0.03676331788301468, 0.014884388074278831, 0.014247884042561054, -0.01185575034469366, 0.040988024324178696, 0.0327344611287117, -0.021808985620737076, 0.0029499486554414034, -0.015318049117922783, -0.011792799457907677, -0.06295088678598404, -0.012247445061802864, -0.00894602108746767, -0.04873797670006752, 0.011492034420371056, -0.01729051023721695, 0.009778371080756187, -0.012114549055695534, 0.0012939905282109976, -0.03528047725558281, 0.05215131491422653, -0.01636723056435585, -0.012121543288230896, -0.025110410526394844, 0.02126341126859188, -0.0213333573192358, 0.008106675930321217, 0.016409197822213173, 0.02436898835003376, -0.009036949835717678, 0.0050080930814146996, 0.022144723683595657, -0.009547551162540913, 0.027124838903546333, -0.001923499396070838, -0.04378584027290344, 0.04171545431017876, 0.045352619141340256, -0.010785585269331932, 0.02601969987154007, -0.007120444905012846, 0.03307019919157028, 0.024285053834319115, 0.04619196429848671, -0.016017504036426544, 0.0016716958489269018, -0.018871277570724487, -0.006127219647169113, 0.027362652122974396, -0.011834766715765, 0.008351484313607216, -0.005277382675558329, 0.04305840656161308, -0.0010587989818304777, 0.027236750349402428, -0.0021175979636609554, -0.007442194037139416, 0.023235872387886047, 0.0056026289239525795, 0.012415314093232155, -0.012841980904340744, -0.0016559581272304058, 0.0033311510924249887, -0.019654667004942894, -0.010568754747509956, -0.006476947106420994, 0.007847877219319344, 0.0037770532071590424, -0.008141648024320602, -0.005186453927308321, 0.04079217463731766, 0.036455560475587845, -0.007309297565370798, -0.016842860728502274, 0.001436504302546382, -0.04386977478861809, -0.015234114602208138, -0.008162631653249264, 0.020983628928661346, -0.012030614539980888, 0.048290327191352844, -0.003686124226078391, 0.024452922865748405, 0.020228218287229538, 0.008715201169252396, 0.02271827682852745, -0.02383740246295929, 0.021767018362879753, 0.006158695090562105, 0.03942124545574188, 0.0655248835682869, -0.0011453564511612058, -0.0002347543486393988, -0.01821378991007805, 0.017668215557932854, 0.00029464514227584004, 0.007092466577887535, -0.010274983942508698, 0.017570292577147484, -0.0071449256502091885, -0.028481779620051384, -0.0018360675312578678, 0.0033468888141214848, -0.05590038746595383, 0.008533342741429806, -0.021711062639951706, 0.026607241481542587, 0.024592813104391098, 0.012121543288230896, 0.024872595444321632, 0.004385578446090221, -0.02020024135708809, 0.00656437873840332, -0.05349426716566086, -0.02863566018640995, -0.053941916674375534, 0.009610502049326897, -0.021305378526449203, 0.011715860106050968, 0.004854212980717421, -0.030048556625843048, 0.04910169169306755, -0.039197418838739395, 0.025054452940821648, -0.02357161045074463, -0.014073020778596401, -0.019458819180727005, -0.022732265293598175, -0.04834628105163574, 0.00040131190326064825, 0.01782209612429142, 0.014394769445061684, -0.012904931791126728, 0.0062706079334020615, 0.0364275798201561, -0.01649313233792782, -0.009421649388968945, -0.013709304854273796, -0.013618375174701214, 0.014094004407525063, 0.017766140401363373, -0.01405203714966774, -0.006393012590706348, -0.03978496044874191, -0.007582084741443396, -0.008869080804288387, -0.0093377148732543, 0.007680008187890053, -0.016255319118499756, -0.011645914055407047, 0.0022277620155364275, 0.0005661208415403962, -0.02371150068938732, 0.006872138474136591, 0.010848536156117916, 0.029600907117128372, -0.01619936153292656, -0.009960229508578777, -0.0309158805757761, -0.005357820075005293, -0.017640238627791405, 0.014296846464276314, -0.01966865547001362, 0.022102756425738335, 0.0038644850719720125, 0.016702968627214432, -0.024382976815104485, 0.015891602262854576, -0.018101878464221954, 0.013261653482913971, 0.0069420840591192245, -0.0036126815248280764, 0.032118942588567734, -0.03055216372013092, -0.0030601127073168755, -0.016814881935715675, -0.0036651405971497297, 0.03189511597156525, -0.0014907120494171977, 0.011359138414263725, -0.0023379260674118996, -0.002021423075348139, -0.011575968936085701, 0.010904492810368538, 0.0023571611382067204, 0.022900134325027466, 0.03474888950586319, -0.04205119237303734, 0.04129578173160553, -0.010274983942508698, 0.0004848092794418335, 0.010708645917475224, -0.009309737011790276, -0.02308199182152748, -0.046499721705913544, -0.017276521772146225, 0.01190471276640892, -0.01835368201136589, 0.014478703960776329, -0.009736403822898865, 0.03597993031144142, 0.023851392790675163, -0.03293031081557274, -0.016772914677858353, -0.0016472148708999157, -0.019360896199941635, 0.006372028961777687, 0.046303875744342804, -0.007463177666068077, 0.0011829520808532834, -0.03670736402273178, 0.0159055907279253, -0.004361097700893879, 0.03796638175845146, 0.009169845841825008, -0.021543193608522415, 0.033014245331287384, 0.02271827682852745, 0.041183870285749435, -0.003591697895899415, -0.0345810204744339, 0.028383856639266014, -0.0001001640412141569, 0.03388156741857529, -0.019123081117868423, 0.016241328790783882, 0.03567216917872429, 0.021277399733662605, -0.010540776886045933, -0.02698494680225849, 0.022634342312812805, 0.03690320998430252, 0.008834107778966427, 0.00872918963432312, 0.020214229822158813, -0.00010912580182775855, 0.018801331520080566, -0.023095982149243355, 0.02436898835003376, 0.013261653482913971, 0.011289192363619804, 0.03849796578288078, 0.011394110508263111, 0.015765700489282608, -0.024327021092176437, -0.006441974081099033, 0.0011645914055407047, 0.033741675317287445, -0.01042886357754469, -0.021808985620737076, -0.008883070200681686, -0.002213772851973772, -0.01436679158359766, 0.01617138460278511, -0.021221444010734558, -0.011303181760013103, -0.03805031627416611, -0.0028013144619762897, 0.009204818867146969, 0.023026036098599434, -0.005092027597129345, 0.01076460164040327, -0.0049136667512357235, 0.006448968779295683, 0.016507122665643692, 0.038106270134449005, 0.0019322425359860063, 0.030300360172986984, 0.01137312687933445, 0.012820997275412083, 0.008323506452143192, -0.019514774903655052, 0.001448744791559875, -0.0025442650076001883, 0.0163392536342144, 0.03653949499130249, 0.011282198131084442, 0.0076100630685687065, 0.012660123407840729, 0.013156735338270664, 0.006588859483599663, 0.016758926212787628, 0.04817841202020645, -0.00800175778567791, 0.03497271612286568, 0.02579587511718273, 0.017374444752931595, -0.011806788854300976, 0.04840223863720894, 0.0015335535863414407, 0.015304060652852058, -0.011499028652906418, -0.005270388443022966, 0.01944483071565628, -0.014107993803918362, -0.015318049117922783, 0.036287691444158554, -0.025963744148612022, -0.059201814234256744, -0.002343171974644065, -0.022760244086384773, -0.004773775581270456, -0.007379243150353432, 0.005546672735363245, -0.005913886241614819, -0.008400446735322475, -0.023683523759245872, 0.013016845099627972, -0.02698494680225849, 0.008687222376465797, 0.021767018362879753, 0.015891602262854576, 0.010876514948904514, -0.012904931791126728, 0.020717836916446686, -0.03251063823699951, -0.02043805457651615, -0.01646515540778637, 0.008519353345036507, -0.004756289534270763, -0.012380341067910194, 0.024424944072961807, -0.020941661670804024, -0.03108374960720539, 0.0008577058324590325, -0.006490936037153006, 0.015443950891494751, 0.008820119313895702, -0.021934887394309044, 0.021515214815735817, -0.00017486358410678804, 0.01327564287930727, -0.0028869977686554193, 0.03270648419857025, 0.01309378445148468, 0.028243964537978172, 0.007169406861066818, 0.05497710779309273, -0.00233967462554574, -0.043338190764188766, -0.03877774626016617, 0.01044984720647335, 0.007106455974280834, 0.02017226256430149, -0.03404943645000458, 0.003049620892852545, 0.002920221770182252, -0.02764243446290493, 0.01607345975935459, 0.0064559634774923325, -0.005718038883060217, 0.0029621890280395746, -0.0008598916465416551, 0.0020354120060801506, 0.045016881078481674, -0.05198344588279724, -0.01142208930104971, -0.004969622939825058, 0.013520452193915844, 0.0036406596191227436, -0.014884388074278831, -0.021976854652166367, 0.042247042059898376, -0.02688702382147312, 0.0008201102027669549, -0.00764503562822938, 0.037742555141448975, -0.021739039570093155, 0.02235455997288227, 0.008512359112501144, 0.007973778992891312, -0.02393532730638981, 0.02371150068938732, -0.0038295122794806957, -0.027726368978619576, 0.03161533549427986, 0.01990647055208683, 0.035895995795726776, 0.0125132380053401, -0.013079795986413956, 0.02417314052581787, -0.0029936644714325666, -0.01600351557135582, -0.011939684860408306, 0.009029955603182316, 0.014632584527134895, 0.009617497213184834, 0.025837842375040054, 0.018731387332081795, 0.0069700623862445354, -0.019332917407155037, 0.0015772695187479258, 0.008547332137823105, 0.012674111872911453, -0.005518694408237934, -0.008554326370358467, -0.02390734851360321, -0.00701902387663722, 0.0037001133896410465, 0.007344270125031471, 0.008022741414606571, -0.017220566049218178, 0.011282198131084442, 0.00798776838928461, -0.016674991697072983, 0.003457052865996957, 0.019990405067801476, 0.0013289632042869925, 0.0027978173457086086, 0.018423626199364662, 0.004661863204091787, 0.004980114754289389, -0.011694876477122307, -0.009638480842113495, -0.010638699866831303, -0.008820119313895702, -0.017808107659220695, 0.0015965044731274247, 0.009925256483256817, 0.04926956072449684, 0.013709304854273796, -0.024592813104391098, -0.007218368351459503, 0.021319366991519928, -0.0068161822855472565, 0.0018430621130391955, -0.021543193608522415, -0.01772417314350605, 0.006291591562330723, 0.012639139778912067, -0.022508440539240837, 0.015220126137137413, 0.019221004098653793, -0.005707547068595886, 0.03385359048843384, 0.00424219062551856, -0.01854952797293663, 0.009659464471042156, 0.003986889496445656, 0.020885705947875977, -0.009680448099970818, -0.011114329099655151, 0.016842860728502274, 0.0019462315831333399, 0.026831068098545074, 0.0048507158644497395, 0.0241031963378191, -0.00826754979789257, -0.01758428104221821, -0.0031510416883975267, -0.012072581797838211, 0.0019969420973211527, 0.0028170521836727858, 0.012429303489625454, -0.0363156683743, 0.011967663653194904, -0.010582744143903255, -0.0290973000228405, -0.04238693043589592, 0.015443950891494751, 0.01481444202363491, -0.003962408751249313, 0.030412273481488228, 0.010163071565330029, 0.04014867916703224, 0.030831946060061455, -0.005808968096971512, -0.0030741016380488873, 0.007714981213212013, 0.010274983942508698, 9.338808013126254e-05, 0.025474125519394875, -0.010072141885757446, 0.03295828774571419, -0.00484372116625309, -0.008078697137534618, -0.010400885716080666, -0.00858230423182249, -0.02744658663868904, -0.014352802187204361, -0.007554106414318085, 0.01854952797293663, -0.007442194037139416, -0.002365904161706567, -0.013065806590020657, -0.0016139908693730831, -0.029992600902915, 0.0354483462870121, 0.006039788015186787, 0.030775990337133408, -0.01782209612429142, -0.001126995775848627, 0.013163730502128601, -0.013793239369988441, -0.03438517451286316, -0.02129139006137848, 0.016521111130714417, 0.03074801154434681, -0.007749953772872686, 0.013807227835059166, -0.05075240507721901, -0.008687222376465797, 0.007267330307513475, -0.004116288851946592, -0.003100331174209714, -0.01692679524421692, 0.008666238747537136, 0.009897278621792793, -0.03835807368159294, -0.021976854652166367, -0.00024874345399439335, -0.006924597546458244, 0.02039608731865883, -0.002406122861430049, 0.001573772169649601, -0.016940783709287643, 0.005301863886415958, -0.030440252274274826, -0.01112831849604845, -0.008239571936428547, 0.027152815833687782, -0.013205697759985924, -0.008015746250748634, 0.045408573001623154, 0.00047562894178554416, 0.026495330035686493, 0.01629728637635708, 0.04221906140446663, -0.01600351557135582, 0.003647654317319393, 0.042135126888751984, 0.015667777508497238, 0.02235455997288227, -0.008120664395391941, 0.016017504036426544, 0.012093565426766872, 0.003411588491871953, -0.016814881935715675, 0.011198263615369797, 0.031055770814418793, -0.025907788425683975, -0.00749815022572875, -0.009036949835717678, -0.0037071078550070524, 0.0060677663423120975, 0.004378584213554859, -0.006522411480545998, -0.0011899466626346111, 0.0408761091530323, -0.02080177143216133, 0.020144283771514893, -0.023655544966459274, 0.011485040187835693, 0.0018867780454456806, -0.023291828110814095, 0.02327783964574337, -0.018311714753508568, -0.026537297293543816, 0.043729882687330246, -0.010715640150010586, -0.006361537147313356, -0.017947997897863388, 0.00940766092389822, 0.01762624830007553, -0.010393891483545303, -0.0027173799462616444, 0.01835368201136589, 0.03838605433702469, 0.00809968076646328, 0.012121543288230896, 0.036483537405729294, 0.039952829480171204, 0.0005648093647323549, 0.01454865001142025, -0.0007833888521417975, 0.0064874389208853245, 0.012170504778623581, -0.007575090043246746, -0.04249884560704231, 0.008043725043535233, -0.01835368201136589, -0.0069700623862445354, -0.024019261822104454, 0.04188332334160805, -0.029321124777197838, -0.027992160990834236, -0.019360896199941635, -0.027488553896546364, 0.01712264120578766, 0.00042142122401855886, -0.04090408980846405, 0.005578148178756237, -0.01738843508064747, 0.001455739256925881, -0.006802193354815245, -0.03715501353144646, 0.039952829480171204, 0.0013001107145100832, -0.009400665760040283, -0.005214431788772345, 0.012897937558591366, -0.03312615677714348, -0.006697275210171938, -0.01152001228183508, -0.009547551162540913, 0.016605045646429062, 0.013842200860381126, -0.004413556773215532, 0.018045920878648758, -0.0010413125855848193, 0.018857289105653763, 0.006375526078045368, -0.010610722005367279, -0.00965246930718422, -0.0327344611287117, -0.04703130945563316, -0.010107114911079407, -0.022536417469382286, -0.03933731094002724, 0.015262093394994736, 0.005071043968200684, 0.02720877341926098, -0.014800453558564186, -0.009561540558934212, 0.01359039731323719, -0.003131806617602706, -0.036287691444158554, -0.013233675621449947, -0.003465796122327447, -0.027698390185832977, -0.012862964533269405, 0.020312152802944183, 0.015513896942138672, -0.04017665609717369, -0.0372949056327343, 0.029964622110128403, 0.016129417344927788, -0.027432598173618317, 0.008813124150037766, -0.06300684809684753, 0.005525689106434584, -0.004885688424110413, -0.02694297954440117, -0.005840443540364504, 0.0020826251711696386, 0.022172702476382256, -0.009862305596470833, -0.03167129307985306, 0.009799354709684849, 0.01973860152065754, 0.0057565090246498585, -0.02390734851360321, -0.017682205885648727, -0.04048441722989082, -0.01545794028788805, 0.010736623778939247, -0.0012039357097819448, 0.004920660983771086, -0.02463478036224842, 0.00035235012182965875, 0.01646515540778637, -0.02708287164568901, 0.007470171898603439, -0.0052109346725046635, -0.011191269382834435, 0.0011025149142369628, 0.007428204640746117, -0.020773792639374733, 0.01122624147683382, -0.029349103569984436, -0.005235415417701006, 0.0066937776282429695, -0.0018185812514275312, -0.011953674256801605, -0.002587981056421995, 0.009715420193970203, 0.005868421867489815, -0.012471270747482777, 0.018703408539295197, -0.021864941343665123, -0.0004384704225230962, -0.009099900722503662, -0.02099761925637722, 0.015164169482886791, -0.017416412010788918, -0.00968744233250618, -0.01755630411207676, -0.010708645917475224, 0.015597831457853317, 0.0010780339362099767, 0.0016778160352259874, -0.006956072989851236, -0.006263613235205412, 0.0037700587417930365, 0.0004220769624225795, 0.0002920221886597574, 0.0014024059055373073, 0.018171822652220726, -0.012079576030373573, -0.001510821282863617, -0.013786244206130505, -0.003528747009113431, -0.014275862835347652, 0.0177521500736475, 0.027824291959404945, -0.0027191287372261286, -0.006791701540350914, 0.015248103998601437, 0.018297724425792694, 0.005861427169293165, 0.008442413993179798, 0.010254000313580036, -0.011142306961119175, 0.023529643192887306, 0.010065147653222084, 0.015387995168566704, -0.025739919394254684, -0.023026036098599434, 0.01915105991065502, -0.004445032216608524, 0.011100339703261852, 0.012450287118554115, -0.001119126915000379, -0.020885705947875977, -0.0053683118894696236, 0.02029816433787346, 0.006298586260527372, 0.0030566153582185507, -0.009701431728899479, 0.0318111814558506, 0.026033690199255943, 0.005976837128400803, -0.0004607655282597989, -0.01610143855214119, -0.0033154133707284927, 0.0017565046437084675, -0.0033381457906216383, -0.03687523305416107, -0.01808788813650608, -0.002650931943207979, -0.010093125514686108, 0.02364155650138855, 0.0006247001583687961, 0.029516972601413727, -0.008218588307499886, 0.007372248452156782, 0.010484820231795311, -0.004469512961804867, -0.0061796787194907665, -0.022410515695810318, -0.013247665017843246, -0.02099761925637722, -0.016423188149929047, 0.0034535557497292757, -0.019850512966513634, 0.020689858123660088, -0.014954333193600178, 0.008589299395680428, -0.0024428442120552063, -0.018885266035795212, 0.019458819180727005, 0.010477825999259949, -0.00905793346464634, -0.049577321857213974, 0.02473270520567894, -0.012401324696838856, 0.035560257732868195, -0.02403325028717518, 0.03967304900288582, 0.010295967571437359, -0.006753231398761272, 0.02029816433787346, -0.006700772326439619, 0.010694656521081924, 0.01362537033855915, -0.010477825999259949, -0.011659903451800346, -0.02797817252576351, -0.0017696194117888808, -0.0012922418536618352, -0.007652030326426029, 0.018871277570724487, 0.026075657457113266, 0.002175302943214774, 0.010687662288546562, 0.028229976072907448, 0.01482843142002821, 0.004025359638035297, -0.0016655755462124944, 0.03693118691444397, -0.008799135684967041, 0.049941036850214005, -0.03693118691444397, 0.010309956967830658, -0.015961548313498497, 0.01847958378493786, 0.024452922865748405, -0.012562199495732784, -0.01282799243927002, 0.012205477803945541, -0.02242450602352619, 0.01076460164040327, -0.01268110703676939, -0.003958911634981632, -0.012142526917159557, 0.025586038827896118, -0.044261470437049866, -0.027460576966404915, 0.014107993803918362, -0.019794557243585587, 0.0003116943407803774, -0.0053962902165949345, -0.020577946677803993, -0.01871739700436592, 0.002002188004553318, 0.004777273163199425, -1.7527341697132215e-05, 0.016744935885071754, 0.003941425122320652, -0.023529643192887306, 0.022872155532240868, -0.01331061590462923, 0.009666458703577518, -0.01261116098612547, -0.00640700152143836, 0.007735964842140675, -0.01453466061502695, 0.026565274223685265, -0.03611982241272926, -0.014632584527134895, 0.00785487238317728, 0.029684841632843018, 0.026928991079330444, -0.01152001228183508, 0.0036721350625157356, -0.0025652486365288496, 0.0258937980979681, -0.007141428533941507, -0.0011374875903129578, 0.0004900551866739988, 0.01993444748222828, -0.0036826268769800663, 0.014520671218633652, -0.013177718967199326, -0.005389295518398285, -0.014562638476490974, -0.02148723602294922, 0.007624051999300718, 4.4180374970892444e-05, 0.008120664395391941, 0.02027018554508686, -0.029992600902915, -0.027124838903546333, -0.011478045023977757, 0.014059031382203102, 0.004805251024663448, -0.01736045628786087, 0.004221206996589899, 0.013170724734663963, -0.0011943182907998562, 0.0008970501367002726, 0.02429904229938984, 0.008288533426821232, -0.005189951043576002, 0.02208876796066761, 0.021109530702233315, -0.008442413993179798, -0.002304702065885067, -0.00655388692393899, 0.018003953620791435, -0.007652030326426029, -0.0005451372126117349, -0.020480021834373474, 0.033713698387145996, 0.006462957710027695, 0.0015676519833505154, -0.05203939974308014, 0.030999815091490746, 0.00013540998043026775, 0.006246127188205719, -0.04566037654876709, -0.0017320237820968032, 0.016674991697072983, -0.0039973813109099865, -0.006984051316976547, 0.013597391545772552, -0.0191090926527977, -0.0025809863582253456, -0.015094224363565445, 0.028607681393623352, -0.005092027597129345, 0.01013509277254343, -0.0023641556035727262, -0.027880249544978142, -0.00563060725107789, 0.017150619998574257, 0.024257075041532516, 0.02473270520567894, 0.013996080495417118, -0.016647012904286385, 0.006316072307527065, 0.008386457338929176, -0.011876733973622322, -0.00781989935785532, -0.004410059656947851, -0.006644816137850285, -0.004892683122307062, 0.010582744143903255, 0.013450506143271923, 0.004749294836074114, -0.0277403574436903, -0.009743398986756802, -0.009526567533612251, 0.0072393519803881645, 0.02189292013645172, 0.01901116780936718, -0.011086351238191128, 0.0029149758629500866, -0.02490057423710823, -0.027824291959404945, -0.0021298383362591267, 0.02066188119351864, 0.004053337965160608, 0.03617577627301216, 0.016115427017211914, -0.02946101501584053, 0.010722634382545948, -0.0017879800871014595, 0.0031422984320670366, 0.004490496590733528, -0.0213333573192358, -0.02662123180925846, -0.0014242638135328889, -0.024648770689964294, -0.016940783709287643, 0.002058144425973296, -0.0027383635751903057, 0.017402423545718193, 0.015360016375780106, -0.01127520389854908, 0.0027103854808956385, 0.037770532071590424, 0.007386237382888794, 0.016479143872857094, 0.004361097700893879, 0.029740797355771065, 0.0032751949038356543, 0.005518694408237934, 0.011387116275727749, -0.0032157411333173513, -0.008701211772859097, -0.010114109143614769, 0.0070330132730305195, 0.023235872387886047, -0.016129417344927788, -0.003376615699380636, -0.004612901248037815, -0.011121323332190514, -0.00020874339679721743, -0.0007908205152489245, -0.022144723683595657, -0.01864745281636715, -0.004284157883375883, -0.016758926212787628, 0.010030174627900124, -0.00968744233250618, -0.006312575191259384, 0.004175742156803608, -0.014324824325740337, -0.00037508236709982157, 0.011170285753905773, -0.00749815022572875, 0.0076730139553546906, 0.01063170563429594, -0.017416412010788918, 0.0016970509896054864, -0.008575309999287128, -0.026495330035686493, -0.016283296048641205, 0.025054452940821648, 0.016479143872857094, 0.022172702476382256, 0.018857289105653763, -0.021305378526449203, 0.02443893440067768, 0.0031265607103705406, -0.014758486300706863, 0.021039586514234543, -0.008211594074964523, -0.006924597546458244, -0.0011549739865586162, -0.0036721350625157356, 0.002484811469912529, 0.0002472133783157915, 0.026761122047901154, 0.0045114802196621895, -0.0016297285910695791, 0.013877173885703087, 0.025963744148612022, 0.006141209043562412, 0.005029076710343361, 0.014275862835347652, 0.01074361801147461, 0.002449838677421212, -0.030328338965773582, 0.017682205885648727, 0.008771156892180443, -0.008211594074964523, 0.028090085834264755, -0.005312355700880289, 0.011960668489336967, 0.0009014217648655176, -0.021976854652166367, -0.015793679282069206, -0.011610941961407661, 0.028985386714339256, -0.012667117640376091, 0.006532903295010328, 0.01961269974708557, 0.008211594074964523, -0.012709084898233414, 0.018857289105653763, -0.00018852479115594178, 0.006805690471082926, 0.0008642632164992392, 0.003560222452506423, 0.00390994967892766, -0.0250264760106802, -0.006403504405170679, -0.001986450282856822, -0.0017556303646415472, -0.0041827368550002575, 0.014177938923239708, 0.018899256363511086, 0.021767018362879753, -0.0745898112654686, -0.004780770279467106, 0.0011313674040138721, 0.001502952422015369, 0.00422470411285758, -0.007204379420727491, -0.0071274396032094955, -0.016325263306498528, 0.00041967257857322693, 0.0054907165467739105, -0.015346027910709381, 0.008533342741429806, -0.00515847560018301, 0.010121104307472706, -0.03779851272702217, 0.016856849193572998, -0.03970102593302727, 0.019137069582939148, -0.019864503294229507, -0.0031370525248348713, 0.0026404401287436485, 0.028579702600836754, -0.024285053834319115, 0.014800453558564186, 0.009351704269647598, -0.005546672735363245, 0.00438907602801919, -0.04770278558135033, -0.01646515540778637, 0.015513896942138672, -0.007652030326426029, -0.007812905125319958, -0.0027575986459851265, -0.00044415349839255214, 0.006441974081099033, -0.008127659559249878, 0.011890723370015621, -0.0036021897103637457, -0.03223085403442383, 0.020787782967090607, 0.01186973974108696, -0.011310175992548466, -0.025320246815681458, 0.0053648147732019424, -0.026201559230685234, -0.0290693212300539, 0.009960229508578777, 0.004333119373768568, 0.007414215710014105, -0.010065147653222084, 0.001578143797814846, -0.009981213137507439, 0.0326785072684288, -0.0067252530716359615, 0.010484820231795311, -0.018297724425792694, -0.004910169169306755, -0.030132491141557693, -0.018969200551509857, -0.011002416722476482, 0.010079137049615383, -0.030831946060061455, -0.002264483366161585, -0.02080177143216133, 0.026131613180041313, -0.017570292577147484, 0.022564396262168884, 0.011086351238191128, -0.019039146602153778, -0.01805991120636463, 0.028160030022263527, 0.006588859483599663, 0.007337275892496109, 0.02926516905426979, -0.029964622110128403, 0.012883948162198067, -0.0068791331723332405, 0.03058014251291752, -0.0005049185710959136, 0.015066245570778847, -0.012443291954696178, 0.008645255118608475, -0.0003446998307481408, 0.008987988345324993, 0.02473270520567894, -0.038637857884168625, 0.001020328956656158, 0.0032402221113443375, 0.012310395948588848, 0.024606803432106972, -0.003229730296880007, 0.004773775581270456, 0.00965246930718422, 0.008050719276070595, 0.02439696714282036, -0.0006990171386860311, 0.00891104806214571, -0.00437158951535821, 0.016870837658643723, 0.00516547029837966, -0.0004896180471405387, -0.0005543175502680242, 0.02029816433787346, 0.006284596864134073, -0.000584918656386435, -0.006826674100011587, -0.011289192363619804, 0.01281400304287672, -0.01990647055208683, 0.008512359112501144, -0.006155197974294424, 0.006057274527847767, -8.811484804027714e-06, -0.03418932855129242, -0.017738161608576775, -0.00700853206217289, -0.0032244843896478415, -0.0035549765452742577, -0.01018405519425869, -0.011233236640691757, -0.022312592715024948, -0.0002515849773772061, 0.02354363165795803, -0.0109114870429039, -0.0020511497277766466, 0.019332917407155037, 0.008799135684967041, 0.0009556294535286725, 0.005836946424096823, 0.025711940601468086, -0.011464056558907032, -0.006029296200722456, -0.011135312728583813, -0.0290693212300539, 0.008036729879677296, 0.011198263615369797, -0.02255040779709816, 0.00043082013144157827, -0.004794759210199118, -0.010624711401760578, 3.926233694073744e-05, 0.004735305905342102, -0.0022242646664381027, 0.008400446735322475, 0.003172025317326188, 0.0020319148898124695, 0.007309297565370798, 0.015723733231425285, 0.015220126137137413, 0.0026684182230383158, -0.013471489772200584, 0.008421430364251137, 0.008785146288573742, 0.0016000017058104277, 0.00858230423182249, -0.025250300765037537, -0.0054592411033809185, -0.005822957027703524, -0.008204598911106586, -0.005347328260540962, 0.001460110885091126, 0.01155498530715704, -0.0017398926429450512, 0.04725513234734535, -0.0017355210147798061, 0.018955212086439133, 0.010589738376438618, -0.0025600027292966843, -0.017696194350719452, 0.0009600010234862566, 0.003276943461969495, 0.03746277466416359, -0.0038679824210703373, 0.016605045646429062, 0.0030566153582185507, -0.00034797852276824415, 0.03214691951870918, -0.00813465379178524, 0.007617057301104069, 0.010247006081044674, 0.010414875112473965, -0.009666458703577518, 0.008603287860751152, 0.008477386087179184, -0.0015160671900957823, -0.018395649269223213, -0.00018819692195393145, 0.004581425804644823, 0.0013639358803629875, -0.0062426296062767506, 0.017038706690073013, 0.015136191621422768, 0.02473270520567894, 0.00038535561179742217, -0.02024220861494541, -0.0027226258534938097, 0.006690280511975288, -0.012897937558591366, 0.03035631775856018, 0.023235872387886047, 0.011156296357512474, -0.011492034420371056, 0.02436898835003376, -0.016772914677858353, -0.01124023087322712, 0.017808107659220695, -0.0013245915761217475, -0.019332917407155037, 0.0058194599114358425, 0.013646353967487812, -0.009008971974253654, 0.014282857067883015, 0.008127659559249878, -0.02201882191002369, 0.002787325531244278, 0.00891104806214571, 0.021864941343665123, 0.0010255748638883233, -0.0249984972178936, -0.004710824694484472, -0.01712264120578766, 0.014912365935742855, -0.0019217507215216756, 0.016129417344927788, -0.02165510505437851, -0.0044800047762691975, -0.025977732613682747, -0.013996080495417118, -0.0012485259212553501, -0.0038050315342843533, -0.008295528590679169, -0.0009014217648655176, -0.009183835238218307, -0.017542313784360886, 0.010421869345009327, 0.011680887080729008, -0.03189511597156525, 0.009120884351432323, 0.010806568898260593, -0.017864063382148743, -0.010757607407867908, 0.01109334547072649, 0.008435418829321861, -0.006057274527847767, 0.008687222376465797, -0.009526567533612251, -0.0023221883457154036, -0.009036949835717678, -0.010372907854616642, 0.019654667004942894, -0.012506242841482162, -0.004256179556250572, -0.010869519785046577, 0.009148862212896347, -0.0009731157915666699, 0.019332917407155037, 0.0181858129799366, 0.02470472641289234, 0.006532903295010328, -0.01436679158359766, 0.001829073065891862, 0.0069700623862445354, 0.004514977801591158, -0.0009678698843345046, 0.004217709414660931, -0.004969622939825058, 0.01755630411207676, 0.0021298383362591267, 0.02691500261425972, 0.007959790527820587, -0.025865821167826653, -0.016744935885071754, -0.015220126137137413, -0.007386237382888794, -0.017934009432792664, -0.015681765973567963, 0.016758926212787628, 0.0007125691045075655, -0.009050939232110977, 0.006648313254117966, 0.003520003752782941, -0.006742739584296942, -0.0017888543661683798, -0.028313910588622093, 0.011212253011763096, -0.013247665017843246, -0.004161753226071596, 0.01328963227570057, 0.01937488466501236, -0.026565274223685265, -0.004752791952341795, 0.008505364879965782, -0.007994762621819973, 0.004322627559304237, 0.010086131282150745, 0.008498369716107845, -0.00036612062831409276, 0.017220566049218178, 0.005518694408237934, 0.0074561829678714275, -0.0005232792464084923, 0.003355632070451975, -0.007116947788745165, 0.020452044904232025, 0.004973120056092739, 0.0053683118894696236, 0.01077859103679657, -0.0038714795373380184, 0.010526787489652634, -0.010386896319687366, -0.013184714131057262, 0.006952575873583555, -0.011303181760013103, 0.008491375483572483, -0.034525066614151, 0.01927696168422699, -0.003906452562659979, -0.00607476057484746, 0.010358918458223343, -0.014450726099312305, 0.02264833077788353, -0.0010824055643752217, 0.013597391545772552, 0.0016000017058104277, 0.0016550837317481637, -0.007281319238245487, -0.005658585578203201, 0.0024708223063498735, 0.012114549055695534, -0.009862305596470833, 0.020494012162089348, 0.011009410955011845, -0.0093377148732543, 0.0005272136768326163, -0.006791701540350914, -0.012911926954984665, -0.02344570867717266, -0.02046603336930275, 0.018311714753508568, -0.0005792356096208096, 0.019416851922869682, -0.0005971591453999281, 0.0024795655626803637, 0.009848317131400108, 0.018073899671435356, 0.005791481584310532, -0.006434979848563671, -0.024452922865748405, 0.0009949738159775734, 0.022004833444952965, 0.014660562388598919, -0.01587761379778385, -0.006893122103065252, -0.004130277782678604, 0.012107553891837597, -0.0003807654429692775, -0.0010308207711204886, -0.03161533549427986, -0.02085772715508938, 0.0030513694509863853, 0.027992160990834236, 0.021011607721447945, -0.00891104806214571, -0.016954772174358368, 0.020983628928661346, 0.009253780357539654, 0.0001242624275619164, -0.0036686379462480545, -0.016772914677858353, -0.012688101269304752, -0.0090929064899683, -0.0003512572147883475, -0.004161753226071596, -0.02327783964574337, -0.0124992486089468, 0.0025285272859036922, -0.0025267787277698517, -0.015625810250639915, 0.02257838472723961, 0.010065147653222084, 0.0022085269447416067, 0.010030174627900124, 0.009036949835717678, -0.0006653559394180775, -0.0018745375564321876, 0.011729848571121693, 0.006253121420741081, -0.008610283024609089, 0.0056935581378638744, -0.010309956967830658, 0.024956529960036278, 0.01264613401144743, 0.010624711401760578, 0.027068881317973137, -0.02429904229938984, -0.021221444010734558, 0.008239571936428547, 0.0035777087323367596, 0.0035427361726760864, 0.02361357770860195, 0.011338154785335064, 0.027054892852902412, 0.011967663653194904, -0.017374444752931595, -0.0020004394464194775, 0.0015047010965645313, -0.01920701563358307, 0.0037350859493017197, -0.015513896942138672, -0.008344490081071854, -0.031363531947135925, 0.0008642632164992392, -2.3565598894492723e-05, -0.002942953957244754, 0.0017337723402306437, 0.0034955230075865984, 0.004053337965160608, 0.008841102942824364, -0.0016909308033064008, -0.002276723738759756, 0.011415094137191772, 0.013170724734663963, -0.031531400978565216, -0.0159055907279253, 0.007554106414318085, -0.0009215310565195978, -0.013541435822844505, -0.010715640150010586, 0.01961269974708557, 0.0022190187592059374, 0.013527446426451206, 0.022074777632951736, -0.0056341043673455715, 0.0007960664224810898, 0.001259892131201923, 0.007959790527820587, 0.01253422163426876, -0.01405203714966774, 0.0012826243182644248, -0.005424268078058958, -0.00548022473230958, -0.004375086631625891, 0.004878693725913763, -0.021571170538663864, -0.010974437929689884, -0.010757607407867908, -0.008701211772859097, 0.008435418829321861, -0.01861947402358055, 0.01360438670963049, 0.009477606043219566, -0.014177938923239708, 0.02892943099141121, -0.007386237382888794, -0.02034013159573078, 0.02480264939367771, -0.00610973360016942, -0.006305580493062735, 0.00813465379178524, -0.02946101501584053, 0.011631925590336323, 0.020577946677803993, -0.0007637167000211775, -0.0005827329005114734, -0.007379243150353432, -0.018395649269223213, -0.0004144266713410616, -0.026831068098545074, 0.011457061395049095, 0.016381220892071724, 0.015136191621422768, -0.006991046015173197, 0.017374444752931595, 0.0005923503777012229, 0.002598472870886326, 0.006193668115884066, -0.0071449256502091885, -0.019234994426369667, -0.010883509181439877, 0.018997179344296455, 0.019584720954298973, 0.005099021829664707, 0.02056395635008812, -0.0033066703472286463, 0.005060552153736353, -0.0053962902165949345, 0.016017504036426544, -0.009610502049326897, -0.0020126798190176487, -0.011219247244298458, -0.011568974703550339, -0.008757168427109718, -0.028188008815050125, 0.010715640150010586, 0.011645914055407047, -0.01046383660286665, 0.0036651405971497297, -0.01643717661499977, 0.009106894955039024, 0.0004089621943421662, -0.010722634382545948, -0.01852155104279518, 0.00036808784352615476, -0.01845160499215126, -0.0009678698843345046, -0.012807008810341358, -0.01510821282863617, -0.006994543131440878, 0.010869519785046577, 0.014982311055064201, -0.019486797973513603, 0.004794759210199118, 0.030608121305704117, 0.0100021967664361, -0.016591057181358337, -0.007917823269963264, -0.0027803308330476284, -0.005578148178756237, 0.017220566049218178, -0.009799354709684849, 0.02698494680225849, -0.01296088844537735, -0.0014653567923232913, -0.011561979539692402, 0.03220287710428238, -0.012576188892126083, -0.021571170538663864, -0.014010069891810417, 0.008994982577860355, 0.0017197832930833101, 0.01510821282863617, -0.015318049117922783, -0.006431482266634703, -0.005133994854986668, 0.0008848097058944404, -0.023599589243531227, -0.022872155532240868, -0.005683066323399544, -0.0028292927891016006, 0.014296846464276314, 0.007924817502498627, -0.007218368351459503, -0.025082431733608246, 0.032426703721284866, -0.003993884194642305, 0.00547323003411293, -0.022396527230739594, 0.0200043935328722, 0.011121323332190514, 0.027152815833687782, -0.0010308207711204886, 0.008512359112501144, 0.0032472165767103434, -0.003537490265443921, 0.011079356074333191, 0.003993884194642305, 0.0009503835462965071, 0.014632584527134895, 0.020787782967090607, -0.012618156149983406, 0.027754347771406174, 0.009148862212896347, -0.019388873130083084, -0.003584703430533409, -0.009162851609289646, 0.005718038883060217, -0.006095744203776121, 0.023753467947244644, -0.015569852665066719, 0.0062111541628837585, -0.015080234967172146, 0.02155718207359314, -0.004326125141233206, -0.011289192363619804, -0.024690737947821617, -0.018045920878648758, -0.0029342109337449074, 0.011575968936085701, 0.02648133970797062, 0.0011453564511612058, -0.010855531319975853, -0.021711062639951706, -0.006840663030743599, 0.010435858741402626, -0.006984051316976547, 0.000836285063996911, 0.004570933990180492, 0.014590617269277573, 0.0033696212340146303, 0.01954275369644165, -0.0222566369920969, -0.009008971974253654, 0.0025127895642071962, -0.01547192968428135, -0.019165048375725746, -0.021599149331450462, -0.0033119162544608116, -0.02526428923010826, -0.0008773779845796525, -0.0032524624839425087, -0.007575090043246746, -0.004829732235521078, -0.014275862835347652, -0.011862745508551598, -0.009827333502471447, 3.4754135413095355e-05, 0.005294869188219309, 0.009939245879650116, 0.011883729137480259, -0.0013726791366934776, 0.012044603005051613, -0.0071274396032094955, -0.0026072158943861723, -0.018731387332081795, -0.00685115484520793, -0.02456483617424965, -0.02179499715566635, -0.038833703845739365, -0.006770717911422253, 0.0014618595596402884, -0.013331599533557892, 0.038861680775880814, -0.026537297293543816, -0.0066937776282429695, 0.01175782736390829, -0.007680008187890053, 0.004095305223017931, -0.014842420816421509, 0.01917903684079647, 0.005050060339272022, 0.03796638175845146, -0.017248542979359627, 0.0029621890280395746, 0.012883948162198067, 0.02194887585937977, 0.007617057301104069, -0.001542296726256609, 0.006057274527847767, 0.023781446740031242, 0.007666019257158041, 0.010869519785046577, 0.008750173263251781, -0.01373728271573782, 0.004179239738732576, 0.013793239369988441, -0.00967345293611288, 0.004186233971267939, 0.004598912317305803, 0.001546668354421854, 0.0011453564511612058, 0.012261434458196163, 0.02010231651365757, 0.0037455777637660503, 0.003140549873933196, 0.0041197859682142735, 0.016325263306498528, -0.004263174254447222, -0.02056395635008812, -0.0002633882686495781, 0.00950558390468359, 0.02034013159573078, 0.010114109143614769, -0.015947557985782623, 0.0043995678424835205, 0.0005473230266943574, -0.012457281351089478, 0.016311274841427803, 0.015346027910709381, 0.004794759210199118, -0.0077219754457473755, 0.02754451148211956, 0.026201559230685234, -0.006676291581243277, 0.011331159621477127, 0.01481444202363491, -0.020871717482805252, 0.035392388701438904, 0.0007331155356951058, -0.0039169443771243095, 0.009764382615685463, 0.010771596804261208, 0.009806349873542786, 0.02711084857583046, 0.007826893590390682, -0.03953315690159798, 0.0022365052718669176, 0.026677187532186508, -0.012653128243982792, -0.03284637629985809, 0.0150102898478508, -0.011359138414263725, 0.019165048375725746, -0.028873473405838013, -0.009071922861039639, 0.0021840461995452642, -0.0023781447671353817, -0.004154758527874947, -0.020577946677803993, -0.02138931304216385, 0.007211374118924141, 0.018171822652220726, 0.040848132222890854, -0.010652689263224602, -0.0020861225202679634, 0.0038994578644633293, -0.0077219754457473755, -0.0047283112071454525, -0.01328963227570057, 0.008064708672463894, 0.008925037458539009, 0.006844160612672567, -0.016423188149929047, -0.0011077608214691281, -0.0159055907279253, -0.00319475750438869, 0.016185373067855835, 0.0038085286505520344, 0.0043366169556975365, -0.026145601645112038, 0.0043051415123045444, 0.024592813104391098, 0.023697512224316597, 0.01059673260897398, -0.014898376539349556, -0.011890723370015621, -0.013387555256485939, 0.00894602108746767, -0.01360438670963049, -0.0009442633017897606, 0.017248542979359627, 0.00950558390468359, 0.00021398930402938277, -0.001389291137456894, 0.007735964842140675, -0.002115849405527115, -0.022158712148666382, 0.00937268789857626, -0.003254211274906993, -0.011044383980333805, 0.002143827499821782, -0.009799354709684849, 0.008036729879677296, -0.008638260886073112, -0.012156516313552856, -0.010121104307472706, -0.026635220274329185, 0.0012633893638849258, 0.006102738901972771, 0.020256197080016136, 0.031335555016994476, 0.015569852665066719, 0.0012948648072779179, -0.012618156149983406, 0.03469293564558029, -0.016479143872857094, -0.00486120767891407, -0.009064927697181702, 0.015429962426424026, -0.0020826251711696386, -0.005843940656632185, 0.002334428718313575, -0.014240889810025692, -0.028845496475696564, -0.0051794592291116714, 0.016954772174358368, -0.0060537769459187984, 0.01077859103679657, -0.0240752175450325, -0.014800453558564186, 0.004805251024663448, -0.021179476752877235, 0.007316292263567448, -0.0005958476685918868, -0.0051200054585933685, -0.00466885743662715, 0.014982311055064201, -0.029880687594413757, 0.01105837244540453, -0.018829310312867165, 0.019948437809944153, -0.013842200860381126, 0.005669077392667532, -0.01570974476635456, -0.017640238627791405, 0.01857750676572323, 0.029796753078699112, 0.028411833569407463, -0.012275422923266888, 0.005182956345379353, 0.0038050315342843533, -0.009211813099682331, 0.007666019257158041, 0.01808788813650608, 0.005245907232165337, -0.015919581055641174, -0.03978496044874191, -0.012904931791126728, 0.00749815022572875, 0.003387107513844967, -0.019025158137083054, -0.005403284449130297, 0.020843738690018654, -0.005144486669450998, 0.003661643248051405, -0.0018238271586596966, 0.0008537714020349085, -0.015499907545745373, 0.011219247244298458, 0.012485259212553501, 0.02383740246295929, 0.004588420502841473, 0.006155197974294424, 0.009491595439612865, -0.0029726808425039053, 0.006707767024636269, -0.016772914677858353, 0.007882850244641304, -0.01782209612429142, -0.018269747495651245, 4.46038757218048e-06, -0.010547771118581295, 0.03379763290286064, -0.0017040455713868141, -0.004343611188232899, -0.018941223621368408, 0.004158256109803915, -0.015961548313498497, 0.0033696212340146303, 0.0076590245589613914, 0.018031932413578033, 0.012793019413948059, 0.011897717602550983, 0.0016104935202747583, 0.002539019100368023, 0.03259457275271416, 0.010205038823187351, 0.017836084589362144, 0.010233016684651375, 0.018955212086439133, -0.009253780357539654, -0.018171822652220726, 0.008771156892180443, -0.0290693212300539, -0.010701650753617287, 0.01915105991065502, -0.003693118691444397, -0.0036406596191227436, -1.2465860891097691e-05, 0.010302961803972721, 0.015611819922924042, -0.011429083533585072, -0.00025420793099328876, 0.0063335588201880455, -0.023683523759245872, -0.006039788015186787, -0.012142526917159557, -0.027026914060115814, 0.011107334867119789, 0.0053962902165949345, -0.032426703721284866, -0.014338813722133636, -0.022956090047955513, -0.00195497483946383, -0.013478484936058521, -0.008344490081071854, -0.006648313254117966, -0.006410498637706041, -0.01517815887928009, -0.02070384845137596, 0.015779688954353333, 0.009715420193970203, 0.00436459481716156, 0.0240752175450325, -0.013793239369988441, 0.0149963004514575, 0.025572050362825394, -0.03494473919272423, -0.01980854570865631, -0.03195107355713844, 0.021249422803521156, -0.004798256792128086, -0.009022960439324379, 0.036819275468587875, 0.00828153919428587, -0.027236750349402428, 0.00328218936920166, -0.005350825376808643, 0.01152001228183508, -0.020256197080016136, 0.00592787517234683, 0.022242646664381027, 0.006914105731993914, 0.023249860852956772, 0.014324824325740337, -0.0005350825376808643, 0.0035235011018812656, -0.015667777508497238, -0.0022784725297242403, -0.0033591294195502996, 0.0177521500736475, -0.00957552995532751, -0.0026526805013418198, 0.006008312571793795, -0.010932470671832561, -0.011806788854300976, 0.007980774156749249, -0.00032721346360631287, -0.012548210099339485, -0.01235236320644617, 0.003626670688390732, -0.000722186581697315, -0.004469512961804867, -0.0032804408110678196, -0.008253561332821846, -0.007295308634638786, 0.010435858741402626, 0.0028397846035659313, -0.0017084171995520592, 0.00986930076032877, 0.01821378991007805, 0.011617936193943024, 0.010848536156117916, 0.013219686225056648, 0.012911926954984665, -0.004654868505895138, 0.010750613175332546, 0.016451165080070496, -0.01762624830007553, 0.03197905048727989, 0.0004616398364305496, -0.020410077646374702, 0.007714981213212013, 0.017304500564932823, -0.003096834057942033, -0.02024220861494541, 6.896182458149269e-05, -0.018465593457221985, -0.013548430055379868, -0.027222761884331703, 0.002131587127223611, 0.003923938609659672, -0.0011707117082551122, 0.01743040233850479, -0.0038015341851860285, -0.011478045023977757, -0.023767458274960518, 0.009589518420398235, -0.02611762471497059, 0.002010931260883808, 0.018129855394363403, 0.009197824634611607, -0.021669095382094383, 0.019724611192941666, 0.041939280927181244, -0.018045920878648758, -0.02102559618651867, 0.00032918067881837487, 0.015583842061460018, 0.0030024077277630568, 0.012820997275412083, 0.004466015845537186, 0.004483502358198166, -0.02255040779709816, -0.0009162851492874324, -0.0037735560908913612, 0.015723733231425285, -0.006025799084454775, -4.778693619300611e-05, -0.003951916936784983, -0.01745837926864624, 0.020452044904232025, -0.004287654999643564, -0.012744057923555374, -0.003100331174209714, 0.009603507816791534, -0.009792360477149487, -0.0008979244739748538, 0.012296406552195549, -0.0029254676774144173, -0.009771376848220825, -0.0065993512980639935, -0.00350951193831861, 0.028593692928552628, 0.006137711461633444, -0.001995193539187312, 0.012324385344982147, -0.0013787993229925632, -0.010652689263224602, -0.0011182526359334588, 0.017947997897863388, -0.017136631533503532, -0.01063170563429594, -0.002696396317332983, -0.016283296048641205, 0.012590177357196808, 0.010065147653222084, 0.014898376539349556, 0.002166559686884284, -0.005627110134810209, -1.0054655831481796e-05, 0.0009337714873254299, 0.026509318500757217, -0.00467934925109148, 0.016381220892071724, -0.014856409281492233, 0.00654689222574234, 0.01854952797293663, -0.009680448099970818, -0.001844810787588358, -0.005749514326453209, 0.0018238271586596966, -0.004682846833020449, -0.02070384845137596, 0.00018688544514589012, 0.012583183124661446, 0.012590177357196808, 0.03653949499130249, 0.004570933990180492, 0.04051239416003227, -0.002539019100368023, 0.007582084741443396, 0.018829310312867165, -0.011359138414263725, 0.016283296048641205, 0.03169927000999451, -0.006718258839100599, -0.012618156149983406, 0.005172464530915022, -0.0072393519803881645, 0.012275422923266888, -0.0048507158644497395, -0.01076460164040327, -0.010023180395364761, -0.006980554200708866, 0.006812685169279575, -0.009267769753932953, 0.020228218287229538, 0.010841541923582554, 0.009267769753932953, 0.00859629362821579, 0.012953894212841988, -0.008603287860751152, 0.029321124777197838, -0.00336087797768414, 0.023585598915815353, 0.027236750349402428, 0.017444390803575516, 0.0012336625950410962, -0.00023366145615000278, -0.0018360675312578678, -0.010421869345009327, 0.011009410955011845, 0.006050279829651117, 0.002058144425973296, -0.010163071565330029, 0.023529643192887306, -0.029768776148557663, 0.001448744791559875, -0.01282799243927002, 0.022774232551455498, 0.0015694006578996778, -0.016423188149929047, 0.008505364879965782, -0.010855531319975853, 0.010177060030400753, 0.006351045332849026, -0.0021490734070539474, -0.026691175997257233, -0.0031388013157993555, -0.045576442033052444, -0.002115849405527115, 0.0012555205030366778, 0.01702471822500229, -0.0076590245589613914, 0.026271503418684006, 0.0029499486554414034, -0.010974437929689884, 0.006858149543404579, 0.0025774892419576645, 0.0249984972178936, -0.008127659559249878, -0.00454645324498415, -0.006018804386258125, 0.009897278621792793, 0.024956529960036278, 0.012324385344982147, 0.002434100955724716, 0.01454865001142025, -0.00018732261378318071, -0.015821656212210655, -0.01699673943221569, 0.005067546386271715, 0.0008139899582602084, -0.0008528971229679883, -0.001942734350450337, 0.003616178873926401, -0.015192147344350815, -0.014576627872884274, -0.011163290590047836, -0.006008312571793795, 0.005130497273057699, 0.013100779615342617, 0.0024043743032962084, 0.028677627444267273, 0.013541435822844505, 0.009288753382861614, -0.030496207997202873, -0.01436679158359766, 0.010834547691047192, 0.001283498713746667, -0.00015967230137903243, -0.006218148861080408, -0.011163290590047836, 0.013072800822556019, -0.017934009432792664, -0.008288533426821232, 0.00795279536396265, 0.020941661670804024, -0.004812245722860098, 0.014080015011131763, -0.020508000627160072, -0.013667337596416473, -0.0032909326255321503, 0.0007580335950478911, -0.01736045628786087, 0.0036406596191227436, -0.016982750967144966, 0.0445132739841938, -0.01218449417501688, 0.0016813132679089904, -0.009351704269647598, 0.00623213779181242, -0.0024008769541978836, 0.014576627872884274, -0.009295747615396976, 0.0064874389208853245, 0.010967443697154522, 0.03256659209728241, 0.014562638476490974, -0.005532683804631233, -0.010652689263224602, -0.004784267395734787, 0.023221883922815323, -0.0075471121817827225, 0.006882630288600922, 0.01529007125645876, -0.0004098365025129169, -0.008176621049642563, 0.019095102325081825, -0.016744935885071754, -0.011974657885730267, 0.01127520389854908, 0.0032017522025853395, 0.003560222452506423, -0.007889844477176666, -0.005529186222702265, 0.007652030326426029, -0.020591935142874718, 0.015262093394994736, 0.015094224363565445, 0.021599149331450462, 0.011429083533585072, 0.009323726408183575, 0.01168788131326437, 0.00872918963432312, -0.006529406178742647, -0.015234114602208138, 0.019780568778514862, -0.01801794394850731, 0.004567436873912811, -0.007666019257158041, -0.01154099591076374, -0.002666669664904475, 0.01185575034469366, -0.01973860152065754, -0.039365287870168686, 0.016940783709287643, -0.002633445430546999, 0.00891104806214571, 0.011673892848193645, 0.014149961061775684, -0.010862525552511215, 0.009267769753932953, -0.0063650342635810375, 0.01610143855214119, -0.013667337596416473, -0.0010789083316922188, -0.00655388692393899, -0.007533122785389423, 0.0036126815248280764, 0.0022907129023224115, -0.012953894212841988, -0.0081696268171072, 0.008932031691074371, -0.0004646999586839229, 0.013205697759985924, -0.006529406178742647, -0.021585160866379738, -0.031195662915706635, -0.030244404450058937, 0.020046360790729523, 0.0012004384770989418, 0.004486999474465847, 0.03502867370843887, -0.00297617819160223, 0.0013683075085282326, -0.01871739700436592, 0.003846998792141676, -0.013205697759985924, 0.015569852665066719, -0.02790822647511959, 0.018955212086439133, 0.0035654683597385883, -0.023655544966459274, -0.01964067667722702, -0.008295528590679169, 0.020116306841373444, 0.008589299395680428, 0.014842420816421509, -0.006924597546458244, 0.012604166753590107, 0.020158274099230766, -0.011044383980333805, 0.003846998792141676, -0.008127659559249878, 0.013828211463987827, -0.008386457338929176, 0.016647012904286385, 0.0007794544217176735, -0.02615959197282791, -0.007309297565370798, 0.00796678476035595, -0.009197824634611607, -0.00672875065356493, 0.023417729884386063, 0.006214651744812727, 0.0022557401098310947, -0.0149963004514575, -0.008967004716396332, 0.007700991816818714, 0.02235455997288227, -0.029684841632843018, -0.0035882005468010902, -0.0009626239771023393, -0.015681765973567963, 0.012674111872911453, 0.005749514326453209, 0.0029149758629500866, -0.005235415417701006, 0.01729051023721695, -0.0005866673309355974, 0.011932690627872944, -0.01854952797293663, 0.004500988405197859, 0.014954333193600178, -0.0124992486089468, 0.030636098235845566, -0.004032354336231947, 0.014212911948561668, -0.009701431728899479, 0.0039659058675169945, 0.01772417314350605, 0.007288313936442137, -0.009799354709684849, -0.0013001107145100832, 0.00016404390044044703, 0.01173684373497963, -0.002794319996610284, -0.0014163949526846409, 0.02674713358283043, 0.0272507406771183, 0.0038574906066060066, -0.0140870101749897, -0.026593253016471863, 0.004032354336231947, 0.010030174627900124, -0.0026701667811721563, -0.019193027168512344, 0.010750613175332546, 0.00654689222574234, -0.007924817502498627, 0.016521111130714417, 0.0043680923990905285, -0.006476947106420994, 0.013464495539665222, -0.012988866306841373, -0.004707327578216791, -0.023305818438529968, 0.004007873125374317, 0.004438037518411875, -0.028957407921552658, 0.004378584213554859, -0.01765422709286213, 0.0007256838725879788, 0.0027331176679581404, -0.011750832200050354, -0.005189951043576002, -0.006854652427136898, 0.012604166753590107, 0.0020668874494731426, -0.015653787180781364, 0.016451165080070496, 0.003598692361265421, 0.04297447204589844, -0.0030128995422273874, 0.009827333502471447, -0.004854212980717421, 0.0013744276948273182, -0.0074561829678714275, 0.004385578446090221, 0.0027890740893781185, -0.007554106414318085, 0.020326143130660057, -0.005022082012146711, -0.007596073672175407, -0.006777712143957615, 0.030076535418629646, 0.010344929061830044, 0.010177060030400753, -0.020452044904232025, 0.006917603313922882, -0.009799354709684849, 0.010128098540008068, 0.012688101269304752, 0.002507543656975031, 0.005599131807684898, 0.0077849263325333595, 0.0023798933252692223, 0.029768776148557663, 0.010575748980045319, -0.005050060339272022, -0.010967443697154522, -0.01663302443921566, -0.023823413997888565, -0.01563979871571064, 0.0013516955077648163, -0.016674991697072983, 0.007973778992891312, 0.0027016422245651484, -6.922821739863139e-06, -0.014352802187204361, 0.014688540250062943, -0.03561621531844139, -0.001377925043925643, -0.015695754438638687, 0.0045744311064481735, -0.011457061395049095, 0.010932470671832561, 0.0011042634723708034, -0.01263214461505413, -0.0025757404509931803, -0.008722195401787758, 0.0048192404210567474, 0.01993444748222828, -0.011359138414263725, -0.023068003356456757, -0.02145925909280777, 0.005092027597129345, 0.030300360172986984, -0.006186673417687416, -0.008365473710000515, -0.003962408751249313, 0.006095744203776121, -0.013058812357485294, 0.0005132246296852827, -0.005200442858040333, -0.03223085403442383, -0.022466473281383514, -0.02393532730638981, 0.009204818867146969, 0.0015047010965645313, -0.00013551927986554801, 0.013751272112131119, -0.03477687016129494, 0.013709304854273796, -0.025348223745822906, -0.028411833569407463, -0.0071764010936021805, -0.0015414224471896887, -0.017878051847219467, -0.021711062639951706, 0.016940783709287643, 0.0021228438708931208, 0.008708206005394459, 0.013807227835059166, -0.005714541766792536, 0.007211374118924141, -0.006218148861080408, -0.009267769753932953, 0.012709084898233414, 0.0052109346725046635, 0.020382098853588104, 0.016087450087070465, -0.01738843508064747, -0.012730068527162075, -0.012730068527162075, 0.008260555565357208, -0.0018080894369632006, 0.0003090713871642947, -0.018073899671435356, 0.011037388816475868, 0.021319366991519928, 0.011359138414263725, -0.015611819922924042, 0.003791042370721698, 0.016213351860642433, 0.00026644839090295136, -0.0163392536342144, -0.015318049117922783, -0.0003136615559924394, -0.01419892255216837, 0.011631925590336323, -0.007980774156749249, -0.020577946677803993, -0.017248542979359627, 0.0032000034116208553, 0.013562419451773167, 0.01545794028788805, 0.02347368746995926, -0.0011252471012994647, -0.01884329877793789, -0.00887607503682375, 0.006452465895563364, 0.008568315766751766, -0.008407440967857838, 0.008638260886073112, -0.007596073672175407, 0.0024480901192873716, -0.02436898835003376, 0.027964184060692787, 0.005340333562344313, 0.016227340325713158, 0.0010378153529018164, -0.025278279557824135, 0.009610502049326897, 0.012009630911052227, -0.013576407916843891, 0.021641116589307785, -0.01314274687319994, -0.004301643930375576, -0.00954055693000555, -0.00424219062551856, 0.008330500684678555, 0.008694217540323734, 0.0020756307058036327, -0.015164169482886791, -0.020955651998519897, -0.00686864135786891, -0.006326564121991396, 0.04157556593418121, 0.027866259217262268, -0.006448968779295683, 0.001892023952677846, -0.011352143250405788, 0.0011873237090185285, 0.003100331174209714, -0.014121982268989086, -0.014604605734348297, -0.01583564653992653, 0.015961548313498497, -0.04652770236134529, 0.0186754297465086, 0.025767896324396133, -0.01891324482858181, 0.0002852462057489902, -0.0010867771925404668, 0.010093125514686108, -0.009547551162540913, 0.009806349873542786, 0.020773792639374733, -0.010421869345009327, -0.006746236700564623, 0.0019584721885621548, 0.01937488466501236, 0.0037141023203730583, 0.007015526760369539, -0.006889624986797571, -0.004459021147340536, -0.005924378056079149, 0.028509758412837982, -0.014450726099312305, -0.01401706412434578, -0.004228201229125261, -0.011499028652906418, 0.015779688954353333, 0.002194538014009595, 0.00798776838928461, 0.012765041552484035, -0.008155637420713902, -0.012009630911052227, -0.0007055745227262378, 0.011527007445693016, 0.00027213143766857684, -0.02929314598441124, 0.0026386913377791643, 0.009589518420398235, 0.010869519785046577, -0.0010692907962948084, -0.005857930053025484, 0.005511700175702572, 0.008694217540323734, -0.0028835004195570946, 0.008022741414606571, 0.009085911326110363, 0.014226900413632393, 0.009120884351432323, 0.00437158951535821, -0.01253422163426876, -0.0018010948551818728, 0.0023886365815997124, 0.011198263615369797, 0.005829951725900173, 0.00982033833861351, -0.011506023816764355, 0.010142087936401367, -0.0007248095353133976, 0.013660342432558537, 0.010100120678544044, -0.0024568333756178617, 0.015723733231425285, -0.01405203714966774, 0.0054592411033809185, 0.002664920873939991, -0.018311714753508568, 0.0006531154504045844, -0.044653162360191345, -0.017766140401363373, -0.002428855048492551, 0.013030833564698696, 0.0048507158644497395, -2.446723920002114e-05, -0.006490936037153006, -0.016577066853642464, -0.016353242099285126, -0.0046373819932341576, -0.018731387332081795, 0.0033468888141214848, 0.0013962857192382216, -0.015304060652852058, -0.0038330096285790205, -0.020745815709233284, 0.006452465895563364, 0.01077859103679657, -0.001977707026526332, -0.01510821282863617, 0.007040007505565882, -0.006134214345365763, 0.0109254764392972, 0.0007165035349316895, -0.009400665760040283, -0.009904272854328156, 0.007309297565370798, -0.00516547029837966, -0.012065586633980274, -0.04054037109017372, -0.03150342404842377, 0.02007433958351612, 0.006714761257171631, -0.004525469616055489, -0.001688307849690318, 0.012429303489625454, -0.019360896199941635, 0.030272383242845535, 0.022928113117814064, 0.014562638476490974, 0.0036511514335870743, -0.005536180920898914, 0.016549089923501015, -0.018857289105653763, 0.0006212028674781322, -0.0026841559447348118, 0.014464715495705605, 0.005371809005737305, 0.007777932099997997, 0.01915105991065502, 0.007742959074676037, 0.0159055907279253, -0.0031737738754600286, -0.006127219647169113, 0.017374444752931595, -0.023459697142243385, 0.0062426296062767506, 0.03726692497730255, 0.009232796728610992, 0.03418932855129242, 0.020452044904232025, -0.018325703218579292, 0.009491595439612865, 0.011939684860408306, -0.009218808263540268, 0.03362976387143135, 0.011617936193943024, -0.004329622257500887, 0.002374647418037057, -0.009708425961434841, 0.005515197291970253, 0.01861947402358055, 0.02892943099141121, -0.002519784262403846, 0.0035549765452742577, -0.008309517055749893, -0.007875856012105942, 0.0036826268769800663, -0.002572243334725499, 0.014003075659275055, -0.0018063407624140382, 0.025697952136397362, 0.003784047905355692, 0.006431482266634703, 0.0045114802196621895, 0.008211594074964523, 0.006330061703920364, 0.018199801445007324, 0.004105797037482262, 0.0020616415422409773, -0.008197604678571224, 0.014275862835347652, -0.011799794621765614, -0.0027191287372261286, 0.01035192422568798, -0.004535961430519819, -0.018661441281437874, 0.0011173782404512167, -0.005683066323399544, -0.015374005772173405, 0.00015923514729365706, -0.00024371611652895808, -0.0005608749343082309, -0.015192147344350815, -0.005868421867489815, 0.0010037169558927417, 0.008197604678571224, 0.0018098379950970411, -0.00018819692195393145, -0.00470383046194911, -0.016311274841427803, 0.012576188892126083, 0.0041197859682142735, -5.4808802815387025e-05, 0.0016786903142929077, 0.015052257105708122, -0.015513896942138672, 0.002434100955724716, -0.006956072989851236, -0.002752352738752961, -0.008302522823214531, 0.005392792634665966, -0.020312152802944183, 0.002657926408573985, 0.005189951043576002, 0.00382251781411469, -0.006340553518384695, -0.007253341376781464], "778d0172-21c2-42ce-9fd0-d50ddecb9b57": [-0.015478098765015602, 0.028164390474557877, -0.006839239504188299, 0.053865425288677216, 0.009278647601604462, -0.02645372599363327, -0.003079197369515896, 0.0292044747620821, -0.0252494178712368, -0.013131065294146538, 0.020131107419729233, 0.049185045063495636, 0.032488953322172165, -0.03259843587875366, 0.01629921793937683, 0.05720464140176773, -0.01829727366566658, 0.0008758605690672994, 0.016983482986688614, 0.006897401995956898, 0.02953292243182659, -0.02373034693300724, -0.0505535751581192, 0.010825089178979397, -0.02255340851843357, 0.025988424196839333, -0.019008910283446312, 0.02106170915067196, -0.03465123474597931, -0.020363757386803627, 0.01714770682156086, -0.008608067408204079, -0.005542554892599583, 0.021718604490160942, 0.005987328011542559, -0.011721477843821049, 0.015135965310037136, -0.004468257538974285, -0.043820399791002274, -0.015505469404160976, -0.029012881219387054, 0.014848573133349419, -0.022047052159905434, -0.02953292243182659, -0.016490811482071877, 0.03358377888798714, -0.034815456718206406, 0.026617949828505516, -0.025044137611985207, -0.004399830941110849, 0.0027678562328219414, -0.007150580175220966, -0.0077116782777011395, -0.0022392605897039175, 0.03150361031293869, -0.05632878094911575, 0.010195564478635788, 0.0465848334133625, 0.01591602899134159, -0.03035404160618782, 0.05175788328051567, -0.044969964772462845, -0.027876999229192734, -0.006339725106954575, -0.03818204626441002, -0.024756746366620064, -0.012179936282336712, -0.0008091446361504495, -0.07696624845266342, -0.013856387697160244, -0.016997169703245163, 0.03180468827486038, -0.010975627228617668, -5.923178105149418e-05, 0.04171285778284073, -0.06180290877819061, 0.013596367090940475, 0.035663947463035583, 0.01186517346650362, 0.00934023130685091, 0.02456515096127987, 0.0058812666684389114, 0.012474169954657555, -0.021280674263834953, 0.07094470411539078, 0.009490770287811756, -0.01868046261370182, -0.026275817304849625, 0.016915056854486465, -0.04737858101725578, 0.0016328298952430487, 0.010209249332547188, -0.000649197434540838, -0.039441097527742386, -0.015382301062345505, -0.01628553308546543, 0.014232734218239784, 0.01870783418416977, 0.008300147019326687, -0.02062377892434597, -0.005987328011542559, -0.02180071733891964, -0.00022944295778870583, 0.003801097860559821, 0.02409985102713108, -0.012077296152710915, -0.019638435915112495, -0.017407728359103203, -0.03653980791568756, 0.04798073694109917, 0.012590495869517326, -0.01243995688855648, 0.012884729541838169, 0.027411699295043945, -0.06804341822862625, -0.014821202494204044, -0.033720631152391434, -0.006958985701203346, -0.008970728144049644, -0.011830960400402546, -0.004670115653425455, 0.010263990610837936, -0.021349100396037102, -0.019925827160477638, -0.00913495197892189, 0.009374445304274559, 0.01670977659523487, 0.0107292914763093, -0.004707750398665667, -0.03352903574705124, -0.010017654858529568, 0.048391297459602356, 0.01111248042434454, 0.004540105350315571, 0.017777232453227043, -0.013876915909349918, 0.004625638481229544, 0.03435015678405762, 0.02412722073495388, 0.020815374329686165, -0.07050677388906479, -0.006271298509091139, -0.022101793438196182, 0.0010229777544736862, -0.010975627228617668, -0.014369587413966656, -0.02765803411602974, 0.016477126628160477, -0.009545511566102505, 0.03221524506807327, -0.0741197019815445, -0.050827283412218094, -0.005179894156754017, 0.02019953355193138, 0.03243421018123627, -0.015149650163948536, -0.05961325764656067, 0.014834888279438019, 0.029779259115457535, 0.04639323800802231, 0.04157600551843643, -0.02415459230542183, -0.001828701002523303, 0.058189984411001205, 0.0702878087759018, 0.008443843573331833, 0.01599813997745514, 0.00780063308775425, -0.05008827522397041, 0.020418498665094376, 0.03842838108539581, -0.0350617915391922, 0.003900316543877125, -0.02572840452194214, -0.013521097600460052, 0.015792861580848694, 0.0009297464857809246, 0.024346185848116875, 0.03295425325632095, -0.010441900230944157, -0.019665807485580444, 0.006363674532622099, 0.00160118262283504, 0.010209249332547188, 0.007424286566674709, -0.008354888297617435, 0.010654022917151451, 0.029341328889131546, -0.006541583687067032, -0.01009292434900999, 0.01669609174132347, 0.014342216774821281, 0.015313873998820782, 0.0014540654374286532, -0.019611066207289696, -0.024578837677836418, 0.03974217176437378, 0.014095881022512913, -0.0467764288187027, -0.00669896462932229, 0.024004053324460983, 0.020788002759218216, -0.0010169903980568051, 0.012720505706965923, -0.0195152685046196, 0.023456640541553497, -0.01302158273756504, -0.011769376695156097, 0.009873959235846996, -0.020774317905306816, 0.036375582218170166, -0.023470325395464897, 0.03733355551958084, -0.005292797926813364, -0.012549439445137978, 0.014369587413966656, -0.025837887078523636, 0.03232472762465477, -0.007485870737582445, -0.049650344997644424, 0.0010597570799291134, -0.007540612015873194, -0.021732289344072342, -0.004191129468381405, -0.047679658979177475, -0.020514296367764473, -0.030655119568109512, 0.014123251661658287, -0.04354669153690338, -0.003797676647081971, 0.04094647988677025, -0.04122018814086914, -0.03235210105776787, 0.019337359815835953, -0.008122238330543041, 0.05183999612927437, 0.025495752692222595, 0.022854486480355263, -0.014725405722856522, -0.007184793706983328, -0.007971699349582195, 0.05383805185556412, 0.012398901395499706, -0.013144751079380512, 0.005901794880628586, -0.01009292434900999, -0.011050896719098091, 0.018037253990769386, 0.014629608020186424, -0.019268931820988655, -0.0019809503573924303, -0.01706559583544731, 0.013322659768164158, -0.0059531149454414845, -0.050416722893714905, 0.04398462176322937, -0.0007244666921906173, -0.02958766371011734, 0.013699006289243698, 0.0028448360972106457, 0.031777314841747284, 0.028711803257465363, 0.009045997634530067, 0.038264159113168716, 0.009504455141723156, 0.004899344872683287, 0.010872988030314445, -0.0030432732310146093, 0.019980568438768387, -0.00041291178786195815, -0.021527010947465897, 0.01090720109641552, -0.0015960505697876215, 0.0072395349852740765, 0.05408439040184021, 0.014438013546168804, -0.011735162697732449, -0.02024058997631073, 0.03941372409462929, -0.006281562615185976, -0.002422301797196269, -0.009586567059159279, 0.005244899541139603, 0.0428350567817688, 0.02958766371011734, -0.0025095457676798105, -0.026617949828505516, -0.03413119167089462, -0.04198656603693962, -0.006979513913393021, -0.01129039004445076, 0.02184177190065384, -0.0035684474278241396, 0.0015498626744374633, 0.007499556057155132, -0.02574208937585354, -0.0008052955963648856, -0.02690534107387066, -0.01478014700114727, 0.015423356555402279, 0.01400692667812109, 0.02679585851728916, -0.023921942338347435, -0.04521629959344864, 0.038729459047317505, -0.0468037985265255, -0.0015755225904285908, 0.012583652511239052, 0.006076282821595669, 0.026741117238998413, 0.030518265441060066, -0.02370297722518444, -0.010400843806564808, 0.004844603594392538, 0.023880885913968086, -0.007807475980371237, -0.005959957372397184, -0.022827114909887314, 0.009846588596701622, -0.029313957318663597, 0.012535754591226578, -0.007157423067837954, -0.05334538221359253, 0.014629608020186424, 0.002642977749928832, -0.0032451318111270666, -0.007020569872111082, 0.007184793706983328, 0.004834339953958988, -0.03539023920893669, -0.025194676592946053, -0.0012864201562479138, -0.024017738178372383, -0.023251360282301903, -0.04863763228058815, -0.012460485100746155, -0.01345951296389103, -0.030490895733237267, -0.04631112515926361, -0.014629608020186424, 0.001133315614424646, -0.006189186591655016, 0.017640378326177597, 0.003500020829960704, 0.025509439408779144, 0.025167305022478104, -0.011947285383939743, 0.014342216774821281, -0.02263552136719227, 0.0034367262851446867, 0.000825395924039185, 0.0048788171261549, 0.04863763228058815, 0.04018010199069977, 0.019583694636821747, -0.042999278753995895, -0.016162363812327385, 0.016942428424954414, -0.01287788711488247, -0.029751887544989586, 0.029697146266698837, -0.010551382787525654, -0.002757592126727104, 0.009873959235846996, -0.028109649196267128, 0.030436154454946518, 0.0012137169251218438, 0.009579724632203579, -0.00574783468618989, -0.013589523732662201, -0.023593494668602943, -0.004557211883366108, 0.016230791807174683, -0.022320758551359177, -0.007013726979494095, -0.02925921604037285, 0.039441097527742386, -0.01536861527711153, -0.04111070558428764, 0.011748848482966423, -0.021198563277721405, 0.016148678958415985, 0.026234760880470276, -0.00080059131141752, 0.002372692571952939, 0.007650094572454691, -0.019337359815835953, -0.03670402988791466, 0.07455763220787048, 0.014150622300803661, -0.03736092522740364, 0.007964856922626495, -0.033693261444568634, -0.008245405741035938, -0.02991611137986183, 0.007479027844965458, 0.030573006719350815, -0.03692299500107765, -0.0026173177175223827, -0.02056903764605522, -0.004895923659205437, -0.03142149746417999, -0.011440928094089031, -0.029861370101571083, 0.0504714660346508, 0.012227834202349186, -0.017695119604468346, -0.017284560948610306, 0.03788096830248833, -0.014958055689930916, 0.0066168527118861675, 0.01517702080309391, -0.0032177611719816923, -0.009429186582565308, 0.024578837677836418, 0.02019953355193138, -0.01713402196764946, 0.03935898467898369, -0.003571868874132633, -0.022690262645483017, 0.03738829866051674, 0.0116667365655303, 0.006917929742485285, 0.004666694439947605, -0.013856387697160244, 0.028273873031139374, 0.0027370641473680735, 0.015833916142582893, -0.00574441347271204, 0.008963885717093945, -0.009798689745366573, 0.030846713110804558, -0.0031852584797888994, 0.021869143471121788, -0.0017337591852992773, 0.010797718539834023, 0.016627665609121323, -0.01906365156173706, 0.040207475423812866, -0.0032947410363703966, -0.01835201494395733, 0.01754458248615265, -0.0018526503117755055, 0.011516197584569454, 0.012015712447464466, -0.01381533220410347, -0.0036334528122097254, -0.004177444148808718, 6.69297733111307e-05, -0.013678479008376598, -0.003592396853491664, -0.013740062713623047, -0.008525955490767956, -0.02570103295147419, 0.051976848393678665, 0.008669651113450527, 0.008108552545309067, -0.022799745202064514, 0.01946052722632885, -0.05671197175979614, -0.008806504309177399, 0.007013726979494095, 0.05101887881755829, -0.015231762081384659, 0.05501499027013779, -0.001958711538463831, -0.018557295203208923, -0.009477084502577782, 0.009785004891455173, 0.006339725106954575, 0.001750010414980352, -0.003062090603634715, -0.001618289272300899, 0.04554474726319313, 0.02884865738451481, -0.0037805698812007904, -0.024277759715914726, -0.02061009407043457, -0.029094992205500603, 0.015135965310037136, 0.01185148861259222, -0.04814495891332626, 0.008040126413106918, 0.010065553709864616, -0.019611066207289696, -0.005888109561055899, 0.025796830654144287, -0.03276265785098076, -0.012720505706965923, -0.037552520632743835, 0.018406756222248077, 0.03437752649188042, -0.00010199841199209914, 0.03418593108654022, 0.009169165045022964, 0.008478056639432907, -0.015053853392601013, -0.017777232453227043, 0.017695119604468346, -0.027151677757501602, 0.027767516672611237, -0.02887602709233761, 0.015012796968221664, 0.003452122211456299, 0.004522998817265034, 0.041028592735528946, -0.05550766363739967, 0.016189735382795334, -0.032543692737817764, -0.038756828755140305, -0.026371613144874573, 0.01206361036747694, -0.027124306187033653, 0.009114423766732216, 0.005303062032908201, -0.006237084977328777, 0.002656663069501519, 0.0029355015140026808, 0.019378414377570152, -0.018529925495386124, -0.021171191707253456, -0.018872058019042015, -0.03112042136490345, 0.004081646911799908, 0.014123251661658287, -0.032844770699739456, -0.021184876561164856, -0.01720244809985161, -0.016641350463032722, -0.014821202494204044, -0.017722491174936295, -0.00875860545784235, -0.03473334386944771, -0.027808573096990585, -0.023196619004011154, -0.006469735410064459, -0.015765490010380745, 0.019268931820988655, 0.016080252826213837, 0.019761603325605392, -0.04896607995033264, 0.01345951296389103, -0.011331445537507534, 0.012932628393173218, 0.004434044007211924, 0.02486622892320156, 0.005532291252166033, 0.008026440627872944, 0.0009648151462897658, 0.0015199260087683797, -0.0116804214194417, 0.018858373165130615, -0.007944328710436821, -0.002583104418590665, -0.013651108369231224, -0.031749945133924484, 0.05411176010966301, -0.029094992205500603, 0.009969756938517094, -0.018584666773676872, -0.019597379490733147, 0.037990450859069824, -0.01320633478462696, 0.028602320700883865, 0.002743906807154417, 9.157404565485194e-05, -0.023593494668602943, -0.007410601247102022, -0.0022837379947304726, 0.004540105350315571, 0.02251235395669937, -0.006432101130485535, 0.04245186597108841, 0.014725405722856522, -0.01628553308546543, 0.0348701998591423, 0.004950664937496185, -0.01676451787352562, -0.03388485684990883, -0.006291826255619526, -0.014848573133349419, -0.014725405722856522, 0.032899513840675354, -0.013090009801089764, 0.02292291261255741, 0.03076460212469101, -0.03347429633140564, -0.024633578956127167, -0.034021709114313126, -0.02100696787238121, -0.005084096919745207, 0.05178525671362877, -0.032844770699739456, -0.021554380655288696, -0.01402745395898819, 0.03648506477475166, 0.008389102295041084, -0.017996197566390038, 0.02887602709233761, -0.00145919737406075, 0.0584089495241642, 0.010565067641437054, 0.032899513840675354, -0.018406756222248077, -0.046201642602682114, 0.03161309286952019, -0.004632481373846531, 0.04190445318818092, -0.009039154276251793, 0.006185765378177166, 0.032105762511491776, 0.021978626027703285, 0.016422385349869728, -0.02063746377825737, 0.03350166603922844, 0.028985509648919106, 0.008710706606507301, 0.0070684682577848434, 0.0194057859480381, 0.0021605701185762882, -0.006907666102051735, -0.014944370836019516, 0.010216092690825462, -0.009935542941093445, 0.029450811445713043, 0.025961054489016533, 0.023962996900081635, 0.023196619004011154, 0.0011735162697732449, -0.00856701098382473, 0.008313832804560661, 0.012973684817552567, -0.02102065272629261, -0.026371613144874573, 0.019734233617782593, 0.00994922872632742, -0.0252357330173254, 0.011269861832261086, -0.03139412775635719, -0.005734149366617203, -0.010886672884225845, -0.008601224049925804, 0.004030327312648296, 0.029697146266698837, -0.006856346037238836, 0.02923184633255005, -0.022868171334266663, 0.0011529882904142141, 0.014383272267878056, 0.0024240126367658377, -0.011119323782622814, 0.026932712644338608, -0.0027182470075786114, 0.02301871031522751, 0.025112563744187355, -0.007369545288383961, -0.006288405042141676, 0.00602154154330492, 0.011735162697732449, 0.030627747997641563, -0.008443843573331833, -0.0012710242299363017, -0.0002454804489389062, -0.003337507601827383, -0.00603180518373847, 0.014807517640292645, 0.030080335214734077, -0.01033926010131836, 0.025044137611985207, 0.02182808704674244, 0.010749819688498974, -0.0004524709365796298, 0.06437575072050095, 0.02843809686601162, 0.007314804010093212, 0.003558183554559946, -0.009880801662802696, 0.02568734809756279, 3.923838085029274e-05, -0.008348045870661736, 0.03670402988791466, -0.03539023920893669, -0.055836111307144165, 0.0034555436577647924, -0.01224836241453886, -0.016819259151816368, 0.0050635687075555325, -0.024578837677836418, 0.0053612245246768, -0.024387242272496223, -0.011194592341780663, -0.0005136271938681602, -0.01344582810997963, -4.848666503676213e-05, 0.009107581339776516, -0.005080675706267357, 0.019665807485580444, 0.006233663763850927, 0.01825621910393238, -0.020541667938232422, -0.02341558411717415, -0.010195564478635788, 0.01628553308546543, -0.005371488630771637, 0.007739049382507801, 0.035226017236709595, -0.009497612714767456, -0.020733261480927467, -0.005289376713335514, -0.014246419072151184, 0.0027045616880059242, 0.009976599365472794, -0.008621752262115479, 0.0155875813215971, 0.032488953322172165, 0.0005965944728814065, -0.016805574297904968, 0.0388936847448349, -0.017421413213014603, 0.016942428424954414, 0.0174898412078619, 0.029012881219387054, -0.003241710364818573, -0.026289502158761024, -0.04335509613156319, 0.008272776380181313, 0.020090050995349884, -0.011372501961886883, 0.002658373676240444, 0.004536684136837721, 0.01421904843300581, -0.00836173165589571, 0.029423439875245094, 0.01286420226097107, 0.030573006719350815, 0.01205676794052124, -0.02999822422862053, 0.012925785966217518, 0.033255331218242645, -0.03733355551958084, -0.035992395132780075, -0.02994348295032978, 0.020377444103360176, -0.019542638212442398, -0.014383272267878056, -0.008868088014423847, 0.04116544499993324, -0.02683691494166851, 0.0037805698812007904, -0.0011427243007346988, 0.006767391227185726, -0.008484899066388607, 0.036786142736673355, 0.008710706606507301, 0.0041432310827076435, -0.015464412979781628, 0.02496202662587166, 0.019200505688786507, -0.04204130545258522, 0.03268054872751236, -0.00969605054706335, 0.027890684083104134, 0.0002878194209188223, 0.003722407389432192, 0.01090035866945982, -0.01554652489721775, 0.016230791807174683, -0.0070616258308291435, 0.030874084681272507, 0.01206361036747694, -0.015231762081384659, 0.020705891773104668, -0.008710706606507301, -0.005672565661370754, -0.015642322599887848, 0.012741033919155598, -0.003496599616482854, -0.007916958071291447, -0.011748848482966423, -0.007219006773084402, -0.004030327312648296, -0.008710706606507301, 0.006760548800230026, 0.007342174649238586, -0.003965321928262711, -0.03259843587875366, 0.015395985916256905, 0.002215311396867037, -0.023607179522514343, 0.001281288219615817, 0.011276704259216785, -0.02292291261255741, 0.014438013546168804, 0.00017128034960478544, 0.012569967657327652, 0.004444308113306761, -0.030162448063492775, -0.00912810955196619, -0.003417908912524581, 0.0009323125123046339, 0.008662808686494827, 0.011187749914824963, 0.025892628356814384, 0.01831096038222313, 0.0007608183077536523, -0.03150361031293869, -0.003000506665557623, 0.00837541650980711, -0.03818204626441002, 0.013712692074477673, -0.0023555858060717583, -0.031038308516144753, 0.001861203694716096, 0.032461583614349365, -0.03467860445380211, -0.008279619738459587, 0.01669609174132347, 0.004355353303253651, 0.021595437079668045, 0.04699539393186569, -0.01791408471763134, -0.013274761848151684, 0.027753831818699837, 0.026303187012672424, 0.007958014495670795, 0.01676451787352562, 0.011050896719098091, 0.01597077026963234, 0.03610187768936157, 0.008621752262115479, 0.01597077026963234, 0.004119281657040119, -0.05558977648615837, 0.02608422189950943, -0.012303103692829609, 0.01599813997745514, 0.011516197584569454, 0.012193621136248112, -0.03300899639725685, 0.0036642446648329496, -0.0032434212043881416, -0.023210305720567703, -0.03935898467898369, 0.025153620168566704, 0.008847559802234173, 0.013363716192543507, 0.028246503323316574, 0.002612185664474964, 0.027466440573334694, 0.021335415542125702, 0.010202406905591488, 0.005371488630771637, 0.01634027436375618, 0.0022033366840332747, -0.004540105350315571, 0.019241562113165855, -0.005388595163822174, 0.013480041176080704, -0.016983482986688614, -0.014465384185314178, -0.008478056639432907, 0.012973684817552567, -0.01668240688741207, 7.232905772980303e-05, -0.012515226379036903, -0.003464096924290061, 0.011783061549067497, -0.0349249392747879, -0.006781076546758413, -0.010831931605935097, -0.00934023130685091, 0.034760717302560806, 0.034076448529958725, -0.0056007178500294685, -0.012227834202349186, -0.017777232453227043, -0.005966800265014172, -0.011461456306278706, -0.030135076493024826, -0.006189186591655016, 0.03670402988791466, 0.002564287045970559, -0.007656936999410391, 0.018215162679553032, -0.02999822422862053, 0.005012249108403921, -0.025974739342927933, -0.00780063308775425, -0.020404813811182976, 0.011133008636534214, 0.02561892196536064, -0.01441064290702343, -0.01716139353811741, -0.015464412979781628, -0.016969798132777214, -0.009860274381935596, 0.015259132720530033, -0.0026720589958131313, 0.007307961583137512, -0.011085109785199165, 0.01536861527711153, -0.030627747997641563, -0.01535493042320013, -0.01985740102827549, 0.02063746377825737, -0.025372585281729698, 0.020719576627016068, 0.034788087010383606, -0.007383230607956648, -0.008669651113450527, 0.004642745014280081, -0.010414529591798782, 0.004451150540262461, -0.007561139762401581, 0.02797279693186283, 0.0029560294933617115, -0.020842744037508965, -0.02494833990931511, -0.0011487116571515799, -0.000913495197892189, -0.011386186815798283, -0.00932654645293951, -0.005617824383080006, 0.030928825959563255, -0.00780063308775425, 0.006657908670604229, -0.0349523089826107, -0.01796882599592209, 0.007814318872988224, 0.011351973749697208, -0.010756662115454674, -0.010571910999715328, 0.013562153093516827, -0.012597338296473026, -0.0019279195694252849, -0.03150361031293869, -0.013596367090940475, -0.010551382787525654, -0.02690534107387066, 0.0253589004278183, -0.017038224264979362, -0.03804519400000572, 0.04956823214888573, 0.012884729541838169, -0.015820231288671494, -0.030135076493024826, -0.006661329884082079, 0.03982428461313248, -0.008519112132489681, 0.007027412299066782, 0.016408700495958328, 0.039140019565820694, 0.028246503323316574, -0.014848573133349419, 0.0032588171306997538, 0.02767171896994114, -0.005094361025840044, 0.014342216774821281, -0.026617949828505516, -0.010975627228617668, 0.009264962747693062, 0.0023196619004011154, -0.018625721335411072, 0.008341203443706036, -0.01287104468792677, -0.014355901628732681, -0.008279619738459587, 0.01747615449130535, -0.015409671701490879, -0.006846081931143999, -0.008772291243076324, 0.0006838383851572871, 0.02407247945666313, 0.024578837677836418, 0.0013377401046454906, 0.0066168527118861675, -0.0036026607267558575, -0.017216134816408157, 0.006113917101174593, -0.021089080721139908, 0.02641266956925392, -0.011762533336877823, 0.01635395921766758, -0.020391128957271576, -0.005114888772368431, -0.021732289344072342, -0.0030706438701599836, 0.00799906998872757, -0.018625721335411072, 0.0019963462837040424, -0.005631509702652693, -0.015738120302557945, 0.02492097020149231, -0.0076295663602650166, 0.012713663280010223, 0.00016144402616191655, -0.009121266193687916, -0.016052881255745888, -0.010838774032890797, -0.04401199147105217, 0.0349523089826107, -0.023839829489588737, -0.022690262645483017, 0.010448742657899857, 0.0030415626242756844, 0.01280946098268032, -0.005275691393762827, 0.02069220505654812, 0.0038592605851590633, -0.030819343402981758, -0.028958139941096306, -0.01282998826354742, 0.023196619004011154, -0.018940484151244164, 0.011044054292142391, 0.008334361016750336, 0.021732289344072342, -0.0194331556558609, -0.029751887544989586, 0.026344243437051773, 0.017681434750556946, -0.018228847533464432, -0.013534782454371452, -0.039167389273643494, -0.003920844756066799, 0.007130052428692579, -0.00015085928316693753, -0.017831973731517792, -0.018516238778829575, 0.011468298733234406, -0.007232692092657089, -0.036430325359106064, 0.013596367090940475, 0.001637106528505683, 0.017790917307138443, -0.028985509648919106, -0.01790039986371994, -0.05378331243991852, -0.027726460248231888, -0.0024719112552702427, 0.032078392803668976, 0.008895458653569221, -0.027411699295043945, 0.005686250980943441, 0.004933558404445648, -0.02414090745151043, 0.021308045834302902, -0.021239617839455605, -0.028109649196267128, -0.01053769700229168, 0.019980568438768387, 0.013117380440235138, 0.016025511547923088, -0.021636493504047394, -0.013336345553398132, 0.013664793223142624, -0.004057697951793671, -0.025919998064637184, 0.007520083803683519, 0.027918055653572083, -0.006740020588040352, -0.01714770682156086, 0.022375499829649925, -0.02798648178577423, -0.009258119389414787, -0.012166250497102737, -0.014314846135675907, 0.01536861527711153, -0.0067708129063248634, -0.005207264795899391, -0.013192649930715561, 0.01785934343934059, 0.004848025273531675, 0.017010854557156563, -0.0019518689950928092, 0.008005913347005844, 0.022799745202064514, 0.009087053127586842, 0.0010751530062407255, -0.0107292914763093, -0.0014335373416543007, 0.003352903760969639, -0.0195015836507082, -0.0005846198182553053, -0.007390073500573635, -0.015094908885657787, 0.007403758820146322, 0.01868046261370182, 0.02055535279214382, -0.005402280483394861, -0.011372501961886883, -0.008231720887124538, 0.024017738178372383, -0.0017859344370663166, 0.0016114466125145555, 0.006349989213049412, 0.005987328011542559, 0.037169333547353745, -0.004334825556725264, 0.02222496084868908, -0.00836857408285141, -0.013870073482394218, 0.007184793706983328, 0.02764434926211834, 0.031257275491952896, 0.02252603881061077, -0.011461456306278706, -0.008423315361142159, -0.01911839284002781, 0.019706862047314644, 0.03002559393644333, 0.006394466385245323, 0.003274213057011366, 0.03002559393644333, 0.032516323029994965, 0.009648151695728302, -0.010825089178979397, -0.005788890644907951, -0.01458855252712965, -0.012802617624402046, 0.001750010414980352, -0.018981540575623512, -0.007499556057155132, -0.011625680141150951, 0.0047111716121435165, 0.024715689942240715, -0.001106800395064056, 0.019734233617782593, -0.030080335214734077, 0.0023196619004011154, 0.00875860545784235, -0.01458855252712965, 0.03684088587760925, -0.04116544499993324, -0.018598351627588272, -0.030436154454946518, -0.018858373165130615, 0.002928658854216337, -0.0350070521235466, 0.027493810281157494, -0.0028944453224539757, 0.007848531939089298, -0.012905257754027843, -0.035581834614276886, -0.008272776380181313, 0.005542554892599583, -0.005918901413679123, -0.041794970631599426, 0.019706862047314644, -0.0350070521235466, 0.04086437076330185, -0.00026729144155979156, 0.0097576342523098, 0.002533495193347335, 0.0029731360264122486, 0.01305579673498869, -0.003033009357750416, -0.0012316788779571652, 0.01032557524740696, -0.0175172109156847, -0.013240547850728035, -0.0034401477314531803, -0.013418457470834255, -0.016983482986688614, 0.015053853392601013, 0.026590578258037567, 0.03112042136490345, 0.018023567274212837, 0.014711719937622547, 0.03582816943526268, -0.009873959235846996, -0.023169249296188354, 0.0033477717079222202, 0.0253452155739069, -0.01746246963739395, 0.0544675774872303, -0.02572840452194214, -0.009600252844393253, -0.007964856922626495, -0.017749860882759094, 0.023251360282301903, -0.023538753390312195, -0.012138879857957363, -0.004085068590939045, -0.010825089178979397, -0.010359788313508034, 0.0033939597196877003, -0.010366630740463734, 0.033638518303632736, 0.0045127347111701965, 0.0037566206883639097, -0.023538753390312195, 0.005200421903282404, -0.01636764407157898, 0.0056075602769851685, 0.002068194095045328, -0.008224878460168839, -0.02490728534758091, 0.037552520632743835, 0.036457695066928864, 0.011023526079952717, 0.011570938862860203, -0.0026549522299319506, -0.030545637011528015, 0.017339302226901054, -0.02065115049481392, 0.020459555089473724, -0.0001349287194898352, -0.0023692711256444454, 0.00602838397026062, 0.014479069970548153, 0.007472185418009758, -0.03311847895383835, -0.013144751079380512, -0.0018372543854638934, 0.02685059979557991, 0.000633801450021565, -0.030107706785202026, -0.026549523696303368, 0.016271846368908882, 0.02685059979557991, -0.0349523089826107, -0.004225343000143766, -0.004232185427099466, 0.004088489804416895, 0.012364687398076057, 0.03333744406700134, -0.015286503359675407, -0.011940442956984043, -0.0009571171249262989, -0.007739049382507801, 0.02418196201324463, -0.004666694439947605, 0.030901454389095306, 0.018625721335411072, -0.003228025045245886, -0.021485954523086548, -0.017010854557156563, 0.0072395349852740765, 0.01186517346650362, -0.012754719704389572, 0.01287104468792677, 0.02956029400229454, 0.01306948158890009, -0.014917000196874142, 0.02531784400343895, 0.016545552760362625, -0.0252357330173254, -0.00931970402598381, 0.031010938808321953, -0.01363058015704155, 0.0070684682577848434, -0.00039067314355634153, -0.002340189879760146, -0.012077296152710915, 0.001418996718712151, -0.026686375960707664, 0.02338821440935135, -0.004871974233537912, 0.0005055015790276229, -0.030518265441060066, 0.025577865540981293, -0.0070684682577848434, 0.007041097618639469, -0.062186099588871, -0.007526926696300507, -0.0024975710548460484, -0.004160337615758181, 0.0003387116885278374, 0.020788002759218216, -0.011830960400402546, 0.01008608192205429, -0.00011204856855329126, 0.023265046998858452, -0.022868171334266663, 0.024236703291535378, 0.010448742657899857, -0.017216134816408157, -0.008033283986151218, -0.022060737013816833, 0.011228806339204311, 0.020432185381650925, -0.0010999577352777123, -0.03142149746417999, 0.0013009608956053853, 0.014136936515569687, 0.007136894855648279, 0.005669144447892904, 0.013514254242181778, -0.019337359815835953, 0.007499556057155132, -0.005306483246386051, 0.018858373165130615, 0.007342174649238586, -0.024359872564673424, 0.007444814778864384, -0.004399830941110849, 0.005539133679121733, 0.01872151903808117, 0.0006132734706625342, -0.004779598210006952, 0.022060737013816833, -0.009668679907917976, -0.01110563799738884, -0.0038558391388505697, 0.022703947499394417, 0.0022204434499144554, 0.0042424495331943035, 0.00017010426381602883, -0.011406715027987957, 0.0017671170644462109, -0.014684349298477173, 0.0018372543854638934, -0.003701879410073161, -0.0310930497944355, -0.02757592312991619, 0.004844603594392538, -0.03741566836833954, -0.008067497052252293, -0.01009976677596569, 0.01321317721158266, 0.0016995458863675594, 0.018885742872953415, -0.005908637307584286, 0.0097507918253541, 0.027179047465324402, 0.006839239504188299, 0.018009882420301437, -0.011146694421768188, 0.00612075999379158, 0.012522068805992603, 0.01980265974998474, 0.008204350247979164, -0.0010828510858118534, 0.005912058986723423, -0.0035205488093197346, 0.003674508770927787, 0.004533262457698584, 0.01243311446160078, -0.02808227948844433, -0.0074311294592916965, -0.00272680027410388, -0.0002146884799003601, -0.006760548800230026, -0.007444814778864384, -0.015642322599887848, -0.00555281899869442, -0.022047052159905434, 0.009832903742790222, -0.03240684047341347, -0.012782090343534946, 0.007006884552538395, -0.00021885822934564203, -0.015053853392601013, -0.0054091233760118484, -0.008218035101890564, -0.020404813811182976, 0.014246419072151184, -0.012754719704389572, -0.004841182380914688, 0.008074339479207993, -0.02178703062236309, -0.0036847726441919804, 0.018201477825641632, 0.01632658764719963, 0.01382901705801487, 0.0045195771381258965, -0.03656717762351036, 0.031257275491952896, 0.005693093407899141, -0.024975711479783058, 0.016463441774249077, -0.005809418857097626, 0.010825089178979397, 0.015190706588327885, -0.007862216793000698, -0.001394192106090486, -0.00535780331119895, 0.02222496084868908, -0.018926799297332764, -0.0012239809148013592, 0.01535493042320013, 0.004488785285502672, 0.007656936999410391, 0.024209333583712578, 0.0039482153952121735, 0.01629921793937683, 0.008881773799657822, -0.006018119864165783, 0.009880801662802696, 0.0023316366132348776, 0.010188722051680088, 0.018064623698592186, -0.004454572219401598, -0.00914179440587759, -0.011673578992486, -0.010435057803988457, -0.024825172498822212, 0.008881773799657822, 0.021978626027703285, -0.009743948467075825, 0.0065142130479216576, 0.012843674048781395, -0.000129262130940333, -0.004618796054273844, 0.03139412775635719, -0.0032588171306997538, -0.007684307638555765, -0.017024539411067963, -0.018748890608549118, 0.027945425361394882, -0.02689165621995926, -0.010435057803988457, -0.007253220304846764, 0.006633959244936705, 0.01090035866945982, 0.008813346736133099, 0.008334361016750336, 0.02096591144800186, -0.0505809485912323, -0.0066202739253640175, -0.001108511001802981, 0.025796830654144287, -0.007328489329665899, -0.02099328301846981, -0.010893515311181545, -0.003914001863449812, -0.020473239943385124, -0.03221524506807327, -0.016203420236706734, -0.004844603594392538, -0.013924814760684967, -0.0010272543877363205, -0.024756746366620064, 0.00565203744918108, -0.041411783546209335, 0.011146694421768188, 0.007499556057155132, -0.017818288877606392, -0.008888616226613522, 0.02679585851728916, -0.019939513877034187, 0.011167221702635288, -0.010927729308605194, 0.010619808919727802, -0.00526200607419014, -0.02841072715818882, -0.019008910283446312, 0.010421372018754482, 0.011002997867763042, -0.010428214445710182, -0.01324739120900631, -0.0050601474940776825, 0.011030368506908417, 0.02575577422976494, -0.004889081232249737, -0.016244476661086082, -0.03311847895383835, -0.0022084687370806932, -7.397290119115496e-06, 0.004577740095555782, -0.005238056648522615, 0.024250390008091927, -0.006627116817981005, -0.012138879857957363, -0.015218077227473259, -0.019980568438768387, 0.017311930656433105, 0.008300147019326687, -0.01516333594918251, 0.0024941498413681984, 0.03552709519863129, -0.010784032754600048, 0.019282616674900055, -0.015259132720530033, 0.014670664444565773, -0.023114508017897606, -0.018475184217095375, -0.025892628356814384, 0.013774275779724121, -0.008806504309177399, 0.012008869089186192, -0.0020733261480927467, 0.01679188944399357, -0.00989448744803667, -0.009306018240749836, 0.020788002759218216, -0.0017996197566390038, -0.020486926659941673, 0.012378373183310032, -0.01947421208024025, 0.0009280358208343387, 0.02682323008775711, -0.03684088587760925, 0.01129723247140646, -0.009983441792428493, 0.026385299861431122, 0.00507383281365037, -0.01599813997745514, 0.01007923949509859, 0.006349989213049412, -0.002362428465858102, 0.003527391469106078, 0.009819217957556248, -0.024004053324460983, -0.011653050780296326, 0.00035645984462462366, 0.01706559583544731, 0.0214585829526186, -0.02022690512239933, 0.007287433370947838, 0.029779259115457535, -0.006972671020776033, 0.01833833009004593, 0.002184519311413169, 0.005043040961027145, 4.110942245461047e-05, 0.022402871400117874, -0.010428214445710182, 0.012159408070147038, 0.006979513913393021, 0.03199627995491028, -0.0012077295687049627, -0.001074297702871263, -0.013657950796186924, 0.012214149348437786, 0.029450811445713043, -0.011687264777719975, 0.0050601474940776825, -0.015806546434760094, -0.002836282830685377, 0.0350344218313694, -0.01673714816570282, -0.020897485315799713, -0.011071424931287766, 0.004950664937496185, 0.011434085667133331, -0.027398012578487396, -0.009052840061485767, -0.029067622497677803, 0.006476578302681446, 0.018502553924918175, -0.022307073697447777, -0.0031510451808571815, 0.0014737379970028996, 0.006993199232965708, 0.0061447094194591045, 0.0014472226612269878, 0.02574208937585354, -0.005693093407899141, -0.016148678958415985, 0.0014087327290326357, -0.02299133874475956, 0.003253685077652335, 0.014834888279438019, -0.0041466522961854935, 0.023155562579631805, 0.0019433156121522188, -0.015738120302557945, 0.00022495246957987547, -0.002565997652709484, -0.001353991450741887, 0.0018526503117755055, -0.004427201580256224, 0.003462386317551136, -0.008122238330543041, -0.0019022596534341574, 0.00129069690592587, -0.0069863563403487206, -0.017284560948610306, 0.0043211402371525764, 0.002468489808961749, 0.0005602428573183715, 0.016983482986688614, -0.008888616226613522, -0.0011461456306278706, -0.0023059765808284283, -0.013466356322169304, -0.00497119314968586, 0.0030261666979640722, 0.02136278711259365, 0.005439915228635073, 0.05030724033713341, 0.0034213303588330746, 0.024647263810038567, 0.021184876561164856, 0.008074339479207993, -0.0026275815907865763, 0.018078308552503586, -0.0041432310827076435, 0.020322702825069427, -0.001403600792400539, 0.01441064290702343, -0.022402871400117874, 0.007554297335445881, 0.013657950796186924, -0.024660948663949966, 0.005805997643619776, -0.0025557337794452906, -0.0002634424308780581, -0.013233705423772335, 0.024318816140294075, -0.0004597412480507046, 0.000938299810513854, -0.0015028193593025208, 0.008293304592370987, 0.00047214358346536756, 0.0026207389310002327, 0.006161815952509642, 0.007472185418009758, 0.01985740102827549, 0.02069220505654812, -0.018406756222248077, -0.016887687146663666, 0.010818246752023697, 0.009689207188785076, 0.011194592341780663, 0.01946052722632885, 0.027849629521369934, 0.006199450697749853, -0.018365701660513878, 0.017708806321024895, -0.013377401046454906, -0.009791847318410873, 0.03421330451965332, 0.000961393816396594, -0.02218390628695488, -0.009196535684168339, 0.020445870235562325, -0.0031510451808571815, -0.02374403178691864, -0.009306018240749836, -0.011386186815798283, -0.0009083632030524313, -0.010359788313508034, 0.010441900230944157, -0.0036197674926370382, -0.028985509648919106, -0.025208361446857452, -0.0004973759059794247, 0.015204391442239285, -0.00301419198513031, -0.001761985127814114, 0.0017825131071731448, -0.012220991775393486, -0.013794803991913795, -0.0007937486516311765, -0.019994255155324936, -0.01713402196764946, 0.00032887537963688374, -0.01517702080309391, -0.008471214212477207, 0.003749778028577566, 0.030436154454946518, 0.018105680122971535, -0.03648506477475166, -0.002232417929917574, 0.008868088014423847, 0.008327517658472061, 0.020527981221675873, -0.003527391469106078, 0.0028636534698307514, -0.006917929742485285, -0.012104666791856289, -0.011885701678693295, 0.009039154276251793, -0.0011307497043162584, -0.016162363812327385, -0.005963378585875034, -0.013938499614596367, 0.009915015660226345, -0.03194154053926468, 0.008724392391741276, 0.0107087641954422, 0.016230791807174683, 0.015409671701490879, 0.008443843573331833, 0.0037908339872956276, -0.0060728611424565315, -0.005443336442112923, 0.020445870235562325, -0.012173092924058437, -0.015122279524803162, 0.01281630340963602, -0.0053372750990092754, 0.009059682488441467, 0.005665722768753767, -0.0059702214784920216, 0.01906365156173706, -0.011085109785199165, -0.016997169703245163, 0.002087011467665434, -0.0006722913822159171, -0.0006410717614926398, -0.004618796054273844, 0.00033635954605415463, -0.01870783418416977, -0.016969798132777214, 0.0031681519467383623, 0.0019022596534341574, -0.00818382203578949, 0.002275184728205204, -0.012658922001719475, -0.006610010284930468, -0.02069220505654812, 0.007971699349582195, -0.010831931605935097, -0.0021058288402855396, -0.01324739120900631, -0.004215078894048929, -0.00951814092695713, -0.020432185381650925, -0.0008895458886399865, 0.022758688777685165, -0.01147514209151268, 0.00258139381185174, -0.002323083346709609, -0.003320401068776846, 0.008197507821023464, 0.008649122901260853, 0.00969605054706335, -0.008129080757498741, 0.012556281872093678, 0.02494833990931511, 0.016613980755209923, 0.008614909835159779, 0.00951129850000143, 0.0038045193068683147, -0.0057067787274718285, -0.02022690512239933, -0.0045161559246480465, 0.007650094572454691, 0.018858373165130615, -0.0252631027251482, -0.01242627203464508, 0.010435057803988457, -0.020815374329686165, -0.019706862047314644, -0.006332882214337587, 0.011632523499429226, -0.00592574430629611, -0.0126315513625741, 0.009162322618067265, 0.006719492841511965, -0.015874972566962242, -0.021869143471121788, 0.004375881515443325, 0.007869060151278973, 0.01628553308546543, 0.024838857352733612, -0.0052346354350447655, -0.007663779892027378, -0.001242798287421465, -0.0004999418742954731, -0.023484012112021446, -0.004984878469258547, -0.020870115607976913, 0.01027767639607191, 0.000605147797614336, 0.01870783418416977, -0.0021229353733360767, 0.004906187765300274, 0.007875902578234673, 0.020774317905306816, 0.015779174864292145, -0.006914508529007435, -0.018885742872953415, 0.002037402242422104, 0.024318816140294075, 0.004731699824333191, -0.0007920379866845906, 0.008587539196014404, 0.013842702843248844, 0.00933338887989521, -0.007109524216502905, -0.005768362898379564, -0.01755826734006405, -0.014670664444565773, 0.0008480622782371938, 0.027794888243079185, 0.006093389354646206, -2.596736158011481e-05, -0.013678479008376598, 0.0036334528122097254, -0.007841689512133598, 0.008998098783195019, -0.015190706588327885, -0.02446935512125492, -0.012460485100746155, -0.006001013331115246, -0.00989448744803667, 0.005214107222855091, -0.028301244601607323, -0.021157506853342056, 0.010469270870089531, 0.005905216094106436, -0.029806628823280334, 0.03221524506807327, 0.008922829292714596, -0.007321646902710199, 0.005289376713335514, -0.015341244637966156, 0.00032181889400817454, -0.002360717859119177, 0.017038224264979362, 0.00857385341078043, -0.01301474031060934, 0.007273748051375151, -0.0010854169959202409, 0.008395944721996784, 0.002788384212180972, 0.00037720167892985046, 0.04242449626326561, -0.02301871031522751, -0.020418498665094376, 0.008608067408204079, 0.0039721643552184105, 0.026960082352161407, 0.02485254406929016, 0.004707750398665667, 0.02177334576845169, 0.013500569388270378, -0.0022375499829649925, -0.0007561140228062868, 0.012371530756354332, -0.004629059694707394, 0.004594846628606319, -0.0007441393681801856, -0.004930137190967798, -0.01833833009004593, -0.010599281638860703, -2.198472066083923e-05, 0.0023299260064959526, -0.007458500098437071, -0.009018626995384693, 0.0009682364761829376, -0.0065142130479216576, 0.007964856922626495, 0.0067708129063248634, 0.0002077388926409185, -0.0038592605851590633, -0.005480971187353134, 0.00836857408285141, 0.0005735004669986665, -0.0016165785491466522, 0.0009742238325998187, 0.01034610252827406, -0.0017534317448735237, -0.02689165621995926, 0.03155834972858429, -0.00554597657173872, 0.007691150531172752, 0.006565532647073269, -0.0019330516224727035, 0.02493465505540371, 0.027699090540409088, -0.0016969798598438501, 0.002487307181581855, -0.006466314196586609, 0.024784116074442863, 0.007041097618639469, 0.026782173663377762, -0.015341244637966156, 0.0029406333342194557, -0.011878859251737595, -0.01676451787352562, 0.005539133679121733, -0.002632713643833995, 0.012850516475737095, 0.0058778454549610615, 0.021527010947465897, 0.005446757655590773, -0.00044477294431999326, -0.0031185424886643887, 0.025413641706109047, -0.002661794889718294, -0.01677820459008217, 0.0072600627318024635, -0.002646398963406682, 0.0047830198891460896, 0.03459649160504341, 0.027699090540409088, 0.004174022935330868, -0.011707792058587074, -0.03139412775635719, -0.013117380440235138, 0.0031989437993615866, 0.005617824383080006, 0.004618796054273844, -0.004998563788831234, -0.024359872564673424, 0.004054276272654533, 0.0035889754071831703, 0.0072600627318024635, 0.01863940805196762, 0.008300147019326687, -0.01130407489836216, 0.011406715027987957, 0.000452898588264361, 0.029697146266698837, -0.005515184253454208, 0.012583652511239052, -0.006993199232965708, 0.02255340851843357, -0.007109524216502905, 0.018228847533464432, 0.0029902427922934294, 0.017380358651280403, -0.010270833969116211, -0.02025427483022213, -0.010010812431573868, -0.034760717302560806, -0.0043211402371525764, 0.00622339965775609, -0.006339725106954575, -0.01535493042320013, 0.010893515311181545, 0.0175035260617733, -0.006432101130485535, -0.01032557524740696, -0.028191762045025826, 0.021581752225756645, -0.026946397498250008, 0.009080210700631142, -0.010195564478635788, -0.0038250472862273455, -0.003578711533918977, 0.02103433944284916, 0.003337507601827383, -0.009299175813794136, 0.0015079512959346175, 0.02103433944284916, 0.009080210700631142, -0.014917000196874142, 0.012036239728331566, -0.009962913580238819, 0.001365110743790865, 0.00876544788479805, -0.007526926696300507, 0.01441064290702343, -0.026987453922629356, 0.02604316547513008, -0.004050855059176683, 0.02256709523499012, -0.010243463329970837, -0.017722491174936295, 0.004098753910511732, 0.012515226379036903, 0.0014617634005844593, 0.00912810955196619, -0.01795514114201069, -0.01205676794052124, 0.0066202739253640175, 0.0011025236453860998, -0.01599813997745514, -0.010845617391169071, -0.003907159436494112, 0.00650052772834897, -0.0056999363005161285, 0.0008685902575962245, -0.020007940009236336, -0.027042195200920105, 0.0272474754601717, -0.01985740102827549, -0.002338479273021221, -0.017325617372989655, 0.025468382984399796, -0.0015541393077000976, 0.032133135944604874, -0.007643251679837704, 0.007574825081974268, 0.003725828602910042, -0.0020801688078790903, -0.007396915927529335, -0.009155480191111565, 0.003982428461313248, 0.00970289297401905, 0.02378508821129799, -0.0006355121149681509, 0.02293659746646881, 0.0013078035553917289, -0.009962913580238819, 0.00797854270786047, -0.0012393769575282931, 0.0002454804489389062, 0.005758098792284727, 0.022088108584284782, -0.015135965310037136, 0.02069220505654812, 8.419679943472147e-06, 0.02530415914952755, 0.005480971187353134, -0.008259091526269913, -0.013192649930715561, -0.022375499829649925, 0.0019039702601730824, -0.006852924823760986, 0.0064252582378685474, 0.014369587413966656, -0.00988764502108097, -0.0032930304296314716, -0.0070616258308291435, 0.003402512986212969, -0.004916451871395111, -0.013302132487297058, -0.008135923184454441, 0.006278140936046839, -0.0027319323271512985, 0.01835201494395733, -0.02102065272629261, -0.01706559583544731, 0.0033443502616137266, -0.02297765389084816, -0.009210221469402313, -0.014930685050785542, 0.002314529847353697, -0.021554380655288696, 0.01382901705801487, 0.018379386514425278, -0.01906365156173706, 0.015738120302557945, -0.015669692307710648, -0.003096303902566433, -0.019679492339491844, 0.011570938862860203, 0.020500611513853073, 0.0075337691232562065, 0.008683335967361927, 0.01553284004330635, 0.015792861580848694, -0.003736092709004879, -0.0010229777544736862, -0.01225520484149456, 0.012152565643191338, 0.004273241385817528, -0.012836831621825695, -0.02262183651328087, -0.01712033711373806, -0.006295247934758663, -0.0022033366840332747, 0.026330558583140373, -0.02639898471534252, -0.010742977261543274, -0.0008202639291994274, -0.000503790914081037, 0.027110621333122253, 0.0013856387231498957, 0.027028508484363556, 0.02062377892434597, 0.027534866705536842, -0.011892544105648994, -0.0035205488093197346, 0.003092882689088583, 0.017311930656433105, 0.013172121718525887, 0.000737296708393842, 0.02175966091454029, 0.0020237169228494167, 0.01110563799738884, 0.015259132720530033, -1.1613812603172846e-05, -0.0034247515723109245, 0.015519154258072376, 0.01014766562730074, 0.002706272294744849, 0.009073368273675442, 0.008245405741035938, 0.014232734218239784, -0.0015216366155073047, 0.00934023130685091, 0.04384776949882507, 0.02059640921652317, 0.0053543820977211, -0.005696515087038279, 0.003934530075639486, 0.003965321928262711, -0.011803589761257172, 0.02529047429561615, 0.0012419428676366806, 0.01907733827829361, 0.002264920622110367, -0.002051087561994791, -0.002499281894415617, -0.011139851063489914, -0.01401376910507679, 0.016956113278865814, 0.005898373667150736, 0.015053853392601013, -0.012036239728331566, 0.020733261480927467, 0.0030347199644893408, -0.016997169703245163, 0.0064184158109128475, 0.019186820834875107, -0.0008767158724367619, 0.0390305370092392, -0.0022580779623240232, 0.007602195721119642, 0.02649478241801262, 0.00818382203578949, 0.0032485530246049166, 0.02997085265815258, -0.013131065294146538, -0.029368698596954346, -0.018064623698592186, 0.0009400104754604399, -0.007910115644335747, -0.0014506441075354815, 0.007082153577357531, -0.01947421208024025, -0.007670622318983078, -0.0023915099445730448, 4.610777250491083e-05, -0.0017688277876004577, 0.011180907487869263, 0.0012419428676366806, -0.022498667240142822, -0.014698035083711147, -0.006240506656467915, -0.0033118478022515774, 0.04483311250805855, -0.0077801053412258625, -0.0009536957950331271, 0.0019005489302799106, -0.010879830457270145, -0.0002013238990912214, -0.015683379024267197, -0.003910580649971962, 0.004546947777271271, -0.018023567274212837, -0.015149650163948536, 0.00779379066079855, -0.014684349298477173, -0.002359007252380252, 0.012556281872093678, 0.016860315576195717, 0.010263990610837936, -0.01402745395898819, -0.008601224049925804, 0.005686250980943441, 0.02835598587989807, 0.0027131149545311928, -0.016928741708397865, -0.004659852012991905, -0.006993199232965708, 0.023921942338347435, -0.011769376695156097, -0.0022221540566533804, 0.025906313210725784, 0.01441064290702343, -0.011310918256640434, 0.008484899066388607, -0.009107581339776516, 0.006589482072740793, -0.023538753390312195, 0.02641266956925392, -0.0034726501908153296, -0.00602154154330492, -0.0060523333959281445, -0.006671593990176916, 0.015560210682451725, -0.012467327527701855, 0.0063123544678092, -0.027781201526522636, -0.019939513877034187, 0.007301118690520525, 0.0009451424703001976, 0.023210305720567703, 0.023442955687642097, 0.021294359117746353, 0.012118351645767689, 0.008067497052252293, 0.012494698166847229, -0.018529925495386124, 0.022402871400117874, -0.008457528427243233, -0.0032913198228925467, -0.019953198730945587, -0.005758098792284727, 0.021882828325033188, -0.020473239943385124, -0.024578837677836418, -0.004105596337467432, 0.01829727366566658, 0.002362428465858102, 0.009832903742790222, -0.023155562579631805, -0.0026754802092909813, 0.014574866741895676, -0.021622806787490845, -0.006165237165987492, -0.019378414377570152, -0.01014082320034504, -0.006360252853482962, 0.007088996469974518, -0.006466314196586609, 0.005658880341798067, -0.007485870737582445, 0.013685321435332298, -0.0024633577559143305, 0.026672691106796265, -0.0006149841356091201, -0.025153620168566704, -0.013343187980353832, 0.016874000430107117, 0.012344160117208958, 0.0002715681039262563, 0.011201435700058937, -0.006479999516159296, -0.004916451871395111, 0.011673578992486, 0.011085109785199165, -0.006781076546758413, -0.004618796054273844, -0.006011277437210083, -0.007383230607956648, -0.008806504309177399, 0.02295028418302536, -0.030928825959563255, -0.00325539568439126, 0.005949693266302347, -0.004854867700487375, -0.005299640819430351, -0.014123251661658287, -0.006644223351031542, 0.00592916551977396, 0.01554652489721775, -0.010633494704961777, 0.026248445734381676, 0.006657908670604229, -0.0010238330578431487, 0.00564861623570323, -0.012398901395499706, -0.004088489804416895, -0.010161351412534714, 0.01320633478462696, -0.012036239728331566, -0.025947369635105133, -0.0022734738886356354, -0.010024498216807842, 0.01129039004445076, -0.02182808704674244, -0.004653009120374918, -0.018776260316371918, 0.00555281899869442, -0.004919873084872961, 0.02029533125460148, 0.013781118206679821, 0.020746946334838867, -0.0010503483936190605, -0.003320401068776846, -0.01243311446160078, -0.008443843573331833, 0.011933600530028343, 0.015464412979781628, 0.02768540568649769, 0.019624751061201096, -0.002244392642751336, -0.00817697960883379, -0.006835817825049162, 0.004509313497692347, -0.03232472762465477, -0.007465342525392771, -0.0011478563537821174, -0.007773262448608875, -0.018776260316371918, -1.4407008166017476e-05, 0.0061481306329369545, 0.010736134834587574, -0.008608067408204079, -0.006192607805132866, 0.001315501518547535, -0.019186820834875107, -0.0060694399289786816, -0.02680954337120056, -0.017339302226901054, 0.0026994296349585056, 0.006753705907613039, -0.018995225429534912, -0.003722407389432192, -0.02570103295147419, -0.007376388181000948, -0.017640378326177597, -0.0017773810541257262, -0.013746905140578747, -0.0013018161989748478, -0.005251741968095303, -0.01244679931551218, 0.005997592117637396, 0.00028354275855235755, -0.007349017541855574, 0.018557295203208923, -0.013131065294146538, 0.020021624863147736, 0.01628553308546543, -0.01129723247140646, -0.018940484151244164, -0.020856428891420364, 0.017366671934723854, -0.008676493540406227, 0.0013616894138976932, 0.01243995688855648, -0.0027216682210564613, -0.029669776558876038, -0.007828003726899624, -0.003951636608690023, 0.021855458617210388, -0.0034247515723109245, -0.00622339965775609, 0.034760717302560806, 0.01287788711488247, 0.024825172498822212, 0.015683379024267197, 0.005535712465643883, -0.0003337935486342758, -0.004197972360998392, 0.0011632522800937295, 0.01244679931551218, 0.0022854486014693975, 0.002533495193347335, -0.01243995688855648, 0.006675015203654766, -0.01591602899134159, -0.013603209517896175, 0.009299175813794136, -0.009641308337450027, 0.00564861623570323, -0.0116804214194417, -0.003951636608690023, -0.00838225893676281, -0.021718604490160942, 0.0006842660368420184, -0.02059640921652317, 0.0007770696538500488, -0.0027541709132492542, -0.009867116808891296, -0.00989448744803667, 0.024346185848116875, 0.0077801053412258625, 0.03352903574705124, 0.008594381622970104, 0.007684307638555765, 0.024058794602751732, 0.0006256757769733667, -0.01148882694542408, 0.020856428891420364, -0.003157887840643525, -0.01754458248615265, 0.01668240688741207, -0.010072396136820316, -0.002500992501154542, -0.0008844138938002288, 0.007615881040692329, -0.015751805156469345, -0.010421372018754482, -0.0194331556558609, -0.02648109570145607, -0.03221524506807327, 0.021239617839455605, 0.00856701098382473, -0.010927729308605194, 0.021349100396037102, -0.0012094402918592095, -0.01628553308546543, -0.028328614309430122, 0.005080675706267357, -0.024633578956127167, -0.011803589761257172, 0.03218787536025047, 0.005792312324047089, -0.0009981731418520212, 0.014355901628732681, 0.025454698130488396, -0.010968784801661968, -0.02530415914952755, -0.006746863480657339, 0.015628637745976448, 0.008792818523943424, 0.017831973731517792, 0.0067160711623728275, 0.011611995287239552, -0.024250390008091927, -0.004653009120374918, -0.008614909835159779, 0.009812375530600548, -0.002600210951641202, -0.004177444148808718, 0.0233608428388834, -0.002855100203305483, 0.010886672884225845, 0.006353410426527262, -0.01420536357909441, -0.01833833009004593, 0.0042424495331943035, -0.006633959244936705, -0.015450727194547653, 0.015738120302557945, 0.0023658499121665955, 0.012494698166847229, 0.009737106040120125, 0.004854867700487375, 0.020363757386803627, 0.0013522808440029621, -0.01669609174132347, 0.0010229777544736862, -0.00148229137994349, 0.003934530075639486, -0.016901372000575066, 0.003299873089417815, -0.0061447094194591045, -0.008231720887124538, -0.026289502158761024, -0.0029936640057712793, 0.015012796968221664, 0.005621245596557856, 0.03002559393644333, -0.0075132413767278194, 0.0042219217866659164, 0.008046968840062618, 0.007732206489890814, -0.0008305279188789427, -0.00670238584280014, 0.01744878478348255, -0.015792861580848694, 0.0028328613843768835, 0.014314846135675907, -0.017599323764443398, 0.00554597657173872, -0.012467327527701855, 0.009470242075622082, -0.02019953355193138, -0.01743509992957115, 0.005025934427976608, 0.004115860443562269, 0.014301160350441933, 0.03610187768936157, -0.003736092709004879, 0.0350344218313694, -0.007424286566674709, -0.005316747352480888, 0.00819066446274519, -0.025194676592946053, 0.01421904843300581, 0.023484012112021446, 0.016463441774249077, -0.009401815943419933, 0.023128192871809006, -0.002211889950558543, 0.007869060151278973, 0.01029136124998331, -0.0038558391388505697, 0.011584624648094177, -0.013849545270204544, 0.021527010947465897, -0.0193921010941267, 0.0034589648712426424, 0.009791847318410873, 0.03040878288447857, 0.03339218348264694, 0.004683800972998142, 0.0026053430046886206, 0.009593410417437553, -0.008252249099314213, 0.03232472762465477, 0.003204075852409005, 0.01981634460389614, -0.0026378456968814135, -0.005819682963192463, 0.012357844971120358, -0.0069658285938203335, 0.03032667189836502, 0.006828975398093462, 0.009538669139146805, 0.006996620446443558, 0.035226017236709595, 0.00047214358346536756, 0.00011397306661820039, 0.016203420236706734, 0.01792777143418789, -0.0075132413767278194, 0.003140781307592988, 0.006651066243648529, -0.01052401214838028, 0.011598309502005577, 0.008676493540406227, -0.0252631027251482, -0.014917000196874142, 0.004307454917579889, -0.03629347309470177, -0.0004580305831041187, 0.007910115644335747, 0.02795911207795143, -0.005942850839346647, 0.00990132987499237, 0.003770306007936597, -0.00014508578169625252, 0.012912100180983543, 0.008286462165415287, 0.03114779107272625, -0.00330158369615674, -0.01870783418416977, -0.011673578992486, -0.01053085457533598, 0.031202532351017, 0.0069692498072981834, 0.007424286566674709, 0.012741033919155598, 0.0043211402371525764, -0.007862216793000698, 0.008491741493344307, 0.01460223738104105, 0.001587497303262353, 0.006726335268467665, -0.013664793223142624, -0.014095881022512913, -0.0012222703080624342, 0.007841689512133598, -0.027302216738462448, 0.00602838397026062, 0.007136894855648279, -0.004314297344535589, 0.0005940284463576972, 0.04584582522511482, 0.013350030407309532, -0.00564177380874753, -0.007875902578234673, -0.004334825556725264, 0.0155875813215971, 0.016874000430107117, 0.006391045171767473, 0.010236619971692562, -0.0042424495331943035, 0.003371720900759101, 0.0044169374741613865, -0.009422343224287033, 0.009306018240749836, 0.012549439445137978, 0.010202406905591488, 0.02029533125460148, -0.02997085265815258, -0.006743441801518202, 0.003920844756066799, -0.019597379490733147, -0.018037253990769386, 0.009415500797331333, -0.008895458653569221, 0.03465123474597931, -0.01670977659523487, 0.0037771486677229404, -0.007862216793000698, 0.01111248042434454, -0.017380358651280403, 0.009367601945996284, -0.012118351645767689, -0.010831931605935097, -0.004567475989460945, 0.026248445734381676, 0.00856701098382473, -0.020541667938232422, 0.000480696908198297, -0.013938499614596367, 0.014109565876424313, -0.0065142130479216576, 0.004235607106238604, 0.013425299897789955, 0.003640295471996069, 0.004594846628606319, 0.0015524285845458508, -0.003033009357750416, -0.017640378326177597, 0.014260104857385159, -0.00036586850183084607, -0.018461497500538826, -0.015765490010380745, -0.005285955499857664, -0.01090035866945982, -0.015382301062345505, -0.007684307638555765, 0.013938499614596367, 0.029012881219387054, -0.0038045193068683147, 0.014383272267878056, 0.02251235395669937, 0.022813430055975914, -0.003961900714784861, -0.002586525632068515, 0.009648151695728302, -0.005754677578806877, -0.009182850830256939, -0.008334361016750336, -0.01868046261370182, 0.0006137011223472655, -2.15436884900555e-05, 0.0039037379901856184, -0.046092160046100616, -0.002422301797196269, -0.013699006289243698, 0.015053853392601013, -0.01185148861259222, 0.009566039778292179, 0.004913030192255974, 0.03809993341565132, 0.014999112114310265, 0.01305579673498869, -0.0065210554748773575, -0.0035889754071831703, -0.01720244809985161, -0.006531319580972195, 0.008115395903587341, -0.0019843715708702803, 0.0019176555797457695, -0.011926757171750069, -0.006462892983108759, -0.0009511298267170787, 0.00817697960883379, -0.006630538031458855, -0.0033067157492041588, -0.022703947499394417, 0.004105596337467432, 0.020815374329686165, -0.0037600419018417597, -0.0015028193593025208, 0.012467327527701855, -0.012994212098419666, -0.02056903764605522, -0.0021588595118373632, -0.005463864654302597, -0.009483927860856056, 0.014164307154715061, -0.01536861527711153, 0.011215120553970337, 0.0047111716121435165, 0.001708099152892828, -0.025605235248804092, -0.019186820834875107, 0.013842702843248844, 0.013308974914252758, 0.014054824598133564, -0.0063191968947649, 0.018393071368336678, 0.017640378326177597, 0.003332375781610608, 0.0006928193615749478, 0.002163991332054138, 0.012118351645767689, -0.01903628185391426, 0.006572375539690256, -0.01872151903808117, -0.020445870235562325, 0.0016388172516599298, 0.017038224264979362, 0.003193811746314168, -0.016887687146663666, 0.01362373773008585, 0.015300189144909382, 0.014260104857385159, 0.007116367109119892, -0.003323822282254696, 0.0017149418126791716, 0.03112042136490345, -0.012351002544164658, -0.015560210682451725, 0.015519154258072376, -0.01904996670782566, -0.004526420030742884, -0.0008775712340138853, 0.017270876094698906, 0.006637380924075842, 0.025112563744187355, 0.01517702080309391, -0.010366630740463734, -0.012754719704389572, 0.005809418857097626, 0.004594846628606319, -0.02563260681927204, 0.013048953376710415, 0.008491741493344307, 0.003955057822167873, 0.014451699331402779, 0.0020220063161104918, 0.015341244637966156, 0.0076090386137366295, -0.01187201589345932, -0.001893706270493567, 0.008088025264441967, 0.006633959244936705, 0.0097576342523098, -0.0026857443153858185, 0.006805025972425938, 0.0021263568196445704, -0.004919873084872961, -0.029067622497677803, -0.001909102313220501, 0.004991720896214247, -0.003096303902566433, -0.015423356555402279, -0.010927729308605194, -0.008614909835159779, 0.013281604275107384, 0.0021896513644605875, 0.02570103295147419, 0.004543526563793421, -0.006982935126870871, 0.010435057803988457, -0.017216134816408157, 0.0012915522092953324, -0.02923184633255005, 0.012898415327072144, 0.010175036266446114, -0.007732206489890814, 0.00034063620842061937, -0.014164307154715061, -0.006733178161084652, 0.0009374445071443915, 0.014520125463604927, 0.005501498933881521, 0.0030518267303705215, 0.02370297722518444, 0.017421413213014603, 0.010400843806564808, 0.023100821301341057, 0.011044054292142391, 0.025468382984399796, -0.002435987116768956, 0.019255246967077255, -0.005463864654302597, 0.004468257538974285, 0.00593600794672966, -0.007396915927529335, 0.003818204626441002, -0.015683379024267197, 0.01981634460389614, -0.002133199479430914, 0.004618796054273844, 0.022389184683561325, 0.010359788313508034, -0.013596367090940475, 0.02058272249996662, -0.03429541364312172, -0.005446757655590773, -0.002434276510030031, 0.011639365926384926, 0.0038250472862273455, 0.00969605054706335, -0.00043664727127179503, 0.002774698892608285, 0.01946052722632885, 0.03651243820786476, -0.003474361030384898, -0.006004434544593096, -0.01187201589345932, -0.011044054292142391, -0.010462428443133831, -0.021485954523086548, 0.008738077245652676, -0.022786060348153114, 0.01282998826354742, 0.013911128975450993, -0.003674508770927787, -0.0004417792661115527, 0.003951636608690023, -0.025222046300768852, -0.0007325923652388155, -0.014629608020186424, 0.003934530075639486, -0.011399872601032257, 0.004307454917579889, 0.02140384167432785, -0.006281562615185976, 0.005029355641454458, -0.009360759519040585, 0.005039619747549295, 0.018133049830794334, 0.003303294302895665, -0.011516197584569454, -0.01204308308660984, 0.0017927770968526602, 0.030135076493024826, -0.015751805156469345, 0.006103653460741043, 0.002193072810769081, -0.006018119864165783, -0.017982512712478638, -0.007109524216502905, 0.007136894855648279, -0.013651108369231224, -0.013582681305706501, 0.0015909186331555247, 0.0055049206130206585, -0.003450411604717374, -0.0024753324687480927, 0.010195564478635788, -0.01747615449130535, 0.0019843715708702803, -0.03079197183251381, -0.03114779107272625, -0.0022084687370806932, -0.004988299682736397, -0.02177334576845169, -0.008334361016750336, 0.011783061549067497, 0.008601224049925804, 0.0013574127806350589, 0.03155834972858429, -0.019706862047314644, 0.000880992563907057, -0.0006881150766275823, -0.0015652586007490754, 0.0023316366132348776, -0.007390073500573635, -0.006722914054989815, 0.010462428443133831, -0.01795514114201069, -0.0022187326103448868, -0.008108552545309067, -0.0018150156829506159, -0.023921942338347435, -0.00641157291829586, -0.023429270833730698, -8.542634168406948e-05, -0.001909102313220501, -0.000437502603745088, -0.008970728144049644, -0.007184793706983328, 0.011160379275679588, 0.004748806357383728, -0.04327298700809479, -0.006086546462029219, -0.009025469422340393, -0.020705891773104668, 0.006719492841511965, 0.004629059694707394, -0.006941879168152809, -0.017982512712478638, 0.016121309250593185, 0.006353410426527262, 0.013178964145481586, 0.02295028418302536, 0.003510284936055541, -0.017749860882759094, -0.008115395903587341, 0.00799222756177187, -0.011913072317838669, -0.005374909844249487, 0.004755649250000715, -0.004625638481229544, 0.007390073500573635, -0.013657950796186924, 0.019542638212442398, -0.028219131752848625, -0.005244899541139603, 2.6194560632575303e-05, -0.037552520632743835, 0.01401376910507679, -0.02218390628695488, 0.004002956673502922, 0.004639323800802231, -0.007054782938212156, -0.012966841459274292, -0.004755649250000715, -0.00040756596717983484, 0.007759577129036188, 0.01015450805425644, 0.015259132720530033, -0.007930643856525421, -0.008929671719670296, -0.003012481378391385, 0.009258119389414787, 0.04089174047112465, 0.021992310881614685, 0.00817697960883379, -0.002184519311413169, -0.0002043175627477467, -0.017749860882759094, 0.008457528427243233, 0.008354888297617435, 0.0022580779623240232, -0.020719576627016068, 0.003753199242055416, -0.008204350247979164, 0.011276704259216785, 0.03432278707623482, -0.01224151998758316, 0.0034196197520941496, 0.0009160611662082374, -0.0057067787274718285, -0.008341203443706036, 0.0018475183751434088, 0.019747918471693993, -0.0029457653872668743, -0.0073353322222828865, -0.004834339953958988, 0.016518183052539825, 0.001844097045250237, 0.0006329460884444416, -0.013418457470834255, 0.005470707081258297, -0.018776260316371918, 0.019282616674900055, -0.025222046300768852, -0.024414613842964172, 0.019132079556584358, 0.006014698650687933, 0.019255246967077255, -0.012364687398076057, 0.011830960400402546, -0.001690992503426969, -0.0027216682210564613, -0.015779174864292145, -0.013425299897789955, 0.01517702080309391, 0.014615923166275024, -0.025961054489016533, -0.0048856595531105995, 0.01743509992957115, 0.009579724632203579, -0.008484899066388607, -0.0013360294979065657, -0.010804560966789722, 0.008669651113450527, -0.018584666773676872, 0.017352987080812454, 0.016874000430107117, 0.01791408471763134, 0.0022854486014693975, -0.004714593291282654, -0.011324603110551834, -0.008874930441379547, -0.012405743822455406, -0.001619999879039824, -0.0020613514352589846, 0.02416827715933323, 4.7604604333173484e-05, 0.01673714816570282, 0.0032981624826788902, 0.005224371328949928, 0.0038900526706129313, -0.00855332612991333, 0.009504455141723156, -0.001476304023526609, 0.008341203443706036, -0.0036676661111414433, -0.014684349298477173, -0.013521097600460052, -0.035636577755212784, 0.011776219122111797, -0.004481942858546972, 0.0069692498072981834, 0.0011743715731427073, -0.007759577129036188, -0.021499639376997948, -0.00875860545784235, -0.0057820482179522514, 0.004307454917579889, 0.005946272052824497, 0.002054508775472641, 0.0038079405203461647, -0.027712775394320488, 0.001828701002523303, -0.014547496102750301, 0.0055288695730268955, 0.008909144438803196, 0.00914863683283329, 0.0026173177175223827, -0.005696515087038279, -0.003450411604717374, 0.013486883603036404, 0.006209714338183403, 0.00622339965775609, -0.002370981965214014, 0.011249333620071411, -0.02873917482793331, -0.0060489121824502945, -0.040672775357961655, -0.023826144635677338, 0.008799661882221699, 0.008676493540406227, -0.01679188944399357, -0.004228764213621616, 0.014314846135675907, -0.009935542941093445, 0.03257106617093086, 0.02371666207909584, 0.0006782787386327982, 0.033310070633888245, 0.017681434750556946, 0.010948256589472294, -0.004991720896214247, 0.003705300623551011, 0.0021691233851015568, 0.009997127577662468, 0.001958711538463831, -0.0018680463545024395, 0.0174898412078619, -0.0011495669605210423, 0.027562236413359642, -0.01286420226097107, -0.008293304592370987, 0.007910115644335747, -0.01865309290587902, 0.028164390474557877, 0.029478181153535843, -0.0175308957695961, 0.018461497500538826, 0.03670402988791466, -0.0035684474278241396, -0.010469270870089531, 0.014670664444565773, -0.009839746169745922, 0.02768540568649769, 0.01676451787352562, 0.012576810084283352, -0.008067497052252293, 0.0002495432854630053, 0.007047940511256456, 0.016572924330830574, 0.016408700495958328, -7.425355579471216e-05, 0.020788002759218216, 0.006476578302681446, 0.004167180508375168, 0.010893515311181545, -0.006558690220117569, 0.0005675131687894464, -0.00574783468618989, 0.027384327724575996, 0.006798183545470238, -0.012706820853054523, 0.00995607115328312, -0.004806968849152327, 0.02575577422976494, 0.015040167607367039, 0.006202871911227703, -0.008218035101890564, -0.023661920800805092, 0.02641266956925392, -0.009689207188785076, -0.023210305720567703, -7.607114093843848e-05, 0.007951172068715096, -0.014752776362001896, -0.0077048358507454395, -0.0064252582378685474, 0.011748848482966423, 0.004755649250000715, 0.012590495869517326, -0.009593410417437553, -0.014670664444565773, -0.011324603110551834, -0.0011555543169379234, 0.03689562529325485, -0.008731234818696976, 0.006373938173055649, 0.027179047465324402, 2.3655291442992166e-05, 0.01287104468792677, -0.009737106040120125, -0.0010469270637258887, -0.012747876346111298, 0.0195015836507082, -0.013610051944851875, -0.0009981731418520212, -0.014136936515569687, 0.0003795538214035332, -0.004187708254903555, 0.005898373667150736, -0.017777232453227043, 0.02260814979672432, 0.005094361025840044, 0.005025934427976608, -0.0012599049368873239, 0.003578711533918977], "63186939-9531-4e5d-82d5-3fcf84655976": [-0.018592502921819687, 0.01962880790233612, 0.009060035459697247, 0.030494753271341324, 0.014607307501137257, -0.03566103056073189, -0.0022764387540519238, 0.04495728388428688, -0.0426713190972805, 0.0013163340045139194, -0.0010324935428798199, 0.0010439233155921102, -0.009936321526765823, -0.01891253888607025, 0.012618518434464931, 0.006008274387568235, -0.02782779559493065, -0.006484516430646181, 0.012969032861292362, -0.04273227974772453, 0.06504328548908234, 0.004956731107085943, -0.07851523160934448, 0.032613079994916916, -0.006876940373331308, 0.013098571449518204, -0.023225389420986176, 0.008419965393841267, -0.0242464542388916, -0.01070592924952507, 0.02938225120306015, -0.0002955084200948477, 0.03663637489080429, 0.014066295698285103, 0.0019506888929754496, -0.018226750195026398, 0.04026343673467636, 0.023210149258375168, -0.008473305031657219, -0.011429817415773869, -0.006175911519676447, 0.012283244170248508, 0.002663147635757923, -0.00016394644626416266, -0.038312748074531555, -0.004430959466844797, -0.014874002896249294, 0.011765092611312866, -0.013106191530823708, -0.028986018151044846, -0.006930279545485973, -0.04840146750211716, -0.01245088130235672, 0.0007357945432886481, 0.012786156497895718, -0.04879770055413246, 0.03130245953798294, 0.05498504266142845, -0.028086872771382332, -0.020360315218567848, 0.009943941608071327, -0.0007734176469966769, -0.01741904206573963, -0.01440919004380703, 0.010180157609283924, -0.013807220384478569, 0.004640506114810705, 0.03444185107946396, -0.037520281970500946, 0.02711152844130993, 0.011574595235288143, 0.03642302006483078, -0.03334458917379379, 0.009547707624733448, 0.03328362852334976, 0.004225222859531641, 0.02226528525352478, 0.013106191530823708, 0.0074522411450743675, -0.015521693043410778, 0.03349698707461357, -0.032613079994916916, 0.05211997032165527, -0.010378274135291576, 0.08253852277994156, -0.021320419386029243, -0.0023659723810851574, -0.05370490252971649, -0.02994612231850624, -0.013289067894220352, -0.00478528393432498, 0.011010724119842052, -0.014180594123899937, -0.0012268004938960075, -0.007924674078822136, 0.027340123429894447, -0.016032224521040916, 0.013967237435281277, -0.013007132336497307, -0.012031788006424904, -0.016961850225925446, -0.005436783190816641, -0.010629730299115181, -0.004937681369483471, 0.017952434718608856, -0.031912051141262054, -0.008130410686135292, -0.014927342534065247, -0.021289940923452377, 0.02020791731774807, -0.01486638281494379, -0.03614870458841324, -0.01621510088443756, 0.006930279545485973, -0.044286735355854034, 0.005798727739602327, -0.02263103984296322, -0.006675013806670904, -0.01784575544297695, -0.033405546098947525, 0.025450393557548523, -0.013136670924723148, 0.029778486117720604, -0.020954666659235954, -0.0122680040076375, 0.027233446016907692, -0.011010724119842052, 0.023133952170610428, 0.0222043264657259, -0.03279595822095871, 0.01892777904868126, 0.0020021230448037386, 0.015209277160465717, 0.013273828662931919, -0.0035413384903222322, 0.003017471870407462, 0.029214615002274513, 0.013220489025115967, 0.00248979520983994, 0.012085127644240856, -0.05461928993463516, -0.0320034883916378, -0.003270832821726799, 0.005223426967859268, 0.0031355801038444042, 0.006370218470692635, -0.009189573116600513, -2.5508734324830584e-05, 0.028513586148619652, 0.04437817260622978, -0.066323421895504, -0.06522615998983383, -0.026806732639670372, 0.02241768315434456, 0.0665062963962555, -0.044134337455034256, -0.007840855047106743, -0.002219289541244507, 0.0030403316486626863, 0.03791651502251625, 0.02048223279416561, -0.0019106845138594508, -0.01188701018691063, 0.03465520590543747, 0.04163501784205437, 0.0011334569426253438, 0.046206943690776825, 0.006804551463574171, -0.033893220126628876, 0.02567899040877819, 0.005566321313381195, -0.032978832721710205, 0.0288031417876482, 0.016672294586896896, -0.03910521790385246, 0.03221684694290161, 0.0026269531808793545, 0.04224460572004318, -0.0029336533043533564, -0.0066369143314659595, -0.005307245533913374, 0.03910521790385246, 0.002653622766956687, -0.006354978773742914, 0.002956512849777937, 0.019613567739725113, 0.02133565954864025, 0.03392370045185089, 0.04666413739323616, -0.004621456377208233, -0.012039408087730408, -0.01679421216249466, -0.008381866849958897, 0.008168510161340237, 0.009136234410107136, -0.00025312285288237035, -0.005333914887160063, 0.002084036823362112, -0.020512713119387627, 0.01319762971252203, -0.006610244512557983, -0.0416959747672081, -0.014226313680410385, 0.008740000426769257, -0.018043871968984604, 0.02325586974620819, -0.024383611977100372, -0.01751048117876053, 0.03401513770222664, -0.022890115156769753, 0.020756548270583153, -0.030906226485967636, -0.00949436891824007, -0.0030917658004909754, -0.014858762733638287, 0.0025412295944988728, 0.0011801286600530148, 0.000988679239526391, -0.018241988494992256, -0.04218364879488945, -0.024932242929935455, 0.022539600729942322, 0.02540467493236065, -0.03102814592421055, -0.050199758261442184, 0.005505362059921026, -0.010203016921877861, 0.009997280314564705, -0.005425353534519672, 0.004328091163188219, 0.026075225323438644, -0.0160017441958189, -0.018668701872229576, -0.03230828419327736, -0.002796495333313942, 0.04980352520942688, 0.0444086529314518, -0.021046103909611702, -0.013007132336497307, 0.00426713190972805, 0.018165789544582367, 0.022143367677927017, 0.004084255080670118, -0.013068092055618763, 0.055594634264707565, 0.010934526100754738, -0.002537419553846121, 0.02561803162097931, 0.018882058560848236, 0.007779895793646574, -0.019095415249466896, -0.04184837266802788, -0.0036480168346315622, -0.03620966151356697, -0.043646663427352905, 0.010660209693014622, -0.0055282218381762505, -0.0067664519883692265, 0.016687534749507904, -0.028010673820972443, 0.007376042660325766, 0.02988516353070736, -0.021381380036473274, 0.028361188247799873, 0.03901377692818642, -0.021442338824272156, 0.018440106883645058, -0.013426225632429123, 0.019811684265732765, 0.01580362766981125, -0.018683942034840584, 0.01778479665517807, -0.008663801476359367, -0.0065835751593112946, -0.01102596428245306, -0.01991836167871952, 0.011429817415773869, -0.01642845757305622, 0.005211996845901012, -0.023804500699043274, -0.047700438648462296, -0.01842486672103405, 0.017982913181185722, -0.01486638281494379, -0.017982913181185722, 0.015552172437310219, -0.007623688317835331, -0.03441137075424194, -0.030129000544548035, -0.022326244041323662, -0.0015687424456700683, 0.008252328261733055, 0.014233932830393314, 0.036331579089164734, 0.008419965393841267, 0.013921517878770828, -0.004366190638393164, -0.012115607038140297, -0.016458937898278236, 0.06595766544342041, -0.018760140985250473, -0.0066064344719052315, -0.0005162467714399099, 0.01743428222835064, 0.04739564284682274, -0.004579546861350536, 0.04078159108757973, -0.0021545207127928734, 0.017175206914544106, 0.025572312995791435, 0.0240483358502388, -0.06034943833947182, 0.011833671480417252, -0.01027921587228775, 0.02732488512992859, 0.03377130255103111, -0.022219566628336906, -0.018181029707193375, -0.028269749134778976, -0.008259948343038559, 0.02170141413807869, -0.0004586214490700513, -0.0480966717004776, 0.01685517095029354, 0.028483105823397636, -0.050321679562330246, -0.02255484089255333, 0.008366626687347889, -0.0005100556300021708, -0.03116530366241932, -0.04367714375257492, -0.02383498102426529, -0.03514287993311882, 0.007810375653207302, -0.03462472930550575, -0.035813428461551666, -0.01451586838811636, -0.051053185015916824, 0.03145485743880272, -0.029123175889253616, -0.03206444904208183, -0.02581614814698696, 0.035600073635578156, -0.01970500685274601, 0.020116480067372322, 0.012709957547485828, 0.024505529552698135, 0.0192020945250988, -0.02525227703154087, 0.01180319208651781, 0.000884382170625031, 0.0018878249684348702, 0.009509608149528503, 0.045719269663095474, -0.018470585346221924, -0.027568720281124115, -0.039592888206243515, 0.03968432918190956, -0.019095415249466896, -0.014371090568602085, -0.02688293159008026, -0.033161710947752, -0.006804551463574171, 0.003154629608616233, -1.4436098354053684e-05, -0.00033051223726943135, 0.035600073635578156, -0.02127470076084137, -0.008945737034082413, -0.006579765118658543, 0.015468353405594826, 0.0010744028259068727, -0.001100120018236339, -0.0018478205893188715, -0.01088880654424429, -0.03243020176887512, 0.03450281172990799, 0.0056349001824855804, -0.022356724366545677, 0.023103471845388412, -0.0118793910369277, -0.03023567795753479, -0.03642302006483078, 0.03636205941438675, 0.029793724417686462, 0.008755240589380264, 0.026547657325863838, -0.004149023909121752, -0.018683942034840584, -0.014919722452759743, -0.0358743891119957, 0.01188701018691063, -0.028864100575447083, -0.0480966717004776, -0.010126818902790546, -0.01280139572918415, 0.0012715671909973025, 0.0009405787568539381, 0.005097698885947466, -0.01978120394051075, -0.010058240033686161, 0.010294456034898758, 0.014927342534065247, 0.006522615905851126, 0.044134337455034256, -0.027446802705526352, -0.015308336354792118, -0.0145463477820158, 0.01220704521983862, 0.02802591398358345, -0.020527953281998634, 0.03349698707461357, -0.016733253374695778, -0.002663147635757923, 0.020299356430768967, 0.007002668455243111, -0.004065205343067646, 0.016337020322680473, -0.06041039898991585, -0.005665379576385021, 0.03870898485183716, 0.03294835612177849, -0.0016030319966375828, 0.00917433388531208, 0.026974370703101158, 0.01312143076211214, 0.04163501784205437, 0.018470585346221924, 0.020787028595805168, -0.027690637856721878, -0.0009472461533732712, 0.04346378892660141, 0.015681710094213486, 0.00014215835835784674, 0.027843035757541656, -0.002236434258520603, -0.008298047818243504, 0.017556199803948402, 0.02889457903802395, -0.004000436048954725, -0.03325314819812775, 0.0205584317445755, 0.01749524101614952, 8.250899554695934e-05, -0.03563055023550987, -0.016672294586896896, -0.02575518935918808, -0.005825397092849016, 0.003529908834025264, 0.0032879775390028954, 0.004792903549969196, 0.010309695266187191, -0.0008662849431857467, -0.042854197323322296, 0.015453113242983818, 0.00496435072273016, 0.008785719983279705, 0.0024135964922606945, -0.005882546305656433, -0.07400426268577576, -0.017480000853538513, -0.01312143076211214, 0.0358743891119957, 0.02467316761612892, -0.0027107717469334602, -0.01978120394051075, -0.001925924327224493, -0.025496114045381546, 0.005311055574566126, 0.003124150214716792, 0.004385239910334349, 0.0073989019729197025, 0.04346378892660141, 0.03563055023550987, 0.017190445214509964, 0.018318187445402145, -0.013769120909273624, 0.009433409199118614, -0.01578838750720024, 0.006629294250160456, 0.018409626558423042, -0.04273227974772453, 0.03157677501440048, -0.017876235768198967, -0.01365482248365879, -0.006050183437764645, -0.03343602642416954, -0.013723401352763176, 0.010530672036111355, 0.013052851893007755, 0.0036556366831064224, 0.0026707674842327833, 0.010126818902790546, 0.01113264262676239, -0.0018582978518679738, -0.012214665301144123, 0.009860122576355934, -0.024063576012849808, 0.012969032861292362, -0.03215588629245758, 0.018805859610438347, -0.033192191272974014, -0.009669626131653786, -0.01578838750720024, -0.023088231682777405, 0.032704517245292664, 0.012260384857654572, 0.041665494441986084, -0.037032607942819595, -0.03654493764042854, -0.026136184111237526, 0.03465520590543747, -0.030967187136411667, 0.005573940929025412, 0.007757036481052637, 0.030205199494957924, -0.014584447257220745, -0.03206444904208183, 0.015818867832422256, 0.00015144508506637067, 0.002438361058011651, -0.01972024515271187, -0.011460297740995884, 0.004792903549969196, -0.02426169253885746, -0.0024269314017146826, -0.028833620250225067, -0.04544495418667793, 0.0021488056518137455, -0.03273499757051468, -0.007337943185120821, 0.027858275920152664, -0.02148805744946003, 0.006709303241223097, 0.012222285382449627, -0.007840855047106743, 0.005783488042652607, 0.02334730699658394, 0.02368258312344551, 0.003853753674775362, -0.06101998686790466, 0.0378250777721405, -0.03462472930550575, -0.044134337455034256, -0.00821422878652811, 0.021472817286849022, -0.011300279758870602, 0.009319111704826355, -0.023575903847813606, 0.020756548270583153, -0.020116480067372322, -0.01757143996655941, 0.0006891227676533163, -0.015270236879587173, -0.011429817415773869, -0.016946610063314438, 0.018622983247041702, 0.006461657118052244, -0.003828988876193762, -0.014386330731213093, -0.015178797766566277, 0.012618518434464931, -0.011536495760083199, 0.011140262708067894, 0.02497796155512333, 0.00014668266521766782, -0.026974370703101158, 0.003270832821726799, -0.031485337764024734, 0.025739949196577072, 0.011109783314168453, -0.017891474068164825, 0.05696621164679527, -0.007669407874345779, 0.020604152232408524, 0.038312748074531555, -0.022067168727517128, -0.011650794185698032, -0.03806891292333603, -0.0015773148043081164, 0.02817831002175808, -0.013113810680806637, -0.006621674634516239, 0.004952921066433191, 0.004049965646117926, -0.0117803318426013, -0.009662006050348282, -0.0356915108859539, 0.0030822409316897392, 0.01167365349829197, -0.007109346799552441, 0.04581071063876152, -0.03310075402259827, 0.012062267400324345, -0.02653241716325283, 0.01708376780152321, 0.0017982913414016366, 2.4600896722404286e-05, 0.03791651502251625, 0.012321343645453453, -0.008976217359304428, 0.020162198692560196, 0.025358956307172775, -0.017099007964134216, -0.03816035017371178, 0.00885429885238409, 0.025419915094971657, 0.007318893447518349, -0.0033470315393060446, 0.0011391718871891499, 0.008435205556452274, -0.012923314236104488, 0.02226528525352478, -0.0017068528104573488, 0.02397213876247406, 0.0017278074519708753, 0.03002232126891613, 0.015620751306414604, 0.007783705834299326, 0.0017859090585261583, 0.01927829347550869, -0.01912589557468891, 0.01565122976899147, -0.00759320892393589, -0.005074839107692242, -0.0023164430167526007, -0.0032403534278273582, 0.00177352677565068, 0.00747129088267684, 0.013685301877558231, -0.038465145975351334, 0.005806347355246544, 0.0012239429634064436, -0.0335579439997673, 0.025999026373028755, -0.025938065722584724, -0.0028345948085188866, 0.04315899312496185, -0.029077457264065742, -0.014096775092184544, -0.022493882104754448, -0.006286399904638529, -0.0012277528876438737, 0.023514945060014725, -0.0029507980216294527, -0.031180543825030327, 0.004895771853625774, -0.017617158591747284, 0.017830515280365944, 0.016413219273090363, 0.01169651374220848, 0.006918849889189005, 0.003417515428736806, 0.028269749134778976, 0.0038270840886980295, -0.009044796228408813, -0.008701900951564312, 0.020756548270583153, -0.02333206869661808, 0.009829643182456493, 0.010561151430010796, -0.006572145037353039, 0.016839930787682533, 0.020665111020207405, 0.008572363294661045, 0.00914385449141264, 0.039166174829006195, 0.006488326471298933, 0.00871714111417532, 0.009014315903186798, -0.0026193333324044943, -0.0484929084777832, -0.004598596598953009, -0.002548849442973733, -0.002131660934537649, 0.003838513744994998, -0.004728134721517563, 0.014203453436493874, -0.0031927290838211775, -0.01497306115925312, -0.006019704043865204, -0.021533776074647903, -0.019445929676294327, 0.007193165365606546, -0.007147446274757385, -0.007776086218655109, 0.001242992701008916, 0.000881048443261534, -0.012610899284482002, -0.007585589308291674, -0.02199096977710724, -0.0031431999523192644, -0.00561966048553586, 0.03462472930550575, 0.005253906361758709, -0.016123663634061813, -0.006800741422921419, -0.005349154584109783, -0.008915257640182972, -0.0034575199242681265, -0.038800422102212906, -0.017312364652752876, 0.017617158591747284, -0.016093183308839798, -0.008252328261733055, -0.002819355111569166, -0.024642687290906906, -0.023941658437252045, -0.02177761308848858, -0.0025126549880951643, 0.004320471081882715, 0.03672781586647034, 0.0017439996590837836, 0.01158983539789915, -0.01110216323286295, 0.02639525942504406, -0.013883418403565884, 0.014172974042594433, 0.006286399904638529, 0.025221798568964005, 0.03486856445670128, 0.028711702674627304, -0.027660159394145012, -0.013395746238529682, 0.0029431781731545925, 0.008389485999941826, 0.009341971017420292, 0.0037185007240623236, 0.0014230123488232493, 0.007052197586745024, 0.013982477597892284, -0.029626088216900826, 0.004209982696920633, 0.011361238546669483, 0.025419915094971657, -0.028056392446160316, -0.02340826764702797, -0.004453818779438734, 0.03358842432498932, 0.0032060639932751656, 0.020406033843755722, -0.025999026373028755, -0.00010441614722367376, -0.036179184913635254, -0.030753830447793007, 0.016413219273090363, 0.024505529552698135, 0.016916129738092422, -0.02433789148926735, -0.04233604669570923, 0.006960758939385414, -0.012892834842205048, 0.045780230313539505, -0.0009548660018481314, -0.0006424509920179844, 0.006854080595076084, 0.031195782124996185, -0.0021621405612677336, 0.011353619396686554, 0.033618904650211334, 0.00928101222962141, 0.04446960985660553, 0.01877538114786148, -0.007204595021903515, 0.039867203682661057, -0.004831003025174141, 0.002280248561874032, 0.016611335799098015, 0.030007081106305122, 0.013677681796252728, 0.029976602643728256, 0.006469276733696461, 0.013319547288119793, 0.007802755571901798, -0.013982477597892284, 0.03636205941438675, 0.01751048117876053, 0.005863496568053961, -0.009029556065797806, -0.02176237292587757, -0.03288739547133446, 0.004518588073551655, 0.020116480067372322, 0.04011103883385658, -0.013395746238529682, -0.02445981092751026, 0.03044903464615345, 0.010804987512528896, -0.03038807585835457, 0.031332939863204956, 0.02476460486650467, -0.0004721943405456841, -0.004088064655661583, -0.005692049395292997, -0.03352746739983559, -0.01671801321208477, 0.022813916206359863, 0.003084145952016115, 0.0029374631121754646, 0.01900397799909115, -0.00426713190972805, 0.006339739076793194, 0.028437387198209763, 0.003908997867256403, 0.019171614199876785, -0.025572312995791435, -0.039379533380270004, -0.021076584234833717, 0.0039166174829006195, -0.0023316829465329647, 0.011193601414561272, -0.015094979666173458, -0.01991836167871952, 0.060867588967084885, -0.006995048373937607, -0.01943068951368332, -0.0029088887386024, 0.022737717255949974, -0.0007181735709309578, -0.016489416360855103, -0.010667829774320126, -0.010149678215384483, -0.012488980777561665, 0.02432265318930149, -0.008907637558877468, 0.020360315218567848, 0.02290535531938076, 0.004114734474569559, 0.00405377522110939, -0.016611335799098015, -0.011391718871891499, -0.002539324574172497, -0.011467916890978813, 0.02439885027706623, 0.010759268887341022, 0.014706365764141083, 0.017480000853538513, 3.315837602713145e-05, -0.008945737034082413, 0.03535623475909233, -0.011201221495866776, -0.03678877279162407, -0.030144238844513893, 0.017967673018574715, 0.024505529552698135, 0.029565129429101944, 0.0032060639932751656, -0.008359006606042385, 0.025648511946201324, 0.035600073635578156, 0.0216252151876688, -0.0022497691679745913, 0.006857890635728836, -0.03060143254697323, 0.0003938524750992656, 0.013296687975525856, 0.02311871200799942, 0.022874874994158745, -0.033466506749391556, 0.02753824181854725, 0.0157121904194355, 0.02839166671037674, -0.032277803868055344, 0.006046373397111893, -0.019095415249466896, -0.017601920291781425, -0.0006510233506560326, -0.020787028595805168, 0.011848910711705685, -0.027142006903886795, -0.011864150874316692, 0.002859359374269843, 0.03834322839975357, 0.016337020322680473, 1.0417802513984498e-06, -0.0028384048491716385, -0.017693357542157173, -0.002766015939414501, -0.021945249289274216, -0.01572742871940136, -0.004651935771107674, 0.019598327577114105, -0.015338815748691559, 0.02945845015347004, -0.023789260536432266, -0.004366190638393164, 0.021960489451885223, -0.014066295698285103, -0.0006343548884615302, -0.019384970888495445, -0.002556469291448593, -0.014112015254795551, -0.0031489147804677486, -0.019948842003941536, -0.016108423471450806, 0.0028688842430710793, 0.027218205854296684, -0.0024726504925638437, 0.008145649917423725, -0.01976596564054489, -0.017251405864953995, -0.04651173949241638, -0.05279051885008812, -0.036392539739608765, 0.03163773566484451, -0.039166174829006195, -0.008412346243858337, -0.0015439778799191117, -0.0022631038445979357, -0.010157298296689987, 0.011429817415773869, 0.01601698435842991, 0.0016763733001425862, 0.040873028337955475, 0.04840146750211716, -0.0029412731528282166, -0.0025164647959172726, 0.0054215434938669205, 0.026852451264858246, 0.0012601374182850122, -0.0002705056976992637, 0.023667342960834503, 0.005280575715005398, 0.0211375430226326, -0.009189573116600513, -0.00029884211835451424, -0.005318675190210342, -0.005749198142439127, -0.010500192642211914, 0.05455832928419113, 0.0055777509696781635, 0.006964568980038166, -0.014462529681622982, -0.007139826193451881, 0.04303707554936409, -0.027629679068922997, -0.0020668921060860157, -0.012199425138533115, -0.03904425725340843, 0.009532468393445015, -0.013365266844630241, -0.0121232271194458, 0.02234148420393467, -0.027858275920152664, 0.005452022887766361, -0.02938225120306015, 0.020939426496624947, 0.017830515280365944, -0.027903994545340538, -0.004206173121929169, 0.019263053312897682, 0.037245966494083405, 0.000625782529823482, -0.01900397799909115, -0.00981440395116806, -0.007467480842024088, 0.006381648126989603, -0.01679421216249466, 0.010957385413348675, -0.008938117884099483, 0.02796495519578457, -0.00677407206967473, -0.010363034904003143, 0.014706365764141083, 0.005200567189604044, 0.0038366089574992657, -0.005257716402411461, 0.01341098640114069, -0.03398465737700462, -0.00599684426560998, -0.027416322380304337, -0.0192020945250988, 0.014371090568602085, -0.004423339385539293, -0.0031431999523192644, 0.01805911213159561, -0.021503297612071037, -0.0023697821889072657, -0.04392097890377045, -0.037032607942819595, 0.0010058239568024874, -0.04315899312496185, 0.0010277311084792018, 0.017099007964134216, 0.01091928593814373, -0.012610899284482002, -0.015270236879587173, 0.011810812167823315, -0.013487185351550579, -0.0002483604184817523, 0.01418821420520544, 0.00300604198127985, 0.026288580149412155, -0.011566976085305214, -0.011536495760083199, -0.01892777904868126, -0.001715425169095397, -0.00688075041398406, 0.0032994074281305075, -0.010614491067826748, 0.009837263263761997, -0.005551081616431475, -0.026623856276273727, 0.020406033843755722, 0.03300931304693222, 0.022158605977892876, 0.0389833003282547, -0.01298427302390337, 0.01565122976899147, 0.014172974042594433, -0.02816307172179222, -0.010972624644637108, 0.020009800791740417, 0.0013153814943507314, -0.016748493537306786, 0.0286050233989954, -0.0013401461765170097, -0.040019601583480835, 0.023743541911244392, 0.012755677103996277, -0.0007000763434916735, -0.009303871542215347, -0.020665111020207405, -0.03678877279162407, 0.0016011269763112068, 0.021472817286849022, -0.015384534373879433, 0.005002450197935104, 0.003851848654448986, 0.014241552911698818, -0.023286348208785057, -0.01935449242591858, 0.018958257511258125, -0.013083331286907196, 0.0014687315560877323, -0.007745606359094381, -0.015468353405594826, -0.07376042753458023, -0.02141185849905014, -0.012367063201963902, 0.0352952778339386, -0.011246941052377224, -0.00435857055708766, 0.009220053441822529, 0.010484952479600906, -0.025724710896611214, 0.012648998759686947, -0.013113810680806637, 0.0027736357878893614, 0.020604152232408524, -0.003427040297538042, -0.022356724366545677, 0.01693136990070343, -0.020512713119387627, -0.009631526656448841, -0.004533827770501375, 0.014874002896249294, -0.020817508921027184, 0.013571003451943398, 0.01984216459095478, 0.006781691685318947, -0.009326731786131859, 0.01174223329871893, -0.006541665643453598, 0.0010439233155921102, -0.011818431317806244, -0.019796444103121758, 0.00906765554100275, -0.008206609636545181, -0.005074839107692242, -0.0347161665558815, 0.011140262708067894, -0.014066295698285103, -0.025709470734000206, -0.011399338021874428, -0.0006472134264186025, 0.004789093509316444, 0.00807707104831934, -0.005040549673140049, -0.01049257256090641, 0.014645406976342201, 0.03700213134288788, -0.004510967992246151, -0.013776740059256554, -0.03124150261282921, 0.01088880654424429, -0.000521485460922122, -0.004476678557693958, 0.007315083406865597, -0.015300716273486614, -0.024703646078705788, -0.0033051222562789917, -0.005349154584109783, 0.02028411626815796, 0.0010343985632061958, -0.03203396871685982, 0.009220053441822529, 0.011841291561722755, 0.010523051954805851, 0.014012956991791725, 0.014843523502349854, -0.004747184459120035, 0.00041742646135389805, 0.041116863489151, 0.015521693043410778, 0.036880213767290115, -0.007715126965194941, 0.021152783185243607, -0.012008928693830967, -0.006194961257278919, 0.006724542938172817, 0.022646278142929077, 0.012831875123083591, 0.004952921066433191, 0.019537368789315224, 0.015026400797069073, 0.011970829218626022, -0.02398737706243992, 0.00957056786864996, 0.006099712569266558, 0.024215973913669586, 0.0018983022309839725, -0.011201221495866776, 0.0027222016360610723, 0.014279652386903763, -0.01906493678689003, 0.006050183437764645, 0.018028631806373596, 0.0010677354875952005, 0.03307027369737625, -0.0030289017595350742, 0.0028174500912427902, 0.045993585139513016, -0.019811684265732765, 0.014020576141774654, -0.012062267400324345, -0.007520820014178753, 0.012709957547485828, -0.0057377684861421585, 0.0033717963378876448, 0.0004891009302809834, -0.0029431781731545925, -0.005863496568053961, -0.021853812038898468, 0.008625702932476997, 0.010347794741392136, -0.0031622496899217367, -0.011688893660902977, -0.006728352978825569, -0.0117803318426013, 0.01976596564054489, 0.004370000213384628, -0.000518151733558625, 0.004560497123748064, 0.00917433388531208, 0.008298047818243504, 0.012069887481629848, -0.007196975406259298, 0.0017925763968378305, 0.009296251460909843, -0.04489632323384285, -0.01856202445924282, -0.017373323440551758, -0.0029203183948993683, 0.008907637558877468, 0.011048823595046997, 0.008366626687347889, -0.012626138515770435, -0.001609699334949255, 0.008656182326376438, 0.004682415165007114, -0.008130410686135292, 0.007608448620885611, 0.02711152844130993, -0.024871284142136574, 0.02383498102426529, -0.026547657325863838, 0.011658414267003536, -0.0034365651663392782, -0.01629129983484745, -0.015956025570631027, 0.002605998422950506, 0.0004874340957030654, -0.0005062457057647407, -0.017236165702342987, 0.010439233854413033, -0.010446853935718536, 0.008938117884099483, -0.019156374037265778, 0.03044903464615345, 0.006633104290813208, -0.004305231384932995, -0.013578623533248901, -0.0002343112719245255, 0.0018859199481084943, -0.0033984659239649773, -0.019171614199876785, 0.002021172782406211, -0.001713520148769021, 0.007017908152192831, -0.0009377212845720351, -0.0037661250680685043, -0.012816635891795158, 0.014142494648694992, -0.008016112260520458, 0.0010772603563964367, 0.012687098234891891, 0.01621510088443756, -0.010126818902790546, -0.028833620250225067, -0.034685686230659485, 0.03444185107946396, -0.023530185222625732, 0.016596095636487007, 0.005570131354033947, 0.022996792569756508, 4.262369475327432e-05, -0.029930882155895233, -0.008519024588167667, 0.0036594467237591743, 0.013494804501533508, 0.005231046583503485, 0.009197193197906017, -0.007833234965801239, 0.010393514297902584, 0.006122572347521782, 0.004545257426798344, 0.015460733324289322, 0.03130245953798294, 0.0032136838417500257, 0.013532903976738453, 0.020375555381178856, 0.004030915908515453, 0.03925761580467224, 0.03974528610706329, -0.013936758041381836, -0.021472817286849022, -0.0032003489322960377, -0.025160839781165123, 0.011932729743421078, 0.0007962773088365793, 0.016260821372270584, 0.001087737618945539, -0.01693136990070343, 0.007741796784102917, -0.01842486672103405, 0.0025164647959172726, 0.015925545245409012, -0.009402929805219173, 0.020360315218567848, 0.0048691025003790855, -0.008237089030444622, -0.023072991520166397, -0.010644970461726189, -0.021686173975467682, -0.0037108808755874634, 0.00448048859834671, 0.04020247980952263, 0.004960541147738695, 0.010309695266187191, 0.013319547288119793, 0.005981604568660259, 0.01778479665517807, -0.008953357115387917, -0.07906386256217957, -0.016245581209659576, 0.00882381945848465, -0.0021411858033388853, 0.016733253374695778, 0.028147831559181213, -0.01405105646699667, -0.023926418274641037, -0.010446853935718536, 0.0256027914583683, -0.004278562031686306, 0.0389833003282547, -0.0025793288368731737, -0.014988301321864128, -0.01405105646699667, -0.025496114045381546, -0.007520820014178753, 0.0211375430226326, 0.018089592456817627, -0.04352474585175514, -0.00013799124280922115, -0.010667829774320126, 0.02284439653158188, 0.006495946552604437, 0.005185327492654324, -0.013708161190152168, 0.0030479514971375465, 0.011140262708067894, -0.009997280314564705, -0.00810755044221878, -0.004149023909121752, 0.005981604568660259, 0.0042328424751758575, -0.038952820003032684, 0.019689766690135002, 0.013951997272670269, 0.015422633849084377, 0.016306539997458458, -0.013753880746662617, -0.02383498102426529, 0.012367063201963902, -0.007840855047106743, 0.004434769507497549, 0.0035603882279247046, -0.0055777509696781635, -0.024856043979525566, -0.0017344749066978693, 0.012999513186514378, 0.005863496568053961, -0.009311491623520851, -0.04145213961601257, -0.010431613773107529, -0.006838840898126364, 0.00789419375360012, 0.00043004690087400377, 0.002756491070613265, -0.020223157480359077, -0.005352964624762535, 0.01949165016412735, -0.009242912754416466, -0.024520769715309143, 0.017403801903128624, -0.011787951923906803, -0.013342407532036304, 0.003989006392657757, -0.005798727739602327, 0.00019585469271987677, 0.013746260665357113, 0.002958417870104313, -0.018226750195026398, 0.021579496562480927, 0.007437001448124647, -0.005493932403624058, -0.0003890900406986475, 0.009936321526765823, -0.013845318928360939, -0.01892777904868126, -0.020802268758416176, -0.0002809830184560269, -0.007711316924542189, -0.030692871659994125, 0.017312364652752876, -0.011460297740995884, -0.0069036101922392845, 0.005733958445489407, -0.04398193955421448, -0.029427971690893173, -0.027065807953476906, 0.02583138830959797, 0.008419965393841267, -0.008648562245070934, -0.01877538114786148, -0.0320034883916378, 0.030129000544548035, -0.014485388994216919, 0.028559304773807526, 0.014447289519011974, -0.035325758159160614, -0.002558374311774969, -0.017678117379546165, 0.016687534749507904, 0.0009720107773318887, 0.016580855473876, -0.04806619510054588, 0.0459631085395813, -0.014378710649907589, 0.01049257256090641, -0.0256942305713892, 0.004156643524765968, -0.0036594467237591743, 0.004541447386145592, -0.012786156497895718, -0.0028974588494747877, -0.009402929805219173, 0.017556199803948402, -0.012382302433252335, -0.0033946558833122253, -0.02377402037382126, -0.014393950812518597, -0.022996792569756508, 0.00971534475684166, 0.01376150082796812, 0.006610244512557983, 0.008176129311323166, 0.008831439539790154, 0.013769120909273624, -0.002960322890430689, -0.02069558948278427, 0.026059985160827637, 0.0032003489322960377, -0.0035584832075983286, -0.03060143254697323, -0.02141185849905014, 0.019537368789315224, 0.00677407206967473, 0.008831439539790154, 0.008519024588167667, -0.01312143076211214, 0.002493605250492692, 0.017342843115329742, -0.020741309970617294, 0.0021164212375879288, -0.007181735709309578, 0.021533776074647903, -0.006476896815001965, -0.03188157081604004, 0.004152833949774504, -0.014028196223080158, 0.00616829190403223, -0.004030915908515453, 0.00928101222962141, -0.011391718871891499, -0.005173897370696068, -0.010523051954805851, 0.008282807655632496, -0.06230012699961662, 0.009806783869862556, -0.032826438546180725, 0.012580419890582561, -0.0128471152856946, 0.0019297342514619231, -0.022570081055164337, -0.0061073326505720615, -0.024231214076280594, -0.013075711205601692, 0.0008953357464633882, 0.02932129241526127, 0.011947969906032085, -0.00299842213280499, -0.01999456062912941, 0.010088719427585602, -0.020406033843755722, -0.01198606938123703, -0.005181517452001572, -0.006823601201176643, -0.0014801614452153444, 0.021518537774682045, -0.03816035017371178, 0.020466994494199753, -0.009197193197906017, 0.013319547288119793, -0.008016112260520458, -0.02922985330224037, 0.005048169754445553, -0.00354705355130136, 0.01671801321208477, 0.009509608149528503, -0.02548087388277054, 0.029839444905519485, -0.025633271783590317, 0.036179184913635254, -0.02445981092751026, 0.0060539934784173965, -0.007391282357275486, 0.004457628820091486, -0.005128178279846907, -0.003438470186665654, 0.008359006606042385, 0.03483808413147926, -0.03614870458841324, -0.0068693202920258045, -0.006998858414590359, -0.01049257256090641, -0.0261819027364254, 0.026059985160827637, -0.024657927453517914, 0.012656617909669876, 0.007581779267638922, -0.046145983040332794, -0.0006829316262155771, -0.02212812751531601, -0.01970500685274601, 0.00467860559001565, -0.03861754387617111, 0.0009062893223017454, -0.019537368789315224, -0.028437387198209763, -0.014721604995429516, 5.042216434958391e-05, 0.012458501383662224, -0.03642302006483078, 0.01231372356414795, 0.023575903847813606, 0.024886522442102432, -0.014934961684048176, -0.010256356559693813, -0.014005336910486221, 0.029763245955109596, 0.03544767573475838, -0.0059511251747608185, -0.0019030646653845906, 0.0034365651663392782, 0.03377130255103111, 0.025069400668144226, 0.01642845757305622, -0.0011858436046168208, 0.012466121464967728, -0.005402493756264448, 0.015201658010482788, 0.019598327577114105, -0.007608448620885611, 0.005863496568053961, -0.019750725477933884, 0.013510044664144516, 0.0200707595795393, 0.013136670924723148, 0.011978449299931526, 0.009989661164581776, -0.040232960134744644, -0.020969904959201813, -0.023941658437252045, -0.007779895793646574, -0.001195368473418057, 0.008031352423131466, 0.007337943185120821, 0.003901377785950899, 0.00046505071804858744, -0.010294456034898758, 0.01565122976899147, -0.004621456377208233, -0.00737985223531723, -0.01231372356414795, 0.04718228802084923, 0.004590976983308792, 0.030708109959959984, -0.024063576012849808, 0.03505144268274307, 0.01784575544297695, -0.010652590543031693, -0.004697655327618122, -0.005535841919481754, 0.006888370029628277, 0.0031393899116665125, -0.00821422878652811, -0.007387472316622734, -0.02135089971125126, -0.006198771297931671, 0.00982202310115099, -0.010241116397082806, 0.012603279203176498, 0.029199374839663506, 0.023575903847813606, -0.010865947231650352, -0.008915257640182972, 0.01935449242591858, 0.005760628264397383, -0.0246274471282959, -0.0021545207127928734, -0.003912807442247868, -0.007223644759505987, -0.004670985508710146, -0.014553967863321304, 0.014249172993004322, -0.0032460682559758425, 0.00539106409996748, -0.008221848867833614, -0.0019906931556761265, 0.011361238546669483, 0.009616286493837833, -0.007978012785315514, -0.0005657759611494839, -0.019034456461668015, 0.016382738947868347, 0.011871770955622196, -0.010774508118629456, 0.0018916348926723003, -0.006076853256672621, 0.01290807407349348, 0.011010724119842052, 0.004510967992246151, 0.004670985508710146, 0.0231796707957983, -0.012839495204389095, -0.004556687548756599, -0.006393078248947859, -0.02141185849905014, 0.0012058457359671593, -0.005657759960740805, 0.04489632323384285, 0.0013972952729091048, 0.008526643738150597, -0.011650794185698032, -0.0007619878742843866, -0.024536008015275, -0.013662442564964294, -0.012862355448305607, 0.015681710094213486, 0.005333914887160063, 0.007090297061949968, -0.022539600729942322, -0.0022992982994765043, 0.007871334441006184, -0.025496114045381546, 0.0341370552778244, 0.007353182882070541, 0.028330707922577858, -0.013357646763324738, 0.025785669684410095, 0.008442825637757778, -0.0021183262579143047, -0.006252110470086336, -0.012085127644240856, 0.0060539934784173965, 0.008991456590592861, -0.001979263499379158, 0.00529962545260787, 0.00593969551846385, -0.005139607936143875, -0.01269471738487482, -0.014782564714550972, -0.030357595533132553, -0.009662006050348282, -0.015818867832422256, 0.014493009075522423, -0.013487185351550579, 0.0007224597502499819, -0.009837263263761997, 0.02263103984296322, -0.002428836189210415, 0.00416045356541872, 0.011643174104392529, 0.01017253752797842, 0.00046362198190763593, 0.0002709819236770272, -0.0020154579542577267, 0.0005429163575172424, 0.005330104846507311, -0.010545912198722363, -0.02412453480064869, -0.007014098111540079, -0.004971970804035664, -0.008458064869046211, 0.005772057920694351, 0.0007019813056103885, -0.009204813279211521, -0.0008362816879525781, -0.000994394184090197, -0.009867742657661438, -0.0009210528223775327, 0.011170742101967335, -0.036666855216026306, -0.027568720281124115, -0.016382738947868347, -0.03291787579655647, -0.004899581894278526, -0.005520602222532034, 0.00448048859834671, 0.0009415312670171261, 0.003853753674775362, -0.006088282912969589, 0.012786156497895718, -0.028696462512016296, -0.020299356430768967, -0.011719373054802418, 0.02965656667947769, 0.025587551295757294, 0.021808091551065445, 0.0034651397727429867, -0.0029527030419558287, -0.007391282357275486, -0.003015566850081086, 0.0012782346457242966, -0.009898222051560879, -0.019796444103121758, 0.0034975241869688034, 0.010683069936931133, -0.001715425169095397, -0.022859634831547737, -0.008198989555239677, -0.004594786558300257, -0.013075711205601692, 0.021640455350279808, 0.025450393557548523, -0.0035146689042448997, 0.008732381276786327, -0.0108126075938344, 0.03358842432498932, -0.007978012785315514, 0.0016782782040536404, 0.003651826875284314, 0.0008886683499440551, 0.022006209939718246, 0.002653622766956687, -0.005425353534519672, 0.0038118441589176655, 0.0019621187821030617, -0.01856202445924282, 0.01629129983484745, 0.021183261647820473, -0.01529309619218111, 0.0018830625340342522, 0.01341098640114069, -0.03672781586647034, -0.022798676043748856, 0.005185327492654324, 0.014416810125112534, -0.0004767186474055052, 0.002335492754355073, -0.017129486426711082, -0.013990096747875214, -0.0047090849839150906, 0.0021030865609645844, -0.0011906060390174389, 0.018226750195026398, -0.021168023347854614, 0.004061395302414894, 0.00864094216376543, -0.0063206893391907215, 0.015194037929177284, -0.01017253752797842, -0.003928047604858875, 0.011681273579597473, 0.02212812751531601, -0.009090514853596687, 0.006835030857473612, -0.026212383061647415, 0.0013715780805796385, 0.012923314236104488, 0.012869974598288536, 0.02503892034292221, 0.016519896686077118, -0.0043395208194851875, -0.00914385449141264, 0.020543193444609642, -0.014432050287723541, -0.029565129429101944, -0.0054177334532141685, 0.013258588500320911, 0.010629730299115181, -0.033405546098947525, -0.012321343645453453, -0.006675013806670904, 0.004240462556481361, -0.005467263050377369, -0.015986505895853043, 0.02476460486650467, -0.005341534968465567, -0.010096339508891106, -0.014668266288936138, 0.009867742657661438, -0.025358956307172775, 0.013799600303173065, 0.018302949145436287, -0.02042127400636673, -0.0007143635884858668, 0.011231700889766216, 0.01201654877513647, -0.01741904206573963, -0.021030865609645844, 0.0016782782040536404, 0.0029869924765080214, -0.016337020322680473, -0.008732381276786327, -0.014637786895036697, -0.017251405864953995, 0.01526261679828167, -0.018470585346221924, 0.018683942034840584, 0.0036080125719308853, 0.011932729743421078, 0.014325371943414211, 0.009425790049135685, -0.013510044664144516, -0.001409677555784583, 0.006476896815001965, -0.014287272468209267, 0.0010963099775835872, 0.005372014362365007, -0.0031946341041475534, 0.034258972853422165, -0.005017689894884825, -0.012328963726758957, -0.012176565825939178, -0.004270941950380802, 0.004244272131472826, -0.0007000763434916735, 0.015094979666173458, -0.00786371435970068, 0.006236870773136616, 0.011551735922694206, 0.0056844293139874935, 0.028970777988433838, -0.012809015810489655, 0.012283244170248508, 0.005913025699555874, -0.007871334441006184, -0.021731894463300705, -0.004739564377814531, -0.046907972544431686, -0.02532847598195076, 0.00914385449141264, -0.008153269998729229, -0.0035699130967259407, -0.008237089030444622, 0.018546784296631813, -0.009242912754416466, 0.02823927067220211, -0.0005252953851595521, 0.0019459264585748315, -0.008343767374753952, 0.007376042660325766, -0.015879826620221138, 0.009860122576355934, 0.01729712449014187, 0.013616723008453846, 0.022356724366545677, 0.01594078540802002, -0.016138901934027672, 0.012930934317409992, -0.014424430206418037, -0.02482556365430355, 0.01863822340965271, 0.010302076116204262, -0.0015134983696043491, 0.010865947231650352, -0.014058675616979599, 0.012496600858867168, -0.020177438855171204, 0.0011239320738241076, 0.004091874696314335, 0.0048729125410318375, -0.006808361504226923, 0.02191477082669735, 0.0038156541995704174, -0.0032060639932751656, -0.003583247773349285, 0.008648562245070934, -2.6863048333325423e-05, 0.012786156497895718, 0.002945082960650325, 0.0003226542321499437, 0.026562897488474846, 0.009997280314564705, 0.005722528789192438, 0.010820227675139904, -0.0013087141560390592, -0.008259948343038559, -0.00896097719669342, 0.01572742871940136, 0.016535136848688126, -0.029702287167310715, -0.0038556584622710943, 0.01842486672103405, 0.027157247066497803, -0.0024135964922606945, 0.014150114730000496, -0.008450445719063282, 0.013647202402353287, -0.001862107776105404, 0.005280575715005398, -0.024856043979525566, -0.003891852917149663, -0.005181517452001572, -0.0036480168346315622, -0.0176476389169693, -0.0015258806524798274, 0.0054710726253688335, 0.012999513186514378, 0.0009710582671687007, -0.00017823372036218643, 0.009745825082063675, -0.03194253146648407, -0.016413219273090363, 0.017159966751933098, -0.00686551071703434, 0.008130410686135292, -0.0047128950245678425, 0.0058939759619534016, 0.010500192642211914, -0.020253637805581093, 0.020162198692560196, -0.0013620533281937242, -0.005543461535125971, 0.015742668882012367, -0.007886574603617191, 0.013380507007241249, -0.0006805504090152681, 0.0205584317445755, 0.0006576907471753657, 0.013769120909273624, -0.024536008015275, -0.015757909044623375, 0.011894630268216133, 0.008633322082459927, -0.0034479950554668903, 0.0011810811702162027, 0.0030765258707106113, -0.011513636447489262, 0.017236165702342987, 0.005131988320499659, 0.02398737706243992, -0.0023735922295600176, 0.0005810157163068652, -0.022250045090913773, -0.010865947231650352, -0.0027622058987617493, -0.012085127644240856, 0.016321780160069466, -0.005886356346309185, -0.0016201767139136791, -0.006499756593257189, 0.022783437743782997, -0.0022250046022236347, 0.0316072553396225, 0.0016335115069523454, -0.012351823039352894, 0.005444403272122145, -0.005566321313381195, -0.00022073835134506226, -0.00960866641253233, 0.010263976640999317, -0.008900018408894539, 0.01017253752797842, -0.0035127641167491674, -0.0016030319966375828, -0.0040232958272099495, -0.01699232868850231, 0.005234856624156237, -0.022509120404720306, 0.024581728503108025, -0.009181953966617584, -0.008701900951564312, -0.0014077725354582071, 0.028498345986008644, 0.01330430805683136, -0.01607794314622879, 0.004796713590621948, 0.010164918377995491, 0.017403801903128624, -0.013898658566176891, 0.0216252151876688, 0.0013963427627459168, -0.001090595149435103, -0.009105755016207695, 0.013144290074706078, 0.013433845713734627, -0.011429817415773869, -0.0013887229142710567, -0.02218908630311489, 0.015536932274699211, -0.03079954907298088, -0.01003537978976965, 0.0023678771685808897, -0.004305231384932995, 0.003381321206688881, -0.004514778032898903, -0.026334300637245178, -0.007356992922723293, 0.002270723693072796, 0.010241116397082806, -0.004141403827816248, -0.002979372628033161, -0.028986018151044846, -0.016946610063314438, 0.013357646763324738, 0.003756600199267268, 0.008054211735725403, 0.00035122878034599125, 0.019522128626704216, 0.0017706692451611161, -0.016397979110479355, 0.004149023909121752, 0.019110655412077904, 0.0024250263813883066, 0.029717525467276573, 0.015757909044623375, 0.00928101222962141, 0.011125022545456886, -0.014561587944626808, -0.003682306269183755, -0.03407609835267067, 0.002226909389719367, 0.008557124063372612, 0.012831875123083591, -0.022143367677927017, 0.011749852448701859, 0.005539651494473219, -0.0071131568402051926, 0.031546298414468765, -0.008031352423131466, 0.0060616135597229, 0.00720078544691205, 0.013243349269032478, -0.01070592924952507, 0.011826051399111748, 0.015605511143803596, 0.01763239875435829, -0.006092092953622341, 0.016946610063314438, -0.002129756147041917, -0.031332939863204956, -0.011003104969859123, 0.002432646229863167, -0.005173897370696068, 0.017190445214509964, 0.0009615333983674645, 0.011765092611312866, -0.004187123384326696, 0.0320034883916378, 0.0017439996590837836, 0.024429330602288246, 0.007585589308291674, 0.027507761493325233, -0.0006600719643756747, 0.02994612231850624, -0.00967724621295929, -0.009288632310926914, 0.021213741973042488, 0.0009982041083276272, -0.033405546098947525, -0.0008562838775105774, 0.008701900951564312, -0.02496272139251232, 0.011170742101967335, 0.013243349269032478, -0.032186366617679596, 0.0029927073046565056, 0.003899472765624523, -0.020604152232408524, 0.01636749878525734, -0.013037612661719322, -0.022951073944568634, 0.009623906575143337, 0.01879062131047249, 0.015552172437310219, 0.011643174104392529, -0.004610026720911264, -0.038312748074531555, 0.013479565270245075, 0.01763239875435829, 0.0066673937253654, 0.01354814413934946, -0.01373102143406868, -0.0034460900351405144, -0.03236924484372139, 0.020939426496624947, 0.017906714230775833, -0.02817831002175808, 0.007490340620279312, 0.005836826749145985, 0.006937899626791477, 0.001721140113659203, -0.005863496568053961, -0.024871284142136574, -0.003388941055163741, -0.00677407206967473, -0.017236165702342987, -0.0011734613217413425, -0.010614491067826748, 0.007517009973526001, -0.0049262517131865025, -0.0018763950793072581, 0.0036213472485542297, 0.014165353961288929, -0.0004140927630942315, 0.00928101222962141, -0.02069558948278427, -0.01290807407349348, -0.0007191260228864849, 0.01950688846409321, 0.022859634831547737, -0.006255920510739088, 0.006172101479023695, 0.005859686527401209, -0.00012858545233029872, 0.006633104290813208, 0.026806732639670372, 0.025130359455943108, 0.01991836167871952, 0.0025755190290510654, -0.011445057578384876, 0.008351386524736881, 0.0006943614571355283, 0.008976217359304428, -0.011086923070251942, 0.021823331713676453, 0.00280983024276793, -0.00448048859834671, -0.010728788562119007, 0.004320471081882715, 0.003777554724365473, 0.005246286280453205, 0.0005972079816274345, 0.004171883687376976, -0.007566539570689201, 0.00864094216376543, -0.0009129567188210785, -0.021305181086063385, 0.015971265733242035, 0.038312748074531555, 0.0085342638194561, 0.01386817917227745, -0.012862355448305607, 0.007677027489989996, 0.019049696624279022, -0.01166603434830904, 0.013723401352763176, 0.016565615311264992, 0.009479128755629063, -0.032338764518499374, 0.01729712449014187, -0.014858762733638287, -0.006709303241223097, 0.0036632565315812826, 0.020588912069797516, 0.020436514168977737, -0.00021990493405610323, 0.00021383284183684736, -0.023103471845388412, 0.004636696074157953, -0.005753008183091879, 0.001401105197146535, -0.0022097646724432707, -0.002754586050286889, -0.002325967885553837, -0.006956948898732662, 0.03435041382908821, -0.013098571449518204, -0.0006110190297476947, -0.01017253752797842, -0.014371090568602085, 0.007219834718853235, -0.01741904206573963, -0.01908017508685589, -0.015681710094213486, 0.01131551992148161, 0.0018468680791556835, -0.005055789370089769, 0.008999076671898365, 0.004415719769895077, 0.012428021989762783, 0.024932242929935455, 0.0050824591889977455, -0.012793775647878647, 0.005661569535732269, 0.010713549330830574, 0.012679478153586388, 0.011018344201147556, 0.0006772166816517711, -0.003905187826603651, -0.013449085876345634, 0.022661518305540085, 0.0006615007296204567, 0.0060044643469154835, 0.014043436385691166, 0.018531544134020805, -0.008351386524736881, 0.006884560454636812, -0.0005257716402411461, 0.013609102927148342, -0.015247376635670662, 0.02503892034292221, 0.01245088130235672, -0.0205584317445755, 0.00037670775782316923, -0.01827246882021427, 0.015064500272274017, -0.0014963536523282528, 0.02410929650068283, -0.0058939759619534016, -0.003901377785950899, 0.009974421001970768, -0.01142219826579094, 0.019461169838905334, 0.026837212964892387, -0.012077507562935352, 0.02282915636897087, 0.002863169414922595, 0.018104830756783485, -0.02042127400636673, -0.021609975025057793, -0.010667829774320126, -0.01067544985562563, -0.0037299306131899357, -0.0033584614284336567, 0.004491918254643679, -0.008046591654419899, -0.005973984953016043, -0.003905187826603651, -0.00042861816473305225, -0.02845262736082077, -0.004099494777619839, 0.002855549566447735, 0.009738205000758171, 0.0024231213610619307, -0.018440106883645058, -0.009684865362942219, -0.015323575586080551, -0.007688457611948252, -0.01842486672103405, 0.002221194561570883, -0.013532903976738453, 0.007623688317835331, -0.0014325372176244855, 0.010721169412136078, 0.005036739632487297, 0.004804333206266165, 0.004385239910334349, -0.02296631410717964, -0.016123663634061813, -0.01198606938123703, 0.0026802923530340195, -0.0008129457710310817, -0.025450393557548523, 0.016138901934027672, 0.004042345564812422, 0.020009800791740417, -0.01687041111290455, 0.004724324680864811, -0.009555327706038952, -0.0012648998526856303, -0.01210036687552929, 0.009562947787344456, -0.0018640127964317799, 0.010256356559693813, -0.00893049780279398, -0.0030803359113633633, -0.008229468949139118, 5.521435468835989e-06, -0.005074839107692242, 0.0055777509696781635, 0.007757036481052637, 0.013494804501533508, -0.00709410710260272, 0.008846678771078587, -0.0010791652603074908, -0.001604936900548637, 0.006206390913575888, -0.028406906872987747, 0.001463016727939248, -0.011368858627974987, 0.0019344966858625412, -0.013540524058043957, -0.020939426496624947, 0.0007615116192027926, -0.024581728503108025, -0.002748871222138405, 0.003322266973555088, -0.03444185107946396, -0.012626138515770435, -0.01636749878525734, 0.026562897488474846, 0.012382302433252335, -0.011277420446276665, 0.004903391934931278, 0.013342407532036304, -0.001719235093332827, -0.011467916890978813, -0.009220053441822529, 0.018241988494992256, 0.004537637811154127, 0.027431562542915344, -0.0035641982685774565, 0.0011553640943020582, -0.01906493678689003, -0.00217928527854383, -0.005981604568660259, -0.02895553782582283, 0.005703479051589966, 0.007619878742843866, 0.017617158591747284, -0.024734126403927803, -1.1831647498183884e-05, 0.01070592924952507, 0.009212433360517025, -0.0031832042150199413, 0.010027759708464146, -0.0028288799803704023, -0.010622111149132252, -0.0108126075938344, 0.012214665301144123, -0.012115607038140297, 0.0026574325747787952, 0.011246941052377224, -0.0020002180244773626, -0.0076122586615383625, -0.013670061714947224, -0.008145649917423725, -0.0266695749014616, 0.00018573453417047858, -0.005615850444883108, -0.005021499935537577, -0.0018887773621827364, -0.007421761751174927, 0.018226750195026398, 0.00992108229547739, -0.024871284142136574, 0.008084691129624844, 0.002339302795007825, -0.0049757808446884155, 0.002324062865227461, -0.02333206869661808, -0.006899800151586533, -0.02319491095840931, 0.023728301748633385, -0.007635118439793587, -0.02831546775996685, -0.0005876831128261983, 0.012184185907244682, 0.01059925090521574, -0.00020585578749887645, -0.0034575199242681265, -0.010317315347492695, -0.029260333627462387, 0.01941545121371746, -0.0010991675080731511, -0.004404289647936821, -0.013601482845842838, 0.011254560202360153, -0.009242912754416466, 0.013456705957651138, 0.011970829218626022, 0.01842486672103405, 0.008648562245070934, 0.00613400200381875, -0.02589234709739685, 0.02141185849905014, 0.007204595021903515, -0.0037813647650182247, -0.021518537774682045, 0.0010686879977583885, -0.00035599121474660933, 0.01067544985562563, -0.03209492936730385, 0.005768247880041599, 0.009791543707251549, -0.010637350380420685, -0.01879062131047249, -0.03867850452661514, -0.013898658566176891, 0.010873566381633282, -0.00584825687110424, -0.004960541147738695, 0.01418821420520544, 0.023133952170610428, -0.002219289541244507, 0.019796444103121758, 0.0012801395496353507, 0.009258151985704899, 0.00995918083935976, -0.00457192724570632, -0.007616068702191114, -0.00571109913289547, -0.0031508198007941246, -0.024307413026690483, -0.006876940373331308, 0.002945082960650325, 0.025557072833180428, 0.026761014014482498, -0.022311003878712654, -0.016900891438126564, -0.018409626558423042, -0.011963209137320518, -0.02397213876247406, -0.0019459264585748315, -0.00038623259752057493, -0.011566976085305214, 0.030327117070555687, -0.015308336354792118, -0.014012956991791725, -0.029626088216900826, 0.019583087414503098, -0.02282915636897087, 0.021076584234833717, 0.019186854362487793, 0.01949165016412735, 0.016397979110479355, 0.015491212718188763, -0.010126818902790546, -0.009448649361729622, 0.0004976732889190316, 0.005093888845294714, 0.017830515280365944, 0.027446802705526352, 0.017480000853538513, 0.0157121904194355, -0.006122572347521782, -0.018394386395812035, 0.0044461991637945175, 0.012298484332859516, 0.008130410686135292, 0.005455832928419113, 0.003954716958105564, 0.018196269869804382, -0.0011305995285511017, 0.03620966151356697, 0.015468353405594826, 0.002345017623156309, 0.0038747081998735666, 0.009098134934902191, -0.0286050233989954, -0.0038156541995704174, 0.0013306213077157736, -0.007737986743450165, -0.000110726359707769, -0.002324062865227461, 0.00906765554100275, 0.018089592456817627, 0.006511186249554157, 0.004469058942049742, -0.006088282912969589, 0.007063627243041992, -0.02831546775996685, -0.0007719889399595559, -0.000725317164324224, -0.015956025570631027, 0.003861373523250222, 0.009372450411319733, 0.008275188505649567, 0.0033108373172581196, 0.012405162677168846, 0.011475536972284317, -0.00960866641253233, 0.008412346243858337, -0.004316661041229963, -0.00624068034812808, 0.016123663634061813, -0.030753830447793007, 6.92932735546492e-05, -0.008252328261733055, -0.007437001448124647, 0.008808579295873642, 0.0074027120135724545, 0.021945249289274216, -0.014874002896249294, -0.0021107064094394445, -0.01828770898282528, -0.0216252151876688, 0.0067131128162145615, 0.008168510161340237, 0.01234420295804739, 0.014797803945839405, -0.02077178843319416, 0.01908017508685589, -0.00896097719669342, -0.014249172993004322, 0.012900453992187977, -0.013510044664144516, 0.005440593231469393, 0.025877106934785843, -5.426186908152886e-05, 0.008762860670685768, -0.0023659723810851574, -0.011620314791798592, 0.005966364871710539, -0.010820227675139904, -0.02028411626815796, 0.018821099773049355, -0.010606870986521244, 0.003284167731180787, -0.008922877721488476, 0.015818867832422256, -0.005238666664808989, 0.0003002708253916353, 0.021731894463300705, 0.009890601970255375, -0.014843523502349854, -0.0028384048491716385, -0.02098514512181282, 0.031851090490818024, 0.012153706513345242, -0.005573940929025412, -0.015498832799494267, -0.018028631806373596, 0.0013401461765170097, -0.005410113837569952, 0.0027260114438831806, 0.006625484209507704, 0.019659286364912987, 0.010256356559693813, 0.009098134934902191, -0.0028841239400207996, -0.0013715780805796385, -0.030052801594138145, 0.017327602952718735, 0.009639146737754345, 0.0048691025003790855, 0.008153269998729229, 0.01486638281494379, 0.00280221039429307, 0.011795572005212307, -0.033161710947752, -0.027873516082763672, 0.0056844293139874935, -0.03459424898028374, -0.006469276733696461, 0.006564525421708822, 0.005932075437158346, -0.011330759152770042, 0.02119850181043148, -0.002663147635757923, -0.0032384484075009823, -0.00023800214694347233, 0.002607903443276882, -0.003375606145709753, -0.01886681839823723, -0.0006824553711339831, -0.009593427181243896, 0.002855549566447735, 0.019583087414503098, 0.020649870857596397, 0.005973984953016043, 0.008328527212142944, 0.012618518434464931, -0.01475970447063446, 0.015605511143803596, -0.008595222607254982, -0.01572742871940136, 0.01266423799097538, -0.018622983247041702, 0.018668701872229576, -0.004514778032898903, -0.016260821372270584, -0.03072335012257099, -0.00688075041398406, -0.02176237292587757, -0.00645403703674674, 0.010820227675139904, -0.008869539014995098, 0.002390736946836114, 0.00709410710260272, 0.01242040190845728, -0.006671203766018152, 0.007871334441006184, 0.006335929036140442, 0.00016716108075343072, 0.004042345564812422, 0.005482502747327089, -0.011688893660902977, -0.0085342638194561, 0.020543193444609642, 0.01483590342104435, -0.005272956099361181, -0.008374246768653393, 0.003484189510345459, -0.001615414279513061, -0.021747132763266563, 0.0057377684861421585, -0.004903391934931278, -0.00938769057393074, 0.019034456461668015, -0.004152833949774504, 0.025069400668144226, -0.008740000426769257, 0.0002233576960861683, 0.019019216299057007, -0.01169651374220848, 0.0031355801038444042, 0.02013171836733818, 0.0055777509696781635, -0.012275624088943005, 0.024002617225050926, -0.0034479950554668903, 0.02496272139251232, -0.03364938497543335, -0.011536495760083199, -0.015567411668598652, -0.00914385449141264, 0.008579983375966549, -0.012572799809277058, 0.015681710094213486, -0.01863822340965271, 0.0048919618129730225, 0.008618082851171494, -0.017175206914544106, 0.00114679173566401, 0.02098514512181282, -0.014599687419831753, 0.0074027120135724545, 0.0016935180174186826, 0.0013268113834783435, -0.013593863695859909, -0.014721604995429516, -0.011551735922694206, 0.01014205813407898, 0.004000436048954725, 0.0042899916879832745, 0.026334300637245178, 0.008557124063372612, 0.030342357233166695, -0.01494258176535368, 0.009235292673110962, -0.000517675478477031, -0.02561803162097931, -0.0014153923839330673, -0.015468353405594826, -0.03209492936730385, 0.04078159108757973, -0.017449522390961647, -0.030129000544548035, -0.014233932830393314, -0.0027355363126844168, -0.0046062166802585125, 0.005650139879435301, 0.0068731303326785564, 0.00896097719669342, 0.005170087795704603, 0.017601920291781425, 0.009136234410107136, 0.011307899840176105, -0.002085941843688488, -0.004899581894278526, 0.005093888845294714, -0.013296687975525856, -0.002030697651207447, -0.022295763716101646, -0.007657977752387524, 0.007337943185120821, -0.011612694710493088, 0.0011039299424737692, -0.005352964624762535, -0.012168945744633675, -0.029488930478692055, 0.0038575634825974703, -0.03343602642416954, 0.023453986272215843, 0.0047624241560697556, 0.017769556492567062, -0.006671203766018152, -0.001300141797401011, -0.019232572987675667, 0.0005252953851595521, -0.004518588073551655, -0.014843523502349854, 0.02426169253885746, -0.022493882104754448, 0.016489416360855103, 0.02263103984296322, -0.03535623475909233, -0.0240483358502388, -0.02484080381691456, 0.021655695512890816, 0.008130410686135292, 0.0013239538529887795, -0.02825450897216797, 0.01850106567144394, 0.018836339935660362, 0.02205192856490612, 0.01242040190845728, 0.005547271575778723, -0.029123175889253616, -0.025374196469783783, 0.0036022975109517574, -0.012542320415377617, -0.013639582321047783, -0.0026364780496805906, 0.01231372356414795, 0.0048919618129730225, -0.0037146906834095716, 0.030860507860779762, 0.0010553532047197223, 0.022890115156769753, -0.021640455350279808, 0.0008181844605132937, 0.0022688189055770636, -0.004987210500985384, -0.0003212254960089922, -0.006671203766018152, 0.0063244993798434734, -0.001975453458726406, 0.010766888037323952, -0.007677027489989996, -0.0009153379360213876, -0.043006595224142075, 0.007376042660325766, 0.006739782635122538, 5.920288458582945e-05, -0.009669626131653786, 0.022326244041323662, -0.015239757485687733, -0.01131551992148161, 0.023225389420986176, -0.012687098234891891, -0.002394546754658222, 0.002244054339826107, 0.004312851466238499, 0.005124368239194155, 0.00039790052687749267, -0.015102599747478962, 0.004537637811154127, 0.005756818223744631, 0.006415937561541796, 0.007616068702191114, 0.02311871200799942, -0.003989006392657757, 0.011490777134895325, -0.017891474068164825, -0.01743428222835064, 0.013144290074706078, 0.0020554622169584036, 0.0009005743777379394, 0.012572799809277058, 0.020466994494199753, -0.010073479264974594, 0.01700756885111332, -0.019445929676294327, 0.03230828419327736, 0.014020576141774654, -0.011627934873104095, -0.0027241066563874483, 0.012168945744633675, 0.005025309976190329, -0.01720568537712097, -0.0017020903760567307, 0.0014639691216871142, -0.003470854600891471, -0.007071247324347496, 0.018607743084430695, 0.011978449299931526, -0.011536495760083199, 0.006663583684712648, 0.012618518434464931, 0.01155935600399971, 0.020969904959201813, -0.005627280101180077, 0.01344146579504013, 0.010126818902790546, -0.02334730699658394, 0.013875799253582954, 0.0021697604097425938, 0.011757472530007362, 0.00024669355480000377, -0.0037299306131899357, -0.003794699441641569, -0.0037680298555642366, 0.005825397092849016, -0.0015173082938417792, -0.0122680040076375, -0.004168073646724224, -0.008168510161340237, 0.009136234410107136, 0.02575518935918808, 0.008130410686135292, 0.007440811488777399, -0.015468353405594826, 0.011003104969859123, -0.00982202310115099, -0.003268927801400423, 0.011185981333255768, -0.012245144695043564, -0.01330430805683136, -0.0043966700322926044, -0.007574159186333418, 0.000156564696226269, -0.005425353534519672, 0.000778656336478889, 0.002598378574475646, -0.013129050843417645, -0.009562947787344456, -0.008221848867833614, -0.006328308954834938, -0.024779845029115677, -0.007757036481052637, -0.004438579082489014, 0.002133565954864025, 0.006522615905851126, 0.023362547159194946, -0.006008274387568235, -0.00610352260991931, -0.027934474870562553, -0.0019364015897735953, -0.010157298296689987, 0.013715781271457672, 0.01885158009827137, -0.01842486672103405, 0.0026574325747787952, -0.00949436891824007, 0.0032003489322960377, -0.001662085996940732, 0.010484952479600906, 0.006572145037353039, 0.01693136990070343, 0.005234856624156237, -0.012885214760899544, -0.0205584317445755, 0.007779895793646574, 0.0007048387778922915, 0.005558701232075691, 0.015681710094213486, 0.001818293472751975, 0.006728352978825569, -0.006629294250160456, -0.008572363294661045, -0.005722528789192438, -0.008473305031657219, -0.033131230622529984, 0.0031508198007941246, -0.006918849889189005, -0.022021448239684105, 0.015285476110875607, -0.02845262736082077, -0.005509172100573778, 0.009349591098725796, 0.012405162677168846, -0.026425737887620926, 0.006785501725971699, 0.028909819200634956, -0.0059511251747608185, -0.015232137404382229, 0.006838840898126364, -0.0026231431402266026, -0.011605074629187584, 0.0012887119082733989, -0.00015406441525556147, -0.0005162467714399099, -0.014256793074309826, -0.019049696624279022, 0.0074027120135724545, -0.011787951923906803, 0.002754586050286889, 0.004461438860744238, -0.014713985845446587, -0.018165789544582367, 0.002396451774984598, -0.023240629583597183, -0.000673406757414341, 0.006339739076793194, 0.0031298650428652763, -0.031058624386787415, -0.010690690018236637, 0.0036461118143051863, -0.01714472658932209, -0.02782779559493065, -0.006625484209507704, 0.0020687971264123917, -0.0053986841812729836, -0.023713061586022377, 0.00373564544133842, 0.006465467158704996, 0.0019830733072012663, 0.008442825637757778, 0.015026400797069073, 0.01644369773566723, -0.011292659677565098, -0.028986018151044846, -0.0026821971405297518, 0.028757421299815178, 0.016245581209659576, -0.020025040954351425, 0.014416810125112534, 0.007315083406865597, 0.011216461658477783, 0.0026288582012057304, -0.02426169253885746, -0.008892398327589035, 0.002390736946836114, -0.0060539934784173965, -0.013852939009666443, -0.028726942837238312, -0.0012706147972494364, -0.01418821420520544, -0.011658414267003536, 0.00982202310115099, -0.015285476110875607, -0.0024593158159404993, 0.012428021989762783, -0.03209492936730385, 6.81249866829603e-06, -0.007059817668050528, -0.004194742999970913, 0.01921733282506466, -0.00971534475684166, 0.016245581209659576, 0.0055282218381762505, 0.046481259167194366, 0.019369730725884438, -0.004209982696920633, -0.007040767930448055, -0.017342843115329742, -0.03230828419327736, -0.0010267785983160138, -0.00033741776132956147, -0.013540524058043957, -0.01341098640114069, -0.014287272468209267, -0.010096339508891106, 0.015895066782832146, 0.017038049176335335, -0.015102599747478962, 0.002327872905880213, 0.0006991238333284855, 0.005699669010937214, -0.025785669684410095, 0.017830515280365944, 0.019400211051106453, -0.005432973615825176, -0.00785609520971775, 0.001451586838811636, -0.0036480168346315622, 0.0013410985702648759, 0.029687047004699707, 0.014988301321864128, 0.02092418633401394, -0.00759320892393589, 0.014272032305598259, -0.0017535245278850198, -0.031058624386787415, 0.016809452325105667, 0.007052197586745024, 0.022326244041323662, 0.003575627924874425, 0.008572363294661045, 0.005547271575778723, -0.014264412224292755, 0.01836390793323517, -0.006648343987762928, 0.003686116309836507, 0.014066295698285103, -0.0130909513682127, 0.003282262710854411, 0.016352258622646332, 0.013113810680806637, -0.0014773039147257805, 0.03779459744691849, 0.0016944705275818706, -0.01935449242591858, -0.021670933812856674, -0.008221848867833614, 0.0054215434938669205, -0.011262180283665657, 0.019689766690135002, -0.01900397799909115, -0.006918849889189005, 0.017982913181185722, -0.008198989555239677, -0.013639582321047783, -0.007490340620279312, 0.030266158282756805, -2.7346732167643495e-06, 0.016138901934027672, 0.012039408087730408, 0.004168073646724224, -0.004385239910334349, 0.009349591098725796, 0.014500629156827927, -0.009761064313352108, 0.018013393506407738, -0.005295815411955118, -0.01636749878525734, -0.026547657325863838, -0.02752300165593624, 0.0022592940367758274, -0.0034994292072951794, -0.023530185222625732, -0.012831875123083591, -0.006595004815608263, 0.009829643182456493, -0.006095902994275093, -0.006027324125170708, -0.012748057022690773, -0.013997716829180717, -0.005276765674352646, 0.017114248126745224, -0.004293801728636026, 0.004827192984521389, -0.00036527792690321803, 0.003438470186665654, 0.019659286364912987, -0.0122680040076375, -0.0005438688094727695, -0.0009639146155677736, -0.0003286072751507163, -0.0010163013357669115, -0.017830515280365944, -0.0038651833310723305, 0.025450393557548523, -0.016352258622646332, 0.0016497037140652537, 0.00394709687680006, 0.006781691685318947, -0.03520384058356285, -0.023210149258375168, -0.002861264394596219, 0.013205249793827534, -0.014096775092184544, 0.029214615002274513, 0.008557124063372612, 0.012466121464967728, -0.01145267765969038, 0.0064807068556547165, 0.03052523359656334, 0.016580855473876, -0.013487185351550579, 0.0012220380594953895, 0.015224517323076725, -0.015620751306414604, 0.024490289390087128, 0.0108126075938344, -0.016245581209659576, -0.013677681796252728, -0.0017516196239739656, 0.008808579295873642, -0.0008700948674231768, 0.01394437812268734, -0.0069759986363351345, -0.007810375653207302, -0.0019354491960257292, 0.0401415191590786, 0.009555327706038952, 0.004720514640212059, 0.0015858872793614864, -0.0072426944971084595, 0.009486748836934566, 0.0024364562705159187, -0.0005352964508347213, 0.009372450411319733, 0.017952434718608856, 0.003686116309836507, 0.017952434718608856, 0.024642687290906906, -0.019659286364912987, 0.020802268758416176, 0.017739078029990196, 0.008221848867833614, 0.002175475237891078, -0.004274751991033554, -0.014675886370241642, 0.02020791731774807, -0.02197572961449623, 0.007703697308897972, -0.014896862208843231, 0.015430253930389881, -0.02932129241526127, 0.011551735922694206, 0.011193601414561272, 0.01131551992148161, 0.010789748281240463, 0.017830515280365944, 0.009120994247496128, -0.005036739632487297, -0.022387202829122543, 0.018897298723459244, -0.008724761195480824, 0.00967724621295929, 0.0014868287835270166, -0.008831439539790154, -0.012001308612525463, -0.000573395867832005, 0.01615414209663868, 0.00971534475684166, -0.006610244512557983, -0.001824960927478969, -0.0036232522688806057, 0.011894630268216133, 0.0062673501670360565, 0.010515432804822922, 0.01985740289092064, 0.0015296905767172575, -0.007494150660932064, 1.4294713764684275e-05, -0.022219566628336906, 0.015354054979979992, -0.0034441850148141384, 0.002903173677623272, -0.0011172647355124354, 0.002893648808822036, -0.016260821372270584, -0.002017362741753459, -0.014843523502349854, 0.013075711205601692, -0.0032975024078041315, -0.015834107995033264, -0.018028631806373596, -0.018760140985250473, 0.009753444232046604, 0.02596854604780674, 0.02034507505595684, 0.022752957418560982], "23fda1f4-7289-49ec-a59f-37a7a607cba0": [0.004909553099423647, 0.003457803511992097, -0.004336394835263491, 0.02876349538564682, 0.02107110805809498, 0.004770034458488226, -0.018190233036875725, 0.021463269367814064, -0.025822289288043976, 0.011327417567372322, 0.011960908770561218, 0.006930690258741379, 0.02358998730778694, 0.012051407247781754, 0.026229532435536385, 0.013959420844912529, -0.018959471955895424, -0.018627643585205078, 0.003797173500061035, -0.017828239127993584, 0.01571660302579403, -0.027858508750796318, -0.05647117272019386, 0.03538498282432556, 0.017179666087031364, 0.010565720498561859, 0.011960908770561218, 0.006395239848643541, -0.039035096764564514, 0.0037896321155130863, 0.029050074517726898, 0.023921817541122437, -0.004392956383526325, -0.01779807358980179, -0.003691591788083315, -0.04805479571223259, 0.012745230458676815, -0.024193312972784042, 0.011802535504102707, 0.04413318634033203, -0.021991178393363953, -0.00629719952121377, 0.021764932200312614, -0.020769445225596428, -0.041237231343984604, -0.006730839144438505, -0.03864293545484543, 0.02650102972984314, -0.019668379798531532, -0.04506834223866463, -0.008559666574001312, -0.016289761289954185, 0.029849480837583542, 0.01408762764185667, 0.02101077511906624, -0.02239842154085636, -0.012556691654026508, -0.013114766217768192, 0.024344144389033318, -0.032549358904361725, 0.02690827287733555, -0.018612561747431755, -0.01959296315908432, -0.017782989889383316, 0.013439053669571877, -0.014947365038096905, 0.003327711718156934, 0.025399962440133095, -0.020859945565462112, 0.007650909014046192, -0.021342603489756584, 0.015822185203433037, -0.04509850591421127, 0.01518869400024414, 0.018718142062425613, -0.015090654604136944, 0.06268541514873505, 0.027843425050377846, 0.0052828602492809296, 0.013288222253322601, 0.018129901960492134, -0.0015054831746965647, 0.06956331431865692, -0.007036271970719099, 0.08754238486289978, -0.004754951223731041, 0.019758878275752068, -0.030120976269245148, -0.014962447807192802, -0.030829882249236107, -0.005022676661610603, 0.0048567624762654305, -0.007933717221021652, 0.015535606071352959, -0.0024924844037741423, 0.02351457253098488, 0.006798713002353907, 0.015942849218845367, -0.013197723776102066, -0.01692325249314308, -0.03405766934156418, 0.013891546986997128, -0.003797173500061035, 0.01769249141216278, 0.017828239127993584, -0.015143444761633873, -0.0042006466537714005, 0.01444208063185215, -0.014804075472056866, 0.029623232781887054, -0.0014178125420585275, -0.025279296562075615, 0.000903572712559253, -0.008710497990250587, -0.0763808861374855, -0.05061892792582512, -0.04479684308171272, -0.05984979122877121, 0.0010181100806221366, -0.008702956140041351, 0.024268727749586105, -0.003056215588003397, 0.01444208063185215, -0.015437565743923187, -0.055475689470767975, 0.023861484602093697, -0.002694220980629325, 0.016878003254532814, 0.016229428350925446, 0.0002130489592673257, -0.004151626955717802, 0.01733049564063549, 0.014306331984698772, -0.0029600609559565783, 0.029985228553414345, 0.009064950980246067, 0.027240101248025894, 0.024585474282503128, -0.006813796237111092, 0.010015186853706837, -0.05384671315550804, -0.022700084373354912, -0.030045559629797935, -0.005931434221565723, 0.022081676870584488, -0.021749848499894142, -0.005656167399138212, 0.049985434859991074, -0.020090706646442413, 0.036289967596530914, -0.06175026297569275, -0.04784363508224487, -0.044103022664785385, 0.002285091672092676, 0.06135810166597366, -0.024630723521113396, -0.021463269367814064, 0.01870306022465229, 0.006123743951320648, 0.053454551845788956, -0.010309307835996151, -0.0556265190243721, -0.026998771354556084, 0.04669731855392456, 0.04847712442278862, 0.02912549115717411, 0.031161710619926453, 0.021749848499894142, -0.0540880411863327, 0.03586764261126518, 0.006934461183845997, -0.031946033239364624, 0.031463373452425, 0.0339370034635067, -0.03318284824490547, 0.006274574901908636, 0.017405912280082703, 0.060000620782375336, 0.02286599949002266, -0.006236867047846317, -0.005116946063935757, 0.015113279223442078, 0.009396779350936413, 0.017496410757303238, 0.01662158966064453, 0.02048286609351635, 0.022941414266824722, -0.0042345840483903885, 0.05454053357243538, 0.02250400371849537, -0.010135851800441742, 0.003061871975660324, -0.007379412651062012, 0.026108868420124054, 0.00011294658906990662, -0.02156885154545307, -0.023303408175706863, -0.017239997163414955, -0.014615535736083984, 0.021659350022673607, -0.014743742533028126, -0.054932694882154465, -0.019789043813943863, 0.05318305641412735, -0.028778579086065292, -0.004468372091650963, 0.007009876426309347, -0.010754259303212166, 0.021991178393363953, -0.03601847216486931, 0.03764744848012924, -0.050407763570547104, 0.005705187562853098, -0.03131254017353058, -0.04175005480647087, -0.004871845245361328, -0.0034559182822704315, 0.030920380726456642, -0.024148063734173775, -0.02983439713716507, -0.0013895317679271102, 0.009426945820450783, 0.008303253911435604, -0.01036209799349308, -0.039879750460386276, 0.005852247588336468, 0.015309358946979046, 0.020648781210184097, 0.0013640789547935128, 0.017043916508555412, 0.02549046091735363, 0.0014743742067366838, -0.016546174883842468, 0.011236919090151787, -0.016410427168011665, 0.032428693026304245, 0.01797907054424286, -0.009027242660522461, -0.03140304237604141, -0.001275465707294643, 0.002877103630453348, 0.0005321510834619403, -0.009562693536281586, -0.03060363605618477, 0.03960825502872467, 0.020452700555324554, 0.003503052983433008, 0.05629017576575279, 0.01678750477731228, -0.003510594367980957, -0.04500800743699074, 0.008295712061226368, -0.009057409130036831, -0.02179509773850441, -0.024615639820694923, 0.008295712061226368, 0.02555079199373722, -0.00026701821479946375, -0.00225492543540895, 0.007628284394741058, 0.04244387894868851, 0.03936692327260971, 0.003203276079148054, 0.024917302653193474, -0.010482762940227985, -0.04530967026948929, 0.029970144852995872, -0.01613892987370491, 0.0036218324676156044, 0.048808950930833817, 0.01840139739215374, 0.020452700555324554, -0.0071380832232534885, 0.0036501132417470217, 0.014758825302124023, -0.012021240778267384, 0.048326291143894196, -0.0014272395055741072, 0.019276218488812447, -0.0009351529879495502, -0.060724612325429916, -0.0011529154144227505, -0.002471745014190674, 0.0018194004660472274, -0.00019596262427512556, -0.017300330102443695, -0.019246051087975502, -0.03405766934156418, -0.06751201301813126, -0.017843322828412056, 0.005015134811401367, 0.007326622027903795, 0.03758711740374565, -0.0025075674057006836, -0.016169097274541855, 0.012232404202222824, -0.017224915325641632, 0.00881607923656702, -0.002009824849665165, 0.08042315393686295, 0.013966962695121765, -0.019306384027004242, -0.00110955152194947, -0.006233096122741699, 0.029668482020497322, 0.004649369511753321, 0.015520523302257061, 0.0001557802752358839, -0.03571680933237076, 0.02609378471970558, 0.0473911389708519, -0.031041046604514122, 0.007790427654981613, -0.010972964577376842, 0.013650217093527317, 0.03858260065317154, -0.018748309463262558, -0.008529500104486942, -0.01656125858426094, -0.007699929177761078, 0.0033786173444241285, -0.009758774191141129, -0.04244387894868851, -0.02156885154545307, 0.007368100341409445, -0.052368566393852234, 0.005094321444630623, -0.010241433046758175, -0.013884005136787891, -0.005735353566706181, -0.06841699779033661, -0.0041893343441188335, -0.04736097529530525, 0.023786067962646484, -0.03417833149433136, -0.03918592631816864, -0.019321467727422714, -0.032006364315748215, 0.01536215003579855, -0.02585245482623577, -0.008823621086776257, -0.0172701645642519, 0.008310794830322266, -0.00045485011651180685, 0.014781450852751732, -0.00046851919614709914, -0.008755747228860855, -0.004242125432938337, -0.014600452966988087, -0.014049919322133064, 0.0009672045707702637, 0.00391783844679594, 0.049985434859991074, 0.01745116151869297, -0.025339629501104355, -0.0029770294204354286, 0.016123848035931587, 0.012126822955906391, 0.002371819457039237, -0.016093680635094643, 0.01935163326561451, -0.057858821004629135, -0.013016725890338421, 0.01781315542757511, -0.020211370661854744, 0.022126926109194756, 0.01343151181936264, -0.0010294223902747035, -0.0037500387988984585, -0.024615639820694923, -0.02393689937889576, 0.016470758244395256, 0.02977406419813633, -0.0034973968286067247, -0.007111687678843737, 0.0005769290728494525, 0.043861690908670425, 0.0197136290371418, -0.06745167821645737, 0.018506979569792747, 0.006485738325864077, 0.000943165912758559, 0.02377098612487316, 0.04340919852256775, 0.0024208396207541227, -0.016350094228982925, -0.0083334194496274, 0.020452700555324554, 0.002941207028925419, -0.018899140879511833, -0.04724030941724777, 0.011840243823826313, -0.021418020129203796, -0.0016468873945996165, -0.04521917179226875, -0.010520471259951591, 0.02607870101928711, -0.021221939474344254, 0.020452700555324554, -0.01367284171283245, 0.01684783771634102, 0.019728710874915123, -0.04039257392287254, 0.008348503150045872, 0.01793382130563259, -0.015052946284413338, -0.0189443901181221, -0.020678946748375893, 0.013273139484226704, 0.0026093784254044294, -0.013182640075683594, 0.019095221534371376, 0.0007065495592541993, 0.006206701043993235, 0.010656218975782394, 0.006316053215414286, -0.03948758915066719, 0.06859799474477768, -0.009909604676067829, -0.01761707477271557, 0.006934461183845997, 0.03785861283540726, 0.001972116995602846, 0.0046569108963012695, 0.0431075356900692, 0.01822040043771267, 0.0022718938998878, -0.0024981405586004257, 0.011621538549661636, -0.014562745578587055, 0.03580730780959129, 0.05055859312415123, -0.02018120512366295, -0.0026093784254044294, 0.018974555656313896, -0.007688616868108511, -0.016470758244395256, 0.00559960538521409, -0.0007583977421745658, -0.0068213376216590405, -0.011267085559666157, -0.0224587544798851, 0.016546174883842468, 0.0232279933989048, -0.04663698375225067, -0.021101275458931923, -0.023725736886262894, 0.01441191416233778, -0.048084963113069534, -0.010565720498561859, 0.0014093283098191023, -0.017405912280082703, -0.05170490965247154, -0.025384878739714622, 0.03936692327260971, -0.008733122609555721, -0.003861276898533106, 0.0033201701007783413, 0.023333575576543808, -0.07589822262525558, -0.046124160289764404, 0.014147959649562836, 0.0215537678450346, 0.0010454482398927212, 0.026244616135954857, -0.0011104941368103027, -0.01702883467078209, -0.00412523141130805, 0.02609378471970558, 0.015166069380939007, -0.010701468214392662, -0.003250410780310631, 0.00748876528814435, -0.014630619436502457, 0.02012087218463421, -0.004596578422933817, -0.025596043094992638, -0.011908117681741714, 0.0014611765509471297, -0.02846183441579342, -0.0035539583768695593, -0.005467628128826618, -0.012255028821527958, 0.014675868675112724, -0.0027281579095870256, 0.012232404202222824, -0.0009054581169039011, -0.02185543067753315, 0.039336759597063065, -0.004962344188243151, -0.03173486888408661, -0.007688616868108511, 0.030407555401325226, 0.005987995769828558, 0.0016431165859103203, -0.007500077597796917, -0.02203642763197422, -0.027255184948444366, 0.013808589428663254, -0.04443484917283058, 0.007043813820928335, -0.035294484347105026, -0.03167453780770302, -0.018416481092572212, 0.007330392953008413, 0.013876463286578655, -0.004758722148835659, 0.02137277089059353, -0.018838807940483093, -0.030618717893958092, -0.04775313287973404, 0.03994008153676987, -0.03066396713256836, 0.012941311113536358, 0.03502298891544342, 0.016832754015922546, -0.018416481092572212, 0.0047021606005728245, 0.023062080144882202, -0.0010181100806221366, 0.011169045232236385, -0.018718142062425613, -0.026772525161504745, -0.001268866821192205, -0.01773774065077305, -0.00857474934309721, -0.0024981405586004257, -0.02031695283949375, 0.010075518861413002, -0.03167453780770302, -0.005859789438545704, 0.012096656486392021, -0.031222043558955193, -0.004245896358042955, -0.007089063059538603, -0.030030477792024612, 0.02696860581636429, 0.027059104293584824, 0.0048303669318556786, -0.006489509250968695, -0.058100149035453796, 0.0400305800139904, -0.01983429305255413, 0.010784425772726536, 0.023740818724036217, 0.011123795993626118, -0.005350734107196331, -0.01888405717909336, 0.009027242660522461, 0.017707575112581253, -0.01739082857966423, -0.005486482288688421, 0.024344144389033318, -0.004611661657691002, 0.014238458126783371, -0.04467618092894554, 0.01300918497145176, -0.005957829300314188, -0.0010850414400920272, -0.047481637448072433, 0.007141853682696819, 0.022669918835163116, 0.008476709015667439, 0.009630567394196987, 0.00531679717823863, 0.004053586628288031, -0.006176534574478865, 0.004042274318635464, -0.02256433665752411, 0.019547713920474052, -0.006003079004585743, -0.0077150119468569756, 0.014517496339976788, -0.0035219069104641676, -0.009351530112326145, 0.002160655800253153, 0.01325051486492157, 0.00262634688988328, -0.028190337121486664, -0.009336446411907673, 0.02282075025141239, -0.006338678300380707, -0.011531040072441101, -0.011719578877091408, 0.00026065504061989486, 0.03140304237604141, -0.03565647825598717, -0.01164416316896677, -2.610085539345164e-05, 0.015196235850453377, -0.0070702088996768, 0.04021157696843147, -0.03303201496601105, 0.0091705322265625, -0.02066386491060257, 0.04914078116416931, -0.004468372091650963, 0.021402936428785324, -0.010241433046758175, 0.02048286609351635, -0.016335010528564453, 0.01977396011352539, 0.019970040768384933, 0.005871101748198271, -0.01346167828887701, 0.009517444297671318, -0.034872155636548996, -0.005052842665463686, 0.005641084164381027, 0.023197827860713005, -0.013529552146792412, -0.024193312972784042, 0.0031712243799120188, -0.01959296315908432, 0.018024319782853127, -0.0002245969808427617, 0.0028092297725379467, -0.014532579109072685, -0.0036482277791947126, 0.014344040304422379, 0.01476636715233326, -0.016093680635094643, 0.048567622900009155, -0.022232508286833763, 0.012315361760556698, 0.028778579086065292, -0.0014715461293235421, -0.005260235629975796, 0.01892930641770363, 0.014185667037963867, -0.04805479571223259, 0.0009092288673855364, -0.014366664923727512, -0.02090519480407238, 0.024977633729577065, -0.012111739255487919, 0.003267379244789481, 0.06039278209209442, -0.002358621684834361, -0.013469219207763672, -0.006157680880278349, -0.003993254154920578, -0.014147959649562836, 0.06407306343317032, -0.002294518519192934, 0.019442131742835045, 0.0010548752034083009, 0.012156988494098186, 0.04286620765924454, 0.019804127514362335, 0.02031695283949375, -0.01262456551194191, 0.012036323547363281, 0.04995526745915413, 0.005188590846955776, -0.020528117194771767, -0.00786584336310625, -0.0019136698683723807, 0.003005310194566846, 0.012986560352146626, 0.0200152900069952, 0.02197609469294548, 0.00794879999011755, 0.007081521209329367, -0.00139895873144269, 0.021478353068232536, 0.01128971017897129, -0.005248923320323229, 0.007466140668839216, 0.03423866629600525, 0.007439745124429464, -0.028371334075927734, -0.011523498222231865, -0.0037424974143505096, -0.016335010528564453, 0.000234966617426835, -0.010497846640646458, 0.018597478047013283, 0.0026357739698141813, -0.011870409362018108, 0.024751387536525726, -0.025746872648596764, -0.005554356146603823, 0.038311105221509933, -0.022850915789604187, -0.0034408350475132465, -0.02179509773850441, 0.01775282435119152, -0.008748205378651619, 0.0158975999802351, -0.012994101271033287, 0.008936744183301926, -0.013642675243318081, -0.005814539734274149, -0.018295815214514732, 0.0023755901493132114, 0.005946516990661621, -0.02496255189180374, 0.006097348406910896, -0.007394495885819197, -0.029562901705503464, -0.028989743441343307, 0.0005764577072113752, -0.010022728703916073, 0.010000104084610939, -0.0006061525782570243, -0.01781315542757511, -0.02072419598698616, -0.014426996931433678, -0.02209676057100296, 0.01063359435647726, 0.012617023661732674, 0.005573210306465626, -0.012926227413117886, 0.005486482288688421, 0.04377119243144989, 0.0020003977697342634, 0.016893086954951286, -0.001723245601169765, 0.03803960978984833, 0.016048431396484375, -0.0006283058901317418, -0.009276114404201508, -0.028672996908426285, 0.006783629767596722, 0.0123832356184721, 0.005539272911846638, 0.00611997302621603, -0.005083009134978056, -0.004245896358042955, 0.002007939387112856, -0.023951983079314232, -0.007775344420224428, 0.017013750970363617, 0.0031674536876380444, -0.009517444297671318, -0.04603365808725357, 0.03704412654042244, 0.025384878739714622, -0.02609378471970558, 0.005546814762055874, -0.010414889082312584, 0.030392471700906754, 0.013114766217768192, -0.037617284804582596, 0.005708958022296429, 0.024449724704027176, 0.026666942983865738, -0.03834127262234688, -0.021991178393363953, 0.03994008153676987, -0.035053152590990067, 0.039879750460386276, -0.0007989336154423654, -0.04889944940805435, 0.03327334672212601, 0.03143320605158806, 0.011244460940361023, -0.02013595588505268, 0.04126739501953125, -0.030120976269245148, 0.024072647094726562, 0.0247664712369442, -0.036108970642089844, 0.009683358483016491, 0.030829882249236107, 0.00525269377976656, 0.020935360342264175, 0.025565875694155693, -0.0029883417300879955, 0.038914430886507034, 0.006300970446318388, 0.007115458603948355, -0.002775292843580246, -0.000999256270006299, 0.0024924844037741423, 0.02365032024681568, -0.0029902271926403046, -0.03128237649798393, -0.004162939265370369, -0.031946033239364624, -0.039397090673446655, -0.008906577713787556, -0.0015884402673691511, -0.002722501754760742, -0.014902114868164062, 0.026817774400115013, 0.0034125542733818293, -0.004796430002897978, 0.0031184335239231586, 0.03466099128127098, -0.0008201442542485893, 0.0003016622504219413, 0.015347067266702652, 0.018446646630764008, -0.03037738800048828, 0.017526576295495033, 0.03270018845796585, -0.016229428350925446, 0.012526525184512138, -0.010671301744878292, -0.026410529389977455, 0.00947219505906105, 0.029758980497717857, 0.01182516012340784, -0.04775313287973404, -0.02150851860642433, -0.005169736687093973, -0.017903653904795647, 0.0005420493544079363, 0.005965371150523424, -0.022202342748641968, 0.01638025976717472, 0.015505439601838589, 0.0014102710410952568, 0.0027677512262016535, 0.014713576063513756, -0.013016725890338421, -0.01172711979597807, 0.011621538549661636, -0.03013605996966362, -0.013974503614008427, 0.028491999953985214, -0.0040762112475931644, -0.026033451780676842, 0.029170740395784378, 0.017239997163414955, 0.00492840725928545, 0.00979648157954216, -0.006500821560621262, -0.016591424122452736, -0.024193312972784042, -0.0124511094763875, 0.05650134012103081, -0.001043562893755734, 0.016154013574123383, -0.018325982615351677, -0.008446543477475643, -0.020045457407832146, 0.014049919322133064, -0.024389393627643585, -0.037617284804582596, -0.031523704528808594, 0.025535710155963898, 0.0012632106663659215, 0.008371127769351006, 0.011463165283203125, 0.020452700555324554, 0.03668212890625, 0.03285101801156998, 0.009902063757181168, -0.009147907607257366, 0.006983481347560883, -0.003642571624368429, 0.008966910652816296, 0.01745116151869297, 0.017601992934942245, 0.016395343467593193, -0.03324317932128906, 0.005384671036154032, 0.038974761962890625, 0.04549066722393036, -0.02841658517718315, 0.003007195657119155, 0.0004562641552183777, -0.014954905956983566, 0.009788939729332924, -0.027798175811767578, -0.0009271400631405413, -0.02244367077946663, -0.013069516979157925, 0.01912538707256317, 0.02185543067753315, 0.002009824849665165, 0.010309307835996151, -0.010550637729465961, -0.011493331752717495, -0.014042377471923828, -0.015241485089063644, 0.02935173735022545, 0.022187259048223495, 0.0025358484126627445, -0.004283604212105274, 0.00794879999011755, -0.015294276177883148, -0.018506979569792747, -0.012458651326596737, -0.003527563065290451, -0.008650165051221848, -0.00489824078977108, 0.01773774065077305, 0.010166018269956112, 0.014902114868164062, 0.009487277828156948, -0.014472246170043945, 0.002530192257836461, 0.017707575112581253, -0.0008847188437357545, 0.005603376310318708, -0.0166668388992548, -0.005946516990661621, -0.032911352813243866, -0.052489232271909714, -0.026350198313593864, 0.04072440415620804, -0.03912559524178505, 0.0012264455435797572, 0.001992856152355671, 0.0011180357541888952, -0.0247664712369442, -0.002816771389916539, -0.004057357087731361, -0.013951878994703293, -0.021131440997123718, 0.02716468647122383, 0.02787359245121479, 0.02971373125910759, -0.020332036539912224, -0.016455676406621933, 0.01235306914895773, -0.013695466332137585, 0.02668202668428421, 0.008831162005662918, 0.013620050624012947, -0.010233892127871513, -0.028733329847455025, -0.016938336193561554, 0.018129901960492134, -0.001469660783186555, 0.034932490438222885, 0.007703699637204409, 0.0039216093719005585, 0.023212909698486328, -0.013650217093527317, 0.04340919852256775, 0.0026357739698141813, -0.0132203483954072, -0.014487329870462418, -0.027949007228016853, 0.002115406561642885, -3.046081656066235e-05, 0.0030769549775868654, 0.019804127514362335, -0.010512929409742355, -0.0023567364551126957, -0.035173818469047546, 0.021991178393363953, 0.04223271459341049, -0.003159912070259452, 0.007141853682696819, 0.008642623201012611, 0.014804075472056866, 0.011983533389866352, -0.011960908770561218, 0.011093629524111748, 0.013499385677278042, 4.3481784814503044e-05, -0.005791915114969015, 0.010407348163425922, 0.023137494921684265, -0.0090875755995512, -0.005067925900220871, -0.007858301512897015, 0.0007400152389891446, -0.005049071740359068, 0.0006466884515248239, 0.013175099156796932, 0.010558178648352623, -0.01601826585829258, -0.006210471503436565, -0.008099631406366825, -0.023982148617506027, -0.004460830707103014, -0.009517444297671318, 0.013491843827068806, -0.022775501012802124, -0.0030279348138719797, 0.023393908515572548, -0.017556743696331978, -0.017315413802862167, 0.032790686935186386, -0.03191586583852768, -0.03638046607375145, -0.020105788484215736, 0.0028676767833530903, -0.04265504330396652, -0.005237611010670662, 0.008265545591711998, -0.03556597977876663, -0.002505682175979018, -0.008619998581707478, -0.02674235962331295, 0.010882466100156307, -0.012360610999166965, 0.0027451266068965197, 0.008046840317547321, -0.0021870513446629047, -0.004890699405223131, 0.008144880644977093, -0.03834127262234688, -0.016395343467593193, -0.025641292333602905, -0.03007572703063488, 0.014773909002542496, 0.06262508034706116, 0.02817525528371334, 0.02238333970308304, -0.026636777445673943, -0.010052894242107868, 0.01185532659292221, -0.032127030193805695, -0.00938169565051794, 0.022534171119332314, 0.01518869400024414, 0.0038047151174396276, 0.0024170686956495047, -0.03580730780959129, -0.036591630429029465, 0.03221752867102623, -0.015414941124618053, 0.011810077354311943, 0.013567259535193443, -0.03084496594965458, 0.01668192259967327, -0.0022794355172663927, 0.010739176534116268, -0.008914119563996792, 0.0034276372753083706, -0.02478155493736267, 0.0008498391252942383, -0.021780014038085938, -0.025882622227072716, 0.011312334798276424, -0.006312282755970955, 0.0017307872185483575, -0.022850915789604187, -0.01577693596482277, -0.10045353323221207, -0.023212909698486328, -0.0008088319445960224, 0.01822040043771267, 0.010482762940227985, -0.009298739023506641, 0.006195388734340668, 0.010256516747176647, -0.011485789902508259, -0.006625257432460785, -0.0020814696326851845, -0.010754259303212166, -0.005407296121120453, 0.003173109842464328, -0.013197723776102066, 0.006738380528986454, -0.0015903257299214602, -0.02351457253098488, -0.004392956383526325, 0.003966858610510826, -0.013137390837073326, 0.01567135378718376, 0.02162918448448181, -0.006900524254888296, -0.007918634451925755, 0.02162918448448181, -0.010331932455301285, -0.014509954489767551, 0.017586909234523773, -0.016229428350925446, 0.004170480649918318, 0.002098438097164035, 0.0007527415873482823, -0.03297168388962746, 0.01631992869079113, 0.005716499872505665, -0.011071004904806614, -8.554953092243522e-05, -0.002916696947067976, -0.014065003022551537, 0.002486828248947859, -0.015399858355522156, -0.0045098508708179, -0.006244408432394266, 0.015505439601838589, 0.00842391885817051, -0.013770882040262222, -0.018310898914933205, -0.01906505413353443, 0.017164582386612892, 0.0032881186343729496, 0.01876339130103588, -0.023544738069176674, -0.024691054597496986, -0.0032541814725846052, 0.006153909955173731, 0.0022756645921617746, -0.01202878262847662, 0.005569439381361008, 0.009902063757181168, 0.03809994086623192, 0.008838703855872154, -0.00032499394728802145, 0.0038311106618493795, -0.02549046091735363, 0.007933717221021652, 0.028145087882876396, 0.02101077511906624, 0.04205171763896942, -0.02948748506605625, 0.02340899035334587, 0.008046840317547321, -0.023424074053764343, 0.01644059270620346, 0.024811720475554466, 0.031946033239364624, 0.01751149445772171, 0.018552228808403015, 0.02238333970308304, -0.007428432814776897, -0.02793392539024353, 0.0031995053868740797, 0.00822029635310173, 0.003318284871056676, 0.0166668388992548, -0.010897548869252205, 0.012119281105697155, 0.0006103946943767369, 0.018974555656313896, 0.002782834228128195, 0.015686437487602234, 0.0018627643585205078, 0.023243077099323273, -0.0031203189864754677, -0.0057617491111159325, 0.046968813985586166, -0.01381613127887249, 0.012707522138953209, -0.019819209352135658, -0.017119333148002625, -0.0022134468890726566, -0.016953418031334877, -0.01479653362184763, 0.010497846640646458, -0.00030920380959287286, -0.007767803035676479, -0.006753463763743639, 0.0068213376216590405, 0.0006631856085732579, -0.02256433665752411, 0.01172711979597807, -0.012820646166801453, -0.020890111103653908, 0.03366550803184509, -0.015505439601838589, 0.03330351412296295, 0.006874128710478544, -0.003832995891571045, -0.008725580759346485, 0.01178745273500681, -0.006953314878046513, 0.01006797794252634, 0.01625959575176239, -0.007130541373044252, -0.0011359469499439, 0.0010529898572713137, -0.014019752852618694, 0.007994050160050392, 0.0022436128929257393, 0.00846162624657154, 0.007933717221021652, 0.0068213376216590405, -0.010445055551826954, 0.005795686040073633, -0.005535502452403307, 0.009902063757181168, 0.021991178393363953, -0.004962344188243151, 0.018808642402291298, -0.021342603489756584, -0.0002738527546171099, 0.02024153806269169, 0.010678843595087528, 0.01906505413353443, -0.016108764335513115, 0.0001681531430222094, -0.0019287529867142439, 0.01642550900578499, 0.002486828248947859, -0.01042243093252182, -0.0077150119468569756, -0.022971579805016518, 0.01539231650531292, 0.016154013574123383, 0.0034540328197181225, 0.006708214525133371, -0.02262466959655285, 0.014178126119077206, -0.007326622027903795, -0.03251919150352478, -0.019457215443253517, 0.004905782174319029, 0.009351530112326145, 0.007405808195471764, 0.004988739732652903, 0.00326926470734179, -0.0060407863929867744, -0.005471399053931236, 0.015912683680653572, -0.0024962550960481167, 0.00510563375428319, 0.0007890353444963694, 0.003932921681553125, -0.03161420300602913, 0.0010727863991633058, -0.019924791529774666, -0.01217961311340332, 0.015090654604136944, 0.021840346977114677, -0.01787348836660385, -0.009728607721626759, 0.007451057434082031, 0.000299541192362085, 0.0049548023380339146, 0.0091705322265625, 0.00440803961828351, -0.02030186913907528, 0.006451801396906376, 0.004336394835263491, 0.02191576361656189, 0.025354713201522827, 0.03852226957678795, -0.016169097274541855, 0.013589884154498577, 0.005150882992893457, -0.01953263022005558, 0.04322820156812668, 0.019442131742835045, -0.03764744848012924, -0.005893726367503405, -0.017345579341053963, -0.013514469377696514, 0.008016674779355526, 0.014615535736083984, 0.00381225673481822, 0.0037274141795933247, -0.02244367077946663, -0.0009591917041689157, 0.014917198568582535, -0.005354505032300949, 0.015701521188020706, -0.013031809590756893, 0.04597332701086998, 0.00031910210964269936, -0.0021455727983266115, -0.01947229914367199, 0.02280566655099392, -0.014426996931433678, 0.01357480138540268, -0.009947312995791435, 0.017722656950354576, -0.0029506338760256767, -0.017119333148002625, -0.0048454501666128635, 0.01536215003579855, 0.01613892987370491, 0.02710435353219509, -0.04573199898004532, -0.01465324405580759, -0.0017618960700929165, -0.0098568145185709, 0.012300278060138226, 0.01178745273500681, -0.018416481092572212, -0.0023096015211194754, 0.0006268918514251709, 0.03366550803184509, -0.017948903143405914, 0.009894521906971931, 0.026576444506645203, -0.011267085559666157, -0.030301973223686218, -0.007156936917454004, 0.013363637961447239, 0.00678740069270134, 0.020890111103653908, -0.03571680933237076, -0.027798175811767578, 0.015060488134622574, 0.00794879999011755, 0.014102710410952568, 0.021810181438922882, -0.0076018888503313065, 0.008144880644977093, 0.007066438440233469, -0.0013565374538302422, 0.0016666839364916086, 0.0011218064464628696, -0.0006697844946756959, 0.014080085791647434, -0.02251908741891384, 0.02429889515042305, -8.024687122087926e-05, 0.020497949793934822, 0.02565637417137623, -0.010512929409742355, -0.01947229914367199, 0.01367284171283245, 0.004675765056163073, -0.009690900333225727, -0.004868074785917997, -0.005543043836951256, -0.024464808404445648, 0.012405860237777233, -0.005693875253200531, 0.0067949420772492886, -0.013039350509643555, -0.026651859283447266, -0.001917440677061677, -0.01906505413353443, -0.017119333148002625, 0.03140304237604141, -0.018446646630764008, 0.013288222253322601, 0.017255080863833427, 0.010528012178838253, 0.002192707499489188, -0.022911248728632927, 0.016862919554114342, -0.008665247820317745, 0.025053050369024277, 0.004012107849121094, 0.000673083879519254, 0.01307705882936716, 0.027888676151633263, 0.005520419217646122, 0.002358621684834361, 0.0031806514598429203, 0.015882518142461777, -0.03257952257990837, -0.0033201701007783413, -0.013974503614008427, -0.03263985738158226, -0.009404321201145649, 0.006753463763743639, -0.00024038710398599505, 0.007130541373044252, -0.01346167828887701, -0.00017263094196096063, -0.020633697509765625, -0.008348503150045872, 0.0009195985039696097, -0.018129901960492134, -0.04024174436926842, 0.01465324405580759, 0.032549358904361725, 0.0032485253177583218, -0.012956393882632256, -0.025882622227072716, -0.032609689980745316, 0.016953418031334877, -0.008702956140041351, 0.0018391970079392195, 0.013537093997001648, -0.03997024893760681, -0.010369639843702316, 0.010384722612798214, -0.004894469864666462, 0.0045437877997756, 0.01595793291926384, -0.03330351412296295, 0.03876360133290291, 0.0043891859240829945, -0.006817566696554422, -0.011568747460842133, 0.0005472342018038034, 0.006267033517360687, 0.0005415779887698591, -0.02690827287733555, -0.00911774206906557, -0.009193156845867634, 0.0077602616511285305, 0.003667081706225872, -0.01420075073838234, 0.005313026253134012, -0.0036463425494730473, -0.002085240324959159, 0.014939823187887669, 0.011749744415283203, 0.012941311113536358, 0.00629719952121377, 0.01134250033646822, 0.020739279687404633, -0.011621538549661636, -0.006319824140518904, 0.0028412812389433384, 0.030332138761878014, 0.014366664923727512, 0.0021304895635694265, -0.041840553283691406, 0.0017477556830272079, -0.007228581700474024, -0.0029581754934042692, 0.020452700555324554, 0.003293774789199233, -0.01101821381598711, -0.01143299974501133, -0.017496410757303238, 0.010060436092317104, -0.00982664804905653, 0.023197827860713005, -0.0035181359853595495, -0.02530946396291256, -0.011975991539657116, -0.0037142164073884487, 0.014630619436502457, -0.004773805383592844, 0.0030656426679342985, 0.005011364351958036, -0.010105685330927372, -0.011568747460842133, -0.009819106198847294, -0.0025716708041727543, 0.027194852009415627, -0.04298686981201172, 0.020513033494353294, -0.017662324011325836, 0.008401293307542801, -0.004317541141062975, -0.007390725426375866, 0.0006146368687041104, -0.012752771377563477, -0.0059201219119131565, 0.005414837505668402, 0.020739279687404633, -0.004291145596653223, -0.048688288778066635, 0.011779910884797573, -0.0034521473571658134, -0.023499488830566406, -0.01042243093252182, 0.00022754289966542274, 0.010867382399737835, 0.03743628412485123, -0.025505542755126953, -0.0026866793632507324, -0.012315361760556698, -0.00699856411665678, -0.0023152579087764025, -0.026516111567616463, -0.007345475722104311, 0.007096604444086552, 0.007933717221021652, 0.002411412540823221, -0.0018222285434603691, 0.025083215907216072, -0.005011364351958036, 0.007017418276518583, -0.02250400371849537, -0.0067949420772492886, 0.0009544782224111259, 0.004570183344185352, -0.016169097274541855, -0.02846183441579342, -0.022639751434326172, 0.023258158937096596, -0.01918572001159191, -0.001102952635847032, 0.009147907607257366, -0.02375590242445469, 0.005335650872439146, 0.007537785451859236, -0.011138878762722015, 0.0014413800090551376, 0.029985228553414345, -0.027375848963856697, 0.0065272171050310135, -0.00863508228212595, 0.006067181937396526, 0.007797969039529562, -0.016712088137865067, -0.0022209882736206055, 0.002205905271694064, -0.005199903156608343, -0.004321311600506306, -0.004736097529530525, 0.016576340422034264, -0.022715168073773384, -0.009426945820450783, 0.001412156387232244, 0.02209676057100296, -0.010739176534116268, 0.01053555402904749, -0.02668202668428421, -0.003783975960686803, 0.006285887211561203, -0.02244367077946663, 0.008446543477475643, -0.009306280873715878, 0.03526431694626808, 0.020286787301301956, 0.014012211933732033, -0.02936682105064392, 0.004894469864666462, -0.015565772540867329, 0.01965329609811306, 0.012715063989162445, 0.011184128001332283, -0.0028978430200368166, -0.0224587544798851, 0.008778371848165989, -0.01840139739215374, 0.01262456551194191, 0.002319028601050377, 0.00570141663774848, -0.03918592631816864, -0.022896165028214455, -0.012436026707291603, 0.0016233200440183282, -0.0048115127719938755, 0.01698358543217182, -0.007066438440233469, 0.013024267740547657, 0.0030279348138719797, 0.011840243823826313, 0.0091705322265625, 0.021689515560865402, -0.005030218046158552, -0.013446594588458538, 0.02787359245121479, 0.001573357149027288, 0.02149343490600586, -0.027783093973994255, 0.01277539599686861, 0.006097348406910896, -0.034872155636548996, -0.01316001545637846, -0.0323985256254673, -0.006926919333636761, -0.01083721686154604, 0.0013291992945596576, -0.008687872439622879, -0.05185574293136597, 0.011908117681741714, 0.010573262348771095, -0.029668482020497322, -0.0008908463642001152, 0.01185532659292221, 0.010995589196681976, 0.00503398897126317, -0.005840935278683901, 0.015241485089063644, -0.006459342781454325, 0.009049867279827595, 0.0057466658763587475, -0.0040799821726977825, -0.014426996931433678, -0.00803929939866066, -0.012134363874793053, -0.008024215698242188, -0.02031695283949375, -0.02156885154545307, -0.006606403272598982, -0.005290401633828878, 0.015701521188020706, -0.003733070334419608, -0.005313026253134012, -0.01524902693927288, -0.007813052274286747, 0.0008493677596561611, 0.009939771145582199, -0.0011972220381721854, 0.001010568579658866, 0.004193105269223452, 0.0189443901181221, -0.013084600679576397, 0.013823673129081726, 0.004819054622203112, 0.011576289311051369, -0.019638212397694588, -0.00461543258279562, -0.009992562234401703, -0.0264406967908144, 0.007549097761511803, 0.0039253802970051765, 0.07004597783088684, 0.01767740771174431, 0.009577776305377483, 0.0034163249656558037, -0.003849964588880539, -0.028130006045103073, 0.010030269622802734, -0.003033590968698263, 0.020678946748375893, 0.00678740069270134, 0.0020701573230326176, -0.02936682105064392, 0.024872053414583206, 0.00622555473819375, -0.0058899554423987865, 0.011380208656191826, 0.013914171606302261, 0.0317951999604702, -0.033092349767684937, 0.03472132608294487, 0.02464580535888672, 0.01917063631117344, 0.003859391435980797, 0.0029751439578831196, -0.009276114404201508, 0.01995495893061161, 0.009313821792602539, -0.013484302908182144, 0.002253039972856641, 0.03562631085515022, 0.01648584194481373, -0.012255028821527958, -0.008710497990250587, -0.007104146294295788, 0.006727068219333887, 0.020859945565462112, 0.003205161541700363, 0.0018523947801440954, -0.014215833507478237, 0.01595793291926384, 0.012390777468681335, -0.006613945122808218, 0.02209676057100296, -0.0010199955431744456, 0.007963883690536022, 0.0027187310624867678, -0.02662169374525547, -8.496034570271149e-05, 0.0011284053325653076, -0.02132752165198326, -0.023031912744045258, -0.00622555473819375, 0.016893086954951286, -0.00982664804905653, 0.009917146526277065, -0.008883953094482422, -0.0055882930755615234, -0.009630567394196987, -0.010497846640646458, 0.0014536349335685372, -0.008476709015667439, -0.0012547264341264963, -0.02549046091735363, -0.0021549996454268694, 7.953985186759382e-05, -0.018190233036875725, -0.022051511332392693, -0.007620742544531822, -0.0034955113660544157, 0.00759434700012207, -0.006236867047846317, -0.0020776987075805664, 0.013242973014712334, -0.013476761057972908, -0.01178745273500681, 0.016712088137865067, -0.0013584227999672294, 0.030166225507855415, -0.009095116518437862, -0.003667081706225872, 0.013499385677278042, 0.0033427949529141188, 0.00225492543540895, -0.009932229295372963, 0.0018740767845883965, -0.0069947936572134495, -0.008046840317547321, 0.013273139484226704, 0.007873385213315487, -0.021870512515306473, -0.00857474934309721, 0.006629027891904116, 0.009547610767185688, 0.010377181693911552, 0.010384722612798214, -0.007658450398594141, 0.013506927527487278, 0.00803929939866066, 0.003974399995058775, 0.00015625162632204592, 0.005196132231503725, 0.02482680417597294, 0.0031957344617694616, 0.013325929641723633, 0.0034031271934509277, -0.005346963647753, 0.02340899035334587, 0.01021126750856638, -0.009577776305377483, 0.008348503150045872, -0.011515956372022629, -0.015233944170176983, 0.003680279478430748, 0.02054319903254509, -0.04479684308171272, -0.0012349298922345042, 0.00786584336310625, -0.002319028601050377, -0.0032598376274108887, -0.002505682175979018, -0.016651757061481476, 0.008838703855872154, -0.0028997284825891256, -0.007386954501271248, 0.007296455558389425, -0.006387697998434305, -0.008868870325386524, -0.004649369511753321, -0.002918582409620285, -0.02423856221139431, 0.015641188248991966, 0.010754259303212166, 0.016123848035931587, 0.016123848035931587, 0.016862919554114342, -0.007628284394741058, -0.012986560352146626, -0.0030882672872394323, 0.01793382130563259, 0.0017392714507877827, 0.006168993189930916, 0.03755695000290871, -0.004875616170465946, 0.00720595708116889, 0.0005198960425332189, 0.003861276898533106, -0.02031695283949375, -0.02197609469294548, -0.014185667037963867, -0.003902755444869399, 0.008725580759346485, -0.0256714578717947, -0.002980800112709403, 0.0030015395022928715, 0.029200905933976173, -0.006187846884131432, -0.017436077818274498, 0.034932490438222885, -0.016033349558711052, -0.00979648157954216, -0.008702956140041351, -0.0069495439529418945, -0.012715063989162445, -0.013031809590756893, 0.003614290850237012, 0.011274626478552818, 0.0180394034832716, 0.032730355858802795, 0.015761852264404297, 0.009095116518437862, -0.009494819678366184, 0.005950287915766239, -0.002292633056640625, 0.00139895873144269, -0.004321311600506306, -0.014864407479763031, -0.006598861888051033, -0.003472886746749282, -0.01631992869079113, 0.023258158937096596, -0.010135851800441742, -0.012104198336601257, -0.00842391885817051, 0.01882372424006462, -0.013310846872627735, -0.02280566655099392, 0.0035860100761055946, -0.004396727308630943, 0.011523498222231865, 0.001458348473533988, 0.0008842474780976772, 0.036410633474588394, 0.013242973014712334, -0.002113521099090576, -0.021885596215724945, -0.0028695622459053993, 0.008680331520736217, 0.01172711979597807, 0.01080705039203167, -0.004860532935708761, 0.015490356832742691, 0.0019890854600816965, 0.015505439601838589, 0.007722553797066212, -0.008997077122330666, -0.025882622227072716, -0.0033352533355355263, -0.005618459545075893, -0.012337986379861832, -0.004886928480118513, -0.08506875485181808, -0.026893189176917076, 0.015264109708368778, 0.005343192722648382, -0.03137287497520447, -0.000862565531861037, 0.029155656695365906, -0.004807742312550545, 0.018205316737294197, -0.004396727308630943, 0.0011067234445363283, 0.006067181937396526, 0.03858260065317154, -0.021418020129203796, -0.0036482277791947126, -0.00047888883273117244, 0.01178745273500681, 0.0037387264892458916, 0.010905090719461441, -0.010271599516272545, 0.02900482527911663, -0.005233840085566044, -0.02852216549217701, 0.012820646166801453, 0.0037651220336556435, 0.008921661414206028, -0.0009822876891121268, 0.019909707829356194, 0.017782989889383316, -0.010980506427586079, -0.007507619448006153, 0.009132824838161469, 0.0023510803002864122, -0.0017043916741386056, 0.011930742301046848, 0.01074671745300293, -0.00822029635310173, -0.01178745273500681, -0.0020041686948388815, -2.66163915512152e-05, -0.011478248983621597, -0.0006942945183254778, 0.000521781446877867, 0.006719526834785938, 0.01720983162522316, 0.012368152849376202, 0.012058948166668415, -0.010626052506268024, 0.000279744592262432, -0.002006053924560547, 0.010173559188842773, 0.009034784510731697, -0.0007664106669835746, -0.009864355437457561, 0.0019909709226340055, 0.005938975606113672, -0.013589884154498577, 0.01185532659292221, -0.015942849218845367, 0.008755747228860855, -0.003510594367980957, -0.0033974710386246443, 0.004332623910158873, 0.008439001627266407, 0.008416377007961273, 0.001017167465761304, -0.0018128015799447894, -0.005275318864732981, 0.009985020384192467, 0.013740715570747852, -0.007813052274286747, -0.006349990610033274, 0.004803971387445927, -0.008499333634972572, -0.00598422484472394, -0.003205161541700363, -0.005218756850808859, 0.003016622504219413, 0.008114714175462723, 0.003825454507023096, 0.00024651462445035577, -0.0012302163522690535, 0.003836766816675663, -0.009668274782598019, -0.007888467982411385, -0.00048595902626402676, -0.008853787556290627, -0.009064950980246067, -0.016169097274541855, 0.008092089556157589, -0.01248127594590187, -0.005460086744278669, 0.0025019112508744, -0.02460055612027645, 0.0054487744346261024, -0.007428432814776897, 0.0059050386771559715, 0.00938169565051794, -0.012896060943603516, -0.010528012178838253, 0.02286599949002266, 0.011953366920351982, 0.017164582386612892, -0.025053050369024277, -0.003071298822760582, -0.015490356832742691, 0.00958531815558672, -0.004294916521757841, -0.013288222253322601, -0.004091294482350349, 0.0014017868088558316, -0.0025452752597630024, -0.01122937723994255, 0.020875027403235435, 0.006444260012358427, 0.017963986843824387, -0.0009172417921945453, -0.002160655800253153, 0.005965371150523424, -0.019879542291164398, 0.00042374120675958693, 0.011169045232236385, -0.014630619436502457, -0.0036840501707047224, -0.006240637972950935, 0.0015714718028903008, -0.012843270786106586, 0.007677304558455944, -0.022654835134744644, 0.0032843477092683315, -0.022609585896134377, 0.006546070799231529, 0.010520471259951591, 0.005795686040073633, -0.0014093283098191023, 0.016878003254532814, 0.01787348836660385, -0.023212909698486328, 0.012330444529652596, 0.01063359435647726, 0.005980454385280609, -0.0023152579087764025, 0.009902063757181168, 0.0030524448957294226, 0.0007946914993226528, 0.005184819921851158, 0.001308460021391511, 0.0019758876878768206, -0.03472132608294487, 0.018914222717285156, -0.005052842665463686, -0.007243664935231209, -0.01977396011352539, 0.0005764577072113752, 0.01042243093252182, -0.003772663651034236, 0.004581495653837919, 0.0032768063247203827, -0.024313976988196373, 0.0007961055380292237, -0.008899036794900894, -0.006093577481806278, -0.020573366433382034, -0.013589884154498577, -0.019396882504224777, -0.003959317225962877, -0.00236050714738667, -0.009155449457466602, -0.011244460940361023, 0.0010030269622802734, 0.02371065318584442, 0.010248974896967411, -0.01140283327549696, -0.02268500067293644, 0.023620154708623886, 0.0033390240278095007, 0.024374309927225113, 0.007443516049534082, 0.002801688155159354, -0.004785117693245411, -0.008227838203310966, -0.007994050160050392, -0.00409506494179368, -0.007650909014046192, -0.00982664804905653, 0.012737688608467579, -0.020769445225596428, 0.037315621972084045, -0.01259439904242754, 0.009185615926980972, 0.015912683680653572, 0.011086087673902512, 0.017285246402025223, 0.007994050160050392, 0.010935256257653236, -0.015233944170176983, 0.008763288147747517, 0.01417058426886797, 0.004890699405223131, -0.026003286242485046, 0.00976631511002779, 0.0019909709226340055, -0.011025755666196346, 0.00797896645963192, -0.0007602831465192139, -0.008619998581707478, 0.017436077818274498, 0.015520523302257061, 0.014555203728377819, -0.007315309718251228, 0.013408887200057507, -0.0009219552739523351, 0.028688080608844757, -0.005101862829178572, 0.014464705251157284, 0.003095808904618025, 0.03048297017812729, 0.008770829997956753, -0.018009236082434654, -0.011764828115701675, -0.00016732828225940466, -0.023393908515572548, -0.016531091183423996, 0.025173714384436607, -0.007775344420224428, -0.0055920640006661415, -0.0011180357541888952, -0.022473838180303574, 0.00961548462510109, 0.030226558446884155, -0.018778475001454353, 0.004717243369668722, -0.004181792959570885, 0.0029355508740991354, 0.02793392539024353, 0.010143393650650978, 0.0012094770791009068, 0.010248974896967411, 0.010897548869252205, -0.012526525184512138, 0.008408835157752037, 0.027888676151633263, 0.008469168096780777, -0.001690251287072897, -0.03251919150352478, 0.006187846884131432, -0.01280556246638298, 0.023182744160294533, 0.01876339130103588, -0.030860047787427902, 0.010075518861413002, 0.008137339726090431, -0.007096604444086552, 0.013936796225607395, -0.0012226748513057828, -0.007903550751507282, -0.007662221323698759, 0.019577879458665848, -0.00895936880260706, 0.006564924959093332, -0.015807101503014565, 0.004641828127205372, 0.010912631638348103, 0.002111635869368911, 0.025143548846244812, -0.015347067266702652, 0.004558871034532785, 0.003612405387684703, 0.00887641217559576, -0.006127514410763979, -0.014721117913722992, 0.024811720475554466, 0.0034427205100655556, 0.020588448271155357, 0.012074031867086887, 0.006753463763743639, -0.00979648157954216, 0.00797896645963192, 0.0100076450034976, 0.01809973455965519, 0.0017279591411352158, -0.017315413802862167, 0.010965422727167606, 0.0014772024005651474, 0.007405808195471764, 0.010814592242240906, -0.004464601166546345, 0.02589770406484604, -0.006466884631663561, 0.007175791077315807, -0.01316001545637846, -0.014102710410952568, -0.02161410078406334, 0.022941414266824722, -0.008906577713787556, 0.006395239848643541, -0.02500780113041401, 0.019985124468803406, -0.0038650475908070803, -0.003046788740903139, 0.022700084373354912, 0.00898953527212143, -0.010588345117866993, 0.013559718616306782, -0.010897548869252205, 0.024675972759723663, -0.0032881186343729496, 0.00204753247089684, 0.020437616854906082, -0.004660681821405888, -0.005358275957405567, -0.012021240778267384, 0.012089114636182785, -0.010648677125573158, 0.016938336193561554, -0.010693927295506, 0.006052099168300629, 0.036712296307086945, 0.01444208063185215, -0.007688616868108511, -0.014819158241152763, -0.006485738325864077, 0.00335787795484066, -4.312827513786033e-05, -0.0005778717459179461, 0.004170480649918318, -0.003733070334419608, 0.009600400924682617, 0.012737688608467579, -0.0008159021381288767, -0.001998512540012598, 0.008944286033511162, -0.01702883467078209, 0.022669918835163116, -0.0075905765406787395, -0.02714960277080536, -0.007507619448006153, -0.0017750938422977924, 0.003536989912390709, -0.012224862352013588, 0.008099631406366825, -0.004547558259218931, -0.009509902447462082, -0.003450262127444148, 0.014962447807192802, -0.007994050160050392, -0.012609481811523438, 0.006429176777601242, 0.00559960538521409, -0.0057768323458731174, -0.016546174883842468, -0.018974555656313896, -0.011123795993626118, 0.003016622504219413, -0.020226454362273216, 0.0012980903265997767, 0.014095168560743332, 0.000689581036567688, -0.011832701973617077, 0.02377098612487316, 0.02054319903254509, 0.003459688974544406, -0.007650909014046192, 0.009253489784896374, -0.014607994817197323, -0.0008451256435364485, -0.014080085791647434, -0.006346219684928656, 0.014917198568582535, -0.011417916044592857, 0.014396831393241882, -0.02162918448448181, -0.0037274141795933247, 0.01181761920452118, 0.0037161018699407578, 0.02561112493276596, 0.013989587314426899, -0.016817670315504074, 0.003929150756448507, -0.013537093997001648, 0.0207845289260149, -0.022142009809613228, 0.0016035233857110143, -0.005429920740425587, -0.005648625548928976, -0.010331932455301285, -0.014819158241152763, 0.016274679452180862, -0.015686437487602234, -0.004336394835263491, -0.000722575350664556, -0.002473630476742983, -0.020573366433382034, -0.020769445225596428, -0.0010859840549528599, 0.0005637313588522375, 0.01506802998483181, -0.006236867047846317, -0.012111739255487919, -0.007658450398594141, -0.012134363874793053, -0.01506802998483181, 0.018114818260073662, 0.00419687619432807, -0.012896060943603516, -0.011712037026882172, 0.005833393894135952, -0.006399010773748159, 0.024691054597496986, -0.006561154033988714, -0.0149775305762887, -0.022247591987252235, -0.009080033749341965, 0.0032447546254843473, 0.0011321761412546039, 0.0032296713907271624, 0.004449518397450447, 0.009902063757181168, 0.026470862329006195, -0.011252001859247684, 0.005271547939628363, -0.01692325249314308, -0.004705931060016155, 0.0008380554500035942, 0.010799508541822433, -0.0020249078515917063, -0.02149343490600586, -0.00017934764036908746, -0.006957085803151131, -0.005644855089485645, 0.00731153879314661, -0.009954853914678097, 0.002581097651273012, 0.004540016874670982, 0.019246051087975502, -0.007963883690536022, 0.009389237500727177, -0.0019796586129814386, -0.007782886270433664, 0.0010445055086165667, -0.026229532435536385, 0.0038537352811545134, -0.004747409839183092, 0.0034389495849609375, -0.03550564870238304, -0.020286787301301956, 0.013537093997001648, -0.02126718871295452, 0.015460190363228321, 0.0024943698663264513, -0.006568695418536663, -0.007790427654981613, -0.020694030448794365, 0.004306228831410408, 0.0020230223890393972, -0.009374154731631279, 0.008619998581707478, -0.0009111142717301846, -0.01378596480935812, -0.03595814108848572, -0.0165009256452322, 0.0016252053901553154, -0.005233840085566044, 0.0008083605789579451, 0.005799456965178251, 0.002007939387112856, -0.012503900565207005, 0.00195891922339797, 0.001844853162765503, -0.028009340167045593, 0.012518983334302902, 0.012843270786106586, 0.006561154033988714, -0.013393804430961609, -1.3551233678299468e-05, 0.012526525184512138, 0.015761852264404297, -0.017586909234523773, 0.016832754015922546, -0.008657706901431084, -0.0041893343441188335, -0.008325878530740738, -0.003974399995058775, -0.021599017083644867, 0.011236919090151787, 0.0016581997042521834, -0.025384878739714622, -0.005829622969031334, -0.005610917694866657, -0.014366664923727512, -0.01779807358980179, 0.0030279348138719797, 0.007926175370812416, -0.007175791077315807, -0.00689298240467906, -0.025339629501104355, 0.016410427168011665, -0.0023341116029769182, -0.0036765087861567736, -0.0007334163528867066, -0.024751387536525726, -0.0069608562625944614, -0.0009129996760748327, -0.01053555402904749, -0.026244616135954857, -0.02733059972524643, 0.00142535415943712, -0.009223323315382004, -0.032489024102687836, 0.016757337376475334, 0.018808642402291298, 0.0011755401501432061, -0.010158476419746876, 0.01625959575176239, -0.005546814762055874, -0.0406339056789875, 0.0027413556817919016, -0.002475515939295292, -0.005675021093338728, 0.0076018888503313065, 0.017255080863833427, -0.027119437232613564, 0.019879542291164398, 0.013582343235611916, 0.004110148176550865, 0.0002268358803121373, -0.0071229999884963036, -0.0005660880706273019, -0.00878591276705265, 0.018718142062425613, -0.007111687678843737, -0.012217321433126926, -0.00797896645963192, -0.0008979165577329695, 0.015158528462052345, -0.013582343235611916, -0.0048567624762654305, 0.0020117100793868303, -0.01536215003579855, 0.0049962811172008514, -0.01965329609811306, -0.01662158966064453, 0.01977396011352539, -0.010784425772726536, -0.008944286033511162, 0.02090519480407238, 0.020633697509765625, 0.004317541141062975, -0.0021210627164691687, 0.010890007019042969, 0.00789600983262062, 0.010995589196681976, 0.003797173500061035, 0.00221910304389894, -0.018899140879511833, 0.0023152579087764025, -0.0045023090206086636, 0.004807742312550545, -0.008559666574001312, -0.003071298822760582, 0.018069569021463394, -0.01714949868619442, -0.028733329847455025, -0.022911248728632927, -0.014879490248858929, -0.012911144644021988, -0.0075868056155741215, 0.00846162624657154, -0.008733122609555721, 0.012255028821527958, -0.003997025080025196, 0.00803929939866066, -0.022142009809613228, -0.011297251097857952, -0.028612663969397545, 0.013627592474222183, -0.0020437617786228657, -0.004453288856893778, -0.0007843218627385795, 0.013876463286578655, -0.0017307872185483575, -0.00601439131423831, -0.018371231853961945, -0.0007140911184251308, 0.016274679452180862, -0.00195891922339797, 0.014132876880466938, 0.03155387192964554, -0.01340134534984827, -0.011455624364316463, -0.0075754933059215546, 0.00031933776335790753, 0.0012141906190663576, -0.0021078649442642927, -0.005825852043926716, -0.0007310596411116421, -0.004098835866898298, 0.02466088905930519, 0.012405860237777233, -0.003303201636299491, 0.003744382644072175, 0.01196844968944788, -0.010641136206686497, -0.013469219207763672, 0.017104249447584152, -0.020920276641845703, 0.006168993189930916, 0.00702873058617115, -0.0028299689292907715, -0.003095808904618025, -0.01648584194481373, -0.009193156845867634, 0.0017213602550327778, 0.012300278060138226, -0.019381800666451454, -0.007322851102799177, 0.014509954489767551, -0.010369639843702316, 0.0060747237876057625, -0.011508414521813393, 0.0009224265813827515, 0.010467680171132088, 0.01319018192589283, 0.014706035144627094, 0.0001462354848627001, 0.002916696947067976, -0.0007871499401517212, -0.01638025976717472, -0.0042195008136332035, -0.000789978017564863, -0.005999308079481125, -0.013748257420957088, 0.015595938079059124, 0.0180394034832716, -0.030980713665485382, 0.004506079945713282, -0.005686333402991295, 0.0006169935804791749, -0.008227838203310966, -0.023424074053764343, 0.003435178892686963, 0.00469084782525897, -0.01346167828887701, 0.008702956140041351, -0.033092349767684937, 0.024329060688614845, 0.013416429050266743, -0.01399712823331356, 0.014457163400948048, -0.031946033239364624, 0.011689412407577038, 0.017420995980501175, 0.02310732938349247, -0.0035841246135532856, -0.00710037536919117, 0.005659937858581543, 0.008416377007961273, 0.017194747924804688, -0.0064970506355166435, -0.001548847183585167, 0.0006471598171629012, -0.009095116518437862, -0.005603376310318708, 0.002369933994486928, -0.010588345117866993, 0.026485946029424667, 0.013687924481928349, -0.011983533389866352, -0.01280556246638298, -0.0005161252338439226, -0.01823548413813114, 0.026244616135954857, 0.0006231211009435356, 0.005618459545075893, -0.024630723521113396, 0.010226350277662277, 0.01983429305255413, -0.01003781147301197, 0.011960908770561218, 0.014132876880466938, 0.0043778736144304276, 0.008446543477475643, 0.011893033981323242, -0.015045404434204102, -0.007013647351413965, -0.02101077511906624, 0.030920380726456642, 0.0003056687128264457, 0.004136543720960617, 0.006251950282603502, 0.0063424487598240376, 0.016214346513152122, -0.0037236434873193502, -0.013982045464217663, -0.03227785974740982, 0.001010568579658866, -0.009570235386490822, -0.004283604212105274, -0.009162991307675838, 0.013733173720538616, -0.02727026678621769, 0.004136543720960617, -0.02363523840904236, 0.010995589196681976, 0.0031806514598429203, 0.030573468655347824, 0.014502412639558315, -0.011206752620637417, -0.0063688443042337894, -0.0014036721549928188, -0.007545327302068472, 0.012941311113536358, 0.01185532659292221, 0.013868922367691994, -0.006802483927458525, 0.007017418276518583, 0.007221040315926075, -0.0031542559154331684, -0.016184179112315178, -0.014728659763932228, 0.00391783844679594, -0.013966962695121765, -0.015377233736217022, 0.006006849464029074, -0.021644266322255135, -0.017496410757303238, 0.002782834228128195, -0.018537145107984543, 0.00016768179193604738, 0.008152422495186329, 0.022488921880722046, -0.0017600107239559293, 0.017119333148002625, 0.008657706901431084, -0.002058844780549407, 0.0006707271677441895, 0.008318336680531502, 0.0005797571502625942, 0.009426945820450783, 0.009434486739337444, -0.01793382130563259, 0.010369639843702316, 0.01809973455965519, 0.009917146526277065, 0.02120685577392578, 0.005173507612198591, -0.002283206209540367, -0.020166121423244476, -0.02835625223815441, 0.00601439131423831, 0.01053555402904749, -0.019080137833952904, 0.017843322828412056, -0.009178074076771736, 0.02007562294602394, -0.014344040304422379, 0.00199474161490798, 0.010460138320922852, -0.011930742301046848, -0.00955515168607235, 0.004030962008982897, 0.016274679452180862, -0.009193156845867634, 0.0043741026893258095, 0.017601992934942245, 0.002424610313028097, 0.0025980661157518625, -0.0042157298885285854, -0.005052842665463686, 0.03131254017353058, -0.004057357087731361, -0.009736149571835995, 0.020935360342264175, -0.0007404865464195609, -0.0033786173444241285, 0.008891494944691658, -0.0017911195755004883, -0.008853787556290627, 0.025203881785273552, -0.0024830573238432407, 0.0036501132417470217, -0.0007659393013454974, -0.01098804734647274, 0.005520419217646122, 0.006753463763743639, -0.013325929641723633, 0.015580855309963226, 0.006889211479574442, 0.0048115127719938755, 0.022428588941693306, 0.01912538707256317, 0.019970040768384933, -0.0058899554423987865, 0.019155552610754967, 0.0016676266677677631, -0.0002191764797316864, -0.014276166446506977, 0.011365124955773354, -0.03601847216486931, 0.02161410078406334, -0.014261082746088505, -0.019336549565196037, -0.012405860237777233, -0.004068669863045216, 0.0021719681099057198, -0.001650658086873591, 0.018838807940483093, 0.019502464681863785, 0.009049867279827595, 0.020105788484215736, 0.029728814959526062, 0.016244512051343918, 0.005007593426853418, 0.005478940904140472, 0.014321415685117245, 0.009223323315382004, 0.0008418262004852295, -0.015407399274408817, 0.01158383022993803, -0.027375848963856697, 0.018612561747431755, -0.005554356146603823, -0.007356788031756878, 0.0012396433157846332, -0.008439001627266407, -0.004245896358042955, -0.01648584194481373, 0.02298666350543499, -0.018265649676322937, 0.004834137391299009, 0.009178074076771736, 0.00590880960226059, -0.010927715338766575, 0.008258003741502762, -0.026003286242485046, -0.001910841790959239, 0.026712192222476006, -0.008069464936852455, 0.011297251097857952, 0.026274781674146652, -0.01378596480935812, -0.01158383022993803, -0.012707522138953209, -0.0016713974764570594, 0.015309358946979046, -0.0039102970622479916, -0.01307705882936716, 0.024902218952775, 0.02357490547001362, 0.02983439713716507, -0.017179666087031364, -0.0010218808893114328, -0.009396779350936413, -0.016606507822871208, 0.012496358714997768, -0.011576289311051369, -0.004053586628288031, -0.04039257392287254, 0.009072491899132729, -0.015226402319967747, -0.014344040304422379, 0.022669918835163116, -0.004992510192096233, -0.013687924481928349, -0.03149354085326195, -0.002912926021963358, 0.0054223788902163506, 0.002060730243101716, 0.004483455326408148, 0.012677356600761414, 0.02345423959195614, -0.005011364351958036, 0.014932281337678432, -0.0239972323179245, -0.0010529898572713137, -1.1363888006599154e-05, 0.0022341860458254814, 0.010173559188842773, -0.009705983102321625, -0.025641292333602905, 0.01375579833984375, -0.0027790635358542204, 0.007239894010126591, 0.018084652721881866, -0.003150485223159194, -0.0007791370153427124, 0.015166069380939007, 0.001361250877380371, 0.011659245938062668, 0.0011350042186677456, -0.005856018513441086, 0.01761707477271557, 0.004619203042238951, -0.003018507966771722, 0.012368152849376202, 0.018491895869374275, -0.0034540328197181225, 0.006742151454091072, 0.005957829300314188, -0.025475377216935158, 0.0031014650594443083, -0.01172711979597807, -0.0046682232059538364, -0.007364329881966114, 0.013386262580752373, -0.008378668688237667, 0.01101821381598711, 0.0048303669318556786, 0.02162918448448181, 0.016169097274541855, -0.022081676870584488, -0.0033390240278095007, 0.015445107594132423, 0.005395983345806599, -0.03312251716852188, 0.008763288147747517, 0.0008319279295392334, -0.015882518142461777, -0.01583726890385151, 0.004724785219877958, 0.027903757989406586, -0.014871949329972267, -0.0013244858710095286, 0.01420075073838234, 0.0281149223446846, -0.0007791370153427124, 0.003344680182635784, 0.023846400901675224, 0.02870316430926323, -0.008159964345395565, 0.01316001545637846, 0.019683461636304855, 0.016712088137865067, 0.01196844968944788, 0.016365177929401398, -0.011244460940361023, -0.0051207165233790874, -0.015912683680653572, 0.008921661414206028, -0.01188549306243658, -0.010497846640646458, -0.005739124491810799, 0.018341064453125, -0.0008908463642001152, -0.0021851658821105957, -0.009909604676067829, -0.0024321519304066896, 9.709753794595599e-05, -0.007775344420224428, 0.015339525416493416, 0.003929150756448507, -0.009494819678366184, 0.0140574611723423, -0.0002679609169717878, 0.007933717221021652, 0.034208498895168304, -0.013114766217768192, -0.0011613996466621757, 0.009419403970241547, -0.0006278345827013254, -0.000299541192362085, -0.02745126560330391, -0.022473838180303574, -0.00783567689359188, 0.012337986379861832, 0.0045173922553658485, -0.005539272911846638, -0.009479735977947712, 0.002113521099090576, 0.0023567364551126957, 0.0040460447780787945, -0.0012830073246732354, -0.006006849464029074, -0.004939719568938017, 0.01579201966524124, 0.012858353555202484, -0.026516111567616463, -0.00800913292914629, -0.003593551693484187, 0.02143310382962227, 0.0040799821726977825, 0.004490996710956097, -0.013650217093527317, 0.01116150338202715, -0.016591424122452736, 0.00786584336310625, -0.014992614276707172, 0.020497949793934822, 0.001346167759038508, -0.009592860005795956, -0.022669918835163116, -0.003629374084994197, 0.016606507822871208, -0.013476761057972908, -0.012986560352146626, 0.0002022079861490056, 0.013341013342142105, -0.01870306022465229, 0.007002335041761398, -0.006598861888051033, -0.01265473198145628, 0.008627540431916714, -0.027481431141495705, 0.01367284171283245, 0.007420891430228949, 0.007613201159983873, -0.02161410078406334, 0.006640340201556683, 0.03330351412296295, -0.017405912280082703, -0.0017854634206742048, 0.02948748506605625, -0.0022624668199568987, 0.005135799758136272, 0.02156885154545307, -0.0006127514643594623, -0.005071696825325489, -0.003293774789199233, -0.026757441461086273, 0.02066386491060257, 0.0034672305919229984, 0.030105892568826675, -0.0005425207200460136, -0.006206701043993235, 0.007266289554536343, 0.024856969714164734, -0.03565647825598717, 0.018114818260073662, 0.0003438478452153504, 0.005056613590568304, -0.02549046091735363, -0.012307819910347462, 0.012390777468681335, -0.01354463491588831, -0.02858249843120575, 0.003093923442065716, 0.005214986391365528, 0.000404887308832258, -0.015580855309963226, 0.0010850414400920272, 0.01122937723994255, -0.0027319288346916437, 0.0009964280761778355, 0.011138878762722015, 0.019623128697276115, -0.03354484215378761, -0.01876339130103588, -0.01021126750856638, 0.003135401988402009, 0.020497949793934822, 0.0002712603600230068, 0.013280680403113365, 0.014607994817197323, 0.021885596215724945, 0.028612663969397545, -0.0014536349335685372, 0.0003198091289959848, -0.005724041257053614, -0.010701468214392662, -0.015135903842747211, -0.01767740771174431, -0.002630117814987898, -0.006489509250968695, -0.008552124723792076, 0.008567208424210548, -0.01852206327021122, -0.0158975999802351, 0.009954853914678097, 0.005331880412995815, 0.0022756645921617746, 0.0013687924947589636, -0.004713472910225391, -0.02472122199833393, -0.005727812182158232, 0.009404321201145649, 0.010497846640646458, 0.04989493638277054, 0.007481223903596401, 0.025626208633184433, 0.010128309950232506, -0.0029091553296893835, -0.030362306162714958, 0.0033541072625666857, 0.0003815556119661778, -0.006926919333636761, 0.013597426004707813, -0.01384629774838686, -0.02739093266427517, -0.0005929548642598093, 0.011621538549661636, -0.014788991771638393, -0.00469084782525897, 0.0028337398543953896, -0.003318284871056676, -0.01354463491588831, 0.021161606535315514, 0.0010397920850664377, 0.005852247588336468, -0.004596578422933817, 0.0054374621249735355, -0.0024001002311706543, 0.002362392609938979, 0.01781315542757511, 0.00961548462510109, 0.005686333402991295, -0.017059000208973885, 0.028748413547873497, -0.011945825070142746, -0.009494819678366184, 0.01720983162522316, 0.007141853682696819, 0.0048416792415082455, 0.0011057807132601738, 0.01291868556290865, 0.011832701973617077, -0.012798021547496319, 0.0042345840483903885, -0.019758878275752068, 0.006346219684928656, -0.0006433890084736049, -0.03369567543268204, -0.012790479697287083, 0.0025961806531995535, 0.0013650216860696673, -0.014494871720671654, 0.007677304558455944, -0.003159912070259452, 0.0018429678166285157, 0.00013598368968814611, 0.008235379122197628, -0.004332623910158873, -0.0010661875130608678, 0.006938231643289328, -0.00976631511002779, -0.009751232340931892, -0.0030882672872394323, -0.021900679916143417, -0.010965422727167606, -0.002607493195682764, 0.012043865397572517, 0.0036444570869207382, 0.014969989657402039, 0.013416429050266743, 0.0019645753782242537, 0.0030863818246871233, -0.014638161286711693, 0.008454084396362305, -0.01892930641770363, -0.006003079004585743, 0.002017366234213114, -0.007541556376963854, -0.031946033239364624, -0.026531195268034935, -0.026184283196926117, 0.001548847183585167, -0.022413505241274834, 0.0009766315342858434, -0.02423856221139431, -0.005237611010670662, -0.013144932687282562, -0.012858353555202484, -0.011847784742712975, -0.010203725658357143, -0.01402729470282793, 0.013476761057972908, -0.0009832304203882813, -0.012458651326596737, 0.0015601594932377338, 0.016289761289954185, 0.021101275458931923, 0.0023906733840703964, 0.006168993189930916, -0.005954058840870857, -0.0034804281312972307, 0.00961548462510109, 0.011206752620637417, 0.01870306022465229, 0.025415044277906418, -0.0032541814725846052, -0.0049661146476864815, 0.004091294482350349, -0.015988100320100784, -0.0116139966994524, 0.00423081312328577, -0.008024215698242188, 0.014690951444208622, -0.007281372789293528, 0.006968398112803698, -0.01953263022005558, -0.0022756645921617746, 0.006070952862501144, 0.01733049564063549, 0.02484188601374626, -0.0012924341717734933, -4.8401474487036467e-05, 0.020829778164625168, -0.012345527298748493, 0.00038603341090492904, 0.028853993862867355, 0.012096656486392021, 0.009185615926980972, 0.024585474282503128, -0.0002936493547167629, 0.0008795339963398874, 0.01262456551194191, 0.012156988494098186, -0.004977426957339048, -0.020754363387823105, 0.0051244874484837055, 0.017179666087031364, 0.007405808195471764, 0.0035219069104641676, 0.023439157754182816, -0.01953263022005558, 0.0040611280128359795, -0.005362046416848898, 0.0015017123660072684, 0.02775292657315731, 0.0124511094763875, 0.004577724728733301, 0.014721117913722992, 0.017647242173552513, -0.024630723521113396, 0.0158975999802351, 0.013386262580752373, 0.0030411325860768557, -0.002758324146270752, -0.013597426004707813, -0.012398318387567997, 0.023077161982655525, -0.0017043916741386056, -0.002426495775580406, 0.01668192259967327, 0.012699981220066547, -0.019155552610754967, 0.01886897347867489, 0.0033541072625666857, -0.004227042198181152, 0.0012556691654026508, 0.011810077354311943, 0.0057768323458731174, -0.010482762940227985, -0.010761801153421402, 0.016063515096902847, -0.001025651698000729, -0.0016091795405372977, 0.004958573263138533, 0.012036323547363281, -0.007126770913600922, 0.002799802692607045, 0.011862868443131447, 0.010241433046758175, 0.003122204216197133, -0.0045023090206086636, -0.012828187085688114, -0.0011830816511064768, 0.019396882504224777, 0.007126770913600922, 0.017707575112581253, 0.005561897996813059, -0.03173486888408661, 0.014487329870462418, -0.013024267740547657, 0.0006716698408126831, -0.0068401917815208435, -0.004000795539468527, 0.026003286242485046, 0.015309358946979046, 0.005641084164381027, -0.004713472910225391, -0.0091705322265625, 0.013597426004707813, -0.018838807940483093, -0.009811564348638058, -0.008755747228860855, -0.0024132980033755302, 0.013469219207763672, 0.0075754933059215546, 0.016591424122452736, -0.006926919333636761], "3fb2305d-b12e-48c4-a356-1600c347320c": [0.009931482374668121, -0.0027323749382048845, -0.01060494128614664, 0.010345294140279293, 0.010174901224672794, -0.0016897313762456179, -0.0015538226580247283, 0.029388749971985817, -0.007468896917998791, 0.03007032349705696, 0.017899388447403908, -0.006134151015430689, 0.018645871430635452, -0.0013682158896699548, 0.010686080902814865, 0.03133609890937805, -0.03237468749284744, -0.0005907974555157125, 0.0022475658915936947, -0.006069239228963852, 0.04628200829029083, -0.015375947579741478, -0.06679408997297287, 0.028723405674099922, 0.010288496501743793, 0.015935810282826424, 0.0014341417700052261, 0.003835872979834676, -0.062477465718984604, 0.00042344711255282164, 0.03182293847203255, 0.03149838000535965, 0.016089975833892822, -0.004482960794121027, -0.004000180400907993, -0.04388027638196945, 0.02286512963473797, -0.00266949157230556, -0.0125604048371315, 0.01633339375257492, -0.016682295128703117, 0.028382619842886925, -0.0031482151243835688, 0.0005385638796724379, -0.019587090238928795, -0.012381897307932377, -0.018305085599422455, 0.011075550690293312, -0.03024883009493351, -0.020479626953601837, -0.002377389231696725, -0.003770961193367839, 0.05686260759830475, 0.02025243453681469, 0.011318969540297985, -0.02637035772204399, -0.02637035772204399, 0.01754237338900566, 0.016122430562973022, -0.007801569066941738, 0.023238372057676315, -0.007716372609138489, -0.0022272809874266386, -0.0008935494697652757, 0.0251370370388031, -0.0015152813866734505, 0.02020375244319439, 0.03531193733215332, -0.022362064570188522, 0.025705013424158096, 0.0007794469711370766, 0.009615038521587849, -0.0375189334154129, 0.029388749971985817, 0.014824198558926582, -0.02664623223245144, 0.06208799406886101, 0.02143707312643528, 0.027392717078328133, 0.010393978096544743, -0.0025599533692002296, 0.011002524755895138, 0.043425895273685455, -0.024974757805466652, 0.08977281302213669, 0.01325820479542017, 0.0036796792410314083, -0.04141363501548767, -0.02395240031182766, -0.025575190782546997, -0.011099892668426037, 0.009079516865313053, 0.009103858843445778, 0.024423008784651756, -0.01077533420175314, 0.05192932114005089, 0.0033044088631868362, 0.02385503239929676, 0.005513433367013931, -0.03664262592792511, -0.013874865137040615, 0.02661377750337124, 0.008584565483033657, 0.024260729551315308, 0.032098811119794846, -0.008341147564351559, 0.027019474655389786, 0.007282275706529617, -0.033397044986486435, 0.019814280793070793, 0.0015041247243061662, -0.03133609890937805, -0.012114137411117554, -0.011083664372563362, -0.08399567753076553, -0.03657771646976471, -0.03414352983236313, -0.06945546716451645, 0.0026329788379371166, -0.0069293188862502575, 0.02036602981388569, -0.007541922386735678, -0.0057325102388858795, -0.020820412784814835, -0.04050486907362938, 0.04167328029870987, -0.02404976636171341, 0.01458077970892191, 0.0252506323158741, 0.0054890913888812065, 0.0030609900131821632, 0.011757123284041882, 0.02275153435766697, -0.0016897313762456179, 0.022280924022197723, 0.021712947636842728, 0.013566534966230392, 0.033299677073955536, -0.016114316880702972, 0.020836640149354935, -0.036058422178030014, -0.041024163365364075, -0.009785431437194347, -0.012698342092335224, 0.04511359706521034, -0.021956365555524826, -0.010410206392407417, 0.0628993883728981, -0.014548324048519135, 0.047190770506858826, -0.05913451313972473, -0.03673999384045601, -0.02658132091164589, 0.016016950830817223, 0.02132347784936428, -0.009193113073706627, -0.03284529596567154, 0.018645871430635452, 0.02401731163263321, 0.05296790599822998, -0.0024281013756990433, -0.053454745560884476, -0.03927154839038849, 0.02661377750337124, 0.02895059622824192, 0.016057519242167473, 0.054688066244125366, 0.027392717078328133, -0.03573386371135712, 0.0252506323158741, 0.017363866791129112, -0.016065632924437523, 0.029404977336525917, 0.039725929498672485, -0.014077714644372463, -0.007225478067994118, -0.008487198501825333, 0.07010458409786224, 0.016633611172437668, -0.017380094155669212, -0.024601515382528305, 0.01884060725569725, 0.0005943473079241812, 0.018499821424484253, 0.03153083473443985, 0.009014605544507504, 0.027051931247115135, 0.008552109822630882, 0.03159574791789055, 0.019343672320246696, -0.014661919325590134, -0.008324919268488884, -8.73993576533394e-06, 0.05384421348571777, 0.007533808704465628, -0.04297151416540146, -0.041965384036302567, -0.0017039309022948146, -0.011659755371510983, 0.017201587557792664, 0.0035620268899947405, -0.03534439578652382, -0.02650018222630024, 0.037097010761499405, -0.041965384036302567, 0.013574649579823017, -0.01655247062444687, -0.02158312499523163, 0.038362786173820496, -0.038362786173820496, 0.02770104818046093, -0.021875226870179176, -0.020804183557629585, -0.04417238011956215, -0.0008184953476302326, -0.007631176151335239, -0.0042111435905098915, 0.03235846012830734, 0.006036783568561077, -0.03266678750514984, -0.02413090690970421, 0.006061125546693802, -0.005144248250871897, -0.024812478572130203, -0.047353051602840424, -0.009558240883052349, 0.012852506712079048, 0.006904976908117533, -0.014807970263063908, 0.017136676236987114, 0.02916155941784382, 0.010385864414274693, -0.012933646328747272, -0.025461595505475998, -0.007290389854460955, 0.013112153857946396, 0.03550667315721512, -0.011043095029890537, -0.0253642275929451, 0.01510818675160408, 0.015992607921361923, 0.011424451135098934, -0.023692753165960312, -0.028236567974090576, 0.058712590485811234, 0.011789578944444656, 0.023481789976358414, 0.04167328029870987, 0.023076092824339867, -0.015643708407878876, -0.03153083473443985, 0.01759105734527111, -0.0033754059113562107, -0.025591418147087097, -0.02247565984725952, 0.01061305496841669, 0.04375045374035835, -0.0072498200461268425, -0.004551929421722889, -0.01898665726184845, 0.02155066840350628, 0.0373566560447216, -0.02276776172220707, 0.02013883925974369, 0.004649296868592501, -0.038557521998882294, 0.005590516142547131, -0.03521456941962242, 0.023660296574234962, 0.039693474769592285, 0.02005770057439804, 0.014702488668262959, -0.003570140805095434, -0.010174901224672794, -0.009525785222649574, -0.02281644567847252, 0.04203029349446297, -0.0060489545576274395, 0.009533898904919624, 0.006556076928973198, -0.050988104194402695, 0.0066899568773806095, -0.0025538678746670485, 0.02374143712222576, -0.019603319466114044, -0.014621349982917309, -0.006385683547705412, -0.021972594782710075, -0.03680490702390671, -0.021858999505639076, -0.0015943924663588405, -0.0005405923584476113, 0.028025604784488678, 0.013461053371429443, -0.015538226813077927, 0.01624414138495922, -0.028626037761569023, 0.0039170123636722565, 0.018159033730626106, 0.07068879157304764, -0.025737470015883446, -0.030476020649075508, 0.007627118844538927, -0.007428327109664679, 0.042257484048604965, -0.006535791791975498, 0.01898665726184845, -0.012154706753790379, -0.03540930524468422, 0.017915615811944008, 0.030524704605340958, -0.02146952971816063, -0.0018915660912171006, -0.02129102125763893, -0.0011146548204123974, 0.014864767901599407, 0.007278218865394592, -0.007481067907065153, -0.03032996878027916, -0.00815858319401741, 0.0016400334425270557, -0.012649658136069775, -0.06926073133945465, 0.006515507120639086, 0.023270826786756516, -0.03443562984466553, -0.0029494231566786766, -0.00405494961887598, -0.01619545742869377, 5.9428391978144646e-05, -0.036058422178030014, -0.01759105734527111, -0.0498846061527729, 0.013363686390221119, -0.04134872183203697, -0.053519655019044876, -0.01505138911306858, -0.04125135391950607, 0.0032192121725529432, -0.013663902878761292, -0.010483231395483017, 0.0006445524049922824, 0.028187884017825127, 0.019554635509848595, 0.011911287903785706, 0.008406058885157108, -0.030800579115748405, 0.015952037647366524, -0.03375405818223953, 0.003385548247024417, 0.0010730706853792071, -0.006880634929984808, 0.02007392793893814, 0.02002524398267269, -0.011667869053781033, -0.012243960052728653, 0.005687883589416742, 0.014321133494377136, -0.003557969816029072, -0.018159033730626106, -0.002813514322042465, -0.06585287302732468, -0.009420303627848625, -0.005103678442537785, -0.028415076434612274, 0.0190028864890337, 0.04082942754030228, -0.025899749249219894, -0.003697935724630952, -0.03648034855723381, -0.03166065737605095, 0.029502345249056816, 0.020479626953601837, -0.003095474326983094, -0.009274252690374851, -0.008211323991417885, 0.029307611286640167, 0.0011440678499639034, -0.03933646157383919, 0.02922647073864937, 0.01014244556427002, -0.015302921645343304, 0.023416878655552864, 0.037421565502882004, -0.002758745104074478, 0.0042152004316449165, 0.0030975029803812504, 0.008170753717422485, -0.015384061262011528, -0.013177065178751945, -0.05553191900253296, 0.022994952276349068, -0.028333935886621475, -0.019489724189043045, -0.026062028482556343, 0.007980076596140862, 0.030540931969881058, -0.03146592155098915, 0.02899928018450737, -0.02510458044707775, 0.025705013424158096, 0.004162459634244442, -0.023059863597154617, -0.004519473761320114, 0.023141004145145416, -0.019911648705601692, -0.005769023206084967, -0.034500543028116226, 0.018532276153564453, 0.022216012701392174, -0.0010842274641618133, -0.005586458835750818, -0.011643527075648308, 0.0005755837773904204, 0.04001803323626518, 0.010864587500691414, -0.026013344526290894, 0.04949513450264931, -0.05527226999402046, -0.008836098946630955, 0.005862333346158266, 0.04767760634422302, -2.1013878722442314e-05, 0.0191327091306448, 0.009663722477853298, 0.023611612617969513, 0.017234044149518013, -0.004405878484249115, -0.006426253356039524, -0.022151101380586624, 0.03128741681575775, 0.06140642240643501, 0.0004264898307155818, -0.008568338118493557, 0.0019209792371839285, -0.00830869097262621, -0.009866571053862572, 0.007866480387747288, -0.008004417642951012, -0.01750991865992546, -0.007468896917998791, -0.021794086322188377, -0.0008037888328544796, 0.012909304350614548, -0.0376487597823143, -0.011854490265250206, -0.049852147698402405, -0.029291382059454918, -0.03029751405119896, -0.0014767401153221726, -0.012698342092335224, -0.004349080845713615, -0.06205553933978081, -0.028236567974090576, 0.030930401757359505, -0.01135142520070076, -0.0014108142349869013, 0.0023713037371635437, 0.03667508438229561, -0.06867652386426926, -0.04816444590687752, -0.0040955194272100925, 0.019570862874388695, 0.003164442954584956, 0.009030833840370178, -0.01389109343290329, -0.015124415047466755, 0.0072498200461268425, 0.025348000228405, 0.0188081506639719, -0.02002524398267269, -0.007152452599257231, 0.0125604048371315, 0.010832131840288639, 0.004702037665992975, -0.007627118844538927, -0.019522178918123245, -0.02130725048482418, -0.004706094972789288, -0.02659755013883114, -0.022994952276349068, -0.012617202475667, -0.016844574362039566, 0.009217454120516777, -0.008495312184095383, -0.011805806308984756, -0.008803642354905605, -0.04151100292801857, 0.02401731163263321, -0.0014594979584217072, 0.006061125546693802, -0.025688786059617996, 0.029615940526127815, 0.029194016009569168, 0.009899026714265347, -0.018580960109829903, -0.016065632924437523, -0.0044586192816495895, 0.016958169639110565, -0.03641543537378311, -0.006057068705558777, -0.03696718439459801, -0.02271907776594162, -0.013104039244353771, 0.00039276620373129845, 0.011627299711108208, 0.0005279142642393708, 0.005809593014419079, 0.006852236110717058, -0.028252797201275826, -0.02755499631166458, 0.0382654182612896, -0.03256941959261894, 0.019862964749336243, 0.005533718504011631, 0.015789758414030075, -0.012714569456875324, -0.0026492069009691477, 0.005083393771201372, -0.006499279290437698, -0.010239813476800919, -0.01441038679331541, -0.020528309047222137, -0.013469167985022068, -0.03398124873638153, -0.015749190002679825, 0.009144429117441177, -0.015384061262011528, 0.032115038484334946, -0.03307248651981354, -0.01008564792573452, 0.02895059622824192, -0.010418320074677467, -0.0016380049055442214, -0.013477281667292118, -0.01635773666203022, 0.018451137468218803, 0.0380706824362278, 0.018256401643157005, -0.011043095029890537, -0.05397403985261917, 0.031108908355236053, -0.015822215005755424, -0.004247656092047691, 0.008617022074759007, 0.03020014613866806, 0.004105661995708942, -0.01124594360589981, 0.002803371986374259, 0.012300757691264153, -0.0052335020154714584, -0.013534079305827618, 0.0191489364951849, 0.00037146706017665565, 0.01188694592565298, -0.05316264182329178, 0.04254958778619766, -0.018337542191147804, -0.0038155880756676197, -0.028577353805303574, 0.024244502186775208, 0.02628921903669834, 0.017266498878598213, 0.008470970205962658, 0.0034646594431251287, -0.008081500418484211, -0.030703211203217506, 0.012146593071520329, -0.033494412899017334, 0.025786153972148895, 0.013923549093306065, -0.008543996140360832, 0.027051931247115135, 0.00825189333409071, 0.0036918502300977707, 0.03547421842813492, 0.008000360801815987, -0.015781644731760025, -0.04005048796534538, 0.0047263796441257, 0.03440317511558533, -0.012779481709003448, -0.028626037761569023, -0.009615038521587849, -0.002933195326477289, 0.006158492993563414, -0.029599713161587715, -0.013590876944363117, 0.006349171046167612, 0.020950235426425934, -0.010069419629871845, 0.04644428566098213, -0.012154706753790379, 0.010856473818421364, -0.012300757691264153, 0.034695278853178024, -0.0072417063638567924, 0.01393166370689869, 0.02268662303686142, 0.011854490265250206, -0.015765417367219925, 0.023351967334747314, 0.011132348328828812, -0.011051208712160587, -0.021712947636842728, 0.028512442484498024, -0.00413203239440918, -0.004957627505064011, 0.01319329347461462, 0.02658132091164589, -0.002803371986374259, -0.0019067797111347318, 0.024309413507580757, -0.02005770057439804, 0.016812117770314217, 0.022216012701392174, 0.014045258983969688, -0.010304724797606468, -0.013663902878761292, 0.0023408764973282814, 0.01639830693602562, -0.015440858900547028, 0.04748287424445152, -0.03654526174068451, -0.0012799766846001148, -0.00280945748090744, 0.011221601627767086, -0.008722502738237381, 0.010442662052810192, 0.004815632943063974, -0.030930401757359505, 0.002466642763465643, -0.014824198558926582, -0.030946629121899605, 0.013720700517296791, -0.027165526524186134, 0.0014402272645384073, 0.05631085857748985, -0.015757303684949875, -0.02012261189520359, -0.02891814149916172, -0.009558240883052349, -0.005010368302464485, 0.03414352983236313, -0.006341056898236275, 0.013534079305827618, -0.007687973789870739, -0.00533898314461112, 0.030816806480288506, 0.0010147517314180732, 0.014994591474533081, -0.0031705284491181374, -0.007456725928932428, 0.049624957144260406, 0.012073567137122154, -0.024812478572130203, -0.015814101323485374, 0.014678147621452808, 0.007996303960680962, 0.014150739647448063, 0.01521366834640503, 0.019262531772255898, 0.010548143647611141, 0.009679949842393398, 0.014994591474533081, 0.026191851124167442, 0.01256851851940155, 0.006332943215966225, 0.007606834173202515, 0.014142625965178013, 0.02034980244934559, -0.012479265220463276, -0.003373377490788698, -0.001755657372996211, -0.00818698201328516, 0.00180941226426512, -0.006511450279504061, 0.026224307715892792, 0.01205733884125948, -0.014913451857864857, 0.013558421283960342, -0.023238372057676315, -0.015700506046414375, 0.0251370370388031, -0.005622971802949905, -0.009306708350777626, -0.018288858234882355, 0.02387125976383686, -0.00760277733206749, 0.007862423546612263, 0.0020893437322229147, 0.0035032005980610847, -0.02377389185130596, -0.014288676902651787, 0.007663631811738014, 0.031027769669890404, -0.0009772246703505516, -0.01651190221309662, 0.012527949176728725, -0.0071727377362549305, -0.0381031408905983, -0.026191851124167442, -0.022118644788861275, -0.026987019926309586, -0.004271998070180416, 0.0012536062858998775, -0.015716733410954475, -0.03323476389050484, -0.021875226870179176, -0.0023672468960285187, 0.019424811005592346, 0.013469167985022068, 0.0028013435658067465, -0.010540029034018517, 0.009176884777843952, 0.04186801612377167, -0.024504149332642555, 0.01140822283923626, -0.004860260058194399, 0.037032097578048706, -0.0005410994635894895, 0.0010152588365599513, -0.026840968057513237, -0.03037865273654461, -0.013104039244353771, 0.008738731034100056, 0.019327444955706596, -0.0019219934474676847, -0.005988100077956915, -0.007728543598204851, -0.002198882168158889, -0.012527949176728725, -0.006332943215966225, 0.006166607141494751, -7.327916682697833e-05, -0.01752614602446556, -0.05893978103995323, 0.01200054120272398, 0.004815632943063974, -0.023611612617969513, 0.026922106742858887, -0.01752614602446556, 0.021858999505639076, 0.008333032950758934, -0.00035878902417607605, 0.015887126326560974, 0.012341327965259552, 0.010320952162146568, -0.02130725048482418, -0.010126217268407345, 0.03495492413640022, -0.04391273111104965, 0.04005048796534538, 0.007631176151335239, -0.04628200829029083, 0.01516498439013958, 0.014158854261040688, -0.0008195096161216497, -0.01786693185567856, 0.04524341970682144, -0.013461053371429443, 0.018710782751441002, 0.008333032950758934, -0.027003247290849686, 0.013736927881836891, 0.009160656481981277, -0.011757123284041882, 0.027425173670053482, 0.039628561586141586, -0.004020465537905693, 0.04641183093190193, 0.012065453454852104, 0.0011329111875966191, 0.004734493792057037, -0.006089524365961552, 0.0027445456944406033, 0.020852867513895035, 0.01003696396946907, -0.040991708636283875, -0.02015506848692894, -0.007339073810726404, -0.04073205962777138, 0.004255770239979029, 0.009136315435171127, -0.001518324133940041, -0.03146592155098915, 0.01660115458071232, -0.011391994543373585, -0.009809773415327072, -0.005026596132665873, 0.02789578214287758, 0.0002675070136319846, -0.005902903154492378, 0.015513884834945202, 0.024844935163855553, -0.028512442484498024, 0.009704291820526123, 0.0046695820055902, -0.013631447218358517, 0.010913271456956863, 0.02119365520775318, -0.029194016009569168, 0.012884963303804398, 0.042062751948833466, 0.0029372521676123142, -0.017915615811944008, -0.017445005476474762, 0.0033754059113562107, -0.02133970521390438, 0.0072498200461268425, -0.005363325122743845, -0.028544899076223373, 0.00754597969353199, 0.02007392793893814, -0.01653624325990677, 0.0021583123598247766, 0.004880544729530811, -0.0007977033383212984, -0.011659755371510983, 0.014832312241196632, -0.01445907074958086, 0.014864767901599407, 0.034500543028116226, 0.03050847537815571, -0.016860801726579666, 0.034565456211566925, 0.0375189334154129, 0.012463036924600601, 0.003910927101969719, 0.007298504002392292, -0.00026471781893633306, -0.024341870099306107, -0.01440227311104536, 0.0382654182612896, -0.0094527592882514, 0.024812478572130203, -0.006827894132584333, 0.005006310995668173, -0.00659664673730731, 0.029875587671995163, -0.014872882515192032, -0.04121889919042587, -0.021777858957648277, 0.007578435353934765, -0.003697935724630952, -0.00132561766076833, 0.0030589615926146507, 0.024666428565979004, 0.031968988478183746, 0.02278398908674717, 0.02004147320985794, 0.02018752321600914, 0.012957988306879997, 0.004592499230057001, -0.007785341236740351, 0.02150198444724083, 0.0009615038288757205, 0.023076092824339867, -0.012933646328747272, -0.004734493792057037, 0.03557158634066582, 0.033559322357177734, -0.027944466099143028, -0.006718356162309647, 0.0038581863045692444, -0.02641904167830944, 0.021745404228568077, -0.018045438453555107, 0.006324829068034887, -0.01770465262234211, -0.014142625965178013, 0.010320952162146568, 0.01326631847769022, 0.0008367517730221152, 0.011586729437112808, -0.00996393896639347, -0.01315272320061922, -0.030897947028279305, -0.04287414625287056, 0.015010819770395756, 0.019587090238928795, -0.009184998460114002, -0.01376938447356224, 0.014158854261040688, -0.04121889919042587, 0.007010458502918482, -0.013574649579823017, -0.00047035590978339314, 0.0010659709805622697, -0.004766949452459812, 0.0021826543379575014, 0.014077714644372463, 0.019165165722370148, -0.014248107559978962, -0.019457267597317696, 0.01739632338285446, 0.004478903952986002, -0.016049405559897423, 0.005160476081073284, -0.02120988257229328, -0.0007576406933367252, -0.03544175997376442, -0.0751676931977272, -0.02260548248887062, 0.030962858349084854, -0.03576631844043732, -0.00940407533198595, 0.007687973789870739, 0.005919131450355053, -0.01510818675160408, 0.009890913031995296, 0.0045316447503864765, -0.01313649583607912, 4.906408139504492e-05, 0.03524702787399292, 0.02275153435766697, 0.04826181381940842, -0.028350163251161575, -0.009420303627848625, 0.0036451949272304773, -0.019343672320246696, 0.03235846012830734, 0.0125198345631361, 0.006495221983641386, 0.005201045889407396, -0.024747567251324654, -0.011318969540297985, 0.014337360858917236, 0.011124234646558762, 0.015870898962020874, 0.00360056827776134, 0.015489542856812477, 0.02146952971816063, -0.01379372552037239, 0.04657410830259323, -0.00498602632433176, -0.018029211089015007, -0.002507212571799755, -0.05637576803565025, -0.016730979084968567, -0.008657591417431831, 0.013404255732893944, 0.015432745218276978, -0.017104219645261765, 0.0022353949025273323, -0.0378759503364563, 0.02280021831393242, 0.04913812130689621, 0.0011501533444970846, 0.012284530326724052, 0.009955824352800846, 0.013396142050623894, -0.0042111435905098915, -0.018061667680740356, 0.032244861125946045, 0.013923549093306065, -0.0006227461853995919, -0.006142265163362026, 0.0016369906952604651, 0.012876848690211773, -0.000212611019378528, 0.011838262900710106, -0.020901551470160484, 0.013582763262093067, -0.014288676902651787, -0.01008564792573452, -0.00015632044232916087, 0.01256851851940155, -0.004000180400907993, -0.013022900559008121, -0.018110351637005806, -0.01071042288094759, -0.009274252690374851, -0.02783087082207203, -0.011546160094439983, -0.020852867513895035, -0.01060494128614664, 0.020804183557629585, -0.016089975833892822, -0.012365669943392277, 0.02403353899717331, -0.03148215264081955, -0.009233682416379452, -0.01655247062444687, 0.008714389055967331, -0.04121889919042587, -0.018191490322351456, 0.013623332604765892, -0.037161920219659805, 0.015375947579741478, -0.02911287546157837, -0.024698883295059204, 0.01747746206820011, -0.01645510457456112, 6.358045357046649e-05, -0.008965921588242054, -0.00026421071379445493, -0.013047241605818272, 0.0022982782684266567, -0.03151460736989975, 0.004491074942052364, -0.011919401586055756, -0.040926795452833176, 0.03239091485738754, 0.05514244735240936, 0.029502345249056816, 0.028269024565815926, 0.001938221394084394, -0.01773710921406746, 0.023465562611818314, -0.03310494124889374, 0.004977912176400423, 0.020495854318141937, 0.0015913497190922499, 0.0012343355920165777, 0.019846737384796143, -0.0030589615926146507, -0.025607647374272346, 0.02646772563457489, -0.0029534802306443453, 0.012860621325671673, -0.0005167576018720865, -0.03427335247397423, 0.013663902878761292, -0.009225568734109402, 0.01129462756216526, -0.008349261246621609, 0.0191327091306448, -0.01746123470366001, 0.018564732745289803, -0.015497656539082527, -0.010247927159070969, 0.004592499230057001, -0.0021826543379575014, 0.005687883589416742, -0.043555717915296555, -0.02161557972431183, -0.1143094152212143, -0.021112514659762383, -0.00025635032216086984, 0.0066169314086437225, 0.005026596132665873, -0.010880815796554089, 0.022053733468055725, 0.005878561642020941, -0.016893256455659866, 0.005383610259741545, -0.005452578887343407, -0.007558150216937065, 0.011148576624691486, 0.006462766323238611, -0.01187883224338293, 0.01634962297976017, -0.0019311216892674565, -0.02122610993683338, 0.0013408312806859612, -0.0004764413752127439, -0.006105752196162939, 0.025964660570025444, 0.03039488010108471, 0.004560043569654226, -0.00203761737793684, 0.04190047085285187, -0.006353227887302637, -0.008053101599216461, -0.0023063921835273504, -0.03188784793019295, 0.004020465537905693, 0.014905338175594807, 0.008142354898154736, -0.027976922690868378, 0.015513884834945202, 0.014037144370377064, -0.013477281667292118, 0.004182744771242142, 0.004880544729530811, 0.014564551413059235, 0.008211323991417885, -0.024650199338793755, -0.01776956394314766, 0.001057857065461576, 0.01754237338900566, 0.014329247176647186, -0.007724486757069826, -0.020658133551478386, -0.020836640149354935, 0.010580599308013916, 0.001216079224832356, 0.016779661178588867, -0.030735667794942856, -0.016877029091119766, -0.001507167355157435, -0.004990083165466785, 0.014012802392244339, -0.01515687070786953, -0.007797512225806713, 0.009436530992388725, 0.049917060881853104, 0.004592499230057001, 0.004002208821475506, -0.0019412641413509846, -0.010507573373615742, -0.005533718504011631, 0.037194374948740005, 0.01511630043387413, 0.047288138419389725, -0.008146412670612335, 0.009582582861185074, 0.02012261189520359, -0.0014209565706551075, 0.006243689451366663, 0.026938335970044136, 0.023660296574234962, 0.02635413035750389, 0.015335377305746078, 0.015927696600556374, 0.005407951772212982, -0.006896862760186195, 0.007915164344012737, 0.015846556052565575, -0.004304453730583191, -9.451491496292874e-05, -0.014499640092253685, 0.015416516922414303, -0.005635142792016268, -0.006195005960762501, 5.869940287084319e-05, 0.022021278738975525, 0.012308872304856777, 0.032179951667785645, 0.001971691381186247, 0.0022901641204953194, 0.05124774947762489, -0.013858637772500515, 0.021096287295222282, -0.009890913031995296, -0.007720429450273514, 0.011148576624691486, -0.0030325911939144135, 0.003140101209282875, -0.006799495313316584, -0.011708439327776432, -0.013639560900628567, -0.0029940500389784575, 0.003598539624363184, -0.011529931798577309, -0.01331500243395567, 0.005063108634203672, -0.0191327091306448, -0.041056618094444275, 0.024682655930519104, -0.018580960109829903, 0.009947710670530796, 0.0004460140480659902, -0.009769203141331673, -0.023043636232614517, 0.010856473818421364, -0.00694148987531662, 0.018337542191147804, 0.04177064821124077, -0.016730979084968567, 0.0060489545576274395, -0.002783087082207203, -0.003034619614481926, 0.006909033749252558, 0.009890913031995296, 0.021777858957648277, 0.012406239286065102, 0.010280382819473743, 0.002239451976493001, 0.0010538001079112291, -0.016779661178588867, -0.0023023351095616817, 0.024844935163855553, -0.0032902094535529613, 0.025980887934565544, -0.023368194699287415, 0.007306617684662342, 0.014621349982917309, 0.0006917148130014539, 0.012463036924600601, -0.019798053428530693, 0.006722413003444672, 0.002328705508261919, -0.0033449784386903048, 0.0032942662946879864, -0.019554635509848595, -0.018029211089015007, -0.01389920711517334, 0.025591418147087097, 0.0038176164962351322, -0.010418320074677467, -0.002847998635843396, -0.02909664809703827, -0.005687883589416742, 0.0001258297124877572, -0.03527948260307312, -0.013850524090230465, 0.01203299779444933, 0.02770104818046093, -0.004207086283713579, 0.00565542746335268, -0.0046006133779883385, 0.0008124099113047123, -0.013347458094358444, 0.002639064332470298, 0.006694014184176922, -0.003667508251965046, 0.002566038630902767, -0.012446809560060501, -0.04186801612377167, -0.0022921927738934755, -0.015643708407878876, -0.007111882790923119, 0.007197079248726368, 0.01660926826298237, -0.01136765256524086, -0.012341327965259552, -0.01065362524241209, 0.005679769441485405, -0.0011298684403300285, 0.0037547333631664515, 0.0034139470662921667, -0.016990624368190765, 0.007773170247673988, -0.00593535928055644, 0.03433826193213463, 0.011489362455904484, 0.03269924595952034, -0.004588442388921976, -0.0014716688310727477, 0.00656824791803956, -0.0015396232483908534, 0.037064552307128906, 0.020982692018151283, -0.03021637350320816, 0.0018124550115317106, -0.01394789107143879, -0.005760909058153629, -0.0001022485303110443, 0.016633611172437668, 0.0032597819808870554, -0.0015730933519080281, -0.03417598456144333, 0.005201045889407396, 0.012065453454852104, -0.010369636118412018, 0.018012983724474907, -0.012657771818339825, 0.02880454622209072, -0.009615038521587849, -0.009679949842393398, -0.020966462790966034, 0.004012351389974356, 0.006823837291449308, 0.0036999641451984644, -0.009258024394512177, 0.0377785824239254, 0.003125901799649, -0.03378651291131973, -0.01992787793278694, 0.01908402517437935, 0.026889652013778687, 0.02156689576804638, -0.03930400684475899, -0.008479084819555283, -0.00876307301223278, -0.0009041990269906819, 0.016106203198432922, -0.01060494128614664, -0.010742878541350365, -0.0024159306194633245, -0.02247565984725952, 0.016828345134854317, -0.011854490265250206, 0.027100615203380585, 0.00869816169142723, -0.01631716638803482, -0.019116481766104698, -0.009679949842393398, -0.00602866942062974, 0.014053372666239738, 0.023481789976358414, -0.03141723945736885, -0.02268662303686142, 0.005777136888355017, 0.00602866942062974, 0.014670033007860184, 0.019343672320246696, -0.005915074143558741, 0.013469167985022068, -0.006211233790963888, 0.008049044758081436, -0.0004914014716632664, -0.001695816870778799, 0.0021623694337904453, 0.009298593737185001, -0.02041471377015114, 0.02630544640123844, 0.0033064372837543488, 0.002882482949644327, 0.05128020420670509, -0.02143707312643528, -0.015408403240144253, -0.0029007394332438707, -0.011562388390302658, -0.014248107559978962, 0.004008294548839331, 0.008211323991417885, -0.028025604784488678, 0.029307611286640167, 0.005635142792016268, 0.007651460822671652, -0.02158312499523163, -0.03252073749899864, 0.00037045282078906894, -0.005334926303476095, -0.01503516174852848, 0.012414352968335152, -0.013371800072491169, -0.00754597969353199, 0.0019787910860031843, 0.005351154133677483, 0.0001267171755898744, -0.010734764859080315, 0.024471692740917206, 0.008779301308095455, 0.011846376582980156, 0.02390371635556221, 0.0019321358995512128, 0.01618734374642372, 0.012292644008994102, 0.0035863688681274652, 0.0012201361823827028, 0.0013012757990509272, 0.010418320074677467, -0.024423008784651756, -0.004077263176441193, -7.296221883734688e-05, -0.05517490208148956, -0.01007753424346447, 0.008284349925816059, -0.00029590586200356483, 0.02761990763247013, -0.004758835304528475, 0.0001975241320906207, -0.011805806308984756, -0.00602055573835969, 0.003054904518648982, -0.0036411378532648087, -0.024990985170006752, 0.00025140587240457535, 0.02250811457633972, 0.014150739647448063, -0.009866571053862572, -0.01440227311104536, -0.03359178081154823, 0.019587090238928795, -0.006069239228963852, 0.011156690306961536, 0.02880454622209072, -0.034630365669727325, -0.008012532256543636, 0.025234404951334, -0.014962135814130306, 0.014970249496400356, 0.006629102397710085, -0.030557159334421158, 0.05124774947762489, -0.006880634929984808, 0.013493509963154793, -0.020447170361876488, 0.016812117770314217, 0.0189217459410429, 0.010393978096544743, -0.0190191138535738, -0.002031531883403659, 0.002975793555378914, 0.014102056622505188, 0.006081410218030214, -0.023141004145145416, -0.008527767844498158, -0.0008884782437235117, -0.007886765524744987, 0.02648395299911499, 0.01382618211209774, 0.022183556109666824, -0.010199243202805519, 0.012957988306879997, 0.007432383950799704, -0.004405878484249115, -0.01897042989730835, 0.018483592197299004, 0.01646321825683117, 0.009355391375720501, 0.005643256939947605, -0.022913813591003418, -0.015814101323485374, -0.008182925172150135, 0.008844212628901005, 0.037097010761499405, 0.004685809835791588, 0.0013854580465704203, 0.00103757216129452, -0.02651640959084034, 0.020430942997336388, -0.015294807963073254, 0.010385864414274693, 0.005196989048272371, -0.015343491919338703, -0.006154436152428389, -0.0006978002493269742, -0.006767039652913809, 0.001611634623259306, -0.02119365520775318, 0.008925352245569229, -0.011643527075648308, -0.00815858319401741, -0.000820523826405406, -0.006008384749293327, 0.012844393029808998, -0.028058061376214027, -0.00012494224938564003, -0.02781464345753193, -0.002797286491841078, -0.000514222017955035, -0.006815723609179258, 0.003825730411335826, -0.008389830589294434, -0.002164397854357958, 0.001453412463888526, 0.012487378902733326, -0.020982692018151283, -0.03654526174068451, -0.004831861238926649, -0.033397044986486435, -0.007785341236740351, 0.00149296794552356, 0.006499279290437698, -0.006515507120639086, 0.030849263072013855, -0.013039127923548222, 0.014937793835997581, -0.005541832186281681, -0.0030082494486123323, -0.0018063695169985294, -0.025234404951334, -0.007963848300278187, 0.008487198501825333, 0.013452939689159393, 0.00015264379908330739, -0.005513433367013931, 0.015067617408931255, -0.01394789107143879, 0.014304905198514462, -0.027376489713788033, 0.00729444669559598, -0.00875495932996273, -0.01635773666203022, -0.02398485504090786, -0.015384061262011528, -0.030492248013615608, 0.016633611172437668, -0.027457628399133682, 0.004588442388921976, 0.012925532646477222, -0.015708619728684425, -0.001161310006864369, 0.0076392898336052895, -0.016893256455659866, 0.02393617108464241, 0.026029571890830994, -0.03391633927822113, 0.007095654960721731, -0.03148215264081955, 0.0030325911939144135, -0.003584340214729309, -0.027392717078328133, -0.0017333439318463206, -0.013160837814211845, -0.0002738460316322744, -0.006126037333160639, -0.01654435694217682, 0.013907321728765965, -0.03305625915527344, 0.01072665024548769, -0.001171452458947897, 0.015595024451613426, -0.0002908346359618008, 0.006154436152428389, -0.01522178202867508, 0.0013083755038678646, 0.01746123470366001, -0.023092320188879967, 0.005566174164414406, -0.004069149028509855, 0.035863686352968216, 0.0074972957372665405, 0.00410363357514143, -0.031985215842723846, 0.00223336648195982, -0.022134874016046524, 0.01994410529732704, 0.017282728105783463, -0.004568157717585564, -0.017948072403669357, -0.026240535080432892, 0.0058014788664877415, -0.011465020477771759, -0.0028155429754406214, 0.008738731034100056, 0.0010801705066114664, -0.04316624999046326, -0.008633249439299107, -0.019197620451450348, 0.016633611172437668, -0.008852326311171055, 0.019554635509848595, -0.009241796098649502, 0.0003712135076057166, 0.004454561974853277, -0.0011146548204123974, 0.008454742841422558, 0.02129102125763893, 0.002211053157225251, -0.014093942008912563, 0.04579516872763634, -0.00760277733206749, 0.028447531163692474, -0.00818698201328516, 0.010377750732004642, 0.009087631478905678, -0.033429499715566635, -0.010215471498668194, -0.0251532644033432, 0.0011176974512636662, -0.002793229417875409, 0.0009173842263408005, -0.017120448872447014, -0.04378290846943855, 0.008657591417431831, -0.0034930582623928785, -0.017087992280721664, -0.013014785945415497, -0.002910881768912077, -0.0010218514362350106, -0.0020477597136050463, -0.0059759290888905525, 0.003677650820463896, -0.005996213760226965, 0.005436351057142019, 0.003515371587127447, 0.0032557251397520304, -0.018159033730626106, -0.010004508309066296, -0.009907140396535397, -0.007221421226859093, -0.02250811457633972, -0.024374324828386307, -0.0011237829457968473, -0.012308872304856777, 0.01260908879339695, -0.0020650019869208336, -0.004868373740464449, -0.011757123284041882, -0.015870898962020874, -0.010215471498668194, 0.026922106742858887, -0.0013651731424033642, -0.004633069038391113, 0.006393797695636749, 0.01757482998073101, -0.005882618483155966, 0.011489362455904484, -8.475281356368214e-05, 0.004227371420711279, -0.02529931627213955, 0.0042922827415168285, 0.0073228455148637295, -0.024260729551315308, 0.00010763670434243977, 0.0025538678746670485, 0.0874359980225563, 0.02664623223245144, -0.0022151099983602762, 0.011059322394430637, 0.007448612246662378, -0.023579157888889313, -0.0016542328521609306, -0.005229444708675146, 0.016633611172437668, -0.004052921198308468, -0.0022475658915936947, -0.031043997034430504, 0.025769926607608795, -0.0012454923707991838, -0.020544538274407387, 0.028723405674099922, 0.012422467581927776, 0.035961054265499115, -0.005144248250871897, 0.0252668596804142, 0.007111882790923119, 0.0018307113787159324, 0.009866571053862572, 0.006706185173243284, 0.002535611391067505, 0.012649658136069775, 0.01621168479323387, -0.001991976285353303, 0.008738731034100056, 0.029534801840782166, 0.009874684736132622, -0.014394158497452736, -0.014637577347457409, -0.007728543598204851, 0.006077353376895189, 0.01651190221309662, -0.007692030631005764, 0.0032719529699534178, -0.008836098946630955, 0.015943923965096474, 0.002979850396513939, -0.012901190668344498, 0.02283267304301262, 0.00689280591905117, 0.010296611115336418, 0.0028114859014749527, -0.012714569456875324, 0.007330959662795067, 0.015984494239091873, -0.013388028368353844, -0.02791200950741768, -0.020658133551478386, 0.022248469293117523, -0.005882618483155966, 0.009420303627848625, -0.012097909115254879, -0.004324738867580891, -0.01778579317033291, -0.008584565483033657, -0.004418049473315477, -0.014394158497452736, 0.004864316899329424, -0.019765598699450493, -0.0013783583417534828, 0.008738731034100056, -0.034857556223869324, -0.023287054151296616, -0.009533898904919624, 0.008105842396616936, 0.002813514322042465, -0.0093391640111804, -0.004945456515997648, 0.012868735007941723, -0.03359178081154823, -0.02904796414077282, 0.011489362455904484, 0.010702308267354965, 0.03010277822613716, 0.003434231970459223, 0.0048480890691280365, 0.010061305947601795, 0.004714208655059338, -0.001033515203744173, -0.023562928661704063, -0.008077443577349186, -0.004742607474327087, 0.0011410251026973128, -0.007395871449261904, 0.008592680096626282, -0.03375405818223953, 0.002734403358772397, -0.007683916948735714, 0.0025579247158020735, 0.023449333384633064, 0.012008655816316605, 0.008495312184095383, -0.005691940430551767, -0.0039636678993701935, 0.018532276153564453, 0.006560133770108223, -0.005123963579535484, 0.012438694946467876, 0.004900829866528511, 0.007631176151335239, -0.012600974179804325, -0.015659935772418976, 0.023611612617969513, 0.009550127200782299, -0.0027567166835069656, 0.003578254720196128, -0.013404255732893944, -0.01521366834640503, -0.0011876804055646062, 0.013550307601690292, -0.03891453519463539, -0.009314822033047676, 0.010369636118412018, -0.0022516229655593634, -0.0035478274803608656, 0.001384443836286664, -0.019278760999441147, 0.012422467581927776, -0.008852326311171055, -0.016666065901517868, 0.0025498108007013798, 0.013745042495429516, -0.0019503922667354345, -0.0020396457985043526, -0.0063451137393713, -0.025932203978300095, 0.01326631847769022, 0.007614948321133852, 0.002369275316596031, 0.006454652175307274, 0.03187162056565285, -0.006572304759174585, -0.022378291934728622, -0.004166516475379467, 0.021015146747231483, -0.006349171046167612, 0.010945727117359638, 0.02669491618871689, 0.007261991035193205, -0.006957717705518007, 0.004730436485260725, 0.009282366372644901, 5.984042945783585e-05, -0.02778218686580658, -0.0034098902251571417, 0.011156690306961536, 0.028009377419948578, -0.020820412784814835, 0.005054994951933622, -0.00023010672884993255, 0.014239993877708912, -0.0003369827463757247, -0.0021745404228568077, 0.02036602981388569, -0.029486117884516716, -0.007927335798740387, -0.015018933452665806, 6.820794806117192e-05, -0.013128381222486496, -0.008389830589294434, 0.0053430404514074326, 0.0012870763894170523, 0.01658492721617222, 0.017964299768209457, 0.008077443577349186, 0.0034281467087566853, -0.010215471498668194, 0.006649387534707785, 0.0022029392421245575, -0.010872702114284039, -0.0026836912147700787, -0.008069329895079136, -0.0027709160931408405, 0.008146412670612335, -0.02760368026793003, 0.015700506046414375, -0.010004508309066296, -0.005026596132665873, 0.006491165142506361, 0.011489362455904484, 0.006722413003444672, -0.025558963418006897, -0.0032557251397520304, -0.0014807970728725195, 0.01329877506941557, -0.013663902878761292, -0.006795438472181559, 0.012130364775657654, 0.0005023046396672726, -0.016041291877627373, -0.018142806366086006, 0.007692030631005764, 0.007168680429458618, -6.478487193817273e-05, 0.014734945259988308, -0.008673819713294506, 0.001403714413754642, 0.004815632943063974, 0.013055356219410896, 0.012617202475667, -0.001977776875719428, -0.019213849678635597, -0.008706275373697281, -0.010694194585084915, -0.022962497547268867, -0.00538766710087657, -0.06854670494794846, -0.025688786059617996, 0.0066169314086437225, 0.011018753051757812, -0.026045801118016243, -0.021696720272302628, 0.032033901661634445, 0.00375879043713212, 0.008641364052891731, -0.005643256939947605, 0.011229715310037136, 0.003056933172047138, 0.027311576530337334, -0.022410748526453972, -0.0005781194195151329, 0.00663315923884511, -0.003937297500669956, 0.009071403183043003, 0.011205374263226986, 0.006397854536771774, 0.03125496208667755, -0.014945907518267632, -0.02633790299296379, 0.014483412727713585, 0.009274252690374851, 0.0381355956196785, 0.0037141635548323393, 0.007310674991458654, 0.0007753899553790689, -0.024260729551315308, -0.006422196514904499, 0.0022921927738934755, -0.019408583641052246, 0.012073567137122154, 0.006945546716451645, 0.0027607737574726343, -0.0008053102064877748, -0.005882618483155966, 0.009087631478905678, -2.9096141588524915e-05, -0.003123873146250844, -0.010166787542402744, 0.0021278851199895144, 0.0190191138535738, 0.02254057116806507, -0.0019899478647857904, 0.0014209565706551075, -0.012454923242330551, 0.008925352245569229, -0.019278760999441147, 0.009623152203857899, 0.00299607845954597, -0.0033835198264569044, -0.0019747342448681593, -0.0013418456073850393, -0.0025193835608661175, -0.018321312963962555, 0.005209160037338734, 0.0027323749382048845, 0.003511314745992422, 0.0037486478686332703, -0.004115804564207792, 0.004503245931118727, 0.01765596866607666, 0.0062234047800302505, 0.00755409337580204, -0.015400289557874203, -0.013542192988097668, -0.0003243047103751451, 0.010442662052810192, -0.006219347473233938, -0.0003030055668205023, -0.0005542846629396081, -0.03440317511558533, -0.012795709073543549, -0.0186783280223608, 0.0016248198226094246, 0.006491165142506361, 0.004580328240990639, 0.008543996140360832, -0.0007043928490020335, -0.00666155805811286, 0.012398125603795052, -0.01393977738916874, -0.009801659733057022, -0.0004414499562699348, -0.0058055357076227665, -0.004446448292583227, -0.00014972785720601678, 0.01767219789326191, 0.0008575437823310494, -0.003985980991274118, 0.002284078858792782, -0.018305085599422455, 0.00469798082485795, -0.0023936170618981123, 0.0069374325685203075, 0.011805806308984756, -0.025007214397192, -0.0022069960832595825, 0.01772087998688221, 0.011968085542321205, 0.011099892668426037, -0.011148576624691486, -0.00410363357514143, -0.02148575708270073, -0.003263839054852724, 0.01887306198477745, -0.022053733468055725, -0.018613416701555252, 0.0027080329600721598, -0.0011176974512636662, 0.005188875366002321, 0.015002705156803131, 0.0023611614014953375, 0.01076722051948309, 0.01192751619964838, -0.003213126678019762, 0.01136765256524086, -0.029567256569862366, 0.019879193976521492, 0.005687883589416742, -0.0034829159267246723, -0.007874595001339912, 0.0027648305986076593, 0.007128110621124506, 0.0011775379534810781, -0.008795528672635555, -0.00024012240464799106, 0.0012667914852499962, -0.013720700517296791, 0.013712586835026741, 0.011854490265250206, 0.003570140805095434, -0.009314822033047676, 0.01884060725569725, 0.010353408753871918, -0.026013344526290894, 0.02257302775979042, 0.01197620015591383, 0.012909304350614548, -0.011318969540297985, 0.007760999258607626, 0.02140461653470993, -0.007988190278410912, -0.01256851851940155, 0.016049405559897423, 0.008000360801815987, -0.030979085713624954, 0.012982330285012722, -0.020885324105620384, -0.008231609128415585, -0.011838262900710106, 0.0005857262294739485, 0.020512081682682037, -0.021956365555524826, 0.0010264154989272356, 0.005448521580547094, -0.023335738107562065, -0.0031218447256833315, -0.015416516922414303, -0.009704291820526123, -0.023368194699287415, -0.006836008280515671, -0.01999278925359249, 0.00040874056867323816, -0.0003405325987841934, -0.0043612513691186905, -0.012422467581927776, -0.004823747090995312, 0.026889652013778687, 0.009688064455986023, -0.00998016633093357, -0.008296520449221134, 0.01256851851940155, 0.007168680429458618, 0.027344033122062683, 0.020998919382691383, 0.008028759621083736, -0.010799676179885864, -0.013736927881836891, -0.01759105734527111, -0.007030743174254894, -0.006170663982629776, -0.0017708709929138422, 0.018613416701555252, -0.023433106020092964, 0.03375405818223953, -0.0037648756988346577, 0.0059759290888905525, 0.014223765581846237, -8.893656922737136e-05, 0.03540930524468422, 0.015830328688025475, 0.005716282408684492, -0.019684458151459694, 0.01194374356418848, 0.013964119367301464, 0.008803642354905605, -0.01653624325990677, 0.014629463665187359, 0.011213487945497036, -0.02161557972431183, 0.011838262900710106, 0.016041291877627373, -0.004568157717585564, 0.009769203141331673, 0.020674360916018486, 0.011554273776710033, -0.011757123284041882, 0.015286694280803204, -0.00048582314047962427, 0.012698342092335224, 0.0013530022697523236, 0.015911469236016273, 0.013371800072491169, 0.03166065737605095, 0.0012252074666321278, -0.02508835308253765, -0.00330238020978868, -0.007477011065930128, -0.020576993003487587, -0.008657591417431831, 0.023660296574234962, -0.01895420253276825, -0.000375777599401772, 0.009063289500772953, -0.02138838917016983, 0.007051028311252594, 0.028090517967939377, -0.026240535080432892, -0.00202747480943799, -0.010061305947601795, 0.0038034170866012573, 0.014313018880784512, -0.001902722753584385, 0.0033145511988550425, 0.021923910826444626, 0.0052416156977415085, 0.002076158532872796, 0.010337180458009243, 0.016795890405774117, 0.011270285584032536, 0.012893076986074448, -0.012211504392325878, 0.01760728470981121, -0.010815903544425964, 0.02656509354710579, 0.02284890227019787, -0.03521456941962242, 0.004819690249860287, 0.004107690416276455, 0.0033591780811548233, 0.01205733884125948, -0.005846105515956879, -0.021080058068037033, 0.003667508251965046, 0.011221601627767086, -0.014337360858917236, 0.00220496766269207, -0.027425173670053482, -0.0005203074542805552, 0.0022069960832595825, 0.002087315311655402, 0.011108006350696087, 0.003134015714749694, -0.026208078488707542, 0.004937342368066311, -0.005006310995668173, -0.0125198345631361, -0.008949694223701954, 0.017948072403669357, 0.007140281610190868, 0.0042111435905098915, 0.024293186143040657, -0.0030325911939144135, 0.0045357015915215015, 0.011432564817368984, -0.007651460822671652, 0.025656329467892647, 0.0023814463056623936, -0.010109989903867245, 0.006742697674781084, 0.001902722753584385, 0.00951767060905695, 0.003054904518648982, -0.008288406766951084, 0.014686261303722858, -0.005452578887343407, 0.010880815796554089, -0.01780202053487301, -0.005894789472222328, -0.015010819770395756, 0.005286242812871933, -0.003557969816029072, 0.008617022074759007, -0.012381897307932377, 0.009282366372644901, 0.01203299779444933, -0.009550127200782299, 0.006235575769096613, 0.0010730706853792071, -0.0031847278587520123, 0.009314822033047676, -0.01002885028719902, 0.027928238734602928, 0.014183196239173412, 0.0029189959168434143, 0.02635413035750389, -0.002527497475966811, -0.01140822283923626, -0.024260729551315308, 0.02009015530347824, 0.005521547514945269, 0.019716914743185043, -0.004580328240990639, 0.008487198501825333, 0.029891815036535263, 0.016974397003650665, 0.009290480054914951, -0.01760728470981121, 0.001384443836286664, -0.004426163155585527, -0.0037405339535325766, -0.0027445456944406033, 0.009030833840370178, 0.013452939689159393, 0.00944464560598135, 0.00827217847108841, -0.013866751454770565, 0.015700506046414375, 0.007124053779989481, -0.032326001673936844, 0.0191327091306448, -0.0018530248198658228, -0.020641904324293137, 0.0037060496397316456, -0.0023408764973282814, -0.011546160094439983, -0.005160476081073284, 0.009144429117441177, -0.006600703578442335, -0.0018844663864001632, -0.0019250361947342753, 0.02276776172220707, -0.00633700005710125, -0.0011562388390302658, 0.020382259041070938, 0.004860260058194399, 0.008113956078886986, -0.01651190221309662, -0.009606924839317799, -0.005444464739412069, 0.0025193835608661175, -0.02127479389309883, 0.009752975776791573, 0.013185178861021996, -0.0006927290232852101, -0.01076722051948309, 0.014499640092253685, 0.005217274185270071, 0.011732781305909157, -0.013104039244353771, 0.014483412727713585, -0.0020994863007217646, -0.0026471782475709915, -0.0044626761227846146, -0.007984133437275887, 0.02013883925974369, -0.022216012701392174, 0.008053101599216461, -0.02023620717227459, -0.009420303627848625, 0.005996213760226965, -0.005541832186281681, 0.021112514659762383, 0.006284259259700775, -0.0028642266988754272, 0.010247927159070969, -0.008203210309147835, 0.01775333657860756, -0.02667868882417679, 0.0010015665320679545, -0.0025173549074679613, -0.012706455774605274, -0.0053430404514074326, -0.01002885028719902, 0.009915255010128021, -0.0075013525784015656, -0.009712405502796173, 0.0035823117941617966, -0.007765056565403938, -0.00498602632433176, -0.028642266988754272, -0.0045316447503864765, 0.01447529811412096, 0.019538406282663345, 0.003194870427250862, -0.0069333757273852825, -0.0072417063638567924, -0.0011886946158483624, -0.0095095569267869, 0.025510279461741447, 0.015513884834945202, 0.0026431214064359665, -0.002576181199401617, 0.0007657546666450799, -0.007099711801856756, 0.025640102103352547, -0.015343491919338703, -0.019376128911972046, -0.010807789862155914, -0.005115849431604147, 0.013550307601690292, -0.0014949964825063944, 0.003908898681402206, -0.002472728257998824, 0.0010446718661114573, 0.028512442484498024, 0.0005355211324058473, -0.003006220795214176, -0.00010700280108721927, 0.005209160037338734, -0.008470970205962658, 0.0035417419858276844, -0.009834115393459797, -0.03930400684475899, -0.002947394736111164, 0.011140462011098862, -0.003752704942598939, 0.01648755930364132, -0.012438694946467876, 0.01009376160800457, 0.00720113655552268, 0.028220340609550476, -0.0052335020154714584, 0.008065273053944111, -0.0009021705482155085, -0.008746844716370106, -0.0005400852533057332, -0.028366392478346825, 0.012414352968335152, -0.008012532256543636, 0.010475117713212967, -0.017055535688996315, -0.01319329347461462, -0.0023550759069621563, -0.017298955470323563, 0.0047791204415261745, -0.003480887273326516, -0.009834115393459797, -0.013047241605818272, -0.014978363178670406, 0.005606743972748518, 0.0012992472620680928, -0.010158673860132694, 0.02129102125763893, -0.0026025515981018543, -0.016698522493243217, -0.02387125976383686, -0.01660926826298237, 0.008000360801815987, -0.0032252976670861244, 0.013112153857946396, 0.01325009111315012, -0.0009584610816091299, -0.0014554408844560385, -0.006097638048231602, -0.008852326311171055, -0.0379084050655365, 0.02028489112854004, 0.0031624145340174437, 0.004324738867580891, -0.02250811457633972, -1.543553480587434e-05, 0.00530247064307332, -0.0002997092669829726, -0.01445907074958086, 0.010012621991336346, -0.0008494298090226948, -0.001270848442800343, -0.003523485502228141, -0.022199785336852074, -0.03247205540537834, 0.003988009411841631, -0.0019077940378338099, -0.013631447218358517, 0.014369816519320011, -0.01505950279533863, -0.004616841208189726, -0.015724847093224525, -0.004393707495182753, 0.008665705099701881, -0.00299607845954597, 0.004154345486313105, -0.01522178202867508, 0.01770465262234211, 0.005764965899288654, -0.005947530269622803, 0.0008575437823310494, -0.005192932207137346, 0.00265123532153666, 0.0014280563918873668, -0.015716733410954475, -0.02005770057439804, -0.035701408982276917, 0.008592680096626282, -0.005984042771160603, -0.032033901661634445, 0.021777858957648277, 0.00830057729035616, 0.0015142671763896942, -0.003089388832449913, 0.005286242812871933, -0.01752614602446556, -0.01382618211209774, 0.0009544041240587831, -0.009996394626796246, -0.0068562934175133705, -0.012016769498586655, 0.014499640092253685, -0.01629282534122467, 0.018142806366086006, 0.012316985987126827, 0.002253651386126876, -0.009144429117441177, -0.000573555298615247, -0.0016948026604950428, -0.007314731832593679, 0.005870447494089603, -0.005614857655018568, -0.00875495932996273, -0.007509466726332903, -0.004568157717585564, -0.0048440322279930115, -0.012536062858998775, -0.005497205536812544, -0.00014300848124548793, -0.01638207770884037, -0.005253786686807871, -0.0010497431503608823, -0.01739632338285446, 0.015294807963073254, -0.012284530326724052, 0.008000360801815987, 0.01332311611622572, 0.03628561273217201, 0.006239632610231638, 0.004349080845713615, 0.00164206197950989, 0.016893256455659866, 0.012893076986074448, 0.0019341643201187253, 0.012406239286065102, 0.00364722334779799, 0.01908402517437935, -0.004030607640743256, 0.01393977738916874, -0.0026228365022689104, -0.0003316579677630216, 0.027181753888726234, -0.002051816787570715, -0.0030082494486123323, -0.02787955477833748, -0.012130364775657654, -0.03265056014060974, -0.0075013525784015656, 0.0037060496397316456, -0.009720520116388798, 0.029486117884516716, -0.004405878484249115, 0.014345475472509861, -0.021810315549373627, -0.012860621325671673, -0.0190191138535738, 0.018629644066095352, 0.008730617351830006, -0.0011116120731458068, 0.0014757257886230946, 0.009663722477853298, 0.011521818116307259, -0.007460782770067453, 0.005513433367013931, 0.005842048674821854, 0.029940498992800713, 0.021858999505639076, 0.00823566596955061, 0.0009599824552424252, -0.02012261189520359, -0.01780202053487301, 0.006207176484167576, -0.0046087270602583885, 0.010507573373615742, -0.01260908879339695, -0.00894157961010933, 0.004059006925672293, 0.005314641632139683, 0.02146952971816063, 0.009055175818502903, -0.009769203141331673, -0.0016633610939607024, 0.015027047134935856, -0.013728814199566841, -0.005452578887343407, 0.017201587557792664, -0.014597008004784584, -0.00017343582294415683, -0.006698071025311947, 0.008191038854420185, 0.01131085492670536, -0.009542012587189674, -0.009477101266384125, 0.010247927159070969, -0.0005365353426896036, -0.034500543028116226, -0.001270848442800343, 0.002941309241577983, -0.010101876221597195, 0.009542012587189674, -0.0021116570569574833, 0.012398125603795052, -0.008722502738237381, 0.011830148287117481, -0.002793229417875409, -0.0016349622746929526, -0.005452578887343407, 0.0022779933642596006, -0.007225478067994118, 0.006442481651902199, 0.007777227088809013, -0.004304453730583191, -0.023319510743021965, 0.011789578944444656, 0.006888749077916145, -0.01008564792573452, 0.005886675324290991, -0.0026958619710057974, -0.0029494231566786766, 0.0002560967404861003, -0.02508835308253765, -0.0008626150083728135, 0.008722502738237381, -0.0014361703069880605, 0.003890642197802663, -0.018386226147413254, 0.020934008061885834, 0.012195276096463203, -0.018240174278616905, 0.015530113130807877, -0.01440227311104536, 0.00809367187321186, 0.02150198444724083, 0.01256851851940155, 0.003050847677513957, -0.004312567878514528, 0.0019311216892674565, -0.005261900834739208, 0.017347639426589012, 0.005217274185270071, 0.005298413801938295, -0.01187883224338293, 0.0013682158896699548, -0.004413992166519165, 0.013534079305827618, -0.012787595391273499, 0.025234404951334, 0.02494230307638645, -0.013753156177699566, -0.016747206449508667, -0.008665705099701881, -0.020836640149354935, 0.00660476041957736, 0.001443270011804998, 0.0038845567032694817, -0.032326001673936844, -0.014913451857864857, 0.01908402517437935, -0.002121799625456333, 0.005290299654006958, 0.020576993003487587, 0.003570140805095434, 0.0024990986566990614, 0.014702488668262959, 0.002892625518143177, 0.003770961193367839, -0.014045258983969688, 0.02651640959084034, 0.001122768735513091, 0.010410206392407417, 0.011765236966311932, 0.005574288312345743, 0.015302921645343304, 1.873182918643579e-05, -0.011675983667373657, -0.011627299711108208, -0.010848360136151314, -0.02275153435766697, 0.00251126941293478, -0.005221331026405096, 0.0025518392212688923, -0.024844935163855553, 0.015497656539082527, 0.001769856782630086, 0.02146952971816063, 0.004762892611324787, 0.01765596866607666, 0.014702488668262959, -0.012949874624609947, 0.006255860440433025, -0.0019960333593189716, -0.010410206392407417, 0.02278398908674717, 5.4991072829579934e-05, 0.009217454120516777, -0.0034666878636926413, -0.004904886707663536, 0.0025599533692002296, 0.002610665513202548, -0.019457267597317696, -0.018353769555687904, 0.009899026714265347, -0.006965831853449345, 0.0023753608111292124, 0.01634962297976017, -0.021891454234719276, -0.018272630870342255, 0.015749190002679825, -0.010580599308013916, -0.004519473761320114, 0.026808511465787888, 0.02021997980773449, -0.0003303901758044958, -0.0005134613020345569, 0.0023003066889941692, 0.003724306123331189, -0.00011562387953745201, 0.00034813943784683943, 0.004271998070180416, 0.001528466586023569, -0.00013400705938693136, -0.017315182834863663, 0.010564371012151241, 0.02265416644513607, 0.00810989923775196, 0.024601515382528305, 0.004487018100917339, -0.004405878484249115, -0.01647944562137127, -0.042127661406993866, 0.015822215005755424, -0.0025295258965343237, -0.025705013424158096, 0.007959791459143162, -0.013858637772500515, 0.012974216602742672, -0.016844574362039566, 0.005923188291490078, 0.011229715310037136, -0.011675983667373657, -0.0026431214064359665, -0.0095663545653224, 0.01128651387989521, -0.013452939689159393, 0.005622971802949905, 0.017006853595376015, 0.025672558695077896, -0.013185178861021996, -0.01643076166510582, -0.019165165722370148, 0.028788316994905472, -0.007144338451325893, -0.014353589154779911, 0.015651822090148926, -0.009322935715317726, 0.007890822365880013, 0.0053430404514074326, 0.006961774546653032, -0.0017688424559310079, 0.015229896642267704, -0.018175262957811356, -0.0021441129501909018, -0.017136676236987114, 0.007765056565403938, 0.010807789862155914, 0.0042801122181117535, -0.027051931247115135, 0.023319510743021965, 0.006673729047179222, -0.009679949842393398, 0.016860801726579666, 0.02906419150531292, 0.012308872304856777, -0.00633700005710125, 0.012438694946467876, 0.01775333657860756, -0.014345475472509861, -0.0026634063106030226, 0.01509195938706398, -0.031076453626155853, 0.02912910282611847, 0.0012028940254822373, -0.006535791791975498, -0.021858999505639076, -0.0006846150499768555, -0.0019270646153017879, -0.0013022900093346834, 0.006016498897224665, 0.022459430620074272, 0.003951496910303831, 0.012227732688188553, 0.03180671110749245, 0.013720700517296791, 0.012373783625662327, -0.007160566747188568, 0.009468987584114075, 0.00443833414465189, 0.0066088177263736725, -0.004913000855594873, 0.007367472629994154, -0.020658133551478386, 0.018126579001545906, -0.00029438448837026954, 0.00031213375041261315, -0.008844212628901005, 0.0015000676503404975, 0.001938221394084394, -0.021096287295222282, 0.026776056736707687, -0.017120448872447014, 0.008341147564351559, 0.0005659484886564314, -0.005578345153480768, 0.0022090247366577387, 0.014605121687054634, -0.006965831853449345, -0.006328885909169912, 0.011448792181909084, -0.00998016633093357, 0.015075731091201305, 0.015668049454689026, -0.018613416701555252, -0.020560765638947487, 0.002910881768912077, -0.008560224436223507, 0.013550307601690292, 0.008617022074759007, -0.0062923734076321125, 0.02383880317211151, 0.018159033730626106, 0.025445368140935898, 0.0011633385438472033, 0.0009062275057658553, -0.005063108634203672, -0.02030111849308014, 0.007042914163321257, -0.008012532256543636, -0.015870898962020874, -0.013444826006889343, 0.0002606608613859862, 0.0026573208160698414, -0.0026573208160698414, 0.03307248651981354, -0.01135953888297081, -0.004422106314450502, -0.01130274124443531, 0.0013925577513873577, 0.006097638048231602, 0.014248107559978962, 0.003426118055358529, -0.005594572983682156, 0.02409845031797886, -0.00019828480435535312, 0.002892625518143177, -0.025575190782546997, 0.005391723942011595, -0.01441038679331541, 0.008965921588242054, 0.005119906738400459, -0.007606834173202515, -0.02758745104074478, 0.01140822283923626, -0.0016471331473439932, 0.0059799859300255775, 0.005781194195151329, -0.009826001711189747, -0.005160476081073284, 0.011099892668426037, 0.01128651387989521, 0.001823611673898995, -0.023514246568083763, -0.008974036201834679, 0.011546160094439983, 0.0012312928447499871, 0.013225749135017395, 0.0077407145872712135, 0.024552831426262856, -0.0011288542300462723, 0.0014787685358896852, 0.0069333757273852825, -0.024374324828386307, 0.004042778629809618, 0.00565542746335268, -0.0005175182595849037, -0.009866571053862572, 0.006762982811778784, -0.00251126941293478, 0.0069982875138521194, 0.008519654162228107, 0.01885683462023735, 0.014816084876656532, -0.01757482998073101, 0.004194915294647217, 0.013874865137040615, 0.00024164376372937113, -0.0191327091306448, 0.010507573373615742, -0.000469848804641515, 0.0020132753998041153, -0.02132347784936428, 0.012446809560060501, 0.014556437730789185, -0.019733142107725143, -0.0044586192816495895, 0.008260007947683334, 0.014605121687054634, 0.022232240065932274, 0.014442842453718185, 0.01895420253276825, 0.026029571890830994, -0.016568699851632118, 0.024179590865969658, 0.010799676179885864, 0.012138478457927704, 0.00111668324097991, 0.012008655816316605, -0.013444826006889343, -0.005136134568601847, -0.004263883922249079, 0.009826001711189747, -0.014191309921443462, -0.011765236966311932, -0.004146231804043055, 0.007655518129467964, -0.007144338451325893, 0.0037953031715005636, -0.005947530269622803, 0.009485214948654175, -0.004515416920185089, -0.008495312184095383, 0.011424451135098934, 0.0018804094288498163, -0.0010355437407270074, 0.01377749815583229, 0.0014899251982569695, -0.0004079798818565905, 0.02757122367620468, -0.005764965899288654, -0.0028987110126763582, 0.012024883180856705, -0.004385593347251415, -0.004616841208189726, -0.024780023843050003, -0.012974216602742672, -0.001962563255801797, 0.016163000836968422, 0.020658133551478386, 0.001102483831346035, -0.01198431383818388, 0.005119906738400459, -0.006304544396698475, -0.005671655759215355, -0.004714208655059338, 0.004067120607942343, -0.011586729437112808, 0.015586910769343376, 0.0037506762892007828, -0.03026505745947361, -0.009842229075729847, -0.00012291375605855137, 0.0039129555225372314, 0.02030111849308014, -0.006880634929984808, -0.018029211089015007, 0.004178687464445829, 0.003566083963960409, 0.005148305557668209, -0.012876848690211773, 0.011570502072572708, 0.0017384152160957456, -0.011538046412169933, -0.014605121687054634, 0.0017272584373131394, 0.0017434863839298487, 0.001582221477292478, -0.014280563220381737, -0.009095745161175728, 0.003525514155626297, -0.015189326368272305, 0.003949468489736319, -0.00507122278213501, -0.0028601696249097586, 0.0034382890444248915, -0.03622070327401161, 0.008239722810685635, 0.00760277733206749, 0.0189217459410429, -0.014670033007860184, 0.020966462790966034, 0.010369636118412018, -0.02395240031182766, 0.003943382762372494, 0.029469890519976616, -0.0015497657004743814, 0.008665705099701881, 0.015935810282826424, -0.006588532589375973, -0.0006136179435998201, 0.0037608188576996326, -0.01893797516822815, 0.015238010324537754, 0.0007829968235455453, 0.015741076320409775, -0.002535611391067505, -0.018061667680740356, 0.0005953615764155984, 0.026824740692973137, -0.03381897136569023, 0.025445368140935898, 0.0026573208160698414, 0.010702308267354965, -0.03618824481964111, 0.0028682835400104523, 0.0018124550115317106, 0.005773080047219992, -0.03239091485738754, -0.007046971004456282, 0.014986477792263031, -0.020463397726416588, -0.029307611286640167, -0.003732420038431883, 0.017412550747394562, -0.0027161468751728535, 0.002135999035090208, 0.023546701297163963, 0.024358097463846207, -0.017964299768209457, -0.021063830703496933, -0.010393978096544743, 0.0033754059113562107, -0.0008616007398813963, 0.00599215691909194, 0.0016714750090613961, 0.019570862874388695, 0.016812117770314217, 0.018434908241033554, -0.006767039652913809, 0.00822349451482296, -0.009152542799711227, -0.004014379810541868, -0.008040931075811386, -0.021128742024302483, -0.002823656890541315, -0.00823566596955061, -0.009679949842393398, 0.013639560900628567, -0.012130364775657654, -0.014621349982917309, 0.009111973457038403, -2.4500344807165675e-05, 0.00633700005710125, 0.007647403981536627, 0.001711030607111752, -0.0031421296298503876, -0.017023080959916115, 0.018240174278616905, 0.009720520116388798, 0.05903714895248413, 0.015319149941205978, 0.02122610993683338, 0.007627118844538927, -0.00364722334779799, -0.02633790299296379, 0.005866390652954578, -0.00028601696249097586, -0.010247927159070969, 0.0040914625860750675, -0.0064384243451058865, -0.034727733582258224, 0.011854490265250206, 0.005509376525878906, -0.009225568734109402, 0.00039682319038547575, -0.0038196449168026447, -0.0023469619918614626, -0.008706275373697281, 0.01389920711517334, -0.007619005162268877, 0.016828345134854317, -0.0018469393253326416, -0.00565542746335268, 0.0042882259003818035, -0.00035168929025530815, 0.02416336163878441, 0.00691309105604887, 0.014215651899576187, 0.0011339253978803754, 0.03479264676570892, -0.0023205915931612253, -0.01621168479323387, 0.0187919232994318, -0.0005020510288886726, -0.0032557251397520304, -0.013818067498505116, 0.009266138076782227, 0.0035965112037956715, -0.01992787793278694, -0.00828029215335846, -0.013177065178751945, 0.005789307877421379, -0.003085331991314888, -0.027068158611655235, -0.014264335855841637, 0.01066985260695219, 0.023270826786756516, -0.013761269859969616, 0.0003306437283754349, -0.004815632943063974, -0.007659574970602989, -0.020593222230672836, 0.005700054578483105, 0.0032313831616193056, 0.002160341013222933, 0.005513433367013931, -0.011383880861103535, -0.005059051793068647, 0.005253786686807871, -0.02161557972431183, -0.0029920213855803013, 0.001240421086549759, 0.012811937369406223, 0.009915255010128021, 0.03323476389050484, 0.01072665024548769, 0.00565542746335268, 0.005286242812871933, -0.0003577747556846589, 0.01458889339119196, -0.019116481766104698, 0.0014412414748221636, -0.004560043569654226, -0.005911017302423716, -0.03651280328631401, -0.024569060653448105, -0.024390552192926407, -0.007391814142465591, -0.01325820479542017, -0.01059682760387659, -0.023627841845154762, -0.005278128664940596, -0.019457267597317696, -0.01661738194525242, -0.010807789862155914, -0.006645330227911472, -0.0013509737327694893, 0.018353769555687904, 0.0004444926744326949, -0.0047791204415261745, 0.0001821836776798591, 0.004052921198308468, 0.015716733410954475, 0.005115849431604147, 0.010385864414274693, -0.012260188348591328, -0.0039048416074365377, 0.008892896585166454, 0.0034484313800930977, -0.002170483348891139, 0.014183196239173412, 0.005862333346158266, -0.003134015714749694, 0.012747026048600674, -0.01445907074958086, -0.010515687987208366, 0.0018083980539813638, -0.007959791459143162, 0.022962497547268867, -0.013282546773552895, -0.005764965899288654, -0.0190353412181139, -0.002035588724538684, 0.002979850396513939, 0.022151101380586624, 0.018532276153564453, 0.007059141993522644, -0.0063694557175040245, 0.015229896642267704, -0.008795528672635555, 0.008860439993441105, 0.023708980530500412, 0.01059682760387659, -0.0022779933642596006, 0.023611612617969513, -0.00818698201328516, 0.020528309047222137, 0.01780202053487301, 0.013095925562083721, 0.00886855460703373, -0.015083844773471355, 0.0020497883670032024, 0.007383700460195541, -0.0005104185547679663, -0.015651822090148926, 0.015992607921361923, 0.0003035126719623804, 0.01659304089844227, 0.005854219663888216, -0.002397674135863781, 0.01657681353390217, -0.0016836459981277585, 9.92691857391037e-05, -0.0007769113290123641, 0.00011549709597602487, -0.024487920105457306, 0.0054120090790092945, 0.011108006350696087, 0.012592860497534275, 0.007821854203939438, -0.005290299654006958, 0.001838825410231948, 0.014994591474533081, -0.0011187117779627442, 0.01632528007030487, 0.014239993877708912, 0.011099892668426037, -0.019603319466114044, 0.011895060539245605, -0.0009498400031588972, 0.0031847278587520123, 0.003578254720196128, 0.01908402517437935, 0.007282275706529617, -0.018467364832758904, -0.009582582861185074, 0.016747206449508667, -0.00407523475587368, 0.0027364317793399096, 0.0034991437569260597, 0.004941399674862623, -0.0008326947572641075, 0.006547962781041861, 8.576705295126885e-05, 0.016633611172437668, 0.002728317864239216, -0.005075279623270035, -0.007882708683609962, -0.0032861523795872927, 0.017234044149518013, 0.015319149941205978, 0.010434548370540142, -0.0019321358995512128, -0.037194374948740005, -0.0019189507002010942, -0.01388297975063324, 0.00027866370510309935, -0.00504282396286726, 0.0009249910362996161, 0.03200144320726395, 0.013607105240225792, 0.003233411582186818, -0.003639109432697296, -0.004685809835791588, 0.010458889417350292, -0.008049044758081436, -0.010986297391355038, -0.017023080959916115, -0.005594572983682156, 0.012552290223538876, 0.017964299768209457, 0.01383429579436779, 0.010880815796554089], "f56976c9-3bd6-444b-9dca-3bf42084a562": [-0.00511861452832818, -0.006776637863367796, -0.013400227762758732, 0.016427181661128998, -0.025406014174222946, 0.012813542038202286, 0.007758697494864464, 0.023348364979028702, -0.016444187611341476, 0.025916175916790962, 0.02926623262465, -0.00044798507587984204, 0.0058753532357513905, 0.005764818750321865, -0.013051616959273815, 0.034214794635772705, -0.021494781598448753, 0.029844414442777634, 0.010985465720295906, 0.012992098927497864, 0.0455743782222271, -0.02593318186700344, -0.04326164722442627, 0.02656237967312336, 0.020865581929683685, 0.011988782323896885, 0.0024423955474048853, -0.008481425233185291, -0.07740841805934906, -0.01387637760490179, 0.02475981041789055, 0.02807585708796978, 0.009446480311453342, -0.008817281574010849, -0.015160282142460346, -0.04452004283666611, 0.028739066794514656, -0.026154249906539917, -0.014420549385249615, 0.03098377399146557, -0.0379219613969326, -0.003275658469647169, 0.017370980232954025, -0.00276974868029356, -0.05278465151786804, -0.005407705903053284, -0.0012328888988122344, 0.00805629137903452, -0.05006379261612892, 0.002767623169347644, -0.0005226492648944259, -0.01879092864692211, 0.018637878820300102, 0.0063812630251049995, 0.027854787185788155, -0.009012843482196331, -0.033891692757606506, -0.010441293939948082, 0.04564239829778671, -0.0464586578309536, -0.003420203924179077, 0.001831265166401863, -0.0337386429309845, 0.0078904889523983, -0.011249048635363579, -0.0036391480825841427, -0.012337392196059227, -0.001865275902673602, -0.03463992848992348, -0.00872375164180994, -0.0077544464729726315, 0.046832773834466934, -0.009625036269426346, 0.006946691311895847, -0.0005967820179648697, -0.010390277951955795, 0.07162659615278244, 0.02066151797771454, 0.03867020085453987, -0.0020948483143001795, -0.027701739221811295, 0.00739308213815093, 0.0433976911008358, 0.01343423780053854, 0.08053740859031677, -0.031646981835365295, 0.004030271433293819, -0.04625459015369415, 0.00546722486615181, -0.019165046513080597, 0.000932637951336801, 0.009420972317457199, 0.00046206763363443315, -0.01911403052508831, -0.010976962745189667, 0.020678523927927017, 0.014939213171601295, 0.01744750328361988, -0.01836579293012619, -0.022260021418333054, -0.006028401665389538, 0.026613395661115646, -0.027582701295614243, 0.04496218264102936, 0.01669926755130291, -0.0030567143112421036, -0.01228637620806694, 0.01987927034497261, -0.025372004136443138, 0.07482360303401947, 0.0020289525855332613, -0.01940312050282955, -0.016010550782084465, -0.006406771019101143, -0.05247855558991432, -0.05088005214929581, -0.00797976739704609, -0.03414677083492279, -0.0229062270373106, -0.0318850576877594, -0.004429897293448448, 0.01744750328361988, 0.010118192061781883, 0.007750194985419512, -0.05509738251566887, 0.0031927572563290596, 0.023144301027059555, 0.026035213842988014, 0.00972706824541092, 0.00797976739704609, 0.006432279013097286, -0.010543325915932655, 0.0007567387074232101, -0.014403543435037136, 0.005692545790225267, 0.009420972317457199, 0.008676987141370773, 0.014207982458174229, -0.02732762135565281, 0.02413061261177063, -0.05315877124667168, -0.05996091663837433, -0.016954349353909492, 0.007095488253980875, 0.025116924196481705, -0.03547319024801254, -0.0321231335401535, 0.058022305369377136, -0.02214098535478115, 0.02035542204976082, -0.04268346354365349, -0.05737610161304474, -0.022362055256962776, 0.02458975650370121, 0.06904178112745285, -0.026817459613084793, -0.014828678220510483, 0.01986226625740528, 0.018399804830551147, 0.02339938096702099, 0.009965144097805023, -0.06904178112745285, -0.008668484166264534, 0.0213757436722517, 0.02793981321156025, 0.006806397344917059, 0.05404304713010788, 0.009676052257418633, -0.023586440831422806, 0.03520110622048378, -0.002308478346094489, 0.007346317637711763, 0.029997462406754494, 0.012090814299881458, 0.020372426137328148, -0.01777060516178608, 0.01168268546462059, 0.015968037769198418, 0.022872215136885643, -0.019318094477057457, -0.01275402307510376, -0.036493513733148575, 0.0324462354183197, -0.0025741870049387217, -0.0042874775826931, 0.02321232296526432, 0.004991074558347464, -0.01654621958732605, 0.020712533965706825, 0.023467402905225754, -0.006785140372812748, 0.004991074558347464, 0.021970931440591812, 0.019947292283177376, -0.009616533294320107, -0.05343085527420044, -0.004872037097811699, -0.021443765610456467, 0.004323613829910755, 0.024402698501944542, 0.005496983882039785, -0.05145823210477829, -0.0260862298309803, 0.029980458319187164, -0.004676475189626217, 0.03173201158642769, -0.024351682513952255, 0.01237140316516161, 0.03836410120129585, -0.031970083713531494, 0.02140975371003151, -0.04329565912485123, 0.020763549953699112, -0.018263760954141617, -0.030898747965693474, 0.006126182619482279, 0.014998731203377247, 0.011886749416589737, 0.024946870282292366, -0.01607857272028923, 0.00470198318362236, 0.017855633050203323, -0.017957665026187897, -0.0030949763022363186, -0.026987513527274132, -0.024487724527716637, 0.0010777149582281709, 0.02003232017159462, -0.009548512287437916, -0.019624190405011177, 0.01743049919605255, -0.0060326531529426575, -0.012073809280991554, -0.025882164016366005, 0.00018772328621707857, 0.011912258341908455, 0.03049061819911003, -0.005233400966972113, -0.011512631550431252, 0.003811327274888754, -0.022583123296499252, 0.03533714637160301, -0.014650121331214905, -0.025440026074647903, 0.03812602907419205, -0.008621719665825367, 0.02035542204976082, 0.005071850027889013, -0.008970329537987709, -0.011427604593336582, -0.04203725978732109, -0.0006042218883521855, -0.009225410409271717, -0.027208583429455757, -0.0168268084526062, 0.016767289489507675, 0.01566193997859955, -0.03904431685805321, 0.007231531199067831, -0.0027442406862974167, 0.017243439331650734, 0.018314776942133904, -0.0216988455504179, 0.026817459613084793, 0.017855633050203323, -0.05220646783709526, -0.007282547187060118, -0.019011996686458588, -0.02324633300304413, 0.028330937027931213, 0.004812518134713173, 0.002319106599316001, -0.01607857272028923, 0.002765497425571084, 0.040574800223112106, -0.02260012924671173, 0.023348364979028702, 0.004051527939736843, -0.018093707039952278, -0.023348364979028702, -0.01654621958732605, 0.02062750793993473, -0.021052641794085503, -0.0307967159897089, 0.016163598746061325, 0.009752576239407063, -0.0267324335873127, 0.02489585429430008, -0.06458637118339539, -0.014539586380124092, 0.0011266054352745414, -0.028790082782506943, 0.03591533005237579, -0.019471142441034317, 0.0023679970763623714, 0.010560331866145134, -0.004587197210639715, 0.004578694235533476, -0.016588732600212097, 0.05081202834844589, -0.023773498833179474, -0.027293609455227852, -0.02702152356505394, -0.0077714514918625355, 0.016002047806978226, -0.0038134530186653137, 0.01592552475631237, 0.014293008483946323, -0.02685147151350975, 0.013774345628917217, 0.040438756346702576, -0.02792280912399292, -0.02975938841700554, 0.007197520695626736, -0.01124054566025734, -0.005241903476417065, -0.003698666812852025, -0.03958848863840103, -0.005475727375596762, -0.006028401665389538, -0.004383132793009281, -0.020916597917675972, -0.040608812123537064, 0.013714826665818691, 0.013315200805664062, -0.04023469239473343, 0.02261713519692421, -0.005093106534332037, -0.038568165153265, -0.05268261954188347, -0.05720604583621025, -0.02003232017159462, -0.01576397381722927, -0.0012637111358344555, -0.04632261395454407, -0.05798829346895218, -0.0036115143448114395, -0.04281950742006302, -0.0464586578309536, -0.03282035514712334, 0.010313753969967365, 0.008706746622920036, 0.008825784549117088, 0.024198634549975395, 0.022106973454356194, -0.0026422084774821997, -0.014820175245404243, -0.008817281574010849, -0.017566541209816933, -0.02122269570827484, 0.0012063180329278111, 4.321089727454819e-05, 0.0017409241991117597, 0.02535499818623066, 0.020882587879896164, -0.010186213068664074, -0.016010550782084465, -0.01728595234453678, 0.008617468178272247, -0.023620450869202614, -0.0021936921402812004, -0.047002825886011124, -0.024776816368103027, 0.010662363842129707, -0.008842789568006992, -0.005947626195847988, 0.006287733558565378, -0.008617468178272247, 0.005054844543337822, -0.02095060981810093, -0.02472580038011074, 0.009761079214513302, 0.03628944978117943, 0.004816769622266293, -0.03812602907419205, -0.012983595952391624, 0.04938357695937157, 0.0043406193144619465, -0.02703852951526642, 0.019675206393003464, -0.02734462544322014, 0.022651145234704018, -0.006164444610476494, -0.005377946421504021, 0.030864736065268517, -0.004251341335475445, 0.013629799708724022, -0.005394951906055212, -0.011538139544427395, -0.004217330366373062, -0.06285182386636734, 0.021307721734046936, -0.010976962745189667, -0.0010187276639044285, -0.014565094374120235, 0.008013778366148472, 0.02411360666155815, -0.024164622649550438, 0.021477775648236275, -0.02183488756418228, 0.03890827298164368, 0.0009517690050415695, -0.024776816368103027, 0.029062168672680855, 0.020457454025745392, -0.010568833909928799, -0.03707169368863106, -0.004974069073796272, 0.025116924196481705, 0.03307543322443962, 0.0016399548621848226, -0.009123378433287144, 0.021171679720282555, 0.025303982198238373, 0.044690098613500595, 0.01894397661089897, -0.027072539553046227, 0.05036988854408264, -0.026494357734918594, -0.05057395249605179, -0.0014358904445543885, 0.05285267159342766, 0.03334752097725868, 0.02656237967312336, 0.01566193997859955, 0.021426759660243988, 0.020253390073776245, 0.036221425980329514, -0.00834113173186779, -0.009846106171607971, 0.015100764110684395, 0.031357891857624054, 0.01697985641658306, 0.011359583586454391, 0.012617980130016804, -0.020865581929683685, -0.015738464891910553, -0.0017058505909517407, 0.007103991229087114, -0.02154579758644104, -0.018280766904354095, 0.028262915089726448, -0.021137667819857597, -0.017073385417461395, -0.03965650871396065, -0.021477775648236275, -0.05315877124667168, -0.013757339678704739, -0.0063812630251049995, 0.008893805555999279, 0.015576913952827454, -0.01686932146549225, -0.0885639414191246, -0.026443341746926308, -0.00933594536036253, -0.004009014926850796, 0.028943130746483803, -0.03234420344233513, 0.029844414442777634, -0.055743586272001266, -0.044826142489910126, 0.010135197080671787, 0.030269548296928406, 0.002835644641891122, 0.03564324602484703, -0.04244539141654968, -0.010313753969967365, 0.0003730551979970187, 0.023501412943005562, 0.0008869360317476094, 0.01591702178120613, -0.011725198477506638, -0.0024062590673565865, -0.006882921326905489, 0.022957243025302887, -0.044384002685546875, -0.04264945536851883, -0.017345471307635307, 0.005654283799231052, -0.034248802810907364, -0.012830547988414764, -0.009208405390381813, -0.016053063794970512, -0.00331817171536386, -0.0020204498432576656, -0.019352104514837265, -0.0037475572898983955, -0.04268346354365349, -0.008676987141370773, -0.0208145659416914, 0.023195317015051842, -0.020899593830108643, 0.028500990942120552, 0.03455490246415138, -0.008596211671829224, -0.0026549624744802713, -0.03489500656723976, -0.04931555688381195, -0.004293854348361492, 0.004053653683513403, 0.014216484501957893, -0.02501489222049713, -0.0027463664300739765, 0.006844659335911274, -0.01773659512400627, -0.0013412981061264873, -0.015134774148464203, 0.019828254356980324, 0.0028165134135633707, -0.042411379516124725, -0.0455743782222271, 0.03463992848992348, -0.008617468178272247, 0.018433814868330956, 0.024164622649550438, 0.000658957869745791, 0.010560331866145134, -0.002180937910452485, 0.00864297617226839, 0.014437554404139519, 0.013604291714727879, -0.019080018624663353, -0.009990652091801167, 0.005297170951962471, 0.014063436537981033, -0.01343423780053854, -0.011512631550431252, -0.03870420902967453, 0.030711688101291656, -0.034622922539711, -0.02396055869758129, 0.024521736428141594, -0.04458806663751602, 0.016971353441476822, 0.0023403633385896683, -0.00747385760769248, 0.005186636000871658, 0.04873737320303917, -0.003381941933184862, 0.01669076457619667, -0.037241749465465546, 0.0519343838095665, -0.0016697142273187637, 0.009846106171607971, 0.010194716043770313, 0.033177465200424194, -0.016461193561553955, 0.004761502146720886, 0.02625628374516964, 0.021137667819857597, 0.003492476651445031, -0.007639660034328699, -0.009633539244532585, 0.007750194985419512, -0.005530994851142168, -0.05261459946632385, 0.024334676563739777, 0.0021533044055104256, 0.00740158511325717, -0.04690079391002655, -0.009990652091801167, 0.04336367920041084, 0.0003260247176513076, 0.025746122002601624, -0.011223540641367435, -0.006568321958184242, 0.01220985222607851, 0.022719167172908783, 0.006844659335911274, -0.006232466083019972, 0.005148374009877443, -0.02623927779495716, 0.026817459613084793, 0.004927304573357105, -0.005454470869153738, 0.024215638637542725, 0.022634141147136688, 0.02504890225827694, -0.023756494745612144, 0.006576824933290482, 0.01486268825829029, -0.005577759817242622, -0.0014465188141912222, -0.015245309099555016, 0.02093360386788845, 0.011648674495518208, -0.012643488124012947, -0.020100340247154236, 0.0008731191628612578, 0.010109689086675644, -0.00546297337859869, 0.04571041837334633, -0.0029823158401995897, 0.0025444277562201023, 0.001413570949807763, 0.02474280633032322, -0.0011127885663881898, 0.005318427924066782, 0.00165908585768193, 0.018331782892346382, -0.0043023573234677315, 0.006496049463748932, 0.02064451202750206, -0.000864616478793323, -0.025133928284049034, 0.025831148028373718, -0.020287400111556053, 0.01591702178120613, 0.0173114612698555, 0.03232719749212265, -0.022123979404568672, -0.020525475963950157, 0.03067767806351185, -0.010781400837004185, 0.0394524447619915, 0.00243176706135273, -0.005641529802232981, -0.01455659233033657, 0.004731742665171623, -0.010602844879031181, 0.02867104485630989, -0.03935041278600693, 0.052716631442308426, -0.01580648683011532, -0.008562200702726841, 0.021647829562425613, -0.013000600971281528, 0.013068622909486294, -0.0029185456223785877, -0.013493756763637066, -0.03185104951262474, 0.003252275986596942, 0.0018503962783142924, -0.03914634883403778, 0.04693480581045151, -0.017787611111998558, -0.0085749551653862, 0.04866935312747955, -0.014565094374120235, 0.015058250166475773, -0.026749437674880028, -0.0019194805063307285, -0.0016803425969555974, 0.039690520614385605, -0.005696797277778387, 0.010500812903046608, -0.029997462406754494, 0.02125670574605465, 0.04931555688381195, 0.003454214660450816, -0.031663987785577774, -0.004850780125707388, 0.005590513814240694, 0.03901030495762825, 0.025712111964821815, -0.012686002068221569, -0.007461103610694408, -0.014131457544863224, 0.010211721062660217, 0.00596038019284606, 0.008625971153378487, -0.003960124216973782, 0.009182896465063095, 0.008477174676954746, 0.016486700624227524, 0.018025686964392662, 0.010441293939948082, 0.01590851880609989, 0.0021554299164563417, 0.028432969003915787, 0.02078055590391159, -0.03450388461351395, 0.005764818750321865, -0.002895163372159004, -0.017098894342780113, -0.010305250994861126, 0.001312601612880826, 0.006878669839352369, 0.015287823043763638, -0.021137667819857597, 0.023756494745612144, -0.02152879163622856, -0.022413071244955063, -0.001068680896423757, 0.006729872897267342, -0.01160616148263216, 0.007427093107253313, 0.00256143300794065, -0.025593074038624763, -0.020168362185359, -0.007418590132147074, -0.017855633050203323, -0.005131368990987539, -0.00436612730845809, -0.013502259738743305, 0.01372332964092493, 0.01868889480829239, -0.017404990270733833, -0.00941246934235096, -0.01016920804977417, -0.043771807104349136, -0.026613395661115646, -0.013221670873463154, -0.03353457897901535, -0.0028228904120624065, 0.004846529103815556, -0.015015737153589725, -0.029249226674437523, 0.01176771242171526, 0.0025529302656650543, -0.00046764753642491996, 0.0001141883694799617, -0.0044469027779996395, -0.01344274077564478, 0.017226435244083405, 0.026613395661115646, -0.020610501989722252, -0.011640172451734543, -0.008749259635806084, 0.01555990893393755, 0.017056381329894066, 0.00713800173252821, -0.0029716873541474342, -0.02139274775981903, -0.035439178347587585, 0.0005354032618924975, 0.007592895068228245, 0.006445033010095358, 0.014241992495954037, 0.003422329667955637, 0.019505152478814125, 0.0021533044055104256, -0.022991253063082695, 0.006432279013097286, 0.007907494902610779, -0.013570280745625496, -0.014505576342344284, 0.003075845306739211, 0.02731061540544033, -0.018841944634914398, -0.003989883698523045, -0.0024721547961235046, 0.013791350647807121, -0.015576913952827454, -0.024232644587755203, 0.0185188427567482, 0.02353542484343052, 0.013612794689834118, -0.008842789568006992, -0.004149308893829584, 0.0334155410528183, -0.04132303595542908, 0.0425134114921093, 0.00402389420196414, -0.024181628599762917, 0.012549959123134613, 0.023586440831422806, 0.005110112018883228, -0.003975003957748413, 0.025882164016366005, -0.022719167172908783, 0.013315200805664062, -0.02066151797771454, -0.01328118983656168, 0.011648674495518208, 0.012958087958395481, -0.005008080042898655, 0.007592895068228245, 0.03737778961658478, -0.01635916158556938, 0.024980880320072174, 0.01792365498840809, -0.00037252376205287874, 0.0015272942837327719, -0.006840407848358154, 0.002697475953027606, -0.01455659233033657, -0.004799764137715101, -0.03229318559169769, 0.005025085061788559, -0.020440448075532913, -0.03446987271308899, -0.0044681597501039505, 0.004825272131711245, 0.0318850576877594, -0.03962250053882599, 0.048805397003889084, -2.0044410121045075e-05, -0.0025423020124435425, -0.00689992681145668, 0.019811250269412994, -0.006848910357803106, -0.013859372586011887, 0.016886327415704727, 0.012830547988414764, -0.018297772854566574, 0.003930364735424519, 0.0038878514897078276, -0.020695528015494347, 0.011325572617352009, 0.012796537019312382, -0.05431513488292694, 0.012277873232960701, 0.025252966210246086, -0.018110712990164757, -0.0561177022755146, -0.01395290158689022, -0.008995837531983852, -0.013383221812546253, 0.017974670976400375, 0.0003693352628033608, -0.024861842393875122, 0.018297772854566574, 0.012337392196059227, -0.018025686964392662, -0.010373272001743317, -0.01017771102488041, 0.012932579964399338, 0.014845683239400387, 0.027582701295614243, -0.013782847672700882, 0.0015411111526191235, 0.015704454854130745, 0.0022425823844969273, -0.007767200469970703, -0.0060794176533818245, 0.02460676245391369, 0.008613217622041702, 0.012507446110248566, -0.008536692708730698, -0.026987513527274132, -0.014139960519969463, 0.005815834738314152, 0.05237652361392975, -0.013502259738743305, 0.009676052257418633, -0.022226011380553246, -0.026613395661115646, -0.026018207892775536, 0.029810404404997826, -0.028126873075962067, -0.014573597349226475, -0.03530313819646835, 0.0019258575048297644, -0.013111135922372341, -0.010058673098683357, 0.021919915452599525, 0.011538139544427395, 0.012958087958395481, 0.03860217705368996, 0.034078750759363174, 0.010296748019754887, 0.013051616959273815, 0.03446987271308899, -0.013791350647807121, -0.017634563148021698, -0.004374629817903042, 0.019165046513080597, -0.04125501587986946, 0.026477351784706116, 0.02277018316090107, 0.032395221292972565, -0.02460676245391369, -0.015814989805221558, -0.0058370912447571754, -0.024351682513952255, 0.005148374009877443, -0.041357047855854034, 0.00689992681145668, -0.03887426480650902, -0.013655307702720165, -0.0002906854497268796, 0.006746878381818533, -0.0025125425308942795, 0.0010240417905151844, -0.032735325396060944, -0.009897122159600258, -0.012711510062217712, -0.011317070573568344, 0.00596038019284606, 0.024368686601519585, 0.0014263249468058348, -0.023620450869202614, -0.015831993892788887, -0.02214098535478115, -0.0038155787624418736, 0.01655472256243229, -0.016180604696273804, 0.00873225461691618, 0.037105705589056015, 0.0009937509894371033, 0.012932579964399338, -0.041663143783807755, -0.0001778920559445396, -0.010381774976849556, 0.006007145158946514, 0.005008080042898655, -0.040336724370718, 0.01728595234453678, -0.03975854068994522, -0.00015783103299327195, -0.04156111180782318, -0.06111728027462959, 0.01744750328361988, 0.025099918246269226, -0.03577928617596626, 0.0015814988873898983, -0.013578783720731735, 0.01913103461265564, -0.005671289283782244, -0.005220646969974041, 0.0014805295504629612, -0.0047785076312720776, -0.004472410771995783, 0.023790504783391953, 0.0370376855134964, 0.001108537195250392, -0.01930108852684498, -0.0077927084639668465, 0.004655218683183193, -0.007529125083237886, 0.036663565784692764, 0.011470118537545204, 0.021936919540166855, -0.005054844543337822, -0.028041847050189972, -0.01972622238099575, -0.010500812903046608, 0.0016824682243168354, 0.019522158429026604, -0.005377946421504021, 0.007835221476852894, 0.024640772491693497, -0.01077289879322052, 0.015253812074661255, 0.016945846378803253, 0.0002723515499383211, -0.03530313819646835, -0.02154579758644104, -0.004974069073796272, -0.018637878820300102, 0.018637878820300102, 0.030150512233376503, -0.015228304080665112, -0.02911318466067314, -0.013901885598897934, -0.00805629137903452, 0.012915574014186859, 0.016002047806978226, -0.002584815490990877, -0.0021522415336221457, 0.011580653488636017, -0.008693993091583252, -0.01367231272161007, 0.032378215342760086, 0.004489416256546974, -0.006929686293005943, -0.01624862663447857, 0.01625712774693966, 0.015585416927933693, -0.012430921196937561, -0.016308143734931946, -0.015330336056649685, -0.0009666486876085401, -0.023280344903469086, 0.017081888392567635, -0.0017919403035193682, 0.009880117140710354, 0.00298019009642303, -0.008961827494204044, -0.003692289814352989, -0.014301511459052563, 0.015593918971717358, 0.006972199305891991, 0.02198793552815914, -0.007839472964406013, -0.020916597917675972, -0.01595953479409218, -0.023195317015051842, 0.002037455327808857, 0.03475896641612053, -0.016818305477499962, -0.007669419515877962, -0.017821623012423515, -0.010551828891038895, -0.03975854068994522, -0.022209005430340767, 9.319737000623718e-05, -0.022821199148893356, -0.0008933130302466452, -0.0008438912336714566, -0.03523511439561844, -0.002665590960532427, -0.023331360891461372, 0.018467826768755913, -0.0011659302981570363, 0.005892358720302582, -0.016741780564188957, 0.01411445252597332, -0.02885810285806656, -0.00588385621085763, -0.0011202284367755055, -0.018892960622906685, 0.04448603466153145, -0.000276868580840528, 0.04659469798207283, 0.017549537122249603, 0.006874418817460537, 0.0032097625080496073, 0.010679368861019611, -0.004663721192628145, -0.00562027283012867, 0.003953747451305389, 0.01503274217247963, 0.015287823043763638, 0.033160459250211716, -0.02518494427204132, -0.03395971283316612, 0.01987927034497261, 0.017855633050203323, -0.012133327312767506, 0.013791350647807121, -0.029963452368974686, 0.013689318671822548, -0.007159258704632521, -0.0065088034607470036, -0.018586862832307816, 0.011725198477506638, -0.010908941738307476, 0.005709551274776459, -0.026664411649107933, -0.018909964710474014, 0.004497918765991926, -0.01775360107421875, 0.0030588400550186634, -0.04618657007813454, -0.012235360220074654, -0.08468671888113022, -0.02186889946460724, -0.011648674495518208, 0.015262315049767494, -0.005662786308676004, -0.01943713240325451, 0.02078055590391159, 0.007563136052340269, -0.012099317274987698, -0.00980359222739935, 0.010271240025758743, 0.0012849678751081228, 0.004770004656165838, 0.031646981835365295, 0.0007360134623013437, 0.01411445252597332, 0.0018780298996716738, -0.0077544464729726315, 0.015075256116688251, -0.022430075332522392, -0.02593318186700344, 0.00941246934235096, 0.024691788479685783, -0.0063217440620064735, -0.0009693058091215789, 0.03219115361571312, 0.017056381329894066, -0.001343423849903047, -0.009182896465063095, -0.023875532671809196, 0.021630823612213135, 0.005292919930070639, -0.006066663656383753, -0.009786587208509445, 0.0208145659416914, -0.00739733362570405, 0.008617468178272247, -0.006202706601470709, 0.021324727684259415, 0.0058583482168614864, 0.01510926615446806, -0.0044171432964503765, 0.0017143533332273364, -0.01402942556887865, 0.0003156620659865439, 0.005309924948960543, -0.016342155635356903, -0.03144291788339615, 0.00013830144598614424, 0.02533799409866333, 0.013179157860577106, 0.023178311064839363, -0.006789391860365868, -0.03142591193318367, -0.011291561648249626, -0.00353073887526989, 0.00857070367783308, -0.006759632378816605, 0.007563136052340269, 0.01335771381855011, 0.07836072146892548, 0.01821274496614933, 0.020882587879896164, 0.0019811249803751707, -0.027582701295614243, 0.002069340320304036, 0.021018629893660545, 0.024045584723353386, 0.0327693372964859, -0.019777238368988037, 0.02004932425916195, 0.0014316391898319125, 0.0035052308812737465, 0.02443670853972435, -0.009420972317457199, 0.01868889480829239, 0.01913103461265564, -0.0016473947325721383, 0.0020247013308107853, -0.021477775648236275, -0.01717541739344597, -0.0012679625069722533, -0.0007694927626289427, -0.010866427794098854, -0.0057988292537629604, -0.012711510062217712, 0.0029291741084307432, -0.03110281191766262, 0.00655981944873929, 0.019777238368988037, 0.0002661073813214898, -0.004646715708076954, 0.016461193561553955, 0.01085792575031519, -0.00353073887526989, 0.03571126610040665, -0.003148118034005165, 0.010670865885913372, -0.020525475963950157, 0.0014305763179436326, -0.001141485059633851, -0.022243017330765724, -0.009420972317457199, -0.0030312063172459602, -0.0004564877599477768, 0.011291561648249626, -0.0023998820688575506, 0.016758786514401436, -0.005752064753323793, -0.02078055590391159, 0.00972706824541092, -0.01865488477051258, -0.03215714544057846, 0.025712111964821815, -0.0047189886681735516, 0.0021596814040094614, -0.013162151910364628, -0.033160459250211716, -0.010126695036888123, 0.01304311491549015, -0.005871102213859558, 0.0009289180161431432, 0.014003917574882507, -0.03730976954102516, -0.004017517436295748, -0.0018588989041745663, -0.010594341903924942, 0.008064794354140759, -0.009786587208509445, 0.01669076457619667, -0.023331360891461372, -0.008175329305231571, -0.003732677549123764, 0.005033588036894798, 0.0014635241823270917, 0.02294023707509041, 0.006802145857363939, -0.017217932268977165, 0.006470541004091501, -0.0458124540746212, -0.0026422084774821997, 0.024334676563739777, 0.033891692757606506, -0.00029785960214212537, -0.012235360220074654, -0.005713802296668291, -0.01419097650796175, 0.030745700001716614, 0.017217932268977165, -0.012490440160036087, -0.029079172760248184, -0.016469696536660194, 0.011206535622477531, -0.020287400111556053, -0.00444265129044652, -0.006768134888261557, -0.021953925490379333, 0.031221849843859673, -0.009097870439291, -0.024555746465921402, -0.021120663732290268, 0.013391724787652493, 0.02277018316090107, -0.0006148501997813582, 0.01412295550107956, 0.015568410977721214, -0.007129499223083258, -0.005764818750321865, 0.008379393257200718, -0.01396140456199646, 0.008553698658943176, -6.768932507839054e-05, 0.018263760954141617, -0.013408729806542397, -0.014063436537981033, -0.015695951879024506, 0.0013264184817671776, 0.028603022918105125, 0.013927393592894077, -0.01435252744704485, -0.01607857272028923, -0.012413916178047657, -0.005182384978979826, -0.000794469378888607, -0.010449796915054321, 0.005450219381600618, 0.0034478376619517803, 0.0213757436722517, -0.01435252744704485, 0.014811672270298004, 0.030779710039496422, 0.003634896595031023, -0.00017231216770596802, 0.0045914482325315475, 0.023773498833179474, -0.0035158591344952583, 0.04319362714886665, 0.001413570949807763, -0.0361534059047699, -0.011971776373684406, -0.015883009880781174, -0.00813281536102295, -0.005769069772213697, 0.0003443586465436965, -0.002633705735206604, -0.01388488058000803, -0.03571126610040665, 0.008600463159382343, -0.001972622238099575, 0.014020923525094986, 0.0031183587852865458, -0.005216395482420921, 0.021018629893660545, -0.0039133597165346146, 0.008311372250318527, -0.01017771102488041, 0.009369956329464912, -0.03700367361307144, 0.014981726184487343, -0.01836579293012619, 0.02654537372291088, 0.007699178997427225, -0.005705299787223339, -0.01252445112913847, -0.014293008483946323, 0.004927304573357105, -0.013060119934380054, -0.07468756288290024, -0.029827410355210304, 0.001693096593953669, -0.004995326045900583, 0.01068787183612585, 0.018637878820300102, -0.009591025300323963, 0.009386961348354816, 0.00671711890026927, 0.04503020644187927, -0.014599105343222618, 0.010543325915932655, 0.0021320476662367582, -0.015593918971717358, -0.014310014434158802, 0.0044681597501039505, 0.019471142441034317, -0.003930364735424519, 0.024249650537967682, -0.033942706882953644, -0.022226011380553246, 0.03826206922531128, 0.017268948256969452, 0.008387896232306957, 0.0020544605795294046, -0.022821199148893356, 0.010458298958837986, 0.009386961348354816, 0.009973646141588688, 0.013731831684708595, -0.015746967867016792, 0.00755463307723403, -0.004463908262550831, -0.009625036269426346, 0.01641017757356167, 0.018841944634914398, -0.007622654549777508, 0.046220581978559494, -0.02093360386788845, -0.0014784039231017232, 0.03234420344233513, -0.01989627629518509, -0.0043023573234677315, 0.003245898988097906, 0.02122269570827484, -0.006385514512658119, 0.006598081439733505, 0.018314776942133904, -0.02353542484343052, -0.01107899472117424, -0.028620028868317604, -0.004040899686515331, 0.010628352873027325, -0.0017079763347283006, 0.03321147710084915, -0.012728515081107616, -0.0020640261936932802, -0.016036059707403183, 0.008859794586896896, 0.01836579293012619, -0.012813542038202286, 0.02382451668381691, -0.004952812567353249, 0.02836494892835617, -0.01930108852684498, 0.02278718911111355, 0.0220219474285841, 0.00046738181845285, 0.010101186111569405, -0.017260445281863213, -0.009761079214513302, 0.004961315076798201, -0.010228727012872696, 0.004261969588696957, 0.012473435141146183, -0.027820777148008347, -0.0014252620749175549, -0.0022425823844969273, -0.00023927079746499658, 0.011878247372806072, 0.014590602368116379, 0.0047487481497228146, -0.0014709640527144074, -0.013340708799660206, -0.004812518134713173, -0.014675629325211048, -0.015440871007740498, 4.965433618053794e-05, 0.02003232017159462, -0.0062367175705730915, 0.007342066150158644, -0.003490351140499115, -0.0388062410056591, 0.0018929096404463053, -0.022719167172908783, 0.02001531422138214, 0.021205689758062363, -0.03935041278600693, 0.0015017862897366285, 0.009548512287437916, -0.0047104861587285995, 0.015228304080665112, -0.012048300355672836, -0.045166246592998505, 0.042241327464580536, 0.007558884564787149, -0.009863111190497875, -0.017413493245840073, 0.011733701452612877, 0.007295301184058189, 0.010704876855015755, -0.0004934212774969637, 0.004334242083132267, -0.012822045013308525, 0.03293939307332039, -0.02260012924671173, -0.024844838306307793, -0.004995326045900583, 0.0077034300193190575, -0.002516794018447399, 0.03628944978117943, 0.0264093317091465, 0.022413071244955063, 0.004952812567353249, -0.0012934705009683967, 0.0030545885674655437, -0.0014677755534648895, 0.007648162543773651, 0.009786587208509445, 0.02627328783273697, 0.014165468513965607, 0.001351926475763321, -0.03067767806351185, -0.00781821645796299, -0.00436612730845809, 0.009829101152718067, 0.04278549551963806, -0.00721452571451664, -0.013774345628917217, 0.017872639000415802, -0.0232293289154768, 0.0062834820710122585, -0.005331181921064854, 0.01635916158556938, -0.005250406451523304, -0.017719589173793793, 0.004232210107147694, -0.009548512287437916, 0.009242415428161621, -0.006155942101031542, -0.008681238628923893, 0.00850268267095089, 0.001414633821696043, -0.006053909659385681, 0.009693058207631111, -0.026205267757177353, 0.004855031613260508, -0.024079596623778343, 0.04503020644187927, -0.003360685193911195, 0.02396055869758129, -0.013791350647807121, -0.014658624306321144, 0.04023469239473343, -0.01236290019005537, 0.005352438427507877, 0.014301511459052563, -0.0008114747470244765, -0.01914804056286812, -0.04054078832268715, 0.026936497539281845, -0.006772386375814676, -0.008783270604908466, -0.012549959123134613, 0.00655981944873929, -0.007448349613696337, 0.026664411649107933, -0.005730807781219482, -0.012464932166039944, -0.006185701582580805, -0.026477351784706116, -0.004531929735094309, -0.03571126610040665, -0.022498097270727158, 0.006015647668391466, -0.004119549412280321, -0.0031672492623329163, -0.002251085126772523, 0.0023892538156360388, 0.0022425823844969273, 0.016444187611341476, 0.00018998180166818202, -0.0006865916075184941, -0.006194204092025757, -0.0012020666617900133, 0.011257551610469818, -0.006776637863367796, -0.011878247372806072, 0.022123979404568672, -0.003979255445301533, 0.010696373879909515, -0.006751129869371653, -0.013230173848569393, 0.03113682195544243, 0.017234936356544495, 0.011053486727178097, -0.0001398956956109032, 0.01671627350151539, -0.02047445811331272, -0.01686932146549225, -0.03343254700303078, -0.0012679625069722533, -0.01367231272161007, -0.02353542484343052, -0.0229062270373106, -0.004859283100813627, -0.0035541211254894733, -0.006989204790443182, 0.0018759042723104358, 0.01652071252465248, 0.004230084363371134, -0.024232644587755203, 0.01853584684431553, -3.8693848182447255e-05, -0.024929864332079887, 0.0124394241720438, 0.0018259510397911072, -0.011070492677390575, 0.03083072602748871, -0.017957665026187897, 0.013697820715606213, -0.03656153380870819, 0.04077886417508125, 0.014488570392131805, -0.006249471567571163, -0.018620874732732773, 0.01319616287946701, 0.002348866080865264, 0.019063014537096024, 0.014241992495954037, 0.00865998212248087, 0.014173971489071846, -0.016911834478378296, 0.014165468513965607, -0.018909964710474014, -0.0016516459872946143, -0.01595953479409218, -0.005250406451523304, -0.011818728409707546, -0.0006116617005318403, -0.0011861241655424237, 0.014667127281427383, 0.0005168036441318691, 0.004463908262550831, -0.0059943911619484425, 0.00797126442193985, 0.0248788483440876, 0.006853161845356226, -0.011980279348790646, 0.01743049919605255, -0.009531507268548012, -0.013068622909486294, 0.0355072021484375, -0.013578783720731735, 0.014003917574882507, -0.014769159257411957, 0.008902308531105518, 0.002115042181685567, -0.02547403611242771, 0.00705722626298666, -0.027140561491250992, 0.028007835149765015, -0.006993456277996302, -0.0034414606634527445, -0.013323702849447727, -0.04101694002747536, 0.009004340507090092, -0.002357368590310216, -0.024640772491693497, -0.007155007217079401, 0.01372332964092493, 0.003082222305238247, -0.009199902415275574, 0.006772386375814676, 0.005624524317681789, -0.0047785076312720776, 0.011589155532419682, 0.0037199235521256924, 0.001693096593953669, -0.005662786308676004, -0.0035031051374971867, -0.004057905171066523, -0.009795090183615685, -0.005229149479418993, -0.019828254356980324, -0.00813281536102295, -0.006768134888261557, 0.014820175245404243, 0.016911834478378296, -0.007095488253980875, 0.00010282931179972365, -0.0149562181904912, -0.018025686964392662, 0.002308478346094489, -0.002865403890609741, -0.012396911159157753, 0.006755380891263485, 0.014624613337218761, -0.010738887824118137, 0.014998731203377247, -0.007376077119261026, -0.0034860996529459953, -0.015432368032634258, 0.013145146891474724, -0.002844147151336074, -0.008919313549995422, 0.010628352873027325, -0.007312306668609381, 0.0706062763929367, 0.0342998206615448, 0.019930288195610046, 0.01199728436768055, 0.015372850000858307, -0.020389432087540627, 0.0006435467512346804, 0.00031672490877099335, 0.009718566201627254, 0.013774345628917217, -0.014224987477064133, -0.016367662698030472, 0.013740334659814835, 0.01668226346373558, -0.031357891857624054, 0.020848577842116356, 0.007775702979415655, 0.02778676524758339, -0.01336621679365635, 0.02960634045302868, -0.009676052257418633, 0.009301934391260147, -0.015746967867016792, 0.006700113881379366, -0.017566541209816933, 0.024844838306307793, 0.012337392196059227, 0.003426580922678113, 0.024980880320072174, 0.016495203599333763, 0.01699686236679554, -0.00933594536036253, -0.004004763439297676, 0.004565940238535404, -0.0006127245142124593, 0.014224987477064133, 0.01160616148263216, 0.008035034872591496, 0.0003539241442922503, 0.028586016967892647, 0.012048300355672836, -0.0008768390980549157, 0.02123969979584217, 0.0033776904456317425, 0.0023212323430925608, -0.018297772854566574, 0.005951877683401108, -0.0016558973584324121, -0.02004932425916195, -0.015534400939941406, -0.01868889480829239, -0.009021345525979996, 0.0040387739427387714, 0.00857070367783308, 0.010271240025758743, -0.005475727375596762, -0.001247768639586866, -0.011589155532419682, -0.0003940461901947856, 0.011546642519533634, -0.023433392867445946, -0.005220646969974041, -0.010747390799224377, -0.018246756866574287, -0.031068801879882812, -0.024334676563739777, -0.009140383452177048, -0.009233913384377956, -0.015593918971717358, -0.005530994851142168, 0.0060326531529426575, 0.008553698658943176, 0.008515436202287674, -0.032548267394304276, -0.016036059707403183, 0.0100841810926795, -0.009982149116694927, 0.03395971283316612, -0.004338493570685387, -0.004744496662169695, 0.012532954104244709, 0.016469696536660194, -0.009080864489078522, -0.01220985222607851, -0.008557950146496296, 0.008307120762765408, 0.003524361876770854, 0.00805629137903452, 0.011291561648249626, -0.016512209549546242, -0.011138513684272766, -0.017413493245840073, 0.007873483933508396, 0.0064790439791977406, 0.010696373879909515, -0.0030397088266909122, -0.01590851880609989, 0.011869744397699833, 0.021205689758062363, 0.008086050860583782, 0.0008911874028854072, 0.017192423343658447, 0.015985041856765747, 0.005182384978979826, -0.010755892843008041, -0.004395886790007353, 0.029470296576619148, 0.0032395219895988703, -0.008324125781655312, 0.01480317022651434, -0.017345471307635307, -0.004334242083132267, 0.009505998343229294, 0.011793220415711403, -0.01972622238099575, 0.012566964142024517, -0.00672137038782239, -0.0037390545476228, -0.012856055982410908, -0.011342578567564487, -0.005411957390606403, -0.010798406787216663, -0.00880877859890461, 0.0007726812618784606, 0.009948138147592545, -0.006087920628488064, -0.0171499103307724, -0.008409152738749981, -0.008387896232306957, -0.011317070573568344, 0.020899593830108643, 0.010313753969967365, 0.015092261135578156, -0.004057905171066523, -0.0007939379429444671, -0.0058073322288692, -0.01387637760490179, 0.00360726285725832, 0.02836494892835617, -0.011334075592458248, 0.025848153978586197, 0.024657778441905975, 0.00512711750343442, -0.0034520889166742563, 0.0022723418660461903, 0.0032012599986046553, -0.01539835799485445, -0.021766867488622665, -0.008103055879473686, 0.00410466967150569, 0.0488734170794487, -0.04278549551963806, -0.000694031419698149, 0.0035116078797727823, 0.009454982355237007, 0.001973685109987855, -0.012839050032198429, 0.01669926755130291, -0.016495203599333763, -0.0024806575383991003, -0.0027867541648447514, -0.004002637695521116, -0.016588732600212097, -0.013374718837440014, -0.0012732766335830092, 0.010628352873027325, 0.0061389366164803505, 0.009531507268548012, 0.008043537847697735, 0.007150755729526281, -0.022089969366788864, 0.005688294302672148, 0.023178311064839363, -0.01822975091636181, 0.006649097427725792, -0.01788964308798313, 0.0124394241720438, 0.003316046204417944, -0.015653438866138458, 0.01804269105195999, 0.0013062246143817902, -0.005292919930070639, 0.009633539244532585, -0.002737863687798381, 0.0011170399375259876, -0.017872639000415802, -0.004293854348361492, -0.016291139647364616, 0.014675629325211048, 0.009497496299445629, -0.01580648683011532, 0.016750283539295197, 0.015364347025752068, -0.010509314946830273, -0.011597658507525921, -0.010339261963963509, 0.013740334659814835, 0.004123800899833441, 0.01183573342859745, -0.0031077302992343903, -0.017821623012423515, 0.005786075256764889, 0.007546130567789078, 0.010262737981975079, 0.006474792491644621, -0.024385692551732063, 0.013230173848569393, -0.006606583949178457, -0.017404990270733833, -0.003709295066073537, -0.05339684337377548, -0.016146592795848846, 0.015449373982846737, -0.0046042026951909065, -0.021817883476614952, -0.003139615524560213, 0.011504129506647587, -0.0021851893980056047, 0.010696373879909515, -0.016163598746061325, -0.009769582189619541, 0.010568833909928799, 0.024555746465921402, -0.0019821878522634506, -0.004991074558347464, -0.011784717440605164, -0.010806908831000328, 0.015296325087547302, 0.020372426137328148, 0.006083669140934944, 0.0304736141115427, 0.0033373027108609676, -0.03458891063928604, -0.0042640953324735165, 0.006840407848358154, 0.02125670574605465, 0.003600885858759284, 0.0028462728951126337, 0.031085805967450142, -0.020457454025745392, 0.007010461762547493, 0.0007190080941654742, -0.012490440160036087, -0.005998642183840275, -0.00044851648272015154, 0.004519175738096237, -0.0025061655323952436, 0.002674093469977379, -0.012907071970403194, -3.321360418340191e-05, -0.016750283539295197, -0.005913615692406893, -0.01259247213602066, 0.009982149116694927, 0.010908941738307476, -0.0011276681907474995, -0.006908429320901632, -0.003275658469647169, 0.0008178517455235124, -0.014131457544863224, 0.013230173848569393, 0.01237140316516161, -0.009676052257418633, 0.01882493868470192, 0.012481937184929848, 0.002633705735206604, -0.017404990270733833, 0.008936319500207901, -0.006657600402832031, 0.014633116312325, 0.003802824765443802, -0.01867189072072506, 0.005394951906055212, 0.03266730532050133, 0.006831905338913202, -0.010823914781212807, 0.00026172318030148745, -0.017413493245840073, 0.003992009442299604, 0.01838279888033867, -0.0006541751208715141, -0.0100841810926795, -0.0064110225066542625, -0.01714140735566616, -0.01176771242171526, -0.017974670976400375, 0.003388318931683898, 0.008358136750757694, 0.019845260307192802, 0.004421394784003496, 0.0010564582189545035, -0.014420549385249615, -0.009199902415275574, 0.00290154037065804, -0.010883433744311333, -0.0005223835469223559, -0.008910811506211758, -0.012014290317893028, 0.01761755719780922, -0.003517984878271818, 0.007784205488860607, -0.013791350647807121, -0.0020512721966952085, -0.021800877526402473, 0.011946268379688263, 0.007286798674613237, 0.004893293604254723, 0.0038963542319834232, -0.016920337453484535, 0.01039877999573946, 0.025746122002601624, 0.0014103824505582452, 0.02152879163622856, -0.022055957466363907, -0.0038517150096595287, -0.019675206393003464, -0.006121931131929159, 0.011623166501522064, -0.015066753141582012, -0.006330247037112713, -0.014258998446166515, 0.003603011602535844, -0.0022425823844969273, 0.01669076457619667, 0.007095488253980875, 0.016129588708281517, -0.0021331103052943945, 0.0162656307220459, 0.007155007217079401, -0.03018452227115631, 0.013706323690712452, -0.007869232445955276, 0.001281779375858605, -0.02096761390566826, -0.004004763439297676, 0.008069045841693878, 0.0001141219399869442, 0.014437554404139519, 0.0011351080611348152, 0.012133327312767506, -0.015440871007740498, 0.0046127052046358585, 0.006576824933290482, -0.0063132415525615215, -0.0062197120860219, 0.020542480051517487, -0.009769582189619541, -0.010900438763201237, 0.018161728978157043, 0.007023215759545565, -0.00932744238525629, 0.002618826227262616, 0.015432368032634258, 0.00622396357357502, -0.008774768561124802, 0.006678856909275055, 0.00277187442407012, -0.007422841619700193, -0.028160883113741875, 0.018314776942133904, -0.01510926615446806, 0.030558640137314796, -0.00788623746484518, -0.008158323355019093, 0.03094976395368576, 0.01267749909311533, 0.00318850576877594, 0.0061474391259253025, -0.020525475963950157, 0.008557950146496296, -0.023280344903469086, -0.005292919930070639, -0.006874418817460537, -0.012082311324775219, -0.018263760954141617, -0.00834113173186779, -0.0020672145765274763, -0.002108665183186531, -0.0018408306641504169, -0.0003427643678151071, 0.040268704295158386, -0.0027825026772916317, 0.0018365794094279408, -0.008600463159382343, 0.023008259013295174, 0.007448349613696337, 0.009982149116694927, 0.029181204736232758, -0.002425390062853694, 0.010381774976849556, -0.013969906605780125, -0.014981726184487343, 0.0003254933108109981, -0.006751129869371653, 0.012703007087111473, 0.01943713240325451, -0.02277018316090107, 0.0295893345028162, 0.006878669839352369, -0.0045829457230865955, 0.000968774373177439, 0.0034414606634527445, 0.0021628697868436575, -0.010118192061781883, 0.01410594955086708, -0.016733279451727867, -0.003668907331302762, -0.001173370168544352, 0.01788964308798313, -0.014930710196495056, -0.004918801598250866, 0.0046807266771793365, -0.010985465720295906, -0.009208405390381813, 0.00655981944873929, -0.017226435244083405, 0.020151356235146523, -0.002246833872050047, 0.013978409580886364, 0.006364257540553808, 0.029504308477044106, 0.008902308531105518, 0.014361030422151089, -0.006840407848358154, 0.018603868782520294, -0.02198793552815914, 0.03173201158642769, 0.0030205778311938047, -0.0232293289154768, 0.0023552430793642998, 0.01925007253885269, -0.026205267757177353, 0.0027527434285730124, 0.016928840428590775, -0.00428960332646966, -0.007588644046336412, 0.008702495135366917, -0.020746544003486633, 0.002935551106929779, 0.013136643916368484, -0.01838279888033867, 0.0059348721988499165, -0.005093106534332037, -0.009021345525979996, 0.020406438037753105, -0.013170654885470867, 4.3443393224151805e-05, 0.013306697830557823, -0.0009847169276326895, -0.0076864250004291534, 0.0044681597501039505, 0.018637878820300102, 0.009369956329464912, -0.0037475572898983955, -0.008103055879473686, 0.011138513684272766, -0.0013657433446496725, 0.013451243750751019, 0.037411801517009735, -0.019930288195610046, -0.005076101515442133, 0.004944309592247009, -0.01865488477051258, -0.005552251357585192, -0.008039286360144615, -0.013782847672700882, 0.008689741604030132, 0.012048300355672836, -0.002105476800352335, 0.008120061829686165, -0.0017813119338825345, -0.0021607440430670977, 0.011359583586454391, -0.011725198477506638, -0.005552251357585192, 0.010432790964841843, -0.016937343403697014, 0.01092594675719738, 0.012277873232960701, -0.018773922696709633, -0.007129499223083258, 0.02294023707509041, 0.004884791094809771, 0.0038177042733877897, 0.01669076457619667, -0.0010532697197049856, -0.0022574621252715588, 0.014344025403261185, 0.00018054914835374802, 0.014684132300317287, -0.0059943911619484425, -0.00025508046383038163, 0.0047104861587285995, -0.018331782892346382, 0.017804617062211037, 0.0064577870070934296, 0.0009278552024625242, 0.018314776942133904, -0.011070492677390575, -0.000311145035084337, -0.005377946421504021, 0.0015134774148464203, -0.005025085061788559, 0.0009847169276326895, 0.00018015058594755828, 0.011478621512651443, -0.03190206363797188, 0.018841944634914398, 0.005360941402614117, -0.0063727605156600475, 0.00027421151753515005, -0.001560242148116231, -0.011249048635363579, 0.014250495471060276, 0.0019216062501072884, 0.01777060516178608, 0.018110712990164757, 0.028160883113741875, 0.008978832513093948, -0.01470964029431343, -0.014003917574882507, -0.014471565373241901, 0.0034818483982235193, -0.001279653632082045, 0.02232804335653782, -0.008868297562003136, 0.0018535847775638103, 0.004799764137715101, 0.01974322833120823, -0.01914804056286812, -0.012941082008183002, 0.004278975073248148, -0.012915574014186859, 0.004219456110149622, 0.024402698501944542, 0.012796537019312382, 0.005161128006875515, 0.007945756427943707, 0.01343423780053854, -0.010186213068664074, 0.01048380695283413, 0.010900438763201237, -0.007150755729526281, 0.008451665751636028, -0.0011871870374307036, -0.034537896513938904, 0.012379905208945274, 0.022379059344530106, 0.008081799373030663, 0.006925434805452824, -0.009318939410150051, 0.0017526154406368732, 0.008387896232306957, 0.009880117140710354, 0.015525897964835167, -0.017532531172037125, -0.0003499385202303529, -0.012184343300759792, -0.012184343300759792, 0.018603868782520294, -0.012745521031320095, -0.020882587879896164, -0.011504129506647587, -0.0020672145765274763, -0.01637616567313671, -0.007954259403049946, 0.008919313549995422, 0.0013784973416477442, 0.0024849087931215763, 0.0157809779047966, 0.004142932128161192, 0.008077547885477543, 0.012737018056213856, 0.012269370257854462, -0.007826719433069229, 0.002797382418066263, -0.023586440831422806, -0.008298617787659168, 0.005947626195847988, -0.038023993372917175, 0.007954259403049946, -0.008978832513093948, 0.007189017720520496, -0.009676052257418633, 0.003662530332803726, 0.01107899472117424, 0.017668573185801506, 0.0034414606634527445, 0.028569012880325317, -0.005743561778217554, 0.01697985641658306, -0.018926970660686493, -0.0005165379261597991, -0.00797976739704609, 0.010543325915932655, -0.02020237222313881, -0.01328969281166792, 0.003743305802345276, -0.017566541209816933, -0.008383644744753838, -0.003930364735424519, -0.016580229625105858, 0.01152113452553749, -0.01351076178252697, 0.012175841256976128, -0.0037454315461218357, 0.016282636672258377, -0.005101609509438276, -0.020151356235146523, -0.007035969756543636, 0.004952812567353249, 0.00402389420196414, 0.013978409580886364, -0.004893293604254723, -0.013638302683830261, -0.01894397661089897, 0.014156966470181942, -0.01319616287946701, 0.03819404914975166, 0.0008699306636117399, -0.023025263100862503, -0.022226011380553246, 0.005131368990987539, 0.0016558973584324121, -0.006019899155944586, -0.009973646141588688, 0.01807670295238495, 0.007227280177175999, 0.025269972160458565, -0.00804778840392828, 0.01669926755130291, -0.007078483235090971, -0.011869744397699833, -0.028330937027931213, -0.004655218683183193, 0.008103055879473686, -0.01700536534190178, -0.011589155532419682, -0.007197520695626736, -0.016614241525530815, -0.005352438427507877, -0.006151690613478422, 0.0013636177172884345, 0.030609656125307083, 0.005824337247759104, -0.009557015262544155, 0.0021235449239611626, 0.0007625843281857669, 0.005267411470413208, 0.00021216849563643336, -0.04656068980693817, 0.0013965655816718936, -0.01220985222607851, 0.01410594955086708, -0.014905202202498913, -0.03822806105017662, 0.0076566655188798904, -0.010415785945951939, 0.028313932940363884, -0.011155519634485245, 0.00015969100059010088, 0.007350568659603596, -0.02139274775981903, -0.012430921196937561, 6.007510364725022e-06, -0.012609478086233139, 0.010908941738307476, 0.0008050977485254407, -0.014233490452170372, -0.037717897444963455, 2.150580803572666e-05, -0.017991675063967705, -0.003634896595031023, 0.018144724890589714, 0.020372426137328148, -0.013315200805664062, -0.0016845939680933952, -0.007435595616698265, -0.004999577067792416, -0.015194293111562729, 0.014624613337218761, 0.0034372094087302685, -0.013714826665818691, -0.034231800585985184, -1.2969911949767265e-05, -0.003182128770276904, 0.0036731588188558817, -0.009012843482196331, 0.019522158429026604, 0.01092594675719738, 0.0030056980904191732, 0.001591064385138452, -0.026460347697138786, -0.01943713240325451, -0.010883433744311333, 0.001625075121410191, -0.001903538010083139, 0.0064110225066542625, -0.016656754538416862, -0.009599528275430202, -0.013893382623791695, 0.01220985222607851, -0.009395464323461056, -0.007563136052340269, -0.0031013533007353544, -0.013621296733617783, 0.02018536813557148, 0.013842366635799408, 0.001939674373716116, -0.017515525221824646, -0.002761246170848608, -0.013094130903482437, -0.002465777797624469, 0.006436530500650406, -0.011138513684272766, -0.017115900292992592, 0.007129499223083258, -0.010356266982853413, -0.006513054482638836, 0.02214098535478115, 0.003517984878271818, -9.386164310853928e-05, -0.0307967159897089, 0.014020923525094986, -0.010526320897042751, -0.015415363013744354, -0.0005563942831940949, 0.006530059967190027, 5.7359891798114404e-05, 0.015058250166475773, 0.018110712990164757, -0.006585327442735434, 0.00932744238525629, 0.03962250053882599, -0.00021349704184103757, -0.017124401405453682, 0.002154367044568062, -0.01773659512400627, -0.023892536759376526, 0.018450820818543434, -0.017668573185801506, -0.016903331503272057, -0.013476751744747162, 0.0064195250160992146, 0.03035457618534565, -0.0039048567414283752, -0.020100340247154236, 0.008715249598026276, -0.024640772491693497, 0.013425735756754875, -0.014845683239400387, 0.002104413928464055, 0.029181204736232758, 0.006117680110037327, 0.005777572747319937, 0.011172524653375149, 0.011274556629359722, 0.009021345525979996, 0.00857070367783308, -0.005360941402614117, 0.00933594536036253, -0.008528190664947033, 0.001903538010083139, 0.01834878884255886, -0.00030317375785671175, 0.008528190664947033, 0.02275317721068859, -0.0189609806984663, 0.004015391692519188, 3.308074883534573e-05, 0.02198793552815914, -0.0032055112533271313, -0.013544772751629353, -0.03157896175980568, 0.002040643710643053, -0.0004373567062430084, -0.005756315775215626, 0.013910388574004173, -0.01653771661221981, 0.027854787185788155, -0.014224987477064133, -0.005093106534332037, -0.029215216636657715, -0.008702495135366917, -0.02778676524758339, -0.004799764137715101, 0.023892536759376526, -0.009208405390381813, 0.009446480311453342, 0.007584392558783293, 0.007941504940390587, -0.005862599238753319, -0.01101097371429205, -0.018314776942133904, 0.015585416927933693, 0.0034180781804025173, -0.006117680110037327, 0.019692212343215942, -0.003454214660450816, 0.0014050682075321674, -0.006887172814458609, 0.0036816613283008337, 0.002686847699806094, -0.004147183150053024, 0.004672223702073097, 0.011189529672265053, 0.0028483986388891935, 0.025576068088412285, -0.006547065451741219, -0.01593402586877346, -0.002729360945522785, 0.016435684636235237, -0.01792365498840809, -0.0007631157641299069, 0.0035137333907186985, -0.010662363842129707, 0.01683531142771244, 0.0010288245975971222, -0.010679368861019611, -0.0005170693621039391, -0.01822975091636181, 0.006525808479636908, 0.008600463159382343, -0.010211721062660217, -0.005093106534332037, -0.005008080042898655, 0.00420670211315155, -0.0080520398914814, 0.0029929440934211016, -0.01656322553753853, 0.00572230527177453, 0.0077416920103132725, 0.02152879163622856, 0.009140383452177048, 0.015347342006862164, -0.006364257540553808, -0.010262737981975079, 0.015049748122692108, -0.004395886790007353, 0.008472923189401627, 0.011827231384813786, -0.010526320897042751, 0.008587708696722984, 0.010500812903046608, -0.006704364903271198, -0.006695862393826246, 0.003182128770276904, -0.010866427794098854, -0.015883009880781174, -0.00572230527177453, -0.0020193869713693857, -0.0003531270194798708, -0.007359071634709835, 0.02703852951526642, 0.001456084311939776, 0.015593918971717358, 0.007303804159164429, -0.009744074195623398, 0.011274556629359722, -0.02122269570827484, 0.0264093317091465, 0.008387896232306957, 0.012975092977285385, -0.013765842653810978, 0.012048300355672836, 0.011215037666261196, -0.009633539244532585, -0.0011956896632909775, -0.00850268267095089, -0.0007673670770600438, -0.005824337247759104, -0.0030184523202478886, 0.003347931196913123, -0.006466289982199669, -0.0077714514918625355, 0.018858948722481728, 0.02884109877049923, -0.01402942556887865, -0.00698070228099823, 0.001871652901172638, -0.014310014434158802, 0.01655472256243229, -0.01576397381722927, 0.014361030422151089, -0.0220219474285841, 0.009778084233403206, 0.0229062270373106, 0.000830605800729245, 0.006946691311895847, 0.021749861538410187, 0.007699178997427225, -0.009820598177611828, 0.012354397214949131, 0.008443163707852364, -0.014139960519969463, -0.021953925490379333, 0.029181204736232758, 0.0009469862561672926, -0.0015379226533696055, 0.004859283100813627, 0.01611258275806904, 0.007189017720520496, 0.00444265129044652, -0.006500300485640764, -0.015389855019748211, -0.0002928111352957785, -0.013323702849447727, -0.018433814868330956, 0.01077289879322052, 0.013944398611783981, -0.005917866714298725, -0.004714737180620432, -0.005505486857146025, 0.020882587879896164, -0.017804617062211037, 0.01788964308798313, -0.0031629977747797966, -0.012779531069099903, 0.007924499921500683, -0.011342578567564487, -0.005909364204853773, 0.02066151797771454, 0.004838026128709316, 0.020916597917675972, -0.0024423955474048853, 0.011232043616473675, 0.008591960184276104, 0.005254657473415136, -0.007924499921500683, -0.01669076457619667, 0.009523004293441772, -0.017243439331650734, 0.019930288195610046, -0.0018025686731562018, -0.006555567961186171, -0.009684555232524872, 0.0026549624744802713, -0.01974322833120823, -0.001793003175407648, 0.004731742665171623, 0.02411360666155815, 0.003668907331302762, 0.006848910357803106, -0.025695106014609337, -0.0059731341898441315, 0.0031927572563290596, -0.0017706835642457008, 0.01328969281166792, -0.0003653496387414634, 0.0009703686228021979, 0.0022277028765529394, 0.018722906708717346, 0.025218956172466278, 0.003048211568966508, 0.012941082008183002, -0.003534990129992366, -0.005178133491426706, -0.0020225755870342255, -0.03440185263752937, 0.0017483640694990754, -0.00035737836151383817, -0.020423442125320435, 0.026307299733161926, -0.008383644744753838, 0.015891512855887413, -7.991192978806794e-05, -0.01016920804977417, -0.008634474128484726, 0.011478621512651443, -0.00980359222739935, 0.026494357734918594, 0.00864297617226839, 0.000517335080076009, 0.017651569098234177, 0.02183488756418228, 0.016291139647364616, 0.006270728074014187, -0.007244285196065903, -0.03064366616308689, 0.027497675269842148, -0.016214614734053612, 0.008103055879473686, 0.005658535286784172, -0.015083758160471916, 0.008859794586896896, 0.0033415541984140873, 0.01124054566025734, -0.026494357734918594, 0.014488570392131805, 0.01804269105195999, -0.004040899686515331, -0.01930108852684498, -0.011869744397699833, 0.00941246934235096, 0.002797382418066263, -0.003915484994649887, 0.00873225461691618, 0.026307299733161926, -0.01099396776407957, 0.0017600551946088672, 0.012116322293877602, 0.011640172451734543, -0.009293431416153908, 0.014905202202498913, 0.006789391860365868, -0.0015804360155016184, -0.015729961916804314, 0.021069645881652832, -0.03324548900127411, 0.017379483208060265, -0.004889042116701603, -0.009038351476192474, -0.030099496245384216, 0.010832416824996471, -0.010279743000864983, -0.0022702161222696304, 0.021443765610456467, 0.025746122002601624, 0.014301511459052563, 0.012158835306763649, 0.012507446110248566, 0.009667550213634968, 0.0006679919897578657, 0.009514501318335533, 0.006058161146938801, -0.002206446137279272, 0.0031757517717778683, -0.0027144814375787973, -0.012124825268983841, -0.006819151341915131, -0.008859794586896896, 0.0007673670770600438, -0.012014290317893028, 0.005641529802232981, -0.014497073367238045, -0.003460591658949852, -0.016180604696273804, 0.02396055869758129, -0.022957243025302887, 0.008859794586896896, -0.008664233610033989, -0.009880117140710354, 0.005492732860147953, -0.0014699011808261275, -0.018756916746497154, -0.012507446110248566, 0.017404990270733833, -0.003666781820356846, 0.008086050860583782, 0.01259247213602066, -0.023552430793642998, -0.02096761390566826, -0.006627840921282768, 0.021732855588197708, 0.03052463009953499, 0.0037454315461218357, -0.009369956329464912, 7.413276034640148e-05, 0.00353073887526989, 0.03717372566461563, 0.009523004293441772, 0.016002047806978226, -0.00663634343072772, -0.010585839860141277, -0.010432790964841843, -0.005820086225867271, -0.010228727012872696, -0.006874418817460537, -0.009038351476192474, 0.002348866080865264, -0.01744750328361988, 0.00732080964371562, -0.0027782514225691557, -0.007601398043334484, -0.034078750759363174, -0.015219801105558872, 0.0025423020124435425, -0.019981304183602333, 0.0022574621252715588, -0.011980279348790646, 0.03113682195544243, 0.01578948087990284, 0.005403454415500164, -0.012320386245846748, 0.007486611604690552, -0.006887172814458609, 0.012473435141146183, 0.0029227971099317074, -0.01683531142771244, -0.024385692551732063, 0.002735737944021821, 0.002946179360151291, 0.00043788814218714833, -0.0003669438883662224, -0.012082311324775219, -0.004676475189626217, 0.038636188954114914, 0.01084942277520895, 0.008362388238310814, 0.00880877859890461, -0.0018737786449491978, 0.01653771661221981, 0.00805629137903452, -0.009437977336347103, -0.006938188802450895, 0.00248278328217566, -0.00782246794551611, -0.0015538651496171951, -0.002663465216755867, -0.024691788479685783, -0.0024062590673565865, -0.006653348915278912, -0.0020533977076411247, 0.0024849087931215763, 0.0012892192462459207, -0.025423020124435425, 0.02062750793993473, 0.008902308531105518, 0.005445967894047499, 0.02093360386788845, -0.023586440831422806, 0.00021987405489198864, -0.010509314946830273, 0.01084091980010271, -0.00873225461691618, 0.012643488124012947, 0.02035542204976082, -0.0078904889523983, -0.006946691311895847, 0.008166826330125332, 0.022821199148893356, 0.004198199603706598, 0.013944398611783981, 0.013459745794534683, 0.010789903812110424, -0.0059731341898441315, -0.002584815490990877, -0.0018759042723104358, 0.0232293289154768, -0.012413916178047657, 0.017872639000415802, 0.00046499044401571155, 0.013612794689834118, 0.0014667126815766096, 0.011104502715170383, 0.009012843482196331, 0.011640172451734543, 0.012779531069099903, 0.003983506467193365, 0.011249048635363579, -0.006240968592464924, -0.00010854205174837261, 0.0185188427567482, -0.014505576342344284, -0.002674093469977379, 0.007648162543773651, -0.010220224037766457, -0.009369956329464912, 0.0024402698036283255, 0.009378458373248577, 0.011674182489514351, 0.001486906548961997, -0.018892960622906685, 0.017064882442355156, 0.01259247213602066, 0.022804193198680878, 0.004510672762989998, 0.007614152040332556, 0.010024662129580975, 0.003698666812852025, 0.009710063226521015, -0.03975854068994522, -0.0037539342883974314, 0.004804015625268221, 0.011980279348790646, 0.011027978733181953, 0.003245898988097906, -0.0001557053765282035, 0.007826719433069229, -0.0037836935371160507, -0.012396911159157753, -0.009710063226521015, -0.014318517409265041, 0.008383644744753838, 0.020117346197366714, 0.0012870935024693608, -0.01987927034497261, -0.004599951207637787, 0.010908941738307476, -0.003705043811351061, 0.011104502715170383, -0.01882493868470192, -0.003252275986596942, 0.0008789647836238146, -0.008995837531983852, 0.013000600971281528, -0.002527422271668911, 0.00630048755556345, 0.018331782892346382, 0.00394949596375227, -0.021205689758062363, -0.00255930726416409, 0.0216988455504179, -0.010738887824118137, -0.0031906315125524998, 8.178849384421483e-06, 0.004238587338477373, -0.009693058207631111, -0.002793131163343787, -0.004935807082802057, -0.02759970724582672, -0.001181872794404626, -0.029028156772255898, 0.015058250166475773, 0.01136808656156063, 0.01897798664867878, -0.008370890282094479, 0.0011882497929036617, 0.021902909502387047, -0.006576824933290482, -0.0038644690066576004, 0.03887426480650902, -0.006738375872373581, 0.0077416920103132725, 0.030575646087527275, 0.0020161985885351896, 0.01713290438055992, 0.010186213068664074, -0.030864736065268517, 0.02307627908885479, 0.003702918067574501, 2.1987405489198864e-05, -0.004108921159058809, -0.012116322293877602, 0.012490440160036087, 0.022379059344530106, -0.02474280633032322, 0.008621719665825367, -0.0034712201450020075, -0.003432957921177149, -0.03050762414932251, 0.0025444277562201023, 0.011283059604465961, -0.0024041333235800266, -0.024181628599762917, -0.0008407027344219387, 0.007210274692624807, -0.012881563976407051, -0.008519687689840794, -0.014293008483946323, 0.02550804615020752, 0.0017228559590876102, -0.0014114452060312033, 0.011980279348790646, 0.027208583429455757, -0.011818728409707546, -0.006602332927286625, -0.0025104170199483633, -0.007873483933508396, 0.0029886928386986256, 0.003668907331302762, 0.0063727605156600475, 0.01957317441701889, 0.012464932166039944, 0.018994992598891258, -0.02275317721068859, 0.012260868214070797, -0.012218354269862175, -0.0034414606634527445, -0.003003572579473257, -0.03203810751438141, -0.005403454415500164, -0.00933594536036253, -0.01503274217247963, 0.0062749795615673065, -0.018297772854566574, -0.003875097492709756, 0.009744074195623398, -0.006270728074014187, 0.010058673098683357, 0.014165468513965607, 0.008953324519097805, -0.013315200805664062, -0.0003281504032202065, 0.022362055256962776, 0.00972706824541092, 0.06734124571084976, 0.0014954092912375927, 0.024946870282292366, 0.0077927084639668465, 0.0004251341160852462, -0.018569858744740486, 0.0005994390812702477, -0.010534822940826416, 0.006814899854362011, 0.01183573342859745, -0.017047878354787827, -0.0030205778311938047, 0.013604291714727879, 0.011342578567564487, 0.004113172646611929, 0.006776637863367796, -0.016495203599333763, -0.0012860307469964027, 0.008438912220299244, 0.010679368861019611, -0.009922630153596401, 0.004278975073248148, -0.0022914728615432978, -0.0017026620917022228, 0.004115298390388489, 0.003003572579473257, -0.0008151946822181344, -0.016877824440598488, 0.002895163372159004, -0.011495626531541348, 0.03441885858774185, -0.012728515081107616, -0.012992098927497864, 0.02821189910173416, -0.0013944399543106556, -0.004300231579691172, -0.014454560354351997, 0.009276426397264004, 0.016036059707403183, -0.008430409245193005, -0.0029823158401995897, -0.02200494147837162, 0.011130010709166527, 0.006189952604472637, -0.013247178867459297, -0.007295301184058189, 0.005416208412498236, 0.013714826665818691, -0.009191399440169334, -0.009548512287437916, -0.006908429320901632, -0.008893805555999279, 0.005339684430509806, -0.0020831571891903877, -0.0021851893980056047, -0.0059646316803991795, 0.008158323355019093, 4.752866516355425e-05, -0.00021216849563643336, 0.005097358021885157, -0.013901885598897934, -0.008370890282094479, 0.007546130567789078, 0.021647829562425613, 0.010271240025758743, 0.011232043616473675, 0.0008120061829686165, -0.0045489352196455, 0.015364347025752068, -0.0124394241720438, 0.0027910054195672274, -0.026630401611328125, -0.0061686960980296135, 0.00747385760769248, -0.001418885076418519, -0.030150512233376503, -0.01775360107421875, -0.012864558026194572, -0.013391724787652493, -0.006279231049120426, -0.014837180264294147, -0.01448006834834814, 0.003556246869266033, -0.014633116312325, -0.0076651680283248425, -0.008426157757639885, -0.0023361118510365486, -0.01804269105195999, 0.011597658507525921, 0.010211721062660217, -0.012609478086233139, 0.003214013995602727, -0.0022192001342773438, 0.017073385417461395, 0.009769582189619541, -0.0005218521109782159, -0.012932579964399338, 0.015457876026630402, 0.0039006054867058992, 0.005114363506436348, 0.013425735756754875, 0.0032990407198667526, 0.001314727240242064, -0.0036051373463124037, -0.012328889220952988, -0.010373272001743317, -0.0015474881511181593, -0.0004503764503169805, -0.005037839058786631, 0.02884109877049923, -0.029385270550847054, -0.0038538407534360886, -0.011623166501522064, 0.010874930769205093, 0.017200926318764687, 0.003841086756438017, 0.010033165104687214, 0.007881986908614635, -0.006695862393826246, 0.01625712774693966, -0.014565094374120235, 0.015202796086668968, 0.018603868782520294, 0.02095060981810093, -0.0011988781625404954, 0.012890066020190716, -0.006746878381818533, 0.013391724787652493, 0.020066330209374428, -0.005373695399612188, -0.0051228660158813, -0.021307721734046936, 0.01396140456199646, -0.0058583482168614864, -0.009420972317457199, -0.0002568075724411756, 0.02669842168688774, 0.005437465384602547, 0.0021065394394099712, 0.00016885795048438013, -0.013306697830557823, 0.02020237222313881, 0.008791773580014706, 0.001969433855265379, 0.02460676245391369, 0.007690676022320986, -0.010390277951955795, 0.021596813574433327, -0.0063897655345499516, 0.007516371086239815, 0.0006977513548918068, 0.009123378433287144, -0.007252788171172142, 0.022038953378796577, -0.007915996946394444, -0.0006658663041889668, 0.00797126442193985, 0.020117346197366714, -0.022634141147136688, 0.018620874732732773, -0.0027442406862974167, 0.016197610646486282, 0.003960124216973782, 0.007086985744535923, 0.004646715708076954, -0.014233490452170372, -0.005654283799231052, 0.024691788479685783, 0.015874508768320084, 0.007125247735530138, 0.003466968657448888, -0.014522581361234188, -0.01367231272161007, -0.011274556629359722, -0.0010336072882637382, 0.010985465720295906, 0.0018025686731562018, 0.002865403890609741, -0.025457030162215233, -0.013740334659814835, 0.012983595952391624, 0.017243439331650734, 0.01455659233033657, -0.00781396497040987, -0.01654621958732605, 0.013187659904360771, -0.008532441221177578, -0.005764818750321865, -0.01595103181898594, 0.0004958126810379326, 0.004961315076798201, 0.020372426137328148, 0.0037539342883974314, -0.0006738375523127615, 0.0014412046875804663, 0.007546130567789078, -0.0037156720645725727, -0.008468671701848507, -0.008103055879473686, 0.010024662129580975, 0.01671627350151539, 0.007086985744535923, 0.001767495064996183, 0.00826035626232624], "95828a01-1119-4b71-946a-c8883f2c5504": [-0.012236768379807472, 0.015155262313783169, -0.004341560415923595, 0.004104382824152708, 0.03679070621728897, -0.008827839978039265, -0.01653008908033371, 0.02968340925872326, -0.02522929012775421, 0.0150909423828125, 0.027721667662262917, 0.0228012315928936, 0.018540071323513985, 0.005069173872470856, 0.024988092482089996, 0.03198282793164253, -0.05007266253232956, -0.012703084386885166, 0.017141124233603477, -0.012469926849007607, 0.017060725018382072, -0.011207657866179943, -0.06351542472839355, 0.0651877298951149, 0.001369802514091134, 0.030278364196419716, -0.00986499059945345, -0.0014672866091132164, -0.009213755838572979, 0.01275936421006918, 0.013482957147061825, -0.00465109758079052, 0.017703918740153313, 0.029008055105805397, 0.02005157805979252, -0.03328529745340347, 0.012879963032901287, -0.0003590329724829644, -0.007967567071318626, 0.007159554865211248, -0.0162245724350214, 0.0005974670639261603, 0.014705026522278786, 0.027078473940491676, -0.02217411808669567, -0.008449963293969631, 0.0015205511590465903, 0.014455788768827915, -0.04222569614648819, -0.027367910370230675, -0.012719164602458477, -0.03386417031288147, 0.019151106476783752, 0.01895814761519432, 0.0228012315928936, -0.03708014264702797, -0.0517449676990509, 0.034282248467206955, 0.013306078501045704, -0.03978155925869942, 0.045827582478523254, -0.0303266029804945, -0.01196341123431921, -0.011280016973614693, 0.0018702879315242171, -0.030310524627566338, 0.012011650949716568, 0.022897711023688316, -0.0659274011850357, 0.006516360677778721, -0.010017748922109604, 0.04335128515958786, -0.013804554007947445, 0.0252132099121809, 0.009438874199986458, -0.012630725279450417, 0.02778598666191101, 0.027657348662614822, 0.011915171518921852, -0.008072086609899998, 0.003820975311100483, 0.004618938080966473, 0.05666540563106537, -0.013346278108656406, 0.06354758143424988, 0.014455788768827915, 0.0007085185497999191, -0.035407837480306625, -0.027978945523500443, -0.0517449676990509, 0.00569628830999136, 0.003742585889995098, -0.008128366433084011, -0.017446640878915787, -0.0018843578873202205, 0.052741918712854385, 0.01812199503183365, 0.014110071584582329, 0.014166351407766342, -0.019488781690597534, 0.00906903762370348, 0.013233719393610954, -0.009125316515564919, 0.030374843627214432, 0.030889399349689484, 0.005089273676276207, 0.003893334651365876, 0.0022270597983151674, -0.03373553231358528, 0.044251758605241776, 0.0022250497713685036, -0.02373386360704899, -0.016964245587587357, 0.02746438980102539, -0.08149269968271255, -0.03743389993906021, -0.042482972145080566, -0.042643770575523376, 0.0019165175035595894, -0.016136132180690765, 0.02357306517660618, 0.013338238932192326, 0.010620743036270142, -0.017125044018030167, -0.04142170399427414, 0.002055206336081028, 0.0007738429703749716, 0.007943447679281235, -0.0008090176270343363, -0.019697820767760277, -0.006251043174415827, 0.023878581821918488, 0.00962379202246666, -0.024280579760670662, -0.004892295226454735, 0.013989472761750221, 0.02040533348917961, 0.0202445350587368, -0.013193519786000252, 0.012260888703167439, -0.06409429758787155, -0.03291546180844307, -0.02151484414935112, -0.015348220244050026, 0.0011537295067682862, -0.004156642127782106, -0.03262602165341377, 0.056279487907886505, -0.02567952685058117, 0.03450736403465271, -0.06676355004310608, -0.019713900983333588, -0.0023034389596432447, 0.009286115877330303, 0.04997618496417999, -0.006721378769725561, -0.04335128515958786, 0.03543999791145325, 0.02198115922510624, -0.0013728175545111299, 0.020308855921030045, -0.030262283980846405, -0.006186723709106445, 0.02474689483642578, 0.025100652128458023, 0.03466816246509552, 0.026901595294475555, 0.03855948895215988, -0.028187982738018036, 0.028702538460493088, 0.03228834643959999, -0.05264544114470482, 0.01763959974050522, 0.014013592153787613, -0.009599672630429268, 0.00859468150883913, -0.007517331745475531, 0.03981371596455574, 0.0477893240749836, -0.01860439032316208, -0.022881630808115005, -0.014021632261574268, -0.008136405609548092, 0.00734045309945941, 0.0051294732838869095, -0.004401859827339649, 0.021080687642097473, -0.013981432653963566, 0.022865552455186844, 0.026563918218016624, 0.0004251111240591854, -0.0059656258672475815, -0.03389633074402809, 0.04383368045091629, 0.016578329727053642, -0.04431607574224472, -0.025792084634304047, -0.010950380004942417, -0.00868312083184719, 0.0023295688442885876, 0.006351542193442583, -0.032690342515707016, -0.009245915338397026, 0.024939853698015213, -0.026226241141557693, 0.03502191975712776, -0.01534018013626337, 0.008876078762114048, 0.01654616929590702, -0.013225679285824299, 0.051133934408426285, -0.023026350885629654, 0.005193792749196291, -0.01189105212688446, -0.048882756382226944, 0.00881979987025261, 0.002852163976058364, 0.00827308464795351, 0.012188528664410114, -0.043898001313209534, 0.003304409794509411, 0.01720544323325157, 0.0054671503603458405, -0.011987530626356602, -0.04347992315888405, -0.00016670285549480468, -0.005386751145124435, 0.012059889733791351, -0.017382321879267693, -0.013909073546528816, 0.04042475298047066, 0.02941005304455757, -0.02648351900279522, -0.021305805072188377, -0.008265044540166855, 0.030101485550403595, 0.019794300198554993, -0.0022813291288912296, -0.05602220818400383, 0.001030115643516183, 0.0009693136671558022, 0.042129214853048325, 0.012293048202991486, -0.0005788747221231461, 0.020292775705456734, -0.006733438465744257, 0.012477966025471687, 0.049204353243112564, 0.023315787315368652, -0.02941005304455757, -0.024007221683859825, -0.0023295688442885876, -0.004297340754419565, -0.02793070487678051, -0.03762685880064964, 0.016481850296258926, 0.01940838247537613, -0.007059055846184492, 0.005483230110257864, -0.006206823512911797, 0.028187982738018036, 0.01876518875360489, -0.0019597322680056095, 0.022093718871474266, 0.026596078649163246, -0.003348629456013441, 0.015613538213074207, -0.021418364718556404, 0.007123375311493874, 0.03640478849411011, 0.01237344741821289, -0.001422062050551176, 0.03527919948101044, -0.006259082816541195, 0.01091822050511837, -0.007328393403440714, 0.04122874513268471, 0.0024039382115006447, -0.0009451938676647842, 0.013941233046352863, -0.048239558935165405, -0.007312313187867403, -0.009085116907954216, 0.01028306595981121, 0.013716114684939384, -0.026274479925632477, -0.03158083185553551, -0.0035395778249949217, -0.0488184355199337, -0.022736912593245506, -0.006954536773264408, -0.005660108290612698, -0.0030431123450398445, -0.009189636446535587, 0.0002526295720599592, 0.04193625971674919, -0.02424841932952404, -0.003841075114905834, -0.019665660336613655, 0.053545910865068436, -0.03884892538189888, -0.034443046897649765, 0.001426081988029182, -0.027834227308630943, 0.0404890701174736, -0.01541253924369812, 0.026547838002443314, -0.014407549053430557, -0.041164424270391464, 0.017527040094137192, 0.016980325803160667, -0.02373386360704899, -0.0057807075791060925, -0.03502191975712776, -0.004297340754419565, -0.013097040355205536, 0.027528708800673485, -0.02759302780032158, -0.01688384637236595, -0.014552267268300056, 0.02183644101023674, -0.0006969611276872456, -0.03962076082825661, 0.018041595816612244, 0.016087893396615982, -0.03373553231358528, 0.00025124772218987346, 0.010258946567773819, -0.03495760262012482, -0.031725551933050156, -0.045023590326309204, -0.01958526112139225, -0.06538068503141403, -0.01501858327537775, -0.05663324519991875, -0.06682787090539932, -0.010910180397331715, -0.04798228293657303, 0.0043174405582249165, 0.007597730960696936, 0.005853066686540842, 0.0018521981546655297, -0.0004720944561995566, 0.01989077962934971, 0.03351041302084923, -0.0028079443145543337, -0.010628783144056797, -0.0040038833394646645, -0.02759302780032158, 0.01989077962934971, 0.001159759471192956, 0.0039415741339325905, 0.003433048725128174, 0.045505985617637634, 0.019231505692005157, -0.03466816246509552, 0.002084350911900401, 0.015171341598033905, -0.01607181318104267, -0.024682575836777687, -0.0074731120839715, -0.04611701890826225, -0.012863882817327976, 0.018540071323513985, -0.021627403795719147, 0.01251816563308239, 0.03614751249551773, 0.025406168773770332, 0.014230670407414436, -0.024184100329875946, 0.010427785106003284, 0.0068781571462750435, 0.038141410797834396, 0.011569454334676266, -0.02117716707289219, -0.0015054763061925769, 0.0439944788813591, -0.01780039817094803, -0.040874987840652466, 0.011569454334676266, -0.03794845566153526, 0.02474689483642578, 0.011432776227593422, -0.0009075067355297506, 0.012140289880335331, -0.015299980528652668, -0.0055716694332659245, 0.015669817104935646, 0.005286251660436392, 0.015082902275025845, -0.0359545536339283, 0.029972847551107407, -0.041486021131277084, -0.02373386360704899, -0.02569560520350933, 0.01460854709148407, 0.0031295414082705975, -0.019971178844571114, 0.009398674592375755, -0.03708014264702797, 0.045827582478523254, -0.008675080724060535, -0.023058509454131126, 0.012317167595028877, 0.046149179339408875, -0.023540904745459557, -0.04193625971674919, -0.03080900013446808, 0.008313284255564213, 0.006423901300877333, -0.00649626087397337, 0.0013074930757284164, -0.006620879750698805, 0.026917675510048866, 0.04097146540880203, 0.03473248332738876, -0.008313284255564213, 0.012180489487946033, -0.037980612367391586, -0.02760910801589489, 0.022929871454834938, 0.05319215729832649, 0.009672031737864017, -0.011440815404057503, 0.002482327399775386, -0.0009919259464368224, -0.010315226390957832, 0.004751596599817276, 0.004474219400435686, 0.008956477977335453, 0.0004193324421066791, 0.05808043107390404, -0.027673428878188133, -0.015959255397319794, 0.011127258650958538, -0.016739128157496452, 0.004361660219728947, 0.010612702928483486, 0.002192890038713813, -0.026065442711114883, 0.00505711417645216, -0.0022994191385805607, 0.008466042578220367, 0.02680511586368084, -0.019392304122447968, -0.013265878893435001, -0.04097146540880203, -0.006910317111760378, -0.02085557021200657, 0.0160798542201519, 0.013394517824053764, -0.04058555141091347, -0.019874699413776398, -0.013925152830779552, 0.056601084768772125, -0.005455090198665857, 0.0015346209984272718, -0.028043264523148537, 0.011577494442462921, -0.05425342544913292, -0.056279487907886505, 9.848910121945664e-05, 0.026596078649163246, 0.004570698365569115, 0.041357383131980896, -0.030262283980846405, -0.011625734157860279, 0.019183265045285225, 0.026274479925632477, 0.002502427203580737, -0.024859454482793808, 0.008642921224236488, -0.003326519625261426, -0.014688946306705475, 0.030455242842435837, -0.011135298758745193, -0.02842918038368225, 0.013410598039627075, -0.007645970210433006, -0.011907131411135197, 0.01623261161148548, -0.032513465732336044, -0.021595243364572525, 0.009173556230962276, 0.0018612430430948734, -0.0075052715837955475, -0.006082204636186361, -0.036983661353588104, 0.01654616929590702, -0.017430560663342476, -0.0051294732838869095, -0.023878581821918488, 0.002349668648093939, 0.012260888703167439, -0.004635017830878496, 0.0003587817191146314, -0.028638219460844994, -0.009020797908306122, 0.002548656892031431, -0.027834227308630943, -0.008208765648305416, -0.025952883064746857, -0.00811630580574274, 0.004691297188401222, -0.001631100196391344, 0.02392682246863842, -0.018556151539087296, 0.023235388100147247, -0.008675080724060535, -0.026065442711114883, -0.02424841932952404, 0.011842812411487103, -0.005619908683001995, 0.02165956236422062, 0.014102031476795673, -0.005985725671052933, -0.012510126456618309, -0.022367076948285103, 0.022125879302620888, -0.01767175830900669, 0.018347112461924553, -0.009109237231314182, -0.041486021131277084, -0.016658728942275047, -0.008940398693084717, -0.021466605365276337, -0.002661215839907527, -0.03743389993906021, -0.007115335203707218, -0.016916006803512573, -0.013627676293253899, 0.023508746176958084, -0.011722213588654995, -0.013772394508123398, -0.030246203765273094, -0.012019690126180649, -0.006821877788752317, 0.031693391501903534, 0.01068506296724081, 0.01765567995607853, -0.05666540563106537, 0.05123041197657585, -0.01829887367784977, -0.005097313784062862, 0.0059013064019382, 0.04299752786755562, 0.0007527381530962884, 0.005374690983444452, 0.012220689095556736, 0.0005924421129748225, -0.0030792918987572193, -0.015846695750951767, 0.024988092482089996, -0.01333019882440567, -0.012614645063877106, -0.030937638133764267, 0.03447520732879639, -0.0005693273269571364, 0.009430834092199802, -0.025470487773418427, 0.004679237492382526, 0.03161299228668213, 0.00013831186515744776, 0.02262435480952263, 0.003238080535084009, -0.0250684916973114, -0.03275466337800026, 0.009680071845650673, -0.03360689431428909, 0.0030451223719865084, 0.007746469229459763, -0.010693103075027466, 0.021579163148999214, 0.00980067066848278, -0.01895814761519432, 0.020437493920326233, 0.008369564078748226, 0.013675915077328682, 0.004803856369107962, -0.008851959370076656, 0.004659137688577175, -0.023235388100147247, -0.0009436864056624472, -0.026772955432534218, -0.002717495197430253, 0.004184782039374113, -0.023492665961384773, -0.03288330137729645, -0.013555316254496574, 0.010572503320872784, -0.003499378217384219, 0.041839778423309326, -0.009117277339100838, 0.000144844307214953, 0.001028105616569519, 0.03576159477233887, -0.006986696273088455, 0.021788202226161957, 0.007826868444681168, 0.002371778478845954, 0.015388419851660728, 0.009511233307421207, 0.019649580121040344, -0.003827005159109831, -0.011432776227593422, 0.016184372827410698, -0.019472703337669373, 0.02217411808669567, 0.002844124101102352, 0.02711063250899315, 0.005189772695302963, -0.007002776023000479, 0.021145006641745567, -0.025422248989343643, 0.015139182098209858, -0.015959255397319794, -0.0017044644337147474, -0.013048801571130753, -0.009133356623351574, 0.009495153091847897, 0.012719164602458477, -0.03823789209127426, 0.04347992315888405, -0.016594408079981804, -0.004076242912560701, 0.010130307637155056, 0.023010270670056343, -0.010717222467064857, 0.016425570473074913, -0.014962303452193737, -0.0226565133780241, -0.011408655904233456, -0.0009693136671558022, -0.039267003536224365, 0.03852732852101326, -0.009028838016092777, -0.013691995292901993, 0.06258279085159302, -0.012823683209717274, -0.04885059595108032, -0.008530362509191036, -0.0015406509628519416, -0.009720271453261375, 0.029892448335886, -0.009101197123527527, 0.004643057938665152, -0.006616859696805477, 0.020678691565990448, 0.04447687417268753, 0.014190470799803734, 0.006037984974682331, 0.016144173219799995, 0.021884679794311523, 0.030133645981550217, 0.00642792135477066, -0.014278910122811794, -0.0016220551915466785, 0.015042702667415142, -0.0024984071496874094, -0.001500451355241239, 0.0029406032990664244, 0.01493014395236969, 0.036501266062259674, 0.017736079171299934, 0.009221795946359634, 0.008196705020964146, 0.042482972145080566, 0.007235934026539326, 0.014367349445819855, 0.011183538474142551, -0.0026793056167662144, -0.026756877079606056, 0.009278075769543648, 0.00041003627120517194, -0.00437773996964097, -0.005543529521673918, -0.007730389479547739, 0.013989472761750221, 0.019038546830415726, -0.02505241148173809, 0.014222630299627781, -0.027207111939787865, 0.002265249378979206, 0.019183265045285225, -0.008466042578220367, 0.003215970704331994, 0.0024642376229166985, 0.02230275608599186, -0.00505711417645216, -0.006821877788752317, 0.03579375520348549, 0.005141532979905605, -0.02357306517660618, -0.005559609271585941, -0.006234963424503803, 0.007517331745475531, 0.002295399084687233, -0.015509018674492836, -0.009993628598749638, -0.004192821681499481, -0.037980612367391586, -0.043576404452323914, -0.01588689535856247, -0.010162467136979103, 0.0076901898719370365, 0.014849744737148285, -0.016932085156440735, -0.013064880855381489, 0.010524264536798, -0.012670924887061119, -0.009808710776269436, 0.03447520732879639, 0.004618938080966473, -0.016948165372014046, 0.00501691410318017, 0.02120932750403881, -0.03064820170402527, 0.020035497844219208, -0.0019898819737136364, 0.01324175950139761, 0.021402284502983093, -0.007838929072022438, -0.006640979554504156, -0.020099816843867302, -0.022061558440327644, -0.015838656574487686, 0.014327149838209152, -0.02458609640598297, 0.014865824952721596, -0.000790425285231322, -0.00947907380759716, 0.004518439061939716, 0.012172449380159378, -0.0011165448231622577, 0.0030250223353505135, -0.01107901893556118, -0.04171114042401314, 0.02796286530792713, 0.006090244743973017, -0.014721105806529522, -0.018041595816612244, -0.040038835257291794, 0.02154700458049774, -0.002182840136811137, -0.029152775183320045, 0.0030129626393318176, 0.028027184307575226, 0.0008793669985607266, -0.007830888964235783, 0.011062939651310444, 0.033639054745435715, -0.032352663576602936, 0.026242321357131004, 0.014005552046000957, -0.019038546830415726, 0.0004937017802149057, 0.040070995688438416, 0.014528147876262665, -0.0437050424516201, 0.050522901117801666, -0.019054627045989037, 0.01178653258830309, -0.009913229383528233, -0.03129139542579651, 0.0287186186760664, 0.009535352699458599, -0.028187982738018036, 0.020935969427227974, 0.040842827409505844, -0.019327983260154724, 0.04669589549303055, -0.0015175362350419164, -0.029313573613762856, 0.014069871976971626, -0.02198115922510624, -0.005712368059903383, -0.006218883208930492, -0.0013607576256617904, 0.0059415060095489025, -0.012469926849007607, -0.018202394247055054, -0.01275936421006918, 0.006673139054328203, -0.0011909141903743148, -0.0022471596021205187, -0.05235600471496582, 0.012510126456618309, 0.007247994188219309, 0.024521777406334877, -0.008851959370076656, 0.031403955072164536, -0.012719164602458477, -0.04730692878365517, 0.009221795946359634, 0.001292418222874403, -0.009165516123175621, 0.00252855708822608, -0.005491270218044519, -0.018909906968474388, -0.003370739286765456, 0.022752992808818817, -0.05351375415921211, 0.00843388307839632, 0.03125923499464989, 0.01701248437166214, -0.037819813936948776, -0.03148435428738594, 0.001161769381724298, -0.012662884779274464, 0.0018069735961034894, 0.012349327094852924, -0.02217411808669567, -0.006886197254061699, 0.00802384689450264, -0.011939290910959244, -0.007754509337246418, -0.000950721325352788, 0.006970616523176432, -0.008208765648305416, 0.042482972145080566, -0.018331032246351242, -0.0007401757757179439, 0.006226923316717148, 0.006299282424151897, -0.001664264826104045, 0.004168701823800802, 0.02167564257979393, 0.0025948863476514816, 0.05061937868595123, 0.015460778959095478, -0.018089834600687027, -0.009350434876978397, -0.023991141468286514, 0.03183811157941818, -0.0009105217177420855, 0.020823409780859947, -0.021772122010588646, -0.000461793300928548, -0.016626568511128426, 0.016441650688648224, -0.039234843105077744, -0.002219019690528512, -0.01831495389342308, 0.017543120309710503, 0.005101333372294903, 0.003087331773713231, 0.02585640363395214, -0.012670924887061119, 0.015211541205644608, 0.02569560520350933, 0.00690629705786705, 0.01944054290652275, -0.006411841604858637, 0.0173180028796196, -0.02328362874686718, 0.004852095618844032, 0.011191577650606632, 0.0020200316794216633, -0.009744390845298767, -0.016610488295555115, 0.009647912345826626, 0.027046313509345055, -0.008650961332023144, -0.006604800000786781, 0.014455788768827915, -0.028461340814828873, 0.004904355388134718, -0.02040533348917961, 0.016771286725997925, -0.02040533348917961, 0.004136542323976755, 0.02939397282898426, 0.04827171936631203, -0.005137513391673565, 0.001553715905174613, -0.00638370169326663, -0.03005324676632881, -0.00638370169326663, -0.015846695750951767, 0.0028360842261463404, 0.022286677733063698, 0.012896042317152023, -0.003374759340658784, 0.013289999216794968, -0.017125044018030167, -0.003638066817075014, -0.015653736889362335, -0.020276695489883423, -0.0071796546690166, -0.022736912593245506, 0.03306017816066742, -0.009471033699810505, 0.02006765641272068, -0.0019587271381169558, -0.019022466614842415, -0.0026411160361021757, -0.0020200316794216633, 0.007975607179105282, 0.002399918157607317, -0.011617694050073624, 0.007971587590873241, -0.05229168385267258, -0.05061937868595123, -0.018041595816612244, 0.032336585223674774, 0.0010054933372884989, 0.019971178844571114, 0.010476024821400642, -0.0031516512390226126, -0.019472703337669373, -0.006910317111760378, 0.008602721616625786, -0.022897711023688316, -0.024602176621556282, 0.03498976305127144, -0.0031797911506146193, -0.011915171518921852, 0.018170233815908432, -0.023058509454131126, -0.010837821289896965, -0.018218474462628365, 0.03453952446579933, -0.01075742207467556, 0.022367076948285103, 0.00020325940568000078, -0.018877748399972916, -0.011818692088127136, 0.004229001700878143, 0.017398402094841003, 0.02921709418296814, -0.024441378191113472, 0.005535489413887262, 0.025470487773418427, -0.009840870276093483, 0.01219656877219677, -0.005865126382559538, 0.010926260612905025, 0.0003509930393192917, -0.0517449676990509, -0.019070705398917198, 0.0036018872633576393, -0.003165721194818616, 0.041196584701538086, -0.0375625379383564, -0.010660942643880844, -0.05094097554683685, -0.008803719654679298, 0.03675854578614235, 0.0006733438931405544, 0.02329970709979534, 0.018572231754660606, 0.03389633074402809, 0.009929309599101543, -0.010805661790072918, 0.004301360808312893, 0.020598292350769043, -0.008538402616977692, 0.0072962334379553795, 0.00421694153919816, 0.009993628598749638, -0.0068781571462750435, -0.02230275608599186, -0.031098436564207077, 0.005382731091231108, -0.04322264716029167, -0.006435961462557316, 0.0033064198214560747, -0.00033943564631044865, 0.0019617420621216297, 0.0015637658070772886, -0.002086360938847065, -0.010797621682286263, 0.022527875378727913, 0.0050490740686655045, 0.001712504425086081, 0.010331305675208569, 0.012775443494319916, -0.011175498366355896, 0.004518439061939716, -0.01718936301767826, 0.03900972381234169, -0.02664431743323803, 0.006452041212469339, -0.0034692285116761923, 0.018347112461924553, -0.01685168594121933, -0.006890217307955027, 0.012662884779274464, -0.027657348662614822, -0.008546441793441772, -0.012236768379807472, -0.024489616975188255, 0.0029064335394650698, -0.030712520703673363, 0.005246052052825689, 0.002056211233139038, 0.01799335703253746, -0.023364027962088585, -0.0018913927488029003, -0.01747880131006241, 0.022415315732359886, 0.002548656892031431, -0.025583047419786453, 0.02731967158615589, 0.04431607574224472, 0.009205715730786324, 0.017687838524580002, 0.005644028540700674, -0.009374554269015789, 0.0042933207005262375, -0.036179669201374054, -0.004928475245833397, 0.020469654351472855, -0.010821741074323654, -0.00956751313060522, 0.009969509206712246, -0.019360143691301346, -0.05293487757444382, 0.006082204636186361, 0.0009361489792354405, 0.0015677857445552945, 0.009985589422285557, -0.05695484206080437, 0.00015853731019888073, 0.00216676015406847, 0.003587817307561636, -0.01541253924369812, 0.011690053157508373, -0.014053791761398315, 0.01765567995607853, 0.0010195631766691804, -0.016964245587587357, 0.027223192155361176, 0.008060026913881302, -0.0056279487907886505, -0.036211829632520676, -0.017414482310414314, -0.07699033617973328, -0.04640645906329155, -0.005262132268399, 0.003380789188668132, -0.0013255829690024257, -0.011207657866179943, 0.019553102552890778, -0.0008341423817910254, -0.002659205812960863, 0.003668216522783041, 0.0035194780211895704, -0.004707376938313246, -0.0014009572332724929, 0.005648048594594002, 0.010065988637506962, 0.04528086632490158, 0.0031255215872079134, -0.011915171518921852, 0.008964518085122108, -0.008570562116801739, -0.021000288426876068, 0.0034390785731375217, 0.02728751115500927, -0.009422793984413147, -0.0012512136017903686, 0.04193625971674919, -0.004888275638222694, 0.013281959109008312, -0.0021145008504390717, -0.006725398823618889, -0.008811759762465954, -0.008337403647601604, -0.001082375179976225, -0.027496550232172012, 0.03872028738260269, -0.008650961332023144, -0.006295262835919857, 0.01235736720263958, 0.010620743036270142, 0.0010215732036158442, -0.000949716370087117, -0.007987666875123978, -0.00820072554051876, 0.0030169824603945017, -0.001317542977631092, 0.001875312882475555, 0.013547277078032494, -0.023878581821918488, -0.015581377781927586, 0.024312738329172134, 0.01540450006723404, 0.03257778286933899, -0.020935969427227974, -0.021756041795015335, -0.018749108538031578, -0.005141532979905605, 0.021884679794311523, -0.008570562116801739, -0.02471473440527916, 0.013909073546528816, 0.08046358823776245, 0.01958526112139225, -0.002920503495261073, 0.015364300459623337, -0.024039380252361298, -0.011095099151134491, 0.03640478849411011, 0.04029611125588417, 0.05184144899249077, -0.013394517824053764, 0.015790415927767754, 0.006516360677778721, -0.007658030372112989, 0.02696591429412365, 0.017446640878915787, 0.0321597084403038, 0.026387039572000504, 0.013466876931488514, 0.03769117593765259, 0.01018658746033907, -0.0028662339318543673, 0.0014682916225865483, 0.002815984422340989, -0.00200596172362566, 0.0035476176999509335, -0.003913434222340584, -0.010717222467064857, -0.0006828912883065641, 0.002637095982208848, 0.0009044917533174157, 0.01894206739962101, -0.003342599608004093, 0.030230125412344933, 0.006729418877512217, -0.00024333341571036726, 0.05373886972665787, 0.012542285956442356, 0.017864717170596123, -0.028799017891287804, -0.004546578507870436, -0.0029104535933583975, -0.0007673104992136359, 0.000329636997776106, -0.010194627568125725, -5.822665843879804e-05, -0.010299146175384521, -0.03296370059251785, 0.009776551276445389, -0.0003607917169574648, -0.025084571912884712, -0.00013818623847328126, 0.00795148778706789, -0.03714446350932121, 0.0005728447576984763, -0.007915307767689228, 0.0015165312215685844, -0.01976213976740837, -0.004106392618268728, 0.011054899543523788, 0.0008401723462156951, -0.013965352438390255, 0.005849046632647514, 0.01540450006723404, -0.019054627045989037, -0.005491270218044519, -0.003879264695569873, -0.018266713246703148, 0.011979490518569946, 0.0027315651532262564, 0.02889549732208252, 0.01799335703253746, 0.004369700327515602, 0.0018220484489575028, 0.006958556827157736, -0.012309127487242222, -0.009655952453613281, 0.028847256675362587, -0.024762975051999092, 0.024441378191113472, -0.01116745825856924, -0.003913434222340584, 0.000606511952355504, 0.008144445717334747, 0.0020763110369443893, -0.00947907380759716, 0.011617694050073624, 0.001344677759334445, -0.008771560154855251, 0.00775048928335309, -0.017382321879267693, -0.010258946567773819, -9.497163409832865e-05, 0.012389526702463627, 0.020196296274662018, -0.013659835793077946, 0.011858891695737839, -0.022865552455186844, 0.004082272760570049, -0.004269201308488846, -0.009945389814674854, -0.004751596599817276, 0.010572503320872784, 0.020003337413072586, 0.004184782039374113, 0.014705026522278786, -0.015927094966173172, -0.009294155053794384, 0.012486006133258343, -0.0024923773016780615, -0.0020220414735376835, 0.001978826941922307, -0.0005683223134838045, -0.002590866293758154, -0.024650415405631065, -0.0021768102888017893, -0.007698229979723692, -0.00852232240140438, 0.020952049642801285, 0.028766857460141182, -0.013442757539451122, -0.026081522926688194, -0.0025747865438461304, 0.016948165372014046, 0.0038089153822511435, -0.0027034254744648933, -0.003991823643445969, -0.021450525149703026, 0.004908375442028046, -0.0027235252782702446, 0.012381487525999546, -0.011448855511844158, 0.02165956236422062, -0.006813838146626949, 0.010861940681934357, 0.006858057342469692, 0.007846968248486519, 0.04219353571534157, 0.017543120309710503, -0.026692556217312813, -0.0020481713581830263, -0.004393820185214281, -0.0038812747225165367, 0.012646804563701153, 0.006464100908488035, -0.01068506296724081, -0.008188665844500065, -0.02424841932952404, -0.0013125180266797543, 0.0274804700165987, -0.018266713246703148, -0.009253955446183681, 0.004643057938665152, 0.04158250242471695, -0.008240925148129463, -0.0031476314179599285, -0.029667329043149948, 0.008232885040342808, -0.01992293819785118, -0.0038832847494632006, -0.0019386273343116045, 0.04190409928560257, 0.0033827992156147957, -0.017929036170244217, 0.0024602175690233707, 0.0029104535933583975, 0.005177712999284267, 0.019504861906170845, -0.050844497978687286, -0.0173180028796196, 0.004936514887958765, 0.014005552046000957, 0.022190198302268982, 0.004136542323976755, -0.0019356124103069305, -0.0056520686484873295, 0.009663991630077362, 0.016578329727053642, -0.0343465656042099, 0.0002160730364266783, 0.016087893396615982, -0.020823409780859947, -0.005824926774948835, -0.0011416695779189467, 0.015814535319805145, 0.0034692285116761923, 0.007979627698659897, -0.03370337188243866, -0.02230275608599186, 0.01865263096988201, -0.0061505441553890705, 0.0015094962436705828, 0.002031086478382349, 0.008441923186182976, 0.00868312083184719, -0.010090108029544353, 0.009889109991490841, 0.0077384295873343945, -0.021916840225458145, -0.005137513391673565, 0.016642648726701736, -0.010419744998216629, 0.03833436965942383, 0.010355425998568535, 0.002554686740040779, 0.030937638133764267, -0.007754509337246418, -0.0006396766984835267, 0.011754373088479042, -0.001103479997254908, 0.006733438465744257, -0.006769618485122919, 0.002824024297297001, -0.027191031724214554, 0.010974500328302383, -0.010910180397331715, -0.01620849221944809, -0.011119218543171883, -0.020276695489883423, 0.0015486908378079534, -0.0101222675293684, -0.01670696772634983, 0.026065442711114883, -0.011842812411487103, 0.0002871761389542371, 0.012558365240693092, 0.013925152830779552, 0.0024903672747313976, 0.0003929514205083251, 0.013675915077328682, -0.0069022770039737225, 0.0300371665507555, 0.00321396067738533, 0.0069826762191951275, 0.02426449954509735, 0.021450525149703026, 0.014560307376086712, 0.0006306317518465221, 0.011207657866179943, 0.011730252765119076, -0.013105080462992191, 0.003969714045524597, -0.00017398904310539365, -0.031114516779780388, -0.0053947907872498035, 0.008884118869900703, -0.0002718500327318907, 0.01844359189271927, -0.00014157808618620038, -0.011665933765470982, -0.024505697190761566, 0.011899091303348541, -0.010910180397331715, -0.0069826762191951275, -0.009398674592375755, -0.018829507753252983, 0.022399235516786575, -0.004345580469816923, 0.015203501097857952, -0.014592466875910759, -0.041678979992866516, 0.006226923316717148, -0.019537022337317467, -0.0037626856938004494, 0.012019690126180649, -0.043737202882766724, 0.0006135469302535057, 0.010797621682286263, 0.003746605943888426, 0.011352377012372017, 0.0027235252782702446, -0.021772122010588646, 0.03920268267393112, -0.0034430986270308495, 0.03415361046791077, -0.013868873938918114, 0.005619908683001995, 0.016481850296258926, 0.0025406167842447758, 0.00955143291503191, -0.007139455061405897, -0.010604663752019405, 0.019070705398917198, -0.0017607439076527953, 0.0025767965707927942, 0.02632272057235241, 0.014455788768827915, -0.006673139054328203, 0.04190409928560257, 0.009270035661756992, 0.010878020897507668, 0.007625870406627655, 0.01654616929590702, 0.016120053827762604, -0.006102304439991713, 0.017430560663342476, 0.024505697190761566, 0.027335751801729202, -0.006850017700344324, -0.007605770602822304, -0.029249252751469612, 0.005949545651674271, 0.013410598039627075, -0.0012793533969670534, 0.021900760009884834, -0.016007494181394577, 0.0074248723685741425, 0.02215803787112236, -0.031854189932346344, 0.007328393403440714, -0.020678691565990448, 0.01347491703927517, -0.02489161305129528, -0.00986499059945345, 0.007477131672203541, -0.0027034254744648933, 0.008208765648305416, 0.01075742207467556, -0.01406183186918497, 0.004550598561763763, -0.006918357219547033, -0.008196705020964146, 0.00811630580574274, -0.024168020114302635, -0.004964654799550772, -0.028927655890583992, 0.024682575836777687, 0.005587749183177948, -0.00899667851626873, -0.02022845670580864, -0.007891188375651836, 0.005997785367071629, -0.014431668445467949, 0.00016067290562205017, 0.01235736720263958, 0.00809620600193739, -0.025100652128458023, -0.03929916024208069, 0.013965352438390255, -0.02405546046793461, -0.005197812803089619, -0.013346278108656406, 0.014463827945291996, -0.005796787329018116, 0.019537022337317467, -0.01653008908033371, -0.003642086870968342, -0.033478256314992905, -0.01347491703927517, -0.006926396861672401, -0.026933753862977028, -0.0027757848147302866, 0.008835879154503345, 0.023492665961384773, 0.0026330759283155203, 0.013756314292550087, -0.0008316299063153565, -0.010725262574851513, 0.004968674853444099, -0.005310371518135071, 0.01685168594121933, -0.007059055846184492, -0.007392712868750095, -0.028380941599607468, -0.022045480087399483, -0.011416696012020111, 0.007147494703531265, -0.029635170474648476, 0.00890823919326067, -0.012220689095556736, -0.003827005159109831, 0.0038450949359685183, 0.021627403795719147, -0.017559200525283813, 0.026724716648459435, 0.03949211910367012, -0.020968129858374596, 0.013105080462992191, -0.03865596652030945, -0.00922983605414629, -0.008731360547244549, -0.0049204351380467415, -0.01525174081325531, -0.0054671503603458405, -0.015605498105287552, -0.016980325803160667, -0.009326315484941006, 0.015975333750247955, -0.029892448335886, -0.00226725940592587, 0.02614584192633629, 0.01478542573750019, 0.010869980789721012, -0.002797894412651658, -0.009905190207064152, 0.01205185055732727, 0.00963987223803997, -0.019167184829711914, 0.018057676032185555, -0.021289726719260216, 0.033478256314992905, 0.03560079634189606, -0.023396186530590057, 0.0005743522779084742, 0.019520942121744156, 0.011537294834852219, -0.0004585270653478801, 0.01331411860883236, 0.013121160678565502, -0.013820634223520756, -0.02455393597483635, 0.017092883586883545, -0.007203774526715279, 0.001631100196391344, -0.0016481849597766995, 0.007730389479547739, -0.05315999686717987, -0.02182036079466343, -0.01799335703253746, 0.002667245687916875, 0.0047676763497292995, 0.009334354661405087, 0.008876078762114048, 0.003350639482960105, -0.006082204636186361, 0.014222630299627781, 0.022769073024392128, 0.009519273415207863, -0.009334354661405087, -0.004148602019995451, 0.011127258650958538, -0.002321528969332576, 0.02584032528102398, -0.009599672630429268, -0.00013667876191902906, 0.021225405856966972, -0.03695150464773178, -0.013201559893786907, -0.016248691827058792, 0.017687838524580002, -0.0027798046357929707, -0.020308855921030045, -0.004349600523710251, -0.041968416422605515, 0.01653008908033371, 0.004530498757958412, -0.024762975051999092, -0.008466042578220367, -0.0006401791470125318, 0.009615752846002579, 0.0006984686478972435, -0.0014381419168785214, 0.024811213836073875, 0.016184372827410698, 0.0012984481872990727, -0.004795816261321306, -0.012783483602106571, -0.006488220766186714, -0.0018290833104401827, -0.009044917300343513, 0.0028401040472090244, -0.0007924353121779859, -0.012879963032901287, -0.0013105081161484122, -0.0023295688442885876, 0.020131977275013924, 0.003907404374331236, -0.0037847955245524645, -0.006343502085655928, -0.02329970709979534, -0.0018954126862809062, 0.010162467136979103, -0.0007055035675875843, 0.0018743079854175448, -0.0021265605464577675, 0.021563082933425903, 0.0018552130786702037, 0.021949000656604767, -0.00947907380759716, 0.0005768647533841431, -0.02458609640598297, 0.007525371387600899, -0.005820907186716795, -0.012092050164937973, -0.0006441991426981986, 0.02407154068350792, 0.07621850818395615, 0.020308855921030045, 0.01958526112139225, 0.006363601889461279, 0.009036878123879433, -0.034121450036764145, 0.006315362639725208, -0.003915444482117891, 0.026049362495541573, 0.009647912345826626, 0.006966596469283104, -0.02169172279536724, 0.02055005356669426, 0.0067977579310536385, -0.018186314031481743, 0.02103244885802269, 0.009856950491666794, 0.00022951478604227304, -0.041003625839948654, 0.031564753502607346, -0.0012843783479183912, 0.017237603664398193, -0.011384536512196064, 0.0033104398753494024, -0.006620879750698805, 0.013603555969893932, 0.0041023725643754005, -0.0016662748530507088, 0.004852095618844032, 0.0394599623978138, 0.006029944866895676, 0.0015406509628519416, -0.005250072106719017, -0.023685624822974205, 0.010612702928483486, 0.005792767275124788, 0.0013748274650424719, 0.01283172331750393, -0.0077384295873343945, 0.0189259871840477, 0.01524370163679123, -0.00686207739636302, 0.012904082424938679, 0.005358611233532429, -0.004530498757958412, 0.008876078762114048, -0.008385643362998962, 0.002526547061279416, -0.002401928184553981, -0.013523156754672527, -0.029104534536600113, -0.0013356328709051013, 0.0007145485142245889, 0.0052902717143297195, 0.01003382820636034, -0.020292775705456734, -0.00449029915034771, -0.004831995815038681, -0.004124482627958059, 6.796250818297267e-05, -0.0008783619850873947, 0.0004035038291476667, -0.014753265306353569, -0.011456895619630814, -0.017527040094137192, -0.02955477125942707, -0.0004969679866917431, -0.028187982738018036, -0.019697820767760277, -0.018733030185103416, -0.0056038289330899715, -0.007042975630611181, 0.012839763425290585, -0.03174163028597832, -0.008011787198483944, 0.006689219269901514, 0.005543529521673918, 0.033639054745435715, -0.004542558453977108, -0.002713475376367569, 0.006793738342821598, 0.009615752846002579, -0.019665660336613655, -0.0069022770039737225, 0.0012964381603524089, -0.0030189924873411655, -0.009647912345826626, 0.013499037362635136, 0.00972831156104803, -0.019006386399269104, -0.0017104943981394172, -0.00770225003361702, -0.002082341117784381, 0.010894101113080978, 0.00585708674043417, 0.009197676554322243, -0.01074134185910225, -0.015380379743874073, 0.010749381966888905, 0.01347491703927517, 0.011939290910959244, 0.015525098890066147, 0.01897422783076763, 0.002011991571635008, -0.008124345913529396, -0.016280852258205414, 0.026596078649163246, 0.011255897581577301, 0.0003133059071842581, 0.02056613191962242, -0.0013507077237591147, -0.012100089341402054, 0.012526205740869045, -0.006854037754237652, -0.01116745825856924, -0.009663991630077362, 0.010540343821048737, 0.008401723578572273, -0.005181732587516308, -0.005503329914063215, -0.0058128670789301395, -0.00978459045290947, -0.00726809399202466, -0.02182036079466343, -0.00868312083184719, 0.007199754472821951, -0.014994463883340359, 0.003165721194818616, -0.014013592153787613, -0.03534351661801338, 0.006066124886274338, 0.013442757539451122, 0.013201559893786907, 0.0077143097296357155, 0.01460854709148407, -0.005828946828842163, 0.0013667875900864601, -0.004771696403622627, 0.019360143691301346, 0.0028421140741556883, 0.01325783971697092, 0.030262283980846405, 0.01325783971697092, 0.0032722502946853638, -0.003603897290304303, -0.011633774265646935, -0.00022737917606718838, -0.015372339636087418, -0.025084571912884712, 0.0014682916225865483, 0.011231777258217335, -0.023026350885629654, -0.012622685171663761, 0.0031556712929159403, 0.011537294834852219, -0.011818692088127136, -0.012863882817327976, 0.019939018413424492, -0.01718936301767826, -0.0020923910196870565, -0.015010543167591095, -0.007855008356273174, -0.022929871454834938, -0.011424736119806767, -0.006138483993709087, 0.017398402094841003, 0.0011426745913922787, 0.014833664521574974, 0.0010783551260828972, -0.0016160252271220088, -0.011682013981044292, 0.00931827537715435, -0.004727476742118597, -0.017864717170596123, -0.0028883437626063824, -0.014889944344758987, 0.004908375442028046, 0.008634881116449833, -0.004204881843179464, 0.006592739839106798, -0.019231505692005157, -0.01876518875360489, 0.011143338866531849, 0.007846968248486519, -0.014640706591308117, -0.013225679285824299, -0.0016391400713473558, -0.019488781690597534, 0.015452738851308823, -0.00890823919326067, -0.0020702811889350414, 0.016771286725997925, 0.005101333372294903, 0.0029948726296424866, -0.008803719654679298, -0.010861940681934357, 0.017559200525283813, 0.001501456368714571, 0.0020763110369443893, -0.02313890866935253, 0.016819527372717857, 0.005704327952116728, 0.007513311691582203, 0.016803447157144547, 0.006661079358309507, -0.012140289880335331, -0.0028923635836690664, -0.016015533357858658, -0.02408762089908123, 0.00306723196990788, -0.0789199247956276, -0.018234554678201675, 0.01881342940032482, 0.005953565705567598, -0.023492665961384773, 0.0025647366419434547, 0.029603010043501854, -0.00385112501680851, -0.004078252706676722, -0.005712368059903383, 0.005515389610081911, -0.0008215800044126809, 0.018684789538383484, -0.03100195713341236, 0.006480181124061346, -0.0018089835066348314, 0.01667480729520321, 0.006054064724594355, 0.011834772303700447, -0.006238983012735844, 0.023975061252713203, 0.014512067660689354, -0.013113120570778847, 0.01929582469165325, 0.004968674853444099, 0.03084115870296955, 0.0005683223134838045, 0.014809545129537582, 0.0003002410230692476, -0.013233719393610954, -0.010419744998216629, 0.008425842970609665, -0.0028662339318543673, -0.018716949969530106, 0.01301664113998413, 0.004518439061939716, -0.002422027988359332, -0.007565570995211601, -0.009688111953437328, -2.5328910851385444e-05, -0.01100665982812643, -0.02071085199713707, -0.0075615509413182735, 0.013386477716267109, 0.007911288179457188, 0.02183644101023674, 0.01989077962934971, -0.010709182359278202, -0.00010835057764779776, 0.002558706793934107, -0.003238080535084009, 0.002578806597739458, -0.002458207542076707, -0.006721378769725561, -0.009197676554322243, 0.02487553283572197, -0.03399281203746796, 0.017285842448472977, -0.011070978827774525, 0.013394517824053764, 0.003109441604465246, -0.029651250690221786, -0.0003087834338657558, 0.015227621421217918, 0.003165721194818616, 0.005471169948577881, -0.005519409663975239, 0.002928543370217085, 0.009776551276445389, 0.0022230397444218397, -0.0036199770402163267, 0.009438874199986458, 0.007790688890963793, -0.024762975051999092, -0.006190743762999773, -0.024441378191113472, 0.01910286583006382, 0.004005893599241972, -0.001607985352165997, -0.004992794711142778, 0.002777794608846307, -0.016015533357858658, -0.0032863200176507235, -0.00754547119140625, -0.01929582469165325, -0.01940838247537613, 0.0017466740682721138, -0.00955143291503191, -0.0010245881276205182, 0.00785902887582779, -0.007822848856449127, -0.008003747090697289, -0.002397908130660653, -0.030760759487748146, 0.018395353108644485, 0.004936514887958765, 0.007814808748662472, 0.0006426916224882007, -0.017929036170244217, 0.018105914816260338, 0.017076805233955383, 0.012092050164937973, 0.008265044540166855, -0.021868601441383362, -0.012879963032901287, -0.012960362248122692, -0.0034390785731375217, 0.022431395947933197, -0.018041595816612244, -0.0029426130931824446, -0.005792767275124788, 0.007071115542203188, -0.009149436838924885, 0.02138620615005493, 0.00786304846405983, 0.020791251212358475, -0.014479908160865307, 0.008964518085122108, 0.003979763947427273, -0.0026571957860141993, -0.004196841735392809, 0.0055475495755672455, -0.008876078762114048, -0.004727476742118597, 0.015227621421217918, 0.0010683052241802216, -0.0002685837971512228, -0.014174390584230423, -0.02423233911395073, 0.012566405348479748, -0.01715720444917679, 0.014833664521574974, -0.005242032464593649, -0.012510126456618309, -0.01736624166369438, 0.03312449902296066, 0.007195734418928623, -0.006042005028575659, 0.005740507505834103, 0.011183538474142551, -0.00022662543051410466, -0.009310235269367695, 0.00956751313060522, 0.005796787329018116, -0.018073756247758865, 0.004550598561763763, 0.022592194378376007, -0.009028838016092777, -0.024682575836777687, 0.013217639178037643, -0.001530601060949266, 0.0018009436316788197, -0.020517893135547638, -0.0071917143650352955, 0.009736351668834686, -0.013716114684939384, 0.012743283994495869, 0.0054430305026471615, -0.035086240619421005, 0.0010351405944675207, -0.005728447809815407, -0.007682150229811668, 0.01517938170582056, -0.003841075114905834, -0.014986423775553703, -0.011312177404761314, -0.013217639178037643, -0.00018856140377465636, -0.016015533357858658, -0.0013647775631397963, 0.029442211613059044, -0.008156505413353443, -0.0012029740028083324, -0.015999455004930496, 0.010162467136979103, 0.023347947746515274, 0.020308855921030045, 0.013161360286176205, 0.016176331788301468, -0.005318411625921726, -0.018540071323513985, -0.010419744998216629, -0.01444774866104126, 0.0009250940638594329, 0.017076805233955383, 0.007348493207246065, -0.015275861136615276, 0.01591101475059986, -0.007211814168840647, 0.010323265567421913, 0.015806496143341064, -0.0018300883239135146, 0.019311904907226562, 0.010942339897155762, 0.004494319204241037, -0.0063354624435305595, 0.006918357219547033, 0.015195461921393871, 0.01624065265059471, -0.01349099725484848, 0.00898059830069542, 0.016578329727053642, -0.02056613191962242, 0.004140562377870083, 0.018073756247758865, -0.01484170462936163, -9.88659739959985e-05, -0.007537431549280882, 0.005238012410700321, 0.0033647094387561083, 0.009197676554322243, 0.009519273415207863, 0.007131414953619242, -0.005728447809815407, 0.005374690983444452, 0.011384536512196064, 0.03643694892525673, -0.0101222675293684, -0.01404575165361166, 0.004007903393357992, 0.012791523709893227, -0.019810380414128304, 0.0050812335684895515, 0.013442757539451122, -0.007967567071318626, -0.008691160939633846, 0.019215425476431847, -0.024039380252361298, 0.009792630560696125, 0.017912955954670906, -0.005808847025036812, 0.012960362248122692, 0.0033466194290667772, 0.012976441532373428, 0.02760910801589489, 0.017848636955022812, 0.0027295551262795925, 0.02587248384952545, 0.0006356567027978599, -0.007083175703883171, -0.02759302780032158, 0.024296658113598824, 0.01363571546971798, -0.002667245687916875, -0.01765567995607853, 0.003380789188668132, 0.0006431941292248666, 0.0018672730075195432, 0.01356335636228323, -0.02794678509235382, 0.0012532236287370324, -0.002474287524819374, -0.008739400655031204, 0.012188528664410114, -0.004848076030611992, -0.007440952118486166, 0.008618801832199097, 0.021289726719260216, -0.014978383667767048, 0.016441650688648224, -0.023154988884925842, 0.01226892787963152, 0.007071115542203188, 0.011569454334676266, 0.007280153688043356, 0.0002021287800744176, -0.0049204351380467415, 0.0064399815164506435, -0.006737458519637585, -0.004755616653710604, -0.024441378191113472, 0.013965352438390255, 0.004369700327515602, 0.006866097450256348, 0.020324934273958206, 0.016103973612189293, -0.014383428730070591, 0.012968402355909348, 0.02473081462085247, 0.009414753876626492, 0.004715417046099901, -0.01299252174794674, 0.0033325497061014175, -0.0009894134709611535, 0.007674110122025013, -0.009511233307421207, -0.006025925278663635, 0.011601614765822887, -0.00385112501680851, 0.0010502154473215342, -0.012236768379807472, -0.011271977797150612, -0.00881979987025261, 0.021048529073596, -0.001135639613494277, 0.014777385629713535, -0.01860439032316208, 0.008699201047420502, 0.003509428119286895, -0.022270597517490387, 0.0035677175037562847, -0.006765598431229591, -0.020276695489883423, 0.01077350229024887, -0.018877748399972916, 0.02535792998969555, 0.006102304439991713, -0.0029305533971637487, 0.01571001671254635, -0.0006974636344239116, -0.015677858144044876, -0.021161086857318878, 0.00613446393981576, -0.006580680143088102, 0.0050008343532681465, -0.013595515862107277, 0.010588583536446095, 0.03034268319606781, 0.01107901893556118, -0.006653039250522852, -0.00726809399202466, -0.004204881843179464, -0.009704191237688065, -0.006271142978221178, 0.0034430986270308495, 0.01292820181697607, -0.026933753862977028, -0.00153361598495394, 0.01699640601873398, -0.010001668706536293, 0.0074570318683981895, 0.0037546458188444376, -0.030776839703321457, 0.009672031737864017, -0.016256732866168022, -0.033960651606321335, 0.0018542080651968718, -0.012968402355909348, -0.012703084386885166, -0.00881979987025261, 0.0004190811887383461, 0.00490033533424139, 0.012566405348479748, 0.0019798320718109608, 0.00417272187769413, -0.028863336890935898, -0.02487553283572197, 0.008084146305918694, 0.014383428730070591, -0.018523991107940674, -0.010853901505470276, -0.01876518875360489, -0.0008009776938706636, 0.017703918740153313, -0.023701705038547516, 0.004015943501144648, 0.010194627568125725, -0.008835879154503345, -0.019327983260154724, 0.01702856458723545, -0.009680071845650673, 0.005073193926364183, -0.016417531296610832, 0.011931251734495163, 0.007911288179457188, 0.004614918027073145, -0.007099255453795195, -0.004040063358843327, 0.010894101113080978, -0.014375388622283936, 0.011617694050073624, -0.014881904236972332, 0.008337403647601604, -0.015814535319805145, -0.008281124755740166, 0.0038149452302604914, 0.01623261161148548, -0.0019064676016569138, 0.02358914539217949, -0.001637130044400692, 0.011263937689363956, -0.025615205988287926, -0.004361660219728947, -0.00353354774415493, -0.010146387852728367, -0.019537022337317467, -0.014029672369360924, -0.010467984713613987, -0.013129200786352158, -0.018347112461924553, 0.00039395640487782657, 0.00881979987025261, -0.005595788825303316, -0.013378438539803028, -0.00553950946778059, 0.003855144837871194, 0.00891627836972475, -0.006476161070168018, -0.023364027962088585, -0.02167564257979393, -0.00020401313668116927, -0.009840870276093483, 0.01685168594121933, -0.004180761985480785, 0.00537871103733778, -0.039556439965963364, 0.002136610448360443, -0.0022109798155725002, 0.017687838524580002, 0.013925152830779552, -0.014962303452193737, -0.01372415479272604, 0.0018702879315242171, 0.012879963032901287, -0.013941233046352863, 0.012148329056799412, -0.0005557599361054599, 0.004305380862206221, 0.024939853698015213, -0.002799904439598322, -0.006962576415389776, -0.02358914539217949, -0.0017989336047321558, -0.014946224167943, 0.010419744998216629, 0.016007494181394577, -0.02008373662829399, -0.002711465349420905, -0.0074731120839715, 0.020630452781915665, 0.014214590191841125, -0.015259780921041965, 0.000487671815790236, 0.025583047419786453, 0.013434717431664467, -0.005519409663975239, 0.010886061005294323, -0.004518439061939716, -0.002691365545615554, -0.0011044848943129182, -0.029168853536248207, 0.014906024560332298, -0.002373788272961974, 0.015452738851308823, -0.031532593071460724, -0.00972831156104803, -0.0005612873937934637, -0.023637384176254272, 0.019215425476431847, -0.014970343559980392, 0.012904082424938679, -0.008578602224588394, -0.010805661790072918, -0.0015366310253739357, -0.013852793723344803, -0.013868873938918114, 0.002033096505329013, -0.008265044540166855, -0.009430834092199802, -0.05090881511569023, -0.005913366097956896, 0.009921269491314888, -0.00795550737529993, 0.00955143291503191, 0.009326315484941006, 0.01637733168900013, -0.0035837972536683083, 0.003433048725128174, -0.0005122940638102591, -0.03418576717376709, 0.008570562116801739, -0.004683257546275854, 0.006854037754237652, -0.03288330137729645, -1.735179466777481e-05, 0.006054064724594355, -0.00025275518419221044, -0.018105914816260338, -7.85777228884399e-05, -0.002480317372828722, -0.0034933481365442276, -0.023814262822270393, -0.022736912593245506, -0.040070995688438416, 0.014962303452193737, -0.006407821550965309, -0.0007080160430632532, -0.017768237739801407, 0.00163512013386935, -0.007203774526715279, -0.017575280740857124, 0.006890217307955027, 0.0005251077236607671, -0.0040460932068526745, 0.0018672730075195432, -0.011931251734495163, 0.042000576853752136, 0.006677159108221531, -0.005849046632647514, -0.0023818283807486296, -0.0022109798155725002, 0.004486279096454382, -0.0029988926835358143, 0.01828279346227646, -0.010974500328302383, -0.020839489996433258, 0.011633774265646935, -0.019504861906170845, -0.02264043316245079, 0.02326754853129387, -0.0008833869360387325, -0.0114006157964468, -0.014495988376438618, 0.001239153672941029, -0.0077143097296357155, -0.027689507231116295, 0.010057948529720306, 0.001293423236347735, 0.007605770602822304, -0.0007065085810609162, 0.021273646503686905, -0.01747880131006241, -6.425660103559494e-05, 0.029136694967746735, -0.0026049362495541573, 0.010218746960163116, 0.0059656258672475815, -0.0032642101868987083, -0.007131414953619242, 0.02715887315571308, -0.028847256675362587, -0.022865552455186844, -0.02040533348917961, 0.0005577699048444629, 0.011738292872905731, -0.010170507244765759, -0.012276967987418175, 0.009816750884056091, -0.019810380414128304, 0.0024099680595099926, -0.010813701897859573, 0.004960634745657444, 0.028541740030050278, -0.010451904498040676, -0.006850017700344324, 0.0260172039270401, 0.010693103075027466, 0.01148905511945486, -0.008731360547244549, 0.006725398823618889, 0.008232885040342808, 0.0014713065465912223, 0.005330471321940422, -0.0026270460803061724, 0.0024943873286247253, -0.0011979490518569946, 0.011633774265646935, 0.0178325567394495, 0.004048103000968695, 0.005455090198665857, 0.006042005028575659, -0.003915444482117891, -0.029184933751821518, -0.05396398901939392, -0.02164348214864731, -0.031532593071460724, -0.010894101113080978, 0.004960634745657444, -0.012461886741220951, 0.03708014264702797, -0.007304273545742035, -0.002221029717475176, -0.013555316254496574, -0.01374023500829935, -0.011464935727417469, 0.039427801966667175, 0.0004067700356245041, -0.0010482054203748703, -0.0025727765168994665, -0.002190880011767149, 0.00670127896592021, -0.001951692276634276, -0.01178653258830309, 0.014865824952721596, 0.008570562116801739, 0.023556984961032867, 0.014648746699094772, 0.0037827854976058006, -0.020678691565990448, -0.029426131397485733, -0.002695385366678238, -0.006504300981760025, 0.00750125152990222, -0.009286115877330303, -0.008474082686007023, 0.005909346044063568, -0.0007688180194236338, 0.022238437086343765, 0.0014200520236045122, -0.02053397335112095, -0.005382731091231108, 0.014833664521574974, -0.013965352438390255, -0.0074731120839715, -0.004823956172913313, -0.011440815404057503, -0.0019054627045989037, 0.0186365507543087, -0.0035154579672962427, 0.0008376598707400262, -0.020180216059088707, -0.008224844932556152, 0.010717222467064857, -0.004751596599817276, -0.041035786271095276, -0.00795148778706789, 0.007083175703883171, -0.009430834092199802, 0.01589493453502655, -0.002422027988359332, 0.0044219596311450005, 0.016280852258205414, 0.009487113915383816, 0.009913229383528233, -0.0075615509413182735, 0.007931387983262539, 0.0021145008504390717, -0.006809818092733622, -0.014978383667767048, 0.0022833391558378935, 0.009575553238391876, -0.01540450006723404, 0.012148329056799412, 0.013965352438390255, -0.006536460481584072, 0.018556151539087296, 0.008851959370076656, -0.002405948005616665, -0.02907237596809864, -0.013129200786352158, 0.01845967210829258, 0.0022089697886258364, -0.00972831156104803, 0.006456061266362667, 0.0001822802150854841, 0.026387039572000504, -0.0058369869366288185, -0.01516330149024725, -0.0014371369034051895, -0.03640478849411011, 0.0202445350587368, 0.01203577034175396, 0.01847575232386589, 0.007802749052643776, 0.003931524232029915, 0.004450099542737007, -0.017285842448472977, 0.019794300198554993, 0.0039596641436219215, 0.0004052625736221671, -0.014801505021750927, 0.007364572957158089, 0.00375062576495111, 0.0011386546539142728, -0.008164545521140099, 0.041003625839948654, 0.021707803010940552, 0.00305316224694252, -0.015082902275025845, -0.002241129521280527, -0.011456895619630814, 0.030953718349337578, 0.009519273415207863, 0.012863882817327976, -0.02764126844704151, 0.0006225918186828494, 0.02778598666191101, 0.00226725940592587, 0.013273919001221657, 0.017076805233955383, 0.005390770733356476, 0.009205715730786324, 0.01718936301767826, 0.006528420373797417, 0.00011890297901118174, -0.018893828615546227, 0.02006765641272068, 0.0012853832449764013, 0.004566678311675787, 0.006580680143088102, -0.009374554269015789, 0.011456895619630814, -0.013571396470069885, -0.012550326064229012, -0.00874744076281786, 0.010178547352552414, -0.013322158716619015, -0.010572503320872784, -0.007284173741936684, 0.0038149452302604914, -0.014085951261222363, 0.016296932473778725, -0.009189636446535587, 0.030294444411993027, -0.0007276133983395994, 0.022511795163154602, 0.01604769378900528, -0.009583592414855957, 0.01043582521378994, 0.011448855511844158, -0.01573413610458374, 0.009977549314498901, 0.019231505692005157, 0.005145553033798933, -0.007127394899725914, -0.0004502359079197049, 0.014544227160513401, 0.006387721747159958, -0.00040501132025383413, -0.012670924887061119, 0.013515116646885872, -0.006399781908839941, -0.009921269491314888, 0.011665933765470982, -0.023412266746163368, -0.02474689483642578, 0.0012552335392683744, -0.0061505441553890705, 0.0010080058127641678, 0.016449689865112305, 0.024988092482089996, -0.00971223134547472, 0.01316940039396286, 0.015267821028828621, -0.013298039324581623, -0.009519273415207863, 0.0014682916225865483, 0.00036229920806363225, 0.010299146175384521, 0.006154563743621111, -0.02632272057235241, 0.016417531296610832, 0.021868601441383362, -0.004546578507870436, 0.027255352586507797, -0.0025365969631820917, 0.0029747728258371353, -0.0013868873938918114, -0.03933132067322731, 0.00011394083412596956, -0.0012803582940250635, 0.004775716457515955, 0.003911424428224564, -0.00311145163141191, 0.01591101475059986, -0.00681785773485899, -0.00017738089081831276, 0.01164181437343359, -0.002793874591588974, -0.017864717170596123, 0.0017828537384048104, -0.0023054489865899086, -0.011730252765119076, -0.001821043435484171, 0.031886350363492966, 0.015661777928471565, 0.0036501267459243536, -0.0020662611350417137, -0.01404575165361166, 0.019617421552538872, -0.005165652837604284, 0.015589417889714241, -0.0011778492480516434, -0.011312177404761314, 0.019826458767056465, 0.003925494384020567, 0.012614645063877106, -0.008843919262290001, 0.012952322140336037, -0.007850988768041134, -0.01068506296724081, -0.0214826837182045, 0.0028943736106157303, 0.0012863882584497333, 0.01090214028954506, -0.01452010776847601, 0.007264073938131332, 0.011850852519273758, -0.03421792760491371, 0.016835607588291168, 0.02120932750403881, 0.028638219460844994, -0.0020441513042896986, 0.013145280070602894, -0.009993628598749638, -0.004030013456940651, -0.01419851090759039, 0.00875547993928194, -0.029763808473944664, 0.014922103844583035, -0.003248130436986685, -0.013667875900864601, -0.02905629575252533, -0.010090108029544353, -0.006363601889461279, 0.0032260206062346697, 0.005282232072204351, 0.02775382809340954, 0.011505135335028172, 0.020582212135195732, 0.024843374267220497, 0.02555088698863983, 0.0006959561724215746, -0.0006024920148774981, 0.005531469825655222, 0.003698366228491068, -0.010966460220515728, 0.0009220790816470981, 0.007211814168840647, -0.01365179568529129, -0.0022793193347752094, 0.012236768379807472, -0.0012029740028083324, -0.008228865452110767, -0.006616859696805477, -0.00875547993928194, -0.028525659814476967, 0.03051956184208393, -0.01735016144812107, 0.016803447157144547, -0.004703357350081205, -0.011521214619278908, -0.011481015011668205, 0.012437766417860985, -0.007485171779990196, -0.013515116646885872, 0.008988638408482075, -0.003425008850172162, 0.005668148398399353, 0.0009477063431404531, -0.006922376807779074, -0.010886061005294323, -0.014142231084406376, 0.009993628598749638, 0.006592739839106798, -0.007408792618662119, -0.011111178435385227, 0.01815415546298027, 0.029828127473592758, 0.028943736106157303, 0.007147494703531265, 0.006138483993709087, -0.007260053884238005, -0.014914063736796379, -0.009326315484941006, 0.013040761463344097, -0.025920724496245384, -0.010636823251843452, -0.008538402616977692, -0.00955143291503191, -0.024988092482089996, 0.03193458914756775, -0.006001805420964956, 0.007999727502465248, -0.0014602517476305366, 0.008538402616977692, 0.0010205681901425123, 0.00306723196990788, 0.014166351407766342, -0.00914139673113823, 0.03164515271782875, -0.008377603255212307, 0.02233491651713848, -0.010484064929187298, 0.0021185206715017557, 0.004140562377870083, 0.014431668445467949, 0.004369700327515602, -0.022222356870770454, -0.010146387852728367, -0.0019878719467669725, -0.009832830168306828, 0.004442059434950352, 0.010427785106003284, -0.0028541740030050278, -0.007678130175918341, 0.032513465732336044, 0.008650961332023144, 0.015034663490951061, 0.001237143762409687, -0.01702856458723545, 0.014463827945291996, 0.009197676554322243, -0.0021446505561470985, -0.0001623060234123841, 0.01638537086546421, -0.01412615180015564, -0.0016934096347540617, 0.0010884051444008946, -0.01974605955183506, -0.004413919989019632, -0.01635321043431759, -0.002822014270350337, -0.012413647025823593, 0.024762975051999092, 0.006729418877512217, 0.006411841604858637, -0.00638370169326663, 0.008164545521140099, -0.004028003197163343, -0.008490162901580334, 0.005008874461054802, -0.0024320778902620077, -0.00013806061178911477, -0.020919889211654663, -0.0020371165592223406, -0.0001192798517877236, -0.005792767275124788, -0.011706133373081684, 0.010331305675208569, 0.010894101113080978, -0.011304137296974659, -0.0043174405582249165, 0.009350434876978397, 0.009197676554322243, 0.010065988637506962, -0.006821877788752317, 0.013957313261926174, 0.013852793723344803, -0.011199617758393288, 0.02555088698863983, -0.0027335751801729202, 0.013868873938918114, 0.0029948726296424866, 0.001184884225949645, -0.009495153091847897, -0.006640979554504156, -0.008248965255916119, 0.010411704890429974, 0.013040761463344097, -6.538721936522052e-05, 0.016980325803160667, 0.021579163148999214, -0.009929309599101543, 0.0018029535422101617, 0.022511795163154602, -0.006243003066629171, -0.0041023725643754005, 0.006765598431229591, 0.019183265045285225, 0.005463130306452513, -0.00485611567273736, -0.006066124886274338, 0.008120326325297356, -8.441923273494467e-05, 0.028702538460493088, 0.0006567615200765431, -0.0024180079344660044, -0.0011899091769009829, 0.00874744076281786, -0.007079155649989843, -0.023331867530941963, -0.010636823251843452, -0.012775443494319916, -0.0016481849597766995, 0.018347112461924553, 0.004747576545923948, -0.004289301112294197, 0.010942339897155762, 0.007143475115299225, -0.003999863751232624, -0.021723881363868713, -0.01316940039396286, 0.0011386546539142728, 0.01276740338653326, 0.013362358324229717, -0.026049362495541573, 0.0032823001965880394, -0.0009105217177420855, -0.002060231287032366, 0.013000561855733395, -0.0011718192836269736, -0.014053791761398315, 0.008892158977687359, 0.007051015738397837, 0.016803447157144547, -0.00986499059945345, 0.005133493337780237, 0.008289164863526821, -0.014327149838209152, -0.02344442717730999, 0.006608819589018822, 0.01940838247537613, -0.01387691404670477, -0.001052225474268198, -0.00574452755972743, -0.002502427203580737, -0.006576660089194775, -0.0023637383710592985, -0.006962576415389776, -0.00742889242246747, -0.004647077526897192, -0.02246355451643467, -0.004892295226454735, 0.015058782882988453, 0.02087165042757988, -0.0030752720776945353, 0.02584032528102398, 0.020292775705456734, 0.003686306532472372, -0.004180761985480785, 0.046470776200294495, -0.010926260612905025, 0.00553950946778059, 0.023187149316072464, -0.00031506462255492806, 0.007139455061405897, -0.009808710776269436, -0.016980325803160667, 0.01299252174794674, 0.0076097906567156315, 0.022576114162802696, 0.001875312882475555, -0.02598504349589348, 0.0006673139287158847, 0.012309127487242222, -0.028059344738721848, 0.0300371665507555, 0.00649626087397337, -0.010057948529720306, -0.02473081462085247, -0.003694346407428384, 0.0005522424471564591, 0.0024903672747313976, -0.03839869052171707, -0.017398402094841003, 0.0036521367728710175, -0.029779888689517975, -0.027657348662614822, -0.013989472761750221, 0.005832966882735491, -0.0014994463417679071, -0.00036506293690763414, 0.015131141990423203, 0.015991413965821266, -0.01181065198034048, -0.01237344741821289, 0.010749381966888905, 0.008474082686007023, -0.0011577494442462921, 0.010202666744589806, -0.007075135596096516, 0.020099816843867302, 0.004341560415923595, 0.04081066697835922, -0.008425842970609665, -0.012502086348831654, -0.016152212396264076, -0.004823956172913313, -0.021900760009884834, -0.01606377400457859, -0.0076339105144143105, -0.018009435385465622, -0.01781647838652134, -0.00417272187769413, -0.026370959356427193, -0.0012100089807063341, 0.012092050164937973, -0.005997785367071629, 0.004168701823800802, 0.002297409111633897, 0.0013557326747104526, 0.004361660219728947, -0.004277240950614214, 0.008136405609548092, 0.008216804824769497, 0.056922681629657745, 0.007521351333707571, 0.021289726719260216, 0.015790415927767754, 0.0026471458841115236, -0.014455788768827915, -0.002444137819111347, 0.016964245587587357, -0.008329364471137524, 0.00818062573671341, 0.0029667329508811235, -0.020324934273958206, 0.012542285956442356, 0.018893828615546227, -0.010861940681934357, -0.0024863474536687136, -0.008707241155207157, -0.0037486159708350897, -0.003563697449862957, -0.004438039381057024, -0.0032802901696413755, 0.011915171518921852, 0.004514419008046389, -0.011143338866531849, 0.003222000552341342, -0.003684296505525708, 9.578819299349561e-05, -0.004054132848978043, 0.008140426129102707, 0.009374554269015789, 0.043898001313209534, -0.008064046502113342, -0.011030779220163822, 0.02072693035006523, 0.004594818223267794, 0.02182036079466343, -0.0037827854976058006, 0.016120053827762604, 0.0037305259611457586, -0.005760607309639454, -0.009004717692732811, -0.01331411860883236, -0.002554686740040779, 0.0005060128751210868, -0.01844359189271927, -0.01749488152563572, 0.0031275316141545773, 0.01685168594121933, -0.014640706591308117, 0.0018833528738468885, -0.0006648014532402158, -0.0029627131298184395, 0.0004992291796952486, 0.003684296505525708, 0.00946299359202385, -0.010098148137331009, 0.002880303654819727, -0.004864155780524015, -0.005161632783710957, -0.01260660495609045, -0.025792084634304047, -0.015476859174668789, 0.0026250360533595085, 0.010516224429011345, 0.01228500809520483, 0.021772122010588646, -0.002458207542076707, 0.006238983012735844, 0.004269201308488846, -0.012349327094852924, -0.0009331339970231056, -0.016128093004226685, 0.005491270218044519, -0.0024984071496874094, -0.002377808326855302, -0.03482896462082863, -0.017076805233955383, -0.01881342940032482, -0.015484899282455444, -0.012678964994847775, -0.020099816843867302, -0.030181884765625, -0.005869146436452866, 0.0006406816537491977, -0.034764643758535385, -0.007513311691582203, -0.004030013456940651, -0.007802749052643776, -3.3879184684337815e-06, 0.004960634745657444, -0.011617694050073624, 0.005125453229993582, 0.015967294573783875, 0.01640145108103752, 0.006661079358309507, -0.016642648726701736, -0.01653008908033371, 0.0017758188769221306, 0.005250072106719017, 0.013354318216443062, 0.014383428730070591, 0.0025647366419434547, 0.006942476611584425, -0.01929582469165325, 0.0007602755795232952, -0.00827308464795351, -0.0029426130931824446, 0.005278212018311024, 0.0010994599433615804, 0.0041084024123847485, 0.0016321050934493542, 0.003509428119286895, -0.015629617497324944, -0.004671197384595871, 0.01237344741821289, -0.0032943598926067352, 0.011472975835204124, 0.006938457023352385, 0.009036878123879433, 0.02373386360704899, -0.008003747090697289, -0.010371505282819271, 0.027239272370934486, 0.015766296535730362, 0.019054627045989037, 0.003963683731853962, -0.0038310252130031586, 0.0018109935335814953, -0.0041285022161901, 0.0031697412487119436, 0.011883012019097805, -0.014777385629713535, 0.0011406645644456148, 0.01913502626121044, -0.006243003066629171, 0.0009627812542021275, 0.036372628062963486, -0.010427785106003284, 0.010178547352552414, -0.0018702879315242171, -0.0061505441553890705, 0.019183265045285225, 0.003033062443137169, -0.01604769378900528, 0.0009044917533174157, 0.008731360547244549, -0.017414482310414314, 0.015999455004930496, 0.02649959921836853, 0.02646743878722191, 0.005792767275124788, 0.01237344741821289, -0.018540071323513985, 0.02294595167040825, 0.0005783722153864801, -0.008835879154503345, 0.018105914816260338, 0.026274479925632477, -0.023637384176254272, -0.007034935988485813, 0.0030411023180931807, 0.0066490196622908115, 0.005816887132823467, 0.013708075508475304, 0.012477966025471687, -0.004647077526897192, -0.008675080724060535, 0.01879734918475151, 0.013265878893435001, 0.007991687394678593, 0.006363601889461279, -0.0035717375576496124, -0.007368593011051416, 0.0019597322680056095, 0.008530362509191036, 0.018218474462628365, 0.0016823547193780541, 0.006375662051141262, 0.0002072793577099219, -0.008779600262641907, 0.009052957408130169, 0.023203229531645775, 0.006572640035301447, -0.01164181437343359, -0.017880797386169434, 0.009591632522642612, -0.0020984208676964045, 0.0015708006685599685, -0.015621577389538288, 0.020823409780859947, 0.01669088751077652, 0.014705026522278786, -0.00232554879039526, -0.005145553033798933, -0.009913229383528233, 0.006974636577069759, -0.01107901893556118, -0.021161086857318878, -0.02087165042757988, -0.00574452755972743, 0.005925426259636879, 0.016136132180690765, 0.0017918986268341541, 0.017414482310414314], "27e555a1-e899-4710-b03c-4fb670054999": [-0.008864248171448708, 0.016433948650956154, 0.0006387573084793985, 0.012182379141449928, 0.01785113662481308, -0.012543490156531334, 0.023506268858909607, 0.01602514274418354, -0.018219061195850372, -0.009470641613006592, 0.0073652975261211395, 0.016979020088911057, 0.014716967940330505, 0.009559215977787971, 0.01699264720082283, 0.019309207797050476, -0.025209620594978333, -0.0003998620668426156, 0.025686560198664665, 0.006632855627685785, 0.03491191938519478, 0.0035497872158885, -0.056306030601263046, 0.025999976322054863, 0.027253644540905952, 0.015834366902709007, 0.013204391114413738, 0.018586985766887665, -0.016120530664920807, -0.008496323600411415, 0.031096408143639565, 0.014158268459141254, 0.009450200945138931, 0.023151971399784088, 0.015779860317707062, -0.033004164695739746, 0.011855335906147957, -0.006401199847459793, -0.006898578722029924, 0.010042968206107616, -0.00026082590920850635, -0.012189192697405815, 0.01978614553809166, -0.016801871359348297, -0.04060792922973633, -0.0015892281662672758, -0.012230073101818562, 0.010744749568402767, -0.050419241189956665, -0.03504818677902222, 0.007917183451354504, -0.021884676069021225, 0.008591711521148682, 0.03504818677902222, 0.029461190104484558, -0.03594755753874779, -0.025386769324541092, 0.012959107756614685, -0.001458070008084178, -0.04491400718688965, 0.01936371438205242, -0.015003131702542305, -0.007678714580833912, -0.013994746841490269, 0.026395155116915703, -0.013803971000015736, -0.009634163230657578, 0.00017299676255788654, -0.0551341250538826, -0.0037644098047167063, 0.012277767062187195, 0.03763728216290474, -0.024064969271421432, 0.03889095038175583, 0.013197577558457851, -0.018259942531585693, 0.044505201280117035, 0.03205028548836708, 0.005535896401852369, -0.004980603698641062, 0.011378396302461624, -0.014049254357814789, 0.056088000535964966, -0.01939096860587597, 0.06083013489842415, 0.022198094055056572, 0.009245798923075199, -0.034857410937547684, -0.0032755474094301462, -0.04742134362459183, -0.005236106459051371, 0.015752606093883514, -0.006207017693668604, 0.014267283491790295, -0.011010472662746906, 0.03303141891956329, 0.016979020088911057, 0.008469070307910442, -0.005767552647739649, -0.01369495689868927, -0.03093288652598858, 0.009402507916092873, -0.0038427638355642557, 0.04115300253033638, 0.02050836756825447, -0.028616327792406082, 0.008441816084086895, -0.00440146354958415, -0.022675031796097755, 0.015057639218866825, -0.013906172476708889, -0.025400396436452866, -0.028044000267982483, 0.04496851563453674, -0.07789091765880585, -0.026040857657790184, -0.03259535878896713, -0.027730584144592285, 0.0018787981243804097, -0.01460795383900404, 0.010928711853921413, -0.009995274245738983, 0.004779607988893986, -0.021121574565768242, -0.04646746441721916, 0.024896204471588135, -0.00229441630654037, 0.009845378808677197, 0.010499467141926289, -0.007937624119222164, 0.00021291909797582775, 0.008823367767035961, 0.0086598452180624, -0.0238741934299469, 0.0006936904392205179, -0.003486763220280409, 0.013415606692433357, 0.014962251298129559, -0.02262052521109581, 0.027090122923254967, -0.08355967700481415, 0.0016718407860025764, -0.020303964614868164, -0.00541325518861413, 0.018382582813501358, -0.024828070774674416, -0.00017693577683530748, 0.03341296687722206, -0.005706232041120529, 0.016393067315220833, -0.05968548357486725, -0.05935844033956528, -0.03185950964689255, -0.012434475123882294, 0.06453663110733032, -0.004752354230731726, -0.038482148200273514, 0.013122630305588245, 0.03169598802924156, 0.06453663110733032, 0.0007809872622601688, -0.026013603433966637, -0.013429233804345131, 0.038373131304979324, 0.03889095038175583, 0.015262041240930557, -0.0009930547093972564, 0.02451465278863907, -0.023165598511695862, 0.022129960358142853, 0.039953842759132385, -0.04695802927017212, 0.043687593191862106, 0.016079651191830635, -0.034148816019296646, -0.013061309233307838, -0.0026231633964926004, 0.06164774298667908, 0.025618426501750946, -0.021107947453856468, -0.009375253692269325, 0.022457003593444824, 0.00716089503839612, 0.026899347081780434, 0.0012093804543837905, 0.01528929453343153, 0.021026186645030975, -0.007017813622951508, 0.015711726620793343, 0.0008555089589208364, -0.010370011441409588, 0.024460146203637123, -0.0026810772251337767, 0.04592239111661911, -0.0033266479149460793, -0.019867906346917152, 0.0037133090663701296, -0.010622108355164528, -0.04908381402492523, 0.01839620992541313, 0.018259942531585693, -0.03829137235879898, 0.004479818046092987, 0.040362648665905, -0.04172533005475998, 0.010996845550835133, -0.015602711588144302, 0.0028684460557997227, 0.030278800055384636, -0.011535105295479298, 0.032241061329841614, -0.031559720635414124, 0.007106387987732887, -0.018477970734238625, -0.03180500492453575, -0.0021121574100106955, 0.009749991819262505, 0.01982702687382698, 0.022933941334486008, -0.03420332446694374, 0.013490553945302963, 0.018914029002189636, 0.010104289278388023, -0.0009998681489378214, -0.04505027458071709, 0.0033573084510862827, -0.011589612811803818, 0.011610052548348904, -0.03720122575759888, 0.018668746575713158, 0.03316768631339073, -0.0003817639371845871, -0.033685505390167236, -0.0295702051371336, 0.012979548424482346, 0.048157189041376114, 0.04573161527514458, -0.009811311960220337, -0.03420332446694374, -0.006922425702214241, 0.014458058401942253, 0.02495071105659008, 0.007951251231133938, -0.017755750566720963, 0.025291383266448975, 0.020303964614868164, -0.008932381868362427, 0.04793916270136833, 0.027158256620168686, -0.008898315019905567, -0.0443689338862896, 0.022457003593444824, -0.006547688040882349, -0.020808158442378044, -0.048456981778144836, 0.013020428828895092, 0.016829125583171844, -0.016733737662434578, -0.011575985699892044, -0.024937085807323456, 0.0352117083966732, 0.04464146867394447, 0.010431332513689995, 0.005648317746818066, 0.012230073101818562, -0.018150927498936653, 0.053471650928258896, -0.0448867529630661, 0.022538764402270317, 0.010444959625601768, 0.009525149129331112, 0.015248414129018784, 0.007876303046941757, 0.01627042517066002, 0.0025669527240097523, -0.009790872223675251, 0.0364108681678772, -0.0258773360401392, 0.01516665332019329, 0.01077200286090374, -0.06093915179371834, -0.017251556739211082, -0.004980603698641062, 0.0043844301253557205, 0.018409837037324905, -0.024541907012462616, -0.03924524784088135, -0.023070210590958595, -0.03646537661552429, -0.028943371027708054, -0.0022347988560795784, 0.011930283159017563, 0.018450718373060226, -0.008775673806667328, -0.01534380204975605, 0.024105848744511604, -0.028698088601231575, 0.00226716254837811, -0.003907491452991962, 0.04867500811815262, -0.01511214580386877, -0.018300822004675865, -0.027185510843992233, -0.004023319110274315, 0.039735812693834305, -0.009082277305424213, 0.014934997074306011, -0.008598525077104568, 0.00028978288173675537, 0.0252777561545372, 0.022388869896531105, -0.026981107890605927, -0.024064969271421432, 0.00803301203995943, 0.012686572037637234, 0.013109003193676472, -0.027580687776207924, -0.007378924172371626, -0.029488444328308105, -0.007603766862303019, -0.004943130072206259, 0.009552402421832085, -0.053144607692956924, -0.00177489360794425, 0.01068342849612236, -0.035293471068143845, -0.01229820679873228, -0.024105848744511604, -0.0057539260014891624, -0.02075364999473095, -0.06742551922798157, 0.002035506535321474, -0.021816542372107506, 0.013912986032664776, -0.050746288150548935, -0.01557545829564333, 0.006898578722029924, -0.03390353545546532, -0.0042481618002057076, -0.02674945257604122, -0.004139147233217955, -0.027989493682980537, -0.011173994280397892, 0.0017433816101402044, 0.021925557404756546, 0.009436574764549732, -0.009920326992869377, 0.007603766862303019, -0.04605865851044655, 0.021843796595931053, 0.0009956096764653921, 0.012223259545862675, 0.025577545166015625, 0.0181781817227602, 0.008469070307910442, -0.026626810431480408, -0.004885215777903795, 0.010887831449508667, 0.007610580418258905, -0.027430793270468712, -0.022933941334486008, -0.024105848744511604, -0.01896853744983673, -0.012318647466599941, -0.033004164695739746, -0.017510466277599335, 0.03673791512846947, 0.0023949139285832644, -0.01771486923098564, -0.0352117083966732, -0.02093079872429371, -0.0037916633300483227, -0.01767398789525032, 0.015561831183731556, 0.0012391891796141863, -0.0072630965150892735, 0.020985307171940804, -0.007903557270765305, -0.03804608806967735, 0.009552402421832085, 0.010165609419345856, -0.009784058667719364, 0.00817609392106533, 0.035402484238147736, 0.0015747497091069818, 0.0014759552432224154, -0.003232963616028428, 0.00915722455829382, -0.006387573201209307, -0.004762574564665556, -0.04248843342065811, 0.011896216310560703, 0.012979548424482346, -0.03638361766934395, 0.00366561533883214, -0.02211633324623108, 3.75802228518296e-05, -0.019377341493964195, 0.02807125449180603, -0.011950722895562649, 0.015384682454168797, 0.01996329426765442, -0.040853213518857956, -0.00045138850691728294, 0.03046957589685917, -0.027907732874155045, -0.022606898099184036, -0.014989504590630531, 0.02204819954931736, -0.005808433052152395, 0.0066430759616196156, 0.014934997074306011, -0.037691790610551834, 0.030197039246559143, 0.025972723960876465, 0.029297668486833572, -0.03387628123164177, 0.06900622695684433, -0.02545490488409996, 0.001659917295910418, 0.03818235546350479, 0.04071694612503052, 0.013769904151558876, 0.003859797492623329, 0.0369286872446537, 0.03581129014492035, -0.022238973528146744, 0.014730595052242279, 0.006333065684884787, -0.015330174937844276, 0.008673472329974174, 0.04951987415552139, -0.01105816662311554, 0.00544050894677639, 0.010390452109277248, -0.023737924173474312, -0.005161159206181765, 0.012420848943293095, 0.019118431955575943, -0.010669802315533161, -0.03572952747344971, 0.007324417121708393, -0.0075015658512711525, 0.022388869896531105, -0.031832255423069, -0.024173982441425323, -0.030524082481861115, 0.011732693761587143, -0.02290668897330761, 0.011330703273415565, 0.013906172476708889, -0.008687099441885948, -0.061211686581373215, -0.0167746189981699, 0.014716967940330505, -0.022075451910495758, 0.01584799401462078, 0.009020956233143806, 0.010451773181557655, -0.06862467527389526, -0.03681967407464981, -0.023397253826260567, 0.03374001383781433, 0.01949998363852501, 0.04000835120677948, -0.01351780816912651, -0.02541402354836464, -0.01381759811192751, 0.026681318879127502, 0.03474839776754379, -0.006731650326400995, -0.009518335573375225, 0.01846434362232685, 0.00180385063868016, 0.02172115445137024, -0.007699154783040285, -0.02268865890800953, 0.024569161236286163, 0.004575205501168966, -0.011051353067159653, 0.012543490156531334, -0.015589084476232529, 0.0018276975024491549, 0.009709111414849758, -0.005287207197397947, -0.024528279900550842, -0.00803301203995943, -0.008169280365109444, 0.004602459259331226, 0.001392490928992629, -0.01387210562825203, -0.0040096924640238285, 0.030415067449212074, 0.012700198218226433, 0.02272954024374485, -0.0031358725391328335, -0.021843796595931053, -0.013803971000015736, 0.02365616336464882, -0.05333538353443146, -0.004026725888252258, -0.016829125583171844, -0.018164554610848427, -0.03436684608459473, 0.008053451776504517, 0.015084892511367798, -0.025659305974841118, 0.009974833577871323, -0.026613183319568634, -0.024432891979813576, -0.030306052416563034, 0.022089079022407532, -0.030605843290686607, 0.01252986304461956, 0.031886763870716095, -0.0007916332106105983, 0.000953025883063674, 0.001443591550923884, 0.019350087270140648, 0.0038359505124390125, 0.006857698317617178, 0.0045581720769405365, -0.0357840359210968, -0.01534380204975605, -0.010131542570888996, -0.02022220380604267, -0.01102409977465868, -0.03627460077404976, -0.013054495677351952, -0.05036473646759987, -0.008251041173934937, 0.0221844669431448, -0.005058957729488611, -0.03341296687722206, -0.014526193030178547, -0.02574106678366661, 0.011575985699892044, 0.040853213518857956, 0.02151675336062908, -0.012536676600575447, -0.0761466845870018, 0.051999952644109726, -0.022361615672707558, -0.019881533458828926, 0.016801871359348297, 0.009790872223675251, -0.011548732407391071, -0.0066805495880544186, -0.0040471660904586315, 0.010077035054564476, -0.011998416855931282, 0.00982493907213211, -0.0016863192431628704, -0.005477982573211193, -0.013769904151558876, -0.031178168952465057, 0.028234776109457016, 0.018518852069973946, -0.005648317746818066, -0.022893061861395836, 0.006390979513525963, 0.008639405481517315, 0.002989384112879634, 0.004779607988893986, 0.0060571227222681046, 0.0038189170882105827, -0.026763079687952995, 0.0018958316650241613, 0.01552095077931881, 0.04652197286486626, 0.0011455047642812133, -0.020658262073993683, 0.03897271305322647, 0.020549248903989792, 0.007358483970165253, 0.016406694427132607, 0.0015773046761751175, 0.01914568617939949, -0.028807101771235466, -0.015616338700056076, 0.00912315770983696, 0.009218545630574226, -0.010226930491626263, -0.019854281097650528, 0.008019384928047657, 0.006506807636469603, -0.022920316085219383, -0.0032874708995223045, 0.0008014275226742029, 0.004002878908067942, -0.008448629640042782, 0.0363563634455204, -0.054043978452682495, -0.001198308658786118, -0.01813730038702488, 0.04720331355929375, -0.014853236265480518, 0.016365813091397285, 0.0196089968085289, 0.018914029002189636, -0.005239513237029314, 0.02416035532951355, 0.030960140749812126, 0.00989307276904583, -0.010267810896039009, 0.037555523216724396, -0.005641504656523466, -0.014894116669893265, 0.010131542570888996, 0.00795806385576725, -0.027131004258990288, -0.026122618466615677, 0.004663779865950346, -0.020740022882819176, 0.00917766522616148, -0.00996802095323801, 0.0011489114258438349, -0.02308383770287037, 0.0043469564989209175, 0.004612679593265057, 0.015425562858581543, -0.02323373220860958, 0.05772322043776512, -0.016284052282571793, 0.001718682935461402, -0.010990031994879246, 0.012468542903661728, -0.023029329255223274, 0.005954921245574951, 0.00025507708778604865, -0.03104190155863762, -0.014403550885617733, -0.0003219336795154959, 0.0015432375948876143, 0.026899347081780434, -0.011807641945779324, -0.012175565585494041, 0.03196852654218674, 0.010622108355164528, -0.019581744447350502, -0.011337515898048878, -0.014730595052242279, 0.0017433816101402044, 0.0517546720802784, -0.005549523513764143, 0.02029033936560154, -0.019636251032352448, 0.028262030333280563, 0.0269947350025177, 0.0088029270991683, 0.014621580019593239, -0.002200731774792075, -0.0008729682886041701, 0.037473760545253754, 0.00465015321969986, -0.005375781562179327, -0.009116344153881073, -0.0068883588537573814, 0.013824411667883396, -0.004254975356161594, 0.012407221831381321, -0.00017768099496606737, 0.005515456199645996, 0.0007613986963406205, 0.0011710550170391798, 0.014199148863554, 0.02108069509267807, -0.014308163896203041, 0.02965196594595909, 0.02011319063603878, 0.012836466543376446, -0.037909820675849915, 0.014294536784291267, -0.010635734535753727, -0.021857423707842827, 0.0088029270991683, -0.002967240521684289, -0.007583326660096645, 0.007051880471408367, -0.03572952747344971, 0.004575205501168966, -0.014185521751642227, -0.015016757883131504, 0.028725340962409973, -0.01956811733543873, -0.005058957729488611, -0.014158268459141254, -0.00824422761797905, 0.0031920832116156816, -0.0020048462320119143, -0.008114772848784924, -0.006428453605622053, -0.004452564287930727, -0.0126388780772686, -0.011064980179071426, -0.005815246608108282, 0.003016637871041894, -0.011010472662746906, -0.014171895571053028, -0.008939195424318314, -0.03057858906686306, -0.03613833338022232, -0.013681329786777496, -0.015902502462267876, 0.0035906676203012466, 0.004074419848620892, -0.012679758481681347, -0.03390353545546532, -0.012625250965356827, 0.014635207131505013, -0.0009606909588910639, 0.02061738260090351, 0.016965394839644432, -0.027131004258990288, 0.008673472329974174, 0.04564985632896423, -0.013933425769209862, 0.030742110684514046, -0.0014529599575325847, -0.003168236231431365, 0.01627042517066002, 0.004786421544849873, 0.0015347208827733994, -0.0144853126257658, 0.01528929453343153, 0.008148839697241783, -0.007542446255683899, -0.004599052481353283, 0.014049254357814789, -1.7898511941893958e-05, -0.0052088527008891106, -0.013340659439563751, 0.013211204670369625, 0.011010472662746906, -0.013115816749632359, -0.01727881096303463, -0.03592030331492424, 0.022893061861395836, 0.01925469934940338, -0.013538247905671597, -0.020412979647517204, -0.0045206984505057335, 0.018546104431152344, -0.01443080510944128, -0.054561797529459, 0.01842346414923668, 0.026626810431480408, 0.029624711722135544, -0.02222534827888012, -0.01652933470904827, 0.017224304378032684, -0.03436684608459473, 0.034039802849292755, 0.004425310529768467, -0.02336999960243702, 0.013177136890590191, 0.02240249700844288, 0.005535896401852369, -0.020372100174427032, 0.04543182626366615, -0.01598426327109337, 0.03504818677902222, 0.0013584238477051258, -0.012802399694919586, 0.009061836637556553, 0.004353769589215517, 0.022933941334486008, 0.026286140084266663, 0.029379429295659065, -0.012141498737037182, 0.049846917390823364, 0.021530378609895706, -0.0013797157444059849, 0.02215721271932125, -0.00035855575697496533, 0.004398056771606207, -0.0014699934981763363, -0.0034697295632213354, -0.012911414727568626, -0.004513884894549847, -0.04396012797951698, -0.012747892178595066, 0.007678714580833912, 0.002989384112879634, -0.010928711853921413, -0.06415507942438126, 0.0346393808722496, 0.009232171811163425, -0.02763519622385502, -0.01005659531801939, 0.04510478302836418, -0.0011438013752922416, -0.004479818046092987, 0.015534577891230583, 0.019118431955575943, -0.018614239990711212, -0.0005297427414916456, 0.01971801184117794, 0.0016973910387605429, 0.01595700904726982, 0.0019690757617354393, -0.021952811628580093, 0.01802828535437584, 0.027934985235333443, 0.04158906266093254, -0.019595371559262276, -0.03496642783284187, -0.009818125516176224, -0.026858467608690262, 0.00043605832615867257, 0.008319174870848656, -0.02602723054587841, 0.004013099242001772, 0.011289821937680244, -0.031777750700712204, -0.024255743250250816, 0.005903820972889662, -0.008625778369605541, 0.00441849697381258, 0.012822840362787247, -0.008414562791585922, -0.009940766729414463, 0.02172115445137024, 0.012216445989906788, 0.005730079021304846, 0.008673472329974174, 0.016651976853609085, 0.02609536424279213, 0.0007733221864327788, -0.0036281414795666933, -0.014512565918266773, -0.03044232167303562, -0.007699154783040285, 0.02624526061117649, -0.003914304543286562, 0.006053715944290161, -0.005433695390820503, 0.005433695390820503, -0.014880490489304066, 0.018900401890277863, -0.022988449782133102, -0.0162022914737463, -0.03218655288219452, 0.01771486923098564, 0.010751563124358654, -0.009511522017419338, 0.02796223945915699, 0.0020440234802663326, 0.0221844669431448, 0.041888851672410965, 0.018832268193364143, -0.003050704952329397, 0.009790872223675251, 0.005358748137950897, 0.012332274578511715, 0.027812344953417778, -0.004929502960294485, 0.009668230079114437, -0.01881864108145237, -0.01437629759311676, 0.015262041240930557, 0.05567919835448265, -0.0329769104719162, 0.00225012912414968, -0.01184852235019207, -0.012175565585494041, 0.021530378609895706, -0.011126300320029259, 0.015098519623279572, -0.011446530930697918, -0.006772530730813742, 0.009368440136313438, 0.03213204815983772, -0.011984790675342083, 0.009620537050068378, -0.007849049754440784, -0.0008755233138799667, -0.023288238793611526, -0.009341186843812466, 0.013299779035151005, 0.02732177823781967, 0.006898578722029924, -0.004340142942965031, 0.013483740389347076, -0.022525137290358543, -0.010117915458977222, 1.8257813280797563e-05, 0.012407221831381321, -0.014294536784291267, 0.006254711654037237, 0.01587524823844433, -0.023996833711862564, 0.030742110684514046, -0.010887831449508667, -0.015861621126532555, 0.003798476653173566, 0.016733737662434578, -0.017755750566720963, 0.012018857523798943, -0.005672164727002382, 0.006074156146496534, -0.028589073568582535, -0.031096408143639565, -0.041997868567705154, 0.037691790610551834, -0.025441277772188187, 0.0018276975024491549, 0.01437629759311676, -0.022211721166968346, -0.0015108739025890827, -0.016611097380518913, -0.0019333054078742862, 0.012230073101818562, -0.017292438074946404, 0.04227040335536003, 0.021353229880332947, 0.024610040709376335, 0.005801619496196508, -0.0015917832497507334, 0.0010007197270169854, -0.023274613544344902, 0.02989724837243557, -0.007440245244652033, 0.01111267413944006, -0.0031001020688563585, -0.027621569111943245, -0.015779860317707062, -0.005072584841400385, 0.00444575073197484, 0.01086057722568512, -0.021421365439891815, -0.02198006398975849, 0.020263085141777992, 0.008094332180917263, 0.020998934283852577, -0.018559731543064117, -0.009511522017419338, 0.0021768847946077585, -0.04635845124721527, 0.0038563907146453857, 0.010274624451994896, -0.01721067726612091, 0.028725340962409973, -0.014022000133991241, -0.01256392989307642, -0.04668549448251724, 0.01120124850422144, 0.030197039246559143, -0.004612679593265057, 0.011364770121872425, -0.002301229629665613, 0.010226930491626263, -0.00741980504244566, -0.02237524278461933, 0.01846434362232685, 0.01914568617939949, -0.0011931986082345247, -0.034939173609018326, 0.03512994945049286, 0.006554501596838236, -0.010308691300451756, -0.011078606359660625, -0.01193709671497345, 0.012407221831381321, -0.02024945802986622, -0.0011506148148328066, 0.02279767394065857, -0.0014895820058882236, -0.024678176268935204, -0.025904590263962746, -0.003052408341318369, -0.00623767776414752, -0.005099838133901358, -0.0006860253633931279, 0.026858467608690262, -0.020808158442378044, 0.004742134362459183, 0.001957152271643281, -0.023601656779646873, -0.025999976322054863, 0.02752618119120598, -0.03567502275109291, 0.005971955135464668, -0.005283800419420004, 0.00783542264252901, -0.041561808437108994, -0.002802015282213688, 0.014567073434591293, -0.0483207106590271, 0.0019809992518275976, -0.008230600506067276, -0.008741606958210468, -0.006476147565990686, -0.004268602002412081, 0.013177136890590191, 0.0073380437679588795, -0.009334373287856579, -0.02362891100347042, -0.006663516163825989, -0.037446506321430206, 0.02198006398975849, -0.007487938739359379, -0.017619481310248375, 0.019745266065001488, 0.04981966316699982, 0.030987394973635674, 0.009954393841326237, -0.030605843290686607, -0.009688670746982098, 0.013436047360301018, -0.037773553282022476, -0.008196533657610416, 0.0006753794150426984, 0.0035531939938664436, -0.006179763935506344, -0.00032448870479129255, -0.019472729414701462, -0.027158256620168686, 0.01870962791144848, 0.005982175003737211, -0.0030711451545357704, 0.011194434948265553, -0.0517546720802784, 0.01721067726612091, -0.007324417121708393, 0.005123685114085674, -0.014894116669893265, -0.0058186533860862255, 0.0062683383002877235, 0.017728496342897415, -0.012979548424482346, -0.014975877478718758, 0.008687099441885948, -0.01627042517066002, -0.019949667155742645, -0.013415606692433357, -0.014444432221353054, -0.07260370999574661, -0.027471674606204033, 0.00020791549468412995, 0.00638075964525342, 0.011868962086737156, -0.013878918252885342, 0.004207281395792961, 0.0003564265789464116, 0.002858225954696536, 0.014730595052242279, 0.004258382134139538, -0.009436574764549732, 0.018505224958062172, 0.0016377737047150731, -0.017510466277599335, 0.009457014501094818, -0.0072630965150892735, -0.009293492883443832, 0.006476147565990686, 0.00733123067766428, -0.016624722629785538, 0.017156168818473816, 0.03308592364192009, 0.0018089606892317533, -0.007590140216052532, 0.013415606692433357, -0.026218006387352943, -0.0016071134014055133, -0.003089881967753172, -0.018886776641011238, -0.004626306239515543, -0.002776465145871043, 0.0001836427254602313, -0.03589304909110069, 0.016433948650956154, -0.0026401968207210302, -0.01892765611410141, 0.0034390692599117756, -0.003260217374190688, -0.0026214600075036287, -0.0017800036584958434, -0.011105860583484173, -0.024392012506723404, -0.011364770121872425, 0.016679231077432632, -0.0032057100906968117, 0.0012110838433727622, -0.023397253826260567, -0.01584799401462078, 0.027471674606204033, 0.008727979846298695, 0.0013550171861425042, -0.022279854863882065, -0.0162022914737463, -0.017401453107595444, 0.019731638953089714, -0.0007788580842316151, -0.018491597846150398, 0.012434475123882294, 0.0011914953356608748, 0.036083824932575226, -0.000916403834708035, 0.018914029002189636, 0.010274624451994896, -0.02266140654683113, -0.015098519623279572, 0.034148816019296646, 0.017442332580685616, 0.05935844033956528, -0.025400396436452866, 0.008005757816135883, -0.0033879687543958426, -0.013715396635234356, 0.02391507290303707, 0.02402408793568611, 0.039381515234708786, 0.019731638953089714, 0.03379451856017113, 0.03303141891956329, 0.016788246110081673, -0.027444420382380486, 0.008482697419822216, -0.009225359186530113, 0.0042209080420434475, 0.01569809950888157, 0.000526761868968606, 0.02334274724125862, -0.008039825595915318, 0.02093079872429371, 0.012543490156531334, 0.006942865904420614, -0.01355187501758337, 0.031995780766010284, 0.00982493907213211, -0.006023055408149958, 0.030306052416563034, -0.004367396701127291, -0.003910898230969906, -0.018832268193364143, -0.005300833843648434, -0.004415090661495924, -0.0075015658512711525, 0.0029127332381904125, -0.004241348709911108, -0.005934481043368578, -0.000895111879799515, -0.014062880538403988, 0.003979031927883625, 0.013170324265956879, -0.016297679394483566, 0.017987405881285667, -0.00023293349659070373, -0.018273569643497467, 0.022961195558309555, 0.0010092365555465221, 0.011732693761587143, -0.020889919251203537, 0.01007022149860859, 0.004929502960294485, 0.011167180724442005, -0.01088101789355278, 0.018055539578199387, 0.02688571996986866, -0.021802915260195732, 0.013735837303102016, 0.0064046066254377365, -0.00017800036584958434, 0.012250513769686222, -0.00362473470158875, 0.021298723295331, 0.006666922941803932, 0.006792970933020115, 0.011930283159017563, 0.005188412498682737, -0.0090890908613801, 0.012277767062187195, 0.032322824001312256, 0.0064693340100348, 0.01539830956608057, -0.03079661913216114, 0.016788246110081673, -0.003951778635382652, 0.008325988426804543, -0.0036928688641637564, -0.008762046694755554, 0.019731638953089714, -0.0018685780232772231, 0.008939195424318314, -0.00440146354958415, -0.004857962019741535, -0.012216445989906788, -0.008285108022391796, 0.02068551629781723, 0.018559731543064117, -0.003774629905819893, -0.005334901157766581, -0.0038495773915201426, 0.007004186511039734, -0.015098519623279572, -0.021094320341944695, 0.010363198816776276, 0.001487027038820088, 0.011432903818786144, 0.025195995345711708, 0.029733726754784584, -0.006564721930772066, 0.014866863377392292, -0.006312625482678413, 0.004636526107788086, 0.003975625615566969, 0.010465399362146854, -0.0073652975261211395, -0.018341703340411186, -0.03444860875606537, 0.0007401067996397614, -0.0247054286301136, -0.017019901424646378, 0.016760991886258125, 0.01161686610430479, -0.017360571771860123, -0.03104190155863762, 0.0030915853567421436, 0.0012374857906252146, 0.02255239151418209, 0.0047693876549601555, -0.004408277105540037, -0.0295702051371336, 0.012645691633224487, -0.005229292903095484, 0.006234271451830864, 0.02334274724125862, 0.043360549956560135, 0.017687615007162094, 0.0010927008697763085, 0.00833280198276043, 0.0009606909588910639, 0.047339580953121185, 0.01771486923098564, -0.038482148200273514, -0.012332274578511715, -0.012066551484167576, -0.032677121460437775, 0.026585930958390236, 0.014417177997529507, -0.01828719489276409, 0.0252777561545372, -0.011323889717459679, 0.008203347213566303, 0.020154070109128952, -0.0012536676367744803, 0.00901414267718792, -0.008489510044455528, 0.03774629905819893, -0.022279854863882065, -0.002100233919918537, -0.019023044034838676, 0.0014768069377169013, -0.011698626913130283, -0.01376309059560299, -0.019513608887791634, 0.01778300292789936, 0.005075991153717041, -0.012114245444536209, 0.009838566184043884, 0.026803959161043167, 0.02541402354836464, 0.0196089968085289, -0.04118025675415993, -0.016215918585658073, -0.02204819954931736, 0.006009428761899471, 0.013061309233307838, 0.010063407942652702, -0.0352662168443203, -0.0009411024511791766, 0.003723529167473316, 0.030851125717163086, -0.03330395370721817, 0.02272954024374485, 0.029052386060357094, -0.01800103299319744, -0.023996833711862564, -0.007985318079590797, 0.011357956565916538, 0.00813521258533001, 0.022920316085219383, -0.04796641319990158, -0.007562886457890272, 0.03202303126454353, 0.0013405386125668883, 0.011943910270929337, 0.009470641613006592, -0.011337515898048878, 0.02391507290303707, -0.0016462905332446098, -0.005007857456803322, 0.016038769856095314, -3.467920032562688e-05, -0.012829652987420559, 0.012264139950275421, -0.04537731781601906, 0.029461190104484558, 0.01670648343861103, 0.019581744447350502, 0.003703088965266943, -0.005086211487650871, -0.004691033624112606, 0.013776717707514763, 0.020344845950603485, -0.006288778502494097, -0.0021547412034124136, 0.007964877411723137, -0.01351780816912651, -0.004449157509952784, -0.011364770121872425, -0.009395694360136986, 0.0066805495880544186, -0.009450200945138931, 0.009722737595438957, 0.015752606093883514, -0.02275679260492325, 0.023642536252737045, -0.006343286018818617, 0.0007596953655593097, -0.0012545193312689662, 0.02466454915702343, -0.015207533724606037, -0.004350363276898861, 0.0008644515764899552, -0.0030183412600308657, 0.023111090064048767, 0.011698626913130283, 0.00906865019351244, -0.002880369545891881, 0.028262030333280563, -0.003110322169959545, 0.016161412000656128, 0.021843796595931053, 0.008700726553797722, -0.018219061195850372, 0.011037725955247879, -0.0048954361118376255, -0.03943602368235588, -0.014539819210767746, -0.007038253825157881, -0.00019907935347873718, 0.00885743461549282, -0.01522116083651781, -0.0009070353698916733, -0.0010807773796841502, -0.032322824001312256, -0.010206489823758602, -0.01627042517066002, -0.018886776641011238, 0.002107047475874424, 0.050173960626125336, 0.005835686810314655, -0.00021259972709231079, -0.009361626580357552, -0.0312599316239357, 0.008755233138799667, -0.0006936904392205179, 0.021802915260195732, 0.002555029233917594, -0.042570192366838455, -0.0075015658512711525, -0.008809740655124187, -0.017701242119073868, 0.013074936345219612, 0.01652933470904827, -0.020535621792078018, 0.056796595454216, 0.0060673425905406475, -0.003955185413360596, -0.020780904218554497, 0.002989384112879634, 0.014362670481204987, -0.008871061727404594, -0.00892556831240654, -0.007767288945615292, 0.00024570865207351744, 0.029515696689486504, -0.011426090262830257, 0.007665087468922138, -0.00370990252122283, -0.006591975223273039, 0.007467498537153006, 0.027812344953417778, 0.013769904151558876, 0.023737924173474312, 0.021666647866368294, 0.01943184807896614, 0.015371055342257023, -0.004864775575697422, -0.0024920052383095026, 0.013654076494276524, 0.03254085034132004, 0.0012511126697063446, -0.009007330052554607, -0.03818235546350479, 0.006111629772931337, 0.000953025883063674, 0.03270437568426132, 0.02853456698358059, -0.00546776270493865, -0.009654603898525238, -0.003907491452991962, -0.02721276506781578, 0.015902502462267876, -0.023819684982299805, -0.00535193458199501, -0.005937887821346521, -0.0032517004292458296, 0.006401199847459793, -0.00926623959094286, 0.009307119995355606, 0.01534380204975605, -0.00458883261308074, 0.003914304543286562, 0.008319174870848656, -0.007317603565752506, -0.008482697419822216, 0.009940766729414463, 0.013149883598089218, -0.027989493682980537, 0.008550831116735935, -0.0034084089566022158, 0.007120014633983374, -0.014308163896203041, -0.006765717174857855, 0.005082804709672928, -0.028807101771235466, 0.002180291572585702, 0.012182379141449928, 0.012420848943293095, -0.012114245444536209, -0.04935635253787041, -0.00225012912414968, -0.01059485413134098, -0.025604799389839172, 0.0034237392246723175, 0.0033164278138428926, 0.007658274378627539, 0.02176203578710556, -0.02477356232702732, 0.02585008181631565, -0.017333317548036575, 0.00365198845975101, 0.001118251122534275, -0.012223259545862675, -0.00622064433991909, 0.005879973992705345, 0.018150927498936653, 0.025931842625141144, -0.024037715047597885, 0.016161412000656128, -0.015493697486817837, 0.02437838539481163, -0.010588040575385094, 0.002498818561434746, 0.009777245111763477, -0.0022126552648842335, -0.02431025169789791, -0.009606909938156605, -0.002778168534860015, 0.009661417454481125, -0.025550292804837227, -0.009470641613006592, -0.01721067726612091, -0.018668746575713158, -0.008496323600411415, 0.013333845883607864, -0.016611097380518913, 0.007596953306347132, 0.035402484238147736, -0.019581744447350502, 0.006568128243088722, -0.017973778769373894, 0.009457014501094818, -0.00985900592058897, -0.03442135453224182, 0.0060026152059435844, -0.0049056559801101685, -0.01573898084461689, -0.0023046364076435566, -0.0053451210260391235, 0.02545490488409996, -0.029733726754784584, 0.00912315770983696, 0.017510466277599335, 0.01247535552829504, -0.011855335906147957, 0.005304240621626377, -0.01637944020330906, 0.012829652987420559, 0.006762310862541199, -0.02501884661614895, -0.003299394389614463, -0.015507323667407036, 0.042324911803007126, 0.029352175071835518, 0.018382582813501358, -0.00915722455829382, 0.006138883531093597, -0.02490983158349991, -0.002229688921943307, -0.00721540255472064, 0.0010799256851896644, 0.002950207097455859, -0.01258437056094408, -0.0008380495710298419, 0.0004092305025551468, 0.00926623959094286, -0.0002982996520586312, -0.0004041204520035535, -0.05573370307683945, -0.014512565918266773, -0.0009291789610870183, 0.009457014501094818, -0.009225359186530113, 0.016256799921393394, -0.002916140016168356, 0.022143585607409477, -0.0002987254993058741, 0.009341186843812466, -0.007685527671128511, 0.0028037186712026596, -0.010111101903021336, -0.005072584841400385, 0.04657647758722305, 0.01238678116351366, 0.025005219504237175, -0.03398529440164566, 0.00532468082383275, 0.027049243450164795, -0.038700174540281296, -0.012482169084250927, -0.02305658347904682, 0.005525676533579826, -0.0047319140285253525, -0.0018157741287723184, 0.01299317553639412, -0.041425541043281555, 0.016842752695083618, 0.005668757949024439, -0.02627251297235489, -0.010083848610520363, 0.013238457962870598, -0.004002878908067942, 0.009150411002337933, -0.00883699394762516, 0.007535632699728012, -0.0029127332381904125, -0.006598788779228926, -0.005433695390820503, 0.005045331083238125, -0.010390452109277248, -0.011930283159017563, -0.007549259811639786, 0.008421376347541809, -0.008496323600411415, -0.0006919870502315462, -0.013803971000015736, -0.010765189304947853, 0.00815565325319767, -0.016542961820960045, -0.001941822236403823, -0.02294756844639778, -0.01802828535437584, -0.0036042944993823767, 0.009395694360136986, -0.0005961734568700194, 0.017646735534071922, -0.004105080384761095, 0.024569161236286163, -0.0028309724293649197, 0.02567293308675289, -0.0012102321488782763, -0.004125520586967468, -0.022497883066534996, 0.004350363276898861, -0.00440146354958415, -0.020590128377079964, 0.022852180525660515, -0.005784586071968079, 0.05423475429415703, 0.023615283891558647, 0.001032231841236353, -0.00036473042564466596, 0.009777245111763477, -0.03365825116634369, 0.014716967940330505, 0.004459377843886614, 0.026572303846478462, 0.011896216310560703, 0.003175049554556608, -0.013170324265956879, 0.021176081150770187, 0.013626822270452976, -0.004292448982596397, 0.014308163896203041, 0.011126300320029259, 0.017360571771860123, -0.042788222432136536, 0.03477565199136734, 0.021244216710329056, 0.018505224958062172, -0.007256282959133387, 0.008107959292829037, -0.005961734801530838, 0.0024443112779408693, 0.006775937508791685, -0.008864248171448708, 0.005920854397118092, 0.03409431129693985, -0.010901457630097866, -0.006189984269440174, -0.004680813290178776, -0.0075288196094334126, -0.003645174903795123, 0.025073353201150894, 0.008584897965192795, 0.014022000133991241, -0.018559731543064117, 0.03090563416481018, 0.002088310429826379, -0.016365813091397285, 0.007985318079590797, 0.008918755687773228, 0.0013439453905448318, -0.011392023414373398, 0.001537275849841535, 0.002289306139573455, 0.008564458228647709, -0.018614239990711212, -0.025223247706890106, -0.0004858813772443682, 0.007167708594352007, 0.000743513519410044, 0.011589612811803818, -0.01285009365528822, -0.000422218581661582, -0.01120124850422144, -0.008768860250711441, -0.005999208427965641, -0.01276151929050684, 0.004265195224434137, -0.043251533061265945, -0.0022824928164482117, -0.0014810652937740088, -0.02380605973303318, -0.004653559997677803, -0.005920854397118092, -0.008918755687773228, 0.007358483970165253, 0.00638075964525342, 0.007133641745895147, 0.011378396302461624, -0.025604799389839172, -0.010315504856407642, 0.021067067980766296, 0.0002030183677561581, 0.03248634561896324, 0.0062036109156906605, 0.005488202907145023, 0.002035506535321474, 0.00824422761797905, 0.007719594985246658, -0.010513093322515488, -0.009634163230657578, 0.010274624451994896, -0.016897259280085564, 0.01483961008489132, -0.0041084871627390385, -0.029733726754784584, -0.006186577491462231, 0.0013635338982567191, -0.01778300292789936, 0.0013405386125668883, -0.0016616206848993897, 0.006544281262904406, 0.015779860317707062, 0.004943130072206259, 0.012393594719469547, 0.0037712231278419495, 0.00998164713382721, 0.02103981375694275, -0.008291921578347683, 0.0015704912366345525, 0.0057539260014891624, -0.01642032153904438, 0.023315493017435074, 0.009545588865876198, -0.004299262538552284, -0.0004071013245265931, -0.010799257084727287, -0.011453344486653805, -0.0024443112779408693, 0.005641504656523466, -0.028125761076807976, -0.008162466809153557, -0.006537468172609806, 0.003341978183016181, -0.002389803994446993, -0.006663516163825989, -0.0159161277115345, -0.009470641613006592, 0.006683956366032362, -0.02251151017844677, -0.012086991220712662, 0.0147851025685668, -0.019309207797050476, 0.009368440136313438, -0.0007247765897773206, -0.029079638421535492, 0.015943381935358047, -0.010601667687296867, 0.01824631541967392, 0.011044539511203766, 0.007378924172371626, -0.013906172476708889, -0.0017059078672900796, 0.0004599052481353283, 0.017415078356862068, -0.008727979846298695, -0.0024340911768376827, 0.030387813225388527, 0.0034475859720259905, 0.015044012106955051, -0.006350099109113216, 0.010731122456490993, -0.007004186511039734, -0.020535621792078018, -0.004663779865950346, -0.0033760452643036842, 0.02079453133046627, -0.0159161277115345, -0.011364770121872425, 0.010812883265316486, 0.012291394174098969, -0.00233870348893106, -0.015929754823446274, 0.030714858323335648, -0.02545490488409996, -0.01182808168232441, -0.019636251032352448, -0.0038291371893137693, -0.017156168818473816, 0.005784586071968079, 0.010117915458977222, 0.0004841780464630574, 0.0005348527920432389, 0.024691801518201828, -0.0019469322869554162, -0.004166400991380215, -0.019009416922926903, -0.00025167036801576614, 0.001291993074119091, -0.004118707031011581, -0.013838037848472595, -0.013735837303102016, -0.009164038114249706, 0.014049254357814789, -0.021230589598417282, 0.01606602407991886, 0.004984010476619005, 0.0017697835573926568, 0.008591711521148682, 0.009654603898525238, -0.009600096382200718, 0.002972350688651204, 0.013892545364797115, -0.0198951605707407, 0.015534577891230583, 0.002713440917432308, 0.004023319110274315, 0.025890963152050972, 0.006547688040882349, -0.013824411667883396, -0.014199148863554, -0.004030132666230202, 0.01007022149860859, 0.012523049488663673, -0.009252612479031086, -0.003333461470901966, 0.008789300918579102, 0.013218018226325512, 0.020303964614868164, 0.013252085074782372, -0.0008239969029091299, -0.022061824798583984, -0.009191291406750679, 0.0066056023351848125, -0.02620437927544117, -0.013333845883607864, -0.06290141493082047, -0.02642240934073925, 0.011337515898048878, 0.004524105228483677, -0.013422420248389244, -0.006421640049666166, 0.03376726433634758, -0.008625778369605541, 0.0068168179132044315, -0.0028326758183538914, 0.0013413903070613742, -0.0063773528672754765, 0.026408782228827477, -0.015493697486817837, 0.001970779150724411, 0.004674000199884176, 0.022198094055056572, 0.0024272778537124395, 0.005624470766633749, -0.028452806174755096, 0.030088024213910103, 0.00541325518861413, -0.014635207131505013, 0.01842346414923668, 0.0075288196094334126, 0.030496828258037567, 0.007569700013846159, 0.0035531939938664436, 0.015711726620793343, -0.019840653985738754, 0.0016471421113237739, 0.0011966053862124681, -0.01956811733543873, -0.0004594794299919158, 0.013313405215740204, 0.006111629772931337, 0.007011000066995621, 0.004609272815287113, 0.003573634196072817, -1.5529787560808472e-05, -0.012952295131981373, 0.001284328056499362, 0.0023267799988389015, 0.02703561633825302, 0.008687099441885948, 0.024119475856423378, 0.009416134096682072, -0.012897787615656853, -0.00269811088219285, 0.008503137156367302, 0.017197050154209137, 0.010383638553321362, -0.011426090262830257, -0.01096959225833416, 0.005563150160014629, 0.0014836202608421445, -0.03275888040661812, 0.033358462154865265, -0.02014044299721718, 0.004844335373491049, 0.0038495773915201426, -0.012516236864030361, -0.008414562791585922, 0.006322845816612244, -0.0013286152388900518, 0.0045206984505057335, 0.00040539796464145184, -0.0011420981027185917, 0.0019298987463116646, 0.027430793270468712, -0.004425310529768467, -0.008871061727404594, 0.01642032153904438, -0.027076495811343193, -0.00741980504244566, -0.005314460955560207, 0.004765981342643499, -0.004660373087972403, 0.02147587202489376, 0.0039449650794267654, 0.017115289345383644, -0.017537720501422882, 0.023179225623607635, -0.008973262272775173, -0.012175565585494041, 0.009109530597925186, -0.00015862472355365753, -0.007481125649064779, -0.006080969702452421, -0.009600096382200718, -0.012836466543376446, -0.0027475079987198114, -0.0028531160205602646, -0.023928700014948845, 0.007937624119222164, -0.009055023081600666, -0.003391375532373786, 0.013994746841490269, -0.012884160503745079, 0.014798728749155998, 0.027989493682980537, -0.004306076094508171, 0.010158795863389969, -0.026258887723088264, -0.00810114573687315, -0.02183016948401928, -0.0054916092194616795, 0.024078594520688057, -0.014757848344743252, -0.0007315900293178856, 0.01637944020330906, 0.006735057104378939, 4.584414455166552e-06, 0.028480058535933495, 0.0005442211986519396, 0.01573898084461689, 0.005495015997439623, 0.010138356126844883, -0.0005948959733359516, -0.008285108022391796, 0.004435530863702297, 0.0039824387058615685, -0.005580183584243059, -0.0075015658512711525, -0.003904084675014019, 0.0021343010012060404, -0.0030064177699387074, 0.003306207712739706, -0.02336999960243702, -0.0013379836454987526, -0.0334947295486927, 0.03390353545546532, -0.0069905598647892475, 0.00614910339936614, -0.011691813357174397, 0.03820960968732834, 0.007876303046941757, -0.006394386291503906, 0.00649658776819706, 0.005437102168798447, 0.006830444559454918, -0.0038223236333578825, 0.017019901424646378, 0.006350099109113216, -0.014226403087377548, 0.0037371560465544462, 0.026585930958390236, 0.01727881096303463, -0.019772520288825035, 9.379086259286851e-05, -0.005699418485164642, 0.0012817729730159044, -0.035402484238147736, -0.001645438838750124, 0.013279338367283344, -0.009797685779631138, -0.012666131369769573, 0.01800103299319744, -0.024528279900550842, -0.00808751955628395, -0.00013296797988004982, -0.009852192364633083, -0.006448893807828426, -0.011589612811803818, -0.03341296687722206, 0.008918755687773228, 0.004878402221947908, -0.011875775642693043, -0.025822829455137253, 0.017837511375546455, 0.022143585607409477, 0.017224304378032684, -0.0027475079987198114, -0.009838566184043884, 0.008653032593429089, 0.015834366902709007, 0.02613624557852745, 0.005988988559693098, 0.011630493216216564, -0.010751563124358654, -0.012216445989906788, -0.02541402354836464, -0.009606909938156605, -0.0035634140949696302, 0.0003398188855499029, 0.006687363144010305, -0.031205423176288605, 0.023097464814782143, -0.0012025671312585473, 0.017183423042297363, 0.023819684982299805, 0.0052531398832798, 0.01349736750125885, 0.007378924172371626, 0.012632064521312714, -0.010444959625601768, 0.002958723809570074, 0.01835533045232296, 0.00324829388409853, -0.029869994148612022, 0.009566029533743858, 0.01896853744983673, -0.026899347081780434, 0.009075463749468327, 0.012223259545862675, -0.031532466411590576, 0.019731638953089714, 0.004060793202370405, -0.004915876314043999, -0.002802015282213688, 0.020603755488991737, 0.01460795383900404, 0.0127955861389637, -0.02695385552942753, 0.0042481618002057076, -0.014689714647829533, 0.0352662168443203, 0.0012783663114532828, -0.027594314888119698, 0.014771475456655025, -0.009457014501094818, -0.017755750566720963, -0.009286679327487946, 0.019554490223526955, -0.019118431955575943, 0.004132333677262068, 0.021571259945631027, -0.01749683916568756, 0.01606602407991886, 0.002922953339293599, 0.005580183584243059, 0.0032891742885112762, 0.0012349308235570788, 0.013838037848472595, 0.010138356126844883, 0.005372374784201384, 0.008251041173934937, 0.022920316085219383, 0.018055539578199387, -0.010315504856407642, -0.001695687766186893, 0.03810059651732445, 0.0035327537916600704, 0.0020474300254136324, -0.013967492617666721, -0.01580711454153061, -0.033685505390167236, 0.00457861227914691, 0.013054495677351952, -0.02064463682472706, 0.011099047027528286, 0.013981119729578495, 0.0011318778852000833, 0.017483213916420937, -0.016147784888744354, -0.01695176772773266, 0.010499467141926289, 0.024964338168501854, -0.011746320873498917, 0.005559743382036686, -0.006302405148744583, -0.0008891501929610968, 0.012277767062187195, 0.01202567107975483, 0.013429233804345131, -0.002084903884679079, -0.007692341227084398, -0.007310790009796619, 0.007569700013846159, -0.006438673473894596, -0.007665087468922138, 0.014812355861067772, -0.0032670306973159313, 0.01580711454153061, 0.018668746575713158, 0.012161939404904842, -0.009933953173458576, 0.00889150146394968, 0.039381515234708786, 0.025495784357190132, 0.013088562525808811, -0.01663834974169731, -0.0018294008914381266, -0.009259426034986973, -0.008107959292829037, 0.0109355254098773, -0.0007094464381225407, 0.023397253826260567, -0.00048290053382515907, 0.0010509686544537544, -0.010186050087213516, 0.00543028861284256, -0.008966448716819286, 0.012856907211244106, -0.005852720234543085, 0.005178192630410194, -0.02921590767800808, 0.019227446988224983, -0.00824422761797905, -0.004643339663743973, 0.004227721597999334, 0.008932381868362427, -0.002693000715225935, 0.011930283159017563, -0.0028837763238698244, 0.017142541706562042, -0.0019912193529307842, -0.008959636092185974, 0.02044023387134075, 0.004060793202370405, 0.003328351303935051, -0.01191665604710579, 0.0072290292009711266, -0.015997890383005142, 0.0055086431093513966, -0.006537468172609806, 0.006799784488976002, 0.04240667074918747, 0.014567073434591293, -0.016284052282571793, -0.016229545697569847, -0.003009824315086007, -0.002750914776697755, 0.0053076473996043205, 0.01073793601244688, -0.005907227750867605, 0.00017991663480643183, 0.007610580418258905, 0.005665351636707783, -0.009191291406750679, -0.001941822236403823, 0.0016352187376469374, -0.020372100174427032, 0.0147851025685668, -0.007515192497521639, -0.040417157113552094, 0.0034050021786242723, -0.018164554610848427, 0.004449157509952784, 0.0015279074432328343, 0.010485840030014515, -0.002345516812056303, -0.001112289377488196, 0.009191291406750679, 0.002301229629665613, -0.023315493017435074, -0.013756277039647102, -0.00630921870470047, -0.006970119662582874, -0.00912315770983696, -0.0069633061066269875, -0.016679231077432632, -0.007842236198484898, 0.001343093696050346, -0.034394100308418274, 0.008864248171448708, 0.006796377710998058, 0.004687626846134663, -0.02710375003516674, 0.025754693895578384, -0.0031784563325345516, -0.0012460026191547513, 0.001168500049971044, 0.013510994613170624, -0.008435003459453583, -0.007487938739359379, 0.0043197027407586575, -0.0031512025743722916, 0.013395166024565697, -0.0028752596117556095, 0.008823367767035961, -0.01023374404758215, 0.00020706382929347456, 0.0014682901091873646, -0.009041396901011467, 0.014567073434591293, 0.01925469934940338, -0.010622108355164528, 0.011208061128854752, 0.009313933551311493, 0.006823631469160318, -0.034257832914590836, -0.0054541355930268764, -0.0026401968207210302, -0.0035668208729475737, -0.009831752628087997, -0.006758904084563255, 0.016679231077432632, -0.010254183784127235, -0.011541918851435184, -0.004469597712159157, 0.003883644472807646, -0.010499467141926289, -0.028098508715629578, -0.011623679660260677, 0.00544050894677639, 0.01539830956608057, -0.0038223236333578825, -0.010983218438923359, -0.01644757390022278, -0.023042956367135048, -0.01802828535437584, -0.009818125516176224, 0.010008901357650757, 0.0025158519856631756, -0.011344329454004765, 0.009048210456967354, 0.0016905777156352997, 0.01910480484366417, -0.0013005099026486278, -0.015275668352842331, -0.029515696689486504, -0.00012615456944331527, 0.010410892777144909, -0.005028297659009695, 0.010383638553321362, -0.0017416782211512327, 0.01879138872027397, 0.00987944658845663, -0.01782388426363468, 0.0023216698318719864, -0.004360583145171404, 0.0019503389485180378, -0.003197193145751953, 0.011051353067159653, 0.010444959625601768, -0.018219061195850372, -0.017701242119073868, -0.009409320540726185, 0.00818972010165453, 0.009238985367119312, -0.023492641746997833, -0.007460685446858406, -0.005767552647739649, 0.007678714580833912, 0.004599052481353283, 0.017701242119073868, -0.0017416782211512327, 0.006646482739597559, 0.0005012115580029786, -0.030742110684514046, -0.006884952075779438, -0.011099047027528286, 0.012039297260344028, -0.022320734336972237, -0.031096408143639565, 0.00013392610708251595, -0.008714352734386921, 0.005464355926960707, -0.013878918252885342, -0.015098519623279572, -0.01864149235188961, -0.003979031927883625, 0.016570216044783592, -0.0037064957432448864, -0.007883116602897644, 0.024364758282899857, -0.00547457579523325, -0.014444432221353054, -0.03333120793104172, -0.015589084476232529, 0.009640976786613464, -0.0072290292009711266, -0.0043469564989209175, -0.004582019057124853, -0.008182906545698643, -0.013572314754128456, 0.014567073434591293, 0.0014095244696363807, -0.0295702051371336, 0.0015687879640609026, -0.000346419372363016, 0.0008435854688286781, -0.021203335374593735, -1.994785816350486e-05, 0.013981119729578495, 0.017510466277599335, -0.004629713017493486, 0.002972350688651204, -0.001162538304924965, -0.00455135852098465, -0.02132597751915455, -0.0016922809882089496, -0.019690757617354393, 0.01857335865497589, 0.012604810297489166, -0.018150927498936653, -0.01584799401462078, 0.004575205501168966, -0.015330174937844276, -0.014676087535917759, -0.0007554369512945414, 0.006871325429528952, -0.003284064121544361, 0.008584897965192795, -0.018164554610848427, 0.03534797579050064, -0.006043495610356331, -0.027812344953417778, 0.00012828376202378422, 0.0053825946524739265, 0.012012043967843056, 0.002836082363501191, -0.005842499900609255, -0.015561831183731556, -0.028507312759757042, 0.02064463682472706, -0.026654064655303955, -0.01182808168232441, 0.0164884552359581, -0.005433695390820503, 0.0024204642977565527, -0.008625778369605541, 0.012046110816299915, -0.01332021877169609, -0.017415078356862068, 0.01100365910679102, -0.0017408265266567469, -0.005495015997439623, 0.006517027970403433, 0.0164884552359581, -0.01936371438205242, 0.023574402555823326, 0.01939096860587597, 0.006006021983921528, 0.0012170455884188414, -0.001046710298396647, 0.0009939064038917422, 0.0008738199830986559, 0.019813399761915207, 0.011766761541366577, -0.010111101903021336, -0.011841708794236183, 0.0109355254098773, 0.02585008181631565, -0.006179763935506344, 0.008319174870848656, 0.009218545630574226, -0.02606811188161373, 0.005736892111599445, -0.031832255423069, -0.01800103299319744, 0.01460795383900404, -0.019063925370573997, -0.0037507829256355762, 0.019636251032352448, 0.008714352734386921, 0.013906172476708889, 0.007297163363546133, 4.7693880333099514e-05, 0.006210424471646547, -0.002035506535321474, -0.00233870348893106, -0.00031746237073093653, -0.0034918731544166803, 0.002967240521684289, 0.00636372622102499, -0.00733123067766428, 0.011371583677828312, 0.017905645072460175, 0.011371583677828312, -0.011323889717459679, -0.015766233205795288, -0.024296624585986137, -0.008952822536230087, -0.03101464733481407, -0.0004599052481353283, 0.0024868950713425875, -0.00998164713382721, 0.027417166158556938, 0.0008525280863977969, -0.0036962756421417, -0.012434475123882294, -0.018736880272626877, -0.004949943162500858, 0.016679231077432632, 0.005113465245813131, -0.005437102168798447, 0.020535621792078018, -0.004316295962780714, 0.015030384995043278, -0.01059485413134098, -0.010356385260820389, -0.0012349308235570788, 0.017197050154209137, 0.013824411667883396, 0.012925040908157825, 0.010172422975301743, -0.004922689404338598, -0.021680274978280067, 0.007876303046941757, -0.0003847448097076267, 0.010840137489140034, 0.008394123055040836, -0.0021479278802871704, 0.011494224891066551, -0.0030881785787642, 0.02319285087287426, 0.002686187392100692, 0.011187621392309666, -0.00829873513430357, -0.0003261920646764338, -0.03082387149333954, -0.03311317786574364, 0.0164884552359581, -0.001010088250041008, 0.013381539843976498, 0.00035259404103271663, -0.007951251231133938, 0.011753134429454803, -0.012952295131981373, 0.008578084409236908, 0.005215666256844997, -0.00921173207461834, -0.011698626913130283, -0.00898007582873106, 0.018627867102622986, -0.011310262605547905, 0.005903820972889662, -0.00633647246286273, 0.01014516968280077, 0.006346692331135273, 0.011589612811803818, 0.02899787761271, -0.012488982640206814, 0.004169807769358158, -0.0037439693696796894, -0.018873149529099464, 0.00014020722301211208, 0.0026691537350416183, 0.011235315352678299, -0.02820752188563347, 0.017156168818473816, 0.005883380770683289, 0.0073925512842834, -0.00537918834015727, 0.004708067048341036, 0.0037064957432448864, -0.014907743781805038, 0.00015085318591445684, 0.015589084476232529, -0.0005965993041172624, -0.004425310529768467, 0.021121574565768242, -0.016338560730218887, 0.02462366782128811, -0.002272272715345025, 0.009647790342569351, 0.004844335373491049, -0.02864358015358448, 0.029842741787433624, 0.013040869496762753, 0.030742110684514046, 0.004159587435424328, 0.00730397691950202, 0.003839357290416956, 0.006683956366032362, 0.004994230344891548, -0.00639779306948185, 0.009382067248225212, -0.0032005999237298965, 0.0036622085608541965, -0.02703561633825302, 0.0059310742653906345, 0.0009206621907651424, 0.01982702687382698, 0.024637294933199883, 0.005525676533579826, -0.007058694027364254, 0.002076387172564864, -0.004466190934181213, 0.03090563416481018, 0.011426090262830257, 0.006769123952835798, -0.027485301718115807, -0.0025856895372271538, 0.01552095077931881, -0.006581755355000496, 0.014635207131505013, 0.014689714647829533, 0.014921370893716812, 0.00017331614799331874, 0.013292965479195118, -0.006438673473894596, -0.005525676533579826, -0.010731122456490993, 0.014008373022079468, -0.014648834243416786, 0.01120124850422144, -0.0014657351421192288, -0.0028837763238698244, 0.020549248903989792, -0.007917183451354504, -0.01910480484366417, -0.023928700014948845, -0.008932381868362427, -0.03180500492453575, -0.004762574564665556, 0.005678978282958269, 0.008441816084086895, -0.02606811188161373, -0.0018413243815302849, 0.0018702814122661948, 0.025713814422488213, 0.013292965479195118, 0.008639405481517315, 0.022770419716835022, -0.022429749369621277, 0.006138883531093597, -0.021993691101670265, -0.01569809950888157, 0.016106903553009033, 0.006803191266953945, -0.00542347552254796, -0.005409848410636187, -0.0028991063591092825, 0.016965394839644432, 0.007440245244652033, 0.006973526440560818, -0.018518852069973946, -0.0014274097047746181, 0.0020866072736680508, -0.005876567214727402, 0.008503137156367302, -0.006932646036148071, -0.020058682188391685, -0.008775673806667328, -0.018110046163201332, 0.0012511126697063446, 0.01644757390022278, 0.01635218784213066, 0.005447322502732277, 0.00815565325319767, 0.0181781817227602, -0.022089079022407532, 0.005225886590778828, -0.011078606359660625, -0.0069905598647892475, -0.009313933551311493, -0.004459377843886614, -0.025086980313062668, 0.020590128377079964, 0.008162466809153557, 0.005099838133901358, 0.019091177731752396, -0.005215666256844997, 0.00642504682764411, -0.012148312292993069, -0.023247359320521355, 0.005263360217213631, -0.0008486955193802714, -0.006489774212241173, 0.005420068744570017, -0.0011557248653843999, 0.034257832914590836, -0.014417177997529507, 0.0026810772251337767, 0.0176058541983366, -0.016120530664920807, -0.0010203083511441946, 0.010731122456490993, -0.005651724524796009, -0.011494224891066551, 0.005334901157766581, 0.011732693761587143, 0.020017802715301514, -0.022933941334486008, -0.01879138872027397, -0.02057650126516819, 0.010138356126844883, 0.013510994613170624, -0.017878390848636627, -0.000472680403618142, 0.007038253825157881, 0.00056253228103742, 0.007011000066995621, -0.005924261175096035, -0.006609009113162756, 0.0045956457033753395, 0.012141498737037182, -0.01247535552829504, -0.014567073434591293, -0.006857698317617178, 0.0047591677866876125, 0.0025652493350207806, -0.0037780364509671926, 0.017755750566720963, 0.027131004258990288, -0.005331494379788637, 0.024242118000984192, 0.02978823333978653, 0.03243183717131615, -0.004074419848620892, 0.02061738260090351, -0.0067146169021725655, 0.005610844120383263, -0.013074936345219612, -0.009661417454481125, -0.02334274724125862, 0.014158268459141254, -0.004408277105540037, -0.02431025169789791, -0.00614910339936614, -0.021503126248717308, 0.007746848743408918, -0.0012298207730054855, 0.005035110749304295, 0.01466246135532856, 0.003730342723429203, 0.025318635627627373, 0.014921370893716812, 0.0176058541983366, 0.0063194390386343, 0.0042822291143238544, -0.0013516104081645608, 0.01009066216647625, 0.01009066216647625, -0.006125256884843111, 0.006929239258170128, -0.004033539444208145, -0.002088310429826379, -0.007992131635546684, -0.005696011707186699, -0.009988460689783096, -0.009402507916092873, -0.0017144245794042945, -0.03998109698295593, 0.004149367567151785, -0.013749463483691216, 0.01355187501758337, -0.0182054340839386, -0.005488202907145023, -0.013449673540890217, 0.0089460089802742, -0.028616327792406082, -0.0072426563128829, 0.018014660105109215, -0.024569161236286163, 0.016542961820960045, 0.031178168952465057, -0.019227446988224983, -0.010751563124358654, -0.00838730949908495, 0.017728496342897415, 0.03289514780044556, -0.014444432221353054, -0.017074408009648323, 0.01723792962729931, 0.00808751955628395, 0.011439717374742031, 0.000563383917324245, 0.007774102035909891, -0.005709638819098473, -0.006602195557206869, 0.007849049754440784, -0.024501027539372444, -0.015139400027692318, -0.02204819954931736, 0.01351780816912651, 0.010315504856407642, -0.02244337648153305, 0.038591161370277405, 0.002764541655778885, 0.0023693637922406197, -0.024105848744511604, -0.005195226054638624, 0.014526193030178547, 0.011412464082241058, 0.003587261075153947, -0.00040816591354086995, 0.020426606759428978, -0.01247535552829504, 0.019663505256175995, -0.008503137156367302, 0.004268602002412081, -0.00998164713382721, 0.026981107890605927, 0.0008363462402485311, -0.023329120129346848, 0.004193654749542475, 0.006162730511277914, -0.010778816416859627, 0.005058957729488611, 0.020235830917954445, -0.0025311822537332773, -0.014090134762227535, 0.02237524278461933, 0.02044023387134075, 0.012890974059700966, 0.005157752428203821, -0.008366868831217289, 0.008714352734386921, -0.007814982905983925, -0.005811839830130339, 0.007889930158853531, 0.02312471717596054, 0.009818125516176224, 0.00155941944103688, 0.008264667354524136, -0.03046957589685917, 0.0072494694031775, -0.017932897433638573, 0.0017135728849098086, -0.004244755022227764, 0.020085936412215233, 0.007487938739359379, 0.016106903553009033, 0.01351780816912651, 0.0003115006547886878, 0.013742650859057903, -0.02674945257604122, -0.007092760875821114, 0.03104190155863762, 0.014171895571053028, -0.018723253160715103, 0.004915876314043999, 0.002302933018654585, -0.008966448716819286, -0.016692858189344406, -0.002749211387708783, 0.007794542238116264, -0.019513608887791634, 0.011501038447022438, 0.021094320341944695, 0.015657218173146248, 0.010329131036996841, 0.01892765611410141, 0.019581744447350502, 0.010635734535753727, 0.01635218784213066, 0.019350087270140648, 0.008734793402254581, 0.02674945257604122, 0.005014670547097921, 0.009443388320505619, -0.01387210562825203, -0.010165609419345856, -0.017006274312734604, 0.017932897433638573, 0.010117915458977222, 0.007692341227084398, 0.009095904417335987, 0.004023319110274315, 0.0007643795688636601, 0.00362132815644145, 0.013940239325165749, -0.01387210562825203, 0.007998945191502571, -0.00962734967470169, 0.006101409904658794, 0.010642548091709614, -0.015534577891230583, -0.01346330065280199, 0.005958328023552895, 0.0123527143150568, 0.02237524278461933, -0.0005114316591061652, 0.00716089503839612, -0.006183170713484287, 0.00011859594087582082, -0.006224051117897034, -0.01353143434971571, -0.004122113808989525, -0.009491082280874252, 0.0006302405381575227, -0.003347088349983096, -0.005304240621626377, -0.01032231841236353, 0.0198951605707407, 0.002035506535321474, -0.002633383497595787, -0.012379968538880348, -0.013074936345219612, 0.009491082280874252, 0.012393594719469547, 0.013681329786777496, -0.021503126248717308, -0.0005889342282898724, 0.004915876314043999, 0.014757848344743252, 0.014471685513854027, 0.012884160503745079, -0.015766233205795288, 0.016229545697569847, -0.011855335906147957, 0.02523687481880188, -0.0038938645739108324, 0.03194127231836319, 0.010117915458977222, -0.0039347452111542225, -0.03671066090464592, 0.008884687907993793, 0.023615283891558647, -0.02251151017844677, -0.009334373287856579, -0.014008373022079468, 0.013109003193676472, -0.02653142251074314, -0.005001043900847435, -0.006878138519823551, -0.01813730038702488, 0.011030912399291992, -0.030878379940986633, -0.007494752295315266, 0.0024204642977565527, 0.020017802715301514, -0.014894116669893265, 0.007767288945615292, 0.025536665692925453, -0.0007831164402887225, 0.004118707031011581, 0.034039802849292755, -0.013218018226325512, 0.004994230344891548, 0.022715913131833076, -0.003808696987107396, -0.0024732681922614574, 0.0030796618666499853, -0.022470630705356598, 0.008544017560780048, 0.01455344632267952, 0.009020956233143806, 0.010479026474058628, -0.018586985766887665, -0.0037371560465544462, 0.016188664361834526, -0.029052386060357094, 0.0210125595331192, 0.0067895641550421715, 0.00362473470158875, -0.021598514169454575, -0.001176165067590773, 0.007985318079590797, -0.01378353126347065, -0.024828070774674416, -0.00885743461549282, -0.009743178263306618, -0.0295702051371336, -0.02266140654683113, -0.003422035835683346, 0.017265183851122856, -0.005140718538314104, -0.0027543215546756983, 0.0011846818961203098, 0.0198951605707407, -0.013613195158541203, -0.014580699615180492, -0.007433431688696146, 0.009170851670205593, 0.0020389133132994175, -0.00042285732342861593, 0.021135201677680016, 0.02420123666524887, 0.003965405281633139, 0.019418222829699516, -0.005907227750867605, -0.014240029267966747, -0.019472729414701462, 0.0008112217765301466, -0.02706286869943142, -0.020194951444864273, 0.003546380437910557, -0.005822059698402882, -0.02943393588066101, -0.00324829388409853, -0.02290668897330761, -0.007692341227084398, 0.02732177823781967, -0.007930810563266277, 0.008864248171448708, 0.0038802376948297024, 0.00013435195432975888, -0.00817609392106533, -0.014880490489304066, 0.023969581350684166, 0.000270407268544659, 0.039708562195301056, 0.03401254862546921, 0.01059485413134098, -0.00358044751919806, -0.015902502462267876, -0.02033121883869171, -0.0027594314888119698, -0.000541666173376143, 0.002997900824993849, 0.007760475389659405, -0.016502082347869873, -0.0069905598647892475, 0.019241074100136757, 0.0048954361118376255, -0.005590403918176889, -0.009164038114249706, -0.007760475389659405, 0.00803301203995943, -0.014512565918266773, 0.027362659573554993, -0.002619756618514657, -0.0009513225522823632, -0.002863336121663451, 0.008918755687773228, 0.0008035567007027566, 0.019404595717787743, 0.015507323667407036, 0.010260997340083122, 0.002187104895710945, 0.004800048191100359, 0.013170324265956879, -0.009572843089699745, -0.00912315770983696, 0.009409320540726185, -0.0006451449007727206, 0.006782751064747572, -0.014171895571053028, 0.007603766862303019, 0.015248414129018784, -0.021203335374593735, -0.015153026208281517, -0.013524621725082397, 0.01666560396552086, -0.004823895171284676, -0.022252600640058517, 0.006411420181393623, 0.008080706000328064, 0.0036281414795666933, -0.011392023414373398, 0.01172588113695383, 0.006322845816612244, -0.007058694027364254, -0.010921898297965527, 0.010540347546339035, -0.004149367567151785, -0.010220116935670376, -0.0024068374186754227, -0.01000208780169487, -0.019881533458828926, 0.0201813243329525, -0.030278800055384636, -0.010676614940166473, -0.000620872073341161, 0.015275668352842331, 0.005665351636707783, 0.0012357825180515647, -0.001218748977407813, 0.019241074100136757, 0.005215666256844997, 0.002035506535321474, 0.012700198218226433, -0.01892765611410141, 0.00930030643939972, -0.0067793442867696285, -0.00727672316133976, -0.00824422761797905, -0.023042956367135048, -0.018477970734238625, -0.023288238793611526, -0.02606811188161373, 0.008114772848784924, -0.02976098097860813, 0.0066056023351848125, -0.01613415777683258, -0.008612152189016342, 0.015371055342257023, -0.006503400858491659, -0.022347988560795784, 0.005624470766633749, 0.0007890781853348017, -0.0010697055840864778, 0.004871589131653309, 0.016611097380518913, 0.019704384729266167, 0.022525137290358543, -0.0043299226090312, -0.00560062425211072, -0.017987405881285667, 0.01349736750125885, 0.014526193030178547, 0.00885743461549282, 0.021448617801070213, -0.0003536586300469935, -0.017973778769373894, 0.007344857323914766, -0.004701253958046436, -0.0011225094785913825, -0.001797037199139595, -0.00035387155367061496, -0.012202819809317589, -0.007494752295315266, 0.008775673806667328, -0.016801871359348297, 0.012161939404904842, 0.011071792803704739, 0.00792399700731039, 0.03594755753874779, 0.00021164158533792943, 0.017592227086424828, 0.027376286685466766, -0.006874731741845608, -0.009457014501094818, 0.021530378609895706, -0.00135586888063699, 0.0090890908613801, 0.0032891742885112762, 0.004190247971564531, 0.010042968206107616, 0.005910634063184261, 0.02222534827888012, 0.022102706134319305, -0.03395804017782211, 0.008114772848784924, 0.02978823333978653, -0.005644910968840122, -0.00024123734328895807, 0.019813399761915207, -0.03093288652598858, 0.009463828057050705, 0.012734265998005867, 0.005709638819098473, 0.03842763975262642, 0.02262052521109581, -0.0021189709659665823, -0.002526072319597006, 0.012032484635710716, -0.024078594520688057, 0.0090890908613801, 0.004244755022227764, 0.009777245111763477, -0.012959107756614685, 0.006530654616653919, -0.00730397691950202, 0.021380484104156494, -0.0028258622623980045, 0.002851412631571293, 0.0109355254098773, 0.007344857323914766, -0.02007230930030346, 0.00311883888207376, 0.007842236198484898, -0.008714352734386921, 0.010329131036996841, 0.008128399960696697, 0.013940239325165749, -0.017142541706562042, -0.030088024213910103, 0.018954910337924957, 0.004033539444208145, -0.0035702274180948734, 0.009225359186530113, -0.01000208780169487, -0.00803301203995943, -0.014539819210767746, -0.0025362924207001925, 0.02886161021888256, 0.00642504682764411, 0.012086991220712662, 0.002994494279846549, 0.0010407485533505678, 0.023642536252737045, 0.0009334373171441257, 0.018477970734238625, 0.009443388320505619, -0.0010424519423395395, 0.01573898084461689, -0.001349055441096425, 0.005648317746818066, -0.011099047027528286, 0.008727979846298695, 0.008966448716819286, 0.018559731543064117, 0.0052803936414420605, 0.009457014501094818, -0.018954910337924957, 0.00363836158066988, -0.010138356126844883, -0.003154609352350235, -0.016147784888744354, -0.004680813290178776, 0.014090134762227535, 0.019976921379566193, 0.0004939723294228315, 0.006758904084563255], "772005e7-7276-43a5-b3ba-42c7290f0c36": [-0.010926852002739906, 0.022930586710572243, 0.006367656867951155, 0.030948683619499207, 0.019231727346777916, 0.0018187033711001277, -5.345093086361885e-05, 0.011687693186104298, -0.0125246187672019, -0.0009942147880792618, 0.002436155453324318, 0.04555683583021164, -0.00035719305742532015, 0.014807142317295074, 0.009996284730732441, 0.01922002248466015, -0.006432035472244024, 0.014350637793540955, -0.006075025536119938, 0.0028077971655875444, 0.032985396683216095, 0.013765375129878521, -0.05023893713951111, 0.03495188057422638, 0.033640891313552856, 0.008205381222069263, 0.011043904349207878, 0.00894866418093443, -0.012606555595993996, 0.0008310728590004146, 0.009744621813297272, 0.022509198635816574, 0.015111478976905346, 0.010757125914096832, 0.028794918209314346, -0.010645925998687744, 0.023328565061092377, 0.00304921786300838, -0.008562391623854637, 0.0119276512414217, 0.010089926421642303, 0.020940694957971573, 0.011798893101513386, -0.00626230938360095, -0.04363717511296272, 0.023843595758080482, -0.010206978768110275, 0.021186504513025284, -0.034624133259058, 0.0014221880119293928, 0.015497752465307713, -0.015263647772371769, 0.023925533518195152, 0.0254238061606884, 0.03808888792991638, 0.003640333190560341, 0.004205111414194107, 0.012325629591941833, -0.006771487649530172, -0.03855709731578827, 0.02065976895391941, -0.02339879795908928, -0.01789732836186886, -0.006789045874029398, 0.02509605884552002, -0.012594849802553654, 0.0014638879802078009, 0.01284066028892994, -0.03310244902968407, 0.014256996102631092, 0.003274543909355998, -0.004029532894492149, -0.05988406389951706, 0.01971164345741272, 0.006221340969204903, -0.021982461214065552, 0.020261790603399277, 0.04286462813615799, 0.0034676806535571814, -0.029052432626485825, 0.02547062747180462, -0.027881909161806107, 0.03607558459043503, 0.007883486337959766, 0.0714956745505333, 0.02488536387681961, -0.012044703587889671, -0.011986177414655685, -0.004152437672019005, -0.02579837292432785, -0.012395860627293587, 0.017195014283061028, 0.006531530059874058, 0.014772026799619198, 0.0024961447343230247, 0.00043346008169464767, -0.015111478976905346, 0.011207778006792068, -0.038650739938020706, -0.01842406578361988, -0.04508862644433975, 0.03949351608753204, 0.009147653356194496, 0.03258742019534111, 0.010798093862831593, -0.006373509299010038, -0.001321961754001677, -0.0023571448400616646, -0.026641150936484337, 0.02087046205997467, -0.02460443787276745, -0.04211549460887909, 0.0076318238861858845, 0.05187767371535301, -0.04513544961810112, -0.024979006499052048, -0.04045334830880165, -0.011155104264616966, -0.0017426193226128817, 0.0010702989529818296, 0.019442422315478325, -0.01238415576517582, 0.018248487263917923, -0.041881389915943146, -0.029590874910354614, 0.0015070510562509298, -0.016668276861310005, 0.01395265944302082, 0.0104118213057518, -0.02065976895391941, 0.00018234585877507925, 0.004936689510941505, 0.041272714734077454, 0.008141002617776394, -0.0019138085190206766, 0.022637955844402313, -0.01378878578543663, -0.014690089970827103, -0.014947605319321156, 0.013074765913188457, -0.014842258766293526, 0.0072279926389455795, -0.004129027482122183, -0.029965443536639214, 0.023363681510090828, -0.022099513560533524, 0.00295996549539268, 0.027156183496117592, 0.011172662489116192, -0.010119189508259296, -0.07753558456897736, -0.03954033926129341, -0.01875181309878826, -0.010610810481011868, 0.05342276766896248, -0.004974731709808111, -0.011564788408577442, 0.022883765399456024, 0.027062540873885155, 0.05613838508725166, -0.008275612257421017, 0.00527028925716877, -0.023703133687376976, 0.07280666381120682, 0.04630597308278084, 0.01505295280367136, -0.002633681520819664, 0.014772026799619198, -0.015287058427929878, 0.017487645149230957, 0.025938836857676506, -0.043051913380622864, 0.059649959206581116, 0.0031194493640214205, -0.051081717014312744, -0.008767233230173588, 0.02253260836005211, 0.05201813578605652, 0.05407825857400894, -0.004108543042093515, 0.015872320160269737, 0.030574116855859756, -0.0023571448400616646, 0.042138904333114624, 0.007157761137932539, 0.008211233653128147, -0.011395062319934368, 0.006379361730068922, 0.04897477105259895, -0.013706848956644535, 0.009902642108500004, -0.0028429129160940647, 0.004298753570765257, 0.030082495883107185, -0.009077422320842743, -0.004246079828590155, -0.015626510605216026, -0.008726264350116253, -0.029216306284070015, 0.030550705268979073, 0.021549368277192116, -0.05042622238397598, 0.010669336654245853, 0.020355431362986565, -0.03204897791147232, 0.007895192131400108, 0.013730259612202644, -0.019278548657894135, 0.017159897834062576, -0.009703652933239937, 0.028560813516378403, -0.026851845905184746, -0.014713500626385212, -0.038697559386491776, 0.0005040573887526989, 0.005088857840746641, -0.014444279484450817, 0.03272788226604462, 0.01701943576335907, -0.05487421900033951, -0.01540411077439785, 0.019688231870532036, 0.009288116358220577, -0.02000427432358265, -0.045861173421144485, 0.01395265944302082, 0.002715618349611759, 0.012372450903058052, -0.034390028566122055, 0.014631563797593117, 0.0019167348509654403, 0.0016957982443273067, 0.00042504692100919783, -0.01664486713707447, 0.023632902652025223, 0.03101891651749611, 0.03963398188352585, -0.0009312990587204695, -0.005788246635347605, 0.0005541704595088959, 0.014994426630437374, 0.03448367118835449, 0.0017894402844831347, -0.026945488527417183, 0.019699938595294952, 0.03106573596596718, -0.013297165744006634, 0.04272416606545448, -0.002472734311595559, -0.045533426105976105, -0.017920739948749542, 0.0315573588013649, -0.021596187725663185, -0.028396939858794212, -0.06362974643707275, 0.013039649464190006, 0.005878962576389313, -0.01627029851078987, -0.01051716785877943, -0.014561332762241364, 0.017522761598229408, 0.03506893292069435, 0.02380848117172718, -0.01284066028892994, 0.007345044985413551, -0.0070816767401993275, 0.005483909975737333, 0.004989363253116608, 0.011506262235343456, 0.023129576817154884, -0.0020630506332963705, 0.035888299345970154, -0.03822935000061989, 0.0029702074825763702, 0.030386831611394882, 0.01917320117354393, -0.017791980877518654, -0.027881909161806107, 0.035841479897499084, -0.01636394113302231, -0.08661885559558868, -0.02016814798116684, 0.0027434183284640312, -0.01566162519156933, 0.018295306712388992, -0.027647802606225014, -0.05435918644070625, -0.012653376907110214, -0.020882168784737587, -0.041062019765377045, 0.008181970566511154, 0.036216046661138535, 0.05295455455780029, 0.0008654569974169135, 0.0038071328308433294, 0.016328824684023857, -0.030527295544743538, -0.016282005235552788, -0.02968451753258705, 0.05379733443260193, 0.027835087850689888, -0.023328565061092377, 0.0014872985193505883, 0.013414218090474606, 0.041272714734077454, -0.02364460751414299, 0.019781874492764473, -0.010400115512311459, -0.00385688035748899, 0.029965443536639214, 0.014128237962722778, -0.043122146278619766, -0.013554681092500687, 0.0192551389336586, -0.01755787618458271, 0.029473822563886642, -0.018084613606333733, -0.003968080040067434, -0.020718295127153397, 0.00782496016472578, 0.009323232807219028, 0.019032739102840424, -0.030667757615447044, 0.010558136738836765, 0.04841291904449463, -0.04431607946753502, 0.0017279876628890634, -0.02537698484957218, -0.003930038306862116, -0.001245877705514431, -0.04419902712106705, 0.01335569191724062, -0.040102191269397736, 0.030714578926563263, -0.026617741212248802, -0.007514771074056625, 0.0021523030009120703, -0.016492698341608047, 0.01194520853459835, -0.03424956649541855, -0.003374038729816675, -0.052814092487096786, 0.009422726929187775, -0.02406599558889866, 0.0219122301787138, 0.01440916396677494, -0.01984040066599846, 0.026687972247600555, -0.017651518806815147, 0.010751273483037949, 0.0005739231128245592, 0.02401917614042759, 0.028724687173962593, 0.032657649368047714, -0.021221620962023735, -0.03991490602493286, -0.009457843378186226, 0.01569674164056778, -0.01333228126168251, -0.027226414531469345, -0.005685825832188129, -0.016820445656776428, 0.01090929377824068, -0.027062540873885155, -0.025330163538455963, -0.021666420623660088, 0.00849215965718031, -0.004685026593506336, -0.007778139319270849, -0.02315298654139042, 0.004143659025430679, 0.04492475464940071, -0.007140203379094601, 0.007643529213964939, 0.009440285153687, -0.02666456252336502, 0.019934043288230896, 0.017745161429047585, -0.032821524888277054, 0.010400115512311459, 0.016750214621424675, -0.002961428603157401, 0.0042255958542227745, 0.05365687236189842, 0.030457062646746635, -0.022286798804998398, -0.02827988751232624, 0.010025547817349434, -0.013964364305138588, -0.007549887057393789, -0.02703912928700447, 0.030620936304330826, -0.006121846381574869, -0.012501208111643791, -0.0019123454112559557, -0.03132325038313866, -0.01793244481086731, -0.04543978348374367, -0.0023834817111492157, -0.03645015135407448, 0.03921259194612503, 0.03097209520637989, -0.008135149255394936, 0.019910631701350212, -0.0026834288146346807, -0.02397235482931137, -0.002136208349838853, 0.010751273483037949, 0.012793839909136295, 0.0165278147906065, 0.04433949291706085, -0.007105087395757437, -0.04991118982434273, -0.010862473398447037, 0.0462123304605484, 0.020612947642803192, -0.048178814351558685, 0.04443313181400299, -0.01113754604011774, 0.011845714412629604, 0.033055629581213, -0.003555470146238804, 0.025985658168792725, 0.025704732164740562, 0.01710137166082859, 0.017089666798710823, 0.0051620155572891235, -0.004175848327577114, 0.019536064937710762, -0.006701256148517132, -0.02253260836005211, 0.05019211769104004, 0.008451191708445549, 0.009844115935266018, 0.006988035049289465, -0.010037252679467201, -0.005753131117671728, 0.03195533528923988, 0.024627847597002983, -0.005998941138386726, -0.007374308072030544, -0.002283987123519182, 0.01912637986242771, 0.030901862308382988, -0.03085504285991192, -0.012255397625267506, -0.019489243626594543, 0.02211122028529644, 0.00032884441316127777, 0.010558136738836765, -0.010786389000713825, 0.002800481393933296, -0.03916576877236366, -0.0032306492794305086, 0.004635279532521963, -0.004690879490226507, 0.01203299779444933, 0.011084873229265213, 0.001043230528011918, -0.05581063777208328, -0.013121586292982101, -0.039610568434000015, 0.0003785917069762945, 0.005437089130282402, 0.046352796256542206, -0.0006448861677199602, 0.006970477290451527, -0.027437109500169754, 0.018482591956853867, 0.0017221351154148579, 0.0077956970781087875, -0.004088059067726135, 0.036590613424777985, 0.019969157874584198, 0.018775222823023796, -0.01478373259305954, -0.020566126331686974, 1.617473753867671e-05, -0.0020849979482591152, -0.01569674164056778, 0.006268161814659834, -0.02149084024131298, 0.014467690140008926, 0.02286035567522049, -0.02211122028529644, 0.0016679982654750347, 0.016832150518894196, 0.009633421897888184, -0.022579429671168327, 0.009094980545341969, 0.005504394415766001, -0.01287577673792839, 0.03328973427414894, 0.02806919254362583, 0.030831631273031235, -0.004924984648823738, -0.002077682176604867, -0.0011734514264389873, 0.01718330942094326, -0.03872096911072731, 0.014514511451125145, -0.019945748150348663, -0.011482851579785347, -0.022591134533286095, 0.016633162274956703, -0.010833210311830044, -0.008439485915005207, -0.0043338690884411335, -0.050285760313272476, 0.012852366082370281, -0.023293450474739075, 0.0631147176027298, -0.01203299779444933, 0.018775222823023796, 0.027975549921393394, -0.0068534244783222675, -0.020226674154400826, -0.0230710506439209, -0.006876835133880377, 0.00047918371274136007, -0.002061587292701006, -0.008129296824336052, -0.03954033926129341, 0.004787447862327099, -0.009264706633985043, -0.027881909161806107, -0.0005003995029255748, -0.0125246187672019, 0.0032599123660475016, -0.02902902290225029, -0.00863262265920639, 0.030012264847755432, -0.02406599558889866, -0.010821504518389702, -0.0200393907725811, -0.019325369969010353, 0.0015787457814440131, 0.02360949106514454, 0.025821784511208534, 0.004161216784268618, -0.06138233840465546, 0.03764408826828003, 0.0070582665503025055, -0.02227509208023548, -0.0015567983500659466, 0.006824161391705275, -0.03146371617913246, -0.028584223240613937, -0.007865929044783115, 0.025189699605107307, -0.015287058427929878, -0.029263127595186234, 0.01314499694854021, -0.007666939403861761, -0.01556798443198204, -0.02488536387681961, 0.013987774960696697, -0.014842258766293526, -0.004892794881016016, -0.014912489801645279, 0.003125302027910948, -0.012290514074265957, -0.02568132057785988, -0.0010088463313877583, 0.013660028576850891, 0.010634221136569977, -0.04298168048262596, -0.022005872800946236, -0.0024771238677203655, 0.04558024927973747, 0.011272156611084938, 0.0038802907802164555, 0.016094719991087914, 0.02302422933280468, 0.012887481600046158, 0.01858793944120407, -0.00667784595862031, -0.0017733455169945955, -0.02853740192949772, -0.014865669421851635, 0.0226964820176363, 0.014491100795567036, 0.008761380799114704, 0.0009049622458405793, -0.001199056627228856, -0.009990432299673557, -0.037129055708646774, 0.010329884476959705, 0.012430977076292038, -0.003789575072005391, 0.002671723486855626, 0.013800491578876972, -0.014772026799619198, 0.018985917791724205, -0.015322173945605755, 0.0323767252266407, -0.01556798443198204, 0.0003756654041353613, -0.01698431931436062, 0.013051355257630348, -0.005603889003396034, 0.01826019212603569, 0.01760469749569893, -0.013098175637423992, -0.020671473816037178, 0.01669168844819069, 0.02289547212421894, 0.00029555760556831956, -0.004807931836694479, 0.00807662308216095, -0.00863262265920639, -0.003555470146238804, 0.004486037418246269, -0.03483482822775841, 0.0043046060018241405, -0.011986177414655685, 0.001580208889208734, 0.004216816741973162, -0.006186225451529026, 0.020765116438269615, 0.01051716785877943, 0.0076552340760827065, 0.0468912348151207, -0.008375107310712337, 0.016820445656776428, 0.020355431362986565, 0.01080394722521305, -0.012501208111643791, 0.009159359149634838, -0.016867266967892647, -0.030667757615447044, -0.014081417582929134, 0.0051122684963047504, -0.004661616403609514, 0.02638363651931286, -0.02128014713525772, -0.02252090349793434, 0.03652038425207138, -0.018330423161387444, -0.0047640372067689896, -0.013542975299060345, -0.009153506718575954, 0.025447215884923935, 0.03183828294277191, -0.005448794458061457, -0.01157649327069521, -0.0009298358927480876, -0.006993887480348349, 0.0017440824303776026, 0.003906627651304007, 0.015310468152165413, -0.004922057967633009, -0.015766972675919533, 0.033804766833782196, -0.0005589257343672216, -0.028139423578977585, -0.014725206419825554, 0.02149084024131298, -0.009393463842570782, 0.020238379016518593, 0.026149531826376915, -0.00973291601985693, -0.023504143580794334, 0.0020484188571572304, -0.007192876655608416, -0.008603359572589397, 0.007362603209912777, -0.0020162295550107956, 0.011476999148726463, 0.010458641685545444, 0.01644587703049183, -0.023878712207078934, -0.0014960773987695575, 0.008228791877627373, -0.016223477199673653, 0.006473003886640072, -0.026968898251652718, 0.0011076093651354313, -0.0010300620924681425, -0.021069452166557312, 0.011330682784318924, -0.03254059702157974, -0.019992569461464882, -0.009563189931213856, -0.058573078364133835, -0.010423526167869568, -0.005990162491798401, -0.0508476123213768, -0.022392146289348602, -0.0031370073556900024, -0.008094181306660175, -0.0017909033922478557, -0.0005113731604069471, -0.021982461214065552, -0.010850767605006695, -0.01590743660926819, 0.0014697406440973282, -0.008644328452646732, -0.0020279346499592066, -0.006180372554808855, 0.003678375156596303, -0.03172123059630394, 0.004486037418246269, -0.026219762861728668, -0.01581379398703575, -0.0006028204225003719, -0.012138345278799534, -0.01858793944120407, -0.016996024176478386, -0.004924984648823738, 0.028560813516378403, 0.028958791866898537, 0.017358887940645218, -0.005346373654901981, 0.009440285153687, 0.055670175701379776, -0.007181171793490648, 0.0269923098385334, 0.027764854952692986, -0.014338932931423187, -0.006660287734121084, 0.0019445348298177123, -0.007116792723536491, -0.009615863673388958, 0.022040987387299538, 0.010405967943370342, 0.01710137166082859, 0.0038510276935994625, 0.0010417673038318753, -0.0006920729647390544, -0.014842258766293526, -0.0021127979271113873, -0.0043953219428658485, 0.007637676317244768, -0.022122925147414207, -0.019348779693245888, -0.021315261721611023, 0.018213370814919472, 0.022474082186818123, -0.014772026799619198, 0.003186754649505019, 0.013425922952592373, 0.026196351274847984, -0.009820705279707909, -0.03984467312693596, 0.023363681510090828, 0.021022630855441093, 0.028139423578977585, -0.040898147970438004, -0.026524098590016365, 0.03467095270752907, -0.015298763290047646, 0.03291516751050949, 0.027320057153701782, -0.02343391254544258, -0.01459644827991724, 0.03258742019534111, -0.004389469046145678, -0.02037884294986725, 0.03647356107831001, 0.019102970138192177, 0.027764854952692986, 0.0009642200893722475, 0.00046638111234642565, -0.018295306712388992, -0.015579689294099808, 0.0015363142592832446, 0.029473822563886642, 0.011997882276773453, -0.006742224562913179, 0.048506561666727066, -0.0007557203061878681, 0.005375636741518974, 0.00012272223830223083, 0.022883765399456024, -0.009288116358220577, 0.008041507564485073, 0.025915425270795822, -0.002183029428124428, 0.00395637471228838, -0.03813570737838745, -0.02832670696079731, -0.005639004521071911, 0.03127643093466759, 0.0006975597934797406, -0.024089407175779343, 0.03249377757310867, -0.010985378175973892, 0.0028648602310568094, 0.005782394204288721, 0.023656312376260757, 0.00658420380204916, 0.010119189508259296, 0.005981383379548788, 0.0077722868882119656, 0.002090850379317999, -0.000945930602028966, 0.007362603209912777, -0.007233845070004463, 0.004933763295412064, -0.004980584140866995, -0.012231987901031971, 0.02000427432358265, 0.015123184770345688, 0.029005613178014755, -0.014303816482424736, -0.03251718729734421, -0.005990162491798401, -0.032283082604408264, 0.014479395933449268, 0.002153766108676791, -0.023059343919157982, -0.01636394113302231, 0.029286539182066917, -0.02746051922440529, -0.011588199064135551, 0.011500408872961998, 0.009135948494076729, -0.02335197664797306, -0.018295306712388992, 0.006753929890692234, -0.029099253937602043, 0.00762011855840683, 0.012653376907110214, -0.020226674154400826, 0.02790531888604164, 0.01680874079465866, 0.0407576858997345, -0.017452528700232506, 0.0006170861888676882, -0.008386812172830105, -0.008925254456698895, -0.03200215846300125, 0.03623945638537407, -0.000883746484760195, 0.01863476075232029, 0.01488907914608717, -0.0018991769757121801, -0.006806603632867336, 0.015509458258748055, -0.030550705268979073, -0.03483482822775841, -0.030129317194223404, 0.002482976298779249, 0.0014229195658117533, -0.005346373654901981, 0.030340010300278664, -0.011406767182052135, 0.03733975067734718, 0.01876351796090603, 0.006203783210366964, 0.011002936400473118, -0.012290514074265957, -0.013250344432890415, 0.023164691403508186, 0.016223477199673653, -0.01586061529815197, 0.008433633483946323, -0.016036193817853928, 0.02530675381422043, 0.007743023801594973, 0.03446025773882866, -0.010552284307777882, 0.024159638211131096, -0.025353573262691498, 0.007532329298555851, 0.034109100699424744, -0.0049074264243245125, 0.03914235904812813, -0.01360150147229433, -0.013449333608150482, 0.002721470780670643, 0.04813199117779732, -0.0007513308082707226, 0.009656832553446293, -0.003646185854449868, 0.020343726500868797, -0.025540858507156372, -0.00603405712172389, 0.006379361730068922, 0.022497491911053658, 0.01739400252699852, 0.0009056937997229397, 0.006765635218471289, -0.03275129199028015, 0.004614795092493296, 0.013215228915214539, 0.011851566843688488, 0.00019459979375824332, 0.020718295127153397, 0.01397607009857893, -0.025330163538455963, 0.03888484463095665, -0.0001517110358690843, -0.001985503127798438, -0.00609843572601676, 0.0041056168265640736, -0.02202928252518177, -0.004529932048171759, 0.00105347263161093, 0.005671194288879633, -0.017990970984101295, -0.023047639057040215, -0.028724687173962593, 0.04218572378158569, -0.02256772480905056, 0.015930846333503723, 0.014210174791514874, -0.02617294155061245, -0.003602290991693735, -0.0462825633585453, -0.017218424007296562, -0.0018830823246389627, -0.02008621022105217, 0.04270075634121895, 0.030948683619499207, 0.021420609205961227, -0.0015919142169877887, 0.010915147140622139, 0.004336795769631863, -0.003959301393479109, 0.024534206837415695, 0.01459644827991724, 0.0023381239734590054, 0.008029802702367306, -0.00996116828173399, -0.0006459835567511618, 0.007345044985413551, 0.015848910436034203, 0.011172662489116192, -0.017733454704284668, -0.015006132423877716, 0.0007886412786319852, 0.016738509759306908, 0.03026977926492691, -0.02206439897418022, -0.013578091748058796, -0.005600962787866592, -0.041389767080545425, 0.02530675381422043, -0.0005720941699109972, -0.0430753231048584, 0.008082475513219833, 0.00948125310242176, 0.0027902391739189625, -0.041764337569475174, 0.016328824684023857, 0.025189699605107307, -0.01718330942094326, 0.03209579735994339, -0.0038773645646870136, 0.00577654130756855, -0.0037105646915733814, -0.05482739582657814, 0.01001969538629055, 0.009996284730732441, 0.01814313977956772, -0.036590613424777985, -0.002080608392134309, 0.0012897723354399204, 0.011933503672480583, 0.003207238856703043, -0.012571440078318119, 0.01660975068807602, -0.010897588916122913, 0.0017660297453403473, 0.024042585864663124, 0.0018977138679474592, -0.034436848014593124, -0.007497213315218687, 0.012114934623241425, -0.01024794764816761, -0.045205678790807724, -0.03181487321853638, 0.0014565722085535526, -0.027483928948640823, 0.014420869760215282, 0.004301679786294699, -0.03328973427414894, -0.01954776979982853, 0.04005536809563637, -0.04593140631914139, -0.016539519652724266, 0.010013842023909092, -0.004178774543106556, 0.002342513296753168, -0.018108023330569267, 0.014315522275865078, -0.04543978348374367, 0.011693545617163181, -0.021139683201909065, -0.032821524888277054, 0.01706625707447529, 0.005314183887094259, -0.012700197286903858, 0.0038832169957458973, 0.00246395543217659, -0.02401917614042759, 0.019056148827075958, -0.016750214621424675, 0.014350637793540955, 0.0006664677639491856, -0.033687714487314224, -0.012079819105565548, 0.032938577234745026, 0.026430457830429077, 0.02033202163875103, -0.025447215884923935, -0.01859964430332184, 0.024698080494999886, -0.025611089542508125, -0.009849969297647476, 0.005659488961100578, 0.005071300081908703, -0.008550685830414295, 0.012372450903058052, -0.010259652510285378, -0.024463975802063942, 0.03949351608753204, -0.0008500938420183957, -0.0049132793210446835, -0.00681245606392622, -0.034717775881290436, 0.006156961899250746, -0.014210174791514874, 0.01817825436592102, -0.00033030755002982914, 0.009528074413537979, 0.015755267813801765, 0.013063060119748116, -0.022099513560533524, -0.022556018084287643, -0.004936689510941505, 0.0033038072288036346, -0.018857158720493317, -0.01937219128012657, -0.015415815636515617, -0.040804505348205566, 0.0027068392373621464, 0.01759299263358116, -0.003453049110248685, 0.0030228812247514725, -0.029871800914406776, 0.009914347901940346, 0.007906896993517876, -0.004989363253116608, 0.029099253937602043, -0.005609741434454918, 0.001486566849052906, 0.025915425270795822, -0.012161755934357643, -0.007883486337959766, 0.027928728610277176, -0.02406599558889866, 0.001824556034989655, 0.0016636088257655501, 0.02811601385474205, -0.01169939897954464, 0.01209152489900589, 0.034109100699424744, 0.005050816107541323, 0.0074620977975428104, 0.006900245789438486, -0.020191557705402374, 0.014444279484450817, 0.00996116828173399, -0.0023498290684074163, 0.01035329420119524, 0.0020645137410610914, -0.005630225874483585, -0.019102970138192177, 0.0021318187937140465, 0.002004524227231741, -0.023656312376260757, 0.004360205959528685, 0.01144773606210947, -0.0010139673249796033, 0.005835067480802536, -0.00879649631679058, -0.04588458314538002, -0.021432314068078995, 0.015614804811775684, 0.03118278831243515, -0.0001514366886112839, -0.025119468569755554, -0.009352495893836021, 0.030293190851807594, 0.001493882737122476, 0.00011156567779835314, -0.01553286798298359, -0.014912489801645279, -0.00025129711139015853, 0.0026863550301641226, 0.016715098172426224, -0.003546691033989191, 0.011418472975492477, -0.006935361307114363, 0.0037486066576093435, -0.013484449125826359, 0.012512913905084133, 0.019196612760424614, -0.0003983443311881274, -0.003011175896972418, 0.054265543818473816, 0.0230710506439209, 0.038650739938020706, -0.015673331916332245, -0.003180901985615492, -0.00908912718296051, -0.015263647772371769, 0.01685556210577488, 0.023749954998493195, 0.0461421012878418, 0.02703912928700447, -0.006350098643451929, 0.023340269923210144, 0.007807402405887842, -0.03214262053370476, 0.008211233653128147, -0.01713648810982704, 0.02940359152853489, 0.02029690518975258, -0.011313125491142273, 0.007901044562458992, -0.004433363676071167, 0.027764854952692986, 0.014034596271812916, 0.011681840755045414, 0.0009386148303747177, 0.03127643093466759, -0.0020074506755918264, 0.0024420081172138453, 0.04443313181400299, -0.012079819105565548, 0.01027135830372572, -0.0059111518785357475, -0.00863262265920639, 0.0192551389336586, -0.01672680303454399, 0.006373509299010038, -0.0010161621030420065, 0.011336536146700382, -0.012571440078318119, 0.005393194500356913, 0.016083015128970146, -0.006876835133880377, -0.023574376478791237, -0.00908912718296051, -0.017745161429047585, 0.001086393604055047, 0.001275140792131424, -0.015193415805697441, 0.0058555519208312035, -0.022040987387299538, 0.0017235982231795788, 0.017159897834062576, 0.010183568112552166, -0.00805321242660284, 0.025002416223287582, 0.03591170907020569, -0.03129984065890312, 0.012571440078318119, -0.00272732344456017, 0.012056408450007439, 0.008117591962218285, -0.01478373259305954, 0.014303816482424736, 0.007807402405887842, 0.015392404980957508, 0.010610810481011868, 0.005852625705301762, 0.01203299779444933, -0.0037105646915733814, 0.02033202163875103, 0.001787977060303092, 0.01566162519156933, -0.018822044134140015, 0.039329644292593, 0.0023381239734590054, -0.02650068886578083, -0.02029690518975258, 0.0014785195235162973, 0.0254238061606884, -0.008831611834466457, 0.012723607942461967, 0.004187553655356169, -0.0035057226195931435, -0.009569043293595314, -0.0184708870947361, 0.013051355257630348, 0.025868605822324753, 0.002699523465707898, -0.014631563797593117, -0.011330682784318924, 0.005006921011954546, -0.00927641149610281, -0.04377764090895653, 0.0007337729330174625, 0.0068534244783222675, 0.014924195595085621, 0.009937758557498455, 0.009007190354168415, 0.007889339700341225, 0.00819952879101038, -0.017300361767411232, 0.007918602786958218, -0.002361534396186471, 0.0036842278204858303, 0.01521682646125555, -0.009890937246382236, -0.03160417824983597, 0.005103489384055138, -0.019360484555363655, -0.003593512112274766, -0.007362603209912777, 0.010417673736810684, -0.007122645154595375, -0.016492698341608047, -0.00908912718296051, -0.00948125310242176, 0.014303816482424736, 0.012758723460137844, 0.012372450903058052, -0.01072786282747984, 0.014256996102631092, -0.0031662704423069954, -0.008123444393277168, 0.019278548657894135, 0.05061350762844086, 0.0107688307762146, -0.003567175241187215, 0.0063091302290558815, 0.00011165712203364819, 0.0415770523250103, 0.04017242044210434, -0.015884025022387505, -0.032446954399347305, -0.007467950228601694, -0.020882168784737587, 0.02671138383448124, 0.01577867940068245, -0.016047898679971695, 0.015158300288021564, -0.004919131752103567, 0.00045869953464716673, 0.01726524531841278, -0.007157761137932539, 0.04682100564241409, 0.00013616499199997634, 0.045322731137275696, 0.0018889348721131682, 0.001136872568167746, -0.011043904349207878, -0.0006840256392024457, 0.022602839395403862, 0.004014901351183653, 0.006051614880561829, 0.005246879067271948, 0.006162814795970917, -0.0021391345653682947, 0.0021976609714329243, 0.025166289880871773, 0.0200393907725811, 0.01538070011883974, -0.010827356949448586, -0.007830812595784664, -0.006367656867951155, 0.009867526590824127, 0.03176805004477501, 0.00872041191905737, -0.030129317194223404, -0.01669168844819069, 0.002962891710922122, 0.009498811326920986, -0.027179593220353127, 0.002737565664574504, 0.01362491212785244, -0.01610642485320568, -0.014210174791514874, -0.014561332762241364, -0.003180901985615492, 0.013238638639450073, 0.033804766833782196, -0.047101929783821106, -0.00021636424935422838, 0.02870127558708191, 0.0051064155995845795, 0.01884545385837555, 0.012407566420733929, 0.005837994161993265, -0.004023679997771978, -0.017710044980049133, 0.009282263927161694, 0.020402252674102783, 0.01793244481086731, -0.004541637375950813, -0.002283987123519182, -0.03481141850352287, 0.002595639554783702, -0.011430177837610245, 0.008369254879653454, 0.018704991787672043, -0.017124783247709274, -0.001377561711706221, -0.0032306492794305086, -0.0007915676105767488, -0.01254802942276001, -0.014994426630437374, 0.009586600586771965, -0.01884545385837555, -0.001139798783697188, -0.004807931836694479, -0.018154844641685486, -0.0029394812881946564, -0.013718554750084877, 0.01789732836186886, 0.015673331916332245, -0.00515616312623024, 0.00237031327560544, -0.002804870717227459, -0.0005380757502280176, 0.023550964891910553, 0.029052432626485825, -0.01938389614224434, -0.01863476075232029, -0.0035496174823492765, 0.0068592773750424385, 0.005159089341759682, 0.006502266973257065, 0.017710044980049133, -0.014608153142035007, 0.03719928860664368, -0.000488694233354181, 0.005682899616658688, 0.03867414966225624, 0.018775222823023796, -0.010569841600954533, 0.011564788408577442, -0.005416605155915022, -0.030527295544743538, -0.02302422933280468, 0.003289175685495138, -0.00020941425464116037, -0.003546691033989191, -0.02650068886578083, 0.015181710943579674, -0.009223737753927708, -0.01395265944302082, -0.01922002248466015, -0.031089147552847862, -0.024744901806116104, 0.006502266973257065, 0.027390288189053535, 0.024463975802063942, 0.003687154036015272, -0.004837194923311472, -0.03609899431467056, -0.0028824179898947477, -0.009223737753927708, 0.027132771909236908, 0.017815392464399338, -0.027437109500169754, -0.014315522275865078, -0.03628627955913544, -0.006467151455581188, 0.020765116438269615, 0.016878971830010414, -0.02149084024131298, 0.040898147970438004, 0.03134666383266449, 0.008802348747849464, -0.020928988233208656, 0.0016636088257655501, 0.017651518806815147, -0.01598937250673771, -0.03375794366002083, -0.0028092602733522654, -0.0005911152111366391, 0.0009320306126028299, -6.435601790144574e-06, 0.008135149255394936, -0.01859964430332184, -0.023082755506038666, 0.00819952879101038, 0.011705251410603523, 0.0027317130006849766, 0.00729822413995862, 0.01333228126168251, 0.023047639057040215, 0.01656293123960495, -0.003733975114300847, -0.016164951026439667, 0.0037983539514243603, 0.03801865503191948, 0.005659488961100578, 0.0003873706446029246, -0.01113754604011774, -0.003976859152317047, -0.0031457862351089716, 0.011594051495194435, 0.004073427524417639, -0.01099708303809166, -0.007743023801594973, -0.011547230184078217, -0.021397199481725693, 0.03113596886396408, -0.02832670696079731, 0.004301679786294699, -0.0024405447766184807, -0.009639274328947067, -0.005805804394185543, -0.0038012803997844458, -0.003423786023631692, 0.016375645995140076, 0.0061686672270298, 0.01219687145203352, -0.0019430717220529914, -0.0036052174400538206, -0.036707669496536255, 0.001562651013955474, 0.018704991787672043, -0.027226414531469345, -0.016867266967892647, -0.021315261721611023, -0.0016255667433142662, -0.012185166589915752, -0.001675314037129283, -0.003385743824765086, -0.031416893005371094, -0.016738509759306908, 0.01974675804376602, 0.01930195838212967, -0.008117591962218285, -0.04021924361586571, 0.018704991787672043, -0.00934079010039568, -0.013051355257630348, -0.003028733655810356, -0.004919131752103567, 0.018915686756372452, 0.02919289655983448, -0.019887221977114677, 0.026734793558716774, 0.01826019212603569, -0.004986437037587166, 0.000973730580881238, -0.046118687838315964, 0.012536323629319668, 0.018974212929606438, 0.02062465250492096, 0.004705511033535004, -0.030035674571990967, 0.02584519423544407, -0.01273531373590231, 0.033851586282253265, -0.0023381239734590054, -0.0008822833187878132, 0.023820186033844948, -0.014198469929397106, -0.002630755305290222, -0.011149251833558083, -0.011775482445955276, 0.014935900457203388, -0.0408279150724411, -0.014046301133930683, -0.011406767182052135, -0.023504143580794334, -0.02128014713525772, 0.03279811516404152, 0.015322173945605755, -0.007011445239186287, 0.017358887940645218, -0.036426741629838943, 0.003450122894719243, -0.01884545385837555, 0.0005047889426350594, -0.00032134572393260896, -0.027881909161806107, 0.01573185808956623, -0.016574636101722717, -0.006063320208340883, -0.013086470775306225, -0.016761919483542442, 0.005659488961100578, -0.013859017752110958, -0.008778938092291355, 0.04206867143511772, 0.019360484555363655, 0.009147653356194496, 0.0008500938420183957, -0.010341589339077473, 0.028256475925445557, 0.0018055349355563521, -0.021479135379195213, 0.004322164226323366, -0.023117871955037117, 0.03441343829035759, 0.0062857200391590595, 0.025283342227339745, -0.017873918637633324, -0.0020191557705402374, -0.01912637986242771, 0.01793244481086731, 0.01987551711499691, -0.0011024883715435863, 0.007023150566965342, -0.026945488527417183, 0.00128904078155756, -0.003379891160875559, 0.017546171322464943, -0.014280406758189201, 0.0053668576292693615, -0.03593512251973152, -0.03879120200872421, 0.0053375945426523685, 0.006344246212393045, -0.031487125903367996, 0.01859964430332184, -0.008480454795062542, 0.00023300765315070748, 0.0177217498421669, -0.021256735548377037, -0.006759782321751118, -0.004401174373924732, -0.004758184775710106, 0.008334138430655003, 0.053610049188137054, 0.017335476353764534, 0.04120248556137085, -0.024463975802063942, 0.007754729129374027, 0.04323919862508774, -0.011418472975492477, -0.024159638211131096, -0.02344561740756035, 0.007122645154595375, 0.0012627040268853307, 0.0029219232965260744, 0.0020250084344297647, -0.012992829084396362, 0.007327487226575613, -0.005697531159967184, -0.022965703159570694, 0.007233845070004463, 0.01027135830372572, -0.013706848956644535, 0.01602448895573616, -0.009077422320842743, -0.005943341180682182, 0.007374308072030544, -0.009171064011752605, -0.014537922106683254, -0.0010264042066410184, -0.010511315427720547, 0.0086560333147645, 0.005243952386081219, -0.0057648359797894955, -0.013730259612202644, -0.003675448941066861, -0.00987337902188301, -0.008503864519298077, 0.021830294281244278, -0.010142600163817406, -0.010429378598928452, -0.027554161846637726, -0.017452528700232506, 0.007901044562458992, 0.006367656867951155, -0.009727063588798046, 0.017990970984101295, 0.011617462150752544, 0.029497232288122177, -0.010265504941344261, 0.012231987901031971, -0.005121047608554363, -0.0007074361201375723, -0.02439374290406704, -0.0002834865590557456, -0.007614265661686659, -0.003265765029937029, 0.016410762444138527, 0.0028707128949463367, 0.030035674571990967, 0.028092602267861366, -0.0014807143015787005, -0.011336536146700382, 0.0019606295973062515, -0.05370369181036949, 0.009428579360246658, 0.003575954120606184, 0.011061462573707104, 0.00879649631679058, -0.009645126760005951, -0.012594849802553654, 0.015579689294099808, 0.021561073139309883, 0.001644587842747569, 0.006964624393731356, 0.007450392469763756, 0.016750214621424675, -0.04017242044210434, 0.03218943998217583, 0.011196073144674301, -0.005059594754129648, -0.0033096596598625183, 0.0023117871023714542, 0.019266843795776367, 0.01196861919015646, -0.004073427524417639, 0.010698599740862846, -0.003274543909355998, 0.015755267813801765, 0.014514511451125145, -0.006900245789438486, -0.013297165744006634, -0.012992829084396362, 0.008574096485972404, 0.026360224932432175, -0.01167598832398653, 0.026219762861728668, 0.016129836440086365, 0.01148870401084423, 0.010189421474933624, -0.0034150071442127228, -0.006625172216445208, -0.0001019637129502371, 0.009106685407459736, -0.009457843378186226, -0.006075025536119938, 0.0048781633377075195, 0.012594849802553654, -0.012922597117722034, -0.03144030645489693, -0.004360205959528685, 0.0028399864677339792, -0.010382558219134808, 0.0025371131487190723, -0.008872580714523792, 0.021561073139309883, 0.005475131329149008, -0.0014251143438741565, 0.0002798286732286215, -0.008913548663258553, 0.007034855894744396, -0.03965739160776138, 0.0008683833293616772, -0.003947596065700054, 0.006900245789438486, -0.016375645995140076, -0.00176749296952039, -0.0020820714998990297, 0.005521952174603939, -0.0016211773036047816, 0.0047201425768435, 0.011395062319934368, -0.02430010214447975, 0.0010337199782952666, 0.009662684984505177, 0.0070290034636855125, 0.024744901806116104, -0.0031106704846024513, 0.0034413437824696302, 0.008258054964244366, -0.010007989592850208, -0.0011632093228399754, -0.012313923798501492, 0.0009554411517456174, 0.01138920895755291, -0.008872580714523792, 0.011746219359338284, -0.009931905195116997, -0.011874977499246597, -0.0010556672932580113, 0.008369254879653454, -0.0058555519208312035, 0.0018508927896618843, 0.007538181729614735, 0.0034735333174467087, 0.012793839909136295, -0.010686893947422504, 0.019524358212947845, -0.01196861919015646, -0.008369254879653454, 0.014772026799619198, -0.013894133269786835, 0.02087046205997467, 0.01047619991004467, -0.0041348799131810665, 0.010880030691623688, 0.012114934623241425, -0.012208577245473862, 0.001588987885043025, -0.014877374283969402, -0.018459180369973183, -7.018578617135063e-05, 0.01178133487701416, -0.03118278831243515, 0.002443471224978566, -0.02065976895391941, -0.004755258094519377, 0.008181970566511154, -0.010013842023909092, 0.004904500208795071, -0.001966482261195779, 0.00018691823061089963, -0.023176398128271103, -0.004565048031508923, 0.012278808280825615, -0.03822935000061989, 0.00720458198338747, 0.005179573781788349, -0.026430457830429077, 0.03151053562760353, -0.01643417216837406, -0.0014170670183375478, 0.004632353316992521, 0.000168080092407763, -0.008784791454672813, -0.003075554734095931, -0.011769630014896393, 0.007450392469763756, -0.003640333190560341, -0.0005556336254812777, 0.03759726509451866, 0.009124243631958961, 0.017534466460347176, -0.010306473821401596, 0.010347441770136356, -0.016246888786554337, -0.03258742019534111, -0.009188622236251831, -0.009809000417590141, 0.007567444816231728, -0.019079558551311493, 0.007356750313192606, 0.0119276512414217, 0.008714559487998486, 0.004409953486174345, -0.033640891313552856, 0.027881909161806107, -0.028256475925445557, -0.026266584172844887, -0.010493758134543896, 0.003289175685495138, -0.005835067480802536, 0.009030601009726524, -0.010154305025935173, -0.010786389000713825, 0.014444279484450817, 0.038650739938020706, 0.0078015499748289585, -0.019641410559415817, -0.01610642485320568, 0.003906627651304007, 0.0015538721345365047, -0.001684093032963574, 0.03176805004477501, -0.0006924387416802347, -0.0015216825995594263, 0.016223477199673653, -0.025821784511208534, -0.011231188662350178, 0.011207778006792068, -0.000342195708071813, 0.01014845259487629, 0.02090557850897312, -0.004011974669992924, -0.015474341809749603, 0.018119728192687035, 0.014772026799619198, 0.009159359149634838, 0.003125302027910948, -0.01006066333502531, 0.03523280471563339, 0.012103229761123657, -0.010072368197143078, -0.019161496311426163, -0.0014309670077636838, 0.014912489801645279, 0.014280406758189201, 0.005401973612606525, -0.002718544565141201, 0.006367656867951155, 0.005018626339733601, 0.010686893947422504, 0.01180474553257227, -0.019243432208895683, -0.030246369540691376, -0.005241026170551777, -0.0010176253272220492, -0.002491755411028862, -0.016832150518894196, -0.031370073556900024, -0.018892275169491768, 0.016328824684023857, -0.015837205573916435, -0.0007944939425215125, -0.004172922112047672, 0.037129055708646774, -0.020893873646855354, -0.002444934332743287, -0.0017996823880821466, 0.008029802702367306, -0.0037661646492779255, 0.03560737520456314, -0.017698340117931366, 0.0010212832130491734, 0.01814313977956772, 0.005305405240505934, -0.003631554078310728, -0.005378562957048416, -0.01066348422318697, 0.0006320835673250258, -0.00021252346050459892, 0.005024479236453772, 0.0010278673144057393, 0.007895192131400108, 0.027928728610277176, 0.002605881541967392, 0.01111998874694109, 0.0185060016810894, -0.007643529213964939, 0.0076318238861858845, 0.0030023970175534487, -0.00992020033299923, 0.0013161092065274715, 0.012208577245473862, 0.0032511334866285324, -0.003894922323524952, -0.0019884295761585236, 0.029052432626485825, -1.4105741684034001e-05, 0.014608153142035007, 0.01148870401084423, 0.008193675428628922, 0.01254802942276001, 0.01268849242478609, -0.003818838158622384, -3.799634214374237e-05, -0.016328824684023857, 0.005990162491798401, 0.0076259709894657135, 0.008550685830414295, 0.00037054435233585536, -0.024417154490947723, -0.01105561014264822, 0.012676786631345749, 0.015837205573916435, -0.014362343586981297, 0.005346373654901981, -0.010762978345155716, 0.006180372554808855, -0.0057970257475972176, 0.005463426001369953, -0.0054868366569280624, 0.004096837714314461, -0.0024566396605223417, -0.004199258983135223, -0.013425922952592373, 0.005311257671564817, -0.002202050294727087, 0.03085504285991192, 0.009838263504207134, -0.0037017855793237686, 0.02206439897418022, -0.03431979566812515, -0.005987235810607672, -0.0004246811440680176, -0.005185426212847233, -0.002032324206084013, 0.01822507567703724, -0.00033780623925849795, 0.00798883382230997, -0.012009588070213795, 0.03176805004477501, -0.012934302911162376, 0.001880155992694199, -0.005966751836240292, -0.0037281224504113197, 0.0044245850294828415, -0.003289175685495138, -0.007175318896770477, 0.000505886331666261, -0.00236007128842175, -0.013987774960696697, -0.027015719562768936, 0.02173665165901184, 0.005545362830162048, 0.02037884294986725, 0.0165278147906065, 0.0016387351788580418, -0.0033096596598625183, 0.01941901259124279, 0.008088328875601292, 0.00894866418093443, -0.013156702741980553, -0.011664282530546188, -0.02720300294458866, 0.015450931154191494, 0.010119189508259296, -0.023199807852506638, 0.0044538481160998344, -0.0008778938208706677, 0.005633152090013027, 0.0023747028317302465, 0.027226414531469345, 0.0007564518600702286, 0.016410762444138527, -0.017206719145178795, 0.002266429364681244, 0.008006392046809196, -0.017862213775515556, 0.014467690140008926, -0.0006928045768290758, 0.0018289454746991396, 0.00269220769405365, 0.002551744692027569, -0.0037954277358949184, 0.000776204455178231, -0.010101632215082645, -0.022497491911053658, -0.002961428603157401, -0.029754748567938805, 0.014058006927371025, -0.01314499694854021, -0.0037983539514243603, -0.009820705279707909, 0.04040652886033058, 0.006028204225003719, -0.009165211580693722, 0.0018786927685141563, 0.0022898397874087095, 0.03254059702157974, 0.0034267122391611338, 0.0018567454535514116, 0.013671733438968658, -0.017124783247709274, -0.0038802907802164555, 0.012946007773280144, -0.009615863673388958, -0.031089147552847862, 0.005132752470672131, 8.225682540796697e-05, 0.018810339272022247, -0.022848650813102722, -7.635847578058019e-05, 0.008667738176882267, 0.0026292919646948576, -0.007982981391251087, -0.0051678684540092945, -0.0061159939505159855, 0.006215488538146019, -0.01066348422318697, -0.00609843572601676, -0.03574783727526665, -0.02612612023949623, -0.022918881848454475, 0.001729450887069106, -0.003894922323524952, -0.012922597117722034, -0.029216306284070015, -0.003947596065700054, 0.029707927256822586, 0.008158559910953045, -0.010546430945396423, -0.00559218367561698, -0.00027818261878564954, 0.018318718299269676, 0.013718554750084877, -0.011178514920175076, 0.0078015499748289585, -0.009258853271603584, 0.012583144940435886, -0.03146371617913246, -0.011172662489116192, -0.0017001876840367913, -0.00029372863355092704, 0.002171324100345373, -0.017522761598229408, 0.03640333190560341, -0.011623314581811428, 0.027928728610277176, 0.017312066629529, 0.006835866719484329, -0.00022331424406729639, 0.0027243972290307283, 0.020449073985219002, -0.00996116828173399, 0.008082475513219833, 0.026453867554664612, -0.011067315004765987, -0.02219315618276596, 0.006449593231081963, 0.0088433176279068, -0.01937219128012657, 0.008989633060991764, 0.0007703518494963646, -0.032657649368047714, 0.012969418428838253, 0.009364200755953789, -0.012278808280825615, -0.00752647640183568, 0.01333228126168251, -0.01440916396677494, 0.009551485069096088, -0.029848391190171242, 0.009440285153687, -0.005697531159967184, 0.021069452166557312, -0.006291572470217943, -0.006344246212393045, 0.026313405483961105, -0.018283601850271225, -0.03862733021378517, 0.013718554750084877, 0.01644587703049183, -0.027343466877937317, -0.010716157034039497, -0.004070501308888197, -0.019067853689193726, 0.014397459104657173, 0.009036453440785408, -0.012782134115695953, -0.001919661182910204, -0.012231987901031971, 0.013613207265734673, 0.012150051072239876, 0.0063149831257760525, 0.008433633483946323, 0.014186764135956764, 0.01660975068807602, -0.010183568112552166, -0.0070875296369194984, 0.025166289880871773, -0.0033067334443330765, 0.004041237756609917, -0.020238379016518593, -0.005600962787866592, -0.03645015135407448, 0.03677789866924286, 0.014865669421851635, -0.01080394722521305, 0.013156702741980553, 0.015099774114787579, -0.0056214467622339725, 0.00907156988978386, -0.00807662308216095, -0.02397235482931137, 0.011049756780266762, 0.03069116920232773, 0.0016123983077704906, -0.013027944602072239, 0.00015061366138979793, -0.014666679315268993, 0.010405967943370342, 0.007239697966724634, -0.00015180248010437936, 0.001739692990668118, 0.013613207265734673, -0.022872060537338257, 0.0037017855793237686, -6.09038834227249e-05, 0.009446137584745884, 0.0030521443113684654, -8.065649308264256e-05, 0.020097916945815086, 0.005914078094065189, -0.01217346079647541, -0.003783722408115864, -0.01607131026685238, 0.013343986123800278, 0.018529413267970085, 0.008252202533185482, -0.019079558551311493, 0.0025912499986588955, -0.0020367137622088194, -0.007661086972802877, 0.004769889637827873, -0.008451191708445549, 0.04185797646641731, 0.011231188662350178, -0.013765375129878521, -0.024206459522247314, 0.008386812172830105, 0.0006887808558531106, 0.01314499694854021, -0.00658420380204916, 0.004228522069752216, -0.04071086272597313, 0.008661885745823383, -0.014011185616254807, -0.0028443760238587856, 0.007538181729614735, 0.010979525744915009, -0.0037573855370283127, 0.015638215467333794, 0.0123373344540596, 0.01776857115328312, 0.01739400252699852, 0.007380160968750715, 0.016925793141126633, 0.01064007356762886, -5.083897121949121e-06, -0.002303008222952485, 0.005437089130282402, -0.011617462150752544, 0.004093911498785019, 0.005346373654901981, 0.022907176986336708, 0.039610568434000015, -0.000982509576715529, 0.010839062742888927, -0.019348779693245888, -0.005378562957048416, -0.003792501287534833, 0.010072368197143078, 0.004017827566713095, 0.005791172850877047, 0.000582336273510009, 0.0009451990481466055, 0.0020352506544440985, -0.013542975299060345, 0.004158290568739176, -0.007192876655608416, 0.0012407565955072641, 0.019805284217000008, -0.0024244501255452633, -0.02961428463459015, 0.0030989651568233967, -0.0316275879740715, -0.010002137161791325, -0.007532329298555851, 0.005758983548730612, 0.0025561342481523752, -0.01922002248466015, 0.01089173648506403, 0.01488907914608717, -0.01134824100881815, -0.004061722196638584, 0.0018582086777314544, -0.005925783421844244, -0.01130727306008339, -0.011611608788371086, -0.028958791866898537, -0.016703393310308456, 0.025283342227339745, -0.01424529030919075, 0.006127698812633753, 0.007895192131400108, 0.010007989592850208, -0.02881832793354988, 0.009902642108500004, -0.006303277797996998, 0.009809000417590141, -0.006783192977309227, 0.037456803023815155, -0.013905838131904602, -0.0035788805689662695, -0.004848900251090527, -0.010874178260564804, 0.023925533518195152, -0.000888867536559701, 0.012255397625267506, 0.007953718304634094, -0.015638215467333794, 0.008064918220043182, -0.010464494116604328, 0.01381219644099474, 0.01542752142995596, 0.018213370814919472, -0.009106685407459736, -0.007339192554354668, 0.002136208349838853, -0.03780796006321907, 0.007046561222523451, 0.015263647772371769, 0.00908912718296051, 0.0070816767401993275, 0.0009759253007359803, 0.016492698341608047, -0.012629966251552105, -0.012243692763149738, -0.004450921900570393, -0.014842258766293526, -0.009153506718575954, -0.018236780539155006, -0.019067853689193726, 0.002586860442534089, 0.024627847597002983, 0.009814852848649025, -0.007930307649075985, -0.003567175241187215, -0.012992829084396362, -0.013390807434916496, 0.00391248008236289, 0.005100563168525696, 0.01027135830372572, -0.004965952597558498, -0.004014901351183653, -0.005960898939520121, 0.0033915964886546135, 0.008181970566511154, 0.00015335707576014102, 0.0025824711192399263, 0.00026940368115901947, -0.005896520335227251, 0.0005633152322843671, 0.00589066743850708, 0.004246079828590155, 0.022134630009531975, 0.007760581560432911, -0.0012407565955072641, 0.0050537423230707645, 0.00010187226143898442, 0.000743283424526453, -0.008661885745823383, 0.02654751017689705, 0.0036608173977583647, -0.029005613178014755, -0.017651518806815147, -0.009200327098369598, 0.01333228126168251, -0.00504203699529171, -0.022333620116114616, -0.014116533100605011, -0.0015260721556842327, 0.028911970555782318, -0.0020747557282447815, 0.011880829930305481, 0.016328824684023857, 0.004278269130736589, -0.005440015345811844, -0.03209579735994339, -0.0024581027682870626, -0.00985582172870636, 0.02016814798116684, -0.009650979191064835, -0.015556278638541698, -0.00894866418093443, -0.012372450903058052, -0.011313125491142273, -0.004351427312940359, -0.02090557850897312, -0.02687525749206543, 4.700389763456769e-05, 0.007099234964698553, 0.021233325824141502, -0.01830701343715191, 0.03279811516404152, 0.005659488961100578, -0.02919289655983448, -0.025142880156636238, -0.01594255119562149, 0.004521153401583433, -0.00019697743118740618, 0.00534052075818181, 0.0017353034345433116, -0.01298112329095602, -0.010230389423668385, 0.012828955426812172, -0.006631024647504091, -0.03434320539236069, 0.02530675381422043, -0.008603359572589397, 0.006970477290451527, -0.04026606306433678, -1.7489292076788843e-05, -0.006554940715432167, 0.008211233653128147, 0.0076552340760827065, 0.01871669664978981, -0.009393463842570782, -0.0028824179898947477, -0.019138086587190628, -0.00921203289180994, -0.025517446920275688, 0.01789732836186886, 0.019325369969010353, -0.005068373866379261, -0.013589796610176563, 0.011617462150752544, -0.018974212929606438, -0.005261510610580444, 0.001730913994833827, 0.010441084392368793, -0.003186754649505019, 0.011359945870935917, -0.008135149255394936, 0.006075025536119938, 0.008673591539263725, -0.010318178683519363, 0.0023659239523112774, 0.0009708042489364743, 0.012349040247499943, -0.003962227609008551, -0.00564193120226264, -0.016996024176478386, -0.01399948075413704, 0.013519564643502235, -0.036005351692438126, -0.029309948906302452, 0.028467170894145966, 0.006320835556834936, 0.01397607009857893, -0.021174799650907516, 0.02070658840239048, 0.004652837291359901, -0.021830294281244278, 0.001496808952651918, 0.01868158020079136, -0.024417154490947723, -0.0030697020702064037, 0.01971164345741272, -0.019067853689193726, 0.024112816900014877, 0.02853740192949772, 0.011956914328038692, -0.009656832553446293, -0.005843846593052149, 0.014116533100605011, 0.002737565664574504, 0.0016387351788580418, 0.016738509759306908, -0.009914347901940346, -0.007877633906900883, -0.0042343745008111, 0.012372450903058052, -0.013554681092500687, 0.0013951195869594812, 0.02129185199737549, -0.006935361307114363, 0.00729822413995862, -0.03628627955913544, -0.028139423578977585, 0.021303556859493256, -0.01710137166082859, -0.013121586292982101, 0.027600983157753944, 0.010569841600954533, 0.01153552532196045, -0.009996284730732441, 0.00019551427976693958, 0.003511575283482671, 0.0047991531901061535, -0.0019313663942739367, -0.013063060119748116, 0.004067574627697468, 0.001798219163902104, -0.02724982425570488, -0.016738509759306908, 0.02070658840239048, 0.02654751017689705, 0.012231987901031971, -0.006800750736147165, -0.02190052531659603, -0.02455761656165123, -0.016551224514842033, -0.0269923098385334, -0.0048225633800029755, -0.00028165761614218354, 0.008726264350116253, 0.015603099949657917, -0.0018216297030448914, -0.0005761178326793015, -0.011869125068187714, -0.010283063165843487, 0.010487904772162437, 0.0037661646492779255, 0.0018728402210399508, -0.001424382789991796, 0.008421928621828556, 0.0065139723010361195, 0.025072647258639336, -0.0017104297876358032, -0.020015979185700417, 0.0036666698288172483, 0.028209654614329338, -0.00011147422628710046, 0.007994686253368855, 0.014338932931423187, -0.0074269818142056465, -0.021584482863545418, 0.01644587703049183, -0.00428412202745676, 0.007280666381120682, 0.012185166589915752, -0.01478373259305954, 0.015720153227448463, -0.009943610988557339, 0.02488536387681961, 0.0032862492371350527, 0.011213630437850952, 0.004983510822057724, 0.0012327092699706554, -0.025353573262691498, -0.039236001670360565, -0.0005845309933647513, -0.00409976439550519, 0.011365799233317375, 0.0009905569022521377, -0.011038051918148994, -0.0064554461278021336, -0.006028204225003719, 0.00035444964305497706, 0.016083015128970146, 0.0028838813304901123, -0.0018889348721131682, -0.006326688453555107, 0.006238898728042841, -0.008228791877627373, 0.0005099099944345653, 0.006742224562913179, 0.0031457862351089716, -0.006935361307114363, 0.0027507341001182795, 0.006525677628815174, -0.01505295280367136, 0.009059864096343517, 0.0020820714998990297, 0.004093911498785019, -0.005876035895198584, 0.012805544771254063, 0.014725206419825554, -0.024463975802063942, 0.014853963628411293, 0.0014302353374660015, -0.0035818067844957113, -3.3446842280682176e-05, -0.00449189031496644, 0.0036374067422002554, -0.002415671246126294, 0.0013007459929212928, 0.022005872800946236, -0.0030550705268979073, -0.013987774960696697, 0.005533657502382994, -0.032072387635707855, 0.012442681938409805, 0.008193675428628922, -0.003338922979310155, 0.00801224447786808, -0.02367972396314144, 0.007684497162699699, 0.02816283516585827, 0.02434692159295082, -0.020928988233208656, -0.0032043124083429575, 0.011629167012870312, 0.01631711982190609, 0.01459644827991724, -0.008439485915005207, 0.01680874079465866, 0.004652837291359901, -0.005159089341759682, -0.019102970138192177, 0.006156961899250746, -0.015263647772371769, 0.022848650813102722, 0.020214969292283058, 0.008855022490024567, 0.00011449198791524395, -0.0064847092144191265, -0.013285459950566292, 0.023550964891910553, -0.005993088707327843, -0.010616662912070751, -0.0038159119430929422, 0.004272416699677706, 0.01656293123960495, -0.01842406578361988, 0.008275612257421017, 0.02413622848689556, 0.02472149021923542, 0.008550685830414295, 0.01834212802350521, -0.013882427476346493, -0.008170265704393387, -0.00483426870778203, 0.020858757197856903, -0.00842778105288744, 0.02327003888785839, 0.0029029021970927715, 0.006701256148517132, 0.005574625916779041, -0.005355152301490307, -0.03818253055214882, -0.035139165818691254, -0.012700197286903858, -0.032283082604408264, -0.006467151455581188, -0.009346643462777138, 0.021549368277192116, -0.0284905806183815, -0.0019416084978729486, -0.0012480723671615124, 0.01648099347949028, 0.006642729975283146, -0.007707907818257809, 0.01381219644099474, -0.016621457412838936, 0.006847572047263384, -0.029590874910354614, -0.004017827566713095, 0.014561332762241364, 0.0010271357605233788, 0.00044626271119341254, -0.00046016270061954856, 0.009001337923109531, -0.005191279109567404, 0.012079819105565548, 0.01378878578543663, -0.009516369551420212, 0.001644587842747569, 0.007345044985413551, 0.009036453440785408, 0.018213370814919472, -0.009223737753927708, -0.017733454704284668, -0.016633162274956703, -0.029052432626485825, -0.005276142153888941, 0.007286518812179565, 0.005501468200236559, 0.008597507141530514, 0.009042306803166866, 0.006718814373016357, -0.011213630437850952, 0.00269220769405365, 0.002550281584262848, 0.000623670406639576, 0.0014309670077636838, -0.007994686253368855, -0.005188352428376675, 0.010037252679467201, 0.007292371708899736, 0.006988035049289465, -0.0077956970781087875, -0.00642033014446497, 0.0043104588985443115, -0.018400654196739197, -0.019161496311426163, 0.012864070944488049, 0.004041237756609917, -0.027062540873885155, 0.012185166589915752, 0.0007681571296416223, 0.01219687145203352, -0.005191279109567404, 0.005413678474724293, 0.0001661597052589059, -0.008421928621828556, 0.004541637375950813, -0.005267363041639328, -0.0006192809669300914, -0.01254802942276001, 0.006057467311620712, -0.006625172216445208, 0.015415815636515617, -0.02025008387863636, 0.003622775198891759, -0.027811676263809204, 0.01698431931436062, 0.003019954776391387, -0.01072786282747984, -0.0021844925358891487, 0.0028063340578228235, -0.008410222828388214, 0.012044703587889671, -0.0037749435286968946, 0.010166010819375515, 0.0180963184684515, 0.015884025022387505, -0.008936959318816662, 0.0004177311493549496, 0.0020176926627755165, 0.00294533371925354, 0.01582549884915352, -0.014994426630437374, 0.014455985277891159, 0.01459644827991724, 0.007573297712951899, 0.034109100699424744, 0.035092342644929886, 0.017651518806815147, 0.0026278288569301367, 0.008901843801140785, 0.006028204225003719, 0.0010468884138390422, -0.015146595425903797, -0.013156702741980553, -0.019102970138192177, 0.019992569461464882, -0.016656571999192238, -0.014971015974879265, -0.019699938595294952, -0.031042326241731644, 0.013905838131904602, 0.019699938595294952, -0.0011251672403886914, 0.01333228126168251, -0.0072572557255625725, 0.018950801342725754, 0.012138345278799534, 0.01669168844819069, -0.003695933148264885, -0.004690879490226507, -0.01859964430332184, -0.012910892255604267, -0.0032218704000115395, 0.00034621937084011734, -0.017780276015400887, 0.0035320594906806946, 0.011793040670454502, -0.01035329420119524, -0.011599903926253319, -0.0027799971867352724, 0.008334138430655003, 9.409924678038806e-05, -0.031089147552847862, 0.004436290357261896, -0.014491100795567036, 0.0072572557255625725, -0.018915686756372452, -0.006636877544224262, -0.01651610992848873, 0.013660028576850891, -0.029754748567938805, -0.0022635029163211584, 0.0308082215487957, -0.01524023711681366, 0.01788562349975109, 0.015626510605216026, -0.026313405483961105, -0.023995764553546906, -0.008755527436733246, 0.011313125491142273, 0.030176136642694473, -0.0007505992543883622, -0.015884025022387505, 0.019313665106892586, 0.013554681092500687, 0.009949463419616222, -0.013285459950566292, -0.00021544977789744735, -0.01287577673792839, -0.00923544354736805, 0.008000539615750313, -0.03532644733786583, -0.0009276411728933454, -0.012946007773280144, 0.013741964474320412, 0.007725465577095747, -0.022040987387299538, 0.021256735548377037, 0.0008617991115897894, -0.014491100795567036, -0.014479395933449268, 0.014526216313242912, 0.008644328452646732, 0.01126045174896717, -0.017628109082579613, 0.010382558219134808, 0.026594331488013268, -0.002687818370759487, 0.005861404351890087, -0.0020264715421944857, 0.011997882276773453, -0.02799896150827408, 0.017487645149230957, 0.0014177985722199082, -0.011043904349207878, 0.002023545326665044, 0.015123184770345688, -0.02016814798116684, 0.017159897834062576, 0.019512653350830078, 0.005123973824083805, -0.008369254879653454, -0.0014338932232931256, 0.013765375129878521, 0.009440285153687, -0.002500534290447831, 0.0037164173554629087, 0.007573297712951899, 0.0015582615742459893, 0.000968609529081732, 0.013027944602072239, 0.024417154490947723, -0.007093382067978382, -0.012138345278799534, 0.005232247058302164, -0.025517446920275688, 0.011242893524467945, -0.0006759782554581761, -0.026617741212248802, 0.008345844224095345, 0.006876835133880377, -0.016914088279008865, 0.0016387351788580418, 0.0047991531901061535, 0.019021032378077507, 0.018002675846219063, -0.020636357367038727, -0.0025415027048438787, 0.01933707483112812, 0.016914088279008865, -0.01178133487701416, 0.008521422743797302, -0.002755123423412442, 0.002794628730043769, 0.0014265774516388774, -0.0008113202056847513, 0.02261454612016678, -0.008205381222069263, 0.027975549921393394, 0.011330682784318924, 0.0068592773750424385, 0.0018699138890951872, 0.013905838131904602, 0.029637696221470833, 0.01651610992848873, -0.0036052174400538206, 0.018248487263917923, -0.0020542715210467577, 0.01834212802350521, -0.0006192809669300914, 0.0024785869754850864, -0.012243692763149738, -0.03345360606908798, -0.02165471389889717, 0.0012846513418480754, -0.015848910436034203, -0.0012627040268853307, 0.0029497232753783464, -0.004775742534548044, -0.0007886412786319852, -0.005118120927363634, 0.008146855048835278, -0.02736687660217285, -0.003868585452437401, -0.0014141406863927841, 0.015251941978931427, 0.005551215261220932, -0.015006132423877716, -0.010716157034039497, 0.02223997749388218, 0.0028473022393882275, 0.010915147140622139, -0.0054809837602078915, 0.005987235810607672, -0.015919141471385956, -0.011301419697701931, -0.008316581137478352, -0.004837194923311472, 0.0016826298087835312, -0.023410502821207047, -0.001164672547020018, 0.002061587292701006, -0.005290773697197437, -0.014069711789488792, 0.029052432626485825, 0.006004794035106897, 0.004728921689093113, -0.014210174791514874, -0.0015041247243061662, -0.0018699138890951872, 0.016036193817853928, 0.019067853689193726, -0.04948980361223221, -0.002000134903937578, 0.0084687490016222, 0.024089407175779343, 0.02314128167927265, 0.01206811424344778, -0.008059065788984299, 0.01333228126168251, 0.0041641429997980595, 0.01413994375616312, -0.021514251828193665, 0.011330682784318924, -0.007233845070004463, 0.008626770228147507, -0.019980864599347115, -0.006765635218471289, -0.00017448140715714544, -0.010985378175973892, -0.015158300288021564, 0.010212831199169159, 0.017288656905293465, -0.022474082186818123, -0.005235173739492893, -0.006274014711380005, -0.020729999989271164, -0.0076259709894657135, -0.03378135338425636, -0.01111998874694109, 0.0019240506226196885, -0.001787977060303092, -0.009387611411511898, -0.007649381645023823, 0.017838802188634872, 0.003432564903050661, 0.004570900462567806, 0.008369254879653454, -0.01651610992848873, -0.004123174585402012, 0.014034596271812916, -0.0021288925781846046, -0.0117403669282794, -0.012255397625267506, -0.01664486713707447, -0.0018318718066439033, 0.012512913905084133, 0.024042585864663124, 0.000467844249214977, -0.006911950651556253, -0.008211233653128147, 0.013531270436942577, -0.02682843618094921, 0.027928728610277176, -0.003374038729816675, 0.003619848983362317, -0.011289714835584164, -0.006051614880561829, 0.000472965301014483, -0.01238415576517582, -0.014971015974879265, 0.013964364305138588, -0.004986437037587166, -0.009931905195116997, -0.03151053562760353, 0.002597102662548423, 0.006929508876055479, -0.0006470808875747025, -0.00042687589302659035, 0.0250492375344038, 0.025072647258639336, -0.008181970566511154, -0.023586081340909004, -0.01399948075413704, 0.0061394041404128075, 0.01714819297194481, -0.007356750313192606, 0.019653117284178734, 0.03806547820568085, 0.013016239739954472, 0.034928470849990845, 0.005091784056276083, -0.007075824309140444, -0.000625499349553138, 0.0031399335712194443, -0.021174799650907516, -0.014935900457203388, 0.019571179524064064, -0.01697261445224285, -0.016960909590125084, -0.007192876655608416, -0.012114934623241425, -0.009059864096343517, 0.016703393310308456, -0.02870127558708191, 0.0007498676422983408, 0.0027317130006849766, 0.0024698080960661173, -0.003930038306862116, -0.0029672812670469284, 0.022836945950984955, 0.00030543390312232077, 0.030035674571990967, 0.0216078944504261, 0.002294229343533516, -0.015848910436034203, -0.019138086587190628, -0.01443257462233305, -0.005993088707327843, 0.0023732397239655256, -0.014725206419825554, 0.00987337902188301, -0.013027944602072239, -0.010037252679467201, -0.0015670404536649585, 0.002522481605410576, -0.0047084372490644455, -0.00349987018853426, -0.002351292409002781, 0.007286518812179565, -0.01747594028711319, 0.02145572565495968, 0.012899186462163925, -0.012419271282851696, -0.008544833399355412, 0.011828156188130379, 0.01300453394651413, 0.017007729038596153, 0.02090557850897312, 0.02090557850897312, 0.006666140630841255, 0.007731318473815918, -0.004945468623191118, -0.004357279743999243, 0.0012407565955072641, 0.013823901303112507, 0.0014221880119293928, 0.006320835556834936, 0.0006803676951676607, 0.004942542407661676, 0.010827356949448586, -0.011769630014896393, 0.0048840162344276905, -0.017312066629529, 0.013063060119748116, -0.016164951026439667, -0.029637696221470833, 0.023632902652025223, -0.007959570735692978, 0.0019825769122689962, -0.011079019866883755, 0.020531009882688522, 0.013589796610176563, 0.00819952879101038, -0.0006840256392024457, 0.006016498897224665, -0.01476032193750143, 0.01685556210577488, -0.011143399402499199, -0.0007078018970787525, -0.016375645995140076, 0.015357289463281631, -0.03132325038313866, -0.010201126337051392, -0.0010103094391524792, 0.01635223627090454, 0.006993887480348349, 0.0033447754103690386, 0.0038715119007974863, 0.028092602267861366, -0.007339192554354668, 0.0003056167915929109, 0.015579689294099808, -0.020800231024622917, 0.022602839395403862, -0.02033202163875103, 0.005811657290905714, -0.011114136315882206, -0.011207778006792068, -0.003491091076284647, 0.007274813484400511, -0.037737730890512466, -0.006203783210366964, -0.014924195595085621, 0.009885084815323353, -0.0045943111181259155, -0.016715098172426224, -0.0009949463419616222, 0.012103229761123657, -0.008936959318816662, -0.0019079559715464711, -0.0020557346288114786, -0.00432801665738225, -0.005208836868405342, 0.010329884476959705, 0.010938556864857674, -0.0006196467438712716, -0.004696731921285391, 0.0030638494063168764, -0.0088433176279068, -0.00467039505019784, 0.023831890895962715, 0.0070816767401993275, 0.019067853689193726, -0.007637676317244768, -0.014608153142035007, -0.009955315850675106, -0.017780276015400887, -0.0036813016049563885, -0.004652837291359901, 0.0014507195446640253, 8.39028725749813e-05, -0.019056148827075958, 0.014584743417799473, -0.012747018598020077, -0.0022825240157544613, -0.002623439533635974, -0.000743283424526453, 0.030457062646746635, 0.015685036778450012, 0.003924185410141945, 0.019969157874584198, -0.0014024353586137295, -0.012770429253578186, 0.03345360606908798, -0.0022064398508518934, -0.0004345574416220188, 0.0038246908225119114, 0.011038051918148994, -0.001006651553325355, -0.0003480483137536794, 0.008708707056939602, 0.0018552823457866907, -0.04272416606545448, -0.0015172931598499417, 0.01987551711499691, -0.009615863673388958, 0.0001528998400317505, 0.0019386822823435068, -0.027811676263809204, 0.006578351370990276, -0.0051971315406262875, 0.011313125491142273, 0.014654974453151226, 0.02628999389708042, 0.00801224447786808, 0.015181710943579674, 0.04410538822412491, -0.004725995007902384, 0.006151109468191862, 0.013917543925344944, 0.002362997503951192, -0.016832150518894196, -0.013039649464190006, -0.008228791877627373, 0.023469028994441032, -0.007122645154595375, -0.0020923137199133635, 0.0007930307765491307, 0.01747594028711319, -0.038042064756155014, 0.004787447862327099, 0.0013212302001193166, 0.011336536146700382, 0.005334668327122927, 0.021385494619607925, 0.018154844641685486, -0.007479655556380749, -0.013425922952592373, -0.0006957308505661786, -0.0038539539091289043, -0.0038246908225119114, 0.0008500938420183957, -0.003707638243213296, -0.0012188092805445194, -0.007315781898796558, -0.0037017855793237686, 0.01060495711863041, 0.00886087492108345, 0.015368994325399399, -0.014549626968801022, 0.02977815829217434, 0.03209579735994339, 0.002200587186962366, 0.027835087850689888, 0.014479395933449268, -0.016832150518894196, 0.015673331916332245, -0.0013768301578238606, -0.0014470616588369012, -0.015017837285995483, 0.01035329420119524, -0.0015304615953937173, 0.0058262888342142105, -0.0057355728931725025, 0.0016416615108028054, -0.012290514074265957, 0.022216565907001495, -0.011453588493168354, 0.010130895301699638, -0.028467170894145966, 0.0028546182438731194, -0.0010505462996661663, 0.00391248008236289, 0.003295028116554022, 0.012114934623241425], "f69522d9-1b62-4924-a6ec-c4aa281058da": [-0.0031799697317183018, 0.022986818104982376, 0.0027374292258173227, 0.038387227803468704, 0.04038498178124428, -0.020685607567429543, -0.020963776856660843, 0.0007266356842592359, -0.014780852943658829, -0.019054530188441277, 0.033506639301776886, 0.04392530769109726, -0.008800233714282513, 0.02708347886800766, -0.02464318461716175, 0.013516451232135296, -0.004896394442766905, 0.013339435681700706, -0.007908831350505352, -0.018169449642300606, 0.009084724821150303, 0.016639523208141327, -0.08699081838130951, 0.003590900218114257, 0.021520113572478294, 0.021140791475772858, -0.0022221854887902737, 0.012726200744509697, -0.023391427472233772, 0.015198105946183205, 0.03401239961385727, -0.00929967314004898, 0.0462518036365509, 0.012094000354409218, 0.01983845978975296, -0.025970805436372757, 0.024605251848697662, 0.010292228311300278, -3.052344254683703e-05, 0.004725700244307518, 0.015059021301567554, 0.026021381840109825, 0.011841119267046452, -0.0027532342355698347, -0.046479396522045135, 0.007441002409905195, -0.008914030157029629, 0.007023749873042107, 0.021456893533468246, -0.014527972787618637, -0.033582501113414764, -0.03239396587014198, -0.0007953875465318561, 0.024845488369464874, 0.011227885261178017, -0.023353494703769684, 0.018877513706684113, 0.03181234002113342, -0.036288321018218994, -0.024617895483970642, -0.019762594252824783, 0.003407561918720603, -0.009912907145917416, -0.03011804260313511, -0.03520093485713005, -0.005651874467730522, 0.038083773106336594, 0.010595683939754963, -0.05871880427002907, 0.012789420783519745, 0.011525019071996212, 0.06726615875959396, 0.0013979538343846798, 0.03006746619939804, -0.003439171938225627, 0.01593145914375782, 0.018574057146906853, -0.014237160794436932, 0.019332697615027428, 0.014376244507730007, 0.034088265150785446, -0.02469376102089882, 0.051258835941553116, -0.03150888532400131, 0.013794619590044022, 0.019180970266461372, -0.013427943922579288, -0.029688145965337753, -0.024491455405950546, -0.006132347043603659, -0.012827352620661259, -0.002762717194855213, -0.028373168781399727, 0.011335358954966068, 0.03153417259454727, 0.015008444897830486, 0.0016468828544020653, 0.0079720513895154, 0.00013612072507385164, 0.04544258862733841, -0.008553676307201385, 0.016690099611878395, -0.009539908729493618, 0.05952801927924156, 0.004314769990742207, -0.0255409087985754, 0.019307410344481468, 0.013440587557852268, -0.03221694752573967, 0.015855593606829643, -0.02073618397116661, -0.039803359657526016, -0.026855887845158577, 0.031433019787073135, -0.03439171984791756, 0.012972759082913399, -0.013655535876750946, -0.029384689405560493, 0.0021937366109341383, -0.006312524434179068, 0.010127855464816093, 0.033557213842868805, -0.0043021258898079395, -0.0396263413131237, -0.036263033747673035, -0.00519669009372592, -0.016690099611878395, 0.014780852943658829, 0.013731399551033974, -0.04812312126159668, -0.006587531417608261, 0.031154852360486984, 0.01416129618883133, 0.013503807596862316, -0.00044767712824977934, -0.01055143028497696, -0.0021289358846843243, 0.020078694447875023, -0.023530511185526848, 0.0002827122516464442, -0.0698455348610878, -0.01775219663977623, 0.012384812347590923, 0.021418960765004158, 0.00962209515273571, -0.011366968974471092, 0.006461091339588165, 0.03451815992593765, 0.02614782191812992, 0.006973173934966326, -0.028803065419197083, -0.04850244149565697, 0.0014809302520006895, -0.002601505955681205, 0.04056200012564659, -0.037780314683914185, -0.00042357450001873076, 0.02584436535835266, -0.001347377779893577, 0.004520235117524862, -0.007188122253865004, -0.038387227803468704, 0.010203720070421696, 0.020002830773591995, 0.031989358365535736, 0.022051161155104637, 0.06382698565721512, 0.03360779210925102, -0.0153245460242033, 0.018536126241087914, 0.05019673705101013, -0.011853763833642006, 0.027614528313279152, 0.005329451989382505, -0.0629671961069107, 0.0028717718087136745, 0.028651336207985878, 0.04850244149565697, 0.012985402718186378, -0.005857339594513178, -0.010285905562341213, 0.027235208079218864, 0.008389303460717201, 0.021431604400277138, -0.0008550515049137175, 0.0007475773454643786, 0.018586700782179832, 0.05184045806527138, 0.04187697544693947, -0.010779022239148617, 0.0001120180677389726, -0.0029033818282186985, -0.016728030517697334, 0.018839580938220024, -0.008882420137524605, 0.01081063225865364, -0.01779012940824032, -0.0037205012049525976, -0.028145575895905495, 0.010330160148441792, 0.009963483549654484, -0.04144708067178726, -0.029662858694791794, 0.012631370685994625, -0.019712017849087715, 0.01517281774431467, -0.02766510471701622, -0.0004615065408870578, 0.0140095679089427, -0.003312731860205531, 0.02981458604335785, 0.001869733678176999, 0.009533586911857128, 0.001047872705385089, -0.010899140499532223, -0.0022537955082952976, -0.019029241055250168, 0.02892950549721718, 0.02287302166223526, -0.02320176735520363, -0.015362477861344814, 0.020521236583590508, 0.0030456269159913063, -0.0073714605532586575, -0.0409918949007988, -0.022797157987952232, 0.002087842905893922, 0.031458307057619095, -0.041042473167181015, 0.007580086588859558, 0.038412515074014664, 0.012960114516317844, -0.043166667222976685, -0.007738137152045965, -0.0071312240324914455, 0.016336066648364067, 0.05330716446042061, -0.03426527976989746, -0.043470121920108795, 0.004627709276974201, -0.0006464252364821732, 0.019117750227451324, 0.037173401564359665, -0.022051161155104637, 0.013718755915760994, 0.012726200744509697, 0.0063030412420630455, -0.010216363705694675, 0.007061682175844908, -0.0015236038016155362, 0.0019203097326681018, -0.024251220747828484, 0.0006855426472611725, -0.005199851002544165, -0.04953924939036369, -0.014932581223547459, -0.003989186603575945, -0.0014793496811762452, 0.0038722294848412275, -0.045265574008226395, 0.02076147124171257, 0.030446786433458328, -0.010412345640361309, 0.03813434764742851, 0.012688268907368183, 0.01657630316913128, 0.024301795288920403, -0.01598203368484974, -0.00766859482973814, 0.0013702950673177838, -0.011196275241672993, 0.016121119260787964, 0.014262448064982891, 0.01742345280945301, 0.014414176344871521, 0.028170865029096603, 0.014932581223547459, -0.05325658991932869, -0.02074882760643959, 0.0006843573064543307, -0.07110993564128876, -0.008313439786434174, 0.03249511867761612, -0.001262820907868445, 0.02260749787092209, 0.005841534584760666, -0.029384689405560493, -0.020015474408864975, -0.02468111738562584, -0.04640353471040726, -0.004548684228211641, 0.022468414157629013, -0.0002487314632162452, 0.0021747704595327377, -0.022127024829387665, 0.02771567925810814, -0.024516744539141655, 0.011227885261178017, -0.006916276179254055, 0.05755555257201195, -0.03401239961385727, -0.01952235773205757, 0.0009261740488000214, 0.012757810764014721, 0.027032902464270592, -0.014654412865638733, 0.03431585431098938, -0.005146114155650139, -0.01950971409678459, 0.003088300582021475, 0.0038121703546494246, -0.022696007043123245, -0.0054274434223771095, -0.009268063120543957, -0.010564073920249939, 0.032672133296728134, -0.01593145914375782, -0.028803065419197083, -0.03901942819356918, -0.024908708408474922, 0.02583172172307968, 0.0004911409341730177, -0.024504100903868675, 0.03373423218727112, 0.019636154174804688, -0.013314147479832172, -0.0035814170259982347, -0.0052693928591907024, 0.0030424660071730614, -0.0427873469889164, -0.0601855106651783, -0.015805019065737724, -0.029865162447094917, 0.019648797810077667, -0.014793497510254383, -0.01651308313012123, -0.034998632967472076, -0.0720708817243576, 0.013288859277963638, -0.00017583082080818713, 0.0064389645121991634, -0.014060144312679768, 0.010431312024593353, -0.015805019065737724, 0.03810906037688255, 0.021583333611488342, -0.020837336778640747, -0.006992139853537083, -0.05080365017056465, 0.012403778731822968, 0.0007064843084663153, 0.024225931614637375, 0.007169156335294247, 0.04240802675485611, -0.004700412508100271, -0.032950300723314285, -0.02109021693468094, -0.010715802200138569, 0.01892809011042118, -0.004605582449585199, -0.007409392390400171, -0.01719585992395878, -0.02771567925810814, -0.01416129618883133, 0.011392257176339626, -0.008420913480222225, 0.031711187213659286, 0.008964606560766697, 0.0004690139030572027, -0.04453222081065178, 0.011531340889632702, 0.022961530834436417, 0.022683361545205116, 0.02140631712973118, -0.06276489049196243, -0.019712017849087715, 0.032039932906627655, 0.009754857048392296, -0.013655535876750946, 0.016285490244627, -0.0024418754037469625, -0.047996681183576584, -0.03297559171915054, 0.0036098661366850138, 0.004238905850797892, -0.00859792996197939, 0.04172524809837341, -0.019307410344481468, 0.003739467356353998, 0.007706526666879654, -0.00442540505900979, 0.033835381269454956, -0.011676747351884842, -0.031053699553012848, 0.00073335284832865, 0.001665848889388144, 0.02680531144142151, -0.023366138339042664, -0.00571509450674057, -0.018207380548119545, 0.03178705275058746, -0.011651459150016308, -0.0062619480304419994, 0.010583040304481983, 0.01689240336418152, -0.04304022714495659, -0.020331574603915215, -0.007877221331000328, 0.0005373706226237118, 0.011468120850622654, -0.023353494703769684, -0.013642891310155392, 0.0027358487714082003, 0.03128129243850708, 0.013781975954771042, 0.009520943276584148, -0.017575180158019066, 0.03226752579212189, -0.006075448822230101, -0.005025995895266533, 0.027791544795036316, 0.013642891310155392, -0.011158342473208904, -0.006745581980794668, 0.007447324693202972, 0.016639523208141327, 0.018447617068886757, 0.009735891595482826, 0.034088265150785446, -0.018283244222402573, -0.014439464546740055, 0.0698455348610878, 0.03363307937979698, 0.004441210068762302, -0.00247980747371912, -0.009451400488615036, -0.0062461430206894875, -0.0071312240324914455, 0.030623802915215492, -0.04577133432030678, -0.02918238565325737, 0.024200644344091415, -0.011253172531723976, 0.02832259237766266, -0.035377953201532364, -0.025477688759565353, -0.03014332987368107, -0.021722417324781418, 0.014704989269375801, 0.009546230547130108, 0.02283509075641632, -0.008522066287696362, -0.011392257176339626, -0.02890421822667122, -0.005702450405806303, 0.0017306494992226362, 0.011152020655572414, -0.00858528632670641, 0.03039621189236641, -0.06205682456493378, -0.03229281306266785, -0.014616481028497219, 0.02619839832186699, 0.014237160794436932, 0.05090480297803879, -0.020989064127206802, -0.006005906965583563, -0.03585842624306679, 0.011145698837935925, -0.023859255015850067, -0.02733635902404785, 0.003846941515803337, 0.03277328610420227, 0.03573198616504669, 0.017992433160543442, 0.0061829229816794395, -0.007346172351390123, 0.0662546381354332, -0.027791544795036316, 0.006909953895956278, 0.031230716034770012, -0.02827201597392559, 0.02920767292380333, -0.027589239180088043, 0.02862604893743992, -0.015880882740020752, -0.0052788760513067245, -0.0017559374682605267, 0.0414217934012413, -0.0038911954034119844, -0.0005290730041451752, -0.01156927365809679, 0.04718746244907379, 0.009881297126412392, 0.012903217226266861, 0.01110144518315792, 0.007377782370895147, -0.026350125670433044, -0.00048639942542649806, -0.02946055307984352, 0.006072287913411856, -0.03810906037688255, -0.0064199985936284065, -0.014110720716416836, -0.03378480672836304, 0.00993187353014946, -0.012321592308580875, 0.0426609069108963, -0.01250493060797453, -0.02321441099047661, -0.008009983226656914, 0.0026030864100903273, -0.017651043832302094, 0.0414217934012413, -0.010229007340967655, 0.002244312549009919, -0.017562536522746086, -0.038994140923023224, 0.011366968974471092, 0.0336836539208889, 0.01803036406636238, -0.030775532126426697, -0.036288321018218994, -0.016146406531333923, 0.0009917649440467358, -0.00406505074352026, -0.01337736751884222, -0.027816832065582275, -0.016019966453313828, -0.021431604400277138, 0.004634031560271978, 0.012694590725004673, -0.014249804429709911, -0.0031878722365945578, -0.00488691171631217, 0.010602006688714027, 0.00026394380256533623, 0.03158474713563919, 0.021608620882034302, -0.00930599495768547, -0.051562290638685226, 0.03315260633826256, 0.006555921398103237, -0.024263864383101463, 3.0103619792498648e-05, 0.012745167128741741, 0.002830678829923272, -0.0065116677433252335, -0.020559167489409447, -0.009735891595482826, 0.011069835163652897, -0.0010541947558522224, 0.011853763833642006, 0.010121533647179604, -0.03181234002113342, -0.027513375505805016, 0.0036477982066571712, 0.009128978475928307, -0.004235744941979647, -0.01804300956428051, -0.017625756561756134, 0.005765670444816351, -0.028803065419197083, -0.014060144312679768, 0.036895234137773514, -0.019459137693047523, -0.013769332319498062, -0.00813010148704052, -0.028752489015460014, 0.008262863382697105, 0.010184753686189651, -0.0044823032803833485, 0.03588371351361275, 0.007953085005283356, 0.021722417324781418, 0.020951131358742714, 0.021709773689508438, -0.012150897644460201, -0.030168619006872177, 0.003208418609574437, 0.010349125601351261, -0.006884666159749031, 0.00081711943494156, 0.018586700782179832, 0.0066950055770576, 0.012536540627479553, -0.00715019041672349, -0.02221553400158882, -0.005983779672533274, 0.002653662580996752, -0.004261033143848181, 0.04660583660006523, -0.041674673557281494, 0.0014730277471244335, -0.018131516873836517, 0.030219195410609245, -0.019016597419977188, -0.0031372960656881332, 0.02892950549721718, 0.008755980059504509, -0.005455892067402601, 0.027285782620310783, 0.028373168781399727, 0.0064674136228859425, -0.02076147124171257, 0.011942272074520588, 0.01112041063606739, 0.022392550483345985, -0.03431585431098938, 0.01744874007999897, -0.025515621528029442, -0.026982327923178673, 0.01805565319955349, -0.024238575249910355, 0.009249096736311913, 0.0033348589204251766, 0.006432642228901386, 0.02078676037490368, -0.017347587272524834, 0.002983987331390381, 0.036819372326135635, -0.024731691926717758, 0.033279046416282654, -0.0006080980529077351, -0.018561413511633873, -0.002135257935151458, 0.05024731531739235, 0.007712848950177431, 0.005721416790038347, 0.01446475274860859, -0.02857547253370285, -0.029283538460731506, 0.01385783962905407, -0.016753319650888443, 0.01867520995438099, -0.018257956951856613, -0.012745167128741741, 0.03373423218727112, -0.006037516985088587, 0.006028033792972565, 0.02374545857310295, -0.028803065419197083, 0.0038722294848412275, -0.0034960699267685413, 0.001657946384511888, -0.0007238698308356106, -0.01430038083344698, 0.009691637009382248, 0.0027674587909132242, -0.0072829523123800755, 0.025730568915605545, -0.002996631432324648, 0.0026852726005017757, 0.03664235398173332, 0.015008444897830486, -0.007839289493858814, -0.01622227020561695, 0.027032902464270592, 0.029081232845783234, -0.012726200744509697, 0.017853349447250366, 0.0025161588564515114, 0.0004709895292762667, -0.009969805367290974, -0.02349257841706276, 0.014249804429709911, 0.04301493614912033, -0.0003174832963850349, 0.023973051458597183, 0.022999461740255356, 0.012233084067702293, -0.0535600446164608, 0.01687975972890854, -0.008920351974666119, -0.010911784134805202, 0.008629539981484413, -0.00024359484086744487, 0.0035656120162457228, 0.021178724244236946, -0.034771040081977844, -0.004061889834702015, -0.001733810524456203, -0.04898291081190109, -0.006299880333244801, 0.01714528352022171, -0.013250927440822124, -0.0018001915886998177, -0.02191207744181156, 0.00020684816990979016, -0.007763424888253212, -0.0028370008803904057, -0.010993970558047295, 0.02050859108567238, 0.016702743247151375, -0.0023818162735551596, -0.015716509893536568, 0.0071312240324914455, -0.014768209308385849, -0.024794911965727806, -0.0001322682510362938, -0.04524028301239014, -0.04567018151283264, -0.005901593714952469, -0.04668170213699341, -0.041978128254413605, 0.00601855106651783, -0.0044096000492572784, -0.031736478209495544, -0.0007839289028197527, -0.005193529184907675, 0.009546230547130108, 0.030472075566649437, 0.013440587557852268, -0.009761178866028786, -0.012094000354409218, 0.003375951899215579, 0.005316808354109526, 0.04063786193728447, -0.018106229603290558, 0.009982449933886528, 0.03874126076698303, 0.018270600587129593, -0.004147236701101065, 0.019320053979754448, 0.030876683071255684, -0.002909703878685832, 0.0012138254242017865, 0.023366138339042664, 0.0052535878494381905, 0.0012059229193255305, -0.0010889658005908132, -0.0037615944165736437, -0.00496593676507473, 0.021418960765004158, 0.014287736266851425, 0.00488691171631217, -0.022923598065972328, 0.015046377666294575, 0.03297559171915054, 0.003850102424621582, -3.017770723090507e-05, -0.017916569486260414, -0.012075033970177174, -0.03178705275058746, -0.03512507304549217, 0.03128129243850708, 0.04670698940753937, 0.021482180804014206, -0.00645793043076992, -0.04900820180773735, 0.032672133296728134, -0.0017448740545660257, 0.024579964578151703, -0.022038517519831657, 0.006821445655077696, -0.00715651223435998, 0.0524473711848259, 0.020217780023813248, -0.010766378603875637, 0.05214391648769379, -0.016690099611878395, 0.008003661409020424, 0.00767491664737463, -0.008250219747424126, 0.03241925314068794, -0.0342399924993515, -0.039879221469163895, 0.03135715797543526, 0.01431302446871996, 0.006009067874401808, 0.032014645636081696, 0.017941856756806374, -0.011038225144147873, 0.03947461396455765, -0.02527538500726223, 0.006148152053356171, -0.0017511959886178374, 0.020849980413913727, -0.023264987394213676, -0.005553883500397205, -0.03181234002113342, 0.002236410044133663, 0.02011662721633911, 0.017208503559231758, -0.030497362837195396, -0.06615348160266876, 0.018839580938220024, 0.01446475274860859, 0.001773323048837483, 0.01894073374569416, 0.04172524809837341, 0.002922347979620099, -0.0008471490000374615, 0.014565904624760151, -0.012062390334904194, -0.0030393050983548164, 0.003156262217089534, -0.021140791475772858, 0.002645760076120496, -0.0017922890838235617, 0.007864576764404774, -0.010279583744704723, 0.013895772397518158, -0.008787590079009533, 0.030927259474992752, -0.01657630316913128, -0.02320176735520363, -0.009198520332574844, 0.0032779606990516186, -0.011651459150016308, -0.00519669009372592, -0.00624930439516902, -0.015236037783324718, 0.02710876800119877, -0.04630238190293312, 0.012941149063408375, -0.0012857381952926517, 0.032090507447719574, -0.007030072156339884, 0.00829447340220213, -0.014970513060688972, -0.017094707116484642, -0.0054274434223771095, 0.010172110050916672, -0.012568150646984577, 0.05629115179181099, 0.03785618022084236, 0.004555006045848131, 0.015602714382112026, -0.0023185962345451117, -0.029662858694791794, -0.01370611134916544, -0.0025683154817670584, 0.013175062835216522, -0.004918521735817194, 0.013630247674882412, 0.013933704234659672, -0.02495928481221199, -0.0033664689399302006, 0.04061257466673851, -0.040713727474212646, -0.015577426180243492, -0.021595977246761322, 0.014629124663770199, 0.014363600872457027, 0.009400825016200542, 0.024896064773201942, -0.020268354564905167, 0.027311071753501892, 0.0017511959886178374, -0.0066950055770576, -0.013933704234659672, 0.022733937948942184, 0.023113258183002472, 0.018270600587129593, 0.027260495349764824, -0.00798469502478838, -0.00845252349972725, -0.03737570717930794, -0.005259910132735968, 0.018447617068886757, 0.017385520040988922, -0.005604459438472986, 0.0008953542564995587, -0.030193906277418137, -0.005142952781170607, -0.01803036406636238, -0.026906462386250496, -0.0026915946509689093, -0.006397871300578117, -0.00638522719964385, -0.014768209308385849, 0.07733079046010971, 0.016411930322647095, -0.0031783892773091793, -0.013883127830922604, -0.03788146749138832, -0.005496985279023647, -0.001351329032331705, 0.00813010148704052, 0.02103964053094387, 0.011335358954966068, -0.006555921398103237, 0.02832259237766266, -0.02289831079542637, -0.008420913480222225, 0.0010526141850277781, 0.017600467428565025, -0.020002830773591995, 0.0015322965336963534, 0.008250219747424126, -0.011057190597057343, 0.017587823793292046, -0.011828475631773472, -0.003515036078169942, -0.010026703588664532, 0.04068844020366669, -0.007377782370895147, 0.0011158343404531479, -0.0306490920484066, 0.019674086943268776, -0.05072778835892677, -0.06225912645459175, -0.016437219455838203, 0.03302616626024246, -0.004096660763025284, -0.004788920748978853, 0.017271723598241806, -0.02282244712114334, 0.00843355804681778, 0.00844620168209076, -0.012852640822529793, -0.010911784134805202, 0.003208418609574437, 0.03800790756940842, 0.0006804060540162027, -0.0014809302520006895, -0.006173440255224705, 0.02583172172307968, 0.011170987039804459, -0.02771567925810814, 0.02471904829144478, 0.04129535332322121, 0.004871106706559658, 0.014806141145527363, -0.026855887845158577, -0.019155682995915413, -0.01292218267917633, 0.01234688051044941, 0.014098076149821281, -0.025351248681545258, -0.002961860504001379, -0.020331574603915215, 0.02320176735520363, 0.017638400197029114, -0.005259910132735968, 0.008553676307201385, 0.0198763906955719, -0.03034563548862934, -0.01143651083111763, -0.007478934712707996, 0.02320176735520363, 0.019332697615027428, -0.028752489015460014, -0.0033980789594352245, -0.04354598745703697, 0.009091046638786793, 0.020571811124682426, 0.0031531010754406452, 0.01622227020561695, -0.0036730861756950617, 0.010020381771028042, 0.005749865435063839, -0.012599760666489601, -0.004368506837636232, -0.027917984873056412, 0.012852640822529793, -0.014755564741790295, 0.005364223383367062, -0.010741090402007103, -0.014287736266851425, -0.032065220177173615, 0.0021652875002473593, 0.01009624544531107, -0.021494824439287186, -0.010722124017775059, 0.006966852117329836, 0.004159880802035332, -0.017094707116484642, -0.014654412865638733, -0.023682238534092903, -0.021747704595327377, -0.0026552430354058743, 0.007333528250455856, 0.04220572113990784, -0.0004650626506190747, -0.017524603754281998, 0.002557251835241914, -0.034771040081977844, -0.021608620882034302, 0.026097245514392853, -0.02321441099047661, -0.002478226786479354, 0.01265665888786316, 0.026299551129341125, -0.018826937302947044, 0.0043621850199997425, 0.020609743893146515, -0.031458307057619095, 0.0072070881724357605, 0.033506639301776886, -0.010728446766734123, 0.00870540365576744, 0.00948301050812006, 0.036237746477127075, -0.0030630126129835844, -0.019926967099308968, -0.028170865029096603, 0.01399692427366972, -0.017031487077474594, 0.009185876697301865, -0.02433972805738449, -0.029915738850831985, 0.008793911896646023, 0.04792081564664841, 0.008755980059504509, 0.036237746477127075, 0.006224016193300486, -0.011613527312874794, 0.031407732516527176, -0.03196406736969948, 0.0032273847609758377, -0.0025477688759565353, 0.005617103539407253, -0.006796157918870449, 0.023909831419587135, 0.00391332246363163, -0.06099472567439079, 0.03398711234331131, 0.024263864383101463, 0.002179512055590749, 0.007143868133425713, -0.02862604893743992, -0.001988271251320839, -0.0054716975428164005, 0.012460676021873951, -0.02622368559241295, 0.014527972787618637, 0.012877929024398327, 0.006777192000299692, -0.032318100333213806, -0.0008021046523936093, 0.016032610088586807, -0.010330160148441792, 0.008800233714282513, -0.03153417259454727, -0.019749950617551804, -0.056999217718839645, 0.004630870185792446, -0.03365836665034294, 0.021722417324781418, -0.014553260989487171, 0.00931231677532196, 0.016310779377818108, -0.005515951197594404, 0.0053231301717460155, -0.012245727702975273, -0.009868653491139412, -0.003853263333439827, 0.01368082407861948, -0.01473027653992176, -0.014540616422891617, 0.028347881510853767, -0.014186584390699863, -0.00270265806466341, -0.0032589947804808617, -0.0038279753644019365, -0.030522651970386505, 0.021191367879509926, 0.018460260704159737, 0.005664518568664789, -0.013175062835216522, 0.02948584221303463, -0.01959822326898575, 0.013111842796206474, -0.015438341535627842, -0.010766378603875637, 0.026071958243846893, -0.010797988623380661, 0.012719878926873207, -0.012372168712317944, 0.019648797810077667, 0.011860085651278496, -0.010001415386795998, 0.009685315191745758, -0.01172100193798542, 0.01065890397876501, 0.0036888911854475737, 0.02192472107708454, -0.002909703878685832, 0.0011751031270250678, 0.025085724890232086, -0.008427235297858715, -0.0014256126014515758, -0.029308825731277466, 0.001694298000074923, -0.002928669797256589, -0.019345343112945557, 0.006954208016395569, -0.030244482681155205, -0.014692344702780247, -0.00019469806284178048, 0.001419290667399764, 0.005013351794332266, -0.002317015780135989, -0.024744337424635887, 0.0027374292258173227, 0.0071628340519964695, -0.0017590984934940934, -0.0010091504082083702, -0.002577798441052437, -0.028474321588873863, -0.010911784134805202, 0.013819907791912556, 0.02645127847790718, 0.012277337722480297, -0.014957869425415993, 0.0020862624514847994, -0.020875267684459686, 0.004573972430080175, 0.01653837040066719, 0.02402362786233425, 0.017688976600766182, 0.0349227674305439, 0.014224516227841377, 0.021140791475772858, -0.0036572811659425497, -0.03302616626024246, 0.004485464189201593, 0.013035979121923447, 0.024820201098918915, 0.016930336132645607, -0.007314562331885099, -0.017297012731432915, -0.01744874007999897, 0.02642599120736122, 0.01518546137958765, 0.0036319931969046593, -0.024592608213424683, 0.020394794642925262, 0.00511766504496336, -0.0027200435288250446, 0.0349227674305439, -0.007390426471829414, 0.00994451716542244, 0.00828815158456564, 0.004687768407166004, 0.0003609471023082733, -0.0073967487551271915, 0.009381858631968498, 0.013617604039609432, 0.012005492113530636, -0.013491163961589336, -0.0018286405829712749, 0.013465875759720802, 0.0013307825429365039, 0.005996423773467541, -0.002220605034381151, 0.008382981643080711, -0.03487219288945198, 0.013035979121923447, 0.005538078490644693, -0.00505128363147378, 0.004953292664140463, 0.015590069815516472, 0.02253163419663906, 0.03338019922375679, -0.008414591662585735, -0.014780852943658829, 0.006922597996890545, -0.030876683071255684, -0.02191207744181156, 0.003004533937200904, -0.008932996541261673, 0.016083186492323875, -0.01921890303492546, -0.0022332491353154182, 0.004191490821540356, -0.010570395737886429, -0.0034423330798745155, 0.013175062835216522, 0.008781268261373043, 0.02320176735520363, 0.011019258759915829, -0.0100772799924016, 0.008066881448030472, -0.02079940401017666, 0.012985402718186378, -0.005180885083973408, 0.005813085474073887, 0.003951254766434431, 0.0009000957943499088, 0.007725493051111698, -0.011158342473208904, -0.020698251202702522, -0.019800527021288872, -0.007270308211445808, -0.008174355141818523, -0.01682918332517147, 0.01589352637529373, 0.00472886161878705, -0.0073082405142486095, 0.002378655131906271, 0.0007914362940937281, 0.02291095443069935, 0.014224516227841377, -0.010070957243442535, -0.005225139204412699, 0.0009522523614577949, 0.02680531144142151, 0.0028907377272844315, 0.010178431868553162, -0.0053136469796299934, 0.012296304106712341, -0.0054306043311953545, -0.021747704595327377, -0.004782598465681076, 0.017511960119009018, -0.012871607206761837, -0.026552431285381317, -0.03166061267256737, 0.02255692146718502, -0.025616774335503578, -0.012365845963358879, -0.005692967679351568, 0.02495928481221199, -0.016677455976605415, -0.023353494703769684, -0.022152313962578773, -0.007921474985778332, 0.016702743247151375, 0.000699767202604562, 1.8830197632269119e-06, -0.02497192844748497, -0.002762717194855213, 0.00011814251047326252, 0.0030946226324886084, 0.002228507539257407, 0.03939874842762947, 0.03431585431098938, -0.0063947103917598724, 0.017688976600766182, 0.0064516086131334305, 0.05095537751913071, 0.007124902214854956, -0.01954764686524868, -0.0021905754692852497, -0.015096953138709068, -0.0038753903936594725, 0.022405194118618965, 0.013731399551033974, -0.0182958897203207, 0.026729445904493332, -0.007232376374304295, 0.0063947103917598724, -6.973964627832174e-05, -0.010014059953391552, -0.010886496864259243, -0.0015899848658591509, 0.026906462386250496, -0.012681947089731693, 0.023644307628273964, -0.023075327277183533, -0.005986941047012806, 0.001537828240543604, -0.02081204764544964, -0.004823691677302122, 0.019775237888097763, 0.030168619006872177, 0.005680323578417301, 0.008749658241868019, 0.01307391095906496, -0.008572641760110855, 0.017929213121533394, -0.06908689439296722, -0.0054875025525689125, 0.02078676037490368, 0.010178431868553162, -0.012542862445116043, 0.003837458323687315, -0.008610573597252369, -0.01548891793936491, 0.00977382343262434, 0.028727201744914055, -0.033557213842868805, 0.022746581584215164, 0.0011853763135150075, -0.011050868779420853, -0.019168326631188393, -0.005193529184907675, 0.011828475631773472, -0.022177601233124733, 0.0003259785007685423, -0.05199218913912773, 0.00914794486016035, 0.03760330006480217, 0.000369639863492921, -0.005996423773467541, 0.0052346219308674335, 0.0008100071572698653, 0.012998047284781933, -0.01024165190756321, 0.010734768584370613, 0.013491163961589336, -0.03365836665034294, -0.008503099903464317, 0.010823276825249195, -0.028120288625359535, 0.032065220177173615, -0.004573972430080175, 0.015071664936840534, 0.013086555525660515, -0.0005140582215972245, -0.010134177282452583, 0.022974174469709396, -0.014527972787618637, 1.2082196008122992e-05, -0.01866256631910801, -0.02586965449154377, -0.01895337738096714, -0.01565328985452652, -0.018460260704159737, 0.005576010327786207, -0.002938152989372611, -0.030219195410609245, 0.00039334737812168896, 0.010848564095795155, -0.027513375505805016, 0.014325668103992939, -0.0011300587793812156, -0.0189154464751482, 0.004529718309640884, 0.010975005105137825, 0.010741090402007103, -0.02622368559241295, -0.017562536522746086, 0.007036393973976374, -0.0008455684874206781, 0.007093292195349932, 0.03125600516796112, 0.016664810478687286, 0.015071664936840534, -0.0063504562713205814, -0.020369507372379303, 0.008515743538737297, 0.024756981059908867, -0.007472612429410219, -0.014704989269375801, 0.00228856666944921, 0.006163957063108683, -0.011531340889632702, 0.008471489883959293, -0.0002260117616970092, -0.010178431868553162, -0.02167184092104435, 0.003546646097674966, 0.00025307785836048424, -0.002535125007852912, 0.012289982289075851, -0.017651043832302094, -0.02047066017985344, -0.008888741955161095, 0.015615358017385006, -0.0029191868379712105, 0.015387766063213348, 0.0048142084851861, -0.033481352031230927, 0.03912058100104332, -0.012688268907368183, -0.007877221331000328, 0.018422329798340797, -0.007864576764404774, -0.005664518568664789, -0.011512375436723232, -0.007213410455733538, 0.016159050166606903, 0.00931863859295845, -0.03785618022084236, -0.0037805603351444006, 0.012795742601156235, -0.016361355781555176, -0.025806434452533722, 0.00406505074352026, 0.015311901457607746, 0.002184253418818116, -0.01143651083111763, -0.00961577333509922, 0.02221553400158882, 0.04422876238822937, -0.0023423037491738796, -0.019155682995915413, -0.019421206787228584, 0.006069127004593611, 0.009584163315594196, 0.025376537814736366, 0.01321299560368061, 0.0002805390686262399, 0.013592315837740898, -0.0027437512762844563, 0.005667679477483034, -0.019636154174804688, 0.01416129618883133, 0.006492701359093189, 0.029131809249520302, 0.006802479736506939, -0.018194736912846565, -0.020533880218863487, -0.00016101362416520715, 0.023100614547729492, 0.0258190780878067, 0.025098368525505066, -0.0045265574008226395, -0.008787590079009533, 0.014414176344871521, -0.010526142083108425, 0.008073203265666962, 0.002773780608549714, 0.017663687467575073, -0.01276413258165121, 0.0008001290261745453, -0.01431302446871996, -0.014527972787618637, -0.0045107523910701275, 0.029662858694791794, -0.0026773700956255198, -0.0037932044360786676, -0.009091046638786793, 0.010380735620856285, 0.010431312024593353, 0.018751073628664017, 0.01808094047009945, -0.025452401489019394, -0.00766227301210165, -0.022797157987952232, -0.010829598642885685, -0.016677455976605415, -0.012631370685994625, -0.008749658241868019, -0.012271015904843807, -0.011069835163652897, 0.005152435973286629, 0.004292643163353205, -0.039828646928071976, -0.007908831350505352, -0.005721416790038347, -0.013427943922579288, -0.028727201744914055, 0.012466998770833015, -0.0018523480976000428, -0.0032589947804808617, 0.02463054098188877, 0.005964813753962517, 0.005680323578417301, 0.008749658241868019, -0.028449032455682755, -0.007320884615182877, -0.024301795288920403, -0.014186584390699863, -0.00978014525026083, 0.02647656574845314, 0.023302918300032616, -0.01564064621925354, 0.004039762541651726, -0.020913200452923775, 0.036212459206581116, -0.01837175339460373, 0.0228477343916893, 0.008395625278353691, -0.0007677287794649601, -0.004491786006838083, -0.012466998770833015, 0.0037521112244576216, 0.02043272741138935, -0.01870049722492695, -0.009078402072191238, -0.006555921398103237, -0.018232669681310654, -0.0051903678104281425, 0.022923598065972328, 0.00464983657002449, -0.003944932483136654, 0.04081488028168678, -0.02948584221303463, 0.01473027653992176, -0.0036920523270964622, -0.006600175518542528, 0.0007625921280123293, -0.021482180804014206, -0.01652572676539421, -0.019345343112945557, -0.013288859277963638, -0.0002674999414011836, -0.015248681418597698, 0.011480765417218208, -0.02134309709072113, 0.0026789505500346422, 0.033557213842868805, 0.03757801279425621, 0.015615358017385006, 0.011133055202662945, 0.009027826599776745, 0.013250927440822124, 0.010665226727724075, -0.015261325985193253, -0.0003338810056447983, -0.0045265574008226395, 0.017385520040988922, 0.03252040594816208, -0.00429580407217145, 0.007706526666879654, 0.007580086588859558, -0.021545400843024254, -0.0029081234242767096, 0.0005808343994431198, 0.016019966453313828, 0.006239821203052998, -0.007257664576172829, 0.006015390157699585, -0.0009569938411004841, 0.0153245460242033, 0.016032610088586807, 0.012245727702975273, -0.03125600516796112, -0.00843355804681778, 0.007896186783909798, 0.00399234751239419, -0.009824398905038834, -0.008104813285171986, 0.0030187584925442934, 0.014603836461901665, 0.01250493060797453, -0.01008360181003809, 0.017347587272524834, -0.011651459150016308, 0.007049038074910641, -0.012821030803024769, 0.04182640090584755, 0.018536126241087914, 0.018725786358118057, 0.0018191576236858964, 0.016285490244627, 0.0004717797855846584, -0.025439757853746414, 0.0063314903527498245, 0.002629955066367984, 0.019180970266461372, -0.0064231595024466515, -0.0015986775979399681, 0.021482180804014206, -0.033557213842868805, 0.02016720362007618, 0.022089093923568726, 0.0027326876297593117, -0.0013560705119743943, -0.00870540365576744, 0.006789835635572672, -0.0038090094458311796, -0.004469659179449081, 0.002546188421547413, 0.009647383354604244, -0.013933704234659672, -0.021861501038074493, -0.010987648740410805, -0.007333528250455856, -0.020875267684459686, 0.00874333642423153, 0.016411930322647095, 0.010266940109431744, 0.005778314545750618, -0.0006725035491399467, -0.006186084356158972, 0.011088800616562366, -0.01684182696044445, -0.005092376843094826, 0.01864992082118988, -0.01719585992395878, -0.0018649921985343099, 0.0028765134047716856, -0.009527265094220638, 0.0029982118867337704, 0.007782390806823969, 0.023517867550253868, -0.006739259697496891, 0.02081204764544964, 0.0019945933017879725, 0.005127147771418095, -0.036566488444805145, 0.008787590079009533, 0.010722124017775059, -0.014679701067507267, -0.011986525729298592, -0.010949716903269291, 0.01741080731153488, 0.005926881916821003, 0.008092169649899006, -0.0007523188833147287, -0.018245313316583633, -0.020521236583590508, 0.001271513756364584, -0.007314562331885099, 0.006600175518542528, -0.004491786006838083, 0.013250927440822124, -0.020989064127206802, 0.014477396383881569, -0.001063677715137601, -0.005547561217099428, 0.020698251202702522, 0.014287736266851425, 0.006600175518542528, -0.007068003993481398, 0.01870049722492695, 0.01985110342502594, 0.014388888143002987, -0.011512375436723232, -0.01808094047009945, -0.004551845137029886, 0.002068876987323165, 0.0005278876051306725, -0.014249804429709911, 0.003312731860205531, 0.02044537104666233, -0.007447324693202972, 0.013314147479832172, 0.0052061728201806545, -0.012871607206761837, -0.022771870717406273, 0.026957038789987564, -0.013921059668064117, 0.01717057265341282, -0.02585700899362564, 0.023050038143992424, 0.02500986121594906, -0.004994385875761509, -0.0017590984934940934, 0.01416129618883133, 0.01126581709831953, -0.020293643698096275, -0.009103690274059772, -0.005857339594513178, -0.005740382708609104, -0.009565196931362152, -0.02375810407102108, -0.0011940691620111465, -0.012783098965883255, 0.004634031560271978, -0.014287736266851425, 0.002786424709483981, -0.007099614012986422, 0.011069835163652897, 0.001977207837626338, -0.002846483839675784, -0.008262863382697105, 0.007586408872157335, -0.02892950549721718, -0.014907293021678925, -0.016942979767918587, -0.017018843442201614, -0.01039338018745184, -0.006059643812477589, -0.0035561290569603443, 0.013579671271145344, -0.00024813879281282425, 0.00029871484730392694, 0.012637692503631115, -0.005544400308281183, -0.006084932014346123, -0.009091046638786793, 0.017916569486260414, 0.03406297415494919, 0.029258249327540398, 0.014110720716416836, 0.014616481028497219, -0.001419290667399764, 0.01399692427366972, -0.029030658304691315, -0.014350956305861473, -0.00472886161878705, -0.015615358017385006, 0.005816246848553419, 0.007851933129131794, -0.02552826516330242, -0.02642599120736122, -0.007763424888253212, -0.004754149354994297, 0.011063512414693832, 0.01772690936923027, -0.014603836461901665, 0.008079525083303452, 0.0009862331207841635, 0.0270581915974617, 0.008401948027312756, 0.01307391095906496, 0.017941856756806374, 0.006100737024098635, 0.02555355429649353, -0.006356778554618359, -0.014704989269375801, 0.023694884032011032, 0.0017701620236039162, -0.0072829523123800755, 0.017828060314059258, 0.0064358036033809185, 0.008951961994171143, 0.018257956951856613, 0.005686645396053791, -0.025705281645059586, -0.00859792996197939, -0.009811755269765854, 0.011461799032986164, 0.006116542033851147, -0.007105936296284199, -0.023922475054860115, -0.012808387167751789, -0.010905462317168713, -0.005857339594513178, -0.0022490541450679302, 0.006034356076270342, -0.036288321018218994, 0.0012920602457597852, -0.006056482903659344, -0.027563951909542084, 0.017284367233514786, -0.014060144312679768, 0.010153143666684628, 0.012176185846328735, 0.028524896129965782, -0.022759227082133293, -0.007738137152045965, -0.008888741955161095, 0.002053071977570653, -0.003356985980644822, 0.021431604400277138, 0.006480057258158922, 0.0006061224266886711, -0.00017059542005881667, -0.003635154105722904, 0.013250927440822124, -0.015450986102223396, -0.022645430639386177, -0.012549184262752533, 0.013187707401812077, -0.003546646097674966, -0.015134885907173157, -0.015046377666294575, -0.00020289691747166216, 0.018485549837350845, -0.005240944214165211, -0.007188122253865004, 0.02918238565325737, -0.013263571076095104, 0.010854886844754219, -0.00684041203930974, 0.006151312962174416, -0.017853349447250366, 0.00429580407217145, 0.012612404301762581, -0.006612819619476795, -0.009211164899170399, 0.006834089756011963, -0.0002398411452304572, 0.005544400308281183, -0.005670840386301279, -0.0025003538466989994, 0.008389303460717201, -0.01620962657034397, 0.014755564741790295, -0.023366138339042664, -0.008667471818625927, -0.0009056275594048202, -0.014755564741790295, 0.020546523854136467, -0.00013315728574525565, 0.0027295267209410667, 0.026552431285381317, 0.015223393216729164, -0.004665641579777002, 0.008370338007807732, 0.0019392757676541805, -0.029688145965337753, -0.014262448064982891, 0.001702200504951179, -0.0026631455402821302, 0.012119287624955177, -0.0009577841265127063, -0.01689240336418152, -0.011986525729298592, 0.00033664688817225397, -0.008888741955161095, 0.009729568846523762, 0.007434680592268705, 0.004219939932227135, 0.005569688510149717, 0.014818784780800343, 0.012644014321267605, 0.0002933806390501559, -0.008572641760110855, 0.010349125601351261, 0.008882420137524605, -0.00019133949535898864, -0.01926947757601738, -0.033810093998909, -0.038994140923023224, -0.008503099903464317, 0.0015915653202682734, 0.010760056786239147, -0.020660320296883583, -0.031458307057619095, 0.01715792715549469, 0.00963473878800869, 0.016171693801879883, -0.01711999624967575, -0.006369422189891338, -0.023985695093870163, -0.0127704543992877, -0.024504100903868675, 0.0033253757283091545, 0.011234207078814507, 0.008111135102808475, 0.031761765480041504, 0.022948887199163437, -0.008035271428525448, 0.015008444897830486, 0.005626586265861988, -0.024542031809687614, 0.011493409052491188, 0.005936364643275738, -0.01234688051044941, 0.01251125242561102, -0.014401532709598541, 0.008307117968797684, -0.01868785358965397, -0.005272554233670235, 0.0023454646579921246, 0.0036319931969046593, 0.01714528352022171, 0.025199521332979202, 0.015261325985193253, -0.0016990394797176123, 0.00021376287622842938, -0.014338312670588493, -1.5730931409052573e-05, -0.004115626681596041, -0.009040470235049725, -0.013086555525660515, 0.031736478209495544, 0.012169864028692245, 0.02465582825243473, 0.017663687467575073, -0.020913200452923775, -0.00595216965302825, 0.005301003344357014, -0.004314769990742207, -0.0036983743775635958, -0.01473027653992176, -0.025098368525505066, 0.009596806950867176, 0.017082063481211662, -0.0004717797855846584, 0.0027058192063122988, -0.008553676307201385, -0.03004217892885208, -0.006701327860355377, -0.00844620168209076, -0.014110720716416836, 0.010064635425806046, -0.00011636444833129644, 0.003467621048912406, -0.014894649386405945, 0.01518546137958765, -0.01598203368484974, 0.012131932191550732, -0.006650751456618309, 0.013908416032791138, 0.0018760556122288108, -0.022645430639386177, -0.004507591016590595, -0.003300087759271264, -0.00023569233599118888, -0.00798469502478838, 0.005967974662780762, 0.005149275064468384, 0.02110286056995392, -0.001901343697682023, 0.013250927440822124, -0.0018760556122288108, -0.016133762896060944, 0.01861198991537094, -0.013352079316973686, 0.013744044117629528, 0.004153558984398842, 0.028803065419197083, -0.014603836461901665, 0.0073841046541929245, -0.0023944603744894266, -0.005869983695447445, 0.033506639301776886, -0.010475565679371357, 0.0038248144555836916, 0.0002627584326546639, -0.006707649677991867, 0.01065890397876501, 0.006789835635572672, -0.0014809302520006895, 0.022961530834436417, 0.008351371623575687, 0.0031341351568698883, -0.00047454566811211407, -0.024794911965727806, 0.0013861000770702958, -0.0234672911465168, 0.0026346964295953512, -0.012903217226266861, 0.007523188833147287, -0.0017875476041808724, 0.005651874467730522, 0.01384519599378109, 0.0061829229816794395, -0.00601855106651783, 0.012947470881044865, -0.028752489015460014, -0.030547939240932465, 0.012372168712317944, -0.012435388751327991, 0.015059021301567554, 0.004611904267221689, -0.003148359712213278, 0.0034897481091320515, -0.009135300293564796, -0.009438756853342056, -0.005272554233670235, -0.0019582416862249374, -0.03014332987368107, 0.026274261996150017, -0.0023454646579921246, -0.006612819619476795, -0.020698251202702522, 0.018207380548119545, -0.007934119552373886, 0.0022269270848482847, -0.009394503198564053, -0.007681238930672407, 0.012277337722480297, -0.014173940755426884, 0.03755272179841995, -0.002011978765949607, 0.01174628920853138, -0.006034356076270342, 0.012435388751327991, 0.01803036406636238, 0.0123532023280859, 0.004485464189201593, -0.008066881448030472, 0.01562800258398056, -0.020546523854136467, -0.006890987977385521, 0.013175062835216522, 0.004008152522146702, -0.023909831419587135, -0.00399234751239419, -0.03259626775979996, 0.005465375259518623, -0.0054716975428164005, -0.017069419845938683, 0.004507591016590595, -0.00960945151746273, -0.018485549837350845, -0.008490455336868763, 0.011815831996500492, -0.0018665726529434323, 0.0004121158563066274, 0.021444248035550117, 0.0324445404112339, -0.0165636595338583, -0.006890987977385521, 0.005882627796381712, -0.004573972430080175, -0.012100322172045708, 0.02738693542778492, 0.017056776210665703, 0.015868239104747772, -0.0003273614274803549, -0.012391134165227413, -0.025363894179463387, -0.00415039760991931, -0.013819907791912556, 0.0006531424005515873, 0.002582540037110448, -0.00415039760991931, 0.020963776856660843, 0.010178431868553162, -0.007542154751718044, 0.03697109967470169, 0.0012888992205262184, 0.004109304863959551, 0.016336066648364067, 0.014527972787618637, -0.009691637009382248, 0.016007322818040848, 0.014287736266851425, 0.0156659334897995, -0.020963776856660843, -0.0037773994263261557, 0.0052820369601249695, -0.012998047284781933, 0.000426340353442356, 0.012271015904843807, -0.03998037427663803, 0.013554384000599384, -0.019067173823714256, 0.0064358036033809185, -0.009748535230755806, 0.023062681779265404, 0.021810924634337425, 0.012397455982863903, -0.011809509247541428, 0.03178705275058746, -0.009204843081533909, 0.00814906693994999, -0.003957576584070921, -0.019168326631188393, 5.69968469790183e-05, -0.02312590181827545, -0.006625463720411062, 0.0081427451223135, -0.0012580794282257557, -0.026375414803624153, 0.00349923106841743, 0.008762301877140999, -0.022114381194114685, 0.01110144518315792, -0.0054590534418821335, -0.02887892909348011, -0.0015591650735586882, 0.0006946305511519313, -0.0017243274487555027, 0.015539494343101978, 0.015261325985193253, -0.008907708339393139, 0.01025429554283619, 0.010007737204432487, -0.0024323922116309404, 0.00029891240410506725, 0.01744874007999897, 0.01065890397876501, 0.0026473405305296183, 0.0016160630621016026, 0.0018792166374623775, -0.018826937302947044, 0.023100614547729492, 0.01471763290464878, -0.02288566716015339, 0.0012849479680880904, 0.00931863859295845, -0.002244312549009919, -0.004267354961484671, -0.0182958897203207, -0.0074283587746322155, 0.0015054279938340187, 0.01250493060797453, -0.030522651970386505, 0.007858254946768284, -0.02081204764544964, -0.004488625098019838, 0.009179554879665375, -0.0017274884739890695, 0.006217694375663996, 0.012738844379782677, 0.0016516244504600763, -0.004232584033161402, -0.002961860504001379, 0.0033348589204251766, 0.0023770746774971485, 0.003925966564565897, 0.008869776502251625, 0.013301502913236618, -0.0013086554827168584, 0.025502977892756462, 0.00782032310962677, 0.02136838436126709, 0.02469376102089882, -0.006581209599971771, 0.02885364182293415, -0.0073398505337536335, -0.0014090173644945025, -0.009495655074715614, 0.0023928796872496605, 0.0006728986627422273, -0.01655101589858532, 0.01591881364583969, 0.009097368456423283, -0.005721416790038347, -0.012985402718186378, 0.00874333642423153, -0.013339435681700706, -0.006461091339588165, -0.007080648094415665, 0.017651043832302094, -0.023947764188051224, 0.004159880802035332, 0.008680116385221481, -0.04420347511768341, 0.004624548368155956, 0.01871314086019993, -0.007061682175844908, 0.01622227020561695, -0.020331574603915215, 0.002301210770383477, 0.0010383897460997105, -0.0013339435681700706, 0.010285905562341213, -0.004896394442766905, 0.022367261350154877, 0.005576010327786207, 0.015590069815516472, -0.006903632078319788, -0.034164126962423325, 0.011512375436723232, -0.003379112808033824, 0.01655101589858532, 0.0071628340519964695, -0.011221562512218952, -0.0201545599848032, 0.010772700421512127, 0.0037457894068211317, -0.002506675897166133, 0.00015607455861754715, 0.02074882760643959, 0.014287736266851425, 0.006543277762830257, 0.01250493060797453, 0.014490040950477123, -0.006593853700906038, 0.00859792996197939, -0.02647656574845314, -0.009723247028887272, -0.005560205318033695, -0.03150888532400131, -0.015375121496617794, 0.0052820369601249695, -0.015425697900354862, 0.024188000708818436, -0.0012485964689403772, 0.003726823255419731, 0.02498457208275795, -0.00016674294602125883, 0.00830079521983862, -0.0022474736906588078, -0.008831843733787537, 0.012776777148246765, 0.0015441502910107374, -0.008737013675272465, 0.014629124663770199, -0.0159441027790308, -0.015046377666294575, 0.011341680772602558, -0.02585700899362564, 0.01096868235617876, 0.018182093277573586, 0.01777748391032219, -0.023290274664759636, 0.012327914126217365, 0.008566319942474365, 0.004773115273565054, 0.00024932416272349656, 0.016373999416828156, -0.002422909252345562, 0.0015243940288200974, -0.005101860035210848, -0.026577718555927277, 0.012587116099894047, -0.0022901471238583326, 0.01250493060797453, -0.01548891793936491, -0.02109021693468094, -0.00473518343642354, 0.0011205758200958371, 0.005610781256109476, 0.01684182696044445, -0.0008139584679156542, 0.006922597996890545, -0.0074157146736979485, -0.00624930439516902, -0.014894649386405945, -0.0006077029393054545, -0.015109597705304623, -0.021899433806538582, 0.01110144518315792, -0.006480057258158922, 0.00048600431182421744, 0.00799101684242487, -0.012795742601156235, -0.004592938348650932, 0.02163390815258026, -0.020331574603915215, -0.0102479737251997, 0.0010020381305366755, -0.00043858925346285105, -0.0029081234242767096, 0.0018207380780950189, -0.0044981082901358604, -0.018877513706684113, 0.0020815208554267883, -0.006726615596562624, -0.004475980997085571, 0.00034257376682944596, 0.005421121139079332, -0.0039038395043462515, -0.009552553296089172, -0.009204843081533909, 0.020521236583590508, 0.002873352263122797, -0.018485549837350845, -0.01746138371527195, -0.006037516985088587, -0.0058668227866292, -0.008749658241868019, -0.023404071107506752, 0.01370611134916544, 0.011133055202662945, 0.023378783836960793, -0.001107931835576892, -0.009641061536967754, -0.0037205012049525976, -0.0222281776368618, -0.0021131308749318123, 0.01369346771389246, -0.010949716903269291, 0.009912907145917416, -0.005345256999135017, -0.004776276648044586, 0.00889506470412016, 0.016411930322647095, 0.0016247559105977416, 0.007301918230950832, 0.0010771120432764292, 0.010861208662390709, 0.0022063804790377617, 0.016411930322647095, 0.022177601233124733, 0.01008992362767458, 0.0018760556122288108, -0.03459402546286583, -0.012441710568964481, -0.019749950617551804, 0.006107058841735125, -0.01591881364583969, -0.004567650146782398, 0.015198105946183205, -0.01503373309969902, 0.017018843442201614, 0.00766227301210165, -0.023391427472233772, -0.005515951197594404, -0.021583333611488342, 0.032039932906627655, -0.0031799697317183018, -0.009065758436918259, 0.0033380198292434216, 0.017031487077474594, -0.021760348230600357, -0.023012107238173485, -0.002653662580996752, 0.010001415386795998, -0.009811755269765854, 0.027007615193724632, 0.0028211958706378937, -0.001378987799398601, -0.006935242097824812, -0.003184711094945669, 0.004943809472024441, -0.03431585431098938, -0.01473027653992176, -0.010861208662390709, 0.008060559630393982, -0.03229281306266785, -1.5940842786221765e-05, -0.005000707693397999, 0.0018981826724484563, -0.0012280498631298542, 0.002841742243617773, -0.005775153636932373, 0.004163041710853577, -0.032899726182222366, -0.01368082407861948, -0.017360232770442963, -0.011512375436723232, 0.008711726404726505, -0.002301210770383477, -0.014907293021678925, -0.004261033143848181, 0.0018997632432729006, -0.011297427117824554, 0.003805848304182291, -0.012460676021873951, 0.0043653459288179874, -0.007858254946768284, 0.007630662992596626, 0.01805565319955349, -0.004238905850797892, -0.009287028573453426, -0.0024734854232519865, -0.024504100903868675, 0.0008700662292540073, 0.0005768831470049918, 0.004093499854207039, -0.01719585992395878, -0.012783098965883255, 0.0409918949007988, -0.025616774335503578, -0.03608601912856102, 0.028347881510853767, 0.006543277762830257, 0.00010480702621862292, -0.015615358017385006, 0.011474443599581718, 0.005389511119574308, -0.014477396383881569, 0.016917690634727478, -0.01713263988494873, -0.008477811701595783, -0.010064635425806046, 0.0043463800102472305, -0.020559167489409447, 0.036288321018218994, 0.021241944283246994, 0.02260749787092209, 0.002359689213335514, 0.02048330381512642, -0.011651459150016308, 0.01156927365809679, 0.01711999624967575, 0.009445078670978546, -0.028094999492168427, 0.006865699775516987, -0.002726365579292178, 0.0061829229816794395, -0.002200058428570628, 0.008939318358898163, 0.01623491384088993, -0.006796157918870449, 0.007017428055405617, -0.03426527976989746, 0.010633616708219051, 0.007086970377713442, -0.0034454939886927605, -0.012802064418792725, 0.003989186603575945, 0.011518697254359722, 0.0023264987394213676, -0.006600175518542528, 0.02074882760643959, -0.010298550128936768, -0.005373706109821796, 0.0016468828544020653, -0.015261325985193253, -0.012125610373914242, 0.010873852297663689, -0.009603128768503666, 0.01835910975933075, 0.01593145914375782, 0.02321441099047661, 0.030016889795660973, -0.024832844734191895, 0.008711726404726505, -0.01686711609363556, 0.010741090402007103, -0.02109021693468094, 0.00978646706789732, -0.005244105122983456, -0.0023976212833076715, 0.032343387603759766, 0.0045265574008226395, -0.005664518568664789, -0.006480057258158922, -0.023543154820799828, -0.016475150361657143, 0.01159456092864275, 0.017853349447250366, 0.004185169003903866, 0.005664518568664789, -0.015046377666294575, 0.012378490529954433, -0.003935449756681919, -0.008528388105332851, 0.0014453688636422157, 0.016121119260787964, 0.03006746619939804, 0.01518546137958765, -0.008951961994171143, -0.011366968974471092, -0.023821324110031128, 0.00900253839790821, -0.005019673611968756, 0.00013207067968323827, 0.008876098319888115, 0.005032317712903023, 0.007580086588859558, 0.01867520995438099, 0.013010690920054913, 0.012403778731822968, -0.011651459150016308, -0.001262820907868445, 0.002802229719236493, -0.02559148520231247, -2.3633441742276773e-05, -0.000362725171726197, 0.00977382343262434, 0.012315270490944386, -0.00413775397464633, -0.007953085005283356, -0.0015243940288200974, -0.010873852297663689, 0.016133762896060944, 0.018434973433613777, -0.01370611134916544, -0.005572849418967962, 0.0018191576236858964, 0.006043838802725077, -0.006037516985088587, 0.01773955300450325, -0.000992555171251297, -0.0003566007362678647, -0.009641061536967754, 0.005212495103478432, 0.0037363062147051096, -0.02251899056136608, 0.00593952601775527, -0.0247064046561718, 0.005566527601331472, 0.0015773407649248838, -0.016462506726384163, 0.006941563915461302, -0.008231253363192081, -0.00391332246363163, -0.00043542825733311474, 0.009375536814332008, -0.005500146187841892, -0.005607620347291231, 0.0182958897203207, -0.021305164322257042, -0.007478934712707996, 0.021001707762479782, 0.008762301877140999, 0.014540616422891617, 0.014704989269375801, -0.02258221060037613, 0.018801650032401085, -0.001128478324972093, 0.010576718486845493, 0.004555006045848131, -0.001092126709409058, 0.004261033143848181, -0.0035118749365210533, 0.025401825085282326, -0.010431312024593353, 0.003802687395364046, -0.022999461740255356, 0.015084309503436089, 0.004200974013656378, -0.00285438634455204, 0.023568443953990936, -0.021140791475772858, -0.025717925280332565, -0.012157220393419266, 0.007314562331885099, 0.012719878926873207, 0.017575180158019066, 0.013668179512023926, 0.01039970200508833, -0.029106521978974342, 0.0003935449640266597, -0.008180677890777588, 0.015134885907173157, -0.009520943276584148, 0.017056776210665703, -0.02464318461716175, -0.010488210245966911, 0.009596806950867176, -0.003711018245667219, 0.02131780795753002, 0.013250927440822124, 0.011449155397713184, -0.009881297126412392, 0.018536126241087914, 0.00026710479869507253, 0.017613112926483154, -0.02946055307984352, 0.019408563151955605, -0.016993556171655655, -0.013086555525660515, 0.00444753235206008, -0.009527265094220638, 0.022417837753891945, 0.004115626681596041, -0.01803036406636238, -0.023568443953990936, 0.018902800977230072, -0.0541163831949234, 0.006094415206462145, -0.00782664492726326, 0.002494031796231866, -0.012283660471439362, 0.017372876405715942, -0.007270308211445808, 0.026350125670433044, 0.0018555091228336096, 0.006808802019804716, 0.018144160509109497, 0.0015607455279678106, -0.010993970558047295, -0.013427943922579288, -0.0008400367223657668, 0.009381858631968498, 0.017954500392079353, -0.011025580577552319, -0.0054906634613871574, 0.01337736751884222, 0.008357693441212177, 0.00751686654984951, -0.005642391741275787, -0.01859934628009796, 0.029890449717640877, -0.0022980496287345886, 0.006865699775516987, 0.009249096736311913, -0.012283660471439362, -0.027614528313279152, 0.00699846213683486, -0.03345606103539467, -0.009445078670978546, 0.019636154174804688, 0.005095537751913071, 0.012391134165227413, 0.024896064773201942, -0.0015054279938340187, -0.012258372269570827, 0.013099199160933495, -0.005607620347291231, -0.004599260166287422, 0.018738429993391037, 0.015602714382112026, -0.012574472464621067, 0.0027437512762844563, 0.013794619590044022, 0.005670840386301279, 0.02287302166223526, -0.02708347886800766, 0.002331240102648735, -0.008680116385221481, -0.026957038789987564, 0.0013742463197559118, -0.01648779585957527, -0.01354173943400383, -0.004732022527605295, -0.0012865285389125347, 0.03679408133029938, -0.003221062710508704, 0.009489333257079124, 0.009268063120543957, -0.01929476670920849, 0.001215405878610909, 0.020887911319732666, -0.012998047284781933, -0.014945224858820438, 0.01896602101624012, 0.002147902036085725, 0.024516744539141655, -0.03163532540202141, -0.01595674641430378, -0.01548891793936491, 0.009799111634492874, 0.02320176735520363, -0.013655535876750946, 0.02317647822201252, -0.014995801262557507, 0.022632787004113197, 0.015008444897830486, -0.0006211372092366219, -0.014957869425415993, 0.0019898517057299614, -0.008003661409020424, -0.019610866904258728, -0.013364722952246666, 0.011152020655572414, -0.009053114801645279, -0.004564489237964153, 6.401032442227006e-05, -0.006132347043603659, 0.019117750227451324, -0.015438341535627842, 0.004659319296479225, 0.019092461094260216, 0.01321299560368061, 0.0035972220357507467, -0.0009016763069666922, -0.014692344702780247, -0.01276413258165121, 0.0006444496102631092, -0.009963483549654484, -0.015767086297273636, 0.009596806950867176, 0.009552553296089172, -0.010639938525855541, -0.02071089670062065, -0.007346172351390123, 0.0052535878494381905, 0.0025003538466989994, 0.000318866252200678, 0.026248974725604057, 0.007080648094415665, -0.008724370039999485, 0.012738844379782677, 0.02464318461716175, 0.008680116385221481, 0.0063188462518155575, -0.010146821849048138, -0.026071958243846893, 0.004975419957190752, -0.017916569486260414, 0.0028433226980268955, -0.006802479736506939, -0.019471783190965652, 0.0054147993214428425, -0.0006906792987138033, 0.003224223619326949, -0.011322715319693089, 0.017663687467575073, -0.03456873446702957, 0.017499316483736038, -0.003976542502641678, 0.009350248612463474, 0.00595216965302825, 0.0012225181562826037, -0.021216657012701035, -0.015552137978374958, 0.0029397334437817335, -0.019724663347005844, 0.02401098422706127, -0.020849980413913727, 0.0032937657088041306, 0.005291520152240992, -0.020002830773591995, -0.017802773043513298, -0.009103690274059772, 0.017056776210665703, 0.010576718486845493, -0.0043052867986261845, -0.035049207508563995, 0.0013979538343846798, 0.02647656574845314, 0.01958557777106762, -0.010007737204432487, 0.013276215642690659, -0.03072495572268963, -0.0201545599848032, 0.0022048000246286392, -0.008755980059504509, 0.0042420667596161366, -0.0032589947804808617, 0.0153245460242033, 0.005152435973286629, 0.006644429638981819, 0.03009275533258915, 0.02106492780148983, -0.002550930017605424, -0.012226762250065804, 0.005057605914771557, -0.004934326745569706, -0.0003400054411031306, -0.00030404902645386755, -0.011360647156834602, -0.003240028629079461, -0.004988063592463732, 0.006625463720411062, -0.0053262910805642605, -0.004915360826998949, -0.008692760020494461, 0.027816832065582275, -0.001961402827873826, -0.009375536814332008, 0.0002767853729892522, 0.0102479737251997, -0.005395833402872086, -0.021608620882034302, 0.0019661441911011934, -0.002960279816761613, 0.006751903798431158, 0.00645793043076992, 0.008888741955161095, -0.00736513826996088, -0.007055360358208418, -0.0002030944888247177, 0.011145698837935925, -0.0062587871216237545, -0.0033980789594352245, 0.008629539981484413, 0.03069966658949852, 0.0019629832822829485, 0.012795742601156235, -0.034189414232969284, -0.026830598711967468, 0.03181234002113342, -0.0011055610375478864, -0.009641061536967754, -0.008806556463241577, 0.013933704234659672, -0.012365845963358879, 0.008338727988302708, -0.014439464546740055, 0.010336481966078281, 0.016146406531333923, -0.018422329798340797, 0.01054510846734047, 0.031433019787073135, 0.0004251549835316837, -0.013301502913236618, 0.014553260989487171, 0.013465875759720802, 0.006429481320083141, 0.017056776210665703, 0.00979278888553381, 0.009887618944048882, -0.023290274664759636, 8.065498695941642e-05, 0.0189154464751482, 0.023909831419587135, 0.002275922568514943, 0.006492701359093189, 0.001402695314027369, 0.02675473503768444, -0.028094999492168427, 0.0303709227591753, 0.0037457894068211317, 0.01234055869281292, 0.011506053619086742, -0.02200058475136757, 0.01589352637529373, -0.009217486716806889, -0.007314562331885099, -0.0007542945095337927, -0.008509421721100807, -0.02283509075641632, 0.006663395557552576, 0.02372017130255699, 0.0044664982706308365, -0.003001373028382659, 0.0015109597006812692, -0.00813642330467701, 0.008180677890777588, -0.0064073544926941395, 0.013099199160933495, 0.0072513422928750515, 0.00489323353394866, -0.014679701067507267, -0.0073714605532586575, -0.009565196931362152, 0.009811755269765854, 0.004912199452519417, 0.008914030157029629, -0.012896894477307796, 0.00828815158456564, -0.013567027635872364, -0.021874144673347473, -0.005863661877810955, -0.025060437619686127, -0.008755980059504509, 0.013314147479832172, -0.0072513422928750515, 0.0033095707185566425, 0.026704158633947372, 0.02313854731619358, 0.00450443010777235, -0.02229139767587185, -0.0153245460242033, -0.0030345635022968054, 0.012814708985388279, 0.01548891793936491, -0.0270581915974617, -0.0009056275594048202, -0.013288859277963638, -0.0024766463320702314, 0.0031657451763749123, 0.005576010327786207, -0.001877636183053255, 0.006205050274729729, -0.004131431691348553, -0.0025809595827013254, -0.0030551101081073284, 0.01503373309969902, 0.010026703588664532, 0.00489323353394866, 0.004690929315984249, -0.014275092631578445, 0.025427114218473434, -0.016765963286161423, 0.010526142083108425, 0.022974174469709396, 0.016753319650888443, -0.009242774918675423, -0.016108473762869835, -0.019914323464035988, -0.024554675444960594, -0.0014295638538897038, -0.01959822326898575, -0.009565196931362152, 0.008699081838130951, 0.016791250556707382, -0.002315435092896223, 0.006312524434179068, 0.016778606921434402, -0.0026283746119588614, -0.01446475274860859, 0.018472906202077866, 0.0025951839052140713, 0.0018096745479851961, -0.001582082360982895, -0.003009275533258915, 0.006056482903659344, -0.016285490244627, 0.0006393129588104784, 0.01173996739089489, 0.017347587272524834, -0.00946404505521059, 0.01054510846734047, -0.007314562331885099, 0.011942272074520588, -0.012011813931167126, -0.015703866258263588, 0.021191367879509926, -0.005572849418967962, 0.01323828287422657, -0.023340851068496704, 1.7150914572994225e-05, 0.02403627149760723, -0.026021381840109825, -0.01648779585957527, 0.008939318358898163, 0.011954915709793568, 0.0054716975428164005, -0.029865162447094917, 0.00025169490254484117, 0.014401532709598541, 0.007276630494743586, 0.0019629832822829485, 0.018498193472623825, 0.021709773689508438, 0.0036730861756950617, -0.019357986748218536, 0.0024244897067546844, 0.005888949614018202, 0.0003330907493364066, -0.013453231193125248, 0.04845186322927475, -0.0024292313028126955, -0.011600883677601814, -0.016993556171655655, -0.0036857302766293287, -0.010191075503826141, 0.009565196931362152, -0.005759348627179861, -0.006815123837441206, -0.015754442662000656, 0.011291105300188065, -0.01174628920853138, -0.0009253838215954602, -0.004830013494938612, -0.011525019071996212, -0.004988063592463732, -0.004001830704510212, -0.02680531144142151, -0.00033348589204251766, 0.00900253839790821, 7.79878901084885e-05, -0.008382981643080711, -0.01159456092864275, 0.024516744539141655, 4.3414409446995705e-05, 0.032318100333213806, 0.008907708339393139, 0.029865162447094917, -0.013465875759720802, -0.02407420426607132, -0.03153417259454727, -0.006299880333244801, -0.013554384000599384, 0.013162419199943542, -0.017398163676261902, -0.012574472464621067, -0.016437219455838203, 0.023037394508719444, 0.008844488300383091, 0.00458345515653491, -0.008484133519232273, -0.0044222441501915455, 0.016791250556707382, 0.0010304872412234545, 0.027007615193724632, -0.0010091504082083702, 0.006821445655077696, -0.0008811297593638301, 0.0004468869010452181, 0.013807264156639576, -0.0015488917706534266, 0.0021810925099998713, 0.0016626878641545773, 0.009571518748998642, -0.02495928481221199, 0.02200058475136757, -0.00766227301210165, 0.013554384000599384, 0.02436501532793045, 0.014957869425415993, 0.011999170295894146, -0.003486586967483163, -0.0013600217644125223, 0.02552826516330242, -0.013048622757196426, -0.0004156719660386443, -0.003116749692708254, 0.00252564181573689, -0.00263785757124424, -0.024225931614637375, 0.013604959473013878, 0.0032226431649178267, -0.008768623694777489, 0.011695713736116886, 0.010747412219643593, 0.025806434452533722, -0.007586408872157335, -0.013111842796206474, 0.008996216580271721, -0.02436501532793045, -0.00024892904912121594, 0.004811047576367855, -0.014844072982668877, -0.004327414091676474, 0.011702035553753376, -0.024794911965727806, -0.015413053333759308, -0.00602487288415432, 0.011392257176339626, -0.0027848442550748587, 0.010323838330805302, 0.013579671271145344, 0.011145698837935925, -0.0027642976492643356, -0.0182958897203207, 0.008768623694777489, -0.009489333257079124, 0.016133762896060944, 0.005417960230261087, 0.011638815514743328, -0.02012927085161209, -0.012662980705499649, -0.009856008924543858, -0.003451816039159894, -0.01929476670920849, -0.007485256530344486, 0.0006092834519222379, -0.0042578717693686485, 0.004675124306231737, -0.0063188462518155575, -0.013010690920054913, 0.027816832065582275, 0.004697251599282026, 0.011164665222167969, 0.00019953834998887032, 0.002383396727964282, -0.0028512252029031515, 0.015071664936840534, 0.024124780669808388, 0.012485964223742485, -0.002304371679201722, 0.005920559633523226, 0.001363182789646089, 0.0008684857748448849, 0.019964899867773056, 0.027311071753501892, 0.009748535230755806, -0.005863661877810955, 0.009527265094220638, 0.010532463900744915, 0.007769747171550989, -0.012719878926873207, -0.021583333611488342, 0.01399692427366972, -0.011474443599581718, -0.01595674641430378, 0.017929213121533394, -5.882430195924826e-05, 0.009135300293564796, -0.013592315837740898, 0.0034739430993795395, 0.017082063481211662, 0.019206257537007332, 0.005152435973286629, 0.002378655131906271, 0.025338605046272278, -0.019686730578541756, 0.021431604400277138, 0.005462214350700378, 0.0033822739496827126, -0.010633616708219051, 0.0032747997902333736, 0.006872022058814764, 0.0074157146736979485, 0.01870049722492695, 0.001948758726939559, 0.011310070753097534, -0.005174562800675631, 0.0009633158333599567, 0.0020135592203587294, -0.010804310441017151, 0.029662858694791794, 0.0021668679546564817, -0.016740676015615463, 0.0015496819978579879, 0.011322715319693089, 0.0022537955082952976, 0.006872022058814764, 0.0014264029450714588, 0.011683069169521332, 0.006587531417608261, -0.011973882094025612, 0.005847856868058443, 0.013263571076095104, 0.002754814689978957, -0.0042863208800554276, 0.018131516873836517, -0.011069835163652897, 0.02799384854733944, -0.008654828183352947, 0.009976127184927464, -0.020243067294359207, -0.006973173934966326, -0.018801650032401085, 0.017347587272524834, 0.015754442662000656, 0.020976420491933823, 0.011784221976995468, 0.009185876697301865, 0.022341974079608917, 0.0011806348338723183, -0.03823550045490265, 0.0027089801151305437, -0.010292228311300278, 0.0003670715377666056, 0.000331707822624594, -0.03469517454504967, -0.010001415386795998, -0.014818784780800343, 0.00013216945808380842, 0.028651336207985878, 0.013137130998075008, -0.0020072374027222395, 0.0037046961952000856, 0.00889506470412016, 0.007112258113920689, 0.008907708339393139, -8.065498695941642e-05, -0.00013947929255664349, -0.012732522562146187, 0.00593952601775527, -0.011600883677601814, 0.012802064418792725, -0.004833174403756857, 0.007731814868748188, 0.011771577410399914, 0.012403778731822968, 0.004178846720606089, 0.006356778554618359, -0.004169363994151354, 0.005263071041554213, -0.0064199985936284065, -0.0074283587746322155, -0.010602006688714027, -0.009995093569159508, 0.015248681418597698, 0.025616774335503578, -0.00931231677532196, 0.026881175115704536], "ddef57cf-090c-4585-aa1d-49e2a1e6748b": [-0.00533702177926898, -0.006628003902733326, 0.002223158022388816, 0.050196852535009384, 0.0456964448094368, 0.004583347588777542, -0.0034492306876927614, 0.008409415371716022, 0.004147010389715433, -0.02198275923728943, 0.028214093297719955, 0.032339468598365784, 0.009772519581019878, 0.008979178965091705, -0.012390545569360256, 0.023035740479826927, -0.03603211045265198, 0.015203299932181835, 0.041080642491579056, -0.01291703525930643, 0.04157107323408127, 0.021001901477575302, -0.08262286335229874, 0.008986391127109528, -0.017165016382932663, 0.021679848432540894, -0.011647689156234264, 0.006444093305617571, -0.029887322336435318, 0.00849596131592989, 0.024232963100075722, -0.005347840022295713, 0.02925264835357666, 0.004803319461643696, 0.005841874983161688, -0.04944678395986557, 0.020843233913183212, -0.016588041558861732, -0.023800231516361237, 0.019285399466753006, -0.027550572529435158, 0.010277372784912586, -0.016025489196181297, 0.002895694924518466, -0.05642818659543991, -0.005564205814152956, -0.014597475528717041, 0.021045174449682236, -0.010356707498431206, -0.013522859662771225, 0.014092622324824333, -0.025675401091575623, 0.02925264835357666, 0.02326652966439724, 0.028848765417933464, -0.017525626346468925, -0.011409686878323555, 0.02460799738764763, -0.04211919754743576, -0.04540795832872391, -0.01715059205889702, -0.002868649084120989, -0.025502309203147888, -0.01219581626355648, -0.028920888900756836, 0.013133401051163673, 0.024059871211647987, 0.010904833674430847, -0.08002647757530212, 0.0012594289146363735, 0.01243381854146719, 0.05406258627772331, -0.016732284799218178, 0.03724375739693642, 0.02067014016211033, 0.018895942717790604, 0.03046429716050625, 0.011402474716305733, 0.009383060969412327, -0.01177750900387764, 0.01808817684650421, -0.035887863487005234, 0.007428557146340609, -0.007237434387207031, 0.02310786210000515, 0.015059055760502815, 0.007767530158162117, -0.03946511074900627, -0.019920073449611664, -0.0181170254945755, 0.009794156067073345, -0.016905376687645912, -0.004915108438581228, 0.004053251817822456, -0.006721762474626303, 0.05039879307150841, -0.016501493752002716, 0.01885266788303852, 0.02489648573100567, 0.008625781163573265, -0.029656531289219856, -0.0195594634860754, -0.013256007805466652, 0.03539743646979332, -0.012448242865502834, -0.011676537804305553, 0.027435176074504852, 0.018665151670575142, -0.026454318314790726, 0.03101242333650589, -0.022545311599969864, -0.028848765417933464, -0.014107046648859978, 0.008294020779430866, -0.041657619178295135, -0.002250203862786293, -0.04298466071486473, -0.007644922938197851, -0.00857529602944851, -0.00516032287850976, 0.007868501357734203, 0.03510894998908043, -0.010724528692662716, -0.023006891831755638, -0.037330303341150284, -0.013450737111270428, -0.0023818262852728367, -0.00540914386510849, 0.04128258302807808, -0.029194951057434082, 0.008250746876001358, 0.02253088727593422, 0.014215230010449886, -0.0020302319899201393, 0.005556993652135134, 0.01449650526046753, 0.019126731902360916, 0.017294835299253464, -0.04711003601551056, 0.006494578439742327, -0.06883315742015839, -0.0007022871286608279, 0.0073708598501980305, 0.006494578439742327, -0.005218020640313625, 0.0016651147743687034, -0.0208720825612545, 0.016011064872145653, 0.020309532061219215, 0.026555288583040237, -0.03629174828529358, -0.059832341969013214, -0.0011548522161319852, 0.015275421552360058, 0.04742737114429474, -0.004132585600018501, 0.002253809943795204, -0.0002891638141591102, 0.029021859169006348, 0.02541576325893402, -0.0053225974552333355, -0.02166542410850525, 0.013760861940681934, 0.03531089052557945, -0.007179736625403166, -0.0013441721675917506, 0.018376663327217102, 0.056341640651226044, -0.005928421393036842, 0.018059328198432922, 0.04246538504958153, -0.026843776926398277, 0.014395534060895443, 0.006754217203706503, -0.032022129744291306, 0.058938030153512955, 0.01974697969853878, 0.05873608961701393, 0.030493145808577538, -0.04347509145736694, -0.049879517406225204, 0.017525626346468925, -0.009397485293447971, 0.006646034307777882, 0.004031614866107702, 0.005109837744385004, 0.0027514509856700897, 0.0435904860496521, -0.0037214909680187702, 0.0015100525924935937, 0.0026090103201568127, -0.027925604954361916, 0.0038765529170632362, 0.01504463143646717, -0.0006806505843997002, 0.015275421552360058, -0.027550572529435158, -0.008171413093805313, -0.034964703023433685, 0.011157260276377201, -0.013746436685323715, -0.017338108271360397, -0.010753377340734005, -0.0005706646479666233, -0.04817743971943855, -0.012981944717466831, 0.007731469348073006, -0.008056017570197582, 0.0114241112023592, -0.004770864732563496, 0.030781634151935577, -0.00412897951900959, 0.004626621026545763, -0.01552063599228859, -0.008733963593840599, 0.018867094069719315, 0.0006333205965347588, 0.011936177499592304, -0.012102057226002216, -0.023035740479826927, 0.0017660853918641806, 0.02819966897368431, -0.014539778232574463, 0.0057336920872330666, -0.03499355539679527, -0.014143107458949089, 0.018160298466682434, 0.011820781975984573, -0.05406258627772331, -0.014236866496503353, -0.002217748900875449, -0.030204657465219498, -0.025372490286827087, -0.027060143649578094, -0.0018282905220985413, 0.046013783663511276, 0.03681102767586708, -0.0008280497277155519, 0.004673500079661608, -0.00894311722368002, -0.00723382830619812, 0.04993721470236778, 0.009246029891073704, -0.06237103417515755, 0.03499355539679527, -0.011618840508162975, 0.032339468598365784, 0.022675130516290665, 0.041369132697582245, 0.00629624305292964, -0.032310619950294495, 0.0036854299250990152, -0.0014938252279534936, -0.017583323642611504, -0.03124321438372135, -0.01591009460389614, -0.003869340755045414, -0.013191098347306252, -0.008358930237591267, -0.015852397307753563, -0.009837429039180279, 0.05449531972408295, -0.007688196375966072, 0.024406056851148605, 0.0022682342678308487, -0.015434090048074722, 0.012188604101538658, -0.009015239775180817, 0.0029335590079426765, 0.02806985005736351, 0.020410502329468727, 0.015160026960074902, -0.01764102093875408, 0.03591671586036682, 0.05210087075829506, 0.00021625305816996843, 0.0075728013180196285, -0.040763307362794876, -0.011813569813966751, -0.0168044064193964, -0.05781292915344238, 0.010940894484519958, 0.010349495336413383, -0.002178081776946783, 0.04064791277050972, -0.00544159859418869, -0.016169734299182892, -0.015852397307753563, -0.053110577166080475, 0.0013486797688528895, 0.008661841973662376, 0.017237138003110886, -0.0050954134203493595, -0.014727295376360416, 0.007904562167823315, 0.026685109362006187, -0.00992397591471672, 0.028762219473719597, -0.01898248866200447, 0.05149504914879799, -0.012679032981395721, -0.003901795716956258, -0.01294588390737772, 0.009318151511251926, 0.017366956919431686, 0.005398325622081757, 0.07310277223587036, -0.009289302863180637, -0.00581663241609931, 0.003034529509022832, -0.009556153789162636, -0.03014696016907692, -0.006736186798661947, -0.021723121404647827, 0.02182409167289734, 0.0053225974552333355, -0.04465788975358009, -0.02077111229300499, -0.03793612867593765, -0.012902610935270786, 0.004406649153679609, -0.0053225974552333355, -0.023381924256682396, 0.027766937389969826, 0.02867567352950573, -0.03678217530250549, -0.01294588390737772, -0.028531430289149284, -0.003768370021134615, -0.024651270359754562, -0.052475906908512115, -0.02268955484032631, -0.04206150025129318, 0.01518887560814619, -0.0328298956155777, -0.047513917088508606, -0.023021316155791283, -0.06479433178901672, 0.03920547291636467, -0.007428557146340609, -0.015376392751932144, -0.018261268734931946, 0.016717860475182533, -0.030060414224863052, 0.010587497614324093, -0.0005693123675882816, -0.020021043717861176, 0.022747252136468887, -0.027824634686112404, 0.0037900067400187254, 0.0009078346192836761, 0.015087904408574104, 0.04004208743572235, -0.019054610282182693, -0.01449650526046753, 0.0022213549818843603, -0.026555288583040237, 0.019371947273612022, -0.011510658077895641, 0.0010196235962212086, -0.014453232288360596, -0.038138069212436676, 0.039580509066581726, -0.011388050392270088, 0.0315028540790081, 0.001261231955140829, 0.018347814679145813, 0.010652407072484493, -0.027723664417862892, -0.035887863487005234, -0.0050232913345098495, 0.03678217530250549, -0.025502309203147888, 0.009945612400770187, -0.0034852914977818727, 0.0010286387987434864, 0.030550843104720116, -0.011532294563949108, -0.029137253761291504, 0.007309556007385254, -0.025776373222470284, -0.027290932834148407, -0.03868619725108147, 0.011005803942680359, 0.04214804619550705, -0.012058784253895283, 0.043128903955221176, -0.0013396645663306117, -0.018867094069719315, -0.00025828660000115633, -0.032281771302223206, 0.0207422636449337, -0.023987749591469765, -0.006256576161831617, -0.035830166190862656, 0.0017669869121164083, 0.027420751750469208, 0.009383060969412327, 2.073505129374098e-05, -0.008907056413590908, 0.05579351261258125, -0.004669893998652697, -0.0007694506784901023, -0.021910637617111206, -0.007176130544394255, -0.01929982379078865, -0.02912282943725586, -0.0027514509856700897, 0.010710104368627071, 0.02426181174814701, 0.017842961475253105, -0.008315657265484333, 0.0006576617015525699, 0.05031224712729454, -0.004745622165501118, 0.037907280027866364, -0.03779188543558121, 0.04659075662493706, 0.007013856433331966, -0.017352532595396042, 0.022588584572076797, 0.05937075987458229, 0.004067676141858101, -0.007688196375966072, 0.04382127523422241, -0.016342826187610626, 0.007644922938197851, 0.011416899040341377, 0.03709951415657997, -0.03473391383886337, 0.01919885352253914, 0.03802267462015152, -0.0007022871286608279, -0.011589991860091686, -0.005506508052349091, 0.022328944876790047, 0.007360041607171297, 0.0333491750061512, 0.009404697455465794, -0.006664065178483725, -0.02019413560628891, 0.016011064872145653, -0.0054488107562065125, 0.02505515329539776, -0.015578334219753742, -0.007464618422091007, -0.02051147259771824, -0.0009375849040225148, -0.009613851085305214, 0.02032395638525486, -0.009729246608912945, -0.01869400031864643, -0.041397981345653534, -0.021708697080612183, -0.010327857919037342, 0.013169461861252785, 0.029324771836400032, -0.011727023869752884, 0.006876824889332056, -0.05290863662958145, -0.029483439400792122, 0.014640748500823975, 0.015347544103860855, 0.00022256372903939337, 0.020367229357361794, -0.031416308134794235, -0.03366651013493538, -0.014828265644609928, 0.017237138003110886, 0.003276138100773096, -0.012455455027520657, 0.02029510773718357, 0.022170277312397957, 0.038743894547224045, 0.017395805567502975, 0.011344777420163155, -0.06421735137701035, 0.0077819544821977615, 0.010659619234502316, 0.015462938696146011, 0.003829673631116748, -0.04589838534593582, 0.021016325801610947, -0.004280435852706432, 0.02042492665350437, -0.01029179710894823, 0.022127004340291023, 0.009411909617483616, 0.024117568507790565, 0.011669325642287731, -0.02426181174814701, -0.0020897325593978167, 0.04566759616136551, 0.01927097514271736, 0.03444542735815048, 0.018895942717790604, 0.006325092166662216, -0.020266259089112282, 0.017424654215574265, -0.02071341499686241, 0.012022723443806171, -0.016588041558861732, -0.011676537804305553, -0.03450312465429306, -0.037561092525720596, 0.007702620700001717, -0.013356979005038738, 0.01029179710894823, -0.013054066337645054, -0.011135623790323734, -0.039032381027936935, 0.0027550572995096445, -0.044023215770721436, 0.02224239893257618, 0.01638609915971756, 0.01491481252014637, -0.0506872832775116, -0.022675130516290665, 0.014366685412824154, 0.01919885352253914, 0.016241855919361115, -0.029656531289219856, -0.0060798777267336845, 0.002349371323361993, 0.005802208092063665, -0.022905919700860977, -0.02720438688993454, -0.028574703261256218, -0.037647638469934464, -0.012455455027520657, -0.021434633061289787, 0.030579691752791405, -0.028949737548828125, 0.016890952363610268, 0.018290117383003235, 0.005135080311447382, 0.018708424642682076, 0.014748931862413883, 0.00585629977285862, -0.0003432552330195904, -0.04745621979236603, 0.0014857114292681217, -0.009830216877162457, -0.04592723771929741, 0.01766986958682537, -0.018823819234967232, -0.018636303022503853, 0.0053225974552333355, 0.02778136171400547, 0.011575567536056042, -0.013256007805466652, 0.0019527008989825845, -0.006123150698840618, -0.023857928812503815, -0.008517597801983356, -0.02870452217757702, 0.0008943117572925985, -0.0006373774376697838, 0.004035221412777901, -0.03193558380007744, -0.01205157209187746, -0.011099562980234623, 0.010457677766680717, 0.00046473558177240193, 0.015592758543789387, -0.0113592017441988, -0.011251019313931465, -0.00354479206725955, -0.009916763752698898, -0.004846592899411917, -0.018650727346539497, -0.006119544617831707, 0.021521179005503654, -0.024752240628004074, -0.01214533019810915, 0.023093437775969505, -0.008019956760108471, 0.0009484032052569091, -0.019977770745754242, -0.014885963872075081, 0.02672838233411312, 3.780766201089136e-05, -0.01329928170889616, -0.01830454170703888, -0.011258231475949287, -0.005520932842046022, -0.017583323642611504, -0.016919801011681557, 0.00012418492406141013, 0.019155580550432205, -0.011142835952341557, 0.03865734860301018, -0.006180847994983196, 0.011236594058573246, 0.0097797317430377, 0.01940079592168331, -0.027088992297649384, 0.039609357714653015, 0.024492602795362473, 0.01654476672410965, -0.005138686392456293, 0.02460799738764763, 0.02531479299068451, 0.024247387424111366, -0.0048682293854653835, 0.03574362024664879, -0.013082915917038918, 0.021146146580576897, -0.004702348727732897, 0.015289845876395702, -0.03738800063729286, -0.04483098164200783, -0.011950601823627949, -0.010551435872912407, 0.024362783879041672, -0.00137843017000705, 0.01651591807603836, 0.006837157532572746, -0.02374253422021866, 0.006029392126947641, 0.03340687230229378, -0.03306068480014801, 0.04924484342336655, -0.011351989582180977, 0.007630498614162207, 0.003937856759876013, -0.008243534713983536, 0.01133035309612751, 0.007064341567456722, 0.014734507538378239, -0.043734729290008545, 0.003139106323942542, 0.0036493688821792603, -0.021708697080612183, 0.022444339469075203, -0.02652643993496895, -0.022862646728754044, 0.04249423369765282, -0.016977498307824135, -0.025776373222470284, 0.012996369041502476, -0.02297804318368435, 0.013508434407413006, 0.02845930866897106, -0.011005803942680359, -0.006501790601760149, -0.004536468535661697, 0.003580853110179305, -0.0044138613156974316, 0.02064129151403904, 0.02956998534500599, 0.02883434109389782, 0.018838243559002876, 0.046388816088438034, 0.01565045490860939, -0.015592758543789387, -0.022256823256611824, 0.027247659862041473, 0.007421344984322786, -0.007832439616322517, 0.006022179964929819, 0.009188331663608551, 0.018492059782147408, 0.006426062900573015, -0.011200533248484135, -0.004998048767447472, 0.017107319086790085, 0.0048934719525277615, 0.019054610282182693, 0.036435991525650024, 0.011222169734537601, -0.030233507975935936, 0.0228482224047184, -0.013118976727128029, 0.004951169714331627, -0.0048213498666882515, -8.430657544522546e-06, 0.023511745035648346, -0.017915083095431328, -0.02460799738764763, 0.004186677280813456, 0.0018950033700093627, -0.020886506885290146, 0.01016197819262743, -0.03490700572729111, -0.016818830743432045, -0.016732284799218178, -0.01651591807603836, -0.015131178312003613, 0.01139526255428791, -0.019761404022574425, -0.015390817075967789, 0.0023746141232550144, -0.028430460020899773, -0.024535875767469406, -0.013126188889145851, -0.0169342253357172, -0.027723664417862892, -0.03014696016907692, 0.0015839776024222374, -0.02980077639222145, -0.03880159184336662, -0.00464825751259923, -0.016717860475182533, -0.02305016480386257, -0.00248099397867918, -0.006509002763777971, -0.04592723771929741, 0.002340356120839715, -0.012152542360126972, 0.008351718075573444, -0.011070714332163334, 0.018968064337968826, -0.009094573557376862, -0.011640476994216442, 0.02426181174814701, -0.0012720503145828843, 0.01008264347910881, 0.020973052829504013, 0.03222407028079033, 0.007666559424251318, 0.03401269391179085, 0.004651863593608141, 0.028026577085256577, 0.014756144024431705, -0.0022375823464244604, 0.002023019827902317, 0.02620910480618477, -0.013710375875234604, 0.005427174270153046, -0.0026090103201568127, 0.0207422636449337, -0.006977795157581568, 0.010457677766680717, -0.026641836389899254, -3.713151818374172e-05, -0.03182018920779228, 0.03132975846529007, 0.049014054238796234, -0.001990564865991473, 0.01657361537218094, -0.009988885372877121, -0.017655445262789726, -0.019227702170610428, -0.015621607191860676, 0.014842689968645573, 0.02838718518614769, 0.03568592295050621, -0.008503173477947712, -0.029079556465148926, 0.03704181686043739, 0.005300960969179869, 0.022098155692219734, -0.027348630130290985, -0.025271520018577576, 0.009029664099216461, 0.043388545513153076, 0.016313977539539337, -0.013897893019020557, 0.04209034889936447, 0.009238817729055882, 0.03182018920779228, 0.016818830743432045, -0.0028361943550407887, 0.02631007507443428, -0.010428829118609428, -0.021492330357432365, 0.012397757731378078, 0.024954183027148247, -0.0021149751264601946, 0.026742806658148766, -0.0011449353769421577, 0.008027168922126293, 0.005863511934876442, -0.030262356624007225, 0.007832439616322517, -0.006090695969760418, 0.005520932842046022, -0.014763356186449528, 0.004103736951947212, -0.021074023097753525, -0.019444068893790245, 0.000673438364174217, 0.011344777420163155, -0.004742016084492207, -0.05475495755672455, 0.027406327426433563, 0.01146017201244831, 0.001431619981303811, -0.014330624602735043, 0.026483166962862015, 0.015866821631789207, 0.024983031675219536, 0.0075728013180196285, 0.009548941627144814, -0.03369535878300667, -0.0022772494703531265, 0.02381465584039688, 0.005838268902152777, -0.010847136378288269, -0.011597204022109509, -0.022992467507719994, 0.018953640013933182, -0.010277372784912586, 0.04532141238451004, -0.029021859169006348, -0.027290932834148407, -0.009036876261234283, -0.011589991860091686, 0.0023006892297416925, 0.026584137231111526, 0.00912342220544815, -0.009794156067073345, 0.012203028425574303, -0.04468673840165138, 0.009916763752698898, -0.01160441618412733, 0.014034925028681755, -0.014128683134913445, -0.0010610936442390084, -0.0354551337659359, -0.02381465584039688, -0.006444093305617571, -0.0019436855800449848, 0.0016110233264043927, 0.029771927744150162, 0.0110274413600564, -0.01801605522632599, 0.004053251817822456, -0.02759384550154209, -0.0030146960634738207, 0.002623434644192457, 0.013645466417074203, 0.034358881413936615, 0.0070895841345191, 0.009404697455465794, 0.011351989582180977, -0.008676266297698021, -0.0038945835549384356, 0.045782990753650665, -0.019602736458182335, -0.002672116970643401, -0.03606095910072327, 0.019573887810111046, 0.01112119946628809, 0.02662741206586361, -0.0036800208035856485, -0.01971813105046749, 0.03069508820772171, 0.02982962504029274, 0.03513779863715172, 0.007493467070162296, 0.004067676141858101, 0.02576194889843464, -0.0005481265834532678, 0.010904833674430847, 0.021622151136398315, 0.011373626068234444, -0.02659856341779232, 0.016876528039574623, -0.0044679525308310986, 1.9734921806957573e-05, 0.004586953669786453, -0.015333118848502636, -0.020266259089112282, -0.020497048273682594, -0.01446765661239624, -0.036955270916223526, -0.012152542360126972, 0.0028614369221031666, -0.03513779863715172, -0.0033320325892418623, 0.029050707817077637, 0.00959942676126957, 0.0075728013180196285, -0.01722271367907524, -0.01565045490860939, -0.05062958598136902, 0.003196803852915764, 0.014958085492253304, 0.03008926287293434, 0.02410314418375492, -0.012138118036091328, 0.02384350448846817, -0.03955166041851044, 0.0003759354876819998, -0.0008528416510671377, 0.02502630464732647, 0.011820781975984573, -0.019963346421718597, -0.0053766886703670025, 0.0030507571063935757, 0.030637389048933983, 0.0065883370116353035, 0.016342826187610626, 0.0046662879176437855, 0.030810482800006866, -0.025819646194577217, 0.01052979938685894, -0.015794700011610985, 0.006566700525581837, 0.0026306468062102795, -0.04214804619550705, -0.0025206608697772026, 0.020208559930324554, -0.017294835299253464, -0.01606876216828823, 0.0061051202937960625, -0.00323647097684443, 0.0059320274740457535, 0.00033559228177182376, 0.003613308072090149, -0.001756168669089675, -0.01112119946628809, 0.022747252136468887, 0.029743077233433723, 0.008885419927537441, 0.010537011548876762, 0.035859014838933945, -0.00033919839188456535, -0.027795786038041115, 0.008019956760108471, 0.03427233546972275, 0.033176083117723465, 0.008207473903894424, -0.012390545569360256, 0.0047384100034832954, 0.016169734299182892, -0.0018336997600272298, 0.017237138003110886, -0.01360219344496727, -0.0051495046354830265, 0.020049892365932465, 0.015881245955824852, 0.011193321086466312, -0.041080642491579056, 0.02672838233411312, 0.00819304957985878, -0.03187788650393486, -0.01795835793018341, 0.01670343615114689, 0.005466841161251068, 0.016169734299182892, -0.029916170984506607, -0.01993449777364731, -0.03236831724643707, -0.008070442825555801, 0.008056017570197582, -0.007558376993983984, 0.0014532565837725997, 0.043388545513153076, 0.004630227107554674, 0.017785264179110527, -0.03395499661564827, 0.010183614678680897, -0.025430187582969666, 0.01097695529460907, -0.025386914610862732, 0.012152542360126972, -0.0033572751563042402, -0.007367253769189119, -0.020655715838074684, 2.0298375602578744e-05, 0.0031282880809158087, -0.010024946182966232, 0.007616074290126562, 0.01766986958682537, -0.010493738576769829, -0.023785807192325592, -0.013580556958913803, -0.008351718075573444, -0.012282362207770348, 0.01264297217130661, 0.018059328198432922, 0.008856571279466152, -0.024189690127968788, -0.00950566865503788, -0.012073208577930927, -0.04881211370229721, -0.011294292286038399, 0.03395499661564827, -0.024824364110827446, -0.035224344581365585, -0.005585842300206423, 0.018203571438789368, -0.007352829445153475, -0.020540321245789528, -0.019083458930253983, 0.006804702803492546, -0.007846864871680737, 0.007789167109876871, -0.014402746222913265, 0.013494010083377361, 0.008366142399609089, -0.007204979192465544, 0.005192778073251247, 0.004882653709501028, -0.038772743195295334, -0.0014586657052859664, -0.01898248866200447, 0.0070715537294745445, -0.029598833993077278, -0.03182018920779228, 0.02016528695821762, 0.025098426267504692, 0.03663793206214905, -0.008957541547715664, -0.0029461802914738655, -0.005939239636063576, 0.012715093791484833, -0.02649759128689766, 0.02048262394964695, 0.004597771912813187, 0.006718156393617392, 0.0009429940255358815, -0.0007825227803550661, -0.013897893019020557, -0.03721490874886513, 0.03473391383886337, 0.036378294229507446, 0.021622151136398315, 0.0075728013180196285, -0.03043544851243496, -0.01324879564344883, -0.0033572751563042402, 0.018520908430218697, -0.024593573063611984, -0.008156988769769669, -0.010875985026359558, 0.005813026335090399, -0.02781021036207676, 0.013753649778664112, 0.0009191036806441844, -0.003746733535081148, -0.0021239903289824724, -0.01948734186589718, -0.018030479550361633, -0.05002376064658165, -0.0031336972024291754, -0.0035790500696748495, 0.013674315065145493, -0.024463754147291183, -0.02956998534500599, 0.0033085928298532963, 0.004940351005643606, 0.011337565258145332, -0.02694474719464779, -0.012462667189538479, 0.011178896762430668, 0.02131923846900463, -0.005528145004063845, -0.011820781975984573, 0.008834934793412685, -0.030925877392292023, 0.0018968064105138183, -0.00912342220544815, -0.01238333247601986, -0.01422965433448553, 0.015852397307753563, 0.02486763708293438, 0.001467681024223566, -0.008063229732215405, 0.013746436685323715, -0.0005134178791195154, 0.022458763793110847, -0.007515103556215763, -0.004933138843625784, 0.006653246935456991, -0.0030723935924470425, 0.014208017848432064, -0.012534788809716702, 0.015390817075967789, -0.002717193216085434, 0.0056507522240281105, 0.016905376687645912, 0.0033644873183220625, 0.0207422636449337, 0.0011981253046542406, 0.002502630464732647, 0.013652678579092026, 0.0034852914977818727, -0.005740904714912176, -0.019703706726431847, 0.004882653709501028, -0.03862849995493889, -0.008870995603501797, -0.022040458396077156, -0.01453256607055664, 0.013746436685323715, -0.03219522163271904, -0.023006891831755638, 0.020987477153539658, 0.006278212647885084, -0.002057277597486973, 0.0012170573463663459, -0.022646281868219376, 0.012570849619805813, 0.02131923846900463, 0.005834662821143866, 0.018391087651252747, 0.003995554056018591, -0.020843233913183212, -0.027161113917827606, 0.0195594634860754, 0.017208289355039597, 0.027723664417862892, -0.039638206362724304, 0.0007135561900213361, -0.010969743132591248, -0.01591009460389614, 0.012686245143413544, 0.004633833188563585, 0.02160772681236267, 0.030060414224863052, 0.01885266788303852, 0.00712925149127841, -0.0019202460534870625, -0.012664608657360077, 0.00043295687646605074, 0.02413199283182621, 0.04237883910536766, 0.01567930541932583, 0.010724528692662716, -0.00891426857560873, 0.02221355028450489, 0.019357522949576378, 0.000888001115527004, 0.00592120923101902, 0.00809929147362709, 0.005614690948277712, -0.005181959830224514, -0.01670343615114689, 0.022804949432611465, -0.005769753362983465, -0.005279324017465115, -0.009094573557376862, 0.006343122571706772, -0.0038873711600899696, -0.012123693712055683, 0.0057336920872330666, 0.0014469459420070052, 0.008654629811644554, 0.013674315065145493, -0.0025963890366256237, 0.0073239803314208984, -0.004485982935875654, 0.0010863363277167082, -0.02163657546043396, 0.0022700373083353043, -0.0438501238822937, 0.005582236219197512, -0.012462667189538479, 0.0011079729301854968, 0.005773359443992376, -0.0024882061406970024, 0.021650999784469604, 0.025588855147361755, -0.007803591433912516, -0.012368908151984215, 0.018044903874397278, -0.047773558646440506, -0.01228957436978817, 0.009368636645376682, -0.024651270359754562, -0.002235779305920005, -0.014633536338806152, 0.027319781482219696, -0.004421073477715254, -0.015289845876395702, 0.008618569001555443, 0.018823819234967232, -0.00044760663877241313, 0.016241855919361115, 0.014554202556610107, -0.00526489969342947, 0.027637118473649025, -0.015708154067397118, 0.0032671228982508183, -0.015563908964395523, -0.0030525601468980312, -0.02563212811946869, -0.00027113332180306315, 0.013522859662771225, -0.00636836513876915, 0.0011097759706899524, -0.012044359929859638, -0.016342826187610626, -0.001902215532027185, -0.030204657465219498, 0.012902610935270786, 0.0042371624149382114, -0.023482896387577057, -0.003337441710755229, -0.0056038727052509785, 0.005596660543233156, 0.017929507419466972, -0.0154917873442173, -0.011041865684092045, 0.014150319620966911, 0.01977583020925522, 0.015448514372110367, 0.006108726374804974, 0.02111729606986046, 0.01862187869846821, 0.008517597801983356, -0.00789013784378767, -0.0034041544422507286, 0.003119272878393531, -0.0008889026357792318, -0.007558376993983984, -0.03450312465429306, 0.0001492022129241377, -0.0026739200111478567, -0.02032395638525486, -0.012469879351556301, 0.027925604954361916, -0.010875985026359558, -0.014972509816288948, -0.01552063599228859, -0.020093165338039398, 0.02938246913254261, -0.003232864895835519, 0.0063611529767513275, 0.006144787184894085, -0.007861289195716381, 0.012837700545787811, 0.009585002437233925, 0.009209969080984592, 0.024781091138720512, -0.005452416837215424, -0.008236322551965714, 0.0022447947412729263, 0.018867094069719315, 0.03389729931950569, 0.007558376993983984, -0.05080267786979675, -0.0063323043286800385, -0.014366685412824154, -0.0194296445697546, 0.01764102093875408, 0.02838718518614769, -0.016501493752002716, 0.020396078005433083, -0.03265680372714996, -0.013789710588753223, 0.006144787184894085, -0.016732284799218178, 0.02762269414961338, -0.014871538616716862, 0.040792156010866165, 0.015174451284110546, 0.011301504448056221, -0.021593302488327026, 0.0016281522111967206, -0.01243381854146719, -0.0069922199472785, -0.00024183379719033837, 0.028892040252685547, 0.012542000971734524, 0.005142292473465204, 0.009015239775180817, 0.010457677766680717, 0.0009502062457613647, 0.023511745035648346, -0.0491006001830101, 0.005311779212206602, 0.011070714332163334, 0.015636030584573746, -0.0052504753693938255, -0.004749228246510029, -0.020122013986110687, -0.021578876301646233, -0.011683749966323376, 0.02460799738764763, -0.018376663327217102, 0.02048262394964695, 0.015260997228324413, -0.0017678884323686361, -0.007352829445153475, -0.03132975846529007, 0.00942633394151926, 0.012780003249645233, 0.01001773402094841, -0.03978244960308075, 0.0037864006590098143, 0.014056561514735222, -0.01238333247601986, -0.0037503396160900593, -0.005185565911233425, 0.004529256373643875, 0.011178896762430668, -0.016285128891468048, 0.0028722553979605436, 0.018996912986040115, 0.004586953669786453, -0.0005260392208583653, 0.02944016642868519, -0.03565707430243492, 0.03883044049143791, 0.0045941658318042755, 0.028026577085256577, 0.03606095910072327, -0.006476548034697771, -0.01961716078221798, 0.043128903955221176, 0.011849630624055862, -0.011611628346145153, 0.004294860176742077, 0.00239264452829957, -0.0039306445978581905, -0.00891426857560873, 0.000559846346732229, 0.002899301005527377, 0.01256363745778799, -0.021074023097753525, -0.009592214599251747, 0.003353669075295329, -0.0013892484130337834, 0.02281937375664711, -0.004197495523840189, -0.003981129731982946, 0.020338380709290504, 0.008791661821305752, 0.013825771398842335, -0.03744569793343544, -0.005333415698260069, -0.03750339522957802, 0.006873218342661858, -0.0007085978286340833, 0.007839652709662914, 0.012614123523235321, 0.025459036231040955, 0.023886779323220253, -0.032887592911720276, 0.018968064337968826, 0.03357996419072151, -0.0011124805314466357, 0.0005016980576328933, -0.029887322336435318, 0.006754217203706503, -0.0012909822398796678, 0.00843105185776949, -0.00022955054009798914, -0.009462395682930946, -0.025228247046470642, 0.012231877073645592, -0.013205522671341896, -0.013912317343056202, -0.0002925445151049644, -0.00684797577559948, -0.026742806658148766, -0.00334104779176414, 0.025372490286827087, -0.006390001624822617, -0.010854348540306091, 0.00923160556703806, -0.048321682959795, 0.014842689968645573, -0.0006680292426608503, -0.012505940161645412, 0.003746733535081148, -0.03802267462015152, -0.009484032168984413, 0.012138118036091328, -0.002720799297094345, 0.01491481252014637, -0.0027802998665720224, -0.01456141471862793, 0.01648706942796707, 0.0154917873442173, 0.005037715658545494, -0.005942845717072487, 0.003681823844090104, 0.009145058691501617, 0.0019490948179736733, -0.0030507571063935757, -0.011113987304270267, -0.00399194797500968, 0.02211258001625538, 0.0030237112659960985, -0.018549757078289986, -0.024795515462756157, -0.014150319620966911, -0.011243806220591068, 0.008387778885662556, 0.010010521858930588, 0.03689757362008095, -0.0025963890366256237, -0.005044927820563316, 0.011979450471699238, 0.0014361276989802718, -0.012679032981395721, 0.02105959877371788, 0.031416308134794235, -0.003739521373063326, 0.014828265644609928, -0.016847679391503334, 0.006371971219778061, 0.008669054135680199, 0.015174451284110546, 0.02240106649696827, 0.005405537784099579, 0.01081828773021698, 0.018679575994610786, -0.0032671228982508183, 0.008315657265484333, -0.022256823256611824, 0.01118610892444849, -0.021391360089182854, 0.0025441006291657686, 0.014409958384931087, -0.00636836513876915, -0.007998320274055004, 0.00828680768609047, 0.003602489596232772, 0.008777237497270107, 0.005510114599019289, -0.009145058691501617, -0.008250746876001358, -0.061332475394010544, -0.008056017570197582, -0.011993874795734882, 0.007897350005805492, -0.015434090048074722, 0.003948675002902746, -0.0061339689418673515, -0.021852940320968628, 0.013472373597323895, 0.008921480737626553, 0.00023169165069703013, 0.003045347984880209, 0.016140885651111603, -0.013703163713216782, -0.026382196694612503, -0.006884037051349878, -0.011741448193788528, -0.009895127266645432, 0.018217995762825012, 0.0009087361395359039, 0.009029664099216461, 0.013097340241074562, -0.0128016397356987, -0.003561019664630294, -0.009246029891073704, -0.02586291916668415, 0.009116210043430328, -0.024795515462756157, 0.0036890360061079264, 0.012123693712055683, 0.015477363020181656, 0.025531157851219177, -0.022473188117146492, 0.002834391314536333, -0.013991652056574821, 0.0033735025208443403, -0.010565861128270626, 0.0168044064193964, -0.00199597398750484, 0.021016325801610947, -0.017525626346468925, -0.01438832189887762, 0.02131923846900463, 0.009729246608912945, -0.02864682488143444, -0.004078494384884834, 0.0011305110529065132, -0.007028280757367611, -0.0030399388633668423, 0.015982216224074364, 0.0014505520230159163, -0.000900622399058193, 0.0315028540790081, -0.04035942256450653, 0.023252105340361595, -0.007760317996144295, -0.008503173477947712, 0.007168918382376432, -0.030233507975935936, 0.004792501218616962, -0.007998320274055004, -0.008921480737626553, -0.000624756095930934, 0.0023944475688040257, 0.016184158623218536, -0.03715721145272255, -0.008503173477947712, 0.03683987632393837, 0.03565707430243492, -0.0017282214248552918, -0.006873218342661858, -0.006552276201546192, 0.008272383362054825, 0.004572529345750809, -0.014813841320574284, -0.006317880004644394, -0.015059055760502815, 0.03487815707921982, 0.022444339469075203, 0.0008046101429499686, 0.008935905061662197, 0.012231877073645592, -0.004031614866107702, 0.005719267763197422, 0.013082915917038918, 0.005228838883340359, 0.011142835952341557, -0.017496777698397636, 0.018448786810040474, -0.002515251748263836, 0.008041593246161938, -0.006768641993403435, 0.0034348061308264732, -0.02890646457672119, -0.001188208581879735, -0.018766121938824654, -0.015347544103860855, -0.015866821631789207, -0.008452688343822956, 0.02381465584039688, -0.010508162900805473, 0.02473781630396843, 0.0022772494703531265, 0.03040659986436367, -0.004518438130617142, -0.026036011055111885, -0.009411909617483616, 0.045206017792224884, 0.018217995762825012, 0.012679032981395721, 0.003209425136446953, -0.006732580717653036, 0.019992195069789886, -0.03130090981721878, -0.02058359421789646, -0.0070174625143408775, 0.018160298466682434, 0.008654629811644554, -0.008084867149591446, -0.00732758641242981, -0.025617703795433044, 0.01174866035580635, 0.00894311722368002, -0.02189621329307556, 0.00406407006084919, -0.006144787184894085, 0.004871835466474295, -0.009404697455465794, -0.002509842626750469, 0.007709832862019539, -0.003658384084701538, -0.0006738891243003309, 0.010118705220520496, -0.01169817429035902, -0.000823091366328299, -0.0028235730715095997, 0.0045653171837329865, -0.008113715797662735, 0.022833798080682755, -0.016342826187610626, -0.0039306445978581905, 0.015607182867825031, 0.008683478459715843, -0.02067014016211033, -0.019992195069789886, -0.00912342220544815, -0.02890646457672119, 0.009116210043430328, 0.0006955257267691195, 0.0050485339015722275, 0.00920275691896677, -0.01303964201360941, 0.016530342400074005, 0.0018625485245138407, 0.00791898649185896, -0.011936177499592304, -0.0019454886205494404, -0.02227124758064747, -0.02266070619225502, 0.004633833188563585, -0.03952280804514885, -0.02211258001625538, 0.004655469674617052, 0.05388949438929558, 0.014784992672502995, 0.013032429851591587, 0.010623558424413204, 0.0007996517233550549, -0.0383400097489357, -0.016213007271289825, -0.0023457652423530817, 0.010630770586431026, 0.006040210369974375, 0.004374194424599409, -0.02179524302482605, 0.024925334379076958, 0.0011278064921498299, -0.012693457305431366, 0.030723936855793, 0.021074023097753525, 0.003427593968808651, -0.01635725051164627, 0.022516462951898575, 0.00861135683953762, 0.01853533275425434, -0.012693457305431366, -0.007688196375966072, 0.001666917814873159, 0.007049917243421078, 0.003472670214250684, 0.0182468444108963, 0.014128683134913445, 0.009022451937198639, 0.011683749966323376, -0.01169817429035902, 0.002170869614928961, -0.004723985679447651, -0.011864054948091507, 0.026742806658148766, -0.0048934719525277615, -0.002567540155723691, 0.001261231955140829, 0.009909551590681076, 0.009462395682930946, -0.017467927187681198, -0.007659347262233496, 0.014510929584503174, 0.0004014035512227565, -0.01139526255428791, 0.00406407006084919, -0.00048276607412844896, -0.004067676141858101, 0.0023692050017416477, -0.048465926200151443, 0.005964482203125954, -0.002632449846714735, -0.0008541939314454794, -0.008214686065912247, -0.015636030584573746, 0.004092918708920479, 0.0008568984922021627, -0.011626052670180798, -0.005690419115126133, -0.011582779698073864, -0.0030327264685183764, -0.028574703261256218, 0.0022988859564065933, -0.016458220779895782, -0.02016528695821762, 0.004583347588777542, -0.014402746222913265, 0.004478770773857832, -0.006909279618412256, -0.010183614678680897, -0.012570849619805813, 0.006707338150590658, -0.036147505044937134, -0.008827722631394863, -0.005528145004063845, 0.0017201077425852418, 0.0441097654402256, 0.019386371597647667, 0.013212734833359718, 0.012974732555449009, 0.010637982748448849, 0.010118705220520496, -0.014215230010449886, -0.006444093305617571, 0.004745622165501118, 0.0029263468459248543, 0.009484032168984413, 0.012130905874073505, -0.020756687968969345, -0.020021043717861176, -0.009116210043430328, 0.009397485293447971, 0.008185837417840958, 0.01467681024223566, 0.003442018525674939, 0.013241583481431007, -0.006602761335670948, 0.022199125960469246, -0.01022688765078783, 0.017741991207003593, 0.010198039002716541, 0.013227159157395363, 0.028416035696864128, -0.0005814829492010176, -0.0008266974473372102, -0.0059789069928228855, 0.022357793524861336, -0.0030759996734559536, -0.010933682322502136, -0.014345048926770687, -0.014712871052324772, 0.015693729743361473, 0.008834934793412685, -0.01369595155119896, 0.007515103556215763, -0.003629535436630249, -0.0004081649531144649, 0.010075431317090988, 0.007731469348073006, -0.028733370825648308, -0.0002643718908075243, -0.00974367093294859, -0.01927097514271736, 0.0018643515650182962, -0.005463235080242157, -0.03104127198457718, 0.00547405332326889, 0.0024178873281925917, -0.013962802477180958, 0.01638609915971756, -0.013472373597323895, 0.01709289476275444, 0.007558376993983984, 0.009224393405020237, -0.020078741014003754, 0.006509002763777971, -0.010811075568199158, 0.012246301397681236, 0.0014244078192859888, 0.027406327426433563, 0.03738800063729286, 0.013003581203520298, -0.006902067456394434, -0.01357334479689598, -0.007702620700001717, -0.01990564912557602, -0.013861832208931446, 0.0036006865557283163, 0.012606910429894924, 0.010746165178716183, -0.007933410815894604, -0.015405241400003433, -0.012022723443806171, 0.02607928402721882, 0.007717045024037361, -0.021780818700790405, 0.020122013986110687, -0.0169342253357172, 0.00034212833270430565, 0.006101514212787151, -0.003074196632951498, -0.009469607844948769, -0.002372811082750559, 0.008056017570197582, -0.005052139982581139, -0.00882051046937704, 0.01504463143646717, 0.010010521858930588, -0.005863511934876442, -0.01788623444736004, 0.0097797317430377, 0.013645466417074203, -0.02768039144575596, -0.010147553868591785, -0.02717553824186325, 0.00584908714517951, 0.015982216224074364, -0.00849596131592989, 0.020280683413147926, -0.0031300911214202642, -0.008647417649626732, 0.0083372937515378, 0.009217181243002415, -0.006227727513760328, 0.009830216877162457, 0.005192778073251247, -0.03340687230229378, 0.0025404945481568575, -0.0036151111125946045, 0.0006761429831385612, 0.030608540400862694, 0.018131449818611145, 0.01025573629885912, -0.02006431668996811, -0.024333935230970383, 4.654117219615728e-05, 0.0014893175102770329, 0.012542000971734524, 0.005643540062010288, 0.00804880540817976, 0.03418578952550888, 0.023569442331790924, 0.010299009270966053, -0.011344777420163155, -0.01575142703950405, -0.004363375715911388, 0.011142835952341557, 0.003021908225491643, -0.004742016084492207, -0.05971694737672806, -0.010363919660449028, 0.005870724096894264, 0.002230370184406638, -0.015015782788395882, -0.03008926287293434, 0.018794970586895943, -0.01917000487446785, 0.04266732558608055, -0.0037214909680187702, 0.021578876301646233, 0.002284461632370949, 0.006833551451563835, 0.006447699386626482, 0.005070170853286982, 0.00798389595001936, 0.008229110389947891, 0.011229381896555424, 0.018391087651252747, -0.0020067922305315733, 0.014597475528717041, 0.004929532762616873, -0.010897621512413025, 0.004579741507768631, -0.0056038727052509785, 0.003681823844090104, -0.005084595177322626, -0.017467927187681198, 0.01846321113407612, -0.022487612441182137, 0.0014794007875025272, 0.0016416751313954592, 0.004388618748635054, 0.00716170622035861, 0.016083186492323875, 0.013566132634878159, 0.0021925063338130713, -0.016169734299182892, 0.016184158623218536, -2.61864533968037e-05, -0.012188604101538658, -0.0034943069331347942, -0.015116753987967968, 0.011171684600412846, 0.00023597388644702733, 0.015448514372110367, 0.022170277312397957, -0.016270704567432404, -0.004579741507768631, -0.00040365735185332596, -0.012008299119770527, 0.009044088423252106, -0.03037775121629238, 0.00412897951900959, 0.013075703755021095, 0.019732555374503136, 0.016746709123253822, 0.016025489196181297, -0.02775251306593418, -0.00828680768609047, -0.014359473250806332, -0.003503322135657072, 0.008236322551965714, 0.004705954808741808, -0.003110257675871253, -0.003178773447871208, 0.001342369127087295, -0.0034005483612418175, 0.006635216064751148, 0.008842146955430508, -0.005726479925215244, 0.007659347262233496, 0.0031210759188979864, -0.02116057090461254, -0.007374465931206942, -0.003966705407947302, -0.0066171856597065926, -0.015621607191860676, 0.005492083728313446, 0.009750883094966412, 0.007717045024037361, -0.02643989399075508, 0.022285671904683113, 0.005787783768028021, -0.029916170984506607, 0.01609761081635952, -0.013991652056574821, -0.003973917569965124, 0.004853805061429739, 0.008387778885662556, -0.0038837650790810585, 0.012981944717466831, -0.026742806658148766, 0.0021420209668576717, 0.001277459436096251, 0.010392768308520317, 0.005690419115126133, 0.004381406586617231, 0.00021546422794926912, 0.0075728013180196285, 0.009830216877162457, 0.0011710795806720853, 0.03559937700629234, -0.015477363020181656, -0.01575142703950405, 0.0001250864443136379, -0.0315028540790081, 0.028733370825648308, -0.009166695177555084, 0.005427174270153046, -0.0215356033295393, -0.0022898707538843155, 0.014525353908538818, 0.018506484106183052, 0.01171259954571724, 0.0029335590079426765, 0.011251019313931465, 0.0018643515650182962, -0.0033031837083399296, -0.023857928812503815, -0.013616617769002914, -0.004522044211626053, -0.0015055449912324548, 0.0032022129744291306, -0.007493467070162296, -0.009794156067073345, -0.00912342220544815, -0.00427322369068861, -0.005481265485286713, 0.0022826585918664932, -0.015260997228324413, 0.026454318314790726, 0.012303998693823814, -0.001249512191861868, 0.0004850198747590184, 0.03424348682165146, 0.005647146143019199, -0.0012954899575561285, 0.017525626346468925, 0.008697902783751488, 0.0068696122616529465, -0.005466841161251068, 0.0029389681294560432, -0.004298466257750988, 0.006325092166662216, -0.02016528695821762, 0.02576194889843464, 0.004381406586617231, -0.00547405332326889, 0.0061051202937960625, 0.003256304422393441, 0.01270788162946701, -0.031445156782865524, -0.008135352283716202, 0.02134808711707592, -0.007421344984322786, -0.00595366396009922, 0.008120927959680557, -0.01927097514271736, -0.0022339762654155493, 0.006087089888751507, 0.007846864871680737, -0.014828265644609928, -0.01029179710894823, -0.014301775954663754, -0.011402474716305733, -0.002982241101562977, -0.011820781975984573, -0.02476666495203972, 1.9960303689003922e-05, 0.04353278875350952, -0.017583323642611504, -0.013703163713216782, 0.000892057956662029, 0.011690962128341198, 0.003597080474719405, 0.026411045342683792, 0.024117568507790565, -0.0037323092110455036, 0.0033951392397284508, -0.007486254908144474, -0.015535060316324234, -0.019155580550432205, 0.0004081649531144649, 0.006656853016465902, 0.010637982748448849, -0.015246572904288769, 0.026353348046541214, -0.004882653709501028, 0.01683325506746769, 0.024117568507790565, 0.0031643491238355637, 0.007100402377545834, 0.010241311974823475, 0.006108726374804974, -0.016559191048145294, 0.008748388849198818, 0.00974367093294859, 0.026569712907075882, -0.01654476672410965, -0.007136463653296232, 0.010594709776341915, -0.026612987741827965, -0.004879047628492117, 0.017467927187681198, -0.026396621018648148, 0.016011064872145653, -0.03744569793343544, 0.004247980657964945, -0.0027406327426433563, 0.01016197819262743, 0.024910910055041313, 0.02643989399075508, -0.010248524136841297, 0.01728041097521782, -0.012635760009288788, 0.015419665724039078, 0.0034131696447730064, -0.021780818700790405, 0.015563908964395523, -0.007259070873260498, -0.012650184333324432, 0.00944075919687748, 0.00854644738137722, -0.017193865031003952, 0.00987348984926939, 0.00036038420512340963, -0.016689011827111244, 0.018419938161969185, -0.011575567536056042, -0.00753674004226923, -0.0003500166640151292, -0.02310786210000515, 0.010573073290288448, 0.010955318808555603, 0.020915355533361435, 0.008488749153912067, -0.005077383015304804, 0.0062060910277068615, 0.004175859037786722, -0.0008695198339410126, 0.017972782254219055, 0.003151727607473731, -0.0028019363526254892, -0.01632840186357498, 0.00475283432751894, -0.036753326654434204, 0.015823548659682274, 0.010666831396520138, -0.019501766189932823, -0.012931459583342075, 0.0045400746166706085, -0.011041865684092045, 0.006101514212787151, -0.004031614866107702, -0.015578334219753742, 0.029887322336435318, -0.0056038727052509785, -0.024175265803933144, -0.00908736139535904, 0.008236322551965714, 0.004179465118795633, 0.003642156720161438, -0.014438807964324951, 0.0070715537294745445, 0.010955318808555603, -0.005008867010474205, -0.006501790601760149, -0.010414404794573784, -0.004103736951947212, -0.0035538075026124716, 0.019891224801540375, 0.016313977539539337, 0.004536468535661697, -1.1290178917988669e-05, 0.01187126711010933, -0.002470175502821803, 0.007406920660287142, 0.012664608657360077, 0.0018679576460272074, 0.03707066550850868, -0.006819127127528191, -0.004323708824813366, -0.0036241263151168823, 0.010493738576769829, 0.00332482042722404, -0.03917662426829338, 0.008697902783751488, 0.013335342518985271, 0.008041593246161938, -0.03303183615207672, 0.0026883443351835012, -0.006267394404858351, -0.002133005764335394, -0.0048682293854653835, 0.009166695177555084, -0.015607182867825031, 0.013046854175627232, -0.006141181103885174, -0.02457914873957634, 0.017684293910861015, 0.027132265269756317, -0.018477635458111763, 0.012513152323663235, -0.013212734833359718, 0.018924791365861893, 0.01619858294725418, 0.014554202556610107, 0.003999160137027502, -0.009844641201198101, 0.0029011040460318327, -0.020525896921753883, 0.018102601170539856, -0.009577790275216103, -0.005748116876929998, 0.0016218415694311261, 0.007075159810483456, 0.029036283493041992, 0.003988341894000769, -0.011193321086466312, -0.013191098347306252, 0.01948734186589718, -0.009786943905055523, 0.013652678579092026, -0.011020229198038578, 0.01632840186357498, -0.005694025196135044, 0.007204979192465544, 0.008719539269804955, 0.021405784413218498, 0.005412749946117401, -0.003746733535081148, -0.024824364110827446, 0.00974367093294859, -0.013443524949252605, -0.013580556958913803, -0.008034381084144115, -0.0028668460436165333, -0.01974697969853878, 0.01094810664653778, 0.004965594038367271, 0.006963370833545923, 0.01219581626355648, 0.01964600943028927, 0.00114403385668993, -0.009375848807394505, -0.005950057879090309, 0.011763084679841995, -0.0064152441918849945, 0.013486797921359539, 0.0022646281868219376, -0.026973595842719078, -0.001119692693464458, 0.0023457652423530817, -0.030608540400862694, 0.0015722577227279544, 0.01139526255428791, 0.013400251977145672, -0.02394447661936283, 0.00322024361230433, -0.0018643515650182962, 0.008712327107787132, -0.00825795903801918, 0.03311838209629059, 0.0015848791226744652, -0.005593054462224245, 0.0042011016048491, -0.030550843104720116, 0.00595366396009922, -0.01814587414264679, 0.007695408537983894, 0.011813569813966751, -0.016847679391503334, -0.003687232965603471, -0.007464618422091007, 0.002587373834103346, 0.023353075608611107, 0.004586953669786453, 0.01016197819262743, -0.01661689020693302, 0.012585273943841457, -0.020049892365932465, -0.011200533248484135, -0.0025855707935988903, -0.00028014855342917144, 0.010241311974823475, -0.009909551590681076, -0.0027748907450586557, -0.016761133447289467, -0.018679575994610786, -0.005841874983161688, 0.016083186492323875, -0.008618569001555443, 0.008481536991894245, 0.0035988835152238607, -0.0013351569650694728, -0.0028542247600853443, -0.014431595802307129, -0.0027316175401210785, -0.014568626880645752, 0.007911774329841137, -0.001970731420442462, 0.01118610892444849, -0.0064621237106621265, 0.011207745410501957, -0.005456022918224335, 0.006180847994983196, -0.0011782917426899076, 0.039090078324079514, 0.005708449520170689, -0.0040099783800542355, -0.007875713519752026, -0.004276829771697521, 0.007911774329841137, 0.01974697969853878, -0.014294563792645931, -0.00010440774349262938, 0.0207422636449337, 0.016530342400074005, -0.00526489969342947, 0.005326203536242247, -0.010407192632555962, -0.01654476672410965, -0.010089855641126633, 0.010299009270966053, 0.007464618422091007, -0.013292068615555763, -0.009548941627144814, -0.010306221432983875, 0.01552063599228859, 0.022732827812433243, 0.012231877073645592, 0.0038621285930275917, -0.0022934768348932266, 0.0037142785731703043, -0.023324226960539818, 0.017078470438718796, 0.004842986818403006, -0.003593474393710494, 0.0023511743638664484, -0.016559191048145294, 0.00723382830619812, -0.01315503753721714, 0.01402050070464611, -0.02394447661936283, -0.020987477153539658, 0.012022723443806171, -0.0009556153672747314, 0.008294020779430866, -0.002425099490210414, -0.012722305953502655, -0.008510385639965534, -0.016948649659752846, 0.00988791510462761, -0.007031886838376522, -0.003707066411152482, 0.009101785719394684, 0.013465161435306072, -0.016429372131824493, -0.012130905874073505, -0.009548941627144814, -0.0003297323710285127, 0.01432341244071722, 0.013371403329074383, 0.0011656704591587186, -0.00816420093178749, 0.001691258978098631, 0.007486254908144474, -0.0034582458902150393, -0.03658023476600647, -0.00995282456278801, 0.014986934140324593, -0.002697359537705779, -0.011770296841859818, -1.6607760699116625e-05, 0.005913997069001198, 0.018737273290753365, 6.648738781223074e-05, 0.006840763613581657, 0.0036403536796569824, 0.001460468745790422, -0.016112035140395164, -0.008358930237591267, -0.03104127198457718, 0.014546990394592285, 0.0009781534317880869, -0.01827569305896759, -0.003045347984880209, -0.02675723098218441, -0.014085410162806511, 0.0030399388633668423, 0.0027478449046611786, -0.006483760196715593, 0.019689282402396202, -0.013594981282949448, 0.0019040185725316405, 0.007515103556215763, 0.0004512127488851547, -0.01583797298371792, -0.010392768308520317, -0.004150616470724344, 0.006801096722483635, -0.01067404355853796, -0.013746436685323715, -0.013205522671341896, -0.02410314418375492, 0.03490700572729111, -0.02131923846900463, -0.02329537831246853, 0.0194296445697546, 0.0054235681891441345, 0.006891249213367701, -0.011467384174466133, 0.022588584572076797, -0.000827598967589438, -0.015059055760502815, 0.02307901345193386, -0.017785264179110527, -0.013198310509324074, -0.003952281083911657, 0.017294835299253464, -0.018059328198432922, 0.013508434407413006, 0.01977583020925522, 0.007122039329260588, -0.013760861940681934, 0.022040458396077156, -0.005174747668206692, 0.014099834486842155, 0.024362783879041672, 0.01112119946628809, -0.03182018920779228, -0.0030507571063935757, 0.010890409350395203, 0.01888151839375496, -0.0002137738629244268, -0.00035587657475844026, 0.017900658771395683, -0.006393607705831528, 0.003771976102143526, -0.020655715838074684, -0.011856842786073685, 0.009981673210859299, -0.01948734186589718, -0.008560871705412865, 0.012073208577930927, 0.010839924216270447, 0.0016407736111432314, 0.00760886212810874, 0.006209697108715773, -0.011236594058573246, -0.015866821631789207, 0.012794427573680878, 0.005437992513179779, -0.01088319718837738, 0.006426062900573015, -0.021550027653574944, -0.001602008007466793, 0.014157531782984734, 0.011402474716305733, 0.015275421552360058, -0.010349495336413383, -0.01911230757832527, -0.024204114452004433, -0.013796922750771046, -0.0006842566654086113, 0.006040210369974375, 0.018708424642682076, -0.013075703755021095, 0.047831255942583084, -0.004320102743804455, -0.01702077127993107, -0.004828562494367361, -0.002791118109598756, -0.012859337963163853, -0.007435769308358431, -0.0006423357990570366, 0.00798389595001936, 0.002048262394964695, 0.01321994699537754, 0.014272927306592464, -0.012217452749609947, 0.004215525928884745, -0.006321486085653305, 0.003642156720161438, 0.0181170254945755, 0.015376392751932144, -0.0066171856597065926, -0.0026450713630765676, -0.0083372937515378, 0.009101785719394684, -0.0061339689418673515, 0.016443796455860138, 0.020540321245789528, 0.011229381896555424, -0.004662681836634874, -0.0033158049918711185, 0.025617703795433044, 0.01043604128062725, -0.0007149084703996778, -0.006094302050769329, -0.007085978053510189, -0.018131449818611145, -0.024665694683790207, 0.008279595524072647, 0.00475283432751894, 0.007897350005805492, 0.023627139627933502, -0.014929236844182014, -0.008964753709733486, 0.009996097534894943, 0.0032833502627909184, 0.00878444965928793, -0.004482376854866743, -0.01022688765078783, 0.00032590090995654464, 0.01722271367907524, 0.004294860176742077, 0.005694025196135044, 0.007760317996144295, 0.016689011827111244, 0.012008299119770527, -0.006469335872679949, 0.007190554868429899, -0.01369595155119896, 0.008899844251573086, -0.006739792879670858, 0.008625781163573265, 0.0025314793456345797, -0.013227159157395363, 0.007717045024037361, -0.02563212811946869, -0.0008001024834811687, 0.006995826028287411, -0.0002052093914244324, -0.009159483015537262, 0.026988020166754723, 0.009080149233341217, -0.014575839042663574, -0.012116481550037861, 0.013869044370949268, 0.0019563068635761738, 0.021521179005503654, 0.007003038190305233, -0.0061339689418673515, 0.018217995762825012, 0.01987680047750473, 0.007414132822304964, 0.009137846529483795, -0.020554745569825172, 0.00774589367210865, 0.009967248886823654, 0.0061592115089297295, 0.008344505913555622, 0.007006644271314144, 0.006144787184894085, 0.0010160175152122974, 0.00819304957985878, -0.007688196375966072, 0.02061244286596775, -0.014590263366699219, -0.0008884518756531179, -0.02563212811946869, 0.009830216877162457, 0.011150048114359379, 0.012303998693823814, 0.008661841973662376, 0.01112119946628809, -0.03487815707921982, 0.01699192263185978, 0.0002348469861317426, 0.0014406353002414107, -0.004943957552313805, -0.0002947983448393643, -0.03603211045265198, 0.021174995228648186, 0.030868180096149445, -0.005062958691269159, 0.00816420093178749, 0.013075703755021095, 0.02723323553800583, 0.013104552403092384, 0.015174451284110546, -0.018809394910931587, 0.003261713543906808, -0.036118656396865845, 0.025978313758969307, -0.011864054948091507, 0.0062890308909118176, 0.0005742707289755344, 0.00041515176417306066, 0.012520364485681057, 0.004460740368813276, -0.007969471625983715, -0.03075278550386429, 0.0006865104660391808, -0.050744980573654175, 0.0030994394328445196, -0.010717316530644894, -0.0018841850105673075, -0.015794700011610985, 0.024651270359754562, -0.01504463143646717, 0.0017372366273775697, 0.013111764565110207, 0.010515375062823296, 0.013046854175627232, -0.023338651284575462, 0.003584459191188216, 8.818031346891075e-06, -0.004716773517429829, 0.015434090048074722, 0.020655715838074684, 0.001460468745790422, 0.001687652780674398, 0.007334799040108919, -0.004749228246510029, 0.002149233128875494, 0.0031607430428266525, -0.0020212167873978615, 0.028271790593862534, -0.008077654987573624, 0.022357793524861336, 0.004554498940706253, -0.01016197819262743, -0.015765851363539696, -0.0003044897166546434, -0.010695680044591427, -0.0006585632218047976, -0.010342283174395561, 0.012808851897716522, 0.013018005527555943, -0.013256007805466652, -0.0039847358129918575, -0.017612172290682793, 0.012693457305431366, -0.01094810664653778, -0.009000815451145172, 0.023064589127898216, -0.017035195603966713, 0.003833279712125659, -0.006252970080822706, 0.02339634858071804, 0.019314249977469444, 0.014107046648859978, -0.019472917541861534, -0.010760589502751827, -0.028589127585291862, -0.031098969280719757, 0.016530342400074005, 0.00022571906447410583, -0.01779968850314617, -0.0025242669507861137, -0.008366142399609089, 0.042523082345724106, -0.01139526255428791, 0.011972238309681416, 0.01467681024223566, -0.014972509816288948, -0.0023223257157951593, 0.018823819234967232, 0.004608590621501207, -0.010234099812805653, 0.010594709776341915, 0.013450737111270428, 0.04485983029007912, -0.02505515329539776, -0.021362511441111565, -0.018867094069719315, 0.007107615005224943, 0.00861135683953762, -0.009101785719394684, 0.0019472917774692178, -0.0037864006590098143, 0.0026504804845899343, 0.02355501800775528, -0.007262676954269409, -0.014121470972895622, 0.021723121404647827, 0.008827722631394863, -0.0058058141730725765, -0.0153619684278965, 0.0052757179364562035, 0.005917603150010109, -0.014438807964324951, -0.009693185798823833, 0.006822733208537102, 0.010616346262395382, -0.009462395682930946, 0.012513152323663235, 0.03179134055972099, -0.0030723935924470425, -0.0154917873442173, 0.015275421552360058, 0.026411045342683792, -0.030348902568221092, -0.027449600398540497, -0.017612172290682793, -0.025935040786862373, 0.008041593246161938, -0.0110923508182168, -0.02058359421789646, -0.02263185754418373, 0.011835206300020218, -0.002628843765705824, -0.0010592906037345529, -0.0033194110728800297, 0.02067014016211033, -0.0022862646728754044, 0.008618569001555443, 0.01940079592168331, 0.020237410441040993, -0.003476276295259595, 0.010753377340734005, 0.0074429819360375404, -0.015030207112431526, 0.007291525602340698, -0.018044903874397278, 0.0045941658318042755, -0.005145898554474115, -0.004742016084492207, 0.006721762474626303, 0.006873218342661858, 0.0018841850105673075, -0.02297804318368435, 0.006271000485867262, -0.03014696016907692, 0.013991652056574821, -0.006783066317439079, 0.015030207112431526, 0.007594437804073095, -0.011171684600412846, -0.0256032794713974, -0.025401338934898376, -0.023670412600040436, -0.01990564912557602, 0.020309532061219215, -0.005052139982581139, -0.002830785233527422, 0.00692009786143899, -0.03484930843114853, -0.015895670279860497, -0.0037503396160900593, 0.014395534060895443, 0.009967248886823654, 0.016717860475182533, -0.020122013986110687, 0.0034221848472952843, 0.025386914610862732, 0.01001773402094841, 0.019256550818681717, 0.018578605726361275, -0.01827569305896759, -0.008806086145341396, 0.0043381331488490105, -0.007731469348073006, 0.0008934102370403707, -0.0012423000298440456, 0.01612645946443081, 0.009750883094966412, 0.001707486342638731, 0.018419938161969185, 0.009996097534894943, -0.010861560702323914, -0.020208559930324554, -0.005748116876929998, -0.001098957727663219, 0.008077654987573624, 0.017453502863645554, -0.016400523483753204, -0.006765035912394524, -0.013897893019020557, 0.02576194889843464, -2.4960943846963346e-05, 0.010111493058502674, -0.026699533686041832, 0.016169734299182892, 0.002432311652228236, -0.02339634858071804, -0.011135623790323734, 0.029526712372899055, -0.0026540865655988455, -0.000559846346732229, -0.0034221848472952843, -0.0005702138878405094, 0.007392496336251497, 0.0004696939722634852, 0.007940622977912426, -0.01121495757251978, 0.017237138003110886, 0.01491481252014637, 0.014193592593073845, -0.010097067803144455, -0.0207422636449337, -0.0036962481681257486, 0.04151337593793869, 0.007378072012215853, 0.008726751431822777, -4.542835654319788e-07, -0.025646552443504333, 0.012303998693823814, -0.002170869614928961, -0.001727319904603064, 0.013501222245395184, 0.015477363020181656, -0.012138118036091328, 0.0035051251761615276, 0.0062890308909118176, 0.02452145144343376, 0.006314273923635483, 0.006584730930626392, 0.021780818700790405, 0.013977227732539177, 0.03337802365422249, -0.017078470438718796, 0.009909551590681076, 0.008156988769769669, 0.010032158344984055, -0.006974189076572657, -0.0012386939488351345, 0.0031120607163757086, -0.017785264179110527, 0.002917331410571933, 0.00015945704944897443, 0.005016079172492027, 0.010515375062823296, -0.009548941627144814, 0.01596779190003872, 0.0023133105132728815, -0.03323378041386604, 0.02557443082332611, -0.006595549173653126, -0.0021907032933086157, -0.0022646281868219376, -0.003739521373063326, 0.015260997228324413, -0.004143403843045235, -0.002466569421812892, 0.012484303675591946, 0.010782225988805294, -0.01856418140232563, 0.0003373953513801098, 0.007287919521331787, -0.0024431298952549696, 0.005037715658545494, 0.02134808711707592, -0.013421888463199139, 0.0033680933993309736, -0.031993281096220016, 0.012837700545787811, 0.01219581626355648, -0.010176402516663074, -0.021131722256541252, 0.005059352610260248, -0.01008264347910881, 0.016112035140395164, 0.021809667348861694, 0.0004228147445246577, -0.00547405332326889, -0.009844641201198101, -0.01651591807603836, -0.03369535878300667, -0.004060463979840279, -0.03779188543558121, -0.020439350977540016, 0.001338763046078384, -0.0077819544821977615, -0.009895127266645432, 0.010688467882573605, 0.008034381084144115, 0.0025963890366256237, -0.02237221784889698, -0.03161824867129326, -0.009390273131430149, 0.006339516490697861, 0.02310786210000515, -0.010277372784912586, 0.00878444965928793, -0.006945340428501368, 0.003328426508232951, 0.018347814679145813, 0.012065996415913105, -0.014121470972895622, -0.0023692050017416477, -0.0012197619071230292, -0.0031120607163757086, -0.010097067803144455, 0.006216909270733595, 0.009015239775180817, 0.013869044370949268, -0.015015782788395882, -0.020525896921753883, -0.004269617609679699, -0.02620910480618477, -0.011626052670180798, 0.01738138124346733, 0.0020951416809111834, -0.01709289476275444, 0.007868501357734203, -0.008344505913555622, -0.015506211668252945, 0.005391112994402647, -0.020756687968969345, -0.003678217763081193, -0.003948675002902746, 0.013760861940681934, -0.013674315065145493, 0.0011548522161319852, 0.032339468598365784, 0.0008825919358059764, -0.00912342220544815, 0.003995554056018591, -3.276476127211936e-05, -0.01715059205889702, 0.02381465584039688, 0.013061278499662876, 0.0023259317968040705, -0.01622743159532547, -0.015881245955824852, 0.003151727607473731, -0.004179465118795633, 0.0017579717095941305, 0.013443524949252605, -0.011308716610074043, 0.01105629000812769, -0.009173907339572906, -0.019213277846574783, 0.018910367041826248, -0.0035862622316926718, 0.015737002715468407, -0.030637389048933983, -0.013587769120931625, 0.022545311599969864, -0.018217995762825012, -0.029036283493041992, -0.01058028545230627, 0.00478528905659914, 0.0067614298313856125, -0.0166745875030756, -0.013320918194949627, 0.012094845063984394, 0.015794700011610985, 0.006866006180644035, 0.017006346955895424, 0.015578334219753742, 0.0018499271245673299, -0.01677555777132511, -0.010702892206609249, 0.0014460444217547774, 0.024564724415540695, -0.016039913520216942, 0.022905919700860977, 0.029238224029541016, 0.03300298750400543, 0.021622151136398315, -0.014099834486842155, -0.008438264019787312, 0.00789013784378767, 0.001455961144529283, -0.013133401051163673, -0.019343098625540733, 0.001139526255428791, -0.00899360328912735, 0.0028902858030050993, -0.003775582183152437, -0.027031293138861656, -0.014099834486842155, 0.014611899852752686, -0.027161113917827606, 0.0013135203626006842, 0.016746709123253822, -0.005181959830224514, -0.002518857829272747, -0.013349766843020916, 0.0336088128387928, 0.008409415371716022, 0.04004208743572235, 0.0018355028005316854, 0.024564724415540695, -0.014489293098449707, -0.023829080164432526, -0.019920073449611664, -0.0033843209967017174, -0.0029065131675451994, 0.002700965851545334, 0.006772248074412346, -0.005924815312027931, -0.033176083117723465, 0.01583797298371792, 0.025790797546505928, -0.008957541547715664, 0.002899301005527377, 0.00804880540817976, -0.008380566723644733, -0.008380566723644733, 0.015823548659682274, -0.0008550954516977072, -0.036984119564294815, -0.0034221848472952843, -0.007003038190305233, 0.01677555777132511, 0.006364759057760239, 0.008885419927537441, 0.009166695177555084, 0.017208289355039597, -0.025358065962791443, 0.01859303005039692, -0.004806925542652607, 0.017871810123324394, 0.026771655306220055, -0.004150616470724344, 0.013825771398842335, -0.022285671904683113, 0.012231877073645592, 0.029973868280649185, -0.0038260675501078367, 0.003568231826648116, -0.020280683413147926, 0.007911774329841137, 0.007507891394197941, 0.0005400128429755569, 0.022862646728754044, 0.010847136378288269, -0.0035051251761615276, -0.008488749153912067, 0.006480154115706682, 0.025401338934898376, -0.017035195603966713, -0.013818559236824512, 0.0022934768348932266, -0.011171684600412846, -0.006285424809902906, 0.02329537831246853, -0.00020611091167666018, -0.01285212580114603, 0.018838243559002876, -0.001087237847968936, -0.0043850126676261425, 0.003768370021134615, 0.016140885651111603, -0.0044138613156974316, -0.011034653522074223, 0.01425850298255682, 0.0022862646728754044, 0.011496233753859997, -0.016472645103931427, 0.008272383362054825, -0.017424654215574265, 0.0002794724132400006, -0.007644922938197851, 0.009022451937198639, -0.015794700011610985, -0.02486763708293438, -0.030320053920149803, -0.013645466417074203, -0.016631314530968666, 0.0030327264685183764, -0.0018264874815940857, -0.010890409350395203, -0.0009145960211753845, -0.015549484640359879, -0.005109837744385004, -0.0026270407252013683, -0.0050232913345098495, 0.005942845717072487, 0.006775854155421257, -0.013385827653110027, -0.0016398720908910036, 0.017179440706968307, 0.024853212758898735, 0.0027586633805185556, 0.012037147767841816, -0.007659347262233496, 0.005077383015304804, 0.005766147281974554, 0.007803591433912516, -0.00512786814942956, -0.0025260699912905693, 0.009181119501590729, -0.0035664287861436605, 0.007861289195716381, -0.004940351005643606, -0.021650999784469604, -0.024694543331861496, -0.008344505913555622, 0.0003378461115062237, -0.0027388297021389008, 0.00980858039110899, -0.007479042746126652, 0.0038873711600899696, -0.008762813173234463, -0.0039126137271523476, 0.010219675488770008, 0.008878207765519619, 0.016443796455860138, 0.002201521536335349, 0.0023619928397238255, -0.016905376687645912, 0.016847679391503334, 0.005611084867268801, 0.007587225642055273, 0.008330081589519978, 0.015549484640359879, -0.0003986989613622427, 0.012116481550037861, 0.036955270916223526, 0.023482896387577057, -0.0084022032096982, -0.0073997084982693195, 0.0016191370086744428, -0.026930322870612144, 0.003301380667835474, 0.019992195069789886, 0.008445476181805134, -0.01491481252014637, -0.013140613213181496, 0.012751154601573944, 0.01971813105046749, 0.012722305953502655, 0.003317608032375574, 0.013003581203520298, 0.008661841973662376, -0.019891224801540375, 0.013140613213181496, 0.0024755848571658134, 0.007313162088394165, -0.014611899852752686, 0.013587769120931625, -0.024853212758898735, 0.03187788650393486, -0.011647689156234264, -0.0014712871052324772, 0.004348951391875744, 0.015549484640359879, -0.012246301397681236, 0.007767530158162117, 0.0020464593544602394, -0.012729518115520477, 0.008762813173234463, 0.014510929584503174, 0.023627139627933502, 0.005686813034117222, 0.001147639937698841, 0.016761133447289467, 0.0015443104784935713, 0.01270788162946701, 0.003597080474719405, -0.0221847016364336, -0.016588041558861732, -0.007493467070162296, 0.0029714228585362434, 0.008207473903894424, 0.010522587224841118, -0.016717860475182533, -6.068382936064154e-05, 0.013515646569430828, 0.018160298466682434, -0.020468199625611305, 0.009801368229091167, 0.004677106160670519, 0.0057336920872330666, 0.002746041864156723, -0.008279595524072647, -0.002441326854750514, -0.014006076380610466, -0.0028758614789694548, 0.01575142703950405, 0.014575839042663574, 0.0019256551750004292, -0.01187126711010933, -0.009051300585269928, 0.0004498604394029826, 0.02922379970550537, -0.0026017981581389904, -0.00804880540817976, -0.006923703942447901, 0.0032869563437998295, 0.009534517303109169, 0.010782225988805294, 0.01840551383793354], "50c21c11-745d-4649-9456-0b291bf29d19": [-0.024231426417827606, 0.007181410677731037, -0.006344579625874758, 0.01937714032828808, 0.03400668129324913, -0.010202004574239254, -0.00929515901952982, 0.024524817243218422, -0.003930772189050913, -0.015936464071273804, 0.013142582029104233, -0.009848601184785366, 0.015949800610542297, -0.002248775213956833, -0.0028122190851718187, 0.029392441734671593, -0.05147678032517433, 2.4679327907506377e-05, 0.01620318368077278, -0.010248679667711258, 0.018550310283899307, 0.020737407729029655, -0.06646639108657837, 0.03414003923535347, 0.014202790334820747, -0.0018636995228007436, 0.023137878626585007, 0.007188078947365284, -0.039394404739141464, 0.021177493035793304, 0.019403811544179916, -0.011875666677951813, 0.0062345582991838455, 0.026618562638759613, 0.04184821993112564, -0.03256639838218689, 0.01821691170334816, 0.0004450874403119087, -0.0077415211126208305, -0.016869980841875076, -0.017390083521604538, 0.021630916744470596, 6.964909698581323e-05, -0.0003588204854167998, -0.032139647752046585, -0.015336345881223679, 0.010648759081959724, 0.004144147504121065, -0.023137878626585007, -0.004270839039236307, 0.0024954902473837137, -0.04102139174938202, 0.014856251887977123, 0.02339126169681549, 0.0073747821152210236, -0.04376859962940216, -0.02215101756155491, 0.013095906004309654, -0.002842225134372711, -0.04403531923890114, 0.013242601417005062, 0.010061976499855518, -0.038167499005794525, -0.03283311799168587, -0.0020103950519114733, -0.03488685563206673, 0.016349878162145615, 0.04078134521842003, -0.06689313799142838, -0.001815356663428247, 0.012202396988868713, 0.04211493954062462, -0.0238046757876873, 0.03125947341322899, 0.0052977073937654495, 0.0015186317032203078, 0.018910381942987442, 0.00012106545182177797, -0.017350075766444206, 0.001407776609994471, 0.00994862150400877, -0.009495198726654053, 0.06844010949134827, -0.049369700253009796, 0.04160817340016365, 0.013349289074540138, -0.001895372406579554, -0.030192598700523376, -0.022617775946855545, -0.0556909404695034, 0.042995113879442215, 0.021897634491324425, -0.012689159251749516, 0.030485989525914192, 0.007721516769379377, 0.04659581929445267, 0.025871749967336655, 0.006567956879734993, 0.00475093349814415, -0.006187882274389267, -0.0022371062077581882, -0.01636321470141411, 0.0001513839088147506, 0.03654051199555397, 0.004384194500744343, 0.02079075202345848, -0.01907041296362877, -0.0034440099261701107, -0.030192598700523376, 0.004520887974649668, -0.024164747446775436, -0.030912740156054497, -0.032139647752046585, 0.029579143971204758, -0.04424869269132614, -0.018576983362436295, -0.011162192560732365, 0.011155525222420692, -0.03352658823132515, -0.01657659001648426, 0.03798079490661621, 0.034326743334531784, -0.009868605062365532, -0.0004048712144140154, -0.05515750125050545, -0.017830168828368187, 0.006577958818525076, 0.002233772072941065, -0.002157090464606881, -0.03240636736154556, 0.012989218346774578, 0.02667190693318844, 0.020804086700081825, -0.02263111248612404, 0.0008118261466734111, -0.008094923570752144, 0.022884495556354523, 0.02277780883014202, -0.01458953320980072, 0.01835027150809765, -0.07526811957359314, 0.021150821819901466, -0.02465817704796791, 0.000415498303482309, -0.007608161307871342, 0.013489317148923874, 0.013155917637050152, 0.026018444448709488, -0.0016278198454529047, 0.018430287018418312, -0.040487952530384064, -0.047716040164232254, -0.0169233251363039, 0.016429893672466278, 0.03536694869399071, 0.005544422660022974, -0.050703294575214386, 0.020017266273498535, 0.022457744926214218, 0.017936857417225838, 0.009421850554645061, -0.010782117955386639, 0.011075508780777454, 0.014069430530071259, 0.021550901234149933, -0.0058778212405741215, -0.005074330139905214, 0.03979448601603508, -0.029739174991846085, 0.02003060095012188, 0.04512886703014374, -0.027418719604611397, 0.01306256651878357, 0.03200628608465195, -0.008995100855827332, -0.002982252510264516, 0.009075116366147995, 0.026925290003418922, 0.046489134430885315, -0.025778397917747498, 0.0019103753147646785, -0.002825555158779025, 0.0014044425915926695, 0.018510302528738976, -0.014909596182405949, -0.005267701577395201, 0.0278454702347517, -0.0036007072776556015, 0.020297320559620857, 0.004250835161656141, 0.009168467484414577, 0.010922146029770374, -0.014149446040391922, 0.057237911969423294, -0.004137479700148106, 0.0029589147306978703, 0.00392077025026083, -0.02749873511493206, -0.027165336534380913, 0.04947638511657715, 0.0247915368527174, -0.02492489665746689, -0.017910186201334, 0.0018737014615908265, -0.018950389698147774, -0.002475486369803548, -0.034913524985313416, 0.01650991104543209, -0.004654247779399157, -0.02623181976377964, 0.020057274028658867, -0.024938233196735382, 0.012322421185672283, -0.028859002515673637, -0.012775843031704426, 0.0009918615687638521, 0.007781528867781162, 0.011075508780777454, 0.028645627200603485, -0.029285753145813942, 0.04592902213335037, 0.04208827018737793, 0.012989218346774578, -0.019030405208468437, -0.043581895530223846, -0.03168622404336929, 0.006654640659689903, 0.009161800146102905, -0.048169463872909546, -0.00046550811384804547, -0.004167485516518354, -0.020777415484189987, -0.02623181976377964, -0.01835027150809765, 0.002070406684651971, 0.06374585628509521, 0.024938233196735382, -0.01588311977684498, -0.03544696420431137, 0.0038707605563104153, 0.008901748806238174, 0.023257901892066002, 0.02345794253051281, -0.014122774824500084, 0.016963332891464233, 0.004040793981403112, 0.03240636736154556, 0.027232017368078232, 0.025111600756645203, 0.004134145565330982, -0.012502456083893776, 0.004134145565330982, -0.00941518321633339, -0.021564235910773277, -0.06518614292144775, 0.023951372131705284, 0.014496181160211563, -0.018030209466814995, 0.018363608047366142, -4.769166116602719e-05, 0.007408122066408396, 0.04211493954062462, 0.005074330139905214, 0.01819024048745632, 0.011188864707946777, 0.004174153320491314, 0.047449320554733276, -0.049983151257038116, 0.02081742323935032, -0.0009168467950075865, -0.051663484424352646, 0.022284377366304398, 0.014042758382856846, 0.005184351932257414, 0.005014318507164717, -0.0019987260457128286, 0.035420291125774384, -0.05318378284573555, -0.0196571946144104, -0.010068644769489765, -0.05531753599643707, -0.029365768656134605, 0.015176314860582352, 0.00765483733266592, 0.018923718482255936, -0.018910381942987442, -0.06385254114866257, -0.01650991104543209, -0.04206159710884094, -0.0441153347492218, 0.0042741731740534306, 0.0011577274417504668, 0.029152393341064453, 0.012322421185672283, -0.0011585609754547477, 0.02749873511493206, -0.042408332228660583, 0.009348503313958645, -0.009288491681218147, 0.0552641898393631, -0.05750463157892227, -0.0314461775124073, 0.007188078947365284, -0.020844094455242157, 0.002430477412417531, -0.012975882738828659, 0.03200628608465195, -0.0026955294888466597, -0.03221966326236725, 0.02917906641960144, 0.002083742758259177, -0.030005894601345062, -0.02400471642613411, -0.008228283375501633, 0.005857817362993956, -0.0033473242074251175, 0.0373406708240509, 0.005161013919860125, -0.00040424609323963523, 0.0015303005930036306, 0.028992362320423126, 0.021550901234149933, -0.020697399973869324, 0.028272220864892006, 0.0064245956018567085, -0.05713122338056564, -0.017390083521604538, -0.016896652057766914, -0.00711473124101758, -0.02393803559243679, -0.060118477791547775, 0.006271231919527054, -0.020417343825101852, -0.0005746962269768119, -0.026738585904240608, -0.02177761122584343, 0.0098285973072052, -0.055530909448862076, -0.003245637519285083, 0.009881941601634026, -0.010182000696659088, -0.025831742212176323, -0.028058845549821854, 0.017830168828368187, 0.01825691945850849, 0.010068644769489765, -0.04112808033823967, 0.02037733606994152, -0.03987450152635574, 0.0017370078712701797, 0.0009526871726848185, 0.009988629259169102, 0.027218680828809738, 0.021524228155612946, 0.004694255534559488, -0.0430217869579792, -0.004544225987046957, 0.004910964984446764, 0.003162287874147296, -0.042381659150123596, -0.011135521344840527, -0.021244173869490623, -0.014016087166965008, -0.014549525454640388, -0.018163569271564484, -0.0035373615100979805, 0.02212434634566307, 0.018136896193027496, -0.02061738446354866, -0.03349991515278816, 0.018203577026724815, 0.0030589343514293432, 0.03373996168375015, 0.03464680537581444, 0.0010076980106532574, -0.012589139863848686, 0.03544696420431137, -0.026685241609811783, -0.03664720058441162, 0.0031206130515784025, -0.030459316447377205, -0.0026238488499075174, -0.022684456780552864, -0.013776039704680443, 0.014882924035191536, 0.026258492842316628, -0.020057274028658867, -0.010215340182185173, 0.012262408621609211, 0.027418719604611397, 0.0004634243668988347, 0.02513827197253704, -0.021590908989310265, -0.030779380351305008, -0.00037257320946082473, 0.012729167006909847, -0.016763294115662575, -0.008715045638382435, 0.0039174361154437065, -0.051903530955314636, 0.033233195543289185, 0.0007805700297467411, -0.000947686203289777, 0.009455190971493721, 0.01301589049398899, -0.0190037339925766, -0.04507552087306976, -0.01374936755746603, -0.016216518357396126, -0.00919513963162899, -0.005767799913883209, -0.009981960989534855, -0.0441153347492218, 0.023644644767045975, 0.03824751451611519, 0.03272642940282822, -0.019123757258057594, 0.04475545883178711, -0.015669744461774826, -0.016656605526804924, 0.03627379238605499, 0.04654247686266899, 0.0039807818830013275, -0.004697589669376612, 0.015029619447886944, 0.009901945479214191, -0.012469116598367691, 0.03488685563206673, 0.026831937953829765, 0.002708865562453866, -0.009448522701859474, 0.07697512209415436, -0.028645627200603485, -0.016256527975201607, 0.033366553485393524, -0.010455387644469738, -0.0107554467394948, 0.05086332559585571, 0.017883513122797012, -0.04222162812948227, -0.03966112434864044, 0.0033923331648111343, -0.018656998872756958, 0.04616906866431236, -0.021137485280632973, -0.020083945244550705, -0.04558228701353073, 0.002675525611266494, -0.014162782579660416, 0.007221418898552656, 0.009101788513362408, -0.04243500158190727, -0.010402043350040913, -0.039394404739141464, 0.02363131009042263, 0.010482058860361576, 0.030566005036234856, -0.015936464071273804, -0.015122971497476101, -0.043368518352508545, -0.04526222497224808, -0.007241422776132822, -0.024644842371344566, 0.02208433859050274, 0.031552866101264954, -0.018296927213668823, -0.005151011981070042, 0.01681663654744625, 0.023071199655532837, 0.02725868858397007, -0.037554044276475906, 0.019697202369570732, 0.011495592072606087, -0.001950383186340332, 0.037100620567798615, -0.022831151261925697, -0.029819192364811897, 0.03608708828687668, 0.004997648298740387, -0.005321045406162739, 0.022937839850783348, -0.03907434269785881, 0.012002358213067055, 0.012889198958873749, -0.0053710551001131535, -0.0039807818830013275, 0.026045117527246475, -0.005080998409539461, 0.03470015153288841, 0.013609340414404869, 0.0003629879793152213, -0.0029389106202870607, 0.045902352780103683, 0.015149642713367939, 0.00045675638830289245, 0.014856251887977123, -0.025324976071715355, -0.02763209491968155, -0.006717986427247524, -0.016523245722055435, 0.00520435580983758, -0.045902352780103683, -0.04078134521842003, -0.02345794253051281, 0.002600510837510228, 0.031792912632226944, -0.005037656519562006, 0.007141402922570705, -0.003900766372680664, -0.0010377038270235062, -0.021630916744470596, 0.020243976265192032, -0.0382208414375782, -4.175299545750022e-05, 0.021150821819901466, -0.015536385588347912, 0.0006893021054565907, -0.008541678078472614, 0.014002750627696514, -0.0013327618362382054, 0.017856841906905174, 0.009335167706012726, -0.0552641898393631, -0.03288646042346954, 0.003108944045379758, -0.01852363906800747, -0.01049539539963007, -0.017643466591835022, -0.01393607072532177, -0.012129049748182297, 0.003974114079028368, 0.009168467484414577, -0.02955247275531292, -0.0200972817838192, -0.005427733063697815, 0.004910964984446764, 0.013582668267190456, 0.016123168170452118, 0.014176118187606335, 0.0345134474337101, -0.05454405024647713, 0.0271920096129179, -0.003352325176820159, -0.00043841946171596646, 0.016696613281965256, 0.0029405776876956224, -0.011582275852560997, -0.019563842564821243, 0.0014286140212789178, -0.01032202783972025, -0.013989415019750595, -0.013569332659244537, 0.02979251928627491, -0.0015319676604121923, -0.03963445499539375, -0.036007072776556015, 0.017350075766444206, -0.0032473045866936445, -0.01725672371685505, -0.016909988597035408, -0.012215733528137207, -0.0063612498342990875, 0.00482761487364769, 0.018683670088648796, 0.010848797857761383, -0.035420291125774384, 0.01265581976622343, -0.006231224164366722, -0.017910186201334, 0.024191418662667274, 0.008361642248928547, 0.0032189658377319574, 0.022577768191695213, -0.02280448004603386, 0.002818887121975422, 0.03584704175591469, 0.01763013005256653, 0.026698578149080276, -0.01446950901299715, -0.0008489167666994035, 0.004380860831588507, 0.014536188915371895, -0.003195627825334668, -0.011102180927991867, 0.023271238431334496, 0.004814279265701771, -0.016976669430732727, -0.01832360029220581, 0.0010377038270235062, 0.017376746982336044, -0.013842719607055187, 0.014216125942766666, 0.003250638721510768, 0.005037656519562006, -0.02208433859050274, 0.034060023725032806, -0.0160564873367548, 0.023231230676174164, 0.002815553219988942, -0.014496181160211563, 0.0005367721314541996, 0.015242994762957096, 0.01723005250096321, 0.001272750087082386, -0.021657587960362434, 0.03459346294403076, 0.0010977156925946474, 0.01102883368730545, -0.008775057271122932, 0.008975096978247166, -0.028378909453749657, -0.03606041893362999, 0.025898421183228493, -0.019443819299340248, 0.0404079370200634, -0.013515988364815712, -0.008635030128061771, 0.005681116133928299, -0.0029572476632893085, 0.02044401690363884, 0.009835265576839447, -0.01808355189859867, 0.018777022138237953, 0.0047275954857468605, 0.0013019224861636758, -0.016656605526804924, 0.012949210591614246, -0.0031656220089644194, -0.001940381247550249, 0.00017367996042594314, -0.03912768512964249, -0.012502456083893776, 0.014136110432446003, -0.006451267283409834, 0.03488685563206673, -0.006901355925947428, 0.0060678585432469845, 0.0314461775124073, -0.01342263724654913, -0.025698382407426834, -0.00556442653760314, -0.01921710930764675, 0.008495002053678036, 0.049503058195114136, 0.007081391289830208, 0.00473426328971982, -0.018296927213668823, 0.022617775946855545, 0.03518024459481239, 0.012155720964074135, 0.012589139863848686, 0.029952550306916237, 0.01622985489666462, 0.028965691104531288, -0.027418719604611397, -0.00047634358634240925, 0.0032906464766710997, 0.006127870641648769, 0.03280644491314888, 0.02068406343460083, 0.029712503775954247, 0.0003125614020973444, 0.022284377366304398, -0.017416754737496376, 0.007341442164033651, 0.019057076424360275, 0.042408332228660583, -0.01585644856095314, 0.014936267398297787, 0.020750742405653, -0.01347598060965538, -0.050836652517318726, 0.005354385357350111, 0.012335756793618202, -0.008381647057831287, 0.003900766372680664, 0.0023954706266522408, -0.009935284964740276, 0.014882924035191536, -0.03488685563206673, 0.0007734852842986584, -0.0075748213566839695, -0.005971173290163279, 0.007768192794173956, -0.009168467484414577, -0.007588157430291176, -0.005914495326578617, -0.00391410244628787, -0.008555013686418533, -0.000632624258287251, 0.0060345190577209, 0.006451267283409834, -0.0011452250182628632, -0.011628950946033001, -0.005101002287119627, -0.003424006048589945, 0.005794471595436335, -0.01819024048745632, -0.004920966923236847, -0.017963528633117676, -0.047075916081666946, -0.0425950363278389, -0.01924378052353859, -0.014976275153458118, -0.004937636665999889, 0.00500098243355751, -0.019857235252857208, -0.010328696109354496, 0.0011727303499355912, 0.024324778467416763, 0.003172289812937379, 0.03656718507409096, 0.03739401325583458, -0.009535206481814384, -0.008468329906463623, 0.051903530955314636, -0.011969017796218395, 0.014896259643137455, 0.0321129746735096, -0.014082767069339752, 0.045048851519823074, 0.0021787614095956087, -0.00035944560659117997, -0.006731322500854731, 0.003133949125185609, -0.007088059093803167, 0.012415772303938866, 0.0184569600969553, 0.011628950946033001, -0.006604630965739489, -0.01422946248203516, 0.0069413636811077595, -0.00034715153742581606, 0.01287586335092783, -0.003960778005421162, 0.008041580207645893, -0.020190633833408356, 0.028005501255393028, 0.04232831671833992, -0.03317985311150551, 0.0010952152078971267, -0.04694255441427231, 0.0057511297054588795, -0.03267308697104454, -0.02797883003950119, 0.015589728951454163, 0.013802711851894855, 0.014869587495923042, -0.0031139450147747993, -0.009121792390942574, 0.03579369932413101, -0.0215108934789896, 0.027818799018859863, -0.002908904803916812, -0.005747796036303043, -0.018550310283899307, 0.020910775288939476, 0.0030305953696370125, 0.0009226812398992479, 0.019057076424360275, -0.013002554886043072, 0.03675388544797897, -0.010555407032370567, -0.024364786222577095, 0.010528734885156155, -0.014642876572906971, -9.105955541599542e-05, 0.030699364840984344, 0.02965915948152542, 0.0007030547712929547, 0.009575214236974716, -0.005131008103489876, 0.02677859365940094, 0.024818209931254387, -0.030085910111665726, 0.005224359687417746, -0.012595808133482933, 0.039154358208179474, -0.00518768560141325, -0.016016479581594467, -0.04776938632130623, 0.024404793977737427, 0.01574975997209549, 0.03296647593379021, -0.029579143971204758, -0.060491885989904404, 0.0066146329045295715, 0.022417737171053886, 0.01961718685925007, -0.028058845549821854, 0.0338466502726078, -0.017336739227175713, -0.0058544836938381195, 0.01158894319087267, 0.005381057038903236, -0.014576196670532227, 0.028672300279140472, -0.020083945244550705, -0.005607768427580595, -0.004514220170676708, 0.01446950901299715, -0.03229967877268791, 0.029499128460884094, 0.030005894601345062, 0.022111009806394577, 0.013656016439199448, -0.03726065531373024, 0.009061779826879501, 0.009701905772089958, 0.015483042225241661, 0.020057274028658867, -0.028912346810102463, -0.007188078947365284, -0.008481666445732117, -0.025124935433268547, -0.02444480173289776, 0.0032923135440796614, 0.027578750625252724, -0.0029639157000929117, 0.01657659001648426, -0.03963445499539375, -0.008721713908016682, 0.034060023725032806, -0.013175921514630318, 0.007581489626318216, 0.04136812686920166, 0.021790947765111923, 0.021897634491324425, 0.03976781293749809, -0.00538439117372036, -0.020964117720723152, -0.016723284497857094, -0.0020787417888641357, 0.015469705685973167, 0.023164551705121994, 0.04635577276349068, -0.026791930198669434, -0.0005972006474621594, -0.02013728953897953, 0.02715199999511242, -0.046249084174633026, -0.01256913598626852, -0.012715831398963928, -0.0041708191856741905, 0.032246336340904236, -0.01889704540371895, -0.001273583504371345, -0.02383134886622429, 0.025124935433268547, 0.012895867228507996, 0.00024629838299006224, -0.001299422001466155, -0.01410943828523159, 0.01646990142762661, 0.014389493502676487, 0.01677662879228592, -0.006888019852340221, -0.007368114311248064, -0.026631899178028107, -0.0336332730948925, -0.003804080653935671, 0.055050816386938095, -0.01867033541202545, -0.006077860482037067, -0.002798883244395256, 0.009255151264369488, -0.006724654231220484, -0.01989724300801754, 0.02191097103059292, -0.006681312806904316, 0.02273780107498169, 0.019630523398518562, 0.0578780360519886, -0.011522263288497925, -0.021790947765111923, -0.00391410244628787, -0.014336150139570236, 0.012769175693392754, -0.01935046911239624, -0.011822322383522987, 0.010722106322646141, -0.001246078172698617, 0.018990397453308105, 0.008128263987600803, -0.0506766214966774, -0.014802908524870872, 0.014842916280031204, 0.023417934775352478, 0.004484214354306459, 0.0052343616262078285, 0.03272642940282822, -0.034913524985313416, 0.020737407729029655, -0.00994862150400877, -0.001762012834660709, -0.009801926091313362, 0.012195729650557041, 0.00018586985243018717, -0.017336739227175713, -0.0032172987703233957, 0.02629850059747696, -0.01677662879228592, -0.015229658223688602, -0.000532604637555778, 0.015176314860582352, 0.0005009317537769675, 0.01278917957097292, 0.022284377366304398, -0.0016469901893287897, -0.010862134397029877, -0.02160424366593361, 0.0026338507886976004, 0.0011318890610709786, -0.015763096511363983, 0.041074737906455994, -0.0011810653377324343, 0.0012660820502787828, 0.0068680159747600555, 0.011715634725987911, -0.02085743099451065, -0.03496687114238739, 0.03555365279316902, 0.018643662333488464, 0.030299285426735878, 0.01719004288315773, -0.03168622404336929, -0.014722892083227634, -0.00012221150973346084, 0.034433431923389435, 0.01422946248203516, -0.04184821993112564, 0.013989415019750595, -0.0009901945013552904, 0.021590908989310265, -0.005121006164699793, -0.017616793513298035, 0.02249775268137455, -0.00392077025026083, -0.021244173869490623, 0.001715337042696774, 0.0009176802705042064, 0.00026442695525474846, 0.014656213112175465, -0.03259307146072388, 0.006787999998778105, -0.056011002510786057, -0.016456566751003265, 0.029819192364811897, 0.0008189108921214938, 0.010368703864514828, -0.001778682810254395, 0.02609845995903015, -0.0017770157428458333, 0.014669548720121384, 0.001907041296362877, 0.013342620804905891, 0.013082570396363735, 0.004804277326911688, 0.00729476660490036, -0.0005267701344564557, -0.007354778237640858, -0.04198158159852028, -0.01928378827869892, 0.009241815656423569, -0.02195097878575325, 0.019883906468749046, 0.006457935553044081, -0.013535992242395878, -0.02304452657699585, -0.03574035316705704, -0.02188429981470108, -0.020390672609210014, 0.013722696341574192, 0.0041474816389381886, 0.02277780883014202, 0.008154935203492641, -0.014096102677285671, -0.0028405580669641495, -0.04024790599942207, -0.00902177207171917, 0.025738390162587166, -0.019030405208468437, 0.013709359802305698, 0.014482845552265644, 0.0231512151658535, -0.004470878280699253, 0.020537368953227997, -0.01049539539963007, -0.017483435571193695, 0.012189061380922794, 0.0010685432935133576, -0.03510022908449173, -0.010061976499855518, -0.010302023962140083, 0.009221811778843403, 0.02725868858397007, -0.008421654812991619, -0.02164425142109394, -0.009355171583592892, 0.0004942637751810253, 0.006301237735897303, -0.006601296830922365, -0.018576983362436295, 0.024978240951895714, 0.008168271742761135, -0.018883710727095604, 0.023964708670973778, 0.006507945246994495, -0.023858020082116127, 0.024738192558288574, -0.02188429981470108, 0.02000392973423004, 0.011889002285897732, 0.0013435973087325692, 0.0007218084647320211, 0.005781135521829128, -0.007134735118597746, -0.04811611771583557, 0.020217305049300194, 0.0036173772532492876, 0.01238243281841278, -0.009055112488567829, -0.0406213141977787, -0.008515005931258202, 0.0051810177974402905, -0.008788392879068851, -0.03221966326236725, -0.007801532745361328, 0.0016669941833242774, -0.012422440573573112, -0.0009635226451791823, -0.009448522701859474, 0.023684652522206306, -0.014269470237195492, -0.016896652057766914, -0.036593854427337646, -0.019950585439801216, -0.054837439209222794, -0.022524425759911537, -0.0036273791920393705, 0.027005305513739586, -0.005144344177097082, -0.004240833222866058, 0.00941518321633339, -0.0013719361741095781, 0.03435341641306877, -0.011275548487901688, -0.018963726237416267, -0.007668172940611839, -0.01138890441507101, -0.01616317592561245, -0.03176623955368996, 0.013515988364815712, -0.016669942066073418, -0.007801532745361328, 0.012969214469194412, 0.012975882738828659, -0.014682884328067303, 0.0022020991891622543, -0.0011577274417504668, -0.001536135096102953, 0.0014836248010396957, 0.005504414904862642, -0.02437812276184559, 0.003388999029994011, 0.008501670323312283, -0.007821536622941494, 0.015523049980401993, -0.016563253477215767, -0.002287115901708603, -0.023364590480923653, 0.0058544836938381195, -0.014389493502676487, -0.029392441734671593, 0.01066876295953989, -0.0059311650693416595, 0.0061178687028586864, 0.010175332427024841, 0.00046134061994962394, -0.007954896427690983, 0.0009010103531181812, 0.017456762492656708, -0.0047909412533044815, 0.0069346958771348, -0.0202039685100317, -0.0072480905801057816, 0.010675430297851562, 0.02575172670185566, -0.0029005699325352907, -0.029125722125172615, -0.011788982897996902, 0.004880958702415228, 0.009301827289164066, 0.039714470505714417, 0.004577565938234329, -0.003884096397086978, -0.015776433050632477, 0.04387528449296951, 0.013375961221754551, 0.005154346115887165, 0.012589139863848686, -0.025471670553088188, -0.011802318505942822, 0.009681901894509792, 0.01808355189859867, 0.034566789865493774, -0.028538940474390984, -0.0011418909998610616, -0.0011693964479491115, 0.003430674085393548, 0.0015286336420103908, 0.026565218344330788, 0.03400668129324913, 0.017483435571193695, 0.023737996816635132, 0.014189454726874828, -0.0031872927211225033, -0.009068448096513748, 0.010968821123242378, 0.013382629491388798, 0.025631701573729515, -0.0038507564458996058, -0.01374936755746603, -0.014549525454640388, -0.008281626738607883, 0.013776039704680443, 0.00152780010830611, 0.004090803675353527, 0.0009326832368969917, 0.026258492842316628, 0.0007839039899408817, 0.0013594337506219745, -0.0017536778468638659, -0.0118489945307374, 0.011788982897996902, -0.023297909647226334, -0.004270839039236307, -0.012935874983668327, 0.014816244132816792, -0.0036007072776556015, -0.003877428360283375, -0.009795257821679115, -0.007854876108467579, -0.0191104207187891, 0.024431467056274414, 0.007468133699148893, -0.012455780059099197, 0.011262212879955769, 0.022524425759911537, -0.036833904683589935, 0.002882232889533043, -0.007061387412250042, -0.005511082708835602, -0.011955682188272476, -0.015349682420492172, 0.03571368381381035, 0.008495002053678036, -0.008361642248928547, -0.0169233251363039, -0.0019753880333155394, -0.027245352044701576, -0.015429697930812836, 0.019910577684640884, -0.009548543021082878, -0.002548834076151252, -0.023844685405492783, 0.009475194849073887, 0.008881744928658009, -0.008855072781443596, -0.018203577026724815, -0.00720808282494545, 0.0005788637208752334, 0.003720731008797884, 0.01585644856095314, -0.009615221992135048, 0.014976275153458118, -0.0220576673746109, -0.006511279381811619, -0.0036973929964005947, 0.00909512024372816, -0.013709359802305698, -0.007981567643582821, 0.008308298885822296, 0.009521870873868465, 0.0006351248011924326, -0.005437735002487898, -0.021070806309580803, -0.005827811546623707, -0.04712925851345062, 0.009401846677064896, -0.007801532745361328, -0.005894491448998451, -0.007241422776132822, -0.0071947467513382435, 0.00994862150400877, -0.02256443351507187, -0.01301589049398899, 0.003674055216833949, 0.013896062970161438, 0.01270249579101801, 0.004947638604789972, 0.0070680552162230015, -0.010268684476613998, 0.01749677024781704, 0.0012485786573961377, -0.008261622861027718, -0.00792822428047657, 0.022524425759911537, -0.01176231075078249, -0.017696810886263847, -0.02605845220386982, 0.008421654812991619, -0.015229658223688602, -0.020737407729029655, -0.013816047459840775, 0.04910298064351082, -0.0027472064830362797, -0.022271042689681053, -0.012562467716634274, 0.00766150513663888, 0.01941714808344841, -0.008081587962806225, 0.008281626738607883, -0.011715634725987911, 0.018683670088648796, -0.013829383999109268, -0.018710343167185783, 0.011362232267856598, 0.02551167830824852, 0.009115124121308327, 0.0032439706847071648, -0.00014804991951677948, 0.0007443128852173686, 0.03462013602256775, 0.02527163177728653, -0.029099050909280777, 0.0009618556359782815, -0.013842719607055187, -0.018403615802526474, 0.027285359799861908, 0.005797805730253458, 0.0075748213566839695, 0.005191019736230373, -0.018363608047366142, 0.00209707859903574, 0.005771133583039045, -0.0007288932101801038, 0.005971173290163279, -0.006798002403229475, 0.045768991112709045, -0.0012869194615632296, -0.005511082708835602, -0.019497163593769073, -0.011108849197626114, -0.00946852657943964, -0.010988825932145119, -0.010315359570086002, 0.03550030663609505, 0.021310852840542793, -0.006567956879734993, 0.0021270846482366323, 0.02979251928627491, -0.00482761487364769, 0.017696810886263847, -0.04918299615383148, -0.00782820489257574, 0.007694845087826252, 0.012595808133482933, 0.01952383480966091, 0.0017303399508818984, -0.014656213112175465, 0.018030209466814995, 0.01166229136288166, 0.006074526812881231, -0.0049142986536026, 0.018750350922346115, 0.025124935433268547, -0.025725053623318672, -0.013329285196959972, 0.010141992941498756, 0.021017462015151978, -0.016549918800592422, -0.001770347822457552, -0.0393143892288208, -0.0024704854004085064, 0.004120809491723776, 0.002158757532015443, 0.010168664157390594, -0.01620318368077278, 0.01032202783972025, 0.02051069587469101, 0.006787999998778105, 0.001462787389755249, -0.005944501142948866, -0.0277387835085392, -0.017763489857316017, 0.024338115006685257, -0.03947442024946213, 0.04379526898264885, 0.007908220402896404, 0.00040257908403873444, 0.03414003923535347, -0.018576983362436295, -0.012562467716634274, 0.0040441276505589485, 0.011228872463107109, -0.00878172554075718, -0.018510302528738976, 0.006144540384411812, -0.022697793319821358, -0.00501765264198184, -0.018923718482255936, -0.006981371436268091, -0.0029589147306978703, -0.0180168729275465, 0.009601886384189129, -0.00850833859294653, -0.00711473124101758, 0.006901355925947428, -0.008248287253081799, -0.008788392879068851, 0.005231027491390705, 0.007934892550110817, 0.0007647335878573358, -0.019977258518338203, -0.020670726895332336, 0.010655426420271397, -0.003640715265646577, 0.02051069587469101, 0.03349991515278816, 0.034060023725032806, 0.039021000266075134, 0.02321789413690567, -0.0003815332893282175, 0.015283002518117428, 0.019883906468749046, -0.010315359570086002, 0.010055309161543846, -0.005887823179364204, -0.015576393343508244, -0.008034911938011646, 0.009101788513362408, -0.00019107920525129884, 0.017963528633117676, -0.04064798727631569, 0.006517947185784578, 0.003352325176820159, -0.005010984372347593, 0.010902142152190208, -0.000257133855484426, -0.022951176390051842, -0.0039907838217914104, 0.020190633833408356, -0.004224163014441729, 0.01763013005256653, -0.016843309625983238, -0.02955247275531292, 0.02127084508538246, -0.01736341044306755, -0.002373799681663513, -0.0009876940166577697, -0.030912740156054497, -0.010021968744695187, -0.006334577687084675, -0.006974703632295132, 0.020937446504831314, -0.0005571927758865058, -0.036967262625694275, 0.004437538329511881, -0.0087350495159626, -3.435570761212148e-05, -0.011062173172831535, -0.010848797857761383, 0.017456762492656708, 0.006014514714479446, 0.02356462925672531, -0.01111551746726036, -0.016496574506163597, 0.039394404739141464, -0.008001571521162987, 0.039714470505714417, -0.033233195543289185, 0.013182589784264565, -0.0024804873391985893, 0.025591693818569183, 0.018416952341794968, -0.011915674433112144, 0.004300844855606556, 0.006314573809504509, 0.02175094000995159, 0.016309870406985283, 0.005287705454975367, 0.013355957344174385, 0.016189847141504288, -0.0007055552559904754, -0.011082177050411701, -0.03325986862182617, 0.03040597401559353, -0.00814826786518097, 0.0184569600969553, 0.00601784884929657, -0.0018470295472070575, -0.02944578416645527, -0.006384587846696377, -0.024391459301114082, 0.014802908524870872, -0.04352855309844017, 0.02127084508538246, -0.0029305757489055395, -0.020297320559620857, -0.0006584626971744001, -0.004977644421160221, -0.002612179843708873, 0.01568308100104332, -0.0054877446964383125, -0.0022537761833518744, 0.0247915368527174, -0.006257896311581135, 0.019257117062807083, -0.010868801735341549, -0.009048444218933582, -0.026458531618118286, 0.005317711271345615, 0.009868605062365532, -0.0030972750391811132, -0.028005501255393028, -0.0009593551512807608, 0.02007061056792736, -0.020604047924280167, -0.017310068011283875, 0.002905570901930332, -0.01265581976622343, -0.011135521344840527, -0.023404598236083984, -0.010368703864514828, -0.016496574506163597, -0.023617973551154137, 0.0013652682537212968, -0.0018803693819791079, -0.0010460388148203492, 0.01725672371685505, -0.021284181624650955, 0.00457089813426137, -0.02175094000995159, 0.017750153318047523, -0.024124739691615105, -0.021697595715522766, 0.019843898713588715, 0.006437931675463915, 0.03632713854312897, 0.022337721660733223, -0.001993725076317787, 0.006494609173387289, -0.01983056217432022, 0.008635030128061771, -0.012422440573573112, 0.02811218984425068, -0.002195431385189295, 0.013069233857095242, 0.0007868212414905429, -0.0071947467513382435, 5.584430618910119e-05, -0.02557835914194584, -0.025951765477657318, -0.01328927744179964, -0.01242910884320736, 0.01808355189859867, 0.011802318505942822, 0.01795019395649433, 0.009088451974093914, 0.024631505832076073, 0.03389999270439148, -0.04342186450958252, -0.006124536506831646, -0.016083160415291786, -0.015283002518117428, -0.01795019395649433, -0.010962153784930706, 0.0010793787660077214, -0.018777022138237953, -0.0033723292872309685, 0.006187882274389267, -0.004010788165032864, 0.01708335615694523, -0.01126888021826744, 0.004200825467705727, 0.03728732466697693, 0.014656213112175465, -0.0036073753144592047, 0.0005167681956663728, -0.022044330835342407, 0.014762899838387966, 0.021630916744470596, -0.01852363906800747, 0.013229265809059143, -0.0071213990449905396, 0.012449112720787525, 0.02157757245004177, 0.003987450152635574, 0.02356462925672531, 0.008221615105867386, -0.0037340668495744467, 0.00828829500824213, 0.01046205498278141, 0.010655426420271397, -0.004964308813214302, -0.0012977549340575933, 0.007854876108467579, -0.0006888853386044502, -0.018777022138237953, -0.0026421856600791216, 0.006447933614253998, -0.03427340090274811, -0.031419504433870316, 0.0077415211126208305, 0.011475588195025921, -0.015429697930812836, -0.008168271742761135, -0.018817029893398285, -0.009301827289164066, 0.008715045638382435, 0.007014711387455463, 0.014882924035191536, -0.009788589552044868, -0.00657462514936924, 0.00013252603821456432, 0.029019033536314964, 0.021590908989310265, 0.017910186201334, -0.00032298010773956776, 0.00446754414588213, 0.012555800378322601, -0.04515553638339043, -0.0055510904639959335, -0.0026155137456953526, 0.030085910111665726, -2.0837426291109296e-06, -0.026898616924881935, 0.01270249579101801, -0.03507355600595474, 0.030219269916415215, 0.001591145875863731, -0.003774074837565422, 0.0011002161772921681, 0.017656801268458366, 0.011962350457906723, 0.00991528108716011, -0.014269470237195492, 0.023818012326955795, 0.020764078944921494, -0.021550901234149933, 0.008194942958652973, -0.004487548489123583, 0.002845559036359191, 0.003747402923181653, -0.00538439117372036, 0.003118945984169841, 0.01285585854202509, 0.021924307569861412, 0.007514809723943472, -0.004330850671976805, 0.014256133697926998, -0.0166032612323761, 0.005921163130551577, -0.013709359802305698, -0.01917710155248642, 0.007614829111844301, 0.00910845585167408, 0.0005834479816257954, 0.004434204660356045, 0.00500098243355751, -0.0037707407027482986, 0.013909399509429932, 0.007154738996177912, -0.014669548720121384, -0.0061178687028586864, -0.02000392973423004, 0.00684801209717989, 0.009981960989534855, -0.008795061148703098, -0.003368995152413845, -0.012749170884490013, 0.051343418657779694, 0.016176510602235794, 0.027472063899040222, 0.013989415019750595, -0.006671310402452946, -0.023551292717456818, 0.007908220402896404, -0.02400471642613411, 0.02904570661485195, -0.0004980145022273064, 0.018857037648558617, -0.017043348401784897, 0.025364983826875687, -0.008975096978247166, -0.005114337895065546, 0.02160424366593361, 0.00374073488637805, 0.0003829919151030481, -0.011929010041058064, 0.022071002051234245, 0.020950783044099808, 0.0009868605993688107, -0.010782117955386639, -0.006597962696105242, -0.010208671912550926, 0.014002750627696514, -0.00464757950976491, -0.020777415484189987, 0.011088845320045948, 0.04296844080090523, 0.0018203576328232884, -0.00011262629413977265, -0.00738811818882823, -0.005027654580771923, -0.0013836051803082228, 0.009855269454419613, 0.007694845087826252, 0.008328302763402462, -0.013882727362215519, 0.03259307146072388, 0.022991184145212173, -0.029472457244992256, -0.0012044032337144017, 0.009635225869715214, -0.0066779786720871925, -0.00864836573600769, 0.0033106503542512655, -0.0018220245838165283, -8.30371500342153e-05, -0.002203766256570816, -0.03184625506401062, -0.012589139863848686, -0.007268094457685947, 0.011715634725987911, -0.007768192794173956, -0.008975096978247166, -0.02088410221040249, -0.022657785564661026, 0.017283394932746887, 0.001209404319524765, -0.006101198494434357, 0.009628558531403542, -0.04054129868745804, 0.00236713164485991, -0.03411336988210678, -0.013482648879289627, -0.008234950713813305, -0.02147088572382927, -0.015803104266524315, 0.002663856605067849, -0.002952246693894267, 0.0080282436683774, 0.0016219853423535824, -0.029845863580703735, -0.0076881772838532925, 0.029765848070383072, 0.012689159251749516, 0.02465817704796791, 0.024258099496364594, 0.020564040169119835, 0.006744658574461937, 0.004574231803417206, -0.014136110432446003, -0.011088845320045948, 6.714860501233488e-05, -0.009735246188938618, -0.007001375313848257, 0.000753898115362972, 0.01725672371685505, -0.031659554690122604, -0.0013702692231163383, -0.01356266438961029, 0.005157679785043001, -0.0018286926206201315, 0.013309281319379807, -0.010402043350040913, 0.0009226812398992479, 0.01828359253704548, 0.02989920787513256, 0.016549918800592422, 0.030832724645733833, 0.0041074734181165695, -0.0002398387878201902, -0.005834479350596666, -0.005541088525205851, -0.0069947075098752975, 0.012662488035857677, -0.0022004323545843363, -0.016003143042325974, 0.005721123889088631, 0.0013227598974481225, -0.0003809081681538373, 0.004964308813214302, 0.002953913761302829, -0.006061190739274025, -0.01620318368077278, -0.0039807818830013275, 0.0014152780640870333, 0.0007609828608110547, -0.008408318273723125, -0.016309870406985283, -0.00010970904986606911, 9.257026977138594e-05, -0.03486018255352974, -0.01620318368077278, 0.014376157894730568, -0.03702060505747795, 0.00410080561414361, -0.00965522974729538, -0.0174700990319252, 0.017576785758137703, -0.01477623637765646, 0.01777682639658451, 0.002725535538047552, 0.011595611460506916, -0.02057737670838833, 0.011695630848407745, 0.0034073360729962587, 0.006187882274389267, -0.005144344177097082, 0.006704650353640318, 0.0069947075098752975, 0.01154226716607809, 0.0031856258865445852, -0.017643466591835022, -0.022204361855983734, -0.015002947300672531, -0.03283311799168587, 0.0007609828608110547, -0.0057411277666687965, 0.006157876458019018, -0.013636012561619282, -0.027952158823609352, -0.020297320559620857, 0.0067413244396448135, -0.019430484622716904, -0.0196571946144104, 0.016083160415291786, -0.022657785564661026, 0.0003690308367367834, 4.141438694205135e-05, -0.014336150139570236, -0.029125722125172615, -0.005401060916483402, -0.009028440341353416, -0.0005409396253526211, -0.0010110319126397371, 0.006808004342019558, -0.004517554305493832, -0.0008693374693393707, -0.031286146491765976, 0.015269666910171509, 0.0016819970915094018, -0.009648562408983707, -0.003700727131217718, -0.027792125940322876, 0.0015336346114054322, -0.011535599827766418, -0.014549525454640388, 0.03112611547112465, -0.005047658458352089, -0.0028638960793614388, 0.025231624022126198, 0.005894491448998451, -0.024164747446775436, 0.0016128168208524585, 0.01622985489666462, -0.03037930093705654, 0.011102180927991867, 0.0107554467394948, -0.010815458372235298, -0.0018837034003809094, 0.014722892083227634, -0.028645627200603485, -0.021630916744470596, -0.01082212571054697, -0.0019453822169452906, 0.0059178294613957405, -0.003910768311470747, 0.001957051223143935, 0.002013728953897953, 0.008434990420937538, 0.007094727363437414, 0.006874683778733015, -0.0043675247579813, -0.011482255533337593, 0.0013986080884933472, -0.01350932102650404, -0.02335125394165516, 0.0011443914845585823, -0.057611316442489624, -0.006444599479436874, 0.018883710727095604, 0.014309477992355824, 0.0013986080884933472, -0.002465484431013465, 0.010642090812325478, -0.010508731007575989, 0.0049809785559773445, 0.0007809867383912206, 0.007608161307871342, -0.03256639838218689, 0.0009701906237751245, -0.009375175461173058, -0.010815458372235298, -0.001192734343931079, 0.024084731936454773, 0.023244567215442657, 0.02688528224825859, -0.010328696109354496, 0.021390868350863457, -0.005010984372347593, -0.016123168170452118, 0.02507159300148487, 0.021870963275432587, 0.012229069136083126, 0.02048402465879917, 0.0015494710532948375, 0.01294254232198, -0.003784076776355505, -0.029125722125172615, 0.006707984488457441, 0.0027688771951943636, -0.004860954824835062, 0.012795846909284592, 0.02287115901708603, -0.008941756561398506, -0.017830168828368187, 0.009621890261769295, -1.4495035429717973e-05, -0.023537958040833473, 0.007508141919970512, 0.017523443326354027, 0.01549637783318758, 0.0027572084218263626, 0.010402043350040913, 0.012529128231108189, -0.02571171708405018, 0.004650913644582033, -0.006157876458019018, 0.00020837427291553468, 0.012895867228507996, 0.01743009127676487, -0.00922848004847765, 0.005264367442578077, 0.013909399509429932, -0.019990593194961548, 0.02191097103059292, -0.01753677800297737, 0.004344186745584011, -0.010128656402230263, -0.0016111498698592186, -0.009128459729254246, 0.022751135751605034, 0.0056144362315535545, 0.001021867385134101, 0.013736031949520111, 0.028672300279140472, -0.003540695644915104, -0.004150815308094025, -0.008601689711213112, -0.007834872230887413, 0.009808593429625034, -0.024684850126504898, -0.00010538529022596776, -0.011622283607721329, 0.01931045949459076, -0.00015503045869991183, 0.012549132108688354, -0.0036807230208069086, -0.000938517739996314, -0.009201807901263237, 0.012389100156724453, 0.0008226616191677749, -0.010128656402230263, 0.012969214469194412, 0.0003852840163744986, -0.0017836837796494365, -0.012269076891243458, -0.008268291130661964, 0.0017045015702024102, 0.015403025783598423, -0.014016087166965008, -0.00655795494094491, 0.002880565822124481, -0.011582275852560997, 0.021497556939721107, -0.0037974126171320677, -0.014882924035191536, 0.034326743334531784, 0.008121595717966557, 0.0039674462750554085, 0.027111992239952087, -0.012469116598367691, 0.0028138861525803804, 0.003630713326856494, -0.013129246421158314, 0.02191097103059292, -0.03173957020044327, 0.0018737014615908265, 0.0027172004338353872, -0.00811492744833231, 0.007334774360060692, 0.0039274380542337894, 0.010722106322646141, 0.01880369335412979, -0.0011093845823779702, 0.010708770714700222, -0.005050992127507925, -0.019163765013217926, -0.018430287018418312, 0.0060045127756893635, 0.004524222109466791, 0.0031222801189869642, -0.009268487803637981, 0.019870569929480553, -0.014029422774910927, 0.004530889913439751, -0.024218091741204262, 0.002357129706069827, -0.014856251887977123, 0.021110814064741135, -0.007001375313848257, -0.008881744928658009, -0.031072771176695824, 0.030485989525914192, 0.003790744813159108, -0.003440676024183631, 0.0010643757414072752, 0.005401060916483402, 0.001842028577812016, 0.0005851149326190352, 0.007381449919193983, -0.004840950947254896, -0.004357522819191217, 0.00647127116099, 0.01677662879228592, 0.0012310751480981708, 0.012442444451153278, 0.009395179338753223, 0.002207100158557296, -0.01428280584514141, -0.01804354414343834, 0.00784154050052166, 0.00047092585009522736, 0.007268094457685947, -0.013909399509429932, -0.0017203380120918155, -0.039367735385894775, -0.0013227598974481225, 0.015976471826434135, -0.0031139450147747993, 0.008228283375501633, -0.001626152778044343, -0.018296927213668823, -0.009955288842320442, -0.0012127382215112448, -0.00227378006093204, -0.016416558995842934, 0.02335125394165516, 0.020537368953227997, 0.0002723451761994511, -0.0044108666479587555, -0.002898902865126729, 0.022897832095623016, -0.00018816196825355291, 0.03016592562198639, 0.016483237966895103, 0.01446950901299715, 0.006147874519228935, -0.0002700530458241701, -0.010655426420271397, -0.0037240649107843637, -0.005304375197738409, -0.00866170134395361, 0.015296338126063347, -0.013269273564219475, 0.01392273511737585, -0.006597962696105242, -0.000826412346214056, 0.013075902126729488, 0.00938184279948473, -0.0036907249595969915, 0.016256527975201607, 0.007234754506498575, 0.0012002357980236411, 0.01849696785211563, 0.021924307569861412, 0.013989415019750595, -0.025605030357837677, -0.006641304586082697, 0.009515202604234219, -0.02695196121931076, -0.006661308463662863, 0.005317711271345615, -0.02749873511493206, 0.007874879986047745, -0.017403418198227882, -0.007488137576729059, 0.02157757245004177, 0.010388707742094994, 0.006954699754714966, 0.004394196439534426, -0.022244369611144066, 0.023818012326955795, 0.007128066848963499, 0.024298107251524925, -0.0010785452323034406, -0.010655426420271397, 0.0026338507886976004, 0.004324182868003845, -0.01581644080579281, -0.009748581796884537, -0.011728971265256405, -0.020630719140172005, -0.0008009906741790473, 0.006591294892132282, -0.023737996816635132, 0.010748778469860554, -0.0006988872773945332, -0.011122184805572033, 0.008881744928658009, -0.0025321641005575657, 0.01058207917958498, 0.011628950946033001, 0.013082570396363735, 0.007768192794173956, 6.829467019997537e-05, -0.006381253711879253, 0.0029489125590771437, -0.03920770436525345, 0.027898814529180527, 0.002130418550223112, 0.008248287253081799, -0.01948382705450058, 0.008621693588793278, 0.0039274380542337894, 0.00041987415170297027, -0.005287705454975367, -0.01664326898753643, 0.008314967155456543, -0.0006076193531043828, -0.00828829500824213, 0.005237695761024952, -0.009268487803637981, -0.003937439993023872, 0.02476486563682556, 0.016656605526804924, -0.019577179104089737, 0.017216715961694717, -0.01688331738114357, 0.0048009431920945644, 0.012729167006909847, -0.008208279497921467, -0.0062979040667414665, 0.006854679901152849, -0.008555013686418533, -0.007681509014219046, -0.009841933846473694, 0.0138693917542696, -0.0012052367674186826, 0.020750742405653, 0.0065612890757620335, 0.001977055100724101, 0.010542071424424648, 0.007328106556087732, -0.01959051564335823, 0.006511279381811619, 0.01917710155248642, 0.009035108610987663, 0.02044401690363884, 0.004627575632184744, -0.0003921603783965111, -0.004394196439534426, -0.00529103958979249, -0.005257699638605118, -2.8390993975335732e-05, 0.01598980836570263, 0.012822519056499004, -0.00794155988842249, -0.014349485747516155, -0.007734852842986584, 0.0003448594070505351, -0.0017553447978571057, 0.0008522507851012051, 0.0015878119738772511, -0.012509124353528023, 0.010075313039124012, -0.0075748213566839695, -0.028272220864892006, -0.006277900189161301, 0.011088845320045948, -0.021990986540913582, 0.0247915368527174, -0.008721713908016682, 0.0005830312147736549, 0.0020270647946745157, -0.013129246421158314, 0.0011052171466872096, -0.02013728953897953, -0.009568546898663044, -0.019030405208468437, 0.012622479349374771, 0.006914691999554634, 0.00015284252003766596, -0.0002802633971441537, 0.0024721522349864244, 0.013629344291985035, 0.014016087166965008, -0.02437812276184559, 0.015056291595101357, -0.002805551281198859, -0.009088451974093914, -0.005381057038903236, -0.0030222604982554913, 0.00711473124101758, -0.01193567831069231, 0.002410473534837365, 0.010975489392876625, 0.009341835044324398, -0.0019187103025615215, -0.005494412966072559, -0.024578161537647247, -0.00028130525606684387, -0.006161210592836142, -0.029125722125172615, 0.0059811752289533615, -0.011628950946033001, -0.0032906464766710997, 0.00047634358634240925, 0.008481666445732117, 0.006621300708502531, -0.009135127998888493, -0.0025338311679661274, -0.010875470004975796, -0.012535796500742435, -0.02400471642613411, -0.00041112242615781724, -0.008555013686418533, -0.014189454726874828, -0.010295355692505836, -0.001778682810254395, -0.008341638371348381, -0.006294569931924343, -0.020830759778618813, 0.0021004127338528633, 0.004534224048256874, -0.013682687655091286, -0.01238243281841278, 0.006704650353640318, -0.00400745403021574, 0.0057411277666687965, 0.011742306873202324, 0.014096102677285671, 0.004447540268301964, -0.015843112021684647, -0.009275155141949654, -0.011602279730141163, 0.011135521344840527, -0.0024971573147922754, 0.0016586591955274343, -0.007954896427690983, -0.022284377366304398, -0.000501348520629108, -0.0068246740847826, 0.021310852840542793, 0.01815023273229599, -0.016189847141504288, 0.029339097440242767, -0.0017503438284620643, 0.014149446040391922, 0.00465758191421628, -0.015763096511363983, -0.011775646358728409, -0.023737996816635132, -0.0008768389234319329, -0.018470294773578644, -0.0076881772838532925, -0.022511089220643044, -0.026978634297847748, 0.002818887121975422, 0.017283394932746887, -0.001327760866843164, -0.0005871987086720765, -0.00955521035939455, -0.004010788165032864, 0.01018866803497076, 0.0052977073937654495, 0.007414789870381355, -0.013449308462440968, 0.001327760866843164, -0.0215108934789896, -0.005654443986713886, -0.0066779786720871925, 0.005077664274722338, -0.02845892496407032, 0.003547363681718707, 0.0057377940975129604, 0.013609340414404869, 0.01657659001648426, -0.0184569600969553, -0.0033573261462152004, 0.003857424482703209, 0.023137878626585007, -0.0032673084642738104, 0.003042264375835657, 0.011482255533337593, 0.009575214236974716, 0.014016087166965008, -0.016856644302606583, -0.00319729489274323, -0.018003536388278008, 0.00428084097802639, -0.008941756561398506, 0.025458334013819695, -0.005584430415183306, -0.002855560975149274, -0.007954896427690983, -0.015603065490722656, 0.010748778469860554, -0.0008026576833799481, 0.003910768311470747, -0.001173563883639872, 0.017096692696213722, 0.005127673968672752, -0.0191104207187891, 0.004910964984446764, 0.004387528635561466, 0.021417541429400444, 0.006187882274389267, -0.044942162930965424, 0.0076881772838532925, -0.0033539922442287207, 0.011322224512696266, -0.0016486572567373514, -0.0012002357980236411, 0.00922848004847765, -0.014869587495923042, 0.027925485745072365, -0.007434793747961521, -0.009341835044324398, 0.014496181160211563, -0.01699000410735607, -0.0011277215089648962, -0.017070019617676735, -0.012155720964074135, 0.012829187326133251, -0.009261819534003735, -0.01640322245657444, -0.023858020082116127, -0.009515202604234219, -0.0022821149323135614, -0.005821143742650747, 0.0002948495966847986, 0.012195729650557041, 0.007034715265035629, -0.001697833533398807, 0.003342323238030076, 0.02061738446354866, -0.024884888902306557, 0.0011535600060597062, 0.00501765264198184, -0.0005626105121336877, -0.024431467056274414, -1.8779730453388765e-05, 0.0016753291711211205, 0.008601689711213112, -0.004087469540536404, 0.006691314745694399, 0.010268684476613998, -0.009755250066518784, -0.017403418198227882, 0.0028222210239619017, -0.008555013686418533, -0.002340459730476141, 0.0035907053388655186, -0.0025771730579435825, -0.023417934775352478, -0.00011137604451505467, -0.011615615338087082, -0.004840950947254896, 0.007781528867781162, -0.0029405776876956224, 0.015109634958207607, -0.01302922610193491, -0.027658767998218536, 0.017523443326354027, 0.0037874106783419847, -0.013102574273943901, 0.02033732831478119, -0.0019353802781552076, -0.0007943226955831051, 0.018536975607275963, -0.002583840861916542, -0.015162979252636433, -0.033366553485393524, 0.010228675790131092, -0.013322616927325726, -0.006367917638272047, 0.012822519056499004, -0.00026859442004933953, -0.006597962696105242, -0.017923520877957344, -0.008548346348106861, 0.0061845481395721436, -0.025084927678108215, 0.010141992941498756, 0.016616597771644592, -0.017576785758137703, -0.002482154406607151, 0.019403811544179916, -0.025911757722496986, 0.028485596179962158, 0.01749677024781704, 0.004744265228509903, 0.0010126989800482988, 0.005967839155346155, 0.006321242079138756, -0.002365464810281992, 0.014042758382856846, 0.014482845552265644, -0.027031976729631424, -0.011909006163477898, 0.012575804255902767, -0.0013385963393375278, 0.0060678585432469845, 0.0196571946144104, 0.016043152660131454, -0.013896062970161438, -0.0013427637750282884, -0.006087862886488438, -0.0003790328046306968, 0.009408514946699142, -0.013789375312626362, 0.008488334715366364, 0.010195336304605007, 0.0022921168711036444, -0.005644442047923803, -0.01598980836570263, 0.003460679901763797, -0.00314561789855361, -0.013682687655091286, 0.0184569600969553, -0.008621693588793278, -0.0034740157425403595, 0.014482845552265644, -0.008134931325912476, 0.003450677962973714, 0.025471670553088188, 0.026738585904240608, 0.007761524990200996, -0.005974506959319115, -0.01301589049398899, -0.035980403423309326, 0.006757994182407856, -0.022857824340462685, 0.0038974322378635406, -0.0006042853929102421, 0.0038440886419266462, 0.01743009127676487, 0.005461073014885187, -0.006317907944321632, 0.006231224164366722, -0.009661898016929626, -0.0015461370348930359, 0.023844685405492783, -0.011995689943432808, 0.008441658690571785, 0.004394196439534426, -0.016909988597035408, 0.02301785536110401, 0.004140813369303942, 0.012342425063252449, -0.007881548255681992, -0.005080998409539461, 0.013629344291985035, 0.00974191352725029, 0.00628456799313426, -0.015122971497476101, -0.02513827197253704, -0.0030472653452306986, 0.003684057155624032, 0.017096692696213722, 0.013355957344174385, -0.010382039472460747, 0.02544499933719635, 0.005407729186117649, 0.008621693588793278, 0.009268487803637981, -0.01598980836570263, -0.010348699986934662, 0.006024517118930817, -0.01869700662791729, -0.003667387180030346, -0.00902177207171917, 0.004177487455308437, 0.01979055441915989, 0.041048064827919006, -0.008141599595546722, 0.015803104266524315, -0.004090803675353527, 0.009721909649670124, 0.007361446041613817, -0.01040871161967516, 0.0006155375740490854, 0.01815023273229599, 0.0019587180577218533, -0.0022321052383631468, 0.001274417038075626, 0.0029405776876956224, 0.018336934968829155, 0.02653854712843895, 0.002220436232164502, 0.019697202369570732, -0.01883036643266678, 0.0022521091159433126, -0.00965522974729538, 0.003088940167799592, -0.015549721196293831, 0.018616991117596626, -0.0029305757489055395, -0.01852363906800747, -0.0028322231955826283, 0.014496181160211563, 0.002500491216778755, 0.0029322428163141012, 0.012235737405717373, 0.0009510201634839177, -0.03811415284872055, 0.009075116366147995, 0.010708770714700222, 0.01003530528396368, 0.01787017658352852, 0.03075270913541317, 0.005747796036303043, 0.010502063669264317, 0.0029005699325352907, -0.008081587962806225, -0.006647972855716944, -0.014669548720121384, 0.0220576673746109, 0.007508141919970512, 0.007888216525316238, 0.00828829500824213, 0.006137872580438852, 0.006094530690461397, 0.01302922610193491, 0.00013065066013950855, 0.013989415019750595, 0.0066146329045295715, -0.014842916280031204, -0.003764072898775339, -0.007721516769379377, 0.017443427816033363, -0.010095316916704178, 0.023471277207136154, 0.015963135287165642, 0.0007184745045378804, -0.002608845941722393, 0.002682193648070097, -0.019563842564821243, 0.021524228155612946, -0.00974191352725029, 0.00355736562050879, 0.006431263405829668, -0.0027172004338353872, 0.010895473882555962, 0.00483761727809906, 0.028485596179962158, 0.017883513122797012, 0.02085743099451065, -0.011862330138683319, 0.01767013780772686, 0.011548935435712337, 0.02513827197253704, -0.03235302120447159, 0.016149839386343956, -0.014576196670532227, -0.008601689711213112, 0.006031184922903776, -0.015829777345061302, 0.013629344291985035, -0.010788786225020885, -0.003032262437045574, -0.016696613281965256, 0.012282413430511951, -0.0473959781229496, 0.0031039430759847164, -0.0058144754730165005, 0.015843112021684647, -0.022244369611144066, 0.016283199191093445, -0.004070799797773361, 0.0007868212414905429, -0.00929515901952982, 0.01767013780772686, 0.02448480948805809, -0.00994862150400877, 0.013776039704680443, -0.020764078944921494, -0.0035006876569241285, 0.024431467056274414, 0.011002161540091038, -0.009515202604234219, 0.004847619216889143, -0.00019410063396207988, 0.02103079855442047, -0.005464406684041023, 0.0019737211987376213, -0.020964117720723152, 0.02208433859050274, 0.008448326028883457, -5.206752030062489e-05, -0.005284371320158243, -0.007168075069785118, -0.01719004288315773, 0.008788392879068851, -0.006157876458019018, -0.0012035698164254427, -0.005724458023905754, 0.028192205354571342, 0.005697785876691341, 0.017270060256123543, 0.009921949356794357, -0.012142385356128216, -0.01032202783972025, -0.016136502847075462, -0.005461073014885187, -0.024164747446775436, 0.003567367559298873, -0.03064602054655552, 0.01176231075078249, 0.012742503546178341, 0.022164354100823402, 0.013195925392210484, -0.013542660512030125, 0.0022020991891622543, -0.015162979252636433, -0.03664720058441162, -0.006294569931924343, 0.024538153782486916, -0.013155917637050152, -0.0069413636811077595, 0.004150815308094025, 0.03859424963593483, 0.0002346294349990785, 0.0020920776296406984, 0.0012694160686805844, -0.029099050909280777, -0.007668172940611839, 0.010435383766889572, 0.014842916280031204, -0.004407532513141632, 0.0196571946144104, 0.010415379889309406, 0.03277977183461189, -0.01258247159421444, -0.0014986277092248201, -0.00547107495367527, -0.007948228158056736, 0.012215733528137207, -0.002625515917316079, 0.001878702430985868, -0.016869980841875076, 0.019883906468749046, 0.009241815656423569, 0.0014302809722721577, -0.02835223637521267, 0.006087862886488438, 0.0051176720298826694, -0.02284448780119419, -0.02055070362985134, -0.00191537628415972, 0.003874094458296895, 0.016349878162145615, -0.00968857016414404, -0.0030856062658131123, 0.01749677024781704, -0.019150428473949432, 0.0012427441542968154, 0.03651383891701698, 0.026805266737937927, 0.010402043350040913, -0.011922342702746391, -0.006414593663066626, -0.015242994762957096, -0.004497550427913666, 0.00025880083558149636, -0.015056291595101357, 0.011048837564885616, -0.010055309161543846, -0.031019426882267, -0.01708335615694523, -0.011195532977581024, -0.01937714032828808, -0.013776039704680443, -0.0035373615100979805, 0.028165534138679504, -0.0005838646902702749, 0.004394196439534426, 0.01238243281841278, 0.023191222921013832, -0.016483237966895103, 0.013349289074540138, 0.013369292952120304, 0.011442247778177261, -0.012709163129329681, -0.008961760438978672, 2.953705370600801e-05, -0.018243584781885147, -0.014696220867335796, 0.017723482102155685, -0.005267701577395201, -0.006787999998778105, -0.02181761898100376, 0.0007484803791157901, -0.04531557112932205, 0.023444605991244316, -0.013222597539424896, -0.0019187103025615215, -0.017710145562887192, -0.009615221992135048, -0.012255741283297539, -0.008041580207645893, -0.006001179106533527, -0.003630713326856494, 0.023257901892066002, -0.0034273399505764246, 0.0028872338589280844, 0.0039907838217914104, -0.027818799018859863, 0.0008551679784432054, 0.0003171456337440759, 0.01633654348552227, -0.001147725502960384, -0.002195431385189295, -0.023617973551154137, 0.01342263724654913, 0.027685439214110374, 0.00878172554075718, 0.0014294474385678768, 0.01657659001648426, 0.004254169296473265, -0.026085125282406807, 0.001788684749044478, 0.010482058860361576, -0.03414003923535347, -0.006834676023572683, -0.006661308463662863, 0.0010843797354027629, -0.007408122066408396, 0.026378516107797623, 0.005621104501187801, 0.018750350922346115, -0.023431269451975822, 0.0014419499784708023, -0.0013035894371569157, -0.010115320794284344, 0.0011252210242673755, -0.02003060095012188, 0.006461269222199917, -0.021550901234149933, 0.03040597401559353, -0.010662094689905643, -0.008615026250481606, 0.009101788513362408, 0.019230443984270096, -0.004867623094469309, -0.0011052171466872096, -0.001264415099285543, 0.013856055215001106, 0.001509463181719184, -0.01518965046852827, -0.007728185039013624, 0.0004177904047537595, -0.004940970800817013, 0.022204361855983734, 0.005237695761024952, 0.009935284964740276, 0.010428715497255325, 0.005894491448998451, 0.0027438723482191563, 5.428149597719312e-05, -0.002122083678841591, -0.018723677843809128, 0.022937839850783348, -0.011862330138683319, 0.010948817245662212, -0.012575804255902767, -0.02568504586815834, 0.00828829500824213, -0.025805069133639336, -0.003007257357239723, -0.012915871106088161, 0.01320259366184473, -0.007974900305271149, 0.011068841442465782, -0.01688331738114357, 0.00610453262925148, 0.021070806309580803, -0.018643662333488464, -0.013222597539424896, 0.025591693818569183, 0.006327909883111715, -0.00850833859294653, 0.012862526811659336, -0.001065209275111556, 0.004380860831588507, -0.020323993638157845, 0.014136110432446003, 0.007614829111844301, -0.009548543021082878, 0.0064345975406467915, 0.014989611692726612, 0.004997648298740387, -0.010215340182185173, 0.0118489945307374, 0.030059238895773888, 0.01719004288315773, -0.013682687655091286, 0.0325397253036499, 0.013362625613808632, 0.015829777345061302, 0.0048642889596521854, -0.00919513963162899, -0.020430680364370346, 0.00241880863904953, 0.006671310402452946, 0.024298107251524925, -0.0034340079873800278, -0.002013728953897953, 0.01705668494105339, 0.008961760438978672, 0.0077015128917992115, 0.0008768389234319329, 0.017350075766444206, -0.008715045638382435, -0.011842326261103153, -0.03051266074180603, 0.008314967155456543, 0.011228872463107109, -0.023031191900372505, -0.039154358208179474, 0.0029939215164631605, 0.005414396990090609, 0.009055112488567829, 0.028138861060142517, -0.011468919925391674, -0.02109747752547264, -0.0061845481395721436, -0.008168271742761135, -0.022071002051234245, -0.0009810260962694883, -0.011989021673798561, 0.01285585854202509, 0.006841343827545643, -0.004354188684374094, -0.003360660281032324, 0.027578750625252724, 0.009155131876468658, 0.005067662335932255, -0.006981371436268091, -0.025418326258659363, -0.00738811818882823, 0.014976275153458118, 0.01022200845181942, -0.012315752916038036, 0.004430870525538921, -0.0037874106783419847, 0.007981567643582821, 0.007848208770155907, 0.016189847141504288, -0.0010693767108023167, 0.005057660397142172, 0.008061584085226059, -0.006064524874091148, -0.01787017658352852, 0.001409443560987711, -0.001797019736841321, -0.005407729186117649, -0.021977651864290237, -0.016696613281965256, 0.0023604638408869505, -0.015469705685973167, 0.0030922740697860718, 0.014496181160211563, 0.0008055749349296093, -0.0045275562442839146, -0.0076881772838532925, -0.0029389106202870607, -0.0325397253036499, 0.005697785876691341, -0.020964117720723152, -0.0039274380542337894, 0.013469313271343708, 0.006637970916926861, -0.0031306149903684855, 0.009401846677064896, 0.018110224977135658, -0.007628165185451508, 0.0029472457244992256, 0.005584430415183306, 0.0007518143393099308, 0.0022004323545843363, 0.012049034237861633, 0.0016328208148479462, 0.0144161656498909, -0.0138693917542696, 0.005724458023905754, -0.009395179338753223, 0.004264171235263348, -0.013275941833853722, -0.002167092403396964, -0.023778004571795464, 0.012215733528137207, -0.0030489324126392603, -0.018910381942987442, 0.02968583256006241, -0.0045375581830739975, 0.01670994982123375, -0.01626986265182495, -0.0006622134242206812, 0.018576983362436295, -0.01338929682970047, -0.020150626078248024, -0.02304452657699585, 0.012882530689239502, -0.02561836689710617, -0.03656718507409096, 0.004530889913439751, 0.0067513263784348965, -0.0003692392201628536, -0.003974114079028368, -0.008081587962806225, 0.001273583504371345, 0.01494960393756628, -0.00893508829176426, -0.0013119244249537587, 0.006037852726876736, 0.017750153318047523, 0.002608845941722393, 0.026685241609811783, 0.014389493502676487, 0.008681705221533775, 0.00647127116099, -0.007948228158056736, 0.0019020403269678354, -0.010148660279810429, -0.007074723020195961, -0.013449308462440968, -0.02531163953244686, -0.002312120981514454, -0.003877428360283375, -0.009401846677064896, -0.0034540118649601936, -0.03136616200208664, 0.002790548140183091, 0.005701120011508465, -0.019203772768378258, 0.006981371436268091, 0.0014661214081570506, 0.003714062971994281, -0.00801490806043148, -0.009548543021082878, 0.025111600756645203, -0.004894294776022434, 0.036593854427337646, 0.01242910884320736, 0.016856644302606583, 0.007801532745361328, -0.01787017658352852, -0.01222240086644888, 0.006841343827545643, 0.0024338115472346544, 0.008241618983447552, -0.018843701109290123, 0.0009226812398992479, -0.012042365968227386, 0.003205629764124751, 0.013195925392210484, -0.00538439117372036, -0.008061584085226059, -0.0007572320755571127, 0.02441813051700592, 0.000735561188776046, 0.01405609492212534, -0.004757601302117109, -0.009015104733407497, 0.013229265809059143, 0.01251579262316227, 0.013409300707280636, 0.010948817245662212, 0.007954896427690983, -0.004610905889421701, 0.010542071424424648, -7.725475734332576e-05, 0.008008239790797234, 0.000939351215492934, -0.00856168195605278, 0.013909399509429932, -0.002120416611433029, 0.019190436229109764, -0.015536385588347912, 0.018403615802526474, 0.00373740098439157, -0.010302023962140083, 0.00919513963162899, -0.013535992242395878, -0.0054344008676707745, 0.01022200845181942, -0.01190233789384365, 0.006954699754714966, 0.0026421856600791216, 0.0047375974245369434, 0.004260837100446224, 0.016243191435933113, 0.016003143042325974, -0.011755642481148243, 0.018550310283899307, 0.004857621155679226, -0.03003256767988205, 0.0034273399505764246, 0.01104216929525137, -0.029125722125172615, -0.02739204838871956, 0.0019820560701191425, -0.023484613746404648, -0.01085546612739563, -0.004697589669376612, 0.02267112024128437, 0.0015886453911662102, 0.007994904182851315, -0.008855072781443596, 0.006794668268412352, 0.004744265228509903, -0.007854876108467579, 0.012455780059099197, -0.00810159184038639, 0.01917710155248642, -0.01203569769859314, -0.0033439903054386377, -0.0206440556794405, -0.034086696803569794, -0.017270060256123543, -0.013135913759469986, -0.01000196486711502, 0.009488530457019806, -0.007788196671754122, 0.01220906525850296, -0.001770347822457552, -0.01063542254269123, -0.0074814697727561, 0.0015144641511142254, -0.012109045870602131, 0.003684057155624032, -0.0020620718132704496, -0.008981764316558838, 0.008588354103267193, 0.023337917402386665, 0.017483435571193695, 0.014709556475281715, -0.011222205124795437, -0.01256913598626852, 0.01230908464640379, -0.004654247779399157, 0.014002750627696514, 0.019030405208468437, 0.0014827912673354149, -0.008334971033036709, -0.012949210591614246, 0.012722499668598175, 0.010362035594880581, -0.0065512871369719505, 0.01446950901299715, -0.0008901748806238174, -0.007014711387455463, 0.008741717785596848, 0.003520691767334938, -0.016083160415291786, -8.491251355735585e-05, -0.006231224164366722, 0.0009060113225132227, 0.005997844971716404, 0.011035501025617123, 0.016309870406985283, 0.0206440556794405, -0.0031639549415558577, -0.010262016206979752, 0.008628361858427525, 0.0034373418893665075, 0.007608161307871342, -0.00929515901952982, 0.0015219657216221094, 0.011015497148036957, -0.0077415211126208305, 0.017163371667265892, -0.00272720237262547, -0.00034694315399974585, 0.0010535402689129114, 0.0018553645350039005, 0.01203569769859314, 0.022551096975803375, 0.03904766961932182, -0.008341638371348381, 0.004257502965629101, -0.010155328549444675, 0.014936267398297787, 0.02387135662138462, 0.021790947765111923, -0.019337132573127747, 0.013009222224354744, 0.001987057039514184, 0.0043375189416110516, 0.01359600480645895, 0.006411259528249502, 0.00775485672056675, -0.004040793981403112, 0.01797686517238617, -0.0113022206351161, 0.019577179104089737, 0.0026571888010948896, 0.015869785100221634, 0.00023608804622199386, 0.020777415484189987, -0.01815023273229599, -0.00365071720443666, 0.0220576673746109, 0.0069413636811077595, 0.017550114542245865, 0.006854679901152849, 0.02016396075487137, -0.017283394932746887, -0.025178279727697372, 0.0191104207187891, 0.0010051975259557366, 0.02232438512146473, 0.016389885917305946, -0.03040597401559353, -0.005074330139905214, -0.016589926555752754, 0.005131008103489876, 0.009835265576839447, 0.009875273331999779, -0.007394785992801189, -0.004754267167299986, -0.0003465264162514359, 0.016176510602235794, 0.012082373723387718, -0.0003350658225826919, 0.012829187326133251, 0.004340852610766888, 0.006467937491834164, -0.007434793747961521, 0.023604637011885643, -0.02068406343460083, 0.018923718482255936, 0.011522263288497925, 0.026978634297847748, 9.449772915104404e-05, -0.0073214382864534855, -0.007641501259058714, -0.015149642713367939, -0.010121988132596016, -0.007554817479103804, 0.007648169063031673, -0.017096692696213722, -0.0003031845553778112, -0.001697833533398807, -0.00794155988842249, 0.014722892083227634], "23b7a614-0705-4541-905b-6ef766812a2a": [-0.025769105181097984, 0.0009549094247631729, -0.0011356361210346222, 0.015977920964360237, 0.020886963233351707, -0.03981030732393265, -0.01655624620616436, 0.03491471707820892, -0.05648760125041008, -0.029777035117149353, -0.009966026991605759, 0.03165995329618454, -0.00843951664865017, 0.0003837289987131953, -0.02461245469748974, 0.02784031629562378, -0.019811008125543594, 0.00804948341101408, 0.004636690486222506, -0.006381753832101822, 0.0015357566298916936, 0.0168252345174551, -0.05847811698913574, 0.032359324395656586, 0.023173365741968155, 0.008378993719816208, 0.011095778085291386, 0.02396688237786293, -0.018573660403490067, 0.02406102791428566, 0.036044467240571976, -0.005396583117544651, 0.011048705317080021, 0.0423119030892849, 0.03389256075024605, -0.008621083572506905, 0.013462877832353115, -0.000342540122801438, 0.02778651937842369, -0.0021149227395653725, -0.036770738661289215, 0.013799113221466541, 0.010443481616675854, -0.0018577022710815072, -0.03806188330054283, -0.04435621574521065, 0.012797131203114986, 0.03217103332281113, -0.0022477356251329184, -0.03521060571074486, -0.01537269726395607, -0.025271475315093994, 0.03588307648897171, 0.03206343576312065, 0.012286053039133549, -0.01764564961194992, 0.0025116808246821165, 0.006193461827933788, 0.00034001836320385337, -0.03744320943951607, 0.016852134838700294, -0.010719194076955318, -0.02591704949736595, -0.025459768250584602, -0.03305869549512863, -0.005853863898664713, 0.02851278893649578, 0.022137759253382683, -0.08903522044420242, 9.53543494688347e-05, 0.00345650315284729, 0.05116162449121475, 0.0017501069232821465, 0.04467900097370148, 0.004478659480810165, 0.01615276373922825, 0.008231050334870815, -0.02492179162800312, -0.012971973977982998, 0.016542797908186913, 0.02392653375864029, 0.001619815593585372, 0.05008567124605179, -0.033220089972019196, 0.03246692195534706, 0.04158563166856766, -0.0008969087502919137, -0.0232002642005682, -0.04508248344063759, -0.04906351491808891, 0.02864728309214115, 0.021707378327846527, -0.014794371090829372, 0.029346652328968048, 0.004814895335584879, 0.009064914658665657, 0.012003614567220211, 0.019770659506320953, 0.006973528768867254, 0.020712120458483696, -0.032493818551301956, 0.002259504050016403, 0.006691090762615204, 0.057563554495573044, -0.010846964083611965, 0.0003660766233224422, 0.006855846382677555, -0.007545129396021366, -0.03260141611099243, 0.012682811357080936, -0.010120694525539875, -0.059607867151498795, -0.02675091288983822, 0.03935302793979645, -0.017443908378481865, 0.0018745141569525003, 0.00995930191129446, 0.01412190031260252, -0.025984296575188637, -0.02765202522277832, 0.027867216616868973, 0.024047577753663063, -0.030906787142157555, -0.018667805939912796, -0.038492266088724136, -0.010638497769832611, 0.021048355847597122, 0.0013045945670455694, 0.013469602912664413, -0.01810293085873127, 0.029642540961503983, 0.017484256997704506, 0.01087386254221201, 2.6163341317442246e-05, 0.01128407008945942, -0.017215268686413765, 0.019864805042743683, 0.03784669190645218, -0.024572106078267097, 0.01241382211446762, -0.07574718445539474, -0.0034968513064086437, 0.008069656789302826, 0.022043613716959953, 0.0003862507874146104, -0.002706697443500161, 0.0033556323032826185, 0.007625826168805361, -0.002854641294106841, 0.002373824128881097, -0.02923905849456787, -0.04857933521270752, 0.010806615464389324, 0.011822047643363476, 0.03451123461127281, -0.006862570997327566, -0.015991371124982834, 0.02519077993929386, 0.028055507689714432, 0.0037692023906856775, 0.0008758940384723246, -0.040186893194913864, 0.012373474426567554, -0.007921713404357433, 0.005833689589053392, 0.016112415120005608, 0.0154668428003788, 0.04333405941724777, -0.016260359436273575, 0.021263547241687775, 0.05858571082353592, -0.02778651937842369, -0.0015861919382587075, 0.0482296496629715, -0.01869470626115799, 0.012898001819849014, 0.013987405225634575, 0.04346855357289314, 0.008271398954093456, -0.02915836125612259, -0.00902456697076559, -0.009475122205913067, 0.004229845479130745, 0.026038093492388725, -0.035452693700790405, 0.012252429500222206, 0.011983441188931465, 0.005063709802925587, 0.026670217514038086, -0.005911023821681738, 0.00607241690158844, 0.00786791555583477, -0.03669004142284393, 0.04007929563522339, -0.01164048071950674, 0.005904299207031727, 0.0056353104300796986, -0.02146528847515583, -0.03556028753519058, 0.053824614733457565, 0.018936796113848686, -0.05339423194527626, -0.029938427731394768, 0.0016761349979788065, -0.03607136756181717, -0.0043206289410591125, -0.02597084641456604, 0.011337867937982082, 0.0038566235452890396, -0.012427272275090218, 0.03609826788306236, -0.048875223845243454, 0.016892481595277786, 0.004323991481214762, -0.01560133695602417, -0.011364767327904701, -0.0017601939616724849, 0.030099820345640182, 0.028674181550741196, -0.03599067032337189, 0.0268316101282835, 0.0154668428003788, -0.00923303235322237, -0.0006043837056495249, -0.055465444922447205, -0.010651946999132633, 0.01938062720000744, 0.01878885179758072, -0.05304454639554024, -0.008715230040252209, 0.021774625405669212, 0.0012348257005214691, -0.043549250811338425, -0.006758337840437889, -0.02278333157300949, 0.03171375393867493, 0.022393299266695976, -0.023052319884300232, 0.011546334251761436, 0.024262769147753716, -0.005386495962738991, -0.00401465455070138, 0.04037518426775932, -0.012702985666692257, -0.010033274069428444, -0.01691938191652298, 0.022070512175559998, 0.0006993702845647931, 0.01550719141960144, 0.00928010605275631, 0.0021855321247130632, -0.01960926689207554, -0.017954986542463303, -0.022447096183896065, -0.08053518086671829, 0.010430031456053257, 0.025029387325048447, -0.001439929474145174, -0.000514440645929426, -0.010308986529707909, 0.007767044939100742, 0.03448433429002762, 0.012978698126971722, 0.00993912760168314, 0.018492965027689934, -0.01905784010887146, 0.0241013765335083, -0.04847174137830734, 0.03862676024436951, -0.013651169836521149, -0.03257451578974724, 0.03660934418439865, 0.021626681089401245, 0.024760397151112556, 0.024047577753663063, 0.018977142870426178, 0.012924901209771633, -0.052425872534513474, 0.000100660567113664, 0.001951848273165524, -0.03647485002875328, -0.004172685090452433, 0.015117157250642776, 0.02324061281979084, -0.003135398030281067, -0.01814327947795391, -0.03903024271130562, -0.030234314501285553, -0.036394152790308, -0.03131026774644852, -0.006899556610733271, -0.011822047643363476, 0.035049211233854294, 0.0067314389161765575, -0.0007561100646853447, 0.033354584127664566, -0.059285081923007965, 0.029669439420104027, -0.008130179718136787, 0.0518609955906868, -0.0482296496629715, -0.031175775453448296, 0.016973178833723068, -0.021841872483491898, 0.033085595816373825, -0.015803078189492226, 0.03843846544623375, -0.016986628994345665, -0.040133096277713776, 0.031902045011520386, 0.009428049437701702, -0.011532885022461414, -0.0377659946680069, -0.053690116852521896, 0.015049910172820091, 0.015668584033846855, 0.011384941637516022, 0.0034800395369529724, -0.012252429500222206, -0.0005779051571153104, 0.023549949750304222, 0.03179444745182991, -0.030180517584085464, 0.012319676578044891, 0.02215120941400528, -0.04080556705594063, 0.006449000909924507, -0.014982663094997406, -0.0028764966409653425, -0.018842648714780807, -0.0482296496629715, -0.006533059757202864, -0.0418546199798584, 0.008331920951604843, -0.042096711695194244, -0.02028173767030239, 0.0004972085589542985, -0.04543216899037361, -0.006475899834185839, -0.003970943856984377, -0.010134144686162472, -0.01669074036180973, -0.024491408839821815, -0.02178807370364666, 0.028485890477895737, 0.009098538197577, -0.0193268284201622, 0.009623066522181034, -0.019447874277830124, 0.02314646728336811, 0.0009120393660850823, 0.014081551693379879, 0.016072066500782967, 0.004972926340997219, 0.017860841006040573, -0.040509678423404694, 0.0015139012830331922, -0.0005716006853617728, -0.006549871526658535, -0.03265521302819252, -0.02188222110271454, -0.0008784158271737397, -0.04537837207317352, -0.02732923813164234, -0.006132939364761114, -0.0010583018884062767, 0.016852134838700294, 0.0001018689144984819, -0.020860062912106514, -0.04279608279466629, 0.0025251302868127823, 0.01121009886264801, 0.0254732184112072, 0.02237984910607338, -0.002325069857761264, -0.011479087173938751, -0.006018619053065777, -0.015439944341778755, -0.059016093611717224, 0.010954559780657291, -0.019985850900411606, -0.0029084389097988605, -0.012682811357080936, -0.014821270480751991, 0.03494161367416382, 0.01751115545630455, -0.013140091672539711, 0.0024511583615094423, 0.03612516447901726, 0.02459900453686714, -0.0059379227459430695, 0.02633398026227951, 0.006670916453003883, -0.012198631651699543, -0.014834719710052013, -0.009676863439381123, -0.01396050676703453, -0.016811786219477654, 0.0193268284201622, -0.040455881506204605, 0.03289730101823807, 0.03494161367416382, -0.02742338553071022, 0.002410809975117445, 0.0065767704509198666, -0.021317344158887863, -0.05043535679578781, -0.0032682111486792564, 0.002130053238943219, 0.03265521302819252, -0.005040173418819904, 0.007148371078073978, -0.010705744847655296, 0.011761525645852089, 0.051645804196596146, 0.018385369330644608, -0.0060825040563941, 0.024182071909308434, -0.0381963774561882, 0.0011684191413223743, 0.05495436489582062, 0.028324496001005173, 0.01339563075453043, 0.00997947622090578, 0.02646847441792488, 0.02365754544734955, -0.00913888681679964, 0.02961564250290394, 0.03843846544623375, -0.05393220856785774, 0.012319676578044891, 0.05024706572294235, 0.00859418511390686, -0.028539687395095825, 0.016045168042182922, -0.003950769547373056, 0.01270970981568098, 0.028539687395095825, 0.01289127767086029, -0.026777811348438263, -0.03289730101823807, 0.008775752037763596, 0.005480641964823008, 0.030530203133821487, -0.016569696366786957, -0.012003614567220211, -0.03475332260131836, -0.02438381314277649, -0.0067314389161765575, 0.024182071909308434, 0.029185259714722633, 0.0047913589514791965, -0.01997240073978901, -0.02423587068915367, 0.0177397970110178, 0.03028811328113079, 0.013866361230611801, -0.014404337853193283, -0.025271475315093994, -0.06665536761283875, -0.03421534597873688, -0.0037759270053356886, 0.0076728989370167255, 0.016905931755900383, 0.038734354078769684, -0.04726129025220871, 0.0004967882414348423, 0.0018879635026678443, 0.01257521566003561, 0.015453393571078777, -0.02388618513941765, 0.013731866143643856, 0.012803856283426285, 0.024451060220599174, 0.023119566962122917, 0.00582024035975337, -0.010228290222585201, 0.02692575566470623, 0.022595040500164032, 0.008217601105570793, 0.030826089903712273, -0.05013946816325188, 0.020886963233351707, -0.01582997664809227, 0.008829549886286259, -0.017094222828745842, 0.017080774530768394, -0.008836274966597557, 0.030584000051021576, 0.030234314501285553, 0.008331920951604843, -0.03265521302819252, 0.053959108889102936, 0.026360880583524704, -7.523273961851373e-05, -0.0009935764828696847, -0.029265956953167915, -0.027356138452887535, 0.0029975413344800472, -0.03644794970750809, 0.035721682012081146, -0.02119630016386509, -0.025634611025452614, -0.013563748449087143, -0.03246692195534706, 0.0006897035054862499, -0.03055710159242153, -0.0427422821521759, -0.018761953338980675, -0.0023435628972947598, 0.002163676777854562, 0.010282088071107864, -0.004246657248586416, 0.017026975750923157, 0.018667805939912796, -0.009199408814311028, -0.0035203879233449697, -0.00193335535004735, -0.015614786185324192, 0.010147593915462494, 0.011001632548868656, 0.006546509452164173, -0.04790686443448067, -0.0104636549949646, 0.0005148609634488821, -0.010530902072787285, 0.005201566498726606, -0.013025771826505661, -0.0025553915183991194, -0.024128274992108345, 0.003426241921260953, 0.027235092595219612, -0.017121123149991035, -0.015399595722556114, 0.021303893998265266, 0.002805887022987008, 0.00923303235322237, 0.019501671195030212, 0.022621938958764076, 0.0190981887280941, -0.05923128500580788, 0.013617546297609806, 0.0017072368646040559, -0.0015408002072945237, 0.007114747539162636, 0.013731866143643856, -0.001409668242558837, -0.02173427678644657, -0.007128197234123945, 0.0009641558863222599, -0.005665571894496679, -0.00814362894743681, 0.008399168029427528, 0.013368732295930386, -0.004233207553625107, -0.034726426005363464, 0.027450283989310265, -0.0006123692728579044, 0.011236997321248055, -0.02497558854520321, -0.020537277683615685, -0.006364942062646151, 0.02715439535677433, 0.015265101566910744, -0.0029134824872016907, -0.020752469077706337, 0.00717527000233531, -0.01203051395714283, -0.023913083598017693, 0.016542797908186913, 0.02287747710943222, -0.005356234963983297, 0.03338148072361946, -0.013725141994655132, -0.00855383649468422, 0.02505628578364849, 0.012312951497733593, 0.03246692195534706, -0.010699020698666573, -0.017174920067191124, -0.0054739173501729965, -0.0051006958819925785, -0.021250097081065178, 0.0220570620149374, 0.017766695469617844, 0.01701352745294571, -0.03445743769407272, -0.03303179517388344, -0.005638672970235348, 0.012494519352912903, -0.011613581329584122, 0.033731166273355484, 0.013933608308434486, 0.0034901266917586327, -0.0056857457384467125, 0.020846614614129066, -0.005120869725942612, 0.010672121308743954, 0.030530203133821487, -0.007168545387685299, -0.0026108704041689634, -0.009602892212569714, 0.0038061882369220257, 0.006048880517482758, -0.025217678397893906, 0.023159915581345558, 0.009152336046099663, -0.004751010797917843, -0.035264402627944946, 0.002360374666750431, -0.03642105311155319, -0.037228018045425415, 0.022083962336182594, -0.008123454637825489, 0.02341545559465885, -0.014673326164484024, 0.001778686884790659, 0.025984296575188637, 0.0009986200602725148, 0.030449505895376205, 0.021774625405669212, -0.01928647980093956, 0.024276219308376312, -0.023052319884300232, 0.02251434326171875, -0.005699195433408022, 0.016448650509119034, -0.010060172528028488, -0.0017450633458793163, 0.022097410634160042, -0.024639353156089783, 0.005870675668120384, -0.01478092186152935, -0.02051037922501564, 0.03889574855566025, 0.0007283706218004227, -0.0009809676557779312, 0.0459432490170002, -0.021895669400691986, -0.027759620919823647, 0.009791184216737747, -0.03720111772418022, 0.014525382779538631, 0.04346855357289314, 0.008500038646161556, -0.0007384576601907611, -0.021976366639137268, 0.019932053983211517, 0.022231904789805412, 0.02619948610663414, 0.005077159497886896, 0.012265878729522228, 0.021720826625823975, 0.02161323092877865, -0.02247399464249611, 0.006028706207871437, -0.0023687805514782667, 0.0012726521817967296, 0.0008120092679746449, 0.0015811484772711992, 0.00997947622090578, -0.011384941637516022, 0.011203373782336712, -0.002150227315723896, -0.007820842787623405, 0.015036460943520069, 0.01755150407552719, -0.009710486978292465, 0.014189147390425205, 0.018775401636958122, 0.016488999128341675, -0.041101451963186264, -0.010187942534685135, 0.010167768225073814, 0.004098713397979736, 0.007760320324450731, 0.013274585828185081, -0.00845969095826149, 0.01448503416031599, -0.021667029708623886, -0.00044467172119766474, -0.011465637944638729, -0.027261991053819656, -0.012084311805665493, -0.0024124912451952696, -0.014471584931015968, -0.006980253383517265, -0.026629868894815445, -0.0005161217995919287, -0.0013945376267656684, -0.0036582446191459894, -0.0029773672576993704, -0.015278550796210766, -0.009293555282056332, -0.0037456657737493515, 0.007276140619069338, -0.00991895329207182, -0.0041525112465023994, -0.032951101660728455, -0.008446240797638893, -0.04844484105706215, -0.057778745889663696, -0.019770659506320953, -0.01878885179758072, -0.015197854489088058, -0.016354504972696304, -0.01451193355023861, -0.006966804154217243, -0.018022233620285988, 0.035318199545145035, 0.009354077279567719, 0.03292420133948326, 0.030395708978176117, 0.027369586750864983, -0.00896404404193163, 0.03278970718383789, -0.005309161730110645, 0.032682109624147415, 0.010638497769832611, -0.010867138393223286, 0.008426067419350147, 0.02778651937842369, 0.0007758638821542263, -0.004646777641028166, -0.0015727425925433636, 0.008910246193408966, 0.02824380062520504, 0.0016904250951483846, -0.005191479343920946, -0.0001241970603587106, -0.02379203960299492, 0.025849802419543266, -0.008540387265384197, 0.022003265097737312, -0.01298542320728302, 0.04406032711267471, -0.021640131250023842, 0.042231205850839615, 0.04161253198981285, -0.01651589758694172, -0.004811533261090517, -0.023307859897613525, -0.0010372871765866876, -0.015157505869865417, -0.03523750230669975, 0.013752040453255177, 0.020066548138856888, 0.0035405620001256466, 0.01815672777593136, -0.013483052141964436, 0.04443691298365593, -0.02051037922501564, 0.05767114832997322, -0.005988358054310083, 0.0017685998464003205, -0.009972751140594482, 0.011499261483550072, 0.01337545644491911, -0.012212080880999565, 0.03712042421102524, -0.009925678372383118, 0.04155873507261276, 0.0036952304653823376, -0.00928010605275631, 0.007424084469676018, -0.030530203133821487, -0.0057832542806863785, 0.033596672117710114, 0.014095000922679901, -0.014068102464079857, 0.02719474397599697, 0.020900411531329155, 0.023321308195590973, 0.0009658370981924236, -0.021936018019914627, 0.015897223725914955, -0.0026797985192388296, 0.039595115929841995, -0.014242945238947868, -0.00620691105723381, -0.034269142895936966, 0.008473140187561512, 0.0064725372940301895, 0.031175775453448296, -0.029938427731394768, -0.04430241882801056, 0.01148581225425005, 0.01814327947795391, 0.02619948610663414, 0.0029471060261130333, 0.03679763525724411, -0.004095350857824087, -0.028324496001005173, 0.004445035941898823, 0.00775359570980072, -0.009313729591667652, 0.009165785275399685, -0.01164048071950674, -0.005712644662708044, -0.0059950826689600945, 0.00011568610352696851, -0.011586682870984077, 0.02465280331671238, 0.030261214822530746, 0.03278970718383789, 0.022621938958764076, -0.018116381019353867, 0.017578402534127235, 0.00839244294911623, -0.010356060229241848, 0.0003543083730619401, -0.032951101660728455, -0.0016710915369912982, -0.002639450365677476, -0.03725491836667061, -0.017766695469617844, -0.00022149526921566576, 0.002316663973033428, -0.005625223275274038, 0.005991720594465733, -0.014027753844857216, -0.012185182422399521, 0.0010297219268977642, -0.009589442983269691, -0.012360025197267532, 0.030126720666885376, 0.027813417837023735, -0.005006549879908562, 0.030718494206666946, 0.0168252345174551, -0.01205068826675415, -0.02870108000934124, -0.015722382813692093, 0.013563748449087143, 0.011559783481061459, 0.00013218267122283578, -0.002383911283686757, 0.0018106292700394988, -0.021303893998265266, 0.017591852694749832, -0.04147803783416748, -0.03542579337954521, -0.01792808808386326, 0.009421324357390404, 0.030906787142157555, -0.023186814039945602, 0.01494231540709734, -0.025123532861471176, 0.013442703522741795, 0.019367177039384842, -0.0004778750007972121, -0.0025234490167349577, 0.008486589416861534, 0.01326113659888506, 0.002619276288896799, -0.0008023424888961017, -0.006654104683548212, -0.010194666683673859, -0.027436833828687668, -0.015789629891514778, -0.02100800722837448, 0.049144212156534195, -0.017174920067191124, 0.017954986542463303, 0.0030782378744333982, -0.0033657194580882788, 0.011667379178106785, -0.015399595722556114, -0.003920508548617363, -0.021895669400691986, 0.015251652337610722, 0.00269997282885015, 0.03453813120722771, -0.020066548138856888, -0.0044752974063158035, -0.004482022020965815, -0.04193531721830368, 0.013604097068309784, -0.01521130371838808, -0.008621083572506905, 0.012097761034965515, 0.02715439535677433, 0.015049910172820091, 0.022635389119386673, -0.05167270451784134, -0.01623346097767353, -0.0016694102669134736, 0.028781777247786522, -0.018492965027689934, -0.006348130293190479, 0.009925678372383118, -0.011902743950486183, 0.01474057324230671, -0.008325195871293545, -0.015897223725914955, -0.007363562006503344, 0.01175480056554079, 0.01605861820280552, -0.007820842787623405, -0.027302339673042297, 0.012319676578044891, -0.024908341467380524, -0.03297799825668335, -0.02915836125612259, 0.019246133044362068, -0.008177252486348152, 0.017390111461281776, 0.024948690086603165, -0.01938062720000744, 0.011243722401559353, -0.015063360333442688, -0.014175697229802608, 0.008096556179225445, -0.025661509484052658, 0.013516675680875778, 0.001162534928880632, 0.02701990120112896, 0.01186912041157484, 0.009945852681994438, -0.005813515279442072, -0.02578255534172058, 0.029588742181658745, 0.030126720666885376, 0.013153540901839733, 0.014754023402929306, -0.03311249241232872, -0.010329160839319229, -0.0033589948434382677, 0.018412267789244652, 0.00043248318252153695, -0.01077971700578928, 0.0013491457793861628, 0.011680828407406807, 0.023159915581345558, -0.011068879626691341, -0.012111210264265537, -0.0019989213906228542, -0.01314681675285101, -0.020254839211702347, 0.004542544484138489, 0.014068102464079857, -0.00936752650886774, 0.018183628097176552, -0.0232002642005682, 0.02591704949736595, -0.0622977539896965, -0.02173427678644657, 0.014162248000502586, 0.011371491476893425, -0.005134319420903921, 0.01737666130065918, 0.009670139290392399, 0.0031303544528782368, -0.02056417614221573, 0.009912229143083096, 0.023805487900972366, 0.014417787082493305, -0.004344165325164795, 0.02560771256685257, -0.014444686472415924, -0.016166213899850845, -0.032413121312856674, 0.005504178814589977, 0.005779891740530729, -0.030126720666885376, -0.015224752947688103, 0.01655624620616436, -0.025661509484052658, -0.011855671182274818, -0.030664697289466858, -0.012924901209771633, -0.02096765860915184, -0.007128197234123945, 0.014027753844857216, 0.028485890477895737, -0.0046804011799395084, 0.009898778982460499, -0.005645397584885359, -0.02948114648461342, -0.01673108898103237, 0.021626681089401245, 0.010887312702834606, 0.022662287577986717, 0.014148798771202564, 0.01747080683708191, -0.011089053936302662, 0.010127419605851173, 0.0014567412436008453, -0.019703412428498268, 0.02037588506937027, 0.0006354855140671134, -0.02829759754240513, 0.0022763158194720745, -0.0031824710313230753, 0.005857225973159075, 0.02578255534172058, -0.023254061117768288, -0.03669004142284393, -0.03074539452791214, -0.002886583562940359, 0.0029387001413851976, -0.028727978467941284, -0.022769883275032043, 0.007955336943268776, 0.012857653200626373, 0.0015239883214235306, 0.01896369457244873, -0.028674181550741196, -0.010154318995773792, 0.03967581316828728, -0.04739578440785408, 0.021895669400691986, -0.0022763158194720745, -0.006438913755118847, 0.0017887740395963192, 0.00939442589879036, -0.012467619962990284, -0.051323018968105316, 0.023388555273413658, 0.01919233426451683, 0.01105543039739132, 0.00399111770093441, -0.02961564250290394, -0.02496214024722576, 0.00784774124622345, -0.003550649154931307, -0.028270699083805084, 0.0010381278116255999, 0.010611599311232567, -0.010806615464389324, 0.0003931856481358409, -0.013052670285105705, 0.02579600363969803, -0.03620586171746254, -0.01778014376759529, -0.027813417837023735, 0.010322436690330505, -0.05837051942944527, -0.02138459123671055, -0.007289590314030647, 0.025674959644675255, 0.011519435793161392, -0.0038667107000947, 0.016757987439632416, -0.016448650509119034, 0.03061089850962162, -0.009972751140594482, -0.009811358526349068, -0.007800668478012085, -0.001502133090980351, 0.0002130893844878301, -0.01600481942296028, 0.004999825265258551, -0.032547615468502045, -0.007572028320282698, 0.022621938958764076, 0.02724854275584221, -0.011687553487718105, -0.00193335535004735, 0.010920936241745949, 0.0027352776378393173, -0.0005085564916953444, 0.010994907468557358, -0.0013054352020844817, -0.0007027326500974596, -0.0007935162866488099, -0.01623346097767353, 0.012400372885167599, -0.0037154045421630144, -0.01565513387322426, -0.025621160864830017, 0.017659099772572517, -0.01791463792324066, -0.006095953285694122, 0.01678488589823246, -0.010019823908805847, -0.022003265097737312, 0.007619101088494062, 0.013274585828185081, -0.003823000006377697, 0.0020964297000318766, 0.017255617305636406, -0.0005493250791914761, 0.0011112589854747057, -0.02942734956741333, -0.01132441870868206, 0.007995685562491417, 0.00936752650886774, 0.005265451036393642, -0.010591425001621246, -0.013812563382089138, 0.011331143788993359, -0.008547111414372921, 0.03843846544623375, 0.0031875146087259054, -0.015856876969337463, -0.0024746947456151247, 0.046319831162691116, 0.027127496898174286, 0.0021670390851795673, 0.0241013765335083, -0.022756433114409447, -0.00691300630569458, 0.018492965027689934, 0.02219155617058277, 0.03217103332281113, -0.0350223109126091, -0.009098538197577, -0.01850641332566738, -0.0009683588286861777, 0.014606079086661339, 0.006748250685632229, 0.03830397129058838, 0.02083316445350647, 0.0179684367030859, 0.01494231540709734, -0.008977493271231651, -0.034269142895936966, 0.009562543593347073, 0.010846964083611965, 0.020725568756461143, 0.0037591152358800173, -0.01800878532230854, -0.008352095261216164, -0.019084738567471504, 0.012407097965478897, -0.01737666130065918, 0.004929215647280216, -0.013731866143643856, 0.022823680192232132, -0.0020291826222091913, -0.01378566399216652, 0.028458990156650543, -0.018950244411826134, 0.0029403814114630222, -0.0070340512320399284, 0.012212080880999565, -0.016905931755900383, 0.014619529247283936, 0.005584875121712685, -0.00028853226103819907, -0.011102503165602684, 0.005921110976487398, 0.0036784186959266663, 0.01728251576423645, 0.004455123096704483, -0.019044389948248863, -0.001266768085770309, 0.02373824082314968, -0.0418546199798584, 0.008923695422708988, -0.006018619053065777, 0.0011574914678931236, -0.029508046805858612, -0.012763507664203644, 0.037685297429561615, 0.01091421116143465, -0.017726346850395203, -0.019663063809275627, 0.019125087186694145, -0.022890927270054817, -0.027530979365110397, 0.015399595722556114, -0.003994480241090059, 0.031121976673603058, -0.03897644206881523, 0.018681256100535393, 0.010127419605851173, 0.0014937272062525153, -0.010248464532196522, -0.0048989541828632355, -0.012225530110299587, 0.014928865246474743, 0.022985072806477547, -0.015036460943520069, 0.032816603779792786, -0.03491471707820892, -0.003917146008461714, -0.006274158600717783, 0.021209748461842537, -0.0008061251137405634, -0.004260106477886438, 0.019568918272852898, -0.007296314928680658, -0.000556049810256809, 0.021438388153910637, -0.03214413300156593, -0.016771437600255013, -0.05312524363398552, 0.021707378327846527, 0.007370286621153355, -0.008089831098914146, -0.004892229568213224, -0.0027167845983058214, 0.019353726878762245, -0.010174492374062538, -0.021895669400691986, -0.019932053983211517, 0.015318899415433407, 0.002639450365677476, 0.0007363561890088022, -0.005090608727186918, -0.012521417811512947, 0.020819716155529022, 0.007363562006503344, 0.007168545387685299, -0.006966804154217243, 0.011115952394902706, -0.020470030605793, -0.019030941650271416, -0.02710059843957424, 0.011257171630859375, -0.01451193355023861, -0.011216823011636734, -0.004337440710514784, 0.041047655045986176, 0.004740923643112183, 0.003152209799736738, -0.0032076886855065823, -0.003654882311820984, 0.02350960113108158, 0.003927233163267374, 0.0003629244165495038, -0.03171375393867493, 0.022178107872605324, -0.008446240797638893, -0.0009154017316177487, 0.020765917375683784, 0.037954285740852356, 0.00788808986544609, 0.00635485490784049, 0.006986977998167276, 0.007397185545414686, 0.026508823037147522, 0.02379203960299492, -0.0133014852181077, 0.005013274494558573, -0.018452616408467293, 0.00038751165266148746, -0.007235792465507984, -0.00023431426961906254, 0.01955546997487545, 0.029911529272794724, -0.011364767327904701, 0.012447445653378963, 0.004044915549457073, -0.004034828394651413, 0.008486589416861534, -0.0007481244392693043, 0.045781854540109634, -0.015493741258978844, 0.01991860382258892, -0.011566508561372757, 0.005339423194527626, -0.012803856283426285, -0.014875068329274654, -0.008419342339038849, 0.03346217796206474, 0.0156954824924469, -0.019595816731452942, -0.013577197678387165, 0.03061089850962162, -0.005356234963983297, 0.026091890409588814, -0.04726129025220871, -0.019178885966539383, -0.00510405795648694, 0.0026932479813694954, 0.00900439266115427, 0.002795799868181348, -0.012568490579724312, 0.009300279431045055, 0.006264071445912123, 0.01829122193157673, -0.01550719141960144, 0.02123664692044258, 0.010161043144762516, -0.009058190509676933, -0.011176475323736668, 0.012776956893503666, 0.01205068826675415, -0.0156954824924469, 0.026091890409588814, -0.04360304772853851, 0.007659449707716703, 0.011122677475214005, -0.0012188544496893883, -0.009434774518013, -0.028028609231114388, 0.010490554384887218, 0.007397185545414686, -0.007255966775119305, 0.005342785269021988, 0.0004337440768722445, -0.03582927584648132, 0.01491541601717472, 0.015520640648901463, -0.009206133894622326, 0.023993780836462975, 0.0017484256532043219, 0.004670314025133848, 0.01769944839179516, -0.025217678397893906, -0.024854544550180435, 0.039003342390060425, -0.008204150944948196, -0.004451761022210121, 0.00025827105855569243, -0.0033623571507632732, -0.018909895792603493, 0.006832309532910585, -0.006566683296114206, -0.022083962336182594, 0.002509999554604292, -0.01425639446824789, -0.00902456697076559, 0.005463830195367336, -0.008150354027748108, 0.005167942959815264, -0.013543574139475822, -0.0033489076886326075, -0.008123454637825489, 0.005484004504978657, -0.01905784010887146, -0.01253486704081297, -0.02388618513941765, 0.0011154619278386235, 0.010813340544700623, 0.02192256785929203, 0.022272253409028053, 0.015856876969337463, 0.027369586750864983, 0.02173427678644657, 0.005463830195367336, 0.033085595816373825, 0.0220570620149374, -0.01701352745294571, 0.008069656789302826, 0.007363562006503344, -0.019905153661966324, -0.030691595748066902, 0.004482022020965815, -0.00024419117835350335, 0.014673326164484024, -0.03975651040673256, -0.007255966775119305, 0.0044752974063158035, -0.018479514867067337, 0.022864028811454773, 0.0015500466106459498, -0.02728889137506485, -0.014229495078325272, 0.009797908365726471, 0.0046299658715724945, 0.002874815370887518, -0.002464607823640108, -0.035909973084926605, 0.019770659506320953, -0.0031370793003588915, -0.01804913394153118, 0.007094573695212603, -0.013429254293441772, -0.012655911967158318, -0.027947911992669106, -0.014498484320938587, 0.025728756561875343, -0.004868693184107542, -0.04336095601320267, 0.009239757433533669, -0.011795149184763432, 0.0015231478027999401, -0.018022233620285988, -0.004929215647280216, 0.022406747564673424, -0.015426494181156158, 0.019716862589120865, -0.01048382930457592, -0.004391238559037447, 0.03453813120722771, -0.03087988868355751, 0.026172587648034096, -0.010692295618355274, -0.003913783468306065, 0.013166990131139755, 0.01605861820280552, 0.035721682012081146, 0.007087848614901304, 0.012682811357080936, 0.008224325254559517, 0.014242945238947868, 0.0055647012777626514, 0.015977920964360237, 0.008836274966597557, 0.011432014405727386, 0.0023452441673725843, -0.0006014416576363146, -0.016569696366786957, 0.0038431743159890175, -0.008103280328214169, 0.020120345056056976, -0.005362959578633308, -0.012057412415742874, -0.007403910625725985, -0.0054671927355229855, -0.031821347773075104, -0.00012913552927784622, -0.05102713033556938, -0.0010087070986628532, 0.0021266909316182137, -0.001061664312146604, -0.019071290269494057, -0.0008826187695376575, 0.005890849512070417, 0.020712120458483696, -0.008015858940780163, -0.009878605604171753, -0.008318471722304821, 0.0075047812424600124, 0.019273031502962112, -0.023939982056617737, -0.017847390845417976, -0.030530203133821487, 0.0030883250292390585, 0.006361579522490501, -0.008547111414372921, -0.0076661743223667145, -0.009892054833471775, 0.005601686891168356, -0.019945502281188965, -0.011270620860159397, -0.005110783036798239, -0.004592979792505503, -0.008654707111418247, -0.014969213865697384, 0.0012701303930953145, -0.009226308204233646, -0.029319753870368004, 0.002415853552520275, 0.013214063830673695, 2.5834986445261165e-05, 0.018533311784267426, -0.016798336058855057, 0.010625048540532589, -0.029319753870368004, -0.00021582130284514278, -0.011122677475214005, -0.019178885966539383, 0.011290795169770718, 0.005393221043050289, 0.051376815885305405, 0.01732286438345909, -0.003580910386517644, -0.0038633483927696943, 0.022756433114409447, 0.013382181525230408, -0.014606079086661339, 0.024276219308376312, 0.01842571794986725, -0.00648262444883585, -0.016569696366786957, -0.007296314928680658, 0.007491331547498703, -0.014202596619725227, -0.024948690086603165, 0.004340803250670433, -0.0031757464166730642, -0.00607241690158844, 0.00035220690187998116, 0.02033553645014763, 0.007592202629894018, 0.007578752934932709, 0.04556666314601898, -0.04303817078471184, 0.01856021210551262, -0.02387273497879505, -0.013604097068309784, -0.0179684367030859, -0.014269843697547913, -0.003486764384433627, -0.007773769553750753, -0.005426844581961632, 0.0001943862735060975, -0.01009379606693983, 0.013617546297609806, -0.006654104683548212, 0.02037588506937027, 0.032682109624147415, 0.0074644326232373714, -0.0010112288873642683, 0.011062154546380043, -0.013879810459911823, 0.005087246187031269, 0.022352950647473335, -0.01892334595322609, 0.015816528350114822, -0.00193839892745018, 0.021088704466819763, 0.02732923813164234, 0.012945074588060379, 0.02669711597263813, 0.007477882318198681, -0.0016786567866802216, 0.014189147390425205, 0.027530979365110397, -0.00019091884314548224, -0.006163200829178095, -0.0007825886132195592, -0.006802048534154892, -0.012898001819849014, 0.014552281238138676, -0.003419517306610942, 0.005776529666036367, -0.01896369457244873, -0.031095078215003014, 0.013812563382089138, 0.010288813151419163, -0.012629013508558273, -0.005272176116704941, -0.008338646031916142, -0.009273380972445011, -0.0024309842847287655, -0.010060172528028488, -0.008742128498852253, -0.002558753825724125, 7.150262536015362e-05, 0.0035472868476063013, 0.026186037808656693, 0.013489777222275734, 0.029642540961503983, 0.007713247090578079, 0.007941887713968754, 0.0005480641848407686, -0.0518340989947319, -0.011445463635027409, -0.012622288428246975, 0.026683665812015533, 0.0021401403937488794, -0.0012844203738495708, 0.016932830214500427, -0.032493818551301956, 0.02415517345070839, 0.0016458737663924694, 0.00043164260569028556, 0.012602114118635654, 0.014148798771202564, 0.009945852681994438, 0.014014304615557194, -0.02329440973699093, 0.013227513059973717, 0.012770232744514942, -0.012474345043301582, 0.001322246971540153, -0.0077334214001894, -0.007491331547498703, -0.02278333157300949, -0.010376234538853168, -0.002577246632426977, 0.02369789220392704, 0.006005169823765755, -0.0041121626272797585, 0.0054167574271559715, 0.019797557964920998, -0.005043535493314266, -0.000386460917070508, -0.02511008270084858, -0.009878605604171753, 0.010584699921309948, 0.021344242617487907, 0.01246089581400156, 0.003500213846564293, -1.6102538211271167e-05, 0.007222343236207962, -0.004031466320157051, -0.002906757639721036, -0.012877827510237694, -0.008715230040252209, -0.008883347734808922, 0.004350889939814806, 0.012265878729522228, 0.00443494925275445, 0.00775359570980072, -0.0038297248538583517, 0.03574858233332634, 0.01687903329730034, 0.011808598414063454, 0.012682811357080936, 0.007161820773035288, -0.029723236337304115, 0.01474057324230671, 0.005457105580717325, 0.02505628578364849, -0.002713422290980816, 0.006163200829178095, -0.013866361230611801, 0.017524605616927147, -0.012212080880999565, -0.010154318995773792, 0.019622717052698135, 0.011613581329584122, 0.004327353555709124, 0.0009271699818782508, 0.021774625405669212, 0.019165435805916786, 0.019999301061034203, -0.007296314928680658, -0.005712644662708044, -0.008473140187561512, 0.025903599336743355, -0.006704539991915226, -0.009273380972445011, 0.007491331547498703, 0.03765840083360672, -0.010658672079443932, 0.003937320318073034, 0.0014474947238340974, -0.0168252345174551, -0.01203051395714283, 0.011822047643363476, 0.00839244294911623, 0.01061832346022129, -0.010524177923798561, 0.020254839211702347, 0.033865660429000854, -0.03171375393867493, 0.004606429487466812, 0.003550649154931307, 0.0011616944102570415, -0.011707727797329426, 0.0008578213746659458, 0.00010780557204270735, -0.005658847279846668, -0.014148798771202564, -0.03954131901264191, -0.004408050328493118, -0.0022712722420692444, -0.011089053936302662, -0.012393648736178875, 0.0009288511355407536, -0.0015466843033209443, -0.017121123149991035, 0.012602114118635654, -0.00512759480625391, -0.0016921062488108873, 0.0104636549949646, -0.025943947955965996, -0.001619815593585372, -0.023818938061594963, -0.017309414222836494, -0.006862570997327566, -0.029992226511240005, -0.016986628994345665, 0.007928438484668732, -0.01755150407552719, 0.0026075078640133142, 0.0008195745758712292, -0.027409935370087624, -0.019501671195030212, 0.01491541601717472, 0.0163679551333189, 0.02383238822221756, 0.024908341467380524, 0.028754878789186478, 0.008096556179225445, 0.009488571435213089, -0.002930294256657362, -0.022769883275032043, -0.0008683287305757403, 0.0008842999232001603, -0.016273807734251022, -0.010026548989117146, 0.02018759213387966, -0.04225810617208481, -0.0011961585842072964, 0.00032909068977460265, -0.000613630167208612, 0.017430460080504417, 0.011936367489397526, -0.004391238559037447, 0.002911801217123866, -0.0014760748017579317, 0.016045168042182922, 0.012400372885167599, 0.027625126764178276, 0.00427691824734211, -0.007390460930764675, 0.003964219242334366, -0.015668584033846855, -0.016139313578605652, 0.02215120941400528, 0.013093018904328346, -0.007336663082242012, 0.005366322118788958, -0.00045097616384737194, -0.0015130607644096017, 0.0135301249101758, 0.009710486978292465, -0.010140868835151196, -0.008990942500531673, 0.005863951053470373, 0.0031438039150089025, 0.0014138711849227548, -0.009636515751481056, -0.012151558883488178, 0.014108450151979923, -0.0031236298382282257, -0.04024069011211395, -0.003147166222333908, 0.010033274069428444, -0.04553976655006409, 0.001728251576423645, -0.010551076382398605, -0.02579600363969803, -0.001882920041680336, -0.017309414222836494, 0.00524191465228796, -0.0021149227395653725, 0.010329160839319229, -0.015897223725914955, 0.01600481942296028, -0.002383911283686757, 0.009185959585011005, 0.0014777559554204345, 0.019340278580784798, 0.018681256100535393, -0.002390635898336768, 0.0066742789931595325, -0.01507680956274271, -0.0005930357147008181, -0.017430460080504417, -0.009750835597515106, 0.002360374666750431, -0.01366461906582117, 0.013187164440751076, -0.021088704466819763, -0.015816528350114822, -0.014310192316770554, 0.0121650081127882, -0.0042231203988194466, -0.015614786185324192, 0.014054653234779835, -0.023845836520195007, 0.0008120092679746449, 0.005729456432163715, -0.015897223725914955, -0.02583635225892067, 0.00818397756665945, 0.0032329063396900892, -0.021411489695310593, 0.008426067419350147, 0.005211653653532267, 0.003873435314744711, -0.007619101088494062, -0.021667029708623886, -0.008661432191729546, -0.0038700730074197054, -0.015063360333442688, -0.00868833065032959, -0.016018269583582878, -0.00048165765474550426, -0.021989814937114716, 0.0021922567393630743, 0.017538053914904594, -0.010161043144762516, 0.009011116810142994, 0.010396407917141914, -0.0038498989306390285, -0.02077936753630638, 0.007007152307778597, -0.001580307842232287, -0.0266029704362154, -0.0030446143355220556, 0.012649187818169594, -0.005860588513314724, 0.018896447494626045, 0.01025518961250782, -0.009723937138915062, -0.019138537347316742, -0.009159061126410961, 0.015090258792042732, 0.008701779879629612, -0.00954909436404705, -0.005299075040966272, 0.010275362990796566, 0.012810580432415009, -0.000630021677352488, 0.003380850190296769, -0.005870675668120384, -0.0026932479813694954, -0.017538053914904594, -0.008305022493004799, -0.014296742156147957, -0.009468398056924343, -0.05788633972406387, -0.017484256997704506, 0.012111210264265537, 0.008264673873782158, -0.01901749148964882, -0.015224752947688103, 0.01448503416031599, 0.006334681063890457, -0.0032446745317429304, -0.019811008125543594, 0.012514693662524223, -0.026307081803679466, -7.502259541070089e-05, -0.01732286438345909, 0.008452965877950191, 0.008701779879629612, 0.020685220137238503, 0.014108450151979923, 0.01241382211446762, -0.004922491032630205, 0.03529129922389984, 0.008997667580842972, -0.0011978397378697991, 0.013799113221466541, 0.01892334595322609, 0.02824380062520504, 0.006953354459255934, -0.003557373769581318, 0.0045896172523498535, -0.01928647980093956, -0.029454248026013374, -0.00841261725872755, 0.006290970370173454, -0.0058404142037034035, 0.012111210264265537, 0.012978698126971722, -0.011492536403238773, -0.01451193355023861, -0.002082980237901211, -1.440822597942315e-05, -0.016905931755900383, 0.007027326617389917, 0.008110005408525467, 0.008190701715648174, 0.014525382779538631, 0.008930420503020287, 0.02519077993929386, -0.014189147390425205, -0.004364339634776115, -0.007303039543330669, -0.0018593835411593318, -0.004041553474962711, -0.0015391189372166991, -0.03206343576312065, 0.013240962289273739, 0.020039647817611694, -0.00868833065032959, 0.016125865280628204, -0.007968786172568798, -0.011936367489397526, -0.007686348631978035, 0.004075177013874054, -0.002459564246237278, 0.00649271160364151, 0.008157078176736832, -0.0014088276075199246, -0.00606232974678278, -0.0004097872879356146, -0.0011389984283596277, -0.0014870024751871824, -0.0096634142100811, -0.01850641332566738, 0.021855320781469345, -0.026347430422902107, -0.004740923643112183, -0.005557976197451353, 0.014068102464079857, -0.007814117707312107, 0.001983790658414364, 0.00786791555583477, 0.0023015334736555815, 0.0005955575034022331, 0.019663063809275627, 0.0077804941684007645, 0.0037893764674663544, 0.025715306401252747, 0.00010108086280524731, 0.006919730920344591, -0.010362784378230572, -0.014969213865697384, 0.010120694525539875, -0.0005451221368275583, -0.02606499195098877, 0.0036447951570153236, 0.010295537300407887, -0.008116730488836765, 0.031175775453448296, 0.014081551693379879, -0.018116381019353867, 0.02415517345070839, 0.008103280328214169, 0.0031236298382282257, 0.019367177039384842, -0.01285092905163765, -0.0050031873397529125, 0.0005438612424768507, -0.01565513387322426, 0.020496929064393044, -0.03669004142284393, 0.003375806612893939, 0.019636165350675583, -0.02388618513941765, 0.003079919144511223, 0.011384941637516022, 0.008042758330702782, 0.018304672092199326, 0.008701779879629612, 0.01919233426451683, -0.01241382211446762, -0.018936796113848686, -0.0032867041882127523, 0.01837191917002201, -0.004448398482054472, 0.009387700818479061, -0.005073796957731247, 0.005420119501650333, -0.010443481616675854, -0.0013945376267656684, -0.036959029734134674, -0.013106468133628368, -0.011983441188931465, 0.015292000025510788, -0.002826061099767685, 0.006556596606969833, -0.016811786219477654, 0.03451123461127281, 0.002496550092473626, -0.005645397584885359, 0.006280883215367794, -0.002851278753951192, 0.010968009009957314, -0.01171445194631815, 0.007397185545414686, 0.0028411918319761753, -0.011163026094436646, 0.00595809705555439, 0.02237984910607338, 0.009421324357390404, -0.008890071883797646, -0.0019064565422013402, -0.0012709710281342268, -0.008352095261216164, -0.022366398945450783, -0.002545304363593459, 0.014498484320938587, 0.008567285723984241, -0.018183628097176552, 0.007538404781371355, -0.025594262406229973, -0.00675497530028224, 0.017766695469617844, -0.0037557529285550117, -0.004855243489146233, 0.005591599736362696, -0.02942734956741333, 0.009192684665322304, 0.007013876922428608, -0.0001627590972930193, 0.0037826518528163433, 0.023711342364549637, 0.015426494181156158, -0.01091421116143465, -0.013274585828185081, -0.01494231540709734, 0.0010532584274187684, 0.007000427693128586, 0.022702636197209358, 0.01421604584902525, 0.0002568000345490873, 0.01850641332566738, 0.01737666130065918, -0.016206560656428337, 0.004962839186191559, -0.004636690486222506, -0.006079141516238451, -0.0012440721038728952, 0.0052150157280266285, 0.014659876935184002, 0.0030395707581192255, 0.01619311235845089, -0.0010599830420687795, 0.006314506754279137, 0.006748250685632229, 0.021868770942091942, 0.0012432315852493048, 0.0015592931304126978, 0.005793341435492039, 0.014928865246474743, 0.019716862589120865, -0.019676513969898224, 0.003557373769581318, -0.0005783254164271057, -0.026643317192792892, -0.0133014852181077, 0.008580734953284264, -0.02824380062520504, 0.00262095732614398, -0.010288813151419163, -0.01691938191652298, 0.018479514867067337, 0.023348208516836166, 0.009791184216737747, 0.011290795169770718, -0.011795149184763432, 0.02314646728336811, -0.026589520275592804, 0.033408381044864655, 0.0024427524767816067, -0.016354504972696304, 0.005346147809177637, -0.0028966707177460194, -0.010833514854311943, -0.0012625651434063911, -0.013503226451575756, -0.03862676024436951, -0.004572805482894182, 0.014108450151979923, -0.028781777247786522, 0.017309414222836494, -0.010248464532196522, -0.0029941790271550417, -0.0038868847768753767, -0.0031925581861287355, 0.013294760137796402, 0.013799113221466541, 0.009293555282056332, 0.005692470818758011, 0.02051037922501564, -0.004300454631447792, -0.005631948355585337, -0.035506490617990494, 0.018573660403490067, -0.014310192316770554, 0.0007048341212794185, -0.0038667107000947, 0.004562718793749809, 0.0014416106278076768, 0.004381151404231787, -0.007155096158385277, -0.020133795216679573, 0.012111210264265537, 0.00954909436404705, 0.012097761034965515, 0.012898001819849014, -0.013462877832353115, 0.014202596619725227, 0.011015081778168678, 0.004354252479970455, -0.02010689489543438, 0.0017736434238031507, -0.02459900453686714, 0.008089831098914146, 0.005615136586129665, 0.00482161995023489, 0.00262095732614398, 0.012817305512726307, -0.0038936096243560314, -0.009011116810142994, -0.011310969479382038, 0.011633755639195442, -0.005396583117544651, 0.00429709255695343, -0.0034733149223029613, 0.0004270193458069116, 0.012528142891824245, 0.022137759253382683, -0.015117157250642776, 0.008836274966597557, 0.002286402741447091, -0.014444686472415924, 0.035640984773635864, -0.006375029217451811, -0.010766267776489258, -0.005487367045134306, 0.001260043354704976, -0.0011785061797127128, 0.005517628043889999, 0.009771009907126427, -0.0022645476274192333, -0.006324593909084797, -0.011015081778168678, 0.002589015057310462, 0.022621938958764076, -0.007262691389769316, -0.008237775415182114, 0.014875068329274654, -0.011452188715338707, 0.013187164440751076, -0.010625048540532589, -0.017215268686413765, 0.0023200265131890774, 0.0032547616865485907, -0.019985850900411606, 0.018089480698108673, 0.0034497783053666353, 0.0002227561635663733, 0.021344242617487907, 0.004942664876580238, -0.0047913589514791965, -0.00014626253687310964, -0.014727124013006687, -0.008674881421029568, 0.015278550796210766, 0.017753245308995247, -0.007935162633657455, -0.004616516176611185, -0.00043458465370349586, 0.011909469030797482, 0.013933608308434486, -0.012756782583892345, -0.0071954443119466305, -0.0023939982056617737, 0.001033924869261682, 0.010772991925477982, 0.0029958602972328663, 0.01687903329730034, -0.010732644237577915, -0.0031000932212918997, 0.005618498660624027, 0.0020779366604983807, -0.006193461827933788, -0.00525200180709362, -0.007255966775119305, 0.003638070309534669, -0.0016458737663924694, -0.022393299266695976, -0.009347353130578995, -0.009199408814311028, -0.0037759270053356886, 0.0005493250791914761, 0.011129402555525303, -0.0010633454658091068, 0.011976716108620167, 0.0035472868476063013, -0.015816528350114822, -0.008641257882118225, -0.02656262181699276, 0.003332095919176936, 0.006664191838353872, -0.002674755174666643, -0.025298375636339188, -0.014081551693379879, -0.012104486115276814, -0.001260043354704976, -0.021478736773133278, 0.00303116487339139, -0.008231050334870815, 0.0011003314284607768, -0.005393221043050289, 0.015130607411265373, -0.0039474074728786945, 0.0001635996886761859, -0.010107245296239853, 0.018627459183335304, -0.016905931755900383, -0.007767044939100742, 0.0017669186927378178, 0.002365418244153261, 0.021976366639137268, 0.0015836702659726143, 0.006166562903672457, 0.01339563075453043, -0.027625126764178276, -0.003463227767497301, -0.007424084469676018, 0.019178885966539383, 0.025822902098298073, 0.0018257598858326674, 0.02757132798433304, 0.0015374377835541964, 0.01091421116143465, 0.0019434423884376884, -0.02484109438955784, -0.024034129455685616, -0.0075115058571100235, 0.012111210264265537, -0.018250875174999237, -0.01241382211446762, -0.0023065770510584116, -0.01651589758694172, -0.010187942534685135, 0.008735403418540955, -0.009246482513844967, -0.0034733149223029613, 0.004656864795833826, -0.0064086527563631535, 0.0014987706672400236, 0.013207338750362396, 0.0048888674937188625, -0.03165995329618454, 0.0018778764642775059, -0.023119566962122917, -0.0037456657737493515, -0.022083962336182594, 0.019407525658607483, -0.02623983472585678, -0.000696848495863378, -0.00020300231699366122, 0.0007325735641643405, 0.02356339804828167, -0.010174492374062538, -0.011432014405727386, 0.003506938461214304, 0.030449505895376205, 0.004229845479130745, -0.01565513387322426, 0.019447874277830124, 0.011748075485229492, 0.015843426808714867, -0.0008527778554707766, -0.008076381869614124, -0.00911871250718832, -0.010577975772321224, -0.010026548989117146, 0.017080774530768394, -0.004189496859908104, 0.015345797874033451, -0.004737561102956533, -0.0041121626272797585, 0.008345370180904865, -0.0008069656905718148, 0.009421324357390404, 0.003486764384433627, 0.014363989233970642, 0.00649271160364151, -0.01309974305331707, 0.018977142870426178, 0.005954734515398741, 0.009723937138915062, 0.001105374889448285, -0.034726426005363464, 0.019999301061034203, -0.0013272904325276613, 0.0254732184112072, -0.011761525645852089, -0.005759717896580696, 0.013227513059973717, -0.014189147390425205, 0.029050765559077263, -0.01577617973089218, -0.01517095509916544, 0.0028714530635625124, -0.015023011714220047, -0.0029151635244488716, -0.008930420503020287, -0.007551854010671377, 0.015762729570269585, -0.008863173425197601, -0.007027326617389917, -0.02742338553071022, -0.006812135688960552, -0.009596167132258415, 0.001375204068608582, 0.004172685090452433, 0.0037254916969686747, 0.011250446550548077, -0.0010952878510579467, -0.020254839211702347, 0.008654707111418247, -0.016139313578605652, -0.004108800552785397, -0.003786014160141349, 0.016341054812073708, -0.018896447494626045, -1.996399623749312e-05, 0.002651218557730317, 0.0020964297000318766, -0.012696260586380959, 0.004626603331416845, -0.004714024718850851, -0.0014592630323022604, -0.01865435764193535, -0.00048417941434308887, -0.00928010605275631, 0.01448503416031599, 0.016542797908186913, -0.011707727797329426, -0.026629868894815445, -0.0016483955550938845, -0.027544429525732994, -0.01326113659888506, 0.003691868158057332, -0.0053125242702662945, 0.011969991028308868, 0.007054225075989962, -0.02724854275584221, 0.01619311235845089, -0.0009313729242421687, -0.0024881442077457905, 0.02287747710943222, -0.0027974811382591724, -0.01066539715975523, 0.0015172637067735195, -0.00814362894743681, -0.007995685562491417, -0.020322086289525032, -0.0015626554377377033, -0.012191906571388245, -0.014982663094997406, 0.010625048540532589, -0.0035977221559733152, 0.0006918049766682088, -0.015063360333442688, -0.0074644326232373714, 0.0070407758466899395, -0.02328096143901348, 0.004828345030546188, 0.025392521172761917, -0.035506490617990494, 0.007074399385601282, 0.031121976673603058, -0.01732286438345909, 0.028270699083805084, 0.022796781733632088, 0.006015256978571415, 0.015708932653069496, 0.011479087173938751, 0.007901539094746113, -0.018398817628622055, 0.020658321678638458, 0.03214413300156593, -0.0009473441168665886, -0.0008885028655640781, 0.003066469682380557, 0.010282088071107864, -0.01665039174258709, 0.004414774943143129, 0.02387273497879505, -0.02014724351465702, -0.0034228796139359474, -0.002254460472613573, -0.020954210311174393, 0.024222420528531075, -0.015063360333442688, -0.015762729570269585, 0.002757132751867175, -0.0011196648702025414, 0.006593582220375538, -0.005561338737607002, 0.009407875128090382, -0.005134319420903921, -0.01827777363359928, 0.014027753844857216, -0.015977920964360237, -0.017026975750923157, 0.014135349541902542, -0.008621083572506905, 0.009522194974124432, 0.014283292926847935, 0.03001912496984005, 0.011095778085291386, -0.012945074588060379, -0.0023267511278390884, -0.027396485209465027, 0.01491541601717472, -0.01938062720000744, -0.006331318523734808, 0.00939442589879036, -0.002118285046890378, 0.018614009022712708, 0.0006111084367148578, -0.011122677475214005, -0.0038936096243560314, -0.013731866143643856, 0.010846964083611965, 0.009239757433533669, 0.011472362093627453, 0.0046804011799395084, 0.002821017522364855, -0.011674104258418083, 0.014189147390425205, -0.002267909934744239, -0.00428700540214777, 0.0021401403937488794, 0.0031622969545423985, 0.02119630016386509, 0.019811008125543594, 0.01021484099328518, -0.01596447080373764, -0.020268289372324944, 0.0007569506415165961, 0.011048705317080021, 0.012185182422399521, 0.006855846382677555, -0.0005867313011549413, 0.012117935344576836, -0.0017685998464003205, 0.01728251576423645, -0.0030782378744333982, 0.0007876321324147284, 0.00900439266115427, 0.011647204868495464, -0.011996890418231487, -0.0058404142037034035, -0.005638672970235348, 0.0014273206470534205, 0.0232002642005682, 0.007652724627405405, -0.015534089878201485, 0.024141723290085793, -0.020254839211702347, 0.006102678366005421, 0.02329440973699093, -0.011667379178106785, -0.011647204868495464, 0.013812563382089138, -0.003550649154931307, -0.010490554384887218, 0.009495296515524387, 0.0006270796293392777, 0.016636943444609642, 0.03270900994539261, 0.007121472619473934, 0.02301197312772274, -0.020483478903770447, 0.0027167845983058214, -0.013731866143643856, -0.007094573695212603, 0.002229242818430066, 0.009038016200065613, 0.00030660495394840837, -0.02929285541176796, 0.011553059332072735, 0.009011116810142994, 0.01646210066974163, 0.0029286129865795374, 0.013852911069989204, -0.024908341467380524, -0.033946357667446136, 0.001783730462193489, 0.026118790730834007, -0.00021771262981928885, 0.017403559759259224, 0.02742338553071022, -0.015668584033846855, 0.0067818742245435715, 0.0016341055743396282, 0.001017112983390689, -0.008627808652818203, -0.010517452843487263, 0.015345797874033451, -0.005019999109208584, -0.0012028833152726293, -0.0009095175773836672, 0.005547889042645693, 0.001207086257636547, 0.01842571794986725, 0.006872658152133226, 0.0005661369068548083, 0.01605861820280552, -0.015991371124982834, 0.007914988324046135, -0.004485384561121464, 0.016072066500782967, -0.002452839631587267, 0.013893259689211845, 0.009380976669490337, 0.003140441607683897, -0.005631948355585337, -0.0036851433105766773, -0.010382958687841892, 0.015103708021342754, -0.007625826168805361, -0.002789075253531337, 0.024222420528531075, 0.002089704852551222, 0.014189147390425205, 0.0012306227581575513, 0.009461672976613045, 0.025083184242248535, 0.014431237243115902, -0.024720050394535065, 0.016139313578605652, 0.003543924307450652, 0.00798223540186882, -0.028324496001005173, 0.021895669400691986, -0.01724216714501381, -0.006539784837514162, -0.012763507664203644, -0.006865933071821928, 0.02110215276479721, -0.004048278089612722, -0.012998872436583042, -0.00825794879347086, 0.01646210066974163, -0.0441141240298748, 0.009441498667001724, 0.001282739220187068, 0.013866361230611801, -0.022124309092760086, 0.010046723298728466, -0.0011827091220766306, -0.0028949894476681948, 0.003291747532784939, 0.006859208457171917, 0.015332348644733429, -0.020752469077706337, 0.011687553487718105, -0.004414774943143129, -0.02119630016386509, 0.012649187818169594, 0.018250875174999237, -0.015345797874033451, 0.008311746641993523, 0.018721604719758034, 0.005574787966907024, -0.004835069645196199, 0.010517452843487263, -0.019138537347316742, 0.023724792525172234, -0.004727473948150873, -0.0038196376990526915, 0.00011495058424770832, 0.003631345694884658, 0.0042096711695194244, 0.0019283117726445198, -0.006405290216207504, 0.007316489238291979, 0.00816380325704813, 0.0190981887280941, 0.00441141240298748, 0.01173462625592947, 0.0065128859132528305, -0.015493741258978844, -0.004088626243174076, -0.022958174347877502, -0.00379273877479136, -0.004169323015958071, 0.0039070588536560535, -0.01537269726395607, 0.006919730920344591, 0.008795926347374916, 0.023052319884300232, 0.0014525383012369275, -0.018936796113848686, -0.0009271699818782508, -0.017659099772572517, -0.04206981137394905, -0.017887739464640617, 0.0047913589514791965, -0.0218284223228693, -0.004986375570297241, -0.008069656789302826, 0.04844484105706215, -0.020389333367347717, 0.00537977134808898, -0.0011978397378697991, -0.015184405259788036, -0.002224199241027236, 0.013368732295930386, 0.018398817628622055, -0.018022233620285988, 0.011310969479382038, 0.012400372885167599, 0.02073901891708374, -0.024208972230553627, -0.001167578506283462, 0.007699797861278057, -0.012924901209771633, 0.01964961551129818, -0.005067072343081236, 0.005208291113376617, 0.0006716308416798711, 0.01582997664809227, 0.012723159044981003, 0.0008170527871698141, -0.016314156353473663, 0.0063582174479961395, 0.014148798771202564, -0.0268316101282835, -0.014821270480751991, 0.005779891740530729, -0.007108022924512625, 0.011660654097795486, -0.004290367476642132, 0.006596944760531187, 0.009502021595835686, -0.02392653375864029, 0.021855320781469345, 0.029911529272794724, 0.017847390845417976, 0.01745735853910446, -0.017497707158327103, 0.0026226385962218046, 0.0008540386916138232, -0.019205784425139427, -0.008990942500531673, -0.03757770359516144, 0.016892481595277786, -0.007921713404357433, -0.0193268284201622, -0.012918176129460335, -0.014296742156147957, -0.011586682870984077, -0.0019484859658405185, -0.006919730920344591, 0.02242019772529602, -0.0016214967472478747, 0.003419517306610942, 0.005137681495398283, 0.026535723358392715, -0.0016181343235075474, 0.012770232744514942, -0.004071814473718405, 0.01077971700578928, -0.016852134838700294, -0.018990593031048775, -0.008896796964108944, -0.012158283032476902, -0.011976716108620167, 0.012373474426567554, 0.002743683522567153, 0.01094111055135727, -0.02041623182594776, -0.011015081778168678, -0.051107827574014664, 0.011142851784825325, -0.01150598656386137, 0.0036649692337960005, -0.01815672777593136, -0.01978410966694355, -0.009831531904637814, -0.01007362175732851, -0.005396583117544651, -0.010591425001621246, 0.0336504690349102, -0.014363989233970642, 0.006095953285694122, 0.0019417612347751856, -0.016341054812073708, 0.0017299327300861478, 0.008365544490516186, 0.019501671195030212, 0.011976716108620167, 0.01020811591297388, -0.025029387325048447, 0.020806265994906425, 0.019259581342339516, 0.014014304615557194, -0.006045517977327108, 0.02005309797823429, -0.007309764623641968, -0.014162248000502586, -0.0032799793407320976, -0.0034598654601722956, -0.0008389080758206546, -0.031498562544584274, 0.007740146014839411, 0.007719972170889378, -0.0036145339254289865, 0.020470030605793, 0.018076032400131226, 0.0030261215288192034, -0.01134459301829338, -0.012702985666692257, 0.011539610102772713, -0.0029571931809186935, -0.01300559751689434, -0.030530203133821487, 0.005756355356425047, -0.0038263623137027025, 0.022796781733632088, -0.006122852209955454, 0.003765840083360672, -0.00189636938739568, 0.023684443905949593, 0.0008523575379513204, -0.0004892229335382581, -0.015063360333442688, 0.010947834700345993, -0.003421198343858123, -0.015708932653069496, -0.0055714258924126625, -0.005813515279442072, 0.008372269570827484, 0.01722871884703636, 0.007128197234123945, 0.002535217208787799, 0.006045517977327108, 0.007686348631978035, 0.013758765533566475, -0.005201566498726606, 0.00345650315284729, -0.014982663094997406, 0.01829122193157673, -0.022675735875964165, 0.025769105181097984, -0.006741526070982218, -0.028324496001005173, 0.011990165337920189, -0.004650139715522528, 0.008816100656986237, -0.013409079983830452, 0.009717212058603764, -0.01396050676703453, 0.01050400361418724, 0.00023641574080102146, 0.012494519352912903, 0.016529347747564316, -0.02673746459186077, -0.0018946882337331772, 0.04147803783416748, 0.0007624144782312214, -0.01623346097767353, 0.017040425911545753, 0.004044915549457073, -0.0017114398069679737, 0.00788808986544609, 0.008876622654497623, -0.001601322554051876, -0.007894814945757389, -0.0004753532411996275, 0.013879810459911823, 0.0017887740395963192, -0.01066539715975523, 0.0034733149223029613, 0.025957396253943443, 0.01343597937375307, -0.01710767298936844, 0.03451123461127281, -0.00469721294939518, 0.022769883275032043, 0.011774974875152111, 0.0008574010571464896, -0.023859286680817604, -0.0026478562504053116, 0.0008565604803152382, 0.02614568918943405, 0.006986977998167276, -0.010396407917141914, 0.004401325713843107, 0.011902743950486183, -0.006018619053065777, 0.009697037748992443, 0.002585652517154813, -0.00512759480625391, 0.0041121626272797585, -0.019434424117207527, 0.014848168939352036, -0.00689283199608326, -0.020066548138856888, -0.032493818551301956, -0.014269843697547913, 0.002267909934744239, 0.0007111385348252952, 0.004535819869488478, -0.005722731817513704, -0.018089480698108673, -0.012864378280937672, -0.00984498206526041, -0.012474345043301582, -0.0023755053989589214, -0.018681256100535393, 0.009589442983269691, 0.014027753844857216, -3.737995575647801e-05, 0.0014979301486164331, 0.033489078283309937, 0.017080774530768394, 0.004162597935646772, -0.01311991736292839, -0.018856098875403404, -0.013308209367096424, 0.017497707158327103, 0.02797481045126915, -0.013496501371264458, -0.0023872735910117626, 0.007370286621153355, 0.019447874277830124, 0.017726346850395203, 0.010766267776489258, -0.00228472170419991, 0.010356060229241848, 0.005083884112536907, 0.0018425716552883387, -0.02169392816722393, 0.004794721491634846, 0.0014508571475744247, -0.008520212955772877, -0.011687553487718105, -0.007800668478012085, 0.0102350153028965, -0.010147593915462494, -0.004317266400903463, 0.009730661287903786, -0.003896971931681037, 0.005332698579877615, -0.007094573695212603, -0.006015256978571415, -0.03001912496984005, 0.011465637944638729, -0.019299929961562157, 0.012366749346256256, 0.008742128498852253, 0.00884299911558628, -0.005067072343081236, 0.002644493943080306, 0.010658672079443932, -0.002242692280560732, 0.002106516854837537, 0.01833157055079937, 0.0035338373854756355, 0.0019568917341530323, 0.012454170733690262, 0.00034737351234070957, 0.020214490592479706, -0.006223722826689482, 0.005739543586969376, -0.001130592543631792, -0.004818257875740528, 0.0013516675680875778, -0.0016744538443163037, -0.026616418734192848, 0.003617896232753992, -0.012003614567220211, -0.003954132087528706, 0.032816603779792786, -0.014498484320938587, 0.0010272001381963491, -0.019219232723116875, -0.0008616039995104074, 0.02228570356965065, -0.0007250082562677562, -0.024182071909308434, -0.002145183738321066, 0.005033448804169893, -0.008896796964108944, -0.025822902098298073, -0.0021821698173880577, 0.002404085360467434, 0.004367701709270477, -0.003970943856984377, 0.008486589416861534, 0.0060993158258497715, 0.009831531904637814, -0.019259581342339516, -0.012682811357080936, 0.018210526555776596, 0.011263896711170673, -0.002062806161120534, 0.020631423220038414, 0.01577617973089218, 0.013079569675028324, -0.001571061322465539, -0.016838684678077698, -0.004075177013874054, -0.005423482041805983, 0.0019350365037098527, -0.004270193632692099, -0.020026199519634247, 0.011391665786504745, -0.0168252345174551, -0.012884552590548992, -0.0036347080022096634, -0.01537269726395607, -0.0027739445213228464, 0.012017064727842808, -0.01145891286432743, 0.004260106477886438, 0.00691300630569458, 0.002715103328227997, -0.005702557507902384, -0.006805410608649254, 0.0254732184112072, -0.019716862589120865, 0.03556028753519058, 0.027813417837023735, 0.010853689163923264, 0.013973955996334553, -0.00689283199608326, -0.024437611922621727, 0.0025873337872326374, -0.0033371394965797663, 0.0209273099899292, -0.03612516447901726, -0.010490554384887218, -0.013328383676707745, 0.010860413312911987, 0.008177252486348152, 0.008150354027748108, 0.0021922567393630743, 0.00872867926955223, 0.022985072806477547, -0.0008090671617537737, 0.01186912041157484, -0.013456153683364391, -0.014135349541902542, 0.0038566235452890396, 0.00200732727535069, 0.003091687336564064, 0.015265101566910744, 0.013160265982151031, -0.0003675476764328778, 0.023576848208904266, -0.016112415120005608, 0.007719972170889378, 0.008466415107250214, -0.003611171618103981, 0.01751115545630455, -0.000546803348697722, 0.021909119561314583, -0.0042735557071864605, 0.0190981887280941, 0.014041203074157238, -0.007619101088494062, -0.0006111084367148578, -0.0005640354356728494, 0.02037588506937027, -0.01130424439907074, -0.03028811328113079, 0.00982480775564909, 0.015587887726724148, 0.00993912760168314, 0.006697815377265215, 0.019528569653630257, 0.014861618168652058, -0.0030278025660663843, 0.0121650081127882, 0.0033169654197990894, -0.028593484312295914, 0.005655484739691019, 0.011465637944638729, -0.005813515279442072, -0.014565731398761272, 0.012386923655867577, -0.0386536568403244, -0.0035136633086949587, 0.009165785275399685, 0.03383876383304596, -0.003987755626440048, 0.0012844203738495708, 0.00650279875844717, 0.020214490592479706, 0.008264673873782158, -0.02228570356965065, 0.011922918260097504, -0.010107245296239853, -0.004535819869488478, -0.005228465422987938, 0.0011919556418433785, -0.014417787082493305, -0.011236997321248055, -0.009320453740656376, -0.010443481616675854, -0.01827777363359928, 0.01034933514893055, -0.004458485636860132, 0.0019165435805916786, 0.0007935162866488099, -0.021169399842619896, 0.0005968183977529407, -0.0049460274167358875, -0.00100618542637676, -0.013173715211451054, -0.005974908825010061, -0.010288813151419163, -0.009596167132258415, 0.013704967685043812, 0.022823680192232132, 0.020617973059415817, -0.010174492374062538, -0.013079569675028324, 0.0006607031682506204, -0.006872658152133226, 0.013180440291762352, 0.014162248000502586, 0.014727124013006687, -0.016636943444609642, -0.010625048540532589, 0.01911163702607155, -0.008641257882118225, -0.005689108278602362, -0.010409858077764511, 0.0019417612347751856, -0.009831531904637814, -0.014619529247283936, 0.016072066500782967, -0.003950769547373056, 0.0070475004613399506, -0.0031135426834225655, 0.007719972170889378, 0.010766267776489258, 0.010968009009957314, 0.0008187339408323169, 0.024504859000444412, 0.0031387603376060724, -0.00804948341101408, 0.00954909436404705, 0.007908264175057411, 0.0029521496035158634, -0.009091814048588276, 0.007841017097234726, 0.006960079073905945, -0.02675091288983822, 0.0051578558050096035, 0.010968009009957314, -0.021640131250023842, -0.013113193213939667, -0.0065700458362698555, 0.0031488474924117327, 0.014189147390425205, 0.04430241882801056, -0.016596594825387, 0.003128673415631056, 0.0002828582946676761, -0.0003293008485343307, 0.014014304615557194, 0.0220570620149374, -0.00784774124622345, 0.004929215647280216, -0.00043248318252153695, -0.01951512135565281, 0.009771009907126427, 0.007383736316114664, -0.001434885896742344, -0.006707902532070875, 0.03001912496984005, -0.018842648714780807, 0.03744320943951607, 0.0026932479813694954, 0.01521130371838808, 0.01268953550606966, 0.00020079576643183827, -0.017524605616927147, -0.0022662286646664143, 0.02937355265021324, 0.006401928141713142, 0.005248639266937971, 0.013153540901839733, 0.007659449707716703, -0.016206560656428337, -0.017390111461281776, 0.017901189625263214, -0.001975384773686528, 0.008015858940780163, 0.00839244294911623, -0.022218456491827965, -0.0007758638821542263, -0.01268953550606966, -0.0039978427812457085, 0.013745316304266453, 0.01339563075453043, -0.012662637047469616, -0.00825794879347086, -0.0057328189723193645, 0.013906708918511868, 0.0029134824872016907, 0.008419342339038849, 0.028996968641877174, -0.022137759253382683, 0.003560736309736967, -0.0004951070877723396, 0.014390888623893261, -0.006882744841277599, 0.012958524748682976, 0.015937572345137596, 0.030664697289466858, 0.004986375570297241, -0.004925853107124567, -0.013025771826505661, -0.007800668478012085, 0.00021939379803370684, 0.014875068329274654, -0.0034733149223029613, -0.022083962336182594, -0.0007157617947086692, 0.0011448826408013701, -2.869824356821482e-06, 0.017659099772572517], "fec6b74a-2339-487b-bd6f-71fdec66b791": [0.012464676983654499, -0.001705265254713595, -0.005795871838927269, 0.038030121475458145, 0.026404544711112976, -0.006107150577008724, -0.010211290791630745, 0.016064681112766266, -0.012897760607302189, -0.04850532487034798, -0.001375377643853426, 0.049912843853235245, -0.011280464939773083, 0.031290262937545776, 0.00980527512729168, 0.029287254437804222, -0.021884238347411156, 0.003549252636730671, -0.012958662584424019, -0.02196544036269188, 0.04666471853852272, 0.01039399765431881, -0.1038317084312439, 0.02166769653558731, 0.028204547241330147, 0.03145267069339752, 0.008593996055424213, 0.0018372202757745981, -0.03659553453326225, 0.026147400960326195, 0.006509782746434212, 0.004977073986083269, 0.029909811913967133, 0.02357596904039383, 0.007788731716573238, -0.05922413244843483, 0.005301886238157749, 0.018338369205594063, -0.0023988750763237476, -0.004151509143412113, -0.010339862667024136, 0.0056876009330153465, 0.0013838362647220492, -0.013351144269108772, -0.031479738652706146, 0.008086476475000381, 0.0238195788115263, 0.02067972533404827, -0.024103788658976555, 0.003332710824906826, 0.0034883501939475536, -0.021491756662726402, -0.024929353967308998, 0.014833101071417332, 0.006804144009947777, -0.03310380131006241, -0.02636394277215004, 0.01098272018134594, -0.004472937900573015, -0.03478199988603592, -0.01898799277842045, -0.025781987234950066, -0.02302108146250248, -0.017106788232922554, -0.015496259555220604, -0.0038503806572407484, 0.006969933398067951, 0.020815063267946243, -0.0411970429122448, 0.004388351459056139, 0.019854160025715828, 0.041548922657966614, 0.00786316767334938, 0.015239116735756397, -0.027771463617682457, 0.005440608132630587, 0.020720327273011208, 0.017282728105783463, -0.009399259462952614, 0.030667707324028015, 0.024658678099513054, -0.017742879688739777, 0.038219597190618515, -0.041061706840991974, 0.0334286130964756, -0.007680460810661316, 0.0064522637985646725, -0.021735364571213722, -0.02549777552485466, -0.040439147502183914, 0.03226470202207565, 0.014115806668996811, -0.010509035550057888, 0.010353396646678448, -0.011530841700732708, 0.024780482053756714, 0.035566963255405426, 0.0067094070836901665, 0.0009710538433864713, -0.01498197391629219, -0.001643517054617405, 0.010021816939115524, -0.029801540076732635, 0.03532335162162781, -0.0009718997171148658, -0.01986769400537014, -0.015983479097485542, 0.010637607425451279, -0.02501055784523487, 0.010373696684837341, -0.015672199428081512, -0.05040006339550018, 0.004730081185698509, 0.03548575937747955, -0.04227975010871887, -0.010536103509366512, -0.024591008201241493, -0.0002785012766253203, 0.008769935928285122, -0.024536872282624245, 0.03410530462861061, 0.02191130630671978, -0.03472786396741867, -0.04073689132928848, -0.03158801048994064, 0.0042428625747561455, -0.005900759249925613, 0.0006339763640426099, 0.016051147133111954, 0.005596247501671314, -0.012315805070102215, 0.0036236888263374567, 0.003212597919628024, 0.019840626046061516, 0.0010835540015250444, 0.009798508137464523, -0.004401884973049164, -0.0016655095387250185, -0.0345383882522583, 0.030532369390130043, -0.07513993978500366, -0.0036879745312035084, -0.013439114205539227, 0.004148125648498535, 0.006905647926032543, -0.030721843242645264, 0.02544364146888256, 0.009825576096773148, 0.012613549828529358, 0.003701508278027177, -0.013107535429298878, -0.07135046273469925, -0.02982860803604126, 0.0076060243882238865, 0.013845129869878292, -0.027000034227967262, -0.04809930920600891, 0.006086849607527256, 0.03694741427898407, 0.032589513808488846, -0.03483613207936287, -0.019015060737729073, 0.0013829903909936547, 0.00869549997150898, 0.0014718063175678253, 0.005315420217812061, 0.030803045257925987, 0.004807900637388229, -0.023372961208224297, 0.01917746663093567, 0.02185717038810253, -0.01609174907207489, 0.03150680661201477, 0.009832343086600304, -0.032589513808488846, -0.011402269825339317, 0.01389926578849554, 0.04636697471141815, 0.015212048776447773, 0.002087596571072936, -0.026824094355106354, -0.002285529160872102, 0.0016282914439216256, 0.011815052479505539, -0.0020199273712933064, 0.028394021093845367, -0.004050005227327347, 0.04076395928859711, 0.03210229426622391, 0.0016232163179665804, -0.003055267035961151, 0.011916556395590305, -0.001915039960294962, 0.029422592371702194, 0.0033191770780831575, 0.011104525066912174, -0.011118059046566486, -0.012600015848875046, -0.040872231125831604, 0.051455702632665634, 0.014508288353681564, -0.03819252923130989, -0.012342872098088264, 0.020530853420495987, -0.02847522310912609, 0.01358122006058693, -0.0178240817040205, 0.010069185867905617, 0.005751886870712042, 0.008181213401257992, 0.03269778564572334, -0.014427085407078266, 0.025457175448536873, -0.00490263756364584, -0.013127835467457771, 0.0007904614903964102, 0.005305269733071327, 0.0366496704518795, -0.0020723710767924786, -0.045879755169153214, 0.0336451530456543, 0.029720338061451912, -0.014102273620665073, -0.01578047126531601, -0.03708275407552719, -0.018798518925905228, 0.0010953961173072457, 0.049425624310970306, -0.04420156031847, 0.006408278830349445, 0.016078215092420578, -0.013344377279281616, -0.021369950845837593, -0.02934139035642147, 0.018663180992007256, 0.052890289574861526, 0.049290288239717484, -0.0335368849337101, -0.01222783513367176, -0.01591580919921398, 0.0064556472934782505, -0.012295504100620747, 0.02710830420255661, -0.013567686080932617, 0.03064063936471939, 0.03069477528333664, 0.035242147743701935, -0.005965045187622309, 0.027527853846549988, -0.019894761964678764, -0.03107372298836708, 0.006205270998179913, 0.001648592296987772, -0.0264316126704216, -0.04628577083349228, 0.01333761028945446, -0.01023835875093937, -0.0399789959192276, 0.03507974371314049, -0.03269778564572334, 0.01498197391629219, 0.036541398614645004, -0.011442871764302254, 0.04482411593198776, 0.003972185309976339, -0.03656846657395363, 0.025903791189193726, -0.04103463888168335, -0.0006534312851727009, -0.00250714598223567, -0.03405116870999336, 0.015306785702705383, 0.006093616597354412, -0.005839856807142496, -0.00676354207098484, -0.010407531633973122, 0.03367222100496292, -0.06420458853244781, -0.005474443081766367, -0.025457175448536873, -0.03529628366231918, -0.012336106039583683, 0.002544363960623741, 0.00891204085201025, -0.012633849866688251, -0.004669178742915392, -0.04003313183784485, -0.013743625953793526, -0.012978963553905487, -0.020936869084835052, 0.0037285760045051575, -0.0011309224646538496, 0.044769980013370514, 0.014156408607959747, -0.004899254068732262, 0.03743463382124901, -0.014738364145159721, 0.039951927959918976, -0.0105225695297122, 0.05803315341472626, -0.027000034227967262, -0.015685733407735825, -0.038896288722753525, 0.008648131042718887, -0.0051124123856425285, 0.0027338380459696054, 0.04555494338274002, 0.0007519746432080865, -0.016254154965281487, 0.027270710095763206, 0.034132372587919235, -0.04420156031847, -0.026336874812841415, 0.020652657374739647, 0.020097769796848297, 0.03261658176779747, 0.015983479097485542, 0.005477826576679945, -0.009020311757922173, 0.00527820223942399, 0.041007570922374725, 0.009433094412088394, -0.030857181176543236, -0.01253234688192606, 0.01308723445981741, -0.03724515810608864, -0.014521822333335876, -0.030478233471512794, 0.014034603722393513, -0.01886618882417679, -0.052890289574861526, -0.00017245087656192482, -0.015076710842549801, 0.015090243890881538, -0.043308325111866, -0.030153421685099602, -0.011131593026220798, -0.058520372956991196, 0.005778954364359379, -0.015184981748461723, 0.007991739548742771, -0.0010852457489818335, -0.03188575431704521, -0.02618800289928913, 0.03294139355421066, 0.01820302940905094, -0.027649657800793648, 0.0016392878023907542, -0.027933869510889053, -0.0017847766866907477, 0.0009329898748546839, 0.01092181820422411, 0.04693539813160896, 0.011185728013515472, 0.014684229157865047, -0.05862864479422569, 0.011422570794820786, 0.020138371735811234, -0.00220432598143816, -0.010935352183878422, -0.020327845588326454, 0.00012360213440842927, -0.016917314380407333, -0.018094759434461594, -0.00017012473836075515, -0.02364363893866539, 0.030857181176543236, 0.011916556395590305, -0.012735353782773018, -0.03911283239722252, -0.002551130950450897, 0.0035018841736018658, 0.014833101071417332, 0.011057157069444656, -0.03204816207289696, -0.010786479339003563, 0.019664686173200607, -0.019407542422413826, -0.03973538801074028, -0.010150388814508915, -0.025578979402780533, 0.007098505273461342, -0.03559402748942375, -0.0008107622852548957, -0.014860169030725956, 0.022493261843919754, 0.01752633787691593, 0.03621658682823181, 0.02128874883055687, -0.0027795147616416216, -0.04195493832230568, 0.027257176116108894, -0.006807527504861355, -0.006276323460042477, -0.011084224097430706, -0.014521822333335876, 0.01919100061058998, -0.014643627218902111, 0.017972955480217934, -0.02277747169137001, 0.006039481144398451, 0.005427074618637562, -0.01874438486993313, 0.00668572261929512, 0.019840626046061516, -0.029991013929247856, -0.03137146681547165, -0.026539882645010948, -0.009940613992512226, 0.014197010546922684, 0.00034342147409915924, 0.003007898572832346, 0.010996254161000252, 0.03207522630691528, 0.035621095448732376, 0.04501359164714813, -0.018365437164902687, 0.0463128387928009, -0.0008352923905476928, -0.013547385111451149, 0.046637650579214096, 0.02728424407541752, 0.0040567717514932156, 0.027148906141519547, 0.04068275913596153, 0.00509211141616106, -0.01912333257496357, 0.03359102085232735, 0.010840615257620811, -0.038896288722753525, 0.025375971570611, 0.04847825691103935, -0.0003749299794435501, -0.023738374933600426, 0.027933869510889053, -0.027460183948278427, -0.006323691923171282, 0.028015073388814926, 0.04414742439985275, -0.008052641525864601, -0.04425569251179695, 0.006925948429852724, -0.01042783260345459, 0.01682257652282715, -0.00881730392575264, 0.005186848342418671, -0.03505267575383186, -0.01571280136704445, -0.009243620559573174, 0.026377476751804352, 0.029909811913967133, -0.02017897181212902, -0.050914350897073746, -0.004983840975910425, -0.013980468735098839, 0.011043623089790344, 0.02520003169775009, -0.016619568690657616, -0.00020089310419280082, -0.03445718437433243, -0.03383462876081467, -0.02852935902774334, 0.018392503261566162, 0.023630104959011078, 0.035648163408041, -0.03407823666930199, 0.012342872098088264, -0.027988005429506302, 0.006868429481983185, 0.018527843058109283, -0.018730850890278816, -0.014088739641010761, 0.01981355808675289, 0.029314322397112846, -0.004374817479401827, 0.0019251903286203742, -0.013418814167380333, 0.049182016402482986, 0.004462787415832281, 0.021559424698352814, -0.0036981250159442425, -0.03318500518798828, -0.013648889027535915, 0.004763915669173002, 0.029720338061451912, -0.04306471347808838, 0.0008771627326495945, -0.004046621732413769, 0.018378971144557, -0.012958662584424019, 0.03045116551220417, 0.019204534590244293, 0.03935644030570984, 0.03421357646584511, -0.006621436681598425, 0.03756996989250183, -0.03183161839842796, -0.028989510610699654, 0.0013060166966170073, -0.022872209548950195, 0.03448425233364105, -0.00509211141616106, 0.016687238588929176, -0.04046621546149254, -0.00727444514632225, 0.004070305731147528, -0.049236152321100235, 0.023237623274326324, 3.351742998347618e-05, 0.0005992958322167397, -0.0004294883110560477, 0.021572958678007126, -0.04054741933941841, 0.0022330854553729296, 0.02345416508615017, -0.002925003645941615, -0.010590238496661186, 0.026594018563628197, -8.756032002565917e-06, -0.015645131468772888, -0.002376882592216134, 0.007511287461966276, -0.03943764418363571, -0.014873703010380268, -0.034619592130184174, -0.010008282959461212, -0.017093254253268242, -0.03832786902785301, -0.015063176862895489, -0.02549777552485466, -0.014142874628305435, 0.04076395928859711, -0.01006241887807846, -0.00246823625639081, -0.007558655925095081, 0.010454900562763214, -0.004780833143740892, 0.0031127857510000467, 0.002043611602857709, 0.013818061910569668, -0.0379759855568409, 0.05345871299505234, -0.019664686173200607, -0.008776702918112278, 0.02185717038810253, 0.02624213881790638, -0.03743463382124901, -0.006834594998508692, -0.00027109996881335974, 0.004046621732413769, -0.03156094253063202, -0.0126879857853055, 0.019042128697037697, -0.0014041371177881956, -0.00744361849501729, -0.01596994511783123, 0.024428602308034897, 0.0034443652257323265, -0.013587987050414085, -0.015387988649308681, -0.01912333257496357, 0.031209060922265053, 0.011727082543075085, 0.020260175690054893, 0.013811295852065086, 0.0028945524245500565, 0.018148895353078842, -0.020287243649363518, -0.021207544952630997, 0.0421985499560833, 0.000955828232690692, -0.012647383846342564, 0.02920605055987835, -0.01578047126531601, 0.012451143004000187, -0.002992672845721245, 0.0335368849337101, 0.023169953376054764, -0.038842152804136276, -0.026323340833187103, 0.0067703090608119965, 0.0025206797290593386, -0.014630093239247799, -0.0021383485291153193, 0.03396996855735779, 0.03286018967628479, -0.009676704183220863, -0.020327845588326454, -0.005288352258503437, 0.02779853157699108, -0.011916556395590305, 0.02963913418352604, -0.013344377279281616, 0.006797377020120621, -0.028502291068434715, 0.046204566955566406, -0.013202272355556488, 0.011774450540542603, 0.01955641619861126, 0.007565422914922237, 0.01225490216165781, 0.021613560616970062, 0.03156094253063202, -0.0025984994135797024, -0.01689024642109871, 0.019759424030780792, 0.024171458557248116, -0.000541354063898325, -0.009060913696885109, 0.013953400775790215, -0.016240620985627174, -0.029747406020760536, 0.010664675384759903, -0.01808122545480728, 0.029260186478495598, -0.005630081985145807, 0.005538728553801775, 0.030045149847865105, 0.013723324984312057, 0.02896244265139103, 0.008194747380912304, -0.03992486000061035, 0.03434891626238823, -0.040574487298727036, 0.02177596651017666, -0.010075952857732773, 0.0019877844024449587, -0.006868429481983185, -0.011551141738891602, 0.011212795972824097, -0.017918819561600685, -0.004486471880227327, 0.004686096217483282, -0.011158660054206848, -0.0014472762122750282, -0.009304522536695004, -0.0036879745312035084, 0.050914350897073746, -0.023102283477783203, -0.019705288112163544, -0.005136096850037575, -0.01825716532766819, -0.009521064348518848, 0.039951927959918976, 0.0033547035418450832, 0.0020740628242492676, -0.02618800289928913, 0.015563929453492165, 0.031236128881573677, 0.012146631255745888, 0.02402258664369583, 0.0006745778955519199, -0.0020689875818789005, 0.024049654603004456, 0.009324823506176472, -0.007294746115803719, -0.003708275267854333, 0.01701205037534237, 0.023684240877628326, 0.008194747380912304, 0.0029047029092907906, 0.008898506872355938, -0.0012637233594432473, -0.004611659795045853, -0.0003053575346712023, 0.024225594475865364, 0.033888764679431915, 0.01259324885904789, 0.02011130377650261, 0.02239852398633957, 0.006472564302384853, -0.03794891759753227, -0.004158275667577982, 0.005724819377064705, -0.02400905266404152, 0.01284362468868494, 0.010989487171173096, -0.002997748088091612, 0.0023971833288669586, -0.014305280521512032, 0.008898506872355938, 5.741313361795619e-05, -0.024469204246997833, 0.01392633281648159, -0.0037353429943323135, -0.016971450299024582, 0.015428590588271618, -0.030803045257925987, -0.02264213375747204, -0.0032701168674975634, -0.012755654752254486, -0.01479250006377697, -0.007531588431447744, -0.0015208665281534195, 0.014372950419783592, -0.011659412644803524, 0.01881205290555954, 0.004466170910745859, -0.028881238773465157, -6.402146391337737e-05, -0.03621658682823181, -0.03800305351614952, -0.03202109411358833, -0.05264668166637421, -0.025024091824889183, 0.016727840527892113, -0.01775641366839409, -0.018825586885213852, -0.03705568611621857, 0.005677450448274612, 0.004110907204449177, 0.016186486929655075, 0.019651152193546295, -0.008370687253773212, 0.007436851505190134, 0.049182016402482986, -0.010732344351708889, 0.010042117908596992, 0.013743625953793526, -0.008066175505518913, 0.02580905519425869, 0.013500017113983631, -0.009318056516349316, 0.007071437314152718, -0.005887225270271301, -0.017377465963363647, -0.011273697949945927, 0.016010547056794167, 0.007565422914922237, -0.0014295130968093872, 0.0029520713724195957, -0.0070105348713696, -0.008648131042718887, 0.0050751944072544575, -0.02016543783247471, 0.0038097791839390993, -0.040818095207214355, 0.023616570979356766, 0.04772036150097847, -0.013364678248763084, -0.0021518822759389877, -0.036730874329805374, 0.002390416571870446, -0.0355398952960968, -0.03794891759753227, 0.0247669480741024, 0.024969955906271935, 0.01690378040075302, 0.02779853157699108, -0.012620316818356514, 0.02284514158964157, -0.026702288538217545, 0.0487489327788353, -0.005877074785530567, -0.02580905519425869, -0.003968801815062761, 0.04715193808078766, 0.00856692809611559, -0.015225582756102085, 0.036974482238292694, -0.01333761028945446, 0.03502560779452324, 0.01190978940576315, -0.013696257956326008, 0.03318500518798828, -0.010908284224569798, -0.002622183645144105, 0.04241508990526199, 0.016389494761824608, -0.011246630921959877, 0.02667522057890892, 0.008052641525864601, 0.0014921071706339717, 0.026661686599254608, -0.005281585734337568, 0.012525579892098904, 0.020950401201844215, 0.03145267069339752, -0.0017390998546034098, -0.0027710560243576765, -0.02866469696164131, 0.004523689858615398, 0.002960530109703541, 0.016849644482135773, -0.01596994511783123, -0.05191585421562195, 0.0463128387928009, 0.03978952392935753, -0.01331054326146841, -0.018284233286976814, 0.016105283051729202, -0.002508837729692459, -0.00234473985619843, 0.016254154965281487, 0.010590238496661186, -0.031777482479810715, 0.014670695178210735, -0.002200942486524582, -0.00026200691354461014, -0.001791543560102582, -0.02487521804869175, -0.029855675995349884, 0.04482411593198776, 0.015144379809498787, 0.028231613337993622, -0.03210229426622391, -0.028881238773465157, 0.0033597785513848066, -0.004259779583662748, -0.0069970013573765755, 0.014603025279939175, -0.03272485360503197, -0.008986477740108967, 0.011936857365071774, -0.02785266563296318, -0.004259779583662748, 0.005416924133896828, 0.002089288318529725, -0.011930090375244617, 0.003378387773409486, -0.03161507844924927, -0.00408383971080184, 0.015401522628962994, 0.003281958866864443, -0.009169184602797031, 0.026255670934915543, 0.01590227521955967, 0.015618064440786839, -0.0053966231644153595, -0.021261680871248245, -0.02066619135439396, -0.007382716052234173, -0.0001722394081298262, 0.030126353725790977, 0.0028877854347229004, 0.045338403433561325, -0.017715811729431152, -0.01583460532128811, -0.0019776341505348682, 0.04103463888168335, -0.029612066224217415, -0.009128582663834095, -0.03188575431704521, 0.005115795880556107, 0.024861685931682587, -0.006611286196857691, 0.0010412606643512845, -0.032778989523649216, 0.0221549142152071, 0.005068427417427301, 0.012965429574251175, 0.01714739017188549, 0.022073712199926376, 0.03175041452050209, -0.0035627863835543394, 0.005504894070327282, -0.005897375755012035, -0.0001968752476386726, -0.058087289333343506, -0.021207544952630997, -0.002332897624000907, 0.03286018967628479, -0.026648152619600296, 0.016186486929655075, -0.006076699122786522, -0.0051496303640306, 0.009609034284949303, -0.04569028317928314, 0.0086616650223732, -0.0064860982820391655, 0.028448155149817467, 0.00305695878341794, 0.04003313183784485, -0.019421076402068138, 0.004388351459056139, 0.008729333989322186, -0.022682735696434975, -0.022872209548950195, -0.021951906383037567, -0.007822565734386444, 0.017837615683674812, 0.014467687346041203, -0.009527831338346004, 0.012640616856515408, -0.005846623796969652, -0.0005070964689366519, 0.02748725190758705, 0.0184331052005291, 0.007430084515362978, -0.005027825944125652, 0.019583482295274734, -0.03218349814414978, -0.0007435159641318023, -0.011023322120308876, -0.00801204051822424, -0.01603761315345764, 0.0064488803036510944, -0.028366953134536743, -0.006597752682864666, -0.02674289047718048, 0.014643627218902111, -0.028935374692082405, -0.033753424882888794, -0.004293614532798529, 0.026959432289004326, -0.00789700262248516, -0.004950006026774645, 0.019705288112163544, 0.00011990146595053375, 0.006618053186684847, -0.003755643730983138, -0.010481967590749264, 0.0005764574743807316, 0.00010631475015543401, 0.04398501664400101, 0.029801540076732635, 5.851672540302388e-06, 0.00875640194863081, 0.009277455508708954, -0.005538728553801775, -0.029991013929247856, 0.019285738468170166, 0.011524074710905552, 0.02166769653558731, 0.027676725760102272, -0.007883468642830849, -0.018960926681756973, -0.018554911017417908, 0.027933869510889053, 0.01701205037534237, -0.011388735845685005, -0.003210906172171235, 0.005758653860539198, 0.013763926923274994, 0.0335368849337101, -0.018676714971661568, 0.006587602198123932, -0.001833836897276342, -0.011740616522729397, -0.003474816447123885, 0.012024827301502228, 0.02153235673904419, -0.0037725609727203846, -0.053377509117126465, -0.009013544768095016, -0.04891134053468704, -0.013412047177553177, 0.015672199428081512, 0.010509035550057888, 0.012309038080275059, -0.01992182992398739, 0.02698650024831295, 0.0053695556707680225, -0.004317298531532288, 0.015482726506888866, -0.003407147014513612, 0.006374443881213665, -0.011260163970291615, 0.028204547241330147, -0.01194362435489893, -0.014846635051071644, -0.03594591096043587, -0.021640628576278687, 0.021085740998387337, -0.03050530143082142, 0.016606036573648453, -0.00915565062314272, -0.014833101071417332, -0.026891762390732765, -0.028258681297302246, -0.012809790670871735, -0.016484230756759644, 0.012823324650526047, -0.011530841700732708, 0.029124848544597626, 0.007531588431447744, -0.027257176116108894, 0.0005155551480129361, -0.034186508506536484, -0.026066197082400322, 0.00027680955827236176, 0.004828201606869698, -0.030803045257925987, 0.007822565734386444, 0.01825716532766819, -0.013378212228417397, 0.01253234688192606, 0.021884238347411156, 0.004412035457789898, 0.022452659904956818, 0.0004842581111006439, -0.015753403306007385, -0.0005811097216792405, 0.006577451713383198, 0.02035491168498993, -0.0010201140539720654, -0.021870704367756844, -0.016443628817796707, -0.01027219370007515, -0.0016359043074771762, 0.006242488976567984, -0.019326340407133102, -0.02698650024831295, 0.012281970120966434, 0.01657896861433983, 0.01962408423423767, 0.017160924151539803, 0.004334216006100178, -0.007071437314152718, 0.028312817215919495, -0.03424064442515373, 0.01844663918018341, 0.013966934755444527, 0.023900780826807022, -0.004757148679345846, -0.0005984500166960061, -0.029936879873275757, -0.05570533126592636, 0.027568455785512924, 0.019339874386787415, -0.006678955629467964, 0.016754908487200737, -0.026255670934915543, -0.01197069138288498, -0.0037759444676339626, -0.0011799826752394438, -0.0345383882522583, 0.0056165484711527824, 0.01234963908791542, 0.022479727864265442, -0.003975568804889917, -0.0018473707605153322, -0.003843613900244236, -0.015983479097485542, 4.171175169176422e-05, -0.027960937470197678, -0.007396250031888485, -0.05459555611014366, -0.02135641686618328, -0.00900677777826786, 0.03708275407552719, -0.019082730636000633, -0.014494755305349827, 0.008025573566555977, 0.016754908487200737, 0.010339862667024136, -0.0011486856965348125, -0.004296998027712107, 0.007660159841179848, -0.002794740255922079, 0.001687502139247954, -0.010962419211864471, -0.007200009189546108, -0.0048451186157763, -0.006814294029027224, 0.012234602123498917, 0.009358658455312252, -0.017594007775187492, 0.006611286196857691, 0.02024664171040058, 0.012024827301502228, -0.0205985214561224, 0.0067736925557255745, -0.02172183245420456, 0.006563917733728886, 0.014291747473180294, -0.03212936222553253, 0.003464665962383151, -0.009365425445139408, 0.007666926831007004, -0.010671441443264484, 0.00592782674357295, 0.005268051754683256, -0.020192505791783333, 0.004283464048057795, -0.010204523801803589, 0.010915051214396954, -0.010549637489020824, -0.008898506872355938, -0.0010750953806564212, -0.009947380982339382, 0.033266205340623856, -0.006841361988335848, -0.02672935649752617, -0.006503015756607056, -0.01744513399899006, -0.0013237798120826483, -0.009054146707057953, 0.0014743439387530088, -0.004696246236562729, -0.014278213493525982, 0.026160934939980507, 0.02475341409444809, 0.013750392943620682, -0.00904061272740364, 0.003085718024522066, 0.0036067713517695665, 0.04022260755300522, 0.020219573751091957, -0.0064894817769527435, 0.005217299796640873, -0.017742879688739777, -0.008702266030013561, 0.029801540076732635, 0.012484977953135967, 0.029503796249628067, -0.026160934939980507, -0.01027219370007515, -0.019962430000305176, -0.01203836128115654, 0.008370687253773212, 0.010698509402573109, 0.016308290883898735, 0.019827092066407204, 0.018581977114081383, 0.017675209790468216, 0.004956773016601801, -0.02080152928829193, 0.008648131042718887, -0.0009262229432351887, 0.016998518258333206, 0.0005684217321686447, -0.011984225362539291, -0.0039045161101967096, -0.016917314380407333, -0.007524821441620588, 0.010806780308485031, 0.006303391419351101, 0.004892487078905106, 0.013980468735098839, 0.00010599754750728607, -0.006712790112942457, -0.0009270688169635832, -0.014711296185851097, 0.014481221325695515, -0.0031483122147619724, 0.003094176761806011, -0.00829625129699707, 0.00318045518361032, -0.0026915445923805237, 0.030667707324028015, -0.016930848360061646, 0.004205644130706787, -0.013540618121623993, -0.0025629731826484203, 0.022994013503193855, -0.01312106940895319, 0.015875207260251045, 0.005555646028369665, -0.04999404773116112, -0.011727082543075085, -0.0026052664034068584, -0.006387977860867977, -0.011618811637163162, -0.006601136177778244, 0.029747406020760536, 0.009940613992512226, -0.007416550535708666, -0.0035661698784679174, 0.023860180750489235, -0.01745866797864437, 0.002965605119243264, -0.003711658762767911, -0.005301886238157749, 0.014386484399437904, -0.013851896859705448, 0.012085729278624058, 0.016538366675376892, -0.022006042301654816, -0.013263174332678318, -0.011246630921959877, -0.01377069391310215, 0.006127451080828905, 0.026526348665356636, -0.002869176445528865, 0.005325570702552795, -0.013127835467457771, 0.0027862817514687777, -0.004286847542971373, 0.02445567026734352, -0.012579714879393578, -0.007761663757264614, 0.01894739270210266, 0.010434599593281746, -0.0073218136094510555, -0.02016543783247471, -0.01789175160229206, -0.005200382322072983, -0.048613592982292175, 0.030180487781763077, -0.009358658455312252, -0.002884402172639966, 0.005207149311900139, -0.024739880114793777, 0.03924816846847534, -0.021194010972976685, -0.01590227521955967, -0.0064488803036510944, 0.007978205569088459, 0.006760158576071262, 0.0045372238382697105, 0.005325570702552795, 0.00044365657959133387, 0.02852935902774334, -0.0014701145701110363, -0.011456404812633991, -0.015049642883241177, 0.014616559259593487, 0.0033056430984288454, 0.005420307628810406, -0.030667707324028015, -0.007524821441620588, -0.019394008442759514, -0.010251892730593681, -0.022141380235552788, 0.02896244265139103, -0.002031769370660186, -0.022479727864265442, 0.0020605288445949554, 0.0009109973907470703, 0.01961055025458336, -0.01445415336638689, -0.012484977953135967, -0.007375949062407017, 0.01664663664996624, -0.004831585101783276, -0.014751898124814034, 0.03267071768641472, 0.01634889282286167, 0.016754908487200737, 0.016321824863553047, 0.005521811544895172, 0.01361505500972271, 0.02866469696164131, 0.003464665962383151, -0.025700783357024193, -0.00740978354588151, -0.024739880114793777, -0.013100768439471722, 0.007112038787454367, 0.010414298623800278, -0.0038571476470679045, 0.0005718052270822227, -0.021830102428793907, 0.009230086579918861, -0.017594007775187492, -0.0013449265388771892, 0.003376696025952697, -0.006222188007086515, 0.04777449741959572, -0.022506795823574066, 0.0036473730579018593, -0.02402258664369583, -0.0048552691005170345, -0.03296846151351929, -0.014427085407078266, -0.016619568690657616, 0.015387988649308681, 0.006107150577008724, -0.026093265041708946, 0.026945898309350014, 0.011517307721078396, -0.0038706816267222166, 0.014183476567268372, -0.046827126294374466, -0.018703782930970192, 0.003941734321415424, -0.018839120864868164, 0.017242126166820526, 0.0013762235175818205, -0.03156094253063202, -0.016227087005972862, 0.004439103417098522, 0.020151905715465546, -0.018703782930970192, 0.017553405836224556, 0.020963935181498528, -0.005251134280115366, -0.028204547241330147, 0.009324823506176472, 0.005860157776623964, -0.012471443973481655, 0.018162429332733154, -0.038084257394075394, -0.014521822333335876, 0.01659250259399414, 0.0025308302138000727, -0.0020250026136636734, 0.007693994324654341, -0.00717970822006464, 0.010590238496661186, 0.009717305190861225, 0.008330085314810276, 0.023603036999702454, -0.013344377279281616, -0.005721435882151127, -0.007558655925095081, -0.018663180992007256, 0.030180487781763077, -0.005193615332245827, -0.0026424843817949295, 0.011165427044034004, 0.0004584592243190855, -0.018784984946250916, 0.013019565492868423, -0.009230086579918861, -0.0030671090353280306, -0.006069932598620653, -0.003934967331588268, -0.008181213401257992, 0.002339664613828063, 0.002290604403242469, -0.008025573566555977, 0.027825597673654556, -0.027257176116108894, -0.010928585194051266, -0.015807539224624634, 0.004405268467962742, 0.035242147743701935, -0.02141055278480053, -0.023359427228569984, -0.010251892730593681, -0.0006889576325193048, -0.00300113158300519, -0.029720338061451912, -0.030288759618997574, -0.007653392851352692, 0.018960926681756973, 0.00717970822006464, 0.009724072180688381, 0.019705288112163544, 0.014494755305349827, 0.028691764920949936, 0.003375004278495908, 0.006902264431118965, 0.015387988649308681, -0.027189508080482483, 0.009703771211206913, 0.017404532060027122, 0.007375949062407017, -0.02383311279118061, -0.006398128345608711, -0.0002125237660948187, 0.0038503806572407484, -0.04374140873551369, 0.010739111341536045, 0.002458085771650076, -0.018960926681756973, 0.02530830167233944, -0.0031009437516331673, -0.004780833143740892, -0.007247377652674913, 0.030965453013777733, 0.010441366583108902, 0.009974448941648006, -0.03164214640855789, -0.01981355808675289, 0.001835528644733131, 0.005768804345279932, 0.018392503261566162, -0.0048485021106898785, -0.024036120623350143, -0.0096902372315526, -0.007903769612312317, 0.0010277268011122942, 0.02705416828393936, -0.01259324885904789, -0.03702861815690994, 0.03510681167244911, -0.018839120864868164, -0.01253234688192606, -0.014562424272298813, 0.004175193142145872, 0.029503796249628067, -0.009135349653661251, 0.0039924862794578075, -0.002339664613828063, -0.011287231929600239, 0.040385011583566666, -0.003630455583333969, 0.0002835764898918569, -0.027243642136454582, -0.002216168213635683, -0.01751280389726162, 0.01770227774977684, 0.02530830167233944, 0.02227672003209591, -0.0004774912085849792, 0.010197756811976433, 0.0108270812779665, 0.0018169195391237736, -0.0036236888263374567, 0.01992182992398739, 0.0037691777106374502, -0.012403775006532669, 0.0056876009330153465, -0.011936857365071774, 0.0024817700032144785, 0.019109798595309258, 0.01733686402440071, -0.014061671681702137, -0.012505278922617435, -0.029043644666671753, 0.002158649265766144, -0.014643627218902111, 0.0003603388031478971, -0.042496293783187866, 0.007152640260756016, -0.0024259428028017282, -0.016430094838142395, -3.2063599064713344e-05, -0.0007663543219678104, 0.016064681112766266, 0.036108314990997314, -0.000165049554198049, -0.008641364052891731, 0.015144379809498787, 0.015496259555220604, 0.014345882460474968, -0.020273709669709206, 0.012329339049756527, -0.016795510426163673, 0.008702266030013561, -0.005745119880884886, 0.005515044555068016, -0.026499280706048012, -0.021748898550868034, 0.0051462468691170216, 0.00025058770552277565, -0.014697762206196785, 0.0015335545176640153, -0.009121815674006939, -0.008533093146979809, -0.01980002410709858, 0.014778966084122658, -0.017120322212576866, -0.01141580380499363, -0.007342114578932524, -0.00061282969545573, 0.001081016380339861, 0.02953086420893669, -0.013560919091105461, 0.009649636223912239, -0.018798518925905228, 0.012214301154017448, -0.015455658547580242, -0.026445144787430763, 0.005156397353857756, -0.020557919517159462, 0.009622568264603615, -0.0009363733697682619, -0.010015049949288368, -0.0003573782742023468, -0.004127824679017067, 0.010245125740766525, -0.005799255333840847, 0.02679702639579773, 0.005819556303322315, 0.007585723884403706, -0.006418428849428892, -0.00977820809930563, 0.0014058288652449846, -0.002886093920096755, -0.03491733595728874, -0.02047671750187874, -0.022547395899891853, 0.03572936728596687, -0.015090243890881538, 0.028258681297302246, 0.0069970013573765755, -0.004378200974315405, 0.026377476751804352, -0.019394008442759514, -0.006969933398067951, -0.037218090146780014, -6.053226570656989e-06, 0.005176698323339224, -0.027311312034726143, -0.0015538553707301617, -0.02122107893228531, -0.012045127339661121, 0.0205985214561224, 0.002217859961092472, 0.010779712349176407, -0.015036108903586864, 0.0020216191187500954, 0.026039130985736847, 0.028935374692082405, -0.02728424407541752, 0.02326469123363495, -0.019542882218956947, 0.012694752775132656, 0.01510377787053585, -0.011314299888908863, 0.001295866328291595, 0.009588733315467834, 0.02563311532139778, 0.02568724937736988, 0.015171447768807411, 0.008702266030013561, 0.007836099714040756, 0.0030975602567195892, 0.00425639608874917, 0.003182146931067109, 0.0026086498983204365, 0.0026001911610364914, -0.008742867968976498, -0.028366953134536743, -0.00045380694791674614, 0.0009642869117669761, 0.011781217530369759, 0.001916731707751751, -0.033320341259241104, -0.021518824622035027, 0.0026458678767085075, 0.00872256699949503, -0.007633092347532511, 0.02345416508615017, -0.03702861815690994, 0.003918049857020378, 0.014400018379092216, -0.004834968596696854, 0.012755654752254486, -0.0003366545424796641, -0.02308875136077404, 0.006868429481983185, 0.03272485360503197, 0.019475212320685387, 0.011963924393057823, -0.010454900562763214, 0.004909404553472996, 0.019975963979959488, -0.05667977035045624, -0.002381957834586501, -0.014508288353681564, 0.02549777552485466, -0.004253012593835592, 0.0032278236467391253, 0.018284233286976814, -0.027257176116108894, 0.027636123821139336, 0.004909404553472996, 0.0020283858757466078, -0.008485725149512291, 0.024726346135139465, 0.01200452633202076, 0.0039924862794578075, 0.0008606683695688844, 0.007078204303979874, -0.00417857663705945, -0.01615941897034645, 0.005372939165681601, 0.009020311757922173, -0.007152640260756016, 0.008174446411430836, -0.003468049457296729, -0.014102273620665073, 0.012261669151484966, -0.01519851479679346, -0.0027389132883399725, -0.0067736925557255745, 0.00925038754940033, -0.016673704609274864, 0.0010378772858530283, -0.013019565492868423, -0.013141369447112083, 0.000447040016297251, 0.008681965991854668, -0.0012036669068038464, 0.015469192527234554, 0.003288725856691599, -0.006015797145664692, 0.01249851193279028, 0.009561666287481785, 0.0031161692459136248, -0.009960914961993694, -0.03892335668206215, 0.010779712349176407, 0.016917314380407333, -0.02511882781982422, 0.017905285581946373, -0.023237623274326324, 0.04282110556960106, 0.02047671750187874, 0.016863178461790085, 0.024401534348726273, -0.02340002916753292, -0.029287254437804222, 0.01919100061058998, 0.005010908469557762, 0.01481956709176302, 0.0009735914645716548, 0.007822565734386444, -0.01893385872244835, 0.028015073388814926, -0.008384221233427525, -0.007200009189546108, 0.014048137702047825, 0.02036844566464424, -0.004114290699362755, -0.026093265041708946, 0.012187233194708824, 0.004841735120862722, 0.02660755254328251, 0.007978205569088459, -0.003748876741155982, 0.001162219443358481, 0.02468574419617653, -0.0008094934746623039, -0.03256244584918022, 0.001170678180642426, 0.02308875136077404, 0.003413914004340768, 0.013533851131796837, 0.004780833143740892, -0.0012933287071064115, -0.0099947489798069, 0.013520317152142525, 0.003539102151989937, 0.017986489459872246, -0.0053594051860272884, 0.016254154965281487, 0.03540455549955368, -0.003830079920589924, 0.006012413650751114, 0.01553686149418354, 0.009331590496003628, -0.02130228281021118, 0.005981962196528912, 0.0005125946481712162, 0.0015572387492284179, -0.0040195537731051445, -0.03329327329993248, 0.01472483016550541, -0.008918807841837406, -0.003415605751797557, 0.001588535844348371, -0.010048884898424149, -0.0017145697493106127, -0.02400905266404152, -0.0005481209955178201, -0.0025528226979076862, -0.005809405818581581, 0.010975953191518784, -0.020625589415431023, -0.01787821762263775, -0.012978963553905487, -0.01445415336638689, -0.00727444514632225, -0.028610561043024063, -0.01751280389726162, 0.004584592301398516, 0.009209785610437393, 0.004882337059825659, 0.008235348388552666, -0.016619568690657616, -0.023657172918319702, -0.002634025877341628, -0.011185728013515472, 0.019840626046061516, 0.02208724617958069, 0.01147670578211546, 0.0024919204879552126, 0.0015521636232733727, -0.0016638179076835513, -0.010664675384759903, -0.008526326157152653, 0.0006830365746282041, -0.007876701653003693, 0.012647383846342564, 0.00208082958124578, -0.012457909993827343, -0.012512045912444592, -0.0020757545717060566, -0.009981215000152588, 0.006983467377722263, 0.009081214666366577, -0.011334600858390331, 0.012647383846342564, 0.0025528226979076862, 0.02097746916115284, 0.010414298623800278, 0.01160527765750885, 0.015875207260251045, 0.004916171543300152, 0.00943986140191555, 0.003972185309976339, -0.014251145534217358, 0.01163911260664463, 0.004148125648498535, -0.01590227521955967, 0.006036097649484873, -0.01603761315345764, 0.003759027225896716, 0.014765432104468346, 0.0021197395399212837, -0.016849644482135773, -0.028366953134536743, -0.016687238588929176, -0.014007536694407463, -0.0016511299181729555, -0.0025697399396449327, -0.009365425445139408, 0.0015809229807928205, -0.013784227892756462, -0.03226470202207565, -0.008797003887593746, 0.004581208806484938, -0.01894739270210266, 0.010292493738234043, 0.014372950419783592, -0.02828574925661087, 0.017932353541254997, -0.013094001449644566, 0.01132106687873602, 0.003965418320149183, 0.02036844566464424, -0.018473707139492035, 0.009060913696885109, -0.012924828566610813, 0.026350408792495728, 0.007741363253444433, 0.0062357219867408276, 0.035188015550374985, 0.008526326157152653, 0.0019048895919695497, -0.0004762223979923874, -0.006005646660923958, -0.019475212320685387, -0.039139896631240845, -0.004209027625620365, -0.003796245437115431, 0.0167143065482378, -0.03510681167244911, -0.002806582488119602, -0.008438356220722198, 0.027744395658373833, -0.01670077256858349, -0.017675209790468216, 0.021924838423728943, -0.013324076309800148, 0.01380452886223793, -0.004966923501342535, -0.01831130124628544, -0.02735191397368908, 0.006963166408240795, 0.0033733125310391188, -0.004763915669173002, -0.0033157935831695795, -0.005044742953032255, -0.003055267035961151, -0.005298502743244171, -0.038517341017723083, -0.018717316910624504, 0.012525579892098904, -0.005237600300461054, -0.028800036758184433, -0.027446649968624115, 0.007978205569088459, 0.005555646028369665, -0.009954147972166538, 0.024739880114793777, 0.01176091656088829, 0.003934967331588268, 0.006550384219735861, 0.007971438579261303, -0.01874438486993313, 0.015428590588271618, 0.0020063933916389942, -0.020395513623952866, 0.010975953191518784, 0.00875640194863081, -0.00021590721735265106, 0.021748898550868034, 0.014765432104468346, -0.019962430000305176, -0.014440619386732578, -0.009717305190861225, 0.015563929453492165, 0.012315805070102215, 0.0029554548673331738, 0.00869549997150898, -0.003212597919628024, 0.009060913696885109, 0.005501510575413704, 0.021180476993322372, -0.013966934755444527, -0.0067804595455527306, 0.0017678593285381794, -0.0015132537810131907, -0.008174446411430836, 0.009074447676539421, -0.050102319568395615, -0.029612066224217415, 0.012241368182003498, -0.007497753482311964, -0.011226329952478409, -0.001295866328291595, 0.011537608690559864, 0.012146631255745888, 0.025078225880861282, -0.009446628391742706, -0.006154519040137529, -0.024469204246997833, 0.011348134838044643, -0.01981355808675289, 0.012951895594596863, -0.011740616522729397, 0.0005324724479578435, 0.02178950048983097, 0.026824094355106354, -0.022073712199926376, 0.02080152928829193, -0.005034592933952808, -0.004334216006100178, 0.0026881613302975893, 0.004462787415832281, 0.01318197138607502, 0.003007898572832346, -0.009033845737576485, 0.011882721446454525, -0.02482108399271965, -0.021329350769519806, 0.00011260587052674964, 0.001560622244141996, 0.0014591183280572295, 0.010901517234742641, 0.01831130124628544, -0.008925574831664562, 0.011422570794820786, -0.0021146642975509167, -1.6348998542525806e-05, -0.025822589173913002, 0.005440608132630587, -0.0018169195391237736, 0.022303787991404533, 0.005606397986412048, 0.011327833868563175, 0.028015073388814926, -0.0015344003913924098, -0.005741736385971308, -0.007260911166667938, 0.009527831338346004, -0.007646625861525536, -0.00490263756364584, -0.015482726506888866, 0.010353396646678448, 0.030045149847865105, -0.009717305190861225, 0.02345416508615017, -0.02116694301366806, -0.003576320130378008, -0.018703782930970192, -0.007775197736918926, -0.015374455600976944, 0.007375949062407017, -0.0010776328854262829, 0.004770682659000158, 0.014846635051071644, 0.0014472762122750282, -0.0018203030340373516, 0.001167294685728848, -0.005809405818581581, -0.007145873736590147, 0.006306774914264679, -0.025078225880861282, -0.007775197736918926, -0.014183476567268372, 0.010637607425451279, -0.0005586943007074296, 0.004811284132301807, 0.016132351011037827, -0.017242126166820526, -0.029314322397112846, 0.013080467469990253, 0.0086616650223732, -0.0015563928755000234, 0.025091759860515594, -0.003962034825235605, -0.00717970822006464, -0.022371456027030945, 0.00457782531157136, -0.01287745963782072, 0.0019268820760771632, -0.012045127339661121, 0.002510529477149248, -0.0014523514546453953, -0.0061985040083527565, -0.009142116643488407, 0.0011909789172932506, -0.009162417612969875, 0.02135641686618328, 0.023738374933600426, -0.01067820843309164, 0.02265566773712635, -0.017905285581946373, -0.01046166755259037, -0.00535602169111371, -0.01591580919921398, 0.004770682659000158, -0.029422592371702194, 0.0038672981318086386, 0.0014472762122750282, -0.007294746115803719, 0.001915039960294962, 0.02662108652293682, 0.01801355555653572, 0.007105271797627211, 0.012424075976014137, 0.013696257956326008, -0.005511661060154438, -0.03083011321723461, -0.009331590496003628, 0.0355398952960968, 0.004638727754354477, -0.008100010454654694, -0.012119564227759838, -0.00197425065562129, -0.010387230664491653, 0.013560919091105461, -0.011774450540542603, 0.003119552740827203, -0.01553686149418354, 0.014156408607959747, 0.007220309693366289, -0.002999439835548401, -0.014751898124814034, 0.019854160025715828, -0.007558655925095081, -0.00197425065562129, 0.0194887463003397, -0.02672935649752617, 0.011801518499851227, 0.008783469907939434, 0.02109927497804165, -0.005210532806813717, -0.013872197829186916, 0.0016206786967813969, 0.01850077509880066, 0.019475212320685387, 0.012464676983654499, 0.005890608765184879, 0.0028251914773136377, 0.006110534071922302, -0.021491756662726402, -0.003972185309976339, 0.02012483775615692, 0.010745878331363201, -0.02036844566464424, 0.002454702276736498, -0.03635192662477493, 0.0044424869120121, -0.002881018677726388, 0.0015276335179805756, 0.0021400402765721083, -0.016660170629620552, -0.03529628366231918, 0.013134602457284927, -0.004036471247673035, -0.009148883633315563, -0.013554152101278305, 0.012336106039583683, 0.034863200038671494, -0.0036203053314238787, -9.373249486088753e-05, -0.02227672003209591, 0.01652483269572258, 0.0008822379168123007, 0.02685116045176983, 0.013513551093637943, 0.030045149847865105, -0.004872186575084925, -0.00516654783859849, -0.014751898124814034, 0.00820151437073946, 0.003456207225099206, -0.006990234367549419, 0.0039011326152831316, 0.0016798892756924033, 0.010055651888251305, 0.005958278197795153, -0.014345882460474968, 0.016998518258333206, -0.0015969944652169943, 0.010495501570403576, 0.015157913789153099, 0.012512045912444592, -0.007626325357705355, -0.0061680530197918415, 0.0046015093103051186, 0.02610679902136326, -0.02896244265139103, -0.018297767266631126, 0.0032278236467391253, -0.02953086420893669, -0.016064681112766266, 0.013912798836827278, -0.03627072274684906, 0.009927080012857914, -0.007024068851023912, 0.0017475585918873549, -0.0026577101089060307, 0.017918819561600685, 0.015225582756102085, 0.001756017212755978, -0.02092333510518074, 0.0009499071747995913, -0.017566939815878868, 0.03207522630691528, 0.0023971833288669586, -0.015685733407735825, 0.025714317336678505, -0.003043424803763628, -0.016633102670311928, -0.016809044405817986, 0.0126879857853055, -0.013838362880051136, 0.0024936122354120016, -0.0043037645518779755, -0.023778976872563362, 0.004760532174259424, -0.0004123595426790416, 0.001754325465299189, 0.004540607333183289, -0.013520317152142525, 0.013655656017363071, 0.011300765909254551, 0.01067820843309164, 0.009169184602797031, 0.0086616650223732, 0.0038469971623271704, -0.012471443973481655, -0.016809044405817986, 0.021735364571213722, 0.005196998827159405, -0.013560919091105461, -0.018419571220874786, 0.013608288019895554, -0.024347398430109024, 0.01416994258761406, 0.02475341409444809, -0.02346769906580448, 0.021139875054359436, 0.014575958251953125, -0.018460173159837723, -0.00342744798399508, -0.027189508080482483, 0.007802265230566263, 0.01571280136704445, 0.012884226627647877, -0.021491756662726402, 0.0016781975282356143, -0.003921433351933956, 0.008749634958803654, 0.018392503261566162, 0.0007688919431529939, 0.0025714316871017218, -0.0017357164761051536, -0.020341379567980766, -0.01314813643693924, -0.010258659720420837, -0.004456020426005125, 0.007619558367878199, -0.011023322120308876, 0.004977073986083269, 0.01943461038172245, 0.021315816789865494, 0.015266184695065022, 0.000198778448975645, 0.016551900655031204, 0.022912809625267982, -0.0005278202006593347, 0.022885743528604507, 0.008925574831664562, 0.0027203040663152933, -0.01048873458057642, 0.0007422471535392106, -0.00940602645277977, 0.0007667772588320076, 0.007558655925095081, 0.004337599501013756, -0.005291735753417015, -0.006672188639640808, 0.008587229065597057, 0.0015673891175538301, -0.013790994882583618, 0.013669189997017384, -0.003337786067277193, -0.03616245090961456, 0.021681230515241623, -0.015821073204278946, -0.018175963312387466, -0.008160912431776524, 0.017566939815878868, -0.0002298640029039234, 0.0108270812779665, -0.01160527765750885, 0.02445567026734352, 0.009392492473125458, 0.009825576096773148, 0.0019099648343399167, -0.0184331052005291, 0.004412035457789898, -0.0108270812779665, 0.011063923127949238, -0.004300381522625685, 0.00383684691041708, -0.009020311757922173, -0.0006783843273296952, 0.0018203030340373516, 0.00691579794511199, -0.02915191650390625, -0.013662423007190228, -0.004760532174259424, -0.023305291309952736, 0.015279718674719334, 0.007917302660644054, 0.012775955721735954, 0.00795790459960699, -0.0073150466196238995, -0.007375949062407017, -0.003053575288504362, 0.001624062191694975, -0.009236853569746017, -0.023860180750489235, 0.0012180466437712312, -0.0002863255504053086, -0.03337447717785835, -0.010448133572936058, -0.009399259462952614, -0.01584813930094242, 0.018460173159837723, 0.01752633787691593, 0.0010903208749368787, -0.001165602938272059, 0.02177596651017666, -0.0017196449916809797, -0.0008712416747584939, 0.003217673161998391, -0.007991739548742771, -0.008208281360566616, -0.0016536674229428172, -0.0035695533733814955, -0.01775641366839409, -0.021938372403383255, -0.008898506872355938, -0.0302075557410717, -0.007788731716573238, 0.010319561697542667, 0.0019844009075313807, 0.005501510575413704, 0.021559424698352814, 0.003129703225567937, 0.002930078888311982, -0.0017390998546034098, 0.013479716144502163, -0.0026898530777543783, -0.005565796513110399, -0.0021484990138560534, -0.010664675384759903, 0.024049654603004456, -0.00021199509501457214, 0.001463347696699202, -0.020652657374739647, -0.007741363253444433, -0.003972185309976339, -0.00987294502556324, 0.016064681112766266, 0.00921655260026455, 0.0030823347624391317, 0.03318500518798828, -0.0002307098766323179, 0.014954905956983566, -0.014332348480820656, -0.011598510667681694, -0.017621073871850967, -0.001338159549050033, 0.004212411120533943, -0.013655656017363071, -0.0001469691633246839, -0.008627830073237419, -0.00807294249534607, -0.0108270812779665, 0.004479704890400171, -0.0032295153941959143, 0.0005997187690809369, 0.005751886870712042, -0.006766925565898418, 0.01033309567719698, 0.0008771627326495945, -0.012965429574251175, -0.021830102428793907, -0.009866178035736084, -0.0247669480741024, 0.009358658455312252, -0.014711296185851097, 0.0039823357947170734, -0.009710538201034069, -0.006049631629139185, 0.00013375251728575677, 0.0024411685299128294, 0.004943239036947489, -0.009426327422261238, -0.022046644240617752, -0.010664675384759903, 0.007342114578932524, 0.003545869141817093, -0.029909811913967133, 0.011483472771942616, 0.01114512700587511, 0.01980002410709858, -0.017594007775187492, 0.0018981227185577154, -0.012633849866688251, -0.0013880656333640218, -0.007375949062407017, 0.008363920263946056, 0.0009194560116156936, 0.005785721354186535, -0.011124826036393642, -0.010509035550057888, 0.00708497129380703, -0.004973690491169691, -0.0038131626788526773, 0.003474816447123885, -0.0067398580722510815, 0.008939108811318874, -0.00518346531316638, -0.003221056656911969, -0.004263163078576326, -0.004435719922184944, 0.006039481144398451, -0.030992519110441208, -0.011903022415935993, -0.025145895779132843, 0.01361505500972271, 0.002346431603655219, -0.01033309567719698, 0.011043623089790344, 0.002705078572034836, 0.010414298623800278, -0.003978952299803495, -0.006733091082423925, 0.01981355808675289, -0.00583308981731534, 0.020273709669709206, -0.01337144523859024, -0.007741363253444433, 0.02036844566464424, 0.006025947164744139, -0.015807539224624634, -0.004929705522954464, -0.018581977114081383, -0.0006348222377710044, -0.007565422914922237, -0.0028167327400296926, -0.0015572387492284179, 0.00465564476326108, -0.011260163970291615, 0.009832343086600304, -0.0001103854738175869, -0.008140611462295055, -0.006411662325263023, -0.00851279217749834, 0.009669937193393707, -0.030424097552895546, -1.8926244592876174e-05, 0.006682339124381542, 0.005931210238486528, 0.006631587166339159, 0.00685489596799016, 0.012904527597129345, 0.0017763179494068027, -0.018270699307322502, -0.01222783513367176, 0.005775570869445801, -0.0036439895629882812, -0.003637222573161125, -0.014535356312990189, -0.007978205569088459, -0.0005485439323820174, -0.015685733407735825, -0.011253397911787033, -8.405790867982432e-05, -0.004642111249268055, 0.003417297499254346, -0.011341367848217487, -0.017972955480217934, 0.013425580225884914, 0.00816767942160368, -0.016389494761824608, -0.002637409372255206, -0.0029503796249628067, 0.001079324632883072, 0.01894739270210266, -0.004652261268347502, -0.00626617344096303, -0.013980468735098839, 0.018365437164902687, -0.04076395928859711, -0.01713385619223118, 0.01284362468868494, 0.006296624429523945, -0.007822565734386444, -0.014156408607959747, 0.004290231037884951, 0.014129340648651123, -0.027649657800793648, 0.005704518407583237, 0.014806033112108707, -0.012484977953135967, -0.007978205569088459, 0.015144379809498787, -0.015076710842549801, 0.03767824172973633, 0.02352183312177658, 0.004374817479401827, -0.0006847283220849931, 0.013256407342851162, 0.011828586459159851, -0.004053388722240925, 0.036108314990997314, 0.029097780585289, -0.029043644666671753, 0.011889488436281681, 0.0030958685092628, 0.01831130124628544, 0.0005405081901699305, 0.023224089294672012, 0.01584813930094242, -0.026594018563628197, 0.009033845737576485, -0.023792510852217674, 0.0011224638437852263, 0.02289927750825882, -0.015983479097485542, -0.0039924862794578075, 0.016606036573648453, 0.014833101071417332, 0.004696246236562729, -0.00200301012955606, 0.00018461019499227405, 0.0008289483957923949, -0.011889488436281681, -0.0050785779021680355, -0.013398513197898865, -0.00025122211081907153, 0.016741374507546425, -0.017729345709085464, 0.007809032220393419, 0.010495501570403576, 0.027311312034726143, 0.012755654752254486, 0.012525579892098904, -0.01919100061058998, -0.02939552441239357, 0.01197069138288498, -0.004391734953969717, 0.005271435249596834, 0.026012063026428223, -0.028610561043024063, 0.013012798503041267, -0.004283464048057795, -0.008350386284291744, -0.008810536935925484, -0.013533851131796837, 0.0037285760045051575, 0.01027219370007515, 0.005822939798235893, 0.003549252636730671, -0.007653392851352692, -0.005552262533456087, 0.006898880936205387, -0.00727444514632225, 0.013378212228417397, -0.02939552441239357, 0.022926343604922295, 0.015942877158522606, 0.010732344351708889, 0.0162135548889637, -0.008445123210549355, -0.014102273620665073, 0.009000010788440704, 0.02252032794058323, -0.005460909102112055, 0.02234438806772232, -0.020381979644298553, 0.007754896767437458, 0.009175951592624187, 0.012139865197241306, -0.008918807841837406, -0.009419560432434082, -0.0010336479172110558, 0.0053594051860272884, -0.024780482053756714, -0.020584987476468086, 0.019326340407133102, 0.012863925658166409, 0.011625578626990318, 0.012410541996359825, -0.0021806417498737574, 0.01253234688192606, -0.0065131657756865025, 0.030045149847865105, -0.004236095584928989, -0.0031483122147619724, 0.00250714598223567, 0.007436851505190134, 0.004584592301398516, -0.007240610662847757, 0.006303391419351101, 0.0017780096968635917, 0.00375226023606956, 0.015036108903586864, 0.007145873736590147, 0.013628588058054447, -0.009277455508708954, 0.003600004594773054, -0.02944966033101082, -0.003004515077918768, 0.01583460532128811, 0.01683611050248146, -0.013953400775790215, -0.020151905715465546, 0.00026137250824831426, 0.010130087845027447, 0.009757907129824162, -0.0005536191165447235, -0.0029097781516611576, -0.015766937285661697, -0.025781987234950066, -0.00020173897792119533, 0.008431589230895042, 0.008363920263946056, 0.012451143004000187, 0.03337447717785835, -0.0014413552125915885, 0.006597752682864666, 0.011327833868563175, -0.0025748151820153, -0.010894750244915485, -0.004114290699362755, 0.03180455043911934, 0.010339862667024136, 0.0014684229390695691, 0.014427085407078266, 0.012965429574251175, 0.0018879722338169813, 0.02402258664369583, 0.0011732158018276095, 0.007369182072579861, 0.00977820809930563, -0.00829625129699707, -0.011903022415935993, -0.008749634958803654, 0.01392633281648159, 0.0006707715219818056, 0.010434599593281746, 0.02284514158964157, -0.014115806668996811, -0.015753403306007385, -0.004154892172664404, -0.009683470241725445, 0.030532369390130043, -0.015144379809498787, 0.006827828008681536, -0.016375960782170296, -0.0029419208876788616, 0.016416562721133232, -0.004706396721303463, 0.007105271797627211, 0.01222783513367176, 0.022885743528604507, -0.0013973701279610395, 0.0018135360442101955, -0.007788731716573238, 0.015157913789153099, -0.03434891626238823, 0.007308279629796743, -0.01065114140510559, -0.009047379717230797, -0.009622568264603615, -0.006760158576071262, 0.019529348239302635, 0.004154892172664404, -0.02717597410082817, -0.0280421394854784, 0.013066933490335941, -0.048126377165317535, 0.0005646153585985303, -0.007267678156495094, -0.013249640353024006, -0.008485725149512291, 0.01702558435499668, -0.012342872098088264, 0.012397008016705513, 0.00897971075028181, 0.021085740998387337, 0.015888741239905357, -0.02253386192023754, 0.021126342937350273, -0.024618076160550117, -0.006279706954956055, 0.03039702959358692, 0.009047379717230797, -0.005806022323668003, 0.01553686149418354, 0.007240610662847757, 0.010745878331363201, 0.01197069138288498, 0.012356406077742577, -0.013912798836827278, 0.03313086926937103, -0.0001613488857401535, 0.014372950419783592, 0.012775955721735954, -0.008194747380912304, -0.03813839331269264, -0.004029704257845879, -0.0011630653170868754, -0.0027761312667280436, 0.009175951592624187, 0.011787984520196915, 0.021640628576278687, 0.004699629731476307, 0.005599630996584892, -0.017242126166820526, 0.013019565492868423, -0.014305280521512032, -0.012011293321847916, 0.010265426710247993, -0.007795498240739107, 0.0005180927691981196, -0.001186749548651278, 0.008803769946098328, 0.009081214666366577, 0.0162135548889637, -0.02717597410082817, -0.0015843064757063985, 0.0003950192767661065, -0.02518649771809578, 0.006584218703210354, 0.008066175505518913, -0.009108281694352627, 0.00040263208211399615, 0.0033073348458856344, 0.03183161839842796, -0.0032582746353000402, 0.010739111341536045, -0.005559029523283243, -0.026594018563628197, -0.002160341013222933, 0.01609174907207489, 0.0011156968539580703, -0.029422592371702194, 0.01176091656088829, 0.0018473707605153322, 0.023914314806461334, -0.015807539224624634, -0.008465424180030823, -0.010312794707715511, -0.008370687253773212, 0.011957157403230667, -0.00822858139872551, 0.01343234721571207, -0.006032714154571295, 0.0076060243882238865, 0.026445144787430763, -0.01377069391310215, 0.004158275667577982, 0.01027219370007515, -0.0005553108640015125, -0.02208724617958069, -0.03835493326187134, -0.01380452886223793, 0.007558655925095081, -0.009622568264603615, -0.0061917370185256, 0.0027812065090984106, 0.03069477528333664, -0.014278213493525982, 0.01132106687873602, 0.022019576281309128, 0.010739111341536045, 0.005318803712725639, 0.0034443652257323265, 0.00845189020037651, -0.01117219403386116, -0.005775570869445801, -0.013811295852065086, -0.023048149421811104, 0.010082718916237354, -0.0064590307883918285, -0.01525265071541071, -0.019894761964678764, -0.018852654844522476, -0.015496259555220604, -0.010942119173705578, 0.00034426734782755375, 0.013398513197898865, -0.006083466112613678, 0.006580835208296776, 0.010021816939115524, 0.027392515912652016, -0.0011732158018276095, 0.0073218136094510555, -0.003718425752595067, -0.008681965991854668, 0.0036101548466831446, 0.0007502828957512975, -0.01284362468868494, 0.0010937043698504567, -0.026039130985736847, 0.009446628391742706, -0.0014117498649284244, 0.007112038787454367, -0.01077294535934925, -0.011862420476973057, -0.04715193808078766, 0.015888741239905357, -0.009764674119651318, -0.0016646637814119458, -0.003880831878632307, -0.0199894979596138, -0.020381979644298553, -0.009419560432434082, 0.0008086476009339094, -0.009730839170515537, 0.004892487078905106, -0.02253386192023754, 0.0017577089602127671, 0.010231591761112213, -0.029693270102143288, -0.003281958866864443, 0.010779712349176407, 0.014603025279939175, 0.013980468735098839, 0.0023210556246340275, -0.019421076402068138, 0.020192505791783333, 0.028800036758184433, 0.016132351011037827, 0.006140985060483217, 0.03137146681547165, -0.0006289011798799038, -0.03250830993056297, -0.010015049949288368, -0.009852644056081772, -0.028881238773465157, -0.01519851479679346, 0.015171447768807411, -0.010549637489020824, -0.010069185867905617, 0.03367222100496292, 0.009419560432434082, 0.0024090255610644817, 0.0025934241712093353, 0.003002823330461979, 0.013236106373369694, -0.0021248147822916508, 0.0012205842649564147, -0.020287243649363518, 0.010657908394932747, 0.005027825944125652, 0.015523327514529228, -0.0059785787016153336, 0.00990001205354929, -0.024807550013065338, 0.03126319497823715, 0.009669937193393707, -0.0034375982359051704, 0.00047833705320954323, 0.010075952857732773, -0.0017340247286483645, 0.0008154145325534046, -0.001565697486512363, 0.003046808298677206, -0.00043858136632479727, 0.029314322397112846, 0.013357911258935928, 0.002030077623203397, 0.006793993525207043, -0.01023835875093937, 0.010542870499193668, -0.012951895594596863, -0.018406037241220474, 0.01327670831233263, 0.019597016274929047, -0.005224066786468029, -0.005000757984817028, -0.01445415336638689, -0.030369963496923447, 0.00910151470452547, -0.017905285581946373, -0.01308723445981741, -0.010969186201691628, 0.014751898124814034, -0.021735364571213722, 0.024794016033411026, -0.0029013194143772125, -0.005186848342418671, 0.028150411322712898, -0.023806044831871986, 0.010671441443264484, 0.025389505550265312, 0.01818949542939663, 0.007490986958146095, 0.01628122292459011, 0.0040195537731051445, 0.0030721842776983976, -0.01114512700587511, 0.0031364699825644493, 0.0018169195391237736, -0.01881205290555954, 0.0027169205714017153, 0.03112785890698433, 0.018649647012352943, -0.0162135548889637, 0.01789175160229206, 0.025051159784197807, 0.020571453496813774, -0.013439114205539227, 0.04244215786457062, 0.008215047419071198, 0.023738374933600426, 0.006942865904420614, -0.015171447768807411, -0.0013609979068860412, 0.0062255715020000935, -0.003884215373545885, -0.009581967256963253, -0.0001139804080594331, -0.006990234367549419, 0.0006711944588460028, 0.019583482295274734, 0.002542672445997596, -0.00024001440033316612, 0.013980468735098839, -0.01337144523859024, 0.0269323643296957, -0.026945898309350014, 0.0083571532741189, 0.008878206834197044, -0.0199894979596138, -0.021735364571213722, -0.0035154179204255342, 0.011693247593939304, 0.010278959758579731, 0.005125946365296841, 0.001168986433185637, -0.01346618216484785, -0.012945128604769707, -0.006289857439696789, -0.022939877584576607, -0.006347376387566328, -0.034186508506536484, 0.006090233102440834, 0.015225582756102085, 0.0014472762122750282, -0.01435941644012928, 0.021735364571213722, 0.01596994511783123, -0.017106788232922554, -0.01825716532766819, -0.015049642883241177, 0.019136866554617882, 0.019583482295274734, 0.01120602898299694, -0.010116553865373135, -0.0012358097592368722, -0.0018186112865805626, 0.020842131227254868, 0.011212795972824097, 0.009175951592624187, 3.658369314507581e-05, 0.008242115378379822, 0.012207534164190292, 0.008100010454654694, -0.02016543783247471, 0.012126331217586994, 0.006076699122786522, 0.016078215092420578, -0.004811284132301807, 0.0008137228433042765, 0.02445567026734352, -0.020828597247600555, -0.0061917370185256, 0.008431589230895042, -0.007044369820505381, -0.02030077762901783, -0.009609034284949303, 0.0005882995901629329, -0.03738049790263176, 0.000760856200940907, -0.011977458372712135, 0.0014328964753076434, 0.0002387456042924896, 0.008032340556383133, -0.0045338403433561325, 0.007856400683522224, 0.007497753482311964, -0.008519559167325497, -0.002206017728894949, 0.0031381617300212383, -0.005992112681269646, -0.004696246236562729, 0.01426467951387167, -0.008404522202908993, 0.008120310492813587, -0.00197425065562129, -0.01055640447884798, -0.013127835467457771, 0.01609174907207489, 0.005193615332245827, 0.008404522202908993, -0.01481956709176302, 0.008675199002027512, -0.006066549103707075, 0.0013127835700288415, 0.010387230664491653, -0.003417297499254346, 0.011632345616817474, -0.020991003140807152, 0.00400940328836441, 0.02445567026734352, -0.00015807115414645523, -0.023630104959011078, 0.0053966231644153595, -0.0007147565484046936, -0.010495501570403576, -0.023806044831871986, -0.0067466250620782375, 0.02036844566464424, 0.0018270699074491858, 0.0036879745312035084, 0.016511298716068268, 0.0033631620462983847, 0.008363920263946056, -0.011409036815166473, -0.0008640518062748015, 0.00321936490945518, 0.0031906054355204105, -0.009987981989979744, 0.01664663664996624, 0.025037625804543495, 0.00022225121210794896, 0.005674067419022322, -0.015888741239905357, 0.0053932396695017815, -0.008993244729936123, -0.010312794707715511, -0.005965045187622309, -0.011889488436281681, 0.021085740998387337, -0.02358950302004814, -0.008431589230895042, -0.009128582663834095, -0.013506784103810787, -0.005295119248330593, 0.03212936222553253, -0.02364363893866539, 0.007734596263617277, 0.0008154145325534046, 0.010055651888251305, -0.008614296093583107, 0.005883841775357723, 0.016849644482135773, 0.002796432003378868, 0.03643312677741051, 0.02877296879887581, 0.02296694554388523, -0.005718052387237549, -0.007071437314152718, -0.004929705522954464, 0.010928585194051266, -0.007044369820505381, 0.016754908487200737, -0.005518428049981594, 0.000759164453484118, -0.008235348388552666, 0.02747371792793274, 0.008824070915579796, -0.005758653860539198, -0.008120310492813587, 0.0018930474761873484, 0.020936869084835052, -0.0036947415210306644, 0.011456404812633991, -0.00019581792003009468, -0.009818809106945992, 0.00801880657672882, 0.012545879930257797, 0.015604530461132526, -5.926346784690395e-05, 0.0110503900796175, 0.012897760607302189, 0.0035729368682950735, -0.0023938000667840242, 0.00592782674357295, -0.0017577089602127671, -0.008120310492813587, 0.023670706897974014, -0.008939108811318874, 0.03083011321723461, -0.02413085661828518, 0.017242126166820526, 0.006540233734995127, -0.01720152609050274, 0.007369182072579861, -0.00246823625639081, 0.009987981989979744, -0.008350386284291744, -0.014508288353681564, 0.020260175690054893, 0.007132339756935835, -0.0064522637985646725, -0.016660170629620552, 0.011497006751596928, 0.010143621824681759, -0.00897971075028181, -0.009331590496003628, -0.004615043289959431, -0.026147400960326195, -0.0067770760506391525, 0.022127846255898476, -0.01682257652282715, -0.013452648185193539, 0.007687227800488472, -0.029503796249628067, -0.011124826036393642, 0.009000010788440704, 0.016876712441444397, -0.00841805525124073, 0.021816568449139595, -0.0014261296018958092, 0.012200767174363136, 0.020760927349328995, -0.0081338444724679, 0.01789175160229206, -0.0010607156436890364, 0.01652483269572258, -0.009554899297654629, -0.0007227922324091196, -0.010894750244915485, -0.022669201716780663, -0.014954905956983566, -0.012430842965841293, -0.011848886497318745, 0.002547747455537319, -0.017350398004055023, -0.001419362612068653, -0.008972943760454655, -0.0021366567816585302, -0.006925948429852724, -0.01048873458057642, -0.03150680661201477, 0.0132158063352108, -0.0030654172878712416, -0.006239105481654406, 0.008039107546210289, 0.010739111341536045, -0.0006576605956070125, 0.020314311608672142, -0.0009219936328008771, -0.014048137702047825, 0.00459474278613925, -0.0013939867494627833, 0.01176091656088829, 0.021613560616970062, 0.009318056516349316, -0.001881205360405147, -0.026458678767085075, 0.004401884973049164, -0.02116694301366806, -0.007944370619952679, -0.005643615964800119, 0.013682723976671696, 0.0009008469642139971, -0.009142116643488407, 0.011679713614284992, -0.015171447768807411, 0.01367595698684454, -0.016172952950000763, -0.005054893437772989, 0.014034603722393513, 0.0056842174381017685, 0.01314813643693924, 0.02549777552485466, 0.027324846014380455, -0.009108281694352627, 0.022181982174515724, -0.0005882995901629329, 0.02080152928829193, 0.003545869141817093, -0.0010133471805602312, 0.03193989023566246, -0.012728587724268436, 0.025849657133221626, 0.021870704367756844, -0.008370687253773212, 0.005748503375798464, 0.006310158409178257, -0.01048873458057642, 0.0053627886809408665, 0.02809627540409565, -0.015631597489118576, 0.00013829904492013156, 0.008316551335155964, -0.0012882534647360444, 0.007653392851352692, 0.01701205037534237, -0.005728202406316996, 0.00034511322155594826, 0.008634597063064575, -0.01751280389726162, -0.013249640353024006, -0.0027203040663152933, 0.004506772384047508, 0.005545495543628931, 0.02135641686618328, -0.02358950302004814, 0.02289927750825882, -0.00611391756683588, 0.01578047126531601, 0.005569180008023977, 0.012769188731908798, -0.02042258158326149, 0.024415068328380585, 0.027500785887241364, 0.014575958251953125, 0.013824828900396824, 0.01832483522593975, 0.015333853662014008, -0.011327833868563175, -0.008404522202908993, 0.025524843484163284, -0.005765420850366354, 0.0042496295645833015, 0.010421065613627434, -0.021559424698352814, -0.013229339383542538, -0.014521822333335876, 0.006601136177778244, 0.0003123359056189656, 0.008573695085942745, -0.01525265071541071, -0.008255649358034134, -0.010996254161000252, 0.01571280136704445, -0.018351903185248375, 0.00750452047213912, 0.015672199428081512, -0.009493996389210224, 0.00558609701693058, -0.016308290883898735, 0.025768453255295753, -0.0036947415210306644, 0.011706781573593616, -0.0048552691005170345, 0.02400905266404152, 0.004500005394220352, 0.0001815439318306744, -0.016944382339715958, -0.011686480604112148, -0.017282728105783463, 0.004777449648827314, 0.0010700201382860541, -0.01591580919921398, 0.0036575233098119497, -0.00894587580114603, -0.00024487811606377363, -0.00024107172794174403], "bead822c-bd11-4d9e-a811-2e377bf32cc0": [-0.013458731584250927, 0.007950684987008572, 0.00939689390361309, 0.03163667023181915, 0.0042175306007266045, -0.008787963539361954, 0.004255588632076979, 0.02200450748205185, -0.03850096836686134, -0.010019662790000439, -0.008213632740080357, 0.043012585490942, -0.0017627824563533068, -0.006680928170681, 0.030501846224069595, 0.01664869301021099, -0.012739087454974651, 0.017866553738713264, 0.004165633115917444, -0.019375037401914597, 0.04777330905199051, -0.011597344651818275, -0.06343941390514374, 0.025575051084160805, 0.002949503483250737, 0.010614752769470215, -0.022931741550564766, 0.01591520942747593, -0.029726844280958176, -0.021104952320456505, 0.03329738602042198, 0.02700049988925457, 0.004297106526792049, 0.011500469408929348, 0.0027263446245342493, -0.030612559989094734, 0.011514308862388134, -0.019056733697652817, -0.002963342936709523, 0.002046488458290696, 0.022945581004023552, -0.004380142781883478, 0.0042106108739972115, -0.006667089182883501, -0.05092867091298103, 0.0037123956717550755, -0.013562526553869247, 0.004757263697683811, -0.017022354528307915, -0.013091989792883396, 0.0014574526576325297, -0.01974869892001152, 0.013486410491168499, 0.023083973675966263, 0.04506080225110054, -0.021506292745471, -0.0009635621681809425, 0.014323689043521881, -0.029422380030155182, -0.04220990464091301, 0.010026582516729832, -0.016150478273630142, -0.0007114271866157651, -0.02809380553662777, 0.031138453632593155, -0.017022354528307915, 0.001072546816430986, 0.01742369495332241, -0.02182459644973278, 0.021104952320456505, 0.018572358414530754, 0.03501346334815025, -0.04467330127954483, 0.028841128572821617, 0.012842882424592972, -0.011957166716456413, 0.02358219027519226, 0.024966120719909668, 0.007929926738142967, -0.006283048074692488, 0.030142024159431458, -0.01963798515498638, 0.07185371220111847, 0.00015104313206393272, 0.07711265236139297, 0.0011573125375434756, 0.006961174309253693, -0.03872239962220192, -0.031913455575704575, -0.025035317987203598, -0.01763128489255905, 0.023997368291020393, -0.02104959450662136, 0.0005163793684914708, -0.01908441260457039, 0.015071012079715729, -0.0004532375023700297, 0.010268770158290863, -0.0031830419320613146, 0.011548906564712524, -0.0159428883343935, 0.018115660175681114, 0.0017852713353931904, 0.0128152035176754, 0.03850096836686134, -0.014406724832952023, -0.00890559796243906, 0.000704507518094033, -0.01929200254380703, 0.011279040016233921, -0.02827371656894684, -0.04154561832547188, -0.004795322194695473, 0.0257272832095623, -0.05995190516114235, -0.010801583528518677, -0.0313875637948513, -0.022890223190188408, -0.013811634853482246, -0.007763854693621397, 0.03362952917814255, 0.0010638971580192447, 0.0340723879635334, -0.02439870871603489, -0.02013619989156723, 0.021810756996273994, -0.01840628683567047, -0.004054918885231018, -0.00955604575574398, -0.011867211200296879, -0.00260525057092309, -0.0055876225233078, 0.010780825279653072, 0.01038640458136797, 0.01527860201895237, 0.019208965823054314, 0.01577681675553322, 0.015929048880934715, -0.0016788817010819912, 0.010248010978102684, -0.06150190532207489, -0.02421879768371582, -0.009825912304222584, 0.008594213053584099, 0.025436656549572945, -0.011486629955470562, 0.008857160806655884, 0.01669021137058735, -0.0012896510306745768, 0.013790875673294067, -0.061059050261974335, -0.034238461405038834, -0.027720144018530846, 0.00700615206733346, 0.0667608454823494, -0.01746521331369877, -0.017188426107168198, 0.0396357923746109, 0.005888627842068672, 0.05566171556711197, 0.00265714805573225, -0.017437534406781197, -0.02358219027519226, 0.053419746458530426, 0.0623876228928566, 0.006220770999789238, 0.03545631840825081, 0.011431272141635418, -0.03221791982650757, 0.010898458771407604, 0.021450934931635857, -0.017202265560626984, 0.04508848115801811, 0.027678625658154488, -0.040217041969299316, 0.009258500300347805, 0.013008954003453255, 0.0374491810798645, 0.018890662118792534, 0.013645562343299389, -0.005902466829866171, 0.032965242862701416, -0.0011071451008319855, 0.008594213053584099, 0.013154267333447933, 0.03080631047487259, -0.008511177264153957, 0.0006621246575377882, 0.06687156111001968, -0.008753365837037563, -0.0063453251495957375, -0.003186501795426011, 0.007438630796968937, 0.0340723879635334, -0.0032211001962423325, 0.0037262351252138615, -0.016247352585196495, -0.0048368400894105434, -0.010296449065208435, 0.006933495867997408, 0.032439351081848145, -0.049655456095933914, 0.0014150697970762849, 0.02989291585981846, -0.041130438446998596, 0.03935900703072548, -0.020191557705402374, 0.00511362636461854, 0.010718547739088535, -0.015361637808382511, 0.04118579626083374, -0.048769738525152206, -0.002586221555247903, -0.023070134222507477, -0.01450360007584095, -0.004691527225077152, -0.008234390988945961, 0.030225059017539024, 0.011514308862388134, -0.04691527038812637, -0.022170579060912132, 0.03534560650587082, 0.028398269787430763, -0.032051850110292435, -0.03030809573829174, -0.004767643287777901, -0.012960516847670078, -0.007514746859669685, -0.0011590424692258239, 0.0073625147342681885, 0.014171456918120384, -0.012946677394211292, -0.009528366848826408, -0.023070134222507477, -0.023471474647521973, 0.015762977302074432, 0.047579556703567505, -0.005252019502222538, -0.03185809776186943, 0.0006854785024188459, 0.008725686930119991, 0.022724151611328125, 0.0015949808293953538, -0.001608820166438818, 0.025090673938393593, 0.015762977302074432, -0.019734859466552734, 0.0546376071870327, 0.0076462202705442905, -0.014282170683145523, -0.03144291788339615, -0.0047088260762393475, -0.008787963539361954, -0.025713443756103516, -0.05092867091298103, 0.02080048806965351, 0.00689889770001173, -0.02953309379518032, 0.008787963539361954, -0.022046025842428207, 0.021257184445858, 0.018821464851498604, -0.0014747517416253686, 0.019029054790735245, 0.017825035378336906, -0.012489980086684227, 0.006006261799484491, 0.005068648606538773, 0.030335774645209312, 0.02788621559739113, -0.03155363351106644, 0.03971882909536362, -0.020053165033459663, 0.01356944628059864, 0.003527294844388962, -0.000283705914625898, -0.0033594933338463306, -0.018959859386086464, 0.010510957799851894, -0.009362295269966125, -0.08724302798509598, -0.025575051084160805, -0.021423256024718285, -0.00999890360981226, -0.002700395882129669, -0.010718547739088535, -0.003985722083598375, 0.0007646220619790256, -0.020689772441983223, -0.018489321693778038, 0.00336641282774508, 0.02280718833208084, 0.034376852214336395, 0.01291899848729372, -0.009237741120159626, 0.03808578848838806, -0.02763710729777813, -0.014434403739869595, -0.02964380942285061, 0.06980549544095993, 0.0005436255014501512, -0.004753803834319115, -0.018046464771032333, 0.011521227657794952, 0.05101170763373375, -0.029477735981345177, 0.004182932432740927, -0.011050691828131676, -0.002818030072376132, 0.024910762906074524, 0.04611258953809738, -0.04937867075204849, -0.015444673597812653, -0.006054699420928955, 0.0036570385564118624, 0.018364768475294113, -0.045531339943408966, -0.008898678235709667, -0.023070134222507477, -0.005798672325909138, 0.013209624215960503, -0.0022644575219601393, -0.04854831099510193, -0.011493549682199955, 0.024910762906074524, -0.04910188168287277, -0.0026277394499629736, 0.015583066269755363, 0.014572796411812305, -0.026322374120354652, -0.05400099977850914, -0.004757263697683811, -0.05153760313987732, 0.014268332161009312, -0.05234028026461601, -0.03570542857050896, -0.012123238295316696, -0.04843759536743164, 0.02830139547586441, -0.020329950377345085, -0.020897362381219864, -0.0276647862046957, 0.026142463088035583, -0.007577023934572935, -0.008061399683356285, 0.006653249729424715, 0.022751830518245697, 0.018710751086473465, -0.040964365005493164, 0.019029054790735245, 0.0008221417083404958, 0.019264323636889458, 0.027042018249630928, 0.02246120572090149, -0.024509422481060028, -0.022170579060912132, -0.0066567095927894115, 0.032328635454177856, -0.006629031151533127, -0.02837059088051319, -0.012247792445123196, -0.021852275356650352, -0.025339782238006592, -0.009127027355134487, -0.01858619786798954, -0.008268989622592926, 0.03924829140305519, -0.016108959913253784, 0.008137515746057034, -0.020620577037334442, 0.015901369974017143, 0.011230602860450745, -0.0017679722514003515, 0.02091120183467865, -0.009528366848826408, -0.021257184445858, 0.011396674439311028, 0.007528586313128471, -0.01806030422449112, 0.006992313079535961, 0.016150478273630142, -0.023208528757095337, -0.03614828735589981, 0.02964380942285061, 0.013894670642912388, -0.002193531021475792, -0.00592322601005435, -0.0012048851931467652, -0.007556264754384756, -0.013631722889840603, -0.013555606827139854, 0.027042018249630928, -0.008234390988945961, -0.01644110307097435, 0.0013112749438732862, -0.03432149812579155, -0.00011136322427773848, -0.02633621357381344, -0.00809599831700325, -0.02319468930363655, 0.006975013762712479, 0.020399147644639015, -0.02271031215786934, 0.004286727402359247, 0.019624145701527596, -0.028702735900878906, -0.006964634172618389, 0.002707315608859062, -0.0004140982055105269, 0.028592020273208618, 0.0013008954701945186, 0.03147059679031372, -0.012365425936877728, 0.0005535725504159927, 0.03260542079806328, 0.0073625147342681885, -0.03005898743867874, 0.05773761495947838, -0.02608710527420044, 0.014102259650826454, 0.024246476590633392, 0.012434623204171658, 0.0017904611304402351, 0.02218441851437092, 0.043317049741744995, 0.0041379546746611595, 0.019208965823054314, -0.0129397576674819, 0.004307486116886139, -0.017963428050279617, -0.009846671484410763, 0.037227753549814224, 0.02675139158964157, 0.016095120459794998, 0.01637190766632557, -0.007943765260279179, -0.018087981268763542, 0.005559944082051516, 0.018254054710268974, -0.018613876774907112, -0.028647378087043762, 0.008123676292598248, 0.0010249741608276963, 0.018074143677949905, -0.004906036425381899, -0.008635731413960457, -0.010075019672513008, -0.0019669122993946075, 0.002164122648537159, -0.0004899982013739645, 0.00032565632136538625, -0.00831050705164671, -0.0418224036693573, -0.023609867319464684, 0.011714978143572807, -0.02203218638896942, 0.004591192118823528, 0.0005211366224102676, -0.0012394834775477648, -0.06421441584825516, -0.032716136425733566, -0.0009428032208234072, 0.029422380030155182, 0.0009453980601392686, 0.03122149035334587, -0.03069559670984745, -0.010863861069083214, -0.01605360396206379, 0.012206274084746838, 0.001010269857943058, 0.016731729730963707, -0.01237234566360712, 0.00932769663631916, 0.004003021400421858, -0.007943765260279179, -0.004459718707948923, -0.015361637808382511, 0.00602702097967267, -0.007583943661302328, -0.016205836087465286, 0.014406724832952023, -0.0311938114464283, 0.02052370086312294, -0.00047745631309226155, -0.00906474981456995, -0.006373003590852022, -0.012192434631288052, 0.0007209416944533587, 0.00499945180490613, -0.0022609976585954428, 0.008691088296473026, -0.01591520942747593, 0.013631722889840603, 0.006480258423835039, 0.004220990464091301, -0.008691088296473026, -0.025796478614211082, -0.009756715968251228, 0.0018112200777977705, -0.04948938265442848, 0.0357607863843441, -0.04865902289748192, -0.00835894513875246, -0.022544240579009056, 0.001994590973481536, 0.025090673938393593, 0.009431491605937481, 0.019305841997265816, -0.0036674179136753082, -0.017299141734838486, -0.018946019932627678, 0.033325064927339554, -0.042403656989336014, 0.025865675881505013, 0.014296010136604309, 0.017894232645630836, -0.02365138567984104, -0.017825035378336906, 0.008815642446279526, 0.0021918010897934437, 0.007487068418413401, -0.018433965742588043, -0.043953657150268555, 0.008296668529510498, -0.0004683742590714246, -0.008940196596086025, -0.027830857783555984, -0.0316920280456543, -0.011431272141635418, -0.05519118160009384, -0.0014626424526795745, 0.029616130515933037, -0.011244441382586956, -0.0010881159687414765, -0.001241213409230113, -0.03149827569723129, -0.003042918862774968, 0.023180849850177765, 0.019195126369595528, 0.0002594871330074966, -0.064767986536026, 0.0519527792930603, -0.014877261593937874, -0.030003631487488747, 0.002764402888715267, 0.024633977562189102, -0.02460629865527153, -0.0030723274685442448, -0.027415679767727852, 0.01547235157340765, -0.014960297383368015, -0.005124005489051342, 0.01085694134235382, -0.00044047937262803316, -0.01570761948823929, -0.030612559989094734, 0.04298490658402443, 0.004982152488082647, -0.02355451136827469, -0.014697350561618805, 0.005466528702527285, 0.0031138453632593155, -0.018157178536057472, 0.0004143144469708204, 0.009749796241521835, 0.004456258844584227, -0.04359383508563042, -7.027776155155152e-05, -0.03897150605916977, 0.04467330127954483, 0.010718547739088535, -0.012289309874176979, 0.047468844801187515, 0.008068319410085678, 0.01570761948823929, 0.01851700060069561, 0.005629140418022871, -0.012607614509761333, -0.03263309970498085, -0.010192654095590115, 0.03080631047487259, -0.0194719135761261, 0.000960102363023907, 0.010213413275778294, 0.0017575927777215838, 0.012579935602843761, -0.0006028750794939697, -0.0004869708209298551, -0.00537657318636775, 0.027221929281949997, -0.006383383180946112, 0.03354649618268013, -0.040992043912410736, 0.013389535248279572, -0.027484875172376633, 0.0311938114464283, 0.00484029995277524, 0.004553134087473154, 0.006632490549236536, 0.03470899537205696, -0.022627277299761772, 0.026391569525003433, 0.013631722889840603, 0.0006301212124526501, -0.026322374120354652, -0.003940744325518608, 0.015320119448006153, 0.013866991735994816, 0.004681147634983063, 0.015140208415687084, 0.02066209353506565, -0.004867978394031525, 0.015444673597812653, -0.013825473375618458, 0.021146470680832863, -0.00018920935690402985, 0.007625461556017399, -0.004286727402359247, -0.003809270914644003, 0.008545775897800922, 0.005757154431194067, -0.017257623374462128, 0.029865236952900887, -0.005279697943478823, 0.017257623374462128, -0.005698337219655514, -0.006514856591820717, -0.00017709996609482914, 0.018212536349892616, 0.01255225669592619, -0.028038447722792625, -0.0053350552916526794, -0.010234171524643898, -0.007812292315065861, 0.020468343049287796, -0.015320119448006153, -0.02109111286699772, 0.041905440390110016, -0.011244441382586956, 0.00042728878906928003, -0.0020776267629116774, -0.0013372235698625445, -0.007314077112823725, 0.025353621691465378, -0.00024370165192522109, -0.013375695794820786, -0.003971882630139589, -0.013735517859458923, 0.013140427879989147, 0.018087981268763542, 0.01904289424419403, -0.007722336798906326, -0.0020655174739658833, 0.0257272832095623, 0.012344667688012123, -0.022156739607453346, -0.008711847476661205, -0.0004006913513876498, -0.011922568082809448, -0.014309849590063095, 0.02189379371702671, 0.011915648356080055, -0.008490418083965778, 0.006936955731362104, -0.005390412639826536, -0.0015698970528319478, 0.023845136165618896, 0.00760470237582922, -0.0006158494506962597, 0.014960297383368015, -0.004428580403327942, -0.035290248692035675, 0.01520940475165844, 0.010241091251373291, -0.01601208560168743, 0.01527860201895237, -0.010337966494262218, -0.0004852409183513373, 0.002439178992062807, -0.002698665950447321, 0.005694877356290817, -0.03661882132291794, -0.021852275356650352, 0.010213413275778294, -0.02583799697458744, -0.018420126289129257, -0.024896923452615738, -0.021727722138166428, -0.03155363351106644, 0.0014635073021054268, -0.024163439869880676, 0.014932618476450443, -0.016634853556752205, 0.012220113538205624, -0.00038295972626656294, -0.024371029809117317, 0.0029200951103121042, -0.028453627601265907, -0.004207151010632515, -0.011922568082809448, -0.022405847907066345, -0.03158131241798401, 0.013714759610593319, -0.03731078654527664, 0.021990668028593063, 0.0011711518745869398, -0.013700920157134533, -0.01995628885924816, 0.007597782649099827, -0.005473448429256678, 0.017977267503738403, 0.029422380030155182, -0.011569665744900703, 0.003947664052248001, -0.021257184445858, 0.0389438271522522, -0.021201828494668007, 0.02337460033595562, 0.0031951514538377523, 0.011908728629350662, 0.015015654265880585, 0.008448900654911995, -0.034238461405038834, -0.006269208621233702, 0.01992860995233059, 0.01767280325293541, 0.020758969709277153, -0.003006590763106942, 0.024647817015647888, 0.007265639491379261, 0.0002651093527674675, -0.021852275356650352, -0.0027349942829459906, 0.00835894513875246, -0.0033145155757665634, -0.039940256625413895, -0.007189522963017225, 0.010967656038701534, 0.024883083999156952, -0.0028387890197336674, -0.0024426388554275036, -0.009369214996695518, 0.01799110695719719, -0.013680160976946354, -0.04342776536941528, 0.024592459201812744, 0.032328635454177856, 0.0009756715735420585, -0.0278170183300972, -0.037725966423749924, 0.04744116589426994, -0.029726844280958176, 0.03836257755756378, 0.002537783933803439, -0.00900939293205738, 0.012040202505886555, 0.04287419095635414, 0.015043333172798157, -0.012697570025920868, 0.031664349138736725, 0.005265858490020037, 0.032328635454177856, -0.0050409696996212006, -0.002243698574602604, 0.012635292485356331, 0.0001415285951225087, 0.006020101252943277, 0.03249470517039299, 0.03144291788339615, 0.005054809153079987, 0.0316920280456543, -0.005995882209390402, -0.006909276824444532, 0.0067293657921254635, -0.0062449900433421135, 0.003878467483446002, 0.004746884573251009, 0.00352902477607131, -0.0071687642484903336, -0.02239200845360756, -0.03875007480382919, -0.020357629284262657, 0.027927733957767487, 0.023775938898324966, -0.006269208621233702, -0.03714471682906151, 0.0423206202685833, -0.010469440370798111, -0.021284863352775574, 0.0033179752063006163, 0.029173271730542183, 0.01675940863788128, 0.003236669348552823, -0.0035376744344830513, 0.0066428701393306255, -0.03805810958147049, 0.010358725674450397, 0.019804056733846664, -0.0021554729901254177, 0.00799220334738493, 0.013721679337322712, -0.005577242933213711, 0.033740244805812836, 0.03147059679031372, 0.03653578460216522, -0.009666760452091694, -0.04024472087621689, -0.004047999158501625, -0.017368337139487267, 0.010510957799851894, 0.008877919055521488, -0.02964380942285061, -0.02179691754281521, 0.02848130650818348, -0.0076600597240030766, 0.0004409118555486202, 0.0045289150439202785, 0.0003360358241479844, -0.010739306919276714, 0.007985283620655537, -0.006926576141268015, -0.00939689390361309, 0.022654956206679344, 0.016911640763282776, -0.0183786079287529, 0.01858619786798954, 0.03897150605916977, 0.027678625658154488, 0.015389315783977509, -0.015500030480325222, -0.0050409696996212006, 0.02442638762295246, -0.027235768735408783, 0.044092051684856415, -0.0053350552916526794, 0.027761662378907204, 0.01639958657324314, 0.014835743233561516, -0.02611478418111801, 0.0316920280456543, -0.011112968437373638, -0.03589917719364166, -0.021907633170485497, 0.02073129080235958, -0.005047889426350594, -0.013604044914245605, 0.033712565898895264, 0.014039983041584492, 0.026848267763853073, 0.037725966423749924, 0.007390193175524473, -0.0015266492264345288, 0.011673460714519024, -0.033850960433483124, 0.0002644606283865869, 0.023609867319464684, 0.01664869301021099, -0.0012758116936311126, -0.022890223190188408, 0.012199354358017445, 0.031166132539510727, 0.022585758939385414, -0.022973259910941124, -0.0023924713023006916, -0.030723275616765022, -0.01612279936671257, 0.03260542079806328, -0.0010959005448967218, 0.03819650411605835, -0.007404032628983259, -0.006431820802390575, 0.015223244205117226, 0.03479203209280968, 0.029975952580571175, 0.02679290995001793, -0.014123018831014633, 0.004214070737361908, -0.004262508358806372, -0.026239337399601936, 0.029062557965517044, 0.020966559648513794, 0.008324346505105495, -0.023748261854052544, 0.0247862096875906, -0.037504538893699646, 0.004639629740267992, 0.016178157180547714, 0.0011322287609800696, -0.0057536945678293705, 0.0011503929272294044, 0.004470098298043013, -0.022613437846302986, 0.0181294996291399, -0.014351367950439453, -0.025713443756103516, 0.004196771886199713, 0.02084200456738472, -0.01605360396206379, 0.020039325580000877, -0.005705256946384907, 0.003186501795426011, -0.016344228759407997, -0.051205459982156754, -0.033850960433483124, 0.0355670340359211, -0.043455444276332855, -0.0020291893742978573, -0.014337528496980667, -0.01710539124906063, -0.0010379485320299864, 0.0009376134839840233, 0.008469659835100174, -0.0073486752808094025, 0.005642979871481657, 0.033989351242780685, -6.37905832263641e-05, 0.021783078089356422, 0.0017351038986817002, 0.0018631175626069307, 0.003234939416870475, -0.008525016717612743, 0.0004184229765087366, 0.03933132812380791, 0.002807650715112686, 0.010718547739088535, -0.02408040501177311, -0.00030230250558815897, 0.007410952355712652, -0.017188426107168198, 0.030667917802929878, 0.004982152488082647, -0.015223244205117226, 0.005594542250037193, -0.0015197296161204576, 0.042403656989336014, -0.023679064586758614, -0.011362075805664062, -0.02460629865527153, -0.04674920067191124, 0.012406944297254086, -0.00184581836219877, -0.012739087454974651, 0.014655832201242447, -0.009203143417835236, -0.008822562173008919, -0.037366144359111786, 0.007535506039857864, 0.03390631824731827, -0.02583799697458744, 0.011756496503949165, 0.005615301430225372, 0.023983528837561607, 0.00760470237582922, -0.022405847907066345, 0.011714978143572807, 0.0025585428811609745, 0.0011313637951388955, -0.025146031752228737, 0.012891320511698723, -0.008296668529510498, 0.007473228964954615, -0.015901369974017143, -0.013735517859458923, 0.007729256525635719, 0.010732387192547321, -0.0073486752808094025, 0.019942449405789375, 0.002039568731561303, -0.014738867990672588, -0.014434403739869595, -0.007438630796968937, -0.029090236872434616, -0.013873911462724209, 0.00903015211224556, 0.03401703014969826, 0.0010344886686652899, -0.0052278004586696625, 0.004625790286809206, -0.03933132812380791, 0.0003148443647660315, 0.02358219027519226, -0.031525954604148865, -0.013777036219835281, 0.008462740108370781, -0.0005557349068112671, -0.017755838111042976, -0.01915360987186432, 0.02122950553894043, -0.028675056993961334, 0.0010742766316980124, -0.0192228052765131, -0.018115660175681114, 0.011382834985852242, -0.006296887528151274, 0.0057398551143705845, 0.004113735631108284, -0.014960297383368015, -0.02410808391869068, -0.0003273862530477345, -0.01954111084342003, 0.015444673597812653, -0.022087544202804565, -0.032550062984228134, 0.030667917802929878, 0.04030007869005203, 0.03028041683137417, 0.024703172966837883, -0.014780386351048946, 0.0159428883343935, 0.009113187901675701, -0.04378758743405342, -0.02218441851437092, 0.01918128877878189, 0.0025101054925471544, 0.002380361780524254, 0.016662532463669777, 0.005950904451310635, -0.0234437957406044, 0.033075958490371704, 0.012261630967259407, -0.006456039380282164, -0.006604812107980251, -0.022198257967829704, -0.010081939399242401, -0.014863422140479088, 0.019416555762290955, 0.012725248001515865, -0.00793684646487236, -0.01379779540002346, 0.012746007181704044, -0.01918128877878189, -0.02280718833208084, 0.003964963369071484, 0.0035324846394360065, 0.002987561747431755, -0.022945581004023552, -0.023291563615202904, -0.08978946506977081, -0.020565219223499298, 0.004435499664396048, 0.02298709936439991, -0.0030757873319089413, -0.014475921168923378, -0.004079137463122606, 0.009043990634381771, -0.0059855030849576, 0.006957714445888996, -0.003746994072571397, -0.0017472133040428162, 0.03692328557372093, -0.005352354142814875, 0.0014790765708312392, 0.028813449665904045, -0.015998246148228645, -0.013444893062114716, -0.00678472314029932, 0.006798562593758106, -0.01080850325524807, 0.001677151769399643, 0.01566610299050808, -0.00265714805573225, -0.011964086443185806, 0.028785770758986473, -0.00019991320732515305, -0.0005531400674954057, 0.00968059990555048, -0.016039764508605003, 0.013541767373681068, 0.012725248001515865, 0.013507169671356678, -0.04334472864866257, 0.024163439869880676, 0.00024716148618608713, -0.002243698574602604, -0.015624584630131721, 0.004833380226045847, 0.006549454759806395, 0.001178071484901011, 0.0017351038986817002, -0.022931741550564766, -0.024440227076411247, 0.003871547756716609, -0.003312785644084215, -0.015444673597812653, -0.021949149668216705, -0.002389011438935995, 0.019305841997265816, -0.009161625057458878, 0.007964524440467358, -0.018890662118792534, -0.0214094165712595, -0.01343105360865593, 0.004089517053216696, 0.011029932647943497, -0.009417652152478695, 0.004688067361712456, 0.009237741120159626, -0.0008294938015751541, 0.010836182162165642, -0.0068504600785672665, 0.009888188913464546, -0.028287556022405624, 0.012642212212085724, 0.04273580014705658, 0.02446790598332882, 0.028564341366291046, -0.026557641103863716, 0.014143778011202812, -0.008815642446279526, -0.006303807254880667, 0.004618870560079813, 0.03202417120337486, 0.022751830518245697, 0.016482621431350708, 0.011604264378547668, 0.013029713183641434, -0.003598221344873309, -0.0236929040402174, 0.0007447280222550035, -0.016427265480160713, 0.011119888164103031, 0.012995114549994469, 0.0010863860370591283, 0.0013415483990684152, -0.005867868661880493, 0.012351586483418941, 0.01330649945884943, 0.013368776068091393, -0.010220333002507687, 0.036203641444444656, 0.003958043642342091, 0.0004618870734702796, 0.0618894062936306, -0.006525236181914806, -0.008019882254302502, -0.018475482240319252, -0.01890450157225132, 0.020620577037334442, -0.013970786705613136, 0.0038819273468106985, -0.010898458771407604, 0.011694219894707203, -0.016275031492114067, -0.012988194823265076, -0.0015231893630698323, 0.014212974347174168, -0.0025844916235655546, 0.007300237659364939, -0.027761662378907204, -0.01696699857711792, 0.01858619786798954, -0.02214290015399456, 0.003124224953353405, 0.005642979871481657, 0.00835894513875246, 0.013112748973071575, 0.007805372588336468, -0.00029603156144730747, 0.007743095513433218, 0.0073417555540800095, -0.03523489087820053, -0.0007507827249355614, 0.00658405339345336, 0.006646330002695322, 0.009161625057458878, 0.019596466794610023, 0.002954693278297782, -0.004155253525823355, 0.0017939209938049316, 0.01767280325293541, 0.01554154884070158, -0.006770883686840534, 0.016275031492114067, 0.037089359015226364, 0.00195826287381351, 0.02538130059838295, -0.027194250375032425, 0.024025047197937965, -0.008400462567806244, -0.01353484857827425, -0.019098252058029175, -0.00026792046264745295, 0.02711121365427971, 0.0015923859318718314, 0.0030515685211867094, 0.023042455315589905, -0.0061654141172766685, 0.0011209843214601278, 0.0111752450466156, 0.01547235157340765, 0.02805228717625141, -0.01547235157340765, 0.005788292735815048, -0.001128769014030695, -0.004784942604601383, -0.00026662301388569176, -0.008179034106433392, 0.006075458601117134, 0.0073555950075387955, 0.004625790286809206, 0.008711847476661205, 0.0161919966340065, -0.0018942559836432338, -0.009203143417835236, -0.007860729470849037, 0.00841430202126503, 0.00045799475628882647, 0.005348894279450178, -0.006369543727487326, -0.005407711490988731, -0.041130438446998596, 0.009120107628405094, -0.0057121766731143, -0.014309849590063095, 0.012413864023983479, 0.027941573411226273, -0.003080977126955986, -0.011099128983914852, -0.006123896222561598, -0.011327478103339672, 0.021201828494668007, -0.0052278004586696625, 0.0056326002813875675, -0.023734422400593758, 0.008898678235709667, 0.011320558376610279, 0.00406529800966382, 0.008912517689168453, 0.044894732534885406, 0.015818335115909576, 0.009078589268028736, 0.009521447122097015, -0.012628372758626938, 0.050541169941425323, 0.022308971732854843, -0.030778631567955017, -0.03780900314450264, -0.012995114549994469, -0.02980988100171089, 0.01341029442846775, 0.01237234566360712, -0.007369433995336294, 0.013583285734057426, -0.01221319381147623, 0.0010050800628960133, 0.0053419750183820724, -0.0256304070353508, 0.025865675881505013, -0.005310836248099804, 0.044341158121824265, -0.001939233741723001, -0.006110056769102812, -0.013389535248279572, 0.01970718242228031, 0.00997814442962408, -0.0033352745231240988, -0.002224669558927417, 0.03224559873342514, 0.007127246353775263, -0.020537540316581726, 0.0011832612799480557, 0.0027765121776610613, 0.02633621357381344, 0.008988633751869202, -0.07473228871822357, -0.01664869301021099, 0.016607176512479782, 0.010552476160228252, 0.017188426107168198, 0.02038530819118023, -0.011417433619499207, -0.014752707444131374, -0.018600037321448326, 0.027512554079294205, -0.03470899537205696, 0.034653641283512115, 0.017686642706394196, -0.011915648356080055, -0.009389974176883698, -0.01979021728038788, 0.004826460499316454, 0.0279138945043087, 0.024938441812992096, -0.043455444276332855, 0.005501126870512962, 0.005359273869544268, -0.00012833801156375557, 0.0008692818228155375, 0.025090673938393593, -0.012427703477442265, 0.015970567241311073, -0.0028387890197336674, -0.012067881412804127, -0.001465237233787775, 0.0010708168847486377, 0.0018285192782059312, 0.00906474981456995, -0.027678625658154488, 0.019305841997265816, -0.004881817847490311, 0.0030394592322409153, 0.012081719934940338, -0.006435280665755272, -0.006023561116307974, 0.013209624215960503, 0.008082158863544464, 0.0020291893742978573, -0.008933276869356632, -0.0008281964110210538, -0.025782641023397446, 0.011867211200296879, 0.006629031151533127, -0.00878104381263256, -0.007016531657427549, -0.021990668028593063, 0.01794958859682083, 0.004442419391125441, -0.012988194823265076, 0.012116318568587303, -0.00837970431894064, -0.012932837940752506, 0.008864079602062702, 0.02506299503147602, -0.012925918214023113, -0.009936627000570297, 0.013091989792883396, -0.001096765510737896, -0.00013612261682283133, 0.011874130927026272, -0.004532374907284975, -0.006161954253911972, 0.033740244805812836, -0.026280855759978294, -0.017838874831795692, 0.013195784762501717, 0.005390412639826536, -0.011894889175891876, 0.0027592130936682224, -0.00678472314029932, -0.03160899132490158, -0.01612279936671257, -0.013223463669419289, -0.0002207802899647504, 0.0020170798525214195, -0.019693342968821526, 0.023665225133299828, -0.003174392506480217, -0.01437904592603445, -0.0056671989150345325, -0.025118352845311165, -0.03778132423758507, -0.008940196596086025, 0.018364768475294113, -0.008068319410085678, -0.014641992747783661, -0.018710751086473465, -0.03434917330741882, 0.021990668028593063, -0.0247862096875906, 0.028010768815875053, 0.013403374701738358, -0.05593850463628769, -0.0192228052765131, -0.013486410491168499, 0.006812402047216892, 0.008497337810695171, 0.014337528496980667, -0.0352625697851181, 0.04378758743405342, 0.0005034049972891808, -0.005390412639826536, -0.0073209963738918304, 0.0032591582275927067, 0.001446208218112588, -0.0051274653524160385, -0.037615254521369934, -0.0017921910621225834, -1.2994628377782647e-05, 0.004286727402359247, 0.0032833770383149385, 0.004432039801031351, -0.0159428883343935, -0.005670658312737942, -0.011168325319886208, 0.014641992747783661, 0.0036259000189602375, 0.0228487066924572, 0.011057611554861069, 0.013659401796758175, 0.02207370474934578, 0.008663410320878029, 0.0014929159078747034, 0.023845136165618896, 0.026945142075419426, -0.006348785012960434, -0.02116031013429165, -0.017714321613311768, -0.0013501979410648346, 0.008573454804718494, -0.0073417555540800095, 0.009237741120159626, -0.0030757873319089413, 0.008573454804718494, -0.015444673597812653, -0.011756496503949165, 0.023083973675966263, -0.007895328104496002, -0.002506645629182458, -0.0028024609200656414, -0.036978643387556076, 0.009902028366923332, -0.0119710061699152, 0.015887530520558357, -0.019319681450724602, 0.008455820381641388, -0.009050910361111164, -0.009147785604000092, -0.010587074793875217, -0.023388439789414406, -0.0005198391736485064, 0.022156739607453346, -0.0316920280456543, -0.004823000635951757, -0.010434841737151146, -0.005231260322034359, -0.0033439239487051964, -0.0009531826945021749, -0.005501126870512962, -0.03434917330741882, 0.0013432783307507634, 0.03584381937980652, 0.020758969709277153, -0.005400791764259338, -0.025256745517253876, 0.016482621431350708, -0.01664869301021099, -0.014974136836826801, 0.017437534406781197, -0.0007559724617749453, 0.013721679337322712, 0.04154561832547188, -0.01801878586411476, 0.028425948694348335, -0.007210282143205404, 0.010718547739088535, -0.004082597326487303, -0.02186611481010914, -0.010725467465817928, 0.0028284096624702215, 0.008711847476661205, 0.006885058246552944, -0.04652776941657066, 0.0279138945043087, -0.015306279994547367, 0.01569378189742565, -0.013700920157134533, 0.000283705914625898, -0.009659840725362301, 0.005397331900894642, -0.021700043231248856, -0.012725248001515865, 0.010068099945783615, 0.022931741550564766, -0.031913455575704575, -0.008331266231834888, -0.023457635194063187, -0.02788621559739113, -0.02756791189312935, 0.02499379962682724, -0.02538130059838295, 0.027055857703089714, 0.01956878788769245, -0.053281355649232864, 0.013175025582313538, -0.02861969918012619, 0.0013311689253896475, 0.003902686294168234, -0.02773398347198963, -0.007500907871872187, -0.018157178536057472, -0.03290988504886627, -0.018987538293004036, -0.004245209041982889, 0.020108520984649658, -0.030225059017539024, -0.015762977302074432, 0.024454066529870033, 0.029200950637459755, 0.010967656038701534, 0.006507936865091324, -0.009853591211140156, 0.009279259480535984, 0.015320119448006153, -0.02273799106478691, 0.0008675519493408501, -0.010670110583305359, 0.04002329334616661, 0.0159428883343935, -0.005258938763290644, -0.032550062984228134, 0.001920204726047814, -0.014641992747783661, 0.001353657804429531, 0.0017316440353170037, 0.006981933489441872, 0.0119710061699152, -0.010282609611749649, -0.0032332094851881266, -0.004480477422475815, 0.011894889175891876, 0.008552695624530315, 0.014254492707550526, -0.060284048318862915, -0.017963428050279617, -0.016178157180547714, -0.010559395886957645, -0.029616130515933037, 0.02246120572090149, -0.002126064384356141, 0.0034580982755869627, 0.009708277881145477, -0.0031467138323932886, 0.00445279898121953, -0.0019721020944416523, -0.010275689885020256, -0.007307157386094332, 0.023277724161744118, 0.015679942443966866, 0.023319242522120476, -0.02435719035565853, 0.023955849930644035, 0.014863422140479088, -0.01591520942747593, -0.017714321613311768, -0.021340221166610718, -0.0076669794507324696, -0.007507827132940292, 0.007853809744119644, -0.012116318568587303, -0.025602729991078377, -0.0006219041533768177, 0.009175464510917664, -0.010919217951595783, 0.010794663801789284, 0.008137515746057034, 0.008808722719550133, 0.0037262351252138615, -0.014752707444131374, 0.0023976610973477364, 0.00012487817730288953, -0.014475921168923378, -0.005566863808780909, -0.007417871616780758, -0.013652482070028782, -0.005577242933213711, -0.0014332338469102979, -0.0005816836492158473, -0.023526832461357117, 0.0023042457178235054, -0.012386185117065907, -0.0017697021830826998, 0.007743095513433218, 0.004594651982188225, -0.019278163090348244, -0.01633038930594921, -0.010241091251373291, 0.007632381282746792, 0.0071480050683021545, -0.009279259480535984, 0.003885387210175395, 0.004182932432740927, 0.042016156017780304, 0.00825515016913414, 0.0015871962532401085, 0.003546323860064149, 0.005072108004242182, -0.01356944628059864, -0.00467422790825367, -0.005023670848459005, -0.029837558045983315, 0.012683730572462082, -0.005705256946384907, 0.03720007464289665, 0.02711121365427971, -0.00019569654250517488, -0.01763128489255905, -0.0062242308631539345, -0.05452689155936241, -0.0026467686984688044, -0.00890559796243906, 0.022170579060912132, 0.006902357563376427, -0.001596710761077702, -0.018350929021835327, 0.011666540987789631, 0.007514746859669685, -0.017326820641756058, 0.026557641103863716, 0.006590972654521465, 0.02668219618499279, -0.045005444437265396, 0.029754523187875748, 0.008407382294535637, -0.005618761293590069, -0.011389754712581635, 0.002594871213659644, 0.009756715968251228, 0.007846890948712826, -0.003397551365196705, 0.004563513677567244, 0.006200012285262346, 0.004968313500285149, 0.002781701972708106, -0.01651030033826828, -0.020163878798484802, 0.0008299262844957411, 0.008068319410085678, 0.023153170943260193, -0.0007040750351734459, 0.006068538874387741, -0.016704050824046135, 0.022516561672091484, 0.004293646663427353, -0.011991764418780804, 0.0002750563435256481, 0.016164317727088928, 0.0020983859430998564, -0.006269208621233702, -0.005463068839162588, 0.0008126271422952414, -0.0007905707461759448, -0.019804056733846664, -0.011182164773344994, -0.01833708956837654, 0.010185734368860722, -0.004255588632076979, 0.00538695277646184, -0.0014799415366724133, 0.006189632695168257, -0.006891977973282337, -0.011977924965322018, -0.0040168603882193565, -0.016634853556752205, -0.012171675451099873, -0.026723712682724, -0.005016751121729612, -0.010531716980040073, -0.026626838371157646, -0.0068227811716496944, -0.0010803313925862312, 0.006525236181914806, -0.005757154431194067, 0.008365864865481853, 0.008012962527573109, 0.019554948434233665, -0.02861969918012619, -0.0034252300392836332, 0.012835962697863579, 0.01767280325293541, 0.025353621691465378, 0.012870561331510544, 0.008435061201453209, -0.006590972654521465, -0.013133508153259754, 0.0010881159687414765, -0.011894889175891876, 0.003760833293199539, 0.0035567034501582384, 0.00770849734544754, 0.006348785012960434, -0.006781263276934624, -0.011569665744900703, -0.0021554729901254177, 0.010580155067145824, 0.0012680270010605454, 0.00028154352912679315, 0.008338185958564281, 0.004214070737361908, 0.007680818904191256, 0.0020689773373305798, 0.030861668288707733, -0.017575927078723907, 0.0013683621073141694, 0.020288432016968727, 0.00013893372670281678, 0.01520940475165844, 0.0114243533462286, 0.0030671376734972, 0.005144764669239521, -0.006501017138361931, -0.017797356471419334, 0.009016312658786774, 0.00848349928855896, -0.021921472623944283, -0.005296997260302305, 0.01639958657324314, -0.04337240755558014, -0.012953597120940685, -0.006501017138361931, 0.009057830087840557, -0.003933824598789215, -0.002430529333651066, -0.02820451930165291, -0.009639081545174122, 0.0006504477350972593, -0.0020983859430998564, 0.0009185844101011753, -0.007528586313128471, -0.02837059088051319, -0.005594542250037193, 0.008864079602062702, -0.016067441552877426, 0.01140359416604042, -0.0034321495331823826, 0.005850569810718298, 0.018876822665333748, 0.009708277881145477, -0.0016572577878832817, -0.013742437586188316, -0.013984626159071922, 0.017589766532182693, -0.0129397576674819, 0.021423256024718285, 0.027471035718917847, 0.027927733957767487, 0.004155253525823355, -0.015638424083590508, 0.02558889053761959, -0.015375476330518723, -0.034100066870450974, -0.006808942183852196, 0.004909496288746595, 0.02738800086081028, -0.013382615521550179, -0.005207041744142771, 0.0022056405432522297, 0.006262289360165596, -0.0009021502337418497, -0.036840252578258514, 0.02802460826933384, -0.014157617464661598, -0.01735449768602848, -0.013493330217897892, -0.006629031151533127, -0.0111752450466156, 0.00542847067117691, 0.009313858114182949, 0.02506299503147602, 0.004438959527760744, 0.03122149035334587, 0.005400791764259338, -0.011279040016233921, -0.009410732425749302, 0.012697570025920868, 0.015624584630131721, -0.001233428716659546, -0.00997814442962408, -0.010054260492324829, -0.011285959742963314, 0.016980836167931557, -0.025395140051841736, 0.011438191868364811, -0.007507827132940292, -0.0016987756825983524, -0.007013071794062853, 0.02848130650818348, -0.0017316440353170037, -0.004667308181524277, -0.002489346545189619, -0.006033940706402063, 0.0037366144824773073, -9.494255550634989e-07, -0.0016788817010819912, 0.0328822061419487, 0.00019277731189504266, -0.0029408540576696396, -0.02419111877679825, 0.005508046597242355, 0.01794958859682083, 0.019651824608445168, 0.0076738991774618626, 0.001852738088928163, 0.010884619317948818, -3.349005783093162e-05, 0.010829262435436249, 0.0161919966340065, -0.008206713013350964, -0.009749796241521835, -0.004508156329393387, 0.0027972711250185966, -0.009694438427686691, -0.01778351701796055, -0.025851836428046227, -0.02070361189544201, 0.016565658152103424, 0.003816190641373396, -0.010739306919276714, 0.002997941104695201, 0.03354649618268013, -0.012351586483418941, 0.02171388268470764, -0.02718041092157364, 0.002944313921034336, -0.0030532984528690577, 0.0340723879635334, -0.019554948434233665, -0.0019167448626831174, 0.022641116753220558, -0.005224340595304966, 0.012199354358017445, 0.0012438083067536354, -0.021727722138166428, 0.011894889175891876, 0.002044758526608348, -0.00738327344879508, 0.006089297588914633, 0.007846890948712826, 0.007999123074114323, 0.015098690055310726, 0.004092976916581392, 0.021769238635897636, -0.010455600917339325, -0.009050910361111164, 0.0290072001516819, -0.005902466829866171, 0.008102918043732643, 0.014296010136604309, 0.005179362837225199, -0.0014254492707550526, 0.010026582516729832, -0.003560163313522935, -2.116441828547977e-05, 0.0003628494741860777, 0.00424174964427948, -0.0018319790251553059, 0.019651824608445168, 0.01591520942747593, -0.0016122799133881927, -0.00396842323243618, -0.012227033264935017, -0.00022023968631401658, -0.0019980508368462324, 0.006103137042373419, 0.006874678656458855, -0.0276647862046957, -0.00526239862665534, 0.0034321495331823826, 0.011085289530456066, -0.014053822495043278, 0.01580449566245079, -0.007092647720128298, 0.0010872510029003024, -0.0063522448763251305, -0.012406944297254086, -0.008435061201453209, 0.015361637808382511, 0.006978473626077175, 0.005404251627624035, -0.0008891758625395596, -0.011112968437373638, 0.003978802356868982, 0.01788039319217205, -0.006933495867997408, 0.006660169456154108, 0.004975233227014542, -0.021077273413538933, -0.026170140132308006, 0.009569885209202766, 0.0038507888093590736, -0.005494207143783569, 0.0017229944933205843, 0.004864518530666828, 0.015320119448006153, -0.032550062984228134, 0.01520940475165844, -0.012282390147447586, -0.009514527395367622, 0.005224340595304966, -0.005380033049732447, 0.009805153124034405, -0.009306938387453556, 0.01851700060069561, -0.0013553877361118793, 0.003124224953353405, -0.009646001271903515, -0.04481169581413269, 0.01890450157225132, 0.016773248091340065, 0.0020845464896410704, 0.009639081545174122, -0.013029713183641434, 0.004518535919487476, 0.024343350902199745, 0.0021347140427678823, 0.014669671654701233, -0.0033075958490371704, -0.010919217951595783, -0.030225059017539024, -0.007265639491379261, 0.0073555950075387955, -0.019527271389961243, 0.012891320511698723, -0.0026415789034217596, -0.005836730357259512, -0.007023451384156942, 0.02136790007352829, -0.001297435606829822, 0.01872459053993225, -0.0014012304600328207, -0.004964853636920452, 0.009742876514792442, -0.0183786079287529, 0.007763854693621397, -0.001471291994675994, -0.0013951756991446018, -0.007687738165259361, 0.011604264378547668, 0.005933605600148439, 0.009673680178821087, -0.006753584835678339, -0.015749137848615646, 0.014462081715464592, -0.024094244465231895, 0.00983975175768137, -0.010331046767532825, -0.0038577085360884666, -0.0019721020944416523, 0.02738800086081028, 0.0011382835218682885, -0.01103685237467289, 0.022059865295886993, 0.015956727787852287, 0.010289529338479042, 1.4650210687250365e-05, 0.0071410853415727615, 0.011645781807601452, -0.00885024107992649, -0.0012316989013925195, 0.017091551795601845, 0.00329202669672668, -0.031249169260263443, 0.004957933910191059, -0.004594651982188225, 0.016953159123659134, -0.022862544283270836, -0.003553243586793542, 0.00939689390361309, -0.00445279898121953, 0.0028526284731924534, 0.012116318568587303, -0.03443221002817154, -0.004508156329393387, -0.0023769019171595573, -0.003878467483446002, -0.004712285939604044, -0.009050910361111164, -0.03069559670984745, 0.00602702097967267, 0.007805372588336468, 0.0014868611469864845, -0.00484029995277524, 0.013652482070028782, 0.028190679848194122, 0.00862189196050167, -0.004328245297074318, -0.015237083658576012, 0.023153170943260193, 0.011645781807601452, 0.011389754712581635, 0.0013112749438732862, 0.02066209353506565, 0.0005527075845748186, -0.010898458771407604, -0.013880831189453602, -0.023360760882496834, -0.009334616363048553, -0.008393543772399426, -0.013825473375618458, -0.026709873229265213, 0.02161700651049614, 0.0025827616918832064, 0.013610964640974998, 0.026709873229265213, 0.009265420027077198, 0.009618322364985943, 0.014808065257966518, 0.01788039319217205, -0.0047157458029687405, 0.024066565558314323, 0.01637190766632557, 0.01717458665370941, -0.011285959742963314, 0.018087981268763542, 0.014725029468536377, -0.03393399715423584, 0.003186501795426011, -0.0022990559227764606, -0.01714690960943699, 0.005425010807812214, -0.0011028202716261148, 0.0006802887073718011, -0.00494755432009697, 0.005425010807812214, 0.0006439605494961143, 0.029477735981345177, -0.0017117500538006425, 0.004058378748595715, -0.01221319381147623, 0.02513219229876995, 0.0002828409487847239, -0.00862189196050167, 0.026640677824616432, -0.02380361780524254, -0.030252737924456596, 0.004823000635951757, 0.02228129468858242, -0.023775938898324966, 0.012386185117065907, 0.009784393943846226, -0.01626119203865528, 0.0026657977141439915, 0.0038300298620015383, -0.008725686930119991, 0.01724378392100334, -0.01379779540002346, 0.004162173252552748, 0.02510451339185238, 0.011431272141635418, 0.01213015802204609, 0.01678708754479885, 0.012483060359954834, -0.033214353024959564, 0.00825515016913414, 0.03603757172822952, 0.005892087705433369, 0.009860510937869549, -0.025256745517253876, -0.005580702796578407, -0.031000060960650444, 0.020260754972696304, 0.007251800037920475, -0.023153170943260193, 0.01566610299050808, 0.014053822495043278, -0.008725686930119991, 0.007680818904191256, -0.019776377826929092, -0.03728310763835907, 0.0008995553362183273, 0.008912517689168453, 0.0011330937268212438, -0.011327478103339672, 0.001172881806269288, 0.004196771886199713, 0.008040640503168106, -0.008497337810695171, 0.013887750916182995, -0.003951123915612698, 0.01369400043040514, -0.014171456918120384, 0.0017255893908441067, -0.007265639491379261, -0.008303588256239891, 0.011479710228741169, 0.002532594371587038, 0.016607176512479782, 0.002757483161985874, 0.004020320251584053, 0.0004121520323678851, 0.005362733732908964, 0.01940271630883217, 0.023817457258701324, 0.007743095513433218, -0.019624145701527596, -0.002190071390941739, 0.012925918214023113, 0.005054809153079987, 0.006760504562407732, -0.008704927749931812, 0.03404470905661583, -0.001939233741723001, -0.00036825548158958554, -0.0019426936050876975, -0.0026761770714074373, -0.009473009966313839, 0.007743095513433218, -0.0007555399788543582, 0.0055391849018633366, -0.028010768815875053, 0.018738429993391037, -0.015555388294160366, 0.0024858866818249226, 0.0034892368130385876, 0.018004946410655975, 0.005874788388609886, 0.007777694147080183, -0.011189084500074387, 0.022627277299761772, 0.01253149751573801, 0.0013086800463497639, 0.007127246353775263, 0.001035353634506464, 0.016178157180547714, -0.024620138108730316, 0.013873911462724209, -0.022336650639772415, 0.022488882765173912, -0.002973722293972969, 0.01639958657324314, 0.03805810958147049, 0.024454066529870033, -0.01049019955098629, -0.024661656469106674, -0.003982262220233679, -0.0002973289811052382, 0.007618541829288006, -0.005099786911159754, -0.005037509836256504, -0.007805372588336468, 0.018184857442975044, 0.02207370474934578, -0.013091989792883396, 0.015444673597812653, 0.013112748973071575, -0.019762538373470306, 0.013652482070028782, 0.00032954863854683936, -0.030723275616765022, -0.011368995532393456, -0.021132631227374077, 0.0030792471952736378, -0.004909496288746595, 0.009500687941908836, 0.0007737040868960321, 0.0020724372006952763, 0.009424571879208088, 0.00939689390361309, -0.006494097411632538, -0.010199573822319508, 0.0004804836353287101, -0.007047669962048531, -0.0015508680371567607, -0.010254930704832077, -0.030667917802929878, -0.009632161818444729, 0.02013619989156723, -0.02724960818886757, 0.0018215995514765382, 0.005497667007148266, 0.017589766532182693, -0.021990668028593063, 0.021879954263567924, 0.007839971221983433, 0.010068099945783615, -0.001297435606829822, 0.032383993268013, 0.001389986020512879, -0.011507389135658741, -0.01547235157340765, 0.0069542545825243, 0.023540671914815903, -0.004435499664396048, 0.017050033435225487, -0.007950684987008572, -0.0005393007304519415, 0.014641992747783661, -0.0016624474665150046, 0.006895437836647034, 0.012400024570524693, -0.007916087284684181, 0.006988853216171265, -0.004214070737361908, 0.025575051084160805, -0.03648043051362038, -0.016067441552877426, 0.003698556451126933, -0.010372565127909184, -0.007237960584461689, -0.0007062374497763813, 0.01156274601817131, -0.003124224953353405, -0.01577681675553322, -0.004359383601695299, 0.004546214360743761, -0.030640238896012306, -0.0172853022813797, -0.006791642867028713, -0.00537657318636775, 0.004314405843615532, 0.0016641773981973529, -0.009341536089777946, -0.004933714866638184, -0.00869800802320242, -0.010794663801789284, 0.01109220925718546, -0.0004419930628500879, -0.0017264543566852808, 0.006940415594726801, 0.010739306919276714, -0.008649570867419243, -0.0005315160960890353, -0.0013415483990684152, -0.009369214996695518, -0.018946019932627678, -0.012683730572462082, -0.011279040016233921, 0.0011382835218682885, 0.0035567034501582384, 0.014462081715464592, 0.005175902973860502, 0.03318667411804199, -0.03235631436109543, 0.0034148504491895437, -0.006687847897410393, 0.006891977973282337, -0.018171017989516258, 0.019305841997265816, -0.007570104207843542, -0.0038819273468106985, -0.008289748802781105, -0.0026087104342877865, -0.0021485532633960247, -0.00011709356476785615, -0.014026143588125706, -0.0010145946871489286, 0.011541986837983131, 0.020288432016968727, 0.0001474751770729199, 0.014489760622382164, 0.012808283790946007, -0.003131144680082798, 0.0051274653524160385, -0.04248668998479843, -3.4598284400999546e-05, -0.0015413535293191671, 0.01052479725331068, -0.027830857783555984, -0.023153170943260193, 0.004923335742205381, -0.021464774385094643, 0.0060374001041054726, -0.005009831395000219, -0.00689889770001173, -0.014309849590063095, -0.017063872888684273, 0.021810756996273994, 0.014918779022991657, -0.01735449768602848, 0.015638424083590508, 0.0027713223826140165, 0.002482426818460226, -0.023775938898324966, -0.025215229019522667, 0.013002034276723862, -0.010504039004445076, 0.018295571208000183, 0.005636060144752264, -0.0014245843049138784, 0.002389011438935995, 0.01103685237467289, -0.02109111286699772, -0.019900932908058167, -0.0035394043661653996, 0.007902247831225395, 0.00777077442035079, -0.017091551795601845, -1.4015007764101028e-05, 0.0051620639860630035, 0.010289529338479042, 0.005767533555626869, 0.009493769146502018, -0.00322974962182343, -0.005393872037529945, -0.015624584630131721, 0.009223902598023415, -0.01372859813272953, 0.02098039910197258, 0.0114243533462286, -0.019762538373470306, -0.01746521331369877, -0.0245371013879776, -0.02080048806965351, -0.0008511177729815245, 0.004020320251584053, 0.005878248251974583, 0.0035394043661653996, 0.002176231937482953, 0.013112748973071575, 0.02387281507253647, 0.005971663631498814, -0.028951842337846756, 0.014123018831014633, -0.002980642020702362, 0.01233774796128273, -0.008857160806655884, -0.01682860404253006, -0.018862983211874962, -0.03147059679031372, 0.03418310359120369, -0.023014778271317482, -0.021284863352775574, 0.012787525542080402, 0.006895437836647034, 0.0192228052765131, -0.004861058667302132, 0.01696699857711792, 0.00265714805573225, -0.014780386351048946, 9.114485146710649e-05, 0.007293317932635546, -0.013714759610593319, -0.0028958762995898724, 0.01049019955098629, -0.026972820982336998, 0.014095339924097061, 0.013500249944627285, -0.0030861669220030308, 0.006120436359196901, 0.005930145736783743, -0.006044319830834866, 0.016662532463669777, 0.01749289222061634, 0.003698556451126933, -0.006552914623171091, -0.0051482245326042175, -0.012019443325698376, 0.005469988565891981, -0.02122950553894043, -0.006241530179977417, 0.01237234566360712, -0.008919437415897846, -0.0013977705966681242, -0.02611478418111801, -0.020537540316581726, 0.020814327523112297, -0.021630845963954926, -0.026377730071544647, 0.02225361578166485, 0.02967148646712303, 0.011002253741025925, 0.0016468781977891922, 0.0006941280444152653, 0.014337528496980667, 0.0022056405432522297, 0.0045289150439202785, -0.006438740529119968, -0.010732387192547321, -0.0076669794507324696, -0.02006700448691845, 0.007978363893926144, 0.00777077442035079, 0.01036564540117979, 0.02066209353506565, -0.02070361189544201, -0.02485540695488453, -0.020108520984649658, -0.015832174569368362, -0.023070134222507477, -0.009106268174946308, -0.007452470250427723, 0.0076600597240030766, 0.025215229019522667, -0.002174502005800605, -0.001204020227305591, -0.021464774385094643, -0.003992641810327768, -0.003615520428866148, 0.004701906815171242, 0.003534214571118355, 0.012925918214023113, 0.02408040501177311, 0.01767280325293541, 0.005611841566860676, -0.003272997448220849, -0.021672364324331284, -0.004269428085535765, 0.015250923112034798, 0.013271900825202465, 0.024938441812992096, 0.007410952355712652, -0.0004006913513876498, -0.02020539715886116, 0.014420564286410809, 0.0003392794169485569, 0.00506172887980938, 0.0031086558010429144, 0.009106268174946308, 0.008684168569743633, -0.0051620639860630035, 0.024204958230257034, 0.01630271039903164, 0.0073625147342681885, 0.009514527395367622, -0.005843650083988905, -0.02179691754281521, -0.016551818698644638, 0.00819979328662157, 0.0005090272170491517, 0.007597782649099827, 0.0021796918008476496, 0.004438959527760744, 0.0022402387112379074, -0.010794663801789284, 0.013057392090559006, 0.0053281355649232864, -0.0013683621073141694, -0.021630845963954926, -0.007756934966892004, -0.00048610588419251144, -0.0056256805546581745, -0.003615520428866148, -0.018461642786860466, 0.0102064935490489, -0.003930364735424519, 0.02045450545847416, 0.009673680178821087, -0.014212974347174168, 0.00989510864019394, 0.010310288518667221, -0.0043317051604390144, 0.011881050653755665, -0.0056602791883051395, 0.00934845581650734, -0.01929200254380703, 0.015333958901464939, 0.014067661948502064, -0.0018648473778739572, 0.0047226655296981335, -0.015347798354923725, -0.0008736066520214081, -0.011832612566649914, -0.026557641103863716, 0.007044210564345121, 0.0004045836685691029, 0.001129633979871869, 0.020080843940377235, -0.027581751346588135, 0.017257623374462128, 0.0038888470735400915, -0.007106487173587084, 0.01036564540117979, -0.014877261593937874, 0.018683072179555893, 0.018323250114917755, 0.009113187901675701, 0.0015647073742002249, -0.013458731584250927, -0.0019132849993184209, -0.006629031151533127, 0.01004734169691801, 0.0020689773373305798, 0.008967874571681023, 0.006438740529119968, -0.003186501795426011, -0.015929048880934715, 0.0003474965051282197, -0.00813059601932764, 0.0018354388885200024, 0.030225059017539024, 0.012559176422655582, -0.017119230702519417, 0.0012706218985840678, -0.0245371013879776, 0.0345706045627594, -0.005736395251005888, 0.005916306283324957, -0.031027739867568016, -0.0020067004952579737, 0.0009453980601392686, -0.008393543772399426, -0.004255588632076979, 0.02129870280623436, 0.01054555643349886, 0.02241968736052513, 0.008566535077989101, -0.016025925055146217, -0.009902028366923332, -0.02214290015399456, 0.017271462827920914, 6.67638742015697e-05, 0.012330828234553337, 0.007999123074114323, 0.008635731413960457, 0.013105829246342182, -0.0022852164693176746, -0.029062557965517044, -0.023471474647521973, -0.006006261799484491, -0.0367572158575058, -0.006881598383188248, -0.004310945980250835, 0.007916087284684181, -0.02239200845360756, 0.009535286575555801, -0.003978802356868982, 0.01664869301021099, 0.00695079518482089, 0.010614752769470215, 0.022502722218632698, -0.0073625147342681885, -0.012316988781094551, -0.017299141734838486, -0.0011927757877856493, 0.015832174569368362, 0.015084851533174515, 0.006431820802390575, 0.0032764573115855455, -0.016524139791727066, 0.0003310623287688941, -0.003056758316233754, -0.002901066094636917, -0.028453627601265907, 0.006947335321456194, 0.0063453251495957375, -0.003179582068696618, 0.01707771234214306, 0.0010145946871489286, -0.022115223109722137, -0.001103685237467289, -0.021976828575134277, -0.005373113323003054, 0.018627716228365898, 0.001421989407390356, 0.006355704739689827, 0.005681037902832031, 0.011043772101402283, -0.03199649229645729, 0.011832612566649914, 0.012296229600906372, -0.010254930704832077, 0.013604044914245605, 0.0035394043661653996, -0.005909386556595564, 0.01502949371933937, 0.01731298118829727, -0.005573783535510302, -0.00209492607973516, -0.008545775897800922, 0.008981714025139809, -0.018171017989516258, -0.010289529338479042, 0.003961503505706787, 0.0033439239487051964, -0.013963866978883743, 0.01988709345459938, 0.01577681675553322, 0.025851836428046227, 6.665575347142294e-05, 0.0021277943160384893, 0.01915360987186432, -0.008386624045670033, 0.0007905707461759448, 0.013417214155197144, -0.002786891767755151, -0.008082158863544464, 0.0036086009349673986, -0.005843650083988905, -0.0020257295109331608, -0.014808065257966518, 0.0017567278118804097, -0.01651030033826828, 0.013811634853482246, 0.01168730016797781, 0.0019236644729971886, 0.007618541829288006, -6.896005288581364e-06, -0.012787525542080402, 0.008435061201453209, -0.004653469193726778, -0.006379923317581415, 0.01954111084342003, 0.003105195937678218, -0.004393981769680977, -0.010441761463880539, -0.008711847476661205, -0.0033508436754345894, -0.004286727402359247, -0.011611183173954487, 0.011327478103339672, 0.00874644611030817, -0.012316988781094551, 0.024910762906074524, 0.02718041092157364, 0.022959420457482338, -0.006116976495832205, 0.009085508994758129, 0.0052416399121284485, -0.007307157386094332, -0.013555606827139854, -0.004013400990515947, -0.03459828346967697, 0.007929926738142967, -0.011431272141635418, -0.032051850110292435, -0.008407382294535637, 0.00014055552310310304, -0.015043333172798157, 0.008898678235709667, 0.020329950377345085, 0.01689780130982399, 0.008988633751869202, 0.031775061041116714, 0.008241310715675354, 0.020496021956205368, 0.004861058667302132, -0.005670658312737942, 0.0008736066520214081, 0.017133070155978203, 0.004833380226045847, -0.011659621261060238, -0.0042313700541853905, -0.018530840054154396, -0.014226813800632954, -0.022364329546689987, -0.006566754076629877, -0.012614534236490726, -0.02549201436340809, -0.004791862331330776, -0.02147861383855343, 0.006975013762712479, -0.013119668699800968, 0.014586635865271091, -0.012240872718393803, -0.004605031572282314, -0.01956878788769245, 0.008531936444342136, -0.030501846224069595, -0.0028647377621382475, 0.012060961686074734, -0.028398269787430763, 0.01844780519604683, 0.0021848815958946943, -0.006400682497769594, -0.030197380110621452, -0.017437534406781197, 0.020426826551556587, 0.016524139791727066, 0.0010837912559509277, -0.011770335957407951, 0.001826789346523583, 0.021284863352775574, 0.021879954263567924, 0.0073417555540800095, 0.000848090392537415, -0.02196298912167549, -0.012455381453037262, 0.008601132780313492, -0.01760360598564148, 4.911334326607175e-05, -0.028813449665904045, 0.01286364160478115, 0.0019548030104488134, -0.010836182162165642, 0.03055720403790474, -0.001128769014030695, 0.008691088296473026, -0.020994238555431366, 0.013880831189453602, -0.0015673021553084254, -0.00994354672729969, -0.010663190856575966, 0.012579935602843761, 0.0192228052765131, -0.001428044168278575, 0.0034892368130385876, -0.004701906815171242, 0.0024028506595641375, -0.03005898743867874, 0.011382834985852242, 0.01995628885924816, -0.011362075805664062, -0.0014799415366724133, 0.02745719626545906, -0.02700049988925457, -0.0011426082346588373, 0.031110776588320732, -0.00788840837776661, -0.020163878798484802, 0.011908728629350662, 0.019983967766165733, 0.01494645792990923, 0.0014885910786688328, -0.008006042800843716, 0.0031207650899887085, -0.0019409636734053493, -0.003885387210175395, 0.014046902768313885, 0.022724151611328125, 0.0002882469561882317, -0.010185734368860722, -0.013223463669419289, -0.020675932988524437, 0.01760360598564148, -0.009521447122097015, 0.008808722719550133, -0.0005081622512079775, 0.0061723338440060616, -0.007923007011413574, 0.015901369974017143, -0.0019375038100406528, 0.011202923953533173, 0.019554948434233665, -0.02403888665139675, -0.0025827616918832064, 0.007196442689746618, 0.009272339753806591, -0.001065627089701593, 0.014365206472575665, 0.01179109513759613, 0.0023717123549431562, -0.011479710228741169, 0.0040376195684075356, 0.02711121365427971, -0.011417433619499207, 0.008102918043732643, 0.008303588256239891, 0.017188426107168198, 0.010621672496199608, 0.014614314772188663, 0.01770048215985298, 0.021312542259693146, -0.010801583528518677, 0.01566610299050808, 0.009362295269966125, 0.021284863352775574, -0.007113406900316477, 0.00015666535182390362, -0.002382091712206602, -0.01794958859682083, -0.013922348618507385, 0.004234829917550087, -0.004411281086504459, -0.00020553542708512396, -0.00848349928855896, -0.01662101410329342, -0.0009505877969786525, -0.0001314734690822661, 0.014932618476450443, -0.01890450157225132, -0.013638642616569996, -0.010794663801789284, -0.0008770664571784437, 0.010711628012359142, -0.006044319830834866, 0.0009505877969786525, 0.013500249944627285, -0.005047889426350594, 0.005286617670208216, -0.01970718242228031, 0.013659401796758175, 0.011839532293379307, -0.01275984663516283, -0.015320119448006153, -0.01205404195934534, -0.016814764589071274, -0.015375476330518723, -0.007805372588336468, 0.01515404786914587, 0.00019277731189504266, -0.004906036425381899, 0.02668219618499279, 0.009445331059396267, 0.0016840713797137141, -0.013029713183641434, -0.017022354528307915, -0.016953159123659134, 0.004297106526792049, 0.025796478614211082, -0.02953309379518032, -0.010919217951595783, 0.012316988781094551, 0.01156274601817131, 0.016454942524433136, 0.005079027730971575, -0.006885058246552944, 0.014641992747783661, 0.005252019502222538, -0.002544703660532832, 0.002219479763880372, 0.017382176592946053, 0.004667308181524277, -0.009258500300347805, 0.008912517689168453, 0.0076738991774618626, 0.027415679767727852, -0.023609867319464684, -0.02401120774447918, 0.005570323672145605, 0.023955849930644035, -0.02182459644973278, -0.00030900590354576707, 0.0007533776224590838, -0.0228487066924572, 0.0018665773095563054, -0.031000060960650444, 0.0038992264308035374, 0.003013510489836335, 0.01353484857827425, -0.023070134222507477, 0.004355923738330603, 0.02749871462583542, -0.00138393125962466, 0.0009012852679006755, 0.008179034106433392, -0.018600037321448326, 0.0025222147814929485, 0.014254492707550526, -0.008006042800843716, -0.016537979245185852, -0.01731298118829727, -0.019527271389961243, 0.02161700651049614, 0.007722336798906326, 0.020579058676958084, 0.005002911668270826, -0.005449229385703802, -0.011445111595094204, 0.009355375543236732, -0.03470899537205696, 0.012427703477442265, -0.00022132089361548424, 0.005265858490020037, -0.015458513051271439, -0.004286727402359247, -0.007597782649099827, -0.010510957799851894, -0.02967148646712303, 0.0064076017588377, -0.021146470680832863, 0.004445879254490137, -0.03290988504886627, -0.005393872037529945, 0.01038640458136797, -0.002037838799878955, 0.006286507938057184, 0.010898458771407604, 0.02619781903922558, -0.031276848167181015, -0.03083398938179016, -0.00819979328662157, 0.029588451609015465, 0.016164317727088928, -0.010926137678325176, 0.008988633751869202, 0.031055418774485588, 0.02273799106478691, 0.02070361189544201, -0.013126588426530361, -0.0030654077418148518, 0.0030394592322409153, -0.009597563184797764, -0.014171456918120384, -0.033463459461927414, 0.004546214360743761, -0.0309447031468153, -0.012483060359954834, -0.005290077533572912, -0.016164317727088928, 0.0007014801958575845, 0.015513869933784008, -0.025325942784547806, 0.0014020954258739948, 0.01633038930594921, -0.0031709326431155205, -0.00618617283180356, -0.00864265114068985, 0.021921472623944283, -0.007860729470849037, 0.03927597030997276, 0.020689772441983223, 0.01639958657324314, -0.0071480050683021545, -0.011396674439311028, -0.03277149423956871, 0.0005159468855708838, 0.007369433995336294, -0.0027972711250185966, 0.0018112200777977705, -0.014074581675231457, -0.001453127828426659, 0.011327478103339672, 0.008227471262216568, -0.015527709387242794, -0.009043990634381771, -0.008089078590273857, -0.007258719764649868, -0.005182822700589895, 0.03473667427897453, 0.006272668484598398, 0.004366303328424692, -0.019693342968821526, -0.011445111595094204, 0.0028128402773290873, 0.013375695794820786, 0.019056733697652817, 0.014655832201242447, 0.012995114549994469, 0.01794958859682083, 0.03329738602042198, -0.005556484218686819, -0.012524578720331192, 0.015264762565493584, 0.015071012079715729, 0.006193092558532953, 0.005947444587945938, 0.009701358154416084, 0.012379265390336514, -0.0028699275571852922, 0.008559615351259708, -0.011202923953533173, 0.021381739526987076, 7.162925612647086e-05, -0.03252238407731056, 0.0027194248978048563, 0.00841430202126503, 0.0058401902206242085, -0.006168873980641365, 0.034127745777368546, 0.004750343970954418, -0.025685764849185944, -0.010026582516729832, 0.0051343850791454315, 0.005812511313706636, 0.004698446951806545, 0.006853919941931963, -0.011659621261060238, 0.002181421732529998, 0.011887969449162483, -0.028398269787430763, -0.019734859466552734, -0.009991983883082867, 0.03041880950331688, 0.0039061461575329304, 0.014974136836826801, 0.017755838111042976, 0.0073209963738918304, -0.012413864023983479, -0.01444824319332838, 0.007417871616780758, -0.0119710061699152, 0.02002548612654209, -0.0076462202705442905, -0.015112529508769512, -0.02154781110584736, -0.0194719135761261, -0.03207952901721001, -0.013389535248279572, -0.02316701039671898, -0.023665225133299828, -0.006438740529119968, 0.017409855499863625, 0.005435390397906303, -0.0026398489717394114, -0.01904289424419403, 0.007054589688777924, -0.010670110583305359, 0.015430834144353867, -0.007431711070239544, -0.01343105360865593, 0.010946896858513355, -0.0045358347706496716, 0.02193531207740307, 0.007798452861607075, -0.005286617670208216, 0.012988194823265076, -0.00971519760787487, 0.01865539327263832, 0.015818335115909576, 0.007196442689746618, 0.029090236872434616, -0.0036950965877622366, -0.021769238635897636, 0.006161954253911972, -0.010400244034826756, -0.02802460826933384, -0.01077390555292368, 0.0025170249864459038, -0.009853591211140156, -0.024564780294895172, 0.006023561116307974, -0.016731729730963707, 0.013721679337322712, -0.00046967167872935534, 0.0021554729901254177, 0.028176842257380486, 0.01956878788769245, 0.001763647422194481, -0.00630034739151597, -0.003248778637498617, -0.014185295440256596, 0.03351881727576256, 0.014974136836826801, 0.0025671925395727158, 0.010981494560837746, 0.008670330047607422, 0.013624804094433784, 0.020966559648513794, 0.01304355263710022, 0.0029391241259872913, -0.02545049600303173, -0.007590863388031721, 0.023526832461357117, -0.0247862096875906, -0.004701906815171242, 0.018046464771032333, -0.01799110695719719, 0.008594213053584099, 0.006473338697105646, -0.0014072851045057178, -0.016150478273630142, 0.020426826551556587, 0.0023976610973477364, 0.020620577037334442, 0.025685764849185944, -0.026917463168501854, 0.009971224702894688, 0.0067501249723136425, 0.027166571468114853, -0.018254054710268974, -0.008262069895863533, -0.02091120183467865, 0.014434403739869595, -0.0067293657921254635, 0.011763416230678558, 0.0031467138323932886, 0.027263445779681206, -0.03196881338953972, 0.012365425936877728, 0.002593141281977296, -0.0014263142365962267, 0.009258500300347805, 0.026668356731534004, 0.0024841567501425743, -0.016164317727088928, -0.03005898743867874, 0.00939689390361309, 0.007507827132940292, -0.005089407321065664, 0.02111879177391529, 0.004691527225077152, -0.007570104207843542, -0.002518754918128252, 0.005317755974829197, 0.015569226816296577, -0.0056395200081169605, -0.0023059756495058537, -0.005431930534541607, -0.004200231283903122, 0.013417214155197144, 0.002600061008706689, 0.023983528837561607, 0.008345105685293674, -0.03493042662739754, 0.010351805947721004, -0.012718328274786472, 0.008158274926245213, -0.016344228759407997, -0.00024045805912464857, 0.005200122017413378, 0.02636389061808586, -0.013085070066154003, 0.004099896643310785, -0.0036086009349673986, 0.019831735640764236, -0.01626119203865528, -0.005805591586977243, -0.01940271630883217, 0.00309308641590178, 0.007819212041795254, 0.031166132539510727, -0.002525674644857645, 0.023028617724776268], "7ac58128-4d5a-455e-a473-58d1e7958af6": [-0.00901113636791706, 0.004695498384535313, -0.0041749486699700356, 0.04904421418905258, 0.013871943578124046, -0.00954575464129448, 0.00906037725508213, 0.01208519283682108, 0.0009883408201858401, -0.03624150902032852, 0.013344359584152699, 0.04094052314758301, -0.004298051819205284, -0.0023512663319706917, 0.029319604858756065, 0.03323076292872429, -0.03750770911574364, 0.0024831623304635286, 0.02063908986747265, 0.011782711371779442, 0.06004610285162926, 0.010994852520525455, -0.05700721964240074, 0.020357711240649223, -0.01125512644648552, 0.019133714959025383, 0.008687551133334637, 0.02030143514275551, -0.04338851571083069, -0.015757177025079727, 0.01789565198123455, 0.013133326545357704, 5.753963705501519e-05, 0.0014710802352055907, 0.019386956468224525, -0.01568683236837387, 0.01942916214466095, 0.007934864610433578, -0.008764930069446564, -0.007716796360909939, -0.02063908986747265, 0.012303260155022144, -0.015278834849596024, -0.042685069143772125, -0.04713084548711777, 0.016052624210715294, 0.0013638047967106104, 0.01665758714079857, -0.03182386979460716, -0.004385982174426317, 0.021342534571886063, -0.03823929280042648, 0.012169606052339077, 0.015067800879478455, 0.022228876128792763, 0.02032957226037979, -0.022482115775346756, 0.01768461801111698, -0.0005522046703845263, -0.05211123824119568, 0.01722034439444542, -0.028137817978858948, -0.007080178242176771, -0.011339540593326092, -0.012014848180115223, 0.024226659908890724, 0.00024708520504646003, -0.01909150928258896, -0.034046757966279984, 0.005859700497239828, 0.017023378983139992, 0.029572846367955208, -0.01691082864999771, 0.04811566695570946, 0.03376537933945656, -0.0056486669927835464, 0.033737242221832275, 0.01643248461186886, 0.02229922078549862, -0.017740894109010696, 0.019035233184695244, 0.009454306215047836, 0.0656173899769783, -0.009468375705182552, 0.04645553603768349, 0.008912653662264347, 0.0033554346300661564, -0.034074895083904266, 0.008624240756034851, -0.03686054050922394, 0.00651390478014946, 0.026533961296081543, -0.00882824044674635, -0.008997066877782345, -0.025647619739174843, 0.015475799329578876, -0.006394318770617247, 0.0015317524084821343, 0.023945283144712448, 0.01644655503332615, -0.02516927756369114, -0.014223666861653328, 0.021806808188557625, 0.019471369683742523, 0.03165504336357117, -0.016643518581986427, 0.005201979074627161, 0.0036086749751120806, -0.03399048373103142, 0.03807046636939049, 0.0010410991962999105, -0.0022211289033293724, -0.016854552552103996, 0.02242583967745304, -0.05650073662400246, -0.006658111233264208, -0.014744216576218605, -0.02141287922859192, -0.02473314106464386, -0.005799907725304365, 0.011459126137197018, 0.005015566013753414, 0.005247702822089195, -0.027856439352035522, -0.01297856867313385, 0.010333613492548466, -0.01866944134235382, 0.0006427732878364623, 0.0028964364901185036, -0.013998564332723618, -0.018289580941200256, -0.00024928347556851804, -0.016840483993291855, 0.006999282166361809, -0.0018254409078508615, -0.012873051688075066, 0.008849343284964561, 0.010952644981443882, -0.010284372605383396, 0.02383273094892502, -0.03477834165096283, -0.024873830378055573, -0.005958182737231255, -0.0023284044582396746, 0.035735029727220535, -0.030107464641332626, 0.005493908654898405, 0.01899302750825882, 0.003161987289786339, 0.016319934278726578, -0.034496963024139404, -0.02352321520447731, -0.027532855048775673, -0.001002409728243947, 0.056922804564237595, 0.02317149192094803, -0.030191877856850624, 0.003759915940463543, 0.028981951996684074, 0.03846439719200134, 0.008553896099328995, -0.04065914452075958, -0.005898389965295792, 0.06995061039924622, 0.06409794837236404, -0.0091096181422472, 0.009953753091394901, 0.020160745829343796, -0.031176701188087463, 0.01026326883584261, 0.006193837150931358, -0.03016374073922634, 0.0448235422372818, 0.0377328135073185, -0.03854880854487419, 0.0013207187876105309, 0.02252432331442833, 0.06876882910728455, -0.014075943268835545, 0.02197563461959362, 0.012486156076192856, 0.00960202980786562, 0.013449876569211483, 0.013886013068258762, 0.006362664047628641, 0.002389955800026655, 0.0065877665765583515, 0.01699524186551571, 0.028897538781166077, 0.005641632247716188, 0.0010059269843623042, -0.010818990878760815, 0.016615381464362144, 0.036382198333740234, -0.01169829722493887, -0.003992052748799324, -0.01567276380956173, -0.007336935959756374, -0.02231328934431076, 0.015166283585131168, 0.013731255196034908, -0.0514359287917614, 0.014505044557154179, 0.028011197224259377, -0.033624690026044846, 0.012887120246887207, -0.03674798831343651, -0.031852010637521744, 0.022327357903122902, -0.007062592078000307, 0.017698686569929123, -0.04020893946290016, -0.011480229906737804, -0.0006357388338074088, -0.02263687364757061, -0.0048748767003417015, -0.012232916429638863, 0.01843027025461197, 0.014357320964336395, -0.047327809035778046, -0.014097046107053757, 0.012211812660098076, 0.01137471292167902, 0.0029878844507038593, -0.0567539781332016, 0.0021384740248322487, 0.005708459764719009, 0.01878199353814125, -0.029291467741131783, 0.0133021529763937, 0.03303379565477371, -0.018373994156718254, 0.0017032172763720155, -0.031429942697286606, -0.01691082864999771, 0.041475143283605576, 0.005708459764719009, 0.001959095476195216, 0.007259557023644447, 0.001196736586280167, -0.028981951996684074, 0.03258359059691429, 0.02362169697880745, -0.01897895708680153, -0.002834885148331523, 0.006119975354522467, -0.010614991188049316, 0.01191636547446251, 0.036607299000024796, -0.014272907748818398, 0.015433592721819878, 0.012197744101285934, -0.016924897208809853, -0.0036543989554047585, -0.037845365703105927, 0.025788309052586555, 0.008898585103452206, -0.034722067415714264, 0.003265745472162962, -0.003650881815701723, 0.031176701188087463, 0.005789355840533972, 0.017726825550198555, -0.011079265736043453, 0.013048912398517132, 0.014800491742789745, -0.0022791631054133177, -0.015306972898542881, 0.005286392290145159, 0.019358817487955093, 0.017909720540046692, 0.018402133136987686, -0.03126111626625061, 0.017937857657670975, 0.012528362683951855, 0.011219955049455166, 0.03674798831343651, -0.008778998628258705, -0.0007060833740979433, -0.020231090486049652, -0.07130122929811478, -0.011395815759897232, -0.017487652599811554, -0.00033061933936551213, 0.0034187447745352983, 0.002226404845714569, 0.00032622282742522657, -0.03973059728741646, -0.04403568431735039, 0.011241057887673378, 0.0109245078638196, 0.011677194386720657, 0.03193642199039459, -0.010347682051360607, -0.018148891627788544, 0.00950354803353548, -0.04209417477250099, 0.0034099516924470663, -0.004646257031708956, 0.08036160469055176, 0.009186997078359127, -0.029235191643238068, -0.014146287925541401, 0.010242165066301823, 0.02758912928402424, -0.020568745210766792, 0.027912715449929237, 0.00888451561331749, -0.0317675955593586, 0.028419194743037224, 0.05531894788146019, -0.057260457426309586, -0.02229922078549862, -0.00013893046707380563, -0.0015352696646004915, 0.03345586359500885, -0.05323674902319908, -0.01633400283753872, -0.013506152667105198, -0.02550693042576313, -0.006028527393937111, 0.011311402544379234, -0.051295239478349686, 0.0010498922783881426, 0.025014519691467285, -0.03601640462875366, 0.00330091780051589, 0.01876792497932911, 0.015827521681785583, -0.0328931100666523, -0.056163083761930466, 0.001846544211730361, -0.02000598795711994, 0.011065196245908737, -0.013646841049194336, -0.017853444442152977, -0.008131829090416431, -0.05785135179758072, -0.005806942004710436, -0.027335889637470245, -0.010347682051360607, -0.010994852520525455, 0.016165176406502724, -0.01923219859600067, 0.04065914452075958, 0.03002305142581463, -0.008574999868869781, -0.008687551133334637, -0.017051517963409424, 0.032077111303806305, 0.0008880998357199132, 0.027631336823105812, 0.015166283585131168, 0.027012305334210396, 0.011705332435667515, -0.029319604858756065, 0.013646841049194336, -0.0008269880199804902, 0.0008445741841569543, -0.020273298025131226, -0.007885623723268509, 0.0013444600626826286, 0.010847128927707672, -0.017065586522221565, -0.04468285292387009, 0.007618314120918512, 0.005370805971324444, 0.01209222711622715, -0.004361361730843782, -0.04105307534337044, 0.008814170956611633, 0.00977085717022419, -0.03961804509162903, -0.019724609330296516, 0.0012477363925427198, -0.025577275082468987, -0.0013620462268590927, 0.0012143226340413094, -0.03145807981491089, 0.013316222466528416, -0.005680321715772152, -0.00928547978401184, 0.007583141792565584, 0.025464724749326706, 0.0015502178575843573, 0.008582034148275852, 0.015363248065114021, -0.018824199214577675, -0.004589981399476528, -0.015841590240597725, -0.029516570270061493, 0.02210225537419319, 0.009046308696269989, -0.0008604017202742398, -0.02065315842628479, -0.0046532913111150265, -0.0022826804779469967, -0.016868621110916138, 0.018373994156718254, -0.003897087648510933, -0.0012538915034383535, 0.016319934278726578, -0.045104920864105225, -0.021933428943157196, 0.03733888268470764, -0.014068908989429474, -0.02847547084093094, -0.00477287732064724, 0.0068023172207176685, 0.005806942004710436, 0.033287037163972855, 0.03016374073922634, -0.03179573267698288, 0.007822313345968723, 0.020357711240649223, -0.004241775721311569, -0.03967432305216789, 0.05897686630487442, 0.002521851798519492, -0.004938187077641487, 0.016967102885246277, 0.024451762437820435, 0.01941509358584881, 0.026815339922904968, 0.0066651455126702785, 0.01302780956029892, -0.020948605611920357, -0.01330918725579977, 0.013492083176970482, 0.004684946499764919, -0.006696800701320171, 0.052842821925878525, 0.015152215026319027, -0.00866644736379385, -0.004269913770258427, -0.00019575566693674773, -0.010312509723007679, -0.005972251761704683, 0.009313617832958698, 0.02758912928402424, -0.010382854379713535, -0.018247375264763832, 2.3425282051903196e-05, 0.022257013246417046, -0.013991530053317547, -0.027786094695329666, -0.03300565853714943, 0.007780106272548437, -0.01941509358584881, 0.014322148635983467, -0.008504655212163925, -0.023466939106583595, -0.043894995003938675, -0.010192924179136753, -0.0017489412566646934, -0.0013251153286546469, 0.04085611179471016, 0.016953034326434135, 0.008131829090416431, -0.06601131707429886, -0.02471907250583172, 0.0027469543274492025, 0.026027480140328407, -0.005402460694313049, 0.01392118539661169, -0.007843416184186935, -0.011072231456637383, -0.004143293481320143, 0.015546143986284733, 0.016263658180832863, 0.005645149387419224, -0.02076570875942707, 0.00038337777368724346, 0.0340186208486557, -0.031204840168356895, -0.019949711859226227, -0.025239622220396996, -0.009158859960734844, 0.020174814388155937, -0.010593888349831104, 0.02971353568136692, -0.013836771249771118, 0.03632592037320137, 0.020146677270531654, -0.01303484383970499, -0.012626845389604568, 0.0033536760602146387, -0.0005860579549334943, 0.00982009805738926, -0.0019239232642576098, -0.02108929492533207, -0.007681624032557011, 0.009454306215047836, 0.013020775280892849, -0.0062290094792842865, -0.0021349568851292133, -0.014533182606101036, 0.006060182582587004, -0.001196736586280167, -0.03522854670882225, 0.03435627371072769, -0.05689466744661331, 0.012338432483375072, -0.007618314120918512, 0.004410603083670139, 0.014315114356577396, 0.014941181056201458, 0.02364983595907688, -0.02141287922859192, -0.027096718549728394, -0.028841262683272362, 0.0292633306235075, -0.05289909616112709, 0.00878603383898735, 0.024212591350078583, 0.027575060725212097, -0.026548029854893684, -0.005075358785688877, 0.02229922078549862, -0.011290298774838448, -0.0074565215036273, -0.039252255111932755, -0.036157093942165375, 0.0015845107845962048, -0.034299999475479126, -0.019344748929142952, -0.031992699950933456, -0.012296225875616074, -0.012577604502439499, -0.05731673538684845, -0.00844134483486414, 0.03112042509019375, 0.005859700497239828, -0.0020839571952819824, -0.00665107648819685, -0.00044976541539654136, -0.0032956418581306934, 0.013295118696987629, 0.012472087517380714, -0.0014702009502798319, -0.017375102266669273, 0.04310713708400726, -0.01955578289926052, -0.025802377611398697, -0.001266201725229621, 0.017839375883340836, -0.013928219676017761, 0.010080372914671898, -0.04262879490852356, 0.010375820100307465, -0.0007065230165608227, -0.020695364102721214, 0.008286586962640285, 0.0040799835696816444, -0.010185889899730682, -0.03866136074066162, 0.04502050578594208, 0.015588350594043732, 0.013682013377547264, -0.03686054050922394, -0.0013875460717827082, -0.0010006511583924294, 0.006454112008213997, -0.0030283324886113405, 0.012422846630215645, 0.023382525891065598, -0.017206275835633278, -0.005768252536654472, 0.0017322343774139881, 0.01557428203523159, 0.013105188496410847, -0.0023424732498824596, 0.033540278673172, 0.015588350594043732, -0.011663124896585941, 0.020146677270531654, -0.02772981859743595, 0.0005262651247903705, -0.07298950105905533, -0.0007276263786479831, 0.04060287028551102, -0.006964109838008881, -0.020821984857320786, 0.010453199036419392, 0.012035951018333435, 0.02792678400874138, -0.02772981859743595, 0.0027610233519226313, -0.02739216573536396, 0.009587961249053478, 0.003918190952390432, 0.028123747557401657, -0.01302780956029892, 0.0027733335737138987, -0.01712186262011528, 0.03444068878889084, 0.017529860138893127, 0.009707546792924404, 0.024212591350078583, 0.04538629949092865, 0.008708654902875423, -0.0011580470018088818, 0.017037447541952133, 0.018852338194847107, -0.01093857642263174, 0.0448235422372818, 0.01235953625291586, 0.0033589520025998354, 0.006545559968799353, 0.0205546747893095, -0.0071610743179917336, -0.005149220582097769, 0.007491693831980228, -0.01446283794939518, 0.021680187433958054, 0.011395815759897232, 0.030754635110497475, 0.014814561232924461, -0.021581705659627914, 0.021778671070933342, 0.005117565393447876, -0.019949711859226227, 0.026463616639375687, -0.018247375264763832, 0.026252582669258118, -0.02319963090121746, -0.014357320964336395, 0.010643129236996174, -0.004072948824614286, 0.022693149745464325, -0.04580836743116379, 0.006612387020140886, -0.02298859693109989, -0.009447271935641766, 0.035284824669361115, -0.0218490157276392, -0.019935643300414085, 0.02615410089492798, -0.032949384301900864, -0.01325291208922863, 0.0019889918621629477, -0.014448769390583038, -0.007125902455300093, 0.026660582050681114, -0.0003385331074241549, -0.004674395080655813, -0.015546143986284733, 0.010699405334889889, -0.0024708521086722612, -0.00016959630011115223, 0.023903075605630875, -0.0217646025121212, -0.007526866160333157, 0.020906398072838783, 0.0215254295617342, 0.003949846141040325, -0.008068518713116646, -0.0035084341652691364, 0.013984494842588902, -0.002127922372892499, -0.007111833430826664, -0.011093334294855595, -0.0013163222465664148, -0.014434699900448322, -0.007301763631403446, 0.027251476421952248, 0.018922682851552963, 0.015138145536184311, -0.0035682269372045994, 0.021905289962887764, -0.0032006767578423023, -0.029347743839025497, -0.003105711657553911, -0.008574999868869781, 0.009897476993501186, 0.008251414634287357, -0.027082649990916252, -0.006728455424308777, 0.006904317066073418, -0.02450803853571415, 0.018373994156718254, -0.06719310581684113, -0.04704643040895462, 0.00883527472615242, -0.018078546971082687, -0.01799413375556469, -0.010298441164195538, -0.009095549583435059, -0.029319604858756065, -0.024043764919042587, -0.02228515036404133, -0.015518005937337875, -0.007266591303050518, 0.007871554233133793, -0.005057772621512413, 0.003661433467641473, -0.01534917950630188, -0.0292633306235075, 0.0042241900227963924, -0.020245159044861794, -0.028334781527519226, -0.032836832106113434, 0.008750861510634422, -0.03421558439731598, 0.00865941308438778, 0.00950354803353548, -0.008757895790040493, -0.0328931100666523, 0.003561192424967885, 0.010516509413719177, -0.0041573625057935715, 0.008582034148275852, 0.0008902981062419713, 0.01369608286768198, -0.004150328226387501, 0.01137471292167902, 0.0006432129302993417, 0.01665758714079857, 0.01070643961429596, 0.02816595509648323, 0.03210524842143059, 0.0014772354625165462, 0.0005842993850819767, -0.003271021181717515, 0.022482115775346756, 0.011719400994479656, 0.008378035388886929, 0.0005407736753113568, 0.01997785083949566, 0.0027557474095374346, 0.003661433467641473, -0.023663904517889023, 0.004519636742770672, 0.021891221404075623, 0.020357711240649223, -0.0016618898371234536, -0.01613703742623329, 0.03202083706855774, 0.03455324098467827, -0.008265484124422073, -0.009749753400683403, -0.012528362683951855, 0.031176701188087463, -0.010530577972531319, -0.019809022545814514, -0.006855075713247061, 0.04960697144269943, 0.006436525844037533, -0.03567875176668167, -0.02210225537419319, 0.03413117304444313, -0.011128506623208523, 0.02960098348557949, 0.005954665597528219, -0.006932454649358988, 0.01093857642263174, 0.0364384725689888, -0.0012213571462780237, -0.02505672536790371, 0.06679917871952057, 0.016362139955163002, 0.02508486434817314, -0.011058161966502666, 0.01976681686937809, -0.0040905349887907505, 0.011740503832697868, -0.002090991474688053, 0.03767653554677963, 0.01136767864227295, 0.000998013187199831, 0.02052653767168522, 0.021441016346216202, -0.00712238484993577, 0.03475020453333855, 0.0007434539147652686, 0.015391386114060879, 0.00602149311453104, 0.004621636588126421, -0.023157423362135887, 0.00861720647662878, -0.05115455016493797, -0.01710779219865799, -0.0013479773188009858, 0.00267660990357399, -0.011353609152138233, -0.043332237750291824, 0.04563954100012779, -0.01004520058631897, -0.02750471606850624, -0.00833582878112793, 0.04713084548711777, -0.017178136855363846, 0.03511599451303482, 0.005673287436366081, -0.013759392313659191, -0.020582813769578934, -0.01612296886742115, 0.007358039263635874, 0.008152932859957218, -0.003939294256269932, 0.00251305871643126, -0.030557669699192047, 0.06128416582942009, 0.012057054787874222, 0.020836053416132927, -0.01823330484330654, -0.012000778689980507, -0.01325291208922863, -0.03455324098467827, 0.0009918580763041973, -0.010024097748100758, -0.016291795298457146, -0.007519831880927086, 0.04293831065297127, -0.04572395235300064, -0.012408777140080929, 0.0042241900227963924, -0.01768461801111698, 0.03286496922373772, 0.012050020508468151, -0.009834167547523975, -0.006355629302561283, 0.006243078038096428, 0.012837879359722137, -0.017206275835633278, 0.018641304224729538, 0.04718711972236633, 0.013590565882623196, -0.017698686569929123, -0.011606849730014801, -0.02803933434188366, 0.012007813900709152, -0.02108929492533207, 0.0633663609623909, -0.002671333961188793, 0.012866017408668995, 0.011846020817756653, 0.0062888022512197495, -0.015518005937337875, 0.03733888268470764, -0.03700122982263565, -0.03365283086895943, -0.0353129617869854, 0.002110336208716035, 0.008652378804981709, 0.026801271364092827, -0.0008762291981838644, 0.025914929807186127, 0.025450656190514565, 0.044654715806245804, 0.01043913047760725, -0.02428293600678444, 0.01941509358584881, -0.01964019611477852, -0.014399527572095394, 0.02626665309071541, 0.00030533928656950593, 0.000163331234944053, -0.031542494893074036, -0.005543150007724762, 0.02695602923631668, 0.03424372524023056, -0.02616816945374012, 0.012303260155022144, -0.032527316361665726, -0.022045979276299477, 0.012078157626092434, -0.021342534571886063, -0.013288084417581558, 0.005543150007724762, -0.013632772490382195, 0.02705451101064682, 0.029769809916615486, -0.007273625582456589, 0.019682403653860092, -0.03013560175895691, -0.0020470262970775366, -0.007171626202762127, -0.0299104992300272, 0.03210524842143059, 0.02263687364757061, -0.012718293815851212, -0.026787202805280685, 0.012057054787874222, -0.025309966877102852, 0.015391386114060879, 0.0007707123877480626, -0.012296225875616074, -0.0004458085459191352, 0.007801210042089224, 0.0007333418470807374, -0.015419524163007736, 0.04009639099240303, 0.013006705790758133, 0.006014458369463682, 0.01302780956029892, 0.01534917950630188, -0.02286197617650032, 0.022116323933005333, -0.0052230823785066605, 0.006978178862482309, -0.013414704240858555, -0.062015749514102936, -0.013400635682046413, 0.026533961296081543, -0.030416980385780334, 0.013513186946511269, -0.0005930924089625478, -0.006246595643460751, -0.003773984732106328, 0.00839210394769907, 0.01508187036961317, -0.017206275835633278, -0.01667165756225586, 0.022045979276299477, 0.013759392313659191, -0.002699471777305007, -0.004347292706370354, -0.014490975998342037, 0.008856377564370632, -0.00883527472615242, 0.001651338185183704, 0.014927112497389317, 0.011290298774838448, 0.010903404094278812, -0.01623552106320858, -0.008764930069446564, -0.006893765181303024, -0.004920600913465023, 0.031514354050159454, 0.002604506677016616, -0.01508187036961317, 0.012964499182999134, 0.014589458703994751, 0.02032957226037979, -3.701332025229931e-05, -0.024226659908890724, -0.049410007894039154, -0.03883018717169762, -0.0025288863107562065, 0.027532855048775673, -0.03255545347929001, 0.0283769890666008, -0.01712186262011528, -0.010614991188049316, -0.025886792689561844, -0.009932649321854115, 0.015095938928425312, -0.006914868485182524, -0.009313617832958698, -0.02242583967745304, 0.018359925597906113, 0.02042805589735508, -0.02549286186695099, 0.019260335713624954, -0.00812479481101036, -0.006749558728188276, -0.00015332912153098732, 0.014146287925541401, -0.008356931619346142, 0.007526866160333157, 0.0031444011256098747, 0.0026361618656665087, 0.00615866482257843, -0.02210225537419319, 0.02364983595907688, 0.013569462113082409, -0.014097046107053757, -0.004350809846073389, -0.012324363924562931, -0.008258448913693428, -0.019935643300414085, -0.005915976129472256, 0.00906037725508213, 0.031514354050159454, -0.012732362374663353, -0.007920795120298862, -0.0017392687732353806, -0.03413117304444313, -0.016362139955163002, 0.046230435371398926, -0.04096866026520729, -0.015419524163007736, -0.016587242484092712, -0.020484330132603645, -0.014174425043165684, -0.00444577494636178, 0.020132608711719513, -0.034834619611501694, 0.014132218435406685, 0.016404347494244576, -0.013759392313659191, 0.012261053547263145, 0.013815668411552906, 0.01613703742623329, 0.01071347389370203, -0.004808049649000168, -0.0017427860293537378, 0.021905289962887764, -0.046314846724271774, 0.01767054945230484, -0.02761726826429367, -0.017951928079128265, 0.0292633306235075, 0.05897686630487442, -0.009130721911787987, 0.02373424917459488, -0.026815339922904968, 0.009419133886694908, 0.011937469244003296, -0.05292723327875137, -0.021229982376098633, 0.026365134865045547, -0.004744739271700382, 0.002877091756090522, 0.01665758714079857, -0.009468375705182552, -0.026463616639375687, 0.009067411534488201, 0.03123297728598118, -0.0298260860145092, -0.004597015678882599, -0.017361033707857132, -0.003220021491870284, -0.013871943578124046, 0.02131439745426178, 0.005423564463853836, 0.0001845445076469332, -0.016770139336586, 0.004452809691429138, -0.016066692769527435, -0.02772981859743595, 0.0013875460717827082, -0.006193837150931358, 0.015771247446537018, -0.013182567432522774, -0.010678301565349102, -0.08289401233196259, -0.012746430933475494, -0.006186802405864, 0.03193642199039459, 0.015377317555248737, -0.0007267470355145633, -0.008349897339940071, -0.0010402199113741517, 0.011297333985567093, 0.0002708264801185578, 0.002242232207208872, -0.002231680555269122, 0.028447333723306656, -0.00889154989272356, -0.004885428585112095, 0.030782772228121758, -0.02528182789683342, -0.01767054945230484, -0.004171431530267, -0.005275840871036053, 0.0015660453354939818, 0.03331517428159714, 0.01810668595135212, 0.010523543693125248, -0.013217739760875702, 0.021834945306181908, -0.025675758719444275, -0.0021965084597468376, -0.02373424917459488, -0.00998892541974783, 0.00856796558946371, 0.021145569160580635, -0.002585161942988634, -0.04071542248129845, 0.030895322561264038, -0.01298560295253992, 0.009686443954706192, 0.0010894611477851868, -0.020779777318239212, 0.015363248065114021, 0.0199919193983078, 0.023762386292219162, -0.0037810192443430424, -0.004115155898034573, 0.011782711371779442, -0.011719400994479656, -0.014061873778700829, -0.013105188496410847, -0.011536505073308945, 0.0055818394757807255, -0.010410992428660393, 0.0008938153623603284, -0.011198851279914379, -0.013506152667105198, -0.01357649639248848, 0.014800491742789745, 0.0141884945333004, 0.017262550070881844, -0.009158859960734844, 0.015827521681785583, 0.01710779219865799, -0.006151630077511072, 0.01005223486572504, 0.024831622838974, -0.022369565442204475, -0.012851947918534279, 0.030079327523708344, 0.035172272473573685, 0.02861616015434265, -0.02815188653767109, 0.0008397380006499588, -0.0032604695297777653, -0.0014130460331216455, 0.0009760305401869118, 0.02584458515048027, 0.03871763497591019, 0.012612776830792427, 0.031064150854945183, 0.00021114354603923857, 0.004491499159485102, -0.02550693042576313, -0.00015442825679201633, -0.015518005937337875, 0.012028916738927364, 0.005782321561127901, 0.017403239384293556, -0.020062264055013657, -0.016488760709762573, 0.03686054050922394, 0.009144790470600128, 0.013266980648040771, -0.025549137964844704, 0.030191877856850624, 0.005145703442394733, -0.0015757178189232945, 0.036916814744472504, -0.011191817000508308, -0.0037177090998739004, -0.031204840168356895, -0.006461146287620068, 0.013154429383575916, -0.04572395235300064, 0.023452870547771454, 0.0068691447377204895, 0.027757957577705383, -0.0005337392212823033, -0.005894872825592756, -0.017614273354411125, -0.005624046083539724, 0.008307690732181072, -0.0003042401513084769, -0.010235130786895752, -0.013126291334629059, 0.004667360335588455, 0.005951148457825184, 0.02218666858971119, -0.019372887909412384, 0.00795596744865179, -0.004238258581608534, 0.02715299278497696, -0.006278250366449356, -0.002272128826007247, 0.010157751850783825, -0.01121291983872652, -0.015813453122973442, -0.0012213571462780237, 0.0025517484173178673, 0.02618223987519741, 0.012683121487498283, -0.005539632868021727, -0.005226599518209696, -0.0012547707883641124, 0.013224774040281773, -0.0010076855542138219, -0.0027575059793889523, 0.015335110016167164, 0.022017842158675194, -0.00024818434030748904, 0.03235848993062973, -0.04850959777832031, -0.017051517963409424, -0.023987488821148872, 0.0037528814282268286, -0.0056662531569600105, -0.009137756191194057, 0.007379142567515373, 0.01802227273583412, -0.008265484124422073, -0.007815279066562653, -0.012162571772933006, 0.008089622482657433, 0.019724609330296516, 0.014758285135030746, 0.014420631341636181, -0.02142694778740406, 0.0043789478950202465, -0.016868621110916138, 0.010607956908643246, 0.02373424917459488, -0.006886730901896954, 0.0027610233519226313, 0.017740894109010696, 0.02453617751598358, 0.030895322561264038, 0.006169216241687536, -0.01778309978544712, 0.010797887109220028, 0.008012243546545506, -0.00665107648819685, 0.004702532663941383, 0.013456910848617554, 0.003288607345893979, 0.010115545243024826, -0.046117883175611496, 0.0008406172855757177, -0.007470590528100729, -0.0072103156708180904, -0.005363771226257086, 0.021441016346216202, 0.006355629302561283, 0.003710674587637186, 0.005395426414906979, 0.016263658180832863, 0.0173328947275877, -0.0018236823379993439, 0.0298260860145092, -0.025591345503926277, 0.008722723461687565, 0.007590176071971655, 0.007970036938786507, 0.0024954727850854397, 0.045442573726177216, -0.0010964955436065793, -0.003977983724325895, 0.016516897827386856, -0.018908612430095673, 0.03725447133183479, 0.00243040407076478, -0.015743108466267586, -0.04088424891233444, -0.023452870547771454, -0.025098932906985283, 0.024493969976902008, 0.008715689182281494, -0.0014816318871453404, 0.00678824819624424, -0.02331218123435974, -0.010952644981443882, -0.0048748767003417015, -0.002404024824500084, 0.023917144164443016, -0.015391386114060879, 0.050957586616277695, 0.004811566788703203, 0.00466384319588542, -0.013618703931570053, -0.01744544692337513, -0.0002223547053290531, 0.004431706387549639, -0.01612296886742115, 0.008490586653351784, 0.011937469244003296, -0.012683121487498283, -0.01789565198123455, 0.02042805589735508, 0.008131829090416431, -0.005173841025680304, -0.014132218435406685, -0.0012011331273242831, 0.0008766688406467438, -0.010875266045331955, 0.005479840096086264, -0.0028911607805639505, -0.017389170825481415, -0.0185428224503994, -0.01264091394841671, 0.017290689051151276, -0.021272189915180206, 0.021511361002922058, 0.0038583981804549694, -0.008863412775099277, -0.03866136074066162, -0.007037971634417772, -0.00022169522708281875, 0.016193313524127007, 0.0299104992300272, -0.03545365110039711, -0.00034930460969917476, 0.01734696514904499, 0.013893047347664833, 0.007512797135859728, 0.023241836577653885, -0.010059270076453686, 0.03961804509162903, -0.0346657894551754, -0.010579818859696388, 0.007927830331027508, 0.016066692769527435, -0.005891355685889721, 0.00593356229364872, -0.037057504057884216, 0.008230311796069145, 0.004037776961922646, 0.014659802429378033, 0.031852010637521744, -0.02407190203666687, -0.01831771992146969, -0.009137756191194057, 0.02895381487905979, 0.01699524186551571, 0.020596882328391075, 0.0020259227603673935, -0.017825307324528694, 0.006369698327034712, -0.007512797135859728, -0.006053147837519646, 0.01379456464201212, -0.020399916917085648, -0.02616816945374012, 0.0032006767578423023, -0.005008531268686056, 0.03145807981491089, 0.0030494360253214836, -0.01071347389370203, 0.012669051997363567, 0.04442961513996124, 0.002458541886880994, -0.012331398203969002, 0.021567637100815773, -0.015546143986284733, 0.010425060987472534, 0.0034222619142383337, -0.008764930069446564, -0.00466384319588542, 0.023002665489912033, -0.009201066568493843, -0.02718113176524639, 0.008750861510634422, 0.013295118696987629, -0.014230701141059399, 0.0033378484658896923, -0.002136715454980731, -0.04943814501166344, -0.005585356615483761, -0.0012450984213501215, -0.0002866540162358433, -0.01335139386355877, -0.0007025661179795861, 0.020821984857320786, 0.0002442274708300829, -0.0052336337976157665, 0.0012002537259832025, -0.015602420084178448, -0.0317675955593586, -0.00325695239007473, 0.03939294442534447, -0.002734644105657935, -0.012429880909621716, -0.010474302805960178, -0.046539951115846634, 0.006992247421294451, -0.013463945128023624, -0.01214146800339222, 0.02165205031633377, -0.036916814744472504, -0.023607628419995308, -0.02440955676138401, -0.01142395380884409, 0.01053761225193739, 0.004706049803644419, -0.03967432305216789, 0.03452510014176369, 0.037057504057884216, -0.013091119937598705, -0.002789161168038845, 0.007164591923356056, 0.021680187433958054, 0.003851363668218255, -0.021778671070933342, -0.0034767789766192436, -0.0010323061142116785, 0.030304430052638054, -0.005877286661416292, 0.006964109838008881, -0.013154429383575916, 0.0023459906224161386, 0.0017155274981632829, 0.02606968767940998, 0.00972161628305912, 0.03165504336357117, 0.014547251164913177, 0.013914150185883045, 0.019682403653860092, -0.012007813900709152, 0.006552594248205423, 0.017909720540046692, 0.02971353568136692, -0.015419524163007736, -0.00343808950856328, -0.0224117711186409, -0.0036895712837576866, 0.003483813488855958, 0.014589458703994751, 0.011726435273885727, -0.021792739629745483, 0.0259571373462677, -0.007164591923356056, -0.01534917950630188, 0.04130631685256958, -0.03069835901260376, 0.005539632868021727, -0.007358039263635874, -0.027912715449929237, 0.01591193489730358, -0.019457301124930382, 0.0005368167767301202, 0.014927112497389317, -0.009222169406712055, -0.0007821433828212321, -0.009482444263994694, -0.011909331195056438, 0.005958182737231255, -0.006331008858978748, -0.0006300233071669936, -0.020385848358273506, 0.007016868330538273, -0.025211485102772713, -0.00678824819624424, 0.00499797984957695, 0.0072876946069300175, -0.013020775280892849, -0.03235848993062973, -0.00281378161162138, 0.028658367693424225, -0.012774568982422352, -0.006658111233264208, -0.03829557076096535, 0.0019467852544039488, -0.017628341913223267, -0.015518005937337875, -0.0018975440179929137, -0.0010498922783881426, -0.0015132869593799114, 0.019738677889108658, -0.003587571671232581, 0.023452870547771454, -0.01302780956029892, 0.01865537278354168, 0.0017295964062213898, -0.01567276380956173, -0.01508187036961317, 0.001288184430450201, 0.021258121356368065, 0.0043191551230847836, -0.027012305334210396, 0.021609842777252197, -0.011909331195056438, 0.02960098348557949, -0.013456910848617554, -0.0013998564099892974, 0.010467267595231533, -0.01788158342242241, -0.008349897339940071, -0.025689827278256416, -0.005733080208301544, 0.024212591350078583, -0.03753584995865822, 0.0017111309571191669, -0.003271021181717515, -0.038576945662498474, -0.005828045308589935, 0.006134044378995895, -0.017304757609963417, 0.016474692150950432, 0.02142694778740406, -0.024761280044913292, 0.03469393029808998, -0.010164786130189896, 0.0014271149411797523, -0.011965606361627579, -0.020287366583943367, -0.02419852279126644, -0.006345077883452177, -0.01280974131077528, 0.013161463662981987, -0.011058161966502666, 0.021792739629745483, -0.03002305142581463, 0.010171821340918541, 0.017726825550198555, 0.017937857657670975, 0.0017753203865140676, -0.0027047477196902037, 0.021061155945062637, 0.0027768509462475777, -0.00444577494636178, -0.027307752519845963, -0.006010941229760647, -0.026562100276350975, 0.04440147429704666, 0.01634807139635086, 0.004903014749288559, -0.006197354290634394, 0.002848953939974308, -0.020146677270531654, 0.005015566013753414, 0.012352501973509789, -0.001650458900257945, 0.017149999737739563, 0.007252522278577089, 0.0010314268292859197, -0.020146677270531654, 0.0024831623304635286, 0.006939489394426346, 0.006334525998681784, -0.04020893946290016, -0.009250307455658913, -0.012345467694103718, 0.00024093006504699588, -0.018739785999059677, 0.0025095415767282248, -0.008940791711211205, 0.012338432483375072, -0.01070643961429596, 0.016713863238692284, 0.022045979276299477, -0.010650163516402245, -0.005029635038226843, -0.007118867710232735, 0.06876882910728455, -0.0109245078638196, 0.026013411581516266, -0.0028559884522110224, 0.022566528990864754, 0.015264766290783882, -0.040349628776311874, -0.018078546971082687, -0.02516927756369114, -0.002935125958174467, -0.01181788370013237, -0.01843027025461197, 0.007016868330538273, -0.026660582050681114, 0.018838267773389816, 0.020470261573791504, -0.018247375264763832, -0.00021422111603897065, -0.01423773542046547, 0.008673482574522495, 0.0011413402389734983, 0.002558782696723938, 0.0024374383501708508, -0.003038884373381734, -0.012612776830792427, 0.0099959596991539, -0.00538135739043355, -0.011269195936620235, -0.010284372605383396, -0.028405126184225082, 0.018613165244460106, 0.012458018958568573, -0.006056664977222681, -0.006098872050642967, -0.010966714471578598, 0.011114438064396381, -0.01187415886670351, -0.014673871919512749, -0.009587961249053478, -0.013886013068258762, -0.003854881040751934, -0.003756398567929864, -0.001157167716883123, 0.004463361110538244, -0.0012380639091134071, 0.018852338194847107, 0.010080372914671898, 0.013942288234829903, -0.0014297527959570289, 0.020512469112873077, -0.012331398203969002, 0.0067143868654966354, 0.00018443459703121334, -0.014997456222772598, -0.0021261638030409813, 0.011810848489403725, 0.03987128660082817, -0.0014543734723702073, 0.0027592647820711136, -0.010143683291971684, 0.004231224302202463, -0.03114856407046318, -0.015658695250749588, 0.01143098808825016, 0.030529532581567764, 0.00927844550460577, -0.00383729487657547, -0.032639868557453156, 0.004213638138025999, 0.00042382586980238557, -0.01561648864299059, 0.02163798175752163, 0.011930434964597225, 0.0259571373462677, -0.027124855667352676, 0.027012305334210396, 0.0072947293519973755, 0.014969319105148315, -0.010108510963618755, 0.012465053237974644, -0.005817493889480829, 0.005750666372478008, 0.012021882459521294, 0.007963002659380436, 0.0042347414419054985, 0.003174297511577606, 0.001796423806808889, -0.0005077996756881475, -0.014251804910600185, 0.0013611669419333339, 0.0073721082881093025, 0.0364384725689888, 0.0009074446279555559, -0.009623133577406406, -0.002579886233434081, 0.030979737639427185, -0.0019977849442511797, -0.0133021529763937, -0.0016821138560771942, 0.01700931042432785, -0.005226599518209696, -0.011789745651185513, -0.013147395104169846, 0.0038478465285152197, -0.007780106272548437, -0.014251804910600185, -0.022327357903122902, -0.014075943268835545, 0.008068518713116646, -0.007688658777624369, -0.010530577972531319, -0.011754573322832584, -0.007618314120918512, -0.0036755024921149015, -0.0049417042173445225, 0.007463556248694658, -0.022060047835111618, -0.00017179457063321024, -0.0283769890666008, -0.003024815348908305, 0.0014033736661076546, -0.0328931100666523, -0.007196246646344662, -0.0019397507421672344, -0.0035471236333251, -0.022904183715581894, -0.0018166478257626295, 0.0005728683900088072, 0.02118777669966221, -0.022003773599863052, -0.021694257855415344, 0.002694196067750454, 0.017487652599811554, 0.03013560175895691, 0.019696472212672234, 0.011860090307891369, 0.004491499159485102, 0.0011782711371779442, -0.006524456199258566, -0.02450803853571415, 0.004839704371988773, -0.0036086749751120806, -0.010840093716979027, -0.0023371975403279066, -0.009299548342823982, -0.014230701141059399, -0.020062264055013657, 0.008103691041469574, -0.0006775058573111892, 0.027335889637470245, 0.011712366715073586, 0.02196156606078148, 0.012176640331745148, 0.011501332744956017, 0.024916037917137146, -0.006422456819564104, 0.0018412683857604861, 0.01633400283753872, -0.01897895708680153, 0.005817493889480829, 0.007829347625374794, -0.009714581072330475, 0.015194421634078026, 0.010502439923584461, 0.007217349950224161, 0.005564253311604261, 0.0016961827641353011, -0.03145807981491089, 0.01021402794867754, 0.013379531912505627, -0.02871464192867279, -0.003985018469393253, -0.000525825482327491, 0.002426886698231101, -0.00043767495662905276, -0.001296977512538433, -0.018458407372236252, -0.01209926139563322, 0.0019151301821693778, -0.004357844591140747, -0.0175720676779747, -0.004713084548711777, -0.01976681686937809, 0.001500976737588644, -0.006225491873919964, -0.018303649500012398, 0.015067800879478455, -0.024901967495679855, -0.002662540879100561, 0.020287366583943367, 0.007273625582456589, 0.004354327451437712, -0.026885684579610825, 0.0008331431890837848, 0.029178917407989502, -0.02075164020061493, 0.014505044557154179, 0.03697309270501137, 0.008406172506511211, -0.0040905349887907505, -0.0020153711084276438, 0.023692041635513306, -0.01468794047832489, -0.01920405961573124, -0.01518035214394331, 0.006257147062569857, 0.02363576740026474, -0.02020295336842537, -0.005782321561127901, -0.013667944818735123, -9.787783346837386e-05, -0.0010709956986829638, -0.013189601711928844, 0.03126111626625061, -0.016713863238692284, -0.006155147682875395, -0.010727542452514172, 0.005064806900918484, -0.006872661877423525, -0.013822702690958977, -0.006932454649358988, -0.002127922372892499, 0.0034802963491529226, 0.026590237393975258, 0.0003558994212653488, 0.005001496989279985, -0.005894872825592756, 0.002449748804792762, -0.0036121923476457596, -0.0071434881538152695, -0.012479121796786785, -0.027898645028471947, -0.02032957226037979, 0.010115545243024826, -0.020385848358273506, -0.003809157060459256, 0.0010437371674925089, 0.0007254281081259251, -0.006658111233264208, 0.00718217808753252, -0.015110007487237453, 0.00629583653062582, 0.01823330484330654, 0.004291017074137926, -0.005870251916348934, 0.008912653662264347, -0.006696800701320171, 0.029460294172167778, 0.006331008858978748, -0.01093857642263174, -0.031007874757051468, 0.00035545977880246937, 0.007829347625374794, 0.017023378983139992, -0.0029790913686156273, -0.012957464903593063, 0.0018588545499369502, -0.0054376330226659775, 0.01236657053232193, -0.0025236106012016535, 0.008356931619346142, -0.02462059073150158, -0.013224774040281773, -0.0002761023351922631, -0.01136767864227295, -0.005114048253744841, -0.05706349387764931, -0.02550693042576313, 0.019147785380482674, 0.009665340185165405, -0.025113001465797424, 0.007829347625374794, 0.023720180615782738, -0.016080763190984726, 0.0062290094792842865, -0.01712186262011528, 0.009475409984588623, 3.5859229683410376e-05, 0.033202625811100006, -0.011627952568233013, 0.010614991188049316, 0.016165176406502724, 0.01911964640021324, 0.016094831749796867, -0.000809401914011687, 0.0005249461391940713, 0.019077440723776817, -0.0021613361313939095, -0.015827521681785583, 0.01320367120206356, 0.0029702982865273952, 0.016938965767621994, -0.0016029762336984277, 0.001999543746933341, 0.01655910536646843, -0.01231029536575079, -0.0024919554125517607, 0.006418939679861069, 0.012380640022456646, 0.0157993845641613, 0.014075943268835545, 0.014265873469412327, -0.004628670867532492, 0.008511689491569996, -0.0073650735430419445, -1.7476222637924366e-05, -0.011283264495432377, -0.012373604811728, -0.004741222131997347, 0.0022246462758630514, 0.01899302750825882, 0.0027909197378903627, 0.00932768639177084, -0.014272907748818398, -0.0035682269372045994, -0.00811776053160429, -0.0016487002139911056, 0.008603137917816639, -0.013850840739905834, 0.01601041853427887, 0.020146677270531654, -0.0020751641131937504, -0.027687612920999527, 0.014673871919512749, -0.0017471825703978539, 0.0023020252119749784, 0.01026326883584261, 0.004470395855605602, 0.0020065780263394117, 0.017023378983139992, -0.008483551442623138, 0.0051034968346357346, -0.000508239318151027, -0.00955278892070055, -0.006693283095955849, 0.010354716330766678, -0.0074565215036273, 0.011501332744956017, 0.01022106222808361, -0.017375102266669273, -0.010622026398777962, 0.004139776341617107, 0.005110531114041805, 0.01136767864227295, 0.014294011518359184, -0.013358429074287415, 0.019837161526083946, -0.007829347625374794, 0.030501393601298332, -0.012331398203969002, -0.00422067241743207, -0.003102194285020232, -0.0020874743349850178, 0.018191099166870117, 0.002164853271096945, 0.041137490421533585, 0.008202173747122288, -0.0066651455126702785, -0.0022879561875015497, -0.017965996637940407, 0.029347743839025497, 0.007199763786047697, -0.007139971014112234, 0.0176564808934927, -0.007171626202762127, -0.005166806746274233, 0.025760171934962273, 0.0032727799843996763, -0.002820816123858094, -0.013119257055222988, -0.010481337085366249, -0.021595774218440056, -0.010572784580290318, 0.009981891140341759, -0.018683509901165962, 0.005254737567156553, -0.008103691041469574, 0.002571093151345849, -0.009151824750006199, 0.01021402794867754, -0.0037352952640503645, -0.0011853055329993367, -0.006415422540158033, -0.008427276276051998, 0.007906726561486721, -0.01557428203523159, -0.005747149232774973, -0.008596103638410568, -0.013098154217004776, -0.002604506677016616, 0.002458541886880994, 0.01745951548218727, 0.006292319390922785, -0.006823420524597168, -0.004108121152967215, 0.017726825550198555, -0.025352172553539276, 0.017361033707857132, 0.002381162717938423, -0.013499117456376553, 0.0044563268311321735, 0.02792678400874138, -0.0035541581455618143, -0.005729563068598509, -0.00466384319588542, 0.004572395235300064, 0.020709432661533356, -0.011015955358743668, 0.015658695250749588, 0.007604245096445084, -0.017628341913223267, -0.03123297728598118, 0.008926722221076488, 0.0149130430072546, -0.03984314948320389, -0.0014359080232679844, -0.015869729220867157, 0.02208818681538105, -0.015996349975466728, 0.007963002659380436, 0.014160356484353542, -0.007815279066562653, 0.009594995528459549, 0.005261771846562624, -0.007864519953727722, -0.006172733847051859, -0.0017076138174161315, 0.018500614911317825, -0.013428773730993271, -0.007639417424798012, -0.023495078086853027, -0.01053761225193739, 0.0003853561938740313, 0.013266980648040771, 0.008307690732181072, 0.011008921079337597, 0.02539438009262085, -0.0010604439303278923, -0.0099959596991539, -0.012837879359722137, 0.0012028916971758008, 0.01534917950630188, 0.023593559861183167, -0.009433203376829624, 0.019372887909412384, -0.0036755024921149015, -0.0032516764476895332, -0.014181460253894329, -0.00977789144963026, 0.01169829722493887, 0.005624046083539724, -0.005138668697327375, -0.02706857956945896, 0.031626906245946884, 0.011747539043426514, 0.019189991056919098, 0.009566857479512691, 0.01754392869770527, 0.001796423806808889, -0.007660520728677511, 0.006675696931779385, -0.009742719121277332, 0.005585356615483761, 0.012394708581268787, 0.01143098808825016, -0.002421610988676548, 0.010425060987472534, 0.0020857157651335, -0.03415931016206741, 0.00477991160005331, -0.004674395080655813, -0.014230701141059399, 0.010861197486519814, -0.0008894188213162124, -0.00502611743286252, -0.007115350570529699, 0.00794893316924572, 0.008265484124422073, 0.02173646353185177, 0.0018606131197884679, 0.018162960186600685, -0.015236628241837025, 0.025309966877102852, -0.010910438373684883, -0.010607956908643246, 0.006925420369952917, -0.01209926139563322, -0.014005598612129688, -0.022130392491817474, 0.002449748804792762, -0.02726554498076439, 0.00256757577881217, 0.00861720647662878, -0.014385459013283253, 0.007498728111386299, 0.0053778402507305145, -0.016601312905550003, -0.02373424917459488, 0.0031989181879907846, 0.0033853312488645315, 0.007808244321495295, 0.010678301565349102, 0.0019379921723157167, 0.013210705481469631, 0.002998436102643609, -0.008990032598376274, 0.020160745829343796, 0.023438801988959312, 0.003932259976863861, 0.007555003743618727, -0.027912715449929237, -0.020245159044861794, -0.0038161915726959705, 0.028025265783071518, 0.003524261526763439, -0.007343970239162445, 0.008968928828835487, 0.01347098033875227, -0.005268806125968695, 0.012352501973509789, -0.028559884056448936, -0.01941509358584881, 0.010797887109220028, 0.021398810669779778, -0.010206993669271469, -0.005022600293159485, -0.008159967139363289, -0.0002719256153795868, 0.003963915165513754, -0.002444472862407565, 0.004962807521224022, -0.0012239950010553002, 0.0034503997303545475, -0.009004101157188416, -0.0016944241942837834, -0.003914673812687397, -0.0010718749836087227, 0.00698521314188838, 0.0006331008626148105, 0.011402850039303303, 0.011684228666126728, 0.012408777140080929, -0.0016223210841417313, 0.013935253955423832, 0.022383634001016617, 0.01966833509504795, 0.013492083176970482, -0.01944323256611824, 0.0005390150472521782, -0.009763822890818119, 0.010425060987472534, -0.002254542661830783, -0.02065315842628479, 0.0173328947275877, 0.0020980259869247675, 0.007139971014112234, -0.004227707162499428, 0.007660520728677511, -0.009855270385742188, 0.02516927756369114, -0.009798995219171047, 0.003582295961678028, -0.022904183715581894, 0.011184782721102238, -0.015011525712907314, -0.004867842420935631, 0.008645344525575638, 0.02231328934431076, 0.0005473684868775308, -0.004343775566667318, -0.015321041457355022, 0.020245159044861794, 0.0016548553248867393, 0.012345467694103718, 0.024254798889160156, 0.004385982174426317, -0.0036438473034650087, -0.011008921079337597, 0.0017981823766604066, -0.0018184063956141472, 0.0027961956802755594, 0.016066692769527435, 0.01463166531175375, 0.02339659444987774, 0.021384740248322487, -0.004625153727829456, -0.007878588512539864, -0.008483551442623138, 0.016938965767621994, -0.006394318770617247, -0.00016311141371261328, -0.021905289962887764, -0.003897087648510933, 0.03179573267698288, 0.021820876747369766, -0.01004520058631897, 0.013274014927446842, 0.010425060987472534, -0.01942916214466095, 0.01899302750825882, -0.008328793570399284, -0.032977521419525146, -0.02397342026233673, -0.01214146800339222, 0.004143293481320143, 0.0026168168988078833, 0.012289191596210003, 0.011318436823785305, -0.01303484383970499, 0.018613165244460106, 0.00654204236343503, 0.0021472671069204807, 0.0005777045735158026, 0.005543150007724762, -0.004611084703356028, 0.00338357244618237, -0.02353728376328945, -0.007136453874409199, -0.00888451561331749, 0.009573892690241337, -0.024901967495679855, 0.006331008858978748, -0.007329901214689016, 0.00883527472615242, -0.009004101157188416, 0.02737809531390667, 0.0004302008601371199, -0.003564709797501564, 0.015222558751702309, 0.02118777669966221, 0.017951928079128265, -0.003791570896282792, -0.032414764165878296, -0.005420046858489513, 0.023058941587805748, -0.015757177025079727, 0.018289580941200256, -0.0009760305401869118, -0.005849148612469435, 0.011466160416603088, -0.01888047531247139, 0.009250307455658913, 0.019147785380482674, -0.007407280616462231, -0.0008793068118393421, -0.010959680192172527, 0.010530577972531319, -0.031092287972569466, -0.0074494872242212296, 0.007273625582456589, -0.0008753499132581055, -0.011269195936620235, -0.008462448604404926, 0.00383729487657547, -0.010157751850783825, -0.0023565422743558884, -0.008363965898752213, 0.017023378983139992, -0.025225553661584854, -0.008912653662264347, 0.015250696800649166, -0.0002582963788881898, 0.030107464641332626, -0.003615709487348795, -0.025338103994727135, -0.024930106475949287, -0.009123687632381916, 0.0003563390637282282, 0.008082588203251362, 0.007002799306064844, -0.003511951304972172, 0.01601041853427887, 0.008849343284964561, 0.00029324882780201733, 0.007491693831980228, -0.020695364102721214, -0.015292903408408165, -0.03331517428159714, -0.007526866160333157, -0.0004541619564406574, 0.004375430755317211, -0.007379142567515373, 0.012957464903593063, 0.007540935184806585, 0.015292903408408165, -0.008877481333911419, 0.0073721082881093025, 0.014969319105148315, 0.007111833430826664, -0.009243273176252842, 0.0067143868654966354, -0.0065209390595555305, -0.007400245871394873, -0.02296045981347561, -0.005483357235789299, -0.001473718206398189, 0.009616099298000336, 0.0007069626590237021, -0.005733080208301544, 0.005022600293159485, 0.01518035214394331, -0.006960592698305845, 0.03323076292872429, 0.017304757609963417, -0.012176640331745148, 0.015138145536184311, -0.030726496130228043, -0.0005315409507602453, -0.011226989328861237, 0.0191055778414011, -0.01320367120206356, -0.017642412334680557, 0.005887838080525398, -0.007351004984229803, 0.015546143986284733, -0.01164202205836773, -0.015729039907455444, -0.018458407372236252, -0.014870836399495602, 0.018838267773389816, 0.005409495439380407, -0.016418416053056717, 0.007016868330538273, 0.00932768639177084, -0.018148891627788544, -0.026463616639375687, -0.03818301856517792, 0.001962612848728895, 0.007562038488686085, 0.022496184334158897, 0.010629060678184032, 0.0027416786178946495, 0.0021419913973659277, 0.003406434552744031, -0.004368396010249853, -0.009841201826930046, 0.0070661092177033424, 0.00430860323831439, 0.01254243217408657, -0.020906398072838783, -1.897379115689546e-05, 0.012880085967481136, 0.014673871919512749, -0.005057772621512413, 0.007716796360909939, 0.000514834129717201, 0.020610950887203217, -0.008040381595492363, 0.012556500732898712, -0.0008406172855757177, 0.0023442318197339773, -0.0008168760105036199, -0.022130392491817474, -0.01121291983872652, -0.01989343762397766, -0.01955578289926052, -0.009869338944554329, 0.011304368264973164, 0.001134305726736784, 0.00861720647662878, -0.010312509723007679, -0.01392118539661169, 0.02009040117263794, -0.0036895712837576866, -0.011409885250031948, 0.009538720361888409, -0.006777696777135134, 0.0283769890666008, 0.0021525430493056774, -0.01235953625291586, -0.010340647771954536, -0.027757957577705383, 0.028236299753189087, -0.024325143545866013, -0.019794953987002373, 0.009172928519546986, -0.003406434552744031, 0.01722034439444542, -0.0031408837530761957, 0.020934535190463066, 0.01043209619820118, -0.02574610337615013, -0.0015361489495262504, 0.0018430270720273256, -0.0232981126755476, -0.002462059026584029, 0.004632188007235527, -0.010143683291971684, -0.004336741287261248, 0.0265198927372694, 0.002549989614635706, -0.02153949998319149, -0.007970036938786507, 0.009974855929613113, 0.008511689491569996, 0.014800491742789745, 0.014434699900448322, -0.023326249793171883, -0.004389499314129353, -0.011564643122255802, 0.018711648881435394, 0.0028682986740022898, 0.013020775280892849, -0.00024202920030802488, 0.0006159543991088867, 0.007421349175274372, -0.021018950268626213, -0.006183285266160965, 0.016699794679880142, -0.004994462709873915, -0.009482444263994694, 0.004885428585112095, 0.02010446973145008, 0.02030143514275551, 0.007322866935282946, -0.003693088423460722, -0.007358039263635874, -0.0030318498611450195, 0.006830455269664526, -0.01655910536646843, -0.00882824044674635, -0.009953753091394901, -0.010650163516402245, -0.0031830905936658382, 0.002894677920266986, 0.01610890030860901, 0.024465832859277725, -0.02130032703280449, -0.007252522278577089, -0.005131634417921305, -0.02186308428645134, -0.022679081186652184, -0.010530577972531319, -0.003573502879589796, -0.011466160416603088, 0.026252582669258118, -0.001347098033875227, -0.014673871919512749, -0.0026959546376019716, -0.012957464903593063, -0.014673871919512749, 0.00604963069781661, 0.0052336337976157665, -0.004684946499764919, 0.00560645991936326, -0.004491499159485102, 0.013893047347664833, -0.007829347625374794, -0.009813063777983189, -0.013442842289805412, 0.0259571373462677, 0.016727931797504425, 0.02795492112636566, 0.009974855929613113, 0.0017383894883096218, -0.01713593117892742, 0.0008999704732559621, -0.0040131560526788235, 0.012000778689980507, 0.008356931619346142, 0.010973748750984669, 0.0035471236333251, -0.00047922218800522387, 0.011944503523409367, 0.011191817000508308, 0.0005227478686720133, 0.014575389213860035, -0.0018922681920230389, -0.017909720540046692, -0.010418026708066463, 0.014983387663960457, 0.000416131952079013, 0.0017753203865140676, 0.008159967139363289, 0.0006418939447030425, 0.008800102397799492, -0.019133714959025383, 0.012436915189027786, 0.006074251141399145, -0.006615904159843922, 0.007533900439739227, -0.022045979276299477, 0.015377317555248737, -0.008968928828835487, -0.004248810466378927, -0.028672436252236366, 0.006672179792076349, 0.01799413375556469, -0.005251219961792231, 0.008546861819922924, -0.025070795789361, 0.005434115882962942, 0.006190320011228323, -0.011135540902614594, 0.016319934278726578, 0.0013734771637246013, 0.026533961296081543, -0.03742329776287079, 0.007400245871394873, 0.011705332435667515, -0.002993160393089056, -0.0011809089919552207, -0.001777958357706666, 0.007695693057030439, -0.0125353978946805, -0.01688268966972828, 0.001701458590105176, 0.006243078038096428, 0.00019784402684308589, 0.020160745829343796, -0.01380159892141819, 0.019049301743507385, 0.005768252536654472, -0.012450983747839928, 0.021905289962887764, -0.014547251164913177, 0.022116323933005333, 0.013414704240858555, 0.00660183560103178, -0.005416529718786478, -0.005486874375492334, 0.004656808916479349, 0.018134823068976402, 0.01976681686937809, -0.001088581862859428, 0.005121082533150911, -0.0055044605396687984, -0.012204778380692005, -0.031176701188087463, -0.010446164757013321, 0.012746430933475494, 0.017065586522221565, 0.03145807981491089, -0.010066304355859756, -0.020807916298508644, 0.017487652599811554, -0.0149130430072546, 0.025999343022704124, -0.007266591303050518, 0.0006629973067902029, -0.02187715284526348, -0.0040905349887907505, 0.016826415434479713, -0.00673900730907917, -0.005866734776645899, 0.017164068296551704, -0.006046113558113575, 0.008898585103452206, 0.02706857956945896, -0.01897895708680153, 0.008363965898752213, -0.02066722698509693, -0.003030091291293502, -0.009981891140341759, 0.001410408061929047, -0.002613299759104848, 0.017192207276821136, 0.020962674170732498, -0.0026185757014900446, -0.01844433881342411, -0.020399916917085648, -0.007934864610433578, -0.010741611942648888, 0.005965217482298613, -0.0007500486681237817, 0.018416201695799828, -0.0298260860145092, -0.003343124408274889, -0.004041294101625681, 0.008082588203251362, -0.0067917658016085625, 0.012704224325716496, 0.009897476993501186, -0.011909331195056438, -0.014090011827647686, -0.01722034439444542, -0.019724609330296516, 0.015813453122973442, 0.012401742860674858, 0.008068518713116646, -0.0009171169949695468, -0.004129224456846714, -0.006373215466737747, 0.0008546861936338246, 0.015306972898542881, -0.01843027025461197, 0.02308707870543003, -0.000542092660907656, -0.002242232207208872, 0.007864519953727722, -0.01976681686937809, -0.03258359059691429, 0.013062981888651848, -0.01875385455787182, -0.005405978299677372, 0.0009259100770577788, 0.01164202205836773, 0.011831952258944511, 0.0008379793725907803, 0.00010370324162067845, -0.008582034148275852, 0.00687617901712656, 0.005187910050153732, -0.01209926139563322, 0.01209222711622715, 0.003868949832394719, 0.018908612430095673, 0.016615381464362144, 0.012753465212881565, -0.0005451702163554728, 0.007625348400324583, -0.0038302603643387556, 0.0059405965730547905, -0.025352172553539276, -0.013900081627070904, 0.00452667148783803, -0.00998892541974783, -0.015968210995197296, 0.02497231215238571, -0.00015871487266849726, 0.04029335454106331, -0.02296045981347561, 0.002516576088964939, 0.03700122982263565, -0.02196156606078148, -0.008272518403828144, 0.028405126184225082, -0.010129613801836967, -0.009186997078359127, -0.001351494574919343, 0.008532793261110783, 0.019682403653860092, -0.03525668382644653, 0.0013945805840194225, -0.008371000178158283, 0.009735684841871262, 0.009194031357765198, -0.0028788503259420395, 0.018641304224729538, 0.0011870642192661762, 0.0053602540865540504, -0.01043209619820118, -0.0014763560611754656, -0.015433592721819878, 0.011838986538350582, 0.0048045325092971325, 0.0008432551985606551, -0.011466160416603088, 0.013421738520264626, 0.003970949444919825, -0.0017032172763720155, -0.00811072625219822, 0.009236238896846771, 0.012683121487498283, -0.01667165756225586, 0.01320367120206356, 0.025338103994727135, 0.02540844865143299, 0.00011760728375520557, 0.006524456199258566, 0.002532403450459242, -0.014090011827647686, -0.013463945128023624, -0.012830845080316067, -0.03883018717169762, 0.011606849730014801, -0.011177747510373592, -0.01379456464201212, -0.02042805589735508, 0.006935971789062023, 0.0002717057941481471, 0.016981173306703568, 0.007632383145391941, 0.019569851458072662, 0.01049540564417839, 0.020625019446015358, 0.005852666217833757, 0.009756787680089474, 0.014772353693842888, 0.0068621099926531315, -0.016038555651903152, 0.007934864610433578, 0.006169216241687536, -0.010720508173108101, 0.0006937730358913541, -0.007906726561486721, 0.004611084703356028, -0.01987936720252037, -0.002363576553761959, -0.010368785820901394, -0.018950819969177246, -0.010720508173108101, -0.029207054525613785, 0.0005069203907623887, -0.014969319105148315, 0.02694196067750454, -0.006654593627899885, 0.005398943554610014, -0.0046708774752914906, 0.007379142567515373, -0.015110007487237453, -0.0022193703334778547, 0.025577275082468987, -0.011339540593326092, 0.003017780836671591, -0.004178465809673071, -0.015095938928425312, -0.0215254295617342, -0.0068796961568295956, 0.009236238896846771, 0.024128178134560585, -0.013379531912505627, -0.007358039263635874, 0.031429942697286606, 0.024226659908890724, 0.03157063201069832, 0.01591193489730358, -0.010818990878760815, -0.03058580681681633, -0.016362139955163002, 0.009911546483635902, -0.016685726121068, -0.003879501484334469, -0.010410992428660393, 0.018908612430095673, 0.013196635991334915, -0.003907639533281326, 0.036382198333740234, 0.001482511288486421, -0.006981696002185345, -0.020934535190463066, -0.002965022576972842, 0.016530968248844147, -0.0006753075867891312, -0.02308707870543003, -0.013210705481469631, 0.008490586653351784, -0.004087017849087715, 0.006795282941311598, -0.006925420369952917, 0.006907834205776453, -0.02471907250583172, 0.01540545467287302, 0.022257013246417046, -0.014392493292689323, -0.0133021529763937, 0.03069835901260376, -0.0012310295132920146, -0.0014534940710291266, 0.027757957577705383, -0.002725851023569703, -0.01347098033875227, 0.0070731439627707005, 0.009362858720123768, 0.006995765026658773, -0.01613703742623329, -0.009841201826930046, 0.004333223681896925, -0.0029597466345876455, 0.013182567432522774, 0.01857095956802368, 0.02597120590507984, 0.0054622539319098, 0.006148112937808037, 0.0033484003506600857, -0.019696472212672234, 0.001406011520884931, 0.004111638758331537, 0.002748713130131364, -0.009841201826930046, 0.0003139125183224678, -0.00571549404412508, 0.0027522302698343992, 0.00018025789177045226, -0.005061289761215448, 0.010094442404806614, -0.025014519691467285, -0.004463361110538244, 0.01048837136477232, 0.009130721911787987, -0.004171431530267, 0.019161853939294815, -0.002249266719445586, -0.013217739760875702, -0.0018412683857604861, 0.0021560601890087128, 0.01053761225193739, -0.029460294172167778, 0.015546143986284733, 0.004702532663941383, 0.0001798182347556576, 0.016742000356316566, 0.013787530362606049, 0.027560992166399956, 0.03545365110039711, 0.004115155898034573, 0.02397342026233673, 0.005782321561127901, 0.014927112497389317, -0.0019889918621629477, -0.010959680192172527, 0.0007425745716318488, -0.016094831749796867, -0.008159967139363289, 0.0012688396964222193, -0.0064435601234436035, -0.006858592852950096, -0.01655910536646843, 0.0031918836757540703, 0.007463556248694658, -0.006457629147917032, 0.014399527572095394, -0.02231328934431076, -0.016826415434479713, -0.02011854015290737, 0.00795596744865179, 0.009869338944554329, 0.005405978299677372, -0.01534917950630188, -0.0063837673515081406, 0.006309905555099249, 0.006119975354522467, 0.0008331431890837848, -0.00502611743286252, 0.0019239232642576098, -0.008624240756034851, -0.018500614911317825, -0.016488760709762573, -0.021455084905028343, -0.020610950887203217, -0.017867514863610268, 0.008877481333911419, 0.00233192159794271, -0.013998564332723618, 0.005908941850066185, -0.009088515304028988, 0.001927440520375967, -0.016854552552103996, -0.02097674272954464, -0.00452667148783803, 0.002381162717938423, 0.026548029854893684, -0.023157423362135887, -0.0028876434080302715, 0.010059270076453686, 0.00689728232100606, 0.015447661280632019, 0.011522436514496803, 0.016854552552103996, 0.011191817000508308, 0.0013638047967106104, -0.0018166478257626295, -0.013435808010399342, 0.017178136855363846, -0.00533211650326848, -0.01186712458729744, -0.005036669317632914, -0.006805834360420704, 0.00994671881198883, -0.018500614911317825, -0.013400635682046413, -0.0036895712837576866, 0.010080372914671898, -0.016038555651903152, 0.006323974579572678, -0.005082393065094948, -0.020723503082990646, 0.0040905349887907505, -0.038802050054073334, 0.0074494872242212296, -0.0003158909676130861, 0.015053732320666313, -0.015714971348643303, -0.0021068190690129995, 0.007857485674321651, 0.0030406429432332516, -0.017417309805750847, 0.02771575003862381, -0.016390278935432434, 0.006243078038096428, 0.008462448604404926, -0.004326189402490854, -0.008272518403828144, -0.006707352120429277, -0.013667944818735123, 0.012331398203969002, 0.010889335535466671, 0.0274062342941761, -0.01622145250439644, -0.010115545243024826, -0.0006805834709666669, 0.007315832655876875, -0.021722394973039627, -0.006932454649358988, -0.008975964039564133, 0.00794893316924572, -0.013400635682046413, 0.01802227273583412, 0.003242883365601301, -0.0062993536703288555, -0.02561948262155056, 0.011494298465549946, -0.004245293326675892, -0.013006705790758133, -0.02937588095664978, -0.00041701123700477183, 0.020920466631650925, -0.0003853561938740313, -0.007766037713736296, -0.0025974721647799015, 0.03590385615825653, -0.02529589831829071, -0.0070063164457678795, -0.016840483993291855, 0.019133714959025383, 0.02153949998319149, -0.01125512644648552, 0.016305865719914436, 0.01689676009118557, 0.030501393601298332, 0.02892567589879036, -0.007059074938297272, -0.007351004984229803, -0.0002011414326261729, -0.009679408743977547, 0.0055044605396687984, -0.022665012627840042, 0.015363248065114021, -0.018627235665917397, 0.001855337293818593, -0.003949846141040325, -0.02583051659166813, -0.014090011827647686, -0.005349702667444944, -0.010453199036419392, 0.002771575003862381, 0.0022158531937748194, -0.0017480618553236127, -0.011395815759897232, -0.022918252274394035, 0.028461402282118797, 0.007217349950224161, 0.039055291563272476, 0.004452809691429138, 0.011789745651185513, -0.0013611669419333339, -0.016516897827386856, -0.02784237079322338, -0.013224774040281773, -0.0016926656244322658, -0.005645149387419224, -0.0017726825317367911, -0.034046757966279984, -0.0028999538626521826, -0.00021147327788639814, 0.0026273687835782766, -0.014547251164913177, -0.007414314895868301, -0.008230311796069145, -0.012120365165174007, -0.0028049887623637915, 0.021441016346216202, 0.00844134483486414, -0.022060047835111618, -0.00982713233679533, -0.01209926139563322, 0.007129419595003128, 0.00767458975315094, -0.004646257031708956, 0.012197744101285934, 0.016742000356316566, 0.010143683291971684, 0.021567637100815773, 0.004547774791717529, 0.0022703700233250856, 0.012887120246887207, 0.0024954727850854397, -0.0016126486007124186, -0.01691082864999771, 0.006327491719275713, 0.004818601068109274, -0.004776394460350275, -0.0016425451030954719, -0.028306644409894943, 0.018922682851552963, -0.007329901214689016, -0.023354388773441315, -0.008033346384763718, -0.00272057531401515, 0.007780106272548437, -0.011578711681067944, 0.006770662497729063, -0.00025148174609057605, -0.0006788248429074883, -0.012232916429638863, 0.023607628419995308, -0.013780496083199978, 0.01048837136477232, -0.0048819114454090595, 0.006795282941311598, 0.0005469288444146514, 0.005275840871036053, -0.01812075451016426, 0.002444472862407565, 0.0032727799843996763, 0.009405065327882767, 0.0058245281688869, 0.0007773071993142366, 0.01534917950630188, -0.006855075713247061, -0.00029236951377242804, 0.00043569650733843446, 0.01578531600534916, -0.007435418199747801, 0.006141078658401966, -0.0007852209382690489, 0.008251414634287357, -0.029516570270061493, -0.0042347414419054985, -0.02054060623049736, -0.0035717440769076347, -0.011747539043426514, -0.02328404411673546, -0.011459126137197018, 0.012676086276769638, -0.011670160107314587, 0.002384680090472102, -0.0038935705088078976, 0.009749753400683403, -0.002101543126627803, 0.005761218257248402, -0.018528752028942108, -0.006148112937808037, -0.007139971014112234, -0.003999087493866682, 0.014448769390583038, 0.006865627598017454, 0.008476517163217068, 7.281759462784976e-05, 0.00018201650527771562, 0.0019801987800747156, 0.02252432331442833, -0.0023530249018222094, 0.03202083706855774, 0.006943006534129381, -0.008687551133334637, 0.011860090307891369, -0.030416980385780334, -0.020807916298508644, 0.00839913822710514, -0.013407669961452484, -0.022271081805229187, -0.026477685198187828, 0.014927112497389317, -0.020174814388155937, 0.0044563268311321735, 4.9406051402911544e-05, 0.011058161966502666, 0.034947168081998825, 0.015363248065114021, -0.00593356229364872, 0.008181069977581501, 0.003587571671232581, -0.012007813900709152, 0.025788309052586555, 0.006186802405864, 0.010298441164195538, 0.00032314524287357926, 0.019682403653860092, 0.012521328404545784, 0.0035488822031766176, 0.010797887109220028, 0.004667360335588455, -0.025366242974996567, -0.017839375883340836, 0.020892329514026642, -0.028194092214107513, -0.008434310555458069, 0.020610950887203217, -0.009194031357765198, 0.020596882328391075, -0.016193313524127007, -0.0037880537565797567, 0.01941509358584881, 0.011663124896585941, -0.0035629512276500463, 0.0141884945333004, 0.017065586522221565, -0.03081090934574604, 0.017853444442152977, 0.009594995528459549, 0.0257179643958807, -0.002952712122350931, 0.0014798733172938228, -0.018148891627788544, 0.016601312905550003, -0.01235953625291586, 0.009440237656235695, 0.0005073600332252681, 0.014617595821619034, -0.023565422743558884, 0.0006616783794015646, -0.0018623718060553074, -0.015419524163007736, 0.0009962546173483133, 0.020034125074744225, 0.005634597968310118, -0.022045979276299477, -0.015757177025079727, 0.006141078658401966, -0.0070942472666502, 0.0052230823785066605, 0.009538720361888409, 0.014125184156000614, 0.0029052295722067356, -0.0043789478950202465, -4.9323614803142846e-05, 0.02695602923631668, -0.0029421604704111814, 0.004428188782185316, -0.023438801988959312, -0.01657317392528057, 0.011979675851762295, -0.0028507125098258257, 0.04040590673685074, -0.00011760728375520557, -0.022791631519794464, 0.011058161966502666, -0.0005741873173974454, 0.0007170746685005724, -0.0024884382728487253, 0.00477287732064724, 0.006408387795090675, 0.005690873600542545, 0.007463556248694658, 0.008244380354881287, -0.010446164757013321, 0.014132218435406685, 0.0012917016865685582, 0.009517616592347622, -0.021567637100815773, 0.014378424733877182, 0.010164786130189896, 0.029629122465848923, 0.01678420789539814, 0.007906726561486721], "0314465c-4399-4d05-87d5-4cedf3250956": [-0.0069848038256168365, 0.015770524740219116, 8.749568951316178e-05, 0.04967527464032173, 0.015170218423008919, -0.020898133516311646, -0.003064058953896165, 0.021248310804367065, 0.007053588982671499, -0.019197266548871994, 0.00032028014538809657, 0.04459768906235695, 0.01743387058377266, 0.016045663505792618, 0.03486774116754532, 0.025400424376130104, -0.011587145738303661, 0.0027248237747699022, 0.013181706890463829, 0.023199303075671196, 0.027589036151766777, -0.002346506342291832, -0.0656333938241005, 0.019497420638799667, 0.0031516035087406635, 0.024024723097682, 0.016120702028274536, 0.018496910110116005, -0.02813931740820408, -0.02077306993305683, 0.005405875388532877, 0.015095179900527, 0.045723263174295425, -0.016746019944548607, 0.01882207579910755, 0.006106231827288866, 0.05727914348244667, 0.016358323395252228, 0.012944085523486137, -0.011937323957681656, -0.015120193362236023, 0.018672000616788864, 0.0041833785362541676, -0.0122187165543437, -0.04469774290919304, 0.031190870329737663, 0.003961390350013971, 0.010999346151947975, -0.006134371273219585, -0.041371047496795654, -0.018534429371356964, -0.023199303075671196, 0.0029327422380447388, 0.03201628848910332, 0.01429477334022522, -0.01704617217183113, 0.004211517982184887, 0.008110376074910164, 0.0012092089746147394, -0.03161608427762985, -0.009204682894051075, 0.010524104349315166, -0.027839165180921555, -0.034042321145534515, -0.025963209569454193, 0.012468843720853329, 0.02189864218235016, -0.0066658915020525455, -0.037769217044115067, -0.02974013052880764, -0.026688579469919205, 0.03064058907330036, -0.001223278697580099, 0.03054053895175457, 0.03044048696756363, -0.004777430556714535, 0.02638842537999153, 0.011655930429697037, 0.013094162568449974, 0.007166145835071802, 0.021498437970876694, -0.012556388974189758, 0.06688403338193893, -0.021385880187153816, 0.032091327011585236, 0.008110376074910164, 0.00261539313942194, -0.02161099575459957, -0.021973680704832077, -0.04584832862019539, 0.01659594476222992, 0.011918564327061176, 0.0007746128831058741, -0.009636152535676956, -0.014319785870611668, 0.02886468544602394, 0.00011832192103611305, 0.005321457516402006, 0.0038175673689693213, 0.014807533472776413, 0.0021682907827198505, -0.02221130020916462, 0.015332801267504692, 0.019985167309641838, 0.04299687594175339, -0.012393806129693985, 0.014132190495729446, 0.001433541881851852, -0.034292448312044144, 0.03266661986708641, 0.0015789283206686378, -0.02981516905128956, -0.027864176779985428, 0.021348360925912857, -0.04247161000967026, -0.004123973194509745, 0.0010919618653133512, -0.044047411531209946, 0.010786738246679306, -0.005580964498221874, 0.004949393216520548, 0.03591827303171158, 0.002527848584577441, -0.01490758452564478, -0.02168603427708149, 0.01331927627325058, -0.01792161911725998, 0.0039989096112549305, -0.009204682894051075, -0.0322163924574852, 0.005358976777642965, 0.009229696355760098, 0.0030187233351171017, 0.023374391719698906, 0.006553334183990955, -0.030590564012527466, -0.00873569492250681, 0.008948302827775478, 0.0036018325481563807, 0.012575147673487663, -0.019935142248868942, -0.008829492144286633, -0.004180252086371183, -0.008685668930411339, 0.023749584332108498, -0.00019726833852473646, 0.004940013401210308, 0.01161215826869011, -0.00045140154543332756, 0.002879590028896928, -0.051576241850852966, -0.04522300884127617, -0.0007675780216231942, -0.028389444574713707, 0.04847466200590134, 0.011724715121090412, -0.02984018251299858, 0.025613032281398773, 0.024937687441706657, 0.016608450561761856, -0.0049837855622172356, -0.05187639594078064, -0.02046041004359722, 0.042796775698661804, 0.036693669855594635, 0.03691878542304039, 0.05287690460681915, 0.02663855254650116, -0.029239876195788383, 0.010524104349315166, 0.03839453309774399, -0.006368865258991718, 0.030840691179037094, 0.02946499176323414, -0.021085727959871292, -0.003195375669747591, 0.004642987158149481, 0.046348582953214645, 0.00443663215264678, 0.009204682894051075, -0.0006843325681984425, 0.002282411325722933, -0.008591871708631516, 0.012718970887362957, 0.008498073555529118, 0.004055188037455082, 0.006703410763293505, 0.03531796857714653, 0.06733425706624985, 0.023937178775668144, 0.005346470046788454, 0.008560605347156525, 0.0018337455112487078, 0.022148769348859787, -0.018847089260816574, -0.020510435104370117, -0.028964737430214882, -0.0031344073358923197, -0.0100551163777709, 0.03416738286614418, 0.02956504188477993, -0.07088606804609299, -0.017721517011523247, 0.006697157397866249, -0.002079182770103216, -0.005305824335664511, -0.02520032227039337, -0.022724062204360962, 0.0267386045306921, -0.016683489084243774, 0.02537541091442108, -0.03414237126708031, 0.005365229677408934, -0.007816476747393608, -0.025075258687138557, 0.0037800483405590057, 0.0015750201418995857, 0.027814151719212532, 0.0316661112010479, -0.04417247325181961, 0.007653894368559122, 0.004774304106831551, 0.01603315770626068, -0.014657457359135151, -0.04462270438671112, -0.009561114944517612, 0.0008871701429598033, 0.008723188191652298, -0.045723263174295425, 0.014657457359135151, 0.03511786833405495, -0.0024434307124465704, -0.041646189987659454, -0.024737585335969925, 0.006290700752288103, 0.007103614043444395, 0.02172355353832245, 0.004980659112334251, -0.03339198976755142, 0.011218207888305187, 0.0011912310728803277, 0.04327201470732689, 0.026088273152709007, -0.03161608427762985, -0.0010653857607394457, 0.013269251212477684, 0.016746019944548607, 0.0028389443177729845, 0.013244238682091236, 0.024587510153651237, -0.013219226151704788, -0.0012951901881024241, -0.005834218580275774, 0.01585806906223297, -0.02506275102496147, 0.018809569999575615, 0.025212828069925308, -0.013731986284255981, -0.0003839844430331141, -0.013731986284255981, 0.028189342468976974, 0.01270646508783102, -0.01704617217183113, 0.009386025369167328, 0.0040864539332687855, 0.01226874254643917, -0.01645837351679802, -0.04074573144316673, 0.009285974316298962, 0.004952519666403532, 0.005136988591402769, 0.035543084144592285, -0.02178608439862728, 0.009348506107926369, -0.0015711118467152119, 0.012550135143101215, 0.046598710119724274, -0.018834583461284637, 0.0009919109288603067, 0.025600524619221687, -0.08074107766151428, -0.019860103726387024, 0.012712717987596989, 0.006497055757790804, 0.013019124045968056, -0.01487006526440382, -0.02726387232542038, -0.029590055346488953, -0.03186621144413948, -0.020410384982824326, -0.0015672036679461598, 0.010192685760557652, 0.03676870837807655, -0.0027467100881040096, -0.017496401444077492, -0.0002344943059142679, -0.02601323463022709, 0.003495528595522046, 0.013794518075883389, 0.06098102778196335, -0.010430307127535343, -0.043247003108263016, 0.002487202873453498, -0.0017805934185162187, 0.029790157452225685, -0.032891735434532166, 0.017896605655550957, -0.013844544067978859, -0.010636662133038044, 0.01733381859958172, 0.03869468718767166, -0.05187639594078064, 0.006615865975618362, 0.007728932425379753, -0.0399453230202198, 0.03671868145465851, -0.028039265424013138, -0.023649532347917557, -0.02813931740820408, -0.026588527485728264, 0.01331927627325058, 0.0013600669335573912, -0.04117094725370407, 0.018146732822060585, 0.010899295099079609, -0.01112440973520279, 0.0030859450343996286, 0.03116585686802864, -0.020122738555073738, -0.05247670039534569, -0.04249662160873413, 0.002731077140197158, -0.0051526217721402645, -0.021661020815372467, -0.031190870329737663, 0.009173417463898659, -0.007428779732435942, -0.07874006032943726, 0.0013545954134315252, -0.019472407177090645, -0.0026529121678322554, 0.004249036777764559, -0.015170218423008919, -0.004264669958502054, 0.02349945716559887, 0.043422091752290726, 0.00012027603952446952, -0.022398896515369415, -0.050775833427906036, 0.026513488963246346, 0.0008027521544136107, 0.025788120925426483, 0.006941031664609909, 0.024775104597210884, 0.020410384982824326, -0.02701374515891075, -0.0031531667336821556, -0.00779146421700716, -0.014157203026115894, -0.02367454580962658, -0.010974333621561527, 0.0055590784177184105, -0.022286338731646538, -0.006400131154805422, -0.024675054475665092, -0.019609976559877396, 0.006503308657556772, -0.013331783004105091, 0.013181706890463829, -0.04599840193986893, 0.010117648169398308, 0.02256147935986519, -0.0010309932986274362, -0.010849270038306713, -0.05167629197239876, -0.005580964498221874, 0.025788120925426483, 0.014532393775880337, -0.02151094377040863, 0.0161081962287426, 0.00869817566126585, -0.02911481261253357, 0.0010919618653133512, 0.007879008539021015, 0.0003392350918147713, 0.00679095508530736, 0.018209265545010567, 0.0015460990834981203, -0.005771686788648367, -0.00677219545468688, 0.010899295099079609, 0.01206238754093647, -0.011518360115587711, -0.03586824983358383, -0.00272326054982841, 0.0028280012775212526, 0.002793608931824565, -0.03449254855513573, 0.015557915903627872, -0.01872202567756176, -0.0009700247901491821, 0.009679924696683884, -0.03636850416660309, 0.010305243544280529, 0.04674878343939781, -0.01429477334022522, -0.009579874575138092, -0.00038535232306458056, 0.020060205832123756, -0.027288883924484253, 0.00535272341221571, 0.01930982433259487, -0.021273324266076088, -0.0022495819721370935, 0.019434887915849686, 0.0007992347818799317, -0.0209856778383255, 0.03859463706612587, -0.007897768169641495, 0.007184905465692282, 0.020610487088561058, 0.018972152844071388, 0.015507889911532402, -0.00025794372777454555, 0.009823747910559177, 0.022536465898156166, 0.010505344718694687, 0.010874282568693161, 0.030390461906790733, 0.011393296532332897, -0.00769766652956605, 0.07358743995428085, 0.015945613384246826, 0.001433541881851852, 0.002255835337564349, -0.03471766412258148, 0.008867011405527592, 0.0056466227397322655, -0.0063469791784882545, -0.0018102960893884301, -0.02946499176323414, 0.0028389443177729845, -0.020372865721583366, 0.04779931902885437, -0.04054562747478485, -0.010661674663424492, -0.03489275276660919, -0.006765942554920912, -0.012325020506978035, 0.012787756510078907, 0.016470879316329956, -0.016658475622534752, -0.02133585512638092, -0.020560460165143013, 0.028989749029278755, 0.02454999089241028, 0.018121719360351562, 0.012606414034962654, 0.022011199966073036, -0.06413263082504272, -0.03179117664694786, -0.005918636452406645, 0.031390972435474396, 0.004702392499893904, 0.04134603589773178, -0.013244238682091236, -0.0022386389318853617, -0.015057661570608616, 0.009104632772505283, 0.007835236378014088, -0.034467536956071854, -0.002648222493007779, 0.0038613395299762487, -0.005671635735780001, -0.005280811805278063, -0.023549482226371765, -0.006168763618916273, 0.01764647848904133, 0.0030452993232756853, -0.037043847143650055, 0.004633607342839241, -0.004718025680631399, 0.010742966085672379, 0.0122187165543437, -0.004136479459702969, -0.019197266548871994, -0.011505854316055775, 0.009917546063661575, 0.012650186195969582, -0.03426743671298027, -0.021736059337854385, 0.004199011251330376, 0.022924164310097694, -0.017171235755085945, 0.01420722808688879, 0.005981168244034052, 0.005521559156477451, -0.007253690622746944, 0.008485567755997181, -0.058379702270030975, 0.00911713857203722, -0.024837637320160866, -0.009529848583042622, -0.008992074988782406, -0.025613032281398773, 0.006065586116164923, -0.0019916382152587175, 0.03286672383546829, -0.01248135045170784, -0.046773798763751984, -0.03346702829003334, 0.04052061587572098, -0.03241649270057678, 0.014132190495729446, -0.010355268605053425, 0.018084201961755753, 0.020597979426383972, -0.02164851501584053, 0.02074805647134781, -0.004952519666403532, 0.004430379252880812, -0.040770743042230606, -0.018534429371356964, -0.0163833349943161, -0.02681364305317402, -0.027113795280456543, -0.01979757286608219, -0.028214355930685997, -0.015382826328277588, -0.060680873692035675, 0.010849270038306713, 0.01830931566655636, -0.00491500087082386, -0.00847306102514267, -0.03419239819049835, -0.013681961223483086, 0.002604450099170208, 0.02646346390247345, 0.024700067937374115, 0.002527848584577441, -0.03769417852163315, 0.05567833036184311, -0.033767178654670715, -0.006966044194996357, -0.009723696857690811, 0.023624520748853683, -0.03741903975605965, -0.006784702185541391, -0.03311685100197792, -0.00017547990137245506, -0.008529339917004108, 0.0006049952935427427, 0.04339708015322685, -0.01115567609667778, -0.034217409789562225, -0.025462955236434937, 0.007222424726933241, 0.010167673230171204, 0.016433361917734146, 0.006056206300854683, -0.023386899381875992, 0.004608594812452793, 0.008122882805764675, 0.0070723481476306915, 0.006124991457909346, -0.010899295099079609, -0.02513778954744339, 0.01628328487277031, -0.0035361740738153458, 0.025813132524490356, -0.008554352447390556, 0.012562641873955727, 0.022511454299092293, 0.01535781379789114, 0.012600161135196686, 0.020422890782356262, -0.011924817226827145, 0.02558801881968975, -0.037944305688142776, -0.013219226151704788, 0.032266415655612946, 0.005524686072021723, -0.03496779128909111, -0.007191158831119537, 0.0109305614605546, 0.0031125210225582123, -0.01829680986702442, -0.02014775015413761, -0.01893463358283043, 0.010542863979935646, 0.007003563456237316, 0.04569825157523155, -0.0365435928106308, -0.003373591462150216, -0.0031734895892441273, 0.05762932077050209, 0.0044053662568330765, -0.018559442833065987, 0.03089071623980999, 0.024812623858451843, -0.00010464308434166014, 0.02646346390247345, 0.007922780700027943, 0.006262561306357384, -0.0026450958102941513, 0.03901985287666321, 0.01899716630578041, 0.007134879939258099, -0.03036545030772686, 0.03656860440969467, -0.032091327011585236, -0.01487006526440382, 0.026788629591464996, -0.015457864850759506, 0.008322984911501408, 0.0014765325468033552, 0.0004166182188782841, 0.0029608814511448145, 0.0007921999203972518, 0.03674369305372238, 0.029239876195788383, 0.008172907866537571, 0.03636850416660309, 0.007528830785304308, -0.01263767946511507, -0.01336930226534605, 0.01959747076034546, 0.007291209883987904, 0.0008277649176307023, 0.010161420330405235, -0.044047411531209946, -0.005881117191165686, -0.014382317662239075, -0.018496910110116005, 0.014669964089989662, -0.010392787866294384, 0.008310478180646896, 0.026438452303409576, -0.023199303075671196, -0.020410384982824326, 0.012325020506978035, -0.04247161000967026, 0.012568894773721695, 0.03559311106801033, 0.0036799972876906395, 0.016333309933543205, -0.020735550671815872, 0.023937178775668144, 0.01265643909573555, -0.03496779128909111, 0.034642625600099564, -0.007422526367008686, -0.012243729084730148, 0.02831440605223179, 0.010849270038306713, 0.02363702654838562, 0.008254199288785458, 0.024675054475665092, -0.005724787712097168, -0.0015296845231205225, -0.006040573585778475, -0.005133862141519785, 0.012281248345971107, -0.014319785870611668, 0.008954555727541447, 0.014557406306266785, 0.019409876316785812, 0.012737730517983437, 0.006071839481592178, 0.031115831807255745, -0.0037456557620316744, -0.05277685075998306, 0.02217378094792366, -0.012187451124191284, -0.006278194487094879, 0.012606414034962654, -0.005396495573222637, 0.00130066170822829, 0.05257675051689148, -0.03284170851111412, 0.02094815857708454, -0.02429986372590065, -0.04897491633892059, 0.0038019344210624695, 0.014044646173715591, -0.0051526217721402645, 0.0032078821677714586, 0.002520032227039337, -0.028364431113004684, -0.043247003108263016, -0.011043118312954903, -0.012118665501475334, 0.02014775015413761, 0.014219734817743301, 0.016833564266562462, 0.01203112117946148, -0.026538502424955368, -0.015745511278510094, -0.007835236378014088, 0.003442376386374235, -0.042096417397260666, -0.04674878343939781, 0.0024543737526983023, -0.053877413272857666, -0.012543882243335247, 0.016258271411061287, -0.020973170176148415, -0.032341454178094864, -0.00468988623470068, -0.015157711692154408, 0.0044678980484604836, 0.029264889657497406, -0.00979873538017273, 0.002853014040738344, 1.2341483852651436e-05, 0.031040793284773827, 0.008829492144286633, 0.041746240109205246, -0.0065908534452319145, 0.023587001487612724, 0.021498437970876694, -0.010280230082571507, -0.012281248345971107, 0.01091180182993412, 0.004345961380749941, 0.009310987778007984, -0.0012811205815523863, 0.005393369123339653, 0.016883589327335358, 0.006859740242362022, 0.005993674509227276, -0.021836109459400177, 0.009010834619402885, 0.03026539832353592, 0.006218789145350456, -0.004236530512571335, -0.03844456002116203, 0.019184760749340057, 0.028214355930685997, -0.009973824955523014, -0.020072713494300842, -0.020547954365611076, 0.020723043009638786, -0.02541293017566204, -0.010380281135439873, 0.010861776769161224, 0.032541558146476746, 0.004211517982184887, -0.03514287993311882, -0.022886645048856735, 0.019647495821118355, -0.018384354189038277, 0.028039265424013138, 0.011918564327061176, -0.021148260682821274, -0.00034685616265051067, 0.007872755639255047, -0.002013524528592825, -0.038294482976198196, 0.02753901109099388, 0.0077101727947592735, 0.04312194138765335, -0.010449066758155823, 0.0005123700830154121, 0.008954555727541447, -0.0002524722076486796, -0.009054606780409813, 0.03441751003265381, 0.022023705765604973, 0.0016117575578391552, 0.027864176779985428, 0.02981516905128956, 0.001874391222372651, 0.056978989392519, -0.026938706636428833, 0.007591362576931715, 0.021573476493358612, 0.022498946636915207, -0.0245750043541193, 0.003645604941993952, -0.03924496844410896, -0.010674180462956429, 0.013882063329219818, 0.03256656974554062, -0.008948302827775478, -0.05287690460681915, 0.027463972568511963, -0.01331927627325058, -0.03149102255702019, 0.013957100920379162, 0.03729397431015968, -0.026263361796736717, 0.027488986030220985, 0.018984658643603325, -0.02404973655939102, -0.004349087830632925, 0.009386025369167328, -0.017696503549814224, -0.016120702028274536, 0.0006339162937365472, 0.028039265424013138, -0.006672144867479801, 0.028039265424013138, -0.004320948384702206, 0.02465004101395607, -0.015770524740219116, -0.01331927627325058, -0.012869047932326794, -0.01358191017061472, 0.021736059337854385, 0.01203112117946148, -0.022536465898156166, -0.0005491074989549816, 0.022786593064665794, -0.028164329007267952, -0.0019322331063449383, 0.01962248422205448, 0.01291907299309969, 0.009317240677773952, 0.0029671345837414265, -0.00535272341221571, -0.007553843315690756, 0.012612666934728622, -0.009442304261028767, -0.011749728582799435, 0.03924496844410896, 0.04702392593026161, 0.00703482935205102, -0.004874355159699917, 0.0005491074989549816, -0.0299152210354805, -0.021711045876145363, -0.007979059591889381, 0.03726896271109581, 0.00117247155867517, 0.038894787430763245, 0.006784702185541391, 0.0010864903451874852, -0.020785575732588768, 0.016833564266562462, -0.03131593391299248, -0.01729629933834076, -0.018747039139270782, -0.0007261506980285048, -0.00024152913829311728, 0.004217770881950855, 0.002981204306706786, 0.006397004704922438, 0.01977255940437317, 0.012593907304108143, 0.01049283891916275, -0.006253181491047144, 0.01420722808688879, -0.008047844283282757, 0.01535781379789114, 0.0245750043541193, 0.0002454373752698302, -0.003711263183504343, -0.019785067066550255, -0.02726387232542038, 0.021260816603899002, 0.012856541201472282, -0.006934778299182653, -0.004883734975010157, -0.014719989150762558, 0.0023027341812849045, -0.015232750214636326, -0.005799825768917799, -0.0004404584760777652, 0.000781647686380893, -0.0003785128938034177, 0.02771409973502159, 0.04759921878576279, -0.025713082402944565, -0.031215881928801537, -0.018847089260816574, -0.03099076822400093, -0.00622191559523344, -0.05092591047286987, 0.02788919024169445, 0.013456846587359905, -0.018697012215852737, -0.015120193362236023, 0.02566305734217167, -0.02788919024169445, 0.012831528671085835, -0.011462082155048847, 0.006878499872982502, -0.016233259811997414, 0.0031562934163957834, 0.013006617315113544, -0.023924672976136208, 0.033066824078559875, 0.0029624446760863066, -0.004061441402882338, -0.0161081962287426, 0.026863668113946915, -0.01117443572729826, 0.011043118312954903, -0.021135753020644188, 0.00974245648831129, -0.022023705765604973, -0.049975428730249405, -0.005140115041285753, 0.04154613986611366, -0.016095688566565514, 0.0030671856366097927, 0.01799665577709675, -0.014019632712006569, -0.004852469079196453, 0.002851450815796852, -0.028639571741223335, -0.0477743074297905, 0.01655842550098896, 0.03141598403453827, -0.0038144406862556934, 0.0027420201804488897, 0.00491500087082386, 0.0034736422821879387, -0.006578347180038691, -0.031290922313928604, 0.012318767607212067, 0.025988223031163216, 0.011887297965586185, 0.013356795534491539, -0.023649532347917557, -0.018146732822060585, -0.015695486217737198, 0.02433738298714161, 0.03291674703359604, 0.0017680870369076729, -0.00021827511955052614, -0.015557915903627872, 0.007003563456237316, 0.01181851327419281, -0.002465316792950034, -0.03711888566613197, -0.01291907299309969, -0.043847307562828064, 0.006453283131122589, -0.000194434862351045, -0.005427761469036341, 0.0342424213886261, -0.03441751003265381, -0.0129315797239542, -0.04044557735323906, -0.0019963281229138374, 0.015195230953395367, 0.000454918947070837, 0.012819021940231323, -0.02141089364886284, 0.030565550550818443, 0.01429477334022522, 0.002940558595582843, 0.012281248345971107, -0.017734022811055183, -0.005840471480041742, 0.0201102327555418, 0.01225623581558466, -0.007997819222509861, 0.01979757286608219, -0.013756999745965004, 0.03044048696756363, 0.011924817226827145, -0.05030059069395065, 0.02429986372590065, 0.002405911684036255, 0.004843089263886213, -0.011737221851944923, -0.004202138166874647, 0.004696139134466648, -0.014007126912474632, 0.0018118593143299222, 0.011755981482565403, 0.020272813737392426, 0.005427761469036341, -0.017058679834008217, -0.01942238211631775, -0.044647715985774994, -0.0100551163777709, 0.058980006724596024, -0.03754410147666931, -0.017546426504850388, -0.004433505702763796, 0.020247802138328552, -0.011337018571794033, -0.00047367849037982523, -0.007466298993676901, -0.057929474860429764, 0.0029765143990516663, 0.017383845522999763, -0.018434379249811172, 0.004158365540206432, -0.0036299719940871, 0.010192685760557652, 0.014895078726112843, -0.02164851501584053, -0.006453283131122589, 0.031115831807255745, -0.022011199966073036, -0.008385516703128815, 0.002085436135530472, -0.02398720383644104, 0.024950195103883743, 0.06363237649202347, 0.00045648225932382047, 0.016996147111058235, -0.02252396009862423, -0.009636152535676956, 0.027038756757974625, -0.04844965040683746, -0.008541845716536045, 0.014632444828748703, -0.0012475097319111228, 0.02036035992205143, 0.023411910980939865, 0.001231095171533525, -0.024412421509623528, 0.023612013086676598, 0.01296909898519516, -0.021936161443591118, 0.005387115757912397, -0.017246274277567863, 0.0013358358992263675, -0.009905039332807064, 0.007879008539021015, -0.023974698036909103, -0.0035549337044358253, 0.0020901260431855917, 0.016570931300520897, -0.004295935854315758, -0.0227365680038929, 0.007103614043444395, -0.007047335617244244, 0.026613540947437286, -0.03574318438768387, -0.00401766924187541, -0.07523827999830246, 0.005924889352172613, -0.02248644083738327, 0.02433738298714161, -0.008816986344754696, 0.01966000348329544, -5.7206842029700056e-05, -0.013419327326118946, 0.030765652656555176, 0.006040573585778475, 0.019372357055544853, -0.0018009162740781903, 0.01263767946511507, -0.007578855846077204, -0.011149422265589237, 0.015770524740219116, -0.009042100980877876, -0.028289392590522766, 0.009035847149789333, -0.0016352069796994328, -0.015745511278510094, 0.017058679834008217, 0.014332291670143604, 0.0021354614291340113, 0.0031547301914542913, 0.016233259811997414, -0.02053544856607914, 0.006547081284224987, -0.02527535893023014, -0.01004260964691639, 0.009542355313897133, -0.0016492765862494707, -0.0003384534502401948, -0.020410384982824326, 0.010136406868696213, -0.002526285359635949, -0.0031297174282372, 0.006428270600736141, -0.025788120925426483, 0.014544900506734848, 0.006078092381358147, 0.005981168244034052, -0.004420999437570572, 0.017558934167027473, 0.0153953330591321, -0.005355849862098694, 0.008967062458395958, -0.01490758452564478, 0.003973897080868483, 0.015607940964400768, 0.008766960352659225, -0.007353741675615311, -0.011987349018454552, -0.012575147673487663, -0.02293667010962963, 0.009467316791415215, 0.00801657885313034, 0.020760562270879745, 0.007216171361505985, 0.008254199288785458, 0.03774420544505119, 0.0032797937747091055, -0.0018337455112487078, -0.0015883081359788775, -0.027038756757974625, -0.0035486805718392134, 0.022598998621106148, 0.038994841277599335, 0.015232750214636326, 0.0010505345417186618, -0.0186845064163208, -0.0005405093543231487, 0.0104240532964468, 0.02301170863211155, 0.03701883554458618, 0.03914491832256317, 0.016220752149820328, 0.029940232634544373, 0.005912383086979389, 0.02482513152062893, -0.01813422702252865, 0.007410020101815462, -0.008122882805764675, -0.00480244355276227, 0.017458882182836533, -0.01642085425555706, -0.015958119183778763, -0.009454810060560703, 0.03381720557808876, 0.01600814424455166, 0.01753392070531845, -0.023486949503421783, 0.038544610142707825, 0.017458882182836533, -0.004749291576445103, 0.048824843019247055, -0.024074748158454895, 0.016746019944548607, -0.017071185633540154, -0.01607067696750164, -0.005759180057793856, -0.01620824635028839, 0.010855522938072681, 0.008079110644757748, 0.02388715371489525, -0.009235949255526066, -0.01813422702252865, -0.02106071636080742, 0.011443322524428368, 0.003726896131411195, 0.005706028081476688, 0.0065908534452319145, -0.04044557735323906, 0.02384963445365429, 0.012249982915818691, 0.010173926129937172, -0.02813931740820408, 0.0222738329321146, -0.0005737293977290392, 0.026238350197672844, 0.014057151973247528, -0.0030937616247683764, 0.0036518580745905638, -0.02178608439862728, -0.037669166922569275, 0.0063469791784882545, 0.010311496444046497, 0.012794009409844875, -0.0026404059026390314, 0.0042427838779985905, 0.01690860278904438, -0.009298481047153473, -0.012750237248837948, 0.00648454949259758, -0.0016602197429165244, 0.03329193964600563, 0.021560970693826675, 0.0005307387909851968, 0.01823427714407444, -0.04194634035229683, -0.0059999278746545315, -0.03044048696756363, 0.009629899635910988, -3.4710043109953403e-05, -0.01614571548998356, 0.010486585088074207, 0.015270269475877285, 0.0016993021126836538, 0.002802988514304161, 0.00022863195044919848, 0.011030612513422966, -0.021535957232117653, 0.012844034470617771, 0.02451247163116932, -0.023136772215366364, 0.009511088952422142, -0.031641099601984024, 0.006509562022984028, 0.009142151102423668, -0.003361085196956992, 0.009404784999787807, 0.0034924019128084183, 0.03511786833405495, 0.013481859117746353, -0.001494510448537767, -0.030390461906790733, 0.010993093252182007, 0.009336000308394432, -0.0077226790599524975, 1.4338349501485936e-05, 0.011643423698842525, -0.007947794161736965, -0.005396495573222637, -0.042446594685316086, 0.010192685760557652, -0.01288155373185873, 0.0008121319697238505, 0.01487006526440382, 0.029139826074242592, -0.010273977182805538, -0.005702901631593704, -0.003376718144863844, -0.0004725060425698757, -0.0006124209612607956, -0.006722170393913984, 0.005543445236980915, -0.02172355353832245, 0.023349380120635033, 0.0054246350191533566, -0.009260961785912514, 0.0034705158323049545, 0.04587334021925926, 0.007835236378014088, 0.00033298193011432886, 0.01704617217183113, -0.01314418762922287, 0.060330696403980255, -0.002710754284635186, -0.024625029414892197, -0.020210282877087593, -0.011068131774663925, -0.007291209883987904, 0.02698873169720173, 0.018809569999575615, -0.003889478975906968, 0.018809569999575615, -0.00036815606290474534, 0.0028108051046729088, -0.0012756490614265203, -0.013944595120847225, -0.01603315770626068, -0.016508398577570915, 0.025025231763720512, 0.00864814966917038, 0.0063594854436814785, -0.0153953330591321, -0.009436051361262798, 0.018009163439273834, 0.0022339490242302418, 0.013481859117746353, 0.02921486459672451, 0.02726387232542038, -0.01473249588161707, -0.013969607651233673, 0.008673163130879402, -0.014719989150762558, -0.0036643643397837877, -0.008085363544523716, -0.0003822257276624441, 0.004286556039005518, 0.004746164660900831, 0.019297318533062935, -0.015595435164868832, -0.008022831752896309, 0.002593507058918476, -0.004264669958502054, 0.027388935908675194, -0.029364939779043198, 0.019534939900040627, 0.018071694299578667, -0.02151094377040863, -0.003992656245827675, -0.02318679727613926, 0.012006108649075031, -0.01645837351679802, 0.010411547496914864, -0.02946499176323414, 0.0051651280373334885, 0.024012217298150063, 0.0218611229211092, 0.013731986284255981, 0.029189851135015488, -0.025437941774725914, 0.01872202567756176, -0.033041812479496, -0.01614571548998356, 0.008304225280880928, -0.0035674399696290493, -0.008066603913903236, -0.003182869404554367, -0.041220974177122116, 0.03329193964600563, 0.008623137138783932, 0.007084854878485203, 0.02433738298714161, -0.03391725569963455, -0.009248455055058002, -0.024024723097682, 0.005781066138297319, -0.0002937041281256825, 0.0020432269666343927, 0.02234887145459652, -0.024449940770864487, 0.0014218171127140522, -0.013932088389992714, 0.011680942960083485, 0.007297462783753872, -0.009110885672271252, -0.019409876316785812, -0.005771686788648367, -0.00036190287210047245, 0.019572459161281586, -0.01632080413401127, -0.0021245183888822794, -0.0011396423215046525, 0.023411910980939865, 0.0004998637014068663, -0.001888460828922689, -0.016645969823002815, 0.006672144867479801, 0.0037300228141248226, 0.018747039139270782, 0.018259290605783463, 0.01291907299309969, 0.008260453119874, 0.005937396083027124, -0.015995638445019722, -0.002008834620937705, 0.018571948632597923, -0.008466808125376701, -0.018922127783298492, 0.0027060643769800663, -0.04207140579819679, 0.0009645532700233161, 0.020585473626852036, -0.00018515279225539416, -0.009967571124434471, -0.028039265424013138, 0.019059697166085243, -0.004192758351564407, -0.0019056571181863546, 0.003648731391876936, -0.014845052734017372, -0.021360868588089943, -0.00312502752058208, 0.05407751351594925, 0.004098960664123297, 0.006822220981121063, 0.012381299398839474, -0.03746906295418739, 0.029890207573771477, -0.020347852259874344, -0.014982623048126698, 0.013269251212477684, -0.00953610148280859, -0.00648454949259758, -0.019222280010581017, -0.009104632772505283, 0.021485932171344757, 0.019710028544068336, -0.03839453309774399, 0.008810732513666153, -0.008779467083513737, -0.0013162947725504637, -0.028464483097195625, -0.00261539313942194, 0.024875156581401825, 0.019159749150276184, 0.002734203590080142, -0.009461063891649246, -0.01782156713306904, 0.02964008040726185, 0.014357305131852627, -0.006031193770468235, -0.030865704640746117, -0.006472042761743069, 0.004374100361019373, 0.0020510435570031404, 0.01159339863806963, 0.005749800242483616, 0.0003886743215844035, 0.002471569925546646, 0.04062066599726677, -0.005815458949655294, 0.0053152041509747505, 0.01425725407898426, 0.033867232501506805, -0.02102319709956646, -0.020685523748397827, -0.04539809748530388, 0.007372500840574503, 0.007234930992126465, 0.01924729347229004, 0.04044557735323906, -0.0205729678273201, 0.004508543759584427, -0.011205701157450676, -0.016971135511994362, 0.028114303946495056, -0.04034552723169327, 0.0006780793773941696, -0.01518272515386343, -0.03924496844410896, -0.015095179900527, -0.0163833349943161, -0.000519014080055058, 0.049800336360931396, -0.009773722849786282, 0.002715444192290306, -0.009611140005290508, -0.0026294628623872995, 0.03186621144413948, 0.003995783161371946, -0.005574711132794619, -0.029064787551760674, -0.002149531152099371, -0.02297418937087059, -0.02203621156513691, 0.009054606780409813, 0.005305824335664511, -0.008260453119874, -0.02788919024169445, -0.0008332364377565682, -0.0002817839849740267, -0.02437490224838257, -0.03959514573216438, -0.045373085886240005, -0.00599680095911026, -0.020272813737392426, -0.012506362982094288, -0.0129315797239542, 0.0005932705826126039, -0.0041208467446267605, 0.029314914718270302, 0.0009457936976104975, 0.01844688504934311, -0.021310843527317047, -8.886356954462826e-05, -0.0009129645186476409, -0.00032223426387645304, -0.007153639569878578, -0.007610121741890907, 0.029790157452225685, 0.008254199288785458, -0.006290700752288103, 0.010742966085672379, -0.012174944393336773, 0.021736059337854385, -0.029064787551760674, 0.018321821466088295, -0.011474587954580784, 0.003654984524473548, -0.0012631426798179746, -0.023274341598153114, -0.0014687160728499293, 0.006840980611741543, -0.026838654652237892, -0.003070312086492777, 0.013381808064877987, -0.0414210744202137, 0.01028648391366005, 0.01893463358283043, -0.013606922701001167, 0.006422017235308886, 0.025362905114889145, -0.037494078278541565, 0.004486657679080963, -0.017834072932600975, 0.0059655350632965565, -0.007897768169641495, -0.005462154280394316, -0.007353741675615311, -0.014995129778981209, -0.0163833349943161, 0.0026200830470770597, 0.0035049081780016422, 0.00956736784428358, -0.027413947507739067, -0.0023199303541332483, 0.015532903373241425, 0.01798414997756481, -0.001688359072431922, 0.01024896465241909, 0.01535781379789114, 0.020735550671815872, -0.0019932016730308533, -0.012206210754811764, -0.0049087475053966045, -0.019047191366553307, 0.04082076996564865, 0.03219137713313103, -0.008322984911501408, 0.00522140646353364, 0.002338689984753728, -0.01677103340625763, 0.0009254708420485258, 0.01044281292706728, -0.0004166182188782841, -0.004746164660900831, -0.019584964960813522, -0.00400828942656517, -0.010742966085672379, 0.021736059337854385, 0.013832037337124348, -0.0023105505388230085, -0.058279652148485184, -0.00544652109965682, -0.0006948848022148013, 0.019059697166085243, -0.030065296217799187, -0.026863668113946915, -0.008285465650260448, 0.00800407212227583, 0.006597106344997883, -0.004583582282066345, 0.015045154839754105, 0.002032283926382661, 0.005249545909464359, 0.015707992017269135, 0.05392743647098541, -0.0026419691275805235, 0.01833432912826538, -0.0009278157958760858, 6.937123544048518e-05, 0.00847306102514267, -0.02823936752974987, 0.007816476747393608, -0.014669964089989662, 0.0062594348564744, -0.01028648391366005, -0.01268770545721054, 0.0042083910666406155, -0.02876463532447815, 0.014307279139757156, -0.00350803486071527, -0.0057560536079108715, -0.025225333869457245, -0.01288155373185873, -0.008504326455295086, 0.011912310495972633, 0.004408493172377348, -0.001686795731075108, 0.02408725582063198, -0.010142660699784756, -0.00648454949259758, 0.005293318070471287, -0.015432852320373058, 0.0008574675302952528, -0.016883589327335358, 0.024187305942177773, 0.0013420891482383013, 0.0062594348564744, 0.007347488310188055, -0.010148913599550724, 0.016758525744080544, -1.3568915164796636e-05, -0.005330837331712246, -0.00033943052403628826, -0.015995638445019722, 0.0015453174710273743, -0.005846724845468998, -0.004708645865321159, 0.0038050608709454536, 0.01044281292706728, 0.015808042138814926, 0.004746164660900831, 0.026688579469919205, -0.002777975983917713, 0.007297462783753872, -0.019497420638799667, -0.007334982044994831, 0.007535083685070276, -0.01176848728209734, 0.007879008539021015, -0.0014507381711155176, 0.0284894946962595, 0.00468988623470068, 0.007491311524063349, 0.0019900749903172255, -0.00011158020788570866, -0.018909620121121407, -0.014807533472776413, 0.007234930992126465, 0.024249838665127754, 0.0005631771637126803, 0.009717443957924843, -0.018359340727329254, 0.016358323395252228, -0.018171746283769608, -0.016220752149820328, 0.01575801707804203, 0.007760198321193457, 0.01208114717155695, -0.02638842537999153, 0.02517530880868435, 0.01495761051774025, 0.0039520105347037315, -0.010749218985438347, 0.010899295099079609, -0.0069848038256168365, -0.003933251369744539, 0.0027857923414558172, -0.011061877943575382, -0.00822918675839901, 0.018784556537866592, -0.01112440973520279, 0.005046317353844643, 0.018772050738334656, 0.007253690622746944, -0.0007581982645206153, 0.033041812479496, -0.015845561400055885, 0.02022278867661953, -0.011355777271091938, 0.028264380991458893, 0.007960299961268902, -0.005502799991518259, -0.010067622177302837, 0.008460554294288158, -0.01270646508783102, -0.007266196887940168, -0.014945103786885738, 0.000913746131118387, 0.00609997846186161, -0.0241622943431139, -0.000847306102514267, -0.01983509212732315, -0.0057560536079108715, 0.012643933296203613, -0.004718025680631399, -0.011737221851944923, -0.01687108352780342, -0.007591362576931715, -0.0011873228941112757, 0.00845430139452219, -0.026088273152709007, 0.009579874575138092, -0.039620157331228256, -0.010780485346913338, -0.013456846587359905, -0.03346702829003334, -0.009298481047153473, -0.02921486459672451, -0.002085436135530472, -0.005233912728726864, -0.018109213560819626, 0.007028575986623764, 0.01690860278904438, -0.0138070248067379, -0.009823747910559177, 0.009085873141884804, 0.010092634707689285, 0.02603824809193611, 0.01513269916176796, 0.005565331783145666, 0.018009163439273834, 0.011236967518925667, 0.004233404062688351, -0.02304922789335251, -0.01792161911725998, -0.006409510970115662, -0.004696139134466648, 0.010080128908157349, -0.008373009972274303, -0.037669166922569275, -0.015695486217737198, -0.002024467568844557, -0.01907220296561718, 0.019685015082359314, 0.008485567755997181, -0.00377379497513175, 0.00010825820208992809, 0.004836835898458958, 0.023762090131640434, 0.014507381245493889, 0.01226874254643917, 0.012012361548841, 0.0002983940066769719, -0.0018087327480316162, 0.004214644432067871, 0.017321312800049782, 0.02733890898525715, 0.007003563456237316, 0.004733658395707607, 0.010449066758155823, 0.011737221851944923, -0.009404784999787807, 0.005074456799775362, 0.012762743979692459, -0.02367454580962658, -0.01004260964691639, -0.00798531249165535, -0.0015445358585566282, -0.005246419459581375, -0.006840980611741543, -0.025337891653180122, 0.004220897331833839, -0.0014796591131016612, -0.001038809772580862, -0.009561114944517612, 0.01593310572206974, -0.017346326261758804, 0.005155748222023249, -0.013394314795732498, -0.014682469889521599, 0.010855522938072681, -0.011261980049312115, 0.01288155373185873, 0.032266415655612946, 0.0024262345395982265, -0.006472042761743069, -0.0024512470699846745, -0.005130735691636801, 0.027589036151766777, -0.027513999491930008, 0.015908094123005867, 0.03744405135512352, -0.004267796408385038, 0.017971644178032875, -0.0204353965818882, 0.019947649911046028, 0.0021714172326028347, -0.027038756757974625, -0.006325093097984791, 0.0032579076942056417, -0.0031359705608338118, -0.009817495010793209, -0.0017149350605905056, -0.003495528595522046, 0.014332291670143604, -0.011418309062719345, -0.007341234944760799, 0.029189851135015488, -0.013606922701001167, 0.001683669164776802, -0.024324875324964523, 0.010205192491412163, -0.025112777948379517, 0.0048337094485759735, -0.00936101283878088, 0.0075475899502635, -0.003064058953896165, 0.023174291476607323, 0.0003728459414560348, 0.0013319277204573154, -0.013994620181620121, 0.008097870275378227, 0.00889202393591404, -0.001877517788670957, 0.00601556058973074, -0.01687108352780342, -0.011318258941173553, 0.00801657885313034, -0.027113795280456543, 0.011724715121090412, 0.01046157255768776, -0.0049243806861341, 0.023074239492416382, 0.01774652861058712, 0.0016414601122960448, -0.0006319621461443603, 0.006822220981121063, -0.00558721786364913, -0.006634625606238842, 0.018884608522057533, -0.007003563456237316, 0.009035847149789333, 0.014882571995258331, -0.02217378094792366, -0.022686542943120003, 0.009504836052656174, -0.0013452157145366073, 0.01895964704453945, 0.003382971277460456, -0.028814660385251045, 0.018034175038337708, -0.0001606285950401798, 0.012068640440702438, -0.01117443572729826, -0.010467825457453728, -0.01064916793256998, -0.001691485638730228, -0.004339708015322685, -0.022986695170402527, -0.024312369525432587, -0.047924384474754333, -0.010636662133038044, 0.011005599983036518, 0.0012561078183352947, -0.006103105377405882, -0.003068748861551285, 0.032541558146476746, 0.008691922761499882, -0.00956736784428358, -0.005746673792600632, -0.014457356184720993, -0.005837345030158758, 0.01712121069431305, -0.03169112280011177, 0.005856104660779238, 0.003389224410057068, 0.018259290605783463, 0.019084710627794266, 0.012731477618217468, -0.008967062458395958, 0.011793500743806362, 0.003642478259280324, -0.026163311675190926, 0.025813132524490356, 0.002140151336789131, -0.0002210108796134591, 0.0014069658936932683, -0.004352214280515909, 0.01572049781680107, -0.01893463358283043, -0.014319785870611668, 0.006321966648101807, -0.005712281446903944, 0.006947284564375877, 0.02621333673596382, 0.012406311929225922, -0.006647131871432066, 0.005912383086979389, -0.007410020101815462, -1.3593342373496853e-05, -0.0026060133241117, -0.016620956361293793, -0.002080746227875352, 0.020372865721583366, 0.022398896515369415, -0.02123580500483513, -0.003977023530751467, -0.01562044769525528, -0.008760707452893257, -0.0015171781415119767, -0.004642987158149481, 0.010236457921564579, -0.011055625043809414, -0.004605468362569809, 0.01443234272301197, -0.008285465650260448, -0.024024723097682, 0.011780994012951851, -0.005383989308029413, 0.015645461156964302, -0.003239148063585162, -0.0002800252987071872, -0.011149422265589237, 0.005702901631593704, 0.021173272281885147, 0.010674180462956429, -0.007778957951813936, -0.005677888635545969, -0.01340682152658701, 0.008504326455295086, -0.0064657898619771, 0.01862197555601597, -0.004286556039005518, -0.034917764365673065, 0.006740929558873177, -0.01296909898519516, 0.006609613075852394, -0.0040739476680755615, 0.001965062227100134, 0.0076351347379386425, 0.013444340787827969, -0.0020494803320616484, 0.020472915843129158, -0.0061969030648469925, -0.0020619865972548723, 0.007410020101815462, -0.000387892680009827, 0.006916018668562174, 0.01558292843401432, 0.02109823375940323, 0.011512107215821743, 0.0008160402067005634, -0.011718462221324444, -0.02217378094792366, 0.028614558279514313, -0.010355268605053425, 0.010592889972031116, 0.004552316386252642, -0.009292228147387505, 0.000587017391808331, 0.005374609492719173, -0.004014542326331139, 0.009185923263430595, -0.0018681379733607173, 0.009661165066063404, -0.01934734359383583, 0.0009043663740158081, 0.020060205832123756, -0.024274850264191628, -0.005355849862098694, -0.0045022908598184586, 1.8478640413377434e-05, -0.01562044769525528, 0.0023605760652571917, -0.008579364977777004, 0.006747182924300432, -0.005305824335664511, 0.008466808125376701, 0.008929543197154999, -0.031816188246011734, -0.004236530512571335, -0.01469497662037611, -0.0019994548056274652, 0.007272450253367424, -0.0007707046461291611, 0.02868959680199623, -0.01208114717155695, -0.00013522505469154567, 0.011824766173958778, 0.010830510407686234, -0.015107686631381512, 0.02956504188477993, -0.0017524540890008211, -0.007378754206001759, -0.019547445699572563, 0.021323349326848984, -0.008691922761499882, -0.0040864539332687855, -0.021673526614904404, 0.003307932987809181, 0.01614571548998356, -0.015070167370140553, 0.03729397431015968, -0.01443234272301197, -0.015007635578513145, -0.00803533848375082, -0.0021651641000062227, 0.013957100920379162, 0.0024918927811086178, -0.0027138807345181704, -0.006547081284224987, 0.016833564266562462, -0.018659492954611778, 0.012331274338066578, 0.00142259884160012, -0.00556845823302865, -0.001754017430357635, 0.005358976777642965, -0.015870574861764908, -0.013081655837595463, -0.003764415392652154, 0.008335490711033344, -0.016183234751224518, -0.01837184652686119, -0.02071053721010685, -0.0037425290793180466, 0.00022179253573995084, 0.015920599922537804, 0.005790445953607559, 0.004127099644392729, 0.01603315770626068, -0.014945103786885738, -0.003961390350013971, -0.008773213252425194, 0.014795027673244476, -0.009248455055058002, 0.032166365534067154, 0.026088273152709007, 0.028564533218741417, -0.01425725407898426, -0.0012740857200697064, -0.013556897640228271, 0.002527848584577441, 0.0015171781415119767, 0.008010325953364372, 0.012506362982094288, -0.010142660699784756, 0.017208755016326904, 0.017071185633540154, -0.0038707193452864885, 0.0241622943431139, 0.010486585088074207, 0.0021229551639407873, 0.0014100924599915743, 0.006206282880157232, 0.00028334729722701013, 0.0066033597104251385, 0.015195230953395367, 0.01133076474070549, -0.011161928996443748, -0.00956736784428358, -0.0012670508585870266, -0.021598489955067635, -0.0007472552242688835, 0.01443234272301197, -0.02708878181874752, 0.013569404371082783, -0.011418309062719345, 0.00977997574955225, 0.009017087519168854, 0.011080637574195862, 0.013256744481623173, 0.010111394338309765, -0.0032297682482749224, 0.02036035992205143, 0.002357449382543564, 0.022411402314901352, -0.01677103340625763, -0.016195740550756454, -0.004383480176329613, -0.013344289734959602, -0.0047993166372179985, 0.001891587395220995, 0.0014765325468033552, -0.02733890898525715, 0.003930124454200268, 0.012844034470617771, -0.022949175909161568, 0.008823239244520664, 0.016058169305324554, -0.016433361917734146, -0.00915465783327818, 0.007535083685070276, -0.01962248422205448, 0.01066792756319046, 0.012249982915818691, -0.003889478975906968, 0.004302188754081726, -0.0009598633623681962, -0.012856541201472282, -0.010011343285441399, 0.040770743042230606, -0.016721008345484734, -0.002346506342291832, 0.007184905465692282, -0.003648731391876936, -0.018434379249811172, 0.018084201961755753, 0.014770015142858028, -0.015345307067036629, 0.00478368392214179, 0.00864814966917038, -0.008179161697626114, -0.006803461350500584, -0.023662038147449493, -0.012606414034962654, 0.0008121319697238505, 0.023386899381875992, -0.02176107093691826, 0.0015812732744961977, -0.028464483097195625, -0.02486264891922474, 0.019685015082359314, -0.011261980049312115, 0.002363702515140176, 0.016883589327335358, -0.0025747474282979965, -0.006565840449184179, -0.005318331066519022, 0.013169200159609318, 0.01562044769525528, 0.012794009409844875, 0.0201102327555418, 0.015470371581614017, 0.019059697166085243, 0.021886134520173073, 0.009110885672271252, 0.015170218423008919, 0.026713591068983078, -0.0036080856807529926, 0.02523784153163433, -0.021986186504364014, 0.009855014272034168, -0.0069222720339894295, 0.01669599488377571, -0.014845052734017372, -0.005233912728726864, 0.0033329457510262728, 0.003495528595522046, -0.0020541702397167683, -0.002989020897075534, 0.0004353777621872723, 0.010180179961025715, 0.007172399200499058, -0.003307932987809181, 0.00953610148280859, -0.04134603589773178, 0.01930982433259487, 0.006809714715927839, -0.029364939779043198, 0.002537228399887681, 0.009611140005290508, -0.0032923000399023294, 0.00480244355276227, -0.02419981174170971, -0.003304806537926197, 0.008060351014137268, 0.0005952247302047908, 0.04599840193986893, -0.002216752851381898, -0.004170872271060944, -0.013356795534491539, 0.014970116317272186, 0.008322984911501408, -0.012143678963184357, 0.003429870121181011, 0.0049212537705898285, 0.014582419767975807, 0.030565550550818443, -0.015245256945490837, -0.007203665096312761, 0.0033923510927706957, 0.013882063329219818, -0.006350106094032526, -0.00896080955862999, 0.0050306846387684345, -0.003776921657845378, 0.0017321312334388494, 0.007553843315690756, -0.002404348226264119, -0.014895078726112843, 0.008804479613900185, -0.02823936752974987, 0.010761725716292858, -0.00939853210002184, -0.03046550042927265, -0.00300778029486537, 0.009667418897151947, 0.001818112563341856, 0.01270646508783102, 0.011512107215821743, 0.007685160264372826, 0.008754454553127289, 0.0011982659343630075, 0.01607067696750164, 0.005887370556592941, -0.01112440973520279, 0.009411037899553776, -0.005262052174657583, -0.023474443703889847, -0.003826947184279561, -0.010936814360320568, -0.001880644354969263, 0.014007126912474632, -0.028964737430214882, 0.009861267171800137, 0.007134879939258099, 0.005837345030158758, -0.01535781379789114, 0.024024723097682, 0.005677888635545969, 0.008560605347156525, 0.008529339917004108, 0.02123580500483513, 0.011587145738303661, -0.011812260374426842, -0.02256147935986519, 0.004449138883501291, 0.013606922701001167, -0.010048862546682358, 0.018209265545010567, -0.015057661570608616, -0.011249473318457603, -0.010905548930168152, -0.012700212188065052, 0.014619938097894192, 0.009654912166297436, -0.009836254641413689, 0.0021307715214788914, -0.013656948693096638, 0.011130663566291332, -0.015032648108899593, -0.010986840352416039, -0.013206719420850277, 0.0032954267226159573, -0.013456846587359905, -0.010298989713191986, -0.0006866775220260024, -0.003170363139361143, -0.027864176779985428, -0.0021729806903749704, 0.020785575732588768, -0.018847089260816574, -0.0018384354189038277, 0.004524176940321922, 0.00043420528527349234, 0.03141598403453827, -0.0011232277611270547, -0.011130663566291332, -0.010599142871797085, -0.01802166923880577, -0.006143751088529825, -0.010030102916061878, 0.004389733541756868, 0.010136406868696213, -0.0010966516565531492, 0.008673163130879402, 0.0002301952481502667, 0.003570566652342677, -0.0010239584371447563, -0.010148913599550724, -0.01962248422205448, -0.015682978555560112, 5.199789029575186e-06, 0.0051057226955890656, -0.01628328487277031, 0.00779146421700716, 0.008360504172742367, -0.0012576711596921086, -0.0022308225743472576, -0.0015531339449808002, -0.0026513489428907633, 0.012844034470617771, -0.010161420330405235, 0.008816986344754696, -0.017946630716323853, -0.00914840493351221, -0.00955486111342907, -0.007091107778251171, 0.008729441091418266, -0.004320948384702206, 0.013456846587359905, 0.002474696608260274, -0.0008543409057892859, 0.015770524740219116, 0.007447539363056421, 0.023787101730704308, 0.02454999089241028, -0.0024543737526983023, 0.0021651641000062227, -0.024762598797678947, 0.006578347180038691, -0.033692143857479095, 0.009598633274435997, -0.012643933296203613, -0.017596453428268433, 0.011587145738303661, -0.028089292347431183, 0.019547445699572563, -0.018171746283769608, -0.027639063075184822, -0.02332436665892601, -0.02701374515891075, 0.017458882182836533, 0.0075475899502635, -0.025262853130698204, 0.003977023530751467, 0.007891515269875526, -0.032716646790504456, -0.03596829995512962, -0.02112324722111225, 0.015557915903627872, -0.016470879316329956, 0.01848440431058407, 0.012231223285198212, -0.009029594250023365, 0.011493347585201263, -0.003930124454200268, 0.005155748222023249, -0.0365435928106308, -0.011449575424194336, -0.003654984524473548, 0.006584600079804659, -0.02384963445365429, -1.8112243196810596e-05, 0.001949429395608604, -0.006171890068799257, 0.0024262345395982265, 0.006565840449184179, 0.003458009334281087, 0.01572049781680107, -0.013619429431855679, 0.02384963445365429, -0.03299178555607796, 0.0019963281229138374, 0.004255290143191814, 0.008122882805764675, -0.029515016824007034, 0.003239148063585162, -0.005818585399538279, -0.011956083588302135, 0.006584600079804659, 0.014745001681149006, -0.0014007126446813345, -0.010874282568693161, -0.002016650978475809, 0.018084201961755753, -0.015557915903627872, -0.01340682152658701, 0.020510435104370117, -0.018171746283769608, 0.02423733100295067, 0.009930051863193512, 0.004123973194509745, -0.02018526941537857, -0.016345815733075142, 0.024174800142645836, -0.0015851815696805716, -0.03601832687854767, 0.012737730517983437, 0.0025684942957013845, -0.005024431273341179, -0.00690351240336895, 0.012224970385432243, 0.023561988025903702, -0.011462082155048847, 0.01354439090937376, 3.678629582282156e-05, -0.004152112640440464, 0.01331927627325058, -0.010436560027301311, -0.012124919332563877, 0.006034320220351219, 0.01291907299309969, 0.014369810931384563, -0.00766014726832509, 0.01066792756319046, 0.0009176543680950999, 0.0009239075588993728, 0.009767469950020313, -0.0014014942571520805, -0.02841445617377758, 0.008879518136382103, 0.006891006138175726, 0.016020651906728745, 0.008992074988782406, 0.00703482935205102, -0.004274049773812294, -0.016345815733075142, 0.007703919894993305, -0.0033642116468399763, -0.008529339917004108, 0.013606922701001167, -0.0033923510927706957, -0.0032579076942056417, -0.005677888635545969, 0.016133207827806473, 0.01199360191822052, -0.014857559464871883, -0.0017743402859196067, 0.0066909040324389935, -0.012562641873955727, 0.0002237466542283073, 0.005918636452406645, -0.0009301607497036457, -0.0035987060982733965, 0.007735185790807009, 0.014319785870611668, 0.0044678980484604836, 0.019284812733530998, 0.023662038147449493, -0.009279721416532993, -0.005593470763415098, -0.002990584122017026, -0.003961390350013971, -0.014995129778981209, -0.0026310260873287916, 0.0062719411216676235, -0.022323857992887497, 0.017321312800049782, 0.0043928599916398525, -0.0002810023433994502, 0.007385007571429014, -0.021323349326848984, -0.026088273152709007, 0.030965754762291908, -0.0023105505388230085, -0.0022636516951024532, 0.0038050608709454536, -0.011118156835436821, 0.009967571124434471, -0.02406224235892296, -0.012819021940231323, 0.00688475277274847, 0.006578347180038691, 0.015170218423008919, 0.023974698036909103, -0.012856541201472282, -0.010036356747150421, -0.030315423384308815, -0.009298481047153473, 0.001105249859392643, -0.0066033597104251385, 0.00036170746898278594, -0.00400828942656517, 0.002402785001322627, 0.0080540981143713, 0.018609467893838882, 0.0008902967092581093, -0.0196975227445364, -0.013556897640228271, 0.011049372144043446, -0.01225623581558466, -0.0012623610673472285, 0.012281248345971107, -0.0045898351818323135, 0.015607940964400768, -0.0001719624997349456, 0.0023183671291917562, 0.0046023414470255375, -0.010642915032804012, 0.023549482226371765, 0.0022464555222541094, -0.012906566262245178, 0.004592961631715298, 0.0028545772656798363, 0.00916716456413269, 0.00041427326505072415, 0.004752418026328087, -0.023236822336912155, 0.002802988514304161, 0.012944085523486137, -0.010874282568693161, 0.010555370710790157, -0.01642085425555706, 0.0034079840406775475, -0.0060624596662819386, -0.004696139134466648, -0.0015460990834981203, -0.0001622896088520065, 0.007904021069407463, -0.013131680898368359, 0.011774741113185883, 0.00598742114380002, 8.060741674853489e-05, 0.0018962773028761148, 0.003836326766759157, 0.017371337860822678, -0.0014014942571520805, -0.024412421509623528, 0.008904530666768551, 0.0009668982238508761, 0.0021698540076613426, 0.024850143119692802, -0.014945103786885738, 0.023136772215366364, -0.006228168960660696, -0.002279284643009305, 0.010449066758155823, -0.022636517882347107, 0.0032891735900193453, 0.017934124916791916, 0.010868029668927193, -0.0029092926997691393, 0.0018759544473141432, -0.0006280539091676474, 0.009192177094519138, 0.008448048494756222, 0.007309969048947096, 0.013919582590460777, -0.009010834619402885, -0.017446376383304596, -0.024137280881404877, -0.013269251212477684, 0.005624736659228802, 0.02701374515891075, 0.026413438841700554, -0.019159749150276184, -0.02377459593117237, 0.008329237811267376, -0.015733005478978157, 0.02964008040726185, -0.02893972396850586, 0.004552316386252642, -0.018922127783298492, -0.005887370556592941, 0.0023261834867298603, -0.002918672515079379, 0.025638043880462646, 0.029690105468034744, -0.006597106344997883, 0.008979568257927895, 0.011362031102180481, -0.003320439485833049, 0.0020291574764996767, -0.02071053721010685, 0.00743503263220191, -0.016858577728271484, -0.007841489277780056, 0.005903003271669149, -0.006715917028486729, 0.013081655837595463, 0.001761833904311061, -0.0046648732386529446, -0.0037237696815282106, 0.003705010050907731, -0.016896096989512444, -0.006059332750737667, 0.0021057589910924435, 0.029690105468034744, -0.009192177094519138, 0.013044136576354504, -0.00469926605001092, 0.016608450561761856, -0.005296444986015558, 0.008197921328246593, 0.001633643638342619, 0.004192758351564407, 0.005790445953607559, -0.02339940518140793, 0.0026419691275805235, 0.021598489955067635, 0.008929543197154999, 0.006422017235308886, 0.008060351014137268, 0.012356286868453026, 0.010048862546682358, -0.005749800242483616, 0.005146368406713009, -0.011912310495972633, 0.003898858791217208, 0.005602850578725338, -0.009386025369167328, -0.003076565219089389, -0.011956083588302135, -0.019922636449337006, 0.014494874514639378, -0.03364211693406105, -0.0027639062609523535, 0.0076476410031318665, 0.01848440431058407, -0.0038926054257899523, 0.020960664376616478, 0.0032797937747091055, -0.012762743979692459, 0.00623129541054368, 0.001880644354969263, -0.009923798963427544, 0.01942238211631775, 0.00043928599916398525, -0.022686542943120003, -0.002928052330389619, 0.01903468556702137, -0.0023214935790747404, 0.022111250087618828, -0.017546426504850388, 0.010699193924665451, -0.0186845064163208, -0.034642625600099564, 0.007266196887940168, -0.014682469889521599, -0.015057661570608616, 0.012650186195969582, 0.003717516316100955, 0.03541801869869232, -0.009692431427538395, 0.008691922761499882, 0.014895078726112843, -0.018421873450279236, -0.020472915843129158, 0.0439973846077919, 0.0028874066192656755, -0.003564313519746065, 0.0038144406862556934, 0.005515306256711483, 0.03724395111203194, -0.02555049955844879, -0.011849778704345226, -0.002026030793786049, 0.0010122337844222784, -0.0038644662126898766, -0.011762234382331371, 0.02001018077135086, 0.001358503708615899, 0.019634990021586418, 0.00043342364369891584, -0.010273977182805538, -0.006865993142127991, -0.007603868842124939, 0.002529412042349577, -0.015557915903627872, -0.015995638445019722, 0.011424562893807888, 0.011849778704345226, 0.008141642436385155, -0.0055715846829116344, 0.01778404787182808, 0.00821042712777853, -0.015595435164868832, -0.0038144406862556934, 0.015032648108899593, 0.0245750043541193, 0.014382317662239075, 0.008254199288785458, 0.001691485638730228, 0.003317312803119421, 0.015470371581614017, 0.004370973911136389, -0.013269251212477684, 0.018872102722525597, 0.002480949740856886, -0.033767178654670715, -0.015082674100995064, -0.00010542473319219425, -0.002323057036846876, 0.001176379737444222, 0.023899659514427185, 0.035367995500564575, 0.0010106704430654645, 0.0018368720775470138, 0.010098888538777828, 0.0076351347379386425, 0.018259290605783463, 0.00889202393591404, 0.0059405225329101086, 0.0006276631029322743, -0.018809569999575615, -0.019685015082359314, 0.008304225280880928, -0.01514520589262247, 0.002212062943726778, -0.012056133709847927, 0.0049243806861341, -0.006784702185541391, -0.01340682152658701, -0.005509052891284227, -0.027513999491930008, 0.00545590091496706, -0.017771542072296143, 0.019184760749340057, -0.02555049955844879, -0.0021245183888822794, -0.008516833186149597, 0.009992583654820919, -0.006228168960660696, -0.020698031410574913, 0.014044646173715591, -0.0014499564422294497, 0.009354759939014912, 0.009573620744049549, 0.007234930992126465, -0.025988223031163216, -0.003970770165324211, 0.0036174654960632324, 0.023799609392881393, -0.004555442836135626, -0.013256744481623173, 0.02137337438762188, 0.01829680986702442, 0.005258925724774599, -0.004055188037455082, -0.009411037899553776, -0.02718883380293846, -0.01562044769525528, 0.0057435473427176476, 0.0006984022329561412, -0.0014452665345743299, 0.0016101942164823413, 0.016583437100052834, 0.026488477364182472, -0.00887326430529356, 0.026238350197672844, 0.003642478259280324, 0.004130226559937, -0.015345307067036629, -0.006991057191044092, 0.010836763307452202, -0.001175598124973476, -0.023386899381875992, 4.597065344569273e-05, 0.0010317749110981822, -0.020998183637857437, 0.016721008345484734, 0.0030718755442649126, -0.02468756027519703, 0.007178652565926313, 0.010542863979935646, 0.006375118624418974, -0.021798590198159218, -0.020547954365611076, 0.017834072932600975, -0.005931142717599869, -0.019609976559877396, 0.007891515269875526, -0.014094671234488487, -0.005534065887331963, 0.010555370710790157, 0.009292228147387505, -0.004721152130514383, -0.02611328661441803, -0.02429986372590065, 0.009317240677773952, -0.0027623430360108614, 0.017321312800049782, 0.02081058733165264, 0.024912675842642784, 0.005008798558264971, 0.0031500402837991714, -0.0003695239429362118, -0.02039787732064724, 0.0024950194638222456, -9.61426630965434e-05, 0.0016320804134011269, -0.01667098142206669, 0.02106071636080742, -0.0037581620272248983, 0.013281757943332195, -0.01809670776128769, -0.01376950554549694, 0.015107686631381512, -0.013031630776822567, 0.003592452732846141, 0.012756490148603916, 0.0038582130800932646, 0.00047367849037982523, 0.011624664068222046, 0.020272813737392426, -0.00042443469283171, 0.0010067622642964125, 0.017071185633540154, 0.009930051863193512, -0.0199726615101099, 0.00712862703949213, 0.008460554294288158, 0.007591362576931715, 0.013456846587359905, 0.010993093252182007, 0.0030671856366097927, 0.027463972568511963, -0.00665963813662529, 0.02437490224838257, 0.006453283131122589, 0.022148769348859787, 0.0040458086878061295, -0.007222424726933241, -0.005649749655276537, -0.009930051863193512, -0.006440776865929365, 0.007653894368559122, -0.003185996087267995, -0.019322330132126808, 0.009930051863193512, 0.005912383086979389, 0.004808696452528238, -0.004424125887453556, 0.002271468285471201, -0.017771542072296143, -0.00299840047955513, -0.028089292347431183, 0.020122738555073738, 0.008135389536619186, -0.007153639569878578, -0.016433361917734146, -0.008779467083513737, -0.009242202155292034, 0.01579553633928299, 0.016933616250753403, -0.011049372144043446, -0.03169112280011177, 0.012187451124191284, -0.007516324054449797, -0.025512980297207832, -0.01987261138856411, -0.023249328136444092, -0.00351741467602551, 0.02555049955844879, 0.003254781011492014, -0.011068131774663925, 0.0066783977672457695, 0.009873773902654648, 0.008560605347156525, -0.027839165180921555, -0.026488477364182472, -0.0017977897077798843, 0.0006976205622777343, 0.015495384112000465, -0.009092126041650772, -0.014007126912474632, -0.013569404371082783, -0.002734203590080142, 0.01655842550098896, 0.015770524740219116, 0.016683489084243774, -0.006759689189493656, 0.006428270600736141, -0.0007324038888327777, -0.0005612230161204934, 0.026413438841700554, -0.005174507852643728, -0.004605468362569809, 0.002144841244444251, -0.012300007976591587, 0.02517530880868435, -0.018259290605783463, -0.02176107093691826, 0.0037988077383488417, 0.020272813737392426, -0.02067301794886589, 0.009023341350257397, -0.010799244977533817, -0.024675054475665092, 0.007835236378014088, -0.007672653533518314, -0.014107177965342999, 0.003755035577341914, 0.01837184652686119, 0.0036205921787768602, 0.017458882182836533, 0.003143786918371916, 0.002199556678533554, -0.007347488310188055, 0.026938706636428833, -0.018834583461284637, 0.0034173636231571436, 0.00559659767895937, -0.023199303075671196, 0.0019431761465966702, -0.007172399200499058, -0.022298844531178474, 0.0024434307124465704, -0.008541845716536045, 0.012118665501475334, 0.005899876821786165, 0.0022996074985712767, 0.010824257507920265, 0.01178724691271782, -0.018847089260816574, 0.018922127783298492, -0.013256744481623173, 0.014707483351230621, -0.0050306846387684345, 0.009279721416532993, 0.00338609772734344, -0.0020916892681270838, -0.010355268605053425, 0.011530866846442223, 0.00013434569700621068, -0.005527812521904707, -0.025788120925426483, 0.0037581620272248983, 0.010811750777065754, 0.0031484768260270357, -0.004067694768309593, -0.013031630776822567, 0.023824620991945267, -0.0015453174710273743, -0.030040284618735313, -0.01071795355528593, 0.017871592193841934, 0.011255727149546146, -0.0002993710804730654, 0.010636662133038044, 0.007753944955766201, 0.014882571995258331, 0.014719989150762558, -0.007309969048947096, -0.007191158831119537, -0.002485639648512006, -0.013794518075883389, -0.0077852108515799046, -0.004858721978962421, -0.002262088470160961, -0.01358191017061472, -0.009905039332807064, 0.0005467625451274216, -0.018609467893838882, -0.010455319657921791, -0.0018728278810158372, -0.017909111455082893, -0.000588189868722111, 0.0023824621457606554, 0.015295282006263733, -0.004358467645943165, -0.03001527115702629, 0.032716646790504456, 0.02384963445365429, 0.03171613812446594, -0.00029604905284941196, 0.028714610263705254, -0.00022237877419684082, -0.03539300709962845, -0.025087764486670494, -0.006547081284224987, 0.006046826485544443, 0.001566421939060092, 0.0018900241702795029, -0.01708369143307209, 0.005096342880278826, 0.01532029453665018, -0.004249036777764559, -0.008116629905998707, -0.012262488715350628, -0.02851450815796852, 0.01715872995555401, 0.012831528671085835, 0.017458882182836533, 0.003317312803119421, 0.009836254641413689, -0.0031969391275197268, 0.00849182065576315, 0.011430815793573856, 0.0015765833668410778, 0.006547081284224987, 0.014932597987353802, 0.017771542072296143, 0.003514287993311882, 0.029490003362298012, -0.011305752210319042, 0.003054679138585925, 0.021210791543126106, 0.011680942960083485, 0.0008871701429598033, -0.01830931566655636, 0.007209918461740017, 0.011881045065820217, -0.01443234272301197, 0.003200065577402711, -0.005390242673456669, 0.01864698715507984, -0.013431834056973457, -0.016345815733075142, -0.013606922701001167, -0.011205701157450676, 0.0023136772215366364, 0.008635643869638443, 0.021498437970876694, -0.00037480005994439125, 0.0010802370961755514, -0.0017086818115785718, 0.012068640440702438, -0.01979757286608219, -0.010561623610556126, -0.0029999639373272657, -0.005827965214848518, -0.0019353596726432443, 0.00015701347729191184, -0.015107686631381512, -0.021110741421580315, 0.009786229580640793, 0.020210282877087593, -0.003654984524473548, 0.006112485192716122, -0.01091180182993412, 0.007997819222509861, -0.0026450958102941513, 0.0009371956111863256, 0.025888171046972275, -0.005643496289849281, 0.0016039410838857293, -0.0032203884329646826, 0.0028326911851763725, -0.0111369164660573, -0.014845052734017372, -0.008060351014137268, -0.001683669164776802, -0.005706028081476688, -0.009992583654820919, -0.03001527115702629, 0.003776921657845378, -0.012118665501475334, -0.00558721786364913, 0.012368792667984962, 0.024024723097682, 0.006459536496549845, 0.0102176982909441, 0.002205809811130166, -0.002731077140197158, 0.003514287993311882, 0.0031531667336821556, 0.011624664068222046, 0.0005068985046818852, -0.007816476747393608, -0.001299098483286798, -0.008272958919405937, 0.004855595529079437, 0.015808042138814926, 0.00018192849529441446, 0.014082164503633976, 0.005981168244034052, -0.00016082401270978153, 0.03414237126708031, -0.009404784999787807, -0.010430307127535343, 0.004899367690086365, 0.010742966085672379, 0.0003435341641306877, -0.008516833186149597, 0.0066033597104251385, -0.022148769348859787, 0.027989240363240242, 0.0028326911851763725, 0.017146224156022072, 0.01722126267850399, 0.020247802138328552, -0.012981604784727097, 0.007460045628249645, 0.010755471885204315, -0.016933616250753403, 0.025075258687138557, 0.01047407928854227, 0.00801657885313034, 0.0014163455925881863, 0.004624227527529001, 0.018396859988570213, 0.010223952122032642, 0.014882571995258331, 0.013869556598365307, -0.014282266609370708, -0.0031562934163957834, 0.00894204992800951, -0.006941031664609909, 0.002205809811130166, 0.010680434294044971, 0.006071839481592178, -0.003211008617654443, -0.023449430242180824, 0.004136479459702969, 0.015995638445019722, 0.016058169305324554, 0.004061441402882338, 0.0038144406862556934, 0.011718462221324444, -0.021811097860336304, 0.00509946933016181, 0.015120193362236023, 0.011362031102180481, -0.002419981174170971, 0.004327201750129461, -0.016308298334479332, 0.019822586327791214, -0.008291718550026417, -0.003964517265558243, -0.011093144305050373, 0.009254708886146545, -0.03169112280011177, 0.01425725407898426, -0.003065622178837657, -0.0006128117674961686, 0.006306333467364311, 0.0276140496134758, -0.010861776769161224, -0.011549626477062702, -0.02472507953643799, 0.009386025369167328, 0.0007054370362311602, 0.02244892157614231, 0.0001326846977462992, -0.026438452303409576, 0.0027795392088592052, -0.018809569999575615, -0.009085873141884804, 0.0199726615101099, 0.002468443475663662, 0.010780485346913338, 0.008610631339251995, -0.012537629343569279, 0.00824794638901949, 0.0007324038888327777, 0.017308807000517845, -0.0015797099331393838, -0.01893463358283043, 0.019159749150276184, -0.01655842550098896, 0.02014775015413761, -0.014082164503633976, 0.01002385001629591, -0.007860248908400536, 0.010342761874198914, -0.0058310916647315025, -0.003267287276685238, -0.025638043880462646, 0.022861631587147713, -0.006565840449184179, -0.0006663546664640307, 0.009386025369167328, 0.0014147823676466942, -0.00015867447655182332, 0.02412477508187294, 0.01026772428303957, 0.028639571741223335], "80067795-fb75-46ce-bf5a-61015161aa5e": [-0.014673289842903614, -0.005989396944642067, -0.008874265477061272, 0.03461842238903046, 0.017528871074318886, -0.005238891579210758, -0.006941257044672966, 0.00863996148109436, -0.013121025636792183, -0.018641814589500427, 0.027032827958464622, 0.05626225471496582, 0.0024968022480607033, 0.0029580884147435427, 0.041413236409425735, 0.037664372473955154, -0.027076760306954384, 0.0013573159230872989, 0.017953546717762947, -0.004964316729456186, 0.05558863282203674, -0.0359363816678524, -0.06361354142427444, 0.0027585639618337154, -0.008149387314915657, 0.015346914529800415, -0.011898251250386238, 0.010748697444796562, -0.03942165523767471, -0.03177748620510101, 0.027428215369582176, 0.01360427774488926, 0.0010552833555266261, 0.008530131541192532, 0.02110200747847557, -0.011971471831202507, 0.011524830013513565, -0.02701818384230137, 0.000556929677259177, 0.02499731071293354, -0.0072121708653867245, -0.00011051645560655743, 0.006908307783305645, 0.0008566741016693413, -0.03233395516872406, 0.016767382621765137, -0.02583201974630356, 0.011026933789253235, -0.0359363816678524, -0.00781989749521017, -0.011092831380665302, -5.1254006393719465e-05, 0.006176108028739691, 0.014827052131295204, 0.06244202330708504, -0.00631522573530674, -0.014519527554512024, -0.00532309478148818, 7.064586679916829e-05, -0.02250783145427704, 0.0017728394595906138, -0.008493521250784397, -0.023225387558341026, -0.009225721471011639, 0.010448495857417583, -0.005630618892610073, -0.016371993348002434, 0.005546415690332651, -0.018949339166283607, -0.025334123522043228, -0.008705859072506428, 0.004528657533228397, -0.04501566290855408, 0.015815522521734238, 0.01431451179087162, -0.034999165683984756, 0.019081134349107742, 0.01941794715821743, 0.04038815572857857, -0.02632991597056389, 0.029976272955536842, 0.012967263348400593, 0.049936048686504364, -0.009796837344765663, 0.05397779121994972, 0.0033113749232143164, -0.0027109708171337843, -0.02839471958577633, -0.01343587227165699, -0.04196970909833908, -0.014094851911067963, 0.03417909890413284, -0.012418113648891449, -0.027662519365549088, -0.039919547736644745, 0.041764695197343826, -0.00248948042280972, 0.016811314970254898, -0.02136559970676899, 0.02193671464920044, -0.021307023242115974, -0.010119005106389523, 0.010902459733188152, 0.030518099665641785, 0.030869556590914726, -0.0009976226137951016, -0.011839675717055798, 0.0004695233074016869, -0.014285223558545113, 0.07901903241872787, 0.0031466300133615732, -0.061094775795936584, -0.0043492685072124004, 0.030108068138360977, -0.0917300283908844, -0.03341761231422424, -0.02362077496945858, -0.035379908978939056, 0.0021636513993144035, -0.008669248782098293, 0.005740448832511902, 0.015771590173244476, 0.04021243005990982, -0.0202526543289423, -0.011554117314517498, 0.01865645870566368, 0.0056855338625609875, 0.014651323668658733, -0.002267989795655012, -0.020120859146118164, -0.015844810754060745, 0.000944538158364594, 0.0035951025784015656, -0.004301675595343113, 0.010184903629124165, -0.013677498325705528, 0.0018039579736068845, 0.008508165366947651, -0.012645095586776733, 0.022800711914896965, -0.05213264748454094, 0.0024656837340444326, -0.03145531564950943, -0.02939051203429699, 0.026271339505910873, -0.014373088255524635, -0.04188184440135956, 0.03233395516872406, -0.025597715750336647, 0.010953713208436966, -0.05347989499568939, -0.04773944616317749, -0.026403136551380157, 0.019710827618837357, 0.05913247913122177, 0.0023814807645976543, -0.042643334716558456, 0.03215822950005531, 0.026095611974596977, 0.04609932005405426, 0.03385693207383156, -0.04475206881761551, -0.02564164809882641, 0.05321630463004112, 0.04138394817709923, 0.014395054429769516, 0.031396739184856415, 0.019827978685498238, -0.022610338404774666, 0.023210743442177773, 0.03130887448787689, -0.03933379054069519, 0.034120526164770126, 0.030986707657575607, 0.0032308329828083515, 0.009643075056374073, 0.018671102821826935, 0.03335903584957123, 0.030547387897968292, -0.0032454768661409616, 0.002077617682516575, 6.852935621282086e-05, 0.011246593669056892, 0.01632806286215782, 0.027091404423117638, 0.03658071532845497, 0.011356423608958721, 0.014343800023198128, 0.05424138531088829, 0.001839652773924172, 0.008588707074522972, 0.016152333468198776, 0.0007239628466777503, 0.03280256316065788, -0.0026469032745808363, -0.025099819526076317, -0.034911300987005234, -0.013362651690840721, 0.006058956030756235, 0.03684430941939354, 0.03587780520319939, -0.04782731086015701, -0.014856340363621712, 0.03743007034063339, -0.04079819098114967, 0.0008182335877791047, -0.014219325967133045, 0.012828146107494831, 0.043932005763053894, -0.022917862981557846, 0.03406194970011711, -0.04861808568239212, 0.030547387897968292, -0.03830870985984802, -0.030225221067667007, -0.001864364487119019, -0.00854477472603321, 0.026124900206923485, -0.019505809992551804, -0.055178601294755936, 0.00012115623394493014, -0.0068607148714363575, 0.012557231821119785, -0.016562366858124733, -0.04697795957326889, 0.006846070755273104, -0.01315031386911869, 0.02545127458870411, -0.022346746176481247, 0.0021581598557531834, 0.057550929486751556, -0.01547870971262455, -0.0023814807645976543, -0.023532912135124207, -0.011063543148338795, 0.04208686202764511, 0.022917862981557846, 0.007666135206818581, -0.02671065926551819, -0.01899327151477337, -0.008537453599274158, 0.04844236001372337, -0.00015044423344079405, 0.006589801050722599, 0.0107047650963068, 0.012923331931233406, 0.0061578028835356236, 0.07819896936416626, 0.024645855650305748, -0.02098485454916954, -0.03596566990017891, -0.0007408949895761907, -0.01397037785500288, -0.009262330830097198, -0.037664372473955154, 0.0359363816678524, 0.017909614369273186, -0.03461842238903046, 0.008969451300799847, -0.012484012171626091, 0.04483993351459503, 0.03942165523767471, 0.007527017034590244, -0.0037452036049216986, 0.019447235390543938, -0.011803065426647663, 0.012213097885251045, -0.003049613442271948, 0.03532133251428604, 0.03221680596470833, 0.004327302798628807, -0.006875358987599611, -0.0301959328353405, 0.01574230194091797, 0.004316319711506367, -0.006344513967633247, 0.024909447878599167, -0.013018517754971981, 0.03218751773238182, -0.02392829954624176, -0.04150110110640526, -0.01306977216154337, -0.01542013417929411, -0.01249865535646677, 0.04182326793670654, 0.005147366784512997, -0.01341390609741211, -0.020164791494607925, -0.03596566990017891, -0.016064470633864403, -0.003249137895181775, -0.0017106024315580726, 0.019930487498641014, 0.031894635409116745, -0.00035328653757460415, 0.006340852938592434, -0.024367619305849075, 0.02870224416255951, -0.0030807319562882185, 0.06589800864458084, -0.0030459524132311344, -0.03382764384150505, -0.00465313158929348, 0.011356423608958721, 0.03959738090634346, -0.030781691893935204, 0.017894970253109932, -0.0045213354751467705, -0.006875358987599611, 0.015171186067163944, 0.045689284801483154, -0.03956809267401695, -0.01001649722456932, 0.00231192191131413, 0.002083109226077795, 0.025509851053357124, -0.042174726724624634, -0.017030974850058556, -0.010309377685189247, -0.011920217424631119, 0.007420848123729229, -0.0018835847731679678, -0.03127958998084068, -0.020164791494607925, 0.02575879916548729, -0.04401987046003342, 8.31161523819901e-05, 0.012432757765054703, -0.022463899105787277, -0.041296087205410004, -0.06355497241020203, 0.01077798567712307, -0.026696015149354935, 0.0024382262490689754, -0.03561421111226082, -0.02411867119371891, -0.005238891579210758, -0.04000741243362427, 0.01754351519048214, -0.021087363362312317, -0.021541327238082886, -0.03535062074661255, 0.0034541538916528225, -0.004565267823636532, 0.032509684562683105, -0.0021856173407286406, -0.0004322268650867045, 0.0071938661858439445, -0.009547889232635498, 0.0179681908339262, 0.0010955544421449304, 0.0026249373331665993, 0.034384116530418396, 0.02117522619664669, 0.018202494829893112, -0.025539139285683632, -0.016811314970254898, 0.008171353489160538, -0.021878138184547424, -0.018773609772324562, -0.0016163317486643791, -0.039655957370996475, -0.0152883380651474, -0.009569855406880379, -0.05148831009864807, 0.013274787925183773, 0.014556137844920158, 0.006190751679241657, -0.02217101864516735, -0.0034816113766282797, 0.0035969330929219723, -0.012235064059495926, -0.005074146669358015, -0.007505050860345364, -0.015171186067163944, -0.004180862568318844, 0.02739892713725567, 0.02129237912595272, -0.041296087205410004, 0.012322927825152874, -0.025011954829096794, 0.008881587535142899, 0.016459858044981956, 0.04850093647837639, 0.0062859379686415195, 0.011224627494812012, 0.011319813318550587, -0.04659721627831459, -0.004140591714531183, -0.011495541781187057, -0.013794650323688984, 0.0076734572649002075, -0.014995458535850048, -0.005011909641325474, -0.047417279332876205, -0.033007580786943436, -0.029302647337317467, -0.04571857303380966, 0.001256638439372182, -0.017821749672293663, 0.004605538677424192, 0.02839471958577633, -0.03280256316065788, 0.0013618922093883157, 0.043404821306467056, -0.01347248163074255, -0.00579902483150363, -0.011078187264502048, 0.0063042426481842995, 0.0038037796039134264, 0.021028786897659302, 0.029258716851472855, -0.03810369223356247, -0.00449204770848155, 0.045425694435834885, 0.021585259586572647, -0.022829998284578323, 0.03353476524353027, 0.009972565807402134, -0.021394886076450348, 0.024016164243221283, 0.032011788338422775, 0.020735906437039375, 0.013567667454481125, 0.02836543135344982, 0.016577010974287987, 0.007995625026524067, -0.0017765004886314273, -0.013084415346384048, 0.007797930855304003, 0.008024913258850574, 0.022332103922963142, 0.007278068922460079, -0.006436038762331009, -0.013875192031264305, -0.0010983000975102186, 0.006871697958558798, 0.011722523719072342, 0.00545489089563489, 0.0036390344612300396, -0.0301959328353405, 0.009935955516994, -0.012557231821119785, 0.007025459781289101, -0.024836227297782898, -0.0250412430614233, -0.04384414106607437, 0.01049242727458477, -0.023108234629034996, -0.0026084629353135824, -0.015244405716657639, -0.02362077496945858, -0.03306615725159645, -0.00684240972623229, 0.04952601343393326, -0.023445047438144684, 0.023942943662405014, -0.02397223189473152, 0.010748697444796562, -0.05837099254131317, -0.03643427789211273, 0.008574062958359718, 0.03781081363558769, 0.0024437177926301956, 0.043814852833747864, -0.01008971780538559, -0.02186349593102932, -0.007054748013615608, 0.013845903798937798, -0.010477783158421516, 0.00016577467613387853, -0.0382208451628685, -0.008749791420996189, 0.023225387558341026, 0.006919290870428085, -0.00962843094021082, -0.034999165683984756, -0.01666487380862236, 0.018744323402643204, -0.028570447117090225, 0.011026933789253235, 0.010206869803369045, 0.02056017890572548, -0.010367953218519688, -4.684936720877886e-05, 0.010536359623074532, -0.020779838785529137, -0.022405322641134262, -0.03912877291440964, -0.011685913428664207, -0.005927159916609526, 0.009408771060407162, 0.02205386757850647, 0.02167312242090702, 0.018099986016750336, -0.0002818970533553511, -0.02671065926551819, -0.03485272452235222, 0.005971091799438, -0.030166644603013992, 0.017367785796523094, -0.025099819526076317, -0.023723283782601357, -0.02385507896542549, -0.0029233088716864586, 0.0035658145789057016, -0.0044700815342366695, 0.02583201974630356, -0.023986876010894775, -0.03901161998510361, -0.06062616780400276, 0.03874802961945534, -0.028350787237286568, 0.034003373235464096, 0.024792294949293137, 0.010367953218519688, -0.017528871074318886, -0.008376369252800941, 0.026739947497844696, -0.010756019502878189, -0.004960655700415373, 0.0003169053525198251, -0.010463139042258263, -0.004243099596351385, -0.028951192274689674, -0.012718316167593002, -0.020311230793595314, -0.02720855548977852, 0.013736073859035969, -0.054944295436143875, -0.022961795330047607, 0.014548815786838531, -0.03781081363558769, -0.009408771060407162, -0.0031246638391166925, -0.017821749672293663, 0.008925518952310085, 0.013391939923167229, -0.0007633186178281903, 0.011429643258452415, -0.054065655916929245, 0.03207036480307579, -0.01590338535606861, -0.003902626456692815, 0.020311230793595314, 0.010236157104372978, -0.03825013339519501, 0.0056855338625609875, -0.0029800543561577797, 0.009159822948276997, -0.003091715043410659, 0.0017938902601599693, 0.019081134349107742, -0.005919837858527899, -0.028497228398919106, -0.03971453383564949, 0.021804919466376305, 0.0029763933271169662, 0.0075123729184269905, -0.013465159572660923, -0.0011303338687866926, 0.009430737234652042, 0.008925518952310085, 0.015800878405570984, 0.02250783145427704, 0.008588707074522972, -0.021614547818899155, -0.012235064059495926, -0.01946187950670719, 0.006794816814363003, 0.00483618164435029, 0.018700391054153442, 0.03330045938491821, 0.008508165366947651, 0.01887611858546734, 0.018788253888487816, -0.0004960655933246017, 0.023723283782601357, -0.029097631573677063, -0.0032180193811655045, 0.021585259586572647, 0.00515102781355381, -0.016723450273275375, 0.007900439202785492, 0.00500824861228466, 0.01522976253181696, -0.02162919007241726, 0.002678021788597107, 0.002440056763589382, 0.014585426077246666, -0.001434196950867772, 0.02996162883937359, -0.0265642199665308, 0.008098132908344269, -0.004363912623375654, 0.04650935158133507, 0.018480731174349785, 0.002181956311687827, 0.00416621845215559, 0.024601923301815987, 0.007497729267925024, 0.0393630787730217, 0.0070840357802808285, 0.00010696985555114225, -0.018700391054153442, 0.012857433408498764, 0.004012456629425287, 0.015625150874257088, 0.009577177464962006, 0.021995291113853455, 0.02931729145348072, -0.01590338535606861, 0.004675097763538361, -0.009167145006358624, 0.03072311542928219, -0.004891096614301205, 0.0112758819013834, 0.0013033162103965878, -0.005191298667341471, 0.013963055796921253, -0.005447568837553263, -0.025173040106892586, 0.03734220564365387, 0.021585259586572647, 0.006966883782297373, 0.016386637464165688, -0.0028940208721905947, -0.009276974946260452, 0.00846423301845789, 0.002546225907281041, -0.026124900206923485, -0.014395054429769516, -0.0179681908339262, 0.00248948042280972, 0.03622926026582718, -0.006355497054755688, -0.016386637464165688, 0.031015995889902115, -0.011473575606942177, -0.01872967928647995, -0.016723450273275375, -0.006501936819404364, 0.006018684711307287, 0.05304057523608208, -0.0017060262616723776, 0.011078187264502048, -0.009950599633157253, 0.013999666087329388, 0.01975475810468197, 0.010821917094290257, 0.010887815617024899, 0.015566574409604073, -0.006857053842395544, 0.031718909740448, 0.016913821920752525, -0.001362807466648519, -0.009203755296766758, 0.026198118925094604, -0.0030532744713127613, 0.019579030573368073, 0.011773777194321156, -0.00047821819316595793, -0.007578270975500345, 0.007629524916410446, 0.017894970253109932, -0.0010259953560307622, 0.019271505996584892, 0.01953509822487831, 0.007307357154786587, 0.024645855650305748, -0.01815856248140335, -0.04648006334900856, 0.015361557714641094, -0.004312658682465553, 0.007812575437128544, 0.014146106317639351, -0.009255009703338146, -0.00249863276258111, -0.0030752404127269983, -0.01444630790501833, 0.013457837514579296, -0.04437132552266121, -0.0033827645238488913, 0.02545127458870411, -0.008947485126554966, -0.006871697958558798, -0.021087363362312317, -0.006205395795404911, 0.004345607478171587, -0.018334290012717247, 0.00016600349044892937, -0.010097038932144642, -0.013186924159526825, 0.005912515800446272, -0.011707879602909088, -0.014797763898968697, -0.01761673390865326, -0.021717054769396782, -0.0014891119208186865, 0.005187637638300657, -0.01975475810468197, -0.046187181025743484, -0.002240532310679555, -0.022229595109820366, 0.026578864082694054, 0.012469368055462837, -0.01014829333871603, -0.03558492660522461, -0.0031685959547758102, 0.0029580884147435427, 0.003342493437230587, 0.0129965515807271, 0.0016016877489164472, 0.019974417984485626, 0.017250634729862213, 0.0363171249628067, -0.011502863839268684, 0.02017943561077118, 0.003770830575376749, 0.0004557945649139583, 0.012710994109511375, 0.004228455480188131, -0.008039557375013828, -0.014863662421703339, 0.0029507663566619158, 0.027428215369582176, -0.006121193058788776, -0.00566722871735692, 0.011136763729155064, 0.003042291384190321, -0.008881587535142899, -0.014190037734806538, 0.01228631753474474, 0.003844050457701087, -0.0042138113640248775, -0.022024579346179962, -0.02404545061290264, 0.007043764926493168, 0.023781858384609222, -0.02568558044731617, -0.0012383334105834365, -0.021233802661299706, 0.028482584282755852, -0.005546415690332651, -0.02400152012705803, -0.004499369766563177, 0.030225221067667007, 0.016298774629831314, -0.03204107657074928, 0.0006708783330395818, 0.022873930633068085, -0.016825959086418152, 0.031133148819208145, 0.03043023683130741, -0.021233802661299706, 0.009818803519010544, 0.026476355269551277, 0.0033223580103367567, -0.011048899963498116, 0.05137116089463234, -0.0038769994862377644, 0.03195321187376976, 0.003128324868157506, -0.00631522573530674, -0.006538547109812498, 0.008229929022490978, -0.012030047364532948, 0.008032235316932201, 0.04308265447616577, -0.028467940166592598, 0.012725637294352055, -0.0018506357446312904, 0.005451229866594076, 0.04097391664981842, -0.028101839125156403, 6.063532055122778e-05, -0.014819730073213577, 0.0035822889767587185, -0.0012950788950547576, -0.027164623141288757, -0.04607003182172775, -0.011890929192304611, 0.011041577905416489, 0.03810369223356247, 0.007215831894427538, -0.02029658667743206, 0.03851372376084328, -0.019959773868322372, -0.011034255847334862, -0.01093174796551466, 0.030635252594947815, -0.014197359792888165, 0.013582311570644379, 0.002354023279622197, -0.012981907464563847, -0.028292212635278702, -0.007124307099729776, 0.0053523825481534, -0.01827571541070938, -0.005363365635275841, 0.011202661320567131, -0.0013326042098924518, 0.033271171152591705, 0.012505977414548397, 0.030137356370687485, -0.02060411125421524, -0.017338497564196587, -0.014233970083296299, -0.03693217411637306, 0.01263045147061348, 0.0010214191861450672, -0.0519862063229084, -0.008376369252800941, 0.026930319145321846, -0.02786753512918949, -0.01761673390865326, 0.007446474861353636, 0.010023819282650948, 0.004378556739538908, 0.0189200509339571, -0.004415166564285755, -0.031513892114162445, 0.009423415176570415, 0.018085341900587082, -0.006626410875469446, 0.011480897665023804, 0.01785103790462017, 0.023327894508838654, 0.02886332757771015, -0.0005834719631820917, -0.0275160800665617, 0.013794650323688984, -0.03371049091219902, 0.049672454595565796, -0.03385693207383156, 0.014702578075230122, 0.0008241827599704266, -0.016869889572262764, -0.020501602441072464, 0.018715035170316696, -0.029141563922166824, -0.03420838713645935, -0.0256123598664999, 0.0037159156054258347, 0.04478135704994202, -0.0025224294513463974, 0.01991584338247776, 0.01381661556661129, 0.020955566316843033, 0.04185255616903305, 0.04645077511668205, -5.791817238787189e-05, 0.006377462763339281, 0.00021714309696108103, -0.014644001610577106, 0.012798857875168324, 0.00681312195956707, 0.022068511694669724, -0.01708954945206642, -0.004232116509228945, 0.012901365756988525, 0.03198250010609627, -0.038894470781087875, 0.0062090568244457245, -0.011795743368566036, -0.02621276304125786, 0.014373088255524635, -0.02243461087346077, 0.03444269299507141, -0.017016330733895302, 0.00014586799079552293, 0.016269486397504807, 0.016386637464165688, 0.004151574801653624, 0.00548417866230011, -0.007270746864378452, 0.002568191848695278, -0.024440839886665344, -0.002430904423817992, 0.020633399486541748, 0.03092813305556774, 0.008610673248767853, -0.000683691818267107, -0.0026157847605645657, -0.021951358765363693, -0.0035401873756200075, 0.010821917094290257, 0.009818803519010544, -0.024719076231122017, -0.015332270413637161, 0.025290191173553467, -0.014299867674708366, 0.0035896110348403454, 0.014116818085312843, -0.006633732933551073, -0.018070697784423828, 0.005216925870627165, -0.010829239152371883, 0.036522142589092255, 0.014892949722707272, -0.00801026914268732, -0.0112758819013834, -0.051048990339040756, -0.04024171829223633, 0.027779672294855118, -0.03921663761138916, 0.012330249883234501, 0.006556851789355278, 0.004283370450139046, 0.008002947084605694, 0.009145178832113743, -0.00024482939625158906, -0.023767216131091118, -0.013897158205509186, 0.04009527713060379, 0.02392829954624176, 0.003485272405669093, -0.007186544127762318, 0.0066813258454203606, 0.0033589680679142475, -0.008149387314915657, 0.015024745836853981, 0.002430904423817992, 0.03084026835858822, -0.0022075832821428776, -0.004151574801653624, 0.008801044896245003, 0.0053011286072432995, -0.013465159572660923, 0.013033161871135235, -0.0028317838441580534, -0.024704432114958763, 0.017397074028849602, 0.00019243134011048824, 0.02523161470890045, 0.005308450665324926, -0.0233132503926754, -0.03658071532845497, -0.03218751773238182, 0.020194077864289284, -0.0290536992251873, -0.020853059366345406, 0.022346746176481247, -0.02556842751801014, -0.016694162040948868, -0.023181455209851265, 0.017602089792490005, 0.022419966757297516, -0.011956827715039253, 0.012491333298385143, -0.007241459097713232, 0.02786753512918949, -0.0030148338992148638, -0.02969803661108017, 0.014673289842903614, -0.007893117144703865, -0.026271339505910873, -0.03699075058102608, 0.005938143003731966, 0.005912515800446272, -0.008478877134621143, -7.836829172447324e-05, 0.015698369592428207, 8.237251313403249e-05, -0.019857266917824745, 0.02266891486942768, 0.005670889746397734, -0.004828859586268663, -0.015405490063130856, -0.0031045284122228622, -0.012989229522645473, 0.0013033162103965878, -0.0076441690325737, -0.0059418040327727795, 0.023020371794700623, -0.02010621502995491, -0.005806346889585257, -0.011532151140272617, -0.009357517585158348, -0.002725614933297038, 0.032011788338422775, -0.030400948598980904, -0.02801397629082203, -0.013369973748922348, -0.013999666087329388, -0.025773443281650543, -0.020194077864289284, 0.021350955590605736, -0.039890263229608536, -0.007702745031565428, -0.001696873689070344, -0.018949339166283607, 0.019198287278413773, 0.0033736119512468576, 0.013999666087329388, 0.010001853108406067, -0.004865469876676798, -0.008281183429062366, 0.007871150970458984, -0.029170852154493332, 0.008574062958359718, -0.0031319858971983194, -0.02564164809882641, 0.02423582412302494, 0.041266798973083496, 0.016108402982354164, 0.02939051203429699, -0.01083656121045351, 0.01110015343874693, 0.0018735170597210526, -0.02900976873934269, -0.02366470731794834, 0.023035015910863876, -0.002432734938338399, 0.0012648756382986903, 0.010477783158421516, 0.012791535817086697, -0.028980480507016182, 0.0028500889893621206, -0.008303149603307247, -0.03168962150812149, -0.020662687718868256, -0.04750514402985573, -0.010345987044274807, 0.0073842378333210945, 0.008925518952310085, 0.009049993008375168, -0.005022892728447914, -0.0006640139617957175, 0.024631211534142494, -0.005099773872643709, -0.013743395917117596, -0.004898418672382832, -0.006058956030756235, -0.002117888769134879, -0.03634641319513321, 0.005030214786529541, -0.06150480732321739, -0.039040908217430115, 0.014482918195426464, 0.012527943588793278, 0.0008388267597183585, -0.0019000592874363065, -0.005048519466072321, 0.010565647855401039, 0.0025791749358177185, 0.016269486397504807, 0.00250412430614233, -0.006970544811338186, -0.00917446706444025, 0.013611599802970886, 0.014665967784821987, 0.009935955516994, -0.019286150112748146, -0.012403469532728195, -0.0026926659047603607, -0.0034834418911486864, -0.006750884931534529, 0.010192225687205791, 0.039538804441690445, 0.001527552492916584, 0.0077686430886387825, 0.03280256316065788, -0.0156690813601017, 0.005561059806495905, -0.009848091751337051, -0.017763175070285797, 0.006132175680249929, 0.01735314168035984, -0.015390845946967602, -0.018363578245043755, 0.00930626317858696, -0.016679517924785614, 0.008881587535142899, -0.0021380241960287094, -0.008705859072506428, 0.012418113648891449, 0.012864755466580391, -0.007629524916410446, -0.01853930577635765, -0.002791512990370393, 0.027428215369582176, -0.011663947254419327, 0.010316699743270874, -0.014849018305540085, 0.005670889746397734, -0.0018689407734200358, 0.005670889746397734, 0.009730939753353596, 0.007164577953517437, -0.008391013368964195, -0.017792463302612305, 0.014914915896952152, 0.007695422973483801, -0.007398881949484348, 0.007812575437128544, -0.005905193742364645, 0.04694867134094238, 0.005030214786529541, 0.006260310765355825, 0.017074907198548317, 0.0001438086765119806, 0.013574989512562752, 0.03962666913866997, 0.031103860586881638, 0.03321259841322899, -0.03192392364144325, 0.038543011993169785, -0.005279162898659706, -0.018510019406676292, 0.009394126944243908, 0.021277735009789467, 0.04372699186205864, 0.004265065770596266, 0.008515487425029278, -0.0003223968669772148, 0.004433471709489822, -0.02205386757850647, 0.007252442184835672, -0.00515102781355381, 0.012718316167593002, 0.011209983378648758, 0.011231949552893639, -0.009840769693255424, 0.009547889232635498, 0.03672715649008751, 0.011246593669056892, -0.0017298227176070213, 0.004528657533228397, 0.012872077524662018, 0.011568761430680752, -0.013633565977215767, 0.04413702338933945, -0.009665041230618954, 0.006183430086821318, -0.005242552608251572, -0.016123047098517418, -0.0061138710007071495, -0.030137356370687485, 0.007548983208835125, 0.006278615910559893, 0.00565624563023448, -0.00583929568529129, -0.0032894089818000793, -0.005085129756480455, 0.006168785970658064, 0.0018735170597210526, -0.0016538569470867515, -0.018436798825860023, 0.001027825870551169, 0.014534171670675278, -0.01001649722456932, 0.004711707588285208, -0.01604982651770115, 0.017792463302612305, 0.016298774629831314, 0.006410412024706602, 0.002224057912826538, 0.01563979499042034, 0.006047972943633795, -0.03081098012626171, -0.008391013368964195, -0.004451776389032602, -0.00331503595225513, 0.0017234160332009196, 0.017074907198548317, 0.016503790393471718, 0.014006988145411015, -0.0056379409506917, 0.007278068922460079, -0.0020172111690044403, 0.0012090454110875726, 0.01747029460966587, 0.035028453916311264, 0.006311564706265926, 0.015727657824754715, -0.03160175681114197, 0.008251895196735859, -0.01647450216114521, 0.0017893139738589525, -0.004210150800645351, -0.01118069514632225, 0.006015023682266474, -0.006963222753256559, 0.002083109226077795, 0.01785103790462017, -0.013296754099428654, 0.0029031734447926283, -0.0005766075919382274, -0.0013499939814209938, 0.027852891013026237, -0.01922757551074028, 0.02015014737844467, -0.03775223717093468, -0.0037744916044175625, -0.003390086581930518, 0.013296754099428654, 0.005835634656250477, 0.016254842281341553, 0.01647450216114521, 0.026886386796832085, 0.0023412099108099937, -0.007186544127762318, -0.008969451300799847, 0.0020629737991839647, -0.009577177464962006, -0.004217472393065691, 0.011759134009480476, 0.02362077496945858, 0.0059418040327727795, -0.026227407157421112, -0.0028793769888579845, -0.006619088817387819, -0.009086603298783302, 0.02036980725824833, 0.03122101165354252, -0.0056525846011936665, -0.005136383697390556, -0.006542207673192024, 0.00816403143107891, 0.007797930855304003, -0.004008795600384474, 0.005707499571144581, -0.013743395917117596, 0.006908307783305645, 0.015141897834837437, 0.015551930293440819, 0.012037369422614574, 0.04609932005405426, -0.0014406037516891956, 0.006366479676216841, 0.007175561040639877, 0.005088790785521269, 0.03599495813250542, 0.020955566316843033, -0.02744285948574543, -0.010250801220536232, -0.0166209414601326, -0.012967263348400593, 0.008874265477061272, -0.014556137844920158, -0.003036799840629101, 0.01604982651770115, -0.04650935158133507, 0.0005230654496699572, 0.010023819282650948, -0.00124199443962425, 0.01563979499042034, -0.01175181195139885, 0.03461842238903046, -0.010199547745287418, 0.007256103213876486, 0.0031447994988411665, -0.012352216057479382, -0.00299103744328022, 0.014541493728756905, -0.0044700815342366695, 0.01827571541070938, 0.007534339092671871, -0.01547870971262455, -0.015332270413637161, -0.0021069056820124388, 0.0009509449009783566, -0.006377462763339281, -0.06050901487469673, -0.027603942900896072, 0.005330416839569807, 0.007519694976508617, 0.02186349593102932, 0.015595861710608006, -0.01578623428940773, -0.008061523549258709, -0.008910874836146832, 0.025173040106892586, -0.025290191173553467, 0.017894970253109932, 0.01984262280166149, -0.012293639592826366, -0.016957754269242287, -0.008412979543209076, 0.011905573308467865, 0.028262924402952194, 0.014570781961083412, -0.04923313483595848, 0.004060049541294575, 0.039158061146736145, 0.0021050754003226757, 0.02817505970597267, 0.023254675790667534, -0.02419189177453518, 0.006439699791371822, -0.015947317704558372, -0.004422488622367382, 0.01747029460966587, 0.011297847144305706, 0.005037536844611168, 0.01685524545609951, -0.036170683801174164, 0.03127958998084068, 0.00583929568529129, 0.007951692678034306, 0.02575879916548729, -0.010287411510944366, -0.002939783502370119, 0.0083104707300663, 0.0039465585723519325, 0.01079995185136795, 0.009818803519010544, -0.0024437177926301956, -0.03942165523767471, -0.004953333642333746, 0.006527564022690058, 0.002725614933297038, -0.0038879825733602047, -0.02798468805849552, 0.0026578863617032766, -0.017250634729862213, -0.030283795669674873, 0.01090978179126978, -0.010558325797319412, -0.008801044896245003, 0.01975475810468197, 0.01704561896622181, 0.01628413051366806, -0.006106548942625523, 0.009086603298783302, -0.02430904284119606, 0.004415166564285755, -0.009255009703338146, 0.01001649722456932, 9.684490214567631e-05, 0.018597882241010666, -0.0008795553585514426, -0.014724544249475002, 0.01148821972310543, 0.0202526543289423, -0.009145178832113743, 0.005520788952708244, -0.003642695490270853, -0.033886220306158066, -0.010382597334682941, -0.005842956714332104, -0.00017893139738589525, 0.007226814981549978, -0.03494058921933174, 0.007578270975500345, -0.005451229866594076, -0.015127253718674183, -0.015551930293440819, -0.022039223462343216, -0.016811314970254898, 0.008940163068473339, 0.030898844823241234, -0.0006090989336371422, -0.005853939801454544, -0.011480897665023804, -0.04437132552266121, 0.023488979786634445, -0.04079819098114967, -0.004495708737522364, 0.006410412024706602, -0.04448847845196724, -0.011158729903399944, -0.006494614761322737, 0.009291619062423706, 0.010873171500861645, 0.006849731784313917, -0.01412414014339447, 0.02205386757850647, 0.01742636226117611, -0.010045785456895828, -0.008713181130588055, 3.1604729883838445e-05, 0.0013042314676567912, 0.0022844644263386726, -0.03883589431643486, -0.006879020016640425, -0.019871911033988, 0.03297829255461693, -0.0016620942624285817, -0.002632259391248226, 0.011297847144305706, -0.01711883768439293, 0.006798477843403816, 0.018246427178382874, 0.008369047194719315, 0.01915435492992401, 0.02205386757850647, 0.021263090893626213, 0.023342538625001907, -0.006282276939600706, 0.015493353828787804, 0.019769402220845222, 0.013421228155493736, -0.028043264523148537, -0.02278606779873371, -0.016298774629831314, 0.007450135890394449, -0.0036536785773932934, 0.016723450273275375, 0.023913655430078506, 0.004144252743571997, -0.002705479273572564, -0.0035420178901404142, -0.02067732997238636, 0.01509796641767025, -0.025846663862466812, -0.004312658682465553, -0.008844977244734764, -0.0256123598664999, 0.005059502553194761, -0.004565267823636532, 0.0010818256996572018, 0.0054292636923491955, 0.007036442868411541, 0.006388445850461721, -0.01036063116043806, -0.017441006377339363, -0.007278068922460079, -0.027428215369582176, 0.01410217396914959, -0.032392531633377075, 0.02366470731794834, -0.01546406652778387, -3.4779503039317206e-05, 0.003712254576385021, -0.004561606794595718, 0.0011431473540142179, -0.021131295710802078, -0.008625317364931107, 0.017938902601599693, 0.010902459733188152, -0.010821917094290257, -0.03043023683130741, 0.004224794451147318, -0.027047472074627876, 0.004429810680449009, 0.001352739636786282, 0.01230828370898962, -0.012667061761021614, 0.02285928651690483, -0.019125066697597504, 0.009665041230618954, -0.03148460388183594, 0.013252821750938892, 0.00531211169436574, -0.03207036480307579, -0.012139877304434776, 0.0038879825733602047, 0.005037536844611168, 0.014629358425736427, -0.02739892713725567, 0.02003299444913864, -0.005374348722398281, 0.018510019406676292, -0.005059502553194761, -0.01640128158032894, -0.013714107684791088, -0.0002498632820788771, -0.01131249126046896, -0.03417909890413284, -0.0023704979103058577, 0.00995792169123888, -0.03722505271434784, 0.007420848123729229, -0.019857266917824745, -0.016606299206614494, -0.0024803278502076864, 0.019886555150151253, -0.007695422973483801, 0.016957754269242287, 0.030518099665641785, -0.031894635409116745, 0.020809127017855644, -0.028877971693873405, -0.004265065770596266, -0.010331343859434128, -0.01689917780458927, -0.011129441671073437, -0.010748697444796562, -0.02611025609076023, -0.01561050582677126, -0.005304789636284113, 0.012030047364532948, -0.038660164922475815, -0.020691974088549614, 0.0021654819138348103, 0.01708954945206642, -0.003099036868661642, 0.005037536844611168, -0.014988136477768421, 0.014578104019165039, -0.00946002546697855, -0.02988840825855732, -0.004096659366041422, -0.005747770890593529, 0.03933379054069519, 0.026886386796832085, -0.012403469532728195, -0.017060263082385063, 0.013728751800954342, -0.020574823021888733, 0.00582099100574851, -0.0025242597330361605, -0.006615427788347006, 0.014204681850969791, -0.003752525430172682, -0.011188017204403877, -0.009240365587174892, 0.005202281754463911, -0.0038184234872460365, 0.012835468165576458, -0.047417279332876205, -0.03031308390200138, -0.026930319145321846, 0.009298941120505333, -0.019740113988518715, 0.020838415250182152, -0.006663020700216293, 0.008317792788147926, 0.006659360136836767, 0.006791155785322189, -0.002090431284159422, -0.0013005704386159778, -0.019696183502674103, -0.0017234160332009196, 0.03072311542928219, -0.01465864572674036, 0.021087363362312317, -0.028877971693873405, 0.00038783723721280694, 0.01563979499042034, -0.03119172342121601, -0.02269820310175419, -0.025788087397813797, 0.014373088255524635, -0.009892023168504238, -0.003637203946709633, -0.004268726799637079, -0.034384116530418396, 0.009870056994259357, -0.008508165366947651, -0.02613954432308674, -0.00812009908258915, 0.01368481945246458, 0.008559418842196465, -0.004276048392057419, 0.009042670950293541, 0.008105454966425896, 0.004605538677424192, -0.008661927655339241, -0.01259384211152792, -0.00516933249309659, -0.016796670854091644, 0.010031141340732574, -0.00531211169436574, -0.0007729287608526647, -0.0034083914943039417, 0.0034816113766282797, -0.005147366784512997, -0.009635752998292446, 0.006436038762331009, 0.012667061761021614, -0.006952240131795406, -0.011107475496828556, -0.03207036480307579, 0.01345051545649767, 0.006099226884543896, -0.009064637124538422, 0.015522642061114311, 0.004938689526170492, 0.017748530954122543, -0.001813110546208918, 0.01341390609741211, -0.0018909067148342729, 0.009386804886162281, -0.01934472657740116, -0.002471175277605653, -0.0029709020163863897, -0.019330082461237907, 0.006004041060805321, 0.016987042501568794, 0.062090568244457245, 0.00967236328870058, -0.005114417523145676, 0.010580291040241718, -0.004876452498137951, -0.03207036480307579, -0.005784380715340376, 0.019051846116781235, 0.022273527458310127, -0.006776512134820223, -0.012081301771104336, -0.030752403661608696, 0.018627170473337173, -0.0019000592874363065, -0.004089337773621082, 0.009767549112439156, -0.007391559891402721, 0.006443360820412636, -0.042291879653930664, 0.028731532394886017, 0.010668155737221241, 0.007486746180802584, -0.011839675717055798, 0.006190751679241657, 0.014519527554512024, 0.018173206597566605, 0.00982612557709217, -0.007204848807305098, 0.002368667395785451, 0.005744109861552715, 0.005788041744381189, 0.006106548942625523, -0.011166051961481571, -0.004096659366041422, 0.008896231651306152, 0.015346914529800415, 0.009130535647273064, 0.00943805929273367, -0.0073732552118599415, 0.009189111180603504, 0.004894757643342018, 0.00017767293320503086, -0.0001897999900393188, -0.0015852132346481085, 0.0005573873058892787, -0.010821917094290257, -0.004543301649391651, 0.002621276304125786, -0.012608485296368599, -0.022829998284578323, -0.005960108712315559, -0.020047638565301895, 0.007863828912377357, -0.004224794451147318, 0.008061523549258709, -0.017748530954122543, 0.005718482658267021, 0.00013671549095306545, -0.0063811237923800945, 0.0012163674691691995, -0.030049491673707962, -0.013955733738839626, -0.02328396402299404, 0.0008713181014172733, -0.007380576804280281, -0.007215831894427538, -0.009474669583141804, 0.002875715959817171, -0.0037031020037829876, -0.0030514439567923546, -0.0004466420505195856, 0.0050778076983988285, 0.026696015149354935, -0.021307023242115974, -0.023562198504805565, 0.007505050860345364, -0.004550623707473278, 0.023181455209851265, 0.008391013368964195, 0.007076714187860489, 0.006608105730265379, 0.0023412099108099937, -0.010902459733188152, -0.0013564006658270955, -0.004114964511245489, 0.0042028287425637245, 0.0031502910424023867, 0.006146819796413183, 0.0041698794811964035, -0.0077173891477286816, -0.00712796812877059, -0.0021380241960287094, 0.002183786826208234, 0.011861641891300678, 0.005348721519112587, 0.013501769863069057, 0.001480874721892178, -0.007106001954525709, 0.020809127017855644, -0.003620729548856616, -0.00315761286765337, 0.01628413051366806, 0.0035822889767587185, -0.00854477472603321, 0.008105454966425896, -0.0013618922093883157, 0.01590338535606861, 0.0025297512765973806, -0.010858527384698391, -0.004389539826661348, 0.005297467578202486, -0.016796670854091644, -0.004294353537261486, -0.0016758230049163103, -0.019139710813760757, 0.0009303517290391028, 0.00716823898255825, -0.005733126774430275, -0.014190037734806538, -0.004151574801653624, -0.017367785796523094, -0.0044700815342366695, 0.004199167713522911, 0.002840936416760087, -0.007636846974492073, -0.004909401759505272, -0.008456910960376263, -0.0024382262490689754, -0.0022862947080284357, -0.033124733716249466, 0.0037818134296685457, 5.394970685301814e-06, -0.0004413793794810772, 0.029610171914100647, -0.006483631674200296, 0.0014625696931034327, -0.010060429573059082, -0.00283361435867846, 0.028614379465579987, -0.015068678185343742, 0.014548815786838531, 0.030752403661608696, 0.014460952021181583, 0.011327135376632214, -0.0020172111690044403, 0.018261071294546127, -0.0061578028835356236, -0.022346746176481247, -0.014497562311589718, -0.009584499523043633, 0.023459691554307938, -0.03496987745165825, -0.002257006708532572, 0.007307357154786587, 0.0219806469976902, -0.0008772672736085951, -0.02526090294122696, 0.026051679626107216, -0.014951526187360287, -0.020076926797628403, -0.01761673390865326, 0.003629881888628006, -0.00854477472603321, -0.00265605584718287, 0.0013207059819251299, 0.020516246557235718, 0.008405657485127449, 0.03543848544359207, -0.009789515286684036, 0.00854477472603321, -0.0046494705602526665, -0.001695043290965259, 0.0023997859098017216, -0.012769569642841816, 0.0071938661858439445, 0.003113680984824896, -0.006359158083796501, 0.012689027935266495, -0.013391939923167229, -0.0028958513867110014, 0.014892949722707272, -0.003935575485229492, 0.002754902932792902, 0.0049826218746602535, 0.005059502553194761, -0.0016071791760623455, 0.009452703408896923, -0.00695590116083622, -0.000302490167086944, 0.0007857422460801899, -0.008215284906327724, 0.02564164809882641, -0.013399261981248856, -0.012923331931233406, -0.017602089792490005, -0.005923498887568712, 0.019286150112748146, 0.00801026914268732, -0.001546772662550211, -0.009108569473028183, 0.008237251080572605, 0.0089840954169631, -0.0033461544662714005, 0.018480731174349785, -0.0013472482096403837, -0.021966002881526947, -0.005886888597160578, -0.018553949892520905, -0.011590727604925632, -0.014651323668658733, -0.06302778422832489, -0.0328611396253109, 0.01716277003288269, 0.0035365265794098377, -0.02400152012705803, 0.018012123182415962, 0.023532912135124207, -0.024060094729065895, 0.00027732079615816474, -0.022947151213884354, 0.0023283963091671467, 0.0009637583862058818, 0.04038815572857857, -0.008823011070489883, 0.005421941634267569, 0.019813334569334984, 0.003975846339017153, 0.006820444017648697, 0.011773777194321156, -0.0005239807069301605, 0.018334290012717247, -0.005367026664316654, -0.013553024269640446, -0.0028391059022396803, 0.01727992296218872, 0.014087529852986336, 0.002663377905264497, 0.01114408578723669, 0.0014525019796565175, -0.013823937624692917, -0.01412414014339447, 0.017133481800556183, -0.01146625354886055, 0.0005523534491658211, 0.011458931490778923, 0.012073979713022709, -0.0039136093109846115, 0.012000760063529015, -0.022727491334080696, -2.1522679162444547e-05, -0.009262330830097198, 0.010265445336699486, 0.009599143639206886, 0.02416260354220867, 0.011158729903399944, 0.0035749669186770916, 0.009979886934161186, -0.005978413857519627, 0.003069748869165778, -0.005744109861552715, 0.0011998929549008608, 0.003714085090905428, -0.00582099100574851, 0.006069938652217388, 0.0002770919818431139, -0.0009253178723156452, -0.013428550213575363, 0.023269319906830788, -0.01496617030352354, 0.022917862981557846, 0.003873338457196951, 0.0011330796405673027, 0.0017920597456395626, 0.010463139042258263, -0.0008520978735759854, 0.016577010974287987, -0.010858527384698391, 0.005110756494104862, -0.0006278615910559893, 0.013772684149444103, -0.017441006377339363, -0.00518031558021903, 0.0026157847605645657, -0.03107457235455513, -0.020706618204712868, -0.007365933153778315, 0.0020501601975411177, 0.002383311279118061, 0.016840603202581406, 0.0027750383596867323, 0.007570948917418718, -0.007922405377030373, 0.00812009908258915, -0.008515487425029278, -0.0050009265542030334, 0.011993438005447388, -0.012161843478679657, -0.003730559488758445, 0.0069375960156321526, 0.011012289673089981, 0.010485105216503143, -0.010184903629124165, -0.013289432041347027, -0.03166033327579498, 0.005802685860544443, 0.0019842623732984066, 0.007292713038623333, 0.022039223462343216, -0.006974205840379, 0.00024780398234725, 0.020238010212779045, 0.0013216212391853333, 0.02181956358253956, -0.0183489341288805, -0.008976773358881474, -0.025319479405879974, 0.01215452142059803, 0.0060809217393398285, -0.016957754269242287, 0.014885627664625645, -0.018817542120814323, 0.006721596699208021, -0.004466420505195856, 0.01785103790462017, 0.010324021801352501, 0.012542587704956532, -0.006490953732281923, 0.008705859072506428, 0.010324021801352501, -0.02912691980600357, -0.0011101984418928623, -0.002097753342241049, -0.007175561040639877, -0.0029507663566619158, 0.0007884879596531391, 0.006743562873452902, -0.0031795790418982506, -0.008815689012408257, -0.011707879602909088, 0.016987042501568794, -0.017411718145012856, 0.00582831259816885, -0.0060296677984297276, -0.005107095930725336, -0.003607915947213769, 0.028599735349416733, 0.01590338535606861, -0.004631165415048599, -0.00028121061041019857, 0.028643667697906494, 0.012747603468596935, -0.015581218525767326, 0.015874098986387253, 0.010426529683172703, -0.00023704978229943663, 0.004133269656449556, 0.016415925696492195, -0.006527564022690058, -0.022229595109820366, 0.006278615910559893, -0.017572801560163498, 0.013326041400432587, -0.018671102821826935, -0.0021782952826470137, 0.013465159572660923, 0.005451229866594076, 0.01727992296218872, 0.01868574693799019, -0.014907593838870525, 0.0012923331232741475, -0.006999833043664694, -0.0013243668945506215, -0.02105807512998581, -0.026696015149354935, -0.032890427857637405, 0.01621090993285179, -0.008339758962392807, 0.0024363957345485687, -0.004327302798628807, -0.015259049832820892, 0.028189703822135925, 0.015112610533833504, -0.00482519855722785, -0.006703292019665241, 0.012227742001414299, 0.017250634729862213, 0.028687600046396255, -0.0031740874983370304, 0.0051546888425946236, 0.0032326634973287582, 0.004228455480188131, -0.010009175166487694, 0.003170426469296217, -0.010756019502878189, -0.009123213589191437, -0.0037268984597176313, -0.009394126944243908, 0.038894470781087875, 0.009130535647273064, 0.0005239807069301605, 0.023181455209851265, 0.000944538158364594, 0.016913821920752525, 0.015595861710608006, -0.005989396944642067, -0.010067751631140709, 0.013904480263590813, 0.00917446706444025, 0.02029658667743206, 0.00022606678248848766, -0.012454723939299583, -0.006377462763339281, -0.020633399486541748, -0.007215831894427538, 0.0007248781039379537, -0.013882514089345932, 0.006952240131795406, -0.013897158205509186, 0.009921311400830746, 0.00833243690431118, 0.019330082461237907, 0.008581385016441345, 0.02224423922598362, -0.005707499571144581, 0.003055104985833168, -0.0035475094337016344, 0.0219806469976902, -0.023869723081588745, -0.00020455839694477618, 0.03523346781730652, -0.010741375386714935, -0.03520417958498001, -0.010602257214486599, 0.020838415250182152, -0.019871911033988, 0.009848091751337051, 0.008061523549258709, -0.02034051902592182, 0.0193007942289114, 0.028790108859539032, -0.009635752998292446, 0.00631522573530674, 0.006004041060805321, 0.010953713208436966, 0.011305169202387333, 0.011246593669056892, 0.008991417475044727, 0.01632806286215782, 0.005923498887568712, -0.0162401981651783, -0.006132175680249929, 0.02984447591006756, 0.01079995185136795, -0.003953880630433559, -0.03207036480307579, -0.01028008945286274, -0.022419966757297516, 0.019959773868322372, 0.015507997944951057, -0.006015023682266474, -0.0015559252351522446, 0.018744323402643204, -0.00599305797368288, 0.003020325442776084, -0.017894970253109932, -0.012271673418581486, 0.0036957799457013607, 0.020882347598671913, 0.006476310081779957, 0.00038737960858270526, -0.00020249909721314907, -0.000937216158490628, 0.010075073689222336, -0.004484725650399923, 0.007497729267925024, 0.008742469362914562, -0.0019128727726638317, -0.009767549112439156, -0.002282633911818266, -0.014973492361605167, -0.0008543860167264938, 0.021145939826965332, 0.0034303574357181787, 0.0096503971144557, 0.008339758962392807, 0.008090810850262642, -0.01112211961299181, 0.016445213928818703, 0.019901199266314507, 0.013443193398416042, 0.006168785970658064, -0.03268541395664215, 0.005011909641325474, -0.01742636226117611, -0.005165671929717064, -0.001598941977135837, -0.008259217254817486, 0.01780710555613041, 0.004440793767571449, -0.00021050752548035234, -0.0031942229252308607, -0.009064637124538422, -0.00812009908258915, 0.018246427178382874, -0.0036921189166605473, 0.013421228155493736, -0.02575879916548729, 0.013208889402449131, -0.013135669752955437, 0.004400522448122501, 0.015215118415653706, 0.009774871170520782, -0.009240365587174892, 0.0025096158497035503, -0.004173540510237217, 0.022639626637101173, 0.005572042893618345, 0.005359704606235027, 0.03136745095252991, -0.014592748135328293, -0.004938689526170492, -0.030371660366654396, 0.019051846116781235, -0.014512206427752972, 0.02003299444913864, -0.0017682632897049189, 0.030049491673707962, 0.02507053129374981, 0.014724544249475002, -0.011012289673089981, -0.016445213928818703, 0.007256103213876486, -0.0021911088842898607, -0.01030205562710762, 0.006450682878494263, -0.010265445336699486, -0.0022020917385816574, 0.006329869851469994, 0.023181455209851265, -0.011898251250386238, 0.013479803688824177, -0.006545868702232838, -0.01583016663789749, 0.013553024269640446, -0.0024638534523546696, -0.03429625183343887, 0.0005335908499546349, -0.021043431013822556, 0.004140591714531183, -0.0034523233771324158, 0.014585426077246666, -0.004418827593326569, -0.001982431858778, 0.02281535603106022, 0.012198453769087791, -0.005260857753455639, -0.0033022223506122828, -0.008493521250784397, 0.002983715385198593, -0.007369594182819128, -0.008647283539175987, -0.021731698885560036, -0.007395220920443535, 0.02476300671696663, -0.0309574194252491, 0.004861808847635984, -0.0023650063667446375, 0.00646898802369833, -0.008727825246751308, 0.023108234629034996, 0.022610338404774666, 0.012044691480696201, -0.01654772274196148, 0.015273693948984146, 0.012527943588793278, -0.014036276377737522, -0.02530483528971672, -0.00980415940284729, 0.014504884369671345, -0.009057315066456795, 0.011883608065545559, -0.0018909067148342729, -0.008098132908344269, -0.0054292636923491955, -0.0048215375281870365, 0.0156690813601017, 0.004466420505195856, -0.004697063472121954, 0.0010900628985837102, -0.019696183502674103, 0.027955399826169014, -0.03303686901926994, -0.01133445743471384, 0.013640888035297394, 0.01049242727458477, -0.01654772274196148, -0.007391559891402721, 0.011671269312500954, -0.007753998972475529, -0.021848851814866066, -0.008720503188669682, -0.013465159572660923, -0.021263090893626213, -0.0189200509339571, -0.004539640620350838, 0.00021943121100775898, 0.0324803963303566, -0.01036063116043806, -0.021717054769396782, -0.0034157135523855686, -0.027647875249385834, -0.0016236536903306842, 0.026696015149354935, -0.004989943467080593, 0.004631165415048599, -0.00951860100030899, 0.002460192423313856, -0.005392653867602348, 0.010631545446813107, 0.007871150970458984, -0.005059502553194761, -0.03406194970011711, -0.00930626317858696, -0.005070485640317202, 0.006608105730265379, 0.006267632823437452, 0.015332270413637161, 0.01823178306221962, 0.01604982651770115, -0.012242386117577553, -0.006941257044672966, -0.0014625696931034327, 0.007256103213876486, -0.010682799853384495, 0.010397241450846195, -0.012608485296368599, -0.008713181130588055, -0.013326041400432587, -0.0018021274590864778, 0.0005944549338892102, -0.0005807261914014816, -0.019959773868322372, -0.0026029713917523623, 0.007259763777256012, 0.004276048392057419, -0.01198611594736576, 0.03306615725159645, 0.016298774629831314, -0.006000380031764507, -0.004671436734497547, -0.022346746176481247, -0.00016360095469281077, -0.023342538625001907, 0.01868574693799019, -0.0071938661858439445, -0.0223613902926445, 0.004803232848644257, -0.016079114750027657, 0.003902626456692815, -0.017484938725829124, -0.011700557544827461, -0.01804141141474247, -0.01183235365897417, 0.011048899963498116, -0.001249316381290555, -0.018056053668260574, 0.023796502500772476, 0.0030386303551495075, -0.03043023683130741, -0.03268541395664215, -0.009123213589191437, 0.020091570913791656, -0.0038989654276520014, 0.0017014499753713608, 0.0014744679210707545, 0.005275501869618893, -0.003342493437230587, -0.004737334791570902, -0.011261237785220146, -0.034999165683984756, -0.0008681147592142224, -0.003909948747605085, -0.009006061591207981, -0.0332418829202652, -1.7632864910410717e-05, 0.0011577913537621498, 0.013040483929216862, -0.006212717853486538, -0.006648377049714327, -0.0013911802088841796, 0.005048519466072321, -0.0009555211290717125, -0.005736787803471088, -0.011890929192304611, 0.027457503601908684, 0.001857042545452714, -0.014687933959066868, -0.00812009908258915, -0.010939069092273712, -0.006505597848445177, -0.019330082461237907, 0.002403446938842535, -0.001480874721892178, -0.0031594433821737766, -0.008764435537159443, -0.004385878797620535, 0.04299478977918625, -0.003175918012857437, 0.00074638647492975, 0.011634659953415394, -0.0015952809480950236, 0.0014909424353390932, -0.0038477114867419004, 0.001706941518932581, -0.022024579346179962, -0.021760987117886543, 0.025436632335186005, -0.005590347573161125, -0.02400152012705803, 0.00978219322860241, 0.009020705707371235, 0.009350195527076721, -0.015039389953017235, 0.018627170473337173, -0.001657517976127565, -0.02720855548977852, 0.0032235109247267246, 0.021966002881526947, -0.009665041230618954, 0.00854477472603321, -0.002103244885802269, -0.02335718274116516, 0.016943110153079033, 0.02288857474923134, 0.0010763341560959816, -0.00479591079056263, -0.010785307735204697, 0.003049613442271948, -0.008998739533126354, 0.024704432114958763, 0.006714275106787682, -0.0292440727353096, -0.0007884879596531391, 0.0003908117942046374, 0.024645855650305748, -0.005216925870627165, 0.00022686761803925037, -0.0010983000975102186, 0.002397955395281315, -0.0027658857870846987, -0.018817542120814323, -0.016606299206614494, 0.01399234402924776, -0.0017005347181111574, -0.0011248424416407943, 0.020633399486541748, 0.02690103091299534, 0.021526683121919632, 0.0027732078451663256, 0.013933767564594746, -0.0027457503601908684, -0.01077798567712307, -0.002707309788092971, -0.006930273957550526, 0.005143705755472183, -0.003170426469296217, -0.00464214850217104, -0.010353309102356434, -0.003421204863116145, -0.008537453599274158, 0.01766066625714302, -0.015698369592428207, -0.012989229522645473, -0.013948411680758, -0.02442619577050209, -0.009423415176570415, -0.017528871074318886, 0.006066277623176575, -0.005074146669358015, 0.016796670854091644, -0.004114964511245489, -0.013062450103461742, -0.03045952506363392, -0.014116818085312843, -0.017894970253109932, 0.004433471709489822, 0.0034028999507427216, -0.0029068344738334417, 0.009752904996275902, 0.0215999037027359, -0.009723617695271969, -0.020325874909758568, -0.013142991811037064, -0.0011111136991530657, 0.03198250010609627, 0.020208721980452538, 0.017689954489469528, 0.03045952506363392, 0.001192570896819234, -0.016064470633864403, -0.0051290616393089294, 0.00431998074054718, -0.0005139129352755845, 0.005275501869618893, 0.0051217395812273026, 0.013853225857019424, -0.009086603298783302, 0.034003373235464096, -0.002240532310679555, -0.014153428375720978, 0.0033296800684183836, 0.0020300247706472874, -0.012227742001414299, -0.017133481800556183, 0.014541493728756905, -0.000944538158364594, 0.002533412305638194, 0.0012584689538925886, 0.004532318562269211, 0.01215452142059803, -0.032509684562683105, 0.005835634656250477, -0.0015632471768185496, -0.009408771060407162, -0.021570615470409393, -0.015800878405570984, 0.013194246217608452, -0.004898418672382832, 0.001534874434582889, -0.011949505656957626, -0.00796633679419756, 0.003093545325100422, -0.0041259475983679295, 0.007534339092671871, -0.011883608065545559, 0.003421204863116145, 0.0014900271780788898, -0.017221346497535706, -0.00040774393710307777, -0.0065092588774859905, 0.022419966757297516, -0.026168830692768097, 0.019579030573368073, 0.0017911444883793592, -0.008859621360898018, 0.0027439198456704617, -0.009950599633157253, 0.0030093423556536436, -0.008222606964409351, -0.012850111350417137, -0.0016831449465826154, -0.011173373088240623, -0.003369950922206044, 0.014387732371687889, -0.017602089792490005, 0.013362651690840721, -0.008522809483110905, -0.02307894639670849, 0.006033328827470541, -0.020765194669365883, 0.013823937624692917, 0.014270580373704433, 0.021072719246149063, 0.0004754724504891783, 0.0043748957104980946, 0.012008082121610641, -0.007179222069680691, 0.02682781219482422, 0.0022734813392162323, -0.0025151073932647705, 0.005176654551178217, -0.007142611779272556, -0.017455650493502617, 0.007149933837354183, 0.018129274249076843, 0.03198250010609627, 0.028292212635278702, -0.011473575606942177, -0.02228817157447338, 0.008391013368964195, -0.029229428619146347, 0.03092813305556774, -0.0038367286324501038, -0.0001760712475515902, -0.01383858174085617, 0.0016584332333877683, 0.013882514089345932, -0.011883608065545559, 0.008574062958359718, 0.028570447117090225, -0.0013261974090710282, 0.00497896084561944, 0.020018350332975388, -0.015390845946967602, 0.0004303963796701282, -0.026095611974596977, 0.0051290616393089294, 0.007885795086622238, -0.0006269463337957859, 0.010155615396797657, -0.0009701651288196445, 0.010441173799335957, -0.00648729270324111, -0.02017943561077118, -0.0242651104927063, -0.0036884581204503775, -0.02652028761804104, -0.008998739533126354, -0.008046879433095455, 0.015727657824754715, -0.023650063201785088, -0.006355497054755688, -0.01306977216154337, 0.013011195696890354, -0.008940163068473339, 0.014607392251491547, 0.019813334569334984, -0.0034266964066773653, -0.004305336624383926, -0.02594917081296444, -0.008412979543209076, 0.024645855650305748, 0.0038989654276520014, 0.010382597334682941, -0.006168785970658064, 0.0007889455882832408, -0.0021709732245653868, -0.008076166734099388, 0.013267465867102146, -0.006930273957550526, 0.011561439372599125, -0.004832520615309477, -0.005930820945650339, 0.010668155737221241, -0.009577177464962006, -0.01647450216114521, 0.008032235316932201, -0.02121915854513645, -0.0011541304411366582, 0.00019872369011864066, 0.012710994109511375, 0.006234684027731419, 0.009071959182620049, -0.004448115825653076, -0.0020281942561268806, 0.006970544811338186, 0.0040417443960905075, -0.0010745036415755749, 0.01381661556661129, -0.0013261974090710282, 0.0037598474882543087, 0.022829998284578323, 0.013318720273673534, 0.005824652034789324, 0.006754545960575342, 0.005707499571144581, -0.0012383334105834365, -0.024396907538175583, -0.027311064302921295, -0.008361725136637688, 0.00016474502626806498, -0.008098132908344269, 0.011114797554910183, 0.0043822177685797215, 0.035526350140571594, -0.013933767564594746, 0.01249865535646677, 0.022947151213884354, 0.0030679183546453714, -0.010756019502878189, 0.021189870312809944, -0.0033186969812959433, -0.0025718528777360916, 0.001298739924095571, 0.016606299206614494, 0.015010101720690727, -0.014680611900985241, 0.009679685346782207, -0.007076714187860489, 0.02034051902592182, -0.005491500720381737, -0.003170426469296217, 0.015566574409604073, 0.0026157847605645657, -0.0033516460098326206, -0.0027292759623378515, 0.00039035416557453573, -0.01263045147061348, 0.023957587778568268, 0.014629358425736427, 8.80356237757951e-05, -0.022829998284578323, -0.0026999879628419876, 0.006428716704249382, -0.002348531736060977, -0.0073403059504926205, 0.02288857474923134, 0.024792294949293137, -0.018012123182415962, 0.03291971608996391, 0.015200474299490452, 0.0269449632614851, -0.0016099249478429556, 0.004634826444089413, 0.008596029132604599, 0.009789515286684036, -0.007014477159827948, -0.002449209336191416, -0.034032661467790604, 0.021643834188580513, -0.014424341730773449, -0.0074171870946884155, -0.03409123793244362, -0.011817709542810917, -0.00413693068549037, 0.010177581571042538, 0.005297467578202486, 0.027603942900896072, 0.008076166734099388, 0.05113685503602028, 0.017953546717762947, 0.01096835732460022, 0.006450682878494263, -0.006959562189877033, 0.0027786993887275457, 0.02022336609661579, -0.006864375900477171, -0.010389919392764568, -0.008068844676017761, -0.005066824611276388, -0.004279709421098232, -0.015507997944951057, -0.015683725476264954, -0.006959562189877033, -0.0035822889767587185, -0.004001473542302847, -0.01956438645720482, 0.01077798567712307, -0.018363578245043755, 0.02416260354220867, -0.02181956358253956, -0.001263960381038487, -0.01280617993324995, 0.01043385174125433, -0.02278606779873371, -0.005451229866594076, 0.016445213928818703, -0.01563979499042034, 0.014263258315622807, 0.006571495905518532, 0.0008827587589621544, -0.03122101165354252, -0.0007875727606005967, 0.02036980725824833, 0.014065563678741455, 0.007171900011599064, -0.0005354213062673807, 0.007695422973483801, 0.02468978799879551, 0.015215118415653706, 1.422927925887052e-05, 0.013589633628726006, -0.010756019502878189, -0.021453462541103363, 0.005147366784512997, -0.00531211169436574, -0.007775965146720409, -0.026696015149354935, 0.007149933837354183, 0.0072121708653867245, -0.010162937454879284, 0.01546406652778387, -0.005085129756480455, 0.0008855044725351036, -0.011517507955431938, -0.0027091403026133776, 0.011092831380665302, -0.006216378882527351, -0.0057807196862995625, 0.006900985725224018, 0.01925686188042164, 0.002061143284663558, 0.010873171500861645, -0.003939236514270306, -0.010983001440763474, -0.020648043602705002, 0.023445047438144684, 0.0055573987774550915, -0.022610338404774666, -0.013369973748922348, 0.006161463912576437, -0.010324021801352501, 0.007358611095696688, 0.023986876010894775, -0.00417720153927803, -0.013047805987298489, 0.02124844677746296, 0.017484938725829124, 0.01635735109448433, -0.017133481800556183, 0.005443907808512449, 0.008969451300799847, -0.0031429689843207598, 0.01159804966300726, 0.007135290186852217, 0.015405490063130856, 0.0012163674691691995, -0.007241459097713232, -0.004100320395082235, -0.0107047650963068, 0.004389539826661348, -0.010880493558943272, 0.00020249909721314907, -0.010294733569025993, 0.013333363458514214, -0.0024510398507118225, 0.009738260880112648, -0.005392653867602348, 0.014131462201476097, -0.005604991689324379, -0.014929560013115406, 0.0024217518512159586, 0.004352929536253214, 0.03435482829809189, -0.009423415176570415, 0.0036445260047912598, 0.012235064059495926, -0.011883608065545559, 0.004232116509228945, -0.0002935664670076221, 0.015185830183327198, -0.01306977216154337, 0.014636680483818054, -0.0006658444763161242, 0.013589633628726006, 0.020281942561268806, 0.00861799530684948, 0.013362651690840721, 0.026505643501877785, 0.00647997111082077, 0.031015995889902115, 0.006589801050722599, 0.024953380227088928, 0.0038403894286602736, 0.002425412880256772, 0.004140591714531183, 0.002097753342241049, -0.020809127017855644, -0.0037323900032788515, 0.016562366858124733, -0.009840769693255424, 0.011371067725121975, 0.008076166734099388, 0.013135669752955437, -0.008954807184636593, 0.00041071849409490824, -0.01144428737461567, 0.002449209336191416, -0.01868574693799019, 0.01815856248140335, 0.005725804716348648, 0.0036518480628728867, -0.020765194669365883, -0.002590157790109515, 0.004946011584252119, 0.025465918704867363, -0.01202272530645132, 0.0077686430886387825, -0.011173373088240623, -0.005367026664316654, 0.004514013417065144, -0.017382429912686348, -0.003814762458205223, -0.01670880615711212, -0.0021380241960287094, 0.015112610533833504, 0.007702745031565428, -0.010792629793286324, 0.006490953732281923, -0.002754902932792902, -0.0012163674691691995, -0.03687359765172005, -0.008764435537159443, -0.004191845655441284, 0.010821917094290257, 0.01249865535646677, -0.03825013339519501, -0.001980601344257593, 0.002088600769639015, 0.005187637638300657, 0.008727825246751308, -0.004967977758497, -0.0013985021505504847, 0.012169165536761284, 0.00074913224671036, 0.017060263082385063, -0.015039389953017235, 0.031513892114162445, 0.0053780097514390945, -0.020238010212779045, -0.04270191118121147, 0.0020373468287289143, 0.023269319906830788, -0.028145771473646164, -0.01823178306221962, 0.011026933789253235, 0.015200474299490452, -0.006703292019665241, -0.008581385016441345, -0.004887435585260391, -0.025348767638206482, 0.017382429912686348, -0.02411867119371891, 0.00780525291338563, 0.007922405377030373, 0.015859454870224, -0.029449088498950005, -0.013699463568627834, 0.019827978685498238, 0.01903720200061798, 0.004184523597359657, 0.01984262280166149, -0.012879399582743645, -0.01228631753474474, 0.03271470218896866, -0.014460952021181583, -0.008844977244734764, -0.020194077864289284, -0.020164791494607925, 0.020281942561268806, 0.008244573138654232, 0.01659165509045124, -0.01481240801513195, -0.001699619460850954, -0.005246213637292385, 0.021014142781496048, -0.04059317335486412, 0.021731698885560036, -0.008391013368964195, -0.0009417923865839839, -0.006099226884543896, 0.010653511621057987, -0.008266539312899113, -0.003113680984824896, -0.03781081363558769, -0.00746111897751689, -0.0107047650963068, -0.017148125916719437, -0.017250634729862213, -0.0005354213062673807, 0.024089382961392403, 0.007915083318948746, -0.009416093118488789, -0.008844977244734764, 0.028409363701939583, -0.018070697784423828, -0.01547870971262455, -0.003401069436222315, 0.017367785796523094, 0.015112610533833504, -0.012791535817086697, 0.0064653269946575165, 0.0256123598664999, 0.03719576448202133, 0.028292212635278702, -0.014863662421703339, -0.0006855223327875137, -0.014065563678741455, 0.006684986874461174, -0.019622962921857834, -0.01647450216114521, 0.0029892069287598133, -0.024528702720999718, -0.011590727604925632, 0.014570781961083412, -0.020047638565301895, -0.003027647500857711, 0.006919290870428085, -0.0020519907120615244, 0.00867657084017992, 0.008229929022490978, 0.00761488126590848, 0.004689741879701614, -0.01211791206151247, 0.02748679183423519, 0.01915435492992401, 0.046919383108615875, 0.004784927703440189, 0.006970544811338186, 0.003025816986337304, 0.0002553547965362668, -0.02632991597056389, 0.0006411327049136162, 0.020457670092582703, -0.006410412024706602, -0.0056013306602835655, -0.008559418842196465, 0.005147366784512997, 0.0146220363676548, 0.0009120467584580183, -0.016503790393471718, -0.008976773358881474, -0.0179681908339262, -0.005396314896643162, 0.007761321030557156, 0.025583071634173393, -0.0017938902601599693, -0.006282276939600706, -0.002725614933297038, -0.006494614761322737, 0.0037744916044175625, 0.011722523719072342, 0.015317626297473907, -0.018085341900587082, 0.01293797604739666, 0.013003873638808727, 0.02300572767853737, -0.0010754188988357782, -0.008317792788147926, 0.018744323402643204, -0.004294353537261486, 0.0059088547714054585, -0.017748530954122543, 0.005645263008773327, 0.014995458535850048, -0.010719409212470055, 0.004620182793587446, -0.018246427178382874, 0.019549742341041565, -0.002377819735556841, -0.022419966757297516, -0.004195506684482098, 0.0016026030061766505, 0.027545368298888206, -0.01708954945206642, 0.011349101550877094, -0.005535432603210211, -0.0029654104728251696, -0.009123213589191437, 0.005788041744381189, 0.015756946057081223, 0.002654225332662463, -0.007900439202785492, -0.0012703671818599105, -0.011173373088240623, 0.011576083488762379, -0.005923498887568712, -0.02162919007241726, -0.0003313205379527062, 0.020194077864289284, 0.02094092220067978, -0.0009097586153075099, -0.0006118447054177523, 0.020428383722901344, -0.004001473542302847, -0.0017188397468999028, 0.0030093423556536436, -0.020355163142085075, 0.01030205562710762, -0.00579902483150363, -0.011195339262485504, -0.0313381627202034, -0.029551595449447632, -0.02763323113322258, -0.00798830296844244, 0.0031942229252308607, -0.014138784259557724, -0.015815522521734238, 0.008017591200768948, 0.0020849397405982018, -0.008281183429062366, -0.026242051273584366, 0.0023521927651017904, -0.013999666087329388, -0.0037049325183033943, 0.004473742563277483, -0.015361557714641094, -0.0006489123334176838, -0.0055573987774550915, 0.011319813318550587, -0.0018533815164119005, -0.006231022998690605, -0.006578817963600159, 0.0016886364901438355, 0.005864922888576984, 0.021804919466376305, 0.009979886934161186, 0.027091404423117638, 0.008969451300799847, -0.012227742001414299, 0.0035456789191812277, -0.027530724182724953, -0.012374181300401688, -0.0015183999203145504, -0.00663007190451026, 0.0057733976282179356, -0.014153428375720978, 0.003600593889132142, -0.024177247658371925, 0.008998739533126354, 0.005480517633259296, -0.013311398215591908, 0.02231745980679989, 0.013186924159526825, 0.017792463302612305, 0.016108402982354164, 0.0009555211290717125, 0.0012465707259252667, 0.031162437051534653, 0.024440839886665344, 0.018436798825860023, 0.00999453105032444, 0.004956994671374559, 0.010082395747303963, 0.012125234119594097, -0.013904480263590813, 0.0050338758155703545, -0.027281776070594788, 0.0005120824207551777, 0.01621090993285179, -0.019769402220845222, -0.0034321879502385855, 0.008456910960376263, -0.01673809438943863, 0.013457837514579296, -0.0015394507208839059, 0.0013408414088189602, 0.006168785970658064, 0.016445213928818703, 0.014153428375720978, 0.01975475810468197, 0.026476355269551277, -0.03230466693639755, 0.016342706978321075, 0.003155782353132963, 0.03233395516872406, -0.010324021801352501, 0.0006685901898890734, -0.0035328655503690243, 0.0045030307956039906, -0.000346193352015689, 6.870095967315137e-05, -0.004012456629425287, 0.012571875937283039, -0.01711883768439293, 0.007490407209843397, -0.019945131614804268, -0.00943805929273367, 0.007900439202785492, 0.028336143121123314, 0.0014991797506809235, -0.01811463013291359, -0.005337738897651434, 0.019198287278413773, 0.003585950005799532, -0.0020995838567614555, 0.005831973627209663, 0.002066634828224778, -0.0029251393862068653, -0.00846423301845789, 0.020325874909758568, 0.022346746176481247, 0.0068167829886078835, -0.0004136930510867387, 0.0077247112058103085, -0.005341399926692247, 0.002793343272060156, -0.009774871170520782, 0.04021243005990982, -0.005575703922659159, -0.030400948598980904, 0.023591486737132072, -0.008493521250784397, 0.006439699791371822, 0.002238701796159148, -0.002039177343249321, -0.004272387363016605, 0.028380075469613075, -0.014497562311589718, -0.007585593033581972, -0.009687007404863834, 0.01604982651770115, -0.014453629963099957, 0.006220039911568165, -0.02181956358253956, 0.018480731174349785, 0.005264518782496452, 0.03236324340105057, 0.004953333642333746, 0.02690103091299534], "16606eae-35ef-4e6f-97a5-f80ad56958ee": [0.004227832425385714, -0.0021399909164756536, -0.006880005355924368, 0.020546892657876015, -0.021351484581828117, -0.007263676263391972, 0.01586833968758583, 0.03868000954389572, 0.013074617832899094, 0.025404242798686028, -0.004872250836342573, 0.03215387463569641, -0.0028607710264623165, -0.002486412413418293, 0.032034676522016525, 0.024286754429340363, -0.015570342540740967, 0.0010970013681799173, 0.025657540187239647, 0.013827060349285603, 0.05036149173974991, 0.004686002619564533, -0.052119672298431396, 0.052387870848178864, 0.005892890505492687, 0.015659742057323456, -0.011584633029997349, 0.0021362658590078354, -0.043447960168123245, -0.002141853328794241, -0.008247066289186478, 0.029784798622131348, -0.004198032431304455, -0.01484769955277443, -0.0023318263702094555, -0.013089517131447792, 0.0051627978682518005, -0.014907298609614372, 0.018401313573122025, -0.011025887914001942, -0.021545181050896645, 0.03462724760174751, 0.012121027335524559, 0.0038441610522568226, -0.026044936850667, 0.00299673224799335, -0.029382502660155296, 0.006377135403454304, -0.036832425743341446, -0.029948696494102478, 0.008418414741754532, -0.012851119972765446, 0.002227527555078268, 0.016762331128120422, 0.007319550961256027, -0.04332876205444336, -0.0005131135694682598, 0.04761991649866104, 0.01935490407049656, -0.05265606567263603, 0.02471884898841381, 0.006161087658256292, 0.007986319251358509, -0.0035014646127820015, -0.040229592472314835, -0.021783579140901566, 0.004805201198905706, 0.021887877956032753, -0.013946258462965488, 0.012106127105653286, -0.023437462747097015, 0.028473611921072006, -0.0017423511017113924, 0.06293696165084839, 0.025076445192098618, -0.014199555851519108, 0.05268586799502373, 0.02422715537250042, -0.010563992895185947, 0.04809671267867088, 0.0007757233688607812, 0.011823030188679695, 0.03263067081570625, 0.0019537426996976137, 0.07181727141141891, -0.012121027335524559, -0.009774301201105118, -0.03421005234122276, -0.033614058047533035, -0.020531991496682167, 0.008202366530895233, 0.0157193411141634, 0.015913039445877075, 0.023169266059994698, -0.013245966285467148, 0.03060428984463215, 0.01111528743058443, 0.021858079358935356, 0.024659249931573868, 0.008857959881424904, -0.003922385163605213, 0.008068268187344074, 0.011852829717099667, 0.005300621502101421, 0.033703457564115524, 0.00517024751752615, -0.017641421407461166, -0.02009989693760872, -0.030902286991477013, 0.02282656915485859, 0.004049033857882023, -0.04458034783601761, -0.017745720222592354, 0.00704762851819396, -0.049825094640254974, -0.025448942556977272, -0.02471884898841381, -0.03996139392256737, 0.0034008906222879887, -0.029486801475286484, 0.039246201515197754, 0.028890807181596756, 0.027996815741062164, -0.009945649653673172, -0.026596231386065483, 0.04404395446181297, 0.004198032431304455, 0.0004691124486271292, -0.01355886273086071, -0.035610638558864594, 0.025508541613817215, 0.004611503332853317, 0.013320465572178364, -0.016643131151795387, 0.017358323559165, -0.024510251358151436, 0.01801391690969467, 0.03358425945043564, -0.007490898948162794, -0.00099735870026052, -0.022364674136042595, -0.026074735447764397, -0.020725689828395844, 0.0016808892833068967, 0.032302871346473694, -0.02322886511683464, -0.028875907883048058, 0.06412895023822784, -0.004443880170583725, 0.044699545949697495, -0.044937945902347565, -0.04368635639548302, -0.01046714372932911, 0.003525676904246211, 0.02026379480957985, 0.006671407260000706, 0.01033304538577795, 0.02456985041499138, 0.008559963665902615, 0.02084488980472088, -0.014743400737643242, -0.03778601810336113, -0.007718121632933617, 0.031468480825424194, 0.020725689828395844, 0.014296405017375946, 0.04690472409129143, 0.0059003401547670364, -0.052775267511606216, 0.012672321870923042, 0.02842891216278076, -0.0030265317764133215, 0.008843060582876205, 0.03292866796255112, 0.008917559869587421, -0.004492304287850857, 0.024599650874733925, 0.04970589652657509, 0.03778601810336113, -0.014087807387113571, -0.014624201692640781, 0.04434195160865784, -0.03444845229387283, 0.01314911711961031, 0.01281386986374855, 0.005777416285127401, 0.0041756825521588326, -0.0018568936502560973, 0.031379081308841705, 0.03438885137438774, -0.003765936940908432, 0.008954809047281742, 0.0247933492064476, 0.06186417490243912, 6.58852732158266e-05, -0.02787761762738228, -0.03492524474859238, -0.008172567002475262, -0.007129577919840813, 0.010042497888207436, -0.0219027791172266, -0.06228137016296387, -0.0372198224067688, 0.020129695534706116, -0.03498484566807747, 0.005144172813743353, -0.022096475586295128, -0.029054705053567886, 0.05274546518921852, -0.014132507145404816, 0.01877380907535553, -0.049318499863147736, -0.006157362833619118, -0.00029729853849858046, -0.04425255209207535, 0.009513553231954575, -0.005889165215194225, 0.05426524952054024, 0.027341222390532494, -0.03870980814099312, 0.010161696933209896, -0.0016846142243593931, 0.0030730939470231533, -0.041630178689956665, -0.0413321815431118, -0.026030035689473152, 0.02282656915485859, 0.008366265334188938, -0.006112663075327873, -0.004719527438282967, 0.028905706480145454, 0.0013139804359525442, -0.03269026800990105, -0.01801391690969467, 0.0004926262772642076, 0.005293171387165785, 0.019831698387861252, 0.001006671111099422, -0.02339276298880577, 0.002056179102510214, 0.029039805755019188, 0.04529554024338722, -0.007882020436227322, -0.014512453228235245, 0.014318754896521568, 0.013238515704870224, -0.0050398739986121655, 0.03197507560253143, 0.008813261054456234, 0.007330725900828838, -0.04067658632993698, 0.0150935472920537, 0.006611808203160763, -0.008969709277153015, -0.024748649448156357, 0.0073046511970460415, 0.008373714983463287, -0.018818508833646774, 0.01149523351341486, -0.018401313573122025, 0.036832425743341446, 0.002465924946591258, -0.05194087326526642, 0.00018950745288748294, 0.019414503127336502, -0.024331454187631607, 0.027385922148823738, -0.055516839027404785, 0.005151622928678989, 0.02084488980472088, 0.026581330224871635, 0.021709080785512924, -0.011875179596245289, 0.004529553931206465, -0.00717427721247077, -0.003218367462977767, 0.035759638994932175, -0.011055688373744488, -0.0036337007768452168, 0.027430621907114983, -0.04359695687890053, 0.007718121632933617, -0.0021548906806856394, 0.015317045152187347, -0.03784561529755592, -0.019816799089312553, -0.010392644442617893, 0.003937284927815199, -0.05822861194610596, -0.011294085532426834, 0.0010569581063464284, 0.0038367111701518297, 0.028577910736203194, 0.001747938571497798, -0.002344863722100854, 0.011688931845128536, -0.03689202666282654, 0.014758300967514515, -0.006999203935265541, 0.04359695687890053, -0.02753492072224617, -0.023914257064461708, 0.015026497654616833, -0.011577182449400425, 0.004987724591046572, -0.02927820384502411, -0.013827060349285603, -0.023124566301703453, -0.04612993448972702, 0.037339020520448685, 0.05423545092344284, -0.04490814357995987, -0.0010355395497754216, 0.003739862237125635, 0.0047456021420657635, 0.011547382920980453, 0.016643131151795387, 0.01828211545944214, -0.02033829316496849, -0.0214855819940567, 0.014452853240072727, 0.011539933271706104, -0.03647483140230179, 0.034686848521232605, 0.011800680309534073, -0.02917390502989292, -0.010005248710513115, 0.0322134755551815, 0.004026684444397688, -0.042613569647073746, 0.0038963104598224163, -0.011979478411376476, -0.04764971882104874, -0.020606491714715958, -0.021202486008405685, -0.023258663713932037, -0.0355808399617672, -0.02886100858449936, -0.006276561412960291, 0.0040676589123904705, 0.005408645141869783, -0.011100387200713158, -0.003162492997944355, 0.00943160429596901, 0.025165844708681107, 0.035104043781757355, -0.016911329701542854, 0.006414385046809912, -0.04160038009285927, 0.029322903603315353, 0.0009209969430230558, -0.0010802390752360225, 0.035104043781757355, 0.020546892657876015, 0.002884983317926526, 0.003004182130098343, -0.009781750850379467, 0.0030544691253453493, -0.03367365896701813, -0.04636833071708679, -0.010668291710317135, -0.033018067479133606, -0.02266267128288746, 0.0006039094878360629, -0.025568140670657158, 0.018222516402602196, 0.022781869396567345, -0.012210425920784473, 0.02662602998316288, -0.0009498653816990554, -0.037070825695991516, 0.02504664659500122, 0.019876398146152496, 0.0071556526236236095, -0.013625912368297577, -0.03441864997148514, 0.01910160668194294, 0.014311305247247219, -0.03975279629230499, 0.01586833968758583, 0.009967999532818794, 0.011659132316708565, 0.0013624049024656415, 0.011301535181701183, 0.016166336834430695, 0.025746939703822136, -0.01422190573066473, 0.017492422834038734, 0.0014173481613397598, 0.017134826630353928, -0.05003369227051735, 0.006548483856022358, -0.020442593842744827, -0.025732040405273438, -0.016583532094955444, 0.05474204570055008, 0.0012338937958702445, -0.022945767268538475, 0.006894905120134354, -0.04040839150547981, 0.02713262476027012, -0.0005140447756275535, -0.015555442310869694, 0.026745229959487915, 0.015808740630745888, -0.025732040405273438, 0.0009470716468058527, -0.01343966368585825, 0.02531484328210354, 0.008351365104317665, 0.010027598589658737, 0.014080357737839222, -0.01086943969130516, 0.0061983373016119, 0.03581923618912697, -0.005546468775719404, -0.042285770177841187, 0.05027209222316742, -0.03811381384730339, -0.008239616639912128, 0.019697600975632668, 0.05107668414711952, -0.0034418650902807713, 0.0281011164188385, -0.013417313806712627, 0.014311305247247219, 0.01546604372560978, 0.00838861521333456, -0.012270025908946991, -0.003505189437419176, 0.011823030188679695, 0.06412895023822784, -0.03465704992413521, 0.0027303972747176886, 0.01828211545944214, -0.00015609919501002878, 0.00040136469760909677, 0.024525152519345284, -0.007278576493263245, -0.03346506133675575, -0.013350265100598335, 0.011212136596441269, 0.0024156379513442516, 0.015749139711260796, -0.037488020956516266, -0.0038702357560396194, -0.053788457065820694, -0.009081457741558552, -0.002782546915113926, 0.006578283384442329, -0.012083777226507664, -0.007252501789480448, -0.05581483617424965, -0.006570833269506693, 0.01228492520749569, -0.016926229000091553, -0.008582313545048237, -0.003974534571170807, 0.01646433398127556, -0.03960379958152771, -0.050391290336847305, -0.014490103349089622, 0.04323936253786087, -0.01785001903772354, -0.005598618183284998, -0.03945479914546013, 0.015421343967318535, 0.003190430114045739, 0.019280405715107918, 0.009230456314980984, -0.026938926428556442, -0.01008719764649868, -0.0037230998277664185, -0.015346844680607319, 0.003115931060165167, -0.02580653876066208, -0.0021381282713264227, -0.024495352059602737, 0.0068092308938503265, -0.035193443298339844, -0.022781869396567345, -0.0035387142561376095, -0.05232826992869377, 0.03614703565835953, 0.009632752276957035, -0.011681482195854187, -0.012433923780918121, -0.013029918074607849, 0.0109513895586133, -0.029159003868699074, 0.004760501906275749, -0.019876398146152496, 0.009632752276957035, 0.017879819497466087, -0.003024669364094734, -0.014534803107380867, -0.00826196651905775, -0.040229592472314835, 0.012076327577233315, -0.039395201951265335, 0.01521274633705616, -0.044431351125240326, -0.00400805938988924, -0.008008669130504131, -0.013245966285467148, -0.005650767590850592, 0.02473375014960766, 0.015048847533762455, 0.003793874057009816, -0.0488119050860405, -0.029889097437262535, 0.05027209222316742, -0.053758654743433, -0.014467753469944, -0.007610097993165255, 0.029576200991868973, 0.013581212610006332, -0.02909940481185913, 0.030544690787792206, -0.023258663713932037, -0.005963664501905441, -0.014415604062378407, 0.008031019009649754, -0.009006958454847336, -0.036176834255456924, -0.0355510413646698, -0.01694112829864025, -0.002884983317926526, 0.0272965244948864, -0.009446504525840282, -0.01405055820941925, 0.026685629040002823, -0.014072907157242298, -0.01801391690969467, -0.0157193411141634, -0.03540204092860222, 0.0037715244106948376, 0.02655153162777424, 0.008969709277153015, 0.01595773920416832, -0.022886168211698532, 0.06502294540405273, -0.013990958221256733, -0.005285721272230148, -0.0030470192432403564, 0.040378592908382416, -0.00880581047385931, 0.02462945133447647, 0.0038180863484740257, 0.015570342540740967, -0.018416212871670723, -0.010347945615649223, 0.011919879354536533, 0.002467787591740489, 0.000769204692915082, -0.042792364954948425, 0.031289681792259216, 0.006794331129640341, 0.013499263674020767, -0.01919100619852543, -0.02655153162777424, 0.040378592908382416, 0.020964087918400764, 0.02869710884988308, -0.017820220440626144, 0.002031967043876648, -0.030291393399238586, 0.05226866900920868, -0.014065457507967949, 0.016672931611537933, -0.0010169147280976176, 0.015555442310869694, 0.04160038009285927, 0.001067201723344624, -0.0033431537449359894, 0.025329744443297386, 0.00459287827834487, -0.01843111403286457, -0.03108108602464199, -0.01045224443078041, 0.02357156202197075, -0.03358425945043564, -0.010787490755319595, -0.007163102272897959, 0.011063138023018837, 0.02655153162777424, -0.01318636629730463, -0.016658030450344086, -0.008299215696752071, 0.004574253689497709, 0.003598313545808196, 0.046845126897096634, -0.040140192955732346, 0.01646433398127556, -0.02920370362699032, 0.022275274619460106, -0.015182945877313614, 0.0048201014287769794, 0.02307986654341221, -0.015436243265867233, 0.0006812024512328207, 0.014393254183232784, 0.008701511658728123, -0.0371900238096714, -0.007688322104513645, 0.04118318483233452, -0.02661113068461418, 0.021560082212090492, 0.008098067715764046, 0.04869270697236061, 0.003393440740182996, -0.017745720222592354, 0.04410355165600777, -0.014549702405929565, 0.0037156499456614256, -0.0076734223403036594, 0.020651191473007202, 0.007237601559609175, -0.0002379319630563259, 0.002531111938878894, 0.032541271299123764, -0.03397165611386299, 0.049825094640254974, -0.026417432352900505, -0.00979665108025074, 0.006943329703062773, -0.011420734226703644, -0.011830479837954044, 0.016658030450344086, 0.01785001903772354, -0.023199064657092094, 0.0028328339103609324, 0.0040676589123904705, -0.022364674136042595, 0.017134826630353928, -0.008083168417215347, -0.003914935514330864, 0.035670239478349686, -0.025001946836709976, -0.027341222390532494, -0.01752222329378128, -0.009074008092284203, -0.005363945849239826, 0.049556899815797806, -0.0022126275580376387, 0.03093208745121956, -0.03903760388493538, 0.015570342540740967, 0.010981189087033272, 0.0007640828844159842, 0.005330421030521393, -0.012329624965786934, 0.006026988849043846, 0.03242207318544388, 0.013856859877705574, -0.025121144950389862, 0.01828211545944214, 0.032362472265958786, -0.001864343648776412, 0.003199742641299963, -0.0013568175490945578, 0.0019686424639075994, 0.01992109790444374, 0.007557948585599661, 0.012463724240660667, 0.003967084921896458, 0.014490103349089622, 0.006216961890459061, -0.012620172463357449, 0.02497214637696743, -0.010772590525448322, -0.004723252262920141, 0.03668342903256416, -0.009886049665510654, -0.008403514511883259, 0.0074499244801700115, -0.009074008092284203, 0.021023686975240707, 0.032034676522016525, -0.0021660656202584505, 0.01726892590522766, 0.0019388428190723062, -0.020159495994448662, 0.01619613543152809, -0.008291766047477722, -0.011063138023018837, -0.0075989230535924435, 0.04157057777047157, -0.011770880781114101, -0.006839030887931585, -0.012128476984798908, -0.0032239549327641726, 0.0034064780920743942, 0.009602952748537064, 0.012456273660063744, 0.023526862263679504, -0.026477031409740448, 0.003981984686106443, 0.044937945902347565, -0.005594893358647823, -0.07205566763877869, -0.03125988319516182, -0.007185452152043581, -0.05152367800474167, 0.013953709043562412, 0.030216893181204796, -0.029069606214761734, -0.010355395264923573, -0.006105212960392237, 0.004350755829364061, 0.0165388323366642, 0.023437462747097015, -0.012448824010789394, 0.013104417361319065, -0.004432705231010914, 0.0239738579839468, -0.010131897404789925, -0.01786491833627224, 0.0038590608164668083, 0.022528572008013725, 0.011420734226703644, -0.003356191096827388, -0.02976989932358265, -0.03257106989622116, -0.011711281724274158, 0.015436243265867233, -0.001202231622301042, -0.007520698942244053, 0.013052267953753471, -0.005121822934597731, 0.024286754429340363, -0.003356191096827388, -0.0014573915395885706, 0.015317045152187347, 0.00027285347459837794, -0.0063175358809530735, -0.03444845229387283, 0.003944735042750835, 0.03042549267411232, -0.011636782437562943, -0.004868525546044111, -0.023541761562228203, 0.030961886048316956, -0.004272531718015671, -0.028920607641339302, 0.006839030887931585, 0.021530281752347946, 0.012888369150459766, 0.014989248476922512, -0.010593792423605919, 0.04094478487968445, -0.027669019997119904, 0.067764513194561, 0.008828160353004932, -0.041212983429431915, -6.734033377142623e-05, 0.00684275571256876, 0.02366095967590809, -0.022096475586295128, 0.0570366233587265, -0.010534193366765976, 0.03453785181045532, 0.011539933271706104, -0.025106245651841164, 0.02182827889919281, 0.040885187685489655, -0.026521731168031693, 0.04472934827208519, 0.042375169694423676, -0.006876280531287193, 0.04946750029921532, 0.012947969138622284, 0.0029129204340279102, 0.0347464494407177, -0.026596231386065483, -0.015190396457910538, 0.011666581965982914, 0.005017524119466543, -0.03364386036992073, 0.0016622644616290927, -0.017060326412320137, -0.03769661858677864, 0.0011081763077527285, 0.003302179044112563, 0.008708962239325047, -0.0479477159678936, 0.00017099904653150588, 0.014780649915337563, -0.0008283384959213436, 0.0035480265505611897, 0.02051709219813347, -0.013834509998559952, -0.017164627090096474, 0.025746939703822136, -0.0005447757430374622, -0.04309036210179329, 0.00855251308530569, -0.026402533054351807, -0.026685629040002823, 0.00665650749579072, 0.03444845229387283, -0.04788811504840851, 0.007092328276485205, 0.04946750029921532, 0.024078156799077988, -0.01744772307574749, -0.018565211445093155, -0.018788710236549377, 0.010750241577625275, 0.0025907112285494804, 0.0004926262772642076, -0.038829006254673004, 0.006634157616645098, 0.003467939794063568, 0.004205482546240091, 0.005308071151375771, 0.011785781010985374, -0.0015970775857567787, 0.0113611351698637, 0.002911058021709323, 0.004306056536734104, -0.01459440216422081, 0.032302871346473694, -0.0036970251239836216, -0.02579163946211338, -0.006041888613253832, 0.014207006432116032, 0.00929750595241785, 0.025255244225263596, 0.024987047538161278, -0.0014387667179107666, -0.02001049742102623, -0.017656320706009865, 0.04615973308682442, 0.012806420214474201, 0.01960820145905018, -0.026849528774619102, 0.0037342747673392296, -0.0206660907715559, 0.010176597163081169, -0.013409864157438278, -0.036594029515981674, -0.009759400971233845, 0.0052000475116074085, 0.003488427260890603, 0.0017302449559792876, 0.007263676263391972, 0.024018557742238045, 0.040885187685489655, 0.014929648488759995, 6.006501644151285e-05, 0.017000727355480194, 0.012009278871119022, 0.0007538392674177885, -0.009327305480837822, 0.02471884898841381, 0.013164016418159008, -0.0015747278230264783, -0.019414503127336502, 0.00980410072952509, 0.002661485457792878, 0.015242545865476131, -0.0029725199565291405, 0.0041384329088032246, 0.008060818538069725, -0.008366265334188938, -0.01430385559797287, 0.004626403097063303, 0.004350755829364061, -0.011577182449400425, 0.016583532094955444, 0.041212983429431915, 0.03346506133675575, -0.000927515618968755, -0.014572052285075188, -0.013782360590994358, -0.0430009663105011, -0.013998407870531082, -0.05349045991897583, 0.002018929459154606, 0.01826721429824829, -0.00721525214612484, -0.011882629245519638, 0.005572543479502201, -0.027818018570542336, -0.004749326966702938, 0.004577978514134884, -0.026491932570934296, 0.017075227573513985, -0.009148507378995419, 0.02315436489880085, -0.007185452152043581, 0.003061919007450342, -0.03382265940308571, -0.01447520311921835, -0.0019705051090568304, 0.009133607149124146, -0.01670273020863533, 0.0033263913355767727, -0.01935490407049656, -0.006719831842929125, -0.023616261780261993, -0.03912700340151787, 0.0041384329088032246, 0.033763058483600616, -0.03000829555094242, -0.011182337068021297, 0.0086791617795825, -0.0016659894026815891, 0.014802999794483185, 0.012925619259476662, 0.0206660907715559, -0.03844160959124565, -0.006567108444869518, 0.029725199565291405, 0.016225935891270638, 0.018222516402602196, -0.0009638339979574084, 0.0026670729275792837, -0.005300621502101421, 0.011793230660259724, 0.017581822350621223, 0.008038468658924103, 0.004749326966702938, -0.0036299757193773985, -0.013454563915729523, -0.01993599906563759, 0.0008055230719037354, 0.00203755428083241, 0.01537664420902729, 0.010265995748341084, 0.012672321870923042, 0.037994615733623505, -0.013082067482173443, 0.020323393866419792, -0.004998899530619383, -0.015674641355872154, -0.004980274476110935, -0.05810941010713577, -0.016017338261008263, 0.01021384634077549, 0.0005415164050646126, 0.035610638558864594, -0.008910110220313072, 0.005226122215390205, -0.04338835924863815, 0.0006122906925156713, 0.03999119624495506, 0.0021548906806856394, 0.018803609535098076, 0.01029579620808363, 0.04118318483233452, 0.014527352526783943, 0.00045560943544842303, 0.014125056564807892, 0.004872250836342573, -0.007408950012177229, 0.014020757749676704, 0.006757081486284733, -0.0014825350372120738, -0.00756539823487401, -0.023914257064461708, 0.002141853328794241, 0.012679771520197392, -0.02661113068461418, 0.0017591133946552873, -0.012635071761906147, -0.0016464333748444915, -0.015302144922316074, -0.0061350129544734955, -0.0011482195695862174, -0.03415045514702797, 0.0002007987495744601, -0.012478623539209366, -0.0027043225709348917, -0.0006532652769237757, -0.026432331651449203, -0.017000727355480194, -0.006779431365430355, -0.0021474407985806465, 0.008947359398007393, -0.029471902176737785, -0.0019006619695574045, -0.00929750595241785, 0.0034996019676327705, -0.017090126872062683, -0.016419634222984314, -0.013953709043562412, -0.015123346820473671, -0.005639593116939068, 0.007837320677936077, -0.045593537390232086, 0.006056788843125105, -0.004548178985714912, 0.003393440740182996, 8.803133823676035e-06, 0.0123966746032238, -0.024510251358151436, -0.0014452853938564658, -0.02953150123357773, -0.007483449298888445, -0.0033133539836853743, -0.05831800773739815, 0.024242054671049118, 0.03239227086305618, 0.005609793122857809, 0.023541761562228203, -0.019906198605895042, -0.024271855130791664, -0.004827551078051329, -0.03400145471096039, -0.02331826463341713, 0.016553731635212898, -0.0008073856006376445, 0.027713719755411148, 0.026491932570934296, 0.0037044750060886145, -0.03960379958152771, 0.02778821811079979, 0.01008719764649868, 0.0024510251823812723, -0.0035573390778154135, -0.016851728782057762, -7.589610322611406e-05, -0.014065457507967949, -0.003911210224032402, -0.007554223295301199, 0.01368551142513752, 0.01802881807088852, 0.0030451565980911255, -0.014937099069356918, -0.00300604454241693, 0.004097458440810442, -0.023452362045645714, 0.009826450608670712, -0.04326916113495827, -0.01551074255257845, -0.08874350041151047, -0.008545063436031342, 0.010720441117882729, 0.02248387224972248, 0.00028286431916058064, -0.01215082686394453, 0.007874569855630398, 0.007740471512079239, 0.006235586944967508, 0.027683919295668602, 0.020055197179317474, -0.007014104165136814, 0.037488020956516266, 0.008209817111492157, -0.02793721668422222, 0.0013549550203606486, 0.0021735155023634434, -0.00574761675670743, 0.003151318058371544, 0.004980274476110935, -0.0063547855243086815, 0.022692469879984856, 0.008574862964451313, -0.01042244490236044, 0.0015318907098844647, 0.028488511219620705, -0.011711281724274158, 0.008738761767745018, -0.04243477061390877, -0.010511843487620354, 0.0020245169289410114, -0.0019146306440234184, 0.0016389833763241768, -0.023377863690257072, 0.0004507204284891486, 0.01086943969130516, -0.004328405950218439, 0.005945039913058281, 0.003793874057009816, 0.006593183148652315, 0.007926720194518566, 0.010303245857357979, -0.027892516925930977, 0.0006211374420672655, 0.0009140126057900488, -0.01975720003247261, -0.011308985762298107, -0.008112967945635319, -0.012322175316512585, 0.026566430926322937, -0.0015840402338653803, 0.01522019598633051, -0.0047828517854213715, -0.024286754429340363, -0.0004132380126975477, 0.015063747763633728, 0.012009278871119022, -0.0058258408680558205, 0.0009750088793225586, -0.0027024601586163044, 0.06311576068401337, 0.01281386986374855, -0.012292375788092613, 0.026491932570934296, -0.023273564875125885, 0.0007999356603249907, 0.029978496953845024, 0.004090008791536093, 0.04830531030893326, -0.009886049665510654, 5.7649613154353574e-05, 0.017313623800873756, -0.0032779667526483536, 0.0227222703397274, 0.026983626186847687, 0.014668901450932026, 0.026477031409740448, 0.00789691973477602, 0.009118707850575447, 0.00984134990721941, -0.008478013798594475, 0.019280405715107918, 0.0074387495405972, -0.02059159241616726, 0.0003571307461243123, -0.01661333255469799, -0.00996054895222187, -0.010109547525644302, -0.004812651313841343, -0.009558252990245819, 0.03695162758231163, 0.00730092590674758, 0.03441864997148514, -0.0005559506244026124, 0.00032593420473858714, 0.023631161078810692, -0.017298724502325058, 0.011502683162689209, -0.017566923052072525, -0.01549584325402975, -0.0020915663335472345, -0.0016538832569494843, -0.01265742164105177, 4.315717887948267e-05, 0.006038163788616657, -0.009416704997420311, -0.010668291710317135, 0.009476304054260254, -0.011383485049009323, -0.02173887938261032, -0.0016855454305186868, 0.00013211976329330355, -0.03075328841805458, 0.01314911711961031, 0.005226122215390205, -0.0037677993532270193, -0.016345134004950523, -0.01484769955277443, -0.007725571747869253, 0.009565703570842743, 0.007222701795399189, 0.031051285564899445, 0.03355446085333824, -0.023511961102485657, -0.01004994846880436, 0.001107244985178113, -0.0031494556460529566, 0.009319855831563473, 0.018729111179709435, 0.012947969138622284, 0.002329963957890868, -0.010362844914197922, 0.010042497888207436, 0.004481129813939333, -0.008619562722742558, 0.008708962239325047, 0.011815580539405346, 0.004391730763018131, 0.024093056097626686, -0.03158767893910408, -0.008843060582876205, -0.0054198200814425945, -0.005613517947494984, 0.015436243265867233, -0.0256277397274971, 0.009237906895577908, 0.018416212871670723, -0.009118707850575447, 0.010191496461629868, -0.013015017844736576, -0.014802999794483185, -0.024107955396175385, 0.011763431131839752, 0.009088908322155476, -0.01917610503733158, -0.004279981832951307, -0.018639711663126945, -0.020070096477866173, -0.005013799294829369, -0.0140580078586936, -0.03149827942252159, 0.002348588779568672, 0.026238635182380676, -0.01819271594285965, 0.00815021712332964, 0.01837151311337948, -0.018878109753131866, -0.008120417594909668, 0.008649362251162529, 0.008910110220313072, -0.0020636292174458504, 0.007785171270370483, 0.0004530485311988741, -0.04085538536310196, -0.017999017611145973, -0.0002579536521807313, 0.0002505037118680775, -0.002540424233302474, 0.014452853240072727, -0.009774301201105118, -0.0023169266059994698, 0.0056768422946333885, 0.003561063902452588, 0.014855149202048779, -0.002272227080538869, -0.0013614736963063478, -0.010854540392756462, 0.024256953969597816, -0.009066558443009853, -0.0036411506589502096, 0.013320465572178364, 0.025612840428948402, 0.0030898561235517263, 0.0008953877841122448, 0.023377863690257072, -0.01281386986374855, 0.0355510413646698, 0.009126157499849796, -0.017075227573513985, -0.016553731635212898, 0.0038627858739346266, -0.002363488543778658, 0.0056880172342062, 0.005579993594437838, -0.010720441117882729, 0.0031978802289813757, 0.004123533144593239, 0.0038180863484740257, 0.007844770327210426, -0.026193935424089432, -0.005877990275621414, -0.01228492520749569, -0.0014471478061750531, 0.005110648460686207, 0.009386904537677765, -0.013454563915729523, -0.006652782671153545, -0.012091227807104588, -0.0031233809422701597, -0.003728687297552824, 0.042375169694423676, 0.0017535260412842035, -0.0371900238096714, -0.020964087918400764, 0.011897529475390911, -0.010839640162885189, -0.008410965092480183, -0.04520614072680473, -0.023005366325378418, 0.014810450375080109, 0.017581822350621223, 0.00958805251866579, -0.0002269898832309991, -0.01359611190855503, 0.006094038486480713, -0.004060208797454834, 0.029218604788184166, -0.020859789103269577, 0.027266724035143852, 0.018744010478258133, -0.027564721181988716, 0.007557948585599661, -0.002018929459154606, -0.0005750410491600633, -0.012098677456378937, 0.010623592883348465, -0.020308494567871094, -0.026089636608958244, -0.008671712130308151, 0.022036876529455185, 0.008276865817606449, 0.004924400243908167, -0.010318145155906677, 0.024674151092767715, 0.009908399544656277, 0.014110157266259193, -0.004805201198905706, -0.014274055138230324, -0.0011696381261572242, 0.015115897171199322, -0.014735951088368893, 0.012039078399538994, -0.002773234387859702, -0.02448045276105404, 0.03373325988650322, -0.012292375788092613, -0.008217266760766506, 0.002827246440574527, -0.010251096449792385, -0.01999559812247753, -0.004767951555550098, 0.011383485049009323, -0.03209427371621132, 0.024927448481321335, 0.018624812364578247, 0.0103404950350523, -0.011390934698283672, -0.030291393399238586, -0.0037119248881936073, 0.0057140919379889965, 0.0024361254181712866, 0.01835661381483078, -0.04440154880285263, -0.012724471278488636, -0.012575472705066204, -0.0037324121221899986, -0.006872555240988731, 0.001771219540387392, -0.00165947072673589, 0.008098067715764046, 0.021947477012872696, 0.008202366530895233, 0.02181337960064411, 0.01610673777759075, 0.01421445608139038, 0.02926330454647541, 0.005095748230814934, -0.0022945767268538475, 0.0033990279771387577, -0.024927448481321335, 0.015026497654616833, 0.002188415266573429, -0.04776891693472862, -0.003281691810116172, 0.012605272233486176, -0.00030032507493160665, 0.009535903111100197, 0.01826721429824829, 0.006675132550299168, 0.010057398118078709, 0.009580602869391441, -0.008843060582876205, -0.00365046295337379, -0.014795550145208836, -0.011837930418550968, 0.04604053497314453, 0.007349350489675999, 0.002896158257499337, -0.007278576493263245, -0.015302144922316074, 0.010727891698479652, -0.0012487935600802302, 0.018550312146544456, 0.025344643741846085, -0.028622610494494438, -0.001363336225040257, 0.0020878412760794163, 0.005051048938184977, 0.01686662994325161, -0.011629331856966019, -0.03495504707098007, 0.03820321336388588, -0.0012068877695128322, 0.015406443737447262, 0.002922232961282134, -0.004939300008118153, 0.007688322104513645, 0.012046528048813343, 0.017596721649169922, -0.004868525546044111, -0.008723861537873745, 0.00785222090780735, -0.010698091238737106, -0.01628553494811058, -0.011584633029997349, 0.0011668443912640214, 0.004224107135087252, 0.032869067043066025, 0.022796768695116043, -0.001743282307870686, -0.020278694108128548, 0.012009278871119022, 0.009632752276957035, 0.010035048238933086, 0.0016957890475168824, 0.013640811666846275, 0.007785171270370483, -0.014460303820669651, -0.027430621907114983, -0.035104043781757355, -0.0038702357560396194, -0.01495944894850254, -0.022766970098018646, 0.03689202666282654, 0.005579993594437838, 0.008843060582876205, 0.010109547525644302, -0.020457493141293526, -0.0010541643714532256, -0.017835119739174843, -0.0012618310283869505, -0.0006365029257722199, -0.026328032836318016, 0.010079747997224331, -0.018490713089704514, -0.015361744910478592, 0.013946258462965488, -0.008619562722742558, -0.0026652105152606964, -0.013491813093423843, 0.01430385559797287, 0.0015989401144906878, -0.001479741302318871, 0.007602647878229618, -0.015987537801265717, 0.0007277645054273307, -0.01844601333141327, -0.005047324113547802, -0.005315521266311407, -0.005594893358647823, -0.008209817111492157, -0.01004994846880436, 0.01472105085849762, 0.002938995137810707, -0.001414554426446557, -0.019235705956816673, -0.0562320314347744, 0.005129273049533367, -0.01619613543152809, -0.0006458153366111219, 0.010891789570450783, 0.002270364435389638, 0.0022591897286474705, 0.0206809900701046, -0.01107803825289011, 0.01728382520377636, -0.005833290982991457, -0.002134403446689248, 0.004332131240516901, -0.018967507407069206, -0.02851831167936325, 0.0011947816237807274, 0.013402414508163929, -0.01356631238013506, 0.0025571866426616907, 0.0059003401547670364, -0.009193207137286663, 0.009692352265119553, -0.021053487434983253, 0.007125852629542351, -0.04115338250994682, -6.47794222459197e-05, -0.0005075260996818542, -0.005013799294829369, -0.006444184575229883, 0.0073046511970460415, -0.03653442859649658, 0.002423088066279888, 0.009565703570842743, -0.008992059156298637, 0.011219586245715618, 0.019414503127336502, -0.00203755428083241, 0.0026745228096842766, 0.01726892590522766, -0.008031019009649754, -0.0061722625978291035, -0.04240497201681137, -2.9828800052200677e-07, -0.018639711663126945, -0.026730328798294067, 0.00852271355688572, -0.008530163206160069, 0.0029836948961019516, -0.005486869253218174, -0.011599532328546047, 0.006570833269506693, -0.029144104570150375, -0.009446504525840282, -0.016389833763241768, -0.008627012372016907, 0.001701376517303288, 0.01029579620808363, -0.0030656440649181604, 0.013573762960731983, 0.02462945133447647, -0.002337413839995861, 0.0007235739030875266, -0.015764040872454643, 0.022036876529455185, 0.0070290039293468, 0.0006988960667513311, -0.017060326412320137, 0.001529096974991262, 0.00413470808416605, 0.016419634222984314, -0.000288917392026633, -0.010541643016040325, -0.034120652824640274, -0.03495504707098007, 0.002337413839995861, -0.011398384347558022, -0.008351365104317665, 0.010891789570450783, -0.008366265334188938, -0.03745822235941887, -0.006261661648750305, 0.010221296921372414, 0.010191496461629868, -0.04145137965679169, 0.01537664420902729, -0.025165844708681107, -0.010385194793343544, 0.010780041106045246, 0.03075328841805458, 0.0097147012129426, 0.012933068908751011, 0.0073419008404016495, -0.005173972807824612, 0.041719578206539154, -0.0034809771459549665, 0.018624812364578247, -0.012717021629214287, 0.0032965915743261576, 0.03626623377203941, -0.03117048367857933, -0.017745720222592354, -0.015272345393896103, 0.024361252784729004, -0.0015980087919160724, -0.0012162001803517342, -0.012016728520393372, -0.03632583096623421, 0.013424764387309551, -0.005539019126445055, -0.03528284281492233, -0.012717021629214287, 0.0015272345626726747, 0.011606982909142971, 0.0006844618474133313, -0.008001218549907207, 0.009632752276957035, 0.00980410072952509, 0.007163102272897959, 0.004913225304335356, 0.015734240412712097, 0.004533279221504927, 0.01161443255841732, -0.014609302394092083, 0.010966288857161999, -0.012247676029801369, -0.006831580772995949, -0.003041431773453951, -0.014259155839681625, 0.002188415266573429, 0.002000304637476802, -0.001083964016288519, -0.017879819497466087, -0.011666581965982914, -0.017656320706009865, 0.0035126395523548126, -0.005147898104041815, -0.009148507378995419, 0.014296405017375946, 0.026387633755803108, 0.010228746570646763, 0.009312406182289124, -0.00942415464669466, -0.007073703221976757, -0.024331454187631607, 0.0023951507173478603, -0.008500363677740097, -0.014646551571786404, -0.0005792316514998674, -0.02440595254302025, 0.07491644471883774, 0.02346726320683956, 0.018580112606287003, 0.00943160429596901, -0.0058258408680558205, -0.02553834207355976, -0.0012925618793815374, 0.007550498470664024, 0.019906198605895042, 0.01746262237429619, 0.001738626160658896, -0.016970928758382797, 0.018624812364578247, -0.008597212843596935, -0.01843111403286457, 0.00473070191219449, 0.0025441492907702923, 0.006593183148652315, -0.016836829483509064, 0.037339020520448685, 0.003169942880049348, 0.001992854755371809, 0.009357105009257793, 0.003978259861469269, -0.005669392645359039, 0.011659132316708565, 0.008559963665902615, -0.002791859209537506, 0.02315436489880085, 0.01621103659272194, -0.0016725080786272883, -0.012053977698087692, -0.01443050429224968, -0.009252806194126606, 0.012217876501381397, 0.017149725928902626, 0.004488579463213682, 0.01562994159758091, -0.026089636608958244, 0.016851728782057762, -0.003136418294161558, -0.0001059286150848493, 0.014467753469944, -0.004879700485616922, -0.010347945615649223, -0.00954335369169712, -0.017566923052072525, -0.00028775332611985505, 0.0008371852454729378, -0.012798970565199852, -0.02208157628774643, -0.012314725667238235, 0.014795550145208836, 0.006708656903356314, 0.02182827889919281, -0.014482653699815273, -0.011308985762298107, -0.022215675562620163, -0.004130983259528875, 0.003095443593338132, -0.019116505980491638, 0.015175496228039265, -0.005594893358647823, -0.009513553231954575, -0.017060326412320137, -0.026670729741454124, -0.007312100846320391, -0.027236923575401306, 0.007364250253885984, 0.0018792435294017196, -0.010549093596637249, 0.007248776499181986, 0.008425864391028881, -0.016821930184960365, -0.007498349063098431, 0.016583532094955444, 0.021768679842352867, 0.019861498847603798, 0.008612113073468208, 0.006727281957864761, -0.003959634806960821, 0.004268806893378496, -0.01637493446469307, -0.015913039445877075, -0.005609793122857809, 0.0011659131851047277, 0.00652985880151391, -0.004291156772524118, 0.0038329861126840115, -0.016568632796406746, -0.0013549550203606486, -0.010727891698479652, -0.006056788843125105, 0.014773200266063213, 0.0017255888087674975, 0.0007147271535359323, -1.714064637781121e-05, -0.008999508805572987, 0.01694112829864025, 0.0033412910997867584, 0.011532483622431755, 0.027013426646590233, 0.01236687507480383, 0.008783461526036263, -0.01743282377719879, 0.002873808378353715, 0.015227645635604858, 0.012985218316316605, -0.002000304637476802, 0.007502073887735605, -0.017715919762849808, -0.019533703103661537, 0.007178002502769232, 0.017581822350621223, -0.02853321097791195, -0.0025907112285494804, 0.006164812482893467, 0.0039186603389680386, -0.006779431365430355, -0.0036150759551674128, -0.0363556332886219, -0.0024975871201604605, 0.0035145019646734, -0.01264252234250307, -0.005583718419075012, 0.0009172719437628984, -0.007993768900632858, 2.355747710680589e-05, -0.002696872688829899, -0.02564264088869095, 0.0026111984625458717, 0.021768679842352867, 0.015011598356068134, 0.0012906994670629501, 0.016404733061790466, -0.014884949661791325, 0.013730211183428764, -0.0035778263118118048, 0.019325103610754013, -0.024912547320127487, 0.010303245857357979, 0.03537224233150482, 0.015585241839289665, 0.005401195492595434, -0.011308985762298107, -0.012717021629214287, -0.009066558443009853, -0.02571713924407959, 0.009453954175114632, -0.013976058922708035, 0.009498653933405876, -0.021858079358935356, 0.003793874057009816, -0.007077428512275219, 0.013409864157438278, -0.01695602759718895, -0.014646551571786404, 0.023765258491039276, -0.019727399572730064, 0.006235586944967508, -0.011554832570254803, -0.008567413315176964, -0.03173667937517166, -0.01551074255257845, -0.01472105085849762, 0.016479233279824257, 0.010377745144069195, 0.024852948263287544, 0.008969709277153015, -0.0028570459689944983, -0.02340766228735447, -0.002076666569337249, 0.017626522108912468, -0.0008539475966244936, -3.800625563599169e-05, -0.013037367723882198, 0.008418414741754532, -0.00222380249761045, -0.02413775585591793, 0.017805319279432297, 0.0031401431187987328, 0.01677723042666912, 0.008008669130504131, 0.014810450375080109, 0.0038739608135074377, -0.01595773920416832, -0.00838861521333456, -0.013469463214278221, 0.015659742057323456, 0.0006961023318581283, -0.002840283792465925, 0.010981189087033272, 0.011875179596245289, -0.010809840634465218, -0.028473611921072006, -0.005092023406177759, 4.958856152370572e-05, 0.005553918890655041, 0.006231862120330334, -0.01409525703638792, 0.011413284577429295, -0.003309628926217556, 0.008790911175310612, 0.014527352526783943, -0.019056906923651695, -0.022141175344586372, 0.017552021890878677, -0.008276865817606449, -0.012493523769080639, -0.014065457507967949, -0.04612993448972702, -0.013730211183428764, 0.012985218316316605, -0.0048908754251897335, -0.01434855442494154, 0.00040369280031882226, 0.04347775876522064, 0.026924027130007744, 0.007233876734972, 0.009886049665510654, -0.0059487647376954556, 0.006388310343027115, 0.048484109342098236, -0.009900949895381927, -0.015346844680607319, 0.0063324361108243465, 0.0037417246494442225, 0.009200656786561012, 0.02702832594513893, -0.009334755130112171, 0.02266267128288746, 0.001731176278553903, -0.02364606037735939, 0.016240835189819336, -0.0051627978682518005, 0.0034362776204943657, 0.006399485282599926, -0.0007193833589553833, 0.0037491745315492153, -0.019042007625102997, -0.016926229000091553, -0.0011770881246775389, -0.008977158926427364, 0.005147898104041815, 0.010280895978212357, -0.011264286004006863, -0.007159377448260784, -0.002808621618896723, 0.0020170670468360186, -2.3892140234238468e-05, -0.004503479227423668, -0.011018438264727592, -0.010407544672489166, 0.018416212871670723, 0.019876398146152496, -0.02331826463341713, -0.021232284605503082, -0.01020639669150114, 0.004332131240516901, -0.04139178246259689, 0.010675742290914059, 0.02184317819774151, -0.03164727985858917, -0.011353684589266777, 0.010184046812355518, 0.009021858684718609, -0.04580213502049446, 0.002041279338300228, 0.005308071151375771, 0.024614550173282623, 0.014937099069356918, -0.005516669247299433, -0.0033636409789323807, 0.03760721907019615, -0.0001835707953432575, -0.0017265200149267912, 0.004980274476110935, -0.02158988080918789, 0.00020114796643611044, 0.01993599906563759, -0.002141853328794241, 0.01801391690969467, -0.014765750616788864, -0.04317976161837578, -0.007550498470664024, -0.003410202916711569, -0.00613873777911067, -0.00300604454241693, 0.003114068415015936, 0.00299673224799335, -0.007114678155630827, -0.038888607174158096, 0.007017828989773989, -0.00017169748025480658, -0.011234486475586891, 0.001057889312505722, 0.00450720451772213, -0.001083964016288519, 0.005695467349141836, 0.008031019009649754, 0.004935575183480978, 0.006153637543320656, 0.0026279608719050884, -0.028592810034751892, 0.00863446295261383, -0.008917559869587421, 0.013394963927567005, 0.004090008791536093, 0.001202231622301042, 0.013961158692836761, 0.01603223755955696, -0.0011389072751626372, 0.004496029578149319, -0.005773691460490227, 0.0022461521439254284, -0.02389935776591301, -0.018654610961675644, 0.018550312146544456, -0.02595553733408451, -0.0070699783973395824, 0.009811550378799438, -0.004421530291438103, 0.009319855831563473, -0.005188872572034597, -0.0038069114089012146, 0.009565703570842743, 0.007166827563196421, 0.01112273707985878, 0.017596721649169922, -0.03060428984463215, 0.017507322132587433, 0.010318145155906677, -0.01356631238013506, -0.008172567002475262, -0.0020822538062930107, 0.02215607650578022, -0.009535903111100197, 0.006220687180757523, 0.005337871145457029, 0.01770102046430111, -0.019638001918792725, 0.013655711896717548, -0.009252806194126606, 0.0006574558210559189, -0.000873969285748899, 0.017730820924043655, 0.005877990275621414, -0.01670273020863533, 0.01636003516614437, 0.019310204312205315, 0.0013475051382556558, 0.013260865584015846, 0.016970928758382797, -0.010757691226899624, -0.02853321097791195, 0.013342814520001411, -0.0023877008352428675, 0.015242545865476131, -0.01577894017100334, 0.018505612388253212, -0.007800071034580469, -0.016419634222984314, -0.024748649448156357, -0.010191496461629868, 0.013499263674020767, -0.008694062009453773, 0.013543962500989437, -0.005084573291242123, -0.03996139392256737, -0.002659623045474291, -0.0004325612389948219, -0.008373714983463287, -0.007081153336912394, 0.013998407870531082, -0.010057398118078709, 0.011070587672293186, 0.01960820145905018, 0.008135317824780941, -0.012016728520393372, 0.004794026259332895, 0.03075328841805458, 0.0018233690643683076, -0.02091938816010952, -0.026730328798294067, 0.012016728520393372, 0.013372614979743958, 0.0177755206823349, 0.018326815217733383, 0.01537664420902729, -0.011659132316708565, -0.012933068908751011, -0.010593792423605919, 0.0036895752418786287, -0.0005694536375813186, 0.010772590525448322, 0.022007077932357788, -0.014706151559948921, 0.022379573434591293, -0.0036337007768452168, 0.01186772994697094, -0.0036299757193773985, 0.006574558559805155, 0.015346844680607319, 0.006086588371545076, 0.012664872221648693, -0.00876856129616499, 0.00438055582344532, 0.00380318658426404, 0.012411573901772499, -0.018490713089704514, -0.0019071806455031037, 0.016970928758382797, -0.023422563448548317, -0.0061983373016119, 0.0165388323366642, 0.002031967043876648, -0.008157667703926563, -0.005028699059039354, 0.00502497423440218, -0.0030190818943083286, 0.012351974844932556, 0.016985828056931496, 0.010936489328742027, 0.0038963104598224163, 0.010929039679467678, -0.012664872221648693, 0.02853321097791195, 0.008194916881620884, -0.005159072577953339, -0.0010401956969872117, -0.009498653933405876, 0.0014322480419650674, -0.017179526388645172, 0.0281011164188385, -0.009930749423801899, -0.0177755206823349, 0.017164627090096474, -0.02564264088869095, -0.004130983259528875, 0.010184046812355518, -0.029963595792651176, -0.0010103960521519184, -0.011584633029997349, -0.003985709510743618, 0.019578400999307632, 0.0006812024512328207, 0.0029538951348513365, 0.016509033739566803, 0.008038468658924103, -0.0015970775857567787, -0.017909618094563484, 0.03263067081570625, -0.012791520915925503, -0.004626403097063303, -0.014452853240072727, 0.005639593116939068, 9.174174920190126e-06, 0.0057513415813446045, 0.032869067043066025, -0.03242207318544388, -0.0030730939470231533, -0.003451177617534995, -0.018386414274573326, -0.004313506186008453, -0.003078681416809559, 0.016926229000091553, 0.017969217151403427, 0.01252332329750061, -0.020070096477866173, 0.0007421987247653306, -0.044431351125240326, -0.000983390025794506, 0.011688931845128536, -0.016881529241800308, 0.006108938250690699, 0.004991449415683746, -0.00040997867472469807, 0.0026186485774815083, 0.009111258201301098, -0.009595503099262714, 0.006600633263587952, 0.016926229000091553, 0.008045918308198452, 0.019742300733923912, 0.02282656915485859, -0.0011733630672097206, 0.0014164169551804662, 0.012016728520393372, -0.009006958454847336, 0.0009684902033768594, 0.015734240412712097, 0.0004048568371217698, 0.023169266059994698, 0.0024919998832046986, 0.010482043959200382, -0.003253754461184144, -0.00942415464669466, 0.01910160668194294, -0.005036149173974991, 0.0070699783973395824, 0.0017674945993348956, -0.0051851472817361355, -0.00142200430855155, 0.026313133537769318, -0.0035387142561376095, 0.0013149116421118379, -0.021470682695508003, 0.015019048005342484, 0.017179526388645172, -0.009208106435835361, -0.007204077206552029, 0.0008264760253950953, -0.001771219540387392, -0.0024342627730220556, -0.017641421407461166, 0.02528504468500614, -0.0031289684120565653, -0.018207615241408348, 0.03035099245607853, -0.0010318146087229252, 0.0024547502398490906, -0.01662823185324669, 0.0020822538062930107, 0.017715919762849808, 0.012508423067629337, 0.005591168534010649, 0.0062057869508862495, 0.020144596695899963, 0.010169146582484245, -0.016062038019299507, -0.017507322132587433, -0.0042166574858129025, -0.010116997174918652, -0.01112273707985878, 0.005010074470192194, 0.0051627978682518005, -0.012314725667238235, 0.020070096477866173, 0.0185950119048357, -0.012888369150459766, 0.007665972225368023, 0.010109547525644302, -0.02537444233894348, 0.009729601442813873, -0.010444793850183487, -0.020964087918400764, 0.013193816877901554, -0.004868525546044111, -0.019489003345370293, -0.015764040872454643, -0.011681482195854187, -0.005360220558941364, 0.004469954874366522, 0.0008004012634046376, 0.019787000492215157, -0.011934779584407806, 0.00797886960208416, 0.014460303820669651, -0.0088952099904418, -0.00477167684584856, -0.009275156073272228, -0.010750241577625275, -0.004406630527228117, -0.000927515618968755, -0.022945767268538475, 0.004395455587655306, -0.0032053301110863686, 0.013894109055399895, -0.004503479227423668, 0.011443084105849266, -0.0011575319804251194, 0.003587138606235385, -0.013007568195462227, 0.015659742057323456, -0.011048237793147564, -0.012180626392364502, -0.025404242798686028, -0.0017609759233891964, 0.014892399311065674, -0.029471902176737785, 0.0055688186548650265, 0.011435634456574917, -0.002771371975541115, 0.004209207370877266, -0.0021064660977572203, 0.015317045152187347, 0.019116505980491638, -0.013655711896717548, 0.016821930184960365, -0.008135317824780941, 0.01852051168680191, -0.016598431393504143, -0.01046714372932911, -0.011837930418550968, 0.012009278871119022, -0.00942415464669466, -0.0008427727152593434, 0.0088952099904418, -0.012426474131643772, -0.02531484328210354, -0.007740471512079239, 0.0015980087919160724, -0.0010727891931310296, -0.00892500951886177, 0.012351974844932556, 0.00407510856166482, 0.021068386733531952, -0.009252806194126606, -0.005121822934597731, -0.0065037840977311134, -0.0037510369438678026, -0.012001828290522099, 0.011957128532230854, -0.0015635528834536672, 0.015153146348893642, -0.006082863546907902, 0.006213237065821886, 0.00012350578617770225, 0.002503174589946866, 0.005118098109960556, -0.0007282301085069776, -0.0016697143437340856, -0.004425255116075277, -4.6416520490311086e-05, 0.0038143612910062075, -0.006939604878425598, 0.01460185181349516, 0.01020639669150114, 0.016851728782057762, 0.003959634806960821, 0.007040178868919611, -0.00035689794458448887, 0.002681972924619913, -0.024495352059602737, 0.027847817167639732, -0.005982289556413889, -0.021783579140901566, -0.01173363160341978, -0.02206667698919773, 0.00232623890042305, 0.012329624965786934, -0.012426474131643772, 0.010429894551634789, 0.01133133564144373, 0.029784798622131348, -0.003551751608029008, 0.007431299891322851, 0.0035200894344598055, -0.0008334603044204414, 0.0020654916297644377, -0.020055197179317474, 0.011182337068021297, -0.01975720003247261, 0.0214855819940567, -0.016404733061790466, -0.02366095967590809, 0.003395303152501583, -0.0140580078586936, 0.029129205271601677, -0.005300621502101421, -0.02150048315525055, -0.0021250909194350243, -0.020397894084453583, 0.010623592883348465, 0.008001218549907207, -0.011182337068021297, 0.01318636629730463, 0.004555629100650549, -0.027013426646590233, -0.017820220440626144, -0.009506103582680225, 0.008671712130308151, -0.006909804884344339, 0.02348216250538826, 0.016807029023766518, -0.0059003401547670364, 0.008224716410040855, 0.009997799061238766, -0.0009843212319537997, -0.0140580078586936, 0.007349350489675999, 0.00704762851819396, 0.006250486709177494, -0.024584751576185226, -1.667502692725975e-05, 0.029382502660155296, -0.0002432866021990776, -0.011271735653281212, 0.009483753703534603, 0.004790301434695721, 0.0023169266059994698, -0.003985709510743618, 9.638340270612389e-05, -0.030783088877797127, 0.01537664420902729, 0.0012320312671363354, -0.010005248710513115, 0.0025385618209838867, -0.007125852629542351, -0.03075328841805458, -0.007464824244379997, 0.0050882985815405846, 0.0008311322308145463, -0.002577673876658082, -0.012880919501185417, -0.011763431131839752, 0.014862599782645702, 0.006444184575229883, -0.018878109753131866, -0.009468854404985905, -0.004551903810352087, 0.007386600133031607, 0.016821930184960365, 0.0069209798239171505, -0.01786491833627224, -0.02307986654341221, -0.006287736352533102, 0.004257631953805685, -0.021113086491823196, -0.01661333255469799, -7.602706318721175e-06, 0.010191496461629868, 7.409182580886409e-05, 0.004130983259528875, 0.0020710790995508432, -0.026179034262895584, 0.012627622112631798, -0.009498653933405876, 0.012977768667042255, -0.0023597637191414833, 0.006585733499377966, -0.005319246090948582, 0.010772590525448322, 0.0016836829017847776, -0.001850374974310398, -0.013208716176450253, 0.013871759176254272, -0.008649362251162529, -0.004533279221504927, 0.015972638502717018, -0.015235096216201782, -0.004529553931206465, -0.017984118312597275, 0.00929750595241785, 0.009632752276957035, -0.004987724591046572, 0.002914783079177141, -0.0001225745363626629, -0.0165239330381155, 0.005632143002003431, 0.002104603685438633, -0.011294085532426834, 0.024659249931573868, -0.009751951321959496, -0.007166827563196421, 0.013514162972569466, 0.0014508728636428714, -0.008671712130308151, -0.006462809629738331, 0.0014247980434447527, 0.014393254183232784, 0.01484769955277443, 0.004738152027130127, 0.0018848308827728033, -0.00863446295261383, -0.012858569622039795, 0.010921589098870754, -0.006395760457962751, -0.006857655476778746, 0.01636003516614437, 0.015749139711260796, -0.0073419008404016495, -0.007725571747869253, -0.03325646370649338, -0.008492914028465748, -0.019220804795622826, -0.02720712497830391, -0.002540424233302474, -0.01264997199177742, 0.02504664659500122, -0.0012925618793815374, 0.0002502709103282541, -0.008947359398007393, -0.0074499244801700115, -0.037339020520448685, 0.005546468775719404, -0.00686138030141592, 0.0021064660977572203, -0.00010057398321805522, 0.0013735798420384526, 0.01786491833627224, 0.004618953447788954, -0.0194294024258852, 0.00260561122559011, 0.012702121399343014, 0.006000914145261049, 0.011010988615453243, -0.005587443243712187, -0.005226122215390205, -0.014236805960536003, -0.007397775072604418, 0.012180626392364502, -0.013827060349285603, -0.007993768900632858, -0.004849900957196951, 0.014892399311065674, -0.005408645141869783, 0.021276984363794327, 0.004957924596965313, 0.0008357884362339973, -0.006526133976876736, 0.010861990042030811, -0.023526862263679504, -0.009789200499653816, 0.004630127921700478, -0.025687340646982193, 0.01613653637468815, 0.0075616734102368355, -0.006336160935461521, 0.012970319017767906, -0.005930140148848295, 0.012933068908751011, 0.01074279099702835, -0.021604781970381737, -0.012731920927762985, -0.0004355877754278481, -0.004183132667094469, -0.007934169843792915, 0.004957924596965313, -0.01265742164105177, 0.0025907112285494804, 0.0047418768517673016, -0.0029799698386341333, 0.015674641355872154, 0.010780041106045246, -0.008589763194322586, 0.006649057846516371, 0.005319246090948582, 0.009476304054260254, 0.004231557250022888, 0.006820405833423138, -0.011025887914001942, 0.0035163643769919872, 0.003432552795857191, -0.008425864391028881, 0.013484363444149494, 0.009826450608670712, 0.0012292375322431326, -0.030902286991477013, -0.013841959647834301, 0.007822420448064804, 0.002884983317926526, -0.01695602759718895, 0.008276865817606449, -0.00917830690741539, 0.010809840634465218, -0.0009265843546018004, -0.006764531601220369, 0.008492914028465748, -0.03745822235941887, 0.011919879354536533, 0.021634580567479134, -0.009938199073076248, 0.00917830690741539, 0.002465924946591258, 0.01628553494811058, -0.012508423067629337, 0.007543048821389675, -0.00905910786241293, 4.7027649998199195e-05, -0.016717631369829178, 0.0015514467377215624, 0.01202417816966772, -0.017492422834038734, -0.022692469879984856, 0.021232284605503082, 0.009029308333992958, -0.001015983521938324, -0.015570342540740967, -0.008612113073468208, -0.021932577714323997, 0.014423053711652756, -0.013096967712044716, 0.01586833968758583, -0.03260086849331856, 0.0021250909194350243, 0.03060428984463215, -0.006112663075327873, -0.002288989257067442, 0.03927600383758545, 0.00730092590674758, 0.022796768695116043, 0.009021858684718609, -0.00992329977452755, -0.008351365104317665, -0.01892280764877796, 0.018475813791155815, 0.007792620919644833, -0.0022591897286474705, 0.002719222567975521, -0.009930749423801899, -0.004645028151571751, -0.001687407959252596, 7.211293996078894e-05, -0.00491695012897253, 0.008180017583072186, -0.017075227573513985, -0.01120468694716692, -0.007651072461158037, 0.010243645869195461, -0.015808740630745888, 0.00851526390761137, -0.0018215065356343985, -0.0010755828116089106, -0.008448214270174503, 0.014393254183232784, -0.0003878616844303906, -0.007472274359315634, 0.00607913825660944, -0.013469463214278221, -0.0029836948961019516, 0.02240937389433384, -0.004615228157490492, 0.022126276046037674, 0.02762432023882866, 0.007740471512079239, -0.00032127799931913614, -0.00613873777911067, -0.008813261054456234, -0.011405834928154945, 0.000978733878582716, -0.01869931071996689, 0.003609488485381007, -0.0009493997786194086, -0.01381216011941433, -0.008865410462021828, 0.016911329701542854, -0.014452853240072727, 0.012880919501185417, 0.00823216699063778, 0.02437615394592285, 0.0026298232842236757, 0.00742012495175004, -0.011234486475586891, -0.00917830690741539, 0.001771219540387392, 0.012597822584211826, -0.002186552854254842, -0.007390324957668781, 0.0026577606331557035, -0.01610673777759075, 0.018997307866811752, 0.011726181022822857, 0.004160782787948847, 0.026506831869482994, 0.0025255244690924883, -0.011919879354536533, -0.02778821811079979, -0.05098728463053703, 0.011063138023018837, -0.0078596705570817, -0.012411573901772499, 0.006567108444869518, 0.005777416285127401, 0.026849528774619102, -0.000941484235227108, 0.00756539823487401, -0.0014667039504274726, 0.0026577606331557035, -0.008731311187148094, 0.026179034262895584, 0.017254024744033813, 7.502306834794581e-05, -0.004801476374268532, 0.02033829316496849, 0.02249877154827118, -0.02695382758975029, 0.003227679757401347, -0.02884610742330551, 0.016255736351013184, 0.011428183875977993, 0.004220382310450077, 0.0020524542778730392, -0.009491204284131527, 0.00802356842905283, 0.007576573174446821, -0.005021248944103718, 0.001172431861050427, 0.015570342540740967, 0.003525676904246211, -0.00979665108025074, -0.01844601333141327, -0.019116505980491638, 0.002493862295523286, -0.0022666396107524633, -0.026015136390924454, 0.016881529241800308, -0.005159072577953339, -0.025761839002370834, 0.006067963782697916, 0.0148774990811944, 0.014549702405929565, 0.005248472094535828, -0.007822420448064804, 0.016598431393504143, 0.0010914138983935118, -0.009476304054260254, 0.016017338261008263, -0.018744010478258133, 0.024823147803544998, 0.004626403097063303, -0.030693689361214638, -0.014691251330077648, 0.008336465805768967, -0.017969217151403427, 0.005155347753316164, 0.026670729741454124, 0.0198465995490551, -0.004049033857882023, 0.00839606486260891, 0.0071184029802680016, 0.023437462747097015, 0.007367975544184446, 0.004153333138674498, -0.0016929953126236796, -0.001335398992523551, -0.0062430365942418575, -0.015540543012320995, -0.002367213601246476, -0.024197354912757874, 0.012873469851911068, 0.0055688186548650265, 0.0008162323501892388, -0.005192597396671772, -0.021366383880376816, -0.011852829717099667, -0.01975720003247261, 0.01959330216050148, -0.013462013565003872, 0.005594893358647823, -0.014802999794483185, -0.017909618094563484, 0.0008008668664842844, 0.011227035894989967, 0.000505663629155606, -0.004365655593574047, 0.0029315452557057142, -0.001631533494219184, 0.0034977395553141832, 0.01901220716536045, -0.017298724502325058, -0.009260255843400955, -0.004239006899297237, 0.008708962239325047, 0.019459202885627747, -0.0005671255057677627, -0.02231997437775135, 0.01513079646974802, 0.022364674136042595, 0.01835661381483078, -0.0023951507173478603, 0.0011621882440522313, -0.008619562722742558, -0.010414994321763515, -0.01289581973105669, -0.008224716410040855, -0.007263676263391972, -0.022945767268538475, 0.0038329861126840115, 0.009483753703534603, -0.004913225304335356, 0.03936539962887764, -0.0017255888087674975, -0.0007594266789965332, -0.017656320706009865, 0.006026988849043846, 0.002735984744504094, 0.014110157266259193, -0.005129273049533367, -0.010973738506436348, 0.01356631238013506, -0.0054943193681538105, -0.01637493446469307, -0.00967000238597393, -0.004812651313841343, -0.008120417594909668, -0.010556543245911598, 0.015659742057323456, -0.001386617193929851, -0.017596721649169922, 0.014505003578960896, 0.00483872601762414, 0.010169146582484245, 0.014154857024550438, -0.0057885912247002125, -0.007814970798790455, 0.036832425743341446, 0.00802356842905283, -0.017328524962067604, -0.008157667703926563, -0.006999203935265541, 0.01875890977680683, 0.0007068116101436317, 0.019548602402210236, -0.0050398739986121655, 0.030067896470427513, 0.004332131240516901, -0.0034828397911041975, 0.0005862159305252135, -0.014899848960340023, -0.01211357768625021, -0.0019239430548623204, -0.009722151793539524, -0.0054943193681538105, 0.02001049742102623, -0.01586833968758583, 0.009982898831367493, -0.004786576610058546, 0.010414994321763515, 0.0165239330381155, -0.00823216699063778, 0.019638001918792725, -0.01029579620808363, -0.001887624617666006, -0.009617852978408337, -0.005106923170387745, 0.021276984363794327, -0.007576573174446821, -0.026938926428556442, 0.005822116043418646, 0.007926720194518566, 0.0018596873851493, 0.009573153220117092, 0.000925187487155199, -0.0032667918130755424, 0.011688931845128536, 0.0017460760427638888, 0.005196322221308947, 0.011972028762102127, -0.013268315233290195, 0.01525744516402483, 0.009580602869391441, 0.022588171064853668, 0.015108446590602398, 0.0024510251823812723, -0.014288955368101597, 0.017000727355480194, -0.0013670611660927534, 0.0015300282975658774, -0.005393745377659798, -0.004581703804433346, 0.004913225304335356, 0.01786491833627224, -0.01455715298652649, 0.015853440389037132, -0.0017209325451403856, 0.004954199772328138, -0.0025571866426616907, -0.005702917464077473, 0.006935879588127136, 0.008403514511883259, -0.009632752276957035, -0.006239311769604683, -0.02051709219813347, -0.01177833043038845, 0.02126208506524563, -0.007934169843792915, -0.0027210849802941084, -0.01071299146860838, 0.018893009051680565, -0.0045593539252877235, -0.027222024276852608, -0.008507814258337021, -0.005971114616841078, 0.011666581965982914, 0.024778449907898903, 0.0036672253627330065, -0.00626538647338748, 0.005032423883676529, 0.005870540626347065, -0.0034064780920743942, 9.508838957117405e-06, -0.022603070363402367, -0.0031569055281579494, 0.01810331642627716, -0.025985337793827057, -0.01877380907535553, -0.0227520689368248, 0.008969709277153015, 0.008381165564060211, 0.04011039435863495, -0.00352381425909698, -0.017403023317456245, 0.013074617832899094, -0.007867120206356049, -0.008843060582876205, -0.02231997437775135, 0.02181337960064411, 0.002216352615505457, -0.0008478945237584412, -0.0016389833763241768, -0.007394050247967243, 0.013298115693032742, -0.01327576581388712, -0.011457984335720539, -0.01236687507480383, 0.004589153453707695, -0.016434533521533012, 0.005598618183284998, 0.01458695251494646, -0.010698091238737106, 0.0029259577859193087, -0.02090448886156082, 0.013990958221256733, -0.006764531601220369, 0.0157044418156147, -0.007081153336912394, 0.009476304054260254, 0.010660842061042786, -0.006380860228091478, 0.001046714372932911, 0.016404733061790466, 0.003959634806960821, 0.005073398817330599, 0.0035126395523548126, -0.01330556534230709, 0.013104417361319065, -0.0074164001271128654, -0.006853930652141571, 0.024093056097626686, -0.013901559635996819, -0.004723252262920141, -0.003050744067877531, -0.0020096171647310257, 0.00826196651905775, 0.019161205738782883, -0.020278694108128548, 0.0150935472920537, -0.017477523535490036, -0.006231862120330334, -0.021932577714323997, 0.002251739613711834, 0.007006654050201178, -0.0009573153220117092, -0.01177833043038845, 0.007572848349809647, 0.0035573390778154135, -0.02331826463341713, -0.03035099245607853, -0.009006958454847336, 0.015205295756459236, -0.0016808892833068967, 0.010891789570450783, -0.0031960175838321447, 0.025344643741846085, -0.01636003516614437, -0.02132168412208557, 0.00012920962763018906, 0.009155957028269768, 0.022007077932357788, 0.006965679582208395, 0.003507052082568407, 0.011465433984994888, 0.01290326938033104, 0.00917830690741539, -0.012880919501185417, 0.01577894017100334, -0.02389935776591301, 0.003985709510743618, 0.011785781010985374, -0.03084268793463707, 0.01330556534230709, -0.007125852629542351, -0.022543471306562424, 0.002085978863760829, -0.016836829483509064, -0.013901559635996819, -0.010258546099066734, -0.01352161355316639, 0.0061722625978291035, 0.005065948702394962, 0.00473070191219449, -0.011100387200713158, -0.013581212610006332, 1.4696140169689897e-05, 0.005628418177366257, 0.050391290336847305, 0.016970928758382797, 0.025583041831851006, 0.01752222329378128, 0.0012087502982467413, -0.019205905497074127, -0.005654492881149054, -0.001605458790436387, -0.008753661066293716, 0.009275156073272228, -0.0008758317562751472, 0.0032798293977975845, 0.0013465738156810403, -0.0006053063552826643, -0.01604713685810566, -0.01562994159758091, -0.012270025908946991, -0.004935575183480978, -0.001678095548413694, 0.016255736351013184, -0.005915239918977022, 0.00541609525680542, 0.006164812482893467, 0.007874569855630398, 0.013044818304479122, 0.0011668443912640214, -0.012806420214474201, 0.011107837781310081, 0.022424273192882538, 0.02041279338300228, 0.029486801475286484, -0.009975449182093143, -0.02968049980700016, 0.017358323559165, 0.0010150521993637085, 0.02024889551103115, -0.007457374595105648, 0.011793230660259724, 0.0010355395497754216, -0.01537664420902729, -0.003782699117437005, -0.023094765841960907, 0.028920607641339302, -0.01228492520749569, -0.015764040872454643, -0.014646551571786404, -0.016568632796406746, 0.013752561062574387, 0.014899848960340023, 0.002348588779568672, 0.00281048403121531, 0.0002779753122013062, -0.00852271355688572, 0.013797259889543056, 0.0016203585546463728, -0.008284316398203373, 0.007814970798790455, -0.010325595736503601, -0.00013794000551570207, -0.01819271594285965, -0.0032984542194753885, -0.01496689859777689, 0.003264929400756955, -0.0034530400298535824, 0.002085978863760829, 0.015555442310869694, -0.0014480791287496686, -0.0027564719785004854, -0.012471173889935017, -0.010042497888207436, 0.02571713924407959, -0.019384704530239105, 0.0004132380126975477, -0.011308985762298107, -0.01677723042666912, -0.025776738300919533, -0.0314088836312294, -0.0014750850386917591, -0.01021384634077549, -0.0009349655592814088, 0.005438445135951042, -0.025404242798686028, 0.005918965209275484, -0.014437953941524029, 0.002167928032577038, -0.006056788843125105, 0.004835001192986965, 0.006094038486480713, 0.03504444658756256, 0.006094038486480713, -0.004496029578149319, -0.005263371858745813, 0.008999508805572987, 9.917712304741144e-05, 0.0165388323366642, 0.005665667820721865, -0.0047828517854213715, -0.004242732189595699, 0.0012618310283869505, 0.020472392439842224, 0.005628418177366257, -0.0039931596256792545, -0.01190497912466526, 0.004551903810352087, 0.014989248476922512, -0.020382992923259735, -0.003087993711233139, 0.008194916881620884, 0.019414503127336502, 0.005837015807628632, -0.017984118312597275, 0.008060818538069725, -0.0030302568338811398, 0.01289581973105669, 0.0075989230535924435, 0.010720441117882729, 0.012702121399343014, 0.005963664501905441, -0.010645941831171513, 0.010429894551634789, 0.004842450842261314, -0.0015430656494572759, 0.01551074255257845, 0.037339020520448685, -0.015480943024158478, 0.02495724707841873, 0.004775401670485735, 0.011897529475390911, -0.0033152163960039616, 0.002752747153863311, 0.009394355118274689, -0.014646551571786404, -0.008671712130308151, 0.015078647062182426, -0.0078596705570817, 0.008403514511883259, 0.01045969408005476, -0.00773302186280489, 0.006578283384442329, -0.015942838042974472, -0.0006313811172731221, 0.038411810994148254, 0.023199064657092094, 0.007114678155630827, 0.006008364260196686, -0.013961158692836761, -0.028235213831067085, 0.006947054527699947, 0.010847089812159538, -0.010482043959200382, 0.006712382193654776, 0.014698700979351997, -0.012545673176646233, 0.015838539227843285, 0.0014071045443415642, 0.016658030450344086, -0.00017612086958251894, 0.030231794342398643, -0.024838048964738846, 0.0157044418156147, 0.002948307665064931, 0.010489493608474731, 0.007509524002671242, 0.02860771119594574, 0.01934000477194786, -0.002382113365456462, 0.012702121399343014, 0.02142598293721676, -0.011830479837954044, 0.01352161355316639, -0.0009303093538619578, -0.018058616667985916, 0.0009805962909013033, 0.008336465805768967, -0.008828160353004932, 0.003449314972385764, -0.00433958088979125, -0.005572543479502201, -0.008343915455043316, -0.009826450608670712, 0.00855251308530569, 0.01679212972521782, 0.006272836588323116, 0.00917830690741539, -0.026149235665798187, -0.018565211445093155, -0.012292375788092613, 0.006768256425857544, -0.009602952748537064, 0.001214337651617825, 0.0097147012129426, 0.010660842061042786, -0.0010327458148822188, -0.007688322104513645, -0.006932154763489962, 0.011927329003810883, -0.013715310953557491, -0.02696872688829899, -0.010414994321763515, -0.013462013565003872, 0.003069368889555335, 0.0198465995490551, 0.013961158692836761, -0.006105212960392237], "da93de1b-e8c4-4faf-9df5-0304aa74c9c0": [-0.000769280712120235, -0.014261027798056602, -0.010348444804549217, 0.031270626932382584, -0.030414514243602753, -0.032502226531505585, 0.005260584410279989, 0.04710119217634201, 0.00014456281496677548, 0.03799936920404434, 0.009304588660597801, 0.006912731099873781, 0.008929100818932056, 0.013690286315977573, 0.018353844061493874, 0.012601371854543686, -0.02686990797519684, 0.010551207698881626, 0.007562324870377779, 0.016957029700279236, 0.049173884093761444, 0.008876532316207886, -0.0435265488922596, 0.05022525042295456, 0.0012700875522568822, 0.01578550785779953, 0.0037830397486686707, -0.005666111130267382, -0.03193148598074913, -0.010303385555744171, 0.011392300948500633, 0.026073874905705452, 0.010483619756996632, -0.015485118143260479, 0.0005763738299719989, -0.02434663102030754, -0.001715979422442615, 0.009357156231999397, 0.008658749051392078, 0.011489927768707275, -0.02164311893284321, 0.05232798308134079, 0.027410611510276794, 0.005200506187975407, -0.039351124316453934, 0.0031015295535326004, -0.01385550107806921, 0.014493830502033234, -0.035746440291404724, -0.013637717813253403, -0.01111443992704153, 0.005515916272997856, 0.001900907140225172, 0.032261915504932404, 0.005369476042687893, -0.05121653899550438, -0.02571340650320053, 0.04013213887810707, 0.038840461522340775, -0.042204830795526505, 0.026914967224001884, -0.016926990821957588, -0.0024294061586260796, -0.01260888110846281, 0.003704187460243702, 0.0055121611803770065, -0.0006613279110752046, 0.009657546877861023, -0.025878621265292168, 0.02822166495025158, -0.012391097843647003, 0.02011112868785858, -0.009957937523722649, 0.05485126003623009, -0.0062255882658064365, -0.03370378911495209, 0.06010809168219566, 0.0027879970148205757, 0.0026828604750335217, 0.031150469556450844, -0.01167767122387886, -0.011519966647028923, 0.03008408471941948, 0.024271532893180847, 0.07714021950960159, 0.006657399237155914, -0.017077187076210976, -0.03775905445218086, -0.05046556517481804, -0.028627192601561546, 0.019735639914870262, 0.0348152294754982, -0.002864972222596407, -0.0023805927485227585, -0.02819162607192993, 0.0322919525206089, 0.02560826949775219, 0.009837781079113483, 0.008335829712450504, -0.022964835166931152, -0.01640130765736103, 0.00203702156431973, 0.007622403092682362, 0.019930893555283546, 0.04923396557569504, -0.001933762338012457, 0.014005695469677448, 0.002352431183680892, -0.042925767600536346, 0.021342728286981583, 0.009785212576389313, -0.039080772548913956, -0.03866022825241089, 0.013915578834712505, -0.05208767205476761, -0.032382071018218994, -0.03923096880316734, -0.03917089104652405, -0.00203702156431973, -0.018233688548207283, 0.060468558222055435, 0.02410631813108921, 0.009297078475356102, -0.013878029771149158, -0.024677060544490814, 0.04301588609814644, 0.01628115214407444, -0.0199008546769619, 0.0016465141670778394, -0.012969349510967731, 0.009927897714078426, -0.028026411309838295, -0.004227993078529835, -0.016100918874144554, 0.03370378911495209, -0.0006538181914947927, 0.00987533014267683, 0.03667765110731125, -0.01824870891869068, 0.035355933010578156, -0.03881042078137398, -0.0014005695702508092, -0.02437666989862919, -0.018729332834482193, 0.006927750539034605, 0.004475814756006002, -0.03160105645656586, 0.05370977893471718, -0.015635313466191292, 0.009912878274917603, -0.0744967833161354, -0.030249299481511116, -0.006161755416542292, 0.004641029518097639, 0.03595671430230141, -0.009650036692619324, -0.015695391222834587, 0.009312097914516926, 0.015372471883893013, -0.012849193066358566, -0.01005556434392929, -0.041934479027986526, -0.021042337641119957, 0.024812236428260803, 0.03838987648487091, 0.007066681049764156, 0.04214475303888321, 0.026494421064853668, -0.03295281156897545, 0.018458981066942215, 0.035235777497291565, -0.029903849586844444, 0.02897264063358307, 0.030609767884016037, -0.004028984345495701, -0.000786646967753768, 0.014561417512595654, 0.050525642931461334, 0.030790001153945923, -0.025698386132717133, -0.006390803027898073, -0.013247210532426834, -0.019179917871952057, 0.016957029700279236, 0.0002562704321462661, 0.01230098120868206, 0.012316000647842884, 0.027440650388598442, 0.03370378911495209, 0.026689674705266953, 0.007539795711636543, -0.01393059827387333, 0.029273031279444695, 0.058395866304636, -0.012338530272245407, -0.030369454994797707, -0.018188631162047386, -0.016341229900717735, -0.0217632744461298, 0.021222572773694992, -0.014583947136998177, -0.06103930249810219, -0.02871730923652649, 0.01851905882358551, -0.01899968460202217, 0.03718831390142441, -0.01874435320496559, -0.018939606845378876, 0.03121054731309414, -0.00503904651850462, 0.030910158529877663, -0.03968155384063721, 0.011399810202419758, -0.010461091063916683, -0.02571340650320053, 0.005425799172371626, -0.0070854551158845425, 0.024511845782399178, 0.024181416258215904, -0.052267905324697495, 0.0211324542760849, 0.0006908975774422288, 0.013021918013691902, -0.051637087017297745, -0.044547874480485916, -0.017963336780667305, -0.013119544833898544, 0.007032887078821659, -0.03457491844892502, -0.019074780866503716, -0.007340786978602409, -0.009267039597034454, -0.026764772832393646, -0.025127645581960678, -0.00950735155493021, 0.014456281438469887, 0.05253825709223747, 0.003863769816234708, -9.774417412700132e-05, 0.003480772254988551, 0.0254730936139822, 0.058696258813142776, -0.026884928345680237, -0.031871408224105835, 0.011384790763258934, 0.04211471602320671, -0.02810150943696499, 0.04556920379400253, 0.013382386416196823, 0.023400401696562767, -0.013825462199747562, 0.008846493437886238, -0.008305790834128857, -0.02647940069437027, -0.014193439856171608, 0.03496542572975159, 0.007682480849325657, -0.03748870640993118, 0.0005651091923937201, -0.011227086186408997, 0.021568020805716515, 0.016686679795384407, -0.03863018751144409, -0.004806244280189276, 0.025127645581960678, -0.01925501599907875, 0.014869318343698978, -0.03292277082800865, 0.012721527367830276, 0.018188631162047386, 0.017197342589497566, 0.05208767205476761, 0.00025603576796129346, 0.004227993078529835, 0.021688176319003105, -0.0045096087269485, 0.038089483976364136, -0.03190144523978233, 0.006210568826645613, 0.0273355133831501, -0.04313604161143303, -0.008215673267841339, 0.001692511374130845, 0.004731146618723869, -0.029798714444041252, -0.018714312463998795, -0.0174076147377491, -0.0040252297185361385, -0.047041114419698715, -0.041333701461553574, -0.0013113912427797914, 0.003191646421328187, 0.02683986909687519, 0.005812551360577345, -0.01701710745692253, 0.015440059825778008, -0.020456576719880104, 0.011482417583465576, -0.002251049503684044, 0.0522378645837307, -0.02161308005452156, -0.03054969012737274, -0.0010738951386883855, -0.007490982301533222, 0.00858365185558796, -0.026028815656900406, -0.0020708153024315834, -0.027996372431516647, -0.019074780866503716, 0.04620002210140228, 0.04899365082383156, -0.04385697841644287, 0.007937812246382236, 4.722932862932794e-05, -0.002660331316292286, 0.01975066028535366, 0.015455079264938831, -0.00029100305982865393, -0.036978039890527725, -0.015575234778225422, 0.015590254217386246, -0.012653939425945282, -0.06446374952793121, 0.011602574028074741, 0.008245713077485561, -0.032622382044792175, -0.0073896003887057304, 0.034244488924741745, -0.0022773337550461292, -0.024647021666169167, -0.03082004003226757, -0.010085603222250938, -0.009139373898506165, -0.014929396100342274, -0.03178128972649574, -0.03529585525393486, -0.018413923680782318, -0.04427752271294594, -0.006676173768937588, -0.0025908660609275103, 0.0021628099493682384, -0.00534694641828537, -0.005305643193423748, 0.0012128256494179368, 0.0018258095951750875, 0.02511262521147728, -0.003548359964042902, 0.004265541676431894, -0.025818543508648872, 0.011857905425131321, 0.0010091235162690282, -0.0027035123202949762, 0.022469190880656242, 0.03487531095743179, 0.0038862989749759436, -0.002093344694003463, -0.012714018113911152, 0.013998186215758324, -0.016010800376534462, -0.02846197783946991, -0.013329817913472652, -0.014538888819515705, -0.00531315291300416, 0.006319459993392229, -0.036106910556554794, 0.0019262525020167232, 0.033253200352191925, -0.026404304429888725, 0.01901470310986042, -0.009026727639138699, -0.04172420874238014, 0.025322899222373962, 0.005283113569021225, -0.004656048957258463, -0.0076073831878602505, -0.029783694073557854, 0.04746166244149208, 0.006604830734431744, -0.032111719250679016, 0.0057599833235144615, 0.000798380991909653, 0.008230692707002163, -0.034634996205568314, 0.0034131843131035566, 0.017197342589497566, 0.0005017456132918596, -0.005361966323107481, 0.0074384137988090515, -0.0062894211150705814, 0.008929100818932056, -0.007258179597556591, -0.01703212782740593, -0.0027786099817603827, -0.01703212782740593, -0.011820356361567974, 0.02661457657814026, -0.00045856452197767794, -0.01826372742652893, 0.016070878133177757, -0.028266724199056625, 0.0292129535228014, 0.005474612582474947, -0.019270034506917, 0.018053455278277397, 0.00858365185558796, -0.02036646008491516, -0.014253517612814903, -0.0050690858624875546, 0.024151377379894257, -0.008546102792024612, 0.015980761498212814, 0.00845598615705967, -0.004855057690292597, -0.007318257819861174, 0.043166082352399826, -0.0009753296035341918, -0.04421744495630264, 0.06656648218631744, -0.05319911614060402, 0.005099124740809202, 0.022439152002334595, 0.04397713392972946, 0.013622698374092579, 0.007479717489331961, 0.009882839396595955, 0.02996392920613289, 0.006353253964334726, 0.0199008546769619, -0.009214471094310284, -0.004866322036832571, -0.019945913925766945, 0.06680679321289062, -0.02385098673403263, -0.027515748515725136, 0.0028274233918637037, -0.02313004992902279, 0.010558717884123325, 0.0032648665364831686, -0.0032029112335294485, -0.01901470310986042, -0.023550596088171005, 0.0121132368221879, -0.008531083352863789, -0.0017263052286580205, -0.05085607245564461, -0.02634422667324543, -0.05878637358546257, 0.004896361380815506, -0.02895762026309967, 0.0011658896692097187, -0.002958844183012843, -0.02261938713490963, -0.07125256955623627, -0.025262821465730667, 0.01739259622991085, 0.010010505095124245, -0.0040252297185361385, 0.0029381923377513885, 0.009319608099758625, -0.05671368166804314, -0.03932108357548714, -0.02894260175526142, 0.021823352202773094, -3.5700679291039705e-05, 0.02410631813108921, -0.029002679511904716, 0.008230692707002163, -0.026794811710715294, 0.006830123718827963, 0.005159202963113785, -0.026043836027383804, -0.0066911932080984116, -0.01577048934996128, -0.019555406644940376, -0.013690286315977573, -0.014073283411562443, -0.0013020040933042765, -0.008103027008473873, 0.03220183774828911, -0.04445775970816612, -0.008313300088047981, -0.017242401838302612, -0.035235777497291565, 0.020216263830661774, -0.009484822861850262, 0.0146064767614007, -0.026539480313658714, -0.00438194302842021, 0.00826824177056551, -0.04659052938222885, 0.017482712864875793, 0.0028048940002918243, 0.024196434766054153, 0.008185634389519691, 0.0071417782455682755, -0.010521168820559978, -0.004701107740402222, -0.036106910556554794, -0.0021665648091584444, -0.03394410014152527, 0.023400401696562767, -0.030294358730316162, -0.011842885985970497, -0.009139373898506165, -0.004614745266735554, 0.001116137602366507, 0.02524780109524727, 0.003863769816234708, 0.006424596533179283, -0.01764792762696743, -0.02123759128153324, 0.05902668461203575, -0.04085307568311691, 0.021703196689486504, 0.0016192912589758635, 0.004513363819569349, -0.007092964835464954, -0.009447273798286915, 0.009026727639138699, -0.02349051833152771, 0.011647632345557213, -0.039441242814064026, -0.015710409730672836, -0.006627360358834267, -0.017422635108232498, -0.038479991257190704, -0.01976567879319191, -0.0186542347073555, 0.007265689317137003, -0.015237296000123024, 0.00477996002882719, 0.017452673986554146, -0.02533791773021221, -0.002281088614836335, -0.015192237682640553, -0.03613694757223129, 0.00801291037350893, 0.03181133046746254, 0.024046240374445915, 0.0229948740452528, -0.04950431361794472, 0.07635920494794846, -0.020036030560731888, -0.01423849817365408, 0.005925198085606098, 0.03418441116809845, -0.027530767023563385, 0.01614597626030445, 0.013757874257862568, 0.013036937452852726, -0.020471597090363503, 0.00046654362813569605, 0.007062925957143307, -2.5169418222503737e-05, -0.013352347537875175, -0.06224086135625839, 0.02819162607192993, 0.011136968620121479, 0.009191942401230335, -0.012053159065544605, 0.007757578510791063, 0.01385550107806921, 0.017242401838302612, 0.028987661004066467, -0.02747068926692009, 0.005422044079750776, -0.040342412889003754, 0.04577947407960892, -0.025668347254395485, 0.01763290911912918, -0.005895158741623163, 0.0007214059587568045, 0.04211471602320671, -0.009912878274917603, -0.01626613177359104, 0.021027319133281708, -0.004096572287380695, 0.0027297965716570616, -0.03160105645656586, -0.014981964603066444, 0.028416918590664864, -0.022529270499944687, -0.008185634389519691, -0.027816137298941612, 0.006191794294863939, 0.02099727839231491, -0.02297985553741455, -0.017212361097335815, -0.009657546877861023, 0.026254108175635338, -0.01665663905441761, 0.044067252427339554, -0.020666850730776787, 0.014674064703285694, -0.0254881139844656, 0.03205164149403572, -0.023430440574884415, 0.003146587871015072, 0.01629617251455784, 0.011339732445776463, -0.013247210532426834, 0.0223790742456913, 0.002665963489562273, -0.03457491844892502, -0.007044151425361633, 0.03715827688574791, -0.015379981137812138, 0.02311503142118454, -0.008403417654335499, 0.04586959257721901, 0.025037528946995735, -0.025533171370625496, 0.0242264736443758, -0.0025364202447235584, 0.0020220018923282623, -0.007370825856924057, 0.029137855395674706, 0.005159202963113785, -0.000888028705958277, 0.006961544509977102, 0.0292129535228014, -0.014261027798056602, 0.03826972097158432, -0.03376386687159538, 0.0071643078699707985, 0.001846461440436542, -0.011512456461787224, -0.0017572829965502024, 0.014433751814067364, 0.00690146628767252, -0.027155280113220215, 0.0021815842483192682, -0.008531083352863789, -0.03451484069228172, 0.01988583616912365, 0.00512916361913085, -0.0023712057154625654, 0.027680963277816772, -0.013389895670115948, -0.05004501715302467, -0.03577648103237152, -0.00354085024446249, 0.02398616261780262, 0.05034540593624115, -0.009402215480804443, 0.011039341799914837, -0.03577648103237152, 0.0005796593031845987, 0.028762366622686386, -0.004224237985908985, 0.033493515104055405, -0.023926084861159325, 0.006882691755890846, 0.03094019740819931, -0.0017263052286580205, -0.03241210803389549, 0.005279358942061663, 0.028927581384778023, 0.0036816580686718225, -0.0008528267499059439, 0.004701107740402222, -0.00987533014267683, 0.03508558124303818, 0.00477996002882719, 0.019179917871952057, 0.013269740156829357, 0.006740006618201733, 0.014816749840974808, 0.003908828366547823, 0.024707099422812462, -0.006604830734431744, -0.0121207470074296, 0.024196434766054153, -0.017677966505289078, -0.013878029771149158, 0.0009593713912181556, 0.0032667440827935934, 0.029768675565719604, 0.017212361097335815, -0.011392300948500633, -0.016957029700279236, 0.002187216654419899, -0.014531378634274006, 0.029513342306017876, -0.005861364770680666, -0.013112034648656845, -0.008899061940610409, 0.005268094129860401, -0.018669255077838898, -0.029032718390226364, 0.0026941250544041395, 0.01727244071662426, -0.006709967274218798, -0.001721611712127924, 0.01291678100824356, 0.002664086176082492, -0.019224977120757103, 0.0025514396838843822, 0.02524780109524727, -0.031991563737392426, -0.02820664457976818, -0.03742862492799759, -0.02065183036029339, -0.04196451976895332, 0.01194051280617714, 0.025052547454833984, -0.030970236286520958, -0.015980761498212814, -0.011136968620121479, -0.004614745266735554, 0.01056622713804245, 0.017798123881220818, 0.004993988201022148, -0.0033700033091008663, 0.011872924864292145, 0.017873220145702362, -0.00023385851818602532, 0.010453580878674984, -0.006638624705374241, 0.02536795660853386, 0.011610083281993866, 0.0020614282693713903, -0.016326211392879486, -0.01778310351073742, 0.0017638540593907237, 0.006593566387891769, 0.003452610457316041, -0.015545195899903774, 0.02822166495025158, -0.005587258841842413, 0.030159182846546173, -0.013224680908024311, -0.003302415367215872, 0.01725742034614086, -0.01305195689201355, -0.015282354317605495, -0.03802940621972084, 0.01199308130890131, 0.0397716723382473, -0.006127961445599794, 0.00671747699379921, -0.023190127685666084, 0.01914987899363041, -0.015184727497398853, -0.00027903440059162676, 0.020471597090363503, 0.020276343449950218, 0.019209956750273705, -0.006503449287265539, -0.025668347254395485, 0.04124358296394348, -0.021462883800268173, 0.04776205122470856, 0.01429857686161995, -0.04079299792647362, 7.674032531213015e-05, 0.006694947835057974, 0.019420230761170387, -0.024031220003962517, 0.04424748569726944, -0.016055859625339508, 0.04196451976895332, 0.0008964771986939013, -0.028011390939354897, 0.008831473998725414, 0.02583356201648712, -0.010791520588099957, 0.03259234502911568, 0.03529585525393486, -0.005913933273404837, 0.040462568402290344, 0.0009509228984825313, -0.005253074690699577, 0.028552094474434853, -0.013292268849909306, -0.019044741988182068, 0.02123759128153324, 0.006822613999247551, -0.029273031279444695, -0.00889155175536871, -0.033493515104055405, -0.02683986909687519, 0.015079591423273087, -0.0031409556977450848, -0.0061692651361227036, -0.04064280167222023, 0.024046240374445915, 0.0008298280881717801, -0.012383588589727879, 0.005331926979124546, 0.029618479311466217, -0.005166712682694197, -0.012706507928669453, 0.02337036281824112, -0.00783267617225647, -0.028642211109399796, 0.020186224952340126, -0.012098217383027077, -0.024421727284789085, -0.0031052844133228064, 0.03526581823825836, -0.054370637983083725, 0.04620002210140228, 0.027170298621058464, 0.019735639914870262, -0.04214475303888321, -0.033643707633018494, -0.018308786675333977, -0.00801291037350893, 0.012766585685312748, 0.013532580807805061, -0.019495327025651932, 0.018684273585677147, 0.0335535928606987, -9.651210348238237e-06, -0.0059777661226689816, 0.016461385414004326, 0.00863622035831213, -0.0033099250867962837, 0.00018234628078062087, -0.013337327167391777, -0.020411517471075058, 0.04959443211555481, 0.013006898574531078, -0.01653648354113102, 0.002650944050401449, 0.020681869238615036, 0.02173323556780815, 0.018864508718252182, 0.015410020016133785, -0.010190739296376705, -0.016356250271201134, -0.023926084861159325, 0.051396772265434265, 0.0042993356473743916, 0.034755151718854904, -0.03649741783738136, -0.007265689317137003, 0.003537095384672284, 0.013187132775783539, -0.023175109177827835, -0.0398017093539238, -0.01899968460202217, 0.010889147408306599, 0.0019206202123314142, 0.015755468979477882, -0.0048287734389305115, -0.014463790692389011, 0.03887049853801727, 0.03391405940055847, 0.024902353063225746, 0.008591161109507084, -0.0003693861362989992, 0.0010053686564788222, -0.011970551684498787, 0.026764772832393646, 0.0033643709030002356, 0.009785212576389313, -0.021553000435233116, 0.0012822909047827125, 0.02473713830113411, 0.028552094474434853, -0.020171206444501877, 0.005478367209434509, -0.00011769196862587705, -0.010250817984342575, -0.004840038251131773, 0.006465900223702192, 0.006390803027898073, -0.011933003552258015, 0.01629617251455784, 0.031000275164842606, 0.039080772548913956, -0.013337327167391777, -0.018068473786115646, -0.02039649896323681, -0.02783115766942501, -0.0038862989749759436, -0.04809248074889183, 0.009852800518274307, 0.028777386993169785, 0.006357009056955576, -0.007074190769344568, 0.009011708199977875, -0.029618479311466217, -0.008380888029932976, -0.010453580878674984, 0.004329374525696039, -0.0013329817447811365, -0.004351903684437275, 0.025818543508648872, -0.01653648354113102, 0.025893639773130417, -0.0161760151386261, -0.025788504630327225, 0.009522370994091034, 0.008118046447634697, -0.014936905354261398, 0.007250669877976179, -0.015515157021582127, -0.00043556588934734464, -0.029408207163214684, -0.04184436425566673, -0.0054070246405899525, 0.03020424023270607, -0.0484529472887516, 0.0018239321652799845, 0.0034601204097270966, -0.01442624256014824, 0.005474612582474947, -0.006976563949137926, -0.006019069813191891, -0.026374265551567078, 0.005883894395083189, 0.03568636253476143, 0.018413923680782318, 0.014531378634274006, 0.001993840327486396, 0.01248121540993452, -0.01952536776661873, -0.018443962559103966, 0.041453856974840164, 0.021207552403211594, 0.021297669038176537, 0.004126611165702343, -0.01580052822828293, -0.011745259165763855, -0.0011367894476279616, 0.007802636828273535, 0.02473713830113411, -0.0034019197337329388, 0.0009025788749568164, 0.01850404031574726, -0.005947727244347334, 0.04265541583299637, 0.000794626132119447, -0.022394094616174698, 0.0020520410034805536, -0.052147749811410904, 0.012180824764072895, -0.0015348064480349422, 0.010085603222250938, 0.02338538132607937, -0.01255631260573864, 0.015860605984926224, -0.03577648103237152, -0.003510811133310199, 0.0211324542760849, 0.007419639267027378, 0.011640122160315514, 0.022394094616174698, 0.025428036227822304, 0.010093112476170063, -0.004787469748407602, 0.02584858238697052, -0.006687438115477562, -0.0063945576548576355, 0.0019450269173830748, 0.0018173611024394631, -0.010761480778455734, 0.015500137582421303, -0.01751275174319744, -0.005249319598078728, 0.0075510600581765175, -0.02623908966779709, 0.011354751884937286, 0.009807742200791836, -0.0008852125611156225, -0.01075397152453661, -0.020441556349396706, -0.0036685161758214235, -0.02099727839231491, -0.015935704112052917, -0.007348296698182821, -0.012105727568268776, 0.003972661215811968, -0.01914987899363041, -0.008914081379771233, -0.027741041034460068, -0.012090708129107952, 0.02759084478020668, -0.031751248985528946, -0.02197354845702648, -0.000339816469931975, 0.005895158741623163, -0.010866617783904076, -0.006875182036310434, -0.019345132634043694, -0.032382071018218994, 0.005230545531958342, -0.009184432215988636, -0.01838388480246067, 0.010896656662225723, -0.006285666022449732, -0.0010410399409011006, -0.009184432215988636, 0.012909271754324436, -0.021312689408659935, 0.002050163457170129, -0.02646438218653202, 0.0035183208528906107, -0.016942011192440987, -0.029197933152318, 0.04526881128549576, 0.02448180690407753, 0.03550612926483154, 0.02310001105070114, -0.02311503142118454, -0.030114123597741127, 0.008065478876233101, -0.037098195403814316, -0.012225884012877941, 0.02201860584318638, -0.0016896951710805297, 0.013262229971587658, 0.030639806762337685, -0.0037924270145595074, -0.034634996205568314, 0.02533791773021221, 0.02210872247815132, 0.011872924864292145, -0.019315093755722046, -0.010295876301825047, -0.003647864330559969, -0.019480308517813683, -0.008215673267841339, -0.010355954058468342, -0.003923847805708647, 0.009612488560378551, 0.005805041640996933, -0.015410020016133785, -0.0013461238704621792, 0.009785212576389313, -0.01013066153973341, 0.010708913207054138, -0.02236405573785305, -0.01411083247512579, -0.07539795339107513, -0.006826368626207113, -0.0006824491429142654, 0.02347549796104431, 0.0025908660609275103, -0.01715228334069252, 0.009574939496815205, -0.00477996002882719, -0.007314502727240324, 0.007149288430809975, 0.024286553263664246, -0.019705601036548615, 0.03307296708226204, 0.005072840489447117, -0.009342136792838573, -0.009184432215988636, 0.0034300812985748053, -0.0073820906691253185, 0.018338825553655624, 0.0018727455753833055, -0.002926927525550127, -0.0015470098005607724, 0.02584858238697052, -0.02571340650320053, -0.008275751955807209, 0.04565931856632233, -0.008823963813483715, 0.001703775953501463, -0.016972050070762634, -0.019044741988182068, 0.002408754313364625, -0.00343195884488523, 0.01118953712284565, -0.01441873237490654, -0.0027260417118668556, 0.0011809092247858644, -0.009304588660597801, 0.011670161969959736, 0.002130893524736166, 0.005185486748814583, 0.012954330071806908, 0.002660331316292286, -0.01629617251455784, -0.007536040619015694, 0.0022135006729513407, 0.00987533014267683, -0.001244742190465331, -0.013277249410748482, 0.003938867244869471, 0.034484803676605225, -0.005042801611125469, -0.00021754826593678445, 0.004866322036832571, -0.02536795660853386, -0.005425799172371626, 0.01703212782740593, 0.016716718673706055, -0.0014597089029848576, 0.016491426154971123, -0.006323215086013079, 0.07107233256101608, 0.025788504630327225, -0.009289569221436977, 0.010784010402858257, -0.00743090407922864, -0.016942011192440987, 0.028416918590664864, 0.02571340650320053, 0.043917056173086166, -0.0017788736149668694, -0.006432106252759695, -0.00027739163488149643, -0.014456281438469887, 0.02212374284863472, 0.02460196241736412, 0.02111743576824665, 0.02388102561235428, 0.009717624634504318, 0.005504651460796595, -0.002553317230194807, -0.00522303581237793, 0.014951924793422222, -0.010836578905582428, -0.011602574028074741, 0.006882691755890846, -0.03069988451898098, -0.007727539632469416, -0.009792722761631012, -0.008433456532657146, 0.008658749051392078, 0.03277257829904556, 0.0004909503040835261, 0.022589348256587982, -0.0005411718157120049, -0.01031840592622757, 0.04577947407960892, -0.014486320316791534, 0.0133598567917943, -0.03802940621972084, -0.009259529411792755, -0.002350553870201111, -0.014223478734493256, -0.010979264043271542, 0.0005167651106603444, -0.00026495358906686306, -0.0023017404600977898, -0.0029494569171220064, 0.013081995770335197, 0.003503301413729787, -0.029378168284893036, -0.003983926028013229, -0.003702309913933277, -0.030910158529877663, 0.006878937128931284, -0.009176922030746937, -0.007802636828273535, -0.022649426013231277, -0.0036309673450887203, -0.0023392890579998493, 0.008072988130152225, 0.015485118143260479, 0.019540386274456978, 0.018564118072390556, -0.03376386687159538, -0.0025382977910339832, 0.020802024751901627, -0.0014719122555106878, -0.004077797755599022, 0.008666259236633778, 0.019164899364113808, 0.020411517471075058, -0.009267039597034454, -0.0025833563413470984, 0.010333425365388393, -0.011099420487880707, -0.001639943104237318, 0.015950722619891167, -0.010228288359940052, 0.020696889609098434, -0.05857609957456589, 0.005662356503307819, 0.0010100622894242406, 0.0013855501310899854, -0.0008556428947485983, -0.027125241234898567, 0.010160700418055058, 0.006447126157581806, -0.006931505165994167, 0.015440059825778008, -0.01667165942490101, -0.015695391222834587, -0.02883746474981308, 0.0024669549893587828, 0.007404619827866554, -0.031390782445669174, -0.018338825553655624, -0.013908068649470806, -0.00875637587159872, 0.00033042929135262966, -0.02472211793065071, -0.013142073526978493, 0.0029062756802886724, 0.02760586515069008, 0.009094315581023693, 0.014981964603066444, 0.0005989031051285565, -0.00019396292918827385, 0.007224385626614094, 0.010033034719526768, -0.005117899272590876, 0.006683683488518, -0.012488724663853645, 0.024031220003962517, -0.04175424575805664, 0.0008903755224309862, 0.00429182592779398, -0.0001929068675963208, 0.009214471094310284, 0.02164311893284321, -0.02400118112564087, -0.014944415539503098, 0.005996540654450655, 0.010378483682870865, 0.014996984042227268, -0.005606033373624086, -0.009484822861850262, -0.006086657755076885, 0.03421445190906525, -0.006623605266213417, -0.013097015209496021, 0.025638308376073837, 0.02036646008491516, 0.007138023618608713, 0.021177513524889946, 0.02236405573785305, -0.01653648354113102, 0.036617573350667953, 0.02048661559820175, -0.04665060713887215, -0.02152296155691147, 0.0028574622701853514, -0.003659128909930587, -0.0009330872562713921, 0.024767177179455757, -0.00813306588679552, 0.010160700418055058, -0.01007809303700924, 0.019360153004527092, 0.016085898503661156, -0.015455079264938831, 0.005737454164773226, -0.009499842301011086, 0.014576436951756477, 0.009972956962883472, -0.000993165303952992, -0.010205758735537529, -0.003953886684030294, 0.00398017093539238, -0.00218909396789968, 0.01385550107806921, 0.03184136748313904, 0.003983926028013229, -0.015500137582421303, -0.0015028900234028697, 0.0019656787626445293, -0.008373378776013851, 0.013900559395551682, -0.03793929144740105, -0.018864508718252182, 0.0133598567917943, 0.013863010331988335, 0.013517561368644238, -0.004182934295386076, -0.0072994832880795, 0.0068113491870462894, -0.010671364143490791, 0.03655749559402466, -0.025548191741108894, 0.028146566823124886, 0.020051049068570137, -0.018458981066942215, -0.015379981137812138, -0.01367526687681675, 0.017452673986554146, 0.015440059825778008, 0.031390782445669174, -0.02224389836192131, -0.013900559395551682, 0.00020628362835850567, 0.019825756549835205, 0.022153781726956367, -0.0003888645733240992, -0.009852800518274307, 0.03160105645656586, 0.0006500632734969258, 0.023340323939919472, 0.0024425482843071222, 0.009019217453897, -0.01044607162475586, 0.010581246577203274, -0.018368864431977272, 0.026509441435337067, 0.007780107669532299, -0.01887952722609043, 0.032982852309942245, -0.012774095870554447, -0.010160700418055058, -0.009980466216802597, -0.00459972582757473, -0.020937200635671616, -0.01853407919406891, 0.016611581668257713, -0.02497744932770729, 0.010393503122031689, 0.027756059542298317, 0.017047148197889328, -0.026945006102323532, -0.015177218243479729, -0.007175572216510773, 0.001176215591840446, -0.018353844061493874, 0.010964244604110718, -0.03544605150818825, 0.013998186215758324, -0.0018154836725443602, -0.0033061702270060778, -0.006161755416542292, -0.007682480849325657, 0.00472739152610302, -0.0023130050394684076, 0.022709503769874573, 0.010528679005801678, 0.01976567879319191, 0.01168518140912056, 0.021297669038176537, 0.01653648354113102, -0.008050459437072277, -0.005286868661642075, 0.022679464891552925, -0.022063665091991425, -0.00048250186955556273, -0.007340786978602409, -0.05944723263382912, 0.005827571265399456, 0.00602282490581274, -0.0002555664104875177, 0.0019562914967536926, -0.0061204517260193825, -0.001170583302155137, 0.0032122982665896416, 0.0036628837697207928, 0.004122856538742781, -0.0058163064531981945, -0.01380293257534504, -0.00788524467498064, 0.049414198845624924, -6.160347402328625e-05, 0.004855057690292597, -0.0019562914967536926, -0.017602868378162384, 0.018594156950712204, 0.01478671096265316, 0.011925493367016315, 0.010138171724975109, -0.029423225671052933, -0.0026828604750335217, -0.004674823489040136, 0.008471005596220493, 0.01384799089282751, -0.0011095665395259857, -0.03487531095743179, 0.04187440127134323, -0.008666259236633778, 0.017873220145702362, -0.016866913065314293, 0.017978357151150703, 0.004535892978310585, -0.0012081321328878403, 0.0285821333527565, -0.00583883561193943, 0.0010682628490030766, 0.02086210437119007, -0.0048850965686142445, 0.011602574028074741, -0.01031840592622757, -0.006777555216103792, -0.0019149879226461053, 0.02186841145157814, 0.029197933152318, 0.0013724080054089427, -0.009927897714078426, 0.0076073831878602505, 0.026734733954072, 0.00164745282381773, -0.0009762683766894042, -0.0035671342629939318, -0.001223151572048664, -0.0002893602941185236, -0.015004493296146393, -0.039831750094890594, 0.011880435049533844, -0.007288218475878239, -0.007997890934348106, 0.03718831390142441, -0.009056766517460346, -0.0023787154350429773, -0.002179706934839487, -0.019555406644940376, 0.008523574098944664, -0.018338825553655624, -0.009484822861850262, -0.0003926194622181356, -0.04463799297809601, -0.004017719533294439, -0.0010851598344743252, -0.010228288359940052, 0.01429857686161995, -0.003529585665091872, 0.005564729683101177, -0.006139225792139769, 0.0056473370641469955, 0.011407320387661457, -0.008854002691805363, -0.0002858400985132903, -0.01268397830426693, 0.011016813106834888, -0.01952536776661873, 0.002288598334416747, 0.00033582691685296595, -0.008208164013922215, -0.0009762683766894042, -0.012653939425945282, 0.02437666989862919, 0.009026727639138699, -0.0006378599209710956, -0.009206961840391159, -0.03142081946134567, 0.005192996468394995, -0.01198557112365961, 0.005557219963520765, 0.0012766586150974035, -0.0015939457807689905, -0.0015413775108754635, 0.02152296155691147, -0.015875624492764473, 0.03394410014152527, -0.0008185634505935013, 0.008899061940610409, -0.0031634848564863205, -0.021402806043624878, -0.014764181338250637, 0.003082755021750927, 0.0018840101547539234, -0.013464993797242641, -0.014433751814067364, -0.008275751955807209, -0.0007138962391763926, 0.020576732233166695, -0.00932711735367775, 0.019780699163675308, -0.019360153004527092, 0.0018445838941261172, -0.006330724805593491, -0.0152222765609622, -0.0007927486440166831, 0.017437655478715897, -0.02473713830113411, 0.005741208791732788, 0.013585149310529232, -0.006683683488518, 0.0054633477702736855, 0.016701698303222656, -0.02922797203063965, 0.0036328446585685015, 0.01964552327990532, -0.02311503142118454, 0.006330724805593491, -0.0230098944157362, 0.003339964197948575, -0.019960932433605194, -0.03370378911495209, -0.005467102862894535, -0.0036722710356116295, -0.00720936618745327, -0.012526273727416992, -0.010814049281179905, 0.00981525145471096, -0.02524780109524727, -0.0017432022141292691, -0.013495032675564289, 0.004618500359356403, -0.0077425590716302395, 0.02745567075908184, -0.009747663512825966, 0.015965742990374565, 0.00938719604164362, -0.020051049068570137, 0.0006918362923897803, -0.019315093755722046, 0.02894260175526142, 0.026163991540670395, -0.019315093755722046, -0.008350849151611328, 0.007460942957550287, 0.008681278675794601, 0.027290455996990204, 0.0038224661257117987, 8.964772132458165e-05, -0.007539795711636543, -0.032382071018218994, 0.007937812246382236, -0.018969645723700523, 0.0018417678074911237, 0.00015676616749260575, -0.0002329197886865586, -0.05160704627633095, -0.008568632416427135, 0.008313300088047981, 0.0139831667765975, -0.038720306009054184, 0.021778294816613197, -0.025022508576512337, -0.003550237510353327, 0.011144478805363178, 0.020066069439053535, -0.0041378759779036045, 0.014809239655733109, 0.008313300088047981, 0.005508406553417444, 0.032382071018218994, -0.004021474625915289, 0.025698386132717133, -0.011722729541361332, -0.006390803027898073, 0.02311503142118454, -0.036076869815588, -0.019690582528710365, -0.015410020016133785, 0.02162809856235981, 0.007641177158802748, 0.0026772283017635345, -0.01638628914952278, -0.046290140599012375, 0.013081995770335197, -0.02251425012946129, -0.01751275174319744, -0.012766585685312748, -0.007261934690177441, -0.005940217524766922, -0.007201856467872858, -0.0021233835723251104, -0.0004313416429795325, 0.00982276163995266, 0.0017910769674926996, 0.008403417654335499, -0.0026941250544041395, -0.0033793903421610594, 0.007051661144942045, -0.014373674057424068, 0.010671364143490791, -0.014321105554699898, 0.0033455966040492058, 0.0017141018761321902, -0.009777703322470188, -0.0009190064738504589, 0.006443371064960957, -0.0022135006729513407, -0.018368864431977272, -0.017933297902345657, -0.00907178595662117, 0.005756228230893612, -0.008238202892243862, 0.00025157685740850866, 0.008681278675794601, 0.01652146503329277, 0.0012860457645729184, 0.015485118143260479, -0.011076890863478184, -0.007584854029119015, -0.038570109754800797, 0.01007809303700924, 0.002697880147024989, -0.023024912923574448, 0.001978820888325572, -0.008095517754554749, 0.07281459867954254, 0.021297669038176537, 0.013712815009057522, 0.011662651784718037, 0.00020440618391148746, -0.021583041176199913, -0.0002243539784103632, -0.0011536863166838884, 0.030294358730316162, 0.009409724734723568, 0.0013921210775151849, -0.026013797149062157, 0.019239995628595352, -0.014253517612814903, -0.010108131915330887, 0.015575234778225422, 0.003756755730137229, 0.028026411309838295, -0.010431052185595036, 0.026043836027383804, 0.010220778174698353, 0.015304883942008018, 0.002031389158219099, 0.001690633944235742, -0.002042653737589717, 0.021102415397763252, 5.0544182158773765e-05, -0.0002858400985132903, 0.0026396794710308313, 0.027380572631955147, -0.0031540978234261274, -0.017377575859427452, -0.004051513504236937, -0.004701107740402222, -0.0010138171492144465, 0.015995781868696213, 0.001978820888325572, 0.012285961769521236, -0.015012003481388092, 0.026990065351128578, -0.003503301413729787, -0.008598671294748783, 0.004565931856632233, 0.0009734521736390889, -0.017422635108232498, -0.0037698978558182716, -0.0067550260573625565, -0.0028837465215474367, 0.0027861197013407946, -0.02123759128153324, -0.01578550785779953, -0.0030996520072221756, 0.0032967831939458847, 0.001997595187276602, -0.00565860141068697, -0.018609177321195602, -0.0007767904317006469, -0.011272144503891468, -0.001669043442234397, 0.010656344704329967, -0.019059762358665466, 0.005275603849440813, -0.016836874186992645, 0.0044194916263222694, -0.023280244320631027, -0.038600146770477295, -0.018834469839930534, -0.033133044838905334, -0.002654698910191655, 0.0066911932080984116, -0.016221074387431145, 0.010250817984342575, 0.006867672316730022, -0.019810738041996956, -0.012083197943866253, 0.020531674847006798, 0.01255631260573864, 0.02248421125113964, 0.012601371854543686, -0.0005866997526027262, 0.009589958935976028, 0.005192996468394995, -0.0017788736149668694, -0.004682333208620548, -0.011489927768707275, 0.014261027798056602, 0.011527475900948048, -0.0003658659406937659, 0.000689489534124732, -0.027005083858966827, -0.01952536776661873, -0.003820588579401374, 0.008463495410978794, 0.01604083925485611, -0.003950132057070732, 0.0013095138128846884, 0.002359940903261304, -0.00894412025809288, 0.018233688548207283, -0.0029025208204984665, 0.020036030560731888, 0.020411517471075058, -0.008057968690991402, 0.013968147337436676, -0.0027711002621799707, 0.013014407828450203, 0.007055416237562895, 0.003240459831431508, 0.008591161109507084, -0.0004358005535323173, 0.0021646872628480196, -0.00912435445934534, 0.007472207769751549, 0.006004050374031067, -0.03592667356133461, -0.013832971453666687, 0.006079148035496473, -0.006841388065367937, -0.0108741270378232, -0.0014456281205639243, -0.02536795660853386, 0.0035277081187814474, 0.00730323838070035, -0.024031220003962517, -0.006890201475471258, -0.008981668390333652, -0.023325303569436073, 0.0003757225058507174, -0.02313004992902279, -0.010138171724975109, 0.0016850016545504332, 0.007772597949951887, 0.012706507928669453, 0.009732644073665142, 0.02533791773021221, -0.0038525050040334463, 0.00919945165514946, -0.017798123881220818, 0.027936294674873352, -0.028011390939354897, 0.015207257121801376, 0.027635904029011726, 0.010581246577203274, 0.01641632802784443, -0.028161587193608284, -0.0028405655175447464, -0.0034056745935231447, -0.034124333411455154, 0.0077125197276473045, 0.009980466216802597, -0.0026828604750335217, -0.014771691523492336, 0.012781606055796146, 0.00054727349197492, 0.023175109177827835, -0.006852652877569199, -0.01966054178774357, 0.026899948716163635, -0.020186224952340126, -0.0014672186225652695, -0.013081995770335197, -0.013832971453666687, -0.02123759128153324, -0.010168210603296757, -0.019675562158226967, 0.009019217453897, 0.01098677422851324, 0.01566535234451294, 0.013066976331174374, -0.005557219963520765, -0.006946524605154991, 0.008613690733909607, 0.02261938713490963, -0.008178125135600567, -0.008283261209726334, -0.016085898503661156, 0.00313907815143466, -0.0004780429298989475, -0.009206961840391159, 0.0139831667765975, 0.004712372086942196, -0.00029733942938037217, 0.010889147408306599, 0.01304444670677185, 0.012285961769521236, -0.020231284201145172, -0.0015901909209787846, -0.013397405855357647, 0.013457483612000942, 0.003452610457316041, -0.011159498244524002, 0.017617888748645782, 0.014779200777411461, -0.02897264063358307, -0.020907161757349968, -0.0009011707734316587, 0.005335682071745396, 0.00995042733848095, 0.019675562158226967, -0.012691488489508629, 0.01577048934996128, 0.008215673267841339, 0.019570425152778625, 0.0010635692160576582, -0.012991879135370255, -0.03005404584109783, 0.005636072251945734, -0.02000599168241024, -0.00743090407922864, -0.017873220145702362, -0.03992186486721039, -0.011197047308087349, 0.019915875047445297, -0.009920388460159302, -0.005418289452791214, 0.002833055565133691, 0.0360468327999115, 0.01330728828907013, 0.019164899364113808, 0.006623605266213417, -0.0006566343363374472, -0.004171669948846102, 0.03778909519314766, -0.01901470310986042, -0.02533791773021221, -0.010228288359940052, 0.015132158994674683, 0.005012762267142534, 0.007528530899435282, -0.00881645455956459, 0.01739259622991085, 0.0031447105575352907, -0.0261039137840271, 0.02222887985408306, 0.003007657593116164, 0.01776808314025402, 0.018729332834482193, 0.004276806488633156, 0.022454172372817993, -0.01850404031574726, -0.01751275174319744, -0.004276806488633156, -0.010551207698881626, -0.0018051577499136329, 0.0008767640683799982, -0.004930155351758003, -0.004648539237678051, -0.011452378705143929, 0.005211771000176668, -2.5008075681398623e-05, -0.015410020016133785, -0.0040027000941336155, 0.005790022201836109, 0.017873220145702362, 0.008869022130966187, -0.009109335020184517, -0.03502550348639488, -0.010889147408306599, 0.0071342685259878635, -0.02287471853196621, 0.008283261209726334, 0.008651239797472954, -0.01297685969620943, -0.002925050212070346, 0.000825603841803968, 0.007310748100280762, -0.03625710308551788, 0.007659951690584421, -0.015019512735307217, 0.0248723141849041, 0.0006256565684452653, -0.007757578510791063, 0.0004271173966117203, 0.020681869238615036, -0.00036539658321999013, -0.004641029518097639, 0.011655142530798912, -0.009627507999539375, -0.0005651091923937201, 0.012323510833084583, -0.009297078475356102, 0.011039341799914837, 0.0012607004027813673, -0.040943194180727005, -0.009319608099758625, -0.007802636828273535, -0.002769222715869546, 0.005320662632584572, 0.002151545137166977, 0.005887649022042751, -0.006908976007252932, -0.013562620617449284, 0.011872924864292145, 0.00583883561193943, -0.005857610143721104, 0.004479569848626852, 0.006984073668718338, -0.00369667774066329, 0.019059762358665466, -1.450615036446834e-05, 0.004303090274333954, 0.0041641597636044025, 0.00010056033352157101, -0.02957342192530632, 0.002035144018009305, 0.0057036601938307285, 0.021177513524889946, -0.0048775868490338326, -0.005823816172778606, 0.009049256332218647, 0.010453580878674984, 0.0011902963742613792, 0.0024819744285196066, 0.003501423867419362, -0.0010738951386883855, -0.026914967224001884, -0.008050459437072277, 0.02273954264819622, -0.025202743709087372, -0.01604083925485611, -0.007344542071223259, 0.002179706934839487, 0.004085307475179434, -0.0001153451667050831, 0.003347473917528987, 0.011782808229327202, 0.0055910139344632626, 0.009244509972631931, 0.011121949180960655, -0.03649741783738136, -0.006195548921823502, 0.005230545531958342, -0.018338825553655624, -0.019420230761170387, 0.0060415989719331264, 0.029408207163214684, 0.000965942454058677, 0.0019262525020167232, -0.0033793903421610594, -0.0018445838941261172, -0.019585445523262024, 0.012751566246151924, 0.0027898745611310005, 0.004314355086535215, -0.006417086813598871, 0.024647021666169167, 0.004303090274333954, -0.008696298114955425, 0.026314185932278633, 0.031030314043164253, 0.008508553728461266, 0.011775298044085503, 0.015470098704099655, -0.005549710243940353, -0.02434663102030754, 0.011151988059282303, 0.006882691755890846, 0.025818543508648872, -0.014148381538689137, 0.013705305755138397, -0.012969349510967731, -0.015425039455294609, -0.030369454994797707, -0.006079148035496473, 0.007156798150390387, -0.007532285992056131, 0.004036494065076113, -0.003771775169298053, -0.038840461522340775, 0.00472739152610302, -0.0015028900234028697, 0.0006383293075487018, -0.0016746757319197059, -0.0020670604426413774, -0.022424133494496346, 0.0041941991075873375, 0.006766290403902531, 0.00101663323584944, -0.02632920630276203, 0.006676173768937588, 0.020051049068570137, -0.0030132897663861513, -0.014591457322239876, -0.023054951801896095, 0.0174076147377491, 0.016942011192440987, 0.010716422460973263, 0.01851905882358551, 0.01043856143951416, -0.011249614879488945, -0.007258179597556591, -0.016821853816509247, 0.011662651784718037, 0.006942769978195429, 0.014651535078883171, 0.011467398144304752, -0.024797216057777405, 0.015740450471639633, -0.00955992005765438, 0.015162198804318905, 0.005632317624986172, 0.009049256332218647, 0.016311191022396088, -0.0012841683346778154, 0.025382976979017258, -0.01416340097784996, 0.016191035509109497, 0.001975066028535366, 0.017873220145702362, -0.011647632345557213, -0.012210863642394543, 0.007562324870377779, -0.026945006102323532, -0.006075392942875624, 0.013630207628011703, -0.007667461410164833, -0.002818036125972867, 0.0037867948412895203, 0.004565931856632233, -0.004956439137458801, 0.014358654618263245, 0.006762535776942968, 0.017708005383610725, -0.0036103154998272657, 0.01379542239010334, -0.011887944303452969, 0.024827254936099052, -0.00730323838070035, -0.013314798474311829, -0.0009537391015328467, -0.01652146503329277, -0.004517118446528912, 0.0028048940002918243, 0.016446366906166077, -0.020081089809536934, -0.004085307475179434, 0.013269740156829357, -0.012331020087003708, 0.008425947278738022, 0.008343339897692204, -0.011339732445776463, -0.0015432549407705665, -0.010964244604110718, -0.0023280244786292315, 0.008936610072851181, 0.006638624705374241, 0.009274548850953579, 0.019270034506917, 0.007727539632469416, 0.0009753296035341918, -0.019465288147330284, 0.03208167850971222, -6.089943053666502e-05, -0.00605661841109395, -0.01535745244473219, 0.0051329187117516994, -0.012323510833084583, 0.0014399958308786154, 0.025307878851890564, -0.044698070734739304, 0.009244509972631931, -0.006026579532772303, -0.007997890934348106, -0.004490834195166826, -0.017437655478715897, -0.002395612420514226, 0.01739259622991085, 0.01890956610441208, -0.011670161969959736, -0.0033343317918479443, -0.03154097869992256, -0.0031015295535326004, 0.0077125197276473045, -0.0161760151386261, 0.0066198501735925674, 0.0050202724523842335, -0.002885623835027218, 0.0019375171978026628, 0.0036741483490914106, -0.00870380736887455, -0.004434511065483093, 0.013923089019954205, 0.011482417583465576, 0.013945617713034153, 0.02398616261780262, 0.008733847178518772, -0.00478371512144804, -0.0013292268849909306, 0.00832081027328968, 0.0020445312839001417, 0.01291678100824356, -0.00951486174017191, 0.005072840489447117, -0.015830567106604576, 0.02248421125113964, -3.960223330068402e-05, -0.013495032675564289, 0.02448180690407753, -0.008283261209726334, 0.000874417251907289, 0.0033681257627904415, -0.0030602258630096912, 0.011459888890385628, 0.007487227208912373, 0.013750364072620869, -0.007434659171849489, -0.019735639914870262, 0.007513511460274458, -0.003242337377741933, -0.019164899364113808, 0.0049977428279817104, -0.010889147408306599, -0.0003055532288271934, 0.00671747699379921, -0.005925198085606098, 0.015830567106604576, 0.0056473370641469955, -0.005388250108808279, 0.029047738760709763, 0.0035802763886749744, 0.0011865415144711733, -0.030414514243602753, -0.0003006249316968024, -0.013735344633460045, -6.65537481836509e-06, 0.022679464891552925, 0.009522370994091034, 0.01827874779701233, 0.008996688760817051, -0.01602582074701786, -0.018849488347768784, -0.003927602432668209, 0.018218670040369034, -0.0034676301293075085, 0.009364666417241096, -0.0018896424444392323, -0.007750068791210651, 0.00832081027328968, 0.009026727639138699, -0.005286868661642075, -0.0017732412088662386, 0.00369667774066329, -0.02014116756618023, 0.010033034719526768, -0.013149583712220192, -0.028266724199056625, 0.009041747078299522, 0.009604978375136852, -0.00889155175536871, -0.00945478305220604, -0.015950722619891167, 0.008959139697253704, 0.0013198397355154157, -0.002038898877799511, 0.021898450329899788, -0.02225891873240471, 0.013157092966139317, 0.009942918084561825, 0.002545807510614395, -0.011332222260534763, -0.005162957590073347, -0.010588756762444973, 0.004321864806115627, 0.003860014956444502, -0.026419322937726974, 0.002506381133571267, 0.0035708891227841377, 0.006777555216103792, -0.02275456301867962, 0.015012003481388092, 0.002395612420514226, 0.009717624634504318, -0.0019206202123314142, 0.01952536776661873, 0.0024256512988358736, -0.016926990821957588, -0.011459888890385628, -0.011933003552258015, 0.010784010402858257, -0.03505554422736168, 0.0075510600581765175, -0.006417086813598871, -0.00456217722967267, 0.00013189010496716946, -0.004141630604863167, 0.01304444670677185, 0.00146064767614007, -0.0055121611803770065, 0.01887952722609043, 0.0017028372967615724, 0.022904757410287857, -0.018804430961608887, -0.010596266016364098, -0.000940596975851804, 0.002709144726395607, -0.0061467355117201805, -0.006713722366839647, -0.0036666386295109987, -0.016100918874144554, -0.02325020544230938, -0.00870380736887455, 0.0053995149210095406, -0.005763737950474024, -0.014651535078883171, 0.005741208791732788, 0.008358359336853027, 0.010964244604110718, -0.0026002530939877033, -0.0028011391405016184, -0.00819314457476139, -0.00369667774066329, -0.0049339099787175655, 0.0006688376888632774, 0.00945478305220604, 0.01136977132409811, -0.010033034719526768, 0.002707267180085182, -0.001776057411916554, 0.0049414196982979774, 0.005185486748814583, -0.012991879135370255, -0.004453285597264767, -0.012188334949314594, 0.0045471577905118465, 0.01013066153973341, -0.0034188167192041874, 0.009169412776827812, 0.006319459993392229, 0.022919777780771255, -0.005947727244347334, 0.00982276163995266, -0.011024322360754013, 0.008095517754554749, -0.016596561297774315, 0.015379981137812138, -0.011279654689133167, -0.020216263830661774, -0.009191942401230335, -0.007975361309945583, 0.0015357452211901546, -0.0012531905667856336, -0.010708913207054138, 0.0008476637885905802, 0.01403573527932167, 0.027500728145241737, -0.009469803422689438, 0.007400865200906992, 0.0055422005243599415, -0.01354760117828846, -0.0038262209855020046, -0.02484227530658245, 0.0060641285963356495, -0.026194030418992043, 0.021928489208221436, -0.005099124740809202, -0.016431346535682678, 0.005380740389227867, -0.014125851914286613, 0.008996688760817051, -0.010896656662225723, -0.021537981927394867, -0.006751270964741707, -0.008854002691805363, 0.0019112330628558993, 0.009702605195343494, -0.00686391768977046, 0.0032442149240523577, 0.015455079264938831, -0.023790908977389336, -0.02400118112564087, -0.007671216502785683, 0.016206054016947746, -0.010641325265169144, 0.02586360089480877, 0.010904166847467422, -0.021928489208221436, 0.004697352647781372, -0.0006467778002843261, 0.00042969887726940215, -0.018203649669885635, 0.0013508175034075975, 0.002196603687480092, -0.0033155574928969145, -0.01951034739613533, -1.688228439888917e-05, 0.01604083925485611, -0.0019600463565438986, -0.007175572216510773, 0.00720936618745327, 0.003094019601121545, -0.00030625725048594177, -0.01341242529451847, -0.0031559751369059086, -0.039951905608177185, 0.018218670040369034, 0.004284316208213568, -0.004438266158103943, -0.011850396171212196, -0.0038712795358151197, -0.024451768025755882, -0.0022078684996813536, 0.009004198014736176, 0.009890349581837654, 0.0029081532265990973, -0.012188334949314594, -0.023941103368997574, 0.019930893555283546, -0.0014399958308786154, -0.029393186792731285, 0.005947727244347334, -0.0025101362261921167, 0.002401244593784213, 0.009447273798286915, -0.0014043244300410151, -0.02012614719569683, -0.031631093472242355, -0.0015901909209787846, -0.009619997814297676, -0.03094019740819931, 0.0005514977383427322, -0.0020088597666472197, 0.013570129871368408, -5.1262886699987575e-06, -0.0022191330790519714, -0.008418437093496323, -0.022964835166931152, 0.004802489187568426, -0.012488724663853645, 0.015575234778225422, 0.004393207374960184, 0.019585445523262024, -0.008553612977266312, 0.004787469748407602, 0.013652737252414227, -0.006379538215696812, -0.006000295281410217, 0.010889147408306599, 0.0016972050070762634, 0.010979264043271542, 0.010701403021812439, -0.007239405065774918, -0.015117139555513859, 0.0013968147104606032, -0.0024669549893587828, 0.012368569150567055, -0.0017732412088662386, -0.006709967274218798, 0.010190739296376705, -0.02400118112564087, 0.0025664593558758497, -0.0027316738851368427, -0.009424744173884392, 0.02846197783946991, -0.020201245322823524, -0.0060641285963356495, 0.014583947136998177, 0.017858201637864113, -0.01291678100824356, -0.009830270893871784, -0.01393059827387333, 0.01874435320496559, 0.004757430870085955, -0.009717624634504318, 0.0031634848564863205, 0.002932559931650758, -0.011219576001167297, -0.0005153570673428476, -0.0050465562380850315, -0.008786414749920368, 0.020937200635671616, 0.004333129618316889, -0.0005055004730820656, -0.01553017646074295, -0.029633499681949615, -0.0005510284099727869, -0.028386879712343216, -0.023265225812792778, 0.01168518140912056, -0.014936905354261398, 0.01527484506368637, 0.0021684421226382256, 0.0019149879226461053, -0.001596761983819306, -0.01604083925485611, -0.03655749559402466, 0.01775306463241577, -0.001636188244447112, 0.01255631260573864, 0.007160552777349949, -0.002239784924313426, 0.011182027868926525, -0.008666259236633778, -0.008801434189081192, 0.00010402186308056116, 0.01287172269076109, 0.024586942046880722, 0.016115937381982803, -0.003619702532887459, -0.008425947278738022, -0.023145070299506187, 0.002072692848742008, 0.0127440569922328, -0.005989030934870243, -0.005868874490261078, -0.008215673267841339, 0.007288218475878239, -0.003129691118374467, 0.013757874257862568, -0.009259529411792755, -0.004314355086535215, -0.013660247437655926, 0.006435861345380545, -0.02224389836192131, -0.01198557112365961, 0.014884337782859802, -0.020922182127833366, 0.015950722619891167, 0.005384495481848717, -0.009439763613045216, 0.0025364202447235584, -0.0211474746465683, 0.022183820605278015, 0.003324944758787751, -0.004674823489040136, -0.013915578834712505, 0.007975361309945583, -0.00919945165514946, 0.0014531378401443362, 0.003602805780246854, -0.01626613177359104, 0.003612192813307047, 0.017422635108232498, -0.006728741806000471, 0.011332222260534763, 0.005958991590887308, -0.014576436951756477, -0.0012869845377281308, -0.00739335548132658, 0.007291973568499088, 0.0046109906397759914, 0.003860014956444502, -0.004502099007368088, 0.00045269750989973545, 0.007258179597556591, -0.002251049503684044, 0.009837781079113483, 0.00407404312863946, 0.011797827668488026, -0.027260415256023407, -0.008621200919151306, 0.007870225235819817, -0.0021196287125349045, 0.0020032275933772326, 0.008606180548667908, -0.004734901711344719, 0.017302479594945908, 0.013382386416196823, 0.005211771000176668, 0.008035439066588879, -0.032742537558078766, 0.017377575859427452, 0.022213859483599663, -0.003905073506757617, 0.007547305431216955, -0.004141630604863167, 0.01410332228988409, 0.006420841906219721, 0.009221981279551983, 0.003026431892067194, 0.001049488433636725, -0.02125261165201664, 0.004738656338304281, 0.0015310515882447362, -0.007757578510791063, -0.01013066153973341, 0.010085603222250938, 0.01310452539473772, -0.004021474625915289, -0.008080498315393925, 0.00500149792060256, -0.014050754718482494, 0.02263440564274788, -0.029348129406571388, -0.00043321907287463546, -0.04052264615893364, 0.006357009056955576, 0.021402806043624878, -0.007780107669532299, 0.006375783123075962, 0.03703811764717102, 0.011587554588913918, 0.017197342589497566, 0.0016756143886595964, -0.009319608099758625, -0.009319608099758625, -0.00844847597181797, 0.019705601036548615, -0.020681869238615036, -0.003912582993507385, 7.204672874649987e-05, -0.00039754773024469614, 0.0018567872466519475, -0.0021064868196845055, 0.0013170235324651003, -0.021207552403211594, -0.008178125135600567, -0.018323805183172226, -0.005545955151319504, 0.00130482017993927, 0.0020576731767505407, -0.012601371854543686, 6.0488742747111246e-05, -0.004310600459575653, 0.0071079847402870655, 0.009710115380585194, 0.003131568431854248, 0.001355511019937694, -0.005992785561829805, -0.0033174350392073393, -0.0236106738448143, -0.006893956568092108, 0.025698386132717133, 0.009304588660597801, 0.023956123739480972, 0.009980466216802597, 0.0027917518746107817, -0.010363464243710041, 0.003537095384672284, 0.006390803027898073, -0.000695121823810041, 0.005452083423733711, 0.0054633477702736855, 0.015635313466191292, -0.0023355341982096434, -0.006792574655264616, -0.012458685785531998, 0.01951034739613533, -0.014674064703285694, 0.015515157021582127, 0.010461091063916683, 0.025007490068674088, -0.0029832508880645037, -0.004487079568207264, -0.003935112617909908, -0.011512456461787224, -0.00968758575618267, -0.003174749668687582, -0.006559772416949272, 0.005328172352164984, 0.0073332772590219975, -0.018338825553655624, 0.01062630582600832, -0.00067963293986395, 0.005943972151726484, 0.023265225812792778, 0.0013517561601474881, -0.007637422531843185, -0.01713726483285427, -0.032742537558078766, 0.0034732623025774956, -0.0037736527156084776, -0.007982871495187283, 0.015590254217386246, 0.007727539632469416, 0.02798135206103325, -0.007975361309945583, -0.004558422137051821, -0.004156650044023991, -0.024677060544490814, -0.013374876230955124, 0.02446678653359413, 0.027530767023563385, -0.014816749840974808, 0.011099420487880707, 0.030369454994797707, 0.019450269639492035, -0.02198856696486473, -0.008951629512012005, -0.02400118112564087, 0.012038139626383781, -0.004776204936206341, -0.0035389726981520653, 0.01137728150933981, -0.012714018113911152, 0.0020970995537936687, 0.008335829712450504, -0.006833878345787525, -0.004644784610718489, 0.02149292267858982, -0.0011480540269985795, -0.020096108317375183, -0.028236685320734978, -0.0035652569495141506, 0.012698998674750328, 0.012789115309715271, -0.015289864502847195, 0.007160552777349949, 0.003492036834359169, -0.01447130087763071, -0.0034188167192041874, 0.017182322219014168, 0.03307296708226204, 0.015830567106604576, -0.0027410611510276794, 0.010904166847467422, -0.010663853958249092, -0.0029569666367024183, 0.0096350172534585, -0.022273937240242958, 0.01442624256014824, 0.0015423162840306759, -0.018489019945263863, -0.012443666346371174, 0.009101824834942818, -0.019570425152778625, -0.00919945165514946, 0.008869022130966187, 0.022694483399391174, 0.010213268920779228, 0.002091467147693038, 0.011136968620121479, 0.015259825624525547, -0.003407551907002926, -0.0012719649821519852, -8.337003237102181e-05, 0.0023843476083129644, -0.014884337782859802, -0.01790325902402401, 0.009417234919965267, -0.02212374284863472, -0.0026002530939877033, 0.0032085434067994356, -0.010663853958249092, -0.009026727639138699, -0.013442464172840118, -0.008057968690991402, -0.01565033197402954, 0.015282354317605495, -0.009905369020998478, 0.013202152214944363, -0.020216263830661774, -0.008726336993277073, -0.019315093755722046, -0.0003844056627713144, -0.003533340524882078, 0.001904662000015378, 0.015304883942008018, -0.0017375699244439602, 0.014148381538689137, 0.014651535078883171, -0.009612488560378551, -0.007569834589958191, 0.0013695918023586273, -0.0026809831615537405, 0.027876216918230057, -0.0013705305755138397, -0.005136673338711262, 0.0115049472078681, 0.017077187076210976, 0.023415420204401016, -0.0020482861436903477, 0.002020124578848481, -0.008666259236633778, -0.015755468979477882, -0.011887944303452969, -0.0036103154998272657, 0.0037811624351888895, -0.006086657755076885, 0.006544752977788448, 0.020411517471075058, -0.007682480849325657, 0.03490534797310829, 0.002035144018009305, 0.0028236685320734978, -0.00708170048892498, 0.009529881179332733, 0.011655142530798912, 0.014208459295332432, 0.0035708891227841377, -0.00025110747083090246, 0.007682480849325657, -0.008718827739357948, 0.014831769280135632, -0.00906427577137947, -0.011970551684498787, -0.011963042430579662, 0.010018015280365944, 0.003816833719611168, -0.011354751884937286, -0.01862419582903385, 0.010250817984342575, -0.012721527367830276, 0.012653939425945282, 0.011459888890385628, 0.0034056745935231447, -0.0075510600581765175, 0.029197933152318, 0.018338825553655624, -0.014899357222020626, -0.0108816372230649, -0.015410020016133785, 0.01198557112365961, -0.006646134424954653, 0.004712372086942196, 0.0006359824910759926, 0.020681869238615036, 0.005636072251945734, 0.008418437093496323, -0.004021474625915289, -0.026509441435337067, -0.0033193123526871204, -0.00646214559674263, -0.007412129547446966, -0.008771395310759544, 0.008643729612231255, -0.011452378705143929, 0.017617888748645782, -0.003298660507425666, 0.013187132775783539, 0.03178128972649574, -0.010506149381399155, 0.011978061869740486, -0.011715220287442207, -0.011046851985156536, -0.004614745266735554, 0.001933762338012457, 0.011700200848281384, -0.0077425590716302395, -0.020907161757349968, 0.005211771000176668, -0.0020539183169603348, 0.0029569666367024183, 0.013637717813253403, -0.006402067374438047, 0.007967852056026459, 0.016206054016947746, 0.010611286386847496, 0.01802341639995575, -0.0019994727335870266, -0.012826664373278618, 0.014936905354261398, 0.009860310703516006, 0.023715810850262642, 0.008899061940610409, -0.0005561913712881505, -0.005320662632584572, 0.00801291037350893, -0.004460795316845179, 0.008328319527208805, -0.008718827739357948, -0.0026847380213439465, -0.0062330979853868484, 0.01889454759657383, -0.014629005454480648, 0.013089505955576897, 0.004227993078529835, -0.00919945165514946, -0.0024688325356692076, -0.008065478876233101, 0.005260584410279989, 0.005482122302055359, -0.025428036227822304, -0.018549097701907158, -0.008808944374322891, -0.004888851661235094, 0.026749752461910248, 0.00017624460451770574, -0.0031709945760667324, -0.009049256332218647, 0.012721527367830276, -0.005606033373624086, -0.023430440574884415, -0.0108741270378232, -0.00814057607203722, 0.013314798474311829, 0.021718215197324753, 0.0055985236540436745, 0.006758780684322119, 0.014396203681826591, 0.004348149057477713, -0.005268094129860401, -0.016461385414004326, -0.0236106738448143, -0.0057487185113132, 0.015229785814881325, -0.004017719533294439, -0.005204261280596256, -0.025773484259843826, 0.011857905425131321, 0.006319459993392229, 0.03018922172486782, 0.0017441409872844815, -0.006439616438001394, -0.003923847805708647, 0.0007932180305942893, 0.013029427267611027, -0.012721527367830276, 0.01062630582600832, 0.010175719857215881, 9.774417412700132e-05, -0.019089801236987114, -0.014095813035964966, 0.017587849870324135, -0.020591752603650093, -0.008072988130152225, 0.0037792848888784647, 0.010100622661411762, -0.015545195899903774, 0.006676173768937588, 0.018819449469447136, -0.014148381538689137, 0.007460942957550287, -0.01230098120868206, 0.00919945165514946, 0.004430756438523531, 0.017002088949084282, -0.006124206352978945, 0.007040396798402071, 0.012083197943866253, -0.009777703322470188, 0.002711022039875388, 0.009732644073665142, -0.005117899272590876, -0.013960637152194977, 0.015500137582421303, -0.017212361097335815, 0.01914987899363041, -0.015319903381168842, -0.01472663227468729, 0.006631114985793829, -0.010543698444962502, -0.003124058712273836, -0.002971986075863242, -0.009574939496815205, 0.01677679643034935, 0.005159202963113785, -0.03196152299642563, 0.015470098704099655, -0.022664444521069527, 0.006882691755890846, -0.03259234502911568, 0.0035201983992010355, 0.0016052104765549302, 0.009019217453897, -0.0260888934135437, 0.0006519407615996897, -0.006300685927271843, -0.02883746474981308, -0.02197354845702648, -0.012991879135370255, 0.006676173768937588, -0.002545807510614395, 0.000704978418070823, -0.013329817913472652, 0.022198840975761414, -0.008696298114955425, -0.016686679795384407, -0.007487227208912373, 0.026073874905705452, 0.013442464172840118, 0.013059466145932674, -0.0010738951386883855, 0.020711908116936684, 0.018218670040369034, 0.027380572631955147, -0.00863622035831213, 0.0021177513990551233, -0.016476405784487724, -0.0033080477733165026, -0.00937968585640192, -0.020051049068570137, -0.0037698978558182716, 0.0003060225863009691, -0.017933297902345657, 0.002359940903261304, -0.028507035225629807, -0.02398616261780262, 0.006792574655264616, -0.00796034187078476, 0.009860310703516006, -0.005891404114663601, 0.0058726295828819275, -0.010476110503077507, -0.017617888748645782, 0.012661449611186981, 0.01478671096265316, 0.05271849036216736, 0.018428942188620567, 0.02098225988447666, -0.004791224841028452, 0.004704862367361784, -0.020216263830661774, 0.0011349119013175368, -0.005797531921416521, -0.00881645455956459, 0.013352347537875175, -0.010513659566640854, -0.009935407899320126, 0.018684273585677147, 0.00394262233749032, -0.019450269639492035, -0.004626010078936815, -0.010100622661411762, 0.0041153463535010815, 0.002803016686812043, 0.014839278534054756, 0.008350849151611328, 0.017347536981105804, 0.00398017093539238, 0.011722729541361332, 0.012518764473497868, 0.010656344704329967, -0.007415884640067816, 0.0036872904747724533, 0.016626600176095963, 0.01628115214407444, 0.03160105645656586, -0.01862419582903385, -0.015184727497398853, 0.00796034187078476, -9.005840547615662e-05, 0.011429849080741405, -0.016431346535682678, 0.022769581526517868, 0.010085603222250938, -0.012391097843647003, -0.008974159136414528, -0.017738044261932373, 0.021718215197324753, -0.010611286386847496, -0.00845598615705967, -0.003234827658161521, -0.015395000576972961, 0.0002766875841189176, 0.001507583656348288, 0.007975361309945583, 0.004573441576212645, 0.006203059107065201, -0.012150785885751247, -0.00534694641828537, 0.0035164435394108295, -0.011835376732051373, 0.012533783912658691, 0.0008415621123276651, -0.0014634637627750635, -0.009897858835756779, -0.0050465562380850315, -0.01728745922446251, 0.014381183311343193, 0.008050459437072277, 0.0033211898989975452, 0.008027929812669754, -0.00047123723197728395, -0.0007960341754369438, -0.0025796014815568924, -0.007055416237562895, 0.01628115214407444, -0.008208164013922215, 0.0006035966798663139, -0.018218670040369034, -0.009267039597034454, -0.009101824834942818, -0.027620883658528328, -0.017002088949084282, -0.01217331551015377, -0.008726336993277073, 0.0010579369263723493, -0.030264317989349365, -0.006405822467058897, -0.008748866617679596, -0.007588609121739864, -0.004179179668426514, 0.0075735896825790405, -0.016461385414004326, 0.015064571984112263, 0.012053159065544605, -0.017497733235359192, 3.5458665479382034e-06, 0.005380740389227867, 0.0018060964066535234, 0.01580052822828293, -0.005850100424140692, -0.016566522419452667, -0.007952832616865635, 0.009612488560378551, 0.004348149057477713, 0.013254720717668533, 0.01098677422851324, 0.00764868687838316, 0.0034657525829970837, 0.017587849870324135, -0.009214471094310284, -0.009492332115769386, 0.008478514850139618, 0.005835080984979868, 0.01018323004245758, -0.012961839325726032, -0.006109186913818121, -0.02297985553741455, 0.01676177605986595, 0.01629617251455784, 0.01824870891869068, 0.020681869238615036, 0.010738952085375786, -0.009304588660597801, 0.006890201475471258, -0.021598059684038162, -0.006721232086420059, 0.02000599168241024, 0.017002088949084282, -0.00863622035831213, 0.022093703970313072, -0.0011011180467903614, 0.015395000576972961, 0.00033958180574700236, 0.0021252611186355352, 0.011745259165763855, -0.020817045122385025, -0.013097015209496021, 0.014456281438469887, -0.00814057607203722, 0.013217171654105186, 0.02524780109524727, -0.006364518776535988, 0.004505854099988937, -0.013720325194299221, -0.0072206309996545315, 0.056743718683719635, 0.02074194699525833, 0.005361966323107481, -0.003961396403610706, -0.007258179597556591, -0.03256230428814888, -0.011730239726603031, 0.014336124993860722, -0.009161902591586113, 0.00751726608723402, -0.001242864760570228, -0.014711612835526466, 0.013697795569896698, -0.005876384675502777, 0.015440059825778008, -0.005947727244347334, 0.020817045122385025, -0.027305474504828453, 0.012150785885751247, -0.009995485655963421, 0.011790317483246326, 0.008313300088047981, 0.030129143968224525, 0.0139756565913558, -0.0031691172625869513, -0.0004294642130844295, 0.02449682541191578, -0.008523574098944664, 0.012466195970773697, -0.0034113069996237755, -0.005057821050286293, -0.010250817984342575, -0.009154393337666988, -0.014831769280135632, 0.021342728286981583, -0.003007657593116164, 0.006116696633398533, 0.0011302183847874403, -0.009289569221436977, 0.01939019188284874, 0.021342728286981583, 0.014801730401813984, 0.013172113336622715, -0.021462883800268173, -0.0108816372230649, -0.018579138442873955, 0.026179011911153793, -0.01776808314025402, 0.012068178504705429, 0.005324417259544134, 0.03217179700732231, 0.0007110800943337381, -0.00876388605684042, -0.011835376732051373, 0.01144486851990223, -0.01491437666118145, -0.011257125064730644, -0.010018015280365944, -0.006631114985793829, 0.011715220287442207, 0.020576732233166695, 0.0034300812985748053, 0.002772977575659752], "5472cd78-c030-4815-a2f1-33245f14f018": [-0.013516994193196297, -0.02698865532875061, -0.012058760970830917, 0.002835244406014681, -0.03823141008615494, -0.04240211099386215, 0.00486203795298934, 0.027049100026488304, 0.02076282911002636, 0.048809271305799484, 0.010638304986059666, 0.03088735230267048, -0.002971245441585779, -0.007971173152327538, 0.023271292448043823, 0.018360143527388573, 0.0022289063781499863, -0.007378057576715946, 0.013161880895495415, -0.008877847343683243, 0.06866542249917984, -0.012557431124150753, -0.01780102774500847, 0.026429539546370506, 0.013962775468826294, -0.025296198204159737, -0.0017189023783430457, -0.007317612878978252, -0.04173721373081207, -0.016078347340226173, -0.002546242205426097, 0.02712465636432171, 0.009346295148134232, -0.008500066585838795, -0.02076282911002636, -0.008870291523635387, 0.000714477791916579, 0.01749880425632, 0.00523226335644722, 0.002857911167666316, -0.00890806969255209, 0.03823141008615494, -0.0026369094848632812, -0.01863214559853077, -0.03090246394276619, -0.007925840094685555, -0.004831815604120493, -0.001451622461900115, -0.008311175741255283, -0.03460471332073212, 0.006244715303182602, 0.01816369779407978, 0.02419307827949524, 0.008296065032482147, 0.00723827863112092, -0.045394133776426315, -0.033758487552404404, 0.07791350036859512, 0.02024904638528824, -0.04303678125143051, 0.006305160466581583, 0.0038174742367118597, 0.012232540175318718, -0.012519653886556625, 0.011567645706236362, -0.01218720618635416, -0.006282493472099304, 0.027713993564248085, 0.0011021753307431936, 0.013819219544529915, -0.03520916402339935, 0.002551908837631345, -0.04463857039809227, 0.02452552504837513, -0.0005307819228619337, -0.03291225805878639, 0.04956483095884323, -0.014174332842230797, 0.021382389590144157, -0.0002762521617114544, -0.01831481046974659, 0.004363367334008217, 0.03726429119706154, 0.016289904713630676, 0.042613666504621506, 0.04131409898400307, -0.02224372886121273, -0.03841274604201317, -0.024495301768183708, -0.031159354373812675, 0.016274793073534966, 0.004733592737466097, -0.016743242740631104, 0.011514756828546524, -0.021850837394595146, 0.0392891950905323, 0.004200921859592199, 0.00783517211675644, 0.025145085528492928, -0.017619693651795387, -0.010524971410632133, 0.00037730851909145713, -0.01635034941136837, 0.004567368887364864, 0.0127614326775074, -0.0030109123326838017, 0.015088562853634357, 0.01962948590517044, -0.02355840615928173, -0.014990339055657387, 0.013509439304471016, -0.06340672075748444, 0.017529025673866272, 0.0007791727548465133, -0.061442259699106216, -0.034090932458639145, -0.01943304017186165, -0.04270433261990547, -0.021291721612215042, -0.03106868825852871, 0.02733621373772621, 0.006724496837705374, 0.016894353553652763, 0.010880084708333015, -0.006766052916646004, 0.032458920031785965, 0.00884006917476654, 0.014423668384552002, 0.02795577421784401, -0.006259826943278313, 0.02077794075012207, -0.011733869090676308, 0.008212952874600887, -0.023845519870519638, 0.026293538510799408, 0.014333001337945461, 0.02420818991959095, 0.05068306252360344, -0.0030581350438296795, 0.025235753506422043, -0.02142772264778614, -0.03808029741048813, -0.0281522199511528, 0.01894948072731495, 0.014725892804563046, 0.016305016353726387, -0.049655500799417496, 0.05627421662211418, -0.04086076468229294, 0.050441283732652664, -0.05056217312812805, -0.0006984221399761736, -0.010177413001656532, 0.012610320933163166, 0.0033036924432963133, 0.0013694551307708025, -0.030509572476148605, 0.02975401096045971, 0.031794026494026184, 0.0343024916946888, 0.010547637939453125, -0.03726429119706154, -0.021397501230239868, 0.0013363993493840098, 0.04611947014927864, 0.031491801142692566, 0.07132500410079956, 0.03433271124958992, -0.006172937341034412, 0.002638798439875245, 0.033426038920879364, 0.000547782052308321, 0.023513073101639748, 0.04143499210476875, 0.009346295148134232, -0.009520074352622032, 0.03218691796064377, 0.03239847719669342, 0.049141716212034225, -0.04264388978481293, -0.021835725754499435, -0.007634948473423719, -0.006112492177635431, -0.02289351262152195, -0.011998316273093224, 0.010744083672761917, -0.023679295554757118, 0.004061142913997173, 0.001734958030283451, -0.004491813015192747, -0.008983626030385494, 0.006112492177635431, -0.002833355451002717, 0.034906938672065735, -0.014348112046718597, -0.048023488372564316, -0.018601922318339348, -0.019206373021006584, -0.0127614326775074, 0.035088274627923965, -0.018269475549459457, -0.025734422728419304, -0.042946115136146545, 0.04708658903837204, -0.02046060375869274, 0.00024602969642728567, -0.011091642081737518, -0.04974616691470146, 0.03578339144587517, 0.005368264392018318, 0.03892652690410614, -0.04240211099386215, 0.021835725754499435, 0.02420818991959095, -0.02451041340827942, 0.02041527070105076, -0.006437383592128754, 0.05231507495045662, 0.028001107275485992, -0.010200079530477524, 0.004933816380798817, 0.00034637769567780197, 0.001832236535847187, 0.00874940212816, -0.034272268414497375, -0.007094722241163254, -0.0043671452440321445, 0.03188469260931015, -0.03708295524120331, -0.02225884050130844, 0.03215669468045235, -0.0043973675929009914, 0.012051205150783062, -0.03433271124958992, -0.005292708054184914, -0.024313967674970627, -0.005304041318595409, 0.004472923930734396, -0.011733869090676308, -0.0007810616516508162, -0.010706305503845215, 0.06065647304058075, -0.021639280021190643, -0.01719657890498638, -0.018919259309768677, 0.01780102774500847, -0.014914783649146557, 0.04300655797123909, 0.023120181635022163, 0.010343636386096478, -0.025296198204159737, 0.018239254131913185, 0.007600948214530945, -0.002425352344289422, 0.0051755961030721664, 0.01585168018937111, 0.02275751158595085, -0.03093268722295761, -0.009973411448299885, 0.021533502265810966, 0.021820615977048874, 0.016471240669488907, -0.030222458764910698, 0.007710504811257124, 0.025945980101823807, -0.01651657372713089, 0.02451041340827942, -0.015640122815966606, 0.013297881931066513, 0.025447310879826546, 0.015791235491633415, -0.022953957319259644, -0.01832992024719715, 0.014854338020086288, 0.005379597656428814, -0.023785075172781944, 0.024570858106017113, -0.003162024775519967, 0.011643202044069767, 0.023649074137210846, -0.02222861908376217, 0.01911570504307747, 0.0033716929610818624, 0.013448993675410748, -0.031189577654004097, 0.009761854074895382, -0.006203159689903259, 0.007283612620085478, -0.03545094281435013, 0.004057365003973246, 0.005594932474195957, 0.0040498096495866776, 0.030781574547290802, 0.01350188348442316, 0.019191261380910873, 0.02580997906625271, -0.01783125102519989, 0.0061502703465521336, -0.017226802185177803, 0.02012815698981285, -0.001046452671289444, 0.013872108422219753, 0.007457391824573278, -0.03239847719669342, 0.010215191170573235, -0.034272268414497375, -0.03741540387272835, 0.007332724053412676, -0.037052735686302185, 0.04475945979356766, 0.03980297967791557, 0.003947808872908354, -0.015224563889205456, -0.00794095080345869, -0.007820061407983303, -0.007865394465625286, -0.008016507141292095, 0.0021382388658821583, 0.0015413453802466393, -0.026746876537799835, -0.018057918176054955, -0.02499397285282612, -0.06993477046489716, 0.016637463122606277, 0.034121155738830566, -0.04037720337510109, 0.025447310879826546, 0.010215191170573235, -0.023679295554757118, -0.005946268793195486, -0.012549876235425472, -0.006138937082141638, -0.04282522201538086, -0.03282158821821213, -0.026958433911204338, -0.03650873154401779, -0.042281217873096466, -0.02500908449292183, -0.018586812540888786, -0.007090944331139326, 0.007872950285673141, 0.004884704947471619, 0.0058631571009755135, -0.007257167715579271, -0.0013193992199376225, 0.015957457944750786, 0.0020079046953469515, -0.0023006845731288195, -0.015942346304655075, -0.009006292559206486, 0.0010077301412820816, -0.0010294525418430567, 0.028257999569177628, 0.002684132196009159, 0.0611400343477726, -0.007298723794519901, -0.03847318887710571, 0.024782415479421616, 0.0014620114816352725, -0.0068680536933243275, -0.019357483834028244, -0.05409820005297661, -0.04599858075380325, -0.0027049100026488304, -0.03137091174721718, 0.035571832209825516, -0.000249807519139722, -0.027018878608942032, 0.007283612620085478, -0.006025602575391531, -0.057483114302158356, 0.020898830145597458, 0.026036648079752922, -0.03602517023682594, -0.02747221477329731, -0.03384915366768837, 0.05234529823064804, -0.009542740881443024, -0.04333900660276413, 0.026369094848632812, 0.00723450118675828, 0.022349508479237556, -0.006546940188854933, 0.021185943856835365, 0.022938845679163933, 0.009920521639287472, -0.011862315237522125, 0.014340556226670742, -0.026066871359944344, -0.009716520085930824, -0.015594788827002048, -0.00023505045101046562, -0.006169159431010485, 0.023286404088139534, -0.01946326345205307, -0.009013848379254341, 0.01882859133183956, -0.02079305239021778, 0.007128722500056028, -0.022802844643592834, -0.009157405234873295, 0.013010768219828606, -0.02325618267059326, 0.021865949034690857, -0.016879243776202202, -0.03774785250425339, 0.021473057568073273, -0.022817956283688545, 0.031310468912124634, 0.008537844754755497, -0.004669369664043188, 0.00932362861931324, 0.01168098021298647, 0.007888061925768852, 0.05515598505735397, 0.01225520670413971, -0.010706305503845215, 0.03711317852139473, -0.04590791463851929, -0.01764991506934166, 0.0009406740427948534, 0.06920942664146423, -0.026928210631012917, 0.038684748113155365, -0.001970126526430249, 0.02467663772404194, 0.023331737145781517, -0.010759195312857628, 0.0004540452209766954, -0.024117521941661835, 0.031038464978337288, 0.07640237361192703, -0.014907227829098701, -0.0038193631917238235, -0.0008424510597251356, -0.005708266980946064, 0.010993419215083122, 0.039500754326581955, -0.008787179365754128, 0.005345597397536039, -0.004933816380798817, 0.0006030324730090797, -0.01832992024719715, -0.00850762240588665, -0.03919852897524834, -0.022183284163475037, -0.03617628291249275, -0.0022024617064744234, 0.010245413519442081, 0.004442701581865549, -0.00490359403192997, 0.00865117833018303, -0.0771881565451622, 0.0046769254840910435, 0.023331737145781517, -0.011816981248557568, 0.001190009294077754, -0.024147745221853256, 0.013766329735517502, -0.049443941563367844, -0.03251936659216881, -0.00510381767526269, 0.02845444530248642, 0.004873371217399836, 0.02095927484333515, -0.017226802185177803, -0.0028994670137763023, 0.02434419095516205, 0.004144254606217146, 0.020581495016813278, -0.01959926448762417, -0.007948506623506546, -0.02290862426161766, 0.03798963129520416, 0.01651657372713089, -0.012073872610926628, -0.024631302803754807, -0.012587654404342175, -0.01178675889968872, -0.03321448341012001, -0.0565764419734478, 0.002381907543167472, -0.026081981137394905, 0.038170963525772095, -0.005088706500828266, 0.011794314719736576, -0.033637598156929016, -0.0071967230178415775, 0.016577018424868584, -0.006286271382123232, 0.045847468078136444, -0.0080920634791255, 0.001904959324747324, 0.012738766148686409, 0.0014195110416039824, -0.04451768100261688, 0.0070380549877882, -0.040800318121910095, -0.023346848785877228, -0.06101914495229721, 0.040981654077768326, 0.004729814827442169, -0.0007347835344262421, 0.03496738523244858, -0.012202317826449871, 0.019236594438552856, 0.027260657399892807, 0.029890011996030807, -0.004986705724149942, -0.05310085788369179, -0.045243021100759506, 0.02978423237800598, -0.02910422720015049, 0.020354826003313065, -0.001975793158635497, 0.030479349195957184, 0.01039652619510889, 0.0009671186562627554, 0.04225099831819534, 0.0024725748226046562, -0.01454455778002739, -0.005111373495310545, 0.007782283239066601, 0.000904312648344785, -0.046875033527612686, -0.020052600651979446, 0.004442701581865549, -0.016259683296084404, 0.04352033883333206, -0.011235198937356472, -0.014023221097886562, 0.01218720618635416, -0.005647821817547083, 0.006497828755527735, 0.02322595939040184, -0.0013118436327204108, 0.01496011670678854, 0.013887220062315464, 0.00218923925422132, 0.019100593402981758, -0.013343214988708496, 0.028847336769104004, -0.0025349087081849575, 0.006365605164319277, -0.017105910927057266, 0.04753992706537247, 0.007026721723377705, 0.0048167044296860695, -0.002121238736435771, 0.03496738523244858, -0.027366437017917633, -0.002028682501986623, -0.01616901531815529, -0.03137091174721718, 0.01669790782034397, -0.03321448341012001, 0.0004958371864631772, -0.03221714124083519, -0.0020097934175282717, -0.014756115153431892, 0.01112942025065422, 0.02127660997211933, 0.007332724053412676, 0.021639280021190643, -0.007438502740114927, -0.006127603352069855, -0.021548612043261528, 0.03599494695663452, -0.008885403163731098, 0.01994682289659977, 0.03511849790811539, 0.01978059858083725, 0.01586678996682167, 0.006743385922163725, 0.0076538375578820705, 0.03614605963230133, 0.005032039247453213, -0.0052247075363993645, -0.0450919084250927, -0.018435699865221977, 0.019236594438552856, -0.035239387303590775, 0.008658734150230885, -0.02112549915909767, 0.005345597397536039, -0.009036514908075333, -0.012315651401877403, -0.019040148705244064, 0.0002960856363642961, 0.008084507659077644, -0.010842306539416313, 0.030313126742839813, -0.00850762240588665, 0.0053153750486671925, -0.033939819782972336, 0.03699228912591934, 0.013229881413280964, 0.011250310577452183, 0.008280953392386436, 3.984406066592783e-05, -0.00261802040040493, 0.022032171487808228, -0.006497828755527735, -0.01881347969174385, -0.029028670862317085, 0.030056234449148178, -0.0023403516970574856, 0.011114309541881084, -0.006988943554461002, 0.04672392085194588, -0.005353152751922607, -0.004299144726246595, 0.028681112453341484, 0.0010766751365736127, 0.027577992528676987, -0.021306833252310753, 0.015368119813501835, 0.005058484151959419, 0.0017651804955676198, 0.025794869288802147, 0.028560223057866096, -0.04164654761552811, 0.03992386907339096, -0.032791368663311005, 0.026943322271108627, 0.044396791607141495, -0.021790392696857452, 0.00629004929214716, -0.015821456909179688, -0.01480144914239645, -0.008643623441457748, -0.033456262201070786, 0.009829854592680931, -0.0330633707344532, 0.015073451213538647, 0.0007187278242781758, -0.010728972963988781, 0.04469901695847511, -0.012988101691007614, -0.008696512319147587, -0.0014554002555087209, 0.0027729105204343796, 0.013932553119957447, 0.08220508694648743, -0.024767305701971054, 0.014748559333384037, -0.01686413213610649, 0.01186987105756998, 0.03808029741048813, 0.02014326862990856, -0.003071357263252139, 0.00866628997027874, 0.01366055104881525, 0.024480191990733147, 0.03137091174721718, -0.034423381090164185, -0.015806345269083977, 0.009376517497003078, 0.021971726790070534, 0.025961091741919518, -0.0016952910227701068, -0.012632987461984158, 0.009406739845871925, -0.009663631208240986, 0.027744216844439507, 0.01152986753731966, 0.0024895749520510435, 0.022651731967926025, 0.017468580976128578, 0.046361252665519714, 0.006116270087659359, -0.0009340628748759627, 0.007752060424536467, 0.009708965197205544, -0.002142016775906086, -0.006766052916646004, 0.010116968303918839, 0.016259683296084404, 0.009074293076992035, -0.016138792037963867, -0.017619693651795387, -0.025870423763990402, 0.005088706500828266, 0.008976070210337639, -0.029814455658197403, 0.0021117941942065954, -0.017861472442746162, 0.05494442954659462, -0.022153062745928764, 0.008167619816958904, -0.0036002504639327526, 0.035058051347732544, -0.011016085743904114, 0.03137091174721718, 0.011499645188450813, 0.002259128727018833, 0.0052247075363993645, -0.017604582011699677, 0.0256588663905859, -0.010290747508406639, -0.03044912777841091, 0.0030562460888177156, 0.022666843608021736, -0.039984311908483505, 0.018526367843151093, 0.019992155954241753, -0.03387937694787979, -0.010698750615119934, 0.00012372319179121405, 0.0011616757838055491, 0.01686413213610649, -0.009958299808204174, -0.0171512458473444, 0.02194150537252426, 0.03188469260931015, 0.028847336769104004, -0.017574358731508255, 0.007865394465625286, -0.010660972446203232, 0.015655234456062317, -0.010849862359464169, 0.0070078326389193535, 0.005334264133125544, -0.023936187848448753, -0.027547771111130714, 0.0281522199511528, 0.008122285827994347, 0.001524345250800252, -0.014952561818063259, -0.004608924966305494, 0.05364486575126648, -0.018753034994006157, -0.024404635652899742, 0.0145596694201231, -0.007174056023359299, -0.009618297219276428, -0.016743242740631104, 0.0067773861810564995, 0.019085481762886047, -0.0005057539674453437, 0.02652020752429962, -0.00237435195595026, 0.007963618263602257, -0.016939688473939896, 0.02633887343108654, 0.013841886073350906, 0.007257167715579271, 0.014378334395587444, 0.031794026494026184, 0.02667132019996643, 0.025129973888397217, -0.03200558200478554, 0.047026146203279495, 0.0320962518453598, -0.030041124671697617, 0.004155587870627642, 0.013630328699946404, -0.03354692831635475, -0.01981082186102867, 0.03989364579319954, -0.02860555611550808, 0.011204976588487625, -0.015972569584846497, -0.026731764897704124, 0.01454455778002739, 0.03944030776619911, -0.006399605423212051, 0.029376229271292686, 0.044427014887332916, -0.018254365772008896, 0.04134432226419449, 0.0269735436886549, 0.006675385404378176, 0.014030775986611843, -0.026429539546370506, -0.057634226977825165, 0.043429672718048096, 0.020067712292075157, -0.03384915366768837, -0.017453469336032867, 0.0027936885599046946, -0.03795940801501274, 0.0160481259226799, -0.020037490874528885, 0.023996632546186447, -0.03406070917844772, 0.019871266558766365, 0.009346295148134232, 0.021291721612215042, 0.016788575798273087, 0.021291721612215042, 0.00802406296133995, -0.0026746876537799835, 0.02927045151591301, 0.023089958354830742, -0.03221714124083519, 0.027608215808868408, -0.01128053292632103, -0.006970054470002651, -0.002085349755361676, 0.03986342251300812, -0.04627058282494545, 0.03659939765930176, 0.06455516815185547, -0.019251706078648567, -0.011220087297260761, 0.005292708054184914, -0.016289904713630676, -0.0264899842441082, 0.005050928331911564, -0.008054285310208797, -0.0031790249049663544, -0.020551271736621857, 0.0424625538289547, 0.017589470371603966, -0.007910728454589844, 0.01882859133183956, 0.014695670455694199, 0.022183284163475037, 0.021140608936548233, -6.788247264921665e-05, -0.0015385120641440153, 0.015594788827002048, 0.018420588225126266, -0.007536725606769323, -0.013192103244364262, -0.0014724003849551082, 0.0036531395744532347, 0.02943667396903038, -0.008787179365754128, -0.00437470106408, -0.01601790264248848, -0.020369937643408775, 0.05155951529741287, -0.0024404635187238455, 0.005164262373000383, -0.04639147222042084, 0.01012452319264412, -0.024601081386208534, 0.016274793073534966, -0.030796686187386513, -0.04877904802560806, -0.017574358731508255, -0.005209596361964941, -0.025900647044181824, 0.00849251076579094, 0.004352034069597721, -0.0076085040345788, 0.02846955507993698, 0.05494442954659462, 0.04104209691286087, 0.019357483834028244, 0.007702948991209269, -0.008613401092588902, -0.019387707114219666, 0.0038684746250510216, -0.023497961461544037, 0.03947053104639053, -0.01405344344675541, 0.027079323306679726, 0.008152508176863194, 0.004234922118484974, -0.025749534368515015, -0.002015460282564163, 0.002261017682030797, -0.01177164725959301, -0.014355667866766453, 0.01095564104616642, 0.026459762826561928, 0.01914592832326889, 0.01249698642641306, -0.01054008211940527, 0.018541477620601654, -0.008220508694648743, -0.02978423237800598, -0.01733257994055748, -0.01568545587360859, 0.015028117224574089, -0.059115130454301834, -0.006210715044289827, -0.001996571198105812, 0.002646354027092457, -0.0005567543557845056, -0.004412478767335415, -0.03357715159654617, -0.01299565751105547, -0.0025046863593161106, -0.01928192935883999, 0.009542740881443024, -0.01700013317167759, 0.008137396536767483, -0.0011446756543591619, -0.01601790264248848, -0.019720153883099556, -0.01996193453669548, 0.01478633750230074, -0.01397033128887415, -0.018919259309768677, -0.0022534620948135853, 0.01169609185308218, -0.0075065032579004765, -0.01381166372448206, -0.062076929956674576, -0.020717496052384377, 0.06286271661520004, -0.034242045134305954, -0.0038193631917238235, -0.006297604646533728, 0.007022943813353777, -0.0003858085838146508, 0.008817402645945549, -0.004790259525179863, -0.019372595474123955, -0.008983626030385494, 0.0330633707344532, 0.023679295554757118, 0.023513073101639748, -0.023331737145781517, -0.016138792037963867, -0.005043372977524996, -0.011250310577452183, 0.036720287054777145, 0.03626694902777672, -0.006985165644437075, -0.012648099102079868, 0.014325445517897606, -0.01275387778878212, -0.012474319897592068, -0.01244409754872322, 0.004563591443002224, -0.0025877980515360832, -0.003921363968402147, 0.0006068103248253465, -0.011801869608461857, -0.014204555191099644, 0.023467738181352615, -0.012383652850985527, 0.009164960123598576, -0.026535319164395332, -0.025477532297372818, -0.0046353694051504135, 0.0013184547424316406, 0.026897987350821495, 0.0012702876701951027, 0.019901489838957787, -0.014378334395587444, -0.008877847343683243, 0.030010901391506195, -0.013592550531029701, 0.018435699865221977, 0.00576493376865983, 0.040135424584150314, -0.012957879342138767, -0.013252547942101955, 0.019357483834028244, 0.016123682260513306, -0.004238700028508902, 0.022666843608021736, -0.003420804627239704, 0.001787847257219255, -0.0003973781131207943, -0.0023441293742507696, 0.015103673562407494, 0.00719294510781765, -0.006252271123230457, 0.011121864430606365, -0.014688114635646343, -0.00965607538819313, -0.005122706759721041, -0.01038141455501318, 0.0008226175559684634, -0.005409820005297661, -0.016441017389297485, 0.0134187713265419, -0.029406452551484108, -0.013199659064412117, -0.0029145784210413694, -0.02014326862990856, -0.008787179365754128, 0.013705885037779808, 0.0057309335097670555, -0.01161297969520092, -0.04575680196285248, -0.021185943856835365, -0.0166676864027977, 0.00576493376865983, -0.03747585043311119, 0.007797394413501024, -0.0366598404943943, 0.0012306207790970802, 0.0010870640398934484, -0.02272728830575943, 0.014567225240170956, 0.003936475142836571, -0.00930851697921753, -0.0036493618972599506, -0.014846783131361008, -0.033758487552404404, -0.0009350072941742837, -0.023437516763806343, -0.021971726790070534, 0.016592130064964294, -0.044578127562999725, 0.05397731065750122, 0.018753034994006157, -0.0009477573912590742, 0.006724496837705374, -0.025220641866326332, -0.016259683296084404, 0.011265421286225319, -0.04382256418466568, -0.02615753747522831, -0.0018482921877875924, 0.010532527230679989, 0.005829156842082739, 0.014431224204599857, 0.03937986493110657, 0.001643346156924963, -0.003405693219974637, 0.019584152847528458, -0.018375255167484283, -0.0049451496452093124, 0.015534344129264355, 0.012723655439913273, -0.02369440719485283, -0.017740583047270775, 0.0008221453172154725, 0.01054008211940527, 0.04252300038933754, -0.013252547942101955, -0.01316943671554327, -0.017211690545082092, 0.005685599986463785, 0.013297881931066513, 0.011718758381903172, -0.026051759719848633, -0.0011748981196433306, -0.06926987320184708, -0.030494460836052895, 0.0006554495776072145, 0.007268501445651054, 0.007680282462388277, -0.012836989015340805, 0.007468725088983774, 0.02192639373242855, -0.030947797000408173, 0.042432330548763275, 0.0017727360827848315, -0.026036648079752922, 0.001860570046119392, 0.027351325377821922, -0.014030775986611843, 0.008084507659077644, 0.009822298772633076, -0.0022987958509474993, 0.02437441237270832, -0.001594234723597765, -0.010857418179512024, 0.02339218370616436, -0.008160063996911049, -0.01480144914239645, -0.01545878779143095, 0.02389085292816162, -0.008296065032482147, -0.0054627093486487865, -0.028711335733532906, -0.024616193026304245, -0.0018945704214274883, 0.008968514390289783, -0.004234922118484974, 0.009860076941549778, 0.00014461918908637017, -1.4683274457638618e-05, 0.004548479802906513, 0.00490737147629261, 0.03200558200478554, -0.004873371217399836, 0.016713019460439682, 0.00237435195595026, 0.0007088111015036702, -0.022938845679163933, -0.029028670862317085, -0.006146492436528206, 0.014416112564504147, -0.01600279100239277, -0.0014601225266233087, 0.01813347451388836, 0.006131381262093782, 0.00347558269277215, -0.015126340091228485, -0.017755694687366486, -0.01496011670678854, -0.007189167197793722, 0.015897013247013092, -0.001904014847241342, 0.023633962497115135, 0.0020116823725402355, 0.06395072489976883, 0.005715822335332632, -0.009792076423764229, 0.002733243629336357, -0.01055519375950098, 0.016456129029393196, 0.003118579974398017, 0.003932697232812643, 0.03992386907339096, 0.00723450118675828, 0.0028125776443630457, -0.0012580098118633032, 0.010260524228215218, 0.016471240669488907, 0.002482019364833832, -0.006803831085562706, 0.014340556226670742, 0.01209653913974762, -0.003430248936638236, -0.001546067651361227, -0.011544979177415371, -0.005304041318595409, 0.004061142913997173, -0.000184640332008712, -0.0025670200120657682, -0.018889036029577255, -0.003405693219974637, -0.029497118666768074, -0.017045466229319572, 0.004590035881847143, 0.026943322271108627, 0.00833384320139885, 0.042946115136146545, 0.023120181635022163, -0.006985165644437075, 0.049957722425460815, 0.012716099619865417, -0.00490737147629261, -0.012957879342138767, 0.015073451213538647, 0.007453613914549351, -0.018919259309768677, 0.005628932733088732, -0.02437441237270832, -0.01331299263983965, 0.010615638457238674, -0.005662932991981506, -0.001071008387953043, -0.02209261804819107, -0.0292553398758173, 0.010275635868310928, 0.011544979177415371, -0.035571832209825516, -0.013562328182160854, -0.012111649848520756, -0.004306700546294451, -0.030842019245028496, -0.025553088635206223, -0.01780102774500847, 0.013063658028841019, 0.01039652619510889, 0.020233936607837677, 0.008900513872504234, -0.03617628291249275, -0.006108714267611504, -0.011552534997463226, -0.00939162913709879, -0.0032526920549571514, 0.0007744504837319255, 0.020657049492001534, -0.0018756813369691372, -0.0024895749520510435, -0.015640122815966606, 0.00882495753467083, -0.018239254131913185, 0.008220508694648743, 0.01588190160691738, -0.02144283428788185, 0.009180071763694286, -0.01568545587360859, 0.0013618995435535908, -0.003016579197719693, -0.0015167896635830402, -0.0012976768193766475, -0.026852654293179512, 0.010434303432703018, 0.001382677466608584, -0.03723406791687012, 0.013977887108922005, -0.021216165274381638, -0.002740799216553569, 0.00035109996679238975, 0.027925550937652588, 0.007215612102299929, -0.0028881337493658066, -0.02319573611021042, -0.03242869675159454, -0.008447176776826382, -0.008439621888101101, 0.0030619127210229635, -0.017725471407175064, 0.007430946920067072, 0.011031197383999825, -0.007714282721281052, 0.020475715398788452, 0.005198263097554445, -0.01440100185573101, -0.015564566478133202, -0.0069662765599787235, -0.00772183807566762, -0.010789417661726475, 0.02307484671473503, -0.010834751650691032, -0.003902474883943796, -0.005115150939673185, -0.00023977270757313818, -0.012036094442009926, -0.0021760170347988605, 0.02762332744896412, 0.016879243776202202, 0.022349508479237556, 0.002810688689351082, 0.014431224204599857, 0.016229460015892982, 0.0048242597840726376, -0.009074293076992035, 0.002283684443682432, 0.014499224722385406, 0.004880927037447691, 0.000273654906777665, 0.02488819509744644, -0.001996571198105812, -0.01684902049601078, 0.002123127691447735, 0.007827617228031158, -0.006841609254479408, 0.028711335733532906, 0.01864725723862648, -0.005209596361964941, -0.0002221822942374274, -0.012836989015340805, -0.005508042871952057, 0.020838385447859764, 0.011099197901785374, -0.0033452482894062996, -0.008802291005849838, -0.004042253829538822, 0.008900513872504234, 0.02451041340827942, -0.018420588225126266, 0.003260247642174363, 0.004231144208461046, 0.014582335948944092, 8.942778367782012e-05, 0.010630750097334385, -0.014423668384552002, 6.90630404278636e-05, -0.0018511256203055382, 0.034755825996398926, 0.010547637939453125, 0.0388660803437233, -0.021140608936548233, 0.006584718357771635, -0.01015474647283554, 0.003811807604506612, 0.011476978659629822, 0.0018161808839067817, -0.05724133551120758, -0.005757378414273262, 0.0032243586611002684, 0.010162301361560822, 0.009527630172669888, -0.013849441893398762, 0.00017708471568766981, 0.00948229618370533, -0.005406042095273733, 0.0474492609500885, -0.003902474883943796, 0.015186785720288754, -0.002312018070369959, -0.0266259852796793, -0.016063237562775612, -0.02259128727018833, 0.016425905749201775, 0.01931215077638626, 0.019584152847528458, -0.032307807356119156, -0.023482849821448326, -0.01430277805775404, 0.011862315237522125, 0.01600279100239277, -0.017136134207248688, -0.0018190142000094056, 0.010789417661726475, 0.010305858217179775, 0.009776965714991093, 0.005440042354166508, -0.019070371985435486, 0.013040990568697453, 0.004654258489608765, 0.007925840094685555, -0.0010152857284992933, 0.006554495543241501, -0.007702948991209269, 0.038201186805963516, -0.01816369779407978, 0.004182032775133848, 0.0080920634791255, 0.018858814612030983, -0.010653416626155376, -0.011159642599523067, 0.003879808122292161, -0.026217982172966003, -0.015020562335848808, 0.020203713327646255, 0.02437441237270832, -0.018601922318339348, -0.011295643635094166, 0.012459208257496357, 0.005795156583189964, -0.020974386483430862, 0.020641939714550972, -0.04040742665529251, 0.013592550531029701, 0.00576115632429719, -0.007714282721281052, 0.009187627583742142, 0.0015413453802466393, 0.030872240662574768, -0.023754851892590523, 0.013282770290970802, 0.006259826943278313, 0.01849614456295967, -0.011492090299725533, 0.02014326862990856, -0.004692036658525467, 0.009912966750562191, 0.006573384627699852, 0.0006412827642634511, -0.0001746055349940434, 0.020022379234433174, -0.007053166162222624, -0.019402818754315376, -0.008772068656980991, 0.02141261100769043, -0.0002345782268093899, 0.005458931438624859, 0.0047675929963588715, -0.0045371465384960175, 0.012768988497555256, 0.007215612102299929, -0.004930038470774889, -0.015806345269083977, -0.006346716079860926, -0.0004920593928545713, 0.007971173152327538, 0.0050849285908043385, -0.0040498096495866776, -0.026444651186466217, -0.03460471332073212, -0.01300321239978075, -0.01020763535052538, 0.023422405123710632, 0.02174505963921547, -0.028257999569177628, -0.011099197901785374, 0.005451376084238291, -0.024616193026304245, 0.013078768737614155, -0.006161603610962629, -0.010615638457238674, 0.036569174379110336, -0.021140608936548233, 0.00029632175574079156, -0.0011276755249127746, -0.0028220219537615776, -0.0127614326775074, -0.014552113600075245, -0.011469422839581966, -0.010728972963988781, 0.015322786755859852, 0.012391207739710808, -0.010940530337393284, 0.004801593255251646, 0.003879808122292161, -0.0015829012263566256, 0.007820061407983303, 0.026384206488728523, 0.023951297625899315, -0.009112071245908737, -0.004306700546294451, 0.018737925216555595, 0.00890806969255209, -0.0015139562310650945, 0.00858317781239748, 0.021548612043261528, 0.017529025673866272, 0.011832092888653278, -0.036387838423252106, -0.02958778664469719, -0.023936187848448753, -0.019417930394411087, 0.012240095995366573, 0.02845444530248642, -0.007045610807836056, 0.002689798828214407, 0.011635646224021912, -0.018042808398604393, 0.027729105204343796, -0.0012693433091044426, -8.895555947674438e-05, 0.010404081083834171, -0.01601790264248848, 0.004499368369579315, -0.01731746830046177, -0.0055042654275894165, -0.003902474883943796, 0.007585837040096521, -0.0060104914009571075, -0.007736949250102043, 0.02041527070105076, 0.010895196348428726, -0.017423247918486595, -0.009844966232776642, -0.003502027364447713, -0.0004564063565339893, 0.0016707353061065078, -0.01567034423351288, -0.0014006220735609531, -0.0051831514574587345, -0.0260064247995615, -0.009588074870407581, 0.013229881413280964, 0.014673003926873207, -0.005402264650911093, 0.004438923671841621, -0.025401975959539413, 0.003307470353320241, -0.04058876261115074, 0.02550775557756424, 0.0075556146912276745, -0.0026765763759613037, 0.007158944848924875, 0.020883718505501747, -0.016607241705060005, 0.014446334913372993, 0.0137285515666008, 0.019417930394411087, -0.0009000626159831882, -0.023603739216923714, -0.0020381270442157984, 0.008537844754755497, -0.0073251682333648205, -0.009172515943646431, -0.00981474295258522, -0.007551836781203747, 0.01650146208703518, 0.014521891251206398, -0.0016924577066674829, -0.02059660479426384, -0.02729088068008423, -0.006837831344455481, 0.006603606976568699, -0.026293538510799408, 0.004284033551812172, 0.014023221097886562, -0.012746321968734264, 0.0009378406684845686, 0.01022274699062109, 0.007434724830091, 0.00884006917476654, -0.00906673725694418, -0.011099197901785374, 0.00539093092083931, 0.035571832209825516, -0.00013753579696640372, -0.0015082895988598466, -0.02046060375869274, 0.016758352518081665, -0.01913081668317318, -0.004095143172889948, -0.006520495284348726, -0.011303199455142021, -0.016305016353726387, -0.0043180338107049465, -0.0006502550677396357, 0.010064078494906425, 0.002004126785323024, 0.01244409754872322, 0.018873926252126694, -0.005443820264190435, -0.02503930777311325, -0.0028749112971127033, -0.016637463122606277, -0.01979571022093296, 0.0014554002555087209, -0.009225405752658844, -0.009920521639287472, -0.03662962093949318, 0.024283746257424355, 0.006354271899908781, -0.003898697206750512, -0.007752060424536467, 0.008469844236969948, -0.021881060674786568, 0.016259683296084404, 0.02729088068008423, -0.026882877573370934, -0.02304462529718876, -0.037022512406110764, 0.010147190652787685, -0.012693432159721851, -0.023165514692664146, 0.02319573611021042, -0.010079190135002136, -0.031642913818359375, -3.960794856538996e-05, 0.0041782548651099205, 0.004098921082913876, -0.0160481259226799, 0.009270738810300827, -0.01718146726489067, 0.010192523710429668, -0.0002712938003242016, 0.02568908967077732, 0.003551138797774911, 0.011643202044069767, -0.00018794591596815735, -0.013358326628804207, 0.03267047926783562, -0.011461867019534111, 0.008726734668016434, 0.0011937870876863599, -0.005670488812029362, 0.012202317826449871, -0.03406070917844772, -0.006407161243259907, -0.00662249606102705, 0.011257865466177464, 0.00723450118675828, -0.002884355839341879, -0.02405707724392414, -0.0255228653550148, -0.004144254606217146, -0.008039173670113087, -0.01703035458922386, -0.0007522559026256204, 0.008394287899136543, 0.0014147888869047165, -0.010320969857275486, -0.016229460015892982, -0.016652574762701988, -0.017090801149606705, 0.0060104914009571075, -0.011794314719736576, 0.0032092472538352013, -0.0030600239988416433, 0.0008476455113850534, -0.02633887343108654, -0.0005515598459169269, -0.015081007033586502, -0.022183284163475037, -0.0018161808839067817, -0.009452073834836483, 0.006021824665367603, -0.0028919114265590906, 0.0014147888869047165, 0.010751639492809772, -0.019916599616408348, -0.009867632761597633, 0.008137396536767483, -0.00033693318255245686, 0.008394287899136543, 0.004299144726246595, 0.005402264650911093, 0.0038250298239290714, 0.007925840094685555, -0.0001259662676602602, -0.006626273971050978, -0.003828807733952999, -0.0070985001511871815, -0.011401422321796417, -0.006157825700938702, -0.015383231453597546, -0.00337547087110579, 0.07603970915079117, 0.0030826907604932785, -0.0009227294358424842, 0.006716941483318806, -0.00024626581580378115, -0.008137396536767483, -0.0033206925727427006, 0.008696512319147587, 0.004083809908479452, -0.009127182886004448, 0.004197143949568272, -0.032307807356119156, -0.003962920047342777, -0.0005298375035636127, -0.018526367843151093, 0.008794735185801983, 0.00972407590597868, 0.01071386132389307, -0.020082823932170868, 0.007993840612471104, 0.016939688473939896, -0.0074649471789598465, -0.01323743723332882, 0.025099752470850945, -0.009527630172669888, 0.015579677186906338, 0.002094794064760208, -0.012746321968734264, 0.00941429566591978, 0.01962948590517044, 0.00437470106408, -0.0053153750486671925, -0.009678741917014122, 0.001312787993811071, -0.011310755275189877, 0.011333421804010868, 0.009928077459335327, 0.01176409237086773, -0.01275387778878212, -0.0038420299533754587, 0.003936475142836571, 0.0008542566793039441, 0.020581495016813278, 0.008605845272541046, -0.025250863283872604, 0.0013212880585342646, -0.0130712129175663, 0.0009548407979309559, -0.0015319008380174637, -0.001667901873588562, -0.007362946402281523, -0.015806345269083977, 0.007812505587935448, 0.011733869090676308, 0.01751391403377056, -0.00047482314403168857, -0.010086745955049992, -0.005696933250874281, 0.0032923591788858175, 0.010562749579548836, -0.019040148705244064, -0.0006516717839986086, -0.02387574315071106, -0.01227031834423542, -0.020536160096526146, -0.017136134207248688, -0.0143858902156353, -0.02682243287563324, 0.0010615638457238674, 0.0033490261994302273, -0.012610320933163166, 0.028590446338057518, 0.004654258489608765, -0.018768146634101868, 0.0013977887574583292, 0.030207347124814987, 0.006516717839986086, 0.008401843719184399, -0.008560511283576488, -0.002948578679934144, -0.008779624477028847, 0.0061502703465521336, -0.02095927484333515, -0.017287246882915497, 0.008273397572338581, -0.00543248699977994, 0.019009927287697792, -0.023921076208353043, 0.02325618267059326, -0.009180071763694286, -0.003588916966691613, -0.007797394413501024, -0.008152508176863194, 0.0008830624865368009, 0.0089231813326478, -0.008613401092588902, 0.0009335906361229718, 0.003029801417142153, 0.008469844236969948, 0.00376080721616745, -0.00020754328579641879, 0.02095927484333515, 0.0015186785021796823, 0.0016952910227701068, 0.00041060041985474527, -0.028091775253415108, 0.0050055948086082935, 0.014340556226670742, -0.01291254535317421, -0.001024730270728469, -0.008129841648042202, -0.01914592832326889, 0.011983204632997513, 0.0020551271736621857, -0.02026415802538395, 0.018375255167484283, 0.010676083154976368, -0.018768146634101868, -0.019402818754315376, -0.01326010376214981, -0.00032087750150822103, 0.005727156065404415, 0.008144952356815338, -0.01471833698451519, 0.0002130919456249103, -0.0013968442799523473, -0.008439621888101101, -0.009829854592680931, -0.02275751158595085, 0.002453685738146305, 0.0019927932880818844, 0.007045610807836056, 0.02225884050130844, 0.012391207739710808, 0.008696512319147587, -0.005636488553136587, 0.019070371985435486, -0.015239674597978592, 0.008175174705684185, -0.028409110382199287, 0.0029429118148982525, -0.00899118185043335, -0.0030808018054813147, 0.018042808398604393, -0.00026609929045662284, 0.01616901531815529, 0.016123682260513306, -0.02061171643435955, 0.010827195830643177, -0.006161603610962629, 0.025945980101823807, -0.01879836991429329, 0.0007021999335847795, 0.0005572265945374966, 0.0006606440292671323, 0.010562749579548836, -0.023936187848448753, 0.018269475549459457, -0.02094416320323944, -0.02729088068008423, -0.013668106868863106, -0.006078491918742657, -0.026036648079752922, -0.00666405213996768, -0.020551271736621857, 0.025462420657277107, 0.020022379234433174, 0.017468580976128578, 0.025915758684277534, -0.0031072464771568775, -0.007812505587935448, 0.014461446553468704, 0.008462288416922092, -0.015745900571346283, 0.02992023341357708, -0.011922759935259819, 0.002551908837631345, -0.011499645188450813, -0.030539793893694878, 0.01015474647283554, -0.017740583047270775, -0.019765488803386688, 0.019765488803386688, -0.0003551138797774911, 0.007699171546846628, -0.008364065550267696, -0.018239254131913185, -0.009784520603716373, 5.811330265714787e-05, 0.006883164867758751, -0.002451797015964985, -0.004450256936252117, -0.0012957878643646836, -0.012058760970830917, -0.014673003926873207, -0.00433314498513937, 0.013350770808756351, 0.009006292559206486, 0.011794314719736576, -0.016441017389297485, 0.011507201008498669, 0.007986284792423248, 0.009036514908075333, 0.0022780178114771843, -0.03218691796064377, -0.01928192935883999, 0.006414716597646475, -0.02305973507463932, -0.021140608936548233, 0.013524550013244152, -0.026777097955346107, -0.022666843608021736, 0.01078186184167862, 0.010434303432703018, -0.007468725088983774, 0.013192103244364262, 0.007075833156704903, 0.018919259309768677, 0.021140608936548233, 0.005840490106493235, 0.013380993157625198, 0.012640543282032013, 0.024449968710541725, -0.01698502153158188, -0.02584020234644413, -0.014333001337945461, 0.00457492470741272, -0.009686297737061977, 0.027744216844439507, -0.0014676781138405204, 0.026278426870703697, -0.010706305503845215, -0.01911570504307747, 0.02470685914158821, 0.005987824406474829, 0.023800186812877655, 0.01415922213345766, -0.0010889529949054122, -1.088333192456048e-06, 0.0034661381505429745, -0.02437441237270832, -0.010653416626155376, -0.031794026494026184, 0.004114032257348299, 0.0030959132127463818, -0.01899481564760208, 0.008144952356815338, -0.014990339055657387, -0.0069662765599787235, -2.7271045837551355e-05, -0.0001402510970365256, 0.0011257865699008107, 0.007174056023359299, 0.017060577869415283, 0.023165514692664146, -0.006490272935479879, -0.013010768219828606, 0.004144254606217146, -0.0004790731763932854, -0.01879836991429329, 0.009663631208240986, 0.014181888662278652, -0.012738766148686409, 0.006293827202171087, 0.00251790857873857, 0.01571567915380001, -0.03366781771183014, -0.0031960250344127417, 0.006796275265514851, 0.00802406296133995, 0.01700013317167759, -0.008726734668016434, 0.024313967674970627, 0.030343348160386086, 0.0055042654275894165, 0.0005425876006484032, 0.005217151716351509, -0.017604582011699677, -0.006146492436528206, 0.013290326111018658, -0.008228064514696598, 0.013879664242267609, 0.007895617745816708, -0.026202872395515442, 0.005341819487512112, -0.02667132019996643, -0.0007069222046993673, 0.0005576988332904875, -0.009361406788229942, -0.007362946402281523, -0.005383375566452742, -0.021518390625715256, 0.009852521121501923, -0.006407161243259907, -0.01022274699062109, 0.0018482921877875924, 0.000250043609412387, 0.006769830826669931, 0.013668106868863106, 0.012617876753211021, -0.007910728454589844, -0.010668528266251087, 0.005591155029833317, -0.015179229900240898, -0.006346716079860926, -0.007049388252198696, 0.026716653257608414, 0.007102277595549822, -0.005069817416369915, 0.03028290346264839, 0.02046060375869274, -0.0025367976631969213, 0.0080920634791255, 0.009905410930514336, 0.003978031221777201, -0.007053166162222624, -0.007332724053412676, 0.019161038100719452, -0.0037570293061435223, -0.013063658028841019, -0.0009680631337687373, 0.020566383376717567, 0.007408279925584793, 0.00874940212816, -0.0019890156108886003, 0.01751391403377056, 0.021548612043261528, 0.013819219544529915, 0.01848103292286396, -0.03155224770307541, 0.010215191170573235, -0.005791378673166037, -0.020657049492001534, -0.021684613078832626, 0.0048658158630132675, 0.02352818474173546, 0.010101856663823128, -0.005511820781975985, -0.017891695722937584, -0.005644043907523155, -0.010600527748465538, -0.019357483834028244, -0.007789838593453169, 0.012126761488616467, -0.0008925069705583155, 0.015081007033586502, 0.011295643635094166, -0.001904959324747324, 0.005666710902005434, 0.02487308345735073, 0.013184547424316406, 0.015239674597978592, 0.01781613938510418, 0.0013156214263290167, -0.006573384627699852, -1.0197128176514525e-05, -0.0012249540304765105, 0.001856792252510786, -0.010086745955049992, 0.014763670973479748, -0.03372826427221298, -3.0192944905138575e-05, -0.01829969882965088, -0.005651599727571011, 0.01193787157535553, 0.010910307988524437, -0.006947387475520372, 0.010608082637190819, -0.033607374876737595, 0.013736107386648655, -0.00015489010547753423, -0.017121022567152977, -0.00670938566327095, 0.0002453213674016297, -0.018556589260697365, 0.009210294112563133, -0.0023460183292627335, 0.01162809133529663, -0.00802406296133995, 0.017045466229319572, 0.03282158821821213, 0.0028484666254371405, -0.005066039506345987, 0.01816369779407978, 0.02207750640809536, 0.011983204632997513, -0.002897578291594982, 0.011152086779475212, -0.008409399539232254, -0.009958299808204174, -0.013184547424316406, -0.0057724895887076855, 0.002738910261541605, 0.007083388511091471, -0.0068189422599971294, 0.015791235491633415, -0.02030949294567108, 0.017785916104912758, -0.0047260369174182415, 0.010691194795072079, -6.988943641772494e-05, 0.005326708313077688, 0.0031960250344127417, 0.003955364227294922, -0.020082823932170868, -0.016425905749201775, -0.00584804592654109, 0.011756536550819874, 0.019735265523195267, -0.009142293594777584, 0.005326708313077688, 0.006724496837705374, -0.008348953910171986, 0.02435930073261261, 0.01567034423351288, -0.004510702099651098, 0.026565540581941605, -0.00584804592654109, 0.005383375566452742, 0.011016085743904114, 0.013018324039876461, 0.009580519050359726, -0.007880506105720997, -0.005598710384219885, 0.012119205668568611, -0.02177528105676174, 0.014370778575539589, 0.010064078494906425, 0.0031544691883027554, 0.005999158136546612, 0.0010606193682178855, -0.02373974211513996, 0.005016928073018789, 0.016622351482510567, -0.023649074137210846, -0.023845519870519638, 0.027532659471035004, -0.029708676040172577, -0.0028371333610266447, 0.019085481762886047, -0.03254958614706993, 0.00019184178381692618, 0.0022515731398016214, -0.008401843719184399, 0.014793893322348595, -0.0016084014205262065, 0.009232960641384125, 0.004782704170793295, 0.006482717581093311, -0.0006974776624701917, -0.004601369146257639, 0.008061841130256653, 0.008243175223469734, -0.004000697750598192, -0.025961091741919518, -0.004703369922935963, -0.011340977624058723, 0.003921363968402147, 0.032277584075927734, -0.03321448341012001, 0.005466487258672714, 0.0021741280797868967, -0.00032276639831252396, 0.007030499633401632, -0.006286271382123232, 0.0003041134914383292, 0.004450256936252117, 0.006036936305463314, 0.004930038470774889, 0.003213025163859129, -0.024117521941661835, -0.003974253311753273, 0.008953403681516647, -0.008220508694648743, 0.0030638016760349274, -0.008296065032482147, 0.0031790249049663544, 0.00973918754607439, 0.00503581715747714, -0.014249889180064201, -0.02402685396373272, 0.005576043389737606, -0.005950046703219414, 0.02012815698981285, 0.04140476882457733, -0.00584804592654109, -0.013252547942101955, 0.006154048256576061, -0.0021552389953285456, -0.017710361629724503, 0.013018324039876461, 0.023679295554757118, -0.0017510136822238564, -0.02091394178569317, 0.011152086779475212, -0.003596472553908825, -0.010509859770536423, 0.038503412157297134, -0.008401843719184399, -0.000571393349673599, 0.0008849513833411038, -0.008976070210337639, -0.006444939412176609, 0.021865949034690857, 0.006996499374508858, -0.0035492500755935907, -0.0032338029704988003, 0.007578281685709953, 0.0016849021194502711, 0.019040148705244064, -0.0049564833752810955, -0.013977887108922005, -0.0002873494813684374, 0.011847203597426414, -0.0170152448117733, 0.01683390885591507, 0.017740583047270775, 0.005292708054184914, 0.018753034994006157, 0.001643346156924963, -0.004491813015192747, -0.02467663772404194, -0.006490272935479879, 0.0066489409655332565, 0.021805504336953163, -0.014461446553468704, 0.014597447589039803, 0.002788021694868803, 0.006165381520986557, 0.007495169527828693, -0.016320127993822098, 0.007993840612471104, 0.006531829014420509, 0.013758773915469646, 0.005285152234137058, 0.01896459236741066, 0.004684481304138899, 0.023966409265995026, 0.037868741899728775, -0.022183284163475037, 0.012897434644401073, -0.005409820005297661, 0.02387574315071106, -0.003071357263252139, -0.005640266463160515, -0.037717629224061966, -0.0007522559026256204, -0.003551138797774911, -0.014393446035683155, -0.004000697750598192, -0.026777097955346107, -6.8531786382664e-05, 0.027200212702155113, 0.005024483893066645, 0.01686413213610649, -0.008235620334744453, 0.003405693219974637, -0.006131381262093782, -0.01686413213610649, 0.010638304986059666, -0.006671607494354248, -0.00875695701688528, 0.0034680271055549383, 0.003426471259444952, -0.01896459236741066, 0.0036493618972599506, 0.02325618267059326, 0.0006578107131645083, -0.004321811720728874, 0.01621434837579727, -0.005753600504249334, -0.012965435162186623, -0.008016507141292095, -0.0037060289178043604, 0.0004505035176407546, 0.0018379032844677567, -0.01719657890498638, -0.006837831344455481, 0.0025915757287293673, -0.008069396018981934, 0.002262906637042761, -0.021216165274381638, -0.015972569584846497, 0.009973411448299885, 0.003054357133805752, 0.01751391403377056, 0.005107595585286617, -0.005625155288726091, 0.009036514908075333, -0.008530288934707642, 0.0034170267172157764, 0.0011342866346240044, -0.00875695701688528, -0.0005255874712020159, 0.015118785202503204, -0.014605003409087658, -0.004926260560750961, -0.004061142913997173, -0.016939688473939896, -0.035571832209825516, -0.01005652267485857, -0.001689624274149537, 0.004344478249549866, -0.008061841130256653, 0.014771226793527603, 0.0022459065075963736, 0.01348677184432745, -0.006985165644437075, -0.012587654404342175, -0.00851517729461193, 0.01062319427728653, -0.008938292041420937, 0.001568734529428184, -0.004336922895163298, -0.0003617250476963818, -0.007158944848924875, 0.014997894875705242, 0.005130262114107609, 0.013297881931066513, 0.0005803656531497836, -0.002123127691447735, -0.005530709866434336, -0.0132449921220541, -0.009202738292515278, 0.014106332324445248, -0.005387153010815382, 0.019765488803386688, 0.008741846308112144, 0.026595763862133026, -0.02422329969704151, -0.01849614456295967, 0.010812084190547466, 0.00023587683972436935, -0.031129132956266403, -0.009663631208240986, -0.006977610290050507, -0.030539793893694878, 0.006830275524407625, -0.0027747994754463434, -0.02191128209233284, 0.0015337897930294275, -0.009595630690455437, -0.00865117833018303, -0.0008877846994437277, 0.023921076208353043, -0.017740583047270775, 0.004499368369579315, -0.0022251284681260586, -0.020657049492001534, 0.0018265697872266173, -0.010691194795072079, 0.009459629654884338, -0.014393446035683155, 0.019372595474123955, -0.016879243776202202, -0.00551937660202384, -0.0036682509817183018, -0.027215324342250824, 0.026761986315250397, 0.014325445517897606, 0.001045508193783462, 0.004261366557329893, 0.0006502550677396357, -0.009550296701490879, 0.005840490106493235, -0.018224142491817474, 0.026777097955346107, -0.006562051363289356, 0.00147334486246109, -0.02079305239021778, -0.008832513354718685, 0.029527341946959496, -0.04237188771367073, 0.024434857070446014, 0.010660972446203232, -0.013176991604268551, -0.022168172523379326, 0.0052247075363993645, 0.0035114719066768885, -0.029678454622626305, 0.015096117742359638, -0.00022855734277982265, -0.013426327146589756, -0.017710361629724503, -1.4845601981505752e-05, 0.008432066068053246, -0.0033660263288766146, -0.009346295148134232, -0.016607241705060005, 0.011718758381903172, -0.003906252793967724, -0.01633523963391781, -0.01863214559853077, -0.0053644864819943905, -0.005349375307559967, -0.0012088983785361052, -0.018541477620601654, -0.0076840599067509174, -0.0127614326775074, -0.015013006515800953, -0.0032092472538352013, -0.015579677186906338, 0.009104515425860882, -0.003664473071694374, -0.026761986315250397, -0.022938845679163933, 0.015368119813501835, 0.008076951839029789, 0.0037740294355899096, -0.012285429053008556, 0.012156983837485313, 0.005647821817547083, -0.003639917355030775, 0.011884981766343117, -0.007090944331139326, -0.039168305695056915, -0.00613515917211771, 0.012459208257496357, -0.009746742434799671, 0.004869593773037195, 0.00457492470741272, 0.00017023744294419885, -0.0140761099755764, 0.010237857699394226, -0.0021949061192572117, -0.01959926448762417, -0.007782283239066601, 0.0009916743729263544, 0.0017047355649992824, -0.00576115632429719, 0.021865949034690857, 0.010237857699394226, -0.023905964568257332, 0.0035549167077988386, -0.026278426870703697, -0.007963618263602257, 0.008983626030385494, -0.0025103529915213585, 0.00257457559928298, -1.519977217867563e-06, -0.022515730932354927, -0.022289063781499863, -0.017060577869415283, 0.007438502740114927, 0.01703035458922386, -0.007699171546846628, -0.009663631208240986, 0.008084507659077644, -0.02174505963921547, 0.006497828755527735, 0.002901355968788266, -0.0032451364677399397, 0.021382389590144157, -0.004223588388413191, 0.007548058871179819, 0.004340700805187225, 0.017544137313961983, -0.002735132584348321, 0.0031072464771568775, -0.002404574304819107, 0.011605423875153065, 0.010638304986059666, -0.0014676781138405204, 0.012081427499651909, 0.007211834192276001, 0.018254365772008896, 0.018239254131913185, -0.01145431213080883, -0.010479637421667576, 0.010676083154976368, 0.0178463626652956, -0.0057309335097670555, -0.018450811505317688, -0.019206373021006584, -0.011393866501748562, -0.020536160096526146, -0.010948085226118565, -0.004412478767335415, -0.0011257865699008107, 0.012935211881995201, 0.001927626202814281, 0.00748005835339427, -0.01621434837579727, -0.021865949034690857, -0.02207750640809536, -0.005549598950892687, 0.013788996264338493, -0.002308240160346031, 0.02535664290189743, 0.013977887108922005, 0.021518390625715256, 0.015473898500204086, -0.023180626332759857, 0.005587377119809389, 0.00849251076579094, -0.018224142491817474, 0.009444518014788628, -0.012904989533126354, -0.01861703395843506, -0.006524273194372654, 0.004117810167372227, 0.019025037065148354, -0.0028711336199194193, 0.0050849285908043385, 0.007019165903329849, 0.0070153879933059216, -0.02043038234114647, 0.013856996782124043, -0.0014478446682915092, 0.0038722525350749493, 0.007449836004525423, 0.013214769773185253, -0.015065895393490791, -0.018677478656172752, 0.002839022083207965, -0.005700711160898209, -0.016788575798273087, 0.008326287381350994, 0.0011503422865644097, 0.00022277257812675089, -0.011053863912820816, 0.0007508391863666475, 0.0007782283355481923, -0.012353429570794106, -0.0140761099755764, 0.013048546388745308, -0.004639147315174341, -0.012474319897592068, 0.01730235666036606, 0.0015337897930294275, -0.005111373495310545, 0.009731631726026535, -0.006104936823248863, 0.012572542764246464, 0.012353429570794106, -0.025145085528492928, -0.010086745955049992, -0.0001347024372080341, 0.020898830145597458, 0.0010757306590676308, 0.018737925216555595, -0.01464278157800436, 0.0033395816572010517, -0.012240095995366573, -0.017075689509510994, -0.0022647955920547247, -0.006985165644437075, -0.00453336862847209, -0.010849862359464169, -0.0256588663905859, -0.008658734150230885, 0.01648635044693947, -0.010449415072798729, 0.011416533961892128, 0.0025367976631969213, 0.006256049033254385, 0.011189864948391914, -0.005179374013096094, -0.0018917369889095426, -0.02012815698981285, 0.0179823637008667, 0.004223588388413191, -0.014695670455694199, 0.01341121643781662, 0.012988101691007614, -0.001804847503080964, 0.0026066871359944344, 0.0005850879242643714, 0.0023516849614679813, -0.017710361629724503, -0.007789838593453169, 0.006210715044289827, 0.012292984873056412, -0.0028257998637855053, 0.0029599119443446398, 0.013365882448852062, 0.018450811505317688, -0.0001259662676602602, -0.009784520603716373, 0.0017538469983264804, -0.0025821311865001917, 0.0002783771778922528, 0.01848103292286396, 0.004998038988560438, -0.023830408230423927, -0.005466487258672714, 0.02225884050130844, -0.01225520670413971, -0.003029801417142153, 0.021473057568073273, 0.004729814827442169, 0.00908184889703989, 0.0032904702238738537, -0.012262762524187565, -0.009444518014788628, -0.0029844678938388824, 0.02077794075012207, -0.00043917010771110654, -0.0012202317593619227, 0.006346716079860926, 0.007400724571198225, 0.008212952874600887, -0.014733448624610901, -0.004514479544013739, -0.02189617045223713, -0.006792497355490923, -0.02729088068008423, -0.0007432835991494358, 0.008711623959243298, 0.016123682260513306, -0.004801593255251646, 0.010660972446203232, -0.0028201332315802574, 0.0018416810780763626, -0.004552257712930441, -0.011975648812949657, 0.004416256677359343, -0.00981474295258522, -0.00866628997027874, -0.015013006515800953, -0.005950046703219414, 0.020838385447859764, 8.405621338170022e-05, 0.021473057568073273, 0.018450811505317688, -0.00783517211675644, 0.006388272158801556, -0.0143858902156353, 0.004469146020710468, 0.008175174705684185, 0.004710925742983818, -0.00996585562825203, 0.005247374530881643, 0.006656496319919825, -0.01961437612771988, -0.0072458344511687756, 0.026550428941845894, -0.014151666313409805, 0.015534344129264355, 0.013033435679972172, 0.03267047926783562, -0.0032545810099691153, -0.015058339573442936, -0.009361406788229942, 0.0037778073456138372, -0.009875188581645489, -0.0012060649460181594, -0.007215612102299929, -0.00551937660202384, 0.018027696758508682, 0.0069587212055921555, 0.0002093141374643892, 0.007438502740114927, -0.001450677984394133, 0.023754851892590523, 0.01913081668317318, 0.005485376343131065, -0.006471383851021528, -0.026943322271108627, -0.015269896946847439, 0.005115150939673185, -0.011590313166379929, 0.022606398910284042, -0.017287246882915497, 0.007540503516793251, -0.005379597656428814, 0.013516994193196297, -0.007483836263418198, -0.010872529819607735, 0.0024196854792535305, -0.00036503063165582716, 0.01684902049601078, -0.002451797015964985, 0.005836712196469307, 0.025296198204159737, 0.017937028780579567, -0.02402685396373272, 0.005141595844179392, 0.006985165644437075, 2.2393837753043044e-06, -0.0157005675137043, 0.0047751483507454395, 0.01832992024719715, -0.023921076208353043, 0.002519797533750534, 0.0029070228338241577, -0.0033924710005521774, 0.008069396018981934, 0.01817880943417549, -0.0005931157502345741, 0.0044464790262281895, -0.011900093406438828, -0.005205818451941013, -0.004518257454037666, -0.0020305714569985867, -0.036690063774585724, 0.023422405123710632, 0.005783822853118181, 0.0010587305296212435, 0.014438780024647713, 0.0036002504639327526, -0.007491392083466053, -0.009013848379254341, -0.01700013317167759, 0.009603186510503292, 0.003377359826117754, -8.169508510036394e-05, 0.01128053292632103, -0.016894353553652763, 0.015239674597978592, -0.007419613655656576, -0.0015385120641440153, -0.023089958354830742, 0.0038193631917238235, -0.013826774433255196, 0.025220641866326332, 0.041132766753435135, 0.017937028780579567, -0.011469422839581966, 0.008356509730219841, 0.003403804497793317, 0.02012815698981285, 0.0008467010920867324, -0.0004405867657624185, -0.001597068039700389, -0.003951586317270994, -0.004098921082913876, -0.011960538104176521, -0.024585969746112823, -0.03109890967607498, 0.015791235491633415, 0.006074714008718729, 0.011975648812949657, -0.00527759687975049, -0.01341121643781662, -0.0015422898577526212, -0.011008530855178833, 0.039168305695056915, -0.006920943036675453, -0.004340700805187225, -0.01471078209578991, 0.006014269310981035, -0.003936475142836571, 0.01931215077638626, -0.01911570504307747, -0.002136350143700838, 0.010388970375061035, -0.0054929316975176334, 0.026036648079752922, 0.022999290376901627, 0.009096959605813026, -0.010026300325989723, 0.009338739328086376, -0.003966697491705418, 0.02435930073261261, 0.003985586576163769, 0.005753600504249334, 0.026081981137394905, 0.012179650366306305, 0.021805504336953163, 0.002023015869781375, 0.0008027840522117913, -0.007487614173442125, -0.022455286234617233, -0.004401145502924919, 0.012806766666471958, -0.01227031834423542, 0.017755694687366486, -0.002901355968788266, 0.0130712129175663, -0.015579677186906338, 0.025613533332943916, -0.009331184439361095, 0.0026104648131877184, -0.0165316853672266, -0.0011087864404544234, -0.004692036658525467, 0.01478633750230074, -0.005247374530881643, 0.012640543282032013, 0.02568908967077732, -0.0020400159992277622, -0.006671607494354248, -0.015247230418026447, -0.021140608936548233, 0.0035586943849921227, -0.014189444482326508, -0.0070569440722465515, -0.007986284792423248, -0.020052600651979446, -0.003764584893360734, -0.012738766148686409, 0.014408556744456291, 0.014015665277838707, 0.0057233781553804874, 0.0032470254227519035, 0.00996585562825203, -0.0076085040345788, 0.010184968821704388, -0.009550296701490879, -0.0011276755249127746, 0.004877149127423763, -0.003594583598896861, 0.025145085528492928, 0.006501606199890375, 0.005039595067501068, 0.011053863912820816, 0.010668528266251087, 0.0019417930161580443, -0.0170152448117733, -0.0017991807544603944, -0.00818273052573204, -0.018753034994006157, -0.0051453737542033195, 0.005557154770940542, -0.01176409237086773, -0.014514335431158543, -0.014484113082289696, 0.013736107386648655, 0.0016461795894429088, -0.02077794075012207, -0.0004023364745080471, 0.005152929108589888, -0.005897157359868288, -0.014030775986611843, -0.001405344344675541, 0.004106476437300444, -0.007642504293471575, -0.010177413001656532, 0.009180071763694286, -0.00039123918395489454, 0.007548058871179819, -0.01020763535052538, 0.0037966964300721884, 0.0068680536933243275, 0.018088141456246376, -0.0023422406520694494, 0.020324602723121643, -0.005213374271988869, -0.008401843719184399, -0.004525813274085522, 0.005508042871952057, 0.01568545587360859, 0.010812084190547466, -0.010744083672761917, -0.005326708313077688, -0.004510702099651098, 0.005368264392018318, 0.012595209293067455, -0.0011012308532372117, -0.01168098021298647, -0.0021816836670041084, 0.01993171125650406, 0.0032734700944274664, -0.024102410301566124, 0.009384073317050934, -0.009875188581645489, 0.0017680138116702437, -0.006237159948796034, 0.013615217991173267, -0.004140476696193218, -0.007075833156704903, -0.02191128209233284, -0.0026822432409971952, -0.004389812238514423, 0.022530842572450638, -0.006399605423212051, -0.004110254347324371, 0.009112071245908737, -0.01047208160161972, 0.01619923859834671, -0.035571832209825516, 0.00486203795298934, -0.002708687912672758, 0.003713584505021572, 0.00499048363417387, 0.005239818710833788, -0.013924998231232166, 0.01169609185308218, -0.0009151738486252725, -0.012323207221925259, -0.0006365605513565242, 0.002693576505407691, -0.0011994538363069296, 0.021503278985619545, -0.005787600763142109, -0.000832534278742969, 0.006879386957734823, -0.003264025552198291, -0.009089404717087746, 0.03937986493110657, -0.01023030187934637, -0.001785013941116631, -0.0024857972748577595, -0.01161297969520092, 0.007857839576900005, -0.018118364736437798, 0.0273211020976305, 0.006596051622182131, 0.013456549495458603, -0.02534153126180172, -0.0072760568000376225, 0.036569174379110336, -0.004231144208461046, -0.02485797181725502, 0.004922483116388321, 0.005515598691999912, 0.0027030210476368666, -0.003218691796064377, 0.02778954990208149, 0.00503581715747714, 0.003307470353320241, -0.010789417661726475, -0.015594788827002048, -0.004231144208461046, 0.02927045151591301, -0.0008873125188983977, 0.0009317017393186688, 0.015005450695753098, -0.004952705465257168, -4.5009033783571795e-05, 0.02009793557226658, 0.018677478656172752, -0.005662932991981506, 0.017770806327462196, -0.0016055681044235826, 0.017785916104912758, -0.008409399539232254, 0.004695814568549395, 0.007948506623506546, -0.0032772477716207504, 0.002882466884329915, -0.005202040541917086, 0.004680703394114971, -0.008832513354718685, 0.012617876753211021, -0.01143920049071312, 0.008326287381350994, -0.02336196042597294, 0.004911149386316538, -0.007064499892294407, 0.001804847503080964, 0.01038141455501318, 0.01544367615133524, -0.015534344129264355, -0.01095564104616642, -0.0006752830813638866, -0.01881347969174385, -0.014748559333384037, -0.017937028780579567, 0.013698329217731953, -0.0028371333610266447, 0.024752194061875343, -0.02011304534971714, 0.010479637421667576, -0.017876584082841873, -0.019689932465553284, 0.010600527748465538, 0.005066039506345987, 0.0160481259226799, 0.0016934021841734648, -0.0059198238886892796, 0.009557852521538734, 0.024268634617328644, 0.015247230418026447, -0.003286692313849926, 0.018737925216555595, -0.050955064594745636, -0.006611162796616554, -0.0025877980515360832, -0.013214769773185253, -0.0007395058055408299, -0.0022440175525844097, -0.014635225757956505, -0.0026784653309732676, -0.026112204417586327, 0.012119205668568611, -0.00818273052573204, 0.012459208257496357, 0.008054285310208797, -0.006939832121133804, 0.011091642081737518, -0.016713019460439682, -0.01292765699326992, 0.0018879591953009367, 0.005205818451941013, 0.05382619798183441, 0.01731746830046177, 0.012156983837485313, 0.0009165905066765845, -0.0002753077133093029, -0.011567645706236362, 0.006641385145485401, -0.002142016775906086, -0.007767172064632177, -0.01233831886202097, 0.004778926260769367, -0.010101856663823128, -0.0015564566710963845, 0.0022987958509474993, -0.00980718806385994, -0.0033698042389005423, -0.0036059170961380005, -0.003634250722825527, -0.008870291523635387, 0.006259826943278313, -0.0027993551921099424, 0.01588190160691738, 0.005311597138643265, 0.010026300325989723, -0.0014478446682915092, 0.015405897982418537, -0.013033435679972172, 0.005980269052088261, -0.008817402645945549, 0.016894353553652763, 0.015519232489168644, -0.006902053952217102, -0.02580997906625271, 0.0032413587905466557, -0.005228485446423292, 0.01031341403722763, -0.0004474340530578047, 0.00939162913709879, -0.012051205150783062, -0.002160905860364437, -0.019342374056577682, -0.011167198419570923, 0.005840490106493235, -0.01103875320404768, -0.0032262473832815886, -0.02321084775030613, -0.0021590169053524733, 0.0052247075363993645, -0.006682941224426031, 0.0013921220088377595, 0.010033856146037579, -0.002786132972687483, -0.023830408230423927, -0.012859656475484371, 0.0005652544205076993, 0.002357351826503873, 0.007888061925768852, -0.02242506481707096, -0.013856996782124043, -0.024737082421779633, -0.009421851485967636, -0.009338739328086376, 0.001667901873588562, -0.002053238218650222, -0.003815585281699896, 9.993481216952205e-05, -0.016123682260513306, -0.0053644864819943905, 0.001524345250800252, 0.0012249540304765105, 0.011990760453045368, -0.022817956283688545, -0.017045466229319572, -0.0018634034786373377, -0.004012031480669975, -0.020173491910099983, -0.018073029816150665, 0.000879756873473525, -0.012217428535223007, -0.012194762006402016, 0.012308096513152122, -0.02502419613301754, -0.0018624590011313558, 0.0013996775960549712, -0.0036984733305871487, 0.002884355839341879, -0.007691615726798773, 0.0002571270160842687, 0.015897013247013092, 0.016622351482510567, 0.004242477472871542, -0.004582480061799288, -0.00874940212816, 0.006373160984367132, 0.017695249989628792, 0.002166572492569685, -0.003764584893360734, -0.008885403163731098, 0.012134317308664322, 0.019750377163290977, -0.002429130021482706, 0.011061419732868671, 0.0005921712727285922, 0.02142772264778614, 0.014257445000112057, -0.013448993675410748, -0.009127182886004448, -0.01267076563090086, -0.008137396536767483, 0.02470685914158821, -0.01039652619510889, -0.0003612528380472213, -0.013494327664375305, 0.0061804926954209805, 0.013849441893398762, 0.0032999147661030293, -0.004012031480669975, 0.0005506154266186059, 0.0020060157403349876, 0.015730788931250572, -0.02123127691447735, 0.01015474647283554, 0.01861703395843506, 0.006996499374508858, -0.009104515425860882, 0.008764512836933136, -0.0025726868771016598, 0.013184547424316406, 1.4609488971473183e-05, -0.0002644465130288154, 0.004355811979621649, -0.005496709607541561, 0.00031804415630176663, 0.010645860806107521, -0.007302501704543829, -0.006554495543241501, -0.007910728454589844, -0.008129841648042202, 0.007544281426817179, -0.024162854999303818, -0.02535664290189743, 0.03632739558815956, 0.003928919788450003, -0.0032489143777638674, 0.002693576505407691, -0.0036229172255843878, -0.014416112564504147, 0.017090801149606705, 0.0009543685591779649, -0.0005586432525888085, 0.0064184945076704025, 0.0027974662370979786, 0.006086047738790512, 0.011756536550819874, 0.0027067989576607943, 0.02582509070634842, -0.008129841648042202, 0.018919259309768677, -0.014914783649146557, 0.013690773397684097, -0.02290862426161766, -0.0026765763759613037, 0.007498947437852621, 0.010328524746000767, -0.006494050845503807, -0.017921917140483856, 0.003018468152731657, 0.01554945483803749, -0.007090944331139326, 0.006339160725474358, -0.01233831886202097, -0.014060999266803265, -0.002425352344289422, -0.005628932733088732, -0.006478939671069384, 0.0072873905301094055, -0.0009468129719607532, 0.0059122685343027115, -0.026233093813061714, 0.0014931783080101013, 0.005757378414273262, 0.02357351779937744, 0.014355667866766453, -0.006478939671069384, -0.05645555257797241, 0.0009298128425143659, -0.007797394413501024, 0.0030128012876957655, -0.021548612043261528, 0.004019586835056543, 0.016441017389297485, 0.026233093813061714, -0.006913387216627598, -0.0045069241896271706, -0.011386311613023281, 0.014597447589039803, 0.007597170304507017, 0.0007588670705445111, -0.03221714124083519, -0.0036323617678135633, 0.031794026494026184, 0.008462288416922092, 0.002495241817086935, 0.008522733114659786], "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f": [-0.013439127244055271, -0.013987024314701557, -0.009556886740028858, 0.011184923350811005, -0.040763527154922485, -0.044802308082580566, 0.009001162834465504, 0.034564465284347534, 0.02030349150300026, 0.040481749922037125, 0.018894614651799202, 0.019223352894186974, -0.013102562166750431, -0.006637379061430693, 0.016624756157398224, 0.0030682224314659834, -0.003123012138530612, 0.010120437480509281, 0.01168585754930973, -0.014769733883440495, 0.07632985711097717, -0.02352825552225113, -0.02039741724729538, 0.03011867217719555, 0.011936324648559093, -0.03697521239519119, -0.008985508233308792, -0.002696435200050473, -0.024232694879174232, -0.0032365049701184034, 0.011983286589384079, 0.023387368768453598, 0.01568550430238247, -0.015599406324326992, -0.013196486979722977, -0.023606527596712112, -0.014440995641052723, 0.016374288126826286, 0.005929026752710342, 0.0029703837353736162, -0.014996719546616077, 0.0331868939101696, -0.00659041665494442, -0.014002677984535694, -0.028396710753440857, -0.0027238300535827875, -0.00725180609151721, -0.013360856100916862, 0.006273419130593538, -0.022635966539382935, 0.017861437052488327, 0.010480483993887901, 0.01096576452255249, -0.0061090500093996525, 0.019614707678556442, -0.04630511254072189, -0.03040044754743576, 0.08052518218755722, 0.012601627968251705, -0.03998081758618355, 0.0001643690629862249, 0.005435919389128685, 0.002489017089828849, -0.020694846287369728, 0.023262135684490204, -0.005901631899178028, -0.006449528504163027, 0.011787609197199345, 0.0006442680023610592, 0.024858862161636353, -0.025359798222780228, -0.014699289575219154, -0.059141550213098526, 0.033218204975128174, -0.006449528504163027, -0.01236681453883648, 0.04070090875029564, -0.007091350853443146, 0.01837802678346634, 0.0018687195843085647, -0.0027042622677981853, -0.0038333211559802294, 0.028365403413772583, 0.013016464188694954, 0.03553502634167671, 0.036536894738674164, -0.012570319697260857, -0.04859062284231186, -0.032310258597135544, -0.032247643917798996, 0.008672424592077732, 0.007200930267572403, -0.008163663558661938, 0.00846892036497593, -0.02067919261753559, 0.03459577262401581, -0.008453265763819218, 0.014135738834738731, 0.023747414350509644, -0.017047420144081116, -0.0021094027906656265, 0.015192396938800812, -0.025657227262854576, 0.010864011943340302, 0.0036767793353646994, -0.005357648711651564, 0.007486619055271149, 0.01717265322804451, -0.016217747703194618, -0.029414234682917595, 0.01678129844367504, -0.059047628194093704, 0.013384337536990643, 0.005028910469263792, -0.05992426350712776, -0.030275214463472366, -0.035472407937049866, -0.03901025652885437, -0.010856185108423233, -0.022870780900120735, 0.04167146980762482, 0.002260074485093355, 0.030556989833712578, -0.010550928302109241, -0.02005302533507347, 0.029038533568382263, 0.006598243489861488, -0.004234460182487965, 0.019066810607910156, 0.0014489914756268263, 0.0005977945984341204, -0.02241680771112442, 0.009956068359315395, -0.03963642567396164, 0.032404184341430664, 0.018205828964710236, 0.013196486979722977, 0.0498429611325264, -0.014440995641052723, 0.03227895125746727, -0.0368499755859375, -0.04179670289158821, -0.03694390133023262, 0.00901681650429964, 0.006856537889689207, 0.018894614651799202, -0.0440509058535099, 0.055384546518325806, -0.02910115011036396, 0.03875979036092758, -0.07626724243164062, 0.014848005026578903, -0.0006589437834918499, 0.02241680771112442, 0.00796015840023756, -0.014394032768905163, -0.030290868133306503, 0.025422414764761925, 0.01300863642245531, 0.0561046376824379, -2.5621515305829234e-05, -0.04373782500624657, -0.049999501556158066, -0.00040847668424248695, 0.03650558367371559, 0.012922538444399834, 0.03803969547152519, 0.0336565226316452, -0.016139475628733635, -0.0019098118646070361, 0.026815637946128845, 0.01096576452255249, 0.030760494992136955, 0.02573549747467041, 0.008601980283856392, 0.003017346141859889, 0.027911432087421417, 0.024279657751321793, 0.05425744131207466, -0.02097662165760994, -0.01751704514026642, 0.0033950037322938442, -0.004958466626703739, -0.020084332674741745, -0.017282232642173767, 0.015106298960745335, -0.015388074330985546, 0.02083573490381241, 0.013337374664843082, 0.0018423032015562057, 0.013955716043710709, -0.0029116803780198097, -0.0030721358489245176, 0.04286118969321251, -0.021007930859923363, -0.04295511171221733, -0.03428268805146217, -0.015286322683095932, -0.014331416226923466, 0.04286118969321251, -0.002076137810945511, -0.03540978953242302, -0.02554764784872532, 0.04492754116654396, -0.037977080792188644, 0.021242743358016014, -0.021039240062236786, -0.045491091907024384, 0.030040401965379715, -0.009447307325899601, 0.031668439507484436, -0.029116803780198097, -0.00039233328425325453, 0.019802557304501534, -0.043362122029066086, 0.004934985190629959, -0.006379084661602974, 0.049717724323272705, 0.00024080555886030197, -0.024357927963137627, -0.012257235124707222, 0.02077311836183071, 0.01354087982326746, -0.014041814021766186, -0.034846238791942596, -0.023011667653918266, -0.006500404793769121, 0.038071002811193466, -0.021665407344698906, -0.020272184163331985, 0.0046179876662790775, -0.016374288126826286, 0.012445085681974888, -0.02842801995575428, -0.0012210272252559662, -0.0048919362016022205, 0.01953643560409546, -0.008797657676041126, -0.009697774425148964, -0.01750139147043228, 0.002187673933804035, 0.02861586958169937, -0.03141796961426735, -0.013869617134332657, -0.001683804439380765, 0.02144624851644039, -0.010136092081665993, 0.04674343019723892, 0.04952987655997276, 0.0023833513259887695, -0.030040401965379715, 0.019473819062113762, 0.0004290227952878922, -0.009235975332558155, 0.002426400315016508, 0.026079891249537468, 0.02872544899582863, -0.02471797540783882, -0.0024929307401180267, 0.02731657214462757, -0.00729876896366477, 0.009251629933714867, -0.018972884863615036, 0.027332225814461708, 0.0277548898011446, -0.04643034562468529, 0.02016260474920273, -0.02146190218627453, 0.02053830586373806, 0.021947182714939117, -0.004801924806088209, -0.018362371250987053, -0.029993439093232155, 0.00954905990511179, 0.009157704189419746, -0.03954249992966652, 0.00904812477529049, -0.011451044119894505, -0.003389133373275399, -0.006445615086704493, -0.016139475628733635, 0.03998081758618355, 0.009956068359315395, 0.01610816828906536, -0.02000606246292591, 0.007811443880200386, -0.012946019880473614, 0.012452912516891956, -0.02900722436606884, 0.011521488428115845, 0.002426400315016508, 0.01120840385556221, 0.03612988442182541, 0.008852447383105755, 0.01577160321176052, 0.03606726601719856, -0.009783872403204441, -0.004441878292709589, -0.027911432087421417, 0.014386205933988094, 0.0001091513258870691, 0.00760011188685894, -0.005568980239331722, -0.0068800188601017, 0.021962836384773254, -0.030525682494044304, -0.01527066808193922, 0.014127911999821663, -0.024373583495616913, 0.05588547885417938, 0.05889108404517174, -0.0004481013456825167, -0.012867748737335205, -0.01012826431542635, -0.012343333102762699, 0.007052215281873941, -0.0033969604410231113, 0.007416175212711096, 0.0036102489102631807, -0.018534567207098007, -5.411704478319734e-05, -0.020131295546889305, -0.0631803348660469, 0.03221633657813072, 0.019833866506814957, -0.03988689184188843, 0.034376613795757294, 0.005459400825202465, -0.019223352894186974, -0.0015859657432883978, -0.0017855566693469882, -0.011646721512079239, -0.042548105120658875, -0.023841340094804764, -0.029836896806955338, -0.0446457676589489, -0.027880122885107994, -0.03093269094824791, -0.00796015840023756, 0.0020546133164316416, 0.0026338184252381325, 0.01233550626784563, 0.020616576075553894, -0.009134223684668541, -0.012593800202012062, 0.00402704207226634, 0.0004889490082859993, 0.0015967279905453324, -0.007760567590594292, -0.008875928819179535, 0.0010948153212666512, -0.014448822475969791, 0.03525324910879135, 0.010746605694293976, 0.04323688894510269, 0.010441348887979984, -0.04242287203669548, 0.02218199521303177, 0.01051179226487875, 0.0015840089181438088, -0.018346717581152916, -0.04762006551027298, -0.03966773301362991, -0.018221484497189522, -0.02149321138858795, 0.04517801105976105, 0.017188306897878647, -0.021274052560329437, 0.0051541440188884735, 0.003972252365201712, -0.05153361335396767, 0.03185628727078438, 0.021054893732070923, -0.02766096405684948, -0.041483618319034576, -0.02996213175356388, 0.06408827751874924, 0.001944055431522429, -0.04070090875029564, 0.014605364762246609, 0.008069737814366817, 0.021587135270237923, -0.03450184687972069, 0.01995909959077835, 0.029696010053157806, 0.01094228308647871, -0.0025809856597334146, 0.003183671971783042, -0.030854420736432076, -0.0012298327637836337, -0.009306419640779495, -0.012515529990196228, -0.019880829378962517, 0.015466345474123955, -0.019317278638482094, -0.011607586406171322, 0.0080306027084589, -0.04279857128858566, 0.010590063408017159, -0.009971722960472107, -0.014206183142960072, 0.017188306897878647, -0.013345202431082726, 0.039229415357112885, -0.00950209703296423, -0.04956118389964104, 0.0313553549349308, -0.010316114872694016, 0.023152556270360947, 0.010668334551155567, 0.0031014876440167427, 0.014026159420609474, 0.019692977890372276, 0.012085039168596268, 0.04749482870101929, 0.009729082696139812, -0.021774986758828163, 0.048997633159160614, -0.03497147187590599, -0.01012826431542635, 0.004586679395288229, 0.058765850961208344, -0.018581530079245567, 0.0441761389374733, -0.0036219896283000708, 0.030948344618082047, 0.026142507791519165, 0.00695046316832304, -0.004144448321312666, -0.013987024314701557, 0.007604025769978762, 0.06418219953775406, -0.01300863642245531, -0.02260465919971466, -0.0021191867999732494, -0.000306235218886286, 0.022307228296995163, 0.03713175281882286, 0.0043440391309559345, -0.0035985081922262907, -0.014057467691600323, -0.0005180560401640832, -0.004610160831362009, -0.017485735937952995, -0.043268196284770966, -0.013126043602824211, -0.0321224108338356, -0.0013736557448282838, 0.004285336006432772, 0.025516338646411896, 0.010237843729555607, -0.006058173719793558, -0.08221583813428879, 0.00636343052610755, 0.018268447369337082, 0.003927246201783419, -0.0013482176000252366, -0.017188306897878647, 0.012883403338491917, -0.04304903745651245, -0.025954656302928925, -0.008648943156003952, 0.030854420736432076, -0.0040074740536510944, 0.004598420113325119, -0.014409687370061874, -0.003972252365201712, 0.006077741738408804, 0.008148008957505226, 0.012531183660030365, -0.0269878339022398, -0.0006232326850295067, -0.02780185267329216, 0.04261071979999542, -0.01132581103593111, -0.006613897625356913, -0.02669040486216545, -0.013642631471157074, 0.011004899628460407, -0.032435495406389236, -0.04746352136135101, -0.014354897662997246, -0.032779887318611145, 0.005733349360525608, -0.003954641055315733, 0.029508158564567566, -0.030228251591324806, -0.007866233587265015, 0.015662023797631264, -0.01664040982723236, 0.05613594502210617, 0.00729876896366477, 0.001559549244120717, 0.022041108459234238, -0.005083700176328421, -0.03738221898674965, 0.00656693521887064, -0.06167753040790558, -0.034846238791942596, -0.038947638124227524, 0.028928954154253006, -0.008374994620680809, -0.02540675923228264, 0.040857452899217606, -0.013861790299415588, 0.02092966064810753, 0.03481493145227432, 0.029930822551250458, 0.013227795250713825, -0.044708382338285446, -0.028881991282105446, 0.034470539540052414, -0.01977124996483326, 0.021728023886680603, 0.006899586878716946, 0.030697878450155258, -0.0036611249670386314, -0.020413070917129517, 0.04661819711327553, -0.007369212806224823, -0.008688078261911869, -0.004919331055134535, 0.006664773914963007, -0.007087436970323324, -0.04314296320080757, -0.01789274625480175, -0.005228501278907061, -0.03487754985690117, 0.041201844811439514, -0.009580368176102638, -0.012445085681974888, 0.015615059994161129, -0.016280364245176315, 0.005525931250303984, 0.026533862575888634, -0.010550928302109241, 0.007760567590594292, 0.0022033280692994595, 0.0075570628978312016, 0.02434227429330349, -0.011286674998700619, 0.0337817557156086, 0.01707872748374939, -0.0016192308394238353, 0.0004346485366113484, 0.06036258116364479, -0.013987024314701557, -0.006281245965510607, 0.0012445085449144244, 0.021540174260735512, -0.02847498282790184, -0.013713075779378414, -0.014675809070467949, -0.0202565286308527, -0.005032823886722326, -0.03612988442182541, 0.004156189039349556, -0.04016866534948349, -0.029805589467287064, -0.004512322135269642, 0.005181538872420788, 0.009415999054908752, -0.0024792333133518696, 0.023199519142508507, -0.015364592894911766, -0.0061325314454734325, -0.026095544919371605, 0.033938296139240265, -0.02476493827998638, 0.017235269770026207, 0.035284556448459625, 0.011748474091291428, 0.03550371527671814, -0.003897894872352481, 0.013728729449212551, 0.040669601410627365, 0.013141697272658348, -0.010723124258220196, -0.04041913524270058, -0.029664700850844383, 0.024013536050915718, -0.036004651337862015, 0.011474525555968285, -0.00744357006624341, 0.001901984796859324, -0.005118921864777803, 0.0005341994110494852, -0.020413070917129517, 0.013251276686787605, 0.006390825379639864, 0.00045617306022904813, 0.03829016163945198, -0.010472657158970833, 0.018988540396094322, -0.0415775440633297, 0.02146190218627453, 0.010300461202859879, 0.0013257147511467338, 0.0017610969953238964, -0.0029899515211582184, -0.012006768025457859, 0.012852095067501068, 0.000974962895270437, -0.009877797216176987, -0.03409484028816223, 0.027050450444221497, -0.00364351412281394, 0.01958339847624302, -0.018691109493374825, 0.032685961574316025, 0.00363177340477705, -0.005251982714980841, 0.029789933934807777, -0.0015703114913776517, 0.028944607824087143, -0.020694846287369728, 0.019505128264427185, 0.02501540444791317, 0.0051424033008515835, 0.027864469215273857, 0.014785387553274632, -0.02963339351117611, 0.04176539555191994, -0.039949506521224976, 0.03634904325008392, 0.037538763135671616, -0.021321015432476997, 0.011474525555968285, -0.008868101984262466, -0.00673521775752306, 0.0028940695337951183, -0.028365403413772583, 0.00233834539540112, -0.03168409317731857, 0.018503259867429733, -0.011161441914737225, -0.009572540409862995, 0.033593904227018356, -0.012452912516891956, -0.02986820600926876, -0.02039741724729538, -0.00018564898346085101, 0.015301976352930069, 0.06687472760677338, -0.019567744806408882, 0.018534567207098007, -0.014331416226923466, 0.00988562498241663, 0.029696010053157806, 0.014448822475969791, 0.01204590406268835, 0.023935265839099884, 0.012523356825113297, 0.021180126816034317, 0.009235975332558155, -0.023496948182582855, -0.003573070280253887, -0.0018882873700931668, 0.017000457271933556, 0.0197242870926857, 0.02870979532599449, -0.001639776979573071, 0.005236328579485416, -0.016421250998973846, 0.02626774087548256, 0.012679899111390114, 0.015544616617262363, 0.03188759833574295, 0.022745545953512192, 0.03719437122344971, -0.0059407674707472324, -0.020867042243480682, 0.0013990937732160091, 0.006167753133922815, 0.0023520428221672773, -0.00310344435274601, 0.008437611162662506, 0.0138774449005723, -0.01015174575150013, -0.015121953561902046, -0.02933596260845661, -0.025140639394521713, 0.0005542563740164042, -0.008648943156003952, -0.015755947679281235, 0.0010899234330281615, -0.02016260474920273, 0.06919154524803162, -0.04599202796816826, -0.005819447338581085, -0.0212583988904953, 0.023747414350509644, -0.008962026797235012, 0.02515629306435585, 0.0027414411306381226, -0.021227089688181877, -0.0014382292283698916, -0.021007930859923363, 0.02881937474012375, -0.030917037278413773, -0.015622887760400772, -0.0028177553322166204, 0.026111198589205742, -0.04458314925432205, 0.01342347264289856, 0.013173005543649197, -0.029257692396640778, -0.007752740290015936, 0.0013110388536006212, -0.008836793713271618, 0.014730598777532578, -0.005815533921122551, 0.0022091984283179045, 0.021101856604218483, 0.019552091136574745, 0.034846238791942596, -0.006030778866261244, 0.007741000037640333, -0.005721608642488718, 0.024608395993709564, -6.928204675205052e-05, -0.005314599722623825, -0.016139475628733635, -0.03209109976887703, -0.015599406324326992, 0.03188759833574295, -0.0014685592614114285, -0.0003417017578613013, -0.0036767793353646994, -0.005232415162026882, 0.04292380437254906, -0.027974048629403114, -0.026533862575888634, 0.013767865486443043, -0.011544969864189625, -0.004265768453478813, -0.012758169323205948, 0.010676161386072636, 0.03281119465827942, 0.0005518104298971593, 0.028177551925182343, -0.014456650242209435, 0.02020956762135029, -0.0072204978205263615, 0.02410746179521084, 0.01914508081972599, 0.011717165820300579, 0.003612205618992448, 0.008641116321086884, 0.01803363300859928, 0.030416103079915047, -0.025422414764761925, 0.04824623093008995, 0.03832147270441055, -0.02856890670955181, 0.011380600742995739, 0.02078877203166485, -0.031527549028396606, -0.031574513763189316, 0.03641165792942047, -0.030854420736432076, 0.008672424592077732, -0.024404890835285187, -0.0337817557156086, -0.004770616069436073, 0.02856890670955181, 0.010003031231462955, 0.009564713574945927, 0.03857193887233734, 0.00011441015521995723, 0.04473969340324402, 0.019489474594593048, 0.016609102487564087, 0.028114935383200645, -0.007322249934077263, -0.050156041979789734, 0.022103725001215935, 0.028318440541625023, -0.03998081758618355, -0.024749284610152245, -0.012452912516891956, -0.028553253039717674, 0.022917741909623146, -0.016483867540955544, 0.01726657897233963, -0.021054893732070923, 0.024498816579580307, 0.008374994620680809, 0.023246480152010918, 0.013932234607636929, 0.01568550430238247, -0.0018305624835193157, -0.004934985190629959, 0.05469575896859169, 0.007956244982779026, -0.03306166082620621, 0.02896026149392128, -0.009329901076853275, -0.013963542878627777, 0.0022992100566625595, 0.04092006757855415, -0.042642030864953995, 0.03926072269678116, 0.04852800816297531, 0.0006961225299164653, -0.01967732422053814, 0.005658991634845734, -0.013846136629581451, -0.01865980215370655, 0.0008922891574911773, -0.004602333530783653, -0.030071711167693138, -0.024796245619654655, 0.04906025156378746, 0.020741809159517288, -0.023434331640601158, -0.0009974658023566008, 0.02009998820722103, 0.02726960927248001, 0.019990408793091774, -0.008140182122588158, 0.004527976270765066, 0.02540675923228264, 0.022150687873363495, 0.010276979766786098, -0.021618444472551346, 0.009494270198047161, -0.0017542482819408178, 0.022479426115751266, -0.017830129712820053, 0.003289337968453765, -0.007760567590594292, -0.013118215836584568, 0.04132707789540291, 0.011826745234429836, 0.015411555767059326, -0.02005302533507347, 0.005510277114808559, -0.018362371250987053, 0.03303035348653793, -0.029993439093232155, -0.031042270362377167, -0.014769733883440495, -0.01156845036894083, -0.00950209703296423, -0.019348585978150368, 0.009329901076853275, -0.0023696538992226124, 0.0394485741853714, 0.05622987076640129, 0.038697171956300735, 0.03428268805146217, -0.009948241524398327, -0.013791346922516823, -0.027723580598831177, 0.009971722960472107, -0.018878960981965065, 0.035284556448459625, -0.02731657214462757, 0.04502146691083908, -0.0008893539779819548, -0.007787962444126606, -0.015286322683095932, 0.0004397850716486573, -0.012186791747808456, -0.010003031231462955, -0.003445879789069295, -0.0036591682583093643, 0.026283394545316696, 0.006977858021855354, 0.020663538947701454, -0.013603496365249157, 0.017971016466617584, 0.004234460182487965, -0.035816799849271774, -0.016765642911195755, -0.00878200400620699, 0.014973238110542297, -0.052159782499074936, 0.005251982714980841, 0.0017689241794869304, 0.008664597757160664, -0.007290941663086414, -0.0013296282850205898, -0.029273346066474915, 0.0020350455306470394, -0.0033069488126784563, -0.03074484132230282, 0.01459753792732954, -0.01986517384648323, 0.01282078679651022, -0.015043682418763638, -0.026424283161759377, -0.009361209347844124, -0.010386559180915356, 0.0011417779605835676, -0.011310156434774399, -0.020225221291184425, 0.009674292989075184, 0.015622887760400772, -0.006175580434501171, -0.02352825552225113, -0.04492754116654396, -0.012327679432928562, 0.04126445949077606, -0.02568853460252285, 0.015552443452179432, 0.007596198469400406, 0.005514190532267094, 0.005091527011245489, 0.007850578986108303, 0.012711207382380962, -0.012233753688633442, 0.0007553149480372667, 0.058421459048986435, 0.023449985310435295, 0.024843208491802216, -0.012734687887132168, -0.012656417675316334, -0.001427466981112957, -0.008883756585419178, 0.029273346066474915, 0.025531994178891182, -0.0016485825181007385, -0.0014891054015606642, 0.001437250874005258, -0.00173761579208076, -0.007392693776637316, -0.007459224201738834, 0.0026709972880780697, -0.009556886740028858, 0.0072087571024894714, 0.0023892216850072145, -0.008359340950846672, 0.009783872403204441, 0.015998588874936104, -0.005287204869091511, -0.006703909486532211, -0.013384337536990643, -0.023731760680675507, -0.023982228711247444, -0.008492400869727135, 0.02213503234088421, -0.0007196037913672626, 0.018002325668931007, -0.011372772976756096, -0.024545779451727867, 0.019301623106002808, -0.016123821958899498, 0.011153614148497581, 0.005013256333768368, 0.033218204975128174, 0.0011906973086297512, -0.0029136373195797205, 0.010167400352656841, 0.0010654637590050697, -0.004214892163872719, 0.008163663558661938, -0.002271815203130245, 0.005709867924451828, 0.011396254412829876, -0.0010781827149912715, 0.0043440391309559345, 0.010926628485321999, -0.0058351014740765095, 0.015215878374874592, -0.03306166082620621, -0.0022170254960656166, 0.004062263760715723, -0.011020554229617119, -0.006140358280390501, -0.012249408289790154, 0.0015067163622006774, 0.02044438011944294, -0.028584562242031097, -0.015497653745114803, -0.011498006992042065, -0.01703176461160183, -0.01351739838719368, 0.008265415206551552, 0.01582639291882515, -0.023340405896306038, -0.05817099288105965, -0.021477555856108665, -0.010566581971943378, 0.014417514204978943, -0.025625918060541153, -0.00233834539540112, -0.03584810718894005, 0.0011006856802850962, 0.00747879222035408, -0.019223352894186974, 0.0168908778578043, -0.012515529990196228, -0.007752740290015936, -0.008625461719930172, -0.00012333794438745826, -0.025954656302928925, -0.0065512810833752155, -0.028991570696234703, -0.02424834854900837, 0.008500228635966778, -0.03500278294086456, 0.06346210837364197, 0.0068252296186983585, 0.0072439792566001415, 0.0037472231779247522, -0.029930822551250458, -0.006156012415885925, 0.00177381606772542, -0.03281119465827942, -0.027645310387015343, 0.005944680888205767, 0.0029116803780198097, 0.008985508233308792, 0.02236984670162201, 0.02559461072087288, 0.0013178875669836998, 0.009423825889825821, 0.008938546292483807, -0.013000809587538242, -0.011826745234429836, 0.005600288510322571, 0.007948418147861958, -0.018847651779651642, -0.01875372603535652, 0.00436360714957118, 0.00834368634968996, 0.04621118679642677, -0.013603496365249157, -0.00945513416081667, -0.00844543892890215, 0.006899586878716946, 0.003046697936952114, 0.015012374147772789, -0.011474525555968285, -0.0027316571213304996, -0.06505883485078812, -0.020460033789277077, -0.0019626447465270758, 0.012891230173408985, 0.017094381153583527, -0.014104430563747883, 0.013118215836584568, 0.023794377222657204, -0.01789274625480175, 0.0415775440633297, 0.0027864468283951283, -0.028584562242031097, 0.02496844157576561, 0.023653490468859673, -0.007975813001394272, 0.013626977801322937, 0.0007176470244303346, -0.005349821411073208, 0.02506236732006073, -0.006805661600083113, -0.014816696755588055, 0.02487451769411564, 0.00417184317484498, -0.011654549278318882, -0.007459224201738834, 0.032341569662094116, -0.0031914992723613977, 0.00011569428897928447, -0.02481190115213394, -0.03274857625365257, 0.0034204418770968914, 0.006261678412556648, -0.00209766230545938, 0.021336669102311134, -0.0035104535054415464, -0.0034145715180784464, -0.0009143028873950243, 0.006187321152538061, 0.02337171509861946, -0.010864011943340302, 0.02222895808517933, 0.0204913429915905, 0.005498536396771669, -0.024858862161636353, -0.024279657751321793, -0.007380953524261713, 0.0022913829889148474, -0.015106298960745335, 0.006202975288033485, 0.00185795733705163, 0.009181185625493526, 0.007486619055271149, -0.004931071773171425, -0.023778723552823067, -0.01277382392436266, 0.006692168768495321, 0.022056762129068375, 0.004152275621891022, 0.01842498779296875, -0.009439480490982533, 0.06230369955301285, 0.013243449851870537, -0.008226280100643635, -0.005486795678734779, -0.0038391915149986744, 0.01664040982723236, 0.0008634267142042518, 0.006042519584298134, 0.03929203003644943, -0.0032365049701184034, 0.01740746572613716, -0.0017669673543423414, -0.00040945506771095097, 0.0027433978393673897, 0.005396783817559481, 0.0025438067968934774, 0.014581883326172829, 0.003213023766875267, 0.009572540409862995, -0.009846488945186138, -0.0149106215685606, 0.00042559843859635293, 0.012218100018799305, -0.005365475546568632, -0.013149524107575417, -0.015215878374874592, 0.0045671118423342705, -0.017282232642173767, -0.015028027817606926, 0.0010723124723881483, 0.020914005115628242, 0.013564360328018665, 0.03813362121582031, 0.019395548850297928, -0.006594330072402954, 0.0429864227771759, 0.00416010245680809, -0.004140534903854132, -0.01645256020128727, -0.00022025943326298147, 0.006911327596753836, -0.016812605783343315, 0.0004048077098559588, -0.009008989669382572, -0.0007474878802895546, 0.007341817952692509, 0.0008746781968511641, 0.019552091136574745, -0.022041108459234238, -0.025485031306743622, 0.0038646296598017216, 0.011787609197199345, -0.03497147187590599, -0.01664040982723236, -0.020647885277867317, 0.0034028308000415564, -0.013767865486443043, -0.02313690073788166, -0.02290208823978901, 0.010018684901297092, 0.009901278652250767, 0.02870979532599449, 0.00019261999113950878, -0.048903707414865494, -0.013885271735489368, -0.002941031940281391, -0.005224587861448526, -0.015552443452179432, -0.002602510154247284, 0.02207241579890251, -0.0001533621980343014, 0.003706130897626281, -0.006234283559024334, 0.008014948107302189, -0.020553959533572197, -0.005737262777984142, 0.02092966064810753, -0.023966573178768158, 0.005525931250303984, -0.02222895808517933, 0.01558375172317028, 0.00028715666849166155, 0.010613544844090939, -0.0007039495976641774, -0.02703479677438736, -0.0025633745826780796, 0.003915505949407816, -0.02208806946873665, 0.012515529990196228, -0.013462608680129051, -0.007741000037640333, -0.0020193911623209715, 0.020021716132760048, 0.02914811298251152, -0.0024733629543334246, -0.006586502771824598, -0.02842801995575428, -0.010543100535869598, -7.769770490995143e-06, -0.011004899628460407, -0.013728729449212551, 0.0019323148299008608, 0.007697951048612595, -0.021180126816034317, 0.014159220270812511, -0.008218453265726566, -0.013141697272658348, -0.025516338646411896, -0.009110742248594761, -0.012930366210639477, -0.006887846160680056, 0.016468213871121407, -0.000630570575594902, -0.010519620031118393, 0.0003989374090451747, -0.0038372348062694073, -0.016671719029545784, -0.004888022784143686, 0.026079891249537468, 0.010730951093137264, 0.005662905517965555, 0.002330518327653408, 0.013235623016953468, 0.014425341039896011, 0.009556886740028858, -0.01592814363539219, 0.017203960567712784, 0.00947861559689045, 0.0075179277919232845, 0.011051862500607967, 0.020851388573646545, -0.012859921902418137, -0.015215878374874592, 0.003443923080340028, -0.00372765539214015, -0.010018684901297092, 0.033312126994132996, 0.026518207043409348, -0.0015272625023499131, 0.001764032174833119, -0.01347043551504612, -0.0041757565923035145, 0.01161541324108839, 0.01673433557152748, -0.0061325314454734325, -0.003287381026893854, -0.021336669102311134, 0.013650459237396717, 0.015458518639206886, -0.019270315766334534, 0.003649384481832385, -0.003868543077260256, 0.007733172737061977, -0.002937118522822857, 0.006476923357695341, -0.011200577020645142, 0.010237843729555607, -0.00950209703296423, 0.03371913731098175, 0.016421250998973846, 0.023496948182582855, -0.019395548850297928, 0.005017169751226902, -0.0014480131212621927, -0.009055952541530132, -0.0058468421921133995, 0.013681767508387566, -0.06487099081277847, -0.013720902614295483, 0.0084141306579113, 0.001591835985891521, 0.018769381567835808, -0.005995557177811861, -0.009024644270539284, 0.004805838223546743, -0.017047420144081116, 0.0240918081253767, 0.001645647338591516, 0.009995204396545887, 0.0011515617370605469, -0.023246480152010918, -0.02592334896326065, -0.013572188094258308, 0.01751704514026642, 0.025719843804836273, 0.02582942321896553, -0.0379144623875618, -0.02540675923228264, -0.024905825033783913, 0.02030349150300026, 0.026220778003335, -0.013478262349963188, -0.00988562498241663, 0.011850226670503616, -0.00046253256732597947, 0.00765881547704339, 0.0012660330394282937, -0.0032697701826691628, 0.002173976507037878, 0.004308817442506552, 0.018691109493374825, 0.009596021845936775, 0.008938546292483807, -0.01842498779296875, 0.033218204975128174, -0.01163889467716217, 0.00846892036497593, 0.013971369713544846, 0.009572540409862995, -0.008672424592077732, -0.01592031680047512, -0.017673587426543236, -0.03356259688735008, -0.017047420144081116, 0.024686666205525398, 0.021195780485868454, -0.013533052057027817, -0.021962836384773254, 0.004132707603275776, 0.010785740800201893, -0.005146316718310118, 0.023982228711247444, -0.032435495406389236, -0.010402212850749493, 0.0036728656850755215, -0.019458165392279625, 0.019505128264427185, -0.020225221291184425, 0.025845076888799667, -0.023121247068047523, 0.01024567149579525, 0.005275464151054621, 0.014988892711699009, -0.016029896214604378, 0.023449985310435295, -0.0065160589292645454, -0.0030506113544106483, 0.006202975288033485, 0.002849063603207469, -0.011161441914737225, 0.011779782362282276, -0.002320734551176429, -0.006954376585781574, -0.006414306815713644, 0.01199894119054079, -0.00022331689251586795, -0.007365299388766289, -0.0045318896882236, 0.0047236536629498005, 0.012961674481630325, 0.01703176461160183, -0.0011818917701020837, -0.022823818027973175, -0.0036082922015339136, -0.003696346888318658, -0.0009343597921542823, 0.002516411943361163, 0.0063712578266859055, -0.023215172812342644, -0.04574156180024147, -0.013055599294602871, -0.014754079282283783, 0.02197849191725254, 0.011106652207672596, -0.04483361542224884, -0.0120772123336792, 0.006582589354366064, -0.006797834765166044, 0.021274052560329437, 0.00436360714957118, -0.019113773480057716, 0.042642030864953995, -0.0043557798489928246, -0.002586855785921216, -0.005103267729282379, 0.00329520832747221, -0.016875222325325012, -0.02035045437514782, -0.01421400997787714, -0.003821580670773983, 0.006457355804741383, 0.00636343052610755, 0.00026832270668819547, 0.014362724497914314, 0.01060571800917387, -0.004594506695866585, 0.006347776390612125, 0.00873504113405943, 0.040293898433446884, -0.012539010494947433, -0.005717695225030184, 0.020506996661424637, 0.0007313444511964917, 0.004218805581331253, 0.012249408289790154, 0.004719740245491266, 0.002168106148019433, 0.0021465816535055637, -0.024639705196022987, -0.034126147627830505, -0.015364592894911766, -0.01808059588074684, 0.009580368176102638, 0.021821949630975723, -0.004919331055134535, 0.007627506740391254, 0.0399181991815567, -0.023074284195899963, 0.020553959533572197, -0.012476393952965736, 0.008907237090170383, 0.005788139067590237, -0.022667275741696358, 0.006328208837658167, -0.0131103890016675, -0.004981948062777519, -0.0033382573164999485, 0.0014920405810698867, -0.008171490393579006, 0.00454363040626049, 0.020366108044981956, 0.009948241524398327, -0.026753021404147148, -0.0028940695337951183, -0.007737086154520512, -0.003539805067703128, -0.010574409738183022, -0.013439127244055271, -0.0034028308000415564, -0.0026475158520042896, -0.006833056453615427, 0.005021083168685436, 0.01354087982326746, 0.013611323200166225, -0.002070267451927066, -0.0027120893355458975, -0.029226383194327354, 0.0018755682976916432, -0.040387824177742004, 0.015067163854837418, -0.004469273146241903, -0.009423825889825821, 0.0035006694961339235, 0.013509570620954037, -0.014433168806135654, 0.020334800705313683, 0.015881182625889778, 0.020225221291184425, -0.0021446249447762966, -0.037350911647081375, -0.00435186643153429, 0.024514470249414444, -0.018738072365522385, -0.0044731865637004375, -0.025093676522374153, -0.01199894119054079, 0.01084835734218359, 0.018738072365522385, -0.0042814225889742374, -0.013595669530332088, -0.020319147035479546, -0.0065160589292645454, 0.00033142868778668344, -0.01856587640941143, 0.007748826872557402, 0.007784049026668072, -0.0075179277919232845, 0.006977858021855354, 0.009932586923241615, 0.008531536906957626, 0.007874060422182083, 0.013345202431082726, -0.0034184849355369806, 0.0034243552945554256, 0.016155129298567772, -0.022244611755013466, -0.0015390031039714813, -0.03525324910879135, 0.009963896125555038, -0.020178258419036865, -0.017532698810100555, -0.00909508764743805, -0.007396607659757137, -0.018722418695688248, -0.00836716778576374, 0.00402704207226634, 0.013533052057027817, -0.019176390022039413, -0.0033069488126784563, 0.023825686424970627, -0.002745354548096657, -0.016296017915010452, 0.001425510155968368, -0.03299904614686966, 0.0039976900443434715, 0.002596639795228839, -0.005948594305664301, -0.013204313814640045, -0.02766096405684948, 0.027285262942314148, 0.013736557215452194, 0.00046815830864943564, -0.018847651779651642, 0.005326339974999428, -0.017438774928450584, 0.024843208491802216, 0.024498816579580307, -0.028600215911865234, -0.03102661669254303, -0.02824016846716404, -0.004081831779330969, -0.014581883326172829, -0.015810737386345863, 0.005995557177811861, -0.016186438500881195, -0.02861586958169937, -0.01875372603535652, -0.00916553195565939, -0.0012542924378067255, -0.019692977890372276, 0.01958339847624302, -0.014065295457839966, 0.00011728417302947491, 0.010410040616989136, 0.038885023444890976, -0.0023892216850072145, 0.01817452162504196, 0.002886242466047406, -0.011451044119894505, 0.024138769134879112, -0.006660860497504473, 0.0020056937355548143, 0.0021583223715424538, 0.001267011510208249, 0.017094381153583527, -0.039041563868522644, -0.014065295457839966, -0.013963542878627777, 0.01798667013645172, 0.017376156523823738, 0.0036591682583093643, -0.028459327295422554, -0.03371913731098175, -0.010879666544497013, -0.0031856289133429527, -0.00638691196218133, 0.01740746572613716, 0.006719563622027636, 0.014534920454025269, -0.007189189549535513, -0.01087183877825737, -0.0176579337567091, -0.014902794733643532, -0.007259633392095566, -0.006844797171652317, 0.007834925316274166, 0.003565243212506175, 0.008789830841124058, -0.027113066986203194, -0.0016368418000638485, -0.017485735937952995, -0.007666642311960459, -0.006766526028513908, -0.014409687370061874, -0.001006760518066585, -0.0016329282661899924, -0.0008492401102557778, -0.0012386383023113012, -0.016656063497066498, -0.004050523042678833, 0.005369388964027166, 0.008594153448939323, 0.0035202372819185257, 0.005122835747897625, 0.003304992103949189, 0.004645382519811392, 0.0035143669229000807, -0.004563197959214449, -0.006625638343393803, -0.002424443606287241, -0.012257235124707222, -0.006508232094347477, -0.012554665096104145, -0.008226280100643635, -0.010472657158970833, 0.07989901304244995, 0.0074553107842803, 0.005694213788956404, -0.004058350343257189, 0.0019313363591209054, -0.011764127761125565, -0.007318336516618729, 0.0018051244551315904, 0.01645256020128727, -0.015795083716511726, 0.0024694493040442467, -0.03775792196393013, 0.005897718481719494, 0.0024870603810995817, -0.025531994178891182, 0.017485735937952995, 0.011623240076005459, 0.008155835792422295, -0.019411202520132065, 0.008101046085357666, 0.01809624955058098, -0.013290412724018097, -0.0034908857196569443, 0.008688078261911869, -6.4328960434068e-05, 0.024639705196022987, -0.0005875215283595026, -0.005236328579485416, -0.002874501748010516, 0.010723124258220196, -0.001687717973254621, -0.007357472088187933, -0.028208861127495766, 0.006007297895848751, -0.005341994576156139, 0.00979169923812151, -0.001433337340131402, 0.018049288541078568, -0.008868101984262466, -0.006852624472230673, 0.009830835275352001, -0.003567199921235442, 0.02063222974538803, 0.014675809070467949, -0.013501743786036968, -0.0022855126298964024, -0.0037707043811678886, 0.000338277401169762, 4.616764636011794e-05, -0.008101046085357666, -0.002416616538539529, -0.017877092584967613, 0.0045671118423342705, 0.011732819490134716, 0.004837146494537592, 0.003645470831543207, -0.01199894119054079, 0.002534023020416498, -0.00021414451475720853, 0.009956068359315395, -0.02155582793056965, 0.005024997051805258, -0.027379188686609268, -0.02251073345541954, -0.013094734400510788, -0.027645310387015343, -0.007897541858255863, -0.02726960927248001, 0.0037511365953832865, 0.004273595288395882, -0.006390825379639864, 0.018221484497189522, 0.005071959458291531, -0.020068679004907608, 0.004715826362371445, 0.022056762129068375, -0.004860627930611372, 0.010785740800201893, -0.01486365869641304, 0.0002461866824887693, -0.008633289486169815, 0.010120437480509281, -0.017438774928450584, -0.01597510650753975, 0.01967732422053814, 0.002399005461484194, 0.014464477077126503, -0.02597031183540821, 0.015489826910197735, -0.017000457271933556, -0.007161794696003199, 0.003541761776432395, -0.002937118522822857, 0.002690564841032028, 0.005510277114808559, 0.006336035672575235, -0.0002724808582570404, 0.0025692449416965246, 0.009596021845936775, 0.0007386823417618871, -0.004285336006432772, 0.011490180157124996, -0.004105312749743462, 0.001815886702388525, 0.005490709096193314, -0.022166341543197632, 0.004938898608088493, 0.006159926299005747, -0.015215878374874592, -0.0028647177387028933, 0.0006589437834918499, -0.006034692283719778, 0.009916933253407478, -0.0014577970141544938, -0.02861586958169937, 0.02592334896326065, 0.016609102487564087, -0.00671173632144928, -0.015521135181188583, -0.014245318248867989, 0.001982212532311678, -0.0005532779614441097, 0.005498536396771669, -0.010370904579758644, 0.001257227617315948, -0.004770616069436073, -0.011451044119894505, -0.010496138595044613, -0.01239029597491026, 0.01347043551504612, -0.006860451307147741, 0.010683989152312279, 0.011670202948153019, 0.010715297423303127, 0.015301976352930069, 0.007576630916446447, 0.006199061404913664, -0.010010858066380024, 0.015513308346271515, -0.025625918060541153, 0.00979169923812151, -0.012664244510233402, 0.0058468421921133995, 0.02130535989999771, -0.0069700307212769985, 0.014198355376720428, 0.006750871893018484, -0.021524518728256226, 0.00793667696416378, -0.0006599221960641444, 0.02000606246292591, -0.02202545292675495, -0.008273242972791195, 0.002424443606287241, 0.005287204869091511, 0.0066452063620090485, -0.040137358009815216, 0.019927792251110077, -0.012452912516891956, -0.022244611755013466, -0.011897188611328602, -0.008688078261911869, -0.030103018507361412, 0.002052656374871731, -0.01053527370095253, 0.01837802678346634, 0.02155582793056965, 0.016233401373028755, 0.030807457864284515, -0.0016661934787407517, -0.01881634257733822, 0.01751704514026642, 0.013987024314701557, -0.02072615548968315, 0.03149624168872833, -0.01717265322804451, -0.003950727637857199, -0.003651341190561652, -0.026518207043409348, 0.01572464033961296, -0.015646368265151978, -0.003136709565296769, 0.025672880932688713, 0.01886330544948578, 0.007533581927418709, -0.016249055042862892, -0.01558375172317028, -0.00909508764743805, -0.005365475546568632, 0.0028021009638905525, -0.0029723404441028833, -0.005811620038002729, 0.004332298878580332, -0.011286674998700619, -0.014307934790849686, -0.0014949757605791092, 0.021759333088994026, 0.015795083716511726, 0.018988540396094322, -0.017579661682248116, 0.00842195749282837, 0.013744384050369263, 0.008938546292483807, -0.00402704207226634, -0.028506290167570114, -0.01664040982723236, 0.007373126223683357, -0.024264004081487656, -0.008695906028151512, 0.00761185260489583, -0.040293898433446884, -0.030870074406266212, 0.014127911999821663, -0.0005268615204840899, 0.007971899583935738, 0.01693784072995186, 0.011881534941494465, 0.023590873926877975, 0.028271477669477463, 0.003719828324392438, 0.011294502764940262, 0.001241573365405202, 0.030134327709674835, -0.014010505750775337, -0.025093676522374153, -0.00918901339173317, 0.007036561146378517, 0.011145787313580513, 0.027551384642720222, -0.0005889891181141138, 0.027535730972886086, -0.014589710161089897, -0.001381482812575996, 0.01909811981022358, 0.013024291023612022, 0.004120966885238886, 0.008492400869727135, -0.0009187055984511971, 0.01058223657310009, 0.0017180480062961578, -0.011724992655217648, -0.011090997606515884, -0.030948344618082047, 0.0004199727263767272, -0.0072322385385632515, -0.01640559732913971, 0.0006251894519664347, -0.011811090633273125, -0.006042519584298134, -3.0727474950253963e-05, 0.009830835275352001, 0.007404434494674206, 0.012014595791697502, 0.02246377058327198, 0.025985965505242348, -0.008594153448939323, -0.011623240076005459, -0.0003277597134001553, 0.0006618789630010724, -0.01967732422053814, -0.0008551104692742229, 0.003723741741850972, -0.014965411275625229, 0.004966293461620808, -0.0032443320378661156, 0.017767513170838356, -0.026909561827778816, -0.0013707205653190613, 0.0014939972897991538, 0.014738425612449646, 0.010042166337370872, -0.00877417717128992, 0.02949250489473343, 0.023778723552823067, 0.0027414411306381226, 0.004512322135269642, -0.003805926302447915, -0.024404890835285187, 0.0011417779605835676, 0.012992982752621174, 0.004426223691552877, 0.011599759571254253, 0.0075570628978312016, -0.01881634257733822, 0.0018648060504347086, -0.029085496440529823, -0.0011946108425036073, 0.0011936324881389737, -0.0014118128456175327, -0.0021074460819363594, -0.006292986683547497, -0.02789577655494213, 0.004481013398617506, -0.006985684856772423, -0.007204843685030937, 0.0011163398157805204, -0.00672347703948617, 0.010042166337370872, 0.010997072793543339, 0.01238246913999319, -0.018941577523946762, -0.004140534903854132, -0.0068643647246062756, -0.013337374664843082, -0.0053106858395040035, -0.0022933396976441145, 0.01673433557152748, 0.013431300409138203, -0.00396833848208189, 0.023058630526065826, 0.013572188094258308, -0.008453265763819218, 0.010527446866035461, 0.005627683363854885, -0.0038528889417648315, -0.0077683948911726475, -0.015012374147772789, 0.0014949757605791092, -0.0007929828716441989, 0.0014401860535144806, -0.010018684901297092, 0.009666466154158115, 0.009580368176102638, 0.009995204396545887, 0.006512145511806011, 0.006688255351036787, 0.019802557304501534, 0.014965411275625229, 0.015192396938800812, -0.04423875734210014, 0.007975813001394272, -0.006793920882046223, -0.015231532976031303, -0.019254660233855247, 0.006296900101006031, 0.013752210885286331, 0.011897188611328602, -0.010973591357469559, -0.02067919261753559, -0.009932586923241615, -0.008085392415523529, -0.013439127244055271, -0.015795083716511726, 0.007694037165492773, -0.008922891691327095, 0.007326163817197084, 0.006300813984125853, -0.005024997051805258, 0.003633730113506317, 0.026252087205648422, 0.01120840385556221, 0.017297886312007904, 0.010879666544497013, 0.003983993083238602, -0.008962026797235012, 0.01717265322804451, 0.017736203968524933, -0.0018491519149392843, -0.007615766488015652, 0.007537495344877243, -0.026753021404147148, -0.009267283603549004, -0.012891230173408985, -0.013047772459685802, 0.004637555684894323, 0.011795436963438988, 0.002700348850339651, 0.01717265322804451, -0.02939857915043831, 0.013838308863341808, -0.005486795678734779, -0.026737365871667862, -0.009877797216176987, -0.012194618582725525, -0.026486899703741074, 0.005565066821873188, 0.00013257146929390728, 0.015982933342456818, -0.00619514798745513, 0.0005009342567063868, 0.023262135684490204, -0.0002636753488332033, 0.008664597757160664, 0.012977328151464462, 0.022432463243603706, 0.023778723552823067, -0.005013256333768368, 0.022870780900120735, -0.0009519708110019565, -0.005631596781313419, -0.017282232642173767, -0.009956068359315395, 0.005197193007916212, 0.008821139112114906, -0.013486090116202831, 0.016006415709853172, -0.031762365251779556, 0.02833409421145916, -0.006316468119621277, 0.008437611162662506, -0.005099354311823845, -0.007682296447455883, 0.0048684547655284405, 0.01817452162504196, -0.014401860535144806, -0.012656417675316334, -0.010472657158970833, 0.014542748220264912, 0.01751704514026642, -0.00844543892890215, 0.0038489755243062973, 0.006058173719793558, -5.8275189076084644e-05, 0.01645256020128727, 0.014425341039896011, -0.005091527011245489, 0.029085496440529823, -0.01168585754930973, -0.004563197959214449, 0.01339999120682478, 0.013979196548461914, 0.011247539892792702, 0.0051306625828146935, -0.003128882497549057, 0.01761097088456154, -0.025187600404024124, 0.013720902614295483, 0.0076509881764650345, -0.007592285051941872, 0.021477555856108665, -0.0011877621291205287, -0.012296371161937714, 0.0014186615590006113, 0.01269555278122425, -0.01991213671863079, -0.015795083716511726, 0.024702321738004684, -0.027379188686609268, 0.0031582340598106384, 0.01928596943616867, -0.018988540396094322, 0.0034908857196569443, -0.00605034688487649, -0.00017280764586757869, 0.015802910551428795, 0.001854043803177774, 0.013533052057027817, 0.008664597757160664, 0.007427915930747986, -0.011364946141839027, 0.0023755242582410574, 0.0022796422708779573, 0.009940414689481258, 0.004269681870937347, -0.035566333681344986, 0.008476747199892998, -0.006500404793769121, -0.0009338706149719656, 0.043988291174173355, -0.040575675666332245, 0.0010595933999866247, -0.0024811900220811367, 0.00744357006624341, -0.0013178875669836998, -0.02135232277214527, -0.00353589141741395, 0.005169798154383898, 0.012468567118048668, 0.009799527004361153, 0.0003583343350328505, -0.021571481600403786, 0.0018334976630285382, 0.013188660144805908, -0.010527446866035461, -0.005330253858119249, 0.00021879184350837022, 0.010096956044435501, 0.017094381153583527, -0.0037433095276355743, -0.025704190135002136, -0.018722418695688248, 0.005392870400100946, 0.0007000360637903214, 0.012546838261187077, 0.027253955602645874, -0.003578940639272332, -0.010738777928054333, 0.0032697701826691628, 0.004324471578001976, -0.013533052057027817, 0.012734687887132168, 0.024749284610152245, 0.003023216500878334, -0.016296017915010452, 0.011044034734368324, -0.006163839716464281, -0.003893981222063303, 0.050187353044748306, -0.007592285051941872, -0.012922538444399834, -0.003438052721321583, -0.008155835792422295, 0.003706130897626281, 0.012906884774565697, 0.008210625499486923, 0.0057294354774057865, -0.010323942638933659, 0.01457405649125576, 0.007709691300988197, 0.0165934469550848, 0.0018295841291546822, -0.013071253895759583, 0.0033519547432661057, 0.012272889725863934, -0.01928596943616867, 0.013376510702073574, 0.023246480152010918, 0.00988562498241663, 0.02005302533507347, 0.006140358280390501, 0.005291118286550045, -0.029226383194327354, -0.008046256378293037, -0.0006041541346348822, 0.00788580160588026, -0.010073474608361721, 0.015450690872967243, -0.0042931633070111275, -0.00015030473878141493, -0.0015566140646114945, -0.016906531527638435, 0.005044564604759216, 0.0038470185827463865, 0.01775185763835907, 0.01166237611323595, 0.02077311836183071, 0.00015372909547295421, 0.017736203968524933, 0.03688128665089607, -0.018628492951393127, 0.014973238110542297, -0.011881534941494465, 0.025610264390707016, 0.001125145354308188, -0.005627683363854885, -0.039417266845703125, -0.0012699466897174716, -0.014879313297569752, -0.025813769549131393, 0.006112963426858187, -0.020710501819849014, 0.002588812727481127, 0.017814474180340767, 0.004488840699195862, 0.02149321138858795, 0.0009436545078642666, 0.00030917036929167807, -0.0015409599291160703, -0.01775185763835907, 0.015575924888253212, -0.004469273146241903, -0.018221484497189522, -0.0011280805338174105, 0.00470017222687602, -0.024498816579580307, -0.002522282302379608, 0.021681061014533043, 0.0038431051652878523, 0.002667083637788892, 0.015990760177373886, 0.012061557732522488, -0.008046256378293037, 0.0002580496366135776, -0.0006760655669495463, 0.01239029597491026, 0.0002134107198799029, -0.013126043602824211, -0.00907160621136427, 0.00177381606772542, -0.012891230173408985, 0.0019254661165177822, -0.016233401373028755, -0.02308993972837925, 0.009470788761973381, 0.005885977763682604, 0.02083573490381241, 0.005060218740254641, 0.004899763502180576, 0.010785740800201893, -0.02251073345541954, -0.005075872875750065, 0.0052598100155591965, -0.006664773914963007, 0.002175933215767145, 0.022495079785585403, -0.007881887257099152, -0.0007655880181118846, -0.0018344761338084936, -0.016045549884438515, -0.03631773591041565, -0.016280364245176315, 0.008406302891671658, -0.003232591552659869, -0.0023696538992226124, 0.01378351915627718, 0.006476923357695341, 0.008633289486169815, -0.006844797171652317, -0.012218100018799305, -0.00437534786760807, -0.005921199452131987, -0.001033176900818944, 0.004426223691552877, -0.014464477077126503, -0.007330077234655619, 0.0041483617387712, 0.012178963981568813, -3.5894583561457694e-05, 0.0007205822039395571, 0.017438774928450584, 0.011075343936681747, 0.0013237579260021448, -0.007760567590594292, 0.006582589354366064, 0.004453618545085192, -0.008155835792422295, 0.011333637870848179, 0.010496138595044613, 0.03188759833574295, -0.03184063360095024, -0.009541232138872147, 0.013149524107575417, -0.00435186643153429, -0.037538763135671616, 0.0028373231180012226, -0.0007783070323057473, -0.029351618140935898, 0.013572188094258308, 0.0021700628567487, -0.018988540396094322, 0.0008291832054965198, -0.006598243489861488, -0.0031719314865767956, -0.00727528752759099, 0.012069384567439556, -0.02232288382947445, 0.0064338743686676025, -0.009134223684668541, -0.015262841247022152, 0.010136092081665993, -0.006727390456944704, 0.019489474594593048, -0.017642278224229813, 0.010879666544497013, -0.010683989152312279, -0.009721255861222744, -0.0026357751339673996, -0.03700651973485947, 0.03713175281882286, 0.01726657897233963, 0.0023559564724564552, -0.008766349405050278, 0.0019411202520132065, -0.01750139147043228, 0.0025496771559119225, -0.01380700059235096, 0.02299601398408413, 0.006246024277061224, 0.0012562492629513144, -0.006786094047129154, -0.005749003496021032, 0.03074484132230282, -0.040043432265520096, 0.021133163943886757, 0.017814474180340767, -0.00877417717128992, -0.02083573490381241, -0.0004593527992255986, 0.0041483617387712, -0.0181901752948761, 0.0022170254960656166, 0.013337374664843082, 0.0014920405810698867, -0.014816696755588055, -1.6647871234454215e-05, 0.011529315263032913, -0.005212847143411636, -0.005459400825202465, -0.0062773325480520725, 0.01558375172317028, -0.0013570231385529041, -0.019364239647984505, -0.024905825033783913, -0.01236681453883648, -0.006523886229842901, -0.00710700498893857, -0.020694846287369728, -0.005854669027030468, -0.02645559050142765, -0.006688255351036787, -0.00781535729765892, -3.164471127092838e-05, 0.007169621530920267, 0.004273595288395882, -0.019739940762519836, -0.024655358865857124, 0.01089532021433115, 0.016029896214604378, -0.0038274507969617844, -0.0018031676299870014, 0.013165178708732128, 0.0009407193283550441, -0.007627506740391254, 0.01098924595862627, -0.0077566541731357574, -0.037444837391376495, -0.007020907010883093, 0.015098472125828266, -0.01205373089760542, -0.005189365707337856, 0.004919331055134535, 0.00040211714804172516, -0.00185795733705163, 0.007087436970323324, -0.0016730421921238303, -0.013822655193507671, -0.0012445085449144244, 0.004911503754556179, -0.006852624472230673, -0.013924406841397285, 0.023966573178768158, -0.001949925790540874, -0.009251629933714867, 0.015380247496068478, -0.013345202431082726, -0.006739131174981594, 0.006993512157350779, -0.0034087011590600014, 0.005956421606242657, 0.005173711571842432, -0.022886434569954872, -0.029946476221084595, -0.007294855080544949, 0.010637026280164719, 0.011169268749654293, -0.009415999054908752, -0.01537242066115141, 0.006148185580968857, -0.016468213871121407, 0.004966293461620808, -0.0013237579260021448, -0.01210069376975298, 0.005600288510322571, 0.001735658966936171, -0.010230016894638538, -0.007514013908803463, 0.024858862161636353, -0.009916933253407478, 0.004289249889552593, -0.00836716778576374, 0.00918901339173317, 0.008523710072040558, -0.007877973839640617, 0.009462960995733738, -6.215816392796114e-05, 0.014229663647711277, 0.01534111239016056, -0.012734687887132168, -0.01977124996483326, 0.009275111369788647, 0.01635863445699215, -0.009682119823992252, -0.025563301518559456, -0.01991213671863079, -0.011701511219143867, -0.019661670550704002, -0.007169621530920267, 0.012296371161937714, -0.007384866941720247, 0.009799527004361153, 0.0007279200945049524, 0.007306595798581839, -0.015403728932142258, -0.020272184163331985, -0.017673587426543236, -0.013149524107575417, 0.018017979338765144, 0.0069582900032401085, 0.02429531142115593, 0.006833056453615427, 0.020413070917129517, 0.01602206937968731, -0.01560723315924406, -0.0021172300912439823, 0.006144271697849035, -0.022542042657732964, 0.006359517108649015, -0.0026338184252381325, -0.02202545292675495, -0.011067516170442104, 0.010730951093137264, 0.012304197996854782, 0.005353734828531742, -0.0022248525638133287, 0.002359870122745633, 0.010417867451906204, -0.023888302966952324, 0.017579661682248116, 0.004837146494537592, 0.0022992100566625595, 0.008594153448939323, 0.013016464188694954, -0.011357119306921959, -0.013360856100916862, 0.002868631388992071, -0.005749003496021032, -0.00988562498241663, -0.004798010922968388, 0.006379084661602974, 0.010096956044435501, -0.00954905990511179, 0.008116700686514378, 0.0024694493040442467, -0.008562845177948475, -0.02640862762928009, 0.008359340950846672, 0.001369742094539106, -0.024937134236097336, 0.007928850129246712, -0.013634804636240005, -0.008437611162662506, 0.006046433001756668, -0.00880548544228077, 0.004559284541755915, 0.011404081247746944, -0.012883403338491917, -0.006621724925935268, 0.002320734551176429, 0.015669850632548332, 0.008476747199892998, 0.007831011898815632, -0.01847195066511631, 0.011200577020645142, -0.01958339847624302, -0.02083573490381241, 0.007521841209381819, -0.00870373286306858, 0.007122659124433994, -0.023637834936380386, -0.015865527093410492, -0.015497653745114803, 0.013188660144805908, -0.010699642822146416, 0.01673433557152748, -0.003721785033121705, -0.0032638998236507177, 0.01900419406592846, 0.0023813946172595024, 0.006159926299005747, -0.008868101984262466, 0.017736203968524933, 0.013173005543649197, -0.016796952113509178, 0.011247539892792702, 0.009752564132213593, -0.00027541600866243243, 0.010527446866035461, 0.0004669353074859828, 0.0009260435472242534, -0.028396710753440857, 0.0030662657227367163, 0.009948241524398327, 0.0075061870738863945, 0.007193102966994047, 0.00749053293839097, 0.004504494834691286, 0.021180126816034317, -0.0023872649762779474, -0.01745442859828472, -0.0034165282268077135, -0.00749053293839097, 0.004062263760715723, 0.003578940639272332, 0.004324471578001976, -0.012992982752621174, -0.006653033196926117, 0.013525225222110748, -0.013384337536990643, -0.004191410727798939, 0.02972731739282608, 0.013744384050369263, 0.01228854339569807, 0.006688255351036787, -0.005486795678734779, -0.006285159848630428, -0.004813665058463812, 0.018878960981965065, -0.0006912305834703147, 0.008171490393579006, 0.00363177340477705, 0.016076859086751938, 0.008930718526244164, -0.016217747703194618, -0.0010674204677343369, -0.025265872478485107, -0.000903051404748112, -0.035722874104976654, -0.005079786758869886, 0.0043049040250480175, 0.007666642311960459, -0.005827274639159441, 0.0026436024345457554, -0.009752564132213593, -0.002944945590570569, 0.00031919885077513754, -0.011122305877506733, 0.002579028718173504, -0.004598420113325119, -0.003107357770204544, -0.014018332585692406, -0.002359870122745633, 0.027253955602645874, 0.0034145715180784464, 0.023152556270360947, 0.01823713816702366, 0.0006672600866295397, -0.0020565700251609087, -0.00778013514354825, -0.00024007176398299634, 0.003573070280253887, 0.004551457241177559, -0.014331416226923466, 0.014769733883440495, 0.005925113335251808, -0.015403728932142258, -0.01923900656402111, 0.01754835434257984, -0.006954376585781574, 0.016076859086751938, 0.011811090633273125, 0.01412008423358202, -0.008061910979449749, -0.011012726463377476, -0.013047772459685802, 0.005412438418716192, 0.002494887448847294, 0.00725180609151721, -0.004179670475423336, 0.00468843150883913, 0.014456650242209435, 0.012852095067501068, -0.001343325711786747, 0.013141697272658348, 0.002136797644197941, 0.017344849184155464, 0.021430594846606255, 0.002348129404708743, -0.019035501405596733, -0.02972731739282608, -0.023841340094804764, 0.00990910641849041, -0.019849520176649094, 0.020475687459111214, -0.012805132195353508, 0.003203239757567644, -0.014605364762246609, 0.01419052854180336, -0.010049994103610516, -0.006269505247473717, -0.0009353382047265768, 0.006140358280390501, 0.016483867540955544, -0.0090637793764472, 0.01626470871269703, 0.015889009460806847, 0.02304297685623169, -0.025078020989894867, 0.00418358389288187, -0.0045318896882236, 0.003289337968453765, -0.02304297685623169, -0.0022072417195886374, 0.012758169323205948, -0.021101856604218483, 0.006985684856772423, -0.0012767954031005502, -0.0012357031228020787, 0.004289249889552593, 0.016327327117323875, -0.006273419130593538, -0.009001162834465504, -0.010676161386072636, -0.00317584490403533, 0.015411555767059326, -0.0003424355236347765, -0.027379188686609268, 0.02429531142115593, 0.014534920454025269, 0.008915064856410027, 0.02770792692899704, 0.004297076724469662, 0.003612205618992448, -0.0076627288945019245, -0.016671719029545784, 0.009196840226650238, -0.0021387545857578516, 0.0011486266739666462, 0.010543100535869598, -0.014112257398664951, 0.013353029265999794, -0.0008223344921134412, -0.010472657158970833, -0.020178258419036865, 0.013603496365249157, -0.017391812056303024, 0.02766096405684948, 0.032059792429208755, 0.02443620003759861, -0.009658639319241047, -0.0040426962077617645, -0.005279377568513155, 0.023309098556637764, 0.0004322025633882731, -0.004782356787472963, -0.0009593087015673518, -0.006066001020371914, -0.012554665096104145, -0.017250923439860344, -0.02919507585465908, -0.02636166661977768, 0.017736203968524933, -0.000710798311047256, 0.006418220233172178, -0.013274758122861385, -0.00875852257013321, -0.0005929026519879699, -0.016186438500881195, 0.0373196043074131, -0.0066452063620090485, 0.008335859514772892, -0.00911856908351183, 0.002432270674034953, -0.006414306815713644, 0.014073122292757034, -0.016076859086751938, -0.005443746689707041, 0.013353029265999794, -0.006461269222199917, 0.036724742501974106, 0.016280364245176315, 0.007302682381123304, -6.84259575791657e-05, 0.005576807074248791, 0.0009798548417165875, 0.02731657214462757, 0.015419382601976395, 0.01587335392832756, 0.008539363741874695, 0.0031504069920629263, 0.02731657214462757, 0.0005454508936963975, 0.0005346886464394629, -0.0008365210960619152, -0.0233247522264719, 0.0031856289133429527, 0.0142609728500247, -0.019113773480057716, 0.00950209703296423, 0.002179846866056323, 0.005639424081891775, -0.014300107955932617, 0.017485735937952995, -0.009173358790576458, -0.010832703672349453, -0.02919507585465908, 0.009494270198047161, -0.006919154431670904, -0.0012728817528113723, -0.0013041901402175426, 0.021665407344698906, 0.016765642911195755, -0.007271374110132456, -0.011130133643746376, -0.0020624403841793537, -0.020428726449608803, -0.0036748223938047886, -0.00990910641849041, -0.014566229656338692, -0.009204667061567307, -0.012679899111390114, 0.004707999527454376, -0.008922891691327095, 0.008281069807708263, -0.00021952563838567585, 0.004817578941583633, 0.0010635069338604808, 0.014354897662997246, 6.316712824627757e-05, -0.0020233048126101494, -0.003813753370195627, -0.007036561146378517, 0.008555018343031406, -0.0043049040250480175, 0.01721961610019207, 0.013141697272658348, 0.0010038253385573626, 0.007451397366821766, 0.014652327634394169, 0.0005072937929071486, -0.020851388573646545, 0.0016290147323161364, -0.014464477077126503, -0.01875372603535652, -0.008962026797235012, 0.012985155917704105, -0.016671719029545784, -0.0022815989796072245, -0.013752210885286331, 0.010550928302109241, 0.01577943004667759, -0.01192849688231945, 0.011067516170442104, -0.0007381931645795703, -0.0059407674707472324, -0.008586326614022255, -5.9834495914401487e-05, 0.0047471350990235806, -0.021430594846606255, -0.008946373127400875, 0.002669040346518159, 0.004911503754556179, 0.008218453265726566, 0.00690350029617548, 0.007737086154520512, 0.002751224907115102, 0.012186791747808456, -0.008069737814366817, 0.014691462740302086, -0.001167215988971293, -0.007330077234655619, 0.010981418192386627, 0.01161541324108839, 0.00950209703296423, 0.014769733883440495, -0.019113773480057716, 0.007353558670729399, -0.0018912225496023893, 0.0016387986252084374, 0.009752564132213593, -0.007306595798581839, -0.01861283928155899, 0.004649296402931213, 0.013525225222110748, -0.007921023294329643, -0.014769733883440495, 0.005056305322796106, -0.01602206937968731, 0.011427562683820724, -0.013141697272658348, 0.018722418695688248, 0.0074005210772156715, -0.009024644270539284, -0.022009799256920815, 0.0008922891574911773, 0.0010928584961220622, 0.025845076888799667, -0.01048831082880497, -0.0070756967179477215, 0.006112963426858187, -0.014464477077126503, 0.00362003268674016, -0.03512801602482796, 0.01385396346449852, -0.004923244472593069, -0.0008717430173419416, 0.015740294009447098, 0.007697951048612595, -0.002700348850339651, 0.006985684856772423, -0.002514455234631896, -0.009924760088324547, -0.010950109921395779, -0.004707999527454376, -0.01808059588074684, 0.010230016894638538, -0.01132581103593111, 0.0007484662346541882, 0.0028079713229089975, 0.0051541440188884735, -0.010112610645592213, 0.03016563504934311, 0.0027864468283951283, -0.016249055042862892, 0.003377392655238509, -0.0019773205276578665, 0.0026553429197520018, -0.016139475628733635, 0.020663538947701454, 0.009157704189419746, 0.016186438500881195, -0.0282871313393116, 0.001693588332273066, 0.0347210057079792, -0.00335586816072464, -0.02146190218627453, 0.003383263014256954, 0.009470788761973381, 0.003995733335614204, -0.0036004651337862015, 0.03262334316968918, 0.0009182164212688804, -0.0072557199746370316, -0.02193152904510498, -0.005009342450648546, -0.007087436970323324, 0.017814474180340767, -0.005224587861448526, -0.0013668070314452052, 0.017626624554395676, -0.014440995641052723, -0.002874501748010516, 0.012554665096104145, 0.010801395401358604, -0.011513660661876202, 0.026064235717058182, -0.009259456768631935, 0.019849520176649094, -0.009314246475696564, 0.0023911783937364817, 0.005001515615731478, -0.0008717430173419416, -0.00842195749282837, -0.004844973795115948, -0.001559549244120717, -0.004046609625220299, 0.009869970381259918, -0.013720902614295483, 0.007212670519948006, -0.020366108044981956, 0.0012278759386390448, -0.0016720638377591968, -0.0025516338646411896, 0.007795789744704962, 0.0041874973103404045, -0.017063073813915253, -0.010237843729555607, -0.00015262840315699577, -0.011216231621801853, -0.022213304415345192, -0.013916580006480217, 0.004336212296038866, 0.007439656648784876, 0.016718681901693344, -0.02083573490381241, 0.01784578338265419, -0.011513660661876202, -0.014793215319514275, 0.003214980475604534, 0.010457002557814121, 0.017423119395971298, -0.004269681870937347, -0.009102914482355118, 0.00842195749282837, 0.02824016846716404, 0.013752210885286331, -0.016389943659305573, 0.01693784072995186, -0.03619249910116196, -0.0008585348259657621, -0.00032824891968630254, -0.014832350425422192, 0.0062773325480520725, 0.0026220777072012424, -0.017626624554395676, 0.007760567590594292, -0.02949250489473343, 0.00908726081252098, -0.007619679905474186, 0.019849520176649094, 0.005717695225030184, 0.0021289705764502287, 0.014707117341458797, -0.019426856189966202, -0.008398476056754589, 0.012711207382380962, 0.008868101984262466, 0.05651164799928665, 0.01412008423358202, -0.0006119812023825943, -0.019458165392279625, 0.00037765747401863337, -0.017250923439860344, 0.014315762557089329, -0.004371433984488249, -0.006739131174981594, -0.010785740800201893, 0.0013658285606652498, -0.010073474608361721, 0.011505833826959133, 0.006324294954538345, -0.0005341994110494852, 0.0009876819094642997, -0.003461534157395363, -0.011560623534023762, -0.00950209703296423, -0.0034165282268077135, -0.0006819359259679914, 0.007169621530920267, -0.007733172737061977, 0.010997072793543339, 0.005764657631516457, 0.014832350425422192, -0.00336760887876153, 0.01721961610019207, 0.0016387986252084374, 0.009729082696139812, 0.020225221291184425, -0.00908726081252098, -0.028553253039717674, 0.013345202431082726, -0.010668334551155567, 0.013893098570406437, 0.0008291832054965198, 0.016671719029545784, -0.021007930859923363, -0.0073770396411418915, -0.0010194794740527868, -0.012656417675316334, -0.00725180609151721, -0.010331769473850727, -0.0002504671283531934, -0.01851891353726387, -0.0029840811621397734, 0.009306419640779495, -0.005502449814230204, -0.006210802122950554, 0.026392973959445953, 0.003923332784324884, -0.023496948182582855, -0.02770792692899704, 0.0074005210772156715, -0.012734687887132168, 0.011184923350811005, -0.027786197140812874, -0.014816696755588055, -0.02202545292675495, 0.0019029631512239575, -0.01060571800917387, 0.012554665096104145, 0.011584104970097542, 0.00673521775752306, -0.005099354311823845, 0.0028451501857489347, -0.003457620507106185, 0.004398828838020563, -0.0017288102535530925, 0.015145434066653252, -0.018878960981965065, -0.01668737269937992, -0.0017493563937023282, -0.004801924806088209, -0.023309098556637764, -0.03328081965446472, -0.004285336006432772, -0.01673433557152748, -0.002663169987499714, 0.02318386361002922, -0.02135232277214527, 0.005878150463104248, 0.003193455981090665, -0.006629551760852337, 0.008093219250440598, 0.007384866941720247, -0.003735482459887862, 0.004598420113325119, 0.019254660233855247, 0.011740647256374359, -0.00328346760943532, -0.023246480152010918, 0.004383174702525139, 0.005173711571842432, 0.0007225389708764851, -0.0011280805338174105, -0.004966293461620808, 0.014996719546616077, 0.013501743786036968, -0.0039370302110910416, 0.012875576503574848, -0.0022855126298964024, 0.009877797216176987, -0.004805838223546743, -0.023841340094804764, -0.011654549278318882, -0.001176999881863594, -0.00452014897018671, 0.029758626595139503, -0.010057820938527584, 0.004117053467780352, -0.010206535458564758, 0.011067516170442104, 0.015544616617262363, 0.011388427577912807, 0.0027316571213304996, -0.006613897625356913, -0.009329901076853275, 0.010934456251561642, -0.017595315352082253, 0.009306419640779495, 0.012585973367094994, 0.012272889725863934, -0.006085568573325872, 0.004156189039349556, 0.002745354548096657, 0.004023128189146519, -0.0025712016504257917, -0.0007484662346541882, 6.341172411339357e-05, -0.0013071253197267652, -0.0005185452173464, 0.015599406324326992, -0.007901455275714397, -0.003786358516663313, -0.000354420772055164, -0.0033069488126784563, 0.014644499868154526, -0.011826745234429836, -0.02996213175356388, 0.005686386488378048, 0.010410040616989136, -0.004273595288395882, -0.003483058651909232, 0.009869970381259918, -0.012679899111390114, 0.014824523590505123, 0.006911327596753836, -0.0026514295022934675, 0.00036934117088094354, 0.011498006992042065, 0.003036913927644491, 0.015098472125828266, -0.0026396887842565775, 0.03841539844870567, -0.005580720957368612, 0.020131295546889305, -0.009110742248594761, 0.016186438500881195, -0.015450690872967243, 0.001123188529163599, 0.009674292989075184, 0.00836716778576374, -0.004218805581331253, -0.023418676108121872, -0.00940817128866911, 0.011991114355623722, -0.008625461719930172, -0.0011300372425466776, -0.00780361657962203, -0.020287837833166122, -0.0028451501857489347, -0.0050484780222177505, -0.003471317933872342, -0.0007259633275680244, 0.008508055470883846, -0.0004236416716594249, -0.017156999558210373, 0.010699642822146416, 0.0155602702870965, 0.016280364245176315, 0.018769381567835808, 0.0013022334314882755, -0.044082216918468475, 0.008601980283856392, -0.010081302374601364, 0.010660507716238499, -0.01582639291882515, 0.0004150807799305767, 0.0009231083677150309, 0.028975917026400566, -0.015255013480782509, 0.0010224146535620093, -0.016765642911195755, 0.010574409738183022, 0.0006824251031503081, -0.005889891181141138, -0.030243907123804092, -0.008351513184607029, 0.03428268805146217, 0.0003947792574763298, -0.009776045568287373, 0.005972075741738081], "40fa34fe-7285-477b-a1c6-5cb2550a84fc": [-0.011489168740808964, -0.009211964905261993, -0.0070498110726475716, 0.018582619726657867, -0.050844330340623856, -0.05335163697600365, 0.009949874132871628, 0.015448488295078278, -0.0028227013535797596, 0.03262669965624809, 0.039862971752882004, 0.04113249108195305, -0.007077581714838743, -0.015067631378769875, -0.0017088947352021933, 0.011885893531143665, -0.005637468304485083, 0.0162816122174263, -0.018503274768590927, 0.0085534006357193, 0.06766548752784729, -0.005125692579895258, -0.013583878986537457, 0.05896926671266556, 0.021756421774625778, -0.03599093109369278, 0.008410579524934292, -0.0006208752747625113, -0.02996070496737957, -0.001859650481492281, 0.02099470980465412, 0.003945434466004372, 0.03348362445831299, 0.004538538865745068, -0.0045821787789464, -0.028119897469878197, 0.004157682415097952, 0.011798614636063576, 0.0171068012714386, -0.0034792819060385227, -0.010552896186709404, 0.044020652770996094, 0.003290837397798896, -0.0037212844472378492, -0.04129118099808693, 0.01102896686643362, -0.02426372654736042, -0.015591309405863285, -0.008347103372216225, -0.006157178431749344, -0.006442821118980646, -0.019598236307501793, 0.013409319333732128, 0.006200818344950676, 0.0325949601829052, -0.02124861441552639, -0.008958060294389725, 0.09318286925554276, -0.01245717890560627, -0.0635395422577858, -0.007708374876528978, -0.004558375105261803, 0.03551486134529114, 0.01783677563071251, 0.013671157881617546, -0.004756737966090441, 0.005371662322431803, 0.01961410604417324, -0.037260450422763824, 0.03703828528523445, 0.00875176303088665, 0.04462367668747902, -0.01379811018705368, 0.05389118194580078, -0.018185893073678017, 0.0018536995630711317, 0.03722871467471123, 0.0029932933393865824, 0.023137027397751808, 0.032356925308704376, -0.014504281803965569, 0.011005163192749023, 0.055097226053476334, 0.027453400194644928, 0.06766548752784729, 0.04227505996823311, -0.05274861305952072, -0.0504952110350132, -0.011235264129936695, -0.035546597093343735, 0.024406548589468002, 0.02507304772734642, 0.009251637384295464, -0.0029952770564705133, -0.02712015062570572, 0.021359696984291077, 0.02889748103916645, -0.016218135133385658, 0.02450176328420639, -0.03535617142915726, -0.0032035578042268753, 0.012742821127176285, -0.034816622734069824, 0.025914104655385017, 0.02393047697842121, -0.008608941920101643, 0.018122417852282524, 0.033356674015522, -0.044338032603263855, 0.012814231216907501, 0.03153173625469208, -0.06058790907263756, -0.023390932008624077, 0.0069585638120770454, -0.03475314751267433, -0.03891082853078842, -0.032944079488515854, -0.027818387374281883, -0.004602015018463135, 0.003780793398618698, 0.021121662110090256, -0.019169772043824196, 0.022438790649175644, 0.008378840982913971, -0.011941435746848583, 0.05363727733492851, -0.010513223707675934, -0.001309193903580308, 0.01576586812734604, 0.02865944430232048, -0.0018120433669537306, -0.02508891560137272, 0.0003868072817567736, -0.040497731417417526, 0.010092695243656635, 0.009077077731490135, 0.020328210666775703, 0.0651899203658104, -0.01542468462139368, 0.049289166927337646, -0.034721408039331436, -0.06395214051008224, -0.023898739367723465, 0.012877707369625568, -0.0017525345319882035, 0.001309193903580308, -0.04773400351405144, 0.04909873753786087, -0.03011939488351345, 0.01213186327368021, -0.04198941960930824, 2.2982179871178232e-05, 0.01840806007385254, 0.020582115277647972, 0.005788223817944527, 0.015099369920790195, -0.02140730433166027, 0.013171284459531307, 0.008775566704571247, 0.010616372339427471, 0.007069647312164307, -0.05684281885623932, -0.007148992270231247, -0.008886649273335934, 0.03354710340499878, 0.029500503093004227, 0.055827200412750244, 0.02865944430232048, -0.034404028207063675, 0.009013601578772068, 0.05179647356271744, -0.004617883823812008, 0.04179899021983147, -0.008109067566692829, 0.018535012379288673, -0.009965742938220501, 0.04341763257980347, 0.05112997442483902, 0.022660955786705017, -0.044084127992391586, -0.004625818692147732, -0.024136774241924286, 0.0120128458365798, -0.001494663069024682, -0.02499370276927948, 0.026739293709397316, -0.0036082176957279444, 0.008569269441068172, 0.004447292070835829, 0.0272788405418396, -0.007061712443828583, -0.013250629417598248, 0.009592820890247822, 0.07115667313337326, 0.016710074618458748, -0.028865741565823555, -0.006383311934769154, -0.0001485240791225806, -0.007375125773251057, 0.017138538882136345, -0.004225126001983881, -0.039355162531137466, -0.02189924381673336, 0.05179647356271744, -0.05024130642414093, 0.018582619726657867, -0.016995716840028763, -0.032452140003442764, 0.022692695260047913, -0.007331485860049725, 0.027961207553744316, -0.008077329955995083, 0.0031817378476262093, 0.0063634756952524185, -0.023724179714918137, 0.002854439429938793, -0.0171068012714386, 0.0036875628866255283, 0.014670906588435173, -0.012782493606209755, -0.016313349828124046, -0.0008995748939923942, 0.012711082585155964, -0.014520150609314442, -0.035387907177209854, -0.00799401756376028, -0.02335919253528118, 0.02093123272061348, -0.016234004870057106, -0.0060341935604810715, 0.038307808339595795, 0.002695749280974269, 0.021391434594988823, -0.02424785867333412, -0.0023823361843824387, 0.0014996221289038658, 0.0054629091173410416, 0.0162974800914526, 0.004201322328299284, -0.021454911679029465, 0.016424432396888733, 0.027326447889208794, -0.012552392669022083, -0.007113286759704351, -0.02434307150542736, 0.0199473537504673, -0.01330617070198059, 0.05909622088074684, 0.03389621898531914, 0.015623047016561031, -0.03557833656668663, 0.0285007543861866, 0.007529848720878363, -0.02710428088903427, -0.016345087438821793, 0.05804886296391487, 0.06817329674959183, -0.0160673800855875, -0.02107405476272106, 0.012314356863498688, 0.013329974375665188, -0.003949401434510946, -0.017487656325101852, 0.0036102014128118753, 0.027707304805517197, -0.036117881536483765, 0.05176473408937454, -0.04690881446003914, 0.008442317135632038, 0.03307102993130684, 0.004062468186020851, 0.015813475474715233, 0.0005980635760352015, 0.0215818639844656, -0.007450503762811422, -0.0207725428044796, 0.02164533920586109, 0.007077581714838743, 0.008021787740290165, 0.00024212649441324174, -0.006684823427349329, -0.018344582989811897, 0.018550880253314972, 0.011846221052110195, 0.010632241144776344, -0.022994205355644226, 0.0028584066312760115, -0.02385113202035427, -0.04125944525003433, 0.00047507870476692915, -0.010711586102843285, 0.020296473056077957, 0.013234760612249374, 0.018122417852282524, 0.007557619363069534, -0.002616404090076685, -0.02083601988852024, -0.006426951847970486, -0.0013260548003017902, 0.026421913877129555, -0.012139798142015934, -0.01466297172009945, 0.011941435746848583, -0.027421660721302032, 0.02345440723001957, -0.0431637279689312, -0.005236775614321232, -0.0013677108800038695, -0.026977328583598137, 0.04874962195754051, 0.04830528795719147, -0.0195506289601326, 0.007271977141499519, -0.01701158657670021, -0.015020024962723255, 0.014678840525448322, -0.01356007531285286, -0.013806045055389404, -0.01217153575271368, 0.005093954503536224, 0.03754609450697899, 0.022327706217765808, -0.08747002482414246, 0.031706295907497406, 0.022978337481617928, -0.03275365009903908, 0.011624054983258247, -0.004028746858239174, -0.023010075092315674, -0.01205251831561327, -0.008307430893182755, -0.007886901497840881, -0.0415133498609066, 0.003989074379205704, -0.004974937066435814, -0.035387907177209854, -0.03859344869852066, -0.03856171295046806, -0.011195591650903225, -0.014424936845898628, -0.02142317220568657, -0.008735894225537777, -0.011338412761688232, -0.004895591642707586, 0.02891334891319275, 0.0015462373849004507, -0.013647355139255524, 0.01257619634270668, -0.0035883814562112093, 0.02481914311647415, 0.0010414042044430971, -0.007529848720878363, 0.023628966882824898, 0.0160673800855875, 0.033356674015522, 0.002965522464364767, -0.009822921827435493, 0.00985465943813324, 0.015559570863842964, 0.006526133511215448, -0.01928085647523403, -0.026358436793088913, -0.012766623869538307, -0.03453098237514496, -0.0036875628866255283, 0.014337657019495964, 0.01383778266608715, -0.012314356863498688, 0.011647858656942844, -0.003679628251120448, -0.032848864793777466, 0.013258563354611397, 0.01356007531285286, -0.03738740459084511, -0.015504029579460621, -0.054176826030015945, 0.04786095395684242, 0.0207566749304533, -0.029103778302669525, 0.018995214253664017, 0.024200251325964928, 0.03621309623122215, -0.019518891349434853, 0.010330730117857456, 0.032452140003442764, 0.008942191489040852, -0.03462619706988335, -0.009180226363241673, -0.0018120433669537306, -0.005863601807504892, -0.0447823666036129, 0.001136618317104876, -0.023486144840717316, 0.005030478350818157, -0.0228037778288126, 0.014448740519583225, 0.020486900582909584, 0.003622103249654174, 0.01744004897773266, -0.011877959594130516, -0.00500667467713356, 0.0126238027587533, 0.01037833746522665, 0.013544206507503986, -0.0002451019245199859, -0.021391434594988823, 0.023993954062461853, -0.018868261948227882, 0.013290301896631718, -0.02042342536151409, -0.011290805414319038, -0.0024239923804998398, 0.026580603793263435, -0.0009933012770488858, 0.02710428088903427, 0.015456422232091427, -0.019090427085757256, 0.042878083884716034, -0.036022670567035675, -0.0024358942173421383, 0.012250881642103195, 0.02899269387125969, -0.0038462530355900526, 0.028469016775488853, -0.037482619285583496, 0.058334507048130035, 0.017043324187397957, -0.002239515073597431, -0.006736397743225098, -0.03402317315340042, 0.013956800103187561, 0.05722367763519287, -0.016218135133385658, -0.01766221597790718, -0.004348110873252153, -0.025200000032782555, 0.014036145992577076, -0.0033027392346411943, -0.011076574213802814, -0.005407367367297411, -0.006442821118980646, 0.010243450291454792, -0.017868513241410255, 0.003739137202501297, -0.03624483570456505, -0.0488765724003315, -0.025057177990674973, 0.013322039507329464, 0.0012576195877045393, 0.013314105570316315, 0.0005603746394626796, 0.003548708977177739, -0.07420352101325989, -0.022851385176181793, -0.01167959626764059, -0.01091788336634636, -0.0009580919286236167, 0.006482493598014116, -0.0023188600316643715, -0.037006549537181854, -0.033420149236917496, 0.009196095168590546, 0.02091536484658718, -0.01298879086971283, 0.021359696984291077, -0.04208463430404663, -0.03183325007557869, -0.008315364830195904, 0.009457934647798538, -0.001649386016651988, -0.017202014103531837, 0.015543702058494091, -0.03364231809973717, 0.0074901762418448925, -0.022565742954611778, -0.04021209105849266, 0.001568057225085795, -0.004463160876184702, 0.012980856001377106, -0.025834759697318077, -0.02329571731388569, -0.016487909480929375, -0.029421158134937286, 0.013607681728899479, -0.00398113951086998, 0.011465365067124367, -0.013583878986537457, -0.0032868701964616776, 0.0366256907582283, -0.02792946994304657, 0.01352040283381939, 0.005212971940636635, -0.007105352357029915, 0.0060778334736824036, 0.003624086733907461, -0.03707002475857735, -0.002043135929852724, -0.052970778197050095, -0.012488916516304016, -0.045639295130968094, 0.02623148448765278, 0.0014202770544216037, 0.007283878978341818, 0.03754609450697899, 0.004899559076875448, 0.009656297042965889, 0.009092946536839008, -0.020788412541151047, 7.686555181862786e-05, -0.010743324644863605, -0.018757177516818047, -0.012647606432437897, -0.06506296992301941, 0.016567254438996315, 0.005470843520015478, 0.016757681965827942, -0.024390678852796555, -0.015162846073508263, 0.0374508798122406, 0.0030170967802405357, -0.011735138483345509, -0.02865944430232048, -0.013179218396544456, -0.003943450748920441, -0.05649369955062866, -0.02639017626643181, -0.007565553765743971, -0.00024634168948978186, 0.0431319884955883, -0.03891082853078842, -0.027247102931141853, 0.012568261474370956, 0.0002548960910644382, 0.024390678852796555, 0.022660955786705017, 0.0016424432396888733, 0.00327695207670331, 0.023168765008449554, 0.01604357548058033, 0.026501258835196495, -0.016710074618458748, 0.02588236704468727, -0.004022795706987381, -0.010584634728729725, -0.004482997115701437, 0.036911334842443466, 0.02500957064330578, 0.02434307150542736, 0.0024795338977128267, 0.0011524873552843928, -0.02393047697842121, 0.019503021612763405, 0.0016731894575059414, -0.016329217702150345, 0.011846221052110195, -0.01209219079464674, 0.041005540639162064, -0.011370150372385979, -0.01709093153476715, -0.025914104655385017, 0.02166120894253254, 0.003332493593916297, 0.01075125951319933, 0.004832115489989519, -0.03027808479964733, -0.00997367687523365, -0.03802216425538063, 0.032452140003442764, -0.006430919282138348, 0.026882115751504898, 0.01685289666056633, 0.006434886250644922, 0.041640300303697586, 0.025929974392056465, -0.008743828162550926, 0.030738286674022675, 0.003937500063329935, -0.012338160537183285, -0.01531360112130642, -0.031135011464357376, 0.02410503663122654, -0.03386448323726654, 0.008886649273335934, -0.014115490950644016, -0.008450252003967762, 0.004121977370232344, -0.04529017582535744, -0.02466045320034027, -0.030674809589982033, 0.04202115908265114, -0.02002669870853424, 0.02897682599723339, 0.006434886250644922, -0.0019776762928813696, -0.021613601595163345, 0.01977279596030712, -0.00500667467713356, 0.0010295024840161204, 0.033007554709911346, -0.0006476542330347002, 0.009632493369281292, 0.004042631946504116, -0.006117505952715874, -0.02353375218808651, -0.00879143550992012, 0.0342136025428772, 0.01848740503191948, 0.01584521308541298, -0.009132619015872478, 0.008331233635544777, -0.01582934521138668, -0.014956548810005188, 0.010481486096978188, 0.00818047858774662, -0.004427455831319094, 0.0064110830426216125, 0.0041854530572891235, 0.0033781169913709164, -0.0002513007493689656, 4.0664355765329674e-05, 0.004554408136755228, -0.03630831092596054, 0.041069015860557556, -0.042878083884716034, 0.025200000032782555, 0.03275365009903908, -0.016218135133385658, -0.002790963277220726, -0.0028643575496971607, 0.012726951390504837, -0.006764168385416269, -0.04697228968143463, -0.001505573047325015, -0.01775743067264557, 0.031547605991363525, 0.008315364830195904, -0.013552140444517136, 0.008696221746504307, -0.01702745631337166, -0.034657932817935944, -0.011338412761688232, 0.013504534028470516, 0.019249117001891136, 0.0553511306643486, -0.014377329498529434, 0.012147733010351658, -0.04281460866332054, 0.014623299241065979, 0.016995716840028763, 0.005938979797065258, 0.004994773305952549, 0.013917127624154091, 0.022343575954437256, 0.025533247739076614, 0.017598740756511688, -0.0313730463385582, -0.002771127037703991, 0.016210200265049934, 0.024771535769104958, 0.010068891569972038, 0.03380100801587105, -0.02321637235581875, 0.01824937015771866, 0.012933248654007912, 0.015392947010695934, 0.018995214253664017, 0.017392443493008614, 0.028040552511811256, 0.020058438181877136, 0.03288060426712036, 0.003854187438264489, 0.007359256502240896, 0.008386775851249695, -0.01352040283381939, -0.014797858893871307, 0.0060341935604810715, -0.007279911544173956, -0.006054030265659094, -0.010164105333387852, 0.003241246799007058, -0.03875213861465454, -0.012354030273854733, -0.00928337499499321, 0.01212392933666706, 0.0019251101184636354, -0.009632493369281292, -0.011901763267815113, 0.05424030125141144, -0.01469471026211977, -0.0276755653321743, 0.029595717787742615, 0.011862089857459068, -0.001992553472518921, 0.009315112605690956, 0.017630478367209435, 0.024470023810863495, -0.012957052327692509, 0.00602229218930006, 0.027659697458148003, -0.010410075075924397, -0.04471889138221741, -0.019360201433300972, 0.002519206376746297, -0.033991433680057526, 0.0244224164634943, 0.021518386900424957, -0.02213727869093418, -0.012330226600170135, 0.0036697101313620806, -0.008275692351162434, 0.004094206262379885, 0.0004512751766014844, 0.00924370251595974, 0.026564734056591988, 0.0305478572845459, -0.0002901054685935378, -0.0015958279836922884, -0.0005643418990075588, -0.01257619634270668, 0.028469016775488853, -0.00022898496536072344, 0.015289798378944397, -0.0035943323746323586, -0.037260450422763824, -0.015654785558581352, 0.017598740756511688, 0.022105541080236435, 0.022597480565309525, -0.010806800797581673, -0.010719520971179008, 0.022042063996195793, -0.008275692351162434, -0.01030692644417286, 0.013726700097322464, 0.009862594306468964, -0.024120906367897987, -0.007990050129592419, 0.007902770303189754, -0.002677896525710821, -0.024708060547709465, 0.0240098237991333, -0.0010265270248055458, 0.03402317315340042, -0.015369143337011337, 0.014718513004481792, 0.0037827768828719854, 0.030103525146842003, 0.027786649763584137, 0.0051137907430529594, 0.015551636926829815, 0.02956397831439972, -0.04662317410111427, 0.030246347188949585, 0.010513223707675934, 0.006089735310524702, 0.01824937015771866, 0.016567254438996315, 0.00632777065038681, -0.017281359061598778, 0.03389621898531914, -0.006117505952715874, 0.03061133436858654, -0.005062216427177191, -0.012560326606035233, -0.003758973442018032, 0.014551889151334763, 0.00340985506772995, 0.01221120823174715, 0.028548361733555794, -0.031547605991363525, 0.046781864017248154, 0.04129118099808693, 0.021788161247968674, 0.026279091835021973, 0.0032789355609565973, -0.043830227106809616, 0.023676574230194092, -0.002487468533217907, -0.04795616865158081, -0.008577203378081322, -9.385035809827968e-05, -0.04160856455564499, 0.02418438158929348, -0.03932342305779457, -0.004550440702587366, -0.020804282277822495, 0.025612594559788704, -0.00032159555121324956, -0.0019508972764015198, 0.0067205289378762245, 0.00739099457859993, -0.017567001283168793, -0.023311587050557137, 0.0070498110726475716, 0.019423676654696465, -0.02108992449939251, 0.006331737618893385, -0.027485137805342674, -0.028199244290590286, -0.0001013509463518858, 0.004756737966090441, -0.042941559106111526, 0.04170377552509308, 0.06899848580360413, -0.00788293406367302, 0.008696221746504307, -0.0011802581138908863, -0.0068197101354599, 0.0024735829792916775, -0.00984672550112009, 0.00010215679503744468, -0.004844017326831818, -0.012845969758927822, 0.03925994783639908, -0.00016389718803111464, -0.017455918714404106, 0.01208425685763359, 0.02312115766108036, 0.027167757973074913, 0.015250125899910927, -0.009902266785502434, -0.006478526163846254, 0.008212216198444366, -0.003415805986151099, -0.005855667404830456, 0.00038755114655941725, -0.0007760940934531391, 0.010092695243656635, -0.0078353276476264, 0.01571032777428627, 0.008132871240377426, -0.006756233982741833, -0.008021787740290165, 0.03821259364485741, -0.0021661208011209965, 0.023914609104394913, -0.005835831165313721, 0.015916625037789345, -0.01469471026211977, 0.011267001740634441, -0.030881106853485107, -0.048559192568063736, -0.008386775851249695, 0.013528336770832539, -0.019328461959958076, 0.004705163650214672, -0.010140301659703255, -0.0033840679097920656, 0.008601007051765919, 0.03649874031543732, 0.017614608630537987, -0.03240453451871872, -0.0024358942173421383, 0.0030686710961163044, -0.017471788451075554, 0.011965238489210606, -0.02964332327246666, 0.023248109966516495, 0.0022791875526309013, 0.008950125426054, 0.010846473276615143, 0.00019575920305214822, -0.005010642111301422, 0.0006169080152176321, 0.0008782509248703718, -0.021756421774625778, -0.005978652276098728, 0.014178967103362083, 0.028516624122858047, 0.01864609494805336, 0.019677581265568733, -0.02996070496737957, 0.01090994942933321, -0.014710579067468643, -0.039862971752882004, -0.00462185125797987, -0.01775743067264557, 0.036911334842443466, -0.04890831187367439, -0.0022811712697148323, -0.007248173467814922, 0.00488765724003315, 0.0023347290698438883, -0.012798362411558628, -0.038053903728723526, -0.0005157430423423648, -0.020375818014144897, 0.002078841207548976, 0.013044332154095173, -0.015210452489554882, -0.00829949602484703, 0.004038664977997541, 0.010021284222602844, -0.011663727462291718, -0.037577833980321884, 0.005324055440723896, -0.002392254304140806, -0.022676825523376465, -0.005946914199739695, -0.02099470980465412, -0.003086523851379752, -0.03764130920171738, -0.06582468003034592, -0.009830855764448643, 0.03140478581190109, -0.03722871467471123, -0.004816246684640646, -0.013528336770832539, -0.014956548810005188, 0.017614608630537987, -0.006795906461775303, 0.015139042399823666, -0.029913097620010376, -0.02343853749334812, 0.0264536514878273, 0.01905868947505951, 0.017217883840203285, 0.009259571321308613, -0.013806045055389404, -0.014274180866777897, 0.0012834067456424236, 0.03272191435098648, 0.024946095421910286, 0.004256864078342915, -0.00399700878188014, -0.00859307311475277, -0.017963727936148643, -0.008775566704571247, -0.009997480548918247, 0.015353274531662464, -0.0027691435534507036, -0.003959319554269314, 0.01254445780068636, -0.024470023810863495, 0.0297226682305336, -0.014226573519408703, -0.020899495109915733, 0.006668954622000456, -0.045321911573410034, -0.03751435503363609, 0.0010622323025017977, 0.01882065460085869, 0.016963979229331017, -0.03599093109369278, -0.012258815579116344, -0.03013526275753975, -0.005942946765571833, 0.017297228798270226, -0.007029974367469549, 0.004931297153234482, 0.022978337481617928, 0.039609067142009735, -0.002388287102803588, -0.00989433191716671, 0.019645843654870987, 0.02865944430232048, -0.012480981647968292, 0.012592065148055553, -0.009188161231577396, -0.00233076186850667, 0.0013964734971523285, -0.004820214118808508, -0.008545465767383575, 0.007383060175925493, -0.02824684977531433, 0.016218135133385658, -0.03118261881172657, -0.012068387120962143, 0.009759445674717426, -0.008307430893182755, -0.018741309642791748, -0.01856674998998642, -0.011132115498185158, 0.033356674015522, -0.020867757499217987, -0.022169016301631927, -0.0028643575496971607, -0.023073550313711166, -0.020058438181877136, 0.004399685189127922, 0.020153651013970375, -0.036911334842443466, -0.039926446974277496, -0.011282871477305889, 0.01947128400206566, -0.003138098167255521, -0.00803369004279375, -0.002366467146202922, -0.02956397831439972, 0.025041308254003525, 0.020455162972211838, -0.009672165848314762, 0.002465648576617241, -0.019169772043824196, 0.004788476042449474, -0.004502833820879459, -0.0005544237792491913, -0.0293100755661726, 0.004375881515443325, -0.03599093109369278, 0.004272732883691788, 0.010957556776702404, -0.03145239129662514, 0.04113249108195305, 0.024152643978595734, 0.013393450528383255, 0.015559570863842964, -0.031388916075229645, -0.017868513241410255, 0.01823350042104721, -0.03297581896185875, -0.017963727936148643, 0.0187254399061203, -0.010616372339427471, -0.007402896415442228, 0.01527392864227295, 0.03786347433924675, -0.006815742701292038, 0.016710074618458748, 0.03370579332113266, -0.013361711986362934, -0.029897227883338928, 0.009085012599825859, 0.0038045968394726515, -0.008053526282310486, -0.010164105333387852, 0.0036875628866255283, 0.001694017555564642, 0.023581359535455704, 0.007696473505347967, -0.01209219079464674, 0.0006035185651853681, 0.0012853903463110328, -0.00822808500379324, -0.005915176123380661, -0.023755919188261032, 0.006450755521655083, -0.07591737806797028, -0.0398947075009346, -0.014837531372904778, 0.010862342081964016, 0.010354533791542053, -0.00015025975881144404, 0.017376573756337166, 0.0030488348565995693, -0.003161901608109474, 0.014536019414663315, -0.020978840067982674, -0.008545465767383575, 0.02824684977531433, 0.015416749753057957, -0.016979848966002464, 0.008426448330283165, -0.011536775156855583, -0.014123424887657166, 0.018043072894215584, -0.0009119726018980145, 0.002890144707635045, 0.015154911205172539, 0.017567001283168793, -0.013290301896631718, 0.00867241807281971, 0.05138387903571129, -0.013940931297838688, -0.0011971190106123686, -0.014194835908710957, -0.013623551465570927, -0.0002065451699309051, 0.0014053998747840524, -0.008656549267470837, -0.0046496219001710415, 0.018106548115611076, 0.0023605162277817726, 0.02556498721241951, 0.0008549432968720794, 0.020455162972211838, 0.004883689805865288, 0.021026447415351868, -0.0009590837289579213, 0.002406139625236392, -0.02247052825987339, -0.025422165170311928, -0.014504281803965569, -0.004415553994476795, -0.014417001977562904, -0.005478778388351202, 0.02865944430232048, 0.00944206491112709, 0.01318715326488018, -0.0018854376394301653, -0.0240098237991333, 0.007387027610093355, 0.005165365058928728, 0.0044948989525437355, -0.011219395324587822, 0.011259067803621292, -0.014194835908710957, 0.07375919073820114, 0.011465365067124367, 0.008846976794302464, 0.007117254193872213, -0.007918639108538628, -0.0014083752175793052, 0.010846473276615143, 0.01258413027971983, 0.04214810952544212, -0.016995716840028763, 0.001205053529702127, -0.012361964210867882, 0.005062216427177191, 0.02566020004451275, -0.003368198871612549, 0.02361309714615345, 0.028548361733555794, 0.005335956811904907, 0.00602229218930006, 0.008394709788262844, -0.003639955772086978, 0.010449747554957867, 0.009592820890247822, -0.02134382724761963, -0.0027116183191537857, -0.02369244210422039, 0.0028187341522425413, -0.02321637235581875, -0.017646346241235733, -0.01156057883054018, 0.021105792373418808, 0.011243198998272419, 0.03491183742880821, 0.007502078078687191, 0.001224889769218862, 0.030643071979284286, 0.00912468507885933, -0.008331233635544777, -0.016194332391023636, 0.004427455831319094, -0.007029974367469549, -0.029897227883338928, 0.0006912940298207104, -0.010632241144776344, -0.01718614622950554, 0.017852643504738808, 7.221642590593547e-05, 0.015440553426742554, -0.011536775156855583, -0.015654785558581352, 0.01367909274995327, 0.013694961555302143, -0.0496700219810009, -0.0260569266974926, -0.005867569241672754, 0.005058248993009329, -0.02615213952958584, -0.021026447415351868, -0.00199850439094007, 0.0019221346592530608, 0.006228589452803135, 0.016567254438996315, 0.017233751714229584, -0.03900604322552681, 0.00323727959766984, 0.0025707806926220655, -0.014988286420702934, -0.00800195150077343, -0.011036901734769344, 0.01428211573511362, 0.009680100716650486, 0.00814080610871315, -0.008799370378255844, 0.004248929210007191, -0.009751510806381702, 0.004459193907678127, 0.01352040283381939, -0.009751510806381702, 0.005823929328471422, -0.02142317220568657, -0.004288601689040661, 0.00867241807281971, -0.014417001977562904, -0.005078085698187351, -0.009196095168590546, -0.009719773195683956, -0.009537279605865479, -0.0029437027405947447, 0.009902266785502434, -0.015329470857977867, -0.013956800103187561, 0.011021031998097897, 0.011735138483345509, 0.011386020109057426, -0.006093702744692564, -0.02418438158929348, -0.005205037537962198, -0.0160673800855875, 0.001158438273705542, -0.012806297279894352, -0.037323929369449615, 0.0010121457744389772, 0.0017922071274369955, -0.007934508845210075, 0.015004156157374382, -0.015043828636407852, -0.005843765567988157, -0.01889999955892563, 0.0029714733827859163, 0.0012685295660048723, -0.0091643575578928, 0.006736397743225098, -0.007847229018807411, 0.002779061673209071, 0.014726447872817516, -0.008767631836235523, -0.010656044818460941, -0.010743324644863605, 0.014107556082308292, -0.011060704477131367, -0.01046561636030674, 0.016963979229331017, -0.0008688286761753261, 0.01864609494805336, 0.005149496253579855, -0.010663979686796665, -0.010838538408279419, 0.005645402707159519, -0.004840050358325243, 0.007585390005260706, 0.024692190811038017, 0.00547481095418334, -0.020550377666950226, 0.004994773305952549, 0.001539294607937336, -0.007347355131059885, 0.01726549118757248, 0.0007126180571503937, 0.004772606771439314, 0.022295968607068062, -0.04227505996823311, -0.029183123260736465, 0.00720453355461359, 0.02759622037410736, -0.005276448093354702, 0.007260075304657221, -0.007767884060740471, 0.014964482747018337, 0.022184886038303375, -0.009727707132697105, -0.012449244037270546, 0.0010890113189816475, 0.011862089857459068, -0.007379092741757631, 6.514975393656641e-05, -0.009140553884208202, 0.006744332145899534, -0.020407555624842644, 0.012100125662982464, -0.002560862572863698, 0.015972165390849113, -0.0011604218743741512, 0.002677896525710821, -0.025549117475748062, 0.006280163303017616, 0.0030944582540541887, 0.02337506227195263, -0.029754407703876495, -0.025850629433989525, 0.010552896186709404, -0.001357792760245502, 0.009918135590851307, -0.00407437002286315, -0.015456422232091427, -0.005744584370404482, -0.011036901734769344, 0.01985214091837406, -0.004268765449523926, 0.015059697441756725, -0.02694559097290039, -0.017535263672471046, -0.031960200518369675, -0.004260831046849489, 0.007605226244777441, 0.018868261948227882, 0.01440906710922718, -0.02231183834373951, -0.01807481050491333, 0.0034177894704043865, -0.002580698812380433, 0.009576952084898949, -0.01590869016945362, 0.011243198998272419, 0.030595464631915092, -0.004308437928557396, 0.004451259505003691, 0.01527392864227295, 0.0006362483836710453, 0.014258312061429024, -0.020502770319581032, -0.004784508608281612, -0.013393450528383255, 0.01245717890560627, -0.033515363931655884, 0.03145239129662514, -0.0016226070001721382, 0.011044835671782494, 0.010322795249521732, 0.002582682529464364, -0.012830100022256374, -0.013274433091282845, 0.0025568953715264797, -0.034404028207063675, 0.009180226363241673, 0.023708311840891838, 0.008410579524934292, 0.003951385151594877, -0.007478274405002594, 0.006843513809144497, -0.010227581486105919, 0.0001993545301957056, -0.0091643575578928, -0.028389671817421913, 0.017598740756511688, 0.010679848492145538, -0.0019142001401633024, 0.0232005026191473, 0.015472291968762875, 0.018598487600684166, -0.008497858420014381, 0.020502770319581032, 0.012838034890592098, 0.023962216451764107, -0.007974181324243546, 0.01600390300154686, -0.004411586560308933, 0.007236271630972624, 0.00395733630284667, 0.031087404116988182, -0.014845465309917927, 0.020169520750641823, -0.011044835671782494, -0.04011687636375427, -0.00025030894903466105, 0.006042128428816795, -0.00028341071447357535, 0.021708816289901733, 0.011981108225882053, -0.0052883499301970005, 0.007978148758411407, 0.015408815816044807, 0.01269521377980709, 0.00566127197816968, -0.019598236307501793, 0.010243450291454792, 0.027056673541665077, -0.00799401756376028, 0.0008356029284186661, -0.004044615663588047, -0.026897983625531197, 0.01148123387247324, -0.005014609545469284, 0.023073550313711166, 0.01693224161863327, -0.012028714641928673, -0.004411586560308933, -0.009330982342362404, -0.015742065384984016, 0.012639672495424747, 0.001523425686173141, 0.005379596725106239, 0.030167002230882645, -0.009751510806381702, 0.007470340002328157, -0.008458185940980911, 0.014028211124241352, -0.005673173815011978, -0.016345087438821793, 0.01522632222622633, -0.003998992498964071, 0.004728967323899269, 0.014258312061429024, 0.017122669145464897, 0.005161397624760866, 0.01582934521138668, 0.025533247739076614, 0.0091643575578928, 0.014607430435717106, 0.024454155936837196, -0.01889999955892563, 0.007184697315096855, 0.012282619252800941, 0.007779785431921482, 0.01436939463019371, 0.002856423147022724, 0.008474054746329784, 0.026771031320095062, 0.004570276942104101, -0.03169042617082596, -0.012941183522343636, -0.016916371881961823, -0.0049352641217410564, -0.004594080615788698, 0.0350070521235466, 0.0038323677144944668, 0.00818047858774662, 0.027421660721302032, -0.02215314842760563, 0.0013994489563629031, -0.009457934647798538, 0.004078337457031012, 0.020455162972211838, -0.019487153738737106, -0.013932997360825539, -0.01651964709162712, -0.004145780578255653, -0.0013835799181833863, 0.010211712680757046, -0.009751510806381702, -0.0016067379619926214, 0.001802125247195363, 0.00021919079881627113, -0.02093123272061348, -0.007363223936408758, 0.005423236638307571, -0.01651964709162712, -0.01978866383433342, -0.012734886258840561, -0.0005727723473683, -0.010275188833475113, -0.0036300376523286104, 0.011647858656942844, 0.02459697611629963, 0.021105792373418808, -0.0074862088076770306, -0.0031043763738125563, -0.017360704019665718, 0.00928337499499321, -0.018376322463154793, -0.0026104534044861794, -0.012203274294734001, -0.02035994827747345, -0.00354275805875659, 0.017487656325101852, -0.022565742954611778, 0.009989546611905098, -0.006728463340550661, 0.018947606906294823, -0.0001018468537949957, -0.00932304747402668, -0.0240098237991333, -0.0008698204765096307, 0.010029219090938568, -0.022264230996370316, -0.0031460325699299574, -0.007811523508280516, 0.014837531372904778, 0.029294205829501152, -0.014948613941669464, 0.0029000628273934126, -0.01075125951319933, -0.020010830834507942, 0.0016364924376830459, -0.02997657284140587, -0.006712594069540501, 0.012703148648142815, -0.012115994468331337, 0.01204458437860012, -0.002836586907505989, 0.005355793051421642, 0.0026659949216991663, 0.0022871221881359816, -0.018582619726657867, 0.012528588995337486, 0.035387907177209854, -0.008489924483001232, 0.015527833253145218, -0.006906989496201277, 0.013060200959444046, -0.015091435052454472, -0.035800501704216, -0.010251385159790516, -0.012671410106122494, 0.014591561630368233, 0.009902266785502434, -0.016805289313197136, 0.010671913623809814, -0.009489672258496284, 0.019836271181702614, 0.008113035000860691, -0.02028060331940651, -0.024216121062636375, 0.01481372769922018, -0.0065221660770475864, -0.013417254202067852, 0.005875503644347191, -0.013020528480410576, 0.004923362750560045, -0.011457430198788643, 0.02435894124209881, 0.029500503093004227, -0.019249117001891136, -0.013925062492489815, 0.005399432964622974, 0.003062720410525799, 0.026072794571518898, 0.013901258818805218, -0.0313413105905056, -0.02840554155409336, -0.005526385270059109, -0.006323803216218948, -0.0076210955157876015, -0.004125944338738918, -0.015623047016561031, -0.0015492128441110253, -0.02694559097290039, -0.023914609104394913, -0.003989074379205704, 0.003717317245900631, -0.026913853362202644, 0.011211460456252098, -0.010021284222602844, 0.0028028651140630245, 0.013020528480410576, 0.03589571639895439, -0.0051336269825696945, 0.014147228561341763, 0.019804533571004868, -0.006811775732785463, 0.029024431481957436, -0.013956800103187561, 0.014647102914750576, -0.02028060331940651, 0.012798362411558628, 0.013631485402584076, -0.038149118423461914, -0.00920403003692627, -0.013496599160134792, 0.035863976925611496, 0.013496599160134792, 0.010957556776702404, -0.01221120823174715, -0.041735514998435974, 0.014456674456596375, -0.0016950094141066074, -0.01148123387247324, 0.006379344966262579, -0.008243954740464687, -0.004538538865745068, 0.0034376259427517653, -0.006280163303017616, -0.005272481124848127, -0.010981359519064426, 0.0035725124180316925, -0.011092443019151688, 0.006319836247712374, -0.005399432964622974, 0.013528336770832539, -0.018043072894215584, 0.0023763852659612894, -0.002441844902932644, -0.015892820432782173, -0.006621347274631262, 0.002675913041457534, -0.002164137316867709, -0.00018484925385564566, -0.0031103272922337055, -0.005431171040982008, -0.019011082127690315, -0.01637682504951954, -0.0005236775614321232, -0.004855919163674116, 0.002560862572863698, 0.0030547857750207186, 0.009759445674717426, -0.011140050366520882, 0.002239515073597431, 0.0002246457734145224, 0.0017565018497407436, 0.0030488348565995693, -0.013012593612074852, 0.0048519521951675415, -0.012877707369625568, -0.0012110043317079544, -0.007355289533734322, 0.10644936561584473, 0.015289798378944397, 0.0004492915468290448, 0.007767884060740471, -0.006934760604053736, 0.0010632241610437632, -0.007974181324243546, 0.018344582989811897, 0.02704080566763878, -0.013464860618114471, 0.0029397355392575264, -0.01387745514512062, 0.030658941715955734, 0.006216687615960836, -0.01977279596030712, 0.004605982452630997, 0.026072794571518898, 0.006244458258152008, -0.006589609198272228, 0.018090680241584778, 0.009783249348402023, 0.023025942966341972, -0.00980705302208662, 0.00992607045918703, -0.002465648576617241, 0.021312089636921883, -0.002598551567643881, 0.013901258818805218, -0.002527141012251377, 0.026929721236228943, -0.00545894168317318, 0.0017237720312550664, -0.021946851164102554, 0.003084540134295821, -0.004284634720534086, 0.017551133409142494, 0.006113538984209299, 0.018836522474884987, -0.02207380346953869, 0.011060704477131367, -0.0016771567752584815, -0.006863350048661232, 0.035959191620349884, 0.02881813421845436, -0.008307430893182755, 0.0018427895847707987, -0.003905761754140258, -0.0026699621230363846, -0.002138350158929825, -0.013956800103187561, 0.002443828620016575, -0.014678840525448322, 0.01298879086971283, 0.006704659666866064, 0.003891876433044672, -0.0020907430443912745, 0.0014232525136321783, -0.009148488752543926, -0.02093123272061348, 0.009394458495080471, -0.016265742480754852, -0.0029437027405947447, -0.006990301888436079, -1.4350302990351338e-05, -0.003796662436798215, -0.024231988936662674, -0.011378085240721703, -0.02604105696082115, -0.005359760485589504, 0.0022910893894732, -0.011743072420358658, 0.030024180188775063, 0.002142317360267043, -0.02004256844520569, -0.025914104655385017, 0.014036145992577076, -0.0006645150715485215, 0.023105289787054062, 0.007581423036754131, 0.0027116183191537857, -0.0007795654819346964, 0.004756737966090441, -0.008973929099738598, -0.01775743067264557, 0.006661019753664732, 0.0005891372566111386, 0.01110831182450056, -0.023565489798784256, 0.009703904390335083, -0.015075566247105598, -0.0162816122174263, 0.0057723550125956535, 0.00314404908567667, 0.016408564522862434, 0.0034019204322248697, -0.00555415591225028, -0.005363727919757366, -0.01807481050491333, 0.008370906114578247, 0.013012593612074852, 0.017138538882136345, 0.013829848729074001, -0.004800377879291773, -0.015043828636407852, -0.014932745136320591, -0.01249685138463974, 0.012972921133041382, 0.007291813381016254, -0.017471788451075554, 0.004637720063328743, 0.0005321080097928643, -0.020391687750816345, 0.0015740081435069442, -0.008561334572732449, -0.03764130920171738, 0.006307934410870075, 0.006736397743225098, -0.011965238489210606, -0.0034197731874883175, -0.011251132935285568, -0.008680352009832859, 0.003909728955477476, -0.00053954659961164, -0.016472039744257927, -0.0028881612233817577, 0.009759445674717426, -0.009077077731490135, 0.0031817378476262093, -0.01477405522018671, -0.0016751731745898724, 0.0062325564213097095, -0.006573740392923355, 0.0024180414620786905, 0.013091939501464367, 0.002701700199395418, -0.011195591650903225, 0.00021819898393005133, -0.00555415591225028, 0.015162846073508263, -0.027485137805342674, 0.009608689695596695, -0.007196599151939154, 0.010362467728555202, 0.017487656325101852, -0.014401133172214031, 0.01209219079464674, -0.0072878459468483925, -0.009616624563932419, 8.356029138667509e-05, -0.0032095087226480246, 0.02604105696082115, -0.021312089636921883, -0.005601763259619474, 0.0007840286125428975, 0.0022633185144513845, 0.0022514169104397297, -0.006950629409402609, 0.0187254399061203, -0.013694961555302143, -0.026644079014658928, 0.004110075533390045, -0.010687783360481262, -0.018043072894215584, -0.01030692644417286, -0.023089420050382614, 0.0024616813752800226, 0.013671157881617546, 0.022676825523376465, 0.018281107768416405, -0.00732751889154315, 0.0004130903398618102, 0.006855415180325508, 0.0044948989525437355, -0.021058185026049614, 0.012687278911471367, -0.012607933953404427, 0.010108564049005508, -0.010600503534078598, -0.025041308254003525, 0.016963979229331017, 0.010362467728555202, -0.003929565194994211, 0.01571032777428627, 0.005216939374804497, 0.00186163408216089, -0.027580352500081062, 0.004645654931664467, -0.021391434594988823, 0.0013637436786666512, 0.011655793525278568, -0.01586901769042015, -0.0003699464723467827, -0.007271977141499519, -0.021613601595163345, -0.006752267014235258, -0.007926573976874352, 0.019264986738562584, 0.00993400439620018, -0.0008837059140205383, -0.016178462654352188, -0.002562846289947629, -0.007188664749264717, 0.019407808780670166, 0.0007855163421481848, -0.016821159049868584, -0.020820150151848793, -0.013655289076268673, -0.022343575954437256, -0.01083060447126627, 0.006895088125020266, -0.03272191435098648, -0.04306851327419281, 0.013274433091282845, -0.0004066435503773391, -0.02751687541604042, 0.022438790649175644, 0.03159521147608757, 0.039355162531137466, 0.017805038020014763, 0.010767128318548203, 0.02466045320034027, 0.0061889165081083775, 0.028707051649689674, -0.03248387947678566, -0.02067732997238636, -0.014353525824844837, 0.028056422248482704, 0.01767808571457863, 0.0037093828432261944, -0.004510768223553896, 0.027136018499732018, -0.011187656782567501, -0.011877959594130516, 0.020740805193781853, 0.011822417378425598, 0.03165869042277336, 0.020804282277822495, 0.009656297042965889, -0.0007860122714191675, 0.003159918123856187, -0.022597480565309525, -0.018170025199651718, -0.030643071979284286, 0.0031817378476262093, -0.003814514959231019, -0.004141813609749079, 0.008283627219498158, 0.012195339426398277, -0.013869521208107471, -2.9320488465600647e-05, 0.0060064229182899, -0.0017971661873161793, -0.0008787467959336936, -0.00037639326183125377, 0.007152959704399109, 0.003760957159101963, -0.002521190093830228, -0.00512966001406312, 0.009600755758583546, -0.027945339679718018, 0.0076171280816197395, 0.01167959626764059, -0.015892820432782173, 0.0008356029284186661, -0.006490428000688553, 0.010441813617944717, -0.03453098237514496, 0.009648362174630165, -0.00744653632864356, 0.02481914311647415, 0.002848488511517644, -0.008204282261431217, 0.026913853362202644, 0.011393954046070576, -0.002394238021224737, 0.003505069063976407, 0.009703904390335083, -0.018201762810349464, 0.01686876453459263, 0.020010830834507942, -0.017392443493008614, 0.023581359535455704, 0.0016136806225404143, -0.032848864793777466, 0.0007002204074524343, -0.03111914172768593, -0.002312909346073866, 0.01864609494805336, -0.013932997360825539, -0.000636744312942028, 0.016234004870057106, -0.0043441434390842915, 0.010997229255735874, -0.010219646617770195, -0.010568764992058277, 0.00041433010483160615, 0.011274936608970165, 0.01144156139343977, 0.02061385288834572, 0.000689806358423084, -0.009680100716650486, -0.00043639796786010265, 0.0050027077086269855, -0.020058438181877136, 0.01904281973838806, 0.004244962241500616, 0.022692695260047913, 0.010021284222602844, -0.003893860150128603, 0.011393954046070576, 0.019899748265743256, 0.005078085698187351, -0.023263979703187943, -0.0049828714691102505, -0.021883374080061913, -0.01586901769042015, -0.007089483551681042, 0.0074901762418448925, -0.018693702295422554, -0.007295780815184116, 0.003838318632915616, 0.002961555263027549, 0.009918135590851307, 0.0026283059269189835, 0.00555415591225028, 0.0029754408169537783, 0.019963223487138748, 0.010314861312508583, 0.006716561503708363, -0.0207725428044796, -0.001568057225085795, 0.006601511035114527, -0.030754154548048973, -0.015892820432782173, -0.003274968359619379, 0.02327984757721424, 0.011663727462291718, -0.024041561409831047, -0.008878715336322784, -0.012972921133041382, -0.009053274057805538, -0.0035387908574193716, -0.0016930258134379983, 0.009688034653663635, -0.005042380187660456, 0.01046561636030674, 0.0073116496205329895, -0.005542254075407982, 0.021375566720962524, 0.025358689948916435, 0.004717065487056971, 0.009600755758583546, 0.01945541426539421, 0.009227833710610867, -0.022676825523376465, 0.005744584370404482, 0.012282619252800941, 0.011838287115097046, -0.0063436394557356834, 0.010235516354441643, -0.017408311367034912, -0.0034832493402063847, -0.006831611972302198, -0.0091643575578928, 0.024311333894729614, -0.001819977886043489, -0.00887078046798706, 0.017360704019665718, -0.04814659804105759, 0.006712594069540501, -0.0028028651140630245, -0.013528336770832539, -0.018122417852282524, -0.00354275805875659, -0.017900250852108, 0.010021284222602844, 0.017408311367034912, 0.013448991812765598, -0.005101888906210661, 0.01160025130957365, 0.031150881201028824, 0.001753526390530169, -0.007410830818116665, -0.010314861312508583, 0.0011514956131577492, 0.01758287101984024, 0.013488664291799068, -0.004780541639775038, 0.0066927578300237656, -0.02954811044037342, 0.00041829736437648535, -0.0023386965040117502, 0.011314609088003635, 0.01734483614563942, 0.0030012279748916626, 0.013925062492489815, -0.016424432396888733, 0.026564734056591988, -0.00021559547167271376, 0.014044079929590225, 0.003163885325193405, 0.010076825506985188, 0.01694810949265957, 0.013044332154095173, 0.0027036836836487055, -0.026088664308190346, -0.015480225905776024, 0.015432619489729404, 0.02107405476272106, -0.016194332391023636, 0.017471788451075554, -0.0031539672054350376, -0.01945541426539421, -0.008021787740290165, 0.016963979229331017, 0.0013944898964837193, 0.015281863510608673, -0.007359256502240896, -0.005224873777478933, -0.0034832493402063847, 0.014266245998442173, 0.011647858656942844, 0.018360452726483345, -0.011497102677822113, 0.007736145984381437, -0.01474231667816639, 0.02361309714615345, 0.0007185689173638821, 0.009330982342362404, -0.002392254304140806, -0.00219785887748003, -0.007470340002328157, 0.0070061711594462395, -0.000568309158552438, -0.016099117696285248, -0.011211460456252098, 0.03142065554857254, -0.020883627235889435, 0.007291813381016254, 0.00932304747402668, -0.009077077731490135, 0.0021879407577216625, 0.005724748130887747, 0.018788916990160942, 0.012298488058149815, 0.006534067913889885, 0.004554408136755228, 0.029183123260736465, 0.00581996189430356, -0.016900504007935524, -0.024311333894729614, 0.017233751714229584, -0.0074862088076770306, 0.006184949539601803, -0.01470264419913292, -0.0023010075092315674, 0.0008108075708150864, -0.0156706552952528, 0.021454911679029465, -0.03751435503363609, 0.013544206507503986, 0.004586145747452974, 0.00566127197816968, 0.006260327063500881, -0.010703652165830135, 0.008196347393095493, 0.007458438165485859, -0.005764420609921217, 0.001001731725409627, 0.015853147953748703, -0.018995214253664017, 0.011005163192749023, 0.011417757719755173, -0.001134634716436267, -0.022422920912504196, 0.0015462373849004507, -0.018217632547020912, 0.004844017326831818, 0.0011197575367987156, -0.01661486178636551, -0.016210200265049934, 0.0008390742586925626, -0.011290805414319038, 0.006625314708799124, 0.030087657272815704, -0.02020125836133957, -0.020820150151848793, 0.015956297516822815, 0.006149244029074907, -0.010806800797581673, 0.014012342318892479, 0.009624558500945568, -0.003570528933778405, -0.007220402825623751, 0.020153651013970375, 0.00394146703183651, -0.007890868932008743, 0.040434256196022034, -0.016329217702150345, -0.0018041088478639722, -0.002445812337100506, -0.01659899204969406, -0.002677896525710821, 0.020232995972037315, -0.00416958425194025, 0.009092946536839008, -0.01481372769922018, 0.016114987432956696, -0.00867241807281971, -0.0010622323025017977, 0.00512966001406312, -0.023073550313711166, 0.003415805986151099, 0.0015273928875103593, -0.004796410445123911, 0.028532491996884346, 0.00523280818015337, -0.0004210248589515686, 0.02377178706228733, 0.010894080623984337, 0.010592568665742874, -0.023390932008624077, -0.009172291494905949, 0.010053022764623165, 0.001649386016651988, 0.00952140986919403, 0.006994269322603941, -0.004859886597841978, 0.0035903651732951403, -0.01217153575271368, -0.0162974800914526, 0.006930793169885874, 0.00879143550992012, -0.00161863979883492, 0.003294804599136114, 0.011854155920445919, 0.004479030147194862, 0.00988639798015356, 0.007601259276270866, -0.025850629433989525, 0.008767631836235523, -0.0017446000128984451, 0.00628809817135334, 0.009045340120792389, -0.0156706552952528, -0.027548613026738167, 0.006466624327003956, 0.002388287102803588, -0.0027631926350295544, 0.005768387578427792, -0.012274684384465218, -0.00494319899007678, 0.02183576673269272, 0.0018745276611298323, 0.017773298546671867, -0.009465868584811687, -0.0030904910527169704, 0.001532351947389543, 0.007668702397495508, 0.006141309626400471, 0.012235011905431747, -0.021105792373418808, -0.0025787153281271458, -0.0041656168177723885, -0.0472261942923069, -0.0049828714691102505, 0.00784326158463955, -0.007018072996288538, -0.01596423052251339, 0.019344331696629524, 0.0040585012175142765, -0.0072878459468483925, -0.009378588758409023, -0.00045796993072144687, -0.01896347478032112, -0.0017475754721090198, -0.013806045055389404, -0.01799546554684639, 0.007732178550213575, -0.006276196334511042, 0.010981359519064426, -0.005546221509575844, -0.023470276966691017, 0.015131107531487942, 0.012258815579116344, 0.01163992378860712, 0.02107405476272106, 0.0006997244781814516, 0.019915616139769554, -0.012742821127176285, 0.009545213542878628, -0.013813978992402554, -0.009013601578772068, 0.007950377650558949, 0.00474086869508028, -0.0020510705653578043, -0.0005142553127370775, 0.014052014797925949, -0.014710579067468643, -0.032452140003442764, -0.0070061711594462395, 0.005506549030542374, -0.003965270705521107, 0.0039037782698869705, 0.011782744899392128, 0.01889999955892563, 0.010021284222602844, -0.019725188612937927, -0.014591561630368233, -0.0026560768019407988, -0.017773298546671867, -0.003217443125322461, 0.022898992523550987, -0.017471788451075554, -0.005387531127780676, -0.017360704019665718, 0.010053022764623165, -0.0019608153961598873, 0.034562718123197556, -0.0016305415192618966, -0.002890144707635045, -0.00233076186850667, -2.628305992402602e-05, 0.0028980793431401253, 0.003140081651508808, -0.01470264419913292, 0.0013558091595768929, 0.021788161247968674, 0.02615213952958584, -0.023993954062461853, -0.0015561555046588182, 0.016210200265049934, 0.007958312518894672, -0.03307102993130684, -0.0015333438059315085, -0.010513223707675934, -0.022613350301980972, 0.004752770531922579, -0.0008965994929894805, -0.03086523897945881, 6.403396400855854e-05, -0.01042594388127327, -0.012330226600170135, 0.0032293449621647596, 0.014028211124241352, -0.016995716840028763, 0.0136394202709198, -0.000979911768808961, 0.0017148456536233425, 0.014750251546502113, -0.004998740274459124, 0.007073614280670881, -0.02386700175702572, 0.02615213952958584, -0.011282871477305889, -0.0028822103049606085, -0.004653589334338903, -0.00462185125797987, 0.02899269387125969, 0.01197317335754633, -0.017551133409142494, -0.02573954500257969, 0.002544993534684181, -0.0041894204914569855, -0.00202528340741992, -0.017281359061598778, 0.004383815918117762, 0.011536775156855583, 0.01962997391819954, -0.018503274768590927, 0.0042092567309737206, 0.01563098095357418, -0.023232240229845047, 0.007823425345122814, 0.005562090314924717, -0.021232744678854942, -0.005201070569455624, -0.007736145984381437, 0.003969238139688969, -0.03738740459084511, 0.009656297042965889, 0.0021304155234247446, -0.006307934410870075, -0.011330477893352509, -1.5109660125744995e-05, 0.015480225905776024, 0.007847229018807411, -0.013980603776872158, -0.010941687040030956, 0.01970931887626648, -0.01530566718429327, -0.01485340017825365, -0.014099622145295143, -0.010322795249521732, 0.013869521208107471, -0.012115994468331337, -0.01847153529524803, 0.0014678840525448322, -0.007970213890075684, -0.0183287151157856, -0.002235547872260213, 0.004443324636667967, 0.010362467728555202, -0.008120969869196415, 0.002751290798187256, -0.013250629417598248, 0.019677581265568733, -0.0028980793431401253, -0.02061385288834572, -0.0019052738789469004, 0.025929974392056465, 0.015504029579460621, 0.019836271181702614, 0.002487468533217907, -0.004859886597841978, -0.032436270266771317, -0.002967506181448698, -0.0019072574796155095, -0.012893576174974442, -0.0005241734907031059, 0.01269521377980709, 0.0136394202709198, 0.005089987069368362, -0.001839814125560224, -0.007168828509747982, -0.01734483614563942, 0.0018219614867120981, 0.02116926945745945, -0.008089231327176094, 0.003185705281794071, 0.01596423052251339, 0.009188161231577396, -0.015694458037614822, 0.021201007068157196, 0.0014123425353318453, 0.0038105477578938007, 0.013615616597235203, -0.000822709349449724, 0.007152959704399109, 0.013060200959444046, -0.011957304552197456, -0.01094962190836668, 0.0008390742586925626, 0.0010900030611082911, 0.010997229255735874, -0.006887153256684542, 0.002007430652156472, 0.007434634491801262, -0.011536775156855583, 0.01387745514512062, -0.021851636469364166, -0.01659899204969406, 0.019249117001891136, -0.006704659666866064, 0.01348073035478592, 0.00017567498434800655, 0.02516826055943966, 0.011147984303534031, -0.005018576513975859, -0.0004336704732850194, 0.020391687750816345, 0.008355037309229374, -0.007545717526227236, -0.0024180414620786905, 0.005637468304485083, 0.025184130296111107, 0.020867757499217987, -0.006724495906382799, -0.013433123007416725, 0.01254445780068636, 0.009418261237442493, -0.0183287151157856, 0.016995716840028763, -0.023755919188261032, 0.004086271859705448, -0.009330982342362404, -0.01616259478032589, 0.004137846175581217, -0.00920403003692627, 0.013885390013456345, 0.014004407450556755, 0.004955100826919079, -0.020328210666775703, -0.019931485876441002, -0.0162974800914526, 0.0011108311591669917, 0.018011335283517838, 0.0020332178100943565, 0.01624193973839283, 0.004891624674201012, 0.017360704019665718, 0.02604105696082115, -0.02573954500257969, 0.005792191252112389, 0.018868261948227882, 0.020296473056077957, -0.0033086901530623436, 0.006101637147367001, -0.021439041942358017, -0.009211964905261993, 0.01888412982225418, 0.009584886021912098, -0.017138538882136345, 0.007636964321136475, -0.010608438402414322, 0.02254987321794033, -0.00822015106678009, 0.005835831165313721, -0.007684571668505669, 0.004812279250472784, 0.017487656325101852, 0.006276196334511042, -0.013655289076268673, 0.0020193324889987707, -0.0042330604046583176, 0.004046599380671978, -0.0008162625599652529, -0.012972921133041382, -0.0037470716051757336, 0.02221662364900112, -0.0036280539352446795, 0.017059193924069405, 0.0031460325699299574, -0.017059193924069405, -0.026723423972725868, 0.012822166085243225, 0.016019772738218307, -0.004506800789386034, 0.0071370904333889484, 0.002519206376746297, 0.0068276445381343365, -3.617020047386177e-05, -0.014305919408798218, 0.0025886334478855133, 3.680558222640684e-07, -0.007275944575667381, 7.903514415374957e-06, -0.007613161113113165, 0.01831284537911415, 0.011885893531143665, 0.01478198915719986, -0.017122669145464897, 0.012964987196028233, -0.00993400439620018, 0.0032491812016814947, 0.007498110644519329, -0.00032159555121324956, 0.009100881405174732, -0.024692190811038017, -0.016916371881961823, -0.013885390013456345, 0.005827896762639284, -0.006419017445296049, -0.003485232824459672, 0.0038125314749777317, -0.005280415527522564, -0.001992553472518921, -0.0252476055175066, 0.005256611853837967, -0.011140050366520882, 0.026850376278162003, 0.008942191489040852, -0.017075061798095703, 0.0014411051524803042, 0.009100881405174732, 0.0018497323617339134, 0.0025687972083687782, -0.004455226473510265, -0.018170025199651718, -0.0035249055363237858, -0.01637682504951954, 0.011140050366520882, -0.0034257241059094667, -0.004272732883691788, 0.003937500063329935, 0.007470340002328157, 0.0025906169321388006, -0.006399181205779314, -0.020502770319581032, 0.009799118153750896, -0.00825982354581356, 0.002219678834080696, 0.013948866166174412, 0.007744080387055874, -0.010037153027951717, -0.005296284332871437, 0.03272191435098648, 0.006649118382483721, -0.002388287102803588, 0.025628462433815002, -0.007982115261256695, 0.004939231555908918, 0.011528841219842434, -0.002598551567643881, -0.008120969869196415, 0.0183287151157856, 0.011647858656942844, -0.018138285726308823, 0.005089987069368362, -0.002122481120750308, -0.005946914199739695, -0.006117505952715874, -0.017852643504738808, 0.0017634445102885365, -0.025136522948741913, 0.0008618860156275332, -0.031722165644168854, -0.01213186327368021, -0.00027770778979174793, 0.010513223707675934, -0.008704155683517456, -0.007037909235805273, 0.00936271995306015, -0.003007178660482168, 0.003298772033303976, -0.015861082822084427, 0.0014192851958796382, -0.014067883603274822, -0.011243198998272419, -0.0027274873573333025, -0.010624307207763195, 0.013932997360825539, -0.0016880667535588145, 0.014456674456596375, 0.006704659666866064, -0.0031480162870138884, -0.013996473513543606, 0.011013098061084747, 0.0019360200967639685, -0.002195875160396099, 0.01330617070198059, 0.0008881690446287394, 0.010235516354441643, 0.014916876330971718, -0.021042317152023315, -0.010370402596890926, 0.014908941462635994, -0.011084508150815964, 0.0062087527476251125, 0.02719949558377266, 0.002580698812380433, -0.014107556082308292, -0.018376322463154793, -0.015496095642447472, -0.0009506532805971801, -0.007176762912422419, 0.007517946884036064, -0.020883627235889435, 0.013203022070229053, 0.0019201510585844517, -0.009219898842275143, 0.00981498695909977, 0.01604357548058033, -0.009434130974113941, 0.016551384702324867, 0.01257619634270668, -0.002045119646936655, -0.014877203851938248, -0.03964080661535263, -0.01136221643537283, 0.0026858311612159014, -0.012687278911471367, 0.026326699182391167, -0.027627957984805107, 0.014377329498529434, -0.011243198998272419, 0.008117002435028553, -0.006407115608453751, -0.002154218964278698, 0.0005291325505822897, 0.013583878986537457, 0.02254987321794033, 0.00016426912043243647, 0.01685289666056633, 0.0012546441284939647, 0.03599093109369278, -0.03319798409938812, -0.003487216541543603, -0.00928337499499321, 0.005328022409230471, -0.014678840525448322, 0.0055739921517670155, 0.002445812337100506, -0.007997984997928143, 0.005788223817944527, 0.001972717233002186, 0.004923362750560045, 0.010894080623984337, 0.000159186078235507, 0.011584382504224777, -0.006906989496201277, -0.025787152349948883, 0.0015591309638693929, 0.01030692644417286, -0.01864609494805336, -0.010886145755648613, 0.018058940768241882, -0.000939743360504508, 0.0001513755414634943, 0.007363223936408758, 0.006244458258152008, 0.027580352500081062, -0.004296536557376385, -0.013782241381704807, -0.00018187380919698626, -0.014305919408798218, 0.009330982342362404, 0.006129407789558172, -0.030468512326478958, 0.004300503525882959, -0.004102141130715609, -0.005871536210179329, -0.02018539048731327, 0.001194143551401794, -0.032944079488515854, 0.029437026008963585, 0.00578028941527009, 0.030976321548223495, -0.004760704934597015, 0.01436939463019371, -0.0014500314136967063, 0.012203274294734001, -0.00822808500379324, -0.005716813262552023, -0.012068387120962143, 0.005708878859877586, -0.0076171280816197395, -0.01522632222622633, -0.0064110830426216125, -0.03681612014770508, 0.005815994925796986, -0.002856423147022724, 0.008775566704571247, 0.0015601227059960365, -0.004574244376271963, -0.002316876547411084, -0.018027203157544136, 0.018011335283517838, -0.006050062831491232, -0.012671410106122494, -0.011386020109057426, -0.006121473386883736, -0.01075125951319933, 0.007728211116045713, -0.012925314716994762, -0.020867757499217987, 0.01970931887626648, 0.007129156030714512, 0.008727959357202053, 0.011330477893352509, -0.01669420674443245, 0.006375377532094717, -0.005054282024502754, -0.000244853988988325, 0.029897227883338928, 0.007819457910954952, 0.007398929446935654, 0.021788161247968674, 0.008505793288350105, 0.022946598008275032, 0.001138602034188807, 0.026659948751330376, 0.007454470731317997, -0.01742418110370636, 0.015400880947709084, 0.009624558500945568, 0.002098677447065711, -0.009045340120792389, 0.004296536557376385, 0.017868513241410255, -0.02148664928972721, 0.03291234001517296, -0.01046561636030674, 0.0016910420963540673, -0.013821913860738277, -0.006561838556081057, 0.014591561630368233, 0.017313098534941673, -0.0036895463708788157, 0.006050062831491232, 0.0059072417207062244, -0.006244458258152008, -0.0077996221370995045, -5.0272548833163455e-05, -0.01298879086971283, -0.0187254399061203, -0.009878463111817837, -0.0030984256882220507, -0.0069823674857616425, -0.017376573756337166, 0.011536775156855583, -0.019503021612763405, 0.021439041942358017, -0.0050265113823115826, 0.0037292190827429295, 0.002483501099050045, 0.012147733010351658, 0.003915680106729269, -0.0022236460354179144, -0.011433626525104046, -0.00988639798015356, 0.0027473235968500376, 0.004348110873252153, 0.011298740282654762, 0.00631190137937665, 0.013782241381704807, 0.0006903022294864058, 0.0010493387235328555, -0.012703148648142815, -0.016710074618458748, -0.005566057749092579, -0.014075818471610546, -0.006407115608453751, -0.0016176479402929544, -0.00474086869508028, -0.007831360213458538, -0.00012441060971468687, -0.0071608941070735455, 0.013552140444517136, 0.026358436793088913, -0.014194835908710957, 0.00928337499499321, 0.004145780578255653, 0.008156674914062023, 0.006434886250644922, -0.007847229018807411, 0.013242694549262524, -0.011227329261600971, -0.008608941920101643, 0.018106548115611076, -0.005851699970662594, -0.002677896525710821, 0.008521662093698978, 0.003776825964450836, 0.0045226700603961945, 0.02873878926038742, 0.016630729660391808, 0.013726700097322464, -0.004645654931664467, -0.01417103223502636, -0.0009620591881684959, 0.004764672368764877, 0.011378085240721703, 0.015551636926829815, -0.004181486088782549, -0.01258413027971983, 0.009791183285415173, -0.006109571550041437, -0.002828652272000909, 0.008767631836235523, -0.0033622479531913996, 0.007744080387055874, 0.0068712844513356686, -0.00653803488239646, -0.001327046542428434, 0.006617380306124687, -0.01421070471405983, 0.00879143550992012, -0.02213727869093418, 0.029198991134762764, -0.0038125314749777317, -0.011965238489210606, -0.03891082853078842, -1.8712732980930014e-06, -0.006883186288177967, 0.01880478486418724, -0.0043441434390842915, 0.0009194111917167902, 0.009434130974113941, -0.003215459641069174, -0.004443324636667967, -0.020947102457284927, -0.010552896186709404, -0.006526133511215448, 0.0011138066183775663, 0.010314861312508583, 0.005324055440723896, 0.008442317135632038, 0.002043135929852724, -0.012925314716994762, -0.009227833710610867, -0.019820403307676315, -0.009870528243482113, -0.0026441749650985003, 0.013734634034335613, -0.011909697204828262, -0.010616372339427471, -0.0063634756952524185, 0.01651964709162712, -3.6480141716310754e-05, 0.03799042850732803, -0.004070403054356575, -0.010394206270575523, -0.009449999779462814, -0.006415050011128187, 0.023152895271778107, -0.012155666947364807, 0.0037470716051757336, 0.02264508791267872, 0.0034892000257968903, -0.025676069781184196, -0.014194835908710957, 0.022898992523550987, 0.012782493606209755, -0.0038125314749777317, 0.0003250669105909765, -0.00997367687523365, -0.008362972177565098, 0.013512467965483665, 0.024073299020528793, -0.018122417852282524, 0.008386775851249695, -0.020947102457284927, -0.003376133507117629, -0.011814483441412449, 0.013401385396718979, 7.574976189061999e-05, -0.0068276445381343365, 0.02646952122449875, -0.013853652402758598, 0.0038799745962023735, 0.02264508791267872, -0.007783752866089344, -0.008386775851249695, 0.03234105557203293, -0.006490428000688553, 0.02148664928972721, 0.0034554784651845694, -0.00891045294702053, 0.023327454924583435, -0.0018953557591885328, -0.0037153335288167, -0.006966498680412769, -0.0007755982223898172, 0.005764420609921217, 0.024708060547709465, 0.0017237720312550664, 0.01409168727695942, -0.02997657284140587, -0.00439571775496006, -0.015377077274024487, 0.014750251546502113, -0.007521914318203926, 0.014520150609314442, -0.017805038020014763, 0.0004450763517525047, -0.011354281567037106, -0.026025187224149704, 0.004919395316392183, -0.025866497308015823, 0.020582115277647972, -0.010068891569972038, 0.005498614627867937, -0.007966246455907822, 0.01977279596030712, -0.014067883603274822, -0.011393954046070576, -0.011259067803621292, 0.017884382978081703, 0.0033999369479715824, -0.0038799745962023735, -0.00435604527592659, 0.006910956930369139, 0.029611585661768913, 0.0017803054070100188, -0.006173047702759504, 0.009600755758583546, -0.02938942052423954, 0.0024319267831742764, 0.007319584023207426, -0.006422984879463911, 0.0162816122174263, -0.0048479847609996796, -0.019598236307501793, -0.008021787740290165, -0.027421660721302032, -0.008616875857114792, 0.006438853684812784, 0.0008757713949307799, 0.008989797905087471, 0.002372418064624071, 0.0036340048536658287, -0.011568513698875904, -0.014194835908710957, 0.00029952768818475306, 0.017805038020014763, 0.05716019868850708, 0.02345440723001957, 0.007426700089126825, -0.0014004408149048686, 0.001490695751272142, -0.025184130296111107, 0.0013250629417598248, -0.011013098061084747, -0.007732178550213575, 0.008049558848142624, 0.008942191489040852, -0.01356007531285286, 0.010878210887312889, 0.007188664749264717, -0.00980705302208662, 0.009172291494905949, -0.0010007398668676615, 0.0008970953640528023, 0.003695497289299965, 0.012219143100082874, -0.007517946884036064, 0.013512467965483665, -0.004375881515443325, -0.0027691435534507036, 0.001379612716846168, -0.004098173696547747, 0.0028266687877476215, 0.008212216198444366, 0.005236775614321232, 0.0026104534044861794, 0.0240098237991333, 0.0114018889144063, -0.014099622145295143, 0.005447040311992168, 0.00010488428233657032, 0.017725693061947823, 0.0068474807776510715, 0.018614357337355614, -0.00826775748282671, -0.009513475932180882, -0.025596724823117256, -0.021930981427431107, 0.013234760612249374, -0.019312594085931778, -0.005946914199739695, -2.8003236366203055e-05, -0.0037312025669962168, 0.013091939501464367, -0.017693953588604927, 0.0038680729921907187, 0.007208500988781452, 0.01913803443312645, -0.012385767884552479, -0.001327046542428434, 0.010640176013112068, -0.013385515660047531, 0.00027101306477561593, -0.016503777354955673, -0.007871032692492008, -0.021851636469364166, -0.006303966976702213, 0.01098929438740015, 0.02239118330180645, 0.011084508150815964, -0.00014083752466831356, 0.011267001740634441, 0.00818841252475977, 0.004379848949611187, -0.0020054469350725412, -0.011584382504224777, 0.008156674914062023, -0.023835264146327972, -0.003157934406772256, -0.01839219033718109, 0.00655390415340662, -0.009077077731490135, -0.02329571731388569, -0.0075972918421030045, -0.002427959581837058, -0.00859307311475277, 0.004998740274459124, -0.011314609088003635, -0.0049789040349423885, 0.0011604218743741512, -0.010275188833475113, 0.015837278217077255, -0.008656549267470837, 0.002660044003278017, 0.014718513004481792, 0.02270856313407421, -0.017075061798095703, -0.008386775851249695, -0.004336209036409855, 0.0020282587502151728, 0.018423929810523987, -0.0015521881869062781, -0.015392947010695934, 0.001196127152070403, 0.003774842480197549, 0.008307430893182755, 0.00037242600228637457, 0.008664483204483986, -0.0097753144800663, 0.0171068012714386, 0.002009414369240403, -0.019407808780670166, -0.00716486107558012, -0.0019717253744602203, 0.0015769836027175188, 0.0015581391053274274, -0.02140730433166027, 0.016916371881961823, -0.005379596725106239, 0.025358689948916435, 0.02043929323554039, 0.01726549118757248, 0.004776574205607176, 0.0025311082135885954, -0.00411404250189662, 0.008823173120617867, -0.02483501099050045, -0.001346882781945169, 0.0091643575578928, 0.013528336770832539, -0.012480981647968292, -0.001965774456039071, 0.0012189388507977128, 0.010084760375320911, -0.014337657019495964, -0.002600535284727812, 0.015091435052454472, -0.009132619015872478, 0.00045301084173843265, 0.01413135975599289, 0.005308186169713736, -0.0013915144372731447, 0.005720780696719885, -0.00800195150077343, 0.016821159049868584, -0.010656044818460941, -0.02345440723001957, 0.05462115630507469, 0.010005415417253971, -0.005018576513975859, -0.02288312278687954, -0.0008737877360545099, -0.01701158657670021, -0.005645402707159519, 0.009537279605865479, -0.00736719137057662, -0.010005415417253971, -0.005399432964622974, -0.002297040307894349, 0.010544962249696255, 0.006129407789558172, 0.031706295907497406, 0.0019499055342748761, 0.02826271951198578, -0.030896976590156555, 0.01318715326488018, -0.010814734734594822, 0.012639672495424747, 0.012822166085243225, 0.01864609494805336, 0.01429004967212677, -0.018106548115611076, -0.008950125426054, 0.019661711528897285, -0.01204458437860012, -0.01160025130957365, -0.010759193450212479, 0.01045768242329359, 0.003352329833433032, 0.010275188833475113, -0.015178714878857136, 0.02564433217048645, 9.471819794271141e-05, 0.0071807303465902805, -0.01598803512752056, -0.007613161113113165, 0.01782090589404106, 0.015329470857977867, 0.032848864793777466, -0.0024001889396458864, -0.027786649763584137, 0.021629469469189644, -0.010251385159790516, 0.01204458437860012, -0.006641183514147997, 0.002800881629809737, 0.006117505952715874, 0.014004407450556755, -0.009085012599825859, -0.010449747554957867, -0.020566245540976524, 0.016487909480929375, 0.007152959704399109, -0.0018189861439168453, -0.03703828528523445, 0.005355793051421642, 0.007482241373509169, -0.007767884060740471, -0.008049558848142624, -0.0028802265878766775], "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f": [0.0024391352199018, -0.019058911129832268, -0.009099616669118404, 0.025044221431016922, -0.05229441076517105, -0.03967497870326042, 0.011475898325443268, 0.036268703639507294, -0.0032359599135816097, 0.025125322863459587, 0.012716754339635372, 0.010689211077988148, -0.004740397445857525, -0.001727467286400497, -0.00037180085200816393, -0.010502676479518414, -0.017307113856077194, 0.02893710508942604, 0.00014763053331989795, -0.01967528462409973, 0.06144268810749054, -0.004428155720233917, -0.04849884659051895, 0.04100504517555237, 0.003136610146611929, -0.01891292817890644, -0.0017882935935631394, 0.0001941373193403706, -0.02394123747944832, -0.009748430922627449, 0.004428155720233917, 0.02460627071559429, 0.023049117997288704, -0.032424479722976685, 0.009902523830533028, -0.021054014563560486, 0.003969930578023195, 0.012481559999287128, 0.030413156375288963, -0.010324252769351006, -0.02877490222454071, 0.02969946153461933, 0.02856403775513172, 0.003682019654661417, -0.04642264172434807, 0.016706960275769234, 0.015741849318146706, -0.023665491491556168, -0.016788063570857048, -0.002353978343307972, -0.004083473235368729, 0.003440741915255785, 0.0070761279202997684, 0.0071004582569003105, 0.02173526957631111, -0.025433508679270744, -0.0020539017859846354, 0.0672171339392662, 0.006970695685595274, -0.045384541153907776, 0.017161130905151367, 0.0072545516304671764, -0.00023658901045564562, -0.0010958873899653554, 0.019464420154690742, -0.0034164113458245993, 0.0010522952070459723, -0.01972394622862339, -0.025319967418909073, 0.011889517307281494, -0.008880642242729664, -0.0008039211388677359, -0.02780168130993843, 0.02713664621114731, -0.026455391198396683, -0.024071000516414642, 0.04908278211951256, 0.005547360051423311, 0.015214689075946808, 0.019156234338879585, -0.02757459506392479, -0.010397244244813919, 0.02476847544312477, 0.01891292817890644, 0.08771965652704239, 0.009886303916573524, -0.03594429790973663, -0.04720121994614601, -0.032051414251327515, -0.012473449110984802, 0.006370542570948601, 0.021686607971787453, -0.0077695478685200214, -0.0030088750645518303, -0.03652822971343994, 0.011419126763939857, 0.030802445486187935, 0.009659218601882458, 0.025157762691378593, -0.039253249764442444, -0.009026625193655491, -0.0010142787359654903, -0.019302217289805412, 0.006767941173166037, 0.021637948229908943, 0.016917824745178223, 0.00476878322660923, -0.003923297394067049, -0.03279754891991615, 0.03130527585744858, 0.017080029472708702, -0.05083457753062248, -0.0027899001725018024, -0.004440321121364832, -0.037793416529893875, -0.0498613566160202, -0.008377810940146446, -0.05051017180085182, 0.010535117238759995, -0.03002386912703514, 0.05158071592450142, 0.023097779601812363, 0.01798836886882782, 0.012603212147951126, -0.00969976931810379, 0.06420014798641205, 0.015336341224610806, -0.023324863985180855, -0.004545753356069326, -0.008880642242729664, 0.007051797118037939, -0.02995898760855198, 0.008799539878964424, 0.007595179136842489, 0.002024502493441105, -0.0015885805478319526, 0.030429378151893616, 0.06329181045293808, -0.014882171526551247, 0.05625217407941818, -0.03266778588294983, -0.04285416752099991, -0.02921285107731819, 0.006816602312028408, -0.004643075168132782, 0.008385920897126198, -0.056479260325431824, 0.05115898698568344, -0.03104574978351593, 0.01977260783314705, -0.06734689325094223, -0.009764650836586952, 0.01216526236385107, -0.0028426165226846933, 0.0011019700905308127, -0.022448964416980743, -0.00014129445480648428, 0.01321958564221859, 0.002990627195686102, -0.01143534667789936, -0.004639020189642906, -0.06961774080991745, -0.010875744745135307, 0.020356539636850357, 0.03866931423544884, 0.014630756340920925, 0.05109410360455513, 0.018118131905794144, -0.02361682988703251, 0.02157306671142578, 0.02822341024875641, -0.01200305949896574, 0.01918867416679859, -0.010964957065880299, -0.019058911129832268, -0.010745981708168983, 0.02525508590042591, 0.046941693872213364, 0.014119815081357956, -0.028904665261507034, -0.006958530284464359, 0.00697475066408515, -0.014095484279096127, -0.0032947587314993143, -0.003967903088778257, 0.03772853687405586, 0.0014892308972775936, 0.013398009352385998, 0.015555315650999546, -0.003921269904822111, -0.015230908989906311, -0.025530831888318062, 0.025044221431016922, 0.01771262288093567, -0.0054784235544502735, -0.026130983605980873, -0.014533434063196182, -0.013325017876923084, 0.0008672818657942116, 0.0045052021741867065, -0.015758071094751358, -0.02400611899793148, -0.042983926832675934, 0.04921254143118858, -0.023341083899140358, 0.026617595925927162, -0.02123243920505047, -0.04888813570141792, 0.036333583295345306, -0.02729884907603264, 0.03218117356300354, -0.027542155236005783, 0.0033819430973380804, 0.002197857480496168, -0.01750175841152668, -0.005750114098191261, -0.018994029611349106, 0.033835649490356445, 0.012108491733670235, -0.024573830887675285, -0.007104513701051474, 0.006788216531276703, -0.007400535047054291, -0.0433407761156559, -0.042821723967790604, -0.026633815839886665, -0.029083088040351868, -0.005413542035967112, -0.029083088040351868, -0.0018318857764825225, 0.02648783288896084, 0.01620412990450859, -0.009448354132473469, -0.029650799930095673, -0.02124865911900997, -0.009829532355070114, 0.024849576875567436, 0.03354368358850479, 0.00015003823500592262, -0.013024941086769104, 0.03234338015317917, 0.05352715775370598, -0.006950420327484608, 0.01424957811832428, 0.003485347842797637, 0.041426774114370346, -0.03206763416528702, 0.040388673543930054, 0.007376204244792461, 0.007765492890030146, 0.002560787834227085, 0.011816524900496006, -0.011881406418979168, -0.008385920897126198, -0.006013695150613785, 0.05699831247329712, 0.026033662259578705, -0.030299615114927292, -0.023276202380657196, 0.0049066562205553055, 0.013414230197668076, 0.012968170456588268, -0.024508949369192123, 0.012659983709454536, 0.0351981595158577, -0.014103594236075878, 0.04197826609015465, -0.01501193456351757, 0.006155623123049736, 0.03506839647889137, -0.0011192042147740722, 0.04155653715133667, 0.014630756340920925, -0.006634123157709837, 0.019853709265589714, -0.009561896324157715, 0.008138560689985752, -0.005737949162721634, 0.007201835513114929, 0.01630145125091076, -0.020891811698675156, 0.0005666984943673015, -0.014071154408156872, 0.03227849677205086, -0.0009843725711107254, -0.012903288938105106, 0.006305661052465439, -0.0173395536839962, -0.04259464144706726, -0.017907267436385155, -0.010405355133116245, 0.012562661431729794, 0.020356539636850357, 0.010113388299942017, 0.022351643070578575, -0.0007045714883133769, -0.014995713718235493, -0.00734376348555088, -0.02807742729783058, 0.0035218435805290937, 0.006727390456944704, -0.014582094736397266, 0.02275715209543705, -0.013616983778774738, 0.023373525589704514, -0.024395406246185303, 0.0089374128729105, 0.0032927312422543764, -0.040875282138586044, 0.02921285107731819, 0.06257811188697815, -0.0076803360134363174, 0.00404900498688221, 0.005887987092137337, 0.008499464020133018, 0.01267620362341404, 0.04100504517555237, 0.02280581183731556, -0.02822341024875641, -0.040777962654829025, 0.02032409980893135, -0.022627389058470726, -0.06218882277607918, 0.02313021942973137, 0.02058362402021885, -0.01967528462409973, 0.0303482748568058, 0.012351796962320805, -0.016536647453904152, -0.012603212147951126, 0.009545676410198212, -0.015628308057785034, -0.03623626381158829, -0.024638712406158447, -0.014719967730343342, -0.025693034753203392, -0.04395715147256851, -0.026844680309295654, 0.010178269818425179, -0.02828829176723957, -0.008767099119722843, 0.0017173296073451638, 7.774363621138036e-05, -0.007019356824457645, -0.0049309865571558475, 0.016228459775447845, 0.03012119047343731, 0.01967528462409973, -0.011492118239402771, 0.017761284485459328, 0.0010310059878975153, -0.029877886176109314, 0.013389899395406246, 0.012149042449891567, 0.036430906504392624, -0.007096403278410435, -0.016593419015407562, -0.0007182573899626732, 0.004407880362123251, -0.02155684493482113, 0.0097565408796072, -0.035522568970918655, -0.02264360897243023, 0.006082631181925535, -0.015344451181590557, 0.008402141742408276, 0.016269011422991753, -0.027931444346904755, 0.018020808696746826, 0.012173373252153397, -0.04963427409529686, 0.007895255461335182, 0.031451258808374405, -0.018004588782787323, -0.028028765693306923, -0.05060749500989914, 0.051450952887535095, 0.012805966660380363, -0.0086697768419981, 0.01443611178547144, 0.01999969221651554, 0.005324330180883408, 0.003047398291528225, 0.0018825744045898318, 0.018020808696746826, 0.038280028849840164, 0.004630910232663155, 0.00736809428781271, -0.009610557928681374, 0.004813388921320438, -0.026568934321403503, 0.0036739094648510218, -0.019545521587133408, -0.0021755544003099203, -0.03944789245724678, 0.01143534667789936, -0.012830297462642193, -0.022854473441839218, 0.004257841967046261, -0.02368171140551567, 0.005024253390729427, -0.006565186660736799, -0.017080029472708702, 0.03636602684855461, -0.0036881021223962307, -0.04291904717683792, 0.006419203709810972, -0.01680428348481655, 0.021118896082043648, -0.0165285374969244, 0.007749272510409355, -0.008329150266945362, 0.025936340913176537, -0.025806577876210213, 0.03028339333832264, -0.00527161406353116, -0.0008480201940983534, 0.046844370663166046, -0.07026655972003937, -0.03072134405374527, 0.018020808696746826, 0.061896856874227524, -0.020826930180191994, 0.014760518446564674, -0.025157762691378593, 0.0449628122150898, 0.03672287240624428, -0.007473526522517204, -0.014598315581679344, -0.016187909990549088, -0.02145952358841896, 0.02801254577934742, -0.010405355133116245, -0.020080793648958206, 0.01452532410621643, -0.03158102184534073, 0.005794720258563757, -0.01094062626361847, -0.029942767694592476, -0.0036029452458024025, 0.008961743675172329, 0.024135882034897804, -0.018556080758571625, 0.01565263792872429, -0.0330408550798893, -0.022886915132403374, -0.04755806922912598, -0.005948813632130623, 0.005332440137863159, 0.00013698592374566942, -0.00012342672562226653, 0.030104970559477806, -0.06085875630378723, -9.827251051319763e-05, 0.0012601184425875545, -0.008823870681226254, -0.014387451112270355, -0.013941391371190548, 0.02986166439950466, -0.035133279860019684, -0.03776097670197487, -0.024638712406158447, 0.01015393901616335, -0.025725476443767548, 0.003771231509745121, -0.04252975806593895, 0.0036252483259886503, 0.01657719723880291, 0.015847282484173775, 0.01054322812706232, -0.005482478532940149, -0.016788063570857048, -0.03130527585744858, 0.017485538497567177, -0.019253555685281754, -0.014906502328813076, -0.013714306056499481, -0.0157094094902277, 0.01923733577132225, -0.03863687440752983, -0.03870175778865814, -0.02097291313111782, -0.04918010160326958, 0.033997856080532074, -0.014209027402102947, 0.015993265435099602, -0.015482324175536633, -0.013860289007425308, 0.012838407419621944, -0.027607036754488945, 0.044573523104190826, 0.014695637859404087, 0.015482324175536633, 0.0015733740292489529, 0.008588675409555435, -0.01075409259647131, -0.005762279499322176, -0.029115529730916023, -0.016658300533890724, -0.05002355948090553, 0.030056308954954147, -0.026455391198396683, 0.006995026022195816, 0.03688507527112961, 0.007104513701051474, -0.0012053748359903693, 0.0012286915443837643, 0.005502753891050816, -0.00318932649679482, -0.018410097807645798, -0.0319703109562397, 0.030364496633410454, -0.03769609332084656, 0.008572455495595932, 0.005275669042021036, 0.03055913932621479, -0.01631767302751541, 0.012311246246099472, 0.028758680447936058, 0.004018591716885567, 0.016406884416937828, -0.04934230446815491, -0.004999923054128885, -0.0040226466953754425, -0.04343809932470322, -0.04963427409529686, -0.015644527971744537, -0.013276357203722, 0.024719813838601112, 0.0010051548015326262, -0.013146594166755676, 0.01097306702286005, -0.00918071810156107, 0.01346289087086916, 0.032100073993206024, -0.026049882173538208, -0.014014382846653461, 0.02275715209543705, 0.017809944227337837, 0.016869165003299713, -0.03604161739349365, 0.048693493008613586, -0.013170924969017506, -0.011070389300584793, -0.018183013424277306, 0.046195559203624725, -0.005685233045369387, 0.027120426297187805, 0.006796326953917742, 0.0006695963675156236, -0.035846974700689316, 0.014273907989263535, 0.0003274483315180987, -0.0037793416995555162, 0.006853098049759865, -0.038117822259664536, 0.03044559806585312, -0.013876509852707386, 0.00036901296698488295, -0.0007826319197192788, -0.0027878726832568645, 0.01793970726430416, 0.009505125693976879, 0.01637444458901882, -0.04447619989514351, -0.009245599620044231, -0.031889207661151886, 0.0395452156662941, -0.012359906919300556, 0.010113388299942017, 0.004655240569263697, 0.028434274718165398, 0.03295975178480148, -0.010616219602525234, -0.008637337014079094, 0.01912379264831543, -0.002641889499500394, -0.012173373252153397, -0.04755806922912598, -0.020729606971144676, 0.023324863985180855, -0.0390261635184288, -0.0034914305433630943, -0.025384848937392235, 0.010437795892357826, 0.009691659361124039, -0.01836143620312214, -0.05034796893596649, -0.003773258998990059, 0.04252975806593895, -0.013560213148593903, 0.034160058945417404, 0.005859601777046919, 0.012749195098876953, -0.040940165519714355, 0.023600609973073006, -0.011110940016806126, -0.006151567678898573, 0.01988614909350872, -0.006557076703757048, -0.0074370307847857475, 0.01858852244913578, -0.015401222743093967, -0.040064264088869095, -0.013365568593144417, 0.034160058945417404, -0.006569242104887962, 0.013852179050445557, -0.012205814011394978, 0.02319510094821453, 0.0308835469186306, -0.008434582501649857, 0.037404127418994904, -0.020518742501735687, 0.018280334770679474, 0.01863718219101429, 0.00772088672965765, 0.009440244175493717, -0.01351966243237257, -0.0205998457968235, 0.013827849179506302, -0.025774136185646057, 0.04398959130048752, -0.029245290905237198, 0.009164498187601566, 0.028369393199682236, -0.021167557686567307, -0.0025324022863060236, -0.0068652634508907795, 0.011540778912603855, 0.013535882346332073, -0.014160365797579288, 0.00031629682052880526, -0.03604161739349365, 0.020989133045077324, 0.014557764865458012, 0.021962353959679604, 0.010964957065880299, -0.022838253527879715, -0.023535728454589844, -0.040777962654829025, 0.0007653977954760194, 0.018345216289162636, 0.06630878895521164, -0.01514169666916132, 0.009788981638848782, -0.017728842794895172, 0.00014953136269468814, 0.02778545953333378, -0.00011880139209097251, -0.0026885231491178274, -0.01696648634970188, 0.012238254770636559, 0.030656462535262108, 0.004671460948884487, -0.04528721794486046, 0.005831215996295214, 0.035782091319561005, 0.007866869680583477, -0.001680833869613707, 0.027444832026958466, -0.018718283623456955, 0.02861269749701023, 0.026731137186288834, 0.005494643934071064, 0.0325055830180645, -0.006601682398468256, 0.02222188003361225, 0.006849043071269989, 0.040129147469997406, 0.0035786149092018604, -0.007801988627761602, 0.030461817979812622, 0.007120733615010977, -0.006877428386360407, -0.007372149266302586, -0.01711246930062771, -0.003499540500342846, 0.0056568472646176815, -0.016642078757286072, -0.02379525452852249, -0.01227069552987814, -0.03678775578737259, 0.024346746504306793, 0.0189615897834301, -0.002431025030091405, -0.009594337083399296, 0.01907513290643692, -0.003882746445015073, -0.03824758529663086, 0.013381789438426495, 0.021816371008753777, -6.231528823263943e-05, 0.004837719723582268, 0.008122340776026249, 0.021637948229908943, -0.025336187332868576, 0.005587910767644644, 0.017809944227337837, -0.02914796955883503, -0.03347880393266678, -0.0289857666939497, -0.024184541776776314, -0.04593603312969208, -0.0021309484727680683, 0.0422702319920063, -0.031516142189502716, -0.010875744745135307, 0.008515683934092522, -0.015482324175536633, 0.027169086039066315, 0.016869165003299713, 0.008556234650313854, 0.010478346608579159, 0.015539095737040043, 0.009432134218513966, 0.014671307057142258, 0.008945522829890251, 0.005737949162721634, 0.014760518446564674, -0.012546440586447716, 0.0232924222946167, -0.000316043384373188, -0.04544942080974579, -0.02606610395014286, 0.01200305949896574, 0.0032643454615026712, 0.0028101757634431124, 0.004460596479475498, -0.008162891492247581, 0.06309716403484344, -0.028207188472151756, -0.014784849248826504, 0.00875087920576334, -0.008896862156689167, -0.026374289765954018, -0.017404435202479362, 0.006763886194676161, 0.047168780118227005, -0.014638866297900677, 0.02715286612510681, -0.020940473303198814, 0.011581330560147762, -0.01473618857562542, 0.0062286145985126495, 0.008621116168797016, 0.006735500413924456, 0.030802445486187935, 0.008402141742408276, -0.0029622414149343967, 0.03944789245724678, -0.024200763553380966, 0.037144601345062256, 0.023827694356441498, -0.00560818612575531, -0.007972301915287971, -0.0018116104183718562, 0.0035887525882571936, -0.00699097104370594, 0.0390261635184288, -0.009472684934735298, 0.0219461340457201, 0.011662431992590427, -0.02102157473564148, 0.005855546332895756, 0.021151337772607803, -0.01172731351107359, 0.021037794649600983, 0.02715286612510681, -0.005664957221597433, 0.030299615114927292, -0.00021960833691991866, 0.018069470301270485, 0.02579035796225071, -0.009578117169439793, -0.037144601345062256, 0.03282998874783516, -0.0036657992750406265, -0.036820195615291595, -0.026617595925927162, -0.01810191199183464, -0.02741239219903946, -0.008710328489542007, -0.04243243485689163, 0.016504205763339996, -0.03299219161272049, 0.021151337772607803, -0.010251261293888092, 0.013227695599198341, -0.0008312929421663284, -0.008312929421663284, 0.003882746445015073, -0.013527772389352322, 0.028904665261507034, -0.01054322812706232, -0.012984390370547771, 0.029715681448578835, -0.03581453487277031, 0.0038361127953976393, -0.0002896853256970644, 0.02622830681502819, -0.047817591577768326, 0.05012088268995285, 0.045384541153907776, 0.008685997687280178, -0.040226470679044724, -0.006078576203435659, 0.006151567678898573, 0.0072545516304671764, 0.010835194028913975, -0.01278974674642086, -0.017242232337594032, -0.01115960069000721, 0.03555500879883766, 0.00448492681607604, 0.0023458681534975767, 0.019204894080758095, 0.016058146953582764, 0.00012545427307486534, -0.019091352820396423, -0.004476816859096289, -0.01051078736782074, 0.0455143041908741, 0.0071328990161418915, -0.03918836638331413, -0.0037773142103105783, 0.004209180828183889, 0.00028258890961296856, 0.03458178788423538, 0.026406729593873024, -0.00600152974948287, -0.017680181190371513, -0.012376127764582634, 0.045708946883678436, -0.005928538274019957, 0.03678775578737259, -0.03386809304356575, 0.005068859551101923, -0.012773525901138783, 0.013073602691292763, -0.023633049800992012, -0.025384848937392235, -0.020940473303198814, -0.007801988627761602, -0.015603977255523205, 0.017582859843969345, -0.0011404934339225292, -0.007501911837607622, 0.04025891050696373, 0.032310936599969864, 0.020616065710783005, -0.01879938691854477, 0.010875744745135307, 0.005863656755536795, -0.02090803161263466, 0.023746592923998833, -0.016869165003299713, 0.019302217289805412, 0.009448354132473469, 0.010689211077988148, 0.005340550560504198, -0.005782554857432842, -0.024573830887675285, -0.007501911837607622, 0.014833510853350163, -0.01075409259647131, -0.016723182052373886, 0.009934964589774609, 0.007826318964362144, 0.0018998085288330913, -0.002670275280252099, 0.004857995081692934, 0.01944820024073124, 0.014160365797579288, -0.02270849049091339, -0.01514169666916132, -0.01977260783314705, 0.003696212312206626, -0.06491383910179138, -0.0029541312251240015, 0.012084160931408405, 0.03158102184534073, -0.015101145952939987, 0.00899418443441391, -0.05368936061859131, -0.006431369110941887, 0.0085319047793746, -0.01587972231209278, 0.013179034925997257, -0.02199479565024376, 0.009407803416252136, -0.002747321967035532, 0.015741849318146706, -0.03409517556428909, -0.017404435202479362, -0.008977963589131832, -0.008000687696039677, -0.020145675167441368, -0.007266717031598091, -0.030575361102819443, -0.0024675207678228617, -0.019204894080758095, -0.031013309955596924, 0.0050526391714811325, 0.01879938691854477, -0.040291350334882736, 0.0006229628343135118, 0.005279724020510912, -0.01351966243237257, 0.031191734597086906, 0.01810191199183464, -0.008880642242729664, -0.020616065710783005, 0.006763886194676161, 0.04233511537313461, 0.013081712648272514, 0.006569242104887962, -0.008945522829890251, 0.005932593252509832, -0.020502522587776184, -0.018783165141940117, 0.02921285107731819, 0.013422340154647827, 0.010048506781458855, 0.008475133217871189, -0.0038786912336945534, -0.018004588782787323, 0.005182401742786169, 0.012473449110984802, 0.03386809304356575, -0.0025709255132824183, 0.017193570733070374, 0.015798620879650116, -0.002712853718549013, 0.04655240476131439, 0.0028284236323088408, -0.025449730455875397, 0.001342233968898654, -0.04512501507997513, -0.03370588645339012, -0.0035096784122288227, 0.0170638095587492, 0.012351796962320805, -0.02270849049091339, 0.010316142812371254, -0.009772760793566704, -0.018053250387310982, 0.021929914131760597, -0.014646976254880428, 0.018604742363095284, 0.02849915623664856, 0.037404127418994904, 0.0039395177736878395, -0.029066868126392365, 0.0037083777133375406, 0.009610557928681374, -0.014914612285792828, 0.008345370180904865, 0.004902600776404142, -0.012067941017448902, 0.01886426843702793, -0.004197015892714262, 0.013146594166755676, 0.009683549404144287, -0.007116678636521101, 0.00014522283163387328, -0.022903135046362877, 0.014638866297900677, -0.001010730629786849, -0.008864421397447586, -0.010599998757243156, -0.03127283602952957, -0.016836723312735558, -0.00020947061420883983, -0.008081790059804916, -0.020437641069293022, -0.010405355133116245, -0.023211320862174034, -0.01696648634970188, -0.0014496938092634082, 0.0076722255907952785, -0.036755312234163284, -0.005308109801262617, -0.020680947229266167, 0.005470313131809235, 0.005555470008403063, -0.013665645383298397, -0.014022492803633213, -0.015563426539301872, 0.014209027402102947, -0.012343687005341053, -0.02866135910153389, 0.0006412107031792402, -0.007193725556135178, -0.005871766712516546, -0.005664957221597433, 0.002364116022363305, -0.02665003575384617, 0.0028324786107987165, -0.01858852244913578, 0.00708423787727952, -0.015393112786114216, -0.03918836638331413, 0.07299157977104187, 0.006147512700408697, 0.02937505394220352, 0.007534352596849203, 0.00038497988134622574, -0.019383318722248077, -0.0004663350700866431, -0.015393112786114216, -0.008758989162743092, 0.0351981595158577, 0.009707879275083542, -0.0035806423984467983, 0.027347510680556297, 0.016658300533890724, -0.032100073993206024, 0.0018562163459137082, 0.029683241620659828, -0.010332363657653332, -0.027379952371120453, 0.007299157790839672, 0.0075262426398694515, -0.010372914373874664, -0.009570007212460041, 0.0029885994736105204, 0.005462203174829483, 0.008110174909234047, 0.0002671288966666907, -0.02345462702214718, -0.00040931039256975055, 0.01051078736782074, -0.0007942902739159763, 0.004201070871204138, -0.018831826746463776, -0.0027229913976043463, -0.07117489725351334, -0.008053404279053211, -0.008223718032240868, 0.027947664260864258, -0.0052310628816485405, -0.003604972967877984, 0.007899310439825058, 0.00395573815330863, -0.019756386056542397, 0.008049349300563335, -0.0018339133821427822, -0.006642233580350876, 0.012684313580393791, 0.011305584572255611, 0.0028730295598506927, 0.010421575047075748, -0.006123182363808155, -0.014184696599841118, 0.01831277646124363, -0.004610634408891201, -0.0004361753526609391, 0.0010304991155862808, 0.0273637305945158, -0.024071000516414642, -0.018556080758571625, 0.042562197893857956, -0.009861973114311695, -0.010324252769351006, -0.027655698359012604, -0.009886303916573524, 0.0026682475581765175, -0.00433488842099905, -0.008321039378643036, -0.0007319432916119695, 0.004192960448563099, -0.0011161628644913435, 0.012668093666434288, 0.016788063570857048, 0.012814076617360115, 0.00978087168186903, 0.020632285624742508, 0.01021071057766676, -0.01956174336373806, -0.003418438835069537, -0.016269011422991753, -0.0203078780323267, -0.004780948162078857, -0.02444406785070896, -0.005766334477812052, 0.017161130905151367, 0.0020609982311725616, 0.009059065952897072, 0.01392517052590847, -0.021427083760499954, 0.016017595306038857, 0.006159678101539612, 0.014582094736397266, -0.016609638929367065, 0.01324391644448042, -0.006958530284464359, 0.0801934152841568, 0.011175821535289288, -0.007193725556135178, -5.103707735543139e-05, -0.014947053045034409, 0.0014922722475603223, 0.0254659503698349, 0.039966944605112076, 0.029975207522511482, -0.007550572976469994, 0.0035035957116633654, -0.00510535528883338, 0.004979647696018219, 0.04204314947128296, 0.01054322812706232, -0.004724177066236734, 0.014079264365136623, 0.004630910232663155, 0.012570771388709545, 0.007286992389708757, -0.0016696823295205832, 0.012043610215187073, -0.000498015433549881, -0.013811628334224224, -0.005421651992946863, -0.031126853078603745, -0.012895178981125355, -0.01519846823066473, -0.0068652634508907795, 0.005551415029913187, 0.028466714546084404, 0.011629991233348846, 0.030332054942846298, 0.02470359392464161, -0.005786609835922718, 0.04995867982506752, -0.0024553555995225906, 0.015603977255523205, -0.031889207661151886, -0.00211270060390234, 0.003706349991261959, -0.016114918515086174, 0.0011050113243982196, -0.01745309680700302, 0.00010422842024127021, 0.001451721414923668, 0.02058362402021885, 0.013471000827848911, -0.024071000516414642, -0.023470846936106682, -0.0016017595771700144, 0.005247283261269331, -0.030380716547369957, -0.011670541949570179, -0.010356693528592587, -0.0007197780651040375, -0.01685294322669506, -0.001649406854994595, -0.01297628041356802, 0.0030757838394492865, -0.0016412966651841998, 0.024638712406158447, 0.005393266677856445, -0.04755806922912598, 0.004002371337264776, 0.007453251164406538, -0.0069544753059744835, -0.007895255461335182, 0.006532745901495218, 0.0284504946321249, 0.014111705124378204, -0.010040396824479103, -0.002222188049927354, 0.01127314381301403, -0.02275715209543705, 0.005287834443151951, 0.02486579678952694, -0.022984236478805542, 0.008114229887723923, -0.04746074602007866, 0.009488904848694801, 0.005973143968731165, 0.009156388230621815, 0.008402141742408276, -0.012019279412925243, -0.015166027471423149, 0.005186457186937332, -0.01443611178547144, 0.0157094094902277, -0.026260746642947197, 0.006370542570948601, -0.01319525483995676, 0.025693034753203392, -0.010048506781458855, -0.021978575736284256, -0.017566639930009842, -0.014306348748505116, -0.003463044762611389, 0.005368935875594616, -0.018929148092865944, -0.01124070305377245, 0.005916372872889042, 0.004979647696018219, -0.005482478532940149, 0.02064850553870201, 0.007923641242086887, -0.01766396127641201, -0.001986993011087179, 0.00025141541846096516, -0.01194628793746233, -0.0012104436755180359, 0.0002137791452696547, 0.014054933562874794, -0.014322569593787193, 0.021978575736284256, -0.0058028302155435085, 0.0058677117340266705, -0.014338789507746696, 0.019918590784072876, 0.0005788637790828943, -0.0077371071092784405, -0.0010391161777079105, 0.015368781983852386, 0.036106500774621964, -0.007015301380306482, -0.00761139951646328, 0.01541744265705347, 0.016187909990549088, -0.006224559620022774, 0.0008328136173076928, 0.037631213665008545, 0.011556999757885933, -0.010591888800263405, 0.00807367917150259, 0.02264360897243023, -0.007112623658031225, 0.030964648351073265, 0.015798620879650116, -0.025774136185646057, -0.017307113856077194, 0.0006498277653008699, 0.004310558084398508, 0.012481559999287128, 0.008211552165448666, -0.004890435840934515, -0.00341235613450408, -0.04035622999072075, 0.03158102184534073, 0.012173373252153397, -0.004902600776404142, -0.0004326271591708064, 0.0022140778601169586, -0.004069280344992876, -0.0076154544949531555, -0.004801223520189524, -0.013779187574982643, -0.012059830129146576, -0.0007659046677872539, 0.012741085141897202, 0.004168630111962557, 0.024298084899783134, -0.008069624193012714, -0.008329150266945362, -0.029780562967061996, 0.0039983163587749004, -9.865267929853871e-05, 0.00757084833458066, -0.04220535233616829, -0.020989133045077324, 0.017047587782144547, 0.011265032924711704, -0.00017221449525095522, -0.0012682286323979497, -0.013414230197668076, 0.004870160017162561, -0.006703059654682875, 0.03510084003210068, -0.025968780741095543, 0.03175944462418556, 0.001648393110372126, -0.014914612285792828, -0.010170159861445427, -0.03766365349292755, 0.016982706263661385, 0.04301637038588524, 0.01988614909350872, -0.019788827747106552, -0.018766945227980614, 5.502880594576709e-05, 0.026309408247470856, 0.013357458636164665, -0.01613924838602543, -0.011808414943516254, 0.03506839647889137, 0.0028649193700402975, 0.01364942453801632, -0.013381789438426495, -0.009351031854748726, 0.0029196629766374826, -0.007149119395762682, 0.00020959734683856368, 0.008856311440467834, 0.0016088560223579407, -0.022335423156619072, 0.03720948472619057, -0.021005352959036827, 0.0029825170058757067, -0.01522279903292656, -0.0028750570490956306, -0.014428001828491688, -0.009156388230621815, 0.01321958564221859, -0.009002294391393661, 0.004999923054128885, 0.014338789507746696, 0.01587972231209278, -0.015571536496281624, -0.0170638095587492, 0.007072072941809893, 0.0003943572810385376, 0.0015490434598177671, 0.006548966281116009, -0.04502769187092781, 0.03435470163822174, -0.003682019654661417, -0.0032825933303683996, 0.0006518553127534688, 0.0051094102673232555, 0.01988614909350872, 0.0008835021872073412, 0.01972394622862339, 0.010664880275726318, 0.022205660119652748, 0.0012114574201405048, 0.027023103088140488, -0.015741849318146706, -0.005506808869540691, -0.005616296548396349, 0.02231920138001442, -0.013754856772720814, 0.015052485279738903, 0.005843381397426128, -0.044995252043008804, 0.01468752697110176, -0.009164498187601566, -0.00031452273833565414, 0.003100114408880472, 0.00299265468493104, -0.007400535047054291, 0.00918071810156107, -0.011548889800906181, -0.007724941708147526, -0.02081071026623249, -0.00923748966306448, -0.0159770455211401, 0.022773372009396553, -0.008029073476791382, -0.011467787437140942, -0.010121498256921768, -0.017761284485459328, -0.0022566562984138727, -0.0019373181276023388, 0.013308797962963581, 0.010129609145224094, -0.03315439447760582, 0.009091506712138653, 0.009302371181547642, 0.00060978380497545, 0.01759907975792885, -0.008629226125776768, -0.030980870127677917, 0.023487066850066185, -0.003373832907527685, 0.014363120310008526, -0.0033900532871484756, 0.005304054357111454, -0.009407803416252136, -0.012124711647629738, 0.027266409248113632, 0.0008708300883881748, 0.02356816828250885, 0.017955927178263664, -0.01119204144924879, 0.017371995374560356, 0.013170924969017506, 0.013479110784828663, -0.004760672803968191, 0.02421698346734047, 0.04856372997164726, -0.021329760551452637, -0.007712776772677898, -0.006800381932407618, 0.025644373148679733, -0.001992061734199524, 0.005940703209489584, 0.008588675409555435, 0.00045188883086666465, 0.0056568472646176815, -0.03857199475169182, -0.036333583295345306, 0.012854627333581448, -0.0058677117340266705, -0.0064962501637637615, 0.015433663502335548, 4.1311206587124616e-05, 0.00918071810156107, 0.015376891940832138, -0.018085690215229988, 0.002191774779930711, -0.019383318722248077, 0.002197857480496168, 0.00268244044855237, -0.015409332700073719, -0.01519846823066473, -0.030250953510403633, 0.002848698990419507, 0.009286150336265564, 0.008122340776026249, 0.014744298532605171, -0.00732754310593009, -0.0037448734510689974, 0.00818316638469696, -0.012943839654326439, -0.01148400828242302, -0.0035461741499602795, 0.003278538351878524, -0.002155279042199254, 0.007193725556135178, 0.008442692458629608, -0.025433508679270744, 0.009488904848694801, -0.000824196555186063, 0.021362202242016792, 0.0052310628816485405, 0.006143457721918821, -0.005721728783100843, -0.025449730455875397, 0.02134598046541214, -0.024784695357084274, 0.02188125252723694, -0.012278805486857891, -0.0027554319240152836, -0.002893304917961359, 0.0205998457968235, -0.005596020724624395, 0.018653402104973793, 0.002495906315743923, 0.027379952371120453, -0.0016767787747085094, -0.018734505400061607, -0.040713079273700714, -0.001977869076654315, 0.014217137359082699, -0.0230328980833292, -0.007664115633815527, -0.025530831888318062, -0.0029318283777683973, 0.024638712406158447, -0.018231673166155815, 0.03007252886891365, -0.016609638929367065, 0.002220160560682416, 0.002064039697870612, -0.023746592923998833, -0.013698086142539978, 0.011094720102846622, -0.010324252769351006, 0.012546440586447716, 0.014079264365136623, 0.015157917514443398, -0.006370542570948601, 0.00272907386533916, -0.01722601242363453, 0.004399769939482212, 0.031224174425005913, -0.015920273959636688, 0.001748756505548954, -0.009205048903822899, 0.008848201483488083, -0.0007795905694365501, -0.03166212514042854, -0.02157306671142578, -0.007128844037652016, -0.0005190512165427208, -0.023341083899140358, -0.01227069552987814, 0.016220349818468094, -0.024963119998574257, 0.00521484250202775, 0.022335423156619072, 0.0025384847540408373, -0.006905814167112112, 0.021329760551452637, -0.0008454857743345201, 0.012084160931408405, 0.013641314581036568, -0.01810191199183464, 0.003815837437286973, -0.02919663116335869, 0.01755042001605034, 0.014444221742451191, -0.017842385917901993, -0.021005352959036827, 0.004643075168132782, -0.003815837437286973, 0.018166791647672653, 0.008523793891072273, -0.019869929179549217, -0.022286761552095413, -0.022513845935463905, 0.001891698339022696, -0.017923487350344658, -0.016171690076589584, 0.010113388299942017, 0.0035117059014737606, -0.03669043257832527, -0.008734658360481262, 0.013170924969017506, 0.01124070305377245, -0.002078232355415821, 0.02921285107731819, -0.03125661611557007, -0.01172731351107359, 0.018020808696746826, 0.030315835028886795, -0.006767941173166037, 0.002518209395930171, 0.01886426843702793, 0.009140167385339737, 0.03380320966243744, -0.0026256691198796034, 0.020113235339522362, -0.014428001828491688, -0.019042691215872765, 0.010364803485572338, -0.02486579678952694, -0.02037275955080986, -0.012935729697346687, 0.020664727315306664, 0.01729089394211769, 0.0031285001896321774, -0.028093647211790085, -0.04136189445853233, -0.0014233357505872846, -0.015530985780060291, -0.014801070094108582, 0.007323488127440214, 0.007319433148950338, 0.0021755544003099203, -0.017047587782144547, 0.0028122032526880503, -0.003081866540014744, 0.007607344537973404, 0.019918590784072876, -0.0029784617945551872, 0.004355164244771004, 0.003913159482181072, 0.007927696220576763, -0.01875072531402111, 0.009440244175493717, -0.010007956065237522, -0.014144145883619785, 0.00356239452958107, -0.006029915064573288, 0.006289440672844648, 0.017047587782144547, -0.0029764343053102493, -0.0071653397753834724, -0.007128844037652016, -0.021054014563560486, -0.0003923297335859388, -0.0022039401810616255, -0.0025121266953647137, 0.014825399965047836, 0.006893648765981197, 0.0013320962898433208, 0.004298392683267593, -0.01118393149226904, -0.00633810181170702, -0.015003823675215244, 0.0019058912293985486, 0.011800304986536503, -0.02502800151705742, -0.006447589490562677, 0.002331675263121724, 0.09063931554555893, 0.02189747244119644, 0.010794643312692642, 0.005190512165427208, -0.0017720733303576708, -0.02356816828250885, -0.015149807557463646, 0.003463044762611389, 0.02666625566780567, -0.008807649835944176, -0.006224559620022774, -0.01170298270881176, 0.011581330560147762, -0.005275669042021036, -0.025222644209861755, 0.0023032897152006626, 0.018280334770679474, 0.022659828886389732, -0.001823775703087449, 0.01847497932612896, 0.0065286909230053425, -0.001100956229493022, -0.008799539878964424, 0.015457994304597378, 0.0019069049740210176, 0.018815606832504272, -0.005186457186937332, -0.006451644469052553, 0.020891811698675156, 0.02650405280292034, -0.0016200074460357428, -0.019853709265589714, -0.011232593096792698, 0.005466258153319359, 0.00019882601918652654, 0.009675439447164536, 0.0007522187661379576, 0.013568323105573654, -0.010705430991947651, 0.008475133217871189, 0.0005895083886571229, 0.0061718435026705265, 0.03203519061207771, 0.015733739361166954, -0.019545521587133408, -0.003367750206962228, 0.005409487057477236, -0.004024674650281668, 0.003452907083556056, 0.005389211233705282, 0.004089555703103542, -0.02747727371752262, 0.009010404348373413, 0.017696402966976166, 0.016171690076589584, -0.008685997687280178, -0.005381101276725531, -0.01658530905842781, 0.0015470159705728292, 0.003917214460670948, -0.020843150094151497, 0.011857076548039913, -0.0009336839430034161, -0.01248966995626688, -0.01227069552987814, -0.016885384917259216, -0.00875087920576334, -0.02715286612510681, -0.006609792821109295, -0.0002615531557239592, -0.022416524589061737, -0.0034792651422321796, 0.0025141544174402952, -0.00850757397711277, 0.008353480137884617, 0.02465493232011795, 0.005827161017805338, 0.01024315133690834, 0.019805047661066055, 0.014152255840599537, 0.005158071406185627, 0.00942402333021164, -0.004890435840934515, -0.0014659141888841987, -0.01275730598717928, 0.006569242104887962, 0.005462203174829483, -0.016885384917259216, -0.0029176354873925447, -0.022951796650886536, -0.009545676410198212, -0.005081024952232838, 0.0015297818463295698, 0.01473618857562542, -0.003748928429558873, -0.006102907005697489, -0.009156388230621815, -0.013592653907835484, 0.018880488350987434, -0.00536488089710474, 0.028482934460043907, 0.015068705193698406, -0.008118285797536373, -0.005003978032618761, -0.008596785366535187, 0.016674520447850227, 0.012278805486857891, -0.0065043605864048, 0.003335309447720647, -0.0017447014106437564, 0.002881139749661088, -0.012019279412925243, -0.00152775424066931, 0.016950266435742378, -0.02893710508942604, 0.0038766637444496155, 0.015855392441153526, -0.0037245978601276875, -0.017631521448493004, 0.0031832437962293625, -0.02822341024875641, 0.01197872869670391, -0.0056892880238592625, -0.007980412803590298, 0.005839325953274965, -0.0022059676703065634, -0.01782616600394249, -0.006301606073975563, -0.02189747244119644, -0.009586227126419544, 0.007505967281758785, 0.013625094667077065, 0.008004742674529552, -0.007607344537973404, 0.010372914373874664, 0.007530297618359327, 0.013114153407514095, -0.012392347678542137, 0.014452332630753517, -0.004663350526243448, 0.022335423156619072, 0.0013939363416284323, 0.014371230266988277, 0.020356539636850357, -0.015060595236718655, 0.0011394795728847384, -0.006155623123049736, -0.029407495632767677, 0.0029865719843655825, 0.0012702562380582094, 0.030591581016778946, -0.02541728876531124, 0.008361591026186943, 0.014014382846653461, 0.007546517997980118, 0.007980412803590298, -0.011500228196382523, 0.036982398480176926, -0.023146439343690872, -0.006516525987535715, -0.0015267404960468411, -0.025011779740452766, -0.014606425538659096, 0.005559524986892939, -0.010202600620687008, 0.0009098603040911257, 0.018085690215229988, 0.02171904966235161, 0.025644373148679733, -0.0004949741414748132, -0.005154016427695751, 0.015579646453261375, 0.011613771319389343, -0.010364803485572338, 0.00287911226041615, 0.0024350800085812807, 0.0032602904830127954, -0.00398209597915411, -0.011467787437140942, 0.017144910991191864, 0.003929379861801863, 0.005810940638184547, 0.000588494585826993, 0.0058352709747850895, 0.01810191199183464, -0.01121637225151062, 0.010527007281780243, -0.01493083219975233, -0.002718936186283827, -0.005664957221597433, -0.008653556928038597, 0.016114918515086174, 0.008179111406207085, -0.02454139105975628, -0.00723427627235651, -0.017047587782144547, 0.014241467230021954, 0.016293341293931007, 0.021524405106902122, -0.008929302915930748, -0.0011029838351532817, 0.001460845349356532, 0.009529455564916134, 0.004578194115310907, -0.01690160483121872, -0.01988614909350872, -0.004188905470073223, -0.02763947658240795, -0.013057381846010685, -0.009440244175493717, -0.01400627288967371, -0.024914458394050598, 0.0139495013281703, 0.00966732855886221, -0.005097245331853628, 0.01766396127641201, 0.021151337772607803, 0.009123947471380234, 0.011784084141254425, 0.0044808718375861645, 0.013430450111627579, 0.0130087211728096, 0.02037275955080986, -0.012992500327527523, -0.012586992233991623, -0.011386686004698277, 0.021540625020861626, 0.01343856006860733, 0.008377810940146446, 0.002877084771171212, 0.006175898481160402, -0.021313540637493134, -0.025547051802277565, 0.022189440205693245, -5.3476469474844635e-05, 0.030088750645518303, 0.01291950885206461, 0.0033697776962071657, 0.020875591784715652, 0.010397244244813919, -0.02356816828250885, -0.008402141742408276, -0.02150818519294262, 0.006175898481160402, -0.003704322502017021, -0.00953756645321846, -0.007530297618359327, -0.0023925018031150103, 0.0015368781751021743, -2.9732029361184686e-05, -0.005669012665748596, -0.004776893183588982, -0.010608108714222908, 0.007372149266302586, 0.020551184192299843, -0.011589440517127514, -0.02134598046541214, -0.003596862778067589, 0.008848201483488083, -0.028645139187574387, 0.010810863226652145, -0.0029379110783338547, -0.015968935564160347, -0.00923748966306448, -0.004663350526243448, 0.018134351819753647, -0.030494259670376778, 0.006212394218891859, 0.009594337083399296, 0.010275592096149921, 0.013641314581036568, -0.013349348679184914, 0.010656770318746567, 0.00978087168186903, -0.0018156655132770538, 0.002067080931738019, 0.009440244175493717, -0.009683549404144287, -0.009140167385339737, 0.009497014805674553, -0.0014750381233170629, 0.017745062708854675, 0.005932593252509832, -0.02579035796225071, -0.00969976931810379, -0.022773372009396553, 0.0022242155391722918, 0.02155684493482113, 0.0012570772087201476, 0.022984236478805542, 0.003485347842797637, -0.005267558619379997, -0.0028730295598506927, -0.004387605004012585, -0.0013990051811560988, 0.0033474748488515615, 0.0024817136581987143, -0.008458912372589111, 0.015839172527194023, 0.01227069552987814, 0.010810863226652145, -0.005506808869540691, 0.004679570905864239, -0.02926151268184185, 0.005133741069585085, 0.0004648144240491092, 0.028807342052459717, 0.0022566562984138727, -0.004464651457965374, 0.02188125252723694, 0.006074521224945784, -0.004188905470073223, 0.008888752199709415, 0.011930068023502827, -0.007015301380306482, -0.0086697768419981, -0.00926993042230606, 0.024249423295259476, -0.014355010353028774, -0.005283778999000788, -0.0006853098166175187, 0.005823105573654175, 0.010235041379928589, 0.0020609982311725616, 0.008734658360481262, 0.01251400075852871, 0.00905095599591732, -0.005997474770992994, 0.007015301380306482, -0.03678775578737259, 0.007250496651977301, 0.006727390456944704, -0.03218117356300354, -0.01680428348481655, 0.0003340378461871296, 0.009975515305995941, 0.004261896945536137, -0.004789058584719896, -0.009529455564916134, 0.002806120552122593, -0.008458912372589111, 0.003913159482181072, -0.002769624814391136, -0.004655240569263697, -0.0008348411647602916, 0.011078499257564545, 0.012473449110984802, -0.007960136979818344, 0.0154417734593153, 0.034549348056316376, 0.008248047903180122, 0.007153174374252558, 0.020551184192299843, -0.009602447040379047, 0.0006883511086925864, -0.006642233580350876, 0.0069220345467329025, 0.028272069990634918, -0.01680428348481655, 0.00019299682753626257, -0.0151741374284029, -0.000665541272610426, -0.021816371008753777, -0.016609638929367065, 0.018280334770679474, 0.007136953994631767, 0.005137796048074961, -0.007270772010087967, -0.04136189445853233, 0.014776739291846752, -0.006820657290518284, 0.0021796096116304398, -0.019707726314663887, -0.006699004676192999, -0.023908795788884163, 0.011200152337551117, 0.005644681863486767, 0.016536647453904152, -0.011110940016806126, -0.0019748276099562645, 0.03613894060254097, -0.0017345637315884233, 0.0013452753191813827, -0.009351031854748726, 0.002102562924847007, 0.019269775599241257, 0.0021390586625784636, 0.022124558687210083, -0.018556080758571625, -0.011767864227294922, -0.007923641242086887, -0.006208339240401983, 0.004497092217206955, 0.004614689853042364, 0.010502676479518414, 0.024849576875567436, -0.02627696841955185, 0.019529301673173904, 0.0020417366176843643, 0.0058677117340266705, -0.00999984610825777, 0.005068859551101923, 0.019431980326771736, -0.0007623564451932907, 0.01803703047335148, -0.035619888454675674, 0.014046823605895042, -0.004452486056834459, 0.020956693217158318, -0.004853939637541771, -0.0014912585029378533, -0.00761139951646328, -0.023714153096079826, -0.0063745975494384766, 0.02590389922261238, 0.01389272976666689, 0.0017690319800749421, 0.01222203392535448, 0.00510535528883338, -0.012903288938105106, 0.009302371181547642, -0.0027534044347703457, 0.007359983865171671, 0.013170924969017506, 0.007992577739059925, -0.0031731061171740294, 0.01935087889432907, 0.008556234650313854, 0.0015003824373707175, -0.006857153028249741, -0.014460442587733269, -0.0032481250818818808, -0.004764727782458067, 0.013568323105573654, -0.02227054163813591, -0.00923748966306448, 0.03386809304356575, -0.012651873752474785, 0.007181560155004263, 0.00978087168186903, -0.01983748935163021, -0.011208262294530869, -0.015076816082000732, -0.002868974581360817, 0.007214000914245844, -0.012522110715508461, 0.009813312441110611, 0.020632285624742508, 0.004529532976448536, -0.0065286909230053425, -0.01054322812706232, 0.03159724175930023, -0.011127159930765629, -0.0003315033973194659, -0.017161130905151367, -0.003067673882469535, -0.010048506781458855, -0.005097245331853628, 0.02449272945523262, -0.05563580244779587, -0.0026195866521447897, -0.005664957221597433, 0.016277121379971504, -0.017469316720962524, -0.01972394622862339, 0.008227773010730743, 0.022075897082686424, 0.019756386056542397, -0.0104296850040555, 0.00224246340803802, -0.0205998457968235, 0.02021055668592453, 0.00761139951646328, -0.01826411485671997, -0.012376127764582634, 0.012570771388709545, -0.006427313666790724, 0.01392517052590847, 0.013446670956909657, -0.016228459775447845, 0.01024315133690834, 0.01340611930936575, -0.011508339084684849, 0.0023580335546284914, 0.04470328614115715, -0.010827084071934223, -0.00012260304356459528, 0.015563426539301872, -0.009715990163385868, -0.0027878726832568645, 0.009334811940789223, 0.009829532355070114, 0.001298641785979271, -0.006634123157709837, 0.004379494581371546, 0.00373879075050354, -0.00921315886080265, 0.020453860983252525, -0.009659218601882458, 0.007684390991926193, 0.005871766712516546, 0.0030514535028487444, -0.0004399770114105195, 0.013365568593144417, 0.018702063709497452, -0.009407803416252136, -0.021540625020861626, 0.008499464020133018, 0.01858852244913578, -0.003572532208636403, 0.0009301357204094529, -0.018734505400061607, -0.009805201552808285, 0.006411093287169933, -0.006033970508724451, 0.024476509541273117, 0.015514764934778214, 0.006313771475106478, 0.014517213217914104, 0.011281253769993782, 0.004716067109256983, -0.02102157473564148, -0.009326701052486897, -0.003154858248308301, 0.005798775237053633, 0.006038025487214327, 0.025985000655055046, -0.0023276202846318483, -0.007214000914245844, -0.022351643070578575, -0.01680428348481655, 0.006102907005697489, 0.011175821535289288, -0.01972394622862339, 0.017242232337594032, 0.009391582570970058, 0.016390664502978325, 0.01690160483121872, 0.019253555685281754, -0.01771262288093567, 0.009448354132473469, -0.009302371181547642, -0.007757382467389107, -0.0028872224502265453, -0.006763886194676161, -0.02562815323472023, 0.014136034995317459, 0.013454780913889408, -0.012019279412925243, -0.009432134218513966, -0.007870924659073353, -0.0013280411949381232, 0.014776739291846752, -0.007019356824457645, 0.015149807557463646, -0.021037794649600983, -0.0005372990854084492, 0.017842385917901993, 0.006873373407870531, 0.004067252855747938, 0.006305661052465439, -0.009594337083399296, 0.0023701987229287624, -0.003736763261258602, -0.03354368358850479, -0.0024654932785779238, 0.020940473303198814, -0.0005611227243207395, -0.007607344537973404, 0.020356539636850357, -0.004578194115310907, 0.00926182046532631, -0.00823993794620037, 0.00746136112138629, 0.0074694715440273285, -0.006670618895441294, -0.033138174563646317, -0.005806885659694672, 0.018166791647672653, -0.028401833027601242, -0.00016866630176082253, -0.016260901466012, -0.02752593532204628, -0.0017122607678174973, -0.004699846729636192, 0.016058146953582764, 0.004926931578665972, 0.006423258688300848, 0.021605506539344788, -0.014176586642861366, 0.01884804666042328, -0.0077371071092784405, -0.012814076617360115, -0.005170236807316542, 0.020064573734998703, 0.0005596021073870361, 0.0019363043829798698, -0.0057136183604598045, -0.011954397894442081, -0.024508949369192123, -0.02025921829044819, 0.006188063882291317, 0.00551491929218173, 0.001362509443424642, 0.01647987589240074, 0.006431369110941887, 0.003465072251856327, -0.013422340154647827, -0.011110940016806126, 0.002398584270849824, 0.001967731164768338, -0.00845080241560936, 0.019869929179549217, -0.01673940196633339, 0.0016960403881967068, 0.0018156655132770538, -0.004553863313049078, -0.005997474770992994, 0.014914612285792828, -0.0004683626175392419, -0.013471000827848911, 0.0026560823898762465, -0.0008900917018763721, 0.0014567902544513345, 0.012603212147951126, -0.00248576863668859, -0.005125630646944046, 0.008138560689985752, 0.017582859843969345, -0.018215453252196312, 0.005847436375916004, 0.006021805107593536, 0.01091629546135664, -0.027444832026958466, -0.0010847359662875533, -0.011119049973785877, -0.03203519061207771, -0.009586227126419544, 4.536629421636462e-05, -0.024184541776776314, -0.0005428748554550111, -0.014127925038337708, -0.0030656461603939533, 0.018328996375203133, 0.01164621114730835, -0.00877521000802517, 0.0025263195857405663, 0.0018724367255344987, 0.0039334348402917385, 0.0023478956427425146, 0.00011677385191433132, 0.021443303674459457, -0.018815606832504272, 0.014136034995317459, 0.004087528213858604, -0.008880642242729664, 0.0056244065053761005, -0.019302217289805412, 0.028596477583050728, -0.001342233968898654, -0.01273297518491745, -0.013308797962963581, -0.00574200414121151, 0.012400457635521889, -0.0025121266953647137, -0.025547051802277565, 0.0076722255907952785, 0.023341083899140358, -0.005450037773698568, -0.006054245866835117, 0.008921192958950996, -0.000571767333894968, -0.016934046521782875, 0.02937505394220352, 0.00472823204472661, 0.006658453959971666, 0.0027736800257116556, -0.006938254926353693, 0.006289440672844648, -0.014014382846653461, -0.004105776082724333, 0.0030960594303905964, 0.004549808334559202, -0.01831277646124363, -1.4303687748906668e-05, 0.010908185504376888, -0.008831980638206005, -0.008061514236032963, 0.002684467937797308, 0.005425707437098026, 0.00026079281815327704, -0.003067673882469535, -0.023925017565488815, -0.02699066326022148, 0.00674766581505537, -0.010445905849337578, 0.00448492681607604, -0.00551491929218173, -0.011613771319389343, -0.025985000655055046, -0.0015987183433026075, 0.011354245245456696, 0.02585523948073387, 0.0017741008196026087, -0.009683549404144287, -0.0023580335546284914, 0.008742769248783588, 0.004655240569263697, -0.006159678101539612, 0.0017568666953593493, 0.008661666885018349, -0.008685997687280178, 0.009034735150635242, 0.003418438835069537, -0.01045401580631733, -0.03072134405374527, -0.011865186505019665, -6.367754394887015e-05, -0.025822797790169716, 0.009326701052486897, 0.012303135357797146, 0.011792195029556751, 0.005896097514778376, 0.0015713464235886931, -0.004121996462345123, -0.016236571595072746, -0.0031406653579324484, 0.00274934945628047, -0.0026966333389282227, 0.006021805107593536, 0.028693800792098045, -0.0021816371008753777, -0.017631521448493004, 0.00899418443441391, -0.008004742674529552, 0.0018126241629943252, 0.014030602760612965, -0.0027087985072284937, 0.020291658118367195, 0.020762048661708832, -0.0351981595158577, -0.037144601345062256, -0.005920427851378918, -0.0063178264535963535, 0.02519020438194275, -0.008823870681226254, -0.010818974114954472, 0.013754856772720814, -0.01565263792872429, 0.009367252700030804, -0.009983625262975693, -0.011824635788798332, 0.02856403775513172, -0.011419126763939857, 0.0023722262121737003, 0.00525539368391037, 0.02238408289849758, -0.011857076548039913, -0.006999081000685692, 0.0017964037833735347, 0.021151337772607803, 0.004553863313049078, -0.014541544020175934, 0.012570771388709545, 0.008807649835944176, 0.003341392148286104, 8.724774670554325e-05, -0.0154417734593153, -0.01424957811832428, 0.023714153096079826, -0.001100956229493022, -0.0008069624309428036, 0.00024964133626781404, -0.036755312234163284, -0.01143534667789936, -0.011784084141254425, -0.021605506539344788, 0.010810863226652145, 0.00015903546591289341, 0.007866869680583477, 0.008296709507703781, -0.014460442587733269, -0.016244681552052498, -0.008337260223925114, -0.034160058945417404, 0.007879035547375679, 0.015685079619288445, 0.01222203392535448, 0.005218897946178913, 0.009505125693976879, 0.022173218429088593, 0.00395573815330863, -0.016723182052373886, -0.0056000761687755585, 0.027882782742381096, 0.01501193456351757, 0.012319356203079224, -0.016885384917259216, -0.028904665261507034, -0.011224482208490372, 0.0007010232657194138, 0.004517367575317621, -0.013633204624056816, -0.015312010422348976, 0.00560818612575531, 0.007712776772677898, -0.006232669577002525, 0.012076050974428654, -0.0005362853407859802, -0.00095142493955791, 0.0028081482741981745, 0.010681101121008396, -0.013552103191614151, 0.0030940319411456585, 0.013884619809687138, -0.019204894080758095, 0.0024492728989571333, -0.009618667885661125, -0.002406694460660219, 0.010470236651599407, -0.02025921829044819, 0.009075285866856575, 0.011443457566201687, -0.004205125849694014, -0.016820503398776054, 0.01145967748016119, -0.010648660361766815, 0.003385998075827956, -0.006861208006739616, -0.021540625020861626, 0.00017018696235027164, 0.0007187642622739077, -0.014338789507746696, 0.004411935340613127, 0.00978087168186903, -0.01075409259647131, -0.0004607593291439116, -0.002558760344982147, 0.0203078780323267, -0.0006873373640701175, 0.013016831129789352, -1.0763405953184702e-05, -0.0007126816199161112, -0.00809800997376442, -0.005989364348351955, 0.0009914688998833299, 0.011897627264261246, -0.00020427504205144942, -0.013779187574982643, -0.029245290905237198, 0.0005585883045569062, 0.0004399770114105195, 0.00032770176767371595, 0.00639487337321043, 0.0008647474460303783, 0.014355010353028774, 0.006658453959971666, -0.0016514344606548548, 0.0032582629937678576, -0.014638866297900677, 0.01647176593542099, 0.02308155782520771, -0.016723182052373886, 0.02129732072353363, -0.002065053442493081, -0.004351108800619841, -0.015166027471423149, 0.00549869891256094, -0.01248966995626688, -0.004797168541699648, -0.012238254770636559, -0.003629303304478526, -0.007161284796893597, -0.003959793131798506, -0.001955565996468067, 0.011589440517127514, 0.0032521802932024, 0.00027245120145380497, -0.009156388230621815, 0.015993265435099602, -0.015182248316705227, 0.009659218601882458, -0.0086697768419981, 0.011873296461999416, -0.040388673543930054, 0.002232325728982687, 0.02942371554672718, 0.00525539368391037, 0.008856311440467834, 0.033186838030815125, 0.00969976931810379, 0.008223718032240868, 0.010308032855391502, 0.0006067424546927214, -0.011046058498322964, 0.0024594105780124664, 0.027655698359012604, -0.004444376099854708, -0.015101145952939987, 0.0008966812747530639, 0.007497856859117746, -0.0026216141413897276, -0.010202600620687008, 0.013616983778774738, -0.024314304813742638, -0.008904972113668919, -0.027882782742381096, -0.013673755340278149, -0.007230221293866634, 0.02291935496032238, -0.015701299533247948, -0.008102064952254295, 0.010591888800263405, 0.003164995927363634, 0.01657719723880291, 0.011265032924711704, 0.012562661431729794, -0.005072914529591799, -0.00793986115604639, -0.01917245425283909, -0.010624329559504986, 0.030980870127677917, 0.017436876893043518, 0.029667021706700325, 0.010648660361766815, 0.01094873622059822, -0.014030602760612965, -0.006995026022195816, -0.0020103096030652523, -0.0015419470146298409, 0.008734658360481262, -0.012984390370547771, 0.016601528972387314, -0.016260901466012, -0.003969930578023195, -0.007441085763275623, 0.015579646453261375, -0.0015510710654780269, 0.006013695150613785, 0.008515683934092522, 0.020989133045077324, -0.007879035547375679, -0.009172608144581318, -0.022789591923356056, -0.010770312510430813, -0.008831980638206005, 0.011597550474107265, -0.007278882432729006, 0.00012101902393624187, -0.008896862156689167, -0.020080793648958206, 0.020502522587776184, -0.0021248660050332546, -0.0010847359662875533, 0.02449272945523262, 0.009642998687922955, 0.007522187661379576, -0.012846517376601696, -0.017404435202479362, -0.0097565408796072, -0.014947053045034409, -0.02361682988703251, 0.02069716714322567, -0.02319510094821453, 0.01967528462409973, -0.011848965659737587, 0.008888752199709415, -0.014136034995317459, -0.019594183191657066, -0.004703901708126068, 0.014452332630753517, 0.021216217428445816, -0.00078060437226668, 0.0009453422972001135, 0.01424957811832428, 0.02145952358841896, -0.023389745503664017, -0.0070112464018166065, -0.0049958680756390095, 0.008215607143938541, -0.004355164244771004, 0.013024941086769104, 0.0015784428687766194, -0.018556080758571625, 0.011808414943516254, 0.004606579430401325, 0.002605393761768937, 0.01300061121582985, 0.02016189508140087, -0.00648814020678401, -0.003286648541688919, -0.03879907727241516, -0.007428920362144709, 0.008065569214522839, -0.0165285374969244, -0.02097291313111782, 0.010624329559504986, 0.004318668507039547, 0.0031082245986908674, -0.006699004676192999, -0.000934697687625885, 0.03235960006713867, -0.007193725556135178, -0.010802753269672394, 0.023600609973073006, -0.00714100943878293, 0.01021071057766676, 0.001980910310521722, -0.00942402333021164, -0.0013097933260723948, 0.01319525483995676, -0.003890856634825468, -0.015571536496281624, 0.001977869076654315, -0.01091629546135664, 0.007185615133494139, 0.01673940196633339, 0.01771262288093567, 0.004294337704777718, -0.006893648765981197, 0.00708423787727952, 0.020356539636850357, 0.00235600583255291, -0.011094720102846622, -0.0030717288609594107, -0.005839325953274965, -0.0051742917858064175, -0.010259371250867844, -0.006025860086083412, -0.030250953510403633, 0.017972148954868317, -0.0011597550474107265, -0.007980412803590298, -0.005879877135157585, -0.020567404106259346, -0.016212239861488342, -6.931665120646358e-05, 0.020388981327414513, 0.0023803364019840956, 0.010162049904465675, -0.01075409259647131, -0.011143380776047707, -0.008621116168797016, 0.013746746815741062, -0.015263349749147892, -0.011800304986536503, 0.0254659503698349, 0.002120810793712735, 0.00815072562545538, 0.005158071406185627, -0.0003986658120993525, -0.015855392441153526, -0.006029915064573288, -0.00019008222443517298, 0.0012043609749525785, 0.021329760551452637, 0.005381101276725531, 0.021605506539344788, 0.02188125252723694, 0.013779187574982643, 0.012416678480803967, 0.021962353959679604, 0.007485691923648119, -0.01398194208741188, 0.011313694529235363, 0.002629724331200123, 0.00534866051748395, -0.01620412990450859, -7.514584285672754e-05, 0.023373525589704514, -0.006934199947863817, 0.03717704489827156, 0.0032278497237712145, -0.00039511758950538933, -0.008276433683931828, 0.010218820534646511, 0.014346900396049023, 0.015758071094751358, 0.0058352709747850895, 0.003870581043884158, 0.004399769939482212, -0.009951185435056686, 0.0010157994693145156, -0.001758894301019609, -0.01392517052590847, -0.012149042449891567, 0.008580565452575684, -0.0006037011626176536, -0.0029744068160653114, -0.01836143620312214, 0.026536492630839348, -0.003771231509745121, 0.0007106541306711733, 0.02400611899793148, -0.003002792363986373, -0.0005890014581382275, 0.02037275955080986, 0.008613006211817265, -0.007692501414567232, -0.01495516300201416, -0.013041161932051182, 0.013868399895727634, 0.0018998085288330913, 0.011743533425033092, -0.0006457727286033332, 0.024946898221969604, -0.00948079489171505, 0.006605737842619419, -0.009853863157331944, -0.035749651491642, -0.004245676565915346, -0.010583778843283653, -0.01658530905842781, -0.008385920897126198, -0.021605506539344788, -0.0011232593096792698, -0.0048782704398036, -0.013560213148593903, 0.010956847108900547, 0.017161130905151367, -0.015166027471423149, 0.0034589897841215134, -0.024119660258293152, -0.011313694529235363, -0.003903021803125739, 0.001670696074143052, 0.003331254469230771, -0.004355164244771004, -0.009772760793566704, 0.01248966995626688, -0.009334811940789223, 0.007266717031598091, 0.00899418443441391, -0.006784161552786827, 0.01886426843702793, 0.02585523948073387, 0.00329881370998919, -0.006926089525222778, 0.015855392441153526, -0.018410097807645798, 0.013933281414210796, -0.011167711578309536, 0.009432134218513966, 0.0037428459618240595, -0.0024999615270644426, -0.011686762794852257, 0.012019279412925243, 0.004776893183588982, 0.01029992289841175, -0.0038766637444496155, -0.0034285765141248703, -0.0009336839430034161, 0.028953325003385544, -0.00017386187391821295, 0.0046268547885119915, -0.006788216531276703, 0.0015338369412347674, 0.009326701052486897, -0.012611322104930878, 0.01094062626361847, 0.0023783089127391577, -0.006869318429380655, -0.013641314581036568, -0.003913159482181072, -0.009642998687922955, 0.014995713718235493, -0.003067673882469535, 0.004639020189642906, 0.001582497963681817, -0.003860443364828825, -0.007323488127440214, -0.023422185331583023, -0.00953756645321846, -0.0046592955477535725, 0.00951323565095663, 0.021118896082043648, 0.01349533163011074, -0.004683626350015402, -0.006443534046411514, -0.017793724313378334, 0.0018967671785503626, -0.017242232337594032, -0.007915531285107136, -0.021362202242016792, 0.03137015923857689, -0.0030250954441726208, -0.005093189887702465, -0.024946898221969604, 0.005839325953274965, 0.015376891940832138, 0.031126853078603745, -0.012197703123092651, -0.0260174423456192, -0.0054459827952086926, 0.0018065415788441896, -0.0004382029001135379, -0.026796018704771996, -0.004671460948884487, 0.00213297619484365, 0.000725860707461834, -0.014598315581679344, -0.0027006883174180984, 0.009829532355070114, 0.002627696841955185, -0.010016066022217274, 0.00923748966306448, -0.00101630634162575, -0.0021491963416337967, 0.006634123157709837, 0.024914458394050598, -0.01771262288093567, 0.003211629344150424, -0.015952713787555695, -0.003483320353552699, -0.007619509473443031, 0.010056617669761181, -0.0056244065053761005, -0.0007030508131720126, 0.013341237790882587, -0.00684093264862895, -0.0045700836926698685, -0.003092004219070077, 0.004574138671159744, -0.019253555685281754, 0.015109256841242313, 0.0038077272474765778, 0.005936648230999708, -0.009091506712138653, 0.006123182363808155, 0.01999969221651554, 0.002264766488224268, -0.0029784617945551872, -0.009148277342319489, -0.011848965659737587, 0.004089555703103542, 0.013341237790882587, -0.006143457721918821, 0.00549869891256094, -0.02178393118083477, -0.0015307955909520388, -0.014428001828491688, 0.007481636479496956, 0.009821422398090363, -0.0007030508131720126, -0.017696402966976166, -0.0023134273942559958, -0.0016727236798033118, -0.011905737221240997, -0.024525169283151627, -0.017307113856077194, 0.008256158791482449, -0.008049349300563335, 0.00991063378751278, -0.0029115527868270874, 0.016398774459958076, 0.0006761858821846545, -0.016885384917259216, 0.009245599620044231, 0.0015155889559537172, 0.011743533425033092, 0.009983625262975693, -0.022659828886389732, 0.014095484279096127, 0.010437795892357826, 0.008596785366535187, -0.0022890970576554537, 0.02150818519294262, -0.025644373148679733, 0.009675439447164536, 0.006269165314733982, -0.01340611930936575, 0.00842647161334753, 0.005904207471758127, -0.016350112855434418, -0.004217291250824928, -0.02394123747944832, -0.0074694715440273285, -0.010308032855391502, 0.002518209395930171, 0.00877521000802517, -0.01015393901616335, 0.0035542843397706747, -0.016171690076589584, -0.0184263177216053, 0.004440321121364832, 0.016260901466012, 0.06270787119865417, 0.022659828886389732, 0.015701299533247948, 0.0025912008713930845, -0.0003507650690153241, -0.03051047958433628, 0.017485538497567177, -0.011589440517127514, -0.01625279150903225, -0.0036374134942889214, 0.01582295261323452, -0.004987757652997971, 0.003242042614147067, 0.002530374564230442, -0.00978087168186903, -0.0053202747367322445, -0.005178346764296293, -0.004870160017162561, 0.006849043071269989, 0.015530985780060291, -0.002530374564230442, 0.008171001449227333, -0.006995026022195816, 0.004103748593479395, 0.021005352959036827, -0.002278959145769477, -0.0200483538210392, -0.0031487755477428436, -0.004168630111962557, 0.003043343313038349, 0.027509713545441628, -0.0033799156080931425, -0.02562815323472023, 0.014606425538659096, -0.0068328226916491985, 0.011565109714865685, -0.019415758550167084, 0.019594183191657066, 0.012011169455945492, -0.011808414943516254, -0.006143457721918821, -0.006013695150613785, 0.005863656755536795, -0.020356539636850357, -0.011775974184274673, -0.002232325728982687, -0.006398928351700306, -0.0020407228730618954, -0.0029865719843655825, -0.004213235806673765, 0.0021593342535197735, 0.004318668507039547, -0.0047525628469884396, -0.01175975427031517, 0.003651606384664774, 0.0030169852543622255, 0.008815760724246502, -0.00013597215001937002, 0.0027675973251461983, -0.030380716547369957, -0.0009671383886598051, -0.006257000379264355, 0.019983472302556038, 0.025871459394693375, 0.00213297619484365, 0.013049271889030933, 0.0018227618420496583, -0.0035461741499602795, -0.0014679416781291366, 0.00272907386533916, 0.006885538809001446, -0.02514154277741909, -0.009553786367177963, -0.004643075168132782, -0.0037570386193692684, -0.018458759412169456, -0.03458178788423538, -0.015620197169482708, -0.002804093062877655, 0.00545814773067832, 0.007424865383654833, -0.011832745745778084, -0.004517367575317621, -0.012960059568285942, -0.0003147761744912714, -0.009472684934735298, 0.005133741069585085, -0.0008110175258480012, 0.0033393646590411663, 0.012716754339635372, -0.015733739361166954, -0.005149961449205875, -0.018491199240088463, -0.004533587954938412, 0.00991063378751278, -0.01097306702286005, -0.02204345539212227, 9.985653014155105e-05, -0.0023357304744422436, 0.0013543992536142468, 0.006500305607914925, 0.028304511681199074, 0.00512157566845417, -0.001362509443424642, 0.006763886194676161, -0.027996324002742767, -0.0066179027780890465, 0.01243289839476347, 0.00226273899897933, 0.0203078780323267, -0.02433052472770214, -0.004667405970394611, -0.007684390991926193, 0.014947053045034409, 0.01452532410621643, 0.038442231714725494, 0.02090803161263466, 0.018783165141940117, -0.007814154028892517, 0.008880642242729664, -0.02648783288896084, 0.015263349749147892, 0.014484772458672523, 0.012822186574339867, -0.00045467668678611517, 0.010648660361766815, 0.008029073476791382, 0.018491199240088463, 0.0005737948813475668, -0.009464574046432972, 0.003817864926531911, 0.011524558998644352, -0.003694184822961688, 0.005421651992946863, -0.0040855007246136665, 0.005660902243107557, 0.014565874822437763, 0.001495313597843051, -0.003002792363986373, -0.014087374322116375, -0.029083088040351868, 0.05330007150769234, 0.023665491491556168, 0.012197703123092651, -0.002433052519336343, -0.006423258688300848, -0.0314350388944149, 0.004720122087746859, 0.010535117238759995, -0.012116601690649986, -0.004217291250824928, -0.006723335478454828, -0.01275730598717928, 0.009837642312049866, -0.00022011522378306836, 0.02454139105975628, -0.01982126757502556, 0.03604161739349365, -0.019642844796180725, 0.017404435202479362, 8.078494602159481e-07, 0.009107726626098156, 0.0050526391714811325, 0.023649271577596664, 0.005652792286127806, -0.006638178601861, 0.0008850228623487055, 0.006577352061867714, -0.019529301673173904, 0.005093189887702465, -0.011565109714865685, 0.001781197264790535, -0.01351966243237257, -0.0002790407161228359, -0.020794488489627838, 0.003363695228472352, -0.010883854702115059, 0.0005748086841776967, -0.01766396127641201, -0.017874825745821, 0.009042845107614994, 0.022302981466054916, 0.01669074036180973, 0.006569242104887962, -0.007080182898789644, -0.0056244065053761005, -0.012611322104930878, 0.012960059568285942, -0.008223718032240868, 0.008710328489542007, 0.007149119395762682, 0.020924251526594162, -0.009440244175493717, -0.011378576047718525, -0.015133586712181568, 0.016601528972387314, -0.0019190702587366104, -0.013389899395406246, -0.02699066326022148, 0.006942309904843569, 0.017858605831861496, 0.0009129015961661935, -0.010137719102203846, -0.012351796962320805], "b69caf6b-5590-4518-a963-d1998db8440a": [-0.0176262017339468, -0.010815724730491638, -0.013262509368360043, 0.019527524709701538, -0.020057402551174164, -0.031792618334293365, 0.0014503434067592025, 0.0076715280301868916, 0.0027565292548388243, 0.008774139918386936, 0.01594306342303753, 0.05040065199136734, 0.0009608890395611525, -0.016815802082419395, 0.03768360614776611, 0.022737957537174225, 0.02685229480266571, 0.010200131684541702, 0.01776646450161934, -0.009654670022428036, 0.04712788388133049, -0.0073208739049732685, -0.018124910071492195, 0.03229132667183876, 0.024140572175383568, 0.004846815951168537, -0.00596501212567091, 0.001263328013010323, -0.055543575435876846, -0.006658527534455061, 0.016613202169537544, 0.03257184848189354, 0.016722293570637703, -0.012662502005696297, 0.012054701335728168, -0.007102689240127802, 0.003342900425195694, 0.004936427343636751, -0.002727308077737689, -0.016441771760582924, -0.028893880546092987, 0.004488369915634394, 0.004371485207229853, -0.0202444177120924, -0.04014597460627556, 0.0039019985124468803, 0.005898777861148119, -0.016363848000764847, 0.0018117118161171675, -0.027802957221865654, 0.015413186512887478, -0.003964337054640055, 0.0005391303566284478, 0.001141573186032474, 0.013878101482987404, -0.03743425011634827, -0.007176716346293688, 0.059751421213150024, 0.0265406034886837, -0.055855266749858856, 0.00875855516642332, 0.009911816567182541, 0.0016393068945035338, -0.007044246885925531, -0.009163754992187023, -0.01734567992389202, 0.017392432317137718, 0.003580565797165036, -0.011454693973064423, -0.004270185250788927, -0.029221156612038612, 0.0032844580709934235, -0.04413563758134842, 0.022660033777356148, 0.011711839586496353, -0.038649849593639374, 0.056790344417095184, 0.024249665439128876, 0.020150911062955856, 0.0049091544933617115, -0.03232249617576599, 0.015849556773900986, 0.060405977070331573, -0.01048065535724163, 0.07461914420127869, 0.029174404218792915, -0.006385797169059515, -0.02605747990310192, -0.009654670022428036, -0.015257339924573898, -0.012226132676005363, -0.00700528547167778, -0.032478343695402145, 0.0075273700058460236, -0.019122324883937836, 0.02534058690071106, -0.0035649812780320644, 0.006603981833904982, 0.015763839706778526, -0.018498940393328667, -0.008875439874827862, -0.006218262482434511, -0.03026532754302025, -0.0024701617658138275, 0.03403680399060249, 0.009654670022428036, -0.017376847565174103, -0.018608033657073975, -0.03372511267662048, 0.042296651750802994, 0.020150911062955856, -0.05666567012667656, 0.013496278785169125, 0.004764996934682131, -0.061091698706150055, -0.033787451684474945, -0.015756048262119293, -0.05139806866645813, 0.009444277733564377, -0.020945725962519646, 0.025325004011392593, 0.030686112120747566, 0.015826178714632988, 0.01948077231645584, -0.0019110636785626411, 0.02998480387032032, 0.02021324820816517, -0.022909387946128845, 0.01645735651254654, -0.018576864153146744, 0.008844270370900631, -0.023532772436738014, -0.01673787832260132, 0.0069780126214027405, 0.015062532387673855, 0.014930063858628273, 0.03219781816005707, 0.061060529202222824, -0.028410756960511208, 0.04157976061105728, -0.02138209529221058, -0.04061351343989372, -0.013745632953941822, 0.004636423662304878, 0.013075494207441807, 0.0006438394775614142, -0.03260301798582077, 0.032447174191474915, -0.045569419860839844, 0.04064468294382095, -0.05588643625378609, -0.020976895466446877, 0.0017649579094722867, 0.011330016888678074, 0.024389926344156265, 0.0014863829128444195, -0.03197963535785675, 0.04753308370709419, 0.0041883657686412334, 0.03331991285085678, 0.006857231725007296, -0.06582942605018616, -0.003344848519191146, 0.008026078343391418, 0.03481603413820267, 0.008174131624400616, 0.06620345264673233, 0.015335263684391975, -0.03818231076002121, 0.015366432256996632, 0.012623540125787258, -0.0156625397503376, 0.016753463074564934, 0.020353510975837708, 0.019340509548783302, -0.015475524589419365, 0.03846283629536629, 0.028940634801983833, 0.030280912294983864, -0.017688540741801262, -0.004546812269836664, -0.002370809903368354, -0.014431355521082878, -0.006865024100989103, 0.01717424765229225, 0.005867608357220888, -0.00988064706325531, 0.0035610850900411606, -0.002162365708500147, 0.0120858708396554, -0.021475601941347122, 0.009327393025159836, 0.018046986311674118, 0.013496278785169125, -0.017579447478055954, -0.04251483455300331, -0.02448343299329281, 0.021569110453128815, 0.008657255209982395, 0.028239326551556587, -0.019465187564492226, -0.061060529202222824, -0.057787761092185974, 0.03815114498138428, -0.01700281724333763, 0.008236470632255077, -0.017859971150755882, -0.04142391309142113, 0.044010959565639496, -0.014119663275778294, 0.011010532267391682, -0.07237496227025986, 0.002162365708500147, 0.003931219689548016, -0.017782049253582954, 0.012880686670541763, -0.011407939717173576, 0.04765775799751282, 0.025636695325374603, -0.020509356632828712, -0.021304171532392502, -0.0025383445899933577, -0.0189353097230196, -0.02830166555941105, -0.05495136231184006, -0.013418355956673622, 0.0076013971120119095, 0.018545694649219513, -0.041018713265657425, 0.01258457824587822, 0.038743358105421066, -0.006771516054868698, 0.00929622445255518, -0.018530109897255898, 0.0038221273571252823, 0.00836893916130066, -0.002528604120016098, 0.0006004947936162353, -0.019823633134365082, -0.012685878202319145, 0.009787139482796192, 0.04095637425780296, -0.010940401814877987, 0.006362420041114092, -0.01782880164682865, 0.01734567992389202, -0.00642865477129817, 0.04815646633505821, 0.009031285531818867, 0.0013646280858665705, -0.05576176196336746, 0.011111832223832607, 0.009522201493382454, 0.009966363199055195, -0.012561202049255371, 0.042701851576566696, 0.0285042654722929, -0.01965220272541046, -0.012592370621860027, -0.004846815951168537, 0.038649849593639374, -0.002809127327054739, -0.007733866572380066, 0.0032513407059013844, 0.01882621832191944, -0.009919608943164349, 0.036748528480529785, -0.00618709297850728, 0.02582371048629284, 0.046598006039857864, -0.000937999167945236, 0.014228755608201027, 0.008548162877559662, -0.004893569741398096, 0.005006558261811733, -0.006880608387291431, 0.02375095710158348, 0.005365004297345877, 0.021397680044174194, 0.0020708059892058372, -0.025636695325374603, 0.03338225185871124, 0.009117000736296177, 0.008306601084768772, -0.01955869421362877, -0.007118273992091417, -0.04407329857349396, 0.018218418583273888, -0.04288886860013008, -0.003085754346102476, 0.013433939777314663, 0.00921050924807787, 0.042639512568712234, 0.011571578681468964, 0.0374654196202755, 0.0029260118026286364, -0.03032766468822956, 0.033039387315511703, -0.01873270981013775, 0.037340741604566574, -0.003985765855759382, -0.011041701771318913, 0.0016587877180427313, -0.02616657316684723, 0.022130155935883522, -0.028457511216402054, -0.00872738566249609, -0.014049532823264599, -0.049278561025857925, 0.03818231076002121, 0.05410979315638542, -0.001061702030710876, -0.012233925051987171, 0.005657216068357229, 0.009241677820682526, 0.025247080251574516, -0.0034773177467286587, 0.00982610136270523, -0.0005527668981812894, -0.032416004687547684, 0.0017639838624745607, 0.00711048161610961, -0.06720086932182312, 0.005345523823052645, 0.02605747990310192, -0.031652357429265976, 0.04058234393596649, 0.024218495935201645, -0.021428849548101425, -0.006522162351757288, -0.027756202965974808, -0.021818464621901512, -0.03793295845389366, -0.035782281309366226, -0.018202833831310272, -0.04335640370845795, -0.04245249927043915, -0.04709671437740326, -0.011337809264659882, -0.0010802088072523475, -0.008049454540014267, -0.01523396372795105, 0.021008064970374107, -0.017439186573028564, 0.021662618964910507, 0.01948077231645584, -0.010761178098618984, 0.0006438394775614142, -0.03500305116176605, -0.004032519645988941, 0.0010422213235870004, -0.006588397081941366, 0.026447094976902008, 0.008423485793173313, 0.05012013018131256, 0.008252054452896118, -0.027444511651992798, 0.01475084014236927, -0.01807815581560135, -0.01790672540664673, 0.007566331885755062, -0.04223431274294853, -0.03098221868276596, 0.009007908403873444, -0.010511824861168861, 0.03216664865612984, -0.009654670022428036, -0.010628708638250828, 0.020774295553565025, -0.0017035935306921601, -0.03852517530322075, 0.010792347602546215, 0.03146534413099289, -0.015756048262119293, -0.020166493952274323, -0.0387745276093483, 0.06913336366415024, 0.004796165972948074, -0.055200714617967606, 0.02375095710158348, 0.020571695640683174, 0.010091039352118969, 0.011485862545669079, 0.019059987738728523, 0.03699788078665733, 0.0382758192718029, -0.003535760100930929, 0.0018896348774433136, -0.008104001171886921, 0.005400069989264011, -0.039023883640766144, 0.011906648054718971, -0.013956025242805481, 0.0235171876847744, -0.024732787162065506, 0.010231301188468933, 0.0051896777004003525, -0.02013532631099224, 0.0008737125899642706, -0.03157443553209305, 0.002935752272605896, 0.01178976334631443, -0.007036454509943724, 0.030997803434729576, 0.004461096599698067, -0.018218418583273888, 0.0019061935599893332, -0.027693865820765495, 0.021195080131292343, -0.02375095710158348, 0.01282614003866911, 0.012888478115200996, 0.003473421558737755, 0.01563137210905552, 0.050868190824985504, -0.009117000736296177, -0.002479902235791087, 0.04435382038354874, -0.01807815581560135, -0.029595188796520233, 0.015498901717364788, 0.055512405931949615, -0.02309640310704708, 0.042327821254730225, 0.00843127816915512, 0.029392588883638382, 0.0056299432180821896, -0.0027487368788570166, -0.015880724415183067, -0.026634110137820244, 0.01634826324880123, 0.0439174510538578, -0.014049532823264599, -0.013293678872287273, 0.006939050741493702, -0.0017561916029080749, -0.01449369452893734, 0.012249508872628212, -0.01466512493789196, -0.005435135215520859, 0.003905894700437784, -0.00014330542762763798, -0.03824464976787567, -0.004363692831248045, -0.013691086322069168, -0.02901855669915676, -0.022628864273428917, -0.01134560164064169, 0.010659878142178059, -0.007772827986627817, -0.009748178534209728, 0.034473173320293427, -0.05043182149529457, 0.016130078583955765, 0.014563824981451035, -0.03360043466091156, -0.019589863717556, -0.023392511531710625, 0.02030675671994686, -0.05956440791487694, -0.04909154400229454, -0.006526058539748192, 0.010987155139446259, -0.002888998482376337, 0.011750801466405392, -0.014189793728291988, 0.0018243743106722832, 0.04323172941803932, 0.017376847565174103, 0.021662618964910507, -0.03257184848189354, -0.026260079815983772, -0.03612514212727547, 0.000773873645812273, 0.003214327385649085, -0.035470589995384216, -0.02978220395743847, -0.02320549450814724, -0.013574201613664627, -0.05043182149529457, -0.05018246918916702, -0.01496123243123293, -0.016208002343773842, 0.039055049419403076, -0.015646954998373985, 0.004402654245495796, -0.015927478671073914, -0.023844463750720024, 0.029517265036702156, -0.0239223875105381, 0.02152235619723797, -0.0012720944359898567, 0.009093624539673328, 0.023018479347229004, -0.004846815951168537, -0.015623578801751137, -0.007893608883023262, -0.03612514212727547, -0.010917024686932564, -0.05931505188345909, 0.04242132976651192, -0.014228755608201027, -0.011267677880823612, 0.026665279641747475, -0.01278717815876007, -0.0035649812780320644, -0.001298393472097814, -0.0004641293780878186, 0.005739035550504923, -0.05984492972493172, -0.06099819391965866, 0.03952258825302124, -0.040675852447748184, 0.024982141330838203, 0.012888478115200996, 0.016239171847701073, 0.001467876136302948, 0.011454693973064423, 0.04052000492811203, 0.019153494387865067, 0.007667631842195988, -0.014189793728291988, 0.004581877496093512, -0.008439070545136929, -0.06102935969829559, -0.03169911354780197, 0.008602708578109741, -0.005875400733202696, 0.0258860494941473, -0.008493616245687008, -0.012639124877750874, 0.02021324820816517, -0.022706788033246994, 0.006810477934777737, 0.0047182426787912846, -0.018888555467128754, 0.02947051078081131, 0.019122324883937836, -0.020696371793746948, 0.02258211001753807, -0.038400497287511826, 0.013550824485719204, 0.0043481080792844296, 0.015358640812337399, -0.007344251032918692, 0.03662385046482086, 0.010013116523623466, 0.023299003019928932, 0.0043753813952207565, 0.017018401995301247, -0.032447174191474915, 0.015343056060373783, -0.008922193199396133, -0.016535278409719467, 0.01267029345035553, -0.0374654196202755, 0.013013155199587345, -0.016893725842237473, -0.004281873814761639, -0.011781970970332623, -0.00807283166795969, 0.019215833395719528, 0.0029883503448218107, -0.003751996671780944, 0.002290938748046756, -0.0072741201147437096, -0.022831464186310768, 0.027086064219474792, -0.005322146695107222, 0.02389121800661087, 0.019917141646146774, 0.022909387946128845, 0.008252054452896118, 0.0017483992269262671, -0.0024312003515660763, 0.02121066488325596, -0.0023941867984831333, 0.008392316289246082, -0.058161791414022446, -0.006931258365511894, 0.007714385632425547, -0.03528357297182083, 0.007098793052136898, -0.0038513485342264175, 0.0007451394922100008, 0.015117079019546509, -0.008392316289246082, -0.013667709194123745, -0.004441616125404835, -0.0003635598986875266, 0.028005557134747505, 0.021226249635219574, -0.013885893858969212, 0.015241756103932858, -0.043699268251657486, 0.03168352693319321, 0.01717424765229225, 0.0024487329646945, -0.0026182157453149557, 0.004402654245495796, 0.0022636656649410725, 0.04126806557178497, 0.009841686114668846, -0.016098909080028534, 0.0005142923910170794, 0.03855634480714798, -0.009272847324609756, -0.0011941712582483888, -0.00155164347961545, 0.028722450137138367, -0.015904102474451065, -0.002649385016411543, 0.04584994539618492, -0.010192339308559895, 0.035127729177474976, -0.010052078403532505, 0.023844463750720024, 0.015896309167146683, -0.02303406409919262, -0.006826062221080065, 0.029719864949584007, -0.036686189472675323, 0.04871751368045807, -0.031652357429265976, 0.0074845124036073685, 0.03730957210063934, -0.008509200997650623, -0.010176755487918854, -0.012483278289437294, 0.020509356632828712, -0.007278016302734613, -0.028270496055483818, 0.00093702512094751, -0.030623773112893105, 0.0034948503598570824, 0.002678606193512678, 0.0011727424571290612, 0.03328874334692955, -0.02295614220201969, 0.008329978212714195, -0.007441654801368713, -0.001793205039575696, 0.0032338080927729607, 0.07225028425455093, -0.014735255390405655, 0.010659878142178059, -0.010130001232028008, 0.026010725647211075, 0.02953284978866577, 0.00046364235458895564, -0.020774295553565025, -0.0004687560722231865, 0.0033214716240763664, 0.030826373025774956, 0.010636501014232635, -0.03790178894996643, 0.007270223926752806, 0.027257496491074562, 0.01790672540664673, 0.005746827460825443, 0.026088649407029152, -0.002160417614504695, -0.008127378299832344, -0.008361146785318851, 0.014080701395869255, 0.024763956665992737, 0.01048065535724163, 0.025761373341083527, 0.01831192523241043, 0.026291249319911003, -0.010901439934968948, -0.007874127477407455, 0.01890414021909237, 0.015444356016814709, -0.013745632953941822, 0.005852023605257273, -0.02309640310704708, 0.012896270491182804, 0.02619774267077446, -0.014805386774241924, 0.0037558928597718477, -0.034130312502384186, -0.002686398336663842, 0.025621110573410988, -0.022223664447665215, -0.0028461406473070383, -0.014571617357432842, 0.043294068425893784, -0.022909387946128845, -0.014727463014423847, 0.008478031493723392, 0.018748294562101364, 0.0005746827810071409, 0.006572812329977751, 0.012678085826337337, 0.0010753385722637177, -0.021054817363619804, -0.02158469520509243, 0.02647826448082924, -0.0038961542304605246, -0.04282652959227562, -0.007515681907534599, 0.018670370802283287, -0.04242132976651192, 0.017750879749655724, 0.0448213592171669, -0.03612514212727547, -0.023704202845692635, 0.006767619866877794, 0.007009181659668684, 0.02830166555941105, 0.008587123826146126, -0.004075377248227596, 0.010246885940432549, 0.03174586594104767, 0.03724723681807518, -0.021974310278892517, -0.008049454540014267, -0.026525018736720085, 0.011392354965209961, -0.005435135215520859, 0.007215677760541439, 0.017267756164073944, -0.01876387931406498, -0.031418588012456894, 0.007683216128498316, 0.01734567992389202, 0.02078988030552864, -0.024639280512928963, -0.00010428300447529182, 0.027491265907883644, -0.013948232866823673, -0.021662618964910507, 0.01277159433811903, -0.007920881733298302, -0.005875400733202696, -0.028862711042165756, 0.02534058690071106, 0.045943450182676315, -0.014797594398260117, 0.012467693537473679, 0.018156079575419426, 0.03487837314605713, -0.01944960281252861, 0.007059831637889147, -0.008820893242955208, 0.03049909695982933, 0.006748139392584562, 0.010098831728100777, 0.013433939777314663, 0.03462902083992958, -0.022737957537174225, 0.05510720610618591, 0.03204197436571121, -0.030545849353075027, -0.004480577539652586, 0.017376847565174103, -0.004920843057334423, -0.011158586479723454, 0.028597772121429443, -0.013870309107005596, 0.006545539479702711, 0.0018701540539041162, -0.023486018180847168, 0.0024312003515660763, 0.03391212597489357, 0.0073208739049732685, 0.05339289829134941, 0.049216222018003464, -0.009148170240223408, 0.026431510224938393, 0.00757412426173687, 0.0011737165041267872, 0.02733541838824749, -0.007075416389852762, -0.02078988030552864, 0.047283727675676346, 0.012880686670541763, -0.030140649527311325, -0.03001597337424755, -0.01669112592935562, -0.0400836355984211, 0.006541643291711807, -0.010581955313682556, 0.022083403542637825, -0.026010725647211075, 0.019745709374547005, 0.022161325439810753, 0.004445512313395739, -0.0002853932965081185, 0.022660033777356148, -0.003214327385649085, -0.009888439439237118, 0.003255236893892288, 0.015000194311141968, -0.031512096524238586, 0.021880803629755974, -0.022488603368401527, 0.007476720027625561, -0.0016656059306114912, 0.024280833080410957, -0.03522123396396637, 0.02127300202846527, 0.06913336366415024, -0.023423679172992706, -0.025527603924274445, 0.015607994049787521, -0.002976662013679743, -0.006568916141986847, 0.015935271978378296, -0.02203664928674698, -0.02141326479613781, -0.011828724294900894, 0.028379587456583977, -0.004219535272568464, 2.3194294044515118e-05, 0.030140649527311325, 0.021662618964910507, -0.004994869697839022, 0.009646878577768803, 0.007106585428118706, 0.0035961505491286516, 0.005275392904877663, 0.01617683283984661, -0.035688772797584534, -0.01924700289964676, 0.013519655913114548, -0.0012467693304643035, 0.016909310594201088, -0.013917063362896442, -0.00045414548367261887, -0.0016519693890586495, -0.005263704340904951, 0.07019311934709549, 0.00503383157774806, 0.010402732528746128, -0.04320055991411209, -0.012678085826337337, -0.03581345081329346, 0.027974387630820274, -0.02158469520509243, -0.0258860494941473, -0.012381978332996368, -0.0008659203303977847, -0.010013116523623466, -0.005781893152743578, 0.013613163493573666, 0.005267600528895855, 0.04307588189840317, 0.049901943653821945, 0.036093972623348236, -0.030312079936265945, 0.004690969828516245, -0.008384523913264275, -0.013176794163882732, 0.014111870899796486, -0.009841686114668846, 0.03861868008971214, 0.0042857700027525425, 0.030452342703938484, 0.00021696709154639393, 0.007129962556064129, -0.029377004131674767, -0.005594877526164055, 0.011610539630055428, -0.008633878082036972, -0.01167287863790989, 0.0027545811608433723, 0.007648150902241468, -0.008750762790441513, 0.0003097442677244544, 0.007578019984066486, 0.003058481262996793, 0.012062493711709976, -0.015039156191051006, -0.007402693387120962, -0.01725217141211033, 0.010597540065646172, -0.04849933087825775, -0.023735372349619865, 0.02591721899807453, 0.014540447853505611, -0.024950971826910973, 0.017844386398792267, -0.029751034453511238, -0.011057285591959953, 0.007461135741323233, -0.0182807557284832, -0.011781970970332623, -0.00788971222937107, 0.010737800970673561, 0.01267029345035553, -0.015646954998373985, -0.01993272639811039, -0.014361225068569183, -0.01015337835997343, -0.012039116583764553, -0.016130078583955765, 0.007106585428118706, 0.008844270370900631, -0.009491031989455223, -0.028691280633211136, -0.05298769846558571, -0.013083286583423615, 0.03914855793118477, -0.0444161593914032, 0.013254716992378235, -0.004036415833979845, 0.02103923261165619, -0.00691957026720047, 0.024078233167529106, 0.011610539630055428, -0.01790672540664673, -0.015039156191051006, 0.044322650879621506, 0.04076935723423958, 0.031480927020311356, -0.017579447478055954, -0.026976972818374634, -0.007196197286248207, -0.0014386549592018127, 0.02557435631752014, 0.015366432256996632, -0.0013617059448733926, -0.014111870899796486, -0.010800139978528023, 0.00531045813113451, -0.021397680044174194, 2.3133416107157245e-05, 0.013792386278510094, -0.018810633569955826, 0.01062091626226902, 0.00749620096758008, -0.015226171351969242, -0.001831192523241043, 0.009265054948627949, -0.015218378975987434, -0.011096247471868992, -0.03266535699367523, -0.020992480218410492, -0.009046870283782482, -0.011181962676346302, 0.015514486469328403, -0.01731451041996479, -0.0017250223318114877, -0.009935193695127964, -0.00749620096758008, 0.032727696001529694, -0.019091155380010605, 0.03219781816005707, 0.0017084636492654681, 0.03291471302509308, -0.002010415541008115, -0.011439109221100807, 0.005439031403511763, 0.017298925668001175, -0.018810633569955826, -0.0015935271512717009, -0.0008483876008540392, -0.003214327385649085, 0.0036955024115741253, 0.013496278785169125, -0.002158469520509243, 0.004274081438779831, -0.03553292900323868, 0.0002965947496704757, -0.029657525941729546, 0.0011571578215807676, -0.008033869788050652, -0.013465109281241894, 0.010994947515428066, 0.005423446651548147, -0.0025539291091263294, 0.007971531711518764, -0.0008888102020137012, -0.010301431640982628, -0.008275431580841541, -0.02861335687339306, -0.014057325199246407, 0.013761216774582863, 0.024841880425810814, -0.01261574774980545, -0.022473018616437912, -0.0254808496683836, 0.0014844348188489676, -0.00097696075681597, -0.03238483518362045, 0.024982141330838203, -0.022021064534783363, -0.007309185341000557, -0.01253003254532814, -0.037745941430330276, 0.004663696512579918, 0.007207885384559631, 0.008540370501577854, 0.009810516610741615, -0.03369394317269325, -0.028099065646529198, -0.002234444487839937, -0.039366744458675385, -0.02375095710158348, 0.004149404354393482, -0.035096559673547745, 0.029345834627747536, 0.03101338818669319, -0.015498901717364788, 0.018498940393328667, -0.006888400763273239, -0.004932531621307135, 0.02471720241010189, -0.0339432954788208, -0.028831541538238525, 0.0021058714482933283, 0.008696216158568859, 0.009755970910191536, 0.01023909356445074, 0.021569110453128815, -0.030530264601111412, 0.0004996818024665117, 0.017875555902719498, -0.03534591197967529, -0.000900011626072228, -0.007936466485261917, -0.005259808152914047, -0.012428732588887215, -0.007597500924021006, -0.003964337054640055, 0.017532695084810257, 0.022971725091338158, 0.0031695214565843344, -0.01913790963590145, -0.017532695084810257, -0.0018204781226813793, 0.00399355823174119, 0.007094896864145994, -0.03335108235478401, 0.011555993929505348, -0.09188690036535263, -0.01680021733045578, -0.00659229326993227, 0.034130312502384186, 0.0013821606989949942, -0.014524863101541996, -0.0011464434210211039, 0.0027117233257740736, -0.02830166555941105, 0.031418588012456894, 0.0011746905511245131, -0.019465187564492226, 0.0063273548148572445, 0.019745709374547005, -0.0055130585096776485, 0.002398082986474037, -0.006541643291711807, -0.002725359983742237, 0.00725463917478919, 0.007932569831609726, -0.008142962120473385, 0.009654670022428036, 0.00044318754225969315, -0.01748594082891941, -0.0002103923325194046, 0.019714541733264923, -0.02141326479613781, 0.012272886000573635, -0.028691280633211136, -0.029377004131674767, 0.00235327729023993, 0.018685955554246902, -0.0091403778642416, -0.0008990376372821629, -0.004527331329882145, -0.002035740530118346, 0.02258211001753807, 0.005216950550675392, 0.03522123396396637, 0.006222158670425415, 0.0024623696226626635, 0.009693631902337074, -0.008065039291977882, -0.01879504881799221, -0.017844386398792267, -0.011330016888678074, 0.00822867825627327, -0.013067701831459999, -0.01178976334631443, 0.01118975505232811, 0.00013526961265597492, -0.007094896864145994, -0.01327030174434185, -0.016208002343773842, -0.02699255757033825, -0.005684489384293556, 0.003229911904782057, -0.009475447237491608, 0.019698956981301308, -0.01261574774980545, 0.06570474803447723, 0.00900011695921421, -0.006681904662400484, 0.0018555434653535485, -0.004944219719618559, 0.007640358526259661, 0.00437927758321166, 0.01344173215329647, 0.025963973253965378, -0.01036377064883709, 0.0038844658993184566, -0.022395094856619835, 0.00768711231648922, 0.03621865063905716, 0.005563708487898111, 0.0006560150068253279, 0.004200054332613945, 0.002273406134918332, -0.005006558261811733, 0.016613202169537544, -0.020119741559028625, 0.007531266193836927, 0.0053689004853367805, -0.015615786425769329, 0.004313042853027582, -0.030374418944120407, -0.003226015716791153, -0.014984609559178352, -0.00019066805543843657, 0.009304016828536987, 0.024873049929738045, 0.008142962120473385, 0.03924206644296646, 0.020057402551174164, -0.016582032665610313, 0.04787594452500343, 0.0009759866516105831, 0.006105273962020874, -0.012756009586155415, -0.019979478791356087, 0.012810555286705494, -0.024015896022319794, 0.008166339248418808, -0.0219587255269289, 0.006763724144548178, 0.0018136597936972976, -0.008766347542405128, 0.006845543161034584, -0.0035766696091741323, -0.011033909395337105, -0.0031597812194377184, 0.009755970910191536, -0.028909465298056602, 0.006510473787784576, -0.011384562589228153, -0.011080662719905376, -0.021771710366010666, -0.004461096599698067, -0.0020474290940910578, -0.0005391303566284478, -0.011688463389873505, 0.019434018060564995, 0.003387706121429801, -0.031730279326438904, -0.016582032665610313, -0.004161092918366194, 0.005657216068357229, 0.010792347602546215, 0.01187547855079174, 0.01603657193481922, 0.0007597500807605684, -0.003438356099650264, -0.004059792961925268, -0.0002426573628326878, -0.016301508992910385, 0.014439147897064686, 0.016582032665610313, -0.026244495064020157, 0.01146248634904623, -0.025948388502001762, 0.006039039231836796, 0.011579371057450771, 0.0030253638979047537, 0.001542877173051238, -0.013067701831459999, 0.003582513891160488, 0.013917063362896442, -0.028379587456583977, -0.0038396602030843496, -0.005271496716886759, 0.009124793112277985, 0.008142962120473385, 0.010161170735955238, -0.011665086261928082, -0.010558578185737133, -0.024763956665992737, -0.01800023391842842, -0.018841803073883057, 0.008384523913264275, 0.004133819602429867, -0.018202833831310272, 0.007468927651643753, 0.017688540741801262, 0.005181885324418545, 0.011158586479723454, -0.004246808122843504, -0.01910674013197422, -0.019854802638292313, -0.0012204702943563461, 0.000568838557228446, -0.006806581746786833, 0.031200403347611427, -0.004815646912902594, -0.021849634125828743, -0.005439031403511763, 0.0003141274501103908, -0.0013061857316643, -0.018327509984374046, 0.016987232491374016, 0.006588397081941366, 0.0009151092381216586, 0.010846893303096294, 0.003942908253520727, 0.035719942301511765, -0.0016169040463864803, -0.0029552329797297716, 0.0012302107643336058, 0.020260002464056015, -0.010885855183005333, -0.0016977492487058043, 0.01748594082891941, 0.0071143778041005135, -0.006268912460654974, -0.004663696512579918, 0.017205417156219482, 0.00268055428750813, 0.047969453036785126, 0.023937972262501717, 0.0005537409451790154, -0.0029649734497070312, -0.00028685436700470746, -0.013527448289096355, 0.011563786305487156, 0.023330172523856163, -0.0013500174973160028, -0.009615709073841572, -0.024047063663601875, 0.007149443030357361, 0.01577163301408291, -0.00872738566249609, -0.0007373472326435149, -0.005579293239861727, 0.009280639700591564, -0.006179300602525473, 0.01800023391842842, -0.008516993373632431, 0.0006696515483781695, 0.004441616125404835, 0.013870309107005596, -0.0023902906104922295, 0.020088572055101395, -0.011384562589228153, 0.000569325580727309, -0.031652357429265976, 0.010044286027550697, 0.0014785905368626118, 0.0009107260848395526, -0.046286314725875854, -0.008906608447432518, 0.013059909455478191, 0.003255236893892288, 0.018374264240264893, -0.01425213273614645, -0.014283302240073681, 0.011626124382019043, -0.00251691578887403, 0.03191729635000229, -0.006584500893950462, 0.018187249079346657, -0.005419550463557243, -0.024592526257038116, -0.002335744444280863, -0.028457511216402054, -0.0002532500366214663, 0.01782880164682865, 0.032447174191474915, -0.03718489781022072, -0.02013532631099224, 0.0014016415225341916, 0.020088572055101395, 0.021740540862083435, -0.015927478671073914, -0.01122092455625534, 0.033039387315511703, 0.0006511447718366981, -0.0018253483576700091, -0.012148208916187286, -0.0014581357827410102, 0.02650943398475647, 0.005828646942973137, 0.011376770213246346, 0.013628748245537281, -0.0012798866955563426, -0.009576747193932533, 0.027802957221865654, -0.015101494267582893, 0.00905466265976429, -0.016410602256655693, 0.000897576566785574, -0.021179495379328728, -0.012420940212905407, 0.007013077847659588, -0.03155884891748428, -0.0014474213821813464, 0.017158662900328636, 0.009841686114668846, -0.014875517226755619, -0.01228847075253725, -0.00045779813081026077, 0.012218340300023556, -0.005022143013775349, 0.008454655297100544, -0.034784864634275436, 0.014369017444550991, -0.001100663561373949, 0.007207885384559631, -0.0005883193225599825, 0.010550785809755325, 0.02295614220201969, -0.013285886496305466, 0.02107040211558342, 0.003794854274019599, 0.021054817363619804, -0.0035143312998116016, 0.01062091626226902, -0.004554604645818472, 0.003952648490667343, 0.008189716376364231, 0.01376900915056467, -0.002113663824275136, 0.025356171652674675, -0.005240327678620815, -0.026758788153529167, -0.012428732588887215, 0.014782009646296501, -0.00020454810874070972, 0.009124793112277985, 0.006152027752250433, -0.004098754376173019, 0.0004390479007270187, 0.011072870343923569, -0.011150794103741646, 0.001991908997297287, -0.012023531831800938, -0.0031032869592309, 0.012109247967600822, 0.009942986071109772, 0.005213054362684488, -0.014205378480255604, -0.02844192646443844, -0.003543552476912737, -0.01483655534684658, 0.02929908037185669, 0.010418316349387169, -0.03422382101416588, -0.01471967063844204, 0.007126066368073225, -0.015031363815069199, 0.011228716932237148, -0.012241716496646404, -0.016815802082419395, 0.02241067960858345, 0.01302873995155096, -0.007710489444434643, 0.018639203161001205, -8.632417302578688e-05, 0.0012974194251000881, 0.005068896804004908, -0.008306601084768772, -0.006822166033089161, 0.01745477132499218, 0.0021467809565365314, -0.007266327738761902, -0.004340315703302622, 0.010192339308559895, 0.014072909019887447, 0.013075494207441807, 0.014431355521082878, 0.016223587095737457, 0.002514967694878578, -0.0022480811458081007, 0.022395094856619835, 0.018701540306210518, -0.000693028443492949, 0.02502889558672905, 0.020711956545710564, 0.020010648295283318, 0.022769125178456306, -0.03018740378320217, -0.04581877589225769, -0.012420940212905407, -0.029969219118356705, 0.015257339924573898, 0.012007948011159897, -0.007118273992091417, 0.005349420011043549, 0.02096131071448326, -0.021491186693310738, 0.003136404324322939, -0.015265132300555706, 0.01779763214290142, 0.0018107377691194415, -0.01127547025680542, -0.010815724730491638, -0.009787139482796192, -0.0006818270194344223, 0.018467770889401436, 0.0012087818467989564, -0.017158662900328636, 0.006202677730470896, 0.0019607397262007, -0.004652008414268494, -0.004885777365416288, -0.009787139482796192, -0.008220885880291462, 0.0041688852943480015, -0.0021974309347569942, -0.006494889501482248, -0.002355225384235382, -0.00921050924807787, -0.003083806252107024, 0.006405277643352747, 0.017501525580883026, -0.0012691722949966788, -0.002813023515045643, 0.0060663120821118355, -0.04092520475387573, 0.023174326866865158, -0.031231572851538658, 0.011743009090423584, -0.007055935449898243, 0.009272847324609756, 0.003713035024702549, 0.024249665439128876, -0.005049415864050388, 0.0014639799483120441, 0.003939012065529823, 0.019808048382401466, 0.0029610772617161274, -0.02964194305241108, -0.02434317208826542, 0.007402693387120962, -0.0016899569891393185, -0.02172495611011982, -0.005894881673157215, 0.005084481555968523, 0.003714983118698001, 0.02599514089524746, -0.019059987738728523, -0.007044246885925531, -0.01053520105779171, -0.0036526445765048265, 0.007924778386950493, -0.019402848556637764, -0.017672955989837646, 0.002000675303861499, -0.02788088098168373, 0.017096325755119324, 0.006600085645914078, -0.00210781954228878, 0.01122092455625534, -0.014197586104273796, 0.003214327385649085, -0.003340952331200242, 0.04126806557178497, -0.022660033777356148, 0.01938726380467415, -0.026462679728865623, 0.020805465057492256, -0.00010446563828736544, 0.0002970817731693387, -0.01603657193481922, -0.018467770889401436, -0.027584772557020187, 0.01504694763571024, -0.017065156251192093, 0.018093740567564964, -0.016519693657755852, 0.004503954201936722, 0.0035260196309536695, -0.012833932414650917, -0.01376900915056467, 0.02499772608280182, -0.0052792890928685665, -0.0027857504319399595, 0.004180573392659426, -0.008283223956823349, -0.01930934004485607, -0.027382172644138336, 0.013504071161150932, -0.0029649734497070312, -0.010940401814877987, 0.004087065812200308, 0.012140416540205479, -0.008166339248418808, 0.028597772121429443, 0.030249742791056633, -0.024795126169919968, -0.007862439379096031, -0.03095104917883873, -0.0023786022793501616, -0.01662878692150116, -0.013246924616396427, 0.01611449383199215, -0.011696255765855312, -0.03400563448667526, -0.0069780126214027405, -0.000490915437694639, 0.011111832223832607, -0.012452109716832638, 0.014984609559178352, -0.02389121800661087, -0.013784593902528286, 2.8307997126830742e-05, 0.03229132667183876, 0.008259846828877926, 0.012358601205050945, 0.0039779734797775745, -0.017033986747264862, 0.045943450182676315, -0.018639203161001205, 0.018265170976519585, 0.0003991123230662197, 0.011127416975796223, 0.013784593902528286, -0.03369394317269325, -0.004815646912902594, -0.01648852601647377, 0.016613202169537544, -0.011376770213246346, 0.011400147341191769, -0.013994986191391945, -0.03955375775694847, -0.0057234507985413074, -0.0012769645545631647, -0.01938726380467415, 0.0004641293780878186, 0.005489681381732225, 0.00448447372764349, -0.015958648175001144, -0.0047182426787912846, 0.006572812329977751, -0.012210547924041748, 0.008026078343391418, -0.00807283166795969, 0.012646917253732681, 0.009919608943164349, 0.009023493155837059, -0.01714308001101017, -0.007313081528991461, -0.012350808829069138, -0.010488447733223438, 0.001991908997297287, -0.011119624599814415, 0.005166300572454929, 0.0060468316078186035, -0.0004991947789676487, 0.008493616245687008, -0.016254756599664688, 0.0023844465613365173, 0.004519538953900337, -0.012592370621860027, 0.008766347542405128, 0.0027058792766183615, 0.020197663456201553, 0.008945570327341557, 0.013776801526546478, 0.00342082348652184, 0.0015214482555165887, -0.004301354289054871, -0.014626163057982922, -0.0023104194551706314, -0.007488408591598272, -0.004359796643257141, 0.007336458656936884, 0.0822867825627327, 0.00038109259912744164, 0.004429927561432123, 0.012350808829069138, -0.0016081377398222685, -0.022286003455519676, -0.01673787832260132, 0.011649501509964466, 0.01686255633831024, -0.01253003254532814, 0.011127416975796223, -0.02337692677974701, 0.013987193815410137, -0.00651436997577548, -0.022644449025392532, 0.0038591409102082253, 0.0063741086050868034, 0.019262587651610374, -0.024312002584338188, 0.018343094736337662, 0.012561202049255371, -0.011649501509964466, -0.013387186452746391, 0.02998480387032032, -0.003134456230327487, 0.02292497269809246, 0.004667592700570822, -0.009849478490650654, 0.007172820158302784, 0.014446940273046494, 0.0064637199975550175, -0.020696371793746948, -0.011439109221100807, 0.006284496746957302, -0.005053312052041292, 0.021569110453128815, 0.002283146372064948, 0.01200015563517809, -0.004624735098332167, 0.014244340360164642, 0.003923427313566208, 0.007640358526259661, 0.022987309843301773, 0.005146820098161697, -0.026291249319911003, -0.005754619836807251, -0.0025948388502001762, -0.0017766463570296764, 0.0009983895579352975, -0.008306601084768772, 0.0012000155402347445, -0.02488863468170166, 0.007952051237225533, 0.0004524409305304289, 0.011805348098278046, -0.0038006985560059547, -0.009311809204518795, -0.020852217450737953, 0.0007568279979750514, 0.0060935853980481625, -0.028317250311374664, 0.005489681381732225, -0.028379587456583977, -0.017750879749655724, -0.014236547984182835, -0.008781932294368744, -0.023392511531710625, -0.017813216894865036, 0.004963700659573078, -0.01585734821856022, -0.01315341703593731, 0.008579331450164318, 0.008337770588696003, -0.019091155380010605, -0.006120858248323202, 0.03291471302509308, 0.003374069696292281, 0.01993272639811039, 0.007702697068452835, -0.007118273992091417, 0.018234001472592354, 0.007566331885755062, -0.02078988030552864, -0.008423485793173313, 0.007702697068452835, -0.004161092918366194, 0.011937816627323627, -0.015763839706778526, 0.006420862395316362, -0.020805465057492256, 0.004800062160938978, -0.0002073484647553414, -0.010589747689664364, 0.006603981833904982, 0.012311847880482674, 0.00039302455843426287, -0.0013178741792216897, 0.002290938748046756, 0.009763762354850769, -0.010098831728100777, 0.012132624164223671, 0.022223664447665215, -0.004449408035725355, 0.004363692831248045, 0.0031714695505797863, -0.019044402986764908, 0.021631449460983276, 0.0016558655770495534, -0.022769125178456306, 0.0019743761513382196, -0.017189832404255867, -0.013254716992378235, 0.00612865062430501, 0.02255094051361084, -0.015600201673805714, -0.0005878322990611196, 0.006323458626866341, -0.012678085826337337, -0.016753463074564934, -0.009311809204518795, -0.009280639700591564, 0.009218301624059677, 0.007223470136523247, -0.008119585923850536, 0.007967635989189148, 0.005626047030091286, -0.005337731447070837, -0.0025831502862274647, -0.01882621832191944, -0.009833893738687038, 0.010137793608009815, 0.004683177452534437, 0.015413186512887478, -0.0021467809565365314, 0.007994908839464188, -0.004963700659573078, 0.009257262572646141, -0.010987155139446259, 0.008407901041209698, -0.027257496491074562, 0.00023730014800094068, -0.007352043408900499, 0.012678085826337337, 0.02186521887779236, 0.005641631316393614, 0.016753463074564934, 0.001304237637668848, -0.03300821781158447, 0.0003547935630194843, -0.025449680164456367, 0.0311224814504385, -0.01807815581560135, -0.01089364755898714, -0.002253925194963813, 0.007258535362780094, -0.003050688887014985, -0.021319756284356117, 0.022566525265574455, -0.024047063663601875, -0.011267677880823612, -0.020088572055101395, -0.010854685679078102, -0.031184818595647812, -0.00626501627266407, -0.019262587651610374, 0.026836711913347244, 0.016613202169537544, 0.030919881537556648, 0.016254756599664688, 0.002043532906100154, -0.004780581220984459, -0.0011113780783489347, 0.010917024686932564, -0.029828958213329315, 0.0202444177120924, -0.003050688887014985, -0.0015555396676063538, -0.001873076194897294, -0.029704280197620392, 0.009732593782246113, -0.005781893152743578, -0.013722255825996399, 0.017439186573028564, 0.004219535272568464, 0.008252054452896118, -0.013387186452746391, 0.0016889829421415925, -0.01401057094335556, -0.010371563024818897, 0.007675424218177795, -0.0037344638258218765, 0.0004770353843923658, -0.0025052272249013186, -0.013620955869555473, -0.026665279641747475, -0.02574578858911991, 0.012265093624591827, -0.0013685241574421525, 0.011649501509964466, -0.01471967063844204, -0.0038084909319877625, 0.004301354289054871, 0.013254716992378235, 0.0015195001615211368, -0.010839100927114487, -0.025636695325374603, 0.00025471107801422477, -0.012880686670541763, -0.024966556578874588, 0.004503954201936722, -0.02884712629020214, -0.029735449701547623, 0.014439147897064686, 0.022223664447665215, -0.022161325439810753, 0.014283302240073681, 0.02044701762497425, 4.145751881878823e-05, 0.0033584849443286657, -0.004418238997459412, 0.012927439995110035, 0.005700073670595884, 0.01965220272541046, -0.01597423292696476, -0.015569033101201057, -0.007979324087500572, 0.0026182157453149557, 0.006218262482434511, 0.023969141766428947, 0.003960440866649151, 0.01879504881799221, -0.004098754376173019, -0.020462602376937866, 0.028208157047629356, -0.00029464668477885425, 0.03297705203294754, 0.016254756599664688, 0.011555993929505348, 0.010644293390214443, 0.01368329394608736, -0.02161586470901966, 0.001952947350218892, -0.01814049482345581, 0.012810555286705494, 0.01151703204959631, -0.006545539479702711, -0.004063689149916172, -0.004605254624038935, -0.006432550959289074, -3.2021518563851714e-05, -0.014057325199246407, 0.006865024100989103, -0.0017708021914586425, 0.005103962030261755, 0.028769204393029213, -0.009670254774391651, -0.013457316905260086, 0.010987155139446259, -0.007531266193836927, -0.019200248643755913, 0.010870270431041718, 0.004468888975679874, 0.0027351004537194967, 0.0020221041049808264, 0.003744204295799136, 0.014571617357432842, -0.03462902083992958, 0.011041701771318913, 0.010597540065646172, -0.008626085706055164, 0.021350925788283348, 0.0021311964374035597, 0.011852101422846317, 0.012163793668150902, 0.02152235619723797, 0.002900686813518405, 0.007344251032918692, -0.019714541733264923, -0.001591579057276249, 0.012794970534741879, 0.006498785223811865, 0.005719554610550404, 0.0052247429266572, -0.023189909756183624, -0.006140339188277721, -0.01490668673068285, -0.0012944972841069102, 0.006475408561527729, 0.007387108635157347, 0.0066702160984277725, -0.000530851015355438, -0.017127495259046555, 0.003841608064249158, -0.01523396372795105, 0.009101416915655136, 0.002657177159562707, 0.005477992817759514, -0.005314354319125414, 0.01023909356445074, 0.01779763214290142, -0.0033136792480945587, -0.011532616801559925, 0.009327393025159836, -0.025075649842619896, -0.004476681351661682, -0.008649462834000587, 0.03490954264998436, 0.020992480218410492, -0.004897465929389, 0.020166493952274323, 0.014930063858628273, -0.0003375043743290007, 0.009335185401141644, -0.005688385106623173, -0.004519538953900337, -0.008509200997650623, -0.017579447478055954, 0.011322224512696266, -0.016878141090273857, -0.003931219689548016, 0.025449680164456367, 0.015311886556446552, 0.011446901597082615, 0.007698800880461931, -0.0020260002929717302, 0.009288432076573372, 0.008088416419923306, 0.005575397051870823, 0.024312002584338188, -0.038400497287511826, 0.01748594082891941, 0.009662462398409843, -0.012452109716832638, -0.005980596877634525, -0.004075377248227596, 0.017361262813210487, -0.009280639700591564, -0.008633878082036972, -0.010379355400800705, 9.180313645629212e-05, -0.010581955313682556, -0.012452109716832638, 0.01080793235450983, -0.0005332861328497529, -0.006642943248152733, 0.02061844803392887, -0.0010305328760296106, -0.009319601580500603, 0.019808048382401466, 0.030826373025774956, 0.005735139362514019, 0.01734567992389202, 0.023158742114901543, 0.0027019830886274576, -0.003537708194926381, 0.004387069959193468, 0.006494889501482248, 0.011407939717173576, -0.012693670578300953, 0.013426147401332855, -0.021008064970374107, 0.011820931918919086, -0.022706788033246994, -0.01060533244162798, 0.005918258335441351, 0.02203664928674698, -0.005968908313661814, 0.013348224572837353, -0.033070556819438934, 0.004180573392659426, -0.007515681907534599, -0.01036377064883709, -0.011213132180273533, 0.005887089297175407, -0.017563864588737488, -0.0016889829421415925, -0.011283262632787228, 0.008579331450164318, -0.005731243174523115, -0.0014152780640870333, 0.035782281309366226, -0.0010509876301512122, -0.0029474408365786076, -0.00900011695921421, 0.006705281790345907, 0.006857231725007296, -0.00171041174326092, 0.005065000616014004, 0.005828646942973137, -0.008961155079305172, -0.014275509864091873, -0.006315666250884533, -0.0015331367030739784, -0.00022061973868403584, 0.002727308077737689, 0.03169911354780197, -0.02010415680706501, 0.026696449145674706, 0.004059792961925268, 0.016130078583955765, 0.007944258861243725, 0.008626085706055164, 0.01990155689418316, -0.005415654741227627, -0.0019237261731177568, -0.026150988414883614, 0.01130663976073265, 0.010340393520891666, 0.024966556578874588, -0.010317016392946243, 0.0011094299843534827, 0.012226132676005363, -0.012233925051987171, 0.014805386774241924, 0.016410602256655693, 0.013917063362896442, 0.012233925051987171, 7.171359175117686e-05, 0.004749412182718515, 0.004913050681352615, 0.024124987423419952, 0.00317536573857069, 0.011976778507232666, -0.0010987154673784971, 0.011906648054718971, -0.022052234038710594, 0.026384757831692696, 0.0060195582918822765, 0.007835166528820992, -0.01134560164064169, -0.015444356016814709, -0.01996389403939247, -0.003790958086028695, 0.008789723739027977, -0.016909310594201088, -0.014891101978719234, 0.023143157362937927, -0.027148403227329254, -0.003861089004203677, 0.021335341036319733, -0.0400836355984211, -0.004036415833979845, 0.0049987658858299255, -0.007706593256443739, 0.01642618700861931, -0.002577306004241109, 0.004897465929389, 0.010901439934968948, 0.008781932294368744, -0.004340315703302622, -0.0006823140429332852, 0.019683372229337692, 0.017392432317137718, -0.0037344638258218765, -0.02448343299329281, -0.019979478791356087, -0.0020260002929717302, 0.0031714695505797863, 0.03889920562505722, -0.04335640370845795, -0.012802762910723686, 0.0036526445765048265, 0.0026026309933513403, -0.008937777951359749, -0.014057325199246407, 0.011984570883214474, 0.020976895466446877, 0.02138209529221058, -0.0019081415375694633, -0.0014444992411881685, -0.02209898829460144, -0.0026357483584433794, 0.0003470012452453375, -0.007492304779589176, 0.006779308430850506, 0.0035260196309536695, 0.007079312577843666, 0.010745593346655369, 0.011415732093155384, -0.013776801526546478, -0.003459785133600235, 0.01745477132499218, 0.002563669579103589, 0.004211742896586657, 0.04488369822502136, -0.005746827460825443, -0.009311809204518795, -0.0032084831036627293, -0.006089689210057259, -0.008493616245687008, 0.0019772984087467194, 0.012662502005696297, 0.01603657193481922, -0.007644254714250565, 0.003457837039604783, 0.0025812021922320127, -0.00437927758321166, 0.02540292590856552, 0.0018058675341308117, 0.0014961232664063573, 0.012631332501769066, -0.007262431550770998, -0.00448447372764349, 0.02144443430006504, -0.004429927561432123, 0.0036136831622570753, -0.01514824852347374, 0.01118975505232811, 0.01466512493789196, 0.007344251032918692, 0.02169378660619259, -0.007994908839464188, -0.013449524529278278, -0.0002243941416963935, -0.002078598365187645, 0.03494071215391159, 0.0021292483434081078, -0.004344211891293526, 0.023361342027783394, -0.0005449745804071426, 0.0016480733174830675, -0.025870464742183685, 0.005668904632329941, 0.01973012648522854, 0.023626279085874557, -0.0060468316078186035, 0.010519616305828094, 0.009561162441968918, 0.019589863717556, -0.006105273962020874, 0.010433901101350784, 0.0026630214415490627, 0.00027565291384235024, -0.00021514076797757298, -0.0078312698751688, 0.004948115907609463, 0.015311886556446552, 0.024639280512928963, 0.03152767941355705, -0.010246885940432549, 0.012335225008428097, 0.0019870386458933353, -0.00875855516642332, -0.0030000389087945223, -0.002119507873430848, -0.03191729635000229, 0.006222158670425415, -0.008119585923850536, -0.009389732033014297, -0.029704280197620392, -0.02158469520509243, -0.00822867825627327, 0.017267756164073944, 0.004523435141891241, 0.0241717416793108, -0.01475084014236927, 0.013792386278510094, 0.005536435171961784, -0.004948115907609463, -0.0022987311240285635, -0.0031928985845297575, -0.006078000646084547, 0.0012311848113313317, 0.001752295414917171, -0.018701540306210518, 0.007881919853389263, 0.012802762910723686, -0.006572812329977751, -0.004457200411707163, 0.017563864588737488, -0.003424719674512744, 0.002207171404734254, -0.01237418595701456, 0.00325718498788774, 0.004885777365416288, 0.004480577539652586, -0.02730424888432026, -0.009833893738687038, -0.003633163869380951, 0.0032669254578649998, 0.002577306004241109, -0.030873127281665802, -0.023563941940665245, 0.0009467655327171087, -0.0019178820075467229, 0.019231418147683144, -0.00038961542304605246, -0.01130663976073265, 0.014033948071300983, -0.02420291118323803, 0.003500694641843438, -0.016067739576101303, -0.0013587838038802147, 0.001550669432617724, 0.02878478914499283, -0.0033954984974116087, -0.0004602332192007452, -0.0009492005920037627, -0.03422382101416588, -0.027428926900029182, -0.0027857504319399595, 0.002807179233059287, 0.013106662780046463, -0.005193573888391256, -0.003132508136332035, 0.0029143234714865685, 0.022769125178456306, -0.019324924796819687, -0.013231339864432812, -0.010426108725368977, -0.0038221273571252823, -0.0028441925533115864, 0.007722178008407354, 0.006981908343732357, 0.007874127477407455, -0.015537863597273827, 0.003866933286190033, 0.006931258365511894, 0.01597423292696476, -0.012101455591619015, 0.016301508992910385, -0.011665086261928082, -0.016254756599664688, 0.010714424774050713, 0.0066507356241345406, -0.00047825294313952327, 0.01996389403939247, 0.012865101918578148, 0.025589941069483757, -0.023906802758574486, -0.008306601084768772, 0.017049571499228477, -0.00470655458047986, -0.02485746517777443, 0.014556032605469227, -0.0035299158189445734, -0.022566525265574455, -0.014415770769119263, 0.0011912492336705327, -0.0219587255269289, -0.013831348158419132, -0.01708074100315571, -0.005481889005750418, 0.007955946959555149, 0.011291055008769035, -0.011945609003305435, 0.011898855678737164, 0.01348069403320551, -0.0024915907997637987, -0.004410446621477604, -0.018187249079346657, 0.01896647922694683, -0.018950894474983215, 0.012124832719564438, -0.010013116523623466, -0.013706671074032784, 0.008501408621668816, -0.015218378975987434, 0.024904219433665276, 0.0048624007031321526, 7.006990199442953e-05, -0.022083403542637825, -0.007207885384559631, 0.006572812329977751, -0.0016052155988290906, -0.013917063362896442, 0.017376847565174103, 0.002160417614504695, -0.009529993869364262, -0.013231339864432812, 0.004246808122843504, 0.026150988414883614, -0.03238483518362045, 0.011236509308218956, 0.00988064706325531, 0.0024273041635751724, -0.004979285411536694, 0.0040052467957139015, -0.002000675303861499, -0.02619774267077446, 0.00941310916095972, -0.0054429275915026665, 0.00024083103926386684, -0.027179572731256485, -1.2845133824157529e-05, 0.01003649365156889, -0.00047873996663838625, -0.015483316965401173, -0.006736450828611851, -0.000613157288171351, -0.0005152664380148053, 0.002127300249412656, -0.017221001908183098, -0.027943218126893044, -0.0020201560109853745, -0.004885777365416288, -0.004352004267275333, -0.011657293885946274, -0.014431355521082878, -0.009732593782246113, -0.00402083108201623, -0.007352043408900499, 0.014454732649028301, 0.0019285964081063867, -0.007893608883023262, -0.013823555782437325, 0.016317093744874, 0.004835127387195826, 0.008189716376364231, -0.017984649166464806, 0.020805465057492256, -0.0010685203596949577, -0.004476681351661682, 0.00908583216369152, -0.009904024191200733, -0.026088649407029152, -0.005146820098161697, 0.01056637056171894, -0.010550785809755325, 0.004605254624038935, 0.007854647003114223, -0.010200131684541702, -0.00872738566249609, 0.009561162441968918, 0.003422771580517292, -0.03431732580065727, -0.00040666109998710454, 0.007558539509773254, 0.001304237637668848, -0.005427342839539051, 0.00900011695921421, 0.004476681351661682, 0.0018701540539041162, 0.0091403778642416, -0.010371563024818897, -0.012865101918578148, 0.01528850942850113, -0.0013178741792216897, 0.002851984929293394, 0.008439070545136929, -0.040738191455602646, -0.02853543497622013, -0.019465187564492226, -0.009981947019696236, 0.014602786861360073, -0.009849478490650654, -0.006966324057430029, 0.01127547025680542, -0.021148325875401497, 0.01680021733045578, -0.0047338274307549, 0.004874089267104864, 0.012639124877750874, 0.001379238674417138, 0.01130663976073265, -0.004581877496093512, 0.012428732588887215, 0.012304055504500866, 0.009124793112277985, 0.008711800910532475, 0.01645735651254654, 0.014345640316605568, -0.0027156195137649775, 0.015343056060373783, -0.003085754346102476, 0.02272237278521061, 0.022784709930419922, -0.004231223836541176, -0.020291171967983246, 0.01993272639811039, 0.014774217270314693, -0.0031519888434559107, -0.016317093744874, -0.009257262572646141, -0.026805542409420013, -0.013613163493573666, -0.00402083108201623, -0.00836893916130066, -0.009818308986723423, 0.013379394076764584, 0.010355978272855282, -0.011813139542937279, -0.02509123459458351, -0.011096247471868992, -0.023221079260110855, 0.002316263737156987, -0.002579254098236561, -0.00593773927539587, 0.014758632518351078, 0.03168352693319321, 0.0009594280272722244, -0.0034149792045354843, -0.021085986867547035, 0.005216950550675392, 0.03098221868276596, -0.015600201673805714, 0.010659878142178059, -0.008306601084768772, -0.006600085645914078, 0.0029883503448218107, -0.012693670578300953, 0.006502681411802769, -0.008135170675814152, -0.008384523913264275, -0.005103962030261755, 0.01282614003866911, -0.013067701831459999, 0.018202833831310272, 0.018156079575419426, -0.011571578681468964, -0.0017347626853734255, 0.004235119558870792, -0.002160417614504695, -0.010215716436505318, 0.0022461330518126488, -0.005641631316393614, 0.012888478115200996, -0.00905466265976429, 0.009592331945896149, -0.009974154643714428, -0.0063000814989209175, 0.002641592640429735, 0.0022578213829547167, -0.02030675671994686, -0.016566447913646698, -3.6983026802772656e-05, -8.157573029166088e-05, -0.007445550989359617, 0.004090962000191212, -0.0074650319293141365, 0.0033935504034161568, 0.015615786425769329, 0.0034344601444900036, -0.0014172261580824852, 0.01053520105779171, -0.02192755602300167, -0.002569513861089945, -0.005493577569723129, 0.018748294562101364, 0.016504108905792236, 0.01368329394608736, -0.014610578306019306, -0.0036078388802707195, -0.00547409662976861, -0.006479304749518633, 0.0019695060327649117, -0.0014552136417478323, -0.0073013934306800365, -0.006471512373536825, -0.029564019292593002, -0.004137715790420771, 0.007102689240127802, -0.002641592640429735, 0.0226132795214653, 0.0044221351854503155, 0.008922193199396133, 0.0022500292398035526, -0.002164313802495599, 0.010581955313682556, -0.03360043466091156, 0.02440551109611988, 0.003880569711327553, 0.004613046534359455, -0.0022928868420422077, 0.00900011695921421, -0.0024682136718183756, -0.005123442970216274, -0.006845543161034584, -0.00781568605452776, -0.009685839526355267, -0.003983817994594574, 0.0002878284140024334, -0.00236691371537745, -0.011259886436164379, -0.002497434848919511, 0.010994947515428066, 0.014571617357432842, -0.0041688852943480015, -0.009646878577768803, 0.006432550959289074, -0.014594994485378265, 0.01676904782652855, 0.010340393520891666, 0.015880724415183067, -0.007313081528991461, 0.0003840147110167891, 0.01389368623495102, -0.003664333140477538, -0.0030915983952581882, 0.024015896022319794, 0.0016003453638404608, -0.006074104458093643, 0.009039077907800674, -0.010987155139446259, -0.015569033101201057, 0.0059299468994140625, 0.02702372707426548, 0.019153494387865067, -0.002729256171733141, 0.015872932970523834, 0.0035747215151786804, 0.004328627604991198, -0.020197663456201553, -0.010285847820341587, -0.024732787162065506, 0.0031617293134331703, -0.01882621832191944, -0.004449408035725355, -0.012872894294559956, 0.007316977716982365, -0.004983181599527597, 0.0033623811323195696, -0.005665008444339037, 0.003379913978278637, -0.010114416480064392, 0.0012613799190148711, 0.0034325120504945517, -0.0011931972112506628, -0.006494889501482248, -0.020150911062955856, -0.01471967063844204, 0.020119741559028625, -0.004687073640525341, 0.014400186017155647, 0.020680787041783333, 0.0034792658407241106, 0.0004244373121764511, -0.013784593902528286, 0.004924739245325327, -0.008524785749614239, 0.019667787477374077, -0.01332484744489193, 0.010636501014232635, -1.0136089258594438e-05, -0.019979478791356087, -0.012132624164223671, 0.005594877526164055, -0.007028662599623203, 0.009093624539673328, 0.0045390198938548565, 0.027086064219474792, -0.008579331450164318, -0.011158586479723454, -0.012405355460941792, 0.0037734254729002714, -0.017330095171928406, 0.004293561913073063, -0.010293640196323395, -0.006607877556234598, 0.005259808152914047, -0.0031558850314468145, 0.007503993343561888, 0.02354835718870163, -0.003264977363869548, 0.023361342027783394, 0.019527524709701538, 0.008244263008236885, -0.020166493952274323, -0.02984454296529293, -0.01127547025680542, 0.010542993433773518, -0.02468603476881981, 0.017875555902719498, -0.02471720241010189, 0.01585734821856022, -0.017392432317137718, 0.005458512343466282, -0.008719593286514282, -0.009304016828536987, -0.0008834530017338693, 0.012896270491182804, 0.020665202289819717, -0.0032045869156718254, 0.003699398599565029, 0.02403148077428341, 0.023470433428883553, -0.03219781816005707, 0.0047182426787912846, -0.0061831967905163765, -0.0005965986056253314, -0.00896894745528698, 0.012685878202319145, 0.022130155935883522, -0.018530109897255898, 0.005505266133695841, 0.007550747133791447, 0.0057156584225595, -0.001305211684666574, 0.0084858238697052, -0.004581877496093512, 0.0029435446485877037, -0.023299003019928932, -0.012343017384409904, -0.004145508166402578, -0.004032519645988941, -0.02747568115592003, 0.011158586479723454, 0.003826023545116186, -0.01793789491057396, 0.010426108725368977, 0.015070324763655663, 0.006202677730470896, -0.005384485237300396, -0.009989739395678043, 0.006479304749518633, -0.006732554640620947, -0.0059299468994140625, 0.006385797169059515, -0.02668086439371109, 0.01725217141211033, 0.009420901536941528, -0.004694866016507149, -0.01873270981013775, 0.01442356314510107, -0.009132585488259792, 0.006378004793077707, 0.042920034378767014, 0.01023909356445074, -0.001961713656783104, 0.011384562589228153, 0.007052039261907339, 0.008750762790441513, -0.0065533313900232315, -0.009701424278318882, 0.004297458101063967, 0.007994908839464188, 0.0014435251941904426, -0.0018711281009018421, -0.019013233482837677, -0.02747568115592003, 0.027210742235183716, -0.014431355521082878, -0.0027818542439490557, -0.0054429275915026665, -0.013223547488451004, -0.0026045790873467922, -0.014898894354701042, 0.025356171652674675, -0.005002662073820829, -0.00056786451023072, -0.021600279957056046, -0.008142962120473385, 0.003381862072274089, 0.007371523883193731, -0.01397940143942833, 0.006405277643352747, -0.005006558261811733, 0.0003416440449655056, 0.016067739576101303, 0.017641786485910416, 0.009904024191200733, -0.008532578125596046, 0.006296185310930014, -0.0025928907562047243, 0.0035630331840366125, -0.0005571500514633954, -0.0002370566362515092, 0.016301508992910385, 0.023937972262501717, 0.01890414021909237, 0.0020260002929717302, -0.005057208240032196, -0.008337770588696003, -0.0252314954996109, -0.0005522798746824265, 0.0012126780347898602, -0.007055935449898243, 0.02055611088871956, -0.0029435446485877037, 0.02386004850268364, -0.01594306342303753, 0.02802114188671112, -0.0012448213528841734, 0.0002810101432260126, -0.02847309596836567, -0.004698762204498053, -0.007192301098257303, 0.008929985575377941, -0.015989817678928375, 0.002234444487839937, 0.02110157161951065, -0.0004081221704836935, -0.016472941264510155, -0.015420978888869286, -0.026525018736720085, -0.013067701831459999, -0.011127416975796223, 0.009717009030282497, -0.01278717815876007, -0.01700281724333763, 0.00610137777402997, 0.005809166003018618, 0.009872854687273502, 0.02984454296529293, 0.007913089357316494, -0.01577942445874214, 0.006845543161034584, -0.005205261986702681, 0.010161170735955238, 0.0010373510885983706, 0.0018117118161171675, 0.02189638651907444, 0.0002508149482309818, 0.012600162997841835, -0.0061364430002868176, 0.012950817123055458, 0.01979246363043785, 0.00367991765961051, 0.001145469374023378, -0.008587123826146126, -0.0003043870674446225, -0.010589747689664364, -0.0435122512280941, -0.008166339248418808, -0.0002598247956484556, -0.004815646912902594, -0.01990155689418316, -0.010317016392946243, 0.007429966237396002, 0.008493616245687008, -0.02044701762497425, 0.009109209291636944, -0.010176755487918854, -0.004948115907609463, -0.014322263188660145, 0.006331251002848148, 0.017018401995301247, 0.00023632611555512995, 0.005871504545211792, 0.014143040403723717, -0.0016227483283728361, 0.004741619806736708, -0.005852023605257273, -0.014828762970864773, 0.01742360182106495, 0.020992480218410492, 0.006907881703227758, -0.006039039231836796, 0.015732672065496445, -0.003588358173146844, 0.00684164697304368, 0.0005225716740824282, 0.023563941940665245, 0.00716892397031188, 0.002010415541008115, 0.0005352342268452048, 0.008057246915996075, 0.0007441655034199357, 0.003974077291786671, -0.018358679488301277, -0.012007948011159897, -0.0004526844422798604, 0.016395017504692078, 0.0008313419530168176, -0.005668904632329941, 0.01130663976073265, -0.013200171291828156, 0.00798711646348238, -0.008252054452896118, 0.017859971150755882, -0.00872738566249609, 0.004071481060236692, -0.013636540621519089, -0.0006487097125500441, 0.013854725286364555, 0.02141326479613781, 0.015958648175001144, 0.0014493693597614765, 0.0002064961736323312, -0.017501525580883026, -0.001137677114456892, -0.0265406034886837, -0.004289665725082159, -0.006452031433582306, 0.010971570387482643, 0.006070208270102739, 0.007663735654205084, -0.008181924000382423, -0.0019500252092257142, -0.020743126049637794, -0.001713333884254098, -0.025605525821447372, 0.0010373510885983706, -0.006853335537016392, 0.013784593902528286, -0.01291185524314642, -0.008945570327341557, -0.014462525025010109, -0.0034032908733934164, 0.006939050741493702, 0.030047142878174782, -0.01323913224041462, -0.005092273931950331, 0.010465070605278015, -0.022987309843301773, 0.005926050711423159, -0.022332755848765373, 0.007663735654205084, -0.013091078959405422, 0.006284496746957302, -0.023080818355083466, -0.0007777698338031769, 0.02269120328128338, -0.006487097125500441, -0.015514486469328403, -0.013130039907991886, 0.009202716872096062, 0.012709255330264568, -0.0073013934306800365, 0.024280833080410957, -0.005739035550504923, 0.008610500954091549, -0.01882621832191944, 0.001587682869285345, -0.012553409673273563, 0.030888712033629417, -0.006381900981068611, -0.00432083522900939, 0.017750879749655724, -0.001061702030710876, 0.003220171667635441, 0.023797711357474327, 0.004827335011214018, 3.8961541577009484e-05, 0.01810932531952858, -0.00938193965703249, 0.005824750754982233, -0.006331251002848148, -0.010854685679078102, 0.009966363199055195, -0.0050727929919958115, 0.009654670022428036, 0.0013957972405478358, -0.002117559779435396, -0.010917024686932564, 0.028379587456583977, -0.0084858238697052, 0.006413070019334555, -0.0015701502561569214, 0.00795984361320734, -0.025309419259428978, -0.012779385782778263, 0.012514447793364525, 0.005544227547943592, -0.026789957657456398, -0.011166377924382687, -0.005770204588770866, -0.01962103322148323, -0.020711956545710564, -0.020696371793746948, 0.028426341712474823, -0.007609189487993717, 0.01742360182106495, -0.00801828596740961, 0.02004181779921055, -0.017376847565174103, -0.03300821781158447, -0.006132546812295914, 0.006459823809564114, 0.009732593782246113, -0.0002987863263115287, -0.016020987182855606, 0.021802879869937897, 0.02540292590856552, 0.005626047030091286, -0.011657293885946274, 0.019465187564492226, -0.02203664928674698, 0.0012925491901114583, 0.008532578125596046, -0.017018401995301247, -0.003866933286190033, -0.003342900425195694, -0.02113274112343788, -0.0011513136560097337, -0.028317250311374664, 0.0023026273120194674, -0.012054701335728168, 0.0014707982772961259, 0.008945570327341557, -0.005029935389757156, 0.0029513370245695114, -0.007336458656936884, -0.012950817123055458, -0.0003964336938224733, -0.0006711125606670976, 0.05657216161489487, 0.013457316905260086, 0.0030370522290468216, 0.011026117019355297, 0.003713035024702549, -0.020493771880865097, -0.01134560164064169, 0.001059753936715424, -0.010472862981259823, -0.006822166033089161, 0.0003508974041324109, 0.0016149559523910284, 0.009927401319146156, 0.005076689179986715, -0.007955946959555149, -0.002090286696329713, -0.009233885444700718, -0.01790672540664673, -0.01700281724333763, 0.018514525145292282, -0.008127378299832344, 0.001385082839988172, 0.0048624007031321526, 0.013169001787900925, 0.0030078310519456863, 0.010200131684541702, -0.006035143043845892, 0.008181924000382423, 0.0014513174537569284, 0.011485862545669079, 0.025496434420347214, 0.000814783270470798, -0.03155884891748428, 0.016550863161683083, 0.0025500329211354256, -0.0024623696226626635, -0.005953324027359486, 0.013956025242805481, -0.006031246855854988, -0.004048104397952557, -0.017127495259046555, -0.007429966237396002, 0.017298925668001175, -0.025449680164456367, -0.020852217450737953, -0.01725217141211033, 0.00015182826609816402, -0.003389654215425253, -0.0009604020160622895, -0.002968869637697935, 0.002033792668953538, 0.001958791632205248, -0.010917024686932564, 0.0007962765521369874, 0.01600540243089199, 0.014696294441819191, -0.0029532848857343197, -0.01782880164682865, -7.859274046495557e-05, -0.02716398797929287, -0.006366316229104996, -0.0034364082384854555, 0.012537824921309948, 0.002924063941463828, 0.0017367107793688774, 0.022909387946128845, -0.010745593346655369, -0.003964337054640055, -0.00011907621956197545, 0.009483239613473415, -0.0004239502886775881, -0.02867569588124752, -0.02027558721601963, -0.0008225755882449448, -0.014649540185928345, -0.027428926900029182, -0.014267717488110065, -0.01062091626226902, -0.0073208739049732685, 0.0051624043844640255, 0.01528850942850113, -0.0235171876847744, -0.000610722170677036, -0.007578019984066486, -0.01184430904686451, -0.011953401379287243, 0.0015808646567165852, 0.0010753385722637177, 0.013878101482987404, 0.016987232491374016, -0.003672125516459346, -0.015452148392796516, -0.020150911062955856, 0.0053961738012731075, 0.010441693477332592, 0.0046559046022593975, 0.0026026309933513403, -0.006339042913168669, 0.0062806010246276855, 0.015514486469328403, 0.005384485237300396, 0.01979246363043785, 0.006568916141986847, 0.0030078310519456863, 0.0051896777004003525, -0.027896465733647346, -0.01645735651254654, 0.0036409562453627586, -0.007336458656936884, 0.018514525145292282, -0.019231418147683144, -0.000979882781393826, -0.0063741086050868034, 0.002072754083201289, 0.0029084791895002127, 0.021662618964910507, 0.0017182041192427278, 0.013714463450014591, 0.018031401559710503, 0.02004181779921055, -0.013527448289096355, 0.018156079575419426, 0.027257496491074562, 0.005497473757714033, 0.008571540005505085, 0.015818387269973755, 0.009179339744150639, 0.010784555226564407, -0.010410523973405361, -0.006865024100989103, 0.012600162997841835, 0.0004923765081912279, -0.012452109716832638, 0.010472862981259823, -0.004815646912902594, -0.0038844658993184566, -0.0009638111805543303, 0.000152315289597027, 0.003960440866649151, -0.011057285591959953, -0.017922310158610344, 0.04637981951236725, 0.00955337006598711, 0.004200054332613945, 0.0040052467957139015, 0.009420901536941528, -0.017813216894865036, 0.021802879869937897, 0.009755970910191536, 0.01574825495481491, 0.006728658452630043, -0.007854647003114223, 0.008142962120473385, 0.0056299432180821896, 0.007663735654205084, 0.012522240169346333, -0.019948309287428856, 0.022628864273428917, -0.004293561913073063, 0.011033909395337105, -0.01979246363043785, 0.0047026583924889565, 0.006853335537016392, 0.031512096524238586, 0.009966363199055195, -0.010901439934968948, 0.0071845087222754955, 0.0025500329211354256, -0.023189909756183624, -0.012506655417382717, -0.007874127477407455, -0.0068338545970618725, -0.017221001908183098, 0.012319640256464481, -0.005298770032823086, 0.01845218613743782, -0.0070676240138709545, 0.010823517106473446, -0.0034851101227104664, -0.004433823749423027, 0.0030390003230422735, 0.013792386278510094, 0.02557435631752014, -0.005357212387025356, -0.02770945057272911, 0.006837750785052776, -0.0182807557284832, -0.013543032109737396, -0.00840010866522789, -0.007850751280784607, 0.015732672065496445, 0.02027558721601963, -0.011478071101009846, -0.011937816627323627, -0.012865101918578148, 0.010971570387482643, 0.0058831931091845036, -0.015382017008960247, -0.03799529746174812, 0.005014350637793541, 0.012249508872628212, 0.002209119498729706, 0.0033954984974116087, 0.01597423292696476], "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830": [0.0035219721030443907, -0.019791288301348686, -0.00288013624958694, 0.04085000231862068, 0.01930381916463375, -0.010236873291432858, 0.01927132159471512, 0.022049900144338608, -0.01704520732164383, 0.02991442009806633, 0.01984003558754921, 0.027753302827477455, 0.018930092453956604, -0.03101935237646103, 0.026355886831879616, 0.030791865661740303, -0.018913842737674713, 0.022277386859059334, 0.034577883780002594, -0.029995664954185486, 0.06291615217924118, 0.01678522303700447, -0.06512601673603058, 0.04387231543660164, 0.0011577416444197297, 0.014575358480215073, -0.0190275851637125, 0.008238245733082294, -0.03828265890479088, 0.0072958036325871944, 0.019888782873749733, 0.019791288301348686, 0.007226745132356882, -0.012755469419062138, 0.0028171713929623365, -0.02752581611275673, 0.02165992558002472, 0.009554415009915829, -0.05264677852392197, 0.013226690702140331, -0.02880948781967163, 0.0006398045807145536, 0.0005915653891861439, 0.005691214464604855, -0.055539101362228394, 0.004281613044440746, -0.04097999259829521, 0.03539033606648445, -0.04595218971371651, -0.03561782091856003, 0.012397991493344307, -0.006475228816270828, 0.028874482959508896, 0.0135597949847579, 0.02811077982187271, -0.02434101141989231, -0.0108949588611722, 0.021562431007623672, -0.01307232491672039, -0.07988011091947556, 0.017272694036364555, -0.0025307827163487673, 0.006881454028189182, -0.025965912267565727, -0.01377103291451931, -0.015322812832891941, 0.002979661338031292, -0.008620097301900387, -0.03847764432430267, 0.013649164699018002, -0.016882717609405518, 0.010651223361492157, -0.042864877730607986, 0.032205529510974884, 0.041564956307411194, -0.01987253502011299, 0.04796706512570381, 0.05856141820549965, 0.0004453243163879961, -0.014096012338995934, -6.15367607679218e-05, -0.01348667498677969, -0.0038063295651227236, -0.0338304303586483, 0.03340795636177063, -0.009310680441558361, 0.0201325174421072, -0.03428540378808975, 0.014429117552936077, -0.0029166964814066887, 0.009676283225417137, -0.0002297711034771055, 0.00643460638821125, -0.017987649887800217, -0.054044194519519806, 0.023398568853735924, -0.012479236349463463, 0.02084747515618801, 0.024357259273529053, -0.016354624181985855, -0.030824363231658936, -0.013787281699478626, 0.0032315209973603487, 0.023252326995134354, 0.024389758706092834, -0.0018767601577565074, -0.0013425741344690323, -0.009651909582316875, 0.00541498139500618, 0.03399292007088661, -0.037535201758146286, -0.030093159526586533, 0.009936267510056496, -0.024373508989810944, -0.06272116303443909, -0.026453381404280663, -0.04055751860141754, -0.042019929736852646, -0.0021590867545455694, -0.009903769008815289, 0.0419224351644516, -0.0044034807942807674, -0.005565284285694361, 0.0017650482477620244, -0.027022097259759903, 0.01570466347038746, 0.00062507891561836, 0.010959954001009464, 0.006182746961712837, 0.0018686356488615274, 0.003310734871774912, 0.00755172548815608, 0.022699860855937004, 0.012617353349924088, 0.01602964475750923, -0.0041800569742918015, -0.01452661119401455, 0.02388603799045086, -0.02154618129134178, 0.011731781996786594, -0.03506535291671753, -0.03425290435552597, 0.011341806501150131, 0.0012410178314894438, 0.009830648079514503, -0.018475119024515152, -0.04276738315820694, 0.041564956307411194, 0.0024393820203840733, 0.033196717500686646, -0.06236368417739868, -0.043514836579561234, 0.00716174952685833, 0.012917960062623024, 0.016224632039666176, 0.010586227290332317, 0.018962590023875237, -0.0040927184745669365, -0.0026465568225830793, 0.02669711597263813, 0.00594713632017374, -0.047739580273628235, 0.0038408588152378798, 0.04042752832174301, 0.0185726135969162, -0.007563912309706211, 0.06151873618364334, 0.025088464841246605, -0.0038571078330278397, 0.01411226112395525, -0.005459665786474943, -0.018978839740157127, 0.011479922570288181, 0.018361376598477364, -0.029264459386467934, 0.04260489344596863, 0.008132627233862877, 0.06662092357873917, 0.017288941890001297, -0.04085000231862068, -0.042832378298044205, 0.01202426478266716, -0.009115692228078842, 0.020571241155266762, 0.022472376003861427, 0.029751930385828018, -0.01954755373299122, 0.024633493274450302, 0.0001137430444941856, -0.00597963435575366, -0.020506246015429497, -0.012121758423745632, -0.009278181940317154, 0.03360294550657272, 0.004383169114589691, -0.0014024922857061028, -0.034317899495363235, -0.04013504460453987, -0.020863723009824753, 0.0005839486257173121, -0.03649526834487915, -0.037405211478471756, -0.005768396891653538, 0.03597529977560043, -0.04539972171187401, -0.027184586971998215, 0.012178629636764526, -0.01745143160223961, 0.04910449683666229, -0.03006066009402275, 0.017435183748602867, -0.024227267131209373, -0.019076332449913025, -0.010959954001009464, -0.029751930385828018, 0.01195926871150732, -0.005167183931916952, 0.03316422179341316, -0.028045784682035446, -0.044099800288677216, -0.006320863496512175, 0.022131146863102913, -0.01832887902855873, -0.02014876715838909, -0.04253989830613136, -0.010951830074191093, 0.015542173758149147, -0.007242994382977486, -0.02112370729446411, -0.011626163497567177, 0.028728242963552475, -0.006934263277798891, 0.003993193153291941, -0.02000252529978752, -0.004224741365760565, 0.05381670594215393, 0.03987506031990051, 0.007803584914654493, -0.00755172548815608, 0.01307232491672039, -0.005540911108255386, 0.029573190957307816, -0.013502923771739006, -0.06298114359378815, 0.04276738315820694, 0.009619411081075668, 0.015761535614728928, 0.01914132945239544, 0.039615076035261154, 0.010407487861812115, -0.00033564353361725807, 0.008969451300799847, 0.006194933317601681, -0.031539320945739746, -0.030401889234781265, -0.004326297901570797, 0.01831262931227684, -0.018832597881555557, -0.0019021492917090654, -0.018946340307593346, 0.01243048906326294, 0.030369391664862633, -0.001692943274974823, -0.003253863425925374, -0.003940383903682232, -0.028175776824355125, 0.0038347654044628143, -0.029280709102749825, -0.0010480608325451612, 0.03409041464328766, 0.03373293578624725, -0.004086624830961227, -0.02531595155596733, 0.032790493220090866, 0.012909835204482079, -0.0319942943751812, 0.012796091847121716, -0.014014767482876778, 0.015111575834453106, -0.02026250958442688, -0.04741460084915161, -0.0004478632181417197, 0.0031441827304661274, -0.006186808925122023, -0.0035869679413735867, -0.00030695387977175415, 0.00029832159634679556, 0.01481096912175417, -0.06350111216306686, 0.006759586278349161, 0.014827217906713486, -0.00844948273152113, 0.025770923122763634, -0.017792660742998123, 0.021594928577542305, 0.02947569638490677, -0.0012633602600544691, 0.009351302869617939, -0.007827959023416042, 0.06320863217115402, -0.0007378064328804612, -0.0009038509451784194, -0.008644470945000648, 0.024665990844368935, 0.009741279296576977, -0.0046959626488387585, 0.011934895068407059, -0.011723658069968224, -0.00866884458810091, 0.0068286447785794735, 0.03896511718630791, -0.017792660742998123, -0.015217194333672523, -0.02557593584060669, 0.005260615609586239, -0.007811709772795439, -2.427829940643278e-06, -0.013112947344779968, -0.013892900198698044, 0.013088574633002281, 0.012682349421083927, -0.013714160770177841, -0.04094749316573143, -0.009838772937655449, 0.029816925525665283, -0.05300425738096237, -0.01069997064769268, 0.007860456593334675, 0.006113688461482525, -0.04042752832174301, -0.028776990249753, -0.041142482310533524, -0.030304396525025368, -0.0014664727495983243, -0.04572470113635063, -0.06538599729537964, -0.017857657745480537, -0.07539539039134979, 0.02333357185125351, -0.01530656311661005, -0.022033652290701866, -0.01745143160223961, 0.022147394716739655, -0.021302446722984314, 0.018978839740157127, 0.01000126264989376, 0.014071638695895672, 0.0233498215675354, -0.05105437710881233, 0.022114897146821022, 0.0009993138955906034, 0.003026377409696579, 0.03968007117509842, -0.03163681551814079, 0.013177943415939808, -0.007807647343724966, -0.013389180414378643, 0.013129197061061859, -0.006243680603802204, 0.013429803773760796, 0.004253177437931299, -0.05264677852392197, 0.018215134739875793, -0.00914819072932005, -0.007905141450464725, 0.0057927705347537994, -0.016094639897346497, -0.042572394013404846, -0.004366920329630375, 0.024389758706092834, -0.017857657745480537, 0.028825735673308372, 0.014875965192914009, -0.009237559512257576, -0.017370186746120453, -0.021594928577542305, 0.02460099570453167, 0.0046553402207791805, -0.012674224562942982, 0.029735680669546127, 0.01027749665081501, -0.011138693429529667, -0.021594928577542305, 0.01844262145459652, 0.010423737578094006, 0.02404852956533432, 0.03337545692920685, 0.015745285898447037, -0.0027420197147876024, -0.028630748391151428, -0.016817720606923103, 0.029459448531270027, -0.051249366253614426, -0.004606592934578657, -0.03574781119823456, 0.017727665603160858, 0.028988227248191833, 0.011114319786429405, 0.009903769008815289, -0.005983696319162846, -0.008408860303461552, -0.009749403223395348, -0.022033652290701866, -0.02669711597263813, -0.016427744179964066, -0.019368814304471016, -0.011821151711046696, -0.013039827346801758, 0.026355886831879616, 0.04289737716317177, -0.004773145541548729, -0.0053743585012853146, 0.010106882080435753, 0.011211814358830452, 0.023674800992012024, 0.022456126287579536, -0.028403261676430702, 0.04741460084915161, -0.045074742287397385, -0.007836082950234413, 0.014689100906252861, 0.06935075670480728, -0.01643586903810501, 0.02893947996199131, 0.0037677381187677383, 0.019043834879994392, 0.00010771313827717677, -0.0019366784254088998, 0.003501660656183958, -0.014835342764854431, 0.015022206120193005, 0.029703183099627495, -0.003117778105661273, -0.009253809228539467, 0.0023134523071348667, 0.002122526289895177, 0.005825268570333719, 0.04861702397465706, 0.009741279296576977, 0.014510362409055233, -0.01411226112395525, -0.0015934181865304708, -0.005187495145946741, -0.020327506586909294, -0.023999782279133797, -0.021838663145899773, -0.05378421023488045, 0.013697911985218525, -0.0029004474636167288, 0.02126994915306568, -0.036267779767513275, 0.0011912552872672677, -0.04250739887356758, -0.002364230342209339, 0.007673593237996101, -0.008563226088881493, 0.010253123007714748, -0.013470426201820374, 0.019823787733912468, -0.045789700001478195, -0.045074742287397385, 0.005857766605913639, 0.016427744179964066, -0.004598468542098999, 0.014420992694795132, -0.03184805065393448, -0.002512502484023571, 0.029816925525665283, 0.025202207267284393, 0.0017447370337322354, 0.007628908380866051, -0.01927132159471512, -0.025819670408964157, 0.023804793134331703, 0.017305191606283188, 0.018686356022953987, -0.043807320296764374, -0.05420668423175812, 0.003406197763979435, -0.009911893866956234, -0.006479291245341301, -0.03230302408337593, -0.008595723658800125, -0.014120385982096195, -0.01745143160223961, -0.00016249006148427725, 0.020067522302269936, -0.005999945569783449, 0.01987253502011299, -0.008441358804702759, 0.010504982434213161, -0.023739797994494438, -0.004602530971169472, 0.0025348449125885963, 0.00405818922445178, -0.02698959782719612, -0.03186430037021637, -0.0058212061412632465, 0.014022892341017723, -0.042994868010282516, 0.022342383861541748, -0.046342164278030396, -0.009814399294555187, -0.027720803394913673, -0.020798727869987488, 0.002628276590257883, -0.007856394164264202, 0.0011932863853871822, 0.011772404424846172, -0.04575720056891441, -0.07162562012672424, 0.012812341563403606, -0.05563659593462944, 0.02406477741897106, 0.024211019277572632, 0.0236260537058115, -0.022261137142777443, -0.02502346970140934, 0.03786018490791321, 0.02042500115931034, 0.010041886009275913, -0.026112152263522148, -0.0008977575926110148, -0.0025185958947986364, -0.03363544121384621, -0.013811655342578888, -0.009473170153796673, -0.021448688581585884, 0.006454917602241039, 0.0008144814055413008, -0.004139434080570936, 0.03248176351189613, -0.004399418365210295, 0.014161008410155773, -0.000687536085024476, -0.022114897146821022, -0.011683035641908646, 0.010244998149573803, 0.0009170532575808465, 0.005756210535764694, -0.05800895020365715, 0.03994005545973778, -0.01417725719511509, -0.0017335658194497228, 0.02570592798292637, 0.008075756020843983, -0.021741170436143875, 0.007336426060646772, 0.007108940277248621, 0.019888782873749733, -0.01800389774143696, 0.008685093373060226, -0.020571241155266762, 0.0013567919377237558, 0.0003252339956816286, -0.03555282577872276, -0.008912580087780952, -0.013364807702600956, -0.0061583733186125755, -0.028127029538154602, -0.00788889266550541, 0.006398045923560858, 0.009586913511157036, 0.014169133268296719, -0.007872642949223518, 0.004358795937150717, -0.010163753293454647, 0.0010673565557226539, -0.025819670408964157, 0.010456235148012638, -0.0017487992299720645, -0.012527983635663986, 0.041727446019649506, -0.007060192991048098, -0.005443417001515627, 0.013413554057478905, -0.016833970323204994, -0.023089837282896042, -0.010708094574511051, 0.0007804600754752755, 0.03987506031990051, -0.027070844545960426, -0.018247634172439575, 0.0005509428447112441, -0.015184695832431316, -0.01592402532696724, 0.004106936044991016, -0.02221239171922207, 0.0032802680507302284, 0.03357044607400894, -0.012991080060601234, 0.03834765404462814, -0.008815085515379906, 0.05232179909944534, 0.004184118937700987, 0.006572722923010588, -0.005370296537876129, 0.027330826967954636, 0.023252326995134354, -0.006962698884308338, 0.00024170396500267088, 0.02195240743458271, -0.00298981717787683, 0.006142124067991972, -0.010033761151134968, 0.0520293153822422, -0.022131146863102913, 0.00712925149127841, 0.016996460035443306, 0.005561222322285175, -0.0017802816582843661, -0.021302446722984314, 0.023951034992933273, -0.0008271759725175798, 0.030141904950141907, -0.01787390559911728, 0.030369391664862633, 0.008961326442658901, -0.026729615405201912, -0.004996569361537695, 0.009164439514279366, -0.011601789854466915, 0.03665775805711746, -0.012820465490221977, -0.013056076131761074, 0.029248209670186043, -0.02292734757065773, 0.030548131093382835, 0.014242253266274929, 0.0201325174421072, -0.03409041464328766, 0.0018280131043866277, -0.0020128455944359303, -0.014161008410155773, 0.038770128041505814, -0.021416189149022102, -0.005264678038656712, 0.020733730867505074, -0.010301869362592697, -0.025900915265083313, -0.01335668284446001, 0.020717483013868332, 0.007405484560877085, 0.05059940367937088, -0.014291000552475452, -0.01027749665081501, -0.009903769008815289, 0.030548131093382835, 0.027899542823433876, 0.03204303979873657, 0.004009442403912544, 0.03496786206960678, 0.015915900468826294, 0.038900118321180344, 0.033212967216968536, -0.006836769171059132, 0.006004007533192635, 0.01082996279001236, -0.003513847477734089, 0.0025551561266183853, 0.007080504205077887, 0.0030020037665963173, 0.00813668966293335, 0.01138242892920971, 0.016606483608484268, 0.022959845140576363, 0.01997002772986889, -0.0073242392390966415, -0.004630966577678919, 0.0382501594722271, 0.004992506932467222, -0.030304396525025368, 0.018345126882195473, -0.0013242940185591578, 0.0028659184463322163, -0.0001550002780277282, -0.005723712500184774, 0.009205061942338943, -0.010927456431090832, 0.015761535614728928, -0.010318119078874588, -0.0042897374369204044, -0.0077507756650447845, 0.025494690984487534, -0.04627716913819313, -0.008392611518502235, -0.0209612175822258, 0.007604534737765789, -0.013112947344779968, 0.010976203717291355, -0.023414816707372665, 0.006771773099899292, -0.020067522302269936, 0.008031071163713932, -0.0020057365763932467, -0.013811655342578888, -0.0068286447785794735, -0.05183432996273041, -0.017386436462402344, -0.0069870725274086, -0.058658912777900696, -0.02752581611275673, -0.0354878306388855, -0.03230302408337593, 0.01615963689982891, -0.0050615654326975346, -0.010439986363053322, -0.0466996431350708, 0.014006642624735832, 0.005410918965935707, 0.011333681643009186, 0.017581423744559288, 0.0068286447785794735, 0.004362857900559902, 0.005536848679184914, 0.024828480556607246, -0.018523866310715675, -0.007048006169497967, 0.02349606156349182, 0.0455947108566761, -0.012454862706363201, 0.006637718994170427, -0.009205061942338943, -0.010992452502250671, 0.005085938610136509, 0.0020230012014508247, 0.027623310685157776, -0.018962590023875237, -0.01585090532898903, 0.0028009223751723766, 0.004019598010927439, -0.003142151515930891, 0.0070723798125982285, 0.012178629636764526, -0.015135948546230793, -0.0022078335750848055, -0.03587780520319939, 0.02612840197980404, 0.03854264318943024, 0.004862514790147543, 0.005520599894225597, 0.0073445504531264305, -0.000567191862501204, -0.0014847528655081987, -0.0017599704442545772, -0.0009861115831881762, 0.04253989830613136, -0.004448165185749531, -0.023089837282896042, -0.01640337146818638, 0.03363544121384621, 0.002252518432214856, 0.034187909215688705, -0.012787967920303345, -0.07773524522781372, 0.033082976937294006, 0.03175055608153343, -0.008880081586539745, 0.004031784366816282, 0.04078500345349312, -0.014705350622534752, 0.023252326995134354, 0.0057318368926644325, -0.01579403318464756, 0.027347076684236526, 0.024487251415848732, 0.00629242742434144, 0.007982323877513409, 0.04565970599651337, 0.014559109695255756, 0.043969810009002686, 0.0075476630590856075, 0.007730464451014996, 0.010935581289231777, -0.031230589374899864, 0.017662668600678444, 0.01026124693453312, -0.004561908543109894, -0.00288013624958694, -0.012138007208704948, -0.024942224845290184, -0.04728460684418678, 0.011244311928749084, -0.0029370076954364777, 0.011683035641908646, -0.046894632279872894, 0.01370603684335947, -0.004553783684968948, -0.010155628435313702, -0.009180688299238682, 0.027883294969797134, 0.014087888412177563, 0.021286197006702423, 0.0059552607126533985, 0.034447893500328064, -0.029946917667984962, -0.018946340307593346, 0.01251173485070467, -0.027509566396474838, -0.00418818136677146, 0.008217934519052505, -0.0435798354446888, 0.016395246610045433, 0.014932836405932903, 0.03253050893545151, -0.021903660148382187, -0.016500866040587425, -0.027639558538794518, -0.015152198262512684, 0.009196937084197998, 0.013145445846021175, -0.0017579393461346626, -0.026794610545039177, 0.007563912309706211, -0.005419043358415365, -0.00775890052318573, 0.004245052579790354, 0.04809705913066864, 0.00677989749237895, 0.011008701287209988, -0.02068498358130455, -0.020035024732351303, 0.004622842185199261, 0.013567919842898846, -0.0004570032760966569, -0.013714160770177841, 0.004257239401340485, -0.006288365460932255, 0.021286197006702423, -0.010204375721514225, 0.013567919842898846, 0.021594928577542305, -0.01446161512285471, 0.038120169192552567, 0.01439661905169487, 0.015054703690111637, -0.02276485785841942, 0.0018696512561291456, -0.04104498773813248, 0.02432476170361042, 0.00018407077004667372, -0.03945258632302284, -0.01691521517932415, 0.0023378257174044847, -0.01774391531944275, 0.024406006559729576, -0.00914819072932005, 0.01704520732164383, 0.01125243678689003, 0.03756770119071007, 0.03633277863264084, 0.0021875223610550165, -0.014908462762832642, 0.015501551330089569, -0.0015639668563380837, 0.015785908326506615, 0.018491368740797043, 0.024081027135252953, 0.017808910459280014, 0.04133747145533562, -0.007653281558305025, -0.00601213239133358, -0.010618725791573524, -0.020603738725185394, 0.0016249006148427725, -0.018946340307593346, 0.005739961285144091, -0.02042500115931034, 0.009367551654577255, -0.006142124067991972, -0.027509566396474838, 0.02752581611275673, 0.014705350622534752, -0.005276864860206842, 0.019043834879994392, -0.018523866310715675, 0.0006255867192521691, -0.025608433410525322, -0.039192602038383484, 0.01125243678689003, 0.026615871116518974, -0.008644470945000648, -0.0162733793258667, 0.022439876571297646, -0.011333681643009186, 0.0004752834211103618, -0.0054474794305861, -0.01315357070416212, 0.015200944617390633, 0.0049478220753371716, -0.014380370266735554, 0.002008783398196101, -0.011268685571849346, -0.009050696156919003, -0.014339747838675976, -0.004854390397667885, 0.01777641288936138, -0.009546291083097458, 0.005244366824626923, -0.004541597329080105, -0.004570032935589552, -0.01732143945991993, -0.04419729486107826, -0.0070317573845386505, 0.028760740533471107, -0.02126994915306568, -0.00922131072729826, 0.019368814304471016, 0.009538166224956512, 0.009692532010376453, 0.009676283225417137, -0.0017416903283447027, -0.016703978180885315, -0.0008012790931388736, 0.023723548278212547, 0.015127824619412422, -0.007177998311817646, 0.006052754819393158, -0.01125243678689003, 0.0016706009628251195, -0.01125243678689003, -0.006983010098338127, 0.0026181209832429886, 0.0005265693180263042, 0.0003729654708877206, 0.0069870725274086, -0.01452661119401455, -0.005029067397117615, -0.004773145541548729, 0.023869790136814117, 0.008904455229640007, -6.937563739484176e-05, 0.015818407759070396, 0.002587654162198305, 0.02671336568892002, -0.0044522276148200035, -0.019482558593153954, -0.02934570424258709, -0.03594280034303665, -0.022017402574419975, 0.02879323810338974, -0.00900194887071848, 0.01971004344522953, -0.023707300424575806, -0.012747345492243767, -0.01676897332072258, 0.013738534413278103, 0.02347981370985508, -0.022326134145259857, -0.00426536425948143, 0.027590811252593994, -0.004586281720548868, 0.018491368740797043, -0.023967282846570015, -0.005337798502296209, -0.022049900144338608, -0.0026099965907633305, -0.021351194009184837, 0.001403507892973721, -0.0015456867404282093, -0.022976094856858253, -0.004362857900559902, 0.002802953589707613, 0.005776521749794483, -0.005471852608025074, -0.006548349279910326, 0.00951379258185625, -0.019661296159029007, -0.03370043635368347, 0.0005666840588673949, -0.00396678876131773, -0.03847764432430267, 0.017938902601599693, 0.0028171713929623365, 0.002750144340097904, -0.014152884483337402, -0.005020943004637957, -0.022472376003861427, -0.03238426893949509, -0.002024016808718443, 0.004444103222340345, -0.044262293726205826, -0.03610529005527496, -0.005268740002065897, -0.00207784166559577, -0.002587654162198305, -0.01271484699100256, -0.006410232745110989, -0.004968133755028248, -0.004992506932467222, 0.008343864232301712, -0.026388386264443398, 0.013836028054356575, -0.00062507891561836, 0.008368237875401974, -0.007584223523736, 0.013316060416400433, -0.005991820711642504, -0.0013801499735563993, -0.02167617343366146, -0.004224741365760565, -0.021318696439266205, -0.02989817038178444, 0.022862350568175316, 0.04370982572436333, 0.01984003558754921, 0.022179892286658287, -0.02346356399357319, -0.006125875283032656, -0.002388603752478957, -0.027184586971998215, -0.038510143756866455, 0.005638405214995146, 0.006073066033422947, 0.012755469419062138, 0.00223423819988966, -0.023577308282256126, -0.03261175379157066, 0.02879323810338974, 0.026225894689559937, 0.012820465490221977, -0.015818407759070396, -0.017142701894044876, -0.026615871116518974, -0.004003348760306835, -0.0045212856493890285, -0.0038571078330278397, -0.016736475750803947, -0.004117091652005911, 0.001924491603858769, -0.012081135995686054, -0.005764334928244352, 0.009131941013038158, 0.0027582687325775623, 0.01678522303700447, -0.03409041464328766, -0.02417851984500885, -0.07338050752878189, -0.003548376727849245, 0.02167617343366146, 0.006519913673400879, -0.013299811631441116, -0.027460819110274315, 0.013340434059500694, 0.006113688461482525, 0.004358795937150717, 0.005321549251675606, -0.005224055610597134, 0.009895644150674343, 0.01732143945991993, 0.011398677714169025, -0.01972629316151142, 0.021773668006062508, -0.024357259273529053, 0.004366920329630375, -0.006263991817831993, 0.0011150880018249154, 0.00024106923956423998, 0.02726583182811737, 0.016630858182907104, 0.0007139407098293304, -0.026453381404280663, 0.03405791521072388, 0.002008783398196101, 0.012893586419522762, -0.004951884504407644, -0.009456921368837357, -0.011301183141767979, -0.0035829057451337576, 0.009846897795796394, -0.01054560486227274, 0.008425109088420868, -0.0007560865487903357, -0.012926083989441395, -0.007429857738316059, -0.005256553180515766, 0.005739961285144091, 0.00240891519933939, 0.012243625707924366, 0.0020798726473003626, -0.007186122704297304, 0.0016259161056950688, -0.028289519250392914, -0.015493427403271198, -0.03903011232614517, -0.009237559512257576, -0.005670903250575066, -0.0019681607373058796, 0.019076332449913025, -0.00446847639977932, -0.030271897092461586, -0.008871957659721375, -0.0004422776401042938, 0.015623419545590878, -0.009911893866956234, -0.004931573290377855, 0.011228063143789768, 0.025803420692682266, -0.0002604918845463544, 0.012787967920303345, 0.005691214464604855, -0.02726583182811737, -0.0022017403971403837, 0.02934570424258709, 0.015265940688550472, 0.04916949197649956, -0.01187802292406559, 0.025267204269766808, 0.0034752560313791037, 0.0014624105533584952, 0.025072215124964714, 0.026388386264443398, 0.028468258678913116, 0.027850795537233353, 0.010578102432191372, 0.01763017103075981, -0.0014146791072562337, -0.02053874358534813, 0.0011029012966901064, 0.013332309201359749, 0.009099443443119526, 0.023999782279133797, 0.00846573244780302, -0.0076410952024161816, 0.01082996279001236, 0.021058712154626846, -0.003071062033995986, 0.030856862664222717, 0.016557736322283745, 0.0220661498606205, 0.005666840821504593, -0.014981583692133427, 0.049851950258016586, -0.015200944617390633, 0.019742542877793312, -0.0008718607132323086, 0.01568029075860977, 0.028988227248191833, -0.022049900144338608, -0.006824582349509001, -0.006454917602241039, -0.012397991493344307, 0.021432438865303993, 0.013186068274080753, -0.02476348541676998, -0.013283561915159225, -0.018198886886239052, -0.012146132066845894, -0.007198309525847435, -0.04335234686732292, 0.00951379258185625, 0.00649960245937109, 0.0006768726743757725, -0.007734526880085468, -0.013632915914058685, -0.0147540969774127, 0.009790025651454926, -0.01845887117087841, -0.0011211814125999808, 0.0077710868790745735, -0.04851953312754631, -0.013096698559820652, -0.014583482407033443, -0.024925975129008293, 0.009822524152696133, 0.005504350643604994, -0.010041886009275913, -0.008266681805253029, -0.009790025651454926, 0.008315429091453552, 0.0048787640407681465, -0.021854912862181664, 0.0143884951248765, 0.036982737481594086, -0.0182963814586401, 0.029881922528147697, -0.02279735542833805, -0.007929515093564987, 0.01419350691139698, -0.014802844263613224, 0.023089837282896042, -0.006479291245341301, 0.013535422272980213, 0.01912507973611355, -0.014599732123315334, 0.004135372117161751, -0.022261137142777443, 0.00391601026058197, 0.011138693429529667, -0.0026932726614177227, 0.021854912862181664, -0.02419476956129074, -0.01706145703792572, -0.02318733185529709, -0.00837636273354292, 0.009911893866956234, -0.006093377247452736, -0.012438613921403885, 0.0011435238411650062, 0.03496786206960678, 0.022894850000739098, 0.007982323877513409, 0.007901079021394253, 0.007840145379304886, -0.008177312090992928, -0.006150248926132917, 0.008717591874301434, -0.00513062346726656, 0.001114072510972619, 0.0044928500428795815, -0.04575720056891441, -0.012657975777983665, -0.020035024732351303, 0.01264172699302435, 0.02906947210431099, 0.01954755373299122, 0.0034143223892897367, -0.007872642949223518, 0.009473170153796673, -0.020636238157749176, 0.0038753878325223923, 0.002703428268432617, 0.015444680117070675, -0.0056302803568542, 0.02237488143146038, 0.00019816170970443636, 0.020863723009824753, 0.009960640221834183, 0.030271897092461586, -0.0001178687671199441, -0.025754673406481743, 0.01871885545551777, -0.002595778787508607, 0.026372136548161507, 0.02195240743458271, -0.04390481486916542, -0.01503845490515232, -0.0018950402736663818, -0.026177149266004562, 0.017223946750164032, 0.009318805299699306, -0.014981583692133427, 0.0030974666588008404, -0.018913842737674713, -0.011756155639886856, -0.008234183304011822, -0.009651909582316875, 0.004781269934028387, -0.012877336703240871, 0.02993066795170307, 0.006723026279360056, 0.017727665603160858, -0.011569292284548283, 0.0222448892891407, -0.007060192991048098, 0.0014705350622534752, 0.006995196919888258, 0.006503664422780275, 0.013405430130660534, -0.007669530808925629, -0.015972772613167763, 0.007043944206088781, 0.018361376598477364, 0.014713474549353123, -0.06779085099697113, -0.004805643577128649, 0.01680147275328636, 0.01676897332072258, 0.012422365136444569, -0.014315374195575714, -0.018247634172439575, 0.007356737274676561, -0.0002032395132118836, 0.03578031063079834, -0.018686356022953987, 0.03701523691415787, -0.007470480632036924, -0.019385064020752907, -0.00140757008921355, -0.024422256276011467, 0.017126452177762985, 0.010724344290792942, 0.024779733270406723, -0.03215678408741951, -0.01831262931227684, 0.005776521749794483, -0.009903769008815289, 0.013600418344140053, 0.02208239957690239, -0.0019316006219014525, 0.008595723658800125, 0.004728460684418678, -0.009668158367276192, 0.0072145587764680386, 0.011504296213388443, 0.017662668600678444, 0.03101935237646103, -0.01871885545551777, 0.014786595478653908, 0.002790766768157482, -0.005179370753467083, 0.0419224351644516, 0.0021712733432650566, 0.0014187413034960628, -0.0015020174905657768, -0.0011557105462998152, -0.01181302685290575, -0.0059755719266831875, 0.013925397768616676, -0.023154832422733307, 0.0012857025722041726, 0.012820465490221977, -0.01118744071573019, -0.006288365460932255, -0.03132808208465576, -0.007169873919337988, -0.004273488651961088, 0.005248428788036108, 0.014209755696356297, -0.00986314658075571, 0.005967447534203529, 0.024682240560650826, -0.0054474794305861, 0.0036377462092787027, -0.039907559752464294, 0.03984256088733673, -0.010626849718391895, 0.019677545875310898, 0.012073011137545109, 0.020035024732351303, -0.004423792008310556, 0.01930381916463375, 0.008750089444220066, 0.0013192162150517106, 0.00446847639977932, 0.008238245733082294, -0.007913266308605671, 0.008351989090442657, -0.034740373492240906, 0.000184197720955126, -0.016703978180885315, 0.003932259511202574, -0.00033767466084100306, 0.004435978829860687, 0.011284934356808662, 0.0016695853555575013, -0.01194301899522543, -0.00377586274407804, -0.012771718204021454, 0.009010073728859425, -0.02349606156349182, 0.006905827671289444, 0.023593556135892868, 0.0004504021198954433, -0.001494908588938415, 0.0019062114879488945, -0.0678558498620987, 0.023236079141497612, -0.0217899177223444, 0.008693218231201172, 0.006312738638371229, -0.03623528406023979, -0.014510362409055233, -0.0020006587728857994, 0.0009627536055631936, 0.001200395287014544, -0.024942224845290184, -0.010821837931871414, 0.0343828946352005, 0.0021997091826051474, 0.020230012014508247, -0.023707300424575806, 0.0008525650482624769, 0.02434101141989231, 0.00451316125690937, -0.027737053111195564, -0.0011272748233750463, -0.023658553138375282, 0.005390607751905918, -0.004980320110917091, -0.001394367776811123, -0.017532676458358765, -0.012406116351485252, -0.0076817176304757595, 0.03090560995042324, 0.015428431332111359, 0.007340488489717245, -0.015639668330550194, 0.02486097812652588, 0.01320231705904007, 0.015574672259390354, -0.018231384456157684, 0.021432438865303993, 0.031068099662661552, -0.004834079183638096, 0.012942332774400711, -0.04234490916132927, -0.018491368740797043, 0.003922103904187679, 0.008701343089342117, 0.04279988259077072, 0.003716960083693266, 0.02432476170361042, 0.011000577360391617, -0.018491368740797043, -0.007588285952806473, -0.031003102660179138, 0.01643586903810501, -0.01899508759379387, -2.075556585623417e-05, 0.01426662690937519, -0.027428321540355682, -0.00420036818832159, 0.006670217029750347, -0.0006900749867781997, -0.016525238752365112, -0.018133889883756638, -0.011293059214949608, 0.004460352007299662, -0.0252834539860487, -0.0035625945311039686, -0.01759767346084118, 0.013876651413738728, -0.02630714140832424, -0.013714160770177841, -0.015826532617211342, 0.004383169114589691, -0.011479922570288181, 0.011983641423285007, -0.006117750890552998, 0.03293673321604729, 0.027720803394913673, -0.0007403453346341848, -0.031116846948862076, -8.105461165541783e-05, -0.031230589374899864, -0.030954355373978615, 0.010204375721514225, -0.0023479813244193792, 0.004639090970158577, 0.01915757730603218, -0.02164367586374283, -0.00423286622390151, -0.0068773915991187096, 0.013982269912958145, 0.013429803773760796, -0.02165992558002472, -0.0008576428517699242, 0.02824077196419239, 0.012706722132861614, 0.010439986363053322, -0.03168556094169617, 0.01928756944835186, -0.022472376003861427, 0.010578102432191372, -0.024974722415208817, 0.02152993343770504, -0.004293799865990877, 0.025055967271327972, -0.02698959782719612, -0.00391601026058197, 0.004907199647277594, 0.020928720012307167, -0.037372712045907974, 0.0009261933155357838, 0.0018239509081467986, 0.0023865727707743645, 0.01209738478064537, 0.002991848159581423, 0.006970823742449284, 0.03256300836801529, 0.02123745158314705, -0.04686213284730911, 0.01763017103075981, -0.008912580087780952, 0.008985700085759163, -0.0074379825964570045, -0.01745143160223961, 0.0059349494986236095, 0.009465046226978302, -0.012568606063723564, -0.03747020661830902, -0.006983010098338127, 0.009489419870078564, -0.03721022233366966, 0.0026729614473879337, 0.026502128690481186, 0.030726870521903038, 0.010504982434213161, 0.003046688623726368, 0.0014360059285536408, 0.003517909673973918, -0.006901765242218971, -0.006483353208750486, -0.005256553180515766, 0.0023581369314342737, 0.03789268061518669, -0.009408174082636833, -0.007279554847627878, 0.0009546290966682136, 0.011106195859611034, -0.0044319164007902145, 0.017646420747041702, 0.0201325174421072, -0.0038185163866728544, -0.004984382539987564, -0.027997037395834923, 0.0013182006077840924, -0.009400050155818462, 0.0032030853908509016, -0.017240194603800774, -0.002563280751928687, -0.02486097812652588, -0.0013232784112915397, -0.016817720606923103, -0.011691159568727016, -0.028695743530988693, 0.014892213977873325, 0.014916587620973587, -0.03574781119823456, 0.023934785276651382, 0.014802844263613224, 0.01733768917620182, -0.020441249012947083, -0.017808910459280014, -0.014502237550914288, 0.03630027920007706, 0.012625477276742458, 0.030125657096505165, 0.0017701260512694716, -0.0038611700292676687, 0.014031016267836094, -0.015501551330089569, -0.010366865433752537, 0.005780583713203669, -0.010813713073730469, -0.0031868363730609417, -0.00740954652428627, -0.023544808849692345, -0.017256444320082664, 0.006670217029750347, -0.013470426201820374, -0.03708023205399513, 0.003716960083693266, 0.0025754673406481743, 0.0008891252800822258, 0.007226745132356882, -0.004890950862318277, 0.003712897887453437, 0.008416985161602497, -0.00405818922445178, 0.003983037546277046, -0.01014750450849533, -0.004326297901570797, -0.00043973870924673975, -0.014550984837114811, 0.010269371792674065, 0.0005473883938975632, -0.008863832801580429, -0.003018252784386277, -0.004383169114589691, 0.01054560486227274, -0.011203689500689507, -0.005853704176843166, -0.001441083732061088, -0.014770346693694592, -0.014762221835553646, 0.01335668284446001, 0.007543601095676422, -0.0038571078330278397, 0.00029705214546993375, 0.015144073404371738, -0.012755469419062138, -0.0009703703108243644, -0.015550298616290092, 0.0008129580528475344, -0.009546291083097458, -0.006479291245341301, 0.012503609992563725, -0.02586841769516468, -0.022618615999817848, 0.009050696156919003, 0.06083627790212631, 0.03672275319695473, 0.011536793783307076, 0.00269124167971313, -0.007165811490267515, -0.025754673406481743, -0.006300551816821098, 0.0024475064128637314, 0.007015508133918047, 0.012909835204482079, -0.002955287927761674, -0.010472483932971954, 0.024682240560650826, -0.00158123136498034, -0.02390228770673275, 0.024909725412726402, 0.014274751767516136, 0.013957896269857883, -0.020766230300068855, 0.03119809180498123, 0.017581423744559288, 0.005703401286154985, 0.00646710442379117, -0.0014989707851782441, 0.005735898856073618, -0.012982956133782864, 0.007389235310256481, -0.0007540554506704211, 0.007482666987925768, 0.01748393103480339, 0.012121758423745632, -0.0061380621045827866, -0.0029654435347765684, -0.002412977395579219, 0.002807015785947442, 0.015655918046832085, -0.015493427403271198, 0.0030730932485312223, -0.001606620498932898, 0.012698598206043243, 0.019190076738595963, -0.014502237550914288, 0.02432476170361042, -0.006125875283032656, 0.007466418202966452, -0.017922652885317802, 0.005333736073225737, 0.00454565929248929, -0.0013669476611539721, -0.0019529274431988597, -0.026339638978242874, -0.009895644150674343, 0.00517530832439661, 0.008408860303461552, 0.014664728194475174, -0.010716219432651997, 0.024942224845290184, 0.00396678876131773, -0.008741965517401695, -0.011154942214488983, -0.031523071229457855, 0.0005397716886363924, -0.014315374195575714, -0.0053459228947758675, -0.011861774139106274, -0.019531305879354477, -0.009530042298138142, -0.001503033097833395, 0.00621524453163147, -0.006544287316501141, -0.006723026279360056, -0.006820520386099815, 0.012422365136444569, -0.04377482086420059, -0.0024434442166239023, -0.0022078335750848055, -0.005451541393995285, 0.03132808208465576, 0.013868526555597782, 0.015729038044810295, -0.001515219802968204, 0.010391239076852798, -0.013697911985218525, -0.022472376003861427, -0.0016299784183502197, 0.006641780957579613, -7.388219819404185e-05, 0.011244311928749084, 0.013283561915159225, -0.005045316182076931, -0.00986314658075571, -0.01481909304857254, -0.0038611700292676687, 0.017223946750164032, 0.011431175284087658, 0.007795460522174835, 0.005004693754017353, -0.00761672155931592, 0.031068099662661552, -0.011349930427968502, 0.0027826421428471804, 0.013811655342578888, 0.007360799703747034, 0.009489419870078564, 0.004383169114589691, 0.009010073728859425, -0.005670903250575066, 0.01680147275328636, 0.009448796510696411, -0.016395246610045433, -0.017272694036364555, -0.008173249661922455, -0.00999313872307539, 0.005134685896337032, -0.03828265890479088, 0.010374990291893482, 0.014242253266274929, -0.0011333681177347898, -0.002173304557800293, 0.008644470945000648, -0.030434388667345047, -0.012836714275181293, -0.003511816496029496, -0.0008728762622922659, 0.013283561915159225, 0.0005981665453873575, -0.021221201866865158, -0.0022626740392297506, -0.004728460684418678, 0.0016533363377675414, 0.008221996948122978, -0.012901710346341133, 0.008961326442658901, 0.002750144340097904, 0.01096807885915041, -0.00888820644468069, 0.00014789134729653597, -0.010041886009275913, 0.02318733185529709, -0.015420306473970413, 0.008912580087780952, 0.023382319137454033, 0.005930887069553137, -0.0002802953531499952, -0.01732143945991993, 0.000658084754832089, -0.0063817971386015415, -0.017272694036364555, 0.007669530808925629, -0.011008701287209988, 0.02349606156349182, -0.018393874168395996, 0.0023987595923244953, -0.018280131742358208, 0.008961326442658901, -0.0042288037948310375, -0.015712788328528404, 0.029410701245069504, -0.021741170436143875, -0.005020943004637957, 0.0081813745200634, -0.02347981370985508, -0.020993715152144432, -0.013348557986319065, 0.018702605739235878, 0.015217194333672523, 0.0032518322113901377, 0.029101969674229622, 0.01984003558754921, -0.015265940688550472, -0.022407379001379013, -0.004748771898448467, 0.0028456072323024273, -0.019076332449913025, -0.0143884951248765, -0.011926770210266113, 0.007198309525847435, 0.018540116026997566, -0.03412291407585144, 0.0048787640407681465, -0.01860511116683483, -0.004064282402396202, 0.007291741203516722, 0.004574095364660025, 0.0037453959230333567, -0.0007809678209014237, 0.005967447534203529, -0.0048787640407681465, 0.007076442241668701, -0.0022078335750848055, -0.0016675542574375868, 0.016370873898267746, 0.01641962118446827, 0.010553729720413685, -0.025202207267284393, -0.02305733971297741, 0.011528669856488705, -0.016322126612067223, 0.003867263440042734, -0.009871271438896656, 0.025478441268205643, 0.0052849892526865005, 0.016297752037644386, -0.004342546686530113, -0.00234391912817955, -0.017711415886878967, -0.004212554544210434, 0.0017599704442545772, -0.027038345113396645, -0.0174676813185215, -0.0382501594722271, -0.015972772613167763, 0.000486454606289044, 0.00375961372628808, -0.027704555541276932, -0.014607856050133705, 0.0217899177223444, -0.0006976916920393705, 0.02614464983344078, -0.0013009359827265143, 0.008896330371499062, 0.009895644150674343, 0.014136634767055511, -0.0010257185203954577, -0.007706090807914734, 0.02209864743053913, -0.006601158529520035, 0.00783202052116394, 0.031653065234422684, -0.0021509621292352676, 0.0064021083526313305, 0.01572091318666935, -0.01832887902855873, 0.005536848679184914, -0.011951143853366375, 0.008831334300339222, -0.003253863425925374, 0.0032924548722803593, 0.013949771411716938, -0.01138242892920971, -0.011593665927648544, 0.01759767346084118, -0.007502978667616844, -0.0011120412964373827, 0.003804298583418131, -0.008351989090442657, 0.0006921060848981142, -0.0026648370549082756, -0.003306672675535083, -3.062556788790971e-05, -0.00039886232116259634, -0.0066458433866500854, -0.0010937611805275083, 0.004444103222340345, 0.004358795937150717, -0.016687728464603424, 0.021139957010746002, -0.010610600933432579, -0.007389235310256481, -0.004415667150169611, 0.006475228816270828, -0.0004438009636942297, -0.020879972726106644, 0.004760958719998598, 0.017922652885317802, 0.013616667129099369, -0.016703978180885315, 0.013047951273620129, 0.00853072851896286, -0.0033147973008453846, 0.013234815560281277, -0.009261933155357838, 0.005492163822054863, 0.023739797994494438, 0.001726456917822361, -0.017093954607844353, 0.011309307999908924, -0.0021915845572948456, 0.011593665927648544, 0.0064224195666611195, -0.003721022279933095, 0.02430851198732853, -0.003066999837756157, -0.02739582397043705, -0.010301869362592697, -0.0209612175822258, -0.000915022159460932, -0.0035544701386243105, 0.004533472470939159, 0.013925397768616676, 0.004029753617942333, -0.029183214530348778, 0.015217194333672523, -0.010651223361492157, -0.022553620859980583, 0.010846211574971676, -0.016427744179964066, 0.0028760740533471107, -0.0038063295651227236, 0.016192134469747543, -0.003485411871224642, 0.016573986038565636, -0.007730464451014996, -0.020879972726106644, 0.012056762352585793, -0.0018655889434739947, 0.014550984837114811, 0.023154832422733307, -0.0075273518450558186, -0.004041940439492464, 0.014355996623635292, 0.0017213791143149137, 0.03155557066202164, -0.011926770210266113, -0.01564779318869114, -0.02993066795170307, -0.01551780104637146, 0.01529843918979168, -0.012056762352585793, -0.008766338229179382, -0.012397991493344307, -0.0038266407791525126, 0.007811709772795439, 0.01181302685290575, -0.006861142814159393, 0.0031908985693007708, 0.008230121806263924, 0.009180688299238682, -0.013291686773300171, -0.03017440438270569, 0.009115692228078842, -0.0066742789931595325, -0.0029329454991966486, -0.007446106988936663, -0.015079077333211899, 0.011553043499588966, -0.006710839457809925, 0.005488101858645678, -0.002138775307685137, 0.016590235754847527, 0.002435319824144244, 0.0066458433866500854, -0.0038063295651227236, -0.0005946120363660157, 0.004594406578689814, 0.018393874168395996, 0.001718332408927381, -0.01090308278799057, 0.017678918316960335, 0.01761392317712307, 0.015899652615189552, 0.006328987888991833, -0.0013476519379764795, 0.0032802680507302284, -0.012284248135983944, -0.014209755696356297, 0.02559218369424343, -0.0027095216792076826, -0.03734021633863449, 0.0034346336033195257, 0.0023479813244193792, 0.004375044722110033, -0.02029500901699066, -0.01888134516775608, 0.01914132945239544, -0.010431861504912376, 0.011934895068407059, 0.017126452177762985, -0.01335668284446001, 0.00038718333235010505, -0.01019625086337328, -0.007385173346847296, -0.012073011137545109, 0.0010917300824075937, -0.016541488468647003, -0.0017437214264646173, 0.0038144541904330254, -0.0016543519450351596, -0.0041800569742918015, -0.0011770373675972223, 0.024487251415848732, -0.021708671003580093, -0.009424423798918724, -0.00457815732806921, 0.02014876715838909, 0.007775149308145046, 0.027347076684236526, 0.028305768966674805, 7.8134864452295e-05, 0.005809019785374403, -0.011975517496466637, -0.020636238157749176, -0.008481981232762337, 0.0024414132349193096, 0.010423737578094006, 0.01745143160223961, -0.02586841769516468, 0.023967282846570015, 0.0011658661533147097, 0.008282930590212345, 0.02248862385749817, -0.0033797931391745806, 0.017548926174640656, 0.004383169114589691, 0.002388603752478957, -0.00986314658075571, 0.00853072851896286, -0.0019133203895762563, 0.013657289557158947, -0.02109120972454548, 0.008644470945000648, 0.0066052209585905075, -0.03210803493857384, 0.0055084130726754665, 0.014136634767055511, 0.00838448666036129, 0.0010724343592301011, -0.013722285628318787, 0.016338374465703964, 0.004456290043890476, 0.024552248418331146, -0.0006849971250630915, 0.027607060968875885, -0.013876651413738728, 0.00853072851896286, -0.038087669759988785, 0.010253123007714748, 0.006113688461482525, -0.006633656565099955, 0.0019092581933364272, -0.021481186151504517, -0.01818263716995716, -0.005553097929805517, 0.019677545875310898, -0.011366179212927818, 0.00022989803983364254, 0.012276124209165573, -0.030938107520341873, 0.006414295174181461, 0.010578102432191372, 0.00044176983647048473, 0.00963566079735756, -0.004639090970158577, 0.006398045923560858, 0.0162733793258667, 0.03171806037425995, -0.0028882608748972416, 0.01678522303700447, -0.0036783686373382807, -0.019661296159029007, 0.004846266005188227, 0.008896330371499062, -0.005719650071114302, -0.007454231381416321, -0.022163644433021545, 0.011219938285648823, -0.019742542877793312, 0.016354624181985855, 0.017126452177762985, -0.023008592426776886, -0.036560263484716415, 0.004145527724176645, -0.009424423798918724, 0.005191557575017214, -0.01573716290295124, -0.019190076738595963, 0.022732358425855637, -0.014096012338995934, 0.0031482449267059565, -0.01675272546708584, -0.009538166224956512, -0.0011993797961622477, -0.00375961372628808, -0.010610600933432579, -0.0015284221153706312, 0.0033757309429347515, 0.0012613290455192327, -0.004972195718437433, 0.0018991025863215327, -0.014835342764854431, -0.0100662587210536, 0.0025104715023189783, 0.016882717609405518, 2.540493915148545e-05, 0.017012709751725197, -0.013567919842898846, 0.01019625086337328, -0.013478550128638744, 0.015322812832891941, 0.022602366283535957, 0.011073697358369827, -0.0023479813244193792, -0.0020707326475530863, -0.008880081586539745, 0.0042288037948310375, -0.012259874492883682, -0.011179315857589245, 0.0016492741415277123, -0.01432349905371666, 0.01348667498677969, -0.027022097259759903, -0.0035504077095538378, 0.013446052558720112, 0.004533472470939159, 0.009733154438436031, -0.009261933155357838, -0.007113002240657806, 0.01774391531944275, 0.022732358425855637, -0.007543601095676422, 0.007149562705308199, 0.019823787733912468, -0.009936267510056496, 0.00033995966077782214, -0.01702895760536194, 0.039322592318058014, -0.0016655230429023504, 0.00016147449787240475, -0.00027724867686629295, 0.010391239076852798, 0.007535476237535477, -0.013892900198698044, 0.011601789854466915, 0.0038855434395372868, 0.009042571298778057, -0.023301074281334877, -0.006503664422780275, 0.029264459386467934, 0.010821837931871414, -0.01503845490515232, -0.022943595424294472, 0.007588285952806473, -0.019758790731430054, 7.711930811638013e-05, -0.005650591570883989, 0.011374304071068764, -0.013478550128638744, 0.013649164699018002, 0.026372136548161507, -0.0017731727566570044, 0.01348667498677969, -0.004411605186760426, -0.023869790136814117, 0.028614498674869537, -0.014104137197136879, -0.013080449774861336, -0.005134685896337032, -0.004915324039757252, -0.006718963850289583, -0.013933522626757622, -0.02191990800201893, 0.00840073637664318, 0.005744023714214563, 0.009725029580295086, 0.02890698052942753, -0.00873384065926075, -0.017305191606283188, 0.00944067258387804, -0.010309994220733643, 0.006735213100910187, -0.013316060416400433, -0.03428540378808975, 0.0072551812045276165, -0.006109626032412052, -0.010911207646131516, 0.0013253095094114542, 0.011512421071529388, 0.00800669752061367, 0.0032843302469700575, 0.02867949567735195, -0.004972195718437433, 0.006593034137040377, -0.006552411708980799, 0.030548131093382835, -0.013901024125516415, -0.017808910459280014, -0.021854912862181664, 0.0030202839989215136, -0.0011912552872672677, -0.017825160175561905, 0.007945763878524303, -0.009895644150674343, -0.011309307999908924, 0.0057927705347537994, 0.013730409555137157, 0.02500721998512745, -8.029294258449227e-05, -0.0015385777223855257, 0.0016685697482898831, -0.022846102714538574, 0.005484039429575205, -0.009546291083097458, -0.005309362895786762, 0.0028902918566018343, 0.019596301019191742, -0.004651277791708708, -0.0028334204107522964, 0.005650591570883989, -0.030954355373978615, -0.015493427403271198, -0.021464936435222626, 0.013381056487560272, -0.006873329635709524, -0.006235556211322546, 0.029036972671747208, -0.005691214464604855, 0.0030934044625610113, 0.003026377409696579, -0.007117064669728279, -0.012617353349924088, -0.008067631162703037, 0.002632339019328356, 0.01566404104232788, -0.0026810860726982355, 0.005069689825177193, -0.0038550766184926033, 0.00986314658075571, -0.0015568578382954001, -0.007884830236434937, -0.022602366283535957, 0.0035361899062991142, -0.011951143853366375, -0.004163807723671198, 0.007413608953356743, 0.01776016317307949, -0.01216238085180521, 0.010090632364153862, 0.008262619376182556, 0.014534736052155495, 0.001552795642055571, 0.00021314126206561923, 0.0002706474915612489, -0.007076442241668701, -0.013852277770638466, 0.009456921368837357, 0.008092004805803299, -0.01524156704545021, -0.01585090532898903, 0.013738534413278103, -0.01013125479221344, 0.016094639897346497, 0.007588285952806473, 0.014234129339456558, 0.004570032935589552, 0.022748608142137527, -0.015314687974750996, 0.011756155639886856, -0.0021509621292352676, -0.004444103222340345, 0.005922762677073479, -0.008286993019282818, 0.0008784618694335222, -0.023707300424575806, 0.012462987564504147, -0.02516970969736576, -0.023008592426776886, -0.0029085720889270306, -0.01720769703388214, 0.007251118775457144, 0.0030162218026816845, -0.010561853647232056, -0.027460819110274315, -0.0050331293605268, 0.004793456755578518, 0.006832706741988659, 0.009668158367276192, 0.002252518432214856, -0.011073697358369827, -0.020343754440546036, -0.013600418344140053, -0.004647215828299522, 0.006556473672389984, 0.010797464288771152, 0.004622842185199261, 0.02276485785841942, -0.003863201243802905, 0.005402794573456049, 0.009391925297677517, -0.010797464288771152, -0.02360980585217476, -0.0008261603652499616, 0.020798727869987488, -0.003266050247475505, -0.008993824943900108, -1.6725050954846665e-05, 0.01832887902855873, 0.01860511116683483, -0.00020844428217969835, -0.014607856050133705, 0.007588285952806473, 0.009627535939216614, -0.008189499378204346, -0.0005346938269212842, -0.019823787733912468, 0.0007007383974269032, -0.00040419402648694813, -0.008587599731981754, -0.006349299103021622, -0.03173431009054184, -0.00964378472417593, -0.015160322189331055, -0.005484039429575205, 0.001710207900032401, 0.014485988765954971, 0.0027927979826927185, 0.005037191789597273, -0.002802953589707613, 0.008221996948122978, 0.00706425542011857, -0.0009988060919567943, -0.0007317130221053958, -0.002004721201956272, -0.005402794573456049, -0.026112152263522148, -0.005735898856073618, -0.023691050708293915, 0.019092582166194916, -0.02191990800201893, -0.015761535614728928, 0.0019569897558540106, -0.0033594819251447916, 0.012471112422645092, 0.008079818449914455, 0.024211019277572632, 0.003828671993687749, -0.022537371143698692, -0.003217303194105625, -0.0053256116807460785, -0.005341860465705395, -6.804271106375381e-05, 0.006865204777568579, 0.005967447534203529, 0.003848983207717538, 0.013145445846021175, 0.0024820356629788876, -0.012747345492243767, 0.0015599045436829329, -0.017841408029198647, 0.0023987595923244953, 0.029719430953264236, -0.004496912471950054, -0.021773668006062508, -0.01243048906326294, 0.010017512366175652, 0.0069180140271782875, -0.017646420747041702, 0.015469053760170937, 0.007470480632036924, -0.01691521517932415, 0.0055693467147648335, -0.009473170153796673, -0.013827904127538204, 0.013957896269857883, -0.03316422179341316, -0.004070376046001911, 0.01481096912175417, 0.022342383861541748, 0.009627535939216614, 0.01315357070416212, 0.007905141450464725, 0.002504378091543913, -0.008096067234873772, 0.005041254218667746, 0.015111575834453106, -0.008766338229179382, 0.013901024125516415, -0.010366865433752537, -0.01138242892920971, -0.004370982758700848, -0.0038063295651227236, 0.002118464093655348, -0.023398568853735924, -0.015615294687449932, -0.02541344426572323, -0.02559218369424343, -0.015265940688550472, -0.013242939487099648, -0.014250378124415874, -0.01125243678689003, 0.02627464197576046, -0.005467790644615889, 0.008815085515379906, -0.006771773099899292, -2.1596579244942404e-05, -0.008977576158940792, -0.005865890998393297, 0.010976203717291355, 0.016249006614089012, -0.002715615089982748, 0.0209612175822258, 0.011496171355247498, -0.012592979706823826, -0.022862350568175316, -0.008644470945000648, 0.008083880878984928, 0.00418818136677146, 0.01634649932384491, 0.0028720118571072817, -0.016021519899368286, 0.004984382539987564, -0.0008525650482624769, -0.007511103060096502, -0.0049193864688277245, 0.009611287154257298, 0.028305768966674805, 0.0006514835986308753, -0.01083808671683073, 0.025608433410525322, 0.02642088383436203, 0.002766393357887864, -0.005045316182076931, -0.01152054499834776, -0.020652486011385918, -0.012113633565604687, 0.010236873291432858, -0.013811655342578888, 0.007620783522725105, 0.01702895760536194, -0.005094063468277454, 0.0002648080117069185, 0.0034671316388994455, -0.000592073134612292, 0.0023743859492242336, -0.012861087918281555, -0.014274751767516136, -0.008441358804702759, 0.020587490871548653, -0.00866884458810091, 0.005077814217656851, -0.02138369157910347, 0.011374304071068764, 0.006601158529520035, -0.0028374826069921255, 0.004541597329080105, 0.0018869157647714019, 0.008571350947022438, -0.0017640326404944062, -0.012536107562482357, -0.0020565148442983627, -0.0051224990747869015, 0.008847584016621113, -0.015769660472869873, 0.005809019785374403, 0.015079077333211899, -0.003221365390345454, 0.0051021878607571125, 0.018507618457078934, 0.0019031647825613618, -0.019466308876872063, -0.025072215124964714, -0.002232207218185067, 0.008457607589662075, -0.005642467178404331, -0.008307304233312607, -0.019953779876232147, 0.008498230017721653, 0.011366179212927818, -0.01132555678486824, -0.001975269755348563, -0.016630858182907104, 0.010504982434213161, 0.01954755373299122, 0.0010856366716325283, 0.008360113948583603, -0.011634288355708122, 0.022569868713617325, -0.017938902601599693, 0.0174676813185215, 0.0005280926707200706, 0.006483353208750486, -0.0023175145033746958, 0.008652595803141594, -0.0018148107919842005, -0.0022545496467500925, 0.01997002772986889, 0.022862350568175316, 0.02390228770673275, 0.012885461561381817, -0.03792518004775047, 0.011845525354146957, 0.0020189390052109957, 0.021221201866865158, 0.005435292609035969, 0.01842637173831463, -0.03747020661830902, -0.006832706741988659, 0.018946340307593346, -0.012909835204482079, -0.007104877848178148, 0.028890732675790787, 0.01997002772986889, 0.011951143853366375, 0.014494113624095917, -0.026924602687358856, -0.018263882026076317, -0.018653858453035355, 0.013592293485999107, -0.014624104835093021, 0.0004491326690185815, -0.0018401999259367585, -0.0011242281179875135, -0.004553783684968948, 0.002882167464122176, -0.005918700248003006, -0.0018635578453540802, -0.0018259820062667131, -0.04309236258268356, 0.00048036122461780906, -0.006873329635709524, 0.01377103291451931, -0.02291109785437584, 0.028305768966674805, 9.476471313973889e-05, -0.008108253590762615, 0.014234129339456558, 0.024633493274450302, 0.011918645352125168, -0.026453381404280663, 0.0032233966048806906, 0.0062193069607019424, 0.0016665386501699686, 0.010594352148473263, -0.01403914112597704, -0.0038814812432974577, 0.013746659271419048, 0.0007210496114566922, 0.00030289162532426417, -0.013056076131761074, -0.013957896269857883, -0.0011201658053323627, 0.011349930427968502, -0.009058821015059948, 0.0147540969774127, 0.013088574633002281, -0.01997002772986889, -0.003576812334358692, 0.0016320095164701343, -0.011439300142228603, 0.0024779734667390585, -0.01658211089670658, 0.027217084541916847, 0.010383115150034428, -0.008197623305022717, 0.014640354551374912, -0.01719144731760025, -0.0025612495373934507, 0.005496226251125336, 0.005853704176843166, 0.000748977588955313, -0.000832253776025027, 0.017841408029198647, -0.0019691763445734978, 0.028744490817189217, 0.0062477425672113895, 0.01815013960003853, -0.003219334175810218, -0.000360270933015272, -0.02473098784685135, -0.027428321540355682, 0.016687728464603424, -0.005833392962813377, -0.0092863067984581, 0.008815085515379906, -0.01538780890405178, 0.013576044701039791, -0.007957950234413147, 0.007580161094665527, 0.0012765625724568963, -0.0024901600554585457, 0.0034386957995593548, 0.01586715504527092, 0.003997255582362413, -0.012397991493344307, 0.004080531653016806, 0.006227431353181601, 0.04169495031237602, -0.010529356077313423, -0.010025636292994022, -0.021594928577542305, 0.019921280443668365, 0.0042978618294000626, -0.007706090807914734, 0.009497543796896935, -0.005073752254247665, 0.011431175284087658, 0.009920017793774605, -0.0017112233908846974, -0.001494908588938415, 0.010439986363053322, 0.0017254413105547428, 0.010456235148012638, 0.0010907144751399755, 0.010675597004592419, -0.0009226388647221029, -0.00716174952685833, -0.01370603684335947, 0.025787172839045525, 0.005666840821504593, -0.014705350622534752, 0.014104137197136879, 0.0020219855941832066, 0.00531748728826642, -0.015623419545590878, 0.0076614064164459705, 0.019450059160590172, 0.003796173958107829, -0.03786018490791321, -0.01943381130695343, -0.01858886331319809, 0.02570592798292637, -0.013543546199798584, -0.02360980585217476, -0.020083772018551826, 0.013519172556698322, -0.004054126795381308, 0.020879972726106644, 0.022342383861541748, 0.021741170436143875, 0.007710153236985207, 0.02070123329758644, 0.025640930980443954, 0.02516970969736576, 0.02154618129134178, 0.004078500438481569, -0.003572750138118863, -0.007637032773345709, 0.002654681447893381, -0.014445366337895393, 0.006633656565099955, 0.0004882318607997149, 0.017240194603800774, 0.016736475750803947, 0.0034041667822748423, -0.004171932116150856, -0.027444571256637573, -0.002595778787508607, -0.029101969674229622, 0.01552592497318983, -0.009343178011476994, 0.026209646835923195, 0.006109626032412052, 0.00010625326831359416, -0.0019773009698837996, -0.00010047724936157465, -0.012820465490221977, -0.011098071001470089, 0.006718963850289583, 0.005601844750344753, 0.01244673877954483, 0.0021103397011756897, -0.019352566450834274, -0.04175994545221329, 0.0005181909655220807, -0.002683117054402828, 0.023723548278212547, 0.02586841769516468, -0.02364230342209339, 0.00037804327439516783, 0.019758790731430054, 0.032498013228178024, 0.009855021722614765, 0.022732358425855637, -0.015582796186208725, -0.016963962465524673, -0.0013425741344690323, -0.0024820356629788876, -0.018978839740157127, -0.02055499330163002, 0.004602530971169472, 0.012877336703240871, 0.0004729983920697123, 0.0027542065363377333, 0.011934895068407059, 0.003294485853984952, -0.0397125706076622, 0.002480004448443651, 0.002008783398196101, 0.0026465568225830793, 0.010301869362592697, -0.005203743930906057, 0.021026212722063065, -0.004890950862318277, -0.0016401340253651142, -0.01803639717400074, 0.013462301343679428, -0.014778470620512962, 0.01026124693453312, 0.011601789854466915, -0.01998627744615078, 0.0036275906022638083, 0.013470426201820374, -0.0028902918566018343, -0.002268767450004816, 0.020636238157749176, 0.0023784481454640627, 0.013397305272519588, 0.0032822992652654648, -0.003668213030323386, 0.0031848051585257053, 0.009976889938116074, -0.0014278814196586609, 0.010976203717291355, 0.003735240316018462, -0.02669711597263813, 0.010976203717291355, 0.031116846948862076, 0.020100019872188568, 0.0020707326475530863, 0.011658661998808384, -0.019060084596276283, 0.004440040793269873, -0.0015081109013408422, -0.007953888736665249, 0.0025510939303785563, 0.008969451300799847, -0.008258556947112083, 0.0005869953311048448, 0.009952516295015812, 0.010748717002570629, 0.0034244779963046312, 0.0022992342710494995, 0.010318119078874588, 0.0027806111611425877, 0.004216616973280907, -0.0030791866593062878, 0.0081813745200634, 0.010846211574971676, -0.006682403851300478, -0.013649164699018002, 0.02221239171922207, 0.00829105544835329, -0.016866467893123627, 0.004862514790147543, -0.00254906271584332, -0.0034346336033195257, 0.010870585218071938, 0.01832887902855873, 0.011999891139566898, 0.01195926871150732, -0.028338266536593437, 0.01138242892920971, -0.007145500276237726, 0.01349479891359806, -0.009448796510696411, 0.00112524360883981, -1.0044551345345099e-05, -0.002711552893742919, 0.006487415637820959, 0.012186754494905472, -0.0002353566960664466, -0.027152089402079582, 0.0034163533709943295, 0.007312052417546511, -0.009188813157379627, -0.01257673092186451, 0.012560481205582619, -0.006182746961712837, -0.001105948002077639, -0.019401313737034798, 0.00524030439555645, 0.007986386306583881, -0.007446106988936663, -0.004541597329080105, -0.003712897887453437, -0.01586715504527092, 0.016833970323204994, 0.021838663145899773, 0.0004511637962423265, 0.0033391707111150026, -0.012064887210726738, -0.005443417001515627, -0.024389758706092834, -0.022326134145259857, -0.01384415291249752, -0.013210441917181015, 0.0058008949272334576, 0.00024970152298919857, -0.006438668351620436, 0.0051428102888166904, 0.008104192093014717, -0.0017823128728196025, -0.019661296159029007, -0.01419350691139698, -0.00254906271584332, 0.0006139077595435083, 0.027314579114317894, -0.014867840334773064, -0.015623419545590878, 0.012706722132861614, 0.008546977303922176, 0.02585216797888279, 0.0010744654573500156, -0.02461724355816841, 0.002835451625287533, -0.026762112975120544, -0.004088656045496464, -0.00513062346726656, -0.006686465814709663, 0.0037250847090035677, -0.003213240997865796, -0.0029045098926872015, 0.012731095775961876, 0.010756841860711575, -0.011536793783307076, -0.033066727221012115, -0.00534998532384634, 0.00909131858497858, -0.002380479359999299, 0.0045212856493890285, 0.010667472146451473, -0.006678341422230005, 0.0128692127764225, -0.02893947996199131, 0.01620025932788849, -0.00751922745257616, 0.011195564642548561, -0.009424423798918724, -0.008307304233312607, 0.03360294550657272, 0.0011739906622096896, -0.007108940277248621, 0.007742651272565126, -0.0008520572446286678, -0.012609228491783142, 0.030840612947940826, -0.00478533236309886, -0.004464414436370134, -0.00824637059122324, -0.016866467893123627, 0.000621016719378531, -0.015144073404371738, 0.008741965517401695, 0.010586227290332317, -0.024779733270406723, -0.009497543796896935, 0.018637610599398613, -0.028273269534111023, 0.027070844545960426, -0.005012818146497011, 0.0014715505531057715, -0.02629089169204235, -0.008815085515379906, 0.006783959921449423, -0.002995910355821252, -0.013957896269857883, -0.010472483932971954, -0.005532786715775728, -0.002252518432214856, -0.03552032634615898, -0.012349244207143784, 0.022846102714538574, 0.012487361207604408, 0.007490791846066713, 0.011626163497567177, 0.015144073404371738, -0.03296923264861107, -0.022537371143698692, -0.012243625707924366, 0.02599840983748436, 0.00716174952685833, -0.024714738130569458, 5.918827355344547e-06, 0.013632915914058685, 0.022049900144338608, 0.02503971755504608, -0.004825954791158438, 0.003708835691213608, -0.015355310402810574, 0.0011039167875424027, -0.014835342764854431, -0.025900915265083313, 0.00922131072729826, -0.0026729614473879337, -0.0011536794481799006, 0.0011282903142273426, -0.016817720606923103, -0.0013963989913463593, -0.009668158367276192, -0.011837400496006012, 0.004326297901570797, 0.006702715065330267, -0.014347871765494347, -0.00692207645624876, -0.03318047150969505, 0.0036316527985036373, 0.005297176074236631, 0.05852891877293587, 0.013949771411716938, 0.01972629316151142, 0.004163807723671198, -0.004890950862318277, -0.018523866310715675, -0.01745143160223961, -0.012682349421083927, -0.013949771411716938, 0.006751461885869503, -0.005951198283582926, -0.02237488143146038, 0.02614464983344078, 0.018978839740157127, -0.004293799865990877, -0.0016005270881578326, -0.0020301102194935083, -0.01139055285602808, -0.01647649146616459, 0.021042462438344955, 0.0033879177644848824, -0.011089946143329144, 0.0017640326404944062, -0.008132627233862877, 0.01759767346084118, 0.0007235885132104158, 0.005309362895786762, 0.008904455229640007, 0.020652486011385918, -0.006804271135479212, 0.008611973375082016, -0.007689842022955418, 0.0075679742731153965, 0.017386436462402344, 0.012991080060601234, 0.006873329635709524, -0.010204375721514225, 0.018978839740157127, -0.00674739945679903, 0.005557159893214703, 0.004017566796392202, -0.015022206120193005, 0.012251750566065311, 0.000265061913523823, -0.007555787917226553, -0.013056076131761074, 0.01702895760536194, -0.00632492545992136, -0.004931573290377855, 0.012113633565604687, -0.014672852121293545, -0.0139741450548172, 0.0029451323207467794, 0.015217194333672523, 0.007880767807364464, 0.007966075092554092, 0.006528038065880537, -0.004127247259020805, -0.01238174270838499, 0.003345264121890068, -0.00692207645624876, -0.01069997064769268, 0.013405430130660534, 0.0128692127764225, -0.0014024922857061028, -0.0010277496185153723, 0.004927510861307383, -0.009359427727758884, -0.0020961216650903225, -0.009920017793774605, 0.017955152317881584, -0.009538166224956512, -0.016078392043709755, -0.0064508551731705666, -0.007502978667616844, -0.019092582166194916, -0.028955727815628052, -0.007677655201405287, -0.015005957335233688, -0.004029753617942333, -0.0028374826069921255, -0.024844730272889137, 0.013982269912958145, -0.005817144177854061, -0.01915757730603218, -0.013145445846021175, -0.000269124167971313, -0.012016139924526215, 0.015379684045910835, -0.00014497159281745553, -0.009188813157379627, 0.004033815581351519, 0.0036336840130388737, -0.014291000552475452, 0.0055287242867052555, 0.010236873291432858, -0.019043834879994392, 0.004240990616381168, 0.004590344149619341, 0.010537480004131794, 0.0055084130726754665, -0.007356737274676561, 0.011536793783307076, -0.005894327070564032, -0.003361513139680028, -0.011951143853366375, -0.016606483608484268, -0.0116749107837677, -0.012974831275641918, 0.0057724593207240105, -0.014339747838675976, 0.004805643577128649, -0.011764280498027802, 0.011951143853366375, 0.01349479891359806, -0.001970191951841116, 0.023382319137454033, 0.00888820644468069, 0.0008220981690101326, -0.004907199647277594, 0.0011689128587022424, -0.0038571078330278397, 0.036690253764390945, 0.022163644433021545, 0.0032233966048806906, 0.008611973375082016, 0.00846573244780302, 0.010496857576072216, 0.022716110572218895, 0.017581423744559288, -0.00769390445202589, -0.015087202191352844, -0.012349244207143784, 0.019937530159950256, -0.02531595155596733, 0.0013506986433640122, 0.007316114846616983, 0.014429117552936077, -0.003469162853434682, -0.007775149308145046, -0.006105564069002867, 0.026079654693603516, 0.013283561915159225, 0.012552357278764248, -0.0004696978139691055, 0.016590235754847527, -0.03477287292480469, 0.029735680669546127, -0.001180084072984755, 0.005691214464604855, -0.01027749665081501, 0.013762908056378365, -0.01577778533101082, 0.01720769703388214, -0.011593665927648544, -0.010472483932971954, -0.0026099965907633305, 0.03267674893140793, -0.02042500115931034, 0.005484039429575205, -0.009343178011476994, -0.015891527757048607, -0.006552411708980799, 0.010618725791573524, 0.018068894743919373, -0.012812341563403606, -0.0026628058403730392, 0.04140246659517288, -0.0016086515970528126, -0.0032437078189104795, -0.0032965170685201883, -0.007628908380866051, -0.016590235754847527, -0.0010714188683778048, 0.003357450943440199, 0.012560481205582619, 0.005544973071664572, -0.01014750450849533, 0.0025064090732485056, 0.009562539868056774, -0.0009485357441008091, -0.0052849892526865005, 0.010098757222294807, 0.004125216510146856, -0.011926770210266113, -0.012836714275181293, -0.007929515093564987, -0.00026303078630007803, -0.01675272546708584, 0.0021468999329954386, 0.020489996299147606, 0.027477068826556206, -0.00986314658075571, -0.006568660493940115, -0.004598468542098999, 0.00950566865503788, -0.008230121806263924, -0.009253809228539467, -0.009424423798918724, 0.014672852121293545, -0.0036032169591635466, 0.022716110572218895, -0.0013324185274541378, 0.008197623305022717], "f1790d38-4768-4282-acf3-32ea03ee760f": [-0.0025540711358189583, -0.013725390657782555, -0.007544578518718481, 0.04689441993832588, 0.030178314074873924, -0.010862278752028942, 0.018662065267562866, 0.026382097974419594, -0.020320914685726166, 0.01976264826953411, 0.03847256302833557, 0.0382811576128006, 0.009514463134109974, -0.02022521197795868, 0.025233663618564606, 0.028487561270594597, -0.033145103603601456, 0.021501250565052032, 0.057453639805316925, -0.02188406139612198, 0.07133056223392487, 0.019810499623417854, -0.05927199497818947, 0.048489466309547424, -0.017290323972702026, 0.01845470815896988, -0.008700988255441189, 0.00809885747730732, -0.026031188666820526, 0.009235329926013947, 0.022059516981244087, 0.016891561448574066, 0.020320914685726166, -0.023160099983215332, 0.0013677538372576237, -0.03764313831925392, 0.025887632742524147, 0.011803356930613518, -0.024468040093779564, 0.014738245867192745, -0.030002858489751816, 0.005096179433166981, -0.008836567401885986, 0.012194143608212471, -0.06839566677808762, -0.002629835857078433, -0.03033781796693802, 0.03984430432319641, -0.048712775111198425, -0.04399143159389496, 0.008764790371060371, -0.015105106867849827, 0.018295204266905785, 0.02347911149263382, 0.023271754384040833, -0.01813569851219654, -0.02607904002070427, 0.01816760003566742, -0.009012022987008095, -0.06820426136255264, 0.024101179093122482, -0.007042137905955315, -0.003313712775707245, -0.02076752856373787, -0.007353172637522221, -0.019411737099289894, 0.000448108883574605, 0.00691852206364274, -0.05136055499315262, 0.010734674520790577, -0.01982644945383072, 0.014443161897361279, -0.05522057041525841, 0.019427688792347908, 0.023032497614622116, -0.02510605938732624, 0.0422687791287899, 0.03566528111696243, 0.003929800353944302, -0.015503869391977787, -0.0035111000761389732, -0.013876919634640217, -0.008860493078827858, -0.03786644712090492, 0.030114511027932167, -0.004697417374700308, 0.029540294781327248, -0.03159790486097336, 0.012297822162508965, -0.009498512372374535, 0.004402333404868841, 0.00404942873865366, -0.00304255448281765, -0.01647684909403324, -0.04919128865003586, 0.049829307943582535, -0.022027617320418358, 0.01845470815896988, 0.013852993957698345, -0.028439709916710854, -0.03949339687824249, -0.029029877856373787, -0.003650666680186987, 0.01719462126493454, 0.015663374215364456, -0.00010965956607833505, 0.008206523023545742, -0.00042194011621177197, 0.002137364586815238, 0.043289609253406525, -0.035633377730846405, -0.044406142085790634, -0.0009480568114668131, -0.013103321194648743, -0.047628141939640045, -0.033464111387729645, -0.03649470582604408, -0.037068922072649, 0.0033815023489296436, -0.0016478842590004206, 0.036462802439928055, -0.011779431253671646, -0.02253803238272667, -0.005052315536886454, -0.03598428890109062, 0.00928318127989769, 0.005961493123322725, 0.007544578518718481, 0.017752887681126595, 0.0041072494350373745, -0.0025580585934221745, 0.010248185135424137, 0.014411261305212975, 0.013334603980183601, 0.027402929961681366, 0.01132484246045351, -0.010280085727572441, 0.019842401146888733, -0.02590358443558216, 0.04293869808316231, -0.04223687946796417, -0.01928413286805153, 0.022553982213139534, -0.007831687107682228, 0.007353172637522221, -0.00726145738735795, -0.03387882560491562, 0.017433878034353256, 0.003752351040020585, 0.029827402904629707, -0.052859898656606674, -0.04469325393438339, 0.0014893763000145555, 0.012497203424572945, 0.010886204428970814, -0.005770087242126465, -0.01845470815896988, -0.02390977367758751, 0.0145229147747159, 0.03547387197613716, 0.011731579899787903, -0.028519462794065475, -0.0036745923571288586, 0.038600169122219086, 0.015687299892306328, -0.014905726537108421, 0.04743673652410507, 0.03145435079932213, -0.004685454070568085, 0.013589811511337757, 0.006543685682117939, -0.021437449380755424, 0.01856636255979538, 0.012441376224160194, -0.030258065089583397, 0.038663968443870544, 0.008661111816763878, 0.06325961649417877, 0.018773717805743217, -0.03815355524420738, -0.040514227002859116, -0.0037762767169624567, -0.0006958398153074086, 0.007349184714257717, 0.010774550959467888, 0.020687775686383247, -0.015527795068919659, 0.038057852536439896, 0.010208308696746826, -0.011149387806653976, 0.001121518318541348, -0.015280562452971935, -0.024180931970477104, 0.040833234786987305, 0.021915962919592857, 0.005375312641263008, -0.009841447696089745, -0.037005119025707245, -0.04156695678830147, 0.008389953523874283, -0.03824925795197487, -0.025329366326332092, -0.005363349802792072, 0.032379478216171265, -0.05863397568464279, -0.02376621961593628, 0.017657184973359108, -0.0035390134435147047, 0.04386382922530174, -0.025058208033442497, 0.02564837597310543, -0.009147602133452892, -0.02004975639283657, -0.02099083550274372, -0.024244733154773712, 0.01791239157319069, -0.0121702179312706, 0.019188430160284042, -0.026286395266652107, -0.040546126663684845, 0.004350494127720594, 0.012760385870933533, -0.008613260462880135, -0.014060350134968758, -0.05509296804666519, 0.0026717057917267084, 0.018343055620789528, -0.00789947621524334, -0.021612904965877533, -0.019890252500772476, 0.0028990001883357763, -0.009482561610639095, 0.007393048610538244, -0.025616474449634552, -0.0022151232697069645, 0.05349791795015335, 0.04692631959915161, 0.0042388406582176685, -0.011332818306982517, 0.00026069069281220436, -0.0033914714585989714, 0.03515486419200897, -0.011516248807311058, -0.07075633853673935, 0.05604999512434006, 0.00304255448281765, 0.027546484023332596, 0.030832283198833466, 0.03710082173347473, 0.0003210034628864378, -0.0019260208355262876, 0.024803001433610916, -0.010080705396831036, -0.02225092425942421, -0.04201357066631317, 0.012050589546561241, 0.01339840516448021, -0.033687420189380646, 0.006336329039186239, -0.009817522019147873, -0.009091774933040142, 0.02741887979209423, -0.0021493276581168175, 0.0005014432827010751, -0.015926556661725044, -0.020496370270848274, 0.01502535492181778, -0.013143197633326054, 0.014156053774058819, 0.04175836220383644, 0.03349601477384567, -0.0012122367043048143, -0.01433948427438736, 0.01118128839880228, 0.022442329674959183, -0.038057852536439896, 0.02925318479537964, -0.008254374377429485, 0.007448875345289707, -0.033432211726903915, -0.04568218067288399, -0.005068265832960606, 0.013765266165137291, -0.02781764231622219, 0.006954410579055548, -0.006723128259181976, -0.018949173390865326, 0.01762528344988823, -0.05113724619150162, 0.013717414811253548, 0.010088680312037468, -0.009873349219560623, 0.02564837597310543, -0.017178669571876526, 0.027275325730443, 0.03167765960097313, 0.020320914685726166, 0.012385549955070019, -0.015288537368178368, 0.0666092187166214, 0.001123512163758278, -0.017657184973359108, -0.017609333619475365, 0.02296869456768036, 0.013015594333410263, 0.007532615680247545, 0.02228282392024994, -0.006164861377328634, -0.010463516227900982, 0.008493632078170776, 0.031183194369077682, -0.03127889707684517, 0.0034433105029165745, -0.022203071042895317, 0.025456970557570457, -0.006495833862572908, -0.009985001757740974, -0.017784787341952324, -0.011356743983924389, 0.015240686014294624, 0.029460541903972626, -0.018502559512853622, -0.04587358981370926, -0.012305797077715397, 0.032921794801950455, -0.059144388884305954, -0.02296869456768036, -0.010120580904185772, 0.007018212229013443, -0.02051232010126114, -0.05754934251308441, -0.04099274054169655, -0.0319807194173336, 0.0076522440649569035, -0.055826690047979355, -0.06820426136255264, -0.002346714725717902, -0.07184097170829773, 0.02528151497244835, -0.006755029316991568, -0.009115700609982014, -0.017545530572533607, 0.008509582839906216, -0.028886323794722557, 0.012194143608212471, 0.0057222358882427216, -0.0018233396112918854, 0.02322390303015709, -0.04861707240343094, 0.0118671590462327, 0.0010367813520133495, 0.02036876603960991, 0.03172551095485687, -0.01939578726887703, 0.010886204428970814, -0.009642066434025764, -0.03410213068127632, 0.018725866451859474, -0.009386858902871609, 0.012321747839450836, 0.004490060731768608, -0.05356172099709511, 0.03127889707684517, -0.001953934086486697, -0.004402333404868841, 0.008066956885159016, -0.011556124314665794, -0.035091061145067215, -0.012218070216476917, 0.015089157037436962, 0.0010437597520649433, 0.030545175075531006, 0.006790917832404375, -0.01079847663640976, -0.0030325856059789658, 0.0004810067475773394, 0.03802594915032387, -0.005052315536886454, -0.024356387555599213, 0.02402142621576786, 0.01613391377031803, -0.006846744567155838, -0.0006998274475336075, 0.019204381853342056, 0.012824187986552715, -0.00042767231934703887, 0.032204024493694305, 0.007173729594796896, -0.007887513376772404, -0.019156530499458313, -0.022314725443720818, 0.026206642389297485, -0.03690941631793976, -0.009498512372374535, -0.04009951278567314, -0.0025819845031946898, 0.013103321194648743, 0.01668420433998108, 0.02213926985859871, -0.004226877819746733, -0.00267369975335896, -0.0012202119687572122, -0.028152601793408394, -0.018837520852684975, 0.003367545548826456, -0.022474229335784912, -0.02070372737944126, -0.028726819902658463, 0.019555291160941124, 0.03005070984363556, 0.006479883566498756, -0.0012650726130232215, 0.02947649173438549, 0.009131651371717453, 0.017481729388237, 0.027323177084326744, -0.03799404948949814, 0.0437043234705925, -0.03853636607527733, -0.03442114219069481, 0.024324486032128334, 0.05707082897424698, -0.01094203069806099, 0.026892513036727905, 0.033974528312683105, 0.01799214445054531, -0.005044340156018734, 0.016955362632870674, 0.0159903597086668, -0.025058208033442497, 0.008693013340234756, 0.037260327488183975, 0.0024444113951176405, -0.03095988743007183, 0.013510058633983135, -0.00446214759722352, -0.00358487106859684, 0.03732413053512573, 0.007285383064299822, 0.04006761312484741, -0.0237343180924654, -0.01614188775420189, -0.008908344432711601, -0.010399715043604374, -0.024436140432953835, -0.029891204088926315, -0.03512296453118324, 0.02962004579603672, -0.016149863600730896, 0.0192522332072258, -0.031262945383787155, -0.014156053774058819, -0.05538007616996765, -0.004884835332632065, 0.00789548922330141, 0.0006644373061135411, 0.013270801864564419, -0.0308163333684206, -0.0065077971667051315, -0.043576717376708984, -0.0455864779651165, 0.007026187609881163, 0.01885347068309784, 0.015958458185195923, 0.02665325626730919, -0.02579193003475666, -0.009921200573444366, 0.010272110812366009, 0.022745387628674507, 0.008549458347260952, 0.003014641348272562, -0.006842757109552622, 0.005774074699729681, 0.02910963073372841, 0.01500940416008234, 0.009091774933040142, -0.04922318831086159, -0.03716462478041649, 0.01516890898346901, 0.003937775269150734, -0.013661588542163372, -0.031262945383787155, -0.0004752745444420725, -0.022410428151488304, -0.0209110826253891, 0.0008433818002231419, 0.013565885834395885, -0.001786454115062952, 0.020799430087208748, -0.007971254177391529, -0.006109035108238459, -0.014586716890335083, 0.012561005540192127, 0.00034368305932730436, 0.006926496978849173, -0.014738245867192745, -0.0084378058090806, -0.016748007386922836, 0.03048137202858925, -0.0387277714908123, 0.015144983306527138, -0.023399358615279198, -0.02351101115345955, -0.034803953021764755, -0.02864706702530384, -0.004033478442579508, -0.019316034391522408, -0.009035948663949966, 0.00818259734660387, -0.02073562704026699, -0.057453639805316925, 0.01633329503238201, -0.06383383274078369, 0.03690941631793976, 0.01899702474474907, 0.014786097221076488, -0.02850351296365261, -0.02282514050602913, 0.020097607746720314, 0.018215451389551163, 0.012919890694320202, -0.02001785673201084, -0.00760439271107316, -0.005594631657004356, -0.01896512322127819, -0.019890252500772476, -0.010862278752028942, -0.015535769984126091, -0.02051232010126114, -0.0028950124979019165, -0.009450661018490791, 0.043576717376708984, 0.0012461314909160137, 0.02590358443558216, -0.00027340123779140413, -0.01565539836883545, -0.0033336509950459003, 0.015296513214707375, -0.005917629227042198, 0.0045817759819328785, -0.04880847781896591, 0.03655850514769554, -0.012800262309610844, -0.01867801509797573, 0.024547792971134186, 0.005259671714156866, -0.03265063837170601, -0.008070943877100945, 0.014459112659096718, 0.03005070984363556, -0.019316034391522408, 0.00013395912537816912, -0.012529104016721249, -0.004785144701600075, -0.003690542886033654, -0.03387882560491562, -0.0006385177839547396, 0.002420485718175769, -0.012728485278785229, -0.028758719563484192, 0.004350494127720594, -0.000951047521084547, 0.00996905192732811, 0.019730746746063232, -0.006487858947366476, -0.009012022987008095, -0.007787823211401701, -0.02419688180088997, -0.019698847085237503, 0.01255302969366312, -0.007684145122766495, -0.018119748681783676, 0.03008260950446129, -0.01138066966086626, 0.010790501721203327, 0.010766576044261456, -0.017529580742120743, -0.007133853621780872, -0.010080705396831036, -0.018773717805743217, 0.030672777444124222, -0.01701916567981243, -0.021549101918935776, -0.01500940416008234, -0.02105463668704033, 0.00514801824465394, -1.2874095773440786e-05, -0.02033686637878418, 0.019459588453173637, 0.028375908732414246, -0.017274372279644012, 0.04150315746665001, 0.009737770073115826, 0.042204976081848145, -0.0018133705016225576, 0.01827925257384777, -0.013486132957041264, 0.03432543948292732, 0.026669207960367203, -0.010591120459139347, 0.012640757486224174, 0.028328057378530502, 0.0014475062489509583, 0.026557553559541702, 0.006420069374144077, 0.049797408282756805, -0.0021493276581168175, 0.0002225590724265203, -0.004502023570239544, -0.00514801824465394, -0.017529580742120743, -0.03445304185152054, -6.916029815329239e-05, -0.007341209799051285, 0.03719652444124222, -0.011444471776485443, 0.026398049667477608, -0.0018153643468394876, -0.02182026021182537, 0.0032718428410589695, 0.0005134061793796718, -0.009992977604269981, 0.04775574430823326, -0.01417997945100069, -0.0026517678052186966, 0.011292941868305206, -0.017290323972702026, 0.02174050733447075, 0.0021034698002040386, 0.011986787430942059, -0.042747292667627335, 0.001906082732602954, -2.023405977524817e-05, -0.02376621961593628, 0.04009951278567314, -0.030465422198176384, -0.006204737816005945, 0.0308163333684206, -0.02442018873989582, -0.038632068783044815, -0.022729437798261642, 0.00247830618172884, 0.004187001846730709, 0.05758124217391014, -0.01668420433998108, -0.025377217680215836, -0.002241042908281088, 0.013876919634640217, 0.030752530321478844, 0.023319605737924576, 0.020927032455801964, 0.022665636613965034, 0.012433401308953762, 0.05113724619150162, 0.037515535950660706, -0.00803904328495264, 0.004143137950450182, 0.011452446691691875, 0.011093560606241226, 0.010415664874017239, 0.004717355128377676, -0.0022131295409053564, 0.015424116514623165, 0.007831687107682228, 0.02142149768769741, 0.017513630911707878, 0.0262225940823555, 0.001566138002090156, 0.012720510363578796, 0.03435733914375305, 0.0055388049222528934, -0.0437043234705925, -0.0004515980544965714, -0.0010776545386761427, -0.004179026465862989, 0.005758124403655529, -0.005275622010231018, 0.011779431253671646, -0.02947649173438549, -0.0048529342748224735, -0.012321747839450836, 0.0060851089656353, -0.012202119454741478, 0.024914653971791267, -0.04089703783392906, -0.0025979347992688417, -0.005937566980719566, -0.0008059978135861456, -0.00886846799403429, 0.004498036112636328, -0.017481729388237, 0.009251279756426811, -0.02625449374318123, 0.003311719046905637, -0.0158787053078413, -0.021293895319104195, -0.011165337637066841, -0.04089703783392906, -0.01791239157319069, -0.008573384024202824, -0.03407023102045059, -0.03687751665711403, -0.02453184314072132, -0.022857042029500008, -0.003124300856143236, -0.008565409108996391, -0.015328413806855679, -0.04335341230034828, -0.0019270176999270916, -0.0005153999663889408, 0.012194143608212471, 0.021692655980587006, 0.014148077927529812, -0.013175099156796932, -0.005929592065513134, 0.03461254760622978, -0.010846327990293503, -0.0006335332291200757, 0.020416617393493652, 0.02636614814400673, -0.008126771077513695, 0.014778122305870056, -0.0011673759436234832, -0.009729794226586819, 0.009801571257412434, 0.001508317538537085, 0.027658136561512947, -0.019156530499458313, -0.02576003037393093, 0.0035469885915517807, 0.0038261220324784517, 0.010910130105912685, -0.008932270109653473, 0.012616831809282303, -0.034006427973508835, -0.0032120284158736467, -0.04858516901731491, 0.02824830450117588, 0.044087134301662445, -0.0028730807825922966, -0.002294875681400299, 0.005937566980719566, 0.009354958310723305, 0.002952833194285631, -0.017944293096661568, 0.012329722754657269, 0.029269136488437653, 0.008011129684746265, -0.02987525425851345, -0.014857874251902103, 0.02842376008629799, -0.005159981083124876, 0.026142841205000877, -0.015639448538422585, -0.06278110295534134, 0.027769790962338448, 0.02647780068218708, -0.008732888847589493, -0.0033974528778344393, 0.0403866209089756, -0.008445780724287033, 0.04147125408053398, 0.014586716890335083, -0.02170860767364502, 0.02636614814400673, 0.025855733081698418, 0.002637811005115509, 0.019555291160941124, 0.029412690550088882, 0.020065708085894585, 0.032172124832868576, 0.0036686109378933907, -0.009035948663949966, 0.0018612219719216228, -0.028774671256542206, 0.012561005540192127, 0.0192522332072258, 0.009825496934354305, -0.0032658614218235016, -0.011348768137395382, -0.04727723076939583, -0.020719677209854126, 0.003746369620785117, -0.0013817105209454894, 0.016014285385608673, -0.03710082173347473, 0.01965099386870861, 0.009331032633781433, -0.007528627756983042, -0.01173955574631691, 0.046256400644779205, 0.018406856805086136, 0.019443638622760773, -0.005463040433824062, 0.02658945508301258, -0.029715748503804207, -0.008094869554042816, 0.0173700749874115, -0.02016141079366207, 0.008900369517505169, 0.008693013340234756, -0.0335279144346714, 0.024659445509314537, 0.006212713196873665, 0.025600524619221687, -0.042428284883499146, -0.029013928025960922, -0.010176408104598522, -0.021836210042238235, 0.010064754635095596, 0.009985001757740974, 0.00505630299448967, -0.025807881727814674, 0.018103796988725662, -0.002077550394460559, -0.01132484246045351, 0.003973663784563541, 0.04239638149738312, -0.015041304752230644, 0.009434710256755352, -0.034229736775159836, -0.016891561448574066, -0.00593357952311635, 0.0031581956427544355, 0.014227830804884434, -0.004298655316233635, 0.005618557333946228, 0.0014425218105316162, 0.011771456338465214, -0.021756459027528763, 0.009921200573444366, 0.035059161484241486, -0.004382395185530186, 0.0387277714908123, 0.006535710301250219, 0.013725390657782555, -0.01414010301232338, -0.008302226662635803, -0.027530532330274582, 0.026413999497890472, -0.022346626967191696, -0.03333650901913643, -0.024085229262709618, 0.0030585050117224455, -0.008932270109653473, 0.02442018873989582, -0.007931377738714218, 0.009171527810394764, 0.017577432096004486, 0.028328057378530502, 0.047372933477163315, 0.006547673139721155, -0.018343055620789528, 0.006053208373486996, -0.00529954768717289, 0.01173955574631691, 0.02922128513455391, 0.044342342764139175, 0.017210571095347404, 0.03579288348555565, 0.0012680633226409554, 0.001009366475045681, -0.014076300896704197, -0.013302702456712723, -0.009386858902871609, -0.023351507261395454, 0.005355374421924353, -0.032921794801950455, 0.002199172740802169, -0.006280502770096064, -0.030577074736356735, 0.01208249107003212, 0.0078077614307403564, -0.026828711852431297, 0.014754196628928185, -0.009043923579156399, 0.010319962166249752, -0.01776883751153946, -0.020400667563080788, 0.007014224771410227, 0.03349601477384567, 0.012688608840107918, -0.012975717894732952, 0.017386026680469513, -0.01922033168375492, -0.004055410157889128, -0.015288537368178368, -0.013693489134311676, 0.013039520010352135, 0.00040000819717533886, -0.018757767975330353, -0.003028597915545106, 0.008621236309409142, 0.005251696333289146, -0.01182728260755539, -0.001125505892559886, 0.023287704214453697, -0.02210736833512783, -0.005167956463992596, 0.003182121319696307, -0.005383288022130728, -0.00838197860866785, -0.034516844898462296, -0.020895132794976234, 0.02644590102136135, -0.010543269105255604, -0.0043784077279269695, 0.02051232010126114, -0.0018283240497112274, -0.0006958398153074086, -0.007177717052400112, -0.006599512416869402, -0.012497203424572945, -0.006571598816663027, 0.02619069255888462, 0.03923818841576576, -0.011093560606241226, 0.016748007386922836, -0.0010168432490900159, 0.0028670993633568287, -0.02087918110191822, 0.018295204266905785, 0.008461731486022472, 0.02773788943886757, 0.00301663507707417, 0.0007132856408134103, 0.003644685260951519, -0.0053115105256438255, 0.00991322472691536, 0.0168756116181612, -0.006200750358402729, 0.0026138853281736374, 0.01665230467915535, 0.006755029316991568, 0.026748958975076675, -0.009634091518819332, -0.008900369517505169, -0.017784787341952324, -0.028615165501832962, -0.030002858489751816, 0.023415308445692062, -0.008043031208217144, 0.021261993795633316, -0.03199666738510132, 0.003361564129590988, -0.022633735090494156, 0.00878074113279581, 0.021628854796290398, -0.027291275560855865, -0.003140251385048032, 0.02311224862933159, -0.013047494925558567, 0.021836210042238235, -0.01466646883636713, -0.0073252590373158455, -0.014650518074631691, 0.010144506581127644, -0.02676491066813469, 0.02199571579694748, -0.003822134342044592, -0.025122011080384254, -0.0057940129190683365, -0.002797315828502178, 0.003345613833516836, 0.0007501711370423436, -0.009881324134767056, 0.005128080025315285, -0.014395310543477535, -0.016205690801143646, -0.001123512163758278, -0.0031462328042834997, -0.029029877856373787, 0.01845470815896988, -0.0003676087944768369, 0.0010218278039246798, -0.011284966953098774, 0.005211820360273123, -0.01654065027832985, -0.03930198773741722, -0.0023806095123291016, 0.014387335628271103, -0.02658945508301258, -0.03403833135962486, 0.00481305830180645, 0.006280502770096064, -0.014514938928186893, -0.012600881047546864, -0.0087408646941185, -0.012943816371262074, 0.003640697570517659, 0.001730627380311489, -0.02022521197795868, 0.006611475255340338, -0.0020615998655557632, 0.0060811215080320835, -0.0009600196499377489, 0.013629687950015068, -0.010934055782854557, -0.011891084723174572, -0.019874300807714462, -0.006743066478520632, -0.01701916567981243, -0.030640877783298492, 0.017067017033696175, 0.031661707907915115, 0.041630759835243225, 0.01759338192641735, -0.024483991786837578, -0.008130759000778198, 0.01173955574631691, -0.016349244862794876, -0.024866802617907524, 0.00593357952311635, 0.01756148226559162, 0.003473217599093914, 0.004033478442579508, -0.028982026502490044, -0.03139055147767067, 0.022872991859912872, 0.017178669571876526, 0.017433878034353256, -0.004984525963664055, -0.025552673265337944, -0.030098561197519302, -0.0068507324904203415, -0.0032977622468024492, -0.004013540223240852, -0.007672182284295559, 0.0022689562756568193, 0.017035115510225296, -0.014762171544134617, -0.0029807465616613626, 0.007847637869417667, -0.000838397245388478, 0.004037465900182724, -0.02430853620171547, -0.019858350977301598, -0.056145697832107544, -0.0022749376948922873, 0.02741887979209423, 0.0027295262552797794, -0.012281871400773525, -0.03381502255797386, 0.018359005451202393, -0.0027694024611264467, -0.0023088324815034866, 0.008972146548330784, -0.015583621338009834, 0.012401500716805458, 0.01616581343114376, 0.013310677371919155, -0.012257945723831654, 0.021261993795633316, -0.0219638142734766, 0.0034453042317181826, 0.00549095356836915, 0.001793432398699224, -0.0009929175721481442, 0.018805619329214096, 0.025951435789465904, -0.003200065577402711, -0.009442686103284359, 0.027211522683501244, 0.0029986908193677664, 0.016891561448574066, 0.0017067017033696175, -0.010128556750714779, -0.015575646422803402, -0.005431139376014471, 0.0011514254147186875, -0.006001369096338749, 0.011500298045575619, -0.0023985537700355053, -0.014546840451657772, -0.0002381357189733535, -0.001398657914251089, 0.0078077614307403564, 0.007911439053714275, 0.006986311636865139, 0.007165754213929176, -0.002137364586815238, 0.0024244734086096287, -0.012943816371262074, -0.012114391662180424, -0.034740149974823, -0.007524640299379826, -0.0041072494350373745, 0.013693489134311676, 0.006635400932282209, -0.014395310543477535, -0.024627545848488808, 0.0016658285167068243, 0.009378883987665176, 0.008485657162964344, -0.004884835332632065, -0.011635877192020416, 0.0244520902633667, 0.03987620770931244, 0.002350702416151762, 0.021405547857284546, 0.007484763860702515, -0.011013808660209179, -0.0040075588040053844, 0.022984646260738373, 0.020145459100604057, 0.05081823840737343, -0.022585883736610413, 0.021612904965877533, 0.0033436198718845844, -0.014012498781085014, 0.009155577048659325, 0.009012022987008095, 0.03139055147767067, 0.024787049740552902, 0.016779907047748566, 0.010989882983267307, 0.004143137950450182, -0.03221997618675232, -0.0031203131657093763, 0.016971314325928688, 0.01555172074586153, 0.021788358688354492, 0.022665636613965034, 0.005092191509902477, 0.013318653218448162, 0.02507415972650051, 0.006954410579055548, 0.02867896854877472, 0.014762171544134617, 0.029301036149263382, 0.0022729437332600355, -0.010686823166906834, 0.03467635065317154, -0.003030591644346714, 0.010280085727572441, 0.007931377738714218, 0.018263302743434906, 0.014618617482483387, -0.016636352986097336, -0.0063522798009216785, -0.0025819845031946898, -0.013278776779770851, 0.03569718077778816, 0.0136376628652215, -0.017003213986754417, 0.016149863600730896, -0.01679585874080658, -0.016444947570562363, 0.002815260086208582, -0.0489041805267334, 0.009673967957496643, -2.2157776129461126e-06, 0.011300916783511639, -0.0028292168863117695, -0.009865373373031616, -0.006440007593482733, 0.013932746835052967, -0.01152422372251749, -7.308561180252582e-05, 0.020097607746720314, -0.051201049238443375, -0.014530889689922333, -0.010726699605584145, -0.015639448538422585, 0.004290679935365915, 0.004286692012101412, 0.0039018867537379265, 0.0012670664582401514, -0.01323890034109354, 0.0070381504483520985, 0.011332818306982517, -0.029173433780670166, 0.0020396679174154997, 0.023176051676273346, -0.010926080867648125, 0.015001429244875908, -0.02119819074869156, -0.008565409108996391, 0.01035186368972063, -0.008106832392513752, 0.006623438093811274, 0.0008314189035445452, 0.02174050733447075, 0.0034951495472341776, -0.009171527810394764, -0.00016411551041528583, -0.01993810385465622, 0.003915843553841114, -0.017689084634184837, -0.012473277747631073, 0.02070372737944126, -0.007971254177391529, -0.017003213986754417, -0.01329472754150629, -0.0028810559306293726, 0.01682775840163231, -0.018039995804429054, -0.00023850955767557025, 0.012991667725145817, 0.03056112490594387, 0.021469349041581154, 0.008932270109653473, 0.007317284122109413, 0.013964647427201271, -0.013478158041834831, -0.0016987264389172196, 0.0006893599056638777, 0.0022330675274133682, 0.0007975241169333458, -0.0025441020261496305, -0.04778764769434929, -0.005857814569026232, -0.02556862309575081, -0.0045498753897845745, 0.02896607667207718, 0.019746698439121246, 0.005251696333289146, -0.020273063331842422, -0.001342831295914948, -0.023255804553627968, 0.0019270176999270916, 0.0064240568317472935, -0.0005956508102826774, 0.001625952310860157, 0.01730627380311489, 0.014634568244218826, 0.012832162901759148, 0.008230448700487614, 0.03221997618675232, -0.005937566980719566, -0.023750267922878265, 0.015448042191565037, 0.001169369788840413, 0.017960242927074432, 0.024547792971134186, -0.054997265338897705, -0.01882156915962696, -0.00043988440302200615, -0.03665420785546303, 0.019985955208539963, 0.011516248807311058, -0.019587192684412003, 0.021405547857284546, -0.0271636713296175, -0.007416974287480116, 0.0032598800025880337, -0.0013667569728568196, 0.023064397275447845, -0.009929175488650799, 0.039397694170475006, 0.010830378159880638, 0.013892870396375656, -0.014698369428515434, 0.011205214075744152, 0.003917837515473366, -0.00348119274713099, 0.018550410866737366, 0.01078252587467432, 0.015775026753544807, -0.002414504298940301, 0.002191197592765093, 0.013669563457369804, 0.009482561610639095, 0.015982383862137794, -0.06520557403564453, -0.0024464053567498922, 0.017960242927074432, 0.018438758328557014, 0.013023569248616695, -0.014132128097116947, -0.02279323898255825, 0.011731579899787903, 0.0009859391720965505, 0.03215617313981056, -0.008066956885159016, 0.027466731145977974, 0.0028232354670763016, -0.0035629391204565763, -0.007014224771410227, -0.015527795068919659, 0.018630163744091988, -0.0015412153443321586, 0.030752530321478844, -0.0406099297106266, -0.011436495929956436, 0.01448303833603859, -0.008011129684746265, 0.0054510775953531265, 0.01119723916053772, 0.001463456777855754, 0.01708296686410904, 0.003700511995702982, -0.01172360498458147, 0.0066952151246368885, 0.014076300896704197, 0.009992977604269981, 0.02022521197795868, -0.017433878034353256, 0.027402929961681366, 0.0023786157835274935, 0.011747530661523342, 0.04096084088087082, -0.0006320378743112087, -0.002394566312432289, 0.00995310116559267, -0.004569813143461943, -0.008788716048002243, 0.0035449948627501726, 0.024212833493947983, -0.011811332777142525, -0.004091298673301935, 0.004633615259081125, -0.011308892630040646, -0.006814843975007534, -0.011205214075744152, -0.01349410880357027, -0.003865998238325119, 0.005231758113950491, 0.02442018873989582, -0.008637186139822006, 0.00795530341565609, 0.033432211726903915, -0.0006280502420850098, 0.014052375219762325, -0.03336840867996216, 0.026286395266652107, -0.02076752856373787, 0.01208249107003212, 0.005873765330761671, 0.011149387806653976, -0.008078919723629951, 0.022633735090494156, 0.00852553267031908, -0.001013354049064219, 0.008477681316435337, 0.022633735090494156, -0.011404595337808132, 0.0021074574906378984, -0.04638400301337242, 0.005000476259738207, -0.013079395517706871, -0.0013248869217932224, -0.00026692135725170374, 0.0037683015689253807, -0.011500298045575619, 0.004390370566397905, -0.019060825929045677, -0.015216760337352753, -0.011532198637723923, 0.005969468038529158, -0.023814070969820023, 0.014108202420175076, 0.025345316156744957, 0.005375312641263008, -0.002141352277249098, -0.0060851089656353, -0.06584358960390091, 0.024659445509314537, -0.021038686856627464, 0.010910130105912685, -0.0014305589720606804, -0.030545175075531006, -0.009801571257412434, -0.0007342206663452089, 0.011915010400116444, 0.011548149399459362, -0.02282514050602913, -0.021501250565052032, 0.03840876370668411, 0.007743959315121174, 0.0168756116181612, -0.025377217680215836, -0.00515599362552166, 0.02105463668704033, -0.0022151232697069645, -0.026573503389954567, -0.002133377129212022, -0.026493752375245094, 0.005702297668904066, -0.006671289447695017, -0.009131651371717453, -0.021915962919592857, -0.014076300896704197, -0.016604453325271606, 0.010646947659552097, 0.0238459724932909, 0.019603142514824867, -0.005419176537543535, 0.02296869456768036, 0.019746698439121246, 0.018071897327899933, -0.02362266555428505, 0.015751101076602936, 0.028152601793408394, -0.006228663492947817, 0.01379716768860817, -0.03258683532476425, -0.005594631657004356, -0.002536126645281911, 0.02221902273595333, 0.030258065089583397, -0.0026059101801365614, 0.01531246304512024, 0.007472801022231579, -0.020209262147545815, -0.0031043626368045807, -0.03295369818806648, 0.01536829024553299, -0.01412415225058794, -0.010367813520133495, 0.01291191577911377, -0.009761695750057697, -0.005929592065513134, 0.012218070216476917, -0.001628943020477891, -0.011954886838793755, -0.013948697596788406, -0.015017379075288773, 0.010120580904185772, -0.032634686678647995, -0.013159148395061493, -0.016285443678498268, 0.01486585009843111, -0.01839090697467327, -0.005654446315020323, -0.0201933104544878, 0.006436019670218229, -0.0029628020711243153, 0.008190573193132877, -0.016181765124201775, 0.023830020800232887, 0.02119819074869156, -0.005865789949893951, -0.043002501130104065, 0.003533032024279237, -0.018725866451859474, -0.013900845311582088, 0.0074089993722736835, -0.0005722235655412078, 0.007863587699830532, 0.01759338192641735, -0.020671825855970383, -0.0028930187691003084, -0.011771456338465214, -0.012919890694320202, 0.015336388722062111, -0.019012974575161934, 0.006647363770753145, 0.028806570917367935, 0.010343887843191624, 0.018231401219964027, -0.029428640380501747, 0.008860493078827858, -0.017657184973359108, 0.010806452482938766, -0.019954053685069084, 0.017481729388237, 0.009801571257412434, 0.021373646333813667, -0.023686466738581657, -0.007229556329548359, 0.01816760003566742, 0.022857042029500008, -0.0420454740524292, -0.0031681645195931196, -0.0005557746044360101, 0.007843649946153164, 0.0003750855685211718, -0.0012411469360813498, -0.001012357184663415, 0.016732055693864822, 0.028120700269937515, -0.0399400070309639, 0.011835258454084396, -0.0055388049222528934, 0.009386858902871609, -0.0003424369206186384, -0.024085229262709618, 0.006336329039186239, -0.0011524223955348134, -0.02336745709180832, -0.025951435789465904, -0.0056783719919621944, 0.014108202420175076, -0.03952529653906822, -0.0013119272189214826, 0.03247518464922905, 0.023287704214453697, -0.009147602133452892, -0.0071378410793840885, -0.005805975757539272, 0.006061183288693428, -0.011651827953755856, -0.026860613375902176, -0.00190109817776829, -0.01083835307508707, 0.03607999160885811, 0.003208040725439787, -0.0047372933477163315, 0.0004630624607671052, 0.011946911923587322, 0.005116117186844349, 0.01622164063155651, 0.023558862507343292, -0.004896798171103001, 0.005654446315020323, -0.017386026680469513, 0.0022669623140245676, -0.009777645580470562, 0.008700988255441189, -0.021357696503400803, -0.006212713196873665, -0.02185216173529625, -0.0013189055025577545, -0.021628854796290398, -0.013589811511337757, -0.028344007208943367, -0.002689650049433112, 0.012656708247959614, -0.02979550138115883, 0.019922152161598206, 0.01192298624664545, 0.01201071310788393, -0.0006938459700904787, -0.02713177166879177, -0.014419236220419407, 0.044406142085790634, 0.012098440900444984, 0.026206642389297485, -0.005969468038529158, 0.0018392900237813592, 0.010319962166249752, -0.021788358688354492, -0.015216760337352753, -0.0027215511072427034, 0.001846268423832953, -0.003650666680186987, -0.0030624927021563053, -0.015248661860823631, -0.01896512322127819, 0.011763481423258781, -0.007369122933596373, -0.0382811576128006, 0.012481252662837505, -0.0007920411298982799, 0.00380219635553658, 0.0016618409426882863, 0.0034413165412843227, -0.013310677371919155, 0.012632782571017742, -0.005371325183659792, 0.007616355549544096, -0.006950422655791044, -0.011930961161851883, 0.00789548922330141, -0.018422806635499, -0.00941078457981348, 0.0036706048995256424, -0.0036725986283272505, 0.002030695788562298, 0.0027075945399701595, 0.013693489134311676, -0.015137008391320705, -0.00991322472691536, -0.0017176675610244274, -0.01965099386870861, 0.004434233997017145, 0.013645637780427933, 0.004597726743668318, 0.00023090816102921963, -0.009825496934354305, 0.012249970808625221, -0.01414010301232338, -0.0028272231575101614, -0.013669563457369804, -0.006200750358402729, -0.0127524109557271, -0.018039995804429054, 0.012919890694320202, -0.02442018873989582, -0.02070372737944126, 0.012345673516392708, 0.05595429241657257, 0.03244328126311302, 0.0031462328042834997, 0.011516248807311058, -0.006428044755011797, -0.027115819975733757, -0.011556124314665794, -0.010950006544589996, 0.015432092361152172, 0.012257945723831654, -0.006244613789021969, -0.018374955281615257, 0.03298559784889221, 0.0076522440649569035, -0.014586716890335083, 0.028328057378530502, 0.023495061323046684, 0.0118671590462327, -0.023702416568994522, 0.026174742728471756, 0.016117962077260017, 0.009673967957496643, 0.002388584893196821, -0.005471015349030495, 0.005530830007046461, -0.0012212088331580162, 0.004438221920281649, -0.0004159586678724736, 0.013430306687951088, 0.021501250565052032, 0.011093560606241226, -0.0045498753897845745, 0.008964171633124352, -0.007660219445824623, 0.005463040433824062, 0.018359005451202393, -0.012385549955070019, -0.0009849423076957464, 0.009243304841220379, 0.010543269105255604, 0.010726699605584145, -0.02008165791630745, 0.012927866540849209, -0.0016618409426882863, 0.015830853953957558, -0.016923462972044945, -0.004988513421267271, -0.0007626324659213424, 0.011787407100200653, 0.0025939473416656256, -0.03273038938641548, -0.00168177904561162, 0.006232650950551033, 0.0100966552272439, 0.004761219024658203, -0.01531246304512024, 0.01015248242765665, -0.0001035535242408514, -0.0017605344764888287, -0.0008508585742674768, -0.02907772921025753, -0.004382395185530186, -0.028774671256542206, 6.127851520432159e-05, -0.01515295822173357, -0.010391739197075367, -0.011396619491279125, -0.005746161565184593, 0.005088204052299261, -0.005550767760723829, -0.005219795275479555, -0.006168849300593138, 0.013031544163823128, -0.04909558594226837, -0.011899060569703579, -0.0030585050117224455, -0.011372693814337254, 0.03333650901913643, 0.008828592486679554, 0.010934055782854557, 0.007919414900243282, 0.016700156033039093, -0.006990299094468355, -0.022745387628674507, -0.0005582668818533421, 0.002075556665658951, -0.00411921227350831, 0.017944293096661568, 0.012337698601186275, -0.010367813520133495, -0.005199857521802187, -0.014092251658439636, -0.003909862134605646, 0.007811748888343573, 0.013478158041834831, 0.008389953523874283, 0.008629211224615574, -0.014658493921160698, 0.029683848842978477, -0.014873825013637543, 0.0074129868298769, 0.016748007386922836, 0.009019997902214527, 0.004254791419953108, 0.006934472359716892, 0.000950549088884145, -0.0017206582706421614, 0.011811332777142525, 0.007030175067484379, -0.009378883987665176, -0.019060825929045677, -0.010957981459796429, -0.0021951852831989527, 0.006428044755011797, -0.03242732957005501, 0.009235329926013947, -0.0027355076745152473, -0.0018133705016225576, 0.009418760426342487, 0.01114141196012497, -0.02542506903409958, -0.021485300734639168, -0.0013667569728568196, -0.016572551801800728, 0.011508272960782051, -0.0027175634168088436, -0.03528246656060219, 0.005610582418739796, -0.0014385341200977564, -0.0006125982035882771, 0.014076300896704197, -0.019172480329871178, 0.011316867545247078, 0.001118527608923614, 0.003953726030886173, -0.007333234418183565, 0.0021632842253893614, -0.014754196628928185, 0.02835995890200138, -0.009705868549644947, 0.012832162901759148, 0.016492798924446106, 0.010176408104598522, 0.0058937035501003265, -0.021038686856627464, 0.012098440900444984, -0.005642483476549387, -0.013709439896047115, 0.012146292254328728, 0.0050802286714315414, 0.018327103927731514, -0.026669207960367203, -0.0031522142235189676, -0.015695275738835335, 0.01759338192641735, -0.0006783939898014069, -0.016157839447259903, 0.03611189126968384, -0.01759338192641735, 0.006699202582240105, 0.0015980389434844255, -0.020400667563080788, -0.023941675201058388, -0.007632305845618248, 0.014674443751573563, 0.0031841150484979153, 0.0037364005111157894, 0.027227474376559258, 0.023160099983215332, -0.020655876025557518, -0.02987525425851345, -0.0019429682288318872, 0.007835675030946732, -0.016285443678498268, -0.006607487332075834, -0.020001905038952827, 0.001172360498458147, 0.01349410880357027, -0.025201762095093727, 0.009179502725601196, -0.01015248242765665, -0.009825496934354305, 0.010543269105255604, -0.00529954768717289, -0.00696238549426198, -0.002520176349207759, 0.005646470934152603, -0.010056779719889164, 0.017529580742120743, 0.0016419028397649527, -0.001676794490776956, 0.026717059314250946, 0.021517200395464897, 0.01063897181302309, -0.024069277569651604, -0.014331508427858353, 0.01976264826953411, -0.02099083550274372, 0.0008837564382702112, -0.01208249107003212, 0.024691347032785416, 0.01722652092576027, 0.01845470815896988, -0.0011115492088720202, -0.003180127590894699, -0.021150339394807816, -0.004183013923466206, -0.0046814666129648685, -0.02402142621576786, -0.013350553810596466, -0.038919176906347275, -0.02419688180088997, 0.0062525891698896885, -0.005877752788364887, -0.01662040315568447, -0.008122783154249191, 0.02142149768769741, -0.009650042280554771, 0.021628854796290398, -0.0007745953043922782, 0.015599572099745274, 0.004625639878213406, 0.018438758328557014, 0.005510891787707806, -0.010335912927985191, 0.005116117186844349, 0.0032180098351091146, 0.007875550538301468, 0.025584574788808823, -0.001675797626376152, 0.011994763277471066, 0.015017379075288773, -0.014387335628271103, 0.006599512416869402, 0.001230180962011218, 0.010375789366662502, -0.009235329926013947, -0.0025321391876786947, 0.01168372854590416, -0.014403285458683968, -0.013007618486881256, 0.011779431253671646, -0.021485300734639168, -0.012744436040520668, 0.004661528393626213, -0.004402333404868841, -0.0034552733413875103, -0.01383704412728548, 0.011946911923587322, -3.127790114376694e-05, -0.002815260086208582, 0.0007421958725899458, -0.0002856133214663714, 0.007672182284295559, -0.013358529657125473, -0.006156886462122202, 0.01936388574540615, -0.006471908185631037, -0.0010183386038988829, -0.003371533239260316, 0.007177717052400112, -0.00525568425655365, -0.01639709621667862, 0.0056943222880363464, 0.019603142514824867, 0.01428365707397461, -0.011492323130369186, 0.010519343428313732, -0.006551660597324371, -0.00574217364192009, 0.003206046996638179, -0.008645161986351013, 0.015432092361152172, 0.017513630911707878, -0.007089989725500345, -0.009219379164278507, 0.008900369517505169, -0.0013916796306148171, 0.010192358866333961, 0.011053684167563915, -0.0010816421126946807, 0.016572551801800728, 0.010950006544589996, -0.019635044038295746, 0.0014415248297154903, -0.01662040315568447, 0.0005522854626178741, -0.00961016584187746, 0.00872491393238306, 0.007564516272395849, 0.009665992110967636, -0.025839781388640404, 0.014730270951986313, -0.007632305845618248, -0.015623497776687145, 0.016859659925103188, -0.01788049191236496, -0.0010417659068480134, 0.00411921227350831, 0.008374003693461418, -0.004326568450778723, 0.005869777873158455, -0.013430306687951088, -0.01662040315568447, -0.00026667214115150273, 0.0077519346959888935, 0.01733817532658577, 0.025887632742524147, -0.010447566397488117, -0.007907452061772346, 0.026461850851774216, -0.006886621005833149, 0.03378312289714813, -0.013486132957041264, -0.012481252662837505, -0.02156505174934864, -0.010248185135424137, 0.011356743983924389, -0.011117486283183098, -0.00783966202288866, -0.023176051676273346, -0.0007332237437367439, 0.0070222001522779465, 0.01762528344988823, -0.012792287394404411, 0.0025460957549512386, 0.019236281514167786, 0.015400190837681293, -0.009035948663949966, -0.03135864809155464, -0.0005353380693122745, -0.009147602133452892, 0.0065277349203825, -0.007640281226485968, -0.013446256518363953, 0.008820616640150547, -0.013135222718119621, 0.005375312641263008, -0.011332818306982517, 0.006344304420053959, -0.006256576627492905, 0.010670873336493969, 0.0025700214318931103, 0.0026677183341234922, -0.002408522879704833, 0.020560171455144882, -0.004202952142804861, 0.002952833194285631, 0.023176051676273346, 0.011165337637066841, 0.02290489338338375, 0.006224676035344601, -0.004366444423794746, 0.010471492074429989, -0.004557850304991007, -0.010280085727572441, 0.025712179020047188, 0.00559861958026886, -0.029301036149263382, 0.008190573193132877, 0.0017505654832348228, 0.001453487784601748, -0.026413999497890472, -0.008421855047345161, 0.023016545921564102, -0.0020954946521669626, 0.005072253290563822, 0.012473277747631073, -0.009977026842534542, 0.006144923623651266, -0.007357160095125437, 0.003696524305269122, -0.011269016191363335, -0.009929175488650799, -0.024930603802204132, -0.00223107379861176, 0.011308892630040646, -0.012297822162508965, -0.007046125829219818, -0.002286900533363223, 0.030242115259170532, -0.012744436040520668, -0.007369122933596373, -0.0037244376726448536, 0.017035115510225296, 0.01776883751153946, 0.03204451873898506, 0.02882252261042595, -0.0014804041711613536, 0.007145816460251808, -0.004968575201928616, -0.029380789026618004, -0.005475003272294998, 0.008011129684746265, 0.00976967066526413, 0.00858135987073183, -0.02759433537721634, 0.030369719490408897, -0.0028411797247827053, 0.01690751127898693, 0.020145459100604057, -0.015982383862137794, 0.025871682912111282, 0.01148434728384018, 0.0003162681532558054, -0.0005497931852005422, -0.0018392900237813592, -0.0004084818938281387, 0.002815260086208582, -0.018502559512853622, 0.0021473336964845657, 0.0054510775953531265, -0.025552673265337944, 0.004701404832303524, 0.016086062416434288, 0.00326386746019125, 0.00902797281742096, -0.008031068369746208, 0.01414010301232338, 0.0018632158171385527, 0.021804310381412506, 0.004872872494161129, 0.029572194442152977, -0.021118439733982086, 0.016245566308498383, -0.032379478216171265, 0.00926723051816225, -0.0002836195344571024, -0.014459112659096718, 0.006575586274266243, -0.01206654030829668, -0.021261993795633316, 0.013789192773401737, 0.014642543159425259, -0.014706345275044441, -0.0005288582178764045, 0.017465777695178986, -0.01827925257384777, 0.0148259736597538, 0.003746369620785117, 0.016070110723376274, 0.008661111816763878, -0.009650042280554771, 0.00996905192732811, 0.013382455334067345, 0.020560171455144882, 0.0018213457660749555, 0.007935364730656147, -0.00045782868983224034, -0.01208249107003212, -0.0008807657286524773, 0.007117902860045433, 0.0009799577528610826, 0.0023168076295405626, -0.025983335450291634, 0.013685514219105244, -0.03088013455271721, 0.006707177963107824, 0.0118671590462327, -0.015001429244875908, -0.022123320028185844, 0.0026677183341234922, -0.006168849300593138, 0.011356743983924389, -0.011978812515735626, -0.0201933104544878, 0.017832640558481216, -0.005459052510559559, -0.005355374421924353, -0.020065708085894585, -0.0015820885309949517, -0.0004598225059453398, -0.011133437044918537, -0.007301333360373974, -0.0004488565609790385, 0.004589751362800598, 0.0009884315077215433, -0.015081181190907955, -0.0028431734535843134, -0.018422806635499, -0.008493632078170776, 0.001174354343675077, 0.018438758328557014, 0.011364718899130821, 0.011189263314008713, -0.008716939017176628, 0.004422271158546209, -0.006950422655791044, 0.01647684909403324, 0.02059207297861576, 0.00906784925609827, 0.0025002381298691034, -0.007911439053714275, -0.007743959315121174, 0.0014435186749324203, -0.008477681316435337, -0.01496952772140503, 0.008836567401885986, -0.0109819071367383, 0.0019379836739972234, -0.03604809194803238, -0.0010497411713004112, 0.009881324134767056, -0.007923401892185211, 0.0027335139457136393, 0.003529044333845377, -0.015583621338009834, 0.010088680312037468, 0.01690751127898693, -0.007488751783967018, 0.011412570253014565, 0.019411737099289894, -0.015424116514623165, 0.010742650367319584, -0.009498512372374535, 0.035601478070020676, 0.015240686014294624, 0.009043923579156399, 0.0029508392326533794, 0.01339840516448021, 0.007329246960580349, -0.019746698439121246, 0.0033496012911200523, 0.0031781336292624474, 0.0008658121223561466, -0.015463992953300476, -0.006248601712286472, 0.02950839325785637, 0.00957028940320015, -0.011635877192020416, -0.025090109556913376, 0.012313772924244404, -0.018151650205254555, 0.006124985404312611, -0.0031023689080029726, 0.015081181190907955, -0.01015248242765665, 0.009402809664607048, 0.020958933979272842, 0.01392477098852396, 0.01630936935544014, -0.01065492257475853, -0.010367813520133495, 0.027179623022675514, -0.011803356930613518, -0.03416593372821808, -0.004430246539413929, -0.0035509762819856405, -0.006013331934809685, -0.010479466989636421, -0.0066952151246368885, 0.011962861754000187, -0.00145847222302109, 0.011189263314008713, 0.01839090697467327, -0.008908344432711601, -0.023782169446349144, 0.014275682158768177, -0.018327103927731514, 0.012704559601843357, -0.019746698439121246, -0.03324080631136894, 0.009825496934354305, 0.001567134982906282, -0.019842401146888733, 0.0028112726286053658, 0.00995310116559267, 0.01043959055095911, 0.00017657682474236935, 0.032235924154520035, -0.005183906760066748, -0.002743483055382967, -0.0005238736630417407, 0.02296869456768036, -0.008708963170647621, -0.014706345275044441, -0.00446214759722352, -0.010750625282526016, 0.00380618404597044, -0.0158787053078413, 0.007759910076856613, -0.0028870373498648405, -0.021261993795633316, 0.006571598816663027, 0.01173955574631691, 0.011899060569703579, 0.0011544162407517433, -0.00024399254471063614, 0.005682359449565411, -0.0148259736597538, 0.008477681316435337, -0.007233543787151575, 0.0074807764030992985, 0.004996488802134991, 0.004637602716684341, 0.0025042258203029633, -0.00774794677272439, 0.0029867279808968306, -0.028583265841007233, -0.013246876187622547, -0.021692655980587006, 0.006436019670218229, -0.009945126250386238, -0.006117010023444891, 0.021517200395464897, -0.004717355128377676, 0.00023389887064695358, 7.034411828499287e-05, -0.004896798171103001, -0.012935841456055641, -0.004797107540071011, 0.00040549118421040475, 0.006663314066827297, -0.003925812430679798, 0.0036805737763643265, -0.0070222001522779465, 0.007301333360373974, -0.002649773843586445, 0.0031581956427544355, -0.026669207960367203, -0.0003431845980230719, -0.0015382246347144246, 0.0009096759604290128, 0.01408427581191063, 0.02308034896850586, -0.007584454491734505, -0.004103261511772871, 0.01839090697467327, 0.01662040315568447, -0.0003414400271140039, 0.0036087967455387115, -0.006786930374801159, -0.00926723051816225, -0.013876919634640217, 0.008126771077513695, 0.023032497614622116, -0.01947554014623165, -0.011548149399459362, 0.010000952519476414, -0.0079951798543334, 0.009705868549644947, 0.004063385538756847, 0.009091774933040142, 0.001067685429006815, 0.018374955281615257, -0.023000596091151237, 0.011986787430942059, -0.014530889689922333, 0.0014295619912445545, 0.005167956463992596, -0.011651827953755856, 0.004633615259081125, -0.016732055693864822, 0.014251756481826305, -0.02813665196299553, -0.021214142441749573, -0.002462355885654688, -0.011189263314008713, 0.006436019670218229, 0.006005356553941965, -0.011468397453427315, -0.02390977367758751, -0.00134980957955122, -0.002083531813696027, 0.004187001846730709, 0.01773693598806858, 0.0029807465616613626, -0.005993393715471029, -0.025297464802861214, -0.013948697596788406, 0.00022455288853961974, 0.0051799193024635315, 0.009434710256755352, 0.0013837043661624193, 0.028519462794065475, -0.004043447319418192, -0.0012192149879410863, 0.008110820315778255, -0.007915426976978779, -0.02784954197704792, 0.007333234418183565, 0.014060350134968758, -0.0035111000761389732, 0.002853142563253641, -1.5553277989965864e-05, 0.009578265249729156, 0.030545175075531006, 0.0003364555013831705, -0.004585763905197382, 0.003764313878491521, 0.00707005150616169, -0.008374003693461418, 0.0021553090773522854, -0.0145229147747159, -0.001066688564606011, 0.001799413817934692, -0.0033795086201280355, -0.009737770073115826, -0.03467635065317154, -0.010989882983267307, -0.018087847158312798, -0.0011454439954832196, 0.0018951167585328221, 0.011165337637066841, 0.0029887217096984386, -0.008900369517505169, -0.005650458391755819, 0.003367545548826456, -0.0008309204713441432, 0.0051639690063893795, -0.0016678223619237542, 0.007468813564628363, -0.016030235216021538, -0.02311224862933159, -0.005104154348373413, -0.028407810255885124, 0.023670516908168793, -0.018438758328557014, -0.02359076403081417, 0.00996905192732811, 0.001621964736841619, 0.00559861958026886, 0.001178341917693615, 0.02488275244832039, -0.0011893078917637467, -0.023415308445692062, 0.0034951495472341776, -0.005171943921595812, -0.012880015186965466, 0.004131175111979246, 0.00662742555141449, 0.008389953523874283, 0.0015521813184022903, 0.01907677762210369, 0.009378883987665176, -0.009147602133452892, 0.006495833862572908, -0.005387275479733944, 0.0013318653218448162, 0.01345423236489296, -0.004043447319418192, -0.022522080689668655, -0.009434710256755352, 0.009346982464194298, 0.00941078457981348, -0.013286751694977283, 0.013557909987866879, -0.00044536739005707204, -0.014985478483140469, 0.016524700447916985, -0.011819307692348957, -0.0173700749874115, 0.007672182284295559, -0.03489965572953224, 0.00043888750951737165, 0.017784787341952324, 0.023925723508000374, -0.0012501190649345517, 0.010830378159880638, -0.0037344067823141813, -0.0037423819303512573, -0.015759076923131943, 0.0015571658732369542, 0.011061660014092922, -0.007058088667690754, 0.019331984221935272, -0.013199024833738804, -0.01043959055095911, 0.0021632842253893614, 0.002115432871505618, 0.002508213510736823, -0.00942673534154892, -0.022633735090494156, -0.027833592146635056, -0.024803001433610916, -0.009035948663949966, -0.00808290671557188, -0.0031083503272384405, -0.010830378159880638, 0.03301749750971794, -0.011707654222846031, 0.0077120582573115826, -0.0028890310786664486, -0.0033934651874005795, -0.007915426976978779, -0.01188310980796814, 0.01997000351548195, 0.006216700654476881, -0.006591537036001682, 0.0255048219114542, 0.008310201577842236, -0.004127187188714743, -0.0038819487672299147, 0.00213138316757977, 0.014538864605128765, 0.007213606033474207, 0.007189679890871048, 0.01114141196012497, -0.023638615384697914, 0.004194976761937141, 0.0019280145643278956, -0.008318176493048668, -0.0008623229805380106, 0.024803001433610916, 0.02376621961593628, -0.002502232091501355, -0.012672658078372478, 0.029970956966280937, 0.017816688865423203, 0.001906082732602954, -0.007759910076856613, -0.011205214075744152, -0.024643495678901672, -0.025377217680215836, 0.0027654150035232306, -0.011907035484910011, 0.0030943937599658966, 0.018438758328557014, -0.003140251385048032, 0.00247830618172884, 0.0033296633046120405, 0.000448358099674806, -0.0009221372893080115, -0.011133437044918537, -0.013972623273730278, -0.0008259359165094793, 0.017322223633527756, -0.010862278752028942, 0.008174622431397438, -0.012545054778456688, 0.009386858902871609, 0.0060651712119579315, 0.006017319392412901, 0.004043447319418192, -0.0004600717220455408, 0.016102012246847153, -0.003461254760622978, -0.013023569248616695, 8.299235196318477e-05, -0.0032299726735800505, 0.0038321034517139196, -0.016413046047091484, 0.0021612904965877533, 0.0018053952371701598, 0.0008468709420412779, 0.006647363770753145, 0.027259375900030136, 0.00257400912232697, -0.021246042102575302, -0.02713177166879177, 0.004940662067383528, 0.003965688869357109, -0.0005358365015126765, 0.0019858351442962885, -0.020209262147545815, 0.0201933104544878, 0.018486609682440758, -0.010678848251700401, -0.0016468873945996165, -0.007257469464093447, 0.018486609682440758, 0.021086538210511208, 0.0010946019319817424, 0.006611475255340338, -0.004860909655690193, 0.023750267922878265, -0.003206046996638179, 0.01069479901343584, 0.0022270861081779003, 0.017465777695178986, -0.0009804562432691455, 0.013470182195305824, -0.0068666827864944935, 0.013813118450343609, 0.013446256518363953, 0.025456970557570457, 0.026573503389954567, 0.0068666827864944935, -0.028296155855059624, 0.010678848251700401, 0.005259671714156866, 0.014028449542820454, 0.004677479155361652, 0.008421855047345161, -0.029125580564141273, 0.010447566397488117, 0.010479466989636421, -0.012058565393090248, 0.0038978992961347103, 0.007692120503634214, 0.024101179093122482, 0.011915010400116444, 0.01907677762210369, -0.02839185856282711, -0.01961909420788288, -0.027386978268623352, 0.01716271974146366, -0.013932746835052967, 0.0032180098351091146, -0.0024982444010674953, -0.0026756934821605682, -0.006316391285508871, 0.008078919723629951, -0.0018971104873344302, -0.01878966949880123, -0.010559219866991043, -0.055858589708805084, 0.00451398640871048, -0.005546780303120613, 0.012561005540192127, -0.026924414560198784, 0.025153910741209984, -0.00942673534154892, 3.249287692597136e-05, 0.023814070969820023, 0.017386026680469513, 0.017354125156998634, -0.02882252261042595, 0.0022270861081779003, 0.009713844396173954, -0.006216700654476881, 0.018103796988725662, -0.0036765863187611103, 0.00037807627813890576, 0.02001785673201084, 0.005128080025315285, 0.006858707405626774, -0.009665992110967636, -0.02001785673201084, 0.0017685097409412265, 0.016205690801143646, -0.010359838604927063, 0.020671825855970383, 0.013422330841422081, -0.021325794979929924, -0.004490060731768608, -0.001060707145370543, -0.018071897327899933, -0.0032100346870720387, -0.010950006544589996, 0.016006309539079666, 0.01928413286805153, -0.013964647427201271, 0.020687775686383247, -0.015272587537765503, -0.003852041671052575, -0.004131175111979246, -0.003770295297726989, 0.012832162901759148, -0.0036765863187611103, 0.018343055620789528, -0.008908344432711601, 0.032379478216171265, 0.017577432096004486, 0.014020474627614021, -0.0053115105256438255, -0.004569813143461943, -0.022474229335784912, -0.023207953199744225, 0.022777289152145386, 0.008629211224615574, -0.01607808656990528, 0.011276991106569767, -0.018422806635499, 0.02922128513455391, -0.012281871400773525, 0.012202119454741478, 0.009546363726258278, -0.005618557333946228, -0.003231966635212302, 0.011308892630040646, 0.010846327990293503, -0.012919890694320202, 0.015200809575617313, 0.00706207612529397, 0.03461254760622978, -0.007237531710416079, -0.01845470815896988, -0.013342578895390034, 0.01358183566480875, 0.006029282696545124, -0.006344304420053959, -0.0013139210641384125, -0.006563623435795307, 0.013087371364235878, 0.012576955370604992, -0.0019938102923333645, 0.00026019226061180234, 0.010519343428313732, 0.003208040725439787, -0.0016030234983190894, -0.005319485906511545, 0.020687775686383247, 0.0018991043325513601, -0.0035689205396920443, -0.010072729550302029, 0.016413046047091484, 0.007887513376772404, -0.002127395709976554, 0.013478158041834831, 0.002083531813696027, 0.007959291338920593, -0.00996905192732811, 0.023271754384040833, 0.021660756319761276, -0.004226877819746733, -0.03773884102702141, -0.02004975639283657, -0.02658945508301258, 0.017481729388237, -0.020097607746720314, -0.028551364317536354, -0.030353767797350883, 0.0008204529294744134, 0.001015347894281149, 0.018885372206568718, 0.01773693598806858, 0.026637306436896324, 0.002928907284513116, 0.01773693598806858, 0.02784954197704792, 0.015527795068919659, 0.012202119454741478, 0.013693489134311676, 0.0084378058090806, -0.014451137743890285, 0.00637620547786355, -0.019571242853999138, -0.004960600286722183, 0.0024483990855515003, 0.013964647427201271, 0.015743127092719078, 0.003245923202484846, -0.004061391577124596, -0.010702773928642273, 0.0020007886923849583, -0.034835852682590485, 0.017976194620132446, -0.010431615635752678, 0.02322390303015709, 0.01289596501737833, -0.004434233997017145, -0.006356267258524895, -0.016428997740149498, -0.018119748681783676, -0.018646113574504852, 0.020065708085894585, 0.002865105401724577, 0.015137008391320705, 0.0038301097229123116, -0.022027617320418358, -0.033177003264427185, -0.010583145543932915, 0.004944649524986744, 0.012784311547875404, 0.015607547014951706, -0.019411737099289894, 0.0061528985388576984, 0.02596738561987877, 0.02119819074869156, 0.011803356930613518, 0.022155219689011574, -0.015248661860823631, -0.011835258454084396, 0.002805291209369898, 0.00040050665847957134, -0.024787049740552902, -0.027690038084983826, 0.011651827953755856, 0.007624330930411816, -0.00380618404597044, 0.017210571095347404, 0.011787407100200653, -0.011093560606241226, -0.026015236973762512, -0.0003025607147719711, 0.006499821785837412, 0.0068108560517430305, 0.014004523865878582, 0.002394566312432289, 0.007935364730656147, -0.01049541775137186, 0.014554815366864204, -0.011053684167563915, 0.013286751694977283, -0.01222604513168335, 0.015942508354783058, 0.004442209377884865, -0.021836210042238235, 0.005786037538200617, 0.012505178339779377, -0.011157362721860409, 0.0042189029045403, 0.020241161808371544, 0.0036845614667981863, 0.011229139752686024, 0.007991191931068897, 0.0023108262103050947, 0.0027235448360443115, 0.01839090697467327, 0.008852518163621426, 0.008836567401885986, -0.0008673074771650136, -0.02481895126402378, 0.015719201415777206, 0.027690038084983826, 0.019379837438464165, 0.013318653218448162, 0.007365135475993156, -0.017146768048405647, 0.001904088887386024, 0.00037807627813890576, -0.007799786049872637, -2.1807300072396174e-05, 0.014754196628928185, -0.0045658256858587265, 0.0018343054689466953, 0.0019868318922817707, 0.013613737188279629, 0.004992500878870487, 0.003921824973076582, -0.001902095042169094, 0.008948220871388912, 0.01522473618388176, -0.010862278752028942, 0.017481729388237, 0.00031103441142477095, -0.008214498870074749, -0.021182240918278694, 0.019714796915650368, 0.006392155773937702, -0.0220754686743021, 0.00662742555141449, -0.017513630911707878, -0.0024563742335885763, 0.0024224796798080206, 0.018757767975330353, 0.012640757486224174, 0.005594631657004356, -0.02333555556833744, 0.01500940416008234, -0.009139626286923885, 0.014554815366864204, -0.010431615635752678, 0.005120105110108852, 0.0022031604312360287, -0.008669087663292885, 0.0010926080867648125, 0.016349244862794876, 0.008015117608010769, -0.03150220215320587, -0.0004605701833497733, 0.0005996384425088763, -0.0024503928143531084, -0.006946435198187828, 0.01762528344988823, -0.011308892630040646, 0.0028491548728197813, -0.028982026502490044, 0.00946661178022623, 0.010176408104598522, -0.0023905786219984293, -0.01910867914557457, 0.0009166543022729456, -0.013900845311582088, 0.010184383019804955, 0.022713487967848778, -0.006200750358402729, 0.01079847663640976, -0.02167670615017414, -0.009761695750057697, -0.021979765966534615, -0.01831115409731865, -0.02276133932173252, -0.013805142603814602, -0.005239733494818211, -0.006436019670218229, -0.009219379164278507, 0.007046125829219818, 0.008485657162964344, -0.013765266165137291, -0.02051232010126114, -0.00731329619884491, -0.0030505298636853695, 0.001456478494219482, 0.018039995804429054, -0.01668420433998108, -0.004210927523672581, 0.0036725986283272505, 0.00016012789274100214, 0.019985955208539963, 0.0016668254975229502, -0.012449352070689201, -0.0011304904473945498, -0.011308892630040646, -0.006986311636865139, -0.011611951515078545, -0.002621860709041357, -0.0004159586678724736, 0.0020436556078493595, -0.01613391377031803, 0.005112129729241133, 0.007931377738714218, -0.010559219866991043, -0.033687420189380646, 0.009634091518819332, 0.00146046606823802, -0.008190573193132877, 0.008956195786595345, 0.009219379164278507, -0.007241519168019295, 0.006364242639392614, -0.02167670615017414, 0.00613296078518033, -0.006324366200715303, 0.007883526384830475, -0.020241161808371544, -0.0018931229133158922, 0.0333046093583107, -0.004047434777021408, -0.009051898494362831, 0.006591537036001682, 0.011117486283183098, -0.013964647427201271, 0.0366223081946373, 0.0032160161063075066, -0.0034911618568003178, -0.00223107379861176, -0.022841090336441994, -0.004821033217012882, -0.008756815455853939, 0.006372218020260334, 0.01668420433998108, -0.02702011726796627, -0.006455957889556885, 0.015743127092719078, -0.02821640484035015, 0.025871682912111282, 0.0014853887259960175, 0.012872039340436459, -0.0237343180924654, -0.010120580904185772, 0.014259731397032738, -0.006400131154805422, -0.014259731397032738, 0.0025560648646205664, 0.0037184562534093857, 0.004984525963664055, -0.025472920387983322, -0.021038686856627464, 0.025313416495919228, 0.010934055782854557, 0.014243780635297298, 0.015838829800486565, 0.007452863268554211, -0.022027617320418358, -0.016891561448574066, -0.008405904285609722, 0.015320438891649246, 0.007365135475993156, -0.018183549866080284, -0.001461462932638824, 0.03349601477384567, 0.03349601477384567, 0.03789834678173065, 0.00011832018208224326, -0.00046331167686730623, -0.01276836171746254, -0.0036227533128112555, -0.023558862507343292, -0.013055469840765, 0.0022071481216698885, 0.0028730807825922966, -0.000893227057531476, 0.0003025607147719711, -0.020273063331842422, -0.011053684167563915, -0.005889715626835823, -0.008405904285609722, 0.006336329039186239, -0.004809070378541946, -0.010415664874017239, -0.011069634929299355, -0.022123320028185844, 0.014570766128599644, 0.004131175111979246, 0.0538807287812233, 0.011149387806653976, 0.009362933225929737, -0.002691644011065364, -0.006364242639392614, -0.005463040433824062, -0.01295179221779108, -0.0036606357898563147, -0.010870253667235374, 0.004063385538756847, -0.006280502770096064, -0.03019426390528679, 0.025712179020047188, 0.02665325626730919, -0.0024803001433610916, 0.0005109139019623399, 0.002073562704026699, -0.0007740968721918762, -0.010375789366662502, 0.010527318343520164, -0.0039975899271667, -0.015958458185195923, 0.0062525891698896885, 0.0046216524206101894, 0.014642543159425259, 0.008023092523217201, 0.00795530341565609, 0.013430306687951088, 0.015304488129913807, -0.016748007386922836, 0.00975371990352869, -0.014060350134968758, 0.014331508427858353, 0.013350553810596466, -0.005762111861258745, 0.0016498781042173505, -0.01756148226559162, 0.018981074914336205, -2.658933044585865e-05, -0.00167978520039469, 0.002085525542497635, -0.018343055620789528, 0.011316867545247078, -0.004087311215698719, -0.004825021140277386, -0.009243304841220379, 0.01647684909403324, -0.01466646883636713, -0.0070381504483520985, 0.00991322472691536, -0.0022031604312360287, -0.014172003604471684, 0.0010228246683254838, 0.008094869554042816, 0.0052955602295696735, 0.002362665254622698, 0.007847637869417667, 9.707364370115101e-05, -0.01922033168375492, 0.008892393670976162, -0.012441376224160194, -0.004657540936022997, 0.011747530661523342, 0.01166777778416872, -0.00190109817776829, -0.00030580066959373653, -0.0012760385870933533, -0.009346982464194298, 0.0021592965349555016, -0.005000476259738207, 0.015639448538422585, -0.01516890898346901, -0.0012241995427757502, -0.0006215703906491399, -0.011811332777142525, -0.017067017033696175, -0.037770744413137436, -0.017529580742120743, -0.012959767132997513, -0.008062968961894512, 0.0022629746235907078, -0.027530532330274582, 0.007584454491734505, -0.008086894638836384, -0.027323177084326744, -0.010662897489964962, -0.002984734019264579, -0.016971314325928688, 0.011891084723174572, 0.004617664963006973, -0.0020576121751219034, 0.0029368826653808355, 0.008051006123423576, -0.005662421230226755, -0.008716939017176628, 0.009578265249729156, -0.012680633924901485, -0.008374003693461418, 0.0059654805809259415, 0.007608380168676376, -0.00056424830108881, -0.004749256186187267, 0.018725866451859474, -0.005427151918411255, -0.005658433772623539, -0.003313712775707245, -0.01596643403172493, -0.011763481423258781, -0.02051232010126114, -1.646451164560858e-05, -0.004250803496688604, 0.0032977622468024492, -0.0127524109557271, 0.007197655271738768, 0.011308892630040646, -0.013286751694977283, 0.017816688865423203, 0.00928318127989769, 0.006093084346503019, 0.0026557552628219128, -0.0027175634168088436, -0.0037742829881608486, 0.02413308061659336, 0.014849899336695671, 0.001242143800482154, 0.017401976510882378, 0.007620343007147312, 0.002292881952598691, 0.022888943552970886, 0.024611594155430794, -0.00043315530638210475, -0.012584931217133999, -0.005606594495475292, 0.019603142514824867, -0.0237343180924654, 0.016325319185853004, 0.01251315325498581, 0.0030086596962064505, -0.011556124314665794, -0.0007182701956480742, -0.0002184468467021361, 0.03044947236776352, 0.014164028689265251, 0.009075825102627277, 0.0038978992961347103, 0.016923462972044945, -0.029348887503147125, 0.026302345097064972, 0.003247916931286454, 0.0076681943610310555, -0.011356743983924389, 0.007377098314464092, -0.012505178339779377, 0.029157482087612152, -0.010519343428313732, -0.019204381853342056, 0.004757231567054987, 0.02650970220565796, -0.02138959802687168, -0.0006474899128079414, -0.009961076080799103, -0.02182026021182537, -0.006288477685302496, 0.016492798924446106, 0.01398059818893671, -0.006244613789021969, -0.0003646180557552725, 0.04067373275756836, 0.011396619491279125, -0.0010357844876125455, 0.006647363770753145, 0.004302642773836851, -0.018805619329214096, -0.01029603648930788, 0.005423163995146751, 0.008557434193789959, 0.007393048610538244, -0.009386858902871609, -0.0016129926079884171, 0.004856922198086977, 0.0005797003395855427, -0.0027195573784410954, 0.011962861754000187, 0.022729437798261642, -0.011125462129712105, -0.004474110435694456, -0.007397036533802748, 0.011580049991607666, -0.016030235216021538, 0.00819854810833931, 0.017896441742777824, 0.040801335126161575, -0.011978812515735626, -0.013422330841422081, -0.0031781336292624474, 0.0057381861843168736, -0.0038859364576637745, -0.004111236892640591, -0.007536603137850761, 0.009921200573444366, -0.00687067024409771, 0.017960242927074432, 0.003929800353944302, 0.014706345275044441], "4663c078-0471-4f17-b704-37a847b3578a": [-0.001878371462225914, -0.02283778227865696, -0.013226949609816074, 0.04705772548913956, -0.014994828030467033, -0.016875209286808968, 0.02068418450653553, 0.0202020350843668, -0.026887832209467888, 0.03156467527151108, 0.01988060213625431, 0.028494995087385178, 0.01417517475783825, -0.015774302184581757, 0.02788427285850048, 0.04692915081977844, -0.01575019396841526, 0.011507284827530384, 0.054064955562353134, -0.024091368541121483, 0.0639650747179985, -0.009932265616953373, -0.05345423147082329, 0.03040751814842224, 0.0039817458018660545, 0.022934211418032646, -0.007702327333390713, 0.007887151092290878, -0.05126849189400673, -0.0035960266832262278, 0.030889667570590973, 0.01463321689516306, -0.008542070165276527, 0.0012093900004401803, 0.0013168689329177141, -0.024975309148430824, 0.019816316664218903, -0.0015418716939166188, -0.017228784039616585, -0.006967050489038229, -0.05975430831313133, 0.023111000657081604, -0.027546769008040428, -0.01669842004776001, -0.046864863485097885, 0.01738950051367283, -0.035100433975458145, 0.024219941347837448, -0.012142114341259003, -0.04191480204463005, 0.03947191685438156, 0.009297436103224754, 0.011820681393146515, 0.01790379360318184, 0.0406290739774704, 0.0008246753714047372, -0.008100099861621857, -0.0016222299309447408, -0.0027020422276109457, -0.07135802507400513, 0.008718857541680336, -0.0019285952439531684, 0.007031336892396212, -0.028623567894101143, 0.01312248408794403, 0.01500286441296339, -0.005604980047792196, -0.014785896986722946, -0.03866833448410034, -0.0013108421117067337, -0.021310977637767792, -0.027241408824920654, -0.07090801745653152, -0.003632187843322754, 0.045804139226675034, -0.031870037317276, 0.011274246498942375, 0.05901501700282097, 0.03465043008327484, -0.04410054534673691, -0.02291814051568508, -0.007818846963346004, 0.0017287044320255518, -0.024428874254226685, 0.04291124641895294, -0.006324185524135828, 0.023175286129117012, -0.041754089295864105, 0.003174146404489875, -0.01827343925833702, 0.028527138754725456, 0.0006559232715517282, 0.004074157681316137, -0.03371827304363251, -0.05933644622564316, 0.020346680656075478, -0.00573757104575634, 0.011338532902300358, 0.012865337543189526, -0.03252897411584854, -0.02883249893784523, -0.026100322604179382, -0.004821488168090582, 0.017003782093524933, 0.020041318610310555, 0.0011330497218295932, 0.0204270388931036, -0.011266211047768593, -0.0036924562882632017, 0.05641141161322594, -0.022612780332565308, -0.04905060678720474, 0.01041441410779953, -0.047154154628515244, -0.06030074506998062, -0.0349397175014019, -0.02963608130812645, -0.0387326218187809, -0.010792098008096218, -0.01703592576086521, 0.031484317034482956, 0.00886350218206644, -0.016537703573703766, 0.017341285943984985, -0.001547898631542921, 0.02802891843020916, -0.010928706265985966, 0.009916193783283234, 0.017566287890076637, -0.01048673689365387, -0.03223968297243118, 0.0006755105569027364, -0.003680402645841241, 0.005134884733706713, 0.010446557775139809, 0.018032366409897804, -0.005279529374092817, 0.046832721680402756, -0.0022480187471956015, 0.03072895109653473, -0.027273550629615784, -0.018610944971442223, -0.0007639045361429453, -0.00919297058135271, -0.0008111149654723704, -0.010695667937397957, -0.04628628492355347, 0.040179066359996796, -0.016875209286808968, 0.02905750274658203, -0.06814370304346085, -0.06059003621339798, -0.013018017634749413, 0.024348516017198563, 0.028784284368157387, 0.00988405104726553, -0.002047123620286584, -0.004391571972519159, 0.03445756807923317, 0.04461483657360077, 0.00986797921359539, -0.050850629806518555, 0.007015265058726072, 0.011338532902300358, -0.0017045969143509865, 0.011049243621528149, 0.026116393506526947, 0.02404315397143364, -0.014721610583364964, 0.03384684771299362, -0.017678789794445038, -0.010245662182569504, 0.007726434618234634, 0.00416656956076622, -0.01824129745364189, 0.04429340362548828, 0.011137637309730053, 0.031773608177900314, 0.021423479542136192, -0.014697503298521042, -0.05412923917174339, -0.007810811046510935, -0.014239462092518806, 0.005834000650793314, 0.03950405865907669, 0.02806106023490429, -0.005625069607049227, 0.022355632856488228, 0.006922853644937277, -0.016618061810731888, -0.009506367146968842, -0.010864419862627983, -0.00866260752081871, 0.03133967146277428, -0.003907414153218269, -0.0004808932135347277, -0.006251863203942776, -0.02320742979645729, -0.029941441491246223, 0.00573757104575634, -0.021760983392596245, -0.03548615425825119, -0.02177705429494381, 0.028382493183016777, -0.039632633328437805, -0.01296980306506157, 0.0004110820882488042, 0.003525713225826621, 0.03461828455328941, -0.00727241113781929, 0.028607496991753578, -0.033814702183008194, 0.002016989281401038, -0.030873596668243408, 0.005789803806692362, 0.0016101761721074581, -0.001724686473608017, 0.047893449664115906, -0.017823435366153717, -0.04111122339963913, -0.011041208170354366, 0.009361722506582737, -0.03249682858586311, -0.019157379865646362, -0.06142576038837433, 0.0008387380512431264, -0.011989434249699116, 0.006902764085680246, -0.018884161487221718, -0.012704621069133282, 0.022162774577736855, -0.015460905618965626, 0.003855181625112891, -0.012632299214601517, -0.02306278422474861, 0.05634712427854538, 0.057825714349746704, 0.007123748771846294, 0.004001835361123085, 0.014576965942978859, 0.015485012903809547, 0.021568123251199722, -0.016537703573703766, -0.06917228549718857, 0.005765696056187153, 0.0064165969379246235, 0.01467339601367712, 0.0533578023314476, 0.0298610832542181, 0.01496268529444933, -0.020185964182019234, 0.00019034833530895412, 0.020443109795451164, -0.005520604085177183, -0.0434255376458168, 0.04811845347285271, 0.009120648726820946, -0.0152921536937356, 0.0070032114163041115, -0.007899205200374126, 0.017164498567581177, 0.02335207350552082, 0.003095797263085842, -0.004226837772876024, -0.0029632062651216984, -0.017421644181013107, 0.006079093087464571, -0.005343816243112087, 0.022596707567572594, 0.03387898951768875, 0.04795773699879646, -0.005287565290927887, -0.017084140330553055, 0.030118228867650032, 0.018803803250193596, -0.0185305867344141, -0.003752724966034293, 0.011643894016742706, 0.04037192836403847, 0.015083221718668938, -0.025007452815771103, 0.005838018376380205, 0.005637123249471188, 0.005649176891893148, 0.030166443437337875, 0.017630575224757195, -0.01427160482853651, -0.009024218656122684, -0.062036480754613876, -0.004889792762696743, 0.004315231926739216, -0.007814828306436539, 0.03262540325522423, 0.014207318425178528, 0.016344845294952393, 0.022869925945997238, -0.006754101254045963, 0.007380894850939512, -0.0008251775871030986, 0.05258636549115181, -0.009329579770565033, -0.015067150816321373, -0.007184017449617386, -0.0057335528545081615, 0.030278945341706276, -0.0255056731402874, 0.026212824508547783, 0.002424806822091341, -0.016634134575724602, 0.020298466086387634, 0.01695556752383709, -0.02653425745666027, -0.002601594664156437, -0.014054638333618641, 0.007782685570418835, 0.0022520367056131363, -0.018755588680505753, -0.018466299399733543, -0.005580872762948275, -0.005661230534315109, 0.03902190923690796, 7.282455771928653e-05, -0.04387554153800011, -0.01266444195061922, 0.04271838441491127, -0.05843643844127655, -9.460914588999003e-05, 0.023159215226769447, -0.029459292069077492, -0.009321543388068676, -0.04188266023993492, -0.02397886849939823, -0.018514513969421387, -0.00034403326571919024, -0.03815404325723648, -0.05731142312288284, -0.03439328074455261, -0.06406150758266449, 0.012656406499445438, -0.01434392761439085, -0.03301112353801727, -0.02335207350552082, 0.029025359079241753, -0.014978756196796894, 0.005480424966663122, -0.007320626173168421, -0.004234873689711094, 0.023303858935832977, -0.03310755267739296, 0.002945125801488757, 0.0010130146984010935, -0.003258522367104888, 0.03211111202836037, -0.023014569655060768, 0.029973585158586502, -0.023287788033485413, -0.029105717316269875, 0.026469970121979713, 0.003833083203062415, 0.028382493183016777, 0.02426815778017044, -0.04705772548913956, -0.010269769467413425, -0.013853742741048336, -0.019896674901247025, -0.008702785708010197, -0.027289623394608498, -0.02814141847193241, -0.029764654114842415, 0.013186770491302013, -0.032030753791332245, 0.014842147938907146, 0.014400177635252476, -0.024284228682518005, -0.0038250472862273455, -0.020491324365139008, 0.036193303763866425, 0.004700950812548399, -0.010735847055912018, 0.021535979583859444, -6.930889503564686e-05, 0.008341174572706223, 0.021037759259343147, 0.03055216372013092, 0.00416656956076622, 0.01236711721867323, 0.014408214017748833, 0.0030174481216818094, 0.010623345151543617, -0.024091368541121483, -0.025891391560435295, 0.04397197067737579, -0.030487876385450363, 0.014810004271566868, -0.03555043786764145, -0.0048455954529345036, 0.020185964182019234, 0.0031279404647648335, 0.00979565642774105, -0.0008497872622683644, -0.016248414292931557, -0.005613015964627266, -0.015018935315310955, -0.0366111658513546, -0.009409938007593155, -0.00949833169579506, 0.0005680315662175417, -0.020491324365139008, 0.019960960373282433, 0.013500167056918144, -0.00204109656624496, 0.011627822183072567, -0.003764778608456254, -0.0002651818504091352, 0.017276998609304428, 0.008734929375350475, 0.0009110603714361787, 0.04220409318804741, -0.042011234909296036, 0.010165303945541382, 0.009859943762421608, 0.04400411620736122, -0.017630575224757195, 0.025827104225754738, 0.014464464038610458, 0.021793127059936523, 0.009217077866196632, 0.003055618144571781, 0.013588560745120049, -0.009835835546255112, 0.004395590163767338, 0.027852129191160202, -0.008092064410448074, -0.02820570580661297, -0.004170587286353111, -0.012945695780217648, -0.004604521207511425, 0.02619675174355507, -0.0234967190772295, 0.010133161209523678, -0.01450464315712452, -0.005846054293215275, -0.0027723556850105524, -0.020925259217619896, -0.01054298784583807, -0.029877154156565666, -0.035646870732307434, 0.028125347569584846, 0.005492478609085083, 0.007220178376883268, -0.020925259217619896, 0.005271493922919035, -0.02565031684935093, -0.0005087674362584949, 0.051654208451509476, -0.014440356753766537, -0.019494883716106415, -0.01881987601518631, 0.0028386511839926243, -0.036418307572603226, -0.024284228682518005, 0.0058942693285644054, 0.022741353139281273, 0.0068505313247442245, 0.006525080651044846, -0.025023523718118668, -0.02323957346379757, 0.02791641652584076, 0.026084251701831818, 0.006050967611372471, 0.0022902069613337517, -0.0012154168216511607, -0.045032698661088943, 0.014954648911952972, 0.020491324365139008, 0.0003186702379025519, -0.040693361312150955, -0.057247135788202286, -0.0021515891421586275, -0.013516238890588284, -0.013186770491302013, -0.02160026691854, 0.014536786824464798, -0.0035940175876021385, -0.029828939586877823, 0.03416828066110611, -0.010237626731395721, -0.02814141847193241, 0.013893921859562397, 0.0036161160096526146, 0.006589367054402828, -0.013982315547764301, 0.016489489004015923, -0.0016533687012270093, 0.004488002043217421, -0.010711739771068096, -0.018627015873789787, -0.03577544167637825, 0.017968079075217247, -0.027016405016183853, 0.014384106732904911, -0.031918250024318695, 0.009659048169851303, -0.01196532603353262, -0.024284228682518005, -0.0050786342471838, -0.0001250573550350964, -0.013588560745120049, -0.015991268679499626, -0.02952357940375805, -0.08331531286239624, 0.046864863485097885, -0.06332220882177353, 0.05020776391029358, 0.027241408824920654, 0.03519686311483383, -0.027177121490240097, -0.0035799548495560884, 0.022677065804600716, 0.014729646034538746, 0.014102852903306484, -0.026293182745575905, -0.0023283769842237234, -0.0027341856621205807, -0.02214670181274414, -0.021584196016192436, 0.0036301787476986647, -0.013990351930260658, 0.003782859304919839, -0.012503726407885551, 0.004990240093320608, 0.01918952353298664, -0.003258522367104888, 0.019816316664218903, -4.9501868488732725e-05, -0.019157379865646362, -0.013821599073708057, 0.03786475211381912, 0.010277805849909782, 0.01520375907421112, -0.05149349197745323, 0.02499138005077839, -0.015629656612873077, 0.020443109795451164, 0.011949255131185055, 0.004162551369518042, -0.018257368355989456, -0.0027603020425885916, -0.003027492668479681, 0.01246354728937149, -0.014641252346336842, 0.02659854292869568, -0.025007452815771103, -0.004142461810261011, -0.02375386469066143, -0.038571905344724655, 0.008413496427237988, -0.00020742444030474871, 0.0008442626567557454, -0.028382493183016777, -0.00317012844607234, 0.00237056496553123, 0.013588560745120049, 0.008759036660194397, -0.0027020422276109457, 0.01787164993584156, -0.028607496991753578, -0.011925147846341133, -0.01816093921661377, 0.01145907025784254, 0.01859487220644951, -0.011282281950116158, 0.020555611699819565, 0.0008718858007341623, -0.013773384504020214, 0.026068178936839104, -0.011394783854484558, -0.02086097188293934, -0.004009870812296867, 0.0006976090953685343, 0.020523468032479286, -0.01145907025784254, -0.023946724832057953, -0.019430598244071007, -0.003121913643553853, -0.025296742096543312, 0.003662321949377656, -0.022757424041628838, -0.008381353691220284, 0.03712545707821846, 0.002025024965405464, 0.018257368355989456, -0.015268045477569103, 0.02481459267437458, 0.010277805849909782, 0.01845022849738598, 0.010004588402807713, 0.010326020419597626, 0.0204270388931036, -0.003262540325522423, 0.006930889096111059, 0.039664775133132935, -0.014070709235966206, -0.010663524270057678, -0.005536675453186035, 0.036161161959171295, -0.01599930413067341, 0.02050739713013172, 0.015452869236469269, 0.0003066165081690997, 0.013741240836679935, -0.024862807244062424, 0.004186659120023251, -0.005215242970734835, 0.049789901822805405, 0.01899666339159012, 0.0204270388931036, 0.021953843533992767, -0.012841230258345604, 0.02108597569167614, 0.01075995434075594, -0.002464985940605402, 0.04480769485235214, -0.0011059287935495377, -0.0015278090722858906, 0.038346901535987854, -0.02547352947294712, 0.014408214017748833, -0.015396619215607643, -0.006545170210301876, -0.027305694296956062, -0.021873485296964645, -0.007441163528710604, -0.011876932345330715, 0.035679012537002563, -0.008236709050834179, 0.012214437127113342, 0.021953843533992767, -0.02068418450653553, -0.01427160482853651, -0.0351647213101387, 0.010309948585927486, 0.0012756853830069304, 0.058886442333459854, -0.015018935315310955, -0.014745717868208885, -0.01273676473647356, 0.030745021998882294, 0.022709209471940994, 0.04406840354204178, -0.003346916288137436, 0.03606473281979561, 0.019430598244071007, 0.030343232676386833, 0.03600044548511505, -0.022677065804600716, -0.019687743857502937, -0.004042014479637146, -0.00794741977006197, 0.018948448821902275, 0.013652847148478031, -0.007838936522603035, -0.0006503986660391092, 0.022532422095537186, 0.04008263722062111, 0.012230508029460907, 0.025168167427182198, 0.010133161209523678, 0.010317984968423843, 0.037254031747579575, 0.009369758889079094, -0.038571905344724655, 0.010109053924679756, 0.006738029886037111, -0.0004896823666058481, -0.015846624970436096, -0.01597519777715206, 0.0035799548495560884, -0.013636775314807892, 0.02050739713013172, -0.022484205663204193, -0.012857302092015743, -0.030937882140278816, 0.04371482506394386, -0.021005617454648018, -0.006372400093823671, -0.010317984968423843, -0.01698770932853222, -0.022998498752713203, 0.00601078849285841, 0.010293877683579922, 0.011716215871274471, -0.02079668641090393, 0.003312764223664999, -0.0066616893745958805, 0.007718399167060852, -0.022789567708969116, -0.0368361696600914, -0.006171504966914654, -0.022114558145403862, -0.028848571702837944, -0.01735735684633255, -0.025441385805606842, -0.003895360743626952, 0.013419808819890022, 0.015629656612873077, -0.017775218933820724, -0.06245434284210205, -0.007975544780492783, 0.0008894641068764031, 0.016272522509098053, 0.01432785578072071, -0.006729993969202042, 0.006693832576274872, 0.012085863389074802, 0.020121676847338676, -0.0063201673328876495, 0.0020752488635480404, 0.008365281857550144, 0.024621732532978058, 0.0050505087710917, 0.020105605944991112, 0.0006398516707122326, -0.024894950911402702, 0.00859028473496437, 0.0101572684943676, 0.014440356753766537, -0.017084140330553055, -0.03371827304363251, 0.01233497355133295, 0.007613933179527521, -0.0082608163356781, 0.004889792762696743, 0.014110888354480267, -0.010374234989285469, -0.016280557960271835, -0.035389721393585205, 0.034039705991744995, 0.050882771611213684, -0.011169780977070332, 0.012985874898731709, 0.007650094572454691, 0.01918952353298664, 0.006504991091787815, -0.001196331693790853, -0.015388582833111286, 0.04779702052474022, 0.005094705615192652, -0.021278833970427513, -0.02693604677915573, 0.006959014572203159, -0.013789456337690353, 0.029025359079241753, 0.00380093976855278, -0.03870048001408577, 0.009956372901797295, 0.04111122339963913, -0.0021154279820621014, 0.0020340653136372566, 0.04853631556034088, 0.000630811380688101, 0.007710363250225782, -0.009369758889079094, -0.03336469829082489, 0.02140740677714348, 0.01180461049079895, 0.007236250210553408, 0.004154515452682972, 0.03580758720636368, 0.01758236065506935, 0.03497185930609703, 0.004019915591925383, -0.006199629977345467, -0.0006534120766445994, -0.03339684009552002, 0.007477324455976486, -0.004917917773127556, 0.009088505059480667, 0.014609109610319138, -0.01306623313575983, -0.020362751558423042, -0.03718974441289902, 0.01279301568865776, 0.013114447705447674, 0.00949833169579506, -0.025232454761862755, 0.020748469978570938, -0.01533233281224966, -0.02963608130812645, -0.006223737727850676, 0.027643198147416115, 0.009016183204948902, 0.03169324994087219, -0.0008517962414771318, 0.025923535227775574, -0.028703926131129265, -0.04483984038233757, 0.002961197402328253, -0.010446557775139809, -0.010446557775139809, 0.004303178284317255, -0.023014569655060768, 0.03313969448208809, 0.010824240744113922, 0.0316450335085392, -0.0267914030700922, -0.009434045292437077, -0.026727115735411644, -0.029845012351870537, 0.020523468032479286, -0.005110777448862791, 0.003602053504437208, -0.028366422280669212, 0.01200550515204668, -0.024573517963290215, -0.018980592489242554, 0.019527027383446693, 0.04966132715344429, -0.005283547565340996, 0.014046601951122284, -0.016682349145412445, -0.010518879629671574, 0.024943165481090546, 0.0052915834821760654, 0.012720692902803421, -0.02765927091240883, 0.023014569655060768, -0.005834000650793314, 0.02082882821559906, -0.010944778099656105, 0.010639416985213757, 0.0108563844114542, -0.02883249893784523, 0.05017561838030815, 0.004745148122310638, 0.028591424226760864, -0.02759498357772827, -0.0009115625871345401, -0.0368361696600914, 0.01845022849738598, 0.00014502131671179086, -0.029909297823905945, -0.026662830263376236, -0.0035016057081520557, -0.008309030905365944, 0.03943977504968643, -0.004359428770840168, -0.002022011671215296, 0.0071679456159472466, 0.05560782924294472, 0.03580758720636368, -0.0014263569610193372, -0.0003754231729544699, 0.010615309700369835, 0.0022660994436591864, -0.001882389304228127, 0.03474685922265053, 0.03600044548511505, 0.013267128728330135, 0.023802079260349274, 0.005400066729635, -0.015179651789367199, -0.009409938007593155, -0.008783143945038319, -0.013918029144406319, -0.02283778227865696, 0.003752724966034293, -0.020234178751707077, 0.009739406406879425, -0.005942484363913536, -0.03146824613213539, 0.011209960095584393, 0.014721610583364964, 0.005199171602725983, 0.012262651696801186, -0.017534146085381508, 0.021985985338687897, -0.020073462277650833, -0.032802190631628036, -0.0017307134112343192, 0.03574329987168312, -0.010599237866699696, -0.025409242138266563, 0.029764654114842415, -0.020266322419047356, -0.003931521903723478, 0.003260531462728977, -0.020700255408883095, -0.014295712113380432, 0.009932265616953373, -0.011322461068630219, 0.0126965856179595, -0.011193888261914253, 0.001731717842631042, -0.010189411230385303, -0.007364823017269373, 0.013869814574718475, -0.009201006963849068, 0.011041208170354366, -0.0014112897915765643, -0.0039837546646595, -0.010679596103727818, -0.0314200296998024, -0.010912634432315826, 0.04088621959090233, -0.04493626952171326, 0.003260531462728977, 0.0027844093274325132, 0.012809086591005325, 0.0015167598612606525, -0.0066616893745958805, -0.0036844206042587757, -0.008742964826524258, 0.01080013345927, 0.011973362416028976, 0.010671560652554035, 0.013379629701375961, 0.0007146851858124137, -0.005118813365697861, -0.011571571230888367, -0.012439439073204994, -0.013210877776145935, 0.003441337263211608, 0.028093203902244568, -0.004516127053648233, 0.011274246498942375, -0.011925147846341133, -0.018771661445498466, -0.009940301068127155, 0.02045918069779873, 0.0038692443631589413, 0.009409938007593155, 0.013781419955193996, 0.00798358116298914, 0.01838594116270542, 0.004222820047289133, -0.040725503116846085, -0.024203870445489883, -0.04831131175160408, 0.00022563057427760214, 0.021182404831051826, -0.00111195573117584, 0.012519797310233116, -0.015806445851922035, -0.006657671649008989, 0.0036462503485381603, 0.019398454576730728, 0.0450969859957695, -0.022773494943976402, -0.015211795456707478, 0.028880713507533073, 0.01644930988550186, 0.02013774961233139, -0.031870037317276, 0.0054281922057271, -0.021310977637767792, -0.02280563861131668, -0.02397886849939823, -0.0027904363814741373, -0.0006684792460873723, -0.01554929930716753, 0.0034312924835830927, 0.005649176891893148, 0.009642976336181164, -0.006834459491074085, 0.012985874898731709, 0.006830441765487194, -0.01607966236770153, -0.033268269151449203, -0.013034089468419552, 0.0018432147335261106, -0.03233611583709717, 0.020475253462791443, 0.007553664967417717, 0.0022138666827231646, -0.0044196974486112595, -0.005713463295251131, -0.05178278312087059, -0.0204270388931036, -0.004853631369769573, -0.015051078982651234, -0.031162885949015617, -0.023432431742548943, -0.02576281875371933, 0.0027080692816525698, 0.005339798051863909, -0.019960960373282433, 0.007372858934104443, -0.0014504643622785807, 0.006834459491074085, -0.012865337543189526, -0.03026287443935871, -0.0032906655687838793, 0.014649287797510624, 0.002890883944928646, -0.004877738654613495, 0.012616227380931377, -0.014994828030467033, -0.021278833970427513, -0.03551829606294632, -0.009008146822452545, 0.002993340604007244, -0.03249682858586311, 0.03812190145254135, 0.033203981816768646, 0.012913552112877369, 0.013982315547764301, -0.013251056894659996, -0.00988405104726553, 0.026261039078235626, -0.03497185930609703, -0.033814702183008194, -0.003250486683100462, 0.00979565642774105, 0.008136261254549026, 0.010334055870771408, -0.004391571972519159, -0.00574560696259141, 0.005199171602725983, 0.022821711376309395, 0.00725232157856226, -0.02013774961233139, -0.009490296244621277, -0.01630466617643833, 0.0038350920658558607, -0.004524162970483303, 0.009112612344324589, -0.015115365386009216, 0.005323726683855057, 0.011700144968926907, -0.020732399076223373, -0.012985874898731709, 0.010173340328037739, -0.02441280148923397, 0.006239809095859528, -0.030343232676386833, 0.0018723445245996118, -0.06078289449214935, -0.0102135194465518, 0.01878773234784603, 0.008421532809734344, -0.008180458098649979, -0.030600378289818764, 0.014488572254776955, 0.012455510906875134, -0.007963491603732109, 0.004504073411226273, -0.0022540458012372255, 0.015902874991297722, -0.009634940885007381, 0.010599237866699696, -0.002109401160851121, 0.008967967703938484, -0.024750305339694023, 0.0006564255454577506, 0.005094705615192652, 0.0036603130865842104, 0.009988516569137573, 0.012447475455701351, 0.012768907472491264, -0.001078807981684804, -0.025264598429203033, 0.027064619585871696, 0.015581442974507809, -0.0064969551749527454, -0.007597861811518669, -0.02579496242105961, -0.0003349929756950587, -0.012616227380931377, -0.003166110487654805, -0.009297436103224754, 0.010663524270057678, 0.008071974851191044, 0.003389104502275586, 0.010663524270057678, -0.0054161385633051395, 0.013837670907378197, -0.005343816243112087, -0.0031098597683012486, 0.007955455221235752, -0.004958096891641617, 0.011740324087440968, -0.017276998609304428, -0.0044598765671253204, -0.02992537058889866, 0.007352769374847412, -0.014625180512666702, 0.00959476176649332, 0.0007046404061838984, 0.00763804093003273, -0.019944889470934868, -0.011989434249699116, 0.0013449942925944924, 0.019607385620474815, -0.010639416985213757, 0.024782449007034302, 0.003214325523003936, 0.05142920836806297, 0.010245662182569504, 0.017260927706956863, 0.00926529336720705, -0.03204682469367981, 0.010751918889582157, 0.015348403714597225, 0.025023523718118668, 0.0382826142013073, -0.001687520882114768, 0.029957512393593788, 0.0024308336433023214, 0.00018055469263345003, 0.010438522323966026, 0.011917111463844776, 0.026887832209467888, 0.00915279146283865, 0.012961767613887787, 0.008574212901294231, 0.015685908496379852, -0.031403958797454834, -0.017341285943984985, 5.6564593251096085e-05, 0.011989434249699116, 0.028446780517697334, -0.0060991826467216015, -0.01014119666069746, 0.0010054812300950289, 0.01772700436413288, -0.00044749435619451106, 0.02532888390123844, 0.007742506451904774, 0.011250139214098454, 0.02163241058588028, -0.032834336161613464, 0.045514848083257675, -0.0017508028540760279, -0.00017942464910447598, -2.9161214115447365e-05, 0.010663524270057678, 0.009313507936894894, -0.031082527711987495, -0.0013811554526910186, -0.011177816428244114, -0.0012857301626354456, 0.007296518888324499, 0.0015127419028431177, -0.008742964826524258, -0.025634245947003365, -0.011949255131185055, -0.02831820771098137, -0.013532309792935848, -0.03301112353801727, 0.0020270340610295534, -0.003993799444288015, 0.0013299271231517196, 0.01070370338857174, 0.015155544504523277, 0.00285472278483212, 0.01845022849738598, -0.02507173828780651, 0.012318902648985386, -0.0072483038529753685, -0.043650537729263306, -0.01394213642925024, -0.012182293459773064, -0.02372172102332115, -0.00699919369071722, 0.01174835953861475, 0.01571805216372013, -0.0034734804648905993, -0.011049243621528149, 0.001966765383258462, 0.0004633148782886565, -0.022484205663204193, 0.01738950051367283, 0.014207318425178528, 0.00794741977006197, 0.028511065989732742, -0.026116393506526947, -0.0020079489331692457, 0.005058544687926769, -0.009747441858053207, 0.015830552205443382, -0.01669842004776001, 0.00882332306355238, -0.0023022606037557125, -0.01262426283210516, 0.01421535387635231, -0.018225224688649178, 0.003246468724682927, -0.00793134793639183, 0.010944778099656105, 0.031403958797454834, -0.02682354673743248, -0.01710021123290062, -0.015485012903809547, -0.0004906868562102318, 0.028237849473953247, 0.010776026174426079, -0.02002524770796299, 0.011507284827530384, 0.04940418154001236, 0.009401901625096798, -0.001210394431836903, 0.005255422089248896, -0.008710822090506554, -0.005456317216157913, -0.009940301068127155, 0.008783143945038319, 0.004592467565089464, 0.013492130674421787, 0.007075533736497164, -0.024348516017198563, -0.006770173087716103, -0.024621732532978058, 0.0033147730864584446, 0.022018129006028175, 0.03264147415757179, 0.00915279146283865, -0.01362873986363411, 0.010502808727324009, -0.006673743017017841, 0.0030897704418748617, 0.0006544165662489831, 0.01149121392518282, 0.013098375871777534, 0.02045918069779873, 0.014705538749694824, 0.03251290321350098, -0.006372400093823671, 0.03943977504968643, -0.01991274580359459, -0.005167027935385704, 0.01147514209151268, 0.005090687889605761, 0.022789567708969116, 0.007413038052618504, -0.034328997135162354, -0.010534951463341713, 0.00013924558879807591, -0.03452185541391373, 0.016135914251208305, -0.0005856099305674434, 0.004564342088997364, -0.005998734850436449, -0.03677188232541084, -0.008071974851191044, 0.005339798051863909, 0.0039355396293103695, -0.014151067472994328, -0.0029230271466076374, 0.023303858935832977, 0.020587755367159843, -0.0029370898846536875, -0.0050786342471838, 0.010551023297011852, -0.00506256241351366, 0.015943054109811783, -0.014609109610319138, 0.0026357469614595175, 0.015340368263423443, 0.005496496334671974, -0.021471694111824036, 0.023834222927689552, 0.014697503298521042, 0.014585001394152641, -0.03342898562550545, -0.025634245947003365, -0.010880491696298122, 0.019430598244071007, -0.005331762135028839, -0.019173450767993927, -0.027177121490240097, 0.025955678895115852, -0.005596944130957127, 0.011627822183072567, -0.011708180420100689, 0.028816428035497665, -0.007951437495648861, -0.01692342385649681, 0.004853631369769573, -0.006886692252010107, 0.012045684270560741, 0.018723445013165474, 0.03413613513112068, -0.038571905344724655, -0.001904487842693925, 0.015910910442471504, -0.009787620976567268, 0.017550216987729073, 0.017309142276644707, 0.008284923620522022, 0.002774364547803998, 0.001167201902717352, -0.02536102756857872, 0.008638499304652214, 0.006219719536602497, 0.015388582833111286, 0.01361266802996397, -0.006870620418339968, 0.011137637309730053, -0.005789803806692362, -0.030905738472938538, 0.030536090955138206, 0.0004125887935515493, 0.005339798051863909, 0.002935081021860242, 0.016907351091504097, -0.019173450767993927, -0.01758236065506935, 0.023769937455654144, -0.015243938192725182, 0.00023630313808098435, 0.0028848571237176657, -0.017341285943984985, 0.003111868863925338, -0.028446780517697334, -0.026116393506526947, -0.0075898258946835995, -0.0021234636660665274, 0.005621051415801048, -0.020555611699819565, 0.012825158424675465, 0.0347147136926651, 0.00027171094552613795, -0.00953851081430912, -0.022114558145403862, 0.035389721393585205, -0.004488002043217421, -0.005556765012443066, 0.005090687889605761, 0.021005617454648018, -0.015589478425681591, 0.035132575780153275, -0.00019788190547842532, 0.012825158424675465, -0.0023424397222697735, 0.012905516661703587, 0.017839506268501282, 0.0286878552287817, -0.0320950411260128, -0.019430598244071007, -0.014713575132191181, 0.001852255081757903, -0.000326454930473119, 0.0016352881211787462, 0.009626904502511024, 0.003614107146859169, -0.010776026174426079, -0.010920670814812183, -0.001793995383195579, 0.014649287797510624, -0.029298575595021248, 0.009634940885007381, 0.006834459491074085, -0.007445181254297495, 0.012238544411957264, 0.016714492812752724, -0.0571507066488266, 0.04030764102935791, -0.010880491696298122, 0.011081387288868427, 0.009201006963849068, -0.021278833970427513, -0.02934679202735424, -0.006617492530494928, 0.008300995454192162, 0.013459987938404083, -0.021937770769000053, -0.020362751558423042, 0.024686019867658615, -0.0009236163459718227, -0.0023022606037557125, -0.02298242785036564, -0.0052674757316708565, 0.0132831996306777, 0.00045151228550821543, -0.021439550444483757, -0.008686714805662632, -0.014906434342265129, 0.01206175610423088, -0.004044023342430592, 0.0006584344664588571, -0.006814369931817055, -0.006488919723778963, 0.019703814759850502, 0.017196640372276306, 0.007899205200374126, -0.02188955619931221, 0.012118007056415081, 0.01273676473647356, 0.029812868684530258, 0.020587755367159843, -0.019173450767993927, 0.012029613368213177, 0.021680625155568123, 0.0033589701633900404, -0.013363557867705822, -0.030086087062954903, -0.03092181123793125, 0.019687743857502937, 0.0011571571230888367, 0.029539650306105614, -0.006500973366200924, 0.010221554897725582, 0.0024710127618163824, -0.015091258101165295, 0.0022440010216087103, -0.035357579588890076, 0.01553322747349739, -0.02507173828780651, -0.01467339601367712, 0.009450117126107216, -0.021359192207455635, -0.005295601207762957, -0.0002305274101672694, 0.023994939401745796, 0.004998276010155678, -0.01677877828478813, -0.003704510163515806, 0.012375152669847012, -0.01962345652282238, -0.011282281950116158, -0.021985985338687897, -0.0012515779817476869, -0.0304718054831028, -0.007935365661978722, -0.003148030024021864, 0.008582249283790588, -0.002547352807596326, -0.0017980133416131139, 0.0005946502205915749, 0.027498554438352585, 0.012487654574215412, -0.0004562835383694619, -0.039921920746564865, 0.0029069555457681417, -0.026405682787299156, 0.006352310534566641, -0.0025373082607984543, -0.004407643806189299, -0.0038732620887458324, 0.02751462534070015, -0.015589478425681591, -0.005890251602977514, -0.005030419211834669, 0.009956372901797295, 0.015340368263423443, 0.0027603020425885916, -0.00509872380644083, 0.010880491696298122, 0.007139820605516434, 0.0005373950116336346, -0.04059693217277527, 0.008984039537608624, -0.004692915361374617, 0.018193082883954048, -0.022902069613337517, -0.000164231940289028, -0.021327048540115356, 0.00860635656863451, -0.024894950911402702, -0.01798414997756481, -0.006095164455473423, 0.017887720838189125, -0.032721832394599915, 0.005034437403082848, -0.01556537114083767, -0.007143838331103325, -0.003174146404489875, -0.001962747424840927, -0.0067018684931099415, 0.03230397030711174, 0.02978072501718998, -0.04326482117176056, 0.017453787848353386, 0.00634829280897975, 0.017260927706956863, -5.53246934487106e-07, -0.0031540568452328444, -0.002308287424966693, 0.00669785076752305, -0.024943165481090546, -0.017534146085381508, -0.021327048540115356, 0.008357246406376362, -0.017276998609304428, 0.013451951555907726, 0.04053264483809471, 0.008124207146465778, -0.005263458006083965, 0.013508202508091927, -0.0025915498845279217, 0.004190676845610142, -0.009064397774636745, -0.013861778192222118, -0.014480535872280598, -0.01527608186006546, 0.04194694757461548, -0.010366199538111687, -0.012270687147974968, 0.00882332306355238, 0.012471582740545273, -0.00302347494289279, 0.021246690303087234, 0.022243132814764977, -0.0204270388931036, 0.010679596103727818, -0.014030530117452145, 0.008927788585424423, -0.007171963807195425, -0.004463894292712212, -0.01626448705792427, 0.002241991925984621, -0.03275397792458534, 0.00866260752081871, 0.00981172826141119, -0.00986797921359539, 0.00416656956076622, 0.01489036250859499, -0.007565718609839678, -0.02745033986866474, 0.027546769008040428, 0.02306278422474861, 0.011836753226816654, 0.0047210403718054295, -0.014689466916024685, -0.011796574108302593, 0.029571793973445892, 0.0002565182512626052, 0.02375386469066143, 0.005026401486247778, 0.008509926497936249, 0.005327744409441948, -0.01896451972424984, -0.006191594526171684, -0.010438522323966026, 0.0016101761721074581, -0.001203363062813878, -0.011097458191215992, -0.018064508214592934, -0.008485819213092327, 0.009321543388068676, -0.016063591465353966, -0.03477900102734566, 0.0006840486312285066, 0.010438522323966026, -0.009176898747682571, 0.0035237043630331755, 8.55688558658585e-05, -0.00317012844607234, 0.01362873986363411, 0.00036236498272046447, 0.01603948324918747, -0.014255532994866371, 0.0015358448727056384, 0.002286189002916217, -0.03339684009552002, -0.012656406499445438, -0.003967682830989361, -0.007071516010910273, 0.00477729132398963, -0.016135914251208305, 0.009570653550326824, -4.269025885150768e-05, -0.004580413922667503, 0.002894901903346181, -0.024461016058921814, 0.017164498567581177, -0.006267934571951628, -0.002611639443784952, -0.0011732288403436542, -0.000922611856367439, 0.00636838236823678, -0.019462740048766136, 0.008015723899006844, -0.016971638426184654, 0.0009763513808138669, -0.010165303945541382, -0.01681092195212841, 0.019462740048766136, -0.019559171050786972, -0.005862126126885414, 0.01878773234784603, 0.06557223945856094, 0.02693604677915573, 0.009361722506582737, 0.013773384504020214, 0.005504532251507044, -0.023303858935832977, -0.015059114433825016, 0.009667083621025085, 0.01571805216372013, 0.003987772390246391, 0.011949255131185055, -0.008501891046762466, -0.009586725383996964, -0.013074268586933613, -0.02693604677915573, 0.01976810209453106, 0.010687632486224174, 0.01764664612710476, -0.031853966414928436, 0.03837904706597328, 0.01838594116270542, 0.007477324455976486, -0.0101010175421834, 0.014552858658134937, 0.009128684177994728, -0.0027844093274325132, 0.00664963573217392, 0.0037004922050982714, 0.020925259217619896, 0.0011280273320153356, 0.010494772344827652, -0.0011129601625725627, 0.00800367072224617, 0.008413496427237988, 0.0057978397235274315, 0.009602797217667103, -0.013805528171360493, -0.0010270774364471436, 0.002270117402076721, 0.008582249283790588, -0.004781309049576521, -0.023512789979577065, 0.014649287797510624, -0.005255422089248896, -0.0024931111838668585, -0.009112612344324589, -0.004849613644182682, 0.0032303971238434315, -0.0026216842234134674, 0.0009472215315327048, -0.015661800280213356, -0.02272528037428856, 0.005653195083141327, -0.0004613059281837195, 0.0057335528545081615, -0.021809197962284088, 0.003985763527452946, -0.014199282974004745, -0.007376877125352621, -0.00697106821462512, -0.026807473972439766, -0.005263458006083965, -0.021937770769000053, -0.011973362416028976, -0.005255422089248896, -0.009064397774636745, -0.008357246406376362, -0.004017906729131937, -0.0018843982834368944, -0.01306623313575983, -0.023030642420053482, 0.003206289606168866, 0.0018904251046478748, -0.0330432653427124, 0.0015679880743846297, 0.010623345151543617, -0.02335207350552082, 0.02192169986665249, 0.0059786452911794186, -0.006432668771594763, -0.0022219023667275906, 0.008959932252764702, -0.006344274617731571, -0.015525192022323608, 0.0006162464851513505, 0.00827688816934824, 0.019012734293937683, 0.01625645160675049, 0.009088505059480667, -0.008574212901294231, -0.01116174552589655, -0.010551023297011852, -0.0024227977264672518, 0.024203870445489883, 0.004560324363410473, 0.002681952901184559, -0.0013520256616175175, -0.0108563844114542, 0.02386636659502983, -0.00474916584789753, -0.007384912576526403, 0.023737793788313866, 0.016939494758844376, -6.478875002358109e-05, 0.012399259954690933, -0.002095338422805071, 0.0023123053833842278, 0.008783143945038319, 0.013371594250202179, -0.014102852903306484, -0.003166110487654805, -0.017341285943984985, -0.015557334758341312, -0.001860290882177651, -0.027434267103672028, 0.008943860419094563, 0.014713575132191181, -0.015388582833111286, -0.006589367054402828, 0.0014836121117696166, -0.025489600375294685, -0.0009015178657136858, -0.002961197402328253, -0.0011420899536460638, -0.004098264966160059, 0.011434962972998619, -0.015693943947553635, -0.002961197402328253, -0.012889444828033447, -0.0023404306266456842, 0.01681092195212841, -0.016714492812752724, -0.008413496427237988, 0.013604632578790188, 0.007489378098398447, -0.0008452671463601291, -0.004471930209547281, -0.01390195731073618, 0.031178956851363182, -0.02802891843020916, 0.005002294201403856, 0.016457347199320793, 0.00822465494275093, 0.01019744761288166, -0.01896451972424984, -0.005259439814835787, 0.0036080803256481886, -0.024284228682518005, 0.0055929264053702354, 0.005074616521596909, 0.032978978008031845, -0.027305694296956062, 0.001731717842631042, -0.01500286441296339, 0.011330497451126575, -0.002513200743123889, -0.024203870445489883, 0.024171726778149605, 0.0051067597232759, -0.0038993784692138433, 0.0133957015350461, -0.026068178936839104, -0.017148425802588463, 0.0012847257312387228, 0.005456317216157913, 0.026550328359007835, 0.01428767666220665, 0.028511065989732742, 0.022869925945997238, -0.007919294759631157, -0.022564563900232315, 0.0018412057543173432, 0.007919294759631157, -0.0304718054831028, -0.012310866266489029, -0.0056089977733790874, 0.010976921766996384, 0.021037759259343147, -0.02708069235086441, 0.008598320186138153, -0.007806792855262756, -0.0033509342465549707, 0.015211795456707478, -0.0026457917410880327, -0.015227866359055042, -0.0017518074018880725, 0.009562618099153042, -0.011523356661200523, 0.0020089533645659685, 0.0030616449657827616, 0.0018944430630654097, 0.016135914251208305, 0.008027778007090092, 0.015758231282234192, -0.0018020311836153269, -0.006504991091787815, 0.024830663576722145, -0.009859943762421608, -0.006633564364165068, -0.012519797310233116, 0.01423142571002245, -0.006135343573987484, 0.013701062649488449, 0.007236250210553408, 3.123294845863711e-06, -0.024107441306114197, -0.017743077129125595, -0.013226949609816074, -0.02524852566421032, 0.005524621810764074, -0.037254031747579575, -0.03330041095614433, 0.0050505087710917, -0.0014112897915765643, -0.02312707155942917, -0.0014072718331590295, 0.01746985875070095, -0.005769714247435331, 0.02097347378730774, -0.012543904595077038, 0.0064969551749527454, 0.011981397867202759, 0.011917111463844776, 0.0014102852437645197, 0.006492937449365854, 0.013934100978076458, 0.015878766775131226, 0.013741240836679935, 0.011563535779714584, 0.011378712020814419, 0.008208584040403366, 0.012801051139831543, -0.00600275257602334, 0.0020019221119582653, 0.017228784039616585, 0.031018240377306938, 0.00794741977006197, 0.011684073135256767, 0.0023524845018982887, 0.0010767990024760365, -0.02079668641090393, 0.0057576606050133705, -0.006589367054402828, -0.016320737078785896, 0.007380894850939512, 0.00013497655163519084, -0.0025393171235919, -0.012222472578287125, -0.017839506268501282, -2.977331678266637e-05, 0.008694750256836414, -0.008096082136034966, 0.005275511648505926, -0.0016091716242954135, 0.02452530339360237, -0.013259092345833778, 0.007135802414268255, 0.00042363806278444827, 0.0031239225063472986, -0.006095164455473423, 0.007171963807195425, -0.006991157773882151, -0.015597513876855373, 0.00413844408467412, 0.0152359027415514, 0.005942484363913536, -0.023882437497377396, 0.009578689932823181, -0.004508091602474451, 0.0011712198611348867, 0.002044110093265772, -0.007525539491325617, 0.0012154168216511607, 0.010277805849909782, -0.006107218563556671, -0.007702327333390713, 0.026100322604179382, -0.008461711928248405, 0.018916305154561996, 0.012166221626102924, -0.006448740605264902, 0.017678789794445038, 0.0006539143505506217, -0.021150261163711548, -0.004150497727096081, -0.03397541865706444, 0.002374582923948765, -0.0011842780513688922, 0.0056773023679852486, 0.01622430793941021, 0.0036964742466807365, -0.011121566407382488, 0.014263569377362728, -0.0074532171711325645, -0.024911021813750267, 0.005765696056187153, -0.01467339601367712, -0.0003324817807879299, 0.018916305154561996, 0.004913900047540665, -0.003907414153218269, 0.0021998039446771145, -0.016907351091504097, -0.028912857174873352, 0.018434155732393265, 0.010189411230385303, 0.01787164993584156, 0.02028239332139492, -0.002388645661994815, -0.001768883434124291, 0.006408561486750841, -0.0015549298841506243, 0.014319819398224354, -0.0102135194465518, -0.010647453367710114, -0.02086097188293934, -0.004773273132741451, 0.014359998516738415, -0.010301913134753704, -0.006239809095859528, -0.013829635456204414, -0.011700144968926907, 0.007513485848903656, 0.01798414997756481, -0.011426926590502262, 0.0065652597695589066, 0.0024187800008803606, 0.0172448568046093, -0.013146591372787952, -0.038861196488142014, -0.0027643197681754827, -0.00504247285425663, -0.007951437495648861, 0.00443978700786829, -0.013966243714094162, 0.013588560745120049, -0.014078745618462563, 0.009345651604235172, -0.020330607891082764, 0.004451840650290251, -0.009417973458766937, -0.005235332529991865, 0.0013972270535305142, 0.002318332204595208, 0.01432785578072071, 0.014480535872280598, 0.0033408894669264555, -0.012278723530471325, 0.009313507936894894, 0.021985985338687897, 0.02068418450653553, 0.010309948585927486, 0.009723334573209286, 0.021696696057915688, -5.257807788439095e-05, -0.016360916197299957, 0.014006422832608223, -0.001904487842693925, -0.038829050958156586, 0.010020659305155277, 0.0026839617639780045, 0.004905864130705595, -0.012383189052343369, -0.010398343205451965, 0.02404315397143364, 0.004371482413262129, 0.020346680656075478, 0.030311089009046555, -0.02492709457874298, 0.011137637309730053, -0.006183558609336615, 0.014134996570646763, -0.0036120982840657234, -0.01149121392518282, -0.01750200241804123, -0.0013630748726427555, -0.0064165969379246235, 0.007163927890360355, -0.0028527139220386744, -0.0043232678435742855, 0.02200205810368061, -0.022355632856488228, -0.013717133551836014, -0.019816316664218903, 0.026486041024327278, 0.010575130581855774, 0.028671782463788986, 0.02433244325220585, 0.0078550074249506, -0.008196529932320118, 0.001203363062813878, -0.00365428626537323, 0.002233956241980195, -0.008517962880432606, 0.016015376895666122, 0.00733669800683856, -0.024541374295949936, 0.037286173552274704, -0.005082651972770691, -0.011009064503014088, 0.014496607705950737, -0.0012415332021191716, 0.012551940977573395, -0.0008347201510332525, 0.0029149914626032114, 0.0021475711837410927, 0.009948337450623512, 0.009506367146968842, 0.019671671092510223, -0.004488002043217421, -0.008992074988782406, -0.013644811697304249, -0.023416360840201378, 0.0016302657313644886, 0.019687743857502937, 0.01758236065506935, 0.011643894016742706, 0.00301543902605772, 0.02174491249024868, 0.001118987100198865, 0.014006422832608223, -0.0033047283068299294, 0.03371827304363251, -0.020218107849359512, 0.006026860326528549, -0.01607966236770153, 0.009835835546255112, -0.009916193783283234, -0.009434045292437077, -0.00474112993106246, -0.02352886274456978, -0.01718056946992874, -0.005850072484463453, 0.02773962914943695, -0.026952119544148445, 0.0010376244317740202, 0.02097347378730774, -0.009988516569137573, 0.018337726593017578, 0.009409938007593155, 0.0038230384234339, 0.0003226881381124258, 0.0051710461266338825, 0.013427844271063805, 0.01533233281224966, 0.02685568854212761, 0.0004520145012065768, 0.01052691601216793, -0.006589367054402828, -0.03731831908226013, -0.012326938100159168, 0.013106412254273891, -0.012126042507588863, -0.0038692443631589413, -0.02111811749637127, 0.000399781740270555, -0.0286878552287817, 0.010277805849909782, 0.018402013927698135, -0.014681431464850903, -0.03371827304363251, 0.0006046950002200902, -0.0027241408824920654, 0.013652847148478031, -0.011274246498942375, -0.011451034806668758, 0.01516357995569706, 0.0033509342465549707, -0.0001007615719572641, -0.021102046594023705, -0.0008121193968690932, 0.012254615314304829, -0.008646535687148571, -0.015766266733407974, -0.0009401902207173407, 0.0010486736427992582, -0.002300251740962267, -0.005821947008371353, 0.005645159166306257, -0.009819764643907547, -0.014898398891091347, -0.0058139110915362835, 0.028880713507533073, -0.002040092134848237, 0.020218107849359512, -0.009257256984710693, 0.006786244455724955, -0.007529557216912508, 0.011836753226816654, 0.028334278613328934, -0.010422450490295887, -0.015428761951625347, -0.011137637309730053, -0.010293877683579922, 0.005862126126885414, -0.006629546172916889, 0.0021234636660665274, 0.001214412390254438, -0.007722416892647743, 0.008156350813806057, -0.03196646645665169, -0.015131437219679356, 0.004250945523381233, -0.0020893116015940905, 0.006717940326780081, -0.009948337450623512, -0.008654571138322353, 0.0040219249203801155, 0.01962345652282238, -0.0007151874015107751, 0.011941218748688698, 0.004516127053648233, -0.010052802972495556, 0.010767989791929722, 0.001096888561733067, 0.040757644921541214, 0.0045844316482543945, 0.015589478425681591, 0.00792733021080494, 0.015806445851922035, 0.013636775314807892, -0.0267914030700922, 0.01054298784583807, -0.0067018684931099415, 0.0029873137827962637, -0.014528751373291016, 0.011515321210026741, 0.023544933646917343, 0.01619216427206993, 0.00479738088324666, -0.0066616893745958805, 0.009610832668840885, -0.011322461068630219, 0.004114336799830198, -0.014046601951122284, 0.008160368539392948, -0.00731660844758153, 0.013773384504020214, 0.03468257188796997, 0.0015368493041023612, 0.01619216427206993, -0.0038129936438053846, 0.0041585336439311504, 0.024316372349858284, -0.023191358894109726, -0.019237738102674484, 0.00022851844551041722, -0.006830441765487194, 0.009610832668840885, -0.021728839725255966, -0.008228673599660397, -0.002464985940605402, -0.0013751286314800382, 0.014665359631180763, 0.022902069613337517, -0.017630575224757195, -0.021214548498392105, 0.015428761951625347, 0.009964409284293652, 0.019302023574709892, -0.006673743017017841, -0.014126960188150406, 0.005319708492606878, 0.010269769467413425, -0.032577186822891235, 0.0011702153133228421, 0.005327744409441948, -0.00103461102116853, -0.00506256241351366, 0.021246690303087234, 0.0031018240842968225, -0.009160827845335007, -0.021166333928704262, 0.0037627697456628084, -0.008734929375350475, -0.02025024965405464, -0.018064508214592934, -0.003389104502275586, -0.0013590570306405425, -0.01658592000603676, 0.00816438626497984, -0.026727115735411644, -0.020121676847338676, -0.008156350813806057, 0.0035839728079736233, 0.02952357940375805, -0.0036382146645337343, -0.011844789609313011, -0.00634025689214468, -0.02372172102332115, 0.008959932252764702, -0.015059114433825016, 0.0024931111838668585, -0.007963491603732109, 0.02295028418302536, -0.012343009933829308, -0.0050505087710917, 0.0003322306729387492, -0.030632521957159042, -0.027128906920552254, -0.026614613831043243, 0.017293071374297142, -0.004463894292712212, -0.0033027194440364838, -0.0006514031556434929, 0.002651818562299013, 0.0034574088640511036, -0.007461253087967634, -0.019414525479078293, -0.013234985060989857, -0.011611750349402428, -0.003989781253039837, 0.022484205663204193, 0.00413844408467412, 0.0165216326713562, -0.0014414240140467882, 0.009217077866196632, -0.011796574108302593, 0.01202157698571682, -0.029153931885957718, 0.0038210293278098106, -0.009892086498439312, 0.008630463853478432, 0.007694291416555643, 0.009996552020311356, 0.00634025689214468, 0.010896563529968262, 0.02817356213927269, 0.005633105523884296, -0.003320799907669425, 0.0034835252445191145, 0.0021214548032730818, 0.003389104502275586, -0.017952008172869682, 0.00028552248841151595, -0.003933530766516924, -0.025409242138266563, -0.016344845294952393, 0.015742158517241478, -0.013741240836679935, -0.0020099577959626913, -0.0006840486312285066, 0.011684073135256767, -0.005544711370021105, 0.01758236065506935, -0.011941218748688698, 0.024236014112830162, 0.00302347494289279, -0.015693943947553635, 0.022789567708969116, -0.005685338284820318, 0.011169780977070332, -0.024605661630630493, 0.009562618099153042, -0.015653764829039574, -0.01107335090637207, -0.009353687055408955, -0.02616460993885994, -0.009723334573209286, -0.007597861811518669, -0.014520714990794659, -0.02937893383204937, -0.002921018283814192, -0.004725058563053608, 0.018434155732393265, -0.005122831091284752, -0.0005886233411729336, -0.001390195800922811, -0.009056362323462963, -0.0074532171711325645, -0.014520714990794659, 0.01500286441296339, 0.011820681393146515, 0.008365281857550144, 0.03130752965807915, -0.015075186267495155, -0.002473021624609828, -0.0005760673666372895, -0.012182293459773064, -0.036707594990730286, -0.0017668745713308454, 0.015091258101165295, -0.006806334014981985, -0.007842954248189926, -1.710749347694218e-05, 0.001141085522249341, 0.01681092195212841, -0.004287106450647116, -0.025344956666231155, 0.018193082883954048, 0.009385830722749233, -0.014761789701879025, -0.015388582833111286, -0.02481459267437458, 0.007979562506079674, 0.003117895685136318, -0.012889444828033447, -0.001717655104584992, -0.018546657636761665, -0.0003854679234791547, -0.026807473972439766, -0.0037768324837088585, 0.003095797263085842, 0.010534951463341713, -0.0033449074253439903, -0.009506367146968842, -0.0001231739588547498, 0.0006267934804782271, 0.0016312701627612114, 0.00959476176649332, 0.013845707289874554, 0.006577313411980867, 0.0036382146645337343, -0.02312707155942917, 0.0023203410673886538, -0.021471694111824036, 0.008284923620522022, -0.006734011694788933, -0.005886233411729336, 0.011201923713088036, 0.0026297199074178934, 0.006022842135280371, 0.011708180420100689, 0.024862807244062424, -0.0021335084456950426, -0.03270576149225235, 0.0027944541070610285, 0.009514403529465199, -0.011796574108302593, 0.006267934571951628, -0.0017749103717505932, 0.004801398608833551, -0.008252780884504318, 0.015910910442471504, -0.0014735673321411014, -0.01390195731073618, 0.019928818568587303, -0.014110888354480267, 0.006251863203942776, 0.001287739141844213, -0.011668001301586628, -0.02573067508637905, 0.0009150782716460526, 0.011057279072701931, 0.014400177635252476, -0.02518424019217491, 0.008855466730892658, 0.0063201673328876495, -0.003103832947090268, 0.012415331788361073, -0.0007603888516314328, -0.010502808727324009, 0.009442080743610859, -0.02140740677714348, 0.008574212901294231, 0.007457234896719456, 0.03307540714740753, 0.012431403622031212, 0.016433238983154297, 0.007372858934104443, 0.007163927890360355, 0.0021596248261630535, -0.00859028473496437, 0.022275274619460106, -0.006625528447329998, 0.012431403622031212, -0.010462629608809948, -0.021696696057915688, -0.016473418101668358, 0.0008985043969005346, 0.0072081247344613075, -0.00889564584940672, -0.014994828030467033, -0.020780613645911217, -0.036964744329452515, -0.02016989141702652, -0.003867235267534852, 0.0014323837822303176, -0.014384106732904911, 0.031002169474959373, -0.0044598765671253204, -0.0027000333648175, -0.008172422647476196, 0.010374234989285469, -0.015059114433825016, -0.004793362691998482, 0.02192169986665249, 0.0038752711843699217, 0.005817929282784462, 0.019864531233906746, 0.004483983851969242, -0.02458958886563778, -0.018868090584874153, 0.0007176985964179039, 0.0107438825070858, 0.008268851786851883, 0.011973362416028976, 0.003268567146733403, -0.007441163528710604, 0.00700722960755229, 0.0009416969260200858, -0.00023642870655748993, -0.002014980185776949, 0.003845136845484376, 0.02298242785036564, 0.0035237043630331755, -0.020587755367159843, 0.035614725202322006, 0.027836058288812637, 0.0022982426453381777, -0.022789567708969116, -0.007232232019305229, -0.027064619585871696, -0.000107353444036562, -0.002971242181956768, -0.004395590163767338, -0.003993799444288015, 0.011515321210026741, -0.011378712020814419, -0.0009175894665531814, -0.018434155732393265, -0.0025433350820094347, 0.0019486848032101989, -0.007348751649260521, -0.016288593411445618, -0.007489378098398447, 0.020073462277650833, -0.0006062017055228353, -0.007304554805159569, -0.006954996846616268, 0.005657212808728218, 0.0013158645015209913, -0.009876014664769173, 0.0017256910214200616, 0.011756394989788532, 0.0015288135036826134, -0.003925494849681854, -0.017662718892097473, -0.013484095223248005, 0.002499138005077839, 0.009112612344324589, -0.014866255223751068, 0.010928706265985966, 0.004789344966411591, 0.0025935587473213673, 0.007220178376883268, 0.012262651696801186, 0.006910799536854029, -0.016095735132694244, -0.019414525479078293, -0.0133394505828619, 0.01081620529294014, 0.005789803806692362, -0.0001127525101765059, -0.026437826454639435, 0.024862807244062424, 0.007577772252261639, -0.01899666339159012, -3.650645157904364e-05, -0.016907351091504097, 0.01461714506149292, 0.023046713322401047, 0.013789456337690353, -0.006215701811015606, -0.003917458932846785, 0.0032263791654258966, -0.0017377446638420224, 0.014384106732904911, -0.00017503005801700056, 0.005122831091284752, -0.0004193690256215632, 0.0022922158241271973, -0.006267934571951628, 0.014126960188150406, 0.015629656612873077, 0.021182404831051826, 0.003133967285975814, 0.009683155454695225, -0.03113074228167534, 0.007481342647224665, -0.016208235174417496, 0.015581442974507809, 0.0040158978663384914, 0.008300995454192162, -0.018080580979585648, 0.0017528118332847953, 0.01991274580359459, 0.015018935315310955, 0.0077545600943267345, 0.0184180848300457, 0.015099293552339077, 0.011330497451126575, 0.019414525479078293, -0.017534146085381508, -0.009040290489792824, -0.013644811697304249, 0.0003025986079592258, -0.016320737078785896, -0.009201006963849068, -0.008799215778708458, 0.0004517633933573961, 0.001265640603378415, -0.01698770932853222, -0.012857302092015743, -0.0042429096065461636, -0.013323378749191761, -0.02499138005077839, 0.01295373123139143, -0.0013972270535305142, -0.0019617429934442043, -0.015444833785295486, 0.016714492812752724, -0.017051996663212776, -0.008144296705722809, 0.01308230496942997, 0.031596820801496506, 0.013564453460276127, -0.035132575780153275, -0.0019486848032101989, -0.01014119666069746, -0.011651929467916489, 0.010301913134753704, -0.008598320186138153, -0.010551023297011852, 0.006207665894180536, -0.0006855553365312517, 0.0020893116015940905, 0.004096256103366613, -0.005299618933349848, 0.007597861811518669, 0.0255056731402874, -0.00849385466426611, 0.00920904241502285, 0.0001386177900712937, -0.021359192207455635, -0.011909076012670994, 0.0017477894434705377, -0.009128684177994728, 0.011442998424172401, -0.011957290582358837, 0.032946836203336716, 0.005825964733958244, -0.022275274619460106, -0.002619675127789378, -0.01787164993584156, -0.010615309700369835, 0.021905627101659775, 0.007710363250225782, -0.00031942359055392444, -0.007107676938176155, 0.018884161487221718, 0.00474916584789753, 0.019977033138275146, 0.004660771694034338, 0.0214877650141716, 0.008421532809734344, 0.0008794193272478878, -0.012150149792432785, -0.014609109610319138, 0.00866260752081871, -0.008397425524890423, -0.012768907472491264, 0.018771661445498466, -0.01703592576086521, 0.016417168080806732, -0.03436113893985748, 0.016168057918548584, -0.0016483463114127517, 0.005118813365697861, -0.0025694514624774456, 0.00862242840230465, -0.003999826032668352, -0.011177816428244114, 0.0062639168463647366, 0.0202020350843668, 0.04011478275060654, -0.007774649653583765, -0.005287565290927887, -0.017952008172869682, 0.01556537114083767, -0.006472847890108824, 0.009048325940966606, 0.009626904502511024, -0.0038210293278098106, 0.008654571138322353, 0.009313507936894894, -0.008132243528962135, 0.01273676473647356, 0.01859487220644951, 0.0008497872622683644, 0.01673056371510029, 0.013050161302089691, 0.0107438825070858, 0.006746065337210894, -0.00728044705465436, -0.013476059772074223, 0.01361266802996397, 0.005741588771343231, -0.017373429611325264, -0.002810525707900524, 0.0008809260907582939, 0.0069469609297811985, -0.014134996570646763, 0.009514403529465199, 0.0046647898852825165, 0.0080237602815032, -0.0283503495156765, -0.013186770491302013, -0.027289623394608498, 0.019977033138275146, -0.0032745939679443836, -0.014255532994866371, -0.024075297638773918, 0.007541610859334469, -0.005580872762948275, 0.023914581164717674, 0.016537703573703766, 0.014978756196796894, 0.0033670058473944664, 0.017453787848353386, 0.020893115550279617, 0.0036603130865842104, 0.003804957726970315, -0.0012485645711421967, 0.004094247240573168, -0.0019798236899077892, 0.003415220882743597, -0.013508202508091927, 0.007409020327031612, 0.0032826298847794533, 0.00695097865536809, -0.01460107322782278, 0.0101010175421834, -0.013749277219176292, -0.010454593226313591, -0.012849265709519386, -0.010679596103727818, 0.021021688356995583, -0.004327285569161177, 0.014311783947050571, 0.00015230377903208137, -0.01048673689365387, -0.011049243621528149, 0.002615657402202487, -0.009000111371278763, -0.011957290582358837, 0.009176898747682571, 0.0041183545254170895, 0.01140281930565834, 0.010060838423669338, -0.022307418286800385, -0.027755700051784515, 0.008080010302364826, 0.004556306172162294, 0.005355869885534048, 0.009088505059480667, -0.01136264018714428, 0.012600155547261238, 0.023512789979577065, 0.026630686596035957, 0.015340368263423443, 0.01460107322782278, -0.017293071374297142, -0.025232454761862755, 0.005239350255578756, 0.011274246498942375, -0.013186770491302013, -0.0017307134112343192, 0.01922166533768177, 0.021102046594023705, -0.00013221424887888134, 0.015139472670853138, 0.026952119544148445, -0.010229590348899364, -0.013926064595580101, -0.005898287054151297, 0.016505561769008636, 0.017823435366153717, 0.01395820826292038, -0.007714380975812674, 0.017630575224757195, -0.013427844271063805, 0.013234985060989857, -0.0132831996306777, -0.00606703944504261, -0.007095623295754194, 0.005950519815087318, 0.014368034899234772, -0.0183055829256773, -0.0005695382715202868, 0.01721271313726902, -0.01904487796127796, -0.009980480186641216, 0.020877044647932053, -0.006525080651044846, 0.005918376613408327, -0.0013068241532891989, 0.011041208170354366, 0.015525192022323608, -0.010960849933326244, 0.00038571906043216586, 0.00048290216363966465, -0.0021515891421586275, -0.013604632578790188, 0.009980480186641216, 0.016015376895666122, 0.015902874991297722, 0.00926529336720705, -0.003889333689585328, -0.02108597569167614, 0.0007478328770957887, 0.004692915361374617, 0.010615309700369835, -0.00667776120826602, -0.004986222367733717, -0.006569277495145798, 0.0027060601860284805, 0.004688897170126438, 0.007224196568131447, 0.0029732510447502136, 0.007292500697076321, 0.0030254838056862354, -0.008654571138322353, -0.0028587407432496548, -0.008791180327534676, 0.01087245624512434, 0.011354604735970497, -0.0038371009286493063, -0.003117895685136318, 0.00955458264797926, -0.002300251740962267, -0.015758231282234192, 0.01450464315712452, -0.01043048594146967, 0.0071920533664524555, 0.017084140330553055, 0.01845022849738598, 0.009771549142897129, 0.011338532902300358, -0.009932265616953373, 0.026743188500404358, 0.0020451145246624947, 0.016634134575724602, -0.027723556384444237, 0.018771661445498466, 0.002778382506221533, -0.0002945627784356475, 0.016794851049780846, 0.01463321689516306, 0.012873372994363308, -0.028928928077220917, 0.006448740605264902, -0.005488460883498192, -0.0021817234810441732, -0.009458152577280998, 0.015742158517241478, -0.025087809190154076, 0.010462629608809948, -0.013604632578790188, 0.014368034899234772, 0.008373318240046501, -0.006215701811015606, -0.009329579770565033, 0.006408561486750841, 0.005564800929278135, 0.014400177635252476, -0.007481342647224665, -0.014697503298521042, 0.009233149699866772, -0.01658592000603676, -0.009514403529465199, -0.031195027753710747, -0.000601681531406939, 0.001210394431836903, -0.024348516017198563, -0.010326020419597626, 0.003415220882743597, -0.004753183573484421, 0.009578689932823181, -0.009715299122035503, -0.011097458191215992, -0.0325932614505291, -5.245251668384299e-05, -0.020668111741542816, 0.0021998039446771145, 0.03410399332642555, -0.004198712762445211, -0.005283547565340996, 0.0027361945249140263, 0.0020059400703758, 0.01718056946992874, -0.005179082043468952, -0.021102046594023705, 0.015051078982651234, -0.017051996663212776, -0.00023467086430173367, -0.009417973458766937, 0.0039355396293103695, 0.003817011369392276, -0.014914469793438911, -0.021310977637767792, 0.013178734108805656, 0.006034896243363619, -0.010735847055912018, -0.04410054534673691, -0.002091320464387536, 0.01521983090788126, -0.01454482227563858, 0.018064508214592934, 0.017952008172869682, 0.0015569388633593917, 0.004696933086961508, -0.003276603063568473, -0.016618061810731888, 0.002372574061155319, 0.002095338422805071, -0.018916305154561996, 0.0012134078424423933, 0.031741462647914886, 0.0014394151512533426, -0.000589125556871295, 0.02105383202433586, -0.011997469700872898, -0.012326938100159168, 0.03497185930609703, 0.0025031559634953737, -0.0064567760564386845, -0.002256054664030671, -0.019414525479078293, 0.0061795408837497234, -0.010984957218170166, 0.010719775222241879, 0.008043849840760231, -0.006071057170629501, -0.01421535387635231, 0.023769937455654144, -0.033268269151449203, 0.02352886274456978, 0.006617492530494928, 0.002979277865961194, -0.021471694111824036, -0.0022440010216087103, 0.008710822090506554, 0.0036643310450017452, -0.025296742096543312, -0.011467105709016323, -0.011234067380428314, -0.003921477124094963, -0.014737682417035103, -0.019559171050786972, 0.02367350645363331, 0.00507059833034873, -0.000994431902654469, -0.010301913134753704, 0.023882437497377396, -0.021760983392596245, -0.011346569284796715, -0.017694860696792603, 0.012857302092015743, 0.00030962994787842035, -0.01533233281224966, -0.01881987601518631, 0.02433244325220585, 0.01633680984377861, 0.013532309792935848, 0.0027904363814741373, -0.005725517403334379, -0.012447475455701351, 0.009771549142897129, -0.02960393764078617, -0.011298353783786297, 0.015693943947553635, 0.004455858841538429, 0.002880839165300131, -0.000726236670743674, -0.031195027753710747, -0.0019758057314902544, -0.007372858934104443, 0.0047210403718054295, 0.0040842024609446526, -0.005066580604761839, 0.005179082043468952, -0.00893582496792078, -0.02949143573641777, 0.024621732532978058, 0.00979565642774105, 0.05975430831313133, -0.008783143945038319, 0.02192169986665249, -0.009128684177994728, -0.0067018684931099415, -0.021037759259343147, -0.005576854571700096, 0.0076460768468678, -0.020378822460770607, -0.0036120982840657234, 2.134512897100649e-06, -0.01910916529595852, 0.016618061810731888, 0.010301913134753704, 0.00860635656863451, 0.009353687055408955, 0.011193888261914253, -0.021953843533992767, -0.020957401022315025, 0.019269881770014763, 0.0002601594605948776, -0.006926871370524168, -0.01698770932853222, -0.010792098008096218, 0.02240384742617607, 0.008694750256836414, -0.005673284642398357, -0.004504073411226273, 0.014440356753766537, -0.001067758770659566, -0.0017447760328650475, -0.014512679539620876, 0.0014464464038610458, 0.012318902648985386, 0.005520604085177183, 0.0006544165662489831, -0.005114795174449682, 0.015541263855993748, -0.0018512505339458585, 0.0009879028657451272, -0.015838589519262314, -0.003387095406651497, 0.007376877125352621, -0.002388645661994815, -0.017775218933820724, 0.005886233411729336, 0.029041429981589317, -0.00126965856179595, -0.015420726500451565, 0.009699227288365364, -0.004335321485996246, 0.006219719536602497, -0.01549304835498333, 0.012230508029460907, 0.02708069235086441, 0.010068874806165695, 0.007625987287610769, -0.010390306822955608, -0.035132575780153275, -0.003949602600187063, -0.0013399719027802348, -0.012809086591005325, 0.017228784039616585, 0.01684306561946869, -0.002485075267031789, -0.00600275257602334, 0.009707262739539146, 0.003953620325773954, -0.0032806210219860077, -0.00601078849285841, 0.0233842171728611, -0.010438522323966026, -0.015195723623037338, -0.014134996570646763, -0.0077384887263178825, -0.02791641652584076, -0.017710933461785316, -0.021391335874795914, -0.014528751373291016, 0.0025995858013629913, 0.0033147730864584446, -0.020378822460770607, 0.01428767666220665, -0.006653653457760811, -0.02871999703347683, -0.01417517475783825, 0.0021777055226266384, -0.017132354900240898, 0.011386747471988201, 0.00237056496553123, -0.023689579218626022, 0.0053076548501849174, 0.0021214548032730818, 0.005219261161983013, -0.0017568297917023301, -0.0009251230512745678, -0.0009522439213469625, -0.0004886779352091253, 0.0020672129467129707, -0.006364364176988602, 0.009016183204948902, 0.01421535387635231, 0.007955455221235752, -0.013034089468419552, -0.0014775851741433144, -0.01637698896229267, -0.0267914030700922, -0.005500514525920153, -0.021584196016192436, 0.004455858841538429, -0.01043048594146967, 0.0074692885391414165, -0.01899666339159012, 0.014954648911952972, 0.01533233281224966, 0.0011270229006186128, 0.020925259217619896, 0.024348516017198563, 0.007806792855262756, -0.0011832735035568476, -0.012230508029460907, 0.010342092253267765, 0.03215932473540306, 0.001731717842631042, 0.019864531233906746, 0.01521983090788126, 0.02163241058588028, 0.0032384328078478575, 0.01300998218357563, 0.013548381626605988, 0.00301543902605772, -0.02426815778017044, -0.005926412530243397, 0.024750305339694023, -0.01746985875070095, -0.0033187910448759794, 0.01988060213625431, 0.022741353139281273, -0.0016151985619217157, -0.0040842024609446526, -0.020748469978570938, 0.05473996326327324, 0.01080013345927, 0.003931521903723478, 0.006428651046007872, 0.00760187953710556, -0.029250361025333405, 0.02309492789208889, 0.006083110813051462, 0.01615198515355587, -0.003055618144571781, 0.008300995454192162, -0.013693026266992092, 0.022387776523828506, -0.010229590348899364, -0.02160026691854, -0.01209389977157116, 0.021793127059936523, -0.019398454576730728, -0.009080469608306885, -0.023159215226769447, -0.013090340420603752, -0.001376133062876761, 0.009699227288365364, 0.005030419211834669, -0.002304269466549158, -0.007915276102721691, 0.021439550444483757, 0.002880839165300131, 0.0005650181556120515, -0.001533835893496871, 0.009980480186641216, -0.005789803806692362, 0.003855181625112891, -0.009723334573209286, 0.023287788033485413, 0.0101010175421834, 0.0011069333413615823, -0.002663872204720974, -0.007425091695040464, -0.0066054388880729675, 0.010952813550829887, 0.013805528171360493, 0.012415331788361073, -0.01107335090637207, -0.0027643197681754827, -0.0010617318330332637, 0.005649176891893148, -0.022114558145403862, 0.005388013087213039, 0.016826992854475975, 0.03529329225420952, -0.018032366409897804, -0.016248414292931557, -0.00479738088324666, 0.017598431557416916, 0.0013158645015209913, -0.0035578564275056124, -0.020443109795451164, 0.01698770932853222, -0.0032424507662653923, 0.014625180512666702, 0.0033328537829220295, 0.012576048262417316], "ee00678d-0531-43a6-b4ee-24d47f7b854c": [0.005084749776870012, -0.007562670391052961, -0.016758190467953682, 0.026598256081342697, -0.020697081461548805, -0.032828863710165024, 0.01949392817914486, 0.021112455055117607, -0.018290776759386063, 0.04125092923641205, 0.00845787301659584, 0.03749823942780495, -0.005743619054555893, -0.020611140877008438, 0.015941765159368515, 0.010477449744939804, -0.014681320637464523, 0.0004326065827626735, 0.01286943070590496, -0.006631659809499979, 0.04116499051451683, -0.02497972920536995, -0.05199335888028145, 0.042568668723106384, -0.01294820848852396, 0.00034845754271373153, -0.01999524235725403, 0.0028521150816231966, -0.04887089133262634, 0.012167591601610184, 0.0444306880235672, 0.006774892099201679, -0.00765577144920826, -0.010728105902671814, -0.0030311555601656437, -0.0034536910243332386, 0.019193140789866447, -0.007215331774204969, -0.016027703881263733, -0.029649104923009872, -0.048441193997859955, 0.05170689523220062, 0.002660541795194149, -0.02582480013370514, -0.036810725927352905, 0.044058285653591156, 0.014323239214718342, 0.015526391565799713, -0.014939138665795326, -0.018405362963676453, 0.034662239253520966, 0.003792077535763383, 0.009002155624330044, 0.006789215374737978, 0.019365020096302032, -0.04468850791454315, -0.0020142055582255125, 0.015010754577815533, -0.006098119076341391, -0.06972552835941315, 0.021785646677017212, -0.00529601750895381, 0.012088813818991184, -0.005274532828480005, -0.006295063532888889, -0.010219630785286427, -0.0058403005823493, -0.0064132302068173885, -0.03675343096256256, 0.019579868763685226, -0.015497745014727116, 0.010699459351599216, -0.010062075220048428, 0.015340189449489117, 0.007813327014446259, -0.02777276001870632, 0.03709718957543373, 0.016328493133187294, -0.008815953508019447, 0.025309164077043533, -0.04251137375831604, 0.010198146104812622, 0.013334935531020164, -0.009990459308028221, 0.0934448093175888, -7.698740955675021e-05, -0.013170218095183372, -0.022688010707497597, -0.026540962979197502, -0.022086434066295624, 0.0029595394153147936, -0.015139663591980934, 0.027944639325141907, 0.0043220375664532185, -0.03701125085353851, 0.01179518736898899, 0.0068930587731301785, 0.03729771450161934, 0.02413465827703476, -0.0551731176674366, -0.016930067911744118, 0.012346631847321987, 0.005281694699078798, 0.015340189449489117, 0.05425643175840378, 0.032599691301584244, 0.007405114825814962, -0.009875873103737831, -0.024965405464172363, 0.0166865736246109, 0.017016008496284485, -0.019708776846528053, 0.03231322765350342, -0.04904277250170708, -0.022186698392033577, -0.04127957671880722, -0.005793750286102295, 0.0010223211720585823, -0.017660554498434067, -0.004644310101866722, 0.05709243193268776, 0.024263568222522736, -0.010248277336359024, 0.03176894411444664, -0.015784209594130516, -0.00898067094385624, -0.016314169391989708, 0.015182633884251118, 0.016299845650792122, 0.0177321694791317, -0.00019459462782833725, -0.0014180006692185998, 0.021613767370581627, -0.007820488885045052, 0.02502269856631756, -0.0011557063553482294, -0.014666996896266937, 0.029104821383953094, -0.014287430793046951, 0.04351400211453438, -0.011172126978635788, -0.041193634271621704, -0.0035414209123700857, -0.02159944549202919, 0.020697081461548805, -0.011651955544948578, -0.0008294050930999219, 0.04308430477976799, -0.01379327941685915, 0.07035575062036514, -0.08433523029088974, -0.026197204366326332, 0.014939138665795326, 0.002970281755551696, -0.006936028599739075, -0.016829805448651314, -0.0036005042493343353, 0.016013382002711296, 0.013098602183163166, -0.011651955544948578, 0.04062070697546005, -0.032485105097293854, 0.003283602651208639, 0.02877538837492466, 0.007297690492123365, -0.011193611659109592, 0.03027932718396187, 0.032857511192560196, -0.02455003187060356, 0.03360231965780258, 0.017789462581276894, -0.014000966213643551, 0.0034644335974007845, 0.018233483657240868, -0.021069485694169998, 0.02785870060324669, 0.02102651447057724, 0.019250433892011642, 0.02251613140106201, -0.015397482551634312, -0.03830034285783768, -0.008271670900285244, -0.026770133525133133, 0.0035342592746019363, 0.032628338783979416, 0.012876591645181179, -0.015297219157218933, 0.021398918703198433, -0.01195274293422699, -0.011179287917912006, 0.0015433289809152484, -0.017947018146514893, -0.0019407989457249641, 0.02655528485774994, -0.013807602226734161, 0.00861542858183384, 0.0027912412770092487, -0.010685136541724205, -0.008515166118741035, 0.03434712812304497, -0.03440441936254501, -0.04718074947595596, -0.03603726997971535, 0.02086895890533924, -0.04761044681072235, 0.007322756107896566, -0.020926252007484436, -0.007312013767659664, 0.020281706005334854, -0.027915993705391884, 0.03302938863635063, -0.025495365262031555, -0.009904519654810429, -0.014602542854845524, 0.01856291852891445, 0.006789215374737978, -0.030479853972792625, 0.037039898335933685, 0.015898795798420906, -0.04872766137123108, -0.012747682631015778, 0.009847226552665234, -0.04271189868450165, -0.03795658424496651, -0.036352381110191345, -0.009983297437429428, -0.0031385798938572407, -0.013127248734235764, -0.043027009814977646, -0.0281594879925251, 0.03752688691020012, -0.015068047679960728, -0.0015988316154107451, -0.01965148374438286, -0.009961812756955624, 0.026569608598947525, 0.02048223279416561, -0.0052029164507985115, 0.0018673923332244158, -5.0970589654752985e-05, 0.021198393777012825, 0.07625692337751389, 0.003614827524870634, -0.0035861809737980366, 0.003086657961830497, -0.0023973521310836077, 0.00371688068844378, 0.04024830088019371, 0.004171643406152725, -0.022473162040114403, -0.0288899727165699, 0.03088090382516384, 0.0033802844118326902, -0.022859890013933182, -0.03208405524492264, 0.029935570433735847, 0.02770114503800869, 0.0024582259356975555, -0.023647667840123177, 0.0013893542345613241, 0.0274290032684803, 0.01519695669412613, -0.006642402149736881, 0.02260207198560238, 0.01798998937010765, 0.023661991581320763, 0.005707810632884502, -0.029992863535881042, 0.03709718957543373, 0.021585121750831604, -0.006692533381283283, -0.024306537583470345, 0.004934356082230806, -0.0023454304318875074, 0.022845566272735596, -0.020654110237956047, 0.029649104923009872, 0.007534023839980364, 0.02896158955991268, 0.00982574187219143, -0.015111017040908337, 0.035005997866392136, -0.0010930421994999051, 0.040191009640693665, 0.0345190055668354, -0.03162571042776108, 0.0027697563637048006, -0.02916211448609829, -0.06514209508895874, -0.027185508981347084, 0.0018620210466906428, -0.006058730185031891, 0.01492481492459774, 0.018405362963676453, 0.012253531254827976, 0.014824552461504936, -0.008565297350287437, -0.008235862478613853, -0.0007166095892898738, 0.016486048698425293, -0.007362144999206066, 0.003134998958557844, 0.017818110063672066, -0.03603726997971535, 0.016428755596280098, -0.02950587309896946, 0.04254002124071121, 0.004604921210557222, -0.043227534741163254, 0.03915973752737045, 0.027113892138004303, 0.008665559813380241, 0.0023812386207282543, 0.01807592809200287, -0.008593943901360035, -0.025352133437991142, 0.02041061595082283, -0.01187396515160799, -0.007286948151886463, -0.019049908965826035, 0.026340436190366745, -0.028245428577065468, -0.05099073052406311, 0.010477449744939804, 0.01929340325295925, -0.043112948536872864, 0.0025298420805484056, 0.008722852915525436, -0.007215331774204969, -0.014953461475670338, -0.017832431942224503, -0.010427318513393402, -0.0406779982149601, 0.02785870060324669, -0.000399484095396474, -0.037813350558280945, -0.020167121663689613, -0.04514684900641441, -0.013814764097332954, -0.006828604266047478, -0.017975665628910065, -0.02724280022084713, 0.016586311161518097, 0.008801630698144436, 0.015053724870085716, 0.013034148141741753, 0.016829805448651314, 0.006287902127951384, -0.026927689090371132, -0.010105045512318611, 0.0008593943784944713, -0.03179759159684181, 0.018892353400588036, 0.018047280609607697, 0.006087376736104488, -0.0014251623069867492, -0.0064382958225905895, 0.033745553344488144, 0.0019211045000702143, -0.010498934425413609, 0.0002683369384612888, -0.027300093322992325, 0.003353428328409791, -0.01638578623533249, 0.016657928004860878, 0.008550973609089851, -0.009288620203733444, -0.01814754493534565, 0.020496554672718048, -0.0036882341373711824, -0.0039746989496052265, 0.032628338783979416, 0.017331119626760483, -0.010355701670050621, -0.03417525067925453, -0.0028342108707875013, 0.03678207844495773, -0.017288150265812874, -0.01844833232462406, 0.023891163989901543, -0.004894967190921307, 0.005245886277407408, 0.042912423610687256, -0.0025513269938528538, 0.03196946904063225, 0.041308220475912094, -0.0011315358569845557, 0.004866320639848709, 0.015741240233182907, -0.014910492114722729, -0.0284745991230011, -0.007354983128607273, -0.02854621596634388, 0.0214848592877388, -0.03812846168875694, 0.04454527422785759, 0.00632012914866209, 0.0020249478984624147, 0.013585592620074749, -0.026770133525133133, -0.007233235985040665, -0.01703033223748207, -5.5866228649392724e-05, 0.007584155071526766, 0.005944144446402788, -0.03423254191875458, -0.0031940822955220938, -0.03065173141658306, 0.01906423084437847, -0.014373370446264744, 0.0013132620370015502, 0.014824552461504936, -0.0016382205067202449, -0.019006937742233276, 0.01314157247543335, -0.016973039135336876, -0.025724537670612335, 0.032857511192560196, -0.06686088442802429, -0.04377181828022003, 0.033315856009721756, 0.04454527422785759, -0.004350684117525816, -0.00938172172755003, 0.005478639155626297, 0.016213906928896904, 0.030021509155631065, -0.008235862478613853, 0.003989022225141525, -0.021355949342250824, -0.02788734622299671, 0.017889725044369698, 0.008801630698144436, -0.028345691040158272, 0.00455478997901082, -0.01968013122677803, 0.004758896306157112, -0.0030902388971298933, 0.00015184871153905988, -0.010613520629703999, 0.02658393234014511, -0.005227982532233, 0.003645264310762286, 0.04546196013689041, -0.011566015891730785, -0.019737424328923225, -0.03592268377542496, 0.010198146104812622, 0.015254249796271324, -0.0010518628405407071, -0.005396280437707901, 0.020324677228927612, -0.04216761514544487, -0.004175224341452122, 0.02121271751821041, -0.012826460413634777, -0.009918843396008015, -0.013270481489598751, 0.04680834710597992, -0.035005997866392136, -0.02593938633799553, 0.023533081635832787, 0.029291024431586266, -0.0029595394153147936, -0.005621871445327997, -0.03715448081493378, -0.02022441290318966, 0.02404871955513954, 0.0033158299047499895, 0.026068296283483505, -0.02397710271179676, 0.01254715770483017, -0.038730040192604065, 0.01937934197485447, 0.010155176743865013, -0.028331367298960686, -0.0270136296749115, -0.02907617576420307, -0.014115552417933941, 0.023833870887756348, -0.05766536295413971, -0.002911198418587446, -0.017388412728905678, 0.009424691088497639, -0.04107905179262161, 0.025065667927265167, -0.0012488074135035276, -0.021384596824645996, 0.02240154705941677, -0.011007409542798996, 0.014824552461504936, 0.023303911089897156, 0.04457392171025276, 0.006860831752419472, 0.01657198742032051, -0.02666987106204033, -0.05460018664598465, -0.03615185618400574, 0.013399390503764153, -0.07654339075088501, 0.02616855874657631, -0.027300093322992325, -0.003262117737904191, 0.020167121663689613, -0.020353322848677635, -0.005199335981160402, -0.008300317451357841, -0.009804257191717625, 0.020381970331072807, -0.027500620111823082, -0.055459581315517426, 0.07430896162986755, -0.0400477759540081, 0.008923377841711044, -0.0029595394153147936, 0.03569351136684418, -0.025380779057741165, -0.014530926011502743, 0.02528051659464836, 0.005929821170866489, 0.015612331219017506, 0.006588689982891083, 0.013843410648405552, 0.024148982018232346, -0.041508749127388, -0.04884224757552147, 0.012174753472208977, -0.015139663591980934, 0.053196512162685394, -0.011365490034222603, -0.01903558522462845, -0.010763914324343204, -0.0021610187832266092, 0.0063881645910441875, 0.004275486804544926, 0.01688709855079651, -0.0009623426594771445, 0.0036273603327572346, 0.014724289998412132, 0.04139416292309761, -0.014967785216867924, 0.018290776759386063, -0.013585592620074749, 0.005603967234492302, -0.0036434740759432316, 0.008493680506944656, -0.024077365174889565, 0.015111017040908337, 0.03345908597111702, 0.018792089074850082, -0.010957278311252594, 0.01940798945724964, 0.010219630785286427, -0.01910720206797123, -0.012289339676499367, -0.03440441936254501, 0.052193883806467056, -0.031511127948760986, 0.010269762948155403, -0.03423254191875458, 0.00478754285722971, 0.020038211718201637, 0.010950116440653801, 0.009582246653735638, -0.009116741828620434, 0.004053476732224226, -0.028488922864198685, -0.0022021981421858072, -0.009990459308028221, 0.011451429687440395, 0.0012040473520755768, 0.027801407501101494, 0.05144907534122467, -0.008085468783974648, -0.0177321694791317, 0.035321108996868134, -0.011608985252678394, 0.0016364300390705466, -0.02754358947277069, 0.010441641323268414, 0.014545249752700329, -0.01703033223748207, -0.009933166205883026, -0.012819299474358559, -0.00949630793184042, -0.014015289954841137, -0.025581305846571922, -0.026082618162035942, -0.03065173141658306, 0.019121523946523666, -0.02394845522940159, 0.022358575835824013, -0.00805682223290205, 0.004486754536628723, -0.004279067739844322, 0.0514204278588295, -0.0020195767283439636, 0.018978292122483253, 0.016557663679122925, 0.025839123874902725, -0.0032137767411768436, 0.036123208701610565, 0.016199583187699318, -0.015626654028892517, -0.011064702644944191, 0.0275865588337183, 0.015368836000561714, 0.035664863884449005, -0.0017904049018397927, 0.013628561981022358, -0.002384819323197007, 0.006151831243187189, 0.023346880450844765, -0.0010930421994999051, 0.03618050366640091, 0.02394845522940159, 0.028001932427287102, 0.05107667297124863, -0.003910244442522526, 0.018290776759386063, 0.0067677306942641735, -0.010606358759105206, 0.04400099068880081, -0.00633087195456028, 0.03560757264494896, 0.043800465762615204, -0.018620211631059647, 0.0366102010011673, -0.018548594787716866, 0.03153977170586586, -0.0019479605834931135, -0.004561951849609613, 0.0113153588026762, -0.022043464705348015, 0.04236814007163048, -0.010849853977560997, -0.006384584121406078, 0.03870139271020889, -0.04159468784928322, -0.0233612023293972, -0.055001240223646164, -0.018906675279140472, 0.031597066670656204, 0.03088090382516384, -0.010957278311252594, -0.02735738642513752, -0.006961094215512276, 0.01718788780272007, 0.018462656065821648, 0.03724042326211929, -0.011773702688515186, 0.010620681568980217, 0.036123208701610565, 0.034891411662101746, 0.027958963066339493, -0.031826239079236984, -0.01572691649198532, 0.014631188474595547, 0.02962045930325985, 0.0031636455096304417, 0.005439250264316797, -0.015397482551634312, 0.010928631760179996, 0.012762006372213364, 0.018276453018188477, 0.011365490034222603, 0.0108212074264884, 0.008128438144922256, -0.0016319541027769446, 0.0004860949411522597, 0.023891163989901543, 0.00023722865444142371, 0.023303911089897156, -0.0064955889247357845, 0.006090957671403885, 0.00830747839063406, -0.014767259359359741, -0.0010796141577884555, -0.007870620116591454, -0.007548347115516663, -0.0019425892969593406, -0.006019341293722391, -0.01162330899387598, 0.019365020096302032, 0.004640729632228613, -0.014509441331028938, 0.0068429275415837765, -0.004920032806694508, -0.028918620198965073, 0.037039898335933685, 0.009503468871116638, 0.007884942926466465, -0.020897606387734413, 0.011530207470059395, 0.02466461807489395, 0.010771076194941998, -0.019250433892011642, -0.01415852177888155, 0.011444267816841602, -0.01604202762246132, -0.017947018146514893, -0.024148982018232346, -0.006631659809499979, -0.028646478429436684, 0.004805446602404118, 0.030136095359921455, -0.026369083672761917, -0.05130584165453911, -0.004801866132766008, -0.0340033695101738, 0.03088090382516384, 0.007261882070451975, 0.008006691001355648, 0.010269762948155403, 0.01952257566154003, -0.006864412222057581, -0.019422313198447227, 0.01979471743106842, 0.004597759805619717, 0.028374336659908295, 0.005618290510028601, 0.015755563974380493, -0.008207215927541256, -0.038844626396894455, -0.03529246151447296, 0.014265946112573147, 0.027987608686089516, -0.003353428328409791, -0.03099549002945423, 0.0035808098036795855, 0.022960152477025986, 0.017789462581276894, -0.028531892225146294, 0.02881835773587227, -0.0030651732813566923, 0.006542139686644077, -0.04056341201066971, 0.03380284458398819, 0.03910244256258011, -0.021384596824645996, -0.004382911138236523, -0.01271903607994318, 0.05176418647170067, 0.007362144999206066, 0.014222976751625538, 0.007491054013371468, 0.04262595996260643, 0.006667467765510082, 0.013041309081017971, -0.0016570197185501456, 0.03426118940114975, 0.0012747682631015778, 0.04614947736263275, 0.0270136296749115, -0.01867750473320484, -0.003953213803470135, 0.028130842372775078, 0.00044245380559004843, 0.019479606300592422, 0.043112948536872864, 0.00445094658061862, 0.009037964046001434, 0.015368836000561714, -0.0069503518752753735, 0.022301282733678818, 0.030250681564211845, -0.0007662933203391731, 0.03526381403207779, 0.027686821296811104, -0.0002696797309909016, 0.04689428582787514, -0.02198617160320282, -0.01043447945266962, 0.04927194118499756, -0.04251137375831604, -0.019307726994156837, 0.011630469933152199, -7.821831241017208e-05, -0.016758190467953682, -0.009754125960171223, 0.001209418522194028, -0.027873024344444275, 0.004694441799074411, 0.0036989764776080847, 0.010892823338508606, -0.01258296612650156, 0.026755811646580696, 0.0036918148398399353, -0.012812137603759766, 0.012074491009116173, -0.018362393602728844, -0.010420156642794609, -0.0049379365518689156, 0.015612331219017506, 0.01952257566154003, -0.014129875227808952, 0.007004064042121172, -0.024836497381329536, 0.00629148306325078, 0.00017366927932016551, -0.005682745017111301, -0.03967537358403206, 0.03638102859258652, 0.02260207198560238, -0.020052535459399223, -0.013248995877802372, 0.0017635488184168935, -0.0168441291898489, -0.024607324972748756, 0.03615185618400574, 0.001785928849130869, -0.01945095881819725, -0.033516380935907364, 0.014609703794121742, -0.01677251234650612, -0.0056648412719368935, 0.029591811820864677, 0.04299836605787277, -0.016256876289844513, 0.029706398025155067, -0.026340436190366745, 0.013721663504838943, 0.021069485694169998, 0.023490112274885178, 0.001908571575768292, -0.02658393234014511, 0.014323239214718342, -0.013778956606984138, 0.005933401640504599, 0.016056351363658905, 0.009639539755880833, -0.008622590452432632, -0.01398664340376854, 0.05144907534122467, 0.030451206490397453, 0.022845566272735596, -0.023805223405361176, -0.003154693404212594, -0.053311098366975784, 0.007129392120987177, -0.02417762763798237, -0.0359799787402153, -0.009181196801364422, -0.0018459074199199677, -0.0012479121796786785, -0.006477685179561377, 0.007892104797065258, 0.01723085716366768, 0.04185250401496887, 0.022158050909638405, 0.024421123787760735, -0.004418719094246626, 0.02489379048347473, 0.0006960199098102748, -0.009517792612314224, -0.007820488885045052, -0.0014269526582211256, 0.015626654028892517, 0.01703033223748207, 0.01398664340376854, -0.0014000966912135482, -0.02370496094226837, -0.02447841502726078, -0.03096684254705906, 0.0032281000167131424, -0.024492738768458366, -0.014939138665795326, -0.010799722746014595, 0.010455965064466, -0.009453337639570236, -0.019164493307471275, 0.021284334361553192, 0.013950834982097149, 0.0025244709104299545, -0.007018387317657471, -0.025839123874902725, -0.013370743952691555, 9.75211150944233e-05, -0.023490112274885178, -0.005818815901875496, 0.02198617160320282, -0.0007833021227270365, -0.023346880450844765, 0.018348069861531258, -0.03767012059688568, 0.022530455142259598, 0.01459538098424673, -0.02228696085512638, -0.0008441759273409843, 0.009123903699219227, -0.015053724870085716, 0.0006145564839243889, 0.008751499466598034, -0.006667467765510082, -0.0064955889247357845, 0.007354983128607273, 0.009252812713384628, -0.004483174066990614, 0.02443544566631317, -0.026641225442290306, -0.001501254504546523, -0.01945095881819725, -0.05752212926745415, 0.029176438227295876, 0.03549298644065857, -0.029362641274929047, 0.003041897900402546, 0.0019945111125707626, -0.0004686384927481413, 0.017975665628910065, 0.00997613649815321, 0.001894248416647315, -0.01880641281604767, -0.04113634303212166, 0.033201269805431366, 0.01714491657912731, -0.004551209043711424, -0.007619963493198156, -0.01581285521388054, -0.0025101476348936558, -0.017975665628910065, 0.01544045191258192, 0.017245180904865265, 0.017889725044369698, -0.0019121523946523666, 0.006574366707354784, -0.034318480640649796, -0.004390073008835316, 0.03111007623374462, 0.03801387548446655, -0.02404871955513954, 0.009052286855876446, 0.02601100318133831, -0.008465033955872059, 0.012439733371138573, -0.017374088987708092, 0.011530207470059395, -0.00430771429091692, -0.05617574602365494, -0.013929350301623344, 0.004837674088776112, 0.005872528068721294, 0.03188353031873703, -0.0166865736246109, -0.004816189408302307, -0.005793750286102295, -0.023547405377030373, 0.022501809522509575, 0.0021860843989998102, -0.007476730737835169, 0.006739084143191576, 0.023805223405361176, 0.030107449740171432, -0.01776081696152687, 0.014967785216867924, 0.023661991581320763, -0.008178569376468658, 0.02532348781824112, 0.01906423084437847, -0.0161136444658041, -0.004092865623533726, -0.016872776672244072, 0.005818815901875496, 0.015254249796271324, -0.0170016847550869, 0.0019694454967975616, 0.005836720112711191, 0.0018405362498015165, -0.024220596998929977, -0.017101947218179703, -0.005629032850265503, -0.018004311248660088, 0.009503468871116638, -0.01826212927699089, 0.001214789692312479, -0.018118897452950478, -0.015827178955078125, -0.035206522792577744, -0.006187639199197292, 0.022501809522509575, 0.0064203920774161816, -0.008815953508019447, 0.0005693487473763525, -0.007029129657894373, -0.022387223318219185, -1.942869130289182e-05, -0.024492738768458366, 0.009546439163386822, -0.00012062853056704625, 0.009037964046001434, 0.003118885448202491, -0.04001913219690323, -0.005546674598008394, -0.010484610684216022, -0.006846508476883173, -0.004579855594784021, -0.014072582125663757, -0.02171402983367443, 0.016529018059372902, -0.03428983315825462, -0.0025047764647752047, -0.0040498957969248295, -0.04993081092834473, 0.03265698626637459, 0.02724280022084713, 0.0014126294991001487, 0.0029899762012064457, -0.022501809522509575, -0.0011252694530412555, 0.007154458202421665, -0.0336882583796978, 0.005349729675799608, 0.029104821383953094, 0.004171643406152725, 0.011608985252678394, 0.01367869321256876, 0.02018144354224205, -0.016213906928896904, 0.01937934197485447, 0.03414660319685936, 0.012124622240662575, -0.012224884703755379, 0.0010178452357649803, -0.02210075780749321, -0.005124138668179512, -0.008185731247067451, -0.013664370402693748, -0.022315606474876404, 0.003553953720256686, 0.022845566272735596, -0.020009566098451614, -0.024922436103224754, -0.004236097913235426, -0.01956554502248764, 0.0032997161615639925, -0.021885909140110016, -0.015025078319013119, -0.05735025182366371, 0.002032109536230564, -0.004221774637699127, 0.01826212927699089, -0.008737175725400448, -0.023891163989901543, -0.002209359547123313, 0.013334935531020164, -0.01615661382675171, 0.00027482715086080134, -0.015053724870085716, 0.007347821723669767, -0.01826212927699089, 0.011100510135293007, -0.002485082019120455, 0.020081181079149246, -0.01645740121603012, -0.023533081635832787, -0.00743376137688756, 0.01764623075723648, -0.01107186358422041, 0.02002388797700405, 0.007877781987190247, -0.006699695251882076, -0.01492481492459774, 0.030823610723018646, -0.01223920751363039, 0.009961812756955624, -0.009030802175402641, -0.0041823857463896275, 0.0037383653689175844, 0.013564107939600945, -0.007061357144266367, 0.014853199012577534, 0.015340189449489117, 0.004622825421392918, 0.0041895476169884205, 0.010312732309103012, -0.007505377288907766, 0.023719284683465958, 0.004816189408302307, 0.020281706005334854, 0.004092865623533726, -0.006807119585573673, 0.016443079337477684, -0.01814754493534565, -0.0033856555819511414, -0.025695892050862312, 0.006821442861109972, -0.01807592809200287, 0.024994052946567535, 0.008013851940631866, 0.005288856104016304, -0.012189076282083988, 0.009431852959096432, 0.017245180904865265, 0.007222493179142475, -0.012203400023281574, 0.005661260336637497, 0.009281459264457226, 0.036581553518772125, 0.019665807485580444, 0.014652674086391926, 0.0029326833318918943, -0.02240154705941677, -0.00330866826698184, 0.032828863710165024, 0.020281706005334854, 0.008493680506944656, 0.0033050875645130873, 0.008658397942781448, -0.019866332411766052, 0.02678445726633072, 0.021169748157262802, 0.01703033223748207, -0.0023096222430467606, 0.0284745991230011, 0.01979471743106842, 0.00018015949171967804, 0.0006718494696542621, -0.02655528485774994, -0.0040498957969248295, 0.021785646677017212, 0.007376468274742365, -0.009152550250291824, -0.03449036180973053, -0.003777754260227084, -0.015612331219017506, 0.030680378898978233, 0.001751016010530293, 0.03428983315825462, 0.011114833876490593, -0.003281812183558941, 0.01005491428077221, -0.015970412641763687, 0.04500361904501915, -0.005170689430087805, 0.006173315923660994, -0.02482217364013195, 0.017431382089853287, -0.004655052907764912, 0.0030651732813566923, 0.024120334535837173, -0.011515884660184383, -0.011931258253753185, 0.004221774637699127, -0.0021520666778087616, 0.01922178640961647, -0.008801630698144436, -0.026526639237999916, -0.007634286303073168, -0.014910492114722729, -0.04282648488879204, 0.029262376949191093, -0.0006539453752338886, 0.0015504906186833978, -0.015182633884251118, -0.012131784111261368, -0.0028467439115047455, -0.009374559856951237, -0.008758660405874252, 0.008414902724325657, 0.0038314664270728827, -0.012454056181013584, -0.03142518550157547, -0.00019593743490986526, -0.010448803193867207, -0.013642885722219944, 0.013585592620074749, 0.028188135474920273, -0.02393413335084915, -0.0275865588337183, -0.014824552461504936, 0.004844835493713617, -0.016213906928896904, -0.002425998682156205, 0.018906675279140472, -0.0281594879925251, 0.03870139271020889, -0.030823610723018646, -0.009560761973261833, 0.003199453465640545, -0.02152782864868641, -0.00870852917432785, -0.005779427010565996, 0.0027840796392410994, 0.014323239214718342, -0.023690637201070786, 0.009317266754806042, -0.0035396304447203875, 0.007856296375393867, -0.02324661798775196, 0.0006181373028084636, -0.007584155071526766, -0.023533081635832787, -0.01703033223748207, -0.013227511197328568, -0.031167369335889816, 0.007491054013371468, -0.011365490034222603, -0.03165435791015625, 0.020424939692020416, 0.027529265731573105, -0.00011536921374499798, -0.0028915039729326963, 0.008966348133981228, 0.001246121828444302, -0.0050202952697873116, -0.01114348042756319, 0.00947482232004404, -0.0065457201562821865, 0.02639772929251194, 0.020439261570572853, -0.02317500114440918, 0.0033158299047499895, -0.004626406356692314, -0.010198146104812622, -0.008092629723250866, 0.04021965712308884, 0.0033516380935907364, -3.343021671753377e-05, 0.005933401640504599, 0.001924685318954289, -0.008465033955872059, 0.017545968294143677, -0.007806165609508753, -0.00941753014922142, 0.021012192592024803, -0.01162330899387598, 0.00957508571445942, -0.015583684667944908, 0.013642885722219944, -0.0014269526582211256, -0.007662932854145765, 0.02907617576420307, -0.017216533422470093, 0.0374409481883049, -0.005568159278482199, -0.028832681477069855, 0.0057364571839571, -0.011730733327567577, 0.00017959998513106257, 0.02347578853368759, -0.020009566098451614, -0.002189665101468563, -0.017016008496284485, -0.031511127948760986, 0.011859642341732979, 0.012246369384229183, -0.009503468871116638, -0.0005509970942512155, -0.001964074093848467, 0.016486048698425293, 0.0019766069017350674, 0.00011480971443234012, -0.021556474268436432, -0.007619963493198156, 0.0014251623069867492, 0.0018118898151442409, 0.0016901422059163451, 0.007158038672059774, -6.249632133403793e-05, 0.010763914324343204, -0.022616393864154816, 0.014695643447339535, -0.010327055118978024, 0.006964675150811672, -0.04655052721500397, -0.027257123962044716, 0.0007371992105618119, -0.013607077300548553, 0.02171402983367443, -0.012425409629940987, -0.022072112187743187, 0.009933166205883026, -0.006158992648124695, 0.018405362963676453, -0.010155176743865013, 0.018204836174845695, 0.014953461475670338, -0.020969221368432045, 8.291812991956249e-05, -0.03268563374876976, 0.006108861416578293, 0.0033462666906416416, 0.031711652874946594, -0.04804014414548874, -0.01963716186583042, -0.0071401349268853664, 0.002220102120190859, 0.01899261586368084, -0.002230844460427761, 0.011544531211256981, 0.025037022307515144, 0.02356172911822796, -0.012847946025431156, 0.00633087195456028, -0.0006338033126667142, 0.00933875236660242, 5.885956124984659e-05, 0.004604921210557222, 0.020195767283439636, 0.005023876205086708, 0.00020455375488381833, 0.03414660319685936, -0.022315606474876404, 0.007419438101351261, 0.012310824356973171, -0.00459417887032032, -0.02470758743584156, 0.006141088902950287, 0.005439250264316797, -0.02370496094226837, 0.017775140702724457, 0.0071150693111121655, 0.006789215374737978, 0.0024618066381663084, -0.018362393602728844, -0.012411086820065975, 0.0036416836082935333, 0.01371450163424015, -0.008407741785049438, -0.02029602974653244, -0.011157803237438202, 0.005779427010565996, -0.00731917517259717, -0.012733359821140766, 0.015297219157218933, 0.03615185618400574, -0.012876591645181179, 0.02455003187060356, 0.010205307975411415, 0.017202209681272507, -0.014416340738534927, 0.027901669964194298, 0.018749119713902473, -0.0021019354462623596, -0.01607067510485649, 0.0008956500678323209, -0.011057540774345398, 0.014681320637464523, -0.01899261586368084, -0.035894036293029785, -0.004780380986630917, 0.00938172172755003, -0.0002578183193691075, 0.008278831839561462, 0.0064382958225905895, -0.002352592069655657, 0.0025656502693891525, -0.011157803237438202, -0.00595488678663969, -0.004515401087701321, -0.01856291852891445, -0.008644075132906437, -0.004644310101866722, 0.0006476789712905884, -0.005145623814314604, -0.0012291129678487778, -0.04417286813259125, 0.033860135823488235, 0.006402487866580486, -0.008278831839561462, 0.0288899727165699, -0.02370496094226837, -0.03131059929728508, 0.020152797922492027, -0.0006512597901746631, 0.0162712000310421, 0.002735738642513752, -0.022816920652985573, 0.013993804343044758, -0.004855578299611807, 0.00957508571445942, -0.020539525896310806, 0.003306877799332142, -0.004751734435558319, 0.00389950186945498, 0.015053724870085716, -0.005528770387172699, 0.023805223405361176, 0.007806165609508753, -0.009274297393858433, 0.006219866685569286, -0.007763195782899857, 0.009424691088497639, 0.011336843483150005, -0.0035826002713292837, 0.02751494199037552, -0.004150158725678921, -0.0003851608489640057, 0.007634286303073168, 0.02443544566631317, 0.011258065700531006, 0.0038314664270728827, 0.016357138752937317, 0.02765817567706108, 0.005002391524612904, -0.0010330636287108064, -0.009832903742790222, -0.026254497468471527, 0.0004860949411522597, 0.009567923843860626, 0.014459310099482536, 0.0011288502719253302, 0.016600634902715683, 0.02225831337273121, -0.00802101381123066, 0.01576988585293293, -0.03377419710159302, -0.002445693127810955, -0.016400108113884926, -0.017159240320324898, -0.010119368322193623, -0.024106010794639587, -0.003963956609368324, -0.002864647889509797, -0.009768448770046234, -0.024449769407510757, 0.015612331219017506, 0.007849135436117649, 0.01581285521388054, -0.02962045930325985, -0.014208653010427952, -0.00754118524491787, 0.018663180992007256, -0.026655549183487892, 0.010126530192792416, 0.009217004291713238, 0.01223920751363039, -0.00754118524491787, -0.003910244442522526, -0.0014099439140409231, 0.01331345085054636, -0.0013974109897390008, -0.01014801487326622, -0.029448579996824265, 0.04050612077116966, -0.016127968207001686, 0.01398664340376854, 0.00382788572460413, -0.02930534817278385, 0.010792560875415802, 0.023461466655135155, 0.00412509310990572, -0.006005018018186092, -0.01419433020055294, 0.008636913262307644, -0.0008401474915444851, 0.007734549231827259, -0.021628091111779213, -0.017703523859381676, 0.012647420167922974, -0.009890196844935417, -0.01734544336795807, 0.013735986314713955, -0.01711627095937729, 0.015168310143053532, -0.02436383068561554, 0.010849853977560997, -0.025122961029410362, -0.01407974399626255, -0.021771322935819626, -0.01821915991604328, -0.012826460413634777, 0.008443549275398254, -0.040305595844984055, -0.0055932248942554, -0.010728105902671814, -0.0023042510729283094, 0.02344714291393757, 0.01062784343957901, -0.004912870936095715, 0.015855826437473297, 0.03188353031873703, -0.031940825283527374, 0.0172595027834177, -0.015168310143053532, -0.026841750368475914, -0.005990694742649794, -0.004869901575148106, 0.01043447945266962, 0.020911930128932, -0.03334449976682663, -0.01251134928315878, -0.01703033223748207, 0.017674876376986504, -0.015784209594130516, 0.016371462494134903, 0.017245180904865265, 0.014781583100557327, -0.015827178955078125, 0.03016474097967148, -0.00441155768930912, 0.015297219157218933, -0.014953461475670338, 0.00825018621981144, 0.008192893117666245, -0.016586311161518097, 0.025352133437991142, 0.01703033223748207, -0.0113941365852952, 0.008572458289563656, 0.00909525714814663, -0.0040248301811516285, 0.010498934425413609, -0.0010608149459585547, -0.011093349196016788, -0.0020947738084942102, -0.01703033223748207, 0.0020840312354266644, -0.025581305846571922, -0.011931258253753185, 0.00639890693128109, -0.0014215814881026745, -0.019923625513911247, -0.004060638137161732, 0.0024224177468568087, 0.0009319057571701705, -0.037813350558280945, 0.01246837992221117, -0.017975665628910065, -0.017502998933196068, 0.040878523141145706, 0.021814294159412384, 0.014058259315788746, -2.4715980543987826e-05, -0.015397482551634312, -0.009009317494928837, 0.039388906210660934, 0.008987832814455032, 0.036008622497320175, -0.013950834982097149, 0.002798402914777398, 0.021699707955121994, -0.028460277244448662, 0.010570550337433815, 0.00957508571445942, 0.02443544566631317, 0.007090003229677677, 0.0024940341245383024, -0.0333731472492218, -0.020911930128932, 0.0022738142870366573, -0.0024832915514707565, -0.014631188474595547, 0.00782764982432127, 0.007158038672059774, -0.006227028090506792, 0.004694441799074411, 0.00922416616231203, 0.017617585137486458, -0.0027178346645087004, 0.0025459558237344027, 0.005249467212706804, -0.0026122007984668016, 0.0030508500058203936, 0.01796134188771248, -0.009625216946005821, -0.002873599762097001, 0.009023640304803848, -0.0015657091280445457, -0.0007058671326376498, -0.010971601121127605, 0.006832185201346874, -0.004533305298537016, -0.010849853977560997, 0.010291247628629208, -0.014316077344119549, -0.0056326137855648994, 0.003960375674068928, 0.005496542900800705, -0.02573886141180992, -0.00040261729736812413, -0.009131064638495445, -0.008013851940631866, 0.021671060472726822, -0.007641448173671961, 0.0005733771831728518, -0.006721179932355881, -0.009933166205883026, 0.01645740121603012, -0.014824552461504936, -0.023318232968449593, 0.011286712251603603, 0.07597046345472336, -0.00011648821964627132, 0.01995227299630642, -0.005306760314851999, 0.006638821214437485, -0.038386281579732895, -0.015855826437473297, -0.004533305298537016, 0.01753164455294609, -0.0011503351852297783, -0.013764632865786552, 0.008450711145997047, 0.0025710214395076036, -0.002732157940044999, -0.013034148141741753, 0.0004151501343585551, 0.01093579363077879, 0.010076398961246014, -0.014416340738534927, 0.0009695042390376329, 0.010506096296012402, -0.0004726668994408101, 0.0011664488120004535, 0.011243742890655994, -0.012038682587444782, 0.013499652966856956, -0.007315594237297773, 0.0014367998810485005, 0.017588937655091286, 0.03030797466635704, 0.008909055031836033, -0.018505625426769257, 0.016758190467953682, 0.0069503518752753735, 0.018161866813898087, 0.013650046661496162, 0.001286405953578651, 0.010291247628629208, 0.005800911691039801, 0.006076634395867586, -0.0009319057571701705, -0.0028718095272779465, 0.019980918616056442, 0.011895449832081795, -0.007498215883970261, -0.009446176700294018, 0.012396764010190964, 0.004676537588238716, -0.004461688920855522, 0.0034035597927868366, -0.007215331774204969, -0.015583684667944908, 0.027715468779206276, 0.011021732352674007, -0.010076398961246014, -0.027987608686089516, 0.00015542953042313457, -0.02436383068561554, 0.012267854064702988, -0.010362863540649414, -0.011050378903746605, 0.015612331219017506, -0.02025306038558483, -0.0020159960258752108, -0.00922416616231203, -0.021957525983452797, -0.01960851438343525, -0.009832903742790222, -0.005052522756159306, -0.018204836174845695, -0.026096941903233528, 0.007641448173671961, 0.005192174110561609, -0.028445953503251076, 0.014065421186387539, 0.024120334535837173, -0.015211280435323715, 0.033315856009721756, 0.020811665803194046, 0.012246369384229183, -0.00012935674749314785, -0.0012828251346945763, -0.013821925967931747, -0.03133924677968025, 0.0177321694791317, 0.0014985689194872975, 0.008744337595999241, -0.02550968900322914, 0.00893770158290863, -0.015526391565799713, -0.00485199736431241, -0.013478168286383152, 0.007340660318732262, 0.019135847687721252, 0.01814754493534565, -0.004601340740919113, -0.0052673714235424995, -0.0233612023293972, 0.03517787531018257, 0.0051599470898509026, -0.003482337575405836, 0.025151608511805534, 0.003656006883829832, 0.007884942926466465, 0.011193611659109592, -0.001134221558459103, -0.01387205719947815, 0.004540466703474522, -0.005063265096396208, -0.008035337552428246, 0.009725479409098625, -0.03913109004497528, -0.0066603063605725765, 0.01965148374438286, -0.026111265644431114, -0.007598478347063065, 0.021570798009634018, 0.011730733327567577, -0.010105045512318611, 0.0025513269938528538, -0.00794223602861166, 0.009682510048151016, 0.004336360841989517, 0.005432088393718004, 0.0026873978786170483, -0.0019837685395032167, -0.006151831243187189, 0.0010608149459585547, -0.014029612764716148, -0.0030508500058203936, 0.024449769407510757, -0.0013052051654085517, 0.005872528068721294, 0.0028467439115047455, 0.00838625617325306, 0.0023400592617690563, -0.0013687645550817251, 0.0015612330753356218, -0.0011646583443507552, -0.031367894262075424, 0.0022791854571551085, 0.0016883518546819687, 0.019694453105330467, 0.004203870892524719, -0.022430192679166794, 0.0032442137598991394, -0.00236870558001101, -0.03165435791015625, -0.013077117502689362, 0.010656489990651608, 0.028947265818715096, -0.02785870060324669, -0.008106953464448452, -0.010190985165536404, 0.0008285098592750728, 0.003507403191179037, -0.0277441143989563, 0.013134410604834557, -0.004662214312702417, -0.004683699458837509, -0.0042898100800812244, -0.017517320811748505, -0.021628091111779213, 0.004687279928475618, 0.005808073561638594, 0.00511339632794261, 0.017832431942224503, 0.012038682587444782, 0.014810229651629925, 0.0029595394153147936, -0.014473632909357548, 0.0064955889247357845, -0.008751499466598034, -0.01615661382675171, -0.01398664340376854, -0.010090721771121025, 0.014029612764716148, 0.009933166205883026, -0.025638598948717117, 0.03534975275397301, -0.017374088987708092, 0.010083560831844807, 0.005489381495863199, -0.008200054056942463, -0.0014887216966599226, 0.0054499926045536995, 0.01917881704866886, -0.001740273553878069, -0.022129405289888382, -0.005270951893180609, 0.004479593131691217, 0.022473162040114403, 0.006821442861109972, 0.003215567208826542, -0.021914556622505188, -0.008321802131831646, -0.0013821925967931747, 0.01043447945266962, 0.013771794736385345, -0.024106010794639587, 0.000457000860478729, -0.0019121523946523666, 0.0290475282818079, -0.0068930587731301785, -0.013979481533169746, -0.015239926986396313, -0.01130103599280119, -0.015941765159368515, -0.02593938633799553, -0.0009126589284278452, -0.02674148790538311, -0.03540704771876335, 0.004619244486093521, 0.01271903607994318, -0.03749823942780495, 0.0036918148398399353, 0.006030083633959293, 0.0028879230376333, -0.005679164547473192, -0.007039871998131275, 0.014373370446264744, 0.004740992095321417, 0.016285523772239685, -0.01542612910270691, -0.007312013767659664, -0.008429226465523243, 0.008371933363378048, 0.013363582082092762, 0.011945581994950771, 0.011608985252678394, 0.010749591514468193, 0.00794223602861166, -0.03016474097967148, 0.026684194803237915, 0.003176178317517042, 0.04497497156262398, 0.014015289954841137, 0.006223447620868683, 0.01034137886017561, 0.002952377777546644, -0.02536645717918873, -0.004304133355617523, -0.007043452933430672, -0.012575804255902767, -0.0033659611362963915, -0.008772984147071838, -0.003767011919990182, -9.80246695689857e-05, 0.023604698479175568, -2.347108966205269e-05, 0.008952024392783642, -0.01544045191258192, 0.007021968252956867, 0.002460016403347254, 0.02497972920536995, 0.0008379095233976841, -0.013084279373288155, 0.001981978304684162, 0.009754125960171223, -0.01899261586368084, 0.002547746291384101, 0.005031037610024214, -0.00813560001552105, -0.006681791041046381, 0.01860588788986206, 0.010871338658034801, -0.0351492278277874, -0.0034984510857611895, -0.0027393195778131485, -0.010334216989576817, 0.016973039135336876, -0.012081651948392391, 0.01933637261390686, 0.011902611702680588, 0.005765103735029697, -0.01262593548744917, 0.00886608473956585, -0.010398671962320805, 0.014137037098407745, 0.009661024436354637, -0.02240154705941677, 0.010649328120052814, -0.012704713270068169, -0.03632373362779617, -0.010169499553740025, -0.019207464531064034, 0.0019622838590294123, 0.014666996896266937, 0.011709247715771198, 0.0029434256721287966, 0.020740050822496414, -0.01807592809200287, 0.006083795800805092, -0.010026267729699612, -0.008221539668738842, 0.023418495431542397, -0.007956559769809246, -0.009088095277547836, 0.013471006415784359, 0.017273826524615288, 0.0016346396878361702, 0.0063881645910441875, -0.021585121750831604, -0.009596570394933224, 0.02394845522940159, 0.02477920427918434, 0.012762006372213364, 0.007118649780750275, -0.00617689685896039, 0.02370496094226837, 0.01599905826151371, -0.012783491052687168, 0.027171185240149498, -0.00957508571445942, -0.008622590452432632, 0.004583436530083418, -0.015583684667944908, 0.017932696267962456, -0.013614239171147346, 0.00045230102841742337, 0.002961329650133848, 0.004361426457762718, 0.005636194720864296, 0.014681320637464523, 0.0033802844118326902, 0.014709966257214546, 0.005861785728484392, 0.007050614338368177, 0.0026104103308171034, -0.03741230070590973, 0.0012425410095602274, -0.0069754174910485744, -0.006620917469263077, -0.001709836651571095, -0.0026873978786170483, 0.021728353574872017, 0.0015961460303515196, -0.012124622240662575, -0.010849853977560997, 0.011236581020057201, -0.004665795248001814, 0.004511820152401924, -0.0012174753937870264, 0.015898795798420906, 0.007677256129682064, -0.005757942330092192, 0.00834328681230545, -0.018004311248660088, 0.016314169391989708, 0.025996679440140724, 0.013191703706979752, -0.010062075220048428, -0.007397952955216169, 0.001802042592316866, -0.004443785175681114, -0.006592270918190479, 0.009661024436354637, 0.023776577785611153, -0.02770114503800869, -9.75211150944233e-05, -0.02356172911822796, 0.012575804255902767, -0.015583684667944908, 0.008414902724325657, 0.0159560889005661, 0.017159240320324898, 0.016127968207001686, 0.005596805829554796, -0.047438569366931915, 0.007519700564444065, 0.0006145564839243889, -0.014344723895192146, -0.004959421698004007, 0.0022397965658456087, -0.001828003441914916, -0.010649328120052814, -0.015540714375674725, 0.00463356776162982, -0.008737175725400448, -0.021227041259407997, 0.05164960026741028, -0.028990237042307854, -0.00415373919531703, -0.012776329182088375, 0.025638598948717117, 0.017660554498434067, 0.02025306038558483, 0.00918835774064064, 0.019021261483430862, 0.012131784111261368, 0.0026712841354310513, 0.00743376137688756, 0.0004290257638785988, 0.008121276274323463, 0.014208653010427952, 0.03414660319685936, -0.01933637261390686, 0.006237770896404982, -0.004225355572998524, 0.0031206756830215454, 0.003910244442522526, 0.006456200033426285, 0.020167121663689613, 0.02424924448132515, 0.016285523772239685, -0.011773702688515186, 0.01519695669412613, 0.020625464618206024, 0.021341625601053238, -0.006112442351877689, 0.00989735871553421, -0.0015451194485649467, -0.021241363137960434, -0.007970882579684258, 0.006395326461642981, -0.012454056181013584, 0.020396292209625244, 0.0005330930580385029, 0.011866803281009197, -0.01830510050058365, 0.017273826524615288, 0.0050775883719325066, 0.022931506857275963, 0.005908336024731398, -0.001297148410230875, -0.008522327058017254, 0.007791842333972454, -0.007455246057361364, -0.016901422291994095, -0.024793528020381927, -0.011179287917912006, 0.005378376226872206, -0.014437825419008732, 0.014996431767940521, -0.01723085716366768, -0.017288150265812874, 0.021155424416065216, -0.022315606474876404, 0.016414431855082512, 0.00167402857914567, -0.007505377288907766, -0.01968013122677803, -0.006889478303492069, -0.0034930799156427383, 0.02240154705941677, -0.007014806382358074, 0.013105764053761959, 0.025452395901083946, -0.0033319436479359865, -0.016700897365808487, -0.007333498448133469, 0.014709966257214546, -0.014208653010427952, 0.01043447945266962, -0.010498934425413609, 0.013091440312564373, -0.007526862435042858, 0.0034483198542147875, 0.032742924988269806, -0.02489379048347473, -0.019751746207475662, 0.0011566015891730785, -0.013972319662570953, 0.005303179379552603, -0.011258065700531006, -0.006005018018186092, 0.014251623302698135, 0.011372651904821396, -0.016027703881263733, -0.0027894508093595505, -0.011644793674349785, 0.029147792607545853, -0.02036764658987522, -0.005783007945865393, 0.012633097358047962, 0.02765817567706108, -0.0013240043772384524, 0.016013382002711296, 0.001679399749264121, -0.0034519005566835403, 0.008815953508019447, 0.01867750473320484, 0.008479357697069645, 0.016170937567949295, 0.027328740805387497, -0.010649328120052814, 0.017216533422470093, 0.012554319575428963, 0.007884942926466465, 0.029992863535881042, 0.016443079337477684, 0.002572811907157302, 0.008028175681829453, 0.00699332170188427, 0.0011055750073865056, 0.0064203920774161816, -0.008515166118741035, 0.01271903607994318, 0.0054177651181817055, -0.0026838169433176517, -0.0016024124342948198, -0.01367869321256876, -0.009732641279697418, -0.010584874078631401, 0.02137027308344841, 0.001689246972091496, -0.01940798945724964, -0.002955958480015397, 0.01819051429629326, 0.017058977857232094, 0.0054177651181817055, 0.009811419062316418, -0.014000966213643551, 0.0015854035736992955, 0.0019443797646090388, 0.03277157247066498, 0.011916935443878174, 0.02490811236202717, 0.007627124898135662, 0.018061604350805283, 0.004479593131691217, -0.024721911177039146, -0.008679882623255253, -0.014000966213643551, 0.004698022268712521, 0.004440204240381718, 0.012267854064702988, -0.011444267816841602, -0.0012264273827895522, -0.004837674088776112, -0.015469098463654518, 0.015340189449489117, 0.002268443116918206, 0.010635005310177803, -0.01880641281604767, -0.007201008498668671, 0.00746240746229887, 0.007276205345988274, 0.016672249883413315, -0.01810457371175289, 0.02459300123155117, -0.008701368235051632, 0.0022272637579590082, 0.013478168286383152, -0.022845566272735596, -0.013621400110423565, 0.00890189316123724, -0.0040319920517504215, -0.011164965108036995, -0.0009524954366497695, 0.010828369297087193, 0.007512539159506559, 0.003088448429480195, 0.008765822276473045, 0.011114833876490593, -0.011172126978635788, 0.0010447013191878796, 0.02159944549202919, -0.0039030828047543764, 0.01559800747781992, -0.014939138665795326, -0.027830053120851517, 0.013807602226734161, 0.0013804021291434765, -0.0284745991230011, 0.004834093153476715, 0.0026569608598947525, -0.0025280516128987074, -0.002911198418587446, 0.03145383298397064, -0.008128438144922256, -0.010885661467909813, -0.0008079202380031347, 0.027600882574915886, 0.005661260336637497, -0.01054906565696001, -0.00746240746229887, 0.006427553482353687, 0.01331345085054636, -0.012819299474358559, -0.0014520183904096484, -0.011265227571129799, -0.021241363137960434, -0.0014153150841593742, -0.018405362963676453, 0.010420156642794609, -0.0019461701158434153, -0.007548347115516663, 0.010011943988502026, -0.02950587309896946, 0.007605640217661858, -0.01607067510485649, -0.02651231549680233, -0.01436620857566595, 0.022544778883457184, 0.0025602790992707014, -0.0005809863796457648, -0.008522327058017254, -0.02731441706418991, -0.02697066031396389, -0.00629148306325078, 0.005661260336637497, -0.0012828251346945763, 0.013922188431024551, -0.000610080489423126, 0.0034429486840963364, 0.009689670987427235, -0.024421123787760735, -0.009116741828620434, 0.00790642760694027, 0.005381957162171602, -0.008765822276473045, 0.017173564061522484, -0.00478754285722971, 0.012955370359122753, 0.0018620210466906428, 0.004089284688234329, -0.014781583100557327, 0.02740035578608513, -0.004311295226216316, -0.013385066762566566, 0.015139663591980934, -0.004640729632228613, 0.017789462581276894, 0.008178569376468658, 0.0035091936588287354, 0.004243259783834219, 0.020152797922492027, 0.030336620286107063, 0.001322214026004076, -0.01387205719947815, 0.003174387849867344, -0.007301271427422762, -0.024879466742277145, -0.0019461701158434153, -0.003595133079215884, -0.028145164251327515, -0.015068047679960728, -0.0005210078088566661, 0.010090721771121025, -0.0020231574308127165, -0.007777519058436155, 0.004422300029546022, 4.2298317566746846e-05, 0.004433042369782925, -0.013112925924360752, 0.01876344345510006, 0.01592744141817093, 0.005482219625264406, 0.009603732265532017, -0.020625464618206024, 0.01695871539413929, -0.018204836174845695, 0.005378376226872206, -0.005138461943715811, -0.008185731247067451, -0.006116023287177086, -0.027099568396806717, 0.007770357187837362, -0.021556474268436432, -0.014645512215793133, -0.027844376862049103, -0.001005312311463058, -0.005356891546398401, 0.014953461475670338, -0.009567923843860626, 0.001082299742847681, 0.012633097358047962, -0.003654216416180134, -0.009582246653735638, -0.00695393281057477, -0.0006087376968935132, 0.00665672542527318, 0.011422783136367798, 0.0035306785721331835, -0.007333498448133469, 0.00930294394493103, 0.00259429682046175, 0.0032030344009399414, -0.03007880225777626, -0.01054906565696001, 0.0018799251411110163, 0.01784675568342209, 0.0011458591325208545, -1.4505077160720248e-05, 0.004257583059370518, 0.006542139686644077, -0.014545249752700329, -0.022086434066295624, 0.014795905910432339, 0.018176190555095673, -0.018849382176995277, -0.010083560831844807, -0.027214154601097107, -0.003568276995792985, -0.0030311555601656437, -0.010498934425413609, -0.0051527852192521095, -0.020152797922492027, -0.016872776672244072, -0.020997868850827217, -0.007143715396523476, -0.008285993710160255, 0.012561480514705181, -0.0035396304447203875, -0.005983533337712288, 0.008966348133981228, -0.0026766553055495024, -0.003770592622458935, 0.005976371467113495, 0.016299845650792122, 0.011093349196016788, -0.010190985165536404, 0.005800911691039801, -0.006184058729559183, -0.03721177577972412, -0.010140853002667427, 0.003143951063975692, -0.012561480514705181, 0.014588219113647938, -0.0028861328028142452, 0.002203988377004862, 0.012382440268993378, 0.03632373362779617, -0.01680115982890129, -0.015111017040908337, -0.00441155768930912, 0.004447365645319223, 0.0002147366903955117, 0.00043103998177684844, 0.022243989631533623, -0.007347821723669767, -0.008808792568743229, 0.009718317538499832, -0.005894012749195099, 0.004540466703474522, 0.013012662529945374, -0.007354983128607273, 0.018319422379136086, -0.0037741735577583313, -0.030594438314437866, -0.02573886141180992, -0.013693016953766346, -0.004293391015380621, 0.004723088350147009, -0.009403206408023834, 0.010334216989576817, 0.002184293931350112, -0.012568642385303974, 0.02370496094226837, -0.01880641281604767, -0.002377657685428858, 0.015211280435323715, -0.01438769418746233, 0.008672721683979034, 0.01371450163424015, 0.020424939692020416, -0.001169134397059679, 0.001965864561498165, 0.0015066256746649742, 0.008636913262307644, 0.025953710079193115, 0.0009113160776905715, 0.013069955632090569, 0.01503940112888813, -0.005987113807350397, -0.0022809759248048067, -0.016357138752937317, -0.015626654028892517, 0.01718788780272007, 0.0076486095786094666, -0.024578679352998734, -0.012733359821140766, -0.02838866040110588, -0.03268563374876976, -0.019193140789866447, -0.0042396788485348225, -0.011558854021131992, -0.0012488074135035276, 0.02367631532251835, 0.0008925168658606708, -0.01371450163424015, -0.010864176787436008, -0.012561480514705181, -0.04159468784928322, 0.011859642341732979, 0.007935074158012867, 0.00441155768930912, 0.006087376736104488, -0.00687873549759388, 0.008873246610164642, -0.008529488928616047, -0.019307726994156837, 0.006287902127951384, 0.023074738681316376, 0.0042898100800812244, 0.010749591514468193, -0.007222493179142475, 0.0015021497383713722, 0.013700177893042564, -0.012568642385303974, -0.018161866813898087, -0.013134410604834557, -0.010377187281847, -0.0011601824080571532, 0.011322520673274994, -0.01584150269627571, 0.029906922951340675, -0.0005192173994146287, 0.0038923402316868305, -0.0021270010620355606, 0.002945216139778495, -0.0024582259356975555, -0.003430415876209736, 0.0003638998023234308, -0.00027012734790332615, 0.0006297749350778759, 0.0038815978914499283, -0.007154458202421665, -0.008586782030761242, -0.00014446329441852868, 0.001888877130113542, -0.00030638303724117577, -0.0070577762089669704, -0.02843162976205349, 0.007841973565518856, 0.009789934381842613, -0.003523516934365034, 0.003777754260227084, 0.0050704265013337135, 0.0015343769919127226, -0.013098602183163166, -0.006853669881820679, 0.013671532273292542, 0.009231328032910824, -0.011265227571129799, -0.006921705324202776, 0.004325618036091328, 0.016256876289844513, 0.006936028599739075, 0.017273826524615288, -0.003485918277874589, 0.013191703706979752, -0.003645264310762286, -0.008808792568743229, 0.003129627788439393, 0.009424691088497639, -0.020997868850827217, -0.024277890101075172, -0.01604202762246132, 0.004440204240381718, 0.007605640217661858, 0.006964675150811672, 0.00845787301659584, -0.00957508571445942, 0.02397710271179676, 0.003720461390912533, 0.0014994641533121467, 0.006538558751344681, -0.03569351136684418, 0.018276453018188477, 0.021241363137960434, 0.014881845563650131, -0.017617585137486458, -0.0013177379732951522, 0.002021367195993662, 0.008722852915525436, 0.02417762763798237, 0.00277691800147295, 0.009489146061241627, -0.024106010794639587, -0.000206791766686365, -0.007201008498668671, 0.015669623389840126, -0.003920986782759428, -0.00012633544974960387, 0.007308432832360268, -0.010799722746014595, -0.01604202762246132, 0.0110288942232728, -0.014416340738534927, 0.015583684667944908, -0.006728341802954674, 0.013105764053761959, -0.02525187097489834, -0.0051778508350253105, 0.019092878326773643, 0.009911681525409222, 0.026340436190366745, 0.04082123190164566, 0.013628561981022358, 0.0010142644168809056, 0.01833374612033367, -0.015168310143053532, -0.011157803237438202, 0.007129392120987177, 0.004071380943059921, 0.0017841384978964925, -0.01286943070590496, 0.014323239214718342, 0.008357610553503036, -0.0068751550279557705, -0.02298879809677601, 0.005768684670329094, -0.026082618162035942, -0.020081181079149246, -0.028073549270629883, 0.0116806011646986, 0.018620211631059647, 0.039503492414951324, -0.01856291852891445, -0.0018548595253378153, 0.004003345500677824, 0.0011664488120004535, 0.007877781987190247, 0.024378152564167976, 0.0023096222430467606, -0.012733359821140766, 0.006466942373663187, -0.010362863540649414, -0.0006749826716259122, 0.014330401085317135, 0.001210313756018877, -0.008987832814455032, 0.030021509155631065, 0.00782764982432127, -0.01198855135589838, -0.0162712000310421, 0.003654216416180134, 0.00794223602861166, 0.018863705918192863, -0.009374559856951237, -0.0015970411477610469, -0.001245226594619453, -0.013263319618999958, -0.007584155071526766, 0.008293155580759048, 0.0032800217159092426, -0.0034214637707918882, -0.005299598444253206, 0.03108142875134945, -0.010950116440653801, -0.014301754534244537, -0.0077059026807546616, -0.01830510050058365, -0.010635005310177803, 0.002716044196859002, -0.0004185071447864175, 0.0037132997531443834, -0.004311295226216316, 0.0107424296438694, 0.00909525714814663, 0.023432819172739983, 0.017173564061522484, 0.020081181079149246, 0.0028324206359684467, -0.0006906486814841628, -0.00466937618330121, -0.01707330159842968, 0.0028252589982002974, -0.011286712251603603, -0.012933884747326374, 0.01446647197008133, -0.017775140702724457, 0.025538336485624313, -0.014910492114722729, 0.0067355032078921795, -0.005876109004020691, 0.007405114825814962, 0.0017393783200532198, 0.0005939668044447899, 0.020381970331072807, -0.006069472525268793, 0.00430771429091692, 0.0039030828047543764, 0.04299836605787277, -0.03131059929728508, -0.0032245193142443895, -0.019279079511761665, 0.016901422291994095, -0.014409178867936134, 0.003913824912160635, 0.015855826437473297, -0.012418248690664768, 0.017445705831050873, 0.010348540730774403, -0.010871338658034801, 0.0027088825590908527, 0.006431134417653084, -0.004884224385023117, -0.0012890915386378765, -0.007211750838905573, -0.013750310055911541, -0.009367398917675018, -0.007329917512834072, -0.029763691127300262, 0.013385066762566566, 0.012454056181013584, -0.010570550337433815, -0.009138226509094238, 0.003920986782759428, 0.004834093153476715, -0.020396292209625244, 0.00029026938136667013, 0.019135847687721252, -0.007956559769809246, -0.011558854021131992, -0.008106953464448452, -0.021355949342250824, 0.013929350301623344, -0.006345194764435291, 0.005539512727409601, -0.024807849898934364, 0.0020947738084942102, -0.02260207198560238, -0.009775610640645027, 0.006606594193726778, 0.01544045191258192, -0.0005357786430977285, 0.007956559769809246, 0.02927670069038868, 0.020811665803194046, 0.010126530192792416, 0.007448084186762571, -0.0019694454967975616, 0.015411805361509323, 0.011057540774345398, -0.0007662933203391731, 0.0035145648289471865, -0.005768684670329094, -0.0006158992764540017, -0.0032728600781410933, 0.0016785046318545938, -0.015698270872235298, -0.003425044473260641, 0.001297148410230875, -0.008894731290638447, 0.015254249796271324, -0.004873482044786215, 0.0057973312214016914, 0.01350681483745575, -0.005629032850265503, -0.0025029859971255064, -0.0041322545148432255, 0.0007551032467745245, -0.030709024518728256, 0.012690389528870583, 0.007340660318732262, 0.00071213353658095, -0.0064382958225905895, 0.00037262801197357476, -0.007512539159506559, 0.01427310798317194, -0.0023615441750735044, 0.007741710636764765, 0.0037956584710627794, 0.0015200537163764238, 0.01798998937010765, 0.016944391652941704, 0.01746002957224846, 0.017388412728905678, 0.011401298455893993, -0.010212469846010208, -0.02950587309896946, 0.0031224661506712437, 0.005510866176337004, -0.013800441287457943, 0.013206026516854763, -0.003364170901477337, 0.015583684667944908, -0.009138226509094238, 0.016185259446501732, 0.00478754285722971, -0.004547628574073315, -0.02251613140106201, 0.008601104840636253, 0.006452619098126888, 0.006130346562713385, -0.0005859099910594523, -0.015855826437473297, 0.012539995834231377, -0.011086187325417995, -0.0022648621816188097, -0.00802101381123066, -0.013750310055911541, -0.018906675279140472, -0.011172126978635788, 0.00845787301659584, -0.01022679265588522, -0.008772984147071838, -0.005815234966576099, -0.0030132513493299484, -0.014538087882101536, 0.016084996983408928, -0.010498934425413609, -0.021842939779162407, 0.012969693168997765, -0.006860831752419472, 0.016027703881263733, -0.0025137285701930523, -0.010198146104812622, -0.0011754008010029793, 0.009181196801364422, -0.006957513280212879, 0.004916451871395111, 0.014072582125663757, -0.00330866826698184, 0.006928867194801569, -0.012769168242812157, -0.006853669881820679, -0.007143715396523476, 0.004304133355617523, 0.009524954482913017, -0.0162712000310421, 0.0010088931303471327, 0.01006923709064722, -0.010269762948155403, -0.01162330899387598, 0.0029846050310879946, -0.002089402638375759, 0.004017668776214123, 0.004042734391987324, -0.013499652966856956, -0.008679882623255253, -0.004723088350147009, 0.013105764053761959, -0.005915497895330191, 0.0026784457731992006, 0.005546674598008394, 0.02719983085989952, -0.011924096383154392, -0.01231798529624939, 0.015898795798420906, -0.003813562449067831, 0.01798998937010765, 0.018906675279140472, -0.006850088946521282, 0.009331590496003628, 0.012081651948392391, -0.013284804299473763, 0.02175700105726719, -0.0064955889247357845, 0.00947482232004404, -0.032055407762527466, 0.023003121837973595, -0.019250433892011642, 0.02159944549202919, 0.009152550250291824, 0.007806165609508753, 0.006957513280212879, -0.028947265818715096, -0.0077560339123010635, 0.00949630793184042, -0.01302698627114296, -0.008472195826470852, 0.025122961029410362, -0.01940798945724964, -0.0006884107133373618, -0.023876840248703957, 7.923940756882075e-06, -0.002660541795194149, 0.0032997161615639925, -0.005629032850265503, -0.004884224385023117, -0.006427553482353687, 0.012497026473283768, 0.0031940822955220938, -0.0031940822955220938, 0.008493680506944656, -0.006058730185031891, -0.0161136444658041, -0.03042256087064743, 0.005711391568183899, -0.006524235475808382, -0.017359765246510506, 0.01542612910270691, -0.006384584121406078, -0.018548594787716866, 0.0031009812373667955, -0.00909525714814663, -0.014910492114722729, -0.0362950898706913, -0.0034268349409103394, -0.010047752410173416, 0.017560292035341263, 0.007591316942125559, -0.009209842421114445, -0.014108390547335148, 0.015669623389840126, 0.016213906928896904, 0.024464093148708344, -0.006055149249732494, -0.002293508732691407, 0.007920751348137856, -0.014172845520079136, 0.0036918148398399353, -0.016815483570098877, -0.0015594427241012454, 0.00466937618330121, 0.006266416981816292, -0.008243024349212646, -0.016600634902715683, 0.002837791806086898, -0.0023669153451919556, -0.014795905910432339, -0.0022738142870366573, 0.006384584121406078, 0.0031672262120991945, 0.03492005914449692, 0.007440922781825066, -0.02370496094226837, 0.006062311120331287, -0.008142761886119843, -0.010556227527558804, -0.002884342335164547, 0.012439733371138573, -0.012855106964707375, -0.0034930799156427383, 0.0175746139138937, 0.003016832284629345, 0.0010894613806158304, 0.02589641697704792, -0.00825018621981144, -0.016056351363658905, 0.02489379048347473, 0.020467909052968025, -0.01492481492459774, -0.003910244442522526, 0.004160901065915823, 0.017904048785567284, -0.008586782030761242, 0.003027574624866247, -0.012776329182088375, -0.007143715396523476, -0.00011357881157891825, 0.016657928004860878, -0.014380532316863537, 0.0025692309718579054, -0.012138945050537586, -0.001863811514340341, -0.018133221194148064, 0.007168781477957964, 0.01657198742032051, 0.0002511042985133827, -0.027901669964194298, -0.006037245504558086, 0.008042498491704464, -0.010713783092796803, -0.007992367260158062, -0.029992863535881042, 0.038500867784023285, 0.0056326137855648994, -0.000888040813151747, 7.284709863597527e-05, 0.010950116440653801, -0.00521723972633481, -0.019078554585576057, -0.017402736470103264, 0.00022033169807400554, 0.018978292122483253, 0.01179518736898899, -0.02370496094226837, 0.018906675279140472, 0.027257123962044716, 0.006896639708429575, 0.002352592069655657, 0.010312732309103012, -0.01768920011818409, -0.0035306785721331835, -0.013857734389603138, -0.025982355698943138, 0.006259255576878786, -0.0023454304318875074, -0.008271670900285244, 0.014015289954841137, -0.03268563374876976, 0.007920751348137856, -0.008379095233976841, 0.00842206459492445, 0.0005402546958066523, -0.009102418087422848, 0.03291480243206024, -0.008486519567668438, -0.009281459264457226, 0.01492481492459774, 0.009560761973261833, 0.04944382235407829, -0.00047445730888284743, 0.02432085946202278, -0.0053354064002633095, 0.005528770387172699, -0.016443079337477684, 0.0022952992003411055, -0.004758896306157112, -0.024507062509655952, -0.0017626535845920444, 0.011229419149458408, -0.004078542347997427, 0.005815234966576099, 0.026956336572766304, 0.004773219581693411, 0.0007264568121172488, 0.008049660362303257, -0.016242552548646927, -0.00997613649815321, -0.00445094658061862, -0.0026659129653126, -0.0027249963022768497, -0.011386975646018982, 0.00966818630695343, 0.015512067824602127, -0.010155176743865013, 0.010907147079706192, -0.013607077300548553, 0.015798533335328102, -0.007627124898135662, 0.032169993966817856, -0.0021825036965310574, -0.011114833876490593, 0.010878500528633595, -0.004758896306157112, 0.0039030828047543764, -0.01331345085054636, 0.0223728995770216, 0.0004838569147977978, -0.009202681481838226, 0.0026569608598947525, -0.023919809609651566, 0.003127837320789695, 0.002793031744658947, -0.006928867194801569, 0.0007510748691856861, 0.015368836000561714, 0.011136318556964397, -0.011429945006966591, -0.011723571456968784, -0.017746493220329285, -0.006355937570333481, -0.019193140789866447, -0.007369306404143572, 0.010026267729699612, 0.032513752579689026, 0.011501560918986797, 0.006771311163902283, -0.025180254131555557, -0.014222976751625538, -0.006821442861109972, -0.009625216946005821, 0.005460734944790602, 0.015411805361509323, -0.00779900373890996, 0.010670812800526619, -0.022115081548690796, -0.026383407413959503, 0.008443549275398254, 0.012060167267918587, -0.0006772206397727132, -0.019207464531064034, 0.0022075693123042583, -0.020381970331072807, -0.00415373919531703, -0.009030802175402641, -0.01271903607994318, -0.02417762763798237, 0.006846508476883173, 0.013062793761491776, -0.010670812800526619, 0.012862268835306168, 0.0108212074264884, -0.0172595027834177, -0.02045358531177044, 0.005349729675799608, -0.013485330156981945, 0.017087625339627266, 0.012933884747326374, -0.02036764658987522, -0.028875650838017464, -0.007949397899210453, -0.00886608473956585, 0.009890196844935417, -0.0028360013384371996, -0.0013875637669116259, 0.0036739108618348837, 0.008608266711235046, 0.0041895476169884205, 0.0007371992105618119, 0.016930067911744118, -0.0113941365852952, -0.0008549183257855475, 0.0009721898823045194, 0.0034339965786784887, -0.01638578623533249, -0.017331119626760483, 0.01099308580160141, 0.008357610553503036, 0.014824552461504936, -0.008737175725400448, 0.009317266754806042, -0.0022397965658456087, 0.007935074158012867, 0.013248995877802372, -0.006427553482353687, 0.0223728995770216, 0.017016008496284485, 0.012124622240662575, 0.006108861416578293, 0.005213659256696701, 0.012654582038521767, 0.00679995771497488, 0.01622823067009449, 0.003906663507223129, -0.013163057155907154, 0.021914556622505188, -0.004794704262167215, 0.0055251894518733025, 0.0054750582203269005, -0.006717598997056484, -0.014509441331028938, -0.01622823067009449, -0.007677256129682064, -0.003410721430554986, 0.013062793761491776, 0.03506328910589218, 0.011902611702680588, 0.00144396151881665, 0.010570550337433815, -0.011150641366839409, 0.030050156638026237, 0.009947489947080612, 0.0014162103179842234, 0.0019014100544154644, -0.006355937570333481, -0.009804257191717625, 0.009045125916600227, 0.010441641323268414, 0.00882311537861824, -0.004816189408302307, 0.0024564354680478573, 0.001996301580220461, 0.013471006415784359, -0.0013248996110633016, -0.0036524259485304356, -0.0044043962843716145, 0.016285523772239685, -0.016443079337477684, 2.292557473992929e-05, -0.006674629636108875, 0.013270481489598751, 0.0068429275415837765, -0.0014359047636389732, -0.002112677786499262, 0.0015236345352604985, 0.007483892608433962, 0.009582246653735638, -0.006642402149736881, 0.0016122596571221948, 0.009059448726475239, 0.0014063630951568484, -0.00040731712942942977, -0.004565532319247723, 0.0038529513403773308, 0.011573177762329578, -0.006846508476883173, -0.0021216298919171095, -0.007505377288907766, -0.00830747839063406, 0.0115516921505332, 0.014767259359359741, 0.019852010533213615, 0.019780393689870834, -0.015640977770090103, 0.005106234923005104, 0.000880431616678834, 0.00144396151881665, 0.012676066718995571, -0.01006923709064722, 0.010040590539574623, 0.03881597891449928, -0.0049952296540141106, -0.025810476392507553, -0.005313921719789505, -0.0038243047893047333, -0.0017447496065869927, -0.019823363050818443, -0.01531154289841652, 0.003928148187696934, -0.003629150800406933, 0.010541903786361217, 0.015583684667944908, 0.016056351363658905], "40002650-dc78-4ca1-a842-1d2820a2c9bc": [-0.02740115486085415, -0.01569078303873539, -0.018930839374661446, 0.025681616738438606, -0.006133814807981253, 0.003285829909145832, 0.0036082433070987463, 0.0035783902276307344, -0.009314163587987423, 0.01826212927699089, 0.01393940206617117, 0.029359517619013786, 0.006655248813331127, -0.03461366146802902, 0.027464842423796654, 0.01629580557346344, 0.014297639951109886, 0.016009217128157616, 0.039963334798812866, -0.03773430362343788, 0.07202953100204468, -0.012936338782310486, -0.043434254825115204, 0.007658312562853098, 0.00783345103263855, 0.0010767014464363456, -0.018023304641246796, 0.00014366798859555274, -0.04575881361961365, -0.0025633852928876877, 0.020968809723854065, 0.02549055777490139, 0.021621597930788994, -0.008295178413391113, -0.01469568070024252, -0.011535233817994595, 0.014878779649734497, 0.0070612505078315735, -0.03986780717968941, -0.01830989494919777, -0.03786167874932289, 0.003767459886148572, -0.006217403337359428, -0.009791812859475613, -0.07731552422046661, 0.005735773593187332, 0.014815093018114567, -0.011582998558878899, -0.015109643340110779, -0.02916845865547657, 0.032305024564266205, 0.0031365645118057728, 0.0140030886977911, -0.0035982923582196236, 0.04467614367604256, -0.028324611485004425, -0.012299472466111183, 0.026111502200365067, 0.02310231141746044, -0.08998915553092957, -0.001616047229617834, 0.003656008280813694, 0.001695655519142747, -0.03128603845834732, -0.00015411656931973994, -0.016781415790319443, -0.011312330141663551, -0.005357634276151657, -0.035250525921583176, -0.01670180819928646, -0.01679733768105507, 0.0030808388255536556, -0.07005524635314941, 0.010516248643398285, 0.01081875991076231, -0.030935760587453842, 0.07164741307497025, 0.026302561163902283, 0.006300991866737604, -0.00037216852069832385, -0.042001307010650635, 0.004378452897071838, 0.04445324093103409, -0.04050467163324356, 0.04241526871919632, 0.01951994001865387, 0.010181893594563007, -0.030091913416981697, 0.024981064721941948, 0.0014966349117457867, -6.318903615465388e-05, 0.003084819298237562, -0.013915520161390305, -0.0259204413741827, -0.042128678411245346, 0.018676092848181725, -0.028897790238261223, 0.023564038798213005, 0.026414012536406517, -0.025092516094446182, -0.04286107420921326, -0.000683138205204159, -0.038498543202877045, 0.019328881055116653, 0.016988398507237434, 0.002153402892872691, -0.004661062266677618, 0.005652185063809156, -0.01599329523742199, 0.03263937681913376, 0.0010627700248733163, -0.028053943067789078, 0.001537434058263898, -0.013000025413930416, -0.055471021682024, -0.04372084513306618, -0.005898970644921064, -0.04193761944770813, -0.00435059005394578, -0.035600803792476654, 0.012753239832818508, 0.015173329971730709, 0.015030035749077797, 0.032050278037786484, 0.003230104222893715, 0.025474635884165764, 0.02579306997358799, -0.010954093188047409, 0.016080863773822784, 0.014313560910522938, 0.004028176888823509, -0.0033316046465188265, 0.01374038215726614, 0.03327624499797821, 0.011328252032399178, 0.0012717415811493993, 0.021366851404309273, 0.04665042832493782, -0.04158734530210495, 0.0650240108370781, -0.028754495084285736, -0.05770004913210869, 0.014663837850093842, 0.02912069298326969, -0.008971848525106907, -0.004147589206695557, -0.04263817146420479, 0.028770416975021362, -0.022815721109509468, 0.03111089952290058, -0.06324078142642975, -0.02219477668404579, -0.0012000942369922996, 0.01705208420753479, 0.009346007369458675, -0.003882891731336713, -0.02146238088607788, 0.012299472466111183, 0.00496755400672555, 0.03639688715338707, 0.003453007433563471, -0.03929462656378746, -0.012235785834491253, 0.016088824719190598, 0.02155791036784649, 0.010564013384282589, 0.06922732293605804, 0.02186042256653309, -0.013151280581951141, 0.02423274703323841, -0.0009085290366783738, -0.0010478434851393104, 0.022178854793310165, 0.02466263249516487, 0.0004644643049687147, 0.010492365807294846, 0.022481366991996765, 0.02916845865547657, 0.02700311504304409, -0.0265254657715559, -0.02496514283120632, 0.012402963824570179, -0.031397487968206406, -0.02496514283120632, 0.02619110979139805, 0.025681616738438606, -0.024041688069701195, 0.01428171806037426, 0.002973367692902684, -0.022863486781716347, -0.03042626939713955, -0.009799773804843426, -0.0036599887534976006, -0.0020956869702786207, 0.016232119873166084, -0.01473548449575901, -0.031620390713214874, -0.006054206285625696, -0.015762431547045708, 0.030060071498155594, -0.024774083867669106, -0.05696765333414078, -0.02813355065882206, 0.05808217078447342, -0.016303766518831253, -0.01300798635929823, -0.0035485371481627226, -0.04986660182476044, 0.034390758723020554, -0.024439729750156403, 0.030219286680221558, -0.047000702470541, 0.009131064638495445, 0.001184172579087317, -0.0404091402888298, 0.01339806616306305, -0.009210673160851002, 0.0663614273071289, -0.020841436460614204, -0.02372325398027897, -0.02219477668404579, 0.013230889104306698, -0.018230287358164787, -0.01990205980837345, -0.0548023097217083, 0.007220467086881399, 0.009465419687330723, 0.028706731274724007, -0.037797991186380386, -0.00774588156491518, 0.03547343239188194, -0.0056840283796191216, 0.009003691375255585, -0.02307046763598919, -0.0004450597916729748, 0.0367790050804615, -0.0006149736582301557, 0.016606278717517853, -0.0250129085034132, 0.02030010148882866, -0.0018001412972807884, 0.03474103659391403, -0.010158010758459568, -0.021064339205622673, 0.019249271601438522, 0.0033136929851025343, 0.017720794305205345, 0.008131981827318668, 0.015754470601677895, -0.012944299727678299, -0.013254771940410137, 0.013183124363422394, 0.013501557521522045, -0.02030010148882866, -0.011105349287390709, 0.028834104537963867, 0.00910718273371458, -0.017068006098270416, 0.0016210227040573955, -0.01523701660335064, 0.039230939000844955, 0.019137820228934288, 0.004903867375105619, 0.015722626820206642, 0.0210802610963583, -0.005154633428901434, 0.016988398507237434, -0.015857961028814316, 0.008629532530903816, 0.035600803792476654, -0.0005881058750674129, 0.002022049156948924, -0.011113310232758522, 0.00047068370622582734, 0.0049277497455477715, -0.0046411603689193726, 0.007654332090169191, 0.005691988859325647, 0.015603214502334595, 0.011646685190498829, -0.02163751982152462, 0.02128724195063114, 0.018771622329950333, 0.006205461919307709, -0.018405424430966377, -0.02125540003180504, -0.03166815638542175, 0.035632647573947906, -0.05209562927484512, 0.002692748559638858, 0.019838372245430946, -0.016415217891335487, 0.05881456658244133, -0.00952114537358284, 0.06833571195602417, -0.005891009699553251, -0.00789713766425848, -0.010683425702154636, -0.04410296306014061, 0.023165997117757797, -0.006647287867963314, -0.003984392154961824, 0.006233325228095055, -0.011041662655770779, 0.01054013054817915, -0.005246182903647423, 0.027735510841012, 0.01717945747077465, -0.033308085054159164, 0.004872024059295654, 0.027815118432044983, -0.010277423076331615, -0.030330738052725792, -0.014942466281354427, 0.023946158587932587, 0.001501610386185348, -0.012578101828694344, -0.0018240237841382623, -0.01081875991076231, -0.016558513045310974, 0.012387041933834553, -0.022147011011838913, -0.043466098606586456, -0.007829470559954643, 0.049134206026792526, -0.04149181395769119, 0.020618533715605736, 0.004099824465811253, -0.013310497626662254, -0.00850216019898653, -0.016765495762228966, -0.012060647830367088, -0.018293973058462143, -0.0037754205986857414, -0.050312407314777374, -0.03372205048799515, -0.017800401896238327, -0.059355903416872025, -0.008470316417515278, -0.01393940206617117, -0.016128629446029663, -0.028977397829294205, 0.013151280581951141, -0.02986901067197323, 0.018676092848181725, -0.004521748051047325, 0.008820592425763607, 0.015650980174541473, -0.04856102541089058, 0.009505223482847214, 0.0011573047377169132, 0.0025016888976097107, 0.018580563366413116, -0.006002461072057486, 0.063272625207901, -0.0023942177649587393, -0.0012080550659447908, 0.011439703404903412, 0.007606567349284887, -0.0059785787016153336, 0.029248066246509552, -0.02916845865547657, -0.04359347000718117, 0.004211275838315487, -0.0002930578193627298, 0.03384942188858986, -0.045185636729002, -0.02639809250831604, 0.029884932562708855, 0.025681616738438606, -0.019137820228934288, 0.004868043586611748, 0.01285673025995493, -0.015834078192710876, -0.009481341578066349, -0.012498493306338787, 0.06435529887676239, 0.0032141825649887323, -0.041268911212682724, 0.02705087885260582, 0.03604660928249359, -0.014337443746626377, 0.032830435782670975, 0.02631848305463791, 0.019679157063364983, 0.022529130801558495, 0.011678528040647507, 0.014807132072746754, -0.00590693112462759, -0.02506067417562008, -0.025984128937125206, 0.015850000083446503, -0.01921742781996727, 0.01454442460089922, -0.047319136559963226, 0.011694449931383133, 0.0056840283796191216, 0.0012010892387479544, 0.019838372245430946, -0.03241647407412529, -0.013493596576154232, -0.00768219493329525, -0.03050587698817253, -0.010786916129291058, -0.01834173873066902, -0.029375439509749413, -0.013246810995042324, -0.025681616738438606, 0.008462355472147465, 0.018978603184223175, 0.01635153219103813, -0.0034211641177535057, 0.029072929173707962, 0.02289532870054245, 0.05483415350317955, -0.011455625295639038, -0.004322727210819721, 0.051172174513339996, -0.00822353083640337, -0.03179553151130676, 0.030872074887156487, 0.06852677464485168, -0.02662099525332451, 0.02929583191871643, 0.016176393255591393, 0.04314766451716423, 0.017768558114767075, -0.002782308030873537, 0.01467179786413908, -0.02994861826300621, -0.015316625125706196, 0.04534485191106796, -0.002121559577062726, -0.023882471024990082, -0.008128001354634762, -0.022624660283327103, -0.01881938800215721, 0.040791261941194534, 0.0026151305064558983, 0.029534656554460526, -0.0010966034606099129, -0.01947217434644699, -0.02587267756462097, 0.006368658971041441, -0.005445203278213739, -0.024296434596180916, -0.02090512402355671, 0.014138422906398773, 0.02571346051990986, -0.0019086075481027365, -0.009202712215483189, 0.03189105913043022, -0.03553711622953415, 0.01942441053688526, 0.02090512402355671, -0.007148819975554943, -0.022003717720508575, -0.045153792947530746, 0.018166599795222282, -0.036205828189849854, -0.03168407827615738, 0.016765495762228966, -0.020491160452365875, 0.009688322432339191, -0.0026469738222658634, -0.006961740553379059, -0.00720454566180706, 0.06967312842607498, 0.010484404861927032, 0.009473380632698536, -0.017083927989006042, -0.029359517619013786, -0.03384942188858986, 0.05110848695039749, 0.013899598270654678, -0.02219477668404579, -0.027066800743341446, -0.03894434869289398, -0.017386438325047493, -0.02030010148882866, -0.02233807183802128, -0.02297493815422058, -0.00442621810361743, -7.214496872620657e-05, -0.006062167230993509, 0.008740984834730625, 0.008072275668382645, -0.02264058217406273, 0.03349914774298668, -0.02345258742570877, 0.04575881361961365, 0.0029753579292446375, 0.012044725939631462, 0.0063965218141674995, -0.017688950523734093, -0.022083325311541557, -0.02873857319355011, -0.04977107048034668, 0.0038669700734317303, -0.051872726529836655, 0.05505705624818802, -0.02644585631787777, -0.019105976447463036, 0.0051347315311431885, -0.01604105904698372, -0.027019035071134567, -0.020236413925886154, 0.005413359962403774, -0.010571974329650402, -0.0560123547911644, -0.06903626024723053, 0.009592792950570583, -0.030155600979924202, 0.01549176312983036, 0.004147589206695557, 0.02249728888273239, -0.0004124701954424381, 0.014926544390618801, 0.03327624499797821, 0.028356455266475677, 0.015754470601677895, -0.0018578572198748589, 0.013557283207774162, 0.014241913333535194, -0.0373203419148922, -0.014297639951109886, -0.006714954972267151, -0.03359467536211014, 0.024248668923974037, -0.007793646305799484, 0.018023304641246796, 0.020793672651052475, -0.024009844288229942, 0.019328881055116653, 0.02310231141746044, -0.011885509826242924, 0.002853955375030637, 0.024598944932222366, -0.005660145543515682, 0.0289455559104681, -0.04973922669887543, 0.029916776344180107, -0.001439913990907371, 0.018039226531982422, 0.0100863641127944, 0.02523581124842167, -0.008406629785895348, -0.000993112800642848, -0.007156780455261469, 0.010611778125166893, -0.029709793627262115, 0.023086389526724815, -0.025777148082852364, -0.006488071288913488, 0.011598920449614525, -0.025856755673885345, -0.027671823278069496, -0.02362772449851036, -0.006945818662643433, -0.014488698914647102, -0.017688950523734093, 0.010635660961270332, 0.011312330141663551, 0.014074736274778843, -0.005345693323761225, -0.01569078303873539, 0.008589728735387325, 0.007996647618710995, -0.013191085308790207, 0.004042108077555895, 0.015022074803709984, -0.004458061419427395, -0.003001230536028743, -0.01692471094429493, 0.014058814384043217, 0.016088824719190598, -0.011280487291514874, -9.975907596526667e-05, -0.03837117180228233, -0.009568910114467144, 0.005664126016199589, -0.04257448390126228, -0.009250476956367493, -0.010802838020026684, -0.012641788460314274, 0.0015971402171999216, 0.00910718273371458, -0.0012478590942919254, 0.010587895289063454, 0.007678214460611343, 0.009608713909983635, 0.010030638426542282, 0.002633042400702834, 0.007972764782607555, -0.021064339205622673, 0.011670568026602268, 0.010181893594563007, 0.019742842763662338, -0.003980411682277918, -0.0021912166848778725, -0.010874485597014427, 0.02536318451166153, 0.019806530326604843, -0.004107784945517778, -0.022433601319789886, 0.021175790578126907, -0.0015434047672897577, -0.010619739070534706, 0.0016001255717128515, 0.008382747881114483, -0.022656504064798355, 0.012251707725226879, 0.03493209555745125, -0.01241888478398323, 0.050567153841257095, -0.01909005455672741, 0.015221094712615013, 0.010165971703827381, -0.020761828869581223, 0.009146986529231071, 0.024901457130908966, -0.03690638020634651, 0.06047041714191437, -0.026668759062886238, 0.009966951794922352, 0.026652837172150612, -0.014870818704366684, 0.01765710674226284, -0.011654646135866642, 0.01639929786324501, 0.0007363762124441564, -0.011797941289842129, 0.0015643018996343017, -0.02778327465057373, 0.022688347846269608, 0.0180869922041893, 0.025602009147405624, 0.026684680953621864, -0.026031894609332085, -0.0077578229829669, -0.0006403487641364336, 0.0009622646030038595, 0.00011281979823252186, 0.0746406838297844, -0.018039226531982422, 0.0047406707890331745, 0.0009662449592724442, 0.0541972890496254, 0.03821195289492607, -0.0014578258851543069, -0.027624059468507767, 0.008661376312375069, -0.010850602760910988, 0.024121295660734177, 0.014703641645610332, -0.021143948659300804, -0.01060381717979908, 0.004473982844501734, 0.025474635884165764, 0.02203555963933468, 0.0427655465900898, -0.0025554243475198746, -0.006209442391991615, -0.01421803142875433, 0.02821316011250019, 0.01187754888087511, 0.009377850219607353, 0.015483802184462547, 0.02186042256653309, 0.027751430869102478, -0.010500326752662659, -0.014249874278903008, -0.00020300100732129067, 0.007801607251167297, -0.006476130336523056, -0.012347238138318062, 0.0010160001693293452, -0.002233011182397604, 0.01460811123251915, -0.00034430561936460435, -0.0014150363858789206, -0.031063133850693703, -0.006754758767783642, 0.034390758723020554, -0.0457906574010849, -0.002262864261865616, -0.010842641815543175, 0.06101175397634506, -0.024821847677230835, -0.001057794434018433, -0.0019722941797226667, 0.017641184851527214, 0.0026967290323227644, 0.007479194086045027, -0.005321810487657785, -0.001886715181171894, -0.015181290917098522, -0.05149060860276222, -0.008557885885238647, -0.005166574846953154, -0.026939427480101585, 0.013772225007414818, 0.004179432522505522, -0.019535861909389496, 0.015420115552842617, 0.025347262620925903, -0.0313338041305542, -0.021191712468862534, 0.01926519349217415, 0.004792416002601385, 0.03461366146802902, 0.018421346321702003, -0.002909681061282754, -0.0007786680944263935, -0.008207608945667744, 0.03318071365356445, -0.00952114537358284, 0.01486285775899887, -0.011614842340350151, 0.015778353437781334, -0.00652389507740736, 0.02735339105129242, 0.00952114537358284, -0.025856755673885345, -0.02826092392206192, 0.017895931378006935, 0.014496659860014915, 0.01460811123251915, -0.02307046763598919, 0.001107549644075334, 0.026557307690382004, -0.013668734580278397, -0.013644851744174957, 0.0007881215424276888, -0.03690638020634651, 0.005703930277377367, -0.028149472549557686, 0.01990205980837345, 0.04365715757012367, -0.013605047948658466, 0.013915520161390305, 0.03744771331548691, 0.01921742781996727, 0.0055725765414536, 0.014321521855890751, -0.0048043569549918175, 0.03907172381877899, 0.017497891560196877, 0.009417654946446419, 0.0005075025255791843, 0.017163535580039024, -0.010078403167426586, 0.05846428871154785, 0.01380406878888607, -0.052732497453689575, 0.014942466281354427, 0.011885509826242924, -0.009266398847103119, 0.009592792950570583, 0.03668347746133804, -0.012219864875078201, 0.00809615757316351, -0.013955323956906796, -0.03534605726599693, 0.014974309131503105, 0.022322149947285652, 0.01735459640622139, 0.043943747878074646, 0.04502641782164574, 0.013358262367546558, 0.028165394440293312, 0.008167805150151253, -0.0010717258555814624, 0.014958388172090054, -0.017036162316799164, -0.011200878769159317, 0.040313612669706345, 0.00025001962785609066, -0.04069573059678078, -0.032225415110588074, -0.032177649438381195, -0.027687745168805122, 0.00325597682967782, -0.007467252667993307, 0.032575689256191254, -0.0201727282255888, 0.026414012536406517, 0.030267052352428436, -0.006476130336523056, -0.0021474321838468313, 0.01674957387149334, 0.016256002709269524, 0.013015947304666042, 0.004983475897461176, 0.015786314383149147, -0.01775263622403145, 0.01722722314298153, -0.024391964077949524, -0.02216293290257454, -0.004004294518381357, 0.007156780455261469, -0.038275640457868576, 0.04069573059678078, 0.038148269057273865, 0.006332835182547569, -0.02506067417562008, 0.004135647788643837, -0.004167491104453802, -0.017338674515485764, 0.03324440121650696, -0.009202712215483189, -0.00014553380606230348, -0.02959834225475788, 0.03346730396151543, 0.021494224667549133, -0.008717101998627186, 0.005063083954155445, 0.034167855978012085, -0.0003231596783734858, 0.017195379361510277, -0.0008398669306188822, 0.01354932226240635, 0.004171471577137709, 0.016606278717517853, -0.023771019652485847, -0.019663235172629356, -0.00017650639347266406, -0.014616072177886963, 0.024726318195462227, -0.013159241527318954, 0.01015005074441433, 0.01791185326874256, -0.003960509784519672, 0.04407111927866936, 0.006070128176361322, -0.005170554853975773, -0.03668347746133804, -0.022131090983748436, -0.02813355065882206, 0.039103567600250244, -0.018946761265397072, -0.03716112673282623, -0.017864089459180832, 0.010237619280815125, -0.009162908419966698, -0.0017623273888602853, -0.0005239217425696552, 0.014313560910522938, 0.02458302304148674, 0.03700190782546997, 0.043083976954221725, -0.018453190103173256, -0.01101777981966734, -0.004302825313061476, -0.017497891560196877, -0.012538297101855278, -0.005863146856427193, 0.03020336478948593, 0.011702410876750946, 0.035250525921583176, 0.006631366442888975, 0.0018857201794162393, -0.03591923788189888, -0.02826092392206192, 0.014719563536345959, -0.029916776344180107, -0.004736690316349268, -0.012673631310462952, 0.004358550999313593, -0.0042152563109993935, -0.015101682394742966, 0.011176996864378452, 0.005811401177197695, 0.001039882656186819, 0.011065545491874218, -0.00837478693574667, 0.0024320315569639206, 0.008748945780098438, -0.03480472043156624, -0.020809592679142952, 0.026891663670539856, -0.0008985779713839293, -0.028292767703533173, 0.021653439849615097, -0.029407283291220665, 0.002410139422863722, -0.005473066587001085, -0.03751140087842941, -0.013859794475138187, -0.0026350326370447874, -0.007956843823194504, 0.01800738275051117, -0.02778327465057373, -0.005357634276151657, -0.01069138664752245, -0.017848167568445206, 0.003896823152899742, -0.03486840799450874, -0.0025852774269878864, 0.0012647758703678846, -0.004259040579199791, -0.009919186122715473, -0.046109091490507126, -0.0007184643181972206, 0.013557283207774162, -0.04473983123898506, 0.0025176105555146933, 0.018978603184223175, 0.02496514283120632, -0.00831110030412674, 0.024614866822957993, 0.007542880717664957, 0.006503993179649115, -0.012594022788107395, 0.024821847677230835, 0.049962129443883896, 0.007913058623671532, 0.006949799135327339, -0.03505946695804596, 0.001408070675097406, 0.012522376142442226, 0.03410416841506958, -0.003636106150224805, 0.00824741367250681, -0.0008035456412471831, 0.0030390445608645678, 0.010142089799046516, -0.014560346491634846, -0.003490821225568652, 0.017895931378006935, -0.006416424177587032, 0.005998480599373579, 0.00891612283885479, 0.0027783275581896305, -0.005556655116379261, 0.01909005455672741, -0.012410923838615417, -0.013732421211898327, -0.023771019652485847, -0.01549176312983036, 0.00826333463191986, -0.003723675385117531, 0.0036102335434406996, -0.015316625125706196, -0.015189251862466335, 0.009441536851227283, -0.019281115382909775, 0.006726895924657583, -0.01393940206617117, -0.004243119154125452, 0.002545473398640752, 0.017083927989006042, 0.00626516854390502, -0.02748076431453228, -0.012538297101855278, -0.0031365645118057728, -0.01926519349217415, -0.0023345116060227156, 0.010516248643398285, 0.017816323786973953, -0.02934359572827816, 0.009266398847103119, 0.027671823278069496, 0.01296022068709135, 0.002338492078706622, 0.013708538375794888, -0.0267961323261261, 0.004601356107741594, -0.01649482734501362, -0.0016648073215037584, -0.003500772174447775, -0.0077578229829669, 0.0084384735673666, -0.00013284625310916454, -0.0017712833359837532, -0.01757749915122986, 0.014934505335986614, -0.026780210435390472, -0.01916966401040554, 0.003864979837089777, 0.02007719688117504, 0.0047486312687397, -0.030442189425230026, -0.03582370653748512, -0.028754495084285736, -0.004310786258429289, -0.029677951708436012, 0.013119437731802464, -0.011742214672267437, 0.0006716945208609104, -0.0017185428878292441, -0.02682797610759735, -0.006344776600599289, 0.014679758809506893, 0.0037813913077116013, -0.009035535156726837, -0.019965745508670807, -0.020825514569878578, -0.019026368856430054, -0.026079658418893814, -0.03808458149433136, -0.02354811690747738, -0.016136590391397476, 0.0316363126039505, 0.00917086936533451, 0.004322727210819721, 0.015308664180338383, 0.005608400329947472, 0.004836200270801783, -4.4064403482479975e-05, -0.019790608435869217, -0.016415217891335487, -0.019663235172629356, -0.003082829061895609, 0.009385811164975166, 0.015252938494086266, -0.011797941289842129, -0.05037609115242958, -0.014918583445250988, 0.02354811690747738, -0.02463078871369362, -0.008740984834730625, -0.018150677904486656, -0.024423807859420776, -0.0010995888151228428, -0.01079487707465887, -0.012148217298090458, -0.014321521855890751, 0.023341136053204536, 0.002195197157561779, -0.02158975414931774, -0.010611778125166893, 0.0037037732545286417, 0.009728126227855682, 0.01222782488912344, -0.02047523856163025, -0.0040918635204434395, -0.06801728159189224, -0.006149736233055592, -0.008052373304963112, 0.01826212927699089, -0.011678528040647507, -0.01460811123251915, 0.006591562181711197, 0.0033833500929176807, -0.013493596576154232, 0.032177649438381195, -0.01791185326874256, -0.003409222699701786, 0.00407992210239172, 0.00876486673951149, -0.006217403337359428, 0.023054545745253563, 0.002631052164360881, -0.005851205438375473, -0.007602586876600981, -0.009003691375255585, -0.006480110343545675, 0.013286614790558815, -0.009091260842978954, -0.010954093188047409, -0.01873977854847908, 0.012673631310462952, 0.00048710289411246777, 0.0017344644293189049, 0.005556655116379261, -0.024805927649140358, -0.011264565400779247, -0.0016259982949122787, -0.0037395970430225134, 0.01951994001865387, 0.005819362122565508, -0.016112707555294037, 0.005755675490945578, 0.004354570526629686, 0.01246665045619011, -0.011105349287390709, -0.0033077222760766745, 0.02510843798518181, 0.00891612283885479, -0.00590693112462759, -0.009226595051586628, -0.009282320737838745, 0.006165658123791218, -0.017290908843278885, -0.0004900881904177368, 0.001874773995950818, 0.01821436546742916, -0.008151883259415627, -0.01209249161183834, -0.01196511834859848, -0.015857961028814316, -0.008319061249494553, 0.005293947644531727, -0.010046559385955334, 0.003729645861312747, 0.015229055657982826, 0.061393871903419495, 0.00870118010789156, 0.0014647915959358215, -0.001113520236685872, -0.003570429515093565, 0.006380600389093161, 0.008963887579739094, 0.013063712045550346, 0.020968809723854065, -0.004179432522505522, 0.01649482734501362, -0.020841436460614204, 0.004828239791095257, 0.03808458149433136, -0.0004428208339959383, -0.005922853015363216, 0.007085133343935013, 0.005337732378393412, -0.007980725727975368, 0.0020210540387779474, -0.01770487241446972, -0.009465419687330723, 0.012649749405682087, 0.01447277795523405, 0.016956554725766182, -0.014504620805382729, 0.004022206179797649, -0.0063487570732831955, 0.01440909132361412, 0.007578704040497541, 0.028053943067789078, 0.00413166731595993, 0.033785734325647354, 0.011240683495998383, -0.010030638426542282, 0.036810848861932755, 0.023054545745253563, 0.014791210182011127, -0.0039545390754938126, 0.010269463062286377, 0.02463078871369362, -0.021605676040053368, 0.009091260842978954, -0.017068006098270416, -0.01574650965631008, 0.01783224567770958, 0.007526958826929331, -0.007996647618710995, 0.007594625931233168, -0.019663235172629356, 0.003405242459848523, -0.0012826877646148205, -0.040058866143226624, 0.011320291087031364, -0.009139025583863258, 0.022704269737005234, 0.0020031423773616552, -0.008772827684879303, -0.002412129659205675, -0.006392541341483593, -0.014592190273106098, 0.004326707683503628, -0.014528503641486168, -0.051140330731868744, -0.019249271601438522, -0.017768558114767075, 0.0031305940356105566, 0.021748971194028854, 0.0016180374659597874, 0.014791210182011127, 0.0016618219669908285, -0.015754470601677895, -0.019981667399406433, 0.003950558602809906, -0.019742842763662338, 0.03259161114692688, 0.04142812639474869, -0.022353993728756905, -0.004187393467873335, -0.02357996068894863, 0.020029433071613312, -0.004828239791095257, -0.012060647830367088, 0.024551181122660637, -0.013039829209446907, 0.002091706497594714, 0.02899331972002983, -0.023866549134254456, -0.0020499122329056263, -0.02181265689432621, 0.01861240528523922, -0.0037535284645855427, 0.005751695018261671, -0.005942754913121462, -0.012594022788107395, -0.027369312942028046, -0.003588341409340501, -0.012641788460314274, -0.0015414145309478045, 0.011893470771610737, -0.002059863181784749, 0.0064482674933969975, 0.03134972229599953, 0.014751406386494637, 0.015531566925346851, -0.007343859877437353, -0.003391311038285494, -0.024519337341189384, -0.017163535580039024, -0.0017205330077558756, 0.00020461804524529725, 0.009815695695579052, -0.02813355065882206, -0.03486840799450874, -0.0007254300871863961, -0.01354932226240635, -0.004716787952929735, 0.013469713740050793, 0.01760934293270111, 0.015635058283805847, -0.010579935275018215, 0.01730683073401451, -0.01878754422068596, 0.032050278037786484, 0.003156466642394662, 0.017466047778725624, -0.009377850219607353, 0.004211275838315487, -0.0038052736781537533, 0.0016150521114468575, 0.0022927173413336277, 0.02297493815422058, -0.008581767790019512, -0.02143053710460663, 0.019838372245430946, 0.00033982767490670085, 0.023006780073046684, -0.0001403095229761675, -0.02536318451166153, -0.019360722973942757, -0.0029872991144657135, -0.010325188748538494, 0.005194437690079212, 0.017927775159478188, -0.002891769167035818, -0.00882855337113142, -0.030314816161990166, -0.02267242595553398, 0.003502762410789728, 0.00863749347627163, 0.010715268552303314, -0.014870818704366684, 0.0018289992585778236, 0.012904495000839233, 0.013382145203649998, -0.005234241485595703, 0.013875715434551239, -0.0048043569549918175, 0.023388899862766266, -0.008406629785895348, 0.0059706177562475204, 0.002071804367005825, -0.0005007855943404138, -0.03505946695804596, 0.020921044051647186, 0.026159267872571945, 0.00017401862714905292, -0.073430635035038, -0.004056039731949568, 0.029311753809452057, 0.014488698914647102, 0.014878779649734497, -0.009545027278363705, -0.01861240528523922, 0.025251733139157295, -0.005481027066707611, 0.03198659047484398, -0.02047523856163025, 0.022353993728756905, -0.01120883971452713, -0.014624033123254776, 0.00895592663437128, -0.0137164993211627, 0.008613611571490765, -0.0043386491015553474, 0.03002822771668434, -0.02596820704638958, -0.0011791969882324338, 0.016287844628095627, -0.00550888990983367, 0.022083325311541557, -0.005835284013301134, -0.01473548449575901, 0.013413988053798676, 0.021717127412557602, -0.0021056379191577435, -0.0009090265375562012, 0.004776494111865759, 0.023691412061452866, 0.0349639393389225, 0.009505223482847214, 0.023181919008493423, -0.009688322432339191, -0.010723229497671127, 0.01942441053688526, -0.01054013054817915, 0.013477674685418606, -0.01292041689157486, 0.008549924939870834, -0.010619739070534706, -0.008076256141066551, 0.009640557691454887, -0.020331943407654762, 0.0006453242967836559, 0.009927147068083286, 0.004473982844501734, 0.008207608945667744, -0.009194751270115376, -0.017975540831685066, -0.002225050237029791, 0.00420729536563158, 0.009361928328871727, -0.025888599455356598, 0.02908884920179844, 0.019376644864678383, 0.01006248127669096, 0.002853955375030637, -0.009003691375255585, 0.0349639393389225, -0.0012498493306338787, -0.00012749756569974124, -0.004290883895009756, 0.016765495762228966, -0.014719563536345959, 0.015881843864917755, 0.00028683841810561717, -0.006651268340647221, -0.003976431675255299, -0.0012070599477738142, 0.005827323067933321, 0.002195197157561779, -0.022147011011838913, -0.013788146898150444, -0.005839264020323753, 0.004876004531979561, -0.00020586192840710282, -0.010739151388406754, 0.006989603396505117, 0.007749862037599087, -0.011845706030726433, -0.008645454421639442, -0.008844475261867046, 0.008653415367007256, -0.016940632835030556, 0.011503390036523342, -0.02090512402355671, 0.018166599795222282, 0.006862230133265257, -0.0094972625374794, -0.063272625207901, -0.01682918146252632, -0.02695534937083721, 0.02362772449851036, 0.008279256522655487, -0.04865655675530434, -0.008772827684879303, -0.011845706030726433, -0.007503076456487179, 0.003365438198670745, -0.04454876855015755, -0.01735459640622139, 0.045153792947530746, 0.005166574846953154, 0.019328881055116653, 0.014854896813631058, 0.008733023889362812, 0.027846962213516235, -0.006097991019487381, -0.023309292271733284, -0.0063965218141674995, -0.0015145466895774007, 0.011766097508370876, 0.0021733047906309366, 0.005691988859325647, -0.00292162224650383, 0.011463586241006851, 0.004629218950867653, 0.02042747475206852, 0.02986901067197323, -0.003076858352869749, -0.0028380337171256542, 0.019488096237182617, 0.013015947304666042, 0.023707333952188492, 0.0011483487905934453, 0.028372375294566154, 0.021924108266830444, 0.014990231022238731, -0.007522978354245424, -0.053942542523145676, -0.015396233648061752, -0.010333149693906307, 0.011431743390858173, 0.016717730090022087, -0.0004744153411593288, 0.024742240086197853, 0.016733651980757713, -0.019806530326604843, 0.008868358097970486, -0.021733049303293228, 0.012665670365095139, -0.02977348119020462, -0.003194280434399843, 0.008327021263539791, -0.030649172142148018, 0.0007418492459692061, 0.010221697390079498, 0.016160471364855766, -0.00203697569668293, 0.017513811588287354, -0.0008189697400666773, 0.019535861909389496, -0.028053943067789078, -0.01601717807352543, -0.014512581750750542, 0.006551757920533419, -0.01060381717979908, -0.0006856259424239397, -0.011057584546506405, 0.005102888215333223, -0.013230889104306698, 0.015762431547045708, -8.284232171718031e-05, 0.0012438787380233407, 0.02095288783311844, 0.015467880293726921, -0.029789403080940247, 0.02077775076031685, -0.02506067417562008, -0.001874773995950818, 0.028101708739995956, 0.006257207598537207, 0.006030323915183544, 0.01473548449575901, 0.004199334420263767, 0.01752973347902298, 0.008056353777647018, 0.008358865045011044, 0.008494199253618717, -0.006492051761597395, 0.008597689680755138, 0.027719588950276375, -0.009775891900062561, 0.0015364389400929213, -0.03518684208393097, 0.001211040304042399, -0.01609678566455841, 0.01934480108320713, -0.009608713909983635, -0.004278942942619324, -0.0033992717508226633, 0.00891612283885479, 0.0020459317602217197, -0.010516248643398285, 0.00197428441606462, 0.011590959504246712, -0.020093118771910667, 0.018707936629652977, 0.004000314045697451, 0.024248668923974037, 0.0005418335786089301, -0.0033574774861335754, 0.005616361275315285, 0.015802234411239624, 0.02342074364423752, -0.013382145203649998, 0.01873977854847908, -0.0046331994235515594, 0.010747112333774567, -0.0014558356488123536, -0.008068295195698738, -0.004692905582487583, 0.0021733047906309366, -0.024216825142502785, 0.0028101708739995956, -0.007877235300838947, 0.013079633936285973, -0.013015947304666042, 0.010579935275018215, 0.021016575396060944, 0.01346175279468298, -0.008239452727138996, 0.008446433581411839, -0.0030509857460856438, -0.0010219707619398832, -0.006579620763659477, -0.010078403167426586, -0.009831617586314678, -0.018246207386255264, 0.036078453063964844, -0.00224495236761868, 0.0025932383723556995, 0.016303766518831253, 0.020411552861332893, 0.001012517255730927, 0.012299472466111183, 0.03227318078279495, -0.01951994001865387, -0.0068662106059491634, -0.017768558114767075, -0.005481027066707611, -0.018580563366413116, -0.020220492035150528, 0.0005052635096944869, -0.008629532530903816, -0.013095554895699024, 0.016279885545372963, -0.02143053710460663, 0.0033216536976397038, -0.005755675490945578, -0.0014598160050809383, -0.011853666976094246, -0.022959016263484955, 0.020156806334853172, 0.007240369450300932, 0.0045336890034377575, -0.0004084897809661925, -0.005787518806755543, -0.017163535580039024, 0.04856102541089058, 0.005230261012911797, 0.03150894120335579, 0.015826117247343063, 0.012944299727678299, -0.015022074803709984, -0.010747112333774567, 0.005369575694203377, 0.008709141053259373, -0.004975514952093363, -0.00025748289772309363, 0.016240080818533897, -0.010651581920683384, -0.02826092392206192, -0.004442139528691769, -0.006165658123791218, -0.032575689256191254, 0.012904495000839233, 0.007642390672117472, 0.013541361317038536, -0.012912455946207047, -0.0034490269608795643, -0.0008637493592686951, -0.0035564980935305357, -0.007865293882787228, -0.0027703666128218174, -0.014663837850093842, 0.0023663549218326807, -0.011511350981891155, -0.015595253556966782, -0.014663837850093842, -0.014647915959358215, -0.024344198405742645, -0.0037535284645855427, -0.01639929786324501, 0.00509492726996541, -0.012020844034850597, -0.004923769738525152, -0.0009851519716903567, -0.013278653845191002, -0.0010647601447999477, 0.0023882470559328794, -0.0037634794134646654, 0.009385811164975166, -0.0009503233595751226, 0.009226595051586628, -0.00414360873401165, -0.006233325228095055, -0.013151280581951141, 0.004609317053109407, -0.0033335948828607798, -0.018548719584941864, 0.010349070653319359, -0.004247099626809359, -0.013995128683745861, 0.01460811123251915, 0.0662977397441864, 0.01830989494919777, 0.0032718984875828028, 0.01079487707465887, -0.004111765418201685, -0.026334404945373535, -0.011606881394982338, 0.0020499122329056263, -0.002485767239704728, 0.010078403167426586, 0.005226281005889177, -0.006014402490109205, 0.007889176718890667, 0.0023842668160796165, -0.05028056353330612, 0.01088244654238224, 0.010802838020026684, 0.015053917653858662, -0.020538926124572754, 0.026286639273166656, 0.0050352211110293865, -0.022815721109509468, -0.017338674515485764, 0.01406677532941103, -0.006575640290975571, 0.013167202472686768, 0.0036779006477445364, -0.009361928328871727, 0.01670180819928646, 0.009258437901735306, 0.018946761265397072, -0.02007719688117504, -0.002065833657979965, 0.002018068917095661, -0.0019155732588842511, 0.01891491748392582, -0.012267629615962505, 0.01187754888087511, 0.01674957387149334, 0.006360698025673628, 0.011582998558878899, -0.00917086936533451, 0.011391938664019108, -0.010699347592890263, -0.02012496255338192, -0.004899886902421713, -0.0035843609366565943, -0.009067378006875515, 0.010452562011778355, -0.002782308030873537, -0.01773671619594097, -0.037415873259305954, -0.0002085984597215429, 0.0050113387405872345, 0.018500953912734985, 0.005075025372207165, 0.017561577260494232, -0.013533400371670723, 0.0018508915090933442, -0.008366825990378857, -0.027146408334374428, 0.009664440527558327, -0.009871421381831169, -0.001140387961640954, -0.02436012029647827, -0.005051142536103725, -0.018039226531982422, -0.0002540000423323363, 0.003847068175673485, -0.014082697220146656, -0.01881938800215721, -0.0009921176824718714, 0.012578101828694344, -0.03518684208393097, 0.01921742781996727, 0.020586689934134483, -0.013278653845191002, 0.02657322958111763, -0.007877235300838947, 0.005337732378393412, 0.025761226192116737, 0.013843872584402561, -0.018198443576693535, -0.020698141306638718, 0.01530070323497057, 0.003490821225568652, 0.00945745874196291, 0.006563699338585138, -0.0010448581306263804, -0.014385208487510681, 0.0033933010417968035, -0.019886137917637825, -0.004211275838315487, 0.007017466239631176, 0.0025076596066355705, 0.0021613636054098606, -0.0020578729454427958, 0.00604624580591917, 0.009146986529231071, -0.012052686884999275, 0.011678528040647507, 0.013326418586075306, -0.00455359136685729, 0.010325188748538494, 0.004979495424777269, 0.0025633852928876877, 0.009552988223731518, -0.00014690207899548113, -0.008406629785895348, -0.020809592679142952, -0.01982245035469532, -0.0076622930355370045, 0.0071846432983875275, 0.008645454421639442, -0.026939427480101585, -0.0056999498046934605, 0.001651870901696384, -0.018851229920983315, -0.0061258538626134396, 0.0032360749319195747, -0.014011049643158913, 0.0025733362417668104, 0.013899598270654678, -0.003916725516319275, 0.020188648253679276, 0.004752611741423607, -0.01770487241446972, 0.0009279335499741137, -0.0035923216491937637, 0.010898367501795292, 0.0007995652267709374, -0.013143319636583328, 0.01921742781996727, 0.003329614643007517, 0.0063248747028410435, -0.005393458064645529, 0.005317830480635166, -0.011368056759238243, 0.021796735003590584, -0.03397679701447487, -0.0007488150149583817, 0.017673028632998466, 0.0070771723985672, 0.023691412061452866, -0.0005821352242492139, 0.019376644864678383, -0.004872024059295654, -0.01047644391655922, 0.008092177100479603, -0.019854294136166573, 0.011742214672267437, -0.010221697390079498, -0.01709984987974167, -0.008629532530903816, 0.01073119044303894, -0.0033216536976397038, -0.021748971194028854, 0.03763877600431442, -0.019663235172629356, 0.012737317942082882, -0.010317227803170681, -0.015786314383149147, -0.01062770001590252, -0.019965745508670807, 0.004939691163599491, 0.02657322958111763, 0.03515499830245972, 0.03270306438207626, 0.019153742119669914, -0.009186790324747562, -0.002798229455947876, -7.811558316461742e-05, 0.016287844628095627, -0.03604660928249359, 0.010524208657443523, -0.015006152912974358, 0.006647287867963314, 0.007729959674179554, -0.019233349710702896, 0.009338046424090862, -0.026366248726844788, -0.00999879464507103, 0.02393023669719696, 8.912391058402136e-05, 0.01735459640622139, 0.0017314791912212968, -0.009839578531682491, -0.008661376312375069, 0.0017265037167817354, 0.006161677651107311, -0.002742503769695759, 0.005616361275315285, 0.009545027278363705, -0.0002619608712848276, -0.011821823194622993, -0.019153742119669914, 0.04028176888823509, -0.007236388977617025, 0.023898392915725708, -0.004943671636283398, 0.005154633428901434, 0.013382145203649998, 0.019376644864678383, 0.001683714217506349, -0.0021553931292146444, -0.010938172228634357, -0.0046809641644358635, -0.007312016561627388, -0.0084384735673666, 0.01062770001590252, -0.022927172482013702, -0.023293370380997658, 0.006404482759535313, 0.01700432039797306, -0.007312016561627388, -0.000999083393253386, 0.007928980514407158, -0.001510566333308816, 0.010508287698030472, -0.017290908843278885, 0.023786941543221474, 0.01054013054817915, 0.01393940206617117, 0.010970015078783035, -0.0030430248007178307, -0.00653583649545908, -0.015539527870714664, 0.0036042630672454834, 0.009982872754335403, -0.0050352211110293865, 0.020188648253679276, 0.016638122498989105, -0.006432345602661371, 0.025203967466950417, -0.01311147678643465, 0.017147613689303398, 0.002434021793305874, 0.011073505505919456, -0.005146672483533621, 0.016988398507237434, -0.017418282106518745, 0.022656504064798355, -0.026429934427142143, -0.008677298203110695, 0.0034331053029745817, -0.015006152912974358, -0.0011234713019803166, -0.014878779649734497, -0.008908161893486977, -3.084819400100969e-05, -0.010500326752662659, -0.0015812186757102609, 0.007224447559565306, 0.018150677904486656, 0.008167805150151253, -0.013812029734253883, -0.005071044899523258, 0.0052820066921412945, 0.003540576435625553, -0.018373580649495125, 0.012331316247582436, 0.00038162199780344963, 0.003540576435625553, -0.001390158897265792, 0.012777121737599373, 0.0011055594077333808, -0.018198443576693535, 0.0186601709574461, 0.029136614874005318, 0.011320291087031364, 0.02077775076031685, -0.009895304217934608, 0.022099247202277184, 0.024598944932222366, 0.002712650690227747, -0.010372953489422798, 0.008358865045011044, -0.014568307437002659, 0.004637179896235466, 0.018071070313453674, 0.009529106318950653, 0.009552988223731518, 0.01589776575565338, -0.01834173873066902, -0.005337732378393412, -0.022592818364501, 0.0035724197514355183, -0.004605336580425501, 0.006010422017425299, 0.011224761605262756, 0.0058711073361337185, -0.01614455133676529, 0.010158010758459568, -0.030171522870659828, 0.004605336580425501, 0.009019613265991211, -0.021573832258582115, 0.0006418414413928986, -0.00863749347627163, -0.005015319213271141, -0.0019673185888677835, -0.013628930784761906, -0.004653101321309805, -0.013119437731802464, 0.010874485597014427, -0.017386438325047493, 0.021414615213871002, 0.02060261182487011, -0.005926833488047123, 0.020093118771910667, 0.012450728565454483, -0.00468494463711977, 0.012124334461987019, -0.001474742661230266, -0.013382145203649998, -0.008900200948119164, -0.009879382327198982, 0.005751695018261671, -0.003299761563539505, -0.0009075339185073972, 0.0031604471150785685, 0.013812029734253883, 0.009353968314826488, 0.008215569891035557, -0.012617905624210835, 0.008239452727138996, 0.024805927649140358, -0.0014817083720117807, -0.0007284153834916651, -0.039613060653209686, -0.007471233140677214, 0.007256290875375271, -0.004501845687627792, -0.001739440020173788, -0.017513811588287354, 0.024423807859420776, -0.018883073702454567, -0.006683111656457186, -0.014011049643158913, 0.0028639063239097595, -0.013143319636583328, -0.009688322432339191, 0.005783538334071636, -0.009441536851227283, 0.008478277362883091, 0.006981642451137304, -0.004569512791931629, -0.002141461707651615, 0.018628327175974846, 0.018771622329950333, 0.02181265689432621, 0.008478277362883091, 0.012371120043098927, 0.009616674855351448, -0.009011652320623398, 4.2198586015729234e-05, 0.018500953912734985, -0.0013493596343323588, -0.02372325398027897, 0.001078691566362977, -0.006026343442499638, 0.014751406386494637, -0.013087593950331211, 0.004402335733175278, -0.0002771361905615777, 0.009680361486971378, -0.00617759907618165, 0.01162280235439539, -0.026605073362588882, -0.0036798908840864897, -0.007917039096355438, -0.009266398847103119, -0.01557933259755373, -0.0019384606275707483, -0.011989000253379345, 0.0035783902276307344, -0.011161074973642826, 0.0018936810083687305, 0.009903265163302422, 0.000562730710953474, 0.037670619785785675, 0.014910622499883175, -0.011797941289842129, -0.006269148550927639, 0.010524208657443523, 0.0021494224201887846, -0.007101054769009352, 0.01352543942630291, -0.004394374787807465, 0.015754470601677895, -0.010388875380158424, -0.008064314723014832, -0.01339806616306305, 0.0016528660198673606, -9.888835484161973e-05, 0.020459316670894623, -0.04015439376235008, 0.012402963824570179, 0.01881938800215721, 0.007101054769009352, 0.007554821670055389, -0.0070134857669472694, 0.02055484615266323, 0.0035226645413786173, -0.016287844628095627, -0.023707333952188492, 0.004883965477347374, 0.006336815655231476, 0.02727378159761429, -0.00824741367250681, 0.0069378577172756195, 0.00850216019898653, -0.02727378159761429, 0.0013503547525033355, 0.012426845729351044, 0.010046559385955334, 0.006452247500419617, -0.013445831835269928, 0.006300991866737604, 0.009210673160851002, 0.025203967466950417, -0.0013672715285792947, 0.029630186036229134, 0.009099221788346767, 0.0003139549808111042, -0.02523581124842167, 0.02453525923192501, 0.007678214460611343, 0.010556052438914776, -0.014050854369997978, -0.015022074803709984, -0.020761828869581223, -0.007801607251167297, 0.009823656640946865, -0.02315007522702217, -0.012594022788107395, 0.02604781463742256, -0.027639979496598244, 0.005047162063419819, 0.028850024566054344, -0.02818131633102894, -0.005090946797281504, 0.0047884355299174786, -0.012251707725226879, 0.01555544976145029, 0.015149448066949844, 0.0006050225929357111, -0.009552988223731518, -0.0010359021835029125, -0.009003691375255585, 0.010985936969518661, 7.730706420261413e-05, 0.016462983563542366, 0.013955323956906796, -0.024041688069701195, -0.02030010148882866, -0.01523701660335064, -0.004378452897071838, 0.025379106402397156, -0.015762431547045708, -0.02587267756462097, -0.0013742372393608093, 0.007196584716439247, 0.0013971246080473065, -0.005417340435087681, -0.010579935275018215, 0.014082697220146656, -0.0018041216535493731, -0.00340325222350657, -0.018500953912734985, -0.012968181632459164, 0.005620341747999191, 0.0023464527912437916, -0.01307167299091816, 0.0007174692582339048, 0.011113310232758522, 0.021048417314887047, 0.005950715858489275, -0.0011971088824793696, -0.003299761563539505, -0.0016080864006653428, 0.010611778125166893, -0.0023026682902127504, 0.006245266180485487, 0.015189251862466335, -0.010165971703827381, -0.005146672483533621, -0.00856584683060646, 0.0016090815188363194, -0.015149448066949844, -0.003974441438913345, 0.0022111188154667616, 0.02047523856163025, -0.013835911639034748, -0.013063712045550346, -0.00943357590585947, -0.0027842980343848467, 0.021143948659300804, -0.013000025413930416, 0.001516536925919354, -0.0037694501224905252, -0.0125064542517066, 0.004203314892947674, 0.005047162063419819, 0.014918583445250988, 0.0011801921064034104, -0.002533532213419676, 0.018071070313453674, 0.017593421041965485, 0.012681592255830765, 0.017211301252245903, 0.01253033708781004, -0.030537720769643784, -0.005902950651943684, -0.013334379531443119, 0.022306228056550026, 0.024312356486916542, 0.013565244153141975, 0.002077775076031685, 0.0019882158376276493, -0.003932646941393614, -0.015603214502334595, 0.004923769738525152, 0.02410537376999855, 0.03077654540538788, -0.021191712468862534, 0.01175017561763525, 0.011893470771610737, 0.012609944678843021, -0.005771597381681204, 0.008844475261867046, 0.002774347085505724, -0.007913058623671532, 0.008621572516858578, -0.005914892069995403, 0.008048392832279205, 0.004832220263779163, 0.017848167568445206, 0.041046008467674255, -0.003490821225568652, 0.017688950523734093, -0.004629218950867653, 0.012219864875078201, -0.011399899609386921, -0.0031246233265846968, -0.027894726023077965, -0.003918715286999941, 0.002201167866587639, -0.00413166731595993, -0.02194003015756607, -0.007877235300838947, -0.002885798690840602, 0.013780185952782631, 0.01934480108320713, 0.024678554385900497, -0.0016538611380383372, -0.006137795280665159, -0.007913058623671532, 0.0003134574508294463, 0.005532772745937109, -0.020666299387812614, -0.004589414689689875, 0.0020976769737899303, 0.020061276853084564, -0.003717704676091671, 0.005317830480635166, 0.007550841197371483, -0.007594625931233168, 0.004828239791095257, 0.019726920872926712, 0.011519311927258968, -0.02025233581662178, 0.006388560868799686, 0.010468482971191406, 0.0049277497455477715, -0.003550527384504676, -0.016001256182789803, -0.00031694030622020364, -0.0014936495572328568, -0.012116373516619205, -0.0017314791912212968, -0.026111502200365067, -0.0153643898665905, -0.00536559522151947, 0.007805587723851204, 0.020570768043398857, 0.0008960902341641486, -0.0007224447326734662, 0.006675150711089373, -0.020395630970597267, 0.0003092282568104565, 0.002949485322460532, -0.004868043586611748, -0.003367428435012698, 0.02549055777490139, 0.0037455675192177296, 0.005875087808817625, -0.011312330141663551, -0.035123154520988464, -0.015045956708490849, -0.02826092392206192, -0.002362374449148774, 0.005875087808817625, -0.0038868722040206194, 0.02007719688117504, -0.005150652956217527, 0.006022362969815731, 0.00016182861872948706, -0.005130751058459282, -0.01069138664752245, 0.0025375126861035824, -0.0007493125158362091, 0.008621572516858578, 0.017641184851527214, 0.0058313035406172276, -0.001924529206007719, 0.0024996986612677574, 0.004127687308937311, 0.0010478434851393104, -0.0201727282255888, 0.023054545745253563, 0.002059863181784749, -0.012617905624210835, 0.012108412571251392, 0.01292041689157486, -0.009123103693127632, 0.02982124499976635, 0.008740984834730625, 0.02302270196378231, -0.016240080818533897, 0.009234555996954441, 0.011885509826242924, -0.012880613096058369, -0.019328881055116653, 0.009545027278363705, 0.014584229327738285, -0.014639955013990402, -0.019058212637901306, 0.008128001354634762, -0.022051481530070305, -0.01196511834859848, -0.010014716535806656, -0.0034689288586378098, -0.004593395162373781, 0.009704244323074818, -0.00783345103263855, 0.01079487707465887, 0.0037435772828757763, -0.0008319061016663909, 0.0032022413797676563, -0.004430198576301336, 0.020045354962348938, -0.023357056081295013, 0.0052063786424696445, -0.004203314892947674, -0.008812631480395794, -0.002077775076031685, -0.015396233648061752, 0.013326418586075306, 0.009847539477050304, -0.0033634479623287916, -0.02037970907986164, -0.0005323800723999739, 0.00626516854390502, -0.010420718230307102, 0.012020844034850597, 0.023038623854517937, -0.004123706836253405, -0.010993897914886475, -0.024121295660734177, -0.0075627826154232025, 0.012840808369219303, -0.02337297797203064, 0.00015710188017692417, 0.01644706167280674, -0.00631691375747323, -0.007706077303737402, 0.002233011182397604, 0.0036818808875977993, -0.017848167568445206, -0.0044859242625534534, 0.001269751344807446, -0.001842930680140853, -0.011925313621759415, -1.6372554455301724e-05, 0.002668866189196706, 0.01743420399725437, 0.011153114028275013, -0.008589728735387325, 0.001516536925919354, 0.010484404861927032, 0.01666996441781521, -0.01573854871094227, -0.012148217298090458, -0.022736113518476486, -0.00590693112462759, 0.003269908484071493, -0.013167202472686768, -0.019742842763662338, 0.0024817867670208216, -0.019328881055116653, -0.003341555828228593, 0.019233349710702896, 0.016590356826782227, -0.007972764782607555, -0.007427448406815529, 0.0024758162908256054, -0.004876004531979561, 0.01248257141560316, -0.0013324428582563996, 0.002330531133338809, 0.0032639377750456333, -0.013286614790558815, -0.01413046196103096, 0.003729645861312747, -0.030442189425230026, 0.005620341747999191, -0.0005552674410864711, -0.014878779649734497, 0.013660773634910583, 0.00685824966058135, -0.007805587723851204, -0.02639809250831604, 0.01627192460000515, 0.012108412571251392, -0.02146238088607788, 0.006320894230157137, 0.0038391072303056717, -0.01311147678643465, -0.015881843864917755, 0.009990833699703217, -0.001807107008062303, 0.0008498179377056658, 0.019105976447463036, 0.003550527384504676, -0.029009241610765457, 0.013445831835269928, -0.008693219162523746, 0.000693586771376431, 0.013318458572030067, -0.017864089459180832, -0.033562831580638885, -0.021175790578126907, 0.0015344488201662898, 0.0019872207194566727, -0.0165744349360466, -0.0069378577172756195, 0.0054531642235815525, -0.01594552956521511, 0.01713169366121292, -0.014432973228394985, 0.006862230133265257, 0.004062010440975428, -0.011758136563003063, 0.011248644441366196, 0.008048392832279205, 0.012554218992590904, 0.011789980344474316, 0.019854294136166573, 0.005875087808817625, 0.011407860554754734, 0.0027962394524365664, 0.010922250337898731, 0.025506479665637016, 0.0006672165472991765, 0.005942754913121462, 0.010611778125166893, 0.0012379081454128027, -0.012323355302214622, 0.008510120213031769, 0.018835309892892838, -0.0005995495594106615, -0.018373580649495125, -0.0018479062709957361, -0.02488553524017334, -0.010165971703827381, -0.007208526134490967, -0.010659542866051197, -0.005755675490945578, 0.01296022068709135, -0.0035604783333837986, 0.005457144696265459, -0.010444601066410542, -0.018676092848181725, -0.02249728888273239, -0.002398198237642646, 0.010532169602811337, 0.0066194250248372555, 0.017243145033717155, 0.0355689600110054, 0.009059417061507702, -0.0065437969751656055, -0.019058212637901306, 0.0006383585860021412, 0.02752852812409401, -0.010460522025823593, 0.01666996441781521, -0.005739754065871239, 0.0006637336919084191, 0.009210673160851002, -0.024646710604429245, 0.004418257158249617, 0.00407992210239172, 0.006989603396505117, -0.004525728523731232, 0.014011049643158913, -0.016478905454277992, 0.011662607081234455, 0.030139679089188576, -0.011439703404903412, -0.008987770415842533, -0.01339806616306305, -0.003305732039734721, -0.01263382751494646, -0.006906014867126942, 0.00019640845130197704, 0.008446433581411839, -0.007936941459774971, 0.0029952600598335266, -0.0035385861992836, -0.009051457047462463, -0.004907847847789526, 0.0016538611380383372, -0.00997491180896759, -0.003232094459235668, 0.003661978989839554, 0.016080863773822784, -0.011662607081234455, 0.0001867061946541071, -0.02219477668404579, -0.002941524377092719, 0.01607290282845497, -0.0003577395109459758, 0.0012070599477738142, 0.016056980937719345, -0.005791499279439449, -0.015571371652185917, -0.0020140884444117546, 0.007395605091005564, 0.00910718273371458, 0.022083325311541557, -0.02488553524017334, -0.005485007539391518, 0.0034510171972215176, 0.0024141198955476284, 0.009274359792470932, 0.008908161893486977, -0.006436326075345278, -0.00210364768281579, -0.043943747878074646, -0.005397438537329435, 0.014934505335986614, 0.005190457217395306, 0.012617905624210835, -0.02725786156952381, 0.0084384735673666, 0.001005053985863924, -0.013310497626662254, 0.004366511944681406, -0.018246207386255264, 0.03251200541853905, 0.02483776956796646, -0.0028838084544986486, -0.01709984987974167, -0.000622934487182647, 0.0032878201454877853, -0.010237619280815125, 0.006878151558339596, -0.008645454421639442, 0.003355487249791622, 0.01062770001590252, 0.012649749405682087, -0.0005766621907241642, 0.012060647830367088, -0.0014269776875153184, 0.005178515799343586, 0.022592818364501, -0.005731793120503426, -0.004187393467873335, 0.020650377497076988, -0.000568701361771673, 0.006782622076570988, 0.02276795543730259, 0.00878874957561493, -0.007769763935357332, -0.0005303898942656815, 0.021191712468862534, -0.01155115570873022, -0.006726895924657583, 0.007793646305799484, 0.0084384735673666, -0.0010115221375599504, 0.0014309580437839031, 0.0008443448459729552, -0.014974309131503105, -0.009266398847103119, 0.020586689934134483, 0.01624804176390171, 0.0028201218228787184, 0.014926544390618801, 0.011981040239334106, 0.013453791849315166, -0.006985622923821211, -0.0015036006225273013, -0.013891637325286865, 0.012753239832818508, -0.039931491017341614, 0.004979495424777269, -0.007925000041723251, 0.028579358011484146, -0.007228428032249212, 0.016303766518831253, 0.003435095539316535, -0.007132898084819317, -0.0009055436821654439, 0.021748971194028854, 0.005910911597311497, -0.007089113816618919, 0.003847068175673485, -0.012816926464438438, -0.02483776956796646, 0.020140884444117546, 0.009529106318950653, 0.0036599887534976006, 0.024646710604429245, -0.008295178413391113, 0.013230889104306698, -0.018023304641246796, -0.010388875380158424, -0.007678214460611343, 0.036078453063964844, -0.009951029904186726, 0.01545195933431387, -0.00325597682967782, -0.028977397829294205, -0.01421803142875433, 0.0060780891217291355, -0.01257014088332653, 0.005349673796445131, -0.005604419857263565, 0.014624033123254776, 0.002929583191871643, -0.009513184428215027, 0.006181579548865557, -0.019886137917637825, -0.00482425931841135, 0.0026230914518237114, -0.009266398847103119, -0.01081875991076231, 0.017975540831685066, 0.020761828869581223, -0.00447796331718564, 0.042478956282138824, -0.009919186122715473, 0.01012616790831089, 0.009767930954694748, -0.002262864261865616, -0.012450728565454483, -0.022624660283327103, 0.0038052736781537533, 0.0029455048497766256, -0.02904108539223671, 0.004183412995189428, -0.029964540153741837, 0.023213762789964676, -0.01175017561763525, 0.020331943407654762, -0.005079005379229784, -0.005891009699553251, 0.010054520331323147, 0.018930839374661446, 0.027942491695284843, -0.0004139628435950726, 0.003084819298237562, 0.0259204413741827, 0.02644585631787777, -0.009401733055710793, -0.014186187647283077, 0.006304972339421511, 0.0027723568491637707, -0.009011652320623398, 0.0038769212551414967, 0.013246810995042324, -0.006738837342709303, 0.018405424430966377, -0.0006005446193739772, 0.007976745255291462, -0.010532169602811337, 0.0071687218733131886, -0.01425783522427082, 0.020284179598093033, -0.0017255085986107588, -0.0033077222760766745, -0.001745410612784326, 0.0007657317328266799, -0.021828578785061836, 0.015810195356607437, -0.012737317942082882, -0.010070442222058773, -0.0017692930996418, -0.0016060961643233895, 0.005242202430963516, -0.015292742289602757, 0.013605047948658466, 0.020188648253679276, -0.01209249161183834, -0.02072998508810997, 0.010890406556427479, -0.02211516909301281, 0.010675464756786823, 0.01302390731871128, -0.006269148550927639, -0.022433601319789886, 0.017386438325047493, -0.004828239791095257, 0.019408488646149635, 0.0331488698720932, 0.005110848695039749, 0.0037037732545286417, 0.008748945780098438, 0.01486285775899887, 0.013851833529770374, 0.004243119154125452, 0.005075025372207165, 0.003962500020861626, 0.0042869034223258495, 0.013835911639034748, -0.012721396051347256, -0.018930839374661446, -0.005401419010013342, 0.006567679811269045, -0.005234241485595703, -0.0021195693407207727, -0.004939691163599491, -0.02402576617896557, 0.011216800659894943, -0.014560346491634846, 0.018628327175974846, 0.008740984834730625, 0.01523701660335064, 0.005556655116379261, -0.0005930813495069742, 0.01652666926383972, 0.004569512791931629, -0.003797312965616584, 0.010372953489422798, -0.0005950715858489275, -0.0059785787016153336, 0.021796735003590584, -0.009481341578066349, 0.0078095681965351105, -0.009083299897611141, 0.005063083954155445, -0.009186790324747562, 0.0027385232970118523, 0.006695052608847618, -0.019185585901141167, 0.01856464147567749, 0.042956605553627014, 0.021717127412557602, -0.0001553604524815455, 0.008995730429887772, -0.01025354117155075, -0.009353968314826488, -0.005166574846953154, 0.004569512791931629, -0.02493330091238022, -0.009752009063959122, -0.0037336263339966536, 0.023739175871014595, -0.002400188473984599, 0.017991460859775543, 0.003950558602809906, 0.002983318641781807, -0.016988398507237434, -0.015077800489962101, -0.001910597668029368, 0.01631968840956688, 0.0021792754996567965, 0.0023663549218326807, 0.01538827270269394, -0.0065955426543951035, -0.0027783275581896305, -0.030919838696718216, -0.006476130336523056, 0.006376619916409254, 0.0006856259424239397, 0.01177405845373869, -0.005548694171011448, -0.017497891560196877, 0.005512870382517576, -0.00407395139336586, -0.008183727040886879, 0.024296434596180916, 0.012896534986793995, 0.00062741240253672, -0.006575640290975571, -0.011113310232758522, 0.0027365332935005426, 0.008319061249494553, -0.0073080360889434814, 0.013087593950331211, -0.005668106488883495, -0.014831014908850193, -0.0013632910558953881, 0.024949220940470695, 0.015627097338438034, 0.022736113518476486, -0.004390394315123558, -0.00831110030412674, -0.00809615757316351, 0.0019285095622763038, -0.04279739037156105, -0.00856584683060646, -0.01826212927699089, -0.002121559577062726, -0.020188648253679276, 0.0026648857165127993, 0.004708827473223209, -0.005409379955381155, -0.004645140841603279, 0.0021474321838468313, -0.0009090265375562012, -0.015221094712615013, 0.002276795683428645, 0.015356428921222687, 0.016335610300302505, -0.005974598228931427, 0.0005876083159819245, 0.026732446625828743, 0.0032261237502098083, -0.0042391386814415455, -0.00685824966058135, -0.0034450464881956577, 0.01108146645128727, 0.010595856234431267, 0.013923481106758118, -0.009823656640946865, 0.01557933259755373, -0.01951994001865387, 0.0038868722040206194, -0.004724748898297548, 0.01081875991076231, -0.008064314723014832, 0.0031604471150785685, 0.008780788630247116, -0.001701626111753285, 0.01142378244549036, 0.012164139188826084, 0.007622488774359226, -0.019074134528636932, -0.019535861909389496, 0.005974598228931427, -7.718267443124205e-05, -0.011949196457862854, 0.02115987055003643, -0.013684656471014023, 0.00652389507740736, -0.012450728565454483, 0.006452247500419617, -0.003570429515093565, 0.01361300889402628, -0.01709984987974167, 0.01881938800215721, -0.0035127135924994946, -0.0002195445995312184, 0.0077339401468634605, 0.004541649948805571, 0.00401026476174593, -0.015077800489962101, -0.008717101998627186, -0.028197238221764565, -0.0033455363009124994, 0.01367669552564621, -0.00045849368325434625, -0.0014120511477813125, -0.0013762273592874408, -0.008717101998627186, 0.0007129912846721709, -0.016279885545372963, -0.018723856657743454, -0.01788000948727131, -0.004290883895009756, -0.002909681061282754, 0.015077800489962101, 0.011463586241006851, -0.01826212927699089, -0.009473380632698536, 0.00045924002188257873, -0.00237431563436985, 0.01594552956521511, -0.011853666976094246, -0.001063765026628971, 0.005047162063419819, -0.0192970372736454, -0.016128629446029663, -0.029757559299468994, -0.00591887254267931, -0.01579427532851696, 0.014233953319489956, -0.026382170617580414, -0.0028499749023467302, 0.01088244654238224, -0.0018260139040648937, -0.02561793103814125, -0.008804671466350555, 0.021064339205622673, 0.010866524651646614, -0.0037575089372694492, 0.03661978989839554, 0.0059785787016153336, 0.016845103353261948, -0.019058212637901306, 0.020411552861332893, -0.003984392154961824, 0.022704269737005234, -0.01616843231022358, -0.010372953489422798, 0.0250129085034132, -0.011845706030726433, 0.007212506141513586, 0.010770994238555431, 7.886190724093467e-05, -0.0006826406461186707, 0.018325816839933395, -0.0032599573023617268, 0.004844161216169596, -0.004521748051047325, -0.017497891560196877, 0.004860083106905222, -0.018723856657743454, -9.136289008893073e-05, -0.0067667001858353615, -0.011614842340350151, -0.022529130801558495, 0.026429934427142143, -0.006635346449911594, 0.020523004233837128, 0.006332835182547569, 0.024009844288229942, -0.017975540831685066, -0.01010228507220745, 0.007813548669219017, 0.01025354117155075, -0.021971873939037323, -0.019201507791876793, -0.005015319213271141, 0.0011682509211823344, -0.027767352759838104, -0.01757749915122986, 0.011344173923134804, -0.002885798690840602, 0.020936965942382812, -0.0021971873939037323, 0.023834707215428352, -0.020761828869581223, -0.024137217551469803, -0.012777121737599373, 0.01542807649821043, 0.011598920449614525, -0.018707936629652977, -0.012331316247582436, 0.03461366146802902, 0.02297493815422058, 0.0012966191861778498, -0.006507973652333021, 0.023834707215428352, -0.01569078303873539, 0.0018877102993428707, -0.004259040579199791, -0.022831643000245094, -0.006714954972267151, 0.009361928328871727, -0.011646685190498829, -0.008239452727138996, -0.02964610792696476, 0.0040918635204434395, -0.013334379531443119, 0.0068741715513169765, 0.007248329930007458, 0.0022648542653769255, 0.0007194594363681972, -0.0189945250749588, -0.025426872074604034, 0.015181290917098522, -0.006030323915183544, 0.054643094539642334, -2.587267772469204e-05, 0.005457144696265459, -0.002165344078093767, 0.00945745874196291, -0.020236413925886154, 0.0007154790218919516, -0.0012080550659447908, -0.015698743984103203, -0.013453791849315166, 0.0033495165407657623, -0.017195379361510277, 0.013127398677170277, 0.012904495000839233, -0.0010428678942844272, -0.001795165822841227, 0.00011039423407055438, -0.02453525923192501, -0.01069138664752245, 0.007244349457323551, 0.010571974329650402, -0.009704244323074818, -0.004103804472833872, 0.021303163841366768, 0.009624635800719261, 0.020268257707357407, -0.0017125721788033843, 0.01722722314298153, -0.004744650796055794, 0.0015971402171999216, 0.01921742781996727, -0.002569355769082904, -0.022147011011838913, 0.024264590814709663, 0.002535522449761629, 0.003335585119202733, -0.016136590391397476, 0.01609678566455841, -0.008494199253618717, 0.017688950523734093, -0.007654332090169191, -0.003094770247116685, 0.016590356826782227, 0.000881661253515631, -0.014926544390618801, -0.02284756489098072, 0.010325188748538494, -0.023707333952188492, -0.00203996105119586, 0.005086966324597597, -0.0014687719522044063, -0.02249728888273239, -0.010309266857802868, 0.0020061274990439415, -0.0025613950565457344, 0.017513811588287354, 0.012044725939631462, -0.024121295660734177, -0.010826719924807549, -0.009035535156726837, -0.010134128853678703, -0.0007826485089026392, 0.019105976447463036, 0.018644249066710472, -0.00010361510067014024, 0.0071448395028710365, 0.004203314892947674, -0.005544713698327541, 0.0012100451858714223, 0.014998191967606544, 0.012020844034850597, -0.021971873939037323, -0.015085761435329914, -0.004868043586611748, -0.009919186122715473, -0.018453190103173256, -0.0038152248598635197, 0.000880168576259166, -0.015674861147999763, 0.001504595740698278, 0.009162908419966698, -0.027464842423796654, 0.023564038798213005, -0.00591887254267931, -0.015372350811958313, -0.0018240237841382623, -0.0005298923351801932, 0.004056039731949568, -0.00037366116885095835, 0.005210359115153551, -0.006710974499583244, -0.002553434344008565, -0.01574650965631008, 0.006205461919307709, 0.0016847093356773257, 0.010914289392530918, -0.007359781768172979, -0.014974309131503105, 0.009545027278363705, 0.0025554243475198746, 0.016279885545372963, 0.0006692067254334688, 0.0017613322706893086, -0.005274045746773481, -0.0023882470559328794, -0.011447664350271225, -0.014385208487510681, 0.006941838189959526, -0.004048078786581755, 0.005688008386641741, -0.004187393467873335, -0.0026648857165127993, 0.00022302745492197573, 0.004816298373043537, 0.006026343442499638, 0.018580563366413116, -0.010205776430666447, 0.008876318112015724, 0.02189226634800434, 0.0016767485067248344, -0.020363787189126015, 0.012586062774062157, 0.03894434869289398, 0.007451331242918968, 0.005612380802631378, 0.0044938852079212666, -0.0010359021835029125, 0.0055287922732532024, 0.008605650626122952, -0.00550888990983367, 0.021414615213871002, -0.0036898418329656124, -0.021143948659300804, 0.015627097338438034, -0.007495115511119366, -0.0010985936969518661, -0.0141543447971344, 0.00016655535728204995, -0.01670180819928646, -0.007853352464735508, -0.025458713993430138, 0.038243796676397324, 0.015420115552842617, 0.003490821225568652, 0.011431743390858173, 0.010579935275018215, -0.0180869922041893, 0.029805324971675873, 0.006042265333235264, 0.015698743984103203, -0.008693219162523746, 0.00019939376215916127, -0.013406027108430862, 0.015499724075198174, 0.0030907897744327784, -0.004002304282039404, -0.011726293712854385, 0.030489955097436905, -0.011845706030726433, -0.006655248813331127, -0.013469713740050793, -0.014225992374122143, 0.003797312965616584, 0.012243746779859066, 0.0020270247478038073, -0.017561577260494232, 0.0001553604524815455, 0.01285673025995493, -0.012100452557206154, -0.0030290933791548014, 0.00651195365935564, -0.001504595740698278, -0.03203435614705086, 0.007049309555441141, -0.0016767485067248344, 0.012808965519070625, -0.004306805785745382, 0.01374038215726614, -0.013509517535567284, 0.006762719713151455, -0.001015502610243857, 0.014703641645610332, 0.01501411385834217, 0.004868043586611748, -0.020698141306638718, 0.0033395655918866396, -0.012426845729351044, -0.019360722973942757, -0.01609678566455841, 0.002430041553452611, 0.009982872754335403, 0.027369312942028046, 0.0029455048497766256, -0.0036301356740295887, -0.015181290917098522, 0.008060334250330925, -0.0027783275581896305, -0.003415193408727646, -0.033944953233003616, 0.010723229497671127, -0.00035276400740258396, -0.00265692500397563, -0.0037754205986857414, 0.012490532360970974], "9687aeb0-7763-4074-a0a8-c49058fb0ffb": [-0.006431473884731531, 0.008783534169197083, -0.008700741454958916, 0.03278584033250809, 0.02238408848643303, 0.029985947534441948, 0.013021006248891354, 0.014067202806472778, -0.04049307107925415, 0.019478823989629745, 0.0006632810109294951, 0.023949619382619858, 0.03766307234764099, 0.010913560166954994, 0.0070749977603554726, 0.01958419568836689, -0.00815882720053196, 0.003494221018627286, 0.03332775458693504, 0.0017348797991871834, 0.05398072674870491, -0.037091050297021866, -0.045400410890579224, 0.014744596555829048, 0.03374924510717392, 0.02756238542497158, -0.025605469942092896, 0.021360471844673157, -0.018244462087750435, -0.014646750874817371, 0.013901617377996445, 0.01610690914094448, 0.031912755221128464, 0.02005084417760372, 0.007248109206557274, -0.03411052003502846, 0.0200207382440567, 0.0010113859316334128, -0.029368767514824867, 0.013510234653949738, -0.0016182175604626536, -0.027050577104091644, -0.00885127391666174, 0.0017028917791321874, -0.04720679298043251, 0.0023746402002871037, -0.01551983505487442, 0.019960524514317513, -0.038355518132448196, -0.026192544028162956, -0.005415383726358414, -0.017883185297250748, 0.012080182321369648, 0.034532010555267334, 0.01822940818965435, -0.038626477122306824, 0.006747590843588114, 0.025454938411712646, 0.0009888062486425042, -0.04597243294119835, 0.018455207347869873, -0.01251672487705946, -0.015248877927660942, -0.009679199196398258, 0.02912791632115841, -0.01976483315229416, -0.008384624496102333, 0.016242388635873795, -0.0557871088385582, 0.0057503171265125275, 0.019599249586462975, 0.03248477727174759, -0.008264199830591679, 0.042660731822252274, 0.019930418580770493, 0.0018120273016393185, 0.06840167939662933, 0.020622866228222847, 0.006405130960047245, -0.010665182955563068, 0.030723553150892258, -0.014548905193805695, 0.06075466051697731, -0.004117046482861042, 0.07129189372062683, -0.00048640609020367265, 0.022534620016813278, -0.035916902124881744, 0.008384624496102333, -0.014097309671342373, -0.0067174844443798065, 0.009114704094827175, -0.005976114887744188, 0.019719675183296204, 0.009348029270768166, 0.016453132033348083, 0.00876095425337553, 0.012697363272309303, -0.0003885603800881654, -0.006931992247700691, -0.01872616447508335, 0.014759649522602558, -0.023513076826930046, 0.02282063104212284, 0.028119351714849472, -0.016513345763087273, 0.003746361704543233, -0.006916939280927181, -0.019328292459249496, 0.032936371862888336, 0.001267290092073381, -0.027171000838279724, -0.014142468571662903, 0.005573442205786705, -0.05924934148788452, -0.018861642107367516, -0.03426105156540871, -0.02756238542497158, -0.010303906165063381, 0.009965209290385246, 0.002199646783992648, -0.04708636924624443, 0.007519066799432039, 0.0030576784629374743, -0.049344345927238464, 0.025485044345259666, -0.00876095425337553, 0.007342191878706217, 0.0094383480027318, 0.00815882720053196, 0.0019926654640585184, 0.007714758161455393, 0.024807650595903397, 0.029052650555968285, 0.0034641146194189787, 0.019885258749127388, 0.0230614822357893, 0.0264484491199255, -0.012938213534653187, 0.006593295838683844, -0.06701678782701492, -0.016332708299160004, -0.007157790008932352, 0.01110172551125288, 0.0161370150744915, -0.02577105537056923, 0.019915366545319557, 0.013472601771354675, -0.013886564411222935, 0.04178764671087265, -0.07821635901927948, -0.0616578534245491, -0.006600822322070599, -0.025575364008545876, 0.07357997447252274, -0.028074193745851517, -0.028751585632562637, 0.009829730726778507, 0.002809301018714905, 0.058767639100551605, 0.016934834420681, -0.023196959868073463, -0.004963788203895092, 0.04994647204875946, 0.04007158428430557, 0.020607812330126762, 0.04281126335263252, 0.028736533597111702, -0.03802435100078583, 0.03284605219960213, 0.0008937829406931996, -0.02143573760986328, 0.026252757757902145, 0.0014930879697203636, -0.05762359872460365, -0.016558505594730377, 0.006329864729195833, 0.058888066560029984, 0.006630928721278906, -0.004158442839980125, -0.0094383480027318, 0.013164011761546135, 0.004839599598199129, 0.004790676757693291, 0.009528666734695435, 0.03666956350207329, 0.03212349861860275, 0.01896701566874981, 0.04609285667538643, 0.030287010595202446, -0.014157521538436413, -0.008873853832483292, -0.007925502955913544, 0.02315180003643036, 0.028134405612945557, -0.00689812283962965, 0.014541378244757652, -0.019960524514317513, -0.03260520100593567, 0.012494144961237907, -0.0019380977610126138, -0.026704352349042892, 0.00473422696813941, 0.042510200291872025, -0.024596907198429108, 0.0400414764881134, -0.0018299029907211661, -0.018635844811797142, 0.00724434619769454, -0.03817488253116608, 0.03636850044131279, -0.03137084096670151, -0.014729542657732964, -0.0018600093899294734, -0.003353097243234515, 0.0065970588475465775, -0.011056565679609776, 0.010966246016323566, 0.012652203440666199, -0.04190807044506073, 0.03194286301732063, 0.0043578976765275, 0.014594064094126225, -0.014293001033365726, -0.04603264480829239, -0.008919012732803822, -0.008362045511603355, 0.013758612796664238, -0.0005466188304126263, 0.022986216470599174, 0.023723822087049484, 0.005494412966072559, -0.010484544560313225, -0.0018581277690827847, -0.0005273319547995925, 0.04329296573996544, 0.03937913477420807, -0.02635812945663929, -0.04190807044506073, -0.009114704094827175, -0.004606274887919426, 0.015331670641899109, 0.013058639131486416, -0.0242055244743824, 0.028841905295848846, 0.02352813072502613, -0.006070197559893131, 0.01550478208810091, 0.01834983378648758, 0.01407472975552082, -0.038746900856494904, -0.00831688567996025, -0.012780155055224895, 0.00019251614867243916, -0.03492339327931404, 0.00945340096950531, 0.02149594947695732, -0.0020020739175379276, 0.010138320736587048, 0.0013867748202756047, 0.013743558898568153, 0.03245466947555542, -0.0056261285208165646, 0.011402788572013378, 0.022399142384529114, -0.029880575835704803, 0.05036796256899834, 0.0006007162155583501, 0.01256188377737999, 0.011982336640357971, 0.010725395753979683, 0.02364855632185936, 0.018455207347869873, 0.012095235288143158, -0.009912523441016674, -0.00031376484548673034, 0.04157689958810806, 0.020547600463032722, 0.011876964010298252, -0.010175954550504684, -0.05955040454864502, -0.025439884513616562, 0.016603665426373482, 0.017115473747253418, -0.005310011561959982, -0.0015862295404076576, -0.011493108235299587, -0.018394993618130684, -0.023362545296549797, 0.009709305129945278, -0.0014498099917545915, 0.027110788971185684, 0.034381479024887085, -0.007481433916836977, -0.019900312647223473, 0.00639760447666049, -0.0037651783786714077, 0.010108214803040028, -0.012494144961237907, 0.05515487492084503, -0.020803503692150116, -0.006420183926820755, -0.02550009824335575, -0.026749512180685997, 0.05283668637275696, 0.017853079363703728, 0.012704889290034771, 0.014338159933686256, -0.024672172963619232, 0.02515387535095215, 0.018891749903559685, -0.025635575875639915, -0.005686341319233179, -0.02309158816933632, 0.02241419441998005, -0.006698668003082275, -0.032274030148983, 0.0012277754722163081, -0.005279905162751675, -0.015271457843482494, 0.007131447084248066, 0.01052970439195633, -0.0590687058866024, 0.0005475596408359706, 0.013848931528627872, -0.032996583729982376, 0.023227067664265633, -0.015369303524494171, -0.029985947534441948, -0.024596907198429108, -0.07020806521177292, -0.0147671764716506, -0.027517225593328476, 0.004508429206907749, -0.03802435100078583, -0.03736200928688049, -0.022504514083266258, -0.04013179615139961, 0.025951692834496498, -0.02918812818825245, -0.002282439498230815, -0.03618786111474037, 0.021691642701625824, 0.01943366415798664, 0.02817956544458866, -0.010048002004623413, -0.007955608889460564, 0.022128183394670486, -0.015625206753611565, -0.016528399661183357, 0.0009478803258389235, -0.008121194317936897, 0.05093998461961746, 0.019779887050390244, -0.0188766960054636, -0.013743558898568153, -0.007948082871735096, -0.004542299080640078, 0.01478222943842411, 0.0008429784211330116, 0.008919012732803822, -0.028134405612945557, 0.012471565045416355, -0.0027020468842238188, 0.025078609585762024, -0.016182174906134605, 0.022835683077573776, 0.0027622596826404333, -0.006563189439475536, -0.030016053467988968, 0.005313775036484003, 0.017717599868774414, -0.021074460819363594, -0.0067099579609930515, -0.008166354149580002, 0.0034264815039932728, 0.02768280915915966, 0.02066802605986595, -0.00912975799292326, 0.019960524514317513, 0.014699436724185944, -0.004692831076681614, -0.00423370860517025, 0.04139626398682594, -0.0016022234922274947, -0.0070486548356711864, -0.003989094402641058, 0.02011105790734291, 0.0036522794980555773, -0.022007759660482407, -0.04558105021715164, 0.02718605473637581, -0.026282863691449165, -0.04961530119180679, -0.0038573790807276964, 0.0014065321302041411, 0.023136748000979424, -0.0008537979447282851, 0.04061349853873253, -0.020893823355436325, -0.0027490882202982903, -0.012622096575796604, -0.008678162470459938, 0.004459506366401911, 0.04326285794377327, -0.020893823355436325, -0.04699604958295822, -0.012539304792881012, 0.01308874599635601, 0.010898507200181484, -0.020954035222530365, 0.02023148350417614, 0.011071618646383286, 0.025394726544618607, 0.04359402880072594, -0.0014065321302041411, -0.024280790239572525, 0.07315848767757416, -0.021390577778220177, 0.006137936841696501, 0.02476249262690544, -0.004308974836021662, -0.007116394117474556, 0.04558105021715164, 0.029880575835704803, 0.029142968356609344, -0.011365155689418316, -0.005208402406424284, 0.013337123207747936, -0.015294037759304047, 0.015444569289684296, 0.044105835258960724, 0.005264852195978165, -0.0010123268002644181, -0.0009013095404952765, -0.023693716153502464, -0.0007728870259597898, 0.002726508304476738, 0.01841004751622677, 0.030001001432538033, -0.04275105148553848, -0.004320264328271151, 0.00535893440246582, 0.045249879360198975, -0.039710305631160736, -0.03106977790594101, -0.013051113113760948, 0.003334280801936984, -0.023994779214262962, 0.00025120005011558533, 0.0073120854794979095, 0.0064879232086241245, -0.05443232133984566, -0.019840100780129433, 0.00815882720053196, -0.022218503057956696, -0.010243693366646767, 0.0047869132831692696, 0.03091924451291561, -0.07147253304719925, -0.014842442236840725, -0.024717332795262337, 0.012162975035607815, 0.004331554286181927, 0.01899712160229683, 0.0002634307602420449, 0.011606006883084774, 0.0026587690226733685, 0.02968488447368145, 0.054612960666418076, 0.004252525046467781, -0.02087876945734024, 0.03057302162051201, 0.014654276892542839, 0.011297416873276234, 0.0018327254801988602, -0.026839831843972206, 0.009792097844183445, 0.00888137985020876, -0.007635728921741247, -0.000399379845475778, -0.029790256172418594, -0.006006221286952496, -0.005332591477781534, -0.006491686683148146, -0.008926539681851864, 0.001286106649786234, -0.02623770385980606, 0.014496218413114548, 0.001987020717933774, -0.02494313009083271, -0.012599517591297626, 0.0036071198992431164, -0.016001537442207336, -0.0035920666996389627, -0.017597174271941185, 0.0007249049958772957, -0.011319995857775211, 0.023543184623122215, -0.04997657984495163, 0.012208133935928345, -0.009754464961588383, -0.017070313915610313, -0.014865022152662277, -0.03811466693878174, 0.03094935230910778, -0.019855152815580368, 0.03685019910335541, -0.028902119025588036, -0.01869605854153633, -0.009257709607481956, 0.014601591043174267, -0.05404093861579895, 0.01779286563396454, 0.018500367179512978, 0.025515150278806686, -0.007270689122378826, -0.00912975799292326, 0.023272225633263588, 0.004320264328271151, -0.009137284010648727, -0.007560463156551123, -0.045129451900720596, -0.019283132627606392, 0.006977152079343796, -0.02223355695605278, -0.0035356171429157257, -0.04103498533368111, -0.02438616193830967, -0.04145647585391998, -0.006502976641058922, 0.03230413794517517, -0.013269384391605854, -0.026839831843972206, -0.021781960502266884, -0.0188766960054636, -0.0014253485715016723, 0.03889743238687515, 0.03152137249708176, -0.01740148290991783, -0.061537425965070724, 0.06466849148273468, -0.028089245781302452, -0.010657656006515026, 0.0014968512114137411, 0.021962599828839302, -0.023166853934526443, -0.007157790008932352, -0.01749180257320404, 0.015098346397280693, -0.0029146731831133366, 0.0021714221220463514, 0.014330633915960789, 0.004000384360551834, 0.009378135204315186, -0.006499213166534901, -0.012689836323261261, 0.009001805447041988, -0.02414531074464321, -0.028586002066731453, 0.006171806715428829, 0.02152605727314949, 0.0018910565413534641, 0.010740448720753193, -0.007026074919849634, -0.0018421337008476257, -0.006412657443434, 0.007948082871735096, 0.0037595333997160196, 0.03474275395274162, 0.004350370727479458, -0.04579179361462593, 0.029398873448371887, 0.014722016640007496, 0.006807803642004728, 0.019042281433939934, 0.009114704094827175, 0.003989094402641058, -0.02700541727244854, -0.014992973767220974, 0.016392920166254044, 0.008181407116353512, -0.024611959233880043, -0.01419515535235405, -0.005302485078573227, 0.02158626914024353, -0.020803503692150116, -0.018425099551677704, -0.01144042145460844, -0.0032928844448179007, -0.009302869439125061, 0.04371445253491402, -0.02851073443889618, 0.0237087681889534, -0.036910414695739746, 0.03368903324007988, -0.012486618012189865, 0.012855421751737595, 0.03338796645402908, 0.01002542208880186, 0.008986752480268478, 0.03137084096670151, 0.03501371294260025, 0.023723822087049484, -0.02102930098772049, 0.03106977790594101, 0.01943366415798664, -0.015625206753611565, 0.008843746967613697, 0.00883622094988823, -0.03414062783122063, -0.01634776033461094, -0.008151300251483917, -0.006427710875868797, 0.02029169537127018, -0.002577858278527856, -0.002828117460012436, -0.008286778815090656, 0.0003840914578177035, -0.006555662956088781, 0.01424031425267458, -0.030287010595202446, 0.05846657603979111, -0.016739143058657646, -0.0290375966578722, 0.0008890788303688169, 0.005573442205786705, -0.010100687853991985, 0.014985446818172932, 0.026343075558543205, -0.04564126208424568, 0.00032999407267197967, -0.01896701566874981, -0.024732384830713272, 0.010318959131836891, -0.03411052003502846, -0.0033248725812882185, 0.027908608317375183, 0.007379824761301279, -0.002647479297593236, 0.005302485078573227, -0.007560463156551123, -0.013879038393497467, 0.035856690257787704, -0.002647479297593236, -0.008873853832483292, 0.0045159561559557915, 0.010665182955563068, 0.03152137249708176, -0.006856726482510567, 0.017160633578896523, -0.0036767409183084965, -0.001440401771105826, 0.03624807298183441, 0.017175685614347458, 0.0003363446448929608, -0.015971431508660316, -0.0010048002004623413, 0.02367866225540638, 0.013171537779271603, 0.015324143692851067, 0.0010057410690933466, 0.013901617377996445, 0.015926271677017212, 0.015015553683042526, 0.020502440631389618, 0.021164780482649803, -0.020457280799746513, 0.005806766916066408, 0.035736266523599625, 0.017747707664966583, -0.0400414764881134, 0.006028801202774048, -0.0203218013048172, -0.019072387367486954, 0.013675820082426071, 0.0007663012947887182, -0.002186475321650505, 0.002521408721804619, -0.004410583525896072, 0.011643639765679836, -0.01896701566874981, -0.033056799322366714, 0.02108951471745968, -0.02179701440036297, -0.011786645278334618, -0.02167658880352974, -0.014458585530519485, -0.0005263911443762481, 0.010793134570121765, -0.039710305631160736, -0.014962867833673954, -0.02140563167631626, 0.0029203181620687246, 0.013344650156795979, -0.008911486715078354, 0.008798587135970592, -0.027938714250922203, -0.013555394485592842, -0.011372682638466358, -0.03736200928688049, -0.020035792142152786, 0.0001669962948653847, -0.016061749309301376, -0.01411988865584135, 0.019207866862416267, -0.009257709607481956, -0.010921087116003036, -0.009445874951779842, -0.012915633618831635, 0.009671672247350216, 0.03233424574136734, 0.005603548604995012, 0.0104092787951231, -0.002007718663662672, 0.027276374399662018, -0.0032345533836632967, 0.02476249262690544, -0.01607680320739746, 0.03949956223368645, 0.013201644644141197, 0.004534772597253323, -0.006280941888689995, -0.02334749326109886, 0.0041509163565933704, -0.0026568875182420015, -0.002342652063816786, -0.00203970680013299, 0.01338228303939104, 0.002666295738890767, 0.006886832881718874, -0.015655314549803734, -0.01223824080079794, 0.01519619207829237, -0.0004012614954262972, -0.016438079997897148, -0.03140094876289368, 0.008429784327745438, 0.013728505931794643, -0.004248762037605047, -0.011222150176763535, -0.031611692160367966, 0.020954035222530365, -0.023889407515525818, -0.04172743484377861, 0.03522445634007454, 0.026026960462331772, 0.03648892417550087, -0.029022542759776115, -0.04284136742353439, 0.03365892544388771, -0.03612764924764633, 0.013705926015973091, -0.00485841603949666, -0.024190470576286316, 0.03399009630084038, 0.01422526128590107, 0.005659997928887606, -0.0006891536759212613, 0.024190470576286316, -0.013976884074509144, 0.03537498787045479, 0.011267310008406639, -0.015384356491267681, 0.029925735667347908, 0.005659997928887606, 0.0222636628895998, 0.029880575835704803, 0.009445874951779842, -0.006439000368118286, 0.03528466820716858, 0.03823509439826012, 0.021992705762386322, 0.01001036912202835, -0.008249145932495594, 0.008309358730912209, 0.015444569289684296, -0.03266541659832001, -0.02771291695535183, -0.018425099551677704, -0.022865790873765945, -0.01708536595106125, 0.002660650759935379, 0.008813641034066677, -0.0069620986469089985, -0.038626477122306824, 0.021390577778220177, -0.009528666734695435, -0.03060312755405903, 0.012923160567879677, 0.021842174232006073, -0.005535809323191643, -0.006788987200707197, -0.014737069606781006, 0.012185554951429367, -0.034230947494506836, -0.002162013901397586, 0.0007992301252670586, 0.013036059215664864, 0.029850468039512634, 0.00834699161350727, -0.009942629374563694, 0.004211129155009985, 0.03103967010974884, 0.019794940948486328, -0.03952966630458832, -0.01111677847802639, -0.03362881764769554, -0.010763028636574745, -0.0025082372594624758, -0.0025157637428492308, 0.008196460083127022, -0.0118543840944767, 0.019147653132677078, 0.0006792750209569931, 0.004320264328271151, 0.004986368119716644, 0.003669214202091098, -0.008768481202423573, 0.006995968520641327, -0.007368534803390503, -0.0018129681702703238, 0.010078107938170433, 0.0009737529908306897, -0.011350102722644806, 0.029263393953442574, 0.02494313009083271, 0.015015553683042526, -0.008444837294518948, -0.009385662153363228, -0.030648287385702133, -0.01567036658525467, -0.02185722626745701, 0.009400715120136738, -0.015971431508660316, 0.0017725126817822456, -0.010002842172980309, 0.008429784327745438, -0.02069813199341297, 0.013495181687176228, -0.011666219681501389, -0.02367866225540638, -0.02986552193760872, 0.030633235350251198, -0.017883185297250748, -0.0008410968002863228, 0.014849968254566193, 0.001494028721936047, 0.03666956350207329, 0.04052317887544632, 0.011846858076751232, -0.020954035222530365, 0.02014116384088993, -0.001747110509313643, 0.0013519643107429147, 0.02524419315159321, 0.001025498379021883, 0.020186323672533035, -0.03507392480969429, -0.009317922405898571, 0.019237972795963287, 0.05241519585251808, -0.03374924510717392, 0.006630928721278906, 0.0011844976106658578, -0.014398372732102871, 0.010251220315694809, -0.03660934790968895, 0.000741839874535799, -0.022052917629480362, -0.026057066395878792, 0.004342844244092703, 0.0015899927821010351, 0.007353481836616993, 0.010522177442908287, -0.003827272681519389, -0.009280289523303509, 0.004692831076681614, 0.003129181219264865, 0.019900312647223473, 0.007432511076331139, 0.009137284010648727, -0.005803003441542387, 0.010386698879301548, -0.02432595007121563, -0.013021006248891354, -0.010898507200181484, 0.008151300251483917, -0.009310395456850529, -0.00945340096950531, 0.010371645912528038, -0.005291195120662451, 0.017928345128893852, 0.0076658353209495544, -0.018635844811797142, 0.030256904661655426, 0.015655314549803734, -0.005313775036484003, -0.011229677125811577, -0.01902722753584385, 0.003688030643388629, -0.04016190022230148, -0.04061349853873253, -0.03206328675150871, 0.049344345927238464, -0.029444033280014992, 0.004124572966247797, -0.026553820818662643, 0.009001805447041988, -0.02635812945663929, -0.0033192276023328304, 0.0021845935843884945, -0.014669329859316349, -0.0031724590808153152, 0.0367598831653595, 0.02912791632115841, -0.0017028917791321874, 0.00973188504576683, -0.013668293133378029, 0.0065895323641598225, -0.021480897441506386, 0.014571484178304672, 0.013472601771354675, 0.0188766960054636, -0.013555394485592842, -0.01320917159318924, -0.015301563777029514, -0.011636112816631794, 0.005471833515912294, 0.01779286563396454, 0.002205291762948036, -0.016648825258016586, -0.0009196556056849658, -0.010988825932145119, 0.03630828484892845, -0.011876964010298252, -0.03251488134264946, -0.017747707664966583, -0.0312805213034153, -0.00577289704233408, 0.0015316617209464312, 0.021104566752910614, 0.03597711771726608, -0.023482970893383026, -0.0051481896080076694, -0.03636850044131279, -0.0059874048456549644, 0.01734127104282379, 0.008527630008757114, 0.012607043609023094, 0.0009257709607481956, 0.0023257173597812653, -0.004147152882069349, -0.02244430035352707, 0.027171000838279724, 0.008219039998948574, -0.00023591166245751083, -0.027050577104091644, 0.023362545296549797, 0.007910449989140034, -0.014029569923877716, -0.0018515419214963913, -0.020366961136460304, 0.011861911043524742, -0.011711379513144493, -0.01637786626815796, -0.003159287618473172, 0.0036391078028827906, -0.0011609770590439439, -0.029248341917991638, -0.005648708436638117, -0.016573557630181313, -0.004320264328271151, -0.0037143738009035587, 0.028029033914208412, -0.02214323729276657, -0.02102930098772049, 0.017100419849157333, -0.0234077051281929, -0.03769318014383316, 0.04470796510577202, -0.039650093764066696, -0.009987789206206799, -0.007790023926645517, 0.0203218013048172, -0.0393490307033062, -0.017476748675107956, 0.017822973430156708, -0.044045623391866684, 0.008956645615398884, 0.012065129354596138, -0.006160516757518053, -0.00660458579659462, -0.006333628203719854, 0.021571217104792595, -0.014624170958995819, -0.009491033852100372, -0.017010100185871124, 0.010906033217906952, -0.05840636417269707, -0.012019969522953033, -0.01256188377737999, -0.012358666397631168, 0.016407974064350128, 0.05404093861579895, 0.0393490307033062, 0.024551747366786003, -0.018063824623823166, -0.01734127104282379, -0.0008448601001873612, -0.020833609625697136, -0.007857763208448887, 0.005407857242971659, -0.010815714485943317, -0.0046439082361757755, 0.00210932781919837, -0.016513345763087273, -0.0409446656703949, 0.023723822087049484, 0.0029259631410241127, -0.0036146463826298714, 0.012155448086559772, -0.04997657984495163, 0.004139626398682594, -0.013126378878951073, 0.009325449354946613, -0.01493276096880436, 0.004805729724466801, 0.013540341518819332, 0.01696494035422802, -0.018605738878250122, -0.01970462128520012, -0.00024767196737229824, -0.0030482702422887087, -0.006009984761476517, -0.018650898709893227, -0.023302333429455757, -0.09965209662914276, -0.017040207982063293, -0.004869705997407436, 0.014691909775137901, 0.02494313009083271, -0.0005715506849810481, 0.019328292459249496, -0.0033625054638832808, -0.018485313281416893, 0.009897470474243164, 0.0020039554219692945, -0.016438079997897148, 0.008234092965722084, -0.013909144327044487, -0.011756538413465023, 0.02632802352309227, -0.01141031552106142, -0.019885258749127388, -0.013999463059008121, -0.005103030242025852, -0.018545525148510933, 0.01844015344977379, 0.035916902124881744, 0.007910449989140034, -0.014059675857424736, 0.004350370727479458, -0.009859837591648102, -0.015745632350444794, -0.021285206079483032, -0.039650093764066696, 0.01111677847802639, 0.0002547281328588724, -0.0015956377610564232, -0.030723553150892258, 0.02444637566804886, 0.023046428337693214, -0.00226362282410264, -0.007515303324908018, 0.00570515776053071, 0.005690104328095913, 0.006292231846600771, -0.012938213534653187, -0.02149594947695732, -0.0030106373596936464, 0.009649092331528664, 0.0008537979447282851, -0.0074287476018071175, -0.03420083969831467, -0.024642067030072212, 0.04311232641339302, -0.006386314518749714, 0.012787682004272938, -0.04046296700835228, -0.022715259343385696, -0.0030125188641250134, -0.0006623402005061507, -0.006841673515737057, -0.012388772331178188, 0.005182059481739998, 0.021450791507959366, 0.01681440882384777, 0.011041512712836266, 0.006333628203719854, -0.0029259631410241127, -0.0361577533185482, 0.012479091994464397, 0.029203182086348534, 0.02682477794587612, 0.04076403006911278, -0.025665683671832085, 0.02632802352309227, 0.013322070240974426, -0.015135979279875755, 0.005091740284115076, 0.029323607683181763, 0.01610690914094448, 0.009445874951779842, 0.02673446014523506, 0.031641799956560135, 0.01899712160229683, -0.045279983431100845, 0.01002542208880186, -0.004918628837913275, 0.005558389239013195, -0.00416596932336688, 0.00313670770265162, 0.005347644444555044, 0.001805441570468247, 0.0014366385294124484, 0.0064803967252373695, 0.019478823989629745, -0.009551246650516987, 0.038686688989400864, -0.0010048002004623413, -0.0008406263659708202, 0.04151668772101402, -0.025891480967402458, 0.0050240010023117065, -0.0027735496405512094, -0.009521140716969967, 0.0008025229908525944, -0.013344650156795979, -0.003752006683498621, -0.004504666198045015, 0.009498560801148415, -0.00806850753724575, -0.00843731127679348, -0.006822856608778238, 0.013525288552045822, 0.002995584160089493, 0.0076658353209495544, -0.0025421069003641605, -0.02860105410218239, 0.026087172329425812, -0.0017687494400888681, 0.006883069407194853, -0.0006195327150635421, -0.0030614417046308517, -0.0010292616207152605, 0.01242640521377325, -0.014737069606781006, 0.026583926752209663, 0.029790256172418594, -0.020306749269366264, 0.01940355822443962, -0.009212549775838852, 0.0005866038845852017, 0.0275924913585186, -0.008030874654650688, 0.008821167051792145, -0.0245065875351429, 0.010341539047658443, -0.00914481095969677, 0.013623134233057499, -0.003155524143949151, 0.015399409458041191, 0.03748243302106857, 0.0032665415201336145, 0.010921087116003036, -0.024627013131976128, 0.0071991863660514355, 0.0035168007016181946, -0.021330365911126137, 0.011176991276443005, 0.002011482138186693, 0.022835683077573776, 0.007737338077276945, -0.002543988637626171, -0.008121194317936897, -0.00024038057017605752, -0.012704889290034771, -0.007639492396265268, 0.024521641433238983, -0.0009690488805063069, 0.01801866479218006, -0.014353213831782341, -0.005682577844709158, 0.009114704094827175, -0.006126646883785725, -0.0020923928823322058, -0.004060597158968449, 0.0037030838429927826, 0.005238508805632591, 0.007014784961938858, 0.020547600463032722, -0.005163243040442467, 0.010078107938170433, -0.01699504815042019, -0.0005612015957012773, 0.015181138180196285, 0.01758212223649025, -0.018364887684583664, 0.006563189439475536, -0.03402020037174225, 0.005249798763543367, -0.03793403133749962, 0.002643715823069215, 0.022624939680099487, -0.007417457643896341, -0.00885127391666174, -0.018184250220656395, -0.010002842172980309, -0.003044507000595331, 0.004053070675581694, 0.0037538884207606316, -0.003166814101859927, -0.020923929288983345, 0.02238408848643303, 0.0052535622380673885, 0.003936408087611198, 0.0208185575902462, 0.042600516229867935, 0.007154027000069618, -0.020156215876340866, -0.006420183926820755, 0.001757459482178092, 0.01758212223649025, 0.007797550410032272, -0.038686688989400864, -0.01813909038901329, -0.005799239967018366, -0.027110788971185684, 0.023693716153502464, 0.007842710241675377, -0.007722284644842148, 0.01755201630294323, -0.02376898191869259, 0.019569141790270805, 0.02247440814971924, -0.005471833515912294, 0.0010236166417598724, -0.0020302985794842243, 0.053408704698085785, -0.0037162555381655693, 0.02143573760986328, 0.0006228255806490779, 0.007345954887568951, 0.01073292177170515, -0.02084866352379322, -0.01320917159318924, 0.03082892671227455, 0.011523214168846607, 0.007270689122378826, 0.006126646883785725, 0.020637918263673782, 0.024928076192736626, 0.025304406881332397, -0.05614838749170303, -0.006676088087260723, -0.00971683207899332, 0.00873084831982851, 0.017010100185871124, 0.014699436724185944, -0.012524250894784927, -0.02078844979405403, 0.012230713851749897, 0.030226798728108406, -0.021691642701625824, 0.019870206713676453, 0.016573557630181313, -0.009536193683743477, -0.01869605854153633, -0.006062671076506376, -0.015429516322910786, -0.0005127491895109415, 0.01878637634217739, -0.04103498533368111, -0.017070313915610313, 0.024988289922475815, 0.01749180257320404, -0.00380281126126647, 0.01114688441157341, -0.020276641473174095, 0.01819930225610733, 0.013758612796664238, -0.007473906967788935, 0.007470143958926201, -0.00224856985732913, 0.013261857442557812, 0.006755117326974869, -0.03248477727174759, 0.004628854803740978, 0.011350102722644806, 0.003418955020606518, 0.0211196206510067, 0.004260051995515823, -0.008166354149580002, 0.014353213831782341, 0.006623402237892151, -0.0011807343689724803, 0.002969241002574563, -0.001988902222365141, -0.019930418580770493, 0.0013444377109408379, 0.009460927918553352, 0.0031799855642020702, -0.0008989574853330851, -0.023543184623122215, -0.0003234083123970777, 0.011696325615048409, -0.004188549239188433, 0.022594833746552467, -0.025199035182595253, -0.006642218679189682, 0.004956261720508337, 0.02414531074464321, -0.01482738833874464, -0.021842174232006073, 0.004489612765610218, 0.016934834420681, 0.0073120854794979095, 0.006713721435517073, 0.014819862321019173, -0.0011543912114575505, 0.03224392607808113, 0.005234745796769857, 0.013434968888759613, 0.017958451062440872, 0.012742522172629833, -0.005682577844709158, -0.0011383972596377134, -0.001182615989819169, -0.02814945951104164, -0.009363082237541676, -0.012832841835916042, -0.00031447046785615385, 0.021330365911126137, -0.008565262891352177, 0.0065895323641598225, -0.005723974201828241, -0.0018863524310290813, 0.005103030242025852, -0.018891749903559685, -0.02638823539018631, -0.015158559195697308, 0.04046296700835228, 0.0031404709443449974, -0.023543184623122215, -0.0013378519797697663, -0.03772328421473503, 0.01421020831912756, -0.0008749664411880076, 0.014985446818172932, 0.004410583525896072, -0.05897838622331619, -0.019915366545319557, -0.030783766880631447, -0.006055144127458334, 0.008407204411923885, 0.013871511444449425, -0.05142168700695038, 0.042720943689346313, 0.010755501687526703, -0.009972736239433289, 0.0005141603760421276, 0.005057870876044035, 0.014940287917852402, -0.011681272648274899, -0.024461427703499794, -0.006755117326974869, -0.004707884043455124, 0.016061749309301376, -0.012328559532761574, -0.007522829808294773, -0.009242656640708447, 0.000757833884563297, -0.01381129864603281, -0.003674859181046486, 0.018184250220656395, 0.0177326537668705, 0.0177326537668705, -0.004113283008337021, 0.012712416239082813, -0.012170501053333282, -0.010672708973288536, 0.026403289288282394, 0.004956261720508337, -0.003309819381684065, -0.006525556556880474, -0.03880711644887924, 0.0007263162406161427, -0.009784570895135403, 0.02694520354270935, 0.023543184623122215, -0.01705526001751423, -0.0032364351209253073, -0.003624054603278637, -0.022489460185170174, -0.009197496809065342, -0.022248608991503716, -0.005182059481739998, 0.010251220315694809, 0.0011685036588460207, 0.011380208656191826, -0.026659192517399788, 0.02309158816933632, -0.004181022755801678, -0.006698668003082275, -0.011749012395739555, -0.01616712287068367, -0.004105756524950266, -0.014082255773246288, 0.00203970680013299, 0.004602511879056692, -0.0335686057806015, 0.003992857877165079, -0.0037858763244003057, 0.009671672247350216, 0.007093814201653004, 0.007297032047063112, -0.015685420483350754, -0.01804877072572708, -0.017567068338394165, 0.004779386799782515, 0.002916554920375347, -0.006262125447392464, -0.03865658491849899, 0.010356592014431953, -0.009280289523303509, -0.019599249586462975, 0.0005165124894119799, -0.004862179048359394, -0.00014865021512378007, 0.04148658365011215, -0.03365892544388771, 0.016031643375754356, -0.008678162470459938, 0.008520103991031647, 0.0034641146194189787, -0.013871511444449425, -0.0029730042442679405, -0.01478222943842411, 0.004474559798836708, -0.00044359860476106405, -0.011846858076751232, 0.02361845038831234, -0.007507776841521263, 0.02017126977443695, -0.011086671613156796, -0.00029941729735583067, 0.02441626787185669, 0.0031197729986160994, -0.021074460819363594, -0.014609117992222309, -0.023181907832622528, 0.03033217042684555, -0.03793403133749962, -0.012998426333069801, 0.0029654777608811855, -0.03654913604259491, -0.017687493935227394, -0.006378787569701672, -0.004700357560068369, 0.0031762223225086927, 0.04729711264371872, -0.021571217104792595, 0.0015815254300832748, -0.01813909038901329, 0.01510587241500616, 0.0005099267000332475, -0.03200307488441467, -0.02143573760986328, -0.01999063231050968, -0.003654161002486944, 0.01509081944823265, 0.007586806081235409, 0.026222651824355125, -0.013698399998247623, -0.006871779449284077, 0.02214323729276657, 0.018891749903559685, -0.00022003524645697325, -0.015218771994113922, 0.007394877728074789, 0.005054107401520014, 0.014390846714377403, -0.02718605473637581, -0.007078760769218206, -0.012403825297951698, 0.028902119025588036, 0.014458585530519485, 0.015866057947278023, -0.0162875484675169, 0.01281026192009449, -0.017883185297250748, 0.029022542759776115, -0.00012748167500831187, -0.009287816472351551, 0.0028375256806612015, -0.0076921782456338406, -0.011568374000489712, 0.0068341465666890144, 0.002692638663575053, -0.013201644644141197, 0.014466112479567528, -0.027306480333209038, -0.0031705773435533047, -0.017928345128893852, -0.0012042549205943942, -0.015248877927660942, 0.021164780482649803, 0.01453385129570961, 0.004376714117825031, 0.006988442037254572, -0.00013618430239148438, -0.007391114719212055, 0.03618786111474037, 0.00016640826652292162, 0.001182615989819169, 0.06108583137392998, -0.003661687718704343, 0.014571484178304672, -0.03528466820716858, 0.01619722880423069, 0.006232019048184156, -0.038385625928640366, -0.009250183589756489, -0.027818288654088974, -0.007963135838508606, -0.0037651783786714077, -0.004542299080640078, -0.010642603039741516, -0.03784371167421341, 0.010665182955563068, 0.009844783693552017, -0.020547600463032722, 0.0014234669506549835, 0.0051406631246209145, 0.00015582400374114513, 0.010469491593539715, -0.0029015017207711935, 0.006804040167480707, 0.014082255773246288, 0.014940287917852402, -0.008045928552746773, -0.009250183589756489, -0.01510587241500616, -0.0017743944190442562, -0.004196075722575188, -0.008354518562555313, -0.021631428971886635, 0.0053702243603765965, -0.013924197293817997, -0.008369571529328823, 0.011726432479918003, -0.018951961770653725, -0.018831536173820496, 0.005294958595186472, -0.00905449129641056, -0.012072655372321606, 0.01284036785364151, -0.004982604645192623, 0.009942629374563694, 0.001174148521386087, 0.0275924913585186, -0.008595369756221771, 0.018244462087750435, 0.008354518562555313, 0.013096272014081478, -0.018711110576987267, -0.00848247017711401, -0.004963788203895092, -0.012742522172629833, 0.01672409102320671, 0.004990131128579378, 0.03946945443749428, 0.018184250220656395, 0.0043578976765275, -0.008512577041983604, 0.018455207347869873, -0.02820967137813568, 0.017416536808013916, 0.016272494569420815, 0.018921855837106705, 0.00606643408536911, -0.0008632061653770506, -0.017777813598513603, 0.016934834420681, 0.016423026099801064, -0.0036090014036744833, 0.014232788234949112, 0.0177326537668705, 0.02777312882244587, -0.028826851397752762, 0.02617749199271202, 0.021480897441506386, 0.020517492666840553, 0.0024969473015516996, 0.005317538045346737, -0.014383319765329361, 0.008045928552746773, 0.00286010536365211, 0.006239545997232199, 0.007455090526491404, 0.014006990008056164, 0.009603933431208134, 0.012953267432749271, -0.013186591677367687, 0.003513037459924817, -0.010251220315694809, 0.029263393953442574, 0.00570515776053071, 0.007142737042158842, -0.01391667127609253, 0.011184517294168472, 0.008670635521411896, 0.0007145559648051858, 0.017250951379537582, 0.003943935036659241, -0.0014338160399347544, -0.0033719136845320463, -0.010123267769813538, -0.002218463458120823, 0.012004916556179523, -0.01743159070611, -0.0361577533185482, -0.014293001033365726, 0.014834915287792683, 0.0042863949202001095, 0.021224992349743843, -0.015866057947278023, -0.0028243542183190584, -0.007812603376805782, 0.0006830383208580315, 0.011613533832132816, -0.012298453599214554, 0.005799239967018366, -0.018982067704200745, -0.005294958595186472, -0.009332975372672081, -0.026252757757902145, -0.009686725214123726, 0.005607312079519033, 0.006559425964951515, 0.0028902117628604174, 0.0166337713599205, 0.011214624159038067, 0.01082324143499136, -0.012321033515036106, -0.017807919532060623, 0.0011365156387910247, 0.0135478675365448, 0.035826582461595535, 0.004839599598199129, 0.00534388143569231, 0.009001805447041988, -0.00012465920008253306, 0.010657656006515026, -0.019328292459249496, -0.008489997126162052, 0.00017181801376864314, -0.0075566996820271015, -0.001510022790171206, 0.004922391846776009, -0.02777312882244587, -0.0017696901923045516, 0.007948082871735096, 0.0011176990810781717, 0.008587842807173729, 0.019930418580770493, 0.0017696901923045516, -0.0025120005011558533, 0.0008702623308636248, 0.019147653132677078, -0.01241135224699974, -0.004877232480794191, 0.022128183394670486, -0.0010715987300500274, 0.010567337274551392, 0.012674783356487751, -0.013472601771354675, 0.029052650555968285, 0.012418879196047783, -0.009212549775838852, 0.008106141351163387, -0.01564026065170765, -0.027758076786994934, -0.016468185931444168, 0.014722016640007496, -0.02506355568766594, -0.007500250358134508, -0.011628586798906326, 0.00362217309884727, 0.0019221038091927767, -0.012975846417248249, -0.025650629773736, 0.0074362740851938725, 0.005656234920024872, -0.001334088621661067, -0.00703736487776041, -0.00876095425337553, -0.027727968990802765, -0.0020321800839155912, 0.0012908107601106167, -0.02167658880352974, 0.025319458916783333, -0.0014535733498632908, 0.012200607918202877, 0.002942898077890277, 0.014977920800447464, -0.007108867168426514, -0.0032552515622228384, -0.002103682840242982, 0.01952398382127285, -0.003768941620364785, 0.013051113113760948, 0.023753928020596504, 0.003014400601387024, -0.0032721864990890026, 0.005381514318287373, 0.013660767115652561, -0.01391667127609253, -0.01576068624854088, -0.0026136094238609076, 0.010281326249241829, 0.013036059215664864, -0.02023148350417614, -0.0025872664991766214, -0.014759649522602558, 0.009167390875518322, -0.014977920800447464, -0.012539304792881012, 0.0393490307033062, -0.016949888318777084, 0.01353281456977129, -0.00903943832963705, -0.0015269576106220484, -0.00805345457047224, 0.011319995857775211, 0.01740148290991783, 0.0017188857309520245, -0.0016125725815072656, 0.015188665129244328, 0.015580047853291035, -0.0065895323641598225, -0.010266273282468319, -0.013005953282117844, -0.014052149839699268, -0.014925234019756317, -0.006213202606886625, -0.017250951379537582, 0.00042007799493148923, 0.007018548436462879, -0.02361845038831234, 0.0004450098203960806, -0.0046664876863360405, 0.016182174906134605, 0.006585768889635801, 0.01408978272229433, -8.873148181010038e-05, -0.0010715987300500274, 0.01256188377737999, -0.01905733346939087, 0.011267310008406639, 0.014157521538436413, -0.008964172564446926, 0.03012142702937126, -0.0019230445614084601, 0.00038150418549776077, -0.03236434981226921, -0.005682577844709158, -0.003211973700672388, 0.00698091508820653, 0.00753788324072957, 0.006627165246754885, -0.0001097236163332127, 0.01604669727385044, 0.02158626914024353, 0.012652203440666199, -0.0029184366576373577, -0.0180788766592741, -0.005407857242971659, 0.0009544661152176559, -0.025199035182595253, -0.024611959233880043, -0.06316316872835159, -0.018093930557370186, 0.01767244189977646, 0.010552283376455307, -0.025108715519309044, -0.002726508304476738, 0.026674246415495872, -0.0028318807017058134, 0.010514650493860245, 0.002312545897439122, 0.01083829440176487, 0.0003789169422816485, 0.01394677720963955, -0.01696494035422802, 0.0008716735756024718, -0.003981567919254303, 0.007150263525545597, 0.01749180257320404, 0.01241135224699974, -0.008663108572363853, 0.024627013131976128, -0.008444837294518948, -0.030256904661655426, 0.001936216140165925, -0.0013670175103470683, 0.03654913604259491, 0.001009504310786724, 0.0002596674603410065, 0.024581853300333023, -0.019177759066224098, -0.0030162823386490345, -0.0002479071554262191, -0.0036729774437844753, -0.0016577321803197265, 0.02155616320669651, -0.013337123207747936, 0.008489997126162052, -0.0005790772847831249, 0.0004033783625345677, -2.3241296730702743e-05, -0.009536193683743477, -0.001576821319758892, 0.0011468646116554737, 0.017747707664966583, 0.004745516926050186, 0.01943366415798664, 0.005821819882839918, -0.013668293133378029, -0.005035290960222483, -0.008241619914770126, 0.00027848395984619856, 0.007447564043104649, -0.0025251719634979963, -0.00499765807762742, 0.01225329376757145, 0.0021300259977579117, -0.022037865594029427, 0.01396183017641306, -0.010906033217906952, -0.01561015471816063, -0.0034452981781214476, -0.014654276892542839, -0.009355555288493633, 0.008971699513494968, -0.010303906165063381, -0.01110172551125288, -0.006751354318112135, -0.01180922519415617, 0.00348293106071651, 0.021179834380745888, -0.007353481836616993, 0.000800170935690403, 0.01493276096880436, -0.014315580017864704, -0.009287816472351551, -0.00014535733498632908, -0.009205023758113384, 0.0007837065495550632, 0.009370608255267143, -0.0010160900419577956, 0.01737137697637081, -0.02069813199341297, 0.015820899978280067, 0.002969241002574563, 0.010364118963479996, 0.009122231043875217, -0.00710510415956378, -0.0135478675365448, -0.003432126482948661, 0.013081219047307968, -0.017296111211180687, -0.0022466881200671196, -8.514458750141785e-05, -0.02712584286928177, 0.0013284437591210008, -0.0047530438750982285, -0.005144426599144936, 0.0012531777611002326, -0.00946845393627882, -0.008369571529328823, 0.028345150873064995, 0.008903959766030312, 0.016558505594730377, -0.015790792182087898, 0.005942245479673147, -0.02244430035352707, -0.009551246650516987, 0.02376898191869259, -0.011982336640357971, -0.003475404344499111, 0.017913291230797768, 0.003629699582234025, -0.005347644444555044, 0.02441626787185669, -0.008828694000840187, 0.013570447452366352, 0.00613417336717248, 0.021541109308600426, 0.009641566313803196, -0.009799624793231487, -0.000551322940737009, -0.0049111018888652325, -0.002969241002574563, -0.007078760769218206, 0.001907050609588623, -0.006615875288844109, -0.020457280799746513, 0.0019475059816613793, -0.013660767115652561, 0.0022353981621563435, -0.03627818077802658, 0.01411988865584135, 0.013148958794772625, -0.011643639765679836, -0.005520756356418133, 0.005415383726358414, 0.007887870073318481, -0.00627341540530324, 0.015188665129244328, 0.0005898967501707375, 0.011523214168846607, -0.00577289704233408, 0.027938714250922203, 0.0014375792816281319, -0.00018875284877140075, 0.0022146999835968018, 0.008700741454958916, 0.0145187983289361, -0.02017126977443695, 0.0047869132831692696, -0.01425536721944809, 0.016799356788396835, -0.022670099511742592, -0.0064653437584638596, 0.012433932162821293, -0.010446911677718163, -0.00456487899646163, 0.00012560002505779266, -0.029022542759776115, 0.003755770158022642, -0.011199571192264557, -0.008151300251483917, -0.008015821687877178, -0.015459622256457806, -0.02102930098772049, 0.003783994819968939, 0.018334781751036644, -0.0014883838593959808, -0.016934834420681, 0.006284705363214016, 0.019162707030773163, 0.02405499294400215, -0.016889674589037895, -0.008768481202423573, 0.013510234653949738, 0.0025891480036079884, 0.02629791758954525, 0.033177223056554794, -0.0023972198832780123, -0.013705926015973091, 0.011538267135620117, -0.023196959868073463, -0.019253024831414223, -0.009385662153363228, 0.004395530559122562, 0.0033493340015411377, -0.03332775458693504, 0.02279052510857582, 0.008663108572363853, 0.01014584768563509, 0.014526325277984142, 0.0031442344188690186, 0.010627550072968006, 0.01281026192009449, 0.016061749309301376, -0.020713184028863907, 0.0052610887214541435, 0.01004047505557537, -0.0037802315782755613, -0.022926002740859985, 0.014029569923877716, 0.017416536808013916, -0.011335049755871296, -0.012990900315344334, 0.010371645912528038, -0.025454938411712646, 0.02066802605986595, 0.02638823539018631, 0.015113399364054203, -0.000645875814370811, 0.004993894603103399, 0.011335049755871296, 0.024928076192736626, -0.019629355520009995, 0.0049035754054784775, 0.008640528656542301, 0.03534488379955292, -0.007345954887568951, -0.01798855885863304, 0.012418879196047783, -0.00016958355263341218, -0.021014248952269554, 0.004260051995515823, 0.008301832713186741, -0.01226834673434496, 0.011350102722644806, 0.013404862955212593, -0.022369034588336945, 0.008399678394198418, 0.012659729458391666, -0.006785223726183176, 0.009807150810956955, 0.007059944327920675, 0.00015723523392807692, 0.004914865363389254, 0.020637918263673782, 0.0062508354894816875, 0.022730311378836632, 0.003411428304389119, -0.009317922405898571, 0.00889643281698227, 0.0351642444729805, 0.016302600502967834, 0.001683134469203651, -0.011387735605239868, -0.004229945596307516, -0.0211196206510067, 0.015361776575446129, 0.006047617644071579, -0.032274030148983, 0.02084866352379322, 0.009897470474243164, -0.001683134469203651, -0.007221766281872988, -0.012524250894784927, -0.0037012023385614157, 0.002513882238417864, 0.009573826566338539, -0.01804877072572708, 0.0051481896080076694, -0.0026700589805841446, -0.01547467615455389, 0.009799624793231487, 0.01911754719913006, 0.025485044345259666, -0.005558389239013195, -0.007970661856234074, 0.004109519999474287, 0.0067739337682724, 0.002431089524179697, -0.0020547599997371435, 0.011192044243216515, 0.011312469840049744, 0.00452724564820528, 0.010710341855883598, 0.012110288254916668, 0.009205023758113384, 0.00805345457047224, 0.017717599868774414, 0.024672172963619232, 0.018590684980154037, -0.01111677847802639, 0.0071991863660514355, -0.011169464327394962, -0.004711647517979145, 0.00492615532130003, 0.0012127223890274763, 0.020397067070007324, 0.0007672421052120626, -0.00030600305763073266, 0.0005089858896099031, -0.003955224994570017, -0.006450290326029062, 0.006747590843588114, -0.020954035222530365, 0.00577289704233408, -0.033147115260362625, 0.002399101620540023, 0.0003561019548214972, -0.0042863949202001095, 0.007970661856234074, 0.010800661519169807, -0.0006167102255858481, 0.00973188504576683, -0.018154142424464226, 0.017205791547894478, 0.01675419695675373, -0.0007931147702038288, 0.015775740146636963, -0.005682577844709158, 0.002005837159231305, -0.008301832713186741, -0.012200607918202877, 0.002969241002574563, 0.0003680974477902055, -0.006152989808470011, 0.00018334310152567923, 0.032936371862888336, 0.010017896071076393, -0.004929918795824051, -0.028284937143325806, 0.009874890558421612, -0.0004915806348435581, -0.0008881380199454725, 0.008151300251483917, -0.0024442612193524837, 0.0062508354894816875, 0.01810898259282112, 0.0312805213034153, -0.000376800075173378, 0.0035055107437074184, -0.0040417807176709175, -0.022067971527576447, 0.01949387602508068, -0.00946845393627882, -0.03609754145145416, -0.006254598964005709, -0.00753788324072957, 0.00945340096950531, -0.014353213831782341, 0.010386698879301548, -0.005407857242971659, 0.013164011761546135, 0.008693215437233448, -0.0013058639597147703, -0.016739143058657646, -0.01341238897293806, 0.0018712992314249277, -0.005114320199936628, 0.010311433114111423, -0.014067202806472778, -0.012162975035607815, -0.0063599711284041405, 0.0010612496407702565, -0.017010100185871124, 0.0036786224227398634, 0.00660458579659462, 0.005814293399453163, -0.008444837294518948, 0.00696586212143302, -0.008798587135970592, 0.008256672881543636, 0.0147671764716506, 0.021285206079483032, -0.018650898709893227, -0.017235899344086647, 0.0013538459315896034, -0.007729811128228903, 0.012336086481809616, -0.013984410092234612, 0.018214356154203415, -0.011056565679609776, -0.01054475735872984, 0.005520756356418133, -0.016799356788396835, 0.017326217144727707, 0.005234745796769857, -0.00888137985020876, 0.027577437460422516, 3.1164800020633265e-05, 0.015971431508660316, -0.019825046882033348, 0.01045443769544363, 0.006694904528558254, -0.0037802315782755613, 0.0017348797991871834, -0.004975078161805868, 0.009656619280576706, -0.023181907832622528, -0.007481433916836977, -0.002197765279561281, 0.004534772597253323, -0.0069545721635222435, -0.022248608991503716, 0.0029316081199795008, 0.01086840033531189, 0.0022542146034538746, 0.0032853579614311457, -0.002306900918483734, -0.004365424159914255, 0.0026136094238609076, -0.01384140457957983, 0.007729811128228903, 0.004711647517979145, 0.006348681636154652, -0.013728505931794643, 0.016152068972587585, 0.006299758795648813, 0.02580116130411625, -0.026704352349042892, -0.018274568021297455, -0.01752190850675106, -0.006427710875868797, 0.005652471445500851, -0.010446911677718163, -0.006770170759409666, -0.01013079471886158, 0.00021909442148171365, 0.01425536721944809, -0.019975578412413597, -0.002707691863179207, -0.009761991910636425, -0.0015203718794509768, -0.0023163091391324997, -0.004158442839980125, 0.0029730042442679405, -0.019177759066224098, -0.010552283376455307, 0.01507576648145914, -0.005784187000244856, 0.011696325615048409, -0.013751085847616196, -0.002707691863179207, -0.0010151492897421122, 0.011109251528978348, 0.003977804444730282, -0.0017847433919087052, 0.0033361625391989946, 0.01770254783332348, 0.0016445606015622616, -0.02688499167561531, -0.01479728240519762, -0.004798203241080046, 0.02364855632185936, -0.03272562846541405, -0.030046161264181137, 0.01310379896312952, -0.006525556556880474, 0.011771592311561108, 0.0018712992314249277, -0.01308874599635601, -0.018154142424464226, -0.01755201630294323, 0.020336855202913284, -0.0006134173600003123, -0.02008095011115074, 0.022594833746552467, -0.008798587135970592, -0.006909412797540426, -0.026463501155376434, -0.016513345763087273, 0.00942329503595829, -0.01450374536216259, -0.0029278448782861233, 0.003797166282311082, 0.006085250526666641, 0.0028563421219587326, 0.0007300795405171812, -0.00883622094988823, -0.03814477473497391, 0.004433163441717625, -0.004120809957385063, 0.00501271104440093, -0.01752190850675106, -1.8154965800931677e-05, 0.004670251160860062, 0.010597443208098412, -0.01353281456977129, 0.009415768086910248, -0.01637786626815796, -0.011764065362513065, -0.009152336977422237, -5.059870090917684e-05, -0.013540341518819332, 0.0101609006524086, 0.0067739337682724, -0.008512577041983604, -0.004726700484752655, -0.01896701566874981, -0.010191007517278194, -0.018831536173820496, -0.006792750209569931, 0.011606006883084774, 0.00047911470755934715, 0.014526325277984142, 0.0024461427237838507, 0.0267946720123291, 0.005957298446446657, -0.010431858710944653, -0.005915902089327574, -0.006401367485523224, 0.017973504960536957, -0.0030764949042350054, -0.014390846714377403, -0.01394677720963955, -0.02524419315159321, 0.014451059512794018, -0.021209940314292908, -0.007402404677122831, 0.024310896173119545, 0.019373450428247452, 0.0005315656308084726, -0.002312545897439122, 0.010341539047658443, -0.028796745464205742, -0.01896701566874981, 0.007161553483456373, 0.011681272648274899, 0.0031442344188690186, 0.00044900833745487034, 0.0037538884207606316, -0.014586538076400757, 0.01141031552106142, 0.013291963376104832, 0.0011073499917984009, -0.004722937475889921, -0.0050240010023117065, -0.004463269840925932, 0.0064803967252373695, 0.003693675622344017, 0.005746554117649794, -0.0162875484675169, -0.003861142322421074, 0.007790023926645517, 0.007963135838508606, -0.011794171296060085, 0.007970661856234074, -0.006608348805457354, -0.025921586900949478, 0.01450374536216259, -0.015790792182087898, -0.009754464961588383, 0.016618717461824417, 0.0010132676688954234, -0.011538267135620117, 0.005900849122554064, 0.020622866228222847, 0.012945740483701229, 0.00578795000910759, 0.0011666219215840101, 0.010303906165063381, 0.001904228120110929, -0.016438079997897148, 0.013171537779271603, -0.005919665563851595, 0.0203218013048172, 0.012787682004272938, -0.0018327254801988602, 0.005336354486644268, 0.007218002807348967, 0.010349065996706486, -0.018063824623823166, -0.008753428235650063, -0.00575784407556057, -0.01073292177170515, -0.01822940818965435, -0.021224992349743843, 0.0014592183288186789, 0.0006501094903796911, 0.028375256806612015, -0.005991168320178986, 0.002527053700760007, -0.01834983378648758, 0.00024649593979120255, -0.006137936841696501, 0.0010367882205173373, 0.01604669727385044, -0.013600554317235947, 0.012313506565988064, 0.03112998977303505, 0.015188665129244328, -0.010800661519169807, -0.021360471844673157, -0.0002897738304454833, 0.017898239195346832, 0.0041847857646644115, 0.007797550410032272, 0.007477670442312956, -0.021947545930743217, -0.016919782385230064, -0.001975730760022998, -0.0029598327819257975, 0.016678931191563606, -0.0002542577276472002, -0.012019969522953033, -0.002370876958593726, -0.003044507000595331, 0.018003610894083977, 0.010394224897027016, 0.0039213551208376884, 0.016182174906134605, 0.014849968254566193, -0.02476249262690544, -0.009355555288493633, 0.01684451662003994, 0.00047064729733392596, 0.008474944159388542, -0.015256404876708984, 0.011643639765679836, 0.001278580049984157, -0.0008387447451241314, 0.009581353515386581, 0.0032778314780443907, -0.009182443842291832, -0.018831536173820496, -0.00970177911221981, 0.013976884074509144, -0.019599249586462975, 0.01616712287068367, -0.02179701440036297, 0.019569141790270805, 0.017416536808013916, 0.007820130325853825, 0.017235899344086647, -0.013096272014081478, 0.011011405847966671, 0.012682309374213219, -0.017822973430156708, 0.02303137630224228, 0.0008951941854320467, 0.0046664876863360405, -0.02279052510857582, 0.00946845393627882, 0.012004916556179523, 0.01004047505557537, -0.00521969236433506, 0.008557736873626709, -0.004606274887919426, -0.01180922519415617, -0.02614738419651985, 0.006363734602928162, -0.0015965786296874285, 0.01779286563396454, 0.017446642741560936, -0.01970462128520012, 0.03405030816793442, 0.01171890553086996, 0.0004944031243212521, 0.002596674719825387, -0.015369303524494171, 0.011350102722644806, 0.01740148290991783, 0.033869668841362, 0.008550209924578667, 0.004948735237121582, -0.0035412621218711138, 0.022338928654789925, 0.011432895436882973, -0.01068776287138462, 0.014729542657732964, -0.0021187360398471355, 0.00036127647035755217, -0.0046589612029492855, 0.01837994158267975, 0.008512577041983604, 0.02044222690165043, 0.024009833112359047, -0.0031837490387260914, 0.009664146229624748, 0.008572789840400219, 0.009107178077101707, 0.01396183017641306, 0.007255635689944029, 0.009792097844183445, -0.01170385256409645, 0.009807150810956955, 0.015956377610564232, -0.012313506565988064, 0.010800661519169807, 0.0071766069158911705, 0.002111209323629737, -0.01699504815042019, 0.009242656640708447, -0.02312169410288334, -0.004805729724466801, -0.01519619207829237, 0.005558389239013195, -0.004451979883015156, -0.00135290517937392, 0.0029278448782861233, 0.0023896933998912573, 0.006096540484577417, 0.012923160567879677, -0.003624054603278637, -0.03510403260588646, -0.011033985763788223, -0.041215624660253525, 0.0046439082361757755, -0.0017198265995830297, 0.004801966715604067, -0.029278447851538658, -0.0021206175442785025, -0.007842710241675377, 0.016272494569420815, -0.0006002458394505084, 0.010860874317586422, 0.0011280481703579426, -0.00534388143569231, 0.00012230714492034167, -0.011079145595431328, -0.011523214168846607, 0.020577706396579742, -0.003153642639517784, 0.005678814835846424, -0.005629891995340586, 0.0023106641601771116, 0.007526593282818794, -0.018304673954844475, -0.0248528104275465, -0.026282863691449165, -0.002892093500122428, -0.0177326537668705, 0.0008890788303688169, 0.012780155055224895, -0.01822940818965435, -0.012629623524844646, -0.014308054000139236, -0.025048501789569855, 0.003223263658583164, 0.01779286563396454, 0.02182712033390999, 0.018560579046607018, 0.00834699161350727, 0.016121963039040565, -0.01407472975552082, 0.016423026099801064, 0.0016304482705891132, -0.005629891995340586, 0.015986483544111252, -0.0010640721302479506, -0.023513076826930046, 0.013480128720402718, 0.017235899344086647, 0.00047582181286998093, -0.0005983641603961587, -0.009182443842291832, 0.0017141816206276417, -0.005419147200882435, -0.03389977663755417, 0.00755293620750308, 0.004918628837913275, -0.026749512180685997, 0.023949619382619858, -0.019629355520009995, 0.027020469307899475, 0.0020434700418263674, -0.0006571656558662653, 0.010318959131836891, -0.029820362105965614, -0.0026267811190336943, 0.017446642741560936, -0.0025025922805070877, -0.0016944243106991053, 0.013005953282117844, -0.0014347567921504378, 0.004749280400574207, -0.009077071212232113, -0.0351642444729805, -0.029233288019895554, 0.02099919505417347, 0.006002458278089762, -0.018394993618130684, 0.00746638048440218, -0.003610883140936494, 0.009761991910636425, -2.246217627543956e-05, -0.003616528119891882, 0.0013886564411222935, 0.006262125447392464, -0.005991168320178986, -0.0022297531832009554, 0.005035290960222483, -0.007003495004028082, 0.0064728702418506145, -0.016242388635873795, -0.015030606649816036, 0.010318959131836891, 0.016573557630181313, 0.00983725767582655, 0.023212013766169548, 0.0242055244743824, 0.021601323038339615, -0.010642603039741516, 0.021420683711767197, -0.0027208635583519936, -0.01837994158267975, -0.008226566016674042, 0.019132599234580994, -0.03769318014383316, 0.019960524514317513, -0.011327522806823254, -0.02282063104212284, -0.013043586164712906, 0.0012127223890274763, -5.2744955610251054e-05, -0.006183096207678318, 0.011884490959346294, 0.01687462255358696, -0.007289505563676357, 0.0005310952547006309, 0.02515387535095215, 0.015053186565637589, 0.004553589038550854, -0.008685688488185406, -0.0010273799998685718, -0.008979225531220436, 0.013081219047307968, 0.006168043240904808, 0.011749012395739555, -0.01955408975481987, -9.11423412617296e-05, -0.00023814610904082656, 0.009325449354946613, 0.0037990480195730925, -0.012697363272309303, 0.009814677760004997, -0.029383819550275803, 0.015113399364054203, -0.01171890553086996, 0.02149594947695732, 0.009935103356838226, 0.0030501519795507193, -0.0045234826393425465, 0.007707231678068638, -0.014353213831782341, -0.0070749977603554726, 0.028059139847755432, -0.022549673914909363, 0.011455475352704525, 0.023919513449072838, -0.029955841600894928, -0.019343344494700432, -0.009062018245458603, 0.017853079363703728, 0.007086287718266249, 0.0014507508603855968, -0.03495349735021591, 0.01875627040863037, -0.0014902654802426696, 0.020532546564936638, 0.0027208635583519936, 0.009084598161280155, -0.024070044979453087, -0.0018703584792092443, 0.005659997928887606, -0.009001805447041988, -0.00416596932336688, -0.029579510912299156, 0.012140395119786263, -0.0029146731831133366, -0.009807150810956955, 0.046634770929813385, -0.0014225260820239782, 0.01182427816092968, -0.03039238415658474, -0.007820130325853825, 0.011252257041633129, 0.015881111845374107, 0.009536193683743477, 0.007233056239783764, 0.0062433090060949326, -0.011606006883084774, -0.00473422696813941, -0.010537230409681797, 0.013480128720402718, -0.02364855632185936, 0.01634776033461094, -0.00451219268143177, -0.008279252797365189, -0.0076921782456338406, -0.002692638663575053, -0.0005310952547006309, -0.0015674130991101265, 0.02888706512749195, 0.0019164588302373886, -0.006645981688052416, -0.006405130960047245, 0.004290158394724131, 0.012328559532761574, 0.0062169660814106464, -0.017100419849157333, 0.022986216470599174, 0.0027810761239379644, 0.008429784327745438, 0.014706963673233986, 0.0208185575902462, 0.009483507834374905, 0.011041512712836266, 0.0005644945194944739, -0.021074460819363594, 0.016678931191563606, -0.0023840484209358692, 0.007767444476485252, 0.004162206314504147, 0.02521408721804619, -0.0025665683206170797, 0.00606643408536911, 0.014202681370079517, 0.0020171268843114376, 0.02244430035352707, -0.016528399661183357, 0.008934066630899906, 0.02744195982813835, 0.012494144961237907, -0.016934834420681, -0.00041090496233664453, 0.008776008151471615, -0.013653240166604519, -0.01180922519415617, -0.00047652743523940444, 0.021812066435813904, -0.010379171930253506, -0.010928613133728504, 0.01890680193901062, 0.01822940818965435, 0.0032439616043120623, 0.02069813199341297, 0.00620567612349987, 0.02682477794587612, 0.0006002458394505084, 0.02291095070540905, 0.01116193737834692, 0.01970462128520012, 0.018861642107367516, 0.008964172564446926, -0.007601859048008919, -0.008640528656542301, -0.02294105663895607, 0.014022042974829674, -0.009122231043875217, 0.0013924197992309928, -0.007948082871735096, -0.00056590570602566, 0.003398256842046976, -0.001968204043805599, -0.003296647919341922, 0.0008617949206382036, 0.010981299914419651, -0.02235398255288601, 0.004775623325258493, 0.014308054000139236, -0.00946845393627882, 0.017687493935227394, 0.0032853579614311457, 0.005389040801674128, 0.020622866228222847, -0.017070313915610313, -0.004474559798836708, 0.015218771994113922, -0.006555662956088781, 0.0015316617209464312, -0.02093898318707943, -0.019825046882033348, -0.018590684980154037, 0.00156835385132581, -0.0007573634502477944, -0.0028318807017058134, -0.0016906610690057278, 0.006909412797540426, -0.004798203241080046, 0.006950808688998222, -0.02005084417760372, -0.010875927284359932, -0.012027496472001076, 0.009686725214123726, 0.015986483544111252, -0.02574094943702221, -0.007872816175222397, 0.0009290638845413923, 0.014270421117544174, 0.005106793716549873, -0.0011967283207923174, -0.016438079997897148, 0.02038201503455639, -0.005351407919079065, 0.003962751477956772, -0.01547467615455389, 0.01705526001751423, 0.004677777644246817, 0.006055144127458334, 0.0028205907437950373, 0.003366268938407302, 0.015911217778921127, -0.012448985129594803, -0.029398873448371887, -0.002764141419902444, 0.011124304495751858, -0.03784371167421341, -0.004143389407545328, -0.00228996598161757, -0.02614738419651985, -0.0021601321641355753, -0.02140563167631626, 0.00973188504576683, 0.007108867168426514, 0.028826851397752762, -0.029338659718632698, 0.004869705997407436, 0.02820967137813568, -0.019102493301033974, -0.0033944936003535986, 0.025349566712975502, -0.0021469607017934322, 0.01153074111789465, 0.013307017274200916, 0.004854652564972639, 0.008550209924578667, 0.01952398382127285, -0.02182712033390999, 0.004561115521937609, 0.011267310008406639, 0.01869605854153633, 0.0008180466247722507, -0.024491533637046814, -0.012682309374213219, 0.014819862321019173, -0.022956108674407005, 0.028661267831921577, 0.004260051995515823, 0.008700741454958916, -0.028134405612945557, -0.01384140457957983, 0.01239629928022623, -0.02845052257180214, -0.0242055244743824, 0.0008533275104127824, 0.0005635536508634686, -0.013450021855533123, -0.02005084417760372, -0.0035092742182314396, 0.026132332161068916, -0.008324412629008293, 0.010951193049550056, 0.020637918263673782, 0.009679199196398258, -0.023046428337693214, -0.01767244189977646, -0.01801866479218006, 0.009152336977422237, 0.008610422722995281, -0.011982336640357971, 0.011274836957454681, 0.007662071846425533, -0.004636381287127733, 0.03405030816793442, -0.005392804276198149, 0.007970661856234074, -0.0035619603004306555, -0.014097309671342373, -0.012358666397631168, -0.026072118431329727, -0.002878922037780285, -0.006311048287898302, -0.0006595177110284567, 0.007067471276968718, -0.020502440631389618, -0.023106642067432404, 0.01958419568836689, -0.020637918263673782, 0.006292231846600771, 0.011937176808714867, -0.009566299617290497, -0.019809992983937263, -0.01173395849764347, 0.010048002004623413, 0.00755293620750308, 0.04687562212347984, 0.016709037125110626, 0.008249145932495594, -0.005520756356418133, -0.01875627040863037, -0.021315312013030052, -0.011485581286251545, -0.01481233537197113, -0.009310395456850529, 0.02029169537127018, -0.02641834318637848, -0.018635844811797142, 0.007470143958926201, 0.00817388016730547, -0.017898239195346832, -0.00843731127679348, 0.006348681636154652, 0.010552283376455307, -0.015391883440315723, 0.02521408721804619, -0.0008406263659708202, 0.0076658353209495544, -0.01013079471886158, -0.0012964557390660048, 0.0015504781622439623, 0.0073120854794979095, 0.023693716153502464, 0.01844015344977379, 0.007590569090098143, -0.04139626398682594, 0.01339733600616455, -0.007616912480443716, -0.011124304495751858, 0.01322422455996275, 0.003618409624323249, -0.006770170759409666, -0.005573442205786705, 0.005453016608953476, 0.009754464961588383, -0.023949619382619858, 0.004884758964180946, -0.01878637634217739, 0.0200207382440567, -0.013690873049199581, -0.03772328421473503, -0.012019969522953033, 0.00786529015749693, -0.003842325881123543, -0.004015437327325344, 0.0037106105592101812, 0.0032082104589790106, -0.00235958700068295, -0.008648055605590343, 0.011470528319478035, -0.0032684230245649815, -0.004463269840925932, 0.0029391346033662558, -0.0014159403508529067, -0.001163799432106316, 0.008919012732803822, -0.026674246415495872, 5.789008719148114e-05, -0.014977920800447464, 0.018801430240273476, -0.00407941360026598, 0.010778081603348255, 0.0032665415201336145, -1.2781978512066416e-05, 0.006608348805457354, -0.0014375792816281319, -0.0015523598995059729, -0.015444569289684296, 0.0037237820215523243, -0.007586806081235409, -0.016438079997897148, -0.01625744067132473, -0.018891749903559685, -0.020607812330126762, -0.025635575875639915, -0.013879038393497467, 0.0020566415041685104, -0.01478222943842411, -0.00203970680013299, -0.024009833112359047, -0.009114704094827175, 0.001661495422013104, -0.007338428404182196, -0.012275873683393002, 0.014217734336853027, 0.011831804178655148, 5.791948569822125e-05, 0.0007281979196704924, 0.004444453399628401, 0.026011906564235687, 0.008527630008757114, 0.006992205046117306, 0.009603933431208134, -0.008015821687877178, 0.009799624793231487, -0.0010029185796156526, 0.009016858413815498, 0.0298354160040617, 0.012080182321369648, -0.007488960400223732, 0.008512577041983604, -0.004369187168776989, -0.010303906165063381, -0.0023821666836738586, -0.010093161836266518, -0.0008236915455199778, -0.003821627702564001, 0.012825314886868, -0.004147152882069349, 0.007827657274901867, 0.006883069407194853, 0.026779618114233017, 0.034321267157793045, 0.00805345457047224, 0.00902438536286354, 0.00945340096950531, 0.0036654509603977203, -0.004410583525896072, 0.017205791547894478, -0.004805729724466801, 0.014842442236840725, 0.0057503171265125275, 0.003827272681519389, 0.011726432479918003, 0.008753428235650063, 0.01411988865584135, 0.0023106641601771116, -0.018665950745344162, 0.013690873049199581, 0.03218371421098709, -0.007131447084248066, -0.009920050390064716, 0.010665182955563068, -0.023482970893383026, 0.00691317580640316, 0.012042549438774586, -0.013705926015973091, 0.022128183394670486, 0.017958451062440872, -0.00655189948156476, 0.007225529756397009, 0.0014451058814302087, -0.0166337713599205, 0.008648055605590343, 0.018455207347869873, -0.006544372998178005, -0.010913560166954994, -0.003996620886027813, -0.014789755456149578, 0.011944703757762909, -0.0054981764405965805, 0.0022937292233109474, 0.0012983373599126935, 0.011952229775488377, -0.027938714250922203, 0.015120926313102245, 0.015805846080183983, 0.014473638497292995, 0.0008820226648822427, -0.002342652063816786, 0.019539035856723785, 0.010243693366646767, -0.020803503692150116, 0.012825314886868, -0.010830767452716827, -0.0032928844448179007, 0.007293269038200378, -0.002854460384696722, -0.006943282205611467, -0.010800661519169807, 0.0006016570259816945, 0.019268078729510307, -0.0015373066999018192, 0.005799239967018366, -0.007485196925699711, -0.00032434912282042205, 0.0104092787951231, 0.0041509163565933704, 0.018982067704200745, 0.026568874716758728, -0.02176690846681595, 0.017627282068133354, -0.010988825932145119, 0.013728505931794643, -0.0006534023559652269, 0.010883454233407974, 0.004222418647259474, 0.01521124504506588, 0.013261857442557812, 0.006141700316220522, 0.0005903671844862401, 0.01761222817003727, -0.01251672487705946, -0.020622866228222847, -0.009250183589756489, 0.0029711227398365736, 0.0029937024228274822, 0.008181407116353512, 0.004986368119716644, 0.009822203777730465], "2abc0d0b-6666-4b3e-983e-36e820323e08": [0.002991319866850972, -0.006550445221364498, -0.005448676645755768, 0.03227842599153519, 0.0227122213691473, 0.00870133750140667, 0.003700136672705412, 0.02180974930524826, -0.03402320668101311, 0.0006980059552006423, 0.015612771734595299, 0.019673896953463554, 0.009024723432958126, 0.027735983952879906, 0.023343952372670174, 0.033301230520009995, -0.010318267159163952, 0.0034857995342463255, 0.024291547015309334, -0.00815985444933176, 0.020275546237826347, -0.005478759296238422, -0.047831036150455475, 0.027149377390742302, 0.0291498564183712, 0.014424516819417477, -0.0017758023459464312, 0.012408995069563389, -0.015372112393379211, -7.326712511712685e-05, 0.03730219230055809, 0.013732620514929295, 0.04298776760697365, 0.005832227412611246, 0.035046011209487915, -0.036941200494766235, 0.01920761913061142, 0.006858789827674627, 0.004674054682254791, 0.02114793471992016, -0.007445396855473518, -0.017733581364154816, -0.007791344542056322, -0.002073806244879961, -0.05008721724152565, -0.0008131652139127254, -0.008423075079917908, 0.025855833664536476, -0.014537325128912926, -0.035858236253261566, 0.0043281069956719875, -0.031436119228601456, 0.01322122011333704, 0.021253224462270737, 0.023328909650444984, -0.0328499935567379, -0.027751024812459946, 0.003841147990897298, 0.027901437133550644, -0.05851029232144356, 0.006960317958146334, -0.010107690468430519, -0.03528666868805885, -0.014830629341304302, 0.0300372876226902, -0.017071768641471863, -0.010829668492078781, 0.009927195496857166, -0.04915466159582138, 0.00476054148748517, -0.011957759037613869, 0.044311393052339554, -0.029555968940258026, 0.06227059289813042, 0.018756384029984474, 0.0009161034249700606, 0.06221042573451996, 0.0015548845985904336, 0.008302745409309864, 0.005858549848198891, 0.021569089964032173, -0.022155696526169777, 0.05628419294953346, -0.00959628913551569, 0.046176500618457794, 0.021448759362101555, 0.0021433718502521515, -0.043258506804704666, 0.0014298546593636274, -0.03943804278969765, 0.011859990656375885, 0.008347868919372559, 0.013386673294007778, 0.018666137009859085, -0.005076406989246607, 0.03020274080336094, 0.04759037494659424, 0.013785265386104584, 0.002045603934675455, -0.02274230308830738, -0.003779103048145771, -0.0076559740118682384, -0.024411877617239952, 0.027660777792334557, 0.015988802537322044, -0.014808067120611668, -0.0040987287648022175, 0.0022806229535490274, -0.03387279435992241, 0.03251908719539642, 0.0038073051255196333, -0.021569089964032173, -0.02818721905350685, -0.00476054148748517, -0.07953789830207825, -0.03206785023212433, -0.027796149253845215, -0.047891199588775635, -0.011844949796795845, -0.005851028952747583, 0.023358993232250214, -0.02113289386034012, 0.013935676775872707, 0.010980079881846905, -0.04816194251179695, 0.039588455110788345, 0.004711657762527466, 0.004200256895273924, 0.028773827478289604, 0.003617410082370043, 0.008505801670253277, 0.004215297754853964, 0.018034406006336212, 0.018049446865916252, 0.008859270252287388, 0.002017401624470949, 0.010160334408283234, 0.010333308018743992, -0.021689418703317642, 0.029691340401768684, -0.08296728879213333, -0.031466200947761536, -0.017748622223734856, -0.008565966971218586, 0.010400993749499321, 0.002436675364151597, -0.00870885793119669, 0.03483543172478676, -0.018485641106963158, 0.01731242798268795, -0.0473497174680233, -0.06449668854475021, -0.0028108253609389067, -0.01750796288251877, 0.05751756951212883, -0.010829668492078781, -0.040611255913972855, -0.0017278585582971573, 0.01322874054312706, 0.05640452355146408, -0.0019158736104145646, -0.044371556490659714, -0.011047765612602234, 0.010671735741198063, 0.033120736479759216, 0.02832259051501751, 0.03002224676311016, 0.039678700268268585, -0.04376990720629692, 0.031406037509441376, 0.02466757781803608, -0.019523484632372856, 0.016590449959039688, 0.006445156875997782, -0.02905960939824581, -0.0022373793181031942, 0.021659336984157562, 0.056885842233896255, 0.023404115810990334, -0.01462757308036089, -0.012942957691848278, 0.01836531236767769, 0.003925754688680172, -0.004587567877024412, -0.010400993749499321, 0.01749292202293873, 0.029826711863279343, 0.04485287517309189, 0.012032964266836643, 0.036911118775606155, -0.018921837210655212, 0.002137731295078993, -0.008062086068093777, 0.03089463710784912, 0.020756864920258522, -0.016951439902186394, 0.006328587420284748, -0.017868952825665474, -0.035978563129901886, 0.02817217819392681, -0.019342990592122078, -0.025976162403821945, 0.007073127198964357, 0.061548613011837006, -0.044130899012088776, 0.012942957691848278, -0.010965039022266865, -0.010190417058765888, 0.004628931172192097, -0.015687977895140648, 0.017989281564950943, -0.03796400502324104, -0.0015069408109411597, -0.005373470950871706, -0.017838869243860245, -0.004820706322789192, -0.014371871948242188, 0.028743743896484375, 0.00772365927696228, -0.04467238113284111, 0.03291015699505806, 0.008866790682077408, 0.01911737211048603, -0.017959199845790863, -0.0512002632021904, 0.009994881227612495, 0.008731420151889324, 0.02928522787988186, -0.014507243409752846, 0.011506522074341774, 0.04211537539958954, 0.0027318589854985476, -0.020786946639418602, -0.019583649933338165, 0.020546287298202515, 0.04771070554852486, 0.02561517432332039, -0.0026848551351577044, -0.047770868986845016, -0.006418834440410137, 0.00815985444933176, 0.016801027581095695, -0.0064000329002738, -0.01815473474562168, 0.015763184055685997, 0.015402195043861866, 0.011333548463881016, 0.015808306634426117, 0.04644724354147911, 0.0017523005371913314, -0.03549724444746971, -0.007197217084467411, -0.011153054423630238, -0.027720943093299866, -0.02832259051501751, 0.022606931626796722, 0.010416034609079361, -0.009430835954844952, 0.014304187148809433, -0.008558446541428566, 0.027841271832585335, 0.045725267380476, 0.0024742784444242716, 0.016966480761766434, 0.012642133980989456, -0.0346248559653759, 0.047078974545001984, -0.048673342913389206, 0.01750796288251877, 0.01908729039132595, 0.00951356254518032, 0.026758305728435516, -0.0017034165794029832, 0.013980801217257977, -0.009017203003168106, -0.0029330351389944553, 0.05083927512168884, -0.02367485873401165, 0.023945599794387817, 0.010310746729373932, -0.03988927975296974, -0.02289271540939808, 0.015169056132435799, 0.018049446865916252, -0.009739181026816368, -0.020305627956986427, -0.038625817745923996, -0.026878634467720985, -0.06299257278442383, -0.003891912056133151, 0.0015718060312792659, -0.007629651576280594, 0.030458441004157066, -0.03636963665485382, -0.005486279726028442, 0.0235996525734663, -0.020576369017362595, 0.022095531225204468, -0.007456677965819836, 0.06139820069074631, -0.03718186169862747, -0.01046867948025465, -0.01639491505920887, -0.030834471806883812, 0.005884871818125248, 0.026863593608140945, -0.0013208058662712574, -0.005914954002946615, -0.017071768641471863, 0.03658021241426468, 0.013454359024763107, -0.029571009799838066, -0.0017908435547724366, -0.04268694296479225, 0.019418196752667427, 0.00824258103966713, -0.025795668363571167, -0.005809665657579899, -0.016906315460801125, -0.00905480608344078, 0.02815713733434677, 0.0018510083900764585, -0.05721674859523773, -0.01914745569229126, 0.01419137790799141, -0.03471510484814644, 0.004722938407212496, -0.02188495360314846, -0.021975202485919, -0.009355629794299603, -0.07731179893016815, -0.01992959715425968, -0.029480762779712677, 0.011107930913567543, -0.034233786165714264, -0.029345393180847168, -0.011950237676501274, -0.048883918672800064, 0.026246903464198112, -0.03357196971774101, 0.0050613656640052795, -0.012867751531302929, -0.021162977442145348, 0.019523484632372856, 0.04169422388076782, -0.01056644693017006, -0.025073690339922905, 0.005854789167642593, -0.02012513391673565, -0.02193007804453373, 0.0011459519155323505, -0.0005847268621437252, 0.028548208996653557, 0.0008808505954220891, 0.007084407843649387, -0.008911914192140102, 0.012679736129939556, -0.003925754688680172, 0.027104252949357033, -0.014529804699122906, 0.01750796288251877, -0.0264875628054142, -0.00639627268537879, -0.02003488689661026, 0.019703980535268784, -0.03000720590353012, 0.018816549330949783, 0.018500683829188347, 0.02633715234696865, -0.020260503515601158, -0.011792304925620556, 0.012672215700149536, -0.00594503665342927, 0.003929514903575182, -0.0009569967514835298, 0.004504841286689043, 0.03363213688135147, -0.006369950715452433, -0.027781106531620026, 0.019779184833168983, -0.012988081201910973, 0.010799585841596127, 0.004997440613806248, 0.024848071858286858, 0.001138431252911687, 0.008498281240463257, 0.006712138187140226, 0.023900475353002548, 0.004207777325063944, -0.031375955790281296, -0.05484023690223694, 0.027826230973005295, -0.01994463987648487, -0.034173619002103806, -0.03844532370567322, 0.019388115033507347, 0.024366753175854683, 0.01225106231868267, 0.049666061997413635, -0.027886396273970604, 0.004779343027621508, 0.0010481839999556541, -0.010965039022266865, 0.026818469166755676, 0.020817028358578682, -0.01743275672197342, -0.043408919125795364, -0.01815473474562168, 0.03182719275355339, 0.0034087132662534714, -0.018906796351075172, 0.009423315525054932, 0.003222578437998891, 0.02820226177573204, 0.04229586943984032, 0.009904634207487106, -0.03227842599153519, 0.06810657680034637, -0.029465721920132637, -0.019297868013381958, 0.014492201618850231, 0.03664037585258484, 0.0081748953089118, 0.030804390087723732, 0.019824309274554253, 0.03754284977912903, -0.009250341914594173, 0.0420251302421093, 0.02087719365954399, -0.022291067987680435, 0.02098248153924942, 0.038776230067014694, -0.0035722863394767046, -0.023013044148683548, -0.00818241573870182, -0.03020274080336094, -0.013431796804070473, 0.0008310266421176493, 0.006685816217213869, 0.009754221886396408, -0.029856793582439423, 0.009438356384634972, -0.02089223451912403, 0.04076166823506355, -0.03531675040721893, -0.033271148800849915, -0.012454118579626083, 0.017808787524700165, -0.029435640200972557, 0.018034406006336212, 0.017162015661597252, 0.011476440355181694, -0.05923226848244667, -0.00475302105769515, 0.008408034220337868, -0.012950478121638298, -0.0028446679934859276, -0.00010605225543258712, 0.009942237287759781, -0.06034531816840172, -0.034384194761514664, -0.023870393633842468, 0.011792304925620556, 0.00915257353335619, 0.04115273803472519, -0.022531725466251373, 0.0057946243323385715, 0.016770943999290466, 0.033120736479759216, 0.041603974997997284, -0.023479321971535683, -0.015597730875015259, 0.01810961216688156, -0.004049844574183226, 0.004016002174466848, 0.0003703896945808083, -0.027089212089776993, 0.010235540568828583, 0.011837429367005825, 0.0025570050347596407, -0.003594848094508052, -0.027720943093299866, -0.0004672174691222608, -0.010716859251260757, 0.0012089369120076299, -0.003561005461961031, 0.009242820553481579, -0.019478362053632736, 0.022276025265455246, -0.00683998828753829, -0.034173619002103806, 0.006486520171165466, 0.006204497534781694, -0.0016018884489312768, 0.013168576173484325, 0.011784784495830536, -0.00906984694302082, -0.015853431075811386, 0.006952797528356314, -0.048883918672800064, 0.020666616037487984, 0.011220739223062992, -0.023178497329354286, -0.03125562518835068, -0.0325491689145565, 0.01234130933880806, -0.05309545621275902, 0.015041206032037735, -0.03399312496185303, -0.008220018818974495, -0.03501592576503754, 0.025178978219628334, -0.029405556619167328, 0.02290775626897812, 0.023208580911159515, 0.019433237612247467, -0.0034237545914947987, 0.01746284030377865, 0.009167615324258804, -0.007561966311186552, -0.010107690468430519, -0.005452437326312065, -0.03179711103439331, 0.0019816788844764233, -0.025103772059082985, -0.013394193723797798, -0.0023332671262323856, -0.023419156670570374, -9.477134881308302e-05, -0.026216821745038033, 0.004482279531657696, 0.02114793471992016, -0.01564285345375538, -0.016785984858870506, -0.007986879907548428, -0.0019008324015885592, -0.008520843461155891, 0.013326507993042469, 0.022155696526169777, 0.00330906524322927, -0.07123515009880066, 0.05496056750416756, -0.02657780982553959, -0.01410113088786602, 0.019839350134134293, 0.015387153252959251, -0.009821907617151737, -0.005444916430860758, 0.004000960849225521, 0.005234339740127325, -0.014259062707424164, 0.003260181285440922, 0.009882071986794472, -0.010724379681050777, -0.007994401268661022, -0.025359472259879112, 0.0033447882160544395, 0.007313786540180445, -0.016560368239879608, -0.030759265646338463, 0.006189456209540367, 0.017131933942437172, 0.013867991976439953, 0.010258102789521217, -0.019719021394848824, 0.005433635786175728, -0.005365950055420399, 0.0034293949138373137, 0.01809457130730152, 0.02084711194038391, -0.01824498362839222, -0.028698621317744255, 0.03194751963019371, -0.004847028758376837, -0.01146139856427908, 0.023328909650444984, 0.014447078108787537, 0.006809906102716923, -0.024893196299672127, -0.013800306245684624, 0.016154255717992783, 0.006275943014770746, -0.021433718502521515, -0.036068812012672424, -0.009633892215788364, 0.0365501306951046, -0.016665656119585037, -0.022501643747091293, 0.008325307630002499, 0.028879115357995033, -0.001066045486368239, 0.038625817745923996, -0.019342990592122078, 0.009626371785998344, -0.023584609851241112, 0.050448205322027206, -0.01917753741145134, 0.026683099567890167, 0.016575409099459648, 0.023434199392795563, 0.0068437485024333, 0.03266949951648712, 0.021523965522646904, 0.0004944796673953533, -0.016951439902186394, 0.023118333891034126, 0.013341549783945084, -0.015988802537322044, 0.014274104498326778, 0.013288904912769794, -0.028954321518540382, -0.01832018792629242, 0.0030796870123595, -0.0182750653475523, 0.02092231810092926, -0.00729122431948781, 0.0003607539110817015, 0.0018961320165544748, 0.01465013436973095, 0.002248660195618868, 0.019418196752667427, -0.044401638209819794, 0.04121290519833565, -0.02728474698960781, -0.029540928080677986, 0.011769743636250496, 0.0022881433833390474, -0.005986399948596954, 5.309957032295642e-06, 0.015161535702645779, -0.034233786165714264, -0.019297868013381958, -0.012303706258535385, -0.025825750082731247, 0.02466757781803608, -0.014326748438179493, 0.015357071533799171, 0.026878634467720985, -0.009280423633754253, -0.013973279856145382, -0.0182750653475523, -0.02836771495640278, -0.02188495360314846, 0.07159613817930222, -0.011551646515727043, 0.012108170427381992, -0.01552252471446991, 0.0330004058778286, 0.03561757504940033, 0.006181935779750347, 0.02099752426147461, 0.009611330926418304, 0.001067925593815744, 0.04939531907439232, -0.004433395341038704, -0.003057125024497509, -0.000820215733256191, -0.005899913143366575, 0.02830754965543747, 0.02812705561518669, 0.021283306181430817, -0.01926778443157673, 0.028578290715813637, 0.0032394996378570795, 0.018906796351075172, 0.02087719365954399, 0.004282983485609293, 0.011671976186335087, 0.028006725013256073, 0.03227842599153519, 0.011055286042392254, -0.028081931173801422, -0.00594127643853426, 0.001850068336352706, -0.01631970889866352, -0.001251240260899067, 0.0017212779494002461, -0.0060766469687223434, -0.002107648877426982, -0.0013565287226811051, 0.00030740463989786804, -0.015417235903441906, -0.014845670200884342, 0.016139212995767593, -0.017613252624869347, 0.006550445221364498, -0.007836468517780304, 0.005621650721877813, 0.00017250383098144084, -0.006369950715452433, -0.0044672382064163685, -0.013852950185537338, -0.012664695270359516, 3.9659429603489116e-05, 0.00824258103966713, -0.01898200251162052, 0.004158893600106239, -0.0009823787258937955, -0.006693336647003889, -0.011506522074341774, -0.03203776851296425, -0.017989281564950943, -0.018079528585076332, -0.03197760507464409, -0.031345874071121216, 0.02552492544054985, -0.01510889083147049, -0.0054261148907244205, -0.008987120352685452, -0.012860231101512909, -0.004068646114319563, 0.01101016253232956, 0.01651524379849434, -0.025314349681138992, 0.007148332893848419, 0.030398277565836906, -0.014326748438179493, 0.017673416063189507, -0.01902712509036064, 0.013010643422603607, 0.01750796288251877, 0.025931037962436676, 0.006809906102716923, -0.026111533865332603, -0.01904216594994068, -0.0031736944802105427, 0.007185935974121094, 0.00959628913551569, 0.0028559488710016012, 0.001555824768729508, 0.014003362506628036, -0.010731900110840797, -0.017883993685245514, 0.009325548075139523, -0.01838035322725773, -0.009543645195662975, -0.036971282213926315, 0.015703018754720688, 0.03104504942893982, -0.015048726461827755, -0.007340108510106802, -0.03173694387078285, 0.02725466527044773, -0.027224581688642502, -0.010333308018743992, 0.03104504942893982, 0.023750064894557, 0.03841523826122284, -0.011243301443755627, -0.011604290455579758, 0.029856793582439423, -0.038746144622564316, 0.017131933942437172, -0.010273143649101257, -0.023584609851241112, 0.02001984417438507, 0.0059224748983979225, 0.023389074951410294, -0.0238252691924572, 0.007716138381510973, -0.024426918476819992, 0.026051368564367294, 0.0010387832298874855, -0.028096972033381462, 0.02014017477631569, -0.004847028758376837, 0.015582689084112644, 0.0384754054248333, 0.019418196752667427, -0.015868471935391426, 0.015793265774846077, 0.03621922433376312, 0.011784784495830536, 0.005820946767926216, -0.01925274357199669, -4.341973180999048e-05, 0.0264875628054142, -0.008039524778723717, -0.022546768188476562, -0.006321066990494728, -0.014161295257508755, -0.028518125414848328, 0.021493883803486824, -0.009972319938242435, -0.0075281234458088875, -0.04494312405586243, 0.016831109300255775, 0.0015088209183886647, -0.022501643747091293, -0.011085368692874908, 0.015778224915266037, -0.009859510697424412, -0.011228260584175587, 0.003245140193030238, 0.004489799961447716, -0.03838515654206276, 0.01653028465807438, -0.009821907617151737, 0.00818241573870182, 0.035136256366968155, 0.005219298414885998, -0.03011249378323555, 0.024035846814513206, 0.028457961976528168, 0.016996562480926514, -0.053245868533849716, -0.009979840368032455, -0.005264421924948692, -0.0030947281047701836, 0.0043318672105669975, 0.011476440355181694, -0.01642499677836895, -0.0073777115903794765, 0.01729738712310791, 0.0031774546951055527, -0.006753501482307911, 0.0022035366855561733, 0.017944158986210823, -0.00046698242658749223, 0.013905595056712627, -0.017538046464323997, 0.007437876425683498, 0.009934716857969761, -0.006768542807549238, -0.02561517432332039, 0.001932794926688075, 0.009190176613628864, 0.022441478446125984, 0.003937035799026489, -0.01926778443157673, -0.03540699928998947, -0.03799408674240112, 0.0077462210319936275, 0.025931037962436676, -0.02262197434902191, 0.02550988458096981, -0.017929118126630783, -0.0071633742190897465, -0.010589009150862694, 0.02477286569774151, -0.03005232848227024, -0.004504841286689043, -0.025750543922185898, 0.03191743791103363, 0.018651096150279045, 0.007328827399760485, -0.009994881227612495, -0.007321306969970465, 0.018936878070235252, 0.020606452599167824, 0.02919498085975647, -0.014146254397928715, 0.012386432848870754, 0.020531246438622475, 0.005162893794476986, 0.008468198589980602, 0.001443015644326806, 0.013830388896167278, -0.03384271264076233, 0.004625170957297087, 0.01224354188889265, 0.04933515563607216, -0.02015521563589573, 0.013040725141763687, 0.02113289386034012, -0.022351231426000595, -0.006824946962296963, -0.026923758909106255, -0.01421393919736147, -0.017583169043064117, -0.010949998162686825, 0.02092231810092926, 0.017823828384280205, -0.023479321971535683, -0.013371632434427738, 0.005542684346437454, -0.003049604594707489, 0.0014082328416407108, -0.02185487188398838, 0.008197457529604435, 0.002436675364151597, 0.019312908872961998, -0.003335387445986271, -0.0060766469687223434, -0.02726970613002777, -0.00863365177065134, 0.006332347635179758, 0.014168815687298775, -0.024441959336400032, -0.0036888557951897383, 0.01821490004658699, -0.0007826127693988383, 0.014356831088662148, 0.00102374202106148, -0.013100890442728996, 0.0030420839320868254, 0.03009745292365551, -0.019598690792918205, -0.001992959761992097, -0.02193007804453373, 0.0036775749176740646, -0.03218818083405495, -0.026788387447595596, -0.023930558934807777, 0.033301230520009995, -0.01651524379849434, 0.000965457409620285, -0.014454598538577557, 0.008957037702202797, -0.0014674576232209802, -0.001922454102896154, 0.011957759037613869, -0.004298024345189333, -0.022080490365624428, 0.04211537539958954, 0.022080490365624428, 0.0025645256973803043, 0.0022505405358970165, -0.0054261148907244205, 0.007667254656553268, -0.017146974802017212, 0.0349256806075573, 0.0011506523005664349, 0.016846150159835815, 0.011040245182812214, 0.003111649537459016, -0.017718540504574776, -0.0005513541982509196, 0.013627332635223866, 0.007652213331311941, 0.0010312626836821437, -0.006749741267412901, -0.008738940581679344, -0.010446117259562016, 0.03089463710784912, 0.0003224458487238735, -0.0035497245844453573, -0.001497540040872991, -0.03676070645451546, -0.012536845169961452, 0.002436675364151597, 0.02191503718495369, 0.028096972033381462, -0.014078568667173386, -0.00033889716723933816, -0.027119293808937073, 0.0036343312822282314, 0.015943678095936775, 0.01624450273811817, -0.008911914192140102, 0.010619090870022774, 0.01654532551765442, 0.023178497329354286, -0.004933515563607216, 0.03164669871330261, 0.010513802990317345, -0.011499001644551754, -0.028578290715813637, 0.03278983011841774, 0.0014044726267457008, -0.01094247680157423, -0.014777984470129013, 0.006960317958146334, 0.007610850036144257, -0.03012753464281559, -0.012619571760296822, -0.017026644200086594, 2.729156221903395e-05, -0.01136363111436367, -0.018651096150279045, -0.0003506481007207185, -0.014040965586900711, 0.00040235224878415465, 0.0004566416027955711, 0.0209373589605093, -0.02540459670126438, 0.00550508126616478, 0.006046564783900976, -0.040521007031202316, -0.03522650524973869, 0.037753425538539886, -0.015793265774846077, -0.012461639009416103, -0.004143852274864912, 0.01501112338155508, -0.0563744381070137, -0.005538924131542444, 0.0013095249887555838, -0.03363213688135147, 0.009325548075139523, 0.023870393633842468, -0.01552252471446991, -0.016560368239879608, -0.011032724753022194, 0.011957759037613869, -0.021208100020885468, -0.006140572484582663, 0.004143852274864912, -0.002297544153407216, -0.031406037509441376, -0.00034594774479046464, -0.0011600529542192817, -0.013206178322434425, 0.03185727447271347, 0.03721194341778755, 0.03266949951648712, 0.010671735741198063, -0.023073209449648857, -0.019779184833168983, -0.005753261037170887, -0.003814825788140297, -0.00661061005666852, -0.0013151654275134206, 0.011972799897193909, 0.01367245614528656, 0.008430595509707928, -0.014304187148809433, -0.0549004003405571, 0.02820226177573204, 0.022336190566420555, 0.009302985854446888, 0.0016206898726522923, -0.04581551253795624, 0.01004000473767519, -0.0023163456935435534, 0.009784304536879063, -0.020711740478873253, -0.008821667172014713, 0.018711259588599205, -0.004245380405336618, -0.014717820100486279, -0.009686536155641079, 0.0009240940562449396, -0.014236501418054104, -0.009400753304362297, -0.01997472159564495, 0.0005631051608361304, -0.07959806174039841, -0.025359472259879112, -0.004226578865200281, 0.018455559387803078, 0.007828948087990284, -0.008460678160190582, 0.012950478121638298, 0.006715898402035236, 0.0009574667783454061, 0.0018350271275267005, -0.0028691100887954235, -0.009107450023293495, -0.004038563929498196, 0.011611810885369778, -0.012739901430904865, 0.007881592027842999, 0.021358512341976166, -0.02642739936709404, -0.008573487401008606, -0.0015454839449375868, -0.01735755242407322, 0.010137773118913174, 0.04019010066986084, 0.0018857911927625537, -0.005869830492883921, 0.027089212089776993, -0.012130732648074627, -0.020425956696271896, -0.009212738834321499, -0.03805425018072128, -0.02188495360314846, -0.005008721724152565, 0.0064263553358614445, -0.023073209449648857, 0.007941756397485733, 0.0070280032232403755, 0.0035384437069296837, -0.0031530128326267004, 0.01049124076962471, 0.004722938407212496, 0.001221157843247056, -0.025239143520593643, -0.014507243409752846, -0.010972559452056885, 0.014379392378032207, -0.007099449168890715, -0.006930235773324966, -0.02729978784918785, -0.03014257736504078, 0.034173619002103806, 0.010431076399981976, 0.015251782722771168, -0.01637987233698368, -0.025209061801433563, 0.02095239982008934, -0.00048014349886216223, -0.010197937488555908, -0.00453492347151041, 0.0002592257806099951, 0.010709338821470737, 0.06251125037670135, 0.015349550172686577, -0.006546685006469488, -0.0005922474665567279, -0.012942957691848278, -0.00951356254518032, 0.027149377390742302, 0.01374014187604189, 0.04930507391691208, -0.03835507482290268, 0.007889112457633018, -0.007095688953995705, -0.011596770025789738, 0.018966959789395332, 0.018861671909689903, 0.0437999926507473, 0.018470600247383118, 0.03552732989192009, 0.01653028465807438, 0.004249140620231628, -0.02632210962474346, 0.014454598538577557, -0.0005175115074962378, 0.010228020139038563, 0.0054148342460393906, -0.0037941441405564547, -0.000707406725268811, 0.009197697043418884, 0.016154255717992783, 0.007708617951720953, 0.022952880710363388, 0.010709338821470737, 0.014424516819417477, 0.004027282819151878, -0.00661061005666852, 0.019884474575519562, -0.010446117259562016, 0.01136363111436367, -0.016169296577572823, -0.012424035929143429, -0.009333068504929543, -0.0036286909598857164, -0.020215380936861038, 0.005523882806301117, 0.005320826545357704, 0.007592048496007919, 0.006027763243764639, 0.0007609910098835826, 0.026637975126504898, -0.01145387813448906, 0.015853431075811386, 0.005896152462810278, -0.043288592249155045, 0.007223539054393768, -0.005174174904823303, 0.0011271503753960133, -0.01627458445727825, -0.011995362117886543, -0.005685575772076845, 0.002404712839052081, -0.023043127730488777, -0.0029499565716832876, 0.03718186169862747, -0.008438116870820522, 0.004155132919549942, 0.008866790682077408, -0.003559125354513526, -0.0006857849657535553, -0.006952797528356314, 0.022065449506044388, -0.009265382774174213, -0.017899034544825554, -0.019839350134134293, 0.0017438398208469152, -0.018666137009859085, 0.0181246530264616, 0.036159057170152664, 0.0062909843400120735, 0.0064263553358614445, -0.03988927975296974, 0.00750932190567255, 0.012536845169961452, 0.003594848094508052, 0.0030157617293298244, -0.016665656119585037, 0.019493402913212776, 0.0064263553358614445, 0.0008926015580072999, -0.0020644054748117924, -0.016921356320381165, -0.0026472522877156734, -0.031556449830532074, 0.014747902750968933, 0.0009598169708624482, -0.011920155957341194, -0.012875271961092949, -0.0023652296513319016, 0.02000480331480503, -0.007434116210788488, -0.013010643422603607, -0.007404033560305834, 0.004598848521709442, 0.00165265251416713, 0.018801506608724594, 0.028021765872836113, -0.005072646774351597, 0.019297868013381958, -0.010882312431931496, -0.01315353438258171, -0.01498856209218502, 0.011724620126187801, -0.006467718631029129, -0.0011374911991879344, -0.04404065012931824, 0.007366430480033159, -0.030368193984031677, -0.015898555517196655, 0.013995842076838017, 0.009746701456606388, -0.018726300448179245, -0.021478841081261635, 0.012032964266836643, 0.009265382774174213, 0.009430835954844952, -0.002579566789790988, -6.604029476875439e-05, -0.0038505487609654665, 0.0019741582218557596, 0.006369950715452433, 3.5458466300042346e-05, 0.016064008697867393, 0.023509405553340912, 0.005888632033020258, -0.0031906156800687313, 0.006050324998795986, 0.023223621770739555, 0.018575889989733696, 0.01279254537075758, -0.0380241684615612, -0.013469399884343147, -0.007362670265138149, -0.007919195108115673, 0.015763184055685997, 0.005377231165766716, 0.008024482987821102, 0.018605971708893776, -0.036971282213926315, 0.004038563929498196, 0.016906315460801125, 0.002662293380126357, -0.0015953078400343657, 0.0019440758042037487, 0.04984655603766441, -0.014965999871492386, 0.01225858274847269, -0.020395874977111816, -0.003974638879299164, -0.0033993124961853027, -0.009791824966669083, -0.03441428020596504, 0.019854390993714333, 0.009536124765872955, 0.006272182799875736, 0.02098248153924942, 0.020666616037487984, 0.013597249984741211, 0.027044087648391724, -0.04488295689225197, -0.017944158986210823, 0.005223058629781008, -0.012070567347109318, 0.0136874970048666, 0.00024535966804251075, -0.023464281111955643, 0.003222578437998891, 0.002154652727767825, 0.0347752682864666, -0.03733227401971817, 0.024848071858286858, 0.023283787071704865, -0.013055766932666302, -0.016003843396902084, -0.002519401954486966, 0.01190511416643858, -0.011837429367005825, 0.018816549330949783, -0.04452196881175041, -0.012574448250234127, 0.013777744956314564, 0.013003122061491013, 0.018831590190529823, 0.0190120842307806, -0.01553756557404995, 0.023058168590068817, 0.007949277758598328, 0.006189456209540367, 0.015898555517196655, 0.0012070568045601249, -0.0037452601827681065, 0.016951439902186394, -0.034233786165714264, 0.023930558934807777, 0.018440518528223038, -0.0009273843606933951, 0.01922266185283661, 0.0003833157243207097, -0.007610850036144257, 0.010859750211238861, 0.00045499647967517376, 0.013176096603274345, -0.007095688953995705, -0.008092168718576431, -0.014033445157110691, 0.0019816788844764233, 0.015943678095936775, -0.006945276632905006, 0.011138012632727623, -0.021644296124577522, -0.005290744360536337, -0.0068437485024333, -0.0050651258789002895, 0.018545806407928467, -0.02193007804453373, -0.0007078767521306872, -0.01227362360805273, 0.020410915836691856, 0.002664173487573862, -0.010318267159163952, -0.003247020300477743, -0.0021678137127310038, 0.02362973429262638, 0.00870133750140667, 0.007761262357234955, 0.006952797528356314, 0.02275734394788742, 0.0008991821086965501, 0.010070087388157845, 0.005437396001070738, 0.03309065103530884, -0.01508632954210043, -0.002831507008522749, 0.01181486714631319, -0.02751036547124386, -0.019463321194052696, -0.010280664078891277, -0.0001769691880326718, 0.0118750324472785, -0.019312908872961998, -0.0026961362455040216, -0.013273864053189754, -0.02017025649547577, 0.0030966082122176886, -0.004230339080095291, -0.007336348295211792, -0.003641851944848895, 0.03633955493569374, -0.0039671179838478565, -0.00023078850063029677, -0.0016056487802416086, -0.04747004434466362, 0.017598211765289307, -0.005392272491008043, 0.0027299788780510426, 0.012476679868996143, -0.04903433099389076, -0.015417235903441906, -0.017883993685245514, -0.003446316346526146, 0.019553568214178085, 0.003814825788140297, -0.02654772810637951, 0.0436495803296566, -0.008310265839099884, 0.0053321076557040215, -0.005606609396636486, -0.0018406675662845373, 0.011687017045915127, -0.024336671456694603, -0.010965039022266865, -0.00782142672687769, -0.015883512794971466, 0.03474518656730652, -0.002105768769979477, 0.004715417977422476, 0.020230421796441078, -0.0019158736104145646, -0.008588528260588646, 0.01227362360805273, 0.01818481832742691, 0.010641653090715408, 0.007874071598052979, -0.009393232874572277, 0.011138012632727623, -0.0013856710866093636, 0.0004065826069563627, 0.01455236691981554, 0.013198657892644405, -0.014492201618850231, -0.005309545435011387, -0.0399494431912899, 0.012852710671722889, 0.003468878101557493, 0.02090727537870407, 0.028518125414848328, -0.0018970720702782273, -0.004568766336888075, 0.009220259264111519, -0.015823349356651306, 0.005290744360536337, -0.012566927820444107, -0.0018237462500110269, 0.0010716859251260757, 0.003337267553433776, 0.01464261393994093, -0.016003843396902084, 0.007261142134666443, 0.01367997657507658, -0.0003379570844117552, 0.000295183650450781, -0.0128000658005476, -0.022381315007805824, 0.012574448250234127, -0.009348109364509583, 0.007791344542056322, -0.013717579655349255, 0.01048372033983469, 0.010145293548703194, 0.010965039022266865, -0.010130251757800579, 0.005651732906699181, -0.004038563929498196, -0.0062909843400120735, -0.01737259328365326, -0.012642133980989456, 0.009017203003168106, -0.023494362831115723, -0.036068812012672424, 0.007419074885547161, -0.005185455549508333, 0.0009720379021018744, -0.005512602161616087, -0.009453398175537586, 0.0020681656897068024, 0.015838390216231346, -0.026653015986084938, 0.013251302763819695, -0.02642739936709404, -0.00862613134086132, 0.004925995133817196, -0.006952797528356314, -0.010167854838073254, -0.009791824966669083, 0.018485641106963158, 0.007103209383785725, -0.006309785880148411, 0.014702778309583664, -0.0028916718438267708, 0.03567773848772049, -0.016650615260004997, 0.0011816747719421983, 0.023028086870908737, -0.004068646114319563, -0.013785265386104584, -0.025118812918663025, -0.018696218729019165, 0.01645507849752903, -0.022982962429523468, -0.026923758909106255, 0.003028922714293003, -0.017718540504574776, -0.007652213331311941, 0.003008241066709161, -0.011153054423630238, 0.014958479441702366, 0.03718186169862747, -0.01321369968354702, 0.011107930913567543, -0.021659336984157562, 0.01413873303681612, -0.0008366670808754861, -0.027961602434515953, -0.013995842076838017, -0.019779184833168983, -0.005170414689928293, 0.018786465749144554, 1.6069412595243193e-05, 0.015748143196105957, -0.023990724235773087, -0.0013593490002676845, 0.020576369017362595, 0.028909197077155113, -0.012860231101512909, 0.004016002174466848, -0.012393953278660774, 0.010724379681050777, 0.023238662630319595, -0.029856793582439423, 0.0019158736104145646, -0.016846150159835815, 0.030744224786758423, 0.02008000947535038, -9.817912359721959e-05, -0.016079049557447433, 0.010596529580652714, -0.013777744956314564, 0.024426918476819992, 0.0003938915906473994, -0.005779583472758532, -0.004192735999822617, -0.01997472159564495, 0.0017993042711168528, 0.005444916430860758, -0.006279703229665756, -0.001994839869439602, 0.01232626847922802, -0.03173694387078285, -0.003416233928874135, -0.01737259328365326, 0.009551165625452995, -0.017763664945960045, 0.024366753175854683, 0.0013781505404040217, 0.014860711060464382, 0.007174655329436064, 0.008769023232161999, -0.00573069928213954, 0.02552492544054985, 0.0007332587847486138, 0.005249381065368652, 0.04825218766927719, 0.00639627268537879, 0.006971599068492651, -0.02274230308830738, 0.011551646515727043, 0.003224458545446396, -0.039648618549108505, -0.0030796870123595, -0.029540928080677986, 0.010814626701176167, -0.01046115905046463, 0.006309785880148411, 0.001991079654544592, -0.06124779209494591, 0.03573790565133095, -0.002135851187631488, -0.021478841081261635, -0.011153054423630238, 0.00823506060987711, -0.004256661050021648, 0.004847028758376837, -0.005362189840525389, 0.0066482131369411945, 0.003929514903575182, 0.015146493911743164, -0.0027337390929460526, 0.009250341914594173, -0.008761502802371979, 0.0014599370770156384, 0.0006688636494800448, -0.005490039940923452, -0.0173876341432333, -0.00912249181419611, -0.0136874970048666, -0.011077848263084888, 0.023238662630319595, -0.019312908872961998, -0.0021960160229355097, -0.0191624965518713, -0.016906315460801125, -0.010055046528577805, 0.0105438856408, -0.007358910050243139, 0.004948556888848543, 0.005884871818125248, 0.012935437262058258, -0.005132811609655619, 0.02101256512105465, 0.008505801670253277, -0.0014533564681187272, -0.025148896500468254, -0.0027130574453622103, 0.0016893154243007302, -0.019673896953463554, 0.001471217954531312, -0.004241620190441608, 0.07725163549184799, 0.021478841081261635, 0.01722218096256256, 0.013055766932666302, 0.006554205436259508, -0.02014017477631569, 0.0181246530264616, -0.0024742784444242716, 0.029706381261348724, 0.005294504575431347, -0.00032009565620683134, -0.04085191339254379, 0.027014005929231644, 0.008776543661952019, -0.0016423116903752089, 0.003940796013921499, 0.016816068440675735, 0.0060766469687223434, -0.03297032415866852, 0.028457961976528168, 0.017944158986210823, 0.020726781338453293, 0.0011525324080139399, 0.011619331315159798, -0.027931518852710724, 0.007934235967695713, 0.009934716857969761, -0.011341068893671036, 0.015326988883316517, 0.017011603340506554, 0.011957759037613869, 0.009460918605327606, 0.005162893794476986, 0.004493560176342726, 0.0027826230507344007, 0.022215861827135086, 0.011694537475705147, 0.013040725141763687, -0.006102969404309988, 0.017162015661597252, 0.011762223206460476, 0.0002474748471286148, 0.010258102789521217, 0.002634091069921851, -0.006715898402035236, -0.008009442128241062, -0.005392272491008043, -0.006911434233188629, 0.0048395078629255295, -0.008370431140065193, -0.03384271264076233, 0.0026698140427470207, -0.0012061167508363724, 0.008295224979519844, 0.017643334344029427, -0.015116412192583084, -0.006200737319886684, -0.016560368239879608, 0.00907736737281084, -0.006599328946322203, -0.003391791833564639, 0.02183983102440834, -0.024261465296149254, -0.00474926084280014, -0.016891274601221085, -0.02183983102440834, -0.016981521621346474, -0.012123212218284607, -0.012664695270359516, -0.0035779268946498632, 0.00035417338949628174, 0.0013734501553699374, 0.010799585841596127, -0.007095688953995705, -0.011100409552454948, 0.0020568848121911287, -0.004361949861049652, 0.03636963665485382, 0.0013170455349609256, 0.0004486509715206921, 0.01651524379849434, 0.005587807856500149, 0.013063287362456322, -0.020440999418497086, -0.0042378599755465984, 0.007193456869572401, -0.011205698363482952, 0.002291903831064701, 0.010009922087192535, -0.024216340854763985, -0.005256901495158672, -0.0043281069956719875, -0.0010181015823036432, 0.009694057516753674, 0.014086089096963406, 0.0002531152858864516, -0.00825762189924717, -0.012183376587927341, 0.015266823582351208, -0.0018557087751105428, 0.023870393633842468, 0.018786465749144554, -0.006279703229665756, -0.002581446897238493, -0.003059005131945014, -0.010965039022266865, 0.028548208996653557, 0.016620531678199768, -0.021539006382226944, 0.016650615260004997, -0.02174958400428295, -0.005512602161616087, -0.011055286042392254, 0.001835967181250453, -0.016755903139710426, -0.009032243862748146, -0.012446598149836063, -0.0076597342267632484, -0.012672215700149536, -0.0032319792080670595, -0.014266584068536758, 0.004204017110168934, 0.001124330097809434, -0.011295945383608341, -0.0018030646024271846, -0.001485319109633565, -0.018410436809062958, 0.004989920184016228, -0.008896873332560062, -0.022516684606671333, 0.011040245182812214, -0.007979359477758408, 0.01838035322725773, 0.002741259755566716, 0.0218247901648283, -0.014086089096963406, 0.0012954238336533308, 0.0014627572381868958, 0.029826711863279343, -0.003993439953774214, -0.0013226860901340842, 0.01833523064851761, -0.0006655733450315893, 0.000580496562179178, -0.007490520365536213, -0.0023689898662269115, -0.011709578335285187, -0.01182990800589323, 0.00949852168560028, 0.004241620190441608, -0.00042890937766060233, -0.02994704060256481, 0.0028202261310070753, -0.0031906156800687313, 0.021689418703317642, -0.007212258409708738, -0.0027280987706035376, 0.045153699815273285, -0.022576849907636642, 0.001932794926688075, -0.008137292228639126, -0.023990724235773087, -0.021478841081261635, -0.002013641409575939, -0.0012785025173798203, -0.0005969478515908122, 0.004798144567757845, 0.016094090417027473, 0.005606609396636486, 0.001550184329971671, -0.009611330926418304, -0.01729738712310791, -0.012566927820444107, 0.00528698367998004, -0.003137971507385373, -0.012311226688325405, 0.008137292228639126, 0.0076597342267632484, -0.01747788116335869, 0.007234820164740086, -0.0011732140555977821, 0.005824706982821226, 0.016981521621346474, 0.005967598408460617, 0.00016886103549040854, -0.011273384094238281, 0.008663734421133995, -0.0284128375351429, 0.009912154637277126, 0.012190897017717361, -0.002273102290928364, 0.028743743896484375, 0.015943678095936775, -0.016605490818619728, -0.019598690792918205, -0.009370671585202217, 0.009453398175537586, 0.013476920314133167, 0.009355629794299603, -0.00727994367480278, 0.001432674820534885, 0.010258102789521217, 0.015417235903441906, 0.009333068504929543, 0.007843988947570324, -0.022140655666589737, -0.01138619240373373, -0.012581968680024147, -0.01907224953174591, 0.00039083632873371243, -0.0760483369231224, -0.030398277565836906, 0.017613252624869347, 0.017131933942437172, -0.020200340077280998, 0.0003485329507384449, 0.012657174840569496, 0.005896152462810278, 0.0052004968747496605, -0.0006082287873141468, 0.0007671014755032957, 0.00825010146945715, 0.03444436192512512, -0.012085609138011932, 0.0030477242544293404, -0.025750543922185898, 0.011175615713000298, 0.010115210898220539, 0.008204977959394455, -0.015868471935391426, 0.030443400144577026, -0.010799585841596127, -0.01729738712310791, 0.030518606305122375, 0.006903913337737322, 0.02477286569774151, -0.011611810885369778, 0.008468198589980602, 0.022456521168351173, -0.017944158986210823, -0.003028922714293003, -0.001867929706349969, 0.0019797987770289183, 0.0042378599755465984, 0.021253224462270737, 0.0030439640395343304, -0.0064000329002738, -0.006712138187140226, -0.006020242813974619, -2.408943146292586e-05, -0.022065449506044388, -0.0019074128940701485, 0.001559584983624518, 0.02546476200222969, -0.0033147057984024286, 0.0067986249923706055, 0.008092168718576431, -0.018425477668642998, -0.024381794035434723, -0.009250341914594173, 0.012032964266836643, 0.004286743700504303, 0.0048319874331355095, -0.009310506284236908, 0.008468198589980602, 0.0018857911927625537, -0.026216821745038033, 0.030308030545711517, -0.026126574724912643, 0.004448436666280031, 0.005001200828701258, -0.009814387187361717, 0.005324586760252714, 0.0008380771614611149, 0.0007600509561598301, -0.0025118812918663025, 0.0048244670033454895, 0.0005772062577307224, 0.018636053428053856, 0.02193007804453373, -0.00916009396314621, 0.0010246821912005544, 0.02111785300076008, -0.023013044148683548, -0.0014533564681187272, -0.020440999418497086, -0.0031473722774535418, 0.000983318779617548, 0.0163497906178236, 0.003134211292490363, 0.0008145752944983542, -0.033391475677490234, 0.011205698363482952, 0.00550884148105979, -0.004173934459686279, 0.015281865373253822, 0.001221157843247056, -0.015748143196105957, -0.003115409752354026, -0.00015182216884568334, -0.026231862604618073, -0.0029330351389944553, 0.005681815557181835, -0.03366221860051155, 0.005121530499309301, -0.015319468453526497, -0.005151613149791956, -0.0016103490488603711, -0.007565726526081562, -0.005647972691804171, 0.025329390540719032, -0.016033925116062164, 0.01743275672197342, -0.006445156875997782, -0.00204748404212296, -0.00860357005149126, -0.00148719921708107, 0.02176462486386299, -0.007806385867297649, -0.008400513790547848, 0.01180734671652317, 0.006561725866049528, 0.005655493587255478, 0.014747902750968933, 0.004215297754853964, 0.006636932026594877, 0.006542924325913191, 8.842584065860137e-05, 0.0013151654275134206, -0.03742251917719841, -0.005004961043596268, 0.011671976186335087, -0.014056006446480751, -0.01002496387809515, -0.011085368692874908, 0.004234099294990301, -0.021268265321850777, 0.0010810866951942444, -0.027600612491369247, 0.002017401624470949, -0.024817990139126778, 0.022591890767216682, 0.010130251757800579, 0.0010068207047879696, -0.010761982761323452, 0.014981040731072426, 0.010182896628975868, -0.0038543089758604765, 0.011055286042392254, -0.012672215700149536, 0.0033466683235019445, -0.002041843719780445, 0.03501592576503754, 0.008821667172014713, -0.00528698367998004, 0.005238099955022335, 0.02015521563589573, 0.012093129567801952, -0.024291547015309334, -0.006140572484582663, -0.009558686055243015, -0.0016921357018873096, -0.01995968073606491, 0.002502480521798134, 0.02902952767908573, -0.012236020527780056, 0.005685575772076845, 0.014935917221009731, -0.035888317972421646, 0.004501081071794033, 0.0070280032232403755, -0.011476440355181694, -0.010167854838073254, -0.013048246502876282, -0.019508443772792816, 0.0029273945838212967, 0.008859270252287388, -0.0021602932829409838, -0.020260503515601158, -0.0019440758042037487, 0.03390287980437279, 0.021433718502521515, -0.013574688695371151, -0.02008000947535038, 0.015703018754720688, 0.012491721659898758, 0.026066409423947334, 0.023013044148683548, 0.0039633577689528465, -0.012762462720274925, 0.010724379681050777, -0.02365981601178646, -0.0019703980069607496, 0.009904634207487106, -0.002291903831064701, 0.011514043435454369, -0.026201780885457993, 0.011288424953818321, -0.007599569391459227, 0.021328430622816086, 0.01314601395279169, 0.014371871948242188, 0.01145387813448906, 0.011529084295034409, 0.014296665787696838, -0.02362973429262638, -0.010077607817947865, 0.005572766996920109, 0.0046928562223911285, -0.026653015986084938, 0.005459957756102085, 0.0055577256716787815, -0.010197937488555908, -0.011175615713000298, 0.01507128868252039, -0.0200499277561903, 0.011792304925620556, 0.025314349681138992, 0.012882792390882969, 0.010378432460129261, 0.020741822198033333, 0.013514523394405842, 0.012476679868996143, -0.00825762189924717, 0.004944796208292246, 0.005741980392485857, 0.038595736026763916, -0.004877110943198204, -0.011927676387131214, -0.0009776783408597112, -0.003245140193030238, -0.003937035799026489, -0.0031229304149746895, 0.007464198395609856, -0.010100170038640499, 0.0005236219731159508, 0.013394193723797798, -0.030533647164702415, 0.02012513391673565, 0.014770464040338993, -4.2215258872602135e-05, 0.00914505310356617, -0.0004935395554639399, 0.013507002964615822, 0.007866550236940384, 0.012927916832268238, 0.0034068331588059664, 0.014507243409752846, 0.0016291505889967084, -0.0008136352407746017, -0.0016206898726522923, 0.03676070645451546, 0.0150186438113451, 0.007005441468209028, -0.010513802990317345, 0.004730459302663803, -0.010250581428408623, 0.009318026714026928, 0.012378912419080734, -0.02835267223417759, 0.01651524379849434, 0.008723899722099304, 0.005749500822275877, -0.0009297345532104373, -0.010190417058765888, 0.000308344722725451, 0.01410113088786602, 0.011656934395432472, -0.018831590190529823, 0.0145749282091856, -0.01455236691981554, 0.001725038280710578, 0.011837429367005825, 0.011153054423630238, 0.02466757781803608, -0.0019816788844764233, -0.018936878070235252, -0.0011741541093215346, -0.0076597342267632484, -0.005753261037170887, -0.005305785220116377, 0.010288184508681297, 0.01902712509036064, 0.012100649997591972, 0.009453398175537586, 0.021373553201556206, 0.009400753304362297, 0.015687977895140648, 0.016650615260004997, 0.015793265774846077, 0.012145773507654667, 0.0002596958074718714, 0.004722938407212496, 0.00032056571217253804, 0.0025626453571021557, 0.002746900310739875, -0.0013010642724111676, 0.020471081137657166, 0.002299424260854721, 0.011070327833294868, -0.017673416063189507, -0.0044747586362063885, -0.0024216340389102697, 0.00041410321136936545, -0.012145773507654667, 0.011649413965642452, -0.02379518747329712, -0.006595568731427193, -0.0002129270724253729, -0.004993680398911238, 0.011476440355181694, 0.014717820100486279, 0.0014561767457053065, -0.004553725011646748, -0.01925274357199669, 0.023193540051579475, 0.005854789167642593, 0.0032056570053100586, 0.01735755242407322, -0.01137867197394371, -0.0011215099366381764, -0.01502616424113512, 0.0003819056146312505, -0.005986399948596954, 0.0017118772957473993, -0.009460918605327606, 0.008769023232161999, 0.002273102290928364, 0.010859750211238861, -0.025329390540719032, -0.006121770944446325, 0.009355629794299603, 0.00022949589765630662, 0.004659013357013464, -0.00023995424271561205, 0.014161295257508755, 0.006264662370085716, 0.005437396001070738, 0.015184096992015839, -0.011077848263084888, -0.01046867948025465, 0.004572526551783085, -0.01904216594994068, 0.021358512341976166, -0.024291547015309334, -0.03841523826122284, 0.0014759183395653963, -0.016846150159835815, 0.007701097521930933, -0.004798144567757845, 0.019899515435099602, 0.004910953808575869, 0.003705776995047927, 0.008001921698451042, -0.0033278667833656073, -0.006272182799875736, -0.002942435909062624, 0.0001128090443671681, -0.00959628913551569, -0.010145293548703194, -0.012461639009416103, -1.5467177945538424e-05, -0.01651524379849434, -0.00826514232903719, -0.026021286845207214, -0.0021621733903884888, 0.008197457529604435, -0.0026547727175056934, -0.005471238400787115, 0.024231381714344025, 0.005407313350588083, 0.0077387006022036076, 0.009543645195662975, 0.009099929593503475, -0.00407616700977087, -0.0013330269139260054, 0.004779343027621508, -0.008851749822497368, 0.0062947445549070835, -0.006452677305787802, 0.010604050010442734, -0.01134859025478363, 0.0029612374491989613, -0.009363150224089622, -0.01182990800589323, 0.01625954359769821, 0.01182990800589323, 0.006749741267412901, 0.037031449377536774, -0.00818993616849184, 0.02657780982553959, -0.011581728234887123, 0.007467958610504866, -0.00870133750140667, -0.00661813048645854, -0.00476054148748517, -0.015146493911743164, 0.004933515563607216, -0.018771424889564514, -0.01904216594994068, -0.010521323420107365, -0.006888872478157282, 0.004790624137967825, -0.008904393762350082, -0.004230339080095291, 0.0132437814027071, 0.01455988734960556, 0.011025204323232174, -0.00527946325019002, -0.012566927820444107, -0.008994640782475471, -0.004651492927223444, -0.00013631093315780163, -0.01631970889866352, 0.002387791406363249, -0.011047765612602234, 0.016710780560970306, 0.015056246891617775, 0.03248900547623634, 0.00016768593923188746, -0.02183983102440834, -0.01321369968354702, -0.012559406459331512, 0.02268213778734207, -0.019478362053632736, -0.0012888433411717415, -0.013995842076838017, 0.0005997680709697306, 0.006227059289813042, -0.024893196299672127, -0.0017466599820181727, -0.007197217084467411, 0.0017184577882289886, -0.011995362117886543, -0.008287704549729824, -0.0055577256716787815, -0.009799345396459103, 0.0034293949138373137, -0.00960380956530571, -0.001414813450537622, 0.021193059161305428, -0.015056246891617775, -0.005599088966846466, -0.013085848651826382, 0.01500360295176506, 0.0036888557951897383, -0.004937275778502226, -0.010792065411806107, 0.01498856209218502, 0.008295224979519844, -0.023058168590068817, -0.002438555471599102, -0.02111785300076008, 0.025043608620762825, -0.012867751531302929, -0.027044087648391724, 0.00862613134086132, 0.001384731032885611, 0.021719500422477722, -0.009874551557004452, -0.006313546095043421, -0.014432037249207497, -0.023494362831115723, 0.0095060421153903, -0.019854390993714333, -0.009679015725851059, 0.022155696526169777, -0.00407992722466588, -0.0182750653475523, -0.022170737385749817, -0.0064263553358614445, 0.012845190241932869, -0.02202032506465912, 0.0013490081764757633, 0.003357949201017618, 0.00014453659241553396, 0.007561966311186552, 0.0023689898662269115, 0.0015812068013474345, -0.023058168590068817, -6.474769179476425e-05, -0.005110249854624271, -0.010100170038640499, -0.010167854838073254, -1.7494214262114838e-05, 0.01100264210253954, 0.007539404556155205, -0.019779184833168983, 0.0014354950981214643, -0.0020813269075006247, -0.023389074951410294, -0.01822994090616703, -0.015229220502078533, -0.0027826230507344007, 0.014808067120611668, -0.003109769197180867, -0.02098248153924942, -0.0057946243323385715, -0.002011761302128434, -0.0050651258789002895, -0.020786946639418602, -0.01225106231868267, 0.0057081375271081924, -0.005392272491008043, -0.0032695820555090904, -0.011153054423630238, 0.017086809501051903, -0.004034803248941898, -0.01507128868252039, -0.005223058629781008, -0.0059299953281879425, 0.007456677965819836, 0.007268662564456463, -0.011972799897193909, -0.003365469863638282, -0.0200499277561903, -0.0033128256909549236, -0.015311948023736477, -0.019794227555394173, 0.02111785300076008, 0.018440518528223038, -0.0013837909791618586, -0.022050408646464348, -0.0038994327187538147, -0.012032964266836643, -0.024186259135603905, 0.006035283673554659, 0.005772062577307224, 0.0015323228435590863, 0.0007299685385078192, 0.01830514706671238, -0.018861671909689903, 0.007193456869572401, 0.0383249931037426, 0.012040485627949238, -0.0017842630622908473, -0.013717579655349255, -0.009821907617151737, 0.003532803151756525, 0.01091239508241415, 0.0008065846632234752, -0.011852470226585865, -0.004884631372988224, 0.00949852168560028, 0.01729738712310791, -0.011476440355181694, 0.004779343027621508, 0.00871637836098671, -0.030548689886927605, 0.00498239928856492, -0.01994463987648487, -0.003592967987060547, 0.016891274601221085, -0.012544365599751472, -0.006937756203114986, 0.0013997722417116165, 0.009475959464907646, 0.00014970700431149453, 0.006745981052517891, 0.0010425435611978173, 0.01644003763794899, -0.0048395078629255295, -0.01928282529115677, 0.013085848651826382, -0.012822628021240234, 0.02174958400428295, 0.011626851744949818, 0.00818241573870182, -0.007693576626479626, 0.010604050010442734, 0.010852229781448841, 0.0015379632823169231, -0.008460678160190582, -0.027916477993130684, -0.007580767851322889, -0.02731483057141304, -0.0020042406395077705, 0.010581488721072674, -0.02266709692776203, 0.03495576232671738, 0.002803304698318243, 0.00860357005149126, -0.013559646904468536, -0.019643815234303474, -0.018876712769269943, 0.018936878070235252, 0.01498856209218502, -0.005008721724152565, 0.018846631050109863, 0.01720714010298252, 0.013634853065013885, -0.01093495637178421, -0.012130732648074627, -0.004508601501584053, 0.01410865131765604, 0.009468439035117626, 0.0055690063163638115, 0.018666137009859085, -0.015868471935391426, -0.010739420540630817, -0.022486602887511253, -0.008799105882644653, 0.008791584521532059, 0.0003776752855628729, -0.012612051330506802, -0.003891912056133151, 0.0009457158157601953, 0.024983443319797516, -0.009002162143588066, -0.0068023852072656155, -0.005264421924948692, 0.0031812151428312063, -0.012190897017717361, -0.01510137040168047, 0.014251542277634144, -0.010333308018743992, 0.004286743700504303, 0.0018491282826289535, 0.002406592946499586, 0.016785984858870506, -0.016079049557447433, 0.006257141474634409, -0.0006773243076168001, -0.010160334408283234, -0.0014627572381868958, -0.00022326789621729404, 0.010077607817947865, -0.022937839850783348, 0.0038580691907554865, -0.0210877712816, 0.016785984858870506, 0.01815473474562168, 0.009994881227612495, 0.013980801217257977, -0.013334029354155064, 0.012657174840569496, -0.017853911966085434, -0.013973279856145382, 0.020486121997237206, 0.006862550042569637, 0.0005696856533177197, -0.016966480761766434, 0.0013546486152336001, 0.015597730875015259, 0.006125531159341335, -0.008204977959394455, 0.023178497329354286, -0.0004594618221744895, -0.0024310348089784384, -0.023208580911159515, 0.004873350728303194, -0.012566927820444107, -0.0017062367405742407, 0.01813969388604164, -0.010092648677527905, 0.025194019079208374, 0.004632691387087107, -0.0019008324015885592, 0.005978879518806934, -0.016680696979165077, 0.027029046788811684, 0.02194511890411377, 0.016094090417027473, 0.013010643422603607, 0.005670534446835518, 0.00047614818322472274, 0.015793265774846077, 0.004282983485609293, 0.0024517164565622807, -0.00033419678220525384, -0.012408995069563389, 0.003248900407925248, -0.012536845169961452, 0.017899034544825554, -0.007843988947570324, 0.013973279856145382, 0.0384754054248333, -0.01182238757610321, 0.006719658616930246, 0.009528604336082935, 0.00319249602034688, 0.02191503718495369, 0.006915194448083639, 0.006896392907947302, -0.004722938407212496, 0.008889352902770042, 0.031375955790281296, -0.0008164554601535201, 0.016033925116062164, 0.0038261066656559706, 0.016605490818619728, -0.017688458785414696, 0.0034914398565888405, -0.009701577946543694, 0.005091448314487934, -0.017131933942437172, 0.009897113777697086, -0.014394434168934822, 0.0007844928768463433, -0.015823349356651306, 0.008001921698451042, 0.0067986249923706055, 0.0007595808710902929, -0.002607769099995494, -0.03919738158583641, -0.006008961703628302, -0.02367485873401165, -0.001501300372183323, -0.008889352902770042, 0.025359472259879112, -0.022561809048056602, 0.0010425435611978173, -0.016064008697867393, 0.004613889846950769, 0.010333308018743992, 0.022245943546295166, 0.00593751622363925, -0.009355629794299603, 0.013507002964615822, -0.019764143973588943, -0.0054223546758294106, 0.014665176160633564, 0.006354909390211105, 0.006415074225515127, 0.0023088250309228897, 0.013597249984741211, 0.017523005604743958, 0.011589248664677143, -0.01913241297006607, -0.024321630597114563, 0.003675694577395916, -0.007971839047968388, 0.0032714621629565954, 0.0075206030160188675, -0.02842787839472294, -0.018515724688768387, -0.005016242153942585, -0.01995968073606491, 0.013063287362456322, 0.017989281564950943, 0.02456228993833065, -0.0036587733775377274, 0.006877591367810965, 0.0172372218221426, -0.0011967159807682037, 0.003910713363438845, 0.002186615252867341, 0.004414593800902367, 0.015733100473880768, -0.009385712444782257, -0.02726970613002777, 0.01464261393994093, 0.015687977895140648, 0.004422114696353674, 0.017929118126630783, -0.001060405047610402, 0.0008296165033243597, -0.016816068440675735, -0.031496286392211914, -0.0003050544473808259, 0.01271733921021223, -0.021629253402352333, 0.00750180147588253, -0.019658856093883514, 0.02824738435447216, -0.011468919925391674, 0.009423315525054932, -0.006358669605106115, -0.031225543469190598, 0.000562165048904717, 0.022531725466251373, 0.0025645256973803043, 0.0039671179838478565, 0.01144635770469904, 0.023584609851241112, 0.014845670200884342, -0.003243260085582733, -0.020350752398371696, -0.021433718502521515, 0.003833627328276634, -0.006873831152915955, -0.008859270252287388, 0.012393953278660774, -0.011596770025789738, 0.0037114175502210855, 0.017899034544825554, -0.00661437027156353, 0.0005287923850119114, 0.01276998408138752, -0.013582209125161171, -0.009197697043418884, -0.011423795484006405, -0.0007830827962607145, 0.010370911099016666, -0.011168095283210278, -0.012017923407256603, 0.016921356320381165, 0.018846631050109863, 0.020561328157782555, 0.010709338821470737, 0.011792304925620556, 0.023178497329354286, 0.000560284941457212, 0.02751036547124386, 0.0003920114249922335, 6.780293915653601e-05, -0.008016962558031082, 0.012168335728347301, -0.03907705098390579, 0.010528843849897385, -0.012236020527780056, -0.015808306634426117, -0.012529324740171432, -0.005264421924948692, -0.020771905779838562, -0.009739181026816368, 0.01465013436973095, 0.01182990800589323, -0.0007830827962607145, 0.00870133750140667, 0.020290587097406387, 0.02454724721610546, -0.006516602355986834, 0.0030364433769136667, 0.015868471935391426, -0.006625651381909847, 0.004873350728303194, -0.00017908435256686062, 0.01315353438258171, -0.020230421796441078, -0.0015633453149348497, -0.0012568808160722256, 0.0035140016116201878, -0.011679496616125107, -0.00959628913551569, 0.0017758023459464312, -0.03564765676856041, 0.016665656119585037, 0.005095208529382944, 0.009776784107089043, 0.006114250048995018, -0.00824258103966713, -0.016846150159835815, -0.000582376669626683, -0.03015761822462082, -0.009272903203964233, 0.025043608620762825, -0.023148415610194206, 0.012627092190086842, 0.01633474975824356, -0.012506762519478798, -0.010280664078891277, -0.013176096603274345, 0.0070280032232403755, 0.018891753628849983, 0.007088168058544397, -0.025043608620762825, 0.018726300448179245, 0.010965039022266865, 0.0244870837777853, 0.0003694496117532253, 0.018681177869439125, -0.01137867197394371, -0.009739181026816368, 0.0014138733968138695, -0.0010011802660301328, -0.020215380936861038, -0.01642499677836895, 0.0014542966382578015, -0.0020550047047436237, -0.012905354611575603, 0.029811669141054153, -0.005779583472758532, 0.005523882806301117, -0.021433718502521515, -0.0004810835816897452, 0.013559646904468536, 0.015582689084112644, 0.014266584068536758, -0.0030627655796706676, 0.007110730279237032, -0.023975681513547897, 0.003478278871625662, -0.022456521168351173, 0.011559166945517063, -0.015357071533799171, 0.01908729039132595, -0.016560368239879608, -0.00958124827593565, -0.011168095283210278, -0.010212978348135948, -0.0033147057984024286, -0.003811065573245287, 0.01731242798268795, 0.012589489109814167, -0.007234820164740086, 0.01816977746784687, -0.016199378296732903, 0.0003931865212507546, 0.005463717970997095, -0.015432276763021946, 0.0238252691924572, -0.012574448250234127, -0.013725100085139275, 0.010333308018743992, 0.0256001316010952, 0.007404033560305834, 0.0190120842307806, 0.0019384353654459119, -0.02728474698960781, 0.00904728565365076, -0.023253703489899635, -8.495931251673028e-05, -0.010656693950295448, 0.016079049557447433, -0.004737979732453823, -0.001344307791441679, 0.00527570303529501, -0.00045100116403773427, 0.02557004988193512, -0.012153293937444687, 0.0050576054491102695, 0.016755903139710426, 0.011589248664677143, -0.013649893924593925, -0.002295664045959711, -0.004173934459686279, -0.021554047241806984, -0.01633474975824356, 0.006952797528356314, 0.004072406329214573, -0.023133374750614166, 0.0005203317268751562, 0.02907465025782585, 0.02203536592423916, 0.008596048690378666, 0.0011168095516040921, 0.007441636640578508, 0.014928396791219711, -0.003809185465797782, 0.03227842599153519, 0.012551886029541492, 0.02287767454981804, 0.014326748438179493, 0.012499242089688778, -0.011107930913567543, -0.003844908205792308, -0.006039044354110956, 0.02096744067966938, 0.005155373364686966, -0.003222578437998891, 0.0008319666958414018, 0.027705900371074677, 0.0018190458649769425, -0.007486760150641203, -0.0013010642724111676, -0.01137867197394371, 0.016710780560970306, -0.021433718502521515, 0.0038204663433134556, 0.013852950185537338, -0.018621012568473816, -0.013725100085139275, 0.010363390669226646, 0.009536124765872955, 0.02547980286180973, -0.006629411596804857, -0.002391551621258259, 0.004516121931374073, -0.005392272491008043, 0.006264662370085716, -0.019508443772792816, -0.02015521563589573, -0.004358189180493355, 0.002070046029984951, 0.005147852934896946, 0.003416233928874135, -0.027660777792334557, 0.0060728867538273335, 0.0006439516437239945, -0.007919195108115673, -0.022561809048056602, -0.014221460558474064, 0.0006787343882024288, 0.01904216594994068, 2.9729882953688502e-05, -0.0046063694171607494, -0.0061556133441627026, 0.005072646774351597, 0.005174174904823303, 0.009483479894697666, 0.010709338821470737, -0.016018884256482124, 0.009453398175537586, -0.005516362376511097, -0.0028108253609389067, -0.004677814897149801, 0.008821667172014713, 0.014304187148809433, -0.0062834639102220535, -0.03952828794717789, 0.003275222610682249, 0.02653268724679947, -0.00527570303529501, -0.026788387447595596, -0.0075243632309138775, 0.0040987287648022175, -0.023479321971535683, -0.01741771586239338, 0.004196496214717627, -0.024968402460217476, 0.015808306634426117, -0.022185778245329857, 0.007881592027842999, 0.0024141136091202497, 0.02191503718495369, -0.008896873332560062, 0.00915257353335619, 0.025946080684661865, -0.015379632823169231, -0.007253621704876423, 0.03309065103530884, 0.009430835954844952, -0.008814146742224693, 0.013258823193609715, -0.004271702375262976, 0.006821186747401953, 0.009611330926418304, -0.009272903203964233, 7.761497545288876e-05, 0.003910713363438845, 0.002180974930524826, 0.015289385803043842, -0.02654772810637951, -0.003982159309089184, 0.016124172136187553, -0.023358993232250214, 0.023328909650444984, 0.006862550042569637, 0.0136874970048666, -0.027796149253845215, -0.0030928479973226786, 0.017959199845790863, -0.01991455629467964, -0.030774306505918503, -0.009250341914594173, -0.0026754545979201794, -0.01815473474562168, -0.015154015272855759, -0.0019779186695814133, 0.027119293808937073, -0.009378192014992237, 0.010205457918345928, 0.009851990267634392, 0.0013076448813080788, -0.015943678095936775, -0.010167854838073254, -0.007926715537905693, 0.0037114175502210855, 0.021433718502521515, -0.009882071986794472, 0.02367485873401165, 0.017553087323904037, -0.006753501482307911, 0.03191743791103363, -0.017929118126630783, 0.0025664058048278093, -0.020260503515601158, -0.005741980392485857, -0.026051368564367294, -0.0163497906178236, 0.0013499482301995158, 0.0014655775157734752, -0.007396513130515814, -0.005125290714204311, -0.03456469252705574, -0.019297868013381958, 0.02280246838927269, -0.002513761632144451, 0.00906984694302082, 0.006505321711301804, 0.00816737487912178, -0.01922266185283661, -0.02102760598063469, 0.009280423633754253, 0.015394674614071846, 0.04804161190986633, 0.014274104498326778, 0.015657896175980568, -0.0001578151568537578, -0.01004752516746521, -0.020230421796441078, 0.00037297490052878857, -0.02111785300076008, 0.004884631372988224, 0.02639731578528881, -0.016079049557447433, -0.01633474975824356, 0.01622946187853813, -0.0017692218534648418, -0.024833030998706818, 0.0036550129298120737, 0.003109769197180867, 0.01625954359769821, -0.019312908872961998, 0.019538525491952896, -0.006561725866049528, 0.010288184508681297, -0.007546924985945225, 0.020260503515601158, 0.00430178502574563, -0.0021790945902466774, 0.01725226268172264, 0.003480158979073167, 0.012521804310381413, -0.03224834427237511, 0.018455559387803078, -0.016710780560970306, -0.010769503191113472, 0.01905720867216587, -0.010761982761323452, 0.018004324287176132, -0.012063046917319298, 0.013642373494803905, 0.0032338593155145645, -0.02087719365954399, 0.0003875460824929178, -0.011145533993840218, 0.0165002029389143, -0.007313786540180445, -0.030563730746507645, -0.006302265450358391, 0.015289385803043842, 0.0011685136705636978, -0.023584609851241112, 0.006580527406185865, 0.014228980988264084, -0.006554205436259508, -0.005854789167642593, 0.008077127858996391, -0.010160334408283234, -0.02384031191468239, 0.02456228993833065, -0.0021922558080404997, -0.01501112338155508, -0.004636451601982117, -0.013830388896167278, -0.010814626701176167, 0.012514282949268818, 0.019418196752667427, -0.015041206032037735, 0.005757021717727184, 0.004858309403061867, -0.001966637559235096, 0.005117770284414291, -0.007904153317213058, 0.0009645172976888716, -0.0055539654567837715, 0.0033786308486014605, -0.015793265774846077, -0.005899913143366575, -0.009190176613628864, -0.01552252471446991, -0.00913753267377615, -0.0262619461864233, 0.0008780303760431707, 0.008099689148366451, -0.01313849352300167, -0.00913753267377615, -0.01562781259417534, -0.0031830952502787113, 0.006520362570881844, -0.005888632033020258, -0.00952108297497034, 0.010182896628975868, 0.0033259866759181023, -0.004790624137967825, 0.0008023543050512671, -0.0022524206433445215, 0.010604050010442734, 0.02456228993833065, 0.003102248767390847, -0.01902712509036064, -6.715663039358333e-05, 0.006730939727276564, 0.002613409422338009, 0.025103772059082985, 0.019779184833168983, 0.02367485873401165, -0.02009505033493042, 0.02014017477631569, -0.0038505487609654665, -0.005407313350588083, 0.009829428046941757, -0.003895672271028161, 0.0026716941501945257, -0.0023031847085803747, 0.013078328222036362, -0.010822148062288761, 0.010957518592476845, 0.0025682859122753143, 0.025254184380173683, 0.03209793195128441, 0.016996562480926514, 0.01810961216688156, 0.020501162856817245, -0.01420641876757145, -0.005538924131542444, 0.013123451732099056, 0.0001450066192774102, 0.006531643681228161, 0.009836948476731777, -0.0018143454799428582, 0.01647012121975422, 0.005177935119718313, 0.013619812205433846, -0.0003666293923743069, -0.010393473319709301, 0.015928637236356735, 0.023343952372670174, -0.0006533523555845022, 0.0024573570117354393, 0.027796149253845215, -0.015868471935391426, -0.014905834570527077, 0.0017927237786352634, -0.005411074031144381, 0.03760301321744919, 0.022291067987680435, 7.96126332716085e-05, 0.014890793710947037, 0.011747181415557861, -0.03185727447271347, 0.000502000271808356, 0.00860357005149126, -0.008821667172014713, -0.006238339934498072, 0.013815348036587238, -0.010852229781448841, 0.02018529735505581, 0.0009645172976888716, -0.0059337555430829525, -0.005437396001070738, 0.011145533993840218, -0.01420641876757145, 0.01728234626352787, 0.006715898402035236, 0.0031436120625585318, 0.013725100085139275, -0.0009269143338315189, 0.0015859071863815188, -0.00409496808424592, -0.010152813978493214, 0.02186991274356842, -0.0016996562480926514, 0.0039708781987428665, 0.014010882936418056, -0.009912154637277126, -0.013589729554951191, -0.012025443837046623, -0.0004991799942217767, 0.010220499709248543, 0.003391791833564639, 0.009182656183838844, -0.0033936721738427877, -0.0055539654567837715, 0.017583169043064117, -0.012078088708221912, 0.014853190630674362, 0.02265205606818199, -0.026622934266924858, 0.01146139856427908, -0.012130732648074627, 0.013710059225559235, -0.018921837210655212, 0.01456740777939558, 0.0032846233807504177, 0.012002882547676563, 0.011408754624426365, 0.0007783824112266302, -0.01905720867216587, 0.020305627956986427, -0.017838869243860245, -0.0012944837799295783, -0.004741739947348833, -0.017868952825665474, 0.003166173817589879, -0.0003165703674312681, 0.002746900310739875, -0.004286743700504303], "c914503e-2bc4-431a-941b-5ecf283e5a35": [0.0038448998238891363, 0.013054877519607544, -0.002695550210773945, 0.036119937896728516, 0.019708093255758286, -0.010400529950857162, 0.00740354647859931, 0.03409014269709587, -0.02798341028392315, 0.037750713527202606, -0.006353951990604401, 0.013878938741981983, -0.005165567621588707, 0.0020655766129493713, 0.012386953458189964, 0.018302850425243378, -0.002988309133797884, 0.020297948271036148, 0.00784160103648901, -0.045141249895095825, 0.06110202893614769, 0.00454101525247097, -0.05267057567834854, 0.008613616228103638, 0.01925702765583992, 0.0113286841660738, -0.024132005870342255, 0.0007205121219158173, -0.031748075038194656, 0.007603056263178587, 0.0028148223645985126, 0.004892325960099697, 0.057562898844480515, -0.021894026547670364, 0.0004507944395300001, -0.027410905808210373, 0.015006602741777897, 0.013601360842585564, -0.04201848804950714, -0.028902890160679817, -0.010591365396976471, 0.023229874670505524, 0.01217009499669075, -0.014069774188101292, -0.03386460989713669, 0.014676977880299091, -0.00044943907414563, 0.010322460904717445, -0.015310204587876797, -0.015787294134497643, 0.0002881506225094199, -0.01707109436392784, -0.0002489805920049548, -0.013358479365706444, 0.03747313469648361, -0.026075057685375214, 0.041810303926467896, 0.05745880678296089, 0.007334151770919561, -0.028781449422240257, 0.005924572236835957, 0.006861400790512562, -0.01156289130449295, 0.008058459497988224, 0.016975676640868187, -0.0008912881021387875, 0.030082600191235542, 0.013852915726602077, -0.02355949953198433, 0.022917598485946655, 0.008210260421037674, 0.0048836516216397285, -0.03792420029640198, 0.022501230239868164, 0.014069774188101292, 0.006006978452205658, 0.029128422960639, 0.018389593809843063, 0.0041138045489788055, -0.02905902825295925, 0.011814447119832039, -0.010877618566155434, 0.05627909675240517, 0.01707109436392784, 0.07855479419231415, 0.034194234758615494, -0.01383556704968214, -0.05183783918619156, -0.025103531777858734, -0.01670677214860916, 0.012265512719750404, 0.0031314357183873653, 0.024253446608781815, -0.005091835744678974, -0.007785217370837927, 0.0029189144261181355, 0.013774847611784935, 0.010426552966237068, -0.01462493184953928, -0.03500962257385254, 0.005655667744576931, 0.004155007191002369, -0.022605322301387787, -0.003385160118341446, 0.030724501237273216, -0.017218558117747307, 0.018337547779083252, -0.002207618672400713, -0.017244581133127213, 0.07057440280914307, -0.006293231621384621, -0.01559645775705576, -0.009298888966441154, 0.000640274491161108, -0.040006041526794434, -0.023177828639745712, -0.04184500128030777, -0.03075919859111309, -0.027462951838970184, -0.0463903546333313, 0.026300590485334396, -0.006028664298355579, 0.021529704332351685, 0.019777487963438034, -0.05079691857099533, 0.026127103716135025, 0.009402981027960777, 0.037577226758003235, 0.014885162003338337, -0.008873846381902695, 0.030776547268033028, 0.0010468839900568128, 0.01095568761229515, 0.04455139487981796, -0.01597812958061695, 0.0020536493975669146, 0.019846882671117783, 0.019482560455799103, 0.006822366267442703, 0.038305871188640594, -0.04670263081789017, -0.025832176208496094, 0.0071823508478701115, 0.023021690547466278, -0.009715257212519646, 0.0031054127030074596, 0.02944069914519787, 0.023212525993585587, 0.026873096823692322, 0.023819729685783386, -0.07272563874721527, -0.06571678072214127, 0.0047752223908901215, -0.026023011654615402, 0.05721592530608177, -0.03268490359187126, 0.006436358205974102, 0.01981218531727791, -0.006271545775234699, 0.02749764919281006, 0.026023011654615402, -0.024496328085660934, -0.014755046926438808, 0.04184500128030777, 0.045210644602775574, 0.047570064663887024, 0.06759043037891388, 0.0309500340372324, -0.03712616115808487, 0.03674449026584625, -0.0017500474350526929, -0.011710355058312416, 0.03913860768079758, 0.011051105335354805, -0.04292061924934387, 0.001386809628456831, 0.033708471804857254, 0.03702206909656525, 0.009897418320178986, -0.011103151366114616, -0.03674449026584625, 0.03948558121919632, 0.00045052336645312607, 0.0044542718678712845, 0.004081275779753923, 0.015769945457577705, 0.02319517731666565, 0.04118575155735016, 0.018580429255962372, 0.026369985193014145, -0.0032138419337570667, -0.024739209562540054, 0.0021197909954935312, 0.012517068535089493, -0.0009053839021362364, -0.012933436781167984, -0.020731665194034576, -0.0026413355953991413, -0.01235225610435009, 0.030481619760394096, 0.006340940482914448, -0.045557618141174316, -0.001966906012967229, 0.05378089100122452, -0.01750481128692627, 0.01241297647356987, -0.021442960947752, -0.015240809880197048, -0.012872716411948204, -0.036189332604408264, 0.016672074794769287, -0.04073468595743179, 0.00847482681274414, -0.03450651094317436, 0.005733736790716648, -0.0031531215645372868, -0.03729964792728424, 0.015240809880197048, -0.019395817071199417, -0.027289465069770813, -0.00463209580630064, 0.011658309027552605, 0.004430417437106371, -0.013540640473365784, -0.020783711224794388, 0.004436923190951347, 0.000686356914229691, 0.013610035181045532, -0.006939469370990992, -0.013184992596507072, 0.04614747315645218, 0.006757308728992939, -0.01095568761229515, -0.03435037285089493, 0.01108580268919468, 0.03160928562283516, 0.03549538552761078, -0.018198758363723755, -0.02463511750102043, 0.0012057328131049871, 0.007620404940098524, -0.0054951924830675125, -0.004809919744729996, -0.0032246848568320274, -0.0008641807944513857, 0.022726763039827347, -0.01682821288704872, 0.04902735352516174, 0.014581560157239437, 0.011302661150693893, -0.008427117951214314, -0.007438243832439184, 0.004061758518218994, 0.004185367375612259, -0.018389593809843063, 0.010244391858577728, 0.018302850425243378, -0.015440319664776325, 0.0017652275273576379, -0.04357986897230148, 0.02451367676258087, 0.0404571071267128, -0.03917330503463745, 0.025780130177736282, 0.03483613580465317, -0.037993595004081726, 0.03159193694591522, -0.0380282923579216, 0.03228588402271271, 0.005950595252215862, 0.004588724114000797, 0.01786913350224495, 0.0009693571482785046, 0.003940317779779434, -0.014069774188101292, 0.0006776825757697225, 0.035512734204530716, 0.0038340569008141756, 0.00551254115998745, 0.00999283604323864, -0.022778809070587158, -0.0017793233273550868, 0.03941618651151657, 0.03204300254583359, 0.007685462478548288, 0.00826664362102747, -0.04323289543390274, -0.015570434741675854, -0.03153989091515541, -0.01847633719444275, 0.005308694206178188, -0.005733736790716648, 0.02234509214758873, 0.02446163073182106, 0.014963231049478054, -0.008995287120342255, 0.008223271928727627, -0.023889124393463135, -0.005751085467636585, 0.007824252359569073, -0.016489915549755096, -0.04281652718782425, -0.004640770144760609, -0.012308884412050247, 0.04850689321756363, 0.011432776227593422, 0.05381558835506439, 0.018458988517522812, -0.02210221067070961, 0.030238738283514977, 0.026925142854452133, -0.02258797362446785, 0.009697908535599709, -0.02519027516245842, 0.007438243832439184, 0.028313035145401955, -0.01090364158153534, -0.00017145369201898575, 0.0036150298546999693, -0.03913860768079758, 0.0020558179821819067, 0.00871770828962326, -0.05849972739815712, 0.014954556711018085, 0.033951353281736374, -0.029024330899119377, 0.02154705300927162, -0.021304171532392502, -0.013306433334946632, -0.0500335767865181, -0.05128268152475357, -0.01731397584080696, -0.01889270544052124, 0.012465022504329681, -0.04482897371053696, -0.0177997387945652, -0.04028362035751343, -0.04219197481870651, 0.0013325950130820274, -0.05357270687818527, 0.003367811441421509, 0.015969455242156982, -0.009177448228001595, -0.016073547303676605, 0.00560362171381712, 0.020558178424835205, 0.018563080579042435, 0.00173703592736274, -0.0285212192684412, -0.016940979287028313, 0.0010371253592893481, 0.003933812025934458, 0.012560440227389336, 0.009047333151102066, -0.0034632289316505194, -0.00350443203933537, -0.016212336719036102, 0.02154705300927162, 0.020922500640153885, 0.0013824724592268467, 0.009437678381800652, -0.03549538552761078, -0.03238997608423233, 0.001419338397681713, 0.010686783120036125, -0.00234640808776021, -0.0022293045185506344, 0.009481050074100494, 0.02803545631468296, -0.027098629623651505, -0.00926419161260128, 0.029874416068196297, 0.026682261377573013, -0.027150675654411316, -0.039936646819114685, -0.01708844304084778, 0.048957958817481995, 0.013757498934864998, -0.00025575741892680526, 0.0404571071267128, 0.0059852926060557365, -0.02125212550163269, -0.02525966987013817, 0.021217428147792816, 0.03906921297311783, 0.024027913808822632, 0.014147843234241009, 0.0249473936855793, -0.03653630614280701, -0.011484822258353233, -0.036917977035045624, 0.01998567208647728, -0.03421158343553543, -0.04462078958749771, -0.016819538548588753, -0.011857818812131882, 0.025936268270015717, -0.010608714073896408, 0.02288290113210678, -0.035634174942970276, -0.005712050944566727, -0.012066002935171127, 0.00265000993385911, -0.005382426083087921, 0.027289465069770813, -0.038722239434719086, -0.02107863873243332, -0.0040682642720639706, 0.018406942486763, 0.03865284472703934, -0.03100208006799221, -0.0017305301735177636, 0.017418067902326584, -0.005746748298406601, 0.031505193561315536, -0.009429004043340683, 0.006340940482914448, 0.04323289543390274, -0.05790987238287926, -0.01799057424068451, 0.05280936509370804, 0.013054877519607544, 0.00758570758625865, 0.012872716411948204, 0.006050350144505501, 0.048229314386844635, 0.022483881562948227, 0.029579488560557365, 0.022119559347629547, -0.030741849914193153, -0.013211015611886978, 0.02822629176080227, 0.003372148610651493, -0.01713181473314762, 0.027150675654411316, -0.010695457458496094, -0.03386460989713669, 0.003142278641462326, 0.01714048907160759, -0.007299454417079687, -0.03868754208087921, 0.04014483094215393, -0.00802376214414835, 0.025537248700857162, -0.03906921297311783, -0.026734307408332825, 0.008674336597323418, -0.0011395909823477268, 0.018250804394483566, 0.00502677820622921, 0.015344901941716671, 0.03204300254583359, -0.019846882671117783, -0.022900249809026718, 0.010495947673916817, 0.010947013273835182, 0.009671885520219803, -0.009975487366318703, 0.006909109186381102, -0.0782078206539154, -0.027844620868563652, -0.0039446549490094185, 0.029770324006676674, 0.021529704332351685, 0.019760139286518097, -0.004523666575551033, -0.007056572940200567, 0.016359800472855568, 0.016255708411335945, 0.002608806826174259, 0.012239489704370499, 0.00478389672935009, 0.02512088045477867, 0.008635302074253559, 0.013774847611784935, -0.011675657704472542, -0.024565722793340683, 0.030169343575835228, -0.0285212192684412, 0.01180577278137207, -0.008062796667218208, -0.009758628904819489, -0.00508749857544899, 0.0028083166107535362, 0.013844241388142109, -0.008101831190288067, -0.027653785422444344, -0.003643221454694867, 0.01678484119474888, -0.014330004341900349, 0.013245712965726852, 0.0034762404393404722, 0.0007877382449805737, -0.0035890068393200636, 0.004493306390941143, -0.014147843234241009, 0.010287763550877571, -0.04111635684967041, 0.03277164697647095, -0.027462951838970184, 0.020662270486354828, -0.01569187641143799, 0.004701490513980389, -0.0065361130982637405, -0.02888554148375988, 0.04965190589427948, -0.024982091039419174, 0.029874416068196297, -0.01823345571756363, -0.004339336883276701, -0.023871775716543198, 0.0015592121053487062, -0.025398459285497665, 0.011545542627573013, -0.00542146060615778, 0.014251935295760632, 0.015249484218657017, -0.013610035181045532, 0.011640960350632668, -0.0002819159417413175, -0.006588159129023552, -0.012317558750510216, -0.02258797362446785, 0.009090704843401909, -0.008934566751122475, -0.030290784314274788, -0.015761271119117737, -0.05260118097066879, 0.01289873942732811, -0.0331706628203392, -0.006531775929033756, 0.02446163073182106, -0.018198758363723755, 0.010469924658536911, 0.015075997449457645, -0.008123517036437988, -0.011111825704574585, 0.025710735470056534, 0.04135923832654953, -0.029700929298996925, -0.07175411283969879, 0.046043381094932556, -0.0297356266528368, -0.017235906794667244, -0.028798798099160194, 0.03861814737319946, 0.007390534970909357, -0.002899397164583206, 0.009429004043340683, 0.04444730281829834, -0.026179149746894836, 0.013211015611886978, -0.006384312175214291, -0.0003797733224928379, -0.004983406513929367, -0.025329064577817917, 0.0012003113515675068, -0.0054648322984576225, -0.006219499744474888, -0.028313035145401955, 0.007386197801679373, 0.00694814370945096, 0.01591740921139717, 0.007308128755539656, 0.0007270178757607937, -0.021529704332351685, -0.026925142854452133, 0.027879318222403526, -0.01374882459640503, 0.02355949953198433, 0.005352065898478031, -0.01664605177938938, 0.0349922738969326, 0.017608903348445892, 0.020488783717155457, 0.03639751672744751, -0.007884972728788853, -0.009741280227899551, -0.02645672857761383, 0.018701869994401932, 0.01277729868888855, -0.025589294731616974, 0.0004011880955658853, -0.02567603811621666, 0.0007806903449818492, 0.0024461629800498486, -0.014243260957300663, -0.061865370720624924, -0.010253066197037697, 0.007564021740108728, -0.01896210014820099, 0.04739657789468765, -0.022449184209108353, -0.012057328596711159, -0.02597096562385559, 0.021772585809230804, -0.000944418425206095, -0.0029796347953379154, 0.009585142135620117, -0.015128043480217457, 0.001034414628520608, 0.021165382117033005, 0.053191035985946655, -0.03197360783815384, -0.02548520267009735, 0.011658309027552605, 0.015717899426817894, -0.011346032842993736, -0.002834339626133442, -0.019100889563560486, 0.009160099551081657, -0.030429573729634285, 0.011857818812131882, -0.017461439594626427, 0.023039039224386215, 0.019482560455799103, 0.018458988517522812, 0.007989064790308475, 0.009541770443320274, 0.005395437590777874, 0.022119559347629547, -0.020749013870954514, 0.01799057424068451, -0.029041679576039314, 0.01998567208647728, 0.038305871188640594, -0.0034393747337162495, 0.015717899426817894, 0.007112956140190363, 0.015709225088357925, -0.016030175611376762, -0.021338868886232376, 0.007590044755488634, -0.042608343064785004, -0.005842166021466255, 0.004796908237040043, 0.004350179806351662, 0.0142606096342206, -0.012811996042728424, -0.021390914916992188, -0.019048843532800674, 0.0005204601911827922, -0.0015798136591911316, 0.06262871623039246, -0.015370924957096577, -0.008088819682598114, 0.015787294134497643, 0.01492853369563818, 0.03542599081993103, -0.007754857186228037, -0.02047143504023552, -0.001811852096579969, 0.011779749765992165, 0.028295686468482018, -0.01586536318063736, -0.004055252764374018, -0.02919781766831875, 0.01871921867132187, 0.019170284271240234, 0.02645672857761383, 0.02718537300825119, -0.021356217563152313, 0.03736904263496399, -0.005863851867616177, 0.019898928701877594, 0.016802189871668816, 0.01804262027144432, -0.003749482100829482, 0.03639751672744751, 0.017001699656248093, 0.036119937896728516, -0.03608524054288864, 0.0020406378898769617, -0.00700886407867074, -0.009663211181759834, -0.016004152595996857, 0.00350443203933537, -0.00027310606674291193, 0.005742411129176617, -0.0027974736876785755, -0.02276146039366722, -0.026474077254533768, -0.025936268270015717, 0.015848014503717422, 0.01107712835073471, 0.00046678775106556714, 0.012681880965828896, 0.00209810514934361, -0.0202285535633564, -0.009281540289521217, -0.0007671366911381483, -0.01089496724307537, 0.009125402197241783, 0.027029234915971756, 0.029406001791357994, -0.021026592701673508, 0.009576467797160149, -0.039936646819114685, -0.013844241388142109, 0.023212525993585587, -0.03435037285089493, -0.003469734685495496, -0.0027519334107637405, -0.032841041684150696, -0.011120500043034554, 0.02168584242463112, -0.021234776824712753, -0.012846693396568298, -0.008110505528748035, 0.0018964268965646625, 0.009619839489459991, 0.020627573132514954, 0.009463701397180557, -0.01283801905810833, -0.00041257316479459405, 0.01974279060959816, -0.018996797502040863, 0.035026971250772476, -0.025537248700857162, 0.03336149826645851, -0.008821800351142883, 0.05242769420146942, -0.029128422960639, -0.016394497826695442, -0.04007543623447418, -0.014486142434179783, -0.01283801905810833, 0.01132000982761383, 0.016420520842075348, 0.008093156851828098, 0.034732043743133545, -0.018805962055921555, -0.004133321810513735, 0.01569187641143799, -0.015370924957096577, -0.021998118609189987, -0.016498589888215065, -0.009958138689398766, 0.02427079528570175, -0.012395627796649933, 0.022449184209108353, -0.026925142854452133, 0.021633796393871307, -0.04444730281829834, -0.012924762442708015, -0.0015147561207413673, 0.03155723959207535, 0.004341505467891693, -0.012673206627368927, -0.022067513316869736, -0.0018183578504249454, -0.022084861993789673, 0.04576580226421356, 0.006653216667473316, -0.009489724412560463, -0.004979069344699383, 0.019152935594320297, 0.008943241089582443, 0.0018064306350424886, 0.012491045519709587, -0.020991895347833633, 0.012525742873549461, 0.008709033951163292, -0.015318878926336765, 0.0279140155762434, -0.00035456352634355426, 0.020141810178756714, 0.016325103119015694, 0.020297948271036148, 0.011814447119832039, 0.02154705300927162, 0.03396870195865631, 0.031331706792116165, 0.0021197909954935312, -0.022067513316869736, -0.009290214627981186, 0.017756367102265358, -0.0154750170186162, -0.0047752223908901215, -0.009715257212519646, -0.004168018698692322, -0.017270604148507118, 0.015934757888317108, 0.009854046627879143, 0.02040204033255577, -0.03325740620493889, 0.03500962257385254, -0.00368659314699471, -0.017782390117645264, 0.01799057424068451, -0.0003412809455767274, -0.0004722092126030475, -0.017782390117645264, 0.007594381924718618, -0.009168773889541626, -0.014208563603460789, 0.014347353018820286, 0.0003892608801834285, 0.0011157365515828133, 0.0011179051361978054, 0.014885162003338337, -0.008201586082577705, 0.03868754208087921, 0.016247034072875977, 0.023958519101142883, -0.030811244621872902, -0.02730681374669075, -0.007455592509359121, -0.010270414873957634, -0.012560440227389336, 0.0023832740262150764, 0.007850275374948978, -0.002394116949290037, 0.019465211778879166, -0.017600229009985924, 0.020245902240276337, 0.013271735981106758, 0.0273762084543705, 0.0031791445799171925, 0.0011092307977378368, 0.002344239503145218, 0.0014388556592166424, -0.0025957953184843063, 0.0010154396295547485, -0.013523291796445847, 0.023021690547466278, 0.008080145344138145, -0.006831040605902672, 0.025780130177736282, 0.00517857912927866, -0.008995287120342255, -0.017227232456207275, -0.010105602443218231, -0.0030295122414827347, 0.026179149746894836, 0.004892325960099697, -0.02003771811723709, -0.013852915726602077, -0.01647256687283516, 0.017600229009985924, -0.024808604270219803, -0.03393400460481644, -0.024669814854860306, 0.027202721685171127, 0.002435320056974888, 0.027393557131290436, 0.013714127242565155, -0.020367342978715897, 0.03221648931503296, 0.023229874670505524, 0.012768624350428581, -0.027966061607003212, 0.014295306988060474, -0.002465680241584778, 0.0033135968260467052, 0.012126723304390907, 0.025832176208496094, 0.005673016421496868, -0.020193856209516525, 0.0015993309207260609, 0.030620409175753593, 0.04014483094215393, -0.02059287577867508, 0.001295729074627161, -0.0026868758723139763, -0.03212974593043327, -0.007663776632398367, -0.0357382670044899, -0.006744297221302986, -0.004636432975530624, -0.020124461501836777, -0.011241940781474113, 0.03273694962263107, 0.015665853396058083, -0.010383181273937225, 0.0031487843953073025, -0.018320199102163315, -0.01498925406485796, -0.017730344086885452, 0.002975297626107931, -0.013341130688786507, 0.017513485625386238, -0.03393400460481644, 0.026716958731412888, -0.021512355655431747, 0.0021891857031732798, 0.012092025950551033, 0.0043024709448218346, -0.01882331073284149, -0.014885162003338337, 0.012213466688990593, -0.0020525651052594185, 0.007815578021109104, -0.014208563603460789, -0.001984254689887166, 0.006848389282822609, 0.0009693571482785046, -0.018580429255962372, -0.035512734204530716, -0.01744409091770649, -0.014191214926540852, -0.03251141682267189, -0.03886102885007858, -0.01320234127342701, 0.050831615924835205, -0.0453147366642952, 0.009212145581841469, -0.0024743545800447464, 0.018007922917604446, 0.03107147477567196, 0.012282861396670341, 0.005438809283077717, -0.0006012399680912495, 0.01053931936621666, 0.04063059389591217, 0.010990384966135025, 0.021755237132310867, -0.02156440168619156, 0.00231604790315032, 0.005690365098416805, -0.009854046627879143, 0.0034632289316505194, 0.0391039103269577, 0.016082221642136574, 0.002728078979998827, -0.011580239981412888, -0.005247973836958408, -0.0012859704438596964, 0.009541770443320274, 0.030498968437314034, -0.011658309027552605, 0.03566887229681015, -0.02107863873243332, -0.006909109186381102, 0.03917330503463745, -0.0047752223908901215, -0.0038297197315841913, 0.005339054390788078, -0.03009994886815548, 0.0013933153823018074, -0.008184237405657768, 0.0045149922370910645, 0.03827117383480072, -0.025346413254737854, -0.01468565221875906, -0.011406753212213516, 0.006310580298304558, -0.0009433341328985989, 0.02125212550163269, -0.007104281801730394, 0.035634174942970276, 0.03899981826543808, 0.009177448228001595, 0.0022943620570003986, -0.01991627737879753, 0.01450349111109972, 0.004382708575576544, -0.015483691357076168, 0.004382708575576544, 0.008149540051817894, -0.007013201247900724, 0.0022195458877831697, 0.003970677964389324, 0.0035846696700900793, -0.013193666934967041, -0.004369697067886591, -0.043683961033821106, 0.013948333449661732, -0.022483881562948227, 0.001096219290047884, -0.0219113752245903, 0.010339809581637383, 0.025658689439296722, 0.019950974732637405, -0.0021544883493334055, -0.011163871735334396, -0.0007112956373021007, 0.004001038148999214, -0.054821811616420746, -0.02095719799399376, 0.028018107637763023, -0.03747313469648361, 0.03556478023529053, 0.0037082789931446314, 0.011701680719852448, -0.016429195180535316, -0.008336037397384644, 0.007104281801730394, -0.03729964792728424, 0.010799549520015717, 0.04219197481870651, -0.006713937036693096, -0.009697908535599709, -0.01654195971786976, 0.004528003744781017, -0.025329064577817917, -0.004319819621741772, -0.01707109436392784, 0.0022423160262405872, -0.009533096104860306, 0.0049747321754693985, -0.008184237405657768, -0.024617768824100494, 0.021217428147792816, -0.00258928956463933, 0.025589294731616974, 0.028868192806839943, -0.010192345827817917, -0.0037386391777545214, 0.030117297545075417, -0.0012371772900223732, -0.014824441634118557, -0.001342353643849492, -0.000655996729619801, -0.006965492386370897, 0.013167643919587135, 0.004519329406321049, -0.03917330503463745, 0.0113286841660738, -0.006189139559864998, 0.004549689590930939, -0.004417405929416418, -0.01707109436392784, -0.021720539778470993, -0.0018335379427298903, 0.005486518144607544, -0.010192345827817917, 0.0070001897402107716, 0.02416670322418213, 0.0028863856568932533, -0.0104178786277771, -0.01162361167371273, 0.019274376332759857, -0.011961910873651505, 0.028625311329960823, -0.010027533397078514, 0.005165567621588707, -0.10763117671012878, -0.025693386793136597, -0.005347728729248047, 0.03688327968120575, -0.009940790012478828, -0.019048843532800674, 0.012811996042728424, 0.0009682728559710085, -0.007125967647880316, 0.015128043480217457, -0.013696778565645218, -0.00499641802161932, 0.02543315663933754, -0.0014833116438239813, -0.011701680719852448, 0.011293986812233925, -0.0008327363757416606, -0.014225912280380726, -0.0026890444569289684, 0.006462381221354008, -0.021425612270832062, 0.002578446641564369, 0.03233793005347252, -0.0010398360900580883, -0.0060460129752755165, 0.03280634433031082, -0.010036207735538483, -0.009411655366420746, -0.007958704605698586, -0.02470451220870018, 0.00466245599091053, -0.0050354525446891785, 0.009368283674120903, -0.017695646733045578, 0.009481050074100494, -0.003309259656816721, 0.0002984513994306326, 0.0032420335337519646, -0.014997928403317928, 0.0008609279757365584, -0.0028104851953685284, -0.014035076834261417, -0.004549689590930939, 0.022449184209108353, 0.021425612270832062, 0.013393176719546318, 0.0023052049800753593, -0.023594196885824203, -0.00796304177492857, 0.019586652517318726, 0.0095070730894804, 0.015032625757157803, -0.023039039224386215, -0.03058571182191372, 0.006271545775234699, -0.007516312878578901, -0.0002728349936660379, -0.01107712835073471, -0.021026592701673508, 0.027237419039011, 0.06415539979934692, 0.026734307408332825, -0.0002805605763569474, -0.005104847252368927, -0.030013205483555794, 0.017331324517726898, 0.018910054117441177, 0.03736904263496399, 0.01847633719444275, -0.0015353576745837927, 0.010626062750816345, -0.001310909166932106, 0.0023767682723701, 0.02192872390151024, 0.015934757888317108, -0.01609957031905651, -0.0068267034366726875, 0.014468793757259846, 0.019361119717359543, 0.004324156790971756, -0.030863290652632713, 0.0031205927953124046, -0.002775787841528654, -0.0015765607822686434, -0.006449369713664055, -0.006353951990604401, -0.004588724114000797, 0.0017186030745506287, 0.008049785159528255, 0.01125928945839405, 0.01629040576517582, 0.0017847447888925672, 0.0403183177113533, 0.011779749765992165, -0.00493569765239954, 0.05215011537075043, -0.005989629775285721, 0.018910054117441177, -0.010799549520015717, -0.0032528764568269253, 0.021269474178552628, -0.004246087744832039, -0.006761645898222923, -0.0081755630671978, -0.009550444781780243, -0.0052046021446585655, -0.0057250624522566795, 0.027237419039011, -0.003127098549157381, -0.021095987409353256, -0.016437869518995285, 0.0013304264284670353, -0.02440958470106125, -0.012057328596711159, 0.0020894308108836412, -0.006644542329013348, -0.0010588112054392695, -0.00353479222394526, 0.0002605011686682701, -0.004940034821629524, -0.0066271936520934105, 0.011528193950653076, 0.02076636254787445, -0.042712435126304626, -0.016437869518995285, -0.012057328596711159, -0.01811201497912407, -0.007789554540067911, 0.024201400578022003, 0.03445446491241455, -0.017660949379205704, 9.460448927711695e-05, -0.01241297647356987, 0.016255708411335945, -0.005282671190798283, 0.03117556683719158, 0.031817469745874405, -0.008522535674273968, 0.023021690547466278, -0.023108433932065964, 0.0030902326107025146, 0.02531171590089798, -0.0025806152261793613, 0.0037234590854495764, -0.008479163981974125, 0.0095070730894804, -0.012517068535089493, -0.012074677273631096, -0.014121820218861103, -0.009272865951061249, 0.004710164852440357, -0.008722045458853245, 0.0500335767865181, -0.011693006381392479, -0.008067133836448193, -0.029267212375998497, -0.011293986812233925, 0.0027475962415337563, -0.009680559858679771, -0.0024136342108249664, -0.016793515533208847, 0.007507638540118933, 0.01180577278137207, -0.010634737089276314, 0.01295945979654789, 0.010018859058618546, -0.008257969282567501, -0.010148974135518074, -0.023906473070383072, 0.0142606096342206, 0.025658689439296722, -0.00862662773579359, -0.024184051901102066, -0.022553276270627975, 0.020263250917196274, -0.021824631839990616, -0.010730154812335968, -0.007065247278660536, 0.02239713817834854, -0.011693006381392479, -0.010157648473978043, 0.012733926996588707, -0.006844052113592625, 0.008197248913347721, -0.0007969547295942903, -0.005135207436978817, -0.006037338636815548, 0.003552140900865197, -0.017183860763907433, -0.0012935604900121689, 0.014026402495801449, 0.01591740921139717, -0.0052956826984882355, 5.861954196006991e-05, 0.004597398452460766, 0.01498925406485796, 0.03747313469648361, 0.050172366201877594, -0.010808223858475685, -0.024478979408740997, -0.005278334021568298, -0.013670755550265312, 0.0077028111554682255, 0.01468565221875906, 0.0077028111554682255, 0.011979259550571442, -0.01944786310195923, 0.011953236535191536, -0.0042547620832920074, -0.00423741340637207, -0.0034935891162604094, -0.0154750170186162, 0.018910054117441177, 0.024912696331739426, 0.0019137755734845996, -0.01949990913271904, 0.0034675661008805037, -0.007637753617018461, 0.023056387901306152, -0.018320199102163315, 0.033881958574056625, -0.0035890068393200636, 0.014225912280380726, -0.006072035990655422, 0.00448029488325119, 0.015943432226777077, -0.018511034548282623, -0.043441079556941986, 0.009350934997200966, 0.008639639243483543, -0.01597812958061695, 0.006059024482965469, 0.009455027058720589, 0.012525742873549461, -0.01689760759472847, 0.02264001965522766, 0.039867252111434937, 0.002435320056974888, 0.03913860768079758, -0.005946258082985878, -0.004788233898580074, -0.019413165748119354, -0.02519027516245842, 0.012369604781270027, 0.01320234127342701, 0.013705452904105186, -0.020801059901714325, 0.0007384029449895024, -0.0073211402632296085, 0.01616896502673626, 0.007880635559558868, -0.009411655366420746, -0.023021690547466278, 0.015613806433975697, 0.027948712930083275, -0.018181409686803818, -0.004079107195138931, -0.013341130688786507, 0.018441639840602875, -0.00944635272026062, -0.03088063932955265, -0.00987139530479908, 0.038965120911598206, -0.017461439594626427, 0.02718537300825119, -0.01908354088664055, -0.010504622012376785, 0.0016437869053333998, 0.00042043428402394056, -0.009151425212621689, 6.569285687874071e-06, -0.004304639529436827, -0.007880635559558868, 0.0036930989008396864, 0.011250615119934082, 0.01991627737879753, -0.007156327832490206, -0.01852838322520256, -0.00836206041276455, -0.008097494021058083, -0.00028083164943382144, -0.006011315621435642, -0.0061370935291051865, 0.007416557986289263, 0.005946258082985878, 0.013072226196527481, 0.0038752600084990263, -0.02548520267009735, 0.02003771811723709, 0.0059072235599160194, 0.00209810514934361, 0.010938338935375214, 0.008297002874314785, -0.007577033247798681, 0.032060351222753525, 0.010244391858577728, -0.012360930442810059, -0.003205167595297098, 0.018458988517522812, 0.002439657226204872, -0.011389404535293579, 0.007889309898018837, -0.012334907427430153, -0.023021690547466278, -0.020922500640153885, -0.00034832884557545185, 0.004321988206356764, -0.009533096104860306, 0.014703000895678997, -0.013584012165665627, -0.017305301502346992, -0.003517443547025323, -0.030065251514315605, -0.02149500697851181, -0.02822629176080227, 0.01852838322520256, 0.008691685274243355, 0.0008354471065104008, 1.8805691070156172e-05, -0.01859777793288231, 0.025502551347017288, 0.0030728839337825775, 0.03625872731208801, -0.0037841794546693563, -0.033951353281736374, 0.017973225563764572, 9.101277100853622e-05, -0.005651330575346947, 0.003127098549157381, -0.01132000982761383, -0.06061626598238945, 0.037820108234882355, -0.03027343563735485, -0.0038058653008192778, -0.013644732534885406, -0.0019267870811745524, 0.01078220084309578, -0.006288894452154636, -0.0013651237823069096, 0.0012425987515598536, 0.012612486258149147, 0.03893042355775833, -0.009914766997098923, -0.0002800184302031994, 0.015466342680156231, -0.006006978452205658, -0.018302850425243378, 0.021269474178552628, 0.03245937079191208, -0.0024721859954297543, 0.018424291163682938, 0.011571565642952919, 0.018007922917604446, -0.014555537141859531, 0.010096928104758263, 0.024496328085660934, 0.009281540289521217, 0.01665472611784935, -0.011493496596813202, -0.030724501237273216, 0.017270604148507118, -0.0014605415053665638, 0.004948709160089493, 0.01737469621002674, -0.0071823508478701115, -0.004710164852440357, 0.021529704332351685, -0.002851688303053379, 0.0015440320130437613, -0.0047145020216703415, 0.005859514698386192, 0.006635867990553379, -0.011111825704574585, -0.0053564030677080154, -0.023229874670505524, 0.020072415471076965, -0.0025502550415694714, 0.020749013870954514, -0.0038297197315841913, -0.008917218074202538, -0.023941170424222946, 0.013245712965726852, -0.07251745462417603, -0.008735056966543198, -0.009212145581841469, 0.007013201247900724, 0.0010105603141710162, 0.0010430889669805765, -0.026508774608373642, -0.00716066500172019, -0.0031336043030023575, 0.0074122208170592785, 0.0018682352965697646, 0.01492853369563818, 0.022605322301387787, -0.013904961757361889, -0.009680559858679771, 0.0075813704170286655, -0.01773901842534542, 0.006280220113694668, -0.018302850425243378, 0.013991705141961575, -0.0010295354295521975, 0.023715637624263763, -0.037577226758003235, 0.021633796393871307, 0.012430325150489807, -0.009229494258761406, -0.009056007489562035, -0.023455407470464706, -0.003124929964542389, -0.017339998856186867, 0.026075057685375214, -0.004371865652501583, 0.00845314096659422, 0.020801059901714325, -0.00490533746778965, 0.03238997608423233, -0.0148678133264184, 0.00042802433017641306, -0.013150295242667198, 0.014390724711120129, -0.006314917467534542, -0.013584012165665627, -0.0003336908994242549, 0.014798418618738651, -0.018458988517522812, 0.00047491994337178767, 0.0008793608867563307, 0.0037256276700645685, -0.020211204886436462, 0.017209883779287338, -0.017244581133127213, 0.019586652517318726, 0.014815767295658588, -0.03520045801997185, 0.007112956140190363, -0.01877126470208168, -0.009333586320281029, -0.028330383822321892, -0.02985706739127636, -0.012265512719750404, -0.007663776632398367, 0.005074487067759037, -0.011979259550571442, -0.015422970987856388, 0.007078258786350489, -0.023281920701265335, 0.013792195357382298, 0.018788613379001617, 0.010877618566155434, -0.016628703102469444, 0.007082595955580473, 0.0028755427338182926, 0.016672074794769287, 0.036432214081287384, -0.025155577808618546, 0.020297948271036148, -0.01701037399470806, 0.03167868033051491, 0.02883349545300007, 0.007459929678589106, -0.008513861335814, 0.019517257809638977, -0.018545731902122498, 0.017756367102265358, 0.026838399469852448, -0.02040204033255577, -0.02918046899139881, -0.016420520842075348, 0.01253441721200943, 0.006683576852083206, -0.008665662258863449, 0.01413916889578104, 0.014486142434179783, -0.04052650183439255, 0.0074729411862790585, -0.010452575981616974, -0.0005220866296440363, -0.00010422758350614458, 0.010339809581637383, -0.005460495129227638, 0.006852726452052593, 0.03356968238949776, -0.009680559858679771, 0.00121874432079494, 0.00040064594941213727, -0.0033157654106616974, 0.010409204289317131, 0.04965190589427948, -0.0015516220591962337, 0.017851784825325012, -0.01374015025794506, 0.015188763849437237, 0.016273057088255882, -0.004152838606387377, 0.00265000993385911, -0.015778619796037674, -0.004009712487459183, 0.009654536843299866, 0.005681690759956837, -0.0036974360700696707, -0.033344149589538574, 0.0056947022676467896, 0.0045453524217009544, 0.002180511364713311, -0.004345842637121677, 0.026855748146772385, 0.011181220412254333, -0.008479163981974125, -0.00502677820622921, 0.008860834874212742, 0.0165853314101696, 0.007845938205718994, 0.001735951635055244, 0.009038658812642097, 0.006189139559864998, -0.0020200363360345364, -0.015761271119117737, -0.004061758518218994, -0.009090704843401909, -0.0005093462532386184, 0.0030858954414725304, 0.0033482941798865795, 0.004705827683210373, -0.005829154513776302, 0.000747619429603219, 0.022362440824508667, -0.0160475242882967, -0.004467283375561237, 0.015934757888317108, -0.009758628904819489, 0.0031769759953022003, 0.004727513529360294, 0.014165191911160946, -0.002178342780098319, -0.002834339626133442, 0.013523291796445847, 0.004410900175571442, -0.011094477027654648, -0.019482560455799103, -0.003873091423884034, -0.01168433204293251, -0.005529889836907387, 0.01720120944082737, 0.07425232231616974, 0.014217237941920757, 0.009350934997200966, 0.009541770443320274, 0.007264757063239813, -0.021529704332351685, 0.00422657048329711, -0.01326306164264679, 0.011111825704574585, -0.015787294134497643, -0.0015180089976638556, -0.006713937036693096, 0.004688479006290436, 0.012282861396670341, -0.044239118695259094, 0.02440958470106125, 0.007256082724779844, 0.006544787436723709, -0.03516576066613197, 0.026803702116012573, 0.0025198948569595814, 0.005959269590675831, -0.0208357572555542, 0.004822931252419949, -0.012560440227389336, -0.0018248636042699218, 0.002927588764578104, -0.0020785878878086805, 0.0008457478834316134, 0.027098629623651505, -0.009541770443320274, -0.004376202821731567, -0.004940034821629524, -0.012421650812029839, -0.0039598350413143635, 0.01701904833316803, -0.015839340165257454, 0.01744409091770649, 0.005673016421496868, 0.012144071981310844, -0.0095070730894804, -0.010730154812335968, 0.02028059959411621, 0.020419389009475708, 0.0026586842723190784, -0.0029948148876428604, -0.0060156527906656265, -0.0021685841493308544, 0.015344901941716671, -0.007590044755488634, -0.02295229583978653, -0.010452575981616974, -0.006206488236784935, 0.005980955436825752, 0.0022336416877806187, -0.0139570077881217, 0.0005725062219426036, 0.004462946206331253, 0.02222365140914917, -0.009481050074100494, 0.015206112526357174, 0.02295229583978653, -0.02397586777806282, -0.024860650300979614, -0.017478788271546364, -0.0029210830107331276, 0.0005952763604000211, 0.002281350549310446, 0.014234586618840694, 0.0036649073008447886, -0.012135397642850876, 0.009229494258761406, 0.012950785458087921, -0.008856497704982758, 0.013887613080441952, -0.0015039131976664066, 0.013306433334946632, 0.017955876886844635, 0.006033001467585564, -0.0022596647031605244, -0.0017804076196625829, 0.002806148026138544, 0.01126796379685402, -0.008197248913347721, -0.01568320207297802, -0.0020796721801161766, 0.006340940482914448, 0.005837828852236271, 0.009220819920301437, -0.02475655823945999, -0.00680935475975275, 0.004070432856678963, -0.00277145067229867, 0.01541429664939642, 0.03688327968120575, -0.01096436195075512, -0.007082595955580473, -0.00674863439053297, 0.01150217093527317, 0.01223081536591053, 0.0055559128522872925, 0.008427117951214314, -0.003489251947030425, 0.013115597888827324, 0.0018259478965774179, -0.001965821720659733, 0.017296627163887024, 0.005378088913857937, -0.009212145581841469, 0.015579109080135822, 0.0019397985888645053, -0.0046537816524505615, -0.005829154513776302, 0.02300434187054634, -0.02203281596302986, -0.024478979408740997, -0.017660949379205704, 0.0012697060592472553, -0.016299080103635788, -0.007481615524739027, -0.006471055559813976, -0.0047145020216703415, -0.01407844852656126, 0.009420329704880714, 0.017712995409965515, 0.012603811919689178, -0.03141845017671585, 0.0019604002591222525, -0.006163116544485092, -0.007047898601740599, 0.035269852727651596, 0.007360174786299467, -0.012039979919791222, -0.002404959872364998, 0.0005435014027170837, 0.0004556737549137324, 0.0013748824130743742, -0.016515938565135002, 0.019152935594320297, 0.006575147621333599, 0.00908203050494194, 0.022726763039827347, 0.005703376606106758, -0.004293796606361866, 0.0008191827218979597, 0.017366021871566772, -0.016073547303676605, -0.02713332697749138, 0.006475392729043961, 0.0035694895777851343, -0.011493496596813202, -0.023646242916584015, 0.003296248149126768, -0.0053260428830981255, 0.005733736790716648, -0.017287952825427055, -0.01799057424068451, 0.040908172726631165, -0.0026304926723241806, -0.0005996135296300054, 0.0001738933497108519, -0.008479163981974125, -0.008179900236427784, 0.010938338935375214, 0.021113336086273193, 0.011293986812233925, 0.0006478645373135805, 0.014234586618840694, 0.013636058196425438, -0.008526872843503952, -0.0016578827053308487, 0.004645107313990593, -0.005642656236886978, -0.020488783717155457, 0.00758570758625865, -0.01567452773451805, -0.0007156328065320849, 0.018458988517522812, -0.020818408578634262, 0.027393557131290436, 0.000929780479054898, 0.014572885818779469, 0.027896666899323463, 0.004157175775617361, 0.010044882073998451, 0.0101142767816782, -0.013349805027246475, -0.021581750363111496, 0.0016567984130233526, 0.014633606187999249, 0.0074425810016691685, 0.03523515537381172, 0.011415427550673485, -0.013878938741981983, -0.0067182742059230804, -0.004554026760160923, 0.01186649315059185, 0.020558178424835205, 0.01918763294816017, -0.008951915428042412, 0.0009850794449448586, -0.005568924359977245, 0.006831040605902672, 0.020731665194034576, -0.011554216966032982, 0.002237978857010603, 0.00347407185472548, -0.0208357572555542, -0.015405622310936451, -0.001827032188884914, -0.07681992650032043, -0.023108433932065964, 0.004330662544816732, -0.006384312175214291, -0.007082595955580473, -0.013289084658026695, 0.0237329863011837, -0.012491045519709587, 0.019898928701877594, 0.00857458170503378, -0.0067963432520627975, 0.008218934759497643, 0.00417669303715229, -0.01119856908917427, 0.001263200305402279, -0.00035022635711357, -0.0007308128988370299, 0.016489915549755096, 0.035391293466091156, -0.016212336719036102, -4.0559301851317286e-05, -0.01610824465751648, -0.015336227603256702, 0.019343771040439606, 0.013228364288806915, 0.024739209562540054, 0.012916088104248047, -0.006098059006035328, 0.028070153668522835, -0.02499943971633911, -0.011640960350632668, 0.019170284271240234, -0.005668679252266884, -0.010547993704676628, 0.017027722671628, -0.006288894452154636, -0.009394306689500809, 0.011285312473773956, -0.004291628021746874, -3.393495353520848e-05, 0.01023571752011776, -0.0002043890708591789, -0.00683971494436264, 0.0006419009296223521, 0.01918763294816017, 0.022188954055309296, -0.003170470241457224, 0.010487273335456848, -0.003641052870079875, -0.016507264226675034, 0.019274376332759857, 0.003719121916219592, -0.003341788426041603, -0.012239489704370499, 0.024305492639541626, 0.012811996042728424, -0.011181220412254333, 0.026907794177532196, 0.0036779188085347414, 0.016680749133229256, 0.006761645898222923, -0.011181220412254333, -0.015258158557116985, 0.006141430698335171, -0.00243748864158988, -0.011458799242973328, -0.0036475586239248514, -0.0008435792988166213, 0.012699229642748833, 0.023958519101142883, 0.0035998497623950243, -0.0009411655482836068, 0.0023095421493053436, -0.046841420233249664, -0.007624742109328508, -0.00716066500172019, 0.005668679252266884, 0.0035000948701053858, -0.005100510083138943, 0.014720349572598934, 0.013132946565747261, -0.015344901941716671, 0.011103151366114616, 0.005304357036948204, 0.016116918995976448, 0.006119744852185249, -0.0177997387945652, -0.009411655366420746, 0.019222330302000046, -0.009437678381800652, -0.0038947772700339556, 0.013063551858067513, -0.009940790012478828, -0.012681880965828896, 0.032788995653390884, -0.0019419671734794974, 0.016056198626756668, -0.005902886390686035, -0.015431645326316357, -0.006466718390583992, 0.007230059709399939, 0.006653216667473316, 0.0037386391777545214, 0.008787102997303009, -0.005868189036846161, -0.0030251750722527504, -0.0027692820876836777, 0.031054126098752022, 0.0059549324214458466, 0.009359609335660934, -0.004896663129329681, 0.009732605889439583, -0.0063366033136844635, 0.02421874925494194, -0.00886950921267271, 0.026422031223773956, 0.007633416447788477, -0.008604941889643669, 0.01265585795044899, -0.03577296435832977, -0.0050571383908391, -0.010088253766298294, 0.004987743683159351, 0.0016351125668734312, 0.006371300667524338, 0.022483881562948227, -0.0393814891576767, -0.009151425212621689, -0.018858008086681366, 0.00830134004354477, -0.035269852727651596, 0.023403361439704895, -0.0032897423952817917, -0.013722801581025124, -0.00499641802161932, 0.0032116733491420746, 0.011450124904513359, -0.011606262996792793, 0.004762210883200169, 0.017123140394687653, -0.0021729213185608387, -0.01799057424068451, 0.018007922917604446, 0.006492741405963898, -0.004727513529360294, -0.00987139530479908, -0.005872526206076145, 0.0255545973777771, -0.021998118609189987, -0.013158969581127167, -0.01761757768690586, 0.009064681828022003, -0.01308090053498745, -0.016819538548588753, 0.0023247222416102886, 0.008726382628083229, -0.013280410319566727, -0.005091835744678974, -0.044482000172138214, -0.01511069480329752, 0.012152746319770813, -0.017183860763907433, -0.0333094522356987, 0.006883086636662483, -0.01852838322520256, 0.011250615119934082, 0.01029643788933754, -0.013714127242565155, -0.00018649824778549373, -0.005577598698437214, 0.03167868033051491, 0.019482560455799103, -0.009697908535599709, -0.010938338935375214, 0.045210644602775574, 0.007498964201658964, 0.02956213988363743, 0.02034999430179596, 0.013158969581127167, 0.006158779375255108, 0.005386763252317905, -0.004241750575602055, -0.02270941436290741, -0.0030707153491675854, 0.006189139559864998, 0.017400719225406647, 0.0030837268568575382, 0.010686783120036125, 0.022778809070587158, 0.0003795022494159639, 0.01320234127342701, -0.011779749765992165, -0.011415427550673485, 0.01906619220972061, -0.010920990258455276, -0.021720539778470993, 0.012725252658128738, -0.0050354525446891785, 0.021946072578430176, -0.015180089510977268, 0.012881390750408173, -0.014312655664980412, -0.012178769335150719, -0.026422031223773956, 0.006072035990655422, -0.011241940781474113, 0.02343805879354477, -0.0019636531360447407, 0.02003771811723709, 0.0022488217800855637, 0.011129174381494522, 0.004688479006290436, 0.010886292904615402, -0.004940034821629524, 0.024201400578022003, 0.025866873562335968, 0.01871921867132187, 0.00857458170503378, -0.0011536867823451757, 0.010409204289317131, -0.006770320236682892, -0.003248539287596941, 0.007854612544178963, 0.01920498162508011, -0.015275507234036922, -0.00838374625891447, 0.024184051901102066, -0.03027343563735485, 0.007984727621078491, 0.0018617295427247882, -0.018927402794361115, -0.0047448622062802315, 0.004983406513929367, -0.019604001194238663, 0.005417123436927795, 0.007429569493979216, 0.004827268421649933, 0.012222141027450562, -0.010643411427736282, -0.026595517992973328, -0.009637188166379929, 0.023039039224386215, 0.01986423134803772, 0.010799549520015717, -0.008878183551132679, -0.007043561432510614, -0.015821991488337517, 0.014026402495801449, 0.025641340762376785, -0.02669961005449295, 0.006150105036795139, -0.0018584766658023, 0.01725325547158718, -0.005477843806147575, 7.331678261834895e-06, -0.01047859899699688, 0.01017499715089798, 0.006865737959742546, -0.01413916889578104, -0.013349805027246475, -0.018979448825120926, -0.014217237941920757, 0.0012144071515649557, 0.007750520016998053, -0.009576467797160149, 0.01677616685628891, -0.004387045744806528, 0.02754969522356987, 0.0027931365184485912, 0.004918348975479603, -0.004265605006366968, 0.011302661150693893, 0.022848203778266907, 0.013939659111201763, 0.01835489645600319, 0.013063551858067513, 0.008791440166532993, 0.026873096823692322, 0.012638509273529053, 0.005790119990706444, 0.01707976870238781, 0.014000379480421543, -0.007832926698029041, 0.0017305301735177636, -0.0014713844284415245, 0.001872572465799749, -0.013219689950346947, 0.0017424573889002204, -0.0022596647031605244, 0.0024288143031299114, 0.0037408077623695135, 0.0069221206940710545, -0.0022748447954654694, -0.00896058976650238, -0.002563266549259424, 0.0015028289053589106, -0.015362250618636608, -0.0013000662438571453, 0.01125928945839405, -0.01356666348874569, 0.00856590736657381, 0.003946823533624411, -0.016082221642136574, 0.018320199102163315, -0.019777487963438034, 0.00451065506786108, 0.027931364253163338, 0.009342260658740997, 0.011354707181453705, -0.00827097985893488, -0.011588914319872856, -0.021026592701673508, 0.008253632113337517, -0.02241448685526848, -0.01084292121231556, 0.0016427026130259037, 0.013913636095821857, 0.00022417739091906697, 0.0029818033799529076, -0.01138073019683361, 0.009125402197241783, 0.01884065940976143, -0.008696022443473339, 0.0010192346526309848, -0.0006673817988485098, 0.011771075427532196, 0.010574016720056534, 0.00811484269797802, 0.028208943083882332, -0.011155197396874428, 0.0035543094854801893, -0.0024179713800549507, -0.008132191374897957, -0.004458609037101269, -0.0033960030414164066, -0.028660008683800697, -0.015093346126377583, 0.026786353439092636, -0.005599284544587135, -0.013887613080441952, 0.013783521018922329, 0.010504622012376785, 0.029284561052918434, 0.016177639365196228, 0.006874412298202515, -0.012638509273529053, -0.006466718390583992, 0.0021729213185608387, 0.0025806152261793613, 0.003159627318382263, 0.014798418618738651, -0.012699229642748833, -0.023021690547466278, 0.010157648473978043, 0.0009986330987885594, -0.00530001986771822, 0.023143131285905838, -0.004230907652527094, -0.0036041869316250086, 0.01967339590191841, -0.003580332500860095, 0.008843486197292805, 0.005950595252215862, 0.02876410074532032, -0.003064209595322609, -0.018146712332963943, -0.007277768570929766, -0.017782390117645264, -5.462121407617815e-05, -0.007199699524790049, 0.011710355058312416, -0.011771075427532196, -0.021651145070791245, -0.01598680391907692, 0.01529285591095686, 0.014269283972680569, 0.018372245132923126, 0.006219499744474888, 0.01816406100988388, -0.021512355655431747, -0.0012209129054099321, -0.0208357572555542, 0.010764852166175842, -0.024374887347221375, 0.004675467498600483, -0.004892325960099697, -0.0004090492147952318, 0.006974166724830866, 0.0027996422722935677, -0.02689044550061226, -0.010530645027756691, 0.008418443612754345, 0.013610035181045532, 0.01114652305841446, -0.004779559560120106, 0.01573524810373783, 0.004048747010529041, 0.009654536843299866, 0.005959269590675831, -0.008435792289674282, -0.014225912280380726, -0.005646993406116962, 0.0028712055645883083, 0.009767303243279457, 0.010747503489255905, -0.016940979287028313, 0.007984727621078491, -0.008275317028164864, 0.0226573683321476, 0.002806148026138544, -0.023524802178144455, -0.00040362775325775146, -0.01725325547158718, 0.009802000597119331, -0.010201020166277885, -0.022327743470668793, 0.0003030596417374909, -0.00956779345870018, 0.013479920104146004, -0.009559119120240211, -0.0029774662107229233, -0.008643976412713528, -0.008995287120342255, -0.009168773889541626, -0.004987743683159351, -0.007295117247849703, -0.0058161430060863495, 0.0085962675511837, -0.008140865713357925, -0.013983030803501606, -0.002866868395358324, -0.007668113801628351, 0.012994157150387764, 0.0006147936219349504, 0.0036779188085347414, 0.002374599687755108, -0.005339054390788078, -0.011007733643054962, 0.019413165748119354, -0.001434518489986658, -0.009246842935681343, 0.010686783120036125, -0.006844052113592625, 0.00844446662813425, -0.005443146452307701, -0.002745427656918764, -0.00563398189842701, -0.029041679576039314, 0.01504997443407774, -0.006501415744423866, -0.023628894239664078, -0.01622968539595604, -0.018615126609802246, 0.02524232119321823, 0.011163871735334396, -0.0019463043427094817, 0.011606262996792793, 0.009125402197241783, 0.0011135679669678211, -0.021113336086273193, 0.0013076562900096178, 0.0030685467645525932, -0.019517257809638977, 0.022865552455186844, -0.019881580024957657, -0.0030121635645627975, 0.0008208091603592038, 0.0018704038811847568, -0.004701490513980389, -0.03702206909656525, 0.0023355651646852493, -0.004818594083189964, 0.0011460967361927032, -0.019846882671117783, -1.0021230991696939e-05, -0.007967378944158554, 0.015396947972476482, -0.011554216966032982, 0.003235527779906988, -0.0034523860085755587, -0.005803131498396397, -0.02288290113210678, 0.006974166724830866, -0.008622290566563606, 0.00042016321094706655, 0.0009986330987885594, -0.00021902700245846063, -0.006059024482965469, 0.003853574162349105, 0.012074677273631096, -0.027393557131290436, -0.013289084658026695, -9.087723447009921e-05, 0.0032875738106667995, -0.0032854052260518074, -0.011510845273733139, 0.01949990913271904, 0.006475392729043961, -0.005638319067656994, -0.014824441634118557, -0.01090364158153534, -0.006501415744423866, 0.004467283375561237, -0.013228364288806915, 0.002606638241559267, -0.02234509214758873, 0.03051631711423397, 0.0011862155515700579, -0.010201020166277885, 0.01882331073284149, 0.023594196885824203, 0.002593626733869314, -0.013705452904105186, -0.022848203778266907, 0.00779822887852788, -0.013419199734926224, -0.0006619603373110294, 0.020627573132514954, 0.006150105036795139, -0.002530737780034542, 0.0002998067648150027, -0.002270507626235485, 0.0061067333444952965, 0.013028854504227638, 0.011875167489051819, 0.0004892868455499411, -0.006648879498243332, -0.026682261377573013, -0.006453706882894039, 0.001202479936182499, -0.005790119990706444, -0.03429832682013512, -0.0019441357580944896, 0.008101831190288067, 0.014286632649600506, -0.014919859357178211, -0.005742411129176617, 0.011580239981412888, -0.017669623717665672, 0.0005714219296351075, -0.019031494855880737, -0.008071471005678177, 0.003567320993170142, -0.0016980015207082033, 0.006562136113643646, -0.009637188166379929, 0.020610224455595016, 0.002530737780034542, 0.012187443673610687, 0.014451445080339909, 0.03698737174272537, 0.019725441932678223, -0.013488594442605972, 0.01701037399470806, 0.01283801905810833, 0.007247408386319876, 0.009220819920301437, 0.0070001897402107716, -0.005959269590675831, 0.019170284271240234, 0.023299269378185272, 0.004217896144837141, -0.0006299737142398953, -0.011953236535191536, -0.005022441036999226, -0.016368474811315536, 0.01438205037266016, 0.0148678133264184, -0.012204792350530624, 0.025571946054697037, -0.012005282565951347, 0.002556760795414448, -0.020263250917196274, -0.0001508521381765604, -0.030967382714152336, 0.023039039224386215, 0.02657816931605339, 0.01731397584080696, 0.02694249153137207, 0.022310394793748856, -0.008761079981923103, -0.01634245179593563, -0.017392044886946678, 0.01799057424068451, 0.03834056854248047, 0.023663591593503952, 0.0021989443339407444, -0.00811484269797802, -0.0061674537137150764, -0.010556668043136597, -0.004727513529360294, 0.011545542627573013, 0.014477468095719814, -0.0014507828745990992, 0.0015299362130463123, 0.012100700289011002, -0.0026413355953991413, 0.010756177827715874, 0.00999283604323864, -0.0029536117799580097, -0.0036345471162348986, 0.011033756658434868, -0.023906473070383072, -0.007824252359569073, -0.0034220260567963123, -0.005412786267697811, 0.010365832597017288, 0.0008452057372778654, -0.0020926836878061295, -0.0021241281647235155, -0.0018302850658074021, 0.007195362355560064, 0.015301530249416828, 0.002725910395383835, -0.0025676037184894085, 0.014356027357280254, 0.0023052049800753593, 0.004740525037050247, 0.0031466158106923103, 0.006067698821425438, 0.009697908535599709, -0.0014963231515139341, -0.007117293309420347, 0.013193666934967041, -0.001386809628456831, 0.0010626062285155058, -0.0028430139645934105, -0.011415427550673485, 0.0014464457053691149, -0.020245902240276337, -0.020263250917196274, -0.014434096403419971, -0.0151714151725173, 0.0006299737142398953, 0.004172355867922306, 0.02343805879354477, -0.004319819621741772, 0.005794457159936428, -0.003855742746964097, -0.038965120911598206, 0.02463511750102043, 0.001661135582253337, 0.006583821959793568, 0.016082221642136574, -0.002281350549310446, 0.03480143845081329, -0.0006191307911649346, -0.0022574961185455322, 0.010305112227797508, -0.023108433932065964, 0.0039142947643995285, 0.016802189871668816, 0.016559308394789696, 0.00808448251336813, 0.009802000597119331, -0.02173788845539093, -0.011059779673814774, -0.010981710627675056, -0.008860834874212742, -0.004848954267799854, -0.012430325150489807, -0.0027194046415388584, -0.005612296052277088, -0.0026565156877040863, -0.011675657704472542, 0.012942111119627953, 0.01541429664939642, 0.016012826934456825, -0.016750143840909004, -0.00070045271422714, -0.00557326152920723, 0.0160475242882967, 0.00499641802161932, -0.0018649824196472764, -0.00944635272026062, -0.002526400610804558, 0.009984161704778671, 0.005673016421496868, 0.010929664596915245, -0.004827268421649933, 0.016802189871668816, -0.009949464350938797, 0.013913636095821857, 5.451956167235039e-05, -0.0022466531954705715, 0.002756270579993725, 0.02392382174730301, 0.015128043480217457, 0.0027649449184536934, -0.01646389253437519, 0.006813691928982735, -0.01114652305841446, 0.0019408828811720014, -0.006648879498243332, -0.023299269378185272, 0.013930984772741795, -0.009455027058720589, -0.0075813704170286655, -0.008917218074202538, 0.02779257483780384, -0.007490289863198996, 0.016064872965216637, -0.004092118702828884, 0.004059589933604002, 0.00466245599091053, -0.0021349710877984762, 0.005959269590675831, -0.015032625757157803, 0.00842278078198433, -0.0030143321491777897, 0.0015906565822660923, 0.0104178786277771, 0.012126723304390907, 0.0044542718678712845, 0.00740354647859931, -0.0009124318021349609, 0.005360740236938, 0.016576657071709633, -0.0031509529799222946, -0.02560664340853691, 0.0037364705931395292, -0.019395817071199417, -0.010547993704676628, 0.0020373850129544735, -0.01877126470208168, -0.01786913350224495, -0.0030251750722527504, -0.020245902240276337, -0.0004816967702936381, 0.024062611162662506, 0.031036777421832085, 0.0020894308108836412, -0.00033748592250049114, 0.006288894452154636, -0.015717899426817894, 0.013271735981106758, -0.0031487843953073025, 0.007208373863250017, 0.0002171294909203425, 0.00341985747218132, -0.024184051901102066, -0.00037733366480097175, 0.02203281596302986, -0.009229494258761406, -0.0006180464988574386, -0.01265585795044899, -0.0029015657491981983, -0.0060763731598854065, -0.02810485102236271, 0.010157648473978043, -0.010547993704676628, -0.02458307147026062, 0.005568924359977245, -0.019586652517318726, -0.003580332500860095, -0.008787102997303009, 0.012794647365808487, -0.004070432856678963, -0.00811484269797802, 7.054675370454788e-05, 0.0074122208170592785, 0.006592496298253536, -0.02149500697851181, 0.011424101889133453, 0.007511975709348917, 0.027029234915971756, -0.03698737174272537, -0.02652612328529358, -0.010452575981616974, 0.017157837748527527, -0.013297758996486664, -0.010617388412356377, 0.02076636254787445, -0.0249473936855793, 0.009307563304901123, 0.013531966134905815, -0.011979259550571442, -0.003051198087632656, 0.026838399469852448, -0.011675657704472542, 0.0006326844450086355, -0.011155197396874428, -0.008826137520372868, -0.010131625458598137, -0.021286822855472565, -0.030915336683392525, 0.007308128755539656, -0.0018053463427349925, 0.01786913350224495, 0.01695832796394825, -0.0017955877119675279, 0.021408263593912125, -0.01894475147128105, 0.010010184720158577, -0.013792195357382298, -0.014711675234138966, 0.0039901952259242535, -0.005590610206127167, -0.033708471804857254, 0.016637377440929413, -0.007724497001618147, -0.002803979441523552, -0.00938563235104084, 0.00551254115998745, 0.011892516165971756, -0.002836508210748434, 0.018337547779083252, 0.021113336086273193, 0.004022723995149136, 0.000624010106548667, 0.019048843532800674, 0.011909864842891693, -0.015483691357076168, -0.009914766997098923, -0.013514617457985878, -0.015197438187897205, 0.0026109754107892513, 0.014434096403419971, -0.00204389076679945, -0.018129363656044006, -0.02815689705312252, -0.00204389076679945, 0.019031494855880737, -0.008231946267187595, -0.019638698548078537, 0.0076724509708583355, -0.026179149746894836, 0.01302018016576767, 0.01078220084309578, 0.004762210883200169, 0.0174961369484663, -0.00023420709476340562, 0.0088998693972826, 0.010652085766196251, 0.014000379480421543, -0.016064872965216637, 0.022570624947547913, -0.017574205994606018, 0.017305301502346992, 0.02113068476319313, -0.04510655254125595, -0.006098059006035328, 0.0036302099470049143, 0.0007871960988268256, 0.000160204159328714, 0.01592608354985714, -0.017608903348445892, 0.014251935295760632, 0.003001320641487837, 0.0020569022744894028, -0.011719029396772385, 0.005915897898375988, -0.009602490812540054, -0.014121820218861103, 0.008765417151153088, 0.005972281098365784, -0.01265585795044899, -0.01944786310195923, 0.013644732534885406, -0.004619084298610687, -0.0022574961185455322, 0.03171337768435478, 0.011736378073692322, 0.013766173273324966, 0.00028706633020192385, -0.005378088913857937, 0.0018606452504172921, 0.019604001194238663, -0.0020937679801136255, 0.01150217093527317, -0.00188883685041219, -0.014529514126479626, 0.00020994606893509626, -0.007043561432510614, 0.0018530552042648196, -0.005937583744525909, 0.013193666934967041, 0.0038514055777341127, -0.002192438580095768, -0.021824631839990616, 0.015787294134497643, -0.0019387142965570092, -0.023785032331943512, 0.02827833779156208, 0.0012534416746348143, 0.0044390917755663395, -0.008431455120444298, -0.006696588359773159, 0.006193476729094982, -0.0038448998238891363, -0.0349922738969326, 0.022449184209108353, 0.0070305499248206615, 0.0008029183372855186, 0.0069221206940710545, 0.031817469745874405, -0.004102961625903845, 0.00932491198182106, -0.010183671489357948, -0.015240809880197048, -0.006605507805943489, 0.012933436781167984, -0.010851595550775528, 0.012603811919689178, 0.01168433204293251, -0.01591740921139717, 0.0054951924830675125, -0.0038318883161991835, 0.015882711857557297, 0.007603056263178587, -0.016810864210128784, -0.0029384316876530647, 0.00206774496473372, 0.0041138045489788055, -0.027567042037844658, 0.012725252658128738, 0.004022723995149136, -0.0032854052260518074, -0.005278334021568298, 0.02440958470106125, 0.009064681828022003, 0.004404394421726465, 0.0015190932899713516, 0.0024765231646597385, 0.023351315408945084, 0.013228364288806915, 0.001694748643785715, -0.014815767295658588, 0.026803702116012573, -0.02059287577867508, 0.02343805879354477, 0.003582501085475087, -0.0006326844450086355, 0.013219689950346947, -0.0023659253492951393, -0.007780880201607943, 0.010079579427838326, 0.016359800472855568, -0.002682538703083992, -0.011476147919893265, -0.016325103119015694, 0.004094287287443876, 0.014425422064960003, 0.010391855612397194, 0.005560250021517277, -0.014390724711120129, -0.01804262027144432, 0.02028059959411621, -0.0035911754239350557, -0.001889921142719686, 0.0098106749355793, -0.0008349049603566527, -0.009524421766400337, -0.009663211181759834, -0.008986612781882286, 0.010209694504737854, -0.011467473581433296, 0.0020503965206444263, 0.00703922426328063, -0.0005516335950233042, -0.0011233265977352858, -0.008774091489613056, -0.008457478135824203, 0.0020558179821819067, -0.007897984236478806, -0.006896097678691149, 0.002069913549348712, 0.010669434443116188, 0.01132000982761383, -0.00563398189842701, -0.0028603626415133476, -0.023576848208904266, -0.0049140118062496185, -0.01568320207297802, 0.026907794177532196, -0.004144164267927408, -0.018268153071403503, -0.007377523463219404, -0.024079959839582443, 0.005226287990808487, -0.012239489704370499, 0.012222141027450562, -0.008826137520372868, 0.004198378883302212, 0.009862720966339111, 0.00848350115120411, -0.013783521018922329, 0.0022921934723854065, -0.015041300095617771, 0.014633606187999249, 0.013766173273324966, 0.0006185886450111866, 0.011389404535293579, -0.004250424914062023, -0.021633796393871307, 0.0070305499248206615, 0.0051742419600486755, -0.03289308771491051, 0.007759194355458021, -0.009489724412560463, 0.0012013956438750029, 0.002728078979998827, -0.022674717009067535, -0.018198758363723755, 0.012681880965828896, 0.028417127206921577, 0.007989064790308475, 0.019638698548078537, 0.017487462610006332, -0.006028664298355579, -0.002623986918479204, 0.009281540289521217, 0.0015830665361136198, -0.035946451127529144, -0.0054648322984576225, -0.0017305301735177636, 0.012950785458087921, -0.007668113801628351, -0.017045071348547935, -0.00022227987938094884, 0.00764642795547843, -0.004037904087454081, 0.004445597529411316, -0.01265585795044899, -0.007078258786350489, 0.006770320236682892, -0.0024136342108249664, 0.007052235770970583, 0.008669999428093433, -0.0017587217735126615, -0.017366021871566772, 0.004636432975530624, 0.007989064790308475, -0.0040357355028390884, -0.026855748146772385, -0.006792006082832813, 0.0018801625119522214, -0.009333586320281029, -0.02178993448615074, -0.005881200544536114, 0.009802000597119331, -0.010504622012376785, 0.012378279119729996, 0.0008034604834392667, 0.02229304611682892, 0.0072430712170898914, -0.015128043480217457, -0.009246842935681343, 0.004671130329370499, 0.022570624947547913, -0.026630215346813202, 0.014980579726397991, -0.01156289130449295, -0.005070149898529053, 0.006072035990655422, -0.014729023911058903, 0.015396947972476482, -0.010400529950857162, -0.013176318258047104, -0.019152935594320297, -0.02154705300927162, 0.004536678083240986, -0.0032290220260620117, -0.010383181273937225, 0.0075813704170286655, -0.014009053818881512, -0.006926457863301039, 0.009316237643361092, -0.0190141461789608, -0.0028104851953685284, 0.004174524452537298, 0.005447483621537685, -0.011510845273733139, -0.026595517992973328, 0.016359800472855568, 0.01474637258797884, 0.062212344259023666, 0.013844241388142109, 0.01678484119474888, -0.004220064729452133, -0.006805017590522766, -0.031990956515073776, 0.011649634689092636, -0.005469169467687607, 0.007034887094050646, 0.03435037285089493, -0.003077221103012562, -0.011528193950653076, 0.011719029396772385, 0.011797098442912102, -0.007173676509410143, 8.809873179416172e-06, -0.0007693052757531404, 7.102113158907741e-05, 0.003114087041467428, 0.011233266443014145, -0.0049443719908595085, 0.012872716411948204, -0.017166512086987495, 0.004909674637019634, -0.001601499505341053, -0.007568358909338713, 0.011831795796751976, -0.006583821959793568, 0.0028148223645985126, -0.027705831453204155, 0.013774847611784935, -0.011155197396874428, -0.038479357957839966, 0.004428248852491379, 0.0008912881021387875, 0.007655102293938398, -0.010790875181555748, 0.009012635797262192, 0.005794457159936428, -0.0018400436965748668, -0.013271735981106758, 0.0032442021183669567, 0.005074487067759037, 0.0064580440521240234, -0.024843301624059677, -0.012733926996588707, 0.02735885977745056, -0.005972281098365784, -0.0074122208170592785, 0.030204040929675102, 0.005378088913857937, -0.010096928104758263, -0.00523929949849844, 0.002975297626107931, -0.02154705300927162, -0.01367942988872528, 0.022986993193626404, -0.005291345529258251, -0.010365832597017288, -0.005738073959946632, -0.008197248913347721, -0.02421874925494194, 0.009802000597119331, 0.03865284472703934, -0.0029362631030380726, 0.029596837237477303, 0.0028625312261283398, 0.006713937036693096, -0.004092118702828884, 0.0035868382547050714, -0.005083161406219006, 0.007941355928778648, -0.0024136342108249664, -0.01773901842534542, -0.001006223144941032, -0.02161644771695137, -0.02538111060857773, -0.0015635492745786905, 0.0061674537137150764, -0.0032116733491420746, -0.008492175489664078, -0.0034090145491063595, 0.0021989443339407444, -0.012447673827409744, -0.006713937036693096, -0.012785973027348518, 0.0029666232876479626, 0.0014919859822839499, 0.012282861396670341, -0.010313786566257477, -0.00914275087416172, 0.0031683016568422318, -0.008344711735844612, 0.016203662380576134, -0.001418254105374217, -0.0048055825755000114, -0.0041636815294623375, -0.0035716581624001265, 0.0022336416877806187, -0.006943806540220976, -0.0024418258108198643, 0.011632286012172699, 0.00017877266509458423, -0.0073211402632296085, 0.0005543443257920444, -0.012707903981208801, -0.031227612867951393, -0.021165382117033005, 0.005083161406219006, 0.009151425212621689, 0.004376202821731567, 0.014945882372558117, 0.006696588359773159, 0.004430417437106371, 0.008696022443473339, 0.030412225052714348, 0.017235906794667244, 0.022726763039827347, 0.012438999488949776, -0.00880878884345293, -0.0013228363823145628, -0.003246370702981949, 0.018858008086681366, 0.004705827683210373, 6.814098014729097e-05, -0.004382708575576544, -0.0004768174549099058, 0.0031791445799171925, -0.010799549520015717, 0.018563080579042435, 0.0006234679603949189, -0.0041788616217672825, -0.009949464350938797, 0.022969644516706467, 0.00020642211893573403, 0.005156893283128738, 0.02217160537838936, -0.004909674637019634, -0.014902510680258274, -8.271962542494293e-06, -0.021529704332351685, 0.037091463804244995, 0.019846882671117783, 0.0037733365315943956, 0.013774847611784935, 0.0060156527906656265, -0.027168024331331253, 0.010574016720056534, 0.00968923419713974, -0.004230907652527094, 0.00539110042154789, 0.0017120973207056522, -0.018406942486763, 0.00548218097537756, -0.017765041440725327, 0.0037429763469845057, -0.012707903981208801, 0.034558556973934174, -0.030568363144993782, 0.016611354425549507, 0.03421158343553543, 0.01332378201186657, 0.013453897088766098, 0.004922686144709587, 0.012074677273631096, 0.0020373850129544735, -0.02475655823945999, 0.013653406873345375, -0.01096436195075512, 0.00118838413618505, -0.0036453900393098593, -0.0013325950130820274, -0.0068267034366726875, -0.004501980729401112, -0.0007205121219158173, -0.009654536843299866, -0.010122951120138168, 0.009533096104860306, -0.016316428780555725, -0.00481425691395998, 0.012872716411948204, 0.018441639840602875, 0.024114657193422318, 0.01125928945839405, -0.026682261377573013, -0.003593344008550048, -0.015015277080237865, 0.004282953683286905, -0.012395627796649933, 0.02718537300825119, 9.751852485351264e-05, 0.008847823366522789, 0.0016069209668785334, 0.000975862902123481, -0.019777487963438034, 0.02239713817834854, -0.012811996042728424, -0.013531966134905815, -0.027462951838970184, -0.011094477027654648, 0.006635867990553379, 0.004100793041288853, 0.011484822258353233, 0.0020937679801136255], "283ad8c4-c5d4-4113-9c45-6e42828c2bd6": [-0.025642314925789833, 0.026983976364135742, -0.007269844878464937, 0.042330171912908554, 0.03648113086819649, -0.009180582128465176, 0.004529991652816534, 0.006715844385325909, 0.013514600694179535, -0.002287608105689287, 0.040882986038923264, 0.034189753234386444, 0.008080118335783482, 0.036119334399700165, -0.026034262031316757, 0.020381193608045578, -0.021361058577895164, 0.03235062211751938, 0.022883618250489235, -0.0105750048533082, 0.036420829594135284, 0.0006529293023049831, -0.04911385104060173, -0.006293748505413532, -0.023697659373283386, 0.028973856940865517, -0.012557347305119038, 0.01031873282045126, -0.041395530104637146, -0.00031303861760534346, 0.01219555176794529, 0.00020751469128299505, 0.012685484252870083, 0.0034332964569330215, -0.011615170165896416, -0.05435989797115326, 0.02297406643629074, -0.03223002329468727, -0.01721547544002533, 0.030843136832118034, -0.006267367862164974, -0.011630244553089142, -0.021843453869223595, 0.009097670204937458, -0.05068163573741913, -0.0012154096039012074, -0.016974277794361115, 0.034370653331279755, 0.008577588014304638, -0.023893631994724274, 0.0035991198383271694, -0.045857686549425125, 0.02769249491393566, 0.04989774525165558, -0.002704050624743104, 0.005920646246522665, -0.001916389912366867, 0.0005149002536199987, -0.01744159869849682, -0.029757749289274216, -0.025883512571454048, 0.016009487211704254, -0.048390258103609085, -0.020456567406654358, -0.018376238644123077, 0.013167878612875938, 0.016069786623120308, 0.012647796422243118, -0.06421884894371033, -0.004918168764561415, 0.0029490171000361443, 0.029380876570940018, -0.0039835283532738686, 0.05053088814020157, 0.010620229877531528, 0.04003879427909851, 0.030797913670539856, -0.01858728751540184, -0.0008036777726374567, 0.005148060154169798, 0.030843136832118034, -0.03536559268832207, 0.009542378596961498, -0.016145162284374237, 0.009602678008377552, 0.026004111394286156, 0.014110056683421135, -0.04992789402604103, -0.0037291403859853745, 0.02018522098660469, 0.004533760249614716, -0.04015939310193062, -0.0167330801486969, -0.015014547854661942, 0.031024035066366196, 0.025476491078734398, -0.008238404057919979, -0.00025603684480302036, 0.022687645629048347, 0.014931635931134224, -0.008479601703584194, -0.014456778764724731, -0.015934113413095474, 0.03536559268832207, -0.0043905493803322315, -0.03838055953383446, 0.021587181836366653, 0.018722960725426674, -0.010635304264724255, 0.051435377448797226, 0.006335204467177391, -0.012670408934354782, -0.017908917739987373, -0.008615274913609028, -0.046309929341077805, -0.02051686681807041, -0.0033635753206908703, -0.010982026346027851, 0.009391630068421364, 0.017185326665639877, -0.021541956812143326, 0.012640259228646755, 0.00468450877815485, -0.008012281730771065, -0.03816951438784599, 0.011871442198753357, 0.00472219567745924, 0.0038290112279355526, 0.03014969453215599, -0.005536237731575966, 0.003832779824733734, 0.009044907987117767, -0.00472973333671689, 0.009655439294874668, 0.03256167098879814, 0.031506430357694626, 0.02497902140021324, 0.032471220940351486, -0.05212882161140442, 0.024285579100251198, -0.052701666951179504, -0.01724562607705593, -0.013522137887775898, 0.03699367493391037, -0.016612481325864792, 0.009225806221365929, -0.03108433447778225, 0.025521716102957726, 0.014132669195532799, -0.0066404701210558414, -0.017908917739987373, -0.05517394095659256, 0.008253478445112705, 0.0093690175563097, 0.06874130666255951, -0.005099066998809576, 0.015783365815877914, -0.025295592844486237, 0.027225174009799957, 0.017577271908521652, -0.0038893106393516064, -0.02517499402165413, -0.023139890283346176, 0.033104363828897476, -0.008163029327988625, 0.02122538536787033, 0.0565909780561924, 0.0637967512011528, -0.029863271862268448, 0.03280286863446236, 0.026983976364135742, 0.004575216211378574, 0.001446243142709136, -0.0041380454786121845, -0.01386885903775692, 0.0211500097066164, 0.01732099987566471, 0.04492304474115372, 0.04353616014122963, -0.02558201551437378, -0.03976744785904884, 0.01096695102751255, 0.018300864845514297, -0.031325533986091614, -0.001664828392677009, -0.0017232435056939721, 0.004043827764689922, 0.04450095072388649, -0.005841503385454416, 0.02717994898557663, -0.022672569379210472, -0.03144613280892372, 0.02330571413040161, 0.002862336579710245, 0.014599989168345928, 0.01665770635008812, -0.02855176106095314, -0.008411765098571777, -0.011125237680971622, -0.02929042838513851, -0.025039320811629295, 0.0028076902963221073, -0.007609029300510883, 0.0342802032828331, -0.043777357786893845, -0.01435125432908535, 0.018526988103985786, -0.020999262109398842, -0.005717135965824127, -0.01005492266267538, 0.04133523255586624, -0.008864009752869606, 0.009904175065457821, 0.013394001871347427, -0.001827825210057199, 0.0175169724971056, -0.02010984532535076, 0.010748365893959999, -0.01470551360398531, -0.007390443701297045, 0.028416087850928307, 0.017486821860074997, -0.020471641793847084, 0.00786153320223093, -0.04438035190105438, -0.02127060852944851, -0.017682796344161034, 0.018346089869737625, -0.026576954871416092, -0.006372891832143068, -0.0043792431242764, -0.017728019505739212, -0.014230655506253242, -0.008622813038527966, 0.016371283680200577, 0.026109635829925537, 0.030828062444925308, 0.0022913767024874687, -0.013687960803508759, -0.0029678605496883392, -0.002945248270407319, 0.03219987452030182, -0.009587602689862251, -0.07193717360496521, 0.015602466650307178, -0.023546911776065826, 0.01825563982129097, -0.0017826006514951587, 0.021285684779286385, 0.013461838476359844, -0.046822477132081985, -0.02974267303943634, 0.0017345496453344822, 0.01466782670468092, -0.02520514465868473, -0.009301180951297283, 0.029094455763697624, -0.010499631054699421, -0.008539901115000248, -0.005837734788656235, -0.006252293009310961, 0.05580708384513855, -0.019823424518108368, 0.03988804668188095, 0.003840317251160741, -0.015602466650307178, 0.013499525375664234, -0.030059244483709335, -0.0012455591931939125, 0.018451612442731857, 0.04703352227807045, -0.009994623251259327, -0.001827825210057199, 0.03795846551656723, 0.0367223285138607, 0.012459360994398594, -0.006082701031118631, -0.033255111426115036, -0.03792831674218178, 0.0032090581953525543, -0.027119649574160576, 0.007024878636002541, 0.042360320687294006, -0.004635515622794628, 0.03874235600233078, -0.02000432275235653, -0.021029412746429443, 0.013002055697143078, -0.06307315826416016, 0.0015979338204488158, 0.005302577279508114, -0.008147954940795898, 0.0007254770025610924, -0.02568753995001316, 0.008833860047161579, 0.026576954871416092, 0.004695815034210682, 0.02951655164361, 0.0017458557849749923, 0.047425467520952225, -0.00688920496031642, -0.0045450665056705475, -0.02933565340936184, 0.0074432059191167355, -0.00032717129215598106, 0.022702720016241074, 0.07121358066797256, 0.010205671191215515, -0.009715738706290722, -0.010552393272519112, -0.007205776870250702, -0.03669217973947525, 0.019642526283860207, -0.02956177480518818, 0.03207927569746971, -0.011607632040977478, -0.05354585871100426, -0.04130508005619049, -0.018722960725426674, -0.010228283703327179, 0.010529780760407448, -0.0019955330062657595, -0.03241091966629028, 0.007710784208029509, 0.02089373767375946, -0.019235504791140556, -0.010748365893959999, -0.022672569379210472, -0.020064622163772583, -0.02725532464683056, -0.0701884850859642, -0.017155176028609276, -0.029124604538083076, 0.0063691227696835995, -0.026154858991503716, -0.07067088037729263, -0.019265655428171158, -0.04896310344338417, 0.03406915441155434, -0.03022506833076477, -0.0006020517321303487, -0.027617119252681732, 0.003050772240385413, -0.03406915441155434, 0.018044592812657356, -0.013891471549868584, -0.02223539911210537, 0.014909024350345135, -0.033888258039951324, -0.012090027332305908, 0.0010166099527850747, 0.021496731787919998, 0.024195129051804543, -0.013198028318583965, -0.005106604658067226, 0.007006035186350346, -0.055023193359375, 0.020245520398020744, 0.0009553684503771365, 0.041365381330251694, -0.00017277187725994736, -0.022521821781992912, 0.041546277701854706, -0.0012483857572078705, 0.012172939255833626, -0.03319481387734413, 0.005061380099505186, 0.028310563415288925, 0.030104469507932663, -0.023139890283346176, 0.003672609571367502, 0.04531498998403549, -0.0026833228766918182, -0.007771083619445562, -0.017381299287080765, 0.033707357943058014, 0.032772716134786606, -0.0031506430823355913, -0.029456252232193947, 0.00715678371489048, -0.02855176106095314, 0.016748154535889626, -0.01625068485736847, -0.003844086080789566, 0.009602678008377552, -0.03620978444814682, 0.021692704409360886, 0.006146769039332867, -0.03494349494576454, 0.02134598419070244, -0.053153909742832184, 0.003911922685801983, 0.012067414820194244, -0.021059561520814896, -0.025551866739988327, 0.019416403025388718, 0.019431477412581444, -0.0022235398646444082, 0.01187897939234972, -0.00442446768283844, 0.030993886291980743, -0.031958676874637604, 0.007646716199815273, -0.03093358688056469, -0.0031167245469987392, -0.019717900082468987, -0.04579738527536392, -0.009052446112036705, 0.024737823754549026, 0.012346300296485424, 0.0012936103157699108, 0.0019974173046648502, 0.0012088143266737461, 0.05707337334752083, -0.010657916776835918, 0.02999894507229328, -0.024888573214411736, 0.03512439504265785, 0.012240775860846043, -0.01182621717453003, 0.013657812029123306, 0.028054291382431984, -0.005370414350181818, 0.014456778764724731, 0.04558633640408516, -0.004790032748132944, 0.006308823358267546, 0.005702061112970114, 0.034189753234386444, -0.010348882526159286, 0.01724562607705593, 0.020878663286566734, 0.01691397838294506, -0.0009223922388628125, -0.014991935342550278, 7.301878940779716e-05, -0.012097564525902271, 0.029456252232193947, -0.011637781746685505, 0.005257353186607361, -0.0012483857572078705, 0.0215268824249506, -0.03461185097694397, 0.025446342304348946, -0.01815011538565159, -0.009610215201973915, 0.0026644791942089796, 0.020200295373797417, 0.005860346835106611, -0.003263704478740692, -0.007458280771970749, -0.02089373767375946, -0.05788741260766983, -0.024300653487443924, -0.003448371309787035, 0.012798544950783253, 0.023109741508960724, -0.01620545983314514, 0.007458280771970749, -0.04413915425539017, -0.015414031222462654, 0.04419945180416107, 0.007021110039204359, -0.00256083975546062, 0.032772716134786606, -0.024195129051804543, 0.004134276881814003, 0.00667438842356205, 0.017667720094323158, 0.005660605151206255, -0.025310669094324112, 0.015052234753966331, 0.022853467613458633, 0.022039426490664482, -0.003614194691181183, 0.0093539422377944, -0.03798861429095268, 0.026682479307055473, -0.007002266589552164, 0.00010469952394487336, 0.03521484136581421, -0.054450348019599915, 0.03488319739699364, -0.021617330610752106, 0.04193822667002678, 0.010416719131171703, 0.07133417576551437, -0.005091529805213213, 0.025446342304348946, -0.0028811802621930838, -0.04175732657313347, -0.018014442175626755, 0.016778305172920227, -0.004737270530313253, 0.01370303612202406, 0.025702614337205887, 0.0058980342000722885, -0.022763019427657127, 0.02051686681807041, -0.0009586660889908671, -0.00020633697567973286, -0.006926892325282097, -0.0035162081476300955, -0.004435773938894272, -0.05212882161140442, 0.012240775860846043, -0.009376554749906063, 0.005758591461926699, -0.019823424518108368, 0.014720587991178036, -0.03331541270017624, -0.031325533986091614, -0.04606873169541359, 0.03144613280892372, 0.029215054586529732, 0.019024457782506943, -0.027933692559599876, -0.01833101361989975, 0.021587181836366653, 0.02926027774810791, -0.0005186689668335021, -0.020139995962381363, -0.009934324771165848, 0.02010984532535076, -0.0021142472978681326, -0.0012549810344353318, -0.0017939067911356688, -0.013069892302155495, -0.07205776870250702, -0.011012176051735878, 0.009052446112036705, 0.02755681984126568, -0.01569291576743126, 0.01851191185414791, 0.0022555741015821695, 0.006165612488985062, 0.0037310246843844652, 0.007710784208029509, 0.010348882526159286, -0.01810489222407341, -0.020682690665125847, 0.020366119220852852, -0.002508077770471573, -0.025370968505740166, 0.006531177554279566, -0.015240670181810856, -0.004774957895278931, 0.01561754196882248, 0.012444286607205868, 0.01572306640446186, -0.0008460758253931999, -0.004970930982381105, -0.011833755299448967, -0.017682796344161034, -0.004876713268458843, -0.025159919634461403, -0.036903224885463715, 0.010311195626854897, 0.00927856843918562, -0.02200927771627903, -0.006527408957481384, -0.004627977963536978, -0.006045013666152954, 0.014969322830438614, 0.03201897442340851, -0.014177894219756126, -0.004948318470269442, 0.001980458153411746, -0.00026969844475388527, -0.011758380569517612, -0.03973729908466339, -0.031325533986091614, 0.010770978406071663, -0.029983870685100555, -0.02130075916647911, 0.015270819887518883, 0.000756097782868892, -0.00841930229216814, -0.023969007655978203, -0.0016337365377694368, 0.01848176307976246, -0.005841503385454416, -0.004269950557500124, -0.01732099987566471, -0.02616993524134159, 0.002766234567388892, -0.012421674095094204, -0.04003879427909851, 0.014230655506253242, 0.027164874598383904, 0.00460159732028842, 0.04703352227807045, 0.02297406643629074, -0.0013228178722783923, 0.014841186814010143, 0.020833438262343407, -0.02003447152674198, 0.022702720016241074, 0.026004111394286156, 0.008743410930037498, 0.000936053809709847, 0.00942177977412939, 0.0494454987347126, 0.0211500097066164, 0.006501027848571539, 0.016552181914448738, -0.02591366320848465, 0.005415638908743858, -0.029802972450852394, 0.009595139883458614, -0.04428990185260773, -0.04287286475300789, -0.005743516609072685, -0.03216972574591637, 0.012014653533697128, -0.014758275821805, -0.012625184841454029, -0.008321315981447697, -0.0031091871205717325, -0.014675363898277283, 0.044561248272657394, -0.05490259453654289, 0.02966729924082756, -0.007514811120927334, -0.011984503827989101, -0.028973856940865517, 0.009210731834173203, 0.008554975502192974, 0.0047071208246052265, 0.005344033241271973, -0.025642314925789833, -0.013394001871347427, -0.0038233580999076366, 0.00872079934924841, 0.005494781769812107, -0.012512123212218285, -0.012067414820194244, 0.03382795676589012, -0.015707990154623985, -0.0013491988647729158, 0.033375710248947144, -0.015089921653270721, -0.0011428619036450982, 0.04754606634378433, 0.005690754856914282, 0.010386569425463676, -0.011539795435965061, 0.0008404227555729449, 0.0020690227393060923, -0.005317652132362127, 0.015662766993045807, 0.00733391335234046, -0.005283733829855919, 0.030089395120739937, 0.013409076258540154, 0.009911712259054184, -0.02111986093223095, -0.01126844808459282, 0.014735663309693336, 0.012542272917926311, 0.00016217237862292677, -0.0039006166625767946, 0.01280608307570219, -0.0035162081476300955, -0.003412568476051092, -0.022597195580601692, 0.017984293401241302, 0.011238298378884792, 0.016145162284374237, 0.026893528178334236, 0.02725532464683056, -0.035968586802482605, 0.01248951070010662, 0.009564990177750587, -0.007997206412255764, -0.017260700464248657, 0.01587381400167942, 0.010107684880495071, -0.025009172037243843, -0.011072475463151932, -0.006655544973909855, 0.002453431487083435, -0.027978915721178055, -0.01144934631884098, -0.009595139883458614, -0.011592557653784752, 0.005615380592644215, -0.0045827534049749374, -0.02439110353589058, 0.008042431436479092, -0.030586864799261093, -0.011426733806729317, 0.004756114445626736, -0.020351042971014977, -0.006090238224714994, 0.00019667964079417288, -0.0011598210548982024, -0.040882986038923264, -0.016687855124473572, 0.002519383793696761, -0.04323466122150421, -0.022928843274712563, -0.0015602466883137822, -0.02089373767375946, -0.041063882410526276, 0.015044697560369968, -0.006587708368897438, -0.013597512617707253, 0.01366534922271967, 0.0074243624694645405, -0.005864115431904793, 0.0049784681759774685, 0.00028971972642466426, -0.007944444194436073, -0.01680845394730568, 0.01762249693274498, 0.001562130986712873, 0.006191993597894907, -0.0003855863178614527, 0.019642526283860207, 0.004190807696431875, 0.03654142841696739, 0.009414241649210453, 0.02822011336684227, -0.005536237731575966, -0.0167330801486969, -0.01929580420255661, 0.04709382355213165, 0.012549810111522675, 0.004198344890028238, 0.02297406643629074, 0.03928505256772041, -0.006018632557243109, -0.004375474527478218, -0.030029095709323883, -0.007439437322318554, -0.013002055697143078, 0.014411553740501404, 0.03862175717949867, 0.01279100775718689, 0.026109635829925537, -0.012873919680714607, -0.022883618250489235, -0.009052446112036705, -0.005747285671532154, -0.005977177061140537, 0.050319839268922806, 0.04603858292102814, -0.01587381400167942, -0.02330571413040161, 0.02424035407602787, -0.00512167951092124, -0.0029791665729135275, -0.04757621884346008, -0.003808283247053623, 0.035335440188646317, 0.03055671602487564, 0.015587392263114452, -0.006139231380075216, 0.030662238597869873, -0.012014653533697128, 0.025853363797068596, -0.006338973063975573, -0.01818026602268219, 0.04501349478960037, -0.01944655366241932, -0.018300864845514297, 0.013552287593483925, 0.031144633889198303, -0.002287608105689287, 0.019582226872444153, 0.023471537977457047, 0.004288794007152319, -0.01291914377361536, -0.033375710248947144, -0.0002939595142379403, -0.015858739614486694, -0.02616993524134159, -0.015436643734574318, 0.00594702735543251, -0.01184129249304533, -0.014373866841197014, -0.006779912393540144, -0.006847749464213848, 0.00868311244994402, -0.053485557436943054, 0.016642631962895393, 0.009572528302669525, -0.0030733845196664333, 0.01243674848228693, 0.0031091871205717325, -0.01243674848228693, 0.012391524389386177, 0.020366119220852852, 0.004888019058853388, -0.04703352227807045, -0.0030884593725204468, 0.005607842933386564, 0.015052234753966331, -0.0034596773330122232, 0.004251107107847929, -0.02999894507229328, 0.029019080102443695, -0.005980945657938719, 0.021918827667832375, -0.0446215495467186, -0.002496771514415741, -0.02859698422253132, -0.025627240538597107, 0.0007028647232800722, 0.015934113413095474, 0.017501898109912872, -0.0005893323104828596, 0.019310878589749336, -0.02023044414818287, 0.02573276497423649, -0.020682690665125847, 0.040913134813308716, -0.017170250415802002, -0.0069193546660244465, -0.026079485192894936, -0.004168195184320211, -0.00642188498750329, -0.02558201551437378, -0.009233344346284866, 0.031506430357694626, 0.01193174161016941, -0.006587708368897438, 0.009338867850601673, -0.02576291374862194, -0.025476491078734398, -0.01617531105875969, 0.004198344890028238, 0.016929052770137787, -0.017984293401241302, -0.0038893106393516064, -0.010273508727550507, -0.0093539422377944, 0.020200295373797417, 0.02692367695271969, -0.013574900105595589, -0.00025933448341675103, -0.031807929277420044, 0.03922475129365921, 0.000767403922509402, 0.021014336496591568, 0.0006326725124381483, -0.017170250415802002, 0.02553679049015045, 0.028536686673760414, 0.03832026198506355, -0.01087650191038847, 0.0031317993998527527, 0.028762808069586754, -0.017788318917155266, 0.00011535791418282315, -0.005830197129398584, 0.0040136780589818954, -0.05134493112564087, 0.009120282717049122, -0.007454512175172567, -0.002176431007683277, 0.01470551360398531, -0.015165296383202076, -0.002555186627432704, -0.017969217151403427, -0.01189405471086502, -0.049535948783159256, -0.006753531750291586, -0.02695382758975029, -0.05806831270456314, -0.0019408866064622998, 0.02677292935550213, 0.013635199517011642, 0.008298703469336033, -0.013574900105595589, -0.017607420682907104, -0.03560679033398628, 0.028385937213897705, 0.024300653487443924, 0.031657177954912186, 0.02368258498609066, -0.011064938269555569, -0.0048239510506391525, -0.030466265976428986, 0.006572633516043425, 0.009911712259054184, -0.002159471856430173, 0.02003447152674198, -0.020305819809436798, -0.008057505823671818, -0.010951876640319824, 0.019657600671052933, 0.010228283703327179, 0.024360952898859978, 0.007748471572995186, 0.025883512571454048, -0.01977819949388504, -0.017577271908521652, -0.01691397838294506, 0.00663670152425766, -0.015934113413095474, -0.03153657913208008, -0.017170250415802002, 0.020200295373797417, -0.033375710248947144, -0.00945946667343378, -0.011238298378884792, -0.006870361510664225, -0.0007565689156763256, -0.006987191736698151, -0.01759234629571438, -0.0004407037340570241, -0.008524825796484947, 0.026049336418509483, 0.025597089901566505, -0.02264242060482502, -0.0018457266269251704, 0.01802951656281948, 0.010130297392606735, -0.019175205379724503, 0.011871442198753357, 0.01932595483958721, 0.042028672993183136, -0.017426522448658943, -0.007047491148114204, 0.010559930466115475, -0.0009614925947971642, -0.0022913767024874687, 0.015135146677494049, -0.021948978304862976, -0.009904175065457821, 0.000811686331871897, -0.01085389032959938, 0.020049545913934708, -0.021436432376503944, 0.02015507034957409, 0.0235318373888731, -0.005882959347218275, -0.0342802032828331, 0.02327556349337101, 0.024918721988797188, 0.04643052816390991, -0.03521484136581421, -0.020245520398020744, -0.026335757225751877, 0.01691397838294506, -0.016295909881591797, 0.01858728751540184, 0.000171476393006742, 0.044259753078222275, 0.012150326743721962, 0.015783365815877914, -0.02408960647881031, 0.021994201466441154, -0.017969217151403427, -0.005980945657938719, -0.035636939108371735, 0.0059244148433208466, 0.027617119252681732, -0.022250475361943245, -0.02616993524134159, 0.0009534840937703848, -0.0019088524859398603, 0.008374077267944813, -0.01388393435627222, -0.010944339446723461, -0.01087650191038847, 0.0005393968895077705, -0.01602456346154213, -0.004096589516848326, 0.0004937012563459575, 0.0219339020550251, 0.033586759120225906, 0.014268343336880207, -0.01579844020307064, 0.0014669711235910654, -0.008532363921403885, -0.023878557607531548, -0.003678262699395418, 0.05662112683057785, -0.0014066717121750116, -0.04492304474115372, -0.011170461773872375, 0.014517078176140785, -0.03726502135396004, -0.009135357104241848, -0.029908496886491776, -0.011419196613132954, -0.01784861832857132, 0.008916771970689297, -0.012406599707901478, 0.00344460248015821, 0.02776786871254444, 0.004450848791748285, -0.020938962697982788, 0.0023931320756673813, -0.01784861832857132, -0.0017665836494415998, -0.029697449877858162, -0.011683006770908833, -0.034521400928497314, -0.02680307812988758, 0.019868649542331696, -0.010899114422500134, 0.051767025142908096, -0.022114800289273262, -0.005815122276544571, -0.008879085071384907, 0.00832885317504406, -0.0016761345323175192, 0.011909129098057747, 0.006018632557243109, 0.02342631295323372, 0.0022254243958741426, 0.019612375646829605, -0.010273508727550507, -0.04845055937767029, 0.017125027254223824, 0.035968586802482605, 0.0003928882069885731, 0.02182837948203087, -0.030993886291980743, -0.02680307812988758, -0.004616672173142433, 0.01944655366241932, -0.01640143431723118, -0.015376344323158264, -0.004262412898242474, 0.0013435457367449999, -0.019310878589749336, 0.00030149694066494703, -0.005845271982252598, -0.0029848197009414434, 0.015135146677494049, -0.005931952502578497, -0.03617963194847107, -0.05966624617576599, -0.010326270014047623, -0.01891893334686756, 0.007439437322318554, -0.022883618250489235, -0.024255428463220596, 0.016929052770137787, -0.003284432226791978, -0.012873919680714607, -0.030436117202043533, -0.02063746564090252, -0.01182621717453003, 0.012964368797838688, 0.022506747394800186, -0.007394212763756514, -0.0010005929507315159, -0.015843665227293968, -0.0016855563735589385, 0.005882959347218275, -0.0060600885190069675, -0.03014969453215599, 0.009791113436222076, 0.02558201551437378, 0.0038817732129245996, -0.017577271908521652, 0.02137613296508789, -0.008781098760664463, 0.010296120308339596, 0.0030300442595034838, 0.005777435377240181, 0.0009949399391189218, -0.0011268447851762176, 0.009904175065457821, -0.015994412824511528, 0.0015866276808083057, -0.0042548757046461105, 0.028943706303834915, -0.007168089970946312, 0.020697765052318573, 0.013801022432744503, 0.01851191185414791, -0.004432004876434803, 0.003542589023709297, -0.003342847339808941, -0.006964579224586487, -0.013416614383459091, -0.001147572766058147, -0.027918616309762, 0.004364168271422386, -0.003497364465147257, -0.004213419742882252, 0.005849040579050779, -0.01569291576743126, -0.02632068283855915, 0.024707674980163574, 0.007997206412255764, 0.0036462286952883005, 0.0062146056443452835, -0.026592031121253967, 0.01807474158704281, 0.04748576879501343, 0.0012050456134602427, 0.009180582128465176, 0.016265759244561195, -0.02059224061667919, -0.017486821860074997, -0.0009040197473950684, 0.00759395444765687, 0.039013706147670746, -0.023637359961867332, 0.015248208306729794, 0.01818026602268219, -0.016115011647343636, 0.010454406961798668, -0.013808559626340866, 0.011464421637356281, 0.0020143764559179544, 0.03880265727639198, 0.003495480166748166, -0.026456356048583984, -0.04049104079604149, -0.00594702735543251, 0.0069796540774405, 0.030737614259123802, 0.00472219567745924, 0.012512123212218285, 0.0011136543471366167, 0.024526776745915413, 0.028340712189674377, 0.005310114938765764, 0.011539795435965061, -0.009414241649210453, 0.000940293597523123, -0.00046520036994479597, -0.013597512617707253, 0.032923467457294464, -0.0045827534049749374, -0.00542694516479969, -0.018089815974235535, 0.014735663309693336, -0.016823530197143555, -0.033375710248947144, -0.025144845247268677, -0.006825136952102184, 0.0018381892004981637, 0.02368258498609066, 0.004488535691052675, 0.009308718144893646, 0.007413056213408709, 0.007688172161579132, -0.014200505800545216, 0.013130191713571548, -0.050500739365816116, -0.005038767587393522, -0.004793801344931126, -3.371230559423566e-05, 0.018768183887004852, 0.007816308178007603, 0.025310669094324112, 0.031988825649023056, -0.012157863937318325, -0.006855286657810211, 0.015451718121767044, -0.044862743467092514, 0.013605049811303616, 0.020938962697982788, -0.023637359961867332, -0.00616184389218688, -0.025461416691541672, 0.019280729815363884, -0.02342631295323372, -0.015361269004642963, 0.00667438842356205, 0.019687751308083534, 0.011939278803765774, 0.0159491878002882, 0.018526988103985786, 0.0034408338833600283, 0.015496943145990372, -0.010567467659711838, -0.005189516115933657, -0.0024515469558537006, -0.007914294488728046, -0.01665770635008812, 0.009112745523452759, 0.009919249452650547, -0.014848724938929081, 0.000677425938192755, -0.006557558663189411, -0.021436432376503944, -0.015828588977456093, -0.013250790536403656, 0.01962745189666748, -0.010303658433258533, -0.005148060154169798, -0.01370303612202406, 0.006794987246394157, 0.02096911333501339, 0.01680845394730568, 0.0029622074216604233, -0.0005478764651343226, 0.0007325433543883264, 0.007058797404170036, 0.00344460248015821, 0.007137940265238285, 0.014132669195532799, 0.009195656515657902, 0.007247232832014561, -0.0044093928299844265, 0.006787450052797794, -0.01343922596424818, -0.006361585576087236, 0.017049651592969894, -0.010899114422500134, -0.012466898187994957, -0.017908917739987373, -0.013100042007863522, 0.004318943712860346, 0.014652751386165619, -0.0052309720776975155, -0.006685694679617882, 0.006557558663189411, -0.017200401052832603, 0.02721009962260723, -0.015383881516754627, 0.012414136901497841, 0.02936580218374729, -0.0024930029176175594, 0.00340691558085382, 0.009919249452650547, -0.0215268824249506, -0.0005728441756218672, -0.01576828956604004, -0.013039742596447468, 0.013198028318583965, 0.032109424471855164, 0.00841930229216814, -0.009346405044198036, -0.0461893305182457, -0.0017298386665061116, 0.010250896215438843, -0.021421357989311218, 0.019657600671052933, 0.03617963194847107, -0.024029307067394257, 0.03726502135396004, -0.030873287469148636, -0.0018768184818327427, 0.0015366922598332167, 0.0026173703372478485, -0.005472169723361731, -0.025566941127181053, 0.043445710092782974, 0.005475938320159912, 0.008464526385068893, -0.012248313054442406, -0.004986005835235119, -0.01379348523914814, -0.006960810627788305, 0.0032919696532189846, 0.018828483298420906, -0.00420965114608407, 0.020984187722206116, -0.010725753381848335, -0.01024335902184248, 0.002928289119154215, 0.033526461571455, -0.05915370211005211, 0.008012281730771065, 0.014954248443245888, 0.005302577279508114, -0.017833543941378593, 0.012617646716535091, -0.01807474158704281, -0.01625068485736847, 0.014464315958321095, 0.03892325609922409, -0.007281151134520769, 0.0038026301190257072, -0.005604074336588383, -0.007228389382362366, 0.009715738706290722, -0.01429849211126566, 0.015994412824511528, -0.0019154477631673217, 8.238168811658397e-05, -0.017939068377017975, 0.0017043999396264553, 0.001526328269392252, -0.01130613498389721, -0.010122760199010372, -0.016853678971529007, -0.003964684903621674, 0.021361058577895164, -0.02803921513259411, -0.016672780737280846, 0.024255428463220596, 0.0010477019241079688, 0.007771083619445562, 0.010273508727550507, -0.02695382758975029, 0.030496416613459587, 0.0052309720776975155, 0.03289331495761871, 0.027375921607017517, -0.01228600088506937, -0.006866592913866043, 0.03919460251927376, 0.005068917293101549, -0.02051686681807041, -0.004251107107847929, -0.019356103613972664, 0.008585125207901001, -0.015067310072481632, -0.013107579201459885, 0.01833101361989975, -0.0007782389875501394, -0.02517499402165413, 0.009067520499229431, 0.021255534142255783, 0.00015981693286448717, 0.015210520476102829, -0.02286854386329651, -0.011728230863809586, -0.007122865412384272, 0.01579844020307064, 0.03988804668188095, -0.03204912692308426, -0.009323792532086372, -0.007725859060883522, 0.003691453253850341, -0.022763019427657127, 0.004220957402139902, 0.0042661819607019424, 0.008441914804279804, 0.011110162362456322, -0.02837086282670498, 0.023592136800289154, 0.03934535011649132, 0.011253373697400093, -0.020652540028095245, -0.019642526283860207, 0.006169381085783243, 0.007070103194564581, 0.009783576242625713, -0.00020739692263305187, 0.0030300442595034838, 0.007616566494107246, 0.0035407047253102064, -0.0028303025756031275, 0.0011871441965922713, -0.012873919680714607, -0.008539901115000248, -0.027541745454072952, -0.0022970298305153847, 0.014607527293264866, -0.009474541060626507, -0.01810489222407341, 0.01531604491174221, -0.052400168031454086, 0.029787898063659668, 0.0018297096248716116, -0.01141165941953659, -0.016054712235927582, -0.0350339449942112, -0.0016393896657973528, -0.0307074636220932, -0.010348882526159286, 0.022024352103471756, -0.017712945118546486, -0.037717267870903015, 0.028581909835338593, 0.015029622241854668, -0.001304916455410421, -0.018300864845514297, 0.004910631570965052, -0.0019229851895943284, -0.0035105550196021795, 0.00929364375770092, -0.013672886416316032, 0.016672780737280846, 0.015934113413095474, 0.0007414940628223121, -0.0454355888068676, -0.008856472559273243, -0.0034408338833600283, -0.030511491000652313, 0.010198133997619152, 0.010130297392606735, 0.012519660405814648, -0.002862336579710245, -0.010228283703327179, 0.012723171152174473, 0.013725648634135723, -0.004692045971751213, 0.01628083549439907, 0.004024984315037727, -0.011471958830952644, 0.0016506958054378629, -0.02051686681807041, 0.005140522960573435, 0.013409076258540154, 0.01447939034551382, 0.032320473343133926, 0.009474541060626507, 0.0023855946492403746, 0.017109951004385948, 0.004337787162512541, 0.00015993470151443034, -0.021014336496591568, 0.011690543964505196, -0.02989342249929905, 0.006689463276416063, -0.0011937394738197327, -0.02740607224404812, 0.006501027848571539, 0.0007622219854965806, 0.010137834586203098, 0.02134598419070244, 0.006994728930294514, -0.0019371178932487965, -0.008313777856528759, -0.028084440156817436, -0.01698935218155384, 0.010733291506767273, 0.0020369887351989746, -0.013175416737794876, 0.008178104646503925, -0.0105750048533082, -0.02208465151488781, 0.017818469554185867, 0.026712629944086075, -0.010454406961798668, -0.0004927590489387512, 0.01754712127149105, -0.01724562607705593, -0.015587392263114452, 0.0060525513254106045, 0.0006383255822584033, -0.002737969160079956, 0.015813514590263367, 0.006090238224714994, 0.0037178341299295425, 0.00516690406948328, -0.008592663332819939, 0.0004993543261662126, 0.008087655529379845, -0.030586864799261093, 0.015127609483897686, -0.03602888435125351, -0.0035331672988831997, 0.009655439294874668, 0.009504690766334534, 0.015994412824511528, -0.005913108587265015, -0.0008399516227655113, 0.0024044380988925695, 0.012090027332305908, -0.00979865062981844, 0.013288477435708046, 0.005547543987631798, 0.024285579100251198, -0.021918827667832375, -0.017577271908521652, 0.02368258498609066, 0.006289979908615351, -0.020094770938158035, -0.0034219902008771896, 0.001130613498389721, 0.0006901453598402441, -0.000507362827192992, -0.003293854184448719, 0.00032505139824934304, 0.004643052816390991, 0.012421674095094204, -0.01919027976691723, 0.011419196613132954, -0.0064671095460653305, 0.005807585082948208, 0.0057623605243861675, -0.017758170142769814, -0.015466793440282345, -0.005743516609072685, 0.0029056768398731947, 0.01123076118528843, 0.01182621717453003, 0.01840638928115368, -0.018873708322644234, 0.0013171647442504764, 0.041395530104637146, 0.035003796219825745, -0.005340264644473791, -0.011260910890996456, 0.020139995962381363, -0.008012281730771065, 0.01579844020307064, -0.00806504301726818, 0.0019446553196758032, -0.010590080171823502, 0.04480244591832161, 0.006715844385325909, 0.013318627141416073, -0.0027530440129339695, 0.016084862872958183, 0.004009909462183714, 0.005083992145955563, 0.01024335902184248, 0.0042548757046461105, 0.0042360322549939156, -0.006908048875629902, 0.015142683871090412, 0.0029791665729135275, -0.006568864453583956, -0.010688066482543945, 0.0028774114325642586, -0.027225174009799957, 0.007070103194564581, -0.020803289487957954, -0.017743095755577087, -0.010190596804022789, -0.00472973333671689, 0.049385201185941696, -0.007823845371603966, 0.017788318917155266, 0.0033824187703430653, 0.010718216188251972, 0.009512228891253471, -0.009059983305633068, -0.012595035135746002, 0.03783786669373512, -0.014358791522681713, 0.004891788121312857, -0.010808665305376053, 0.003454024437814951, 0.004062671214342117, -0.02330571413040161, 0.0030432348139584064, 0.008449451997876167, 0.02023044414818287, 0.012218163348734379, -0.005411870311945677, -0.01035641971975565, -0.028189964592456818, -0.0002089279587380588, 0.007186933420598507, -0.01483364962041378, -0.010710678994655609, -0.017637571319937706, -0.014909024350345135, -0.008788635954260826, 0.006561327259987593, -0.004612903110682964, -0.004658127669245005, 0.014064832590520382, 0.0016780189471319318, -0.020848514512181282, 0.011027250438928604, -0.016522033140063286, 0.00920319464057684, -0.000684492290019989, 0.016084862872958183, -0.00988909974694252, 0.008562513627111912, 0.009881562553346157, 0.005065148696303368, -0.01843653805553913, -0.006090238224714994, -0.0004204469150863588, -0.019280729815363884, 0.0049407812766730785, -0.011811142787337303, -0.003893079236149788, 0.011064938269555569, -0.00446215458214283, 0.023441387340426445, 0.00028689319151453674, 0.028129665181040764, -0.013499525375664234, -0.0009676167392171919, -0.0017430292209610343, -0.011863905005156994, -0.00516690406948328, -0.041847776621580124, -0.014630138874053955, 0.0015150221297517419, 0.05692262202501297, 0.017381299287080765, 0.025235293433070183, 0.021014336496591568, 0.0038308955263346434, -0.012941756285727024, 0.00615430623292923, 0.0004496544133871794, 0.009572528302669525, 0.0035218612756580114, 0.014652751386165619, -0.018828483298420906, 0.019084757193922997, -0.00011912662739632651, -0.027345772832632065, 0.024843348190188408, 0.019310878589749336, -0.010936801321804523, -0.005803816020488739, 0.01092926412820816, 0.0009407646721228957, 0.025597089901566505, -0.024602150544524193, -0.01609993726015091, -0.012263388372957706, 0.01067299209535122, -0.0053666457533836365, -0.0004946434055455029, 0.010499631054699421, 0.0207128394395113, 0.01863251067698002, 0.006614089012145996, 0.0056869862601161, 0.012414136901497841, -0.02066761627793312, 0.033737506717443466, 0.004733501933515072, 0.005487244576215744, -0.013461838476359844, 0.017185326665639877, 0.014660288579761982, -0.018195340409874916, -0.003757405560463667, 0.015059771947562695, -0.0021915058605372906, 0.006165612488985062, 0.005163135007023811, -0.0038780043832957745, 0.009361480362713337, -0.005619149189442396, -0.053485557436943054, 0.012836232781410217, -0.01466782670468092, 0.01318295393139124, -0.007145477458834648, -0.014012070372700691, 0.016446657478809357, 0.008049968630075455, -0.008351465687155724, -0.0029584388248622417, -0.01444170344620943, 0.0026343294885009527, -0.021541956812143326, -0.0017816585022956133, -0.010582542978227139, -0.004115433432161808, 0.009670514613389969, -0.026667404919862747, -0.004631747025996447, 0.008132879622280598, 0.0033390787430107594, -0.013642736710608006, 0.005031230393797159, -0.009730814024806023, -0.010514706373214722, -0.00128041987773031, 0.001670481520704925, 0.052370019257068634, 0.01724562607705593, -0.00464682187885046, 0.0005276196752674878, 0.0026456357445567846, 0.010492093861103058, -0.01932595483958721, 0.019944023340940475, 0.0033334256149828434, 0.004175732843577862, 0.001872107619419694, 0.00020904572738800198, -0.017049651592969894, -0.009384091943502426, 0.0005125448224134743, -0.003542589023709297, -0.001747740083374083, 0.0012323687551543117, -0.006007326766848564, -0.0036236164160072803, -0.010982026346027851, 0.0048427945002913475, -0.008080118335783482, 0.00920319464057684, 0.012067414820194244, 0.014155281707644463, 0.02487349696457386, 0.009956936351954937, 0.015677841380238533, 0.02880803309381008, 0.014464315958321095, -0.00924088153988123, -0.0036820315290242434, -0.017728019505739212, -0.008313777856528759, 0.008539901115000248, -0.006663082633167505, 0.00829116627573967, -0.004884250462055206, -0.010740828700363636, 0.011042325757443905, -0.0016893250867724419, 0.0034935958683490753, -0.021466583013534546, 0.016537107527256012, -0.014110056683421135, -0.010183059610426426, 0.007130402605980635, -0.015398956835269928, -0.032772716134786606, -0.0006543425843119621, -0.005072685889899731, -0.008615274913609028, 0.012677946127951145, 0.015451718121767044, 0.019763125106692314, -0.002003070432692766, 0.025521716102957726, -0.020426418632268906, 0.003128030803054571, 0.00538172060623765, 0.029622074216604233, 0.0007250059279613197, 0.029637150466442108, 0.03765696659684181, 0.009067520499229431, -0.008954458869993687, -0.01769787073135376, -0.015557242557406425, -0.03174762800335884, 0.0024873497895896435, 0.013552287593483925, 0.018376238644123077, 0.011185536161065102, 0.006433191243559122, -0.01792399398982525, -0.00424733804538846, 0.022099725902080536, -0.01089157722890377, -0.019205356016755104, 0.018119966611266136, -0.008178104646503925, 0.00793690700083971, 0.0059432582929730415, 0.009715738706290722, -0.01698935218155384, -0.007488430477678776, 0.011426733806729317, 0.00723969517275691, 0.003348500467836857, 0.006866592913866043, 0.014803499914705753, -0.0046882773749530315, -0.012738245539367199, 0.008193179033696651, -0.003923228941857815, -0.02609456144273281, 0.0017948489403352141, -0.005106604658067226, 0.010024772956967354, -0.00047579986858181655, -0.012052340433001518, 0.008343927562236786, 0.0007834209827706218, -0.01423819363117218, 0.026185009628534317, 0.0033013916108757257, -0.0007589243468828499, 0.019838498905301094, -0.0023686352651566267, -0.03862175717949867, 0.005038767587393522, -0.0015498826978728175, 0.013250790536403656, 0.015429106540977955, 0.001980458153411746, 0.00832885317504406, -0.02137613296508789, -0.0366620272397995, 0.010868964716792107, -0.0016751923831179738, 0.020396267995238304, 0.00434155622497201, -0.0011711271945387125, 0.01569291576743126, 0.02832563780248165, -0.007043722551316023, -0.015112534165382385, -0.021722855046391487, -0.001451896270737052, -0.0001860801421571523, 0.009828800335526466, 0.0022461521439254284, -0.06123403087258339, 0.000717468501534313, 0.0017976755043491721, 0.0247227493673563, -0.010529780760407448, -0.018753109499812126, 0.01825563982129097, -0.01028104592114687, 0.045827534049749374, -0.011645319871604443, 0.016748154535889626, 0.02859698422253132, 0.007390443701297045, 0.016160236671566963, 0.009504690766334534, -0.004609134513884783, 0.005125448107719421, 0.025672465562820435, 0.01617531105875969, -0.0005252641858533025, 0.0359082855284214, 0.0038365486543625593, -0.007051259744912386, -0.001683671958744526, -0.009429316967725754, 0.010348882526159286, -0.0037121812347322702, -0.02342631295323372, 0.021074635908007622, -0.02338108792901039, -0.0013077430194243789, 0.005773666314780712, 0.010559930466115475, 0.012391524389386177, 0.021165085956454277, 0.01825563982129097, -0.010552393272519112, -0.013431688770651817, -0.013996995985507965, -2.9089744202792645e-05, -0.007514811120927334, -0.014110056683421135, -0.014464315958321095, 0.018526988103985786, 0.0007612797780893743, 0.015677841380238533, 0.025793064385652542, -0.014863799326121807, -0.016491882503032684, 0.005313883535563946, -0.0005596536793746054, 0.00879617314785719, -0.016868753358721733, 0.008027356117963791, 0.0022970298305153847, 0.004021215718239546, -0.007386675104498863, 0.00945946667343378, -0.02502424642443657, 0.003672609571367502, -0.0012596918968483806, -0.003365459619089961, 0.004473460838198662, 0.01985357329249382, 0.0001221298152813688, -0.02051686681807041, -0.00924088153988123, -0.0036292695440351963, 0.013748260214924812, 0.020396267995238304, -0.017411448061466217, 0.016341134905815125, -0.008268553763628006, -0.006949504371732473, 0.0008672748226672411, -0.011328747496008873, -0.007164320908486843, -0.019235504791140556, 0.004262412898242474, 0.007405518554151058, 0.009956936351954937, -0.02089373767375946, 0.008509751409292221, -0.0005577693227678537, -0.01780339516699314, 0.020984187722206116, -0.019009381532669067, 0.0046694339253008366, 0.010725753381848335, -0.010258433409035206, -0.02137613296508789, -0.006173150148242712, -0.010145371779799461, -0.005453325808048248, 0.00840422697365284, 0.006542483810335398, -0.00715678371489048, -0.01001723576337099, -0.010002161376178265, -0.01132121030241251, 0.021798228845000267, -0.008961996994912624, 0.026441281661391258, -0.017893843352794647, -0.008396689780056477, 0.010092610493302345, -0.01526328269392252, 0.025401117280125618, 0.00659147696569562, 0.0073150694370269775, -0.016793379560112953, 0.0020614853128790855, 0.0007438494940288365, 0.024255428463220596, -0.004793801344931126, -0.0005789683782495558, 0.01695920340716839, 0.012157863937318325, 0.007186933420598507, -0.016537107527256012, -0.012029727920889854, 0.008441914804279804, 0.00031421633320860565, -0.0017948489403352141, -0.013190491124987602, -0.007831383496522903, -0.020381193608045578, 0.0029075611382722855, -0.019793273881077766, 0.0012813620269298553, -0.02702920138835907, 0.027752794325351715, 0.005950795952230692, -0.006877899169921875, -0.005170672666281462, 0.005423176102340221, -7.084000390022993e-05, 0.0038572766352444887, -0.00021587652736343443, -0.0014782771468162537, -0.009376554749906063, -0.014803499914705753, 0.02089373767375946, -0.001482045860029757, 0.01539141871035099, -0.010936801321804523, 0.015233132988214493, -0.008117805235087872, 0.020139995962381363, 0.0006472762324847281, -0.010507168248295784, 0.010861427523195744, -0.01937117800116539, -0.01683860458433628, 0.03319481387734413, -0.01189405471086502, -0.007337681949138641, 0.008434376679360867, -0.00953484047204256, 0.01375579833984375, 0.008668037131428719, 0.0018532640533521771, -0.014735663309693336, -0.014170356094837189, 0.011539795435965061, -0.008072581142187119, 0.0056455302983522415, -0.004307637456804514, -0.018858633935451508, 0.016597406938672066, 0.040581487119197845, -0.02003447152674198, -0.01139658410102129, 0.010122760199010372, 0.00929364375770092, -0.002236730419099331, 0.020019397139549255, 0.030436117202043533, -0.013484450988471508, 0.007235926575958729, 0.0053666457533836365, -0.012466898187994957, -0.015323582105338573, -0.01423819363117218, 0.001241790596395731, 0.0015329235466197133, -0.014449240639805794, 0.024104680866003036, -0.0022046964149922132, 0.01332616526633501, 0.012142789550125599, -0.011961891315877438, 0.008637887425720692, 0.018210414797067642, 0.019205356016755104, -0.03367720916867256, 0.007793696131557226, 0.005359108094125986, 0.01754712127149105, 0.0070173414424061775, -0.004232263192534447, 0.009376554749906063, -0.0019371178932487965, -0.009919249452650547, 0.018903858959674835, -0.010492093861103058, 0.011464421637356281, -0.012466898187994957, 0.01884355954825878, 0.0027586971409618855, 0.011087549850344658, 0.029652224853634834, 0.025401117280125618, 0.015903964638710022, 0.013484450988471508, -0.013017131015658379, 0.005992251913994551, 0.007183164823800325, -0.01818026602268219, -0.006572633516043425, 0.0018381892004981637, -0.001357678440399468, 0.005279965233057737, 0.006546252407133579, 0.005766129121184349, -0.004967162385582924, 0.011034788563847542, -0.0037272560875862837, 0.015436643734574318, -0.009157969616353512, -0.019099831581115723, -0.008509751409292221, 0.001836304785683751, 0.020426418632268906, 0.021496731787919998, 0.023366013541817665, 0.0018994307611137629, -0.015662766993045807, 0.006772375199943781, 0.009044907987117767, 0.00472973333671689, 0.0235318373888731, 0.013914084061980247, 0.005992251913994551, -0.009255955927073956, 5.396913184085861e-05, -0.020305819809436798, 0.008208254352211952, -0.004597828257828951, -0.019250579178333282, 0.02170778065919876, 0.0017552775098010898, -0.011381509713828564, 0.008585125207901001, -0.0007226504967547953, -0.019099831581115723, 0.01855713687837124, -0.011162924580276012, -0.01784861832857132, -0.0007532712770625949, 0.005197053775191307, 0.00434155622497201, 0.0006552847917191684, 0.0009289874578826129, 0.005845271982252598, 0.005913108587265015, -0.0133487768471241, -0.008615274913609028, 0.013303552754223347, -0.012768395245075226, 0.009233344346284866, 0.011336284689605236, 0.00933133065700531, -0.001907910336740315, 0.002016260754317045, 0.011132774874567986, -0.0093690175563097, 0.008268553763628006, -0.0030620782636106014, -0.00985141284763813, 0.01724562607705593, 0.003832779824733734, -0.0013623893028125167, -0.0147432005032897, 0.0020972881466150284, -0.000401603349018842, -0.01628083549439907, 0.00933133065700531, -0.0034559087362140417, 0.01609993726015091, -0.03052656538784504, 0.012519660405814648, 0.012662871740758419, 0.006026170216500759, -0.005735979415476322, 0.030541639775037766, 0.003938303794711828, 0.016823530197143555, -0.0008135706884786487, -0.033074215054512024, 0.016084862872958183, 0.01985357329249382, -0.018647585064172745, 0.007484661415219307, -0.014539689756929874, -0.004541297908872366, 0.008690649643540382, 0.024707674980163574, -0.004733501933515072, -0.012994518503546715, -0.003655650420114398, -0.014494465664029121, 0.014373866841197014, -0.0046995836310088634, -0.0036443443968892097, -0.011125237680971622, -0.002792615443468094, 0.01343922596424818, 0.0003493124677333981, -0.0073150694370269775, -0.016687855124473572, 0.006354047916829586, 0.005483475513756275, 0.00829116627573967, -0.014268343336880207, -0.0011268447851762176, -0.006252293009310961, 0.014750737696886063, 0.02200927771627903, 0.025958886370062828, 0.00020150831551291049, 0.003710296703502536, -0.013062355108559132, 0.00212366902269423, -0.014456778764724731, -0.015903964638710022, -0.001969151897355914, 0.0017835429171100259, -0.0069193546660244465, 0.006904279813170433, 0.006648007780313492, 0.014622601680457592, 0.020441493019461632, 0.02543126791715622, 0.00559653714299202, -0.010348882526159286, -0.015255745500326157, -0.00838161539286375, -0.004228494595736265, 0.01518790889531374, -0.0052875024266541, -0.01947670243680477, -0.0036236164160072803, 0.005351570900529623, -0.01182621717453003, -0.003271241905167699, 0.031687330454587936, 0.0038817732129245996, -0.023592136800289154, -0.011110162362456322, 0.0011683006305247545, -0.0011965660378336906, 0.006798756308853626, 0.004571447614580393, 0.01487133651971817, 0.0004414103750605136, 0.009127819910645485, -0.024029307067394257, -0.0032750105019658804, -0.01658233255147934, 0.01625068485736847, -0.002210349543020129, -0.01426080521196127, 0.004413161426782608, 0.00024284636310767382, 0.010567467659711838, 0.01729084923863411, -0.0031562962103635073, 0.01569291576743126, -0.011592557653784752, 0.007673097308725119, -0.01891893334686756, -0.00012813620560336858, -0.010439331643283367, -0.013816097751259804, 0.008984608575701714, -0.012964368797838688, 0.008698186837136745, -0.01085389032959938, -0.005890496540814638, 0.000382995349355042, 0.023546911776065826, 0.002502424642443657, 0.0033974936231970787, 0.008185641840100288, 0.0003455437545198947, -0.005091529805213213, -0.002093519316986203, 0.007669328711926937, -0.004597828257828951, 0.009972011670470238, 0.0017430292209610343, 0.0042360322549939156, -0.012557347305119038, 0.013092504814267159, -0.005694523453712463, 0.011441809125244617, -0.007688172161579132, 0.04661142826080322, -0.004028752911835909, -0.013823634944856167, -0.028657283633947372, 0.006644238717854023, 0.017381299287080765, -0.0035915824119001627, -0.01863251067698002, -0.015496943145990372, 0.0010373379336670041, 0.0023686352651566267, -0.008434376679360867, -0.00032198932603932917, -0.019024457782506943, -0.020908813923597336, 0.002474159235134721, -0.008004743605852127, -0.009768500924110413, -0.013167878612875938, -0.005483475513756275, -0.0025646083522588015, 0.0024270503781735897, 0.01175084337592125, -0.010642842389643192, -0.008931847289204597, 0.001236137468367815, 0.00472219567745924, -0.016929052770137787, -0.0008908292511478066, 0.012248313054442406, 0.009323792532086372, 0.0032750105019658804, -0.005298808682709932, 0.005615380592644215, -0.02089373767375946, 0.0133638521656394, -0.021315833553671837, -0.006915586069226265, 0.011110162362456322, -0.0013557940255850554, 0.020833438262343407, 0.010303658433258533, -0.016522033140063286, -0.012873919680714607, -0.02784324251115322, 0.010974489152431488, -0.007654253859072924, 0.011049862951040268, 0.006651776377111673, 0.0019559613429009914, -0.00985141284763813, -0.02497902140021324, 0.006772375199943781, -0.0012578075984492898, 0.00031633625621907413, 0.010107684880495071, -0.00520459096878767, 0.0035670858342200518, -0.0012644027592614293, 0.0035934667102992535, 0.0049407812766730785, -0.017456673085689545, 0.00763164134696126, 0.01632605865597725, -0.013190491124987602, -0.0004807462973985821, -1.5177897694229614e-05, 0.020622391253709793, 0.015240670181810856, 0.0032806636299937963, -0.0003488413931336254, 0.008343927562236786, -0.004107895772904158, -0.02360721118748188, -0.007367831654846668, -0.017788318917155266, 0.020170144736766815, -0.01167546957731247, -0.014645214192569256, 0.0015008894260972738, -0.014728126116096973, 0.009730814024806023, -0.01683860458433628, -0.003506786422803998, -0.006617858074605465, 0.007281151134520769, -0.006297517567873001, 0.002270648954436183, -0.0040023718029260635, -0.012866382487118244, -0.0018410157645121217, -0.002785078017041087, -0.017094876617193222, 0.008864009752869606, -0.012873919680714607, -0.0013840594328939915, 0.004744808189570904, -0.013635199517011642, 0.031355682760477066, -0.011569945141673088, -0.008946921676397324, 0.02840101160109043, 0.025597089901566505, -0.006263598799705505, -0.022883618250489235, 0.0074432059191167355, -0.005475938320159912, -0.015496943145990372, 0.018376238644123077, -0.025973962619900703, 0.016898903995752335, -0.0032731262035667896, 0.022551970556378365, -0.021843453869223595, -0.006399272475391626, 0.022778093814849854, 0.027858316898345947, -0.0005266774678602815, 0.0141477445140481, -0.018572211265563965, -0.0019126211991533637, 0.0074243624694645405, 0.018602361902594566, -0.01891893334686756, 0.0023215264081954956, 0.015361269004642963, 0.024602150544524193, -0.004089052323251963, -0.009286105632781982, 0.012542272917926311, -0.00780877098441124, 0.008034893311560154, -0.018934007734060287, -0.004115433432161808, 0.0036763784009963274, -0.021557031199336052, 0.00029560833354480565, 0.014177894219756126, 0.002419512951746583, -0.013959308154881, 0.006794987246394157, 0.008690649643540382, -0.0072962259873747826, -0.008517288602888584, -0.0059244148433208466, -0.0028321868740022182, -0.0024100912269204855, 0.022657494992017746, -0.01499947253614664, -0.00279826857149601, 0.0050764549523591995, -0.00044588572927750647, 0.012964368797838688, 0.0060600885190069675, -0.003580276155844331, -0.013265865854918957, -0.004258644301444292, 0.02294391766190529, -0.0006227795965969563, 0.034822896122932434, -0.009685589000582695, 0.043114062398672104, 0.0012050456134602427, -0.023773033171892166, -0.006158075295388699, 0.0023799415212124586, -0.009625289589166641, -0.00025014823768287897, 0.006742225494235754, 0.015270819887518883, 0.008841398172080517, 0.026019185781478882, 0.011027250438928604, -0.00949715357273817, -0.012971905991435051, -0.006112850736826658, -0.012474436312913895, 0.017260700464248657, 0.0028246494475752115, 0.002834071172401309, -0.01139658410102129, 0.0023855946492403746, -0.015512017533183098, 0.006972116883844137, 0.025159919634461403, 0.019898798316717148, 0.01833101361989975, -0.005705829709768295, -0.0015244439709931612, 0.02190375328063965, 0.013107579201459885, -0.0141477445140481, 0.0032787793315947056, -0.00840422697365284, -0.013107579201459885, -0.021632404997944832, 0.005513625219464302, 0.013642736710608006, -0.0014886411372572184, 0.02487349696457386, -0.005992251913994551, -0.01851191185414791, 0.01688382960855961, -0.020290743559598923, 0.001905083772726357, -0.009843875654041767, -0.0028887176886200905, -0.0005007676081731915, 0.01970282569527626, 0.016084862872958183, -0.0001349669910268858, 0.006768606603145599, 0.009919249452650547, 0.0026588260661810637, -0.004220957402139902, 0.009685589000582695, -0.005016155540943146, 0.008773560635745525, 0.013891471549868584, 0.014155281707644463, 0.01083881501108408, -0.023622285574674606, -0.004741039592772722, -0.019054606556892395, -0.01141165941953659, 0.008283628150820732, 0.004673202522099018, -0.015677841380238533, 0.01132121030241251, 0.021632404997944832, -0.011660394258797169, -0.005404332652688026, 0.00711909681558609, -0.017637571319937706, 0.018602361902594566, 0.026531731709837914, 0.003216595621779561, 0.022099725902080536, 0.016898903995752335, 0.0008408938301727176, 0.01132121030241251, -0.01126844808459282, 1.3771991689282004e-05, 0.002053947886452079, 0.009549915790557861, 0.012911606580018997, 0.013974383473396301, 0.0022442678455263376, -0.004024984315037727, -0.0018466687761247158, -0.005540006328374147, 0.02717994898557663, -0.00711909681558609, 6.0034402849851176e-05, -0.0013906547101214528, 0.013378926552832127, 0.004107895772904158, 0.005622917786240578, 0.005852809641510248, -0.006599014159291983, -0.020999262109398842, 0.01825563982129097, -0.0022555741015821695, -0.012941756285727024, -0.0021387438755482435, 1.4243080840969924e-05, -0.02127060852944851, 0.019491776823997498, 0.028084440156817436, -0.0005342148942872882, 0.006651776377111673, -0.012135252356529236, 0.030993886291980743, 0.003542589023709297, 0.006101544480770826, -0.03494349494576454, 0.012866382487118244, -0.028913557529449463, 0.015783365815877914, -0.012519660405814648, -1.2947585673828144e-05, -0.006794987246394157, 0.008781098760664463, 0.019265655428171158, 0.01691397838294506, 0.005728441756218672, -0.036119334399700165, 0.004903093911707401, -0.02647143229842186, 0.002342254389077425, -0.001050528371706605, 0.0050952984020113945, 0.003523745574057102, 0.01833101361989975, -0.008004743605852127, 0.01440401654690504, 0.019944023340940475, 0.005083992145955563, 0.0024685063399374485, -0.003525629872456193, -0.014328641816973686, -0.0028001528698951006, -0.009338867850601673, -0.0037705961149185896, 0.017305925488471985, 0.013213103637099266, -0.0008342985529452562, 0.0026399826165288687, 0.013122654519975185, -0.006380429025739431, -0.011569945141673088, -0.01632605865597725, 0.00723969517275691, -0.012595035135746002, -0.00041879809577949345, 0.008132879622280598, -0.008479601703584194, -0.010914189741015434, -0.021692704409360886, -0.01818026602268219, -6.677686178591102e-05, 0.0055023194290697575, 0.021255534142255783, 0.004839025903493166, -0.02434587851166725, -0.0187078844755888, -0.01891893334686756, 0.010823740623891354, -0.0014650867087766528, 0.0010420487960800529, 0.02956177480518818, -0.020351042971014977, -0.014720587991178036, -0.0015753215411677957, 0.017155176028609276, 0.0025231526233255863, 0.021496731787919998, -0.0074432059191167355, -0.013597512617707253, -0.009617752395570278, -0.02119523473083973, 0.02840101160109043, 0.008238404057919979, -0.022551970556378365, 0.002021913882344961, -0.014924098737537861, 0.01031873282045126, 0.00023825325479265302, 0.019838498905301094, 0.008487138897180557, -0.011162924580276012, -0.0032693573739379644, 0.03617963194847107, -0.0013981920201331377, 0.002259342698380351, 0.00383843295276165, 0.014170356094837189, 0.027044275775551796, -0.025114694610238075, -0.029169829562306404, 0.0014556649839505553, 0.00559653714299202, -0.0008361829095520079, 0.0009949399391189218, -0.006101544480770826, -0.013582437299191952, 0.0027285474352538586, 0.016295909881591797, -0.01929580420255661, -0.012074952945113182, 0.018391313031315804, -0.003122377675026655, 0.0022386147174984217, 0.0031845613848417997, 0.010499631054699421, 0.005151829216629267, -0.012617646716535091, 0.0067573003470897675, -0.00942177977412939, 0.017893843352794647, 0.004465923644602299, 0.018768183887004852, 0.020697765052318573, -0.010688066482543945, -0.007838920690119267, 0.020848514512181282, 0.029305502772331238, -0.008449451997876167, -0.03717457503080368, -0.00033305989927612245, -0.013612587004899979, -0.001421746565029025, 0.007778621278703213, -0.018210414797067642, -0.011630244553089142, 0.006930660922080278, 0.0010439332108944654, -0.012331224977970123, 0.002950901398435235, 0.022551970556378365, 0.012549810111522675, -0.010258433409035206, 0.0005865057464689016, 0.00780877098441124, -0.00486163841560483, 0.017532046884298325, 0.012097564525902271, -0.023953931406140327, 0.013341239653527737, -0.027375921607017517, 0.010718216188251972, -0.014426629059016705, -0.027828168123960495, -0.00011794890451710671, 0.006372891832143068, -0.005573924630880356, -0.009911712259054184, 0.00027040508575737476, -0.025190070271492004, 0.02733069844543934, 0.0004755643312819302, 0.022039426490664482, 0.012097564525902271, -0.014615064486861229, 0.00953484047204256, -0.0334661602973938, -0.017336074262857437, -0.004126739222556353, 0.010688066482543945, -0.0032316704746335745, 0.002964091720059514, 0.008992146700620651, -0.02059224061667919, -0.020471641793847084, -0.013838709332048893, 0.00872079934924841, -0.0034822896122932434, 0.01922043040394783, -0.012353837490081787, 0.004511148203164339, 0.02041134238243103, 0.024044381454586983, 0.001302089891396463, 0.027089500799775124, -0.015964264050126076, -0.0032147110905498266, -0.0022442678455263376, -0.009308718144893646, 0.014607527293264866, -0.0033974936231970787, -0.0004244511655997485, 0.003052656538784504, 0.0147432005032897, -4.239800909999758e-05, -0.001463202410377562, -0.00707387225702405, -0.005513625219464302, -0.025476491078734398, -0.007612797897309065, 0.011479496024549007, 0.03052656538784504, 0.0003961858164984733, -0.0011871441965922713, 0.003810167545452714, 0.02048671804368496, -0.00047909747809171677, 0.011464421637356281, -0.013966846279799938, 0.01962745189666748, -0.011223223991692066, -0.015323582105338573, -0.02312481589615345, -0.0034144530072808266, -0.012783470563590527, -0.005871653091162443, -0.0017147638136520982, -0.0008352407603524625, -0.005705829709768295, -0.008833860047161579, 0.019416403025388718, -0.012971905991435051, 0.015270819887518883, -0.008147954940795898, 0.016627555713057518, -0.006470878142863512, -0.010906651616096497, -0.00047933304449543357, 0.021466583013534546, 0.014502002857625484, 0.010175521485507488, -0.007756008766591549, -0.02241629734635353, 0.009564990177750587, 0.0042661819607019424, 0.010205671191215515, 0.021798228845000267, 0.004857869353145361, -0.02776786871254444, 0.011728230863809586, 0.009956936351954937, 0.020984187722206116, 0.0187380351126194, -0.0013623893028125167, 0.025310669094324112, -0.004571447614580393, 0.025009172037243843, -0.01724562607705593, 0.014110056683421135, 0.013559824787080288, -0.00741682481020689, -0.002159471856430173, -0.0004647292662411928, 0.0010486440733075142, -0.0009030775399878621, -0.011999578215181828, -0.00037522235652431846, 0.007616566494107246, -0.006124156527221203, -0.0003985412768088281, 0.005867884494364262, -0.0010043616639450192, -0.02505439519882202, 0.01810489222407341, -0.0014829881256446242, 0.0066404701210558414, 0.014042220078408718, -0.0167632307857275, 0.022913767024874687, -0.00836654007434845, 0.0025382274761795998, -0.004571447614580393, 0.015753215178847313, -0.009173044934868813, 0.001316222595050931, 0.015979338437318802, -0.010477018542587757, 0.006870361510664225, 0.006218374241143465, -0.010077535174787045, 0.009911712259054184, -0.030963735654950142, 0.01128352340310812, -9.934089030139148e-05, -0.01625068485736847, -0.005344033241271973, -0.0008003801922313869, 0.0093690175563097, 0.014750737696886063, 0.01176591869443655, 0.011615170165896416, 0.001368984580039978, -0.00486163841560483, -0.002287608105689287, -0.020501792430877686, -0.005969639401882887, -0.02639605663716793, -0.02167763002216816, -0.01033380813896656, 0.002685207175090909, -0.005423176102340221, 0.005494781769812107, 0.0013510831631720066, 0.0009704433032311499, -0.00953484047204256, -0.03283301740884781, -0.008019818924367428, -0.004477229434996843, 0.02609456144273281, -0.016069786623120308, -0.0033522690646350384, -0.0010326270712539554, 0.0019126211991533637, 0.008570050820708275, -0.006817599758505821, -0.030843136832118034, 0.0027059351559728384, -0.0012813620269298553, 0.006316361017525196, -0.012074952945113182, -0.0016403318149968982, 0.0019211008911952376, 0.01561754196882248, -0.012414136901497841, -0.0215268824249506, 0.007876607589423656, -0.015677841380238533, -0.014027145691215992, 0.02408960647881031, 0.0022631115280091763, -0.028913557529449463, -0.01141165941953659, -0.0037819023709744215, -0.018828483298420906, -0.0025043089408427477, -0.011886516585946083, 0.005223434418439865, 0.0016638862434774637, 0.014426629059016705, -0.0018353626364842057, 0.000630317023023963, 0.012172939255833626, -0.012911606580018997, -0.01184129249304533, 0.008170567452907562, 0.0021971589885652065, -0.02026059478521347, 0.02015507034957409, 0.0035633170045912266, 0.009542378596961498, -0.013416614383459091, -0.030511491000652313, -0.004496073350310326, 0.019567152485251427, -0.0175169724971056, 0.03075268864631653, -0.006595245562493801, 0.013371389359235764, -0.01426080521196127, -0.006327667273581028, 0.024225279688835144, 0.008080118335783482, 0.022205250337719917, -0.02591366320848465, -0.011999578215181828, 0.017486821860074997, -0.021134935319423676, -0.0326521173119545, 8.196948328986764e-05, -0.008570050820708275, -0.005773666314780712, -0.013084967620670795, -0.008879085071384907, 0.016522033140063286, -0.0003095054707955569, -0.002129322150722146, 0.020863588899374008, 0.020682690665125847, 0.008645424619317055, -0.008698186837136745, -0.005234740674495697, -0.009595139883458614, 0.013589974492788315, -0.02880803309381008, 0.026456356048583984, 0.011954354122281075, 0.0076052602380514145, 0.01695920340716839, -0.023561986163258553, -0.003896848065778613, -0.007801233325153589, 0.003497364465147257, 0.009640364907681942, -0.008441914804279804, -0.0014387057162821293, -0.0009525418863631785, -0.0022913767024874687, -0.006568864453583956, -0.021617330610752106, -0.020139995962381363, 0.006410578731447458, -0.03572738915681839, 0.0016280835261568427, 0.016702931374311447, -0.01189405471086502, -0.010303658433258533, -0.009090133011341095, 0.015248208306729794, 0.01848176307976246, 0.051284629851579666, -0.003016853705048561, 0.020441493019461632, 0.0028472617268562317, -0.027149800211191177, -0.01858728751540184, -0.007533655036240816, -0.0141477445140481, 0.015994412824511528, 0.006267367862164974, -0.01243674848228693, -0.044410500675439835, 0.03425005450844765, 0.03732532262802124, -0.011924204416573048, 0.0032486296258866787, 0.00046096055302768946, -0.002702166326344013, 0.0167632307857275, 0.0030846905428916216, -0.0034295276273041964, -0.008245941251516342, -0.015451718121767044, -0.009557452984154224, 0.010213209316134453, 0.014336179941892624, 0.0015338656958192587, 0.007446974515914917, 0.00933133065700531, -0.04413915425539017, 0.02699905075132847, -0.003075268818065524, 0.005668142344802618, 0.018783260136842728, -0.002626792062073946, 0.006791218649595976, -0.011773455888032913, 0.011833755299448967, 0.003761174390092492, -0.00641434732824564, -0.0049520875327289104, -0.01680845394730568, -0.008351465687155724, -0.00944439135491848, -0.018225491046905518, 0.01370303612202406, 0.011683006770908833, -0.016069786623120308, -0.007876607589423656, 0.012512123212218285, 0.011215685866773129, -0.010386569425463676, -0.009037370793521404, 0.01688382960855961, 0.0008121574064716697, -0.02130075916647911, 0.009029833599925041, 0.009474541060626507, 0.004752345383167267, 0.030466265976428986, 0.002994241425767541, -0.0076768659055233, 0.004047596361488104, 0.021617330610752106, -0.009044907987117767, 0.003893079236149788, -0.0010825624922290444, 0.011223223991692066, 0.01691397838294506, -0.018798334524035454, -0.001833478338085115, -0.007254770025610924, -0.016220536082983017, 0.01033380813896656, 0.0235016867518425, -0.02966729924082756, -0.008336390368640423, -0.012240775860846043, -0.023999156430363655, -0.0032279016450047493, 0.008856472559273243, 0.0011956237722188234, -0.006109081674367189, -0.008562513627111912, 0.00014603757881559432, -0.005396795459091663, 0.0048352573066949844, -0.0048164138570427895, 0.004880481865257025, 0.00942177977412939, -0.031355682760477066, 0.005200822371989489, 0.016145162284374237, 0.032772716134786606, -1.6488114852108993e-05, 0.0026701323222368956, -0.007299994584172964, -0.00296974484808743, 0.007484661415219307, -0.009323792532086372, -0.007183164823800325, 0.0012728824513033032, 0.014599989168345928, -0.009127819910645485, 0.008170567452907562, -0.001200334751047194, -0.011140312068164349, -0.02558201551437378, -0.00040419434662908316, -0.010213209316134453, 0.006787450052797794, -0.005494781769812107, -0.0069984979927539825, 0.0012813620269298553, 0.00780877098441124, 0.008057505823671818, -0.0004385838401503861, 0.0059432582929730415, 0.03473244979977608, -0.0039006166625767946, -0.00689674261957407, -0.011833755299448967, 0.010786052793264389, 0.005822659935802221, 0.006666851229965687, 0.02226554974913597, 0.00559653714299202, -0.011080012656748295, 0.01977819949388504, 0.0235318373888731, 0.012760858051478863, 0.0030941125005483627, 0.011426733806729317, 0.004763651639223099, -0.01888878270983696, 0.0019785736221820116, 0.0035953510086983442, 0.005600305739790201, -0.040913134813308716, -0.0006270194426178932, 0.001629025675356388, 0.03907400369644165, 0.009595139883458614, -0.007028647698462009, 0.01374072302132845, -0.005867884494364262, -0.012188013643026352, 0.003964684903621674, 0.020456567406654358, 0.016446657478809357, -0.007997206412255764, 0.007665559649467468, -0.008095192722976208, 0.02583828754723072, -0.008426839485764503, 0.0041493517346680164, 0.0027831937186419964, 0.023486612364649773, 0.00026145437732338905, 0.013250790536403656, 0.00273231603205204, -0.004857869353145361, 0.001877760631032288, 0.006632932927459478, 0.027918616309762, 0.0018485531909391284, -0.016295909881591797, 0.024255428463220596, 0.0060600885190069675, 0.012052340433001518, 0.008178104646503925, -0.013597512617707253, -0.0059357210993766785, -0.008668037131428719, 0.0024213972501456738, 0.019793273881077766, 0.004624209366738796, 0.006436959840357304, -0.0034596773330122232, 0.003945841453969479, 0.008185641840100288, -0.003199636237695813, -0.013039742596447468, 0.006463340949267149, -0.011080012656748295, 0.005031230393797159, -0.010831277817487717, -0.005962102208286524, 0.00282088085077703, 0.007748471572995186, 0.010507168248295784, 0.007006035186350346, 0.01447939034551382, -0.005732210818678141, -0.023486612364649773, 0.003885541809722781, 0.021813303232192993, 0.02378810942173004, 0.00014886411372572184, -0.008298703469336033, 0.00585657823830843, 0.006866592913866043, 0.004239800851792097, 0.010130297392606735], "12fc93de-6a8b-45de-ae87-9e824744e5ac": [-0.013721802271902561, -0.004131486639380455, -0.014760901220142841, 0.03723675757646561, 0.01695297285914421, -0.020426126196980476, 0.00204261252656579, 0.03672432526946068, -0.0030995046254247427, -0.009842973202466965, -0.001958986511453986, -0.0041386038064956665, 0.0029749548994004726, 0.022162701934576035, -0.0022721397690474987, 0.019771352410316467, -0.04455315321683884, -0.005437477491796017, 0.01695297285914421, -0.02663225308060646, 0.015173694118857384, 0.023216037079691887, -0.027272792533040047, 0.041051533073186874, 0.013223603367805481, 0.011458558961749077, 0.009643693454563618, -0.005042477510869503, -0.038830991834402084, 0.02899513579905033, 0.024383243173360825, 0.0021493693348020315, 0.03433297201991081, 0.021593334153294563, 0.025322703644633293, -0.050730809569358826, 0.01817711815237999, -0.007444504648447037, 0.006633153185248375, 0.0047755856066942215, -0.002964279381558299, 0.016497477889060974, 0.006035315338522196, 0.013010090216994286, -0.03131531551480293, -0.022461621090769768, 0.027685586363077164, 0.025151891633868217, -0.042845044285058975, 0.003633288200944662, 0.0067327930592000484, -0.04853874072432518, 0.027258558198809624, 0.023571891710162163, 0.003400202840566635, -0.05585513636469841, -0.039827387779951096, 0.011088468134403229, 0.00786441471427679, -0.009209549985826015, 0.015259099192917347, -0.012682702392339706, -0.033080361783504486, -0.03447531536221504, -0.018988467752933502, -0.02498108148574829, 0.0016894256696105003, 0.025436576455831528, -0.0544886477291584, -0.003193806391209364, -0.017394233494997025, 0.043926846235990524, 0.001818423392251134, 0.06342774629592896, -0.004465991165488958, -0.0038645947352051735, 0.03695207089185715, -0.023002522066235542, -0.013024324551224709, 0.034816935658454895, 0.023201802745461464, -0.0029909685254096985, 0.028112612664699554, -0.03248252347111702, 0.05730702728033066, 0.022931352257728577, 0.00019394143600948155, -0.03347891941666603, -0.06513585895299911, -0.02818378433585167, 0.026788828894495964, 0.0040603154338896275, -0.0038645947352051735, -0.005594054237008095, 0.013252072036266327, 0.01498864870518446, 0.02602018043398857, 0.019002702087163925, 0.003455360420048237, -0.013344594277441502, -0.00204261252656579, 0.006124279461801052, -0.015045586042106152, 0.0480547733604908, 0.02408432401716709, -0.008682883344590664, 0.008640180341899395, -0.009565405547618866, -0.01911657676100731, 0.0014483333798125386, -0.0051278830505907536, -0.018447566777467728, -0.04022594541311264, 0.012120450846850872, -0.05599747970700264, -0.012248558923602104, -0.013899729587137699, -0.01217738725244999, -0.02559315413236618, -0.014148828573524952, 0.025806667283177376, 0.027315495535731316, 0.00935189239680767, 0.004437522497028112, -0.0552288293838501, -0.007700720801949501, 0.026973873376846313, 0.009024504572153091, 0.007127793040126562, -0.002512342296540737, 0.010526216588914394, 0.007302162237465382, 0.006177657749503851, -0.006878693588078022, 0.01656864956021309, -0.011679189279675484, 0.01605621725320816, 0.02119477465748787, -0.03569946065545082, 0.04648900777101517, -0.0881953164935112, -0.016027748584747314, -0.014049189165234566, -0.03185621649026871, -0.02355765737593174, 0.003015878377482295, -0.001991013530641794, 0.03162846714258194, -0.019159279763698578, 0.024397477507591248, -0.034247566014528275, -0.08699963986873627, -0.0021974099799990654, 0.00977180153131485, 0.03353585675358772, -0.017109550535678864, -0.027016576379537582, -0.007085090037435293, 0.01567189209163189, -0.011003063060343266, 0.012789459899067879, -0.01454026997089386, -0.013252072036266327, -0.004149279091507196, -0.00982162170112133, 0.005836036056280136, 0.021878018975257874, 0.032510992139577866, -0.006312882993370295, 0.032368648797273636, 0.04540720582008362, -0.028212253004312515, -0.005917883012443781, 0.03054666705429554, 0.005949909798800945, 0.014155945740640163, 0.0015017116675153375, 0.025578919798135757, 0.02137981913983822, -0.020568469539284706, 0.004238243214786053, -0.011415855959057808, 0.0016493919538334012, -0.0004888569819740951, -0.0038183333817869425, -0.014248468913137913, 0.004256036132574081, 0.015686126425862312, 0.0024856531526893377, 0.025934774428606033, -0.023016756400465965, 0.011864234693348408, -0.002088873879984021, 0.028810089454054832, 0.0054410360753536224, -0.025294234976172447, -0.0021493693348020315, -0.019443964585661888, -0.023685766384005547, 0.03145765885710716, -0.016967207193374634, -0.030916757881641388, -0.010376757010817528, 0.0326533317565918, -0.017920900136232376, 0.02629063092172146, 0.017735855653882027, 0.009672162123024464, -0.024112792685627937, -0.020696576684713364, 0.034389909356832504, -0.004451756831258535, 0.019714415073394775, -0.00749432435259223, -0.019344324246048927, 0.0011129392078146338, 0.0017597072292119265, 0.0035603379365056753, 0.008440900593996048, -0.03592720627784729, 0.052524324506521225, 0.032454054802656174, 0.014390811324119568, -0.031172974035143852, -0.038318559527397156, -0.0077078379690647125, 0.013750270009040833, 0.020554235205054283, -0.04870954900979996, -0.02686000056564808, 0.014042071998119354, -0.01303144171833992, -0.050588469952344894, -0.016155855730175972, 0.026333333924412727, 0.052097298204898834, 0.010127658024430275, -0.021280180662870407, -0.016796397045254707, 0.002177837770432234, 0.016696756705641747, 0.02555045112967491, 0.003069256665185094, -0.03501621633768082, 0.01648324355483055, 0.000981272547505796, 0.015515315346419811, 0.020269550383090973, 0.04250342398881912, -0.015871170908212662, -0.012312612496316433, -0.0008407094865106046, -0.007053063251078129, -0.03598414361476898, -0.030745945870876312, 0.027415135875344276, 0.001103153103031218, -0.022504324093461037, 0.007971171289682388, -0.02913747727870941, 0.0004990878514945507, 0.03507315367460251, -0.009629459120333195, 0.05858810991048813, 0.011650720611214638, -0.00287353596650064, 0.05221117287874222, -0.07737729698419571, 0.025521982461214066, -0.014604324474930763, -0.018575675785541534, 0.007835946045815945, 0.022361982613801956, 0.007131351623684168, 0.009366125799715519, 0.007487207185477018, 0.060922522097826004, -0.06997549533843994, -0.010213063098490238, -0.0031653379555791616, -0.016312433406710625, -0.025977477431297302, 0.025137657299637794, 0.016269730404019356, -0.02871045097708702, -0.030176576226949692, -0.040254414081573486, -0.02270360291004181, -0.02304522506892681, -0.013686216436326504, -0.005359189119189978, -0.03569946065545082, 0.006640270352363586, -0.007515675853937864, -0.006989009212702513, 0.014291170984506607, -0.014405044727027416, 0.0195436030626297, 0.005003333557397127, 0.039770450443029404, -0.06781189143657684, -0.025365404784679413, -0.021422522142529488, -0.024610990658402443, -0.01073972973972559, 0.00838396418839693, 0.05938522517681122, -0.033450450748205185, -0.020554235205054283, 0.0322832427918911, 0.007835946045815945, -0.010604504495859146, -9.797156963031739e-05, -0.028112612664699554, 0.01331612654030323, 0.0213371179997921, 0.008305675350129604, -0.010632973164319992, -0.011536846868693829, 0.0027329730801284313, 0.024909909814596176, 0.0023806756362318993, -0.034731533378362656, 0.003613716224208474, -0.0035140765830874443, -0.017678918316960335, -0.025322703644633293, -0.013458468951284885, -0.0026404503732919693, -0.011622251942753792, -0.049506668001413345, 0.00012243665696587414, -0.00574707193300128, 0.005038918927311897, -0.03419063240289688, -0.016184324398636818, 0.027457838878035545, -0.06678702682256699, -0.011209459975361824, 0.0006227477570064366, -0.004736441653221846, 0.001175213954411447, -0.030176576226949692, 0.01870378479361534, -0.000702370482031256, 0.013771621510386467, -0.03922954946756363, -0.008554775267839432, -0.02695963904261589, -0.003633288200944662, 0.0010239752009510994, 0.013586577028036118, 0.026689188554883003, 0.02832612581551075, -0.001029313076287508, 0.0012864188756793737, -0.02455405332148075, 0.022774774581193924, 0.0029927478171885014, -0.017123783007264137, -0.012312612496316433, -0.015458378940820694, 0.001916283741593361, 0.013764504343271255, -0.021835315972566605, -0.007921351119875908, 0.038033872842788696, 0.03225477412343025, 0.023173334077000618, -0.037322163581848145, -0.014056306332349777, 0.01319513563066721, 0.03188468515872955, 0.020468829199671745, -0.04108000174164772, -0.003917973022907972, 0.04216180369257927, -0.04509405419230461, -0.04862414300441742, -0.00408522505313158, -0.03894486650824547, 0.02214846946299076, -0.02960720658302307, -0.004327207338064909, 0.02327297255396843, 0.017536576837301254, -0.008996035903692245, 0.04503711685538292, 0.0017979617696255445, 0.02137981913983822, -0.009088559076189995, -0.0031635586638003588, -0.0015221734065562487, -0.013942432589828968, 0.002135135233402252, 0.015970811247825623, 0.019173514097929, -0.0038040990475565195, 0.005843153223395348, -0.048225585371255875, 0.008419550023972988, -0.0051527926698327065, -0.0012588400859385729, 0.028311891481280327, 0.006818198133260012, -0.022063063457608223, -0.06189044937491417, -0.016967207193374634, -0.0001827097439672798, 0.008120630867779255, -0.027130451053380966, 0.017009910196065903, -0.0297495499253273, 0.02553621679544449, 0.04944973066449165, 0.028724685311317444, -0.02223387360572815, 0.05565585568547249, -0.04480937123298645, -0.02435477450489998, 0.04640360549092293, 0.04056756943464279, 0.0044837836176157, -0.003213378367945552, 0.021878018975257874, 0.0055335587821900845, -0.018532972782850266, 0.055314235389232635, 0.013330360874533653, -0.011116936802864075, 0.011273513548076153, 0.058758918195962906, -0.011444324627518654, -0.03527243435382843, 0.02412702701985836, -0.04264576733112335, -0.015045586042106152, 0.02879585698246956, 0.011963874101638794, -0.033023424446582794, -0.01319513563066721, 0.006967657711356878, 0.008633063174784184, 0.03720828890800476, -0.030489729717373848, -0.02219117060303688, -0.029920360073447227, 0.0043058558367192745, -0.03162846714258194, 0.018333693966269493, 0.027770990505814552, -0.04099459573626518, -0.0412508100271225, -0.02157909981906414, 0.029208648949861526, 0.021636035293340683, 0.018831891939044, -0.013437117449939251, -0.006768378429114819, -0.06576216220855713, -0.050076037645339966, -0.009359008632600307, -0.004903693683445454, 0.03262486681342125, 0.030888289213180542, -0.026902703568339348, 0.01360081136226654, -0.003949999809265137, 0.025365404784679413, 0.031429190188646317, -0.0487380176782608, -0.006825315300375223, 0.01090342365205288, -0.017493873834609985, 0.011906936764717102, -0.0005591385415755212, -0.017408467829227448, 0.032169368118047714, 0.015600720420479774, 0.008298558183014393, 0.008754054084420204, -0.04517946019768715, -0.01142297312617302, -0.010981711558997631, 0.01807747781276703, -0.007892883382737637, 0.018903063610196114, -0.01577153243124485, 0.03800540417432785, -0.005031801760196686, 0.006070901174098253, 0.004540720954537392, 0.02918018028140068, 0.022874414920806885, 0.0014661261811852455, 0.021166305989027023, -0.0355001799762249, -0.06473729759454727, 0.008006757125258446, -0.019273152574896812, 0.013138198293745518, -0.0024678604677319527, -0.037379100918769836, -0.01713801734149456, -0.025194594636559486, 0.005964144133031368, -0.022603964433073997, -0.020269550383090973, -0.01430540531873703, 0.00372936949133873, -0.018532972782850266, 0.027087748050689697, -0.03427603468298912, 0.02318756841123104, 0.02091008983552456, -0.006305765826255083, 0.008398198522627354, -0.007743423338979483, 0.014340991154313087, -0.010661441832780838, 0.006583333481103182, -0.008312792517244816, -0.028112612664699554, -0.0065086036920547485, 0.002079977421090007, 0.005515765864402056, -0.012931802310049534, -0.02846846915781498, 0.01978558488190174, -0.02100973017513752, -0.002462522592395544, 0.008362612687051296, -0.02469639666378498, -0.005277342163026333, 0.004280945751816034, 0.009102792479097843, 0.015871170908212662, -0.01817711815237999, 0.01166495494544506, 0.01974288374185562, -0.06080864742398262, 0.06132107973098755, -0.017878198996186256, -0.017394233494997025, 0.011906936764717102, 0.020468829199671745, -0.019443964585661888, -0.007636666763573885, 0.015244864858686924, 0.021593334153294563, -0.020084504038095474, -0.008924865163862705, 0.0025176801718771458, -0.007899999618530273, -0.03171387314796448, -0.02630486525595188, 0.03393441438674927, -0.0017730518011376262, 0.006711441557854414, -0.018148649483919144, -0.0026048647705465555, 0.01601351425051689, 0.014148828573524952, 0.024468649178743362, -0.013444234617054462, -0.0005729279364459217, -0.0002539921260904521, -0.0027988064102828503, -0.03390594571828842, -7.276974429260008e-06, -0.000939459481742233, -0.02926558628678322, 0.027215855196118355, -0.03880252316594124, -0.02280324324965477, 0.0049713063053786755, 0.006166981998831034, -0.007309279404580593, -0.011166756972670555, 0.0019073873991146684, -0.004191982094198465, -0.00901738740503788, -0.021322883665561676, -0.017166486009955406, 0.022063063457608223, 0.020411891862750053, -0.02147945947945118, -0.030660539865493774, 0.011757477186620235, 0.02639027126133442, -0.016824865713715553, 0.04532180353999138, 0.012091982178390026, -0.02015567570924759, -0.005782657768577337, 0.04011207073926926, -0.030802883207798004, 0.03558558598160744, 0.001962545095011592, -0.005448153242468834, -0.022646667435765266, 0.016511712223291397, 0.03125837817788124, -0.011116936802864075, -9.074324043467641e-05, 0.025280000641942024, 0.01676792837679386, 0.008540540933609009, -0.02989189140498638, 0.010120540857315063, -0.009508468210697174, -0.02005603536963463, 0.02172144129872322, -0.0145189194008708, 0.02233351394534111, -0.013522522523999214, -0.009743333794176579, 0.014675495214760303, 0.015572252683341503, 0.03421910107135773, 0.029863422736525536, -0.020981261506676674, 0.02573549561202526, -0.015643423423171043, 0.004640360362827778, -0.008369729854166508, 0.004120810888707638, -0.006878693588078022, 0.00026755910948850214, 0.016938738524913788, -0.040339820086956024, -0.020710811018943787, -0.0063164415769279, -0.014476216398179531, 0.019415495917201042, 0.009366125799715519, 0.00826297327876091, 0.031941622495651245, -0.0042418017983436584, -0.041336216032505035, -0.001420754473656416, -0.03188468515872955, 0.0008705123909749091, 0.046716757118701935, -0.0024554054252803326, 0.016725225374102592, -0.03031891956925392, 0.026418738067150116, 0.03683819994330406, -0.013479819521307945, 0.028824323788285255, 0.007914233952760696, 0.026361802592873573, 0.031229909509420395, -0.019557837396860123, -0.009202432818710804, -0.0020835360046476126, 0.02072504535317421, 0.023244503885507584, -0.02323026955127716, 0.002307725138962269, -0.01251189224421978, 0.01675369404256344, -0.003037229645997286, -0.0016333784442394972, 0.015088288113474846, 0.007544144056737423, -0.012099099345505238, 0.008789639919996262, 0.01113828830420971, 0.010917657986283302, -0.03040432371199131, 0.015444144606590271, 0.010262883268296719, -0.01681063137948513, -0.0006921396707184613, 0.013885495252907276, -0.022504324093461037, -0.009408828802406788, -0.017436936497688293, -0.0036902253050357103, 0.030859820544719696, 0.015743063762784004, 0.012618648819625378, 0.0009465765906497836, 0.007786126341670752, 0.0001625816512387246, 0.011906936764717102, -0.0003082601469941437, 0.014405044727027416, 0.010163242928683758, 0.013209369033575058, -0.008440900593996048, -0.007914233952760696, -0.0009456869447603822, -0.010981711558997631, 0.02341531589627266, 0.0035425450187176466, 0.004711531568318605, -0.021023964509367943, -0.043499819934368134, -0.029208648949861526, -0.03922954946756363, -0.03322270140051842, -0.02614828757941723, 0.009814504534006119, -0.02143675647675991, 0.004551396239548922, -0.021280180662870407, 0.012476306408643723, -0.018874594941735268, 0.004167072009295225, 0.045435674488544464, -0.02469639666378498, 0.0019696622621268034, 0.01780702732503414, -0.020981261506676674, 0.027799459174275398, 0.0029891892336308956, 0.01931585557758808, 0.027728289365768433, 0.01125927921384573, -0.001806858112104237, -0.005530000198632479, -0.024255136027932167, -0.018518738448619843, 0.00360481976531446, -0.01699567586183548, 0.007679369300603867, 0.0052310810424387455, -0.007757657673209906, 0.00215470721013844, -0.015871170908212662, 0.011479909531772137, -0.010640090331435204, 0.018874594941735268, -0.03436144068837166, 0.018960000947117805, 0.0451509915292263, -0.023486487567424774, -0.004302297253161669, -0.044866304844617844, 0.00430941442027688, -0.031571533530950546, -0.009963964112102985, 0.022248107939958572, 0.02422666735947132, 0.00496774772182107, 0.0038717116694897413, -0.00814198236912489, 0.031799279153347015, -0.013536756858229637, 0.027500540018081665, 0.000875405385158956, -0.021550631150603294, 0.004298738669604063, 0.007658018264919519, 0.02530846931040287, -0.008476486429572105, 0.03427603468298912, -0.012070630677044392, 0.022034594789147377, -0.020283784717321396, -0.0516418032348156, 0.03558558598160744, 0.007999639958143234, 0.01945819891989231, 0.03863171115517616, 0.026119820773601532, -0.026703422889113426, 0.015785766765475273, 0.0179351344704628, -0.0005288907559588552, 0.023102162405848503, -0.015045586042106152, -0.01286774780601263, 0.0066118016839027405, 0.005739954765886068, -0.022361982613801956, -0.012305495329201221, -0.01836216263473034, 0.01856144145131111, 0.02463945932686329, 0.01229837816208601, -0.037549909204244614, -0.05548504367470741, 0.013899729587137699, 0.0333365760743618, -0.0105760358273983, 0.007487207185477018, 0.028767388314008713, -0.014647027477622032, -0.031799279153347015, 0.015529549680650234, 0.007430270314216614, -0.036525044590234756, 0.030005766078829765, -0.02143675647675991, -0.006821756716817617, 0.016397837549448013, -0.0006311993347480893, -0.027842162176966667, 0.02370000071823597, 0.01884612627327442, 0.02082468569278717, -0.03253946080803871, -0.024198198691010475, -0.006739909760653973, 0.0025550450664013624, -0.0013584797270596027, 0.015472612343728542, -0.02836882881820202, 0.009074324741959572, 0.01813441514968872, 0.0005733727593906224, -0.01338729728013277, 0.005743513349443674, 0.017436936497688293, -0.0066260360181331635, 0.018532972782850266, -0.02918018028140068, -0.014760901220142841, 0.03564252331852913, -0.007241666782647371, -0.008234504610300064, 0.0030016442760825157, -0.0008794087916612625, 0.028169550001621246, 0.038119278848171234, -0.02431207150220871, -0.026005946099758148, -0.03629729896783829, 0.011558198370039463, 0.018575675785541534, 0.024297837167978287, 0.02025531604886055, -0.022034594789147377, 0.010084955021739006, -0.01619855873286724, 0.02700234204530716, -0.03487387299537659, -0.012924685142934322, -0.0009590315166860819, 0.032226305454969406, 0.028012972325086594, -0.00878252275288105, -0.014134594239294529, -0.041279278695583344, 0.02469639666378498, 0.020169910043478012, -0.0011947860475629568, 0.028881261125206947, 0.0054908557794988155, 0.021678738296031952, -0.01656864956021309, -0.0022614640183746815, -0.012469189241528511, 0.006594009231775999, -0.03131531551480293, -0.01831945963203907, 0.015244864858686924, 0.048510272055864334, -0.006828873883932829, 0.00965081062167883, 0.015074053779244423, -0.010547568090260029, -0.0064445496536791325, -0.04711531475186348, 0.010711261071264744, -0.02856810763478279, 0.01149414386600256, 0.03427603468298912, 0.046859100461006165, -0.02875315397977829, -0.0195436030626297, -0.016839100047945976, -0.03393441438674927, 0.009480000473558903, -0.005131441634148359, -0.008981801569461823, 0.013849910348653793, 0.038261622190475464, 0.02355765737593174, 0.004651036113500595, -0.029863422736525536, -0.01723765768110752, 0.011892702430486679, 0.015444144606590271, 0.0052595497108995914, -0.007914233952760696, 0.04919351264834404, -0.027742521837353706, 0.00649081077426672, -0.008134865202009678, -0.02422666735947132, -0.0009768243180587888, 0.030888289213180542, -0.020084504038095474, -0.005003333557397127, -0.017735855653882027, 0.012739639729261398, -0.03290954977273941, -0.021493693813681602, -0.023643063381314278, 0.009800270199775696, -0.004757792688906193, 0.007843063212931156, -0.001782837905921042, -0.006932072341442108, -0.010348288342356682, -0.0020693019032478333, -0.007636666763573885, 0.0011600900907069445, -0.003996261395514011, 0.042047929018735886, 0.023116396740078926, -0.012789459899067879, 0.010462162084877491, 0.004668829031288624, -0.00350518012419343, -0.01903117075562477, 0.03339351341128349, 0.007401801645755768, 0.028440000489354134, 0.0004203547432553023, 0.0051278830505907536, -0.01978558488190174, -0.02728702686727047, 0.020796217024326324, 0.018774954602122307, -0.014746666885912418, -0.003693783888593316, 0.009800270199775696, 0.0002671143156476319, 0.03464612737298012, -0.011223693378269672, 0.00833414401859045, 0.006853783968836069, -0.01010630652308464, 0.004003378562629223, -0.0016680742846801877, 0.021977657452225685, 0.01591387391090393, -0.012711171060800552, 0.014604324474930763, -0.032738737761974335, -0.01010630652308464, 0.009978198446333408, 0.031599998474121094, 0.01911657676100731, 0.006469459272921085, 0.024810271337628365, 0.02394198253750801, -0.00577198201790452, 0.024183964356780052, 0.022746305912733078, 0.007006801664829254, -0.0012054616818204522, 0.027073513716459274, 0.004195540677756071, -0.00024131475947797298, -0.044126126915216446, -0.011515495367348194, 0.01699567586183548, -0.011401621624827385, 0.002236554166302085, 0.00826297327876091, 0.00729504507035017, -0.005530000198632479, -0.023685766384005547, -0.015985045582056046, -0.023998919874429703, 0.03885946050286293, -0.006323558744043112, -0.0001362260663881898, 0.01931585557758808, -0.014746666885912418, -0.002558603649958968, -0.038176216185092926, -0.020169910043478012, 0.016027748584747314, 0.016725225374102592, -0.022305045276880264, 0.004782702773809433, 0.026034414768218994, -0.026461441069841385, 0.014931711368262768, -0.019757118076086044, -0.013209369033575058, 0.024013154208660126, -0.005394774954766035, -0.01850450411438942, -0.0040603154338896275, -0.00017181165458168834, 0.0033788513392210007, 0.013294775038957596, -0.00534851336851716, 0.0042916215024888515, -0.018476035445928574, -0.011273513548076153, -0.017479639500379562, -0.012953152880072594, -0.007714955136179924, 0.03310883045196533, -0.010476396419107914, 0.01978558488190174, -0.003037229645997286, 0.0003603040531743318, -0.02960720658302307, 0.023344144225120544, -0.031172974035143852, 0.013778738677501678, 0.007038828916847706, 0.011835766024887562, 0.0066900900565087795, 0.015614954754710197, -0.033735133707523346, -0.055029548704624176, 0.01038387417793274, 0.023529188707470894, 0.028639279305934906, -0.0030194369610399008, -0.028966667130589485, -0.007273693569004536, 0.012454954907298088, 0.00325786042958498, -0.027400901541113853, -0.008298558183014393, 0.022675136104226112, 0.005647432524710894, -0.010654324665665627, -0.01367198210209608, 0.01703837886452675, -0.04250342398881912, 0.005145675502717495, -0.02808414399623871, -0.01964324340224266, -0.047656215727329254, -0.017920900136232376, -0.01854720711708069, 0.023358378559350967, -0.011600901372730732, -0.01671099103987217, 0.005999729968607426, 0.0098643247038126, 0.025365404784679413, -0.010768198408186436, 0.006686531472951174, -0.011935405433177948, -0.009764684364199638, 0.0011467455187812448, -0.005060270428657532, 0.0003313907654955983, 0.016269730404019356, -0.016981441527605057, 0.007679369300603867, 0.0008184684556908906, -0.02856810763478279, 0.01765044964849949, 0.01911657676100731, -0.00031915822182781994, -0.023927748203277588, 0.023543423041701317, 0.0036724323872476816, -0.0030390089377760887, 0.0011734346626326442, -0.016881801187992096, -0.02058270201086998, -0.029948828741908073, 0.01770738698542118, -0.011487026698887348, 0.001135180238634348, -0.006166981998831034, -0.014554504305124283, -0.0076010809279978275, -0.017593514174222946, -0.018347928300499916, -0.000973265792708844, -0.01799207180738449, 0.00027089528157375753, 0.011842883192002773, 0.016981441527605057, 0.0019145045662298799, -0.0034251126926392317, -0.02351495437324047, 0.00866153184324503, -0.0029429278802126646, 0.020269550383090973, 0.007892883382737637, 0.0008362612570635974, -0.02449711784720421, 0.0240273866802454, 0.02308792807161808, 0.03535783663392067, -0.02015567570924759, -0.02620522491633892, 0.00021862894936930388, 0.057961802929639816, 0.024867206811904907, -0.005174144171178341, 0.0079782884567976, -0.006341351196169853, -0.024240901693701744, 0.004540720954537392, 0.009323423728346825, 0.04233261197805405, -0.011949639767408371, -0.010753964073956013, 0.01005648635327816, 0.006547747645527124, 0.020981261506676674, 0.0029411485884338617, 0.021835315972566605, 0.02219117060303688, 0.02946486510336399, 0.015045586042106152, -0.0050211260095238686, -0.034247566014528275, 0.02001333422958851, 0.014817837625741959, 0.011316216550767422, -0.012070630677044392, -0.008305675350129604, -0.004469549749046564, 0.0067043243907392025, 0.010405225679278374, 0.008924865163862705, 0.018988467752933502, 0.0029785134829580784, 0.013778738677501678, -0.005433918908238411, -0.020554235205054283, 0.021707206964492798, -0.0010586711578071117, 0.007971171289682388, -0.0329664871096611, -0.007971171289682388, -0.006939189042896032, 0.024667927995324135, -0.026788828894495964, -0.004576306324452162, -0.0042916215024888515, 0.015202161855995655, -0.010647207498550415, 0.023529188707470894, 0.015358738601207733, -0.027457838878035545, -0.0032827702816575766, 0.011978108435869217, -0.04429693892598152, 0.023785404860973358, -0.005636756774038076, -0.0009243356180377305, -0.018120180815458298, -0.028027206659317017, 0.02856810763478279, -0.005636756774038076, -0.00502824317663908, 0.007529910188168287, 0.01935855858027935, -0.01888882927596569, -0.020653873682022095, 0.03421910107135773, 0.009835856035351753, 0.0005591385415755212, -0.03988432511687279, 0.026504144072532654, 0.017636217176914215, -0.009173964150249958, -0.010839369148015976, -0.00792846828699112, -0.006928513757884502, 0.01333747711032629, 0.016824865713715553, -0.013408648781478405, 0.014732432551681995, -0.019614774733781815, 0.009230900555849075, 0.003387747798115015, 0.01940126158297062, -0.015429910272359848, -0.012006577104330063, 0.012753874063491821, 0.0026226576883345842, -0.006533513776957989, 0.00418842351064086, -0.05283747613430023, -0.008697116747498512, -0.03558558598160744, 0.02483873814344406, -0.0010204166173934937, -0.025280000641942024, -0.013871260918676853, 0.002079977421090007, 0.000401672295993194, -4.275830724509433e-05, -0.015515315346419811, -0.018988467752933502, 0.008882162161171436, 0.01062585599720478, -0.0004710641806013882, 0.010519099421799183, -0.006199009250849485, 0.022219639271497726, 0.009052973240613937, -0.0013575900811702013, -0.026746125891804695, 0.015415675938129425, -0.024397477507591248, 0.0016307095065712929, -0.016355134546756744, 0.012718288227915764, -0.020796217024326324, -0.010511982254683971, 0.01836216263473034, 0.027073513716459274, -0.015316036529839039, -0.017693152651190758, 0.030660539865493774, 0.011892702430486679, 0.017821261659264565, -0.011166756972670555, -0.009202432818710804, -0.00531292799860239, 0.01907387375831604, -0.02318756841123104, -0.011223693378269672, -0.0030745945405215025, 0.000689470733050257, 0.009173964150249958, 0.021308649331331253, 0.015928108245134354, 0.008889279328286648, 0.024155495688319206, 0.006401847116649151, -0.046289730817079544, 0.008327026851475239, -0.001896711764857173, -0.0011467455187812448, 0.0249241441488266, -0.006394729949533939, 0.003113738726824522, 0.005526441615074873, -0.020369188860058784, 0.0062203602865338326, 0.010369639843702316, 0.006633153185248375, 0.0060531082563102245, -0.01634090021252632, 0.03350738808512688, -0.009487117640674114, -0.010511982254683971, -0.02732972986996174, -0.01017036009579897, -0.02313063107430935, -0.003195585682988167, -0.01841909997165203, 0.013088378123939037, 0.017123783007264137, -0.000644543906673789, 0.025650089606642723, 0.008355495519936085, -0.023173334077000618, 0.013038558885455132, -0.038261622190475464, -0.009472883306443691, 0.0012659572530537844, -0.008490720763802528, 0.013586577028036118, 0.011636486276984215, -0.014227117411792278, 0.01648324355483055, -0.010127658024430275, 0.025792432948946953, -0.004266711883246899, -0.00040567567339167, 0.026902703568339348, -0.01723765768110752, -0.014675495214760303, -0.011230810545384884, 0.010661441832780838, -0.026176756247878075, 0.015472612343728542, -0.03282414376735687, -0.007907116785645485, 0.004263153299689293, 0.012277026660740376, 0.00826297327876091, -0.003775630611926317, -0.012106216512620449, 0.01634090021252632, 0.008305675350129604, 0.01527333352714777, 0.005576261319220066, -0.004864549729973078, -0.004540720954537392, 0.02889549545943737, -0.022319279611110687, 0.04173477366566658, 0.020696576684713364, -0.0018984910566359758, 0.008270090445876122, -0.01187135186046362, -0.014817837625741959, 0.0162981990724802, -0.005875180009752512, -0.015885405242443085, -0.008476486429572105, -0.010718378238379955, -0.006686531472951174, -0.01893153227865696, 0.003562117228284478, 0.009287837892770767, 0.0008198029245249927, -0.019885225221514702, -0.0038503604009747505, -0.015700360760092735, -0.01412036083638668, 0.006376937031745911, -0.01430540531873703, 0.005821801722049713, -0.021778378635644913, 0.013494053855538368, -0.004337883088737726, -0.021237477660179138, -0.020411891862750053, -0.00045171452802605927, 0.026190990582108498, -0.0004543834365904331, 0.006565540563315153, 0.024568287655711174, 0.019629009068012238, 0.019799819216132164, -0.00935189239680767, 0.003914414439350367, 0.023870810866355896, -0.016696756705641747, -0.0006850225036032498, 0.013515405356884003, -0.01789243333041668, -0.009294955059885979, -0.016041982918977737, -0.00022218750382307917, 0.006565540563315153, -0.01907387375831604, -0.0021511486265808344, -0.0058716218918561935, -0.003081711707636714, 0.0020853152964264154, -0.012839279137551785, -0.011358918622136116, -0.005626081023365259, 0.015088288113474846, -0.020141441375017166, 0.019885225221514702, -0.00878252275288105, -0.02025531604886055, 0.0110244145616889, -0.010896306484937668, 0.001079132896848023, -0.0023913513869047165, -0.017920900136232376, -0.01987099088728428, -0.015543784014880657, -0.0013744932366535068, 0.021322883665561676, -0.027600180357694626, -0.03541477397084236, 0.02732972986996174, -0.013643513433635235, 0.0070672971196472645, -0.01836216263473034, 0.017536576837301254, 0.01789243333041668, -0.011864234693348408, 0.031941622495651245, -0.010640090331435204, -0.032454054802656174, 0.03900180384516716, -0.02559315413236618, 0.03942883014678955, 0.003225833410397172, -0.0272443238645792, -0.009010270237922668, 0.03353585675358772, 0.0340767577290535, 0.013188018463551998, -0.002512342296540737, -0.007213198114186525, 0.007672252133488655, 0.009359008632600307, 0.002332635223865509, 0.01723765768110752, 0.006882252171635628, -0.010924775153398514, -0.008355495519936085, -0.06001153215765953, 0.020383423194289207, 4.8985784815158695e-05, 0.0008202477474696934, 0.016725225374102592, -0.010782432742416859, -0.022262342274188995, 0.014390811324119568, -0.002547927899286151, -0.006672297138720751, -0.03336504474282265, -0.005814684554934502, -0.007650901097804308, 0.0038645947352051735, 0.007437387481331825, -0.015472612343728542, -0.014291170984506607, 0.034446846693754196, -0.008690000511705875, -0.006860901135951281, 0.02313063107430935, -0.025934774428606033, 0.01599927991628647, -0.010134775191545486, -0.007907116785645485, -0.013451351784169674, 0.05317910015583038, 0.0057648648507893085, 0.009693513624370098, -0.03641116991639137, -0.019287386909127235, 0.010611621662974358, 0.006640270352363586, -0.010661441832780838, 0.006729234475642443, 0.008988918736577034, -0.01992792822420597, -0.02449711784720421, -0.004857432562857866, -0.005017567425966263, 0.002820157678797841, 0.0008923085406422615, 0.004120810888707638, -9.313414921052754e-05, 0.0037969821132719517, -0.012020810507237911, 0.0059748198837041855, -0.02573549561202526, -0.0016111374134197831, 0.002202747855335474, -0.020853152498602867, 0.009707747958600521, 0.0032169369515031576, 0.021778378635644913, 0.019885225221514702, 0.007206080947071314, 0.0003031447122339159, 0.009472883306443691, 0.028226487338542938, -0.013415765948593616, 0.017209189012646675, 0.006711441557854414, 0.013479819521307945, -0.01187135186046362, -0.00619545066729188, 0.0020408332347869873, -0.021934954449534416, -0.019045405089855194, -0.01628396473824978, 0.0014243130572140217, 0.005280900746583939, -0.0026226576883345842, 0.03290954977273941, -0.005647432524710894, 0.015572252683341503, 0.026418738067150116, 0.0008367060800082982, 0.012924685142934322, -0.01752234250307083, -0.013067027553915977, -0.027941802516579628, -0.018803423270583153, -0.0003603040531743318, -0.016639819368720055, -0.002234774874523282, 0.011038648895919323, 0.0095867570489645, 0.009665044955909252, -0.0029109008610248566, 0.005704369395971298, 0.005369864869862795, 0.012789459899067879, -0.03310883045196533, 0.012590180151164532, -0.02459675632417202, 0.009216667152941227, 0.007551261223852634, -0.0009661486838012934, 0.00854765810072422, -0.005409008823335171, 0.03404828906059265, 0.04293045029044151, -0.004953513387590647, 0.009835856035351753, 0.007821711711585522, 0.014789369888603687, 0.01014900952577591, 0.006131396628916264, -0.008412432856857777, -0.017123783007264137, -0.007921351119875908, -0.016497477889060974, -0.003925090190023184, -0.01498864870518446, -0.01086072064936161, -0.0021315766498446465, -0.022490089759230614, -0.016725225374102592, 0.002900225343182683, 0.01118810847401619, -0.00878252275288105, 0.006480135023593903, -0.002768558682873845, 0.006569099146872759, 0.012027927674353123, 0.004914369434118271, 0.0031350902281701565, 0.013899729587137699, -0.013728919439017773, 0.000700591248460114, 0.004498017951846123, 0.013536756858229637, 0.005860946141183376, -0.008405315689742565, -0.00017114442016463727, 0.013394414447247982, -0.03866017982363701, -0.002724076621234417, -0.006615360267460346, 0.029578739777207375, -0.0038823874201625586, 0.000347181863617152, 0.009622341953217983, -0.0423041433095932, 0.02620522491633892, 0.0004061204963363707, -0.01435522548854351, -0.0012268130667507648, -0.00040945663931779563, -0.008554775267839432, -0.00804945919662714, -0.0019678829703480005, 0.01770738698542118, 0.004843198228627443, -0.0015550900716334581, 0.027173154056072235, 0.0079782884567976, 0.011892702430486679, -0.00324540538713336, -0.014155945740640163, 0.014647027477622032, 0.002578175626695156, 0.007999639958143234, -0.010803784243762493, -0.007850180380046368, 0.0012962049804627895, -0.009978198446333408, 0.02091008983552456, -0.022945586591959, 0.007373333442956209, 0.011501261033117771, 0.009117026813328266, -0.0008865259005688131, -0.007216756697744131, 0.005270225461572409, 0.008362612687051296, 0.01527333352714777, 0.027799459174275398, -0.0023450900334864855, -0.019771352410316467, -0.02062540501356125, 0.012668468989431858, -0.004796937108039856, -0.017536576837301254, 0.007992522791028023, -0.013095495291054249, 0.056253693997859955, 0.03003423474729061, 0.022248107939958572, 0.01770738698542118, 0.006547747645527124, -0.017081081867218018, 0.017664683982729912, -0.015600720420479774, 0.020895855501294136, 0.002320180181413889, -0.00013856137229595333, -0.02610558643937111, 0.017579279839992523, -0.013252072036266327, 0.010077837854623795, 0.00655130622908473, 0.006682972889393568, -0.029208648949861526, -0.03054666705429554, 0.013401531614363194, 0.03199855983257294, 0.012832161970436573, 0.022034594789147377, -0.013721802271902561, -0.016554415225982666, 0.008540540933609009, -0.017009910196065903, -0.026219459250569344, -0.002044391818344593, 0.034959279000759125, 0.009622341953217983, 0.005775540601462126, -7.055954483803362e-05, -0.014284053817391396, -0.004964189138263464, 0.01728036068379879, 0.00861882884055376, 0.015244864858686924, -0.015586487017571926, 0.012953152880072594, 0.024098558351397514, -0.014974414370954037, 0.0166682880371809, 0.005202612839639187, 0.005373423453420401, -0.012447837740182877, 0.0014572297222912312, -0.0034429053775966167, 0.009764684364199638, -0.009238017722964287, -0.031229909509420395, 0.0064943693578243256, -0.010640090331435204, 0.005102972965687513, -0.007227432448416948, -0.018476035445928574, -0.0007441835477948189, -0.0213371179997921, 0.012376667000353336, -0.0033130180090665817, -0.0021173423156142235, 0.023344144225120544, -0.021166305989027023, -0.003775630611926317, -0.018404865637421608, -0.03171387314796448, -0.0008335923193953931, -0.03757837787270546, -0.009885676205158234, 0.00424891896545887, -0.0035567793529480696, -0.0019856756553053856, 0.0024536261335015297, -0.01676792837679386, -0.008156216703355312, 0.016511712223291397, -0.009245134890079498, 0.0322832427918911, 0.013422883115708828, 0.00045082488213665783, 0.004063874017447233, 0.0075370268896222115, -0.0023415314499288797, -0.014718198217451572, 0.002208085497841239, -0.001507049542851746, -0.0023788963444530964, 0.011736126616597176, 0.018960000947117805, -0.029778018593788147, -0.009401711635291576, -0.011060000397264957, -0.003971351310610771, 0.012440720573067665, 0.001502601313404739, -0.0030390089377760887, 0.005070946179330349, 0.005341396201401949, 0.008177567273378372, 0.014647027477622032, 0.029948828741908073, 0.002832612721249461, -0.009188198484480381, -0.0010862500639632344, -0.014042071998119354, -0.0031991442665457726, 0.023543423041701317, 0.0016760810976848006, 0.006238153204321861, 0.0021600450854748487, -0.01319513563066721, 0.00482896389439702, 0.0027205180376768112, -0.007302162237465382, -0.011501261033117771, -0.030347388237714767, 0.002273918827995658, -0.01066855899989605, -0.01974288374185562, -0.005800450686365366, -0.01638360321521759, 0.0009069876396097243, 0.015173694118857384, -0.030632073059678078, -0.016867566853761673, 0.004675946198403835, -0.020525766536593437, 0.008519189432263374, -0.013985135592520237, -0.010277117602527142, 0.009188198484480381, 0.009551171213388443, 0.02809837833046913, -0.0068075223825871944, 0.021991891786456108, -0.008319909684360027, 0.016597116366028786, -0.00729504507035017, 0.022447386756539345, -0.013935315422713757, 0.009359008632600307, 0.030091172084212303, 0.002982072066515684, 0.0028575225733220577, -0.017451170831918716, -0.014127478003501892, -0.002757882932201028, -0.01760774850845337, 0.009721982292830944, -0.0046083335764706135, -0.002578175626695156, -0.0033628379460424185, -0.015017117373645306, -6.922508327988908e-05, 0.003957116976380348, -0.025792432948946953, -0.016469009220600128, 0.025038018822669983, -0.010939009487628937, -0.0052453153766691685, -0.015230630524456501, -0.019771352410316467, -0.03364973142743111, -0.007935585454106331, -0.002807702636346221, 0.004366351291537285, 0.003439346794039011, -0.0005030911997891963, 0.002496328903362155, -0.0018771396717056632, -0.026703422889113426, -0.005085180047899485, 0.0014865878038108349, -0.01746540516614914, -0.02620522491633892, -0.025692792609333992, 0.0030425675213336945, 0.0008286993252113461, 0.0045798649080097675, 0.03202702850103378, -0.006145630497485399, -0.008369729854166508, 0.024852972477674484, 0.004312973003834486, -0.009978198446333408, 0.015244864858686924, 0.011010180227458477, -0.027557477355003357, 0.0031742341816425323, 0.011721892282366753, 0.004900135099887848, 0.008455134928226471, 0.0064303153194487095, -0.03262486681342125, -0.018305225297808647, -0.014661261811852455, 0.0064303153194487095, 0.008341261185705662, 0.012383784167468548, -0.0016111374134197831, 0.002088873879984021, 0.01921621710062027, 0.01718072034418583, -0.010376757010817528, 0.003946441691368818, -0.015230630524456501, -0.006843108218163252, -0.02308792807161808, -0.006120720878243446, 0.00043570101843215525, -0.06718558818101883, -0.010981711558997631, 0.006359144113957882, 0.015002883039414883, -0.013002973049879074, 0.010654324665665627, 0.006647387519478798, -0.0009181080968119204, 0.013543874025344849, 0.0027169594541192055, -0.005291576497256756, -0.01940126158297062, 0.0058716218918561935, -0.014454864896833897, -0.0054125674068927765, -0.020312251523137093, 0.015429910272359848, 0.0091383783146739, 0.014276936650276184, -0.020511532202363014, 0.017693152651190758, 0.008077927865087986, -0.021849550306797028, 0.014547387138009071, -0.0021209008991718292, 0.013963784091174603, 0.014084775000810623, 0.007024594582617283, 0.018191350623965263, -0.015458378940820694, -0.027600180357694626, -0.002807702636346221, 0.010604504495859146, -0.010319819673895836, 0.010028017684817314, 0.01394954975694418, -0.0037720720283687115, -0.008092162199318409, 0.0032329505775123835, -1.7264568668906577e-05, -0.022077297791838646, -0.0011903378181159496, 0.004028288181871176, 0.018760720267891884, -0.0002457629598211497, 0.010042252019047737, -0.015743063762784004, -0.019429730251431465, -0.0076437839306890965, -0.0035265316255390644, 0.016084684059023857, -0.0035603379365056753, 0.008675766177475452, -0.01017747726291418, 0.010761081241071224, 0.006857342552393675, -0.026973873376846313, 0.02451135218143463, -0.030888289213180542, 0.027016576379537582, -0.005530000198632479, -0.009024504572153091, -0.006661621853709221, 0.008668649010360241, 0.006202567834407091, -0.011800180189311504, 0.016696756705641747, 0.0015764414565637708, 0.02266090176999569, -0.003160000080242753, -0.012782342731952667, -0.012711171060800552, 0.015515315346419811, -0.02545081079006195, -0.0036226126831024885, -0.015358738601207733, 0.012369549833238125, 0.0029126801528036594, 0.006985450629144907, 0.002483873860910535, -0.006266621872782707, -0.009152612648904324, -0.006344909779727459, 0.014269819483160973, -0.010440810583531857, 0.006850225385278463, 0.00856900867074728, 0.0026635811664164066, -0.01648324355483055, -0.01964324340224266, -0.016725225374102592, -0.008746936917304993, -0.0017632658127695322, -0.018447566777467728, 0.0014438851503655314, -0.005138558801263571, 0.007992522791028023, -0.012027927674353123, -0.006989009212702513, 0.022248107939958572, 0.005042477510869503, -0.010711261071264744, 0.027984505519270897, -0.006334234494715929, -0.012027927674353123, 0.004964189138263464, -0.006387612782418728, 0.014960180036723614, -0.011252162046730518, 0.002642229665070772, -0.01090342365205288, -0.0016956531908363104, 0.00502824317663908, 0.010846486315131187, 0.014049189165234566, 0.015614954754710197, 0.024326305836439133, 0.013586577028036118, -0.010006667114794254, -0.04466702789068222, -0.01968594640493393, 0.008540540933609009, 0.0022472296841442585, -0.01091054081916809, 0.0007980067748576403, 0.007935585454106331, -0.016696756705641747, -0.003974909894168377, -0.0140705406665802, -0.0032009235583245754, -0.015942342579364777, 0.012440720573067665, 0.002060405444353819, -0.0022507882677018642, -0.027301261201500893, 0.025507748126983643, 0.004174189176410437, -0.003003423335030675, 0.015799999237060547, -0.005864504724740982, -0.007907116785645485, -0.005238198209553957, 0.013935315422713757, 0.0030354505870491266, -0.018661081790924072, 0.0014225337654352188, 0.0005764864617958665, 0.00878252275288105, 0.009693513624370098, -0.0008642849279567599, -0.0014394369209185243, -0.020881621167063713, -0.03054666705429554, -0.0034446846693754196, 0.01366486493498087, -0.009166846983134747, -0.004206216428428888, 0.006654504686594009, -0.025792432948946953, -0.0008549437043257058, 0.019913693889975548, -0.005650991108268499, 0.0236572977155447, 0.00573639664798975, -0.02488144114613533, 0.005981937050819397, -0.009216667152941227, -0.007729189470410347, -0.030774414539337158, 0.012718288227915764, 0.03621189296245575, 0.00030536879785358906, -0.00629153149202466, -0.01319513563066721, 0.023401081562042236, 0.004103017970919609, 0.0315430648624897, 0.031087568029761314, 0.002800585702061653, 0.010775315575301647, -0.0019429730018600821, -0.014298288151621819, -0.00126328831538558, -0.0034784909803420305, -0.0031991442665457726, 0.006273738574236631, -0.02058270201086998, 0.007729189470410347, 0.0016636261716485023, 0.00422400888055563, -5.304476508172229e-05, 0.01780702732503414, 0.011017297394573689, 0.021678738296031952, 0.019429730251431465, -0.0005698141758330166, 0.007942702621221542, 0.009544054046273232, 0.028923964127898216, -0.013615044765174389, -0.012682702392339706, 0.010889189317822456, -0.008305675350129604, -0.024198198691010475, 0.019472433254122734, -0.042617298662662506, 0.02602018043398857, 0.01435522548854351, -0.011088468134403229, 0.015885405242443085, 0.023500720039010048, 0.024909909814596176, 0.00378986494615674, -0.010761081241071224, 0.010924775153398514, -0.004960630554705858, 0.024098558351397514, -0.008832341991364956, -0.017863964661955833, -0.0076010809279978275, 0.0010800225427374244, -0.00024242680228780955, -0.005530000198632479, 0.004451756831258535, -0.0005484628491103649, -0.010469279251992702, 0.005957026965916157, -0.022945586591959, 0.0175650455057621, -0.007586847059428692, 0.0182767566293478, 0.007408918812870979, 0.003601261181756854, 0.0001645833399379626, 0.023571891710162163, 0.01154396403580904, 0.0067043243907392025, 0.015842702239751816, -0.002188513521105051, -0.0019020495237782598, -0.03111603669822216, 0.0329664871096611, -0.010305585339665413, 0.004544279538094997, -0.01746540516614914, 0.02110936865210533, -0.005255991127341986, -0.012839279137551785, 0.006480135023593903, -0.012832161970436573, 0.020895855501294136, -0.005789774935692549, 0.0034055404830724, 0.0039286487735807896, -0.007437387481331825, 0.01572882942855358, 0.017621982842683792, 0.0031048422679305077, -0.01960054039955139, 0.023828107863664627, -0.02587783709168434, 0.0010568918660283089, 0.012832161970436573, 0.011173874139785767, 0.008319909684360027, 0.012099099345505238, -0.021351352334022522, -0.005238198209553957, -0.01066855899989605, -0.006996126379817724, 0.0012499437434598804, 0.021892253309488297, 0.01799207180738449, 0.00925225205719471, 0.007551261223852634, 0.0033041215501725674, -0.023073693737387657, 0.010533333756029606, 0.023543423041701317, -0.009166846983134747, 0.011010180227458477, 0.00729504507035017, -0.0017445833655074239, -0.01742270216345787, -0.0010880292393267155, -0.004209775011986494, 0.029578739777207375, 0.007921351119875908, -0.00553711736574769, -0.009344775229692459, -0.00599617138504982, 0.007166936993598938, 0.0068715764209628105, -0.009480000473558903, 0.012718288227915764, -0.003471373813226819, -0.01498864870518446, 0.015586487017571926, -0.009921261109411716, -0.03433297201991081, -0.002072860486805439, -0.019130811095237732, -0.01279657706618309, 0.009408828802406788, -0.014718198217451572, 0.011209459975361824, 0.010853603482246399, -0.00019950169371441007, 0.00528801791369915, -0.019984865561127663, -0.00817045010626316, -0.018518738448619843, 0.009287837892770767, -0.016739459708333015, -0.00044126127613708377, -0.011800180189311504, -0.006270180456340313, -0.006860901135951281, 0.0016805293271318078, -0.023998919874429703, 0.004729324486106634, -0.00042547014891169965, 0.0020550675690174103, 0.0002038386883214116, 0.0025568243581801653, 0.007045946083962917, -0.01695297285914421, -0.003126193769276142, 0.01182864885777235, 3.1693411983724218e-06, -0.010255766101181507, -0.004067432601004839, -0.014006486162543297, -0.00407454976812005, -0.010597387328743935, -0.024867206811904907, 0.0065228380262851715, 0.009088559076189995, -0.0022276577074080706, 0.009088559076189995, 0.004078108351677656, 0.013422883115708828, 0.0071598198264837265, 0.013123963959515095, 0.008156216703355312, -0.00906720757484436, -0.020838918164372444, -0.0037400450091809034, 0.0034126576501876116, -0.011052883230149746, -0.002158265793696046, -0.0065228380262851715, -0.015942342579364777, -0.006910720840096474, -0.0031546622049063444, -0.002284594578668475, 0.014027837663888931, 0.0013415765715762973, -0.014412161894142628, 0.005480180028825998, 0.004547837655991316, -0.0035585586447268724, -0.0018593468703329563, 0.0038966217543929815, -0.001394954975694418, -0.017963603138923645, 0.01373603567481041, -0.004462432581931353, 0.009593874216079712, -0.0017899549566209316, 0.007964054122567177, -0.015985045582056046, -0.005106531549245119, 0.00225434685125947, -0.004526486620306969, 0.003661756869405508, 0.01430540531873703, -0.009786035865545273, 0.04688756912946701, 0.004597657825797796, 0.015358738601207733, 0.003668873803690076, -0.007195405662059784, -0.009309189394116402, -0.011301982216536999, -0.0009376801899634302, -0.014760901220142841, -0.002740090014412999, -0.025237297639250755, -0.025280000641942024, -0.01161513477563858, 0.0066011263988912106, -0.008120630867779255, -0.008697116747498512, 0.001776610384695232, -0.003451801836490631, 0.004103017970919609, 0.0004915259196422994, 0.0015141667099669576, -0.0034767116885632277, -0.0032471846789121628, -0.008156216703355312, -0.016227027401328087, -0.009778918698430061, 0.01614162139594555, -0.008682883344590664, 0.004280945751816034, 0.010227297432720661, 0.012284143827855587, 0.03404828906059265, -0.025934774428606033, -0.007323513738811016, -0.007757657673209906, 0.02137981913983822, -0.0033023422583937645, -0.013579459860920906, 0.007878649048507214, 0.005405450705438852, 0.012718288227915764, -0.00849783793091774, 0.00126328831538558, -0.02157909981906414, -0.01807747781276703, -0.011515495367348194, 0.014148828573524952, 0.004512252286076546, -0.005661666858941317, -0.0054410360753536224, -0.006971216294914484, 0.012099099345505238, -0.0046083335764706135, -0.018404865637421608, -0.0004844087816309184, 0.0014180856524035335, 0.008255856111645699, -0.01138027012348175, -0.016582883894443512, 0.0007900000200606883, 0.01750810816884041, 0.010476396419107914, -0.03188468515872955, 0.008312792517244816, -0.022020360454916954, 0.015074053779244423, 0.0007392905536107719, -0.0033450450282543898, 0.01066855899989605, 0.00401405431330204, 0.036809731274843216, -0.003910855855792761, -0.018191350623965263, 0.0050211260095238686, -0.022077297791838646, 0.007971171289682388, -0.023500720039010048, 0.010604504495859146, 0.010163242928683758, -0.012341081164777279, -0.006917838007211685, -0.026902703568339348, 0.009757567197084427, 0.01360081136226654, -0.006608243100345135, 0.007195405662059784, -0.0005075394292362034, 0.00885369349271059, -0.004651036113500595, 0.006070901174098253, 0.01262576598674059, -0.015871170908212662, -0.0012205855455249548, -0.004597657825797796, -0.0009296734351664782, -0.016554415225982666, -1.734797297103796e-05, 0.006376937031745911, 0.0018104166956618428, -0.018433334305882454, -0.009963964112102985, 0.004960630554705858, -0.019088108092546463, -0.01864684745669365, -0.014376576989889145, -0.026418738067150116, 0.007323513738811016, 0.002688491018489003, 0.00418842351064086, -0.017365766689181328, 0.022305045276880264, -0.0009972860570997, -0.02284594625234604, 0.002060405444353819, 0.0016689639305695891, 0.003775630611926317, -0.019344324246048927, -0.033308107405900955, 0.015458378940820694, 0.014333873987197876, -0.013757387176156044, 0.012220090255141258, -0.005046036094427109, -0.0006627815309911966, 0.011764594353735447, -0.0003496283898130059, -0.015045586042106152, -0.008063693530857563, -0.022589730098843575, -0.02379963919520378, -0.0022579054348170757, 0.017835495993494987, 0.015970811247825623, -0.003079932415857911, -0.019572071731090546, -0.014789369888603687, -0.01638360321521759, -0.038973335176706314, 0.003521193750202656, -0.014931711368262768, 0.014198648743331432, 0.005394774954766035, 0.025564685463905334, -0.013088378123939037, 0.007423153147101402, 0.037322163581848145, 0.014860540628433228, 0.017451170831918716, 0.02498108148574829, -0.00428450433537364, 0.011921171098947525, 0.01738000102341175, 0.009999549947679043, -0.011344685219228268, -0.006860901135951281, 0.002802364993840456, 0.008327026851475239, -0.01402072049677372, -0.00573639664798975, 0.009835856035351753, -0.020226847380399704, 0.00814198236912489, -0.009344775229692459, 0.016027748584747314, 0.014718198217451572, -0.013686216436326504, -0.007487207185477018, 0.023927748203277588, -0.003925090190023184, -0.017579279839992523, -0.012248558923602104, 0.011949639767408371, 0.009572522714734077, 0.0058822971768677235, -0.0001442328211851418, -0.003065698314458132, 0.000433699315181002, 0.026319099590182304, -0.011415855959057808, -0.0008851914317347109, -0.002636892022565007, 0.010825134813785553, 0.003779189195483923, 0.010426576249301434, -0.010462162084877491, -0.039258018136024475, 0.008682883344590664, -0.012490540742874146, -0.0009323423728346825, 0.017123783007264137, -0.016155855730175972, 0.012277026660740376, 0.009408828802406788, -0.0168533343821764, -0.003177792765200138, -0.016981441527605057, -0.016212793067097664, 0.03105909936130047, 0.001572882873006165, 0.018404865637421608, 0.004177747759968042, -0.014647027477622032, 0.008462252095341682, -0.012248558923602104, -0.009878559038043022, -0.007156261242926121, 0.007565495558083057, 0.02639027126133442, 0.010640090331435204, 0.006839549634605646, -0.006426756735891104, 0.0025977478362619877, -0.009686396457254887, 0.025052253156900406, 0.0003778744430746883, -0.0027151801623404026, -0.009280720725655556, 0.018589910119771957, -0.0021191216073930264, 0.012668468989431858, -0.012006577104330063, -0.019899459555745125, -0.010939009487628937, 0.007099324371665716, -0.010462162084877491, -0.011785945855081081, -0.0024109233636409044, 0.011280630715191364, 0.003092387458309531, 0.014091892167925835, -0.013629279099404812, 0.01494594570249319, -0.01281792763620615, 0.013166666962206364, -0.0026546847075223923, -0.019443964585661888, -0.010960360057651997, 0.021550631150603294, -0.00977180153131485, -0.008206035941839218, 0.013180901296436787, 0.00117699324619025, 0.011686306446790695, 0.029237117618322372, 0.016497477889060974, 0.017878198996186256, -0.0030087612103670835, 0.0030781531240791082, -0.014262703247368336, -0.010782432742416859, 0.005530000198632479, 0.005661666858941317, -0.010718378238379955, -0.013017207384109497, -0.0022792567033320665, 0.007985405623912811, 0.0009883895982056856, -0.011116936802864075, 0.01073972973972559, -0.012497657909989357, -0.0412508100271225, -0.005917883012443781, -0.003910855855792761, 0.005042477510869503, 0.00288599100895226, 0.021080901846289635, 0.0024233784060925245, 0.022874414920806885, 0.01038387417793274, -0.008070810697972775, 0.005095855798572302, -0.028126846998929977, 0.024867206811904907, 0.009259369224309921, 0.00937324296683073, 0.01978558488190174, 0.0068715764209628105, 0.018960000947117805, 0.009387477301061153, -0.004010495729744434, 0.010604504495859146, 0.005658108275383711, -0.010946126654744148, -0.000867398630362004, 0.002103108214214444, 0.010618738830089569, -0.015316036529839039, 0.007166936993598938, 0.019757118076086044, -0.006654504686594009, -0.01113828830420971, -0.004441081080585718, -0.005017567425966263, 0.014326756820082664, -0.00901738740503788, 0.0014474437339231372, -0.016540180891752243, 0.00479337852448225, 0.02555045112967491, 0.004729324486106634, 0.014604324474930763, 0.005298693664371967, 0.022134235128760338, 0.0011253941338509321, -0.0015559797175228596, -0.0038218919653445482, 0.008789639919996262, -0.026945404708385468, 0.017109550535678864, -0.010405225679278374, 0.0038859460037201643, -0.0006071790703572333, -0.0003164893132634461, 0.014689729548990726, -0.0053236037492752075, -0.006686531472951174, -0.016881801187992096, 0.009558288380503654, -0.020952792838215828, -0.0012517230352386832, -0.003843243233859539, 0.019515134394168854, -0.004661711864173412, -0.0011538625694811344, -0.0011805518297478557, 0.015899639576673508, 0.0077220723032951355, 0.014205765910446644, 0.006786171346902847, -0.02034072019159794, 0.010305585339665413, -0.008981801569461823, -0.007191847078502178, 0.0038539189845323563, 0.00982162170112133, 0.0012010135687887669, -0.0012499437434598804, 0.015301802195608616, 0.014846306294202805, -0.00010286458564223722, 0.0002664470812305808, -0.019173514097929, 0.01689603552222252, 0.004394819959998131, 0.0021831756457686424, 0.004345000255852938, -0.015444144606590271, -0.011643603444099426, 0.005857387557625771, -0.010889189317822456, 0.013679099269211292, -0.0006752365152351558, 0.018376396968960762, -0.010312702506780624, 0.006028198171406984, 0.011949639767408371, -0.008704233914613724, -0.013301892206072807, -0.012106216512620449, 0.0030568018555641174, 0.0011921171098947525, 0.00781459454447031, -0.030233513563871384, 0.011586667038500309, 0.009451531805098057, 0.007714955136179924, 0.022361982613801956, -0.0067968470975756645, -0.02337261289358139, -0.006426756735891104, -0.020383423194289207, 0.019885225221514702, 0.013792973011732101, -0.010782432742416859, -0.001207240973599255, 0.0004581644316203892, 0.007565495558083057, -0.011551081202924252, 0.01239090133458376, -0.007437387481331825, -0.0333365760743618, -0.008433783426880836, 0.029208648949861526, 0.009152612648904324, -0.012476306408643723, 0.00024665260571055114, 0.043357476592063904, 0.02865351364016533, -0.0179351344704628, -0.015785766765475273, -0.011978108435869217, -0.00525243254378438, 0.0017356869066134095, -0.00838396418839693, 0.004551396239548922, -0.018490269780158997, 0.008818108588457108, 0.005266666878014803, -0.016440540552139282, -0.012497657909989357, -0.0005124324234202504, -0.005277342163026333, -0.019913693889975548, -0.0213371179997921, 0.0017677139258012176, -0.004743558820337057, 0.0071882884949445724, 0.000397668918594718, -0.004401937127113342, 0.03313729912042618, -0.005131441634148359, 0.00037831926601938903, 0.011906936764717102, 0.015828467905521393, 0.013700450770556927, -0.003747162176296115, 0.009117026813328266, -0.002515900880098343, -0.003603040473535657, 0.010497747920453548, -0.020810451358556747, 0.017906667664647102, -0.00048752251313999295, -0.0031884685158729553, -0.007277252152562141, -0.011729009449481964, -0.02298828773200512, -0.02451135218143463, 0.00854765810072422, 0.0256358552724123, -0.0011600900907069445, 0.002777454908937216, 0.022646667435765266, 0.014099009335041046, 0.0013718242989853024, 0.009992432780563831, 0.02002756856381893, 0.0027062837034463882, -0.012753874063491821, -0.018518738448619843, -0.010412342846393585, -0.010675676167011261, -0.025294234976172447, 0.018632613122463226, -0.004191982094198465, -0.003974909894168377, -0.010412342846393585, -0.021778378635644913, -0.031429190188646317, 0.016739459708333015, -0.00817045010626316, 0.007665134966373444, -0.004117252305150032, -0.003343265736475587, -0.01831945963203907, -0.01149414386600256, 0.01850450411438942, -0.0008709572139196098, 0.011287747882306576, -0.013365945778787136, 0.01463279314339161, 0.0005417905631475151, -0.023728469386696815, 0.016654053702950478, 0.0011547522153705359, 0.006882252171635628, 0.013472702354192734, -0.004028288181871176, -0.01338729728013277, 0.01414171140640974, 0.018675316125154495, 0.01752234250307083, -0.007608198095113039, 0.00849783793091774, 0.00619545066729188, -0.02049729786813259, 0.0031671172473579645, 0.014376576989889145, -0.02172144129872322, -0.009430180303752422, -0.020041801035404205, -0.007359099108725786, 0.0004272494406905025, 0.013800090178847313, 0.00977180153131485, 0.0019056081073358655, -0.0025639415252953768, 0.011245044879615307, -0.001274853595532477, 0.0025247973389923573, 0.006184774916619062, -0.0031849099323153496, 0.013828558847308159, -0.020454594865441322, 0.023059459403157234, -0.01446909923106432, -0.010013784281909466, -0.010704143904149532, 0.021209008991718292, -0.007337747607380152, -0.003485608147457242, -0.008867927826941013, -0.005800450686365366, 0.004476666916161776, -0.010113423690199852, -7.150478631956503e-05, 0.0039037386886775494, -0.002692049602046609, 0.03441837802529335, 0.006882252171635628, -0.015102522447705269, 0.0162981990724802, -0.01366486493498087, 0.013024324551224709, -0.0003611936990637332, -0.021934954449534416, -0.0033503829035907984, 0.017123783007264137, -0.0019696622621268034, 0.01732306368649006, 0.0026173198129981756, -0.025408107787370682, -0.009878559038043022, -0.02162180282175541, -0.003063919022679329, -0.016027748584747314, 0.005857387557625771, -0.003409099066630006, 0.011536846868693829, -0.0017792793223634362, 0.006476576440036297, 0.028311891481280327, -0.00032471847953274846, -0.012753874063491821, 0.005291576497256756, -0.007700720801949501, 0.0011280630715191364, 0.009337658062577248, 0.006017522420734167, -0.007344864774495363, -0.012469189241528511, 0.015472612343728542, -0.008042342029511929, -0.013415765948593616, -0.0059890542179346085, 0.009280720725655556, 0.0034446846693754196, -0.013059910386800766, 0.0014438851503655314, 0.019059639424085617, -0.00482896389439702, -0.0028468468226492405, 0.031002162024378777, -0.01107423473149538, 0.02223387360572815, -0.0021493693348020315, 0.005202612839639187, -0.0020408332347869873, 0.019016936421394348, 0.001167207257822156, 0.017693152651190758, 0.00496774772182107, 0.015074053779244423, -0.007565495558083057, 0.013821441680192947, 0.0057790991850197315, 0.0020532882772386074, 0.020283784717321396, -0.012056396342813969, 0.02007026970386505, -0.017451170831918716, 0.0071455854922533035, 0.0065086036920547485, -0.033023424446582794, -0.018347928300499916, -0.0062630632892251015, 0.0020319370087236166, 0.010561801493167877, 0.01331612654030323, -0.004348558373749256, -0.006287972908467054, 0.005419684574007988, 0.0014723535859957337, -0.011052883230149746, -0.01487477496266365, -0.010205945931375027, 0.01293891854584217, 0.015358738601207733, 0.005177702754735947, -0.004836081061512232, 0.015486846677958965, 0.012405135668814182, -0.008988918736577034, -0.010583152994513512, -0.015002883039414883, -0.005455270409584045, 0.011864234693348408, 0.006604684516787529, 0.0018202026840299368, -0.0013237837702035904, -0.0014385472750291228, 0.01624126173555851, 0.005138558801263571, 0.009003153070807457, 0.00925225205719471, 0.013330360874533653, 0.010846486315131187, -0.0011040427489206195, -0.02072504535317421, -0.00833414401859045, 0.013038558885455132, 0.006024639587849379, -0.02021261304616928, -0.009551171213388443, 0.007344864774495363, -0.02021261304616928, 0.00032271677628159523, -0.002177837770432234, -0.007245225366204977, -0.003094166750088334, -0.00361727480776608, 0.005067387595772743, -0.004526486620306969, 0.011415855959057808, -0.009010270237922668, 0.010761081241071224, 0.009451531805098057, 0.007650901097804308, 0.009736216627061367, 0.009323423728346825, 0.010618738830089569, -0.00709576578810811, 0.0003451801894698292, 0.027742521837353706, 0.005056711845099926, -0.009010270237922668, 0.005889414343982935, -0.030375856906175613, 0.019956396892666817, -0.009999549947679043, 0.017451170831918716, 0.0003651970764622092, 0.005298693664371967, -0.004120810888707638, 0.0022312162909656763, -0.004288062918931246, -0.0012543918564915657, 0.001848671236075461, -0.007565495558083057, 0.035955674946308136, 0.0036421846598386765, -0.015002883039414883, -0.018661081790924072, -0.0027311937883496284, 0.020084504038095474, -0.005722162313759327, -0.028297657147049904, -0.00833414401859045, -0.002122680190950632, -0.025094954296946526, -0.02007026970386505, -0.002708062995225191, 0.008248738944530487, 0.007999639958143234, -0.006320000160485506, -0.0016324887983500957, -0.005380540620535612, -0.0029286937788128853, -0.00925225205719471, 0.0013958446215838194, 0.0018824775470420718, 0.020895855501294136, 0.009088559076189995, 0.003949999809265137, -0.0021155630238354206, 0.007672252133488655, 0.019273152574896812, -0.01854720711708069, -0.002072860486805439, -0.020710811018943787, 0.004409054294228554, -0.00014234233822207898, -0.026874234899878502, 0.0018041891744360328, -0.0017285698559135199, -0.013472702354192734, 0.007401801645755768, -0.027628649026155472, 0.003921531606465578, 0.025892071425914764, -0.008006757125258446, 0.00314576574601233, 0.005672342609614134, 0.0030995046254247427, -0.004864549729973078, -0.008248738944530487, 0.021593334153294563, 0.005145675502717495, 0.04461009055376053, 0.02119477465748787, 0.01982828788459301, 0.004619008861482143, 0.006309324409812689, -0.00745873898267746, 0.01118810847401619, 0.0010444369399920106, 0.008270090445876122, -0.00720963953062892, 0.0017161149298772216, -0.0017614865209907293, 0.02412702701985836, 0.011686306446790695, -0.02308792807161808, 0.0007557488861493766, 0.002578175626695156, 0.019629009068012238, 0.005480180028825998, 0.011736126616597176, -0.0038645947352051735, 0.010931892320513725, 0.0068110809661448, 0.03914414346218109, 0.008910630829632282, -0.0014154167147353292, 0.005868063308298588, -0.004939279519021511, 0.004345000255852938, 0.005629639606922865, 0.019529368728399277, -0.009088559076189995, -0.0064160809852182865, 0.011985225602984428, 0.0044837836176157, 0.03171387314796448, -0.019415495917201042, 0.02137981913983822, 0.003256081137806177, -0.004152837675064802, 0.013743152841925621, -0.011970991268754005, 0.008996035903692245, 0.009124143980443478, -0.010753964073956013, 0.008526306599378586, -0.0034482432529330254, 0.0017143356380984187, -0.01527333352714777, -0.000721497752238065, 0.01695297285914421, -0.0010310923680663109, 0.005387657787650824, 0.002300608204677701, -0.006369819864630699, -0.016070449724793434, 0.03256792947649956, -0.0076936036348342896, -0.0195436030626297, 0.007750540506094694, -0.031372252851724625, -0.011358918622136116, -0.005551351234316826, 0.019344324246048927, -0.016597116366028786, 0.01591387391090393, -0.02011297270655632, -0.012661351822316647, 0.02139405347406864, -0.003466036170721054, 0.011415855959057808, -0.004633243195712566, -0.007142026908695698, -0.004654594697058201, 0.015828467905521393, -0.005380540620535612, -0.01491747796535492, -0.005999729968607426, -0.022433152422308922, -0.005654549691826105, 0.01960054039955139, -0.015486846677958965, 0.003700900822877884, -0.007985405623912811, -0.00014745777298230678, -0.005238198209553957, -0.022675136104226112, -0.022746305912733078, -0.013394414447247982, 0.0020354955922812223, -0.02062540501356125, 0.01911657676100731, 0.011415855959057808, 0.00989279244095087, 0.015358738601207733, -0.014348108321428299, -0.013885495252907276, -0.000601396372076124, 0.006305765826255083, 0.006860901135951281, 0.03248252347111702, -0.006398288533091545, -0.0018113063415512443, -0.008818108588457108, 0.01662558503448963, 0.006387612782418728, -0.005949909798800945, 0.006971216294914484, 0.016070449724793434, -0.0019518693443387747, 0.00424891896545887, -0.00038121058605611324, -0.007508558686822653, -0.0003365062002558261, -0.005501531530171633, 0.0110244145616889, 0.01846180111169815, 0.014127478003501892, 0.015002883039414883, 0.0110244145616889, -0.010305585339665413, -0.0110244145616889, -0.004010495729744434, 0.0016912049613893032, 0.013743152841925621, -0.0021813963539898396, 0.00729504507035017, 0.0023361938074231148, -0.0004359234299045056, 0.007380450610071421, -0.0007971171289682388, -0.004480225034058094, 0.005811125971376896, 0.004779144190251827, 0.010768198408186436, 0.02082468569278717, 0.024653693661093712, -0.00781459454447031, -0.01430540531873703, 0.003562117228284478, -0.002074639545753598, 0.02129441499710083, 0.008846576325595379, -0.016796397045254707, -0.0035745720379054546, -0.0005564696039073169, -0.016782162711024284, -0.014099009335041046, 0.015301802195608616, -0.0038717116694897413, 0.010447927750647068, 0.015074053779244423, -0.010063603520393372, 0.01463279314339161, -0.002864639740437269, 0.023586126044392586, 0.012099099345505238, 0.009230900555849075, -0.010832251980900764, 0.0030123197939246893, 0.006839549634605646, 0.012825044803321362, 0.013465586118400097, 0.006106486544013023, 0.009522702544927597, -0.007287927903234959, -0.01770738698542118, 0.02062540501356125, -0.005825360305607319, 0.017308829352259636, 0.026546847075223923, -0.025194594636559486, -0.013693333603441715, -0.02266090176999569, 0.007337747607380152, 0.023998919874429703, -5.9161036915611476e-05, 0.006661621853709221, -0.006266621872782707, -0.0032400675117969513, 0.014817837625741959, 0.011465676128864288, 0.0006930292584002018, 0.023173334077000618, 0.005640315357595682, -0.0003789865004364401, -0.01118810847401619, 0.02290288358926773, -0.0213371179997921, 0.026276396587491035, -0.00580756738781929, 0.03242558613419533, 0.012469189241528511, -0.006277297157794237, -0.024610990658402443, -0.0047471169382333755, -0.012718288227915764, -0.0057933335192501545, -0.0029233559034764767, -0.022404685616493225, 0.004184864927083254, 0.0011689865496009588, -0.0008936430094763637, -0.007451621815562248], "fe6d77c4-5744-4c45-bfff-03e9475499a4": [0.00029678584542125463, -0.007977891713380814, -0.009590750560164452, 0.036606136709451675, 0.02750500477850437, 0.020679155364632607, -0.021111171692609787, 0.012838069349527359, -0.02505691535770893, -0.029722686856985092, 0.02482650801539421, 0.03142194822430611, 0.009662752971053123, 0.014486929401755333, 0.006948254071176052, 0.02122637629508972, -0.02643936686217785, 0.002093476476147771, 0.0006183225777931511, 0.00708865886554122, 0.03064431995153427, 0.015379762277007103, -0.09348821640014648, 0.028383437544107437, 0.01814466342329979, 0.03490687534213066, -0.012002838775515556, 0.013730902224779129, -0.026151355355978012, 0.010044367052614689, 0.00956914946436882, 0.0038881420623511076, -0.00549380062147975, -0.0008572813239879906, -0.014357324689626694, -0.055643633008003235, 0.021341580897569656, -0.006937453523278236, -0.0128884706646204, 0.01350049301981926, -0.009576350450515747, -0.002523692324757576, 0.009446745738387108, -0.005807012319564819, -0.05028663948178291, 0.009561949409544468, -0.022551223635673523, 0.03692295029759407, -0.010224374011158943, -0.04412321373820305, -0.014126916415989399, -0.02347285859286785, 0.008316303603351116, 0.03248758614063263, 0.04953781142830849, -0.020664755254983902, -0.03381243720650673, -0.008863523602485657, 0.005425398238003254, -0.051352277398109436, 0.015883781015872955, 0.00484937708824873, -0.02651136927306652, -0.010281975381076336, -0.008705117739737034, -0.01181563176214695, 0.006577440537512302, 0.020405545830726624, -0.02911786362528801, 0.0007425271323882043, -0.012586059980094433, 0.03286200016736984, -0.013918108306825161, 0.02911786362528801, 0.008251501247286797, 0.008849123492836952, 0.06365032494068146, 0.023285651579499245, 0.005220190621912479, 0.009446745738387108, 0.01689181663095951, -0.007351468782871962, 0.027058588340878487, -0.03179636225104332, 0.03755657374858856, -0.007682680618017912, 0.018000658601522446, -0.04337438568472862, 0.01249245647341013, -0.012730065733194351, 0.002829703502357006, 0.006667443551123142, -0.0003510128299240023, -0.0022680829279124737, -0.030529115349054337, 0.042884767055511475, -0.00188646896276623, 0.012946072965860367, -0.0034291252959519625, 0.01656060479581356, 0.01006596814841032, -0.01218284573405981, -0.008942726999521255, 0.024279287084937096, 0.02620895765721798, -0.01705022342503071, -0.008525111712515354, 0.0008163298480212688, -0.030845927074551582, 0.023242449387907982, -0.028340235352516174, -0.05512521415948868, -0.00579981179907918, -0.00028283533174544573, -0.0809885635972023, -0.021197574213147163, -0.04907699301838875, -0.048270564526319504, -0.010058768093585968, -0.0162005927413702, 0.01188043411821127, 0.02294003777205944, 0.002554293256253004, -0.0012141444021835923, -0.03067312203347683, 0.02406327985227108, -0.010821995325386524, -0.012931672856211662, 0.014026112854480743, -0.0021204776130616665, -0.001764064421877265, 0.03133554384112358, -0.005655806511640549, 0.024812106043100357, 0.0466001033782959, 0.007617878261953592, 0.013572496362030506, 0.016315795481204987, -0.014191718772053719, 0.024308089166879654, -0.05417478084564209, -0.01292447280138731, -0.020434346050024033, -0.013838905841112137, -0.005699008237570524, -0.013486092910170555, -0.004327358212321997, 0.03790218383073807, 0.0004162652185186744, 0.014681336469948292, -0.037930987775325775, -0.051640287041664124, -0.04279836267232895, 0.01255725882947445, 0.049797020852565765, -0.003641533199697733, -0.0370093509554863, 0.003790938528254628, 0.021859999746084213, 0.04809775948524475, -0.020088734105229378, -0.023314451798796654, -0.011642825789749622, 0.03827659785747528, 0.030097100883722305, -0.014530130662024021, 0.05904215946793556, 0.03001069650053978, -0.049163397401571274, 0.01643100008368492, 0.007905889302492142, -0.011210809461772442, 0.032602790743112564, 0.03133554384112358, -0.03804619237780571, 0.011743629351258278, 0.02072235755622387, 0.05549962818622589, 0.039486244320869446, -0.005821412894874811, -0.028585044667124748, -0.001584957935847342, 0.009813958778977394, -0.0006853750674054027, 0.009929162450134754, 0.025920948013663292, 0.021427983418107033, 0.026165755465626717, 0.04259675741195679, 0.008769920095801353, -0.021269576624035835, -2.046168447122909e-06, -0.011563622392714024, 0.03418685123324394, 0.017986256629228592, -0.003169915871694684, -0.04029267281293869, -0.022450421005487442, -0.012002838775515556, 0.014947745949029922, -0.028153028339147568, -0.054491590708494186, -0.013550895266234875, 0.03450366109609604, -0.055182818323373795, -0.004442562349140644, -0.01597018353641033, -0.021528786048293114, 0.023890472948551178, -0.006955454126000404, 0.03309240937232971, -0.029146665707230568, -0.015322159975767136, -0.0026406964752823114, -0.032113172113895416, -0.005695408210158348, 0.005439798813313246, 0.022925637662410736, 0.005230991169810295, -0.047579340636730194, 0.022752830758690834, 0.005104986485093832, 0.005230991169810295, -0.01347169280052185, -0.058523740619421005, 0.003704535309225321, 0.00024638400645926595, 0.02082316018640995, -0.016503002494573593, 0.03147955238819122, 0.02194640226662159, -0.004143751226365566, -0.02085196226835251, -0.015984583646059036, 0.026036150753498077, 0.04392160475254059, 0.04060948267579079, -0.010476382449269295, -0.050920262932777405, 0.010670790448784828, -0.0008154297829605639, 0.019714320078492165, 0.014530130662024021, -0.04204953834414482, 0.04141591489315033, -0.004528965335339308, 0.033726032823324203, 0.03554049879312515, 0.022464821115136147, -0.007218264043331146, -0.048241764307022095, -0.017064623534679413, 0.0059546176344156265, -0.036145322024822235, -0.03136434778571129, 0.010706791654229164, 0.013630097731947899, -0.030759524554014206, -0.0015282558742910624, -0.0010800394229590893, 0.007473872974514961, 0.054491590708494186, 0.002509291749447584, 0.0363469272851944, 0.003497527912259102, -0.010303576476871967, 0.013010875321924686, -0.031191540881991386, -0.0038809417746961117, 0.024970512837171555, 0.020880762487649918, 0.015178155153989792, 0.009259538725018501, 0.002169079380109906, 0.012139643542468548, -0.008798721246421337, 0.03649093210697174, -0.04570727050304413, -2.4722778107388876e-05, -0.04035027325153351, -0.06434155255556107, 0.000943234481383115, 0.021067969501018524, -0.025661738589406013, 0.0018009658670052886, -0.03510848432779312, -0.02224881388247013, -0.01365169882774353, -0.04973941668868065, -0.010713991709053516, 0.0054685999639332294, 0.01936870813369751, 0.029146665707230568, 0.00282250321470201, 0.018303068354725838, 0.031450748443603516, -0.029161065816879272, 0.008525111712515354, 0.009122733026742935, 0.07119620591402054, -0.01487574353814125, -0.009367542341351509, -0.027879418805241585, -0.0010116369230672717, 0.01414851751178503, 0.0009981364710256457, 0.027649011462926865, -0.009065131656825542, -0.015955783426761627, 0.0032599191181361675, 0.04181912913918495, -0.04346079006791115, -0.016171790659427643, -0.004975381772965193, 0.04023507237434387, 0.03047151304781437, -0.02852744236588478, -0.01597018353641033, -0.004734172951430082, -0.005504601169377565, 0.029175465926527977, 0.01850467547774315, -0.05555723235011101, -0.007992291823029518, 0.030615519732236862, -0.055672433227300644, -0.006962654646486044, -0.01728063076734543, 0.010051567107439041, 0.0016794613329693675, -0.07776284217834473, 0.001605658675543964, -0.04389280453324318, 0.029607482254505157, -0.05633486062288284, -0.04783855006098747, -0.014033312909305096, -0.04683051258325577, 0.02584894560277462, -0.006113023497164249, -0.005558602977544069, -0.018619880080223083, 0.005295793525874615, -0.030154701322317123, 0.042625557631254196, -0.003798138815909624, -0.01157082337886095, 0.008438708260655403, -0.054750800132751465, -0.0022950838319957256, 0.0010044367518275976, 0.031047534197568893, 0.03695175051689148, 0.009763556532561779, -0.006757447030395269, -0.02168719284236431, -0.0023526859004050493, 0.0016371598467230797, -0.00607342179864645, -0.005281392950564623, 0.004748573526740074, -0.019757522270083427, 0.0038269399665296078, -0.0027955020777881145, -0.00438856054097414, -0.022752830758690834, 0.019584715366363525, -0.010865197516977787, 0.024999313056468964, -0.030154701322317123, 0.009691554121673107, 0.003920543473213911, 0.0009396343375556171, -0.013464491814374924, -0.002385087078437209, 0.006329031195491552, 0.024639301002025604, 0.007711481768637896, -0.04475683718919754, 0.011218010447919369, -0.005850214045494795, 0.018663082271814346, -0.01758304238319397, 0.011887634173035622, -0.016733411699533463, 0.01157082337886095, 0.004384960047900677, 0.015494965948164463, 0.004489364102482796, -0.007517074700444937, -0.02161519043147564, 0.013406890444457531, -0.017597442492842674, -0.009648352861404419, -0.029146665707230568, -0.002413888229057193, 0.006746646482497454, -0.0032689194194972515, 0.012254848144948483, -0.016877416521310806, -0.007927489466965199, -0.011729228310286999, -0.016906218603253365, 0.005529802292585373, 0.028484240174293518, -0.01814466342329979, -0.03268919512629509, -0.016503002494573593, 0.018259868025779724, 7.858412573114038e-05, -0.021557588130235672, 0.01426372118294239, -0.027260195463895798, 0.03107633627951145, 0.024927310645580292, 0.02436569146811962, -0.026856981217861176, 0.06365032494068146, -0.008913925848901272, -0.025474531576037407, 0.012636462226510048, 0.04268316179513931, 0.0011871433816850185, 0.025604136288166046, 0.030385110527276993, 0.006203026510775089, 0.014386125840246677, 0.004208554048091173, 0.028369037434458733, -0.021730395033955574, 0.02013193629682064, 0.05100666359066963, -0.013615697622299194, -0.009475545957684517, 0.00014760540216229856, -0.01609978824853897, -0.010353978723287582, 0.03047151304781437, 0.0017964657163247466, -0.011059604585170746, -0.03608771786093712, -0.0015282558742910624, -0.002109677065163851, 0.0236312635242939, -0.02128397859632969, -0.0016893617575988173, -0.012672463431954384, 0.030730722472071648, -0.034618865698575974, 0.010224374011158943, 0.008359505794942379, -0.029204268008470535, -0.06295910477638245, 0.007092259358614683, 0.020088734105229378, 0.008849123492836952, 0.01569657400250435, -0.013018075376749039, 0.003330121748149395, -0.06065501645207405, -0.017770249396562576, 0.006447835825383663, 0.008395507000386715, 0.017107825726270676, 0.03127794340252876, -0.017496639862656593, 0.018202265724539757, -0.019253503531217575, 0.023444056510925293, 0.01635899767279625, -0.037758179008960724, -0.00938914343714714, -0.0018333670450374484, 0.022320816293358803, -0.0038269399665296078, -0.005511801224201918, -0.014803741127252579, -0.007524275220930576, 0.02651136927306652, -0.026928983628749847, 0.014076514169573784, -0.025244122371077538, 0.024077679961919785, 0.011851632967591286, 0.021600790321826935, 0.00037643875111825764, 0.022220011800527573, -0.00727226585149765, 0.041934333741664886, -0.01319088228046894, -0.029045861214399338, 0.004708972293883562, 0.023688865825533867, 0.0018108661752194166, -0.018259868025779724, 0.017727047204971313, -0.017899854108691216, -0.030817126855254173, 0.010749992914497852, -0.01196683757007122, 0.012650862336158752, -0.019483912736177444, -0.01847587525844574, -0.015120552852749825, -0.029161065816879272, 0.017107825726270676, -0.011347615160048008, 0.018749484792351723, -0.04631209373474121, -0.0290890634059906, -0.0340428426861763, 0.019555915147066116, -0.04187672957777977, 0.03358202800154686, 0.017597442492842674, 0.017640644684433937, -0.02013193629682064, -0.014558931812644005, 0.015422963537275791, -0.002890905598178506, 0.004896178841590881, -0.0020016732160001993, -0.019613517448306084, -0.011376415379345417, -0.04253915324807167, -0.0030475114472210407, -0.0019548714626580477, -0.03490687534213066, -0.019757522270083427, -0.03761417418718338, -0.018864689394831657, 0.0396590493619442, -0.018994294106960297, -0.017727047204971313, -0.02016073651611805, -0.03444606065750122, 0.0032275179401040077, 0.03608771786093712, -0.00862591527402401, -0.0005503701395355165, -0.05679567530751228, 0.06025180220603943, -0.022133609279990196, 0.002061075298115611, 0.026568971574306488, 0.02125517651438713, -0.024884110316634178, -0.013442891649901867, 0.012046040035784245, 0.0018063660245388746, -0.0238040704280138, 0.01414851751178503, -0.001110640587285161, -0.00530659407377243, -0.0035893311724066734, -0.020563950762152672, -0.003006109967827797, 0.02459609881043434, -0.004032147582620382, -0.015422963537275791, 0.003490327624604106, 0.011189209297299385, 0.006768247578293085, 0.008474709466099739, 0.028383437544107437, -0.015408563427627087, -0.0018882689764723182, -0.003006109967827797, -0.008417108096182346, 0.013644498772919178, -0.024538496509194374, -0.005198589991778135, 0.02403447777032852, -0.01208204124122858, 0.0025722940918058157, 0.0037333364598453045, 0.012355651706457138, -0.003967345226556063, -0.019426310434937477, -0.010951600037515163, 0.007373069413006306, -0.006109423469752073, -0.016906218603253365, -0.0037585373502224684, 0.012571659870445728, 0.021269576624035835, 0.0004914179444313049, -0.0054325987584888935, 0.008705117739737034, 0.011606824584305286, 0.00222308118827641, 0.04498724266886711, -0.034388456493616104, 0.002399487653747201, -0.019325505942106247, 0.05187069624662399, -0.017309432849287987, 0.020967166870832443, 0.020477548241615295, 0.006429835222661495, -0.0029017061460763216, 0.045793674886226654, 0.018634280189871788, 0.01854787766933441, -0.02855624444782734, 0.002358086174353957, -0.005356995854526758, -0.012420454062521458, 0.003704535309225321, 0.021543188020586967, -0.007531475275754929, -0.03087472915649414, 0.016503002494573593, -0.019008694216609, 0.004651369992643595, -0.026597771793603897, 0.00840990711003542, 0.0031051135156303644, -0.00047116720816120505, 0.016747811809182167, 0.011297212913632393, -0.029060261324048042, 0.024538496509194374, -0.022191211581230164, -0.015710974112153053, 0.005846613552421331, -0.00023490858438890427, -0.006203026510775089, 0.010764393024146557, 0.0012465455802157521, -0.044670432806015015, -0.015682173892855644, -0.0166902095079422, -0.012319650501012802, 0.02005993388593197, -0.020016731694340706, 0.008582714013755322, 0.0743643194437027, -0.02016073651611805, 0.0039025426376610994, 0.0020970767363905907, -0.01821666583418846, -0.006501837633550167, 0.06935293227434158, -0.0024858908727765083, 0.02954987995326519, -0.02062155306339264, 0.024970512837171555, 0.03021230362355709, 0.01563897170126438, 0.02013193629682064, -0.004305757582187653, 0.007855487056076527, 0.04360479488968849, 0.006195826455950737, 0.006023020017892122, -0.012938872911036015, -0.0022842835169285536, 0.008273102343082428, 0.003992545884102583, 0.020679155364632607, 0.023098444566130638, 0.009309940040111542, -0.0014040513196960092, -0.0027342999819666147, 0.011333214119076729, 0.021442383527755737, 0.019152700901031494, -0.0006304730195552111, 0.05800532177090645, -0.0126436622813344, -0.0324011854827404, -0.01337088830769062, -0.004604568239301443, -0.01386770699173212, -0.0012447454500943422, -0.003848540596663952, 0.021067969501018524, 0.0026172955986112356, 0.00435615936294198, 0.026655374094843864, 0.0014814541209489107, -0.009677154012024403, 0.009187535382807255, -0.02072235755622387, -0.00286750472150743, 0.005410997662693262, -0.013918108306825161, -0.00659544114023447, -0.02085196226835251, -0.011736429296433926, -0.005601804703474045, -0.0035497297067195177, -0.003524528816342354, 0.024236086755990982, -0.003481327323243022, -0.004266155883669853, -0.03107633627951145, -0.01347169280052185, 0.021557588130235672, -0.03464766591787338, -0.03430205211043358, -0.01325568463653326, -0.04089749604463577, -0.0069230529479682446, 0.011614024639129639, -0.014033312909305096, -0.015883781015872955, -0.024480894207954407, -0.003970945253968239, 0.003504728199914098, 0.021269576624035835, -0.0066350423730909824, -0.017957456409931183, -0.020146336406469345, 0.05443399026989937, -0.0026064952835440636, 0.0020376744214445353, -0.006541438866406679, 0.008474709466099739, 0.016387799754738808, -0.0037153358571231365, -0.014256521128118038, -0.0095835505053401, 0.012614861130714417, 1.7747523088473827e-05, 0.008517911657691002, 0.008510710671544075, -0.0003640633076429367, -0.011311613023281097, -0.0009657352929934859, 0.005843013525009155, 0.011801231652498245, 0.008424308151006699, -0.027087390422821045, -0.017640644684433937, -0.036145322024822235, 0.04213593900203705, 0.029434675350785255, -0.019872726872563362, -0.008359505794942379, -0.01159962359815836, 0.0044821640476584435, -0.014321323484182358, -0.04170392453670502, 0.009137134067714214, 0.03945744037628174, 0.0320555716753006, -0.01343569066375494, -0.033668432384729385, 0.024538496509194374, -0.02980908937752247, 0.0340428426861763, -0.010073168203234673, -0.03312120959162712, 0.03649093210697174, 0.01933990605175495, -0.004500164650380611, -0.038593411445617676, 0.0452752560377121, -0.007632278837263584, 0.039284635335206985, 0.014630935154855251, -0.0021060770377516747, 0.02740420214831829, 0.010937199927866459, -0.0191671010106802, 0.012852469459176064, 0.025863345712423325, 0.0016164591070264578, 0.02207600697875023, 0.03315000981092453, -0.008287502452731133, 0.009345941245555878, -0.004996982868760824, 0.006023020017892122, 0.016733411699533463, -0.007711481768637896, 0.0007645779405720532, 0.00723986467346549, -0.027778616175055504, -0.023717666044831276, -0.0005769210983999074, 0.014645335264503956, 0.01257885992527008, -0.053137943148612976, 0.012528457678854465, 0.01013077050447464, -0.008237101137638092, -0.01282366830855608, 0.04299997165799141, -0.003909742925316095, -0.0019746720790863037, 0.0004981682286597788, 0.012413254007697105, -0.039313435554504395, 0.0011682426556944847, 0.0021492785308510065, -0.02075115777552128, 0.009950763545930386, -0.0018072660313919187, -0.017511039972305298, 0.030961131677031517, -0.0017127626342698932, 0.04475683718919754, -0.029924293980002403, -0.03427325189113617, -0.04271196201443672, -0.012809268198907375, 0.02240721881389618, 0.02112557180225849, -0.009770757518708706, -0.007214663550257683, 0.021197574213147163, -0.001112440717406571, -0.0037189358845353127, 0.005331794731318951, 0.0476081408560276, -0.01237725280225277, 0.012521257624030113, -0.026151355355978012, -0.007459472864866257, 0.002221281174570322, -0.003164515597745776, -0.018101461231708527, 0.018331870436668396, 0.01801505871117115, 0.01356529537588358, 0.006977055221796036, -0.011858833022415638, -0.031018733978271484, 0.009907562285661697, -0.008107496425509453, 0.04988342151045799, -0.000793829036410898, 0.00505818473175168, -0.020679155364632607, -0.007999492809176445, 0.0027829017490148544, 0.03162355720996857, -0.014846942387521267, -0.017107825726270676, -0.018720684573054314, 0.03024110570549965, -0.011390816420316696, 0.029434675350785255, 0.0013743502786383033, 0.005868214648216963, 0.008928325958549976, 0.00828030239790678, 0.03263159096240997, -0.015912581235170364, 0.01599898561835289, 0.010843596421182156, 0.013903708197176456, 0.0037225361447781324, 0.019843924790620804, 0.008359505794942379, -0.026583371683955193, -0.00018686933617573231, 0.024005677551031113, 0.035713303834199905, -0.009641152806580067, 0.01421331986784935, -0.021082371473312378, -0.022781632840633392, -0.005446998868137598, -0.03484927490353584, 0.024840908125042915, -0.04081109166145325, -0.019455110654234886, 0.039313435554504395, 0.03620292246341705, -0.005839413497596979, 0.005234591197222471, -0.01702142134308815, -0.010641989298164845, -0.024178484454751015, -0.006858250591903925, 0.03136434778571129, 0.028469840064644814, 0.0088419234380126, -0.007920289412140846, 0.010771594010293484, -0.015048550441861153, -0.006264228839427233, -0.007074258755892515, -0.008121896535158157, 0.004640569444745779, -0.02710179053246975, 0.023674465715885162, 0.010008365847170353, -0.005018583498895168, 5.097842404211406e-06, -0.005457799416035414, -0.0033607229124754667, 0.025229722261428833, -0.026266559958457947, 0.013212483376264572, 0.0045217652805149555, 0.0008334304438903928, -0.019152700901031494, -0.013961310498416424, -0.047579340636730194, 0.04052308201789856, -0.03242998570203781, -0.01906629651784897, 0.007524275220930576, -0.0030781126115471125, -0.009317140094935894, -0.0023598861880600452, -0.0032707194332033396, -0.0095043471083045, -0.00380533910356462, 0.027015388011932373, 0.027836216613650322, -0.0024948911741375923, 0.0033697232138365507, 0.009115532971918583, 0.012960474006831646, -0.00739467004314065, 0.031681157648563385, -0.0013572495663538575, 0.027807416394352913, -0.00017044373089447618, -0.007193062920123339, -0.008244301192462444, 0.009381942451000214, 0.01100920233875513, 0.014018912799656391, 0.002095276489853859, -0.0023058843798935413, -0.003949344158172607, -0.009821158833801746, 0.025330526754260063, -0.003312121145427227, -0.014933345839381218, 0.007862687110900879, -0.031709957867860794, -0.019685519859194756, 0.007409070618450642, 0.008114696480333805, 0.025532133877277374, -0.0360301174223423, -0.020563950762152672, -0.040638286620378494, 0.013968510553240776, 0.006584640592336655, -0.008431508205831051, 0.021341580897569656, 0.001897269394248724, 0.01625819504261017, 0.025244122371077538, 0.002880105283111334, 0.0223064161837101, -0.004370559938251972, -0.007034657057374716, -0.017727047204971313, 0.0025992949958890676, 0.01722303032875061, -0.023098444566130638, -0.01100920233875513, 0.010029966942965984, 0.011678826995193958, -0.01285967044532299, 0.0034021243918687105, -0.004982582293450832, -0.00669264467433095, -0.02664097398519516, -0.0077474829740822315, -0.0043597593903541565, -0.02258002571761608, 0.0015552568947896361, 0.0002909356262534857, 0.008323504589498043, -0.025863345712423325, -0.00829470343887806, -0.0056306058540940285, -0.016546204686164856, -0.030356310307979584, 0.031681157648563385, -0.023775268346071243, -0.029636282473802567, -0.010886797681450844, 0.02628096006810665, -0.030932331457734108, 0.00822990108281374, 0.004575767088681459, -0.030500315129756927, 0.009871561080217361, 0.01857667975127697, -0.02885865420103073, 0.008510710671544075, 0.006847450044006109, 0.011398016475141048, -0.033265214413404465, 0.006285829935222864, -0.012600460089743137, 0.004561366513371468, -0.03320761397480965, 0.005483000539243221, -0.035223688930273056, -0.04138711094856262, 0.005843013525009155, 0.036174122244119644, 0.027418602257966995, 0.018720684573054314, -0.0063146306201815605, -0.008805922232568264, -0.013075677677989006, -0.02327125146985054, -0.01371650118380785, 0.01880708709359169, 0.013608497567474842, 0.008525111712515354, 0.007841086946427822, -0.02710179053246975, -0.03983185440301895, 0.029333872720599174, 0.01622939296066761, 0.0026748976670205593, 0.021802397444844246, -0.023948075249791145, -0.003798138815909624, -0.0015651572030037642, 0.01046198233962059, -0.029953094199299812, 0.0016542604425922036, -0.002280683256685734, -0.0014643535250797868, -0.011743629351258278, -0.009972364641726017, 0.0007731282385066152, -0.014717337675392628, 0.00036046316381543875, -0.020607152953743935, -0.025762541219592094, -0.0806429460644722, -0.019383108243346214, 0.008575513027608395, 0.023559261113405228, -0.018648682162165642, -0.006879851687699556, 0.012751665897667408, 0.006127424072474241, 0.0013248483883216977, 0.016416599974036217, -0.021787995472550392, -0.0064370352774858475, 0.012341250665485859, 0.004568567033857107, -0.006285829935222864, 0.002235681749880314, -0.00628942996263504, -0.019656717777252197, -0.0070814588107168674, 0.013133279979228973, -0.008237101137638092, 0.018519077450037003, 0.032602790743112564, -0.0023094844073057175, -0.002525492338463664, 0.022320816293358803, -0.016243793070316315, -0.01356529537588358, 0.017194228246808052, -0.010764393024146557, -0.01666140928864479, 0.0006849250057712197, 0.014076514169573784, -0.013183682225644588, 0.016517404466867447, -0.004330958239734173, -0.0025020914617925882, -0.0011304413201287389, -0.009446745738387108, -0.005871814675629139, 0.00021972053218632936, -0.019613517448306084, -0.0046837711706757545, -0.018994294106960297, -0.0026136955711990595, -0.0012033439707010984, -0.010368378832936287, -0.025733741000294685, -0.025992950424551964, 0.006037420593202114, -0.007452272344380617, 0.006087822373956442, -0.021831197664141655, -0.02217681147158146, 0.0032545188441872597, 0.00478457473218441, 0.0009567349916324019, 0.007167861796915531, -0.009554749354720116, 0.01181563176214695, 0.03712455555796623, -0.001109740580432117, -0.00807869527488947, 0.006368632894009352, -0.006069821771234274, 0.0070454576052725315, 0.030385110527276993, 0.0176838468760252, 0.04521765187382698, -0.01666140928864479, 0.02332885190844536, -0.005245391745120287, -0.02353046089410782, 0.02952107973396778, 0.0008833822794258595, 0.037066955119371414, 0.015653371810913086, 0.0353676937520504, 0.015149354003369808, -0.014933345839381218, -0.030615519732236862, 0.006987855304032564, 7.374644337687641e-05, 0.02954987995326519, 0.024567298591136932, 0.003643333213403821, -0.00033908738987520337, 0.0029089064337313175, 0.009921962395310402, 0.002907106187194586, 0.0162005927413702, -0.002219481160864234, 0.02376086823642254, -0.001122341025620699, -0.0069014523178339005, 0.03242998570203781, -0.017755849286913872, 0.031220341101288795, -0.004960981197655201, 0.0048997788690030575, -0.001772164716385305, -0.013133279979228973, -0.007682680618017912, 0.014040512964129448, 0.008071495220065117, -0.001131341326981783, -0.023660065606236458, -0.011887634173035622, 0.024912910535931587, 0.00822990108281374, 0.00754587585106492, 0.0007092259475030005, -0.0324011854827404, 0.02710179053246975, -0.005007782950997353, -0.0017028622096404433, -0.016142990440130234, 0.01236285176128149, 0.011707628145813942, 0.029866691678762436, -0.005825012922286987, 0.00821550004184246, 0.03185396268963814, -0.038852620869874954, 0.005565803498029709, 0.01208204124122858, -0.013738102279603481, 0.0007834786083549261, 0.0030655120499432087, 0.015782976523041725, -0.0075674764811992645, -0.004071748815476894, -0.0003514628333505243, 0.002539892913773656, -0.006638642866164446, 0.013270084746181965, 0.020995967090129852, 0.013745302334427834, -0.008438708260655403, -0.018288668245077133, 0.006235427688807249, -0.0027487005572766066, 0.007956290617585182, 0.01794305630028248, -0.0029233067762106657, 0.02753380686044693, 0.0006448735948652029, -0.002739700023084879, -0.024509696289896965, -0.0147893400862813, -0.00283870380371809, -0.028570644557476044, 0.019023096188902855, 0.02885865420103073, 0.0011736429296433926, -0.014026112854480743, -0.022767232730984688, 0.008121896535158157, 0.0029485076665878296, -0.013284485787153244, 0.0014706538058817387, 0.004550566431134939, 0.009813958778977394, 0.009612351655960083, 0.012953273020684719, -0.006123824045062065, 0.018202265724539757, -0.009929162450134754, 0.0010431380942463875, -0.012830869294703007, 0.009533148258924484, -0.002586694434285164, 0.005684607662260532, -0.03709575533866882, -0.011513221077620983, -0.026352962478995323, -0.003313921159133315, 0.008352305740118027, 0.014494129456579685, 0.014335723593831062, -0.02003113180398941, 0.005191389936953783, -0.01227644830942154, 0.012413254007697105, -0.005446998868137598, 0.004118550568819046, -0.0013941510114818811, 0.012103642337024212, 0.009353142231702805, 0.005000582896173, 0.0166902095079422, 0.0327179953455925, 0.005385797005146742, 0.004604568239301443, 0.018231065943837166, 0.009151534177362919, 0.022767232730984688, 0.009835559874773026, -0.027015388011932373, -0.01476053986698389, -0.001100740279071033, -0.0077474829740822315, 0.0018117661820724607, 0.020448748022317886, -0.02217681147158146, 0.015710974112153053, -0.029463477432727814, -0.01037557888776064, -0.0009909361833706498, 0.010173971764743328, -0.01360129751265049, -0.007646679412573576, 0.048673778772354126, -0.0026406964752823114, 0.02171599306166172, -0.016935018822550774, 0.011016402393579483, -0.015365361236035824, -0.02075115777552128, 0.009403543546795845, 0.012226046994328499, 0.007430671714246273, -0.01801505871117115, 0.014918945729732513, 0.02419288456439972, 0.01781345158815384, 0.019296705722808838, -0.05633486062288284, -0.014206118881702423, 0.019944729283452034, 0.008265902288258076, 0.013579696416854858, 0.0024840908590704203, -0.019973529502749443, -0.0031375146936625242, 0.0022608826402574778, 0.04700331762433052, -0.032141976058483124, 0.0076034776866436005, 0.026928983628749847, -0.026237759739160538, -0.022133609279990196, 0.003974545281380415, 0.014184518717229366, -0.003126714378595352, 0.02911786362528801, -0.04337438568472862, -0.015034149400889874, 0.012514057569205761, -0.0025740941055119038, 0.0191671010106802, 0.03248758614063263, 0.00012442954175639898, 0.01011636946350336, -0.004086149390786886, -0.004201353527605534, 0.011066804639995098, 0.002235681749880314, -0.00956914946436882, 0.015725374221801758, -0.031018733978271484, 0.026093753054738045, -0.01794305630028248, 0.016315795481204987, 0.015725374221801758, 0.005778211168944836, -0.01366609986871481, 0.005342595279216766, 0.018159063532948494, 0.002538092667236924, -0.009151534177362919, 0.0074234711937606335, -0.03490687534213066, 0.0013995511690154672, -0.0023364853113889694, 0.016315795481204987, -0.005256192293018103, -0.020491948351264, -0.0007870787521824241, 0.005486600566655397, 0.005162588786333799, 0.03830540180206299, -0.02852744236588478, -0.028109828010201454, 0.006962654646486044, 0.01011636946350336, 0.014335723593831062, -0.031220341101288795, -0.0006084222113713622, -0.004165352322161198, 0.026324162259697914, 0.0006061721360310912, -0.004755774047225714, 0.004251755308359861, 0.012355651706457138, 0.013723701238632202, -0.002559693530201912, 0.011218010447919369, 0.01170042809098959, -0.010699590668082237, -0.00945394579321146, 0.0025956949684768915, 0.0037225361447781324, -0.0010368379298597574, 0.0038521408569067717, -0.00018596930021885782, 0.017827851697802544, -0.024840908125042915, 0.010281975381076336, -0.01237725280225277, -0.018922291696071625, 0.0035479296930134296, -0.007790684700012207, -0.02643936686217785, 0.0028783052694052458, 0.032545190304517746, 0.008913925848901272, -0.010800395160913467, 0.0005422698450274765, -0.055384423583745956, 0.019685519859194756, -0.018749484792351723, 0.000635873235296458, 0.002082676161080599, -0.028801051899790764, -0.0024768905714154243, -0.00224288203753531, -0.0011340414639562368, -0.004903379362076521, -0.007110259961336851, -0.012449255213141441, 0.03695175051689148, -0.004194153472781181, 0.017741449177265167, -0.010577186942100525, -0.004431761801242828, 0.020779959857463837, 0.009201936423778534, -0.027360999956727028, -0.008049894124269485, -0.01778464950621128, 0.011995638720691204, -0.022695230320096016, -0.01735263504087925, -0.01735263504087925, -0.0008851823513396084, -0.022320816293358803, 0.009497147053480148, 0.01135481521487236, 0.019815124571323395, 0.00158855807967484, 0.017338233068585396, 0.03024110570549965, 0.004251755308359861, -0.005230991169810295, 0.0062570287846028805, 0.02740420214831829, -0.00951874814927578, -0.00761067820712924, -0.03991825878620148, 0.006001419387757778, -0.0022410820238292217, 0.007182262372225523, 0.00862591527402401, 0.012838069349527359, -0.005857414100319147, -7.442147034453228e-05, -0.010094769299030304, 0.0021834797225892544, -0.03147955238819122, 0.011376415379345417, -0.01573977619409561, -0.022104807198047638, -0.002228481462225318, -0.017986256629228592, 0.012780467048287392, 0.01860547997057438, 0.0009288339642807841, -0.006739446427673101, 0.0008986828615888953, -0.005083385854959488, 0.007131860591471195, -0.016070988029241562, 0.004608168266713619, -0.007488273549824953, 0.022623226046562195, -0.01393250934779644, -0.00285130413249135, -0.02541692927479744, -0.003312121145427227, -0.0181734636425972, -0.016906218603253365, -0.006357832346111536, 0.009417944587767124, 0.0019350707298144698, 0.004165352322161198, -0.030730722472071648, 0.004129351116716862, -0.008186698891222477, -0.015048550441861153, -0.0005976218380965292, -0.005126587580889463, 0.0006120223551988602, 0.02697218582034111, -0.018029458820819855, 0.0014787541003897786, -0.007034657057374716, -0.0003017360286321491, 0.006318231113255024, -0.020002331584692, 0.015408563427627087, 0.009828358888626099, 0.006300230044871569, 0.02330005168914795, -0.016315795481204987, 0.013075677677989006, -0.027548206970095634, 0.0027775014750659466, -0.015293358825147152, 0.016402199864387512, 0.006786248181015253, 0.01860547997057438, -0.008179498836398125, -0.01794305630028248, 0.010663589462637901, -0.0035749305970966816, -0.04570727050304413, -0.00042999073048122227, -0.020765559747815132, 0.005583804100751877, -0.010217173025012016, -0.005529802292585373, -0.017698246985673904, 0.006282229442149401, 0.016387799754738808, -0.02046314813196659, -0.0013149480801075697, -0.028815453872084618, 0.014990948140621185, 0.0074234711937606335, -0.021730395033955574, -0.015394162386655807, -0.015811778604984283, -0.031709957867860794, 0.007560276426374912, 0.004266155883669853, 0.010080368258059025, -0.03182516247034073, -0.00641183415427804, 0.024149682372808456, 0.02944907546043396, -0.003288720268756151, -0.00877712108194828, 0.002079075900837779, -0.0055946046486496925, 0.015336561016738415, -0.023616863414645195, -0.026799378916621208, -0.012780467048287392, 0.034129247069358826, 0.011023602448403835, 0.01643100008368492, -0.003319321433082223, 0.012658062390983105, 0.0030565117485821247, 0.017064623534679413, -0.0009009329369291663, -0.0016479602782055736, 0.0053281947039067745, -0.023789670318365097, -0.0022410820238292217, -0.010109169408679008, -0.004183352924883366, 0.0031087135430425406, 0.007275865878909826, -0.04818416014313698, -0.0004520415095612407, -0.010109169408679008, -0.013766903430223465, -0.022522423416376114, 0.007725882343947887, 0.004658570047467947, -0.002685698214918375, 0.008222700096666813, -0.003655933542177081, 0.0008833822794258595, -0.014285322278738022, -0.012550058774650097, -0.013457291759550571, 0.05017143487930298, 0.0035299290902912617, 0.028930656611919403, -0.02105356939136982, -0.006325431168079376, 0.018634280189871788, -0.041329510509967804, 0.009014729410409927, -0.020088734105229378, 0.00041716525447554886, 0.0013320486759766936, 0.001265446306206286, -0.007704281713813543, -0.03361082822084427, 0.016013385728001595, 0.00807869527488947, -0.017611844465136528, -0.018029458820819855, 0.0034003243781626225, 0.007992291823029518, 0.010044367052614689, 0.005126587580889463, 0.0053101941011846066, 0.0034003243781626225, -0.004874578211456537, 0.005223791114985943, -0.01643100008368492, -0.018619880080223083, -0.012305249460041523, 0.010159571655094624, 0.0016326596960425377, -0.0027433002833276987, -0.0007717782282270491, -0.011246810667216778, -0.010382779873907566, 0.01936870813369751, -0.009612351655960083, -0.0017073623603209853, -0.0064190346747636795, -0.024466494098305702, -0.018360670655965805, 0.008863523602485657, -0.004381360020488501, 0.02115437388420105, -0.00043854102841578424, 0.008877924643456936, -0.01319088228046894, 0.023084044456481934, 0.006447835825383663, 0.010641989298164845, -0.02105356939136982, -0.009374742396175861, -0.0009148834506049752, -0.03870861604809761, 0.003988945856690407, 0.0037657376378774643, 0.05734289437532425, 0.03620292246341705, 0.01692061871290207, 0.016344597563147545, -0.003637932939454913, -0.022652028128504753, 0.014918945729732513, -0.015422963537275791, 0.015178155153989792, 0.016906218603253365, -0.0034525261726230383, -0.024178484454751015, 0.04155991971492767, 0.011628424748778343, -0.0021078770514577627, 0.016647009178996086, 0.02674177661538124, -0.0012609460391104221, -0.047147322446107864, 0.027346599847078323, 0.018519077450037003, 0.014645335264503956, -0.007041857577860355, -0.007524275220930576, -0.003168115857988596, 0.01850467547774315, 0.008208299987018108, -0.003938544075936079, 0.003981745336204767, 0.011642825789749622, 0.01399731170386076, 0.011045203544199467, 0.0024282888043671846, 0.007160661742091179, -0.003524528816342354, 0.024020077660679817, 0.0006241727969609201, 0.005893415305763483, -0.011671626940369606, 0.006602641195058823, 0.02191760018467903, 0.0031483150087296963, 0.0062750293873250484, -0.006530638784170151, -0.006260628812015057, -0.0018738685175776482, -0.012528457678854465, -0.003978145308792591, 0.0013887507375329733, -0.01100920233875513, -0.023775268346071243, -0.006890651769936085, -0.0004565416893456131, 0.00045789172872900963, 0.006537838838994503, -0.007459472864866257, 0.004176152870059013, -0.012701264582574368, -0.011628424748778343, -0.004424561746418476, -0.012809268198907375, 0.009734755381941795, -0.0317387618124485, 0.003992545884102583, -0.017770249396562576, -0.01831747032701969, -0.014962146990001202, -0.018231065943837166, -0.005274192895740271, 0.01957031525671482, 0.010915598832070827, -0.01447972934693098, 0.008431508205831051, -0.02868584915995598, -0.0059906188398599625, -0.004248155280947685, 0.0176838468760252, 0.03631812706589699, 0.0012312449980527163, 0.002077275887131691, 0.006811448838561773, 0.0071030594408512115, -0.005580204073339701, -0.02482650801539421, -0.012197245843708515, -0.011678826995193958, -0.010908398777246475, 0.025474531576037407, 0.008121896535158157, -0.016949418932199478, -0.0054685999639332294, -0.0076898811385035515, -0.009993965737521648, 0.008633115328848362, 0.00767548056319356, -0.016171790659427643, -0.00225548236630857, -0.009144334122538567, 0.02475450560450554, 0.008438708260655403, 0.01728063076734543, 0.02095276489853859, 0.017669444903731346, -0.001285246922634542, -0.0011934436624869704, -0.007232664152979851, 0.0076898811385035515, 0.008676317520439625, -0.01804385893046856, 0.0057566105388104916, -0.010058768093585968, 0.0006142724305391312, 0.008510710671544075, -0.007041857577860355, -0.02541692927479744, -0.01877828687429428, -0.005425398238003254, -0.0032473187893629074, 0.002059275284409523, -0.0010728392517194152, -0.02003113180398941, -0.005274192895740271, -0.005976218264549971, -0.0021834797225892544, 0.0018180664628744125, -0.0032671194057911634, -0.017309432849287987, 0.007020256482064724, 0.005284992977976799, -0.021600790321826935, 0.017496639862656593, -0.0071030594408512115, 0.022032804787158966, 0.022968839854002, 0.012326850555837154, -0.022436020895838737, 0.006325431168079376, -0.0034705267753452063, 0.030269905924797058, -0.007963490672409534, 0.01378130353987217, 0.04340318590402603, 0.0021402782294899225, -0.004809775855392218, -0.006948254071176052, 0.0035875311587005854, -0.021471185609698296, -0.02164399065077305, 0.012938872911036015, 0.0008365805842913687, -0.007761883549392223, -0.019685519859194756, -0.0026460967492312193, -0.00254889321513474, 0.03623172268271446, -0.009885961189866066, -0.004687371198087931, 0.027044188231229782, -0.01990152709186077, -0.0011205410119146109, -0.02455289661884308, -0.023487258702516556, -0.025474531576037407, 0.010663589462637901, 0.0038881420623511076, -0.0016479602782055736, 0.016863016411662102, 0.008352305740118027, 0.012434854172170162, -0.009561949409544468, -0.0266121719032526, -0.002100676763802767, -0.00023918374790810049, -0.010476382449269295, -0.013622897677123547, -0.008417108096182346, 0.00024683400988578796, -0.011851632967591286, -0.009425144642591476, -4.00233366235625e-05, -0.016719011589884758, -0.024149682372808456, 0.00475937407463789, 0.0021132773254066706, -0.007869888097047806, 0.005652206484228373, 0.006019419990479946, -0.01870628446340561, 0.008820322342216969, 0.000795629108324647, 0.002709099091589451, 0.026151355355978012, 0.01827426813542843, -0.0075674764811992645, -0.01224764809012413, -0.00951874814927578, 0.01944071054458618, 0.013075677677989006, 0.003171715885400772, -0.007646679412573576, 0.0069590541534125805, 0.015365361236035824, 0.006487437058240175, 0.01092279888689518, -0.01419891882687807, -0.00991476234048605, -0.00015863079170230776, -0.00257769413292408, -0.0048997788690030575, 0.0005314694135449827, -0.0724058449268341, -0.019872726872563362, 0.012305249460041523, 0.004046547692269087, -0.016114188358187675, -0.007351468782871962, 0.026223357766866684, -0.003920543473213911, 0.015322159975767136, -0.024538496509194374, 0.001285246922634542, 7.554650801466778e-05, 0.031652357429265976, -0.010908398777246475, 0.008705117739737034, 0.013399689458310604, 0.011196409352123737, 0.008705117739737034, 0.0021168773528188467, -0.03401404246687889, 0.02684258110821247, 0.0021474785171449184, -0.02409208007156849, 0.015653371810913086, 0.005745809990912676, 0.007632278837263584, 0.0019440710311755538, 0.002880105283111334, 0.0026442967355251312, -0.010915598832070827, -0.013442891649901867, 0.001437352504581213, -0.004006946459412575, -0.007970691658556461, 0.008474709466099739, 0.004226554650813341, -0.016114188358187675, -0.007178662344813347, -0.00540379760786891, -2.4497770937159657e-05, -0.006062621716409922, -0.007841086946427822, -0.0011637425050139427, 0.036145322024822235, -0.003346322337165475, 0.010670790448784828, 0.012600460089743137, -0.015912581235170364, 0.000646223605144769, -0.0007717782282270491, 0.0023040841333568096, 0.003659533802419901, -0.01653180457651615, -0.007214663550257683, 0.01277326699346304, 0.0009819358820095658, -0.01692061871290207, 0.005911415908485651, -0.025676138699054718, 0.01903749629855156, 0.007617878261953592, -0.010317977517843246, 0.0020106735173612833, 0.006030220538377762, 0.009273938834667206, 0.002050274983048439, -0.004014146514236927, 0.003526328830048442, 0.02211920917034149, 0.020117536187171936, 0.0011547422036528587, 0.008366705849766731, -0.000401639670599252, -0.021787995472550392, -0.011146007105708122, -0.00583221297711134, 0.004525365307927132, -0.004978981800377369, 0.010778794065117836, 0.0021618790924549103, 0.004269755911082029, -0.025042515248060226, 0.00829470343887806, -0.0073874699883162975, -0.009741956368088722, 0.019195901229977608, -0.018331870436668396, 0.002043074695393443, -0.004914179444313049, 0.001124141039326787, -0.01472453773021698, -0.003841340309008956, -0.006159825250506401, -0.02105356939136982, 0.004514565225690603, -0.008726718835532665, 0.005191389936953783, 0.00882752239704132, -0.015365361236035824, -0.009965164586901665, 0.03876621648669243, 0.0008392806630581617, 0.02294003777205944, -0.02128397859632969, -0.00048151760711334646, -0.02191760018467903, -0.011038003489375114, 0.008798721246421337, -0.023616863414645195, -0.004618968814611435, -0.006696244701743126, 0.0015669572167098522, -0.001904469565488398, 0.021658390760421753, 0.005050984676927328, 0.0015696573536843061, 0.011642825789749622, 0.005360595881938934, 0.0005274192662909627, -0.025071315467357635, -0.024869708344340324, 0.01666140928864479, -0.004615368787199259, 0.007416271138936281, -0.014306923374533653, 0.006905052345246077, -0.014630935154855251, 0.0031501150224357843, -0.02095276489853859, 0.015077350661158562, -0.006735846400260925, 0.028973858803510666, 0.012521257624030113, -0.003830539993941784, -0.0020088735036551952, 0.022464821115136147, 0.0034003243781626225, -0.00435615936294198, 0.01460933405905962, 0.005796211771667004, 0.007589077576994896, 0.015394162386655807, 0.032545190304517746, -0.012895671650767326, -0.002881905296817422, 0.01563897170126438, 0.023847270756959915, 0.005515401717275381, -0.004096949938684702, 0.016474202275276184, 0.0009747356525622308, 0.01360129751265049, -0.025042515248060226, -0.005789011716842651, 0.028138628229498863, -0.01046198233962059, 0.011390816420316696, 0.013183682225644588, -0.015019749291241169, 0.007099459413439035, -0.01645980216562748, 0.004658570047467947, -0.014818141236901283, -0.011758029460906982, -0.022335216403007507, -0.003762137610465288, 0.005202190019190311, -0.004600968211889267, -0.007970691658556461, -0.008467509411275387, 0.02181679755449295, -0.0026190956123173237, -0.010562785901129246, -0.012110842391848564, 0.012218846939504147, 0.006509037688374519, 0.0252873245626688, 0.017367035150527954, 0.015595770440995693, 0.0069014523178339005, -0.010022765956819057, -0.008784321136772633, -0.0030853126663714647, 0.008201099932193756, -0.010303576476871967, 0.00696625467389822, -0.015034149400889874, 0.027821816504001617, -0.0065630399622023106, 0.008244301192462444, 0.0317387618124485, -0.009540348313748837, 0.014026112854480743, 0.016733411699533463, 0.009446745738387108, -0.0073478687554597855, 0.006332631688565016, 0.011830032803118229, 0.010267575271427631, -0.01990152709186077, 0.011167608201503754, 0.014350124634802341, -0.0251145176589489, 0.002062875311821699, 0.008481910452246666, -0.009929162450134754, 0.01257885992527008, -0.002550693228840828, 0.018994294106960297, 0.006480237003415823, 0.02059275284409523, 0.01292447280138731, 0.011448418721556664, -0.011311613023281097, 0.004723372869193554, -0.006887051742523909, 0.03133554384112358, 0.003974545281380415, -0.00598341878503561, 0.0064766365103423595, -0.002539892913773656, -0.020247140899300575, -0.01378130353987217, 0.017827851697802544, -0.0007492773584090173, 0.0062210275791585445, 0.002880105283111334, -0.0257769413292408, 0.01535096112638712, 0.001752364099957049, -0.018072661012411118, -0.0005238191224634647, -0.010649189352989197, 0.010533984750509262, 0.008107496425509453, 0.018519077450037003, 0.007495474070310593, 0.0006133724236860871, 2.5369678041897714e-05, -0.022436020895838737, 0.000949534703977406, 0.01645980216562748, 0.00377293792553246, -0.004143751226365566, -0.02403447777032852, 0.0014985547168180346, -0.032113172113895416, 0.0257769413292408, 0.023645663633942604, -0.012283649295568466, 0.012434854172170162, 0.01748223975300789, -0.024020077660679817, 0.00902192946523428, -0.012391652911901474, -0.01345009170472622, 0.009749156422913074, 0.002356286160647869, -0.018231065943837166, 0.006228227633982897, -0.007095859386026859, -0.0027793014887720346, 0.008265902288258076, -0.010778794065117836, 0.005713408812880516, -0.007067058235406876, -0.008669116534292698, -0.0037153358571231365, 0.006019419990479946, -0.004024947062134743, -0.005547802895307541, 0.02164399065077305, 0.010253175161778927, 0.01087239757180214, 0.00019721970602404326, 0.009101132862269878, 0.004532565828412771, 0.012982074171304703, 0.007157061714679003, 0.03001069650053978, 0.006577440537512302, -0.010757192969322205, 0.0012960473541170359, 0.00781948585063219, 0.015710974112153053, -0.010973201133310795, 0.002347285859286785, 0.005216590594500303, -0.004932180047035217, 0.0050041829235851765, -0.02260882593691349, -0.011362015269696712, -0.0005962717696093023, 0.017064623534679413, -0.015192555263638496, 0.0021906800102442503, -0.0330636091530323, 0.01985832490026951, 0.0005742209614254534, -0.012341250665485859, 0.007319067604839802, 0.02878665179014206, -0.00282250321470201, 0.0029701085295528173, -0.020880762487649918, 0.031249141320586205, 0.0029377073515206575, 0.009792357683181763, 0.021960802376270294, -0.012348451651632786, 0.007797885220497847, -0.009065131656825542, 0.006487437058240175, -0.009036330506205559, 0.00540379760786891, -0.0077474829740822315, 0.0013176482170820236, 0.027490604668855667, 0.02651136927306652, -0.017395835369825363, -0.034129247069358826, 0.005198589991778135, -0.008993128314614296, 0.011412417516112328, -0.010332377627491951, 0.006930253468453884, -0.0023256849963217974, -0.0020142735447734594, 0.021485585719347, 0.0073478687554597855, -0.003304920857772231, 0.002831503516063094, -0.03677894547581673, 0.01722303032875061, -0.006807848811149597, -0.03896782547235489, -0.003601931734010577, -0.0016470601549372077, -0.0038701414596289396, 0.010389979928731918, 0.02628096006810665, 0.00317351589910686, 0.0020898764487355947, 0.021932002156972885, -0.003956544678658247, -0.003169915871694684, -0.008618715219199657, -0.0058106123469769955, -0.009813958778977394, 0.015192555263638496, -0.00410775002092123, -0.01781345158815384, -0.015408563427627087, 0.018490275368094444, -0.021932002156972885, 0.0074234711937606335, 0.011887634173035622, 0.0019494713051244617, -0.020520750433206558, 0.009129934012889862, 0.004438962321728468, -0.0032761197071522474, 0.008323504589498043, 0.008640315383672714, -0.009475545957684517, -0.011275611817836761, -0.01794305630028248, -0.013061277568340302, 0.020319143310189247, -0.01153482124209404, 0.0048997788690030575, -0.005389397032558918, -0.011844432912766933, -0.0029611082281917334, 0.0019962729420512915, 0.01883588917553425, 0.022032804787158966, -0.014818141236901283, 0.01748223975300789, 0.002869304968044162, 0.02342965640127659, -0.015912581235170364, -0.011261211708188057, -0.00475937407463789, -0.007985091768205166, -0.014033312909305096, -0.009122733026742935, -0.0031213141046464443, -0.013457291759550571, -0.023012040182948112, -0.00662784231826663, 0.009353142231702805, -0.005367796402424574, -0.012629261240363121, -0.005079785827547312, 0.0067610470578074455, 0.006483837030827999, -0.001749663962982595, -0.017136625945568085, -0.01824546605348587, -0.022594425827264786, -0.011297212913632393, -0.0022734832018613815, 0.0015201555797830224, -0.00822990108281374, -0.010699590668082237, 0.011045203544199467, -0.009705955162644386, 0.02207600697875023, -0.020635955035686493, -0.008467509411275387, -0.014933345839381218, -0.015293358825147152, -0.001575957634486258, 0.014170117676258087, -0.0059906188398599625, 0.0004963681567460299, -0.006192226428538561, 0.020304741337895393, -0.01398291066288948, 0.005706208758056164, -0.02240721881389618, -0.0008176798583008349, 0.000943234481383115, 0.023213649168610573, -0.0005535202217288315, -0.006422634702175856, -0.011412417516112328, 0.004003346432000399, -0.0019656717777252197, 0.006087822373956442, -0.009439544752240181, 0.0007083258824422956, -0.0010431380942463875, 0.0042553553357720375, 0.001121441018767655, 0.01592698134481907, 0.010289176367223263, 0.001293347217142582, 0.0035587300080806017, -0.027360999956727028, -0.0024714902974665165, -0.02733219973742962, 0.003992545884102583, -0.015710974112153053, -0.019224703311920166, 0.0012024439638480544, -0.007466672919690609, 0.010051567107439041, -0.0015102551551535726, -0.017194228246808052, -0.012449255213141441, -0.03663494065403938, 0.011124406941235065, -0.006487437058240175, 9.056580893229693e-05, 0.011102805845439434, 0.0011853433679789305, -0.02386167272925377, -0.02845543995499611, -0.010490783490240574, 0.0012402452994138002, -0.011866034008562565, 0.007275865878909826, 0.004647769965231419, 0.001411251607351005, 0.0013104479294270277, 0.010627588257193565, 0.0010602388065308332, -0.022364016622304916, 0.018979893997311592, 0.008726718835532665, 0.005738609936088324, -0.020319143310189247, -1.6636546206427738e-05, 0.012910071760416031, 0.020146336406469345, -0.0047377729788422585, 0.000238508713664487, -0.02039114572107792, -0.0023688864894211292, -0.012326850555837154, 0.005918616428971291, -0.015293358825147152, 0.010209972970187664, 0.0016551604494452477, -0.008258702233433723, -0.004910579416900873, -0.016142990440130234, -0.00017888154252432287, -0.008669116534292698, -0.00010333502723369747, 0.01275886595249176, -0.009230737574398518, -0.01867748238146305, 0.0008986828615888953, 0.016301395371556282, -0.008856323547661304, -0.01913829892873764, 0.0017613644013181329, -0.024509696289896965, -0.005691808182746172, -0.007617878261953592, -0.008035494014620781, -0.011642825789749622, -0.02046314813196659, 0.024466494098305702, -0.023976875469088554, -0.027015388011932373, 0.0223064161837101, 0.015811778604984283, 0.006037420593202114, -0.025229722261428833, 0.02469690330326557, 4.5451663027051836e-05, -0.037700578570365906, 0.004176152870059013, -0.008085895329713821, -0.00693385349586606, -0.005036584101617336, 0.021082371473312378, -0.018202265724539757, 0.010368378832936287, 0.026036150753498077, 0.009439544752240181, -0.008107496425509453, 0.004039347637444735, -0.0009166835225187242, 0.0005373196327127516, 0.022191211581230164, 0.0024120882153511047, -0.030154701322317123, -0.016805414110422134, 0.0027847017627209425, 0.019152700901031494, -0.004946580622345209, 0.007805085275322199, 0.0002911606279667467, -0.015725374221801758, 0.009065131656825542, -0.023487258702516556, -0.0060770222917199135, 0.010973201133310795, -0.010814795270562172, -0.013406890444457531, 0.01648860238492489, 0.019714320078492165, 0.001911669853143394, 0.01837507076561451, -0.0061166235245764256, -0.0015174554428085685, -0.0029341073241084814, -0.009957963600754738, -0.0026226958725601435, -0.010317977517843246, 0.0024102882016450167, -0.013046876527369022, -0.0010530385188758373, 0.0023256849963217974, 0.00991476234048605, 0.013630097731947899, -0.019311105832457542, -0.007085058838129044, -0.012600460089743137, -0.00991476234048605, -0.008921125903725624, -0.012262048199772835, 0.014515730552375317, -0.015077350661158562, 0.02998189628124237, -0.004604568239301443, -0.0024192885030061007, -0.01573977619409561, -0.003340922063216567, -0.002550693228840828, 0.012499656528234482, 0.0031375146936625242, -0.007113859988749027, -0.012571659870445728, 0.018072661012411118, 0.007797885220497847, 0.003841340309008956, -0.009065131656825542, 0.005731409415602684, -0.001724463072605431, 0.0059726182371377945, 0.011714828200638294, 0.02201840467751026, -0.03225718066096306, -0.013579696416854858, -0.009525948204100132, 0.012341250665485859, -0.0022914838045835495, 0.01781345158815384, 0.0058106123469769955, 0.01107400469481945, 0.004802575334906578, 0.019685519859194756, 0.0026118955574929714, -0.0008784321253187954, -0.006977055221796036, 0.00537139642983675, -0.007761883549392223, -0.032602790743112564, 0.014400525949895382, -0.01046198233962059, -0.007697081193327904, 0.021831197664141655, 0.0006718745571561158, 0.0016650608740746975, 0.00040006462950259447, 0.015062950551509857, 0.004914179444313049, -0.007769084069877863, -0.01850467547774315, -0.003938544075936079, 0.006577440537512302, 0.00159485824406147, 0.019555915147066116, -0.014090915210545063, 0.003952944651246071, 0.010433181189000607, 0.023127244785428047, 0.0024030879139900208, 0.0011601423611864448, 0.020635955035686493, -0.005324594676494598, -0.011909235268831253, 0.0041617522947490215, -0.010937199927866459, 0.002491291146725416, -0.020506350323557854, 0.0107427928596735, 0.02029034122824669, 0.0006264228723011911, -0.006318231113255024, 0.008517911657691002, 0.005889815278351307, -0.02125517651438713, -0.01612859033048153, 0.012938872911036015, 0.0016119589563459158, 0.0019656717777252197, 0.02194640226662159, -0.025906546041369438, 0.02164399065077305, 0.001766764558851719, -0.014947745949029922, -0.005029384046792984, -0.04227994382381439, 0.017568642273545265, 0.017194228246808052, -0.0019980729557573795, 0.010577186942100525, 0.0016461601480841637, 0.0040573482401669025, -0.010656389407813549, 0.01939750835299492, -0.01535096112638712, 0.019512712955474854, 0.005699008237570524, 0.005072585307061672, -0.01831747032701969, 0.022752830758690834, -0.0021582788322120905, 0.0121468435972929, 0.026496969163417816, -0.00675024650990963, -0.01039717998355627, 0.019915927201509476, -0.007308267056941986, 0.03222837671637535, -0.004334558267146349, 0.0010836395667865872, -0.018591079860925674, 0.0024120882153511047, 0.02422168478369713, -0.020765559747815132, 0.012953273020684719, 0.013133279979228973, 0.014486929401755333, -0.00047071720473468304, 0.01039717998355627, -0.013874907046556473, 0.0012411453062668443, -0.035281289368867874, 0.014846942387521267, -0.009295539930462837, -0.0016632607439532876, 0.009878761135041714, 0.008539511822164059, 0.022292014211416245, 0.0037477370351552963, -0.023213649168610573, -0.031709957867860794, 0.0057566105388104916, -0.03545409440994263, -0.009194736368954182, -0.0038809417746961117, 0.00573500944301486, -0.003457926446571946, 0.023012040182948112, -0.009929162450134754, 0.014818141236901283, -0.007495474070310593, 0.024927310645580292, 0.015206955373287201, -0.013234083540737629, 0.0004909679410047829, -0.01699262112379074, -0.0008163298480212688, 0.035223688930273056, 0.004118550568819046, 0.014717337675392628, 0.007805085275322199, 0.012269248254597187, 0.021010367199778557, -0.008633115328848362, -0.00444616237655282, -0.011066804639995098, 0.02158638834953308, -0.000800579262431711, 0.009079531766474247, -0.003686534706503153, -0.025704938918352127, -0.020045531913638115, -0.015120552852749825, -0.03179636225104332, -0.0017784649971872568, 0.004366959445178509, 0.016171790659427643, 0.007229064125567675, 0.017928656190633774, 0.023717666044831276, -0.017971856519579887, -0.0013446491211652756, 0.0009999366011470556, -0.005212990567088127, 0.02171599306166172, -0.007769084069877863, -0.01417731773108244, 0.009353142231702805, 0.035050880163908005, 0.006113023497164249, 0.01969991996884346, -0.004575767088681459, 0.0067790476605296135, -0.01972872018814087, -0.030413910746574402, 0.01566777192056179, 0.003187916474416852, -0.016575004905462265, 0.0014895544154569507, -0.015710974112153053, 0.034129247069358826, -0.001425652066245675, 0.009065131656825542, 0.010836396366357803, -0.0026370964478701353, -0.019743122160434723, 0.030413910746574402, 0.011333214119076729, -0.004914179444313049, 0.016503002494573593, -0.008942726999521255, 0.018389472737908363, -0.014990948140621185, -0.013003675267100334, -0.015106151811778545, 0.016474202275276184, 0.006584640592336655, -0.005663007032126188, 0.014242120087146759, -0.010418781079351902, 0.0018387672025710344, 0.018965493887662888, -0.00481697591021657, -0.004370559938251972, 0.014227719977498055, -0.000807329488452524, 0.01738143526017666, -0.01113880705088377, -0.020103134214878082, 0.006825849413871765, -0.008885124698281288, -0.004975381772965193, 0.02085196226835251, 0.01615739054977894, -0.0072614653035998344, 0.011131606996059418, 0.026799378916621208, 0.0176838468760252, 0.004795375280082226, 0.01419891882687807, 0.006926652975380421, -0.01216124463826418, -0.014407726936042309, -0.005367796402424574, -0.019152700901031494, 0.033726032823324203, -0.006552239414304495, -0.0231416467577219, -0.01844707503914833, -0.013910908252000809, 0.0005332694854587317, -0.006642242893576622, 0.01758304238319397, 0.018418272957205772, 0.006084222346544266, 0.01347169280052185, 0.014004511758685112, 0.017107825726270676, 0.00011132282088510692, 0.0012132443953305483, 0.00576741062104702, -0.0032473187893629074, 0.007927489466965199, -0.022436020895838737, -0.0045397658832371235, -0.004460562951862812, -0.00600861944258213, -0.008978728204965591, -0.012103642337024212, 0.001430152216926217, -0.005576604045927525, -0.013298885896801949, -0.018432673066854477, 0.018159063532948494, -0.010281975381076336, 0.012139643542468548, 0.013205282390117645, 0.0010647389572113752, -0.000626872933935374, 0.005011382978409529, -0.022292014211416245, -0.0005967218312434852, 0.009374742396175861, -0.001893669250421226, 0.01622939296066761, 0.01788545399904251, -0.018029458820819855, -0.0238040704280138, -0.01566777192056179, 0.022133609279990196, 0.03626052662730217, -0.0007780784508213401, -0.020088734105229378, 0.004903379362076521, 0.0403214730322361, 0.02003113180398941, -0.015106151811778545, 0.022320816293358803, -0.013889308087527752, -0.008791521191596985, -0.0007632278720848262, -0.0049501811154186726, -0.01231245044618845, -0.019411910325288773, 0.004996982868760824, 0.0028963058721274137, -0.014407726936042309, 0.03242998570203781, -0.008352305740118027, -0.0009117333102039993, -0.022335216403007507, -0.010253175161778927, 0.0038521408569067717, -0.002507491735741496, 0.00475217355415225, -0.006491037085652351, 0.004636969417333603, 0.006224627606570721, 0.02717379294335842, -0.00736226886510849, 0.010058768093585968, -0.023616863414645195, 0.01893669180572033, 0.004320157691836357, -0.02422168478369713, -0.010973201133310795, 0.013910908252000809, -0.018979893997311592, 0.00699145533144474, 0.02095276489853859, 0.0032005170360207558, -0.010145170614123344, 0.010994802229106426, -0.0034471258986741304, -0.005173388868570328, 0.009345941245555878, -0.0049861823208630085, 0.0019764723256230354, -0.0026082952972501516, -0.008021092973649502, 0.008395507000386715, 0.037930987775325775, 0.005825012922286987, 3.422937516006641e-05, -0.0039025426376610994, -0.02630976215004921, 0.009792357683181763, -0.011002002283930779, 0.0015210555866360664, -0.003018710296601057, 0.013918108306825161, -0.01476053986698389, 0.014738938771188259, 0.001406751456670463, 0.0041617522947490215, 0.009230737574398518, -0.013745302334427834, 0.012190045788884163, 0.015134952962398529, 0.022004004567861557, -0.016416599974036217, 0.0059150164015591145, 0.007963490672409534, -0.007355068810284138, -0.007095859386026859, 0.02039114572107792, 0.023789670318365097, -0.01325568463653326, -0.0014733538264408708, 0.012802068144083023, 0.011412417516112328, 0.008114696480333805, 0.006415434647351503, 0.01883588917553425, 0.014688536524772644, -0.012946072965860367, 0.012571659870445728, 0.0024372891057282686, 0.025863345712423325, 0.017079023644328117, -0.0022410820238292217, -0.006872651167213917, -0.004770174156874418, 0.0011808432172983885, 0.027461804449558258, -0.002667697612196207, -0.01509175170212984, 0.0027739014476537704, 0.01612859033048153, -0.004014146514236927, 0.0059906188398599625, 0.014206118881702423, 0.0011340414639562368, -0.00014884294068906456, -0.027591409161686897, 0.00291610648855567, 0.006192226428538561, -0.012319650501012802, -0.014191718772053719, 0.0009828358888626099, 0.00317351589910686, 0.014184518717229366, 0.007711481768637896, 0.004312957637012005, -0.00503298407420516, -0.01804385893046856, -0.0029647082556039095, -0.026424966752529144, -0.027548206970095634, -0.02495611272752285, -0.0020016732160001993, 0.003040311159566045, -0.0005683708004653454, -0.006235427688807249, 0.008913925848901272, -0.004762974102050066, 0.000637673307210207, -0.0284266397356987, -0.025359326973557472, 0.01635899767279625, 0.016243793070316315, 0.008985928259789944, -0.004269755911082029, -0.018432673066854477, -0.011477219872176647, 0.011030803434550762, 0.010382779873907566, -1.4091139746597037e-05, 0.0024642900098115206, 0.005817812867462635, -0.00828030239790678, -0.006944654043763876, -0.017194228246808052, 0.006066221743822098, 0.010022765956819057, 0.003988945856690407, -0.030500315129756927, -0.0095043471083045, 0.017439037561416626, -0.021571988239884377, -0.02270963042974472, 0.00678264768794179, 0.006422634702175856, -0.034330856055021286, 0.0007096759509295225, -0.000788878824096173, -0.024567298591136932, 0.01421331986784935, -0.027447402477264404, 0.007776284124702215, -0.0035785308573395014, 0.0075098746456205845, -0.007553075905889273, 0.00754587585106492, 0.023948075249791145, -0.016546204686164856, -0.01135481521487236, 0.024610498920083046, -0.00739467004314065, -0.004316557664424181, 0.02465370111167431, -0.0019674720242619514, -0.011434017680585384, -0.008057094179093838, -0.022896837443113327, 0.0030655120499432087, 0.0019710720516741276, 0.0077474829740822315, 0.027836216613650322, -0.02168719284236431, 0.010685190558433533, 0.0052885934710502625, -0.018994294106960297, 0.02885865420103073, 0.002678497927263379, 0.008568312972784042, -0.0290890634059906, -0.022090407088398933, 0.01831747032701969, -0.0059150164015591145, -0.026828180998563766, -0.004492964129894972, 0.0016965620452538133, 0.0068654511123895645, -0.023516058921813965, -0.0010683391010388732, 0.028181830421090126, -0.00445336289703846, 0.0026550970505923033, 0.013788503594696522, 0.019383108243346214, -0.020275941118597984, -0.01332048699259758, -0.00938914343714714, 0.014054914005100727, 0.007934690453112125, -0.005555002950131893, 0.01939750835299492, 0.018029458820819855, 0.015941383317112923, 0.004273356404155493, -0.021312778815627098, 0.0014085514703765512, -0.01107400469481945, -0.014443728141486645, -0.004492964129894972, -0.00224288203753531, 0.0037333364598453045, -0.006753847002983093, -0.009165935218334198, -0.015538168139755726, -0.021413583308458328, -0.011714828200638294, 0.008057094179093838, -0.020146336406469345, 0.008885124698281288, 0.005965418182313442, -0.001271746470592916, -0.010994802229106426, -0.008885124698281288, 0.008582714013755322, 0.012528457678854465, 0.047809746116399765, 0.009597950614988804, 0.01445812825113535, -0.008222700096666813, -0.019541515037417412, -0.026655374094843864, 0.0025956949684768915, -0.00027856018277816474, -0.008993128314614296, 0.009763556532561779, -0.013824505731463432, -0.014270921237766743, 0.015293358825147152, -0.0005449699237942696, -0.017727047204971313, -0.011318814009428024, -0.010346777737140656, 0.004608168266713619, -0.0011295413132756948, 0.0133060859516263, -0.003501127939671278, -0.005889815278351307, -0.009417944587767124, 0.021759195253252983, 0.005061785224825144, 0.015134952962398529, 0.019887126982212067, 0.027519406750798225, 0.01666140928864479, -0.009770757518708706, 0.020938364788889885, -0.006300230044871569, -0.009266738779842854, 0.02819623053073883, -0.001762264408171177, 0.012290849350392818, -0.009079531766474247, 0.008071495220065117, 0.004629769362509251, -0.008755519986152649, 0.0006282229442149401, -0.004946580622345209, 0.0128884706646204, -0.003533529117703438, -0.004518165253102779, -0.001909869839437306, 0.00897152815014124, -0.0029467076528817415, 0.004212154075503349, 0.012514057569205761, 0.0005611705128103495, -0.00727226585149765, 0.0016839616000652313, 0.014731738716363907, -0.007409070618450642, -0.011434017680585384, 0.009446745738387108, -0.018130263313651085, -0.0069590541534125805, 0.01175082940608263, -0.019354308024048805, -0.018403872847557068, 0.006501837633550167, 0.027605809271335602, 0.0016929619014263153, 0.0069410535506904125, 0.0030547117348760366, -0.0032509188167750835, -0.004442562349140644, -0.018720684573054314, 0.01860547997057438, -0.003920543473213911, -0.0016380598535761237, -0.0007159761735238135, -0.002680297940969467, -0.03395644202828407, -0.014566132798790932, -0.0049681817181408405, -0.019023096188902855, -0.01188043411821127, -0.008301903493702412, -0.01824546605348587, 0.0024588899686932564, -0.009705955162644386, -0.0026550970505923033, -0.016344597563147545, -0.009756356477737427, -0.022551223635673523, 0.008877924643456936, 0.007877088151872158, -0.016618207097053528, 0.0032815199811011553, 0.00595101760700345, 0.0056702070869505405, -0.0019458711612969637, 0.008553912863135338, 0.006530638784170151, 0.004348958842456341, 0.00573500944301486, 0.013356488198041916, -0.0007875287556089461, 0.011124406941235065, 0.001084539690054953, -0.01993032917380333, -0.007502674125134945, -0.012967674061655998, -0.012470855377614498, 0.003024110570549965, -0.0039025426376610994, 0.0029035061597824097, -0.006602641195058823, 0.017035823315382004, -0.022882435470819473, 0.015394162386655807, -0.008035494014620781, 0.007052657660096884, 0.014508530497550964, 0.0069230529479682446, 0.019815124571323395, 0.016315795481204987, 0.004273356404155493, -0.00930273998528719, 0.008085895329713821, 0.008114696480333805, -0.001915269996970892, 0.008201099932193756, -0.007898688316345215, 0.005659407004714012, 0.011614024639129639, 0.0145445317029953, 0.012874070554971695, -0.019642317667603493, 0.005699008237570524, 0.008921125903725624, -0.009101132862269878, 0.012334050610661507, 0.02194640226662159, -0.03070192225277424, -0.011981237679719925, 0.005342595279216766, 0.0006894252146594226, 0.03375483304262161, 0.014731738716363907, 0.014285322278738022, 0.0028261032421141863, 0.010886797681450844, -0.01417731773108244, 0.015494965948164463, 0.006591841112822294, 0.01347169280052185, -0.019973529502749443, 0.013766903430223465, -0.006566639989614487, 0.013889308087527752, -0.0072434647008776665, -0.012254848144948483, 0.013284485787153244, 0.029837891459465027, -0.01913829892873764, 0.017842251807451248, -0.0017253630794584751, -0.0019944729283452034, 0.0073478687554597855, 0.03185396268963814, 0.021485585719347, -0.003672134131193161, -0.002185279969125986, 0.0198295246809721, 0.0026478967629373074, 0.01860547997057438, 0.013644498772919178, -0.006620641797780991, -0.010217173025012016, 0.002043074695393443, 0.009324341081082821, -0.0015705573605373502, -0.0007483773515559733, 0.0037009352818131447, 0.008942726999521255, 0.011873234063386917, 0.012838069349527359, -0.005839413497596979, 0.003652333514764905, 0.01371650118380785, -0.012730065733194351, 0.014436528086662292, -0.015955783426761627, 0.0026154955849051476, -0.0077474829740822315, 0.01543736457824707, 0.007797885220497847, 0.01765504479408264, 0.009151534177362919, 0.009770757518708706, -0.008208299987018108, 0.0107427928596735, -0.0020808761473745108, -0.007473872974514961, 0.009353142231702805, -0.024869708344340324, 0.015955783426761627, 0.008366705849766731, 0.008640315383672714, 0.010296376422047615], "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58": [0.014081722125411034, -0.016618095338344574, -0.01249475684016943, 0.0002464474528096616, -0.0008922350825741887, -0.002042612060904503, 0.033929187804460526, 0.020152386277914047, -0.034095507115125656, 0.059209760278463364, 0.0153984185308218, 0.012674936093389988, -0.004518347792327404, -0.003586265491321683, 0.006808706559240818, 0.03603590279817581, 0.0026403230149298906, 0.02458757348358631, 0.004057504236698151, -0.024462834000587463, 0.05821184441447258, -0.01805953122675419, -0.04590419679880142, -0.005935529246926308, 0.01980588771402836, 0.012619496323168278, -0.025571631267666817, 0.031212637200951576, -0.006832961458712816, -0.016853714361786842, 0.002392576076090336, 0.013936192728579044, -0.003814954776316881, 0.018267430365085602, 0.011912638321518898, -0.029965240508317947, -0.005284111015498638, -0.040193893015384674, -0.03440042957663536, -0.019306927919387817, 0.005848904140293598, 0.004338168539106846, 0.014899459667503834, -0.026860607787966728, -0.040304772555828094, 0.01043655164539814, -0.010117772966623306, -0.004331238567829132, 0.004078294150531292, 0.019819747656583786, 0.02177400141954422, -0.01413023192435503, 0.021413642913103104, 0.006846821866929531, 0.03248775377869606, -0.03420638665556908, 0.015245959162712097, 0.01347881369292736, -0.007796228863298893, -0.056770406663417816, 0.021981900557875633, -0.022661039605736732, -0.020124666392803192, -0.016437916085124016, 0.022480860352516174, -0.0020183571614325047, 0.011115689761936665, -0.002621265361085534, -0.02849608287215233, 0.013118455186486244, 0.01534297876060009, 0.006015223916620016, -0.03498254716396332, 0.014317341148853302, 0.027331845834851265, -0.008981255814433098, 0.02076222375035286, 0.046624913811683655, 0.017920931801199913, -0.01066524162888527, 0.014248041436076164, 0.0074635897763073444, 0.04756739363074303, -0.0076853493228554726, 0.0981285348534584, 0.001078478409908712, 0.008121938444674015, -0.03420638665556908, -0.011178060434758663, -0.011039460077881813, 0.002945242216810584, 0.013853033073246479, -0.01675669476389885, -0.01302836462855339, -0.027096226811408997, -0.02261945977807045, 0.008447647094726562, -0.007907108403742313, 0.012889765202999115, -0.009237665683031082, 0.02701306715607643, 0.013125385157763958, 0.0034355383832007647, 0.020609764382243156, 0.007622979581356049, -0.0011027333093807101, 0.013243194669485092, -0.011607718653976917, -0.02250858023762703, 0.03991669416427612, -0.00621965853497386, -0.022633319720625877, 0.009944523684680462, 0.006964631378650665, -0.06896717846393585, -0.02302139811217785, -0.038281217217445374, 0.0004179645038675517, 0.003255358664318919, -0.040471091866493225, 0.0313512347638607, -0.007380430120974779, -0.01686757430434227, -0.009300035424530506, -0.03548150509595871, 0.008648617193102837, 0.00029820576310157776, 0.022189799696207047, 0.03196107596158981, 0.0011980205308645964, -0.03470534831285477, -0.0034303409047424793, 0.030325599014759064, 0.01833673007786274, 0.019833607599139214, 0.015204379335045815, 0.0003105498035438359, 0.03373514860868454, -0.01463612075895071, 0.006832961458712816, -0.07938987016677856, -0.020914683118462563, -0.03991669416427612, 0.011947288177907467, 0.014954899437725544, 0.014857879839837551, -0.003255358664318919, 0.038336656987667084, -0.0005842840764671564, 0.012785815633833408, -0.06065119802951813, -0.046735793352127075, -0.0367843396961689, 0.0041545238345861435, 0.03198879584670067, -0.029632600024342537, 0.001472621108405292, 0.015051919966936111, -0.014144091866910458, 0.029715759679675102, 0.0025866155046969652, -0.022661039605736732, 0.004816337022930384, 0.059764157980680466, 0.04473996162414551, -0.002865547314286232, 0.050006747245788574, -0.001878025010228157, -0.051475901156663895, 0.01613299734890461, 0.001101867062970996, -0.042328327894210815, 0.023534215986728668, 0.032681792974472046, -0.02855152264237404, -0.008634757250547409, 0.006673572119325399, 0.03464990854263306, 0.014047072269022465, -0.008246677927672863, -0.03611906245350838, 0.0029140571132302284, 0.0008380946237593889, 0.01725565455853939, 0.03786541894078255, 0.03440042957663536, 0.023367896676063538, 0.015204379335045815, 0.006108778528869152, -0.0017628140049055219, -0.0011737656313925982, -0.009147575125098228, -0.019944487139582634, -0.006808706559240818, -0.011884918436408043, -0.02155224233865738, -0.004743572324514389, -0.0026974952779710293, 0.00846150703728199, 0.014802440069615841, 0.01178789883852005, -0.045654717832803726, -0.010651381686329842, 0.008412997238337994, -0.021191883832216263, 0.015550877898931503, -0.00840606726706028, -0.041829366236925125, 0.012342296540737152, -0.026874467730522156, 0.03792085871100426, -0.022259099408984184, -0.013555043376982212, -0.04726247489452362, 0.005481615196913481, -0.011670088395476341, 0.018849549815058708, 0.021275043487548828, -0.007519030012190342, -0.04022161290049553, -0.008212028071284294, 0.04551611840724945, -0.006025618873536587, -0.04404696077108383, -0.038502976298332214, -0.01697845384478569, -0.01984746754169464, -0.00465348269790411, 0.00016512846923433244, -0.0033402510453015566, 0.0018399100517854095, 0.0059389942325651646, 0.009244595654308796, -0.020970122888684273, -0.009972243569791317, 0.04681895300745964, 0.07589715719223022, 0.001791400252841413, -0.005751884542405605, 0.01911288872361183, 0.004733177367597818, 0.01600825786590576, 0.015301398932933807, 0.003338518552482128, 0.032737232744693756, 0.017976371571421623, -0.006593877449631691, 0.04681895300745964, -0.015703337267041206, -0.022134359925985336, -0.05593881011009216, -0.013915402814745903, 0.009403984993696213, -0.003121956717222929, -0.04654175415635109, 0.017616013064980507, 0.02899504266679287, -0.02363123744726181, 0.0069888862781226635, -0.015024200081825256, 0.03756050020456314, 0.042162008583545685, -0.001696112914942205, 0.06142735481262207, 0.01940394751727581, -0.04839899018406868, 0.009487144649028778, -0.019043589010834694, 0.0015713733155280352, 0.03647942095994949, 0.010083123110234737, -0.00217254925519228, -0.009327755309641361, 0.0060013639740645885, 0.006264703348278999, 0.0074012200348079205, -0.006860681809484959, -0.006074128672480583, 0.007491310127079487, -0.01362434308975935, -0.0414135679602623, -0.01512121967971325, 0.019944487139582634, 0.027331845834851265, 0.028967322781682014, -0.022037340328097343, -0.03625766187906265, -0.011101829819381237, -0.03955633565783501, -0.0036659601610153913, 0.007027001120150089, 0.012702655978500843, 0.012799675576388836, 0.009140645153820515, 0.019390087574720383, 0.0200276467949152, -0.01708933338522911, 0.009847503155469894, 0.015661757439374924, 0.032238274812698364, -0.00855159666389227, -0.023658957332372665, -0.00956337433308363, -0.0050484915263950825, 0.019445527344942093, -0.02217593975365162, 0.02866240404546261, 0.051531340926885605, 0.001992369769141078, 0.07151740789413452, 0.03512114658951759, -0.03090771660208702, -0.034594468772411346, -0.00900204572826624, -0.013575833290815353, 0.025183552876114845, 0.026320070028305054, -0.013728293590247631, 0.00029668983188457787, -0.021566102281212807, 0.006677037104964256, 0.026417089626193047, -0.058322723954916, 0.021760141476988792, 0.04266096651554108, -0.025737950578331947, 0.016340896487236023, -0.003790699876844883, -0.009355475194752216, -0.029632600024342537, -0.03636854141950607, -0.03858613595366478, -0.03367970883846283, 0.004941076971590519, -0.032349154353141785, -0.01911288872361183, -0.048260390758514404, -0.03969493508338928, 0.027941685169935226, -0.014802440069615841, -0.0023180788848549128, -0.03575870394706726, 0.06525270640850067, -0.013797593303024769, 0.0064760674722492695, -0.003168734023347497, 0.005997898988425732, 0.02640322968363762, -0.016562655568122864, 0.023894576355814934, 0.0008060434483923018, -0.0033350535668432713, -0.009064415469765663, -0.012314576655626297, 0.017893211916089058, -0.027498167008161545, -0.025585491210222244, -0.007851668633520603, -0.034150946885347366, 0.021732421591877937, 0.0002906261070165783, -0.0017151704523712397, -0.023617377504706383, 0.009036695584654808, -0.018267430365085602, 0.014206461608409882, 0.011406749486923218, -0.012058167718350887, -0.012162117287516594, 0.004871776793152094, -0.022661039605736732, -0.027567466720938683, 0.007394290063530207, -0.017754612490534782, 0.02607058919966221, -0.013749083504080772, 0.003121956717222929, 0.00011131282371934503, -0.012799675576388836, 0.02408861555159092, 0.01512121967971325, -0.029826639220118523, -0.011794828809797764, 0.011115689761936665, -0.011233500204980373, 0.011607718653976917, 0.032349154353141785, -0.056548647582530975, -0.018031811341643333, 0.005582100246101618, -0.006427557673305273, 0.007283410523086786, -0.04113636910915375, -0.02153838239610195, -0.026472529396414757, -0.017643732950091362, -0.002657647943124175, -0.017754612490534782, -0.0019611846655607224, -0.027609046548604965, 0.0075328899547457695, -0.03085227683186531, 0.0003688049619086087, 0.012446247041225433, 0.02138592302799225, -0.03952861577272415, -0.018128830939531326, -0.0031444791238754988, 0.017782332375645638, 0.014442081563174725, -0.006399837788194418, -0.0039604841731488705, -0.0058246492408216, 0.004816337022930384, 0.04573787748813629, 0.003388760844245553, -0.006555762607604265, 0.05205801874399185, -0.027664486318826675, -0.028801003471016884, 0.02583497017621994, 0.023589657619595528, -0.0031427466310560703, 0.029854359105229378, 0.020388005301356316, 0.016895294189453125, 0.023672817274928093, -0.008579316549003124, -0.030547358095645905, -0.010582081973552704, 0.007096300832927227, 0.0302424393594265, -0.019140608608722687, 0.011358239687979221, -0.012134397402405739, -0.019154468551278114, 0.0007532023591920733, -0.029299961403012276, 0.02464301325380802, -0.011884918436408043, -0.020748363807797432, 0.017518993467092514, 0.016119137406349182, 0.009549514390528202, -0.030879996716976166, -0.033873748034238815, -0.046791233122348785, 0.029410840943455696, 0.03492710739374161, -0.021635401993989944, 0.013485743664205074, -0.021011704578995705, -0.02662498876452446, -0.022924378514289856, 0.017574433237314224, -0.005748419556766748, -0.008510016836225986, 0.009999963454902172, 0.028856443241238594, -0.060484878718853, -0.00420303363353014, -0.03395690768957138, 0.013208544813096523, 0.019431667402386665, 0.02138592302799225, -0.004902961663901806, -0.00648646242916584, -0.004480232950299978, 0.006323608104139566, -0.013970842584967613, 0.024462834000587463, -0.02774764597415924, 0.0003192122676409781, 0.028967322781682014, 0.014677700586616993, -0.0019490572158247232, 0.01596667803823948, -0.0006146027008071542, -0.002945242216810584, -0.025086533278226852, 0.027096226811408997, -0.04867618903517723, 0.011975008063018322, -0.003134084166958928, 0.002877674764022231, 0.01072068139910698, -0.00997917354106903, -0.019251488149166107, -0.0004058370250277221, -0.01995834708213806, 0.022799639031291008, -0.017269514501094818, 0.007498240098357201, 0.0020564720034599304, -0.005076211411505938, 0.0028239674866199493, -0.02679130807518959, 0.0002438487281324342, 0.010755331255495548, -0.0220650602132082, 0.008586246520280838, -0.038669295608997345, 0.019500967115163803, -0.001271651592105627, -0.012959064915776253, 0.039500895887613297, -0.022189799696207047, 0.03750506043434143, -0.007948688231408596, -0.032182835042476654, -0.03930685296654701, 0.029299961403012276, -0.025419171899557114, 0.020096946507692337, 0.01049199141561985, 0.026749728247523308, 0.011552278883755207, -0.002945242216810584, 0.043742042034864426, -0.00990294385701418, -9.961848263628781e-05, -0.025710230693221092, -0.034483589231967926, -0.016715114936232567, 0.00018970824021380395, -0.007207180839031935, -0.011774037964642048, -0.02758132666349411, 0.003433805890381336, -0.017699172720313072, -0.017629873007535934, 0.018309010192751884, -0.03306987136602402, -0.0030717141926288605, 0.0106305917724967, -0.034040067344903946, -0.003007611958310008, 0.021053284406661987, 0.023201577365398407, 0.02656954899430275, -0.06636150181293488, 0.04371432214975357, -0.017976371571421623, 0.009937593713402748, 0.016437916085124016, 0.03265407308936119, -0.013083805330097675, 0.013638203032314777, 0.00018516044656280428, 0.015024200081825256, -0.0239777360111475, 0.034095507115125656, -0.023104557767510414, 0.005228670779615641, -0.021275043487548828, -0.04709615185856819, 0.010692961513996124, -0.02706850692629814, -0.022661039605736732, -0.02346491627395153, -0.01574491709470749, 0.04296588525176048, 0.0032224413007497787, -0.008544666692614555, 0.02504495345056057, 0.004421328194439411, -0.01725565455853939, 0.017130913212895393, -0.01568947732448578, 0.01418567169457674, 0.02938312105834484, 0.007484380155801773, 0.03201651573181152, 0.014885599724948406, 0.0012136129662394524, 0.040637411177158356, 0.009369335137307644, -0.0009294837363995612, -0.026029009371995926, -0.008031848818063736, 0.026999207213521004, 0.010388041846454144, -0.0008931013289839029, 0.006049873773008585, -0.0007848204113543034, 0.0035758703015744686, -0.011212710291147232, 0.005090071354061365, 0.0014275761786848307, -0.013846103101968765, -0.0025710230693221092, 0.012141327373683453, -0.023617377504706383, 0.03656258061528206, -0.020401865243911743, -0.002577953040599823, -8.332220022566617e-05, -0.006372117903083563, 0.014047072269022465, 0.00775464903563261, 0.006233518477529287, 0.023880716413259506, 0.03586958348751068, -0.00874563679099083, -0.025765670463442802, 0.03132351487874985, -0.006760196760296822, 0.0025571631267666817, 0.025294432416558266, 0.014927179552614689, -0.0016640617977827787, -0.006493392400443554, 0.04169076681137085, -0.02239770069718361, 0.004968796856701374, 0.00329174124635756, -0.0033714359160512686, 0.02927224151790142, 0.013783733360469341, 0.01316696498543024, 0.024213355034589767, -0.011579998768866062, 0.024629153311252594, 0.008371417410671711, 0.014428221620619297, 0.007789298892021179, -0.004650017712265253, 0.0019819745793938637, -0.011753248050808907, 0.030658237636089325, -0.003648635232821107, 0.007581399753689766, 0.020124666392803192, 0.003995134495198727, -0.012335366569459438, -0.024559853598475456, 0.029992960393428802, 0.01545385830104351, -0.008731776848435402, -0.0069888862781226635, -0.013361004181206226, -0.005401920527219772, -0.009833643212914467, 0.04546067863702774, -0.0025710230693221092, 0.009071345441043377, -0.016673535108566284, 0.0018191201379522681, 0.04022161290049553, 0.014622260816395283, -0.007415079977363348, 0.012931345030665398, -0.0022990212310105562, 0.01613299734890461, -0.003076911671087146, -0.021954180672764778, -0.018766390159726143, 0.017338814213871956, -0.016035977751016617, -0.002822234993800521, 0.026195330545306206, -0.01204430777579546, 0.006018688902258873, 0.01398470252752304, -0.0006384245352819562, -0.012959064915776253, 0.02392229624092579, 0.005245995707809925, 0.010928580537438393, 0.030990876257419586, 0.017671452835202217, -0.0302424393594265, 0.038780175149440765, 0.0022886262740939856, -0.02566865086555481, 0.008066498674452305, -0.007013141177594662, 0.00657308753579855, 0.010796911083161831, -0.0038946494460105896, -0.012460106983780861, -0.019528687000274658, -0.03564782440662384, -0.012175977230072021, -0.020457305014133453, -0.004081759136170149, -0.01958412677049637, -0.0313512347638607, -0.008780286647379398, 0.021843301132321358, -0.025585491210222244, 0.000348448142176494, -0.01708933338522911, 0.023104557767510414, 0.010242512449622154, -0.008385277353227139, 0.013617413118481636, -0.03775453940033913, 0.0004911624127998948, -0.021857161074876785, -0.040304772555828094, -0.014594540931284428, -0.005641005001962185, -0.018932709470391273, 0.010990950278937817, 0.01890498958528042, -0.020609764382243156, -0.01804567128419876, 0.0010880071204155684, 0.026583408936858177, 0.027401147410273552, 0.021732421591877937, -0.009230735711753368, 0.007078975904732943, 0.0051697660237550735, 0.0038911844603717327, 0.0048509868793189526, 0.007422009948641062, 0.0012993714772164822, 0.03614678233861923, 0.021746281534433365, 0.023936156183481216, -0.04110864922404289, -0.00024060028954409063, -0.05266785994172096, -0.01664581522345543, 0.004844056908041239, -0.0008207696955651045, 0.020776083692908287, -0.00734578026458621, 0.04557155817747116, -0.017962511628866196, 0.005419245455414057, 0.01266107615083456, 0.023506496101617813, -0.035509224981069565, 0.001638074405491352, 0.008870376273989677, 0.011753248050808907, -0.023146137595176697, 0.02403317578136921, -0.012383876368403435, -0.0030318668577820063, -0.026638848707079887, -0.001672724261879921, -0.0018884199671447277, 0.027096226811408997, 0.01128201000392437, -0.014164881780743599, -0.03148983418941498, 0.034594468772411346, -0.0362299419939518, 0.03780997917056084, -0.009646533988416195, -0.030381038784980774, 0.012848185375332832, 0.03423410654067993, 0.006247378420084715, 0.003076911671087146, 0.047511953860521317, -0.004449048079550266, 0.0313512347638607, -0.011427539400756359, -0.003565475344657898, 0.010034613311290741, 0.0013903274666517973, 0.013416443951427937, 0.01224527694284916, 0.031184915453195572, 0.006247378420084715, 0.029577160254120827, 0.030547358095645905, 0.023159997537732124, 0.015439998358488083, -0.02194032073020935, -0.008101148530840874, 0.005540519952774048, -0.029604880139231682, -0.0166319552809, 0.0013340214500203729, -0.0204295851290226, -0.03997213393449783, 0.02295209839940071, 0.018752530217170715, 0.00022717345564160496, -0.032626353204250336, 0.018184270709753036, -0.016742834821343422, -0.012855115346610546, -0.0011053320486098528, 0.03969493508338928, -0.002602207940071821, 0.0069265165366232395, 0.010582081973552704, 0.0031860589515417814, -0.02041572518646717, 0.0007718266570009291, 0.0003417347033973783, 0.006465672515332699, -0.004857916850596666, 0.03237687423825264, -0.014733140356838703, 0.028274323791265488, 0.029189081862568855, 0.060096800327301025, -0.02313227765262127, -0.037089262157678604, -0.027539746835827827, -0.019085168838500977, 0.017893211916089058, 0.015384558588266373, -0.0189465694129467, -0.022480860352516174, 0.04457364231348038, -0.015883516520261765, -0.010020753368735313, 0.015758777037262917, 0.033873748034238815, 0.01578649692237377, -0.006451812572777271, -0.01668739505112171, -0.004577252548187971, 0.02747044712305069, 0.016881434246897697, 0.002487863413989544, 0.01969500631093979, 0.013887682929635048, 0.020457305014133453, 0.012453177012503147, 0.02245314046740532, 0.011510699056088924, 0.019168328493833542, -0.024684593081474304, 0.029577160254120827, 0.004549532663077116, 0.03395690768957138, 0.02860696241259575, -0.0022816963028162718, -0.020166246220469475, 0.022314541041851044, -0.012002727948129177, -0.02938312105834484, 0.0017099728574976325, 0.00045564628089778125, -0.010304882191121578, -0.0019161398522555828, 0.03647942095994949, -0.009896013885736465, 0.029688039794564247, 0.037311021238565445, -0.010949370451271534, -0.03143439441919327, 0.013430303893983364, 0.011420609429478645, -0.0054573602974414825, 0.004151058848947287, 0.027054646983742714, 0.020374145358800888, -0.02589040994644165, -0.003970879130065441, 0.021413642913103104, -0.003180861473083496, -0.029743479564785957, -0.012792745605111122, -0.02396387606859207, -0.011857198551297188, 0.01804567128419876, 0.0025762205477803946, -0.007044326048344374, -0.027733786031603813, 0.006552297621965408, 0.00384960463270545, 0.02386685647070408, 0.018738670274615288, -0.0013288239715620875, -0.009570304304361343, 0.009397055022418499, 0.0029469747096300125, -0.019999926909804344, -0.018267430365085602, -0.003652100218459964, -0.004923751577734947, 0.003562010359019041, 0.00885651633143425, -0.01356890331953764, 0.02566865086555481, 0.014663840644061565, 0.005010376684367657, -0.0050173066556453705, 0.03029787912964821, -0.007491310127079487, 0.014317341148853302, -0.0019144073594361544, -0.007331920322030783, -0.02216207981109619, -0.0018312475876882672, 0.02048502489924431, 0.01765759289264679, 0.0014899460365995765, -0.015481578186154366, 0.006247378420084715, -0.029299961403012276, -0.036534860730171204, -0.01911288872361183, 0.03994441404938698, -0.08205097913742065, 0.008253607898950577, -0.0048544518649578094, 0.01833673007786274, -0.003562010359019041, 0.00384960463270545, 0.01550929807126522, -0.02278577908873558, 0.003565475344657898, 0.04573787748813629, 0.011968078091740608, 0.009937593713402748, -0.02774764597415924, -0.004213428590446711, -0.030990876257419586, 0.0029902870301157236, -0.025294432416558266, 0.02256402000784874, -0.00283436244353652, -0.0016900491900742054, -0.009466354735195637, -0.005498940125107765, -0.00638597784563899, 0.0024895959068089724, 0.015024200081825256, -0.00911292526870966, -0.006829496473073959, -0.008627827279269695, -0.010006893426179886, 0.024795472621917725, -0.024906354025006294, -0.034095507115125656, -0.007920968346297741, -0.028911883011460304, -0.018863409757614136, -0.00516283605247736, -0.016451776027679443, 0.03356882929801941, -0.013700573705136776, 0.001452697324566543, 0.007567539811134338, 0.00506235146895051, 0.027830805629491806, -0.013527323491871357, -0.009119855239987373, 0.023090697824954987, 0.004892566706985235, 0.014608400873839855, -0.013499603606760502, -0.009099065326154232, -0.00045088192564435303, -0.0028794072568416595, -0.02899504266679287, -0.0075328899547457695, -0.010048473253846169, 0.006254308391362429, -0.0030942365992814302, -0.007761579006910324, -0.004286193288862705, -0.012390806339681149, -0.002011427190154791, -0.007248760666698217, 0.017006173729896545, -0.029854359105229378, -0.005952854175120592, -0.00835062749683857, -0.0005747553077526391, -0.0026559154503047466, 0.015315258875489235, 0.012515546754002571, -0.005641005001962185, -0.025405311957001686, -0.005467755254358053, -0.010568222030997276, 0.0008281327900476754, 0.025710230693221092, -0.04620911553502083, 0.005578635260462761, -0.015758777037262917, -0.015758777037262917, -0.014913319610059261, -0.023215437307953835, 0.027290266007184982, -0.02932768128812313, -0.015384558588266373, -0.008593176491558552, -0.025225132703781128, 0.015038060024380684, 0.004071364179253578, 0.00947328470647335, -0.026832887902855873, 0.018406029790639877, -0.025280572474002838, 0.001613819389604032, -0.046292275190353394, 0.01817041076719761, -0.014345061965286732, -0.03991669416427612, 0.04576559737324715, 0.04288272559642792, 0.05488545447587967, 0.034428149461746216, -0.021399782970547676, -0.009951453655958176, -0.01618843711912632, -0.034095507115125656, -0.012827395461499691, -0.019334647804498672, -0.011219640262424946, 0.008170448243618011, 0.04354800283908844, 0.012196767143905163, -0.038891054689884186, 0.009660393930971622, 0.02442125417292118, 0.01591123640537262, -0.0038669295608997345, -0.012681866064667702, -0.023755976930260658, -0.01322240475565195, 0.0166319552809, -0.0023284738417714834, -0.00030643510399386287, -0.009549514390528202, 0.014372781850397587, -0.017907071858644485, -0.023839136585593224, -0.004272333346307278, -0.007207180839031935, 0.009189154952764511, -0.021164163947105408, -0.0319056361913681, -0.05483001470565796, -0.002188141690567136, -0.012390806339681149, 0.017352674156427383, 0.004622297827154398, 0.007622979581356049, 0.016257736831903458, 0.013097665272653103, -0.03265407308936119, -0.0030474592931568623, 0.004993051756173372, -0.011143410578370094, 0.017616013064980507, 0.00617807824164629, -0.0038738595321774483, 0.01148297917097807, -0.02059590443968773, 0.004899496678262949, -0.007435869891196489, -0.0010291022481396794, -0.00633053807541728, 0.010339532047510147, 0.024573713541030884, -0.007408150006085634, -0.019334647804498672, 0.048759348690509796, -0.03525974601507187, -0.0005704240757040679, -0.015204379335045815, -0.025308292359113693, 0.00210151681676507, 0.005155906081199646, 0.004466373007744551, -0.0049549369141459465, 0.004660412669181824, 0.004099084064364433, 0.013735223561525345, -0.014774720184504986, 0.014047072269022465, -0.0016051569255068898, 0.026486389338970184, -0.0037803049199283123, -0.02882872335612774, -0.003156606573611498, -0.00035169656621292233, -0.023645097389817238, -0.01563403755426407, -0.03897421434521675, 0.009556444361805916, 0.0016224818537011743, 0.0008476233342662454, -0.003264021361246705, 0.00552666001021862, -0.014622260816395283, -0.01407479215413332, 0.007692279294133186, 0.015273679047822952, -0.016396336257457733, 0.011697808280587196, -0.01088700070977211, 0.010692961513996124, -0.0033315885812044144, 0.022605599835515022, -0.004005529452115297, -0.029244521632790565, 0.0166319552809, 0.035426065325737, 0.029660319909453392, 0.03994441404938698, -0.0016363419126719236, 0.03445586934685707, 0.0019299997948110104, 0.007331920322030783, 0.019306927919387817, 0.00764376949518919, 0.009861363098025322, 0.013866893015801907, 0.019986066967248917, 0.026943767443299294, 0.00331426365301013, -0.0446845218539238, -0.0019299997948110104, 0.018128830939531326, -0.00829518772661686, -0.022647179663181305, -0.021566102281212807, 0.015079639852046967, -0.017574433237314224, 0.035509224981069565, 0.006874541752040386, 0.028690123930573463, 0.008898096159100533, 0.021649261936545372, 0.021566102281212807, -0.013097665272653103, 0.053166817873716354, -0.02701306715607643, 0.010907790623605251, -0.018073391169309616, -0.011129549704492092, 0.010096983052790165, -0.03237687423825264, 0.0012785815633833408, 6.540169852087274e-05, -0.015925098210573196, -0.016105277463793755, -0.003641705261543393, 0.005256391130387783, -0.027401147410273552, -0.012252206914126873, -0.014372781850397587, -0.01664581522345543, -0.023548075929284096, 0.017782332375645638, -0.004868311807513237, 0.0018208526307716966, 0.014303481206297874, 0.01269572600722313, -0.017588293179869652, 0.016784414649009705, -0.02041572518646717, 0.04681895300745964, 0.010554362088441849, -0.0460427962243557, 0.0033246586099267006, -0.013742153532803059, -0.005003446713089943, 0.003984739538282156, -0.002562360605224967, 0.017449693754315376, -0.015980537980794907, 0.01815655082464218, 0.0047297123819589615, 0.0014414361212402582, -0.008267467841506004, 0.012370016425848007, 0.01743583381175995, -0.0026819028425961733, 0.024047035723924637, -0.019029729068279266, 0.03329163044691086, 0.005294505972415209, -0.0037283299025148153, 0.003255358664318919, -0.00846150703728199, -0.0013210277538746595, 0.007044326048344374, -0.007103230804204941, 0.0023180788848549128, -0.008212028071284294, 0.01715863309800625, 0.017505133524537086, 0.030658237636089325, 0.006846821866929531, -0.020692924037575722, -0.0275258868932724, -0.01452524121850729, 0.011157270520925522, 0.0009286174899898469, -0.01556473784148693, 0.0008012790931388736, 0.021843301132321358, 0.03994441404938698, 0.015869656577706337, 0.004733177367597818, 0.0006293289479799569, -0.005287576001137495, -0.0012300716480240226, 0.012737305834889412, -0.0035724053159356117, 0.01550929807126522, -0.029715759679675102, 0.0048232669942080975, -0.02785852551460266, -0.0016917816828936338, -0.019833607599139214, 0.017588293179869652, 0.018142690882086754, 0.012383876368403435, 0.0026836353354156017, -0.0052009508945047855, 0.009514864534139633, -0.01573105715215206, 0.030048400163650513, -0.010824630968272686, 0.018918849527835846, -0.000358193414285779, 0.005076211411505938, -0.024296514689922333, 0.02482319250702858, 0.01743583381175995, 0.035841863602399826, 0.0019490572158247232, 0.019653426483273506, 0.004268868360668421, 0.010401901789009571, 0.020041506737470627, 0.01641019620001316, -0.04091461002826691, -0.01463612075895071, 0.002016624668613076, -0.01738039404153824, 0.011850268580019474, 0.0014934110222384334, -0.006586947478353977, 0.024698453024029732, -0.03939001262187958, 0.029632600024342537, -0.0077477190643548965, -0.018073391169309616, 0.0013652063207700849, -0.004750502295792103, 0.013263984583318233, -0.00607759365811944, 0.009584164246916771, -0.007934828288853168, 0.005907809361815453, -0.03151755407452583, -0.014428221620619297, -0.0160775575786829, 0.028218884021043777, -0.008253607898950577, -0.0004946273984387517, -0.0017697439761832356, 0.015038060024380684, 0.02352035604417324, -0.0028118400368839502, -0.05771288648247719, -0.0025675580836832523, -0.006389442831277847, 0.008336767554283142, 0.014455941505730152, 0.006704756990075111, -0.019362367689609528, -0.0014232449466362596, 0.02318771742284298, 0.019376227632164955, -0.022189799696207047, 0.03908509388566017, 0.00243242341093719, -0.017893211916089058, -0.011344379745423794, -0.028232743963599205, 0.006503787357360125, 0.020679064095020294, 0.02899504266679287, -0.03074139729142189, -0.0033662384375929832, 0.014511381275951862, 0.02910592220723629, -0.00014498821110464633, 0.010990950278937817, -0.0031895239371806383, 0.015135079622268677, -0.0014578948030248284, 0.015647897496819496, -0.01573105715215206, 0.01747741363942623, 0.010304882191121578, 0.005609820131212473, -0.024379674345254898, 0.00042337854392826557, 0.010207862593233585, -0.026306210085749626, 0.017518993467092514, -0.01347881369292736, 0.010318742133677006, 0.008586246520280838, 0.007318060379475355, -0.010394971817731857, -0.014192601665854454, -0.015356838703155518, -0.016562655568122864, -0.0025987429544329643, 0.0014293086715042591, 0.01148297917097807, -0.004705457482486963, -0.056271448731422424, 0.008634757250547409, 0.007470519747585058, -0.011434469372034073, 0.002661112928763032, -0.021898740902543068, 0.007484380155801773, 0.005190555937588215, 0.006434487644582987, 0.007227970752865076, -0.0006340933032333851, 0.022536300122737885, -0.0015254621393978596, 0.006410232745110989, -0.0015540483873337507, 0.010755331255495548, -0.006164218299090862, 0.03282039240002632, -0.0020148921757936478, 0.006496857386082411, 0.017629873007535934, 0.009653463959693909, 0.02719324640929699, 0.02199576050043106, 0.017214074730873108, -0.027262546122074127, -0.021288903430104256, 0.0018555024871602654, -0.00020302679331507534, 0.015384558588266373, -0.014982620254158974, 0.0034511308185756207, -5.847171996720135e-05, -0.015758777037262917, 0.009965313598513603, -0.028468362987041473, -0.036978382617235184, 0.007636839523911476, 0.02296595834195614, 0.020679064095020294, 0.0006782719283364713, -0.009244595654308796, -0.04119180887937546, 0.008468437008559704, -0.007768508978188038, 0.010845420882105827, -0.0027719924692064524, -0.050339385867118835, -0.018683230504393578, -0.016853714361786842, -0.00978513341397047, 0.010457341559231281, 0.018378309905529022, -0.04191252589225769, 0.05599424988031387, 0.026375509798526764, 0.007366570178419352, 0.0026472529862076044, 0.013180824927985668, 0.013354074209928513, 0.008849586360156536, -0.01866937056183815, 0.0024428183678537607, 0.017075473442673683, 0.018378309905529022, -0.011794828809797764, -0.017269514501094818, -0.0014769523404538631, 0.001177230617031455, -0.003449398325756192, 0.042439207434654236, 0.027886245399713516, 0.002849954878911376, 0.008953535929322243, 0.008523876778781414, 0.010547432117164135, -0.010692961513996124, -0.005990969017148018, 0.03689521923661232, 0.019930627197027206, 0.025848830118775368, -0.035398345440626144, -0.023769836872816086, -0.02656954899430275, -0.00016566987324040383, -0.012737305834889412, 0.01305608544498682, -0.016507215797901154, -0.003988204523921013, 0.01653493568301201, -0.003918904345482588, -0.005800394341349602, -0.013042224571108818, 0.004067899193614721, -0.006888401694595814, -0.016798274591565132, 0.017241794615983963, -0.02932768128812313, 7.628393359482288e-05, 0.006687432061880827, 0.027040787041187286, 0.002215861575677991, -0.00814965832978487, -0.01810111105442047, -0.021178023889660835, 0.00613303342834115, 0.016950733959674835, -0.027110086753964424, -0.024837054312229156, -0.018406029790639877, -0.00902283564209938, 0.005256391130387783, 0.006008293945342302, -0.018253570422530174, -0.023395616561174393, -0.0024774684570729733, 0.019279208034276962, 0.00612263847142458, -0.01367978285998106, -0.0346221886575222, 0.003097701584920287, -0.05058886483311653, -0.014234181493520737, 0.013735223561525345, 0.0007627310696989298, 0.0011460456298664212, 0.03611906245350838, -0.02138592302799225, 0.030990876257419586, 0.00961881410330534, 0.011025600135326385, -0.00613303342834115, -0.029854359105229378, -0.0027217501774430275, 0.011926498264074326, -0.0015852332580834627, -0.005211345851421356, -0.0346221886575222, 0.02611217088997364, -0.005086606368422508, 0.03132351487874985, -0.013783733360469341, 0.019334647804498672, 0.003503105603158474, -0.00809421855956316, -0.015384558588266373, -0.023506496101617813, -0.004965331871062517, 0.024227214977145195, -0.026929907500743866, 0.01787935197353363, -0.004022854380309582, -0.012335366569459438, 0.019168328493833542, 0.017588293179869652, 0.02318771742284298, 0.008634757250547409, 0.04911970719695091, -0.04485084116458893, -0.005405385512858629, -0.01469156052917242, -0.013132315129041672, -0.006659712176769972, -0.019473247230052948, -0.0017212341772392392, 0.005097001325339079, -0.004743572324514389, 0.003943159244954586, -0.002345798769965768, 0.013998562470078468, -0.03265407308936119, 0.017976371571421623, 0.053388576954603195, 0.028579242527484894, -0.0005929465405642986, 0.026819027960300446, -0.016313176602125168, 0.021524522453546524, -0.0038357446901500225, -0.016798274591565132, -0.003499640617519617, -0.004941076971590519, 0.019362367689609528, -0.0017810051795095205, 0.014941039495170116, -0.02070678398013115, 0.006625062320381403, 0.0008532539359293878, 0.007553679868578911, 0.028052564710378647, -0.014871739782392979, -0.011510699056088924, -0.008905026130378246, 0.0009675986366346478, 0.005024236626923084, 0.005786534398794174, 0.006358257960528135, 0.015273679047822952, -0.03772681951522827, -0.007311130408197641, 0.0022695688530802727, -0.008780286647379398, -0.01670125499367714, 0.023423336446285248, -0.00010541151277720928, -0.012030447833240032, 0.01754671335220337, 0.024379674345254898, -0.018738670274615288, -0.005207880865782499, -0.0023336713202297688, -0.008281327784061432, 0.02616761066019535, 0.011579998768866062, 0.041607607156038284, -0.022924378514289856, -0.01110875979065895, 0.009119855239987373, 0.00020941537513863295, 0.010734541341662407, -0.020207826048135757, 0.003373168408870697, 0.004542602691799402, 0.0064448826014995575, -0.027401147410273552, -0.041718486696481705, -0.004643087740987539, 0.009008975699543953, -0.008648617193102837, 0.0015973607078194618, 0.014539101161062717, 0.0002483965072315186, -0.017976371571421623, -0.010803841054439545, -0.0031756639946252108, -0.010277162306010723, -0.0033471810165792704, 0.005876624025404453, -0.017449693754315376, 0.011025600135326385, -0.004435188136994839, -0.005214810837060213, 0.005616750102490187, -0.0031704665161669254, -0.0056825848296284676, -0.0009112925617955625, -0.0016406731447204947, -0.0017117054667323828, 0.013444163836538792, 0.00013134480104781687, 0.00248093344271183, -0.014871739782392979, -0.011094899848103523, -0.003023204393684864, 0.0003508303198032081, 0.012993714772164822, 0.011385959573090076, 0.042162008583545685, 0.00024904622114263475, 0.000566525966860354, 0.0020755294244736433, -0.012314576655626297, -0.0009433437371626496, 0.017006173729896545, -0.00225051143206656, -0.014303481206297874, 0.0030370643362402916, 0.0021430966444313526, 0.04465680196881294, 0.007331920322030783, 0.006798311602324247, -0.022855078801512718, 0.012078957632184029, -0.013215474784374237, -0.007823948748409748, 0.021399782970547676, 0.024975653737783432, 0.007927898317575455, 0.005523195024579763, -0.003014541929587722, -0.014400501735508442, 0.006808706559240818, -0.016964593902230263, 0.007761579006910324, -0.0017333616269752383, 0.031628433614969254, -0.00900204572826624, 0.035176586359739304, -0.002404703525826335, 0.0055197300389409065, -0.014830159954726696, 0.022855078801512718, -0.0014752198476344347, 0.010540502145886421, -0.008627827279269695, 0.009286175481975079, 0.005329155828803778, -0.0006306283175945282, -0.015135079622268677, -0.0139639126136899, -0.021593822166323662, 0.004386678338050842, -0.004220358561724424, 0.013915402814745903, -0.005176695995032787, 0.02408861555159092, -0.015190519392490387, 0.012875905260443687, -0.010228652507066727, 0.0031825939659029245, 0.019431667402386665, 0.02120574377477169, -0.021025564521551132, -0.006313213147222996, 0.010727611370384693, -0.0023163463920354843, 0.005796929355710745, -0.015218239277601242, -0.025918129831552505, -0.01641019620001316, 0.0037006100174039602, 0.012709585949778557, 0.025197412818670273, 0.002054739510640502, -0.0015575133729726076, -0.019306927919387817, -0.009653463959693909, -0.0074289399199187756, -0.00846150703728199, 0.01523209922015667, -0.005679119843989611, -0.0023042187094688416, 0.005346480756998062, -0.01573105715215206, -0.012792745605111122, 0.009424774907529354, 0.01889112964272499, -0.003218976315110922, 0.0014968760078772902, 0.003411283250898123, 0.01528753899037838, -0.034040067344903946, -0.011219640262424946, 0.0031132942531257868, 0.014927179552614689, 0.0319056361913681, 0.015841936692595482, -0.007629909552633762, -0.005578635260462761, -0.00905748549848795, 0.008246677927672863, -0.004085224121809006, 0.005710304714739323, -0.0016259468393400311, 0.01027023233473301, -0.00885651633143425, -0.014622260816395283, -0.026126030832529068, -0.005058886483311653, 0.0015297933714464307, 0.0002540271379984915, 0.005228670779615641, 0.00826053787022829, -0.007200250867754221, -0.006541902665048838, 0.0016302780713886023, 0.010880070738494396, -0.014192601665854454, 0.014261901378631592, 0.013063015416264534, -0.013575833290815353, 0.014012422412633896, 0.01224527694284916, 0.000779622932896018, 0.014047072269022465, -0.008045708760619164, -0.008939675986766815, -0.01675669476389885, 0.005013841670006514, -0.0003062185423914343, -0.012640286237001419, 0.018253570422530174, -0.010006893426179886, -0.0016424056375399232, 0.029577160254120827, -0.005984039045870304, -0.003530825488269329, -0.003846139647066593, -0.0160775575786829, -0.011877988465130329, -0.011670088395476341, 0.0001267970073968172, 0.01422032155096531, -0.011455259285867214, -0.01962570659816265, -0.010277162306010723, -0.021954180672764778, -0.005630610045045614, 0.013118455186486244, 0.0037803049199283123, -0.005072746425867081, 0.007165601011365652, 0.020401865243911743, -0.00885651633143425, 0.0015358570963144302, -0.0008194703259505332, 2.168326136597898e-05, 0.007366570178419352, 0.019154468551278114, 0.032681792974472046, 0.021760141476988792, 0.014033212326467037, 0.007297270465642214, 0.022272959351539612, -0.00470892246812582, -0.03304215148091316, 0.01585579663515091, -0.003468455746769905, 0.0316007137298584, -0.03484394773840904, -0.0006340933032333851, -0.013887682929635048, 0.0009286174899898469, -0.01068603154271841, -0.030159279704093933, 0.026527969166636467, -0.008842656388878822, -0.011579998768866062, 0.0022920912597328424, -0.010360321961343288, -0.011081039905548096, -0.0038357446901500225, 0.005710304714739323, -0.0010498921619728208, -0.0036278453189879656, 0.015772636979818344, 0.01883568987250328, -0.00984057318419218, -0.0362299419939518, -0.003215511329472065, 0.006878006737679243, -0.015301398932933807, 0.007158670574426651, -0.0043797483667731285, -0.023603517562150955, 0.01602211780846119, -0.02476775273680687, 0.021025564521551132, -0.003610520390793681, -0.0022609063889831305, -0.009681183844804764, 0.017671452835202217, 0.010096983052790165, -0.007311130408197641, 0.02070678398013115, 0.0016588643193244934, -0.02245314046740532, -0.00044611754128709435, -0.008607037365436554, 0.020956262946128845, -0.010263302363455296, 0.0015064047183841467, -0.03040875867009163, -0.0029383120127022266, 0.024726172909140587, 0.020166246220469475, 0.020290985703468323, 0.013381794095039368, 0.011961148120462894, 0.004286193288862705, 0.011912638321518898, 0.005356875713914633, -0.011025600135326385, -0.031157195568084717, -0.021690841764211655, -0.00723490072414279, -0.008503086864948273, -0.013139245100319386, -0.03548150509595871, -0.02888416312634945, 0.01714477315545082, 0.006663177162408829, -0.01844760961830616, -0.007893248461186886, 0.01738039404153824, 0.0006735075730830431, 0.03853069618344307, -0.010408831760287285, 0.0015566471265628934, 0.017865492030978203, -0.010110842995345592, 0.002428958425298333, -0.008309047669172287, 0.0004318244755268097, -0.008191238157451153, 0.007089370861649513, 0.021746281534433365, -0.009071345441043377, 0.022134359925985336, 0.00235446123406291, -0.02623691037297249, 0.012480896897614002, -0.012959064915776253, 0.02149680256843567, 0.027220966294407845, -0.003468455746769905, 0.027373427525162697, -0.011469119228422642, -0.0077199991792440414, 0.00235446123406291, -1.3041088095633313e-05, -0.007172530982643366, 0.011268150061368942, -0.006590412463992834, -0.005239065736532211, -0.014733140356838703, -0.005644469987601042, -2.658297489688266e-05, 0.012965994887053967, 0.014941039495170116, -0.012120537459850311, 0.022494720295071602, 0.010977090336382389, 0.015356838703155518, 0.014760860241949558, -0.0020131596829742193, 0.0030647842213511467, -0.002905394649133086, 0.0036035904195159674, 0.00905748549848795, -0.010533572174608707, 0.004043644294142723, 0.019653426483273506, 0.0013903274666517973, -0.011732458136975765, 0.004750502295792103, -0.007318060379475355, 0.006618132349103689, 0.003704075003042817, -0.01209974754601717, 0.002794515108689666, 0.025349872186779976, -0.019819747656583786, 0.0049861217848956585, -0.0017013103934004903, -0.01452524121850729, 0.0072903404943645, 0.025294432416558266, 0.011469119228422642, -0.010866210795938969, 0.002920987084507942, -0.0181149709969759, -0.010394971817731857, 0.006604272406548262, -0.0024826659355312586, 0.0041233389638364315, 0.01782391220331192, 0.0160775575786829, 0.014719280414283276, -0.023229297250509262, 0.01534297876060009, -0.007033931091427803, 0.0009450762299820781, 0.023534215986728668, -0.021524522453546524, 0.011288939975202084, 0.009501004591584206, 0.010651381686329842, -0.010672171600162983, 0.005464290268719196, -0.013416443951427937, -0.029577160254120827, 0.0102147925645113, -0.0010342997265979648, -0.009043625555932522, -0.004857916850596666, -0.00798333901911974, 0.004435188136994839, -0.012848185375332832, 0.010900860652327538, 0.0057137697003781796, 0.00823974795639515, -0.004192638676613569, -0.018544631078839302, 0.008828796446323395, 0.018738670274615288, -0.029410840943455696, -0.001728164148516953, 0.01635475642979145, 0.0020564720034599304, 0.0006553163402713835, 0.017699172720313072, 0.00013340213627088815, 0.023229297250509262, -0.00840606726706028, -0.006680502090603113, 0.001440569874830544, -0.02300753816962242, 0.0036867500748485327, -0.005263321101665497, -0.0024306909181177616, -0.0035516154021024704, 0.006625062320381403, 0.019819747656583786, -0.007207180839031935, -0.00015754879859741777, -0.0053984555415809155, 0.017699172720313072, -0.027706066146492958, 0.014317341148853302, 0.0028274324722588062, -0.005758814513683319, 0.027997124940156937, 0.006372117903083563, -0.0021084467880427837, -0.001909209880977869, 0.002609137911349535, 0.004151058848947287, 0.019431667402386665, -0.003814954776316881, 0.01072068139910698, -0.0038426746614277363, 0.01291748508810997, -0.007491310127079487, 0.018697090446949005, 0.016715114936232567, -0.026361649855971336, -0.00022522440121974796, -0.001962917158380151, 0.013097665272653103, -0.024185635149478912, -0.02374211698770523, -0.010692961513996124, 0.007553679868578911, -0.014511381275951862, 0.0158003568649292, -0.042439207434654236, -0.0008822732488624752, -0.0023163463920354843, -0.001735960366204381, -0.022647179663181305, 0.0025554306339472532, -0.028690123930573463, -0.0002921420382335782, -0.008891166187822819, -0.0026871003210544586, -0.016507215797901154, -0.028274323791265488, 0.03201651573181152, 0.009861363098025322, -0.0016120868967846036, 0.004362423438578844, 0.006635457277297974, 0.00869019702076912, 0.013596623204648495, 0.007311130408197641, 0.0026593804359436035, -0.004681202583014965, -0.01732495427131653, -0.012092817574739456, -0.008392207324504852, -0.007782368920743465, 0.007706139236688614, -0.006115708500146866, -0.024102475494146347, 0.019750447943806648, -0.016105277463793755, -0.01512121967971325, 0.03645170107483864, -0.011254290118813515, 0.00972969364374876, 0.02555777132511139, 0.022411560639739037, -0.027442727237939835, 0.015495438128709793, -0.006611202377825975, 0.004483697935938835, 0.0031981864012777805, -0.0015687745762988925, -0.0054885451681911945, -0.017449693754315376, 0.004650017712265253, 0.007706139236688614, -0.006112243514508009, 0.014844019897282124, 0.0007726929034106433, 0.011496839113533497, -0.01512121967971325, 0.001983707072213292, 0.012272996827960014, 0.012557126581668854, -0.008627827279269695, -0.009438634850084782, 0.00823974795639515, 0.025114253163337708, 0.00486484682187438, -0.010145492851734161, 0.009798993356525898, -0.02589040994644165, -0.017006173729896545, -0.017394253984093666, 0.033485669642686844, -0.024795472621917725, 0.0008199034491553903, 0.021122584119439125, -0.010568222030997276, 0.006746336817741394, -0.0014033212792128325, -0.013076875358819962, 0.006718616932630539, 0.00775464903563261, 0.003568940330296755, 0.028274323791265488, 0.010450411587953568, 0.0033506460022181273, 0.009625744074583054, 0.007422009948641062, -0.019542546942830086, 0.0027754574548453093, 0.029798919335007668, -0.0003848305204883218, -0.0035758703015744686, 0.005738024599850178, -0.006891866680234671, -0.009216874837875366, 0.019764307886362076, 0.009286175481975079, -0.029161361977458, -0.010533572174608707, -0.005197485908865929, -0.00643102265894413, 0.010540502145886421, -0.00561328511685133, -0.020734503865242004, -0.0012551929103210568, 0.020124666392803192, -0.006690897047519684, -0.004712387453764677, -0.02318771742284298, 0.0004495825560297817, -0.004071364179253578, -0.025238992646336555, 0.010817700996994972, -0.005783069413155317, 0.004151058848947287, 0.008593176491558552, 0.0028724772855639458, -0.009424774907529354, 0.008128868415951729, 0.022979818284511566, 0.011829478666186333, 0.012896695174276829, 0.02232840098440647, -0.00032246069167740643, 0.01122657023370266, 0.0173110943287611, 0.02780308574438095, 0.01697845384478569, -0.0015263283858075738, 0.013104595243930817, -0.004019389394670725, -0.015162799507379532, 0.003456328297033906, -0.0049861217848956585, 0.005055421497672796, -0.0028014450799673796, -0.008988185785710812, 0.02849608287215233, -0.0005206148489378393, -0.003168734023347497, 0.007525959983468056, 0.006819101516157389, 0.013326354324817657, 0.0007583998376503587, -0.009750483557581902, 0.0223422609269619, 0.015620178543031216, -0.008530806750059128, 0.0158003568649292, 0.014234181493520737, -0.023381756618618965, 0.01968114636838436, -0.0024618757888674736, 0.00364517024718225, -0.005703374743461609, 0.005228670779615641, 0.011732458136975765, -7.184441346907988e-05, -0.010159352794289589, -0.023936156183481216, 0.009639604017138481, -0.007193320896476507, -0.00820509810000658, 0.006666642148047686, 0.027595186606049538, 0.024407394230365753, 0.013797593303024769, -0.0027217501774430275, -0.01720021478831768, 0.013000644743442535, -0.002597010461613536, -0.0016268130857497454, 0.004552997648715973, -0.0067948466166853905, -0.01209974754601717, 0.018017951399087906, 0.015370698645710945, 0.008870376273989677, 0.0014734873548150063, 0.002255708910524845, -0.01929306797683239, -0.006434487644582987, -0.010692961513996124, -0.02487863413989544, -0.0011105295270681381, 0.0018347125733271241, 0.002047809539362788, -0.022092780098319054, 0.002565825590863824, -0.003428608411923051, 0.026042869314551353, 0.003558545373380184, 0.018295150250196457, -0.025349872186779976, -0.004497557878494263, 0.007713069207966328, -0.009403984993696213, 0.006923051550984383, -0.0012664541136473417, -0.0031080967746675014, -0.006909191608428955, -0.001962917158380151, -0.0235757976770401, 0.0020685994531959295, 0.04246692731976509, -0.0076853493228554726, 0.0009831910720095038, 0.021275043487548828, -0.012792745605111122, 0.0043797483667731285, -0.014248041436076164, 0.024047035723924637, -0.007158670574426651, -0.005090071354061365, -0.028024844825267792, 0.004629227798432112, 0.02223137952387333, -0.018821829929947853, 0.008905026130378246, -0.019708866253495216, -0.016382476314902306, 0.0016978454077616334, -0.006036013830453157, 0.0327095128595829, 0.006396372802555561, -0.004244613461196423, 0.00896739587187767, -0.004261938389390707, 0.018600070849061012, -0.013409513980150223, -0.002704425249248743, -0.0028949996922165155, 0.00577960442751646, 0.013402584008872509, -0.0023752511478960514, 0.02261945977807045, -0.013319424353539944, -0.013548113405704498, -0.0009598024189472198, 0.006555762607604265, -0.01322240475565195, -0.013125385157763958, -0.010159352794289589, 0.00902283564209938, 0.013790663331747055, -0.006715151946991682, -0.0032207088079303503, -0.009930663742125034, -0.011919568292796612, -0.002543303184211254, 0.018267430365085602, 0.014816300012171268, -0.005207880865782499, -0.014622260816395283, 0.007837808690965176, -0.01452524121850729, 0.013298634439706802, -0.011212710291147232, -0.021122584119439125, -0.026874467730522156, -0.001165103167295456, 0.014816300012171268, -0.005595960188657045, 0.0036936800461262465, 0.0010325672337785363, -0.00018321137758903205, 0.005828114226460457, -0.011261220090091228, -0.01088700070977211, 0.001161638181656599, 0.00022977219487074763, -0.005810789298266172, 0.009313895367085934, 0.0013833974953740835, -0.010990950278937817, -0.013354074209928513, 0.0017758077010512352, -0.020041506737470627, 0.0009753949125297368, -0.007186390925198793, 0.004015924409031868, 0.0051732310093939304, 0.019223768264055252, 0.001546252053231001, 0.017865492030978203, 0.0012101479806005955, -0.0050173066556453705, 0.02047116495668888, -0.0045044878497719765, 0.0035724053159356117, -0.011081039905548096, 0.0160775575786829, -0.012515546754002571, -0.019597986713051796, 0.007013141177594662, -0.018710950389504433, 0.010582081973552704, -0.012224487029016018, -0.025141973048448563, -0.0400552935898304, -0.018918849527835846, 0.014234181493520737, 0.016673535108566284, -0.01613299734890461, 0.007124020718038082, 0.006042943801730871, -0.007872458547353745, -0.03778225928544998, -0.01714477315545082, 0.022078920155763626, 0.0025848830118775368, 0.017117053270339966, -0.0012421992141753435, -0.0004543469112832099, 0.01945938728749752, -0.003276148810982704, -0.0016086219111457467, -0.03481622785329819, -0.005329155828803778, 0.01872481033205986, 0.006815636530518532, -0.016174577176570892, -1.4414902580028865e-05, 0.014566821046173573, 0.0102147925645113, 4.306875052861869e-05, -0.011566138826310635, -0.010789981111884117, -0.0307968370616436, 0.002553698141127825, 0.004868311807513237, -0.013652062974870205, 0.01968114636838436, -0.00122747290879488, -0.015550877898931503, -0.0026039404328912497, -0.014331202022731304, 0.0068641467951238155, -0.03143439441919327, 0.009764343500137329, 0.004144128877669573, 0.010616731829941273, 0.011344379745423794, 0.009140645153820515, 0.018184270709753036, -0.003676355117931962, -0.005990969017148018, -0.009736623615026474, 0.0035100355744361877, -0.011552278883755207, 0.0025485006626695395, -0.027900105342268944, -0.012286856770515442, -0.02662498876452446, 0.017006173729896545, -0.011018670164048672, -0.008135798387229443, 0.018142690882086754, 0.002773724962025881, -0.0002245747164124623, 0.009313895367085934, 0.0053672706708312035, -0.0007120555965229869, -0.025114253163337708, 0.0013998562935739756, 0.009750483557581902, -0.0021396316587924957, 0.0004381047619972378, 0.022647179663181305, -0.004265403375029564, 0.005450430326163769, 0.004033249337226152, 0.005855834111571312, -0.010194002650678158, 0.006777521688491106, -0.013187754899263382, 0.0030370643362402916, 0.003853069618344307, -0.00399166950955987, -0.03345794975757599, -0.010595941916108131, 0.003045726800337434, 0.009653463959693909, 0.005949389189481735, 0.014774720184504986, 0.021122584119439125, -0.009105995297431946, -0.0025675580836832523, -0.013485743664205074, -0.014289621263742447, 0.016604235395789146, -0.005568239837884903, -0.001743756583891809, 0.014095582067966461, 0.021898740902543068, -0.0053949905559420586, -0.0010013823630288243, 0.005987504031509161, 0.02910592220723629, 0.014816300012171268, -0.013035294599831104, -0.010297952219843864, -0.013686713762581348, 0.00673940684646368, 0.00400206446647644, -0.010006893426179886, -0.0037421900779008865, 0.006465672515332699, 0.019043589010834694, -0.017241794615983963, -0.014372781850397587, -0.013645133003592491, -0.027345705777406693, -0.03185019642114639, -0.005356875713914633, -0.0011633706744760275, 0.0022210590541362762, 0.024296514689922333, -0.00010048472904600203, -0.0033835633657872677, -0.03040875867009163, 0.006753266789019108, -0.012536336667835712, 0.002342333784326911, 0.02735956571996212, 0.017920931801199913, 0.008586246520280838, 0.021302763372659683, 0.012910555116832256, -0.0053672706708312035, -0.015273679047822952, -0.012827395461499691, 0.016368616372346878, 0.014511381275951862, 0.009667323902249336, 0.0014925447758287191, -0.014663840644061565, -0.0032969387248158455, 0.005675654858350754, 0.016382476314902306, 0.005291040986776352, -0.014303481206297874, 0.01051971223205328, 0.008946605958044529, -0.002825699979439378, 0.022813498973846436, 0.02464301325380802, -0.006663177162408829, -0.0010689495829865336, 0.0007804891793057323, -0.019722726196050644, 0.00038807897362858057, -0.004189173690974712, -0.017061613500118256, 0.010637521743774414, 0.004944541957229376, -0.016035977751016617, 0.005814254283905029, -0.01198886800557375, 0.008045708760619164, 0.021510662510991096, -0.015301398932933807, -0.021912600845098495, -0.006424092687666416, -0.003258823649957776, -0.012688796035945415, -0.012536336667835712, 0.005699909757822752, -0.00129070901311934, 0.01799023151397705, -0.0009008976048789918, -0.0002581418084446341, -0.00042164605110883713, -0.003421678440645337, -0.0075328899547457695, -0.013063015416264534, 0.00461190240457654, 0.0018156551523134112, 0.006465672515332699, -0.005343015771359205, -0.004494092892855406, 0.005322225857526064, -0.004078294150531292, -0.00021526255295611918, -0.020401865243911743, 0.011496839113533497, -0.017671452835202217, -0.01635475642979145, 0.008225888013839722, 0.020221685990691185, 0.0010135098127648234, 0.02048502489924431, -0.00871098693460226, 0.02645866945385933, 0.008884236216545105, 0.006711686961352825, 0.008121938444674015, 0.0034927106462419033, 0.026264630258083344, 0.023645097389817238, 0.021843301132321358, -0.013936192728579044, -0.0003176963364239782, -0.005194020923227072, -0.00835062749683857, 0.014289621263742447, 0.005679119843989611, 0.0034580607898533344, -0.0007012275164015591, -0.007671489380300045, -0.004767827223986387, 0.02550233155488968, -0.0013140977825969458, 0.005630610045045614, 0.010789981111884117, 0.010027683340013027, -0.0028863372281193733, 0.008870376273989677, -0.0116492984816432, 0.013922332786023617, 0.0016579980729147792, 0.016396336257457733, -0.01747741363942623, -0.007837808690965176, 0.011323589831590652, -0.0013712700456380844, 0.021011704578995705, 0.027498167008161545, 0.014386641792953014, 0.005325690843164921, 0.028274323791265488, -0.016174577176570892, -0.016271596774458885, -0.007200250867754221, 0.00020400133507791907, 0.004695062525570393, -0.003345448523759842, 0.015814216807484627, 0.01108796987682581, 0.011046390049159527, -0.010963230393826962, -0.01150376908481121, -0.0061884731985628605, -0.006541902665048838, -0.037033822387456894, -0.008142728358507156, -0.00809421855956316, 0.0036902150604873896, -0.021136444061994553, -0.01271651592105627, -0.0017844701651483774, 0.003004146972671151, 0.00046864000614732504, -0.005873159039765596, 0.029466280713677406, 0.004726247396320105, -0.016659675166010857, -0.021857161074876785, -0.03822577744722366, 0.026042869314551353, 0.009764343500137329, -0.01517665944993496, -0.004268868360668421, 0.007997198961675167, 0.0031670015305280685, -0.012106677517294884, 0.0013089001877233386, -0.02138592302799225, 0.008870376273989677, 0.001728164148516953, 0.0016276793321594596, 0.008780286647379398, -0.0037248649168759584, -0.019930627197027206, -0.011822548694908619, -0.013173894956707954, -0.0011304531944915652, -0.0020148921757936478, 0.028232743963599205, 0.0027252151630818844, -0.016146857291460037, -0.002877674764022231, -0.018267430365085602, 0.010512782260775566, 0.0011988867772743106, -0.015883516520261765, -0.007207180839031935, 0.006493392400443554, -0.013665922917425632, 0.00496186688542366, 0.021081004291772842, 0.0030526567716151476, 0.019099028781056404, -0.009993033483624458, -0.011836408637464046, -0.02741500735282898, -0.017782332375645638, 0.025114253163337708, 0.003380098380148411, -0.025072673335671425, 0.004570322576910257, -0.016507215797901154, 0.006677037104964256, -0.0007627310696989298, 0.001909209880977869, -0.005696444772183895, -0.020207826048135757, 0.010651381686329842, 0.0189465694129467, -0.017796192318201065, -0.019279208034276962, 0.01742197386920452, 0.008364487439393997, 0.014982620254158974, -0.03323619067668915, -0.012224487029016018, -0.013361004181206226, 0.024837054312229156, 0.0002062752319034189, -0.025821110233664513, 0.0074012200348079205, 0.0016597305657342076, 0.00048553181113675237, 0.00803877878934145, -0.006420627702027559, 0.0008679801831021905, 0.012931345030665398, 0.002799712587147951, -0.026888327673077583, -0.011004810221493244, -0.009542584419250488, 0.0037006100174039602, -0.004196103662252426, -0.014580680988729, 0.002125771716237068, 0.017394253984093666, -0.01320161484181881, 0.006306283175945282, 0.01710319332778454, 0.012390806339681149, -0.01232150662690401, -0.0043173786252737045, 0.008648617193102837, -0.009584164246916771, -0.027498167008161545, -0.005658329930156469, -0.02013852633535862, 0.0332639105618, 0.020110806450247765, -0.01139288954436779, -0.02921680174767971, 0.008142728358507156, 0.0007510367431677878, 0.021981900557875633, 0.013832243159413338, 0.013000644743442535, 0.009535654447972775, 0.009778203442692757, 0.001759349019266665, 0.02302139811217785, 0.008426857180893421, -0.010006893426179886, 0.0009095600689761341, 0.009646533988416195, -0.0028430249076336622, -0.017394253984093666, 0.002692297799512744, -0.017047753557562828, 0.006399837788194418, -0.00577960442751646, -0.010505852289497852, -0.001677055493928492, -0.006174613256007433, -0.0256132110953331, -0.0216631218791008, 0.017574433237314224, 0.003679820103570819, 0.0181149709969759, 0.016881434246897697, 0.0009606686653569341, -0.0031583390664309263, 0.021593822166323662, 0.0021309691946953535, 0.018031811341643333, -0.002098051831126213, -0.008697126992046833, 0.014261901378631592, -0.009209944866597652, -0.04637543484568596, -0.03085227683186531, -0.0079001784324646, 0.015426138415932655, 0.016853714361786842, 0.013125385157763958, -0.019223768264055252, -0.010533572174608707, 0.01839216984808445, 0.00981978327035904, -0.004625762812793255, 0.011011740192770958, -0.010921650566160679, -0.021288903430104256, -0.008641687221825123, -0.00031596384360454977, -0.017671452835202217, -0.016742834821343422, 0.010485061444342136, 0.008717916905879974, -0.004958401899784803, 0.015010340139269829, 0.022536300122737885, 0.029854359105229378, -0.024296514689922333, 0.0017654127441346645, -0.0011910905595868826, -0.006819101516157389, -0.0033523784950375557, 0.004182243719696999, 0.011399819515645504, -0.006171148270368576, 0.005384595599025488, -0.00855159666389227, 0.010852350853383541, -0.03489938750863075, 0.01668739505112171, 0.02054046466946602, -0.005485080182552338, -0.010166282765567303, 0.00874563679099083, -0.0072764805518090725, 0.0007739922730252147, 0.0212611835449934, 0.0010247710160911083, -0.009043625555932522, -0.0059389942325651646, 0.01984746754169464, 0.00011066313891205937, 0.003231103764846921, -0.02065134420990944, -0.012335366569459438, 0.00023193781089503318, -0.008163518272340298, -0.00022370845545083284, -0.0039292993023991585, 0.003672890132293105, 0.0039604841731488705, -0.003250161185860634, -0.021635401993989944, -0.004334703553467989, 0.017518993467092514, -0.009480214677751064, 0.007470519747585058, 0.011330519802868366, -0.014857879839837551, 0.004861381836235523, 0.00475396728143096, 0.019999926909804344, -0.00699235126376152, -0.016313176602125168, -0.001031700987368822, 0.008579316549003124, 0.01613299734890461, -0.016091417521238327, -0.0019334647804498672, 0.009521794505417347, -0.004643087740987539, -0.00400206446647644, 0.01235615648329258, 0.020235545933246613, 0.0018884199671447277, 0.004417863208800554, 0.013069945387542248, 0.021011704578995705, 0.020734503865242004, 0.026638848707079887, -0.002259173896163702, 0.033707428723573685, -0.01990290731191635, 0.009320825338363647, 0.007997198961675167, -0.0031271541956812143, 0.005204415880143642, 0.014317341148853302, -0.007934828288853168, -0.027234826236963272, 0.009494074620306492, 0.002716552698984742, -0.005325690843164921, -0.009369335137307644, -0.00795561820268631, -0.0158003568649292, 0.007072045933455229, -0.01099788025021553, 0.006580017507076263, -0.025031093508005142, 0.011573068797588348, 0.0012837790418416262, 0.006912656594067812, 0.006878006737679243, -0.00826053787022829, 0.002392576076090336, 0.004341633524745703, 0.0038114897906780243, 0.013340214267373085, -0.008364487439393997, 0.00016718580445740372, -0.0076853493228554726, -0.014941039495170116, -0.026999207213521004, -0.004289658274501562, -0.001019573537632823, -0.013021434657275677, 0.0013565438566729426, 0.006306283175945282, 0.010672171600162983, 0.01232150662690401, 0.003704075003042817, -0.02408861555159092, 0.0015895644901320338, -0.01441436167806387, -0.008343697525560856, -0.031212637200951576, -0.014178741723299026, -0.0014752198476344347, -0.018600070849061012, -0.0037664449773728848, 0.01653493568301201, 0.020831523463129997, 0.007560609839856625, 0.0015133346896618605, -0.011711668223142624, 0.010221722535789013, 0.010796911083161831, 0.005311830900609493, -0.032570913434028625, 0.008939675986766815, -0.018309010192751884, 0.008142728358507156, -0.007560609839856625, 0.005093536339700222, 0.014511381275951862, -0.015259819105267525, -0.02379755675792694, 0.007726929150521755, 0.01184333860874176, -0.018350590020418167, -0.009092135354876518, 0.00986829400062561, -0.012529406696557999, -0.0036243803333491087, -0.0260151494294405, -0.016964593902230263, -0.0029331145342439413, 0.0006457876297645271, -0.020069226622581482, -0.0013764675240963697, 0.05200257897377014, 0.0014570285566151142, -0.0011287207016721368, 0.009008975699543953, -0.005003446713089943, -0.0012075492413714528, 0.016202297061681747, -0.011510699056088924, -0.0019802420865744352, -0.005495475139468908, -0.008184308186173439, 0.02814958430826664, 0.004151058848947287, -0.00764376949518919, -0.00880107656121254, -0.0003270084853284061, -0.0030630517285317183, 0.02381141670048237, -0.019500967115163803, 0.01567561738193035, -0.00831597764045, -0.017574433237314224, -0.027484307065606117, -0.001169434399344027, -0.008523876778781414, 0.0035793352872133255, -0.021413642913103104, -0.0018139226594939828, -0.005533589981496334, -0.01800409145653248, -0.0031080967746675014, -0.006074128672480583, 0.02730412594974041, 0.0018000627169385552, -0.006143428385257721, 0.008419927209615707, 0.034594468772411346, -0.027401147410273552, -0.012577916495501995, -0.004255008418112993, 0.0074289399199187756, 0.011524558998644352, -0.0200276467949152, 0.003790699876844883, 0.0015990932006388903, 0.0205820444971323, 0.0011841605883091688, 0.0056825848296284676, -0.002976427087560296, 0.007726929150521755, 0.016437916085124016, -0.009459424763917923, -0.015051919966936111, 0.01670125499367714, -0.011295869946479797, -0.03983353450894356, 0.013388724066317081, -0.010284092277288437, -0.009119855239987373, 0.0033974233083426952, -0.004937611985951662, 0.005284111015498638, 0.006819101516157389, 0.00024146653595380485, -0.006008293945342302, -0.01243931706994772, 0.006711686961352825, 0.01057515200227499, 0.04449047893285751, 0.010505852289497852, 0.02921680174767971, -0.0004937611520290375, -0.002110179280862212, -0.02030484564602375, -0.004490627907216549, 0.005121256224811077, -0.006704756990075111, -0.012688796035945415, -0.0038946494460105896, 0.005453895311802626, 0.030436478555202484, 0.016396336257457733, -0.007241830695420504, 0.01362434308975935, 0.0036001254338771105, -0.004362423438578844, 0.0060048289597034454, 0.022480860352516174, -0.003419945714995265, 0.004965331871062517, 0.0015713733155280352, -0.01907130889594555, 0.004462908022105694, 0.008731776848435402, 0.005311830900609493, -0.008288257755339146, 0.015024200081825256, 0.017061613500118256, 0.01342337392270565, 0.011656228452920914, -0.029632600024342537, 0.02403317578136921, 0.011663158424198627, 0.014088652096688747, -0.007817018777132034, 0.004161453805863857, 0.000996184884570539, 0.008419927209615707, -0.02267489954829216, -0.010388041846454144, 0.007803159300237894, 0.003853069618344307, -0.028066424652934074, 0.005214810837060213, 0.0035481504164636135, 0.002794515108689666, -0.01051971223205328, -0.003911974374204874, -0.013769873417913914, 0.010429621674120426, -0.014594540931284428, 0.016895294189453125, -0.0011754981242120266, 0.0024566783104091883, 0.005180160980671644, -0.003373168408870697, -0.0034580607898533344, 0.003484048182144761, 0.0032068488653749228, -0.007505170069634914, 0.0010498921619728208, 0.015245959162712097, -0.007616049610078335, 0.011330519802868366, 0.007477449718862772, 0.010401901789009571, -0.001137383165769279, 0.008045708760619164, 0.02379755675792694, 0.012626426294445992, 0.005329155828803778, -0.010623661801218987, -0.0216631218791008, -0.024157915264368057, -0.0222175195813179, -0.006250843405723572, -0.008939675986766815, 0.012175977230072021, -0.014157951809465885, 0.005190555937588215, -0.003790699876844883, -0.012252206914126873, 0.008939675986766815, -0.009300035424530506, -0.010970160365104675, -0.009896013885736465, 0.015481578186154366, -0.005058886483311653, -0.02543303184211254, 0.006652782205492258, -0.005408850498497486, 0.014594540931284428, -0.0033679709304124117, -0.003981274552643299, -0.0053049009293317795, -0.008510016836225986, 0.006295888219028711, 0.01979202777147293, 0.0074289399199187756, 0.016063697636127472, 0.006074128672480583, 0.0010854083811864257, -0.005641005001962185, -0.030270159244537354, -0.02291051857173443, 0.0059112743474543095, -0.011822548694908619, 0.006884936708956957, -0.0205820444971323, 0.020970122888684273, -0.008184308186173439, -0.0005834178300574422, 0.020124666392803192, 0.006191938184201717, 0.017837772145867348, 0.006697827018797398, 0.017616013064980507, -0.0008134065428748727, -0.007207180839031935, 0.019390087574720383, 0.035426065325737, -0.012252206914126873, 0.0053984555415809155, 0.008253607898950577, 0.00986829400062561, 0.021787861362099648, 0.007858598604798317, 0.007553679868578911, 0.0002574921236373484, -0.02938312105834484, 0.009646533988416195, 0.015869656577706337, -0.011836408637464046, -0.009293105453252792, -0.015814216807484627, 0.012758095748722553, 0.005422710441052914, 0.0072764805518090725, -0.008017988875508308, 0.031739313155412674, 0.0131461750715971, 0.002758132526651025, 0.00835062749683857, -0.002998949494212866, -0.025072673335671425, -0.0038981144316494465, 0.02087310329079628, 0.0021638867910951376, -0.011884918436408043, -0.017976371571421623, -0.015079639852046967, 0.00602215388789773, -0.015883516520261765, 0.012467036955058575, -0.023548075929284096, 0.011046390049159527, -0.009196084924042225, -0.0001043287047650665, 0.013582763262093067, -0.00798333901911974, 0.010699891485273838, 0.013859963044524193, 0.01957026682794094, -0.020277125760912895, -0.00990294385701418, 0.007255690637975931, -0.006929981522262096, -0.002810107544064522, -0.007200250867754221, -0.010928580537438393, 0.0029140571132302284, -0.006888401694595814, -0.005121256224811077, 0.020152386277914047, -0.004812872037291527, 0.0005907809245400131, -0.013090735301375389, 0.012744235806167126, 0.01810111105442047, -0.0007709604105912149, 0.016992313787341118, -0.006455277558416128, -0.010415761731564999, 0.015606318600475788, -0.013894612900912762, 0.005748419556766748, 0.005436570383608341, 0.006832961458712816, -0.0003971745609305799, 0.004206498619168997, -0.016895294189453125, -6.107045919634402e-05, -0.01866937056183815, 0.026486389338970184, -0.009757413528859615, -0.01754671335220337, -0.028191164135932922, -0.001912674866616726, 0.00950793456286192, 0.011164200492203236, -0.002626463072374463, 0.004902961663901806], "4431616b-6726-4488-a27a-09e0aad7a27a": [-0.017620809376239777, -0.035025082528591156, -0.011111125349998474, 0.01901477575302124, 0.0176478773355484, -0.022519990801811218, 0.05597516894340515, 0.04582493379712105, -0.013980258256196976, 0.0703749731183052, 0.0034679973032325506, -0.00828259252011776, -0.013682518154382706, -0.013073503971099854, -0.012911100871860981, 0.013993792235851288, -0.01517121959477663, -6.121861224528402e-05, 0.00024572029360570014, -0.013087037950754166, 0.053620316088199615, -0.03331984207034111, -0.05722026526927948, -0.01010286808013916, 0.00196745409630239, 0.018920039758086205, -0.03164166957139969, 0.017147133126854897, -0.015090017579495907, -0.01901477575302124, -0.004861962981522083, 0.002765939338132739, 0.0016883226344361901, -0.0016384172486141324, 0.02985522709786892, -0.06030593812465668, 0.010116402059793472, -0.03843555971980095, -0.014413335360586643, -0.03486267849802971, -0.01799975149333477, -0.010069034062325954, 0.04650161415338516, 0.002508800011128187, -0.0185275636613369, -0.04666401818394661, 0.010644214227795601, -0.033346910029649734, -0.01632157899439335, 0.007815681397914886, -0.004391668830066919, -0.01782381534576416, 0.005714582744985819, -0.014291532337665558, 0.02258765883743763, -0.04558132588863373, 0.02969282492995262, 0.06339161098003387, -0.006878476589918137, -0.05548795685172081, 0.014453936368227005, -0.03058604523539543, -0.017147133126854897, -0.030017631128430367, 0.03521455451846123, -0.0013034595176577568, 0.013499814085662365, 0.019759126007556915, -0.01950198784470558, 7.871719571994618e-05, 0.010813385248184204, 0.02080121822655201, -0.021031290292739868, -0.0017323070205748081, 0.025700397789478302, -0.004266482777893543, 0.02306133694946766, 0.025294387713074684, 0.009189346805214882, -0.024103427305817604, 0.008296126499772072, -0.02085535228252411, 0.01621331088244915, -0.005261205602437258, 0.06490737944841385, 0.017972685396671295, -0.02341321110725403, -0.04447156935930252, 0.026079339906573296, -0.022330518811941147, -0.020882418379187584, 0.03145219758152962, -0.0033360442612320185, -0.01710653118789196, 0.024279365316033363, -0.032453689724206924, 0.01621331088244915, -0.00280823209322989, 0.020584678277373314, -0.0036236343439668417, 0.04420089349150658, 0.0003895153058692813, -0.007145766168832779, -0.00244451523758471, -0.016375714913010597, 0.0024259064812213182, 0.023981625214219093, -0.02712143026292324, -0.007274335715919733, -0.013344177044928074, 0.014670474454760551, -0.007917184382677078, -0.009223180823028088, -0.02871840074658394, -0.016551651060581207, 0.00010567875870037824, -0.029422150924801826, 0.02969282492995262, -0.0007993311155587435, -0.001835501054301858, 0.047178298234939575, 0.006956295110285282, 0.0019776043482124805, 0.005789018236100674, -0.03616190701723099, -0.014792277477681637, -0.005602930206805468, 0.041034020483493805, 0.036622051149606705, -0.012586292810738087, 0.03196647763252258, -0.014074994251132011, 0.03648671507835388, -0.01632157899439335, 0.002982477657496929, 0.03142512962222099, 0.0034849143121391535, 0.01717419922351837, -0.021234294399619102, 0.0024089894723147154, -0.07237794995307922, -0.007457040250301361, -0.01829749159514904, 0.015238887630403042, -0.0023430129513144493, -0.010089335031807423, -0.004740160424262285, 0.025889869779348373, -0.005968338809907436, 0.03510628268122673, -0.06490737944841385, -0.014426869340240955, -0.025605661794543266, 0.028501862660050392, 0.0069021605886518955, -0.033103302121162415, -2.907619818870444e-05, 0.020111002027988434, 0.00977806095033884, 0.022682394832372665, 0.023507947102189064, -0.027202632278203964, 0.0015961246099323034, 0.021058356389403343, 0.03987012803554535, 0.01735013723373413, 0.05489247664809227, 0.010664515197277069, -0.027635710313916206, 0.012390054762363434, -0.023020735010504723, -0.016050906851887703, 0.00849913153797388, 0.017620809376239777, -0.03202061355113983, -0.010089335031807423, 0.021139558404684067, 0.04904594272375107, -0.00912167876958847, -0.01310733798891306, -0.03670325502753258, 0.0018693351885303855, 0.01102992333471775, -0.014345667324960232, -0.008756270632147789, 0.046095605939626694, 0.035972438752651215, 0.03009883314371109, 0.021789174526929855, -0.01484641246497631, -0.010833685286343098, -0.027743978425860405, 0.00034024438355118036, -0.007260802201926708, -0.02013806812465191, -0.0175937432795763, 0.01293816789984703, 0.0013339101569727063, 0.015414825640618801, 0.024292899295687675, 0.0046792589128017426, -0.019163645803928375, -0.01805388741195202, 0.010894587263464928, -0.016497517004609108, 0.05998113006353378, -0.01603737287223339, -0.01794561743736267, 0.029232680797576904, -0.01818922348320484, 0.06263372302055359, -0.024279365316033363, -0.017390737310051918, -0.029178544878959656, -0.009385584853589535, -0.0015166144585236907, -0.004611590411514044, 0.007111932151019573, -0.04869406670331955, -0.02204631268978119, 0.018825305625796318, 0.029043208807706833, -0.012024646624922752, -0.011706605553627014, -0.04482344165444374, -0.017268935218453407, -0.008059287443757057, -0.01763434335589409, 0.006692389026284218, 0.0022618109360337257, 0.011266762390732765, -0.02676955610513687, 0.018608765676617622, 0.004293549805879593, -0.027689844369888306, 0.014020859263837337, 0.05835708975791931, 0.007497641257941723, -0.028285324573516846, 0.0016790182562544942, 0.010082568041980267, 0.0011419015936553478, -0.013790787197649479, -0.013899057172238827, -0.0023683884646743536, -0.025524459779262543, -0.01343891303986311, 0.03702806308865547, -0.01412912830710411, -0.007863049395382404, -0.02885373868048191, -0.0007033267756924033, 0.005234138574451208, -0.004872113466262817, -0.04655575007200241, 0.00998783204704523, 0.041629500687122345, -0.01805388741195202, -0.0006796428933739662, -0.0017576825339347124, 0.01967792399227619, 0.030910853296518326, -0.014643407426774502, 0.05383685231208801, 0.02216811664402485, -0.02521318756043911, 0.025240253657102585, -0.010603613220155239, 0.03402359038591385, 0.019813261926174164, -0.02502371557056904, 0.011733672581613064, 0.024888379499316216, 0.030802583321928978, 0.017499007284641266, 0.007274335715919733, -0.0028403743635863066, -0.014887013472616673, 0.014088528230786324, -0.02491544559597969, 0.008654767647385597, -0.029584554955363274, 0.020774150267243385, -0.022398188710212708, 0.016538118943572044, 0.000680911703966558, -0.04893767088651657, 0.010353241115808487, -0.0024275982286781073, 0.01638924889266491, 0.007497641257941723, -0.021383164450526237, 0.0029909361619502306, 0.030125901103019714, 0.011869009584188461, -0.02532145567238331, -0.00661795400083065, -0.019989198073744774, -0.007328470703214407, 0.004963465500622988, 0.0018980941968038678, -0.03166873753070831, -0.03792128339409828, -0.001200265483930707, 0.011990812607109547, -0.021058356389403343, 0.05586690083146095, 0.04882940277457237, 0.0037048361264169216, 0.04154830053448677, 0.051996275782585144, 0.013256208039820194, -0.042170848697423935, -0.03700099512934685, 0.010028433054685593, 0.01519828662276268, 0.02210044674575329, -0.0013127638958394527, -0.0010488576954230666, -0.037704743444919586, 0.03559349477291107, -0.008424695581197739, -0.06425776332616806, 0.02521318756043911, 0.054215796291828156, -0.04712416231632233, 0.02645828202366829, 0.02944921888411045, -0.018162155523896217, 0.003112739184871316, 0.0018727185670286417, -0.030234171077609062, -0.03134392946958542, 0.018405761569738388, -0.016957661136984825, -0.013953191228210926, -0.02057114616036415, 0.006306679919362068, 0.05034517124295235, -0.003312360495328903, 0.011280295439064503, -0.014223864302039146, 0.02712143026292324, -0.015482493676245213, -0.013087037950754166, 0.016172708943486214, 0.017715545371174812, 0.02974695898592472, 0.012180283665657043, 0.012065247632563114, 0.000837817438878119, -0.006134125869721174, -0.023629749193787575, 0.013229141011834145, 0.01370958611369133, 0.025010181590914726, -0.026133473962545395, -0.007666811812669039, -0.0281229205429554, -0.008722436614334583, -0.014196797274053097, -0.003890923922881484, 0.005514961667358875, 0.02675602212548256, -0.030017631128430367, 0.01435920037329197, 0.012146449647843838, -0.010833685286343098, -0.020002732053399086, -0.007822448387742043, -0.040682148188352585, -0.006411565933376551, -0.04612267389893532, 0.01048857718706131, -0.029043208807706833, -0.02593046985566616, -0.020760616287589073, 0.0020791066344827414, -0.023792153224349022, -0.0024766577407717705, 0.0381648875772953, -0.039545319974422455, -0.024360567331314087, 0.04230618476867676, 0.019921530038118362, 0.027148498222231865, 0.03922051191329956, -0.0619841106235981, -0.0280687864869833, 0.005440526641905308, -0.0001358651352347806, 0.00604954082518816, -0.03951825201511383, -0.005511578172445297, 0.022790662944316864, -0.010495344176888466, -0.0013017677702009678, -0.013899057172238827, -0.01961025595664978, -0.022371120750904083, -0.0063032968901097775, -0.0003641397343017161, -0.0059480383060872555, -0.010028433054685593, 0.027906382456421852, -0.024062827229499817, -0.04947901889681816, -0.02223578467965126, -0.0008686910732649267, 0.014088528230786324, -0.010590080171823502, -0.0062728459015488625, 0.033292774111032486, 0.03147926554083824, 0.029774026945233345, 0.006364197935909033, 0.038949839770793915, 0.046988826245069504, -0.007565309293568134, -0.05657064914703369, 0.03212888166308403, 0.05272709205746651, -0.03356344625353813, 0.0017407655250281096, 0.006167960353195667, 0.007754780352115631, 0.008729202672839165, 0.006326980423182249, -0.009838961996138096, 0.003518748562783003, -0.03575589880347252, 0.03464613854885101, -0.004598056897521019, 0.009940464980900288, 0.015712564811110497, -0.028041718527674675, 0.024184629321098328, -0.00016737316036596894, 0.013310343027114868, 0.01793208345770836, -0.006469083949923515, 0.006770207546651363, -0.011997579596936703, 0.035431090742349625, -0.04923541098833084, -0.05554209277033806, -0.026309411972761154, -0.022871864959597588, 0.03932878002524376, -0.016849391162395477, 0.03104618936777115, -0.01353364810347557, -0.020016266033053398, -0.03004469908773899, 0.0026441365480422974, 0.009818661957979202, -0.04958728700876236, 0.012119381688535213, 0.02706729620695114, -0.005849919281899929, 0.0027930065989494324, 0.021721504628658295, 0.007545008789747953, 0.002784548094496131, 0.00816755648702383, -0.03331984207034111, 0.008221691474318504, -0.0015605988446623087, 0.0025155667681246996, -0.01775614731013775, 0.019001241773366928, 0.005599547177553177, 0.023859821259975433, 0.03321157395839691, 0.04620387405157089, -0.017661411315202713, 0.01614564284682274, -0.0007879121112637222, 0.020219270139932632, -0.021329030394554138, 0.03145219758152962, -0.007396138738840818, 0.05830295756459236, -0.027581574395298958, 0.005660448223352432, 0.029882295057177544, -0.0168764591217041, -0.01675465703010559, 0.022249316796660423, -0.013953191228210926, 0.03819195553660393, -0.002781164599582553, 0.0018456513062119484, 0.010590080171823502, -0.02640414796769619, -0.057545073330402374, 0.015956170856952667, -0.030910853296518326, -0.00411422923207283, -0.009663024917244911, 0.021477900445461273, -0.02670188806951046, -0.005880370270460844, 0.01567196473479271, -0.05657064914703369, 0.05906084179878235, -0.0014015784254297614, 0.04774671047925949, -0.018608765676617622, -0.010055501013994217, -0.02050347626209259, 0.002527408767491579, -0.010779551230370998, 0.0007007892127148807, 0.024387633427977562, 0.024712441489100456, -0.021329030394554138, -0.011787807568907738, 0.02246585674583912, -0.0009575056028552353, 0.0140073262155056, -0.014616340398788452, -0.007098398637026548, -0.002529100514948368, 0.019285447895526886, 0.015753166750073433, -0.003495064564049244, -0.03789421543478966, 0.0017559909028932452, 0.004601440392434597, -0.01203817967325449, 0.03377998620271683, -0.03767767548561096, -0.009405885823071003, -0.002530792262405157, 0.004033027216792107, 0.01144269946962595, -0.012410355731844902, 0.009879563003778458, -0.023697417229413986, -0.02472597546875477, 0.03987012803554535, 0.006360814906656742, -0.018987707793712616, 0.0118284085765481, 0.020056866109371185, -0.032453689724206924, 0.007267569191753864, -0.00768711231648922, -0.0011630478547886014, -0.005389775615185499, 0.02503724955022335, -0.010441209189593792, -0.0002772283332888037, -0.017674945294857025, -0.043659549206495285, 0.01462987344712019, -0.0177020113915205, -0.015699032694101334, 0.0016434923745691776, -0.001435412559658289, 0.027513906359672546, 0.01192314364016056, -0.004658958408981562, -0.01626744493842125, -0.03922051191329956, -0.03104618936777115, 0.01668698899447918, -0.02348087914288044, 0.027107898145914078, 0.021437298506498337, -0.0007722637965343893, 0.020760616287589073, -0.008289359509944916, -0.003075521672144532, 0.020963620394468307, -0.0018101254245266318, -0.010826918296515942, -0.0021298578940331936, -0.020841818302869797, 0.025497393682599068, 0.02514551766216755, 0.016253910958766937, -0.007761547341942787, -0.011970511637628078, -0.0022567359264940023, -0.014805811457335949, -0.004286783281713724, -0.018040353432297707, -0.001673943130299449, 0.010366774164140224, 0.02157263457775116, -0.015807300806045532, 0.02193804457783699, -0.012768996879458427, 0.009243481792509556, -0.0025172585155814886, 0.021735038608312607, 0.004178513772785664, -0.011591569520533085, 0.0022499689366668463, 0.043064069002866745, 0.028528930619359016, 0.017715545371174812, -0.028826670721173286, 0.0399242639541626, 0.018324559554457664, 0.021721504628658295, 0.013723119162023067, 0.0020672648679465055, 0.0005058200913481414, -0.012430655770003796, 0.03987012803554535, -0.0034273965284228325, -0.0002704614889807999, 0.007490874268114567, -0.0072202011942863464, 0.04517531767487526, 0.015157685615122318, 0.02086888626217842, 0.02944921888411045, -0.010129936039447784, 0.01889297366142273, 0.008986342698335648, 0.002442823490127921, 0.020489944145083427, -0.013445679098367691, 0.013939657248556614, 0.01138856541365385, 0.01598323881626129, -0.006892010569572449, 0.01747193932533264, 0.019948597997426987, 0.014440402388572693, -0.0010742333251982927, -0.005531878676265478, 0.013337410055100918, -0.020070400089025497, -0.017566675320267677, -0.0015665197279304266, -0.012342686764895916, -0.012335920706391335, 0.0059751057997345924, 0.060522474348545074, -0.007639744319021702, 0.023453813046216965, 0.00828259252011776, -0.004131146240979433, 0.03897690773010254, 0.04845046252012253, 0.03045070916414261, 0.02676955610513687, 0.01280959788709879, 0.0056536816991865635, -0.006411565933376551, 0.0011258303420618176, 0.010441209189593792, 0.002075723372399807, -0.003195632714778185, 0.0236026830971241, 0.009020176716148853, 0.007342004217207432, 0.048477526754140854, 0.012572758831083775, 0.011435932479798794, -0.02116662636399269, 0.025673329830169678, 0.012268251739442348, 0.0017898250371217728, 0.019894462078809738, 0.0007037497125566006, -0.020584678277373314, 0.01901477575302124, -0.004266482777893543, 0.009223180823028088, -0.0035559660755097866, 0.01717419922351837, 0.016551651060581207, 0.010657748207449913, -0.030964987352490425, -0.020990688353776932, -0.011571269482374191, -0.04141296446323395, -0.013032902963459492, -0.025226719677448273, 0.011016389355063438, -0.001479396945796907, 0.010833685286343098, -0.018202757462859154, 0.016592252999544144, -0.013269742019474506, 0.021559102460741997, -0.003694685874506831, 0.026918426156044006, 0.008458530530333519, -0.015780234709382057, 0.0045506893657147884, -0.02503724955022335, 0.013817855156958103, -0.05251055583357811, -0.034131862223148346, -0.011889309622347355, 0.008181090466678143, -0.013486280106008053, 0.011781040579080582, 0.029828161001205444, -0.01729600317776203, 0.010069034062325954, 0.007057797629386187, 0.03158753365278244, 0.009399118833243847, 0.011158493347465992, 0.011158493347465992, 0.0061036753468215466, -0.030558977276086807, 0.019163645803928375, 0.011124658398330212, 0.038652099668979645, 0.020408742129802704, 0.017444873228669167, 0.01153066847473383, 0.018148621544241905, -0.02080121822655201, -0.00016060634516179562, -0.04736777022480965, -0.00030302684172056615, 0.00324130873195827, -0.002896200632676482, -0.0030535294208675623, -0.0008183628087863326, 0.05949391797184944, 0.012674261815845966, -0.010779551230370998, -0.006239011883735657, 0.008871306665241718, -0.010407375171780586, -0.0019167029531672597, -0.006431866437196732, -0.0020012883469462395, -0.02080121822655201, 0.013980258256196976, -0.02985522709786892, -0.006996896117925644, -0.0077074128203094006, 0.008052520453929901, -0.0265259500592947, 0.008790104649960995, 0.003153339959681034, -0.004635274410247803, -0.012816364876925945, 0.04655575007200241, -0.02944921888411045, 0.01054947916418314, -0.02157263457775116, -0.012505090795457363, -0.0037420536391437054, 0.027094364166259766, -0.01037354115396738, -0.0026204525493085384, 0.03932878002524376, -0.009649490937590599, 0.04019493609666824, 0.002637369791045785, 0.0026898125652223825, -0.008844238705933094, 0.0044119693338871, 0.011889309622347355, 0.018500497564673424, 0.03212888166308403, 0.041223492473363876, -0.01896064169704914, 0.02413049526512623, 0.034240130335092545, 0.015401291660964489, -0.032101813703775406, -0.017444873228669167, -0.01280959788709879, -0.02561919577419758, -0.015320089645683765, -0.00292157637886703, -0.011794574558734894, -0.021721504628658295, 0.022736528888344765, 0.010941954329609871, 0.009608889929950237, -0.008898373693227768, 0.022682394832372665, -0.0046792589128017426, 0.009351750835776329, -0.00011112393985968083, 0.01621331088244915, -0.0021146326325833797, -0.0064555504359304905, 0.006201794371008873, -0.010407375171780586, -0.02551092766225338, 0.03526868671178818, -0.008817171677947044, 0.011767507530748844, -0.008715669624507427, 0.045797865837812424, -0.013817855156958103, 0.024455301463603973, 0.05186093971133232, 0.0382731556892395, -0.009818661957979202, -0.01829749159514904, -0.005355941131711006, -0.018432829529047012, 0.002618761034682393, 0.020286938175559044, 0.01203817967325449, -0.01019083708524704, 0.03767767548561096, 0.025348523631691933, -0.01686292514204979, 0.00011619905853876844, 0.005220604594796896, 0.037109263241291046, -0.015956170856952667, -0.028528930619359016, 0.001747532282024622, 0.006191643886268139, 0.005423609632998705, 0.014711075462400913, 0.035376954823732376, 0.03169580549001694, -0.004949931986629963, 0.01894710771739483, -0.008485597558319569, -0.005596163682639599, 0.012329153716564178, -0.028285324573516846, 0.0018304259283468127, 0.00358303333632648, 0.011456233449280262, 0.023101937025785446, 0.014792277477681637, -0.01191637758165598, 0.020341074094176292, -0.007484107278287411, -0.03237248584628105, 0.009277315810322762, -0.011706605553627014, 0.0004129877488594502, 0.03876036778092384, 0.013702819123864174, 0.003951825201511383, 0.04409262537956238, 0.04739483445882797, -0.022086914628744125, -0.01621331088244915, 0.028041718527674675, 0.005115719046443701, -0.008620933629572392, 0.01057654619216919, 0.024590639397501945, 0.03916637971997261, -0.020476410165429115, 0.023142538964748383, 0.05267295986413956, 0.03015296906232834, -0.004445803351700306, -0.02318313904106617, -0.013926124200224876, -0.023196673020720482, 0.02402222529053688, 0.013702819123864174, -0.035728830844163895, -0.014521604403853416, 0.019867395982146263, 0.005873603280633688, 0.009135212749242783, 0.0043747518211603165, 0.016429848968982697, -0.006739757023751736, 0.006235628388822079, 0.009615656919777393, 0.005633381195366383, -0.024211697280406952, 0.006360814906656742, 0.008959274739027023, -0.017810281366109848, 0.006066457834094763, 0.006638254504650831, 0.012593059800565243, -0.007775080855935812, -0.023805687204003334, 0.0028420661110430956, 0.015401291660964489, -0.03229128569364548, 0.0018964024493470788, -0.012173516675829887, -0.022980134934186935, -0.025646263733506203, 0.02777104638516903, 0.01150360144674778, -0.005849919281899929, -0.0059784892946481705, -0.01966439001262188, 0.014521604403853416, -0.02682369016110897, -0.019217779859900475, -0.03670325502753258, 0.04149416461586952, -0.05042637512087822, 0.011720139533281326, 0.027297368273139, 0.001372819417156279, -0.0021958344150334597, 0.01568549871444702, 0.041277628391981125, -0.013066736981272697, -0.010447976179420948, 0.015401291660964489, 0.016917061060667038, 0.01054947916418314, -0.01878470368683338, 0.013249441981315613, -0.013939657248556614, 0.009561522863805294, -0.0027270300779491663, 0.021180160343647003, 0.01866290159523487, -0.021707972511649132, -3.7719757528975606e-05, -0.009656257927417755, 0.007321703713387251, -0.030125901103019714, 0.030775515362620354, -0.006976595614105463, 0.005020983517169952, -0.008878073655068874, -0.010062267072498798, 0.015888502821326256, -0.014832878485321999, -0.02831239253282547, 0.016497517004609108, -0.010129936039447784, -0.009602123871445656, 0.00969009194523096, -0.01487347949296236, 0.02663422003388405, 0.012843431904911995, -0.023453813046216965, 0.027608642354607582, 0.020611746236681938, 0.03897690773010254, -0.037758879363536835, 0.012302086688578129, 0.02181624062359333, -0.013445679098367691, 0.015414825640618801, 0.0184734296053648, -0.015347156673669815, -0.013513348065316677, -0.0024309814907610416, 0.00977806095033884, -0.016077974811196327, 0.0110569903627038, 0.023913957178592682, 0.0023683884646743536, -0.00920964777469635, 0.005673982203006744, -0.009859262965619564, 0.011693072505295277, -0.012376521714031696, 0.0023176372051239014, -0.014426869340240955, 0.000793833052739501, -0.037163399159908295, 0.011781040579080582, -0.016497517004609108, 0.021112490445375443, -0.019393717870116234, -0.019718525931239128, -0.011408865451812744, -0.01376372016966343, -0.04374074935913086, -0.023088403046131134, 0.0618758387863636, -0.020706482231616974, -0.048721134662628174, -0.0028995841275900602, -0.003190557472407818, -0.03118152543902397, -0.0030112366657704115, 0.011720139533281326, -0.02999056503176689, -0.0048551964573562145, 0.02617407590150833, -0.041277628391981125, 0.019583189859986305, 0.011787807568907738, 0.010157003067433834, -0.03237248584628105, 0.020408742129802704, -0.0280687864869833, -0.014792277477681637, -0.025131985545158386, -0.01236975472420454, -0.032507821917533875, -0.017715545371174812, 0.060414206236600876, 0.024604173377156258, 0.028231190517544746, 0.013120871968567371, -0.009060777723789215, -0.011469766497612, 0.0053322575986385345, -0.014399801380932331, -0.021532034501433372, -0.019231313839554787, 0.02449590340256691, -0.0020435808692127466, 0.02676955610513687, 0.01174043957144022, -0.03028830513358116, -0.009344983845949173, 0.04273926094174385, 0.006678855512291193, 0.007017196621745825, 0.0042292652651667595, -0.038002483546733856, -0.01150360144674778, -0.00023599299311172217, -0.022086914628744125, 0.01239682175219059, 0.00436798483133316, 0.0051529365591704845, -0.010955488309264183, -0.011781040579080582, 0.007382605224847794, -0.022262850776314735, 0.026241743937134743, -0.007429972756654024, -0.006976595614105463, -0.07210727781057358, -0.011300596408545971, -0.0065773529931902885, 0.009135212749242783, 0.012220884673297405, 0.010806618258357048, 0.03594537079334259, 0.008891606703400612, -0.04027613624930382, -0.016524584963917732, 0.010129936039447784, -0.001576669979840517, 0.027324436232447624, 0.006039390340447426, -0.02400869131088257, -0.005579246673732996, -0.0009321300312876701, -0.0075247082859277725, -0.0024512819945812225, -0.0053018066100776196, -0.030125901103019714, 0.003131347941234708, 0.017417805269360542, -0.01430506631731987, -0.011781040579080582, 0.022330518811941147, -0.007808914873749018, -0.008512664586305618, -0.014859945513308048, -0.04441743344068527, -0.008546498604118824, 0.014047927223145962, 0.006191643886268139, -0.004324000794440508, 0.02861013263463974, 0.007910417392849922, 0.024401167407631874, -0.0070510306395590305, 0.004635274410247803, -0.010996089316904545, -0.0017035480123013258, -0.013141172006726265, -0.017377205193042755, 0.004635274410247803, 0.013953191228210926, -0.017850881442427635, -0.01787794940173626, -0.023277875036001205, 0.006242395378649235, -0.005992022808641195, 0.012166749686002731, 0.0004419581964612007, -0.012559225782752037, -0.00879687163978815, 0.004083778243511915, 9.663870878284797e-05, 0.022452322766184807, -0.0026745873037725687, -0.01073218323290348, 0.0017103147692978382, 0.01896064169704914, 0.007781847845762968, 0.019515519961714745, 0.0027930065989494324, -0.022398188710212708, -0.0038131054025143385, 0.013526881113648415, 0.02300720289349556, 0.0192448478192091, 0.018635833635926247, 0.011402098461985588, 0.011138192377984524, 0.02514551766216755, 0.01866290159523487, 0.003921374678611755, 0.0020807983819395304, 0.002630602801218629, 0.018040353432297707, 0.014115595258772373, -0.001361823407933116, -0.034483734518289566, -0.003758970880880952, 0.008810404688119888, -0.008891606703400612, -0.024279365316033363, -0.03640551492571831, -0.005196921061724424, -0.01596970483660698, 0.018202757462859154, -0.0016367256175726652, 0.028231190517544746, 0.018311025574803352, 0.040546808391809464, 0.007951018400490284, 0.00929761677980423, 0.02367035113275051, -0.029638689011335373, 0.02176210656762123, -0.018148621544241905, -0.005193537566810846, -0.010596846230328083, -0.026119941845536232, 0.005636764690279961, 0.012491557747125626, -0.026322945952415466, -0.00795778539031744, -0.027798114344477654, 0.0040770117193460464, 0.0048551964573562145, 0.004330767318606377, -0.0029486436396837234, 0.006225478369742632, -0.0050006830133497715, -0.008763037621974945, -0.021477900445461273, -0.007152533158659935, -0.0015276105841621757, -0.00496008200570941, 0.009006642736494541, 0.021829774603247643, -0.002136624651029706, -0.005701049230992794, -0.030613113194704056, -0.02944921888411045, -0.005014216527342796, -0.017729079350829124, 0.006655171513557434, -0.023440279066562653, 0.0015047724591568112, 0.022993668913841248, -0.004648808389902115, 0.006841259077191353, -0.02073354832828045, 0.016064440831542015, -0.017620809376239777, -0.002723646815866232, 0.01829749159514904, -0.02086888626217842, 0.027743978425860405, -0.02396809123456478, 0.008878073655068874, 0.003826639149338007, 0.0020588061306625605, -0.0032294667325913906, -0.003938291687518358, -0.01433213334530592, 0.006543518975377083, -0.00816755648702383, 0.0023463962133973837, -0.000345953885698691, 0.00891190767288208, -0.011476533487439156, 0.020462876185774803, 0.0009482012246735394, -0.0018135089194402099, -0.04027613624930382, -0.001339831156656146, 0.010826918296515942, 0.004604823887348175, -0.026959028095006943, -0.006492767948657274, 0.005535262171179056, 0.0047029429115355015, 0.009412652812898159, 0.009500620886683464, 0.0014497920637950301, 0.0035559660755097866, -0.008925440721213818, -0.015942636877298355, 0.01230885274708271, 0.008214924484491348, -0.0426851250231266, -0.006144276354461908, -0.027906382456421852, 0.013276509009301662, -0.026688354089856148, 0.016186242923140526, 0.002703346312046051, 0.02699962817132473, 0.013520115055143833, -0.016795257106423378, 0.02002980001270771, -0.014778743498027325, 0.016172708943486214, 0.007057797629386187, 0.0013609775342047215, 0.0034443135373294353, -0.0022821114398539066, -0.0008898373926058412, 0.0026509033050388098, -0.007612677291035652, 0.020489944145083427, 0.0036202508490532637, 0.027080830186605453, -0.012985535897314548, -0.013493047095835209, 0.02985522709786892, 0.03510628268122673, -0.03099205531179905, -0.01615917682647705, -0.011293829418718815, -0.0015326857101172209, 0.014765210449695587, 0.0091825807467103, 0.014020859263837337, 0.0032091662287712097, -0.03391532227396965, 0.027405638247728348, -0.009683324955403805, -0.006306679919362068, -0.0056570651941001415, 0.01484641246497631, -0.0039010741747915745, 0.00016790181689430028, 0.011598336510360241, -0.02204631268978119, -0.0013296809047460556, -0.03499801456928253, 0.013729886151850224, -0.013486280106008053, 0.058736033737659454, 0.0040533277206122875, 0.03380705416202545, -0.015062950551509857, 0.010427676141262054, 0.01621331088244915, -0.004716476425528526, -0.045500125735998154, -0.0039010741747915745, 0.009757759980857372, 0.02281773090362549, 0.027554508298635483, 0.011841942556202412, -0.0036439348477870226, 7.565097621409222e-05, 0.00470970943570137, 0.02771691232919693, -0.010211138054728508, 0.010989322327077389, -0.0011444390984252095, -0.014914080500602722, -0.026796624064445496, -0.009703625924885273, -0.013432146050035954, 0.01716066524386406, 0.0084652965888381, -0.03678445518016815, 0.010908120311796665, -0.0264718160033226, -0.0011740439804270864, 0.012802830897271633, 0.010109635069966316, -0.003518748562783003, 0.026241743937134743, -0.004158213268965483, 0.006218711379915476, -0.023332009091973305, 0.0007329316576942801, 0.012924633920192719, 0.009338216856122017, -0.011314130388200283, -0.009676558896899223, 0.036324311047792435, -0.03689272329211235, 0.019095977768301964, -0.0056536816991865635, 0.01332387700676918, -0.01584790274500847, -0.0053221071138978004, -0.01287049986422062, -0.006854793056845665, -0.0114156324416399, -0.03064017929136753, -0.006678855512291193, 0.0021535418927669525, 0.023765087127685547, -0.005856686271727085, -0.01967792399227619, -0.004242798779159784, -0.024590639397501945, 0.006056307815015316, 0.005684132222086191, -0.004222498275339603, 0.006167960353195667, 0.020124534144997597, 0.020665880292654037, -0.002652595052495599, -0.002207676414400339, 0.010319407097995281, -0.00798485241830349, -0.010738950222730637, 0.010691582225263119, 0.007429972756654024, -0.004043177235871553, 0.023913957178592682, 0.0015098475851118565, -0.005362708121538162, 0.018311025574803352, 0.027743978425860405, -0.002327787457033992, 0.005575863178819418, -0.006560435984283686, -0.015577228739857674, -0.00423264829441905, -0.02944921888411045, -0.0001754087716108188, 0.02587633579969406, -0.028447728604078293, 0.024888379499316216, -0.005552179180085659, -0.007565309293568134, 0.011814874596893787, -0.01824335753917694, -0.04357834905385971, -0.006557052489370108, -0.013398312032222748, 0.016199776902794838, -0.010244972072541714, -0.019515519961714745, -0.03128979355096817, -0.006864943075925112, -0.00858033262193203, 0.02414402924478054, -0.006492767948657274, -0.032399553805589676, 0.014670474454760551, -0.010502111166715622, 0.0026644370518624783, 0.012200583703815937, 0.019028309732675552, -0.02628234401345253, 0.043605413287878036, 0.020882418379187584, -0.0075585427694022655, 0.007680345326662064, -0.008201390504837036, -0.012687794864177704, 0.0154689596965909, 0.009554755873978138, 0.003566116327419877, 0.005694282706826925, 0.014859945513308048, 0.007423206232488155, -0.03302210196852684, -0.003495064564049244, -0.0018625683151185513, -0.005430376157164574, 0.019217779859900475, 0.01251185778528452, 0.008052520453929901, 0.023765087127685547, 0.0037420536391437054, 0.019420785829424858, -0.001816892297938466, -0.03494387865066528, 0.025104917585849762, 0.015306556597352028, 0.02025987207889557, -0.023927489295601845, -0.04690762609243393, 0.02223578467965126, -0.010197604075074196, -0.018270425498485565, 0.03009883314371109, -0.02950335294008255, 0.014521604403853416, -0.0013449062826111913, -0.008810404688119888, -0.006201794371008873, 0.006516451481729746, 0.015103551559150219, -0.0040228767320513725, -0.02085535228252411, 0.043064069002866745, -0.03147926554083824, -0.01985386200249195, 0.030315371230244637, 0.006990129128098488, -0.006709306035190821, 0.0023717719595879316, 0.014792277477681637, -0.031073255464434624, -0.007044264115393162, 0.00358303333632648, -0.018148621544241905, -0.005636764690279961, -0.004300316795706749, -0.011699838563799858, -0.007091631647199392, 0.004780761431902647, -0.037461139261722565, -0.014074994251132011, -0.006668705027550459, 0.023751553148031235, 0.017309535294771194, 0.004905947484076023, -0.013980258256196976, 0.0037725043948739767, -0.04106108844280243, -0.010881053283810616, 0.01335094403475523, 0.01990799605846405, -0.00980512797832489, 0.020638814195990562, -0.01614564284682274, 0.030802583321928978, 0.03196647763252258, 0.018933573737740517, -0.0043510678224265575, -0.012505090795457363, 0.007179600186645985, 0.03678445518016815, -0.0015276105841621757, -0.00691569410264492, -0.030721381306648254, 0.0184734296053648, -0.014237398281693459, 0.012024646624922752, 0.004682642407715321, -0.003562732832506299, -0.004834895953536034, 0.005562329199165106, -0.006299913395196199, -0.047530174255371094, 0.0005794093012809753, -0.0154689596965909, -0.03045070916414261, 0.009520921856164932, 0.002633986296132207, -0.000312965625198558, 0.0007663428550586104, -0.0007447735988534987, 0.022384654730558395, 0.013283275999128819, 0.03526868671178818, -0.0323183536529541, -0.0184734296053648, -0.017959151417016983, -0.031506333500146866, 0.002415756229311228, -0.0326431579887867, -0.0031364229507744312, -0.01433213334530592, -0.017674945294857025, -0.006232244893908501, -0.008972808718681335, 0.00986602995544672, -0.01925838179886341, 0.01117202639579773, 0.017268935218453407, 0.002177225658670068, 0.009852495975792408, 0.006161193363368511, -0.019880929961800575, 0.025050783529877663, 0.0026948878075927496, -0.006333747413009405, -0.006848026067018509, -0.011483300477266312, 0.03867916762828827, 0.006340514402836561, 0.005535262171179056, -0.018446361646056175, 0.01257952582091093, -0.00336649501696229, 0.00397889269515872, 0.03499801456928253, -0.0069258445873856544, -0.011381798423826694, -0.03480854257941246, 0.012559225782752037, 0.01403439324349165, -0.0024901912547647953, 0.01155773550271988, 0.02015160210430622, -0.005487894173711538, -0.006665321532636881, 0.018013285472989082, 0.007382605224847794, -0.0014269540552049875, 0.014196797274053097, 0.017025329172611237, -0.014196797274053097, 0.0414670966565609, 0.012884032912552357, -0.04593320190906525, 0.02503724955022335, 0.002595077035948634, 0.004760460928082466, 0.02009746804833412, -0.007064564153552055, 0.020990688353776932, -0.0024309814907610416, -0.0023853054735809565, 0.014413335360586643, 0.02039520815014839, -0.010353241115808487, 0.0011063757119700313, 0.007159300148487091, 0.0017847499111667275, -0.0037454371340572834, -0.020070400089025497, -0.0309379193931818, -0.0033394277561455965, -0.007314936723560095, 0.007863049395382404, -0.0013956574257463217, 0.007213434670120478, 0.0020858736243098974, -0.023156072944402695, -0.018405761569738388, 0.007504407782107592, -0.006837875582277775, -0.022316986694931984, 0.000983727048151195, -0.027107898145914078, 0.017417805269360542, 0.001628266996704042, -0.01021790411323309, -0.001514076953753829, -0.005291656590998173, 0.008187857456505299, -0.010515645146369934, -0.00757207628339529, 0.003904457436874509, 0.004242798779159784, 0.01078631728887558, -0.002143391640856862, 0.0004681796417571604, 0.03719046711921692, -0.0023244041949510574, 0.005677365232259035, 0.013229141011834145, 0.01728246919810772, 0.043253540992736816, 0.02372448518872261, 0.00037006070488132536, -0.005311957094818354, 0.007348771207034588, 0.005511578172445297, 0.03034243918955326, -0.015333623625338078, -0.007064564153552055, 0.0010099485516548157, -0.0034273965284228325, 0.0587901696562767, -0.009351750835776329, -0.011706605553627014, -0.029882295057177544, 0.0005214684060774744, -0.004980382509529591, 0.00798485241830349, 0.002155233407393098, 0.036026570945978165, 0.021369630470871925, 0.031019121408462524, 0.005081885028630495, -0.016050906851887703, -0.0018304259283468127, -0.0007401214097626507, 0.014684008434414864, 0.028799602761864662, 0.034131862223148346, 0.02337261103093624, 0.004486404359340668, 0.00454730587080121, -0.0024072977248579264, -0.028177056461572647, 0.002699962817132473, 0.006969828624278307, -0.009838961996138096, -0.015238887630403042, 0.0033411195036023855, 0.003758970880880952, -0.004909330978989601, -0.01412912830710411, 0.002072339877486229, -0.02400869131088257, 0.0021518501453101635, -0.0005840614903718233, 0.011659237556159496, -0.0017356903990730643, 0.02509138360619545, -0.003633784595876932, 0.029016142711043358, -0.012335920706391335, -0.01596970483660698, -0.0040465607307851315, 0.016240376979112625, -0.010826918296515942, -0.007416439242660999, 0.014318600296974182, -0.00041362212505191565, 0.006672088522464037, -0.014778743498027325, -0.016402781009674072, -0.01651105098426342, -0.008154023438692093, 0.011219394393265247, 0.02593046985566616, -0.0010539328213781118, 0.016226844862103462, -0.020598212257027626, -0.007511174771934748, -0.001059007947333157, 0.011774273589253426, -0.004642041400074959, -0.0068953935988247395, -0.019826794043183327, -0.007152533158659935, -0.02300720289349556, -0.01789148338139057, -0.004614973906427622, 0.0059243543073534966, -0.0018507264321669936, 0.0009431260987184942, 0.0028166905976831913, -0.003884156933054328, -0.042116712778806686, 0.004364601336419582, -0.004117612261325121, 0.011185560375452042, 0.012498323805630207, 0.007044264115393162, -0.010197604075074196, 0.005988639313727617, -0.0008754578884691, 0.009845728985965252, -0.016105040907859802, 0.00220598466694355, -0.010082568041980267, 0.014467470347881317, -0.00855326559394598, -0.02532145567238331, -0.026025205850601196, -0.004784144461154938, 0.008404395543038845, -0.004242798779159784, -0.0004461874777916819, 0.03172286972403526, 0.0021873759105801582, -0.010014900006353855, 0.013087037950754166, -0.010962255299091339, -0.0046183574013412, 0.021545568481087685, 0.02586280182003975, -0.00021844153525307775, 0.003806338645517826, 0.01517121959477663, 0.0014895471977069974, 0.009229947812855244, -0.011375031433999538, -0.007206667680293322, 0.009040476754307747, 0.005677365232259035, 0.005822852253913879, -0.01138856541365385, 0.024820711463689804, -0.006793891545385122, -0.003586416831240058, 0.029313882812857628, -0.005349174607545137, -0.007592376787215471, -0.0016341879963874817, -0.01638924889266491, 0.0002412795729469508, -0.016646387055516243, 0.006079991348087788, 0.017255401238799095, -0.015252421610057354, -0.034537870436906815, 0.005342407617717981, -0.007680345326662064, 0.0007308170315809548, 0.016429848968982697, 0.0009972606785595417, -0.022371120750904083, -0.00034976023016497493, -0.0024986497592180967, 0.0033851037733256817, -0.0016900143818929791, -0.006384498439729214, 0.0021467749029397964, 0.020192204043269157, 0.014020859263837337, 0.003606717335060239, 0.01248479075729847, 0.01584790274500847, -0.005291656590998173, 0.02842066064476967, -0.014210330322384834, -0.008776570670306683, 0.017796747386455536, 0.00527473958209157, 0.004127762746065855, -0.03605363890528679, -0.011909610591828823, -0.00795778539031744, -0.005190154071897268, 0.00730140320956707, -0.025592129677534103, 0.013405079022049904, -0.00310597219504416, -0.009730692952871323, -0.01728246919810772, -0.0046724919229745865, -0.0140614602714777, -0.005163086578249931, 0.009074310772120953, -0.0021315496414899826, 0.014102061279118061, 0.008485597558319569, 0.012944934889674187, 0.0033834120258688927, -0.014264465309679508, -0.0046758754178881645, 0.015035883523523808, -0.021545568481087685, 0.0024259064812213182, 0.0016637928783893585, -0.021843308582901955, 0.011869009584188461, -0.006489384453743696, 0.023277875036001205, -0.013743420131504536, 0.005968338809907436, -0.004834895953536034, 0.0020841818768531084, 0.007490874268114567, -0.01412912830710411, 0.0004588752635754645, -0.0016891685081645846, -0.009020176716148853, -0.016619320958852768, -0.006922461092472076, 0.02020573616027832, 0.000385920429835096, 0.001459096441976726, -0.01866290159523487, 0.008269059471786022, 0.02057114616036415, 0.006015706807374954, 0.017566675320267677, -0.0010801543248817325, -0.006310063414275646, 0.021477900445461273, 0.025199653580784798, -0.005548795685172081, -0.013242674991488457, -0.031804073601961136, -0.011199094355106354, -0.009703625924885273, -0.003276834497228265, -0.01596970483660698, -0.033346910029649734, -0.014792277477681637, 0.013871989212930202, 0.007328470703214407, -0.004922864492982626, 0.0006749907042831182, 0.012505090795457363, -0.004953315481543541, 0.03648671507835388, 0.03499801456928253, -0.004269865807145834, 0.0012036488624289632, 0.0015580612234771252, 0.012417122721672058, -0.004307083785533905, 0.015279488638043404, 0.008208157494664192, 0.011997579596936703, 0.023819221183657646, -0.008005153387784958, 0.012132915668189526, -0.02855599857866764, -0.012275018729269505, 0.01805388741195202, -0.010867519304156303, -0.0017441489035263658, 0.032399553805589676, -0.0032074747141450644, 0.02722970023751259, -0.01021790411323309, -0.004983766004443169, 0.017323069274425507, -0.003430779790505767, 0.0015572153497487307, 0.014792277477681637, -0.01710653118789196, 0.007808914873749018, -0.02116662636399269, -0.0039010741747915745, -2.6366824386059307e-05, 0.01228178571909666, 0.013547182083129883, 0.0021332413889467716, 0.02771691232919693, 0.0075585427694022655, 0.02544325962662697, 0.004970232490450144, 0.00584315275773406, 0.004557455889880657, -0.010299106128513813, -0.0007033267756924033, 0.012897566892206669, 0.020895952358841896, -0.007423206232488155, 0.01602383889257908, 0.021667370572686195, 0.01544189266860485, 0.009284082800149918, -0.010921654291450977, 0.007098398637026548, -0.009243481792509556, -0.011875776574015617, -0.0012924633920192719, 0.0054811276495456696, 0.002591693541035056, 0.013912590220570564, 0.0071999006904661655, -0.0009431260987184942, -0.0017060855170711875, 0.03139806538820267, -0.006611187011003494, 0.0026272195391356945, 0.0092367148026824, -0.007159300148487091, -0.01487347949296236, -0.005985255818814039, -0.0038943071849644184, 0.0025730847846716642, -0.00011260418250458315, 0.013296809047460556, -0.0034223212860524654, -0.025348523631691933, 0.0176478773355484, -0.008045753464102745, -0.006773591041564941, 0.016700521111488342, -0.021329030394554138, 0.009554755873978138, -0.008972808718681335, 0.009101378731429577, -0.01908244378864765, 0.01651105098426342, -0.005257822573184967, -0.012985535897314548, -0.0047029429115355015, -0.006935994606465101, -0.0029740191530436277, -0.0070036631077528, 0.016402781009674072, -0.0058059352450072765, 0.0002425483544357121, 0.009290849789977074, 0.0045270053669810295, 0.014562205411493778, -0.015265955589711666, -0.0001605006109457463, -0.005217221565544605, 0.008451763540506363, -0.005866836290806532, -0.0011571269715204835, 0.0014870095765218139, -0.0021975261624902487, -0.021329030394554138, 0.01906890980899334, -0.0051529365591704845, 0.025253787636756897, 0.011638937518000603, -0.00025819664006121457, 0.012917866930365562, -0.019569655880331993, 0.02621467597782612, -0.0008107501198537648, 0.009568288922309875, 0.0040262602269649506, -0.0045202383771538734, 0.01745840534567833, -0.012545691803097725, -0.014711075462400913, -0.008201390504837036, 0.0072540356777608395, -0.027798114344477654, -0.016944127157330513, 0.013574249111115932, -0.01936664991080761, 0.009635957889258862, -0.0012933092657476664, 0.007660044822841883, -0.006763440556824207, 0.022628260776400566, 0.025348523631691933, 0.025253787636756897, -0.016889993101358414, 0.009135212749242783, 0.010908120311796665, 0.009365284815430641, -0.007335237227380276, -0.014670474454760551, 0.018852371722459793, -0.02598460391163826, 0.005606313701719046, 0.00010557303176028654, 0.010535945184528828, -0.01586143486201763, -0.013472747057676315, -0.02057114616036415, 0.009947231039404869, -0.01638924889266491, 0.01938018389046192, -0.03172286972403526, -0.022222250699996948, 0.008918673731386662, -0.0038976906798779964, -0.03285969793796539, -0.012031413614749908, -0.007294636219739914, -0.005636764690279961, 0.0045202383771538734, -0.022303452715277672, -0.0042021977715194225, -0.005836385767906904, 0.01567196473479271, 0.00024149104137904942, 0.004966848995536566, 0.017268935218453407, 0.0062762293964624405, -0.00843822956085205, 0.008593866601586342, 0.004154830239713192, 0.0017864415422081947, -0.015225354582071304, -0.023196673020720482, -0.009852495975792408, -0.00561646418645978, 0.0017373821465298533, 0.005531878676265478, -0.003698069369420409, -0.014887013472616673, 3.275037306593731e-05, -0.002867441624403, -0.008952508680522442, 0.019001241773366928, 0.005166470073163509, 0.01698472909629345, 0.01004873402416706, 0.019285447895526886, -0.03559349477291107, 0.013357711024582386, -0.015780234709382057, 0.021071890369057655, 0.016308046877384186, 0.0027997735887765884, 0.0064217159524559975, -0.01824335753917694, -0.007951018400490284, 0.024956047534942627, 0.01806741952896118, 0.013899057172238827, -0.00716606667265296, -0.013953191228210926, 0.010069034062325954, -0.0033800287637859583, 0.015320089645683765, 0.012816364876925945, -0.005048051010817289, -0.004148063249886036, 0.0213425625115633, -0.01021790411323309, -0.011517134495079517, 0.00268304580822587, 0.005464210640639067, -0.020963620394468307, -0.005876986775547266, -0.003917991183698177, -0.0024242147337645292, -0.022384654730558395, 0.012085547670722008, 0.005525111686438322, -0.017918549478054047, 0.020598212257027626, 0.003456155536696315, -0.01430506631731987, 0.0002740563650149852, 0.005034517031162977, -0.02092302031815052, 0.02915147878229618, 0.009493853896856308, -0.003948441706597805, 0.004357834812253714, -0.009378817863762379, 0.017539607360959053, 0.0014362584333866835, 0.0018253508023917675, -0.013628384098410606, -0.012241184711456299, 0.00950738787651062, -0.007233735173940659, 0.012017879635095596, 0.016673455014824867, 0.0051766205579042435, -0.015807300806045532, 0.00807282142341137, -0.0010378616861999035, 0.014670474454760551, 0.010109635069966316, -0.014481003396213055, -0.026417681947350502, -0.006506301462650299, 0.015333623625338078, -0.01251185778528452, 0.009669791907072067, -0.011869009584188461, -0.006022473331540823, -0.016551651060581207, -0.019772659987211227, 0.0006403107545338571, -0.0066010369919240475, 0.003329277504235506, 0.020002732053399086, -0.0003854975220747292, -0.01866290159523487, -0.021504966542124748, 0.031262725591659546, 0.020787684246897697, -0.002720263320952654, -0.012884032912552357, 0.009784827940165997, 0.000858117884490639, -0.00012983844499103725, 0.011023156344890594, 0.008844238705933094, 0.0014870095765218139, 0.010745716281235218, 0.010522411204874516, -0.015090017579495907, 0.0014895471977069974, -0.00902694370597601, 0.014589272439479828, -4.509453719947487e-05, -0.011050223372876644, 0.0003618136397562921, 0.029584554955363274, -0.009588589891791344, -0.0037725043948739767, 0.01859523355960846, 0.013154705986380577, 0.016957661136984825, -0.0007151687168516219, 0.01633511297404766, 0.023616217076778412, -0.00614089285954833, 0.006854793056845665, 0.017620809376239777, -0.03145219758152962, 0.02258765883743763, 0.021843308582901955, -0.00861416757106781, -0.0054743606597185135, 0.010684815235435963, -0.0007502716034650803, -0.019163645803928375, -0.019285447895526886, -0.018026819452643394, 0.012613359838724136, -0.008269059471786022, -0.008309660479426384, 0.01362161710858345, 0.02097715437412262, 0.010928421281278133, 0.006963062100112438, -0.009635957889258862, 0.0007667657337151468, -0.008133722469210625, -0.0016663303831592202, 0.010454743169248104, 0.004794294945895672, -0.004841662477701902, -0.027743978425860405, 0.008485597558319569, 0.015306556597352028, 0.003178715705871582, 0.011226161383092403, 0.019718525931239128, 0.00825552549213171, -0.011381798423826694, -0.013046436943113804, -0.0033766452688723803, 0.0002090314228553325, 0.02425229735672474, 0.002564626280218363, -0.020530544221401215, 0.009635957889258862, -0.0045540728606283665, 0.011835175566375256, 0.007720946334302425, 0.0017196191474795341, -0.007815681397914886, -0.004970232490450144, 0.003371570026502013, -0.007863049395382404, 0.02717556618154049, 0.012728395871818066, -0.00011408442514948547, -0.005734883248806, 0.01740427128970623, -0.004638657905161381, -0.012430655770003796, 0.02890787273645401, -0.003478147555142641, 0.002400530967861414, 0.018459895625710487, -0.008560032583773136, -0.006892010569572449, -0.023589149117469788, 0.030234171077609062, 0.003965358715504408, 0.002914809389039874, -0.022154582664370537, -0.010637447237968445, 0.015090017579495907, -0.0017526074079796672, 0.0037623541429638863, -9.314955968875438e-05, -0.014535138383507729, 0.007260802201926708, -0.011550968512892723, 0.014074994251132011, 0.009554755873978138, -0.006394648924469948, 0.027270300313830376, -0.02544325962662697, 0.009487087838351727, 0.001536069088615477, 0.0024056059774011374, -0.013141172006726265, -0.003714986378327012, 0.0005138557171449065, -0.006323596928268671, 0.01212614867836237, 0.004665725398808718, -0.0044119693338871, 0.013777254149317741, -0.006462316960096359, -0.018757635727524757, -0.018338093534111977, 0.002652595052495599, 0.005102185532450676, 0.004540538880974054, 0.0062525453977286816, -0.004104078747332096, 0.010380308143794537, -0.029016142711043358, -0.002936801640316844, 0.012247951701283455, 0.0069292280822992325, 0.0018050502985715866, -0.01367575116455555, 0.012958467938005924, 0.002305795205757022, -0.007382605224847794, -0.0034510802943259478, -0.02777104638516903, -0.01114495936781168, 0.008160789497196674, 0.006079991348087788, -0.01430506631731987, -0.021504966542124748, 0.017214801162481308, -0.0070510306395590305, 0.003522132057696581, -0.01412912830710411, -0.0048247454687952995, 0.00655366899445653, -0.00834349449723959, -0.008769803680479527, 0.00570781622081995, -0.007355537731200457, 0.009493853896856308, -0.02039520815014839, 0.03821902349591255, -0.02950335294008255, 0.013479514047503471, 0.007335237227380276, 0.004181897267699242, 0.006783741060644388, 0.013980258256196976, 0.011896076612174511, 0.0110569903627038, -0.025470325723290443, -0.010400609113276005, 0.011679538525640965, -0.0028623666148632765, 0.006492767948657274, -0.01373665314167738, 0.007849516347050667, -0.02038167417049408, -0.011814874596893787, 0.027270300313830376, -0.005985255818814039, 0.018608765676617622, -0.0005015908391214907, -0.009629190899431705, -0.04522945359349251, 0.014711075462400913, 0.012613359838724136, 0.008444996550679207, -0.02722970023751259, 0.009196113795042038, 0.019420785829424858, 6.935995043022558e-05, -0.023765087127685547, 0.0011740439804270864, 0.025416191667318344, 0.011395331472158432, 0.019718525931239128, 0.0037961883936077356, 0.016619320958852768, 0.00828259252011776, 0.00042715578456409276, -0.008763037621974945, -0.007612677291035652, -0.018906505778431892, 0.015496027655899525, 0.017065931111574173, -0.011753973551094532, -1.576722934260033e-05, 0.0014624798204749823, 0.007484107278287411, -0.00953445490449667, 0.0016950893914327025, 0.0021704589016735554, -0.028501862660050392, 0.0028572913724929094, 0.0040262602269649506, -0.023792153224349022, 0.007477340754121542, 0.0009067544597201049, -0.02199217863380909, -0.0023531632032245398, -0.008884839713573456, 0.015523094683885574, -0.018676433712244034, -0.006990129128098488, 0.016077974811196327, 0.007037497125566006, -0.0023007201962172985, 0.008451763540506363, 0.027134964242577553, 0.004929631482809782, -0.010745716281235218, 0.003731903387233615, 0.01544189266860485, -0.004124379251152277, -0.010468277148902416, -0.021883908659219742, 0.005521728657186031, -0.008505897596478462, 0.025429725646972656, -0.01568549871444702, -0.010366774164140224, 0.002613685792312026, 0.010840452276170254, -0.005115719046443701, 0.007646511308848858, -0.00807282142341137, -0.007362304721027613, -0.01955612190067768, -0.004236031789332628, 0.011408865451812744, -0.0077006458304822445, 0.012275018729269505, 0.009013409726321697, -0.00828259252011776, -0.017512541264295578, -0.006465700455009937, -0.01123292837291956, -0.00768711231648922, 0.012220884673297405, -0.0323183536529541, 0.006107058841735125, -0.003280217992141843, -0.014981748536229134, -0.010400609113276005, 0.004033027216792107, 0.008018686436116695, -0.004811211954802275, 0.005636764690279961, -0.013459213078022003, 0.02658008597791195, 0.005887136794626713, -0.0088239386677742, -0.009940464980900288, -0.01221411768347025, 0.011320896446704865, -0.006012323312461376, 0.015834368765354156, -0.004750310443341732, 0.017187733203172684, -0.005768717732280493, 0.014508071355521679, 0.01615917682647705, 0.020286938175559044, 0.012471256777644157, 0.015617829747498035, -0.004445803351700306, -0.009162279777228832, 0.006908927578479052, -0.008221691474318504, 0.004164980258792639, 0.003823255654424429, 0.009047243744134903, 0.022086914628744125, -0.00513940304517746, -0.029774026945233345, -0.021910976618528366, -0.030910853296518326, -0.01621331088244915, -0.0033411195036023855, 0.0019742208532989025, -0.006560435984283686, 0.009960765019059181, -0.014413335360586643, 0.00019528630946297199, -0.018635833635926247, 0.0077074128203094006, -0.017323069274425507, -0.014670474454760551, 0.020895952358841896, 0.004773994442075491, 0.018432829529047012, 0.02295306697487831, 0.00339863752014935, -0.007917184382677078, -0.0013702819123864174, -0.022019246593117714, -0.006174726877361536, 0.028177056461572647, 0.02764924429357052, 0.010326173156499863, -0.017986219376325607, -0.010928421281278133, -0.006489384453743696, 0.03876036778092384, 0.01632157899439335, 0.009399118833243847, 0.011605103500187397, 0.003085671691223979, -0.001027711434289813, 0.016538118943572044, 0.018635833635926247, -0.007314936723560095, 0.0032311584800481796, 0.029936429113149643, -0.01239682175219059, 0.01332387700676918, 0.00902694370597601, -0.03331984207034111, -8.689818287166418e-07, -0.015455426648259163, -0.010414142161607742, -0.0032751429826021194, -0.03521455451846123, 0.002745638834312558, 0.009081077761948109, -0.01462987344712019, -0.016375714913010597, 0.01016377005726099, -0.008485597558319569, -0.011638937518000603, -0.014521604403853416, -0.005812701769173145, -0.00024466298054903746, 0.006398032419383526, -0.012017879635095596, 0.02025987207889557, -0.0035593495704233646, -0.009351750835776329, 0.012220884673297405, 0.0020588061306625605, 0.010941954329609871, -0.008120188489556313, 0.005234138574451208, -0.014453936368227005, -0.006442016456276178, 0.009541221894323826, -0.009730692952871323, -0.011185560375452042, 0.0024056059774011374, 0.011009623296558857, -0.031154457479715347, -0.012978768907487392, 0.008681835606694221, 0.018026819452643394, 0.008059287443757057, 0.0018033586675301194, 0.0017965917941182852, 0.024631239473819733, 0.007490874268114567, -0.006008939817547798, 0.02258765883743763, -0.006969828624278307, 0.013127638958394527, -0.002958793891593814, 0.023562081158161163, 0.017566675320267677, -0.011002856306731701, -0.008323193527758121, -0.021315496414899826, 0.0015842827269807458, 0.005822852253913879, 0.013344177044928074, 0.0012357912492007017, -0.009845728985965252, 0.015293022617697716, 0.016889993101358414, -0.01180134154856205, 0.005677365232259035, 0.011361497454345226, 0.00837056152522564, -0.009588589891791344, 0.002202601172029972, 0.007748013827949762, 0.002224593423306942, 0.007470573764294386, -0.002241510432213545, -0.0015276105841621757, 0.007477340754121542, -0.0021670754067599773, -0.0019370034569874406, 0.006117208860814571, 0.018879439681768417, 0.01403439324349165, -6.486635538749397e-05, 0.03199354559183121, -0.01817568950355053, -0.0030315371695905924, 0.023738019168376923, 0.02116662636399269, -0.010089335031807423, -0.004181897267699242, 0.009378817863762379, 0.014399801380932331, 0.021193692460656166, 0.005169853568077087, -0.015807300806045532, -0.02086888626217842, -0.005342407617717981, -0.04904594272375107, -0.019041843712329865, 6.888415373396128e-05, 0.010975788347423077, -0.017512541264295578, -0.0055014281533658504, -0.012660727836191654, -0.0060969083569943905, 0.012417122721672058, 0.0012772380141541362, 0.0035762665793299675, 0.003075521672144532, -0.014386268332600594, -0.009852495975792408, -0.012132915668189526, 0.004459336865693331, 0.026566551998257637, -0.005609697196632624, -0.0011004548287019134, 0.0056198472157120705, 0.007666811812669039, -0.006330363918095827, -0.0026728955563157797, -0.012335920706391335, 0.005193537566810846, -0.002050347626209259, -0.002314253943040967, -0.007064564153552055, -0.01997566409409046, -0.02122076041996479, 0.0073758382350206375, 0.007619443815201521, -0.01572609879076481, -0.007084864657372236, 0.02431996539235115, -0.0014091911725699902, -0.004310466814786196, 0.0037792713847011328, -0.009845728985965252, 0.021532034501433372, 0.011104358360171318, -0.007605910301208496, -0.007829215377569199, -0.002852216362953186, -0.009953998029232025, -0.006384498439729214, 0.02593046985566616, 0.004557455889880657, 0.011733672581613064, -0.0008238608133979142, 0.005217221565544605, -0.019095977768301964, -0.0030129284132272005, 0.013784021139144897, 0.015184753574430943, 0.006472467444837093, 0.004936398006975651, -0.034835610538721085, -0.008918673731386662, -0.0018253508023917675, -0.0041988142766058445, 0.0005324644735082984, -0.026810158044099808, 0.0011715064756572247, 0.014291532337665558, -0.014805811457335949, 0.012268251739442348, 0.02228991873562336, 0.012802830897271633, 0.010427676141262054, -0.01961025595664978, -0.003329277504235506, -0.0040533277206122875, 0.03177700564265251, 0.0024563572369515896, 0.0018118171719834208, 0.016659921035170555, 0.003342811018228531, -0.011104358360171318, 0.0011537434766069055, -0.00858033262193203, -0.011347964406013489, 0.04160243645310402, -0.0066010369919240475, -0.022912466898560524, -0.0031364229507744312, -0.035025082528591156, 0.003566116327419877, -0.00843822956085205, -0.012674261815845966, 0.0004068553098477423, -0.0176478773355484, -0.026295877993106842, 0.0027270300779491663, 0.0003865548351313919, 0.00040622090455144644, -0.01174043957144022, -0.013696052134037018, 0.011584802530705929, -0.0019251614576205611, -0.029774026945233345, -0.005755183752626181, -0.020882418379187584, 0.01579376682639122, 0.0281229205429554, -0.008952508680522442, 0.0014328750548884273, 0.004093928728252649, -0.006648404523730278, 0.014386268332600594, 0.011185560375452042, 0.008133722469210625, 0.01763434335589409, -0.005552179180085659, 0.01019083708524704, 0.02974695898592472, -0.007490874268114567, 0.0025409425143152475, 0.022005712613463402, 0.003566116327419877, 0.003569499822333455, -0.01824335753917694, -0.017011795192956924, -0.02682369016110897, 0.0017881332896649837, 0.0008648846996948123, 0.006063074339181185, 0.0004328652867116034, -0.01403439324349165, -0.02044934220612049, -0.025118451565504074, 0.012335920706391335, -0.01544189266860485, 0.018283959478139877, 0.007910417392849922, 0.007971318438649178, 0.016483983024954796, 0.02372448518872261, 0.013486280106008053, 0.015644896775484085, -0.004151446744799614, 0.0005963263683952391, 0.003867239924147725, -0.017850881442427635, -0.03762354329228401, -0.008079588413238525, 0.0010234821820631623, -0.018500497564673424, 0.02044934220612049, -0.0029621771536767483, -0.016659921035170555, -0.01264042779803276, 0.011956978589296341, 0.006157809868454933, -0.0069292280822992325, -0.0009888021741062403, -0.01332387700676918, -0.014372734352946281, -0.013844922184944153, -0.0022127514239400625, -0.013398312032222748, 0.0011444390984252095, 0.005494661163538694, -0.02127489447593689, -0.007294636219739914, 0.0074029057286679745, 0.010826918296515942, 0.026187609881162643, -0.010840452276170254, -0.017729079350829124, 0.004807828459888697, 0.004777377936989069, 0.01492761354893446, 0.0030095449183136225, 0.005734883248806, -0.008871306665241718, -0.0022161349188536406, -0.011544201523065567, -0.0030095449183136225, -0.01144269946962595, 0.005579246673732996, 0.012931400910019875, 0.003222699975594878, -0.02044934220612049, 0.005234138574451208, 0.0038164888974279165, -0.002936801640316844, 0.015563695691525936, 0.008045753464102745, -0.006513067986816168, -0.017499007284641266, 0.008194624446332455, -0.013026135973632336, 0.016077974811196327, -0.022276384755969048, -0.005183387082070112, 0.008986342698335648, 0.001198573736473918, 0.010319407097995281, -0.007335237227380276, 0.005819468759000301, 0.01027880609035492, -0.004895797464996576, 0.00028780149295926094, -0.016105040907859802, 0.0036574683617800474, 0.003921374678611755, 0.012058480642735958, 0.010035200044512749, -0.0059784892946481705, 0.0025341755244880915, -0.014697542414069176, 0.00035039460635744035, -0.0038164888974279165, -0.0046183574013412, -0.004269865807145834, 0.000649615132715553, 0.00047875280142761767, -0.002248277422040701, -8.584086572227534e-06, 0.0025900020264089108, -0.005646914709359407, 0.004060094244778156, -0.0008771495777182281, 0.025226719677448273, 0.01537422463297844, -0.006032623816281557, 0.010177303105592728, 0.008925440721213818, 0.006739757023751736, 0.002593385288491845, -0.0005244288477115333, 0.015577228739857674, -0.017133599147200584, -0.0095953568816185, 0.020408742129802704, -0.002953718649223447, 0.0140614602714777, 0.009575055912137032, -0.008729202672839165, -0.020246338099241257, 0.003667618613690138, 0.010427676141262054, -0.017512541264295578, 0.0033614197745919228, 0.007626210805028677, 0.010116402059793472, 0.036216042935848236, 0.018987707793712616, 0.007666811812669039, 0.01490054652094841, -0.006675472017377615, -0.012342686764895916, 0.0017339986516162753, 0.023886889219284058, 0.01644338294863701, 0.0014988515758886933, 0.007294636219739914, -0.00427663279697299, 0.02431996539235115, -0.01403439324349165, 0.011104358360171318, 0.011300596408545971, -0.0008779954514466226, -0.010637447237968445, 2.8388942155288532e-05, 0.005931121297180653, 0.002723646815866232, 0.0014387959381565452, -0.010623914189636707, 0.006621337495744228, -0.0025900020264089108, 0.018554631620645523, -0.015225354582071304, 0.004462720360606909, -0.016226844862103462, -0.014413335360586643, -0.023223740980029106, 0.016294512897729874, -0.0015309939626604319, -0.020043332129716873, -0.009913397021591663, -0.0069055440835654736, 0.02080121822655201, -0.009189346805214882, -0.0008302047499455512, -0.00618487736210227, -0.0015741324750706553, 0.020665880292654037, 0.0003635053290054202, -0.006885243579745293, -0.007260802201926708, -0.00400595972314477, 0.005745033733546734, 0.003190557472407818, 0.0005544566665776074, 0.0064284829422831535, -0.01572609879076481, -0.014684008434414864, 0.0069258445873856544, 0.011463000439107418, -0.023223740980029106, 0.007991619408130646, -0.004388285335153341, -0.00668900553137064, -0.01191637758165598, -0.01871703565120697, -0.038381427526474, -0.007971318438649178, -0.012356220744550228, -0.015996772795915604, -0.0007308170315809548, 0.04682642221450806, 0.005985255818814039, 0.021207226440310478, -0.014887013472616673, -0.006820958573371172, 0.0057721007615327835, -0.004439036827534437, 0.0036168675869703293, 0.016308046877384186, -0.00024212543212343007, 0.006506301462650299, 0.005037900526076555, -0.0024242147337645292, 0.003364803269505501, 0.006885243579745293, 0.003155031707137823, -0.017512541264295578, 0.005447293631732464, -0.004327383823692799, 0.01973205991089344, -0.004452570341527462, 0.0045506893657147884, -0.016781723126769066, 0.00019560351211111993, -0.0042258817702531815, 0.005995406303554773, -0.030802583321928978, -0.008708902634680271, 0.006614570505917072, -0.005054817534983158, 0.012721629813313484, -0.018432829529047012, 0.0059514218010008335, 0.0031854824628680944, -0.008878073655068874, 0.008688602596521378, 0.010170537047088146, -0.026201143860816956, -0.014981748536229134, 0.005964955314993858, 0.013493047095835209, 0.000793833052739501, -0.013499814085662365, -0.00639126542955637, 0.010718649253249168, 0.025118451565504074, -0.016835859045386314, 0.0040228767320513725, -0.0068750930950045586, -0.0006305834394879639, 0.004148063249886036, -0.020016266033053398, -0.011205860413610935, 0.004780761431902647, -0.008702135644853115, -0.01603737287223339, -0.010441209189593792, -0.012288552708923817, 0.012200583703815937, -0.00983219500631094, -0.009764526970684528, 0.003518748562783003, 0.013966725207865238, -0.015509560704231262, -0.016226844862103462, -0.008275825530290604, 0.006668705027550459, -0.0015851286007091403, 0.04328060522675514, -0.001112296711653471, 0.02871840074658394, -0.017796747386455536, 0.0066010369919240475, -0.01920424774289131, 0.006066457834094763, -0.0056198472157120705, -0.0176478773355484, -0.005782251246273518, 0.003911224193871021, -0.0012637043837457895, 0.018608765676617622, 0.0028775918763130903, -0.01728246919810772, 0.005836385767906904, 0.0023396294564008713, 0.027622176334261894, 0.014508071355521679, 0.014805811457335949, 0.005183387082070112, 0.008424695581197739, -0.004178513772785664, -0.024577105417847633, 0.017187733203172684, 0.010522411204874516, -0.004063477739691734, -0.013635150156915188, 0.006563819479197264, 0.01579376682639122, 0.006442016456276178, 0.001816892297938466, -0.01586143486201763, 0.013790787197649479, 0.009432952851057053, 0.011943444609642029, 0.016795257106423378, 0.010238205082714558, 0.004757077433168888, 0.007504407782107592, -0.009696858935058117, -0.0017187732737511396, 0.005531878676265478, 0.02367035113275051, 0.0006390419439412653, -0.0017965917941182852, 0.00941941887140274, 0.010840452276170254, -0.00939235184341669, -0.009304382838308811, -0.0005400771624408662, 0.007835982367396355, -0.01007580105215311, -0.013811088167130947, 0.004811211954802275, -0.011977278627455235, 0.01794561743736267, 0.014467470347881317, -0.023494413122534752, 0.012748696841299534, -0.008587099611759186, 0.0020655731204897165, 0.0054777441546320915, 0.011320896446704865, -0.019150111824274063, 0.013371244072914124, 0.005105569027364254, 0.0016866308869794011, 0.009899863973259926, -0.009947231039404869, -0.0002577737031970173, 0.006046157330274582, -0.0030315371695905924, -0.0005849073641002178, -0.009304382838308811, -0.01310733798891306, -0.03534989058971405, 0.00020110156037844718, -0.00411422923207283, 0.00032311584800481796, -0.014453936368227005, 0.013885523192584515, -0.0015411442145705223, -0.022722994908690453, 0.006587503477931023, -0.00587021978572011, -0.011869009584188461, 0.0028268408495932817, 0.004919480998069048, 0.008417929522693157, -0.01920424774289131, -0.027134964242577553, -0.003026462160050869, 0.028772536665201187, -0.007578842807561159, 0.010427676141262054, -0.008329960517585278, -0.030856717377901077, 0.009101378731429577, -0.003041687421500683, -0.000831473502330482, 0.008979575708508492, 0.007517941761761904, -0.0088239386677742, -0.012728395871818066, -0.015766700729727745, 0.004252948798239231, -0.01019083708524704, -0.014223864302039146, 0.008052520453929901, -0.010840452276170254, 0.03713633120059967, 0.0026086107827723026, -0.008194624446332455, 0.02116662636399269, 0.011889309622347355, 0.00015109049854800105, -0.012633660808205605, 0.0029723274055868387, -0.021031290292739868, 0.0037082196213304996, 0.026566551998257637, 0.031912341713905334, -0.01973205991089344, 0.0019065527012571692, 0.008763037621974945, -0.01057654619216919, -0.004719859920442104, 0.028501862660050392, 0.01114495936781168, -0.008154023438692093, -0.015238887630403042, -0.014819344505667686, 0.002121399389579892, 0.024901913478970528, 0.016822325065732002, -0.0026069190353155136, 0.00035229779314249754, 0.015577228739857674, 0.004357834812253714, -0.007626210805028677, 0.04677229002118111, 0.009825428947806358, -0.00384355615824461, -0.002398839220404625, 0.0017864415422081947, -0.02693196013569832, 0.009608889929950237, 0.024942513555288315, 0.0026475200429558754, -0.0032108579762279987, -0.01705239713191986, -0.02766277641057968, -0.0037961883936077356, -0.009460019879043102, 0.019935064017772675, 0.009162279777228832, 0.008864539675414562, -0.002806540345773101, 0.017255401238799095, 0.01717419922351837, 0.004696175921708345, -0.020720016211271286, 0.0002844180853571743, 0.02521318756043911, -0.014914080500602722, -0.002375155221670866, -0.01430506631731987, -0.0136486841365695, 0.002087565138936043, -0.004631890915334225, -0.006469083949923515, 0.014318600296974182, -0.020489944145083427, 0.010650981217622757, 0.01054947916418314, -0.0032683759927749634, 0.012457722797989845, -0.010407375171780586, 0.0024106809869408607, -0.009520921856164932, 0.024455301463603973, 0.02174857258796692, -0.001675634877756238, -0.002053731121122837, 0.011869009584188461, -0.004976999014616013, 0.00885100569576025, 0.014426869340240955, 0.002400530967861414, 0.012200583703815937, 0.0062728459015488625, -0.020232804119586945, 0.010136702097952366, -0.013290042988955975, 0.029638689011335373, -0.013953191228210926, -0.013743420131504536, -0.027906382456421852, 0.007720946334302425, 0.023886889219284058, -0.0028471413534134626, -0.0021975261624902487, -0.017837347462773323], "5795a666-d615-463a-82d5-56ceeac30476": [0.012608673423528671, -0.03678664565086365, -0.008028263226151466, 0.029417848214507103, -0.013863089494407177, -0.0245722196996212, 0.031195536255836487, 0.041746966540813446, -0.010107009671628475, 0.05476422235369682, 0.018149608746170998, -0.0012526240898296237, 0.03363268822431564, -0.007619681768119335, -0.0033528748899698257, 0.03420613333582878, -0.005279299803078175, 0.009533561766147614, -0.028041575103998184, -0.03214172273874283, 0.0459904782474041, -0.043295275419950485, -0.03059341572225094, 0.0126803545281291, 0.021561620756983757, 0.020400390028953552, -0.020758794620633125, 0.01896677166223526, -0.009275510907173157, -0.011863191612064838, -0.01359070185571909, 0.009497721679508686, -0.0005313348374329507, 0.007447647396475077, 0.026034509763121605, -0.007497824262827635, -0.004756028763949871, -0.038650352507829666, -0.034750908613204956, -0.02579079382121563, 0.006745174527168274, 0.015454405918717384, 0.010357893072068691, 0.011325584724545479, -0.027124060317873955, -0.0015581640182062984, 0.006465618964284658, -0.02597716450691223, -0.011949209496378899, -0.009741436690092087, 0.028356971219182014, -0.005178946536034346, 0.02204905077815056, -0.0063652656972408295, 0.052155036479234695, -0.03174031153321266, 0.009691259823739529, 0.014522554352879524, -0.017490144819021225, -0.05413343012332916, 0.019482873380184174, -0.028485996648669243, 0.0013843377819284797, -0.017504479736089706, 0.0329158790409565, 0.024127796292304993, -0.0156121039763093, 0.007798884063959122, -0.020629769191145897, 0.023210281506180763, 0.004842046182602644, 0.015812810510396957, -0.028715375810861588, 0.016902361065149307, 0.010716297663748264, -0.03323127329349518, 0.02888740971684456, 0.034435514360666275, 0.02381240203976631, -0.0060140290297567844, 0.02236444689333439, -0.029346168041229248, 0.026808664202690125, 0.009146485477685928, 0.07873432338237762, 0.03219906985759735, -0.002750755287706852, -0.04753878340125084, 0.002530336380004883, -0.030278019607067108, -0.020873483270406723, 0.014415033161640167, 0.004971071612089872, -0.021877016872167587, -0.018292970955371857, -0.012106907553970814, 0.04802621528506279, 0.0006818647379986942, 0.014343352057039738, -0.02206338755786419, 0.02888740971684456, 0.015884490683674812, 0.0020124418660998344, 0.010737801901996136, 0.00963391549885273, -0.0097127640619874, 0.05272848531603813, 0.004508729558438063, -0.03681531921029091, 0.029618555679917336, 0.013024423271417618, 0.005397573113441467, -0.008228969760239124, -0.010135682299733162, -0.03836362808942795, -0.0525277778506279, -0.052470430731773376, -0.0019228406017646194, 0.002071578521281481, -0.03294454887509346, 0.06571706384420395, -0.02828529104590416, -0.024185141548514366, 0.016271568834781647, -0.02131790481507778, 0.05118017643690109, -0.006290000397711992, 0.01817828044295311, 0.006454866845160723, -0.008121447637677193, -0.0018117352155968547, -0.012243100441992283, 0.03561108186841011, -0.012952742166817188, 0.01836465112864971, 0.026952024549245834, -0.013956274837255478, 0.043467309325933456, -0.02749679982662201, 0.0055803596042096615, -0.045933131128549576, -0.02114587090909481, -0.011856024153530598, -0.012329118326306343, 0.02332497015595436, -0.0031682965345680714, 0.012873892672359943, 0.04831293970346451, -0.01803491823375225, 0.0035894219763576984, -0.08813885599374771, -0.0033851314801722765, -0.026607956737279892, 0.005566023290157318, 0.01802058331668377, -0.021690646186470985, -0.019396856427192688, 0.031109519302845, 0.012873892672359943, 0.04289386048913002, 0.030048640444874763, -0.03090881183743477, -0.008637550286948681, 0.013282474130392075, 0.038449645042419434, 0.021977368742227554, 0.04581844434142113, 0.035209666937589645, -0.04814090579748154, 0.02084481157362461, -0.02002764865756035, 0.005935180000960827, 0.006770262960344553, 0.03108084574341774, -0.014981311745941639, -0.025891147553920746, 0.024758588522672653, 0.03695868328213692, -0.006103630177676678, -0.013762736693024635, -0.01879473775625229, 0.014242998324334621, 0.01789155788719654, -0.007110747043043375, 0.011863191612064838, 0.03217039629817009, 0.02240745536983013, 0.031941018998622894, -0.006741590332239866, -0.014264502562582493, -0.0023421740625053644, -0.0243858490139246, 0.005114433355629444, 0.009827453643083572, -0.004143157042562962, -0.02908811718225479, 0.012859556823968887, 0.0003832689253613353, -0.012565664947032928, 0.025590088218450546, 0.014407864771783352, -0.03343198075890541, -0.010967180132865906, 0.050434693694114685, -0.030536070466041565, 0.037560801953077316, -0.007605345454066992, -0.023654703050851822, 0.025747785344719887, -0.02068711258471012, 0.039854589849710464, -0.039109110832214355, 0.002290205331519246, -0.04759613052010536, 0.011877528391778469, -0.015253699384629726, -0.010078337043523788, 0.022622497752308846, -0.0422343984246254, -0.033948082476854324, -0.006444114726036787, 0.026464594528079033, 0.0306220892816782, -0.028342634439468384, -0.0631938949227333, 0.02021401934325695, -0.00570938503369689, 0.01569812186062336, -0.0317116379737854, 0.008200297132134438, 0.005985356867313385, -0.008659054525196552, -0.0033259945921599865, -0.002290205331519246, 0.005110849626362324, 0.01383441686630249, 0.06640519946813583, 0.02936050482094288, -0.018551021814346313, 0.007906405255198479, 0.02050074189901352, 0.023382315412163734, -0.016386257484555244, -0.02037171646952629, -0.006841943599283695, 0.026192206889390945, -0.02004198543727398, 0.055739082396030426, -0.007214684505015612, -0.011053198017179966, -0.015769802033901215, -0.00807127170264721, 0.002679074415937066, 0.01499564852565527, -0.02689468115568161, 0.037704162299633026, 0.031195536255836487, -0.019783932715654373, -0.011368594132363796, 0.015483078546822071, 0.009454713203012943, 0.05969586968421936, -0.00029008372803218663, 0.024930624291300774, 0.02159029245376587, -0.01602785289287567, 0.021633300930261612, -0.002881572814658284, 0.019869951531291008, 0.058663662523031235, 0.024973632767796516, -0.006031949073076248, 0.00758384121581912, 0.019826941192150116, 0.015153346583247185, -0.001930008758790791, -0.018278634175658226, -0.005239875055849552, 0.015425733290612698, 0.005039168521761894, -0.03541037440299988, -0.016042189672589302, 0.012472479604184628, 0.008745072409510612, 0.01618555188179016, -0.0024980800226330757, -0.026364242658019066, 0.0034191799350082874, -0.011089038103818893, -0.008687727153301239, -0.00047040602657943964, 0.003347498830407858, 0.004171829670667648, 0.018221288919448853, 0.00893144216388464, 0.008637550286948681, -0.006895704194903374, -0.0020841227378696203, -0.0122861098498106, 0.02364036627113819, -0.004820541944354773, -0.036614611744880676, -0.011942041106522083, 0.0019766013137996197, 0.010236035101115704, -0.010443910025060177, 0.02359735779464245, 0.025862475857138634, -0.012909733690321445, 0.05625518411397934, 0.041890330612659454, -0.03856433555483818, -0.02689468115568161, -0.013820081017911434, -0.003576877759769559, 0.024199478328227997, 0.00509651331230998, -0.004935231059789658, -0.0013278890401124954, -0.018938098102808, 0.02361169457435608, -0.023353643715381622, -0.051208849996328354, -0.01143310684710741, 0.029417848214507103, -0.05218371003866196, 0.03386206552386284, 0.0185223501175642, -0.028543341904878616, 0.0041359891183674335, -0.04931647330522537, -0.04475756734609604, -0.019038451835513115, 0.010458245873451233, -0.040657415986061096, -0.030536070466041565, -0.029475193470716476, -0.025088321417570114, 0.015798473730683327, -0.008515693247318268, -0.0009130357066169381, -0.03325994685292244, 0.020171010866761208, -0.005849163047969341, -0.008988787420094013, 0.003050022991374135, -0.0004986303974874318, 0.01866571046411991, -0.01645793952047825, -0.006494291126728058, 0.0009228918352164328, 0.0041359891183674335, -0.007791715674102306, 0.007598177529871464, 0.008142952807247639, 0.01800624653697014, -0.029016435146331787, 0.001111950259655714, 0.002390558598563075, 0.013762736693024635, -0.002618145663291216, -0.010472582653164864, -0.0034783165901899338, -0.006433362606912851, -0.030650760978460312, -0.008372331038117409, 0.015425733290612698, -0.012673186138272285, 0.005752393510192633, 0.003044646931812167, -0.01898110657930374, -0.009340023621916771, -0.025059649720788002, -0.005275715608149767, -0.021389586851000786, -0.007813219912350178, -0.019181814044713974, -0.000983820646069944, 0.0028403564356267452, 0.01568378508090973, 0.03033536486327648, -0.030708106234669685, 0.012486816383898258, 0.007397470995783806, 0.005372484680265188, 0.01313911285251379, 0.022178076207637787, -0.021188879385590553, -0.04226306825876236, -0.034263480454683304, -0.00830064993351698, 0.005945932120084763, -0.034550201147794724, -0.007476320024579763, 0.00807843916118145, -0.009684092365205288, -0.015755465254187584, -0.023654703050851822, -0.008917106315493584, -0.02688034437596798, -0.01073063351213932, -0.02270851470530033, 0.005214786622673273, 0.01056576706469059, 0.030421381816267967, -0.048714350908994675, -0.015468742698431015, -0.002130715409293771, 0.011096206493675709, 0.026048846542835236, 0.013131944462656975, 0.003906609956175089, 0.010744969360530376, 0.041431572288274765, 0.05255645141005516, -0.01009984128177166, -0.017031386494636536, 0.055595722049474716, -0.025561416521668434, -0.023712048307061195, 0.00893144216388464, 0.01770518720149994, 0.0007060570642352104, 0.012924069538712502, 0.004859966225922108, 0.018866417929530144, 0.004053555894643068, -0.022106396034359932, 0.006003276910632849, 0.019368184730410576, 0.0025697608944028616, 0.03592647612094879, 0.0021701399236917496, 0.01617121510207653, -0.028256617486476898, -0.04911576583981514, -0.003505196887999773, -0.019024115055799484, 0.009268342517316341, -0.003734575817361474, 0.0020357382018119097, 0.002722082892432809, -0.012228764593601227, 0.056197840720415115, -0.03311658278107643, -0.03391940891742706, -0.04277917370200157, 0.017518816515803337, 0.025905484333634377, -0.03185500204563141, 0.015038657002151012, -0.0017633505631238222, -0.041546259075403214, -0.009834622032940388, 0.04060007259249687, 0.0012015514075756073, -0.03142491355538368, -0.000622280000243336, 0.04332394897937775, -0.0313388966023922, -0.006867032032459974, -0.003938866313546896, 0.00900312326848507, 0.011619476601481438, -0.005447749979794025, -0.031768981367349625, 0.00018726639973465353, -0.009340023621916771, -0.0003167400718666613, -0.010795146226882935, 0.0422343984246254, -0.028170600533485413, -0.014737596735358238, -0.006827607285231352, 0.00817162450402975, 0.0044370489194989204, 0.010085505433380604, -0.010859658941626549, 0.019525881856679916, -0.018120937049388885, 0.028715375810861588, -0.0059208436869084835, 0.01769085042178631, -0.00478111719712615, -0.024529211223125458, 0.02068711258471012, -0.021059853956103325, -0.021203216165304184, 0.01677333563566208, -0.01571245677769184, 0.013397163711488247, -0.0020877066999673843, -0.0031987610273063183, 0.008587374351918697, -0.0021683478262275457, -0.04300855100154877, -0.02346833236515522, 0.006555220112204552, 0.0053473967127501965, -0.008795248344540596, 0.010888331569731236, -0.04071476310491562, 0.007920741103589535, 0.013404332101345062, -0.009748605079948902, 0.022020379081368446, -0.00256259273737669, 0.04209103435277939, 0.008193128742277622, -0.006082125939428806, -0.03217039629817009, 0.043209258466959, -0.02298090234398842, -0.004451385233551264, 0.002433567075058818, -0.0009107957012020051, -0.014407864771783352, -0.007863396778702736, 0.05829092487692833, 0.00012129755486967042, 0.013447340577840805, -0.01678767055273056, -0.0463632196187973, -0.0014596027322113514, -0.005397573113441467, -0.0021092109382152557, 0.010164353996515274, -0.03228508681058884, 0.008788080886006355, -0.017504479736089706, 0.007010393775999546, 0.03245712071657181, -0.014329015277326107, -0.02095950022339821, 0.014192821457982063, -0.04146024212241173, 0.0015904203755781054, 0.019310839474201202, -0.005519430618733168, -0.02116020768880844, -0.04533101245760918, 0.05940914526581764, -0.006852695718407631, -0.003481900552287698, 0.004239926114678383, 0.026980698108673096, -0.043438635766506195, -0.005114433355629444, -0.009870462119579315, 0.01275203563272953, -0.015812810510396957, 0.047940198332071304, -0.017834212630987167, -0.008730735629796982, -0.011304080486297607, -0.04837028309702873, 0.013332650996744633, -0.00979878194630146, -0.015196355059742928, -0.032571811228990555, -0.005824074614793062, 0.01338282786309719, 0.005809738300740719, -0.0026754902210086584, -0.008042599074542522, -0.013719728216528893, -0.03409144654870033, 0.017905892804265022, -0.011368594132363796, 0.04082944989204407, 0.024514874443411827, 0.014665915630757809, 0.033948082476854324, 0.009813117794692516, 0.015626439824700356, 0.03793354332447052, -0.006795350927859545, 0.0028009319212287664, -0.026923352852463722, -0.019941631704568863, 0.016715990379452705, 0.0022471968550235033, 0.0077343713492155075, -0.007705698721110821, -0.013088935986161232, -0.01787722110748291, -0.0034890687093138695, 0.0015832523349672556, 0.00320772104896605, -5.320068225955765e-07, 0.005372484680265188, 0.02359735779464245, -0.011296913027763367, 0.014637243933975697, -0.01344017218798399, 0.014135477133095264, 0.015827147290110588, 0.0010322051821276546, 0.0030267268884927034, 0.00816445704549551, 0.010443910025060177, 0.03311658278107643, 0.017590496689081192, -0.0014846910489723086, -0.016543956473469734, 0.02706671506166458, -0.0017373663140460849, 0.02097383700311184, 0.020586760714650154, 0.023554349318146706, -0.009418873116374016, -0.0094117047265172, 0.038621678948402405, -0.01789155788719654, -0.0027615074068307877, 0.008967283181846142, -0.00176783069036901, 0.027797861024737358, 0.017963238060474396, 0.02454354614019394, 0.035811785608530045, 0.008028263226151466, 0.06135886535048485, 0.002322461688891053, -0.01102452538907528, 0.015927501022815704, -0.020543750375509262, 0.01945420168340206, -0.0007875941228121519, -0.0035858380142599344, -0.014658748172223568, -0.002130715409293771, 0.002385182539001107, -0.0002549152704887092, 0.010214530862867832, -0.0065910606645047665, -0.005540934856981039, 0.011533459648489952, -0.006967385299503803, -0.013239465653896332, -0.03260048106312752, 0.00917515717446804, -3.2312414987245575e-05, 0.04722338914871216, -0.013189288787543774, -0.001996313687413931, -0.0023314219433814287, -0.00582765880972147, 0.04286519065499306, 0.018780400976538658, 0.01664431020617485, 0.0018189032562077045, -0.015798473730683327, 0.016672981902956963, -0.0021737238857895136, -0.01989862322807312, -0.01660129986703396, 0.01089549995958805, -0.014508217573165894, 0.004523065872490406, 0.02440018393099308, -0.006845527794212103, 0.020586760714650154, 0.0010528134880587459, 0.015884490683674812, -0.036471251398324966, 0.0026611541397869587, 0.020400390028953552, 0.014049460180103779, 0.004261430818587542, -0.011798678897321224, -0.03601249307394028, 0.011942041106522083, 0.009038964286446571, -0.007992422208189964, -0.00478111719712615, -0.003003430552780628, 0.007307869847863913, 0.01321796141564846, -0.004566074348986149, -0.020242691040039062, -0.020558087155222893, -0.026650965213775635, 0.0023690543603152037, -0.024514874443411827, -0.007178843952715397, -0.011762838810682297, -0.04131688177585602, -0.006300752982497215, -0.0007719139102846384, -0.02738211117684841, -0.01019302662461996, -0.028371307998895645, 0.045617736876010895, 0.009433208964765072, -0.030278019607067108, 0.008623214438557625, -0.020558087155222893, -0.004960319492965937, -0.0279555581510067, -0.02858635038137436, -0.01141877006739378, -0.0056878807954490185, -0.024772925302386284, 0.012931237928569317, 0.045646410435438156, -0.01660129986703396, -0.00870206393301487, 0.0063975220546126366, 0.010795146226882935, 0.026507603004574776, 0.027410782873630524, 0.005659208633005619, 0.025719113647937775, 0.0012024474563077092, 0.027740515768527985, -0.003051815088838339, 0.029790589585900307, -0.0073903026059269905, 0.02520301192998886, -0.01019302662461996, -0.0021432593930512667, -0.03664328530430794, 0.004175413399934769, -0.02999129705131054, -0.006469202693551779, 0.016386257484555244, -0.01787722110748291, 0.009605242870748043, 0.0031019917223602533, 0.036901336163282394, -0.01312477607280016, 0.023970099166035652, -0.006655573379248381, 0.015182018280029297, -0.019153142347931862, -0.0007302493322640657, -0.002523168222978711, 0.021805334836244583, -0.01618555188179016, 0.017017049714922905, -0.020701449364423752, 0.009598075412213802, -0.013762736693024635, 0.020142337307333946, -0.005297219846397638, 0.018120937049388885, 0.018680047243833542, -0.02455788291990757, -0.03500895947217941, 0.017920229583978653, -0.02516000159084797, 0.012164251878857613, 0.0019873534329235554, -0.026220880448818207, 0.021059853956103325, 0.031109519302845, -0.01102452538907528, 0.0016137167112901807, 0.027582816779613495, -0.012952742166817188, 0.029260151088237762, -0.015052992850542068, 0.0037238236982375383, -0.0010877579916268587, -0.011074702255427837, 0.02531770057976246, 0.009254006668925285, 0.016687318682670593, 0.019153142347931862, 0.013153448700904846, 0.014794941991567612, 0.022450463846325874, 0.015927501022815704, -0.03059341572225094, -0.012278941459953785, -0.0037847524508833885, -0.03730275109410286, -0.011253904551267624, 0.00392453046515584, -0.03202703595161438, -0.008838256821036339, 0.037073370069265366, 0.030851466581225395, 0.014321847818791866, -0.02333930693566799, 0.026163535192608833, -0.037503454834222794, -0.02394142746925354, -0.0036808152217417955, 0.02828529104590416, 0.007641186006367207, 0.01913880556821823, 0.018221288919448853, -0.006128718610852957, -0.016845015808939934, 0.013253801502287388, -0.010601608082652092, -0.004447801038622856, 0.0018404076108708978, 0.03882238641381264, -0.038478318601846695, 0.026952024549245834, 0.045302338898181915, 0.03687266632914543, -0.01754748821258545, -0.032686498016119, -0.006838359870016575, -0.026020172983407974, 0.024127796292304993, 0.01002099271863699, -0.003338538808748126, -0.03174031153321266, 0.030994828790426254, -0.004006963223218918, -0.010680456645786762, 0.005781066138297319, 0.01711740344762802, 0.005053504835814238, 0.0051287696696817875, -0.013239465653896332, -0.0037202397361397743, 0.028959091752767563, -0.006268496159464121, -0.0036467667669057846, 0.010694793425500393, 0.03701602667570114, 0.020586760714650154, 0.020472070202231407, 0.017361119389533997, -0.008207465521991253, 0.011361425742506981, -0.04728073254227638, 0.043295275419950485, 0.001960473135113716, 0.032428447157144547, 0.007469151634722948, 0.008551533333957195, -0.009734268300235271, 0.017619170248508453, -0.01850801333785057, -0.03687266632914543, 0.007368798367679119, -0.004684348125010729, 0.006895704194903374, 0.010257539339363575, 0.022565152496099472, -0.00025379523867741227, 0.021332241594791412, 0.02392709068953991, 0.0007956582121551037, -0.03538170084357262, 0.03747478500008583, 0.006813271436840296, 0.004325943533331156, 0.013633710332214832, 0.008917106315493584, 0.012981414794921875, 0.0029711739625781775, -0.001930008758790791, 0.03196968883275986, 0.05754544213414192, -0.00660898070782423, -0.008565870113670826, -0.008960114791989326, -0.01756182499229908, 0.0015984844649210572, 0.020443398505449295, -0.017647841945290565, -0.019497210159897804, 0.008745072409510612, 0.02286621369421482, 0.02143259532749653, 0.023970099166035652, 0.02299523912370205, -0.0220920592546463, 0.009641083888709545, 0.004616251215338707, -0.03572576865553856, -0.01976959779858589, 0.03297322243452072, -0.006476371083408594, -0.0032561058178544044, 0.029303159564733505, 0.007605345454066992, 0.03174031153321266, 0.0035499974619597197, -0.02706671506166458, -0.013612206093966961, 0.029503867030143738, -0.0016280529089272022, 0.0036091343499720097, 0.01017152238637209, -0.016099534928798676, -0.02703804336488247, 0.005419077351689339, -0.010737801901996136, 0.008831089362502098, 0.022421792149543762, -0.016414931043982506, 0.019611898809671402, -0.028184937313199043, -0.022579489275813103, -0.03136757016181946, 0.03495161607861519, -0.07391736656427383, 0.02923147939145565, -0.006820439361035824, 0.0007315933471545577, -0.0011576468823477626, 0.022034713998436928, 0.011820183135569096, -0.025905484333634377, -0.01492396742105484, 0.029733244329690933, 0.008049767464399338, 0.020902154967188835, -0.01468025241047144, 0.010185858234763145, -0.016873687505722046, 0.02441452071070671, 0.00924683827906847, 0.028184937313199043, 0.006738006137311459, 0.006135886535048485, 0.007243356667459011, 0.0008960114791989326, 0.011060365475714207, -0.00636884942650795, 0.020271364599466324, -0.023367978632450104, 0.002033946104347706, -0.011554963886737823, -0.0053545646369457245, 0.010544262826442719, -0.004842046182602644, -0.04128820821642876, 0.0017167580081149936, -0.02904510870575905, -0.000883915345184505, 0.0015035072574391961, -0.016271568834781647, 0.025747785344719887, 0.010307716205716133, -0.0186370387673378, 0.033374637365341187, 0.012393631041049957, 0.043295275419950485, -0.01911013200879097, 0.00512518547475338, 0.019540218636393547, -0.007906405255198479, 0.024156469851732254, 0.0026987865567207336, 0.009426040574908257, -0.001738262246362865, 0.006422610487788916, -0.008723568171262741, -0.01802058331668377, -0.010737801901996136, 0.0027579234447330236, -0.005469254218041897, 0.017518816515803337, -0.00189596030395478, -0.00949055328965187, 0.008028263226151466, -0.011705493554472923, 0.008114280179142952, -0.011175055056810379, -0.0050033279694616795, -0.01002099271863699, 0.0034890687093138695, -0.015655113384127617, 0.0031682965345680714, 0.004232758190482855, -0.031482260674238205, -0.0017785828094929457, -0.015282372012734413, -0.008530029095709324, -0.008200297132134438, 0.049660541117191315, -0.0344928577542305, -0.021848343312740326, -0.014981311745941639, -0.010773641988635063, -0.020285699516534805, -0.017002714797854424, 0.028557678684592247, -0.044528186321258545, 0.004526650067418814, -0.015583431348204613, -0.024285495281219482, 0.024643899872899055, 0.02300957404077053, -0.004300855100154877, -0.013963443227112293, 0.03159694746136665, -0.03635656088590622, -0.0094117047265172, -0.05097946897149086, 0.014694588258862495, -0.02236444689333439, -0.02223542146384716, 0.06158824637532234, 0.016902361065149307, 0.04604782164096832, 0.014020787551999092, -0.009476217441260815, -0.014587067067623138, 0.0001640820992179215, -0.0125871691852808, -0.04882904142141342, -0.004182581789791584, 0.011132046580314636, -0.008286314085125923, 0.0188234094530344, 0.011153550818562508, -0.01989862322807312, -0.004644923377782106, 0.02908811718225479, 0.006902872584760189, -0.01664431020617485, -0.02050074189901352, -0.015511751174926758, -0.006630484946072102, 0.006483539007604122, -0.008565870113670826, -0.002322461688891053, -0.005193282384425402, 0.0003967090742662549, -0.009619579650461674, -0.00900312326848507, -0.011304080486297607, -0.031482260674238205, 0.01943986490368843, -0.0035249092616140842, -0.019869951531291008, -0.059925246983766556, -0.007397470995783806, -0.010494086891412735, 0.010694793425500393, 0.007942245341837406, 0.006168142892420292, 0.007440479472279549, 0.009719932451844215, -0.012336285784840584, -0.0006836567772552371, 0.0006599124753847718, -0.020113665610551834, 0.034406840801239014, 0.012450975365936756, 0.0037274076603353024, -0.00209845881909132, -0.004261430818587542, -0.0037847524508833885, -0.004358199890702963, 0.0095622343942523, -0.015339716337621212, -0.0009685883997008204, 0.026392914354801178, -0.010967180132865906, -0.00016117007180582732, 0.040169987827539444, -0.03558240830898285, -0.029346168041229248, -0.022823205217719078, -0.027711844071745872, -0.0031898007728159428, 0.0006805207231082022, 0.007078490685671568, 0.010443910025060177, 0.019826941192150116, -0.001544723752886057, 0.01033638883382082, -0.013662382960319519, 0.012845220975577831, 0.005297219846397638, 0.009103477001190186, 0.0055624390952289104, -0.011999385431408882, -0.01260150596499443, 0.003338538808748126, -0.030105985701084137, -0.006010444834828377, -0.024213815107941628, -0.004637755453586578, 0.0163432490080595, 0.012759203091263771, -0.005859915167093277, -0.004014131613075733, -0.0158558189868927, -0.005533766932785511, 0.01041523739695549, -0.0003951410762965679, -0.016988378018140793, 0.014522554352879524, -0.0022077723406255245, 0.03713071718811989, 0.011569300666451454, 0.005648456513881683, 0.009512057527899742, -0.012013722211122513, 0.025432389229536057, 0.04062874615192413, 0.04137422516942024, 0.037532128393650055, -0.006927961017936468, 0.015784138813614845, 0.013246634043753147, -0.007132251281291246, 0.030880140140652657, 0.01909579709172249, 0.009210998192429543, -0.000441733660409227, 0.0251743383705616, 0.023898418992757797, -0.0020178179256618023, -0.04885771498084068, -0.007533664349466562, -0.006576724350452423, -0.026607956737279892, -0.028715375810861588, -0.017762532457709312, -0.0033690030686557293, -0.013662382960319519, 0.003089447505772114, 0.008042599074542522, 0.017361119389533997, -0.0031951770652085543, 0.04068608954548836, 0.005899339448660612, -0.013031590729951859, 0.06841226667165756, -0.024500537663698196, 0.02970457263290882, -0.01726076565682888, -0.013433003798127174, -0.0020088576711714268, -0.019210485741496086, 0.026177871972322464, 0.006827607285231352, -0.01847934164106846, 0.006694997660815716, -0.0015913164243102074, -0.00870206393301487, -0.01058010384440422, 0.014622907154262066, -0.004734524525702, -0.014766269363462925, -0.025575751438736916, -0.0010250371415168047, -0.029475193470716476, -0.003946034703403711, -0.012006553821265697, -0.004472889471799135, -0.020285699516534805, 0.013633710332214832, -0.01065178494900465, 0.026005838066339493, -0.014035124331712723, -0.032113052904605865, 0.0013341611484065652, -0.01516768243163824, -0.013167784549295902, -0.023540014401078224, 0.002976550254970789, 0.032227739691734314, -0.011691157706081867, -0.004035635851323605, 0.005358148831874132, 0.01197071373462677, -0.024357175454497337, 0.0009945727651938796, 0.02702370658516884, -0.009447544813156128, 0.01141877006739378, -0.0344928577542305, 0.016744662076234818, 0.004049971699714661, -0.008379499427974224, -0.0005523910513147712, -0.015454405918717384, 0.0035195332020521164, 0.005411909427493811, -0.005662792362272739, 0.01032205205410719, -0.004308023024350405, -0.0004099252400919795, 0.0005416389321908355, 0.017977574840188026, 0.018708718940615654, -0.03343198075890541, -0.02411346137523651, -0.007347294129431248, -0.0009300599340349436, 0.008185961283743382, -0.002915621269494295, 0.004153909161686897, 0.004917311016470194, 0.02564743347465992, 0.021547283977270126, 0.011167886666953564, -0.00320592918433249, -0.009146485477685928, -0.018766064196825027, -0.01088116317987442, 0.008322155103087425, 0.014400696381926537, -0.03744611144065857, 0.0051466901786625385, -0.03933848813176155, -0.00431519141420722, -0.023984435945749283, -0.0010528134880587459, 0.006336593069136143, 0.017160411924123764, 0.003238185541704297, -0.012228764593601227, 0.01569812186062336, -0.010314884595572948, 0.006401106249541044, 0.0028654446359723806, 0.020156674087047577, -0.014192821457982063, 0.01055859960615635, -0.0008642030879855156, 0.009067635983228683, 0.011777174659073353, 0.042033690959215164, 0.009196661412715912, 0.025303363800048828, 0.000442405667854473, -0.009461881592869759, 0.03672930225729942, 0.022593826055526733, -0.029331831261515617, -0.0018511597299948335, -0.002060826402157545, -0.02004198543727398, 0.012013722211122513, 0.010279043577611446, 0.0054549179039895535, 0.013891762122511864, -0.03773283585906029, 0.03586913272738457, 0.010479750111699104, -0.02302391082048416, -0.0005093825166113675, -0.0030536071863025427, 0.011770007200539112, 0.004476473201066256, 0.008350826799869537, -0.010888331569731236, 0.0005604551988653839, 0.01073063351213932, 0.007877732627093792, -0.021690646186470985, 0.04481491073966026, 0.001664789393544197, 0.010988684371113777, -0.009067635983228683, 0.02332497015595436, 0.03991193696856499, 0.02888740971684456, -0.04490092769265175, -0.028701039031147957, 0.0027095386758446693, 0.00863038282841444, 0.01849367655813694, -0.011834519915282726, -0.005784650333225727, -0.00013865777873434126, 0.003770416369661689, 0.022880548611283302, -0.00254825665615499, 0.02533203735947609, 0.013110440224409103, -0.00979878194630146, -0.0013906097738072276, -0.015454405918717384, 0.004143157042562962, 0.044986944645643234, 0.03733142092823982, -0.03282986208796501, -0.00308586354367435, 0.008142952807247639, 0.008264809846878052, 0.013497517444193363, 0.004214838147163391, 5.090465128887445e-05, 0.0216046292334795, 0.011705493554472923, -0.009827453643083572, -0.006526547484099865, 0.015182018280029297, 0.015009984374046326, -0.0009094516281038523, -0.011605140753090382, -0.003935282584279776, 0.018694384023547173, -0.052929189056158066, 0.03343198075890541, -0.013311146758496761, 0.006479955278337002, -0.02329629845917225, -0.0022722850553691387, -0.0213035698980093, -0.006770262960344553, 5.740073538618162e-05, -0.014049460180103779, 0.009913470596075058, 0.029002100229263306, 0.011877528391778469, -0.008379499427974224, -0.044069427996873856, 0.026048846542835236, -0.023210281506180763, 0.004304439295083284, 0.014809277839958668, -0.03681531921029091, 0.020715786144137383, 0.02348266914486885, 0.022020379081368446, -0.013103271834552288, -0.008307818323373795, 0.02300957404077053, -0.0020787466783076525, 0.005060672760009766, 0.0010241410927847028, 0.007526496425271034, -0.018063591793179512, 0.01529670786112547, -0.00439045624807477, 0.002197020221501589, 0.005472837947309017, 0.013526189140975475, 0.0016853975830599666, 0.004200501833111048, -0.006433362606912851, -0.045130304992198944, -0.004440633114427328, -0.009884798899292946, -0.0002710434782784432, 0.01631457731127739, -0.0034854847472161055, 0.0007701218710280955, -0.01429317519068718, -0.024643899872899055, -0.0007777379942126572, -0.005118017550557852, -0.03968255594372749, 0.00870923139154911, -0.008487020619213581, 0.006576724350452423, -0.013769904151558876, -0.008193128742277622, -0.0656023770570755, 0.00017147419566754252, 0.004272182937711477, 0.020701449364423752, -0.006354513578116894, -0.027883877977728844, -0.0035517895594239235, -0.002589473268017173, -0.0032955303322523832, 0.007884901016950607, 0.011562132276594639, -0.04366801679134369, 0.05771747604012489, 0.016715990379452705, 0.007272029295563698, 0.0014873790787532926, -0.0020841227378696203, 0.005447749979794025, -0.0019479289185255766, -0.00478111719712615, 0.0025088321417570114, 0.042205724865198135, 0.020128002390265465, 0.0027955558616667986, -0.017762532457709312, 0.01849367655813694, -0.007691362407058477, -0.009676923975348473, 0.011891864240169525, 0.0217909999191761, 0.003213097108528018, 0.0063975220546126366, 0.01707439497113228, 0.01367671974003315, 0.0008373227319680154, -0.008042599074542522, 0.027324765920639038, 0.01708873175084591, 0.022149404510855675, -0.021676309406757355, -0.03701602667570114, -0.011497619561851025, 0.0018905842443928123, -0.003109159879386425, 0.03928114473819733, -0.03432082384824753, -0.0037811684887856245, 0.005963852629065514, -0.013877426274120808, 0.004791869316250086, -0.009153652936220169, 0.014121141284704208, 0.013203625567257404, -0.04114484786987305, 0.043926067650318146, -0.020615432411432266, 0.008157288655638695, 0.007662690244615078, 0.007533664349466562, 0.005881419405341148, -0.007691362407058477, 0.01251548808068037, -0.014737596735358238, 0.005236291326582432, 0.007121499162167311, -0.010522758588194847, -0.01866571046411991, -0.008666222915053368, -0.011762838810682297, 0.007211100310087204, -0.007712866645306349, -0.02376939170062542, -0.018608367070555687, 0.001802775077521801, 0.016056526452302933, 0.006512211635708809, -4.942063242197037e-05, -0.024314166978001595, 0.016515282914042473, -0.04028467461466789, -0.0038528493605554104, 0.01197788119316101, 0.0125871691852808, 0.0032238492276519537, 0.017590496689081192, -0.017332445830106735, 0.03523834049701691, 0.0035159490071237087, 0.008236137218773365, -0.005537351127713919, -0.02361169457435608, 0.004885054659098387, 0.026636630296707153, -0.008501357398927212, -0.012909733690321445, -0.024271158501505852, 0.009605242870748043, -0.009698428213596344, 0.04340996593236923, 0.0011271823896095157, 0.010709129273891449, 0.00582765880972147, -0.010902667418122292, -0.03678664565086365, -0.033517997711896896, -0.002485535806044936, 0.014314679428935051, -0.02751113660633564, 0.018909426406025887, -0.0012983205961063504, -0.018737392500042915, 0.010981516912579536, -0.010852491483092308, -0.009017459116876125, 0.016371922567486763, 0.024787262082099915, -0.02378372848033905, -0.016558291390538216, -0.011060365475714207, -0.005383236799389124, 0.01026470772922039, -0.03403409942984581, 0.007519328501075506, -0.009447544813156128, -0.014952640049159527, 0.003874353598803282, -0.016056526452302933, 0.005186114460229874, -0.023841073736548424, 0.003078695386648178, 0.03245712071657181, 0.014393528923392296, -0.015124673955142498, 0.029761917889118195, -0.00853719748556614, 0.03899442031979561, -0.003571501700207591, -0.02144693024456501, -0.0031539604533463717, -0.03320259973406792, 0.027425119653344154, -0.005845578853040934, 0.006361681502312422, -0.02004198543727398, 0.008802416734397411, 0.0011988633777946234, 0.016214223578572273, 0.021489938721060753, -0.00517177814617753, -0.005182530265301466, -0.03308791294693947, 0.0026342738419771194, 0.005953100509941578, -0.016056526452302933, -0.0053473967127501965, 0.024471865966916084, -0.03776150941848755, -0.008651887066662312, 0.017948901280760765, -0.0021163790952414274, -0.003892273874953389, 0.018737392500042915, 0.009368696250021458, -0.01523936353623867, 0.03202703595161438, 0.020271364599466324, -0.033804722130298615, 0.002783011645078659, -0.003408427583053708, 0.006798935122787952, 0.021332241594791412, -0.007078490685671568, 0.03308791294693947, -0.028557678684592247, -0.0020733706187456846, 0.014350519515573978, 0.017504479736089706, -0.01166248507797718, 0.0158558189868927, 0.005953100509941578, 0.012544160708785057, 0.012873892672359943, -0.02643592283129692, -0.043266601860523224, 0.012128411792218685, -0.001016973052173853, 0.0015330757014453411, -0.0034550202544778585, -0.003788336645811796, -0.00015433797670993954, -0.009404536336660385, -0.013282474130392075, 0.007454815320670605, -0.004440633114427328, 0.0018529517110437155, 0.004698684439063072, -0.011060365475714207, 0.009368696250021458, -0.0009255798649974167, -0.021346578374505043, -0.010859658941626549, -0.015941835939884186, -0.004845629911869764, -0.00863038282841444, -0.0007145691779442132, 0.009841790422797203, 0.006626900751143694, 0.006816855166107416, 0.004189749713987112, -0.024586554616689682, -0.008580205962061882, 0.003218473168089986, -0.0022812453098595142, 0.004971071612089872, 0.009332855232059956, 0.03822026401758194, -0.00404638797044754, 0.005250627174973488, -0.000949772191233933, 0.0017803747905418277, 0.0019497210159897804, 0.014250166714191437, 0.0010223491117358208, -0.015382724814116955, 0.0055624390952289104, 0.008938610553741455, 0.04604782164096832, 0.013210793025791645, 0.0004343415785115212, -0.024371512234210968, 0.0012087194481864572, -0.015970509499311447, 0.009124981239438057, 0.0066053965128958225, 0.024643899872899055, 0.0217909999191761, 0.008952946402132511, -0.014966975897550583, -0.010773641988635063, 0.005411909427493811, -0.019353847950696945, 0.010443910025060177, 0.007171676028519869, 0.04183298349380493, -0.002989094238728285, 0.01648661121726036, 0.0010250371415168047, 0.003576877759769559, -0.0035804619546979666, 0.006738006137311459, -0.00583124253898859, -0.0023744304198771715, 0.005644872318953276, 0.008401003666222095, 0.010142849758267403, 0.010479750111699104, -0.004379704128950834, 0.0007074010791257024, -0.01695970445871353, 0.012852388434112072, 0.006781015079468489, 0.018723055720329285, 0.005150273907929659, 0.02612052671611309, 0.0026235217228531837, 0.02253648079931736, 0.0011845271801576018, -0.001836823532357812, 0.008637550286948681, 0.014092468656599522, -0.012895396910607815, -0.01437202375382185, 0.0037274076603353024, -0.0011934873182326555, 0.00587425148114562, -0.02147560380399227, -0.019927294924855232, -0.007454815320670605, -0.0049280631355941296, 0.00824330560863018, 0.025116993114352226, -0.005250627174973488, 0.021661974489688873, -0.008085607551038265, -0.007705698721110821, -0.0025285445153713226, -0.0028098919428884983, -0.0003922290343325585, -0.02064410410821438, -0.006583892274647951, 0.001473938929848373, -0.016242895275354385, -0.01158363651484251, 0.011139214970171452, 0.00043098151218146086, -0.009447544813156128, -0.0059387641958892345, 0.014780605211853981, 0.00838666781783104, -0.024930624291300774, 0.003048231126740575, 0.006347345188260078, -0.0025339205749332905, 0.032084379345178604, 0.012787875719368458, -0.013841585256159306, 0.002390558598563075, -0.0014900671085342765, 0.010816650465130806, -0.009906303137540817, -0.012293277308344841, 0.006641237065196037, 0.005748809780925512, -0.014393528923392296, -0.003770416369661689, -0.02953253872692585, -0.008236137218773365, 0.013877426274120808, 0.005669960752129555, 0.005505094770342112, 0.01909579709172249, 0.005895755719393492, 0.002974758157506585, -0.011612309142947197, 0.009189493954181671, -0.021088525652885437, 0.014694588258862495, 0.010759306140244007, -0.010135682299733162, 0.007089242804795504, 0.03383339196443558, 0.002759715309366584, 0.005422661546617746, 0.008264809846878052, -0.013669551350176334, 0.0016459730686619878, 0.0011244943598285317, -0.022794531658291817, -0.013397163711488247, 0.01516768243163824, -0.009927807375788689, 0.005888587329536676, 0.02298090234398842, -0.010931340046226978, -0.006315088830888271, -0.003137832274660468, -0.014630075544118881, 0.005856330972164869, 0.0036288464907556772, 0.006687829736620188, 0.002550048753619194, 0.001077901804819703, -0.01569812186062336, 0.003204137086868286, -0.01382724940776825, 0.0014569147024303675, 0.02176232635974884, -0.01928216777741909, -0.020601095631718636, -0.013855922035872936, 0.013719728216528893, 0.0037130715791136026, -0.010522758588194847, 0.0007705698953941464, 0.017375454306602478, -0.005211202893406153, 0.0017015257617458701, 0.024529211223125458, 0.017647841945290565, 0.022493472322821617, 0.0015644360100850463, 0.023855410516262054, -0.015210690908133984, -0.03314525634050369, 0.019511546939611435, 0.02442885749042034, 0.012020889669656754, -0.028328299522399902, 0.0014551226049661636, -0.006601812783628702, 0.0031969689298421144, 0.004730940796434879, -0.03251446411013603, 0.03632789105176926, -0.01691669598221779, -0.02253648079931736, -0.0056807128712534904, 0.0035930059384554625, 0.0016943577211350203, -0.007082074880599976, -0.0030231426935642958, 0.0020805387757718563, 0.012135579250752926, 0.02113153412938118, 0.018780400976538658, -0.003899442031979561, -0.014436537399888039, 0.012056730687618256, 0.015812810510396957, 0.00029926784918643534, 0.009619579650461674, -0.012967078015208244, -0.00831498671323061, 0.002069786423817277, -0.015640776604413986, 0.0013072807341814041, -0.012859556823968887, -0.0032363934442400932, 0.006103630177676678, 0.01314628031104803, 0.029761917889118195, -0.01599918119609356, 0.007748707197606564, -0.0032346013467758894, -0.006042701657861471, 0.0018421995919197798, -0.004616251215338707, 0.02298090234398842, 0.005773898214101791, -0.0038815217558294535, -0.009992320090532303, 0.0019783934112638235, 0.024830270558595657, 0.0158558189868927, 0.009540730156004429, 0.013153448700904846, 0.005856330972164869, 0.0022740771528333426, 0.021977368742227554, 0.0015545799396932125, 0.008114280179142952, -0.03188367187976837, -0.005802570376545191, -0.013232297264039516, 0.0034747326280921698, -0.021102862432599068, -0.023281961679458618, -0.013110440224409103, 0.023869745433330536, 0.0029657979030162096, -0.01375556830316782, 0.001607444602996111, 0.02781219594180584, -0.023210281506180763, 0.02127489633858204, 0.008185961283743382, -0.005161026027053595, 0.009526394307613373, 0.011540628038346767, 0.006010444834828377, -0.005501510575413704, 0.00380625668913126, 0.0017561825225129724, 0.00807843916118145, 0.008429676294326782, -0.014809277839958668, 0.017017049714922905, -0.013569197617471218, -0.0122861098498106, 0.03463621810078621, 0.006193231325596571, 0.013648047111928463, 0.0186370387673378, 0.008637550286948681, 0.0245722196996212, -0.009017459116876125, -0.004128820728510618, 0.013820081017911434, -0.007214684505015612, 0.008573037572205067, 0.0035876298788934946, -0.01723209209740162, 0.01883774623274803, -0.011160719208419323, 0.006981721613556147, -2.2148284188006073e-05, 0.017805540934205055, 0.014515385963022709, -0.009641083888709545, 0.030220676213502884, -0.0017293021082878113, 0.010314884595572948, -0.024629563093185425, -0.0006419921992346644, 0.015884490683674812, -0.0017794788582250476, 0.015970509499311447, 0.004863550420850515, 0.0024998721200972795, -0.0016343249008059502, 0.014135477133095264, -0.0009408120531588793, -0.011461778543889523, 0.016658645123243332, -0.03466489166021347, 0.007698530796915293, 0.007332957815378904, -0.011519123800098896, 0.014823613688349724, 0.015626439824700356, 0.003184424713253975, 0.007322205696254969, 0.007082074880599976, -0.018737392500042915, -0.0032561058178544044, 0.03541037440299988, 0.006738006137311459, 0.010709129273891449, 0.013404332101345062, -0.01866571046411991, -0.010121345520019531, -0.006626900751143694, 0.0031199119985103607, 0.012228764593601227, 0.00761251337826252, 0.013805745169520378, 0.005333060398697853, -0.019382519647479057, 0.01724642887711525, -0.007884901016950607, -0.017017049714922905, 0.013691055588424206, -0.01195637695491314, 0.015268035233020782, 0.013791408389806747, 0.019640572369098663, -0.01522502675652504, 0.03363268822431564, -0.011296913027763367, -0.02236444689333439, 0.008178792893886566, -0.012716194614768028, -0.007727202959358692, -0.008522861637175083, 0.0023385898675769567, 0.0051538581028580666, -0.004985407926142216, 0.00994931161403656, -0.0050355843268334866, 0.005523014813661575, 0.00734012620523572, -0.01221442874521017, -0.0035553735215216875, 0.004999744240194559, -0.015569095499813557, -0.008401003666222095, 0.009332855232059956, -0.001706901821307838, -0.01149045117199421, 0.026995034888386726, 0.0004220214032102376, 0.012264605611562729, 0.0036485588643699884, 0.012321949936449528, 0.0015527879586443305, -0.014493881724774837, 0.009691259823739529, -0.009232502430677414, -0.011476115323603153, 0.017647841945290565, -0.0009031795780174434, 0.016228560358285904, -0.00780605198815465, -0.01850801333785057, -0.015411397442221642, 0.0027722595259547234, -0.033517997711896896, -0.014572731219232082, 0.01111771073192358, 0.0017427423736080527, 0.02331063523888588, -0.002559008775278926, 0.0008803312666714191, -0.008487020619213581, 0.02144693024456501, 0.02098817378282547, 0.01367671974003315, -0.0053545646369457245, 0.0062792482785880566, 0.004953151568770409, -0.008501357398927212, -0.0005290947738103569, 0.014063796028494835, 0.014450873248279095, -0.03234243020415306, 7.744898903183639e-05, -0.009325687773525715, 0.004515897948294878, -0.009676923975348473, -0.01913880556821823, -0.014651579782366753, -0.0017445343546569347, -0.004505145829170942, 0.023525677621364594, -0.03916645422577858, -0.016271568834781647, 0.0003409323689993471, -0.016400594264268875, -0.02782653272151947, -0.014673084020614624, -0.008487020619213581, -0.0012920486042276025, 0.004021299537271261, -0.01485228631645441, -0.012056730687618256, -0.007877732627093792, 0.019941631704568863, 0.008064103312790394, -0.0032543137203902006, 0.0014999231789261103, 0.005626952275633812, 0.005691464990377426, 0.011963545344769955, 0.009397368878126144, 0.006408274173736572, -0.014551226049661636, -0.008716399781405926, -0.009540730156004429, -0.013311146758496761, -0.0011675029527395964, 0.012802212499082088, -0.006838359870016575, -0.022593826055526733, 0.001697941799648106, -0.005770314019173384, -0.00816445704549551, 0.01896677166223526, 0.004637755453586578, 0.01850801333785057, 0.01554042287170887, 0.026607956737279892, -0.02967590093612671, 0.02472991682589054, 0.0016934616724029183, 0.004282935056835413, 0.0012033433886244893, 0.0016746454639360309, 0.015024320222437382, -0.020629769191145897, -0.004956735298037529, 0.00707132276147604, 0.003860017517581582, 0.005662792362272739, -0.004325943533331156, -0.007332957815378904, -0.009010291658341885, 0.01265885028988123, 0.008049767464399338, 0.025719113647937775, 0.001602068543434143, -0.022507809102535248, 0.008487020619213581, 0.0016495571471750736, 0.010680456645786762, -0.003600174095481634, 0.0010680457344278693, -0.038793712854385376, -0.007906405255198479, -0.01019302662461996, 0.016085198149085045, -0.02675131894648075, 0.009906303137540817, 0.021489938721060753, -0.03156827762722969, 0.01647227443754673, 0.0066053965128958225, -0.008422507904469967, 0.015182018280029297, 0.02504531294107437, -0.0018251753645017743, 0.02392709068953991, 0.0027417950332164764, -0.0007029210100881755, -0.0060391174629330635, -0.008099943399429321, -0.013354155234992504, -0.011719830334186554, 0.0222067479044199, -0.00078669807408005, -0.00987763050943613, -0.005286467727273703, 0.000459205883089453, -0.012228764593601227, 0.02827095426619053, 0.02676565572619438, -0.02084481157362461, 0.006648404989391565, -0.0054800063371658325, -0.0007271133363246918, 0.0284429881721735, -0.01723209209740162, -0.014601402916014194, -0.002610977506265044, 0.021561620756983757, 0.007039066404104233, -0.003903025994077325, -0.027539808303117752, -0.007720035035163164, -0.0026288977824151516, -0.013260969892144203, 0.009275510907173157, -0.010623112320899963, -0.0013968818821012974, 0.005397573113441467, 0.00032861222280189395, -0.005411909427493811, -0.018221288919448853, 0.018407659605145454, 0.011934872716665268, 0.012171420268714428, 0.031941018998622894, 0.013153448700904846, 0.01865137554705143, -0.003605550155043602, 0.00902462750673294, 0.027453791350126266, -0.004222006071358919, -0.0018870001658797264, -0.0044370489194989204, -0.020715786144137383, 0.013547693379223347, -0.003978291060775518, -0.0018153192941099405, -0.0003991731209680438, 0.0010286212200298905, 0.019941631704568863, 0.004730940796434879, -0.008379499427974224, 0.0009264758555218577, 0.005816906690597534, 0.008666222915053368, 0.014794941991567612, 0.0007459295447915792, 0.00543699786067009, 0.013483180664479733, 0.0029908863361924887, -0.00478111719712615, 0.0036449746694415808, -0.01650094799697399, 0.019812606275081635, 0.007347294129431248, 0.01738979108631611, -0.01740412786602974, 0.005594695918262005, 0.00551226269453764, -0.008444012142717838, -0.01816394552588463, -0.01849367655813694, -0.0025375045370310545, -0.004594746977090836, -0.012572833336889744, 0.022780196741223335, 0.01645793952047825, 0.01189903263002634, 0.02766883373260498, 0.0013520813081413507, -0.013117607682943344, 0.0021056269761174917, -0.009569402784109116, 0.017031386494636536, -0.010852491483092308, 0.008114280179142952, -0.012666018679738045, 0.008415339514613152, 0.02738211117684841, 0.006347345188260078, 0.00016430611140094697, 0.02019968256354332, 0.01740412786602974, 0.00621831975877285, -0.00504992064088583, -0.03790486976504326, 0.002526752417907119, -0.0033940915018320084, 0.003989043179899454, -0.020156674087047577, 0.009977984242141247, 0.0009202038054354489, 0.005777481943368912, -0.005189698655158281, 0.012580000795423985, -0.0122861098498106, -0.000475334090879187, 0.0021110030356794596, -0.002888740971684456, 0.010400901548564434, 0.013812912628054619, -0.014522554352879524, 0.0002808996068779379, 0.018579693511128426, -0.013311146758496761, -0.013784240931272507, 0.03420613333582878, 0.005626952275633812, -0.005422661546617746, 0.026679638773202896, -0.01118939183652401, -0.0006702165701426566, -0.016070861369371414, 0.010709129273891449, -0.00328119401820004, -0.00254825665615499, -0.024156469851732254, -0.008472684770822525, 0.014601402916014194, -0.006791767198592424, 0.005329476203769445, -0.017346782609820366, 0.003571501700207591, -0.0009291638853028417, -0.01251548808068037, 0.016701653599739075, 0.003334954846650362, 0.006160974968224764, 0.008264809846878052, -0.0029640060383826494, -0.001867287908680737, -0.01149045117199421, -0.009963647462427616, 0.00035325251519680023, 0.0030984077602624893, 0.0021092109382152557, -0.001930008758790791, 0.02038605324923992, -0.0027435871306806803, -0.024944959208369255, 0.0015554759884253144, 0.01126824039965868, -0.007060570642352104, -0.012795044109225273, -0.005609031766653061, 0.011856024153530598, -0.009820286184549332, -0.0007947621634230018, -0.00761251337826252, -0.009927807375788689, -0.011089038103818893, -0.0018180073238909245, 0.018737392500042915, 0.02627822570502758, 0.013734064064919949, -0.013877426274120808, 0.005967436358332634, -0.0018887922633439302, 0.012221596203744411, -0.022163739427924156, -0.048083558678627014, -0.01661563664674759, -0.008795248344540596, 0.019024115055799484, -0.002252572914585471, -0.0036180943716317415, -0.00885259360074997, -0.003981875255703926, 0.01499564852565527, -0.007361630443483591, -0.00031987609690986574, 0.013669551350176334, 0.006963801104575396, -0.013884593732655048, -0.005469254218041897, 0.002320669824257493, -0.010121345520019531, -0.006712918169796467, 0.035496391355991364, -0.01516768243163824, -0.0018905842443928123, -0.001119118300266564, 0.0011881112586706877, 0.005781066138297319, 0.0213035698980093, 0.014515385963022709, 0.008357995189726353, -0.0017131739296019077, -0.012795044109225273, -0.004168245475739241, -0.015196355059742928, 0.0045445701107382774, -0.017275100573897362, 0.024772925302386284, -0.02174799144268036, -0.010795146226882935, 0.01909579709172249, -0.019669244065880775, -0.008508524857461452, -0.009289846755564213, -0.015597768127918243, -0.062391072511672974, -0.01297424640506506, 0.012321949936449528, 0.007598177529871464, -0.029116788879036903, 0.009182325564324856, 0.024056116119027138, -0.014171317219734192, -0.027711844071745872, -0.01002816017717123, 0.025876810774207115, 0.0012526240898296237, 0.012300445698201656, 0.008193128742277622, -0.003920946270227432, -0.0008306026575155556, -0.0018619118491187692, 0.004254262428730726, -0.022780196741223335, -0.009648251347243786, 0.0013601453974843025, 0.0009936767164617777, -0.029417848214507103, -1.9432249246165156e-05, -0.010078337043523788, 0.0036413907073438168, -0.00855870172381401, 0.015483078546822071, -0.008788080886006355, -0.026192206889390945, -0.007361630443483591, 0.004892222583293915, -0.0156121039763093, 0.016199886798858643, -0.0022776611149311066, -0.017848549410700798, -0.005684297066181898, -0.006207567639648914, 0.012092570774257183, -0.009856126271188259, -0.0014542266726493835, 0.004042803775519133, 0.004752445034682751, 0.006501459516584873, 0.008085607551038265, 0.008508524857461452, 0.009124981239438057, -0.020084993913769722, -0.004265014547854662, 0.02095950022339821, -0.005956684239208698, -0.0072899493388831615, -0.004125236999243498, 0.0013906097738072276, -0.03976857289671898, 0.02471558004617691, -0.005809738300740719, -0.01958322711288929, 0.0008615150582045317, 0.007949413731694221, 0.00022568288841284811, 0.006361681502312422, 0.004164661280810833, -0.0015581640182062984, -0.011934872716665268, 0.003408427583053708, 0.001998105552047491, 0.00043366957106627524, -0.0006697686039842665, 0.014479545876383781, -0.014393528923392296, -0.012429471127688885, -0.001209615496918559, -0.012673186138272285, -0.005555271171033382, 0.012128411792218685, -0.016715990379452705, 0.00022982693917583674, 0.0033206185325980186, -0.015110338106751442, -0.030249347910284996, 0.008573037572205067, 0.013196457177400589, 0.006777430884540081, -0.0018619118491187692, -0.013984947465360165, 0.004433464724570513, -0.009942143224179745, -0.0046700118109583855, -0.008372331038117409, -0.015812810510396957, 0.0033259945921599865, 0.015282372012734413, 0.0036145104095339775, 0.012035226449370384, 0.029446521773934364, -0.0014004659606143832, 0.012321949936449528, 0.006074958015233278, 0.030650760978460312, 0.022780196741223335, -0.0015931084053590894, -0.013038759119808674, -0.0072648609057068825, -0.000851210905238986, 0.002354718279093504, -0.006107214372605085, -0.01019302662461996, 0.01468025241047144, 0.005139521788805723, -0.011318417266011238, -0.02237878367304802, -0.008845425210893154, -0.01989862322807312, -0.03618452697992325, 2.6404339223518036e-05, -0.006035533268004656, 5.429269731394015e-05, 0.03592647612094879, 0.0029962623957544565, 0.008895602077245712, -0.023038247600197792, -0.004988992121070623, -0.016873687505722046, -0.007433311082422733, 0.021704982966184616, -0.0034191799350082874, 0.025590088218450546, 0.020701449364423752, 0.005892171524465084, -0.0047954535111784935, -0.011296913027763367, -0.019339511170983315, 0.03260048106312752, 0.019067123532295227, 0.021088525652885437, 0.0056878807954490185, -0.01172699872404337, -0.00610004598274827, -0.008651887066662312, 0.007114331237971783, 0.013554861769080162, -0.012314781546592712, 0.00816445704549551, 0.010157186537981033, -0.008874097838997841, 0.013554861769080162, 0.018880754709243774, -0.005282883532345295, 0.0061394707299768925, -0.009010291658341885, -0.011368594132363796, 0.0024783676490187645, 0.02034304477274418, -0.01662997342646122, 0.012615841813385487, -0.005662792362272739, -0.006781015079468489, 0.000818954489659518, -0.039883263409137726, 0.007870565168559551, 0.02612052671611309, -0.017762532457709312, -0.022178076207637787, -0.0040033794939517975, -0.007863396778702736, -0.010150018148124218, 0.0069315447472035885, -0.01769085042178631, 0.0027615074068307877, 0.01485228631645441, -0.00024707516422495246, 0.010924171656370163, -0.0032991142943501472, 0.011038861237466335, 0.005953100509941578, -0.003634222550317645, 0.0017472223844379187, 0.005089345388114452, -0.006587476469576359, -0.03093748539686203, 0.006945881061255932, 0.0007674338412471116, -0.005275715608149767, -0.0020124418660998344, 0.0021790999453514814, 0.018995443359017372, -0.0245722196996212, -0.014006451703608036, 0.026077518239617348, 0.016357585787773132, -0.0015841482672840357, 0.014737596735358238, -0.011683989316225052, 0.035811785608530045, 0.013354155234992504, 0.0034890687093138695, 0.016529619693756104, -0.01678767055273056, 0.022264093160629272, 0.010064001195132732, 0.022593826055526733, 0.0011657109716907144, 0.0047954535111784935, 0.0007584737031720579, 0.016242895275354385, 0.024041779339313507, 0.010988684371113777, 0.0059208436869084835, -0.007533664349466562, -0.010451077483594418, 0.010279043577611446, 0.006709333974868059, -0.002619937527924776, -0.0067236702889204025, 0.015196355059742928, 0.009433208964765072, 0.0030733193270862103, 0.00641185836866498, 0.004644923377782106, 0.020615432411432266, 0.002395934658125043, 0.0005801674560643733, -0.017017049714922905, -0.009497721679508686, 0.021360913291573524, -0.012400798499584198, 0.024801596999168396, 0.013017254881560802, 0.011519123800098896, 0.007619681768119335, 0.007286365609616041, -0.005193282384425402, -0.00648712320253253, 0.008888433687388897, 0.020314373075962067, -9.867326298262924e-05, -0.006795350927859545, -0.0024980800226330757, -0.004347447771579027, 0.01414264552295208, -0.002490911865606904, -0.0018565357895568013, -0.01568378508090973, -0.00963391549885273, -0.03543904796242714, -0.011848855763673782, -0.014694588258862495, 0.01055859960615635, -0.014135477133095264, -0.008745072409510612, -0.010422405786812305, -0.009046131744980812, 0.017504479736089706, 0.011038861237466335, 0.011411602608859539, -0.0011029901215806603, -0.00039155702688731253, -0.033948082476854324, -0.03793354332447052, 0.015411397442221642, 0.003541037440299988, -0.014737596735358238, -0.006892120465636253, 0.015067328698933125, 0.012128411792218685, 0.003931698389351368, -0.013332650996744633, -0.010709129273891449, 0.009741436690092087, -0.004913726821541786, -0.017447136342525482, 0.010465414263308048, -0.01280937995761633, -0.01002816017717123, 0.00478111719712615, 0.0013870258117094636, 0.006580308545380831, 0.006985305342823267, 0.02878705784678459, -0.003562541678547859, 0.0005721033085137606, -0.0033600430469959974, -0.02827095426619053, 0.011282576248049736, 0.011461778543889523, 0.0006755926297046244, 0.0025679687969386578, 0.017948901280760765, -0.013433003798127174, 0.0069315447472035885, 0.011691157706081867, 0.002650402020663023, 0.01991296000778675, 0.004239926114678383, 0.00902462750673294, -0.024170806631445885, -0.024457529187202454, 0.027439456433057785, 0.007605345454066992, -0.014493881724774837, 0.012171420268714428, -0.017977574840188026, -0.0045839948579669, -0.001537555712275207, 0.0023081256076693535, 0.009447544813156128, -0.02766883373260498, 0.0017499104142189026, 0.006508627440780401, 0.009476217441260815, -0.009569402784109116, 0.00893144216388464, 0.0010940299835056067, 0.011175055056810379, -0.02812759205698967, -0.0016764374449849129, -0.010236035101115704, 0.031768981367349625, -0.011390098370611668, -0.012522656470537186, 0.011848855763673782, 0.0018099432345479727, -0.004189749713987112, -0.001798295066691935, -0.0031001996248960495, 0.008831089362502098, 0.021819671615958214, -0.014572731219232082, -0.02253648079931736, 0.002266908995807171, -0.019368184730410576, 0.021848343312740326, 0.0037202397361397743, -0.017905892804265022, 0.0027346271090209484, -0.0034263478592038155, -0.023052582517266273, -0.004340279847383499, 0.01724642887711525, 0.012787875719368458, -0.015497414395213127, -0.0037453279364854097, 0.0018708719871938229, 0.005583943333476782, -0.03182632848620415, -0.003802672727033496, -0.009268342517316341, 0.019497210159897804, 0.018995443359017372, -0.010357893072068691, 0.0007795299752615392, 0.0023833904415369034, 0.003530285321176052, 0.0312242079526186, -0.0022095642052590847, 0.023855410516262054, 0.006232656072825193, 0.01631457731127739, 0.021346578374505043, 0.027439456433057785, -0.005644872318953276, -0.009189493954181671, 0.018292970955371857, 0.0029962623957544565, 0.023281961679458618, -0.02192002534866333, -0.002193436026573181, -0.02706671506166458, 0.003447852097451687, -0.004992575850337744, -0.0023081256076693535, -0.007705698721110821, -0.007863396778702736, -0.016558291390538216, -0.012873892672359943, 0.005232707131654024, 0.0024711997248232365, 0.029790589585900307, 0.0012194716837257147, -0.005899339448660612, 0.01088116317987442, 0.01336132362484932, -0.0033618351444602013, 0.001637012930586934, 0.009734268300235271, -0.013913266360759735, 0.005641288124024868, -0.0044621373526751995, -0.020171010866761208, -0.01726076565682888, -0.012235932983458042, -0.017189083620905876, 0.024285495281219482, 0.013225129805505276, -0.009289846755564213, 0.002103834878653288, 0.022421792149543762, 5.63087232876569e-05, -0.012235932983458042, 0.0045839948579669, -0.0040105474181473255, -0.02159029245376587, -0.010214530862867832, -0.009691259823739529, -0.007892069406807423, -0.01095284428447485, 0.007798884063959122, -0.0005264067440293729, -0.013096103444695473, 0.0035607495810836554, 0.013325482606887817, 0.005368900950998068, -0.005738057661801577, -0.010594439692795277, 0.013253801502287388, 0.009762940928339958, 0.02095950022339821, 0.00098202854860574, 0.014106804504990578, -0.014658748172223568, 0.00987763050943613, -0.017332445830106735, 0.0008341866778209805, -0.011175055056810379, 0.004849214106798172, 0.018909426406025887, -0.014092468656599522, -0.02981926128268242, -0.006243408191949129, -0.011397265829145908, -0.0026665301993489265, 0.026952024549245834, 0.016443602740764618, -0.0026683222968131304, -0.00016968217096291482, 0.025891147553920746, -0.013447340577840805, 0.0036557267885655165, -0.01708873175084591, -0.01297424640506506, 0.005816906690597534, -0.013490349054336548, 0.001150478725321591, -0.002223900519311428, 0.009963647462427616, -0.003598382230848074, -0.0023099177051335573, -0.007619681768119335, 0.015253699384629726, 0.007920741103589535, 0.0003709487500600517, -0.0032346013467758894, 0.0024711997248232365, 7.492896111216396e-05, 0.0013404331402853131, -0.0048958067782223225, 0.009734268300235271, -0.006469202693551779, -0.017504479736089706, 0.0026736983563750982, 0.011110542342066765, 0.011153550818562508, -0.012852388434112072, 0.019052788615226746, 0.003935282584279776, -0.006691413931548595, -0.006655573379248381, 0.015210690908133984, 0.01617121510207653, 0.00783472415059805, 0.0003606446261983365, 0.00885259360074997, 0.004383288323879242, 0.016099534928798676, 0.03217039629817009, 0.001600276562385261, 0.02346833236515522, -0.003788336645811796, -0.008623214438557625, 0.020558087155222893, 0.008802416734397411, 0.004791869316250086, 0.017146075144410133, -0.012744867242872715, -0.032743845134973526, -0.007232604548335075, 0.010236035101115704, -0.009920638985931873, -0.0040105474181473255, 0.007013977970927954, -0.010529926978051662, 0.024787262082099915, 0.004985407926142216, -0.01598484441637993, 0.00439045624807477, -0.006970969494432211, -0.007418975234031677, 0.0014524345751851797, 0.015526087023317814, -0.006042701657861471, -0.0032973221968859434, 0.0031593365129083395, 0.000491462298668921, 0.016515282914042473, -0.029446521773934364, 0.006576724350452423, -0.0008229865343309939, 0.011375761590898037, -0.016572628170251846, -0.01587015576660633, 0.003437099978327751, -0.004892222583293915, -0.017490144819021225, 0.0018215914024040103, 0.0025715529918670654, -0.010694793425500393, 0.007913573645055294, -0.025833802297711372, -0.013038759119808674, -0.009010291658341885, -0.020873483270406723, -0.02798422984778881, 0.004028467461466789, 0.013540525920689106, -0.026378577575087547, -0.006268496159464121, 0.021389586851000786, 0.021719317883253098, 0.004265014547854662, 0.0011612308444455266, -0.017920229583978653, 0.0011155343381687999, 0.012981414794921875, 0.009110644459724426, -0.01360503863543272, 0.0028313961811363697, -0.0060391174629330635, 0.0002486431912984699, -0.010257539339363575, 0.007135835476219654, 0.011167886666953564, -0.015970509499311447, -0.020887820050120354, 0.008286314085125923, 0.029102452099323273, -0.01569812186062336, -0.01305309496819973, 0.010451077483594418, 0.011841687373816967, -0.0025177921634167433, -0.02392709068953991, -0.023712048307061195, -0.006117966491729021, 0.011110542342066765, -0.01260150596499443, -0.00949055328965187, 0.048714350908994675, -0.009146485477685928, 0.006275664549320936, 0.0010411653202027082, -0.02206338755786419, -0.0016522451769560575, 0.008759408257901669, -0.012257437221705914, -0.0015142593765631318, -0.007569504901766777, -0.0191244687885046, 0.010737801901996136, 0.013332650996744633, 0.004580410663038492, -0.014952640049159527, -0.004429880995303392, -0.016113869845867157, 0.0032292252872139215, -0.029475193470716476, 0.01972658932209015, -0.014866622164845467, -0.0016477651661261916, -0.012687522917985916, 0.02037171646952629, -0.011669653467833996, 0.011031693778932095, -0.02718140371143818, -0.004609083291143179, -0.0069315447472035885, -0.02285187691450119, -0.0064978753216564655, -0.023697711527347565, 0.017318109050393105, 0.002132507273927331, -0.011146382428705692, 0.012529824860394001, 0.027912549674510956, -0.01645793952047825, -0.010372228920459747, -0.004666427616029978, 0.009282679297029972, -0.002783011645078659, -0.017346782609820366, 0.0018565357895568013, 0.017060058191418648, 0.0186370387673378, 0.003831345122307539, 0.002822436159476638, -0.009361527860164642, 0.0029998463578522205, 0.009074804373085499, -0.026837335899472237, -0.008279145695269108, -0.007218268699944019, -0.021074190735816956, -0.026851672679185867, -0.0015536838909611106, -0.019368184730410576, -0.0029604218434542418, 0.009956480003893375, 0.0012938405852764845, 0.005910091567784548, 0.004451385233551264, -0.011927705258131027, -0.016744662076234818, -0.006153807044029236, 0.01770518720149994, 0.01754748821258545, 0.0469653382897377, -0.004064308013767004, 0.021418258547782898, -0.01898110657930374, -0.008279145695269108, -0.03188367187976837, 0.00594951631501317, -0.001150478725321591, -0.0216046292334795, -0.002421023091301322, 0.0015509958611801267, 0.013268138282001019, 0.017533153295516968, 0.018909426406025887, -0.007935077883303165, 0.005390405189245939, -0.00543699786067009, -0.0005676232976838946, 0.005024832207709551, 0.010128513909876347, -0.007548000663518906, 0.014694588258862495, 0.001735574216581881, -0.021504275500774384, 0.006031949073076248, 0.007626849692314863, 0.00707490649074316, -0.0012060314184054732, 0.007970917969942093, 0.017518816515803337, 0.012845220975577831, -0.0037489121314138174, -0.020084993913769722, 0.021547283977270126, -0.007813219912350178, -0.00038394093280658126, -0.004422712605446577, 0.011139214970171452, 0.016515282914042473, 0.00015288195572793484, -0.009110644459724426, -0.01423583086580038, 0.00660898070782423, 0.024744253605604172, -0.01599918119609356, -0.009067635983228683, 0.011361425742506981, 0.01691669598221779, -0.016529619693756104, -0.006057037506252527, -0.00036534867831505835, 0.005107265431433916, -0.017662178725004196, 0.005060672760009766, 0.0126803545281291, 0.006476371083408594, 0.006386769935488701, 0.006752342451363802, -0.018378987908363342, -0.0004394936258904636, 0.00478111719712615, -0.009203829802572727, 0.008644718676805496, 0.028844401240348816, -0.007361630443483591, 0.00353745324537158, -0.01102452538907528, 0.005408325232565403, 0.0033869233448058367, -0.0156121039763093, 0.007526496425271034, 0.007325789891183376, -0.004501561634242535, -0.02345399744808674, -0.011468946933746338, -0.017604833468794823, -0.02240745536983013, -0.010365060530602932, -0.0005976396496407688, 0.0028708206955343485, -0.01351185329258442, -0.00695304898545146, -0.005612615961581469, -0.009160821326076984, -0.0027274589519947767, -0.006178895011544228, -0.012744867242872715, -0.014651579782366753, 0.009676923975348473, -0.012028058059513569, -0.023382315412163734, -0.001076109823770821, -0.0019533049780875444, 0.019970303401350975, 0.0016827095532789826, 0.0014237622963264585, -0.015196355059742928, -0.01738979108631611, 0.010185858234763145, 0.009555066004395485, 0.0011334544979035854, 0.015368388965725899, 0.0024640315677970648, -0.014450873248279095, -0.018307305872440338, -0.012795044109225273, 0.01143310684710741, -0.012716194614768028, -0.025403717532753944, 0.013812912628054619, -0.011325584724545479, 0.007569504901766777, -0.007322205696254969, 0.0005949516198597848, 0.03202703595161438, 0.018106600269675255, 0.021633300930261612, 0.02114587090909481, 0.02019968256354332, 0.0019801852758973837, -0.01862270198762417, 0.021088525652885437, 0.03174031153321266, -0.013346986845135689, 0.0035553735215216875, 0.0028905330691486597, -0.0029926784336566925, 0.004680763930082321, 0.0245722196996212, 0.01118939183652401, -0.009418873116374016, -0.027869541198015213, -0.010049664415419102, 0.003143208334222436, 0.019339511170983315, -0.003374379361048341, -0.011834519915282726, -0.01802058331668377, 0.00780605198815465, -0.015483078546822071, -0.01251548808068037, 0.041746966540813446, 0.0158558189868927, -0.0006912728422321379, 0.015253699384629726, 0.0034621884115040302, -0.039223797619342804, 0.011289744637906551, 0.028012903407216072, 0.008687727153301239, -0.01554042287170887, -0.0034801086876541376, -0.010465414263308048, -0.0010268291225656867, -0.009841790422797203, 0.0003398123662918806, -4.776861169375479e-05, 0.009655419737100601, -0.009791613556444645, 0.004756028763949871, 0.0030733193270862103, -0.002616353565827012, 0.0003720687818713486, -0.007186011876910925, 0.025375045835971832, -0.019468536600470543, -0.017920229583978653, 0.0005653832340613008, -0.019525881856679916, -0.019468536600470543, -0.004601914901286364, 0.004945983178913593, -0.003607342252507806, -0.01617121510207653, 0.0054871742613613605, 0.02236444689333439, -0.0052470434457063675, 0.008286314085125923, -0.0008745071827434003, -0.0006393041694536805, 0.006720086093991995, 0.01726076565682888, 0.02146126702427864, 0.003625262528657913, -0.0011289744870737195, 0.01820695400238037, 0.00044374968274496496, 0.007006809581071138, 0.0006894808611832559, 0.01708873175084591, -0.000620487960986793, 0.007300701458007097, -0.022020379081368446, 0.014113972894847393, -0.009519225917756557, 0.047796837985515594, -0.015583431348204613, -0.013404332101345062, -0.03495161607861519, 0.01740412786602974, 0.015483078546822071, 0.006282832473516464, -0.004107316490262747, -0.010866827331483364], "85527e92-eb41-458f-91a6-751735c62a23": [0.014186478219926357, -0.024442560970783234, -0.004979162476956844, 0.04086552560329437, 0.00327532971277833, -0.034354567527770996, 0.033401746302843094, 0.03665722534060478, -0.01771986484527588, 0.04486209154129028, 0.01823597587645054, -0.003708731848746538, 0.0177463311702013, -0.009204006753861904, 0.03019919991493225, 0.030728546902537346, -0.0018047397024929523, 0.010434736497700214, -0.010560456663370132, -0.03054327517747879, 0.015298104844987392, -0.02654671110212803, -0.02195463329553604, 0.03935689106583595, 0.023688241839408875, 0.0021984409540891647, -0.05499906837940216, 0.027420133352279663, 0.009448830038309097, -0.03403696045279503, 0.007966659963130951, 0.032369520515203476, -0.02575269341468811, 0.011036868207156658, 0.020684203132987022, -0.007417463697493076, -0.01380270253866911, -0.046635400503873825, -0.0662212073802948, -0.0012183233629912138, 0.004562302492558956, 0.021081212908029556, 0.014530553482472897, -0.019757846370339394, -0.017534593120217323, 0.008985651656985283, 0.005157817155122757, -0.011367709375917912, -0.0034606007393449545, 0.009157689288258553, 0.034566305577754974, 0.001096739200875163, 0.019307902082800865, -0.0065738181583583355, 0.039489224553108215, -0.03303120285272598, 0.0035929372534155846, -0.018037471920251846, -0.024707233533263206, -0.05748699605464935, 0.02100181020796299, -0.014265879988670349, 0.024376392364501953, -0.011963224038481712, 0.041474275290966034, 0.008046062663197517, 0.002519357018172741, -0.016740573570132256, -0.016978779807686806, 0.024535195901989937, 0.010626625269651413, -0.0016575152985751629, -0.0480911023914814, 0.00427447073161602, 0.02346326969563961, -0.023145662620663643, -0.0021818988025188446, 0.049308598041534424, 0.018725622445344925, -0.022788353264331818, 0.006014696322381496, -0.03075501322746277, 0.020843006670475006, -0.0176536962389946, 0.06579773128032684, 0.01648913323879242, -0.023926448076963425, -0.034672174602746964, -0.010037727653980255, -0.01761399395763874, 0.003844376653432846, 0.014543786644935608, 0.0007286781328730285, -0.008039445616304874, -0.020895941182971, -0.015073132701218128, 0.018222743645310402, -0.005779798608273268, -0.004291012417525053, -0.03403696045279503, 0.02082977257668972, -0.005998154170811176, 0.022761886939406395, 0.015536311082541943, 0.04181835055351257, 0.005773182027041912, 0.005042022559791803, -0.0007654842338524759, -0.02663934789597988, 0.026930488646030426, -0.026255572214722633, 0.006044472102075815, -0.004697947297245264, -0.03766298294067383, -0.034698642790317535, -0.05356983467936516, -0.04962620511651039, -0.0006046126363798976, -0.0034109745174646378, -0.029299311339855194, 0.06791511923074722, -0.02243104577064514, -0.005826116539537907, 0.00541256507858634, -0.003324955701828003, 0.015126067213714123, 0.01724345237016678, 0.016581770032644272, 0.014239412732422352, -0.014014440588653088, -0.012333766557276249, -0.023344166576862335, 0.022007567808032036, -0.008350436575710773, 0.027340730652213097, 0.015298104844987392, -0.019175566732883453, 0.030807949602603912, -0.01847418211400509, 0.01398797333240509, -0.05780460312962532, -0.014967263676226139, -0.007192491553723812, 0.007821090519428253, 0.026890786364674568, 0.0017832349985837936, -0.004466358572244644, 0.031866639852523804, -0.008469538763165474, 0.016237694770097733, -0.0768081322312355, -0.01634356379508972, -0.030146265402436256, 0.025527721270918846, 0.0058161914348602295, 0.002982534933835268, 0.009071670472621918, 0.022497212514281273, 0.02117384783923626, 0.058439821004867554, 0.021319417282938957, -0.04181835055351257, -0.025183646008372307, 0.021187081933021545, 0.04134193807840347, 0.007496865466237068, 0.05126718059182167, 0.025805627927184105, -0.03440750390291214, 0.012095560319721699, -0.01549660973250866, -0.009766437113285065, 0.027526002377271652, 0.020221024751663208, -0.029643386602401733, 0.0064778742380440235, 0.002603721572086215, 0.05335809662938118, 0.019506407901644707, -0.0011554635129868984, -0.026070300489664078, 0.005796340759843588, 0.01380270253866911, 0.008575408719480038, 0.008039445616304874, 0.018765322864055634, -0.008065912872552872, 0.022960390895605087, 0.01331967394798994, -0.00938927847892046, 0.0073115942068398, -0.010467820800840855, 0.002628534799441695, 0.014424683526158333, -0.0006128836539573967, -0.012155111879110336, 0.0197049118578434, -0.0012720851227641106, -0.009627483785152435, 0.03229011967778206, 0.018037471920251846, -0.04642366245388985, -0.015020198188722134, 0.029643386602401733, -0.043459322303533554, 0.02233840897679329, -0.018513882532715797, -0.03350761532783508, 0.0067326221615076065, -0.03964802995324135, 0.011983074247837067, -0.04152720794081688, -0.0049626207910478115, -0.037398308515548706, -0.008496006950736046, -0.010236232541501522, -0.00031119765480980277, 0.03393109142780304, -0.04811757057905197, -0.0439886674284935, -0.022933924570679665, 0.027287796139717102, 0.02182229794561863, -0.029325779527425766, -0.06346861273050308, 0.017230218276381493, -0.016608236357569695, 0.017627228051424026, -0.01778603158891201, 0.0069741359911859035, -0.004764115903526545, -0.011162588372826576, 0.014742291532456875, 0.0033117220737040043, -0.0071329399943351746, 0.03485744819045067, 0.05023495480418205, 0.012545504607260227, -0.014080609194934368, 0.018791789188981056, 0.019956352189183235, 0.013207187876105309, -0.02959045208990574, -0.006808715406805277, 0.0068616499193012714, 0.03755711391568184, -0.016714105382561684, 0.05695765092968941, 0.0029213293455541134, -0.012188196182250977, -0.014305581338703632, -5.0789320084732026e-05, 0.01539074070751667, 0.0002750119019765407, -0.01905646361410618, 0.026705516502261162, 0.01979754865169525, -0.032581258565187454, -0.01730962097644806, 0.012254364788532257, 0.015112834051251411, 0.03618081286549568, 0.001060346607118845, 0.029325779527425766, 0.005730172619223595, -0.010970699600875378, 0.01696554571390152, -0.02322506532073021, 0.01573481597006321, 0.02171642705798149, 0.005875742994248867, -0.004595386795699596, -0.007185874506831169, 0.024746933951973915, 0.020207790657877922, -0.0204195287078619, -0.037398308515548706, -0.0076755196787416935, 0.029061106964945793, 0.004228152800351381, -0.04973207414150238, 0.008674660697579384, 0.005217368248850107, -0.021875232458114624, 0.02763187140226364, -0.02575269341468811, -0.04422687366604805, 0.0007212341879494488, -0.0229471568018198, -0.0011198980500921607, 0.00854894146323204, -0.012386701069772243, -0.0015648796688765287, 0.00655065942555666, -0.00021339269005693495, 0.002415142022073269, -0.028690563514828682, 0.01932113617658615, 0.009534848853945732, 0.035280924290418625, 0.017640462145209312, -0.0233309343457222, -0.001473071170039475, -0.00594191113486886, 0.0002704628277570009, -0.025368915870785713, 0.022325176745653152, 0.0188447255641222, -0.004592078272253275, 0.05547548085451126, 0.028690563514828682, -0.018791789188981056, -0.020168090239167213, -0.018183041363954544, -0.002866740571334958, 0.026533478870987892, 0.005587910767644644, -0.003850993700325489, -0.003794750664383173, 0.0013126131379976869, 0.014649655669927597, -0.010567073710262775, -0.06098068132996559, 0.003361348295584321, 0.04729708284139633, -0.034910380840301514, 0.025382149964571, 0.024270523339509964, 0.002974263858050108, -0.02216637134552002, -0.04705887660384178, -0.04234769567847252, -0.022867755964398384, 0.01946670562028885, -0.04486209154129028, -0.0163170974701643, -0.035995543003082275, -0.05394037812948227, 0.025593888014554977, 0.00022249082394409925, -0.005280228331685066, -0.017825733870267868, 0.055157873779535294, -0.0013241926208138466, 0.006011387798935175, 0.006639986298978329, 0.023277999833226204, 0.027764208614826202, -0.0309138186275959, 0.004628470633178949, 0.0007721010479144752, 0.005237218923866749, 0.0005016382201574743, -0.00848277285695076, -0.02322506532073021, 0.0064150141552090645, -0.046529531478881836, 0.013504944741725922, 0.0022662633564323187, -0.009210623800754547, 0.012155111879110336, -0.010527372360229492, -0.014768758788704872, -0.026493776589632034, -0.010004643350839615, -0.017600761726498604, 0.035863205790519714, -0.014226178638637066, -0.011983074247837067, 0.025911496952176094, -0.02206050232052803, 0.010368568822741508, -0.003579703625291586, 0.003114871447905898, -0.00781447347253561, -0.02178259566426277, -0.02391321398317814, 0.016542069613933563, 0.013121169060468674, 0.006623444147408009, 0.02130618505179882, -0.033639952540397644, 0.013643898069858551, 0.03443396836519241, 0.0113544762134552, 0.0011629074579104781, 0.001080197049304843, -0.025382149964571, -0.03371935337781906, -0.03800705820322037, 0.0007369491504505277, -0.015430442057549953, -0.06082187965512276, -0.0047475737519562244, -0.005260377656668425, -0.012168345972895622, 0.009501764550805092, -0.01310131885111332, -0.008350436575710773, -0.02421758882701397, -0.02106797881424427, -0.024680767208337784, 0.014040907844901085, 0.005247144028544426, 0.02192816697061062, -0.04316818341612816, 0.0062165092676877975, 0.005819499958306551, 0.02206050232052803, 0.020909175276756287, 0.021120913326740265, 0.0260967668145895, 0.01374976709485054, 0.01644943282008171, 0.05065843090415001, 0.0037517412565648556, 0.01754782721400261, 0.07950779795646667, -0.038430534303188324, 0.0031479557510465384, 0.007827706634998322, 0.040997862815856934, 0.012320532463490963, 0.016595004126429558, -0.008026211522519588, -0.01171178463846445, 0.009640717878937721, -0.016912611201405525, 0.008780529722571373, 0.000280594831565395, -0.01840801350772381, 0.034460436552762985, -0.010937616229057312, 0.02486603707075119, -0.018791789188981056, -0.012168345972895622, 0.0025127402041107416, -0.006163574755191803, 0.007503482513129711, 0.0002812151797115803, -0.004386956803500652, 0.0017683471087366343, -0.027076058089733124, 0.004879910498857498, -0.016700873151421547, -0.028240619227290154, -0.03205191344022751, 0.021676726639270782, 0.025196878239512444, -0.029908061027526855, -0.005276919808238745, -0.022483980283141136, -0.048276372253894806, -0.01730962097644806, 0.021809063851833344, 0.008793763816356659, -0.03694836422801018, 0.008059295825660229, 0.02712899260222912, -0.03250185772776604, -0.009984792210161686, 0.0028253854252398014, 0.01843448169529438, 0.006242976523935795, -0.009025353007018566, -0.022722184658050537, 0.0047707324847579, -0.009647334925830364, -0.0009743278496898711, -0.02253691479563713, 0.020273959264159203, -0.0043340218253433704, -0.015986254438757896, 0.02555418759584427, 0.008469538763165474, -0.007291743997484446, 0.01638326421380043, -0.01809040643274784, 0.008065912872552872, -0.02147822268307209, -0.012684457935392857, -0.02685108594596386, 0.018699154257774353, -0.034830980002880096, -0.009223857894539833, 0.01662147045135498, -0.015311338938772678, -0.013041767291724682, -0.00547211617231369, -0.013028533197939396, 0.03287239745259285, -0.0060709393583238125, -0.008634960278868675, -0.01251903735101223, -0.0036591056268662214, -0.035757336765527725, -0.011142737232148647, -0.005607761442661285, 0.003910545259714127, -0.039833299815654755, 0.04764115810394287, -0.052961088716983795, 0.010778811760246754, 0.012955748476088047, -0.011089802719652653, 0.046635400503873825, 0.005723555572330952, 0.03144316375255585, 0.0021670109126716852, -0.01325350534170866, -0.03398402780294418, 0.053649235516786575, -0.021610558032989502, 0.02236487716436386, 0.01520546991378069, 0.010031110607087612, 0.0031396846752613783, -0.0008055987418629229, 0.04046851769089699, -0.016806742176413536, 0.001050421386025846, -0.03313707187771797, -0.031998977065086365, -0.009462063200771809, -0.004095816053450108, -0.007245426066219807, -0.008767296560108662, -0.01149342954158783, 0.010401653125882149, -0.004410115536302328, -0.006233051419258118, 0.03967449814081192, -0.018487416207790375, -0.01791836880147457, 0.025607122108340263, -0.06071601063013077, -0.005756639875471592, -0.021464988589286804, -0.026255572214722633, -0.005455574486404657, -0.0435122586786747, 0.03181370720267296, -0.0038675356190651655, 0.007510099094361067, -5.9809917729580775e-05, 0.02773774042725563, -0.04081259295344353, -0.019956352189183235, -0.0177463311702013, 0.002527628093957901, -0.04001857340335846, 0.050605498254299164, 0.014146776869893074, -0.0003401462745387107, -0.004320788197219372, -0.03475157916545868, 0.021597325801849365, -0.028372956439852715, -0.022761886939406395, -0.021570857614278793, -0.007536566350609064, 0.01815657503902912, 0.009038586169481277, -0.001206743880175054, 0.012935897335410118, -0.005237218923866749, -0.022616315633058548, 0.0073115942068398, -0.029061106964945793, 0.020300427451729774, 0.03464571014046669, 0.020221024751663208, 0.02482633665204048, 0.008899632841348648, 0.009223857894539833, 0.05407271534204483, -0.003758358070626855, 0.008615109138190746, -0.03906574845314026, -0.010395036078989506, 0.01750812493264675, 0.0020594876259565353, 0.007556417025625706, 0.02281482145190239, -0.011619148775935173, -0.000547128904145211, -0.003219086676836014, 0.011559597216546535, -0.0015226973919197917, 0.024376392364501953, -0.008972418494522572, 0.01580098457634449, -0.0062231263145804405, 0.02687755413353443, -0.023886747658252716, -0.005247144028544426, 0.010428120382130146, 0.002942834049463272, 0.016767041757702827, 0.0037351991049945354, 0.010831746272742748, 0.031998977065086365, 0.004863368347287178, 0.012353616766631603, -0.028743498027324677, 0.004211610648781061, -0.002942834049463272, 0.011672083288431168, 0.030119799077510834, 0.02551448717713356, 0.022034035995602608, -0.019612276926636696, 0.03408989682793617, -0.027578936889767647, 0.004598695319145918, 0.010567073710262775, 0.002974263858050108, 0.015536311082541943, -0.0012431364739313722, 0.02281482145190239, 0.020975343883037567, -0.011996308341622353, 0.03861580416560173, 0.00022952120343688875, 0.011552981100976467, 0.009634100832045078, -0.021359119564294815, 0.026626113802194595, 7.335373811656609e-05, 0.0012117065489292145, -0.005061873234808445, -0.00035213929368183017, 0.0013887066161260009, 0.026255572214722633, -9.801175474422053e-05, -0.007000603247433901, 0.008707745000720024, 0.003758358070626855, -0.018566817045211792, 0.0017501508118584752, -0.017666928470134735, 0.01549660973250866, -0.00448951730504632, 0.06833859533071518, -0.011010400950908661, -0.01111626997590065, -0.008403371088206768, -0.012042625807225704, 0.034460436552762985, 0.01942700520157814, 0.014676122926175594, -0.008297502063214779, 0.00884008128196001, 0.020498931407928467, -0.007695370353758335, -0.003937012515962124, -0.009720119647681713, -0.008330585435032845, -0.02794947847723961, 0.01562894694507122, 0.04232122749090195, -0.009290025569498539, 0.008264417760074139, 0.0037550495471805334, 0.010725877247750759, -0.005088340491056442, 0.006467948667705059, -0.0012150149559602141, 0.0215179231017828, -0.0007514234748668969, -0.011420643888413906, -0.0177463311702013, 0.01492756325751543, -0.010911148972809315, -0.0019933192525058985, 0.00224475865252316, -0.008456305600702763, 0.00784755777567625, 0.014186478219926357, 0.022139905020594597, -0.02760540507733822, -0.028531759977340698, -0.02613646909594536, 0.0011141083668917418, -0.0539139099419117, -0.001723683555610478, -0.027234861627221107, -0.02736719883978367, -0.02117384783923626, 0.005339779891073704, -0.03371935337781906, 0.01979754865169525, -0.017216984182596207, 0.030966753140091896, 0.012201430276036263, -0.03202544525265694, 0.00918415654450655, -0.02876996621489525, 0.0008002225658856332, -0.028743498027324677, -0.03975389897823334, -0.03660428896546364, 0.0008568791672587395, -0.0152187030762434, 0.011169204488396645, 0.006123873870819807, -0.015351039357483387, -0.020035753026604652, -0.012538888491690159, 0.01977108046412468, 0.03877460956573486, 0.004218227695673704, -0.010765578597784042, 0.018977060914039612, 0.0029676470439881086, 0.009190773591399193, -0.01306823454797268, 0.031046153977513313, 0.0033944325987249613, 0.030358005315065384, -0.003894002875313163, 0.03194604441523552, -0.056692976504564285, -0.011949990876019001, -0.04118313267827034, -0.001144711161032319, 0.024310223758220673, -0.01929466985166073, 0.001140575623139739, -0.000521075155120343, 0.04245356470346451, -0.016197994351387024, 0.011638999916613102, -0.000743565964512527, 0.012982215732336044, 0.004003180656582117, -0.026123235002160072, -0.0014408142305910587, 0.005094957072287798, -0.029219910502433777, 0.020644500851631165, -0.003000731347128749, 0.005399331450462341, -0.023039793595671654, 0.008972418494522572, -0.02277512103319168, 0.018553584814071655, 0.003963479772210121, -0.023992616683244705, -0.03964802995324135, 0.030278602614998817, -0.015179002657532692, 0.03173430636525154, 0.002736058086156845, -0.037848252803087234, 0.0176536962389946, 0.030093330889940262, 0.006385238375514746, 0.006745855789631605, 0.01125522330403328, -0.008866548538208008, 0.031787239015102386, -0.006587051786482334, -0.011414027772843838, -0.0043902648612856865, -0.007199108134955168, 0.030119799077510834, 0.010269315913319588, 0.02726132981479168, 0.0233309343457222, 0.02715546078979969, -0.001296898233704269, 0.014530553482472897, 0.031416695564985275, -0.012962364591658115, -0.03276652842760086, -0.01468935701996088, -0.03440750390291214, -0.004568919539451599, -0.013008682988584042, -0.014993730932474136, -0.042188890278339386, 0.035863205790519714, 0.02452196180820465, 0.011433877982199192, -0.0252365805208683, 0.01843448169529438, -0.01949317380785942, -0.022801587358117104, 0.000539271451998502, 0.016462666913866997, -0.006530808750540018, 0.018249209970235825, 0.02914050780236721, -0.0034208998549729586, -0.022563381120562553, 0.000533068145159632, -0.008436455391347408, -0.02171642705798149, -0.005584602244198322, 0.027420133352279663, -0.03287239745259285, 0.036339618265628815, 0.04510029777884483, 0.030358005315065384, -0.008595258928835392, -0.010626625269651413, -0.009587783366441727, -0.009071670472621918, 0.014371749013662338, -0.007364529184997082, -0.012102177366614342, -0.035995543003082275, 0.027340730652213097, 0.002415142022073269, -0.01597302220761776, 0.010778811760246754, 0.02329123206436634, 0.012095560319721699, -0.011096419766545296, -0.009038586169481277, -0.0030735163018107414, 0.050764299929142, 0.0068219490349292755, -0.0053695556707680225, 0.021597325801849365, 0.008403371088206768, 0.028293553739786148, 0.016581770032644272, 0.0017501508118584752, 0.019347604364156723, 0.03334880992770195, -0.037980590015649796, 0.03895987942814827, 0.007735071238130331, 0.03718657046556473, -0.006494416389614344, 0.0145040862262249, -0.030225668102502823, 0.0025044691283255816, -0.0050916485488414764, -0.05695765092968941, 0.007119706366211176, 0.009634100832045078, -0.01380270253866911, 0.003220740705728531, 0.026533478870987892, 0.0048600598238408566, 0.018566817045211792, 0.04528556764125824, 0.023304466158151627, -0.03930395469069481, 0.006735930219292641, -0.0042943209409713745, 0.00911798793822527, 0.006888117175549269, 0.014358515851199627, 0.002367170061916113, 0.0008010496967472136, 0.010256082750856876, 0.03041093982756138, 0.024058785289525986, -0.010249465703964233, -0.02281482145190239, -0.01662147045135498, -0.02000928670167923, 0.01202277559787035, 0.010818513110280037, 0.004681405611336231, 0.0007584538543596864, -0.005558134987950325, 0.027684805914759636, 0.023344166576862335, 0.02572622522711754, 0.008218099363148212, -0.023926448076963425, 0.005359630100429058, 0.007093239109963179, -0.03837759792804718, -0.005101574119180441, 0.01720375195145607, -0.006606902461498976, 0.001477206707932055, 0.00564415380358696, -0.0033762361854314804, 0.0260967668145895, 0.001210879418067634, -0.0163170974701643, 0.011294924654066563, 0.025024840608239174, -0.0007162715774029493, -0.008522474206984043, 0.02171642705798149, -0.011347859166562557, -0.02736719883978367, -0.006646603345870972, 0.014067375101149082, -0.00548865832388401, 0.026215869933366776, -0.013643898069858551, 0.011407410725951195, -0.02555418759584427, -0.052246470004320145, -0.02216637134552002, 0.058122213929891586, -0.061033617705106735, 0.018963826820254326, 0.0016724031884223223, 0.007443930953741074, -0.00021463334269355983, 0.01634356379508972, -0.0036557971034199, -0.016422966495156288, -0.010150213725864887, 0.04221535846590996, 0.01840801350772381, 0.00751671614125371, -0.018593285232782364, 0.010295783169567585, -0.02397938258945942, 0.020803306251764297, -0.009270175360143185, 0.04353872314095497, -0.002507777651771903, -0.009594399482011795, 0.0014217908028513193, 0.00017224429757334292, 0.0009586128871887922, -0.009739969857037067, 0.019096164032816887, 0.005217368248850107, -0.013670365326106548, -0.0024961980525404215, -0.020710669457912445, 0.0372130386531353, -0.022020801901817322, -0.05288168415427208, -0.012598439119756222, -0.028293553739786148, -0.014967263676226139, -0.015006965026259422, -0.011949990876019001, 0.00921724084764719, -0.009647334925830364, -0.025765925645828247, 0.012730776332318783, 0.024442560970783234, 0.03054327517747879, -0.0034771428909152746, -0.01185073796659708, 0.016700873151421547, 0.01012374646961689, 0.02712899260222912, -0.02380734495818615, 0.007410846650600433, -0.010156829841434956, -0.0021074595861136913, -0.009204006753861904, -0.02432345785200596, -0.0067260051146149635, 0.01234699971973896, 0.00284689012914896, -0.017283152788877487, 0.003907236736267805, 0.0126910749822855, 0.021729661151766777, -0.028611162677407265, 0.008052678778767586, -0.004912994336336851, -0.01479522604495287, -0.029563985764980316, -0.010904531925916672, 0.010997166857123375, -0.003361348295584321, 0.0036855728831142187, -0.007966659963130951, -0.01515253446996212, -0.005614378023892641, -0.018632985651493073, -0.006775631569325924, 0.0345398411154747, -0.05589895695447922, -0.023582372814416885, -0.004370414651930332, -0.0053794807754457, -0.020260725170373917, -0.0061205653473734856, 0.01823597587645054, -0.027234861627221107, 0.005366247147321701, -0.007668903097510338, -0.016092125326395035, 0.013683599419891834, 0.010136979632079601, -0.003890694584697485, -0.010441353544592857, 0.020022520795464516, -0.017825733870267868, -0.007086622063070536, -0.030596209689974785, 0.009964942000806332, -0.008271034806966782, -0.02391321398317814, 0.04552377387881279, 0.03827172890305519, 0.04491502419114113, 0.009223857894539833, -0.03776885196566582, -0.005875742994248867, -0.012730776332318783, -0.025368915870785713, -0.04631779342889786, -0.004472975153476, -0.010295783169567585, 0.004181834869086742, 0.03734537586569786, 0.02415142022073269, -0.0030983295291662216, 0.013121169060468674, 0.029563985764980316, 6.0378552007023245e-05, -0.02305302768945694, 0.011169204488396645, -0.02674521692097187, -0.013141019269824028, 0.005008938256651163, -0.010189914144575596, -0.02007545530796051, -0.017838966101408005, -0.004525910131633282, -0.02199433371424675, -0.02028719335794449, -0.013789468444883823, -0.01850065030157566, 0.02794947847723961, -0.016025956720113754, -0.009726736694574356, -0.06034546718001366, -0.02432345785200596, -0.008866548538208008, 0.01946670562028885, -0.002802226459607482, 0.003324955701828003, 0.009726736694574356, 0.015853919088840485, -0.02784360945224762, 0.006735930219292641, -0.0023440110962837934, -0.029166975989937782, 0.04600018635392189, 0.020843006670475006, -0.005571368616074324, 0.01492756325751543, -0.0031016378197818995, 0.007298360578715801, -0.0005314139416441321, 0.014967263676226139, 0.000956131552811712, -0.005015555303543806, 0.022073736414313316, -0.008317352272570133, -0.022907456383109093, 0.04210948944091797, -0.024296989664435387, 0.0015078096184879541, -0.010103895328938961, -0.030860884115099907, 0.00031078411848284304, 0.012241130694746971, 0.016502367332577705, 0.0030255443416535854, 1.6309446436935104e-05, 0.001268776715733111, 0.009210623800754547, -0.018871191889047623, 0.0004063145606778562, 0.00952823180705309, 0.018977060914039612, 0.01750812493264675, -0.008012978360056877, -0.010983933694660664, -0.011175821535289288, -0.021359119564294815, -0.026176169514656067, -0.045338500291109085, 0.004774041008204222, -0.0054654995910823345, 0.01380270253866911, -0.0019933192525058985, 0.004929536487907171, -0.01318733673542738, 0.001344870193861425, -0.001088468125090003, 0.020856240764260292, -0.027340730652213097, 0.02274865284562111, -0.0029957685619592667, 0.02309272810816765, 0.0061668832786381245, 0.013147636316716671, -0.0027509459760040045, -0.015258404426276684, 0.02076360397040844, 0.03705423325300217, 0.03419576585292816, 0.02253691479563713, -0.025395384058356285, 0.019135864451527596, 0.0034407502971589565, 0.013339524157345295, 0.022139905020594597, 0.02171642705798149, 0.01850065030157566, 0.0017915060743689537, 0.013895337469875813, 0.02059156633913517, -0.02948458306491375, -0.04859397932887077, -0.001713758334517479, -0.007265276741236448, -0.00237709516659379, -0.0019486556993797421, -0.014570253901183605, -0.004512676503509283, 8.100444392766804e-05, 0.02219283953309059, 0.012340383604168892, 0.014040907844901085, 0.013723299838602543, 0.016939077526330948, 0.006342228967696428, -0.01486139465123415, 0.06489784270524979, -0.015046665444970131, 0.007271893322467804, -0.020710669457912445, -0.01891089230775833, 0.01912263222038746, -0.03419576585292816, 0.012882962822914124, 0.007960043847560883, -0.015403974801301956, 0.0008180052973330021, 0.013055000454187393, -0.0177463311702013, -0.016806742176413536, 0.004416732117533684, -0.009263558313250542, -0.024892505258321762, -0.0292463768273592, 0.00844968855381012, -0.017428724095225334, -0.004529218189418316, 0.0007791314274072647, 0.0033646568190306425, -0.008423221297562122, -0.0013126131379976869, -0.012208046391606331, 0.0188447255641222, -0.010540606454014778, -0.009991409257054329, 0.0021024970337748528, -0.023582372814416885, -0.0029974228236824274, -0.015311338938772678, 0.001799777033738792, 0.014014440588653088, -0.013696832582354546, 0.007563033606857061, -0.00012892474478576332, -0.005895593203604221, -0.017574293538928032, 0.0016633049817755818, 0.028478825464844704, -0.039489224553108215, 0.011235373094677925, -0.023820579051971436, 0.0021421979181468487, 0.018183041363954544, -0.007708603981882334, -0.002365515800192952, -0.018937360495328903, 0.007741688285022974, 0.015298104844987392, 0.00661021051928401, 0.028240619227290154, -0.01392180472612381, 0.007318211253732443, 0.003946937620639801, 0.006491107866168022, 0.022245774045586586, -0.026176169514656067, -0.025395384058356285, -0.0012530616950243711, -0.025368915870785713, 0.003549927845597267, -0.027711274102330208, -0.016118591651320457, -0.0015524731716141105, 0.02739366516470909, -0.005852583795785904, 0.008403371088206768, -0.0022778429556638002, -0.025712991133332253, -0.012803561054170132, 0.00039494188968092203, 0.008926100097596645, 0.004393573384732008, -0.03930395469069481, -0.00938927847892046, -0.028505293652415276, -0.018977060914039612, -0.021570857614278793, 0.0008783838711678982, -0.004092507995665073, 0.026215869933366776, 0.010831746272742748, 0.0007261967984959483, -0.0025623664259910583, -0.01778603158891201, 0.0029395255260169506, 0.005984920542687178, 0.013882104307413101, -0.02503807470202446, 0.015509843826293945, 0.003940320573747158, 0.007073388434946537, -0.005151200108230114, 0.03464571014046669, -0.006663145497441292, 0.013279972597956657, 0.0007460472988896072, -0.016171526163816452, 0.03477804362773895, 0.031152023002505302, -0.0265731792896986, 0.000904024054761976, -0.017468424513936043, -0.014543786644935608, -0.0017154124798253179, -0.00632899533957243, 0.0027608713135123253, 0.012340383604168892, -0.03522798791527748, 0.0210415106266737, 0.012201430276036263, -0.026665814220905304, 0.01275724358856678, 0.0034870679955929518, 0.011764719150960445, -0.00354000274091959, -0.004681405611336231, -0.016092125326395035, 0.0033679651096463203, -0.003164497669786215, 0.009018735960125923, 0.0032025445252656937, 0.037371840327978134, -0.014146776869893074, -0.006742547266185284, -0.017362555488944054, 0.00042182274046353996, 0.032131314277648926, 0.027764208614826202, -0.03303120285272598, -0.0265731792896986, 0.024839570745825768, 0.010183297097682953, 0.0027790674939751625, -0.0025822168681770563, -0.0039436290971934795, -0.005038714036345482, -0.0026731982361525297, 0.020604800432920456, -0.011129504069685936, 0.037265971302986145, -0.0019635434728115797, -0.009799521416425705, -0.005703705362975597, -0.012902813963592052, 0.003305105259642005, 0.03498978540301323, 0.05349043384194374, -0.026758451014757156, 0.00031740093254484236, -0.0015524731716141105, 0.0032836005557328463, 0.015470142476260662, 0.008568791672587395, -0.0016078890766948462, 0.03266065940260887, 0.0163170974701643, 0.015351039357483387, -0.025091009214520454, 0.02130618505179882, -0.01058692391961813, 0.00539602292701602, -0.008893015794456005, -0.0016707489266991615, 0.007622585166245699, -0.03636608272790909, 0.029881592839956284, -0.007999744266271591, 0.005491966847330332, -0.022245774045586586, 0.009283408522605896, -0.018103640526533127, -0.007450547534972429, -0.014464384876191616, -0.03041093982756138, 0.02154438942670822, 0.027896543964743614, 0.022828055545687675, -0.028399422764778137, -0.03964802995324135, 0.010878064669668674, -0.014967263676226139, 0.003247208194807172, 0.004846826195716858, -0.031760770827531815, 0.011685317382216454, 0.021967867389321327, 0.0005020517855882645, -0.0017848892603069544, -0.0035830121487379074, 0.03671015799045563, -0.010706027038395405, 0.001066136290319264, 0.009898774325847626, 0.008899632841348648, -0.018275678157806396, 0.026493776589632034, -0.01644943282008171, 0.006762397475540638, 0.018725622445344925, 0.008628343231976032, 0.02548801898956299, 0.01374976709485054, -0.0233309343457222, -0.037371840327978134, -0.01586715318262577, 0.009395894594490528, -0.00021566722716670483, 0.02374117635190487, -0.004903069231659174, 0.0073248278349637985, -0.015787750482559204, -0.018619753420352936, -0.0028551609721034765, 0.003313376335427165, -0.029881592839956284, 0.012108794413506985, -0.01292928121984005, -0.0021951324306428432, -0.009653951041400433, -0.009912007488310337, -0.0444650799036026, 0.006491107866168022, -0.0035466195549815893, 0.025091009214520454, -0.0023506279103457928, -0.03964802995324135, -0.00977967120707035, 0.0006877364940010011, 0.00678224815055728, 0.012446252629160881, 0.016224460676312447, -0.028743498027324677, 0.06780924648046494, 0.0009577857563272119, -0.0002667408552952111, 0.008760679513216019, 0.0027889928314834833, 0.005088340491056442, -0.000999968033283949, -0.009177539497613907, -0.0007931921863928437, 0.007794622797518969, 0.0027228244580328465, -0.0012381738051772118, -0.0011670429958030581, 0.0005616032285615802, -0.015112834051251411, -0.002062795916572213, 0.0215179231017828, 0.01356449630111456, 0.001268776715733111, -0.0005045331199653447, 0.014596721157431602, 0.023277999833226204, 0.005055256187915802, -0.012565355747938156, 0.032131314277648926, 0.03064914420247078, 0.02531598135828972, -0.024574898183345795, -0.03933042287826538, -0.03276652842760086, -0.022841287776827812, -0.015880385413765907, 0.03252832219004631, -0.005862509366124868, 0.012280832044780254, 0.005061873234808445, -0.01925496757030487, 0.006835182663053274, -0.01096408348530531, 0.001491267466917634, 0.011017017997801304, -0.041474275290966034, 0.025011608377099037, -0.023450037464499474, 0.010725877247750759, -0.0008167646592482924, 0.012386701069772243, 0.007834323681890965, -0.002889899304136634, 0.009177539497613907, -0.011506662704050541, 0.0053133126348257065, 0.0012861458817496896, -0.014887861907482147, -0.021398819983005524, -0.029114041477441788, -0.0029659930150955915, 0.009204006753861904, 0.01713758334517479, -0.017468424513936043, -0.013604197651147842, 0.004932845011353493, 0.0408390574157238, 0.028240619227290154, -0.002633497351780534, -0.03694836422801018, 0.02243104577064514, -0.03496331721544266, -0.008893015794456005, 0.002292730612680316, 0.005356322042644024, 0.004221535753458738, 0.024469027295708656, -0.014954030513763428, 0.03239598870277405, 0.002291076583787799, 0.028928769752383232, -0.0114735784009099, -0.041950687766075134, -0.00424138642847538, 0.013670365326106548, -0.0076755196787416935, -0.00539602292701602, -0.027287796139717102, 0.014252646826207638, -0.020710669457912445, 0.03202544525265694, -0.015311338938772678, 0.016674404963850975, 2.9052007448626682e-05, -0.01020976435393095, -0.04562964290380478, -0.021610558032989502, -0.009693652391433716, 0.021253250539302826, -0.011228756047785282, 0.004092507995665073, -0.014133543707430363, -0.015946554020047188, 0.01122213900089264, -0.003007348161190748, -0.006242976523935795, 0.021187081933021545, 0.039383355528116226, -0.04367106035351753, -0.017164049670100212, -0.00834381952881813, -0.004532526712864637, -0.0018593284767121077, -0.03088735044002533, 0.0002473039203323424, -0.018381547182798386, -0.02482633665204048, -0.0034142830409109592, -0.000899888516869396, -0.0013820898020640016, -0.020234258845448494, 0.00935619417577982, 0.03641901910305023, 0.019069697707891464, -0.004764115903526545, 0.037980590015649796, -0.009051820263266563, 0.04515323042869568, -0.004932845011353493, -0.006934435106813908, 0.0016550340224057436, -0.011533129960298538, 0.023013325408101082, -0.009938474744558334, -0.007563033606857061, -0.01871238835155964, 0.008145314641296864, -0.012181579135358334, 0.014781992882490158, 0.025527721270918846, -0.008403371088206768, -0.006041163578629494, -0.03827172890305519, -0.018632985651493073, 0.0036789560690522194, -0.010203148238360882, -0.018725622445344925, 0.02517041191458702, -0.03525445610284805, -0.017230218276381493, -0.006239668466150761, 0.004774041008204222, -0.022113436833024025, 0.020776838064193726, -0.011612532660365105, -0.016436198726296425, 0.028134750202298164, 0.02818768471479416, -0.013260122388601303, -0.007874025031924248, -0.011691934429109097, -0.0005463018314912915, 0.012631523422896862, 0.024230822920799255, 0.01310131885111332, -0.032369520515203476, 0.0007485286332666874, 0.008403371088206768, -0.008026211522519588, -0.005283536855131388, -0.004330713767558336, 0.010428120382130146, 0.018857957795262337, 0.007218958809971809, -0.03250185772776604, -0.015099599957466125, 0.004122283309698105, 0.007000603247433901, -0.007424080278724432, 0.011738251894712448, 0.016237694770097733, -0.003784825326874852, -0.014570253901183605, -0.024416092783212662, -0.0003850166394840926, -0.0024564971681684256, 0.004582153167575598, 0.0019337678095325828, -0.015536311082541943, 0.007278510369360447, -0.0023258149158209562, -0.008304118178784847, -0.011043485254049301, -0.019625511020421982, 0.011056718416512012, -0.007457164581865072, -0.00210415106266737, 0.006401780527085066, -0.002016478218138218, -0.002858469495549798, -0.005266994703561068, -0.024839570745825768, -0.015245170332491398, 0.0011496738297864795, -0.007212341763079166, 0.005865817423909903, 0.015059899538755417, 0.040680255740880966, -0.007371145766228437, -0.0023820579517632723, 0.0057764905504882336, -0.025249812752008438, 0.01188382226973772, 0.01918879896402359, -0.009799521416425705, -0.022867755964398384, 0.011427260935306549, -0.0014317160239443183, 0.03935689106583595, 0.013524794951081276, -0.009594399482011795, -0.01662147045135498, -0.012750626541674137, -0.023238297551870346, 0.005802957806736231, -0.0016318750567734241, 0.02890230156481266, 0.013710066676139832, 0.0011273419950157404, 0.007007220294326544, -0.0024283756501972675, -0.003463909262791276, -0.007715221028774977, 0.026215869933366776, 0.011169204488396645, 0.034354567527770996, -0.01356449630111456, 0.005799649283289909, 0.0024449178017675877, -0.0011562906438484788, -0.00956131611019373, 0.022417811676859856, -0.0021421979181468487, 0.000733640743419528, 0.01041488628834486, 0.006769014522433281, 0.009018735960125923, 0.02644084207713604, 0.0024928897619247437, -0.00911798793822527, -0.017838966101408005, 0.004267853684723377, 0.012479336932301521, 0.01405414193868637, -0.006596976891160011, 0.012962364591658115, -0.0176536962389946, 0.008919483050704002, -0.0008333066944032907, -0.0009825988672673702, 0.014120309613645077, 0.02503807470202446, -0.021597325801849365, -0.019162332639098167, 0.004109049681574106, 0.003854301990941167, 0.000141848242492415, -0.020498931407928467, -0.0037351991049945354, -0.01222789753228426, 0.005214060191065073, 0.005938602611422539, 0.02154438942670822, -0.002567328978329897, 0.03191957622766495, 0.002519357018172741, -0.011043485254049301, -0.010176680982112885, -0.0027674881275743246, 0.0079203424975276, -0.0019056462915614247, -0.008012978360056877, 0.0007452201680280268, -0.005839350167661905, -0.022219305858016014, 0.02292069047689438, 0.012955748476088047, -0.005392714403569698, 0.002918020822107792, 0.014186478219926357, 0.00868789479136467, -0.03205191344022751, 0.0029196750838309526, 0.00280553475022316, -0.0044531249441206455, 0.010573690757155418, 0.008383520878851414, -0.013895337469875813, -0.00125885137822479, -0.004529218189418316, -0.007265276741236448, -0.014437917619943619, -0.0024978523142635822, 0.013008682988584042, 0.007854173891246319, -0.012069093063473701, -0.0025739457923918962, -0.017931602895259857, -0.0025491327978670597, 0.01724345237016678, 0.01041488628834486, 0.011427260935306549, 0.019334370270371437, -0.005415873136371374, 0.0012720851227641106, -0.008820231072604656, 0.019347604364156723, -0.02654671110212803, 0.011003783904016018, 0.015364273451268673, -0.0012654683087021112, 0.0007588674197904766, 0.01055383961647749, -0.00024006677267607301, 0.0020892631728202105, -0.012697692029178143, -0.015112834051251411, -0.017733097076416016, 0.001368856173940003, -0.020922409370541573, -0.009051820263266563, 0.005048639141023159, -0.028611162677407265, -0.001854365924373269, 0.02456166408956051, 0.0032918716315180063, -0.00012168758985353634, -0.002942834049463272, -0.01363066490739584, 0.014186478219926357, -0.008118847385048866, 0.0019271509954705834, 0.01318733673542738, 0.006636677775532007, -0.025739459320902824, -0.0008634959813207388, -0.013035150244832039, 0.009501764550805092, 0.003778208512812853, -0.01685967668890953, -0.01239993516355753, -0.002544170245528221, 0.014954030513763428, 7.138936780393124e-05, -0.016330329701304436, 0.0006199140334501863, 0.005128041375428438, -0.01416001096367836, 0.005141275003552437, 0.01219481322914362, 0.01973138004541397, 0.023608841001987457, -0.003844376653432846, 0.0213723536580801, -0.0060709393583238125, -0.02417788840830326, 0.004575536120682955, 0.007503482513129711, 0.015615712851285934, -0.024429326876997948, 0.005902210250496864, -0.02102827839553356, 0.0024680765345692635, -0.001078542903997004, -0.030834415927529335, 0.021292950958013535, -0.00901211891323328, -0.012247747741639614, 0.005574677139520645, -0.0012621597852557898, -0.01987694948911667, -0.0034440585877746344, 0.006987369619309902, 0.0016972162993624806, 0.028028881177306175, 0.014662889763712883, 0.008641576394438744, 0.0036789560690522194, -0.020856240764260292, 0.018169809132814407, 0.00827765092253685, -0.015827450901269913, -0.016462666913866997, -0.005640845280140638, -0.011308157816529274, 0.011241990141570568, -0.029061106964945793, 0.001491267466917634, -0.010355334728956223, -0.011811036616563797, 0.0005359630449675024, 0.011155971325933933, 0.01730962097644806, -0.012611673213541508, 0.013518178835511208, 0.008165164850652218, 0.0031545725651085377, -0.0037252737674862146, -0.006279369350522757, 0.021438520401716232, 0.0028237311635166407, 0.0017534593353047967, -0.011275074444711208, -0.009594399482011795, 0.009137839078903198, 0.017865434288978577, 0.015073132701218128, 0.012677841819822788, 0.02415142022073269, 0.004423349164426327, 0.012353616766631603, 0.00784755777567625, -0.0005020517855882645, -0.01761399395763874, -0.006219817791134119, -0.02339710108935833, -0.006203275639563799, -0.016886143013834953, -0.015073132701218128, -0.02322506532073021, 0.008496006950736046, 0.0032438996713608503, -0.018447715789079666, -0.0038278347346931696, 0.027208395302295685, -0.03099321946501732, 0.02572622522711754, 0.002221599919721484, -0.0050519476644694805, -0.004734340123832226, 0.012697692029178143, 0.014239412732422352, -0.015073132701218128, 0.016740573570132256, -0.012512420304119587, 0.011407410725951195, 0.004688022192567587, -0.014040907844901085, 0.02393968217074871, -0.007258659694343805, -0.010103895328938961, 0.01699201390147209, 0.007728454656898975, 0.013365991413593292, 0.01597302220761776, 0.011936756782233715, 0.01946670562028885, -0.005928677506744862, -0.027009889483451843, 0.023317700251936913, 0.005915443878620863, 0.008065912872552872, 0.002734404057264328, -0.0007853347342461348, 0.006520883645862341, 0.0016045806696638465, 0.004972545895725489, -2.2512722352985293e-05, 0.01398797333240509, 0.02527628093957901, -0.007245426066219807, 0.030358005315065384, 0.0025458242744207382, -0.006209892686456442, -0.011440495029091835, 0.0004644185828510672, 0.018381547182798386, -0.005032097455114126, 0.008608492091298103, 0.0033464604057371616, -0.010136979632079601, 0.0028915535658597946, 0.001902337884530425, -0.004251311533153057, -0.018924126401543617, 0.001609543338418007, -0.006775631569325924, 0.01416001096367836, 0.007271893322467804, -0.006719388533383608, 0.00632899533957243, 0.02421758882701397, -0.005042022559791803, -0.007880641147494316, 0.0026947029400616884, -0.017891900613904, 0.026123235002160072, 0.025435084477066994, 0.009190773591399193, 0.007543183397501707, 0.009197390638291836, -0.010315634310245514, -0.02024749293923378, -0.005270303227007389, -0.006570509634912014, 0.006808715406805277, 0.003824526211246848, 0.011566214263439178, 0.013167486526072025, -0.003136376151815057, 0.011572831310331821, -0.012916047126054764, -0.003758358070626855, 0.018460948020219803, -0.01566864736378193, 0.0023440110962837934, 0.016912611201405525, 0.012294065207242966, -0.009832605719566345, 0.011857355013489723, -0.01905646361410618, -0.028346488252282143, -0.0016054078005254269, 0.003917161840945482, 0.007225575391203165, 0.0012199776247143745, -0.004479592200368643, -0.00038853182923048735, -0.006719388533383608, 0.002499506575986743, -0.003910545259714127, 0.008668043650686741, -0.012287449091672897, -0.019850483164191246, -0.004079274367541075, -0.001416828134097159, -0.0235691387206316, -0.008720978163182735, 0.007000603247433901, -0.009488530457019806, -0.010679559782147408, 0.022457512095570564, -0.004343947395682335, 0.010097278282046318, 0.004608620423823595, 0.004383648280054331, 0.003894002875313163, -0.018818257376551628, -0.004777349531650543, -0.0012398280669003725, -0.014874627813696861, 0.0032240492291748524, -0.005048639141023159, 0.020618034526705742, -0.01601272262632847, -0.008932717144489288, -0.004188451915979385, 0.015748050063848495, -0.03226365149021149, -0.014967263676226139, 0.004433274269104004, -0.011155971325933933, 0.0354926623404026, 0.0019238425884395838, -0.002734404057264328, -0.011089802719652653, 0.0335870161652565, 0.026970189064741135, 0.010911148972809315, -0.006332303863018751, -0.0026632731314748526, 0.009230474010109901, -0.003850993700325489, 0.0022315250243991613, 0.005620995070785284, -0.0008014632039703429, -0.02784360945224762, 0.000511149934027344, -0.016264161095023155, 0.015073132701218128, -0.030728546902537346, -0.015536311082541943, -0.005247144028544426, -0.00378813361749053, -0.0024813103955239058, 0.024138186126947403, -0.028346488252282143, 0.00016593762848060578, 0.006501032970845699, -0.016171526163816452, -0.020445996895432472, -0.01290943007916212, -0.02120031602680683, -0.0071792579255998135, -0.0015086366329342127, 0.004889835603535175, 0.0016831555403769016, -0.011652233079075813, 0.0321577824652195, 0.011394176632165909, -0.002016478218138218, 0.004059423692524433, 0.011506662704050541, 0.025474784895777702, 0.013147636316716671, 0.0006521710311062634, 0.012644757516682148, -0.012141878716647625, -0.0095414649695158, 0.003197581972926855, -0.0044928258284926414, 0.004032956436276436, -0.000913949275854975, -0.003794750664383173, -0.021848764270544052, -0.0007208206225186586, -0.01662147045135498, -0.025130711495876312, 0.014940796419978142, 0.01545690931379795, 0.0067888651974499226, 0.013590963557362556, 0.0126910749822855, -0.013299822807312012, 0.01648913323879242, 0.0063819303177297115, 0.020445996895432472, -0.002934562973678112, 0.010282550007104874, 0.013279972597956657, -0.00968041829764843, -0.010401653125882149, 0.00028535068850032985, 0.000575250422116369, 0.022139905020594597, 0.0034506756346672773, -0.006305836606770754, -0.0029808806721121073, 0.009587783366441727, -0.0011149353813380003, 0.011447111144661903, -0.0029411797877401114, -0.012869729660451412, -0.0021438521798700094, 0.007695370353758335, 0.005888976622372866, 0.003973404876887798, 0.019519641995429993, -0.03811292722821236, -0.0014846506528556347, -0.01963874325156212, 0.014305581338703632, -0.019175566732883453, -0.002224908210337162, 0.023066259920597076, -0.022139905020594597, 0.004128900356590748, -0.004244694951921701, -0.012876346707344055, 0.0036194047424942255, 0.024363158270716667, 0.0017534593353047967, 0.02678491733968258, 0.021226782351732254, -0.0006277714855968952, 0.021861998364329338, -0.0020462539978325367, -0.022933924570679665, -0.0117845693603158, 0.029193442314863205, -0.009647334925830364, -0.009945091791450977, 0.0039039282128214836, 0.0010289166821166873, -0.013346141204237938, 0.019347604364156723, 0.019850483164191246, -0.03967449814081192, 0.0005082550342194736, -0.01363066490739584, -0.0014945758739486337, 0.023661775514483452, -0.025765925645828247, -0.03419576585292816, 0.0052107516676187515, 0.013432160019874573, 0.006090789567679167, -0.002249721437692642, -0.010434736497700214, -0.013617430813610554, -0.0017567677423357964, -0.015787750482559204, 0.008912866935133934, -0.006553967483341694, 0.007688753306865692, -0.007013837341219187, 0.0183683130890131, -0.008800380863249302, 0.0017733097774907947, 0.006553967483341694, 0.004277778789401054, 0.015417207963764668, 0.02534244954586029, -0.005769873503595591, 0.010871447622776031, 0.0033199931494891644, 0.002567328978329897, 0.022656017914414406, -0.012221280485391617, -0.010547222569584846, -0.010064194910228252, -0.021795829758048058, 0.020022520795464516, -0.016237694770097733, -0.009495147503912449, 0.005455574486404657, 0.0018725622212514281, 0.015853919088840485, -0.005624303128570318, -0.01289619691669941, 0.011208905838429928, 0.013842402957379818, 0.012836645357310772, 0.008436455391347408, -0.010957466438412666, 0.01520546991378069, 0.023714710026979446, 0.003142992965877056, 0.009376044385135174, 0.0170317143201828, -0.01310131885111332, 0.010831746272742748, -0.006497724447399378, 0.0222325399518013, -0.0022579922806471586, 0.011632382869720459, 0.005667312536388636, 0.00441342405974865, -0.019890183582901955, -0.006941052153706551, 0.011208905838429928, -0.011903672479093075, -0.007940192706882954, 0.008893015794456005, 0.029775723814964294, 0.019109398126602173, 0.03303120285272598, 0.01819627545773983, -0.020882707089185715, 0.003980021923780441, -0.006292602978646755, 0.01754782721400261, -0.016118591651320457, 0.004463050048798323, -0.01339245866984129, 0.008039445616304874, 0.022245774045586586, 0.01041488628834486, 0.007364529184997082, 0.005273611284792423, -0.00011672497203107923, 0.0005099092959426343, -0.011811036616563797, -0.031046153977513313, -0.011453728191554546, -0.009435595944523811, -0.006759089417755604, -0.026427609845995903, 0.002165356883779168, 0.004800508264452219, 0.0039601712487638, 0.0024647682439535856, 0.02309272810816765, -0.008390136994421482, 0.006405089050531387, 0.004304246045649052, -0.010249465703964233, 0.019374070689082146, 0.001491267466917634, -0.017389021813869476, -0.003970096353441477, 0.02596443146467209, -0.008098997175693512, -0.00885993242263794, 0.03451337292790413, -0.006762397475540638, -0.010467820800840855, 0.0265731792896986, -0.010990550741553307, -0.006041163578629494, -0.02134588547050953, 0.016356797888875008, -0.0032356285955756903, -0.0015640525380149484, -0.015231937170028687, 0.009395894594490528, 0.005534976255148649, 0.012684457935392857, 0.0004743438330478966, -0.021187081933021545, -0.007357912138104439, 0.0025259738322347403, -0.006527500227093697, 0.02626880444586277, -0.0017121040727943182, -0.0030702080111950636, 0.00032381099299527705, -0.018209509551525116, 0.013200570829212666, -0.026970189064741135, -0.003447367111220956, 0.0029114040080457926, 0.00012148081441409886, 0.012102177366614342, -0.005111499223858118, 0.014384983107447624, -0.018725622445344925, -0.012280832044780254, -0.011691934429109097, 0.004456433467566967, -0.0017451882595196366, -0.0073248278349637985, -0.0158406849950552, -0.005591219291090965, -0.004850134719163179, 0.003953554201871157, -0.006219817791134119, 0.0010479401098564267, -0.023370634764432907, -0.012479336932301521, 0.02808181568980217, 0.01475552562624216, 0.004525910131633282, -0.003728582290932536, 0.02482633665204048, -0.005726864095777273, 0.008932717144489288, -0.013233655132353306, -0.03385169059038162, -0.013266739435493946, -0.006021312903612852, 0.012419785372912884, -0.011519896797835827, -0.014702591113746166, 0.021795829758048058, 0.006560584530234337, 0.011758102104067802, -0.013313056901097298, -0.011830887757241726, 0.012386701069772243, 0.005200826562941074, -0.009031969122588634, 0.004562302492558956, -0.001675711595453322, -0.011811036616563797, -0.0020412912126630545, 0.022669250145554543, -0.02948458306491375, 0.001966851996257901, -0.0009776363149285316, 0.004912994336336851, 0.006530808750540018, 0.02277512103319168, 0.0035466195549815893, 0.011175821535289288, 0.005316620692610741, -0.013789468444883823, 0.0059055183082818985, -0.0035697785206139088, 0.004631779156625271, -0.017402255907654762, 0.02134588547050953, -0.012307299301028252, -0.021451754495501518, 0.023899981752038002, -0.023555906489491463, 0.0017269919626414776, -0.01114935427904129, -0.024707233533263206, -0.04798523336648941, -0.011189055629074574, 0.011420643888413906, 0.01689937710762024, -0.00865481048822403, 0.0011893747141584754, 0.01171178463846445, -0.004320788197219372, -0.02596443146467209, -0.01027593296021223, 0.018937360495328903, -0.0043009379878640175, 0.01860651932656765, 0.02914050780236721, -0.014292347244918346, -0.0004515984619501978, -0.0043968819081783295, -0.005045331083238125, -0.030358005315065384, -0.01152651384472847, 0.0116654671728611, 0.0016492442227900028, -0.007000603247433901, -1.7588870832696557e-05, 0.0015533003024756908, -0.002016478218138218, -0.006706154439598322, -0.0011835850309580564, -0.003296834183856845, -0.017521359026432037, -0.0031760772690176964, 0.0008217272697947919, -0.024469027295708656, 0.01216172892600298, -0.007946809753775597, -0.0240455511957407, -0.013028533197939396, -0.020326893776655197, 0.011797803454101086, -0.006795481778681278, 0.0033729278948158026, 0.014358515851199627, 0.010957466438412666, 0.004066040273755789, 0.0065109580755233765, 0.012135261669754982, -0.01181765366345644, -0.012869729660451412, -0.006434864830225706, 0.01416001096367836, 0.007285126950591803, -0.003549927845597267, -0.015377506613731384, -0.004433274269104004, -0.03694836422801018, 0.030490340664982796, -0.014729058369994164, -0.0222325399518013, -0.000452012027380988, 0.0002059487596852705, 0.007192491553723812, 0.0025689832400530577, 0.005435723811388016, 0.00519090099260211, -0.019334370270371437, -0.003085095901042223, 0.015059899538755417, -0.0015210432466119528, -0.0032984884455800056, 0.012717542238533497, 0.0005628438666462898, -0.01726992055773735, -0.0094223627820611, -0.008542324416339397, -0.010421503335237503, 0.016224460676312447, -0.013855637051165104, 0.0034804511815309525, -0.009111371822655201, -0.0158406849950552, -0.027658339589834213, -0.004635087680071592, 0.007126323413103819, -0.006213201209902763, -0.004836901091039181, -0.007285126950591803, 0.0152187030762434, -0.01433204859495163, -0.003874152433127165, -0.01607889123260975, -0.013074850663542747, 0.007602734956890345, -0.01356449630111456, -0.01024284865707159, 0.013074850663542747, 0.026771683245897293, 0.0010917765321210027, 0.0016872909618541598, -0.007688753306865692, 0.02663934789597988, 0.01662147045135498, -0.017018480226397514, 0.004118975251913071, -0.006438173353672028, -0.00725204311311245, -0.0023407028056681156, -0.015946554020047188, -0.009514997713267803, 0.01339245866984129, 0.020538631826639175, -0.011632382869720459, -0.02007545530796051, -0.034672174602746964, -0.022139905020594597, -0.028055349364876747, 0.005518434103578329, -0.0032438996713608503, 0.006385238375514746, 0.007351295556873083, 0.0011215523118153214, 0.012532271444797516, -0.012995448894798756, -0.005842658691108227, -0.019678445532917976, 0.004347255453467369, 0.03242245316505432, 0.0052107516676187515, 0.01205585990101099, 0.019969584420323372, 0.010097278282046318, 0.003085095901042223, -0.01668763905763626, -0.0033762361854314804, 0.030358005315065384, 0.003778208512812853, 0.015403974801301956, 0.005882359575480223, -0.005038714036345482, 0.010778811760246754, -0.020895941182971, 0.003463909262791276, -0.004350563976913691, -0.002421758836135268, 0.012062476947903633, -0.0018345153657719493, 0.0038774609565734863, 0.011003783904016018, 0.031152023002505302, 0.0008126291213557124, 0.0032984884455800056, -0.0033199931494891644, -0.0002332431758986786, -0.003172768745571375, 0.0008949259063228965, -0.009230474010109901, 0.0018725622212514281, 0.000665404717437923, -0.01675380766391754, 0.0037715916987508535, -0.025765925645828247, 0.012386701069772243, 0.015020198188722134, -0.012479336932301521, -0.025196878239512444, -0.027314264327287674, -0.0032869090791791677, -0.011189055629074574, -0.008046062663197517, -0.02421758882701397, 0.0016351834638044238, 0.026996655389666557, -0.004373723175376654, 0.0075233327224850655, -0.005078414920717478, 0.007027070969343185, 0.01118243858218193, -0.014636422507464886, 0.017455190420150757, 0.004443199839442968, 0.020843006670475006, -0.014676122926175594, 0.009647334925830364, -0.004532526712864637, -0.012492570094764233, 0.016634704545140266, -0.01132139191031456, 0.025382149964571, -0.01977108046412468, -0.025739459320902824, 0.0021306185517460108, 0.01132139191031456, -0.014874627813696861, 0.0024945440236479044, -0.011036868207156658, 0.020168090239167213, 0.018275678157806396, -0.01409384235739708, 0.01026269979774952, -0.008588641881942749, 0.024230822920799255, 0.016237694770097733, 0.010196531191468239, -0.0034870679955929518, -0.006272752303630114, -0.00012375535152386874, 0.0011240335879847407, 0.020260725170373917, 0.016436198726296425, -0.0010636550141498446, -0.0037318908143788576, -0.003301796969026327, -0.006848416291177273, 0.015337806195020676, 0.001092603662982583, -0.003900619689375162, 0.016092125326395035, 0.010580306872725487, -0.010924382135272026, 0.0018907584017142653, -0.006481182295829058, 0.01601272262632847, 0.001930459402501583, 0.008165164850652218, -0.012201430276036263, -0.027102526277303696, 0.004572227597236633, -0.008998885750770569, 0.016237694770097733, 0.027208395302295685, -0.002403562655672431, 0.019202033057808876, 0.011777953244745731, -0.002810497535392642, -0.010342101566493511, 0.006719388533383608, 0.0019800856243819, 0.005293461959809065, 0.0026301888283342123, 0.0007874024449847639, 0.006021312903612852, 0.00848277285695076, -0.0024498803541064262, -0.006464640609920025, -0.017759565263986588, -0.003824526211246848, -0.024905739352107048, 0.002090917434543371, -0.021015044301748276, 0.007351295556873083, -0.0117845693603158, -0.012644757516682148, -0.002236487576738, -0.014199711382389069, 0.011943373829126358, -0.003169460454955697, 0.019572576507925987, -0.0041983770206570625, -0.0036094794049859047, -0.03128436207771301, -0.021438520401716232, 0.018831491470336914, 0.0069741359911859035, -0.00827765092253685, 0.004866676405072212, 0.009098137728869915, -0.005829425062984228, -0.005796340759843588, -0.006484490819275379, -0.011983074247837067, 0.004648321308195591, 0.004800508264452219, 0.0015590899856761098, 0.0152187030762434, -0.00865481048822403, -0.01416001096367836, 0.0021736277267336845, 0.008383520878851414, 0.004410115536302328, 0.002339048543944955, 0.01815657503902912, 0.004436582792550325, -0.010725877247750759, -0.011281690560281277, -0.03512211889028549, 0.0023125812876969576, 0.007728454656898975, 0.0025706375017762184, 0.006047780159860849, 0.019135864451527596, 0.004029647912830114, 0.0036425634752959013, 0.027208395302295685, -0.003874152433127165, 0.014609955251216888, 0.0024746935814619064, 0.004946078639477491, -0.02531598135828972, -0.001395323546603322, 0.013180720619857311, 0.004165292717516422, -0.015311338938772678, 0.009587783366441727, -0.003010656451806426, 0.0029329087119549513, -0.005161125212907791, 0.0034142830409109592, 0.0022960391361266375, -0.007258659694343805, -0.0013862253399565816, 0.007510099094361067, -0.0005078415269963443, -0.0063124531880021095, 0.0037252737674862146, -0.0018824874423444271, 0.014358515851199627, -0.02661287970840931, 0.008681277744472027, -0.0030983295291662216, 0.017971303313970566, -0.007973277010023594, -0.015655413269996643, 0.022801587358117104, -0.0016533797606825829, -0.0004532526945695281, -0.008747446350753307, -0.008899632841348648, 0.003616096219047904, 0.006603593938052654, -0.010712644085288048, -0.02130618505179882, -0.0031198342330753803, -0.013021916151046753, 0.007596117909997702, 0.0050188638269901276, -0.01685967668890953, 0.002737712347880006, 0.006249593570828438, -0.0260967668145895, 0.008363669738173485, 0.0210415106266737, 0.01562894694507122, 0.00013440431212075055, -0.009766437113285065, 0.0014887861907482147, 0.008390136994421482, -0.037371840327978134, 0.005227293819189072, -0.01973138004541397, 0.015721581876277924, 0.00595845328643918, -0.0067657059989869595, -0.014596721157431602, 0.005111499223858118, -0.008317352272570133, 0.038218796253204346, 0.013551263138651848, 0.01726992055773735, 0.00634553749114275, 0.023648541420698166, -0.0009503418696112931, 0.01689937710762024, 0.005584602244198322, -0.00467809708788991, 0.008509240113198757, 0.014914329163730145, 0.01754782721400261, -0.022960390895605087, -0.003986638505011797, -0.016052423045039177, 0.002249721437692642, -0.002216637134552002, -0.0048600598238408566, -0.01055383961647749, -0.014252646826207638, -0.030860884115099907, -0.01627739518880844, 0.010222998447716236, 0.005746714770793915, 0.011811036616563797, 0.0037153486628085375, 0.0004296802217140794, -0.003417591331526637, 0.013200570829212666, 0.005293461959809065, -0.0015499918954446912, 0.007635818794369698, 0.004476283676922321, 0.009739969857037067, -0.0002504055737517774, -0.02240457758307457, -0.028240619227290154, -0.00478727463632822, -0.007510099094361067, 0.025832094252109528, 0.00708000548183918, -0.009170922450721264, 0.003937012515962124, 0.016462666913866997, 0.021967867389321327, 0.006712771486490965, -0.002916366793215275, -0.0037153486628085375, -0.011394176632165909, 0.0005934467189945281, -0.0030999837908893824, -0.010699409991502762, -0.013180720619857311, 0.0032356285955756903, 0.010103895328938961, -0.008178398944437504, 0.004171909764409065, 0.01936083659529686, 0.013293206691741943, -0.03128436207771301, 0.0022232539486140013, 0.0027112450916320086, 0.002717861905694008, 0.00911798793822527, 0.011599298566579819, 0.018897660076618195, -0.008985651656985283, -0.008178398944437504, -0.008026211522519588, -0.004625162575393915, -0.021861998364329338, 0.008813614025712013, 0.014954030513763428, -0.0003271194000262767, -0.0013622393598780036, 0.008529090322554111, -0.016303863376379013, -0.003417591331526637, 0.02698342315852642, 0.005432415287941694, -0.010533989407122135, -0.0018758706282824278, 0.007477015256881714, -0.01234699971973896, 0.008813614025712013, -0.008985651656985283, -0.005455574486404657, -0.001902337884530425, -0.019307902082800865, 0.007907108403742313, -0.007060154806822538, 0.007390996441245079, -0.004893144126981497, -0.01374976709485054, -0.012036008760333061, 0.013134402222931385, 0.018487416207790375, -0.004515984561294317, -0.0004863368230871856, -0.0019254968501627445, 0.005842658691108227, 0.0145040862262249, -0.01545690931379795, 0.007119706366211176, 0.0035697785206139088, -0.014001206494867802, -0.003184348111972213, 0.006712771486490965, 0.020154856145381927, 0.0026731982361525297, 0.007424080278724432, 0.002812151564285159, -0.007271893322467804, -0.003599554067477584, 0.0008568791672587395, 0.009554699063301086, 0.00023138218966778368, 0.0163170974701643, -0.002327469177544117, 0.006722696591168642, 0.00897903461009264, 0.021438520401716232, -0.007166024297475815, 0.023383868858218193, -0.0055548264645040035, -0.007807856425642967, 0.016475901007652283, 0.013504944741725922, 0.0017402255907654762, 0.023727944120764732, -0.011638999916613102, -0.03922455385327339, -0.003212469629943371, 0.006041163578629494, -0.010911148972809315, -0.0038311430253088474, 0.0014193095266819, -0.01181765366345644, 0.005101574119180441, -0.0011529822368174791, 0.008747446350753307, -0.006530808750540018, -0.017216984182596207, -0.017428724095225334, 0.00226130080409348, 0.0008407506393268704, -0.010322250425815582, 0.011043485254049301, 0.0056772381067276, -0.00037674562190659344, 0.011777953244745731, -0.01873885467648506, 0.010878064669668674, 0.01138756051659584, 0.0009048511856235564, -0.022007567808032036, -0.008429838344454765, 0.0010446315864101052, -0.010064194910228252, -0.008595258928835392, 0.0029560676775872707, 0.005740097723901272, -0.010937616229057312, 0.01778603158891201, -0.021861998364329338, -0.0030056938994675875, -0.004807125311344862, -0.024257289245724678, -0.020022520795464516, -0.002415142022073269, 0.014901095069944859, -0.01515253446996212, -0.019916649907827377, 0.013696832582354546, 0.021081212908029556, 0.005085031967610121, -0.007794622797518969, -0.003048703307285905, 0.0050188638269901276, 0.0034407502971589565, 0.018169809132814407, -0.01621122658252716, -0.012949131429195404, 0.0004507713601924479, 0.0028353105299174786, -0.008668043650686741, 0.018249209970235825, 0.01750812493264675, -0.008820231072604656, -0.029087573289871216, -0.000723715522326529, 0.028981704264879227, -0.014662889763712883, 0.002180244540795684, 0.002621917985379696, 0.002148814732208848, -0.004185143392533064, -0.01374976709485054, -0.002160394098609686, -0.005389405880123377, -0.004013105761259794, -0.014808460138738155, -0.00368888140656054, 0.05304048955440521, -0.011076569557189941, 0.014252646826207638, -0.0031099088955670595, -0.013961506076157093, -0.01699201390147209, 0.00812546443194151, -0.007688753306865692, 0.0013920151395723224, -0.01205585990101099, -0.006424939259886742, 0.023886747658252716, 0.010712644085288048, 0.008297502063214779, -0.019162332639098167, -0.007106472738087177, -0.013266739435493946, 0.003850993700325489, -0.02318536303937435, 0.012578588910400867, -0.013465244323015213, 0.006074247416108847, -0.01405414193868637, 0.010077428072690964, -0.005462191067636013, 0.0156951155513525, -0.016846442595124245, -0.017190517857670784, -0.011486812494695187, -0.014146776869893074, -0.010983933694660664, -0.01730962097644806, -0.0023737868759781122, -0.005439032334834337, -0.006947668734937906, -0.0035863204393535852, 0.031787239015102386, -0.031310826539993286, -0.006646603345870972, -0.00033580398303456604, 0.026904020458459854, 0.014437917619943619, -0.011003783904016018, -0.014954030513763428, 0.024548429995775223, 0.023622073233127594, 0.0020412912126630545, -0.006540733855217695, -0.001499538542702794, -0.007470398209989071, 0.01977108046412468, -0.023582372814416885, -0.01662147045135498, 0.011347859166562557, -0.022285474464297295, -0.025765925645828247, -0.0085158571600914, -0.02229870855808258, -0.0041983770206570625, 0.002082646358758211, 0.012340383604168892, 0.004750882275402546, 0.019678445532917976, -0.015351039357483387, -0.012002925388514996, -0.012717542238533497, 0.019228501245379448, 0.015536311082541943, 0.04134193807840347, -0.0007783043547533453, 0.020895941182971, -0.0053133126348257065, -0.0007700332789681852, -0.028822900727391243, 0.010461204685270786, -0.011414027772843838, -0.010031110607087612, -0.008026211522519588, -0.006398472003638744, 0.0041983770206570625, 0.029934527352452278, 0.023277999833226204, -0.00865481048822403, 0.0028171143494546413, -0.0006128836539573967, -0.0031545725651085377, -0.007351295556873083, 0.01832861267030239, 0.012287449091672897, 0.0234235692769289, -0.006021312903612852, -0.02240457758307457, 0.007457164581865072, 0.022788353264331818, 0.01125522330403328, 0.001192683121189475, 0.018209509551525116, 0.010050960816442966, 0.014371749013662338, 0.0025772543158382177, -0.01802423782646656, 0.026387907564640045, 0.0030619369354099035, 0.014107076451182365, -0.0027410208713263273, 0.014027674682438374, 0.00033022105344571173, 0.023026559501886368, -0.004049498587846756, -0.004750882275402546, 0.0008750754059292376, 0.017494892701506615, -0.02421758882701397, -0.005647462327033281, 0.0019900109618902206, -0.0021835530642420053, -0.0067888651974499226, -0.0017054872587323189, -0.009131222032010555, -0.004178526345640421, -0.03078148141503334, 0.007695370353758335, 0.0038013674784451723, 0.007510099094361067, 0.011811036616563797, -0.011619148775935173, -0.013385841622948647, 0.005296770483255386, -0.004105741623789072, -0.014570253901183605, 0.00466155493631959, 0.020843006670475006, -0.008098997175693512, 0.010395036078989506, -0.010891297832131386, 0.01416001096367836, -0.009998026303946972, -0.015298104844987392, 0.01111626997590065, 0.00034283436252735555, 0.004846826195716858, -0.027473067864775658, -0.019757846370339394, -0.029696321114897728, -0.021729661151766777, -0.006027929950505495, -0.010930999182164669, 0.005730172619223595, -0.01795806922018528, -0.0019767771009355783, 0.014424683526158333, -0.0023605532478541136, -0.001174486824311316, -0.008899632841348648, -0.008740829303860664, -0.013299822807312012, 0.022100204601883888, -0.009170922450721264, -0.02434992603957653, 0.0017749639227986336, -0.010547222569584846, 0.014993730932474136, 0.0005301733035594225, 0.011208905838429928, 7.547318818978965e-05, -0.01342554297298193, 0.012247747741639614, 0.011314774863421917, 0.0252365805208683, 0.014821693301200867, -0.012419785372912884, -0.025435084477066994, -0.02797594666481018, -0.014146776869893074, -0.01468935701996088, -0.0026864318642765284, -0.010084045119583607, 0.016528835520148277, -0.028637629002332687, 0.008363669738173485, -0.015417207963764668, 0.009428978897631168, 0.02247074618935585, -0.0024664225056767464, 0.02277512103319168, 0.0010934307938441634, 0.003874152433127165, -0.007119706366211176, -0.0222325399518013, 0.014583487994968891, 0.03382522240281105, 0.004175218287855387, 0.00280553475022316, 0.016674404963850975, -0.0008167646592482924, 0.02876996621489525, 0.028584694489836693, 0.004099124576896429, -0.003142992965877056, -0.01912263222038746, -0.015271637588739395, 0.006242976523935795, 0.009362811222672462, -0.0006360425613820553, -0.0008196595008485019, 0.004529218189418316, -0.004866676405072212, -0.00784755777567625, 0.0012762205442413688, 0.006342228967696428, 0.01409384235739708, 0.0015657067997381091, -0.005419181659817696, 0.004406807012856007, -0.030119799077510834, 0.01744195632636547, 0.020234258845448494, 0.011625765822827816, -0.024508729577064514, -0.0018659454071894288, -0.014265879988670349, 0.006954285781830549, -0.008092380128800869, 0.009865690022706985, -0.011281690560281277, 0.013670365326106548, -0.010533989407122135, -0.004946078639477491, 0.00184444070328027, -0.003996563609689474, 0.0016930807614699006, 0.00971350260078907, 0.013617430813610554, -0.015933319926261902, -0.018805023282766342, 0.010838363319635391, -0.006448098458349705, 0.0024780018720775843, 0.0024664225056767464, 0.0018659454071894288, 0.0012224589008837938, -0.023820579051971436, 0.004562302492558956, 0.017058180645108223, 0.003645871998742223, -0.007821090519428253, -0.009329726919531822, 0.012168345972895622, 0.006084172986447811, 0.004466358572244644, 0.006993986666202545, 0.007371145766228437, -0.02452196180820465, 0.01580098457634449, -0.009614250622689724, 0.01114935427904129, -0.0042049940675497055, 0.0008320660563185811, -0.0013961505610495806, 0.02458813041448593, -0.037610046565532684, 0.016409732401371002, -0.011824270710349083, 0.028372956439852715, -0.027764208614826202, -0.008462922647595406, -0.024270523339509964, 0.016595004126429558, 0.004525910131633282, 0.005283536855131388, -0.009832605719566345, -0.0006587879033759236], "129acce9-c3ca-4527-a94c-a1bd7bd08e33": [-0.022689130157232285, -0.0011481032706797123, -0.00017293242854066193, 0.0253472700715065, -0.008725980296730995, -0.027894655242562294, 0.0035263877362012863, 0.027752256020903587, -0.022404329851269722, 0.03639121353626251, 0.017720937728881836, -0.014627685770392418, -0.029192082583904266, 0.015221020206809044, -0.026439007371664047, -0.0033740983344614506, -0.0101658059284091, 0.01396314986050129, -0.0095962043851614, -0.031106576323509216, 0.10524971783161163, -0.028005411848425865, -0.04069487005472183, 0.018559519201517105, -0.05170716717839241, 0.02325873263180256, -0.03172364458441734, 0.010411051101982594, -0.0020826058462262154, -0.010181628167629242, 0.021977128461003304, -0.002857896964997053, -0.011732210405170918, -0.004450012464076281, -0.01327488198876381, -0.022625841200351715, -0.0030695197638124228, 0.00045637349830940366, 0.016787424683570862, 0.005078947637230158, -0.04654910787940025, 0.03458747640252113, -0.0009394470835104585, 0.01734120398759842, -0.04325807839632034, -0.03281538188457489, -0.014184662140905857, -0.03832152858376503, -0.010751229710876942, -0.0078043327666819096, -0.0018146161455661058, 0.03107493184506893, -0.0041573005728423595, -0.008591490797698498, 0.035252008587121964, -0.037688639014959335, 0.05841580778360367, 0.09594622254371643, -0.0029587638564407825, -0.057244960218667984, -0.02188219502568245, -0.013868216425180435, -0.028480079025030136, -0.01601213403046131, 0.010418962687253952, -0.012293901294469833, -0.009873094037175179, 0.013599238358438015, -0.02892310358583927, 0.03575832396745682, 0.013955239206552505, -0.0034611208830028772, -0.018812675029039383, 0.020837925374507904, -0.0011134919477626681, -0.018733562901616096, 0.011233809404075146, -0.00796255562454462, 0.02397073432803154, 0.0025572737213224173, 0.025663716718554497, -0.019872765988111496, 0.0019362499006092548, 0.022072061896324158, 0.07341531664133072, 0.0005152125377207994, 0.006637440994381905, -0.04882751405239105, -0.02713518775999546, -0.012483768165111542, -0.033796362578868866, 0.02098032459616661, -0.008892113342881203, -0.0007421631598845124, -0.005316281691193581, 0.013741638511419296, -0.014232128858566284, -0.0060164169408380985, 0.015537465922534466, 0.0017394603928551078, -0.015181465074419975, 0.013282792642712593, -0.012293901294469833, -0.0008825858240015805, -0.01816396228969097, 0.012135677970945835, 0.01775258220732212, -0.0024603623896837234, -0.0006052016979083419, 0.016866536810994148, 0.035663388669490814, -0.06268782168626785, 0.01405017264187336, 0.0008815969340503216, -0.04110625013709068, -0.015308042988181114, -0.008797179907560349, -0.020948680117726326, -0.004315522965043783, -0.03737219423055649, 0.031707823276519775, -0.009983849711716175, 0.04620101675391197, -0.017436137422919273, -0.0034136539325118065, 0.013702082447707653, 2.2744508896721527e-05, 0.035125430673360825, 0.002047005807980895, -0.007361309602856636, 0.008599401451647282, -0.006586018484085798, 0.023812511935830116, -0.008488645777106285, 0.008393712341785431, 0.03427102789282799, 0.03132808953523636, 0.056707002222537994, -0.007566999178379774, 0.03275209292769432, -0.053890638053417206, -0.0238441564142704, -0.03800508379936218, -0.004683390725404024, 0.01556911040097475, -0.004275967366993427, -0.0345558300614357, 0.033321693539619446, -0.012444213032722473, 0.030932530760765076, -0.07664305716753006, -0.027688967064023018, -0.022704953327775, 0.015410888008773327, 0.048574358224868774, -0.05075782909989357, -0.007863666862249374, 0.03433431684970856, -0.011154698207974434, 0.02833767980337143, 0.026470651850104332, -0.03420773893594742, -0.010893630795180798, 0.032847024500370026, 0.03060026280581951, 0.01541879866272211, 0.03006230667233467, 0.014944130554795265, -0.04411247745156288, 0.026201672852039337, 0.02259419672191143, -0.02677127532660961, 0.03253057971596718, -0.0014378484338521957, -0.009754427708685398, -0.008528201840817928, 0.031359732151031494, 0.010585096664726734, 0.03575832396745682, -0.026470651850104332, -0.04028348997235298, -0.01153443194925785, -0.005098725203424692, -0.011075587011873722, -0.020062634721398354, 0.012056566774845123, -0.01234136801213026, 0.025141581892967224, 0.02390744537115097, 0.009050336666405201, 0.005047303158789873, -0.017863338813185692, 0.004232456441968679, 0.022799886763095856, -0.017673471942543983, -0.03316346928477287, -0.03730890527367592, -0.023179620504379272, 0.005577349103987217, 0.015363420359790325, 0.016692491248250008, -0.039903756231069565, -0.01745196059346199, 0.032910313457250595, -0.028416790068149567, 0.011645188555121422, -0.002699674107134342, -0.03794179484248161, 0.012523324228823185, -0.021929660812020302, 0.036074768751859665, -0.019572144374251366, 0.006657218560576439, 0.00924020353704691, -0.009469626471400261, 0.025916872546076775, -0.03477734327316284, 0.03999869152903557, -0.011763854883611202, -0.005055214278399944, -0.0016771602677181363, -0.0013468704419210553, -0.0030754529871046543, -0.025030825287103653, -0.045694705098867416, -0.012325545772910118, -0.01270528044551611, 0.013219503685832024, 0.008298778906464577, 0.0037162548396736383, 0.013203681446611881, -0.005521970801055431, 0.0031288531608879566, -0.01829054020345211, -0.01004713959991932, 0.056991804391145706, 0.029983194544911385, -0.016067512333393097, -0.017182981595396996, -0.03137555345892906, 0.014327062293887138, 0.022087883204221725, -0.016194090247154236, -0.03844810649752617, 0.013947327621281147, 0.018638629466295242, -0.008638957515358925, 0.047846533358097076, 0.0053558372892439365, 0.01949303224682808, -0.019034186378121376, 0.013662527315318584, 0.012127767316997051, 0.02276824228465557, 0.006692818831652403, 0.005612948909401894, 0.039239220321178436, -0.014058084227144718, 0.015402976423501968, -0.005648549180477858, 0.007847844623029232, 0.014675152488052845, -0.031296443194150925, 0.014366618357598782, 0.056105755269527435, -0.05423872917890549, 0.03287867084145546, 0.009975939057767391, 0.028084522113204002, 0.04430234804749489, 0.013797016814351082, -0.0028954746667295694, 0.026613052934408188, 0.0028816303238272667, 0.021565748378634453, -0.023654287680983543, -0.03055279701948166, 0.013868216425180435, 0.0014655374689027667, -0.006645352113991976, -0.01276065781712532, -0.024018200114369392, 0.04446056857705116, 0.02821110188961029, 0.04800475761294365, 0.021201837807893753, -0.018322184681892395, -0.014398262836039066, -0.01876520738005638, -0.04721364378929138, 0.008955403231084347, 0.005059169605374336, 0.030046483501791954, 0.038827840238809586, 0.009849361144006252, -0.004841613583266735, 0.0025355182588100433, -0.032135024666786194, -0.0107354074716568, -0.01288723573088646, -0.01446946244686842, -0.035726677626371384, -0.01661337912082672, -0.01787916198372841, 0.02007845602929592, -0.008116822689771652, 0.024318823590874672, 0.025790294632315636, -0.013164125382900238, 0.0483212023973465, 0.0295401718467474, -0.018432941287755966, 0.003898210823535919, -0.010593007318675518, 0.007242642343044281, 0.016360223293304443, -0.027594033628702164, -0.02355935424566269, -0.0047308579087257385, -0.0276731438934803, 0.010173717513680458, -0.013195769861340523, -0.041929006576538086, 0.034524183720350266, 0.030283818021416664, -0.03819495067000389, 0.00760655477643013, 0.01822725124657154, -0.03316346928477287, -0.03632792457938194, -0.05344761535525322, -0.01661337912082672, -0.04585292935371399, -0.01602795533835888, -0.03395458310842514, -0.014564395882189274, -0.048922449350357056, -0.018939252942800522, 0.0026166073512285948, -0.010585096664726734, 0.0021142503246665, -0.021201837807893753, 0.02678709663450718, -0.03550516441464424, -0.001981738954782486, -0.02618585154414177, 0.031217331066727638, 0.01413719542324543, -0.028907280415296555, 0.004639879800379276, 0.0009523026528768241, -0.012483768165111542, 0.012159411795437336, 0.030774308368563652, 0.03287867084145546, -0.002929097041487694, -0.07733923941850662, 0.03205591067671776, -0.0052688149735331535, 0.020853746682405472, -0.029682571068406105, -0.010901541449129581, -0.027704788371920586, 0.005177836865186691, 0.014303328469395638, 0.03879619762301445, 0.017800049856305122, -0.016961470246315002, 0.005059169605374336, 0.022435974329710007, -0.021723972633481026, -0.027546565979719162, 0.0036707657855004072, -0.01455648522824049, -0.0060559725388884544, -0.011107231490314007, 0.03461911901831627, 0.01261034607887268, 0.016344401985406876, 0.016692491248250008, 0.0026798963081091642, -0.011162608861923218, 0.013670437969267368, 0.010134161449968815, 0.03102746419608593, 0.011384121142327785, 0.016961470246315002, -0.03229324519634247, -0.023875800892710686, 0.016534268856048584, -0.049049027264118195, 0.014263773337006569, -0.02403402328491211, -0.012958436273038387, -0.028432613238692284, -0.01240465696901083, -0.0315021313726902, 0.0037300994154065847, 0.0062339729629457, -0.004165211692452431, -0.012808124534785748, 0.020410723984241486, 0.02063223533332348, 0.00644361786544323, 0.051738809794187546, -0.007254509255290031, -0.01624946855008602, -0.025157403200864792, 0.015972578898072243, 0.03313182666897774, 0.005217392463237047, 0.030457863584160805, 0.03259386867284775, 0.04284669831395149, 0.03216666728258133, -0.013005902990698814, -0.020173389464616776, 0.021249303594231606, -0.04129611700773239, -0.022072061896324158, 0.01912911981344223, -0.008132644928991795, 0.0035441876389086246, 0.02427135594189167, 0.017610182985663414, 0.03115404210984707, -0.008172200992703438, 0.03436596319079399, 0.008010022342205048, -0.01996769942343235, -0.011700565926730633, 0.024429580196738243, -0.011518609710037708, 0.012863502837717533, -0.0017483604606240988, 0.005680193658918142, 0.023923266679048538, -0.004987969528883696, 0.018069028854370117, 0.020046811550855637, -0.012721102684736252, 0.00897122547030449, 0.007721266243606806, -0.011225897818803787, -0.031059108674526215, -0.03341662511229515, -0.027214298024773598, 0.017483605071902275, 0.024825135245919228, -0.010181628167629242, 0.007566999178379774, 0.020521478727459908, -0.024318823590874672, -0.016787424683570862, -0.02599598467350006, -0.00429178960621357, 0.001169858849607408, -0.037340547889471054, 0.007614465896040201, -0.043669454753398895, -0.042182162404060364, 0.0022586286067962646, 0.03778357058763504, 0.000320895342156291, 0.045947860926389694, -0.041580915451049805, -0.03439760580658913, -0.03256222605705261, -0.0007530410075560212, 0.010585096664726734, -0.009208559058606625, 0.010331939905881882, 0.0009241192601621151, 0.03743548318743706, -0.018701918423175812, 0.026027629151940346, -0.025663716718554497, 0.037403836846351624, -0.0002014866768149659, -0.005585260223597288, 0.03287867084145546, -0.010703762993216515, -0.01461977418512106, -0.013385637663304806, -0.004659657366573811, -0.009754427708685398, -0.03673930466175079, -0.016020044684410095, 0.0023674066178500652, 0.020220857113599777, 0.023242909461259842, -0.0016306823818013072, 0.029065502807497978, -0.005197614431381226, -0.01027656253427267, -0.008939580991864204, -0.009881005622446537, -0.022309396415948868, -0.03509378805756569, -0.007195175625383854, 0.011621454730629921, -0.006847085896879435, -0.0249833595007658, 0.028780702501535416, -0.009517093189060688, 0.02958763763308525, -0.04123282805085182, 0.04778324440121651, 0.005003791768103838, -0.0002448743034619838, -0.00953291542828083, -0.00858357921242714, -0.018037384375929832, -0.0028104300145059824, 0.007515576668083668, 0.005284637212753296, -0.03322675824165344, -0.04120118170976639, 0.04015691205859184, -0.016866536810994148, -0.02139170467853546, -0.028052877634763718, -0.014516929164528847, -0.019809477031230927, 0.02930283732712269, 0.013559682294726372, -0.008140556514263153, -0.028764881193637848, -0.012175234034657478, 0.01611497811973095, -0.004639879800379276, 0.008987047709524632, -0.015711510553956032, 0.005260903388261795, 0.019524676725268364, -0.010197450406849384, -0.027530742809176445, 0.009944294579327106, 0.01816396228969097, 0.018512051552534103, -0.014675152488052845, -0.004928635898977518, -0.007167486939579248, -0.01434288453310728, -0.016455156728625298, 0.019208231940865517, 0.01738867163658142, 0.01721462607383728, 0.003680654801428318, 0.033036891371011734, -0.007638199254870415, -0.0052332147024571896, -0.040505003184080124, 0.003237631171941757, 0.005217392463237047, -0.024018200114369392, -0.018274717032909393, -0.006491085048764944, -0.02259419672191143, -0.018622808158397675, -0.0037241659592837095, -0.01225434523075819, 0.007392954081296921, 0.012032833881676197, 0.020853746682405472, -0.0049049025401473045, -0.03196097910404205, 0.018970897421240807, -0.0445871464908123, 0.017705116420984268, 0.026929497718811035, -0.015173553489148617, 0.0483212023973465, 0.02302139811217785, 0.0013933483278378844, 0.019762011244893074, -0.02571118250489235, -0.010086694732308388, -0.005324192810803652, -0.024524513632059097, 0.02272077463567257, -0.03968224301934242, -0.009319314733147621, -0.02601180598139763, -0.04357452318072319, -0.0040742335841059685, -0.043068207800388336, -0.028733236715197563, 0.0032593868672847748, -0.0107354074716568, -0.008081222884356976, 0.047909822314977646, -0.01485710870474577, 0.030948353931307793, -0.027214298024773598, 0.001802749466150999, -0.015679866075515747, 0.022277751937508583, 0.020537301898002625, 0.007120019756257534, 0.015284309163689613, 0.029207903891801834, 0.018606984987854958, -0.008172200992703438, -0.028954748064279556, -0.00854402408003807, 0.011668921448290348, 0.05088441073894501, -0.012586613185703754, 0.004078189376741648, 0.000486287462990731, -0.020189212635159492, 0.023416955024003983, 0.002434651367366314, 0.01901836507022381, -0.022404329851269722, -0.0017602271400392056, 0.031660355627536774, 0.022214462980628014, 0.010838252492249012, 0.014548573642969131, -0.02211952768266201, 0.010711674578487873, -0.004323434550315142, 0.04866929352283478, 0.02360682189464569, -6.396893149940297e-05, 0.014730529859662056, 0.010861986316740513, 0.002256650710478425, -0.014532751403748989, -0.0077568660490214825, 0.022878997027873993, -0.011716388165950775, 0.019777832552790642, 0.004319478757679462, -0.011099319905042648, 0.015948845073580742, -0.0036292322911322117, -0.014698885381221771, -0.011407854035496712, 0.008836735971271992, 0.005470548756420612, 0.030442040413618088, -0.007005308289080858, 0.008797179907560349, 0.01900254189968109, -0.005957083310931921, 0.049523692578077316, 0.0346507653594017, -0.010300295427441597, 0.0008192967507056892, -9.511901589576155e-05, 0.0058977496810257435, 0.005209481343626976, -0.020964503288269043, -0.012072389014065266, 0.047498442232608795, -0.002735274378210306, -0.004430234432220459, 0.030442040413618088, -0.007946733385324478, 0.008235489949584007, 0.020695524290204048, 0.005332103930413723, -0.026027629151940346, 0.007127930875867605, 0.02409731224179268, 0.04126447066664696, 0.0005221347673796117, 0.008393712341785431, -0.04847942292690277, 0.016035867854952812, -0.006495040375739336, 0.010300295427441597, 0.007491843309253454, 0.008868380449712276, -0.014509018510580063, 0.003188186790794134, -0.003435409627854824, -0.011890433728694916, -0.024255534633994102, -0.029097147285938263, -0.0037696550134569407, -0.011906255967915058, -0.0023100508842617273, -0.030204705893993378, 0.02463526837527752, -0.015023241750895977, 0.010434784926474094, -0.013733726926147938, 0.018606984987854958, -0.016407690942287445, 0.019334809854626656, -0.0026304516941308975, -0.015624487772583961, 0.017182981595396996, -0.03639121353626251, 0.037213969975709915, -0.03588490188121796, -0.03137555345892906, -0.008654779754579067, 0.03866961970925331, -0.01153443194925785, 0.02547384984791279, 0.009730693884193897, -0.012214790098369122, 0.0041098338551819324, 0.004980058409273624, 0.004212678410112858, -0.014382440596818924, 0.028891459107398987, -0.03240400180220604, 0.03102746419608593, -0.002594851655885577, 0.012143589556217194, -0.004972147289663553, 0.0101658059284091, -0.02552131563425064, 0.02164486050605774, -0.0027590077370405197, 0.030758485198020935, -0.006028283387422562, -0.03794179484248161, -0.005976861342787743, 0.01111514214426279, -0.009564559906721115, 0.008773447014391422, 0.018005739897489548, 0.01440617348998785, 0.03480898588895798, -0.0007772688404656947, 0.0008731913403607905, 0.0011273365234956145, -0.003702410263940692, -0.011289186775684357, 0.002507829340174794, -0.01168474368751049, -0.01356759387999773, -0.027419988065958023, 0.02700860984623432, -0.014105550944805145, 0.019382275640964508, -0.026043450459837914, -0.027467453852295876, 0.003919966518878937, 0.016898181289434433, -0.0052332147024571896, -0.02121765911579132, 0.0048574358224868774, 0.03999869152903557, -0.035252008587121964, 0.03012559562921524, 0.021011969074606895, -0.0036509879864752293, 0.008528201840817928, 0.03803673014044762, 0.009960116818547249, 0.013575504533946514, 0.025157403200864792, -0.00875762477517128, -0.00017812411533668637, 0.0113524766638875, -0.037340547889471054, 0.017894983291625977, 0.007167486939579248, -0.0010244917357340455, 0.027245942503213882, 0.03420773893594742, 0.00801397766917944, 0.028084522113204002, 0.02887563593685627, 0.019398098811507225, 0.022625841200351715, -0.018575340509414673, -0.0004494512686505914, -0.005438904277980328, -0.01942974328994751, -0.013338170945644379, -0.004628012888133526, -0.01912911981344223, -0.03316346928477287, 0.011613544076681137, -0.011162608861923218, 0.025094114243984222, -0.017483605071902275, 0.005763260647654533, 0.019983522593975067, -0.011376209557056427, 0.009161092340946198, 0.013227414339780807, 0.0010620696702972054, -0.01667666807770729, 0.015956755727529526, -0.010308207012712955, -0.038100019097328186, 0.025727005675435066, 0.003502654144540429, 0.002747141057625413, -0.004620101768523455, 0.026154207065701485, 0.013512215577065945, 0.04518839344382286, 0.03597983345389366, 0.025600427761673927, -0.013045459054410458, -0.020600590854883194, 0.006111350376158953, -0.025331448763608932, -0.0066769965924322605, -0.0055654821917414665, 0.01906583085656166, -0.0011738144094124436, 0.02552131563425064, -0.001964927650988102, 0.012175234034657478, -0.020474012941122055, 0.00944589264690876, 0.042182162404060364, -0.005541748832911253, -0.02211952768266201, -0.007349442690610886, -0.011225897818803787, 0.00723473122343421, -0.0065069072879850864, -0.0006813463405705988, 0.01234136801213026, -0.0030161195900291204, 0.018148139119148254, -0.007646110374480486, -0.0014843263197690248, -0.004058411344885826, -0.008108912035822868, 0.025727005675435066, -0.014398262836039066, 0.021186014637351036, 0.0023654289543628693, -0.010142073035240173, -0.013425192795693874, 0.017420316115021706, -0.03001483902335167, -0.05110592022538185, -0.00040841224836185575, -0.002104361541569233, 0.006317039951682091, 0.020236678421497345, -0.0028262522537261248, -0.0030517196282744408, 0.047973111271858215, 0.048922449350357056, 0.014034350402653217, 0.0007639187970198691, -0.0031664310954511166, 0.006178595125675201, -0.03427102789282799, 0.001575304428115487, -0.026264961808919907, 0.024081489071249962, -0.03696081414818764, 0.005031480919569731, 0.019936054944992065, 0.0011718366295099258, 0.011945811100304127, 0.010442695580422878, -0.02385997772216797, 0.005411215126514435, -0.0037914107087999582, -0.0023476288188248873, 0.002727363258600235, -0.019587965682148933, 0.006827307865023613, 0.01661337912082672, 0.004924680572003126, 0.009485448710620403, -0.003077430883422494, 0.031185686588287354, 0.0003189175622537732, 0.0070962863974273205, -0.008053533732891083, -0.02086956985294819, -0.031185686588287354, 0.027214298024773598, -0.009936382994055748, 0.014018528163433075, -0.013765371404588223, 0.029144614934921265, -0.006320995278656483, -0.017831694334745407, -0.00953291542828083, -0.027641499415040016, 0.00011570032074814662, -0.0203316118568182, -0.027878833934664726, -0.011012297123670578, -0.013757460750639439, -0.00010086694965139031, -0.010798696428537369, -0.010418962687253952, -1.0205671060248278e-05, 0.011906255967915058, -0.0034690320026129484, -0.029730038717389107, -0.049049027264118195, -0.027467453852295876, 0.04363781213760376, -0.04357452318072319, 0.00694993045181036, 0.007654021494090557, -0.014279595576226711, 0.04927053675055504, 0.030046483501791954, 0.009271848015487194, -0.014334973879158497, -0.015869732946157455, 0.05474504083395004, -0.006285395473241806, 0.014105550944805145, 0.012167323380708694, -0.005648549180477858, -0.007986289449036121, 0.0018264829413965344, 0.018844319507479668, 0.013448926620185375, 0.014896663837134838, -0.009912650100886822, 0.00501961400732398, 4.41601914644707e-05, -0.020663879811763763, 0.008844646625220776, 0.04822626709938049, 0.005312325898557901, 0.007499754428863525, 0.013219503685832024, -0.0033009203616529703, 0.011502787470817566, -0.008813002146780491, -0.019936054944992065, -0.002956785960122943, -0.026090918108820915, -0.02169232815504074, 0.003435409627854824, -0.0124679459258914, 0.025426382198929787, -0.004101922735571861, 0.001954049803316593, -0.010703762993216515, 0.0030042529106140137, 0.002917230362072587, -0.014002705924212933, 0.0011639255098998547, 0.026075094938278198, 0.028717413544654846, -0.008065400645136833, -0.004501434974372387, -0.0018334051128476858, 0.012088211253285408, -0.010023405775427818, 0.010110428556799889, -0.009002869948744774, -0.009975939057767391, 0.01153443194925785, -0.007329665124416351, 0.0058937943540513515, 0.001568382140249014, -0.015893466770648956, 0.02492007054388523, -0.014240039512515068, 0.024603623896837234, -0.008733890950679779, -0.0005522959982044995, -0.018986720591783524, -0.001935260952450335, 0.03711903840303421, 0.042656831443309784, -0.02086956985294819, 0.010933185927569866, -0.009303492493927479, -0.022499263286590576, -0.009857271797955036, -0.005122458562254906, 0.03550516441464424, -0.002476184628903866, -0.03319511562585831, -0.018622808158397675, -0.0071793533861637115, 0.020774636417627335, -0.014651418663561344, 0.0010452584829181433, -0.048162978142499924, 0.022372685372829437, -0.006324951071292162, -0.018986720591783524, 0.029128791764378548, -0.009888916276395321, 0.01333025936037302, -0.009493360295891762, 0.010624651797115803, -0.022910641506314278, -0.0011362364748492837, -0.049650270491838455, -0.012238522991538048, -0.009667404927313328, -0.01738867163658142, 0.05613740161061287, -0.007942778058350086, 0.008472823537886143, 0.009002869948744774, -0.024825135245919228, -0.0040346779860556126, 0.020189212635159492, -0.011486965231597424, -0.005972905550152063, -0.0021874282974749804, -0.0005552626680582762, -0.022435974329710007, 0.004877213854342699, 0.012088211253285408, -0.027356699109077454, 6.802492862334475e-06, 0.02654976397752762, 0.0036569214425981045, -0.017610182985663414, 0.014058084227144718, -0.026217496022582054, -0.013290704227983952, 0.0006131128175184131, 0.004596368409693241, 0.024223890155553818, 0.003370142774656415, -0.015236842446029186, -0.005051258485764265, -0.008061444386839867, 0.017910806462168694, -0.0203790795058012, 0.005399348214268684, -0.02211952768266201, -0.037625350058078766, -0.07063059508800507, -0.008065400645136833, -0.004473745822906494, 0.02928701601922512, 0.011502787470817566, -0.03439760580658913, 0.007974422536790371, 0.01541879866272211, -0.026802919805049896, 0.01876520738005638, -0.017467781901359558, -0.021059436723589897, 0.029492704197764397, 0.009287670254707336, 0.026439007371664047, -0.005225303582847118, 0.009540827013552189, 0.016043778508901596, -0.010719585232436657, -0.011471142992377281, -0.031106576323509216, 0.0074601988308131695, 0.029207903891801834, -0.014034350402653217, 0.006427795626223087, 0.03202426806092262, -0.042403675615787506, 0.017246270552277565, -0.012127767316997051, 0.001510037574917078, 0.013773282989859581, 0.011613544076681137, -0.014034350402653217, 0.00812473427504301, 0.039903756231069565, 0.006467351224273443, 0.013575504533946514, 0.003779543796554208, 0.029603460803627968, 0.025062469765543938, -0.0012796258088201284, -0.009469626471400261, -0.028527546674013138, -0.0006556351436302066, 0.011716388165950775, -0.0018957053543999791, 0.016771603375673294, -0.029745861887931824, 0.00037503716885112226, 0.005877972114831209, 0.010529718361794949, 0.001726604881696403, 0.0053953928872942924, -0.02427135594189167, -0.01210403349250555, -0.015284309163689613, 0.010221184231340885, -0.0008514357032254338, -0.009501270949840546, -0.005419126246124506, 0.04028348997235298, 0.014698885381221771, 0.005866105202585459, 0.02235686220228672, -0.005102680996060371, 0.024429580196738243, 0.03908099979162216, 0.032135024666786194, 0.01102811936289072, 0.023954911157488823, 0.03249893710017204, 0.005881927441805601, 0.014635596424341202, 0.017072224989533424, 0.015410888008773327, -0.020110100507736206, 0.005446815397590399, -0.01198536716401577, 0.04196064919233322, -0.026233317330479622, -0.014651418663561344, 0.010197450406849384, 0.012499590404331684, 0.007290109060704708, -0.03629627823829651, 0.013298614881932735, 0.007907177321612835, -0.006439662538468838, -0.01732538267970085, 0.014944130554795265, 0.016020044684410095, 0.005450770724564791, 0.04287834092974663, 0.005391437094658613, 0.003538254415616393, 0.041865717619657516, -0.004465834703296423, -0.0075472211465239525, -0.0036588991060853004, -0.003387942910194397, -0.01383657194674015, -0.020474012941122055, -0.005134325474500656, -0.023954911157488823, -0.0037558104377239943, -0.023100508376955986, -0.017198802903294563, 0.04094802588224411, -0.020252501592040062, -0.00029567861929535866, -0.015632398426532745, 0.017784226685762405, -0.01317994762212038, 0.011621454730629921, -0.024777669459581375, -0.0034591429866850376, 0.018037384375929832, -0.009081981144845486, -0.03370142728090286, 0.0026225405745208263, 0.0004887597169727087, 0.015980489552021027, -0.028432613238692284, -0.04828955605626106, -0.004711079876869917, -0.0043669454753398895, 0.005415170919150114, -0.021091081202030182, 0.0015832155477255583, 0.022562552243471146, -0.024065667763352394, 0.01852787472307682, -0.031581245362758636, 0.033922940492630005, -0.005881927441805601, 0.011455320753157139, 0.02863830327987671, -0.014959952794015408, 0.027293410152196884, -0.028385145589709282, 0.00730988709256053, -0.010933185927569866, 0.019682899117469788, -0.004275967366993427, 0.00615881709381938, -0.0028262522537261248, -0.004517257213592529, -0.028480079025030136, 0.014002705924212933, -0.012697368860244751, -0.011249631643295288, 0.006918285973370075, 0.021803082898259163, -0.007116064429283142, -0.004022811073809862, -0.01631275750696659, -0.010126250796020031, 0.0023100508842617273, -0.007982333190739155, 0.006633485201746225, -0.034998852759599686, -0.0005878960946574807, 0.00147147080861032, -0.0009572471026331186, -0.004212678410112858, -0.004311567638069391, -0.0004984014085493982, -0.010379406623542309, -0.01449319627135992, 0.0004165706050116569, 0.002879652427509427, -0.013021725229918957, -0.003085342003032565, -0.008180111646652222, 0.013448926620185375, -0.005162014625966549, -0.009010780602693558, -0.00375976599752903, 0.01954049989581108, -0.008947491645812988, -0.003463098546490073, 0.007479976397007704, 0.009422159753739834, 0.01240465696901083, -0.006795663386583328, -0.004008966963738203, -0.0009513137629255652, -0.011455320753157139, 0.006206283811479807, 0.001189636648632586, 0.011550254188477993, 0.010624651797115803, -0.01174803264439106, 0.015434620901942253, -0.0027412076015025377, -0.003643076866865158, 0.025030825287103653, 0.04626430571079254, -0.037751927971839905, -0.010624651797115803, 0.002879652427509427, 0.001840327400714159, 0.03229324519634247, 0.008813002146780491, 0.0007757854764349759, 0.009667404927313328, -0.005735571496188641, 0.03417609632015228, 0.012816036120057106, -0.000972574925981462, -0.010719585232436657, -0.015434620901942253, 0.012285989709198475, 0.0018571385880932212, -0.0069736638106405735, -0.008116822689771652, -0.007903221994638443, 0.005937305279076099, 0.016898181289434433, 0.01389986090362072, 0.04889080300927162, 0.00366087700240314, 0.01350430492311716, -0.025853583589196205, 0.006534595973789692, 0.0071793533861637115, -0.020489834249019623, -0.13328677415847778, -0.014327062293887138, -0.008638957515358925, -0.004548901692032814, -0.006586018484085798, 0.01697729155421257, 0.02438211254775524, 0.007408776320517063, -0.0180532056838274, -0.00924020353704691, 0.010616741143167019, 0.016534268856048584, 0.0037300994154065847, 0.00738504296168685, -0.01198536716401577, 0.0007485909736715257, -0.004268056247383356, 0.03743548318743706, 0.0051461923867464066, -0.01751524955034256, 0.005620860029011965, 0.009865183383226395, -0.014540662989020348, -0.005383525975048542, 0.0041612558998167515, -0.013108748011291027, -0.004493523854762316, -0.0014121372951194644, 0.0030240307096391916, -0.004829746671020985, 0.006807530298829079, 0.0036707657855004072, -0.021138548851013184, 0.008955403231084347, 0.01792662777006626, 0.04234038665890694, -0.027641499415040016, 0.01413719542324543, -0.018132317811250687, 0.0014151039067655802, 0.008868380449712276, -0.0022882951889187098, -0.000972574925981462, -0.0016029933467507362, -0.018306361511349678, -0.015489999204874039, -0.01852787472307682, 0.0113524766638875, 0.022388506680727005, -0.012080300599336624, -0.03132808953523636, 0.0011134919477626681, 0.004936547018587589, 0.0013241259148344398, -0.0004850513651035726, -0.008425356820225716, 0.010078784078359604, -0.0017285826615989208, 0.020648058503866196, 0.00947753805667162, 0.0012400700943544507, 0.027688967064023018, -0.0034255206119269133, -0.013591326773166656, 0.0006220128270797431, 0.018306361511349678, -0.025204870849847794, 0.010861986316740513, -0.004497479181736708, 0.007392954081296921, 0.010561362840235233, 0.016043778508901596, -0.012531234882771969, -0.006945975124835968, -0.006831263657659292, -0.01407390646636486, -0.026945319026708603, -0.013646705076098442, -0.0002857896906789392, -0.004208723083138466, -0.008528201840817928, 0.01732538267970085, 0.009422159753739834, -0.00908989179879427, 0.015600754879415035, -0.04496688023209572, -0.023685932159423828, -0.007879489101469517, 0.016391867771744728, -0.0006408017943613231, 0.006008505821228027, -0.014991597272455692, -0.015671955421566963, 0.01010251697152853, -0.010490162298083305, 0.05208690091967583, -0.007661932613700628, -0.03974553197622299, -0.02654976397752762, -0.01704058051109314, 0.010632563382387161, 0.007084419950842857, 0.011107231490314007, -0.03423938527703285, 0.024492869153618813, -0.008884202688932419, -0.02678709663450718, 0.0053677037358284, 0.016217824071645737, -0.011573988012969494, 0.019920233637094498, -0.01852787472307682, -0.0027510966174304485, 0.004813924431800842, 0.015165642835199833, 0.01425586175173521, -0.01655009016394615, 0.017720937728881836, -0.01554537657648325, 0.0007802355103194714, 0.02851172350347042, 0.016645023599267006, -0.018322184681892395, 0.006411973387002945, 0.00944589264690876, 0.015236842446029186, -0.009034514427185059, -0.010284473188221455, 0.023923266679048538, -0.02786301076412201, -0.006071794778108597, -0.04341629892587662, -0.021660683676600456, -0.0369291715323925, 0.021011969074606895, -0.00694993045181036, 0.02654976397752762, -0.031043287366628647, 0.007298020645976067, 0.013733726926147938, -0.0445871464908123, -0.0024504736065864563, -0.011874610558152199, 0.016518445685505867, -0.014920397661626339, -0.035410232841968536, -0.0038665663450956345, -0.012388834729790688, -0.006439662538468838, -0.003494743024930358, 0.018670273944735527, -0.005822594277560711, -0.005363748408854008, 0.00243662903085351, -0.0024484957102686167, -0.032372355461120605, 0.012333456426858902, -0.00796255562454462, 0.01060882955789566, -0.005470548756420612, 0.0033028980251401663, 0.020220857113599777, -0.01503906399011612, -0.009208559058606625, 0.007448331918567419, 0.006202328484505415, 0.020046811550855637, 0.02928701601922512, 0.01027656253427267, -0.00924020353704691, 0.014224217273294926, -0.042403675615787506, 0.006459440104663372, 0.006376373581588268, 0.00965949334204197, 0.0010966808767989278, 0.0237966887652874, -0.010640474036335945, 0.01461977418512106, 0.01954049989581108, -0.0030418308451771736, -0.02121765911579132, -0.0107591412961483, -0.0016415601130574942, -0.016929825767874718, -0.010561362840235233, -0.004742724355310202, -0.013322348706424236, 0.007578865624964237, -0.00458845729008317, 0.037562061101198196, 0.007788510527461767, -0.01721462607383728, -0.030109772458672523, 0.005363748408854008, 0.011146786622703075, -0.01147905457764864, 0.014952042140066624, 0.015845999121665955, -0.032973602414131165, 0.010007583536207676, 0.010426873341202736, -0.016344401985406876, -0.008947491645812988, 0.023337842896580696, 0.030631907284259796, 0.01434288453310728, 0.05164387822151184, -0.03436596319079399, -0.0006833241204731166, -0.05635891482234001, -0.019334809854626656, -0.017357027158141136, -0.02988826110959053, -0.029603460803627968, -0.0010185583960264921, -0.008662691339850426, 0.005640638060867786, -0.020727168768644333, 0.017008936032652855, -0.022372685372829437, 0.017135513946413994, 0.02158157154917717, 0.008195933885872364, -0.0058977496810257435, -0.009121536277234554, -0.017246270552277565, 0.0050275251269340515, 0.002058872487396002, 0.012697368860244751, 0.0004870291450060904, -0.006910374853760004, 0.033448271453380585, 0.02678709663450718, 0.02039490081369877, -0.01003922801464796, 0.014667240902781487, -0.003245542524382472, 0.02414477802813053, 0.017863338813185692, -0.007907177321612835, -0.0018284607212990522, -0.010023405775427818, 0.007361309602856636, -0.011004386469721794, 0.0015268487622961402, 0.00630517303943634, 0.011202164925634861, -0.015735244378447533, -0.034460894763469696, -0.012246434576809406, -0.0013251148629933596, -0.0077173104509711266, -0.0013666482409462333, 0.016914002597332, -0.001482348539866507, 0.014841285534203053, 0.021834727376699448, -0.020885391160845757, 0.001604971126653254, 0.027151009067893028, -0.014983686618506908, -0.005217392463237047, 0.0057751270942389965, 0.009667404927313328, -0.010466429404914379, -0.0003436398401390761, 0.02325873263180256, -0.004129611421376467, 0.004592413082718849, -0.012950524687767029, -0.006400106940418482, 0.0023060953244566917, -0.005541748832911253, -0.01556911040097475, -0.027894655242562294, 0.001274681300856173, 0.0013696149690076709, -0.005221347790211439, -0.014287506230175495, 0.009501270949840546, 0.013409370556473732, -0.0124679459258914, -0.003999077714979649, 0.010244917124509811, -0.014983686618506908, -0.0006348684546537697, -0.009643671102821827, 0.0007654021610505879, 0.00567623833194375, 0.006926197092980146, -0.007440420798957348, -0.010743319056928158, -0.003718232735991478, -0.0019995388574898243, 0.005727660376578569, -0.004766457714140415, 0.006724463310092688, 0.00926393736153841, -0.0015604710206389427, -0.0012707257410511374, -0.029381949454545975, 0.0056841494515538216, 0.0054784598760306835, 0.0035422099754214287, -0.005699971690773964, 0.010632563382387161, 0.03316346928477287, 0.012143589556217194, 0.007325709331780672, -0.002917230362072587, 0.010418962687253952, 0.012990080751478672, -0.016708312556147575, -0.003605498932301998, -0.014240039512515068, 0.00034685374703258276, -0.0016128822462633252, 0.03863797336816788, -0.005850282963365316, -0.01592511124908924, -0.01341728214174509, 0.0012113922275602818, -0.00852029025554657, -0.0002255909057566896, 0.026882030069828033, -0.0031130309216678143, -0.005074991844594479, 0.0176418274641037, -0.024540334939956665, 0.003540232079103589, 0.0029904083348810673, -0.023211264982819557, 0.015893466770648956, 0.021233482286334038, 0.025394737720489502, -0.004319478757679462, 0.014714707620441914, 0.015094442293047905, 0.011621454730629921, 0.003848766442388296, -0.016692491248250008, -0.006332862190902233, -0.011518609710037708, 0.0017740715993568301, 0.020537301898002625, -0.01025282870978117, 0.022689130157232285, 0.009714871644973755, -0.0050631253980100155, -0.03389129415154457, -0.027483277022838593, 0.004774368833750486, -0.008045622147619724, 0.005217392463237047, -0.00458845729008317, -0.01476217433810234, 0.018037384375929832, -0.0009167025564238429, 0.0030912752263247967, 0.006186506245285273, -0.0005577349220402539, 0.007282197941094637, -0.009699049405753613, 0.007697532884776592, -0.009991761296987534, -0.0030418308451771736, -0.012586613185703754, -0.013535949401557446, -0.010284473188221455, 0.004370901267975569, 0.019334809854626656, 0.011202164925634861, -0.008828824386000633, -0.00732175400480628, 0.004275967366993427, -0.023812511935830116, -0.0021735839545726776, -0.004881169181317091, -0.005786994006484747, -0.011249631643295288, -0.025299804285168648, 0.002519696019589901, -0.014540662989020348, -0.009050336666405201, -0.00860731303691864, -0.005296503659337759, -0.004924680572003126, -0.004275967366993427, 0.017198802903294563, 0.009453804232180119, -0.022325217723846436, -0.010687940753996372, 0.015790622681379318, 0.012586613185703754, 0.03131226450204849, -0.006036194507032633, -0.0010818474693223834, 0.00911362562328577, -0.005296503659337759, 0.0036588991060853004, 0.006985530722886324, 0.004750635474920273, 0.007013219408690929, 0.02164486050605774, -0.014793818816542625, -0.010474340058863163, -0.009612026624381542, -0.008931669406592846, 0.004422323312610388, -0.015592843294143677, -0.013235325925052166, 0.03952402248978615, -0.0009631805005483329, -0.005051258485764265, -0.01852787472307682, -0.00251178489997983, 0.00034957320895045996, 0.013085014186799526, 0.01811649464070797, 0.006839174777269363, 0.014042261056602001, 0.00015686293772887439, 0.006957841571420431, 0.002671985188499093, -0.017562715336680412, -0.017119692638516426, 0.003492765361443162, 0.00204107235185802, -0.010680030100047588, -0.014675152488052845, -0.010632563382387161, -0.02050565741956234, 0.016834892332553864, 0.019144942983984947, 0.015023241750895977, -0.010110428556799889, -0.030347106978297234, -0.02930283732712269, 0.007123975548893213, -0.01231763418763876, -0.017958272248506546, 0.028432613238692284, 0.009604115970432758, -0.030473684892058372, -0.009058247320353985, -0.006372417788952589, -0.004169167019426823, 0.005834460724145174, 0.021296771243214607, 0.0017968161264434457, -0.009414248168468475, -0.012380923144519329, -0.0004731846565846354, 0.019144942983984947, -0.0016257378738373518, 0.007412731647491455, 0.015940934419631958, 0.01824307255446911, -0.000566140457522124, 0.008081222884356976, 0.004212678410112858, -0.003031941829249263, 0.01312457025051117, -0.01865445263683796, -0.014690974727272987, 0.019508855417370796, 0.009271848015487194, 0.015806443989276886, -0.031707823276519775, -0.016391867771744728, 0.003122919937595725, -0.013860305771231651, 0.0005656460416503251, -0.033986229449510574, 0.017467781901359558, -0.00717144226655364, -0.002642318606376648, 0.014192572794854641, 0.019746188074350357, -0.007199131418019533, -0.0006343739805743098, 0.004540990572422743, 0.007586776744574308, -0.0005992683582007885, 0.009453804232180119, 0.016882358118891716, 0.011281276121735573, 0.0012529257219284773, 0.012744835577905178, 0.0101895397529006, -0.02941359393298626, 0.00830668956041336, 0.01598840020596981, 0.010964830406010151, 0.00573952728882432, -0.0003928372170776129, 0.01704058051109314, -0.0147700859233737, -0.01126545388251543, 0.009817716665565968, 0.0024979403242468834, -0.007278242614120245, -0.015347598120570183, -0.0015456376131623983, -0.0024504736065864563, -0.004473745822906494, -0.0015248709823936224, -0.015260576270520687, 0.027704788371920586, -0.003350364975631237, 0.0010818474693223834, -0.031043287366628647, 0.00836997851729393, 0.004924680572003126, 0.017008936032652855, -0.00516992574557662, -0.0026937408838421106, 0.010086694732308388, 0.009335136972367764, 0.006756107788532972, -0.012958436273038387, 0.001209414447657764, -0.014801730401813984, -0.008045622147619724, -0.015244754031300545, -0.0044065010733902454, -0.004252234008163214, -0.0261225625872612, -0.03253057971596718, 0.01181132160127163, -0.003617365611717105, -0.010498073883354664, 0.009034514427185059, 0.018860140815377235, 0.021961305290460587, 0.00830668956041336, 0.022072061896324158, 0.013828661292791367, 0.02468273602426052, -0.007697532884776592, 0.009960116818547249, -0.02355935424566269, -0.005078947637230158, 0.014216306619346142, 0.017894983291625977, 0.02026832289993763, -0.0029112971387803555, 0.01609124429523945, -0.011502787470817566, -0.019461387768387794, 0.017198802903294563, 0.02067970298230648, 0.0026462741661816835, 0.015584932640194893, -0.0005498237442225218, 0.007919044233858585, -0.020220857113599777, -0.013472659513354301, 0.0013379703741520643, -0.00911362562328577, -0.003779543796554208, 0.01632857881486416, -0.006562285125255585, 0.01704058051109314, 0.0025928739923983812, -0.024793490767478943, -3.17681442538742e-05, 0.011502787470817566, 0.002266539726406336, -0.02319544181227684, 0.011075587011873722, 0.01312457025051117, -0.001783960498869419, 0.0009176914463751018, 0.011305009014904499, 0.0039140330627560616, -0.007835977710783482, -0.0018037384143099189, -0.006356595549732447, -0.02140752598643303, -0.008156378753483295, 0.0009374693036079407, 0.016866536810994148, -0.0066769965924322605, 0.017705116420984268, -0.00602432806044817, 0.01794245094060898, -0.004295745398849249, -0.00290734157897532, 0.014548573642969131, 0.009374693036079407, -0.008006067015230656, 0.0025552960578352213, -0.004212678410112858, 0.007029042113572359, -0.01673995703458786, 0.011668921448290348, -0.006317039951682091, 0.001237103482708335, -0.010830341838300228, -0.0033661872148513794, -0.02654976397752762, -0.013583416119217873, -0.014184662140905857, 0.009604115970432758, -0.019271520897746086, -0.0005246070213615894, 0.012918880209326744, -0.008805091492831707, 0.011036030948162079, 0.008994958363473415, -0.003378053894266486, 0.004726902116090059, -0.0065187737345695496, 0.004972147289663553, 0.0010937141487374902, 0.012918880209326744, -0.022024594247341156, -0.0022052284330129623, -0.007400865200906992, -0.01506279781460762, 0.0020905169658362865, 0.008702246472239494, 0.012262256816029549, 0.005165969952940941, -0.023416955024003983, 0.01841711811721325, 0.009153180755674839, -0.0002709563123062253, 0.01405017264187336, 0.02026832289993763, -0.013709994032979012, -0.016961470246315002, 0.007563043385744095, 0.014398262836039066, 0.0019095498137176037, 0.010260739363729954, -0.002029205672442913, -0.01506279781460762, -0.008868380449712276, 0.022388506680727005, 0.004461879376322031, 0.007776644080877304, -0.00017589909839443862, 0.00696179736405611, -0.00031669254531152546, -0.005213436670601368, 0.023163797333836555, -0.013045459054410458, -0.009983849711716175, -0.0061390395276248455, -0.003890299703925848, 0.01942974328994751, -0.015252664685249329, -0.006277484353631735, -0.009129447862505913, 0.009944294579327106, -0.009256025776267052, -0.002691762987524271, 0.01541879866272211, -0.00774104380980134, 0.0005705904914066195, -0.010466429404914379, 0.006977619603276253, -0.011249631643295288, -0.0031268754974007607, 0.013599238358438015, 0.00882091373205185, -0.011273364536464214, -0.009358870796859264, 0.01661337912082672, -0.010648385621607304, 0.010545540601015091, 0.011977455578744411, -0.01025282870978117, -0.014374529011547565, -0.008892113342881203, -0.024113133549690247, 0.02235686220228672, -0.023163797333836555, -0.021059436723589897, -0.017198802903294563, 0.018448762595653534, -0.01727791503071785, -0.0011214031837880611, -0.022863175719976425, -0.010110428556799889, 0.0019115275936201215, -0.016645023599267006, -0.01680324785411358, -0.013512215577065945, -0.016518445685505867, -0.0180532056838274, 0.017720937728881836, -0.011819233186542988, -0.0060678389854729176, 0.0030042529106140137, 0.012064478360116482, 0.01124172005802393, -0.010703762993216515, 0.007835977710783482, 0.009556649252772331, 0.0008000133675523102, 0.001915483153425157, 0.027942122891545296, -0.015260576270520687, -0.015656132251024246, -0.014746352098882198, 0.003923922311514616, -0.00696179736405611, -0.015616577118635178, 0.0036648325622081757, -0.0036786769051104784, -0.018543696030974388, 0.02056894637644291, -0.002814385574311018, -0.013259059749543667, 0.005537793505936861, -0.030885064974427223, 0.025790294632315636, 0.013021725229918957, 0.014611863531172276, -0.03794179484248161, -0.00143488182220608, 0.0007312853704206645, 0.012499590404331684, 0.006791708059608936, 0.006320995278656483, 0.000613607291597873, -0.012689457274973392, 0.01219896785914898, 0.016961470246315002, 0.011067675426602364, 0.01643933542072773, 0.01611497811973095, 0.004485612735152245, -0.008053533732891083, 0.013156214728951454, 0.0018561496399343014, 0.021613216027617455, 0.014034350402653217, 0.007396909408271313, 0.025094114243984222, 0.007373176049441099, 0.0005241126054897904, -0.0051145474426448345, 0.022103706374764442, -0.011463232338428497, -0.001011636108160019, 0.001961961155757308, 0.006862908136099577, -0.021787261590361595, -0.004806013312190771, 0.009208559058606625, -0.020822102203965187, -0.007828066125512123, -0.002519696019589901, -0.03275209292769432, -0.011668921448290348, -0.004521212540566921, -0.008979136124253273, 0.02564789354801178, 0.025853583589196205, 0.010395228862762451, 0.01721462607383728, -0.004422323312610388, -0.017230447381734848, 0.0051857479847967625, 0.022752419114112854, 0.02360682189464569, -0.00825131218880415, -0.026866208761930466, 0.007428554352372885, -0.005881927441805601, 0.006601840723305941, 0.022641662508249283, -0.01895507611334324, 0.005850282963365316, -0.0056525045074522495, 0.007412731647491455, 0.00953291542828083, 0.011043941602110863, 0.0039140330627560616, -0.004343212116509676, 0.019224053248763084, -0.004837657790631056, 0.004335300996899605, -0.01506279781460762, 0.012238522991538048, -0.003455187426880002, -0.014580218121409416, 0.00408214470371604, 0.024065667763352394, -0.00869433581829071, 0.012024922296404839, -0.0056881047785282135, -0.0113524766638875, -0.026502296328544617, 0.012056566774845123, -0.005047303158789873, 0.009667404927313328, -0.0021102947648614645, -0.014722619205713272, 0.006063883658498526, 0.021423349156975746, 0.0107354074716568, 0.020363256335258484, 0.014437817968428135, -0.001132280915044248, 0.020474012941122055, -0.002519696019589901, 0.0006595907616429031, -0.01954049989581108, -0.0030240307096391916, 0.0422138087451458, 0.003890299703925848, -0.011130964383482933, 0.01716715842485428, -0.0015130041865631938, -0.008725980296730995, 0.0057751270942389965, -0.009374693036079407, 0.004024789202958345, -0.001623760093934834, 0.008041666820645332, 0.014034350402653217, 0.006356595549732447, 0.009968027472496033, -0.0003510565438773483, -0.010854074731469154, 0.02061641402542591, -0.0010071861324831843, 0.016296934336423874, 0.010632563382387161, 0.01609915681183338, 0.02355935424566269, 0.0016465046210214496, -0.014928308315575123, -0.0391126424074173, 0.01667666807770729, 0.01396314986050129, -0.0018709830474108458, -0.002246761927381158, 0.027894655242562294, 0.019746188074350357, -0.018322184681892395, 0.002929097041487694, 0.0033543205354362726, -0.0033483870793133974, 0.003890299703925848, -0.02343277633190155, 0.008797179907560349, 0.013551771640777588, 0.005399348214268684, 0.00567623833194375, 0.03987210988998413, -0.015450443141162395, 0.0056841494515538216, -0.007915088906884193, 0.012388834729790688, -0.008433268405497074, -0.006222106516361237, -0.005557571072131395, 0.0004949402646161616, -0.011787588708102703, -0.008010022342205048, -0.004125656094402075, 0.0008850580197758973, -0.0024959624279290438, 0.04237202927470207, -0.006174639333039522, 0.006119261495769024, -0.016130801290273666, -0.0030279862694442272, -0.007566999178379774, 0.01781587116420269, 0.013765371404588223, 0.005636682268232107, -0.007072553038597107, 0.004628012888133526, 0.044144123792648315, -0.006340773310512304, -0.0011481032706797123, 0.027166832238435745, 0.018021561205387115, 0.023353666067123413, -0.007709399331361055, -0.007464154157787561, 0.01181132160127163, -0.01568777672946453, 0.016154533252120018, 0.017135513946413994, -0.0002850480086635798, -0.019951878115534782, -0.0237966887652874, 0.02259419672191143, 0.0009963084012269974, 0.011067675426602364, 0.014730529859662056, -0.01716715842485428, -0.013971061445772648, -0.007855755276978016, 0.010632563382387161, 0.0006501962780021131, 0.0007040908676572144, 0.011210075579583645, -0.02605927363038063, 0.008718068711459637, 0.004129611421376467, 0.002464317949488759, 0.0007213964709080756, -0.020410723984241486, -0.0024583847261965275, 0.002644296269863844, 0.018322184681892395, -0.003890299703925848, -0.01378119457513094, 0.005438904277980328, 0.009793982841074467, 0.01225434523075819, -0.012285989709198475, -0.002747141057625413, -0.005660415627062321, 0.0017898939549922943, -0.00804957840591669, -0.021059436723589897, 0.012460035271942616, -0.004920724779367447, -0.0058977496810257435, 0.033384982496500015, -0.006930152885615826, 0.005122458562254906, 0.0001985200069611892, 0.013828661292791367, -0.015521643683314323, 0.0011283253552392125, 0.011676833033561707, -0.032910313457250595, -0.015853911638259888, 0.015679866075515747, 0.0113524766638875, -0.008631045930087566, -0.009422159753739834, 0.012183145619928837, 0.005193659104406834, 0.01631275750696659, -0.005692060571163893, 0.005466592963784933, 0.01267363503575325, -0.01840129680931568, -0.009540827013552189, -0.0019481165800243616, -0.003635165747255087, -0.014516929164528847, -0.007903221994638443, 0.017736760899424553, -0.019888589158654213, 0.002851963508874178, 0.001566404360346496, -0.0004895013989880681, 0.016660846769809723, 0.01931898668408394, 0.0006739296368323267, -0.01341728214174509, -0.022309396415948868, -0.01518937572836876, 0.01979365572333336, 0.005628771148622036, 0.010577185079455376, 0.006827307865023613, 0.012950524687767029, -0.021296771243214607, -0.012222700752317905, 0.014398262836039066, -0.023701755329966545, 0.02211952768266201, 0.012080300599336624, -0.029081325978040695, -0.0353785865008831, -0.003567920997738838, 0.019224053248763084, -0.001915483153425157, -0.008243400603532791, 0.006277484353631735, 0.015790622681379318, -0.009928472340106964, -0.006645352113991976, 0.00028282302082516253, 0.02971421740949154, -0.011170520447194576, 0.02302139811217785, -0.0119220782071352, 0.02547384984791279, -0.016819069162011147, 0.005201570224016905, -0.017024759203195572, -0.02098032459616661, -0.007654021494090557, 0.008646869100630283, 0.008496557362377644, -0.011550254188477993, -1.3280506209412124e-05, 0.0038546996656805277, 0.02205623872578144, -0.004980058409273624, -0.00326532032340765, 0.019461387768387794, -0.024002378806471825, -0.003795366268604994, -0.022309396415948868, -0.00581468315795064, 0.017467781901359558, -0.007377131842076778, -0.024888426065444946, -0.00018615885346662253, -0.016866536810994148, 0.00239905109629035, -0.02988826110959053, 0.01124172005802393, 0.01554537657648325, 0.008393712341785431, 0.0073415315710008144, -0.00995220523327589, 0.007693577092140913, 0.00917691458016634, -0.01045851781964302, 0.011613544076681137, 0.013607149012386799, -0.02278406359255314, 0.008195933885872364, -0.0013814816484227777, 0.01413719542324543, -0.03246729075908661, 0.017594359815120697, 0.001180736580863595, -0.0017127603059634566, 0.006526684854179621, 0.013108748011291027, 0.002727363258600235, 0.017262091860175133, 0.003900188719853759, -0.020157568156719208, -0.013346081599593163, 0.011194253340363503, 0.0071793533861637115, -0.0002961730642709881, 7.892591384006664e-05, -0.007120019756257534, -0.004746680147945881, -0.020363256335258484, 0.007242642343044281, 0.0005508126341737807, -0.0034986985847353935, 0.01609915681183338, -0.026818741112947464, 0.017182981595396996, -0.007657976821064949, -0.016154533252120018, -0.027957944199442863, -0.0036312101874500513, 0.006827307865023613, 0.018021561205387115, -0.022657485678792, -0.015315953642129898, 0.013385637663304806, 0.035536810755729675, 0.0016969380667433143, -0.016281113028526306, -0.006131128408014774, 0.007816199213266373, -0.0031941200140863657, 0.0016969380667433143, -0.004501434974372387, 0.015679866075515747, 0.014121373184025288, 0.023685932159423828, 0.01673995703458786, 0.02935030497610569, 0.00854402408003807, -0.006510862614959478, 0.008868380449712276, -0.014548573642969131, 0.011257542297244072, 0.0039535886608064175, -0.02463526837527752, -0.013227414339780807, 0.010284473188221455, 0.018686097115278244, -0.004362990148365498, -0.01499950885772705, -0.009430070407688618, -0.0029053636826574802, -0.023749221116304398, -0.009248115122318268, 0.028400968760252, 0.01374954916536808, 0.015537465922534466, -0.014319151639938354, -0.0028104300145059824, -0.03806837275624275, -0.014058084227144718, -0.013622971251606941, -0.020110100507736206, 0.003700432600453496, 0.01605168916285038, 0.012151500210165977, 0.029271192848682404, -0.013488481752574444, 0.009145270101726055, -0.006044105626642704, -0.0013696149690076709, 0.00473876902833581, 0.011099319905042648, 0.0147700859233737, -0.007551176473498344, -0.011399943381547928, -0.008536112494766712, 0.007305931765586138, 0.017230447381734848, 0.016866536810994148, 0.0040386333130300045, 0.011645188555121422, 0.021565748378634453, 0.0009542804327793419, 0.011795499362051487, -0.0015733266482129693, 0.014793818816542625, 0.009722783230245113, -0.0022882951889187098, -0.016724135726690292, -0.009010780602693558, 0.0030616086442023516, -0.019714543595910072, -0.004881169181317091, -0.015608665533363819, -0.010221184231340885, 0.01960378885269165, -0.02050565741956234, -0.00836997851729393, 0.011929988861083984, -0.006123217288404703, -0.04129611700773239, 0.007958600297570229, 0.005612948909401894, -0.0030754529871046543, 0.007776644080877304, -0.0007436465239152312, -0.011289186775684357, 0.011012297123670578, -0.012230612337589264, 0.01060882955789566, 0.004054456017911434, -0.029793327674269676, -0.005624815821647644, 0.007942778058350086, 0.02031579054892063, -0.011036030948162079, -0.007578865624964237, -0.003793388372287154, -0.0075828214175999165, 0.00753139890730381, 0.0056525045074522495, 0.0031782977748662233, -0.00645548477768898, -0.005854238756000996, 0.0006675018812529743, -0.014247951097786427, -0.0012776480289176106, 0.018432941287755966, 0.0028302078135311604, 0.014801730401813984, -0.01829054020345211, 0.008836735971271992, -0.015695689246058464, -0.014145106077194214, 0.013971061445772648, -0.003370142774656415, -0.006819396745413542, 0.0030912752263247967, 0.009105714038014412, 0.0191924087703228, -0.0025632071774452925, -0.01141576562076807, 8.584815805079415e-05, -0.003603521268814802, -0.009564559906721115, -0.00911362562328577, -0.011083497665822506, 0.0019085608655586839, 0.020347435027360916, 0.0035461655352264643, 0.01840129680931568, 0.005877972114831209, 0.00624583987519145, 0.0009300525998696685, -0.021597392857074738, -6.755366484867409e-05, -0.016470979899168015, -0.007147708907723427, 0.0028658080846071243, 0.01231763418763876, -0.0050631253980100155, 0.017420316115021706, 0.008472823537886143, -0.01882849633693695, -0.005252992268651724, 0.015577021054923534, 0.02917625941336155, -0.0033009203616529703, 0.03096417523920536, -0.008409534581005573, -0.0030754529871046543, -0.0192398764193058, 0.010648385621607304, 0.01751524955034256, -0.004715035203844309, 0.015221020206809044, -0.003971389029175043, 0.009145270101726055, 0.008195933885872364, 0.007994200102984905, 0.004802057985216379, 0.002541451482102275, -0.05733989551663399, -0.008923758752644062, -0.000962686026468873, -0.004014899954199791, -0.020996147766709328, -0.008710158057510853, 0.018258895725011826, -0.0030932531226426363, 0.004216634202748537, 0.003132808720692992, 0.012539146468043327, -0.012032833881676197, -0.007915088906884193, -0.008085178211331367, -0.007543265353888273, -0.012183145619928837, 0.006534595973789692, 0.014667240902781487, 0.005434948485344648, 0.02067970298230648, -0.0024128956720232964, -0.006368462461978197, -0.009699049405753613, -0.011020208708941936, 0.00920064840465784, -0.011431587859988213, 0.012349278666079044, 0.001529815373942256, -0.007507665548473597, -0.011083497665822506, 0.004260145127773285, 0.005850282963365316, 0.004746680147945881, 0.007721266243606806, -0.005419126246124506, -0.005612948909401894, 0.0026838518679142, -0.008733890950679779, -0.005707882810384035, 0.006502951495349407, 0.005648549180477858, -0.006914330646395683, -0.008955403231084347, -0.007808288559317589, -0.00487325806170702, 0.01174803264439106, 0.00801397766917944, 0.00953291542828083, 0.016755780205130577, 0.011225897818803787, -0.010798696428537369, -0.015735244378447533, -0.013409370556473732, 0.01312457025051117, 0.011004386469721794, -4.3634845496853814e-05, 0.024477045983076096, -0.02935030497610569, 0.014928308315575123, 0.012396745383739471, 0.017056403681635857, -0.0008267133962363005, -0.006542507093399763, 0.00875762477517128, 0.007578865624964237, 0.002058872487396002, -0.0029983194544911385, 0.005387481767684221, 0.0073019759729504585, 0.022673306986689568, -0.029192082583904266, -0.009058247320353985, 0.0029389860574156046, 0.028859814628958702, -9.314123599324375e-05, -0.006823352538049221, 0.0022882951889187098, -0.00816428940743208, -0.0056010824628174305, -0.006514818407595158, -0.0029310749378055334, -0.012365100905299187, 0.026280784979462624, -0.007535354234278202, -0.010070872493088245, -0.0013280814746394753, -9.06690038391389e-05, 0.014287506230175495, -0.007345487363636494, 0.0008281967602670193, 0.0010235029039904475, -0.009762338362634182, -0.01449319627135992, 0.005450770724564791, -0.011107231490314007, 0.0031070976983755827, -0.009097803384065628, -0.01708804816007614, -0.017246270552277565, 0.004540990572422743, -0.025363093242049217, 0.01082243025302887, -0.024761846289038658, 0.00801397766917944, 0.017372848466038704, -0.007772688288241625, -0.006878730375319719, 0.00480996910482645, -0.002822296693921089, 0.037340547889471054, 0.023353666067123413, 0.013907772488892078, -0.0029468971770256758, 0.006748196668922901, 0.016296934336423874, 0.01955632120370865, -0.010561362840235233, 0.002339717699214816, -0.01040314044803381, 0.018211428076028824, 0.0003033425018656999, -0.001133269863203168, -0.009287670254707336, -0.01656591333448887, -0.008275045081973076, 0.0007911132997833192, 0.016581734642386436, 0.0016662824200466275, -0.010260739363729954, 0.015956755727529526, -0.0039140330627560616, 0.029128791764378548, 0.01685071364045143, 0.02444540150463581, 0.01740449294447899, -0.006459440104663372, -0.012895147316157818, 0.014928308315575123, -0.0018195606535300612, -0.02289482019841671, 0.0222461074590683, -0.027340875938534737, 0.0361064113676548, 0.0023159843403846025, -0.018195606768131256, -0.008377890102565289, -0.01846458576619625, 0.008805091492831707, 0.0014615819090977311, 0.0039140330627560616, -0.005751393735408783, 0.007084419950842857, 0.005260903388261795, 0.019825300201773643, -0.030774308368563652, 0.020363256335258484, -0.005181792192161083, -0.007535354234278202, -0.002972608432173729, -0.006910374853760004, 0.005581304430961609, -0.01067211851477623, 0.004256189800798893, -9.542804764350876e-05, 0.009398425929248333, 0.007167486939579248, -0.009374693036079407, 0.02063223533332348, -0.0192398764193058, -0.010434784926474094, -0.010585096664726734, 0.01751524955034256, -0.013512215577065945, -0.00032064810511656106, -0.0003040841838810593, -0.024888426065444946, 0.018812675029039383, 0.0044895680621266365, -0.01411346159875393, -0.027942122891545296, -0.003785477252677083, 0.004062367137521505, -0.010331939905881882, -0.02080628089606762, -0.007570954505354166, -0.006550418213009834, -0.004040611442178488, 0.035726677626371384, 0.009271848015487194, 0.004651746246963739, 0.007721266243606806, 0.022087883204221725, 0.009999672882258892, 0.016945647075772285, 0.004414412193000317, -0.018448762595653534, 0.010450607165694237, -0.006938064005225897, 0.03800508379936218, -0.011566076427698135, 0.01817978359758854, 0.01425586175173521, -0.005790949333459139, -0.004556812811642885, 0.0008801135700196028, 0.019224053248763084, 0.004521212540566921, 0.0034848542418330908, 0.006368462461978197, -0.01159772090613842, 0.012380923144519329, -0.009849361144006252, 0.03272044658660889, 0.012119855731725693, -0.008828824386000633, 0.008836735971271992, -0.012096122838556767, 0.024128956720232964, -0.0052688149735331535, 0.013353993184864521, 0.028432613238692284, -0.017673471942543983, 0.0070962863974273205, 0.00753139890730381, 0.007737088482826948, -0.008852558210492134, -0.01624946855008602, -0.011692655272781849, 0.0056010824628174305, 0.0014289484824985266, -0.004631968680769205, -0.017720937728881836, -0.003923922311514616, -0.015268486924469471, 0.021834727376699448, 0.010964830406010151, 0.0038764553610235453, 0.008219667710363865, 0.006091572809964418, 0.0024089401122182608, 0.010450607165694237, 0.00020556585513986647, -0.014097639359533787, 0.009311404079198837, -0.002276428509503603, -1.9716027964022942e-05, -0.002849985845386982, 0.001841316232457757, 0.010767051950097084, 0.0034314540680497885, -0.010537629947066307, -0.008797179907560349, -0.003324653720483184, 0.02373339980840683, 0.002228961791843176, 0.013884038664400578, -0.004481656942516565, -0.008282956667244434, 0.023100508376955986, 0.013116658665239811, -0.030995819717645645, 0.002047005807980895, -0.001189636648632586, 0.0057237050496041775, 0.0021201837807893753, -0.02246761880815029, 0.006439662538468838, -0.03107493184506893, -0.01183505542576313, -0.01055345218628645, 0.007507665548473597, 0.0005394403706304729, 0.005165969952940941, -0.0031110532581806183, -0.0002495715452823788, -0.012412567622959614, 0.006075750105082989, -0.012278079055249691, 0.002699674107134342, 0.007120019756257534, -0.026613052934408188, 0.006957841571420431, -0.00858357921242714, -0.003991166595369577, 0.0009587304666638374, 0.01082243025302887, -0.01240465696901083, -0.004635924007743597, 0.0038942552637308836, 0.007824110798537731, -0.0018620829796418548, 0.012072389014065266, 0.004090055823326111, -0.007468109950423241, 0.015023241750895977, -0.01425586175173521, 0.012863502837717533, 0.00103833619505167, -0.030331285670399666, 0.0006729407468810678, -0.015600754879415035, -0.004121700301766396, 0.011969544924795628, 0.009161092340946198, 0.008029799908399582, 0.0034255206119269133, -0.0176418274641037, -0.01616244576871395, 0.0028282301500439644, 0.016423512250185013, -0.022008772939443588, -0.006257706321775913, 0.01930316537618637, 0.007614465896040201, 0.0005725682713091373, 0.019856944680213928, -0.01312457025051117, -0.0038467885460704565, -0.001274681300856173, -0.014967864379286766, 0.031597066670656204, -0.013290704227983952, -0.014572307467460632, 0.01598840020596981, 0.008314601145684719, 0.001312259235419333, -0.009817716665565968, -0.010450607165694237, -0.015070708468556404, 0.004236411768943071, -0.006502951495349407, 0.0022962065413594246, 0.02218281850218773, 0.01082243025302887, -0.0059333499521017075, 6.464878970291466e-05, -0.013425192795693874, -0.002699674107134342, -0.017531070858240128, -0.011146786622703075, 0.005620860029011965, -0.006843130104243755, -0.028416790068149567, -0.00804957840591669, -0.0073415315710008144, -0.012325545772910118, 0.009888916276395321, -0.0010165806161239743, 0.013915683142840862, -0.01261825766414404, -0.022641662508249283, -0.0020806279499083757, -0.003680654801428318, 0.011344565078616142, -0.0027590077370405197, 0.0037498772144317627, 0.0021478726994246244, 0.023765044286847115, 0.0008029800374060869, -0.000745624303817749, -7.361062307609245e-05, -0.011977455578744411, 0.0017127603059634566, -0.003395854029804468, -0.01548208761960268, 0.008409534581005573, 0.006779841147363186, -0.005292548332363367, 0.010292384773492813, -0.016035867854952812, 0.002909319242462516, -0.0024524512700736523, -0.014334973879158497, 0.005972905550152063, -0.005003791768103838, 0.00010871627455344424, -0.006427795626223087, -0.014303328469395638, -0.005264859180897474, 0.0027985633350908756, 0.05110592022538185, 0.03743548318743706, 0.02139170467853546, -0.007001352962106466, 0.002670007525011897, -0.03173946589231491, 0.006870819255709648, 0.015181465074419975, 0.0009419192792847753, -0.002191383857280016, 0.013085014186799526, -0.005438904277980328, 0.03272044658660889, 0.01506279781460762, -0.01482546329498291, -0.0039852336049079895, -0.0004991430905647576, -0.002549362601712346, -0.009058247320353985, 0.005387481767684221, -0.001934272120706737, 0.0028737192042171955, -0.000566634931601584, 0.005193659104406834, -0.0014052150072529912, 0.010838252492249012, -0.008939580991864204, -0.024730201810598373, 0.002086561406031251, -0.011953722685575485, 0.03664436936378479, -0.0005058180540800095, -0.0315495990216732, 0.018496230244636536, -0.0008865413838066161, 0.006926197092980146, 0.01374954916536808, 0.00730988709256053, -0.00926393736153841, -0.02403402328491211, -0.015236842446029186, -0.02362264320254326, 0.0034195873886346817, -0.002145894803106785, -0.02485678158700466, 0.0003058147558476776, 0.014896663837134838, 0.020790457725524902, 0.011945811100304127, 0.01966707780957222, 0.016534268856048584, 0.026818741112947464, -0.005577349103987217, -0.018733562901616096, 0.01219896785914898, -0.009857271797955036, 0.008385801687836647, -0.01126545388251543, -0.01141576562076807, 0.02235686220228672, 0.007452287711203098, 0.0010739363497123122, -0.0003236148040741682, 0.0059333499521017075, -0.010237006470561028, -0.00488512497395277, 0.008148467168211937, 0.02588522806763649, -0.0165026243776083, -0.001916471985168755, 0.00687477458268404, 0.008433268405497074, -0.008702246472239494, -0.011581898666918278, -0.02158157154917717, 0.0041612558998167515, -0.037340547889471054, -0.005387481767684221, -0.0049444581381976604, -0.00039036499219946563, -0.016945647075772285, 0.002626496134325862, 0.005264859180897474, -0.01210403349250555, -0.0013992816675454378, -0.0004665096348617226, 0.0035916545893996954, 0.0011352476431056857, 0.009074069559574127, -3.408586053410545e-05, -0.007570954505354166, -0.02128094807267189, -0.017372848466038704, 0.011431587859988213, 0.006696774158626795, -0.010727496817708015, 0.006953886244446039, -0.010624651797115803, 0.01025282870978117, -0.009809805080294609, -0.011827143840491772, 0.010237006470561028, 0.0013152258470654488, 0.002199294976890087, 0.0046121906489133835, -0.03480898588895798, -0.007100242190063, -0.011763854883611202, 0.007040908560156822, 0.011463232338428497, -0.007448331918567419, 0.005351881496608257, -0.014959952794015408, 0.009975939057767391, 0.002211161656305194, 0.006063883658498526, -0.0010462473146617413, 0.004248278681188822, 0.003692521480843425, -0.000952797126956284, -0.006720507517457008, 0.018670273944735527, 0.020663879811763763, 0.012958436273038387, -0.009343048557639122, 0.0017622049199417233, 0.009548737667500973, 0.010418962687253952, 0.0031782977748662233, -0.000660579651594162, -0.006839174777269363, -0.0069736638106405735, -0.012863502837717533, 0.009936382994055748, -0.0012657813495025039, -0.0012628146214410663, -0.006823352538049221, -0.0165026243776083, 0.023147976025938988, 0.007139797788113356, -0.030204705893993378, 0.011850877664983273, 0.02061641402542591, -0.010941097512841225, 0.010466429404914379, 0.013077103532850742, -0.005209481343626976, -0.008219667710363865, 0.01609124429523945, 0.00501961400732398, -0.0033365203998982906, 0.012697368860244751, -0.01611497811973095, 0.021265126764774323, -0.003294986905530095, 0.009121536277234554, -0.02354353293776512, 0.007816199213266373, -0.022878997027873993, 0.004893036093562841, 0.006858952343463898, 0.014366618357598782, 0.004703168757259846, 0.02941359393298626, 0.010854074731469154, -0.021613216027617455, -0.009627848863601685, 0.01996769942343235, -0.027514921501278877, -0.015766888856887817, 0.002499918220564723, 0.001028447295539081, -0.025853583589196205, 0.02547384984791279, -0.0031763201113790274, 0.008702246472239494, -0.0035046320408582687, 0.0002028464077739045, -0.02194548398256302, -0.01655009016394615, -0.016233645379543304, 0.012293901294469833, 0.005102680996060371, 0.006661174353212118, -0.02026832289993763, 0.008710158057510853, -4.59834627690725e-05, 0.010300295427441597, 0.017467781901359558, 0.012990080751478672, 0.008053533732891083, 0.019050009548664093, -0.00968322716653347, 0.002727363258600235, -0.015790622681379318, 0.009675315581262112, 0.012547057121992111, -0.0017720938194543123, -0.028068700805306435, 0.02427135594189167, 0.017499426379799843, 0.014793818816542625, 0.008480735123157501, 0.016629202291369438], "b051c646-22dc-44c8-823f-dea41902b9e0": [-0.013622768223285675, -0.02745227701961994, -0.010816994123160839, 0.028574585914611816, 0.003920699004083872, -0.012042674235999584, 0.016184881329536438, 0.032310694456100464, -0.01216819602996111, 0.027275070548057556, 0.03245836868882179, -0.01819322444498539, -0.0146195562556386, -0.011924536898732185, 0.01284748874604702, 0.02913574129343033, 0.006999666336923838, -0.000752667139749974, -0.005467566195875406, -0.020954696461558342, 0.06574369966983795, -0.04317937418818474, -0.051360420882701874, 0.035116467624902725, -0.009259051643311977, 0.010935132391750813, -0.01645069196820259, 0.012906556949019432, -0.010233689099550247, 0.008557608351111412, 0.021486317738890648, 0.012330635450780392, -0.03293091803789139, 0.0010687781032174826, 0.011614425107836723, -0.00119614542927593, 0.003640121780335903, 0.01247092429548502, -0.0419979952275753, -0.0015440982533618808, -0.016878942027688026, 0.03594343364238739, 0.007804479915648699, -0.005146379116922617, -0.023908142000436783, -0.023612797260284424, -0.024262554943561554, -0.013770440593361855, -0.026654846966266632, -0.0028463832568377256, 0.008897255174815655, 0.03378741815686226, 0.017676372081041336, -0.008904638700187206, 0.05830101668834686, -0.026270898059010506, 0.01775020733475685, 0.0464872345328331, 0.009089228697121143, -0.07862072438001633, 0.0057592191733419895, -0.013541548512876034, 0.01399194821715355, 0.011237860657274723, -0.0002780392242129892, -0.01526931393891573, -0.0032654032111167908, -0.01254476048052311, -0.02823494002223015, 0.010743158869445324, 0.026374269276857376, -0.014649090357124805, -0.035766225308179855, 0.0004522463714238256, 0.03293091803789139, -0.02504521794617176, 0.01915309578180313, 0.021279575303196907, 0.033610209822654724, -0.011791631579399109, -0.02894376777112484, 0.013231436721980572, 0.03759736195206642, 0.0006474506808444858, 0.08511830121278763, 0.028751792386174202, 0.012286333367228508, -0.03969430923461914, 0.007619889918714762, -0.03307859227061272, -0.022283747792243958, 0.010898214764893055, -0.008011220954358578, -0.014804146252572536, -0.04134823754429817, 0.027865760028362274, 0.017868345603346825, -0.015239779837429523, -0.017425328493118286, -0.009591314941644669, -0.03414183109998703, -0.015963373705744743, 0.0018560559256002307, -0.010366594418883324, 0.006855685729533434, 0.001816369011066854, 0.01913832686841488, 0.004389558453112841, -0.0056890747509896755, 0.04518771916627884, 0.022918738424777985, -0.04834790527820587, 0.01934506930410862, -0.0005067005404271185, -0.05809427425265312, -0.016317786648869514, -0.03564808890223503, -0.0254882350564003, 0.01069885678589344, -0.033314865082502365, 0.014678624458611012, 0.024868011474609375, 0.014641706831753254, 0.003202642546966672, -0.017720673233270645, 0.015040421858429909, -0.010314908809959888, 0.016568830236792564, 0.01964041404426098, 0.020157266408205032, 0.000584228488150984, -0.023568496108055115, 0.001745301764458418, -0.013763056136667728, -0.007966919802129269, 0.027378441765904427, -0.009081845171749592, 0.037774570286273956, -0.008616677485406399, 0.051567159593105316, -0.041968461126089096, -0.02728983759880066, -0.023420823737978935, 0.002277845051139593, 0.0020840251818299294, 0.010876063257455826, -0.0519806444644928, 0.046723511070013046, -0.024572666734457016, 0.007966919802129269, -0.0869494378566742, -0.019212163984775543, -0.04462656378746033, 0.007767561823129654, 0.057208240032196045, -0.02154538594186306, -0.02265292778611183, 0.014708159491419792, 0.01107542123645544, 0.046221423894166946, 0.022933505475521088, -0.06137260049581528, -0.01209435984492302, 0.024882778525352478, 0.026359502226114273, 0.028633655980229378, 0.035323210060596466, 0.024454530328512192, -0.0254882350564003, 0.00794476829469204, 0.0197437833994627, -0.018813448026776314, 0.02909144014120102, 0.00704765971750021, -0.015254546888172626, 0.003645659424364567, 0.019817620515823364, 0.014538335613906384, 0.053221091628074646, -0.04873185232281685, -0.04707792401313782, -0.006693246308714151, 0.0024735108017921448, 0.009465793147683144, -0.012869639322161674, 0.0380108468234539, 0.0008292721468023956, 0.025606373324990273, 0.003418613225221634, -0.009103995747864246, -0.010108167305588722, -0.010957282967865467, -0.021663524210453033, 0.026566242799162865, -0.007701109629124403, -0.04040313512086868, -0.008373018354177475, -0.015357917174696922, -0.011784248054027557, 0.039664775133132935, 0.008720047771930695, -0.02764425054192543, -0.04755047336220741, 0.039960119873285294, -0.02879609540104866, 0.020821791142225266, -0.005700150039047003, -0.008535457774996758, 0.026713915169239044, -0.0369771383702755, 0.01825229451060295, -0.03931036219000816, 0.008432087488472462, -0.01603720895946026, -0.004179125651717186, 0.015328383073210716, -0.0019271232886239886, 0.04628049209713936, 0.0006811384228058159, -0.034259967505931854, -0.0020138807594776154, 0.013504629954695702, -0.016716502606868744, -0.002855612663552165, -0.05407758802175522, 0.02754088118672371, 0.012374937534332275, 0.040019188076257706, -0.013290504924952984, 0.0002570420620031655, 0.025783579796552658, -0.02978549897670746, 0.008889871649444103, -0.009332887828350067, 0.0034739903640002012, 0.036563657224178314, 0.03133605793118477, -0.005659540183842182, 0.010255839675664902, -0.009761137887835503, -0.00031472655246034265, 0.02489754743874073, -0.005670615471899509, -0.022268980741500854, 0.01114925742149353, 0.03358067572116852, -0.009008008986711502, 0.04778674989938736, 0.0019400445744395256, -0.005866281222552061, -0.026182295754551888, 0.036622725427150726, -0.0056853829883039, 0.0020028052385896444, -0.006863069254904985, 0.0439768061041832, 0.04123010113835335, -0.01760253682732582, -0.000203049392439425, -0.0006294531049206853, 0.03558902069926262, 0.0005726915551349521, -0.014789379201829433, 0.016878942027688026, 0.0269944928586483, -0.026507174596190453, 0.03544134646654129, -0.010728390887379646, 0.0018828215543180704, 0.04170265048742294, 0.004500312730669975, 0.005301435012370348, -0.009052311070263386, 0.019477974623441696, 0.019522275775671005, -0.015682796016335487, -0.0013761210720986128, -0.0011038503143936396, 0.016716502606868744, 0.020083431154489517, -0.012677664868533611, -0.0036013578064739704, 0.00497286394238472, 0.02739320881664753, 0.05738544836640358, 0.015919072553515434, -0.025783579796552658, -0.00044001726200804114, -0.03304905816912651, -0.006427436135709286, 0.0028722258284687996, -0.00640897685661912, 0.03334440290927887, 0.011540588922798634, 0.03189721331000328, -0.01100158505141735, -0.02129434235394001, 0.027171699330210686, 0.00047232056385837495, 0.015712330117821693, -0.002722707577049732, -0.023908142000436783, -0.005164837930351496, 0.008786500431597233, 0.02129434235394001, -0.005626313854008913, 0.008328716270625591, 0.01754346676170826, -0.026270898059010506, 0.054018519818782806, 0.03668179363012314, -0.0020360315684229136, -0.033610209822654724, 0.007590355351567268, -0.014885365962982178, 0.014804146252572536, -0.02789529412984848, -0.011326463893055916, -0.0006889834767207503, -0.03573669120669365, -0.002388599095866084, -0.004227119032293558, -0.05313248559832573, 0.031660936772823334, 0.06662973016500473, -0.046310026198625565, 0.02604939043521881, 0.003990843426436186, -0.03393508866429329, -0.023878607898950577, -0.06208142638206482, -0.012662897817790508, -0.03617971017956734, -0.010366594418883324, -0.03564808890223503, -0.03263557329773903, -0.02619706280529499, -0.022830134257674217, 0.0025713436771184206, -0.015284080989658833, -0.0025842648465186357, -0.01890205219388008, 0.02079225704073906, -0.02034923993051052, 0.027585182338953018, -0.005807212553918362, 0.0202458705753088, 0.005246057640761137, -0.04137777164578438, 0.019123559817671776, 0.0009580239420756698, 0.0015477901324629784, 0.0219884030520916, 0.0030900423880666494, 0.05753311887383461, -0.024587435647845268, -0.037272483110427856, 0.017779743298888206, -0.003512754337862134, -0.006272380240261555, 0.006818767637014389, -0.024705572053790092, -0.029667360708117485, 0.004887952469289303, -0.006652636453509331, 0.03653412312269211, -0.00442278478294611, -0.02029017172753811, -0.01032229233533144, 0.011976221576333046, -0.020629817619919777, -0.01884298399090767, 0.003547826549038291, -0.014242991805076599, -0.022667694836854935, -0.0039797681383788586, 0.05673569068312645, -0.0008445008425042033, 0.011895001865923405, 0.02689112164080143, -0.013977181166410446, 0.01289917342364788, 0.04580794274806976, 0.0024218254256993532, 0.03369881585240364, 0.01769113913178444, 0.023273151367902756, -0.0016797721618786454, -0.01307638082653284, -0.01069885678589344, -0.01603720895946026, 0.007560820784419775, -0.04663490504026413, 0.022918738424777985, -0.05390038341283798, -0.007453758269548416, 0.0011149257188662887, -0.021633988246321678, 0.004814116284251213, -0.012264182791113853, 0.00363089214079082, -0.011407683603465557, -0.026728682219982147, -0.0028777634724974632, 0.015579425729811192, -0.014501417987048626, -0.006250229198485613, -0.02460220269858837, 0.04409494251012802, 0.024484064429998398, 0.041259635239839554, -0.002181858057156205, 0.009207366965711117, 0.04084615409374237, 0.03493926301598549, 0.007649424020200968, -0.01930076628923416, 0.033373937010765076, -0.03207441791892052, -0.0035995119251310825, 0.02393767610192299, 0.013054229319095612, 0.018473802134394646, 0.014759844169020653, 0.01704138144850731, 0.04678257927298546, -0.024616969749331474, 0.025325795635581017, 0.010344442911446095, -0.024572666734457016, 0.002333221957087517, 0.03145419433712959, -0.009310737252235413, 0.012862255796790123, -0.03183814510703087, 0.005105769261717796, 0.004467086400836706, -0.02129434235394001, -0.009864508174359798, 0.009229517541825771, 0.004260345362126827, -0.018222760409116745, -0.03907408565282822, -0.023332219570875168, -0.011437217704951763, -0.047609541565179825, -0.022874435409903526, 0.014139620587229729, 0.014058400876820087, -0.038719672709703445, -0.016997080296278, -0.014722926542162895, -0.05540664121508598, -0.0010364748304709792, -0.013246203772723675, 0.004522463772445917, -0.0015385606093332171, -0.012197730131447315, 0.028751792386174202, -0.056322209537029266, -0.016229184344410896, 0.009399340488016605, 0.03573669120669365, 0.010794843547046185, 0.052659936249256134, -0.02110236883163452, -0.00872743222862482, 0.01202052365988493, -0.00722117442637682, 0.010329675860702991, -0.012072209268808365, -0.0022612318862229586, -0.005984419025480747, 0.016421157866716385, -0.002067412016913295, -0.008291798643767834, -0.03555948659777641, 0.0012533684493973851, 0.010868679732084274, -0.022032704204320908, -0.011415067128837109, 0.0023830614518374205, -0.001027245307341218, -0.007856165058910847, -0.009177831932902336, 0.00952486228197813, -0.005113152787089348, -0.03845386207103729, 0.0011158486595377326, 0.0016087049152702093, -0.0052534411661326885, -0.00043263364932499826, 0.007642040494829416, -0.009738987311720848, -0.0071584139950573444, -0.02634473517537117, -0.009052311070263386, -0.01995052583515644, -0.039871517568826675, -0.010026947595179081, 0.002006497234106064, -0.018724845722317696, -0.02793959528207779, 0.020334472879767418, 0.005995494779199362, 0.024026280269026756, -0.028471216559410095, 0.045571666210889816, -0.023657100275158882, -0.012662897817790508, -0.05528850108385086, 0.029017603024840355, -0.03104071319103241, 0.012086976319551468, 0.01989145576953888, 0.0019068183610215783, -0.03405322879552841, -0.009916193783283234, 0.0419979952275753, -0.010492115281522274, -0.01004909910261631, -0.0075534372590482235, -0.0039465418085455894, -0.006412668619304895, -0.006582492031157017, -0.004995014984160662, -0.005290359258651733, -0.026654846966266632, 0.016421157866716385, -0.006512347608804703, 0.0015007195761427283, 0.023214083164930344, -0.011400300078094006, -0.019433671608567238, -0.000585151428822428, -0.007538669742643833, -0.01829659566283226, 0.018326129764318466, -0.0021652448922395706, -0.007272860035300255, -0.026566242799162865, -0.0034112296998500824, 0.0074832928366959095, -0.005943809170275927, 0.009547012858092785, 0.04167311638593674, 0.00046793653746135533, 0.0109942015260458, 0.013475095853209496, 0.04382913187146187, -0.0003128806420136243, 0.005474949721246958, -0.02954922430217266, 0.0060693309642374516, -0.00203049392439425, -0.03005130961537361, 0.004385866690427065, -0.01915309578180313, -0.0008140434511005878, -0.02858935296535492, -0.012788419611752033, -0.001971425022929907, 0.009325504302978516, 0.01603720895946026, 0.01869531162083149, 0.007376230321824551, -0.03009561076760292, 0.012212497182190418, -0.0006225309334695339, 0.012862255796790123, 0.026064157485961914, 0.025960786268115044, 0.029460620135068893, 0.020807024091482162, -0.0021338644437491894, 0.033314865082502365, -0.022520022466778755, 0.02189979888498783, -0.017336726188659668, -0.01574186608195305, 0.009894043207168579, 0.0013650456676259637, 0.00033526221523061395, -0.011858084239065647, -0.013608000241219997, 0.0047033620066940784, -0.026861587539315224, 0.0027319372165948153, -0.0006622179062105715, 0.00036248931428417563, 0.008934172801673412, 0.03972384333610535, -0.03242883458733559, 0.02544393390417099, -0.011363382451236248, 0.023022107779979706, 0.020762722939252853, 0.027304604649543762, 0.007678958587348461, 0.00561154680326581, 0.02034923993051052, 0.005286667495965958, 0.0010586256394162774, -0.025458700954914093, -0.005157454404979944, 0.016480226069688797, -0.010794843547046185, 0.010868679732084274, -0.00026004164828918874, 6.679863145109266e-05, -0.013785207644104958, -0.015564658679068089, 0.03213348984718323, -0.02009819820523262, 0.03933989629149437, -0.012581678107380867, 0.0071584139950573444, 0.010558567941188812, -0.010218922048807144, 0.015239779837429523, 0.013342190533876419, -0.03845386207103729, 0.03768596798181534, -0.012840105220675468, 0.03278324753046036, 0.027880527079105377, -0.005984419025480747, 0.023568496108055115, -0.023022107779979706, -0.004474469926208258, -0.010359210893511772, -0.006464354228228331, 0.012035290710628033, -0.018783913925290108, 0.01814892329275608, -0.00817366037517786, -0.020364006981253624, 0.019861921668052673, -0.017218587920069695, -0.019817620515823364, -0.0038727056235074997, 0.00797430332750082, 0.008181044831871986, 0.07838444411754608, -0.020954696461558342, 0.02584264986217022, -0.008151509799063206, 0.030154678970575333, 0.037863172590732574, 0.029460620135068893, -0.030568161979317665, 0.005338353104889393, -0.0009003394516184926, 0.02424778789281845, 0.007516519166529179, -0.010536417365074158, 0.007619889918714762, 0.0277476217597723, -0.007930001243948936, 0.019404137507081032, 0.04474470019340515, -0.021885031834244728, 0.013371724635362625, 0.0097463708370924, 0.01402148324996233, -0.010373977944254875, 0.012426622211933136, 0.0009151066769845784, 0.022756299003958702, 0.016657432541251183, -0.004880568943917751, -0.022062238305807114, 0.010314908809959888, -0.0034056920558214188, -0.0019640412647277117, -0.009731603786349297, 0.01749916560947895, -0.010366594418883324, -0.003165724454447627, -0.00033549295039847493, -0.008144126273691654, -0.00869789719581604, -0.014575254172086716, 0.022623393684625626, -0.03552995249629021, 0.005135303363204002, -0.006194852292537689, 0.013984564691781998, -0.015254546888172626, -0.0056336973793804646, -0.01869531162083149, -0.0027633176650851965, -0.001816369011066854, 0.023686634376645088, -0.01134861446917057, -0.00034541470813564956, 0.0016216262010857463, -0.02093992941081524, 0.03228116035461426, 0.004884260706603527, -0.05260086804628372, -0.017321959137916565, 0.022475721314549446, 0.005932733882218599, 0.026935424655675888, 0.008889871649444103, -0.01825229451060295, -0.008439471013844013, 0.005286667495965958, -0.0060656387358903885, 0.008823418989777565, 0.027910061180591583, -0.01879868097603321, 0.031129317358136177, 0.008129359222948551, 0.031011179089546204, -0.015077339485287666, 0.009207366965711117, -0.0001982038957066834, 0.043415650725364685, -0.0071214959025382996, 0.017632070928812027, -0.016864174976944923, -0.023834306746721268, -0.006301914807409048, 0.0219884030520916, -0.005024549551308155, -0.0018782068509608507, -0.015328383073210716, -0.0023590647615492344, 0.037567827850580215, 0.006512347608804703, 0.004839959088712931, 0.005430648103356361, -0.002554730512201786, -0.02689112164080143, -0.017410561442375183, 0.014427581802010536, 0.009332887828350067, -0.0287370253354311, 0.0029460620135068893, 0.005028241313993931, 0.03809944912791252, -0.01980285346508026, -0.013955030590295792, -0.010558567941188812, 0.03074536845088005, 0.012662897817790508, -0.019463207572698593, 0.004766122903674841, 0.056558482348918915, -0.020585516467690468, 0.024173952639102936, 0.017321959137916565, -0.04102335870265961, 0.006279763765633106, 0.039162687957286835, 0.011333847418427467, -0.007789712864905596, 0.029061904177069664, -0.01152582187205553, -0.003795177675783634, 0.005995494779199362, -0.03045002371072769, 0.008313949219882488, 0.02483847737312317, 0.0029405243694782257, 0.0375087596476078, 0.04545352980494499, 0.009384573437273502, 0.055613379925489426, 0.031720004975795746, 0.0007498983177356422, 0.02808726765215397, -0.0315132662653923, -0.007486984599381685, 0.005050391890108585, -0.0375087596476078, -0.021028533577919006, 0.0013936571776866913, -0.02119097299873829, -0.05310295149683952, 0.013061612844467163, -0.01100158505141735, 0.0229925736784935, -0.013556315563619137, 0.01693801023066044, -0.003082658862695098, -0.008793883956968784, -0.021161437034606934, 0.009170448407530785, -0.0034426101483404636, 0.0014158079866319895, 0.02104330062866211, 0.03682946786284447, -0.01754346676170826, 0.0023092252667993307, 0.008934172801673412, -0.00869789719581604, -0.010041715577244759, 0.0030365113634616137, -0.003605049569159746, 0.031720004975795746, 0.037863172590732574, -0.005334661342203617, -0.02789529412984848, -0.004038836807012558, 0.0033521607983857393, -0.03242883458733559, 0.023258384317159653, -0.009864508174359798, 0.0006751391920261085, -0.017528699710965157, 0.02209177240729332, -0.023834306746721268, -0.015786167234182358, 0.013711371459066868, 0.02864842303097248, 0.03573669120669365, 0.020821791142225266, -0.016686968505382538, -0.004795657470822334, 0.003575515002012253, 0.022815367206931114, -0.003320780349895358, -0.011060654185712337, 0.02089562825858593, 0.00023512195912189782, 0.012330635450780392, -0.011104955337941647, -0.006372058764100075, -0.000286807247903198, -0.0028851472306996584, 0.03984197974205017, -0.004950713366270065, 0.02324361726641655, -0.037863172590732574, -0.036415982991456985, -0.03508693352341652, 0.011968838050961494, -0.014678624458611012, -0.04217520356178284, -0.011164024472236633, -0.012072209268808365, -0.016007674857974052, 0.010536417365074158, 0.015372684225440025, 0.007634656969457865, 0.009399340488016605, 0.06408976763486862, 0.04515818506479263, -0.00559677928686142, -0.0021560152526944876, 0.014981352724134922, -0.011178791522979736, -0.007472217548638582, -0.009790671989321709, 0.028604120016098022, -0.008409935981035233, 0.0025694977957755327, 0.021117135882377625, 0.010329675860702991, -0.012958242557942867, 0.006113632582128048, -0.0033115509431809187, 0.011621808633208275, 0.016066744923591614, 0.004548306111246347, 0.005714917089790106, -0.006589875556528568, -0.016243951395154, 0.015594192780554295, 0.013283121399581432, 0.011304313316941261, -0.010492115281522274, 0.0054786414839327335, 0.0069664400070905685, -0.00661202659830451, -0.024306857958436012, 0.0023959828540682793, -0.01609627902507782, 0.015328383073210716, -0.01664266549050808, -0.0019751167856156826, -0.008062906563282013, -0.004699670244008303, -0.012072209268808365, 0.007627273444086313, -0.02164875715970993, 0.00642374437302351, -0.0009137222659774125, 0.0036530429497361183, -0.018459035083651543, 0.003424151102080941, 0.0016788492212072015, -0.006999666336923838, 0.0011536896927282214, -0.0007314392714761198, -0.002641487866640091, 0.03369881585240364, 0.0021006381139159203, -0.016184881329536438, -0.04923393949866295, -0.007797096390277147, 0.028057733550667763, -0.04025546461343765, 0.03502786532044411, -0.0009866354521363974, 0.0025011992547661066, 0.032487902790308, 0.019167862832546234, -0.00781924743205309, 0.020231101661920547, -0.029859336093068123, 0.05103554204106331, 0.014486650936305523, 0.007184256333857775, 0.004983939696103334, 0.009273819625377655, -0.02454313263297081, 0.006383134517818689, 0.008675746619701385, 0.007298702374100685, 0.00922213401645422, -0.011636575683951378, 0.0033743116073310375, -0.006246537435799837, -0.0027910061180591583, -0.0002588879724498838, 0.047166526317596436, 0.011592273600399494, 0.009665151126682758, 0.006648944225162268, -0.011658726260066032, 0.02339128963649273, 0.013881194405257702, -0.03160186856985092, -0.030627230182290077, -0.036120638251304626, -0.013777824118733406, -0.0014028867008164525, -0.011821165680885315, 0.030125144869089127, 0.01054380089044571, -0.021471548825502396, -0.014649090357124805, 0.0031011179089546204, 0.008151509799063206, -0.023612797260284424, -0.023110711947083473, 0.01605197787284851, 0.009118763729929924, 0.010071249678730965, -0.011909769847989082, 0.004910103511065245, -0.007213790901005268, -0.001014324021525681, -0.009259051643311977, 0.003210026305168867, -0.0017406870611011982, 0.010661938227713108, -0.000310573261231184, 0.012374937534332275, 0.004097905941307545, 0.00217447429895401, 0.02194410003721714, -0.0036382758989930153, 0.006143166683614254, -0.01760253682732582, -0.004869493655860424, -0.009657767601311207, -0.0031380360014736652, 0.019374603405594826, 0.026507174596190453, -0.034466709941625595, -0.013659685850143433, 0.0008380401995964348, -0.02404104731976986, -0.024587435647845268, -0.0031343442387878895, 0.021914565935730934, -0.013851660303771496, -0.01904972456395626, -0.008380401879549026, -0.01758776791393757, 0.0006054563564248383, -0.0021560152526944876, -0.00653819041326642, -0.03514600172638893, -0.002707940526306629, -0.012131277471780777, -0.024927081540226936, -0.012987776659429073, 0.006021337117999792, 0.0012127585941925645, -0.01693801023066044, -0.015402219258248806, -0.028766559436917305, 0.012419238686561584, -0.0365045890212059, -0.005079926457256079, -0.0020600282587110996, -0.020703652873635292, 0.040019188076257706, 0.004603683482855558, 0.012958242557942867, -0.0035681314766407013, -0.013512013480067253, -0.022283747792243958, 0.0016308557242155075, -0.025030450895428658, -0.010455197654664516, -0.003763797227293253, -0.013297888450324535, -0.007989070378243923, 0.018030785024166107, -0.01019677147269249, -0.007870933040976524, -0.0022298514377325773, 0.02504521794617176, -0.02014249935746193, -0.008483772166073322, 5.177182538318448e-05, -0.010314908809959888, -0.01955180987715721, 0.0109942015260458, 0.0044966209679841995, 0.005663231946527958, 0.004559381864964962, 0.00827703159302473, 0.0024808943271636963, -0.00864621251821518, -0.0010946207912638783, -0.027481811121106148, 0.005279283970594406, -0.025178123265504837, -0.0022501563653349876, -0.06970131397247314, -0.018532872200012207, 0.005943809170275927, 0.020615050569176674, 0.009532245807349682, -0.03375788405537605, 0.00432310625910759, 0.0014656473649665713, -0.0015339457895606756, 0.027068329975008965, -0.008579759858548641, -0.0204969123005867, 0.010373977944254875, 0.02355372905731201, 0.013548932038247585, -0.002901760395616293, -0.00391331547871232, 0.011319080367684364, -0.0022630777675658464, -0.004880568943917751, -0.004452319350093603, 0.02498614974319935, 0.015682796016335487, -0.018163690343499184, 0.004108981229364872, 0.04527632147073746, -0.04344518482685089, 0.005009782034903765, -0.0016539295902475715, -0.012389704585075378, -0.013297888450324535, 0.013187134638428688, -0.013416026718914509, -0.004452319350093603, 0.021235274150967598, 0.013556315563619137, 0.021220507100224495, -0.010853912681341171, 0.01432421151548624, 0.030509093776345253, 0.010588102973997593, -0.012448773719370365, -0.016627898439764977, -0.012057441286742687, -0.019980059936642647, -0.005198064260184765, 0.0259903222322464, -0.04592607915401459, 0.003667810233309865, 0.01913832686841488, 0.0269944928586483, 0.008993241935968399, 0.018916819244623184, -0.013748289085924625, -0.03715434670448303, 0.006106248591095209, 0.003595819929614663, -0.017883112654089928, 0.011326463893055916, 0.008971091359853745, 0.08913499116897583, -0.004954405128955841, -0.0024901237338781357, 0.0030014391522854567, -0.019920989871025085, 0.019404137507081032, 0.022180376574397087, 0.03623877838253975, 0.01739579439163208, 0.002665484556928277, 0.0404917411506176, -0.016362089663743973, 0.009487943723797798, 0.025266727432608604, -0.008564991876482964, 0.03567762300372124, -0.004408017732203007, 0.014722926542162895, 0.00835086777806282, -0.004747663624584675, -0.023465124890208244, 0.0026802518405020237, 0.004577840678393841, -0.012042674235999584, -0.014937051571905613, 0.014058400876820087, 0.008985858410596848, -0.019522275775671005, 0.014767227694392204, 0.0023830614518374205, 0.012138661928474903, 0.014590021222829819, 0.019463207572698593, -0.0007868163520470262, -0.006534498650580645, 0.03818805143237114, -0.002988517750054598, -0.0015385606093332171, -0.0030051309149712324, 0.007738027721643448, -0.003821020247414708, -0.044567495584487915, 0.007265476044267416, -0.03603203594684601, -0.016066744923591614, 0.00914829783141613, -0.02209177240729332, 0.025414399802684784, -0.022328048944473267, -0.011400300078094006, 0.0060361046344041824, 0.012485691346228123, -0.025266727432608604, 0.027334138751029968, -0.019226931035518646, 0.02093992941081524, 0.004179125651717186, -0.0126185966655612, -0.03615017607808113, 0.001697308267466724, -0.004120056517422199, 0.050769731402397156, -0.006815075874328613, -0.03508693352341652, -0.0021689366549253464, -0.018828215077519417, 0.008144126273691654, 0.0016087049152702093, -7.568204455310479e-05, 0.03535274416208267, -0.00685937749221921, 0.003771180985495448, -0.02054121345281601, 0.006479121278971434, -0.01217557955533266, 0.011008968576788902, 0.034259967505931854, -0.015682796016335487, 0.02249048836529255, -0.025429166853427887, 0.013578466139733791, 0.024587435647845268, 0.017573000863194466, 0.009458409622311592, -0.007402073126286268, -0.011164024472236633, 0.0027522421441972256, -0.011518438346683979, -0.004264037124812603, -0.0101229352876544, 0.01145198568701744, -0.002796543762087822, 0.008306565694510937, 0.006420052610337734, 0.002222467912361026, -0.034259967505931854, -0.028958534821867943, 0.014309444464743137, -0.013401259668171406, 0.0038173284847289324, -0.025783579796552658, 0.00212463503703475, 0.023317452520132065, 0.016362089663743973, 0.0113707659766078, 0.0010918519692495465, -0.016007674857974052, -0.020053895190358162, -0.0018689773278310895, 0.0032211015932261944, -0.0028463832568377256, 0.0030291276052594185, -0.0025141206569969654, -0.0015911688096821308, -0.018872518092393875, -0.015055188909173012, -0.0059807272627949715, -0.005220215301960707, 0.013364341109991074, 0.010447814129292965, 0.013164984062314034, 0.019020190462470055, 0.017011847347021103, 0.005792445037513971, 0.0009940190939232707, 0.008373018354177475, -0.0013807357754558325, -0.008564991876482964, -0.0019751167856156826, 0.00891940575093031, 0.00959869846701622, 0.029283413663506508, -0.01829659566283226, -0.010499498806893826, 0.006888912059366703, -0.009421491995453835, 0.03485065698623657, 0.03384648635983467, -0.03517553582787514, 0.012308484874665737, -0.02754088118672371, -0.021058067679405212, 0.012050057761371136, 0.0037121118512004614, -0.004662752151489258, 0.01104588620364666, -0.027127398177981377, 0.02573927864432335, 0.004289879929274321, -0.0031564950477331877, -0.01689370907843113, 0.004854726139456034, 0.015860002487897873, 0.00322479335591197, -0.004149591084569693, 0.004991323221474886, 0.005607855040580034, 0.002617491176351905, 0.019330302253365517, -0.00432310625910759, 0.04208660125732422, 0.00031680319807492197, 0.024661270901560783, -0.017085682600736618, 0.006792924832552671, 0.01720382086932659, -0.011016352102160454, -0.0814560279250145, -0.022918738424777985, -0.009990029968321323, -0.001707460731267929, 0.0065308064222335815, 0.002054490614682436, 0.0026562551502138376, 0.01814892329275608, -0.008166276849806309, 0.021619221195578575, -0.021914565935730934, 0.009679918177425861, -0.0023498351220041513, -0.009591314941644669, -0.020024361088871956, -0.010824378579854965, 0.0010503190569579601, 0.023509427905082703, 0.03703620657324791, -0.016317786648869514, -0.006792924832552671, 0.012197730131447315, -0.0017877575010061264, 0.02384907379746437, 0.0029312947299331427, -0.009576547890901566, 0.006268688477575779, -0.007512827403843403, 0.009362422861158848, 0.011739945970475674, -0.0009866354521363974, 0.004319414030760527, -0.009081845171749592, -0.00504670012742281, 0.0035681314766407013, 0.03505739942193031, -0.016022441908717155, 0.02999223954975605, -0.00922213401645422, 0.004991323221474886, -0.0029552914202213287, 0.022977806627750397, -0.02779192291200161, -0.01307638082653284, -0.014206073246896267, -0.005541402380913496, -0.013098531402647495, 0.008483772166073322, 0.008838186040520668, -0.015919072553515434, -0.016524529084563255, 0.007128879427909851, 0.012264182791113853, -0.0021209430415183306, 0.0042566535994410515, -0.023007340729236603, 0.0334920734167099, 0.014604788273572922, 0.002497507492080331, 0.02379000373184681, 0.009081845171749592, 0.03304905816912651, -0.0015182556817308068, 0.002176320180296898, 0.01439804770052433, 0.03508693352341652, -0.023657100275158882, 0.029667360708117485, -0.004293571691960096, 0.02579834684729576, 0.012581678107380867, -0.0035164461005479097, -0.0113707659766078, 0.01470077596604824, 0.014117470011115074, -0.03632738068699837, -0.006885220296680927, -0.014006716199219227, -0.00018528256623540074, -0.002637796103954315, -0.006634177174419165, 0.005988110788166523, 0.011215710081160069, -0.01735149323940277, 0.0015025654574856162, -0.004219735506922007, -0.013032078742980957, 0.012958242557942867, 0.013955030590295792, 0.013135449029505253, 0.015431753359735012, -0.011658726260066032, -0.029623059555888176, 0.0040314532816410065, -0.016967544332146645, 0.02284490130841732, -0.008830802515149117, -0.0440063402056694, -0.021161437034606934, -0.004083138424903154, -0.013054229319095612, 0.003128806361928582, 0.00024227483663707972, 7.54513093852438e-05, 0.030361421406269073, 0.014464500360190868, -0.010145085863769054, -0.003084504744037986, 0.007446374744176865, -0.008668363094329834, 0.019773319363594055, -0.007232250180095434, -0.0004192508349660784, 0.006789233069866896, 0.025606373324990273, -0.0022630777675658464, 0.004633218050003052, 0.01590430550277233, 0.008594526909291744, 0.012242032214999199, 0.032665107399225235, 0.024454530328512192, -0.012766269035637379, 0.01980285346508026, 0.015040421858429909, -0.00846900511533022, 0.0035570559557527304, 0.0026267205830663443, 0.032724179327487946, 0.003998226951807737, -0.0073983813636004925, -0.0334920734167099, -0.0017351493006572127, -0.022136075422167778, -0.005186988972127438, 0.005762910936027765, 0.026226596906781197, -0.015239779837429523, 0.004814116284251213, 0.017513932660222054, -0.02290397137403488, -0.0015034883981570601, -0.02579834684729576, 0.0227415319532156, -0.013305272907018661, -0.03228116035461426, -0.0035995119251310825, -0.004297263454645872, 0.0018495953409001231, 0.014885365962982178, 0.024956615641713142, 0.005460182670503855, -0.015298848040401936, -0.024927081540226936, -0.005009782034903765, -0.02783622406423092, -0.005390038248151541, -0.016627898439764977, 0.007239633705466986, -0.011732562445104122, 0.016760803759098053, 0.01614058017730713, 0.004072063136845827, -0.0015090261586010456, 0.0007752794772386551, -0.0038394792936742306, 0.015180710703134537, 0.01470077596604824, 0.0043415650725364685, -0.02259385958313942, 0.021781660616397858, -0.03860153257846832, -0.000179283379111439, 0.004020377993583679, 0.01664266549050808, -0.0031121934298425913, 0.019212163984775543, -0.010159852914512157, 0.024203486740589142, 0.019374603405594826, 0.015771400183439255, -0.003821020247414708, -0.019418904557824135, -0.017956949770450592, 0.009118763729929924, 0.0011601503938436508, -0.01504780538380146, -0.009613465517759323, 0.00752390269190073, -0.005109461024403572, 0.02043784409761429, -0.0023479892406612635, -0.016066744923591614, -0.03245836868882179, -0.012027907185256481, 0.0005288513493724167, -0.019965292885899544, -0.011363382451236248, 0.03207441791892052, -0.023524194955825806, 0.010204154998064041, -0.008528074249625206, -0.03174953907728195, -0.009702068753540516, 0.02418871968984604, 0.008631444536149502, 0.026108458638191223, 0.053014349192380905, -0.028633655980229378, 0.01422084029763937, -0.03473252058029175, 0.0025344255845993757, -0.018370430916547775, -0.024705572053790092, -0.013371724635362625, -0.013142832554876804, -0.009340271353721619, -0.00819581188261509, -0.008542841300368309, 0.004758739378303289, -0.022579092532396317, 0.004396941978484392, 0.01526931393891573, 0.008579759858548641, -0.010506882332265377, 0.018429500982165337, 0.002065566135570407, -0.003689961042255163, 0.0009626387036405504, -0.018872518092393875, 0.0172481220215559, -0.01794218271970749, 0.03538227826356888, 0.009561779908835888, 0.004367407876998186, -0.010418279096484184, 0.014722926542162895, -0.009738987311720848, 0.03744969144463539, 0.026211829856038094, -0.016509760171175003, -0.010108167305588722, -0.020482145249843597, 0.0014979507541283965, -0.009266436100006104, 0.01664266549050808, 0.00472551304847002, 0.023169780150055885, -0.04258868470788002, -0.025960786268115044, -0.012160812504589558, -0.004308338742703199, -0.015357917174696922, 0.014626939781010151, -0.015387451276183128, -0.016465459018945694, 0.013290504924952984, 0.021855497732758522, -0.023967212066054344, -0.00864621251821518, 0.007376230321824551, -0.0059142750687897205, 0.029903637245297432, 0.005762910936027765, 0.022372350096702576, -0.006456970702856779, 0.008675746619701385, 0.03104071319103241, -0.028264474123716354, 0.020629817619919777, -0.029268646612763405, 0.00685937749221921, -0.012810570187866688, -0.0027522421441972256, -0.01630301959812641, -0.03423043340444565, 0.008587143383920193, -0.005570936948060989, -0.03095211088657379, -0.012840105220675468, 0.005766602698713541, 0.008299182169139385, -0.0006100711179897189, -0.00361058721318841, 0.010233689099550247, -0.025709744542837143, 0.008889871649444103, -0.01216819602996111, -0.007368846796452999, 0.0036124330945312977, -0.003263557329773903, -0.011902385391294956, -0.012160812504589558, -0.01804555207490921, 0.004035145044326782, -0.013017311692237854, -0.004917487036436796, 0.011407683603465557, 0.009790671989321709, -0.007058735005557537, -0.017336726188659668, -0.03059769608080387, -0.00482519157230854, 0.02454313263297081, 0.0025418091099709272, -0.0030641998164355755, 0.00835086777806282, 0.012529993429780006, -0.002122789155691862, 0.0014425736153498292, -0.009539629332721233, -0.007247017230838537, 0.002962675178423524, -0.012862255796790123, 0.006268688477575779, 0.00423450255766511, 0.007091961335390806, 0.014065784402191639, 0.07891606539487839, 0.0019308150513097644, -0.004238194320350885, 0.003198950784280896, 0.014663857407867908, -0.02288920432329178, -0.001971425022929907, 0.0180012509226799, -0.006364675238728523, -0.009273819625377655, -0.0021800119429826736, -0.030184214934706688, 0.01039612852036953, -0.0031011179089546204, -0.021914565935730934, 0.01569756306707859, 0.01391811203211546, 0.022608626633882523, -0.022062238305807114, 0.025931252166628838, 0.0033761574886739254, 0.019507508724927902, -0.0018339051166549325, 0.015579425729811192, -0.018606707453727722, -0.012566911056637764, 0.005903199315071106, 0.0005828440189361572, 0.0036124330945312977, 0.02184073068201542, 0.015712330117821693, -0.008299182169139385, -0.011754713952541351, 0.005873664747923613, 0.004810424521565437, 0.0030660456977784634, 0.004105289466679096, -0.006228078622370958, -0.009738987311720848, 0.021131902933120728, -0.0032303312327712774, 0.011555355973541737, 0.014043633826076984, 0.016406390815973282, -0.00633514067158103, -0.014228223823010921, 0.0031361901201307774, -0.003427842864766717, -0.011488903313875198, -0.01969948224723339, -0.01409531943500042, -0.008085057139396667, 0.008749582804739475, 0.0051537626422941685, 0.013091147877275944, -0.0027319372165948153, 0.014383279718458652, 0.0031269604805856943, -0.022918738424777985, -0.0007134416955523193, -0.011363382451236248, -0.009458409622311592, -0.02003912813961506, -0.018119389191269875, -0.005471257958561182, -0.017129983752965927, -0.01674603670835495, -0.01934506930410862, -0.003211872186511755, -0.017735440284013748, -0.0004757816204801202, 0.010366594418883324, 0.006117324344813824, -0.01729242503643036, -0.02119097299873829, 0.024454530328512192, 0.010757925920188427, 0.026581009849905968, 0.01679033786058426, -0.0016908475663512945, 0.010684089735150337, 0.007767561823129654, -0.02054121345281601, 0.004991323221474886, 0.003994535189121962, 0.009155681356787682, 0.015490822494029999, -0.004574148915708065, 0.017218587920069695, -0.01519547775387764, -0.003605049569159746, -0.00042478853720240295, -0.01829659566283226, -0.01512164156883955, 0.009266436100006104, 0.0017231509555131197, -0.016627898439764977, -0.009908810257911682, 0.007649424020200968, -0.0033355476334691048, -0.0024292089510709047, 0.016864174976944923, -0.0012939783046022058, -0.006213311105966568, 0.013024695217609406, 0.0021560152526944876, 0.019064491614699364, 0.003178645856678486, -0.006316681858152151, 0.00030065153259783983, 0.00759773887693882, -0.024129651486873627, -0.0022187759168446064, -0.015771400183439255, -0.0204969123005867, 0.02554730512201786, 0.01745486445724964, -0.011016352102160454, -0.013452944345772266, -0.02689112164080143, -0.0061357831582427025, -0.001967733260244131, 0.007989070378243923, -0.013637535274028778, 0.015003503300249577, 0.016465459018945694, -0.011267394758760929, -0.004891644231975079, -0.02014249935746193, -0.023110711947083473, 0.0015865541063249111, -0.005091001745313406, 0.009768521413207054, 0.0035385971423238516, -0.003957617096602917, 0.0071584139950573444, 0.006575108505785465, -0.014058400876820087, 0.016376856714487076, -0.00839516893029213, -3.605280340934769e-08, 0.015549891628324986, 0.012027907185256481, 0.011747329495847225, 0.017927415668964386, 0.014206073246896267, 0.004072063136845827, -0.018178457394242287, 0.012714583426713943, -0.008971091359853745, 0.03724294900894165, -0.039664775133132935, -0.02229851484298706, 0.003167570335790515, 0.004714437760412693, 0.0011878389632329345, -0.0129951611161232, 0.02634473517537117, -0.005445415154099464, -0.008003837428987026, 0.009030159562826157, 0.008838186040520668, -0.007767561823129654, -0.018311362713575363, 0.003891164669767022, 0.0029940553940832615, 0.009923577308654785, 0.022180376574397087, 0.008638828061521053, -0.015239779837429523, 0.0031324983574450016, 0.006608334369957447, -0.0038763973861932755, -0.03960570693016052, 0.007331928703933954, 0.005028241313993931, 0.020127732306718826, 0.004297263454645872, -0.03588436543941498, 0.009465793147683144, -0.014287292957305908, -0.004352640360593796, 0.008638828061521053, 0.006217002868652344, -0.0067227804102003574, -0.012264182791113853, 0.007272860035300255, 0.0006640637875534594, -0.00726178428158164, -0.011230477131903172, -0.009251668117940426, 0.014708159491419792, -0.0012376783415675163, 9.4141076260712e-05, -0.044567495584487915, -0.0005440800450742245, 0.013283121399581432, 0.015151175670325756, -0.007128879427909851, 0.0015210245037451386, 0.022726764902472496, 0.004666443914175034, 0.00542326457798481, -0.014191306196153164, 0.007664191536605358, -0.031365592032670975, -0.020733188837766647, -0.01659836433827877, -0.016317786648869514, 0.0059142750687897205, -0.05260086804628372, -0.024956615641713142, 0.013593233190476894, 0.005330969113856554, -0.01414700411260128, 0.0017019230872392654, 0.008299182169139385, 0.012729350477457047, 0.0025842648465186357, 0.00880126841366291, 0.004216043744236231, 0.004559381864964962, 0.009716835804283619, -0.0001437497412553057, -0.023214083164930344, -0.02179642952978611, 0.005888432264328003, 0.0037914859130978584, 0.01159965805709362, 0.007774945814162493, 0.021205740049481392, 0.013969797641038895, -0.019773319363594055, 0.02244618721306324, 0.0056189303286373615, 0.034319039434194565, 0.012352786026895046, 0.005334661342203617, -0.003990843426436186, -0.0030420490074902773, -0.009008008986711502, -0.011865467764437199, -0.00847638864070177, 0.0013428948586806655, 0.01129692979156971, -0.008830802515149117, 0.013763056136667728, -0.007575587835162878, 0.007893083617091179, -3.192836084053852e-05, -0.007767561823129654, -0.006228078622370958, -0.011341230943799019, 0.020127732306718826, 0.018931586295366287, -0.003165724454447627, -0.002491969848051667, 0.0004047143447678536, -0.006840918213129044, -0.007575587835162878, 0.004640601575374603, 0.00790046714246273, -0.015328383073210716, 0.0013807357754558325, -0.014316827990114689, 0.008579759858548641, -0.019507508724927902, 0.0302432831376791, 0.009960494935512543, 0.022357583045959473, 0.024011513218283653, -0.010410895571112633, 0.02364233136177063, 0.012286333367228508, 0.0036511970683932304, -0.009539629332721233, -0.0016456230077892542, -0.006689554546028376, -0.0003204949898645282, 0.0007503597880713642, 0.0012967472430318594, 0.00653819041326642, 0.004492929205298424, -0.026078924536705017, -0.002746704500168562, -0.02844168059527874, -0.003957617096602917, 0.00745006650686264, -0.018680542707443237, -0.009037544019520283, 0.014841063879430294, 0.010713623836636543, 0.0062206946313381195, 0.0048436508513987064, 0.0024144419003278017, 0.009982646442949772, -0.014427581802010536, -0.0012404471635818481, 0.012714583426713943, 0.006744931451976299, -0.013600616715848446, -0.004315722268074751, -0.006918446160852909, -0.01659836433827877, 0.005186988972127438, 0.0032561738044023514, 0.0202458705753088, 0.008616677485406399, -0.01474507711827755, 0.007745411247014999, 0.001912356005050242, -0.0003634122549556196, 0.0030254358425736427, 0.005345736630260944, 0.004090522415935993, -0.0252371933311224, 0.0029220653232187033, 0.014494034461677074, -0.019315535202622414, -0.0036622725892812014, 0.005353120155632496, 0.014176539145410061, 0.00653819041326642, 0.029815033078193665, 0.006678478792309761, 0.04317937418818474, -0.009288586676120758, 0.02579834684729576, -0.007922617718577385, -0.028456447646021843, 0.016908476129174232, -0.0032930918969213963, -0.007612505927681923, -0.004747663624584675, -0.001682541100308299, 0.022313281893730164, -0.03804038092494011, -0.010477348230779171, -0.01267028134316206, 0.012463540770113468, -0.02083655819296837, -0.0008126590400934219, 0.006383134517818689, -0.0031232687178999186, 0.013356957584619522, 0.005869972985237837, 0.007937384769320488, -0.006073022726923227, -0.011031119152903557, 0.021323876455426216, 0.008217962458729744, -0.0037804103922098875, -0.005718608852475882, 0.004588915966451168, -0.0027042485307902098, 0.010661938227713108, 0.012958242557942867, -0.009251668117940426, -0.02029017172753811, 0.001851441222243011, -0.0194927416741848, 0.005297743249684572, -0.011902385391294956, -0.002115405397489667, 0.012101743370294571, 0.012980393134057522, -0.004448627587407827, 0.008683130145072937, -0.02169305831193924, 0.0038505548145622015, -0.010964666493237019, -0.0032063343096524477, -0.015963373705744743, 0.0051685296930372715, -0.019315535202622414, -0.016125813126564026, -0.0026599469128996134, -0.007490676362067461, -0.0052940514869987965, 0.00025588838616386056, 0.014996119774878025, 0.008823418989777565, -0.014796762727200985, 0.0028150028083473444, 0.010691473260521889, 0.00997526291757822, 0.008151509799063206, 0.00877173338085413, -0.005762910936027765, -0.018532872200012207, -0.013209285214543343, -0.019167862832546234, -0.0015579425962641835, -0.008461621589958668, 0.011127105914056301, 0.010300141759216785, -0.030568161979317665, 0.03718388080596924, -0.01402148324996233, -0.015180710703134537, 0.0050134737975895405, -0.0009534091805107892, 0.024129651486873627, 0.013128065504133701, 0.009111380204558372, -0.0365045890212059, -0.008166276849806309, 0.008616677485406399, 0.015180710703134537, -0.001051241997629404, 0.0016207032604143023, 0.013231436721980572, -0.03127698972821236, 0.01844426803290844, -0.009960494935512543, -0.007306085899472237, 0.01619964838027954, 0.011850700713694096, 0.010447814129292965, -0.007025508675724268, 0.025768812745809555, -0.002951599657535553, 0.015254546888172626, -0.014959202148020267, 0.002746704500168562, -0.007664191536605358, 0.02079225704073906, 0.006881528068333864, 0.004795657470822334, 0.006194852292537689, -0.012146045453846455, -0.016332553699612617, -0.007856165058910847, 0.014361129142343998, -0.0202458705753088, -0.005282975733280182, 0.018281828612089157, -0.021323876455426216, 0.01718905381858349, 0.012242032214999199, -0.02414441853761673, -0.01526931393891573, 0.011968838050961494, 0.004075754899531603, 0.019079258665442467, 0.022254211828112602, 0.011023735627532005, 0.013512013480067253, 0.0038431710563600063, -0.010418279096484184, -0.013859043829143047, 0.01959611102938652, 0.01714475266635418, -0.007789712864905596, -0.024114882573485374, -0.008867720142006874, 0.00014490343164652586, 0.006512347608804703, 0.04979509487748146, -0.029504921287298203, 8.473850903101265e-05, -0.005205447785556316, -0.0015902458690106869, 0.018577173352241516, 0.012633363716304302, -0.008720047771930695, 0.0038653218653053045, 0.00847638864070177, -0.005833054892718792, 0.00024089041107799858, -0.02045261114835739, 0.007619889918714762, -0.004821499809622765, -0.008779116906225681, 0.0024661270435899496, 0.004190200939774513, -0.009930960834026337, 0.009052311070263386, 0.009140914306044579, -0.01689370907843113, -0.02410011552274227, 0.009583931416273117, -0.010750542394816875, 0.010403512045741081, 0.035618554800748825, -0.00217447429895401, 0.007841398008167744, 0.01588953658938408, 0.006172701250761747, 0.013703987933695316, -0.010351826436817646, -0.007427915930747986, 0.007387306075543165, -0.003953925333917141, -0.0032801704946905375, -0.02169305831193924, 0.0021560152526944876, 0.02504521794617176, -0.010610253550112247, 0.02150108478963375, -0.00797430332750082, -0.011562739498913288, -0.010226305574178696, 0.018783913925290108, -0.0003883319441229105, -0.008808651939034462, 0.0033392393961548805, 0.0012709045549854636, 0.0129951611161232, 0.005098385736346245, 0.018857751041650772, 0.005644773133099079, -0.0001415577280567959, 0.004707053769379854, -0.00241259578615427, 0.02454313263297081, 0.015579425729811192, 0.01364491879940033, 0.02609369158744812, 0.002757779788225889, -0.014036250300705433, -0.032310694456100464, 0.020555982366204262, 0.008505923673510551, 0.022416653111577034, -0.0038542465772479773, 0.024927081540226936, 0.010839145630598068, 0.019581343978643417, 0.012013140134513378, 0.008690513670444489, -0.00900062546133995, -0.012190346606075764, -0.005940117407590151, 0.008616677485406399, 0.02089562825858593, 0.017410561442375183, 0.014338978566229343, 0.025606373324990273, -0.013866427354514599, 0.005227598827332258, -0.010536417365074158, 0.0037914859130978584, 0.0017240738961845636, -0.0024181336630135775, -0.022830134257674217, 0.004142207559198141, -0.015284080989658833, -0.0004850111436098814, -0.008313949219882488, -0.016819871962070465, 0.011400300078094006, 0.016406390815973282, 0.0022021629847586155, 0.00982020702213049, -0.008365634828805923, 0.01512164156883955, -0.0015191786224022508, 0.005116844549775124, 0.009288586676120758, -0.00735038798302412, -0.006578800268471241, -0.00281869457103312, 0.02644810639321804, -0.0172481220215559, -0.0028094651643186808, 0.03739062324166298, 0.013881194405257702, 0.009628232568502426, 0.022431420162320137, -0.0023442974779754877, 0.002329530194401741, -0.020053895190358162, 0.002759625669568777, 0.007915234193205833, 0.009628232568502426, -0.024823710322380066, -0.011577506549656391, 0.010086016729474068, 0.0029774424619972706, 0.00010856219887500629, -0.02039354294538498, -0.020157266408205032, -0.011171407997608185, 0.0067560067400336266, 0.013187134638428688, -0.008705280721187592, 0.005319893825799227, 0.019522275775671005, -0.012781036086380482, 0.0061210161074995995, -0.026979725807905197, 0.006936905439943075, 0.006962748244404793, 0.00527559220790863, -0.013416026718914509, 0.0012127585941925645, 0.02164875715970993, -0.025370098650455475, -0.017617303878068924, 0.0002234696876257658, 0.001694539445452392, 0.01444234885275364, 0.0007540516089648008, 3.489911250653677e-05, -0.0019418904557824135, 0.013548932038247585, -0.004208660218864679, -0.033019520342350006, 0.0025030451361089945, -0.0015154867433011532, -0.01965518109500408, 0.030021775513887405, -0.003453685436397791, 0.0009174140286631882, -0.010831762105226517, 0.02464650385081768, -0.005017165560275316, 0.028781328350305557, -0.0044264765456318855, -0.01574186608195305, -0.021766893565654755, 0.008181044831871986, 0.026507174596190453, -0.0010715470416471362, 0.004729204811155796, 0.017115216702222824, 0.0164949931204319, 0.02684682048857212, -0.006774466019123793, -0.01574186608195305, 0.009709452278912067, -0.00026488714502193034, -0.004766122903674841, 0.0013115144101902843, 0.00781924743205309, -0.03538227826356888, -0.005474949721246958, 0.0038616301026195288, -0.015225011855363846, -0.004847342614084482, -0.010462581180036068, -0.005840438883751631, -0.0027670094277709723, 0.012714583426713943, 0.009436259046196938, 0.0009451025980524719, -0.005707533564418554, -0.006264996714890003, -0.0007462064968422055, -0.007151030004024506, 0.00892678927630186, -0.01039612852036953, 0.008823418989777565, -0.031720004975795746, -0.013416026718914509, 0.008749582804739475, -0.010927748866379261, 0.014686007983982563, 0.006294530816376209, 0.004935945849865675, -0.024631736800074577, 0.006682170554995537, -0.0006954441196285188, 0.010757925920188427, -0.0026820977218449116, 0.01674603670835495, -0.0009580239420756698, -0.0247351061552763, -0.0227415319532156, 0.001279211137443781, 0.025503002107143402, -0.02854505181312561, 0.01775020733475685, 0.0060656387358903885, 0.000424327066866681, -0.008557608351111412, -0.0008491156040690839, -0.0017046919092535973, -0.02889946475625038, 0.0113707659766078, -0.0037804103922098875, 0.017381027340888977, -0.033462539315223694, -1.5906496628304012e-05, 0.01594860665500164, 0.014383279718458652, -0.024868011474609375, -0.00015390220505651087, 0.007642040494829416, -0.032724179327487946, -0.001958503620699048, -0.008838186040520668, -0.022859668359160423, 0.018237527459859848, 0.006781849544495344, -0.025562072172760963, -0.004507696256041527, -0.0009354116045869887, -0.001897588837891817, -0.01980285346508026, -0.009547012858092785, 0.0008320410270243883, 0.003939158283174038, 0.002698710886761546, -0.009480560198426247, 0.02064458467066288, -0.0008740352932363749, 0.007254400756210089, 0.0009469484793953598, 0.015815701335668564, 0.012677664868533611, -0.006844610441476107, -0.0011324618244543672, -0.00722117442637682, -0.021131902933120728, 0.004105289466679096, 0.007907850667834282, -0.006331448908895254, 0.00835086777806282, -0.015933839604258537, 0.0014831834705546498, 0.0025953403674066067, 0.0012865947792306542, -0.013512013480067253, -0.023686634376645088, -9.806362504605204e-05, 0.011902385391294956, -0.007486984599381685, -0.014014099724590778, 0.003510908456519246, -0.012788419611752033, -0.010713623836636543, 0.014427581802010536, 0.005035624839365482, -0.01619964838027954, 0.0030678915791213512, -0.004869493655860424, -0.0020637200213968754, -0.0017739132745191455, -0.02305164374411106, -0.019610878080129623, -0.0060656387358903885, 0.01758776791393757, 0.018857751041650772, -0.008454238064587116, -0.011503670364618301, 0.00416066637262702, -0.0020452612079679966, 0.01645069196820259, 0.007738027721643448, -0.0041163647547364235, 0.011614425107836723, -0.026477640494704247, 0.014479267410933971, 0.008129359222948551, 0.028367845341563225, 0.012389704585075378, 0.013785207644104958, 0.016258718445897102, 0.030715834349393845, -0.00320448842830956, -0.011200942099094391, 0.007239633705466986, -0.0066710952669382095, 0.007560820784419775, 0.011614425107836723, -0.014560487121343613, -0.011954071000218391, 0.007354079745709896, 0.0227415319532156, -0.01055118441581726, -0.010499498806893826, -0.011178791522979736, -0.024853244423866272, -0.021072834730148315, -0.005017165560275316, 0.012293717823922634, 0.0014896441716700792, 0.010757925920188427, -0.013408643193542957, 0.004012994468212128, -0.026817286387085915, -0.021633988246321678, -0.025532538071274757, -0.00020535675866995007, 0.003330009989440441, 0.005131611600518227, 0.02824970707297325, 0.029667360708117485, -0.003104809671640396, -0.0023959828540682793, -0.026964958757162094, -0.016731269657611847, 0.01794218271970749, 0.003928082529455423, 0.013600616715848446, 0.006264996714890003, -0.007619889918714762, -0.005570936948060989, -0.013888577930629253, 0.007789712864905596, 0.00869789719581604, 0.00623546214774251, 0.014590021222829819, 0.008461621589958668, 0.012928708456456661, 0.01848856918513775, -6.991359259700403e-05, 0.00023235310800373554, -0.008299182169139385, 0.0010290911886841059, -0.009399340488016605, -0.013519397005438805, 0.013962414115667343, -0.01077269297093153, 0.0070513514801859856, 0.0038062529638409615, -0.009355039335787296, 0.01674603670835495, -0.029283413663506508, 0.0002918834798038006, 0.0007572819013148546, 0.004131132271140814, -0.015446520410478115, -0.00827703159302473, 0.01364491879940033, -0.006933213677257299, -0.011658726260066032, -0.008181044831871986, -0.007774945814162493, 0.019330302253365517, -0.007612505927681923, 0.00024388999736402184, 0.012286333367228508, -0.029357248917222023, -0.01387381087988615, 0.010757925920188427, 0.002087716944515705, 0.0034020000603049994, 0.005615238565951586, -0.007893083617091179, 0.007841398008167744, 0.010669322684407234, -0.002558422274887562, -0.0006460662116296589, -0.012515225447714329, 0.005932733882218599, -0.004264037124812603, -0.0229925736784935, -0.013098531402647495, 0.016435924917459488, -0.010145085863769054, 0.012005756609141827, -0.025665441527962685, 0.010521650314331055, -0.005334661342203617, -0.016509760171175003, 0.012507841922342777, -0.013977181166410446, 0.017661605030298233, 0.007306085899472237, 0.02229851484298706, 0.015099490992724895, 0.0026101076509803534, -0.010263223201036453, -0.00157732458319515, 0.002678405959159136, -0.002449513878673315, -0.013408643193542957, -0.006660019978880882, 0.013703987933695316, -0.0008343483787029982, 0.008498540148139, 0.024676037952303886, 0.01297300960868597, 0.015151175670325756, -0.0025344255845993757, -0.004732896573841572, 0.002458743518218398, -0.010285374708473682, 0.00633514067158103, 0.0014305752702057362, 0.020467378199100494, -0.013755672611296177, 0.00979805551469326, 0.02888469770550728, -0.01639162376523018, 0.011703028343617916, 0.028308777138590813, 0.014553103595972061, 0.00021573997219093144, 0.03254697099328041, -0.004810424521565437, -0.012035290710628033, -0.009716835804283619, 0.015040421858429909, 0.007834014482796192, 0.004374791402369738, -0.002558422274887562, -0.008542841300368309, 0.007165797520428896, -0.009731603786349297, 0.003809944959357381, -0.012707199901342392, 0.003619816852733493, -0.047314200550317764, -0.004264037124812603, -0.023169780150055885, 0.003939158283174038, -0.007575587835162878, -0.010757925920188427, -0.0027503962628543377, 0.003928082529455423, 0.009414107538759708, 0.009303353726863861, 0.025665441527962685, -0.024469297379255295, -0.009347655810415745, -0.028751792386174202, -0.019034957513213158, 0.011060654185712337, 0.0033410852774977684, 0.0164949931204319, -0.0007572819013148546, 0.008328716270625591, 0.00042063527507707477, -0.0007365155033767223, -0.004839959088712931, -0.010743158869445324, 0.006951672490686178, -0.020969463512301445, 0.007752794772386551, 0.011621808633208275, -0.01152582187205553, -0.011902385391294956, 0.00726178428158164, -0.011127105914056301, 0.0006982129998505116, -0.01010078378021717, 0.032222092151641846, -0.006837226450443268, 0.004821499809622765, -0.0007383613847196102, -0.010676706209778786, -0.007557129021733999, 0.004072063136845827, -0.00024873550864867866, -0.004518772009760141, -0.005441723391413689, 0.010706240311264992, 0.008934172801673412, 0.016465459018945694, -0.00048408820293843746, 0.013637535274028778, 0.006471737753599882, -0.011437217704951763, -0.023036876693367958, -0.02615276165306568, -0.01729242503643036, -0.000692213827278465, -0.012308484874665737, 0.02318454720079899, -0.03160186856985092, 0.0010641633998602629, -0.0017886805580928922, 0.014191306196153164, -0.005164837930351496, -0.014427581802010536, 0.0027743929531425238, 0.0049470216035842896, 0.013216668739914894, -0.0028371536172926426, 0.020585516467690468, 0.0277476217597723, 0.017336726188659668, -0.030656766146421432, -0.01590430550277233, 0.00212463503703475, 0.01938937045633793, -0.017070915549993515, -0.008705280721187592, 0.006324065383523703, -0.003883780911564827, 0.002222467912361026, -0.00047716606059111655, 0.009059694595634937, -0.008203195407986641, 0.02534056268632412, -0.001182301202788949, -0.012352786026895046, -0.0024735108017921448, -0.0032211015932261944, 0.026625312864780426, -0.003942850045859814, -0.020511679351329803, 0.022460954263806343, -0.0005043931305408478, -0.026462873443961143, 0.013674452900886536, -0.008587143383920193, -0.015461287461221218, -0.00527559220790863, -0.01569756306707859, 5.133918966748752e-05, 0.01684940792620182, -0.03293091803789139, -0.008557608351111412, -0.021825963631272316, 0.012485691346228123, 0.0025270418263971806, -0.003143573645502329, -0.020629817619919777, -0.004917487036436796, 0.0041865091770887375, 0.022136075422167778, 0.0374792255461216, 0.010927748866379261, 0.014265142381191254, 0.022771066054701805, -0.00164931477047503, 0.019566576927900314, -0.0032469441648572683, -0.0018579019233584404, -0.004551997873932123, 0.017011847347021103, 0.006564032752066851, -0.007254400756210089, -0.014183922670781612, -0.011791631579399109, 0.00043540250044316053, -0.002925757085904479, -0.0039797681383788586, -0.0013927342370152473, -0.007461141794919968, 0.011031119152903557, -0.018267061561346054, 0.020777489989995956, -0.0026211829390376806, 0.01342341024428606, -0.013386492617428303, -0.00042478853720240295, -0.0007508212584070861, 0.01024845615029335, -0.010905598290264606, -0.01297300960868597, 0.015919072553515434, -0.0046369098126888275, 0.021811196580529213, 0.012315868400037289, -0.010558567941188812, -0.006796616595238447, -0.004614758770912886, 0.0030254358425736427, 0.0070882695727050304, 0.0050836182199418545, -0.008240113034844398, 0.01928599923849106, 0.014213456772267818, 0.02858935296535492, -0.008564991876482964, 0.025827882811427116, -0.005441723391413689, -0.016273485496640205, -0.001051241997629404, -0.008409935981035233, -0.021058067679405212, -0.005504484288394451, 0.01609627902507782, 0.020733188837766647, -0.015933839604258537, 0.00832133274525404, -0.005740759894251823, 0.002829770091921091, -0.018887285143136978, -0.012212497182190418, 0.004551997873932123, 0.02114666998386383, -0.01664266549050808, 0.004127440042793751, 0.01447188388556242, -0.011555355973541737, 0.0022741530556231737, 0.0003253404865972698, -0.015771400183439255, -0.01758776791393757, -0.0016160885570570827, 0.007878316566348076, -0.01565326191484928, -0.01718905381858349, 0.007062426768243313, -0.0222394447773695, 0.003990843426436186, 0.0244988314807415, 0.009015392512083054, -0.01634732075035572, 0.01144460216164589, 0.008823418989777565, 0.0021338644437491894, -0.007520210929214954, 0.007475909311324358, -0.0007328236824832857, 0.005888432264328003, 0.0009469484793953598, 0.01653929613530636, -0.009251668117940426, 0.026521941646933556, 0.006154242437332869, 0.004001918714493513, -0.018355663865804672, -0.0013715062523260713, 0.005105769261717796, -0.01655406318604946, -0.005652156658470631, 0.0035939740482717752, -0.0005339275812730193, -0.010876063257455826, 0.0009654075256548822, 0.031720004975795746, 0.013932880014181137, -0.031720004975795746, 0.011415067128837109, 0.003968692384660244, 0.01930076628923416, -0.01519547775387764, 0.01764683797955513, 0.017336726188659668, -0.02110236883163452, -0.0018846674356609583, 0.0014075014041736722, 0.01969948224723339, -6.431819929275662e-05, 0.010292758233845234, -0.0052239070646464825, 0.028131568804383278, 0.0010438584722578526, 0.015372684225440025, -0.0030660456977784634, 0.02638903632760048, 0.0028980684000998735, 0.005958576686680317, 0.008535457774996758, 0.019610878080129623, -0.003365082200616598, 0.018710078671574593, 1.4911439393472392e-05, -0.004828883800655603, -0.0032432524021714926, 0.004688594955950975, 0.0044966209679841995, -0.00846900511533022, 0.007180564571171999, 0.011141873896121979, -0.01605197787284851, -0.01277365256100893, 0.01247092429548502, -0.009081845171749592, -0.012050057761371136, -0.009753754362463951, 0.017056148499250412, 0.004950713366270065, 0.00644958671182394, -0.003200796665623784, 0.01327573787420988, 0.015151175670325756, 0.032310694456100464, -0.009768521413207054, 0.010654554702341557, 0.013578466139733791, -0.013327423483133316, -0.00767157506197691, -0.032960452139377594, -0.0060508716851472855, -0.01009340025484562, -0.009406724013388157, -0.00016763110761530697, 0.011252627708017826, -0.006106248591095209, -0.0019658871460705996, -0.0028962225187569857, -0.019610878080129623, -0.005201756022870541, 0.012434005737304688, 0.005227598827332258, 0.005286667495965958, 0.002026802161708474, -0.03210395574569702, 0.010034331120550632, -0.002606415655463934, 0.01744009554386139, 0.00508730998262763, -0.0030531242955476046, -0.015239779837429523, 0.011703028343617916, -0.02399674616754055, 0.014353745616972446, 0.0019178937654942274, 0.01267028134316206, -0.00027019414119422436, -0.007715876679867506, -0.03812898322939873, -0.008114592172205448, 0.020112965255975723, -0.008830802515149117, -0.019226931035518646, 0.012064825743436813, 0.014065784402191639, -0.005216523539274931, 0.0017729903338477015, 0.0075682043097913265, 0.01164395920932293, 0.004149591084569693, -0.020423077046871185, -0.007206407375633717, -0.00855022482573986, 0.006818767637014389, -0.008107208646833897, -0.014028866775333881, 0.02345035783946514, 0.00891940575093031, 0.013895961456000805, 0.02889946475625038, -0.004666443914175034, -0.006482813041657209, 0.03552995249629021, -0.0038062529638409615, 0.017011847347021103, -0.007025508675724268, -0.016819871962070465, 0.006881528068333864, 0.017735440284013748, 0.017381027340888977, -0.007069810293614864, -0.019064491614699364, -0.009443642571568489, 0.020009594038128853, -0.02269722893834114, -0.0007605122518725693, 0.01758776791393757, 0.013652302324771881, -0.02628566510975361, -0.0037102659698575735, -0.005559861194342375, 0.01679033786058426, -0.021781660616397858, -0.021058067679405212, -0.006080406252294779, -0.041614048182964325, -0.004485545679926872, -0.023819539695978165, 0.005519251339137554, -0.013201901689171791, 0.007834014482796192, -0.01402148324996233, 0.03615017607808113, -0.031158851459622383, -0.021707825362682343, -0.013098531402647495, -0.015151175670325756, 0.0016290098428726196, -0.02135341241955757, 0.006264996714890003, 0.02653670869767666, 0.01459740474820137, 0.00561154680326581, -0.0031103473156690598, 0.016686968505382538, -0.02594601921737194, 0.0097463708370924, -0.025207659229636192, -0.019020190462470055, 0.01416915562003851, 0.007055043242871761, -0.011584890075027943, -0.004740280099213123, -0.029460620135068893, -0.014405431225895882, -0.017115216702222824, 0.00019866536604240537, 0.009620849043130875, -0.0032875542528927326, -0.0027282454539090395, -0.006567724514752626, -0.0070181251503527164, 0.011828550137579441, 0.002041569212451577, 0.04793442413210869, 0.0005473103956319392, 0.010285374708473682, -8.900716056814417e-05, 0.018178457394242287, -0.018163690343499184, -0.010292758233845234, 0.016878942027688026, -0.0031804917380213737, 0.0033466231543570757, 0.008446854539215565, 0.0044117094948887825, 0.01603720895946026, 0.0029940553940832615, -0.0018579019233584404, 0.012160812504589558, 0.002460589399561286, -0.020112965255975723, -0.013290504924952984, 0.023922909051179886, -0.00367519399151206, 0.006682170554995537, 0.008040755987167358, 0.0038394792936742306, 0.01422084029763937, 0.012374937534332275, 0.005471257958561182, -0.020777489989995956, 0.009665151126682758, 0.0009644845849834383, 0.012153428979218006, 0.005120536312460899, -0.03089304082095623, 0.040668945759534836, 0.0028519209008663893, -0.0008269647951237857, -0.00013509707059711218, 0.01292132493108511, -0.002237234963104129, -0.010300141759216785, -0.0252519603818655, -0.01930076628923416, -0.0009654075256548822, 0.005438031628727913, -0.03210395574569702, -0.0038985481951385736, 0.020777489989995956, 0.022564323619008064, 0.004467086400836706, 0.006726472172886133, -0.00043424879550002515, 0.02003912813961506, -0.012707199901342392, -0.006113632582128048, 0.017824044451117516, 0.014641706831753254, 0.01603720895946026, -0.01159965805709362, -0.021264808252453804, -0.0013170521706342697, 0.009044927544891834, -0.007180564571171999, 0.018473802134394646, 0.011031119152903557, -0.0057739862240850925, -0.0023442974779754877, 0.0073097781278193, 0.01913832686841488, -0.009916193783283234, -0.006438511423766613, 0.008897255174815655, -0.004832575563341379, -0.01001956406980753, -0.01563849486410618, -0.00348691176623106, -0.013925496488809586, -0.031720004975795746, -0.008705280721187592, -0.019271232187747955, 0.010558567941188812, -0.004478162154555321, -0.03118838556110859, 0.009938344359397888, -0.010868679732084274, -0.0014961047563701868, -0.0020138807594776154, 0.0006036104750819504, -0.007339312229305506, 0.011924536898732185, 0.0026359502226114273, -0.011614425107836723, -0.012500458396971226, -0.029076671227812767, 0.011503670364618301, 0.013674452900886536, -0.016509760171175003, -0.001170302857644856, -0.012146045453846455, -0.0010549338767305017, 0.015136408619582653, 0.008882488124072552, 0.004419093020260334, -0.0018579019233584404, -0.012869639322161674, -0.012707199901342392, -0.030509093776345253, -0.009096612222492695, 0.006250229198485613, -0.008638828061521053, 0.011769481003284454, -0.013157600536942482, -0.005127919837832451, -0.015151175670325756, 0.01100158505141735, 0.008683130145072937, 0.006730164401233196, 0.011385533027350903, 0.00884556956589222, 0.011880234815180302, 0.017513932660222054, -0.01674603670835495, 0.013172367587685585, 0.028161104768514633, -0.0031361901201307774, 0.01944843865931034, 0.0018800527323037386, 0.0017637608107179403, -0.00039248523535206914, 0.002270461292937398, -0.012101743370294571, 0.003931774292141199, -0.02469080500304699, -0.011791631579399109, -0.006482813041657209, -0.014708159491419792, -0.00832133274525404, -0.00016670816694386303, -0.010388744994997978, 0.020467378199100494, -0.02099899761378765, -0.01944843865931034, 0.0355004146695137, 0.027585182338953018, 0.014575254172086716, 0.007856165058910847, 0.010935132391750813, -0.016805104911327362, 0.011680877767503262, 0.001420422806404531, 0.019463207572698593, -0.00965038314461708, -0.0015302540268748999, 0.00012321406393311918, 0.014302060008049011, -0.004371099639683962, -0.003084504744037986, -0.010433047078549862, 0.01429467648267746, -0.02680251933634281, 0.0033410852774977684, -0.004740280099213123, -0.010647171176970005, 0.019581343978643417, 0.016111046075820923, -0.0023092252667993307, -0.02584264986217022, -0.007461141794919968, 0.036415982991456985, -0.016480226069688797, -0.016066744923591614, -0.012958242557942867, -0.0012210651766508818, -0.028131568804383278, 0.02829400822520256, 0.001504411338828504, 0.021117135882377625, 0.0009626387036405504, 0.013777824118733406, -0.01282533723860979, -0.0036511970683932304, -0.004360023885965347, 0.0009215673198923469, 0.022357583045959473, -0.01590430550277233, -0.0069479807280004025, 0.029180042445659637, -0.0016585442936047912, 0.013807358220219612, 0.006479121278971434, 0.0032487902790308, 0.015682796016335487, 0.010425662621855736, -0.010226305574178696, -0.01467124093323946, -0.0029663669411092997, 0.01953704282641411, 0.0015154867433011532, -0.006032412871718407, -0.040166862308979034, 0.029357248917222023, 0.01171779539436102, 0.011304313316941261, -0.012242032214999199, 0.018680542707443237], "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4": [-0.032737329602241516, -0.0014960007974877954, -0.010667135939002037, 0.02354946918785572, -0.030655937269330025, -0.03797054663300514, 0.00281545496545732, 0.029124626889824867, -0.005441354587674141, -0.006355680525302887, 0.04950740560889244, 0.012391718104481697, -0.0013445423683151603, 0.008489107713103294, 0.0013677721144631505, 0.011574028991162777, -0.0015433896332979202, 0.002787579083815217, 0.011090848594903946, -0.03136955574154854, 0.0852181538939476, -0.037643469870090485, -0.0349971279501915, 0.013670288026332855, -0.014710984192788601, 0.006065772380679846, -0.02430769056081772, 0.0018258643103763461, -0.01776617020368576, -0.018241917714476585, 0.024248221889138222, -0.009418300352990627, -0.009767677634954453, -0.0058167483657598495, -0.012874898500740528, -0.024352291598916054, 0.021973557770252228, 0.00390261085703969, 0.006600987631827593, 0.020025968551635742, -0.020828790962696075, 0.04724760726094246, -0.006259044166654348, 0.01732015796005726, -0.03615675866603851, 0.0014356032479554415, -0.026240412145853043, 0.009366265498101711, -0.0036721709184348583, -0.011692965403199196, 0.0021297105122357607, 0.030403196811676025, -0.0015619734767824411, 0.0009366265730932355, 0.04944793879985809, -0.032112911343574524, 0.04623664543032646, 0.09116499125957489, 0.008942553773522377, -0.0546514168381691, -0.0075450474396348, -0.0018565277568995953, -0.009864313527941704, -0.021527543663978577, 0.0009236179175786674, -0.003413855331018567, -0.01845005713403225, 0.007128769066184759, -0.04156837984919548, -0.006478333845734596, -0.01732015796005726, 0.013551351614296436, -0.011819335632026196, 0.016011854633688927, 0.007916725240647793, 0.0012033049715682864, 0.008236367255449295, 0.018583860248327255, 0.030566735193133354, -0.027058102190494537, -0.0076416837982833385, 0.020115170627832413, 0.010124487802386284, 0.0027151021640747786, 0.07350289076566696, 0.021542411297559738, 0.03148849308490753, -0.040587153285741806, -0.013127638958394527, -0.0377921387553215, -0.029198963195085526, 0.0065972707234323025, 0.000971935922279954, -0.03443217650055885, 0.009225028567016125, 0.01914880983531475, -0.01621999405324459, -0.004605080932378769, 9.86106097116135e-05, -0.004657115787267685, -0.0031350974459201097, 0.005742412991821766, -0.011544294655323029, -0.0008543930016458035, 0.016918746754527092, -0.009507503360509872, 0.0026296162977814674, 0.013982497155666351, -0.03001665137708187, 0.04736654460430145, 0.054294608533382416, -0.05786271020770073, 0.005831615533679724, 0.016101056709885597, -0.06131187453866005, -0.02027870900928974, -0.011090848594903946, -0.035829685628414154, 0.0162943284958601, -0.03529446944594383, -0.0010843683267012239, -0.00556029099971056, 0.061787620186805725, -0.013521617278456688, 0.0010936602484434843, 0.017052551731467247, -0.005341001786291599, 0.03654330596327782, 0.008897952735424042, -0.004712867084890604, -0.006043471395969391, -0.029540905728936195, 0.0206057857722044, -0.024129284545779228, 0.004088449291884899, 0.03716772049665451, 0.03300493583083153, 0.0358891524374485, 0.001925288001075387, 0.020635519176721573, -0.06464210152626038, -0.035056594759225845, -0.031607430428266525, 0.01672547496855259, -0.0002943218860309571, -0.0056569273583590984, -0.043501101434230804, 0.019981367513537407, -0.01362568698823452, 0.009544670581817627, -0.04144944250583649, -0.013261443004012108, -0.026240412145853043, 0.004270571283996105, 0.061787620186805725, -0.03585941717028618, -0.02551192417740822, 0.03493765741586685, 0.008905386552214622, 0.03490792587399483, 0.041954923421144485, -0.05036969855427742, 0.00014797398762311786, 0.03838682174682617, 0.034283507615327835, 0.04320375993847847, 0.06339326500892639, 0.015640176832675934, -0.017230955883860588, 0.028247468173503876, 0.032796796411275864, -0.044452596455812454, 0.04525541886687279, 0.011351021938025951, -0.0027392611373215914, -0.0008121147402562201, 0.04469046741724014, -0.004987908527255058, 0.04611770808696747, -0.03187503665685654, -0.02646341733634472, -0.017558032646775246, -0.0005277816671878099, -0.008875652216374874, -0.004099599551409483, 0.012272781692445278, -0.017825638875365257, 0.016145657747983932, 0.002060950268059969, 0.003599693765863776, -0.01090500969439745, 0.009284497238695621, -0.0013398963492363691, 0.016443001106381416, -0.014889389276504517, -0.037227191030979156, -0.00780522171407938, -0.030254526063799858, -0.002066525397822261, 0.041687317192554474, 0.020903127267956734, -0.03817868232727051, -0.05078597366809845, 0.03223184868693352, -0.024337423965334892, 0.0038208418991416693, -0.009076357819139957, -0.0407060906291008, 0.026626955717802048, -0.022374968975782394, 0.03511606529355049, -0.02682022750377655, 0.028083931654691696, 0.01409399975091219, 0.005861349869519472, 0.026701292023062706, -0.008340436965227127, 0.0503399632871151, 0.019267747178673744, -0.007533897180110216, 0.0033841209951788187, 0.010696870274841785, -0.010377228260040283, -0.01004271861165762, -0.05141039192676544, 0.01262959185987711, 0.004582779947668314, 0.030745139345526695, -0.021245069801807404, -0.023594070225954056, 0.023906279355287552, -0.026597222313284874, -0.01819731667637825, -0.0017784754745662212, -0.0024958124849945307, 0.027875792235136032, 0.004999058786779642, 0.006203292869031429, -0.005508256610482931, -0.03125062212347984, -0.028782684355974197, 0.04802069813013077, -0.0049024224281311035, -0.009068924002349377, 0.0013408255763351917, 0.010540765710175037, 0.008637778460979462, 0.065950408577919, 0.012674192897975445, 0.005638343282043934, -0.04629611596465111, 0.021750550717115402, -0.0007136202766560018, 0.023222392424941063, 0.01410143356770277, 0.018435189500451088, 0.032291315495967865, -0.024292822927236557, -0.00390632776543498, 0.014815053902566433, 0.02612147480249405, 0.028857018798589706, -0.025660594925284386, -0.005552857648581266, 0.07035106420516968, -0.01957995630800724, 0.009619006887078285, 0.014629215002059937, 0.0075115966610610485, 0.03987353295087814, 0.018821734935045242, -0.012302516028285027, -0.0038728765211999416, 0.003560667857527733, 0.007299740798771381, 0.001925288001075387, -0.006578686647117138, 0.014257538132369518, 0.027043234556913376, 0.016963347792625427, -0.0030105854384601116, 0.004724017344415188, 0.023921145126223564, 0.04332269728183746, 0.05685174837708473, 0.03461058437824249, -0.013462148606777191, -0.00614382466301322, -0.03502685949206352, -0.030507266521453857, 0.005861349869519472, -0.026091741397976875, 0.033926695585250854, 0.033064406365156174, 0.03475925326347351, -0.017528297379612923, 0.0013073745649307966, -0.0004476387402974069, 0.018524393439292908, 0.005028792656958103, 0.012205880135297775, -0.013068171218037605, -0.006050905212759972, -0.013655421324074268, 0.020576050505042076, -0.005798164755105972, 0.004932156763970852, 0.013432415202260017, -0.0344916470348835, 0.0455230250954628, 0.04133050516247749, -0.01435417402535677, 0.004935873672366142, -0.004173935391008854, 0.020159771665930748, -0.0004023405781481415, -0.01769183576107025, -0.023490000516176224, -0.011566595174372196, -0.027831189334392548, -0.00681656040251255, 0.010317759588360786, -0.028232602402567863, 0.01923801377415657, 0.016175393015146255, -0.04067635536193848, 0.032648127526044846, -0.00019873116980306804, -0.03657303750514984, -0.0277717225253582, -0.04900192469358444, 0.0009013172821141779, -0.034521378576755524, -0.03276706486940384, -0.04219279810786247, -0.01016908884048462, -0.04379844292998314, -0.02784605696797371, 0.0005547282635234296, -0.018643328920006752, -0.009351398795843124, -0.030655937269330025, 0.025155114009976387, -0.010629968717694283, 0.009336532093584538, -0.009574404917657375, 0.008050528354942799, 0.006032321136444807, -0.03597835451364517, 0.015848316252231598, 0.0009041048469953239, -0.015417170710861683, 0.016591671854257584, 0.013350646011531353, 0.04977501183748245, -0.0075376140885055065, -0.03933831676840782, 0.01965429075062275, 0.013566218316555023, 0.0007647259044460952, -0.0018881203141063452, -0.03241025283932686, -0.033688824623823166, -0.0077606202103197575, 0.009678474627435207, 0.017112018540501595, 0.00023694422270637006, -0.022464171051979065, -0.00549710588529706, 0.006526651792228222, -0.04593930393457413, -0.01932721585035324, 0.004411808680742979, -0.02723650634288788, -0.019193410873413086, -0.008890518918633461, 0.0640474185347557, -0.014279838651418686, 0.030834341421723366, 0.025303784757852554, 0.0150900948792696, 0.004738884512335062, 0.007500446401536465, -0.0009017818374559283, 0.02475370280444622, 0.02094772830605507, 0.0014067982556298375, -0.021349139511585236, 0.013320911675691605, 0.0024512112140655518, -0.06392848491668701, 0.0069763814099133015, -0.026076873764395714, -0.007180803921073675, -0.04278748109936714, -0.02820286713540554, -0.013804092071950436, 0.004750034771859646, -0.010957044549286366, -0.014933990314602852, 0.008734414353966713, 0.029213828966021538, -0.00482808705419302, 0.011358455754816532, 0.02664182335138321, 0.008005927316844463, 0.00036540516884997487, -0.025824133306741714, 0.02690943144261837, 0.017453962936997414, 0.009767677634954453, 0.01569964550435543, 0.01621999405324459, -0.003943495452404022, 0.024114418774843216, 0.015372569672763348, -0.02638908289372921, 0.024946974590420723, -0.04002220183610916, -0.0047723352909088135, 0.005181180313229561, 0.0026946598663926125, -0.012689060531556606, 0.01039209496229887, 0.0003556486335583031, 0.033421214669942856, 0.006600987631827593, 0.000621630169916898, 0.01457718014717102, -0.007768054027110338, -0.009492636658251286, 0.04043848067522049, -0.009076357819139957, 0.0010611384641379118, -0.017037684097886086, 0.017230955883860588, 0.017721569165587425, -0.020828790962696075, -0.001577769755385816, -0.009410867467522621, -0.008347870782017708, 0.010496164672076702, -0.022404702380299568, -0.01699308305978775, -0.029109759256243706, -0.004935873672366142, -0.0440065823495388, 0.01708228513598442, 0.0019234296632930636, -0.030373461544513702, -0.01375205721706152, 0.013595952652394772, -0.0077085853554308414, -0.015268499962985516, -0.003714913735166192, -0.007768054027110338, -0.004162784665822983, -0.0292286965996027, 0.029303032904863358, -0.031072216108441353, -0.01990703120827675, 0.007139919325709343, 0.042638812214136124, -0.002304398687556386, 0.03725692629814148, -0.03193450719118118, -0.02062065154314041, 0.006311079021543264, -0.008072828873991966, -0.0007847035303711891, -0.01112058199942112, 0.000721053802408278, -0.018613595515489578, 0.004136767238378525, -0.005853916052728891, -0.009812278673052788, -0.048764050006866455, 0.0037000468000769615, -0.0057609970681369305, -0.010511031374335289, -0.0027708536945283413, -0.013595952652394772, -0.008169465698301792, -0.018420323729515076, -0.01090500969439745, -0.007991060614585876, -0.05378912761807442, -0.03300493583083153, -0.011930839158594608, 0.0025868734810501337, 0.00978997815400362, 0.005467372015118599, 0.03672171011567116, -0.0013138789217919111, 0.0033060689456760883, -0.00582418218255043, 0.006883461959660053, -0.023579202592372894, -0.030745139345526695, -0.014257538132369518, 0.008295835927128792, 0.008005927316844463, -0.0025720063131302595, 0.016874145716428757, -0.0038468593265861273, 0.008347870782017708, -0.0431145578622818, 0.029466569423675537, -0.003294918453320861, -0.014153468422591686, -0.03529446944594383, 0.03148849308490753, -0.020159771665930748, 0.016368664801120758, -0.0030960713047534227, -0.0005774934543296695, -0.04296588525176048, -0.036602772772312164, 0.04338216409087181, -0.0002101137797581032, -0.016101056709885597, -0.012904632836580276, -0.006515501532703638, -0.00931423157453537, 0.0037186306435614824, 0.0006787755410186946, 0.0017784754745662212, -0.029362499713897705, 0.020932860672473907, -0.004924722947180271, -9.86106097116135e-05, 0.0028563393279910088, -0.019788095727562904, 0.01039209496229887, 0.01275596208870411, -0.004883838817477226, -0.029793646186590195, 0.01013935450464487, 0.021155867725610733, 0.018732530996203423, -0.018137848004698753, -0.005783297587186098, -0.0024251937866210938, -0.003733497578650713, -0.005448787938803434, 0.03327254578471184, 0.012993835844099522, 0.03214264661073685, 0.01164093054831028, 0.04424445703625679, 0.006158691365271807, 0.008117430843412876, -0.02459016442298889, -0.0035197832621634007, 0.004671982489526272, -0.01038466114550829, -0.00595055241137743, -0.006058338563889265, -0.005095694679766893, -0.016264595091342926, -0.013685155659914017, -0.009202728047966957, 0.01569964550435543, 0.014473111368715763, 0.008912819437682629, -0.002646341919898987, -0.03767320141196251, 0.028857018798589706, -0.027727121487259865, 0.017052551731467247, 0.017572898417711258, 0.0004374176205601543, 0.035413406789302826, 0.016606537625193596, 0.0019290047930553555, 0.026091741397976875, -0.01361825317144394, 0.024099551141262054, -0.012584990821778774, 0.0003844536258839071, 0.00978997815400362, -0.036245960742235184, -0.001475558616220951, -0.002562714507803321, -0.027295975014567375, -0.008808749727904797, -0.02906515821814537, -0.014257538132369518, 0.00450844457373023, -0.005103128030896187, 0.0031109382398426533, 0.04944793879985809, -0.027890658006072044, 0.006478333845734596, -0.016368664801120758, 0.028321804478764534, 0.004434109199792147, 0.0010193247580900788, 0.02640395052731037, -0.0008650787058286369, 0.03202370926737785, 0.029600374400615692, 0.002492095809429884, -0.04251987487077713, -0.021111266687512398, 0.0003925840719603002, 0.016071323305368423, 0.03145876154303551, -0.018301386386156082, 0.015892917290329933, 0.008437072858214378, -0.006333380006253719, 0.028173133730888367, -0.0058687832206487656, 0.022315500304102898, -0.008868218399584293, 0.006151258014142513, 0.01837572269141674, 0.004211103077977896, -0.0030756290070712566, 0.018910937011241913, -0.04510674625635147, 0.03904097527265549, -0.0025441306643188, 0.045314885675907135, 0.006154974922537804, 0.0076416837982833385, 0.006708773784339428, -0.004913572687655687, 0.009641307406127453, -0.03826788812875748, -0.032202113419771194, 0.005400469992309809, -0.02033817768096924, 0.02554165944457054, -0.0015898493584245443, -0.02441176027059555, 0.027786588296294212, -0.003675887593999505, -0.00875671487301588, -0.019297480583190918, -0.003058903617784381, 0.027310842648148537, 0.037821874022483826, -0.010325193405151367, 0.021319406107068062, 0.00805796217173338, 0.017721569165587425, 0.026255277916789055, 0.010548199526965618, -0.02560112625360489, -0.0030310277361422777, -0.02078418992459774, 0.01568477787077427, 0.026493152603507042, -0.01769183576107025, 0.010206256061792374, 0.03520526736974716, 0.011938272044062614, -0.006593553815037012, 0.05572184920310974, -0.03434297442436218, -0.006567536387592554, 0.005244365427643061, -0.003064478747546673, -0.02525918371975422, 0.004382074344903231, 0.020070569589734077, 0.03128035366535187, 0.020130038261413574, -0.00978254433721304, -0.03672171011567116, 0.018316254019737244, -0.00390632776543498, 0.005471088457852602, 0.008362737484276295, 0.02647828496992588, -0.0207990575581789, 0.0012646317481994629, 0.005675510969012976, -0.015640176832675934, -0.026835095137357712, -0.03701905161142349, 0.027132436633110046, -0.0220627598464489, -0.006972664501518011, -0.01699308305978775, 0.009210161864757538, -0.0099237821996212, -0.016056455671787262, -0.012778262607753277, -0.005775863770395517, -0.001416090177372098, 0.02087339200079441, 0.014339307323098183, -0.0036405783612281084, 0.012674192897975445, -0.02500644326210022, 0.03749479725956917, -0.018568994477391243, -0.028648879379034042, -0.024114418774843216, 0.04192519187927246, -0.012845165096223354, 0.019356949254870415, 0.0220032911747694, -0.012741095386445522, -0.015729380771517754, -0.0021798869129270315, -0.003495624288916588, -0.00042464121361263096, 0.030403196811676025, -0.024976709857583046, 0.0517374686896801, 0.008451939560472965, 0.016517335548996925, -0.008518842048943043, 0.020992329344153404, -0.022553373128175735, 0.019713759422302246, 0.0007679780828766525, 0.015744246542453766, 0.007530180271714926, -0.04709893837571144, -0.006987531669437885, 0.023846810683608055, -0.013484449125826359, 0.016948482021689415, -0.0010323334718123078, 0.010852974839508533, 0.022033026441931725, -0.002947400324046612, -0.0037242057733237743, -0.0014690542593598366, -0.007768054027110338, -0.01922314614057541, -0.011521994136273861, -0.004162784665822983, 0.0016130791045725346, -0.027474381029605865, -0.005794447846710682, -0.014383908361196518, 0.05111305043101311, -0.049269530922174454, -0.01396762952208519, -0.002306257141754031, 0.03597835451364517, -0.012332250364124775, -0.00767885148525238, 0.04026007652282715, 0.02707296796143055, -0.025853866711258888, 0.03707851842045784, 0.01941641792654991, -0.015922652557492256, -0.011521994136273861, 0.030284259468317032, 0.01880686730146408, -0.0014718418242409825, 0.03904097527265549, 0.0005091977654956281, -0.005259232595562935, -0.0040661487728357315, -0.04219279810786247, 0.018405456095933914, 0.01828651875257492, -0.0065712532959878445, 0.032053444534540176, 0.039011240005493164, -0.011083414778113365, 0.0412115715444088, 0.028574544936418533, 0.010020418092608452, 0.037643469870090485, -0.017394494265317917, -0.004943307023495436, -0.01672547496855259, -0.012949234806001186, -0.017052551731467247, -0.0014411783777177334, -0.02957063913345337, -0.0531349740922451, 0.022984519600868225, -0.009775110520422459, 0.036691974848508835, -0.025378121063113213, 0.03371855616569519, -0.013335778377950191, -0.026270145550370216, 0.0037000468000769615, 0.0068983291275799274, 0.0010750764049589634, -0.00489498907700181, 0.02001110091805458, 0.003155539510771632, -0.024783436208963394, -0.005668077617883682, -0.005649493541568518, 0.003939778544008732, -0.011997740715742111, 0.01126181986182928, 0.01124695222824812, 0.0431145578622818, 0.03933831676840782, 0.015446905046701431, -0.012800563126802444, 0.0039880964905023575, 0.007043283432722092, -0.02319265902042389, -0.0010286166798323393, -0.02069498784840107, -0.008526275865733624, -0.00674965837970376, 0.03493765741586685, -0.02396574802696705, 0.010689436458051205, 0.004255704116076231, 0.006355680525302887, 0.03594861924648285, 0.010436696000397205, -0.01965429075062275, -0.003869159845635295, 0.0018109972588717937, 0.019386684522032738, -0.011455091647803783, -0.017037684097886086, 0.01870279759168625, -0.001971747726202011, 0.010629968717694283, 0.0012386143207550049, 0.0019475886365398765, -0.01387842744588852, -0.008786449208855629, 0.029288165271282196, -0.009596705436706543, 0.022404702380299568, -0.015387437306344509, -0.0304329302161932, -0.03252919018268585, 0.01846492476761341, -0.01889606937766075, -0.04837750643491745, -0.0064671835862100124, -0.0069763814099133015, -0.0003742325061466545, 0.02354946918785572, 0.009619006887078285, 0.015803715214133263, 0.05236188694834709, 0.04266854375600815, 0.02310345508158207, -0.023668404668569565, 0.008905386552214622, 0.0136331208050251, -0.026597222313284874, -0.009514937177300453, -0.020486848428845406, 0.017721569165587425, -0.026968898251652718, -0.0032410253770649433, 0.023757608607411385, -0.003320935880765319, 0.00019710508058778942, 0.011797035112977028, -0.009842013008892536, 0.013662854209542274, -0.00680912658572197, -0.010719170793890953, 0.024218488484621048, -0.012124110944569111, -0.007716019172221422, 0.015052927657961845, 0.016680873930454254, 0.007775487378239632, -0.0007740178261883557, 0.034283507615327835, -0.0035513758193701506, 0.013506750576198101, -0.01810811460018158, -0.013581085950136185, -0.013268876820802689, 0.042044125497341156, 0.005935685243457556, 0.014904256910085678, -0.029778778553009033, 0.006972664501518011, -0.0044972943142056465, -0.0014021523529663682, -0.009745377115905285, -0.012049775570631027, -0.010838108137249947, -0.009381133131682873, -0.030135588720440865, -0.012614725157618523, -0.009239895269274712, -0.012592424638569355, 0.00880131684243679, -0.009284497238695621, 0.0009454539394937456, 0.020144905894994736, 0.0020442246459424496, -0.016071323305368423, -0.04144944250583649, -0.0232075247913599, 0.027920393273234367, -0.04332269728183746, 0.025482190772891045, 0.00562347611412406, 0.0030700538773089647, 0.04718814045190811, 0.0393085815012455, -0.006418865639716387, -0.024946974590420723, -0.03386722877621651, 0.048674847930669785, 0.0023861676454544067, 0.0025998821947723627, -0.028857018798589706, -0.006010020617395639, 0.011016513220965862, 0.01706741750240326, 0.011016513220965862, 0.01931234821677208, 0.011908537708222866, -0.00502135930582881, 0.005894800648093224, -0.014123734086751938, -0.02114100009202957, 0.008548576384782791, 0.036870379000902176, 0.011752434074878693, -0.0021241353824734688, 0.007976192981004715, -0.016532203182578087, 0.007530180271714926, 0.0021482943557202816, -0.026775626465678215, -0.026522886008024216, -0.03805974870920181, -0.012458620592951775, -0.015008325688540936, -0.026939164847135544, 0.027489246800541878, -0.008503974415361881, -0.014257538132369518, -0.021423475816845894, 0.005957985762506723, 0.002999435178935528, 0.016145657747983932, 0.011715265922248363, 0.005537990480661392, 0.02622554451227188, -0.0007572923204861581, -0.028663747012615204, -0.0009802986169233918, 0.01715661957859993, -0.017959443852305412, -0.002421477111056447, -0.009559538215398788, -0.01577398180961609, 0.0018713948084041476, 0.010800939984619617, 0.043679505586624146, 0.015550974756479263, -0.022360101342201233, 0.018851468339562416, -0.020724721252918243, 0.016859278082847595, -0.016948482021689415, -0.00828096829354763, -0.008749281987547874, -0.01409399975091219, 0.026418816298246384, 0.03502685949206352, 0.00840733852237463, 0.0009933073306456208, -0.009968383237719536, -0.03380775824189186, 0.003019877476617694, -0.00831813644617796, 0.026939164847135544, 0.0057089622132480145, -0.02338593080639839, -0.016666006296873093, -0.004686849657446146, 0.025051044300198555, -0.028143398463726044, 0.02286558225750923, -0.03395643085241318, 0.005441354587674141, -0.012689060531556606, -0.019594823941588402, 0.0019085624953731894, -0.014725851826369762, 0.0220032911747694, -0.0028303221333771944, -0.003477040445432067, -0.047039467841386795, 0.0008766936371102929, -0.04950740560889244, -0.01285259798169136, 0.0013138789217919111, -0.0038208418991416693, 0.050845444202423096, 0.01039952877908945, -0.00310350488871336, 0.004969324450939894, -0.015402304008603096, -0.022374968975782394, 0.0033320863731205463, -0.02207762748003006, -0.0005449717282317579, 0.0033135025296360254, 0.008139731362462044, -0.022033026441931725, 0.010087319649755955, 0.011834202334284782, -0.02432255819439888, -0.019505620002746582, 0.016101056709885597, -0.028946222737431526, -0.018241917714476585, 0.00022974297462496907, -0.021691082045435905, -0.013937896117568016, 0.005326134618371725, 0.013640553690493107, 0.012309949845075607, 0.00444154255092144, -0.007530180271714926, -0.01052589900791645, -0.0033841209951788187, -0.00814716424793005, -0.011521994136273861, -0.009938648901879787, -0.033421214669942856, -0.01845005713403225, -0.07439491152763367, -0.02001110091805458, -0.012741095386445522, 0.04397684708237648, 0.010934744030237198, -0.02148294262588024, 0.002280239714309573, 0.012986402027308941, -0.028648879379034042, 0.03330227732658386, -0.008563443087041378, -0.033778026700019836, -0.0004392760165501386, 0.029347633942961693, 0.019371816888451576, -0.0036851796321570873, 0.011588895693421364, 0.01801891252398491, 0.010057585313916206, -0.013135072775185108, -0.026166075840592384, 0.00010859943722607568, 0.028931355103850365, -0.0076416837982833385, 3.386473053978989e-06, 0.035324204713106155, -0.04555276036262512, 0.007217971608042717, -0.009975817054510117, -0.010065019130706787, 0.006868595257401466, 0.015045493841171265, -0.009849445894360542, -0.003586685284972191, 0.03731639310717583, 0.008764148689806461, 0.03125062212347984, 0.0036926132161170244, 0.02622554451227188, 0.027132436633110046, 0.008139731362462044, -0.005318700801581144, -0.021780285984277725, -0.014763019047677517, 0.0033450950868427753, -0.000623023952357471, 0.02371300756931305, -0.011588895693421364, 0.0057089622132480145, 0.018167583271861076, 0.025318652391433716, -0.00011080627155024558, 0.008080262690782547, -0.016502467915415764, -0.027132436633110046, 0.011075980961322784, 0.006783109158277512, -0.017097152769565582, 0.010689436458051205, -0.0038542926777154207, 0.07516799867153168, 0.012845165096223354, -0.01225048117339611, 0.0103028928861022, 0.009671040810644627, 0.02128967083990574, 0.040587153285741806, 0.02689456380903721, -0.003932345192879438, 0.01992189884185791, 0.02896108850836754, -0.004642248619347811, 0.01792970858514309, 0.02285071462392807, -0.00991634838283062, 0.01039209496229887, 0.011878804303705692, -0.01734989322721958, 0.03131008893251419, 0.004790919367223978, -0.013997363857924938, 0.0035179248079657555, -0.001975464401766658, 0.003482615575194359, -0.005274099763482809, 0.004054998513311148, 0.00502135930582881, -0.029080025851726532, -0.00045855678035877645, 0.011046246625483036, 0.017870239913463593, 0.0104292631149292, 0.022612841799855232, 0.017141753807663918, -0.02286558225750923, 0.060063038021326065, 0.004181368742138147, -0.02189922146499157, -0.0068983291275799274, 0.015112395398318768, -0.010823240503668785, -0.01587805151939392, -0.004244553856551647, -0.03856522962450981, -0.0076714176684618, -0.014279838651418686, -0.0230142530053854, 0.03794081136584282, -0.02957063913345337, -0.003809691406786442, -0.018390588462352753, 0.01965429075062275, -0.013722322881221771, 0.016338931396603584, -0.022716911509633064, -0.006838860921561718, 0.004326323047280312, -0.006504351273179054, -0.0225087720900774, 0.009894047863781452, 0.0013928604312241077, 0.01992189884185791, -0.01375205721706152, -0.037137988954782486, -0.012964101508259773, -0.0034231471363455057, -0.010221123695373535, -0.015491506084799767, 0.01051846519112587, 0.03104248084127903, -0.003800399601459503, 0.013410113751888275, -0.021111266687512398, 0.002010773867368698, 0.0010035284794867039, 0.021512677893042564, 0.025333520025014877, 0.0011512702330946922, 0.02725137397646904, -0.023341329768300056, 0.01889606937766075, -0.01888120360672474, -0.0026519170496612787, 0.0017208654899150133, 0.00023404050443787128, 0.0023657255806028843, -0.012176145799458027, -0.020457115024328232, -0.00198475643992424, 0.0007828451343812048, 0.001136403065174818, -0.005117995198816061, 0.02551192417740822, -0.0019234296632930636, 0.005225781816989183, -0.0339861661195755, -0.020932860672473907, 0.02078418992459774, -0.0025608560536056757, 0.006132673937827349, -0.030507266521453857, 0.0036052691284567118, 0.005170030053704977, -0.018137848004698753, 0.02112613245844841, -0.015313101932406425, -0.012198446318507195, -0.017453962936997414, -0.021081531420350075, 0.00041627848986536264, 0.0007145494455471635, 0.02899082377552986, -0.005196047481149435, 0.027013501152396202, 0.0015340977115556598, -0.021765418350696564, -0.023326462134718895, -0.024292822927236557, 0.019193410873413086, -0.010458996519446373, 0.0030700538773089647, 0.0036034106742590666, 0.005861349869519472, 0.02139374054968357, -0.0008952774805948138, 0.02252363972365856, -0.017453962936997414, -0.00569409504532814, 0.018643328920006752, 0.0056829447858035564, -0.008637778460979462, 0.010421829298138618, -0.012034907937049866, -0.008868218399584293, 0.004735167603939772, 0.012354550883173943, 0.025080779567360878, 0.03835709020495415, -0.029258430004119873, 0.006957797333598137, 0.0008181544835679233, -0.004374640993773937, 0.03553234040737152, 0.00307191233150661, -0.005337284877896309, 0.0034417309798300266, -0.004177651833742857, 0.008741848170757294, 0.026195811107754707, -0.016889013350009918, -0.019728627055883408, -0.009024322964251041, 0.0021668781992048025, -0.0020572333596646786, -0.001632592175155878, -0.0050064921379089355, -0.009946082718670368, 0.00819176621735096, 0.024857772514224052, -0.004880121909081936, 0.033778026700019836, 0.0025720063131302595, 0.020501716062426567, -0.03235078603029251, -0.005013925489038229, 0.005943118594586849, -0.01733502559363842, -0.04992368444800377, -0.02302912063896656, -0.01462178211659193, 0.009544670581817627, -0.004883838817477226, 0.011492259800434113, 0.00435234047472477, 0.0006745941354893148, 0.001008174498565495, -0.0034157135523855686, -0.026968898251652718, 0.01199030689895153, 0.002925099804997444, -0.006482050754129887, -0.019015006721019745, -0.01827165298163891, 0.0020683836191892624, 0.023415664210915565, 0.016874145716428757, -0.02430769056081772, 0.004668266046792269, 0.02233036793768406, -0.013551351614296436, 0.012272781692445278, 0.006820276845246553, -0.02845560759305954, -0.012651892378926277, -0.011737566441297531, -0.010808373801410198, 0.00866751279681921, -0.015186730772256851, -0.003265184350311756, -0.03904097527265549, -0.009886614046990871, 0.01277082972228527, 0.02588360197842121, -0.004738884512335062, 0.029377367347478867, -0.02207762748003006, 0.0075450474396348, 0.017305292189121246, 0.028946222737431526, -0.019951634109020233, 0.008333003148436546, -0.0028619146905839443, -0.013521617278456688, -0.019029874354600906, 0.008117430843412876, 0.02604714035987854, -0.015038060024380684, -0.012183579616248608, 0.007768054027110338, 0.009871747344732285, -0.013558785431087017, -0.003155539510771632, -0.02931789867579937, 0.020903127267956734, 0.0015759114176034927, 0.007032133173197508, -0.0036665957886725664, 0.0005157021223567426, 0.025749797001481056, -0.0027652785647660494, -0.007991060614585876, 0.017543165013194084, 0.02809879742562771, 5.203481123317033e-05, 0.024203620851039886, -0.0018927662167698145, 0.014383908361196518, 0.007333191577345133, 0.02249390445649624, -0.017795905470848083, 0.01423523761332035, -0.012912066653370857, -0.038862571120262146, -0.012666760012507439, 0.00111038563773036, -0.0002699305769056082, 0.002311832271516323, 0.0033896963577717543, 0.010592800565063953, 0.011878804303705692, -0.00892768707126379, 0.00043253935291431844, -0.011358455754816532, -0.02464963309466839, 0.002060950268059969, 0.021973557770252228, -0.008340436965227127, 0.013172240927815437, -0.015744246542453766, -0.014718418009579182, 0.009552104398608208, -0.010734038427472115, 0.03871389850974083, -0.004683132749050856, -0.04198465868830681, -0.011150316335260868, -0.013083037920296192, 0.006831427104771137, 0.0006462537567131221, 0.012280215509235859, -0.008095129393041134, 0.011135449633002281, 0.00608063954859972, -0.0074855792336165905, 0.00010610223398543894, -0.006433732807636261, -0.016606537625193596, 0.012815430760383606, -0.003445447888225317, -0.007559914607554674, 0.0031704066786915064, 0.02328186109662056, -0.016606537625193596, -0.013395247049629688, 0.02285071462392807, 0.011834202334284782, 0.009589272551238537, 0.026151210069656372, 0.009908914566040039, -0.021274803206324577, 0.011499693617224693, 0.006786826066672802, 0.018152715638279915, -0.008139731362462044, 0.01586318388581276, 0.016621405258774757, -0.009306797757744789, -0.011789601296186447, -0.04320375993847847, -0.015075228177011013, -0.02829206921160221, 0.010488730855286121, 0.004084732849150896, 0.0203530453145504, -0.030774874612689018, 0.015104962512850761, 0.008890518918633461, -0.03422403708100319, 0.004300305619835854, -0.002659350400790572, 0.0048764050006866455, 0.006831427104771137, -0.016190258786082268, -0.02329672873020172, -0.0025720063131302595, -0.0001626087905606255, -0.010072452947497368, 0.03086407668888569, 0.0009008526685647666, -0.020813925191760063, 0.000979369506239891, 0.004586496856063604, -0.029362499713897705, -0.014027098193764687, -0.021259937435388565, 0.010436696000397205, -0.019609689712524414, 0.0018797575030475855, 0.02742977812886238, -0.010927310213446617, -0.0020962595008313656, 0.0015052927192300558, 0.023698139935731888, 0.002912091091275215, 0.010065019130706787, -0.0028823567554354668, -0.012406585738062859, 0.02207762748003006, -0.05245108902454376, 0.005288966931402683, -0.0016344506293535233, 0.018673064187169075, -0.012295082211494446, 0.009120958857238293, -0.002163161523640156, 0.024872640147805214, -0.004058715421706438, -0.018004044890403748, -0.00905405730009079, 0.007533897180110216, -0.024099551141262054, -0.014852222055196762, 0.00888308510184288, -0.005262949503958225, -0.012644459493458271, -0.010154221206903458, -0.015104962512850761, 0.03434297442436218, 0.0015006468165665865, -0.0018695364706218243, -0.018509525805711746, -0.0048503875732421875, 0.006894612219184637, -0.01690387912094593, -0.003451023017987609, 0.012488354928791523, -0.016799811273813248, 0.005801881197839975, -0.001705998438410461, -0.010079885832965374, -0.010191389359533787, 0.03148849308490753, 0.009031756781041622, 0.01889606937766075, 0.057119354605674744, -0.03345094993710518, 0.014502844773232937, -0.03913017734885216, -0.007024699356406927, -0.0225087720900774, -0.039368052035570145, -0.027890658006072044, 0.007284873630851507, -0.019713759422302246, 0.003891460597515106, -0.019639424979686737, 0.02405495010316372, -0.003508633002638817, 0.015156997367739677, 0.015238765627145767, 0.0032373087015002966, -0.008228933438658714, -0.0015842741122469306, -0.000859503576066345, -0.002163161523640156, 0.008942553773522377, -0.017989177256822586, 0.00450844457373023, -0.026716157793998718, 0.054710887372493744, 0.0065192184410989285, 0.002698376541957259, -0.012666760012507439, 0.011826769448816776, -0.022270899266004562, 0.035740479826927185, 0.014421076513826847, -0.024798303842544556, -0.016324063763022423, 0.0031406725756824017, 0.0005519406986422837, -0.005103128030896187, -0.005742412991821766, 0.017989177256822586, -0.004545612260699272, -0.023668404668569565, -0.01236941758543253, -0.0006820277194492519, 0.014644082635641098, -0.01708228513598442, 0.007035849615931511, -0.02579439990222454, 0.0013993647880852222, 0.0006207009428180754, 0.01164093054831028, -0.005396753083914518, 0.016532203182578087, 0.010243424214422703, -0.016576804220676422, 0.018777133896946907, -0.016056455671787262, 0.022791247814893723, -0.0061401077546179295, -0.004389508161693811, 0.02551192417740822, -0.02293991856276989, 0.0018072804668918252, -0.013447281904518604, 0.00918786134570837, -0.0014272405533120036, -0.01897040568292141, -0.01993676647543907, -0.037197455763816833, -0.004382074344903231, -0.004043848253786564, -0.015067794360220432, -0.016353797167539597, 0.019817829132080078, 0.007834956049919128, -0.0015768406447023153, -0.0021445774473249912, 0.02112613245844841, -0.006797976326197386, 0.015402304008603096, -0.021943822503089905, -0.0027448362670838833, 0.0033450950868427753, -0.02311832271516323, -0.007519030012190342, -0.010340060107409954, -0.0036944716703146696, 0.0020442246459424496, -0.002899082377552986, -0.006586120463907719, 0.010957044549286366, 0.008593177422881126, 0.006801693234592676, 0.016695741564035416, -0.030745139345526695, -0.0024437776301056147, 0.003346953308209777, -0.010763771831989288, -0.0015824157744646072, 0.007849822752177715, 0.01568477787077427, 0.011953139677643776, 0.007649117149412632, 0.004950740374624729, 0.009552104398608208, 0.012547822669148445, -0.0315776951611042, 0.01681467704474926, -0.0011113148648291826, 0.0020721005275845528, 0.006318512838333845, 0.0726703330874443, -0.00015203921066131443, -0.008496541529893875, 0.004363490734249353, -0.010815806686878204, -0.013818958774209023, -0.005575158167630434, 0.025065911933779716, -0.009752810001373291, -0.012480921112000942, 0.014948857948184013, -0.023088589310646057, 0.015892917290329933, -0.005166313145309687, -0.02405495010316372, -0.005530557129532099, 0.0067013404332101345, 0.017736436799168587, -0.0208585262298584, 0.01672547496855259, 0.0157888475805521, 0.005653210449963808, -0.012570123188197613, 0.008764148689806461, -0.008221500553190708, -0.0031462477054446936, 0.006697623524814844, 0.004750034771859646, 0.0031239469535648823, 0.025125380605459213, 0.007504162844270468, -0.00463853171095252, -0.021349139511585236, -0.014993458986282349, 0.0012107385555282235, 0.00914325937628746, 0.008726981468498707, 0.007273723371326923, -0.007128769066184759, 0.0030440364498645067, -0.016710607334971428, -0.0057126786559820175, 0.009641307406127453, 0.001329675200395286, 0.00070386374136433, -0.016710607334971428, -0.005314984358847141, -0.004147917963564396, -0.01819731667637825, -0.010637401603162289, -0.01975836046040058, -0.01724582351744175, -0.00297341775149107, 0.011745000258088112, 0.011692965403199196, -0.013595952652394772, -0.009931215085089207, 0.0052294982597231865, -0.007597082294523716, 0.004408091772347689, -0.004081015940755606, -0.016517335548996925, -0.017810773104429245, -0.020635519176721573, -0.0029139493126422167, -0.005378169473260641, -0.005571441724896431, -0.02716217190027237, 0.00892025325447321, -0.01099421177059412, -0.0061140903271734715, 0.01923801377415657, 0.022033026441931725, -0.004861537832766771, -0.012986402027308941, 0.031101949512958527, 0.02252363972365856, 0.021958690136671066, 0.008266101591289043, 0.0011642789468169212, 0.005099411588162184, 0.0002457715745549649, -0.010072452947497368, 0.0026389083359390497, 0.0018481649458408356, 0.009619006887078285, 0.021155867725610733, -0.017290424555540085, 0.01272622775286436, -0.008169465698301792, -0.0074335443787276745, 0.01349931675940752, -0.018078379333019257, 0.001716219587251544, 0.029005689546465874, -0.007493012584745884, -0.006894612219184637, -0.03131008893251419, 0.01630919612944126, 0.0012376850936561823, 0.012584990821778774, 0.02775685489177704, 0.0022951068822294474, 0.004913572687655687, 0.009195294231176376, -0.01216127909719944, 0.02128967083990574, -0.004151634406298399, -0.01810811460018158, -0.0018184308428317308, -0.006902046035975218, 7.764569454593584e-05, -0.018316254019737244, -0.01975836046040058, -0.02516998164355755, 0.005742412991821766, 0.013818958774209023, 0.002703951671719551, -0.008875652216374874, -0.024813171476125717, -0.01983269676566124, 0.0030421779956668615, -0.007953892461955547, -0.024679366499185562, 0.026285013183951378, 0.021111266687512398, -0.01611592434346676, -0.007961326278746128, -0.008496541529893875, -0.010377228260040283, 0.01665113866329193, 0.021423475816845894, 0.011284120380878448, -0.007827522233128548, -0.0013445423683151603, -0.004225969780236483, 0.03252919018268585, -0.0017385202227160335, 0.012257914990186691, -0.003220583079382777, 0.010830674320459366, 0.009723075665533543, 0.000553799036424607, 0.0012767112348228693, -0.0037130555137991905, 0.0035532342735677958, -0.009611573070287704, -0.017572898417711258, 0.004467559978365898, -0.018063513562083244, 0.048585645854473114, -0.03642436861991882, -0.016755208373069763, 0.0052778166718780994, 0.003612702479586005, -0.001726440736092627, -0.02493210881948471, 0.006095506250858307, -0.015536108054220676, -0.009135826490819454, 0.012324816547334194, 0.015640176832675934, -0.018256785348057747, -0.00012509261432569474, 0.0006987531669437885, 0.008303268812596798, 0.003696329891681671, 0.022835848852992058, 0.009284497238695621, 0.014644082635641098, 0.0101765226572752, 0.005326134618371725, -0.001938296714797616, -0.024471228942275047, 0.006794259417802095, -0.0012367559829726815, 0.01931234821677208, 0.0039360616356134415, -0.006902046035975218, 0.014532579109072685, -0.013216841965913773, 0.0014504702994599938, 0.014852222055196762, 0.010444129817187786, -0.012488354928791523, -0.015327968634665012, 0.008355303667485714, -0.015142129734158516, -0.012005174532532692, 0.018122980371117592, -0.018955538049340248, 0.016918746754527092, -0.007916725240647793, 0.0032150079496204853, -0.024545563384890556, 0.000526387884747237, 0.005069677252322435, 0.013610819354653358, -0.010057585313916206, -0.010250858031213284, 0.020382778719067574, 0.012183579616248608, -0.005192330572754145, -0.010897575877606869, 0.004281721543520689, -0.019104208797216415, -0.016933614388108253, -0.03267786279320717, -0.008050528354942799, 0.0026444834657013416, -0.032291315495967865, -0.0165470689535141, 0.0076714176684618, 0.005474805366247892, -0.02699863351881504, 0.011789601296186447, 0.014071699231863022, 0.023668404668569565, -0.0035625260788947344, 0.010585367679595947, 0.010027850978076458, 0.022568240761756897, 0.010117053985595703, 7.079289207467809e-05, -0.02734057605266571, -0.00457162968814373, 0.004474993795156479, 0.014443377032876015, 0.028752949088811874, -0.009715642780065536, 0.029704444110393524, -0.00031360264983959496, -0.019461018964648247, 0.023073721677064896, 0.014725851826369762, 0.014264971949160099, 0.004917289596050978, -0.00028735294472426176, 0.005720112472772598, 0.008645212277770042, -0.010815806686878204, -0.011477392166852951, -0.008176898583769798, 0.012228180654346943, 0.010934744030237198, -0.006968948058784008, 0.012815430760383606, 0.009960949420928955, -0.017959443852305412, -2.6525558496359736e-05, -0.008184332400560379, -0.0021984707564115524, -0.030477531254291534, -0.004173935391008854, 0.027281107380986214, -0.009076357819139957, -0.002542272210121155, 0.009856879711151123, 0.007243989035487175, -0.015833450481295586, -0.004278004635125399, -0.010146788321435452, -0.010087319649755955, 0.004865254741162062, -0.0007382438634522259, 0.009462902322411537, -0.02784605696797371, 0.01665113866329193, 0.006582403555512428, 0.004002963658422232, 0.005158879794180393, -0.0031276638619601727, 0.021438341587781906, 0.009009456261992455, 0.00870468094944954, -0.004605080932378769, -0.002348999958485365, 0.007961326278746128, -0.009693342261016369, 0.014800187200307846, 0.0006769171450287104, 0.018613595515489578, -0.0022133379243314266, -0.013097905553877354, -0.013640553690493107, -0.024277955293655396, 0.004802069626748562, -0.0011614912655204535, -0.0157888475805521, -0.010763771831989288, 0.010971911251544952, 0.006240460556000471, 0.006099223159253597, 0.004292871803045273, -0.00324474205262959, 0.0026705008931457996, -0.005846482701599598, -0.00268536782823503, 0.020234107971191406, -0.0018221475183963776, -0.014391342177987099, -0.0315776951611042, -0.00706930086016655, -0.008295835927128792, 0.004645965062081814, 0.010280592367053032, 0.016056455671787262, 0.010986778885126114, -0.028143398463726044, 0.01734989322721958, 0.010481297969818115, -0.009693342261016369, 0.01462178211659193, 0.006285061594098806, -0.005891083739697933, -0.015298234298825264, 0.011492259800434113, 0.027206772938370705, -0.0026928014121949673, -0.0034231471363455057, -0.0009942365577444434, 0.004586496856063604, 0.0018946246709674597, 0.023058854043483734, 0.008868218399584293, 0.01396762952208519, 0.0035495173651725054, 0.017795905470848083, 0.00044368967064656317, -0.01715661957859993, 0.027221638709306717, -0.013893294148147106, -0.0069763814099133015, -0.01099421177059412, -0.008043095469474792, 0.029258430004119873, -0.009202728047966957, -0.009894047863781452, -0.014658949337899685, 0.010057585313916206, -0.0042222533375024796, 0.0010713596129789948, 0.0026351914275437593, -0.0002692336856853217, -0.010354927740991116, 0.009975817054510117, 0.004991624969989061, -0.00562719302251935, -0.011313854716718197, 0.012295082211494446, -0.002388026099652052, 0.009574404917657375, 0.01176730077713728, 0.010957044549286366, -0.008325569331645966, -0.004359773825854063, 0.0019921897910535336, -0.017721569165587425, -0.002555280923843384, 0.009329098276793957, -0.02017463929951191, 0.01436160784214735, -0.015283367596566677, -0.013469582423567772, 0.0027968711219727993, 0.015669912099838257, -0.0067533752880990505, 0.01586318388581276, -0.028663747012615204, -0.006288778502494097, -0.003430580720305443, -0.00927706342190504, -0.029169227927923203, -0.0137594910338521, -0.016606537625193596, -0.015238765627145767, 0.013097905553877354, -0.004805786535143852, -0.0044192420318722725, 0.00806539598852396, 0.02252363972365856, -0.002311832271516323, -0.024218488484621048, -0.0016000703908503056, 0.01568477787077427, 0.0024251937866210938, -0.0053298515267670155, 0.02786092460155487, -0.011826769448816776, -0.016874145716428757, 0.006928063463419676, -0.004430392291396856, 0.00030756290652789176, -0.014034532010555267, -0.00017759202455636114, 0.009321664460003376, -0.012072076089680195, 0.020843658596277237, 0.0034733235370367765, -0.007336908485740423, -0.0011661372845992446, -0.019193410873413086, 0.01645786687731743, 0.010250858031213284, -0.002432627370581031, -0.018435189500451088, -0.0036870380863547325, 0.013083037920296192, 0.005954268854111433, 0.014993458986282349, 0.0009064277983270586, 0.007916725240647793, -0.006593553815037012, 0.016621405258774757, 0.0015424604061990976, -0.0030663369689136744, 0.009856879711151123, 0.01760263368487358, 0.004274288192391396, -0.004776052199304104, 0.028604278340935707, 0.0015879909042268991, 0.00780522171407938, -0.005419054068624973, 0.018345987424254417, 0.005192330572754145, 0.021691082045435905, 0.0032354502473026514, 0.004121900536119938, 0.03440244495868683, -0.00819176621735096, -0.00866007898002863, -0.00044066979899071157, 0.0007986414129845798, -0.019386684522032738, -0.017974309623241425, 0.009247329086065292, -0.016056455671787262, -0.017974309623241425, 0.01276339590549469, -0.03062620386481285, -0.022360101342201233, -0.0017115735681727529, 0.012592424638569355, 0.016160525381565094, 0.004534462001174688, 0.013201975263655186, 0.018851468339562416, -0.0030700538773089647, -0.0037260642275214195, 0.0044192420318722725, 0.017899975180625916, 0.028143398463726044, -0.006028604693710804, -0.02473883517086506, -0.02414415217936039, -0.010325193405151367, 0.0061698416247963905, 0.032053444534540176, -0.027816323563456535, 0.004054998513311148, -0.000971935922279954, 0.010191389359533787, 0.008325569331645966, 0.004757468588650227, 0.01941641792654991, -0.006705056875944138, 0.01647273451089859, -0.005091977771371603, 0.0026816511526703835, -0.011588895693421364, 0.0009180427296087146, 0.004564196337014437, -0.005318700801581144, 0.007188237272202969, 0.00304031977429986, -0.006972664501518011, 0.009239895269274712, 0.005419054068624973, -0.018747398629784584, -0.016086190938949585, -0.0004569306911434978, -0.015446905046701431, 0.003464031731709838, 0.014116301201283932, -0.003025452606379986, 0.005653210449963808, 0.016026722267270088, 0.007768054027110338, 0.0031629730947315693, 0.0027968711219727993, -0.008890518918633461, 0.02464963309466839, 0.012012607418000698, -0.00582046527415514, -0.016086190938949585, 0.004192519001662731, 0.04046821594238281, -0.003077487461268902, -0.010369794443249702, 0.011566595174372196, 0.0028303221333771944, -0.0206057857722044, 0.0006499705486930907, -0.0023025404661893845, 0.008741848170757294, -0.004560479428619146, 0.019119076430797577, 0.00966360792517662, 0.02439689263701439, 0.015432038344442844, -0.007385226432234049, -0.000721053802408278, 0.01065226923674345, 0.0023006820119917393, 0.012295082211494446, 0.011083414778113365, 0.013945329003036022, 0.017186354845762253, 0.009083791635930538, -0.013529051095247269, -0.02224116399884224, 0.011202351190149784, 0.02017463929951191, 0.01074147131294012, -0.009381133131682873, 0.03365908935666084, 0.006430015899240971, 0.004753751680254936, -0.000511985388584435, 0.0044712768867611885, -0.006961514241993427, -0.00931423157453537, -0.01645786687731743, 0.0010936602484434843, 0.028946222737431526, 0.02243443764746189, 0.0028414723929017782, 0.026626955717802048, 1.3633004527946468e-05, 0.006768241990357637, -0.0018983413465321064, 0.004073582123965025, -0.018509525805711746, 0.0025348386261612177, -0.025051044300198555, 0.0071064685471355915, -0.023608937859535217, -0.0026482001412659883, 0.007768054027110338, 0.005322417709976435, 0.006500634364783764, 0.03044779784977436, 0.006690190173685551, 0.01595238596200943, -0.01568477787077427, -0.0015712653985247016, -0.01129155419766903, 0.005352152045816183, 0.010235990397632122, -0.00010244353325106204, -0.001256269053556025, -0.0009524228516966105, 0.03803001344203949, -0.03243998810648918, -0.0003510026726871729, 0.034372709691524506, 0.013254010118544102, 0.010622534900903702, 0.003495624288916588, -0.0009013172821141779, -0.007188237272202969, -0.017647234722971916, -0.002949258778244257, 0.020486848428845406, 0.003411996876820922, -0.019624557346105576, -0.02577953226864338, 0.011655797250568867, 0.010065019130706787, 0.006389131303876638, -0.01387842744588852, -0.03987353295087814, -0.002432627370581031, 0.003917478024959564, 0.009998117573559284, -0.006526651792228222, 0.003778098849579692, 0.003928628284484148, -0.021587012335658073, 0.009760243818163872, -0.01314994040876627, -0.007886990904808044, 0.008697247132658958, 0.0038468593265861273, -0.0028619146905839443, -0.0038282754831016064, 0.014190636575222015, -0.012748528271913528, -0.018836600705981255, 0.013083037920296192, 0.014160902239382267, 0.016353797167539597, -0.007597082294523716, 0.009596705436706543, 0.000598400307353586, 0.010354927740991116, -0.024768570438027382, -0.03455111384391785, -0.00023043988039717078, 0.0053856028243899345, -0.0043151723220944405, 0.04011140391230583, -0.010719170793890953, 0.008109997026622295, -0.014889389276504517, 0.011455091647803783, -0.015580709092319012, 0.019624557346105576, -0.011016513220965862, -0.015818582847714424, -0.018658196553587914, 0.009158127009868622, 0.017201222479343414, -0.012332250364124775, -0.00793902575969696, 0.0003377616812940687, 0.026939164847135544, 0.02457529865205288, -0.0015721946256235242, -0.005173746962100267, 0.005393036641180515, -0.004567913245409727, -0.00330792716704309, -0.0035922604147344828, -0.010087319649755955, -0.030893810093402863, -0.013135072775185108, -0.006708773784339428, -0.01803377829492092, 0.002371300710365176, -0.030774874612689018, -0.005036226473748684, -0.0028563393279910088, 0.006359397433698177, -0.0010732179507613182, -0.001181004336103797, -0.003445447888225317, -0.01215384528040886, 0.010325193405151367, 0.003239166922867298, 0.009544670581817627, -0.009351398795843124, 0.01999623514711857, -0.015803715214133263, -0.013439848087728024, 0.00706930086016655, -0.01620512641966343, 0.01717148721218109, 0.0004378822341095656, -0.022642577067017555, -0.02423335425555706, -0.015446905046701431, 0.008251233957707882, -0.004645965062081814, -0.006389131303876638, 0.025467323139309883, 0.0018648904515430331, -0.014064266346395016, -0.0011243235785514116, -0.006121523678302765, 0.02094772830605507, -0.03145876154303551, 0.01645786687731743, -0.0024958124849945307, 0.008481673896312714, -0.01853925921022892, -0.001368701341561973, -0.010696870274841785, -0.04043848067522049, -0.011068548075854778, -0.008831051178276539, -0.004917289596050978, -0.01922314614057541, -1.5012275071057957e-05, 0.0045753465965390205, 0.01199030689895153, -0.024426626041531563, -0.011180050671100616, 0.01974349468946457, -0.021007196977734566, -0.012622158043086529, -0.01470355037599802, -0.014941424131393433, 0.01792970858514309, 0.0021928956266492605, -0.021259937435388565, -0.0006355680525302887, -0.01086784154176712, -0.007626816630363464, -0.0162943284958601, -2.5625402486184612e-05, 0.017230955883860588, 0.011298987083137035, 0.013595952652394772, -0.027117570862174034, 0.013484449125826359, -0.017989177256822586, 0.0021408607717603445, -0.00854114256799221, 0.01311277225613594, -0.01025829091668129, -0.0104292631149292, 0.012406585738062859, 0.007886990904808044, -0.014443377032876015, 0.015283367596566677, 0.004370924085378647, -0.002742977812886238, -0.0013984355609863997, 0.0039100442081689835, 0.00281173805706203, -0.012584990821778774, 0.0018063512397930026, -0.0006583333015441895, -0.017439095303416252, 0.0016595388296991587, 0.020040836185216904, 0.011789601296186447, -0.002917666221037507, -0.011782167479395866, -0.0004736561677418649, -0.0072365556843578815, 0.012191012501716614, 0.0023285578936338425, -0.016933614388108253, 0.009678474627435207, -0.001507151173427701, 0.015565842390060425, 0.003484474029392004, -0.019119076430797577, -0.015313101932406425, 0.0018295811023563147, 0.01613079197704792, 0.016175393015146255, -0.022137096151709557, -0.01733502559363842, 0.0068723117001354694, 0.0031443892512470484, 0.016918746754527092, -0.01262959185987711, 0.0054116202518343925, 0.009678474627435207, -0.007307174149900675, 0.009002022445201874, 0.007396376691758633, 0.01638353243470192, 0.019862430170178413, 0.01794457621872425, 0.02588360197842121, 0.019461018964648247, 0.011098281480371952, -0.009708208963274956, 0.014881955459713936, -0.005805598106235266, 0.0027968711219727993, 0.011157750152051449, -0.03010585531592369, -0.01827165298163891, 0.019951634109020233, 0.019178545102477074, 0.00016702244465705007, -0.0019605972338467836, 0.0015656902687624097, -0.01595238596200943, -0.00681656040251255, 0.0007057221373543143, 0.010555633343756199, -0.000176662826561369, 0.015387437306344509, -0.002860056236386299, 0.004612514283508062, -0.04427419230341911, -0.01091244351118803, -0.007946458645164967, -0.0053595853969454765, 0.02586873434484005, -0.010154221206903458, 0.021438341587781906, 0.02502131089568138, -0.002233779989182949, -0.003372970735654235, -0.015238765627145767, 0.006017453968524933, 0.01358851883560419, 0.015298234298825264, 0.007924158126115799, -0.013826392590999603, -0.016844412311911583, -0.009619006887078285, 0.008808749727904797, -0.007530180271714926, 0.012034907937049866, 0.0037242057733237743, 0.012347117066383362, 0.023058854043483734, -0.0018686072435230017, 0.011403056792914867, -0.003027311060577631, 0.011745000258088112, 0.003798541147261858, 0.019594823941588402, -0.006515501532703638, 0.002086967695504427, -0.001786838285624981, -0.014376474544405937, -0.003341378178447485, 0.00039815923082642257, 0.0010973770404234529, 0.020992329344153404, -0.036245960742235184, -0.024441493675112724, 0.01435417402535677, -0.011417924426496029, -0.022360101342201233, 0.000833486148621887, -0.005456221755594015, -0.005103128030896187, 0.009827145375311375, -0.010436696000397205, -0.018331119790673256, 0.006370547693222761, -0.0056829447858035564, 0.0112543860450387, 0.005519406870007515, -0.019684026017785072, -0.017974309623241425, 0.009091224521398544, 0.01733502559363842, -0.0037706654984503984, 0.016011854633688927, -0.012949234806001186, -0.001971747726202011, 0.004348623566329479, -0.000819083652459085, 0.004642248619347811, -0.01297896821051836, 0.0020126320887356997, -0.006448599975556135, -0.008682379499077797, -0.004062431864440441, 0.01384125929325819, -0.006530368700623512, 0.0215572789311409, -0.012235614471137524, 0.01362568698823452, -0.025571392849087715, -0.00402898108586669, 0.007403810042887926, -0.0036480119451880455, 0.00044833566062152386, 0.01801891252398491, 0.01940155029296875, 0.0037725237198174, 0.01323170866817236, -0.02613634243607521, 0.0004868971591349691, 0.0004035020829178393, 0.0030849208123981953, -0.016413265839219093, -0.014398775063455105, -0.009418300352990627, -0.007470712065696716, 0.006846294272691011, 0.009856879711151123, 0.012146411463618279, 0.008779016323387623, -0.017112018540501595, -0.00892768707126379, -0.0033246527891606092, -0.030655937269330025, -0.006110373418778181, 0.0008980651036836207, 0.008964854292571545, -0.009648740291595459, 0.015580709092319012, 0.01904474012553692, -0.0006625146488659084, 0.0037836742121726274, 0.021705949679017067, 0.011953139677643776, -0.00952980387955904, 0.01587805151939392, -0.008511408232152462, 0.015432038344442844, -0.013194541446864605, 0.011737566441297531, 0.016086190938949585, -0.006797976326197386, 0.0035439422354102135, -0.006459750235080719, 0.004333756398409605, 0.001403081463649869, -0.0020497997757047415, 0.005511973053216934, 0.0071845208294689655, -0.0315776951611042, -0.0026537752710282803, -0.002029357710853219, -0.0042222533375024796, -0.01457718014717102, -0.01941641792654991, 0.009886614046990871, 0.010213689878582954, 0.005441354587674141, 0.00831813644617796, 0.02215196192264557, -0.003891460597515106, -0.005853916052728891, -0.01038466114550829, -0.0006606562528759241, 0.006638155318796635, 0.008890518918633461, 0.014331873506307602, 0.0037372144870460033, 0.0101765226572752, -0.0003642436640802771, 0.002936250064522028, -0.010607668198645115, -0.009358832612633705, 0.012072076089680195, -0.007039566524326801, 0.01176730077713728, 0.004304022062569857, -0.013395247049629688, -0.015387437306344509, 0.0015768406447023153, -0.009492636658251286, 0.009752810001373291, 0.018167583271861076, 0.006612137891352177, -0.011611196212470531, 0.0045753465965390205, -0.010860408656299114, -0.007232838775962591, -0.004292871803045273, -0.010852974839508533, -0.009002022445201874, -0.006355680525302887, 0.0070023988373577595, 0.0016418840968981385, 0.02603227272629738, 0.008392471820116043, -0.003289343323558569, 0.009715642780065536, 0.007429827470332384, -0.004147917963564396, -0.01821218430995941, -0.016755208373069763, -0.010979345068335533, -0.0045753465965390205, -0.0050882613286376, 0.016948482021689415, -0.01732015796005726, 0.020367911085486412, -0.0020590918138623238, 0.023252127692103386, -0.012488354928791523, -0.0006225593388080597, 0.007221688516438007, 0.005017642397433519, 0.01940155029296875, 0.01189367100596428, 0.011700399219989777, 0.022181697189807892, 0.01648760214447975, -0.031607430428266525, -0.0030737705528736115, -0.0160415880382061, 0.014428509399294853, -0.009648740291595459, -0.003824558574706316, 0.013908161781728268, -0.0038542926777154207, 0.01547663938254118, 0.00017677897994872183, 0.0034547396935522556, -0.009470335207879543, 0.02328186109662056, 0.0027597034350037575, -0.005233215168118477, -0.0030793456826359034, 0.005292683839797974, 0.009358832612633705, -0.020248975604772568, -0.00802079401910305, 0.017751304432749748, 0.0049024224281311035, -0.009358832612633705, 0.015387437306344509, 0.0012386143207550049, 0.01004271861165762, -0.011618630029261112, -0.005991437006741762, -0.00537073565647006, 0.014108867384493351, -0.011834202334284782, 0.013640553690493107, -0.022657442837953568, 0.015052927657961845, 0.0024493529926985502, 0.01630919612944126, -0.014034532010555267, 0.0004041989741381258, 0.0005528698675334454, 0.024248221889138222, 0.022568240761756897, 0.02450096234679222, -0.0031834153924137354, 0.02554165944457054, 0.01587805151939392, 0.009046623483300209, -0.005731262732297182, -0.008935119956731796, -0.009068924002349377, 0.012614725157618523, 0.004939590115100145, -0.005225781816989183, -0.013001268729567528, -0.013521617278456688, -0.006021170876920223, -0.010035284794867039, 0.011953139677643776, -0.008162031881511211, -0.026285013183951378, 0.018479790538549423, 0.001462549902498722, 0.02734057605266571, 0.00953723769634962, 0.02215196192264557, 0.0008715830626897514, 0.0018667487893253565, -0.010726604610681534, 0.022211430594325066, -0.011626063846051693, -0.014428509399294853, 0.028589412569999695, -0.015521240420639515, 0.017617499455809593, 0.019371816888451576, -0.0019736059475690126, -0.011492259800434113, -0.009752810001373291, 0.01124695222824812, 0.0006769171450287104, 0.013796658255159855, 0.0032930602319538593, 0.007180803921073675, 0.0210517980158329, 0.02128967083990574, -0.0232075247913599, 0.026448551565408707, 0.016918746754527092, -0.013454715721309185, 0.0043151723220944405, -0.0013120205840095878, -0.008942553773522377, 0.0015842741122469306, 0.01593751832842827, 0.016621405258774757, 0.005374452564865351, 0.009150693193078041, 0.00918042752891779, 0.0062701948918402195, -0.019431285560131073, -0.0035885435063391924, 0.0021111266687512398, 0.031518228352069855, -0.020412512123584747, -0.009031756781041622, 0.006459750235080719, -0.017721569165587425, 0.009492636658251286, 0.008897952735424042, -0.03071540594100952, -0.0207990575581789, 0.0034937658347189426, -0.0057126786559820175, -0.005523123312741518, -0.022984519600868225, -0.0067533752880990505, -0.012020041234791279, -0.012057209387421608, 0.031964242458343506, 0.008868218399584293, -0.01470355037599802, 0.023936012759804726, 0.006043471395969391, 0.006961514241993427, -0.003943495452404022, -0.00390632776543498, 0.0045233117416501045, -0.00435234047472477, -0.003547659143805504, 0.03190477192401886, 0.0017515289364382625, 0.016353797167539597, 0.008035661652684212, 0.011202351190149784, -0.0002648200315888971, -0.00761194946244359, -0.010035284794867039, -0.018673064187169075, -0.002601740648970008, 0.005203481297940016, -0.008199199102818966, 0.004794636275619268, 0.006437449250370264, 0.017706703394651413, 0.016160525381565094, -0.01699308305978775, -0.0004957244964316487, -0.0007647259044460952, 0.03190477192401886, -0.01776617020368576, 0.022300632670521736, 0.03181556984782219, -0.028009595349431038, 0.036008089780807495, -0.0035365086514502764, 0.0013529050629585981, 0.002053516684100032, 0.004281721543520689, -0.0003737678925972432, 0.006325946189463139, 0.010317759588360786, 0.008526275865733624, -0.004147917963564396, 0.008429639041423798, -0.01116518396884203, 0.018137848004698753, 0.004304022062569857, 0.012317382730543613, -0.013209408149123192, 0.003727922448888421, 0.015372569672763348, 0.015818582847714424, -0.016532203182578087, -0.0015972828259691596, 0.017825638875365257, -0.013826392590999603, -0.0018453773809596896, 0.020843658596277237, -0.002737402683123946, -0.0023155491799116135, 0.007489296142011881, -0.015550974756479263, 0.001094589359126985, 0.0033246527891606092, 0.021066665649414062, 0.0038728765211999416, 0.012555256485939026, -0.0004137232026550919, -0.020680120214819908, 0.024367159232497215, 0.018851468339562416, -0.027444645762443542, 0.009745377115905285, 0.013380380347371101, -0.008972288109362125, 0.012904632836580276, -0.03395643085241318, 0.008630344644188881, -0.01586318388581276, 0.00122281804215163, -0.008199199102818966, 0.004188802093267441, -0.014183202758431435, 0.006853728089481592, -0.015209032222628593, -0.014606914483010769, -0.015907784923911095, 0.00380411627702415, 0.00251253810711205, 0.0030923543963581324, -0.0014727709349244833, -0.022820981219410896, 0.004816936794668436, -0.006578686647117138, -0.003315360751003027, 0.013952762819826603, -0.012220746837556362, -0.02405495010316372, -0.008451939560472965, -0.016249727457761765, 0.0050882613286376, -0.0025459888856858015, 0.019104208797216415, 0.007043283432722092, -0.007582215126603842, -0.01026572473347187, -0.004883838817477226, 0.02302912063896656, -0.019713759422302246, -0.031785834580659866, -0.0038468593265861273, -0.0044712768867611885, 0.003516066586598754, 0.011678098700940609, 0.016056455671787262, 0.011633496731519699, 0.0053298515267670155, -0.014867088757455349, -0.026924297213554382, -0.0013436131412163377, 0.019877297803759575, -0.02018950693309307, -0.0021687366534024477, 0.011417924426496029, 0.014250104315578938, 0.010347493924200535, 0.02664182335138321, -0.0005366089753806591, -0.005106844939291477, 0.015550974756479263, -0.007723452523350716, 0.014658949337899685, -0.008310702629387379, -0.023356197401881218, 0.03217238187789917, 0.00991634838283062, 0.0017143611330538988, -0.016784943640232086, -0.005013925489038229, -0.009953515604138374, 0.015313101932406425, -0.005121712107211351, -0.006128957495093346, 0.016338931396603584, -0.0057386960834264755, -0.006805409677326679, -0.004608797375112772, -0.005571441724896431, 0.0057089622132480145, -0.01992189884185791, -0.005634626839309931, -0.001455116318538785, -0.02784605696797371, -0.017870239913463593, -0.016056455671787262, 0.001684627030044794, -0.026686424389481544, 0.011410490609705448, -0.003701905021443963, 0.015045493841171265, -0.015082661993801594, -0.026166075840592384, 0.0062441774643957615, -0.02286558225750923, 0.010838108137249947, -0.007370359264314175, -0.00927706342190504, 0.004813219886273146, 0.02053144946694374, -0.00953723769634962, -0.010667135939002037, 0.011982874013483524, -0.026760760694742203, 0.013350646011531353, -0.008949987590312958, -0.025155114009976387, 0.013402680866420269, 0.01285259798169136, -0.01371488906443119, 0.00037190952571108937, -0.019461018964648247, -0.0008418489014729857, -0.008578309789299965, -0.007009832188487053, 0.006337096448987722, -0.0014095858205109835, 0.009775110520422459, -0.016145657747983932, -0.009946082718670368, -0.011551727540791035, 0.0165470689535141, 0.050250761210918427, 0.029020557180047035, 0.0198475643992424, -0.013268876820802689, 0.000940343365073204, -0.04043848067522049, 0.0011280403705313802, 0.032796796411275864, 0.007834956049919128, -0.016666006296873093, 0.011172616854310036, 0.01734989322721958, 0.014391342177987099, 0.00681284349411726, -0.005210914649069309, 0.008303268812596798, -9.082862379727885e-05, -0.010577933862805367, -0.0007749469950795174, 0.0024753701873123646, -0.00892025325447321, 0.005586308427155018, -0.009217594750225544, 0.01375205721706152, 0.0007396376458927989, -0.0007586861029267311, -0.009299363940954208, -0.026612088084220886, -0.013543917797505856, 0.001413302612490952, 0.030834341421723366, -0.001988473115488887, -0.03053699992597103, 0.027444645762443542, -0.0013659137766808271, 0.0068983291275799274, 0.012257914990186691, 0.007872123271226883, -0.004504728130996227, -0.0054116202518343925, -0.032053444534540176, -0.01724582351744175, 0.010823240503668785, 0.002356433542445302, -0.024530695751309395, -0.0005445071146823466, 0.015179297886788845, 0.02191408909857273, 0.0061661251820623875, -0.0007452128338627517, 8.805555808066856e-06, 0.014257538132369518, -0.0076082325540483, -0.0017180779250338674, 0.029169227927923203, 0.0035513758193701506, -0.010815806686878204, -0.013826392590999603, -0.012547822669148445, -0.0052555156871676445, 0.01039952877908945, 0.001684627030044794, 0.0044452594593167305, 0.002962267491966486, -0.0018723240355029702, -0.004207386169582605, 0.011492259800434113, 0.029704444110393524, -0.012473487295210361, -0.005489672534167767, 0.005207197740674019, -0.015446905046701431, -0.004177651833742857, -0.01177473459392786, -0.01064483541995287, 0.00010459229088155553, -0.03356988728046417, -0.012577557004988194, -0.005931968335062265, 0.02001110091805458, -0.005318700801581144, -0.013254010118544102, 0.0015721946256235242, -0.0036089858040213585, -0.0057870144955813885, -0.0031536812894046307, 0.015580709092319012, 0.004512161482125521, 0.004705433733761311, 0.013402680866420269, -0.020115170627832413, -0.023504868149757385, -0.024813171476125717, 0.0041962359100580215, 0.00905405730009079, 0.0020126320887356997, -0.00018630320846568793, 0.007292306981980801, 0.00476861884817481, 0.007452128455042839, 0.002724393969401717, 0.010317759588360786, -0.011202351190149784, 0.007203104440122843, 0.008949987590312958, -0.0304329302161932, -0.006928063463419676, -0.006630721502006054, 0.007429827470332384, 0.01186393667012453, -0.019297480583190918, 0.003932345192879438, -0.006325946189463139, 0.017795905470848083, 0.0027987295761704445, 0.00201634899713099, -0.007020982913672924, 0.015521240420639515, 0.014346741139888763, 0.010436696000397205, -0.004999058786779642, 0.003761373460292816, 0.012793130241334438, 0.01751342974603176, -0.0018221475183963776, -0.0138858612626791, 0.0062478939071297646, -0.0041442010551691055, 0.004136767238378525, -0.011715265922248363, 0.007909291423857212, -0.014041965827345848, -0.005117995198816061, 0.015298234298825264, -0.009737943299114704, -0.007318324409425259, -0.002964125946164131, -0.008333003148436546, 0.01621999405324459, -0.00735177518799901, -0.023430531844496727, 0.015848316252231598, 0.017543165013194084, -0.006716207601130009, 0.015565842390060425, 0.011023946106433868, -0.015283367596566677, 0.00238245096988976, -0.0014820629730820656, 0.01821218430995941, -0.003586685284972191, 0.009150693193078041, -0.01275596208870411, 0.019802961498498917, 0.001209809328429401, -0.010444129817187786, -0.009849445894360542, 0.009715642780065536, -0.0048726885579526424, 0.003408280201256275, -0.008466807194054127, 0.0069243465550243855, 0.012822863645851612, 0.009373699314892292, 0.005170030053704977, -0.022270899266004562, -0.009842013008892536, 0.03422403708100319, -0.043768707662820816, -0.017230955883860588, -0.011521994136273861, 0.002423335565254092, -0.013677721843123436, 0.017528297379612923, -0.005296400282531977, 0.025229450315237045, -0.0031239469535648823, 0.003865443170070648, -0.024010349065065384, -0.014852222055196762, -0.012919500470161438, -0.00014925163122825325, 0.016398398205637932, -0.006006303709000349, -0.013194541446864605, 0.00780522171407938, 0.002014490542933345, 0.01708228513598442, 0.014644082635641098, 0.005047376733273268, -0.0031722651328891516, 0.007857256568968296, -0.004415525589138269, -0.014658949337899685, -0.013424981385469437, 0.015387437306344509, 0.00761194946244359, 0.007240272127091885, -0.032291315495967865, 0.02836640551686287, 0.010830674320459366, 0.018256785348057747, 0.004657115787267685, 0.016234861686825752], "1e846a4d-efb9-4bb0-a805-b24da1fd6101": [-0.023584438487887383, 0.022781681269407272, -0.013930597342550755, 0.030836930498480797, -0.013612262904644012, -0.017148545011878014, 0.0427398756146431, 0.009183259680867195, -0.01784057542681694, 0.06665648519992828, 0.02365364134311676, 0.012262800708413124, -0.004986087791621685, 0.0030362887773662806, -0.02560517005622387, -0.024968501180410385, -0.004820000380277634, 0.00885800551623106, -0.017549922689795494, -0.012657258659601212, 0.08033103495836258, -0.02229725942015648, -0.012892549857497215, 0.00876804068684578, 0.03390955179929733, 0.005588155705481768, -0.0036158652510493994, 0.007349376101046801, -0.0570787712931633, -0.00990989338606596, 0.027016915380954742, -0.00734245590865612, 0.04099595546722412, 0.0007612347835674882, 0.018048185855150223, -0.040553055703639984, -0.008864925242960453, -0.009508514776825905, -0.01557071227580309, -0.017951300367712975, -0.02207580953836441, 0.013985959812998772, 0.013100159354507923, 0.028096484020352364, -0.02501002326607704, -0.009141737595200539, -0.012567294761538506, -0.014850999228656292, -0.02099624089896679, 0.021411459892988205, -0.007778435479849577, -0.0026660519652068615, 0.0008537940448150039, -0.03620709478855133, 0.025674374774098396, -0.0402485616505146, -0.0014947883319109678, 0.07385361939668655, -0.013397732749581337, -0.06737620383501053, -0.01849108561873436, -0.02047029696404934, 0.006695406045764685, 0.0031608545687049627, 0.021259212866425514, -0.006065657362341881, -0.004608930554240942, 0.044013213366270065, -0.028733154758810997, 0.028926922008395195, 0.030061854049563408, 0.0022335320245474577, -0.03382650762796402, 0.0343247689306736, 0.0020138120744377375, -8.224634257203434e-06, 0.015515349805355072, 0.005238679703325033, 0.014186648651957512, -0.006387452129274607, 0.011411601677536964, -0.037923332303762436, 0.04285059869289398, 0.004262914881110191, 0.028082644566893578, 0.0404423289000988, -0.008283618837594986, -0.03562578931450844, 0.0034688087180256844, -0.046559888869524, 0.027778150513768196, 0.030338667333126068, 0.03122446872293949, -0.008671156130731106, -0.011736856773495674, 0.013370051048696041, -0.018311157822608948, -0.006363230757415295, 0.020013555884361267, 0.006318248808383942, -0.009328586980700493, 0.048719026148319244, -0.01851876638829708, -0.00030341261299327016, -0.04154957830905914, -0.013363131321966648, 0.02197892591357231, 0.02745981514453888, -0.005858047865331173, -0.03042171150445938, 0.013757589273154736, -0.0476117767393589, -0.015515349805355072, -0.015473827719688416, -0.024497920647263527, 0.0035951044410467148, -0.05868428200483322, -0.0045604887418448925, -0.003005147445946932, -0.020165802910923958, 0.017231587320566177, -0.040525373071432114, 0.0071348464116454124, -0.008304379880428314, -0.016221221536397934, 0.007480862084776163, -0.01914159581065178, 0.027432134374976158, 0.03496143966913223, 0.021536024287343025, 0.011570769362151623, -0.05121034011244774, 0.041383493691682816, -0.016719484701752663, -0.009190180338919163, 0.01586136594414711, -0.01167457364499569, 0.06189531087875366, -0.019709061831235886, 0.016733326017856598, -0.03512752801179886, -0.019432248547673225, -0.011985988356173038, -0.004307896830141544, 0.001878865878097713, -0.00910713616758585, -0.00409682746976614, 0.04520350694656372, -0.019183117896318436, 0.009363188408315182, -0.050352223217487335, 0.003930739592760801, -0.008885686285793781, 0.011646892875432968, 0.04813772067427635, -0.005941091571003199, -0.023722844198346138, 0.02776430919766426, 0.02019348368048668, 0.0372866652905941, 0.01836651936173439, -0.020082758739590645, -0.0062767271883785725, 0.024068860337138176, 0.024594804272055626, 0.010871817357838154, 0.011107107624411583, 0.006325169466435909, -0.012588055804371834, 0.014601867645978928, -0.0028875020798295736, 0.004138349089771509, 0.03905826434493065, -0.001989590935409069, -0.005515492055565119, -0.04725192114710808, 0.010228227823972702, 0.0027802372351288795, 0.03233171999454498, -0.03064316138625145, -0.0014774876181036234, 0.005273281130939722, 0.014850999228656292, -0.00495494669303298, -0.0404423289000988, 0.01951529271900654, 0.025965027511119843, 0.022643275558948517, 0.03540433943271637, 0.04099595546722412, -0.0014238550793379545, -0.018228113651275635, 0.014504983089864254, 0.010705729946494102, 0.011328558437526226, -0.02909301035106182, -0.0018183131469413638, 0.004577789455652237, -0.026878509670495987, 0.03335592523217201, 0.008449706248939037, -0.023612119257450104, -0.004134889226406813, 0.03969493508338928, -0.0393904410302639, 0.005543173290789127, -0.01544614601880312, -0.028926922008395195, -0.01082337461411953, -0.015487668104469776, 0.018809420987963676, 0.00395842082798481, 0.0140067208558321, -0.00834590196609497, -0.006726547610014677, 0.010567323304712772, -0.0161104965955019, 0.00312625290825963, -0.016871731728315353, -0.008823403157293797, 0.0033650039695203304, -0.006273266859352589, 0.02071942761540413, -0.026214158162474632, -0.060400523245334625, -0.0017906319117173553, -0.023515235632658005, 0.018131230026483536, -0.004224853124469519, -0.0006647828849963844, 0.07280173152685165, -0.018034344539046288, 0.03487839549779892, -0.0467536561191082, -0.001607243437319994, 0.017093181610107422, 0.03172273188829422, 0.024996183812618256, -0.016027452424168587, -0.03377114608883858, 0.03761884197592735, -0.01635962724685669, -0.029009966179728508, -0.02532835863530636, -0.034518539905548096, -0.02488545887172222, 0.004024163819849491, 0.02686466835439205, -0.012947912327945232, 0.012954832054674625, -0.0057715438306331635, 0.02829025313258171, 0.011224753223359585, 0.013453095220029354, -0.039473485201597214, 0.004788858816027641, 0.018145069479942322, -0.020760949701070786, -0.009390869177877903, -0.005031070206314325, 0.007114085368812084, 0.00890644732862711, -0.020082758739590645, 0.03587492182850838, 0.017799053341150284, -0.07462869584560394, 0.010152104310691357, 0.004688514396548271, 0.046615250408649445, 0.03147359937429428, 0.006456655450165272, 0.0028096484020352364, 0.016456512734293938, 0.030117217451334, 0.003716209903359413, -0.03543202206492424, -0.013376971706748009, 0.019127754494547844, 0.016525715589523315, 0.006190223153680563, -0.019487611949443817, -0.03324519842863083, 0.036594633013010025, -0.014325055293738842, 0.04060841724276543, 0.014242011122405529, -0.04650452733039856, -0.009743805974721909, -0.004968787077814341, -0.03139055520296097, 0.0038961381651461124, 0.013626103289425373, 0.023335307836532593, 0.04791627079248428, -0.005882268771529198, 0.0006768934545107186, -0.006844192743301392, -0.02931446023285389, -0.027016915380954742, -0.004013783764094114, -0.015819843858480453, -0.02566053345799446, -0.034186363220214844, -0.0014048242010176182, 0.046366121619939804, 0.0020138120744377375, 0.04653220623731613, 0.04207552224397659, -0.006221364717930555, 0.03753579780459404, 0.024899298325181007, -0.0014774876181036234, -0.012235119938850403, -0.010269749909639359, -0.026241840794682503, 0.03808942064642906, -0.017176225781440735, -0.004138349089771509, 0.025148430839180946, -0.022532550618052483, 0.0095361964777112, 0.029452865943312645, -0.08608873933553696, 0.03509984537959099, 0.01368146575987339, -0.05624833330512047, 0.0009108866797760129, -0.006567380391061306, -0.002518995199352503, -0.012899469584226608, 0.0021747094579041004, -0.027169162407517433, -0.03717593848705292, 0.016581078991293907, -0.012871788814663887, -0.026352565735578537, -0.020954718813300133, -0.030587797984480858, 0.01784057542681694, -0.027501337230205536, 0.01939072646200657, -0.0012214358430355787, 0.030227942392230034, -0.031528960913419724, -0.0034203664399683475, -0.01886478252708912, 0.0011530977208167315, 0.0038546163123100996, -0.00909329578280449, -0.0038926780689507723, 0.0007491242722608149, -0.009162498638033867, -0.006408213172107935, 0.026643218472599983, 0.014027481898665428, 0.006224824581295252, -0.039002902805805206, -0.005709261167794466, -0.004525886848568916, 0.03374346345663071, -0.040525373071432114, -0.02322458289563656, -0.004162570461630821, -0.03836623579263687, -0.003588184015825391, 0.04008247330784798, 0.022089650854468346, -0.01168841402977705, -0.009280144236981869, -0.004965327214449644, -0.021605227142572403, -0.011466964147984982, -0.0046054706908762455, 0.015626074746251106, -0.017674488946795464, -0.025812780484557152, 0.014615708030760288, 0.008484307676553726, 0.0034636184573173523, -0.005304422695189714, 0.016401149332523346, -0.04467756301164627, -0.020511817187070847, 0.043238136917352676, 0.04763945937156677, 0.007889160886406898, -0.009550036862492561, 0.006124480161815882, -0.02653249353170395, -0.0007889160769991577, -0.04473292455077171, 0.008622714318335056, -0.018034344539046288, -0.0068718744441866875, -0.007550065405666828, -0.022961609065532684, -0.014435780234634876, -0.010255908593535423, 0.016830209642648697, -0.00785455945879221, -0.004851141944527626, -0.007951444014906883, 0.0016357897548004985, 0.0061936830170452595, 0.019930511713027954, -0.020525658503174782, 0.008442786522209644, -0.005117574241012335, -0.011480804532766342, 0.026726262643933296, -0.014961724169552326, -0.0049584065563976765, 0.05660818889737129, 0.08027566969394684, 0.011543087661266327, 0.024068860337138176, 0.004546647891402245, 0.06554923951625824, -0.01493404246866703, -0.006529318634420633, 0.02044261433184147, -0.005557014141231775, 0.008463546633720398, 0.016193540766835213, -0.014837158843874931, 0.04094059392809868, -0.000698086922056973, 0.013639943674206734, -0.00505529111251235, -0.005975693464279175, -0.006861493922770023, 0.04467756301164627, -0.014110525138676167, 0.005515492055565119, -0.0070068202912807465, -0.0014307753881439567, 0.0069618383422493935, -0.011771458201110363, 0.04287828132510185, 0.020511817187070847, 0.0012153806164860725, -0.01635962724685669, 0.028622427955269814, -0.01598593033850193, -0.052981942892074585, -0.05685732141137123, -0.01681636832654476, 0.00870575848966837, 0.02442871779203415, 0.027376770973205566, 0.024664007127285004, 0.028954604640603065, -0.0623382106423378, -0.03961189091205597, -0.010152104310691357, 0.0051763965748250484, -0.009806088171899319, 0.012172836810350418, 0.016802528873085976, -0.02377820760011673, -0.012684940360486507, 0.009217861108481884, 0.013577660545706749, 0.012802585028111935, -0.00043814253876917064, -0.046338438987731934, -0.044511474668979645, -0.017494559288024902, -0.0006842463044449687, 0.027321409434080124, 0.0001344055199297145, 0.02625568024814129, 0.007439339999109507, 0.047445688396692276, -0.014165887609124184, -0.019210798665881157, 0.003531091380864382, 0.015307740308344364, -0.016276584938168526, -0.01734231226146221, -0.0028926923405379057, -0.006477416027337313, 0.005269820801913738, -0.003930739592760801, -0.01991667039692402, 0.013522298075258732, -0.0507674403488636, 0.02347371354699135, -0.0007845908985473216, 0.011806059628725052, 0.037369709461927414, 0.009951415471732616, 0.011390840634703636, -0.010684968903660774, -0.007418579421937466, -0.01741151697933674, 0.013183202594518661, -0.03626246005296707, 0.005117574241012335, -0.046089306473731995, 0.03969493508338928, -0.003878837451338768, -0.009010251611471176, -0.009999857284128666, -0.015335421077907085, 0.031030699610710144, -0.028221050277352333, 0.028622427955269814, 0.00376811227761209, 0.01286486815661192, -0.013722987845540047, 9.742507972987369e-05, -0.03784029185771942, 0.0031054920982569456, 0.02037341147661209, 0.02560517005622387, -0.03233171999454498, -0.006802671123296022, 0.031528960913419724, 0.005996454041451216, 0.00538746640086174, -0.011086346581578255, -0.05013077333569527, -0.024193426594138145, -0.012193597853183746, -0.0006098528974689543, 0.009986016899347305, -0.035819556564092636, 0.03648390993475914, -0.020110439509153366, -0.03825550898909569, 0.03197186067700386, -0.027501337230205536, 0.0017257538856938481, 0.010698809288442135, 0.014740274287760258, -0.008892606943845749, -0.01300327479839325, 0.006920316256582737, -0.00753622455522418, -0.013522298075258732, 0.02625568024814129, -0.0062179043889045715, -0.01391675602644682, 0.017148545011878014, 0.0007452315767295659, 0.02402733825147152, -0.009944494813680649, -0.029148373752832413, 0.004923805128782988, -0.025812780484557152, -0.00443592295050621, -0.02077478915452957, -0.0071902088820934296, -0.0027283348608762026, 0.011217832565307617, 0.025148430839180946, 0.018726376816630363, -0.03867072984576225, -0.03822782635688782, 0.03438013046979904, 0.01701013743877411, 0.008851084858179092, 0.0069618383422493935, -0.011681494303047657, -0.0181173887103796, -0.019764423370361328, 0.01839420199394226, -0.021314574405550957, 0.023362988606095314, 0.02217269316315651, -0.0028096484020352364, 0.02566053345799446, 0.04462220147252083, 0.01836651936173439, 0.007515463512390852, 0.001130606746301055, -0.0031885358039289713, 0.00012802585843019187, -0.015390783548355103, 0.009494674392044544, -0.005761163309216499, 0.003809634130448103, -0.009729964658617973, -0.011605370789766312, 0.013702226802706718, -0.036594633013010025, -0.012601896189153194, -0.006076037883758545, 0.005903029814362526, -0.0009878751588985324, 0.05018613487482071, -0.017051659524440765, 0.020525658503174782, 0.004619311075657606, 0.019155435264110565, -0.01981978677213192, 0.002105506369844079, 0.02881619706749916, 0.00870575848966837, -0.0090586943551898, 0.009079455398023129, 0.025286836549639702, -0.005197157617658377, -0.007930682972073555, 0.0005328643601387739, 0.020885515958070755, -0.018906304612755775, -0.015349261462688446, -0.027805831283330917, -0.039002902805805206, -0.02483009546995163, 0.014795636758208275, -0.022311100736260414, 0.003989562392234802, -0.010726490058004856, -0.00978532712906599, 0.00409682746976614, 0.00997217558324337, 0.03194418177008629, 0.0016513605369254947, -0.01405516266822815, 0.008851084858179092, -0.03645622730255127, 0.0551687628030777, 0.022034287452697754, -0.0013010194525122643, 0.01125243492424488, 0.009743805974721909, 0.023016972467303276, -0.006681565660983324, -0.029203735291957855, 0.02934214100241661, -0.012096713297069073, -0.01743919774889946, 0.01886478252708912, -0.022117331624031067, 0.008152132853865623, -0.010165944695472717, -0.019930511713027954, 0.010844135656952858, -0.0071210055612027645, -0.009466992691159248, 0.034214045852422714, -0.008048327639698982, 0.01111402828246355, 0.002420380711555481, -0.001288043917156756, 0.03745275363326073, 0.008027567528188229, -0.006380531936883926, -0.007813037373125553, -0.01354305911809206, 0.012055191211402416, -0.01638730987906456, -0.020940877497196198, -0.014975564554333687, 0.026338724419474602, 0.015017086640000343, 0.014864839613437653, 0.018629491329193115, -0.006681565660983324, 0.011591530404984951, 0.008491228334605694, 0.0020709047093987465, -0.012020589783787727, 0.038726091384887695, 0.011716095730662346, 0.012581135146319866, -0.0260065495967865, 0.03252548724412918, -0.01688557304441929, 0.0009480833541601896, -0.009819929488003254, 0.0037992538418620825, 0.016027452424168587, 0.005051830783486366, -0.02440103515982628, 0.026144955307245255, -0.013619182631373405, -0.0406360998749733, -0.023944294080138206, -0.018020503222942352, -0.02272631973028183, -0.03507216274738312, -0.005169476382434368, -0.02059486135840416, 0.01663644053041935, -0.03482303395867348, 0.008740359917283058, 0.0009731695172376931, 0.021619068458676338, -0.006681565660983324, 0.0063217091374099255, 0.00958463829010725, -0.05425528064370155, 0.016622599214315414, -0.02124537155032158, 0.004788858816027641, -0.004858062136918306, -0.006477416027337313, -0.013314688578248024, 0.02430415153503418, -0.036899127066135406, 0.06084342300891876, -0.015058608725667, -0.010560402646660805, -0.0048546018078923225, -0.015806002542376518, 0.022684797644615173, 0.011785298585891724, 0.016871731728315353, -0.003287150291725993, 0.05264976620674133, 0.027930397540330887, 0.020276527851819992, 0.00321967713534832, 0.03487839549779892, -0.03797869756817818, 0.00045933600631542504, 0.00720404926687479, 0.0243318323045969, -0.021882040426135063, -0.037148259580135345, 0.005217918660491705, 0.008740359917283058, -0.016470354050397873, 0.0020709047093987465, -0.006979139056056738, 0.016193540766835213, 0.03720362111926079, -0.009024092927575111, 0.010629606433212757, -0.004138349089771509, -0.004750797059386969, -0.008518909104168415, -0.0161104965955019, 0.004806159995496273, -0.02009659819304943, -0.030836930498480797, 0.04653220623731613, -0.033660419285297394, -0.0018425342859700322, -0.02059486135840416, 0.017729850485920906, 0.018255794420838356, 0.030172578990459442, -0.014671070501208305, 0.006792290601879358, -0.005705800838768482, 0.035238251090049744, -0.028650110587477684, 0.03407563641667366, -0.0030743505340069532, 0.001996511360630393, 0.004127968568354845, 0.017895938828587532, 0.016124337911605835, 0.01266417931765318, 0.042961325496435165, 0.006325169466435909, 0.007577746640890837, -0.04113436117768288, -0.010733410716056824, 0.005629677325487137, -0.009889132343232632, 0.019224639981985092, 0.013902915641665459, 0.03249780461192131, 0.010754171758890152, 0.029231416061520576, 0.052954260259866714, 0.029508229345083237, 0.013335449621081352, -0.00529404217377305, -0.039528846740722656, -0.003588184015825391, -0.024650167673826218, -0.009120977483689785, -0.016068974509835243, 0.004345958586782217, -0.043210454285144806, 0.032608531415462494, -0.030449392274022102, 0.01929384283721447, -0.01839420199394226, 0.02430415153503418, 0.012601896189153194, -0.0024584424681961536, 0.03568115085363388, 0.012553454376757145, -0.00957079790532589, -0.014698752202093601, -0.011231673881411552, 0.030255623161792755, -0.019930511713027954, 0.028179528191685677, 0.006750768516212702, -0.019459929317235947, 0.0029826564714312553, 0.014698752202093601, -0.008200574666261673, 0.029259098693728447, 0.023196900263428688, 0.010269749909639359, -0.002313115866854787, -0.0016089736018329859, -0.024567123502492905, -0.007909921929240227, 0.0005475700600072742, 0.008428945206105709, -0.008422025479376316, -0.016581078991293907, 0.020788630470633507, 0.007660790346562862, -0.015086289495229721, -0.013058637268841267, -0.0171623844653368, 0.029120691120624542, -0.017882097512483597, -0.023764366284012794, -0.007799196522682905, 0.012069031596183777, 0.025051545351743698, -0.010463518090546131, 0.018698694184422493, 0.008947969414293766, 0.008159053511917591, 0.019335364922881126, -0.0014774876181036234, 0.014103604480624199, -0.006352850701659918, -0.02297545038163662, 0.02202044613659382, -0.02282320335507393, 0.03598564490675926, 0.03114142455160618, 0.020331889390945435, 0.00036720928619615734, 0.04118972271680832, -0.01570911891758442, -0.04913424700498581, 0.016401149332523346, -0.013259326107800007, 0.020677905529737473, 0.016248902305960655, -0.006588141433894634, 0.013404653407633305, 0.0009506784845143557, 0.0682620033621788, 0.01796514168381691, -0.01663644053041935, -0.015141651965677738, 0.01385447382926941, -0.0161104965955019, 0.0024480619467794895, -0.030560117214918137, 0.035791877657175064, -0.02665705978870392, 0.00676460936665535, 0.015127811580896378, -0.0008563891751691699, -0.012311242520809174, 0.025439083576202393, -0.021895881742239, -0.0381447859108448, 0.028082644566893578, -0.008941048756241798, 0.03139055520296097, 0.02303081378340721, 0.02420726604759693, -0.0008775826427154243, 0.005743862595409155, 0.009404710493981838, -0.019376885145902634, 0.01568143628537655, -0.014449620619416237, 0.03122446872293949, -0.010179785080254078, -0.0019117373740300536, -0.011972147040069103, 0.02934214100241661, -0.0015726418932899833, 0.006992979906499386, -0.01332852989435196, 0.02615879662334919, -0.0022248816676437855, 0.006131400354206562, 0.0011522326385602355, 0.007951444014906883, -0.019376885145902634, -0.02071942761540413, -0.017882097512483597, -0.008131371811032295, -0.029176054522395134, 0.029508229345083237, -0.0008806102559901774, -0.027404453605413437, -0.013799111358821392, -0.0004409539105836302, -0.0045362673699855804, -0.038975223898887634, -0.055916156619787216, -0.019335364922881126, 0.05461513623595238, -0.029951129108667374, 0.019653698429465294, -0.025715894997119904, -0.02047029696404934, 0.005923790857195854, 0.003826935077086091, 0.049549464136362076, -0.007335535250604153, 0.011377000249922276, 0.05923790857195854, 0.010145183652639389, 0.015695277601480484, 0.009300905279815197, -0.003806174034252763, -0.0033079113345593214, -0.013141680508852005, 0.01660875976085663, 0.044290024787187576, 0.021051602438092232, 0.004951486364006996, 0.0037300505209714174, -0.02077478915452957, -0.015155493281781673, -0.0126918600872159, 0.03443549573421478, -0.023459872230887413, 0.012684940360486507, -0.003281960031017661, 0.0010441027116030455, 0.03440781310200691, -0.029203735291957855, -0.03061548061668873, -0.008636554703116417, -0.017702169716358185, -0.005283661652356386, -0.009487753733992577, -0.0026003089733421803, 0.0027075738180428743, -0.015501508489251137, -0.03385418653488159, -0.007764595095068216, 0.006608902011066675, 0.029729679226875305, -0.033715780824422836, 0.016802528873085976, 0.023058494552969933, 0.040802184492349625, 0.006048356648534536, 0.010269749909639359, -0.01195138692855835, 0.022338781505823135, 0.005397846922278404, -0.0013857933226972818, -0.0033494331873953342, 0.00580614572390914, 0.011923705227673054, -0.029009966179728508, -0.015252377837896347, 0.009003331884741783, -0.0057957652024924755, 0.024788573384284973, -0.0004749067302327603, 0.02575741708278656, 0.019764423370361328, -0.012055191211402416, -0.029203735291957855, -0.017978982999920845, -0.0024030799977481365, 0.03429709002375603, -0.010733410716056824, -0.0025051545817404985, 0.0035172507632523775, -0.02114848792552948, -0.016470354050397873, -0.015515349805355072, 0.01728695072233677, -0.005515492055565119, -0.050352223217487335, -0.019985873252153397, 0.008788801729679108, 0.02498234249651432, -0.025715894997119904, 0.011051745153963566, -0.04066377878189087, 0.03534897789359093, 0.02375052683055401, -0.006415133364498615, 0.02037341147661209, -0.027570540085434914, 0.005069131962954998, -0.036345500499010086, 0.012615736573934555, -0.009439311921596527, -0.018975507467985153, -0.011356239207088947, -0.009453152306377888, -0.014477302320301533, -0.018850941210985184, 0.032359398901462555, 0.012795665301382542, -0.028373297303915024, 0.013972118496894836, -0.003287150291725993, 0.026089593768119812, 0.01608281582593918, -0.00367122795432806, -0.033411286771297455, 0.01826963573694229, 0.030532436445355415, -0.007619268260896206, -0.011280115693807602, 0.014082844369113445, -0.018850941210985184, 0.028428660705685616, 0.024068860337138176, -0.004934185650199652, -0.01635962724685669, -0.008823403157293797, -0.021992765367031097, -0.016594918444752693, -0.0022283419966697693, -0.003913438878953457, 0.02034573070704937, 0.03507216274738312, -0.029286779463291168, 0.01756376400589943, -0.019902830943465233, -0.0035916443448513746, -0.022740159183740616, 0.023584438487887383, -0.011543087661266327, 0.003975722007453442, -0.09411630034446716, -0.018601810559630394, -0.007612348068505526, -0.006941077299416065, 0.0027110339142382145, -0.022560231387615204, 0.006079498212784529, 0.006588141433894634, -0.002958435332402587, 0.020290367305278778, -0.025965027511119843, -0.018048185855150223, 0.03988870233297348, 0.001941148773767054, -0.005152175668627024, -0.010989462956786156, 0.01091333944350481, -0.005328643601387739, 3.660198490251787e-05, -0.009916813112795353, -0.013010194525122643, 0.0010415075812488794, 0.039002902805805206, -0.008428945206105709, 0.0046054706908762455, 0.028207208961248398, -0.031113741919398308, 0.016899412497878075, -0.0023909693118184805, -0.02851170301437378, 0.019833626225590706, 0.010878737084567547, 0.011681494303047657, 0.0030016873497515917, 0.027169162407517433, -0.0016029182588681579, 0.0056677390821278095, 0.0020155422389507294, -0.004979167599231005, 0.008200574666261673, 0.008186734281480312, 0.003961881157010794, -0.022394144907593727, 0.00909329578280449, 0.02202044613659382, 0.0020864754915237427, -0.02485777623951435, -0.021992765367031097, 0.013037876226007938, 0.002103776205331087, 0.0023961595725268126, -0.010615765117108822, -0.026767784729599953, -0.01557071227580309, 0.01889246329665184, -0.01997203379869461, 0.013349290005862713, -0.0008490363252349198, -0.012172836810350418, -0.006269806530326605, 0.001341676339507103, 0.020857833325862885, -0.026352565735578537, 0.018324997276067734, -0.007660790346562862, 0.007494702935218811, 0.024262629449367523, 0.005743862595409155, 0.018601810559630394, 0.02170211263000965, 0.007570825982838869, 0.008851084858179092, -0.01638730987906456, 0.00020479811064433306, 0.019459929317235947, -0.027003074064850807, 0.006415133364498615, 0.0016435751458629966, 0.027072278782725334, -0.004038004670292139, -0.03163968771696091, 0.004231773316860199, 0.017259269952774048, -0.009778407402336597, -0.028954604640603065, -0.010560402646660805, 0.023266103118658066, 0.00044333277037367225, -0.009882211685180664, 0.007550065405666828, 0.0039030585903674364, 0.006325169466435909, 0.03800637647509575, -0.008076009340584278, 0.00010623766866046935, 0.00990989338606596, 0.012885629199445248, -0.011363159865140915, 0.013646864332258701, -0.008809562772512436, 0.005802685394883156, -0.021383777260780334, -0.012581135146319866, 0.005082972347736359, -0.0007426364463753998, -0.006989519577473402, 0.0020709047093987465, 0.03191649913787842, -0.0028269493486732244, -0.011584609746932983, -0.006394372321665287, 0.0010146914282813668, -0.011999828740954399, -0.018145069479942322, -0.023542916402220726, -0.003401335561648011, 0.01929384283721447, 0.01381987240165472, -0.012311242520809174, 0.004844221286475658, 0.010262829251587391, 0.01694093458354473, 0.009999857284128666, -0.0591825470328331, -0.00624558562412858, 0.006467035505920649, 0.015141651965677738, -0.0048546018078923225, 0.0014610517537221313, 0.02096855826675892, -0.0005709261167794466, 0.01287870854139328, -0.012574215419590473, 0.019681379199028015, -0.006889175157994032, 0.004093367140740156, 0.01349461730569601, -0.029286779463291168, 0.0027663963846862316, -0.024691689759492874, 0.010650367476046085, 0.01991667039692402, 0.0016453051939606667, -0.009508514776825905, 0.009037933312356472, 0.01201366912573576, -0.012560374103486538, -0.009653841145336628, 0.004089906811714172, -0.026892349123954773, -0.003506870474666357, 0.008456626906991005, 0.02909301035106182, 0.027072278782725334, -0.0051314146257936954, -0.04672597721219063, -0.005678119603544474, -0.004788858816027641, -0.013446174561977386, 0.001984400674700737, -0.02467784844338894, 0.006079498212784529, 0.011771458201110363, -0.008650396019220352, 0.012041350826621056, -0.0032006462570279837, -0.01598593033850193, -0.02197892591357231, -0.013141680508852005, 0.0059999143704771996, 0.008788801729679108, -0.030283303931355476, -0.026615537703037262, -0.009238622151315212, 0.022338781505823135, -0.030227942392230034, -0.005093352869153023, 0.003489569528028369, 0.03548738360404968, -0.022892406210303307, -0.015390783548355103, 0.02130073495209217, -0.017978982999920845, 0.006501637399196625, -0.0034878395963460207, -0.01406900305300951, 0.006121019832789898, 0.0018598349997773767, 0.011321637779474258, 0.00972304493188858, -0.005612376611679792, -0.005266360938549042, 0.0047680982388556, 0.009252463467419147, -0.017120862379670143, 0.0006029325886629522, 0.010456598363816738, 0.03388186916708946, -0.014131286181509495, 0.00834590196609497, -0.039252035319805145, -0.02878851629793644, 0.0019532593432813883, 0.030836930498480797, -0.006498177070170641, 0.010851056315004826, -0.0065500796772539616, 0.02262943424284458, 0.01728695072233677, -0.016428831964731216, -0.008013726212084293, -0.01944608986377716, 0.01321780402213335, -0.0014048242010176182, -0.021328415721654892, -0.001451536430977285, -0.007640029303729534, -0.018975507467985153, 0.01439425814896822, -0.00024026473693083972, 0.031584322452545166, 0.007183288689702749, 0.015280058607459068, -0.007328615058213472, -0.006854573264718056, 0.011757617816329002, 0.003318291623145342, -0.0697014257311821, -0.013902915641665459, 0.018311157822608948, -0.015086289495229721, 0.02628336101770401, 0.010207466781139374, -0.008885686285793781, -0.01568143628537655, -0.011584609746932983, -0.0080068064853549, 0.004844221286475658, 0.012574215419590473, -0.0015518809668719769, -0.004795779474079609, -0.022961609065532684, -0.017259269952774048, -0.004633151926100254, 0.05702340602874756, -0.0005691960104741156, -0.019833626225590706, 0.0021210769191384315, -0.01504476834088564, 0.0020605241879820824, 0.010117502883076668, 0.0005666009383276105, 0.009287064895033836, 0.0017145083984360099, -0.010304351337254047, -0.00910713616758585, -0.012553454376757145, 0.0059999143704771996, 0.019902830943465233, -0.0066400435753166676, -0.006747308652848005, -0.009674602188169956, 0.029812723398208618, -0.047473371028900146, 0.005764623638242483, -0.016677962616086006, -0.006774989888072014, 0.013778350315988064, -0.011425442062318325, -0.017909778282046318, -0.013411573134362698, -0.016705643385648727, -0.03125214949250221, -0.012705701403319836, 0.011743777431547642, 0.005377085879445076, 0.0003866726765409112, -0.017549922689795494, -0.00504837092012167, 0.012913310900330544, -0.012359685264527798, -0.0016011882107704878, 0.0075431447476148605, 0.01229048240929842, 0.02242182567715645, 0.005823446437716484, -0.011494645848870277, -0.005159095861017704, 0.043182775378227234, -0.014698752202093601, -0.012761063873767853, -0.0038892177399247885, 0.023847410455346107, -0.01091333944350481, 0.017674488946795464, 0.008186734281480312, 0.021452980116009712, -0.005356324836611748, 0.03067084215581417, -0.028926922008395195, 0.021812837570905685, -0.019459929317235947, -0.005664279218763113, -0.018283475190401077, -0.018435722216963768, -0.0002802728267852217, 0.033937230706214905, 0.004252534359693527, 0.015612234361469746, 0.006425513885915279, 0.004736956674605608, 0.028982285410165787, -0.004847681615501642, -0.02377820760011673, 0.009806088171899319, 0.0010960050858557224, -0.004543187562376261, 0.019252320751547813, -0.010428916662931442, -0.048469897359609604, -0.007951444014906883, 0.00528712198138237, 0.024774732068181038, -0.017356153577566147, -0.027016915380954742, -0.013134760782122612, -0.021328415721654892, -0.005986073520034552, -0.003442857414484024, 0.022906247526407242, -0.019653698429465294, 0.03725898265838623, -0.016373468562960625, -0.019750583916902542, -0.005982613656669855, 0.01143928337842226, -0.012927151285111904, 0.003806174034252763, -0.036041006445884705, 0.014726432971656322, 0.006467035505920649, 0.016982456669211388, 0.007460101041942835, -0.005003388971090317, -0.00548089062795043, -0.02114848792552948, 0.0012672829907387495, 0.0416879877448082, 0.022034287452697754, -0.00972304493188858, 0.02851170301437378, 0.022117331624031067, 0.01568143628537655, -0.0016600108938291669, -0.002849440323188901, 0.028899241238832474, -0.006740387994796038, 0.012325083836913109, -0.0011159010464325547, -0.032137949019670486, -0.021563706919550896, -0.013162441551685333, -0.002103776205331087, 0.0096330801025033, -0.02881619706749916, 0.018172750249505043, 0.02375052683055401, -0.02136993780732155, 0.0037335106171667576, -0.017895938828587532, 0.005373625550419092, 0.01839420199394226, -0.02545292302966118, -0.0049134246073663235, -0.016581078991293907, -0.011785298585891724, -0.0239027738571167, 0.00686495378613472, -0.009356267750263214, -0.018006663769483566, 0.0006734333001077175, -0.0096330801025033, -0.013612262904644012, 0.0048096198588609695, 0.00021550297969952226, -0.0007158202352002263, -0.014110525138676167, -0.0032923405524343252, 0.0026176096871495247, 0.011598450131714344, -0.0004961001686751842, 0.008664236404001713, -0.011446203105151653, 0.03114142455160618, 0.026380246505141258, 0.0011946195736527443, -0.01588904671370983, -0.008373582735657692, -0.02375052683055401, 0.0021798997186124325, 0.009979096241295338, -0.015321580693125725, 0.0001508412678958848, 0.01042199693620205, -0.006927236914634705, 0.0171623844653368, 0.007688471581786871, 0.0022767840418964624, -0.013453095220029354, -0.020151961594820023, -0.004349418915808201, -0.01876789890229702, -0.030061854049563408, -0.004287136252969503, -0.007896080613136292, -0.0008797452319413424, -0.0045362673699855804, 0.04049769043922424, 0.01184066105633974, -0.03770188242197037, 0.011619211174547672, 0.002915183315053582, -0.004743876866996288, -0.012913310900330544, -0.0038442357908934355, 0.013584581203758717, -0.025674374774098396, 0.02170211263000965, 0.01771601103246212, 0.006591601297259331, -0.01919695734977722, -0.00044938805513083935, 0.020082758739590645, 0.018324997276067734, 0.02445639856159687, -0.006882254499942064, -0.012262800708413124, -0.019888989627361298, 0.005370165687054396, -0.036899127066135406, -0.022933928295969963, -0.0182142723351717, -0.00034644833067432046, -0.009114056825637817, 0.009529275819659233, -0.0030847310554236174, 0.013799111358821392, -0.009965255856513977, 0.009992936626076698, 0.02603423036634922, 0.0018390740733593702, -0.012601896189153194, -0.0019273081561550498, -0.0047404165379703045, 0.0101105822250247, 0.017051659524440765, -0.008788801729679108, 0.000913481751922518, -0.019612176343798637, 0.024470239877700806, 0.013536139391362667, 0.007480862084776163, 0.003723130328580737, 0.016844050958752632, -0.0038338552694767714, 0.025342198088765144, 0.022186534479260445, -0.029259098693728447, -0.01608281582593918, -0.00538054620847106, -0.005646978039294481, -0.012989434413611889, -0.009086375124752522, -0.011266275309026241, 0.01595824956893921, -0.008373582735657692, -0.015058608725667, 0.0005428123404271901, 0.007480862084776163, -0.022158853709697723, 0.0007729128701612353, 0.011197072453796864, 0.01676100678741932, 0.030781567096710205, 0.015543030574917793, -0.020677905529737473, 0.031335193663835526, 0.0007941063377074897, -0.014726432971656322, -0.019529132172465324, -0.002301005180925131, -9.710068843560293e-05, -0.00686495378613472, 0.013238565064966679, 0.008311299607157707, 0.0017975522205233574, -0.013764508999884129, 0.016996297985315323, 0.02535603940486908, 0.024594804272055626, 0.010359713807702065, -0.02202044613659382, -0.030504755675792694, 0.010629606433212757, -0.015321580693125725, -0.001775061129592359, 0.014989405870437622, 0.008505068719387054, 0.006121019832789898, -0.0003014662943314761, -0.0030362887773662806, 0.0009956605499610305, -0.0041002873331308365, -0.011757617816329002, -0.0032975308131426573, 0.003993022721260786, 0.02563285268843174, 0.003055319655686617, -0.0035708833020180464, -0.0033944151364266872, -0.007183288689702749, 0.011460044421255589, 0.0013581120874732733, 0.000970574386883527, -0.013674545101821423, -0.011293956078588963, -0.009141737595200539, -0.0010311271762475371, 0.0037369709461927414, -0.024636326357722282, 0.009951415471732616, -0.002467092825099826, 0.008809562772512436, -0.01267801970243454, 0.03784029185771942, 0.006792290601879358, -0.009543116204440594, 0.013598421588540077, -0.0019584496039897203, 0.003664307529106736, -0.023985816165804863, -0.009646921418607235, 0.004934185650199652, 0.0011617480777204037, -0.008470467291772366, 0.04202016070485115, -0.0135292187333107, -0.012781824916601181, -0.005968772806227207, 0.0013633023481816053, -0.003999942913651466, -0.004366719629615545, 0.00643243407830596, 0.005352864973247051, -0.019030870869755745, 0.0035172507632523775, -0.026075752452015877, 0.015113971196115017, -0.0015259297797456384, -0.003396145300939679, 0.02300313115119934, 0.024497920647263527, 0.01932152360677719, -0.01784057542681694, 0.03274693712592125, 0.021992765367031097, 0.009854530915617943, -0.0017923619598150253, -0.011453123763203621, -0.004463604185730219, -0.0063078682869672775, 0.0024065400939434767, 0.018283475190401077, -0.016733326017856598, -0.003221407299861312, -0.0040103234350681305, 0.0069479974918067455, -0.02427647076547146, -0.017549922689795494, 0.005460129585117102, 0.010332032106816769, -0.018228113651275635, 0.02665705978870392, -0.0060587371699512005, 0.014574186876416206, -0.008110610768198967, -0.022006606683135033, 0.006716167088598013, 0.016553396359086037, -0.005183317232877016, -0.005643518175929785, 0.0021902802400290966, -0.0037784927990287542, 0.01029743067920208, -0.015363102778792381, -0.004304436966776848, -0.0035328215453773737, 0.013397732749581337, 0.00943239126354456, 0.0190723929554224, -0.006159081589430571, -0.0004935050383210182, -0.0032058365177363157, -0.023833569139242172, -0.0003819149569608271, 0.003010337706655264, -0.005705800838768482, -0.02310001663863659, -0.03127983212471008, 0.005467049777507782, -0.020235005766153336, -0.01216591615229845, -0.006290567573159933, 0.02024884521961212, 0.007069103419780731, -0.01731463149189949, 0.020802471786737442, 0.020539499819278717, -0.030477073043584824, -0.010740331374108791, 0.013792190700769424, -0.004176410846412182, 0.011425442062318325, -0.011515406891703606, -0.00033606786746531725, -0.02071942761540413, -0.012456569820642471, 0.00034190688165836036, -0.009681522846221924, 0.00486152246594429, -0.014588027261197567, 0.02480241470038891, -0.008165973238646984, -0.01229048240929842, -0.01678868755698204, -0.002313115866854787, 0.005833826959133148, -0.006636583246290684, 0.015972090885043144, 0.026214158162474632, -0.005757703445851803, 0.007640029303729534, -0.018297316506505013, 0.015404624864459038, -0.010366634465754032, 0.005453209392726421, 0.017757531255483627, -0.0011522326385602355, 0.007411658763885498, -0.013660704717040062, -0.007605427876114845, 0.0050276098772883415, 0.006231744773685932, -0.003557042684406042, -0.010726490058004856, -0.009120977483689785, 0.0009420280694030225, -0.02152218483388424, -0.02402733825147152, -0.05284353718161583, 0.015806002542376518, 0.015086289495229721, 0.006425513885915279, 0.004442843142896891, -0.0068130516447126865, -0.01453266479074955, -0.0005423797992989421, -0.007238651160150766, 0.0030068776104599237, 0.010608845390379429, 0.013605342246592045, -0.03676072135567665, 0.002641830826178193, -0.008615793660283089, 0.01766064763069153, 0.015819843858480453, 0.012643418274819851, -0.01959833689033985, -0.010560402646660805, 0.0013736828695982695, 0.0014636468840762973, 0.0026798925828188658, -0.00633900985121727, 0.010830295272171497, -0.004231773316860199, 0.013010194525122643, -0.004138349089771509, 0.012657258659601212, -0.010989462956786156, -0.01678868755698204, 0.005397846922278404, -0.025023864582180977, -0.002956705167889595, 0.0069168563932180405, 0.002152218483388424, 0.01858796924352646, -0.04620003327727318, -0.008615793660283089, 0.0045362673699855804, -0.004152189940214157, -0.0022888947278261185, -0.01676100678741932, 0.013134760782122612, 0.010705729946494102, 0.0014082844136282802, 0.002058794256299734, -0.009681522846221924, 0.005231759045273066, 0.014103604480624199, -0.010006777942180634, 0.006833812687546015, 0.000538054620847106, 0.016677962616086006, 0.009169419296085835, 0.01826963573694229, -0.016124337911605835, 0.006726547610014677, 0.01676100678741932, -0.00859503261744976, 0.004750797059386969, -0.010705729946494102, -0.001724023837596178, -0.009065615013241768, -0.007771515287458897, 0.02300313115119934, -0.0033044510055333376, -0.010172865353524685, 0.0037265904247760773, 0.003588184015825391, -0.0028563605155795813, -0.02723836526274681, 0.0025501365307718515, -0.02804112248122692, 0.00548089062795043, 0.01719006523489952, -0.018103547394275665, 0.01583368331193924, -0.0003053589607588947, -0.010193626396358013, -0.015556870959699154, 0.008927208371460438, 0.004186791367828846, 0.0010588084114715457, 0.02089935541152954, -0.002743905410170555, 0.013418493792414665, 0.005567394662648439, 0.011653812602162361, 0.004903044085949659, -0.012511932291090488, -0.003830395173281431, 0.005456669721752405, -0.01638730987906456, 0.003979181870818138, 0.012774904258549213, -0.07302317768335342, -0.017356153577566147, 0.014657230116426945, 0.0035345517098903656, -0.016733326017856598, 0.01731463149189949, 0.023888932541012764, 0.018823260441422462, 0.013743748888373375, 0.021605227142572403, 0.011972147040069103, 0.009868371300399303, 0.013072477653622627, 0.004567408934235573, -0.0026452909223735332, 0.010159024968743324, 0.0016989377327263355, 0.03426940739154816, 0.011155550368130207, -0.023183060809969902, 0.008601953275501728, 0.006934157107025385, 0.008435865864157677, 0.004245614167302847, 0.03933507949113846, 0.0021747094579041004, 0.00786839984357357, 0.024373354390263557, 0.006501637399196625, -0.025162270292639732, -0.010345873422920704, 0.013812951743602753, -0.018809420987963676, 0.010428916662931442, 0.016996297985315323, 6.568893877556548e-05, 0.00925938319414854, -0.002889232011511922, -0.007570825982838869, -2.4910435968195088e-05, 0.010650367476046085, 0.002041493309661746, -0.013812951743602753, -0.0010103662498295307, 0.009889132343232632, 0.018020503222942352, -0.0028269493486732244, 0.01267801970243454, 0.006937617436051369, -0.006695406045764685, -0.0008023242116905749, 0.004394400864839554, -0.0012733382172882557, 0.0014290453400462866, 0.007896080613136292, 0.01128703635185957, -0.014588027261197567, 0.0135292187333107, -0.0035241711884737015, 0.016221221536397934, -0.0035120605025440454, -0.02247718721628189, 0.016248902305960655, 0.015252377837896347, -0.0009255923214368522, 0.0071210055612027645, -0.0007729128701612353, -0.0028719312977045774, 0.0039411201141774654, 0.003541471902281046, -0.008470467291772366, 0.007764595095068216, 0.006830352358520031, -0.019902830943465233, -0.012193597853183746, -0.013895994983613491, -0.03479535132646561, -0.008172893896698952, -0.012601896189153194, -0.004276755731552839, 0.029785042628645897, -0.009522355161607265, 0.015113971196115017, 0.005304422695189714, -0.0009074264671653509, -0.014338895678520203, -0.010954860597848892, 0.007183288689702749, -0.00040029705269262195, 0.02167443186044693, -0.014781796373426914, 0.01128703635185957, -0.00785455945879221, -0.01213823538273573, 0.015376943163573742, 0.013010194525122643, -0.0034117160830646753, 0.0005549228517338634, 0.0005588155472651124, 0.03039403073489666, 0.001076974207535386, 0.0239027738571167, 0.013716067187488079, 0.018878623843193054, -0.011847581714391708, -0.007141766604036093, -0.001882326090708375, 0.0074531808495521545, 0.001297559356316924, 0.012671099044382572, 0.0057957652024924755, -0.001939418725669384, 0.004252534359693527, 0.028899241238832474, -0.0014999785926192999, 0.014504983089864254, 0.016844050958752632, 0.0011902943952009082, 0.0022318020928651094, 0.014767955057322979, 0.0012421967694535851, -0.00442900275811553, -0.01638730987906456, -0.01057424396276474, -0.004975707735866308, 0.019349204376339912, -0.0032975308131426573, -0.013460015878081322, 0.0042732954025268555, -0.001979210413992405, -0.021190008148550987, -0.003167774761095643, -0.001553611014969647, -0.014228170737624168, -0.00029238336719572544, 0.0027542859315872192, 0.0051314146257936954, -0.011764537543058395, 0.027279887348413467, 0.0012940991437062621, 0.0057265618816018105, 0.02099624089896679, -0.008851084858179092, 0.014574186876416206, -0.009619239717721939, 0.010601924732327461, 0.008657315745949745, -0.024511760100722313, -0.005065671633929014, 0.0029203735757619143, -0.020428774878382683, 0.018629491329193115, -0.028068803250789642, -0.025549808517098427, -0.00876804068684578, -0.01230432279407978, -0.025397561490535736, 0.01493404246866703, -0.03598564490675926, -0.001081299502402544, 0.007328615058213472, -0.027653584256768227, -0.0041694906540215015, -0.01266417931765318, -0.004927265457808971, -0.010705729946494102, -0.0011115758679807186, -0.017909778282046318, -0.003387494944036007, 0.014518823474645615, 0.017425356432795525, 0.0202211644500494, 0.011563848704099655, 0.010428916662931442, 0.008691917173564434, -0.008961809799075127, 0.024747051298618317, 0.010691888630390167, -0.0033632738050073385, -0.026020389050245285, -0.010678048245608807, -0.005197157617658377, -0.002093395683914423, -0.018380360677838326, -0.006473956163972616, -0.009522355161607265, -0.01691325381398201, 0.010726490058004856, 0.013688385486602783, -0.017453037202358246, 0.0096330801025033, -0.005512032192200422, -0.005328643601387739, 0.015875205397605896, -0.00462969159707427, -0.03177809342741966, 0.0019722902216017246, 0.007999885827302933, 0.019639858976006508, -0.0010423726635053754, 0.033715780824422836, 0.02065022476017475, -0.009937574155628681, 0.0020293828565627337, 0.0080068064853549, 0.005522412713617086, 0.03094765543937683, -0.003268119413405657, -0.01889246329665184, -0.0016902872594073415, 0.0005839017103426158, 0.015058608725667, 0.013183202594518661, -0.01901702955365181, 0.0015882126754149795, 0.01898934878408909, 0.00923170242458582, 0.00870575848966837, -0.0035674232058227062, 0.034490857273340225, 0.0033096412662416697, 0.007231730502098799, 0.0009411630453541875, 0.018906304612755775, -0.005456669721752405, -0.0021366477012634277, -0.0007763730245642364, -0.018034344539046288, 0.003169504925608635, -0.0004515506443567574, -0.013321609236299992, 0.0006600251654163003, 0.01028359029442072, -0.0050725918263196945, 0.017383834347128868, 0.02989576756954193, -0.0020847453270107508, 0.008754200302064419, -0.007487782277166843, -0.004916884936392307, -0.005221378989517689, 0.026117274537682533, 0.005525872576981783, 0.0009039663127623498, -0.02548060566186905, 0.00944623164832592, -0.004518966656178236, -0.009190180338919163, 0.02856706641614437, -0.03521056845784187, 0.00040483850170858204, 0.007266332395374775, 0.018906304612755775, 0.02613111399114132, -0.0031089521944522858, -0.033134475350379944, -0.0062628863379359245, 0.0026556714437901974, 0.001290639047510922, 0.008511989377439022, -0.01385447382926941, 0.0009913353715091944, -0.005193697288632393, -0.012075952254235744, -0.01849108561873436, 0.006498177070170641, -0.0012266261037439108, 0.007321694865822792, 0.006449734792113304, 0.002589928451925516, -0.027349090203642845, -0.013425413519144058, -0.006619282532483339, 0.006166001781821251, 0.021619068458676338, 0.0030778106302022934, -0.0015389053151011467, 0.004788858816027641, 0.017079340294003487, -0.005657358560711145, -0.010871817357838154, 0.021093124523758888, 0.003434207057580352, -0.008020646870136261, 0.0021747094579041004, 0.01746687851846218, 0.01558455266058445, 0.04124508425593376, -0.00923170242458582, -0.01262957789003849, 0.00977148674428463, -0.00806908868253231, 0.006646963767707348, 0.004833841230720282, -0.004736956674605608, 0.010387394577264786, -0.004577789455652237, 0.0026193398516625166, 0.007169447839260101, -0.006913396064192057, 0.022560231387615204, -0.012525772675871849, -0.0057127210311591625, 0.020885515958070755, -0.003510330570861697, 0.01768832840025425, -0.0038961381651461124, 0.005228299181908369, 0.020082758739590645, 0.016567237675189972, -0.009321666322648525, -0.018560288473963737, -0.0021228070836514235, -0.013501537032425404, 0.0055535538122057915, -0.0010397775331512094, 0.015722958371043205, -0.0007218755199573934, 0.006473956163972616, -1.5570711184409447e-05, 0.023072335869073868, 0.005321723408997059, 0.015418465249240398, -0.011909864842891693, -0.011051745153963566, 0.001070053898729384, -0.007778435479849577, 0.008740359917283058, 0.011197072453796864, -0.020401092246174812, 0.0013157251523807645, 0.01904471032321453, 0.024138063192367554, -0.012124394066631794, -0.010885657742619514, -0.0002124753373209387, -0.005567394662648439, -0.003875377122312784, 0.0007582071702927351, -0.007086404133588076, 0.0015518809668719769, 0.0016894222935661674, 0.023016972467303276, -0.00024588749511167407, 0.00873343925923109, -0.006477416027337313, 0.010664207860827446, 0.0032975308131426573, 0.005764623638242483, 0.0208439938724041, 0.005328643601387739, -0.010795693844556808, 0.017882097512483597, 0.016927093267440796, -0.026089593768119812, 0.003266389248892665, 0.004602010361850262, 0.009605399332940578, -0.009439311921596527, 0.00019322821754030883, -0.010754171758890152, 0.0020743648055940866, -0.010691888630390167, 0.016622599214315414, -0.007501623127609491, -0.010069060139358044, -0.0006232609739527106, -0.013183202594518661, 0.015321580693125725, 0.009729964658617973, 0.00653277849778533, 0.00923170242458582, -0.03247012570500374, -0.01613817736506462, -0.016318107023835182, 0.01454650517553091, 0.019764423370361328, -0.019252320751547813, 0.0005856317584402859, -0.01766064763069153, -0.004242153838276863, -0.005723101552575827, 0.003546662162989378, -0.005363245029002428, -0.01110018789768219, -0.008103690110147, -0.003453237935900688, -0.004027624148875475, 0.0208439938724041, -0.03402027487754822, -0.0031868056394159794, -0.0037404310423880816, -0.0012992894044145942, -0.00634593004360795, 0.011245514266192913, -0.005837286822497845, -0.006989519577473402, -0.015792161226272583, -0.00409682746976614, -0.004048385191708803, -0.02044261433184147, -0.00859503261744976, 0.017674488946795464, 0.0003719670057762414, 0.012262800708413124, -0.006892635021358728, 0.023888932541012764, -0.020165802910923958, -0.004619311075657606, 0.01806202530860901, -0.005871888715773821, -0.012145155109465122, -0.0035812638234347105, 0.00024913137895055115, -0.0012742032995447516, -0.018435722216963768, 0.002586468355730176, -0.00042127424967475235, 0.012075952254235744, -0.023888932541012764, -0.002198930596932769, -0.0011444473639130592, 0.015778321772813797, -0.03271925449371338, 0.007861479185521603, -0.013321609236299992, -0.016248902305960655, -0.014338895678520203, 0.014823317527770996, -0.022131171077489853, 0.010290510952472687, -0.0011548277689144015, 0.0006396967801265419, -9.67222367762588e-05, 0.02467784844338894, -0.010581163689494133, -0.007034501526504755, -0.01588904671370983, -0.00887184590101242, 0.027252206578850746, 0.011030984111130238, 0.004172950983047485, 0.00805524829775095, 0.018850941210985184, -0.007062182761728764, -0.010560402646660805, 0.011058665812015533, -0.013508457690477371, 0.01997203379869461, 0.011370079591870308, -0.011169390752911568, -0.024664007127285004, 0.004470524378120899, 0.023971976712346077, 0.011363159865140915, -0.018754057586193085, 0.013985959812998772, 0.012802585028111935, -0.005024149548262358, 0.002487853867933154, 0.006159081589430571, 0.024760892614722252, -0.01898934878408909, 0.0016357897548004985, -0.015321580693125725, 0.007411658763885498, -0.022491028532385826, 0.006141780875623226, -0.017522241920232773, -0.021439140662550926, 0.0045362673699855804, 0.006318248808383942, 0.0054635899141430855, 0.003166044829413295, -1.6854755813255906e-05, 0.0026608617044985294, 0.004020703956484795, -0.00257089757360518, -0.00514179514721036, 0.011743777431547642, -0.010352793149650097, -0.011916784569621086, -0.019030870869755745, 0.0034065258223563433, 0.006972218863666058, -0.002534565981477499, -0.0030276384204626083, 0.014643389731645584, -0.012837187387049198, 0.018228113651275635, -0.027722787111997604, -0.01096178125590086, 0.012871788814663887, 0.0109479408711195, 0.007148686796426773, -0.0023805887904018164, 0.003557042684406042, 0.006560460198670626, -0.0036816082429140806, -0.005979153327643871, 0.021203849464654922, 0.008511989377439022, 0.008076009340584278, -0.012892549857497215, 0.005868428386747837, -0.02179899625480175, 0.02250486984848976, -0.00269373320043087, -0.01076109241694212, -0.010857976973056793, 0.013937517069280148, 0.002951514907181263, 0.019736742600798607, 0.0050276098772883415, -0.000376292213331908, 0.016276584938168526, 0.021591387689113617, 0.01756376400589943, -0.01984746754169464, 0.0022283419966697693, 0.01249117124825716, -0.00023831840371713042, -0.008844164200127125, 0.002044953405857086, -0.006982599385082722, 0.0027785070706158876, 0.02415190450847149, -0.008338981308043003, 0.010318191722035408, -0.017231587320566177, -0.015459987334907055, -0.003868456929922104, -0.0054186079651117325, -0.009543116204440594, 0.016401149332523346, -0.028926922008395195, -0.004941105842590332, 0.008588112890720367, 0.023238422349095345, 0.012124394066631794, -0.021342255175113678, -0.011667653918266296, 0.007273252587765455, -0.008089849725365639, -0.009210941381752491, -0.0004965327098034322, 0.0005601131124421954, 0.019030870869755745, 0.013750668615102768, 0.013183202594518661, 0.03994406759738922, 0.011785298585891724, 0.01440809853374958, 0.013010194525122643, 0.006941077299416065, 0.019529132172465324, 0.004044924862682819, -0.010352793149650097, -0.017383834347128868, 0.02387509122490883, 0.013072477653622627, -0.0050414507277309895, -0.008941048756241798, -0.00786839984357357, 0.0033148315269500017, -0.026449449360370636, -0.01235276460647583, 0.010657287202775478, -0.0019238479435443878, 0.011716095730662346, 0.0035293614491820335, 0.018228113651275635, -0.01979210413992405, -0.007148686796426773, -0.014075923711061478, -0.0253837201744318, -0.0013581120874732733, 0.0011530977208167315, 0.0201242808252573, 0.022241897881031036, -0.003709289710968733, 0.012498091906309128, -0.008601953275501728, -0.0074531808495521545, -0.006280187051743269, 0.017674488946795464, 0.013895994983613491, 0.0033840348478406668, -0.014809477142989635, -0.005020689684897661, -1.7138596376753412e-05, 0.01972290128469467, 0.008235177025198936, 0.006269806530326605, -0.006726547610014677, 0.020940877497196198, -0.012546533718705177, -0.0011133059160783887, -0.004667753353714943, 0.013113999739289284, 0.01286486815661192, -0.011155550368130207, -0.021010080352425575, -0.02448407933115959, 0.008325140923261642, 0.017120862379670143, 0.021882040426135063, -0.028082644566893578, -0.014781796373426914, 0.019252320751547813, -0.021605227142572403, 0.0014567265752702951, 0.015626074746251106, 0.0019290382042527199, -0.029425185173749924, 0.004799239337444305, -0.004498205613344908, -0.0016920174239203334, -0.0005661683971993625, 0.02269863709807396, -0.01229048240929842, 0.016027452424168587, -0.01616585999727249, 0.009494674392044544, 0.005927251186221838, -0.02217269316315651, -0.004899584222584963, -0.01629042439162731, 0.017494559288024902, 4.63877477159258e-05, 0.0014325055526569486, -0.015847524628043175, -0.009480833075940609, -0.014013640582561493, 0.007875320501625538, 0.01544614601880312, 0.004975707735866308, -0.008553511463105679, -0.018075866624712944, -0.014311213977634907, -0.003916899207979441, 0.016179699450731277, 0.01161229144781828, 0.006674645002931356, -0.010657287202775478, 0.010643446817994118, -0.013376971706748009, -0.0016522255027666688, 0.013473856262862682, -0.0003667767741717398, 0.0029082628898322582, 0.005138334818184376, 0.010878737084567547, 0.014504983089864254, 0.01793746091425419, -0.01130087673664093, 0.0002616744604893029, -0.01012442260980606, 0.0008689322276040912, -0.011556928046047688, -0.013183202594518661, 0.0009939305018633604, 0.01626274362206459, 0.005640057846903801, 0.002627990208566189, 0.0065396991558372974, -0.0045293471775949, 0.011086346581578255, -0.012712621130049229, 0.003276769770309329, -0.006750768516212702, 0.002785427263006568, 0.02989576756954193, 0.014560345560312271, -0.007446260657161474, -0.013619182631373405, 0.0009031012887135148, 0.002638370729982853, -0.005653898697346449, 0.018837101757526398, 0.0041002873331308365, -0.008622714318335056, 0.02770894765853882, 0.00772307300940156, 0.011072506196796894, 0.01713470369577408, 0.012546533718705177, -0.00885800551623106, 0.013252406381070614, 0.0019567194394767284, 0.017245428636670113, 0.012221278622746468, -0.013266246765851974, -0.013985959812998772, -0.017480719834566116, 0.026975393295288086, -0.0651063397526741, -0.010186705738306046, 0.0029947669245302677, -0.004186791367828846, -0.006383991800248623, 0.012615736573934555, 0.013266246765851974, -0.00819365493953228, 0.01898934878408909, -0.00528712198138237, 0.017771372571587563, 0.003934199921786785, 0.0010138263460248709, -0.0038407756946980953, 0.008276698179543018, -0.01110018789768219, -0.0025034244172275066, 0.016470354050397873, -0.0026054992340505123, 0.00012791772314812988, 0.00824209675192833, 0.004653912968933582, -0.004404781386256218, -0.013487696647644043, 0.0041694906540215015, 0.01029743067920208, 0.006169462110847235, 0.0017508401069790125, 0.00410374766215682, -0.01889246329665184, 0.0020172721706330776, -0.01768832840025425, -0.007231730502098799, 0.002204120857641101, 0.00034731338382698596, -0.0075431447476148605, -0.011896023526787758, -0.005349404644221067, -0.00885800551623106, 0.018034344539046288, -0.004761177580803633, -0.02751517854630947, -0.015390783548355103, 0.010006777942180634, -0.03402027487754822, 0.022684797644615173, 0.02368132211267948, -0.00804140791296959, 0.0012802585260942578, 0.01653955690562725, -0.013453095220029354, -0.008802642114460468, -0.022767841815948486, 0.0018131228862330317, 0.02656017430126667, 0.006093338597565889, 0.01544614601880312, -0.020151961594820023, -0.002147028222680092, 0.007169447839260101, 0.008851084858179092, 0.007972204126417637, -0.004380560480058193, 0.014795636758208275, -0.007653870154172182, 0.006612362340092659, -0.008622714318335056, 0.008235177025198936, 0.008214415982365608, 0.006512017920613289, -0.022435665130615234, -0.01385447382926941, -0.015404624864459038, 0.023016972467303276, -0.002482663607224822, 0.01984746754169464, 0.0017646807245910168, 0.002415190450847149, -0.004480904899537563, -0.013536139391362667, -0.014124365523457527, 0.008262857794761658, 0.02260175347328186, -0.0005229164380580187, -0.018297316506505013, 0.004269835073500872, 0.010498120449483395, -0.011377000249922276, -0.0021210769191384315, -0.012767983600497246, 0.00080491928383708, 0.011736856773495674, -0.01262957789003849, 0.011183231137692928, 0.003167774761095643, -0.011958306655287743, -0.005127954296767712, -0.005515492055565119, -0.011224753223359585, -0.006477416027337313, -0.003816554555669427, 0.003979181870818138, -0.04830380901694298, -0.008145212195813656, -0.0014697022270411253, 0.0018546448554843664, -0.012809505686163902, -0.0027214144356548786, -0.002301005180925131, 0.021079283207654953, 0.011916784569621086, 0.020165802910923958, -0.011024064384400845, 0.004176410846412182, 0.023279944434762, 0.004685054067522287, 0.006141780875623226, -0.00615216139703989, -0.02049797773361206, 0.01440809853374958, 0.011861422099173069, -0.0025968486443161964, -0.011120948940515518, -0.0029947669245302677, 0.015847524628043175, -0.00047620426630601287, 0.03036634810268879, 0.004788858816027641, -0.007667710538953543, -0.0006890040240250528, -0.021452980116009712, 0.017923619598150253, 0.007778435479849577, 0.010837215930223465, 0.015017086640000343, 0.00367122795432806, -0.0058407471515238285, 0.018657173961400986, 0.01635962724685669, -0.003982642199844122, 0.0065846811048686504, -0.0007063047960400581, 0.03338360786437988, 0.006449734792113304, -0.011972147040069103, 0.0011184961767867208, -0.007930682972073555, 0.009501594118773937, 0.005965312942862511, 0.004685054067522287, 0.002259483328089118, 0.014214330352842808, -0.004550108220428228, 0.026975393295288086, -0.0006025000475347042, 0.007875320501625538, -0.012248960323631763, -0.012498091906309128, 0.010595004074275494, 0.008152132853865623, -0.013674545101821423, 0.010615765117108822, 0.018228113651275635, -0.0011184961767867208, -0.001073514111340046, 0.016096655279397964, -0.0026176096871495247, 0.028373297303915024, -0.030227942392230034, -0.00856735184788704, 0.005588155705481768, 0.022532550618052483, 0.0068580335937440395, 0.010456598363816738, 0.0038995982613414526, -0.018297316506505013, 0.008747279644012451, 0.011563848704099655, 0.005235219374299049, -0.03127983212471008, -0.015819843858480453, -0.005619296804070473, -0.006968758534640074, -0.022491028532385826, -0.0017534352373331785, -0.01044967770576477, -0.0021141567267477512, 0.011716095730662346, 0.008297459222376347, 0.015238536521792412, 0.002589928451925516, 0.002569167409092188, 0.010934099555015564, 0.018878623843193054, 0.002859820844605565, 0.0007076023612171412, 0.006449734792113304, 0.006082958076149225, 0.009577717632055283, 0.009640000760555267, 0.0054186079651117325, 0.008809562772512436, -0.00972304493188858, -0.0033840348478406668, -0.003723130328580737, 0.0023234961554408073, -0.014989405870437622, 0.01771601103246212, -0.004833841230720282, -0.008186734281480312, 0.014242011122405529, -0.005166016053408384, 0.025646692141890526, 0.04755641520023346, -0.009176339954137802, 0.0003767247253563255, 0.0015795622020959854, 0.021605227142572403, -0.0034757289104163647, 0.0095361964777112, 0.0075569855980575085, -0.0018754057819023728, 0.0033546234481036663, 0.013722987845540047, 0.012082872912287712, -0.004671213682740927, -0.015100130811333656, 0.009999857284128666, 0.018754057586193085, 0.009349347092211246, 0.006882254499942064, 0.017577603459358215, 0.002916913479566574, -0.0029221035074442625, 0.01691325381398201, 0.02563285268843174, 0.012318163178861141, 0.025272995233535767, 0.007210969924926758, 6.212065636646003e-05, -0.0047680982388556, -0.006847653072327375, -0.022269578650593758, -0.013466935604810715, 0.0031003018375486135, 0.000752584426663816, -0.013051716610789299, 0.02139761857688427, -0.0072801727801561356, -0.016193540766835213, -0.003226597560569644, -0.0041002873331308365, 0.0026106894947588444, 0.026601696386933327, -0.0060448963195085526, 0.007992965169250965, -0.016068974509835243, -0.008913367986679077, 0.015238536521792412, 0.0041245087049901485, -0.018380360677838326, 0.004574329126626253, -0.004449763335287571, 0.023307625204324722, 0.0025051545817404985, -0.012082872912287712, -0.0016885572113096714, -0.016318107023835182, 0.0007802656618878245, -0.009577717632055283, 0.0014800826320424676, 0.023985816165804863, 0.002410000190138817, -0.024068860337138176, -0.02696155197918415, -0.020387252792716026, -0.006197143346071243, -0.023390669375658035, 0.00046193113666959107, 0.0044463034719228745, -0.01741151697933674, -0.0006154756410978734, -0.0011617480777204037, 0.0022318020928651094, 0.0010968701681122184, 0.0005726561648771167, -0.02087167464196682, 0.0090586943551898, 0.01425585150718689, 0.01957065425813198, -0.022837044671177864, 0.011902944184839725, 0.009916813112795353, -0.0006760284304618835, 0.02096855826675892, 0.007259411737322807, 0.014138206839561462, 0.009321666322648525, -0.008276698179543018, 0.0049826279282569885, -0.020165802910923958, -0.014560345560312271, 0.012228199280798435, 0.0005622757016681135, 0.011273195035755634, -0.008401264436542988, -0.01929384283721447, -0.029259098693728447, -0.005273281130939722, 0.020927036181092262, -0.010338952764868736, -0.008200574666261673, 0.053480204194784164, -0.0031037619337439537, 0.017300792038440704, 0.015293898992240429, -0.0031106823589652777, -0.009494674392044544, -0.006169462110847235, -0.0045916298404335976, 0.02829025313258171, -0.02563285268843174, -0.014629549346864223, 0.020525658503174782, 0.00786839984357357, 0.0090586943551898, 0.0009454882238060236, 0.004193711560219526, 0.005563934333622456, 0.0020207324996590614, -0.008830323815345764, 0.007778435479849577, -0.007999885827302933, 0.012601896189153194, -0.00290999305434525, 0.022311100736260414, -0.016747165471315384, -0.0010882198112085462, -0.018712535500526428, -0.00992373377084732, -0.013923676684498787, -0.0190723929554224, -0.022117331624031067, 0.004110667854547501, 0.0054635899141430855, -0.002153948415070772, 0.016982456669211388, -0.02096855826675892, 0.02523147314786911, 0.0025518666952848434, -0.027155321091413498, -0.003370193997398019, 0.02525915578007698, 0.018324997276067734, -0.013833712786436081, 0.00043944010394625366, 0.016677962616086006, 0.026767784729599953, 0.008262857794761658, -0.0025086146779358387, -0.0021850899793207645, 0.0067888302728533745, -0.0012257610214874148, -0.004705815110355616, -0.008484307676553726, 0.006404752843081951, 0.003287150291725993, -0.006138320546597242, 0.01062268577516079, -0.022131171077489853, 0.005858047865331173, 0.02334914728999138, -0.00139530876185745, 0.004619311075657606, -0.0017378644552081823, -0.012546533718705177, -0.004269835073500872, -0.02262943424284458, -0.0012603626819327474, 0.0022248816676437855, 0.0364285446703434, 0.032110270112752914, 0.01796514168381691, -0.006041436456143856, 0.004107207991182804, -0.01296867337077856, 0.009100216440856457, -0.004370179958641529, -0.008089849725365639, 0.018435722216963768, 0.006605442147701979, 0.0025933885481208563, 0.015501508489251137, 0.013224724680185318, -0.0034878395963460207, 0.005065671633929014, 0.012456569820642471, -0.017300792038440704, -0.014477302320301533, 0.008588112890720367, 0.004404781386256218, -0.005103733390569687, -0.006799210794270039, -0.007501623127609491, -0.004993008449673653, 0.004664293490350246, 0.015930568799376488, 0.007570825982838869, 0.002631450304761529, -0.0013814681442454457, 0.013833712786436081, 0.005643518175929785, -0.034767668694257736, 0.006093338597565889, 0.016705643385648727, -0.0013287008041515946, 0.007467021234333515, 0.010359713807702065, -0.0011972147040069103, -0.0013607072178274393, -0.004121048375964165, 0.0027888875920325518, 0.0031971861608326435, 0.0002683785278350115, -0.01134931854903698, 0.013120920397341251, 0.002089935587719083, 0.018421882763504982, -0.0034186362754553556, 0.021093124523758888, 0.005937631707638502, 0.01213823538273573, -0.02312769740819931, -0.022809363901615143, 0.00870575848966837, -0.0075293043628335, 0.01339081209152937, -0.020664064213633537, -0.024442557245492935, 0.007335535250604153, 0.0004515506443567574, 0.009529275819659233, 0.018850941210985184, -0.012851027771830559, -0.010186705738306046, 0.010491199791431427, 0.00015981605974957347, -0.007487782277166843, 0.007363216485828161, -0.014601867645978928, 0.015529190190136433, -0.004501665942370892, 0.005868428386747837, -0.024664007127285004, 0.005207538139075041, 0.011203992180526257, -0.03651158884167671, -0.0030483994632959366, -0.006255966145545244, -0.0070310416631400585, -0.013113999739289284, 0.0050725918263196945, 0.02501002326607704, -0.002032842952758074, 0.0026695120614022017, 0.010041379369795322, -0.0023407971020787954, -0.011127868667244911, 0.014504983089864254, 0.0015726418932899833, 0.0029740058816969395, -0.006162541918456554, 0.017895938828587532, 0.03695448860526085, 0.013895994983613491, 0.0004193279310129583, 0.006515477783977985, -0.004996468313038349, 0.013979039154946804, -0.01250501163303852, -0.00048571970546618104, 0.00300341728143394, -0.0014281802577897906, 0.013425413519144058, 0.010207466781139374, -0.017480719834566116, 0.00781995803117752, -0.028345616534352303, -0.006581220775842667, 0.004373639822006226, 0.011356239207088947, 0.015113971196115017, -0.0018165830988436937, 0.011999828740954399, -0.008221335709095001, 0.005830366630107164, -0.003190265968441963, 0.003999942913651466, 0.005736942403018475, 0.004442843142896891, 0.003920359071344137, 0.017978982999920845, 0.012560374103486538, -0.002470552921295166, -0.021563706919550896, -0.01563991606235504, 0.007584666833281517, 0.00022209891176316887, 0.005757703445851803, 0.019958192482590675, -0.013072477653622627, -0.0211761686950922, -0.011716095730662346, 0.020055077970027924, 0.016442671418190002, 0.010608845390379429, 0.0069030155427753925, 0.0025553267914801836, 0.00876804068684578, -0.0024947740603238344, -0.026214158162474632, -0.005013769492506981, 0.023113856092095375, -0.007487782277166843, -0.006387452129274607, 0.012435808777809143, -0.02460864558815956, -0.004145269747823477, 0.001675581675954163, 0.010629606433212757, -0.006255966145545244, 0.007425499614328146, -0.013549979776144028, 0.01167457364499569, 0.007349376101046801, 0.02625568024814129, -0.03878145292401314, 0.021190008148550987, -0.016345787793397903, 0.016774846240878105, 0.01558455266058445, 0.014449620619416237, 0.007840718142688274, -0.013909836299717426, 0.0311691053211689, -0.0004171653126832098, -0.009418550878763199, -0.0029757360462099314, -0.022643275558948517, -0.012145155109465122, 0.003499950049445033, -0.003174695186316967, -0.02096855826675892, -0.006882254499942064, -0.0006323439301922917, 0.015418465249240398, 0.007100244518369436, -0.00013883884821552783, -0.015404624864459038, 0.011169390752911568, -0.01220051757991314, 0.002736985217779875, 0.028733154758810997, 0.015459987334907055, -0.015113971196115017, 0.007307854015380144, -0.0029791961424052715, 0.032608531415462494, -0.005460129585117102, 0.01826963573694229, 0.005332103930413723, 0.017480719834566116, -0.013107079081237316, 0.006453195121139288, -0.01339081209152937, 0.015113971196115017, -0.006477416027337313, -0.018352679908275604, -0.03443549573421478, 0.006404752843081951, 0.01586136594414711, 9.607345418771729e-05, -0.0013780080480501056, 0.007764595095068216], "c5de2a2e-604d-44d7-9122-f1e00ef9720b": [-0.012680173851549625, -0.046073924750089645, -0.007134238723665476, 0.05108823627233505, 0.014793535694479942, -0.04100710526108742, 0.029508313164114952, 0.03893312066793442, -0.021474910899996758, 0.07377078384160995, -0.005270279012620449, 0.006438535172492266, 0.00177207391243428, -0.015515492297708988, 0.020424792543053627, 0.022131234407424927, -0.01674938015639782, 0.027801871299743652, -0.004860077053308487, 0.013395566493272781, 0.040560804307460785, -0.03152979165315628, -0.03520520403981209, 0.010218960233032703, 0.012004160322248936, 0.01233232207596302, -0.04042953997850418, 0.007508343085646629, -0.034785155206918716, -0.0424247644841671, -0.008689725771546364, -0.007626481354236603, 0.007711803540587425, 0.02293195016682148, 0.01571238972246647, -0.027198053896427155, 0.004364552441984415, -0.028195666149258614, -0.058386556804180145, -0.007974333129823208, -0.03008587844669819, 0.019650330767035484, 0.014780409634113312, -0.01320523303002119, -0.04822666570544243, -0.010665260255336761, -0.03142477944493294, -0.027303066104650497, -0.006536983884871006, 0.014544133096933365, 0.011196882463991642, -0.0077839987352490425, 0.024900920689105988, 0.015515492297708988, 0.02631857991218567, -0.062114473432302475, 0.0016687029274180532, 0.016657495871186256, -0.025491612032055855, -0.07088296115398407, 0.01263423077762127, -0.018888995051383972, 0.008184356614947319, -0.018770856782794, 0.01783887855708599, 0.017707612365484238, 0.0014250428648665547, 0.004325173329561949, -0.03011213056743145, -0.015883034095168114, -0.0034325728192925453, 0.012890197336673737, -0.023036962375044823, -0.010684949345886707, 0.03533646836876869, -0.023706411942839622, 0.038119278848171234, 0.017904510721564293, 0.022997582331299782, -0.019427180290222168, -0.0006973439012654126, -0.024520253762602806, 0.03079470805823803, 0.012391391210258007, 0.06284955888986588, 0.0078955739736557, -0.012260126881301403, -0.033393748104572296, 0.007239250466227531, -0.018377063795924187, -0.01921715773642063, 0.027171799913048744, 0.007048916537314653, -0.014688524417579174, -0.003419446526095271, -0.04318609833717346, -5.455690552480519e-05, -0.005683762952685356, 0.02459901198744774, -0.01061275415122509, 0.021067989990115166, -0.0033488916233181953, 0.006825766526162624, 0.0009959711460396647, -0.020372286438941956, 0.0037672980688512325, 0.022485649213194847, -0.009634831920266151, 0.0022971329744905233, 0.04318609833717346, 0.01506919227540493, -0.03964195027947426, 0.003790269372984767, -0.027591848745942116, -0.050484418869018555, -0.025071565061807632, -0.020306654274463654, 0.04098084941506386, -0.020647943019866943, -0.019348422065377235, 0.03943192586302757, -0.02606917731463909, -0.004528633318841457, 0.0076527344062924385, -0.03213360905647278, 0.006579644978046417, 0.010317408479750156, 0.041558414697647095, 0.027618100866675377, 0.0015940461307764053, 0.007613354828208685, -0.0013167493743821979, 0.00836156401783228, 0.004479409195482731, 0.0016391683602705598, 0.0012018927372992039, 0.010835903696715832, 0.06116936728358269, 0.001343822805210948, -0.0063630579970777035, -0.04764910042285919, -0.019256537780165672, -0.04077082872390747, 0.008486265316605568, -0.0001572100300109014, 0.024060826748609543, -0.004049517214298248, 0.023351997137069702, -0.005270279012620449, 0.01453100610524416, -0.06200946122407913, -0.0274343304336071, -0.03809302672743797, 0.04384242370724678, 0.03045341931283474, -0.023391377180814743, 0.0005603363388217986, 0.018705224618315697, -0.011945091187953949, 0.032343629747629166, 0.03244864195585251, -0.04547010362148285, -0.004919146187603474, 0.02537347376346588, 0.038171786814928055, 0.007757746148854494, 0.055236201733350754, 0.015961792320013046, -0.0077183665707707405, 0.023063214495778084, -0.019007133319973946, -0.0263317059725523, 0.01751071587204933, 0.03137227147817612, 0.0017983269644901156, 0.004338299389928579, 0.014504753984510899, 0.011945091187953949, -0.032343629747629166, 0.0009188531548716128, -0.04069206863641739, 0.01350714173167944, 0.010704639367759228, -0.006943904794752598, 0.00803996529430151, 0.03762047365307808, -0.009497003629803658, 0.015161077491939068, -0.013966567814350128, -0.007022663485258818, -0.006615742575377226, -0.023076340556144714, 0.02532096765935421, -0.026252947747707367, -0.01371716521680355, -0.0025334095116704702, -0.005982390604913235, -0.010199270211160183, 0.002776249311864376, 0.0003484668559394777, -0.0005931525374762714, -0.02331261709332466, -0.015397354029119015, 0.03229112550616264, -0.006340086925774813, 0.017169427126646042, 0.004627082031220198, -0.015292341820895672, 0.030295901000499725, -0.026187315583229065, 0.052558399736881256, -0.04250352084636688, 0.007889010943472385, -0.03386630117893219, 0.012896760366857052, -0.004430185072124004, -0.022459397092461586, 0.042661041021347046, -0.04006199911236763, -0.036859139800071716, 0.014124086126685143, 0.001847551204264164, -0.02630545385181904, -0.02391643449664116, -0.04145340248942375, -0.004141402430832386, -0.0329211950302124, -0.011019675061106682, 0.015843654051423073, 0.020398540422320366, 0.03050592541694641, 0.02457275800406933, 0.008066218346357346, 0.009588888846337795, -0.006093965377658606, 0.03570400923490524, 0.08101659268140793, 0.0452338270843029, -0.026620488613843918, -0.0003146251547150314, 0.02323385886847973, 0.02184245176613331, -0.021855579689145088, -0.024822162464261055, -0.0016851110849529505, 0.01644747145473957, 0.013743418268859386, 0.049775589257478714, 0.005552498623728752, -0.007994022220373154, -0.04932928830385208, -0.01674938015639782, 0.007258940022438765, -0.010068004950881004, -0.04113836959004402, 0.015016686171293259, 0.02874697744846344, -0.031057236716151237, -0.03762047365307808, -0.01558112446218729, 0.0015054424293339252, 0.048751723021268845, -0.015161077491939068, 0.03357752040028572, 0.0164605975151062, -0.046441465616226196, 0.0051554227247834206, 0.027933135628700256, 0.03255365416407585, 0.05032689869403839, -0.01912527158856392, -0.008138413541018963, -0.022183740511536598, 0.011735067702829838, 0.0009410040802322328, 0.00039174320409074426, -0.017274439334869385, 0.01265392079949379, 0.03229112550616264, 0.0032077820505946875, -0.030610937625169754, -0.024861540645360947, 0.0033292018342763186, -0.026436718180775642, 0.028589459136128426, 0.02087109349668026, -0.0204772986471653, 0.009818602353334427, -0.008702851831912994, 0.011702251620590687, 0.011721940711140633, -0.003964195027947426, 0.02084483951330185, 0.03286869078874588, 0.016329333186149597, -0.014045326970517635, -0.019400928169488907, 0.005601722747087479, -0.008453449234366417, 0.02497967891395092, -0.010501178912818432, -0.008853806182742119, -0.014924800954759121, -0.013651533052325249, -0.030033372342586517, -0.020464172586798668, 0.06783761829137802, 0.02562287636101246, 0.0012806515442207456, 0.04457750543951988, 0.03210735321044922, 0.007915263995528221, -0.03536272048950195, -0.01247671339660883, -0.000727288716007024, 0.04205722361803055, 0.007226123940199614, 0.004787881392985582, 0.020411666482686996, 0.004814134445041418, 0.017379451543092728, 0.007219560444355011, -0.05450112000107765, -6.055611447663978e-05, 0.046782754361629486, -0.04079708084464073, 0.0215799231082201, 0.02809065394103527, -0.011131249368190765, -0.003567119361832738, -0.017379451543092728, -0.0297445897012949, 0.0002481724077370018, 0.015213582664728165, -0.017681360244750977, -0.014846041798591614, -0.024192091077566147, -0.002170790685340762, 0.036439090967178345, -0.022433143109083176, -0.009687338024377823, -0.048095401376485825, 0.011794136837124825, -0.020267276093363762, -0.02087109349668026, 0.001980456756427884, 0.024021446704864502, 0.05166580155491829, -0.0015702544478699565, -0.011433159001171589, 0.0007777435821481049, -0.013533394783735275, 0.015935538336634636, 0.004709122236818075, -0.004784599877893925, -0.005326066631823778, -0.02599041722714901, 0.00675357086583972, -0.03173981234431267, 0.016329333186149597, 0.014425994828343391, -0.031267259269952774, -0.025754140689969063, 0.0012018927372992039, -0.019650330767035484, 0.013467761687934399, 0.006399156060069799, -0.03139852359890938, -0.008177793584764004, 0.007449273951351643, -0.0063302419148385525, -0.022354384884238243, -0.004239851143211126, -0.021422404795885086, -0.014412867836654186, -0.046073924750089645, 0.02295820228755474, 0.007180181331932545, 0.011183755472302437, -0.008939128369092941, 0.03552023693919182, -0.01214198861271143, -0.0049322727136313915, 0.026108555495738983, 0.04835793003439903, 0.009241038002073765, 0.026423592120409012, -0.06064430996775627, -0.05213835462927818, -0.00420375308021903, -0.023837676271796227, -0.008046528324484825, 3.204705353709869e-05, 0.009234474040567875, -0.00018366808944847435, 2.9508928491850384e-05, -0.015502365306019783, -0.009254164062440395, -0.0053227851167321205, -0.005975827109068632, -0.004328454844653606, 0.016959404572844505, 0.0025908376555889845, 0.0029222811572253704, -0.012371701188385487, -0.0404820442199707, -0.04116462171077728, -0.01983410120010376, -0.001376638887450099, 0.01774699240922928, 0.0002479672839399427, 0.004361270926892757, -0.000786768039688468, 0.04646771773695946, 0.036439090967178345, 0.03391880914568901, 0.021750567480921745, 0.042240992188453674, -0.0548686608672142, -0.023772044107317924, 0.023168226704001427, 0.024113332852721214, 0.01677563413977623, 0.01077027153223753, 0.003058468457311392, 0.004374397452920675, 0.04166342690587044, -0.027985641732811928, -0.01147910114377737, 0.01945343427360058, 0.011426595039665699, 0.03725293278694153, -0.0174319576472044, -0.005020876415073872, 0.010875283740460873, -0.03208110108971596, 0.003649159800261259, 0.011675998568534851, 0.0321861132979393, 0.00504712900146842, -0.00840750616043806, -0.007193307857960463, 0.0035146132577210665, 0.01945343427360058, -0.030663441866636276, -0.057021401822566986, -0.020437920466065407, 0.030348407104611397, 0.011689124628901482, -0.012358575128018856, 0.010133638046681881, 0.008335310965776443, -0.04352738708257675, -0.03247489780187607, 0.021698061376810074, -0.007318009156733751, -0.011078744195401669, -0.002707335166633129, 0.0030814397614449263, -0.03208110108971596, 0.028484448790550232, -0.011190318502485752, -0.004220161121338606, 0.026528604328632355, -0.00956919975578785, -0.024769656360149384, -0.009536382742226124, 0.011203445494174957, -0.007357388734817505, -0.01841644197702408, 0.029009507969021797, -0.002841881476342678, 0.019952239468693733, 0.03659660741686821, 0.0034686706494539976, 0.0012519374722614884, -0.015462986193597317, -0.003862464800477028, -0.0026843638624995947, -0.032028596848249435, 0.025832900777459145, -0.009254164062440395, 0.028878241777420044, -0.004709122236818075, -0.008853806182742119, 0.03210735321044922, -0.006891398690640926, -0.005585314705967903, -0.005240744445472956, -0.003980603069067001, 0.029193278402090073, -0.0010025344090536237, -0.017523841932415962, -0.005700171459466219, 0.01421597134321928, -0.01715630106627941, 0.0059725455939769745, -0.014058453030884266, -0.004866640083491802, -0.02809065394103527, 0.02119925431907177, -0.031661055982112885, 0.02013600990176201, 0.01681501232087612, -0.03420758992433548, 0.045995164662599564, 0.0036655678413808346, 0.02635795995593071, -0.01559425052255392, -0.00411514937877655, -0.02567538246512413, 0.038828108459711075, -0.025110945105552673, 0.006963594350963831, 0.019689710810780525, 0.015449859201908112, -0.011347836814820766, -0.0047058407217264175, 0.043973688036203384, 0.02356201969087124, 0.015436733141541481, -0.037489209324121475, -0.03147728368639946, -0.011255951598286629, -0.014189718291163445, -0.004627082031220198, 0.006458225194364786, -0.015620503574609756, -0.025110945105552673, -0.03381379693746567, 0.0064877597615122795, 0.021343646571040154, -0.03155604377388954, -0.011374089866876602, -0.0076855504885315895, -0.01783887855708599, 0.004682869650423527, -0.00710798567160964, -5.855637937202118e-05, -0.004892893135547638, -0.044341228902339935, 0.05954168364405632, 0.014675397425889969, -0.0017638698918744922, 0.010442109778523445, 0.02500593289732933, -0.024520253762602806, -0.013428382575511932, -0.013900935649871826, -0.0039674765430390835, 0.0006678093341179192, 0.020989231765270233, -0.0023922999389469624, 0.003153635421767831, -0.020595436915755272, -0.0553412139415741, 0.022735051810741425, -0.0005513118812814355, -0.024861540645360947, -0.016329333186149597, 0.001414377591572702, 0.008381253108382225, -4.1225332097383216e-05, 0.010684949345886707, -0.02327323891222477, -0.00823686271905899, -0.05163954943418503, 0.013638406060636044, 0.01334306038916111, 0.033341243863105774, 0.009188531897962093, 0.012260126881301403, 0.029560819268226624, 0.007534596137702465, -0.02017538994550705, 0.018941501155495644, -0.017983268946409225, -0.002407067222520709, -0.015948666259646416, -0.011649745516479015, 0.009930177591741085, 0.0039904480800032616, 0.007915263995528221, -0.01642121933400631, -0.012292942963540554, -0.005345756653696299, 0.006146471481770277, -0.010481488890945911, -0.009523256681859493, 0.01711692102253437, 0.02769685909152031, 0.029665831476449966, 0.008243425749242306, 0.004062643740326166, -0.008473139256238937, 0.010376477614045143, -0.0006189952837303281, -0.010737455449998379, -0.0008183536119759083, -0.006983283907175064, -0.013940314762294292, 0.03465389087796211, -0.002815628657117486, -0.010894972831010818, -0.01575176790356636, 0.03444386646151543, -0.026279199868440628, 0.034706395119428635, 0.016368713229894638, 0.010586501099169254, 0.021028611809015274, -0.0006653481395915151, 0.04145340248942375, -0.01886274293065071, 0.010980295017361641, 0.010054878890514374, -0.0009024450555443764, 0.04071832075715065, 0.02599041722714901, 0.024402115494012833, 0.008328747935593128, 0.018285177648067474, 0.014557259157299995, 0.0038821545895189047, 0.007908700034022331, 0.029692083597183228, -0.018350809812545776, 0.005700171459466219, 0.006645277142524719, -0.0066551221534609795, -0.012201057747006416, 0.008814427070319653, 0.011570986360311508, -0.002448087325319648, 0.01606680452823639, 0.0018656001193448901, 0.016552483662962914, -0.01178757380694151, -0.009798912331461906, -0.0075608487240970135, -0.009634831920266151, 0.012089482508599758, -0.004476127680391073, 0.05513118952512741, -0.006865145638585091, 0.02117300219833851, -0.01748446375131607, -0.014294729568064213, 0.04680900648236275, 0.02732931822538376, 0.006317115388810635, 0.013395566493272781, -0.007232686970382929, 0.009798912331461906, -0.027959389612078667, -0.012246999889612198, -0.025425979867577553, 0.007429583929479122, -0.000497165194246918, 0.019991619512438774, 0.010015499778091908, -0.01247671339660883, 0.022669419646263123, 0.015515492297708988, 0.024454619735479355, 0.008099034428596497, -0.0002256112638860941, 0.026187315583229065, 0.006635432597249746, 0.02457275800406933, 0.015305468812584877, -0.03604529798030853, 0.03050592541694641, 0.019584698602557182, -0.013979694806039333, 0.007829941809177399, 0.020346034318208694, 0.003560556098818779, 0.01917777769267559, -0.0012092763790860772, -0.010579938068985939, -0.013402129523456097, -0.024914046749472618, 0.010218960233032703, -0.014439120888710022, 0.0008786533144302666, -0.02160617522895336, -0.0023365123197436333, -0.024756530299782753, -0.0036229067482054234, -0.008171229623258114, 0.010376477614045143, 0.01951906643807888, 0.001034530228935182, 0.005506555549800396, -0.01644747145473957, -0.0021921212319284678, -0.021159876137971878, 0.0012601414928212762, -0.020044125616550446, -0.04045579209923744, -0.02767060697078705, -0.005929884500801563, -0.019689710810780525, 0.008604403585195541, 0.014951054006814957, -0.01808828115463257, 0.004082333296537399, 0.011262514628469944, 0.015174203552305698, 0.010993422009050846, -0.004853513557463884, -0.013572773896157742, 0.004426903091371059, 0.012680173851549625, -0.000786768039688468, 0.012837691232562065, 0.03357752040028572, -0.017602602019906044, 0.002961660735309124, -0.001458679442293942, -0.001414377591572702, -0.02606917731463909, 0.004732093773782253, -0.021015483886003494, -0.03428635001182556, -0.0016285032033920288, -0.023404503241181374, 0.003314434550702572, 0.006048022769391537, 0.06311208754777908, -0.003613061970099807, 0.007619917858392, -0.006858582608401775, -0.010540558025240898, -0.031241007149219513, 0.008512518368661404, 0.001434067264199257, 0.027618100866675377, 0.00037533510476350784, 0.029692083597183228, -0.021107370033860207, 0.014911673963069916, -0.002261035144329071, 0.003829648718237877, -0.013119910843670368, 0.021632429212331772, 0.0020460891537368298, -0.018928375095129013, -0.0016629601595923305, 0.027171799913048744, -0.03528396040201187, 0.004331736359745264, -0.005217773374170065, 0.010750582441687584, 0.028878241777420044, 0.02874697744846344, -0.00256786635145545, 0.018928375095129013, 0.046730246394872665, -0.0046402085572481155, 0.01571238972246647, -0.01111156027764082, -0.008788174018263817, 0.024756530299782753, -0.0009090083185583353, 0.02979709580540657, 0.003508050227537751, 0.016289953142404556, 0.026252947747707367, 0.026239821687340736, 0.008400943130254745, 0.024113332852721214, 0.007928390055894852, -0.023470135405659676, -0.02186870574951172, -0.03444386646151543, -0.041952211409807205, 0.005178393796086311, -0.021501164883375168, -0.019309042021632195, -0.028589459136128426, 0.05549873039126396, 0.035730261355638504, 0.008610966615378857, -0.0042595406994223595, 0.010724329389631748, -0.013730291277170181, 0.0068782721646130085, 0.004010137636214495, 0.01614556275308132, -0.021474910899996758, 0.013041151687502861, -0.009431371465325356, 0.0045844209380447865, 0.010921225883066654, 0.0045516048558056355, -0.023457009345293045, -0.0017507434822618961, -0.021960590034723282, 0.02293195016682148, -0.0157255157828331, 0.041243381798267365, 0.06227198988199234, 0.013119910843670368, -0.028983253985643387, -0.021488036960363388, -0.01178100984543562, -0.02597729116678238, 0.009766096249222755, 0.023850802332162857, 0.02193433791399002, -0.016276827082037926, 0.05376603826880455, 0.003045341931283474, -0.007790562231093645, 0.012706426903605461, 0.06615743041038513, 0.0012330681784078479, -0.01638183929026127, -0.00779712526127696, -0.006100528873503208, 0.004010137636214495, -0.0006743725971318781, -0.008650346659123898, -0.007869320921599865, 0.012089482508599758, 0.005270279012620449, 0.016946278512477875, 0.020411666482686996, -0.00028385999030433595, 0.00563453882932663, -0.04746532812714577, 0.05040565878152847, -0.008932565338909626, 0.02599041722714901, -3.563632708392106e-05, 0.0023808141704648733, -0.03082096017897129, -0.00754115916788578, -0.005404825787991285, -0.02809065394103527, 0.013454635627567768, -0.014071580022573471, 0.008492828346788883, 0.008880059234797955, 0.022052476182579994, -0.036780379712581635, 0.030479671433568, 0.03457513079047203, 0.011354399845004082, -0.03016463667154312, 0.03011213056743145, 0.009615141898393631, 0.0025580215733498335, 0.003178247483447194, 0.03654410317540169, 0.0471765473484993, -0.010901536792516708, 0.035126443952322006, 0.005654228385537863, 0.00537857273593545, 0.008735667914152145, -0.027801871299743652, -0.004134839400649071, 0.0013626920990645885, 0.01912527158856392, -0.007390204817056656, 0.000350312766386196, -0.016854392364621162, 0.0071014221757650375, 0.019414054229855537, 0.04000949114561081, 0.007692113518714905, -0.011846642941236496, -0.007941517047584057, -0.002159304916858673, -0.007967769168317318, -0.035073939710855484, -0.021094243973493576, 0.005591877736151218, -0.010560248047113419, -0.024218343198299408, 0.009825165383517742, 0.006284299306571484, 0.03313121944665909, 0.010501178912818432, -0.03152979165315628, 0.0036622860934585333, 0.02433648146688938, -0.014032200910151005, 0.0005271099507808685, -0.004118431359529495, -0.014977306127548218, -0.011518481187522411, 0.004499098751693964, 0.0038132406771183014, -0.006235075183212757, -0.011505354195833206, -0.03215986117720604, 0.009995809756219387, -0.026436718180775642, -0.031687308102846146, -0.030742201954126358, 0.04284480959177017, -0.04239850863814354, -0.003299667267128825, -0.012345448136329651, 0.006865145638585091, -0.0021954027470201254, 0.011367525905370712, 0.008466575294733047, -0.016171814873814583, 0.016854392364621162, 0.03494267165660858, 0.002128129592165351, 0.0010788320796564221, -0.005014312919229269, 0.019702836871147156, -0.007554285693913698, -0.004341581370681524, -0.0007309805369004607, 0.01777324639260769, 0.0267648808658123, -0.050169382244348526, -0.00032323942286893725, -0.0034358545672148466, 0.006504167802631855, -0.013677786104381084, 0.039615698158741, -0.01577802188694477, -0.008190919645130634, -0.03940567374229431, -0.0075280326418578625, 0.039510685950517654, -0.046100176870822906, -0.05408107116818428, -0.0033554548863321543, -0.029639577493071556, 0.005273560993373394, 0.009549509733915329, 0.012818001210689545, 0.016998782753944397, -0.004256259184330702, -0.010422419756650925, 0.03552023693919182, 0.016001172363758087, 0.04919802397489548, -0.026502350345253944, -0.0077511826530098915, 0.02635795995593071, 0.032343629747629166, 0.01841644197702408, -0.012424207292497158, -0.019965367391705513, -0.005368727724999189, -0.016303081065416336, -0.027171799913048744, -0.024900920689105988, -0.006445098668336868, 0.005591877736151218, -0.004590984433889389, 0.014832915738224983, -0.008709415793418884, -0.021999970078468323, -0.0008671676623634994, -0.0024251160211861134, 0.013914062641561031, -0.013415256515145302, -0.006441817153245211, -0.0321861132979393, -0.003928097430616617, 0.0014832915039733052, -0.009949866682291031, 0.002364406129345298, -0.035782769322395325, -0.023496387526392937, -0.019059639424085617, -0.03079470805823803, -0.029875854030251503, 0.019965367391705513, -0.03596653789281845, -0.041899703443050385, -0.030033372342586517, -0.008702851831912994, -0.030269648879766464, -0.0034260095562785864, 0.007757746148854494, -0.024848414584994316, 0.004817415960133076, 0.006546828895807266, -0.021107370033860207, 0.019624078646302223, 0.015331720933318138, 0.004105304833501577, -0.03696415200829506, 0.03567775711417198, -0.02533409371972084, -0.012798312120139599, -0.019702836871147156, 0.0029534567147493362, -0.020818587392568588, -0.021658681333065033, 0.04691401869058609, 0.03769923374056816, 0.02127801440656185, 0.02971833571791649, -0.020306654274463654, 0.0036622860934585333, 0.004732093773782253, 0.0007211356423795223, -0.027119295671582222, -0.034785155206918716, 0.012470150366425514, -0.009201657958328724, 0.0002719641197472811, 0.03423384204506874, -0.03381379693746567, -0.01818016543984413, 0.018035775050520897, 0.004033109173178673, -0.006471351720392704, 0.010619317181408405, -0.024507125839591026, -0.007390204817056656, 0.0067798239178955555, -0.014491626992821693, 0.003872309811413288, 0.01437348872423172, 0.006651840638369322, -0.02877323143184185, -0.01283112820237875, 0.0007158030057325959, -0.010212396271526814, 0.018035775050520897, -0.017707612365484238, -0.013585899956524372, -0.07298319786787033, 0.0029288444202393293, -0.01819329336285591, -0.006133344955742359, -0.011072180233895779, 0.011538170278072357, 0.04284480959177017, -0.0008208148065023124, -0.01986035518348217, 0.0009147511445917189, -0.0034555441234260798, 0.012962392531335354, -0.004065925255417824, 0.0011854846961796284, -0.00959545187652111, -0.02293195016682148, -0.0191383995115757, -0.0010911381104961038, -0.015843654051423073, -0.012187930755317211, -0.026095429435372353, 0.00021433070651255548, 0.014045326970517635, -0.010875283740460873, -0.027171799913048744, 0.01991286128759384, 0.0006514012347906828, 0.0019164651166647673, -0.01160380244255066, -0.0001599788956809789, 0.021094243973493576, -0.0004278410051483661, -0.010297718457877636, 0.00802027527242899, 0.02253815531730652, 0.002331589814275503, 0.03176606819033623, -0.0004717326373793185, 0.016631241887807846, 0.002177353948354721, 0.011347836814820766, -0.010002372786402702, -0.01614556275308132, 0.0034227280411869287, 0.007206433918327093, -0.01266704685986042, -0.008355000987648964, -0.0397469624876976, 0.017550095915794373, 0.0032438798807561398, 0.0053227851167321205, 0.01371716521680355, 0.010560248047113419, -0.006435253657400608, 0.009634831920266151, 0.011649745516479015, 0.026843639090657234, -0.010376477614045143, 0.022787557914853096, 0.00887349620461464, 0.01887586899101734, 0.005450768396258354, 0.004472846165299416, 0.004062643740326166, -0.04273979738354683, 0.024100204929709435, 0.021776819601655006, 0.01984722912311554, 0.03460138663649559, 0.011741630733013153, 0.023404503241181374, -0.003403038252145052, 0.010074568912386894, 0.018928375095129013, 0.020411666482686996, -0.01638183929026127, -0.005605004262179136, 0.012758932076394558, 0.020332908257842064, 0.007665860466659069, -0.030978478491306305, -0.02260378748178482, 0.0017802780494093895, -0.011341273784637451, -0.028221918269991875, -0.014859167858958244, 0.011459412053227425, 0.013224922120571136, 0.013290554285049438, 0.0073376987129449844, 0.0007207254529930651, 0.025872278958559036, 0.043632399290800095, 0.014977306127548218, -0.0004307124181650579, 0.03877560421824455, -0.02942955493927002, 0.02467777021229267, -0.009378865361213684, -0.0013233126373961568, 0.005920039489865303, -0.03567775711417198, 0.014491626992821693, 0.013454635627567768, -0.01676250621676445, -0.01740570366382599, -0.008610966615378857, -0.009444497525691986, -0.01215511467307806, -0.007823378778994083, -0.007423020899295807, -0.000689550070092082, -0.010914662852883339, -0.009398555383086205, -0.00028385999030433595, -0.010783398523926735, 0.009063830599188805, -0.001315108616836369, -0.008446886204183102, 0.021711187437176704, -0.019702836871147156, -0.0001313672837568447, -0.024900920689105988, -0.04082333296537399, -0.004374397452920675, -0.008000586181879044, -0.005608285777270794, -0.015489239245653152, -0.013277428224682808, -0.0027122576721012592, -0.01080965157598257, 0.0027237432077527046, -0.022433143109083176, 0.016893772408366203, 0.0052538709715008736, 0.0004963448154740036, 0.01522670965641737, -0.011131249368190765, 0.025767268612980843, -0.022498775273561478, -0.0034621073864400387, 0.02356201969087124, -0.000901624676771462, -0.019978493452072144, 0.0007838965975679457, -0.0007982536917552352, 0.011577550321817398, -0.015883034095168114, 0.021383026614785194, -0.007383641321212053, 0.011236261576414108, 0.008834117092192173, 0.019624078646302223, 0.025045311078429222, -0.012292942963540554, -0.03662286326289177, -0.0024169120006263256, 0.0007268784684129059, 0.011931965127587318, -0.012791749089956284, 0.0018459103303030133, 0.024165838956832886, 0.018377063795924187, 0.015830527991056442, 0.021724313497543335, 0.007239250466227531, -0.001739257830195129, -0.009096646681427956, -0.014032200910151005, 0.011544733308255672, 0.016001172363758087, -0.028300678357481956, 0.004955243784934282, -0.0191383995115757, 0.023194478824734688, -0.029954612255096436, 0.007423020899295807, 0.01678876020014286, 0.01988660730421543, -0.0007367233629338443, -0.024822162464261055, -0.002992836060002446, -0.005572188179939985, 0.014767282642424107, -0.004495817236602306, 0.01366465911269188, 0.02365390583872795, 0.024585885927081108, -0.010376477614045143, 0.010442109778523445, 0.01644747145473957, 0.012457023374736309, -0.007075169589370489, 0.024388987571001053, -0.001149386866018176, -0.004440029617398977, 0.0163949653506279, 0.024914046749472618, -0.025767268612980843, -0.008807864040136337, -0.010711202397942543, -0.009661084972321987, 0.013848429545760155, -0.02152741700410843, 0.02361452579498291, 0.011413468979299068, -0.022997582331299782, 0.03657035529613495, 0.001854114467278123, 0.007048916537314653, -0.005296532064676285, 0.01093435287475586, 0.001726131304167211, -0.0062974258325994015, -0.006179287564009428, -0.025255335494875908, -0.011275640688836575, -0.005929884500801563, 0.008092471398413181, -0.019768469035625458, 0.04208347573876381, -0.0029140771366655827, 0.013730291277170181, -0.02806440182030201, 0.016854392364621162, 0.007711803540587425, -0.007140801753848791, -0.05245338752865791, -0.014609765261411667, 0.00744271045550704, 0.00974640715867281, 0.014544133096933365, 0.021094243973493576, -0.003511331742629409, -0.012411081232130527, 0.019571572542190552, 0.028641965240240097, -0.001615376677364111, 0.024769656360149384, 0.0022577533964067698, -0.00026417028857395053, -0.01954531855881214, -0.0020674197003245354, -0.006284299306571484, 0.03943192586302757, 0.02088421955704689, -0.028668219223618507, 0.0005012672045268118, -0.0019574854522943497, 0.00022766228357795626, 0.003102770308032632, 0.004751783329993486, -0.004728812258690596, 0.013743418268859386, 0.01146597508341074, -0.010980295017361641, 0.004528633318841457, 0.009490440599620342, 0.016303081065416336, 0.02526846155524254, -0.02767060697078705, -0.020044125616550446, 0.016920024529099464, -0.0369378961622715, 0.009949866682291031, -0.01386155653744936, 0.01638183929026127, -0.009339486248791218, -0.021422404795885086, -0.010940915904939175, -0.008998197503387928, 0.012693299911916256, -0.025071565061807632, -0.002203606767579913, -0.004590984433889389, -1.847192288551014e-05, -0.015357973985373974, -0.01947968639433384, 0.012594851665198803, -0.0062285116873681545, 0.0007457478204742074, 0.01681501232087612, -0.027644352987408638, -0.006760133896023035, 0.0215142909437418, 0.0336562804877758, 0.001982097513973713, -0.018363937735557556, 0.014741029590368271, 0.009497003629803658, 0.0102714654058218, 0.00941824447363615, -0.003970758523792028, -0.007816814817488194, 0.016513103619217873, 0.005913476459681988, -0.00462380051612854, 0.016158688813447952, -0.00040056253783404827, 0.005102916620671749, 0.0050307209603488445, 0.005408107303082943, -0.018587086349725723, 0.004627082031220198, -0.00926072709262371, -0.00017156710964627564, 0.022735051810741425, -0.005109480116516352, 0.008519081398844719, 0.00956919975578785, -0.017550095915794373, -0.01009425800293684, -0.024231471121311188, -0.04512881860136986, 0.00992361456155777, 0.0024743403773754835, -0.006957031320780516, 0.0012453742092475295, -0.008144976571202278, -0.0369378961622715, 0.0014389896532520652, -0.0077511826530098915, 0.02637108601629734, -0.0019016978330910206, -0.023890182375907898, 0.008453449234366417, -0.011360962875187397, -0.0018147350056096911, 0.003242239123210311, 0.008545334450900555, -0.03567775711417198, 0.04289731755852699, 0.022459397092461586, -0.018048901110887527, -0.007383641321212053, 0.006018488202244043, 0.006651840638369322, -0.004627082031220198, -0.013822176493704319, -0.0008515800000168383, 0.014636018313467503, 0.01387468259781599, 0.012791749089956284, -0.01674938015639782, -0.0018262206576764584, -0.011249387636780739, -0.0027237432077527046, 0.026476098224520683, 0.010855593718588352, 0.0009328000596724451, 0.029902108013629913, -0.006057867780327797, 0.01673625409603119, -0.0072851930744946, -0.00805965531617403, 0.025163449347019196, 0.03082096017897129, -0.00013721267168875784, -0.017878256738185883, -0.04820040985941887, -0.00462380051612854, 9.97817114694044e-05, -0.008144976571202278, 0.01508231833577156, -0.016539357602596283, -0.012437334284186363, 0.0012379905674606562, -0.032369885593652725, -0.0031569169368594885, 0.0004134839109610766, 0.010146764107048512, -0.015252962708473206, -0.029560819268226624, 0.028326930478215218, -0.03557274490594864, -0.008243425749242306, -0.00010142251994693652, 0.02672550082206726, -0.0018557552248239517, -0.0016728050541132689, -0.010481488890945911, -0.013533394783735275, 0.002083827741444111, 0.009766096249222755, 0.002968223998323083, -0.007961206138134003, -0.008998197503387928, -0.004469564184546471, 0.012260126881301403, 0.01613243669271469, -0.016933150589466095, -0.01818016543984413, -0.008368127048015594, 0.02564913034439087, 0.0090507036074996, -0.0077839987352490425, -0.014084706082940102, 0.010054878890514374, -0.05331973731517792, -0.003215986071154475, -0.006838893052190542, 0.025452231988310814, 0.01283112820237875, 0.022735051810741425, -0.014045326970517635, 0.027250560000538826, 0.0002709386171773076, 0.019689710810780525, -0.008243425749242306, -0.022118108347058296, 0.0029288444202393293, 0.015344847925007343, -0.0070029739290475845, 0.001045195502229035, -0.029954612255096436, 0.012798312120139599, -0.010553685016930103, 0.04494504630565643, -0.008899749256670475, -0.010665260255336761, -0.02119925431907177, 0.01604055054485798, -0.020070377737283707, -0.038145530968904495, -0.0069110882468521595, 0.015095444396138191, -0.03657035529613495, 0.020818587392568588, -0.004082333296537399, -0.016683747991919518, -0.004016701132059097, -0.008158103562891483, 0.015554871410131454, 0.016920024529099464, 0.031083490699529648, -0.02638421207666397, -0.00977265927940607, -0.0034292913042008877, 0.0009328000596724451, 0.021658681333065033, -0.0073376987129449844, -0.024730276316404343, -0.0037246369756758213, -0.0006911908858455718, -0.008696288801729679, -0.0011034442577511072, 0.005201365333050489, -0.03562524914741516, 0.015016686171293259, 0.03531021624803543, 0.016184942796826363, 0.003540866309776902, 0.010684949345886707, -0.017865130677819252, 0.02289257012307644, 0.022393764927983284, -0.014649144373834133, 0.0057493955828249454, -0.004577857907861471, 0.03139852359890938, 0.005926602985709906, 0.010553685016930103, -0.00939199235290289, 0.011846642941236496, -0.010730892419815063, 0.010645570233464241, 0.02466464415192604, -0.0019000570755451918, -0.012712989933788776, -0.03110974282026291, 0.011735067702829838, 0.010474925860762596, -0.01558112446218729, 0.0024759811349213123, 0.031949836760759354, -0.0297445897012949, -0.027224306017160416, 0.014859167858958244, 0.014583512209355831, 0.0038755913265049458, 0.013402129523456097, 0.0274343304336071, -0.0001272652589250356, 0.034023821353912354, 0.033367495983839035, -0.04896174743771553, 0.0034883604384958744, 0.017038162797689438, 0.008742231875658035, 0.016001172363758087, -0.012693299911916256, 0.02051667869091034, -0.004374397452920675, -0.016578735783696175, 0.006865145638585091, 0.012949266470968723, -0.017878256738185883, 0.009529819712042809, -0.015988044440746307, 0.01371716521680355, 0.004925709217786789, -0.014425994828343391, -0.03247489780187607, -0.00015464627358596772, -0.012325759045779705, -0.02085796743631363, -0.003096207045018673, 0.003547429572790861, 0.006612461060285568, -0.02903576008975506, -0.025478485971689224, 0.00016510642308276147, 0.003325920319184661, -0.004587702453136444, -0.0027549187652766705, -0.01183351594954729, 0.020700449123978615, -0.0043809604831039906, 0.0027237432077527046, 0.0076527344062924385, -0.026226693764328957, -0.010665260255336761, 0.006615742575377226, -0.011104997247457504, -0.005263715982437134, 0.010678386315703392, 0.0007285192841663957, 0.007324572186917067, 0.00926072709262371, 0.020989231765270233, -0.010619317181408405, -0.0038001141510903835, 0.0024743403773754835, 0.010691513307392597, 0.03877560421824455, 0.005624693818390369, 0.01214198861271143, 0.01213542465120554, 0.0037246369756758213, -0.003586808918043971, 0.0315822958946228, -0.016618115827441216, -0.011872895993292332, -0.005158704239875078, 0.0037541715428233147, 0.04893549531698227, 0.0025891968980431557, 0.01213542465120554, -0.007383641321212053, 0.01852145418524742, -0.0157911479473114, -0.011183755472302437, 0.030689695850014687, 0.015909286215901375, 0.008033402264118195, 0.0009008042397908866, -0.012949266470968723, -0.023877056315541267, -0.014898547902703285, -0.016184942796826363, 0.0017162864096462727, 0.015817400068044662, 0.019204031676054, 0.002364406129345298, 0.01779949851334095, 0.008610966615378857, -0.005473739467561245, -0.007291756104677916, 0.0026548292953521013, 0.014084706082940102, -0.005920039489865303, 0.0045516048558056355, -0.003396474989131093, -0.006543547380715609, 0.00011731786071322858, -0.014701650477945805, -0.0050307209603488445, -0.019925987347960472, 0.002864853013306856, 0.013224922120571136, 0.015830527991056442, -0.010494615882635117, 0.032737426459789276, 0.0015284137334674597, 0.015239835716784, -0.004046235699206591, 0.008387817069888115, -0.0026728783268481493, 0.00555578013882041, -0.0256622564047575, -0.017353197559714317, 0.010245212353765965, 0.0010780117008835077, -0.005772366654127836, -0.019702836871147156, -0.014964180067181587, -0.012417644262313843, -0.014622892253100872, 0.004121712874621153, 0.01199759729206562, -0.0039674765430390835, -0.004784599877893925, -0.018941501155495644, -0.03357752040028572, 0.0010148405563086271, -0.010724329389631748, 0.02434960938990116, -0.015607377514243126, -0.017550095915794373, 0.015883034095168114, -0.013316807337105274, -0.019295915961265564, 0.003905125893652439, 0.008263114839792252, -0.008998197503387928, -0.008007149212062359, 0.0032717736903578043, -0.0035375847946852446, -0.027801871299743652, -0.000656323682051152, 0.013690912164747715, 0.003046982688829303, 0.013769671320915222, 0.013356187380850315, -0.010199270211160183, -0.00956919975578785, -0.007665860466659069, 0.003878873074427247, -0.0033488916233181953, -0.002389018191024661, 0.0032504431437700987, 0.011813826858997345, -0.0036590045783668756, -0.0005681301699951291, -0.019282789900898933, -0.00479116290807724, -0.010763708502054214, 0.005207928363233805, 0.003540866309776902, 0.019610952585935593, -0.007324572186917067, -0.00977922324091196, 0.007396767847239971, 0.018324557691812515, -0.018363937735557556, 0.012758932076394558, 0.01559425052255392, 0.01165630854666233, 0.011675998568534851, 0.03520520403981209, 0.014189718291163445, 0.001726131304167211, 0.004069206770509481, 0.008998197503387928, -0.0037246369756758213, -0.0031126150861382484, -0.013480888679623604, -0.03759422153234482, 0.01613243669271469, -0.01812766119837761, 0.011767883785068989, 0.021081116050481796, 0.0057493955828249454, -0.010855593718588352, 0.0026220132131129503, -0.00029308954253792763, -0.006011925172060728, -0.004128275904804468, 0.012424207292497158, 0.022498775273561478, -0.00581174623221159, -0.027591848745942116, -0.0069110882468521595, -0.028615713119506836, -0.0035572743508964777, 0.018744604662060738, -0.0073376987129449844, -0.0131986690685153, 0.0015858421102166176, 0.0012363496934995055, 0.0059036314487457275, 0.002019836101680994, -0.008578150533139706, 0.01982097513973713, -0.004430185072124004, 0.016526229679584503, 0.021067989990115166, 0.022708799690008163, 0.025609750300645828, -0.0068454560823738575, 0.018770856782794, -0.005683762952685356, -0.021107370033860207, 0.0076527344062924385, 0.010606191121041775, 0.01146597508341074, -0.028300678357481956, -0.001398789812810719, -0.016552483662962914, 0.007980896160006523, -0.005509837530553341, -0.03531021624803543, 0.02701428346335888, 0.01386155653744936, -0.021028611809015274, -0.013809050433337688, -0.013080530799925327, -0.018954627215862274, -0.0008138413541018963, -0.007836504839360714, 0.010842467658221722, 0.013395566493272781, 0.017523841932415962, 0.020464172586798668, 0.008512518368661404, -0.015318594872951508, 0.01953219249844551, 0.018744604662060738, -0.013743418268859386, -0.005552498623728752, -0.010921225883066654, -0.00018674459715839475, 0.018272051587700844, -0.024809034541249275, 0.024034572765231133, 0.00889318622648716, -0.0014750874834135175, 0.0049421172589063644, 0.004810852464288473, 0.023404503241181374, -0.004663179628551006, -0.0012790107866749167, 0.016499977558851242, -0.012358575128018856, -0.009024450555443764, -0.0009631550055928528, 0.013848429545760155, -0.009976119734346867, -0.013159289956092834, -0.031608548015356064, -0.006274454295635223, 0.01096716895699501, 0.014124086126685143, 0.012555472552776337, 0.022380637004971504, 0.0011994314845651388, 0.01044867280870676, 0.03189733251929283, -0.0014422712847590446, -0.012522655539214611, -0.0056804814375936985, -0.01808828115463257, -0.008046528324484825, -0.01508231833577156, -0.005788775160908699, -0.022826937958598137, -0.009359176270663738, 0.01776011846959591, 0.005847844295203686, -0.003809958929196, 0.020030999556183815, -0.0006801154231652617, -0.0045253518037498, 0.02641046606004238, 0.018350809812545776, -0.0027828123420476913, 0.025832900777459145, 0.005933166015893221, 0.005070100538432598, -0.0005607465282082558, 0.015817400068044662, 0.0004983958206139505, -0.004928990732878447, 0.014097833074629307, -0.006615742575377226, 0.022682547569274902, -0.022393764927983284, -0.0063532134518027306, 0.01559425052255392, -0.007416457869112492, 0.012601414695382118, 0.02709304168820381, -0.0007970230653882027, 0.016329333186149597, -0.006523857358843088, -0.01300833560526371, 0.010553685016930103, 0.002574429614469409, -0.0024316792842000723, 0.0041249943897128105, -0.006395874544978142, 0.006149752996861935, -0.011459412053227425, -0.005595159251242876, -2.5368448405060917e-05, 0.02051667869091034, 0.012916450388729572, -0.02052980475127697, 0.014163465239107609, 0.02497967891395092, 0.016184942796826363, -9.552585834171623e-05, -0.012437334284186363, 0.01718255504965782, 0.007075169589370489, 0.005240744445472956, 0.0209104735404253, 0.015856780111789703, -0.010862156748771667, 0.01571238972246647, 0.008886623196303844, 0.009575762785971165, 0.018429569900035858, -0.019610952585935593, 0.01247671339660883, 0.00487976660951972, -0.022682547569274902, 0.012220746837556362, 0.020267276093363762, -0.0198078490793705, 0.010691513307392597, 0.012968956492841244, 0.013546520844101906, -0.003160198451951146, 0.03155604377388954, -0.011675998568534851, -0.00523418141528964, 0.007075169589370489, -0.02641046606004238, -0.01711692102253437, 0.00013926367682870477, -0.003649159800261259, -0.0006169442785903811, -0.01023864932358265, 0.0018311430467292666, -0.0021067990455776453, -0.02160617522895336, 0.013310244306921959, -0.008387817069888115, 0.0023611243814229965, 0.02709304168820381, -0.01334306038916111, 0.00708829564973712, 0.004331736359745264, 0.010665260255336761, -0.022013096138834953, 0.006235075183212757, -0.017038162797689438, -0.03465389087796211, -0.011689124628901482, -0.0071014221757650375, -0.01984722912311554, -0.01954531855881214, 0.01673625409603119, -0.013533394783735275, -0.008912875317037106, -0.0069110882468521595, 0.01010082196444273, 0.014242224395275116, -0.001268345513381064, -0.00625476473942399, -0.018363937735557556, 0.00389856263063848, -0.006917651742696762, 0.0049683703109622, -0.006773260422050953, -0.005690326448529959, -0.009825165383517742, 0.016578735783696175, 0.0030617499724030495, 0.01008113194257021, 0.012548908591270447, -0.005040565971285105, 0.004686151165515184, -0.02093672566115856, 0.014097833074629307, -0.0025514583103358746, -0.0032586471643298864, 0.006149752996861935, -0.003645878052338958, 0.030637189745903015, -0.01917777769267559, -0.0060381777584552765, -0.013848429545760155, 0.02022789604961872, -0.03252740204334259, -0.00943793449550867, 0.014452247880399227, -0.01421597134321928, 0.004568012896925211, 0.0026974903885275126, 0.008322183974087238, -0.02089734561741352, 0.01982097513973713, 0.03743670508265495, 0.011459412053227425, -0.0022626759018749, -0.003299667267128825, -0.000517265114467591, 0.009884234517812729, -0.010369914583861828, -0.015344847925007343, 0.01538422703742981, -0.020608562976121902, -0.015541745349764824, -0.015344847925007343, 0.008177793584764004, -0.019072765484452248, -0.015567997470498085, -0.011341273784637451, -0.0010353506077080965, -0.014386615715920925, 0.015843654051423073, -0.0336562804877758, -0.0035310215316712856, -0.00460411049425602, -0.0017162864096462727, -0.014189718291163445, -0.008886623196303844, -0.0066879382357001305, -0.017641980201005936, -0.004820697475224733, -0.006093965377658606, -0.009497003629803658, 0.009116335771977901, 0.018757730722427368, 0.0028714160434901714, -0.004246414173394442, 0.0068454560823738575, 0.00523418141528964, 0.0007465681992471218, 0.027565594762563705, 0.01673625409603119, -0.005306377075612545, 0.004751783329993486, 0.003908407408744097, -0.004354707896709442, -0.004144683945924044, -0.016985656693577766, 0.006563236936926842, -0.0032570064067840576, -0.029954612255096436, -0.00859127752482891, -0.0107571454718709, -0.036780379712581635, 0.02536034770309925, 0.015003559179604053, 0.008309057913720608, 0.00940511841326952, 0.02261691354215145, -0.0409545972943306, 0.039248157292604446, 0.0021248478442430496, 0.022721925750374794, 0.010068004950881004, 0.0062285116873681545, 0.008630656637251377, -0.022039350122213364, -0.013087094761431217, 0.009149151854217052, 0.010586501099169254, 0.012883634306490421, 0.006766697391867638, -0.01613243669271469, -0.0012256845366209745, 0.008998197503387928, 0.015673009678721428, 0.0033931934740394354, -0.020411666482686996, -0.0041249943897128105, 0.029875854030251503, 0.011190318502485752, -0.0033997567370533943, 0.0029780687764286995, -0.0009065471240319312, -0.021803073585033417, -0.024415241554379463, -0.004062643740326166, 0.008643782697618008, -0.021776819601655006, 0.0007781537715345621, 0.011544733308255672, -0.03394506126642227, 0.016316207125782967, 0.008676598779857159, -0.022498775273561478, -8.275831351056695e-05, 0.026830513030290604, -0.016696874052286148, 0.02637108601629734, 0.020647943019866943, -0.009076956659555435, 0.012082919478416443, -0.00924760103225708, -0.0267648808658123, -0.017353197559714317, 0.019020261242985725, -0.013835303485393524, 0.011308456771075726, 0.002720461692661047, 0.005434360355138779, -0.002955097472295165, 0.015633629634976387, 0.027644352987408638, 0.01487229485064745, 0.004069206770509481, 0.0034227280411869287, 0.017996395006775856, 0.02704053558409214, -0.006658403668552637, -0.03310496732592583, -0.0019131836015731096, 0.01604055054485798, 0.0065533919259905815, 0.0016506541287526488, -0.006399156060069799, 0.003701665671542287, -0.004531915299594402, -0.023063214495778084, -0.015279215760529041, -0.011584113352000713, 0.007514906115829945, 0.012109171599149704, 0.001365973730571568, -0.008985071443021297, 0.0016998783685266972, 0.015567997470498085, 0.020306654274463654, 0.007245813496410847, 0.005893786903470755, -0.0011682561598718166, 0.004577857907861471, -0.00014859579096082598, 0.011374089866876602, 0.013966567814350128, 0.004558167885988951, 0.026961777359247208, 0.0035769641399383545, -0.015659883618354797, -0.02056918479502201, 0.005933166015893221, 0.008177793584764004, 0.013297118246555328, 0.002318463521078229, 0.006307270843535662, 0.0075280326418578625, -0.009096646681427956, 0.017379451543092728, 0.01984722912311554, -0.00540154380723834, 0.005696889478713274, 0.008460012264549732, 0.01915152557194233, 0.03496892750263214, -0.004154528956860304, 0.016933150589466095, -0.0018836490344256163, -0.029875854030251503, 0.017235059291124344, 0.0001885905076051131, -0.0022528311237692833, 0.0015267729759216309, 0.014911673963069916, 0.015528618358075619, -0.007908700034022331, -0.003330842824652791, -0.017064416781067848, -0.007573975250124931, -0.008827554062008858, -0.001630964339710772, 0.006376184523105621, 0.024402115494012833, 0.014609765261411667, -0.003197937272489071, -0.005276842508465052, -0.008479702286422253, -0.00803996529430151, -0.002274161670356989, 0.008742231875658035, -0.003279977710917592, -0.011059054173529148, -0.012529219500720501, -0.005460612941533327, 0.015147950500249863, 0.010146764107048512, -0.009096646681427956, 0.01569926179945469, 0.020398540422320366, -0.0023857366759330034, -0.01080308761447668, -0.018245799466967583, -0.005965982563793659, 0.013677786104381084, 0.017287565395236015, -0.026082303375005722, -0.006409000605344772, -0.008328747935593128, 0.008499391376972198, 0.027933135628700256, 0.017641980201005936, -0.023430755361914635, -0.0005455690552480519, 0.008420633152127266, -0.0029862727969884872, 0.0054245153442025185, 0.005050410982221365, -0.008223735727369785, 0.0010279669659212232, 0.011899148114025593, -0.01575176790356636, -0.005201365333050489, 0.022026222199201584, -0.010744018480181694, -0.013769671320915222, 0.020372286438941956, -0.0010402729967609048, -0.0006739624077454209, -0.022078728303313255, 0.018718352541327477, -0.005929884500801563, -0.011859769001603127, -0.03213360905647278, -0.003409601515159011, -0.004023264162242413, -0.008610966615378857, 0.007291756104677916, -0.014347235672175884, -0.007219560444355011, -0.0010115589248016477, -0.02400832064449787, 0.026502350345253944, -0.004577857907861471, -0.011255951598286629, 0.019939113408327103, -0.03622906655073166, 0.021094243973493576, -0.004010137636214495, -0.005864252336323261, -0.007659297436475754, 0.0003786167362704873, -0.0009508489165455103, -0.0073048826307058334, 0.009602015838027, -0.011157502420246601, -0.008144976571202278, -0.008486265316605568, -0.0053884172812104225, 0.006120218429714441, -0.008565024472773075, -0.010041752830147743, 0.0016276827082037926, 0.010022062808275223, 0.000888498208951205, -0.010560248047113419, 0.005299813579767942, -0.007114548701792955, 0.00010424265929032117, 0.0016744458116590977, 0.005552498623728752, 0.0015924053732305765, -0.0007174438214860857, 0.009385428391397, -0.0037115104496479034, -0.00023422551748808473, -0.009300107136368752, -0.013126473873853683, -0.017970142886042595, -0.00088603695621714, 0.012115735560655594, -0.006983283907175064, -0.019794723019003868, -0.002172431442886591, -0.00718674436211586, 0.01336275041103363, -0.009332923218607903, -0.019072765484452248, 0.003299667267128825, 0.0008688084781169891, -0.014688524417579174, -0.009667648002505302, -0.021159876137971878, 0.007823378778994083, -0.015134824439883232, 0.03391880914568901, -0.022866318002343178, -0.00573298754170537, 0.00943793449550867, -0.00341616477817297, 0.015003559179604053, 0.02331261709332466, -0.014005947858095169, 0.016237448900938034, -0.008420633152127266, -0.000718264258466661, 0.009090082719922066, -0.0011543092550709844, 0.007344262208789587, -0.024192091077566147, 0.015161077491939068, -0.025084691122174263, -0.01741883158683777, 0.010166454128921032, -0.012470150366425514, -0.007350825238972902, -0.0006181748467497528, -0.007915263995528221, -0.04814790561795235, 0.006546828895807266, 0.0066879382357001305, 0.006468069739639759, -0.02908826619386673, 0.008322183974087238, 0.02735557220876217, -0.0001924874377436936, -0.007147364784032106, 0.007902137003839016, 0.020674197003245354, 0.005992235150188208, 0.012909887358546257, 0.007055479567497969, 0.015252962708473206, 0.01605367660522461, 0.0040593622252345085, -0.0013741777511313558, -0.015279215760529041, -0.014097833074629307, 0.00599879864603281, -0.005345756653696299, -0.02024102210998535, -1.6382455214625224e-05, 0.0062285116873681545, 0.011826952919363976, 0.015909286215901375, -0.022840064018964767, -0.0007342621101997793, -0.012588288635015488, -0.005995517130941153, -0.0022708799224346876, -0.020017871633172035, 0.010684949345886707, -0.009615141898393631, -0.006133344955742359, -0.0029583789873868227, -0.01613243669271469, 0.014990433119237423, -0.01713004894554615, -0.0020624971948564053, 0.013533394783735275, 0.004538478329777718, 0.004994623363018036, 0.013769671320915222, 0.013060841709375381, 0.01614556275308132, -0.00393794197589159, 0.00471240421757102, 0.010376477614045143, -0.004709122236818075, -0.022866318002343178, -0.007429583929479122, 0.00194928131531924, -0.005726424045860767, 0.019400928169488907, 0.002828755183145404, -0.01371716521680355, -0.010494615882635117, 0.013690912164747715, 0.009024450555443764, 0.0020493706688284874, 0.0015489239012822509, -0.0013889450347051024, -0.016591863706707954, -0.005887223407626152, 0.004590984433889389, -0.014255350455641747, 0.009346049278974533, 0.003911689389497042, -0.005736269056797028, -0.009365739300847054, 0.0025448950473219156, -0.00209039100445807, 0.010140201076865196, 0.020122883841395378, -0.03113599494099617, 0.0047386568039655685, 0.009155715815722942, 0.001980456756427884, -0.007678986992686987, -0.010849030688405037, 0.004886329639703035, 0.002764763543382287, 0.0043842424638569355, -0.007344262208789587, 0.02571476250886917, -2.4253211449831724e-05, -0.004233287647366524, -0.008617529645562172, -0.018245799466967583, 0.024152711033821106, -0.00359337218105793, 0.007403331343084574, 0.008670035749673843, 0.01436036266386509, -0.008775047957897186, 0.009280417114496231, 0.006904525216668844, 0.022485649213194847, 0.008144976571202278, 0.0004647592140827328, 0.015646757557988167, 0.007403331343084574, 0.0007998945075087249, -0.013756544329226017, -0.020411666482686996, -0.007672423962503672, 0.01538422703742981, 0.00991705060005188, -0.011518481187522411, -0.011735067702829838, 0.0021067990455776453, -0.010750582441687584, -0.017195681110024452, -0.004755065310746431, 0.0025153604801744223, -0.02014913782477379, 0.04147965833544731, -0.009181968867778778, 0.020595436915755272, -0.037777990102767944, 0.012942703440785408, -0.023785170167684555, -0.018324557691812515, 0.020766081288456917, 0.008971944451332092, 0.030190888792276382, 0.028169412165880203, 0.006950467824935913, -0.006497604306787252, -0.018573960289359093, -0.011551297269761562, -0.0015120056923478842, 0.012562035582959652, 0.034758903086185455, -0.011826952919363976, -0.00693077826872468, -0.015003559179604053, -0.007193307857960463, 0.024717150256037712, 0.014491626992821693, -0.011131249368190765, 0.012358575128018856, 0.00958232581615448, 0.0058379992842674255, 0.022446271032094955, 0.020792335271835327, -0.0064549436792731285, -0.016710001975297928, 0.004728812258690596, -0.016683747991919518, 0.007744619622826576, 0.0004672204377129674, -0.015869906172156334, 0.005824872758239508, -0.010474925860762596, -0.024034572765231133, -0.00779712526127696, -0.009464187547564507, 0.005611567758023739, 0.010999985039234161, -0.010533994995057583, -0.018731478601694107, -0.0018754448974505067, -0.0009787427261471748, -0.0051554227247834206, -0.01841644197702408, 0.005611567758023739, 0.0076855504885315895, 0.012699862942099571, -0.015935538336634636, 0.024585885927081108, 0.0042825122363865376, -0.019427180290222168, 0.012568598613142967, -0.009700464084744453, 0.00805965531617403, -0.01705128885805607, -0.008814427070319653, -0.021369898691773415, 0.002021476859226823, 0.006179287564009428, -0.011013111099600792, -0.006563236936926842, 0.013848429545760155, 0.004715685732662678, -0.01983410120010376, -0.01715630106627941, 0.017340071499347687, 0.0032947449944913387, 0.002530127763748169, 0.002024758607149124, 0.007921827025711536, 0.03116224892437458, 0.006976720876991749, -0.014124086126685143, 0.017917636781930923, -0.017366325482726097, 0.019689710810780525, 0.0028697752859443426, 0.026869891211390495, 0.012581724673509598, -0.008604403585195541, 0.0005381854134611785, -0.01045523677021265, 0.010120511054992676, 0.01606680452823639, 0.003974040038883686, 0.011584113352000713, -0.010330534540116787, 0.016631241887807846, 0.018298303708434105, -0.00908351968973875, 0.006957031320780516, 0.016224320977926254, 0.011538170278072357, -0.010776834562420845, -0.009175404906272888, -0.01063244417309761, -0.0014332468854263425, 0.015476112253963947, -0.002676159841939807, -0.006303988862782717, -0.020818587392568588, 0.010153327137231827, 0.004285793751478195, -0.018075155094265938, -0.0004557347565423697, 0.012706426903605461, 0.008952255360782146, 0.010212396271526814, -0.002497311681509018, 0.0034391360823065042, 0.005667354911565781, 0.020621690899133682, 0.005493429489433765, -0.002664674073457718, 0.01812766119837761, 0.012785185128450394, -0.005027439445257187, 5.893453362659784e-06, -0.0048403870314359665, -0.028904495760798454, -0.021671807393431664, -0.04822666570544243, -0.009536382742226124, 0.0016916743479669094, 0.009641394950449467, -0.016171814873814583, 0.0032980265095829964, -0.006819203030318022, -0.001564511563628912, 0.01818016543984413, 0.008223735727369785, -0.008302494883537292, -0.0014529365580528975, -0.013559647835791111, -0.02089734561741352, -0.015279215760529041, -0.012818001210689545, -0.000313804775942117, -0.001630964339710772, -0.006248201709240675, 0.0024809036403894424, -0.002638421254232526, -0.011538170278072357, 0.010159891098737717, -0.0016728050541132689, 0.011216571554541588, 0.003964195027947426, -0.012246999889612198, -0.0019574854522943497, -0.010652133263647556, -0.002899309853091836, -5.455690552480519e-05, -0.01955844648182392, -0.011505354195833206, 0.0035704008769243956, 0.02530784159898758, 0.0018639592453837395, -0.017576348036527634, -0.017589474096894264, -0.02126488834619522, 0.03152979165315628, 0.026791132986545563, -0.00488961162045598, -0.01059306412935257, -0.007508343085646629, -0.002718820935115218, -0.0012338885571807623, 0.027486836537718773, -0.009634831920266151, -0.0016432704869657755, -0.006054585799574852, -0.013940314762294292, -0.02297132834792137, 0.008637219667434692, 0.014189718291163445, 0.01078996155411005, 0.002446446567773819, -0.001407814328558743, -0.020700449123978615, -0.033682532608509064, 0.009162278845906258, -0.005982390604913235, -0.000945926527492702, -0.03313121944665909, 0.007324572186917067, 0.014622892253100872, -0.014780409634113312, 0.007016100455075502, 0.012712989933788776, 0.028668219223618507, 0.023811424151062965, -0.01267361082136631, -0.002032962627708912, -0.009884234517812729, 0.0348639152944088, -0.0065205758437514305, -0.0067798239178955555, 0.008722541853785515, -0.0037574530579149723, 0.0026220132131129503, 0.010192707180976868, -0.013612153008580208, -0.006097246892750263, 0.0362028144299984, -0.012706426903605461, -0.0014955976512283087, 0.0048403870314359665, -0.014964180067181587, 0.008479702286422253, 0.003655723063275218, -0.020398540422320366, -0.00337678543291986, 0.0011108278995379806, -0.016276827082037926, 0.018232671543955803, 0.010704639367759228, 0.016303081065416336, -0.0009049063082784414, 0.008558460511267185, -0.005877378862351179, 0.012391391210258007, -0.043658651411533356, 0.007593665271997452, -0.014307856559753418, 0.014294729568064213, 0.0030240113846957684, -0.0055459351278841496, -0.018941501155495644, 0.010350224561989307, -0.003675412619486451, -0.0009935100097209215, -0.0036852573975920677, 0.007573975250124931, 0.005073382053524256, 0.01318554300814867, 0.023115720599889755, 0.026817385107278824, -0.003872309811413288, -0.00015515902487095445, 0.018888995051383972, -0.0016326052136719227, 0.01061275415122509, -0.014110959134995937, 0.00836156401783228, -0.012765496037900448, 0.002900950610637665, 0.0012724475236609578, 0.0014734467258676887, -0.012522655539214611, -0.0013019820908084512, -0.02361452579498291, -0.028274424374103546, 0.005040565971285105, -0.009136025793850422, 0.015042939223349094, 0.014281603507697582, 0.005372009240090847, -0.0019607669673860073, 0.0025514583103358746, -0.0008150719804689288, -0.011400342918932438, 0.011065617203712463, 0.004213598091155291, 0.02156679704785347, -0.003129023127257824, -0.017340071499347687, -0.03867059201002121, -0.00041204821900464594, 0.013612153008580208, 0.029482059180736542, 0.007482090033590794, -0.007344262208789587, -0.0013069045962765813, 0.020792335271835327, 0.03184482455253601, 0.0072720665484666824, 0.029560819268226624, -0.01387468259781599, -0.030243394896388054, -0.017904510721564293, 0.0036425965372473, -0.0072720665484666824, 0.005568906664848328, 0.015948666259646416, -0.005303095560520887, -0.0016998783685266972, 0.0016285032033920288, 0.019663456827402115, 0.024756530299782753, -0.007173617836087942, -0.011662871576845646, 0.011945091187953949, -0.00015208250260911882, 0.02189495787024498, -0.00839438010007143, -0.003649159800261259, -0.015161077491939068, 0.01714317500591278, -0.012128861621022224, 0.009844855405390263, -0.006126781459897757, 0.0014250428648665547, 0.007344262208789587, -0.008919439278542995, -0.01605367660522461, -0.021041737869381905, -0.0037607348058372736, 0.006602616515010595, 0.010317408479750156, -0.001542360638268292, 0.009201657958328724, -0.0037541715428233147, 0.003977321553975344, 0.0038919993676245213, 0.000943465274758637, -0.02118612825870514, -0.0027565595228224993, 0.014071580022573471, -0.011183755472302437, 0.011078744195401669, 0.011118123307824135, -9.598733595339581e-05, -0.008085907436907291, -0.010284592397511005, 0.0030535459518432617, 0.0011674357810989022, 0.006852019112557173, 0.0025530990678817034, 0.012818001210689545, -0.009621704928576946, -0.011695688590407372, -0.011492228135466576, -0.006277736276388168, 0.005349038168787956, 0.0036655678413808346, -0.0014709854731336236, 0.005995517130941153, -0.007514906115829945, -0.0008183536119759083, -0.011367525905370712, 0.009109772741794586, 0.013809050433337688, -0.004010137636214495, -0.012069792486727238, 0.020044125616550446, 0.009969556704163551, 0.012647357769310474, -0.002992836060002446, 0.009037577547132969, 0.01214198861271143, 0.013310244306921959, 0.014294729568064213, 0.010389603674411774, 0.021146750077605247, 0.0039346604607999325, -0.001993583282455802, 0.007757746148854494, 0.007724929600954056, 0.007593665271997452, 0.012516092509031296, -0.011406905949115753, -0.023194478824734688, 0.005605004262179136, -0.007770872674882412, -0.016513103619217873, 0.00488961162045598, 0.00805309135466814, 0.012010723352432251, 0.027644352987408638, -0.005250589456409216, -0.002561303088441491, -0.007534596137702465, 0.014924800954759121, -0.014937927015125751, 0.01713004894554615, -0.0008122005383484066, -7.583614933537319e-05, -0.006320396903902292, 0.02117300219833851, 0.004433466587215662, 0.025806646794080734, -0.0011001626262441278, 0.0030551867093890905, -0.011931965127587318, -0.012181367725133896, -0.004758346825838089, -0.008820990100502968, 0.010763708502054214, 0.004098741337656975, -0.004728812258690596, -0.0015858421102166176, 0.008492828346788883, 0.0029468934517353773, 0.016670621931552887, -0.016618115827441216, -0.004331736359745264, -0.025924785062670708, -0.01112468633800745, -0.027460582554340363, 0.011610366404056549, 0.019952239468693733, -0.014557259157299995, -0.03179232031106949, 0.0037574530579149723, 0.022039350122213364, -0.008866933174431324, -0.012962392531335354, -0.013638406060636044, 0.014964180067181587, -0.00047091225860640407, -0.01043554674834013, -0.010442109778523445, -0.0007281090947799385, -0.0011797418119385839, 0.017366325482726097, -0.001633425592444837, 0.00617600604891777, 0.02698802947998047, -0.007016100455075502, -0.014032200910151005, 0.01881023682653904, 0.01558112446218729, -0.035388972610235214, 0.010724329389631748, 0.0012158396421000361, 0.00926072709262371, -0.011183755472302437, -0.010763708502054214, -0.02806440182030201, 0.0016129154246300459, -0.00041799613973125815, -0.015948666259646416, -0.005207928363233805, 0.03244864195585251, 0.004771473351866007, 0.028116906061768532, -0.005079945549368858, -0.005139014683663845, -0.013238049112260342, 0.0023348715621978045, -0.006989847403019667, -0.006251483224332333, -0.008637219667434692, -0.012614541687071323, 0.009805476292967796, 0.0069110882468521595, 0.00942480843514204, -0.015056065283715725, 0.0017277720617130399, -0.0039346604607999325, 0.005660791881382465, -0.010028625838458538, 0.019230283796787262, -0.002820551162585616, -0.004351425915956497, -0.0006883194437250495, 0.017996395006775856, -0.024822162464261055, -0.005109480116516352, -0.02160617522895336, -0.015462986193597317, -0.01008113194257021, -0.015896160155534744, 0.014793535694479942, -0.0047386568039655685, 0.011177192442119122, -0.0009885875042527914, -0.014491626992821693, 0.002069060457870364, 0.01785200461745262, -0.01953219249844551, -0.006858582608401775, -0.006458225194364786, 0.007587101776152849, 0.011748193763196468, -0.023457009345293045, 0.002561303088441491, 0.0028582897502928972, 0.017917636781930923, -0.006251483224332333, -0.009221347980201244, 0.003983884584158659, -0.014924800954759121, 0.02982334792613983, -0.017300693318247795, -0.014793535694479942, 0.005027439445257187, -0.001376638887450099, -0.010356787592172623, -0.008663472719490528, -0.02125176042318344, 0.008420633152127266, 0.005736269056797028, -0.012502966448664665, 0.0011707174126058817, 0.00031483027851209044, -0.02155366912484169, -0.01988660730421543, -0.01681501232087612, 0.01642121933400631, 0.009628268890082836, 0.03869684413075447, -0.00523418141528964, 0.020752955228090286, -0.016224320977926254, -0.021763693541288376, -0.04016701132059097, 0.013612153008580208, -0.011315020732581615, -0.018298303708434105, 0.004928990732878447, -0.01247671339660883, -0.008473139256238937, 0.022695673629641533, 0.012417644262313843, -0.0017868411960080266, 0.0007658476824872196, 0.00488961162045598, -0.0046073924750089645, 0.0010025344090536237, 0.021317392587661743, -0.002101876540109515, 0.005273560993373394, -0.0032832592260092497, -0.013756544329226017, -0.003261928679421544, 0.012607977725565434, -0.01112468633800745, 0.001653115265071392, 0.0018262206576764584, 0.015213582664728165, 0.005565624684095383, -0.0026072459295392036, -0.014767282642424107, 0.01213542465120554, -0.006963594350963831, 0.013677786104381084, -0.015449859201908112, 0.009818602353334427, 0.008033402264118195, 0.009969556704163551, -0.016670621931552887, -0.009798912331461906, 0.010343661531805992, 0.01647372543811798, -0.014596639201045036, 0.007836504839360714, 0.014622892253100872, 0.0037804243620485067, -0.027801871299743652, -0.003485078690573573, -0.015279215760529041, 0.009431371465325356, -0.017313819378614426, 0.00230205524712801, 0.028011895716190338, -0.0027860940899699926, 0.012483276426792145, 0.001111648278310895, -0.017694486305117607, 0.013093657791614532, 0.0017802780494093895, -0.006428690627217293, 0.021632429212331772, 0.01235201209783554, -0.011203445494174957, 0.008138413541018963, 0.00710798567160964, 0.0023791734129190445, 0.02331261709332466, -0.012594851665198803, -0.0009992527775466442, -0.008637219667434692, 0.0077839987352490425, -0.013782797381281853, -0.0077511826530098915, -0.012457023374736309, -0.03244864195585251, 0.004761628340929747, -0.010849030688405037, -0.0019230283796787262, -0.026082303375005722, 0.016539357602596283, 0.006540265399962664, -0.006392592564225197, 0.011164066381752491, -0.010665260255336761, 0.005657510366290808, 0.014189718291163445, 0.008295931853353977, -0.0016079930355772376, -0.028589459136128426, -0.0055820331908762455, 0.005877378862351179, 0.016289953142404556, -0.0005595159600488842, -0.0027877348475158215, -0.02495342679321766, -0.01213542465120554, 0.00956263579428196, -0.009720154106616974, 0.006202258635312319, 0.014636018313467503, 0.009300107136368752, -0.016631241887807846, -0.023194478824734688, -0.012017286382615566, 0.021776819601655006, -0.022026222199201584, -0.021461784839630127, 0.019309042021632195, -0.01046836283057928, 0.03221236541867256, -0.017550095915794373, 0.0014890343882143497, 0.01437348872423172, 0.010744018480181694, 0.021658681333065033, -0.00247926265001297, 0.0031880922615528107, 0.008847243152558804, -0.009503566659986973, 0.02457275800406933, 0.05268966406583786, -0.021291140466928482, 0.015633629634976387, -0.0027467147447168827, -0.01882336288690567, 0.007836504839360714, 0.03759422153234482, -0.01096716895699501, -0.012726115994155407, -0.023220732808113098, 0.0022823656909167767, 0.0006345829460769892, -0.004495817236602306, 0.007508343085646629, -0.0032012187875807285, 0.0011657949071377516, 0.00920822098851204, -0.014347235672175884, -0.012712989933788776, 0.054973673075437546, 0.0061727240681648254, -0.014990433119237423, 0.0025317685212939978, 0.008939128369092941, -0.019322169944643974, 0.012942703440785408, 0.015515492297708988, 0.015016686171293259, 0.009116335771977901, -0.027250560000538826, -0.0029140771366655827, -0.004308764822781086, -0.008991634473204613, 0.029534565284848213, 0.0035835274029523134, 0.016618115827441216, 0.0052538709715008736, 0.016710001975297928, -0.007212997414171696, -0.005214491859078407, -0.01605367660522461, 0.015134824439883232, 0.031976088881492615, -0.014255350455641747, -0.005956137552857399, -0.006681375205516815, -0.011564423330128193, -0.0033997567370533943, -0.013690912164747715, -0.011360962875187397, 0.006720754783600569, -0.015607377514243126, 0.0009820243576541543, -0.002197043504565954, 0.00010737045522546396, 0.015633629634976387, -0.009214784950017929, 0.0027910165954381227, 0.016565609723329544, 0.00959545187652111, 0.023063214495778084, 0.001098521752282977, -0.0013692552456632257, 0.008899749256670475, -0.01848207600414753, -0.0014094550861045718, 0.004991341847926378, 0.012384828180074692, 0.01677563413977623, 0.020254148170351982, -0.013224922120571136, 0.013034588657319546, -0.0090507036074996, 0.03588777780532837, -0.006950467824935913, -0.007436147425323725, -0.02222312055528164, 0.007449273951351643, 0.00926072709262371, 0.010048315860331059, 0.017615728080272675, 0.017235059291124344], "cd36e93f-1652-488b-8342-eb7c92b5ce6e": [-0.006398304831236601, -0.01762656681239605, -0.0074739414267241955, -0.0038827022071927786, 0.005714754574000835, -0.030173350125551224, 0.032310742884874344, 0.054073307663202286, -0.012116529047489166, 0.06711973994970322, 0.000751644663978368, -0.016863210126757622, 0.009437846019864082, 0.005131829064339399, 0.0015405896119773388, 0.027758371084928513, -0.007723766844719648, 0.020707745105028152, 0.012553723528981209, -0.010437147691845894, 0.060402218252420425, -0.008709189482033253, -0.0242469385266304, 0.025426669046282768, 0.017793117091059685, -0.0017140794079750776, -0.019597411155700684, 0.03830655291676521, -0.015142192132771015, -0.04649527370929718, 0.01408043410629034, 0.025634856894612312, -0.020263610407710075, 0.013775091618299484, 0.02534339390695095, -0.023039449006319046, -0.00494446000084281, -0.0436084009706974, -0.026620278134942055, -0.012990918010473251, -0.021429462358355522, 0.0016316717956215143, 0.01532262098044157, -0.020527316257357597, -0.05468399077653885, 0.005662707611918449, -0.00042179712909273803, 0.0015787574229761958, 0.00303433695808053, 0.015419775620102882, -0.001321124960668385, -0.01113110687583685, 0.03128368407487869, 0.018875692039728165, 0.03033990040421486, -0.0331990122795105, 0.017737599089741707, 0.0242469385266304, -0.005027735140174627, -0.031866610050201416, 0.016807693988084793, -0.01217204611748457, -0.00599233852699399, -0.015058916993439198, 0.04446890950202942, -0.009444786235690117, 0.022095663473010063, 0.00312975631095469, -0.02995128370821476, -0.01659950613975525, 0.02684234455227852, 0.01002771221101284, -0.034392621368169785, -0.001385316252708435, 0.004649527370929718, -0.005666177719831467, 0.048438359051942825, 0.016793815419077873, 0.0017496448708698153, -0.015253225341439247, 0.011949978768825531, -0.021665409207344055, 0.018153974786400795, 0.0005911665502935648, 0.06950696557760239, -0.014011038467288017, -0.02677294984459877, -0.042442549020051956, -0.022789623588323593, -0.0020072772167623043, 0.0037924875505268574, 0.020693866536021233, 0.016474593430757523, 0.01832052506506443, -0.029396114870905876, -0.01337259542196989, 0.008403846994042397, -0.00211484101600945, 0.013775091618299484, -0.020360765978693962, 0.030950583517551422, -0.0037230916786938906, -0.012394112534821033, 0.00793889444321394, 0.0025294816587120295, 0.010680033825337887, 0.013053374364972115, -0.010242839343845844, -0.013296259567141533, 0.03158902749419212, -0.0019916631281375885, -0.020221972838044167, 0.01933370530605316, -0.02362237498164177, -0.032921429723501205, -0.026939500123262405, -0.0149895204231143, 0.015433654189109802, -0.0021616832818835974, -0.024496762081980705, 0.019972149282693863, -0.005936821922659874, -0.005270620808005333, -0.007217176724225283, -0.03336556255817413, 0.01232471689581871, -0.004007614683359861, 0.04094359651207924, 0.016738297417759895, -0.002014216734096408, -0.026648037135601044, -0.013275440782308578, 0.0013905209489166737, 0.030950583517551422, 0.010770248249173164, 0.009764007292687893, 0.006825089454650879, 0.021429462358355522, -0.017848633229732513, -0.001505024265497923, -0.07039523124694824, -0.020693866536021233, -0.020679986104369164, 0.01832052506506443, -0.0007178141386248171, 0.005374714732170105, 0.0014017977518960834, 0.01235941518098116, -0.023400306701660156, 0.034697964787483215, -0.05929188057780266, -0.006946532521396875, -0.03128368407487869, 0.013157468289136887, 0.028729913756251335, -0.019458618015050888, -0.0026491896715015173, 0.013643239624798298, -0.019583530724048615, 0.036113642156124115, 0.009125564247369766, -0.033670905977487564, -0.02884094789624214, 0.041387733072042465, 0.035391923040151596, -0.0032668134663254023, 0.04080480709671974, -0.0052116340957582, -0.02853560633957386, 0.017862511798739433, -0.021679287776350975, 0.0014347608666867018, 0.004996506962925196, 0.0360303670167923, -0.04088808223605156, -0.007598854135721922, -0.019625168293714523, 0.05168608948588371, -0.005614130757749081, 0.00017533314530737698, -0.04099911451339722, 0.00012556325236801058, -0.023164361715316772, -0.005950700957328081, 0.0316445454955101, 0.028674397617578506, -0.0009776151273399591, 0.015114433132112026, 0.012741092592477798, -0.0116099389269948, 0.0025433606933802366, -0.004750151187181473, -0.029895765706896782, -0.01618313044309616, -0.007987471297383308, 0.01972232386469841, 0.008258115500211716, -0.0029926993884146214, 0.021665409207344055, 0.041748590767383575, 0.01761268638074398, -0.034031763672828674, 0.002126985229551792, 0.026176145300269127, -0.02709216997027397, -0.0043684737756848335, -0.0029649410862475634, -0.04338633641600609, 0.011380932293832302, -0.04227599874138832, 0.019139397889375687, -0.015280983410775661, -0.01583615131676197, -0.04904904216527939, -0.018945088610053062, -0.006249103229492903, 0.03480899706482887, 0.017390619963407516, -0.04618993028998375, -0.03244953602552414, -0.0017956196097657084, 0.027591820806264877, -0.010117926634848118, -0.05568329244852066, -0.05174160376191139, -0.03605812415480614, -0.05668259412050247, -0.005964579991996288, 0.004541963338851929, 0.008889618329703808, -0.00898677296936512, 0.019819477573037148, 0.028452331200242043, -0.020305247977375984, -0.039999812841415405, 0.03455917164683342, 0.10092943906784058, -0.0010600228561088443, -0.011963858269155025, 0.002354256808757782, 0.00917414203286171, 0.02928508259356022, 0.04455218464136124, -0.01827888749539852, 0.022373247891664505, 0.010131805203855038, -0.0038133063353598118, 0.03628019243478775, 4.1556235373718664e-05, -0.0004940122598782182, -0.032976943999528885, -0.018167853355407715, -0.000983687350526452, -0.008438545279204845, -0.019194914028048515, 0.020513435825705528, 0.0450240783393383, -0.009916678071022034, 0.010069348849356174, -0.005485748406499624, 0.0019101229263469577, 0.034364864230155945, -0.03211643546819687, 0.043913744390010834, 0.03675208240747452, -0.04269237443804741, 0.017723720520734787, -0.018931210041046143, 0.02080489881336689, 0.0416930727660656, 0.013587722554802895, -0.005131829064339399, -0.012012435123324394, -5.3646304877474904e-05, -0.006276861764490604, -0.01428168173879385, 0.0020957570523023605, 0.0021113711409270763, 0.005291439592838287, -0.006162358447909355, -0.03566950932145119, -0.011922220699489117, 0.02227609232068062, 0.004677285440266132, 0.02680070698261261, -0.02607898972928524, -0.03422607108950615, -0.015586325898766518, -0.005003446713089943, 0.00145124236587435, 0.0025312164798378944, 0.013955521397292614, 0.03450365737080574, 0.010492664761841297, 0.009722369723021984, -0.01446211151778698, 0.004836896434426308, -0.0022657769732177258, -0.013490568846464157, 0.02113799937069416, -0.01870914176106453, -0.00970155093818903, 0.016682781279087067, 0.001276885042898357, 0.0125120859593153, -0.008056866936385632, 0.025620976462960243, 0.05468399077653885, 0.013608541339635849, 0.05857016518712044, 0.04760560765862465, -0.040777046233415604, -0.02674519084393978, -0.029146289452910423, -0.004344185348600149, 0.016779934987425804, 0.039638955146074295, -0.019153276458382607, 0.004524614661931992, 0.00041182147106155753, 0.03974998742341995, -0.0024149783421307802, -0.07228279858827591, 0.01285212580114603, 0.04441339522600174, -0.021596012637019157, 0.006606492213904858, 0.0015926365740597248, -0.04641199856996536, -0.021582134068012238, -0.009930557571351528, -0.01801518350839615, -0.004694634582847357, 0.02928508259356022, -0.049271110445261, -0.019250430166721344, -0.025870801880955696, -0.04866042360663414, 0.051935914903879166, -0.0065926131792366505, -0.0061311302706599236, -0.035752784460783005, 0.05468399077653885, -0.013261562213301659, -0.017695961520075798, -0.004455218557268381, 0.01074942946434021, 0.024746587499976158, 0.0033986656926572323, 0.0034264239948242903, 0.0007980531663633883, -0.024760467931628227, 0.01801518350839615, -0.016863210126757622, 0.0002866919385269284, -0.022650830447673798, -0.06445493549108505, -0.014253923669457436, -0.010874342173337936, 0.020957570523023605, -0.015003399923443794, -0.021929113194346428, -0.012678636237978935, 0.005610660649836063, 0.005124889314174652, 0.006360136903822422, 0.005263681057840586, -0.0325605683028698, -0.04405253753066063, 0.006523217540234327, -0.003719621803611517, -0.006009687669575214, 0.002690827241167426, 0.023067206144332886, 0.01217898540198803, -0.025829164311289787, 0.004174164962023497, 0.016099855303764343, -0.004677285440266132, 0.010541241616010666, 0.008771645836532116, -0.01764044538140297, -0.018556471914052963, 0.010513483546674252, -0.0038306552451103926, 0.01590554602444172, 0.02427469566464424, -0.06795249134302139, -0.018917329609394073, -0.01582227274775505, -0.003979856614023447, 0.028341297060251236, -0.041054632514715195, -0.0015102289617061615, -0.016349680721759796, -0.030895067378878593, 0.012387173250317574, -0.0055516744032502174, 0.0070471568033099174, -0.011811187490820885, -0.02251203916966915, -0.04238703474402428, 0.02777225151658058, -0.0031245516147464514, 0.011720972135663033, -0.03883396089076996, -0.008723068051040173, -0.02288677729666233, 0.0052498020231723785, 0.008709189482033253, 0.012033253908157349, 0.007730706594884396, 0.014934004284441471, 0.011047831736505032, 0.04474649578332901, -0.01583615131676197, 0.004691164940595627, 0.03691863268613815, -0.035780541598796844, -0.025218481197953224, -0.017029760405421257, 0.00789725687354803, -0.014628661796450615, 0.03747380152344704, 0.01580839231610298, 0.02155437506735325, 0.05609966814517975, -0.018764659762382507, -0.003917400259524584, -0.010499604046344757, 0.010527362115681171, 0.02179032191634178, 0.010506543330848217, 0.022692468017339706, -0.009902799502015114, -0.018514834344387054, -0.00860509555786848, -0.015461413189768791, 0.03158902749419212, 0.020693866536021233, -0.020333006978034973, 0.0073004518635571, 0.0006171900313347578, 0.0033709071576595306, -0.04482977092266083, -0.04868818446993828, -0.022734105587005615, 0.02435797080397606, 0.007460062392055988, -0.03494779020547867, 0.010464905761182308, -0.000583793269470334, -0.025926319882273674, -0.019500255584716797, 0.01004159078001976, 0.01758492924273014, -0.015239345841109753, 0.011596059426665306, 0.021707046777009964, -0.04541269689798355, 0.005572493188083172, -0.022664710879325867, 0.02507968805730343, 0.0030256626196205616, 0.010499604046344757, 0.014670299366116524, -0.01694648526608944, -0.010471845977008343, 0.010617577470839024, -0.0075225187465548515, 0.022442642599344254, -0.004194983746856451, 0.01265781745314598, 0.012303898110985756, 0.017709841951727867, -0.00029428210109472275, -0.00970849022269249, 0.005718224681913853, 0.02330315299332142, -0.00812626350671053, 0.018084578216075897, -0.07233831286430359, 0.024163663387298584, -0.03519761562347412, -0.002956266514956951, 0.0003901352465618402, -0.011221321299672127, -0.033698663115501404, -0.03342108055949211, 0.007397606037557125, 0.023719528689980507, -0.0036849237512797117, -4.2369469156255946e-05, 0.001149370102211833, -0.010714731179177761, -0.021082483232021332, -0.022664710879325867, -0.00696735130622983, -0.003244259627535939, -0.02144334279000759, 0.012990918010473251, -0.0285633634775877, 0.012269199825823307, -0.006818150170147419, -0.033698663115501404, 0.0746145024895668, -0.018820175901055336, 0.051935914903879166, -0.0019725793972611427, -3.421002475079149e-05, -0.018820175901055336, -0.0006163226207718253, -0.007557216566056013, 0.02499641291797161, 0.01002771221101284, 0.05135298892855644, 0.0066481297835707664, -0.002498253481462598, 0.054517440497875214, -0.0058639561757445335, -0.008771645836532116, -0.004802198149263859, -0.01056206040084362, -0.0020298308227211237, 0.00182684778701514, -0.015641842037439346, -0.02573201060295105, -0.019833356142044067, -0.010353872552514076, 0.0018112336983904243, -0.0007460062624886632, 0.03494779020547867, -0.03131144493818283, 0.002066263696178794, 0.025843044742941856, -0.0242469385266304, -0.0013974604662507772, -0.004410111345350742, 0.00045324215898290277, 0.02074938267469406, -0.02992352470755577, 0.03830655291676521, 0.0033726422116160393, 0.0026595990639179945, 0.02362237498164177, 0.03925033658742905, -0.040388431400060654, 0.007265753578394651, 0.018611988052725792, -0.0068528479896485806, -0.019944390282034874, 0.04965972527861595, -0.02603735215961933, -0.010589818470180035, -0.01690484769642353, -0.03272711858153343, -0.0034715314395725727, -0.032949186861515045, -0.04532942175865173, -0.0033153905533254147, -0.020568953827023506, 0.03208867833018303, 0.000239849672652781, -0.0024132435210049152, 0.006450351793318987, -0.01975008100271225, -0.01412901096045971, 0.005676587112247944, -0.035058822482824326, 0.031117133796215057, 0.013761213049292564, 0.01619700901210308, 0.014149829745292664, -0.006200526375323534, -0.0013046434614807367, 0.05115867778658867, -0.0030256626196205616, -0.011144986376166344, -0.016641143709421158, -0.003823715727776289, 0.03322676941752434, 0.0058674258179962635, -0.01762656681239605, 0.0004319896688684821, -0.015475291758775711, -0.015142192132771015, 0.004927110858261585, -0.012081831693649292, -0.015336500480771065, 0.010339993052184582, -0.01765432395040989, 0.03031214140355587, -0.004777909722179174, 0.02394159510731697, -0.02398323267698288, 0.004746681544929743, -0.005621070042252541, 0.020277490839362144, 0.019972149282693863, 0.026245540007948875, 0.021026967093348503, 0.03591933101415634, 0.017460016533732414, 0.012914582155644894, -0.013532206416130066, 0.04127669706940651, 0.010437147691845894, 0.00251039769500494, 0.0010183852864429355, 0.02117963694036007, -0.008681430481374264, -0.009222718887031078, 0.013136649504303932, -0.0030655651353299618, 0.006790391635149717, 0.017182432115077972, 0.006106841843575239, 0.03300470486283302, 0.029729215428233147, 0.012525965459644794, 0.02249816060066223, -0.013192166574299335, 0.024788225069642067, 0.02814698964357376, 0.01933370530605316, 0.029840249568223953, -0.008841041475534439, 0.010527362115681171, 0.00749476021155715, 0.03733500838279724, -0.0033570281229913235, 0.026925619691610336, 0.01089516095817089, 0.016779934987425804, -0.007217176724225283, -0.015641842037439346, 0.033337805420160294, -0.009153323248028755, -0.008841041475534439, -0.01623864658176899, -0.007126961834728718, -0.005693935789167881, 0.014066554605960846, 0.03533640876412392, 0.0005477941012941301, 0.0069638816639781, -0.003103732829913497, 0.003544397186487913, 0.040360670536756516, 0.013469750061631203, 0.016655022278428078, 0.013095011934638023, 0.0054683992639184, 0.01213734783232212, -0.0011996821267530322, -0.005898653995245695, -0.029340598732233047, -0.0018945088377222419, -0.016099855303764343, 0.014309440739452839, 0.018584229052066803, -0.022706348448991776, 0.009410087950527668, 0.005135298706591129, 0.025884682312607765, -0.029479390010237694, -0.018778538331389427, 0.009951376356184483, -0.020291369408369064, 0.027425270527601242, -0.005704345181584358, -0.03428158909082413, 0.03991653770208359, 0.01213040854781866, -0.0016325392061844468, 0.026203902438282967, 0.0015822271816432476, 0.0025294816587120295, -0.00396944722160697, 0.007890317589044571, -0.012255321256816387, -0.023886078968644142, -0.042470309883356094, 0.0006341052940115333, -0.02291453629732132, -0.005586372222751379, -0.020679986104369164, -0.01408043410629034, -0.02144334279000759, 0.01938922330737114, -0.019236551597714424, 0.005520446226000786, -0.019278189167380333, 0.041387733072042465, -0.020874295383691788, -0.017418378964066505, -0.004691164940595627, -0.030450934544205666, 0.009736249223351479, -0.04327530041337013, -0.043830469250679016, 0.002892075339332223, -0.01231777761131525, -0.005534325260668993, -0.0005733838770538568, 0.03394848853349686, -0.014934004284441471, -0.006127660628408194, -0.008251176215708256, 0.027397513389587402, 0.030506450682878494, 0.009014531038701534, -0.0015197708271443844, 0.004639117978513241, -0.015447533689439297, -0.0006206598482094705, 0.011707093566656113, 0.030201109126210213, 0.016308043152093887, 0.028979739174246788, 0.019250430166721344, 0.017820874229073524, -0.04782767593860626, 0.01725182868540287, -0.031228167936205864, -0.0064295330084860325, 0.00651280814781785, -0.007841739803552628, 0.018847934901714325, -0.009250476956367493, 0.04044394567608833, -0.00808462593704462, -0.009083926677703857, 0.014170648530125618, 0.016460714861750603, -0.014850729145109653, 0.007807041984051466, -0.015919426456093788, 0.021221274510025978, -0.006998579483479261, 0.006606492213904858, 0.005638419184833765, 0.01766820438206196, -0.023178240284323692, 0.0071547203697264194, -0.012352474965155125, 0.009285175241529942, 0.013462809845805168, -0.030867308378219604, -0.02784164622426033, 0.043469611555337906, -0.028313539922237396, 0.0187230221927166, -0.016682781279087067, -0.022137301042675972, 0.026564761996269226, 0.032921429723501205, -0.0036051184870302677, 0.01625252701342106, 0.002302209846675396, 0.004611359443515539, 0.0401386059820652, -0.012567603029310703, -6.9599236667272635e-06, 0.020152578130364418, 0.009611336514353752, 0.020971449092030525, 0.014475991018116474, 0.01269945502281189, 0.01622476801276207, 0.006672418676316738, 0.024469004943966866, 0.0450240783393383, -0.008577336557209492, -0.030062315985560417, -0.018223371356725693, 0.005957640707492828, -0.01908387988805771, 0.011186623945832253, -0.011408690363168716, -0.021387824788689613, -0.028674397617578506, 0.017834754660725594, 0.02144334279000759, 0.0028434982523322105, -0.017432257533073425, 0.030145591124892235, -0.015572446398437023, -0.016655022278428078, 0.006158888805657625, 0.026703553274273872, -0.023358669131994247, -0.00010008193930843845, 0.02331703156232834, -0.020180335268378258, -0.01722406968474388, 0.0020784081425517797, 0.012567603029310703, -0.0035565414000302553, 0.009750127792358398, 0.032310742884874344, -0.018764659762382507, 0.02850784733891487, 0.01797354593873024, 0.050992127507925034, -0.013337897136807442, -0.0200693029910326, -0.022373247891664505, -0.027994317933917046, 0.018167853355407715, 0.00984034314751625, -0.008383028209209442, -0.028049834072589874, 0.06312254071235657, 0.006169298198074102, -0.013129710219800472, -0.014038796536624432, 0.03028438426554203, 0.020152578130364418, -0.02396935410797596, -0.01618313044309616, 0.001505024265497923, 0.014309440739452839, 8.793765300652012e-05, 0.004677285440266132, 0.02227609232068062, 0.02001378685235977, 0.006016626954078674, 0.012484327889978886, 0.009437846019864082, 0.010117926634848118, 0.028077593073248863, -0.017015881836414337, -0.002232813974842429, 0.003180068451911211, 0.02467719279229641, 0.005412882659584284, -0.0068008010275661945, -0.0149895204231143, 0.012866005301475525, -0.014323319308459759, -0.027064412832260132, 0.0140873733907938, 0.0017192841041833162, -0.026509243994951248, 0.0007008988759480417, 0.016641143709421158, -0.001800824305973947, 0.026578640565276146, 0.030034558847546577, -0.009999953210353851, -0.01972232386469841, -0.0034767361357808113, 0.0020679987501353025, 0.0008093300275504589, -0.003285897197201848, 0.000109190157672856, 0.017709841951727867, -0.03308798000216484, 0.006058264523744583, 0.004649527370929718, -6.348643364617601e-05, -0.03564174845814705, -0.03064524196088314, -0.02678682841360569, -0.0012699455255642533, -0.0003142334462609142, 0.016391318291425705, -0.01108253002166748, -0.01761268638074398, -0.006269922014325857, 0.01590554602444172, 0.011380932293832302, 0.01284518651664257, 0.00040943597559817135, -0.004541963338851929, 0.004875063896179199, 0.0034871455281972885, -0.004503795877099037, -0.009646033868193626, 0.0005209032096900046, 0.0036606353241950274, -0.004871594253927469, 0.02151273749768734, -0.011027012951672077, 0.01697424426674843, 0.009673792868852615, -0.012387173250317574, 0.010714731179177761, 0.034364864230155945, -0.024885380640625954, 0.0050901914946734905, -0.013185226358473301, -0.004968748427927494, -0.01587778888642788, 0.010784127749502659, 0.03411503881216049, -0.004122117999941111, 0.018126215785741806, -0.011894462630152702, 0.0003517506120260805, -0.027272600680589676, -0.028979739174246788, -0.03145023435354233, 0.024219179525971413, -0.06961799412965775, -0.0073698475025594234, -0.009403148666024208, 0.018209490925073624, 0.002402834128588438, 0.028702156618237495, 0.02992352470755577, -0.016835452988743782, 0.02077714167535305, 0.04727250710129738, -0.005062432959675789, 0.019097760319709778, -0.025843044742941856, 0.0045801312662661076, -0.0374460443854332, -0.014489869587123394, -0.028355177491903305, 0.020707745105028152, -0.01726570725440979, -0.01390000432729721, -0.010333053767681122, -0.010645335540175438, -0.0059194727800786495, -0.0019014484714716673, 0.027744492515921593, 0.0074739414267241955, -0.013185226358473301, -0.009410087950527668, -0.005981929134577513, 0.040388431400060654, -0.027688976377248764, -0.025967957451939583, 0.005857016425579786, -0.0310061015188694, -0.01697424426674843, -0.00677651260048151, -0.00828587356954813, 0.02678682841360569, -0.020943691954016685, 0.007126961834728718, 0.018070699647068977, 0.00348541047424078, 0.02044404111802578, -0.02327539399266243, -0.010117926634848118, 0.014947882853448391, 0.005287969950586557, 0.018917329609394073, -0.0038688229396939278, 0.001590901636518538, -0.004250500816851854, -0.010270597413182259, -0.01870914176106453, -0.011318475939333439, -0.009993013925850391, 0.021970750764012337, 0.009285175241529942, -0.021068604663014412, 0.003363967640325427, -0.002536421176046133, -0.017779236659407616, -0.0055516744032502174, -0.00430601742118597, -0.02649536542594433, -0.013046435080468655, -0.01516995020210743, 0.005985398776829243, -0.006686297710984945, -0.0006683695246465504, 0.007633552420884371, -0.006151949055492878, -0.022317729890346527, -0.012630059383809566, -0.029507149010896683, -0.0036571654491126537, 0.006092962343245745, -0.05043696239590645, -0.006207465659826994, -0.015114433132112026, -0.017085278406739235, 0.00430254777893424, -0.01693260669708252, 0.006457291077822447, -0.009548880159854889, -0.0034541822969913483, 0.006939592771232128, -0.00931987352669239, 0.017002003267407417, -0.013136649504303932, 0.013601602055132389, -0.025995714589953423, 0.00950724259018898, -0.029118532314896584, -0.0007082722149789333, -0.048077501356601715, -0.0010444087674841285, -0.018098458647727966, -0.026148386299610138, 0.04655078798532486, 0.033726420253515244, 0.05063126981258392, 0.029451632872223854, -0.03106161765754223, -0.008931255899369717, -0.015239345841109753, -0.025482185184955597, -0.005440640728920698, -0.016766056418418884, 0.001996867824345827, 0.00756415631622076, 0.03708518296480179, 0.009493363089859486, -0.04394150152802467, -0.0004957471392117441, 0.035058822482824326, 0.008112384006381035, -0.013664058409631252, -0.0208465363830328, -0.009764007292687893, -0.009618275798857212, 0.01285212580114603, -0.016460714861750603, 0.003934749402105808, -0.0007568493601866066, 0.005416352301836014, -0.002038505394011736, -0.019250430166721344, -0.003403870388865471, -0.023469703271985054, 0.026675794273614883, -0.013650178909301758, -0.013920823112130165, -0.04274789243936539, -0.011880583129823208, -0.022373247891664505, 0.02859112247824669, 0.0035773601848632097, 0.009923618286848068, 0.0021564785856753588, 0.01801518350839615, -0.01479521207511425, 0.016849331557750702, -0.005634949542582035, 0.0042123328894376755, 0.01761268638074398, 0.0015362523263320327, 0.004798728507012129, 0.008362209424376488, -0.04258134216070175, -0.006384425330907106, -0.008521820418536663, 0.006842438597232103, -0.019222673028707504, -0.0026995015796273947, 0.01580839231610298, -0.010617577470839024, -0.017473895102739334, 0.05601639300584793, 0.007168599404394627, -0.0024878440890461206, -0.011741790920495987, -0.03908378630876541, -0.000899544742424041, -0.0009342426783405244, -0.011040892452001572, -0.013455870561301708, 0.01759880781173706, -0.003719621803611517, 0.000771595980040729, -0.009007591754198074, 0.02823026478290558, -0.0035010245628654957, 0.024219179525971413, 0.001045276178047061, -0.012859066016972065, 0.01729346625506878, -0.015003399923443794, -0.01284518651664257, -0.030201109126210213, -0.026370452716946602, 0.014406594447791576, 0.005881304852664471, 0.0015952389221638441, -0.0187230221927166, -0.0014902775874361396, -0.015114433132112026, 0.000605479464866221, -0.004916701465845108, 0.02324763685464859, -0.003889641724526882, 0.006613431964069605, 0.008251176215708256, 0.027619579806923866, 0.001584829529747367, 0.028674397617578506, -0.01653010956943035, -0.007619672920554876, 0.009646033868193626, 0.01979171857237816, 0.014309440739452839, 0.047466814517974854, 0.00017663431935943663, 0.0299790408462286, 0.013539145700633526, -0.012234502471983433, 0.021401705220341682, 0.0116099389269948, 0.008501001633703709, 0.020957570523023605, 0.012824367731809616, 0.026634156703948975, -0.004618299193680286, -0.05707121267914772, -0.003091588616371155, 0.001353220664896071, -0.0006943930056877434, -0.01827888749539852, -0.019194914028048515, 0.024871500208973885, 0.002218934940174222, 0.011367052793502808, 0.013178287073969841, 0.02227609232068062, 0.014351078309118748, 0.01693260669708252, 0.014170648530125618, -0.007869498804211617, 0.062234267592430115, -0.022761864587664604, 0.012290018610656261, -0.019305948168039322, -0.018764659762382507, -0.00033808828447945416, -0.012935400940477848, 0.0030568905640393496, 0.0010747694177553058, -0.013296259567141533, -0.01941698044538498, 0.001327197183854878, -0.019514136016368866, -0.02113799937069416, -0.0055516744032502174, 0.0007217176607809961, -0.033698663115501404, -0.013657119125127792, 0.0007924147648736835, -0.02291453629732132, -0.003591239219531417, 0.015669601038098335, -0.016432955861091614, -0.006943062879145145, 0.015988821163773537, -0.023178240284323692, 0.04324754327535629, -0.0038271856028586626, -0.03444813936948776, 0.008424665778875351, 0.0035287830978631973, 0.0026006123516708612, -0.015461413189768791, 0.008237296715378761, 0.010666154325008392, -0.007793162949383259, 0.007612733636051416, -0.021290671080350876, 0.001241319696418941, -0.01757104881107807, 0.015114433132112026, 0.016460714861750603, -0.005884774960577488, -0.012949280440807343, -0.015447533689439297, 0.03000679984688759, -0.004809137899428606, -0.007321270648390055, -0.00022033207642380148, 0.015142192132771015, 0.007147780619561672, 0.004968748427927494, 0.002430592430755496, 0.009562758728861809, -0.01766820438206196, 0.010388570837676525, 0.010145684704184532, 0.030534209683537483, 0.010589818470180035, -0.013851427473127842, -0.02011094056069851, -0.01461478229612112, 0.0299790408462286, -0.00969461165368557, -0.0172379482537508, -0.007411485072225332, 0.004847305826842785, 0.03675208240747452, -0.003223440842702985, 0.00553779536858201, -0.009250476956367493, 0.0012682105880230665, -0.001169321360066533, 0.00814014207571745, -0.007508639711886644, -0.0018181733321398497, -0.027341995388269424, 0.0026353104040026665, -0.020513435825705528, -0.004326836206018925, -0.02717544510960579, 0.00730739114806056, 0.007126961834728718, 0.025246238335967064, -0.012539844028651714, -0.027036653831601143, 0.010624516755342484, -0.033282287418842316, 0.017015881836414337, 0.004038842860609293, -0.001877159927971661, 0.004070071037858725, 0.023067206144332886, 0.0013376065762713552, 0.003259873716160655, 0.01902836374938488, 0.03311573714017868, -0.0013098481576889753, 0.021415583789348602, 0.006124190520495176, 0.00918108131736517, 0.01388612575829029, 0.010263658128678799, -0.04816077649593353, -0.029840249568223953, 0.002300475025549531, -0.00299790408462286, 0.006998579483479261, 0.03247729316353798, 0.01059675868600607, 0.01038163062185049, -0.03067300096154213, 0.022373247891664505, 0.0003788584144786, -0.015405896119773388, 0.001995133003219962, -0.00988198071718216, 0.013511387631297112, -0.005222043488174677, 0.020221972838044167, -0.019916631281375885, -0.011033953167498112, -0.026550881564617157, -0.009659913368523121, -0.009937496855854988, 0.02780000865459442, -0.0086189741268754, -0.010638396255671978, -0.012768850661814213, -0.002336907899007201, 0.029007498174905777, 0.006197056267410517, -0.03128368407487869, -0.034364864230155945, -0.0009637359762564301, 0.005981929134577513, 0.028341297060251236, 0.014475991018116474, -0.02427469566464424, -0.0149895204231143, 0.004639117978513241, 0.02320599928498268, -0.02079102024435997, 0.02781388908624649, 0.0012283079558983445, -0.01390000432729721, -0.01236635446548462, -0.017723720520734787, 0.0020333006978034973, 0.007834800519049168, 0.049271110445261, -0.03558623418211937, -0.004885473288595676, -0.0019916631281375885, 0.010124865919351578, -0.0037161519285291433, 0.00037907526711933315, -0.006138070020824671, 0.019444739446043968, 0.009076987393200397, 0.010686973109841347, -0.02505193091928959, 0.01905612275004387, 0.010888221673667431, 0.02435797080397606, -0.022345488891005516, 0.010055470280349255, 0.005239392630755901, -0.020985329523682594, 0.003051685867831111, -0.01375427283346653, -0.0021738274954259396, -0.019597411155700684, 0.011707093566656113, 0.000485771510284394, -0.012546784244477749, -0.014066554605960846, -0.023747287690639496, 0.007328209932893515, 0.00723105575889349, 0.026314936578273773, -0.007074914872646332, -0.04768888279795647, 0.01074249017983675, -0.010402449406683445, 0.00606520427390933, -0.010520422831177711, -0.018903451040387154, -0.00866061169654131, 0.011353174224495888, 0.0006098167505115271, 0.029007498174905777, -0.00079154729610309, 0.03128368407487869, 0.0006553577841259539, 0.005156117491424084, 0.013462809845805168, -0.010159564204514027, -0.0038965814746916294, 0.0222622137516737, -0.003952098079025745, 0.006436472292989492, 0.024427367374300957, 0.018889572471380234, 0.030062315985560417, 0.014947882853448391, 0.0019829885568469763, -0.012602300383150578, -0.016766056418418884, -0.0002758488117251545, -0.00023464499099645764, 0.020166456699371338, -0.017085278406739235, 0.013011736795306206, -0.006360136903822422, -0.00449685612693429, -0.006408714223653078, 0.004177635069936514, -0.02109636180102825, -0.0026179614942520857, 0.01721019111573696, -7.611866021761671e-05, 0.00035305178607814014, 0.0023611965589225292, -0.04024963825941086, 0.017682082951068878, -0.0026075521018356085, 0.011700153350830078, -0.0007833065465092659, -0.03516985848546028, -0.0008487989543937147, -0.029423873871564865, -0.00789725687354803, 0.0004992169560864568, 0.022775743156671524, -0.03417055681347847, 0.06340011954307556, 0.018070699647068977, 0.0053018489852547646, 0.010360811837017536, 0.018875692039728165, 0.00338999112136662, -0.0032650784123688936, -0.0182650089263916, 0.0011701888870447874, 0.016446834430098534, -0.010506543330848217, 0.011443388648331165, -0.03564174845814705, -4.3291132897138596e-05, -0.017085278406739235, -0.007126961834728718, 0.019305948168039322, 0.008237296715378761, -0.0007078384514898062, -0.0043719434179365635, -0.0026196963153779507, -0.0026474546175450087, 0.006426062900573015, -0.016072096303105354, 0.009646033868193626, 0.014587024226784706, 0.009784826077520847, -0.033587630838155746, -0.026939500123262405, -0.031505752354860306, -0.006474640220403671, -0.01375427283346653, 0.0023559918627142906, -0.01732122339308262, 0.019500255584716797, 0.008487122133374214, -0.016419077292084694, -0.003598178969696164, -0.015156070701777935, 0.011568301357328892, -0.00457319151610136, -0.014920124784111977, 0.04263686016201973, -0.025843044742941856, -0.00043285710853524506, 0.0010019036708399653, 0.020319128409028053, -0.0022241396363824606, -0.024954775348305702, -0.02145722135901451, -6.598034815397114e-05, 0.0017296934965997934, 0.013788971118628979, -0.035086583346128464, -0.028785431757569313, -0.014038796536624432, -0.01388612575829029, 0.006672418676316738, 0.003938219044357538, -0.039638955146074295, -0.01621088944375515, -0.008952074684202671, 0.037168458104133606, 0.016294164583086967, -0.008861860260367393, -0.017876392230391502, 0.025246238335967064, -0.041082389652729034, -0.011228261515498161, 0.017362860962748528, -0.008403846994042397, 0.005215104203671217, 0.039666712284088135, -0.027036653831601143, 0.035447441041469574, 0.009340692311525345, 0.020638348534703255, -0.008383028209209442, -0.022054025903344154, 0.009160262532532215, 0.01165851578116417, -0.00468075554817915, -0.01336565613746643, -0.01622476801276207, 0.019278189167380333, -0.008625914342701435, 0.03214419260621071, -0.013997158966958523, -0.012817428447306156, 0.017015881836414337, -0.008403846994042397, -0.026939500123262405, -0.03217195346951485, 0.003443772904574871, 0.006672418676316738, -0.012109589762985706, 0.0034472427796572447, 0.0007321270531974733, 0.01337259542196989, 0.009777886793017387, 0.01659950613975525, 0.018847934901714325, 0.012921522371470928, 0.04730026423931122, -0.0292018074542284, 0.00335355824790895, -0.0173073448240757, -0.018861813470721245, -0.00016926100943237543, -0.03628019243478775, 0.012748031876981258, -0.003457652172073722, -0.005877835210412741, 0.00880634319037199, 0.0008236429421231151, 0.014947882853448391, -0.038556378334760666, 0.004951399751007557, 0.04080480709671974, 0.020985329523682594, 0.002388954861089587, 0.01530874241143465, -0.0325605683028698, 0.024885380640625954, 0.005034674424678087, -0.016030458733439445, 0.006363606546074152, 0.009465605020523071, 0.031949885189533234, 0.004090889822691679, 0.0022553675808012486, -0.019625168293714523, 0.0030464811716228724, -0.014892366714775562, 0.00041420693742111325, 0.011915281414985657, -0.01727958582341671, -0.015142192132771015, -0.009965255856513977, -0.008334451355040073, 0.020985329523682594, 0.004715453367680311, -0.00748782092705369, 0.017432257533073425, -0.039944298565387726, -0.0033240648917853832, -0.02249816060066223, -0.006280331406742334, -0.0011450328165665269, 0.02147109992802143, 0.019833356142044067, -0.0009689406724646688, 0.016044339165091515, 0.009937496855854988, -0.026245540007948875, 0.015392016619443893, -0.0067001767456531525, -0.010693912394344807, 0.026911741122603416, 0.014156769961118698, 0.047050438821315765, -0.013143588788807392, -0.012567603029310703, -0.006367076653987169, -0.0034090750850737095, -0.00607214355841279, -0.019486377015709877, -0.0022362838499248028, 0.01041632890701294, 0.014323319308459759, -0.022414885461330414, -0.03314349427819252, 0.005405942909419537, 0.009625215083360672, -0.004847305826842785, 0.01270639430731535, 0.020249731838703156, 0.0028591123409569263, -0.01727958582341671, -0.012470448389649391, -0.007501699961721897, -0.012449629604816437, -0.025815285742282867, 0.010541241616010666, -0.02501029334962368, 0.00775846466422081, 0.009014531038701534, 0.004056192003190517, -0.006148479413241148, -0.01661338470876217, 0.0018632806604728103, 0.0014763984363526106, -0.0058153788559138775, 0.002709910972043872, 0.01285212580114603, 0.0017140794079750776, 0.00019604350381996483, -0.018917329609394073, 0.013317078351974487, 0.0007013325812295079, -0.0063774860464036465, 0.00041941163362935185, 0.004632178228348494, 0.05035368725657463, -0.008424665778875351, -0.007980532012879848, 0.0013913883594796062, -0.004868124611675739, -0.01802906207740307, 0.007744585629552603, 0.0015622758073732257, -0.012560662813484669, -0.01037469133734703, 0.00251039769500494, 0.038556378334760666, 0.003062095260247588, -0.012789669446647167, -0.02154049649834633, 0.015600204467773438, -0.012748031876981258, -0.008979832753539085, 0.02041628211736679, 0.03902827203273773, -2.1808213205076754e-05, 0.004836896434426308, -0.012373293749988079, -0.010006893426179886, -0.0032616087701171637, -0.004430930130183697, 0.01657174713909626, -7.901919161668047e-06, 0.02539891004562378, -0.011512784287333488, 0.022123422473669052, -0.003469796385616064, 0.006360136903822422, 0.0026266358327120543, 0.03591933101415634, 0.012997857294976711, 0.010013832710683346, -0.023122724145650864, 0.0011224790941923857, -0.0009012796217575669, -7.0209163823165e-05, -0.025607097893953323, -0.022109543904662132, -0.01759880781173706, 0.0033570281229913235, -0.0013445460936054587, 0.015655722469091415, -0.022484280169010162, 0.009458664804697037, -0.0013870510738343, -0.0034472427796572447, -0.0017652589594945312, 0.011741790920495987, 0.009916678071022034, 0.01322686392813921, -0.022636951878666878, 0.007827861234545708, 0.007730706594884396, -0.0011476351646706462, 0.007501699961721897, -0.020346885547041893, -0.003938219044357538, -0.011554421856999397, 0.003837594762444496, 0.018542591482400894, 0.024746587499976158, 0.006360136903822422, -0.002758488291874528, -0.013330957852303982, 0.0010539506329223514, -0.004961809143424034, -0.014739695005118847, 0.012623119167983532, -0.005822318606078625, 0.0009802174754440784, 0.007550277281552553, -0.02324763685464859, 0.0002851738827303052, 0.016155371442437172, 0.015364258550107479, -0.009222718887031078, -0.00030208914540708065, -0.004011084791272879, 0.004673815798014402, -0.025107447057962418, -0.010152623988687992, 0.003004843834787607, 0.008854920975863934, 0.02507968805730343, 0.015058916993439198, -0.00014464714331552386, -0.012151227332651615, -0.00860509555786848, 0.010305295698344707, -0.0076266126707196236, 0.013622420839965343, -3.0957089620642364e-05, 0.023330911993980408, -0.016779934987425804, 0.0027012366335839033, -0.027383632957935333, -0.00606520427390933, 0.011373993009328842, 0.0014824705431237817, -0.003192212665453553, 0.02331703156232834, 0.004135997500270605, -0.011707093566656113, 0.010666154325008392, 0.020693866536021233, -0.012026314623653889, 0.0077376458793878555, 0.014378836378455162, -0.01074942946434021, -0.0032095618080347776, -0.010333053767681122, 0.006051325239241123, 0.011339294724166393, -0.00035825648228637874, 0.0029128941241651773, -0.02113799937069416, 0.0030672999564558268, 0.003591239219531417, -0.013337897136807442, 0.022692468017339706, -0.008945135399699211, -0.010388570837676525, 0.02324763685464859, -0.007328209932893515, 0.0007702948059886694, -0.0074739414267241955, -0.026259420439600945, -0.012414931319653988, -0.015711238607764244, 0.004434399772435427, 0.0044725676998496056, -0.01616925187408924, -0.01732122339308262, -0.0041082389652729034, -0.012623119167983532, -0.001007108367048204, 0.004972218535840511, 0.002040240215137601, 6.115516589488834e-05, 0.0013965930556878448, 0.008827161975204945, -0.005031204782426357, 0.0027827767189592123, -0.0032893670722842216, 0.0055516744032502174, 0.0075225187465548515, 0.0173073448240757, 0.01287988480180502, 0.03167230263352394, 0.007800102233886719, -0.005624540150165558, 0.030867308378219604, -0.005700875539332628, -0.025815285742282867, 0.0037508499808609486, -0.005947231315076351, 0.029174048453569412, -0.04052722081542015, -0.005631479434669018, -0.012262260541319847, -0.0019274719525128603, -0.015572446398437023, -0.030423175543546677, 0.019944390282034874, -0.014781332574784756, -0.016779934987425804, 0.00898677296936512, -0.0020090120378881693, 0.00573557335883379, 0.0020853476598858833, 0.01270639430731535, -0.007328209932893515, 0.012671696953475475, 0.0028035955037921667, 0.013775091618299484, -0.0021113711409270763, -0.012796609662473202, 0.007550277281552553, 0.01374733354896307, -0.022997811436653137, -0.0014521097764372826, -0.021054724231362343, -0.018431559205055237, 0.004247030708938837, -0.03181109204888344, 0.028424572199583054, -0.013573843985795975, 0.0014026651624590158, -0.0006241296650841832, 0.015156070701777935, 0.015558566898107529, 0.0019517604960128665, 0.006557915359735489, 0.0158916674554348, -0.015280983410775661, 0.007709887810051441, -0.00936845038086176, 0.03564174845814705, -0.011498905718326569, -0.005180405918508768, -0.018167853355407715, -0.006308089941740036, 0.019305948168039322, 0.02395547553896904, 0.009576638229191303, 0.0010201201075688004, 0.01269945502281189, 0.012616179883480072, 0.016821572557091713, 0.0005790222785435617, -0.029118532314896584, -0.01795966550707817, -0.015045037493109703, -0.007744585629552603, -0.017418378964066505, -0.013088072650134563, -0.020693866536021233, -0.030728517100214958, 0.017737599089741707, 0.013275440782308578, -0.016752177849411964, -0.0022102603688836098, 0.006488519255071878, 0.009070048108696938, 0.04405253753066063, 0.016030458733439445, 0.0026075521018356085, 0.015045037493109703, -0.0020836128387600183, 0.015183829702436924, -0.0027012366335839033, -0.0022640421520918608, 0.0021217805333435535, 0.009625215083360672, 0.0031575148459523916, -0.006561385001987219, 0.01650235243141651, -0.00950724259018898, -0.015489171259105206, 0.014309440739452839, -0.0029319780878722668, 0.025218481197953224, 0.017043640837073326, -0.0033761118538677692, 0.023108843713998795, -0.008889618329703808, 0.000775499502196908, 0.011373993009328842, -0.004923641216009855, -0.005690466146916151, 0.01092985924333334, -0.0027741021476686, 0.012151227332651615, -0.007508639711886644, -0.007161659654229879, -2.557619518483989e-05, 0.025967957451939583, 0.019264310598373413, 0.008841041475534439, 0.03919482231140137, 0.00080542650539428, 0.011818126775324345, 0.008577336557209492, -0.0031627195421606302, 0.0007720296853221953, -0.0007525121327489614, 0.013171347789466381, 0.0009420497226528823, -0.0009611336281523108, -0.011998556554317474, 0.009972195141017437, -0.003193947719410062, -0.0023490521125495434, 0.009923618286848068, -0.009028410539031029, 0.021387824788689613, -0.0062386938370764256, -0.009493363089859486, 0.009194960817694664, 0.009604396298527718, -0.02531563490629196, 0.010471845977008343, -0.005954170599579811, -0.016363559290766716, 0.009090866893529892, 0.02469107136130333, 0.024510642513632774, -0.014947882853448391, 0.003702272893860936, -0.010513483546674252, -0.015655722469091415, 0.00017880294763017446, -0.003705742536112666, 0.00790419615805149, -0.0025971427094191313, 0.01729346625506878, 0.00027649939875118434, -0.023192118853330612, 0.026883982121944427, -0.019666805863380432, 0.0070471568033099174, 0.028077593073248863, -0.020638348534703255, -0.00027714998577721417, 0.020596710965037346, 0.008903497830033302, -0.007133901584893465, 0.030811792239546776, -0.018417678773403168, -0.02953490801155567, 0.0019083881052210927, -0.0011441654060035944, -0.0011962123680859804, -0.01059675868600607, -0.001714946934953332, -0.003429893869906664, 0.0032963065896183252, -0.007793162949383259, -0.00494792964309454, 0.005166526883840561, -0.0048820036463439465, -0.02363625355064869, 0.000505722826346755, 0.017418378964066505, -0.02464943379163742, 0.00970849022269249, 0.016488471999764442, -0.0006423460436053574, -0.00809156522154808, 0.028674397617578506, -0.014628661796450615, 0.025190722197294235, -0.006148479413241148, -0.007453122641891241, -0.01236635446548462, -0.01616925187408924, 0.004847305826842785, -0.009611336514353752, 0.0027307297568768263, -0.005634949542582035, 0.01979171857237816, 0.021984631195664406, -0.005371245089918375, 0.004344185348600149, -0.001301173702813685, 0.022289972752332687, -0.021332308650016785, 0.009937496855854988, -0.005513506475836039, -0.0050901914946734905, 0.010735549964010715, 0.006929183378815651, -0.0043129571713507175, -0.0018285827245563269, 0.008292813785374165, 0.011068650521337986, 0.013601602055132389, 0.0017721985932439566, -0.003955568186938763, 0.0007325607584789395, 0.023816682398319244, 0.017501654103398323, 0.0010149154113605618, 0.027244841679930687, -0.01696036569774151, -0.005135298706591129, -0.00023572929785586894, 0.010110986419022083, -0.01323380321264267, -0.015669601038098335, -0.008924316614866257, 0.00756415631622076, -0.023136602714657784, 0.038251034915447235, -0.02825802192091942, -0.004750151187181473, -0.008917377330362797, -0.010305295698344707, -0.011040892452001572, -0.0029111593030393124, -0.020943691954016685, 0.0021859717089682817, 0.0032130314502865076, 0.002787981415167451, -0.007057566195726395, -0.02428857423365116, 0.016821572557091713, 0.006734875030815601, -0.00032594401272945106, -0.0003910026862286031, -0.004205393139272928, 0.011970797553658485, 0.013441991060972214, 0.019805599004030228, -0.00046104920329526067, -0.00931987352669239, -0.011714032851159573, -0.0009776151273399591, -0.01761268638074398, 0.002628370886668563, -0.010888221673667431, -0.010159564204514027, -0.027966558933258057, 0.007355968467891216, -0.01590554602444172, -0.009604396298527718, 0.014378836378455162, 0.004524614661931992, 0.004507265519350767, 0.018611988052725792, 0.016377439722418785, -0.03025662526488304, 0.021623771637678146, -0.009618275798857212, 0.017113035544753075, 0.004698104225099087, -0.0022553675808012486, -0.0012898967834189534, -0.012498206458985806, -0.003022192744538188, 0.027397513389587402, -0.0026613338850438595, 0.020610591396689415, 0.013691816478967667, 0.012810488231480122, -0.011186623945832253, -0.004292138386517763, 0.0029233035165816545, 0.020194215700030327, -0.00936845038086176, -0.006828559562563896, 0.006904894951730967, 0.011894462630152702, -7.492591976188123e-05, -0.0004675550735555589, 0.0052532716654241085, -0.019625168293714523, -0.018459316343069077, -0.014836849644780159, 0.013691816478967667, -0.01659950613975525, 0.00404231296852231, 0.021915234625339508, -0.019111638888716698, 0.007529458496719599, 0.012054072692990303, -0.0073698475025594234, 0.006242163944989443, -0.00430254777893424, -0.009257417172193527, 0.03342108055949211, 0.02179032191634178, 0.009576638229191303, 0.0006531891995109618, 0.001241319696418941, -0.02427469566464424, 0.0055482042953372, 0.02645372785627842, -0.0007342956960201263, 0.0011224790941923857, -0.0020350355189293623, -0.00813320279121399, -0.008688370697200298, 0.015544688329100609, 0.014156769961118698, -0.031117133796215057, 0.004163755569607019, -0.004545433446764946, -0.006897955201566219, 0.027258720248937607, -0.019597411155700684, -0.017348982393741608, 0.00019116410112474114, 0.0014616517582908273, -0.0011389607097953558, -0.0005599384312517941, -0.011415630578994751, 0.007855619303882122, -0.011006194166839123, -0.02363625355064869, 0.019097760319709778, -0.0059194727800786495, 0.0014486400177702308, -0.007244934793561697, 0.006821619812399149, -0.012477387674152851, 0.0033847864251583815, 0.019652927294373512, 0.029035257175564766, 0.019986027851700783, 0.021040845662355423, -0.00985422171652317, 0.017876392230391502, 0.016460714861750603, 0.01863974705338478, 0.031228167936205864, 0.012567603029310703, 0.0073698475025594234, -0.01442047394812107, -0.02222057618200779, -0.0027220554184168577, -0.0057633318938314915, -7.774512778269127e-05, 0.002657864009961486, -0.017446136102080345, 0.020624469965696335, 0.0010721670696511865, -0.0026630687061697245, 0.009979134425520897, 0.005999278277158737, 0.0074184248223900795, -0.006197056267410517, -0.009125564247369766, 0.029479390010237694, 0.007026338018476963, -0.021693168208003044, 0.0013723045121878386, 0.009299054741859436, -0.011512784287333488, 0.02260919287800789, -0.004427460487931967, -0.0037924875505268574, -0.00013586421846412122, 0.0037369707133620977, 0.0043164268136024475, -0.0074739414267241955, -0.013948582112789154, -0.011561362072825432, 0.026190023869276047, 0.0068563176319003105, -0.006297680549323559, 0.0022675120271742344, 0.02466331236064434, 0.028355177491903305, 0.013351776637136936, -0.0100346514955163, -0.020679986104369164, 0.0037647292483597994, -0.004559312481433153, -0.0012040194123983383, 0.007994410581886768, -0.008334451355040073, -0.019930511713027954, 0.0030985281337052584, 0.011825066059827805, 0.003154044970870018, 0.0076266126707196236, 0.010388570837676525, -0.0162802841514349, -0.01465641986578703, -0.012234502471983433, -0.030173350125551224, -0.002536421176046133, 0.012019375339150429, 0.025815285742282867, -0.02430245466530323, 0.0032685482874512672, -0.013608541339635849, 0.009937496855854988, 0.00161085301078856, 0.015100554563105106, -0.016766056418418884, 0.00013434617721941322, 0.00014649046352133155, -0.02570425160229206, 0.012720273807644844, 0.004021494183689356, -0.012401052750647068, -0.00580843910574913, 0.013851427473127842, -0.022706348448991776, 0.008042988367378712, 0.04685613140463829, -0.007265753578394651, -0.0039451587945222855, 0.009430906735360622, 0.006887545809149742, 0.007925014942884445, -0.0149895204231143, 0.014684178866446018, 0.00303433695808053, -0.005399003159254789, -0.022789623588323593, -0.0006466833292506635, 0.013546084985136986, -0.005482278298586607, 0.006311559583991766, -0.011825066059827805, -0.018181733787059784, 0.01074942946434021, -0.016099855303764343, 0.022414885461330414, -0.0022692468483000994, 0.0042123328894376755, 0.011866703629493713, -0.004628708586096764, 0.014323319308459759, -0.01976396143436432, -0.0032876322511583567, -0.0005226380890235305, 0.0029493269976228476, 0.02008318156003952, -0.0004801330796908587, 0.0019396161660552025, 0.0013887860113754869, -0.01303255558013916, -0.006668948568403721, 0.0038271856028586626, -0.02040240354835987, -0.012255321256816387, -0.0013003061758354306, 0.006467700470238924, -0.005336546804755926, 0.0022276092786341906, 0.004524614661931992, -0.005399003159254789, -0.012581481598317623, -0.010922919027507305, 0.027994317933917046, 0.012956219725310802, -0.005006916355341673, 0.005860486067831516, 0.012192864902317524, -0.002116575837135315, 0.017196310684084892, -0.005562083795666695, -0.022054025903344154, -0.019444739446043968, -0.0028573772870004177, 0.018251128494739532, -0.019652927294373512, 0.0003370039921719581, 0.009222718887031078, -0.003115877276286483, -0.012012435123324394, -0.022137301042675972, -0.013178287073969841, -0.007591914851218462, 0.002657864009961486, -0.005770271643996239, -0.011845884844660759, 0.0036085883621126413, 0.005104070529341698, -9.390136983711272e-05, -0.005117949564009905, -0.031200408935546875, 0.013310139067471027, 0.0010045060189440846, 0.01075636874884367, -0.00031488403328694403, 0.010763308964669704, -0.004646057263016701, 0.01870914176106453, -0.0036571654491126537, -0.0254127886146307, 0.014038796536624432, -0.015433654189109802, -0.0073004518635571, -0.00789725687354803, 0.010666154325008392, -0.0057112849317491055, -0.025898560881614685, 0.01022895984351635, -0.013428112491965294, 0.0032616087701171637, -0.005381654482334852, -0.024149782955646515, -0.04119342193007469, -0.006526687182486057, 0.007088794372975826, 0.013983279466629028, -0.013143588788807392, 0.003023927565664053, 0.0038445345126092434, -0.0036745143588632345, -0.019833356142044067, 0.006009687669575214, 0.03136695921421051, -0.002220669761300087, 0.005381654482334852, 0.018903451040387154, -0.00494099035859108, 0.02249816060066223, -0.013129710219800472, 0.0004519409849308431, -0.027647338807582855, -0.009833402931690216, 0.03314349427819252, 0.0007668249891139567, 0.006849378347396851, -1.6129131836351007e-05, 0.012005495838820934, 0.010110986419022083, -0.012005495838820934, -0.007113082800060511, 0.00790419615805149, -0.029784733429551125, -0.015114433132112026, 0.01802906207740307, -0.016835452988743782, 0.014573144726455212, 0.0028886054642498493, -0.029812490567564964, -0.014725816436111927, -0.021262912079691887, 0.009278235957026482, -0.022040147334337234, 0.014253923669457436, 0.02252591773867607, 0.009312933310866356, 0.009916678071022034, 0.023677891120314598, 0.016807693988084793, 0.002100961748510599, -0.00918802060186863, -0.009999953210353851, 0.010874342173337936, -0.00883410219103098, 0.011769549921154976, -0.030367659404873848, -0.008716128766536713, -0.029063014313578606, 0.030784033238887787, -0.017418378964066505, -0.013761213049292564, 0.020721623674035072, 0.010721671395003796, -0.006422593258321285, 0.0013237273087725043, -0.00970155093818903, -0.0013653648784384131, -0.02571813203394413, -0.003492350224405527, 0.006103371735662222, 0.004011084791272879, 0.01340729370713234, 0.0068042706698179245, -0.0060270363464951515, -0.0042088632471859455, 0.0033743770327419043, 0.011207442730665207, -0.0187230221927166, 0.016155371442437172, -0.020513435825705528, 0.019541893154382706, -0.000379725854145363, -0.005617600400000811, -0.03272711858153343, 0.0021373946219682693, 0.0011580445570871234, 0.01623864658176899, -0.002840028377249837, -0.005791090428829193, 0.008223417215049267, 0.004111708607524633, -0.005006916355341673, -0.021013086661696434, -0.01897284761071205, -0.006849378347396851, -0.013088072650134563, -0.0007859088946133852, 0.007820921018719673, 0.029812490567564964, -0.034337107092142105, -0.0033847864251583815, -0.00189103907905519, 0.032949186861515045, 0.004406641703099012, -0.008528759703040123, -0.001917062560096383, -0.009500302374362946, 0.006984700448811054, 0.005898653995245695, -0.006040915846824646, 0.0007000314071774483, 0.015489171259105206, 0.022678589448332787, -0.0076266126707196236, -0.013483628630638123, -0.015544688329100609, -0.024746587499976158, -0.025176843628287315, 0.013337897136807442, -0.0017479099333286285, 0.0149895204231143, 0.032310742884874344, -0.0047744400799274445, 0.0058119092136621475, -0.028327418491244316, 0.0011259489692747593, -0.03206091746687889, -0.006488519255071878, 0.03239401802420616, 0.026162264868617058, 0.007168599404394627, 0.029701458290219307, 0.012227562256157398, -0.0024635554291307926, -0.00879246462136507, -0.022761864587664604, 0.009750127792358398, 0.023053327575325966, 0.012151227332651615, -0.013212984427809715, -0.024510642513632774, 0.017085278406739235, 0.009278235957026482, 0.021762562915682793, -0.0018962437752634287, 0.0021859717089682817, 0.009417027235031128, -0.0034090750850737095, 0.0009203635272569954, 0.029007498174905777, 0.01516995020210743, -0.004163755569607019, -0.0031488402746617794, 0.008174840360879898, -0.01231777761131525, -7.210670446511358e-05, 0.0033709071576595306, -0.016321921721100807, 0.005395533517003059, -0.018903451040387154, -0.011200502514839172, 0.01464254129678011, -0.0093615110963583, 0.00456972187384963, 0.015280983410775661, -0.002758488291874528, -0.005419821944087744, -0.0018112336983904243, -0.013455870561301708, -0.006176237482577562, -0.012824367731809616, -0.0043094870634377, -0.00643994240090251, 0.021582134068012238, 0.003986795898526907, -0.005475339014083147, 0.0021235153544694185, 0.0003571721608750522, 0.0038722928147763014, -0.01145726814866066, 0.02151273749768734, 0.007224116008728743, -0.005846607033163309, -0.0011797307524830103, -0.01179036870598793, 0.023414187133312225, -0.002538155997171998, -0.004430930130183697, -0.016432955861091614, 0.0049826279282569885, -0.0039659771136939526, -0.027230963110923767, 0.009118624962866306, 0.00989585928618908, -0.004038842860609293, 0.017473895102739334, -0.011498905718326569, 0.02151273749768734, 0.0019240020774304867, 0.0005924677243456244, 0.008959014900028706, 0.014503749087452888, 0.016779934987425804, 0.0260512325912714, 0.016349680721759796, -0.008959014900028706, -0.006360136903822422, -0.014351078309118748, 0.0012257056077942252, 0.014809091575443745, 0.008480182848870754, -0.0044760373421013355, 0.012206743471324444, -0.0058119092136621475, 0.007807041984051466, 0.027355875819921494, -0.0072588142938911915, -0.020568953827023506, 0.014489869587123394, 0.011200502514839172, -0.0093615110963583, 0.00898677296936512, -0.007612733636051416, 0.007911136373877525, 0.008389967493712902, 0.008501001633703709, -0.0043129571713507175, -0.014066554605960846, 0.011630757711827755, 0.0028348236810415983, 0.01694648526608944, 0.02109636180102825, 0.012026314623653889, 0.01530874241143465, 0.014337198808789253, -0.016641143709421158, -0.004035373218357563, -0.003459386993199587, 0.001969109522178769, -0.019528014585375786, -0.00606520427390933, 0.004798728507012129, 0.008674491196870804, 0.008355270139873028, -0.010985375382006168, -0.006818150170147419, 0.011332355439662933, -0.009909738786518574, -0.06839662790298462, -0.012116529047489166, -0.00456972187384963, 0.011700153350830078, -0.016099855303764343, -0.007654371205717325, -0.004968748427927494, -0.012407992035150528, 0.004854245111346245, -0.024774346500635147, 0.030117833986878395, 0.0010660949628800154, -0.0046876948326826096, -0.00041203832370229065, -0.025218481197953224, 0.0017314284341409802, 0.0045315539464354515, -0.003906990867108107, -0.0008613769896328449, 0.030201109126210213, 0.001293366658501327, -0.02713380753993988, -0.004993037320673466, -0.01658562757074833, 0.007765404414385557, 0.01023589912801981, 0.0008696177392266691, 0.01661338470876217, -0.021929113194346428, -0.01619700901210308, -0.01394164189696312, 0.0027827767189592123, -0.008487122133374214, -0.003192212665453553, 0.007355968467891216, -0.006412183865904808, -0.007675189524888992, -0.006401774473488331, -0.017446136102080345, 0.005173466634005308, 0.004836896434426308, -0.004434399772435427, 0.0015319151571020484, 0.00749476021155715, -0.012158166617155075, -0.015558566898107529, 0.020874295383691788, 0.010909040458500385, 0.006884076166898012, -0.020568953827023506, 0.0054683992639184, -0.02109636180102825, -0.004920171573758125, 0.024149782955646515, 0.006845908239483833, -0.020624469965696335, 0.019486377015709877, -0.008632853627204895, 0.006991639733314514, 0.0007303921738639474, 0.007890317589044571, -0.0057598622515797615, -0.025898560881614685, -0.0021356598008424044, 0.029368357732892036, -0.0187230221927166, -0.015405896119773388, 0.01866750419139862, -0.004080480430275202, 0.009285175241529942, -0.010319174267351627, -0.011193563230335712, 0.0016065157251432538, 0.025981836020946503, -0.009042289108037949, -0.030867308378219604, -0.0006219610222615302, 0.004222742281854153, 0.019486377015709877, -0.000759451708290726, 0.0031609844882041216, 0.006769572850316763, 0.009764007292687893, 0.009222718887031078, -0.005222043488174677, 0.0018806296866387129, -0.005405942909419537, 0.005912533029913902, -0.005183876026421785, -0.017196310684084892, -0.0033847864251583815, 0.010346933268010616, -0.000749476021155715, -0.0002154526737285778, 0.0013124505057930946, 0.01657174713909626, -0.011422569863498211, 0.0035391924902796745, 0.012963159941136837, -0.01056206040084362, -0.027675095945596695, 0.0009541940526105464, -0.0020263611804693937, 0.026606399565935135, 0.022997811436653137, -0.025246238335967064, -0.022623073309659958, 0.009486423805356026, 0.006686297710984945, 0.00723105575889349, 0.019999906420707703, 0.013212984427809715, 0.0020870824810117483, 0.008417726494371891, 0.00483342632651329, 0.014906245283782482, 0.009958315640687943, -0.006235224194824696, 0.0037092124111950397, 0.020305247977375984, 0.004604419693350792, -0.015475291758775711, -0.007605793885886669, -0.022636951878666878, -0.009764007292687893, 0.002257102634757757, -0.018153974786400795, 0.0004053156008012593, -0.023691769689321518, -0.018431559205055237, -0.012116529047489166, 0.015530808828771114, 5.29415046912618e-05, 0.025537701323628426, 0.017848633229732513, -0.0054683992639184, 0.005582902580499649, 0.011714032851159573, -0.005579432472586632, -0.00091342389350757, -0.00247396482154727, -0.012616179883480072, 0.025260118767619133, -0.01056206040084362, -0.041748590767383575, -0.040332913398742676, 0.002812270075082779, 0.007890317589044571, 0.026537002995610237, -0.00023746419174131006, -0.02499641291797161, 0.00988198071718216, 0.008584276773035526, 0.018750779330730438, -0.00670364685356617, 0.027286479249596596, -0.0015978412702679634, -0.012623119167983532, -0.012859066016972065, -0.002338642720133066, -0.01056206040084362, -0.01901448518037796, 0.012900703586637974, 0.014961762353777885, -0.0130256162956357, -0.00423315167427063, 0.007404545787721872, 0.010541241616010666, -0.021082483232021332, -0.009868101216852665, -0.016460714861750603, -0.014475991018116474, 0.008438545279204845, 0.006818150170147419, 0.011346234008669853, -0.01696036569774151, -0.004080480430275202, -0.001903183409012854, -0.0008171370718628168, -0.03269936144351959, 0.028008196502923965, 0.010062409564852715, -0.0006605624803341925, 0.006689767353236675, 0.0006822487339377403, -0.012449629604816437, -0.0012135612778365612, 0.02609287016093731, 0.006498928647488356, -0.007012458518147469, -0.01164463721215725, 0.05387900024652481, 0.02291453629732132, 0.014711936935782433, -0.015433654189109802, -0.025468306615948677, 0.0019534954335540533, -0.02573201060295105, -0.0024600857868790627, -0.014212286099791527, 0.008306692354381084, 0.004299077671021223, -0.00865367241203785, -0.008743886835873127, 0.0006653334712609649, 0.017113035544753075, 0.002040240215137601, -0.00018509195069782436, 0.011693214066326618, -0.002850437769666314, -0.00303433695808053, 0.00015483966853935272, 0.007071445230394602, -0.0025398910511285067, -0.018459316343069077, 0.014822970144450665, 0.009160262532532215, 0.01795966550707817, -0.010777187533676624, -0.00028712564380839467, 0.007591914851218462, -0.01074249017983675, -0.0065405662171542645, 0.013358715921640396, 0.008258115500211716, 0.002395894378423691, 0.0030725046526640654, 0.0018962437752634287, -0.0030256626196205616, 0.013351776637136936, 0.020235853269696236, -0.00723105575889349, 0.027369754388928413, -0.01041632890701294, 0.01426780316978693, 0.017043640837073326, -0.004819547291845083, -0.009285175241529942, 0.014052676036953926, 0.0014061350375413895, -0.02464943379163742, 0.01759880781173706, 0.004292138386517763, -0.0104232681915164, -0.0032702831085771322, 5.996241816319525e-05, -0.02151273749768734, 0.0034021353349089622, 0.00450032576918602, 0.00775846466422081, -0.027564063668251038, -0.0008136672549881041, -0.009819524362683296, 0.007203297223895788, 0.008521820418536663, -0.009097806178033352, 0.010201201774179935, 0.014934004284441471, 0.0049860975705087185, 0.028674397617578506, -0.013573843985795975, -0.004625238478183746, 0.003754319855943322, -0.013622420839965343, -0.031561270356178284, 0.0007798367296345532, 0.008854920975863934, -0.015683479607105255, -0.001572685199789703, -0.0037681988906115294, 0.012817428447306156, 0.011561362072825432, 0.005100600887089968, -0.029063014313578606, -0.018834054470062256, -0.015017279423773289, -0.01464254129678011, -0.02249816060066223, -0.013837547972798347, 0.008223417215049267, -0.014684178866446018, -0.008202598430216312, 0.0012907643103972077, 0.017501654103398323, -0.006207465659826994, -0.00651974743232131, -0.009278235957026482, 0.008535698987543583, 0.019305948168039322, -0.011221321299672127, -0.018792416900396347, -0.005516976583749056, -0.005156117491424084, 0.008681430481374264, 0.005676587112247944, 0.01128377765417099, 0.008487122133374214, -0.013830608688294888, -0.03522537276148796, 0.004382352810353041, 0.012734153307974339, -0.027661217376589775, -0.012477387674152851, 0.007765404414385557, -0.009993013925850391, 0.00789725687354803, -0.00898677296936512, -0.0011190093355253339, 0.0035773601848632097, -0.003128021489828825, -0.02222057618200779, -0.010659215040504932, 0.058014996349811554, -0.0062386938370764256, 0.007543337531387806, -0.00027996921562589705, -0.013157468289136887, -0.006242163944989443, 0.01165851578116417, 0.0007308258791454136, -0.006825089454650879, -0.0008600758155807853, -0.02154049649834633, 0.0182650089263916, -0.0010678299004212022, -0.007002049125730991, -0.003903520992025733, 0.0036120580043643713, -0.016155371442437172, 0.011304596439003944, -0.016155371442437172, 0.020860416814684868, -0.013643239624798298, -0.008896558545529842, -0.018861813470721245, 0.007244934793561697, -0.00019300742133054882, -0.006127660628408194, -0.009770946577191353, -0.009729309007525444, 0.003917400259524584, -0.02044404111802578, -0.012061012908816338, -0.021082483232021332, 0.01834828406572342, -0.0003959905297961086, -0.00775846466422081, 0.008209538646042347, 0.014448232017457485, -0.029756974428892136, -0.013518326915800571, 0.0008657142170704901, 0.02646760642528534, 0.009875040501356125, -0.020360765978693962, -0.002586733317002654, 0.006203996017575264, 0.036446742713451385, 0.0049340506084263325, -0.010131805203855038, 0.00546492962166667, -0.015988821163773537, 0.014739695005118847, 0.0006228284910321236, -0.009805644862353802, -0.010013832710683346, -0.002668273402377963, -0.02673131227493286, 0.0021981161553412676, -0.006020097061991692, -0.018167853355407715, -0.0021981161553412676, 0.011290717869997025, -0.0020003376994282007, 0.02253979817032814, 0.01090210024267435, -0.007813981734216213, -0.020235853269696236, 0.005433701444417238, -0.00299790408462286, 0.04149876534938812, 0.02076326124370098, 0.017113035544753075, -0.008917377330362797, 0.00030772757600061595, -0.017862511798739433, 0.0023039449006319046, -0.004510735161602497, -0.01265781745314598, -0.003416014602407813, -0.006766103208065033, -0.0048820036463439465, 0.028063714504241943, 0.031533509492874146, -0.016668902710080147, 0.01411513239145279, 0.00625257333740592, 0.0012178985634818673, -0.0008683165651746094, 0.018792416900396347, -0.008625914342701435, 0.009548880159854889, -0.0002335606695851311, -0.022401005029678345, 0.005503097083419561, 0.012296958826482296, 0.008077685721218586, 0.0010565529810264707, 0.00866061169654131, -0.003417749423533678, 0.02575976960361004, 0.0014694588026031852, -0.02184583805501461, 0.01653010956943035, 0.000597672420553863, 0.0039659771136939526, -0.0001898629270726815, 0.009590517729520798, -0.0032511993777006865, 0.005832727998495102, -0.008910437114536762, -0.010110986419022083, 0.019611289724707603, 0.0030829140450805426, -0.02850784733891487, -0.004115178715437651, -0.006714056245982647, 0.002742874203249812, 0.01625252701342106, -0.008251176215708256, -0.0020784081425517797, 0.002395894378423691, -0.014920124784111977, 0.007224116008728743, -0.0026856225449591875, -0.004590540658682585, 0.01004853006452322, -0.010832704603672028, -0.0031748637557029724, 0.007869498804211617, 0.011672395281493664, -0.01530874241143465, -0.00028712564380839467, 0.022040147334337234, -0.01619700901210308, 0.0008088963222689927, 0.010263658128678799, 0.004427460487931967, -0.0076821292750537395, 0.01217898540198803, 0.017432257533073425, 0.003273752983659506, 0.007203297223895788, -0.005371245089918375, -0.023899957537651062, -0.017348982393741608, -0.01979171857237816, -0.0146009037271142, -0.004809137899428606, 0.018070699647068977, -0.02115187980234623, 0.0015536013524979353, -0.0014677238650619984, -0.009770946577191353, 0.012907642871141434, 0.0037647292483597994, -0.010062409564852715, -0.014337198808789253, 0.008015229366719723, -0.010430208407342434, -0.021734805777668953, 0.0012820897391065955, -0.008591216057538986, 0.01800130307674408, -0.0073698475025594234, 0.007980532012879848, 0.01128377765417099, -0.007113082800060511, 0.00932681281119585, 0.021332308650016785, 0.008785524405539036, 0.017848633229732513, -0.011811187490820885, -0.006235224194824696, -0.010478785261511803, -0.021776443347334862, -0.010853523388504982, 0.00828587356954813, -0.005787620320916176, 0.01356690376996994, -0.005777210928499699, 0.009868101216852665, -0.011970797553658485, 0.012921522371470928, 0.015225467272102833, 0.018056821078062057, 0.008022169582545757, -0.00107563694473356, 0.012539844028651714, 0.008036048151552677, -0.01977784000337124, -0.002229344332590699, 0.047772157937288284, -0.022664710879325867, 0.007376787252724171, -0.00036107568303123116, 0.00260234740562737, 0.011832006275653839, 0.021637650206685066, 0.0017461751122027636, 0.000983687350526452, -0.031200408935546875, -0.017432257533073425, 0.004694634582847357, 0.006075613666325808, -0.006387895438820124, -0.017015881836414337, 0.015142192132771015, -0.007529458496719599, 0.011360113508999348, -0.005034674424678087, 0.03983326256275177, 0.014240045100450516, 0.011179683730006218, 0.012234502471983433, 0.004340715240687132, -0.01218592468649149, -0.0024600857868790627, 0.013837547972798347, 0.01412901096045971, -0.01937534287571907, -0.030589725822210312, -0.009201900102198124, 0.004514205269515514, -0.010333053767681122, 0.012685575522482395, -0.012255321256816387, -0.0050381445325911045, -0.011963858269155025, 0.0003962073824368417, 0.008348329924046993, -0.007175539154559374, 0.014149829745292664, 0.008063807152211666, 0.017765358090400696, -0.020874295383691788, -0.004562782123684883, 0.016835452988743782, 0.013775091618299484, -0.0010348667856305838, -0.0021235153544694185, -0.0056557683274149895, 0.013455870561301708, -0.012095710262656212, -0.0075780353508889675, 0.000617623794823885, -0.00348194083198905, -0.007002049125730991, -0.010624516755342484, 0.014031857252120972, 0.01479521207511425, 0.011339294724166393, 0.000939447374548763, -0.001904918230138719, -0.018500953912734985, 0.021651530638337135, -0.013337897136807442, 0.006523217540234327, 0.0044239903800189495, -0.005218573845922947, -0.00013477991160470992, 0.008160960860550404, -0.02467719279229641, -0.0014035326894372702, -0.008903497830033302, 0.04199841618537903, -0.010339993052184582, -0.012990918010473251, -0.016016580164432526, -0.0025190722662955523, -0.001103395246900618, 0.012630059383809566, -0.0060270363464951515, -0.004174164962023497], "d3f390f8-3dbb-458e-8d82-9c370e27ebca": [-0.014097090810537338, -0.009591350331902504, -0.013054893352091312, 0.032723430544137955, -0.012475023977458477, -0.0016348002245649695, 0.04294166713953018, 0.03303687274456024, -0.025670966133475304, 0.03645339980721474, -0.0106178754940629, 0.016424404457211494, 0.012490696273744106, -0.01749010942876339, 0.007710693404078484, 0.01799161732196808, -0.004752576816827059, -0.015538927167654037, -0.0017797674518078566, -0.038898251950740814, 0.03513693809509277, -0.013462369330227375, -0.0547584593296051, 0.0250284094363451, -0.008987972512841225, 0.02407240867614746, -0.024182112887501717, 0.019950635731220245, -0.03356972709298134, -0.0053285276517271996, 0.014089254662394524, 0.022379817441105843, -0.005242330953478813, 0.0018071937374770641, 0.012130237184464931, -0.038647498935461044, 0.0077498736791312695, -0.0005970105994492769, 0.0018600871553644538, 0.0011460252571851015, -0.010625711642205715, 0.009395448490977287, 0.04366258531808853, -0.024761982262134552, -0.041687894612550735, -0.0014624065952375531, -0.009998825378715992, 0.012608237564563751, -0.017631158232688904, -0.04087294265627861, 0.021361127495765686, 0.006351135205477476, -0.004325510933995247, -0.012012695893645287, 0.026172475889325142, -0.028053132817149162, 0.01864984817802906, 0.06193630024790764, 0.0064530037343502045, -0.06638719141483307, 0.006253184285014868, -0.03447870910167694, 0.016706502065062523, -0.029134510084986687, 0.0336010679602623, -6.348441092995927e-05, 0.024150768294930458, -0.011981351301074028, -0.01063354779034853, 0.028021788224577904, 0.025122441351413727, 0.013007876463234425, -0.036954909563064575, 0.009669710882008076, 5.316896204021759e-05, 0.022599227726459503, 0.01745876483619213, 0.01050817035138607, 0.013094073161482811, -0.01557810790836811, 0.010038006119430065, 0.0018875134410336614, 0.04256553575396538, 0.01155820395797491, 0.05428829416632652, 0.024950047954916954, -0.028742706403136253, -0.04845825955271721, -0.02195666916668415, -0.014708303846418858, -0.002824903465807438, 0.011934335343539715, -0.02407240867614746, 0.019731225445866585, 0.003829879453405738, 0.01653410866856575, 0.057548101991415024, 0.011456334963440895, -0.0075382995419204235, -0.02929123118519783, -0.006601889152079821, 0.012349646538496017, -0.022285783663392067, 0.017584141343832016, 0.023210439831018448, -0.01559378020465374, 0.003541903803125024, 0.018258044496178627, -0.021893979981541634, -0.002303804736584425, -0.007111233659088612, -0.01194217149168253, 0.007879168726503849, 0.013462369330227375, -0.047392554581165314, -0.02788073755800724, -0.0444461926817894, -0.031563691794872284, -0.013415352441370487, -0.010994006879627705, 0.04234612360596657, -0.011150727979838848, -0.00038910986040718853, -0.012913843616843224, -0.028037460520863533, 0.01288249995559454, 0.022614900022745132, 0.03234729915857315, 0.01891627348959446, 0.006774283014237881, -0.002454648958519101, -0.030654707923531532, 0.02454257197678089, 0.006778201088309288, 0.01673784665763378, 0.01868119090795517, -0.006985856685787439, 0.04231477901339531, -0.019198372960090637, 0.013619090430438519, -0.04961799830198288, -0.011934335343539715, -0.018273716792464256, 0.03498021885752678, 0.023947030305862427, -0.018132666125893593, -0.010680563747882843, 0.03545038402080536, -0.010531678795814514, 0.04200133681297302, -0.0827489048242569, -0.026595622301101685, -0.021157389506697655, 0.006535282824188471, 0.02578067220747471, -0.03943110629916191, 0.021831292659044266, 0.005861380603164434, 0.029385263100266457, 0.03092113323509693, 0.020264077931642532, -0.05071504786610603, -0.0006435372633859515, 0.03139129653573036, 0.018132666125893593, 0.013548566028475761, 0.0733456164598465, 0.009129022248089314, -0.03098382242023945, 0.02413509599864483, -0.008024136535823345, -0.015092271380126476, 0.017881913110613823, 0.024620933458209038, -0.0435372069478035, -0.005673314910382032, 0.036014579236507416, 0.06337814033031464, 0.01430082879960537, -0.020389454439282417, -0.03121890500187874, 0.01678486354649067, 0.005269757471978664, 0.01537436991930008, 0.006927086040377617, 0.04786271974444389, 0.009630530141294003, 0.0042393142357468605, 0.011997023597359657, 0.00026716102729551494, -0.004670297726988792, 0.001525095198303461, -0.008020218461751938, 0.018085651099681854, -0.00425890414044261, -0.016487091779708862, -6.076015415601432e-05, -0.0010519924107939005, 0.005497003439813852, 0.013266467489302158, -0.0063315448351204395, -0.0325353629887104, -0.01076676044613123, 0.030372608453035355, -0.032692085951566696, 0.04827019199728966, -0.013995221816003323, -0.03173608332872391, 0.022755948826670647, -0.01938643865287304, 0.03281746432185173, -0.043317798525094986, -0.03256670758128166, -0.0023684522602707148, 0.007918349467217922, 0.0017621363513171673, -0.0006004389142617583, 0.034384675323963165, -0.027065787464380264, 0.009779416024684906, -0.0012968695955350995, 0.027238180860877037, -0.01864984817802906, -0.04037143290042877, -0.05554206669330597, -0.033914513885974884, -0.022270111367106438, 0.026423228904604912, -0.004125691018998623, 0.025623949244618416, 0.0160796158015728, -0.020969323813915253, -0.011519023217260838, -0.02031109482049942, -0.02744191884994507, 0.033413004130125046, 0.06350351125001907, -0.018258044496178627, 0.003402813570573926, -0.0055401017889380455, 0.0057281674817204475, 0.008251382037997246, -0.014426205307245255, -0.011628728359937668, 0.007695021107792854, 0.04413274675607681, -0.011362302117049694, 0.05839439481496811, -0.0033068216871470213, -0.0016063944203779101, -0.00021292072779033333, 0.0215021762996912, -0.012239942327141762, 0.027771033346652985, -0.03751910477876663, 0.03284880891442299, 0.026877721771597862, -0.005830036476254463, -0.008972300216555595, -0.031798772513866425, 0.023492539301514626, 0.03209654614329338, 0.003679034998640418, 0.002460526069626212, 0.03689222037792206, -0.01912001147866249, 0.04886573553085327, -0.028774050995707512, 0.007025036960840225, 0.026736672967672348, 0.029636017978191376, 0.017834896221756935, -0.003510559443384409, 0.02059319242835045, 0.010547351092100143, -0.004580182954668999, 0.007757709827274084, 0.01988794654607773, 0.03444736450910568, 0.01982525736093521, -0.020499160513281822, -0.00395329762250185, 0.006257102359086275, -0.0005676253349520266, 0.04328645393252373, -0.023226112127304077, -0.03491752967238426, -0.016722174361348152, -0.04491635411977768, -0.01676919125020504, 0.0006068057264201343, 0.016847550868988037, 0.012898172251880169, 0.014661287888884544, 0.011103712022304535, 0.011660072952508926, 0.000684676633682102, 0.005610626190900803, 0.021643226966261864, 0.03679818660020828, 0.019433453679084778, -0.023994047194719315, -0.018524469807744026, -0.03240998834371567, 0.026423228904604912, -0.013250795193016529, 0.041969992220401764, 0.02173725888133049, -0.040778908878564835, 0.03157936409115791, 0.038866907358169556, -0.015233321115374565, 0.0007385496282950044, -0.012373154982924461, -0.007808644324541092, -0.004423461854457855, -0.0051247901283204556, -0.014026566408574581, -0.007894841022789478, -0.05124789848923683, 0.00919954665005207, -0.0038318384904414415, -0.08801474422216415, 0.03733104094862938, 0.052595704793930054, -0.03849077597260475, 0.022724604234099388, -0.01168358139693737, -0.04043412208557129, 0.004638953600078821, -0.010327940806746483, -0.03598323464393616, -0.02620381861925125, 0.017631158232688904, -0.028162837028503418, -0.03157936409115791, -0.04563727229833603, -0.03190847858786583, -0.010343613103032112, -0.05077773705124855, -0.025874704122543335, 0.006981938611716032, 0.03670415282249451, -0.013595581986010075, 0.018148338422179222, 0.018132666125893593, 0.03159503638744354, 0.013752303086221218, -0.03184578940272331, 0.007244447246193886, 0.0009271050803363323, -0.0038690597284585238, 0.038396745920181274, -0.01357207354158163, 0.024417195469141006, -0.022583555430173874, -0.022160407155752182, 0.02523214742541313, 0.012616073712706566, -0.014598598703742027, -0.019072994589805603, -0.0330682173371315, -0.005465659312903881, 0.003259805263951421, -0.010672727599740028, 0.01443404145538807, -0.002164714504033327, -0.020875291898846626, -0.026391884312033653, 0.002329271985217929, -0.0345100536942482, 0.024213457480072975, -0.008839087560772896, 0.0004652666684705764, -0.018618503585457802, -0.05080908164381981, 0.03924303874373436, 0.0071347421035170555, 0.001570152584463358, 0.023288801312446594, 0.011722761206328869, -0.004286330658942461, 0.00526192132383585, 0.03642205521464348, 0.022630570456385612, -0.009849940426647663, 0.006711594294756651, -0.021157389506697655, -0.03620264679193497, -0.0224895216524601, -0.014982566237449646, 0.03309956192970276, -0.028711361810564995, -0.007060299627482891, -0.015201976522803307, -0.013054893352091312, -0.005622380413115025, -0.018759552389383316, 0.0004564510891214013, -0.02410375326871872, -8.680897008161992e-05, -0.02766132913529873, -0.019433453679084778, -0.025890376418828964, 0.005892724730074406, -0.005779101978987455, -0.008509972132742405, -0.00070965412305668, 0.015170631930232048, 0.0198722742497921, -0.0022940095514059067, 0.031124871224164963, 0.04375661537051201, 0.02342985011637211, 0.03407123312354088, -0.01985660195350647, -0.013180270791053772, 0.05914665758609772, -0.0077263652347028255, -0.027927754446864128, 0.020452143624424934, 0.033883169293403625, 0.0031422642059624195, 0.006915332283824682, 0.0011950007174164057, 0.028883755207061768, -0.016894567757844925, -0.0011538614053279161, -0.010664891451597214, -0.011315285228192806, -0.0013840459287166595, 0.05287780240178108, -0.010758924297988415, 0.009450300596654415, -0.002693649148568511, -0.0009001686121337116, 0.001902206102386117, 0.002944403560832143, 0.0035125184804201126, 0.012263449840247631, -0.029416607692837715, 0.014551582746207714, 0.004874035716056824, 0.019057322293519974, -0.06563492864370346, -0.03491752967238426, -0.03168907016515732, 0.006382479332387447, 0.024965720251202583, -0.04698507860302925, 0.007934020832180977, 0.010359285399317741, -0.04842691496014595, -0.011652236804366112, -0.0016122715314850211, -0.014198959805071354, 0.0006190495332702994, 0.01584453508257866, 0.035763826221227646, -0.04178192839026451, -0.029667362570762634, 0.020640209317207336, 0.03372644633054733, -0.0009011480724439025, 0.02477765455842018, -0.01885358616709709, 0.004153117537498474, 0.01654978096485138, 0.0019727307371795177, 0.026595622301101685, 0.008267054334282875, -0.0015172591665759683, -0.0071347421035170555, 0.027943426743149757, 0.043380483984947205, 0.009450300596654415, -0.022959686815738678, 0.008541316725313663, -0.002064804546535015, -0.02813149243593216, -0.012913843616843224, -0.019198372960090637, 0.02973005175590515, -0.009082005359232426, 0.01767817512154579, -0.007361988071352243, -0.007659758906811476, -0.01844611018896103, 0.03403988853096962, 0.012177253141999245, 0.029385263100266457, -0.020264077931642532, 0.0017474436899647117, 0.0196058489382267, -0.02316342480480671, -0.046671636402606964, -0.008580497466027737, -0.02905614860355854, -0.025435883551836014, -0.03717431798577309, 0.020499160513281822, 0.010132038965821266, 0.004799593240022659, -0.0034596251789480448, -0.02554558962583542, 0.028758378699421883, -0.014316500164568424, 0.035763826221227646, -0.017662502825260162, -0.025812014937400818, -0.03598323464393616, 0.014520238153636456, -0.02054617740213871, -0.005571445915848017, 0.017646830528974533, 0.038177333772182465, -0.012968696653842926, -0.014269484207034111, 0.04068487882614136, -0.009144694544374943, -0.013195942156016827, -0.021298440173268318, -0.027598639950156212, -0.00895662885159254, -0.007220938801765442, -0.010852957144379616, 0.020170046016573906, -0.01965286396443844, 0.010241744108498096, -0.015327353961765766, -0.009685383178293705, 0.012921679764986038, -0.012702270410954952, 0.016831878572702408, 0.024417195469141006, -0.008141676895320415, -0.0011597384000197053, 0.01703561656177044, 0.016831878572702408, -0.00018133156117983162, -0.040277402848005295, 0.03335031494498253, -0.026376212015748024, -0.008306235074996948, -0.00875289086252451, 0.033663757145404816, 0.009074169211089611, 0.016040436923503876, -0.006527446676045656, 0.03419661149382591, -0.027551623061299324, 0.04109235480427742, -0.0033185759093612432, 0.018007289618253708, 0.010954826138913631, -0.02789640985429287, -0.00033988954965025187, -0.025216475129127502, -0.01821102760732174, -0.009332760237157345, -0.015938566997647285, 0.03139129653573036, 0.01135446596890688, 0.008721546269953251, 0.021079029887914658, 0.00981075968593359, -0.022991031408309937, 0.020608864724636078, -0.018022961914539337, 0.027097132056951523, 0.017066961154341698, 0.0012939311563968658, 0.016690829768776894, 0.012357482686638832, -0.00596324959769845, 0.03993261605501175, -0.004525330848991871, -0.006284528411924839, -0.025576934218406677, -0.011041022837162018, 0.040747564285993576, -0.002930690301582217, -0.0035673710517585278, -0.002893469063565135, -0.007299299351871014, 0.028178509324789047, -0.015601616352796555, -0.018352076411247253, -0.003976805601269007, -0.004215805791318417, 0.013948204927146435, 0.028068803250789642, -0.03435333073139191, 0.020185716450214386, -0.028695689514279366, 0.016126632690429688, 0.005348118022084236, 0.027003098279237747, 0.028194181621074677, 0.017631158232688904, 0.016487091779708862, 0.010837285779416561, 0.014363517053425312, 0.005003330763429403, -0.025576934218406677, 0.03115621581673622, 0.0025643541011959314, 0.018555814400315285, 0.009285743348300457, 0.01651843637228012, 0.022740276530385017, -0.011033186689019203, 0.03322494029998779, 0.001619128044694662, 0.014567255042493343, 0.021157389506697655, 0.017129650339484215, 0.035042908042669296, 0.00697018438950181, 0.0024095915723592043, 0.03802061453461647, -0.03657877817749977, 0.04128041863441467, 0.015648633241653442, 0.0035203546285629272, 0.034635432064533234, -0.01745876483619213, 0.009434628300368786, -0.008063316345214844, -0.0006572504062205553, -0.004392117261886597, -0.0020804766099900007, 0.018790896981954575, -0.01574266515672207, -0.013070565648376942, 0.007518709637224674, 0.012858991511166096, -0.011072367429733276, 0.011166400276124477, 0.01015554741024971, 0.007491283118724823, -0.003765231929719448, -0.011009679175913334, 0.03899228572845459, -0.005003330763429403, 0.005391216371208429, -0.005618462339043617, 0.0014673041878268123, 0.03842809051275253, 0.020436471328139305, -0.012827646918594837, -0.00020655391563195735, 0.021909652277827263, 0.021784275770187378, 0.004940642509609461, -0.013517221435904503, -0.007373742293566465, -0.020154373720288277, -0.005685069132596254, 0.014018730260431767, 0.023069391027092934, -0.022082045674324036, 0.02126709558069706, 0.0012723819818347692, -0.0002517337561585009, -0.006296282634139061, 0.02886808291077614, -0.010179055854678154, 0.02571798302233219, 0.016204994171857834, 0.01769384741783142, 0.013760139234364033, 0.015429222956299782, 0.0034557071048766375, 0.003050190396606922, -0.019558832049369812, -0.008337578736245632, 0.022536538541316986, 0.02720683626830578, -0.016612470149993896, -0.021596210077404976, -0.04425812512636185, -0.03197116777300835, 0.023758964613080025, -0.0023273129481822252, -0.005473494995385408, -0.0061317249201238155, 0.00543823279440403, -0.02741057425737381, 0.0071229878813028336, -0.00898013636469841, 0.00993613712489605, -0.00955216959118843, 0.015209812670946121, -0.0018728207796812057, -0.0018248248379677534, 0.021549193188548088, -0.027488935738801956, 0.017599813640117645, -0.021376799792051315, -0.037895236164331436, -0.026141131296753883, -0.0009231870644725859, -0.03479215130209923, 0.006605807226151228, -0.01086079329252243, -0.021784275770187378, -0.022097717970609665, -0.02031109482049942, 0.03234729915857315, 0.01965286396443844, 0.003120715031400323, -0.006997610908001661, 0.010296596214175224, 0.010492498055100441, 0.008682365529239178, -0.017881913110613823, 0.02408808097243309, 0.002844493603333831, 0.030074838548898697, -0.018712535500526428, 0.026626966893672943, -0.019245387986302376, -0.011025351472198963, -0.0345100536942482, 0.01988794654607773, -0.0009574698633514345, -0.00679387291893363, 0.009708891622722149, -0.0031618543434888124, 0.030764412134885788, -0.008494299836456776, 0.009669710882008076, 0.014935550279915333, 0.011550367809832096, -0.030811429023742676, -0.020640209317207336, 0.03667280822992325, 0.008729382418096066, 0.004415625706315041, 0.031312938779592514, -0.008596168830990791, 0.010907810181379318, -0.005160052329301834, -0.019308077171444893, -0.0200603399425745, 0.03714297339320183, 0.017145322635769844, -0.02507542446255684, -0.01913568377494812, 0.03645339980721474, -0.021204406395554543, 0.037456415593624115, -0.00923089124262333, -0.02194099687039852, 0.02692473866045475, 0.03338165953755379, 0.02125142328441143, -0.005638052709400654, 0.03148533031344414, -0.020154373720288277, 0.021784275770187378, 0.012608237564563751, 0.0067468564957380295, -0.004345100838690996, 0.010868629440665245, 0.007397250272333622, 0.02034243941307068, 0.02620381861925125, 0.024730637669563293, 0.0435372069478035, 0.024448540061712265, 0.02007601223886013, 0.03186146169900894, -0.027724016457796097, -0.030325591564178467, -0.002239157212898135, -0.031062183901667595, -0.03150100260972977, -0.01700427196919918, -0.013031384907662868, -0.03219057619571686, 0.0016299026319757104, -0.022614900022745132, 0.007432512938976288, -0.03842809051275253, 0.03256670758128166, -0.022317128255963326, -0.003159895306453109, 0.025185130536556244, 0.019558832049369812, 0.0002713239227887243, -0.004298084415495396, 0.03545038402080536, 0.019511815160512924, -0.03871018812060356, 0.0026407556142657995, 0.016957256942987442, -0.016157977283000946, 0.014465386047959328, 0.0060494462959468365, -0.017364731058478355, 0.022113390266895294, 0.04748658835887909, 0.0196058489382267, -0.006770364940166473, -0.02410375326871872, -0.002466403180733323, -0.03068605251610279, 0.009661874733865261, -0.005015084985643625, 0.004086510743945837, -0.005406888667494059, 0.02388434298336506, -0.02197234146296978, 0.01839909330010414, 0.010374956764280796, -0.004074756521731615, 0.025890376418828964, -0.00010168525477638468, -0.02437017858028412, -0.0008399288053624332, 0.02714414708316326, 0.0032049526926130056, 0.023335818201303482, -0.004207969643175602, -0.010241744108498096, 0.0037573957815766335, -0.009834268130362034, -0.0075500537641346455, -0.012208597734570503, -0.013352664187550545, -0.0292755588889122, 0.016643812879920006, 0.003545821877196431, 0.037425071001052856, 0.003943502437323332, 0.015186304226517677, -0.019245387986302376, 0.023304473608732224, -0.0048309373669326305, -0.06372292339801788, -0.007879168726503849, 0.0034596251789480448, -0.011863810941576958, 0.011041022837162018, 0.009646202437579632, 0.010719744488596916, 0.02831955812871456, 0.06463190913200378, 0.009277907200157642, -0.014245975762605667, 0.007087725680321455, 0.000172638421645388, -0.004490068182349205, 0.021627554669976234, -0.002654468873515725, 0.01816401071846485, -0.01633037067949772, 0.010468989610671997, 0.02195666916668415, 0.013407516293227673, -0.027332212775945663, 0.027535950765013695, -0.015186304226517677, -0.01816401071846485, 0.003389100544154644, 0.017317716032266617, -0.004682051949203014, 0.0006832074141129851, -0.013799319975078106, 0.004968068562448025, -0.006723348516970873, 0.017411747947335243, 0.002329271985217929, -0.000539709348231554, -0.01548407506197691, -0.007714611478149891, -0.006574463099241257, 0.0008076049853116274, 0.013744467869400978, 0.015852371230721474, -0.02977706678211689, 0.024730637669563293, -0.0048583634197711945, -0.015107943676412106, -0.004881871864199638, 0.009607022628188133, -0.006695921998471022, 0.0065431189723312855, -0.0028895509894937277, 0.010805941186845303, -0.0014839558862149715, -0.018571486696600914, -0.013744467869400978, 0.022802965715527534, -0.0013282139552757144, -0.011041022837162018, 0.0007556910277344286, -0.0031873215921223164, 0.005105199757963419, -0.03780120238661766, -0.045919373631477356, -0.0049249702133238316, 0.06826784461736679, -0.07108882814645767, -0.0032911496236920357, -0.0035673710517585278, 0.014551582746207714, 0.024182112887501717, 0.012788467109203339, 0.024714965373277664, 0.014865025877952576, -0.001513341092504561, 0.031798772513866425, 0.02526349015533924, 0.015601616352796555, -0.029620345681905746, 0.0037142974324524403, -0.014018730260431767, 0.006198331713676453, -0.0014849352883175015, 0.023711949586868286, 0.0017719314200803638, -0.0026270425878465176, -0.003963092807680368, -0.026736672967672348, -0.015523255802690983, -0.02341417782008648, 0.019668536260724068, 0.013901188969612122, 0.0007904635858722031, 0.02455824427306652, -0.016628140583634377, 0.026736672967672348, 0.0009329821332357824, -0.023320145905017853, 0.0006009286735206842, -0.02645457349717617, -0.0031363870948553085, 0.00042167853098362684, 0.003334247972816229, 0.05334796756505966, -0.010296596214175224, -0.010273088701069355, -0.01170708891004324, 0.02552991732954979, 0.031563691794872284, -0.0026290016248822212, -0.025937393307685852, 0.00862751342356205, 0.012114564888179302, 0.012271285988390446, -0.002540845889598131, 0.025921721011400223, 0.0033009445760399103, -0.010649220086634159, -0.00685656163841486, 0.0010079145431518555, 0.014974730089306831, 0.006178741343319416, 0.039368417114019394, -0.01629902608692646, 0.015092271380126476, -0.017364731058478355, 0.005920151248574257, -0.0063432990573346615, -0.014308664947748184, -0.0196058489382267, -0.00784782413393259, -0.02784939482808113, 0.005806528031826019, -0.0019110216526314616, 0.027818050235509872, -0.009434628300368786, -0.010531678795814514, -0.028476279228925705, -0.012153745628893375, -0.04137445241212845, -0.00567723298445344, 0.020734243094921112, -0.028288213536143303, -0.00884692370891571, -0.017427420243620872, -0.01336050033569336, -0.017803551629185677, -0.010390629060566425, 0.020452143624424934, -0.0383027121424675, 0.009465972892940044, 0.023994047194719315, -0.029181526973843575, -0.00041898488416336477, 0.0011626769555732608, 0.013203778304159641, -0.02977706678211689, -0.016009092330932617, -0.016675157472491264, 0.004811346996575594, -0.040966976433992386, 0.005657642614096403, 0.01301571261137724, -0.03645339980721474, 0.03755044937133789, 0.04607609286904335, 0.030764412134885788, 0.01072758063673973, -0.0212357509881258, -0.02383732609450817, 0.009975317865610123, -0.009042825549840927, -0.03372644633054733, -0.010147711262106895, -0.024150768294930458, 0.0033303298987448215, 0.030811429023742676, 0.004266740288585424, -0.022802965715527534, 0.014723976142704487, 0.04707911238074303, -0.006280610337853432, -0.02437017858028412, -0.0018561691977083683, -0.025874704122543335, -0.011025351472198963, 0.007675430737435818, -0.0053285276517271996, -0.00011399033974157646, 0.012349646538496017, 0.00037515186704695225, -0.007887004874646664, -0.030795756727457047, -0.002386083360761404, -0.004399953410029411, 0.01676919125020504, -0.013705287128686905, -0.010758924297988415, -0.09133723378181458, -0.015013910830020905, -0.014575091190636158, 0.015766173601150513, 0.007800808176398277, -0.007930103689432144, 0.01587587781250477, 0.0014271442778408527, -0.035105593502521515, 0.001123496564105153, 0.014097090810537338, -0.008658858016133308, 0.018242372199892998, 0.01428515650331974, -0.005242330953478813, 0.00993613712489605, -0.012522040866315365, -0.012600401416420937, -0.0004958763020113111, 0.006539200898259878, -0.011299613863229752, 0.01511577982455492, 0.022144734859466553, -0.014128434471786022, -0.019010307267308235, 0.041499827057123184, -0.01584453508257866, 0.0002688751555979252, 0.001292951637879014, -0.03197116777300835, 0.0017533208010718226, 0.007405086420476437, -0.01474748458713293, -0.02930690348148346, -0.0023900014348328114, 0.022144734859466553, 0.0037456415593624115, 0.0005994593957439065, 0.009536497294902802, 0.018352076411247253, -0.003377346321940422, -0.007338480092585087, -0.007048545405268669, -0.0040394943207502365, 0.023288801312446594, -0.014426205307245255, -0.0051365443505346775, -0.026815032586455345, -0.017646830528974533, 0.008893939666450024, -0.005316773895174265, 0.002203894779086113, -0.024244802072644234, -0.015617288649082184, -0.0015838657272979617, -0.0033009445760399103, 0.032974183559417725, -0.012443679384887218, 0.00530893774703145, 0.019981980323791504, 0.03899228572845459, 0.01817968301475048, 0.011667909100651741, -0.00613956106826663, -0.026329196989536285, -0.005066019482910633, 0.0363280214369297, 0.03783254697918892, 0.0304509699344635, 0.006206167861819267, 0.01700427196919918, -0.0080398079007864, -0.008400266990065575, 0.017082633450627327, 0.0002378982026129961, 0.012475023977458477, 0.018367748707532883, 0.020405126735568047, 0.013854172080755234, -0.0025192967150360346, -0.03150100260972977, 0.012459351681172848, 0.01796027272939682, -0.007859578356146812, -0.022975359112024307, -0.005767347756773233, 0.0024526899214833975, -0.011613056063652039, 0.0146377794444561, -0.011542531661689281, 0.038898251950740814, 0.000627865141723305, 0.03096815012395382, 0.0060376920737326145, -0.02054617740213871, 0.05074639245867729, -0.01593073084950447, 0.01723935455083847, -0.007965365424752235, -0.00672726659104228, 0.005732085555791855, -0.029683034867048264, 0.005857462529093027, -0.01935509406030178, -0.011793285608291626, -0.005297183524817228, 0.005908397026360035, 0.009654038585722446, -0.02076558582484722, -0.008071152493357658, -0.018383421003818512, -0.014206795953214169, -0.032942838966846466, 0.007514791563153267, -0.011965679936110973, 0.0027465426828712225, -0.013744467869400978, -0.01170708891004324, -0.013673942536115646, -0.0011724720243364573, -0.006895741913467646, 0.031046511605381966, -0.008987972512841225, -0.0072405291721224785, 0.013336991891264915, -0.004595855250954628, 0.0002737727190833539, -0.016424404457211494, 0.009309251792728901, 0.016941584646701813, -0.014010894112288952, -0.014567255042493343, 0.002556517953053117, 0.014277320355176926, -0.02051483280956745, 0.02363358810544014, 0.03538769483566284, -0.014292992651462555, 0.050589669495821, -0.04153117164969444, 0.010163383558392525, 0.01087646558880806, -0.0027778870426118374, 0.01821102760732174, -0.02692473866045475, 0.006010266020894051, -0.01405007392168045, -0.0186968632042408, 0.009481645189225674, -0.013971713371574879, 2.0722733097500168e-05, -0.0016974887112155557, 0.027081459760665894, -0.011252596974372864, -0.010798105038702488, -0.03303687274456024, -0.004458724055439234, 0.004870117641985416, -0.007150414399802685, -0.02578067220747471, -0.03231595456600189, -0.003571289125829935, 0.02571798302233219, 0.000803686969447881, 0.00797320157289505, -0.004137445241212845, -0.010124202817678452, -0.0023155587259680033, 0.020436471328139305, 0.015805354341864586, 0.011401482857763767, 0.0005852564936503768, 0.0037632728926837444, -0.012584729120135307, 0.009058496914803982, -0.01476315688341856, 0.01017121970653534, 0.0002833229082170874, 0.025623949244618416, -0.005720331333577633, 0.004921052139252424, 0.009630530141294003, -0.006927086040377617, 0.030403953045606613, -0.00825921818614006, -0.004141363315284252, -0.025796344503760338, 0.005285429302603006, 0.009293579496443272, 0.008792070671916008, 0.014755320735275745, 0.03689222037792206, 0.0024076325353235006, -0.008807742968201637, 0.0021882227156311274, 0.01240449957549572, 0.02880539558827877, 0.02413509599864483, -0.020749913528561592, -0.009575678035616875, -0.006938840262591839, -0.007001528982073069, 0.0032362970523536205, 0.026564277708530426, -0.0002921384875662625, -0.005877052899450064, -0.04441484808921814, 0.021408144384622574, 0.014230303466320038, -0.011009679175913334, -0.003157936269417405, -0.008721546269953251, 0.019229717552661896, -0.0033695101737976074, 0.009340595453977585, -0.020953651517629623, 0.008776398375630379, -0.016157977283000946, 0.01745876483619213, -0.025341851636767387, 0.03535635024309158, -0.018007289618253708, 0.011268269270658493, -0.01700427196919918, 0.021878307685256004, 0.03798926994204521, 0.00369078922085464, -0.05557341128587723, -0.007369824219495058, 0.0063550532795488834, 0.003001214936375618, 0.0012508326908573508, 0.012435844168066978, -0.010453318245708942, -0.023947030305862427, 0.00648826640099287, 0.028742706403136253, -0.01086079329252243, 0.032504018396139145, -0.006084708496928215, -0.007608824409544468, -0.017082633450627327, -0.022567883133888245, -0.008415939286351204, 0.02435450628399849, 0.006911414209753275, -0.01310974545776844, -0.012428008019924164, 0.0021000667475163937, -0.010821613483130932, 0.012130237184464931, -0.003980723675340414, -0.005924069322645664, 0.007314971648156643, -0.003075657645240426, -0.0008737218449823558, 0.009262234903872013, 0.0010049759875983, 0.013642598874866962, -0.0026956081856042147, -0.030999494716525078, 0.0061317249201238155, 0.010359285399317741, -0.03347569331526756, 0.025561261922121048, -0.00762057863175869, -0.006778201088309288, 0.005622380413115025, 0.024856016039848328, -0.021314110606908798, 0.002913059201091528, 0.0049367244355380535, -0.016189321875572205, 0.02100066840648651, 0.012890336103737354, 0.014003057964146137, -0.00661756144836545, -0.035575758665800095, 0.0017601773142814636, 0.009277907200157642, 0.0046311174519360065, -0.01087646558880806, -0.010304432362318039, 0.013995221816003323, 0.008478628471493721, 0.018947618082165718, 0.004043412394821644, -0.00550092151388526, 0.02813149243593216, -0.005759511608630419, 0.0061434791423380375, 0.016142304986715317, 0.02600008063018322, -0.0035183955915272236, 0.018101323395967484, -0.009277907200157642, 0.008690201677381992, 0.00825921818614006, 0.01477882917970419, -0.001443795976229012, 0.0031285511795431376, -0.0159464031457901, -0.03501156345009804, -0.02526349015533924, -0.00685656163841486, -0.0003065862401854247, 0.008251382037997246, 0.004823101218789816, -0.0033264118246734142, 0.0014222468016669154, 0.003937625326216221, 0.0014300828333944082, -0.0072287749499082565, -0.019558832049369812, -0.002203894779086113, 0.017176665365695953, 0.025608278810977936, -0.019182700663805008, -0.007491283118724823, -0.03356972709298134, 0.013289975002408028, 0.008580497466027737, 0.030764412134885788, 0.011534695513546467, -0.04128041863441467, -0.00631587253883481, -0.003653567750006914, -0.01676919125020504, 0.004266740288585424, 0.007393332198262215, -0.0188849288970232, 0.04946127533912659, -0.0031540184281766415, -0.01229479443281889, 0.0025721900165081024, -0.006864397786557674, 0.0056458888575434685, 0.008337578736245632, -0.004352936986833811, 0.0023566982708871365, 0.017427420243620872, 0.007781217806041241, -0.0027720099315047264, -0.024620933458209038, 0.0032872315496206284, 0.0035066416021436453, 0.00993613712489605, 0.0377698577940464, 0.02742624655365944, -0.016142304986715317, -0.004999412689357996, 0.00026397762121632695, 0.012004859745502472, 0.004772166721522808, -0.01817968301475048, 0.03363241255283356, 0.009732399135828018, 0.019919291138648987, -0.023038046434521675, -0.04184461757540703, -0.008494299836456776, 0.0051247901283204556, 0.0002622634929139167, 0.0363280214369297, -0.00898013636469841, 0.010429809801280499, 0.0069192503578960896, -0.009144694544374943, 0.032441332936286926, -0.02831955812871456, 0.009019317105412483, -0.0014927714364603162, -0.00884692370891571, 0.007867414504289627, -0.029009131714701653, -0.010484661906957626, 0.013783647678792477, 0.012349646538496017, -0.002233280101791024, -0.010915646329522133, -0.002611370524391532, -0.014802336692810059, 0.00043857505079358816, -0.008541316725313663, -0.03670415282249451, -0.0001034606175380759, -0.022379817441105843, 0.004399953410029411, -0.004591937176883221, -0.009176038205623627, -0.03592054545879364, -0.012702270410954952, 0.013070565648376942, 0.023022374138236046, 0.018477454781532288, 0.0013203778071328998, -0.027551623061299324, 0.022583555430173874, -0.0482388511300087, -0.013595581986010075, -0.0013732713414356112, -0.007126905955374241, -0.01586020737886429, 0.03692356497049332, -0.024417195469141006, 0.023586571216583252, 0.0250284094363451, 0.014590763486921787, 0.013047057203948498, -0.050495635718107224, -0.01916702836751938, -0.005442150868475437, 0.0067468564957380295, -0.02552991732954979, -0.021188734099268913, 0.008909611962735653, -0.010053678415715694, 0.013869844377040863, -0.012130237184464931, 0.010915646329522133, -0.014457549899816513, -0.004364691209048033, -0.017333388328552246, -0.017160994932055473, -0.014770993031561375, 0.012835483066737652, -0.028742706403136253, 0.017317716032266617, -0.0033068216871470213, -0.009904792532324791, 0.0017925010761246085, 0.005700741428881884, -0.011385810561478138, 0.019511815160512924, 0.043819304555654526, -0.024041064083576202, 0.004399953410029411, -0.010163383558392525, -0.0033126987982541323, -0.01868119090795517, -0.04538651928305626, -0.011902990750968456, 0.006112135015428066, -0.0070289550349116325, 0.0013203778071328998, 0.0016406772192567587, 0.02715981937944889, -0.015147124417126179, 0.025420213118195534, 0.008768563158810139, 0.007659758906811476, -0.012953024357557297, 0.013736631721258163, -0.005982839968055487, 0.014590763486921787, 0.0048426915891468525, -0.006366807036101818, -0.009755907580256462, -0.00325392815284431, 0.0313599519431591, 0.010774596594274044, 0.028162837028503418, -0.008361087180674076, 0.004309838637709618, 0.003837715368717909, 0.001708263298496604, 0.036296676844358444, -0.015852371230721474, -0.015280337072908878, -0.031516674906015396, 0.00762057863175869, 0.0002889550814870745, -0.011142891831696033, 0.017646830528974533, 0.021204406395554543, -0.0198722742497921, -0.002956157550215721, -0.002542804926633835, 0.0009530620882287621, -0.002115739043802023, 0.01135446596890688, -0.004615445621311665, -0.009607022628188133, 0.020452143624424934, 0.02667398378252983, 0.007745955605059862, 0.02788073755800724, -0.014355680905282497, -0.004760412964969873, 0.04413274675607681, -0.004760412964969873, 0.032974183559417725, -0.006715512368828058, 0.004760412964969873, 0.01985660195350647, -0.018242372199892998, 0.011166400276124477, -0.027927754446864128, 0.021549193188548088, -0.012263449840247631, -0.0006268856232054532, -0.008674530312418938, -0.03548172488808632, -0.009873448871076107, 0.011855974793434143, -0.006335462909191847, -0.006460839882493019, 0.017317716032266617, 0.006703758146613836, 0.003959174733608961, -0.018022961914539337, 0.009724562987685204, -0.0034752972424030304, -0.00013835562276653945, -0.0044273799285292625, -0.01841476559638977, -0.0005935823428444564, 0.005783020053058863, -0.020436471328139305, 0.002070681657642126, -0.01681620627641678, -0.012725777924060822, 0.00016823063197080046, -0.012913843616843224, 0.015186304226517677, 0.0145437465980649, -0.0006979000172577798, -0.005399052519351244, -0.03067038021981716, -0.0012841360876336694, 0.006127806846052408, 0.004121772944927216, 0.014684796333312988, 0.023069391027092934, 0.024260474368929863, 0.002873878926038742, 0.00899580866098404, -0.005841790698468685, -0.009661874733865261, -0.012968696653842926, -0.006942758336663246, 0.002252870239317417, -0.021658899262547493, 0.004541002679616213, 0.016690829768776894, 0.07253066450357437, 0.004302002489566803, -0.011150727979838848, -0.012498532421886921, 0.008564825169742107, -0.013047057203948498, 0.0061317249201238155, 0.007640168536454439, 0.02225443907082081, 0.0061434791423380375, 0.008815579116344452, -0.011950007639825344, 0.01439486164599657, 0.008004546165466309, -0.023727621883153915, 0.023523883894085884, 0.012764958664774895, 0.040277402848005295, 0.004799593240022659, 0.012161580845713615, -0.00530893774703145, 0.010492498055100441, -0.02170591428875923, 0.023978374898433685, -0.0058339545503258705, 0.012522040866315365, -0.012004859745502472, 0.01015554741024971, 0.0076323323883116245, 0.01916702836751938, -0.007185676600784063, -0.015766173601150513, -0.010852957144379616, -0.01371312327682972, -0.001129373675212264, 0.021909652277827263, -0.01039846520870924, 0.0067586107179522514, -0.007244447246193886, 0.023821653798222542, -0.0014477140503004193, -0.008086824789643288, 0.027802377939224243, 0.015570271760225296, -0.0019688126631081104, 0.0018992675468325615, -0.006723348516970873, 0.0008330722339451313, 0.005998511798679829, -0.020483488216996193, -0.025576934218406677, -0.0032245430629700422, 0.011769778095185757, 0.007945775054395199, 0.0196058489382267, 0.011315285228192806, 0.011754105798900127, -0.01524115726351738, -0.010845120996236801, -0.010852957144379616, -0.013148926198482513, -0.006500020157545805, -0.01799161732196808, -0.02059319242835045, 0.0025271326303482056, -0.02217607945203781, -0.014402697794139385, -0.010563022457063198, 0.0016152099706232548, 0.0013673942303285003, -0.0014624065952375531, 0.0029894609469920397, -0.002660345984622836, -0.017537126317620277, -0.010641383938491344, 0.017317716032266617, 0.009034989401698112, 0.005191396456211805, -0.001324295881204307, -0.004098264966160059, 0.006582299247384071, -0.0037809039931744337, -0.00969321932643652, -0.008329742588102818, 0.009270071052014828, -0.00779689010232687, 0.02578067220747471, -0.013736631721258163, -0.013783647678792477, -0.028742706403136253, -0.02170591428875923, -0.006703758146613836, 0.00011686764628393576, 0.011887318454682827, 0.012569056823849678, -0.0019188576843589544, -0.02125142328441143, 0.015437059104442596, 0.0032911496236920357, -0.0015515419654548168, 0.0035987154114991426, 0.033695101737976074, -0.0057555935345590115, 0.01477882917970419, 0.014982566237449646, -0.014512402005493641, 0.02878972329199314, 0.005359872244298458, -0.0226775873452425, 0.008901775814592838, -0.007679348811507225, -0.010374956764280796, -0.014818008989095688, 0.01524115726351738, -0.02194099687039852, -0.00801630038768053, 0.016236338764429092, 0.006323708686977625, -0.009191710501909256, -0.010688399896025658, -0.010719744488596916, 0.017380403354763985, -0.007843906059861183, -0.006539200898259878, 0.015460566617548466, -0.0004951417213305831, -0.002172550419345498, -0.0029718296136707067, -0.025373196229338646, -0.0038906089030206203, 0.01297653280198574, 0.006899659987539053, 0.004803511314094067, 0.00816518533974886, 0.023743294179439545, -0.015060927718877792, -0.017145322635769844, -0.011346629820764065, 0.007773381657898426, 0.003157936269417405, 0.0162676814943552, 0.03172041475772858, 0.020044667646288872, 0.016346042975783348, -0.004795675165951252, 0.016612470149993896, -0.02838224731385708, -0.018618503585457802, -0.005602790508419275, -0.0012576893204823136, 0.012412335723638535, -0.026736672967672348, 0.011550367809832096, -0.009622693993151188, 0.014238139614462852, -0.003483133390545845, -0.020953651517629623, 0.02838224731385708, -0.016487091779708862, -0.005763429682701826, 0.014441877603530884, 0.00016492480062879622, -0.003126592142507434, -0.013862008228898048, 0.01050817035138607, 0.005395134445279837, -0.0018355995416641235, 0.01681620627641678, 0.009708891622722149, -0.009113349951803684, 0.0019404069753363729, 0.00042265804950147867, 0.005156134255230427, -0.02549857273697853, 0.004815265070647001, 0.005610626190900803, -0.004278494510799646, -0.006868315860629082, -0.01821102760732174, 0.018712535500526428, -0.01003016997128725, 0.000803686969447881, 0.006938840262591839, 0.0033185759093612432, 0.0016720214625820518, -0.0010363203473389149, -0.001337029505521059, -0.009223055094480515, -0.0013722918229177594, -0.00216079642996192, -0.0076166605576872826, 0.023038046434521675, -0.007499119266867638, -0.010006661526858807, -0.029839755967259407, 0.0031931987032294273, 0.009740235283970833, 0.014865025877952576, 0.014089254662394524, -0.008651021867990494, -0.0033107397612184286, 0.0017944601131603122, 0.005269757471978664, 0.005951495375484228, -0.01511577982455492, -0.023758964613080025, -0.005951495375484228, -0.007267955224961042, -0.0066410694271326065, 0.007436431013047695, -0.050401605665683746, -0.020984996110200882, 0.010429809801280499, -0.008063316345214844, -0.027786705642938614, -0.013195942156016827, 0.02907182089984417, -0.003246092237532139, 0.01144849881529808, 0.014112763106822968, 0.0015897427219897509, 0.01633037067949772, 0.018822241574525833, -0.006958430632948875, -0.02082827500998974, 0.0018091527745127678, 0.01535869762301445, 0.010241744108498096, 0.02059319242835045, 0.0032989855390042067, 0.031297266483306885, -0.013227286748588085, -0.023445522412657738, 0.02078125812113285, -0.0067194304428994656, 0.02595306560397148, 0.019025979563593864, 0.008917448110878468, 0.029667362570762634, -0.015499747358262539, -0.009074169211089611, -0.008439447730779648, -0.0038749368395656347, -0.009998825378715992, 0.017537126317620277, -0.010790268890559673, 0.0059279873967170715, -0.01395604107528925, 0.0014535910449922085, -2.845167000486981e-05, 0.0034380757715553045, -0.008564825169742107, 0.0064490861259400845, 0.01723935455083847, 0.013901188969612122, 0.005163970403373241, 0.0013193984050303698, 0.009191710501909256, 0.002719116397202015, -0.010038006119430065, 0.00327743636444211, 0.013673942536115646, -0.010578694753348827, -0.031124871224164963, 0.004113936796784401, 0.009160365909337997, -0.01133879367262125, -0.00018757593352347612, 0.0012704229447990656, 0.007992791943252087, 0.00850213598459959, 0.004141363315284252, -0.008564825169742107, 0.01910433918237686, -0.01654978096485138, -0.009669710882008076, -0.008423775434494019, -0.01039846520870924, 0.010085023008286953, 0.012702270410954952, 0.0007924226229079068, 0.000646475818939507, 0.013164598494768143, -0.026188146322965622, 0.009066333062946796, -0.011182072572410107, -0.007546135690063238, -0.0013801278546452522, 0.0020941898692399263, 0.0020295423455536366, 0.00397876463830471, -0.009983154013752937, 0.010092858225107193, -0.011330957524478436, 0.005630216561257839, 0.016941584646701813, -0.01675351895391941, 0.010390629060566425, 0.011479843407869339, -0.010782432742416859, -0.014457549899816513, 0.011088039726018906, 0.004529248457401991, -0.01915135607123375, 0.018555814400315285, 0.018728207796812057, 0.010641383938491344, -0.008063316345214844, -0.0036868711467832327, 0.0026133295614272356, 0.012945188209414482, -0.0009520825697109103, -0.011793285608291626, -0.011307450011372566, -0.01120558101683855, -0.020922308787703514, 0.0073228077962994576, 0.013266467489302158, -0.016455747187137604, -0.005665478762239218, 0.00862751342356205, 0.00506993755698204, -0.005101281683892012, 0.014183287508785725, -0.010351449251174927, 0.023210439831018448, -0.00025271327467635274, 0.021298440173268318, -0.011754105798900127, 0.0012292835162952542, 0.01405007392168045, -0.0003227481502108276, 0.00014398779603652656, -0.015139288268983364, 0.0025956982281059027, 0.01609528809785843, -0.008494299836456776, -0.009630530141294003, -0.019245387986302376, 0.0009427772019989789, -0.013838500715792179, 0.004110018722712994, 0.00836892332881689, -0.005281511228531599, 0.022113390266895294, 0.0066371518187224865, 0.005704659037292004, -0.01794460043311119, 0.013720959424972534, 0.01487286202609539, 0.009418956935405731, -0.012678761966526508, 0.012898172251880169, -0.003389100544154644, -0.005826118402183056, -0.014324336312711239, -0.0014780787751078606, 0.017599813640117645, -0.03930572792887688, 0.009356267750263214, -0.016675157472491264, 0.004768248647451401, -0.011871647089719772, -0.015734829008579254, 0.009129022248089314, 0.0005617482820525765, -0.0031931987032294273, 0.015758337453007698, -0.020687226206064224, 0.010915646329522133, -0.00840810313820839, -0.005692905280739069, -0.023257456719875336, -0.014645615592598915, -0.013838500715792179, 0.012138073332607746, -0.010226071812212467, -0.002781804883852601, -0.006096462719142437, 0.0020745997317135334, 0.029009131714701653, 0.012098892591893673, -0.01697292923927307, -0.007197430822998285, 0.011048858985304832, 0.006288446485996246, 0.026376212015748024, 0.007765545975416899, 0.01122908852994442, -0.014661287888884544, -0.007385496515780687, -0.0032127888407558203, -0.014379189349710941, -0.0058496263809502125, 0.009426793083548546, 0.007483447436243296, -0.012686598114669323, 0.025921721011400223, -0.008353251032531261, 0.0019325708271935582, 0.003201034851372242, -0.008243545889854431, 0.005591036286205053, -0.00032617643591947854, 0.017615485936403275, -0.03372644633054733, 0.00244681304320693, 0.01775653474032879, 0.028758378699421883, -0.0008071152260527015, 0.015092271380126476, 0.000652842631097883, -0.02317909710109234, 0.012059712782502174, 0.009990990161895752, -0.0017337305471301079, 0.01591505855321884, -0.0162676814943552, 0.010610039345920086, -0.004384281579405069, 0.013744467869400978, 0.004309838637709618, 0.015248993411660194, -0.001312541775405407, 0.020185716450214386, -0.0030110101215541363, 0.011017515324056149, -0.007769463583827019, -0.004827019292861223, -0.0023057637736201286, -0.012960860505700111, 0.001230263034813106, -0.004137445241212845, 0.004215805791318417, -0.025106769055128098, -0.0030168869998306036, 0.03526231646537781, -0.022097717970609665, -0.0036124284379184246, 0.015084435231983662, -0.01633037067949772, -0.007600988261401653, 0.0007816480356268585, 0.00513262627646327, 0.017521454021334648, 0.015217648819088936, 0.006515692453831434, 0.022787293419241905, 0.008455120027065277, -0.0033655923325568438, 0.005524429492652416, 0.023461194708943367, 0.003056067507714033, -0.01347804069519043, -0.005508757662028074, 0.0024585670325905085, 0.01371312327682972, 0.028915099799633026, 0.033193595707416534, -0.04936724528670311, -0.0005475454381667078, -0.002115739043802023, -0.00840810313820839, 0.01723935455083847, -0.01476315688341856, -0.01631469838321209, 0.0020667635835707188, 0.01158954855054617, -0.01488069724291563, -0.0015035460237413645, -0.013258631341159344, -5.457700535771437e-05, -0.008141676895320415, -0.01560945250093937, 0.01705128885805607, 0.014292992651462555, 0.009042825549840927, 0.005810446105897427, 0.01937076635658741, -0.020028995350003242, -0.017066961154341698, 0.005951495375484228, -0.0012527917278930545, 0.0007135721389204264, 0.014888533391058445, 0.006241430062800646, 0.010445482097566128, 0.019245387986302376, 0.009332760237157345, 0.017098305746912956, 0.0006729225278832018, -0.013987385667860508, 0.019308077171444893, -0.02009168453514576, 0.012216433882713318, -0.006170905660837889, -0.013062729500234127, 0.0042393142357468605, -0.0009070251253433526, -5.2771036280319095e-05, -0.008353251032531261, -0.01111154817044735, -0.000508854805957526, 0.032504018396139145, 0.002744583645835519, -0.018587158992886543, -0.011848138645291328, 0.010085023008286953, 0.028162837028503418, 0.011660072952508926, 0.006190495565533638, 0.01405007392168045, -0.018602831289172173, 0.018759552389383316, -0.000659209443256259, 0.011699252761900425, 0.0049249702133238316, 0.007969283498823643, 0.0010079145431518555, -0.0011068449821323156, -0.0186968632042408, -0.011424990370869637, -0.0035379857290536165, 0.004623281303793192, -0.002536927815526724, 0.010437645949423313, 0.014308664947748184, 0.022865653038024902, 1.149392392107984e-05, -0.0012860950082540512, -0.02125142328441143, -0.006100380793213844, 0.013767975382506847, -0.006527446676045656, 0.00013431513798423111, 0.0031246331054717302, 0.009246562607586384, 0.023758964613080025, 0.026736672967672348, 0.0006685147527605295, 0.00779689010232687, 0.014488894492387772, 0.00567723298445344, 0.010312268510460854, -0.014292992651462555, -0.02225443907082081, -0.0030286412220448256, 0.001676919055171311, -0.010641383938491344, -0.010085023008286953, -0.0003278905642218888, -0.00303647737018764, 0.025623949244618416, 0.0009070251253433526, -0.005399052519351244, -0.02667398378252983, -0.022599227726459503, 0.01654978096485138, 0.008768563158810139, 0.004874035716056824, 0.005461741238832474, -0.030654707923531532, -0.017834896221756935, -0.005806528031826019, -0.005712495185434818, -0.003784822067245841, 0.026094114407896996, 0.008909611962735653, -0.020373782142996788, 0.02526349015533924, -0.0030110101215541363, 0.004149199463427067, -0.024997064843773842, 0.008556989021599293, -0.003377346321940422, -0.008086824789643288, -0.017819223925471306, 0.0028660427778959274, 0.023053718730807304, -0.017176665365695953, 0.006198331713676453, -0.02103201299905777, -0.019041651859879494, -0.0035889202263206244, 0.0036320185754448175, 0.022379817441105843, 0.0052580032497644424, -0.0006254163454286754, 0.005218822974711657, -0.022035030648112297, 0.023947030305862427, -0.01846178248524666, 0.0035497399512678385, -0.009191710501909256, -0.001437918865121901, -0.0033812643960118294, -0.005011166911572218, 0.019245387986302376, -0.019010307267308235, -0.016361715272068977, 0.008768563158810139, 0.0023194768000394106, -0.0044548059813678265, -0.01770951971411705, 0.00040894493577070534, 0.009317087940871716, 0.002679936122149229, -0.013775811530649662, -0.009857776574790478, -0.010602203197777271, -0.005837872624397278, -0.010280923917889595, 0.017615485936403275, 0.004701642319560051, -0.0162676814943552, -0.02176860347390175, 0.015280337072908878, 0.01300004031509161, 0.027786705642938614, -0.02056184783577919, -0.01890060119330883, -0.01673784665763378, -0.001292951637879014, 0.012616073712706566, -0.009740235283970833, -0.005128708202391863, 0.014230303466320038, 0.015546763315796852, 0.00626885611563921, -0.0007698939298279583, 0.011472007259726524, -0.0036966660991311073, 0.0011695334687829018, -0.009168202057480812, 0.005461741238832474, -0.01336050033569336, -0.026799360290169716, -0.007883086800575256, 0.0040512485429644585, -0.02034243941307068, 0.0008213181281462312, -0.0012606278760358691, 0.004055166617035866, 0.013493712991476059, 0.014598598703742027, 0.005422560498118401, 0.001989382319152355, -0.00797320157289505, -0.017349060624837875, 0.006080790422856808, -0.009512989781796932, -0.0018160092877224088, 0.003346001962199807, 0.016706502065062523, -0.020467815920710564, -0.019762570038437843, 0.01629902608692646, -0.026376212015748024, 0.00609254464507103, -0.009395448490977287, -0.012326139025390148, -0.03472946211695671, 0.004070838447660208, 0.013579909689724445, 0.021079029887914658, -0.021314110606908798, 0.006715512368828058, 0.01893194578588009, 0.004588019102811813, -0.028664344921708107, 0.0003526231739670038, 0.025153785943984985, -0.011213417164981365, 0.018242372199892998, -0.009364103898406029, -0.005704659037292004, -0.009740235283970833, -0.008462956175208092, 0.0028092311695218086, -0.016643812879920006, -0.008439447730779648, 0.03939976170659065, 0.006417741533368826, -0.007416840642690659, -1.2580566362885293e-05, 0.001406574621796608, 0.00543823279440403, -0.03350703790783882, 0.0018169888062402606, 0.000584276975132525, -0.025655293837189674, -0.012114564888179302, 0.015405714511871338, -0.024385850876569748, 0.03150100260972977, 0.010978334583342075, -0.021204406395554543, 0.002035419223830104, -0.033914513885974884, -0.0026094114873558283, -0.013619090430438519, -0.028397919610142708, 0.010061514563858509, -0.002648591762408614, 0.0048309373669326305, 0.004874035716056824, 0.021909652277827263, -0.001399718108586967, -0.005971085745841265, 0.005986757576465607, 0.005019003059715033, 0.004309838637709618, 0.0064490861259400845, -0.020405126735568047, -0.016675157472491264, -0.024652278050780296, 0.03137562423944473, -0.01675351895391941, -0.005594954360276461, 0.015868041664361954, -0.0033734282478690147, -0.00043612628360278904, -0.0030776166822761297, 0.010194727219641209, -0.002109861932694912, -0.01772519201040268, 0.004995495080947876, 0.007930103689432144, -0.0037809039931744337, 0.004588019102811813, 0.004827019292861223, -0.009489481337368488, -0.0019492225255817175, 0.0028836738783866167, -0.0013272344367578626, -0.008533480577170849, 0.0019345298642292619, -0.023978374898433685, 0.015938566997647285, 0.010038006119430065, -0.022991031408309937, -0.017208009958267212, -0.008494299836456776, 0.00015219117631204426, 0.016628140583634377, -0.009497317485511303, -0.0029914199840277433, 0.01443404145538807, -0.009489481337368488, -0.0007331623346544802, -0.0057555935345590115, -0.008729382418096066, 0.019950635731220245, -0.01502174697816372, 0.004207969643175602, 0.009755907580256462, 0.012412335723638535, 0.006789954844862223, 0.01028876006603241, 0.015601616352796555, 0.0158131904900074, 0.016894567757844925, -0.026407556608319283, 0.019699880853295326, -0.014269484207034111, 0.00029605653253383934, -0.003976805601269007, 0.002055009361356497, -0.00345178903080523, 0.013446697033941746, 0.016142304986715317, -0.013399680145084858, -0.01086079329252243, -0.03046664223074913, -0.013203778304159641, -0.030607691034674644, -0.0105238426476717, -0.0030854528304189444, 0.013164598494768143, 0.010649220086634159, 0.007338480092585087, -0.012302630580961704, -0.02101634070277214, 0.006770364940166473, -0.02976139448583126, 0.009755907580256462, 0.021862637251615524, 0.00668025016784668, 0.021314110606908798, 0.02311640791594982, -4.1629122279118747e-05, 0.003735846607014537, -0.019041651859879494, -0.010053678415715694, 0.016863223165273666, 0.012459351681172848, 0.013775811530649662, -0.007099479902535677, -0.015499747358262539, 0.0012772794580087066, 0.0040669203735888, 0.01157387625426054, 0.01242017187178135, -0.0015417468966916203, 0.003949379548430443, -0.0011998983100056648, -0.013101909309625626, 0.015632960945367813, 0.025890376418828964, 0.018352076411247253, 0.014206795953214169, 0.012396663427352905, -0.023758964613080025, -0.007279709447175264, 0.013250795193016529, -0.015805354341864586, 0.010257416404783726, 0.0026329196989536285, -0.00015610922127962112, 0.011048858985304832, -0.011981351301074028, 0.0030678214970976114, 0.01656545326113701, -0.0051365443505346775, -0.017364731058478355, 0.004251067992299795, 0.000885475950781256, -0.007217020727694035, -0.001337029505521059, -0.007432512938976288, 0.0018620461924001575, 0.017552796751260757, -0.0023625751491636038, 0.02076558582484722, 0.004251067992299795, -0.01524115726351738, 0.0055283475667238235, -0.0024526899214833975, -0.00019688127213157713, 0.0070407092571258545, 0.007036791183054447, -0.03288014978170395, -0.0013360499870032072, 0.02288132533431053, -0.009975317865610123, 0.004364691209048033, -0.01700427196919918, -0.0008639267762191594, -0.01015554741024971, -0.016847550868988037, 0.002372370334342122, 0.012380991131067276, -0.002152960281819105, 0.01680053398013115, -0.012091056443750858, 0.013760139234364033, 0.0048426915891468525, -0.016722174361348152, 0.020013323053717613, -0.01885358616709709, -0.006692003924399614, 0.032942838966846466, 0.012819810770452023, 0.005673314910382032, -0.0035203546285629272, -0.016189321875572205, -0.012020532041788101, 0.022614900022745132, -0.006566626951098442, 0.0035203546285629272, -0.005649806931614876, -0.006644987501204014, -0.002593739191070199, 0.0075226277112960815, 0.005242330953478813, 0.019182700663805008, -0.0005857462529093027, 0.010453318245708942, -0.02269325964152813, 0.0039004040881991386, 0.001242996659129858, 0.021690241992473602, 0.011033186689019203, 0.0028915100265294313, -0.01650276407599449, -0.008431611582636833, -0.006985856685787439, -0.009630530141294003, 0.0076440866105258465, 0.020154373720288277, -0.002041296334937215, -0.0013380090240389109, 0.019919291138648987, -0.01796027272939682, 0.002178427530452609, -0.017772207036614418, 0.026579950004816055, -0.006468676030635834, 0.004278494510799646, -0.009317087940871716, -0.005743839778006077, 0.015037419274449348, -0.013141090050339699, -0.016001256182789803, -0.01144849881529808, 0.0036143874749541283, -0.04137445241212845, 0.008204366080462933, -0.0077381194569170475, 0.009207382798194885, -0.015154960565268993, -0.007859578356146812, -0.006927086040377617, 0.005120872054249048, 0.006707676220685244, 0.011503350920975208, 0.017568469047546387, -0.02170591428875923, -0.012318302877247334, -0.010461154393851757, -0.009152529761195183, 0.017772207036614418, 0.004627199377864599, 0.00873721856623888, -0.0003651119186542928, 0.002531050704419613, -0.019261060282588005, -0.0001996973587665707, -0.012255613692104816, -0.016941584646701813, 0.0002449996245559305, -0.006300200708210468, 0.0046742158010602, 0.0070289550349116325, -0.02907182089984417, -0.0017601773142814636, 0.00025271327467635274, 0.0031481413170695305, -0.00896446406841278, 0.006300200708210468, 0.0392116978764534, 0.0053520360961556435, -0.004047330468893051, -0.0025388868525624275, -0.019025979563593864, 0.006018102169036865, 0.007283627521246672, -0.009058496914803982, 0.0011479842942208052, 0.008306235074996948, -0.0035752071999013424, 0.010116366669535637, 0.01063354779034853, 0.005473494995385408, 0.01912001147866249, -0.005481331143528223, -0.01653410866856575, -0.00896446406841278, -0.027050115168094635, -0.004576264880597591, -0.002053050557151437, -0.003724092384800315, 0.009607022628188133, -0.02814716473221779, 0.010453318245708942, -0.011088039726018906, 0.009403284639120102, -1.1065388207498472e-05, -0.013752303086221218, 0.0036202645860612392, 0.01489636953920126, 0.011393646709620953, -0.013681778684258461, 0.020467815920710564, 0.004423461854457855, 0.020123029127717018, -0.03811464458703995, -0.0018620461924001575, -0.016863223165273666, 0.02429181896150112, -0.007064217235893011, -0.01597774773836136, 0.009685383178293705, -0.005348118022084236, -0.010586530901491642, 0.00650785630568862, 0.006915332283824682, -0.010484661906957626, 0.0226775873452425, -0.006292364560067654, -0.003635936649516225, -0.0132351228967309, 0.0002363064995734021, 0.001060808077454567, -0.012804139405488968, -0.022348472848534584, 0.02076558582484722, -0.0033930183853954077, 0.001738628139719367, 0.013532893732190132, 0.008925284259021282, 0.021423816680908203, -0.004047330468893051, 0.0009442464797757566, 0.007816480472683907, -0.0160796158015728, -0.008306235074996948, -0.0035575758665800095, -0.04128041863441467, 0.03092113323509693, 0.01074325293302536, -0.008462956175208092, -0.026517262682318687, -0.005908397026360035, -0.00825921818614006, 0.018367748707532883, 0.01633037067949772, 0.023085063323378563, 0.02458958886563778, -0.003032559296116233, 0.005363790318369865, 0.012224270030856133, 0.012490696273744106, -0.006515692453831434, -0.0033068216871470213, 0.013399680145084858, -0.0050581833347678185, -0.005336363799870014, 0.011636564508080482, -0.01844611018896103, 0.00436860928311944, 0.005998511798679829, -0.003961133770644665, 0.005790856201201677, -0.021141717210412025, -0.002779846079647541, -0.023758964613080025, 0.014198959805071354, -0.012811974622309208, 0.00672726659104228, 0.005826118402183056, 0.0020334601867944, 0.005254085175693035, 0.03134428337216377, 0.0045370846055448055, -0.003032559296116233, -0.0007694041705690324, -0.020264077931642532, 0.008549152873456478, 0.02314775250852108, -0.05598088726401329, -0.0172550268471241, -0.0008614779799245298, -0.012663089670240879, 0.0009222075459547341, 0.0049484786577522755, -0.010445482097566128, 0.007436431013047695, 0.005269757471978664, 0.02672100067138672, -0.015296009369194508, -0.004002273082733154, -0.010437645949423313, -0.006950594484806061, 0.004979822784662247, -0.0016161894891411066, -0.00873721856623888, -0.011550367809832096, 0.01678486354649067, 0.008815579116344452, -0.007025036960840225, 0.025420213118195534, 0.011636564508080482, 0.0012939311563968658, -0.025576934218406677, -0.012271285988390446, 0.0016906321980059147, 0.032942838966846466, -0.0020726406946778297, 0.012130237184464931, 0.012153745628893375, -0.008196529932320118, -0.0069466764107346535, -0.004505740478634834, 0.017098305746912956, -0.015750501304864883, 0.017819223925471306, 0.01369745098054409, 0.01723935455083847, -0.0184304378926754, 0.012725777924060822, -0.011652236804366112, -0.015617288649082184, 0.010453318245708942, 0.0058496263809502125, 0.0006601889035664499, -0.00035605145967565477, 0.01933942176401615, 0.012576892971992493, -0.0007987894350662827, -0.004278494510799646, 0.018148338422179222, 0.0018238454358652234, -0.001991341356188059, 0.0038631826173514128, 0.0013517221668735147, -0.007346315775066614, 0.0022567883133888245, -0.001820906880311668, -0.021611882373690605, -0.009066333062946796, 0.014959058724343777, 0.0021314111072570086, 0.021784275770187378, 0.016910240054130554, 0.0008413980831392109, 0.008831251412630081, 0.0026407556142657995, 0.015029583126306534, 0.015178468078374863, -0.007745955605059862, 0.007224856875836849, 0.0081338407471776, -0.002411550609394908, -0.020608864724636078, 0.005630216561257839, 0.007730283308774233, -0.013540729880332947, -0.009865612722933292, -0.004141363315284252, 0.0031853625550866127, -0.004877953790128231, 0.012506368570029736, 0.00779689010232687, 0.006684168241918087, 0.009740235283970833, 0.010476825758814812, 0.01822669990360737, 0.007115151733160019, -0.005449987016618252, 0.02574932761490345, 0.006108216941356659, 0.010038006119430065, 0.011166400276124477, 0.013446697033941746, -0.015264664776623249, -0.000998609233647585, -0.005034675356000662, 0.01572699286043644, -0.006644987501204014, -0.003970928490161896, -0.01913568377494812, -0.0029404854867607355, 0.00141930824611336, 0.007291463669389486, -3.102287882938981e-05, -0.024683622643351555, -0.010108530521392822, -0.031265921890735626, 0.01673784665763378, 0.006695921998471022, 0.001852251123636961, 0.008361087180674076, -0.006033773999661207, 0.00825921818614006, 0.029118837788701057, -0.03234729915857315, 0.011605219915509224, 0.01988794654607773, 0.014810172840952873, -0.01382282841950655, -0.008893939666450024, 0.01155820395797491, -0.013297811150550842, -0.0002566313196439296, 0.0013076442992314696, 0.007718529552221298, -0.011620892211794853, 0.024950047954916954, -0.011934335343539715, -0.007879168726503849, -0.02056184783577919, -0.004251067992299795, -0.019558832049369812, 0.02057752013206482, -0.0018561691977083683, -0.007977119646966457, -0.0045214127749204636, 0.00707988953217864, 0.0200603399425745, 0.0070289550349116325, -0.0001519462966825813, -0.006942758336663246, 0.00609254464507103, -0.005113035906106234, 0.012216433882713318, -0.017819223925471306, 0.011785449460148811, -0.009497317485511303, -0.0014594681560993195, 0.014551582746207714, 0.00607295474037528, 0.0037809039931744337, -0.0060494462959468365, -0.02059319242835045, -0.01300004031509161, 0.01334482803940773, -0.02291266992688179, 0.020248405635356903, 0.002901304978877306, 0.0028836738783866167, 0.0038768958766013384, -0.0318928062915802, -0.004059084691107273, -0.002756337868049741, 0.016173649579286575, -0.010022333823144436, -0.010312268510460854, 0.03266074135899544, 0.0011852056486532092, -0.002480116207152605, 0.029181526973843575, -0.01336050033569336, 0.00318928062915802, 0.007518709637224674, 0.0007037770701572299, 0.006061200518161058, -0.010210399515926838, -0.002754378831014037, 0.015993420034646988, 0.00259961630217731, 0.0012811975320801139, 0.0024761981330811977, -0.0009275948395952582, -0.01937076635658741, 0.023743294179439545, -0.015092271380126476, 0.027677001431584358, -0.0017347100656479597, 0.0048544458113610744, -0.02289699763059616, 0.0024526899214833975, -0.007836070843040943, 0.00801630038768053, -0.01935509406030178, -0.019308077171444893, -0.01775653474032879, -0.009019317105412483, -0.010578694753348827, -0.025686638429760933, 0.023994047194719315, -0.006284528411924839, 0.009560005739331245, 0.01063354779034853, 0.038647498935461044, -0.020170046016573906, -0.008690201677381992, -0.004117854870855808, 0.01569564826786518, 0.012678761966526508, -0.012600401416420937, 0.007409004494547844, 0.01629902608692646, 0.007808644324541092, 0.0012606278760358691, -0.0033930183853954077, -0.010147711262106895, -0.005359872244298458, -0.007804726250469685, 0.0011313327122479677, -0.02883673831820488, 0.0069231679663062096, -0.008078988641500473, -0.006927086040377617, -0.0004753066459670663, -0.025592606514692307, -0.0050425115041434765, -0.007992791943252087, -0.019778242334723473, 0.0028053130954504013, 0.021408144384622574, -0.010006661526858807, -0.007965365424752235, -0.012843319214880466, 0.0021940995939075947, 0.0010186891304329038, 0.052846457809209824, 0.006429495755583048, 0.0439133383333683, -0.008588332682847977, 0.013070565648376942, -0.01499040238559246, -0.002856247592717409, -0.006010266020894051, -0.01111154817044735, 0.008086824789643288, 0.015687812119722366, -0.025341851636767387, 0.02341417782008648, 0.020953651517629623, -0.0014359599445015192, 0.003130510216578841, -0.0015407673781737685, 0.007894841022789478, 0.007765545975416899, 0.03132861107587814, 0.0004757964052259922, 0.02479332685470581, -0.0020491324830800295, -0.02976139448583126, 0.01336050033569336, 0.008987972512841225, 0.023038046434521675, 0.0069349221885204315, 0.004090428818017244, 0.0012635663151741028, 0.023053718730807304, 0.0018982880283147097, -0.026564277708530426, 0.026783687993884087, 0.015327353961765766, 0.0030834937933832407, 0.010657055303454399, 0.013203778304159641, 0.013423188589513302, -0.014238139614462852, -0.02741057425737381, -0.009223055094480515, 0.0006121930200606585, 0.00310112489387393, -0.022865653038024902, -0.00010676645615603775, 0.0023606161121279, -0.004325510933995247, -0.006335462909191847, 0.012576892971992493, 0.002229362027719617, -5.733187572332099e-05, -0.010602203197777271, 0.0011205580085515976, -0.0028542885556817055, 0.011127219535410404, 0.004529248457401991, -0.014598598703742027, -0.012153745628893375, 0.0014859148068353534, -0.0021137800067663193, -0.008745054714381695, 0.008212202228605747, 0.025106769055128098, -0.02126709558069706, 0.01274145022034645, -0.0037280104588717222, 0.014426205307245255, -0.008173021487891674, -0.000279404892353341, 0.018822241574525833, -0.005704659037292004, -0.004317674785852432, -0.017866240814328194, -0.018007289618253708, -0.013305647298693657, -0.024385850876569748, -0.006096462719142437, -0.008533480577170849, -0.0045488388277590275, -0.01063354779034853, 0.0001093988903448917, 0.015437059104442596, -0.0186968632042408, -0.0037025432102382183, -0.004603691399097443, -0.002719116397202015, -0.0064490861259400845, 0.02761431224644184, -0.0061434791423380375, -0.016612470149993896, -0.008807742968201637, -0.0033244527876377106, 0.0070407092571258545, 0.014982566237449646, 0.0013879640027880669, 0.00019369786605238914, -0.029009131714701653, 0.005873134825378656, 0.00661756144836545, 0.012467187829315662, 0.013352664187550545, -0.0076558408327400684, 0.011174236424267292, 0.007573562208563089, -0.025388868525624275, -0.017615485936403275, -0.013658270239830017, -0.0038220433052629232, 0.017881913110613823, -0.00850213598459959, -0.003941543400287628, -0.0038690597284585238, 0.007941856980323792, 0.018947618082165718, 0.028491951525211334, 0.02552991732954979, 0.009849940426647663, 0.0032911496236920357, 0.009983154013752937, -0.011385810561478138, 0.0070289550349116325, 0.03394585847854614, -0.004658543970435858, 0.00816518533974886, 0.01513145212084055, 0.016455747187137604, 0.012224270030856133, 0.00506993755698204, 0.01097049843519926, 0.00015598678146488965, -0.03588920086622238, -0.00318928062915802, 0.018837913870811462, 0.02151784859597683, 0.011291777715086937, 0.0003440524742472917, -0.004866199567914009, 0.013047057203948498, -0.012443679384887218, -0.00955216959118843, 0.02294401451945305, 0.015531091950833797, 0.006954512558877468, -0.0036868711467832327, 0.0007125926786102355, -0.022379817441105843, 0.004356855060905218, 0.01628335379064083, -0.0005406888667494059, -0.016581125557422638, -0.03117188811302185, -0.013869844377040863, 0.009191710501909256, -0.012177253141999245, 0.007800808176398277, -0.013854172080755234, 0.014347844757139683, -0.024667950347065926, 0.0001312541717197746, 0.0027406655717641115, -0.0002879755920730531, 0.004047330468893051, 0.01097049843519926, 0.025373196229338646, -0.013101909309625626, -0.003984641749411821, 0.013391843996942043, -0.009309251792728901, -0.010210399515926838, -0.0196058489382267, -0.002730870619416237, 0.007996710017323494, 0.008486464619636536, 0.00039963959716260433, 0.01839909330010414, -0.000746875477489084, 0.004909297917038202, -0.01477882917970419, -0.007887004874646664, 0.009387612342834473, 0.017552796751260757, 0.014222467318177223, -0.005089527927339077, -0.01984092965722084, 0.00548524921759963, -0.013384007848799229, 0.009277907200157642, -0.010868629440665245, 0.0001010730629786849, 0.008698037825524807, 0.015076599083840847, -0.012843319214880466, 0.001262586796656251, -0.02361791580915451, 0.021580537781119347, -0.021329782903194427, -0.013023548759520054, -0.03852212056517601, 0.015656469389796257, 0.009779416024684906, 0.0010049759875983, -0.015037419274449348, -0.0010049759875983], "dcd995cc-58e9-4129-b3c8-9a603995d898": [-0.004924462642520666, -0.016393037512898445, -0.014121889136731625, 0.013037269935011864, -0.039599522948265076, 0.005557763855904341, 0.0386386513710022, 0.010562299750745296, -0.016713328659534454, 0.03485340252518654, -0.008989965543150902, 0.016684211790561676, 0.014449458569288254, -0.0014749730471521616, 0.00918650720268488, 0.030049050226807594, 0.013881671242415905, 0.002125562634319067, 0.0032574974466115236, -0.014194682240486145, 0.038988061249256134, -0.02119739167392254, -0.03202902525663376, 0.01869330368936062, 0.016858914867043495, -0.00466604670509696, -0.018125517293810844, 0.013197414577007294, -0.0295103807002306, -0.015170111320912838, 0.0027406655717641115, 0.018125517293810844, 0.01350314635783434, 0.0002547763579059392, 0.010416712611913681, -0.02948126196861267, 0.0028789727948606014, 0.00017561369168106467, -0.028170984238386154, 0.002167418831959367, -0.012302057817578316, 0.0008917172090150416, 0.024400293827056885, -0.026554973796010017, -0.039308350533246994, 0.008385781198740005, -0.0207169558852911, 0.01341579481959343, -0.00948495976626873, -0.04364682734012604, 0.026889823377132416, 0.03028198890388012, 0.007898067124187946, 0.005772504024207592, 0.041812438517808914, -0.018271103501319885, -0.00023475820489693433, 0.04976145923137665, 0.016917148604989052, -0.09020538628101349, -0.0028607742860913277, -0.00616194773465395, 0.035057224333286285, -0.008211077190935612, 0.028112750500440598, 0.009230183437466621, 0.012877124361693859, -0.004564136266708374, -0.021605033427476883, 0.020673280581831932, 0.010394874960184097, 0.012018164619803429, -0.047577664256095886, 0.04725737124681473, 0.01387439202517271, 0.013830715790390968, 0.03447487950325012, 0.021881649270653725, 0.022362083196640015, -0.011530449613928795, 0.0034594987519085407, -0.005379420705139637, 0.05584697425365448, 0.016189217567443848, 0.06091338396072388, 0.019188297912478447, -0.023439424112439156, -0.037881601601839066, -0.011377583257853985, -0.03141756355762482, 0.011843460611999035, 0.03549398481845856, -0.015534077771008015, 0.0024585917126387358, -0.015606870874762535, 0.007224729284644127, 0.031184624880552292, 0.003927195444703102, 0.0013157378416508436, -0.013313883915543556, -0.0032993536442518234, 0.009936277754604816, -0.0335722416639328, 0.02258046343922615, 0.0244439709931612, -0.004360315389931202, 0.0067297350615262985, 0.022143704816699028, -0.03138844668865204, 0.011042734608054161, 0.010394874960184097, -0.02745761163532734, -0.005688791628926992, -0.001434026868082583, -0.06778506934642792, -0.02620556764304638, -0.04434564337134361, -0.02901538647711277, 0.0002791165898088366, -0.02868053689599037, 0.04082245007157326, -0.0029299280140548944, 0.016989942640066147, 0.011013617739081383, -0.03438752889633179, 0.026613209396600723, -0.002365780295804143, 0.013393956236541271, 0.018605953082442284, 0.01664053462445736, 0.003788888221606612, -0.027544962242245674, 0.016698770225048065, -0.009943556971848011, 0.010875310748815536, 0.027807017788290977, 0.012585951015353203, 0.040414806455373764, -0.008895333856344223, 0.029423028230667114, -0.05392523482441902, -0.02258046343922615, -0.03089345246553421, 0.025594104081392288, 0.021401213482022285, 0.0014413062017410994, -0.028185542672872543, 0.042744193226099014, -0.013124621473252773, 0.01806728169322014, -0.06726095825433731, -0.039745111018419266, -0.003106451593339443, -0.012993593700230122, 0.029088178649544716, -0.004662407096475363, -0.002535024657845497, 0.01246220339089632, 0.009055479429662228, 0.036018095910549164, 0.019828878343105316, -0.060622211545705795, 0.0038070864975452423, 0.029597731307148933, 0.04486975446343422, 0.03339754045009613, 0.07681142538785934, 0.021896207705140114, -0.038347478955984116, 0.018009047955274582, 0.0031519473996013403, -0.01566510647535324, 0.04000716656446457, 0.03750307857990265, -0.03025287203490734, -0.0074103521183133125, 0.02680247090756893, 0.035057224333286285, 0.0319707915186882, -0.023148251697421074, -0.01710641197860241, 0.017048176378011703, -0.0008334825979545712, 0.012360292486846447, -0.002766143064945936, 0.048713237047195435, 0.00658050924539566, 0.01707729510962963, 0.014180123805999756, 0.014165564440190792, -0.003370327176526189, -0.006340291351079941, -0.022827960550785065, 0.014580486342310905, -0.009477679617702961, -0.0269771758466959, -0.006584148854017258, -0.01616009883582592, -0.009528635069727898, 0.020658722147345543, 0.012818889692425728, -0.039628639817237854, -0.029568614438176155, 0.035843390971422195, -0.03814365714788437, 0.029131855815649033, -0.01882433146238327, -0.04722825437784195, 0.02210002765059471, -0.02683158963918686, 0.04816000908613205, -0.04722825437784195, -0.02509910985827446, -0.005896252579987049, 0.0011082771234214306, -0.0010527722770348191, 0.009950836189091206, 0.027224672958254814, 0.001004546764306724, -0.009135551750659943, 0.002342122606933117, 0.016276568174362183, -0.00791990477591753, -0.024240149185061455, -0.04615091532468796, -0.021080922335386276, -0.025201020762324333, 0.03042757511138916, -0.01867874525487423, 0.003499535145238042, 0.03092256933450699, 0.0019526786636561155, 0.004149214830249548, -0.03205814212560654, -0.017222881317138672, 0.029757877811789513, 0.05217819660902023, -0.005692431703209877, -0.031621385365724564, 0.0006232921150512993, 0.004753398708999157, 0.018387572839856148, -0.007348477840423584, -0.012753375805914402, -0.006369408685714006, 0.033979885280132294, -0.0115231703966856, 0.052003491669893265, 0.005517727695405483, 0.009783411398530006, -0.011872577480971813, 0.023322954773902893, 0.003563229227438569, 0.01850404217839241, -0.021415771916508675, 0.038667768239974976, 0.029612291604280472, -0.012018164619803429, -0.0064713191241025925, -0.018926242366433144, 0.01961049996316433, 0.03808542340993881, 0.002305725822225213, 0.01176338829100132, 0.028505833819508553, -0.014100050553679466, 0.055439334362745285, -0.02381794899702072, 0.006092794239521027, 0.031475797295570374, 0.023468540981411934, 0.02119739167392254, -0.013925347477197647, 0.045393865555524826, 0.012520437128841877, -0.015912601724267006, 0.006777050904929638, 0.01396174356341362, 0.03651309013366699, 0.01975608617067337, -0.018154634162783623, -0.0005896252696402371, 0.012986314482986927, 0.0011565026361495256, 0.04816000908613205, -0.028753330931067467, -0.020454900339245796, -0.020207403227686882, -0.05179966986179352, -0.007483145222067833, -0.001157412538304925, 0.02902994491159916, 0.005011814646422863, 0.011654198169708252, 0.021896207705140114, 0.011777946725487709, -0.02381794899702072, 0.010525902733206749, 0.007614172995090485, 0.03997804969549179, 0.004913543816655874, -0.019799761474132538, -0.007577776443213224, -0.027079086750745773, 0.010620533488690853, -0.02445852942764759, 0.025026315823197365, 0.022493110969662666, -0.017324792221188545, 0.04865500330924988, 0.0244439709931612, -0.03074786439538002, -0.012192867696285248, -0.006038199178874493, 0.0016888031968846917, 0.0066824196837842464, -0.020673280581831932, -0.004072781652212143, -0.021211950108408928, -0.036454856395721436, 0.007068223785609007, 0.010620533488690853, -0.08572132140398026, 0.018431248143315315, 0.04405447095632553, -0.03045669198036194, 0.04810177534818649, -0.010540461167693138, -0.036018095910549164, -0.02132841944694519, -0.02320648543536663, -0.01929020881652832, -0.03858041763305664, -0.006242020521312952, -0.03246578574180603, -0.03968687355518341, -0.0624857172369957, -0.03986157849431038, 0.016276568174362183, -0.03418370708823204, -0.016101865097880363, -0.010904427617788315, 0.029059061780571938, -8.217674621846527e-05, 0.015723340213298798, -0.0015850728377699852, 0.015796134248375893, 0.030311105772852898, -0.01662597618997097, 0.008895333856344223, 0.0009217444458045065, -0.012229264713823795, 0.03432929143309593, -0.009674222208559513, 0.02539028227329254, -0.024531321600079536, -0.0033812460023909807, 0.007963581010699272, 0.004302080720663071, -0.00151864904910326, -0.02087710238993168, -0.0260454211384058, -0.007384874392300844, -0.004494982771575451, -0.0062019843608140945, 0.01326292846351862, -0.0007302071899175644, -0.025623220950365067, -0.014209240674972534, 0.003397624474018812, -0.033048130571842194, 0.01364873256534338, 0.00026797011378221214, -0.0171209704130888, -0.00733027933165431, -0.0333101861178875, 0.0407642163336277, 0.0130227105692029, 0.00025045423535630107, 0.024837054312229156, 0.021270185708999634, -0.0014649640070274472, -0.0147551903501153, 0.0395704060792923, 0.015956278890371323, 0.00438943225890398, 0.004334837663918734, -0.003628743113949895, -0.025768807157874107, -0.017630523070693016, -0.007890786975622177, 0.014791586436331272, -0.02022196166217327, -0.003719734726473689, -0.02509910985827446, -0.009863484650850296, 0.012214706279337406, -0.020440341904759407, -0.010482226498425007, -0.022929871454834938, -0.0029717839788645506, -0.011188320815563202, -0.0244439709931612, -0.024211032316088676, 0.004527739714831114, -0.02821465954184532, 0.005070049315690994, -7.802525942679495e-05, 0.03013640269637108, 0.006959034129977226, -0.017484936863183975, 0.017514053732156754, 0.023585010319948196, 0.03336842358112335, 0.030194636434316635, -0.016232892870903015, -0.023919859901070595, 0.08484780043363571, -0.0038835194427520037, -0.00588169414550066, 0.03403811901807785, 0.029539497569203377, -0.004465865436941385, 0.011406701058149338, 0.005110085476189852, 0.05127555876970291, -0.012869845144450665, -0.008385781198740005, -0.0030354780610650778, -0.024691468104720116, 0.01617465913295746, 0.072210893034935, -0.025302931666374207, 0.012484041042625904, -0.006955394055694342, 0.002263869857415557, 0.013059107586741447, 8.308666292577982e-05, 0.012367571704089642, 0.008829819969832897, -0.034591346979141235, 0.0020309314131736755, 0.007224729284644127, 0.03165050223469734, -0.05203260853886604, -0.04684973135590553, -0.0407642163336277, 0.027865253388881683, 0.027574079111218452, -0.023497657850384712, 0.008764306083321571, 0.00513556320220232, -0.04719913750886917, -0.007563218008726835, -0.00764329032972455, -0.024545881897211075, -0.001371242688037455, 0.01883889175951481, 0.04440387710928917, -0.046180032193660736, -0.017179204151034355, 0.0012220165226608515, 0.0386386513710022, -0.009768852964043617, 0.033834297209978104, -0.0145877655595541, 0.01253499649465084, 0.021998116746544838, 0.00988532230257988, 0.01883889175951481, 0.008254753425717354, -0.007090061902999878, -0.011100969277322292, 0.00987076386809349, 0.019668733701109886, -0.001364873256534338, -0.0028116388712078333, 0.008997244760394096, -0.0010354839032515883, -0.033834297209978104, -0.0030209196265786886, -0.02525925450026989, 0.014937173575162888, -0.011457656510174274, 0.022624138742685318, 0.008123725652694702, -0.022041793912649155, -0.017470378428697586, 0.044316526502370834, -0.005510448478162289, 0.01787802018225193, 0.0015887124463915825, 0.0056778728030622005, -0.0011073672212660313, -0.020484019070863724, -0.030835216864943504, 0.00037465771310962737, -0.03127197548747063, -0.010147377848625183, -0.040851566940546036, 0.023948976770043373, 0.0059217303059995174, 0.004302080720663071, 0.01585436798632145, -0.01802360638976097, 0.02086254395544529, -0.012578671798110008, 0.03534839674830437, -0.021299302577972412, -0.03534839674830437, -0.022201938554644585, 0.007454027887433767, -0.029262883588671684, -0.0032338397577404976, 0.01326292846351862, 0.035523101687431335, -0.0018352996557950974, -0.009528635069727898, 0.0361054465174675, -0.0056305574253201485, -0.007759759668260813, -0.020425783470273018, -0.016917148604989052, -0.007912625558674335, -0.019348444417119026, -0.012389409355819225, -0.0031610464211553335, -0.020935336127877235, 0.012607789598405361, -0.03243666887283325, -0.007890786975622177, 0.02055681124329567, -0.03718278929591179, -0.001530477893538773, 0.015417608432471752, -0.013998140580952168, 0.007745200768113136, 0.027035409584641457, 0.02572513185441494, 0.011202880181372166, -0.04848029837012291, 0.04003628343343735, -0.017353909090161324, -0.0010327540803700686, 0.004010907839983702, 0.03313548490405083, 0.0032338397577404976, 0.018620511516928673, -0.01728111505508423, 0.024997198954224586, -0.02948126196861267, 0.04035657271742821, -0.010023629292845726, -0.0009526815265417099, 0.007031827233731747, -0.03654220700263977, -0.012593231163918972, -0.010016350075602531, -0.007071863394230604, -0.017324792221188545, -0.020134611055254936, 0.038493067026138306, 0.01363417413085699, 0.001277521369047463, 0.008291150443255901, 0.0027097284328192472, -0.03220373019576073, 0.035377513617277145, -0.018576834350824356, 0.026467623189091682, 0.015082759782671928, -0.002498628105968237, 0.02603086270391941, 0.01880977302789688, -0.005142842419445515, 0.0435594767332077, 0.01284800749272108, 0.008589602075517178, -0.019668733701109886, -0.022929871454834938, 0.028170984238386154, -0.010394874960184097, 0.0012647826224565506, 0.00023726046492811292, -0.002605997957289219, 0.013474028557538986, -0.022507669404149055, -0.005492249969393015, -0.010373037308454514, 0.004626010544598103, -0.003770689945667982, 0.026889823377132416, -0.03593074530363083, 0.008167401887476444, -0.02335207164287567, 0.010060026310384274, 0.007159215398132801, 0.013910788111388683, 0.02949582226574421, 0.001530477893538773, 0.0027588638477027416, 0.020979011431336403, 0.016232892870903015, -0.0027861613780260086, -0.024414854124188423, 0.032232847064733505, 0.008298429660499096, -0.009193786419928074, 0.008669675327837467, 0.006169227417558432, -0.002926288405433297, -0.005492249969393015, 0.02416735701262951, -0.01387439202517271, 0.015592312440276146, -0.0007702434668317437, 0.0022256532683968544, 0.030485808849334717, -0.008203797973692417, 0.020600486546754837, 0.0207169558852911, -0.04751942679286003, 0.044957105070352554, -0.010780679062008858, 0.005899892188608646, 0.031126389279961586, -0.00513556320220232, 0.0008330276468768716, -0.0030227394308894873, 0.00202001235447824, -0.012076398357748985, -0.019828878343105316, 0.02148856408894062, -0.020280197262763977, -0.0010445830412209034, 0.001163781969808042, -0.0029444866813719273, 0.008727909997105598, 0.0028280173428356647, -0.002180157694965601, -0.0021474005188792944, 0.014143726788461208, -0.00042151837260462344, 0.06545568257570267, -0.008094608783721924, 0.019042711704969406, -0.004465865436941385, 0.021998116746544838, 0.03415459021925926, 0.007126458454877138, -0.01649494841694832, -0.002451312495395541, 0.011312069371342659, 0.024356618523597717, 0.009768852964043617, -0.02260958030819893, -0.0137215256690979, -0.022070910781621933, 0.000514102284796536, 0.0023130052722990513, 0.03657132387161255, -0.019683292135596275, 0.02541939914226532, 0.01332116313278675, 0.01680067926645279, -0.006766131613403559, 0.020833425223827362, -0.0009026362095028162, 0.021080922335386276, 0.027705106884241104, 0.013743364252150059, 0.00010867803212022409, 0.022085469216108322, -0.022696932777762413, -0.0018980837194249034, -0.0033685071393847466, -0.00459325360134244, 0.011807063594460487, 0.027675990015268326, -0.016422154381871223, -0.013568660244345665, -0.04405447095632553, -0.016975384205579758, 0.006948114838451147, -0.01263690646737814, -0.013029989786446095, -0.005623277742415667, 0.013699688017368317, -0.034271057695150375, 0.0005391249433159828, -0.02479337900876999, -0.0063912468031048775, -0.005910811014473438, 0.014696955680847168, 0.00045768750715069473, 0.011989046819508076, -0.0021219230256974697, -0.043996233493089676, 0.011428538709878922, -0.03013640269637108, -0.03325195237994194, -0.022303849458694458, 0.0067843301221728325, -0.0363675020635128, 0.008742468431591988, 0.004844390321522951, -0.024866171181201935, -0.019799761474132538, -0.00548497075214982, 0.01977064460515976, 0.02306089922785759, 0.009834366850554943, 0.001698812237009406, 0.012804331257939339, -0.0021419411059468985, 0.011486773379147053, -0.00753410067409277, 0.03275695815682411, 0.0076796868816018105, 0.028898917138576508, -0.014238358475267887, 0.013925347477197647, -0.009470400400459766, -0.014631441794335842, -0.0252446960657835, 0.015912601724267006, 0.0005905351717956364, 0.009630545973777771, 0.00670425733551383, -0.003930835053324699, 0.045248277485370636, -0.013364839367568493, 9.798652899917215e-05, 0.020760633051395416, 0.0031191904563456774, -0.048247359693050385, -0.01866418682038784, 0.024196473881602287, 0.012513157911598682, -0.01396174356341362, 0.020484019070863724, -0.0030445773154497147, 0.022362083196640015, -0.019042711704969406, -0.006405805237591267, -0.011042734608054161, 0.021837972104549408, 0.025040874257683754, -0.010846192948520184, -0.013211973011493683, 0.04658767580986023, -0.036920733749866486, 0.04035657271742821, -0.0027261069044470787, -0.035435751080513, 0.02022196166217327, 0.018081841990351677, 0.015199229121208191, -0.015635987743735313, 0.01835845597088337, -0.0191155057400465, 0.01974152773618698, -0.0021237428300082684, -0.006842564791440964, -0.0005150121869519353, 0.008567764423787594, -0.005055490415543318, 0.030544044449925423, 0.02790892869234085, 0.004021826665848494, 0.05147938057780266, 0.03229108080267906, 0.04501533880829811, 0.03994893282651901, -0.02713732048869133, -0.026569534093141556, 0.008516808971762657, -0.03243666887283325, -0.046325620263814926, -0.013743364252150059, -0.021051805466413498, -0.03875512257218361, 0.011355745606124401, -0.003923555836081505, 0.003590526757761836, -0.060622211545705795, 0.017470378428697586, -0.012061839923262596, -0.0065477523021399975, 0.0009781591361388564, 0.015796134248375893, -0.0036669594701379538, 0.010249288752675056, 0.023148251697421074, 0.014063654467463493, -0.029524939134716988, 1.521265039627906e-05, -0.005430375691503286, -0.013059107586741447, 0.006696978118270636, 0.01617465913295746, -0.02198355831205845, 0.02509910985827446, 0.03654220700263977, 0.031446680426597595, -0.018707863986492157, -0.007406712509691715, -0.004695164039731026, -0.02354133501648903, 0.018780656158924103, -0.0026223764289170504, 0.006689698901027441, -0.01774699240922928, 0.028302012011408806, -0.01728111505508423, 0.0009353931527584791, 0.015388491563498974, 0.033164601773023605, 0.03360135853290558, 0.003328470978885889, -0.0047606779262423515, 0.007050025276839733, 0.023308396339416504, 0.004338477272540331, 0.014849821105599403, 0.0013630534522235394, 0.00043129996629431844, 0.006809807848185301, -0.005004535429179668, 0.0010937184561043978, -0.007504983339458704, -0.0008707891684025526, -0.02933567576110363, 0.026089098304510117, -0.0022602302487939596, 0.023483099415898323, -0.01269514113664627, -0.007483145222067833, -0.022303849458694458, 0.01585436798632145, -0.01144309714436531, -0.061903372406959534, -0.0023766993544995785, -0.0063584898598492146, -0.021095480769872665, 0.025186462327837944, 0.015170111320912838, 0.019887113943696022, 0.02195444144308567, 0.06365040689706802, 0.013292046263813972, -0.024895288050174713, 0.021677827462553978, 0.013998140580952168, -0.0001696992403594777, 0.02150312438607216, -0.010467668063938618, 0.012265660800039768, -0.004371234215795994, 0.007111899554729462, 0.0351736955344677, 0.02166326902806759, -0.026918940246105194, -0.0029845228418707848, -0.001247494132257998, -0.014245637692511082, -0.006252939347177744, 0.01806728169322014, 0.00529206870123744, 0.004476784262806177, -0.009142830967903137, 0.005190158262848854, -0.01914462260901928, 0.013641453348100185, -0.007956300862133503, -0.013466749340295792, -0.008429457433521748, 0.01490077655762434, -0.029277442023158073, 0.009623266756534576, 0.014100050553679466, 0.010169215500354767, -0.01356138102710247, 0.008982686325907707, -0.016189217567443848, -0.01757228933274746, -0.010918986052274704, 0.002651493763551116, -0.015097318217158318, 0.007475866004824638, 0.012316616252064705, -0.005743386689573526, -0.0054740519262850285, -0.035202812403440475, -0.022027235478162766, 0.014980848878622055, -0.0167861208319664, -0.010802516713738441, -0.0005477691302075982, -0.0001867601677076891, 0.000989078194834292, -0.03502810746431351, -0.04880058765411377, -0.009441283531486988, 0.06464039534330368, -0.05217819660902023, -0.0004344846529420465, 0.007031827233731747, 0.020294755697250366, 0.03808542340993881, 0.011275673285126686, 0.01914462260901928, -0.0035614094231277704, -0.0062820566818118095, 0.040210988372564316, 0.03045669198036194, 0.02147400565445423, -0.012433085590600967, -0.014340268447995186, -0.021066363900899887, 0.013328442350029945, 0.0006460400181822479, 0.024050887674093246, 0.008829819969832897, -0.009281137958168983, -0.00045723255607299507, -0.036163683980703354, -0.014820704236626625, -0.023876182734966278, 0.022172821685671806, 0.007796156220138073, -0.007392153609544039, 0.008764306083321571, -0.006154668517410755, 0.015257463790476322, -0.00046087222290225327, -0.017688756808638573, -0.006900799460709095, -0.04073509946465492, -0.006038199178874493, -0.016130981966853142, -0.009674222208559513, 0.04772324860095978, -0.00595448724925518, -0.017135528847575188, -0.030311105772852898, 0.009856204502284527, 0.006453121080994606, -0.005572322756052017, -0.030485808849334717, 0.014318430796265602, 0.020425783470273018, -0.015170111320912838, -0.008997244760394096, 0.02841848134994507, 0.006449481006711721, -0.007319360505789518, -0.009950836189091206, -0.004560496658086777, 0.00973245594650507, -0.006675140466541052, 0.024807937443256378, 0.003139208536595106, 0.011195600964128971, -0.027355700731277466, 0.008094608783721924, -0.02068783901631832, -0.00887349620461464, -0.011741549707949162, -0.002212914638221264, -0.009921718388795853, -0.0038798798341304064, -0.005459493026137352, 0.017848903313279152, -0.0028371165972203016, -0.021284744143486023, -0.009113714098930359, -0.0067624920047819614, -0.018285661935806274, -0.008036374114453793, 0.012527717277407646, -0.032873429358005524, -0.00600544223561883, -0.008655115962028503, -0.0069408356212079525, -0.012345734052360058, -0.01169787347316742, 0.02135753631591797, -0.049965281039476395, -0.001542306854389608, 0.027850694954395294, -0.03042757511138916, -0.0018334797350689769, -0.002729746513068676, 0.020964452996850014, -0.021605033427476883, -0.01913006417453289, -0.005688791628926992, 0.006937196012586355, -0.04277331009507179, -0.00260963779874146, 0.01821286976337433, -0.030864333733916283, 0.03776513412594795, 0.06277689337730408, 0.03660044074058533, 0.03121374174952507, -0.037124551832675934, -0.030194636434316635, 0.004167412873357534, -0.03284430876374245, -0.047752365469932556, -0.011202880181372166, -0.03595986217260361, 0.008218357339501381, 0.0329025462269783, 0.007348477840423584, -0.022027235478162766, 0.007752480451017618, 0.023803390562534332, -0.0034049039240926504, -0.02665688470005989, -0.002171058440580964, -0.014835262671113014, -0.01726655662059784, -0.003333930391818285, 0.000351682334439829, 0.003434021258726716, 0.02256590500473976, -0.008123725652694702, -0.018780656158924103, -0.020280197262763977, -0.002276608720421791, 0.003490435890853405, 0.008676954545080662, -0.02103724703192711, 0.0005086427554488182, -0.095388263463974, -0.012389409355819225, -0.014340268447995186, 0.026409387588500977, 0.008735189214348793, -0.0017870740266516805, 0.008553205989301205, 0.00783255323767662, -0.030689630657434464, 0.02039666660130024, 0.019989024847745895, -0.01694626733660698, 0.031097272410988808, 0.018926242366433144, -0.013430353254079819, 0.014405782334506512, -0.01646583154797554, -0.006238380912691355, -5.0727790949167684e-05, 0.0015295679913833737, -0.015534077771008015, 0.022929871454834938, 0.03106815554201603, -0.017630523070693016, -0.02354133501648903, 0.03907541185617447, -0.01599995419383049, -0.0037270139437168837, -0.014485854655504227, -0.04687884822487831, 0.011843460611999035, 0.006951754447072744, -0.013357560150325298, -0.02617644891142845, -0.005455853417515755, 0.0213138610124588, 0.011777946725487709, -0.0024749701842665672, 0.010918986052274704, 0.027224672958254814, 0.012229264713823795, 0.0027788819279521704, -0.007483145222067833, -0.015534077771008015, -0.005790702532976866, -0.022376641631126404, 0.010664209723472595, -0.029146414250135422, -0.004072781652212143, 0.014078212901949883, 0.0003732928307726979, 0.006915357895195484, -0.012003605253994465, -0.011734270490705967, -0.005459493026137352, 0.005583241581916809, 0.018474925309419632, -0.013685129582881927, 0.014194682240486145, -0.0015705141704529524, 0.05191614106297493, 0.011159203946590424, 0.008145563304424286, -0.0064931572414934635, -0.022958988323807716, 0.006733374670147896, 0.03502810746431351, 0.022973546758294106, 0.027967164292931557, 0.009150110185146332, 0.018926242366433144, -0.004305720329284668, 0.001797993085347116, 0.030631396919488907, 0.0007374865235760808, 0.01806728169322014, 0.027865253388881683, 0.011959929950535297, 0.01428931299597025, 0.0013566840207204223, -0.023468540981411934, 0.012767934240400791, 0.014136447571218014, -0.006911718286573887, -0.008465854451060295, -0.014704234898090363, 0.004207449499517679, -0.017950814217329025, 0.009252021089196205, -0.008451295085251331, 0.03342665731906891, 0.007519541773945093, 0.036309268325567245, 0.019086388871073723, 0.0005063680000603199, 0.05313906818628311, -0.029248325154185295, 0.017004501074552536, -0.012141912244260311, -2.95438203465892e-05, -0.0012757015647366643, -0.04481152072548866, 0.006977232173085213, -0.007115539163351059, 0.005808900576084852, -0.006959034129977226, 0.01707729510962963, 0.0042110891081392765, -0.022536788135766983, -0.013393956236541271, -0.00239307782612741, -0.007512262556701899, -0.0407642163336277, -0.0017051816685125232, -0.02100813016295433, 0.002928108209744096, -0.0077233631163835526, -0.0036942570004612207, -0.012658745050430298, 0.0074904244393110275, -0.009252021089196205, 0.030165519565343857, 0.011828902177512646, -0.03563957288861275, 0.006067316513508558, -0.008494971320033073, 0.00025818852009251714, -0.008596882224082947, 0.001717010629363358, 0.023002663627266884, -0.015184669755399227, -0.0014158285921439528, -0.006558671128004789, 0.006038199178874493, -0.005153761710971594, 0.01537393219769001, 0.041492149233818054, -0.014966290444135666, 0.038201894611120224, -0.027515845373272896, 0.017630523070693016, 0.006740654353052378, -0.014718793332576752, 0.011574125848710537, -0.029539497569203377, 0.0009008163469843566, -0.005721548572182655, -0.00274248537607491, 0.005750665906816721, -0.013554101809859276, 0.008152843452990055, 0.001118286163546145, 0.03593074530363083, 0.007002709899097681, -0.011901695281267166, -0.027180995792150497, -0.009681501425802708, 0.005517727695405483, -0.01427475456148386, -0.012491320259869099, -0.014056375250220299, 0.00482255220413208, 0.016189217567443848, 0.012527717277407646, 0.011588684283196926, -0.0054194568656384945, -0.006220182403922081, -0.0020254720002412796, 0.016247451305389404, 0.007999977096915245, 0.021270185708999634, -0.006340291351079941, 0.005892612971365452, -0.01230933703482151, 0.0019508588593453169, -0.021721502766013145, 0.014529530890285969, 0.006613266188651323, 0.020979011431336403, -0.007039106450974941, 0.009623266756534576, 0.003996348939836025, -0.014995407313108444, 0.01898447796702385, -0.012447644025087357, 0.009470400400459766, -0.004047304391860962, 0.016844356432557106, 0.0016878932947292924, 0.004684245213866234, 0.015927162021398544, 0.024706026539206505, -0.009128272533416748, 0.0025204659905284643, 0.002165599027648568, 0.003701536450535059, 0.024211032316088676, 0.018431248143315315, -0.017659639939665794, -0.002793440595269203, -0.013750643469393253, -0.00035418462357483804, 0.009921718388795853, 0.028986269608139992, -0.0003537296724971384, 0.02119739167392254, -0.0361054465174675, 0.012571392580866814, 0.007883507758378983, -0.03826012834906578, -0.008968126960098743, -0.0027315663173794746, 0.011515891179442406, 0.008669675327837467, 0.019377561286091805, -0.0025368444621562958, 0.017470378428697586, -0.004112818278372288, 0.008436736650764942, -0.03403811901807785, 0.040385689586400986, -0.014857100322842598, 0.025215579196810722, -0.0238470658659935, 0.014471296221017838, 0.02463323250412941, 0.0014604143798351288, -0.04219096153974533, -0.004491343162953854, -0.0019071829738095403, 0.00670425733551383, 0.0029426668770611286, 0.010060026310384274, -0.011392142623662949, -0.017295673489570618, 0.0017215601401403546, 0.03660044074058533, -0.02212914451956749, 0.02463323250412941, -0.0010564118856564164, -0.017979931086301804, -0.015053641982376575, -0.030806099995970726, 0.0046369293704628944, 0.025186462327837944, 0.025797924026846886, -0.020120052620768547, -0.015563194639980793, 0.0011883496772497892, 0.011050013825297356, 0.015912601724267006, 0.00791990477591753, -0.008829819969832897, 0.014027257449924946, 0.004797074478119612, 0.013481308706104755, -0.00024294744071085006, 0.00651135528460145, 0.0159853957593441, 0.005211995914578438, -0.028986269608139992, 0.0054121776483953, 0.015563194639980793, -0.035231929272413254, 0.025288371369242668, -0.004349396098405123, 0.0028607742860913277, 0.008647836744785309, 0.031621385365724564, -0.018009047955274582, -0.005830738693475723, -0.006620545405894518, -0.02900082804262638, 0.01144309714436531, 0.014551368542015553, 0.013393956236541271, -0.01201088447123766, -0.03165050223469734, 0.0023111854679882526, 0.02999081462621689, -0.0032483984250575304, 0.0003243848914280534, -0.02509910985827446, 0.01693170890212059, 0.006136470474302769, 0.008982686325907707, 0.014551368542015553, -0.010147377848625183, 0.035435751080513, -0.005619638133794069, 0.004494982771575451, 0.009994512423872948, 0.023614127188920975, 0.00037101804628036916, 0.031184624880552292, -0.019712409004569054, 0.008254753425717354, 0.004393072333186865, 0.01770331710577011, 0.0032083620317280293, 0.020833425223827362, -0.007796156220138073, -0.04519004374742508, -0.021605033427476883, -0.014121889136731625, -0.00022065451776143163, 0.012454923242330551, 0.008138284087181091, -0.0023039060179144144, -0.0020673279650509357, -0.011151924729347229, 0.007970860227942467, -0.01128295250236988, -0.02779245935380459, -0.00231482507660985, 0.01945035345852375, 0.023410307243466377, -0.012964475899934769, 0.0007352117681875825, -0.036775145679712296, -0.003530472284182906, 0.001028204569593072, 0.021095480769872665, 0.011865298263728619, -0.0488879419863224, -0.02118283323943615, -0.01835845597088337, -0.012120074592530727, 0.009747015312314034, 0.0050518508069217205, -0.010081863962113857, 0.05672049522399902, 0.007141016889363527, -0.010555019602179527, 0.0090918755158782, 0.002010913332924247, -0.005022733472287655, 0.008312988094985485, -0.005943567957729101, -0.003554129973053932, 0.008072770200669765, 0.0015250183641910553, -0.012287499383091927, -0.007614172995090485, 0.016262009739875793, 0.0004165138234384358, 0.006809807848185301, 0.029146414250135422, 0.025375723838806152, -0.02073151431977749, 9.394877997692674e-05, 0.005252032540738583, 0.013852553442120552, -0.0016496768221259117, -0.00529206870123744, 0.0260454211384058, 0.004276602994650602, 0.010009070858359337, -0.03325195237994194, -0.047694131731987, -0.02477881871163845, -0.008444015868008137, -0.003719734726473689, 0.034300174564123154, -0.010307523421943188, 0.017819786444306374, 0.00733027933165431, -0.015781573951244354, 0.022667815908789635, -0.030835216864943504, 0.00823291577398777, 0.011093690060079098, -0.0024494926910847425, 0.008021815679967403, -0.027661431580781937, 0.002807999262586236, 0.01770331710577011, 0.007810714654624462, -0.013670571148395538, -0.014565927907824516, -0.007115539163351059, -0.0171209704130888, 0.005612358916550875, -0.0010254747467115521, -0.02116827480494976, -0.009747015312314034, -0.015737898647785187, -0.006977232173085213, 0.0004995436174795032, -0.006798888556659222, -0.02243487723171711, -0.014893497340381145, 0.017514053732156754, 0.009506797417998314, 0.023919859901070595, -0.005437655374407768, -0.03345577418804169, 0.01742670126259327, -0.03205814212560654, -0.004920823033899069, 0.0032938942313194275, -0.012942638248205185, -0.014849821105599403, 0.04137567803263664, -0.022871635854244232, 0.02115371637046337, 0.01630568690598011, 0.016203776001930237, -0.0008557755500078201, -0.034125473350286484, -0.010686048306524754, 0.01144309714436531, -0.0024731503799557686, -0.016844356432557106, -0.02303178235888481, 0.00878614466637373, -0.013284767046570778, 0.026584092527627945, -0.018256545066833496, 0.006638743449002504, -0.03150491416454315, 0.003448579926043749, -0.014682397246360779, -0.01850404217839241, -0.008888054639101028, 0.01582525111734867, -0.019013594835996628, 0.005899892188608646, -0.0032629570923745632, -0.018576834350824356, 0.015388491563498974, 0.003710635472089052, -0.00854592677205801, 0.02073151431977749, 0.06132102757692337, -0.02904450334608555, 0.00431663915514946, 0.004120097495615482, -0.0041564940474927425, -0.00490626459941268, -0.04411270469427109, -0.01848948374390602, -0.00019938523473683745, -0.005379420705139637, 0.0008553205989301205, 0.0028571346774697304, 0.019843436777591705, -0.017062736675143242, 0.017339350655674934, 0.010809795930981636, 0.007941742427647114, -0.010525902733206749, 0.013474028557538986, 0.003412183141335845, 0.0015941719757393003, 0.0144203407689929, -0.021575916558504105, -0.010074584744870663, -0.008902613073587418, 0.05211995914578438, 0.0035104539711028337, 0.011399421840906143, -0.001212007482536137, 0.009950836189091206, -0.018620511516928673, 0.019057270139455795, 0.03747396171092987, -0.028112750500440598, -0.018314778804779053, -0.022973546758294106, -0.0018999036401510239, -0.007825273089110851, -0.014136447571218014, 0.015053641982376575, 0.007621452212333679, -0.022463994100689888, -0.012855286709964275, -0.0048152729868888855, -0.003574148053303361, -0.0177178755402565, 0.015970837324857712, -0.015155552886426449, -0.0036451215855777264, 0.014646000228822231, 0.029059061780571938, -0.0013266567839309573, 0.009987233206629753, 0.0017361188074573874, -0.0008949019247666001, 0.04312271624803543, 0.005943567957729101, 0.02288619428873062, -0.006646023131906986, 0.007031827233731747, 0.010227450169622898, -0.03549398481845856, -0.005011814646422863, -0.00885893777012825, 0.01460232399404049, -0.005266590975224972, -0.002826197538524866, -0.019086388871073723, -0.04798530414700508, -0.00887349620461464, 0.0029717839788645506, -0.006038199178874493, -0.011872577480971813, 0.012418527156114578, 0.0063584898598492146, 0.00903364084661007, -0.014682397246360779, -0.007927183993160725, -0.0001977928914129734, 0.015796134248375893, -0.005714269354939461, -0.01899903640151024, -0.0022565904073417187, -0.005703350529074669, -0.015417608432471752, -0.004192890599370003, -0.02416735701262951, -0.012047281488776207, -0.012804331257939339, -0.0092593003064394, 0.009783411398530006, 0.008625999093055725, -0.00011169212666573003, -0.004807993769645691, -0.021706944331526756, -0.014791586436331272, -1.2219880773045588e-05, 0.004440387710928917, 0.01294991746544838, 0.01821286976337433, 0.023322954773902893, 0.0007010899134911597, 0.0016187396831810474, -0.005692431703209877, -0.007810714654624462, -0.012513157911598682, -0.0035978059750050306, -0.011151924729347229, -0.010533181950449944, 0.010933544486761093, 0.0013448551762849092, 0.06825094670057297, 0.0027133680414408445, -0.007264765445142984, -0.013372118584811687, 0.004757038317620754, -0.023890741169452667, 0.01096994150429964, 0.02006181702017784, 0.020352989435195923, 0.0010036368621513247, 0.011363024823367596, -0.012207427062094212, 0.008771585300564766, 0.01091170683503151, -0.0171209704130888, 0.014529530890285969, 0.012338454835116863, 0.029757877811789513, -0.004775236826390028, 0.014434900134801865, 0.013554101809859276, 0.00029913472826592624, -0.010686048306524754, 0.03619280084967613, -0.006878961343318224, 0.015257463790476322, -0.003080973867326975, 0.01161052193492651, -0.005266590975224972, 0.014966290444135666, -0.005932649131864309, -0.004491343162953854, -0.014245637692511082, 0.006249299738556147, -0.006245660129934549, 0.030835216864943504, -0.004061862826347351, 0.021765179932117462, -0.008749747648835182, 0.022041793912649155, -0.000601454172283411, -0.005492249969393015, 0.02776334248483181, 0.011799784377217293, -0.009055479429662228, -0.011530449613928795, -0.006846204400062561, -0.0005950847407802939, 0.009790690615773201, -0.021517682820558548, -0.025055434554815292, -0.011130087077617645, 0.013787039555609226, 0.0035850671119987965, 0.012753375805914402, -0.0013958103954792023, 0.006900799460709095, -0.019697850570082664, -0.012775213457643986, -0.000947222055401653, -0.009543194435536861, -0.007195611950010061, -0.011901695281267166, -0.01693170890212059, 0.006274777464568615, -0.02073151431977749, -0.011268394067883492, -0.022143704816699028, 0.009506797417998314, -0.00278434157371521, -0.005080968141555786, 0.00885893777012825, 0.01058413740247488, -0.006529553793370724, -0.000175158740603365, 0.023148251697421074, 0.006067316513508558, 0.014951732009649277, 0.001028204569593072, -0.004414909984916449, 0.0012602329952642322, -0.00675157317891717, -0.01614554040133953, -0.006817087065428495, 0.003048216924071312, -0.001040033414028585, 0.015432166866958141, -0.012207427062094212, -0.013619615696370602, -0.03418370708823204, -0.014871659688651562, 0.0037051760591566563, 0.0006988150998950005, 0.0037452122196555138, 0.014398503117263317, 0.004909904208034277, -0.013277486898005009, 0.0027679631020873785, 0.017295673489570618, 0.009055479429662228, 0.007421270944178104, 0.02260958030819893, -0.002287527546286583, 0.007235648110508919, 0.0013703327858820558, -0.0163202453404665, 0.02150312438607216, 0.007555938325822353, -0.023090016096830368, -0.002309365663677454, -0.0020582289434969425, -0.008465854451060295, -0.014995407313108444, -0.002231112914159894, -0.011188320815563202, -0.0022056351881474257, 0.020833425223827362, -0.009011803194880486, -0.0046587674878537655, -0.008378501981496811, -0.01356138102710247, 0.010795237496495247, 7.250889029819518e-05, -0.019173739477992058, 0.004181971773505211, -0.0049171834252774715, -0.001076430082321167, -0.00529206870123744, -0.0277779009193182, -0.01805272325873375, 0.019581381231546402, 0.00588169414550066, 0.015024525113403797, 0.009397607296705246, 0.020032700151205063, -0.013466749340295792, -0.012571392580866814, -0.005226554814726114, 0.019537705928087234, -0.01161052193492651, 0.007028187625110149, 0.032553136348724365, 0.009594148956239223, 0.017761550843715668, 0.00607459619641304, 0.015752457082271576, -0.025011757388710976, -0.020964452996850014, 0.0138889504596591, -0.01340851467102766, 0.024982640519738197, -0.03415459021925926, 0.01027112640440464, -0.01959594152867794, 0.011617801152169704, -0.00443674810230732, -0.01883889175951481, 0.027195554226636887, -0.01649494841694832, -0.0029608651529997587, -0.0060782358050346375, -0.002576880855485797, -0.005819819867610931, -0.0034958955366164446, -0.0009076407295651734, 0.009586869738996029, 0.00917194876819849, 0.014908055774867535, 0.011006338521838188, -0.014231078326702118, -0.0015204688534140587, 0.00264603435061872, 0.00556868314743042, -0.020047258585691452, 0.011028176173567772, -0.011530449613928795, -0.01567966490983963, -0.0017142808064818382, -0.03092256933450699, 0.0106569305062294, 0.004669686313718557, 0.0010846193181350827, 0.010642372071743011, 0.008516808971762657, 0.010445830412209034, -0.0016569561557844281, -0.003818005556240678, -0.020105494186282158, -0.0016560462536290288, 0.007737921550869942, -0.005990883801132441, 0.020134611055254936, -0.005827099084854126, -0.007395793218165636, -0.026773354038596153, 0.0010891688289120793, 0.01915918104350567, 0.01869330368936062, 0.013211973011493683, -0.010700606741011143, 0.006951754447072744, -0.006733374670147896, 0.016291126608848572, -0.0006082784966565669, -0.015737898647785187, -0.021605033427476883, -0.0138889504596591, -0.010038187727332115, -0.010642372071743011, -0.00015354824427049607, -0.06522274762392044, -0.020920777693390846, 0.0005241113249212503, 0.00799269787967205, -0.02904450334608555, -0.0017424882389605045, 0.01786346174776554, 0.002494988264515996, 0.02240576036274433, 0.009070037864148617, 0.009543194435536861, 0.02303178235888481, 0.005612358916550875, -0.0033721469808369875, -0.023250160738825798, 0.004043664783239365, 0.01003090851008892, 0.009878043085336685, 0.022056352347135544, -0.0009745195275172591, 0.030194636434316635, -0.00034895259886980057, -0.02495352365076542, 0.020105494186282158, -0.0018926243064925075, 0.030631396919488907, 0.016917148604989052, 0.007060944568365812, 0.016130981966853142, -0.006897159852087498, -0.00997267384082079, 0.002060048747807741, -0.011603242717683315, 3.796053715632297e-05, 0.005728828255087137, -0.016815239563584328, -0.0016533165471628308, -0.008029094897210598, -0.009965394623577595, -2.7169508030056022e-05, -0.0016960825305432081, -0.011712432838976383, 0.006274777464568615, 0.021241066977381706, 0.014544089324772358, 0.003614184446632862, -0.009528635069727898, 3.5031745937885717e-05, -0.0005732467980124056, -0.021415771916508675, 0.007392153609544039, 0.009288417175412178, -0.004400351550430059, -0.013073666021227837, 0.0011692414991557598, 0.00021542249305639416, -0.018795214593410492, -0.004269323777407408, -0.007104620337486267, 0.0018653267761692405, 0.014878938905894756, -0.008531368337571621, 0.010474947281181812, 0.020920777693390846, -0.002891711425036192, -0.006103713531047106, -0.0015887124463915825, -0.012615068815648556, 0.0041564940474927425, 0.02115371637046337, -0.0035923465620726347, 0.008575043641030788, 0.002402177080512047, -0.033048130571842194, 0.003767050337046385, -0.011341187171638012, -0.012716979719698429, 0.00029185539460740983, 0.005659674759954214, 0.0067297350615262985, -0.00018494033429306, -0.018285661935806274, 0.017455819994211197, -0.005030013155192137, 0.004800714086741209, 0.013990861363708973, -0.006551391910761595, 0.011945370584726334, 0.012040002271533012, 0.004363954998552799, -0.007774318102747202, 0.011435817927122116, -0.0021419411059468985, -0.01853315904736519, 0.017674198374152184, -0.0011073672212660313, -0.0023293837439268827, -0.0033721469808369875, -0.005528646521270275, 0.00416013365611434, 0.014325710013508797, -0.0014777027536183596, -0.009390328079462051, -0.0010491325519979, -0.009521355852484703, -0.01832933910191059, -0.00112738530151546, 0.009339372627437115, -0.017004501074552536, -0.006696978118270636, 0.0024749701842665672, 0.01058413740247488, 0.004578694701194763, 0.00753410067409277, -0.00830570887774229, 0.017834344878792763, 0.009317534975707531, 0.015970837324857712, 0.009528635069727898, -0.01946491189301014, 0.012505878694355488, 0.005401258356869221, -0.009841646067798138, -0.011545008048415184, -0.0034886160865426064, 0.020629605278372765, -0.005757945589721203, -0.00459325360134244, -0.017455819994211197, 0.001987255411222577, -0.01821286976337433, 0.0045241001062095165, 0.0027370259631425142, -0.003226560540497303, 0.018431248143315315, 0.0055978004820644855, 0.002613277407363057, -0.008531368337571621, 0.012469482608139515, 0.022056352347135544, 0.011377583257853985, -0.001000907039269805, 0.02806907333433628, -0.00764329032972455, -0.010977220721542835, 0.00040377501863986254, -0.00447314465418458, 0.009106434881687164, -0.036775145679712296, 0.0006892610108479857, -0.02256590500473976, 0.010569578967988491, -0.007301161997020245, -0.013896229676902294, 0.010707885958254337, 0.0055759623646736145, -0.00710098072886467, 0.015461284667253494, -0.034766051918268204, -0.003484976477921009, -0.00313374912366271, -0.01418740302324295, -0.021284744143486023, 0.0015623249346390367, -0.021605033427476883, 0.010205612517893314, -0.008989965543150902, -0.005248392932116985, -0.009936277754604816, -0.004633289761841297, 0.025958070531487465, 0.007614172995090485, -0.012971756048500538, -0.01067148894071579, 0.02226017415523529, 0.008436736650764942, 0.011566845700144768, 0.012818889692425728, 0.00816012267023325, -0.01943579502403736, -0.013736085034906864, -0.008174681104719639, -0.0015250183641910553, -0.0030645953956991434, 0.012891682796180248, 0.006205623969435692, -0.025797924026846886, 0.03558133542537689, 0.0022584102116525173, 0.002702448982745409, 0.018169192597270012, -0.0037998072803020477, 0.00470244325697422, 0.007759759668260813, 0.013619615696370602, -0.03182520344853401, 0.001719740335829556, 0.020207403227686882, 0.02413823828101158, -0.005281149875372648, 0.0029208287596702576, 0.0007570497109554708, -0.0191155057400465, 0.005532286129891872, 0.019100947305560112, -0.0019017234444618225, 0.022347524762153625, -0.0022056351881474257, 0.009492238983511925, 0.0012647826224565506, 0.020163727924227715, 0.018314778804779053, 0.0018480384023860097, 0.0018125517526641488, 0.012687861919403076, -0.01350314635783434, 0.023002663627266884, 0.0003598715993575752, -0.008378501981496811, 0.0055759623646736145, -0.010722444392740726, -0.0021364816930145025, -0.0006715176277793944, 0.02116827480494976, -0.024385735392570496, -0.005692431703209877, 0.030223753303289413, -0.014908055774867535, 0.0065259141847491264, 0.01530113909393549, -0.020207403227686882, 0.0009335733484476805, 0.007057304959744215, 0.007708804216235876, 0.02320648543536663, 0.012090957723557949, 0.003938114270567894, 0.022245613858103752, 0.003472237614914775, -0.009608708322048187, -0.010678768157958984, 0.02699173428118229, 0.007217450067400932, -0.0043675946071743965, -0.0005823459359817207, -0.011508611962199211, -0.004411270376294851, 0.015534077771008015, 0.04026922211050987, -0.039628639817237854, -0.0033539487048983574, -0.003583247307687998, -0.005925369914621115, 0.007686966098845005, -0.013867112807929516, -0.008312988094985485, 0.002891711425036192, 0.01293535903096199, -0.001452225144021213, 0.0060782358050346375, -0.010081863962113857, -0.005408538039773703, 0.005492249969393015, -0.008960847742855549, 0.008866216987371445, 0.007555938325822353, 0.011559566482901573, 0.008727909997105598, 0.012738817371428013, -0.005765224806964397, -0.011304790154099464, 0.01043855119496584, -0.017484936863183975, 0.0006310263997875154, 0.0213138610124588, 0.008655115962028503, 0.002558682346716523, 0.012469482608139515, 0.0020036338828504086, 0.014835262671113014, 0.00847313366830349, -0.005197437480092049, 0.012971756048500538, -0.019042711704969406, -0.001918101916089654, -0.0068389251828193665, -0.005896252579987049, 0.011508611962199211, -0.006646023131906986, 0.013372118584811687, -0.00940488651394844, -0.005288429092615843, -0.0076796868816018105, 0.016815239563584328, 0.001581433229148388, -0.02038210816681385, -0.006733374670147896, 0.018387572839856148, 0.018241986632347107, 0.022929871454834938, 0.006777050904929638, 0.00041787870577536523, -0.020134611055254936, 0.012578671798110008, -0.0018744259141385555, 0.011508611962199211, 0.004939021542668343, 0.0014385764952749014, 0.007730642333626747, -0.00651135528460145, -0.016291126608848572, -0.00909915566444397, -0.012615068815648556, 0.010300243273377419, 0.004214728716760874, 0.00799269787967205, 0.008021815679967403, 0.024866171181201935, 0.012287499383091927, -0.0044476669281721115, -0.012447644025087357, 0.004462225828319788, 0.00722108967602253, -0.002231112914159894, 0.005037292372435331, 0.009390328079462051, 0.012229264713823795, 0.02569601498544216, 0.02967052534222603, -0.0036505809985101223, 0.001251133857294917, -0.0023184646852314472, -0.0005805260734632611, 0.010038187727332115, -0.015781573951244354, -0.028607744723558426, -0.002047309884801507, 0.0008166491752490401, -0.0017088213935494423, -0.006431282963603735, -0.007242927327752113, -0.004720641765743494, 0.03808542340993881, 0.0016378479776903987, -0.002309365663677454, -0.023468540981411934, -0.01113736629486084, 0.014718793332576752, -0.0014813424786552787, 0.0004458586045075208, -0.0012347553856670856, -0.024123679846525192, -0.016130981966853142, -0.008400339633226395, -0.020804308354854584, 0.0010263846488669515, 0.03188344091176987, 0.007548659108579159, -0.007217450067400932, 0.021124599501490593, -0.014908055774867535, -0.0024331139866262674, -0.013969022780656815, 0.013787039555609226, -0.00579798175022006, -0.01137030404061079, -0.0181837510317564, -0.0029153693467378616, 0.015417608432471752, -0.023322954773902893, 0.006096433848142624, -0.015082759782671928, -0.00924474187195301, -0.003679698333144188, 0.006853483617305756, 0.022231055423617363, 0.008465854451060295, 0.0009426724864169955, 0.006085515022277832, -0.022347524762153625, 0.02589983493089676, -0.022653257474303246, 0.004192890599370003, -0.0005404897965490818, 0.005747026298195124, 0.0005655125132761896, -0.0035213730297982693, 0.02068783901631832, -0.019173739477992058, -0.02476426027715206, -0.006263858638703823, 0.008378501981496811, -0.011486773379147053, -0.013292046263813972, 0.006333012133836746, 0.004811633378267288, 0.007148296106606722, -0.011887135915458202, -0.003171965479850769, -0.004647848661988974, -0.013452190905809402, -0.012826168909668922, 0.011552287265658379, 0.013350280933082104, 0.001881705247797072, -0.02119739167392254, 0.020323872566223145, 0.005623277742415667, 0.03456223011016846, -0.017193764448165894, -0.013983582146465778, -0.015111876651644707, -0.002982703037559986, 0.013357560150325298, -0.003310272702947259, 0.006089154630899429, 0.009681501425802708, 0.012804331257939339, -0.00012818434333894402, -0.014100050553679466, -0.0025605023838579655, -0.00028503104113042355, 0.014383944682776928, -0.012724258936941624, 0.004575055092573166, -0.005947208032011986, -0.017339350655674934, -0.006409444846212864, 0.0008930820622481406, -0.021517682820558548, 0.004989976529031992, -0.011661477386951447, 0.0023857986088842154, 0.0047060828655958176, 0.01649494841694832, 0.01514099445194006, 0.010001791641116142, 0.008982686325907707, -0.0028462158516049385, 0.012818889692425728, -0.004393072333186865, 0.00258597987703979, -0.010460388846695423, 0.03010728396475315, -0.02115371637046337, -0.026540415361523628, 0.011777946725487709, -0.012920800596475601, 0.009281137958168983, -0.0025805204641073942, -0.017528612166643143, -0.029437586665153503, -0.0008566854521632195, 0.0007697885157540441, 0.010707885958254337, -0.02256590500473976, 0.0122219854965806, 0.0065732295624911785, 0.0032629570923745632, -0.030223753303289413, -0.003111911006271839, 0.024749701842665672, -0.02036754973232746, 0.013226532377302647, 0.0005095527158118784, -0.018241986632347107, 0.0023530414327979088, -0.008764306083321571, -6.255668995436281e-05, -0.025754248723387718, -0.004403991159051657, 0.015970837324857712, -0.0024895288515836, -0.009841646067798138, -1.468660502723651e-05, 0.004582334775477648, 0.010423991829156876, -0.026758795604109764, -0.012418527156114578, -0.004957219585776329, -0.02381794899702072, -0.018431248143315315, 0.01340851467102766, -0.008662396110594273, 0.01914462260901928, 0.0009845285676419735, -0.02856406755745411, 0.002494988264515996, -0.018009047955274582, 0.0012966296635568142, -0.01442762091755867, -0.016291126608848572, 0.007446748670190573, 8.490648906445131e-05, -0.0019745167810469866, -0.011130087077617645, 0.02651129849255085, -0.010809795930981636, -0.002871693344786763, 0.002171058440580964, -0.0014121888671070337, 0.016844356432557106, 0.009230183437466621, -0.02445852942764759, -0.007141016889363527, -0.025201020762324333, 0.02322104386985302, -0.0191155057400465, -0.01137030404061079, 0.024050887674093246, 0.0009736096253618598, 0.008218357339501381, -0.0018362095579504967, 0.007752480451017618, -0.003301173448562622, -0.009383048862218857, 0.00981252919882536, 0.0138889504596591, -0.005510448478162289, -0.0003928560181520879, 0.006049118470400572, 0.00235122162848711, -0.010016350075602531, 0.007636011112481356, -0.0026569534093141556, -0.007810714654624462, 0.00663146423175931, -0.016902590170502663, 0.015723340213298798, 0.0035286524798721075, -0.0283748060464859, -0.012658745050430298, -0.012090957723557949, 0.01646583154797554, 0.01067148894071579, -0.003401264315471053, -0.00438943225890398, 0.013182856142520905, -0.021532241255044937, -0.0010354839032515883, -0.01411460991948843, -0.014726072549819946, 0.022231055423617363, -0.008553205989301205, -0.0036032653879374266, 0.0022602302487939596, 0.019566822797060013, 0.007104620337486267, 0.0011119167320430279, 0.006063676904886961, 0.019857997074723244, 0.003241118974983692, -0.02932111732661724, 0.012396689504384995, -0.011545008048415184, 0.006154668517410755, 0.015199229121208191, -0.005961766466498375, -0.0010109161958098412, 0.019100947305560112, 0.016524065285921097, -0.021736061200499535, 0.0016132802702486515, -0.01585436798632145, -0.004251125268638134, -0.025972628965973854, -0.010278405621647835, -0.003949033562093973, 0.00948495976626873, 0.014616883359849453, -0.0028826124034821987, 0.009856204502284527, -0.01787802018225193, -0.004014547448605299, -0.03013640269637108, 0.0018980837194249034, 0.02055681124329567, 0.0023639604914933443, 0.02100813016295433, 0.016873473301529884, 0.025812484323978424, 0.0011401241645216942, -0.029932580888271332, -0.004349396098405123, 0.012192867696285248, -0.0009117353474721313, 0.005910811014473438, -0.0048152729868888855, -0.012578671798110008, -0.001542306854389608, 0.017688756808638573, 0.011646918952465057, 0.01412916835397482, -0.008480412885546684, 0.002678791293874383, 0.0115231703966856, -0.01834389753639698, 0.016276568174362183, 0.017179204151034355, 0.009193786419928074, 0.006605986505746841, 0.018722422420978546, -0.0266423262655735, -0.010817076079547405, 0.017950814217329025, -0.018868008628487587, 0.012047281488776207, 0.010853472165763378, -0.0014331169659271836, 0.00973245594650507, -0.01646583154797554, 0.009936277754604816, 0.019071828573942184, -0.012615068815648556, -0.007817993871867657, -0.0003332565538585186, 0.008298429660499096, -0.014849821105599403, -0.0033721469808369875, -0.010918986052274704, 0.002535024657845497, 0.011792505159974098, -0.005361222196370363, 0.021852530539035797, 0.001996354665607214, -0.025492193177342415, -0.00198361580260098, -0.005852576810866594, 0.004222007934004068, 0.0037561312783509493, 0.017805226147174835, -0.025477634742856026, -0.0023257441353052855, 0.017441261559724808, -0.0004977238131687045, -0.0056305574253201485, -0.01898447796702385, 0.00572518864646554, -0.016567742452025414, -0.01961049996316433, 0.0038507624994963408, 0.010700606741011143, -0.0029717839788645506, 0.018605953082442284, -0.025958070531487465, 0.016917148604989052, 0.0018352996557950974, -0.009353931993246078, 0.011006338521838188, -0.01978520303964615, 0.008531368337571621, 0.028302012011408806, 0.009987233206629753, -0.003959952387958765, 0.0012711519375443459, -0.01930476725101471, -0.006635103840380907, 0.00870607141405344, -0.007191972341388464, -0.006467679515480995, -0.003956312779337168, -0.010889869183301926, -0.0015077299904078245, -0.00014615518739446998, 0.0085604852065444, 0.017921695485711098, 0.003912636544555426, -0.002696989569813013, -0.019726969301700592, 0.018227428197860718, -0.0012438545236364007, 0.022711491212248802, 0.008953568525612354, 0.0038289246149361134, -0.01216375082731247, -0.005961766466498375, 0.00040445744525641203, -0.012898962013423443, 0.012928079813718796, 0.026875264942646027, -0.005466772243380547, 0.004403991159051657, 0.011479494161903858, -0.018271103501319885, -0.005768864415585995, -0.015024525113403797, 0.015417608432471752, -0.00997267384082079, 0.0020946254953742027, -0.009383048862218857, -0.0038398434408009052, 0.013059107586741447, -0.0137215256690979, -0.008596882224082947, -0.01450041402131319, -0.0031191904563456774, -0.029131855815649033, -0.00072019814979285, -0.006609626114368439, 0.015330256894230843, -0.016116423532366753, -0.003457678947597742, 0.0030227394308894873, 0.0006123731727711856, 0.0047388398088514805, 0.005408538039773703, 0.010627813637256622, -0.014158285222947598, -0.012542275711894035, -0.01993078924715519, -0.005055490415543318, 0.016524065285921097, 0.0066824196837842464, 0.0043129995465278625, -0.0021164636127650738, 0.004673325922340155, -0.017514053732156754, -0.01490077655762434, -0.001118286163546145, -0.011872577480971813, 0.0035468507558107376, -0.01105729304254055, 0.01018377486616373, -0.0018544078338891268, -0.019581381231546402, -0.010504065081477165, -0.0038616815581917763, -0.004717002157121897, -0.008837099187076092, 0.01316101849079132, 0.035988979041576385, 0.013510425575077534, -0.010846192948520184, -0.008291150443255901, -0.017208322882652283, -0.00034258319647051394, 0.005383060313761234, -0.007585055660456419, -0.003080973867326975, 0.01537393219769001, -0.010627813637256622, 0.007512262556701899, 0.013699688017368317, -0.0005859856028109789, 0.02307545766234398, -0.0008412168826907873, -0.012214706279337406, -0.020949894562363625, -0.03485340252518654, -0.00854592677205801, 0.0009253841126337647, -0.010737002827227116, 0.017514053732156754, -0.021692385897040367, 0.009142830967903137, -0.01113736629486084, 0.00783255323767662, 0.002582340268418193, -0.012629627250134945, 0.0001482024963479489, 0.02476426027715206, -0.003060955787077546, -0.013757922686636448, 0.024385735392570496, 0.015315698459744453, 0.021517682820558548, -0.033630479127168655, -0.007512262556701899, -0.014966290444135666, 0.02274060808122158, -0.0038616815581917763, -0.011530449613928795, -0.0005946297897025943, -0.0040327454917132854, 0.003080973867326975, 0.003406723728403449, 0.005965406075119972, 0.0029299280140548944, 0.012585951015353203, 0.004225647542625666, 0.003770689945667982, -0.013852553442120552, -0.004203809890896082, -0.002684250706806779, -0.012214706279337406, -0.014980848878622055, 0.0319707915186882, -0.0024931684602051973, -0.004615091718733311, 0.014726072549819946, 0.00447314465418458, 0.012731538154184818, -0.005743386689573526, -0.0216487105935812, 0.014769748784601688, -0.015417608432471752, 0.006464039906859398, -0.0021492205560207367, -0.03106815554201603, 0.030835216864943504, 0.006500436458736658, -0.011581405065953732, -0.023293837904930115, -0.0019435795256868005, -0.009142830967903137, 0.02904450334608555, 0.021706944331526756, 0.023759713396430016, 0.009448562748730183, 0.011246555484831333, 0.0014868020080029964, 0.0145877655595541, 0.00521927559748292, 0.004029105883091688, -0.010096422396600246, 0.005150121636688709, -0.008720630779862404, -0.010387595742940903, 0.009921718388795853, -0.031796086579561234, 0.00933209341019392, 0.01201088447123766, 0.0037925278302282095, 0.003190163755789399, -0.02132841944694519, -0.006121911574155092, -0.021750621497631073, 0.019654175266623497, -0.008640557527542114, 0.005870774853974581, 0.00040991694550029933, 0.0015222886577248573, -0.000494539097417146, 0.024269266054034233, -0.002083706436678767, 0.002691530156880617, 0.015184669755399227, -0.001645127311348915, 0.008283871226012707, 0.028811564669013023, -0.033164601773023605, -0.015548636205494404, 0.003661500057205558, -0.009463121183216572, 0.02177973836660385, 0.009579590521752834, -0.012396689504384995, 0.002844395814463496, 0.011028176173567772, 0.022216496989130974, 0.003348489059135318, 0.00556868314743042, -0.020338431000709534, -0.018081841990351677, 0.001936300192028284, -0.0006319363019429147, -0.004877147264778614, -0.020352989435195923, 0.013233811594545841, 0.009739736095070839, -0.0144203407689929, 0.03156314790248871, 0.014507693238556385, 0.008567764423787594, -0.03531927987933159, -0.005794342141598463, 0.002789800986647606, 0.013110063038766384, 0.004174692556262016, 0.010533181950449944, 0.011508611962199211, -0.006187425460666418, -0.0028462158516049385, -0.0029681443702429533, 0.015577754005789757, -0.018547717481851578, 0.013517704792320728, 0.01003090851008892, 0.010329361073672771, -0.020309314131736755, 0.013015431351959705, -0.008109167218208313, -0.006889880169183016, 0.008509529754519463, 0.015024525113403797, 0.006009082309901714, 0.006413084454834461, 0.011581405065953732, 0.002167418831959367, -0.0005454943748190999, -0.010453109629452229, 0.018911683931946754, 0.002829837379977107, -0.005444934591650963, 0.010009070858359337, -0.0006478598224930465, 0.009470400400459766, 0.0023766993544995785, -0.0034467598889023066, -0.021677827462553978, -0.0039453934878110886, 0.011625080369412899, -0.009412165731191635, 0.01974152773618698, 0.010409433394670486, -0.00824747420847416, -0.006507715675979853, 0.003457678947597742, -0.0023039060179144144, 0.020149169489741325, -0.017368467524647713, 0.0069189975038170815, 0.005750665906816721, -0.001443126006051898, -0.007304801605641842, -0.0021546799689531326, 0.016858914867043495, -0.017936253920197487, 0.001918101916089654, 0.006362129468470812, 0.005379420705139637, 0.0053102667443454266, 0.008400339633226395, 0.00979797076433897, 0.016247451305389404, 0.007810714654624462, 0.009295697323977947, 0.0038252847734838724, 0.012425806373357773, 0.001839849166572094, 0.010547740384936333, 0.0018926243064925075, 0.010817076079547405, 0.019799761474132538, 0.010416712611913681, -0.0053284652531147, -0.00435303570702672, -0.002112823771312833, 0.01397630199790001, 0.004080061335116625, -0.005914451088756323, -0.011202880181372166, -7.182645640568808e-05, -0.0015313877956941724, 0.0004999985685572028, 0.006966313347220421, -0.02240576036274433, -0.0048152729868888855, -0.017310231924057007, 0.012112795375287533, 0.010467668063938618, -0.01034391950815916, -0.007093701511621475, -0.00264603435061872, 0.00305549637414515, 0.031009921804070473, -0.026118215173482895, 0.00035509452573023736, 0.003770689945667982, -0.007526820991188288, -0.010933544486761093, -0.02571057341992855, -0.0017843443201854825, -0.005874414462596178, 0.006049118470400572, 0.00443674810230732, 0.008094608783721924, 0.0019417597213760018, 0.02868053689599037, -0.013015431351959705, -0.007636011112481356, -0.015199229121208191, -0.010627813637256622, -0.01018377486616373, 0.019100947305560112, 5.010222230339423e-05, -0.017150087282061577, -0.008829819969832897, 0.01566510647535324, 0.008327546529471874, 0.016101865097880363, -0.014551368542015553, -0.01444217935204506, 0.0041346559301018715, -0.00870607141405344, 0.010591416619718075, -0.020309314131736755, 0.014464017003774643, -0.0002964049926958978, -0.0018362095579504967, -0.016262009739875793, -0.005714269354939461, 0.01348858792334795, -0.011231997050344944, -0.028826123103499413, -0.004884426482021809, 0.009586869738996029, -0.028957150876522064, 0.002795260399580002, 0.013808878138661385, 0.002087346278131008, 0.011246555484831333, -0.0295103807002306, -0.005481331143528223, -0.006598707288503647, 0.024502204731106758, -0.00745038827881217, 0.007348477840423584, 0.037881601601839066, -0.003748851828277111, 0.006820726674050093, 0.03371782973408699, -0.006835285574197769, 0.0004219733236823231, 0.023090016096830368, -0.004069142043590546, 0.008029094897210598, -0.002913549542427063, -0.011181041598320007, 0.02177973836660385, 0.010787958279252052, -0.0011956290109083056, -0.0006883511086925864, -0.0010209252359345555, -0.006544112227857113, 0.0319707915186882, -0.014049096032977104, 0.01961049996316433, 0.0033321105875074863, -0.007665128447115421, -0.02732658199965954, 0.000947222055401653, -0.0061109927482903, 0.00026978994719684124, -0.011741549707949162, -0.006522274576127529, -0.014937173575162888, -0.013794319704174995, -0.004338477272540331, -0.017193764448165894, 0.01803816482424736, -0.012083678506314754, 0.010336640290915966, 0.0042802426032722, 0.04029833897948265, -0.02087710238993168, -0.009252021089196205, 0.0021510403603315353, 0.02572513185441494, 0.009273858740925789, -0.014012699015438557, 0.0024039968848228455, 0.009164669550955296, 0.004058223217725754, 0.011785225942730904, -0.0025368444621562958, -0.0006956304423511028, -0.013837995007634163, 0.004902624990791082, 0.0026169170159846544, -0.019683292135596275, 0.014951732009649277, -0.00824747420847416, -0.02368692122399807, -0.001611460349522531, -0.022493110969662666, -0.0073885140009224415, -0.003204722423106432, -0.006922637112438679, 0.004717002157121897, 0.018241986632347107, -0.003634202526882291, -0.019261091947555542, -0.01284800749272108, 0.003887159051373601, 0.017615964636206627, 0.050431158393621445, 0.015446726232767105, 0.020775191485881805, -0.002558682346716523, -0.00416013365611434, -0.03092256933450699, -0.013059107586741447, -0.009936277754604816, -0.009703339077532291, 0.00010765437764348462, 0.0014858919894322753, -0.016698770225048065, 0.015388491563498974, 0.005270230583846569, -0.014966290444135666, 0.0024822496343404055, 0.003788888221606612, -0.0027989002410322428, -0.0026988093741238117, 0.030049050226807594, -0.005874414462596178, 0.023628685623407364, -0.006514994893223047, -0.010016350075602531, 0.0009745195275172591, -0.004538658540695906, 0.005939928349107504, 0.012913521379232407, 0.0011119167320430279, 0.002087346278131008, 0.021459447219967842, 0.00799269787967205, -0.03211637958884239, 0.01806728169322014, 0.022245613858103752, 0.015898043289780617, 0.010205612517893314, 0.00501545425504446, 0.014376665465533733, -0.0036487611941993237, -0.023948976770043373, -0.005361222196370363, 0.0037925278302282095, -0.0013757923152297735, -0.020280197262763977, -0.0020964452996850014, -0.0013566840207204223, 0.0008644197368994355, -0.009412165731191635, 0.012003605253994465, 0.004283882211893797, -0.011428538709878922, -0.008647836744785309, 0.003051856765523553, -0.015461284667253494, 0.007876228541135788, 0.0028316571842879057, -0.016917148604989052, -0.0069189975038170815, -0.009928998537361622, -0.007999977096915245, 0.001611460349522531, 0.01514099445194006, 0.015504960902035236, -0.0030318384524434805, 0.0006555941072292626, 0.011646918952465057, 0.013685129582881927, -0.008196518756449223, -0.0029117297381162643, 0.019668733701109886, -0.010766120627522469, -0.015111876651644707, -0.021139157935976982, -0.015621429309248924, -0.019231975078582764, -0.023614127188920975, -0.00223657232709229, -0.014769748784601688, 0.0013812517281621695, -0.0009636005270294845, -0.0005040931864641607, 0.01214919239282608, -0.014391223900020123, -0.0007361216703429818, 0.006238380912691355, -0.003872600384056568, -0.007348477840423584, 0.022944429889321327, 0.010729723609983921, -0.012505878694355488, -0.007191972341388464, -0.004131016321480274, 0.009077317081391811, 0.0213138610124588, 0.0013767022173851728, -0.009353931993246078, -0.020265638828277588, 0.009441283531486988, 0.0042656841687858105, 0.018562275916337967, 0.009390328079462051, -0.011115527711808681, 0.005772504024207592, 0.005637836642563343, -0.02774878405034542, -0.017543170601129532, -0.014391223900020123, 0.000947222055401653, 0.007752480451017618, -0.004418549593538046, 0.007126458454877138, -0.004403991159051657, 0.008662396110594273, 0.01882433146238327, 0.0177178755402565, 0.015344815328717232, 0.010212891735136509, 0.00830570887774229, 0.013466749340295792, -0.012418527156114578, 0.011071852408349514, 0.025637779384851456, -0.010620533488690853, -0.0034922556951642036, 0.009434004314243793, 0.020323872566223145, 0.011676035821437836, 0.003908996935933828, 0.007319360505789518, 0.005335744470357895, -0.03310636803507805, -5.676308774127392e-06, 0.01821286976337433, 0.007417631335556507, -0.013343000784516335, 0.0038434830494225025, -0.01882433146238327, 0.011341187171638012, -0.011050013825297356, -0.018227428197860718, 0.032378435134887695, 0.007890786975622177, 0.004840750712901354, 0.0014076393563300371, -0.00041719627915881574, -0.02585615962743759, 0.014143726788461208, 0.013204693794250488, -0.0007939012721180916, -0.01974152773618698, -0.025987187400460243, -0.015475843101739883, 0.009863484650850296, -0.006988150998950005, 0.017208322882652283, -0.009615987539291382, 0.012884403578937054, -0.020920777693390846, 0.012680582702159882, -0.0013694228837266564, -0.009026361629366875, 0.002287527546286583, 0.013736085034906864, 0.02933567576110363, -0.009317534975707531, -0.005466772243380547, 0.02228929102420807, -0.0060454788617789745, -0.006107353139668703, -0.012098236940801144, -0.008924451656639576, -0.002766143064945936, 0.0034704178106039762, -0.011887135915458202, 0.02116827480494976, -0.004498622380197048, 0.012258381582796574, -0.016873473301529884, -0.007275684271007776, 0.015082759782671928, 0.003015459980815649, 0.02039666660130024, -0.006311174016445875, -0.029117297381162643, 0.013117342256009579, -0.0099581154063344, 0.004797074478119612, -0.016043631359934807, -0.00400362815707922, -0.0021328420843929052, 0.019188297912478447, -0.011734270490705967, -0.005477691534906626, -0.020775191485881805, 0.025637779384851456, -0.0144203407689929, -0.02163415215909481, -0.03735749050974846, 0.0034413004759699106, 0.011413980275392532, 0.00264603435061872, -0.016829797998070717, 0.006049118470400572], "9fc08083-9edc-4125-8b2c-7bd929dd5715": [-0.03867432847619057, -0.0038983840495347977, -0.018408626317977905, 0.025999052450060844, -0.04253586754202843, -0.03118707239627838, 0.016315732151269913, 0.005007470492273569, 0.006709789391607046, 0.032012440264225006, 0.007479886058717966, 0.01982354186475277, -0.006776113528758287, 0.0035649212077260017, -0.0023563483264297247, 0.02088472619652748, -0.031128117814660072, 0.0067687444388866425, 0.022830234840512276, -0.008283144794404507, 0.07316286861896515, -0.02828354947268963, -0.01808437518775463, -0.00698614027351141, -0.01671367697417736, -0.018408626317977905, -0.005165911745280027, 0.001416756771504879, -0.030597524717450142, -0.01892448030412197, 0.005350145045667887, 0.016079913824796677, 0.017435872927308083, -0.0007820718456059694, 0.016035696491599083, -0.07068676501512527, 0.0007922046934254467, -0.006263944320380688, 0.007509363815188408, -0.021606922149658203, -0.022918665781617165, 0.04353809729218483, 0.006274998188018799, -2.6699486625147983e-05, -0.03554972633719444, 0.0139280641451478, -0.00015625316882506013, 0.00643343897536397, 0.0025313703808933496, -0.00476796692237258, 0.01593252643942833, 0.022211208939552307, -0.02514420822262764, -0.0010160485981032252, 0.029388953000307083, -0.057156648486852646, 0.018128590658307076, 0.11849908530712128, 0.03133445978164673, -0.05839470028877258, -0.029551077634096146, 0.001522691105492413, 0.0015678283525630832, -0.016109390184283257, -0.00042350709554739296, -0.006643465720117092, 0.001788908732123673, 0.005648603662848473, -0.018187547102570534, 0.020899465307593346, -0.0005513192154467106, 0.023360827937722206, -0.05527009442448616, 0.040944088250398636, -0.02063416875898838, 0.006227097474038601, 0.04123885929584503, 0.011348793283104897, 0.03416428714990616, 0.016595767810940742, 0.00592126976698637, 0.01618308387696743, 0.05804096907377243, 0.025527415797114372, 0.031599756330251694, 0.036463525146245956, -0.014274423010647297, -0.05043580383062363, -0.042683251202106476, -0.023287134245038033, 0.042742207646369934, 0.06308159977197647, -0.024716787040233612, 0.0023434520699083805, -0.0049669393338263035, 0.030111148953437805, 0.02256493829190731, 0.0017557466635480523, 0.02514420822262764, -0.02044256590306759, 0.002232911763712764, 0.016286255791783333, -0.023758770897984505, 0.00507379462942481, 0.002524001058191061, -0.019970927387475967, -0.010287607088685036, 0.030450137332081795, -0.04079670086503029, 0.0033383138943463564, 0.02542424388229847, -0.05815887823700905, -0.005431208293884993, -0.00806206464767456, -0.026220133528113365, 0.002091052010655403, -0.040944088250398636, -0.013390101492404938, -0.00485639926046133, -0.03666986525058746, 0.016846325248479843, -0.011319315992295742, 0.014908187091350555, -0.010000202804803848, -0.020707862451672554, 0.02685389667749405, -0.005401730537414551, 0.010980325751006603, 0.018629707396030426, 0.017391657456755638, -0.01059712003916502, -0.010810830630362034, 0.018497059121727943, -0.007450408767908812, -0.014215468429028988, 0.00812101922929287, 0.027531877160072327, 0.05871894955635071, -0.022108038887381554, 0.042712729424238205, -0.04403921216726303, -0.04459928348660469, -0.02511473186314106, 0.011157190427184105, 0.02561584673821926, -0.017878033220767975, -0.049846258014440536, 0.051025353372097015, -0.012292069382965565, 0.02919735014438629, -0.0331031009554863, -0.01131194643676281, -0.00595811614766717, -0.010899262502789497, -0.0020339395850896835, -0.02632330358028412, -0.0033991108648478985, 0.01842336542904377, -0.0015926999039947987, 0.056626055389642715, -0.018349671736359596, -0.04085565358400345, -0.015372456051409245, 0.02418619394302368, 0.02483469620347023, 0.013235345482826233, 0.053914137184619904, 0.03227773681282997, 0.004384760744869709, 0.0113266846165061, 0.03398742526769638, -0.01643364131450653, 0.018909741193056107, 0.004889561329036951, -0.00165902404114604, -0.022741802036762238, 0.04798918217420578, 0.05468054860830307, 0.025232641026377678, -0.013264822773635387, 0.003047224599868059, -0.001343063311651349, 0.0004932855954393744, -0.01285213977098465, -0.013706983998417854, 0.022579675540328026, 0.023390304297208786, 0.033810559660196304, -0.004524778574705124, 0.002461361698806286, -0.02987532876431942, -0.0004663414438255131, -0.017406394705176353, 0.026249609887599945, -0.020472044125199318, -0.018998173996806145, -0.015888310968875885, 0.016079913824796677, 0.010457102209329605, 0.019705630838871002, -0.008666351437568665, -0.035372860729694366, -0.01398701872676611, 0.05860104039311409, -0.04082617908716202, 0.050524238497018814, -0.004782705567777157, -0.024127239361405373, 0.01733270287513733, -0.00971279852092266, 0.020088836550712585, -0.03392846882343292, -0.0011993610532954335, 0.0025626900605857372, -0.011768845841288567, 0.0024300417862832546, -0.006801906507462263, 0.012100466527044773, 0.011746738106012344, 0.006794536951929331, -0.010545534081757069, 0.00693087000399828, 0.017686430364847183, -0.0034451691899448633, -0.04698695242404938, -0.01232154667377472, -0.028593063354492188, 0.040944088250398636, -0.024392535910010338, 0.024510445073246956, 0.037023596465587616, -0.01777486316859722, 0.016905279830098152, -0.04138624668121338, -0.006293421611189842, 0.026411736384034157, 0.025070514529943466, 0.010420255362987518, -0.011628828011453152, -0.033692650496959686, 0.017037928104400635, 0.008165235631167889, -0.006042863707989454, 0.01397228054702282, -0.01808437518775463, 0.01665472239255905, -0.008754783309996128, 0.04645635932683945, 0.011510918848216534, 0.01767169125378132, -0.0024318841751664877, 0.027679264545440674, 0.0019307687180116773, 0.013891217298805714, -0.020339395850896835, 0.03584450110793114, 0.04395078122615814, -0.014326008968055248, -0.0022568623535335064, -0.006223412696272135, 0.018968697637319565, 0.012844770215451717, -0.027649786323308945, 0.01724427007138729, 0.03251355513930321, -0.032012440264225006, 0.042093705385923386, -0.03472435846924782, 0.0075904265977442265, 0.038821715861558914, -0.0023802986834198236, 0.017288485541939735, -0.001237128977663815, 0.02707497775554657, 0.0004103804531041533, -0.012962679378688335, 0.02072260156273842, -0.004631633870303631, 0.023508213460445404, 0.002076313365250826, 0.006009701639413834, -0.0010455260053277016, 0.014967141672968864, 0.0020597323309630156, 0.030361706390976906, 0.007811506744474173, -0.008076803758740425, -0.011864647269248962, -0.024849435314536095, 0.00619393540546298, 0.0018322037067264318, 0.019970927387475967, 0.013095327652990818, 0.0361097976565361, -0.019676154479384422, 0.009101142175495625, 0.012174160219728947, -0.017391657456755638, -0.0027156041469424963, 0.02222594805061817, 0.016816847026348114, -0.012004665099084377, -0.014723953790962696, -0.053825702518224716, 0.03451801836490631, -0.01976458542048931, 0.025866404175758362, 0.015121898613870144, -0.014200730249285698, 0.015740923583507538, 0.021326888352632523, -0.009823338128626347, -0.008813737891614437, -0.009779122658073902, -0.00042419799137860537, 0.004937462043017149, -0.02564532496035099, -0.009432762861251831, -0.0025276856031268835, -0.038261644542217255, 0.016271516680717468, 0.013736461289227009, -0.09196943789720535, 0.047104861587285995, 0.03781948238611221, -0.06213832646608353, 0.0292563047260046, -0.008386315777897835, -0.004163680598139763, -0.01879183202981949, 0.00023789169790688902, -0.0032001384533941746, -0.030479615554213524, -0.009808599948883057, -0.00846737902611494, -0.03926387429237366, -0.041563112288713455, -0.044333986937999725, 0.0003599465126171708, -0.021371103823184967, -0.0012223903322592378, 0.00504063256084919, -0.012314177118241787, -0.008983233012259007, 0.020118314772844315, -0.0030122201424092054, -0.02262389287352562, 0.0005048002349212766, -0.012019403278827667, 0.010294976644217968, 0.0008654375560581684, -0.018246501684188843, 0.03227773681282997, 0.003319890471175313, 0.016197822988033295, 0.005902846343815327, -0.0025129469577223063, -0.021680615842342377, 0.02147427387535572, -0.009639104828238487, -0.028710972517728806, -0.024112500250339508, -0.013920694589614868, 0.004712696652859449, -0.006304475478827953, 0.022432290017604828, 0.01982354186475277, -0.014709214679896832, -0.018025420606136322, -0.010324453935027122, -0.0389101468026638, 0.007468832191079855, 0.0025295279920101166, 0.00037583665107376873, -0.02654438465833664, -0.02368507906794548, 0.060104385018348694, 0.0039057533722370863, -0.018968697637319565, 0.013883847743272781, 0.014554458670318127, 0.01120140589773655, -0.010995063930749893, 0.04675113037228584, 0.04194631800055504, 0.006020755972713232, 0.018158068880438805, -0.0077009666711091995, -0.008548441343009472, -0.012911094352602959, -0.039381787180900574, -0.0013099012430757284, -0.011643567122519016, 0.016079913824796677, -0.04907984659075737, -0.027590831741690636, -0.019956190139055252, -0.022461766377091408, 0.026809681206941605, -0.03168818727135658, 0.002411618595942855, 0.00877689104527235, -0.02564532496035099, 0.016035696491599083, 0.0012666063848882914, -0.022520720958709717, 0.021061591804027557, -0.031128117814660072, 0.020928943529725075, -0.00823155976831913, -0.014959772117435932, 0.011872016824781895, 0.04392130300402641, 0.03743627667427063, 0.030921775847673416, 0.002011831384152174, -0.006982455495744944, 0.04651531204581261, -0.0032111925538629293, -0.04003028944134712, 0.02041308954358101, 0.03440010920166969, -0.025748495012521744, 0.02172483317553997, -0.01584409363567829, 0.04061983525753021, -0.009594888426363468, 0.021857481449842453, 0.001646127668209374, -0.000243879301706329, -0.008968493901193142, 0.05361936241388321, 0.00377678987570107, -0.019558245316147804, 0.008319991640746593, -0.015785139054059982, 0.021945912390947342, -0.006949293427169323, 0.01724427007138729, 0.006750321015715599, -0.017966466024518013, 0.01923399418592453, 0.005799675360321999, 0.018438104540109634, -0.04082617908716202, -0.04686903953552246, -0.04000081121921539, -0.013169021345674992, 0.019337164238095284, 0.019985666498541832, 0.03018484078347683, 0.038232166320085526, -0.05285295099020004, 0.0155787980183959, 0.0011358004994690418, 0.015519842505455017, 0.029668986797332764, 0.007369345985352993, 0.037082549184560776, -0.0328083299100399, -0.06143086776137352, 0.013699614442884922, 0.022741802036762238, 0.004491616506129503, 0.033191535621881485, -0.023066053166985512, 0.009454870596528053, 0.02321344055235386, 0.001381752430461347, 0.02371455542743206, -0.01746535114943981, -0.0069787707179784775, 0.0139280641451478, 0.03566763550043106, 0.0022697586100548506, -0.02032465673983097, 0.0009248529095202684, 0.013250084593892097, 0.007092995569109917, -0.009845446795225143, -0.006271313410252333, -0.01733270287513733, -0.0034857008140534163, -0.001901291310787201, 0.0359034538269043, 0.002048678230494261, -0.032130349427461624, -0.008880062028765678, 0.04586680978536606, -0.0023047630675137043, 0.030921775847673416, 0.009874924086034298, -0.004841660615056753, -0.007693597115576267, -0.027988776564598083, -0.028873097151517868, 0.025601107627153397, -0.04925670847296715, -0.03734784573316574, -0.047635454684495926, 0.03961760550737381, 0.006389223039150238, -0.003717835061252117, 0.00877689104527235, -0.011724629439413548, 0.03811425715684891, -0.02673598751425743, 0.04899141192436218, -0.012653167359530926, -0.01587357185781002, -0.0379079170525074, 0.01749482750892639, -0.01599148102104664, 0.0178043395280838, 0.010626597329974174, 0.030243797227740288, -0.011997295543551445, -0.002175799338147044, 0.03522547334432602, -0.002958792494609952, -0.017259009182453156, -0.014746061526238918, -0.030243797227740288, -0.00586599949747324, -0.033810559660196304, -0.009359069168567657, -0.017185315489768982, -0.01655155047774315, 0.03384003788232803, -0.05129064992070198, -0.011444594711065292, 0.010818200185894966, -0.009528564289212227, 0.018880264833569527, 0.010051787830889225, 0.03336839750409126, -0.006551348604261875, -0.003198296297341585, -0.0019289263291284442, 0.01593252643942833, -0.004399499390274286, 0.018968697637319565, -0.002757977694272995, -0.016300993040204048, -0.006031809840351343, 0.042211614549160004, 0.012218375690281391, 0.02063416875898838, -0.002325028646737337, 0.030140625312924385, -0.020206747576594353, -0.005707558710128069, -0.004071563947945833, 0.007796768099069595, 0.023316610604524612, -0.024849435314536095, -0.00021969863155391067, -0.015328239649534225, -0.017597997561097145, -0.010825569741427898, -0.013559596613049507, 0.032601986080408096, 0.0009902558522298932, 0.010928740724921227, -0.02558637037873268, -0.004550571087747812, -0.013721722178161144, 0.035490769892930984, -0.01845284178853035, 0.014134406112134457, 0.020486781373620033, 0.00949171744287014, 0.02321344055235386, 0.009779122658073902, -0.008518964052200317, 0.012815292924642563, 0.0035704481415450573, 0.015460887923836708, -0.037731051445007324, -0.03065647929906845, 0.02822459489107132, -0.017715908586978912, -0.006319214124232531, 0.0030140625312924385, 0.00423368951305747, 0.05960327014327049, -0.025556892156600952, -0.02029517851769924, -0.0032996246591210365, 0.01973510906100273, -3.529225796228275e-05, 0.01957298256456852, -0.017155837267637253, 0.002881414256989956, -0.018069636076688766, 0.017480088397860527, 0.007306706625968218, 0.02573375590145588, 0.03454749286174774, 0.010118111968040466, 0.02611696347594261, 0.010059157386422157, 0.015151375904679298, -0.010619227774441242, -0.029433168470859528, 0.03554972633719444, -0.0004041625652462244, 0.013758569024503231, -0.005162226967513561, 0.023301871493458748, -0.009403285570442677, -0.022889189422130585, 0.023699816316366196, 0.0002498668909538537, 0.035431817173957825, 0.014679737389087677, 0.010759245604276657, 0.016035696491599083, -0.002026570262387395, 0.02461361512541771, 0.030302751809358597, -0.04244743287563324, 0.04571942239999771, -0.03522547334432602, 0.010324453935027122, 0.010140220634639263, -0.025438982993364334, 0.015888310968875885, -0.006588195450603962, 0.029801635071635246, -0.009734906256198883, -0.017730645835399628, 0.010604488663375378, -0.023110268637537956, 0.003181715263053775, 0.005821783561259508, -0.016949495300650597, 0.0035243898164480925, -0.000510327226947993, 0.005563856102526188, 0.0035114933270961046, -0.007011932786554098, 0.0019344533793628216, 0.045984718948602676, -0.012483672238886356, 0.022550199180841446, -0.018659183755517006, 0.01789277233183384, 0.018556013703346252, 0.014613413251936436, 0.0027487659826874733, 0.010044418275356293, 0.0027174463029950857, 0.007078256923705339, 0.006356060970574617, -0.012063619680702686, 0.00012263053213246167, -0.016271516680717468, 0.027649786323308945, 0.016020959243178368, 0.02309553138911724, -0.016949495300650597, 0.03227773681282997, 0.011216145008802414, 0.015003988519310951, 0.007877831347286701, 0.03386951610445976, -0.0033788452856242657, 0.02673598751425743, 0.015446149744093418, 0.02144479751586914, -0.01475343108177185, 0.026898114010691643, -0.015947265550494194, -0.010729768313467503, 0.0022918665781617165, 0.003045382210984826, -0.005272767040878534, 0.022358596324920654, -0.019941451027989388, -0.017715908586978912, -0.033221013844013214, -0.02838672138750553, 0.007321445271372795, 0.013058481737971306, -0.003054593922570348, -0.01492292620241642, 0.06785693764686584, -0.026780202984809875, -0.012955310754477978, 0.002251335186883807, 0.0022918665781617165, -0.02349347621202469, 0.026058007031679153, 0.017229530960321426, -0.010766614228487015, 0.0024889966007322073, 0.004060509614646435, 0.027826650068163872, -0.013957541435956955, -0.03534338250756264, -0.0262053944170475, 0.012292069382965565, -0.03018484078347683, 0.016109390184283257, 0.01901291310787201, -0.02144479751586914, -0.021990127861499786, -0.0020468358416110277, 0.03758366405963898, 0.009963355958461761, 0.007104049436748028, -0.0016230985056608915, 0.013434317894279957, 0.0008009558077901602, 0.015195591375231743, 0.005994962994009256, 0.020766817033290863, 0.004952200688421726, 0.019219255074858665, 0.01833493262529373, 0.03451801836490631, -0.014510242268443108, -0.03384003788232803, -0.021680615842342377, 0.03534338250756264, -0.024230409413576126, 0.021901696920394897, -0.0189539585262537, 0.0029237880371510983, 0.027369750663638115, -0.01985301822423935, -0.012365763075649738, 0.018541274592280388, -0.0047569130547344685, -0.013360624201595783, -0.019396118819713593, 0.007513048127293587, 0.03681725263595581, -0.019396118819713593, 0.020796295255422592, -0.015313501469790936, 0.030862821266055107, -0.027001284062862396, 0.01280792336910963, -0.0015862517757341266, 0.03451801836490631, -0.005858629941940308, -0.00628605205565691, 0.01643364131450653, 0.023007098585367203, -0.03737732395529747, 0.030081670731306076, 0.0238029882311821, 0.0002254559367429465, 0.0034470115788280964, 0.02934473566710949, 0.004428977146744728, -0.027797173708677292, 0.03292623907327652, -0.014340747147798538, 0.0062492056749761105, -0.012653167359530926, -0.022992359474301338, 0.004742174409329891, 0.01892448030412197, 0.006757690571248531, 0.010744506493210793, 0.02427462674677372, -0.008953755721449852, 0.04011872038245201, 0.04533621668815613, 0.023360827937722206, 0.049433574080467224, -0.01901291310787201, -0.020869988948106766, 0.025438982993364334, -0.011680413968861103, -0.039293352514505386, -0.017936987802386284, -0.013316408731043339, -0.04126833751797676, 0.017715908586978912, -0.057245079427957535, 0.011584611609578133, -0.03902805596590042, 0.03077438846230507, 0.018777094781398773, -0.000752594496589154, 0.016020959243178368, 0.012962679378688335, -0.018010681495070457, -0.025232641026377678, 0.017907511442899704, 0.006403961684554815, -0.01948455162346363, 0.03186505287885666, -0.012196267955005169, -0.014414440840482712, 0.02057521417737007, 0.008600027300417423, -0.01820228435099125, 0.06190250813961029, 0.05854208394885063, -0.006274998188018799, -0.01380278542637825, -0.0008548441692255437, 0.003054593922570348, -0.011680413968861103, -0.007431985344737768, -0.006061287131160498, -0.01783381775021553, -0.005530694033950567, 0.03062700293958187, -0.026529645547270775, -0.01173199899494648, 0.004274220671504736, 0.001641521812416613, 0.03221878036856651, 0.007513048127293587, -0.014200730249285698, 0.011230883188545704, 0.01243208721280098, -0.0016682357527315617, 0.011238252744078636, -0.025129470974206924, -0.0027174463029950857, 0.0059470622800290585, -0.007022986654192209, -0.024657832458615303, -0.022771280258893967, -0.02564532496035099, 0.010552903637290001, 0.016138868406414986, -0.020339395850896835, 0.011798323132097721, -0.005563856102526188, 0.023390304297208786, -0.013670137152075768, 0.030391182750463486, -0.012395240366458893, -0.036021362990140915, -0.02156270667910576, 0.0019584037363529205, 0.005202758125960827, 0.010420255362987518, 0.009137989021837711, 0.004587417934089899, 0.023567168042063713, 0.036493003368377686, 0.011356161907315254, -0.04571942239999771, -0.0035851867869496346, 0.008312622085213661, -0.01951402798295021, 0.010589750483632088, -0.028032992035150528, -0.0010280237765982747, -0.030479615554213524, 0.01789277233183384, 0.013942803256213665, 0.012314177118241787, -0.0206046923995018, 0.01693475805222988, -0.014576566405594349, -0.02352295257151127, -0.009233790449798107, 0.011451964266598225, 0.012763707898557186, 0.028018254786729813, -0.0015300604281947017, -0.0036201912444084883, 0.015888310968875885, 0.010715029202401638, -0.042211614549160004, 0.004583733156323433, -0.025291595607995987, 0.027369750663638115, -0.039293352514505386, 0.00551595538854599, -0.008312622085213661, 0.01991197280585766, -0.002861148677766323, -0.016374686732888222, -0.044333986937999725, -0.005939692724496126, 0.007723074872046709, 0.008622135035693645, -0.00014750206901226193, 0.0027653470169752836, 0.005950747057795525, 0.0036644074134528637, -0.013810154981911182, -0.01879183202981949, -0.005987593904137611, 0.010449732653796673, -0.005287505686283112, -0.022520720958709717, 0.005305929109454155, -0.008305253461003304, 0.003692042315378785, -0.048844024538993835, -0.04176945239305496, -0.008563180454075336, 0.040944088250398636, -0.05137908086180687, 0.017155837267637253, 0.005036948248744011, 0.0065108174458146095, 0.007818875834345818, 0.02309553138911724, 0.04003028944134712, 0.001083293929696083, -0.014679737389087677, 0.05473950132727623, 0.03578554466366768, 0.01942559704184532, 0.0029182611033320427, -0.0127268610522151, -0.01646311953663826, 0.012653167359530926, 0.02172483317553997, 0.04851977527141571, 0.002833513543009758, -0.006179196760058403, -0.007671489380300045, -0.0018441788852214813, -0.018275978043675423, -0.018275978043675423, 0.027841389179229736, -0.008636873215436935, 0.006028125062584877, 0.017539042979478836, -0.02010357566177845, 0.007664119824767113, -0.005033263470977545, -0.0007963499519973993, -0.012004665099084377, -0.028991008177399635, -0.03236616775393486, -0.014259684830904007, -0.013169021345674992, 0.03174714371562004, -0.015475627034902573, -0.0031614494509994984, -0.02393563650548458, -0.013360624201595783, 0.024451490491628647, 0.003946284763514996, 0.010700290091335773, 0.0064592319540679455, 0.026809681206941605, -0.007730443961918354, 0.022771280258893967, 0.00877689104527235, 0.005309613887220621, -0.016050435602664948, -0.0002841804234776646, 0.03608031943440437, -0.00048637684085406363, -0.007369345985352993, 0.0027745587285608053, 0.0023802986834198236, 0.012712121941149235, -0.00989703182131052, 0.0356086790561676, -0.02576323412358761, 0.004410553723573685, 0.02536528930068016, -0.011083496734499931, -0.006975085940212011, -0.0027137617580592632, -0.007796768099069595, 0.02449570596218109, 0.019086606800556183, -0.00876215286552906, -0.010000202804803848, -0.001354117295704782, -0.0064592319540679455, -0.0096022579818964, 0.011717259883880615, -0.004148941952735186, -0.01504820492118597, -0.015077682211995125, 0.002116844756528735, -0.0054791090078651905, -0.021341625601053238, 0.019116083160042763, -0.02741396799683571, 0.02844567596912384, 0.021297410130500793, -0.03628665953874588, -0.00846737902611494, -0.018231762573122978, -0.0016424430068582296, -0.008880062028765678, -0.039912380278110504, -0.02035413309931755, 0.006798221729695797, -0.0262053944170475, -0.009204313158988953, 0.004602156579494476, -0.02629382722079754, 0.036551956087350845, 0.02477574162185192, 0.013670137152075768, -0.007369345985352993, -0.012896355241537094, -0.007944155484437943, 0.023920897394418716, -0.0010565799893811345, -0.01649259589612484, 0.013117436319589615, -0.00559333385899663, -0.0016673145582899451, 0.024819957092404366, 0.019528767094016075, -0.04224109277129173, -0.019219255074858665, 0.03507808595895767, -0.02259441465139389, -0.028873097151517868, -0.0010777668794617057, -0.007092995569109917, -0.01285213977098465, 0.006982455495744944, -0.006223412696272135, 0.01084767747670412, 0.03519599512219429, -0.0002163593890145421, -0.0013964910758659244, -0.0041452571749687195, 0.006186565849930048, -0.010272868908941746, -0.000487758603412658, -0.029212087392807007, 0.013869109563529491, -0.0834209993481636, -0.026043269783258438, -0.02623487263917923, 0.013544858433306217, 0.003528074361383915, 0.0103023461997509, 0.01185727771371603, 0.012527888640761375, -0.020472044125199318, 0.029580555856227875, 0.0029532655607908964, -0.012837400659918785, 0.02237333543598652, 0.018806571140885353, -0.015755662694573402, 0.0006328425952233374, -0.009757013991475105, -0.010059157386422157, 0.0005384228425100446, -0.014760800637304783, -0.009373808279633522, 0.030803866684436798, 0.017568521201610565, -0.01683158613741398, -0.009204313158988953, 0.045041441917419434, -0.0037565240636467934, 0.007715705316513777, -0.012859509326517582, -0.03672882169485092, 0.009499086998403072, -0.0017898299265652895, -0.015799878165125847, -0.0009782806737348437, 0.00018331248429603875, 0.0226533692330122, 0.020192008465528488, 0.003767578164115548, 0.00854107178747654, 0.010508687235414982, 0.007284598425030708, 0.01615360751748085, -0.004189473111182451, -0.0006871914956718683, 0.006650834809988737, -0.023950375616550446, -0.0155787980183959, -0.013773308135569096, 0.0011090865591540933, 0.013441687449812889, 0.01655155047774315, 0.009211682714521885, -0.013625920750200748, -0.014436548575758934, 0.011105604469776154, 0.006090764421969652, -0.0014149144990369678, -0.015313501469790936, 0.005184335168451071, -0.019160300493240356, 0.061195049434900284, 0.014127036556601524, 0.0010197332594543695, 0.0038357446901500225, -0.018718138337135315, 0.009742275811731815, 0.012395240366458893, 0.02262389287352562, 0.009978095069527626, 0.0007857565069571137, -0.010980325751006603, -0.0079515241086483, 0.0073988232761621475, 0.0226533692330122, 0.013463795185089111, 0.010177066549658775, 0.01923399418592453, 0.014237577095627785, 0.0009939405135810375, -0.0032001384533941746, -0.011149820871651173, 0.010943478904664516, 0.01833493262529373, -7.899017509771511e-05, -0.01814332976937294, -0.02296288311481476, -0.010390778072178364, -0.03725941479206085, -0.005604387726634741, -0.0032867284025996923, 0.02632330358028412, -0.01014758925884962, 0.043184369802474976, 0.006632411386817694, -0.011717259883880615, 0.018246501684188843, -0.0007337105344049633, 0.006945608649402857, 0.00848211720585823, -0.003246197011321783, -0.012454194948077202, -0.03469488024711609, -0.005250659305602312, -0.02856358513236046, -0.0051253801211714745, -0.0076493811793625355, 0.004797444213181734, 0.033810559660196304, -0.01215205155313015, 0.0034746467135846615, 0.005961800925433636, 0.018497059121727943, -0.027472922578454018, -0.021621661260724068, -0.030892299488186836, -0.0012702910462394357, -0.01923399418592453, -0.0008161551086232066, -0.017627475783228874, 0.015055574476718903, -0.006709789391607046, 0.032631464302539825, 0.004981677979230881, -0.04179893061518669, -0.0018681292422115803, 0.013662767596542835, 0.005913900211453438, -0.02231438085436821, 0.002190538216382265, 0.02141531929373741, 0.00476796692237258, -0.0029182611033320427, -0.004616895224899054, 0.012992157600820065, -0.0127268610522151, 0.019690893590450287, 0.033191535621881485, -0.0024447806645184755, 0.03068595752120018, -0.03345683217048645, -0.00681664515286684, -0.010928740724921227, 0.011761476285755634, 0.010383408516645432, -0.013574335724115372, -0.005059055984020233, 0.00403103232383728, -0.020840510725975037, 0.005070110317319632, -0.008135758340358734, -0.002960634883493185, -0.00016811321256682277, 0.03018484078347683, 0.00037284285645000637, -0.011997295543551445, -0.014163883402943611, -0.01991197280585766, 0.008327361196279526, 0.0027395545039325953, -0.022830234840512276, -0.022859711199998856, -0.001927084056660533, 0.014340747147798538, -0.012564735487103462, 0.0006812039064243436, -0.02203434519469738, -0.011754106730222702, -0.003927861340343952, -0.011046649888157845, -0.02206382155418396, 0.007782029453665018, -0.006724528502672911, -0.010604488663375378, -0.010855047032237053, 0.016374686732888222, -0.021636400371789932, -0.019749848172068596, -0.02290392853319645, 0.028327766805887222, -0.01428179256618023, -0.005261713173240423, 0.01411229744553566, -0.00038113337359391153, 0.01440707128494978, 0.005405415315181017, 0.006378169171512127, -0.021489012986421585, 0.010884524323046207, -0.008445270359516144, -0.01338273286819458, 0.02374403364956379, 0.01559353619813919, -0.0058991615660488605, 0.004465823527425528, -0.004064194392412901, 0.01213731337338686, 0.02828354947268963, 0.02822459489107132, -0.013191129080951214, -0.005560171790421009, -0.0331031009554863, 0.00040991988498717546, 0.008452639915049076, 0.021105807274580002, 0.00041199251427315176, 0.007981001399457455, -0.04427503049373627, 0.007634642533957958, 0.025866404175758362, -0.022520720958709717, -0.0049153538420796394, -0.0025037352461367846, 0.020516259595751762, -0.0018745773704722524, 0.0036091371439397335, -0.016625244170427322, -0.008202082477509975, -0.031658709049224854, 0.004731120076030493, -0.007277229335159063, 0.03186505287885666, -0.014996618963778019, 0.01198255643248558, -0.016109390184283257, 0.005464370362460613, 0.010177066549658775, 0.014657629653811455, -0.04678060859441757, -0.01433337852358818, 0.003715992672368884, -0.02063416875898838, 0.008143127895891666, -0.0027156041469424963, -0.007877831347286701, -0.004852714482694864, -0.0178043395280838, 0.03068595752120018, -0.0045468867756426334, 0.02713393233716488, -0.0013900429476052523, -0.031128117814660072, -0.01405334286391735, -0.00026967201847583055, 0.014296531677246094, 0.0407082661986351, -0.006389223039150238, -0.01761273667216301, -0.004171049688011408, 0.009874924086034298, 0.02713393233716488, 0.010250760242342949, -0.0031153911259025335, -0.017214791849255562, 0.00412314897403121, 0.0028390404768288136, 0.00025216981885023415, 0.009101142175495625, -0.007505679037421942, 0.0029624770395457745, -0.02713393233716488, -0.011577242985367775, 0.010294976644217968, 0.038733284920454025, -0.0389101468026638, 0.03861537203192711, -0.0011146136093884706, 0.004779020790010691, 0.018629707396030426, -0.00782624538987875, -0.009904401376843452, -0.004056824836879969, 0.004130518529564142, -0.014841862954199314, -0.0155787980183959, 0.03021431900560856, 0.009874924086034298, 0.0034764891024678946, -0.01923399418592453, -0.009388547390699387, 0.0026805996894836426, -0.007715705316513777, -0.0007885200320743024, -0.01842336542904377, 0.01699371263384819, 0.01559353619813919, 0.01749482750892639, 0.009049557149410248, -0.010921371169388294, 0.03501913323998451, -0.02614643983542919, 0.0013633290072903037, -0.0010998748475685716, 0.013021634891629219, -0.003542813239619136, 0.02312500774860382, -0.011370901018381119, -0.0074393549002707005, -0.014672367833554745, 0.015446149744093418, -0.013463795185089111, 0.0189539585262537, -0.008769521489739418, -0.014959772117435932, -0.006706105079501867, -0.007907308638095856, -0.0002692114212550223, 0.00509590283036232, 0.010567642748355865, -0.002313974779099226, 0.013788046315312386, 0.008091541938483715, 0.015180853195488453, -0.015623013488948345, -0.0038357446901500225, 0.006076025776565075, 0.024038806557655334, 0.02337556518614292, 0.014016496017575264, -0.01190149411559105, -0.012527888640761375, -0.011149820871651173, -0.01814332976937294, 0.03404637798666954, 0.0009911770466715097, -0.02150375209748745, -0.0065587181597948074, -0.005493847653269768, -0.007295652758330107, 0.015755662694573402, -0.0068792845122516155, -0.007568318396806717, 0.03681725263595581, -0.009933878667652607, -0.015490365214645863, 0.011989925988018513, 0.0030601208563894033, -0.01405334286391735, -0.010980325751006603, -0.003404637798666954, -0.003642299212515354, 0.009329591877758503, 0.034252721816301346, 0.012748968787491322, -0.009344330988824368, 0.01932242512702942, 0.020987898111343384, 0.007737813517451286, 0.025748495012521744, 0.027620309963822365, -0.0178043395280838, 0.015623013488948345, 0.003583344630897045, -0.0008170762448571622, -0.011510918848216534, 0.014502872712910175, 0.013810154981911182, -0.00038228483754210174, 0.00011497331433929503, -0.025660062208771706, -0.03077438846230507, -0.006289736833423376, -0.014023865573108196, 0.002214488573372364, 0.02184274233877659, -0.01960246078670025, 0.011363531462848186, 0.031481847167015076, -0.013441687449812889, 0.02894679084420204, -0.018585490062832832, 0.004686904139816761, 0.02402406744658947, -0.002735869726166129, -0.023272395133972168, -0.01510715950280428, -0.005106956698000431, 0.01481238566339016, -0.003916807472705841, -0.009631735272705555, -0.0012104151537641883, -0.0008705040090717375, 0.010258129797875881, -0.020029881969094276, -0.017627475783228874, -0.035372860729694366, 0.013176390901207924, -0.016271516680717468, -0.011724629439413548, -0.018275978043675423, -0.017539042979478836, 0.004384760744869709, 0.004112095106393099, 0.005969170480966568, -0.012756338343024254, 0.01510715950280428, -0.0028298289980739355, -0.02536528930068016, -0.005622811149805784, -0.046043675392866135, 0.0009847289184108377, -0.0120267728343606, -0.0029440538492053747, -0.01251314952969551, 0.026868635788559914, 0.00018319733499083668, 0.013360624201595783, 0.016359947621822357, 0.008187343366444111, 0.005033263470977545, -0.036050841212272644, -0.01559353619813919, -0.003082229057326913, 0.004366337787359953, -0.030081670731306076, -0.022830234840512276, -0.0030656480230391026, 0.0007452251156792045, 0.014296531677246094, 0.01072239875793457, -0.002781928051263094, -0.013581705279648304, -0.014045973308384418, 0.02402406744658947, -0.030597524717450142, -0.001670078025199473, 0.004370022099465132, -0.01736217923462391, -0.008681089617311954, 0.008570549078285694, -0.009152728132903576, 0.010832938365638256, -0.010538164526224136, -0.013552227057516575, -0.007431985344737768, 0.05350145325064659, -0.004399499390274286, 0.014760800637304783, -0.016728416085243225, -0.009528564289212227, -0.03304414823651314, -0.047075383365154266, -0.024480966851115227, 0.006212358828634024, -0.026662293821573257, 0.020088836550712585, -0.02296288311481476, 0.02744344435632229, -0.015549320727586746, 0.013132174499332905, -0.004860083572566509, 0.001455445890314877, -0.027089716866612434, 0.030081670731306076, -0.0018957642605528235, -0.000593692937400192, -0.0010344719048589468, 0.0033622642513364553, 0.0038578526582568884, -0.020619429647922516, 0.02875518798828125, 0.01898343488574028, 0.00025424244813621044, -0.01736217923462391, 0.011754106730222702, -0.026559123769402504, 0.02334608882665634, 0.02617591805756092, -0.01817280799150467, -0.016345210373401642, -0.004421607591211796, -0.013935433700680733, -0.028828881680965424, -0.02321344055235386, 0.02044256590306759, 0.014709214679896832, -0.018821310251951218, -0.0006116557051427662, -0.005549117457121611, 0.002116844756528735, -0.019381379708647728, 0.022948144003748894, -0.008157866075634956, 0.011790953576564789, -0.0007318682037293911, 0.03345683217048645, -0.0015015042154118419, 0.027708740904927254, -0.013847000896930695, -0.014731322415173054, 0.03416428714990616, -0.012070989236235619, 0.018290717154741287, -7.988255674717948e-06, 0.002610590774565935, 0.006960347294807434, -0.03348631039261818, -0.0043258061632514, -0.009948616847395897, 0.016875803470611572, -0.0067208437249064445, 0.011849908158183098, -0.009012710303068161, -0.04421607777476311, 0.005029578693211079, 0.01031708437949419, -0.007210905198007822, -0.005939692724496126, 0.019690893590450287, 0.019160300493240356, 0.002684284234419465, -0.002955107716843486, 0.0030509093776345253, -0.0020542051643133163, 0.013257453218102455, -0.012439455837011337, -0.009624365717172623, 0.0159030482172966, 0.0005738878389820457, -0.025851666927337646, -0.0192045159637928, -0.023449258878827095, -0.01696423441171646, -0.013220607303082943, -0.00877689104527235, 0.002735869726166129, -0.0025645324494689703, 0.0014084662543609738, 0.011894124560058117, -0.004480562638491392, -0.01468710694462061, 0.0007226564921438694, 0.015387194231152534, -0.0026308565866202116, 0.008909539319574833, 0.00848211720585823, 0.0002768110716715455, -0.0005107878241688013, 0.003839429235085845, -0.01042762491852045, -0.016168344765901566, -0.020589953288435936, -0.00047486223047599196, -0.00042074359953403473, -0.001862602191977203, -0.001764958375133574, 0.08678141981363297, -0.007074572145938873, -0.00027289611170999706, 0.002485312055796385, -0.0018119380110874772, -0.009823338128626347, -0.0012334443163126707, 0.028298288583755493, 0.027782434597611427, -0.010118111968040466, 0.015460887923836708, -0.0259548369795084, 0.02548319846391678, 0.010236022062599659, -0.007914677262306213, 0.010353931225836277, 0.03183557465672493, 0.02044256590306759, 0.0005071031046099961, 0.02402406744658947, -0.0036625650245696306, 0.0030030084308236837, -0.02900574542582035, 0.01889500394463539, -0.01019180566072464, 0.021091068163514137, 0.0065181865356862545, 0.010471840389072895, 0.01988249644637108, 0.019027652218937874, -0.005980224348604679, 0.0011864646803587675, -0.01736217923462391, 0.0003221785882487893, -0.01000757236033678, 0.028740448877215385, -0.0012905567418783903, 0.008349468931555748, -0.0022900241892784834, 0.01226259209215641, -0.0031393414828926325, -0.0009400522103533149, 0.03498965501785278, 0.01708214357495308, 0.0025645324494689703, -0.00740619283169508, -0.012233114801347256, -0.005048002116382122, 0.011879385448992252, -0.018069636076688766, -0.005589649081230164, -0.007612534333020449, 0.004366337787359953, 0.012505779974162579, 0.01652207411825657, -0.004521093796938658, -0.012962679378688335, -0.0012702910462394357, 0.0009188653202727437, -0.0025147893466055393, -0.01764221489429474, -0.006676627788692713, -0.024392535910010338, -0.028268812224268913, -0.007708336226642132, -0.02371455542743206, -0.016625244170427322, -0.03693516179919243, 0.004476877860724926, -0.009285376407206059, -0.018497059121727943, 0.006890338379889727, 0.0017400868237018585, -0.025188425555825233, -0.0071887969970703125, 0.03186505287885666, 0.0012085727648809552, 0.002026570262387395, -0.002017358550801873, 0.014355486258864403, 0.007546210195869207, 0.00740619283169508, -0.018659183755517006, -0.018305456265807152, -0.006429754663258791, -0.009808599948883057, 0.02530633471906185, -0.030007977038621902, 0.010575011372566223, -0.012255222536623478, -0.01942559704184532, -0.0008640558226034045, -0.003174345940351486, 0.010398147627711296, 0.021990127861499786, -0.006190250627696514, -0.020501520484685898, 0.005088533274829388, 0.020177269354462624, 0.0023434520699083805, 0.002076313365250826, 0.028298288583755493, -0.00918220542371273, 0.0015088736545294523, -0.0036478263791650534, -0.013051112182438374, 0.031069163233041763, 0.0020799979101866484, -0.010692921467125416, 0.009513826109468937, -0.015460887923836708, 0.0026382259093225002, 0.001857996336184442, -0.003093282924965024, -0.037672098726034164, 0.001572434208355844, 0.016787370666861534, 0.0025903251953423023, -0.004498985596001148, -0.022211208939552307, -0.013883847743272781, 0.005862314719706774, 0.0035225474275648594, -0.0018607599195092916, -0.0024079338181763887, -0.006304475478827953, -0.017936987802386284, -0.006116557400673628, -0.021960651502013206, 0.0029422114603221416, 0.009034818038344383, 0.015401933342218399, 0.005873369053006172, 0.007465147413313389, 0.011275099590420723, -0.0002943132712971419, -0.014045973308384418, -0.010029680095613003, 0.02813616394996643, -0.018069636076688766, 0.011555134318768978, -0.005722297355532646, 0.0028500945772975683, -0.006735582370311022, -0.0009663054952397943, 0.010000202804803848, -0.020899465307593346, -0.014178621582686901, -0.003616506699472666, -0.002350821392610669, 0.026647554710507393, -0.04863768443465233, 0.00643343897536397, -0.004775336477905512, 0.00971279852092266, -0.005792305804789066, -0.02184274233877659, 0.020029881969094276, -0.003306993981823325, -0.0033125211484730244, 0.0020726285874843597, -0.010464471764862537, -0.01316165179014206, -0.013198498636484146, -0.012225745245814323, 0.009948616847395897, 0.005033263470977545, 0.0208552498370409, 0.01568196900188923, -0.00015015043027233332, 0.0021094754338264465, -0.002161060692742467, 0.0022679162211716175, -0.01976458542048931, 0.015092420391738415, -0.00482323719188571, 0.0018119380110874772, -0.014237577095627785, -0.016227299347519875, 0.01584409363567829, 0.0034635926131159067, -0.004661111626774073, 0.01926347054541111, 0.0048748222179710865, -0.001665472169406712, -0.023979851976037025, 0.011864647269248962, -0.020928943529725075, -0.0034470115788280964, 0.015026096254587173, -0.031039685010910034, 0.0032019808422774076, -0.004690588917583227, -0.023110268637537956, -0.01044236309826374, 0.010899262502789497, 0.01143722515553236, 0.02054573781788349, 0.010169697925448418, -0.022609153762459755, -0.009970725513994694, 0.0048748222179710865, 0.016625244170427322, 0.007818875834345818, -0.008364208042621613, -0.018069636076688766, -0.010405516251921654, -0.019749848172068596, -0.011348793283104897, 0.009742275811731815, -0.06349428743124008, -0.03625718131661415, 0.006868230644613504, 0.010803461074829102, -0.020000405609607697, 0.015431410633027554, 0.013544858433306217, 0.022668108344078064, 0.014045973308384418, 0.0194550734013319, 0.014429179951548576, 0.00854107178747654, 0.02698654495179653, -0.013942803256213665, -0.003319890471175313, -0.008614765480160713, 0.022741802036762238, 0.025866404175758362, 0.026102224364876747, 0.0006876520928926766, 0.022152254357933998, -0.015151375904679298, -0.010840307921171188, 0.026618078351020813, -0.001620334922336042, 0.013419578783214092, 0.018025420606136322, 0.0031374990940093994, 0.003828375367447734, -0.0019123452948406339, -0.008194712921977043, -0.003868906758725643, -0.017229530960321426, -0.008069434203207493, 0.011577242985367775, -0.020825771614909172, -0.0021536913700401783, -0.002811405574902892, -0.01238787081092596, -2.7649441108223982e-05, -0.0050258939154446125, -0.01308795902878046, -0.0008267484954558313, 0.0019602461252361536, 0.021828003227710724, -0.011872016824781895, -0.005055371206253767, 0.009852815419435501, -0.003120918059721589, -0.020928943529725075, -0.002288182033225894, 0.011245622299611568, -0.012240483425557613, 0.002645595232024789, -0.009049557149410248, 0.006989824585616589, -0.019366642460227013, 0.006448177620768547, 0.008319991640746593, 0.006555033382028341, -0.007693597115576267, -0.0007710178615525365, 0.01190149411559105, 0.01621256209909916, -0.009911770932376385, 0.011503549292683601, 0.013847000896930695, -0.03304414823651314, 0.004889561329036951, 0.023611385375261307, -0.029138393700122833, 0.019867757335305214, 0.01274159923195839, -0.024731526151299477, 0.0006190250860527158, -0.02141531929373741, -0.0021960651502013206, 0.008555810898542404, -0.019469812512397766, 0.014156513847410679, 0.005000101402401924, -0.014569196850061417, 0.01073713693767786, -0.0027985090855509043, -0.015416672453284264, -0.009594888426363468, -0.007693597115576267, 0.005206442903727293, 0.013736461289227009, 0.004672165494412184, -0.013353255577385426, 0.016006220132112503, -0.005199073813855648, -0.020987898111343384, 0.008076803758740425, 0.0084010548889637, 0.009904401376843452, 0.0028887835796922445, 0.008740044198930264, 0.018541274592280388, 0.019189776852726936, -0.002361875493079424, -0.01571144536137581, -0.007096680346876383, -0.015755662694573402, 0.01468710694462061, 0.001561380224302411, 0.015770399942994118, -0.01808437518775463, 0.014023865573108196, 0.013552227057516575, 0.0034470115788280964, 0.001559537835419178, 0.005442262161523104, 0.0019362956518307328, 0.018806571140885353, 0.005364884156733751, 0.013729091733694077, 0.014252315275371075, -0.004882191773504019, 0.00693087000399828, 0.004241058602929115, -0.0168021097779274, -0.012129943817853928, -0.0014840021030977368, 0.0026050638407468796, -0.0050258939154446125, -0.0014204414328560233, -0.01255736593157053, 0.001812859089113772, -0.01848232001066208, -0.0041452571749687195, -0.0048011289909482, -0.0015604590298607945, -0.0031282873824238777, -0.0009478821302764118, 0.014547089114785194, -0.013426948338747025, 0.008614765480160713, 0.010530795902013779, 0.006190250627696514, 0.008791630156338215, 0.03313257917761803, 0.008187343366444111, -0.005372253246605396, 0.012034142389893532, 0.00877689104527235, 0.017067406326532364, -0.0103760389611125, 0.02016253024339676, -0.025777973234653473, 0.008179973810911179, -0.02502629905939102, -0.01072239875793457, 0.00852633360773325, 0.009418024681508541, -0.013500642031431198, 0.012373131699860096, -0.030892299488186836, 0.005442262161523104, 0.004793759435415268, -0.017760124057531357, 0.003679146058857441, -0.004351598676294088, -0.02119424007833004, 0.004550571087747812, 0.011120343580842018, -0.0004617355880327523, -0.012115204706788063, 0.009992833249270916, 0.0351075641810894, 0.01752430573105812, -0.021312149241566658, -0.008629504591226578, 0.01612412929534912, 0.022270163521170616, 0.012380501255393028, 0.020398350432515144, 0.018261238932609558, -0.01310269720852375, -0.008504224941134453, -0.013596443459391594, 0.00778939900919795, -0.0012316019274294376, 0.0029256304260343313, 0.018040159717202187, -0.017435872927308083, 0.02100263722240925, 0.00500378618016839, -0.004837975837290287, -0.017376918345689774, -0.005954431835561991, 0.013198498636484146, -0.0024834696669131517, -0.0019344533793628216, -0.02564532496035099, -0.013154283165931702, 0.021076329052448273, 0.02679494209587574, -0.010582380928099155, -0.007560949306935072, 0.007417246699333191, -0.017715908586978912, -0.0007885200320743024, 0.007476201746612787, -0.0018920795992016792, 0.018069636076688766, -0.008268406614661217, -0.010213913396000862, 0.005902846343815327, 0.009101142175495625, 0.001087899669073522, 0.013839632272720337, -0.010869785211980343, 0.027222365140914917, 0.000633763789664954, 0.021017374470829964, 0.0019805117044597864, -0.01089189387857914, 0.017715908586978912, -0.0009570938418619335, -0.008150496520102024, -0.0034249036107212305, 0.011614089831709862, -0.024289363995194435, -0.014819755218923092, 0.0178043395280838, -0.018349671736359596, -0.006750321015715599, 0.026898114010691643, -0.021960651502013206, -0.007255121134221554, 0.005372253246605396, 0.001070397556759417, 0.013574335724115372, 0.0015300604281947017, -0.001739165629260242, 0.009845446795225143, -0.005250659305602312, -0.0021186869125813246, -0.010339192114770412, 0.017347440123558044, 0.005158542189747095, 0.0016359948785975575, -0.02141531929373741, 0.0012666063848882914, 0.002137110335752368, -0.014362855814397335, 0.035372860729694366, -0.03587397560477257, 0.007752552162855864, 0.0049743084236979485, 0.0032554087229073048, 0.010950848460197449, -0.012704752385616302, 0.007177743129432201, 0.0017373233567923307, 0.006245520897209644, -0.004491616506129503, 0.01426705438643694, -0.01196781825274229, -0.00936643872410059, 0.011938340961933136, -0.009506456553936005, -0.0033751605078577995, 0.018511798232793808, -0.013345886021852493, 0.024849435314536095, 0.013014265336096287, -0.01957298256456852, -0.021901696920394897, 0.007988370954990387, -0.010162328369915485, 0.0006669258000329137, 0.03333892300724983, 0.004414238501340151, -0.0036349298898130655, 0.023110268637537956, 0.008607395924627781, -0.01285213977098465, 0.004977993201464415, 0.007597795687615871, 0.02651490643620491, -0.010029680095613003, 0.005692820064723492, 0.0067208437249064445, -0.004819552414119244, 0.0389101468026638, -0.012734229676425457, -0.011525657027959824, 0.009226420894265175, -0.006647150032222271, -0.006319214124232531, 0.023699816316366196, 0.014657629653811455, 0.004727435298264027, -0.008430532179772854, 0.00559333385899663, 0.017907511442899704, 0.015460887923836708, 0.0032793590798974037, -0.005744405090808868, -0.006967716850340366, 0.018968697637319565, 0.009388547390699387, 0.016566289588809013, 0.019779324531555176, 0.018511798232793808, 0.029359474778175354, -0.007664119824767113, -0.004465823527425528, -0.013876479119062424, 0.013021634891629219, 0.016079913824796677, 0.008703197352588177, -0.011724629439413548, 0.01904238946735859, 0.00497062411159277, 0.004277905449271202, -0.00509590283036232, -0.016861064359545708, 0.0070377252995967865, 0.013250084593892097, -0.01786329410970211, 0.011577242985367775, 0.007070887368172407, 0.016109390184283257, 0.015785139054059982, 0.02567480131983757, -0.007446724455803633, 0.006894023157656193, -0.0011579084675759077, 0.0189539585262537, 0.0020578899420797825, -0.01492292620241642, -0.015770399942994118, -0.004587417934089899, 0.004174734465777874, -0.005611757282167673, 0.016286255791783333, -0.006186565849930048, -0.003920492250472307, 0.03295571729540825, -0.0011827800190076232, -0.000969069020356983, -0.009911770932376385, -0.012048880569636822, 0.01836441084742546, 0.005563856102526188, 0.012034142389893532, -0.0008553047082386911, -0.017141098156571388, -0.017715908586978912, -0.002249492798000574, -0.022388072684407234, 0.0007908229599706829, 0.024259887635707855, 0.011363531462848186, 0.0035372860729694366, 0.022358596324920654, 0.006212358828634024, 0.00015751976752653718, -0.002037624130025506, 0.010140220634639263, 0.003946284763514996, -0.0024632038548588753, -0.020398350432515144, -0.002796666929498315, 0.010965586639940739, -0.00574072077870369, 0.006455547176301479, -0.020236223936080933, -0.02611696347594261, -0.010132851079106331, 0.0002576968108769506, 0.01746535114943981, 0.00806206464767456, 0.00405314052477479, 0.01445865724235773, -0.01668419875204563, 0.022550199180841446, -0.004580048378556967, -0.004635318648070097, -0.0007240382255986333, 0.010206544771790504, -0.016625244170427322, -0.0008723463397473097, 0.0028058786410838366, -0.00835683848708868, -0.034370630979537964, 0.001431495533324778, -0.00033300233189947903, -0.0005172359524294734, -0.01215205155313015, 0.021636400371789932, 0.004193157888948917, 0.0030601208563894033, -0.0238029882311821, -0.012690014205873013, -0.004952200688421726, 5.8580542827257887e-05, 0.005519640166312456, 0.017288485541939735, -0.008747413754463196, 0.0025774287059903145, -0.0011588296620175242, 0.013154283165931702, 0.012660536915063858, 0.02533581107854843, 0.0030380128882825375, -8.92381722223945e-05, -0.006960347294807434, 0.000882479187566787, 0.023729294538497925, -0.01048657950013876, 0.004288959316909313, 0.005917584989219904, 0.0075904265977442265, 0.007465147413313389, -0.014163883402943611, 0.00539067666977644, 0.007148265838623047, 0.010073896497488022, -0.029831113293766975, 0.017067406326532364, -0.011739368550479412, -0.013648029416799545, -0.006584510672837496, 0.0002719749172683805, -0.023449258878827095, 0.015210330486297607, -0.023110268637537956, 0.01148144155740738, 0.0006549506215378642, 0.006212358828634024, -0.005059055984020233, 0.003533601528033614, -0.007185112219303846, -0.003283043624833226, 0.011179298162460327, -0.013316408731043339, 0.013404840603470802, -0.015549320727586746, 0.02461361512541771, -0.0066692582331597805, -0.017627475783228874, 0.01274159923195839, -0.04412764310836792, 0.03127550333738327, 0.005803360138088465, -0.012159421108663082, -0.024200933054089546, -0.0009515667916275561, 0.01624203845858574, -0.002387668238952756, -0.003483858425170183, 0.004779020790010691, 0.015534581616520882, 0.013552227057516575, -0.00616077333688736, -0.0017207423225045204, 0.024407275021076202, -0.033162057399749756, 0.012129943817853928, -0.0038578526582568884, -0.003207507776096463, -0.008629504591226578, -0.0032498815562576056, 0.0003873512614518404, -0.02004462108016014, -0.013367993757128716, 0.006853491999208927, -0.0015346662839874625, -0.01867392286658287, -1.3745557225774974e-05, 0.012645797803997993, -0.0027303427923470736, -0.02262389287352562, -0.004141572397202253, 0.027620309963822365, -0.0276055708527565, -0.0005246053333394229, -0.015637751668691635, -0.011024542152881622, 0.0014370224671438336, 0.004624264780431986, -0.03575606644153595, -0.002446622820571065, -0.02097315900027752, -0.010899262502789497, -0.03566763550043106, -0.008533703163266182, 0.014023865573108196, -0.0016120444051921368, -0.006042863707989454, -0.016949495300650597, 0.018998173996806145, 0.0009441974689252675, -0.004266851581633091, -0.004959569778293371, 0.005346460733562708, -0.0009626208338886499, 0.01255736593157053, 0.002947738394141197, -0.002910891780629754, -0.025601107627153397, 0.02421567216515541, -0.0055970181711018085, -0.013736461289227009, 0.0008470141910947859, 0.008143127895891666, -0.0021463220473378897, -0.001321876421570778, 0.011171928606927395, 0.004462139215320349, -0.015387194231152534, 0.012712121941149235, 0.00882110744714737, -0.004830606281757355, 0.0050774794071912766, 0.016507335007190704, -0.022137515246868134, 0.0020984213333576918, 0.00755357975140214, -0.0064666010439395905, -0.011960448697209358, 0.004458454437553883, -0.018821310251951218, 0.003268304979428649, 0.004027347546070814, -0.0192045159637928, -0.018320193514227867, -0.00522118154913187, 0.0016212561167776585, 0.015505104325711727, -0.004594787489622831, -0.00302327424287796, 0.010272868908941746, -0.006407646462321281, 0.013132174499332905, -0.01596200279891491, -0.010552903637290001, 0.013367993757128716, 0.0006158009637147188, 0.01118666771799326, -0.01285213977098465, 0.022049084305763245, 0.0027395545039325953, 0.004432661458849907, 0.00824629794806242, 0.021459536626935005, 0.001611123327165842, -0.016875803470611572, 0.016389425843954086, -0.0005444104317575693, 0.02794456109404564, 0.013706983998417854, -0.001991565804928541, -0.019189776852726936, 0.014259684830904007, 0.010692921467125416, -0.02097315900027752, 0.005294875241816044, -0.020280441269278526, -0.012203637510538101, -0.022019606083631516, -0.014414440840482712, 0.005309613887220621, 0.0036478263791650534, 0.00812101922929287, 0.01126773003488779, -0.000752594496589154, -0.018246501684188843, -0.015858832746744156, -0.021430058404803276, -0.004152626730501652, 0.015180853195488453, -0.006315529812127352, 0.02212277613580227, 0.014421810396015644, 0.013043742626905441, 0.004580048378556967, -0.016300993040204048, -0.003196453908458352, 0.02346399798989296, 0.003540970850735903, 0.0038062671665102243, -0.0021979075390845537, -0.015180853195488453, -0.006886654067784548, 0.018556013703346252, 0.01048657950013876, -0.006440808530896902, -0.005084848962724209, -0.004863768350332975, 0.009970725513994694, -0.0226533692330122, 0.005858629941940308, -0.002886941423639655, -0.008695828728377819, 0.026721248403191566, 0.004871137905865908, -0.0093517005443573, 0.009653843007981777, 0.00971279852092266, 0.0014545246958732605, -0.012144681997597218, -0.019720369949936867, 0.012159421108663082, 0.030951254069805145, -0.012933202087879181, -0.004672165494412184, 0.015210330486297607, -0.0146281523630023, -0.018025420606136322, 0.01380278542637825, 0.005497531965374947, -0.013065850362181664, 0.005129064898937941, -0.0015687495470046997, -0.002634541131556034, 0.005364884156733751, -0.02511473186314106, 0.015740923583507538, 0.009064295329153538, -0.007981001399457455, -0.008798998780548573, -0.0068792845122516155, 0.015829354524612427, 0.008187343366444111, -0.003434115322306752, -0.01898343488574028, 0.003343840828165412, 0.013124804943799973, 0.0009874923853203654, -0.012115204706788063, -0.014598675072193146, 0.0029680042061954737, -0.01932242512702942, -0.021208977326750755, -0.017155837267637253, 0.01447339542210102, -0.0002920103434007615, 0.019941451027989388, -0.007627273444086313, 0.014893448911607265, -0.005954431835561991, 0.002258704509586096, 0.013574335724115372, -0.008585288189351559, 0.0054275235161185265, 0.01727374643087387, 0.0020468358416110277, 0.0032738319132477045, 0.003931546118110418, -0.00971279852092266, -0.0011846224078908563, -0.01559353619813919, -0.012034142389893532, -0.015726184472441673, -0.010353931225836277, -0.004668480716645718, 0.0036404570564627647, 0.020825771614909172, 0.016315732151269913, 0.0030674904119223356, -9.344100544694811e-05, -0.006031809840351343, -0.009948616847395897, 0.002011831384152174, -0.0012205479433760047, 0.015180853195488453, 0.012542626820504665, 0.002175799338147044, -0.015976741909980774, 0.00028763478621840477, 0.005932323634624481, -0.009616997092962265, 0.004248428158462048, 0.017656954005360603, -0.006938239559531212, -0.010125481523573399, 0.01310269720852375, -0.004793759435415268, 0.005884422920644283, -0.023036576807498932, 0.02271232381463051, -0.005401730537414551, -0.004580048378556967, -0.006422385107725859, 5.607611819868907e-05, 0.007527787238359451, -0.0066103036515414715, -0.00544594693928957, -0.02502629905939102, 0.00918220542371273, -0.024539923295378685, 0.003631245344877243, 0.004731120076030493, 0.004089986905455589, -0.007664119824767113, -0.0024337265640497208, 0.016920018941164017, 0.0010224967263638973, 0.0074393549002707005, 0.004594787489622831, 0.008275775238871574, -0.00918220542371273, -0.009454870596528053, -0.01708214357495308, 0.0020523627754300833, 0.022491244599223137, -0.003891014726832509, 0.026912851259112358, -0.004779020790010691, 0.0019326109904795885, -0.01398701872676611, -0.009292745031416416, -0.0073804003186523914, -0.008364208042621613, 0.0068203299306333065, -0.00848211720585823, 0.003715992672368884, 0.00604654848575592, -0.012638428248465061, -0.012962679378688335, 0.015195591375231743, -0.016787370666861534, -0.0042963288724422455, 0.02567480131983757, 0.014510242268443108, -0.000908271933440119, 0.014274423010647297, -0.02592535875737667, 0.006934554781764746, 0.009137989021837711, -0.0016903437208384275, -0.017096882686018944, 0.007914677262306213, 0.005936008412390947, -0.0059986477717757225, 0.0173032246530056, 0.007892569527029991, -0.005552802234888077, 0.005213812459260225, 0.01251314952969551, 0.00474585872143507, -0.009130619466304779, -0.02365560084581375, -0.023906158283352852, -0.0005660579190589488, -0.006319214124232531, 0.016625244170427322, -0.032012440264225006, 0.015313501469790936, -0.01036130078136921, 0.01907186768949032, 0.001191991730593145, -0.004185788799077272, 0.011680413968861103, 0.004661111626774073, 0.016197822988033295, 0.008614765480160713, 0.023847203701734543, 0.016094651073217392, 0.026396997272968292, -0.03575606644153595, -0.00518801948055625, -0.015372456051409245, 0.007723074872046709, -0.003618348855525255, 0.016949495300650597, 0.015460887923836708, 0.00643343897536397, 0.011872016824781895, 0.0011533026117831469, 0.004661111626774073, 0.007774660363793373, 0.009653843007981777, 0.007656750734895468, -0.014554458670318127, -0.011068757623434067, 0.008091541938483715, 0.008629504591226578, -0.024318842217326164, -0.014974511228501797, 0.021518491208553314, 0.013611182570457458, 0.005044317338615656, -0.00474585872143507, 0.015298762358725071, 0.004399499390274286, 0.007782029453665018, 0.0009285376290790737, 0.0011109289480373263, -0.025041038170456886, 0.009675951674580574, 0.010862416587769985, -0.043832872062921524, 0.008091541938483715, 0.006639780942350626, -0.009978095069527626, -0.023979851976037025, 0.01665472239255905, -0.018261238932609558, 0.024672571569681168, 0.02197539061307907, 0.01795172691345215, -0.007796768099069595, 0.009823338128626347, -0.006186565849930048, 0.014738691970705986, 0.0013762253802269697, -0.01167304441332817, 0.0037086233496665955, 0.001890237326733768, -0.00767885847017169, -0.010501318611204624, -0.01213731337338686, -0.03174714371562004, 0.007855722680687904, 0.01090663205832243, 0.0192045159637928, -0.003393583931028843, -0.017376918345689774, 0.01042762491852045, -0.01960246078670025, 0.020250963047146797, -0.010272868908941746, 5.4751937568653375e-05, -0.00012585461081471294, -0.007417246699333191, -0.0032148773316293955, 0.006120241712778807, -0.0002482548588886857, -0.006392907816916704, 0.01842336542904377, -0.002870360389351845, 0.008644242770969868, 0.014075450599193573, -0.01708214357495308, -0.0018183861393481493, 0.0017935145879164338, 0.004476877860724926, 0.00823155976831913, -0.00037952131242491305, 0.014886079356074333, 0.01808437518775463, 0.01002231054008007, 0.031599756330251694, -0.0021186869125813246, -0.003780474653467536, -0.0010003887582570314, -0.016698937863111496, 0.011061388067901134, 0.008445270359516144, -0.020796295255422592, -0.0016627087024971843, -0.0077599212527275085, -0.009904401376843452, -0.002428199630230665, 0.03392846882343292, 0.010457102209329605, 0.006599249318242073, -0.027752958238124847, 0.000267138791969046, 0.0042042117565870285, 0.01439233310520649, -0.009395916014909744, -0.0001916030014399439, -0.004071563947945833, -0.010840307921171188, -0.0026069062296301126, 0.010390778072178364, 0.007840984500944614, -0.014694476500153542, -0.0012795027578249574, -0.005055371206253767, -0.0002441095857648179, -0.018939219415187836, 0.02138584293425083, -0.006304475478827953, -0.0036201912444084883, 0.016728416085243225, -0.0021278986241668463, 0.011400378309190273, 0.011820430867373943, 0.0013808312360197306, 0.002446622820571065, -0.006846122443675995, -0.010648705065250397, 0.01929294876754284, 0.0005941535346210003, 0.008113649673759937, 0.011768845841288567, 0.011157190427184105, 0.005549117457121611, -0.0011109289480373263, -0.009440132416784763, -0.008091541938483715, -0.014215468429028988, -0.002881414256989956, -0.011127712205052376, -0.0016378371510654688, 0.004189473111182451, -0.012527888640761375, -0.011798323132097721, 0.002076313365250826, 0.014436548575758934, 0.02713393233716488, -0.006875599734485149, -0.004001555033028126, 0.014311269856989384, -0.006709789391607046, -0.0005812571616843343, -0.002076313365250826, 0.0009524879860691726, -0.010398147627711296, -0.007115103770047426, -0.003432272933423519, -0.002719288691878319, 0.007476201746612787, -0.00557122565805912, 0.01696423441171646, 0.014377593994140625, 0.01786329410970211, 0.014377593994140625, 0.00018630627891980112, 0.009565411135554314, -0.0011901493417099118, 0.030332228168845177, 0.008717936463654041, 0.007723074872046709, 0.01232154667377472, -0.010398147627711296, 0.001989723416045308, 0.016816847026348114, 0.0029864273965358734, 0.007723074872046709, 0.0010307872435078025, -0.019528767094016075, -0.007818875834345818, 0.006042863707989454, 0.0113266846165061, -0.0132279759272933, -0.0037381008733063936, -0.004484246950596571, -0.005582279525697231, -0.01339747104793787, 0.029418429359793663, 0.004042086191475391, 0.008084172382950783, -0.019720369949936867, 0.0025295279920101166, 0.0020707861986011267, 0.02629382722079754, -0.01677263155579567, 0.004034717101603746, 0.005103272385895252, 0.014252315275371075, 0.0011321158381178975, -0.016728416085243225, -0.002995639108121395, -0.004697958007454872, 0.014561828225851059, 0.016757892444729805, 0.011275099590420723, 0.011444594711065292, 0.013773308135569096, -0.025940097868442535, -0.007104049436748028, -0.01244682539254427, -0.011076127178966999, -0.007468832191079855, 0.02922682650387287, -0.002599536906927824, -0.011584611609578133, 0.007848354056477547, 0.002594009740278125, 0.00877689104527235, 0.03227773681282997, -0.005611757282167673, -0.02038361132144928, 0.001198439858853817, 0.000749370374251157, 0.004841660615056753, -0.005965485703200102, 0.017936987802386284, 0.001336615183390677, -0.008010479621589184, 0.005106956698000431, -0.005346460733562708, 0.024716787040233612, -0.008585288189351559, -0.02334608882665634, 0.007870461791753769, 0.008673720061779022, 0.006061287131160498, 0.0014010969316586852, 0.01982354186475277, -0.014068081974983215, 0.009484348818659782, -0.0189539585262537, -0.0012730545131489635, -0.006529240868985653, 0.01973510906100273, -0.012100466527044773, 0.0011118501424789429, 0.026190655305981636, -0.015623013488948345, -0.002385825850069523, 0.013839632272720337, 0.008658981882035732, 0.0069714016281068325, 0.0031264449935406446, 0.002140795113518834, 0.013832262717187405, -0.014635520987212658, 0.0005679002497345209, 0.024068284779787064, 0.009189574979245663, -0.004594787489622831, -0.0037841591984033585, -0.014274423010647297, -0.004071563947945833, 0.015225068666040897, 9.747111471369863e-05, 0.010670812800526619, -0.005331722088158131, 0.006245520897209644, -0.011164559051394463, 0.005873369053006172, 0.00621604360640049, 0.002348979003727436, -0.02256493829190731, -0.003618348855525255, -0.004576364066451788, -0.021739570423960686, -0.006076025776565075, -0.01643364131450653, 0.021430058404803276, -0.012748968787491322, 0.023449258878827095, -0.008916908875107765, 0.030332228168845177, -0.005106956698000431, -0.0057886214926838875, -0.002660333877429366, -0.0035612364299595356, 0.0017290328396484256, -0.005818098783493042, -0.0026290141977369785, 0.023287134245038033, 0.020339395850896835, 0.0033751605078577995, -0.005755459424108267, 0.0026290141977369785, -0.01848232001066208, -0.004591102711856365, -0.0011017172364518046, -0.017686430364847183, 0.019351903349161148, -0.00020806888642255217, -0.011245622299611568, -0.004064194392412901, -0.02576323412358761, 0.0035022818483412266, 0.00044607571908272803, 0.004344229586422443, 0.0047569130547344685, 0.003924177028238773, 0.0040936716832220554, -0.00584389129653573, -0.006451862398535013, -0.006311845034360886, 0.01044236309826374, 0.045572035014629364, 0.021621661260724068, 0.0168021097779274, -0.007538841105997562, 0.007026671431958675, -0.030007977038621902, -0.004930092487484217, -0.0004170589381828904, -0.0066176727414131165, 0.0003624797100201249, 0.007505679037421942, -0.002286339644342661, 0.01749482750892639, 0.00027635047445073724, 0.007855722680687904, -0.005442262161523104, 0.0008898485684767365, 0.0004859162727370858, 0.012594212777912617, 0.023301871493458748, 0.00018791832553688437, 0.01727374643087387, -0.01534297876060009, 0.0010049946140497923, 0.014591305516660213, 0.0038873301818966866, 0.007081941701471806, -0.00046265675337053835, -0.004329490941017866, 0.00584389129653573, 0.019175037741661072, -0.0023802986834198236, -0.038880668580532074, -0.002960634883493185, -0.006024440284818411, 0.009616997092962265, 0.013530119322240353, -0.002092894399538636, -0.0008543835720047355, -0.02340504340827465, -0.017509566619992256, -0.016669461503624916, 0.007804137654602528, -0.0050185248255729675, -0.013006895780563354, -0.006787167862057686, -0.006562402471899986, 0.018040159717202187, -0.011179298162460327, -0.002719288691878319, 0.01764221489429474, 0.008172605186700821, -0.027251841500401497, -0.00544594693928957, -0.0014333378057926893, -0.00905692670494318, 0.0034230612218379974, -0.018836049363017082, 0.005409100092947483, -0.008157866075634956, -0.003098810091614723, 0.008261037059128284, 0.01559353619813919, 0.004779020790010691, -0.0070893107913434505, 0.012984788045287132, -0.002820617286488414, 1.9474073269520886e-05, 0.011614089831709862, -0.011348793283104897, 0.02427462674677372, -0.013699614442884922, -0.006087080109864473, -0.019956190139055252, -0.016330471262335777, -0.009874924086034298, -0.03608031943440437, -0.004159995820373297, 0.006311845034360886, 0.015225068666040897, 0.00355570949614048, -0.007174058351665735, -0.002262389287352562, -0.019661415368318558, -0.006835068576037884, 0.0034599080681800842, 0.008732675574719906, -0.00348201603628695, 0.01363329030573368, 0.006333952769637108, -0.0038983840495347977, -0.020781556144356728, -0.005615441594272852, 0.004650057293474674, 0.02035413309931755, -0.011768845841288567, -0.014583935961127281, -0.01321323774755001, -0.0028685180004686117, 0.011039280332624912, 0.007070887368172407, 0.0017308751121163368, -0.003491227747872472, 0.018939219415187836, 0.007358292117714882, -0.016345210373401642, -0.010073896497488022, -0.0007945076213218272, -0.0064592319540679455, 0.0026805996894836426, -0.005891792010515928, 0.010258129797875881, -0.0007447645184583962, 0.019705630838871002, 0.0017990416381508112, 0.03855641931295395, 0.0070893107913434505, 0.013670137152075768, -0.002796666929498315, 0.0017843028763309121, -0.00824629794806242, 0.004484246950596571, 0.02530633471906185, -0.0018847102764993906, -0.013559596613049507, 0.0019602461252361536, 0.005287505686283112, 0.010309714823961258, 0.0019362956518307328, 0.0032259311992675066, 0.00346543500199914, -0.013758569024503231, 0.004944831132888794, 0.029492123052477837, -0.011997295543551445, -0.007922046817839146, 0.015460887923836708, -0.010213913396000862, 0.019219255074858665, -0.009933878667652607, -0.020958419889211655, 0.04259482026100159, 0.01867392286658287, 2.0884612240479328e-05, -2.5029868993442506e-05, -0.007306706625968218, -0.026971805840730667, 0.005261713173240423, 0.003828375367447734, -0.008238929323852062, -0.0067687444388866425, -0.0011017172364518046, -0.02231438085436821, 0.012174160219728947, -0.001120140659622848, 0.024422012269496918, -0.018511798232793808, 0.001583488192409277, -0.013994388282299042, 0.01409755926579237, -0.009373808279633522, 0.005563856102526188, 0.0063081602565944195, -0.008010479621589184, 0.0037233622279018164, -0.004576364066451788, -0.008990602567791939, 0.016020959243178368, -0.017878033220767975, -0.017597997561097145, -0.01926347054541111, 0.004458454437553883, -0.0031853998079895973, 0.009292745031416416, 0.00019701485871337354, 0.009403285570442677, 0.0033843722194433212, 0.0015844093868508935, -0.016698937863111496, -0.011120343580842018, 0.012048880569636822, 0.0004932855954393744, 0.031128117814660072, -0.012004665099084377, -0.018821310251951218, 0.016625244170427322, -0.016197822988033295, 0.00947697926312685, -0.0014241260942071676, -0.0192045159637928, 0.013264822773635387, 0.017730645835399628, -0.008961125276982784, 0.00308038666844368, -0.021798525005578995, 0.01014758925884962, 0.011790953576564789, -0.008113649673759937, -0.035520248115062714, -0.00039449031464755535, 0.008909539319574833, 0.003979446832090616, -0.009631735272705555, -0.010508687235414982], "8bd35713-c665-4e9f-9747-a0e1b9042d52": [0.000933309958782047, -0.019833439961075783, -0.0024753212928771973, 0.03503650426864624, -0.035067372024059296, -0.031671762466430664, 0.030452432110905647, 0.027195734903216362, 0.0009873310336843133, 0.04130294546484947, -0.0236149113625288, 0.010773339308798313, -0.0073314267210662365, -0.0011247952934354544, 0.016653915867209435, 0.03975948691368103, -0.02380012720823288, -0.005533298011869192, 0.0042638033628463745, -0.041889458894729614, 0.03982122242450714, -0.024324903264641762, -0.029788745567202568, 0.019694527611136436, 0.01866041123867035, 0.008064569905400276, -0.01722499541938305, 0.012934180907905102, -0.014192098751664162, 0.001707450719550252, 0.027164865285158157, 0.0022225799039006233, 0.006058073602616787, 0.0004796778957825154, 0.012332231737673283, -0.03330783173441887, -0.0010225410806015134, 0.01679282635450363, -0.01991061121225357, -0.02211775816977024, 0.01294961478561163, 0.003125502960756421, 0.019540181383490562, -0.012131582014262676, -0.05482363700866699, 0.016900869086384773, 0.012640923261642456, 0.00837326142936945, -0.0013649959582835436, 0.013435804285109043, 0.018382588401436806, 0.01608283631503582, 0.006162257399410009, -0.005811120383441448, 0.012648641131818295, -0.03306087851524353, 0.025559669360518456, 0.06402265280485153, -0.013783082365989685, -0.06556610763072968, -0.01133670099079609, 0.015534907579421997, 0.014053188264369965, -0.012455708347260952, 0.023213611915707588, 0.016175443306565285, 0.016761956736445427, -0.00021463716984726489, -0.005243899766355753, 0.024000776931643486, 0.019478444010019302, -0.008342391811311245, -0.04448246955871582, 0.029696138575673103, 0.017657162621617317, 0.003974405117332935, -0.0181819386780262, 0.020558863878250122, 0.031193291768431664, -0.001822245423682034, 0.025019459426403046, -0.00018774723866954446, 0.05315670371055603, 0.028060071170330048, 0.05920705944299698, 0.024170557036995888, -0.0036174803972244263, -0.048341114073991776, -0.024602726101875305, -0.016422396525740623, 0.008990644477307796, 0.03593171015381813, -0.009608027525246143, 0.01279526948928833, -0.019663657993078232, 0.009978458285331726, 0.0338326059281826, -0.001429628231562674, -0.019092578440904617, -0.020296476781368256, -0.027658773586153984, 0.013790800236165524, -0.03503650426864624, 0.0029248534701764584, 0.008319240063428879, -0.007933375425636768, 0.047445908188819885, 0.0022766010370105505, -0.024787940084934235, 0.006139105185866356, -0.00039020556141622365, -0.0478472076356411, -0.01384482067078352, 0.002398148411884904, -0.0644548162817955, -0.011614523828029633, -0.03457346558570862, -0.013543847016990185, -0.0030058850534260273, -0.019802570343017578, 0.033523913472890854, -0.03108525089919567, 0.001269494416192174, -0.02762790396809578, -0.025868361815810204, 0.042537711560726166, -0.007003441918641329, -0.015820447355508804, 0.0024232296273112297, 0.01937040127813816, -0.023367958143353462, 0.0005045179277658463, 0.027967464178800583, -0.023954473435878754, 0.026285095140337944, 0.0078523438423872, -0.007802181877195835, 0.026177052408456802, -0.015419148840010166, -0.012625488452613354, -0.06115181744098663, -0.016777392476797104, -0.03222740814089775, 0.0017035921337082982, 0.00855075940489769, 0.00509727094322443, -0.01220103818923235, 0.061614856123924255, -0.032566968351602554, 0.010209976695477962, -0.09452138841152191, -0.0013100102078169584, -0.013659605756402016, -0.010063348338007927, 0.03864819556474686, 0.007350719999521971, 0.017595425248146057, 0.012038975022733212, -0.003916525281965733, 0.0520145446062088, 0.0051242816261947155, -0.040562085807323456, -0.02613074891269207, 0.02852310985326767, 0.0344499908387661, 0.006768064573407173, 0.04713721573352814, 0.024787940084934235, -0.03272131457924843, 0.027350081130862236, 0.02469533309340477, 0.020311910659074783, 0.026146182790398598, -0.008103156462311745, -0.022796878591179848, -0.027350081130862236, 0.005479277111589909, 0.007188656833022833, 0.023939037695527077, -0.01693173684179783, -0.0118074556812644, 0.025436192750930786, 0.0067063262686133385, 0.0035325901117175817, -0.00011919598182430491, 0.04485289752483368, 0.037876468151807785, 0.03097720816731453, 0.0075668045319616795, -0.008288371376693249, -0.016314353793859482, -0.017749769613146782, -0.015064152888953686, 0.007393165025860071, 3.8164416764630005e-05, -0.009700635448098183, -0.007015017792582512, -0.026331398636102676, -0.03235088661313057, 0.02080581709742546, 0.014068622142076492, -0.03796907514333725, -0.007589956279844046, 0.04892762750387192, -0.051520638167858124, 0.047631122171878815, -0.03528345748782158, -0.05451494827866554, 0.00739702396094799, -0.03284479305148125, 0.03951253369450569, -0.022380145266652107, -0.004942925181239843, -0.02068234048783779, 0.009793243370950222, -0.012787551619112492, -0.029618965461850166, 0.03085373155772686, -0.008211198262870312, -0.015488604083657265, -0.02403164654970169, 0.007856202311813831, 0.013837103731930256, -0.03503650426864624, -0.057972293347120285, 0.0026489603333175182, -0.018043028190732002, 0.02188623882830143, 0.015110456384718418, 0.01733303628861904, 0.01589762046933174, -0.010981705971062183, 0.01231679692864418, -0.004402714781463146, -0.006505676545202732, 0.04411203786730766, 0.04775460064411163, -0.037629514932632446, -0.0066098603419959545, -0.02207145281136036, 0.03679604455828667, 0.011282680556178093, -0.02839963324368, -0.004553202074021101, -0.016530439257621765, 0.04371073842048645, 0.002374996431171894, 0.04479115828871727, 0.028075506910681725, 0.010256280191242695, 0.007466479670256376, 0.023043831810355186, -0.01274124812334776, 0.008820864371955395, -0.029341142624616623, 0.034110426902770996, 0.02356860786676407, 4.530894148047082e-05, 0.01757998950779438, 0.0013283387525007129, 0.0018357507651671767, -0.014400466345250607, -0.031177857890725136, 0.039018627256155014, 0.016252616420388222, -0.031239595264196396, 0.04790894687175751, -0.03886428102850914, 0.008380978368222713, 0.017595425248146057, 0.024170557036995888, 0.0036637841258198023, -0.023537738248705864, 0.02355317398905754, 0.028970712795853615, -0.010302583687007427, 0.0031177857890725136, 0.001799093559384346, 0.014292423613369465, 0.009168142452836037, -0.020435387268662453, -0.004503039643168449, 0.020435387268662453, 0.006771923508495092, 0.017842378467321396, 0.012270493432879448, -0.009229880757629871, -0.020821252837777138, -0.03843211010098457, -0.020589733496308327, -0.013520694337785244, 0.016360657289624214, -0.005768675357103348, 0.032134801149368286, 0.008242066949605942, 0.012664075009524822, 0.005822696257382631, 0.01360558532178402, -0.0038470698054879904, 0.049298059195280075, 0.0006053250399418175, -0.02977330982685089, -0.007786747068166733, 0.011575937271118164, 0.03173350170254707, -0.012995919212698936, 0.030174609273672104, 0.0077558779157698154, 0.00023718613374512643, 0.04090164601802826, 0.03648735582828522, -0.03265957906842232, -0.026470309123396873, 0.0038026953116059303, -0.008303805254399776, 0.020111260935664177, -0.012332231737673283, -0.0013920064084231853, 0.003426477313041687, -0.022982094436883926, 0.005359658971428871, 0.008620214648544788, -0.08019809424877167, 0.01240940485149622, 0.02792116068303585, -0.04898936673998833, 0.022565361112356186, 0.010279431939125061, -0.013366349041461945, -0.03272131457924843, -0.022951224818825722, -0.03114698827266693, -0.008651083335280418, -0.001647641765885055, -0.034295644611120224, -0.028183547779917717, -0.05429886281490326, -0.027072258293628693, -0.004132609814405441, -0.022766010835766792, -0.024386640638113022, 0.0017740123439580202, 0.04031513258814812, -0.021901672706007957, 0.004657385405153036, 0.0026489603333175182, 0.006042639259248972, 0.004692113026976585, -0.03144024685025215, 0.007466479670256376, 0.0009251103037968278, -0.01121322438120842, 0.06050356477499008, 0.0025795046240091324, 0.01639152690768242, -0.021315159276127815, -0.051211945712566376, 0.013435804285109043, 0.0069687142968177795, 0.032906532287597656, -0.0207440797239542, -0.022766010835766792, 0.018691280856728554, -0.025991838425397873, -0.016731087118387222, 0.009484550915658474, -0.010480081662535667, -0.002729991916567087, -0.0005503393476828933, 0.004784720949828625, -0.009106404148042202, 0.017888681963086128, 0.0022573077585548162, -0.024664463475346565, -0.04614940285682678, -0.03407955914735794, 0.03645648434758186, 0.03475867956876755, -0.0038470698054879904, 0.008820864371955395, 0.01918518729507923, -0.026038141921162605, -0.03062221221625805, 0.03134763985872269, 0.0373208224773407, -0.021021902561187744, 0.003102351212874055, -0.03401781991124153, 0.0047808620147407055, -0.005120422691106796, -0.019694527611136436, 0.003561530029401183, -0.005591177847236395, -0.025914665311574936, -0.03188784793019295, -0.041827719658613205, -0.0032451211009174585, -0.0234451312571764, 0.021855369210243225, -0.010819642804563046, -0.00855075940489769, -0.019123448058962822, -0.0105263851583004, 0.0038316352292895317, 0.02153124287724495, -0.037814728915691376, 0.019339531660079956, 0.012293645180761814, 0.036024317145347595, -0.0052979206666350365, -0.009978458285331726, 0.02349143475294113, 0.018382588401436806, 0.037289950996637344, 0.04670504853129387, 0.008643366396427155, -0.0058612828142941, 0.06809738278388977, -0.006119812373071909, -0.005259334109723568, 0.04303161799907684, -0.002156982896849513, 0.004526191391050816, 0.027843987569212914, -0.008589345030486584, 0.054082777351140976, -8.700040052644908e-05, 0.023892734199762344, 0.0020103545393794775, -0.012355383485555649, -0.011614523828029633, 0.05247758328914642, 0.004564777947962284, 0.017008909955620766, 0.008365543559193611, -0.020404519513249397, -0.0003127914678771049, -0.020527996122837067, 0.026501178741455078, 0.007593814749270678, -0.023784691467881203, -0.010202259756624699, 0.01100485771894455, 0.01575099118053913, -0.06235571578145027, -0.033986952155828476, -0.025806622579693794, -0.01722499541938305, 0.03565388545393944, 0.004993087612092495, 0.012378535233438015, 0.016607610508799553, -0.05843533203005791, -0.02948005311191082, 0.01321200281381607, -0.002407795051112771, -0.011668545193970203, -0.0066137188114225864, 0.021376896649599075, -0.07680248469114304, -0.03562301769852638, -0.02338339388370514, 0.03846298158168793, 0.01824367791414261, 0.020250173285603523, -0.03066851571202278, 0.017302166670560837, 0.010688448324799538, 0.006239430047571659, 0.03330783173441887, -0.003542236750945449, -0.0006405352032743394, 0.002280459739267826, 0.024540986865758896, 0.0011508411262184381, 0.005969325080513954, -0.011112899519503117, 0.03454259783029556, 0.007628542836755514, -0.011629958637058735, -0.01870671473443508, -0.022395579144358635, 0.0074857729487121105, -0.0009815429802984, 0.004487604834139347, 0.00235570315271616, -0.003075340762734413, 0.015635233372449875, -0.0019437927985563874, 0.013497542589902878, 0.024324903264641762, -0.010155955329537392, 0.009067817591130733, -0.004850317724049091, -0.00475385133177042, -0.018073895946145058, 0.0019244995201006532, -0.02319817803800106, -0.005980900954455137, -0.03571562469005585, 0.016345223411917686, -0.005336507223546505, -0.008712821640074253, 0.013790800236165524, -0.019571051001548767, 0.04775460064411163, -0.018753018230199814, 0.048649806529283524, -0.002282388973981142, 0.01474002655595541, -0.0401916541159153, 0.023398827761411667, -0.049668487161397934, 0.00033063770388253033, 0.01907714456319809, 0.024124253541231155, -0.009021514095366001, -0.013505260460078716, 0.04500724375247955, -0.0010862087365239859, -0.006223995704203844, -0.04179685190320015, -0.03654909133911133, 0.0074857729487121105, -0.003069552592933178, -0.013242872431874275, 0.006860672030597925, -0.006636870559304953, -0.0003757356316782534, -0.027427254244685173, -0.03281392529606819, 0.023182744160294533, -0.013474390842020512, 0.004719123709946871, 0.015805013477802277, -0.03386347368359566, -0.004665102809667587, 0.013435804285109043, 0.03343130648136139, 0.0010678801918402314, -0.05081064626574516, 0.032320015132427216, 0.00216662953607738, -0.004576353821903467, -0.014647419564425945, 0.026084445416927338, -0.004460594616830349, -0.008234350010752678, -0.0027801543474197388, 0.014099491760134697, -0.023167308419942856, 0.028800932690501213, -0.012123865075409412, 0.012748965993523598, -0.015064152888953686, -0.05173672363162041, 0.012085278518497944, -0.02446381375193596, -0.038277767598629, -0.02900158055126667, 0.009191294200718403, 0.00030531533411704004, 0.001037011039443314, -0.0027049107011407614, -0.003368597710505128, 0.009762373752892017, -0.04377247765660286, 0.0005715619190596044, -0.011784303933382034, 0.02775138057768345, 0.02511206641793251, 0.013613302260637283, 0.037999942898750305, 0.03228914737701416, 0.005537156481295824, 0.027766814455389977, 0.00794881023466587, -0.0034997917246073484, -0.05084151774644852, -0.007103766780346632, -0.000386105733923614, -0.015064152888953686, -0.003021319629624486, 0.0072349607944488525, 0.005610471125692129, 0.014246120117604733, -0.0011141839204356074, -0.019586486741900444, -0.011668545193970203, 0.00914499070495367, -0.008242066949605942, 0.032196540385484695, -0.015511755831539631, 0.03188784793019295, -0.04753851518034935, 0.02253449149429798, 0.024741636589169502, -0.02140776626765728, 0.016314353793859482, 0.0018473266391083598, 0.03611692413687706, 0.0017084154533222318, 0.019277794286608696, -0.01733303628861904, -0.03559214994311333, 0.00735457893460989, 0.019108014181256294, 0.0061892676167190075, 0.003457346698269248, 0.015287954360246658, -0.011197789572179317, -0.018367154523730278, 0.018104765564203262, -0.009700635448098183, 0.023105571046471596, -0.00819576345384121, 0.013767648488283157, 0.033215221017599106, -0.002153124427422881, 0.02625422552227974, 0.035005632787942886, -0.02960352972149849, 0.03975948691368103, -0.015002414584159851, 0.009121838957071304, 0.024000776931643486, -0.009499985724687576, 0.015720123425126076, -0.0074857729487121105, 0.007725008763372898, -0.025158369913697243, -0.041951198130846024, -0.00929933600127697, -0.013906558975577354, 0.007593814749270678, 0.010047913528978825, 0.008419564925134182, 0.017595425248146057, -0.0015897620469331741, -0.004178913310170174, 0.0006082190084271133, 0.003850928507745266, 0.004572495352476835, 0.03858645632863045, -0.001994919963181019, 0.013628737069666386, -0.01932409778237343, 0.02552879974246025, 0.03904949501156807, 0.020111260935664177, -0.008851733058691025, 0.029819615185260773, 0.009870415553450584, 0.026038141921162605, 0.012718096375465393, -0.03318435326218605, -0.0011045373976230621, 0.00034197248169220984, 0.008813146501779556, 0.011699413880705833, 0.04364899918437004, -0.011745717376470566, 0.023939037695527077, -0.012787551619112492, 0.014238403178751469, -0.000749541912227869, 0.034233905375003815, -0.012571468017995358, 0.0221794955432415, 0.013536129146814346, 0.02606901153922081, -0.02230297215282917, 0.003652208251878619, -0.008990644477307796, 0.00043072132393717766, -0.015210781246423721, -0.00017677420692052692, 0.00037043000338599086, -0.011112899519503117, -0.019447574391961098, -0.029109623283147812, -0.019956916570663452, -0.028677456080913544, 0.016129139810800552, -0.0012164380168542266, -0.008905754424631596, -0.03068395145237446, 0.002919065533205867, -0.03296826779842377, 0.0010177177609875798, -0.005676067899912596, 0.002006495837122202, 0.003962829243391752, 0.022735141217708588, 0.024000776931643486, -0.013752213679254055, 0.001969838747754693, -0.042969878762960434, 0.01282613817602396, -0.017070649191737175, -0.030930904671549797, -0.029510922729969025, -0.008465868420898914, -0.03002026304602623, 0.01129811443388462, -0.00015301942767109722, -0.012540598399937153, -0.012903311289846897, 0.0036251975689083338, 0.010140521451830864, 0.015534907579421997, 0.023584043607115746, 0.005583460442721844, 0.030930904671549797, -0.0004391621332615614, 0.013119395822286606, 0.00047557809739373624, 0.03108525089919567, -0.032443493604660034, 0.02498858980834484, 0.003962829243391752, 0.024309467524290085, -0.03599344938993454, -0.024185990914702415, 0.01534197572618723, 0.005108846817165613, -0.0029345001094043255, -0.004746134392917156, 0.006594425532966852, 0.005776392761617899, 0.01781150884926319, -0.019416704773902893, 0.003669572062790394, 0.01461654994636774, 0.010997140780091286, -0.003214251948520541, -0.007802181877195835, 0.010742469690740108, 0.013790800236165524, -0.018675845116376877, 0.025698579847812653, -0.016113704070448875, 0.01294961478561163, -0.02032734639942646, 0.00602720445021987, -0.0016100199427455664, 0.042722925543785095, -0.005101129878312349, -0.00906010065227747, -0.02596096880733967, 0.01859867200255394, -0.039142102003097534, 0.04222901910543442, 0.017178690060973167, -0.007458762265741825, 0.0009974599815905094, 0.04513072222471237, 0.017626293003559113, 0.003368597710505128, 0.03543780371546745, -0.022688837721943855, 0.0035904699470847845, -0.00696485536172986, -0.016700219362974167, 0.00022464552603196353, -0.01419981662184, 0.0002311569987796247, 0.014701439999043941, 0.031023511663079262, 0.020913859829306602, 0.054329730570316315, 0.02492685243487358, 0.016237180680036545, 0.03701213002204895, -0.004348693881183863, -0.05040934681892395, 0.006810509599745274, -0.008597062900662422, -0.02350687049329281, -0.03695039078593254, -0.00354995415546, -0.011259527876973152, 0.02146950550377369, -0.007038170006126165, 0.012602336704730988, -0.03559214994311333, 0.019648224115371704, -0.006868389435112476, -0.006617577280849218, 0.03278305381536484, 0.018861060962080956, -0.005035532638430595, -0.011475612409412861, -0.0004654491494875401, 0.025914665311574936, -0.016453266143798828, 0.02577575296163559, 0.005818837787955999, -0.020898425951600075, 0.013173416256904602, 0.004850317724049091, -0.012579184956848621, 0.04136468097567558, 0.022997528314590454, 0.009731504134833813, -0.015650667250156403, -0.027643337845802307, -0.028970712795853615, -0.015820447355508804, 0.010750186629593372, 0.021129943430423737, -0.00692241033539176, -0.017070649191737175, 0.017255863174796104, -0.003922313451766968, 0.005706937052309513, 0.0049390667118132114, 0.024849679321050644, 0.01608283631503582, -0.01859867200255394, -0.018922798335552216, -0.008388696238398552, 0.021392332389950752, 0.0042638033628463745, 0.016530439257621765, 0.008928906172513962, 0.018259111791849136, 0.013165699318051338, -7.415834988933057e-05, -0.00866651814430952, -0.021191682666540146, -0.016900869086384773, -0.026995085179805756, 0.02367665059864521, -0.0009193223668262362, 0.05380495637655258, -0.005845848470926285, 0.010441495105624199, -0.016530439257621765, 0.014562529511749744, -0.03713560849428177, -0.0539284311234951, -0.016221746802330017, -0.009577158838510513, 0.0115682203322649, 0.0003316023794468492, 0.01997235044836998, -0.0035731059033423662, 0.04293901100754738, 0.07217211276292801, 0.018999971449375153, -0.012401686981320381, -0.012262776494026184, 0.020126696676015854, -0.012787551619112492, 0.020728645846247673, -0.019092578440904617, 0.017471948638558388, -0.012347666546702385, 0.015766426920890808, 0.017116952687501907, 0.003503650426864624, -0.0328756608068943, 0.02188623882830143, -0.017734335735440254, 0.011761152185499668, 0.003102351212874055, 0.008797712624073029, -0.003158301580697298, -0.0032200398854911327, 0.0022958943154662848, -0.008543041534721851, 0.006251005921512842, 0.023121004924178123, -0.00986269861459732, 0.0016563236713409424, -0.008064569905400276, 0.008326957933604717, -0.0272729080170393, -0.0017122740391641855, -0.010140521451830864, 0.0018733724718913436, -0.009307053871452808, 0.0016987688140943646, -0.0191388837993145, -0.006671598646789789, 0.0013350914232432842, 0.011792021803557873, -0.00801826547831297, 0.016576742753386497, 0.007971961982548237, 0.004919773433357477, -0.0016804402694106102, -0.03377086669206619, -0.010541819967329502, 0.0025505649391561747, -0.013860255479812622, -0.018614107742905617, -0.006551980506628752, -0.0102871498093009, 0.011521915905177593, -0.024371206760406494, -0.03867906332015991, 0.008820864371955395, 0.047198954969644547, -0.05155150592327118, 0.0010582335526123643, -0.0056413402780890465, 0.002685617422685027, 0.01105887908488512, 0.00855075940489769, 0.0031563721131533384, -0.0075012072920799255, 0.014469921588897705, 0.05053282529115677, -0.004919773433357477, 0.023645780980587006, -0.005811120383441448, -0.013651888817548752, -0.02625422552227974, -0.00599247682839632, 0.023398827761411667, 0.04062382131814957, 0.008689669892191887, -0.001649571000598371, -0.006077366881072521, -0.015720123425126076, 0.00020282006880734116, -0.010426061227917671, 0.026995085179805756, -0.01392971072345972, 0.014462204650044441, -0.0039821225218474865, -0.011907780542969704, 0.03265957906842232, -0.004541626200079918, -0.029804179444909096, 0.01054953783750534, -0.04213641211390495, -0.010973988100886345, -0.026624655351042747, 0.00014385514077730477, 0.03837037459015846, -0.019046274945139885, -0.017564555630087852, -0.01231679692864418, 0.010055630467832088, 0.01776520535349846, 0.015712404623627663, -0.01195408497005701, 0.01830541528761387, 0.03485128656029701, 0.01133670099079609, 0.009260749444365501, 0.00845815148204565, 0.013597867451608181, -0.004271520767360926, -0.020728645846247673, -0.0274426881223917, 0.0002134313399437815, 0.005193737335503101, -0.016175443306565285, 0.004394997376948595, 0.012031257152557373, 0.018336284905672073, 0.025837492197752, -0.029881352558732033, -0.0006390882190316916, -0.021731892600655556, -0.019802570343017578, -0.012679509818553925, -0.013867972418665886, 0.015480887144804, 0.01049551647156477, -0.00403614342212677, -0.007670987863093615, -0.0274426881223917, 0.0003617480397224426, -0.0401916541159153, -0.005822696257382631, 0.025868361815810204, -0.03747516870498657, -0.02288948744535446, -0.007925658486783504, 0.024911416694521904, -0.015419148840010166, -0.026995085179805756, 0.030884601175785065, -0.033986952155828476, 0.015990227460861206, 0.024139687418937683, -0.004580212291330099, 0.0220097154378891, -0.000876394915394485, -0.01920062117278576, -0.029094189405441284, -0.005228464957326651, -0.01972539722919464, -0.009816395118832588, -0.04824850708246231, -0.012517446652054787, 0.0001948616118170321, -0.04417377710342407, 0.050378479063510895, 0.02559053897857666, 0.03630213811993599, 0.014446769841015339, -0.01907714456319809, -0.015280237421393394, 0.043803345412015915, -0.022395579144358635, -0.05676839500665665, 0.011961801908910275, 0.006822085473686457, -0.0035808233078569174, 0.014902089722454548, 0.016314353793859482, -0.03156372159719467, 0.02446381375193596, 0.020404519513249397, -0.0070574632845819, -0.03043699823319912, -0.006305027287453413, -0.004371845629066229, -0.006366765592247248, 0.003725522430613637, 0.015025566332042217, 0.01129811443388462, 0.01918518729507923, -0.014539376832544804, -0.007038170006126165, -0.0191388837993145, 0.019756266847252846, -0.025220109149813652, 0.019586486741900444, 0.0010640216059982777, -0.011653110384941101, -0.08198850601911545, -0.028060071170330048, -0.01267179287970066, -0.00040998111944645643, 0.005896010901778936, -0.03769125044345856, 0.03355478495359421, 0.017718901857733727, -0.01070388313382864, 0.008620214648544788, -0.001451815478503704, -0.024000776931643486, 0.022935790941119194, -0.002041223691776395, -0.0060001942329108715, 0.01019454188644886, -0.0010900674387812614, -0.008288371376693249, 0.0004533908795565367, 0.001071738894097507, 0.008627931587398052, 0.017147822305560112, 0.01764172874391079, -0.015380562283098698, -0.020728645846247673, 0.046365488320589066, -0.013590150512754917, 0.0005271874833852053, -0.006351330783218145, -0.025806622579693794, 0.0030078142881393433, 0.015681536868214607, -0.005919162649661303, 0.007288981694728136, -0.0027994473930448294, 0.014956111088395119, -0.012941897846758366, -0.00837326142936945, 0.015511755831539631, 0.023213611915707588, 0.007343003060668707, 0.026439441367983818, -0.011506482027471066, -0.004912056028842926, -0.010858229361474514, -0.015118174254894257, -0.004553202074021101, -0.029433749616146088, -0.0033512338995933533, -0.004163478966802359, 0.004892762750387192, 0.009770090691745281, -0.006065791007131338, -0.021006466820836067, -0.003559600794687867, 0.0004509792197495699, 0.011483329348266125, -0.0058304136618971825, 0.003457346698269248, 0.005869000218808651, 0.036394745111465454, 0.008558476343750954, 0.010364322923123837, 0.00965433195233345, -0.021731892600655556, 0.02517380565404892, 0.029387446120381355, 0.02020386978983879, 0.02219492942094803, -0.00048281304771080613, 0.021793631836771965, -0.013150264509022236, -0.013582432642579079, 0.016360657289624214, 0.015712404623627663, -0.0007249430636875331, 0.02714943140745163, 0.002666324144229293, 0.02398534119129181, -0.0006381235434673727, -0.020064957439899445, 0.001948616118170321, 0.02481880970299244, -0.006594425532966852, -0.01795041933655739, 0.0011932861525565386, -0.008898037485778332, -0.009036947973072529, 0.0016167726134881377, -0.0004027461400255561, 0.021083639934659004, -0.0019659800454974174, 0.03020547889173031, 0.005984759423881769, -0.011969518847763538, 0.04315509274601936, -0.014724591746926308, -0.0035788938403129578, -0.0006723690312355757, -0.016298919916152954, 0.01703977957367897, -0.019540181383490562, 0.010773339308798313, -0.013752213679254055, -0.008203481324017048, -0.014068622142076492, -0.002949934685602784, 0.017904115840792656, -0.01741020940244198, -0.009669765830039978, 0.001926428871229291, -0.01632978953421116, -0.0282298531383276, 0.012633206322789192, -0.013752213679254055, -0.00709990831092, -0.0025544234085828066, -0.011251810938119888, -0.0069571384228765965, 0.009831828996539116, 0.004834882915019989, 0.021083639934659004, 0.0035480246879160404, -0.035252586007118225, 0.014701439999043941, -0.0021608415991067886, -0.004159620031714439, -0.008234350010752678, -0.004163478966802359, 0.03103894554078579, 0.00603878078982234, 0.0008899001986719668, -0.017734335735440254, 0.004649668000638485, -0.007508924696594477, 0.011606805957853794, 0.025729449465870857, -0.033215221017599106, 0.025698579847812653, -0.02415512315928936, -0.0004869128460995853, 0.01345895603299141, -0.013536129146814346, 0.014361879788339138, -0.006856813561171293, -0.0055603086948394775, -0.024077950045466423, -0.02810637652873993, 0.012787551619112492, 0.00027131102979183197, -0.018583238124847412, 0.0026586069725453854, 0.02971157245337963, 0.0020489408634603024, -0.010935402475297451, -0.03725908324122429, -0.019756266847252846, 0.011977236717939377, -0.0013649959582835436, 0.015635233372449875, -0.006567414849996567, 0.005899869371205568, 0.01279526948928833, -0.003843211103230715, -0.0017605071188881993, 0.004306248854845762, -0.017919551581144333, -0.018320849165320396, -0.003762179519981146, 0.0030020263511687517, 0.013057657517492771, -0.014786330051720142, -0.025328150019049644, -0.015450017526745796, 0.022796878591179848, -0.021207116544246674, 0.003104280447587371, 0.009229880757629871, 0.027180301025509834, -0.01686999946832657, 0.003090775338932872, 0.001419016974978149, -0.00040732830530032516, 0.020898425951600075, 0.0016119492938742042, -0.011637675575911999, -0.0008894178317859769, 0.002585292560979724, 0.008134025149047375, 0.02009582705795765, 0.017780639231204987, 0.024895982816815376, 0.007925658486783504, 0.007207950111478567, 8.018748485483229e-05, 0.004198206588625908, 0.024494683369994164, 0.032505232840776443, -0.010117368772625923, -0.005969325080513954, -0.00565291615203023, -0.028507674112915993, 0.003621339099481702, 0.021917108446359634, -0.004599505569785833, 0.006656163837760687, -0.026624655351042747, 0.028677456080913544, 0.004695971962064505, -0.01764172874391079, -0.023121004924178123, -0.00965433195233345, -0.003794978139922023, 0.0025775753892958164, 0.003196887904778123, 0.0014325222000479698, -0.009993892163038254, -0.0074857729487121105, 0.003962829243391752, -0.012718096375465393, 0.022148625925183296, 0.0015183771029114723, 0.01781150884926319, -0.018027592450380325, 0.024371206760406494, 0.0231364406645298, 0.018552368506789207, -0.09915176033973694, -0.0049545010551810265, 0.0007915046880953014, -0.0055757430382072926, 0.020898425951600075, 0.011120617389678955, -0.012748965993523598, -0.020435387268662453, 0.00845815148204565, 0.01279526948928833, 0.009716070257127285, 0.02535901963710785, -0.020126696676015854, -0.0035923991817981005, -0.02290492132306099, -0.017780639231204987, 0.006868389435112476, 0.03336956724524498, 0.02284318208694458, -0.028723759576678276, 0.0004927008412778378, 0.005074119195342064, 0.022148625925183296, 0.002729991916567087, 0.004217499867081642, -0.015187629498541355, 0.001972732599824667, -0.0067989337258040905, 0.013867972418665886, 0.008419564925134182, 0.0059075867757201195, 0.011143769137561321, -0.013088526204228401, -0.007589956279844046, -6.613959703827277e-05, 0.0077520194463431835, -0.036981262266635895, 0.043556392192840576, -0.012694944627583027, -0.0141149265691638, 5.212186442804523e-05, -0.013296892866492271, -0.015419148840010166, -0.02134602889418602, -0.01001704391092062, -0.009044665843248367, 0.009253032505512238, 0.02128428965806961, 0.0091758593916893, 0.0029345001094043255, -0.04263031855225563, 0.0012299433583393693, -0.0011527703609317541, -0.021901672706007957, 0.018135635182261467, -0.02577575296163559, -0.000169901002664119, 0.02021930366754532, -0.0024868971668183804, -0.005753241013735533, -0.02092929370701313, 0.032505232840776443, -0.011120617389678955, -0.017842378467321396, 0.009878133423626423, 0.024371206760406494, -0.011483329348266125, 0.0064400797709822655, -0.019092578440904617, 0.006976431701332331, 0.0077558779157698154, 0.014269271865487099, -0.009746938943862915, 0.013111677952110767, -0.008836299180984497, -0.02444837987422943, -0.01824367791414261, -0.021129943430423737, -0.00028963960357941687, 0.009669765830039978, 0.005436832085251808, 0.027427254244685173, 0.008465868420898914, 0.009831828996539116, 0.008326957933604717, -0.014060905203223228, -0.010487799532711506, -0.0060001942329108715, 0.014824916608631611, 0.006976431701332331, -0.0027531436644494534, -0.018876494839787483, -0.024247730150818825, 0.013644170947372913, 0.008350109681487083, 0.013759930618107319, -0.008095438592135906, -0.054206255823373795, -0.021176248788833618, -0.0017933056224137545, -0.01679282635450363, 0.01739477552473545, 0.023367958143353462, -0.026686394587159157, 0.04334031045436859, -0.008658801205456257, 2.5352508600917645e-05, -0.013435804285109043, 0.0001402376510668546, -0.0008093509241007268, 0.005066401790827513, -0.007346861530095339, 0.001521271071396768, 0.02500402368605137, 0.02960352972149849, 0.01793498545885086, -0.014469921588897705, 0.011028009466826916, -0.0220097154378891, -0.008512172847986221, 0.029912222176790237, 0.017425643280148506, -0.010611276142299175, 0.011220942251384258, 0.008573911152780056, -0.005066401790827513, -0.004406573250889778, -0.002191710751503706, 0.026871608570218086, -0.013829386793076992, 0.0018878424307331443, -0.04139555245637894, -0.03784559667110443, -0.004121033474802971, 0.011398439295589924, 0.010179107077419758, 0.01830541528761387, -0.015064152888953686, 0.004313965793699026, 0.009276184253394604, 0.0017277086153626442, 0.0143541619181633, -0.021253420040011406, -0.0018261041259393096, 0.012478860095143318, -0.02427859976887703, 0.009314770810306072, -0.011683979071676731, -0.003808483248576522, -0.0017489311285316944, 0.0207440797239542, 0.0024984730407595634, -0.028198983520269394, 0.001983343856409192, 0.0029808038379997015, -0.01019454188644886, -0.0031428670044988394, -0.016545873135328293, 0.00798739679157734, -0.0027955889236181974, 0.004140326753258705, -0.000187264900887385, -0.004410432185977697, -0.009445964358747005, -0.012031257152557373, -0.008180328644812107, 0.01757998950779438, 0.019540181383490562, -0.017610859125852585, -0.005888293497264385, -0.0020103545393794775, -0.018969101831316948, -0.013883407227694988, -0.01872214861214161, -0.007748160511255264, -0.015805013477802277, 0.021839935332536697, -0.00824978481978178, 0.03485128656029701, 0.001591691398061812, 0.017657162621617317, -0.012324514798820019, -0.03454259783029556, -0.004121033474802971, -0.00837326142936945, -0.009206729009747505, -0.01392971072345972, -0.03654909133911133, 0.003422618843615055, -0.002872761804610491, 0.038895148783922195, -0.019046274945139885, -0.0040747299790382385, -0.012556033208966255, -0.0006960032042115927, -0.016005663201212883, -0.0033493044320493937, -0.007285123225301504, 0.029263969510793686, -0.02349143475294113, 0.02261166460812092, 0.016761956736445427, -0.01465513650327921, -0.01004019659012556, -0.02265796810388565, -0.007898648269474506, 0.026501178741455078, 0.03738256171345711, -0.011815173551440239, -0.001879160525277257, -0.006467090453952551, -0.004371845629066229, -0.041951198130846024, -0.03796907514333725, 0.004163478966802359, 0.0007529182475991547, -0.010811924934387207, -0.0006014663958922029, -0.012849289923906326, 0.021870804950594902, -0.011467895470559597, 0.01859867200255394, 0.017549121752381325, -0.004715265240520239, -0.02026560716331005, 0.004657385405153036, 0.0012829997576773167, -0.0008363614906556904, -0.004105599131435156, -0.008033700287342072, 0.008442716673016548, -0.018567804247140884, 0.017688032239675522, 0.005475418176501989, -0.0004519438953138888, -0.003735169069841504, 0.008504454977810383, -0.001834786031395197, 0.018027592450380325, 0.02427859976887703, -0.013698192313313484, -0.030174609273672104, -0.012062126770615578, -0.01121322438120842, -0.0038933735340833664, -0.015017849393188953, 0.005282485857605934, 0.022766010835766792, -0.021870804950594902, -0.015087304636836052, 0.00692241033539176, 0.0004391621332615614, 0.007871637120842934, 0.011367570608854294, -0.009692918509244919, -0.010966271162033081, 0.021083639934659004, 0.03855558857321739, -0.01757998950779438, 0.01693173684179783, 0.011383005417883396, -0.013651888817548752, 0.009445964358747005, -0.003088845871388912, 0.019401270896196365, -0.013443522155284882, 0.016731087118387222, 0.019046274945139885, -0.00325090903788805, -0.005159009248018265, -0.0015743274707347155, 0.016607610508799553, -0.002639313694089651, 0.012594619765877724, -0.014747744426131248, -0.037876468151807785, 0.0002192193060182035, 0.00382584729231894, 0.002463745418936014, 0.004012991674244404, 0.023769257590174675, 0.002513907616958022, 0.014639701694250107, -0.00433325907215476, -0.0044335839338600636, 0.0015531049575656652, -0.003424548078328371, 0.014192098751664162, -0.011012574657797813, 0.009330205619335175, 0.002652819035574794, -0.01932409778237343, 0.0036251975689083338, -0.023167308419942856, -0.01270266156643629, -0.0004519438953138888, -0.003841281868517399, -0.0017238500295206904, 0.0002792694722302258, -0.003746744943782687, 0.002919065533205867, -0.01662304624915123, 0.0019380048615857959, 0.0015482816379517317, -0.009623462334275246, 0.010742469690740108, 0.010534103028476238, 0.02779768407344818, 0.011622240766882896, 0.005151291843503714, 0.008149459958076477, -0.008010548539459705, -0.017116952687501907, -0.00747419660910964, 0.007840768434107304, -0.018583238124847412, -0.00035113675403408706, 0.004854176193475723, 0.051026731729507446, 0.006478666327893734, 0.0001029173145070672, -0.001141194486990571, 0.004383421503007412, -0.01614457368850708, -0.0018743372056633234, -0.00016423361375927925, 0.006899258587509394, -0.011738000437617302, 0.004352552350610495, -0.0210527703166008, 0.004973794333636761, 0.0037506036460399628, -0.026686394587159157, 0.014346444979310036, 0.008095438592135906, 0.017132386565208435, -0.01231679692864418, 0.012725813314318657, 0.002940288046374917, -0.01007106527686119, -0.011352135799825191, 0.0007186727598309517, -7.02997058397159e-05, 0.003341587260365486, 0.0014450628077611327, 0.017441079020500183, 0.006818227004259825, 0.008272936567664146, 0.0009424742311239243, -0.015558059327304363, -0.023352524265646935, -0.0005513040232472122, -0.010981705971062183, 0.011220942251384258, -0.01558121107518673, 0.0048580351285636425, -0.010186824947595596, 0.017502816393971443, 0.005587318912148476, -0.013404935598373413, 0.022318407893180847, 0.026099879294633865, -0.0024772505275905132, 0.006864530965685844, -0.013273741118609905, -0.005637481343001127, -0.0008170682121999562, -0.01830541528761387, -0.019648224115371704, -0.0018270687432959676, 0.012810704298317432, 0.008959775790572166, 0.0210527703166008, -0.002708769403398037, 0.005104988347738981, 0.0007765524787828326, -0.024355772882699966, -0.013883407227694988, 0.0075050657615065575, 5.399089423008263e-05, -0.014624267816543579, -0.02989678643643856, 0.0022515198215842247, -0.024124253541231155, -0.011328984051942825, -0.023707520216703415, 0.008566193282604218, 0.007458762265741825, 0.006150681525468826, 0.00863564945757389, 0.008396413177251816, -0.014222968369722366, 0.013837103731930256, 0.009700635448098183, 0.005159009248018265, 0.01751825213432312, 0.013528412207961082, 0.0010698095429688692, -0.00730827497318387, -0.009160424582660198, 0.0005498570390045643, -0.012401686981320381, -0.004638092126697302, 0.008465868420898914, 0.01662304624915123, -0.0056413402780890465, 0.001601338037289679, -0.03466607257723808, 0.003229686524719, 7.050318345136475e-06, -0.011128334328532219, 0.010919967666268349, 0.009793243370950222, 0.004746134392917156, -0.010418343357741833, 0.0056413402780890465, 0.022086888551712036, -0.010927684605121613, -0.01190006360411644, 0.01883019134402275, -0.011066596023738384, 0.010727034881711006, 0.001763401087373495, -0.025513365864753723, -0.004549343138933182, 0.009368792176246643, -0.01757998950779438, 0.016885433346033096, 0.0018010229105129838, -0.018814757466316223, -0.023630347102880478, 0.010557254776358604, -0.012764399871230125, 0.003480498446151614, 0.014307858422398567, 0.007389306556433439, 0.005290203262120485, 0.0024270880967378616, -0.014377313666045666, -0.007161646615713835, 0.006671598646789789, 0.004364128224551678, 0.01070388313382864, -0.006899258587509394, -0.007848485372960567, -0.01049551647156477, -0.016345223411917686, -0.01614457368850708, 0.005961607675999403, 0.013173416256904602, 0.009121838957071304, -0.00502009829506278, 0.023954473435878754, -0.003681147936731577, -0.011082030832767487, -0.01870671473443508, 0.0029537933878600597, -0.016283484175801277, 0.005571884568780661, 0.02523554302752018, 0.014253837056457996, -0.0013273741351440549, -0.00804141815751791, 0.017549121752381325, -0.011529633775353432, -0.035190850496292114, 0.001580115407705307, 0.005375093314796686, 0.014593398198485374, -0.03358565270900726, -0.008928906172513962, -0.0049660769291222095, 0.002839963184669614, -0.004614940378814936, -0.0244020763784647, 0.011884628795087337, -0.01190006360411644, -0.012386253103613853, -0.0003665713593363762, -0.004329400602728128, -0.012401686981320381, 0.007860061712563038, 0.0002893984201364219, 0.014099491760134697, -0.01824367791414261, 0.03556127846240997, 0.01770346611738205, -0.02182449959218502, -0.005035532638430595, -0.004935207776725292, -0.001961156725883484, -0.02140776626765728, 0.008874884806573391, -0.01679282635450363, -0.00242130015976727, -0.01129811443388462, -0.030359825119376183, 0.017857812345027924, 0.0004835365398321301, -0.0008411847520619631, 0.008033700287342072, 0.003389820223674178, 0.014415900222957134, -0.02199428156018257, 0.0018357507651671767, -0.01389884203672409, -0.005166726652532816, 0.003148654941469431, -0.011591372080147266, 0.011143769137561321, 0.0009444035240449011, -0.009708352386951447, -0.015280237421393394, 0.012123865075409412, 0.0052053132094442844, 0.010302583687007427, 0.006085084285587072, -0.008010548539459705, 0.024185990914702415, -0.011483329348266125, 0.011166920885443687, 0.009646614082157612, -0.009237597696483135, -0.013628737069666386, -0.01991061121225357, -0.013968297280371189, -0.02654748223721981, -0.0007114378386177123, -0.051520638167858124, -0.02296665869653225, 0.011282680556178093, 0.0006178656476549804, -0.012934180907905102, -0.008658801205456257, 0.032381754368543625, 0.0023055407218635082, 0.014454486779868603, 0.0006048427312634885, 0.014493073336780071, 0.008489021100103855, 0.01733303628861904, -0.012772117741405964, -0.015928490087389946, -0.013790800236165524, 0.005541015416383743, 0.03269044682383537, 0.0141149265691638, -0.004148044157773256, 0.0019293228397145867, -0.015658384189009666, 0.0018125987844541669, 0.009075534529983997, 0.0028168114367872477, 0.029325706884264946, 0.022256668657064438, -0.0050432500429451466, 0.017132386565208435, -0.00801826547831297, -0.018567804247140884, 0.008651083335280418, -0.011591372080147266, -0.016545873135328293, 0.005791827104985714, 0.0015183771029114723, 0.011761152185499668, -0.008928906172513962, 0.002201357390731573, -2.8547949113999493e-05, 0.007790605537593365, -0.006633012089878321, -0.0017913762712851167, 0.013621019199490547, 0.014385031536221504, 0.007281264755874872, -0.00010677596583263949, 0.005706937052309513, -0.002892055083066225, -0.013682757504284382, 0.031486548483371735, 0.016422396525740623, -0.012486577965319157, 0.001188462832942605, -0.0043564108200371265, -0.0004012991557829082, -0.020049523562192917, 0.004329400602728128, -0.00539824552834034, 0.015048718079924583, 0.0005595036200247705, -0.008921189233660698, 0.0032914248295128345, 0.028893539682030678, -0.006513393949717283, 0.006208560895174742, -0.0032682728487998247, -0.026331398636102676, 0.009330205619335175, 0.029155926778912544, -0.016067400574684143, 0.014678288251161575, 0.01207756157964468, -0.03843211010098457, -0.004568636417388916, -0.014886654913425446, -0.00611595343798399, 0.012517446652054787, 0.004981511738151312, -0.002043152926489711, 0.006721761077642441, -0.01668478362262249, 0.013011353090405464, 0.0028689031023532152, 0.0020392942242324352, -0.010356605052947998, -0.016638480126857758, 0.009816395118832588, 0.013852538540959358, 0.018274545669555664, -0.02589922957122326, 0.01799672469496727, -0.003843211103230715, -0.01830541528761387, 0.016113704070448875, 0.022874051705002785, -0.0035460954532027245, -0.011359852738678455, 0.011552785523235798, 0.0031563721131533384, 0.01728673279285431, 0.011668545193970203, -0.00031496197334490716, -0.0034862863831222057, -0.0070651802234351635, -0.00801826547831297, -0.005521722137928009, 0.0007336250273510814, -0.031008077785372734, 0.016823695972561836, 0.0014363809023052454, -0.0024868971668183804, 0.0005691502592526376, 0.020898425951600075, -0.013821668922901154, 0.02451011724770069, 0.0016920161433517933, -0.0030174609273672104, 0.023661214858293533, -0.016777392476797104, -0.003771826159209013, -0.007628542836755514, -0.0001965497649507597, -0.011190072633326054, 0.00875912606716156, 0.007941093295812607, -0.00463423365727067, -0.01693173684179783, -0.017240429297089577, -0.009963023476302624, -0.026686394587159157, 0.005270909983664751, -0.001601338037289679, -0.0027531436644494534, 0.0056567746214568615, 0.015496321022510529, -0.005081836599856615, -0.0010688449256122112, 0.020543430000543594, 0.014855786226689816, 0.009114121086895466, 0.003897232236340642, 0.00378147279843688, 0.0067989337258040905, 0.014184381812810898, 0.0011469824239611626, 0.017533686012029648, 0.010626710020005703, -0.0325361005961895, -0.012509729713201523, -0.031239595264196396, 0.007281264755874872, -0.018861060962080956, -0.0169163029640913, 0.0014325222000479698, 0.008056852035224438, -0.006212419830262661, 0.004468311555683613, -0.019709963351488113, -0.014670571312308311, -0.01010965183377266, -0.02708769403398037, -0.004032284952700138, 0.003457346698269248, -0.026408571749925613, -0.00038224708987399936, -0.0015627514803782105, 0.009183577261865139, -0.009939871728420258, 0.009700635448098183, 0.04658157005906105, 0.01360558532178402, -0.012656358070671558, 0.005301779136061668, 0.014593398198485374, 0.005722371861338615, 0.013790800236165524, 0.02349143475294113, 0.010063348338007927, -0.004468311555683613, -0.005066401790827513, 0.0023113288916647434, -0.015619797632098198, -0.018753018230199814, -0.0017614717362448573, 0.0007529182475991547, -0.03401781991124153, 0.02386186458170414, -0.008651083335280418, -0.017178690060973167, 0.011051161214709282, 0.0025061904452741146, -0.006212419830262661, 0.012447991408407688, 0.01453165989369154, -0.02194797620177269, 0.01524936780333519, 0.00412489240989089, 0.01703977957367897, 0.005081836599856615, 0.017857812345027924, 0.004977652803063393, -0.0071423533372581005, -0.026269659399986267, 0.014732309617102146, 0.0037853315006941557, 0.01679282635450363, -0.004487604834139347, 0.004788579419255257, -0.012332231737673283, 0.015010131523013115, 0.006621436215937138, 0.011892345733940601, -0.015434582717716694, 0.026809871196746826, 0.00535194156691432, 0.02151580899953842, -0.0070574632845819, -0.009901285171508789, 0.01770346611738205, -0.010634427890181541, -0.004969935864210129, -0.005193737335503101, 0.036857783794403076, -0.029248535633087158, -0.007979679852724075, 0.031193291768431664, -0.029526356607675552, -0.004186630714684725, 0.014925241470336914, -0.01955561712384224, -0.014500790275633335, 0.024540986865758896, -0.015720123425126076, 0.0157046876847744, 0.009152707643806934, 0.008296088315546513, 0.020882990211248398, -0.008087721653282642, -0.010943119414150715, -0.008411847986280918, 0.0319187194108963, 0.011012574657797813, -0.004584071226418018, -0.011560502462089062, 0.004186630714684725, 0.010310301557183266, 0.028785496950149536, 0.03364739194512367, -0.03457346558570862, -0.009006079286336899, -0.0029345001094043255, 0.007709574420005083, 0.018320849165320396, -0.006146822590380907, -0.02917136251926422, 0.002811023499816656, 0.004823307041078806, -0.004402714781463146, -0.0025640700478106737, -0.008874884806573391, -0.006320461630821228, 0.006868389435112476, -0.0009482621680945158, -0.002606515306979418, -0.0117225656285882, -0.007632401306182146, 0.017240429297089577, 0.012170168571174145, 0.00042951549403369427, -0.007794464472681284, 0.01955561712384224, 0.00730827497318387, 0.007138494402170181, 0.027519861236214638, 0.00035210142959840596, -0.00045941999997012317, 0.010989422909915447, 0.017965855076909065, -0.006594425532966852, 0.0018154928693547845, 0.020234737545251846, 0.006571273785084486, -0.013088526204228401, 0.0007833050913177431, 0.0016235251678153872, -0.004244510550051928, 0.007524359039962292, -0.0016727229813113809, -0.000110936067358125, 0.0016225605504587293, -0.004032284952700138, 0.008828581310808659, 0.01679282635450363, 0.005151291843503714, -0.0007673881482332945, -0.012486577965319157, -0.0033184352796524763, 0.004406573250889778, 0.0032702023163437843, 0.007902506738901138, -0.0026238791178911924, -0.0019408988300710917, 0.02858484722673893, -0.014284706674516201, 0.026300529018044472, 0.016113704070448875, 0.007466479670256376, 0.02338339388370514, 0.00747419660910964, 0.006818227004259825, -0.019154317677021027, 0.004414290655404329, 0.006401493214070797, 0.014192098751664162, 0.0024888264015316963, 0.02140776626765728, 0.013736778870224953, 0.015241650864481926, -0.004993087612092495, -0.024556420743465424, 0.005880576092749834, 0.007663270458579063, -0.010811924934387207, 0.015527190640568733, -0.004217499867081642, -0.004576353821903467, 0.017718901857733727, 0.03744429722428322, 0.0013881478225812316, -0.003009743755683303, -0.003827776527032256, 0.003951253369450569, 0.020466256886720657, -0.012664075009524822, -0.024772506207227707, -0.0015135537832975388, -0.007628542836755514, -0.009955305606126785, -0.006077366881072521, -0.01745651289820671, -0.006729478016495705, 0.02768964134156704, 0.020466256886720657, -0.005189878400415182, -0.015781860798597336, -0.017564555630087852, 0.015612080693244934, 0.012339948676526546, 0.012092995457351208, 0.005336507223546505, -0.013659605756402016, -0.0030618354212492704, -0.00509727094322443, -0.007030452601611614, 0.010101934894919395, 0.02267340198159218, 0.028307024389505386, -0.01195408497005701, 0.022349275648593903, -0.0007953633321449161, 1.3490187484421767e-05, 0.011653110384941101, 0.004121033474802971, 0.00705360434949398, -0.011082030832767487, -0.010981705971062183, 0.006729478016495705, 0.01504100114107132, 0.006200843490660191, 0.012548316270112991, -0.02906331978738308, -0.020111260935664177, -0.0063629066571593285, -0.005930738523602486, 0.025991838425397873, -0.0038200593553483486, 0.003260555677115917, -0.0035094383638352156, -0.006424644961953163, 0.011190072633326054, -0.0169163029640913, -0.006729478016495705, -0.022148625925183296, -0.0021782054100185633, -0.01483263447880745, -0.00034800160210579634, 0.022441884502768517, -0.011151486076414585, -0.027288341894745827, -0.003169877454638481, 0.010148238390684128, -0.0015087304636836052, -0.01151419896632433, -0.007285123225301504, 0.004040001891553402, 0.0018830191111192107, -0.01474002655595541, -0.01207756157964468, 0.001418052357621491, -0.011730283498764038, 0.005595036316663027, 0.040747299790382385, 0.010009326972067356, -0.00730827497318387, -0.015172194689512253, 0.024556420743465424, -0.010927684605121613, 0.006301168352365494, -0.0029595813248306513, -0.020558863878250122, -0.0015907266642898321, -0.001280105672776699, 0.010819642804563046, -0.006355189718306065, -0.007385448087006807, -0.0023904310073703527, 0.011815173551440239, 0.01703977957367897, -0.018274545669555664, -0.0076594119891524315, 0.0078523438423872, 0.00551786320284009, -0.013559280894696712, 0.00615839846432209, -0.006806651130318642, -0.019385837018489838, 0.010132803581655025, 0.010989422909915447, -0.015480887144804, 0.004746134392917156, -0.000703238183632493, 0.008434999734163284, -0.0027743661776185036, -0.0006853919476270676, -0.004121033474802971, -0.00819576345384121, 0.0003043506876565516, -0.012069843709468842, 0.022858617827296257, -0.0006935915444046259, -0.015542625449597836, -0.010117368772625923, 0.036209531128406525, -0.012378535233438015, -0.01984887383878231, 0.011097464710474014, -0.025744885206222534, 0.0010206118458881974, 0.011112899519503117, -0.011969518847763538, -0.023584043607115746, -0.00551786320284009, -0.00013276153185870498, 0.01751825213432312, -0.008573911152780056, 0.010510951280593872, 0.007732726167887449, 0.0037563915830105543, -0.022796878591179848, -0.02069777622818947, 0.016406962648034096, -0.015542625449597836, 0.022272102534770966, -0.00015760156384203583, -0.008874884806573391, 0.0009072640677914023, 0.002008425071835518, -0.009067817591130733, -0.029017016291618347, -0.006216278299689293, 0.021608415991067886, 0.01585131697356701, -0.014755461364984512, -1.370874360873131e-05, 0.008851733058691025, -0.006443938240408897, -0.0005990547360852361, -0.003640632377937436, 0.0010524456156417727, -0.03179524093866348, -0.014840351417660713, -0.002803306095302105, -0.024772506207227707, 0.005988618358969688, 0.004973794333636761, -0.030807428061962128, -0.005633622873574495, -0.03565388545393944, 0.007072897627949715, -0.014331010170280933, -0.015226216055452824, 0.0011055020149797201, 0.007462620735168457, -0.0015502108726650476, 0.006061932537704706, 0.017255863174796104, 0.012015823274850845, -0.025189239531755447, 0.011907780542969704, 0.005880576092749834, 0.02063603699207306, 0.010364322923123837, -0.0025216250214725733, -0.01876845210790634, -0.018567804247140884, 0.027905726805329323, -0.02051256038248539, -0.011892345733940601, 0.0012482719030231237, 0.02804463729262352, 0.006524969823658466, -0.005934596993029118, 0.006054215133190155, -8.404612890444696e-05, -0.011498764157295227, 0.004001415800303221, 0.009152707643806934, -0.011799738742411137, -0.008712821640074253, 0.01205440890043974, -0.0016399244777858257, -0.005926880054175854, 0.006582849659025669, -4.778088623424992e-05, -0.010132803581655025, -0.0014344515511766076, -0.018027592450380325, 0.005568025633692741, 0.0015588928945362568, -0.012556033208966255, -0.020898425951600075, -0.0050432500429451466, 0.008257501758635044, 0.009322487749159336, -0.018861060962080956, 0.007925658486783504, 0.014678288251161575, -0.01470915786921978, -0.0002802341477945447, -0.005429114680737257, 0.008427281863987446, 0.010997140780091286, 0.0013563139364123344, -0.01419981662184, 0.011020292527973652, 0.014608833007514477, -0.008049135096371174, 0.013867972418665886, 0.0004324094916228205, 0.04077816754579544, 0.014246120117604733, -0.02517380565404892, 0.010850511491298676, 0.002351844683289528, 0.02492685243487358, -0.0029537933878600597, 0.0007234960794448853, 0.00047196060768328607, 0.008874884806573391, 0.025281846523284912, -0.02756616473197937, 0.005506287328898907, -0.018984537571668625, -0.018799321725964546, -0.03179524093866348, -0.016221746802330017, 0.008867167867720127, 0.008712821640074253, 0.016839129850268364, 0.005718512926250696, 0.0024174414575099945, -0.01637609302997589, -0.0072349607944488525, -0.024386640638113022, 0.004097881726920605, 0.015033284202218056, 0.014130360446870327, 0.022318407893180847, 0.0090909693390131, -0.0013669253094121814, 0.0041557615622878075, -0.0196173544973135, -0.011352135799825191, 0.02941831573843956, 0.0033454459626227617, 0.007836909964680672, 0.006278016604483128, -0.016113704070448875, -0.008782277815043926, 0.008326957933604717, 0.0011817102786153555, 0.01524936780333519, -0.006227854173630476, -0.009006079286336899, 0.022735141217708588, -0.0010177177609875798, 0.013026787899434566, 0.0047654276713728905, 0.009029231034219265, 0.01967909373342991, -0.0027820835821330547, -0.023043831810355186, -0.0038297059945762157, 0.004132609814405441, -0.006733336951583624, 0.016700219362974167, -0.0018714432371780276, 0.01274124812334776, 0.015118174254894257, -0.005583460442721844, -0.004402714781463146, 0.0005131998914293945, -0.009245315566658974, -0.03448085859417915, -0.007045886944979429, 0.021623849868774414, -0.0006747806910425425, 0.00878999475389719, -0.009947588667273521, -0.00488890428096056, -0.006428503897041082, -0.018922798335552216, 0.0130036361515522, 0.011128334328532219, -0.0037293811328709126, -0.014878937974572182, -0.005432973150163889, 0.0016823695041239262, 0.008365543559193611, -0.003598187118768692, -0.010279431939125061, 0.002432876033708453, 0.01154506765305996, 0.011830607429146767, 0.013119395822286606, -0.013119395822286606, -0.0002585292677395046, -0.03617866337299347, -0.013937428593635559, -0.01614457368850708, 0.0220097154378891, -0.013659605756402016, 0.007339144125580788, -0.021392332389950752, 0.005683785304427147, 0.002593009965494275, -0.004807872697710991, 0.025991838425397873, -0.015311106108129025, 0.0006704396801069379, 0.020497126504778862, 0.009878133423626423, 0.023460566997528076, -0.004236793145537376, -0.005637481343001127, 0.0039975568652153015, 0.008651083335280418, -0.0038354939315468073, -0.004892762750387192, -0.009924436919391155, -0.01091224979609251, -0.00189073639921844, 0.013019070960581303, 0.01342808734625578, 0.010263998061418533, 0.008064569905400276, 0.010279431939125061, -0.012864724732935429, 0.01545773446559906, 0.004205923993140459, 0.01507186982780695, 0.02205601893365383, 0.018151069059967995, -0.020713210105895996, -0.021145379170775414, -0.011969518847763538, -0.005213030613958836, 0.006513393949717283, 0.006088943220674992, -0.024324903264641762, -0.0003873115638270974, 0.024185990914702415, -0.003561530029401183, -0.002027718350291252, -0.006254864856600761, 0.01680826023221016, -0.013266024179756641, 0.007045886944979429, -0.014577963389456272, -0.005691502708941698, 0.0033049301709979773, -0.0181819386780262, -0.008465868420898914, -0.029217666015028954, 0.0038837268948554993, -0.037876468151807785, -0.010140521451830864, -0.0035190850030630827, -0.0008715715957805514, -0.016160007566213608, -0.003436123952269554, -0.007204091642051935, -0.0010283291339874268, -0.00269912276417017, 0.01345895603299141, 0.019092578440904617, -0.008990644477307796, -0.005301779136061668, -0.013536129146814346, -0.009484550915658474, 0.018969101831316948, 0.0005170585354790092, 0.002365349791944027, -7.494213787140325e-05, -0.000980096054263413, -0.013921993784606457, 6.595872400794178e-05, -0.004086305852979422, -0.022472752258181572, 0.0005845848354510963, -0.0003559600736480206, 0.005259334109723568, 0.013775365427136421, -0.027936594560742378, -0.00960031058639288, 0.00016133963072206825, -0.01058040652424097, 0.017209559679031372, 0.015766426920890808, 0.02781311795115471, -0.0005855495110154152, -0.003897232236340642, 0.012031257152557373, -0.023167308419942856, 0.01542686577886343, -0.0004541143716778606, -0.008226633071899414, -0.013242872431874275, 0.0103720398619771, -0.005942314397543669, 0.007759736385196447, 0.01662304624915123, 0.0021029619965702295, 0.011738000437617302, 0.005224606487900019, -0.01118235569447279, -0.002687546657398343, -0.029649833217263222, 0.004259944893419743, 0.001210650079883635, -0.004622657783329487, 0.004904338624328375, -0.0047808620147407055, -0.0049660769291222095, -0.007574521470814943, 0.0064362213015556335, 0.00399369839578867, -0.025822056457400322, 0.002353773918002844, 0.0053133550100028515, -0.001349561382085085, -0.024170557036995888, 0.021237986162304878, 0.005610471125692129, 0.030529605224728584, -0.019709963351488113, -0.004726841114461422, 0.0006554874707944691, 0.019601920619606972, 0.011097464710474014, -0.004815590102225542, 0.0167465228587389, -0.006822085473686457, 0.013783082365989685, 0.0016466770321130753, -0.0052631925791502, 0.012000388465821743, 0.019061710685491562, -0.010433778166770935, -0.006648446433246136, 0.0005831378512084484, -0.003860575146973133, -0.0020103545393794775, -0.002537059597671032, -0.007551369722932577, 0.024540986865758896, 0.0022958943154662848, -0.012517446652054787, 0.011398439295589924, -0.0023499152157455683, 0.007335285656154156, 0.007508924696594477, -0.012517446652054787, -0.00603878078982234, -0.008033700287342072, 0.011429308913648129, 0.0010659508407115936, -0.03420303761959076, -0.0018926657503470778, -0.009631180204451084, -0.016190877184271812, -0.029649833217263222, 0.000956944131758064, 0.003422618843615055, 0.012841572985053062, 0.011699413880705833, 0.028955277055501938, 0.009947588667273521, 0.0191388837993145, 0.010865946300327778, 0.004996946081519127, 0.0009077464346773922, -0.004850317724049091, -0.014454486779868603, -0.0002804753021337092, 0.01603653095662594, -0.0005541979917325079, 0.004618798848241568, -0.020018653944134712, -0.005757099483162165, 0.009592593647539616, 0.02409338392317295, -0.00696485536172986, -0.01656130701303482, 0.006285734008997679, -0.02858484722673893, 0.013358631171286106, -0.004973794333636761, 0.002099103294312954, 0.008681952953338623, -0.006486383732408285, -0.014894372783601284, 0.023630347102880478, -0.004020709078758955, -0.002847680589184165, 0.017657162621617317, -0.003248979803174734, 0.019463008269667625, -0.0021376898512244225, -0.01662304624915123, -0.019416704773902893, -0.01479404792189598, -0.006490242201834917, 0.006841378752142191, 0.01533425785601139, -0.004854176193475723, 0.0007972926832735538, 0.005506287328898907, 0.02253449149429798, 0.009885850362479687, -0.007470338139683008, -0.009816395118832588, -0.018999971449375153, -0.004908197559416294, 0.015156760811805725, -0.015203064307570457, -0.01685456372797489, 0.020435387268662453, -0.000227660100790672, 0.0009400625713169575, 0.020481690764427185, 0.024386640638113022, 0.007759736385196447, -0.016761956736445427, 0.0034457705914974213, 0.0006511464598588645, 0.012347666546702385, 0.0037872607354074717, 0.00794881023466587, 0.007836909964680672, -0.01054953783750534, -0.000853725359775126, 0.0018945951014757156, 0.010750186629593372, -0.005741664674133062, 0.006933986209332943, 0.01078877318650484, -0.0010051772696897388, -0.008272936567664146, 0.01733303628861904, -0.021068206056952477, -0.008519889786839485, 0.024803373962640762, 0.007979679852724075, 0.009337922558188438, 0.01082735974341631, 0.018274545669555664, -0.006428503897041082, -0.011591372080147266, -0.005687643773853779, 0.002967298496514559, 0.00010514809400774539, -0.0008788065752014518, 0.007030452601611614, 0.015712404623627663, 0.02188623882830143, 0.009168142452836037, -0.007427893113344908, -0.0007601532270200551, 0.011483329348266125, 0.007038170006126165, 0.0071462118066847324, 0.02332165464758873, 0.00801826547831297, -0.007335285656154156, 0.00692241033539176, -0.01088138110935688, 0.027874857187271118, 0.027056824415922165, -0.007559087127447128, 0.011892345733940601, 0.006594425532966852, 0.00938422605395317, -0.004194348119199276, 0.007323709782212973, 0.018999971449375153, 0.0008860415546223521, 0.0022495905868709087, -0.0007939163479022682, 0.000426862679887563, 0.014215250499546528, -0.001082350150682032, 0.014477638527750969, 0.02648574486374855, 0.02623879164457321, 0.012579184956848621, 0.009538572281599045, 0.02092929370701313, 0.009021514095366001, 0.019709963351488113, 0.020821252837777138, 0.007887071929872036, 0.0334930457174778, 0.009700635448098183, -0.0026489603333175182, -0.004151902627199888, 0.0019910612609237432, 0.008936623111367226, -0.01270266156643629, -0.008874884806573391, 0.004746134392917156, -0.007782888598740101, 0.006382199935615063, -0.008095438592135906, 0.01001704391092062, -0.007451044861227274, 0.001255989191122353, -0.03222740814089775, 0.00926846731454134, 0.0008918294915929437, 0.0016823695041239262, 0.0077674537897109985, -0.017425643280148506, 0.0016756169497966766, 0.009939871728420258, -0.01895366795361042, 0.0009767196606844664, -0.0013447380624711514, -0.0009082287433557212, -0.006065791007131338, -0.016314353793859482, 0.006470948923379183, -0.013266024179756641, 0.0011383005185052752, 0.0046998304314911366, 0.0004693077935371548, 0.009137272834777832, 0.016453266143798828, -0.0035210142377763987, 0.010148238390684128, -0.019354967400431633, -0.0118074556812644, -0.02548249624669552, 0.013999166898429394, 0.0033531631343066692, -0.019046274945139885, -0.01244027353823185, 0.015519472770392895, 0.013852538540959358, 0.015280237421393394, 0.006278016604483128, -0.016067400574684143, 0.003885656362399459, -0.0005575743271037936, 0.017533686012029648, -0.006216278299689293, 0.0191388837993145, -0.0032238985877484083, -0.008465868420898914, 0.012509729713201523, 0.009970740415155888, 0.011452460661530495, 0.0039068786427378654, -0.027195734903216362, 0.010781056247651577, 0.0006603107322007418, -0.013520694337785244, -0.004773144610226154, 0.010310301557183266, -0.0027164865750819445, 0.004398856312036514, -0.023599477484822273, -0.0044220080599188805, -0.0007124024559743702, 0.01949387788772583, -0.011552785523235798, -0.006486383732408285, 0.03654909133911133, 0.0007620825199410319, 9.110021346714348e-05, 0.008288371376693249, -0.0034766397438943386, 0.009492268785834312, 0.00017183032468892634, -0.008296088315546513, 0.016715653240680695, -0.011653110384941101, -0.026207922026515007, 0.004009132739156485, 0.0030020263511687517, 0.01402231864631176, -0.013219720683991909, -0.01244027353823185, -0.004375704098492861, 0.00500852195546031, -0.013860255479812622, 0.02068234048783779, -0.0046728202141821384, 0.011537350714206696, -0.020666906610131264, 0.006883824244141579, -0.003887585597112775, -0.0013447380624711514, -0.025791188701987267, -0.0005165762268006802, -0.015179912559688091, -0.006918551865965128, -0.02199428156018257, -0.012748965993523598, 0.005965466145426035, -0.0022110040299594402, 0.011259527876973152, 0.006374482996761799, 0.02673269808292389, -0.007902506738901138, 0.0021704882383346558, 0.008805429562926292, 0.011969518847763538, 0.014979262836277485, -0.017857812345027924, -0.0005469630123116076, 0.008334674872457981, 0.000668510387185961, 0.011537350714206696, -0.007941093295812607, 0.009067817591130733, -0.0016003733035176992, -0.0005103059229440987, -0.003966687712818384, -0.041827719658613205, 0.005679926369339228, -0.01884562522172928, -0.015473169274628162, 0.013729061931371689, -0.019231490790843964, 0.010997140780091286, 0.020173000171780586, 0.005081836599856615, 0.00845815148204565, 0.0014826846309006214, -0.009399660862982273, 0.0041673374362289906, -0.02338339388370514, -0.020543430000543594, -0.000611595343798399, 0.05161324515938759, 0.015450017526745796, 0.005996335297822952, -0.016839129850268364, 0.0021955694537609816, -0.01920062117278576, -0.008342391811311245, 0.002122255275025964, 0.0040631541050970554, 0.02498858980834484, 0.012455708347260952, -0.0245718564838171, 0.022380145266652107, 0.01392971072345972, -0.007589956279844046, 0.015696970745921135, -0.00735457893460989, -0.006860672030597925, -0.011236376129090786, 0.028800932690501213, -0.0011508411262184381, 0.00863564945757389, -0.00816489476710558, -0.031239595264196396, 0.00855075940489769, 0.009677483700215816, 0.02821441739797592, 0.001405511749908328, 0.014608833007514477, 0.004877328407019377, 0.023306220769882202, 0.0014624267350882292, -0.037938203662633896, 0.0025987979024648666, 0.015388279221951962, 0.017780639231204987, -0.004151902627199888, 0.01805846206843853, 0.001926428871229291, -0.0018425033194944263, -0.020018653944134712, -0.018135635182261467, -0.007964245043694973, -0.006910834461450577, -0.022766010835766792, -0.015388279221951962, 0.00535194156691432, -0.006227854173630476, -0.025204673409461975, 0.012478860095143318, 0.012062126770615578, -0.011583654209971428, -0.02003408782184124, -0.010209976695477962, 0.003451558528468013, -0.00350557966157794, 0.010981705971062183, -0.02194797620177269, -0.009708352386951447, -0.0003253320755902678, -0.010541819967329502, -0.02923309989273548, 0.0014846139820292592, 0.02288948744535446, -0.010348888114094734, 0.008350109681487083, 0.024649029597640038, -0.00023139816767070442, 0.003575035370886326, -0.02188623882830143, 0.013150264509022236, -0.007875495590269566, 0.013713627122342587, -0.035005632787942886, -0.021083639934659004, -0.029387446120381355, -0.03509824350476265, 0.0014209463261067867, -0.01757998950779438, -0.012633206322789192, -0.012911028228700161, -0.0074085998348891735, 0.00014108173490967602, -0.003513297066092491, -0.010588124394416809, -0.015820447355508804, 0.019416704773902893, -0.019447574391961098, 0.030390694737434387, -0.008303805254399776, -0.0009058170835487545, -0.012687226757407188, -0.019941480830311775, 0.023121004924178123, 0.023151874542236328, -0.01274124812334776, 0.008010548539459705, -0.009260749444365501, 0.006899258587509394, 0.00739702396094799, 0.001936075510457158, 0.012154733762145042, 0.0037390277720987797, 0.0010418343590572476, -0.005120422691106796, -0.018644975498318672, -0.026439441367983818, 0.0029132775962352753, -0.006551980506628752, 0.019802570343017578, -0.005409821402281523, 0.0015810801414772868, -0.008928906172513962, 0.021454069763422012, 0.0013418440939858556, 0.023784691467881203, 0.029680702835321426, 0.01007878314703703, -0.0015984439523890615, -0.0023209755308926105, -0.005834272596985102, 0.021716458722949028, 0.01679282635450363, -0.004209782462567091, -0.005004663486033678, 0.0040901643224060535, -0.004560919478535652, -0.007620825432240963, -0.00539438659325242, 0.016839129850268364, 0.00551786320284009, -0.012995919212698936, -0.010001610033214092, 0.022580794990062714, 0.005618188064545393, 0.0031062099151313305, -0.010958554223179817, 0.005321072414517403, 0.010665296576917171, -0.022102322429418564, -0.025127500295639038, 0.0035788938403129578, 0.022642532363533974, 0.005240040831267834, -0.002859256463125348, 0.009909002110362053, -0.02109907567501068, 0.01118235569447279, 0.02151580899953842, 0.001048587029799819, -0.0031409375369548798, -0.00210103252902627, -0.003023248864337802, 0.0024386642035096884, -0.009114121086895466, 0.01751825213432312, -0.016051966696977615, 0.017379339784383774, -0.018444325774908066, 0.015195347368717194, 0.00544069055467844, 0.020018653944134712, 0.016653915867209435, -0.0021724174730479717, 0.007806040346622467, -0.011460177600383759, -0.017178690060973167, 0.03235088661313057, -0.02821441739797592, -0.014215250499546528, -0.025636842474341393, -0.014539376832544804, -0.011475612409412861, -0.0005397280910983682, -0.005004663486033678, 0.015450017526745796, -0.00019377635908313096, 0.004703689366579056, -0.010503233410418034, -0.004645809531211853, 0.004734558518975973, 0.014261554926633835, 0.04639635607600212, -0.0002633525582496077, -0.0028322460129857063, 0.012957332655787468, -0.007169364020228386, 0.020728645846247673, -0.008080003783106804, 0.01534197572618723, 0.012849289923906326, 0.010410626418888569, 0.005598894786089659, 0.00824978481978178, -0.030282652005553246, 0.024185990914702415, 0.0046072229743003845, -0.02140776626765728, -0.03648735582828522, 0.0017933056224137545, 0.017749769613146782, 0.011174637824296951, -0.005363517440855503, 0.01312711276113987], "be5507b1-4d59-4284-84de-5e0ba0888c5e": [-0.03239778056740761, -0.017119280993938446, -0.010906638577580452, 0.00863633956760168, -0.02130706235766411, -0.030066121369600296, 0.009733139537274837, 0.0447310246527195, -0.017794234678149223, 0.03132398799061775, 0.016935203224420547, 0.040681302547454834, 0.003798532299697399, -0.000766992918215692, -0.002247289288789034, 0.03328749164938927, -0.0017592899966984987, 0.012755092233419418, 0.013407035730779171, -0.05660407617688179, 0.05387357994914055, -0.021184343844652176, -0.025863001123070717, 0.020601429045200348, -0.002968262415379286, -0.013161597773432732, -0.014135679230093956, 0.013560433872044086, -0.046817246824502945, -0.024513093754649162, 0.005522348918020725, 0.02678339183330536, -0.004226130899041891, 0.005338270682841539, 0.02196667715907097, -0.03310341387987137, 0.022104734554886818, 0.01515577919781208, -0.016689766198396683, -0.0018283192766830325, -0.030695054680109024, 0.022779688239097595, -0.002189764752984047, 0.004636472091078758, -0.022242793813347816, -0.0018177732126787305, 0.024712510406970978, 0.007336286827921867, -0.0019088535336777568, -0.034177202731370926, 0.022472891956567764, 0.021537160500884056, -0.02721290849149227, -0.00010444285726407543, 0.04804443567991257, -0.04166305437684059, 0.012686062604188919, 0.06694313883781433, -0.008536631241440773, -0.05442581698298454, -0.01436577644199133, -0.02509600669145584, 0.004260645713657141, -0.02488124929368496, 0.013713832944631577, -0.0018868024926632643, 0.003252049908041954, -0.008912457153201103, -0.015876753255724907, 0.025479502975940704, -0.0241756159812212, 0.015569956041872501, -0.06792488694190979, -0.015316847711801529, 0.0013115578331053257, 0.011014018207788467, 0.013491405174136162, -0.006270166952162981, 0.02161386050283909, -0.025126686319708824, 0.011228775605559349, -0.0016298599075526, 0.021705899387598038, 0.007976725697517395, 0.03969955071806908, 0.026001058518886566, -0.024804549291729927, -0.0664522647857666, -0.045007143169641495, -0.02426765486598015, 0.02086220681667328, 0.028777573257684708, -0.01241761539131403, -0.010737900622189045, 0.009533721953630447, 0.011198095977306366, 0.0111367367208004, 0.0016586221754550934, -0.006776382215321064, -0.03031155839562416, -0.01339169591665268, 0.010331394150853157, -0.026277177035808563, -0.005683417432010174, 0.022733669728040695, -0.014634224586188793, 0.001483172527514398, 0.01626024954020977, -0.016505686566233635, 0.016336947679519653, -0.009855858981609344, -0.04335043951869011, 0.023715419694781303, -0.005564533639699221, -0.04077334329485893, -0.030510976910591125, -0.04693996533751488, -0.012110818177461624, -0.014434806071221828, -0.040374506264925, 0.03825760632753372, -0.010423433035612106, 0.017134621739387512, -0.025602223351597786, -0.01191139966249466, -0.004594287369400263, 0.010369744151830673, 0.01007828675210476, 0.026936789974570274, 0.003890571417286992, -0.0148719921708107, -0.01687384396791458, 0.025387464091181755, -0.00031230991589836776, 0.015708014369010925, 0.017518118023872375, 0.005476329475641251, 0.061850305646657944, -0.02133774198591709, 0.029728643596172333, -0.028777573257684708, -0.023408623412251472, -0.014941021800041199, 0.020309971645474434, 0.034974876791238785, 0.01159693207591772, -0.018499867990612984, 0.03463739901781082, -0.003894406370818615, 0.021751917898654938, -0.06547051668167114, -0.009779158979654312, -0.0037812748923897743, -0.005549193359911442, 0.026676012203097343, -0.0477989986538887, -0.004724676255136728, 0.03595662862062454, 0.03000476211309433, 0.04227664694190025, 0.02382279932498932, -0.05439513549208641, -0.020846866071224213, 0.0260777585208416, 0.015270828269422054, 0.047921717166900635, 0.06277070194482803, 0.02497328817844391, -0.025387464091181755, 0.02664533257484436, 0.026982810348272324, -0.014971701428294182, 0.018929384648799896, 0.01705792173743248, -0.008835758082568645, 0.005522348918020725, 0.03221370279788971, 0.029237769544124603, 0.02678339183330536, -0.01837714947760105, -0.026583973318338394, 0.015247819013893604, 0.003106321208178997, -0.004851229954510927, 0.012555673718452454, 0.04525258019566536, 0.012149167247116566, 0.046725206077098846, -0.0024908094201236963, -0.03460671752691269, -0.013989950530230999, 0.020785506814718246, -0.013284317217767239, -0.00023441220400854945, -0.017518118023872375, -0.018929384648799896, -0.013407035730779171, 0.02598571963608265, -0.002640373073518276, 0.023654060438275337, -0.0017401151126250625, -0.03595662862062454, -0.030234860256314278, 0.03672362118959427, -0.027105528861284256, 0.022196773439645767, -0.00627400167286396, -0.0551314502954483, 0.03209098428487778, -0.009157895110547543, 0.0480751134455204, -0.039791591465473175, -0.0005239520105533302, 0.004187781363725662, -0.008061095140874386, -0.006941285450011492, -0.001130355754867196, 0.04157101362943649, -0.019113462418317795, -0.039883632212877274, -0.008966146968305111, 0.022503571584820747, -0.006814731750637293, -0.009065856225788593, -0.07136102020740509, 0.01027770433574915, -0.02267231047153473, 0.05144988372921944, -0.04218460991978645, -0.0010085956891998649, 0.013614123687148094, -0.008306533098220825, 0.002450542291626334, -0.010415763594210148, -0.0010987173300236464, 0.02554086409509182, 0.029130389913916588, -0.014618884772062302, -0.005069823004305363, 0.007328616920858622, 0.017886273562908173, 0.02558688260614872, -0.00016861860058270395, 0.00905818585306406, 0.019681038334965706, 0.0332261323928833, -0.018944723531603813, 0.06375245004892349, 0.02086220681667328, -0.02236551232635975, -0.012716742232441902, 0.006626818794757128, -0.003581856843084097, 0.00023692889953963459, -0.013790532015264034, 0.014718594029545784, 0.02690611034631729, -0.028317376971244812, -0.004275985527783632, 0.0006059244042262435, 0.007938376627862453, 0.011512563563883305, 0.01053848210722208, 0.004851229954510927, 0.037061095237731934, -0.011359164491295815, 0.011504893191158772, -0.00948003213852644, 0.0012386934831738472, 0.01400529034435749, -0.010239355266094208, 0.0006346866139210761, -0.016628405079245567, 0.025909019634127617, 0.0205554086714983, -0.014664904214441776, -0.02863951399922371, 0.00470550125464797, 0.03242845833301544, -0.009694790467619896, -0.0102546950802207, 0.022288814187049866, 0.018499867990612984, 0.0042107910849153996, 0.042522087693214417, -0.0006203054799698293, -0.03469875827431679, -0.007439831271767616, -0.036600902676582336, 0.004812880419194698, 0.0020593758672475815, 0.006454245187342167, 0.01572335511445999, 0.025510184466838837, 0.023132504895329475, 0.005990214645862579, 0.013491405174136162, -0.009733139537274837, -0.004962443839758635, 0.033379532396793365, 0.016536366194486618, 0.003113991115242243, 0.0066153137013316154, -0.03224438056349754, 0.047829676419496536, -0.03601798787713051, 0.014496165327727795, 0.009748479351401329, -0.03574186936020851, 0.05405765771865845, 0.021905317902565002, -0.010147316381335258, -0.02840941585600376, -0.006373710930347443, -0.006856916472315788, 0.017518118023872375, -0.011834700591862202, -0.013092569075524807, -0.003898241324350238, -0.036079347133636475, -0.014618884772062302, -0.017962973564863205, -0.0774969607591629, 0.015355197712779045, 0.06111399456858635, -0.051848720759153366, 0.038901880383491516, -0.019957154989242554, -0.03509759530425072, -0.013936260715126991, -0.029406506568193436, -0.012624703347682953, -0.032980695366859436, 0.010584501549601555, -0.03792012855410576, -0.055837083607912064, -0.05869029462337494, -0.037091776728630066, 0.0021840122062712908, -0.03224438056349754, -0.011198095977306366, 0.007846337743103504, 0.02279502898454666, -0.012747421860694885, 0.002697897609323263, -0.004885744769126177, 0.02297910675406456, -0.0056028831750154495, -0.03310341387987137, -0.010921978391706944, 0.0009347726008854806, -0.0012904655886813998, 0.03500555455684662, -0.029759325087070465, 0.03936207666993141, -0.019911134615540504, -0.009993917308747768, 0.005687252152711153, 0.0044830734841525555, 0.0018474941607564688, -0.02673737145960331, -0.03884052112698555, -0.024712510406970978, 0.008245173841714859, -0.003066054079681635, 0.006116768345236778, -0.004782200790941715, -0.02182861790060997, -0.030833113938570023, 0.022166093811392784, -0.04921026527881622, 0.026890771463513374, 0.030020100995898247, -0.011282465420663357, -0.014565194956958294, -0.06163555011153221, 0.016137531027197838, -0.010308384895324707, -0.028777573257684708, 0.040681302547454834, -0.005000793840736151, 0.006738032680004835, -0.006688178051263094, 0.013989950530230999, 0.031753506511449814, 0.011627612635493279, -0.03150806948542595, -0.02054006978869438, -0.025218727067112923, -0.028071939945220947, -0.036386143416166306, 0.0032347925007343292, -0.04215392842888832, 0.01089129876345396, -0.03841100260615349, -0.024712510406970978, 0.0007545292610302567, -0.026323195546865463, 0.0012895067920908332, -0.033686328679323196, 0.010400423780083656, 0.004947104025632143, -0.006124438252300024, -0.002749669598415494, 0.00731327710673213, -0.04362655431032181, 0.004939434118568897, -0.012080137617886066, 0.0370304174721241, 0.00921158492565155, 0.020954245701432228, 0.0037793575320392847, 0.024098915979266167, 0.027627084404230118, 0.049425020813941956, 0.018852684646844864, -0.005196376703679562, 0.03518963232636452, -0.03202962502837181, -0.031876225024461746, 0.03279661759734154, 0.04743083938956261, 0.013445385731756687, 0.019466279074549675, 0.008091774769127369, 0.01420470792800188, -0.002788019133731723, 0.02469717152416706, -0.015984131023287773, -0.01988045498728752, -0.012747421860694885, 0.0558677613735199, 0.0066344887018203735, -0.01477995328605175, 0.009318963624536991, 0.004567442461848259, 0.013698493130505085, 0.005085162818431854, 0.007324782200157642, 0.010147316381335258, -0.010615181177854538, 0.007416821084916592, -0.004379529505968094, -0.008559640496969223, -0.021905317902565002, -0.02316318452358246, -0.038779161870479584, 0.020800847560167313, 0.03552711009979248, -0.00852896086871624, 0.005227056331932545, 0.02939116768538952, -0.0446389876306057, 0.006289341486990452, -0.0009759984677657485, 0.0040343827567994595, 0.0077351233921945095, 0.012463634833693504, 0.011205766350030899, -0.04282888397574425, -0.022212114185094833, -0.0057601165026426315, 0.022242793813347816, 0.015339857898652554, 0.006128273438662291, -0.030127480626106262, 0.005307590588927269, 0.015393547713756561, -0.007290267385542393, -0.007370801642537117, 0.008406242355704308, -0.00897381640970707, -0.011159746907651424, 0.05135784298181534, 0.00020792697614524513, 0.009848188608884811, -0.024144936352968216, -0.02598571963608265, 0.008160804398357868, -0.015477916225790977, -0.02351600117981434, -0.029636604711413383, 0.012831791304051876, 0.005606717895716429, 0.026537954807281494, -0.011827030219137669, -0.017656177282333374, -0.028271358460187912, 0.028179319575428963, -0.011274795979261398, 0.05927320942282677, -0.005967204924672842, -0.01626024954020977, 0.015531606040894985, -0.0035320022143423557, -0.033072732388973236, -0.010247024707496166, -0.029897382482886314, -0.024911928921937943, -0.04635705053806305, 0.04264480620622635, -0.0129008200019598, 0.014442476443946362, 0.007689103949815035, -0.01321528758853674, 0.02793388068675995, -0.009272944182157516, 0.03911663591861725, -0.004310499876737595, -0.02871621400117874, -0.046111613512039185, 0.03558846935629845, -0.023669401183724403, 0.00023956543009262532, -0.0008690988179296255, 0.011773341335356236, -0.013077229261398315, 0.013046548701822758, 0.04543665796518326, 0.004870404954999685, -0.00799973588436842, -0.0068607511930167675, -0.002855130936950445, -0.005637397989630699, -0.026568634435534477, -0.01078392006456852, -0.007370801642537117, -0.024773869663476944, 0.030020100995898247, -0.011696641333401203, -0.008782068267464638, 0.0023815128952264786, -0.03000476211309433, 0.03795081004500389, 0.02840941585600376, 0.0027918540872633457, -0.006385216023772955, 0.009894208051264286, -0.0013278564438223839, -0.0010632439516484737, -0.02142978087067604, 0.026476595550775528, -0.012839460745453835, -0.003470642725005746, -0.011205766350030899, 0.042092569172382355, -0.028117960318922997, 0.01321528758853674, -0.002339328406378627, 0.029575245454907417, -0.014227718114852905, 0.01425072830170393, -0.025111347436904907, -0.0070524998009204865, 0.009756149724125862, -0.029682625085115433, -0.0033805212005972862, -0.02041735127568245, -0.019742397591471672, -0.009556731209158897, -0.025648241862654686, 0.00497011374682188, -0.005579873453825712, 0.02046336978673935, -0.005687252152711153, 0.009272944182157516, -0.02072414755821228, 0.010224015451967716, -0.02699814923107624, 0.03874848037958145, 0.05418037623167038, -0.004433218855410814, 0.04344247654080391, -0.0006088006193749607, -0.00014692707918584347, 0.05261571332812309, 0.019343560561537743, 0.018055012449622154, -0.03663158044219017, -0.012509654276072979, 0.04034382477402687, -0.01750277727842331, 0.007040994707494974, -0.010661201551556587, 0.0006874173996038735, 0.03531235456466675, -0.012164507061243057, -0.028225338086485863, 0.0036106191109865904, 0.02610843814909458, 0.0036930707283318043, 0.027059508487582207, -0.007470510900020599, 0.020079873502254486, -0.030035441741347313, 0.015708014369010925, 0.028424756601452827, 0.016843164339661598, 0.01270140241831541, 0.01434276718646288, 0.028117960318922997, 0.012202857062220573, 0.005138852167874575, -0.021046284586191177, -0.03795081004500389, 0.041386935859918594, -0.008866437710821629, 0.02876223437488079, -0.0019241934642195702, 0.040589265525341034, 0.026001058518886566, 0.006757207214832306, 0.03601798787713051, -0.0009740809909999371, 0.03552711009979248, 0.0034553029108792543, 0.01522480882704258, 0.027596404775977135, 0.009848188608884811, 0.009901878423988819, 0.013813542202115059, -0.0442708283662796, 0.055039409548044205, -0.018883364275097847, 0.005587543360888958, 0.0036010316107422113, -0.03279661759734154, -0.01060751173645258, -0.012586353346705437, -0.00983284879475832, -0.0005042978445999324, -0.008076434955000877, -0.012785771861672401, -0.028317376971244812, 0.004068897105753422, -0.017303358763456345, -0.005207881797105074, 0.012992859818041325, -0.012432955205440521, -0.014089659787714481, -0.0009692872408777475, 0.01816239207983017, -0.000638521567452699, 0.03844168409705162, -0.026476595550775528, 0.015846073627471924, -0.013798202387988567, -0.0005167614435777068, 0.04362655431032181, 0.02218143455684185, -0.0021207353565841913, 0.01825443096458912, 0.017993653193116188, 0.01701190322637558, 0.01157392282038927, -0.01696588285267353, -0.004954773932695389, 0.00438719941303134, 0.006101428531110287, 0.0069949752651154995, 0.023700080811977386, -0.013752182945609093, 0.012248876504600048, 0.004417879041284323, 0.013376356102526188, 0.0034994049929082394, 0.01903676427900791, 0.008674689568579197, 0.030986512079834938, 0.02638455480337143, 0.024865910410881042, -0.005257736425846815, 0.014319756999611855, -0.004590452648699284, -0.002408357569947839, 0.006841576658189297, 0.02063210867345333, 0.019819095730781555, 0.008053425699472427, -0.010032267309725285, -0.03733721375465393, -0.036386143416166306, -0.024773869663476944, 0.01891404390335083, -0.028792914003133774, -0.017686856910586357, -0.002644208027049899, 0.023715419694781303, -0.033256810158491135, 0.008720709010958672, -0.022595610469579697, 0.020248612388968468, -0.018545888364315033, 0.03923935815691948, -0.004444723948836327, -0.006542449351400137, 0.009955567307770252, -0.021245703101158142, 0.007800317835062742, -0.010423433035612106, -0.025034647434949875, -0.0296059250831604, 0.00630851648747921, -0.03239778056740761, 0.009825179353356361, 0.00405355729162693, -0.026829412207007408, -0.02620047703385353, 0.0007166590075939894, 0.00284554366953671, 0.011435863561928272, -0.011029358021914959, -0.012317906133830547, 0.02532610483467579, 0.007217403035610914, 0.019941816106438637, -0.01425072830170393, 0.019297542050480843, -0.015186458826065063, 0.04258344694972038, -0.013199947774410248, 0.028087278828024864, -0.03500555455684662, -0.012977520003914833, -0.023792119696736336, 0.025126686319708824, 0.001001884462311864, -0.0021744249388575554, -0.008674689568579197, -0.004019042942672968, 0.040711984038352966, -0.015493256039917469, -0.005702591966837645, 0.013345676474273205, 0.005909680388867855, -0.008628670126199722, 0.003489817725494504, 0.010883629322052002, 0.03583390638232231, 0.002736247144639492, 0.015685005113482475, -0.016689766198396683, 0.025356784462928772, -0.005599047988653183, 0.0012712907046079636, -0.008199154399335384, 0.020340651273727417, -0.00011313144932501018, -0.004575112834572792, 0.003758265171200037, 0.03310341387987137, -0.00465181190520525, 0.04061994329094887, 0.029283788055181503, -0.02063210867345333, -0.0009213502053171396, 0.04206189140677452, -0.002556003862991929, -0.01533218752592802, 0.044209469109773636, -0.016198890283703804, 0.0030257869511842728, 0.014588205143809319, -0.008030415512621403, 0.010676541365683079, 0.01548558659851551, 0.025157365947961807, 0.00044893051381222904, 0.041693732142448425, 0.022549591958522797, 0.04519122093915939, -0.0030852288473397493, 0.03163078799843788, 0.044915102422237396, -0.03193758428096771, -0.060561757534742355, 0.00731327710673213, 0.0033517589326947927, -0.012210526503622532, -0.009318963624536991, -0.026676012203097343, -0.04457762837409973, 0.009073525667190552, -0.02231949381530285, 0.03699973598122597, -0.03549643233418465, 0.04819783195853233, -0.0032290401868522167, 0.008996826596558094, 0.018300451338291168, 0.02244221232831478, 0.0069374507293105125, 0.004655646625906229, 0.03623274341225624, 0.006527109537273645, -0.023393282666802406, 0.0006955667049624026, -0.013522084802389145, -0.013353345915675163, 0.0019328220514580607, 0.011658292263746262, -0.02563290297985077, 0.03482147678732872, 0.04497646167874336, 0.012149167247116566, 0.008605659939348698, 0.015370537526905537, -0.01089129876345396, -0.02342396229505539, 0.00994022749364376, -0.012486644089221954, -0.015431896783411503, -0.006795557215809822, 0.037061095237731934, -0.025310765951871872, -0.013660143129527569, 0.003000859636813402, -0.0028263689018785954, 0.018453849479556084, 0.005606717895716429, -0.007010315079241991, 0.008022746071219444, 0.015562285669147968, 0.02532610483467579, 0.02178259752690792, -0.0008935467340052128, 0.01104469783604145, 0.013506744988262653, -0.009633430279791355, -0.01966569758951664, -0.014151019044220448, -0.01997249573469162, -0.021445121616125107, 0.03601798787713051, -0.005948029924184084, 0.020831527188420296, -0.016475006937980652, -0.002182094845920801, -0.038196247071027756, 0.048627350479364395, -0.015362868085503578, -0.05368950217962265, -0.03393176570534706, -0.012432955205440521, -0.016290929168462753, 0.0030775589402765036, 0.011182756163179874, 0.02488124929368496, 0.027458345517516136, 0.047216083854436874, 0.03026553988456726, -0.01181936077773571, 0.0008221205207519233, -0.022687649354338646, -0.02814863994717598, 0.01157392282038927, -0.0034955700393766165, -0.0016404060879722238, -0.005487834103405476, 0.02165987901389599, 0.009993917308747768, 0.011980429291725159, -0.03555779159069061, 0.0014045557472854853, -0.020478710532188416, -0.018438508734107018, -0.020263953134417534, 0.01389791164547205, 0.011811690405011177, 0.0027074848767369986, -0.001599180162884295, -0.005974874831736088, 0.01621422916650772, 0.021353082731366158, -0.0037601827643811703, -0.014557525515556335, 0.0026096932124346495, 0.006373710930347443, -0.0554996058344841, 0.010730230249464512, -0.002162919845432043, 0.01576937362551689, -0.00799973588436842, 0.006680508144199848, -0.0260777585208416, -0.004467733670026064, 0.012747421860694885, -0.007815657183527946, 0.010707220993936062, 0.00219359970651567, -0.007459005806595087, 0.01252499409019947, -0.01922084204852581, -0.024497753009200096, 0.008122454397380352, -0.02868553437292576, -0.005353610496968031, -0.010507802478969097, -0.005342105403542519, 0.004901084583252668, 0.00281102885492146, -0.039085958153009415, -0.03071039542555809, 0.004763025790452957, 0.0444549098610878, -0.047737639397382736, 0.02027929201722145, 0.01639830879867077, 0.014941021800041199, 0.013015869073569775, 0.0444549098610878, 0.02615445852279663, -0.01621422916650772, -0.021138323470950127, 0.032367099076509476, 0.027243588119745255, -0.00287238834425807, -0.016152869910001755, -0.00431816978380084, -0.01586141251027584, 0.01294684037566185, 0.0060208942741155624, 0.041693732142448425, -0.004736180882900953, 0.0010709138587117195, 0.00674953730776906, -0.00213224021717906, -0.03371700644493103, -0.006876091472804546, 0.026323195546865463, -0.0008830005535855889, 0.014020630158483982, 0.014143348671495914, 0.000714741472620517, 0.012762761674821377, 0.000940525031182915, -0.02615445852279663, -0.024773869663476944, -0.026261836290359497, -0.020125893875956535, -0.022610951215028763, -0.02316318452358246, 0.024006877094507217, -0.019512299448251724, -0.006929780822247267, -0.008038085885345936, -0.011619942262768745, 0.016643745824694633, -0.01181936077773571, 0.012847131118178368, 0.0009731222526170313, 0.02686009183526039, 0.00565657252445817, 0.001062285155057907, 0.022641630843281746, 0.003666226053610444, -0.011742660775780678, -0.015094419941306114, 0.014649564400315285, -0.007723618298768997, 0.002770761726424098, 0.00793070625513792, -7.040755008347332e-05, 0.016014812514185905, -0.0012856718385592103, 0.004966279026120901, -0.029836023226380348, -0.006231817416846752, -0.007900026626884937, -0.007566384971141815, -0.0017429913859814405, 0.008406242355704308, -0.005545358639210463, 0.010745570063591003, -0.018929384648799896, -0.0064005558378994465, -0.03160010650753975, -0.009364983066916466, -0.02991272322833538, 0.0044140443205833435, 0.013460725545883179, -0.01027770433574915, -0.03169214725494385, -0.0006744744023308158, -0.0054379794746637344, -0.011014018207788467, -0.012870140373706818, 0.0409267395734787, -0.02218143455684185, -0.006438905373215675, 0.0007396687869913876, -0.03482147678732872, -0.012785771861672401, -0.0016106850234791636, -0.0035224149469286203, -0.013000529259443283, -0.021414441987872124, -0.03525099158287048, 0.007497355341911316, -0.027550384402275085, -0.007432160899043083, 0.001965419389307499, -0.03850304335355759, 0.04497646167874336, 0.023914838209748268, 0.02925310842692852, -0.011236445978283882, -0.02478921040892601, -0.005016133654862642, 0.001986511517316103, -0.013483734801411629, -0.03518963232636452, -0.007838667370378971, -0.017748216167092323, -0.012778101488947868, 0.011389844119548798, 0.023914838209748268, -0.026016399264335632, -0.00028666359139606357, 0.04141761735081673, -0.016582386568188667, -0.023853478953242302, 0.0002581410517450422, -0.022564930841326714, -0.021138323470950127, 0.0032616371754556894, -0.012179846875369549, -0.006707353051751852, 0.030679715797305107, 0.014649564400315285, -0.016060831025242805, -0.011535572819411755, 0.0019462445052340627, 0.007190558593720198, -0.00405355729162693, -0.021138323470950127, 0.016597725450992584, -0.05979476496577263, -0.028394076973199844, -0.015370537526905537, 0.015324518084526062, 0.0006893348763696849, 0.008444591425359249, 0.015600635670125484, 0.010914308950304985, -0.027473686262965202, 0.011796350590884686, 0.01917482167482376, -0.019819095730781555, 0.02077016793191433, 0.01252499409019947, -0.013890241272747517, 0.013353345915675163, -0.0110677070915699, 0.004763025790452957, 0.010469453409314156, -0.009050516411662102, -0.012647712603211403, 0.015569956041872501, 0.03040359914302826, -0.016597725450992584, -0.02805659919977188, 0.027151549234986305, -0.015255488455295563, 0.008659349754452705, -0.00980983953922987, -0.04206189140677452, -0.00047146095312200487, 0.02457445301115513, -0.01612219028174877, -0.007029490079730749, 0.00497011374682188, 0.0222734734416008, 0.00808410532772541, -0.004686326719820499, 0.03374768793582916, -0.008912457153201103, 0.0030890638008713722, 0.017916953191161156, -0.0009256645571440458, -0.010415763594210148, -0.007416821084916592, -0.037214495241642, 0.00817614421248436, -0.022043375298380852, 0.0014467403525486588, 0.005422639660537243, 0.007416821084916592, 0.013683153316378593, 0.0021686723921447992, -0.016812484711408615, -0.0007626785663887858, -0.005825310945510864, 0.011604602448642254, -0.005579873453825712, 0.01724199950695038, 0.0002265025832457468, 0.034054484218358994, 0.025863001123070717, 0.011919069103896618, 0.00678405212238431, -0.025203386321663857, 0.011896059848368168, 0.018944723531603813, 0.024144936352968216, 0.022610951215028763, -0.00518103688955307, 0.015708014369010925, -0.0110677070915699, -0.005353610496968031, 0.02199735678732395, -0.005725602153688669, 0.02020259201526642, 0.013245967216789722, 0.0032731422688812017, -0.0022933087311685085, -0.010737900622189045, -0.03515895456075668, 0.006856916472315788, 0.002030613599345088, -0.004674821626394987, -0.013399366289377213, -0.025249406695365906, 0.0033996959682554007, -0.01400529034435749, -0.0005282663623802364, 0.005161862354725599, 0.04534462094306946, 0.018806666135787964, 0.022779688239097595, 0.004670986905694008, -0.023132504895329475, 0.05853689834475517, -0.0013115578331053257, -0.0075203655287623405, 0.010638191364705563, 0.0033114918041974306, 0.00025646324502304196, -0.009932558052241802, 0.018453849479556084, -0.028838932514190674, -0.01226421631872654, 0.0012981354957446456, 0.012532663531601429, 0.005115842446684837, -0.03009680099785328, -0.015608305111527443, -0.021445121616125107, -0.0004923135857097805, -0.03163078799843788, 0.009203914552927017, -0.010208675637841225, 0.013997619971632957, -0.01644432730972767, -0.024804549291729927, -0.03071039542555809, 0.0038483869284391403, -0.0035569295287132263, 0.03936207666993141, -0.006496429909020662, -0.032765936106443405, -0.019205501303076744, -0.006074583623558283, -0.01306188851594925, -0.0017401151126250625, -0.011083046905696392, 0.02156784012913704, -0.0043565197847783566, -0.01802433282136917, -0.01321528758853674, 0.0014112669741734862, -0.00938799325376749, 0.014043639414012432, 0.026752712205052376, -0.024773869663476944, 0.034790799021720886, -0.025433484464883804, 0.029145730659365654, -0.00868235994130373, -0.0067725470289587975, 0.0021552499383687973, -0.023301243782043457, 0.011566252447664738, -0.006151283159852028, -0.017778895795345306, 0.010262364521622658, 0.0014946773881092668, -0.00722507294267416, -0.010630521923303604, 0.029237769544124603, 0.014289077371358871, -0.01644432730972767, -0.01797831431031227, -0.02725892700254917, 0.005211716517806053, -0.0053804549388587475, -0.015217139385640621, -0.013445385731756687, 0.02063210867345333, 0.0069949752651154995, -0.016459668055176735, -0.001528233289718628, -0.0054686591029167175, -0.01027770433574915, -0.006013224367052317, 0.006381380837410688, -0.014925681985914707, 0.0003796614764723927, 0.013000529259443283, -0.010239355266094208, -0.019588997587561607, 0.00579846603795886, -0.018806666135787964, -0.014948691241443157, -0.022503571584820747, 0.01691986247897148, 0.010170325636863708, -0.006776382215321064, 0.007830996997654438, -0.006576964166015387, 0.015754034742712975, 0.0066153137013316154, 0.0017602486768737435, -0.01069188117980957, -0.013330336660146713, 0.004789870698004961, 0.008390902541577816, 0.028071939945220947, 0.01045411266386509, -0.013291986659169197, 3.379562258487567e-05, 0.0008820418152026832, 0.003748677670955658, 0.042706165462732315, 0.025264745578169823, -0.003635546425357461, 0.00028186989948153496, -0.023393282666802406, -0.0016289011109620333, 0.0037429253570735455, 0.012294895946979523, 0.0016614983323961496, 7.226510933833197e-05, -0.03745993226766586, 0.0016988893039524555, 0.024804549291729927, -0.018177730962634087, -0.003439963096752763, 0.007474345620721579, 0.01557762548327446, -0.009648771025240421, 0.0002250644756713882, -0.014051309786736965, 0.011673632077872753, -0.014143348671495914, 0.020800847560167313, -0.008045755326747894, 0.0444549098610878, -0.024052897468209267, -0.0011888389708474278, -0.004816715139895678, 0.008697699755430222, 0.016275588423013687, 0.011612272821366787, -0.044792383909225464, 0.008045755326747894, 0.0005762033979408443, -0.011481883935630322, 0.0070064798928797245, -0.01630626805126667, -0.020923566073179245, -0.005227056331932545, -0.010753240436315536, 0.0333181694149971, -0.004782200790941715, 0.04635705053806305, 0.016889182850718498, -0.009756149724125862, -0.019941816106438637, -0.007267257664352655, 0.0007650753832422197, 0.03224438056349754, 0.006814731750637293, -0.0333181694149971, -0.01691986247897148, 0.004743851255625486, 0.010645861737430096, 0.009526051580905914, -0.008030415512621403, -0.001990346470847726, 0.0065194396302104, 0.004747685976326466, 0.0030161994509398937, 0.008153134025633335, -0.004019042942672968, 0.0034303755965083838, -0.01741073839366436, 0.0016960130305960774, 0.004157101269811392, 0.014281407929956913, -0.03445332124829292, 0.023715419694781303, 6.603329529752955e-05, -0.0014793375739827752, 0.011144407093524933, 0.008874108083546162, -0.014841312542557716, 0.004782200790941715, 0.013552764430642128, -0.010024596937000751, 0.009963237680494785, 0.02011055313050747, 0.008521291427314281, 0.00622031232342124, -0.010477122850716114, -0.0019069360569119453, -0.007320947013795376, -0.013192277401685715, -0.00343612814322114, -0.014825972728431225, 0.03212166205048561, 0.018714627251029015, 0.009901878423988819, 0.009004496969282627, -0.017395399510860443, 0.035864587873220444, -0.017702195793390274, 0.008153134025633335, -0.002264546463266015, 0.009150225669145584, -0.017395399510860443, 0.021414441987872124, -0.020340651273727417, 0.00047217999235726893, 0.010860619135200977, 0.019496958702802658, 0.002383430488407612, 0.011512563563883305, -0.003984528128057718, -0.02514202706515789, -0.021368421614170074, 0.008651679381728172, -0.00032597198151052, -0.010016927495598793, 0.010016927495598793, -0.0025099841877818108, 0.006078418809920549, 0.007382306735962629, -0.0003818186523858458, -0.012755092233419418, -0.010385083965957165, -0.005491669289767742, 0.012517323717474937, 0.027059508487582207, -0.004007537849247456, -0.019098123535513878, -0.04141761735081673, 0.002049788599833846, -0.023086486384272575, 0.02129172347486019, -7.735842518741265e-05, -0.05267707258462906, -0.012640043161809444, -0.0001714948157314211, -0.010139646008610725, 0.018929384648799896, 0.003618289018049836, -0.03017350099980831, 0.04313568025827408, 0.011251785792410374, -0.008498281240463257, -0.0007248082547448575, -0.008966146968305111, -0.007278762757778168, -0.005909680388867855, -0.01586141251027584, 0.0012243123492226005, 0.021092304959893227, 0.0075318701565265656, -0.0004513273888733238, -0.004383364226669073, 0.0165670458227396, 0.009717799723148346, 0.010400423780083656, 0.04043586552143097, 0.02439037337899208, -0.004072732292115688, -0.004981618840247393, 0.02130706235766411, 0.01418169867247343, 0.005192541982978582, 0.011090717278420925, 0.01900608465075493, 0.015178789384663105, 0.01385189127177, -0.023500662297010422, -0.005648902617394924, -0.017610156908631325, -0.010592171922326088, 0.007098519243299961, 0.026706691831350327, -0.01724199950695038, 0.0025003969203680754, 0.028746893629431725, -0.02333192341029644, 0.027841841802001, -0.007946046069264412, 0.01356810424476862, -0.004157101269811392, -0.020402010530233383, 0.003119743661954999, -0.022120075300335884, -0.002732412191107869, 0.003344089025631547, 0.017993653193116188, -0.0058061364106833935, -0.01385189127177, -0.00044725273619405925, 0.01288548018783331, -0.05368950217962265, -0.021000266075134277, -0.032367099076509476, 0.006040068808943033, -0.01877598650753498, 0.0005546317552216351, -0.013330336660146713, -0.019650358706712723, -0.019742397591471672, -0.004693996626883745, 0.006971965543925762, 0.016904523596167564, 0.009503042325377464, 0.006262497045099735, -0.03549643233418465, 0.013660143129527569, -0.059119813144207, -0.001741073909215629, -0.017518118023872375, -0.0001139703526860103, -0.004325839690864086, 0.025341445580124855, -0.01533218752592802, 0.023700080811977386, 0.018039673566818237, 0.015301507897675037, 0.012571013532578945, -0.045804817229509354, -0.009510711766779423, 0.011796350590884686, 0.0012377348029986024, -0.010592171922326088, -0.023531341925263405, -0.014526844955980778, 0.0018800913821905851, 0.016490347683429718, -0.002124570310115814, 0.0030392094049602747, -0.023807458579540253, -0.013161597773432732, -0.0029030682053416967, -0.022166093811392784, -0.015876753255724907, 0.012962180189788342, -0.014473156072199345, 0.0006524233031086624, 0.006427400279790163, -0.00474001606926322, 0.0031715156510472298, 0.019987834617495537, -0.01564665511250496, 0.015615975484251976, 0.04632636904716492, -0.030081462115049362, 0.009648771025240421, -0.004674821626394987, -0.010477122850716114, -0.022641630843281746, -0.04015974700450897, -0.010085956193506718, -0.008766728453338146, -0.016843164339661598, 0.004467733670026064, -0.01886802539229393, 0.029636604711413383, -0.015968792140483856, 0.016827823594212532, 0.02756572514772415, 0.01811637170612812, -0.023040466010570526, 0.015017720870673656, 0.003202195279300213, 0.024022217839956284, -0.00678405212238431, -0.008912457153201103, -0.003767852671444416, -0.01767151616513729, 0.04006770998239517, 0.01016265619546175, -0.0025617561768740416, -0.008214494213461876, 0.012532663531601429, -0.022242793813347816, 0.0167051050812006, 0.0330420546233654, -0.02408357709646225, -0.004686326719820499, -0.01837714947760105, 0.021276382729411125, -0.01599947176873684, -0.02523406594991684, -0.008536631241440773, 0.014588205143809319, -0.012785771861672401, 0.0026940624229609966, -0.009012166410684586, 0.0002943335275631398, -0.03080243431031704, 0.01975773647427559, -0.01051547285169363, -0.007773472927510738, 0.009886538609862328, 0.02532610483467579, 0.008306533098220825, 0.014756943099200726, -0.015102090314030647, 0.00548016419634223, 0.03755197301506996, 0.0002806714619509876, 0.02514202706515789, -0.013307326473295689, -0.0009294995106756687, 0.014304417185485363, -0.007558715064078569, -0.003796614706516266, -0.008751388639211655, 0.013514414429664612, -0.0016682095592841506, 0.0016749207861721516, -0.017732875421643257, -0.022411532700061798, -0.00553385354578495, 0.018147051334381104, -0.009449352510273457, 0.002881975844502449, 0.03239778056740761, 0.016582386568188667, -0.005863660480827093, -0.005560698453336954, 0.0039768582209944725, -0.009226924739778042, 0.0026595478411763906, -0.030940493568778038, -0.013276646845042706, -0.012210526503622532, -0.006331526208668947, -0.03583390638232231, -0.00717138359323144, -0.011389844119548798, -0.011458873748779297, -0.006013224367052317, -0.0026940624229609966, 0.015117430128157139, 0.006814731750637293, -0.004187781363725662, -0.007673763670027256, -0.01407431997358799, 0.004590452648699284, 0.0037160804495215416, 5.9441950725158677e-05, 0.015600635670125484, 0.011343824677169323, 0.003326831618323922, -0.00429899524897337, -0.0007310400833375752, -0.000159989926032722, -0.0006404390442185104, 0.0001698170235613361, -0.004249140620231628, 0.00017197418492287397, -0.009019836783409119, 0.004939434118568897, -0.01321528758853674, 0.0702565461397171, 0.007543375249952078, 0.009671780280768871, -0.014895002357661724, -0.007213568314909935, -0.033563610166311264, -0.011711981147527695, 0.021859297528862953, 0.029360488057136536, 0.0006155117880553007, -0.00526924105361104, -0.016766464337706566, 0.005882835481315851, 0.009449352510273457, -0.02067812904715538, 0.025387464091181755, 0.017349379137158394, 0.02603173814713955, -2.5166953491861932e-05, 0.017180640250444412, 0.0017362801590934396, -0.01089129876345396, -0.02610843814909458, 0.026676012203097343, -0.0023546682205051184, 0.03752129152417183, -0.021675219759345055, 0.0018513291142880917, 0.008644009940326214, 0.022687649354338646, -0.0024773869663476944, -0.02121502347290516, -0.0038886540569365025, 0.0026537952944636345, -0.003418870735913515, 0.013943931087851524, -0.001211848808452487, 0.009978577494621277, -0.0013384026242420077, -0.006684342864900827, 0.005971039645373821, 0.011504893191158772, 0.016536366194486618, 0.023884158581495285, 0.0008106156019493937, -0.01572335511445999, -0.0023450807202607393, 0.004636472091078758, 0.010070616379380226, -0.009970908053219318, -0.02377677895128727, -0.0012674557510763407, -0.0016902606002986431, 0.01872996613383293, 0.0030986513011157513, -0.0005618223221972585, 0.01851520873606205, 0.005062153097242117, 0.013966940343379974, 0.0001774869451764971, -0.024022217839956284, 0.013805871829390526, -0.016904523596167564, -0.02077016793191433, -0.016720445826649666, -0.010469453409314156, -0.005790796130895615, -0.013491405174136162, 0.003652803599834442, -0.008130124770104885, -0.015830732882022858, 0.01365247368812561, 0.007340122014284134, -0.02258027158677578, 0.0035876091569662094, 0.0129008200019598, -0.013614123687148094, 0.020294632762670517, 0.009065856225788593, 0.003392026061192155, 0.007539540063589811, 0.012003438547253609, -0.024727851152420044, -0.017088601365685463, 0.004160936456173658, 0.0024313675239682198, 0.022994447499513626, -0.02659931406378746, -0.0007003603968769312, -0.020340651273727417, -0.02488124929368496, -0.008099445141851902, -0.006826236844062805, 0.016996562480926514, 0.008544300682842731, -0.007305607199668884, -0.016597725450992584, 0.009556731209158897, 0.018131712451577187, -0.006699683144688606, -0.0009016960393637419, 0.014910342171788216, -0.010500133037567139, 0.004061227198690176, 0.011320815421640873, -0.0120878079906106, 0.021982016041874886, 0.004678656812757254, -0.02836339734494686, 0.0019884291104972363, -0.0012156837619841099, -0.02077016793191433, 0.004889579489827156, 0.003361346432939172, -0.023301243782043457, 0.018039673566818237, 0.027335627004504204, -0.01427373755723238, -0.02262629009783268, -0.020141232758760452, 0.004471568390727043, 1.2688339666055981e-05, -0.0008796449983492494, -0.008275853469967842, 0.002596270991489291, -0.006669003050774336, -0.0027515869587659836, -0.017564136534929276, -0.009180905297398567, 0.0009774365462362766, -0.0008206823840737343, 0.004663316998630762, 0.011236445978283882, 0.007217403035610914, 0.026399895548820496, -0.0014198955614119768, -0.012363925576210022, -0.025924360379576683, 0.025909019634127617, -0.013667813502252102, 0.008551971055567265, -0.0062663317658007145, 0.004322004970163107, 0.024589791893959045, 0.002770761726424098, 0.03035757876932621, -0.007551045157015324, -0.014749273657798767, -0.008045755326747894, -0.01140518393367529, 0.03795081004500389, -0.03482147678732872, 0.006224147509783506, -0.01124411541968584, 0.00040434906259179115, 0.005088998004794121, -0.034361280500888824, 0.03853372111916542, -0.018929384648799896, -0.007604734506458044, 0.005054483190178871, -0.0028628010768443346, -0.008828088641166687, -0.005483999382704496, 0.001969254342839122, 0.015876753255724907, 0.021797938272356987, 0.030158160254359245, 0.008866437710821629, -0.013107908889651299, -0.007129198871552944, 0.012049457989633083, 0.004195451270788908, -0.024911928921937943, 0.022350173443555832, -0.004095742013305426, 0.0013566187117248774, 0.0019750066567212343, -0.0257556214928627, 0.009180905297398567, 0.002078550634905696, -0.004855065140873194, 0.015830732882022858, -0.002026778645813465, -0.007274927571415901, -0.020095214247703552, 0.0003619247581809759, 0.006638323422521353, -0.006277836859226227, 0.008766728453338146, 0.0004237635585013777, 0.006435070186853409, 0.007838667370378971, 0.008045755326747894, -0.016536366194486618, -0.005668077617883682, 0.03014282137155533, 0.020432690158486366, 0.012509654276072979, -0.01825443096458912, -0.0035032399464398623, 0.007696773856878281, -0.000509091536514461, 0.010776249691843987, -0.014641894027590752, -0.001293341745622456, -0.015393547713756561, -0.02460513263940811, -0.014864321798086166, 0.012517323717474937, -0.0447310246527195, -0.03319545090198517, 0.006596138700842857, -0.0051465220749378204, -0.003018117044121027, 0.0038829015102237463, 0.007861677557229996, 0.003184937871992588, 0.019957154989242554, -0.0015205633826553822, 0.013905581086874008, 0.005460989195853472, 0.019895795732736588, -0.002596270991489291, -0.01776355504989624, -0.0028052765410393476, -0.003252049908041954, 0.014703253284096718, 0.010730230249464512, 0.011328484863042831, 0.02563290297985077, -0.022058716043829918, -0.005503173917531967, 0.014756943099200726, -0.004851229954510927, 0.014258397743105888, 0.013667813502252102, 0.005967204924672842, 0.027979901060461998, -0.01971171796321869, -0.0015157697489485145, -0.004759191069751978, -0.005928854923695326, -0.016996562480926514, 0.009549061767756939, -0.009825179353356361, 0.0023642554879188538, 0.004256810527294874, 0.005012298468500376, -2.6080753741553053e-05, -0.005545358639210463, -0.0032501323148608208, 0.008996826596558094, 0.012041788548231125, 0.01724199950695038, -0.0035971966572105885, -0.011520233005285263, 0.01469558384269476, 0.007462840992957354, -0.01797831431031227, 0.011834700591862202, 0.009618090465664864, -0.022595610469579697, -0.0007296020048670471, 0.007900026626884937, 0.020294632762670517, -0.024819890037178993, -0.0016250661574304104, 0.0004681053396780044, -0.00010108726564794779, 0.02006453461945057, 0.010668870992958546, 0.01837714947760105, 0.007811822462826967, -0.005641232710331678, 0.005365115124732256, 0.0056143878027796745, -0.028869612142443657, 0.00722507294267416, 0.019957154989242554, 0.0034648904111236334, 0.007976725697517395, 0.02098492532968521, -0.00878973864018917, 0.0016001389594748616, -0.02116900309920311, -0.0018379066605120897, 0.004026712849736214, -0.01033906452357769, 0.01349907461553812, -0.0016883431235328317, -0.009341973811388016, 0.018193071708083153, 0.002189764752984047, -0.007620074320584536, 0.014043639414012432, -0.013928591273725033, 0.008989157155156136, 0.01367548294365406, 0.0016423235647380352, 0.006170457694679499, 0.0013115578331053257, -0.008521291427314281, -0.023623380810022354, 0.008068765513598919, 0.0026096932124346495, 0.008053425699472427, 0.007432160899043083, -0.0009563442436046898, 0.015056070871651173, 0.010469453409314156, -0.0056604077108204365, -0.014526844955980778, -0.002118817763403058, -0.015938112512230873, -0.011060037650167942, 0.008168473839759827, 0.010814599692821503, -0.027780482545495033, 0.007255752570927143, -0.002362338127568364, 0.0022530416026711464, -0.01626024954020977, 0.01992647536098957, -0.006339196115732193, 0.013376356102526188, 0.012501983903348446, 0.02756572514772415, 0.00817614421248436, -0.03138535097241402, 0.022702990099787712, 0.0006811855710111558, -0.007409151177853346, -0.013506744988262653, -0.0007319988217204809, 0.015194129198789597, -0.004011373035609722, -0.006300846580415964, -0.013683153316378593, 0.011612272821366787, -0.0026557128876447678, -0.007669928949326277, -0.0075893946923315525, 0.0034610554575920105, 0.01237159501761198, 0.01621422916650772, 0.022856388241052628, -0.016490347683429718, 0.016766464337706566, 0.00562205770984292, 0.00905818585306406, -0.002878140890970826, 0.03267389535903931, 0.006504099816083908, -0.012471304275095463, -0.011152076534926891, 0.003942343406379223, 0.01234858576208353, -0.02859349548816681, 0.007761968299746513, -0.018453849479556084, 0.013353345915675163, -0.007363131735473871, -0.004977783653885126, 0.0012406109599396586, 0.009357313625514507, -0.010592171922326088, 0.021368421614170074, -0.019558317959308624, -0.0007516530458815396, -0.00023896622587926686, -0.026215817779302597, -0.017288019880652428, -0.0033057392574846745, -0.017441418021917343, 0.000621264218352735, -0.008298862725496292, -0.004463898483663797, -0.002943335333839059, -0.006649828515946865, 0.04255276545882225, -0.00799973588436842, -0.01566966436803341, -0.008690029382705688, 0.02098492532968521, 0.018361810594797134, 0.01785559393465519, -0.002270299009978771, 0.0005148439668118954, -0.005472494289278984, -0.012379265390336514, -0.0036470512859523296, -0.012118487618863583, 0.00976381916552782, -0.004153266549110413, 0.012985189445316792, -0.026568634435534477, 0.013974610716104507, 8.341047941939905e-05, -0.00870536919683218, 0.0021705899853259325, -0.0039883628487586975, 0.006335361395031214, 0.00039068699697963893, 0.001255950890481472, -0.012034118175506592, -0.004578947555273771, 0.01621422916650772, 0.022426871582865715, -0.006596138700842857, 0.00019582286768127233, 0.011029358021914959, -0.01785559393465519, -0.0035358371678739786, -0.0035569295287132263, -0.019450940191745758, 0.01825443096458912, -0.025264745578169823, -0.0033670987468212843, 0.0013930508866906166, 0.013997619971632957, -0.003510909853503108, 0.008360222913324833, -0.0011015934869647026, 0.02093890681862831, -0.014327427372336388, 0.021935997530817986, 0.0003638422640506178, -0.011589262634515762, 0.016827823594212532, -0.015416556969285011, -0.01900608465075493, 0.011527903378009796, -0.004816715139895678, -0.026676012203097343, -0.014749273657798767, 0.033962443470954895, -0.03491351753473282, -0.006853081285953522, 0.027243588119745255, -0.018315790221095085, -0.014818302355706692, -0.005069823004305363, 0.007543375249952078, 0.013353345915675163, 0.010323724709451199, 0.012026448734104633, 0.01000925712287426, -0.003000859636813402, -0.016229569911956787, 0.001595345209352672, 0.013529754243791103, 0.011320815421640873, 0.0011830865405499935, -0.010776249691843987, -0.008482941426336765, -0.009771489538252354, 0.025310765951871872, 0.027765141800045967, -0.03991430997848511, -0.0005378537462092936, 0.000891149858944118, -0.0047860355116426945, 0.012080137617886066, -0.01727267913520336, 0.007156043779104948, 0.006715022958815098, 0.0030507142655551434, 0.0013901746133342385, -0.00976381916552782, -0.01436577644199133, -0.00031518613104708493, 0.005852155853062868, -0.015416556969285011, 0.001174457836896181, 0.008851097896695137, -0.0021993520203977823, 0.012394605204463005, 0.007409151177853346, -0.007301772478967905, -0.00850595161318779, 0.0012952592223882675, -0.007543375249952078, 0.012563343159854412, 0.033256810158491135, -0.015677334740757942, 0.0129698496311903, 0.016413647681474686, 0.015892092138528824, 0.0072979372926056385, 0.006070748902857304, 0.00043143349466845393, 0.017640836536884308, -0.017073262482881546, 0.017134621739387512, 0.0035799392499029636, -0.0129698496311903, 0.018806666135787964, 0.006212642416357994, 0.010039936751127243, 0.0004376653232611716, -0.01122110616415739, 0.004855065140873194, 0.017288019880652428, 0.013261307030916214, 0.00845993123948574, -0.012187517248094082, 0.027458345517516136, 0.022166093811392784, 0.02532610483467579, 0.012578682973980904, 0.019865116104483604, -0.003035374451428652, 0.01983443647623062, -0.0032884820830076933, 0.026185138151049614, 0.0034629728179425, 0.01757947728037834, 0.007547209970653057, 0.005986379459500313, 0.0074014812707901, -0.016336947679519653, -0.006941285450011492, 0.015516266226768494, 0.005606717895716429, -0.002956757554784417, 0.020570749416947365, 0.0009016960393637419, 0.017288019880652428, 0.006454245187342167, -0.025433484464883804, 0.011650621891021729, -0.011451204307377338, 0.009871198795735836, -0.0009242264204658568, 0.004417879041284323, 0.018760645762085915, 0.008091774769127369, 0.03966887295246124, -0.004038217477500439, 0.024236975237727165, -0.01687384396791458, 0.02142978087067604, -0.015079080127179623, -0.006638323422521353, -0.021843956783413887, -0.013644803315401077, 0.007685268763452768, -0.018361810594797134, 0.012256546877324581, -0.012540333904325962, -0.000398836302338168, 0.01727267913520336, 0.0030507142655551434, 0.008229834027588367, -0.011980429291725159, -0.008605659939348698, -0.0038292119279503822, -0.003058384172618389, 0.02518804743885994, -0.009426342323422432, -0.01856122724711895, -0.0075126951560378075, 0.00725958775728941, -0.006415895652025938, 0.0004419796459842473, 0.015500926412642002, -0.004345014691352844, 0.0023297409061342478, 0.02178259752690792, -0.0007626785663887858, -0.010707220993936062, -0.008183814585208893, 0.0075203655287623405, 0.005012298468500376, 0.009441682137548923, -0.02165987901389599, 0.0036719783674925566, 0.013514414429664612, 1.865051126515027e-05, 0.013621794059872627, -0.00861333031207323, -0.00905818585306406, -0.004801375325769186, 0.008375562727451324, 0.022380853071808815, -0.008828088641166687, 0.01701190322637558, 0.0016682095592841506, -0.02664533257484436, 0.01869928650557995, -0.00878973864018917, -0.00799973588436842, 0.00622031232342124, 0.007570219691842794, -0.019957154989242554, 0.0017899696249514818, 9.946939098881558e-05, -0.02098492532968521, -0.0202332716435194, -0.01896006427705288, -0.006358371116220951, -0.004237635526806116, 0.004609627183526754, 0.013015869073569775, -0.006745702587068081, 0.004241470713168383, -0.012241206131875515, 0.004924094304442406, -0.014994710683822632, -0.00032285606721416116, 0.0025234066415578127, 0.015270828269422054, -0.0025253240019083023, -0.005702591966837645, -0.008835758082568645, 0.009694790467619896, 0.010016927495598793, 0.011182756163179874, -0.02041735127568245, -0.0029471702873706818, -0.008690029382705688, -0.003349841572344303, 0.01166596170514822, -0.006227982230484486, -0.020586088299751282, 0.021445121616125107, 0.014128008857369423, 0.018668606877326965, -0.011481883935630322, 0.007075509522110224, 0.006948955822736025, -0.010415763594210148, -0.02492726966738701, 0.008582650683820248, -7.196550723165274e-05, -0.026001058518886566, 0.008298862725496292, 0.0024773869663476944, -0.04218460991978645, -0.005641232710331678, -0.006435070186853409, 0.006250991951674223, 0.0032788945827633142, 0.024052897468209267, -0.009495371952652931, 0.009280613623559475, -0.010776249691843987, -0.0021993520203977823, -0.002162919845432043, -0.021889977157115936, 0.01811637170612812, -0.015600635670125484, 0.012854800559580326, -0.0005901051335968077, -0.002590518444776535, 0.013253637589514256, -0.0439947135746479, 0.001905018580146134, 0.0047860355116426945, -0.009464692324399948, -0.023500662297010422, -1.623867683520075e-05, -0.005648902617394924, 0.01402829959988594, -0.016597725450992584, 0.002203186973929405, 0.0038253769744187593, 0.012555673718452454, -0.02624649740755558, -0.005886670667678118, 0.017334040254354477, -0.014657233841717243, 0.007738958112895489, 0.01191139966249466, -0.0010268117766827345, -0.012992859818041325, -0.02704416960477829, 0.007236578036099672, -0.026307856664061546, -0.008306533098220825, 0.010461783036589622, -0.003079476533457637, -0.004939434118568897, -1.6942753063631244e-05, 0.0036585561465471983, -0.005809971131384373, -0.029268449172377586, -0.009380322881042957, 0.004843560047447681, -0.02920708991587162, 0.0028877281583845615, 0.0023853478487581015, -0.012156837619841099, -0.0012501984601840377, 0.012831791304051876, -0.024144936352968216, -0.011251785792410374, -0.029682625085115433, -0.017257340252399445, -0.011359164491295815, -0.011650621891021729, 0.006596138700842857, -0.0047285109758377075, 0.0019769242499023676, -0.011320815421640873, 0.028532136231660843, 0.003608701517805457, 0.003184937871992588, -0.004260645713657141, 0.000211402410059236, -0.0016049325931817293, 0.001354701234959066, -0.014304417185485363, -0.013491405174136162, -0.025126686319708824, 0.02673737145960331, -0.002268381416797638, -0.016290929168462753, -0.0025214890483766794, -0.002924160333350301, -0.004360354505479336, -0.01131314504891634, 0.013314996846020222, 0.015592965297400951, -0.006047739181667566, -0.0032712246757000685, 0.0101856654509902, -0.01071489043533802, 0.006542449351400137, 0.01607617177069187, 0.0013700410490855575, 0.0012751256581395864, 0.008229834027588367, -0.008076434955000877, -0.008122454397380352, 0.009748479351401329, -0.008574980311095715, 0.0023642554879188538, 0.007854007184505463, -0.022917747497558594, -0.040282465517520905, -0.0005872289184480906, 0.004091907292604446, 0.012540333904325962, -0.01000925712287426, -0.013943931087851524, 0.01469558384269476, -0.018898705020546913, 0.0022127744741737843, -0.01016265619546175, -0.009878868237137794, 0.006699683144688606, -0.00912721548229456, 0.0006668044370599091, -0.004690161440521479, 0.009464692324399948, 0.002137992763891816, 0.00627400167286396, 0.002511901780962944, 0.012233536690473557, 0.009196245111525059, -0.013130918145179749, 0.00503914337605238, -0.0167051050812006, 0.01199576910585165, -0.005564533639699221, -0.010231684893369675, 0.0032328751403838396, 0.012655382975935936, 0.022702990099787712, -0.011320815421640873, -0.019895795732736588, -0.0222274549305439, -0.013752182945609093, -0.021905317902565002, 0.009687120094895363, -0.0004364668857306242, 0.0008106156019493937, 0.006611478514969349, 0.000558466708753258, -0.01164295244961977, -0.035281673073768616, -0.013437715359032154, -0.01940491981804371, 0.006515604443848133, 0.03690769895911217, 0.01175800058990717, 0.007455171085894108, 0.01988045498728752, 0.006933615542948246, 0.005967204924672842, -0.020263953134417534, -0.010653531178832054, 0.028486115857958794, -0.008245173841714859, 0.008904787711799145, -0.0010316054103896022, -0.016060831025242805, 0.0024793045595288277, 0.012333245947957039, 0.016060831025242805, -0.00627400167286396, 0.0006524233031086624, 0.0013575773919001222, 0.0018752976320683956, -0.018147051334381104, 0.02328590489923954, 0.025372125208377838, -0.0006318103987723589, 0.02774980291724205, -0.002661465434357524, -0.012985189445316792, 0.004061227198690176, -0.005250066518783569, -0.0018033920787274837, 0.0017516199732199311, -0.0005690128309652209, -0.008736048825085163, 0.01868394762277603, -0.013966940343379974, -0.005591378081589937, 0.01837714947760105, -0.015477916225790977, -0.021107643842697144, 0.0024927270133048296, -0.01905210316181183, -0.02373076044023037, 0.007044829893857241, -0.009426342323422432, -0.002644208027049899, 0.005986379459500313, -0.0023508332669734955, 0.018315790221095085, -0.00435268459841609, -0.0014131844509392977, 8.820418588584289e-05, -0.011412854306399822, 0.008007406257092953, 0.0004304747562855482, 0.011351495049893856, -0.03181486576795578, 0.002678722608834505, 0.01644432730972767, -0.007819492369890213, 0.012847131118178368, -0.015393547713756561, 0.004958609119057655, -0.011550912633538246, -0.017886273562908173, 0.002657630480825901, 0.016628405079245567, -0.012287226505577564, 0.0006471502711065114, -0.0014745438238605857, 0.01259402371942997, -0.002697897609323263, -0.005556863732635975, 0.019328221678733826, -0.009019836783409119, 0.006941285450011492, 0.015876753255724907, -0.0022933087311685085, -0.00474001606926322, 0.002114982809871435, -0.01635228842496872, -0.0027592568658292294, 0.015968792140483856, -0.008582650683820248, -0.014864321798086166, 0.006492594722658396, -0.012011108919978142, -0.008736048825085163, 0.01566966436803341, 0.005886670667678118, 0.0129008200019598, 0.012601693160831928, 0.005434144753962755, -0.01727267913520336, -0.005230891518294811, -0.010576832108199596, 0.013583444058895111, 0.007727453485131264, -0.009012166410684586, -0.006987305358052254, -0.01241761539131403, -0.0004796102293767035, -0.011765670962631702, 0.006293176673352718, 0.031569428741931915, 0.025479502975940704, -0.008989157155156136, 0.012755092233419418, -0.008820418268442154, -0.007317112293094397, -0.016996562480926514, 0.025694262236356735, -0.004525258205831051, -0.004080402199178934, -0.013222957029938698, 0.01217217743396759, -0.013284317217767239, -0.004855065140873194, -0.011566252447664738, -0.01009362656623125, -0.003472560318186879, -0.03632478415966034, -0.00014057541557122022, 0.0018781737890094519, 0.012847131118178368, -0.011619942262768745, 0.0014975536614656448, 0.0013767522759735584, -0.004042052663862705, 0.012578682973980904, -0.0006624900852330029, -0.00021343973639886826, -0.007869346998631954, -0.014549855142831802, -0.016106851398944855, -0.017027242109179497, 0.03150806948542595, 0.01252499409019947, 0.012072468176484108, 0.010645861737430096, 0.00938799325376749, -0.02394551783800125, -0.002371925627812743, 0.0019126884872093797, -0.00122910609934479, 0.008720709010958672, -0.01612219028174877, 0.003000859636813402, 0.016428988426923752, -0.02368474006652832, -0.012325575575232506, -0.00019210774917155504, -0.001416060607880354, 0.010875958949327469, 0.02288706786930561, 0.024098915979266167, 0.0050966679118573666, -0.002594353398308158, -0.007205898407846689, -0.0083525525406003, -0.003493652679026127, -0.002040201099589467, -0.014457816258072853, 0.018530547618865967, 0.019236180931329727, 0.01869928650557995, -0.006534779444336891, 0.005261571146547794, 0.010147316381335258, 0.004973948933184147, -0.00033939434797503054, 0.00122910609934479, -0.011198095977306366, -0.020831527188420296, -0.010032267309725285, 0.0031312485225498676, -0.006991140078753233, 0.01427373755723238, -0.004789870698004961, 0.012586353346705437, -0.016674425452947617, 0.013414706103503704, -0.009257604368031025, -0.0041225869208574295, 0.0020632108207792044, 0.007251917850226164, 0.00043239223305135965, -0.004448558669537306, 0.024006877094507217, 0.012425284832715988, 0.020570749416947365, -0.04172441363334656, 0.003894406370818615, -0.0101166358217597, 0.0073746368288993835, -0.020171912387013435, -0.018193071708083153, 0.019098123535513878, -0.003194525372236967, 0.005802301224321127, 0.015194129198789597, 0.0012885481119155884, 0.010085956193506718, 0.015362868085503578, 0.0029145730659365654, -0.015171119011938572, -0.009901878423988819, -0.003510909853503108, 0.011175086721777916, -0.005115842446684837, -0.023669401183724403, 0.0205554086714983, 0.0047170063480734825, 0.012455964460968971, 0.012586353346705437, 0.007650753948837519, 0.009641100652515888, -0.015263158828020096, 0.005319095682352781, 0.009349643252789974, -0.003683483460918069, -0.006941285450011492, -0.0013527837581932545, -0.030879134312272072, 0.015355197712779045, 0.005599047988653183, -0.009694790467619896, -0.041294898837804794, 0.02439037337899208, -0.015094419941306114, 0.03383972495794296, 0.01975773647427559, 0.01332266628742218, 0.012340915389358997, 0.022610951215028763, -0.012962180189788342, 0.01389791164547205, 0.0029088205192238092, -0.006170457694679499, 0.009901878423988819, 0.006496429909020662, -0.0032232876401394606, -0.008114784955978394, -0.014611214399337769, -0.012317906133830547, 0.013629463501274586, 0.006473420187830925, -0.0026192807126790285, -0.01776355504989624, -0.0110677070915699, 0.0008643051260150969, -0.007750463206321001, 0.03199894353747368, -0.008697699755430222, 0.0015675417380407453, 0.005100502632558346, -0.0013144341064617038, 0.01382888201624155, 0.02337794378399849, -0.01926686055958271, -0.00868235994130373, -0.005088998004794121, -0.009341973811388016, 0.0075318701565265656, 0.00014932392514310777, -0.007650753948837519, -0.02046336978673935, 0.009295953437685966, 0.00790769699960947, -0.00014069526514504105, 0.021445121616125107, 0.0030871464405208826, 0.01365247368812561, 0.016106851398944855, 0.03233642131090164, -0.0024217800237238407, 0.014327427372336388, -0.004697831347584724, -0.018269769847393036, 0.0102546950802207, 0.0032673897221684456, -0.010576832108199596, 0.009272944182157516, 0.003472560318186879, 0.009625760838389397, -0.016674425452947617, 0.011175086721777916, -0.0037601827643811703, 0.00465181190520525, -0.01329965703189373, -0.0029395001474767923, 0.00613210815936327, -0.0015387794701382518, -0.01607617177069187, 0.007742793299257755, 0.007631579414010048, -0.009157895110547543, -0.01425072830170393, -0.0034553029108792543, 0.004609627183526754, -0.005974874831736088, 0.006078418809920549, -0.00016250662156380713, 0.0025042318738996983, -0.018131712451577187, 0.02161386050283909, -0.007727453485131264, -0.002228114288300276, 0.032857976853847504, 0.010814599692821503, 0.00905818585306406, 0.009618090465664864, 0.012977520003914833, 0.008720709010958672, -0.0083525525406003, -0.007294102571904659, 0.013560433872044086, -0.006350701209157705, -0.004084236919879913, 0.013867231085896492, -0.01612219028174877, 0.007332452107220888, -0.00024447898613289, -0.008820418268442154, -0.006807061843574047, 0.002970180008560419, 0.00435268459841609, -0.0027611744590103626, -0.0010766662890091538, 0.004663316998630762, -0.010630521923303604, -0.0064120604656636715, -0.0015157697489485145, 0.015178789384663105, 0.013660143129527569, -0.017349379137158394, -0.012916160747408867, 0.022687649354338646, 0.0011274795979261398, -0.0041417614556849, 0.00980983953922987, 0.0017305277287960052, -0.023454641923308372, -0.0035128274466842413, -0.0017640836304053664, 0.0011706228833645582, 0.005288416054099798, 0.01722666062414646, 0.008828088641166687, 9.28181252675131e-05, 0.0007607610896229744, 0.012870140373706818, 0.004763025790452957, 0.018607247620821, 0.0016921780770644546, 0.011052367277443409, 0.0010891299461945891, 0.005898175295442343, 0.015608305111527443, -0.003470642725005746, -0.006715022958815098, -0.009142555296421051, 0.007769638206809759, 0.015523936599493027, 0.00248505687341094, -0.006998809985816479, -0.008137794211506844, -0.005721766967326403, -0.005430309567600489, 0.004690161440521479, -0.002924160333350301, -0.004820550326257944, 0.006964295636862516, -0.017840255051851273, 0.024865910410881042, 0.010131976567208767, -0.009909547865390778, -0.004433218855410814, 0.0015013886149972677, 0.002550251316279173, 0.007378471549600363, -0.017441418021917343, 0.017962973564863205, 0.007877017371356487, -0.007497355341911316, -0.01166596170514822, -0.024068236351013184, 0.012831791304051876, -0.0120878079906106, -0.0028263689018785954, 0.006722692865878344, 0.005813806317746639, -0.012118487618863583, 0.006948955822736025, -0.0332261323928833, -0.010308384895324707, -0.01868394762277603, -0.014941021800041199, -0.017778895795345306, 0.005000793840736151, -0.00047649434418417513, -0.028041260316967964, -0.019297542050480843, 0.016137531027197838, -0.0013230626937001944, 0.030909813940525055, -0.005234726704657078, -0.004693996626883745, -0.0015186459058895707, -0.0017870934680104256, 0.013100238516926765, -0.01226421631872654, 0.014964031055569649, 0.007397646550089121, -0.004095742013305426, -0.013598783873021603, 0.004647976718842983, 0.01581539399921894, -0.007807987742125988, -0.028424756601452827, 0.005786961410194635, 0.02474319003522396, -0.003422705689445138, -0.004015207756310701, 0.025387464091181755, -0.012149167247116566, 0.0007003603968769312, -0.019420260563492775, -0.004003703128546476, -0.005238561425358057, 0.017840255051851273, -0.0029069031588733196, -0.018177730962634087, 0.02810261957347393, -0.001422771834768355, -0.0038675616960972548, 0.004709336441010237, 8.215213165385649e-05, -0.013782862573862076, 0.013667813502252102, 0.009364983066916466, 0.005618222989141941, -0.006619148887693882, 0.003484065178781748, 0.01435810700058937, -0.005085162818431854, 0.0017334038857370615, -0.008099445141851902, -0.0023067311849445105, -0.026798732578754425, 0.007631579414010048, 0.01027003489434719, 0.01237159501761198, -0.005319095682352781, 0.005395795218646526, -0.005112007725983858, 0.00456360774114728, 0.010661201551556587, 0.013268977403640747, -0.028179319575428963, -0.01382888201624155, 0.00011960295523749664, -0.009549061767756939, 0.0016116438200697303, -0.024467073380947113, 0.02532610483467579, -0.0120878079906106, 0.005399629939347506, 0.00660764379426837, 0.027013489976525307, -0.01825443096458912, -0.0034514679573476315, -0.00016502331709489226, 0.016428988426923752, 0.002189764752984047, -0.013238297775387764, 0.0032002779189497232, 0.030434278771281242, 0.023439303040504456, 0.006346866022795439, 0.002406440209597349, 0.01089129876345396, -0.012118487618863583, 0.0035415897145867348, -0.0008556764223612845, -0.018407829105854034, 0.010661201551556587, -0.011075377464294434, -0.009357313625514507, 0.0072404127568006516, -0.029237769544124603, -0.0052922507748007774, -0.004517588298767805, 0.002379595534875989, 0.004099577199667692, 0.004847395233809948, 0.00810711458325386, -0.008835758082568645, 0.0010258529800921679, 0.020217932760715485, 0.004939434118568897, 0.0518793985247612, 0.002730494597926736, 0.018177730962634087, -0.013291986659169197, 0.006868421565741301, -0.01794763281941414, 0.0018522877944633365, -0.01420470792800188, -0.014887331984937191, -0.013660143129527569, 0.012601693160831928, 0.00139209209010005, 0.01948161981999874, 0.024911928921937943, -0.001130355754867196, 0.0010948823764920235, 0.005372785031795502, -0.010561492294073105, 0.0013537424383684993, 0.012939170002937317, -0.004621132276952267, 0.009855858981609344, -0.011190426535904408, -0.013782862573862076, 0.013031208887696266, 0.014933351427316666, 0.0110677070915699, -0.009341973811388016, 0.005499339196830988, 0.0016145200934261084, 0.019957154989242554, -0.009226924739778042, -0.030925152823328972, 0.013859561644494534, 0.01086828950792551, 0.0034092834684997797, 0.00965644046664238, 0.019159482792019844, 0.0017803822411224246, -0.01010129600763321, -0.01931288093328476, -0.00595569983124733, 0.003415035782381892, 0.007236578036099672, -0.008252843283116817, -0.004042052663862705, 0.00859799049794674, 0.004506083205342293, -0.01616821065545082, 0.004647976718842983, 0.007604734506458044, -0.01607617177069187, -0.03301137313246727, -0.01767151616513729, -0.005085162818431854, 0.01988045498728752, 0.004379529505968094, -0.017932293936610222, -0.009157895110547543, -0.020079873502254486, -0.005062153097242117, 0.0018081857124343514, 0.006086088716983795, 0.010592171922326088, -0.019496958702802658, 0.01036207377910614, 0.001961584435775876, 0.012831791304051876, 0.007765803020447493, -0.0012013026280328631, 0.024282995611429214, -0.004444723948836327, -0.01679714396595955, -0.02448241226375103, -0.013629463501274586, -0.026047078892588615, -0.028624175116419792, -0.0016576633788645267, -0.011926739476621151, 0.005940360017120838, 0.0028934807050973177, -0.01687384396791458, -0.013276646845042706, -0.013291986659169197, -0.01896006427705288, 0.003158093197271228, -0.009572071023285389, 0.00980983953922987, 0.013207617215812206, -0.0013115578331053257, 0.0037352554500102997, -0.017610156908631325, -0.02567892149090767, 0.0027822668198496103, 0.024405714124441147, -0.01339169591665268, -0.004498413298279047, -0.011152076534926891, -0.0018714626785367727, 0.0184231698513031, 0.0066344887018203735, 0.010070616379380226, -0.01288548018783331, 0.010791590437293053, 0.003405448514968157, -0.010177996009588242, -0.0221354141831398, -0.00518103688955307, -0.0018666689284145832, 0.021000266075134277, -0.008582650683820248, 0.008651679381728172, -0.00022614306362811476, 0.022902408614754677, 0.003163845743983984, 0.01626024954020977, 0.014089659787714481, 0.011006347835063934, 0.0026902274694293737, 0.013353345915675163, -0.0129008200019598, 0.005740941967815161, 0.04015974700450897, 0.008843428455293179, -0.012379265390336514, 0.013445385731756687, 0.009641100652515888, 0.0222734734416008, -0.01009362656623125, 0.0006332485354505479, 0.006369875743985176, -0.03035757876932621, -0.00868235994130373, 0.024052897468209267, -0.005330600775778294, 0.004486908204853535, 0.004011373035609722, -0.00328656448982656, 0.006619148887693882, -0.009725470095872879, -0.011827030219137669, 0.01992647536098957, 0.025955040007829666, -0.0003794218064285815, -0.006389050744473934, 0.01191139966249466, -0.019190162420272827, 0.013023539446294308, 0.016827823594212532, 0.0073554618284106255, -0.012241206131875515, -0.005648902617394924, -0.030296219512820244, 0.01550859585404396, -0.012678392231464386, 0.02133774198591709, -0.023930178955197334, 0.012425284832715988, -0.011926739476621151, 0.0030430443584918976, -0.013222957029938698, -0.0005670953541994095, 0.0129008200019598, 0.006258661858737469, -0.00862099975347519, -0.024006877094507217, -0.007662259042263031, 0.02072414755821228, -0.005296085961163044, -0.02969796396791935, -0.007167548406869173, -0.009679450653493404, 0.0020517059601843357, -0.003811954753473401, -0.002325905952602625, 0.009081196039915085, -0.003100568661466241, -2.9945678761578165e-05, -0.01451917551457882, -0.006569294258952141, 0.01820841059088707, 0.0012070550583302975, 0.024804549291729927, 0.009096535854041576, -0.004233800806105137, 0.00683774147182703, -0.01872996613383293, 0.010676541365683079, 0.0018283192766830325, -0.011328484863042831, 0.016428988426923752, 0.023101825267076492, -0.02408357709646225, 0.003890571417286992, -0.019895795732736588, 0.026798732578754425, -0.00215908489190042, 0.0014045557472854853, -0.028271358460187912, -0.013407035730779171, 0.006753372494131327, 0.00722507294267416, -0.019282201305031776, -0.002097725635394454], "24ee9238-b514-455f-a71e-f5eedaef6996": [-0.03523392602801323, -0.032334014773368835, -0.005321337841451168, 0.0069162892177701, -0.05086445063352585, -0.03694487363100052, 0.013027853332459927, 0.04921150207519531, -0.0023380538914352655, 0.03247901052236557, 0.02624420076608658, 0.035349924117326736, 0.00473410589620471, -0.0038315083365887403, 0.031029054895043373, 0.020792366936802864, -0.009917697869241238, 0.011106661520898342, 0.007626767735928297, -0.05434434488415718, 0.06710395961999893, -0.03140604496002197, -0.015021543018519878, 0.027621658518910408, 0.010251187719404697, -0.022981800138950348, -0.0073875249363482, 0.022894803434610367, -0.03729286417365074, -0.027868151664733887, 0.0018169758841395378, 0.027621658518910408, 0.002419613767415285, 0.008815731853246689, 0.021705839782953262, -0.014709802344441414, 0.009997445158660412, 0.00885923020541668, -0.028187140822410583, -0.009011475369334221, -0.025011738762259483, 0.03416096046566963, 0.002602670807391405, 0.002676981035619974, -0.027911650016903877, 0.013085851445794106, 0.01831294223666191, 0.003273275215178728, -0.0022673683706671, -0.009315966628491879, 0.021995829418301582, 0.002370677888393402, -0.004389741457998753, -0.0041649979539215565, 0.05585229769349098, -0.028999116271734238, 0.0020933737978339195, 0.05765024572610855, 0.00013797235442325473, -0.06785793602466583, -0.013760080561041832, 0.011599646881222725, 0.004947974346578121, -0.01174464263021946, 0.021328849717974663, -0.007278778590261936, -0.002517485758289695, 0.0070105367340147495, -0.04393366351723671, 0.007090284023433924, -0.0024033018853515387, -0.012215877883136272, -0.05034246668219566, 0.0010620926041156054, 0.021256351843476295, -0.014586555771529675, 0.010403432883322239, 0.02670818753540516, 0.024968240410089493, -0.01705148071050644, 0.005491707939654589, 0.0009959384333342314, 0.026867682114243507, 0.019168416038155556, 0.05054546147584915, 0.03256600722670555, -0.02206832729279995, -0.062058109790086746, -0.028810622170567513, -0.020806865766644478, 0.009555209428071976, 0.00708665931597352, -0.020995359867811203, 0.0013366780476644635, -0.008416993543505669, -0.003115592524409294, 0.011976635083556175, -0.0016302941367030144, 0.004012752790004015, -0.013745581731200218, 0.006492177490144968, -0.00694891344755888, -0.02370677888393402, 0.017689460888504982, 0.02131435088813305, -0.008496740832924843, 0.026853181421756744, 0.020241383463144302, -0.026650188490748405, 0.009620456956326962, 0.0024069268256425858, -0.03827883303165436, 0.029869090765714645, -0.009663955308496952, -0.051183439791202545, -0.03172503411769867, -0.04059876501560211, -0.0035741410683840513, -0.019429408013820648, -0.04697857052087784, 0.013310594484210014, -0.02053137496113777, 0.016543995589017868, -0.008496740832924843, -0.011425652541220188, 0.012375373393297195, -0.0007856948068365455, 0.02182183600962162, 0.01960340328514576, 0.008895479142665863, -0.003907631151378155, -0.02624420076608658, 0.014499558135867119, -0.0062891836278140545, 0.012034633196890354, 0.026824183762073517, -0.005517081823199987, 0.0628700852394104, -0.0138325784355402, 0.026519691571593285, -0.03320398926734924, -0.039351802319288254, -0.028854120522737503, 0.014934545382857323, 0.024779746308922768, 0.010533928871154785, -0.018530435860157013, 0.037350863218307495, -0.024823244661092758, 0.019385909661650658, -0.06704595685005188, 0.004726856015622616, -0.026693686842918396, 0.0006293714395724237, 0.022329319268465042, -0.03407396376132965, -0.0022383693140000105, 0.02424326166510582, -0.002301804954186082, 0.05492432788014412, -0.0003427786286920309, -0.0613621324300766, -0.03653888776898384, 0.027070675045251846, 0.03282700106501579, 0.02344578690826893, 0.04657258093357086, 0.034421950578689575, -0.015819018706679344, 0.014013823121786118, 0.010396183468401432, 0.00919272005558014, 0.03465394303202629, 0.005397460423409939, -0.0005473583587445319, -0.0034508949611335993, 0.04027977213263512, 0.012737861834466457, 0.04172972962260246, -0.0023960520047694445, -0.008844730444252491, 0.023967770859599113, -0.0027367917355149984, -0.023561783134937286, -0.00423387112095952, 0.030275078490376472, 0.009953946806490421, 0.04242570698261261, 0.008989726193249226, -0.014253065921366215, -0.017732959240674973, -0.0032007775735110044, -0.018109949305653572, 0.020009391009807587, -0.022416317835450172, -0.026302199810743332, 0.0011581522412598133, 0.008242999203503132, 0.002057124860584736, 0.01947290636599064, 0.006814792286604643, -0.052981387823820114, -0.0219088327139616, 0.043701671063899994, -0.023837273940443993, 0.014050072059035301, -0.0033512103836983442, -0.05388035997748375, 0.005147343035787344, -0.03216002136468887, 0.036045901477336884, -0.05150243267416954, 0.00440061604604125, 0.0013457402819767594, -0.006300058215856552, 0.006024566479027271, -0.0042411210015416145, 0.05158942937850952, 0.0012813984649255872, -0.03491493687033653, -0.02332978881895542, 0.016152508556842804, -0.0026389197446405888, -0.02408376708626747, -0.08171951025724411, 0.004357117228209972, -0.02801314741373062, 0.054112352430820465, -0.037930846214294434, -0.012085381895303726, 0.017123978585004807, -0.01417331863194704, 0.0009950322564691305, -0.020763367414474487, -0.0005256090080365539, 0.009656705893576145, 0.041236743330955505, 0.005531581584364176, 0.0014146132161840796, -0.018124448135495186, 0.011809890158474445, 0.029144112020730972, -0.009482711553573608, 0.005908570252358913, 0.007605018559843302, 0.02992708794772625, -0.02286580391228199, 0.06942388415336609, 0.026345698162913322, 0.005821572616696358, -0.011505399830639362, 0.018298443406820297, -0.01742846891283989, 0.0005061252159066498, -0.014688053168356419, 0.03578491136431694, 0.025446726009249687, -0.03708986937999725, 0.017500966787338257, 0.02353278361260891, 0.0034508949611335993, 0.022329319268465042, -0.00875773373991251, -0.00655380031093955, 0.04854452237486839, -0.019574403762817383, 0.0183564405888319, -0.015181037597358227, 0.0017462905962020159, 0.015369531698524952, 0.001903067110106349, -0.005259715020656586, -0.04471663758158684, 0.011309655383229256, 0.017399469390511513, -0.005919444840401411, -0.017413970082998276, -0.01168664451688528, 0.020212383940815926, -0.015456529334187508, -0.02520023286342621, 0.00963495671749115, -0.0024069268256425858, 0.024779746308922768, 0.03485693782567978, 0.008627237752079964, -0.02872362546622753, -0.0036810755264014006, -0.03996078297495842, -0.0015659523196518421, 0.005542456172406673, 0.005437334533780813, 0.0235762819647789, 0.02517123334109783, 0.010040944442152977, 0.02479424513876438, 0.0004748605424538255, 0.002310867188498378, -0.03558191657066345, 0.02491024136543274, 0.016775989904999733, 0.0028111019637435675, 0.000806991069111973, -0.01622500643134117, 0.02086486481130123, -0.03085505962371826, 0.030246078968048096, 0.003382022026926279, -0.02595420926809311, 0.0423097126185894, 0.01542752981185913, -0.0263746976852417, -0.03114505112171173, -0.017993951216340065, 0.00574907474219799, 0.019414909183979034, -0.006996036972850561, -0.018994420766830444, 0.0031935276929289103, -0.018863925710320473, -0.004759480245411396, -0.005324963014572859, -0.061304133385419846, 0.019284412264823914, 0.04486163333058357, -0.05309738218784332, 0.023344289511442184, -0.001613982138223946, -0.04088875651359558, -0.009656705893576145, -0.027070675045251846, -0.011164659634232521, -0.03189902752637863, 0.00890272855758667, -0.033377982676029205, -0.04494863003492355, -0.03926480561494827, -0.050052475184202194, 0.0016737928381189704, -0.013245346955955029, -0.02140134759247303, -0.015688521787524223, 0.03958379477262497, -0.004284619353711605, 0.007539770565927029, 0.0025700468104332685, 0.024112766608595848, 0.009787201881408691, -0.020284881815314293, -0.0017073230119422078, 0.0008332714787684381, -0.004436864983290434, -0.0010267499601468444, -0.006434178911149502, 0.04329568147659302, -0.02541772648692131, -0.023213792592287064, 0.008670736104249954, 0.0016157946083694696, 7.95210144133307e-05, -0.012505869381129742, -0.03964179381728172, -0.020719869062304497, -0.0026316698640584946, 8.161665755324066e-05, -0.000139444979140535, 0.008583738468587399, -0.010671675205230713, -0.014615555293858051, 0.013426590710878372, -0.03946779668331146, 0.01880592666566372, 0.020197885110974312, -0.00863448716700077, -0.02517123334109783, -0.053648367524147034, 0.0276651568710804, -0.0009243468521162868, -0.01202013436704874, 0.017660461366176605, 0.013803579844534397, -0.0013801767490804195, -0.013760080561041832, 0.008242999203503132, 0.026258699595928192, 0.018124448135495186, 0.011693893931806087, -0.0027766653802245855, -0.021125856786966324, -0.032334014773368835, -0.025272730737924576, 0.015688521787524223, -0.02859312854707241, -0.004458614159375429, -0.024098265916109085, -0.03903281316161156, -0.0013711145147681236, -0.02641819603741169, 0.007180906366556883, -0.028100144118070602, -0.004030877258628607, 0.002203932963311672, 0.006049940828233957, 0.013528088107705116, 0.008221250027418137, -0.04773254692554474, 0.010396183468401432, -0.0074237738735973835, 0.027157673612236977, -0.00019472453277558088, 0.023764776065945625, -0.0034382077865302563, 0.014427060261368752, 0.02912961319088936, 0.04552861303091049, 0.017457468435168266, -0.018878424540162086, 0.033667974174022675, -0.04071475937962532, -0.007597768679261208, -0.0028600378427654505, 0.03549491986632347, 0.003545142011716962, 0.021009860560297966, -0.010367183946073055, 0.01922641508281231, 0.011505399830639362, 0.013238096609711647, -0.007405649404972792, -0.01062092650681734, 0.012223128229379654, 0.0535033717751503, 0.008714234456419945, 0.007822511717677116, -0.016413500532507896, -0.012882857583463192, 0.012324624694883823, 0.007481771986931562, 0.007014161441475153, 0.00917822029441595, -0.0009479086147621274, -0.0168484877794981, -0.017283473163843155, 0.005832447204738855, -0.019385909661650658, -0.03245001286268234, -0.057244256138801575, 0.00017750631377566606, 0.013883327133953571, -0.012592867016792297, -0.007750013843178749, 0.02031388133764267, -0.028694625943899155, 0.006169562228024006, -0.00806900393217802, 0.019168416038155556, 0.002020875923335552, -0.004770354833453894, 0.006658922415226698, -0.03227601572871208, -0.03819183632731438, -0.010033694095909595, 0.007431023754179478, -0.0021586217917501926, -0.0032134647481143475, -0.03314599022269249, 0.006796667817980051, 0.01822594553232193, 0.0046797324903309345, -0.002057124860584736, 0.0126218656077981, -0.011976635083556175, 0.015137539245188236, 0.04506462812423706, 0.008873729966580868, 0.002258306136354804, -0.01906691864132881, -0.012157879769802094, 0.023271791636943817, -6.320901593426242e-05, -0.03740886226296425, -0.025867212563753128, -0.010983415879309177, 0.020081888884305954, 0.003579578595235944, 0.008873729966580868, -0.02224232256412506, -0.015645023435354233, -0.006368930917233229, 0.0104686813428998, 0.032537009567022324, -0.00028727250173687935, -0.0157175213098526, 0.018863925710320473, 0.005571455229073763, -0.027694156393408775, 0.0008713328279554844, -0.029042616486549377, -0.026490693911910057, -0.04410765692591667, 0.0497334860265255, -0.009141971357166767, 0.004712356720119715, 0.020574873313307762, -0.020429877564311028, 0.026896681636571884, -0.013158349320292473, 0.01747196726500988, -0.00268604326993227, -0.013934075832366943, -0.037640854716300964, 0.03949679806828499, -0.024808743968605995, 0.030652066692709923, 0.007333151530474424, 0.016500497236847878, -0.005999192129820585, 0.0061768121086061, 0.052517399191856384, -0.00930146686732769, -0.012629115022718906, -0.005462708882987499, -0.011708393692970276, -0.002896286780014634, -0.03436395525932312, -0.015152039006352425, -0.015833517536520958, -0.028274139389395714, 0.03178303316235542, -0.028187140822410583, -0.006379805970937014, 0.025316229090094566, -0.02299629896879196, 0.013658584095537663, 0.012614616192877293, -0.01818244718015194, -0.005085720214992762, -0.0029379730112850666, -0.014311064034700394, -0.005451833829283714, -0.023097796365618706, 0.021328849717974663, 0.003041282296180725, -0.016152508556842804, -0.001579545671120286, 0.0486605167388916, -0.04697857052087784, 0.012607365846633911, -0.006488552317023277, 0.020705370232462883, -0.019371410831809044, 0.017906954512000084, -0.02984009124338627, -0.015369531698524952, 0.011592397466301918, -0.02570771798491478, 0.004139624070376158, -0.020763367414474487, -0.017863456159830093, -0.01726897433400154, -0.015514527447521687, 0.013209098018705845, -0.0020408127456903458, 0.004639858845621347, -0.022923801094293594, 0.006698796059936285, -0.021836334839463234, 0.02888312004506588, -0.007467272691428661, 0.021227354183793068, 0.04953049123287201, 0.003372959792613983, 0.039728790521621704, 0.0034762690775096416, 0.0037553857546299696, 0.05219841003417969, 0.0013683958677574992, 0.009149221703410149, -0.04854452237486839, -0.01368758361786604, 0.04494863003492355, -0.016703492030501366, 0.007757263723760843, -0.006452303379774094, 0.00942471344023943, 0.012194128707051277, 0.0007054941379465163, -0.01906691864132881, 0.02044437825679779, 0.02868012711405754, 0.0027386040892452, 0.02424326166510582, 0.005517081823199987, -0.0024975489359349012, -0.035378921777009964, 0.013042353093624115, 0.03152203932404518, 0.008112503215670586, 0.014216816984117031, 0.027853650972247124, 0.026360196992754936, 0.02031388133764267, 0.002756728557869792, -0.02082136645913124, -0.03674188256263733, 0.01864643208682537, 0.005368461366742849, 0.022981800138950348, -0.010338185355067253, 0.04648558422923088, 0.008061754517257214, 0.004494863096624613, 0.04602159932255745, -0.0035958904772996902, 0.022793306037783623, -0.01007719337940216, 0.012600116431713104, 0.03256600722670555, 0.006086189765483141, 0.02646169438958168, 0.022010330110788345, -0.03491493687033653, 0.06049215793609619, -0.027273669838905334, 0.006028191652148962, 0.0183564405888319, -0.02537422813475132, -0.0032062148675322533, -0.00591581966727972, -0.004860977176576853, -0.010483181104063988, -0.011324155144393444, -0.0028654751367866993, -0.028491633012890816, 0.013767330907285213, -0.029695095494389534, -0.01505054160952568, -0.0038097589276731014, -0.006017316598445177, -0.0005455458885990083, -0.006890915334224701, 0.010229438543319702, -0.0031174051109701395, 0.03636489436030388, -0.017529966309666634, 0.013245346955955029, -0.004139624070376158, 0.010396183468401432, 0.019588904455304146, 0.033551979809999466, -0.01344109047204256, 0.013658584095537663, 0.015195537358522415, 0.018704431131482124, 0.0012234002351760864, -0.023561783134937286, -0.0014363625086843967, 0.014978043735027313, 0.006086189765483141, 0.017790958285331726, 0.036799877882003784, -0.027114175260066986, 0.0023779275361448526, -0.017413970082998276, 0.02683868259191513, 0.0028509756084531546, 0.014499558135867119, 0.015311533585190773, 0.01473155152052641, 0.015297033824026585, 0.0010611864272505045, -0.019864395260810852, 0.02240181714296341, -0.0035850158892571926, 0.0017336034215986729, 0.011722893454134464, -0.006575549952685833, -0.005495332647114992, -0.004741355776786804, -0.015572525560855865, -0.03824983537197113, -0.027694156393408775, -0.016862986609339714, 0.03152203932404518, -0.03334898501634598, -0.01145465113222599, -0.009156471118330956, 0.024315759539604187, -0.031667035073041916, -0.009787201881408691, -0.016080010682344437, 0.025591719895601273, -0.01897992193698883, 0.03352297842502594, 0.004828352946788073, -0.00842424388974905, 0.006053565535694361, -0.021705839782953262, 0.012223128229379654, -0.03740886226296425, -0.04373066872358322, -0.029013616964221, 0.004828352946788073, -0.03998978063464165, 0.025722216814756393, 0.02332978881895542, -0.02863662876188755, -0.023170294240117073, 0.0038568824529647827, -0.0014553931541740894, 0.024547751992940903, -0.0020679994486272335, -0.010729673318564892, 0.04605059698224068, 0.002809289377182722, 0.03334898501634598, -0.023416787385940552, 0.020618371665477753, -0.0173849705606699, 0.03769885376095772, -0.011396653018891811, 0.02073436789214611, -0.031870029866695404, -0.023170294240117073, -0.02228582091629505, 0.024765245616436005, -0.0003706449642777443, -0.0025102361105382442, -0.018660930916666985, -0.004110625013709068, 0.031493041664361954, -0.013760080561041832, -0.002838288666680455, 0.0092579685151577, 0.015036041848361492, -0.016210505738854408, 0.008779482915997505, -0.004650733433663845, 0.035552918910980225, -0.012223128229379654, 0.013622335158288479, -0.014376312494277954, 0.023474784567952156, -0.02164784073829651, 0.007362151052802801, 0.008373495191335678, 0.030797062441706657, 0.0037916344590485096, -0.0032660255674272776, -0.007938507944345474, 0.04204871878027916, -0.021256351843476295, 0.026867682114243507, 0.022169824689626694, -0.02854963019490242, -0.000638886820524931, 0.03155104070901871, 0.010127941146492958, -0.0004938911879435182, 0.013571586459875107, -0.0005305932136252522, 0.018863925710320473, -0.0001922324299812317, -0.00946821179240942, 0.016616493463516235, 0.015935014933347702, 0.020328380167484283, 0.025069735944271088, 0.043324679136276245, 0.024170763790607452, 0.058752212673425674, 0.019835395738482475, 0.03998978063464165, 0.03824983537197113, -0.010765922255814075, -0.06977187842130661, 0.008351746015250683, -0.0009986570803448558, -0.029361605644226074, -0.01183163933455944, -0.011904137209057808, -0.05045846477150917, 0.021792836487293243, -0.01302060391753912, 0.030188079923391342, -0.01771846041083336, 0.04570261016488075, -0.0010666237212717533, -0.013259845785796642, 0.0018414439400658011, 0.024112766608595848, -0.009047724306583405, 0.002196683082729578, 0.02796964906156063, 0.012317375279963017, -0.016703492030501366, 0.011092162691056728, -0.018370941281318665, -0.011396653018891811, 0.011527149006724358, 0.01561602484434843, -0.03245001286268234, 0.03097105771303177, 0.05045846477150917, 0.0035052683670073748, -0.008213999681174755, 0.0005188123323023319, -0.011708393692970276, -0.026113705709576607, 0.021256351843476295, 0.0007770857191644609, -0.02173483744263649, -0.02562071941792965, 0.04106274992227554, -0.0145068084821105, -0.0005088438629172742, 0.0037517608143389225, 0.02408376708626747, 0.014651804231107235, -0.009156471118330956, -0.007974756881594658, 0.00688729016110301, 0.02512773498892784, 0.01423131674528122, 0.0011282468913123012, -0.003079343819990754, 0.021386848762631416, 0.016949983313679695, -0.007771763484925032, -0.01174464263021946, -0.0038278833962976933, 0.003508893074467778, -0.01335409376770258, 0.042947690933942795, -0.002988721476867795, 0.031957026571035385, -0.014767800457775593, -0.0032134647481143475, -0.03967079147696495, 0.03505993261933327, -0.017080480232834816, -0.052807390689849854, -0.016529496759176254, -0.017993951216340065, -0.0030829685274511576, 0.014057322405278683, 0.012781361117959023, 0.01676148921251297, 0.0340159647166729, 0.052517399191856384, 0.035262927412986755, -0.019284412264823914, -0.020676370710134506, -0.00011894169438164681, -0.014572056010365486, 0.019429408013820648, -0.012310124933719635, 0.007829761132597923, -0.00840249378234148, 0.025446726009249687, 0.040482766926288605, 0.017196476459503174, -0.04329568147659302, -0.008844730444252491, -0.02224232256412506, -0.008373495191335678, -0.015790019184350967, 0.013955825008451939, 0.014456059783697128, -0.0017308847745880485, -0.011258907616138458, 0.000979626434855163, 0.012491369619965553, 0.0252437312155962, -0.011469150893390179, -0.022372819483280182, -0.0030775312334299088, 0.015601525083184242, -0.054199349135160446, 0.009823450818657875, 0.0008323653019033372, 0.005524331703782082, -0.012266626581549644, 0.0034454576671123505, -0.033464979380369186, 0.002976034302264452, 0.020661870017647743, -0.00890272855758667, 0.005999192129820585, 0.009359464980661869, 0.007510771509259939, 0.013796329498291016, -0.006988787092268467, -0.019284412264823914, -0.002310867188498378, -0.0036557011771947145, 0.010802171193063259, -0.011715643107891083, 0.005292338784784079, -0.003452707314863801, 0.008337246254086494, -0.028607629239559174, -0.04027977213263512, -0.013876077719032764, 0.049762483686208725, -0.06907589733600616, 0.03236301615834236, 0.013919576071202755, 0.009837950579822063, 0.02617170289158821, 0.0194874070584774, 0.009250718168914318, -0.028245139867067337, -0.014550306834280491, 0.03882981836795807, 0.010765922255814075, 0.002515673404559493, -0.014021073468029499, 0.005089344922453165, -0.007351275999099016, 0.01984989643096924, 0.01444156002253294, 0.03558191657066345, -0.014238566160202026, 0.008409744128584862, -0.005701951216906309, -0.0037118869367986917, -0.02244531735777855, -0.013172849081456661, 0.03178303316235542, -0.008706985041499138, 0.0010874668369069695, -0.0031300922855734825, -0.004752230364829302, 0.015688521787524223, 0.01876242831349373, -0.01947290636599064, -0.013310594484210014, -0.017747459933161736, -0.034885939210653305, -0.0340159647166729, -0.03378397226333618, 0.02779565379023552, -0.019284412264823914, -0.004407865926623344, 0.001382895396091044, 0.00042365898843854666, 0.012513118796050549, -0.033580977469682693, 0.007634017616510391, 0.009787201881408691, 0.02270630933344364, 0.0024757995270192623, 0.0038568824529647827, 0.01166489440947771, 0.005981067661195993, -0.005013222340494394, -0.013803579844534397, 0.004110625013709068, -0.010214938782155514, 0.003378397086635232, -0.006590049248188734, -0.00018758804071694613, 0.015645023435354233, -0.005966568365693092, 0.020705370232462883, -0.039351802319288254, 0.00608256459236145, -0.003628514474257827, -0.009787201881408691, -0.006571924779564142, 0.003010470885783434, -0.020516876131296158, 0.00436799181625247, -0.005912194959819317, -0.010758672840893269, -0.04268670082092285, -0.006296433508396149, -0.016645492985844612, -0.00809075403958559, 0.02699817717075348, -0.02812914364039898, -0.03468294441699982, -0.014767800457775593, -0.003871382214128971, -0.0032932122703641653, -0.035929907113313675, 0.033290985971689224, -0.020835865288972855, 0.008772232569754124, 0.013528088107705116, -0.032537009567022324, -0.017326971516013145, 0.0008590988582000136, 0.016572995111346245, -0.01576101966202259, -0.018066449090838432, -0.03682887926697731, 0.0028980993665754795, -0.03416096046566963, -0.00446223933249712, 0.009410213679075241, -0.01605101116001606, 0.0572732575237751, 0.024591250345110893, 0.011483650654554367, -0.01755896583199501, -0.018254945054650307, 0.007648516912013292, -0.003289587330073118, -0.02557722106575966, -0.02939060516655445, -0.005930319428443909, -0.017703961580991745, -0.000346856628311798, 0.03088405914604664, 0.017457468435168266, -0.022648310288786888, -0.009656705893576145, 0.03540792316198349, -0.021343350410461426, -0.021966831758618355, 0.001418238040059805, -0.008931728079915047, -0.026693686842918396, 0.010367183946073055, 0.006735044997185469, -0.010374434292316437, 0.023010799661278725, -0.0023688653018325567, -0.02754916064441204, -0.011215408332645893, 0.0033276486210525036, -0.020386379212141037, -0.0035596415400505066, -0.0247072484344244, 0.012839359231293201, -0.050980448722839355, -0.021343350410461426, -0.020835865288972855, 0.012607365846633911, 0.0004193544154986739, -0.0006592767895199358, 0.010968916118144989, 0.011983885429799557, -0.017921455204486847, 0.027056176215410233, 0.0022818681318312883, -0.023315289989113808, 0.03001408651471138, 0.033464979380369186, -0.014630054123699665, 0.01091091800481081, -0.006492177490144968, 0.008032754994928837, 0.016109010204672813, -0.007133782841265202, -0.005219840910285711, 0.021343350410461426, 0.01273061241954565, -0.013346843421459198, -0.04242570698261261, 0.04352767392992973, -0.018167946487665176, -0.00885923020541668, -0.021836334839463234, -0.030797062441706657, 0.0037916344590485096, 0.01667449250817299, -0.009011475369334221, 0.008822981268167496, 0.00031287327874451876, 0.01302060391753912, 0.010860169306397438, -0.015558026731014252, 0.036799877882003784, 0.009185470640659332, 0.011005165055394173, 0.029405103996396065, -0.0060064420104026794, -0.018544934689998627, -0.005604079458862543, -0.02897011861205101, -0.008503991179168224, -0.016254005953669548, 0.016964484006166458, 0.01410807017236948, 0.023315289989113808, 0.009874199517071247, -0.00634355703368783, -0.017022481188178062, -0.010765922255814075, 0.006020941771566868, 0.017660461366176605, -0.010983415879309177, 0.015775520354509354, -0.005546081345528364, 0.029013616964221, 0.024678248912096024, 0.0018921924056485295, 0.004599984735250473, -0.02011088840663433, 0.023083297535777092, 0.02366327866911888, 0.018530435860157013, 0.02992708794772625, -0.01771846041083336, 0.006216685753315687, -0.0010611864272505045, -0.004686982370913029, 0.01655849628150463, 0.009533459320664406, 0.031203050166368484, 0.009105722419917583, 0.009120222181081772, -0.001728166127577424, 0.0018686306430026889, -0.02888312004506588, -0.00487185176461935, 0.016268504783511162, -0.0010113442549481988, 0.003722761757671833, -0.02579471468925476, 0.013325094245374203, -0.013528088107705116, -0.011447401717305183, 0.00211693556047976, 0.03282700106501579, 0.00147895491681993, 0.020096387714147568, 0.009953946806490421, -0.0183564405888319, 0.06095614284276962, -0.004875476472079754, -0.0056077041663229465, 0.000765757926274091, -0.005440959241241217, 0.004726856015622616, -0.015949513763189316, 0.02466374821960926, -0.027447665110230446, -0.027897151187062263, -0.007452772930264473, 0.006586424540728331, -0.002446800470352173, -0.02808564528822899, -0.015326033346354961, -0.010591927915811539, -0.004752230364829302, -0.022271322086453438, -0.015253535471856594, -0.01505054160952568, 0.019951391965150833, -0.007043160498142242, -0.007035910617560148, -0.025519223883748055, 0.008750483393669128, -0.001903067110106349, 0.04175872728228569, 0.00027209328254684806, -0.04837052896618843, -0.013223597779870033, 0.0011237157741561532, -0.009185470640659332, -0.022010330110788345, -0.0016746990149840713, 0.028781624510884285, -0.008460492826998234, -0.002595420926809311, -0.004824728239327669, -0.009286967106163502, -0.0020118136890232563, 0.013368592597544193, 0.02959359809756279, -0.023895272985100746, 0.017297973856329918, -0.018501436337828636, 0.026809683069586754, -0.0068365419283509254, -0.007648516912013292, -0.009772702120244503, -0.012629115022718906, 0.009526209905743599, 0.003994628321379423, -0.016036512330174446, 0.015369531698524952, -0.001461736741475761, -0.017906954512000084, 0.014303814619779587, 0.03340698406100273, 0.013035102747380733, -0.021560844033956528, -0.011824389919638634, -0.01842893846333027, -0.002026313217356801, -0.013303345069289207, 0.0006121532642282546, -0.01128790620714426, 0.03436395525932312, 0.010997914709150791, -0.014253065921366215, 0.014978043735027313, -0.003885881742462516, -0.027766654267907143, -0.0088012320920825, -0.0005115625681355596, -0.016152508556842804, -0.012411622330546379, -0.0005478114471770823, -0.024881241843104362, -0.02741866558790207, -0.006716920528560877, -0.01693548448383808, -0.0219088327139616, -0.02854963019490242, 0.0198063962161541, 0.01233187410980463, 0.00014884702977724373, 0.0019157541682943702, -0.007021411322057247, 0.010794920846819878, 0.014804049395024776, 0.003740885993465781, -0.007438273634761572, -0.013629584573209286, 0.0015106727369129658, 0.011229908093810081, 0.03285599872469902, 0.014644553884863853, -0.01596401445567608, -0.0003330367326270789, -0.003517955308780074, 0.001207994413562119, 0.03279799968004227, 0.027810152620077133, -0.011026914231479168, -0.0060064420104026794, -0.017529966309666634, -0.019124917685985565, 0.010229438543319702, 0.010338185355067253, 0.00040304241701960564, -0.004661608021706343, -0.01838544011116028, -0.0009560646140016615, 0.018718929961323738, -0.028520630672574043, 0.007354901172220707, 0.0049950978718698025, 0.017254475504159927, -0.00496247410774231, 0.0024304885882884264, -0.009482711553573608, 0.01605101116001606, -0.003889506682753563, 0.023677779361605644, -0.014448810368776321, 0.04590560123324394, -0.01964690163731575, -0.0021803712006658316, -0.006811167579144239, 0.0021114982664585114, 0.009453712031245232, 0.01709497906267643, -0.04544161632657051, -0.016616493463516235, 0.003023158060386777, 0.006075315177440643, 0.007677516434341669, -0.017370471730828285, -0.016283003613352776, -0.009823450818657875, -0.005328587722033262, 0.02491024136543274, -0.012839359231293201, 0.029985086992383003, 0.0022256821393966675, -0.01676148921251297, -0.02562071941792965, -0.013506338931620121, 0.00312465475872159, 0.0445716418325901, 0.025113236159086227, -0.035842910408973694, -0.00975820329040289, 0.003936630208045244, 0.026345698162913322, 0.01755896583199501, 0.0002684684004634619, -0.010591927915811539, 0.015239035710692406, -0.004425990395247936, 0.0014363625086843967, 0.011983885429799557, 0.010055444203317165, 0.004708731546998024, -0.020951861515641212, 0.0014599242713302374, 0.01352083869278431, 0.0271286740899086, -0.030710065737366676, 0.03578491136431694, -0.002515673404559493, 0.010142440907657146, 0.006829292047768831, 0.0211548563092947, -0.016442500054836273, -0.006666171830147505, -0.002419613767415285, -0.02319929376244545, -0.0020933737978339195, 0.018486937507987022, 0.01117915939539671, 0.003566891420632601, -0.017254475504159927, 0.014920045621693134, -0.00022564937535207719, -0.0071917809545993805, 0.007249779067933559, -0.03558191657066345, 0.030536070466041565, 0.019661400467157364, 0.0028636627830564976, -0.0008690672693774104, -0.01063542626798153, 0.03360997512936592, -0.00975820329040289, 0.014934545382857323, 0.00456736097112298, 0.0007077596965245903, -0.012041883543133736, 0.026345698162913322, -0.029898090288043022, -0.0008210375090129673, 0.00973645318299532, 0.027984147891402245, -0.013252596370875835, 0.01676148921251297, 0.002528360579162836, -0.03949679806828499, -0.016790488734841347, 0.02106785774230957, -0.00028296795790083706, -0.009562458842992783, 0.007634017616510391, 0.002751291263848543, 0.013723832555115223, 0.0017616963014006615, -0.0048972261138260365, -0.007670266553759575, -0.007699265610426664, -0.003215277101844549, 0.0029778468888252974, 0.013673083856701851, 0.0012197754113003612, -0.015239035710692406, -0.04555761441588402, 0.008793982677161694, -0.016456998884677887, 0.035001933574676514, 0.0036738256458193064, -0.0497334860265255, -0.019878894090652466, -0.004915350116789341, -0.011693893931806087, 0.026853181421756744, 0.010860169306397438, -0.007438273634761572, 0.03424795717000961, 0.017239974811673164, -0.004110625013709068, 0.002193058142438531, -0.004016377497464418, -0.009816201403737068, -0.010707924142479897, -0.012658114545047283, 0.00017626026237849146, 0.022097326815128326, 0.01584801822900772, 0.008489491418004036, 0.010591927915811539, 0.015543526969850063, 0.006136937998235226, 0.00336027261801064, 0.028709126636385918, 0.017399469390511513, -0.014572056010365486, -0.0026806059759110212, 0.024431755766272545, 0.00487185176461935, 0.00046443898463621736, 0.016312003135681152, 0.0200238898396492, 0.005727325566112995, 0.02006738819181919, -0.03363897651433945, -0.02315579541027546, -0.014702551998198032, -0.009598707780241966, 0.004694232251495123, 0.00840249378234148, -0.004012752790004015, 0.030043086037039757, 0.02883962169289589, -0.015862517058849335, 0.00658279936760664, -0.011048663407564163, -0.002825601492077112, 0.008938977494835854, -0.02299629896879196, 0.011273406445980072, -0.010113442316651344, 0.012484120205044746, -0.012201378121972084, 0.0013883326901122928, -0.014376312494277954, -0.01609450951218605, -0.004041751846671104, 0.003777134930714965, -0.049849480390548706, -0.01771846041083336, -0.018791427835822105, -0.014347312971949577, -0.020183386281132698, 0.0036937624681741, -0.005517081823199987, -0.00917822029441595, -0.0069017899222671986, -0.008228499442338943, 0.005437334533780813, 0.02277880720794201, -0.003606765065342188, 0.0021821835543960333, -0.03819183632731438, 0.01638450101017952, -0.04674657806754112, 0.0031790281645953655, -0.009294217452406883, 0.008395244367420673, 0.0027857276145368814, 0.011780891567468643, -0.009359464980661869, 0.034885939210653305, 0.00024853149079717696, 0.008156001567840576, 0.004132374189794064, -0.04535461962223053, -0.01587701588869095, 0.02299629896879196, 0.005194467026740313, -0.01784895732998848, -0.03749585896730423, -0.00975820329040289, 0.008373495191335678, 0.0072425296530127525, -0.0064704278483986855, -0.004835602827370167, -0.027955148369073868, -0.017689460888504982, 0.01124440785497427, -0.018254945054650307, -0.01295535545796156, 0.013992073945701122, -0.008199499920010567, -0.01306410226970911, -0.012302875518798828, 0.007909509353339672, -0.015210037119686604, 0.017732959240674973, -0.020850365981459618, 0.006129688583314419, 0.04642758518457413, -0.028665626421570778, 0.017326971516013145, -0.028941119089722633, -0.00711565837264061, -0.016543995589017868, -0.03256600722670555, -0.0022728058975189924, -0.020081888884305954, -0.02361978031694889, -0.0022365569602698088, -0.008583738468587399, 0.024692747741937637, -0.012143380008637905, 0.026432694867253304, 0.028810622170567513, 0.01233187410980463, -0.024692747741937637, 0.026229701936244965, -0.0003518408630043268, 0.013325094245374203, -0.0004216199740767479, -0.0192699134349823, -0.007713764905929565, -0.02939060516655445, 0.03862682357430458, 0.010541179217398167, -0.0032750878017395735, -0.014796799048781395, 0.010338185355067253, -0.03169603645801544, 0.017790958285331726, 0.028767123818397522, -0.028477132320404053, -0.0049950978718698025, -0.008598238229751587, 0.006687921471893787, 0.0010657175444066525, -0.01889292523264885, -0.014978043735027313, 0.011396653018891811, -0.028143642470240593, -0.010388934053480625, -0.0020063763950020075, 0.00728240329772234, -0.027940649539232254, 0.02688218094408512, -0.014978043735027313, -0.012556618079543114, 0.009207219816744328, 0.02231482043862343, -0.007122908253222704, 0.0013149287551641464, -0.01667449250817299, -0.0036629510577768087, 0.04628258943557739, -0.013325094245374203, 0.011599646881222725, -0.02888312004506588, 0.0037263864651322365, 0.013143849559128284, -0.014347312971949577, -0.006713295355439186, -0.020473375916481018, 0.02595420926809311, -0.0011925887083634734, -0.0023090546019375324, -0.021517345681786537, -0.03610390052199364, -0.007028661202639341, 0.008003756403923035, -0.014238566160202026, 0.010207689367234707, 0.01935691013932228, 0.007122908253222704, -0.01289735734462738, -0.018820427358150482, 0.006800292991101742, -0.011048663407564163, 5.627074642688967e-05, -0.019153917208313942, -0.003394709201529622, -0.006256559398025274, -0.010120691731572151, -0.03131904453039169, 0.002682418329641223, -0.011983885429799557, -0.012759611941874027, -0.0055932048708200455, 0.0025229232851415873, 0.008598238229751587, 0.004603609908372164, -0.000988688669167459, 0.007405649404972792, -0.023808274418115616, -0.0030521571170538664, 0.003356647677719593, 0.0034817063715308905, 0.004498487804085016, 0.009315966628491879, 0.009895948693156242, -0.003313149092718959, 4.264909148332663e-05, -0.000945189967751503, -0.0036828878801316023, 0.000746274134144187, -0.0054010855965316296, 0.0003901287564076483, -0.008561989292502403, 0.0021078733261674643, -0.0067024207673966885, 0.06356606632471085, 0.01151264924556017, 0.003050344530493021, -0.011266157031059265, -0.009721954353153706, -0.009663955308496952, -0.010751422494649887, 0.025011738762259483, 0.02311229705810547, -0.008438742719590664, -0.005926694720983505, -0.022561313584446907, -0.0060571907088160515, 0.008047254756093025, -0.020052889361977577, 0.011164659634232521, 0.007271528709679842, 0.018907424062490463, -0.007260654121637344, 0.015398531220853329, 0.0024395508226007223, -0.015137539245188236, -0.02177833765745163, 0.030652066692709923, -0.005027722101658583, 0.019284412264823914, 0.000256007828284055, 0.020748868584632874, 0.0004993285401724279, 0.021517345681786537, -0.0017553528305143118, -0.012904606759548187, -0.02277880720794201, 0.006941663566976786, -0.009721954353153706, 0.015297033824026585, 0.0008192250388674438, 0.008714234456419945, 0.0015596087323501706, 0.0013964887475594878, -0.0024576750583946705, -0.006365306209772825, 0.017660461366176605, 0.034711942076683044, -0.01335409376770258, -0.015485528856515884, 0.009120222181081772, 0.000741743016988039, 0.011548898182809353, -0.011991134844720364, -0.020763367414474487, -0.010570177808403969, -0.006274683866649866, 0.011338654905557632, 0.011548898182809353, -0.0005174530087970197, 0.015311533585190773, 0.012962604872882366, 0.010860169306397438, -0.0007698359549976885, -0.026896681636571884, -0.0029778468888252974, -0.026142703369259834, -0.02533072791993618, -0.012208628468215466, -0.017587965354323387, -0.011258907616138458, -0.013238096609711647, 0.00011582655133679509, -0.0039040062110871077, -0.004117874428629875, 0.007137407548725605, 0.021459346637129784, -0.02315579541027546, -0.003226151689887047, 0.01864643208682537, -0.006579174660146236, 0.029535600915551186, 0.00946821179240942, 0.009330465458333492, 0.002676981035619974, 0.010280187241733074, -0.023837273940443993, -0.009011475369334221, 0.002156809438019991, 0.0012089007068425417, 0.005828822497278452, -0.027389666065573692, 0.013651334680616856, -0.026896681636571884, -0.01278861053287983, 0.0032841500360518694, -0.004244745709002018, 0.005404710303992033, 0.008996975608170033, 0.002749478677287698, -0.0092579685151577, 0.007003286853432655, 0.023605281487107277, -0.013223597779870033, 0.0006506677018478513, 0.01024393830448389, -0.013723832555115223, 0.00517271738499403, 0.01202013436704874, 0.002345303539186716, 0.016210505738854408, 0.00790225900709629, -0.009649456478655338, 0.00223111966624856, -0.010504930280148983, -0.014463309198617935, 0.008772232569754124, 0.013136600144207478, -0.021560844033956528, 0.010454181581735611, 0.013114850968122482, -0.013129349797964096, -0.01629750430583954, -0.02437375858426094, 0.0060716900043189526, -0.011005165055394173, 0.0001224533043568954, -0.0024123641196638346, -0.002187620848417282, 0.007104783784598112, -0.0031010929960757494, -0.013390342704951763, -0.008221250027418137, 0.003171778516843915, -0.0012659926433116198, 0.01007719337940216, 0.012172379530966282, -0.012433371506631374, 0.01349908858537674, 0.00486822659149766, 0.0013801767490804195, -0.02031388133764267, 0.016949983313679695, -0.022503314539790154, 0.008706985041499138, 0.006256559398025274, 0.005060345865786076, 0.029985086992383003, 0.00029814717709086835, 0.020806865766644478, -0.006256559398025274, -0.024736246094107628, -0.003998253028839827, -0.012114381417632103, 0.03752485662698746, -0.04033777117729187, 0.005082095041871071, -0.0007308683707378805, 0.0007952101877890527, 0.010294686071574688, -0.03221802040934563, 0.01902342028915882, -0.012411622330546379, -0.007257028948515654, -0.008815731853246689, -0.010541179217398167, -0.009083973243832588, -0.002017250983044505, -0.01239712256938219, 0.008293747901916504, 0.02311229705810547, 0.025736715644598007, 0.014724302105605602, -0.006271059159189463, -0.004541986621916294, 0.018791427835822105, -0.0008373495074920356, -0.02073436789214611, 0.01984989643096924, -0.00490085082128644, -0.012012884020805359, 0.0074745225720107555, -0.02963709831237793, 0.014224067330360413, 0.005912194959819317, -0.012360873632133007, 0.02082136645913124, 0.0053757112473249435, 0.00990319810807705, -0.014963543973863125, 0.004694232251495123, 0.006097064353525639, -0.013281595893204212, 0.014448810368776321, -0.017109479755163193, -0.0009814389050006866, 0.004375241696834564, 0.003846007864922285, -0.03030407801270485, 0.0005405616830103099, 0.01538403145968914, 0.00990319810807705, 0.012629115022718906, -0.015543526969850063, -0.0004970629815943539, -0.004052626434713602, 0.00027277294429950416, 0.008743233978748322, -0.001457205624319613, -0.020081888884305954, -0.007989256642758846, -0.027810152620077133, -0.020632872357964516, 0.011316905729472637, -0.038307834416627884, -0.023982269689440727, 0.004288244526833296, 0.0035342674236744642, 0.0033530229702591896, 0.008866479620337486, 0.007989256642758846, -0.0039837537333369255, 0.0321890190243721, 0.003601327771320939, 0.013288845308125019, -0.0027313544414937496, 0.013767330907285213, -0.012085381895303726, -0.010084442794322968, -0.008706985041499138, -0.00243411329574883, 0.012672614306211472, 0.005303213372826576, -0.008641736581921577, 0.026679188013076782, -0.0164714977145195, -0.005187217146158218, 0.018573934212327003, -0.003304086858406663, 0.020792366936802864, 0.013136600144207478, 0.0035632664803415537, 0.01893642358481884, -0.007373025640845299, -0.012194128707051277, -0.005190841853618622, -0.017486467957496643, -0.00479572918266058, 0.007159157190471888, -0.01034543476998806, 0.005854196846485138, -0.002620795276015997, 0.0025700468104332685, -2.6507004804443568e-05, 0.008308246731758118, 0.003802509279921651, -0.001330334460362792, 0.020763367414474487, 0.021372349932789803, -0.010504930280148983, -0.009888699278235435, 0.008213999681174755, 0.011614146642386913, -0.01618150807917118, 0.007119283080101013, 0.0027186672668904066, -0.020632872357964516, 0.021053358912467957, -0.006321807391941547, 0.032942995429039, -0.04065676033496857, 0.004621734376996756, -0.009555209428071976, 0.012070882134139538, 0.005426459945738316, -0.0016076385509222746, 0.025446726009249687, 0.02499723806977272, -0.0035542042460292578, 0.010127941146492958, -0.009526209905743599, -0.017834456637501717, 0.010432432405650616, 0.017703961580991745, 0.0017462905962020159, 0.016688991338014603, 0.018457937985658646, -0.01822594553232193, -0.011940386146306992, -0.026403695344924927, -0.005578705109655857, 0.00010489523992873728, 0.0033675224985927343, -0.0023289916571229696, -0.004904475528746843, 0.009526209905743599, 0.025475723668932915, -0.0014907359145581722, -0.015369531698524952, 0.0036720132920891047, -0.00951171014457941, 0.012607365846633911, 0.016746990382671356, 0.014876547269523144, 0.0060571907088160515, -0.0007344932528212667, 0.0014490496832877398, -0.027810152620077133, 0.006350806448608637, 0.0024051142390817404, 0.013288845308125019, -0.00028296795790083706, 0.0013892389833927155, 0.023460285738110542, 0.010214938782155514, 0.004480363801121712, -0.01124440785497427, -0.010526679456233978, 0.002856413135305047, -0.007122908253222704, 0.008221250027418137, 0.009410213679075241, -0.020792366936802864, 0.01951640658080578, -0.0022854928392916918, 0.017950452864170074, 0.0008876448264345527, 0.014746051281690598, 0.0006882759043946862, 0.01584801822900772, 0.011614146642386913, 0.025156734511256218, 0.013926825486123562, -0.03381296992301941, 0.023982269689440727, -0.006796667817980051, -0.01726897433400154, -0.013571586459875107, -0.001045780605636537, 0.013151099905371666, 0.0034998308401554823, -0.00923621840775013, -0.018573934212327003, 0.011019664816558361, -0.005393835715949535, -0.01700798235833645, -0.01642799936234951, -0.0030213454738259315, 0.01333234366029501, 0.024968240410089493, 0.015123039484024048, -0.011751892045140266, 0.015978513285517693, 0.007467272691428661, 0.012157879769802094, 0.010497679933905602, 0.024518754333257675, 0.001304054050706327, -0.009939447045326233, -0.004074376076459885, 0.011628645472228527, -0.0009216282051056623, -0.02446075528860092, 0.009613207541406155, -0.026026707142591476, 0.012723363004624844, -0.00814875215291977, -0.008083503693342209, 0.011563397943973541, 0.016630994156003, -0.010541179217398167, 0.0254612248390913, -0.018399938941001892, -0.003005033591762185, 0.0013856140431016684, -0.026824183762073517, -0.015558026731014252, -0.012237627059221268, -0.02375027723610401, 0.000945189967751503, 0.004904475528746843, 0.00015133914712350816, -0.01117915939539671, 0.0036991997621953487, 0.03216002136468887, -0.0021713089663535357, -0.015529027208685875, 0.004360742401331663, 0.014267565682530403, 0.016254005953669548, 0.012012884020805359, 0.007344026584178209, 0.0029560974799096584, -0.016529496759176254, -0.0011137473629787564, 0.0004105187545064837, -0.005589579697698355, 0.0003960191970691085, -0.011563397943973541, 0.007032285910099745, -0.026592189446091652, 0.016152508556842804, 0.005991942714899778, -0.007866010069847107, 0.0040816254913806915, 0.012701612897217274, -0.011679394170641899, 0.012259377166628838, -0.010976165533065796, -0.011693893931806087, 0.005161842796951532, 0.017529966309666634, 0.017065979540348053, -0.0038351332768797874, 0.007931258529424667, 0.008098003454506397, -0.011469150893390179, 0.012824859470129013, 0.006129688583314419, -0.008822981268167496, 0.012172379530966282, -0.01897992193698883, 0.003606765065342188, 0.002359803067520261, 0.018080949783325195, -0.007286028005182743, 0.02177833765745163, -0.008112503215670586, 0.026766184717416763, -0.01922641508281231, 0.03245001286268234, -0.0016221380792558193, 0.0068619162775576115, 0.002994158770889044, -0.013796329498291016, -0.016022011637687683, 0.006358056329190731, 0.009359464980661869, -0.027810152620077133, -0.016036512330174446, 0.030072083696722984, -0.03917780891060829, -0.004610859788954258, 0.02106785774230957, -0.023083297535777092, -0.016500497236847878, 0.010751422494649887, 0.012368123047053814, 0.011563397943973541, 0.010519430041313171, 0.006300058215856552, 0.012513118796050549, -0.004520237445831299, -0.015543526969850063, -0.0031101552303880453, 0.029274608939886093, 0.009308716282248497, -0.000985063728876412, -0.013049602508544922, -0.009555209428071976, -0.013339594006538391, 0.018791427835822105, 0.03969979286193848, -0.035929907113313675, 0.009830700233578682, -0.009475461207330227, 0.00885923020541668, 0.019951391965150833, -0.01784895732998848, -0.008518490940332413, 0.014593805186450481, 0.013129349797964096, 0.004001878201961517, -0.00608256459236145, -0.022256821393966675, -0.0052524651400744915, 0.013883327133953571, -0.016877485439181328, -0.013470089994370937, 0.003604952711611986, -0.015862517058849335, 0.011229908093810081, 0.002809289377182722, -0.01067892462015152, -0.012034633196890354, 0.002472174819558859, -0.002678793389350176, 0.024214262142777443, 0.03590090572834015, -0.02257581241428852, 0.008105252869427204, 0.01755896583199501, 0.0045347367413342, 0.014448810368776321, -0.0004585485439747572, 0.005096594803035259, 0.008170501329004765, -0.011780891567468643, 0.013600585982203484, 0.002287305425852537, -0.011860638856887817, 0.0230397991836071, -0.009642206132411957, -0.0031391545198857784, -0.01609450951218605, -0.006626298185437918, 0.003469019429758191, 0.013158349320292473, 0.007989256642758846, 0.001347552752122283, -0.011585147120058537, 0.016080010682344437, 0.01667449250817299, 0.03134804591536522, 0.01067892462015152, 0.010439681820571423, -0.004987847991287708, 0.014477808959782124, -0.005970193073153496, 0.01940040849149227, 0.0027458539698272943, 0.004193997476249933, 0.010591927915811539, 0.004183122422546148, 0.000346856628311798, -0.02437375858426094, 0.00027345260605216026, 0.0039583793841302395, 0.004244745709002018, -0.005854196846485138, 0.024562252685427666, -0.002883599605411291, 0.02224232256412506, 0.0008237561560235918, -0.023300791159272194, 0.003925755620002747, -0.015094039961695671, 0.011570647358894348, 0.005324963014572859, 0.007412899285554886, 0.011563397943973541, 0.01051217969506979, 0.03729286417365074, -0.015906015411019325, -0.0032714628614485264, -0.006441428791731596, 0.020618371665477753, -0.007333151530474424, -0.010584677569568157, -0.036799877882003784, -0.010664424858987331, 0.004320868290960789, -0.004759480245411396, 0.007844260893762112, -0.011882388032972813, 0.005491707939654589, 0.01613800786435604, 0.010628175921738148, 0.010425182990729809, -0.0044731139205396175, 0.004357117228209972, -0.002125997794792056, -0.010874669067561626, 0.013876077719032764, -0.008982476778328419, -0.014978043735027313, 0.0006017317064106464, 0.007909509353339672, -0.009004225954413414, -0.008242999203503132, 0.016123509034514427, 0.008409744128584862, -0.0024612999986857176, 0.022416317835450172, -0.00655380031093955, -0.008380744606256485, -0.013636834919452667, -0.0048029785975813866, 0.013796329498291016, 0.006191311404109001, -0.01818244718015194, -0.0034998308401554823, 0.014253065921366215, -0.0008749577100388706, 0.006260184571146965, -0.03523392602801323, -0.017486467957496643, 2.2761757918488e-06, 0.0011409340659156442, 0.033174991607666016, 0.0039330050349235535, 0.018863925710320473, 0.002039000391960144, -0.019458407536149025, 0.019574403762817383, -0.026273200288414955, -0.013883327133953571, 0.013825329020619392, 0.021560844033956528, -0.019632402807474136, -0.005524331703782082, -0.00462898425757885, -0.023677779361605644, -0.03178303316235542, -0.011295155622065067, 0.008112503215670586, -0.0012750548776239157, -0.004650733433663845, 0.011367653496563435, -0.0022854928392916918, -0.00045356430928222835, -0.01660199463367462, -0.012418871745467186, -0.009830700233578682, 0.0005233434494584799, 0.004063501488417387, 0.028999116271734238, 0.006658922415226698, -0.0064378040842711926, -0.0005278745666146278, 0.019545404240489006, -0.0027947898488491774, 0.02153184451162815, -0.007757263723760843, -0.010504930280148983, -0.005723700858652592, -0.003233401570469141, 0.013136600144207478, -0.0011001540115103126, -0.006847416516393423, 0.013789080083370209, 0.01755896583199501, 0.018573934212327003, -0.0135643370449543, -0.004117874428629875, -0.001102872658520937, -0.004193997476249933, -0.02537422813475132, 0.004893600940704346, -0.006379805970937014, -0.02570771798491478, 0.0053612119518220425, 0.003740885993465781, -0.028317637741565704, 0.0023344289511442184, -0.00290534901432693, 0.005756324622780085, -0.0027023551519960165, 0.020328380167484283, -0.0011780891800299287, 0.015021543018519878, 0.0004075735341757536, -0.01860293373465538, 0.003470831783488393, -0.023213792592287064, 0.015703022480010986, -0.009163720533251762, 0.013361343182623386, -0.006365306209772825, -0.01667449250817299, 0.012571116909384727, -0.03717686980962753, 0.004309993702918291, 0.00624930951744318, -0.015224536880850792, -0.016775989904999733, -0.003566891420632601, -0.00045243152999319136, 0.0033439607359468937, -0.019168416038155556, 0.0073404014110565186, 0.007844260893762112, 0.00018033826199825853, -0.016196006909012794, -0.015065041370689869, 0.0173849705606699, -0.02504073828458786, 0.02404026873409748, 0.013796329498291016, -0.012614616192877293, -0.009808951057493687, -0.01726897433400154, -0.012977104634046555, -0.029898090288043022, 0.005049471277743578, 0.009613207541406155, -0.01567402295768261, 0.0026878556236624718, -1.649608020670712e-05, 0.004683357197791338, -0.006793043110519648, -0.018240444362163544, -0.007663016673177481, 0.012890107929706573, -0.021807335317134857, -0.0073875249363482, -0.007829761132597923, -0.016949983313679695, 0.0001594951463630423, 0.004465864039957523, -0.02022688463330269, -0.004110625013709068, -0.016485998407006264, -0.005730950273573399, -0.007779013365507126, -0.012505869381129742, 0.0030521571170538664, -0.0028709126636385918, 0.00041165153379552066, -0.01318734884262085, 0.019037920981645584, 0.004237495828419924, -0.0010040943743661046, -0.01074417307972908, 0.011389403603971004, 0.010968916118144989, -0.00684379180893302, 0.003282337449491024, -0.013528088107705116, -0.03993178531527519, 0.01689198613166809, 0.0015559839084744453, -0.010947166942059994, -0.0100119449198246, -0.000706400373019278, -0.008714234456419945, -0.015688521787524223, 0.014216816984117031, 0.010889168828725815, -0.019197415560483932, 9.28311565076001e-05, 0.006332681979984045, -0.008641736581921577, -0.007057660259306431, 0.0097437035292387, -0.0001444291992811486, -0.018196946009993553, 0.010033694095909595, -0.012382622808218002, -0.009837950579822063, -0.0002958816185127944, -0.007684765849262476, 0.00809075403958559, -0.001299522933550179, -0.02131435088813305, -0.03418995812535286, -0.002930723363533616, 0.00371007458306849, 0.002144122263416648, -0.012114381417632103, -0.012070882134139538, 0.007960258051753044, -0.021386848762631416, 0.016906484961509705, -0.0001990290911635384, -0.019284412264823914, -0.0010095317848026752, 0.004799353890120983, -0.0003464035107754171, 0.005437334533780813, 0.024475254118442535, 0.00436799181625247, 0.014760550111532211, 0.019240913912653923, 0.024982739239931107, 0.01062092650681734, -0.02086486481130123, 0.003722761757671833, -0.004146873950958252, 0.016862986609339714, -0.0033638975583016872, -0.00967845506966114, -0.005056721158325672, 0.02027038298547268, 0.014804049395024776, -0.01067892462015152, -0.010439681820571423, -0.02868012711405754, -0.01500704325735569, -0.02077786810696125, 0.008786732330918312, 0.0016728865448385477, 0.009584208019077778, 0.0088012320920825, 0.0050059724599123, 0.009018725715577602, -0.023271791636943817, -0.006796667817980051, -0.018211444839835167, 0.0029687846545130014, 0.031957026571035385, 0.007293277885764837, 0.021502844989299774, 0.017950452864170074, 0.015268035233020782, 0.011302405968308449, -0.021328849717974663, -0.007576019503176212, 0.02541772648692131, -0.0057744490914046764, 0.008721484802663326, -0.006361681502312422, -0.016978982836008072, -0.01034543476998806, 0.006111564114689827, 0.013644084334373474, 0.0014354563318192959, 0.002249243902042508, -0.001741759479045868, 0.004741355776786804, -0.010091693140566349, 0.0147750498726964, 0.01751546747982502, 0.004621734376996756, 0.006680671591311693, 0.0036611384712159634, -0.0022456191945821047, -0.0014626429183408618, -0.009555209428071976, -2.3080352548277006e-05, 0.01207813248038292, 0.0023869897704571486, 0.002676981035619974, 0.024127265438437462, -0.018327441066503525, 0.002289117779582739, 0.012636365368962288, -0.01868993043899536, -0.028201641514897346, -0.006002817302942276, -0.004744980484247208, -0.018486937507987022, 0.002591795986518264, -0.015021543018519878, -0.0028890371322631836, 0.013114850968122482, -0.0012542117619886994, 0.01283210888504982, 0.007648516912013292, -0.001356614986434579, -0.0030467198230326176, -0.005901320371776819, 0.0016429811948910356, 0.011585147120058537, 0.011440151371061802, -0.023547282442450523, -0.002388802357017994, 0.002270993310958147, -0.011403902433812618, 0.007035910617560148, -0.01427481509745121, -0.003980129025876522, -0.01931341178715229, -0.021676840260624886, -2.343434425711166e-05, 0.02086486481130123, -0.015268035233020782, 0.006419679615646601, -0.012629115022718906, 0.008888229727745056, 0.0014118944527581334, -0.0023525534197688103, 0.022604811936616898, -0.00802550558000803, 0.015311533585190773, 0.017254475504159927, 0.010316436178982258, 0.0007163687841966748, 0.000665167230181396, -0.014615555293858051, -0.0036810755264014006, 0.0030612193513661623, 0.004085250664502382, -0.01510853972285986, -0.006880040280520916, -0.010932667180895805, -0.0022510564886033535, 0.017297973856329918, 0.011780891567468643, -0.0009143783827312291, 0.020429877564311028, -0.000940658850595355, -0.007808012422174215, 0.004175873007625341, -0.015166537836194038, 0.022271322086453438, -0.0018885674653574824, 0.010751422494649887, -0.021212853491306305, -0.009214469231665134, 0.017355971038341522, -0.01067892462015152, 0.003907631151378155, 0.030072083696722984, 0.012012884020805359, -0.000206278869882226, 0.01528253499418497, -0.00564395310357213, 0.007170031778514385, -0.009337715804576874, 0.01955990493297577, 0.003329461207613349, -0.006996036972850561, -0.004831977654248476, 0.007354901172220707, 0.0042991191148757935, -0.016862986609339714, -0.0023779275361448526, -0.012969855219125748, -0.0053757112473249435, -0.035001933574676514, 0.00102403131313622, -0.012527618557214737, 0.023503784090280533, -0.006872790865600109, -0.005187217146158218, -0.004806603770703077, 0.0024612999986857176, 0.008228499442338943, -0.010613677091896534, 0.00708665931597352, -0.010860169306397438, -0.014224067330360413, -0.022648310288786888, -0.01982089690864086, 0.02295280061662197, 0.007829761132597923, 0.01831294223666191, 0.006713295355439186, 0.011548898182809353, -0.02692567929625511, 0.005828822497278452, -0.00392938032746315, 0.0007798043661750853, 0.008866479620337486, -0.0031192174647003412, 0.01117915939539671, 0.008177750743925571, -0.02520023286342621, -0.016630994156003, 0.0014735176227986813, -0.019385909661650658, 0.014144319109618664, 0.0168484877794981, 0.01629750430583954, -0.0008387088309973478, 0.006503052078187466, -0.011070412583649158, -0.015398531220853329, -0.007757263723760843, -0.006213061045855284, -0.008714234456419945, 0.010831169784069061, 0.023213792592287064, 0.006626298185437918, -0.0002795696200337261, 0.008409744128584862, 4.5905828301329166e-05, 0.016790488734841347, 0.00772101478651166, 0.001959252869710326, -0.032044023275375366, -0.012708863243460655, -0.004433239810168743, -0.005161842796951532, -0.018008451908826828, 0.026070205494761467, -0.004875476472079754, 0.013542587868869305, -0.02035737968981266, 0.016790488734841347, -0.008032754994928837, -0.004893600940704346, 0.004270120058208704, -0.0006293714395724237, 0.004146873950958252, 0.005263339728116989, 0.02446075528860092, 0.02182183600962162, 0.01660199463367462, -0.0317540317773819, 0.0049117254093289375, -0.023228293284773827, 0.0123536242172122, -0.02240181714296341, -0.004197622183710337, 0.020473375916481018, -0.0036248895339667797, 0.008989726193249226, -0.004614484496414661, 0.002691480563953519, 0.011505399830639362, 0.013651334680616856, -0.0025501097552478313, -0.008866479620337486, -0.006880040280520916, -0.0016420750180259347, 0.01399932336062193, -0.013578836806118488, -0.026345698162913322, 0.018617432564496994, 0.01168664451688528, -0.008054505102336407, 0.014361812733113766, 0.004864601884037256, 0.007260654121637344, -0.003617639886215329, 0.005836072377860546, 0.004563736263662577, -0.004806603770703077, -0.007619517855346203, -0.008199499920010567, -0.01805195026099682, 0.008612737990915775, 0.013673083856701851, -0.0037300114054232836, -0.03505993261933327, 0.008699734695255756, -0.018370941281318665, 0.031029054895043373, 0.022807804867625237, 0.027114175260066986, -0.0023163044825196266, 0.013078602030873299, -0.009866949170827866, 0.018080949783325195, 0.004502112977206707, -0.014920045621693134, 0.005480832885950804, -0.007489021867513657, -0.0023253667168319225, -0.017413970082998276, -0.018863925710320473, -0.015993012115359306, 0.0029071613680571318, -0.0008962539723142982, 0.008337246254086494, -0.018443439155817032, -0.021169355139136314, 0.005219840910285711, -0.02102435939013958, 0.02131435088813305, 0.002055312506854534, 0.0031355295795947313, 0.0003559188626240939, 0.003215277101844549, 0.005223466083407402, 0.022256821393966675, -0.015746520832180977, 0.0007576019270345569, 0.010403432883322239, -0.009816201403737068, 0.012346373870968819, 0.011092162691056728, -0.0016592931933701038, -0.01969039998948574, -0.0007068534614518285, 0.008605487644672394, 0.01731247268617153, 0.02570771798491478, 0.005730950273573399, 0.013375842943787575, 0.025968709960579872, 0.017993951216340065, 0.0005319525371305645, 0.012252126820385456, 0.002517485758289695, -0.01842893846333027, 0.004516612272709608, 0.0020118136890232563, -0.017529966309666634, 0.007822511717677116, 0.010251187719404697, 0.013810829259455204, -0.014013823121786118, 0.007496271748095751, 0.0032660255674272776, 0.0055678305216133595, -0.010084442794322968, 0.001924816402606666, -0.0005949350306764245, -0.0005473583587445319, -0.009489960968494415, -0.0027422290295362473, 0.013948575593531132, -0.005981067661195993, -0.01973389834165573, -0.0015342344995588064, -0.0145068084821105, -0.013586086221039295, 0.0024866743478924036, 0.002606295747682452, -0.005585954990237951, -0.00990319810807705, 0.019907893612980843, -0.014158818870782852, 0.00403450196608901, 0.03372597321867943, 0.008822981268167496, 0.0007091190200299025, 0.00409612525254488, 0.004038127139210701, 0.017703961580991745, -0.016109010204672813, -0.018486937507987022, 0.002415988827124238, -0.005767199210822582, 0.006742294877767563, 0.010794920846819878, -0.0067785438150167465, 0.009932197630405426, 0.0035958904772996902, 0.0027150423265993595, -0.003824258456006646, 0.007895009592175484, -0.0077645136043429375, -0.0032044025138020515, -0.012070882134139538, -0.0031445918139070272, -0.011316905729472637, -0.01705148071050644, -0.0063870553858578205, 0.014949045144021511, 0.022880302742123604, -0.012302875518798828, 0.00015813580830581486, 0.021415848284959793, -0.001649324782192707, 0.00694891344755888, 0.007648516912013292, 0.010664424858987331, -0.022590311244130135, 0.005600454285740852, 0.001855037291534245, 0.005937569309026003, 0.004291869234293699, 0.00798200722783804, 0.00520534161478281, 0.014862047508358955, 0.004683357197791338, -5.6412343838019297e-05, -0.0014100820990279317, 0.02366327866911888, -0.004929849877953529, 0.00869248528033495, 0.018733428791165352, 0.009185470640659332, -7.725546311121434e-05, -0.008040005341172218, 0.01467355340719223, -0.011237157508730888, -0.007945758290588856, 0.014463309198617935, 0.005179967265576124, -0.005767199210822582, -0.009866949170827866, 0.0032696505077183247, -0.0036629510577768087, -0.008250248618423939, 0.0070939091965556145, -0.004589110147207975, 0.009170970879495144, -0.02035737968981266, 0.018037451431155205, 0.018501436337828636, -0.023431286215782166, -0.012012884020805359, 0.0024178014136850834, -0.0004068938724230975, 0.0031010929960757494, -0.012527618557214737, 0.014296564273536205, 0.012201378121972084, -0.00550620723515749, -0.015123039484024048, -0.02386627346277237, 0.005274214316159487, -0.0036865128204226494, -0.007960258051753044, 0.017834456637501717, 0.006086189765483141, -0.017167476937174797, 0.015993012115359306, -0.035349924117326736, -0.014782300218939781, -0.015297033824026585, -0.015471029095351696, -0.00956970825791359, 0.002345303539186716, 0.003215277101844549, -0.014028322882950306, -0.00047848542453721166, 0.013644084334373474, -0.005107469391077757, 0.021618841215968132, -0.01809544861316681, -0.012607365846633911, 0.007006911560893059, 0.009011475369334221, 0.007148282136768103, -0.016485998407006264, 0.00651030195876956, -0.0026679188013076782, 0.01544202957302332, -0.018631933256983757, 0.005734575446695089, 0.022677309811115265, -0.01618150807917118, -0.041149746626615524, 0.01013519149273634, 0.022227823734283447, -0.013542587868869305, -0.012882857583463192, 0.022662809118628502, -0.007199030835181475, 0.004088875371962786, -0.02859312854707241, -0.015862517058849335, -0.007808012422174215, 0.011338654905557632, -0.011838889680802822, -0.013419341295957565, 0.0382208377122879, -0.0026352948043495417, -0.00046579830814152956, 0.013513588346540928, 0.0015079540899023414, -0.014746051281690598, 0.036393892019987106, -0.002676981035619974, 0.015659522265195847, -0.0009297842043451965, -0.006941663566976786, 0.01671799086034298, 0.005107469391077757, 0.007014161441475153, -0.018617432564496994, 0.0016991669544950128, -0.026389196515083313, 0.002454050350934267, -0.004777604714035988, 0.009518960490822792, -0.007144657429307699, 0.005321337841451168, -0.0016620118403807282, 0.014593805186450481, 0.003338523441925645, 0.005894070491194725, -0.02135784924030304, -0.0032678379211574793, -0.00790225900709629, -0.016906484961509705, -0.0012089007068425417, -0.017326971516013145, 0.019008921459317207, -0.005426459945738316, 0.012237627059221268, 0.0054844580590724945, 0.032537009567022324, -0.008453242480754852, -0.010084442794322968, -0.006687921471893787, 0.014514057897031307, 0.008098003454506397, -0.017196476459503174, -0.007122908253222704, 0.015021543018519878, 0.013470089994370937, 0.010657175444066525, -0.01538403145968914, 0.009620456956326962, -0.025446726009249687, 0.012556618079543114, -0.006162312347441912, -0.021807335317134857, 0.00967845506966114, -0.0048863510601222515, -0.020241383463144302, 0.00624930951744318, -0.020386379212141037, 0.0007539770449511707, 0.003632139414548874, 0.005705576390028, 0.004585485439747572, 0.013042353093624115, 0.0005541549762710929, -0.004389741457998753, -0.004288244526833296, 0.018124448135495186, 0.012679863721132278, 0.046717576682567596, 0.004719606135040522, 0.007597768679261208, -0.030043086037039757, -0.00251929834485054, -0.018675431609153748, -0.0009207219700329006, 0.0021549968514591455, -0.01868993043899536, -0.014376312494277954, 0.01605101116001606, 0.011635895818471909, 0.019762897863984108, 0.013288845308125019, -0.009105722419917583, -0.0008165063918568194, 0.003470831783488393, -0.01062092650681734, 0.005698326509445906, 0.006869165692478418, 0.0032189020421355963, 0.006767668761312962, -0.015137539245188236, -0.00996844656765461, 0.008786732330918312, 0.015485528856515884, 0.008213999681174755, -0.0029542851261794567, 0.005078470334410667, 0.0008849261794239283, 0.01500704325735569, -0.015529027208685875, -0.027650658041238785, 0.016413500532507896, 0.004487613216042519, 0.018327441066503525, 0.010490430518984795, 0.01818244718015194, 0.00013910513371229172, 0.0038568824529647827, -0.0020408127456903458, -0.008612737990915775, 0.002840101020410657, 0.008677985519170761, -0.009598707780241966, -0.00352701754309237, 0.008605487644672394, 0.011237157508730888, -0.01982089690864086, 0.007626767735928297, 0.00772101478651166, -0.017863456159830093, -0.033754970878362656, -0.012273875996470451, 0.002843725960701704, 0.019762897863984108, 0.014637304469943047, -0.02035737968981266, -0.011933136731386185, -0.020676370710134506, -0.0026534192729741335, 0.0077645136043429375, 0.0055678305216133595, 0.011316905729472637, -0.01609450951218605, 0.0038568824529647827, 0.00885923020541668, 0.0056657022796571255, 0.00892447866499424, 0.0038387582171708345, 0.020705370232462883, -0.008286497555673122, 0.0025519223418086767, -0.032913997769355774, -0.01278861053287983, -0.02608470618724823, -0.03427695482969284, -0.007808012422174215, -0.015268035233020782, -0.0010068131377920508, -0.004947974346578121, -0.02366327866911888, 0.007510771509259939, -0.0031300922855734825, -0.020589372143149376, -0.007246154360473156, -0.012962604872882366, 0.0024649249389767647, 0.006927164271473885, 0.007267903536558151, -0.010780422016978264, 0.003842382924631238, -0.039061810821294785, 0.01352083869278431, 0.014847547747194767, -0.001807913649827242, -0.005306838545948267, -0.005223466083407402, 0.003619452239945531, 0.01747196726500988, 0.0017181977164000273, 0.011324155144393444, 0.008322746492922306, 0.004353492520749569, -0.020183386281132698, -0.019153917208313942, -0.020719869062304497, -0.013644084334373474, -0.0045564863830804825, 0.02699817717075348, -0.018457937985658646, 0.00025940616615116596, -0.006390680558979511, 0.010403432883322239, 0.0006393399089574814, 0.014115320518612862, 0.01273061241954565, 0.010541179217398167, -0.001120090950280428, 0.003447270020842552, -0.011070412583649158, 0.0033439607359468937, 0.03662588447332382, 0.011541648767888546, -0.008511240594089031, -0.00044971288298256695, 0.007188156247138977, 0.002428676001727581, -0.0006375274388119578, -0.012259377166628838, 0.012991604395210743, -0.015833517536520958, -0.002305429894477129, 0.0067531694658100605, -0.004683357197791338, -0.003969253972172737, -0.0017082291888073087, 0.002760353498160839, 0.005817947909235954, -0.02131435088813305, -0.017036981880664825, 0.01178814098238945, 0.027230171486735344, 0.015862517058849335, 7.147829455789179e-05, 0.012085381895303726, -0.015123039484024048, 0.005071220453828573, 0.017109479755163193, 0.003972879145294428, -0.011389403603971004, -6.740029493812472e-05, -0.010490430518984795, 0.00204806262627244, -0.01078767143189907, 0.022967301309108734, -0.008975226432085037, 0.016978982836008072, -0.0011101224226877093, 0.00802550558000803, -0.016152508556842804, -0.000367473199730739, 0.011773641221225262, 0.006785793229937553, -0.007822511717677116, -0.02290930226445198, -0.0038133838679641485, 0.03297199681401253, -0.016152508556842804, -0.014963543973863125, -0.0083154970780015, -0.005535206291824579, 0.0036339517682790756, -0.0018958172295242548, 0.005669327452778816, 0.008677985519170761, -0.003010470885783434, -0.0058396970853209496, -0.013745581731200218, 0.0024649249389767647, 0.008583738468587399, -0.0022673683706671, 0.027868151664733887, -0.004955224227160215, -0.008996975608170033, 0.012063632719218731, -0.018965423107147217, 0.009917697869241238, -0.0038351332768797874, -0.008808481507003307, 0.0021114982664585114, 0.014992543496191502, -0.022343819960951805, -0.004444114863872528, -0.011113911867141724, 0.026229701936244965, 0.014419810846447945, -0.011606896296143532, -0.028622128069400787, -0.003295024624094367, 0.01400657370686531, 0.008656236343085766, -0.013549837283790112, 0.005738200154155493], "70541635-e91b-4d03-ad84-9cd710d8d48e": [-0.009840089827775955, -0.0013429623795673251, 0.0039061526767909527, 0.012629182077944279, -0.03085077926516533, -0.03136306256055832, 0.03201764449477196, 0.03844963386654854, -0.026183318346738815, 0.01835678331553936, 0.0050232126377522945, 0.028431668877601624, -0.014713887125253677, -0.018200252205133438, 0.028289368376135826, -0.0059339371509850025, -0.015297319740056992, 0.01841370388865471, 0.000881374638993293, -0.004457567818462849, 0.05840018391609192, -0.022184669971466064, -0.04155178740620613, 0.04812607914209366, -0.012970703653991222, -0.010508902370929718, -0.0058556715957820415, 0.007371173240244389, -0.0035343922208994627, -0.011433856561779976, 0.014699656516313553, 0.01279994286596775, 0.03494903817772865, -0.021402016282081604, 0.005361177027225494, -0.028773190453648567, -0.011191945523023605, 0.030110817402601242, -0.029484692960977554, -0.008730144239962101, -0.032615307718515396, 0.03136306256055832, 0.008836870081722736, 0.010537362657487392, -0.03890499472618103, 0.03418061509728432, 0.01225920021533966, 0.007997296750545502, 0.0030043222941458225, -0.008915135636925697, 0.024077270179986954, -0.01538269966840744, 0.011889219284057617, -0.003514826064929366, 0.019295968115329742, -0.018911756575107574, 0.011376936919987202, 0.07849303632974625, -0.0009436311665922403, -0.07359789311885834, -0.003393870312720537, -0.020363222807645798, 0.06192924082279205, -0.023109624162316322, -0.0016435724683105946, -0.003692701691761613, 0.021373556926846504, 0.004158736206591129, -0.01868407428264618, 0.039104215800762177, 0.030623098835349083, 0.04658923298120499, -0.039218056946992874, -0.006531599443405867, -0.004421992693096399, 0.01373201236128807, 0.011505006812512875, -0.0010325690964236856, 0.008580729365348816, 0.012095554731786251, -0.00793326087296009, -0.0003070581005886197, 0.03995802253484726, 0.0017253953265026212, 0.07866379618644714, 0.037595830857753754, -0.03671356663107872, -0.044056281447410583, -0.04491008445620537, -0.03466443717479706, 0.0080684470012784, -0.010807733982801437, -0.0030381188262254, 0.010082000866532326, -0.01427275501191616, -0.0005705366493202746, 0.055924154818058014, 0.0037958696484565735, 0.003304932499304414, -0.04522314667701721, -0.0036322239320725203, 0.03662818670272827, -0.044084738940000534, 0.003267578547820449, 0.019310196861624718, -0.011633077636361122, 0.009263771586120129, 0.0035984276328235865, -0.03437983617186546, 0.02073320373892784, 0.030025435611605644, -0.026354080066084862, -0.009384728036820889, 0.0060193175449967384, -0.03659972548484802, -0.07285793125629425, -0.008189402520656586, -0.018314093351364136, -0.0029669685754925013, -0.038022734224796295, 0.04442626237869263, -0.0081395972520113, -0.010345256887376308, 0.003520162310451269, -0.010494672693312168, 0.012202280573546886, -0.015567691065371037, 0.016364574432373047, 0.02160123735666275, 0.024475710466504097, -0.0059517244808375835, 0.00036775824264623225, 0.005282911472022533, 0.025130294263362885, 0.003849232569336891, 0.01997901126742363, 0.010544477961957455, 0.047300733625888824, -0.0063252635300159454, 0.02974083460867405, -0.029484692960977554, -0.049321405589580536, 0.011590387672185898, 0.013959693722426891, 0.004333054646849632, 0.005161955952644348, -0.04382859915494919, 0.028531279414892197, 0.005410981830209494, 0.021672388538718224, -0.06255536526441574, -0.03654280677437782, 0.02271118387579918, 0.017887191846966743, 0.033127591013908386, 0.0052935839630663395, 0.018484853208065033, 0.03141998127102852, 0.005905476864427328, -0.008345932699739933, -0.0009436311665922403, -0.06062007322907448, 0.016563795506954193, -0.013041853904724121, 0.02397765964269638, 0.004599868319928646, 0.038022734224796295, 0.03469289839267731, -0.05296429991722107, 0.029015101492404938, 0.025229904800653458, -0.001088599907234311, 0.02127394638955593, -0.023892277851700783, -0.029911596328020096, -0.007620199583470821, 0.03745352849364281, 0.034835197031497955, 0.012387271039187908, -0.020647823810577393, 0.004859567154198885, 0.011896333657205105, -0.015596150420606136, 0.0024724737741053104, -0.01970863901078701, 0.01949518918991089, 0.00294384453445673, 0.007328483276069164, -0.009334922768175602, 0.012294775806367397, -0.001981536392122507, -0.00838150829076767, -0.010316796600818634, 0.030480798333883286, -0.00615094555541873, -0.010224301367998123, 0.004208541475236416, 0.017474519088864326, 0.015823831781744957, -0.006296803709119558, -0.02273964323103428, -0.045166224241256714, -0.03580284118652344, 0.0567779578268528, -0.061189278960227966, 0.010793504305183887, -0.009932585060596466, -0.03309912979602814, 0.003027446335181594, -0.02920009195804596, 0.03611590340733528, -0.02481723204255104, 0.009299347177147865, 0.005948166828602552, 0.01643572375178337, 0.002347960602492094, -0.013447411358356476, 0.0403849221765995, 0.015439620241522789, 0.00016509098350070417, -0.029000870883464813, 0.004553620703518391, -0.015781141817569733, -0.01965171843767166, -0.062327682971954346, -0.02865934930741787, -0.004308152012526989, 0.020647823810577393, -0.0297692958265543, -0.00033440650440752506, 0.03415215387940407, -0.005990857258439064, -0.00757750915363431, -0.010772159323096275, -0.03409523516893387, 0.017858730629086494, 0.037994273006916046, 0.015041178092360497, 0.003888365114107728, -0.015724221244454384, 0.00674505066126585, 0.02587025798857212, 0.010238531045615673, 0.01640726439654827, 0.007221757899969816, 0.011213290505111217, -0.024646472185850143, 0.048353757709264755, -0.0005109482444822788, -0.014393710531294346, -0.018214482814073563, 0.02219890058040619, -0.013233959674835205, 0.010402177460491657, -0.019537879154086113, 0.04266173392534256, 0.030338497832417488, -0.00029038224602118134, -0.00663120998069644, -0.03412369638681412, -0.0010361266322433949, -0.004055568482726812, 0.013646631501615047, -0.0022536865435540676, 0.0459061898291111, 0.023479606956243515, 0.024774542078375816, -0.03958803787827492, -0.009185506962239742, 0.0296554546803236, -0.04980522766709328, 0.003966630436480045, -0.005307814106345177, -0.00501609779894352, -0.002725057303905487, -0.007961721159517765, -0.014173144474625587, 0.019068285822868347, 0.025827568024396896, 0.01583806239068508, -0.0006132268463261425, 0.007520589046180248, 0.001222006743773818, 0.04644693061709404, 0.029570074751973152, -0.009783169254660606, 0.0014585816534236073, -0.0013785375049337745, -0.034863658249378204, -0.01586652174592018, -0.010331027209758759, -0.0001321839663432911, 0.013105889782309532, 0.004685248713940382, -0.012529571540653706, 0.014158913865685463, 0.013796047307550907, 0.012429961003363132, 0.006912253797054291, 0.033184509724378586, -0.012401501648128033, -0.00793326087296009, 0.014201604761183262, -0.04012878239154816, 0.029015101492404938, -0.036428965628147125, 0.042462512850761414, -0.01622227393090725, -0.02451840043067932, 0.031562283635139465, 0.059083227068185806, -0.014913107268512249, -0.0007608637679368258, -0.009697789326310158, -0.00199754536151886, 0.005240221507847309, 0.005069460719823837, 0.02181468904018402, 0.002618331927806139, -0.024205340072512627, 0.03992956131696701, 0.018499083817005157, -0.06784895062446594, 0.028189757838845253, 0.026610219851136208, -0.03389601409435272, 0.033127591013908386, -0.004105373751372099, -0.041267186403274536, -0.03674202784895897, -0.008168056607246399, -0.05398886650800705, -0.034209076315164566, 0.013376261107623577, -0.007406748831272125, -0.009000515565276146, -0.050602108240127563, -0.029370853677392006, 0.0027606324292719364, -0.026539070531725883, -0.030025435611605644, -0.0033956491388380527, -0.007670004852116108, -0.006303918547928333, 0.04254789277911186, 0.0032053219620138407, 0.024987993761897087, 0.03193226456642151, -0.012614952400326729, 0.015937672927975655, 0.0008115583914332092, -0.01565307192504406, 0.06397837400436401, 0.01736067794263363, -0.007506358902901411, -0.02689482271671295, 0.011640192940831184, 0.002650349633768201, 0.006883793510496616, 0.01622227393090725, -0.024119960144162178, -0.005695583298802376, -0.017161458730697632, -0.008815525099635124, -0.009398957714438438, 0.02184314839541912, 0.008168056607246399, 0.001077927416190505, 0.021017804741859436, -0.020804354920983315, -0.042405594140291214, 0.013141464442014694, 0.02914317138493061, 0.020889734849333763, -0.027705935761332512, -0.016962237656116486, 0.030480798333883286, 0.015496539883315563, -0.003835002426058054, 0.023038474842905998, 0.013945463113486767, 0.018740994855761528, -0.010629857890307903, -0.011483661830425262, 0.03719738870859146, 0.01053024735301733, 0.016393033787608147, -0.0011810953728854656, -0.020107081159949303, -0.014699656516313553, -0.014799267053604126, 0.01943826861679554, -0.04747149720788002, -0.008353048004209995, -0.019452497363090515, 0.02800476737320423, 0.004301037173718214, -0.003902595257386565, -0.0049164872616529465, -0.009925469756126404, 0.0015270637813955545, 0.0005434105987660587, 0.01161173265427351, 0.0006941603496670723, 0.03184688463807106, -0.022967323660850525, 0.01239438634365797, -0.0020740318577736616, 0.0022714741062372923, -0.010025080293416977, -0.005916149355471134, 0.004397090058773756, 0.04476778209209442, -0.008616304025053978, 0.029342392459511757, -0.014536011032760143, -0.0030416762456297874, 0.03568900376558304, -0.040726445615291595, -0.002762411255389452, 0.03139152377843857, 0.04658923298120499, 0.002851349301636219, 0.01949518918991089, -0.02262580208480358, 0.04175100848078728, 0.015425389632582664, 0.027663245797157288, 0.0017894306220114231, -0.03073693998157978, -0.015766911208629608, 0.027805546298623085, -0.02022092230618, 0.007018979173153639, -0.003569967346265912, 0.011490777134895325, 0.0037567371036857367, -0.03301374986767769, -0.009918355382978916, -0.02100357599556446, 0.03190380334854126, 0.025215674191713333, 0.019153667613863945, 0.017232608050107956, -0.05387502536177635, -0.03745352849364281, -0.0023835357278585434, -0.003278251038864255, 0.01136982161551714, -0.024404561147093773, 0.009128586389124393, 0.02246927283704281, -0.028986642137169838, -0.011213290505111217, -0.004962734878063202, -0.02328038588166237, -0.010096230544149876, 0.0031697468366473913, 0.027108272537589073, -0.0255714263767004, -0.05040288716554642, 0.010217186063528061, 0.03295683115720749, 1.0401565305073746e-05, -0.005247336346656084, -0.03870577737689018, -0.012686102651059628, 0.037425071001052856, 0.0036891442723572254, 0.00895071029663086, 0.006506696809083223, 0.022184669971466064, -0.02235543169081211, -0.00423700176179409, -0.01970863901078701, -0.024731852114200592, -0.013169924728572369, 0.03082231990993023, 0.0033707465045154095, -0.004397090058773756, -0.011882103979587555, -0.021558547392487526, -0.01935288868844509, -0.001848129671998322, 0.039132677018642426, -0.00847400352358818, -0.015510770492255688, -0.01781604066491127, 0.008516693487763405, -0.004201426636427641, 0.05000444874167442, -0.025671036913990974, 0.012686102651059628, -0.0033511801157146692, -0.013418951071798801, -0.04089720547199249, 0.011341361328959465, 0.004012878052890301, -0.029911596328020096, -0.03557516261935234, 0.05236663669347763, 0.010701008141040802, -0.002098934492096305, 0.026396770030260086, -0.0020295630674809217, 0.004507373087108135, 0.002543624024838209, 0.013177040033042431, -0.001056582317687571, -0.007769615389406681, -0.002353296848013997, -0.009249541908502579, -0.0228961743414402, -0.004158736206591129, -0.012607837095856667, 0.010181611403822899, -0.011078105308115482, -0.0015181700000539422, 0.027122503146529198, 0.019295968115329742, 0.007705579977482557, -0.014614276587963104, -0.022853484377264977, -0.009050320833921432, -0.00654227240011096, -0.01508386805653572, 0.017915651202201843, 0.008296127431094646, 0.015795372426509857, -0.030366957187652588, -0.004671018570661545, 0.01427275501191616, -0.004464682657271624, -0.016592254862189293, 0.02892972156405449, -0.016905317083001137, 0.009114356711506844, 0.0035450649447739124, 0.006855333689600229, 0.03452213481068611, -0.019182126969099045, 0.028588199988007545, -0.02060513384640217, -0.0017236166168004274, -0.013582596555352211, 0.032700687646865845, 0.00027326171402819455, 0.0012922676978632808, 0.002623668173328042, 0.008616304025053978, -0.03150536119937897, 0.016620716080069542, -0.005894804373383522, -0.0036713567096740007, 0.020135540515184402, -0.02773439511656761, 0.039189599454402924, -0.027805546298623085, -0.0296839140355587, -0.01001796592026949, 0.004564293194562197, 0.014073533937335014, 0.016051512211561203, 0.008886675350368023, 0.017161458730697632, -0.015880752354860306, -0.03500596061348915, 0.01859869435429573, -0.0243049506098032, 0.02568526566028595, 0.013198385015130043, -0.014002383686602116, 0.035888221114873886, 0.012842632830142975, -0.02081858366727829, 0.04041338339447975, -0.013596826232969761, 0.009996620006859303, -0.042946334928274155, -1.6953787053353153e-05, 0.03178996592760086, -0.04158024862408638, 0.012629182077944279, -0.0031893132254481316, 0.014742346480488777, 0.022753873839974403, -0.04175100848078728, -0.016748785972595215, -0.01709030754864216, 0.01514078862965107, -0.013440296053886414, 0.004016435705125332, -0.02622600831091404, 0.0005794304306618869, -0.021615467965602875, 0.014770806767046452, -0.005802308674901724, -0.008516693487763405, -0.0008137818076647818, -0.015468080528080463, 0.03079386055469513, 0.03776659071445465, -0.0012344580609351397, -0.003185755806043744, -0.019153667613863945, 0.005802308674901724, -0.02049129270017147, 0.014870417304337025, -0.02649638056755066, -0.015425389632582664, 0.029996976256370544, -0.005346946883946657, 0.01997901126742363, 0.0012335687642917037, 0.015183478593826294, 0.01442217081785202, 0.03725430741906166, 0.03335526958107948, 0.0026378983166068792, -0.03016773611307144, 0.00126380764413625, -0.033127591013908386, 0.0349774993956089, -0.004774186760187149, 0.02127394638955593, 0.024703392758965492, 0.004002205561846495, 0.010245646350085735, -0.011433856561779976, 0.03332681208848953, -0.0077198101207613945, -0.0028602429665625095, 0.018698304891586304, -0.03520517796278, 0.03304221108555794, -0.017687970772385597, 0.011967483907938004, -0.0015919884899631143, 0.0043472847901284695, -0.001104608760215342, -0.012501112185418606, 0.01445063017308712, -0.024176878854632378, 0.012437076307833195, -0.015098098665475845, -0.001684483839198947, -0.020832814276218414, 0.016620716080069542, 0.017616819590330124, 0.010416407138109207, -0.042434051632881165, -0.0023497394286096096, 0.010316796600818634, 0.01935288868844509, 0.006086910143494606, -0.02241235226392746, -0.019310196861624718, -0.008587843738496304, 0.0046461159363389015, -0.00800441112369299, 0.03901883587241173, -0.006979846861213446, 0.00356818875297904, 0.02030630223453045, 0.008509578183293343, -0.014970027841627598, 0.01389565784484148, 0.003118162974715233, 0.028588199988007545, 0.018456393852829933, 0.010864654555916786, 0.00518330093473196, 0.03517672047019005, 0.006673900410532951, -0.012792828492820263, 0.008673224598169327, -0.005603088065981865, 0.003297817427664995, 0.0189829058945179, 0.0017912093317136168, -0.02346537634730339, -0.02235543169081211, -0.04377168044447899, 0.002050908049568534, 0.022369662299752235, -0.012280546128749847, -0.021402016282081604, 0.01862715370953083, -0.003267578547820449, -0.011725572869181633, 0.014955798164010048, 0.002687703352421522, -0.014770806767046452, 0.011682882905006409, 0.002561411587521434, 0.0024582436308264732, -0.01185364369302988, -0.009640868753194809, 0.02641100063920021, -0.022995784878730774, -0.04747149720788002, -0.038648854941129684, 0.0046461159363389015, -0.015667300671339035, 0.02049129270017147, 0.04530852660536766, -0.01637880504131317, 0.003674914129078388, 0.025941407307982445, 0.009840089827775955, 0.028758959844708443, 0.001359860529191792, 0.008175171911716461, 0.010971379466354847, 0.013169924728572369, -0.011120795272290707, -0.015211938880383968, 0.014201604761183262, 0.006051335018128157, 0.015596150420606136, -0.02141624689102173, 0.05020366609096527, -0.010971379466354847, -0.02787669561803341, -0.05122823268175125, 0.00486668199300766, 0.03181842342019081, 0.004877354484051466, -0.015852291136980057, 0.0066881305538117886, 0.03671356663107872, 0.012116899713873863, -0.023920739069581032, 0.00438641756772995, 0.01763105019927025, -0.031021540984511375, -0.011946138925850391, 0.0007297354750335217, 0.040242623537778854, -0.006293246056884527, 0.000270815915428102, -0.025557195767760277, 0.03224532678723335, -0.010302566923201084, -0.008011526428163052, -0.008509578183293343, 0.013824507594108582, 0.0027748625725507736, 0.009669329039752483, 0.01105676032602787, 0.04269019514322281, -0.024561092257499695, 0.046076949685811996, 0.0069762892089784145, -0.0017769793048501015, 0.009114356711506844, 0.02214198000729084, 0.017588360235095024, 0.012920898385345936, 0.03654280677437782, -0.02403457835316658, -0.001141962711699307, 0.01691954769194126, -0.0020295630674809217, 0.012529571540653706, 0.012508226558566093, -0.0121524753049016, 0.019580569118261337, 0.021473167464137077, 0.001933510066010058, 0.038648854941129684, 0.017830271273851395, 0.016592254862189293, 0.047300733625888824, -0.009043206460773945, 0.00033440650440752506, 0.014087763614952564, -0.020718973129987717, -0.04550774767994881, 0.00780519051477313, -0.014158913865685463, -0.03167612478137016, 0.007783845532685518, -0.036457426846027374, 0.0016800370067358017, -0.0068873511627316475, 0.031163841485977173, 0.012664757668972015, -0.00916416198015213, 0.001433679019100964, -0.006801970768719912, -0.002851349301636219, -0.017773350700736046, -0.00419786898419261, 0.01097849477082491, -0.01146231684833765, 0.012536686845123768, -0.02241235226392746, -0.00799018144607544, 0.02373574860394001, 0.03440829738974571, -0.037994273006916046, 0.032643768936395645, 0.04374321922659874, -0.012252085842192173, -0.0008324587834067643, 0.001646240591071546, -0.010736583732068539, -0.006848218385130167, -0.001615112298168242, -0.020562443882226944, 0.0028068802785128355, -0.012344581075012684, -0.005154841113835573, -0.006286131218075752, -0.0014265639474615455, 0.0005932158092036843, -0.009093010798096657, 0.003100375412032008, -0.008751490153372288, 0.006538714747875929, 0.016350343823432922, 0.025315284729003906, -0.004176524002104998, -0.021017804741859436, 0.0008080008556134999, 0.0003461907908786088, 0.006528042256832123, 0.01908251643180847, 0.0017342891078442335, 0.016421495005488396, 0.0013153916224837303, -0.010252761654555798, 0.009676444344222546, 0.022042369470000267, 0.026325618848204613, -0.017830271273851395, -0.023323075845837593, -0.04203560948371887, 0.011035415343940258, -0.010622743517160416, -0.034265995025634766, -0.023892277851700783, 0.011199060827493668, -0.01976555958390236, -0.00893648061901331, 0.025827568024396896, -0.00892225094139576, 0.029072022065520287, 0.0296839140355587, -0.0025027126539498568, -0.031533822417259216, 0.005126380827277899, 0.001450577168725431, -0.03449367731809616, 0.036428965628147125, -0.0008582507725805044, 0.03452213481068611, -0.01562461070716381, 0.01841370388865471, 0.003934612963348627, 0.001965527655556798, -0.01191056426614523, -0.015396930277347565, 0.002524057636037469, -0.017958341166377068, -0.030139276757836342, 0.0006238993955776095, 0.010359486564993858, 0.005425211973488331, -0.007371173240244389, 0.01043775212019682, -0.0005007204017601907, 0.02033476158976555, -0.03392447531223297, -0.005539052654057741, -0.01790142059326172, 0.016535334289073944, -0.015211938880383968, -0.0031270566396415234, 0.00020666945783887058, 0.01922481693327427, 0.002771305153146386, 0.00893648061901331, -0.037994273006916046, 0.0071506076492369175, -0.003931055311113596, 0.0018925985787063837, -0.01979401893913746, -0.004354399628937244, -0.009982390329241753, 0.0031555169261991978, -0.0019566339906305075, -0.03190380334854126, -0.026624450460076332, -0.028588199988007545, -0.016350343823432922, -0.026311390101909637, 0.004180081654340029, -0.008979170583188534, -0.004574965685606003, -0.041779469698667526, -0.03938882052898407, -0.011995944194495678, 0.017559899017214775, -0.05333428084850311, 0.007968836463987827, -0.0003548622480593622, 0.02081858366727829, 0.03224532678723335, -0.006339493673294783, -0.0008573614177294075, -0.012180935591459274, -0.021046265959739685, 0.05037442967295647, 0.017659509554505348, 0.010900229215621948, 0.004827549215406179, -0.013418951071798801, -0.0028798093553632498, 0.007356943562626839, -0.003520162310451269, 0.020363222807645798, 0.004649673588573933, 0.0021825360599905252, 0.001949518802575767, -0.0175456702709198, 0.007613084744662046, 0.012486881576478481, 0.031590744853019714, 0.0021683061495423317, 0.011042529717087746, 0.015297319740056992, -0.023650366812944412, 0.03770967200398445, -0.03141998127102852, 0.0010014408035203815, 0.0038954801857471466, -0.05885554850101471, -0.03147690370678902, -0.021174335852265358, -0.012515341863036156, 0.022810794413089752, -0.017289528623223305, 0.009249541908502579, -0.012992048636078835, -0.012067094445228577, 0.028730500489473343, 0.0070794569328427315, -0.033156052231788635, 0.018797915428876877, 0.03879115730524063, 0.03603052347898483, -0.004258346743881702, 0.017616819590330124, 0.011889219284057617, 0.0006305697606876493, 0.014407940208911896, -0.015226169489324093, 0.004414877388626337, -0.004713709000498056, 0.015909211710095406, -0.005560397636145353, 0.006748608313500881, -0.03449367731809616, 0.002652128227055073, -0.046076949685811996, 0.0011143919546157122, 0.027890926226973534, 0.0014754798030480742, -0.03452213481068611, -0.02854551002383232, 0.015297319740056992, 0.01889752596616745, 0.010039310902357101, 0.013739127665758133, -0.018698304891586304, -0.011362706311047077, -0.028460128232836723, 0.009562603197991848, 0.024233799427747726, -0.02178622968494892, 0.019054057076573372, 0.008417082950472832, 0.01536846999078989, 0.00659563485532999, -0.010850423946976662, 0.00824632216244936, -0.008701684884727001, -0.009640868753194809, 0.018100641667842865, -0.024746082723140717, -0.008822640404105186, -0.031078461557626724, 0.008296127431094646, -0.02316654473543167, -0.009690674021840096, -0.01568153128027916, 0.0037958696484565735, -0.03412369638681412, -0.007499244064092636, 0.014429285190999508, -0.03289990872144699, 0.03469289839267731, 0.03278606757521629, 0.012323236092925072, -0.006524484604597092, -0.01324819028377533, 0.018228713423013687, 0.03603052347898483, -0.009968160651624203, -0.017744891345500946, 0.027051351964473724, -0.029797755181789398, 0.013767587020993233, 0.028488589450716972, -0.003888365114107728, -0.06101851537823677, 0.009818744845688343, 0.03936035931110382, -0.00757750915363431, -0.03201764449477196, -0.005055230576545, -0.018186021596193314, -0.014955798164010048, 0.00025036020088009536, 0.01191056426614523, -0.006972731556743383, 0.005026770289987326, 0.013127234764397144, -0.028744731098413467, 0.002235898980870843, -0.0019993241876363754, 0.0033974279649555683, 0.009498568251729012, -0.022554652765393257, 0.019125206395983696, -0.06705206632614136, -0.011540582403540611, 0.004863124340772629, 0.024020349606871605, 0.0036677990574389696, -0.008047101087868214, 0.010266991332173347, -0.0008053327328525484, -0.014315444976091385, -0.014329674653708935, -0.010074885562062263, -0.016393033787608147, 0.039132677018642426, 0.00997527502477169, -0.01748874969780445, 0.023749977350234985, -0.026396770030260086, -0.016094202175736427, -0.008900905027985573, 0.017261067405343056, -0.00447535514831543, -0.004496700596064329, 0.04217791184782982, -0.014094878919422626, 0.013532791286706924, 0.05091517046093941, -0.021074725314974785, 0.010146035812795162, -0.034806739538908005, -0.03637204319238663, 0.013006279245018959, 0.005944609642028809, 0.003927497658878565, -0.008972055278718472, 0.03025311790406704, 0.010843309573829174, 0.022398121654987335, -0.007783845532685518, 0.015823831781744957, 0.0013998826034367085, 0.02322346530854702, 0.0006550276884809136, -0.008047101087868214, -0.005617318209260702, -0.006513812113553286, -0.015197709202766418, -0.002564969239756465, -0.013006279245018959, -0.02079012431204319, 0.025542965158820152, 0.008687454275786877, 0.018314093351364136, -0.0006136715528555214, -0.021643927320837975, 0.012401501648128033, -0.003034561173990369, 0.01808641292154789, -0.03079386055469513, -0.00546078709885478, -0.0074565536342561245, 0.029826214537024498, 0.009114356711506844, 0.005567512940615416, -0.0034383393358439207, -0.01508386805653572, -0.0049093724228441715, 0.012045749463140965, 0.03079386055469513, 0.02400611899793148, -0.0044362228363752365, -0.005243778694421053, -0.008310358040034771, 0.017317987978458405, 0.031192300841212273, 0.013006279245018959, -0.011234636418521404, 0.03176150470972061, 0.0003855458053294569, 0.012052864767611027, -0.00997527502477169, -0.027421334758400917, -0.0002543624141253531, 0.0128568634390831, -0.011170600540935993, -0.015795372426509857, -0.019722869619727135, -0.0019512976286932826, -0.011689998209476471, -0.023337306454777718, 0.0025596327614039183, 0.020377451553940773, 0.012970703653991222, 0.036400504410266876, 0.01773066073656082, -0.01781604066491127, 0.05737562105059624, -0.000536295585334301, -0.007378288544714451, -0.018186021596193314, -0.014913107268512249, -0.011931909248232841, 0.0031163841485977173, -0.003867020132020116, -0.010195841081440449, -0.010971379466354847, 0.0014683647314086556, 0.02568526566028595, 0.014507550746202469, -0.011640192940831184, -0.018186021596193314, -0.021131645888090134, -0.014301215298473835, -0.03657126426696777, -0.003927497658878565, -0.009598178789019585, -0.012586492113769054, -0.003948843106627464, -0.007378288544714451, -0.012387271039187908, -0.004158736206591129, -0.003813657211139798, 0.013312225230038166, -0.011149255558848381, -0.017431829124689102, -0.01042352244257927, 0.004098258446902037, -0.006734378170222044, -0.003562852507457137, -0.006866006180644035, 0.028317827731370926, -0.016293423250317574, 0.008367277681827545, -0.004631885793060064, 0.007833650335669518, -0.01177537813782692, 0.01829986274242401, 0.022725412622094154, -0.02787669561803341, 0.019281737506389618, -0.029911596328020096, -0.00015186147356871516, 0.011917678639292717, -0.0013002721825614572, 0.014173144474625587, -0.005909034516662359, -0.02019246108829975, -0.019068285822868347, -0.017502980306744576, 0.006855333689600229, -0.036912787705659866, 0.012180935591459274, -0.01170422788709402, 0.019125206395983696, -0.021857379004359245, -0.027563635259866714, -0.015354239381849766, -0.010836194269359112, -0.015340009704232216, 0.022839253768324852, -0.014158913865685463, -0.030651558190584183, 0.000255029444815591, 0.014429285190999508, -0.016535334289073944, 0.029940055683255196, -0.011540582403540611, -0.015937672927975655, -0.006535157095640898, -0.013297995552420616, 0.010067770257592201, 0.013077429495751858, 0.013426066376268864, -0.0058627864345908165, -0.0075277043506503105, 0.025286825373768806, -0.01216670498251915, 0.012977818958461285, 0.0036464540753513575, 0.022938864305615425, 0.0003702040121424943, -0.015396930277347565, -0.002529393881559372, -0.003267578547820449, 0.02222735993564129, -0.0002830448793247342, 0.001449687872081995, -0.009384728036820889, 0.01703338697552681, -0.032672226428985596, -0.0025952081196010113, 0.01225920021533966, 0.031704582273960114, -0.005692025646567345, 0.028588199988007545, 0.006442661862820387, 0.004361514933407307, 0.017317987978458405, -0.002104270737618208, -0.019609028473496437, -0.015724221244454384, -0.011405397206544876, -0.01435813494026661, 0.004752841778099537, 0.025756416842341423, 7.754273246973753e-05, 0.018399473279714584, -0.022810794413089752, 0.005105035845190287, 0.026752522215247154, -0.009704903699457645, -0.003824329935014248, -0.017317987978458405, 0.0040591261349618435, -0.010935804806649685, 0.02211352065205574, -0.032700687646865845, -9.72202469711192e-05, -0.006101140286773443, -0.02865934930741787, -0.04012878239154816, 0.007196855265647173, -0.027805546298623085, 0.0051904162392020226, -0.031135382130742073, 0.008196516893804073, 0.022455042228102684, 0.01538269966840744, -0.03289990872144699, -0.017175687476992607, 0.009598178789019585, 0.009676444344222546, 0.0025311727076768875, -0.00997527502477169, 0.004041338339447975, 0.007876340299844742, -0.02370728738605976, 0.016720326617360115, -0.006577847525477409, 0.03147690370678902, -0.028773190453648567, -0.02541489526629448, -0.0296839140355587, -0.01940980739891529, 0.0035521797835826874, 0.02460378222167492, 0.009598178789019585, -0.01246553659439087, -0.029057791456580162, 0.010295451618731022, 0.007470783777534962, -0.0033333925530314445, -0.01970863901078701, -0.013056084513664246, 0.025941407307982445, -0.0038100997917354107, 0.009605293162167072, -0.017858730629086494, -0.004318824503570795, 0.027364414185285568, -0.008125366643071175, -0.0019210587488487363, 0.014294099994003773, 0.005008982960134745, -0.04121026769280434, 0.029000870883464813, -0.01293512899428606, -0.004503815434873104, 0.014094878919422626, 0.008886675350368023, -0.019011367112398148, 0.0035023747477680445, -0.01481349766254425, -0.00722531508654356, 0.02925701253116131, -0.011746917851269245, 0.01231612078845501, -0.0003859905118588358, -0.010658318176865578, 0.016336113214492798, -0.0025471814442425966, 7.487459515687078e-05, -0.01592344231903553, -0.01481349766254425, 0.007968836463987827, 0.01570999063551426, 0.012878208421170712, 0.004852451849728823, -0.0017396253533661366, 0.029797755181789398, 0.007748269941657782, 0.0023355092853307724, 0.00863764900714159, 0.0322737880051136, -0.01703338697552681, 0.030537718906998634, -0.007139934692531824, -0.013966808095574379, 0.007598854601383209, 0.03301374986767769, 0.005524822510778904, 0.006890908814966679, -0.01973710022866726, -0.03085077926516533, -0.02854551002383232, -0.006104697473347187, -0.00028393426327966154, -0.0054003093391656876, 0.010715238749980927, 0.006549387238919735, -0.0034454544074833393, 0.020092850551009178, 0.012429961003363132, -0.002308828057721257, -0.016023052856326103, -0.01808641292154789, 0.009021860547363758, -0.011576157063245773, 0.002022447995841503, -0.01418025977909565, -0.025969868525862694, 0.026325618848204613, -0.010523132979869843, 0.02313808538019657, 0.010302566923201084, -0.025429125875234604, 0.002968747168779373, 0.006905138958245516, -0.009334922768175602, 0.010053540579974651, -0.011533467099070549, -0.010935804806649685, 0.03252992779016495, -0.01146231684833765, 0.013041853904724121, 0.006979846861213446, -0.011739803478121758, 0.00027970969676971436, -0.006211423315107822, 0.01908251643180847, -0.006602750159800053, 0.02370728738605976, 0.033212970942258835, -0.011483661830425262, -0.01036660186946392, 0.0033440652769058943, 0.01913943700492382, 0.016051512211561203, 0.01694800704717636, 0.029399313032627106, -0.020533982664346695, 0.013945463113486767, 0.007513474207371473, 0.002465358702465892, -0.0012993827695026994, 0.003080809023231268, 0.033753711730241776, 0.013006279245018959, 0.03728276863694191, -0.005435884464532137, -0.02192853018641472, -0.0019904302898794413, -0.006464006844907999, 0.00466390373185277, 0.009384728036820889, 0.017659509554505348, 0.01916789636015892, 0.027862466871738434, -0.007282235659658909, 0.011867874301970005, -0.024589551612734795, -0.0014905992429703474, 0.019125206395983696, 0.009199736639857292, -0.0013207278680056334, -0.012344581075012684, -0.002680588513612747, 0.012764368206262589, 0.006332378834486008, -0.020078621804714203, -0.0069656167179346085, -0.0015119443414732814, 0.006951386574655771, -0.04160870984196663, -0.02349383570253849, -0.021615467965602875, -0.0046354434452950954, -0.005087248049676418, 0.0002236788277514279, 0.01508386805653572, -0.011732688173651695, -0.011889219284057617, -0.001152635202743113, 0.020149771124124527, 0.0017165015451610088, -0.007798075210303068, 0.004212099127471447, -0.01003219559788704, 0.018427934497594833, -0.030964620411396027, -0.012486881576478481, -0.0013394048437476158, 0.0012362368870526552, 0.007798075210303068, 0.03941727802157402, -0.012892438098788261, 0.011106565594673157, -0.008886675350368023, 0.01287109311670065, -0.004404204897582531, -0.020092850551009178, -0.03304221108555794, -0.025457585230469704, 0.03437983617186546, -0.04212098941206932, -0.004343727137893438, 0.008666109293699265, 0.02301001362502575, 0.007314253132790327, -0.006741493009030819, -0.004468240309506655, -0.01733221858739853, -0.00808267667889595, -0.003537949873134494, -0.01598036289215088, -0.012572262436151505, 0.0007906579412519932, -0.025130294263362885, -0.00021634144650306553, 0.0003617549082264304, -0.013902773149311543, -0.00916416198015213, 0.0015635283198207617, -0.017659509554505348, 0.02222735993564129, 0.053248900920152664, -0.030509257689118385, 0.055924154818058014, -0.014315444976091385, 0.01784450188279152, -0.019537879154086113, -0.026311390101909637, -0.012622067704796791, 0.021017804741859436, 0.003792312229052186, 0.016663406044244766, -0.012878208421170712, 0.013867197558283806, -0.025244135409593582, 0.052167415618896484, 0.012572262436151505, -0.0049164872616529465, 0.005094362888485193, 0.030680019408464432, -0.017047617584466934, -0.007591739296913147, 0.02460378222167492, -0.01700492762029171, 0.01183941401541233, -0.01434390526264906, 0.02860243059694767, 0.009911240078508854, -0.011960369534790516, -0.003324498888105154, 0.007189739961177111, -0.014393710531294346, 0.008580729365348816, 0.02592717856168747, -0.01935288868844509, -0.020647823810577393, -0.00572404358536005, -0.022967323660850525, -0.005617318209260702, -0.02670983038842678, 0.0024137746077030897, 0.009875664487481117, -0.031647663563489914, 0.003856347408145666, -0.012373041361570358, -0.004944947548210621, -0.005919707007706165, 0.009078781120479107, -0.025286825373768806, -0.024618010967969894, 0.010629857890307903, 0.0040840283036231995, 0.020477062091231346, 0.00847400352358818, 0.005236663855612278, -0.00942030269652605, 0.01727529801428318, 0.002241235226392746, 0.014550240710377693, -0.010117575526237488, 0.02103203535079956, 0.02214198000729084, -0.027136733755469322, -0.0006603639340028167, -0.0031946494709700346, 0.04121026769280434, -0.002283925423398614, 0.003963072784245014, -0.017744891345500946, -0.037567369639873505, -0.015453849919140339, 0.004656788427382708, 0.01135559193789959, 0.003877692623063922, 0.010636973194777966, 0.017559899017214775, -0.008260552771389484, -0.017616819590330124, 0.006008644588291645, 0.0068695638328790665, 0.005524822510778904, -0.006545829586684704, 0.00659563485532999, 0.00512993847951293, -0.0009818744147196412, -0.004937832243740559, 0.007549049332737923, 0.0056706806644797325, -0.01718991808593273, 0.0010218964889645576, -0.01427275501191616, 0.01811487227678299, 0.014429285190999508, 0.0039879754185676575, 0.0059410519897937775, -0.015226169489324093, -0.016264963895082474, -0.019395578652620316, 0.004557178355753422, -0.017374908551573753, 0.0008200074662454426, 0.01724683865904808, 0.016179583966732025, -0.018371013924479485, -0.005706255789846182, -0.0015208381228148937, -0.0028068802785128355, -0.01919635757803917, 0.015197709202766418, -0.018001031130552292, 0.006905138958245516, 0.0008382397354580462, 0.06790586560964584, -0.007961721159517765, 0.0021220583003014326, 0.005403866991400719, 0.0015964353224262595, -0.0048311068676412106, -0.0065991925075650215, 0.0009792062919586897, 0.02376420795917511, -0.0031644105911254883, 0.001678258297033608, 0.0032604634761810303, 0.01727529801428318, -0.0028833667747676373, -0.031192300841212273, -0.005727600771933794, 0.015197709202766418, 0.03449367731809616, -0.021046265959739685, 0.014144684188067913, -0.007100802380591631, -0.0027748625725507736, 0.004891584627330303, 0.013105889782309532, -0.012358810752630234, 0.027364414185285568, 0.0031146053224802017, -0.0034703570418059826, 0.007983066141605377, 0.020989345386624336, 0.009384728036820889, -0.020861275494098663, -0.005528380163013935, -0.01721837744116783, -0.0006185630918480456, 0.017232608050107956, 0.010153151117265224, 0.015795372426509857, -0.012992048636078835, 0.010836194269359112, 0.019310196861624718, -0.012323236092925072, 0.011014070361852646, 0.026055248454213142, -0.012892438098788261, 0.005329159088432789, 0.0036411178298294544, -0.0001484151289332658, -0.0007639765972271562, -0.020960886031389236, -0.007705579977482557, -0.017204148694872856, 0.016122663393616676, 0.014955798164010048, 0.014151799492537975, -0.006062007509171963, 0.009612408466637135, 0.009797399863600731, -0.002018890343606472, 0.00028793647652491927, -0.025343744084239006, -0.008452658541500568, -0.0044433376751840115, -0.035347480326890945, 0.0026948184240609407, -0.013888543471693993, -0.00878706481307745, -0.01198882982134819, -0.0052935839630663395, -0.014799267053604126, -0.006627652794122696, -0.01319126971065998, 0.007911915890872478, -0.016663406044244766, -0.0064248740673065186, 0.03654280677437782, 0.022312741726636887, 0.03230224549770355, 0.040185701102018356, -0.015766911208629608, -0.011554812081158161, -0.0023817571345716715, 9.666438563726842e-05, -0.011255981400609016, 0.01538269966840744, -0.006268343422561884, 0.02490261383354664, -0.03941727802157402, 0.01868407428264618, -0.0325014665722847, -0.016805706545710564, 0.0003146178205497563, 0.010537362657487392, -0.002947402186691761, 0.007961721159517765, -0.006524484604597092, 0.010238531045615673, 0.0032960386015474796, 0.003447233233600855, -0.01600882224738598, -0.01625073328614235, 0.02641100063920021, 0.001576869050040841, -0.013177040033042431, 0.005272238980978727, 0.004027108196169138, 0.030993079766631126, -0.002789092715829611, -0.016478415578603745, 0.026724060997366905, 0.0011508564930409193, -0.0013625286519527435, 0.002746402518823743, 0.0037140469066798687, -0.02276810258626938, -0.015667300671339035, 0.005250893998891115, -0.006161618046462536, -0.013070314191281796, -0.008651879616081715, 0.0034863657783716917, 0.004493142943829298, -0.007115032058209181, -0.006072680000215769, -0.0009436311665922403, 0.001068144221790135, -0.013376261107623577, -0.006200750824064016, -0.014984258450567722, -0.0270086620002985, 0.02087550424039364, 0.01536846999078989, 0.011725572869181633, -0.008445543237030506, 0.034863658249378204, -0.008388622663915157, -0.02394919842481613, -0.009235312230885029, -0.00040666855056770146, -0.02081858366727829, 0.018484853208065033, 0.012145360000431538, 0.018200252205133438, 0.0014096657978370786, -0.004920044913887978, 0.0028300040867179632, -0.019964780658483505, -0.040697984397411346, -0.007047439459711313, -0.009391842409968376, 0.02448994107544422, -0.0297692958265543, 0.004631885793060064, -0.017659509554505348, 0.001561749610118568, 0.005265123676508665, -0.027663245797157288, 0.03406677395105362, -0.006382184103131294, -0.005937494337558746, 0.01481349766254425, -0.002813995350152254, -0.009704903699457645, -0.0014443515101447701, -0.0037460646126419306, 0.006069122347980738, 0.005161955952644348, 0.015112328343093395, 0.005631547886878252, -0.008594959042966366, 0.015966132283210754, -0.013554136268794537, 0.014479090459644794, -0.01418025977909565, -0.006681015249341726, -0.007862110622227192, -0.003329835133627057, -0.010053540579974651, -0.027350183576345444, 0.01622227393090725, 0.00012251196312718093, 0.004930717404931784, 0.027392873540520668, 0.01435813494026661, -0.002246571471914649, -0.009413187392055988, 0.01294935867190361, -0.014279869385063648, -0.008986285887658596, 0.001285152742639184, -0.012550916522741318, 0.016421495005488396, -0.0017538554966449738, -0.0033422864507883787, -0.019993240013718605, -0.008075561374425888, 0.028189757838845253, -0.00427257688716054, 0.022511962801218033, 0.007420978508889675, 0.0063964142464101315, -0.008239207789301872, 0.015510770492255688, 0.008979170583188534, -0.017645280808210373, -0.025372205302119255, -0.016535334289073944, -0.015880752354860306, -0.00942030269652605, -0.0037104892544448376, -0.02508760429918766, -0.022156210616230965, -0.0035290559753775597, 0.018513314425945282, -0.028758959844708443, -0.014094878919422626, 0.02448994107544422, -0.0014167807530611753, 0.0025418451987206936, 0.0080684470012784, 0.010323911905288696, 0.007004749495536089, 0.003977302927523851, -0.012686102651059628, -0.029015101492404938, 0.0035521797835826874, 0.0034169943537563086, 0.019509417936205864, 0.019850939512252808, -0.02124548703432083, 0.029399313032627106, 0.0025880930479615927, -0.009626639075577259, 0.014656966552138329, -0.01170422788709402, 0.031163841485977173, -0.004745726473629475, 0.013824507594108582, 0.008751490153372288, -0.005980184767395258, -0.010658318176865578, -0.010430637747049332, -0.007705579977482557, -0.012522457167506218, 0.008630533702671528, -0.02646791934967041, -0.013162809424102306, 0.0043650721199810505, -0.010295451618731022, -2.26096817641519e-05, -0.003511268412694335, -0.018997136503458023, 0.00039955353713594377, 0.002088262001052499, 0.029598534107208252, 0.005546167492866516, 0.010608512908220291, 0.005674238316714764, -0.006663227919489145, -0.01814333163201809, 0.012209394946694374, 0.011782493442296982, -0.011832298710942268, -0.023237695917487144, 0.00917839165776968, 0.027649015188217163, -0.02922855317592621, 0.010096230544149876, 0.0015057186828926206, 0.006844661198556423, 0.00039332787855528295, -0.003916825167834759, 0.009953930042684078, 0.00579875148832798, 0.017204148694872856, -0.004884469788521528, -0.008331703022122383, -0.021757768467068672, 0.00431170966476202, 0.011547697708010674, 0.0016800370067358017, 0.006339493673294783, 0.011063875630497932, -0.01484195701777935, -0.0004493587475735694, -0.010615628212690353, 0.00014352354628499597, 0.000738184608053416, -0.015425389632582664, 0.007620199583470821, 0.025101833045482635, -0.012757252901792526, 0.00031350611243397, -0.006762837991118431, -0.005830768961459398, 0.01832832396030426, 0.0061260429210960865, -0.009000515565276146, 0.01935288868844509, -0.011953254230320454, -0.01949518918991089, -0.0011090557090938091, -0.004870239645242691, -0.015197709202766418, 0.008580729365348816, 0.012188049964606762, 0.02646791934967041, -0.00490581477060914, -0.013048969209194183, 0.0051014781929552555, 0.009555487893521786, -0.003034561173990369, -0.02352229692041874, 0.005080133210867643, -0.017716430127620697, 0.00220032362267375, 0.0008626976632513106, 0.0175741296261549, -0.03733969107270241, 0.011754033155739307, 0.0048133195377886295, -0.006200750824064016, 0.01573845185339451, 0.0061438302509486675, 0.000966755033005029, -0.002858464140444994, 0.010380832478404045, 0.013027624227106571, 0.01817179284989834, -0.022938864305615425, 0.02584179677069187, 0.014130454510450363, -0.013219729997217655, -0.006844661198556423, -0.002746402518823743, 0.010950034484267235, -0.024162650108337402, -0.01664917543530464, -0.002479588845744729, -0.0022341201547533274, -0.0017600811552256346, -0.007268005516380072, -0.02214198000729084, 0.0016017716843634844, 0.013312225230038166, 0.0031323928851634264, 0.00654227240011096, -0.015041178092360497, 0.02373574860394001, 0.01183941401541233, -0.005969512276351452, 0.004368629772216082, 0.024731852114200592, 0.007033209316432476, -0.017047617584466934, -0.013767587020993233, 0.015425389632582664, 0.01565307192504406, -0.005919707007706165, 0.0013571924064308405, -0.020633593201637268, 0.032188404351472855, 2.1358993762987666e-05, -0.027193652465939522, 0.008673224598169327, -0.00294384453445673, -0.013297995552420616, 0.006866006180644035, -0.04280403256416321, 0.0012575819855555892, -0.0036891442723572254, -0.01309877447783947, -0.014109108597040176, -0.017858730629086494, -0.0012024404713883996, 0.016037283465266228, 0.0026218893472105265, -0.01371778268367052, 0.006104697473347187, -0.005261566489934921, 0.028161298483610153, 0.0008506910526193678, -0.02070474438369274, -0.0188406053930521, 0.005368291866034269, 0.002278589177876711, 0.022540422156453133, -0.0014799267519265413, 0.0017485191347077489, -0.005368291866034269, -0.011633077636361122, 0.0037140469066798687, -0.012365926057100296, 0.008445543237030506, 0.0002414664049865678, 0.0228961743414402, -0.014998488128185272, 0.015354239381849766, 0.0037674095947295427, 0.013404720462858677, 0.00646756449714303, 0.005083690397441387, 0.01536846999078989, 0.00754193402826786, 0.011028300039470196, -0.024646472185850143, 0.005030327942222357, 0.023180775344371796, 0.028773190453648567, -0.005780963692814112, 0.006343051325529814, -0.012088439427316189, -0.022938864305615425, -0.005688468459993601, 0.016876855865120888, 0.007196855265647173, -0.0025952081196010113, -0.002910048235207796, -0.006268343422561884, -0.005780963692814112, -0.0007515252800658345, 0.013667977415025234, 0.025315284729003906, 0.007869225926697254, 0.007275120355188847, -0.007819420658051968, 0.023906508460640907, -0.007086572237312794, -0.010722354054450989, 0.0015208381228148937, -0.00989700946956873, 0.02057667262852192, -0.0016720326384529471, 0.01673455536365509, -0.02033476158976555, -0.015226169489324093, 0.02746402472257614, -0.018242942169308662, 0.007260890677571297, 0.0035877551417797804, -0.025400664657354355, -0.01066543348133564, -0.012180935591459274, 0.007862110622227192, 0.003792312229052186, 0.005268681328743696, 0.01131290104240179, 0.024233799427747726, -0.008075561374425888, -0.019907860085368156, -0.016748785972595215, 0.028246678411960602, -0.00438641756772995, -0.019865170121192932, -0.008452658541500568, -0.011006955057382584, 0.006741493009030819, -0.009555487893521786, 0.010082000866532326, -0.020121311768889427, 0.010245646350085735, -0.002783756470307708, 0.011497892439365387, 0.00015786477888468653, 0.002379978308454156, 0.0189544465392828, 0.018783684819936752, -0.007591739296913147, -0.006083352491259575, 0.012643412686884403, -0.02273964323103428, 0.02325192466378212, -0.0003888809878844768, -0.0041658515110611916, 0.005268681328743696, 0.022554652765393257, -0.004052010830491781, 0.0031590743456035852, 0.0024742523673921824, 0.005859229248017073, -0.015411159954965115, 0.00042490081978030503, -0.0057596187107264996, 0.006698803044855595, 0.03714046999812126, -0.010750813409686089, 0.003118162974715233, 0.020021701231598854, -0.00949145294725895, 0.00782653596252203, 0.007285792846232653, -0.001727174036204815, 0.0051904162392020226, -0.014671196229755878, 0.01952364854514599, -0.0013892099959775805, 0.004656788427382708, 0.029427774250507355, -0.009818744845688343, 0.019836710765957832, 0.0094772232696414, -0.005048115272074938, -0.009640868753194809, -0.008658993989229202, 0.0001507497509010136, -0.003201764542609453, -0.0052864691242575645, 0.01952364854514599, 0.004080471117049456, 0.004073355812579393, 0.0009320692042820156, -0.01254380214959383, -0.014955798164010048, 0.0073427134193480015, -0.003527277149260044, 0.018883295357227325, 0.008630533702671528, -0.0015875415410846472, -0.0025044914800673723, 0.002890481846407056, -0.011896333657205105, -0.026510611176490784, 0.003664241638034582, 0.016506874933838844, 0.005635105539113283, 0.00971913430839777, 0.01003219559788704, 0.01403084397315979, -0.0006256781634874642, -0.010067770257592201, -0.017175687476992607, -0.0023497394286096096, 0.002152297180145979, -0.004912929609417915, -0.009093010798096657, 0.02355075627565384, 0.01679147593677044, 0.022298511117696762, 0.02424803003668785, -0.017019156366586685, 0.0031092690769582987, 0.022127751260995865, 0.00399509072303772, 0.006552944891154766, -0.005350504070520401, -0.011583272367715836, 0.007897686213254929, -0.001524395658634603, -0.01082907896488905, -0.0013420729665085673, -0.015809601172804832, -0.00040133227594196796, 0.027990536764264107, 0.008616304025053978, 0.030082356184720993, -0.015596150420606136, -0.0017894306220114231, -0.0012157810851931572, 0.011419626884162426, 0.014294099994003773, 0.006264785770326853, -0.00782653596252203, -0.005073017906397581, -0.0013767587952315807, -0.024731852114200592, -0.0018027713522315025, 0.026994433254003525, -0.022511962801218033, -0.006866006180644035, 0.013276650570333004, -0.001592877903021872, -0.004233444109559059, -0.022099290043115616, 0.01162596233189106, -0.0044433376751840115, -0.0012273431057110429, -0.017531439661979675, -0.0006470232619903982, 0.016819937154650688, 0.006214980501681566, 0.010686778463423252, -0.03307066857814789, -0.013177040033042431, 0.007314253132790327, 0.01802949234843254, 0.0024084383621811867, 0.015254628844559193, 0.004767071455717087, 0.01246553659439087, -0.010537362657487392, 0.028218217194080353, -0.02809014730155468, 0.002059801947325468, -0.006026432383805513, 0.002490261336788535, 0.019182126969099045, -0.00043735213694162667, 0.011391166597604752, -0.03603052347898483, -0.016478415578603745, 0.0033494015224277973, 0.01622227393090725, 0.011526352725923061, -0.004649673588573933, -0.012835518456995487, -0.0023195005487650633, 0.0019637488294392824, -0.03130614385008812, -0.006360838655382395, -0.008239207789301872, 0.0015439620474353433, -0.010601398535072803, 0.029399313032627106, -0.03073693998157978, -0.004478912800550461, -0.006698803044855595, 0.01995055004954338, -0.002438677242025733, 0.033725254237651825, -0.012572262436151505, -0.023379996418952942, 0.004368629772216082, -0.011917678639292717, 0.02187160961329937, -0.020590903237462044, -0.007627314422279596, 0.019424038007855415, 0.012515341863036156, 0.020420143380761147, -0.002867358038201928, 0.012928013689815998, 0.002728614956140518, -0.0020420141518115997, -0.0161368940025568, 0.002968747168779373, 0.0005905476864427328, -0.010316796600818634, 0.0022590227890759706, 0.0010699229314923286, -0.018157562240958214, 0.0035841974895447493, -0.005396752152591944, 0.0037851971574127674, -0.0020740318577736616, 0.005706255789846182, -0.004699478857219219, 0.016634944826364517, 0.0020117752719670534, -0.0030897026881575584, 0.008957825601100922, -0.005364734213799238, -0.00757750915363431, -0.010188725776970387, 0.029883135110139847, -0.010302566923201084, -0.023081164807081223, -0.0039701880887150764, -0.01857023499906063, 0.014984258450567722, -0.01868407428264618, -0.017830271273851395, -0.03403831273317337, 0.001763638574630022, 0.020633593201637268, -0.0018356783548370004, 0.00305768521502614, -0.007356943562626839, 0.0008186734048649669, 0.017076076939702034, -0.03028157725930214, 0.0033013750799000263, 0.011291556060314178, -0.020292071625590324, 0.021473167464137077, 0.011732688173651695, 0.004962734878063202, 0.00878706481307745, -0.02689482271671295, -0.014151799492537975, -0.011177715845406055, 0.0036855866201221943, 0.005955282133072615, 0.0015822052955627441, -0.014443515799939632, -1.484151289332658e-05, 0.010957149788737297, 0.016236504539847374, -0.01832832396030426, -0.006986961700022221, 0.006456892006099224, -0.022753873839974403, -0.006645440123975277, -0.022640032693743706, -0.03241608664393425, 0.014856187626719475, 0.010508902370929718, -0.017958341166377068, -7.51108382246457e-06, -0.011917678639292717, -0.03554670140147209, -0.01835678331553936, 0.004603425972163677, 0.0087728351354599, 0.0006145609077066183, -0.0009889894863590598, -0.00996104534715414, 0.021103186532855034, 0.028616659343242645, -0.009470107965171337, -0.00853092409670353, 0.015098098665475845, 0.018242942169308662, 0.01027410663664341, -0.010900229215621948, -0.001428342773579061, -0.03500596061348915, 0.019850939512252808, -0.00032862555235624313, -0.021672388538718224, -0.011149255558848381, 0.0014683647314086556, 0.008281897753477097, 0.016264963895082474, 0.003123499220237136, 0.00585211394354701, -0.008908020332455635, -0.007463668938726187, -0.006581404712051153, -0.003029224928468466, -0.002460022456943989, 0.02325192466378212, 0.0022394564002752304, -0.017559899017214775, 0.02379266731441021, -0.004799089394509792, 0.008523808792233467, 0.028474358841776848, -0.002714384812861681, 0.0068695638328790665, 0.008587843738496304, -0.017175687476992607, -0.01536846999078989, -0.00932780746370554, 0.0021327310241758823, -0.0007208416936919093, -0.000897828140296042, 0.0019726427271962166, 0.0073427134193480015, -0.01721837744116783, 0.01997901126742363, -0.011512122116982937, 0.005848556756973267, 0.011818069033324718, -0.0018356783548370004, 0.023123854771256447, 0.0004184528370387852, 0.01538269966840744, -0.011376936919987202, 0.004859567154198885, 0.013177040033042431, -0.00043090415420010686, 0.028161298483610153, -0.00757750915363431, -0.003931055311113596, -0.00501609779894352, 0.00126380764413625, 0.004596310667693615, -0.013468756340444088, -0.030452338978648186, 0.027535174041986465, 0.00015875416283961385, -0.02641100063920021, -0.004101816099137068, -0.02776285633444786, 4.035557503812015e-05, -0.03176150470972061, -0.015510770492255688, -0.014308329671621323, 0.00886533036828041, 0.019096747040748596, 0.005631547886878252, 0.0023924296256154776, -0.019580569118261337, -0.004823992028832436, -0.020903965458273888, 0.0026254469994455576, 0.030964620411396027, 0.00854515377432108, 0.014955798164010048, 0.020135540515184402, 0.00044024261296726763, 0.01857023499906063, -0.03329835087060928, 0.02214198000729084, 0.01976555958390236, 0.004258346743881702, -0.00855938345193863, -0.01484195701777935, 0.0007906579412519932, -0.015340009704232216, 0.018200252205133438, -0.0032462335657328367, 0.007189739961177111, -0.002981198485940695, -0.005037442781031132, 0.005866344086825848, -0.0073427134193480015, 0.013184154406189919, 0.017531439661979675, 0.005169070791453123, 0.003372525330632925, 0.0006803749711252749, 0.0005887689185328782, 0.00031795300310477614, -0.007392518687993288, -0.004290364682674408, -0.0010717017576098442, -0.013305109925568104, -0.002655685879290104, 0.014123339205980301, -0.00730002298951149, 0.006254113279283047, 0.02322346530854702, -0.0188406053930521, -0.03853501379489899, 0.00126380764413625, 0.01082907896488905, 0.01223074086010456, 0.0016257849056273699, -0.018015261739492416, 0.0054856897331774235, 0.00451448792591691, -0.009555487893521786, 0.010843309573829174, -0.0038812500424683094, -0.011156370863318443, 0.0071683949790894985, -0.005055230576545, 0.019395578652620316, 0.001109945005737245, 0.009790284559130669, -0.027649015188217163, 0.008011526428163052, 0.0035521797835826874, -0.0018205589149147272, -0.0094772232696414, -0.002680588513612747, -0.008737259544432163, -0.011014070361852646, -0.039218056946992874, 0.00848823320120573, 0.018470624461770058, 0.0045393905602395535, 0.0037140469066798687, -0.009847205132246017, -0.000903164385817945, -0.014550240710377693, -0.024660702794790268, 0.00956971850246191, -0.016193812713027, 0.017261067405343056, 0.04362937808036804, -0.005019655451178551, -0.009783169254660606, 0.012337465770542622, -0.005450114607810974, -0.002650349633768201, -0.012116899713873863, -0.006186520680785179, -0.005720485933125019, -0.012486881576478481, -0.011554812081158161, 0.0030950389336794615, 0.0027019334957003593, -0.0002808214339893311, 0.012223625555634499, 0.0017093864735215902, 0.003553958609700203, -0.01332645583897829, 0.0014772586291655898, -0.012287660501897335, 0.014365250244736671, 0.012045749463140965, 0.011142140254378319, -0.003831444773823023, -0.0029313932172954082, 0.013724897056818008, 0.019637489691376686, -0.003329835133627057, 0.022070830687880516, 0.008445543237030506, -0.013525675982236862, 0.0005185079644434154, -0.0074138636700809, -0.009498568251729012, 0.015482310205698013, 0.016350343823432922, 0.003941727802157402, -0.007004749495536089, 0.01865561492741108, -0.010252761654555798, 0.0018641384085640311, -0.013233959674835205, -0.008409968577325344, -0.026425229385495186, -0.008723029866814613, -0.0229246336966753, -0.0013900994090363383, -0.026012558490037918, 0.01435813494026661, -0.01763105019927025, -0.015169248916208744, 0.00620430801063776, -0.001901492360047996, 0.0021647484973073006, 0.013269535265862942, 0.016891086474061012, 0.0017609704518690705, -0.008915135636925697, -0.005599530413746834, -0.0065102544613182545, -0.002013554098084569, 0.0043579572811722755, 0.003064800053834915, 0.015211938880383968, 0.010402177460491657, -0.01733221858739853, -0.006766395643353462, -0.007890570908784866, -0.012501112185418606, 0.009904124774038792, -0.006439104210585356, 0.0077198101207613945, 0.005265123676508665, -0.014642736874520779, 0.009904124774038792, 0.0031039328314363956, 0.0010983831016346812, -0.013404720462858677, 0.02439033053815365, 0.011028300039470196, -0.0009125028736889362, -0.0033760827500373125, -0.007004749495536089, -0.021402016282081604, 0.00039710773853585124, -0.0029616320971399546, -0.0015653071459382772, -0.0008942706044763327, 0.002486703684553504, 0.005802308674901724, 0.003500595921650529, 0.006638325285166502, -0.008694569580256939, 0.0025934292934834957, 0.014201604761183262, -0.006371511612087488, -0.006666785106062889, -0.025813337415456772, -0.0004233444342389703, -0.021259715780615807, -0.0019904302898794413, 0.01561038102954626, -0.024162650108337402, 0.016079973429441452, -0.022583112120628357, -0.017289528623223305, -0.0007484124507755041, -0.004194311331957579, 0.0005905476864427328, 0.01919635757803917, 0.009142816066741943, -0.02046283334493637, 0.0162791945040226, 0.018100641667842865, 0.022568881511688232, -0.04755687713623047, -0.0030932603403925896, -0.026752522215247154, 0.006275458261370659, -0.008715914562344551, 0.0022056601010262966, 0.013539906591176987, 0.00180632877163589, 0.011433856561779976, -0.004219213966280222, -0.0016124441754072905, 0.007050997111946344, -0.006389298941940069, -0.0037745246663689613, -0.009043206460773945, -0.015026948414742947, -0.011711343191564083, -0.004354399628937244, -0.020989345386624336, -0.007876340299844742, 0.0114480871707201, 0.00525800883769989, -0.027449794113636017, 0.0019530763383954763, 0.010053540579974651, 0.02725057303905487, -0.008331703022122383, 0.004183638840913773, 0.010736583732068539, -0.021288176998496056, 0.015226169489324093, -0.002374642062932253, -0.020989345386624336, 0.005560397636145353, 0.00694782892242074, -0.005777406040579081, -0.0051904162392020226, 0.005770291201770306, -0.029057791456580162, 0.00221989001147449, 0.03301374986767769, 0.02022092230618, -0.001307387137785554, 0.021259715780615807, 0.0007817641599103808, 0.01122040580958128, 0.004720823839306831, -0.010601398535072803, 0.003973745740950108, 0.02776285633444786, -0.015041178092360497, -0.004873797297477722, -0.007086572237312794, -0.01589498296380043, -0.0075277043506503105, -0.006972731556743383, -0.007712694816291332, -0.006524484604597092, -0.013867197558283806, 0.0009213966550305486, 0.0014212277019396424, 0.013383375480771065, 0.018541773781180382, 0.0035770824179053307, 0.0009543037158437073, -0.0009978832677006721, 0.0069656167179346085, 0.011732688173651695, -0.009562603197991848, -0.02809014730155468, 0.010821963660418987, -0.013169924728572369, 0.025884486734867096, 0.010544477961957455, -0.027834005653858185, 0.015211938880383968, -0.013689322397112846, -0.004809761885553598, 0.011810953728854656, 0.008851099759340286, -0.004920044913887978, 0.007869225926697254, 0.003525498555973172, 0.04391397908329964, 0.008217861875891685, 0.009235312230885029, 0.009754708968102932, -0.019253278151154518, -0.006901581306010485, -0.007506358902901411, 0.003682029200717807, -0.002949180779978633, 0.0057596187107264996, 0.007769615389406681, -0.006161618046462536, 0.03304221108555794, 0.007132819853723049, 0.002856685547158122, -0.014365250244736671, 0.004788416903465986, 0.010807733982801437, 0.02192853018641472, -0.010999839752912521, 0.007321368437260389, 0.015026948414742947, -0.0051014781929552555, -0.011263095773756504, -0.00986855011433363, -0.0060371048748493195, -0.021501626819372177, 0.007648659870028496, 0.004500257782638073, 0.0013749799691140652, -0.0037567371036857367, 0.012237855233252048, 0.010224301367998123, -0.01245130691677332, 0.0322737880051136, -0.00730002298951149, -0.01721837744116783, -0.0002545847382862121, -0.004468240309506655, -0.0005901029799133539, 0.0007546381093561649, -0.017104538157582283, 0.008836870081722736, 0.006286131218075752, -0.02060513384640217, 0.012821287848055363, 0.01378893293440342, 0.013134349137544632, -0.012074209749698639, -0.009669329039752483, -0.024803003296256065, 0.010387946851551533, 0.0050054253078997135, -0.027094043791294098, 0.011135025881230831, 0.012565147131681442, 0.006417759228497744, -0.007282235659658909, -0.007406748831272125, 0.02760632522404194, 0.010153151117265224, -0.007463668938726187, 0.008694569580256939, -0.008466888219118118, -0.01561038102954626, -0.005638663191348314, -0.009213967248797417, 0.002490261336788535, -0.00043157118489034474, 0.009505683556199074, 0.01844216324388981, -0.0051192655228078365, -0.012807058170437813, 0.01012469083070755, -0.012472651898860931, 0.00782653596252203, 0.008331703022122383, 0.007890570908784866, 0.008125366643071175, 0.01381739228963852, -0.013724897056818008, 0.018755225464701653, -0.004052010830491781, 0.015354239381849766, 0.01561038102954626, -0.0009854319505393505, -0.005361177027225494, 0.012380155734717846, 0.000966755033005029, 0.014130454510450363, 0.0042512319050729275, -0.005549725145101547, -0.02925701253116131, 0.012956473976373672, -0.0017200590809807181, 0.019367117434740067, 0.024746082723140717, -0.014536011032760143, -0.0020544654689729214, -0.005403866991400719, 0.03016773611307144, -0.004148063715547323, -0.0032907023560255766, -0.011754033155739307, -0.0031750830821692944, 0.0002948291366919875, 0.011889219284057617, -0.023237695917487144, 0.005692025646567345, 0.01255803182721138, 0.00785499531775713, -0.01781604066491127, -0.012885323725640774, -0.008715914562344551, -0.0020046604331582785, 0.006307476200163364, 0.017403369769454002, 0.006478236988186836, 0.009861434809863567, 0.015026948414742947, -0.013041853904724121, -0.003086145268753171, -0.023607676848769188, -0.009313576854765415, -0.011746917851269245, 0.002045571804046631, -0.004240559414029121, -0.01332645583897829, -0.013831622898578644, 0.02706558257341385, 0.019281737506389618, 0.03258684650063515, -0.018214482814073563, -0.01445063017308712, 0.008822640404105186, -0.010039310902357101, 0.01962325908243656, -0.0062398831360042095, -0.0134901013225317, -0.0008827087003737688, 0.006567174568772316, 0.01733221858739853, -0.024532631039619446, 0.007129262201488018, 0.027691705152392387, -0.02384958788752556, -0.009647984057664871, -0.0010859317844733596, -0.0029794196598231792, 0.02030630223453045, 0.016094202175736427, -0.0007048328989185393, 0.012614952400326729, -0.03295683115720749, 0.002650349633768201, -0.00548213254660368, 0.01586652174592018, 0.008566498756408691, -0.011049645021557808, 0.031078461557626724, -0.007968836463987827, -0.007399633526802063, 0.02752094529569149, -0.0006732599576935172, -0.01043775212019682, 0.01245130691677332, -0.019480958580970764, 0.014187374152243137, -0.004382859915494919, 0.008779949508607388, 0.02160123735666275, -0.004564293194562197, 0.010594283230602741, -0.010245646350085735, -0.0056635658256709576, -0.0008991622016765177, 0.014998488128185272, -0.0031110479030758142, 0.018769456073641777, -0.005176186095923185, -0.0017191696679219604, -0.015852291136980057, -0.018314093351364136, -0.00901474617421627, 0.00754193402826786, -0.019068285822868347, -0.004247674252837896, -0.00757750915363431, -0.02241235226392746, -0.00018877070397138596, -0.03844963386654854, 0.02665291167795658, -0.003043455071747303, 0.017958341166377068, 0.0006341272382996976, 0.026425229385495186, 0.0008480229298584163, -0.008758604526519775, -0.012309005483984947, 0.003792312229052186, 0.014130454510450363, -0.010010850615799427, -0.017019156366586685, 0.0024920401629060507, 0.002235898980870843, -0.015055408701300621, -0.0033654102589935064, 0.0048204343765974045, -0.01652110554277897, 0.008602074347436428, -0.002863800385966897, -0.01403084397315979, 0.02003593184053898, -0.008723029866814613, -0.028445899486541748, 0.000679930264595896, -0.03028157725930214, -6.959390884730965e-05, -0.0023408455308526754, -0.0037674095947295427, 0.0021789786405861378, 0.004923602566123009, -0.005215318873524666, -0.003923940472304821, 0.0028869244270026684, -0.0020526868756860495, 0.005272238980978727, 0.04476778209209442, 0.02235543169081211, 0.005645778030157089, -0.010608512908220291, 0.023337306454777718, -0.039161138236522675, -0.006314591038972139, -0.008502463810145855, -0.0020473506301641464, -0.0283889789134264, 0.01691954769194126, -0.003717604326084256, 0.014955798164010048, 0.018285632133483887, -0.017346449196338654, 0.00447535514831543, -0.01131290104240179, -0.014713887125253677, -0.019594799727201462, 0.020107081159949303, 0.01225920021533966, 0.01254380214959383, -0.01279994286596775, -0.017389139160513878, 0.010985610075294971, 0.008175171911716461, 0.009982390329241753, -0.0021007133182138205, -0.007485013920813799, 0.0058627864345908165, 0.027962077409029007, -0.007812305353581905, -0.015781141817569733, 0.010181611403822899, 0.006435546558350325, 0.014984258450567722, 0.0019779789727181196, 0.0033476226963102818, 0.0059588393196463585, -0.0015163912903517485, -0.013518561609089375, -0.006666785106062889, 0.004521603230386972, -0.01721837744116783, -0.030651558190584183, -0.0014790373388677835, 0.005165513604879379, -0.010885999538004398, 0.011689998209476471, 0.011654422618448734, 0.002586314221844077, 0.0002461356343701482, -0.01622227393090725, -0.0019566339906305075, 0.006286131218075752, 0.006022874731570482, 0.014407940208911896, -0.009071665816009045, -0.002184314886108041, -0.01239438634365797, -0.008587843738496304, -0.0014888205332681537, 0.008495348505675793, 0.02752094529569149, -0.00971913430839777, 0.02541489526629448, -0.002813995350152254, 0.007036766968667507, -0.019779790192842484, -0.0048311068676412106, 0.0003922161413356662, -0.022028140723705292, 0.0033476226963102818, -0.021444708108901978, -0.022540422156453133, -0.020206691697239876, -0.024973763152956963, 0.007605969440191984, -0.008644764311611652, 0.02457532100379467, -0.0018001031130552292, 0.00646756449714303, 0.013710667379200459, 0.0007608637679368258, -0.005318486597388983, -0.003927497658878565, -0.021501626819372177, -0.0036002062261104584, 0.018740994855761528, -0.004087585955858231, -0.0349774993956089, -0.00553549500182271, -0.004880912136286497, 0.0034667993895709515, 0.01225920021533966, -0.005738273728638887, -0.014536011032760143, 0.0008876002975739539, 0.002901154337450862, 0.00356818875297904, 0.005222433712333441, 0.010508902370929718, 0.006086910143494606, 0.02427648939192295, -0.01583806239068508, -0.03457905724644661, -0.007285792846232653, -0.00377096701413393, 0.005734716076403856, 0.015567691065371037, -0.01922481693327427, -0.01028833631426096, 0.005179743282496929, 0.010494672693312168, -0.00443978002294898, 0.019850939512252808, 0.010074885562062263, 0.00895071029663086, 0.004962734878063202, 0.00799018144607544, -0.010950034484267235, -0.01255803182721138, 0.01561038102954626, 0.018157562240958214, 0.0022554651368409395, -0.006826873403042555, 0.011227521114051342, 0.019068285822868347, -0.034265995025634766, 0.0006247887504287064, 0.007378288544714451, -0.003228446003049612, -0.02541489526629448, 0.010188725776970387, -0.0020864831749349833, 0.001545740757137537, 0.027051351964473724, -0.00015497430285904557, 0.02400611899793148, -0.0009836532408371568, -0.020235151052474976, 0.014066418632864952, 0.012337465770542622, 0.0035521797835826874, -0.018200252205133438, -9.805403533391654e-05, -0.03366833180189133, 0.040299542248249054, 0.022839253768324852, -0.0061331577599048615, 0.000486045639263466, -0.02695174142718315, 0.0008360163192264736, 0.018726764246821404, -0.009270886890590191, -0.009470107965171337, 0.0034383393358439207, 0.036941248923540115, -0.00824632216244936, 0.0017502979608252645, -0.012031519785523415, -0.0006092246621847153, 0.022312741726636887, 0.013810277916491032, 0.02271118387579918, 0.003899037605151534, -0.00833881739526987, 0.024162650108337402, -0.017559899017214775, -0.017687970772385597, -0.009135701693594456, 0.018883295357227325, -0.004710151348263025, 0.006015759892761707, -0.012216510251164436, -0.0009427417535334826, -0.0025685266591608524, -0.011455201543867588, -0.025585656985640526, -0.015638841316103935, 0.016720326617360115, 0.029826214537024498, 0.018371013924479485, -0.010985610075294971, -0.014187374152243137, 0.013255305588245392, -0.012337465770542622, 0.014237179420888424, -0.0003793201467487961, 0.008964940905570984, -0.005346946883946657, 0.01365374680608511, -0.01198882982134819, -0.010580052621662617, -0.013575481250882149, 0.015823831781744957, -0.001662249444052577, -0.0051975310780107975, -0.03736814856529236, 0.005553282797336578, -0.012493996880948544, -0.010523132979869843, -0.008993401192128658, -0.00901474617421627], "1331adc2-e36c-4df6-8b61-c8f12fedbf36": [-0.01181515958160162, -0.002470780164003372, -0.0016106514958664775, -0.013472254388034344, -0.027420086786150932, -0.015738684684038162, 0.03614398464560509, 0.018532710149884224, -0.0131304319947958, 0.020212097093462944, 0.003964394796639681, 0.012149550952017307, 0.00971964094787836, -0.013123000971972942, -0.0039346711710095406, 0.04613113775849342, -0.004287639632821083, 0.017804479226469994, 0.015263105742633343, -0.03881911560893059, 0.05540492385625839, -0.021698281168937683, -0.023957280442118645, 0.0289359949529171, 0.014936145395040512, 0.0007923216326162219, -0.021861759945750237, 0.016660118475556374, -0.04318849369883537, -0.0017314038705080748, -0.008582710288465023, 0.021698281168937683, 0.0232141874730587, 0.008872516453266144, 0.013658027164638042, -0.0029519321396946907, -0.010321545414626598, -0.006189954467117786, -0.019498728215694427, 0.0007630623877048492, -0.023422254249453545, 0.019424419850111008, 0.0040870048105716705, -0.017923373728990555, -0.06955339014530182, 0.021980656310915947, 0.04413965344429016, -0.015976473689079285, 0.0016812451649457216, 0.01097546610981226, 0.005398561712354422, -0.025740699842572212, -0.010113479569554329, 0.010968035086989403, 0.011064636521041393, -0.044347718358039856, 0.008761052042245865, 0.035490065813064575, -0.014007280580699444, -0.08043225854635239, -0.004343371372669935, -0.020821431651711464, 0.00912516750395298, -0.004729779437184334, -0.006773281842470169, -0.021401043981313705, 0.02474495768547058, -0.02229275368154049, -0.042326509952545166, 0.013531701639294624, 0.014661201275885105, 0.014185622334480286, -0.044466614723205566, 0.008292904123663902, -0.0076166908256709576, 0.0019896281883120537, 0.029292678460478783, 0.01900828815996647, 0.01988513581454754, -0.004889544099569321, 0.00022873294074088335, -0.01046273298561573, 0.051897529512643814, -0.012008363381028175, 0.08839820325374603, 0.012454218231141567, -0.0032287337817251682, -0.043158773332834244, -0.016808737069368362, -0.007598113734275103, -0.0024856419768184423, 0.014482859522104263, -0.013576286844909191, 0.019424419850111008, 0.02168341912329197, 0.0060822064988315105, 0.03171515837311745, -0.001340351882390678, 0.018012546002864838, -0.01912718266248703, 0.0009506930946372449, 0.03730320930480957, -0.0551968589425087, 0.02874279022216797, -0.006201101001352072, 0.014557168819010258, 0.017804479226469994, 0.008448953740298748, -0.022575128823518753, 0.05492934584617615, 0.001164796412922442, -0.02584473229944706, 0.03233935683965683, 0.029233232140541077, -0.029679086059331894, -0.03855160251259804, -0.006933046504855156, -0.007809894625097513, -0.031061237677931786, -0.05802060663700104, 0.015092194080352783, -0.015441447496414185, 0.0020880878437310457, 0.013940402306616306, -0.025473186746239662, 0.005064170807600021, -0.0011898757657036185, 0.019914859905838966, 0.02141590602695942, 0.0019264655420556664, -0.008307766169309616, -0.004491989966481924, 0.01871105097234249, 0.027241745963692665, -0.007809894625097513, 0.0335877500474453, -0.004499420989304781, 0.05986347422003746, -0.029679086059331894, 0.04794428125023842, -0.06241971254348755, -0.050411347299814224, -0.011465906165540218, 0.02649865299463272, 0.03061538189649582, 0.018161162734031677, -0.021356457844376564, 0.03905690461397171, -0.00990541372448206, 0.02829693630337715, -0.05501851812005043, -0.047438979148864746, 0.020405299961566925, 0.0013802930479869246, 0.0002114328381139785, -0.02031612955033779, 0.014155899174511433, 0.00509760994464159, 0.014408550225198269, 0.03867049887776375, 0.013405376113951206, -0.06652157753705978, 0.023303359746932983, 0.0175964143127203, 0.0555238202214241, 0.022575128823518753, 0.035103656351566315, 0.022500820457935333, -0.025829870253801346, 0.020791709423065186, 0.016927631571888924, -0.0012883354211226106, 0.00683272909373045, 0.00240018661133945, -0.024834128096699715, -0.01021008100360632, 0.024878714233636856, 0.01596161164343357, 0.012892642989754677, -0.0192014928907156, -0.006227109115570784, 0.011577370576560497, -0.015084763988852501, -0.003178575076162815, 0.008783345110714436, 0.04601224511861801, -0.004454835318028927, -0.02027154341340065, 0.01805713027715683, 0.012305600568652153, -0.019186630845069885, -0.011020051315426826, -0.0339147113263607, 0.014430842362344265, -0.0008345849928446114, -0.019751379266381264, -0.006650671828538179, 0.008723897859454155, 0.003656011773273349, -0.003332766704261303, 0.012766317464411259, -0.047736216336488724, -0.03352830186486244, 0.04616086184978485, -0.02637975849211216, -0.002021209802478552, -0.018844807520508766, -0.03754099830985069, 0.014453135430812836, -0.02703367918729782, 0.05995264649391174, -0.0661054477095604, 0.013048691675066948, -0.0031841483432799578, 0.01764099858701229, -0.017046526074409485, -0.022456234320998192, 0.015181365422904491, -0.009585884399712086, -0.038313813507556915, -0.020212097093462944, 0.00811456236988306, -0.02046474814414978, -0.02004861645400524, -0.04101866856217384, -0.030942343175411224, -0.008560417219996452, 0.03112068399786949, -0.03129902482032776, 0.004269062541425228, 0.01214211992919445, 0.024120759218931198, -0.010410715825855732, -0.03008035570383072, -0.029262954369187355, 0.011503061279654503, 0.022783193737268448, 0.022099550813436508, -0.020018892362713814, 0.012587974779307842, 0.003473954275250435, 0.026885060593485832, 0.012796040624380112, -0.0014648197684437037, 0.021103806793689728, 0.03299327567219734, -0.0029797980096191168, -0.0051904963329434395, 0.010492456145584583, -0.04669588804244995, 0.005376269109547138, 0.02015264891088009, -0.022441372275352478, -0.00377490627579391, -0.018280059099197388, 0.036441221833229065, 0.02958991564810276, -0.007141112349927425, 0.02363031916320324, -0.030258698388934135, -0.00010008517710957676, 0.014965868555009365, 0.033884987235069275, 0.0129446592181921, 0.031180132180452347, -0.022812917828559875, 0.020866017788648605, -0.020093202590942383, 0.017655860632658005, 0.057782817631959915, -0.011176100932061672, 0.008872516453266144, -0.0008657019352540374, -0.0010003873612731695, -0.02175772748887539, 0.007598113734275103, -0.013056122697889805, 0.0060896375216543674, 0.030035771429538727, -0.0010022451169788837, -0.036173708736896515, -0.0030782578978687525, 0.021252425387501717, 0.03525227680802345, 0.007691000122576952, -0.01055933441966772, -0.021713143214583397, -0.011153807863593102, -0.0186664666980505, 0.01771530881524086, 0.0005066957091912627, 0.012342754751443863, 0.011161238886415958, 0.02596362680196762, 0.030764000490307808, 0.00784704927355051, -0.02080656960606575, -0.0022775763645768166, -0.025904180482029915, 0.026825614273548126, -0.021698281168937683, -0.00883536133915186, -0.0020435024052858353, -0.03367691859602928, 0.043426286429166794, -0.019409557804465294, 0.03507393226027489, 0.0007955726468935609, -0.023347944021224976, 0.04149424657225609, 0.04580418020486832, -0.04119700938463211, -0.03027356043457985, -0.01046273298561573, 0.023526286706328392, 0.005316821858286858, 0.0023871823213994503, -0.005777538754045963, -0.003453519195318222, -0.03329051285982132, 0.007780170999467373, 0.03085317090153694, -0.055226583033800125, 0.023035846650600433, 0.05368095263838768, -0.021059222519397736, 0.04553666710853577, -0.012320461682975292, -0.011458475142717361, -0.044347718358039856, -0.031477369368076324, -0.034568630158901215, -0.018844807520508766, 0.001565137063153088, -0.02630545012652874, -0.030214112251996994, -0.0344497375190258, -0.02253054268658161, -0.0016180824022740126, -0.04390186443924904, -0.010715384036302567, -0.031090961769223213, 0.009496713057160378, -0.024759817868471146, 0.007728154771029949, 0.01637774333357811, 0.030095217749476433, 0.014037003740668297, -0.03126930445432663, -0.015783268958330154, 0.0008294762228615582, -0.024299101904034615, 0.006349719595164061, -0.011733419261872768, 0.012729162350296974, -0.017150558531284332, -0.0065206303261220455, -0.007698431145399809, -0.007174551486968994, 0.03373636677861214, 0.018993426114320755, -0.011993501335382462, -0.03024383634328842, -0.01345739234238863, 0.008924532681703568, 0.020330991595983505, -0.00168496067635715, -0.027360640466213226, -0.0007156903157010674, 0.0013942259829491377, -0.012818333692848682, 0.002468922408297658, 0.051451675593853, -0.003964394796639681, -0.012840626761317253, -0.03141792118549347, 0.028727928176522255, 0.01927580125629902, -0.004343371372669935, 0.04134562611579895, 0.01874077506363392, -0.0065726470202207565, -0.014118744060397148, -0.005149626173079014, 0.02599335089325905, 0.021133530884981155, 0.02168341912329197, -0.02917378395795822, -0.001311557018198073, 0.02149021439254284, -0.0410781130194664, 0.038313813507556915, -0.023303359746932983, -0.013762060552835464, -0.008500969968736172, -0.010054032318294048, 0.007683569099754095, -0.0024726379197090864, 0.008211164735257626, -0.03593591973185539, -0.005881571676582098, -0.009355525486171246, -0.0015521330060437322, 0.03433084115386009, 0.0028256066143512726, -0.05406735837459564, -0.01988513581454754, -0.002693707821890712, 0.018919117748737335, -0.004090720321983099, 0.0008355138706974685, -0.013078415766358376, 0.02669185772538185, 0.01710597239434719, 0.051867809146642685, -0.03504420816898346, -0.000845731352455914, 0.027197159826755524, -0.032814934849739075, -0.03962165489792824, 0.03364719823002815, 0.05623718723654747, -0.005963311530649662, 0.02431396394968033, 0.0006697115022689104, 0.03222046047449112, 0.03887856379151344, 0.015991335734725, -0.010618781670928001, -0.03005063161253929, -0.004625746514648199, 0.04336683824658394, -0.0017128265462815762, -0.006026474293321371, -0.001978481886908412, -0.01847326196730137, 0.01183745265007019, -0.0055286032147705555, 0.006156515795737505, 0.011190962977707386, 0.0028256066143512726, 0.014126175083220005, 0.005851848050951958, 0.00602275924757123, -0.02569611370563507, -0.0437532439827919, -0.03046676330268383, 0.01847326196730137, 0.031477369368076324, 0.0019060304621234536, -0.006505768746137619, 0.009845966473221779, -0.018354367464780807, -0.0024522028397768736, -0.003284465754404664, -0.03944331407546997, -0.01890425570309162, -0.017581552267074585, 0.0034646654967218637, -0.044912468641996384, -0.005595481488853693, -0.02817804180085659, 0.029946599155664444, 0.0181314405053854, 0.006316280458122492, -0.005732953082770109, -0.01128013338893652, 0.023080430924892426, 0.014869267120957375, 6.926573405507952e-06, 0.027955112978816032, 0.001585572143085301, 0.012788609601557255, 0.012067810632288456, -0.006750989239662886, 0.0013663599966093898, -0.008508400991559029, 0.0069293309934437275, 0.00971964094787836, 0.0006009754724800587, -0.004614599980413914, -0.07597370445728302, -0.00994256790727377, -0.0011963777942582965, 0.011934054084122181, -0.0349847637116909, 0.014408550225198269, -0.02492329850792885, -0.004224476870149374, 0.012506235390901566, 0.048241518437862396, -0.03768961504101753, 0.0042281923815608025, 0.004551437217742205, -0.004205899778753519, -0.017536966130137444, -0.004815234802663326, -0.0012038087006658316, -0.012900074012577534, -0.024804404005408287, 0.01985541358590126, -0.03935414180159569, 0.015382000245153904, 0.026602687314152718, -0.006453752517700195, 0.023511424660682678, -0.013799214735627174, -0.0020100632682442665, -0.019825689494609833, -0.010002016089856625, -0.01489155925810337, -0.0102695282548666, -0.02596362680196762, 0.0005833270843140781, 0.01477266475558281, 0.030169527977705002, 0.0012846199097111821, -0.00801796093583107, 0.027018817141652107, -9.578917524777353e-05, -0.005027016159147024, -0.011800297535955906, -0.03525227680802345, -0.002076941542327404, -0.019721657037734985, -0.03141792118549347, 0.00967505481094122, -0.008374644443392754, 0.007319454103708267, -0.01912718266248703, -0.00031465294887311757, 0.020747123286128044, -0.002203267300501466, -0.004328509792685509, 0.0323096327483654, -0.016243986785411835, -0.019231215119361877, 0.026483790948987007, 0.028876546770334244, 0.0314476452767849, -0.030555935576558113, 0.02492329850792885, 0.008775914087891579, -0.007921358570456505, -0.023912694305181503, 0.015976473689079285, -0.014802388846874237, -0.006840160116553307, -0.01912718266248703, 0.019424419850111008, -0.024403134360909462, 0.01832464337348938, -0.019558176398277283, 0.011020051315426826, 0.01764099858701229, -0.0448232963681221, -0.016541223973035812, -0.02527998387813568, -0.02676616609096527, -0.019573038443922997, -0.01351683959364891, 0.02416534535586834, -0.0031971524003893137, 0.013962695375084877, 0.008226025849580765, -0.002730862470343709, -0.010589058510959148, 0.017997683957219124, -0.0030355299822986126, 0.01985541358590126, 0.026097383350133896, -0.012431926093995571, 0.050262730568647385, 0.015456309542059898, 0.011941485106945038, 0.0349847637116909, -0.0028051715344190598, 0.002034213859587908, -0.05421597883105278, -0.022887228056788445, 0.03486586734652519, -0.03311217203736305, 0.007568390108644962, -0.004826381336897612, 0.017284315079450607, 0.007189413066953421, -0.011755712330341339, -0.016674980521202087, 0.0007059372146613896, 0.014988161623477936, 0.010670797899365425, 0.01695735566318035, 0.004001549445092678, 0.01988513581454754, -0.03293382748961449, 0.013591148890554905, -0.003711743513122201, 0.008426660671830177, -0.0069924937561154366, -0.0014369537821039557, 0.00835978239774704, 0.01504017785191536, 0.0083449212834239, -0.0047632185742259026, -0.01737348549067974, 0.017685584723949432, 0.008709035813808441, 0.008552986197173595, -0.01900828815996647, 0.0075535280629992485, -0.02306556887924671, 0.019677070900797844, 0.015181365422904491, -0.010366130620241165, 0.01786392740905285, -0.0038120609242469072, -0.0038752236869186163, 0.05225421488285065, -0.0009427977493032813, 0.007445779629051685, 0.01103491336107254, -0.0035594096407294273, 0.03935414180159569, 0.0006910754018463194, 0.02939671091735363, 0.007646414451301098, -0.010782262310385704, -0.02527998387813568, -0.01082684751600027, 0.016437191516160965, 0.008218595758080482, -0.002716000424697995, -0.003867792896926403, -0.015530618838965893, 0.012699439190328121, -0.020866017788648605, 0.01046273298561573, 0.014928714372217655, -0.03406332805752754, -0.00728229945525527, -0.0339147113263607, 0.012238722294569016, -0.03311217203736305, 0.011867175810039043, -0.00543200084939599, 0.010789693333208561, -0.0039346711710095406, 0.01536713819950819, 0.042088720947504044, 0.0008122922154143453, -0.05689110979437828, -0.0011815159814432263, -0.012565682642161846, 0.013754629530012608, -0.0012038087006658316, -0.03005063161253929, -0.00178992236033082, 0.010871432721614838, 0.009318371303379536, 0.0008071834454312921, 0.037095144391059875, -0.024819266051054, -0.0076166908256709576, 0.02423965372145176, -0.009994585067033768, 0.01477266475558281, 0.008946824818849564, 0.006119361147284508, 0.0344497375190258, 0.02455175295472145, 0.02794025093317032, -0.013204741291701794, 0.022322477772831917, 0.012417064048349857, -0.01798282191157341, -0.006130507215857506, -0.014965868555009365, -0.014408550225198269, 0.004332225304096937, 0.010782262310385704, -0.009422403760254383, -0.02492329850792885, -0.03436056524515152, -0.014163329266011715, 0.0118746068328619, -0.00830033514648676, -0.012766317464411259, -0.008775914087891579, -0.011830021627247334, -0.014334240928292274, -0.01660067029297352, -0.010054032318294048, 0.013368221931159496, 0.011592231690883636, 0.008181440643966198, 0.015946749597787857, -0.01372490543872118, -0.03329051285982132, 0.006212247535586357, -0.03486586734652519, -0.05311620235443115, -0.01023237407207489, 0.00286276126280427, -0.027420086786150932, 0.0016097226180136204, 0.009727071970701218, -0.01912718266248703, -0.01237247884273529, 0.025532634928822517, 0.0027828786987811327, 0.02730119228363037, 0.003527828259393573, 0.003893801011145115, 0.018086854368448257, 0.005175634287297726, 0.01103491336107254, 0.012781178578734398, 0.001655236934311688, 0.013836368918418884, 0.020747123286128044, -0.00564006669446826, 0.03165571019053459, -0.022426510229706764, -0.01265485305339098, -0.017953097820281982, -0.005290813744068146, 0.0014174475800246, 0.006546638906002045, 0.010982897132635117, 0.002476353431120515, 0.03985944390296936, 0.01512191817164421, -0.012223860248923302, 0.014445704407989979, 0.0018725913250818849, -0.014304516837000847, 0.014311947859823704, 0.005651213228702545, 0.04767676815390587, -0.018354367464780807, 0.029158921912312508, 0.0019190345192328095, 0.03260686993598938, -0.012320461682975292, -0.026899922639131546, 0.009593315422534943, 0.022961536422371864, 0.017418071627616882, -0.00018228970293421298, 0.008738759905099869, 0.042742639780044556, -0.021936070173978806, 0.04672561213374138, 0.0317746065557003, 0.004740925505757332, -0.013108138926327229, 0.024269377812743187, 0.022589990869164467, -0.006037620827555656, 0.028921132907271385, 0.0014796815812587738, 0.019914859905838966, 0.0007147614378482103, -0.0012084530899301171, -0.00967505481094122, -0.01282576471567154, 0.008983979932963848, 0.032161012291908264, 0.017953097820281982, 0.02577042393386364, 0.019870275631546974, 0.03783823549747467, 0.04440716654062271, 0.03492531552910805, -0.017804479226469994, -0.015441447496414185, 0.025859594345092773, -0.003982971888035536, -0.047201190143823624, -0.0019246077863499522, -0.01798282191157341, -0.020910603925585747, 0.0027754479087889194, -0.003249168861657381, 0.012521096505224705, -0.012729162350296974, 0.025710975751280785, -0.00632742652669549, -0.0192014928907156, 0.008723897859454155, 0.0049675689078867435, 0.02672158181667328, 0.019632484763860703, -0.00357984472066164, 0.012781178578734398, -0.010306683368980885, 0.006074775476008654, -0.04440716654062271, 0.01935010962188244, 0.034420013427734375, 0.025294844061136246, -0.011168669909238815, 0.03370664268732071, 0.041405074298381805, 0.018815085291862488, -0.007913927547633648, -0.0012391055934131145, 0.011235548183321953, 0.006253117695450783, 0.012052948586642742, 0.020063478499650955, -0.028400968760252, -0.030333006754517555, 0.05275951698422432, -0.02603793703019619, 0.00405728118494153, -0.00937038753181696, 0.024076174944639206, 0.011792866513133049, -0.004733494948595762, 0.019067736342549324, 0.020553918555378914, -0.002273860853165388, 0.014690924435853958, -0.023451976478099823, 0.005532318260520697, 0.0232141874730587, -0.007921358570456505, -0.014750372618436813, 0.01572382263839245, 0.01924607716500759, -0.016199400648474693, -0.024611201137304306, 0.044347718358039856, 0.007557243574410677, 0.026751304045319557, -0.0031042660120874643, 0.0006757490918971598, -0.03192322328686714, 0.01405186578631401, -0.024878714233636856, -0.04143479838967323, -0.02611224539577961, -0.009838535450398922, 0.0018270770087838173, -0.025636667385697365, 0.02024182118475437, -0.02684047631919384, 0.04616086184978485, 0.05076803267002106, -0.02153480052947998, -0.012491373345255852, 0.006394304800778627, 0.0008754550362937152, -0.030942343175411224, 0.03855160251259804, -0.003784195054322481, 0.0071968440897762775, -0.0050567397847771645, 0.017819341272115707, 0.016808737069368362, 0.009318371303379536, -0.027806494385004044, -0.011755712330341339, -0.007375186309218407, 0.0026639841962605715, -0.008783345110714436, -0.003199010156095028, 0.007293445989489555, -0.002675130497664213, -0.00026263651670888066, -0.006063628941774368, -0.02085115574300289, 0.004391672555357218, -0.0052016424015164375, 0.0010756254196166992, 0.004131590481847525, 0.010187788866460323, -0.0405430868268013, -0.029619639739394188, -0.0021586816292256117, 0.03760044649243355, -0.009147459641098976, -0.0029649361968040466, -0.03100178949534893, 0.01231303159147501, 0.019528452306985855, 0.0025580935180187225, 0.012848056852817535, 0.02294667437672615, -0.005576903931796551, 0.006535492371767759, -0.005227650981396437, -0.019498728215694427, -0.018116578459739685, -0.018042268231511116, -0.008233456872403622, -0.014668632298707962, -0.032279908657073975, -0.03293382748961449, 0.004205899778753519, -0.032814934849739075, -0.043426286429166794, -0.003867792896926403, 0.025250259786844254, -0.03225018456578255, 0.01422277744859457, -0.0007096526678651571, 0.018681328743696213, 0.003867792896926403, 0.0022218443918973207, 0.004205899778753519, -0.015188796445727348, 0.001635730848647654, 0.009340664371848106, 0.022694023326039314, 0.0253542922437191, -0.007040794938802719, -0.009838535450398922, -0.02092546597123146, 0.0339147113263607, -0.006264263764023781, 0.008538125082850456, -0.023422254249453545, 0.00131248589605093, -0.0024614916183054447, -0.007048225961625576, 0.004930414259433746, 0.015136780217289925, 0.018042268231511116, -0.011413889937102795, 0.008775914087891579, -0.010098617523908615, 0.007055656518787146, 0.028623895719647408, -0.013323635794222355, -0.02172800339758396, -0.004874682053923607, -0.03760044649243355, 0.010492456145584583, 0.000730087689589709, -0.021564524620771408, 0.0057515306398272514, -0.00474464101716876, -0.0018893108936026692, -0.008174009621143341, -0.023229049518704414, 0.0253542922437191, -0.005599196534603834, -0.013241895474493504, -0.018696188926696777, 0.021282149478793144, 0.005974458064883947, -0.007728154771029949, 0.006951623596251011, 0.029411572962999344, 0.001740692532621324, -0.018770499154925346, 0.0367979072034359, -0.0011815159814432263, 0.0006149084656499326, 0.007505227345973253, -0.010143202729523182, 0.019260939210653305, -0.011562508530914783, -0.00996486097574234, -0.03525227680802345, 0.021846899762749672, -0.01603592187166214, -0.0025209388695657253, -0.00992770679295063, -0.022783193737268448, -0.008761052042245865, 0.0005758961196988821, 0.0063051339238882065, -0.010366130620241165, -0.025874456390738487, -2.4106942873913795e-05, -0.030526211485266685, 0.008136855438351631, 0.03727348521351814, -0.018562432378530502, 0.012097534723579884, -0.022188721224665642, -0.00963790062814951, 0.009615607559680939, -0.018562432378530502, 0.01671956479549408, -0.015634652227163315, -0.004079573787748814, -0.00045885919826105237, -0.01530769094824791, -0.014133606106042862, -0.01591702550649643, 0.00809226930141449, -0.013167587108910084, -0.02718229778110981, -0.015382000245153904, 0.0129446592181921, -0.0317746065557003, 0.010373561643064022, -0.006123076658695936, -0.05222449079155922, 0.03138819709420204, 0.034955039620399475, 0.01606564410030842, 0.015069901943206787, -0.0001299249561270699, 0.0006803934229537845, 0.010633643716573715, -0.011904330924153328, -0.013531701639294624, -0.011176100932061672, -0.01557520404458046, -0.003486958332359791, 0.04146452248096466, 0.006598655134439468, -0.05909065902233124, -0.013271619565784931, 0.04199954867362976, 0.007560959085822105, -0.01591702550649643, -0.012335323728621006, -0.01290750503540039, -0.01576840877532959, 0.009793950244784355, 0.004116728436201811, -0.001556777278892696, 0.011755712330341339, 0.00916232168674469, -0.0330527238547802, -0.02046474814414978, 0.008315197192132473, -0.01029182132333517, -0.005955880973488092, -0.028965719044208527, -0.021311873570084572, -0.061646897345781326, 0.012744024395942688, -0.012431926093995571, 0.03757072240114212, -0.010507318191230297, 0.0033662058413028717, 0.026558101177215576, 0.00021549662051256746, -0.011740850284695625, 0.0011545788729563355, -0.011644248850643635, -0.022322477772831917, 0.0015131207183003426, 0.009021134115755558, -0.004822665825486183, 0.021401043981313705, -0.015976473689079285, -0.006684110965579748, -0.015263105742633343, 0.004205899778753519, 0.0006237326888367534, 0.011049775406718254, 0.03100178949534893, -0.00998715404421091, -0.0018725913250818849, 0.04110783711075783, -0.02501247078180313, 0.008716466836631298, -0.02890627086162567, -0.027212021872401237, 0.011599662713706493, -0.010054032318294048, -0.011064636521041393, -0.0025841016322374344, 0.030065493658185005, 0.009385249577462673, 0.007928789593279362, -0.0075535280629992485, 0.017626138404011726, 0.0019710510969161987, 0.01603592187166214, 0.03061538189649582, -0.012535958550870419, -0.0007728154887445271, -0.01342023815959692, -0.04164286330342293, -0.007750447373837233, -0.02698909491300583, -0.009808811359107494, 0.007152258418500423, -0.0028033137787133455, -0.006290271878242493, 0.0024800689425319433, -0.020449886098504066, -0.0015428443439304829, -0.002039786893874407, 0.02443285845220089, -0.025740699842572212, 0.0052610901184380054, -0.014326809905469418, 0.03156653791666031, 0.0018150017131119967, -0.0015725679695606232, 0.008508400991559029, -0.018354367464780807, 0.028727928176522255, 0.021623970940709114, 0.023764075711369514, 0.018161162734031677, 0.004692624788731337, -0.002392755588516593, 0.00282003334723413, 0.016273710876703262, 0.04131590574979782, 0.005446862895041704, 0.0049675689078867435, 0.0258893184363842, 0.013732336461544037, 0.020524196326732635, 0.010061463341116905, -0.028802238404750824, 0.008188871666789055, 0.01564951241016388, -0.015277967788279057, -0.021014636382460594, -0.03168543428182602, -0.0022478527389466763, -0.03141792118549347, 0.01324932649731636, 0.011079498566687107, 0.033884987235069275, 0.010328976437449455, 0.035371169447898865, 0.03982971981167793, -0.0015632794238626957, 0.04978714883327484, -0.009214337915182114, 0.006189954467117786, -0.00512733357027173, -0.012587974779307842, 0.001200093305669725, -0.007442064583301544, 0.005093894433230162, -0.016392605379223824, -0.015902165323495865, -0.019483866170048714, 0.017536966130137444, -0.00010194290371146053, -0.030184388160705566, -0.03171515837311745, -0.02477467991411686, -0.012729162350296974, -0.014742941595613956, 0.004183606710284948, -0.007795033045113087, -0.0175964143127203, 0.014081589877605438, -0.01897856406867504, -0.021817175671458244, 0.005294529255479574, -0.014884129166603088, 0.027048541232943535, 0.0045662992633879185, -0.049608808010816574, -0.0017834203317761421, -0.016006197780370712, -0.01202322542667389, 0.008657019585371017, -0.015337415039539337, 0.03962165489792824, -0.014631477184593678, 0.004235623404383659, 0.006130507215857506, 0.013799214735627174, 0.003269603941589594, 0.017819341272115707, 0.023838384076952934, -0.01671956479549408, 0.03266631439328194, -0.03287438303232193, 0.005502594634890556, 0.008448953740298748, -0.011926623061299324, 0.0012799756368622184, 0.006267979275435209, -0.005331683438271284, 0.013427669182419777, -0.003882654709741473, -0.0014648197684437037, -0.017655860632658005, 0.003193437121808529, -0.010871432721614838, 0.026543239131569862, -0.02287236601114273, -0.028222626075148582, -0.03058565780520439, -0.001052403706125915, 0.007230283226817846, 0.03034786880016327, -0.01288521196693182, -0.006137938238680363, 0.01086400169879198, 0.03489559143781662, -0.004376810509711504, 0.0034200800582766533, -0.005773823242634535, -0.01202322542667389, -0.02516108751296997, -0.010693090967833996, -0.003171144286170602, -0.004083289299160242, -0.021505076438188553, -0.010901156812906265, -0.008931963704526424, 0.014408550225198269, -0.018651604652404785, 0.004347086884081364, -0.0016691699856892228, 0.00041938244248740375, 0.011956347152590752, 0.015619789250195026, -0.0037414671387523413, 0.005093894433230162, 0.045001640915870667, 0.015486032702028751, 0.011153807863593102, 0.006279125809669495, 0.014928714372217655, -0.037362657487392426, 0.001987770665436983, 0.02282777987420559, 0.025250259786844254, -0.010641074739396572, -0.007445779629051685, 0.010328976437449455, -0.0032863235101103783, 0.013070984743535519, 0.01588730327785015, -0.02676616609096527, -0.02423965372145176, -0.00564006669446826, 0.002050933428108692, 0.015515756793320179, 0.007653845474123955, 0.0017592698568478227, -0.0007704932941123843, -0.02530970610678196, 0.013836368918418884, 0.01885966956615448, -0.018190886825323105, 0.0007184768910519779, 0.004321078769862652, -0.0034758117981255054, -0.011421320959925652, 0.010797123424708843, -0.021594246849417686, -0.009199476800858974, -0.012528527528047562, -0.0108045544475317, -0.025027330964803696, 0.037511274218559265, -0.0026621264405548573, -0.008166578598320484, -0.0056697903200984, 0.023199325427412987, 0.023318219929933548, -0.008047684095799923, -0.06919670850038528, -0.00014571566134691238, 0.0004779009032063186, 0.0014713217969983816, 0.0023760360199958086, -0.0028590457513928413, -0.007698431145399809, 0.0134796854108572, -0.003509250935167074, 0.03453890606760979, -0.023689767345786095, 0.03039245493710041, -0.015500894747674465, -0.021579386666417122, -0.014646339230239391, -0.0051199025474488735, 0.009154890663921833, 0.02409103699028492, 0.021311873570084572, -0.0296345017850399, 0.00237232050858438, 0.014898990280926228, 0.032814934849739075, -0.005918726325035095, -0.0055471803061664104, -0.02015264891088009, 0.005770107731223106, -0.010893725790083408, 0.03278521075844765, -0.0010124625405296683, -0.01603592187166214, 0.020360715687274933, -0.008255749940872192, -0.009712209925055504, 0.009526437148451805, 0.014609185047447681, -0.025948764756321907, 0.03198267146945, -0.01130242645740509, 0.001360786845907569, 0.003137705149129033, 0.013108138926327229, -0.0416131392121315, -0.006130507215857506, -0.0006590295233763754, -0.014029573649168015, -0.00778760202229023, -0.01630343496799469, 0.0011053490452468395, 0.017581552267074585, -0.03061538189649582, 0.01145104505121708, 0.02443285845220089, 0.0036578692961484194, -0.01783420331776142, -0.02165369503200054, 0.015738684684038162, -3.5340401609573746e-06, 0.02367490530014038, 0.0022478527389466763, -0.015248243696987629, 0.012223860248923302, 0.02545832470059395, 0.023199325427412987, 0.02068767510354519, 0.02302098460495472, -0.0028033137787133455, 0.02477467991411686, -0.008865085430443287, -0.006446321494877338, 0.005781254265457392, 0.020628228783607483, 0.010901156812906265, 0.011696265079081059, 0.01405186578631401, -0.03730320930480957, -0.023496562615036964, -0.014453135430812836, -0.0003460021107457578, 0.0044325427152216434, 0.009519006125628948, 0.010626212693750858, -0.0034015027340501547, 0.014594323001801968, 0.002337023615837097, -0.01422277744859457, -0.02958991564810276, -0.027583567425608635, -0.0017369771376252174, 0.013368221931159496, -0.004807803779840469, -0.02138618193566799, -0.03168543428182602, 0.017016801983118057, -0.015292828902602196, 0.027821356430649757, 0.003200867911800742, -0.03950275853276253, -0.020747123286128044, -0.011473337188363075, -0.020018892362713814, 0.022931812331080437, -0.011049775406718254, -0.032814934849739075, 0.028192903846502304, 0.015976473689079285, 0.007854480296373367, 0.006067344453185797, 0.0026714149862527847, 0.017745032906532288, -0.0016682411078363657, -0.015619789250195026, 0.004127874970436096, 0.020747123286128044, 0.02007834054529667, -0.007297161500900984, -0.004596022889018059, -0.011347011663019657, -0.00036968817585147917, 0.003501820145174861, 0.024611201137304306, 0.04345600679516792, -0.003804630134254694, -0.008463815785944462, -0.013851230964064598, -0.0035185397136956453, 0.02527998387813568, 0.0014369537821039557, 0.03150709345936775, 0.0010208223247900605, 0.027420086786150932, -0.028311798349022865, -0.016437191516160965, -0.011859744787216187, 0.0015493463724851608, -0.011532784439623356, 0.002225559903308749, -0.012431926093995571, -0.001024537836201489, 0.017150558531284332, -0.03352830186486244, -0.00996486097574234, -0.028950856998562813, -0.0005758961196988821, -0.007174551486968994, 0.025710975751280785, 0.004896975122392178, -0.021326733753085136, -0.004792942199856043, 0.0020453601609915495, 0.01504017785191536, 0.003113554557785392, -0.007174551486968994, -0.011257840320467949, 0.009860828518867493, -0.02294667437672615, -0.02175772748887539, -0.01378435268998146, -0.008961686864495277, -0.005257374607026577, -0.006167661864310503, 0.010433008894324303, -0.012632560916244984, -0.01978110335767269, -0.0008011458558030427, -0.0023686052300035954, 0.004596022889018059, -0.005543464794754982, -0.005238797049969435, -0.037659890949726105, 0.03263659030199051, -0.03985944390296936, -0.0008605931652709842, -0.002236706204712391, 0.004774364642798901, 0.006587508600205183, 0.020702537149190903, -0.008723897859454155, 0.03406332805752754, -0.0028739075642079115, 0.003503677900880575, 0.008456384763121605, -0.03688707575201988, -0.006271694786846638, 0.0011833737371489406, 0.0134796854108572, -0.009667624719440937, -0.014215346425771713, 0.005941018927842379, 0.012550820596516132, 0.03581702336668968, -0.022842641919851303, 0.012996675446629524, -0.011896899901330471, 0.00861243437975645, -0.005513741169124842, -0.007025932893157005, -0.024061312898993492, 0.026067661121487617, -0.01671956479549408, 0.019112320616841316, 0.004503136500716209, 0.01185231376439333, 0.00043308318709023297, 0.023080430924892426, 0.015471171587705612, 0.006554069463163614, 0.05632635951042175, -0.022842641919851303, 0.014690924435853958, -0.01044043991714716, 0.008218595758080482, 0.0016784586478024721, -0.024180207401514053, -0.002879480831325054, -0.0015549196396023035, 0.019023150205612183, 0.006732411682605743, -0.01076740026473999, 0.012127257883548737, -0.02404645085334778, 0.013241895474493504, 0.048003729432821274, -0.0011062779230996966, -0.0125954058021307, 0.018755637109279633, -0.006427743937820196, -0.01477266475558281, 0.006494622211903334, -0.016139954328536987, 0.008657019585371017, -0.020866017788648605, 0.027316054329276085, 0.007538666483014822, 0.006502053234726191, -0.016273710876703262, 0.008560417219996452, -0.004168745130300522, 0.005840701516717672, 0.01893397979438305, -0.036173708736896515, -0.034955039620399475, -0.021445630118250847, -0.007315738592296839, 0.019691932946443558, -0.02698909491300583, -0.0002677452575881034, 0.012409633025527, -0.016585808247327805, -0.0021140961907804012, -0.00023581553250551224, -0.006401735823601484, 0.003163713263347745, 0.01047759409993887, -0.008820499293506145, -0.01885966956615448, 0.017239728942513466, 0.010663366876542568, -0.013999849557876587, 0.0073491777293384075, 0.0008369071292690933, 0.0037656177300959826, 0.012283307500183582, 0.015976473689079285, 0.03870021924376488, -0.01261769887059927, 0.017150558531284332, 0.011317288503050804, -0.022188721224665642, -0.00826318096369505, -0.018146302551031113, 0.012149550952017307, -0.006212247535586357, -0.005506310146301985, -0.02221844531595707, -0.041791483759880066, -0.009199476800858974, 0.00975679513067007, -0.019691932946443558, 0.002784736454486847, 0.01255825161933899, 0.0036690158303827047, -0.001416518702171743, -0.01744779571890831, -0.014943576417863369, -0.001600433955900371, 0.007560959085822105, -0.011272702366113663, -0.00429507065564394, 0.0028311796486377716, -0.010982897132635117, -0.008991410955786705, -0.007051941007375717, -0.013085846789181232, -0.02470037154853344, 0.0025562357623130083, 0.0017843492096289992, -0.0015539907617494464, 0.01139902789145708, -0.006698972545564175, 0.004287639632821083, -0.015604928135871887, -0.011109222657978535, -0.006137938238680363, 0.006825298070907593, -0.011592231690883636, 0.019914859905838966, 0.01214211992919445, 0.008701604790985584, -0.010982897132635117, -0.005038162227720022, -0.014787526801228523, -0.001298552961088717, -0.005807262379676104, -0.007022217381745577, -0.005491448566317558, 0.01793823577463627, -0.017759894952178, 0.045685283839702606, 0.004436258226633072, 0.008515832014381886, -0.014074158854782581, 0.0031544247176498175, -0.027286330237984657, -0.010834278538823128, 0.03902718052268028, 0.019751379266381264, -0.0030968349892646074, -0.008664450608193874, 0.013695182278752327, 0.0007500582723878324, 0.011265271343290806, -0.03977027162909508, -0.004246769472956657, 0.005428285803645849, 0.022694023326039314, -0.014557168819010258, 0.014378826133906841, -0.003782337298616767, 0.002976082731038332, -0.0005870425375178456, 0.021044360473752022, -0.004733494948595762, 0.021623970940709114, 0.0032250185031443834, 0.016392605379223824, 0.0025358006823807955, 0.03718431293964386, -0.0011917335214093328, -0.018770499154925346, -0.010485025122761726, -0.00019889316172339022, -0.010076324455440044, 0.011324718594551086, -0.0018066419288516045, 0.021044360473752022, -0.0022497104946523905, 0.012060379609465599, -0.0007263722363859415, 0.006074775476008654, 0.022976398468017578, 0.03620343282818794, -0.021638832986354828, -0.021475352346897125, 0.016407467424869537, -0.003628145670518279, 0.014155899174511433, 0.0034609499853104353, -0.02099977433681488, -0.045031361281871796, -0.004815234802663326, 0.008374644443392754, 0.009229199960827827, -0.004882113076746464, 0.016897907480597496, -0.012171844020485878, -0.006609801668673754, -0.0015038320561870933, -0.022708885371685028, 0.017150558531284332, -0.00975679513067007, -0.02920350804924965, -0.012194136157631874, -0.02202524058520794, -0.0006441677105613053, -0.007765309419482946, 0.010752538219094276, -0.0102695282548666, -0.005974458064883947, 0.009734502993524075, 0.007044510450214148, -0.0108045544475317, 0.011347011663019657, 0.03453890606760979, -0.0005554610979743302, 0.03367691859602928, 0.03439028933644295, 0.005123618058860302, 0.007107673212885857, -0.013791783712804317, -0.0009873831877484918, -0.001768558518961072, 0.010871432721614838, -0.006401735823601484, 0.006535492371767759, -0.014349102973937988, 0.002504219301044941, -0.04592307284474373, -0.015069901943206787, -0.006074775476008654, 0.0016505926614627242, -0.0032733194530010223, 0.0044399737380445, 0.008248318918049335, -0.008976548910140991, -0.00036875929799862206, 0.007438349071890116, 0.0071336813271045685, -0.0021010921336710453, 0.011770574375987053, -0.01859215646982193, -0.0008099700789898634, 0.015530618838965893, 0.008991410955786705, 0.02199551649391651, -0.01606564410030842, -0.005071601364761591, 0.004328509792685509, -0.0161548163741827, 0.0009502286557108164, -0.00778760202229023, 0.026736443862318993, -0.013004106469452381, 0.0036875931546092033, 0.008307766169309616, -0.0085306940600276, -0.014497720636427402, -0.013791783712804317, 0.010425577871501446, -0.006825298070907593, -0.01691276952624321, -0.0044325427152216434, 0.01637774333357811, -0.003451661439612508, 0.0011555077508091927, -0.00933323334902525, -0.008634726516902447, -0.01483211200684309, 0.020108064636588097, 0.007631552871316671, 0.009296078234910965, -0.02187662199139595, 0.009466989897191525, 0.0018707335693761706, 0.006160230841487646, -0.00405728118494153, 0.012194136157631874, -0.0165263619273901, 0.018651604652404785, 0.018190886825323105, 0.008374644443392754, 0.025829870253801346, 0.016541223973035812, 0.027538981288671494, 0.0026361180935055017, -0.033498577773571014, 0.004120443947613239, -0.009786519221961498, 0.03329051285982132, -0.029158921912312508, -0.001726759597659111, -0.015173934400081635, -0.021980656310915947, -0.019424419850111008, -0.017997683957219124, 0.046398650854825974, -0.01645205169916153, -0.0009743791306391358, 0.003971825819462538, -0.00912516750395298, -0.006241971161216497, 0.006260548252612352, -0.006869883742183447, -0.0033290511928498745, 0.006959054619073868, 0.027078265324234962, 0.01992972195148468, -0.015500894747674465, -0.01744779571890831, -0.008255749940872192, 0.011740850284695625, -0.02455175295472145, 0.008805638179183006, -0.021623970940709114, 0.0028646187856793404, 0.0023147310130298138, -0.03180433064699173, 0.011584801599383354, 0.019959446042776108, 0.008827930316329002, 0.016139954328536987, 0.0025915326550602913, 0.001439740415662527, -0.007107673212885857, 0.008813069202005863, -0.011205824092030525, -0.01740320958197117, 0.002870192052796483, -0.018755637109279633, 6.223393575055525e-05, -0.014958437532186508, -0.00694790855050087, -0.03798685222864151, -0.01422277744859457, 0.020301267504692078, 0.011391596868634224, 0.010871432721614838, 0.0076166908256709576, -0.0020472179166972637, -0.002847899217158556, 0.017343763262033463, 0.01128013338893652, -0.02027154341340065, -0.012721731327474117, -0.023050706833600998, -0.00543200084939599, -0.012379908934235573, -0.0033717791084200144, -0.015382000245153904, -0.029069751501083374, -0.0012168128741905093, 0.015017885714769363, -0.008775914087891579, -0.006271694786846638, 0.0011908046435564756, 0.012892642989754677, 0.010306683368980885, 0.014951007440686226, 0.014520013704895973, 0.010797123424708843, -0.03085317090153694, -0.0029705094639211893, -0.018235472962260246, -0.006338573060929775, -0.006015328224748373, 0.0161548163741827, 0.013026399537920952, 0.003823207225650549, 0.011309857480227947, 0.005758961662650108, -0.007869342342019081, -0.000694790855050087, -0.020167510956525803, 0.053472887724637985, 0.022054964676499367, 0.0007291588117368519, 0.006505768746137619, 0.005810977891087532, -0.00662466324865818, 0.010343837551772594, -0.02168341912329197, -0.012134688906371593, 0.0020825148094445467, -0.0362628810107708, 0.009310940280556679, -0.008902239613234997, 0.009779088199138641, -2.2292753783403896e-05, -0.008218595758080482, -0.012744024395942688, -0.003975541330873966, 0.006877314765006304, 0.028623895719647408, 0.0007254433585330844, -0.004269062541425228, 0.006687826011329889, -0.02042016200721264, -0.030035771429538727, 0.004350802395492792, 0.0030150949023663998, -0.017626138404011726, -0.018384091556072235, 0.003956963773816824, 0.01890425570309162, -0.014913852326571941, 0.003003948600962758, 0.008961686864495277, -0.004978714976459742, 0.006398020312190056, 0.0020435024052858353, 0.00998715404421091, 0.004231907892972231, -0.0027067118790000677, 0.0005522100836969912, -0.009645331650972366, 0.001782491453923285, -0.0009441910078749061, 0.013643165118992329, 0.02981284260749817, -0.015352276153862476, 0.021207839250564575, -0.0333796851336956, -0.005766392219811678, -0.016021059826016426, 0.009110305458307266, 0.02367490530014038, 0.008731328882277012, 0.024938160553574562, 0.011480768211185932, -0.009296078234910965, 0.02302098460495472, -0.007735585793852806, -0.001565137063153088, 0.014995592646300793, -0.013680320233106613, -0.010039170272648335, 0.009006273001432419, 0.008723897859454155, -0.0053428299725055695, -0.015486032702028751, 0.0011870891321450472, -0.015233381651341915, 0.0018400810658931732, 0.009095443412661552, 0.0004862606874667108, -0.008374644443392754, -0.014289655722677708, 0.009771657176315784, -0.00644260598346591, -0.009140029549598694, 0.0008201875607483089, 0.01718028262257576, 0.013368221931159496, -0.009251493029296398, 0.019038012251257896, 0.026751304045319557, -0.023526286706328392, 0.003724747570231557, 0.01076740026473999, 0.026974232867360115, 0.011480768211185932, 0.005209073424339294, 0.00127626012545079, 0.0014843258541077375, -0.0020119210239499807, -0.008976548910140991, -0.018012546002864838, -0.02443285845220089, 0.024447720497846603, -0.005736668594181538, -0.0108045544475317, -0.02146049030125141, -0.010418146848678589, 0.01500302366912365, -0.007743016351014376, -0.006747273728251457, -0.00835978239774704, -0.009088012389838696, -0.009793950244784355, 0.007780170999467373, -0.017626138404011726, -0.015411724336445332, -0.0007263722363859415, 0.01958790048956871, -0.010685659945011139, -0.004343371372669935, 0.01214211992919445, 0.013041260652244091, 0.0075535280629992485, 0.005810977891087532, 0.0205390565097332, 0.014126175083220005, -0.002138246549293399, -0.018265197053551674, 0.01622912473976612, 0.01429708581417799, 0.00034762764698825777, -0.010343837551772594, -0.012090103700757027, 0.02652837708592415, -0.008255749940872192, -0.012365047819912434, 0.012810902670025826, -0.0053948466666042805, -0.018161162734031677, 0.010997758246958256, -0.02871306799352169, 0.006238255649805069, -0.013814076781272888, -0.01767072267830372, -0.023585733026266098, -0.00282003334723413, -0.01725459098815918, 0.015604928135871887, 0.003408933524042368, 0.0005549967172555625, -0.006899607367813587, -0.003446088172495365, 0.019364971667528152, 0.020286405459046364, -0.014668632298707962, -0.00861243437975645, 0.010187788866460323, -0.0060896375216543674, 0.023957280442118645, 0.022708885371685028, -0.002238563960418105, 0.0031395629048347473, -0.010433008894324303, -0.012246153317391872, -0.013323635794222355, -0.009340664371848106, 0.010551903396844864, 0.012134688906371593, -0.03546034172177315, 0.02776191011071205, 0.0021642548963427544, -0.00178992236033082, 0.0037637599743902683, -0.005836986005306244, 0.009949998930096626, 0.014921283349394798, 0.016318295150995255, -0.02611224539577961, 0.021579386666417122, 0.014304516837000847, 0.010492456145584583, 0.009437265805900097, 0.005558326840400696, -0.0036244301591068506, -0.024670647457242012, 0.003003948600962758, 0.019751379266381264, 0.0022497104946523905, 0.008538125082850456, -0.007468072697520256, 0.0036337189376354218, -0.010797123424708843, 0.006494622211903334, -0.00018437964899931103, 0.0034200800582766533, 0.0029835135210305452, 0.009875689633190632, -0.0003223160747438669, 0.018547572195529938, 0.008218595758080482, -0.00838207546621561, -0.002870192052796483, -0.014869267120957375, 0.0033662058413028717, -0.008976548910140991, 0.005695798434317112, -0.021623970940709114, 0.0015075474511831999, 0.018607018515467644, -0.02015264891088009, 0.006754704285413027, 0.012431926093995571, -0.02545832470059395, -1.0885133860938367e-07, 0.0053353989496827126, -0.012060379609465599, 0.02565152943134308, 0.016556086018681526, 0.014557168819010258, 0.015931887552142143, -0.005413423758000135, -0.011309857480227947, -0.016660118475556374, 0.014698355458676815, 0.01939469575881958, 0.011948916129767895, -0.009177183732390404, -0.015396862290799618, 0.002554378006607294, 0.011986070312559605, 0.01660067029297352, -0.02015264891088009, -0.0021568238735198975, -0.0021140961907804012, 0.006687826011329889, -0.0037154590245336294, -0.00644260598346591, 0.004588591866195202, 0.004491989966481924, 0.002413190668448806, -0.0027141429018229246, 0.011406458914279938, -0.016139954328536987, 0.02061336673796177, 0.013739767484366894, -0.010418146848678589, 0.009526437148451805, 0.01023237407207489, 0.005576903931796551, -0.01185231376439333, -0.001993343699723482, -0.0015985762001946568, 0.001762056490406394, 0.0033624903298914433, -0.010180357843637466, 0.007037079427391291, 0.046487823128700256, -0.02958991564810276, 0.011384166777133942, 0.015136780217289925, 0.007115103770047426, 0.009348094463348389, 0.009749364107847214, 0.01679387502372265, -0.0010403285268694162, 0.008330059237778187, -0.003158140229061246, 0.008307766169309616, 0.010849140584468842, 0.01997430808842182, 0.010722815059125423, -0.0011889468878507614, -0.0035742714535444975, 0.012729162350296974, 0.002329592825844884, -0.020643090829253197, 0.010908587835729122, -0.005836986005306244, 0.011748281307518482, 0.02431396394968033, 0.023689767345786095, 0.013241895474493504, -0.0068475911393761635, -0.002013778779655695, -0.012892642989754677, 0.0065726470202207565, -0.00828547403216362, 0.01509962510317564, 0.009437265805900097, 0.017759894952178, -0.007683569099754095, -0.005168203264474869, -0.005327968392521143, -0.016273710876703262, 0.002799598267301917, 0.015679236501455307, 0.0037433248944580555, -0.009080581367015839, 0.019632484763860703, 0.0007221923442557454, 0.00014014246698934585, -0.007691000122576952, -0.02703367918729782, -0.002574813086539507, 0.00378976808860898, -0.011146376840770245, 0.015827855095267296, 0.0037879105657339096, 0.020791709423065186, 0.021103806793689728, 0.02978311851620674, -0.013776921667158604, 3.375842788955197e-05, -0.002598963677883148, 0.01458689197897911, -0.0034609499853104353, -0.015010454691946507, -0.0262608639895916, 0.019038012251257896, -0.0007073305314406753, -0.01372490543872118, 0.004889544099569321, -0.003059680573642254, -0.004885828588157892, 0.0251908116042614, 0.0006971129914745688, 0.01752210408449173, -0.02348170056939125, -0.001305054989643395, 0.026364896446466446, -0.0035464055836200714, 0.01917176879942417, -0.00689217634499073, 0.003587275743484497, -0.005275951698422432, 0.008396937511861324, -0.021846899762749672, 0.002392755588516593, 0.021356457844376564, 0.002454060595482588, 0.008887377567589283, 0.017893649637699127, -0.012647422030568123, -0.002039786893874407, -0.02859417162835598, 0.0007444851216860116, -0.0017091111512854695, -0.0036114261019974947, -0.03257714584469795, -0.0003325335856061429, 0.016972215846180916, -0.021698281168937683, 0.0022552835289388895, -0.023318219929933548, -0.02187662199139595, -0.014676063321530819, 0.007211706135421991, 0.023719489574432373, 0.0012251726584509015, 0.007988236844539642, 0.00992770679295063, -0.028846824541687965, 0.020108064636588097, -0.021787451580166817, -0.00017137554823420942, 0.005521172191947699, 0.017016801983118057, 0.011525353416800499, 0.00742720253765583, 0.025205673649907112, -0.03385526314377785, -0.007928789593279362, -0.022723747417330742, -0.0011081356788054109, 0.001263256068341434, -0.006921899970620871, -1.785162021405995e-05, -0.0014202342135831714, 0.012127257883548737, -0.007077949587255716, -0.0038083454128354788, -0.01622912473976612, 0.014423412270843983, -0.007364039774984121, 0.009385249577462673, -0.0012539674062281847, -0.0034776695538312197, 0.005955880973488092, -0.004558868240565062, -0.0012734736083075404, 0.010752538219094276, -0.01790851168334484, -0.014661201275885105, 0.004818950314074755, -0.007765309419482946, 0.001860516145825386, -0.01686818338930607, -0.012483942322432995, 0.004205899778753519, 0.01181515958160162, 0.012357616797089577, -0.014876698143780231, 0.0004082360537722707, 0.006747273728251457, -0.01946900598704815, -0.005766392219811678, 0.0007077949121594429, 0.021311873570084572, -0.023734351620078087, -0.002833037404343486, 0.003537117037922144, -0.02370462752878666, 0.017536966130137444, -0.00459230737760663, -0.005495164077728987, -0.0009650904685258865, 0.019216353073716164, -0.0017100400291383266, -0.0054765865206718445, -0.01046273298561573, 0.003171144286170602, 0.008679312653839588, -0.013918109238147736, 0.00060376210603863, -0.008404368534684181, 0.020108064636588097, 0.009749364107847214, -0.012699439190328121, 0.018339505419135094, -0.02253054268658161, 0.04318849369883537, 0.0029705094639211893, -0.02260485291481018, -0.019528452306985855, -0.01185231376439333, 0.01664525642991066, 0.011934054084122181, -0.023392530158162117, 0.015515756793320179, 0.004692624788731337, 0.019483866170048714, -0.014029573649168015, -0.003059680573642254, 0.003994118422269821, -0.027286330237984657, 0.003271461697295308, -0.008983979932963848, 0.011525353416800499, 0.014393688179552555, -0.0031469936948269606, -0.007973374798893929, -0.019870275631546974, -0.007564674597233534, 0.006513199768960476, 0.01282576471567154, -0.01282576471567154, -1.597937625774648e-05, -0.00668039545416832, 0.006903322879225016, -0.0118746068328619, -0.0062865568324923515, -0.015456309542059898, -0.024492306634783745, 0.0008782416116446257, -0.006617232691496611, -0.013182448223233223, 0.00569951394572854, 0.005766392219811678, 0.0014016568893566728, -0.008545556105673313, -0.022708885371685028, -0.007951082661747932, -0.015590066090226173, -0.015322552993893623, 0.006253117695450783, 0.004332225304096937, 0.005903864279389381, -0.008374644443392754, 0.026632409542798996, 0.012506235390901566, -0.017046526074409485, 0.002344454638659954, 0.00971964094787836, 0.006754704285413027, 0.019023150205612183, -0.012959521263837814, 0.0017323327483609319, -0.0357278548181057, 0.0129446592181921, -0.0035259705036878586, -0.011027482338249683, 0.02126728743314743, 0.015590066090226173, 0.00256738206371665, 0.0003364812582731247, -0.0006896820850670338, -0.006810436490923166, -0.009459558874368668, 0.0011285706423223019, 0.01128013338893652, -0.021103806793689728, 0.0018345079151913524, 0.01622912473976612, -0.012535958550870419, 0.0005940090049989522, 0.03673845902085304, 0.0010003873612731695, -0.005502594634890556, 0.005339114461094141, -0.014252500608563423, 0.005721807014197111, 0.005001008044928312, -0.01395526435226202, -0.016243986785411835, -0.022694023326039314, -0.002582244109362364, 0.0020193520467728376, -0.0026416913606226444, 0.021772589534521103, 0.022084688767790794, -0.01244678720831871, 0.011465906165540218, -0.01820574887096882, -0.008121993392705917, -0.004034988582134247, -0.0033587750513106585, 0.0053428299725055695, 0.01679387502372265, 0.025131365284323692, -0.008716466836631298, -0.0013765775365754962, 0.0034758117981255054, 0.014638908207416534, 0.020791709423065186, -0.013568855822086334, 0.007103957701474428, -0.0024856419768184423, 0.03557923436164856, -0.010871432721614838, -0.015337415039539337, -0.006817867048084736, 0.030139803886413574, 0.001867018174380064, -0.002604536712169647, -0.008062546141445637, -0.03168543428182602, -0.014363964088261127, -0.015515756793320179, 0.0010338264983147383, -0.0033439130056649446, -0.0016394462436437607, 0.03956220671534538, 0.009348094463348389, 0.0010756254196166992, -0.012662284076213837, -0.005242512561380863, -0.009556160308420658, 0.0023741782642900944, 0.03302299976348877, 0.02146049030125141, 0.01633315719664097, 0.028044285252690315, 0.0330527238547802, 0.01107206754386425, -0.027747048065066338, -0.0028887693770229816, 0.02973853424191475, -0.005235081538558006, 0.010968035086989403, -0.012394770979881287, -0.014809819869697094, -0.017878789454698563, 0.002940785838291049, -0.008931963704526424, 0.007449495140463114, -0.018829945474863052, -0.013063553720712662, 0.023660043254494667, -0.00510504050180316, 0.011198393069207668, 0.02698909491300583, 0.0009098230511881411, 0.0033643480855971575, 0.0041390215046703815, -0.005361407529562712, 0.008330059237778187, -0.00307268463075161, -0.012803471647202969, 0.009972291998565197, -0.0013087703846395016, -0.0047817956656217575, 0.017804479226469994, -0.01660067029297352, 0.017195144668221474, 0.02229275368154049, -0.0028757653199136257, -0.032279908657073975, 0.00441768066957593, 0.0065206303261220455, -0.00501215411350131, -0.02039043977856636, 0.0021809744648635387, 0.004231907892972231, -0.0014295228756964207, 0.0029222085140645504, 0.014802388846874237, -0.000410558219300583, -0.007638983894139528, -0.017849065363407135, 0.009021134115755558, 0.015604928135871887, -0.005079032387584448, 0.004841242916882038, -0.017774755135178566, 0.0025450894609093666, 0.016660118475556374, -0.0032658884301781654, 0.0029296395368874073, -0.018562432378530502, -0.007928789593279362, 0.005041877739131451, -0.021014636382460594, 0.02377893775701523, 0.026364896446466446, 0.00038617552490904927, 0.007631552871316671, -0.015263105742633343, 0.0051384796388447285, -0.009236630983650684, -0.0065206303261220455, -0.009734502993524075, 0.013338497839868069, 0.01786392740905285, 0.01997430808842182, 0.005268520675599575, -0.01805713027715683, 0.015812993049621582, -0.0058778561651706696, 0.006093352567404509, 0.00012133295967942104, 0.002245994983240962, -0.013680320233106613, -0.0008931034826673567, 0.0005503523861989379, 0.0004839385219383985, 0.013836368918418884, 0.010960604064166546, 0.013710043393075466, 0.0147355105727911, 0.0011666541686281562, -0.006698972545564175, 0.010782262310385704, -0.019691932946443558, -0.004109297879040241, 0.008783345110714436, 0.019691932946443558, 0.003332766704261303, 0.006524345837533474, 0.022099550813436508, -0.010388423688709736, 0.0014638908905908465, 0.0018131439574062824, 0.02973853424191475, 0.00029863000963814557, 0.015976473689079285, -0.009712209925055504, 0.0006116574513725936, 0.0007811752730049193, 0.03528199717402458, 0.01810171641409397, -0.003067111363634467, 0.010403284803032875, 0.012261014431715012, 0.0035984220448881388, -0.008121993392705917, -0.007055656518787146, -0.012513665482401848, -0.001606007106602192, -0.03783823549747467, -0.003592848777770996, -0.01698707789182663, 0.025517772883176804, -0.020524196326732635, -0.003206441178917885, -0.009808811359107494, -0.0013301343424245715, -0.007575821131467819, 0.014653770253062248, 0.009407542645931244, -0.008255749940872192, -0.021936070173978806, -0.01805713027715683, -0.032279908657073975, 0.02031612955033779, 0.005703229457139969, -0.021475352346897125, 0.023585733026266098, 0.014215346425771713, -0.010091186501085758, -0.004306217189878225, -0.007219136692583561, -0.029114337638020515, 0.004908121190965176, -0.0012186705134809017, 0.017626138404011726, 0.005227650981396437, -0.018562432378530502, 0.0007723510498180985, 0.013279050588607788, -0.004974999465048313, -0.008664450608193874, 0.007382616866379976, 0.02759842947125435, 0.011421320959925652, -0.017685584723949432, -0.030526211485266685, -0.013836368918418884, -0.011317288503050804, 0.01154764648526907, -0.02260485291481018, -0.018265197053551674, 0.0009214338497258723, 0.015931887552142143, -0.0011666541686281562, 0.0001476894976804033, 0.0011601520236581564, -0.007564674597233534, -0.005651213228702545, -0.010009446181356907, -0.02508677914738655, -0.023080430924892426, 0.001873520202934742, -0.02336280606687069, -0.030764000490307808, 0.02153480052947998, -0.010388423688709736, 0.010031739249825478, -0.01160709373652935, -0.005643782205879688, -0.0125954058021307, -0.02085115574300289, 0.013427669182419777, 0.023466838523745537, -0.011599662713706493, -0.008493538945913315, 0.018458399921655655, 0.0030076641123741865, 0.008404368534684181, -0.03896773234009743, 0.0050047230906784534, -0.01395526435226202, 0.008605003356933594, -0.006260548252612352, -0.028623895719647408, 0.011785436421632767, -0.011711127124726772, 0.015530618838965893, 0.002182832220569253, -0.0025599512737244368, 0.002320304047316313, 0.014475428499281406, -0.00302995671518147, -0.015337415039539337, -0.011562508530914783, 0.0049229832366108894, -0.005149626173079014, 0.0009144673240371048, -0.0029296395368874073, 0.02832665853202343, 0.006791858933866024, -0.03382553905248642, 0.017685584723949432, 0.003223160747438669, 0.006483476143330336, -0.012580543756484985, -0.003949532750993967, 0.02951560541987419, -0.002344454638659954, 0.005703229457139969, 0.005654928740113974, -0.042088720947504044, 0.022084688767790794, 0.01611023023724556, -0.011978640221059322, -0.006431459449231625, 0.003163713263347745, -0.002197694033384323, 0.012758886441588402, 0.009563591331243515, 0.01718028262257576, 0.005082747898995876, 0.009258924052119255, 0.0036300034262239933, 0.03768961504101753, 0.0038417845498770475, -0.004358233418315649, -0.0027643016073852777, -0.0055471803061664104, 0.0047000558115541935, -0.004269062541425228, -0.013583717867732048, 0.0009321157704107463, 0.020449886098504066, -0.0024391987826675177, 0.0032956120558083057, -0.0011267128866165876, -0.013635734096169472, -0.0016728853806853294, -0.014438273385167122, 0.009563591331243515, 0.01128013338893652, 0.004001549445092678, 0.023570872843265533, 1.9157835140504176e-06, 0.01981082744896412, 0.009154890663921833, -0.00728229945525527, -0.00040196621557697654, 0.01255825161933899, -0.018948841840028763, 0.01703166402876377, -0.012848056852817535, -0.024388272315263748, -0.006855021696537733, -0.011822590604424477, 0.001641303999349475, 0.012900074012577534, 0.018621880561113358, -0.017997683957219124, 0.019602762535214424, 0.01756669022142887, 0.027613291516900063, -0.003360632574185729, 0.004536575637757778, -0.010893725790083408, -0.019959446042776108, 0.002751297317445278, 0.0016673122299835086, -0.015486032702028751, -0.0170613881200552, -0.00017613597447052598, 0.015144211240112782, 0.004384241532534361, 0.025265121832489967, 0.0022980114445090294, 0.012268445454537868, -0.012171844020485878, -0.005454293917864561, -0.004328509792685509, 0.009236630983650684, -0.013041260652244091, -0.006424028426408768, 0.01611023023724556, -0.011725988239049911, 0.0012586117954924703, -0.015136780217289925, -0.00966019369661808, -0.009407542645931244, 0.018948841840028763, 0.00861243437975645, -0.0032658884301781654, -0.007598113734275103, 0.016704702749848366, -0.0016162246465682983, -0.010299252346158028, 0.01370261237025261, 0.016169678419828415, -0.010655936785042286, -0.00034344775485806167, 0.0031414206605404615, 0.0008884591516107321, -0.005379984620958567, -0.0067955744452774525, 0.013710043393075466, -0.00891710165888071, -0.017878789454698563, 0.0016589524457231164, -0.001326418831013143, -0.0018568006344139576, 0.0021531085949391127, -0.004194753244519234, -0.03599536791443825, -0.0003752613556571305, -0.014163329266011715, -0.027212021872401237, -0.00240018661133945, 0.0035817024763673544, 0.0040758587419986725, -0.02898058108985424, 0.006598655134439468, 0.012186705134809017, 0.009727071970701218, -0.007568390108644962, 0.005030731670558453, 0.010901156812906265, -0.011770574375987053, -0.007341747172176838, 0.013056122697889805, 0.023734351620078087, -0.010299252346158028, 0.012208998203277588, 0.013256757520139217, 0.002990944543853402, -0.0073491777293384075, 0.0028664765413850546, 0.00117129844147712, 0.022396786138415337, 0.01481725089251995, 0.01044043991714716, -0.014334240928292274, 0.04399103298783302, -0.015203658491373062, 0.017536966130137444, 0.004588591866195202, 0.007891634479165077, 0.022842641919851303, 0.001922750030644238, -0.0028460416942834854, -0.0069999247789382935, 0.0024261947255581617, 0.006111930124461651, -0.006331142038106918, -0.006000466179102659, -0.013680320233106613, -0.0030931197106838226, 0.003938386682420969, 0.0074197715148329735, 0.009623038582503796, -0.022887228056788445, -0.002465207129716873, -0.0008582710288465023, 0.024596339091658592, 0.014943576417863369, -0.00039360643131658435, -0.0033494862727820873, 0.0032807502429932356, -1.8287024431629106e-05, 0.004540290683507919, -0.008552986197173595, 0.00992770679295063, 0.005792400799691677, -0.01917176879942417, -0.02058364264667034, -0.025681253522634506, -0.006245686672627926, 0.003165571019053459, -0.007683569099754095, 0.004105582367628813, 0.008307766169309616, -0.002563666785135865, 0.01718028262257576, -0.01515907235443592, 0.0025376584380865097, -0.010930879972875118, 0.005179349798709154, -0.026885060593485832, -0.01070795301347971, 0.004165029618889093, -0.027538981288671494, 0.0035073934122920036, 0.015486032702028751, 0.012662284076213837, 0.035222552716732025, 0.0016087937401607633, -0.0019821973983198404, -0.006843875627964735, -0.010737676173448563, -0.00402755755931139, -0.011525353416800499, -0.0013208456803113222, -0.014728079549968243, 0.028148317709565163, 0.016541223973035812, -0.011555077508091927, 0.007378901354968548, 0.01477266475558281, -0.03810574859380722, -0.010886294767260551, 0.020212097093462944, -0.0010533325839787722, -0.015411724336445332, 0.01893397979438305, -0.00885765440762043, -0.0004437651368789375, -0.027925390750169754, 0.006342288572341204, -0.007271153386682272, 0.010343837551772594, -0.010284390300512314, -0.006230824626982212, 0.03974055126309395, -0.01625884883105755, 0.003838069038465619, 0.016927631571888924, 0.004948991350829601, -0.007364039774984121, 0.01500302366912365, -0.015991335734725, -0.0033977872226387262, -0.005807262379676104, 0.0005484946304932237, 0.019067736342549324, -0.004480843432247639, 0.009132598526775837, -0.01997430808842182, -0.0029110622126609087, -0.016556086018681526, 0.009459558874368668, -0.003773048520088196, 0.022887228056788445, 0.0008684885688126087, 0.004521713592112064, -0.010410715825855732, -0.0075535280629992485, 0.0034609499853104353, 0.007178266998380423, -0.027479534968733788, -0.011309857480227947, -0.004339656326919794, -0.011042344383895397, -0.010351268574595451, -0.009548729285597801, 0.011725988239049911, -0.009526437148451805, 0.012929797172546387, 0.018919117748737335, 0.0333796851336956, -0.007059372030198574, -0.017581552267074585, -0.010187788866460323, -0.019944583997130394, 0.004919267725199461, -0.011599662713706493, -0.0027884519658982754, 0.0022292754147201777, 0.01874077506363392, 0.0044399737380445, -0.008047684095799923, -0.0005122689181007445, -0.012692008167505264, 0.019409557804465294, 0.020970050245523453, -0.015991335734725, -0.0024800689425319433, 0.011562508530914783, -0.029560191556811333, 9.050626249518245e-05, -0.007464357186108828, 0.007653845474123955, -0.005108756013214588, -0.013449961319565773, 0.0004451584245543927, 0.009028565138578415, -0.003990402910858393, -0.01657094806432724, -0.02542860060930252, 0.004064712207764387, 0.001480610459111631, 0.04657699540257454, 0.024997608736157417, 0.0017091111512854695, -0.00471491739153862, -0.00605248287320137, -0.014936145395040512, 0.007170835975557566, -0.00178992236033082, -0.027271468192338943, 0.02046474814414978, 0.005532318260520697, -0.0045774453319609165, 0.021044360473752022, 0.0065912241116166115, 8.353977318620309e-05, 0.018071992322802544, -0.003074542386457324, -0.0063051339238882065, -0.007765309419482946, 0.015292828902602196, 0.009727071970701218, 0.005510025657713413, -0.00671011907979846, -0.009088012389838696, 0.0055286032147705555, 0.004930414259433746, 0.004755787551403046, -0.012298169545829296, -0.0007203345885500312, 0.0035817024763673544, 0.033766090869903564, 0.0003692237369250506, -0.022367063909769058, 0.007308308035135269, 0.0064574675634503365, -0.0036653003189712763, 0.00998715404421091, 0.013531701639294624, -0.001824290375225246, -0.005866709630936384, -0.024254515767097473, -0.0043619489297270775, 0.00018670181452762336, -0.0258893184363842, -0.016927631571888924, -0.0053428299725055695, 0.01181515958160162, -0.018963702023029327, 0.0008201875607483089, -0.006483476143330336, 0.0023240195587277412, -0.00966019369661808, -0.013739767484366894, -0.0017945667495951056, -0.027702461928129196, 0.030020909383893013, 0.009823673404753208, -0.020063478499650955, 0.001045901677571237, -0.008374644443392754, -0.017195144668221474, -0.003819491947069764, 0.0015688525745645165, 0.04202927276492119, -0.00605248287320137, 0.015976473689079285, -0.0008754550362937152, 0.006476045120507479, -0.004674047231674194, 0.016362881287932396, 0.01740320958197117, -0.02275347150862217, 0.005309390835464001, -0.018829945474863052, -0.025829870253801346, -0.029233232140541077, -0.03088289499282837, -0.0083449212834239, -0.015798131003975868, 0.013227034360170364, 0.006446321494877338, -0.0005118044791743159, 0.0004242589639034122, -0.013063553720712662, -0.01428222469985485, 0.009504144079983234, -0.015233381651341915, 0.0029500743839889765, 0.008307766169309616, -0.018428675830364227, -0.022708885371685028, -0.007382616866379976, -0.013449961319565773, -0.002071368508040905, 0.02263457700610161, 0.002885053865611553, -0.0016923915827646852, -0.011614524759352207, 0.007661276496946812, 0.007661276496946812, 0.008471246808767319, 0.02798483707010746, 0.005194211844354868, 0.008493538945913315, -0.00828547403216362, -0.035757578909397125, -0.004317363258451223, -0.010284390300512314, -0.0004983359249308705, 0.025829870253801346, -0.007497796323150396, 0.020286405459046364, 0.007479218766093254, -0.0038083454128354788, -0.01637774333357811, 0.012751455418765545, 0.018800223246216774, 0.009266355074942112, 0.020524196326732635, 0.008827930316329002, -0.0009465132025070488, 0.015382000245153904, 0.028460415080189705, 0.004517998080700636, 0.015515756793320179, 0.0015465598553419113, 0.019899997860193253, 0.01897856406867504, -0.012810902670025826, -0.0009920275770127773, -0.004622031003236771, -0.01900828815996647, -0.015107056125998497, 0.011599662713706493, 0.010982897132635117, -0.004540290683507919, -0.006186239421367645, 0.00026008213171735406, 0.011948916129767895, 0.0008531622588634491, -0.0076055447570979595, -0.000967877043876797, 0.020226959139108658, 0.005465439986437559, 0.01378435268998146, 0.003713601268827915, -0.015263105742633343, 0.02061336673796177, 0.019483866170048714, 0.0005108756013214588, -0.006840160116553307, -0.01832464337348938, -0.000512733357027173, 0.011562508530914783, -0.008746190927922726, 0.0022218443918973207, -0.015411724336445332, 0.014616616070270538, -0.01591702550649643, 0.002650979906320572, 0.0020119210239499807, 0.016615532338619232, 0.014609185047447681, 0.0029705094639211893, 0.01767072267830372, -0.01286291889846325, -0.019156906753778458, 0.014037003740668297, -0.017923373728990555, -0.008605003356933594, -0.005145910661667585, 0.012052948586642742, -0.0021456775721162558, -0.005350260995328426, -0.01703166402876377, 0.006085922010242939, -0.006267979275435209, 0.00752008892595768, -0.017953097820281982, 0.0030819731764495373, 0.011473337188363075, 0.0019543315283954144, 0.01657094806432724, 0.001551204128190875, -0.026587825268507004, 0.014690924435853958, 0.004313647747039795, 0.005580619443207979, 0.00975679513067007, 0.00329746981151402, 0.0075535280629992485, 0.007854480296373367, 0.003446088172495365, -0.011540215462446213, 0.001930180937051773, 0.026632409542798996, -0.00047557876678183675, -0.020553918555378914, -0.04577445611357689, -0.008315197192132473, -4.014437217847444e-05, -0.0038863702211529016, -0.02737550251185894, 0.015263105742633343], "c85152fe-d901-4aea-9c99-3feb491c997a": [-0.024459702894091606, -0.012313617393374443, -0.010234694927930832, 0.01789548620581627, -0.01334165595471859, -0.030643165111541748, 0.018900679424405098, 0.04191351309418678, -0.009069584310054779, 0.014933211728930473, 0.000563041481655091, 0.04170028865337372, -0.00146209925878793, -0.009138120338320732, -0.0014297351008281112, 0.033293217420578, 0.0033258951734751463, 0.014590532518923283, 0.012686757370829582, -0.06174323335289955, 0.04983321577310562, -0.02677469328045845, -0.02120043896138668, 0.020652152597904205, -0.00304223271086812, -0.009952936321496964, -0.014118396677076817, 0.014499151147902012, -0.036613404750823975, -0.022510236129164696, 0.008772595785558224, 0.022449316456913948, -0.0016962636727839708, 0.004888894502073526, 0.027140218764543533, -0.03710076957941055, 0.030612703412771225, 0.01152164675295353, -0.018382852897047997, -0.0033753933385014534, -0.0248404573649168, 0.010782982222735882, -0.003786608809605241, 0.0024996567517518997, -0.025099370628595352, -0.0006115877768024802, 0.03579097241163254, 0.00852891243994236, -0.012930440716445446, -0.039659444242715836, 0.012663912028074265, 0.011597798205912113, -0.025373514741659164, -0.007592255249619484, 0.048188354820013046, -0.04888894408941269, 0.008262383751571178, 0.06311395019292831, -0.001168917864561081, -0.05757015943527222, -0.012854289263486862, -0.02592180110514164, 0.009572180919349194, -0.024642465636134148, 0.009922475554049015, -0.005098309833556414, -0.004622365813702345, -0.012130854651331902, -0.015930790454149246, 0.029622741043567657, -0.018763607367873192, 0.012123240157961845, -0.061286330223083496, -0.01992110349237919, 0.003746629459783435, 0.010447917506098747, 0.012770523317158222, -0.006880243308842182, 0.01414124108850956, -0.023591581732034683, 0.012953286059200764, -0.004801320843398571, 0.0317397378385067, 0.0002734297013375908, 0.05632128193974495, 0.02642439864575863, -0.024612003937363625, -0.06274842470884323, -0.048005592077970505, -0.023439278826117516, 0.01515404973179102, 0.03240986913442612, -0.007318111602216959, -0.01309035811573267, 0.007679828908294439, 0.014895136468112469, 0.008917282335460186, 0.007649368606507778, -0.009442724287509918, -0.03326275944709778, -0.017667032778263092, 0.016859833151102066, -0.022144712507724762, -0.006526140961796045, 0.0309020783752203, -0.014110781252384186, -0.00890966784209013, 0.012382153421640396, -0.02053031139075756, 0.021748727187514305, -0.00761890783905983, -0.04483771324157715, 0.015466269105672836, -0.017941176891326904, -0.03834964707493782, -0.03192250058054924, -0.04550784081220627, -0.020134326070547104, -0.01841331273317337, -0.046238891780376434, 0.0415479876101017, -0.005048811435699463, 0.018870219588279724, -0.018428543582558632, -0.008643139153718948, -0.0032021496444940567, 0.023698192089796066, 0.012930440716445446, 0.022266553714871407, 0.0005244900239631534, -0.013105588033795357, -0.01288475003093481, 0.026820383965969086, 0.011019050143659115, 0.01696644350886345, 0.009671177715063095, 0.010851518251001835, 0.059763308614492416, -0.024612003937363625, 0.04124338552355766, -0.030429940670728683, -0.023241287097334862, -0.0005644693155772984, 0.019707880914211273, 0.022692998871207237, 0.014278313145041466, -0.03152651712298393, 0.025860881432890892, 0.006682250648736954, 0.01958603784441948, -0.060250673443078995, -0.020058173686265945, 0.0015649031847715378, 0.0016496211756020784, 0.026119794696569443, -0.04499001428484917, 0.0051782685332000256, 0.036522023379802704, 0.036948468536138535, 0.03944621980190277, 0.02465769462287426, -0.048340655863285065, -0.011552107520401478, 0.022403625771403313, 0.0022997602354735136, 0.04093877971172333, 0.06073804199695587, 0.024809997528791428, -0.03186158090829849, 0.02794741839170456, 0.018032558262348175, -0.015839409083127975, 0.01215369999408722, 0.02289099246263504, -0.008627909235656261, 0.01478090975433588, 0.03874563053250313, 0.03524268418550491, 0.04084739834070206, -0.01081344299018383, -0.022845301777124405, 0.018717916682362556, -0.0025225020945072174, 0.008681214414536953, 0.0052772643975913525, 0.053153399378061295, 0.019814491271972656, 0.04237041994929314, 0.003891316242516041, -0.0316178984940052, -0.011772945523262024, 0.014156471937894821, -0.005932163447141647, 0.005208728834986687, -0.016935983672738075, -0.0243226308375597, -0.012915210798382759, 0.02829771302640438, -0.0006720325909554958, 0.028769848868250847, -0.009465569630265236, -0.04002496972680092, -0.04492909088730812, 0.03859332948923111, -0.02982073277235031, 0.024018026888370514, -0.00686120567843318, -0.04788375273346901, 0.021413663402199745, -0.006023544352501631, 0.049376312643289566, -0.029957804828882217, -0.004431988578289747, 0.004892702214419842, -0.004371067509055138, -0.010303230956196785, -0.002636728575453162, 0.03962898254394531, -0.029835963621735573, -0.03670478239655495, -0.016677070409059525, 0.02811495028436184, -0.006175846327096224, -0.00954172108322382, -0.06695196032524109, 0.007074428256601095, -0.006408107001334429, 0.05287925899028778, -0.04249225929379463, -0.008924897760152817, 0.021215669810771942, -0.012511610053479671, -0.0024615812581032515, -0.009229501709342003, -0.005996891763061285, 0.04422850161790848, 0.029698891565203667, -0.022906221449375153, -0.009061969816684723, 0.0068155149929225445, 0.017545191571116447, 0.02915060520172119, -0.003165978007018566, -0.003826587926596403, 0.016494307667016983, 0.02406371757388115, -0.019220514222979546, 0.06615999341011047, 0.010767752304673195, -0.023012833669781685, -0.010227079503238201, 0.0058141290210187435, -0.005448604468256235, 0.0014630511868745089, -0.0038894126191735268, 0.012404998764395714, 0.017804104834794998, -0.028602316975593567, 0.0033049536868929863, -0.0031964383088052273, 0.014872291125357151, 0.014560071751475334, 0.021246129646897316, 0.012031858786940575, 0.03834964707493782, -0.0027243022341281176, 0.009450339712202549, -0.014186931774020195, 0.006701288279145956, 0.012100394815206528, -0.0054942951537668705, -0.0006829792982898653, -0.004972660448402166, 0.01867222599685192, 0.010455532930791378, -0.01152164675295353, -0.02304329350590706, -0.0006073042750358582, 0.03911115601658821, -0.006948779337108135, -0.010478378273546696, 0.013821407221257687, 0.019951563328504562, 0.009602641686797142, 0.061438631266355515, -0.012306001968681812, -0.036186955869197845, -0.00818623322993517, -0.035851892083883286, -0.0051097325049340725, -0.005349608138203621, -0.0017114938236773014, 0.0073104966431856155, 0.031282830983400345, 0.025464896112680435, 0.0020122902933508158, 0.009023893624544144, -0.020911065861582756, -0.003379200818017125, 0.026820383965969086, 0.015763258561491966, -0.0051782685332000256, 0.006373838987201452, -0.026378707960247993, 0.051995906978845596, -0.03429841250181198, 0.022159941494464874, 0.002657670062035322, -0.03573005273938179, 0.04307100921869278, 0.030338559299707413, -0.010409842245280743, -0.018565615639090538, -0.005357223097234964, -0.0002651006798259914, 0.01823054999113083, -0.00962548702955246, -0.010615450330078602, -0.008117697201669216, -0.03774043917655945, -0.016067862510681152, -0.017012134194374084, -0.06896235048770905, 0.018626535311341286, 0.06293118745088577, -0.05766154080629349, 0.02686607465147972, -0.028769848868250847, -0.028906920924782753, -0.027490513399243355, -0.02989688515663147, -0.012138470076024532, -0.038380105048418045, 0.01789548620581627, -0.042004894465208054, -0.05531609058380127, -0.05287925899028778, -0.041943974792957306, 0.005460027139633894, -0.0334150604903698, -0.0025320209097117186, 0.002223609248176217, 0.011460726149380207, -0.0002517742686904967, 0.00734857190400362, -0.006853590253740549, 0.03274493291974068, -0.004557637497782707, -0.04179167002439499, 0.0023073754273355007, 0.0008666936191730201, 0.00018954460392706096, 0.03536452725529671, -0.026211176067590714, 0.031191451475024223, -0.010379381477832794, 0.002657670062035322, 0.014643838629126549, 0.007257190532982349, -0.003186919493600726, -0.01672276109457016, -0.021337511017918587, -0.024383552372455597, 0.012108009308576584, -0.0030688855331391096, 0.004519562236964703, 0.0010166158899664879, -0.015100744552910328, -0.026622390374541283, 0.020834915339946747, -0.04703085869550705, 0.014430615119636059, 0.02829771302640438, 0.00826999917626381, -0.017849795520305634, -0.053336162120103836, 0.014133626595139503, -0.0051934984512627125, -0.03326275944709778, 0.04084739834070206, -0.005757016129791737, 0.002994638169184327, -0.004173074848949909, 0.018611306324601173, 0.03286677226424217, 0.021550733596086502, -0.02086537517607212, -0.02677469328045845, -0.023622041568160057, -0.02846524491906166, -0.026317786425352097, 3.590400956454687e-05, -0.04173075035214424, 0.0022997602354735136, -0.04358883574604988, -0.014590532518923283, -0.011133276857435703, -0.02532782405614853, -0.004485294222831726, -0.038380105048418045, 0.012839059345424175, 0.007820707745850086, -0.0024330245796591043, -0.015557650476694107, 0.016996903344988823, -0.04974183440208435, -0.004847011528909206, -0.011384575627744198, 0.03207480162382126, 0.007340956944972277, 0.022936683148145676, 0.018809298053383827, 0.025891341269016266, 0.02777988649904728, 0.049955058842897415, 0.015169279649853706, 0.014857061207294464, 0.03189203888177872, -0.03810596093535423, -0.03472485765814781, 0.04553830251097679, 0.05175222456455231, 0.01629631407558918, 0.013059897348284721, 0.01389755867421627, 0.01579371839761734, -0.013905173167586327, 0.024703385308384895, -0.020378008484840393, -0.013653875328600407, -0.024033257737755775, 0.04407620057463646, 0.00882590189576149, -0.022692998871207237, 0.018382852897047997, 0.015572880394756794, 0.01915959268808365, 0.007835938595235348, 0.00823953840881586, 0.003400142304599285, -0.0008519393741153181, 0.015016977675259113, -0.006983047351241112, -0.0063928766176104546, -0.02062169276177883, -0.03344552218914032, -0.029775042086839676, 0.031221911311149597, 0.030353790149092674, -0.0030650778207927942, 0.0031716893427073956, 0.031282830983400345, -0.044380806386470795, 0.011666334234178066, -0.0010385093046352267, 0.0026138832326978445, 0.003145036520436406, 0.012321232818067074, 0.0065832543186843395, -0.042096275836229324, -0.02686607465147972, -0.000382896774681285, 0.03167881816625595, 0.015580495819449425, -0.0012736255303025246, -0.02838909439742565, 0.007546564564108849, 0.024779537692666054, -0.0020065789576619864, -0.005490487441420555, 0.0048774718306958675, -0.0005097357789054513, -0.009754943661391735, 0.04349745437502861, 0.003877989947795868, 0.013006591238081455, -0.024444472044706345, -0.021596424281597137, 0.009952936321496964, -0.018976829946041107, -0.016616148874163628, -0.04383251816034317, 0.008863977156579494, -0.0014992229407653213, 0.03624787926673889, -0.021154748275876045, -0.01541296299546957, -0.017545191571116447, 0.029104914516210556, -0.015306351706385612, 0.05817936733365059, -0.01586986891925335, -0.0037618596106767654, 0.007995855063199997, -0.0035048499703407288, -0.03417656943202019, -0.004462448880076408, -0.03039948083460331, -0.02027139812707901, -0.04124338552355766, 0.040146809071302414, -0.018794067203998566, 0.008171002380549908, 0.003921776544302702, -0.0015163568314164877, 0.015222585760056973, -0.02010386437177658, 0.030978228896856308, -0.007302881218492985, -0.0248404573649168, -0.03396334871649742, 0.02803879976272583, -0.021215669810771942, -0.00517446082085371, 0.006282458081841469, 0.013082742691040039, -0.01681414246559143, 0.013821407221257687, 0.0334150604903698, -0.0014773295260965824, -0.0069259339943528175, -0.01081344299018383, -0.008742135018110275, -0.0008300459594465792, -0.029683660715818405, -0.0044243731535971165, -0.0022502620704472065, -0.021261360496282578, 0.03014056757092476, -0.008254769258201122, 0.004039810970425606, -0.003657151944935322, -0.023271746933460236, 0.036857087165117264, 0.029927344992756844, -0.008262383751571178, -0.012123240157961845, 0.013273119926452637, 0.0023435470648109913, 0.008863977156579494, -0.03131329268217087, 0.015473884530365467, -0.01714920625090599, -0.0004661869315896183, -0.007554179523140192, 0.033232297748327255, -0.02499276027083397, 0.010874363593757153, 0.0008552709477953613, 0.02584565058350563, -0.01932712458074093, 0.014339233748614788, -0.018717916682362556, -0.0009623583173379302, 0.008513682521879673, -0.022616848349571228, -0.0021341319661587477, -0.020484620705246925, -0.029744582250714302, -0.0020027714781463146, -0.02904399298131466, -0.00827761460095644, -0.0031336138490587473, 0.015473884530365467, -0.005296302493661642, 0.006910703610628843, -0.010508839040994644, -0.0012250792933627963, -0.023941876366734505, 0.03783182054758072, 0.048767104744911194, -0.00477086054161191, 0.04364975541830063, -0.008894436992704868, -0.001307893544435501, 0.04958953335881233, 0.00827761460095644, 0.021078597754240036, -0.03286677226424217, -0.013669105246663094, 0.03792320191860199, -0.019905872642993927, 0.004949815105646849, -0.007500873878598213, 0.0007453279686160386, 0.041669830679893494, -0.018459003418684006, -0.037374913692474365, -0.002874700352549553, 0.03320183977484703, -0.0010004338109865785, 0.02272346056997776, -0.00749325891956687, 0.017423350363969803, -0.023439278826117516, 0.014247853308916092, 0.023880954831838608, 0.017088284716010094, 0.015138819813728333, 0.010942899622023106, 0.030627934262156487, 0.01435446459800005, 0.005825551692396402, -0.021002447232604027, -0.03621741756796837, 0.04273594543337822, -0.009930090978741646, 0.02382003515958786, -0.0024939454160630703, 0.033140916377305984, 0.0161287821829319, 0.0036190764512866735, 0.02077399380505085, 0.0049155475571751595, 0.046147510409355164, 0.007375224959105253, 0.021824877709150314, 0.027734195813536644, 0.00814815703779459, 0.011140892282128334, 0.011635873466730118, -0.05306202173233032, 0.05693048983812332, -0.016418157145380974, 0.004412950947880745, -0.00890966784209013, -0.028312943875789642, -0.002598653081804514, -0.011209428310394287, -0.0049574305303394794, 0.0007115359767340124, -0.0030574628617614508, -0.01097335945814848, -0.02229701355099678, 0.005886472761631012, -0.013204583898186684, 0.011491186916828156, 0.011826250702142715, -0.017941176891326904, -0.013676720671355724, -0.005182075779885054, 0.011415035463869572, -0.008026315830647945, 0.03463347628712654, -0.024977529421448708, 0.01679891161620617, -0.007462798617780209, -0.004047425929456949, 0.047335464507341385, 0.017880255356431007, 0.001684841001406312, 0.019220514222979546, 0.02177918702363968, 0.022342704236507416, 0.008589833043515682, -0.002223609248176217, 0.0006634656456299126, 0.009503645822405815, 0.0002285719965584576, 0.0013878520112484694, 0.01756042242050171, -0.014095551334321499, 0.010417457669973373, 0.004550022538751364, 0.009747328236699104, 0.004980275873094797, 0.014948442578315735, 0.0064309523440897465, 0.03801458328962326, 0.018702685832977295, 0.021763958036899567, -0.0048089358024299145, 0.014796140603721142, 0.002151265973225236, 0.002345450920984149, 0.0068193222396075726, 0.01934235543012619, 0.02101767808198929, 0.006095888093113899, -0.0014059379464015365, -0.042096275836229324, -0.042522720992565155, -0.02889169193804264, 0.013394962064921856, -0.0281301811337471, -0.01714920625090599, -0.0047518229112029076, 0.019388046115636826, -0.02718590945005417, 0.009275192394852638, -0.015268276445567608, 0.011285578832030296, -0.016113553196191788, 0.03895885497331619, -0.001929476042278111, -2.9910092052887194e-05, 0.007135349325835705, -0.0238048043102026, 0.010166158899664879, -0.010630680248141289, -0.02339358814060688, -0.03350644186139107, 0.013379731215536594, -0.018687456846237183, 0.01191001757979393, -0.0011222754837945104, -0.02669854275882244, -0.03621741756796837, 0.0005149711505509913, -0.006933548953384161, 0.011483571492135525, -0.0051097325049340725, -0.008414685726165771, 0.02627209573984146, 0.008026315830647945, 0.015298737213015556, -0.011026665568351746, 0.022586388513445854, -0.002615787088871002, 0.04358883574604988, -0.012496380135416985, 0.029927344992756844, -0.03030809946358204, -0.01225269678980112, -0.02001248486340046, 0.02523644268512726, -0.0021379394456744194, 0.0012345981085672975, 0.0097092529758811, -0.001206993474625051, 0.031023919582366943, -0.022281784564256668, -0.00394462188705802, 0.008749750442802906, -0.00033387457369826734, 0.0035391179844737053, -0.001206993474625051, 0.012108009308576584, 0.035669129341840744, 0.0016715145902708173, 0.020895835012197495, -0.023180365562438965, 0.026911765336990356, -0.006796477362513542, -0.01114850677549839, -0.010729676112532616, 0.025799959897994995, 0.003723784117028117, -0.013334040530025959, 0.003807550296187401, 0.031221911311149597, -0.011407420039176941, 0.03825826570391655, 0.03039948083460331, -0.01638769544661045, -0.005696095060557127, 0.03125237300992012, 0.00823953840881586, -0.023530660197138786, 0.04770098999142647, -0.014179317280650139, -0.0020065789576619864, 0.020667383447289467, -0.007162001915276051, 0.0032611668575555086, 0.012412614189088345, 0.025541046634316444, 0.0014944634167477489, 0.036278337240219116, 0.02153550460934639, 0.042949166148900986, -0.015527189709246159, 0.031709279865026474, 0.047183163464069366, -0.02516029216349125, -0.043375611305236816, -0.007714096922427416, -0.0020522696431726217, -0.015511959791183472, -0.02036277949810028, -0.034237492829561234, -0.03962898254394531, 0.010067163035273552, -0.025967491790652275, 0.04346699267625809, -0.03524268418550491, 0.0403904914855957, -0.008026315830647945, 0.0037808974739164114, 0.01705782487988472, 0.011491186916828156, 0.013646259903907776, 0.0014878002693876624, 0.037862278521060944, -0.0021779187954962254, -0.024931838735938072, -0.0060045067220926285, -0.019570808857679367, -0.002413986949250102, 0.004934585187584162, 0.013021822087466717, -0.014872291125357151, 0.040664635598659515, 0.0498027577996254, 0.01689029298722744, 0.012260311283171177, 0.005623751785606146, 0.0003181684296578169, -0.021565964445471764, 0.00048355889157392085, -0.010691600851714611, -0.01824578084051609, -0.0073676095344126225, 0.0361260361969471, -0.025114601477980614, -0.008955358527600765, 0.007561794947832823, 0.0019627921283245087, 0.008368995040655136, 0.004055040888488293, 0.006971624679863453, 0.004934585187584162, 0.008033931255340576, 0.02246454544365406, 0.012869520112872124, 0.004633788485080004, 0.007771209813654423, 0.014963672496378422, -0.009952936321496964, -0.017164437100291252, -0.00836138054728508, -0.02551058679819107, -0.021002447232604027, 0.03856286779046059, -0.0019532733131200075, 0.020317088812589645, -0.02551058679819107, -0.010653525590896606, -0.0398726649582386, 0.043040547519922256, -0.010196619667112827, -0.05236143246293068, -0.028434785082936287, -0.005635174456983805, -0.012016628868877888, -0.003440121654421091, 0.015595725737512112, 0.02855662629008293, 0.03015579842031002, 0.04288824647665024, 0.028099721297621727, -0.02078922465443611, 0.01707305572926998, -0.03074977546930313, -0.02972935140132904, 0.016265854239463806, -0.0035276953130960464, -0.013798561878502369, 0.0032288026995956898, 0.0077102892100811005, 0.00026914619957096875, 0.01507028378546238, -0.023957105353474617, -0.009815864264965057, -0.012755293399095535, -0.019631728529930115, -0.02085014432668686, 0.010714446194469929, -0.0006877387640997767, 0.0025643850676715374, -0.0008005374111235142, 0.0034420255105942488, 0.014971287921071053, 0.0232260562479496, 0.00416165217757225, -0.006488065700978041, -0.00015372983762063086, 0.001797163742594421, -0.043954361230134964, 0.01106474082916975, -0.0059207407757639885, 0.007835938595235348, -0.005163038149476051, 0.015390117652714252, -0.02694222517311573, -0.0027738003991544247, 0.011536877602338791, -0.0037333029322326183, 0.0036095576360821724, -0.002549154916778207, -0.007748364936560392, 0.007466605864465237, -0.014027015306055546, -0.02382003515958786, 0.009534105658531189, -0.02913537435233593, -0.011415035463869572, -0.012443074025213718, -0.006172039080411196, -0.0004830829275306314, 0.0006986854714341462, -0.03512084484100342, -0.02523644268512726, 0.007858783937990665, 0.03106961026787758, -0.04072555899620056, 0.026211176067590714, 0.019631728529930115, 0.005212536081671715, 0.014217392541468143, 0.04325377196073532, 0.02491660788655281, -0.01313604786992073, -0.024368321523070335, 0.03429841250181198, 0.03895885497331619, 0.0004202583513688296, -0.0015353945782408118, -0.002910872222855687, -0.018519924953579903, 0.014225007966160774, 0.00027200186741538346, 0.03295815363526344, 0.002252165926620364, -0.002758570248261094, 0.002650054870173335, 0.001887593069113791, -0.031100070104002953, -0.00599308405071497, 0.028830770403146744, 0.00749325891956687, 0.020134326070547104, 0.01899206079542637, 0.005669442471116781, 0.01823054999113083, -0.0032116686925292015, -0.019479427486658096, -0.032318487763404846, -0.03435933217406273, -0.01279336865991354, -0.027581894770264626, -0.013745256699621677, 0.022236093878746033, -0.024627234786748886, -0.010942899622023106, -0.009572180919349194, -0.01824578084051609, 0.018047787249088287, -0.0040664635598659515, 0.0038018389604985714, 0.0023759114556014538, 0.03362828493118286, 0.01638769544661045, -0.0011013338807970285, 0.01098097488284111, 0.007561794947832823, -0.007942549884319305, -0.015313967131078243, 0.025099370628595352, -0.0022388396319001913, -0.0049155475571751595, 0.012823829427361488, -0.0010489800479263067, 0.018519924953579903, 0.007828323170542717, 0.006724133621901274, -0.027825577184557915, -0.0025948453694581985, -0.005894087720662355, -0.004702324513345957, -0.009214271791279316, 0.0057722460478544235, 0.0010032894788309932, -0.003004157217219472, -0.01398132462054491, -0.0065832543186843395, -0.02220563217997551, -0.008559373207390308, -0.03505992144346237, 0.011316039599478245, 0.008711675181984901, -0.008863977156579494, -0.02846524491906166, 0.00025462990743108094, -0.0024920415598899126, -0.012115624733269215, -0.014811370521783829, 0.03929391875863075, -0.023028064519166946, -0.009511260315775871, -0.0006929741357453167, -0.03216618299484253, -0.015915559604763985, -0.006518526002764702, -0.006221537012606859, -0.0167075302451849, -0.025221211835741997, -0.030018726363778114, 0.006689865607768297, -0.029835963621735573, -0.011544492095708847, -0.005113539751619101, -0.032470788806676865, 0.04754868894815445, 0.021581195294857025, 0.02794741839170456, -0.004831781145185232, -0.025023220106959343, -0.0064728353172540665, 0.00035005665267817676, -0.015230201184749603, -0.036613404750823975, -0.008254769258201122, -0.022769151255488396, -0.015580495819449425, 0.01481898594647646, 0.0205150805413723, -0.03317137807607651, 0.0032154761720448732, 0.04127384349703789, -0.00818623322993517, -0.032470788806676865, 0.007447568234056234, -0.03228802606463432, -0.017210127785801888, 0.005608521401882172, -0.019951563328504562, -0.008848746307194233, 0.02796264924108982, 0.024886148050427437, -0.013303580693900585, -0.010196619667112827, 0.005574253387749195, 0.0027376285288482904, -0.003076500492170453, -0.027048837393522263, 0.015732796862721443, -0.05894087627530098, -0.021428892388939857, -0.011392190121114254, 0.01594601944088936, -0.007002084981650114, 0.005696095060557127, 0.013082742691040039, 0.01178817544132471, -0.027825577184557915, 0.0003541021724231541, 0.01935758627951145, -0.023180365562438965, 0.018291471526026726, 0.006255805026739836, -0.006518526002764702, 0.021246129646897316, -0.007527526933699846, -0.0009733050246722996, 0.007085850927978754, -0.0063471863977611065, -0.014042245224118233, 0.013417807407677174, 0.028602316975593567, -0.01772795431315899, -0.021307051181793213, 0.018443772569298744, -0.01287713460624218, 0.011392190121114254, -0.004428180865943432, -0.0387151725590229, -0.000801489339210093, 0.031465593725442886, -0.017925946041941643, -0.002316894242540002, 0.00552856270223856, 0.021642114967107773, 0.013280735351145267, 0.0005102117429487407, 0.021901028230786324, -0.009351342916488647, 0.002092248760163784, 0.02008863538503647, -0.0005011687753722072, 0.003362066810950637, -0.0076265232637524605, -0.03320183977484703, 0.00272239837795496, -0.02762758359313011, -0.006964009255170822, 0.008308074437081814, 0.0058065140619874, 0.01350918784737587, 0.006769824307411909, -0.01579371839761734, -0.001960888272151351, -0.001502078608609736, 0.015306351706385612, -0.009960551746189594, 0.007116311229765415, -0.0039560445584356785, 0.03670478239655495, 0.02110905759036541, 0.010310846380889416, 0.008749750442802906, -0.027170678600668907, 0.018428543582558632, 0.023957105353474617, 0.030780235305428505, 0.025876112282276154, -0.005498102400451899, 0.020926296710968018, -0.0016629475867375731, 0.0011079971445724368, 0.027901727706193924, 0.003817069111391902, 0.023850494995713234, 0.0038113577757030725, 0.004946007858961821, 0.001604882418178022, -0.01288475003093481, -0.04084739834070206, 0.004131191875785589, -0.0015896522672846913, -0.008673598989844322, -0.012229851447045803, -0.029241986572742462, 0.002718590898439288, -0.005821744445711374, 0.005878857336938381, 0.009617871604859829, 0.04511185362935066, 0.022068561986088753, 0.029089683666825294, 0.004987890832126141, -0.023271746933460236, 0.05659542605280876, 0.0022654924541711807, 0.005669442471116781, 0.006712710950523615, 0.001075632986612618, 0.0007472317083738744, -0.003575289621949196, 0.008308074437081814, -0.03216618299484253, -0.008780211210250854, 0.006050197407603264, 0.013235044665634632, 0.0024996567517518997, -0.027292519807815552, -0.021565964445471764, -0.019311895594000816, -0.004866049159318209, -0.02796264924108982, 0.010524068959057331, -0.015131204389035702, 0.013387346640229225, -0.020819684490561485, -0.015298737213015556, -0.030947769060730934, 2.0495328499237075e-05, -0.0033277987968176603, 0.030171027407050133, -0.01748427003622055, -0.02720113843679428, -0.018002096563577652, 0.0036990351509302855, -0.009320883080363274, 0.0028880268801003695, -0.0094198789447546, 0.019052980467677116, 0.0047518229112029076, -0.01663137972354889, -0.006008314434438944, 0.004241610877215862, -0.009115274995565414, 0.010105238296091557, 0.03240986913442612, -0.014072705991566181, 0.04002496972680092, -0.03606511652469635, 0.027140218764543533, -0.00823953840881586, -0.008551757782697678, 0.00818623322993517, -0.02279961109161377, 0.00607684999704361, 0.0010832480620592833, -0.016022171825170517, 0.010562144219875336, 0.00589028000831604, -0.0063471863977611065, -0.022616848349571228, 0.011643488891422749, 0.013547264039516449, -0.023180365562438965, -0.01596125029027462, -0.03591281548142433, 0.00807200651615858, -0.0020484619308263063, -0.0221294816583395, -0.01414885651320219, 0.013204583898186684, 0.01152164675295353, -0.0161287821829319, 0.0029299098532646894, -0.007173424586653709, -0.008300459943711758, -0.0026881303638219833, -0.0010546913836151361, -0.012785753235220909, 0.001402130350470543, 0.01233646273612976, -0.018443772569298744, -0.02608933486044407, 0.009739713743329048, -0.01707305572926998, -0.011498801410198212, -0.010105238296091557, 0.02237316593527794, 0.006419529672712088, -0.0010128084104508162, 0.014704759232699871, -0.009892015717923641, 0.018032558262348175, 0.009267576970160007, 0.0028442400507628918, -0.020804453641176224, -0.005452411714941263, 0.006830744910985231, 0.006529948674142361, 0.023165134713053703, 0.01288475003093481, -0.011712024919688702, 0.005273457150906324, 0.004736592527478933, -0.0033030498307198286, 0.04224857687950134, 0.024109408259391785, -0.0012231755536049604, -0.005418144166469574, -0.028495706617832184, 0.0024939454160630703, 0.004154037218540907, 0.013463497161865234, 0.0012707698624581099, -0.0010746810585260391, -0.042522720992565155, -0.0003621932119131088, 0.02710975706577301, -0.017941176891326904, 0.004176882561296225, 0.015344426967203617, 0.013082742691040039, -0.011369344778358936, -0.0023416434414684772, -0.016265854239463806, 0.016844602301716805, -0.013037052005529404, 0.022434085607528687, -0.0021055752877146006, 0.04450264573097229, -0.021246129646897316, -0.009290422312915325, -0.014704759232699871, 0.021824877709150314, 0.01865699701011181, 0.006488065700978041, -0.055864378809928894, 0.0023111829068511724, 0.006008314434438944, -0.010356537066400051, 0.010219465009868145, -0.015519574284553528, -0.022357935085892677, -0.003381104674190283, -0.013950863853096962, 0.03877609223127365, -0.004797513131052256, 0.05522470921278, 0.01173487026244402, -0.01833716221153736, -0.016783680766820908, 0.0036876124795526266, 0.003339221468195319, 0.028678467497229576, 0.006670827977359295, -0.026668081060051918, -0.014879906550049782, 0.004900317173451185, 0.014651453122496605, 0.004942200146615505, -0.0063890693709254265, -0.0061149257235229015, 0.013120817951858044, 0.011399805545806885, 0.01515404973179102, 0.0028061645571142435, -0.012313617393374443, 0.0017543287249282002, -0.005833167117089033, 0.003055559005588293, 0.003554348135367036, 0.010691600851714611, -0.03359782323241234, 0.027764655649662018, 0.0012507803039625287, -0.006769824307411909, 0.005170653108507395, 0.010150928981602192, -0.01524543110281229, 0.002282626461237669, 0.012572530657052994, -0.011201812885701656, 0.009046738967299461, 0.01620493456721306, 0.00887159164994955, 0.001736242906190455, -0.00667463568970561, -0.004127384629100561, -0.015900330618023872, -0.0013526321854442358, -0.005795091390609741, -0.01216893084347248, 0.027642814442515373, 0.013364501297473907, 0.015496729873120785, 0.007504681590944529, -0.01908344216644764, 0.029257215559482574, -0.01207754947245121, 0.005197306163609028, 0.0009071488166227937, 0.011430265381932259, -0.02153550460934639, 0.018854988738894463, -0.019982023164629936, -0.0046832868829369545, 0.004519562236964703, 0.020149555057287216, 0.007055390626192093, 0.011034280993044376, -0.012892365455627441, -0.02272346056997776, -0.01908344216644764, 0.002231224440038204, -0.00032459365320391953, -0.010577374137938023, 0.010798212140798569, -0.0029070645105093718, 0.0029908306896686554, 0.0062405746430158615, 0.0021798224188387394, -0.01254207082092762, -0.013714795932173729, -0.006872628349810839, 0.006145386025309563, 0.024688156321644783, -0.010706831701099873, -0.02458154410123825, -0.03807550296187401, 0.0108058275654912, -0.013958479277789593, 0.01967741921544075, -0.008582218550145626, -0.055955756455659866, -0.012656296603381634, 0.004637596197426319, -0.011415035463869572, 0.02796264924108982, -0.0027985493652522564, -0.03505992144346237, 0.045568760484457016, 0.00987678486853838, 0.0007791199604980648, 0.004869856871664524, -0.005753208417445421, -0.005635174456983805, -0.0068193222396075726, -0.006975431926548481, 0.0002812827588059008, 0.01867222599685192, 0.0063928766176104546, 0.003348740516230464, -0.002092248760163784, 0.01524543110281229, 0.004774667788296938, 0.0035067538265138865, 0.035273145884275436, 0.034603018313646317, -0.008201463147997856, -0.004900317173451185, 0.017103515565395355, 0.010714446194469929, 0.007942549884319305, 0.005364838056266308, 0.019205283373594284, 0.009221886284649372, 0.010760136879980564, -0.02576950006186962, 0.001005193218588829, -0.012412614189088345, -0.008033931255340576, 0.0014421097002923489, 0.026744233444333076, -0.008863977156579494, 0.01114850677549839, 0.026668081060051918, -0.02348496951162815, 0.021261360496282578, -0.01072206161916256, 0.004843203816562891, -0.009739713743329048, -0.011110431514680386, -0.0014954153448343277, -0.02356112003326416, -0.010668755508959293, 0.005570446141064167, 0.015687106177210808, -0.00022321763390209526, -0.012024243362247944, -0.004843203816562891, 0.01798686757683754, -0.05211774632334709, -0.019829722121357918, -0.03408518806099892, 0.01541296299546957, -0.020804453641176224, 0.0019742147997021675, -0.00798824056982994, -0.017453810200095177, -0.01950988732278347, -0.004736592527478933, 0.009998627007007599, 0.010227079503238201, 0.012778138741850853, 0.006213922053575516, -0.036186955869197845, 0.019738340750336647, -0.056473586708307266, 0.0017790778074413538, -0.018596075475215912, 0.002973696682602167, -0.004245418589562178, 0.023698192089796066, -0.011102816089987755, 0.02762758359313011, 0.00996816623955965, 0.017453810200095177, 0.01638769544661045, -0.04334515333175659, -0.016448616981506348, 0.012412614189088345, -0.001025182893499732, -0.006518526002764702, -0.019707880914211273, -0.00870405975729227, -0.00211128662340343, 0.02145935222506523, -0.006179654039442539, 0.01833716221153736, -0.02675946243107319, -0.010356537066400051, -0.007005892228335142, -0.023545891046524048, -0.019281433895230293, 0.008780211210250854, -0.012823829427361488, -0.0034991386346518993, 0.007379032205790281, -0.009907245635986328, 0.010782982222735882, 0.022601617500185966, -0.012306001968681812, 0.02025616727769375, 0.04383251816034317, -0.0303233303129673, 0.012663912028074265, -0.0064994883723556995, -0.015991710126399994, -0.020834915339946747, -0.04364975541830063, -0.013204583898186684, -0.005250611808151007, -0.018276240676641464, -0.003744725603610277, -0.01603740081191063, 0.02643962949514389, -0.02937905676662922, 0.013196969404816628, 0.0265157800167799, 0.024947069585323334, -0.02289099246263504, 0.020652152597904205, 0.005871242377907038, 0.026165485382080078, -0.0015791814075782895, -0.009100045077502728, -0.0025529623962938786, -0.009427494369447231, 0.037953659892082214, 0.018123939633369446, 0.00040169653948396444, -0.011658718809485435, 0.01088959351181984, -0.021931489929556847, 0.016692299395799637, 0.026165485382080078, -0.028434785082936287, -0.004946007858961821, -0.017210127785801888, 0.023454509675502777, -0.015732796862721443, -0.026211176067590714, -0.00843753106892109, 0.006617522332817316, -0.012404998764395714, 0.01468952838331461, -0.007257190532982349, 0.0012250792933627963, -0.03253170847892761, 0.014948442578315735, -0.017179666087031364, -0.009678793139755726, 0.008970588445663452, 0.025708578526973724, 0.009701637551188469, 0.013158893212676048, -0.016844602301716805, 0.007546564564108849, 0.03164835646748543, 0.005878857336938381, 0.025053679943084717, -0.016753220930695534, 0.0003027002385351807, 0.01823054999113083, -0.0039408146403729916, -0.005330570507794619, -0.009061969816684723, 0.009496030397713184, -0.0033239913173019886, 0.0018333353800699115, -0.024779537692666054, -0.020834915339946747, 3.530907997628674e-05, 0.024002796038985252, -0.01372241135686636, 0.0036723820958286524, 0.02921152487397194, 0.011948092840611935, -0.011255118064582348, -0.001341209514066577, 0.009526490233838558, -0.0010032894788309932, 0.0021988602820783854, -0.025480126962065697, -0.015519574284553528, -0.009412264451384544, -0.006705095991492271, -0.027414361014962196, -0.011963322758674622, -0.017636572942137718, -0.008780211210250854, 0.00039836493670009077, -0.002467292593792081, 0.015222585760056973, 0.015748027712106705, -0.007131541613489389, -0.014453460462391376, -0.014362079091370106, 0.010402226820588112, 0.0037542444188147783, 0.005779861472547054, 0.01187194138765335, 0.010699216276407242, 0.001482088933698833, -0.0041883052326738834, -0.006229151971638203, -0.00625199731439352, -0.00466805649921298, 0.0032116686925292015, -0.004690901841968298, -0.0019456581212580204, -0.007965395227074623, 0.0072838435880839825, -0.007021122612059116, 0.07499350607395172, 0.008780211210250854, 0.008506067097187042, -0.01025754027068615, -0.00843753106892109, -0.03630879893898964, -0.008193847723305225, 0.024444472044706345, 0.02880031056702137, 0.003563866950571537, -0.009549335576593876, -0.005939778406172991, 0.017788873985409737, 0.0066213300451636314, -0.026957456022500992, 0.02566288784146309, 0.014887521043419838, 0.028663238510489464, -0.003948429599404335, 0.01839808188378811, 0.005326762795448303, -0.014483921229839325, -0.01952511817216873, 0.019220514222979546, -0.006000699009746313, 0.03707030788064003, -0.02025616727769375, -0.0033772969618439674, 0.009191426448523998, 0.019997254014015198, -0.002214090432971716, -0.01986018195748329, 0.003398238681256771, -0.0002643867628648877, -0.0005302013596519828, 0.009899630211293697, 0.0005658971494995058, 0.010699216276407242, 0.001997060142457485, -0.007192462217062712, 0.0029813118744641542, 0.015595725737512112, 0.007763594854623079, 0.019479427486658096, 0.0009580748155713081, -0.01444584596902132, -0.009435109794139862, 0.003280204487964511, 0.009815864264965057, -0.010059547610580921, -0.023926645517349243, -0.007557987235486507, -0.0022445509675890207, 0.016692299395799637, 0.000984251732006669, -0.0030974422115832567, 0.024596774950623512, 0.001400226610712707, 0.011475956067442894, -0.0030308100394904613, -0.022997602820396423, 0.01848946325480938, -0.006263419985771179, -0.01950988732278347, -0.021093828603625298, -0.008224308490753174, -0.007181039545685053, -0.014758064411580563, -0.0009623583173379302, -0.007344764191657305, -0.02272346056997776, 0.015610955655574799, -0.0011641584569588304, -0.019555578008294106, 0.0023283169139176607, 0.01507028378546238, -0.01571756787598133, 0.0199363324791193, 0.015519574284553528, 0.006069235038012266, 0.016189703717827797, 0.010493608191609383, -0.02042369917035103, -0.013783331960439682, 0.0021912450902163982, 0.0036799972876906395, 0.03262308984994888, -0.02627209573984146, -0.009031509049236774, -0.02753620408475399, -0.023926645517349243, -0.004268263932317495, 0.003127902513369918, 0.017347197979688644, 0.006491872947663069, -0.004477679263800383, -0.021809646859765053, 0.0038437219336628914, 0.018093477934598923, -0.004820358473807573, 0.0035581556148827076, 0.020134326070547104, -0.009579796344041824, 8.305218943860382e-05, 0.014110781252384186, -0.007512296549975872, 0.01960126869380474, -0.00048784236423671246, -0.034603018313646317, 0.0037904162891209126, 0.001045172568410635, -0.02516029216349125, -0.0006287217256613076, 0.0021950528025627136, -0.025205982849001884, 0.015275891870260239, 0.024200789630413055, -0.012976131401956081, -0.02736867032945156, -0.018763607367873192, 0.004291109275072813, 0.004934585187584162, -0.0027376285288482904, -0.011308424174785614, 0.010280385613441467, -0.0029679853469133377, -0.005943586118519306, -0.012633451260626316, -0.007474221289157867, 0.0018085864139720798, 0.0024196982849389315, 0.008902052417397499, 0.01245068944990635, 0.00403600325807929, 0.027155447751283646, 0.0008600304136052728, -0.010059547610580921, -0.025464896112680435, 0.02304329350590706, -0.006647982634603977, 0.015527189709246159, -0.0007472317083738744, 0.0026462473906576633, 0.022342704236507416, 0.004637596197426319, 0.023957105353474617, -0.01325789000838995, -0.012694372795522213, -0.008513682521879673, -0.015671877190470695, 0.024870917201042175, -0.03405473008751869, 0.0003174545126967132, -0.016067862510681152, -8.650278323329985e-05, 0.004313954617828131, -0.031709279865026474, 0.042004894465208054, -0.025708578526973724, -0.005821744445711374, 0.007462798617780209, 0.002151265973225236, -0.009473185054957867, -0.004458641167730093, 0.009732098318636417, 0.011864326894283295, 0.020286627113819122, 0.03183111920952797, 0.009686407633125782, -0.00403600325807929, -0.0034496404696255922, 0.006644174922257662, 0.006750786677002907, -0.026744233444333076, 0.012694372795522213, 0.0009176196181215346, 0.0027738003991544247, 0.00018871171050705016, -0.02255592681467533, 0.011552107520401478, 0.0063471863977611065, -0.0012307906290516257, 0.018687456846237183, 0.0012641067150980234, -0.008719289675354958, -0.014164086431264877, 0.0023625849280506372, -0.0027947418857365847, -0.009899630211293697, 0.004885086789727211, 0.0007120118825696409, 0.015085513703525066, 0.005665634758770466, 0.0083233043551445, -0.013638644479215145, -0.007820707745850086, 0.02828248217701912, 0.02560196816921234, 0.01532919704914093, -0.014879906550049782, 0.0031602666713297367, 0.010044317692518234, -0.0031145759858191013, 0.015565264970064163, -0.01271721813827753, -0.0006258660578168929, -0.014468691311776638, -0.02136797271668911, -0.012595375999808311, 0.003978889901190996, -0.044898632913827896, -0.03679616376757622, 0.0014535322552546859, -0.002551058540120721, -0.004020772874355316, 0.0004604755959007889, 0.008833516389131546, -0.0008647898212075233, 0.023957105353474617, -0.008003470487892628, 0.020149555057287216, 0.0022369357757270336, 0.019098671153187752, -0.0017124457517638803, -0.018626535311341286, 0.006324341055005789, 0.004972660448402166, 0.014590532518923283, 0.016235394403338432, 0.010501223616302013, 0.017210127785801888, -0.01681414246559143, -0.004115961957722902, 0.017865026369690895, -0.006655597593635321, 0.01350918784737587, 0.013021822087466717, 0.0004578579100780189, 0.027094528079032898, -0.021169979125261307, 0.001928524230606854, -0.001005193218588829, 0.0015182606875896454, -0.018961600959300995, 0.009389419108629227, -0.014666683040559292, -0.0007662694551981986, 0.006419529672712088, 0.0006553746061399579, -2.7143669285578653e-05, -0.005364838056266308, -0.006998277269303799, 0.004070271272212267, 0.01553480513393879, 0.009914861060678959, -0.004291109275072813, -0.008879207074642181, 0.016600919887423515, 0.005071656778454781, -0.017925946041941643, 0.005551408044993877, 0.019129132851958275, -0.02043893001973629, -0.01025754027068615, 0.0030003495048731565, 0.0177431832998991, -0.027094528079032898, -0.0032630704808980227, 0.003858952084556222, 0.003421083791181445, 0.018032558262348175, 0.002235031919553876, 0.015352042391896248, 0.005658019799739122, -0.005113539751619101, 0.0027490512002259493, 0.009397033601999283, -0.021672576665878296, 0.010501223616302013, 0.02188579924404621, 0.0049155475571751595, 0.005475257057696581, 0.020728303119540215, -0.009282807819545269, 0.003542925463989377, -0.020484620705246925, -0.00013957051851321012, 0.009640716947615147, -0.00843753106892109, 0.016418157145380974, 0.0068992809392511845, -0.013311195187270641, 0.012686757370829582, -0.003165978007018566, -0.0072038848884403706, 0.018215321004390717, -0.01388994324952364, 0.00836138054728508, 0.014712373726069927, -0.007123926654458046, 0.0031412290409207344, 0.0020065789576619864, -0.010440303012728691, -0.026729002594947815, 0.00745137594640255, 0.009572180919349194, 0.012641066685318947, 0.00924473162740469, 0.0008262384217232466, 0.014164086431264877, -0.0013021822087466717, -0.00680028460919857, -0.015016977675259113, -0.0024006604216992855, -0.022586388513445854, -0.00869644433259964, 0.00945795513689518, 0.009092429652810097, -0.025464896112680435, 0.00284043257124722, 0.002566288923844695, 0.002992734545841813, -0.02188579924404621, 0.02085014432668686, -0.0029698892030864954, 0.013204583898186684, 0.019905872642993927, 0.018459003418684006, 0.007554179523140192, -0.029333366081118584, 0.022769151255488396, -0.0014440134400501847, -0.009587411768734455, -0.011430265381932259, -0.0012288868892937899, 0.018717916682362556, -0.006141578312963247, -0.0033753933385014534, -0.017225356772542, 0.01368433516472578, -0.0055361781269311905, -0.011392190121114254, -0.006933548953384161, -8.430154412053525e-05, 0.018961600959300995, 0.0048355888575315475, 0.02127659134566784, -0.013623414561152458, 0.01815439946949482, 0.01178056001663208, 0.010280385613441467, -0.013379731215536594, 0.03490762040019035, 0.004226380959153175, -0.01481898594647646, -0.017590882256627083, 0.010143313556909561, 0.016616148874163628, -0.019784031435847282, 0.015291121788322926, -0.016509538516402245, 0.017301509156823158, -0.006887858267873526, -0.00521634379401803, 0.0020332317799329758, 0.003329702652990818, -0.013143663294613361, 0.01874837651848793, -0.022312244400382042, -0.0007467558025382459, -0.00027009809855371714, -0.027764655649662018, -0.01915959268808365, -0.002059884602203965, -0.018367622047662735, 0.0040664635598659515, -0.012694372795522213, -0.005547600798308849, -0.0024939454160630703, -0.011803405359387398, 0.04410666227340698, -0.007607485167682171, -0.013806177303195, -0.01588509976863861, 0.01427069865167141, 0.02025616727769375, 0.01926620490849018, 0.0016610437305644155, 0.0024939454160630703, -0.001592507935129106, -0.016844602301716805, 0.00908481515944004, -0.019068211317062378, -0.002935621188953519, -0.002038943115621805, 0.01850469410419464, -0.024429243057966232, 0.01326550543308258, -0.0014630511868745089, -0.00814815703779459, 0.007127733901143074, -0.005585676059126854, 0.014384924434125423, 0.0023968529421836138, 0.004321569576859474, -0.02110905759036541, -0.0018647477263584733, 0.01932712458074093, 0.020469389855861664, -0.006876435596495867, -0.0024082756135612726, 0.014186931774020195, -0.019799260422587395, -0.006964009255170822, 0.0007096321787685156, -0.023926645517349243, 0.018870219588279724, -0.02034754864871502, -0.004923162516206503, 0.011338884942233562, 0.01655522920191288, -0.00694497162476182, 0.012595375999808311, 0.006552794016897678, 0.021383201703429222, -0.010326076298952103, 0.021383201703429222, 0.006015929393470287, -0.011163737624883652, 0.006868820637464523, -0.016783680766820908, -0.01681414246559143, 0.002332124626263976, -0.00028889786335639656, -0.030962998047471046, -0.012945670634508133, 0.03198342025279999, -0.030277639627456665, -0.0014173606177791953, 0.029287677258253098, -0.018184859305620193, -0.017347197979688644, -0.010029086843132973, 0.002825202187523246, 0.013372116722166538, 0.010394612327218056, 0.011833866126835346, 0.011765330098569393, -0.005242996849119663, -0.011224658228456974, -0.0017381466459482908, 0.01207754947245121, 0.005958816036581993, 0.006069235038012266, -0.010927668772637844, -0.011658718809485435, -0.00852891243994236, 0.022616848349571228, 0.02289099246263504, -0.03676570579409599, -0.0017324353102594614, -0.0005820792284794152, -0.0010432687122374773, 0.007649368606507778, -0.01816963031888008, 0.005292494781315327, 0.004230188205838203, -0.0012212716974318027, -0.002870892873033881, -0.003967467229813337, -0.013075127266347408, 0.010447917506098747, 0.011034280993044376, -0.0119024021551013, 0.004645211156457663, 0.013227429240942001, 0.0014763775980100036, 0.011316039599478245, 0.0025815190747380257, -0.004085501190274954, -0.007497066631913185, 0.0014430615119636059, -0.006172039080411196, 0.003788512432947755, 0.027673274278640747, -0.021855337545275688, 0.012808598577976227, 0.017773644998669624, 0.016783680766820908, 0.0038608559407293797, -0.0034039500169456005, 0.0032573591452091932, 0.015443423762917519, -0.01106474082916975, 0.011643488891422749, 0.002210282953456044, -0.015100744552910328, 0.015610955655574799, 0.003280204487964511, 0.009176195599138737, 0.005612329114228487, -0.011803405359387398, 0.007162001915276051, 0.012085163965821266, 0.01707305572926998, 0.012184160761535168, -0.004744207486510277, 0.029409518465399742, 0.03195296227931976, 0.018733147531747818, 0.012108009308576584, 0.022692998871207237, -0.0013136048801243305, 0.01452199649065733, -0.0041083465330302715, 0.024216018617153168, 0.0061948844231665134, 0.020804453641176224, -0.00025201222160831094, 0.0036171728279441595, 0.000144686913699843, -0.014659068547189236, -0.0017952598864212632, 0.012382153421640396, 0.0024196982849389315, -0.00627103541046381, 0.02407894842326641, 0.0006073042750358582, 0.01614401303231716, 0.005124962422996759, -0.021383201703429222, 0.005757016129791737, -0.006560408975929022, 0.007573217619210482, 0.0044091432355344296, 0.006994469556957483, 0.015511959791183472, 0.013699566014111042, 0.0376795157790184, -0.002345450920984149, 0.021413663402199745, -0.020652152597904205, 0.023012833669781685, -0.015039823018014431, -0.009640716947615147, -0.013219814747571945, -0.00916858110576868, 0.004100731573998928, -0.01824578084051609, 0.010227079503238201, -0.006510911043733358, -0.0030498476698994637, 0.014727604575455189, 0.0061568086966872215, 0.013120817951858044, -0.011498801410198212, -0.01343303732573986, -0.00043429870856925845, -0.0011251310352236032, 0.02912014350295067, -0.013988939113914967, -0.022099021822214127, -0.014643838629126549, 0.008612678386271, -0.0012041378067806363, -0.00014932735939510167, 0.009892015717923641, -0.008757365867495537, 0.010135699063539505, 0.017255818471312523, 0.0006410962669178843, -0.017255818471312523, -0.008764980360865593, 0.016585689038038254, 0.008285229094326496, 0.005985469091683626, -0.016600919887423515, -0.0009575989097356796, 0.00789685919880867, 0.0003940814349334687, 0.012031858786940575, -0.005658019799739122, -0.0051516154780983925, -0.009869170375168324, 0.013615800067782402, 0.02625686675310135, -0.009991011582314968, 0.012275542132556438, 0.0032783006317913532, -0.033567361533641815, 0.021763958036899567, -0.007565602194517851, -0.010463148355484009, 0.011019050143659115, 0.012009013444185257, -0.014126011170446873, 0.004664249252527952, 0.0003897979622706771, -0.023241287097334862, -0.015732796862721443, -0.012085163965821266, -0.008209078572690487, -0.002413986949250102, 0.006617522332817316, 0.010394612327218056, -0.0083233043551445, 0.005711325444281101, -0.012991361320018768, 0.006868820637464523, -0.01637246645987034, 0.0033772969618439674, -0.0006706047570332885, 0.015565264970064163, 0.0014744738582521677, -0.001199378282763064, -0.01097335945814848, 0.0028880268801003695, 0.014080320484936237, 0.00521634379401803, -0.03262308984994888, -0.00041454704478383064, -0.006320533342659473, -0.008140542544424534, 0.015763258561491966, -0.00899343378841877, -0.018428543582558632, 0.018976829946041107, 0.013608184643089771, 0.01468952838331461, -0.0049993135035037994, 0.00590931810438633, 0.006720326375216246, -0.013097972609102726, -0.026485320180654526, 0.008803056553006172, 0.005311532411724329, -0.02592180110514164, 0.005197306163609028, 0.006510911043733358, -0.045385997742414474, -0.006644174922257662, -0.0025548662524670362, 0.006880243308842182, 0.003148843999952078, 0.016174472868442535, -0.00477086054161191, 0.005246804095804691, -0.007592255249619484, 0.0032230913639068604, -0.006206307094544172, -0.02365250140428543, 0.026744233444333076, -0.018306702375411987, 0.008917282335460186, 0.0034267951268702745, -0.00907719973474741, 0.016448616981506348, -0.04730500280857086, 0.005635174456983805, 0.0001402844354743138, -0.01577848754823208, -0.030704084783792496, -0.004949815105646849, -0.003053655382245779, 0.010653525590896606, -0.016433386132121086, -0.000589218398090452, 0.0036266916431486607, 0.014704759232699871, -0.027932189404964447, 0.0001044101663865149, 0.014544841833412647, -0.009191426448523998, 0.003925584256649017, 0.008483221754431725, 0.00012517321738414466, -0.014156471937894821, -0.030338559299707413, 0.009366573765873909, -0.02179441787302494, -0.007603677920997143, 0.012024243362247944, 0.006080657709389925, -0.0020960564725100994, -1.4523721802106593e-05, -0.0052620344795286655, -0.004610943142324686, -0.038897931575775146, -0.008056776598095894, -0.0009009615750983357, -0.023088984191417694, 0.00513257784768939, 0.00899343378841877, -0.015580495819449425, 0.0006977336015552282, 0.008970588445663452, -0.01663137972354889, -0.007851168513298035, -0.027505742385983467, -0.01571756787598133, -0.014453460462391376, -0.010866748169064522, 0.01187194138765335, -0.007611292880028486, 0.004435795824974775, -0.009191426448523998, 0.028526166453957558, -0.0039027389138936996, -0.0012203198857605457, 0.00014040341193322092, -0.0001398084859829396, -0.0007129637524485588, 0.0017067344160750508, -0.016189703717827797, -0.01443823054432869, -0.01414885651320219, 0.032227106392383575, -0.007957779802381992, -0.018428543582558632, 0.007660791277885437, -0.003866567276418209, -0.0034781971480697393, -0.00599308405071497, 0.007881629280745983, 0.012176545336842537, -0.008254769258201122, -0.0013840445317327976, 0.014011784456670284, -0.009534105658531189, 0.007299073971807957, 0.015557650476694107, -0.0057722460478544235, 0.008094851858913898, 0.010592604987323284, -0.01225269678980112, -0.00349342729896307, 0.009404649026691914, -0.006137771066278219, 0.00530010974034667, 0.013204583898186684, -0.01926620490849018, -0.04346699267625809, -0.0011746292002499104, 0.003857048461213708, 0.019235743209719658, -0.011620643548667431, -0.012785753235220909, 0.017423350363969803, -0.020378008484840393, -0.001898063812404871, -0.00836138054728508, -0.012435458600521088, 0.004759437870234251, -0.006537563633173704, 8.828756836010143e-05, -0.002427313243970275, 0.00988440029323101, -0.0011755811283364892, 0.0018847374012693763, 0.000751039304304868, 0.012473534792661667, 0.012922825291752815, -0.010767752304673195, 0.007443760521709919, -0.008856361731886864, 0.009351342916488647, -0.008414685726165771, -0.010135699063539505, 0.00036147929495200515, 0.017545191571116447, 0.020149555057287216, -0.006686058361083269, -0.022951912134885788, -0.023789573460817337, -0.016951214522123337, -0.018276240676641464, 0.0025643850676715374, -0.00035243635647930205, 0.0031964383088052273, 0.006644174922257662, 0.00353531027212739, -0.013288349844515324, -0.040420953184366226, -0.009694023057818413, -0.015047438442707062, 0.005006928462535143, 0.034603018313646317, 0.010219465009868145, 0.007287651300430298, 0.020058173686265945, 0.0032230913639068604, 0.0008176714181900024, -0.01867222599685192, -0.009595026262104511, 0.02794741839170456, -0.0036685746163129807, 0.013935633935034275, -0.005117347463965416, -0.0068193222396075726, 0.0026519587263464928, -0.0006696528871543705, 0.018687456846237183, -0.0009114323183894157, -0.00010589748853817582, -0.0034496404696255922, 0.006636559963226318, -0.016692299395799637, 0.025464896112680435, 0.028084490448236465, -0.008544142358005047, 0.023880954831838608, -0.011894786730408669, -0.012564916163682938, 0.014369694516062737, 0.002324509434401989, -0.007782632485032082, 0.005635174456983805, -0.0021798224188387394, -0.011765330098569393, 0.01435446459800005, -0.016783680766820908, -0.003502946114167571, 0.014643838629126549, -0.010881979018449783, -0.022936683148145676, 0.006229151971638203, -0.013044667430222034, -0.015032208524644375, 0.009945320896804333, -0.008833516389131546, -0.004253033548593521, 0.002164592267945409, -0.007428530603647232, 0.013044667430222034, -0.011102816089987755, 0.0011917632073163986, 0.0027166870422661304, -0.003447736846283078, 0.00584839703515172, 0.0033125686459243298, 0.009031509049236774, -0.031191451475024223, 3.242367165512405e-05, 0.01943373680114746, -0.008506067097187042, 0.010965744964778423, -0.01507028378546238, 0.009617871604859829, -0.007165809627622366, -0.015367272309958935, 0.0053039174526929855, 0.016616148874163628, -0.010135699063539505, 0.0009323738631792367, -0.008506067097187042, 0.01696644350886345, -0.0025739038828760386, -0.0038418180774897337, 0.018047787249088287, -0.011925247497856617, 0.0068573979660868645, 0.02008863538503647, 0.002038943115621805, -0.0039560445584356785, 0.0047251698561012745, -0.013364501297473907, -0.007417107932269573, 0.018032558262348175, -0.015298737213015556, -0.011468341574072838, 0.006278650369495153, -0.014392539858818054, -0.011300808750092983, 0.01507028378546238, 0.0035695782862603664, 0.01969265006482601, 0.011765330098569393, 0.002530117053538561, -0.019905872642993927, 0.0009190474520437419, -0.00987678486853838, 0.013958479277789593, 0.007226730231195688, -0.015504344366490841, -0.008254769258201122, -0.009853940457105637, -0.004154037218540907, -0.014674298465251923, 0.0076265232637524605, 0.029698891565203667, 0.03140467405319214, -0.007637945935130119, 0.015687106177210808, -0.013029436580836773, -0.010592604987323284, -0.019616499543190002, 0.028922151774168015, 0.0020237129647284746, -0.0005159230786375701, -0.013189353980123997, 0.012001398019492626, -0.012808598577976227, -0.008818286471068859, -0.007230537943542004, -0.0066251372918486595, 0.002516790758818388, -0.030521322041749954, 0.0055780611000955105, 0.0013954672031104565, 0.005410528741776943, -0.012184160761535168, -0.0077940551564097404, 0.0013849963434040546, -0.004926970228552818, 0.010242310352623463, 0.005859819706529379, 0.007401877548545599, -0.006906895898282528, -0.015748027712106705, -0.015047438442707062, -0.013631029985845089, 0.032805852591991425, 0.013105588033795357, 0.007211500313133001, 0.01187194138765335, 0.007219115272164345, -0.0249013788998127, -0.007173424586653709, -0.006537563633173704, -0.006590869277715683, 0.008711675181984901, -0.013113202527165413, -0.003805646440014243, 0.017164437100291252, -0.02110905759036541, -0.01191001757979393, 0.0029013531748205423, 0.004184497520327568, 0.00869644433259964, 0.020987216383218765, 0.022190403193235397, 0.0025815190747380257, -0.0012736255303025246, -0.011948092840611935, -0.006887858267873526, -0.0007748364587314427, 0.0017305315705016255, -0.011681564152240753, 0.014727604575455189, 0.018565615639090538, 0.018626535311341286, -0.007382839918136597, 0.008848746307194233, 0.011224658228456974, 0.0016182088293135166, 0.0045309849083423615, 0.0011812924640253186, -0.01481898594647646, -0.02062169276177883, -0.017514731734991074, 0.0021379394456744194, -0.008125312626361847, 0.01060021948069334, -0.007740749511867762, 0.01443823054432869, -0.01388994324952364, 0.006937356665730476, -0.006994469556957483, -0.0010518357157707214, -0.0018695071339607239, 0.008566987700760365, 0.0061149257235229015, -0.0023397395852953196, 0.02075876295566559, 0.012519225478172302, 0.018550384789705276, -0.03892839327454567, 0.0030650778207927942, -0.00627103541046381, -9.530773968435824e-05, -0.016342004761099815, -0.01713397540152073, 0.01986018195748329, 0.0019094864837825298, 0.004995505791157484, 0.01740811951458454, -0.0028994495514780283, 0.009678793139755726, 0.014956057071685791, 0.007238152902573347, -0.017667032778263092, -0.011095201596617699, -0.006613714620471001, 0.0016191607574000955, -0.005543793085962534, -0.027840808033943176, 0.02237316593527794, -0.0027376285288482904, 0.00530010974034667, 0.008734520524740219, 0.007359994575381279, 0.014240237884223461, -0.01984495110809803, -0.001887593069113791, 0.01233646273612976, -0.0011289386311545968, -0.00426445621997118, 0.004652826581150293, -0.029942575842142105, 0.018611306324601173, -0.004199727904051542, -0.015900330618023872, -0.03219664469361305, 0.019068211317062378, -0.01605263166129589, 0.026668081060051918, 0.017423350363969803, 0.011628258042037487, 0.01452199649065733, 0.026317786425352097, -0.01280098408460617, 0.018032558262348175, 0.004732784815132618, -0.006191076710820198, 0.011727254837751389, 0.005825551692396402, 0.0022997602354735136, -0.006754593923687935, -0.01173487026244402, -0.01481898594647646, 0.010828672908246517, -9.019134449772537e-05, -0.012321232818067074, -0.019875412806868553, -0.011483571492135525, 0.008757365867495537, -0.007032545283436775, 0.02956181950867176, -0.0038303956389427185, 0.012389768846333027, 0.005795091390609741, -1.9112118025077507e-05, 0.022830070927739143, 0.01198616810142994, -0.022327475249767303, -0.006385261658579111, -0.003929391968995333, -0.01748427003622055, 0.009054354391992092, -0.00458429055288434, -0.007112503983080387, -0.004778475500643253, 0.004904124885797501, 0.002518694382160902, -0.007181039545685053, 0.017590882256627083, 0.0051516154780983925, 0.018854988738894463, 0.013737641274929047, 0.037192150950431824, -0.005083079449832439, 0.010851518251001835, -0.007249575573951006, -0.014803755097091198, 0.013189353980123997, 0.006461412645876408, -0.010866748169064522, 0.005585676059126854, -0.002231224440038204, 0.011567337438464165, -0.015123589895665646, 0.013874713331460953, -0.0037313993088901043, 0.006807900033891201, -0.01545103918761015, -0.004074078518897295, 0.009138120338320732, 0.002781415358185768, -0.013486342504620552, 0.003937006928026676, 0.0022502620704472065, -0.012435458600521088, -0.011719639413058758, -0.0006334811914712191, 0.0007876869640313089, -0.004272071179002523, 0.0045728678815066814, -0.006606099661439657, 0.009290422312915325, -0.020652152597904205, 0.019479427486658096, -0.00041978241642937064, -0.010904823429882526, 0.037283532321453094, 0.008384225890040398, 0.0023264132905751467, 0.011597798205912113, 0.012130854651331902, 0.0008900148677639663, -0.009237117134034634, -0.008711675181984901, 0.019296664744615555, -0.00890966784209013, -0.0015277795027941465, 0.01287713460624218, -0.00458429055288434, 0.006111118011176586, 0.0025015606079250574, -0.008132927119731903, -0.011430265381932259, -0.002964177867397666, 0.0006101599428802729, -0.0034153724554926157, 0.001775270327925682, 0.009427494369447231, -0.005490487441420555, -0.0060311597771942616, 0.00466805649921298, 0.018931139260530472, 0.003685708623379469, -0.011849096044898033, -0.016174472868442535, 0.023104215040802956, 0.004652826581150293, 0.00040217250352725387, 0.015062668360769749, 0.0015715663321316242, -0.020210476592183113, 0.0018209608970209956, -0.000993770663626492, 0.0011394093744456768, 0.0008743086946196854, 0.0146133778616786, 0.007580832578241825, -0.0023682962637394667, 0.004051233641803265, 0.012199390679597855, 0.0014059379464015365, 0.01935758627951145, 0.0021131904795765877, 0.009054354391992092, -0.0029394286684691906, 0.0035771934781223536, 0.008551757782697678, -0.007874013856053352, -0.015268276445567608, -0.008094851858913898, 0.0029032570309937, 0.011544492095708847, 0.0020674997940659523, -0.012648682110011578, -0.008627909235656261, -0.011285578832030296, -0.006278650369495153, 0.008216693066060543, -0.01296851597726345, -0.003066981676965952, 0.009145735763013363, -0.02397233620285988, 0.021901028230786324, 0.010364151559770107, -0.004763245116919279, -0.005741785746067762, 0.00035434015444479883, -0.0023759114556014538, 0.005440989509224892, -0.011772945523262024, 0.019814491271972656, 0.00343060283921659, -0.007085850927978754, -0.015572880394756794, -0.019190052524209023, 0.0079044746235013, -0.007835938595235348, -0.0031793045345693827, 0.003742821980267763, 0.008803056553006172, -0.012374537996947765, 0.0010584989795461297, -0.032379407435655594, -0.011536877602338791, -0.020545540377497673, -0.012344078160822392, -0.023500200361013412, 0.006766016595065594, 0.002804260700941086, -0.027840808033943176, -0.019905872642993927, 0.016022171825170517, 0.002661477541550994, 0.030369020998477936, 0.0003236417833250016, -0.00798824056982994, 0.00026914619957096875, -0.004885086789727211, 0.012724832631647587, -0.011765330098569393, 0.014826600439846516, 0.005288687068969011, -0.00862029381096363, -0.01009000837802887, 0.0030403288546949625, 0.005947393365204334, -0.007021122612059116, -0.03219664469361305, -0.005479064770042896, 0.02889169193804264, -0.002463485114276409, -0.0027699926868081093, 0.024627234786748886, -0.01042507216334343, 0.007192462217062712, -0.018184859305620193, 0.000423827936174348, -0.00411976920440793, 0.020560771226882935, 0.0015706145204603672, -0.022906221449375153, 0.027048837393522263, -0.0029070645105093718, -0.00045761995716020465, -0.0008100562845356762, 0.004230188205838203, -0.017347197979688644, 0.007211500313133001, 0.008003470487892628, 0.00035814769216813147, -0.007835938595235348, 0.0029184871818870306, 0.013798561878502369, -0.008483221754431725, 0.003592423629015684, -0.013676720671355724, 0.0005568542401306331, -0.0210329070687294, 0.00907719973474741, 0.014407769776880741, 0.01233646273612976, 0.003074596868827939, 0.006488065700978041, -0.0008985818712972105, -0.0019256685627624393, 0.010676370933651924, 0.02145935222506523, -0.02018001675605774, -0.02060646191239357, 0.001654380583204329, -0.006331956014037132, -0.0035162726417183876, -0.026713771745562553, 0.017514731734991074, -0.012747677974402905, 0.0019704073201864958, 0.004607135895639658, 0.03186158090829849, -0.018550384789705276, -0.00586743513122201, -0.0047099394723773, 0.014765679836273193, 0.0007391406688839197, -0.007097273599356413, 0.001634390908293426, 0.03953760117292404, 0.02465769462287426, 0.0010327979689463973, 0.0035657708067446947, 0.011346499435603619, -0.009503645822405815, 0.0018714109901338816, -0.003502946114167571, -0.021246129646897316, 0.013958479277789593, -0.012595375999808311, -0.010044317692518234, 0.0025948453694581985, -0.02685084380209446, -0.004801320843398571, 0.0005658971494995058, 0.00039836493670009077, 0.003531502792611718, 0.00726480595767498, 0.00734857190400362, -0.0026386321987956762, 0.002912775846198201, 0.017103515565395355, 0.004275878891348839, 0.05099071189761162, 0.002956562675535679, 0.017453810200095177, -0.010744906961917877, 0.003910353872925043, -0.019129132851958275, 0.002579615218564868, -0.012839059345424175, -0.015839409083127975, -0.01389755867421627, 0.008262383751571178, -0.005878857336938381, 0.025190751999616623, 0.028983071446418762, 0.0008776403265073895, -0.0030155798885971308, 0.00815577246248722, -0.009290422312915325, -0.0038932200986891985, 0.010455532930791378, 0.0023892377503216267, 0.008886822499334812, -0.012785753235220909, -0.009290422312915325, 0.01178056001663208, 0.014826600439846516, 0.009960551746189594, -0.013615800067782402, 0.011681564152240753, 0.003145036520436406, 0.01622016355395317, -0.015489114448428154, -0.03344552218914032, 0.01926620490849018, 0.012686757370829582, -0.002669092733412981, 0.008460376411676407, 0.021809646859765053, 0.00046832868247292936, -0.01444584596902132, -0.012031858786940575, -0.004154037218540907, 0.004984083119779825, 0.00272239837795496, -0.012146085500717163, -0.005113539751619101, 0.010158544406294823, -0.0002261922782054171, -0.012976131401956081, 0.006952586583793163, 0.005939778406172991, -0.014567687176167965, -0.03950713947415352, -0.021169979125261307, -0.0079044746235013, 0.018519924953579903, 0.005025966092944145, -0.008597448468208313, -0.006362416315823793, -0.015610955655574799, -0.010508839040994644, -0.0040245805867016315, 0.0035486367996782064, 0.010196619667112827, -0.022738689556717873, 0.006914511322975159, -0.005022158846259117, 0.016951214522123337, 0.009214271791279316, 0.0003305429418105632, 0.021002447232604027, -0.004824166186153889, -0.018123939633369446, -0.02822156250476837, -0.01713397540152073, -0.02727728895843029, -0.029424747452139854, -0.004645211156457663, -0.0052201515063643456, 0.009229501709342003, 0.0040664635598659515, -0.014461075887084007, -0.014742834493517876, -0.013798561878502369, -0.023926645517349243, 0.005981661379337311, 0.0010670659830793738, 0.01216131541877985, 0.016159243881702423, -0.007603677920997143, -0.007276228629052639, -0.023104215040802956, -0.012404998764395714, 0.0026100757531821728, 0.026195945218205452, -0.01199378352612257, -0.004157844930887222, -0.014575302600860596, -0.005018351133912802, 0.01577848754823208, 0.015763258561491966, 0.010379381477832794, -0.012831443920731544, 0.0001523020036984235, 0.00032102406839840114, -0.008772595785558224, -0.023180365562438965, -0.006792669650167227, -0.0021455546375364065, 0.022083790972828865, -0.00798824056982994, 0.011506416834890842, 0.0034953311551362276, 0.02304329350590706, 0.000801489339210093, 0.01943373680114746, 0.015580495819449425, 0.012130854651331902, 0.006484257988631725, 0.014483921229839325, -0.008818286471068859, 0.0016638993984088302, 0.04706132039427757, 0.010386996902525425, -0.004344414919614792, 0.016661839559674263, 0.006571831647306681, 0.02406371757388115, -0.015641415491700172, 0.0066670202650129795, 0.009176195599138737, -0.026835614815354347, -0.007165809627622366, 0.02718590945005417, 0.0033525479957461357, 0.007188654970377684, 0.005509525071829557, -0.0014506765874102712, 0.00726480595767498, 0.0008305218652822077, -0.006746978964656591, 0.031008688732981682, 0.02972935140132904, -0.0013193160993978381, -0.013128433376550674, 0.009853940457105637, -0.02880031056702137, 0.007919704541563988, 0.02095675654709339, 0.009937706403434277, -0.010463148355484009, -0.01261822134256363, -0.028846001252532005, 0.012290772050619125, -0.01143788080662489, 0.010204234160482883, -0.026713771745562553, 0.011072356253862381, -0.02170303650200367, 0.0003314948407933116, -0.008087236434221268, -0.0017029268201440573, 0.016600919887423515, 0.0006572783458977938, -0.0036285952664911747, -0.014476305805146694, -0.009869170375168324, 0.0149027518928051, -0.010744906961917877, -0.031374212354421616, -0.0048355888575315475, -0.0017809816636145115, 0.0029013531748205423, -0.0003726639843080193, -0.002792838029563427, 0.010760136879980564, -0.007276228629052639, 0.00046737678349018097, -0.01545103918761015, -0.008917282335460186, 0.01833716221153736, 0.001380236935801804, 0.022251322865486145, 0.011308424174785614, -0.0006163471844047308, 0.0018733147298917174, -0.015763258561491966, 0.013097972609102726, 0.006613714620471001, -0.011338884942233562, 0.019052980467677116, 0.025997953489422798, -0.029333366081118584, 0.003624787786975503, -0.01444584596902132, 0.021977180615067482, -0.014514381065964699, -0.0023492584004998207, -0.027292519807815552, -0.01586986891925335, -0.0029679853469133377, 0.009412264451384544, -0.021230900660157204, 0.0009804441360756755], "be39d582-2687-4dc2-ab1a-811fd8a7f64e": [-0.02373800054192543, -0.02116827666759491, -0.002608766546472907, 0.014339342713356018, -0.03904276341199875, -0.04080323874950409, 0.026279330253601074, 0.043160002678632736, 0.010435066185891628, 0.013863731175661087, 0.007560099009424448, 0.02485959231853485, 0.002218338893726468, -0.00836934894323349, 0.03163173794746399, 0.025782421231269836, -0.009455448016524315, 0.004316000267863274, 0.008674592711031437, -0.06002647429704666, 0.061843737959861755, -0.03691316023468971, -0.010853888466954231, 0.028224369511008263, 0.010555744171142578, -0.020060881972312927, -0.006484648212790489, 0.019251631572842598, -0.020472606644034386, -0.028948435559868813, 0.008035711012780666, 0.02833794802427292, 0.009526434354484081, 0.0006308956071734428, 0.030212001875042915, -0.015716487541794777, 0.012032270431518555, 0.006598227191716433, -0.025384895503520966, -0.019336815923452377, -0.009398657828569412, 0.02221888303756714, 0.0023674112744629383, 0.00893724337220192, -0.02663426473736763, 0.02542748861014843, 0.036969948559999466, 0.0029228832572698593, -0.01541834231466055, -0.011095243506133556, 0.012543375603854656, -0.008127993904054165, -0.011294007301330566, -0.01480785571038723, 0.05335371196269989, -0.03878721222281456, -0.003458834020420909, 0.05721539631485939, 0.008802368305623531, -0.07081647962331772, -0.008149289526045322, 0.005916753318160772, 0.023056527599692345, -0.014694277197122574, 0.01715042255818844, -0.010896480642259121, -0.00013398767623584718, -0.0019947304390370846, -0.03140458092093468, 0.006655016914010048, 0.007091586012393236, -0.02109728939831257, -0.04077484458684921, 0.00518913846462965, 0.02527131699025631, -0.015106000937521458, 0.009398657828569412, 0.03163173794746399, 0.02406454086303711, -0.020174460485577583, -0.0015883306041359901, -0.0020248997025191784, 0.040689658373594284, 0.01082549337297678, 0.09091994911432266, 0.03836129233241081, -0.017973868176341057, -0.05624997615814209, -0.033363815397024155, -0.017207210883498192, 0.008106697350740433, 0.011932888999581337, -0.01472267135977745, -0.003758753417059779, -0.0025164836551994085, 0.001472976990044117, 0.007510408293455839, 0.007709171157330275, 0.00420242128893733, -0.02108309231698513, -0.01284151989966631, -0.0011659589363262057, -0.017079435288906097, 0.01658252626657486, 0.03824771195650101, 0.0017303043277934194, 0.014992421492934227, 0.006864428054541349, -0.031574949622154236, 0.02880646102130413, 0.0040923915803432465, -0.03461318463087082, 0.01801646128296852, -0.026052171364426613, -0.052331503480672836, -0.032086052000522614, -0.0434439480304718, -0.0007799679297022521, -0.02606636844575405, -0.054517894983291626, 0.02502996101975441, -0.018300408497452736, 0.01801646128296852, 0.00905792135745287, -0.007929230108857155, 0.006708256900310516, 0.01723560504615307, 0.029388554394245148, 0.018002264201641083, 0.00844743475317955, -0.002591019729152322, -0.021267658099532127, 0.02646389603614807, 0.011102342046797276, 0.006612424738705158, 0.019535578787326813, -0.002525357063859701, 0.05979931727051735, -0.019663356244564056, 0.05752773955464363, -0.029005223885178566, -0.028224369511008263, -0.007297447416931391, 0.002117182593792677, 0.010719013400375843, 0.01279892772436142, -0.03146136924624443, 0.028593501076102257, -0.0056328061036765575, 0.008241572417318821, -0.07535963505506516, -0.009441250003874302, -0.021580001339316368, -0.0037694014608860016, 0.01347330305725336, -0.034073684364557266, 0.008170586079359055, 0.02213369868695736, -0.0002508941397536546, 0.05150805413722992, 0.004188223741948605, -0.05247347429394722, -0.015035013668239117, 0.008064105175435543, 0.02399355359375477, 0.01541834231466055, 0.05752773955464363, 0.03833289444446564, -0.03228481858968735, 0.019024474546313286, 0.006360421422868967, 0.008738480508327484, 0.015219579450786114, 0.017022645100951195, -0.0009352516499347985, 0.01428965199738741, 0.04162668436765671, 0.02115407958626747, 0.04421060532331467, 0.0016646415460854769, -0.008277066051959991, 0.03140458092093468, -0.009554829448461533, -0.010924875736236572, -0.012060664594173431, 0.04162668436765671, 0.010427967645227909, 0.03373294696211815, 0.01601463183760643, -0.0047277240082621574, -0.014190270565450191, -0.011393388733267784, -0.008539717644453049, 0.02913300134241581, -0.022233080118894577, -0.029104607179760933, -0.002676204079762101, 0.00043390708742663264, 0.00648109894245863, 0.025484276935458183, 0.005167842376977205, -0.06621652841567993, -0.04279087111353874, 0.051536448299884796, -0.028096593916416168, 0.010051737539470196, -0.0016114013269543648, -0.05559689551591873, -0.0002959264093078673, -0.0156880933791399, 0.037623029202222824, -0.040746450424194336, 0.0026353865396231413, -0.003047110280022025, -0.005405648145824671, -0.0034836793784052134, -0.002443722216412425, 0.05196237191557884, -0.0054482403211295605, -0.038673631846904755, -0.0347551591694355, 0.02542748861014843, 0.00015450730279553682, -0.02913300134241581, -0.07791516184806824, -0.0028891644906252623, -0.007432322483509779, 0.04404023662209511, -0.039241526275873184, -0.024802803993225098, 0.028849054127931595, -0.019521381705999374, -0.013146763667464256, -0.022673198953270912, -0.01672450080513954, 0.03711192309856415, 0.04086002707481384, 0.00011424445256125182, -0.006427858956158161, -0.01348040159791708, 0.011201724410057068, 0.034953922033309937, -0.004436677787452936, -0.0036948651541024446, 0.007730467244982719, 0.02382318489253521, -0.030921868979930878, 0.05687465891242027, 0.01553192175924778, 0.004738371819257736, -0.005572467111051083, 0.010974566452205181, -0.0195497777312994, -0.01211035531014204, -0.0037835987750440836, 0.032540369778871536, 0.016767092049121857, -0.0366859994828701, 0.02390836924314499, 0.013849533163011074, 0.01705103926360607, 0.015602908097207546, 0.0003227683191653341, 0.012678250670433044, 0.042932841926813126, -0.00908631645143032, 0.02446206659078598, -0.03265395015478134, 0.008277066051959991, 0.020486803725361824, 0.013728856109082699, -0.00041771322139538825, -0.026847224682569504, 0.00011391170119168237, 0.008142190985381603, -0.003302662866190076, -0.004326648078858852, -0.01898188143968582, 0.026534883305430412, -0.0061119673773646355, -0.03325023874640465, 0.003513848874717951, 0.013714658096432686, 0.03299468383193016, 0.05457468703389168, -0.012720842845737934, -0.032228026539087296, -0.014381934888660908, -0.04063287004828453, -0.009221191518008709, -0.006598227191716433, -0.0050684604793787, 0.001424173591658473, 0.03728229179978371, 0.012614361941814423, 0.017902882769703865, -0.004585749935358763, -0.006335576064884663, -0.030893474817276, 0.016681907698512077, 0.018130039796233177, -0.017917079851031303, -0.003677118569612503, -0.00780855305492878, 0.03242678940296173, -0.0347551591694355, 0.03949708119034767, -0.01142178289592266, -0.018442383036017418, 0.03844647482037544, 0.023141711950302124, -0.03870202600955963, -0.018953487277030945, -0.011847704648971558, 0.018442383036017418, 0.024092935025691986, -0.0030737302731722593, -0.008241572417318821, 0.00371261197142303, -0.022800974547863007, -0.0013611727626994252, 0.0030755051411688328, -0.053410500288009644, 0.02454725094139576, 0.036827974021434784, -0.05832279101014137, 0.008539717644453049, -0.006420759949833155, -0.03154655545949936, -0.030723106116056442, -0.02887744829058647, -0.011854803189635277, -0.0352378711104393, 0.015915250405669212, -0.02775585651397705, -0.030552737414836884, -0.03853166103363037, -0.05957216024398804, 0.006076473742723465, -0.017320789396762848, -0.009668407961726189, -0.021423829719424248, 0.03049594908952713, 0.007815651595592499, 0.017264001071453094, 0.00776596087962389, 0.03498231619596481, 0.015205382369458675, -0.037935368716716766, 0.007758862338960171, 0.0008052570046856999, -0.0032778175082057714, -0.0013771448284387589, -0.004607046023011208, 0.031660132110118866, -0.018726330250501633, -0.015475132502615452, 0.02260221168398857, 0.006253940984606743, 0.00014796320465393364, -0.0032494228798896074, -0.018882500007748604, -0.008135092444717884, -0.0002821726957336068, 0.0005980641581118107, 0.0007817426230758429, 0.024760210886597633, 0.006750849075615406, -0.004000108689069748, 0.004308901261538267, -0.020813342183828354, -0.004500566050410271, 0.01811584271490574, 0.009214092046022415, -0.024604041129350662, -0.050741396844387054, 0.029757685959339142, 0.00913600716739893, -0.011861901730298996, 0.018442383036017418, 0.019280027598142624, -0.007836947217583656, -0.019677553325891495, 0.013281638734042645, 0.038588449358940125, 0.029416948556900024, 0.027216356247663498, -0.004280506633222103, -0.019010277464985847, -0.03396010771393776, -0.01763313263654709, 0.011968381702899933, -0.020472606644034386, -0.014495513401925564, -0.029814474284648895, -0.022715790197253227, -0.00541274668648839, -0.01666771061718464, -0.0028944886289536953, -0.044466160237789154, 0.0022840017918497324, -0.0026176399551331997, 0.01540414523333311, -0.00776596087962389, 0.02429169788956642, -0.05710181966423988, -0.0015901053557172418, -0.006974457297474146, 0.013650770299136639, -0.007247756700962782, 0.015972040593624115, 0.008135092444717884, 0.017008448019623756, 0.03750944882631302, 0.03606131672859192, 0.010392474010586739, 0.004127885214984417, 0.03926992416381836, -0.06019684299826622, -0.007201615255326033, 0.012891210615634918, 0.04259210824966431, 0.005803174339234829, 0.013139665126800537, 0.0014206242049112916, 0.021920736879110336, -0.0074962107464671135, 0.012252329848706722, -0.006942513398826122, -0.005380802787840366, -0.0009370263433083892, 0.05244508013129234, 0.0028944886289536953, -0.0006331139011308551, -0.008695888333022594, -0.007723368704319, 0.0065698325634002686, 0.0020231250673532486, 0.01351589523255825, 0.005245927721261978, 0.023056527599692345, -0.006992204114794731, -0.02139543555676937, 0.013082875870168209, -0.015361553058028221, -0.03870202600955963, -0.040036581456661224, 0.01899608038365841, 0.0027507401537150145, -0.007702072616666555, -0.0025714985094964504, 0.022105302661657333, -0.03501071035861969, 0.009498040191829205, 0.0004476608010008931, 0.015588711015880108, -0.0026478092186152935, -0.002436623442918062, 0.0047561186365783215, -0.030723106116056442, -0.037708211690187454, 0.003929121885448694, 0.02501576393842697, 0.0032653948292136192, -0.005600862205028534, -0.022999737411737442, 0.014779460616409779, 0.02816757932305336, 0.014225763268768787, -0.004362141713500023, 0.013657868839800358, 0.012138750404119492, 0.006126164924353361, 0.030041633173823357, 0.013026085682213306, 0.004024954047054052, -0.009043724276125431, -0.003047110280022025, 0.01540414523333311, -0.008923046290874481, -0.03466997668147087, -0.047845132648944855, -0.012032270431518555, 0.005043615121394396, 0.016369566321372986, 0.0004146075516473502, -0.02447626367211342, -0.005100404843688011, -0.010172414593398571, 0.00020686010248027742, 0.029672501608729362, -0.016852276399731636, 0.0010239852126687765, 0.00036824424751102924, 0.0028394737746566534, -0.0195497777312994, 0.008738480508327484, -0.019265830516815186, -0.03381813317537308, -0.043245185166597366, 0.04449455440044403, -0.02309911884367466, -0.006665664725005627, 0.011450177989900112, -0.010427967645227909, 0.011982579715549946, -0.01770411990582943, 0.013075776398181915, -0.01230911910533905, -0.00958322361111641, -0.015730684623122215, 0.041882239282131195, -0.02429169788956642, 0.015219579450786114, 0.003677118569612503, 0.020799145102500916, -0.012557572685182095, 0.0041207862086594105, 0.048895739018917084, -0.023056527599692345, -0.010108526796102524, -0.010648027062416077, -0.02759968489408493, 0.003199731931090355, -0.04066126421093941, -0.013984408229589462, -0.005597312934696674, -0.020160263404250145, 0.03163173794746399, -0.018300408497452736, 0.0047845132648944855, 0.02275838330388069, -0.011854803189635277, 0.006214898079633713, 0.013345526531338692, -0.03847486898303032, -0.006328477058559656, 0.0035244969185441732, 0.006186503451317549, 0.00583511870354414, -0.03555021062493324, 0.021125685423612595, -0.003485454013571143, -0.007737566251307726, 0.000992928515188396, 0.02654908038675785, -0.03418726474046707, 0.009299276396632195, -0.004284055903553963, 0.011230118572711945, -0.02366701327264309, 0.016866473481059074, -0.030382368713617325, -0.003233450697734952, 0.004408283159136772, -0.02261640876531601, 0.005036516580730677, -0.02165098674595356, -0.02221888303756714, -0.008497125469148159, -0.02535650134086609, 0.002848347183316946, -0.0026052172761410475, 0.002129605272784829, -0.01492143515497446, 0.005668299738317728, -0.012742138467729092, 0.01858435571193695, -0.01094617135822773, 0.029899658635258675, 0.044295791536569595, 0.003334606997668743, 0.0347551591694355, -0.00446862168610096, -0.011528263799846172, 0.058379579335451126, -0.013877928256988525, 0.015560315921902657, -0.04094521328806877, -0.014339342713356018, 0.04466492310166359, -0.018073251470923424, 0.009540632367134094, -0.0010080131469294429, 0.017207210883498192, 0.026293527334928513, -0.014878842979669571, -0.026662658900022507, 0.0022911003325134516, 0.03390331566333771, -0.003641625167801976, 0.018484974279999733, 0.004436677787452936, -0.011790914461016655, -0.038503263145685196, 0.005863513331860304, 0.021523211151361465, 0.008021513000130653, 0.01274923700839281, 0.026378711685538292, 0.03421565890312195, 0.020941119641065598, 0.003705513197928667, -0.018413987010717392, -0.031660132110118866, 0.03018360584974289, 0.005075559485703707, 0.017846092581748962, -0.006722453981637955, 0.03844647482037544, -0.002622963860630989, 0.009249585680663586, 0.019492987543344498, -0.0017844318645074964, 0.03796376287937164, -0.0038510363083332777, 0.01883990876376629, 0.02777005359530449, 0.006229095626622438, 0.025569461286067963, 0.02485959231853485, -0.04239334538578987, 0.05906105414032936, -0.028991026803851128, -0.0026407106779515743, -0.002841248409822583, -0.021920736879110336, 0.0054872832261025906, -0.004383437801152468, 0.002562625100836158, -0.005714441183954477, 0.0003941988106817007, 0.00040174118475988507, -0.020415816456079483, 0.016355369240045547, -0.02801140956580639, 0.010967467911541462, -0.006701158359646797, -0.02125346101820469, -0.006087122019380331, -0.013877928256988525, 0.003540468867868185, -0.00841194111853838, 0.025966987013816833, -0.013551388867199421, 0.018811514601111412, -0.0015590485418215394, 0.008078303188085556, 0.028309553861618042, 0.02294294908642769, -0.01811584271490574, 0.008177684620022774, 0.014176072552800179, 0.02082754112780094, -0.006108418107032776, -0.017661526799201965, 0.009923961013555527, 0.017604736611247063, 0.003512074239552021, 0.017349185422062874, 0.03217123821377754, -0.032398395240306854, 0.0015058084391057491, -0.005732187535613775, 0.025001566857099533, 0.0065698325634002686, 0.012507881969213486, 0.01359398104250431, 0.023624422028660774, 0.006669213995337486, -0.0009148429380729795, -0.014992421492934227, 0.024178119376301765, -0.0024614688009023666, 0.002869643270969391, 0.00841194111853838, -0.009867171756923199, 0.0012058890424668789, 0.004454424604773521, -0.0026034426409751177, -0.044466160237789154, -0.020217053592205048, -0.020728157833218575, 0.02228986844420433, -0.03290950134396553, -0.007538802921772003, -0.01050605345517397, 0.017320789396762848, -0.026208342984318733, -0.007261954247951508, -0.019492987543344498, -0.0023336925078183413, -0.017420170828700066, 0.02647809311747551, 0.0059061055071651936, -0.006456253584474325, 0.0004893655423074961, -0.024930579587817192, 0.008880454115569592, -0.041484713554382324, -0.0516500286757946, -0.03654402866959572, 0.014005704782903194, -0.020089276134967804, 0.01940780319273472, 0.018967684358358383, -0.02566884271800518, -0.03146136924624443, 0.006243293173611164, -0.015460934489965439, 0.030353974550962448, 0.014992421492934227, -0.008220276795327663, 0.03643044829368591, 0.00829126313328743, 0.023368868976831436, -0.017008448019623756, 0.025484276935458183, 0.005686046089977026, 0.04801550135016441, -0.010278895497322083, 0.020699763670563698, -0.02718796208500862, -0.026293527334928513, -0.02542748861014843, 0.024433672428131104, -0.002088787965476513, 0.005941598676145077, 0.005458888132125139, 0.0014632163802161813, 0.01817263290286064, -0.024092935025691986, -0.008113795891404152, 0.002589245093986392, -0.0007608902524225414, -0.012280724011361599, 0.0034162418451160192, -0.0018190379487350583, 0.03322184458374977, -0.010832592844963074, 0.017604736611247063, -0.022786777466535568, 0.02520032972097397, -0.026492290198802948, -0.007616888266056776, -0.0006570719997398555, 0.03691316023468971, 0.003123421221971512, -0.015787474811077118, -0.009206993505358696, 0.035379841923713684, -0.029019422829151154, 0.030694711953401566, 0.029871264472603798, -0.02221888303756714, -0.007900835946202278, 0.023283684626221657, 0.04071805253624916, -0.015602908097207546, 0.02365281619131565, -0.0006180292111821473, 0.006899921223521233, 0.009973651729524136, -0.01215294748544693, 0.007922131568193436, 0.00908631645143032, 0.01737757958471775, 0.03418726474046707, 0.03631686791777611, 0.02694660611450672, 0.055398132652044296, 0.0034073684364557266, 0.04114397615194321, 0.03631686791777611, -0.0004764992045238614, -0.04625502973794937, 0.0005128799239173532, -0.014708474278450012, -0.0424785278737545, -0.0205151978880167, -0.019251631572842598, -0.045431580394506454, 0.03106384351849556, -0.010655125603079796, 0.02308492176234722, -0.023709606379270554, 0.03555021062493324, -0.005018769763410091, -0.012564671225845814, -0.002218338893726468, 0.009356066584587097, 0.0041314344853162766, 0.0069886548444628716, 0.02542748861014843, 0.003914924338459969, -0.01891089603304863, 0.0101369209587574, -0.031007053330540657, 0.0015519498847424984, 0.013615276664495468, 0.01291250716894865, -0.01787448674440384, 0.04423900321125984, 0.05928821116685867, 0.012174244038760662, -0.01404119748622179, -0.015460934489965439, 0.0016486694803461432, -0.01994730345904827, 0.009881368838250637, 0.004234365187585354, -0.01230911910533905, -0.019251631572842598, 0.0337897390127182, -0.014651685021817684, -8.912176417652518e-05, 0.0056931450963020325, 0.0294453427195549, -0.004017855506390333, -0.005288519896566868, 0.005508579313755035, 0.007773059420287609, 0.011180427856743336, 0.007503309287130833, -0.010704816319048405, 0.014062494039535522, 0.023766394704580307, 0.013622375205159187, -0.009214092046022415, -0.009221191518008709, -0.005973543040454388, -0.00571089144796133, -0.004323098808526993, 0.040689658373594284, 0.007915033027529716, 0.04193902760744095, -0.023610224947333336, -0.015063408762216568, -0.041484713554382324, 0.027344131842255592, -0.004560904577374458, -0.04949202761054039, -0.006967358756810427, -0.015191184356808662, 0.009065019898116589, 0.011783815920352936, 0.018442383036017418, 0.019578171893954277, 0.03881560638546944, 0.053950000554323196, 0.023936763405799866, -0.029757685959339142, 0.005096855573356152, -0.004010756500065327, -0.021679382771253586, 0.024802803993225098, -0.0010772253153845668, -0.0055050295777618885, 0.0018545313505455852, 0.007553000468760729, 0.030637921765446663, 0.014822052791714668, -0.01889669895172119, -0.02221888303756714, -0.008007315918803215, -0.004752569366246462, -0.007297447416931391, 0.005430493503808975, -0.0004154948692303151, -0.0027542896568775177, -0.008915947750210762, 0.012891210615634918, 0.01795967109501362, 0.03123421221971512, -0.007283250335603952, -0.010278895497322083, 0.002033773111179471, 0.0024969622027128935, -0.04355752840638161, 6.339596438920125e-06, -0.00287851644679904, -0.0015226678224280477, -0.014332244172692299, 0.009881368838250637, -0.03211444988846779, 0.007538802921772003, 0.011925789527595043, -0.010782902128994465, -0.0006437619449570775, 0.0190670657902956, -0.0010790000669658184, 0.011329500004649162, 0.001472976990044117, -0.011805112473666668, -0.005664750002324581, -0.014303849078714848, 0.010371178388595581, -0.008873355574905872, 0.0011925790458917618, -0.008227375335991383, 0.010236303322017193, -0.02654908038675785, -0.03603292256593704, -0.0030027434695512056, 0.0318588949739933, -0.054432712495326996, 0.03645884245634079, 0.01666771061718464, 0.004284055903553963, 0.018144236877560616, 0.024902185425162315, 0.013764348812401295, -0.0246182382106781, -0.01770411990582943, 0.038616843521595, 0.028607698157429695, 0.016298579052090645, 0.006527240388095379, 0.010371178388595581, -0.023439856246113777, 0.028763869777321815, 0.005643454380333424, 0.033761344850063324, 0.0026549079921096563, 0.004486368503421545, -0.008433236740529537, -0.006655016914010048, -0.014090889133512974, -0.006534338928759098, 0.02896263264119625, 0.005313365254551172, 0.012259428389370441, -0.0022236627992242575, -0.0032157041132450104, 0.03080829046666622, 0.0097748888656497, -0.003890078980475664, -0.027415119111537933, -0.03807734325528145, -0.029388554394245148, -0.039724238216876984, -0.027386724948883057, 0.02510094828903675, -0.025470079854130745, -0.013125468045473099, 0.0038936284836381674, -0.00780855305492878, 0.007922131568193436, -0.019734343513846397, -0.012642757035791874, 0.004713526461273432, 0.018371395766735077, 0.017647329717874527, 0.004376338794827461, -0.004479269962757826, 0.016071422025561333, 0.004426029976457357, -0.009001132100820541, 0.025881802663207054, -0.00212250673212111, -0.009185697883367538, -0.004085293039679527, -0.0022130149882286787, 0.015588711015880108, 0.008234473876655102, 0.016994250938296318, -0.04137113317847252, 0.015915250405669212, -0.004564454313367605, -0.008113795891404152, -0.009334770031273365, 0.0025093848817050457, -0.00310922390781343, -0.005483733955770731, -0.0023816085886210203, -0.0037906975485384464, -0.029473738744854927, -0.007964723743498325, -0.033363815397024155, -0.00511105265468359, 0.02623673714697361, -0.02566884271800518, -0.027883632108569145, -0.01795967109501362, -0.003224577521905303, -0.00575348362326622, -0.0323416069149971, 0.03435763344168663, -0.021139882504940033, 0.0031482665799558163, 0.005139447748661041, -0.02349664643406868, -0.016114013269543648, 0.0042485627345740795, 0.012649855576455593, -0.01875472441315651, -0.024249106645584106, -0.02422071062028408, 0.010797099210321903, -0.03895758092403412, -0.0063852667808532715, 0.002259156433865428, -0.007709171157330275, 0.06559184193611145, 0.018726330250501633, 0.01866954006254673, -0.004255661275237799, -0.010740309953689575, 0.0017489383462816477, -0.0017498256638646126, -0.021182473748922348, -0.033193450421094894, -0.0037977960892021656, -0.02825276367366314, -0.010534447617828846, 0.0357205793261528, 0.012763435021042824, -0.03804894909262657, -0.0005009009037166834, 0.042052607983350754, -0.01411928329616785, -0.03313665837049484, 0.009391559287905693, -0.021920736879110336, -0.023198500275611877, 0.010953269898891449, 0.0018021785654127598, -0.01682388223707676, 0.009327671490609646, 0.018144236877560616, -0.028195975348353386, -0.011904493905603886, 0.005923852324485779, -0.025654645636677742, -0.0032760428730398417, -0.0205151978880167, 0.010513151995837688, -0.05085497722029686, -0.012692447751760483, -0.01696585677564144, 0.018130039796233177, -0.009852973744273186, 0.002841248409822583, 0.007553000468760729, 0.012614361941814423, -0.020004093647003174, 0.011286908760666847, 0.00583156943321228, -0.025384895503520966, 0.02632192149758339, 0.015162790194153786, -0.0041633783839643, 0.021949132904410362, 0.0009663084056228399, -0.00424146419391036, 0.00965421088039875, 0.00035604339791461825, -0.001178381615318358, 0.018868302926421165, 0.011790914461016655, -0.013863731175661087, -0.027628079056739807, 0.04256371036171913, -0.021225066855549812, -0.005618608556687832, -0.023638619109988213, -0.04029213264584541, -0.0008505111327394843, 0.017888685688376427, -0.010690619237720966, 0.011201724410057068, 0.0036380758974701166, 0.014836250804364681, 0.01367916539311409, -0.012081961147487164, 0.023070724681019783, 0.012522079050540924, 0.011322401463985443, 0.030155211687088013, -0.006346223875880241, -0.0006286772550083697, -0.011918690986931324, -0.026449698954820633, -0.01730659231543541, -0.026350317522883415, 0.004447325598448515, 0.016554132103919983, 0.017505355179309845, 0.01859855279326439, 0.0028376991394907236, -0.014878842979669571, -0.005544072482734919, 0.020060881972312927, 0.023780593648552895, -0.020713960751891136, 0.0075246053747832775, -0.013828237541019917, 0.039553869515657425, 0.016681907698512077, 0.004557355307042599, 0.012699546292424202, -0.021622592583298683, 0.02713117189705372, 0.033761344850063324, 0.03285271301865578, 0.029360158368945122, -0.017476961016654968, 0.01355848740786314, 0.0012972846161574125, 0.005103954114019871, 0.02855090983211994, 0.021139882504940033, 0.024234909564256668, 0.0027631628327071667, 0.010804197750985622, -0.0008212290704250336, 0.0006584029761143029, -0.02551267109811306, -0.00511105265468359, 0.008873355574905872, -0.009306374937295914, 0.0022218881640583277, -0.034329239279031754, 0.009718098677694798, -0.012507881969213486, 0.0006810300401411951, 0.00961161870509386, 0.0270317904651165, -0.0017240929882973433, 0.024660829454660416, 0.015517724677920341, -0.022659000009298325, 0.05142287164926529, -0.0033044377341866493, 0.009285079315304756, -0.005366605240851641, -0.004106589127331972, 0.00908631645143032, -0.006204250268638134, 0.0031766612082719803, -0.03058113344013691, -0.017732514068484306, -0.003794246818870306, 0.009476743638515472, -0.006576931104063988, -0.018201027065515518, -0.024575645104050636, -0.0097748888656497, -0.015120198018848896, -0.015290566720068455, -0.012720842845737934, -0.03299468383193016, 0.010747408494353294, -0.010023342445492744, 0.0011996777029708028, -0.028948435559868813, 0.004216618370264769, -0.007254855707287788, 0.03498231619596481, -0.006456253584474325, -0.042364947497844696, -0.01046346127986908, 0.0035653142258524895, -0.006704707629978657, -0.007801454048603773, 0.0050578126683831215, 0.0272731464356184, 0.0032849162817001343, -0.0006619523046538234, 0.0011446628486737609, -0.005583115387707949, 0.0007382631883956492, 0.012174244038760662, 0.03410207852721214, -0.014609092846512794, 0.03498231619596481, -0.026520684361457825, 0.016227591782808304, -0.005636355374008417, -0.011102342046797276, -0.006143911276012659, -0.0065023950301110744, 0.0035014261957257986, 0.008617802523076534, -0.013707559555768967, 0.015205382369458675, 0.0019397155847400427, -0.014176072552800179, -0.003080829046666622, 0.015787474811077118, 0.005341759882867336, -0.037623029202222824, -0.02011767216026783, -0.023141711950302124, 0.006914118770509958, -0.0040923915803432465, -0.012891210615634918, -0.012813125737011433, 0.026975000277161598, 0.022588014602661133, -0.010882283560931683, 0.018144236877560616, -0.007063190918415785, -0.023070724681019783, -0.0005044502904638648, -0.0028927139937877655, -0.00900823064148426, -0.004198872018605471, -0.003458834020420909, -0.03248358145356178, -0.030637921765446663, -0.00011967938189627603, -0.016710303723812103, -0.015503526665270329, -0.014836250804364681, 0.022815171629190445, -6.943400512682274e-05, 0.005256575997918844, 0.013700461015105247, -0.0067756944335997105, 0.024589842185378075, 0.025569461286067963, -0.0025377797428518534, -0.01476526353508234, -0.00768787506967783, -0.005274322349578142, 0.012046467512845993, 0.016852276399731636, 0.018868302926421165, -0.011918690986931324, 0.0043053519912064075, -0.0012005650205537677, -0.00394331943243742, 0.02583921141922474, 0.01787448674440384, -0.00981748104095459, -0.012216836214065552, -0.01761893555521965, -0.016852276399731636, 0.009916862472891808, 0.007258404977619648, 0.0006450929795391858, -0.003327508457005024, -0.027159566059708595, 0.0035032008308917284, 0.017846092581748962, -0.028281159698963165, 0.013622375205159187, 0.01557451393455267, 0.01540414523333311, -0.007553000468760729, 0.001663754228502512, -0.01082549337297678, 0.012415599077939987, -0.002931756665930152, 0.023695409297943115, -0.004042700864374638, 0.04480689764022827, -0.017164619639515877, -0.007283250335603952, -0.01584426313638687, 0.02390836924314499, 0.02244604006409645, 0.013572684489190578, -0.05673268809914589, -0.020486803725361824, 0.008305461145937443, 0.005465987138450146, 0.012500783428549767, -0.020742356777191162, -0.02220468409359455, -0.005178490187972784, -0.014005704782903194, 0.03316505253314972, -0.017278198152780533, 0.046482186764478683, -0.007567197550088167, -0.025938592851161957, -0.02592439576983452, -0.0005363943637348711, 0.004010756500065327, 0.04628342390060425, 0.030439158901572227, -0.02718796208500862, -0.004628342110663652, 0.0019556875340640545, 0.029388554394245148, 0.009632915258407593, -0.005732187535613775, -0.016681907698512077, 0.021537408232688904, -0.0026318372692912817, 0.014552303589880466, 0.011521165259182453, 0.00043279791134409606, 0.007929230108857155, -0.004660286474972963, 0.003040011739358306, 0.012465289793908596, 0.015006618574261665, -0.037140317261219025, 0.03549342229962349, 0.0034144672099500895, -0.002134929411113262, 0.003929121885448694, 0.022744184359908104, -0.021040501073002815, -0.013452007435262203, -0.0004560904635582119, -0.02599538303911686, -0.0011215921258553863, 0.01030019111931324, 0.006406562868505716, -0.011038454249501228, -0.020983710885047913, 0.013579783029854298, -0.009718098677694798, 0.00746071757748723, 0.005437592510133982, -0.02978608012199402, 0.024973172694444656, 0.010754507035017014, 0.013828237541019917, 0.0016131760785356164, -0.012245230376720428, 0.021693579852581024, -0.006147460546344519, 0.008653296157717705, 0.003375424537807703, 0.015063408762216568, -0.008880454115569592, 0.021281855180859566, -0.017264001071453094, -0.004184674471616745, 0.002266254974529147, 0.026037974283099174, -0.0024472714867442846, 0.021608395501971245, -0.007716270163655281, -0.043813079595565796, -0.020160263404250145, 0.006534338928759098, -0.00029282073955982924, -0.0069602602161467075, 0.011265612207353115, 0.004106589127331972, 0.012827322818338871, -0.0022698042448610067, 0.006115516647696495, -0.009767789393663406, -0.017093632370233536, -0.0035298208240419626, -0.00978198740631342, 0.01947879046201706, -0.008546816185116768, -0.020657172426581383, -0.04094521328806877, 0.017732514068484306, -0.0025839211884886026, 0.028849054127931595, 0.003772950731217861, -0.04886734485626221, -0.012578869238495827, -0.001075450680218637, -0.007659480441361666, 0.036174897104501724, 0.007347138598561287, -0.01025759894400835, 0.03606131672859192, 0.0166535135358572, 0.007595592178404331, 0.007993118837475777, -0.003929121885448694, -0.004369240254163742, -0.008170586079359055, -0.006069375202059746, -0.000685023027472198, 0.02156580425798893, 0.017008448019623756, 0.01086808554828167, 0.014105086214840412, 0.010534447617828846, 0.00844743475317955, -0.009412855841219425, 0.02865029126405716, 0.03711192309856415, -0.0219633299857378, -0.012025171890854836, 0.01803065836429596, -0.0009636463946662843, 0.0039752633310854435, 0.00957612507045269, 0.025370698422193527, 0.0011695083230733871, 0.015446737408638, -0.04267729073762894, -0.021210869774222374, -0.010498953983187675, -0.005824470426887274, -0.0021597747690975666, 0.01296219788491726, 0.0047845132648944855, 0.04264889657497406, 0.03259715810418129, -0.01295509934425354, 0.005267223808914423, -0.020543592050671577, -0.013466204516589642, -0.0027525147888809443, -0.00639591459184885, 0.010243401862680912, -0.014112184755504131, 0.006527240388095379, -0.0009618717595003545, -0.003868783125653863, 0.00024091159866657108, -0.006825385149568319, -0.013430710881948471, 0.011272710748016834, -0.04722044989466667, -0.019294224679470062, -0.01899608038365841, 0.004252112004905939, -0.022900355979800224, 0.005955796223133802, -0.0013381020398810506, 0.003245873376727104, 0.0003343036805745214, -0.008198980242013931, 0.012685349211096764, 0.015716487541794777, 0.0036256529856473207, -0.004213069099932909, -0.03821931779384613, 0.019194843247532845, -0.037935368716716766, 0.008305461145937443, -0.00617940491065383, 0.013423612341284752, 0.003801345592364669, 0.01042086910456419, -0.005881260149180889, 0.04520442336797714, -0.006119065918028355, 0.010790000669658184, 0.004500566050410271, -0.04665255546569824, -0.0284799225628376, 0.01081839483231306, 0.003123421221971512, -0.014878842979669571, -0.03313665837049484, -0.0008447434520348907, -0.0009592097485437989, 0.014594894833862782, -0.011904493905603886, 0.022261474281549454, -0.029502132907509804, -0.013089974410831928, 0.006072924472391605, -0.01940780319273472, -0.017278198152780533, 0.013778546825051308, -0.011861901730298996, -0.019521381705999374, -0.00609776983037591, 0.00337010039947927, -0.006761496886610985, 0.025541067123413086, -0.024646632373332977, 0.012671152129769325, 0.038418080657720566, -0.031830500811338425, 0.01090357918292284, -0.02084173820912838, -0.01625598780810833, -0.01162764523178339, -0.0376514233648777, -0.006594677921384573, -0.015176987275481224, -0.02334047481417656, -0.015091802924871445, -0.008795269764959812, 0.020969513803720474, -0.025626251474022865, 0.02301393449306488, 0.023439856246113777, 0.013856631703674793, -0.02301393449306488, 0.034868739545345306, 0.0021242813672870398, 0.01811584271490574, 0.010626730509102345, -0.013877928256988525, -0.0010550420265644789, -0.01746276393532753, 0.035436633974313736, 0.016639316454529762, 0.0011961283162236214, -0.023624422028660774, 0.011911592446267605, -0.02978608012199402, 0.018087448552250862, 0.022786777466535568, -0.03163173794746399, -0.0019752089865505695, -0.015290566720068455, 0.004617694299668074, 0.0035688637290149927, -0.01947879046201706, -0.017505355179309845, -7.836282020434737e-05, -0.02978608012199402, 0.004230815917253494, -0.000547486066352576, 0.0014703150372952223, -0.022417645901441574, 0.01939360611140728, -0.018470777198672295, -0.01585846021771431, 0.0016034153522923589, 0.01859855279326439, -0.002589245093986392, -0.0020018289797008038, -0.018783118575811386, -0.008504224009811878, 0.038985975086688995, -0.00905792135745287, 0.015432540327310562, -0.03750944882631302, 0.0178602896630764, 0.01624179072678089, -0.01021500676870346, -0.004046250134706497, -0.010456361807882786, 0.017647329717874527, -0.0037481053732335567, -0.0007466928800567985, -0.024334290996193886, -0.03838968649506569, -0.0032760428730398417, 0.0156880933791399, -0.013324230909347534, 0.006889273412525654, 0.01698005385696888, 0.0015661473153159022, -0.02334047481417656, -0.018215224146842957, 0.013537190854549408, -0.0003438425192143768, 0.001601640717126429, -0.005402098875492811, -0.00845453329384327, -0.0008860045345500112, -0.007332941051572561, -0.0241355262696743, -0.004007207229733467, -0.02356763184070587, -0.00788663886487484, 0.008553914725780487, -0.009341868571937084, 0.007269052788615227, 0.018243618309497833, -0.008667494170367718, -0.004905190784484148, -0.019620763137936592, 9.760691318660975e-05, 0.0026478092186152935, 0.013253243640065193, 0.005121700931340456, 0.006552085746079683, 0.005700243636965752, -0.005852865520864725, -0.006566283293068409, -0.00836934894323349, -0.006292983889579773, 0.002779135014861822, -0.010754507035017014, -0.005363055970519781, -0.01227362547069788, 0.008049908094108105, -0.005324013531208038, 0.06990784406661987, 0.013870829716324806, 0.005441141780465841, -0.005927401594817638, -0.012294921092689037, -0.019989894703030586, -0.006307180970907211, 0.02833794802427292, 0.016227591782808304, -0.004106589127331972, -0.013849533163011074, -0.007758862338960171, 0.0031482665799558163, 0.0040639969520270824, -0.027656475082039833, 0.014211566187441349, 0.006087122019380331, 0.027145368978381157, -0.01211035531014204, 0.013572684489190578, 0.008667494170367718, -0.01561710610985756, -0.016312776133418083, 0.021693579852581024, -0.010129822418093681, 0.015602908097207546, 0.00068191735772416, 0.019052868708968163, -0.0025732731446623802, 0.018783118575811386, -0.0033044377341866493, -0.010740309953689575, -0.012053566053509712, 0.0006907907081767917, -0.009767789393663406, 0.006615974009037018, 0.0014268355444073677, 0.011975480243563652, 0.0027099228464066982, -0.0016309227794408798, -0.004021404776722193, -0.006516592111438513, 0.012103256769478321, 0.028678685426712036, -0.01082549337297678, -0.01923743449151516, 0.0034304391592741013, -0.0037765002343803644, 0.014403230510652065, -0.010243401862680912, -0.026108961552381516, -0.02220468409359455, -0.001677951542660594, 0.006970908027142286, 0.008752677589654922, -0.004734822548925877, 0.023709606379270554, 0.009242487139999866, 0.012884112074971199, -0.003336381632834673, -0.022176289930939674, 0.007389730308204889, -0.013118368573486805, -0.021622592583298683, -0.010115625336766243, -0.016525737941265106, -0.007645283360034227, -0.01715042255818844, 0.0012919605942443013, -0.002812853781506419, -0.008816566318273544, 0.012216836214065552, 0.015191184356808662, -0.021750370040535927, -0.004532509949058294, 0.023851579055190086, -0.011393388733267784, 0.03563539683818817, 0.019833724945783615, 0.01034278329461813, 0.011294007301330566, 0.007063190918415785, -0.02068556658923626, -0.009824579581618309, -0.008844960480928421, 0.0023177205584943295, 0.007553000468760729, -0.028536710888147354, 0.002117182593792677, -0.04165508225560188, -0.01284151989966631, 0.0095335328951478, 0.0022609310690313578, 0.004007207229733467, 0.005061361938714981, 0.007073839195072651, -0.017193013802170753, 0.005274322349578142, 0.023794790729880333, -0.012827322818338871, -0.0018509819637984037, 0.014580697752535343, -0.012678250670433044, -0.0007174108177423477, 0.008646197617053986, 0.004227266646921635, 0.017093632370233536, 0.005657651461660862, -0.014190270565450191, 0.0016238241223618388, -0.005402098875492811, -0.014566500671207905, 0.0010284219169989228, 0.013381020165979862, -0.02244604006409645, 0.001616725348867476, 0.012074862606823444, -0.012216836214065552, -0.01601463183760643, -0.019691750407218933, 0.0038581350818276405, -0.002670879941433668, -0.0035688637290149927, -0.003765852190554142, -0.0026069919113069773, 0.01634117215871811, -0.004191773012280464, -0.0055653685703873634, -0.00552987540140748, -0.005316914524883032, 0.0015909926733002067, 0.015049210749566555, 0.009789085946977139, -0.01827201433479786, 0.015517724677920341, 0.007403927855193615, 0.002649584086611867, -0.01939360611140728, 0.017022645100951195, -0.010243401862680912, 0.01348040159791708, 0.008127993904054165, 0.0059948391281068325, 0.026662658900022507, 0.000657515658531338, 0.011798013933002949, -0.011897395364940166, -0.02984287030994892, -0.003018715651705861, -0.019521381705999374, 0.011556657962501049, -0.03339221328496933, -0.002198817441239953, -0.01042086910456419, 0.004738371819257736, 0.0039007270243018866, -0.03032558038830757, 0.02761388197541237, -0.014552303589880466, -0.0019361661979928613, -0.011599250137805939, -0.0018021785654127598, -0.006513042841106653, -0.0025927945971488953, -0.0009822804713621736, -0.0019556875340640545, 0.020713960751891136, 0.029956448823213577, 0.013977309688925743, -0.005160743836313486, -0.006332026328891516, 0.006978007033467293, 0.00489099370315671, -0.02713117189705372, 0.002507610246539116, -0.002699274802580476, -0.010605434887111187, 0.007659480441361666, -0.024021947756409645, 0.02092692255973816, 0.011414684355258942, -0.011996776796877384, 0.02165098674595356, 0.006328477058559656, 0.005249476991593838, -0.001820812583900988, 0.0033807484433054924, -0.006846681237220764, -0.015673894435167313, -0.0013664967846125364, -0.012671152129769325, 0.01618500053882599, -0.0026833026204258204, 0.0030701810028403997, -0.024604041129350662, -0.004568003583699465, 0.01746276393532753, 0.02010347507894039, 0.021594198420643806, -0.008220276795327663, 0.004134983755648136, -0.002656682627275586, -0.0007724256138317287, 0.014907237142324448, 0.0033097616396844387, -0.018087448552250862, -0.01787448674440384, -0.0195497777312994, -0.017476961016654968, -0.0009760691318660975, -0.03325023874640465, -0.02680463343858719, -0.00143925822339952, 0.0075246053747832775, 0.0013957788469269872, -0.003758753417059779, 0.013175158761441708, -0.00669760862365365, 0.039241526275873184, 0.0007923906669020653, 0.022417645901441574, -0.009505138732492924, 0.014112184755504131, -0.015560315921902657, -0.01570229046046734, -0.0003356346860527992, 0.00785114523023367, 0.006772145163267851, 0.010917776264250278, -0.011308204382658005, 0.019833724945783615, -0.005668299738317728, -0.005654102191329002, 0.014907237142324448, -0.0052423784509301186, 0.02277258038520813, 0.01304028369486332, -0.00046895683044567704, 0.014708474278450012, -0.001403764821588993, -0.005072010215371847, 0.003765852190554142, -0.006019684486091137, -0.004078194033354521, 0.010314388200640678, -0.020813342183828354, 0.0056328061036765575, -0.001923743519000709, 0.008170586079359055, -2.4027383915381506e-05, 0.004862599074840546, 0.0008984272717498243, -0.00420597055926919, 0.019209040328860283, 0.011002960614860058, -0.010995862074196339, -6.693837349303067e-05, 0.008511322550475597, 0.0049406844191253185, -0.017207210883498192, -0.0001316584093729034, 0.013913421891629696, -0.014779460616409779, -0.0013274539960548282, -0.016454750671982765, 0.026605868712067604, -0.038616843521595, 0.007631085813045502, 0.0034694820642471313, 0.014878842979669571, -0.002560850465670228, -0.009625815786421299, 0.022999737411737442, 0.02422071062028408, 0.0027099228464066982, -0.0008509547915309668, -0.00541274668648839, -0.007872440852224827, 0.015730684623122215, 0.018215224146842957, 0.003300888231024146, 0.012124553322792053, 0.02060038223862648, -0.023879975080490112, -0.008085401728749275, -0.021693579852581024, 0.0013043832732364535, 0.007510408293455839, 0.004056897945702076, -0.001567921950481832, 0.01364367175847292, 0.010655125603079796, 0.020458409562706947, -0.004830654710531235, -0.014949829317629337, 0.004532509949058294, -0.0037623026873916388, 0.009909763932228088, 0.018229421228170395, 0.0012280724477022886, -0.00035604339791461825, -0.0019769836217164993, -0.005338210612535477, -0.031092237681150436, 0.006956710945814848, 0.01102425716817379, 0.01715042255818844, -0.0010319713037461042, -0.0004982388927601278, 0.019933106377720833, -0.005284970626235008, 0.0027773603796958923, -0.017178816720843315, -0.009334770031273365, -0.008241572417318821, -0.005228180903941393, 0.012550474144518375, 0.021622592583298683, -0.02204851433634758, 0.011372092179954052, 0.009760690852999687, 0.017590539529919624, -0.004408283159136772, 0.018158433958888054, 0.006601776462048292, 0.016369566321372986, 0.013253243640065193, 0.0067756944335997105, 0.021111488342285156, -0.028366344049572945, 0.015560315921902657, -0.007141276728361845, -0.01609981618821621, -0.005054263398051262, 0.0012325090356171131, 0.013892125338315964, -0.007034796290099621, -0.013274540193378925, -0.025328105315566063, 0.013991506770253181, -0.010846789926290512, -0.026165751740336418, -0.009959454648196697, -0.006122615188360214, 0.025938592851161957, 0.007332941051572561, 0.008269967511296272, -0.010541546158492565, 0.01754794828593731, 0.015304763801395893, 0.01696585677564144, -0.004383437801152468, 0.021693579852581024, 0.0049300361424684525, -0.009065019898116589, -0.019904710352420807, 0.019606566056609154, 0.00412433547899127, -0.015972040593624115, 0.013792743906378746, -0.016852276399731636, 0.018229421228170395, -0.01086808554828167, -0.004961980506777763, 0.016114013269543648, 0.002814628416672349, -0.0127918291836977, 0.015602908097207546, -0.028437329456210136, -0.0036043571308255196, -0.003964615054428577, -0.025171935558319092, -0.01696585677564144, -0.00788663886487484, -0.028210172429680824, 0.001827911240980029, -0.004702878650277853, -0.007446520030498505, -0.017505355179309845, -0.005437592510133982, 0.03631686791777611, -0.004720625001937151, -0.012053566053509712, -0.007801454048603773, 0.0136365732178092, 0.015205382369458675, 0.016114013269543648, 0.006839582696557045, 0.004418930970132351, -0.016270184889435768, -0.004269858822226524, 0.009072118438780308, -0.009725198149681091, -0.011876098811626434, -0.005430493503808975, 0.015361553058028221, -0.03736747428774834, 0.012365908361971378, 0.0038616843521595, -0.012216836214065552, 0.011130737140774727, 0.012223934754729271, 0.0023390166461467743, 0.022162092849612236, -0.0008642648463137448, -0.024121329188346863, 0.008177684620022774, 0.02270159311592579, 0.01801646128296852, -0.0059664444997906685, 0.0027684869710355997, 0.014665882103145123, -0.015546118840575218, 0.008262868970632553, 0.013338427990674973, -0.015730684623122215, 0.011769618839025497, -0.01295509934425354, 0.004078194033354521, 0.01723560504615307, 0.018314605578780174, -0.008866257034242153, 0.02970089577138424, 0.003645174438133836, 0.02777005359530449, -0.0032494228798896074, 0.02984287030994892, 0.013338427990674973, 0.0020231250673532486, -0.009909763932228088, -0.01818682998418808, -0.0181016456335783, -0.005909654777497053, 0.01594364456832409, -0.03566379100084305, -0.010236303322017193, 0.028508316725492477, -0.04046250134706497, 0.0028927139937877655, 0.025555264204740524, -0.02534230425953865, -0.013948914594948292, 0.0028164030518382788, 0.0022449588868767023, 0.011294007301330566, 0.011975480243563652, 0.004933585878461599, 0.014594894833862782, -0.009206993505358696, -0.01899608038365841, -0.006278786342591047, 0.030524343252182007, 0.007702072616666555, 0.0007923906669020653, -0.01171282958239317, -0.016397960484027863, -0.006278786342591047, 0.01235171128064394, 0.03838968649506569, -0.03580576553940773, 0.008539717644453049, -0.015645500272512436, 0.014005704782903194, 0.01359398104250431, -0.02091272361576557, -0.010250500403344631, 0.004411832429468632, 0.015233776532113552, -0.008908849209547043, -0.00708448700606823, -0.026762040331959724, 0.016355369240045547, 0.012571769766509533, -0.010612533427774906, -0.004078194033354521, 0.011471474543213844, -0.023439856246113777, 0.011208822950720787, -0.0007582282414659858, -0.005977092310786247, -0.005164293106645346, -0.00013698243128601462, 0.0027081482112407684, 0.00549438176676631, 0.027244750410318375, -0.028664488345384598, 0.008823664858937263, 0.015162790194153786, 0.014318046160042286, 0.010087230242788792, -0.014154776930809021, 0.007730467244982719, 0.0014534556539729238, -0.00223431084305048, 0.00905082281678915, -0.0041314344853162766, -0.020387422293424606, 0.02342565916478634, -0.014779460616409779, -0.005171391647309065, -0.018967684358358383, -0.008632000535726547, 0.007893737405538559, 0.004472171422094107, 0.02254542149603367, -0.0011384515091776848, -0.0019539128988981247, 0.019933106377720833, 0.0308366846293211, 0.01577327772974968, 0.006019684486091137, 0.019975697621703148, -0.010733210481703281, 0.010158217512071133, -0.006992204114794731, 0.015446737408638, 0.003233450697734952, 0.008880454115569592, 0.004142082296311855, 0.0003757866215892136, -0.008227375335991383, -0.018314605578780174, 0.008688789792358875, 0.002775585511699319, 0.0012475937837734818, -0.011471474543213844, 0.02984287030994892, -0.0018580806208774447, 0.022389251738786697, 0.002374510047957301, -0.01979113183915615, -0.003130519762635231, -0.0055653685703873634, 0.010037539526820183, 0.007900835946202278, 0.006300082430243492, 0.004898092243820429, 0.011052651330828667, 0.036004528403282166, -0.006253940984606743, -0.01146437507122755, -0.015049210749566555, 0.017178816720843315, -0.010044638067483902, -0.012223934754729271, -0.02622254006564617, -0.005522776395082474, -0.0012493684189394116, -0.007332941051572561, 0.004230815917253494, -0.0050684604793787, 0.007822750136256218, 0.01609981618821621, 0.010073033161461353, 0.016539935022592545, -0.002931756665930152, -0.0030630824621766806, 0.007510408293455839, -0.007183868903666735, 0.011457276530563831, -0.01174832321703434, -0.022417645901441574, -0.005284970626235008, 0.0047667664475739, -0.005973543040454388, -0.004170476924628019, 0.012926704250276089, 0.0035706383641809225, 0.010577039793133736, 0.017917079851031303, -0.011648940853774548, -0.012032270431518555, -0.014751066453754902, 0.005771230440586805, 0.007751763332635164, 0.001583006582222879, -0.011400487273931503, -0.007137727458029985, 0.013295835815370083, -0.006466901395469904, 0.006843131966888905, -0.028124988079071045, -0.010087230242788792, -0.013324230909347534, 0.01103135570883751, 0.031007053330540657, 0.004763217177242041, 0.009952355176210403, 0.001260903780348599, -0.03041076473891735, 0.019933106377720833, -0.028380541130900383, -0.02077075093984604, 0.018626948818564415, 0.01842818409204483, -0.012039368972182274, -0.0033310577273368835, -0.0026673306711018085, -0.028451526537537575, -0.02254542149603367, -0.00454315822571516, 0.008674592711031437, 0.006786342244595289, 0.003054209053516388, 0.001088760676793754, -0.00579607579857111, 0.0014836250338703394, -0.015176987275481224, -0.013409415259957314, -0.009746493771672249, 0.00227335374802351, -0.004326648078858852, 0.027940422296524048, 0.010498953983187675, -0.006807638332247734, -0.002390481997281313, 0.011010059155523777, 0.001006238511763513, 0.011237217113375664, -0.036402054131031036, -0.01150696724653244, -0.005615059286355972, -0.008773974142968655, 0.025058357045054436, -0.011606348678469658, 0.00040506868390366435, 0.011599250137805939, 0.016057224944233894, 0.008958539925515652, -0.004922937601804733, -0.007411026395857334, 0.004333747085183859, -0.009334770031273365, -0.021949132904410362, 0.002869643270969391, 0.0007103121024556458, -0.03435763344168663, 0.0008545041200704873, 0.0028891644906252623, -0.027585487812757492, -0.006310730706900358, 0.0017844318645074964, 0.013111270032823086, -0.01030019111931324, 0.012500783428549767, 0.013011888600885868, 0.007258404977619648, 0.005636355374008417, -0.005991289857774973, 0.002388707362115383, -0.021792961284518242, 0.022957146167755127, -0.018854105845093727, 0.010278895497322083, -0.0021526759956032038, -0.02301393449306488, 0.019776934757828712, -0.04165508225560188, 0.008944342844188213, -0.0005780991050414741, -0.0164121575653553, -0.032795920968055725, -0.011407585814595222, 0.009476743638515472, 0.0007404815405607224, -0.02004668489098549, 0.0034162418451160192, 0.020146066322922707, 0.002692176029086113, -0.02237505279481411, -0.006793441250920296, 0.01146437507122755, -0.014310947619378567, 0.016923263669013977, 0.004560904577374458, -0.006796990521252155, -0.004028503317385912, -0.01284151989966631, -0.009711000137031078, -0.03458479046821594, 0.0011624095495790243, 0.007482013199478388, -0.003627427853643894, 0.00776596087962389, -1.705348040559329e-05, -0.004415381699800491, 0.0023727351799607277, -0.024320093914866447, -0.006552085746079683, -0.00027285568648949265, -0.016369566321372986, -0.004312450997531414, -0.006637270096689463, -0.020245447754859924, 0.003252972150221467, -0.001602528034709394, -0.019010277464985847, 0.0013132566818967462, -0.015801671892404556, -0.011208822950720787, -0.008809467777609825, -0.01480785571038723, 0.008390645496547222, -0.0032015067990869284, 0.010094329714775085, -0.013728856109082699, 0.02173617109656334, 0.00291578471660614, -0.004816457629203796, -0.006750849075615406, 0.005047164857387543, 0.013984408229589462, -0.002945953980088234, -0.0017356283497065306, -0.014538105577230453, -0.030921868979930878, 0.018456580117344856, -0.01106684934347868, -0.018087448552250862, 0.008184783160686493, 0.003554666182026267, -0.0033470296766608953, -0.009682605974376202, 0.004056897945702076, 0.008632000535726547, -0.014481316320598125, 0.0016735148383304477, 0.004656737204641104, -0.008923046290874481, -0.0005687820957973599, 0.011599250137805939, -0.011492770165205002, -0.012969296425580978, 0.01947879046201706, -0.013210651464760303, -0.0051855891942977905, 0.006147460546344519, -0.010037539526820183, 0.009767789393663406, 0.011379191651940346, -0.017732514068484306, -0.03776500001549721, -0.0037090627010911703, 0.0029388554394245148, 0.0071945167146623135, -0.014005704782903194, -0.005277872085571289, 0.01299769151955843, -0.023851579055190086, 0.014935632236301899, -0.004685131832957268, -0.019904710352420807, -0.008653296157717705, 0.0006663890089839697, 0.0089301448315382, 0.003320409683510661, 0.027301540598273277, 0.0026744294445961714, 0.006605325732380152, 0.014396131969988346, 0.02606636844575405, 0.01940780319273472, -0.016795488074421883, 0.004372789524495602, 0.005973543040454388, 0.016639316454529762, -0.011144934222102165, -0.011471474543213844, -0.006044529844075441, 0.028025606647133827, 0.014992421492934227, -0.009994947351515293, -0.014133480377495289, -0.02494477666914463, -0.02204851433634758, -0.018712133169174194, 0.00888755265623331, -0.003185534616932273, 0.006672763265669346, 0.009341868571937084, 0.007261954247951508, 0.00549438176676631, -0.02140963263809681, -0.008617802523076534, -0.01283442135900259, 0.006655016914010048, 0.026137355715036392, 0.004582200665026903, 0.023695409297943115, 0.013948914594948292, 0.016383763402700424, -0.002095886506140232, -0.015645500272512436, -0.007616888266056776, 0.02785523794591427, 0.003089702455326915, 0.014751066453754902, -0.00784404668956995, -0.010513151995837688, -0.007002852391451597, -0.011755421757698059, 0.016156606376171112, 0.00949094071984291, -0.007297447416931391, -0.006090671289712191, 0.00889465119689703, -0.014949829317629337, 0.012514980509877205, 0.028451526537537575, -0.004284055903553963, 0.004134983755648136, -0.003829740220680833, -0.004408283159136772, 0.012124553322792053, -0.0013336653355509043, -0.008866257034242153, 0.012131651863455772, 0.004227266646921635, -0.0016069647390395403, 0.024831198155879974, -0.019436197355389595, 0.004607046023011208, 0.007347138598561287, -0.008149289526045322, -0.026534883305430412, -0.008028612472116947, 0.007215812802314758, -0.007822750136256218, -0.0010461686179041862, -0.014538105577230453, -0.0009228289709426463, 0.002793332329019904, -0.009625815786421299, 0.008085401728749275, 0.0010772253153845668, -0.005334661342203617, -0.006580480374395847, 0.0038865297101438046, 0.0029885461553931236, 0.012060664594173431, 0.01537575013935566, -0.027102777734398842, -0.001856305985711515, 0.003882980439811945, -0.007694974076002836, 0.005824470426887274, -0.013622375205159187, 0.008617802523076534, -0.016369566321372986, -0.020501000806689262, 0.004489917773753405, 0.021196672692894936, -0.014140579849481583, 0.003082603681832552, -0.018882500007748604, 0.014949829317629337, -0.006836032960563898, -0.004081743769347668, 0.02068556658923626, -0.004983276594430208, 0.021267658099532127, 0.023950960487127304, 0.011201724410057068, -0.0025998931378126144, 0.0012005650205537677, -0.014474217779934406, -0.006335576064884663, 0.004291154909878969, -0.0031802107114344835, -0.008639099076390266, -0.007347138598561287, -0.007503309287130833, -0.004429579246789217, 0.019422000274062157, 0.008262868970632553, 0.012940901331603527, 0.020870132371783257, -0.007226460613310337, -0.008809467777609825, 0.0073400395922362804, -0.015659697353839874, 0.022886158898472786, -0.002546653151512146, 0.00352094741538167, -0.024021947756409645, -0.004379888530820608, 0.01274923700839281, -0.008269967511296272, 0.008702986873686314, 0.02953052707016468, 0.025413289666175842, -0.000499569927342236, 0.0241355262696743, -0.009150204248726368, 0.0051465462893247604, -0.005558270029723644, 0.01915225014090538, 0.01537575013935566, -0.0013114819303154945, -0.005118151661008596, 0.011052651330828667, 0.011116540059447289, -0.018555961549282074, 0.0044828192330896854, -0.007758862338960171, 0.0057783289812505245, -0.020302237942814827, 0.0051465462893247604, -0.018059052526950836, 0.010058836080133915, -0.01021500676870346, -0.009235388599336147, 0.0015164564829319715, -0.000534176011569798, 0.013551388867199421, 0.005764131899923086, 0.01778930239379406, -0.011336599476635456, -0.011173329316079617, -0.024433672428131104, -0.01540414523333311, 0.02511514537036419, 0.0032015067990869284, 0.008951441384851933, 0.011755421757698059, 0.012387203983962536, -0.026733646169304848, -0.0007755312835797668, -0.01227362547069788, -0.01206776313483715, 0.004429579246789217, 0.004585749935358763, 0.002117182593792677, 0.009916862472891808, -0.02446206659078598, -0.01932261884212494, -0.0025661743711680174, -0.013381020165979862, 0.008688789792358875, 0.021423829719424248, 0.024731816723942757, -0.008348053321242332, 0.0006814736989326775, -0.01737757958471775, -0.025541067123413086, -0.010229204781353474, 0.002662006765604019, -0.005096855573356152, 0.00029415174503810704, 0.023368868976831436, 0.008440336212515831, -0.002149126725271344, 0.011116540059447289, 0.004035602323710918, 0.018570158630609512, 0.01146437507122755, 0.001822587219066918, -0.0376514233648777, -0.009001132100820541, -0.010328586213290691, -0.00785114523023367, -0.019819527864456177, 0.018854105845093727, -0.004972628317773342, 0.010023342445492744, -0.010158217512071133, 0.012373006902635098, -0.0021420279517769814, -0.007545901462435722, -0.0008394194301217794, 0.0054766349494457245, 0.013210651464760303, 0.002007153118029237, 0.014090889133512974, 0.02654908038675785, 0.007638184353709221, -0.033363815397024155, -0.005654102191329002, -0.01994730345904827, 0.00746071757748723, -0.013111270032823086, 0.0004800485330633819, 0.013217750936746597, -0.0008345390670001507, 0.00647400040179491, -0.00013720426068175584, -0.004862599074840546, 0.015091802924871445, 0.013785645365715027, 0.0038865297101438046, -0.015091802924871445, -0.004568003583699465, -0.007829848676919937, 0.008170586079359055, -0.008908849209547043, -0.03290950134396553, 0.025441685691475868, 0.0025005117058753967, -0.016057224944233894, 0.010498953983187675, 0.006087122019380331, 0.015191184356808662, -0.014055395498871803, -0.004386987071484327, 0.0059664444997906685, 0.0004800485330633819, -0.00012666714610531926, -0.00020930026948917657, -0.019351013004779816, 0.011130737140774727, 4.126110434299335e-05, -0.006033881567418575, -0.015162790194153786, -0.00020009417494293302, -0.018371395766735077, 0.02365281619131565, 0.017604736611247063, 0.020557790994644165, 0.004653187468647957, 0.02180715836584568, -0.00973939523100853, 0.028948435559868813, 0.0018687286647036672, -0.015035013668239117, 0.011173329316079617, -0.00048093587975017726, 0.005622158292680979, -0.01858435571193695, -0.010775802657008171, -0.020075079053640366, 0.001945039490237832, -0.00682183587923646, -0.0064420560374855995, -0.01989051327109337, -0.017803501337766647, 0.01416187547147274, -0.015673894435167313, 0.016355369240045547, 0.004603496752679348, 0.01408378966152668, 0.005267223808914423, 0.004859049338847399, 0.003595483722165227, 0.009632915258407593, -0.013075776398181915, -0.0004898092010989785, 0.005093306303024292, -0.022332461550831795, 0.005118151661008596, 0.0022147896233946085, -0.005306266713887453, 0.004411832429468632, -0.011414684355258942, 0.0031127731781452894, 0.008724283427000046, 0.026605868712067604, 0.004404733888804913, 0.015787474811077118, 0.02978608012199402, 0.024036144837737083, -0.0051465462893247604, 0.0018403339199721813, -0.0022485083900392056, -0.01110944151878357, 0.0017817697953432798, 0.005249476991593838, -0.017178816720843315, -0.0019627863075584173, 0.002443722216412425, 0.017760908231139183, -0.008823664858937263, 0.012585967779159546, 0.0022840017918497324, 0.011556657962501049, -0.015546118840575218, -0.0054198456928133965, 0.00450411532074213, 0.00712352991104126, -0.00022959808120504022, -0.006058727391064167, 0.005973543040454388, -0.013018987141549587, -0.018541764467954636, 0.007446520030498505, -0.017519554123282433, -0.006253940984606743, 0.002362087368965149, -0.003238774836063385, -0.0022076908499002457, -0.011911592446267605, 0.0195497777312994, 0.0007404815405607224, -0.012117454782128334, 0.03645884245634079, 0.008773974142968655, -0.01243689563125372, 0.004156279843300581, 0.0014090888435021043, 0.0008425250998698175, -0.015673894435167313, -0.028181778267025948, 0.007418125402182341, -0.011038454249501228, 0.0036167798098176718, 0.009306374937295914, 0.005022319033741951, 0.010314388200640678, 0.005249476991593838, 0.005377253517508507, -0.00981748104095459, 0.0036735692992806435, -0.008390645496547222, -0.005345309618860483, -0.017590539529919624, 0.0016832755645737052, -0.001937940833158791, -0.01584426313638687, 0.0009037512936629355, 0.010790000669658184, 0.014552303589880466, 0.006062276661396027, -0.003918473608791828, 0.015361553058028221, 0.007702072616666555, 0.0022751283831894398, 0.009519335813820362, 0.008064105175435543, -0.01625598780810833, 0.015659697353839874, -0.001349637401290238, 0.002150901360437274, 0.00027485218015499413, 0.0053311120718717575, 0.006108418107032776, 0.009945256635546684, 0.01601463183760643, -8.474054629914463e-05, -0.0014765263767912984, 0.027216356247663498, -0.005955796223133802, 0.002402904676273465, 0.009838776662945747, 0.0036700197961181402, -0.00454670749604702, -0.0035173981450498104, 0.005245927721261978, -0.010087230242788792, -0.014822052791714668, 0.009348967112600803, 0.006292983889579773, -0.009711000137031078, -0.013863731175661087, -0.0024543702602386475, -0.010065934620797634, -0.008710085414350033, -0.0035670888610184193, -0.006335576064884663, 0.0030098422430455685, -0.02718796208500862, 0.01428255345672369, 0.0178602896630764, -0.01723560504615307, -0.008213178254663944, -0.001870503299869597, 0.0012564671924337745, -0.0014135255478322506, -0.0070489938370883465, 0.01980532892048359, 0.011457276530563831, -0.005426944233477116, -0.02785523794591427, -0.017803501337766647, -0.002287551062181592, -0.0008163487073034048, -0.004617694299668074, 0.01658252626657486, 0.0068040890619158745, -0.015035013668239117, 0.006938964128494263, -0.030439158901572227, -0.01666771061718464, -0.014694277197122574, -0.011925789527595043, -0.014431625604629517, 0.0037694014608860016, 0.006825385149568319, -0.024021947756409645, 0.003166013164445758, 0.016554132103919983, 0.009256684221327305, 0.027386724948883057, -0.007173220627009869, -0.014147678390145302, 0.0014188495697453618, 0.00917859934270382, 0.006204250268638134, -0.025299711152911186, 0.006899921223521233, -0.00352094741538167, 0.013963112607598305, -0.01715042255818844, 0.006363970693200827, 0.006704707629978657, -0.012472388334572315, -0.044948868453502655, -0.00901532918214798, 0.027159566059708595, -0.013054480776190758, -0.010250500403344631, 0.017831895500421524, -0.0012981719337403774, 0.014609092846512794, -0.020401619374752045, -0.005064911209046841, -0.006221997085958719, 0.016554132103919983, -0.00480580935254693, -0.014090889133512974, 0.03325023874640465, -0.0038368389941751957, 0.006612424738705158, 0.010250500403344631, 0.0026069919113069773, -0.01818682998418808, 0.02865029126405716, -0.008731381967663765, 0.010080131702125072, -0.0017098956741392612, -0.012699546292424202, 0.017122026532888412, 0.005643454380333424, 0.014502611942589283, -0.03276752680540085, -0.0013842434855177999, -0.02131025120615959, 0.0039007270243018866, -0.0006468676147051156, 0.013927618972957134, 0.0013984407996758819, -0.004035602323710918, 0.0031766612082719803, 0.001068352023139596, 0.0011615222319960594, 0.00973939523100853, -0.011812211014330387, -0.011215921491384506, -0.005334661342203617, -0.008951441384851933, -0.0067756944335997105, -0.016539935022592545, 0.01105975080281496, -0.013735954649746418, 0.0068182866089046, 0.002184620127081871, 0.040519289672374725, -0.007318743504583836, -0.008731381967663765, -0.01103135570883751, 0.0068608783185482025, 0.006282335612922907, -0.012252329848706722, -0.01540414523333311, 0.021267658099532127, 0.009547730907797813, 0.0021260560024529696, -0.012074862606823444, 0.0015696965856477618, -0.015134395100176334, 0.010740309953689575, -0.01166313886642456, -0.023141711950302124, 0.020870132371783257, -0.007751763332635164, -0.02067136950790882, 0.0004208188911434263, -0.02284356579184532, -0.0062858848832547665, 0.011954184621572495, -0.0007387068471871316, 0.005093306303024292, 0.02244604006409645, 0.00454315822571516, -0.0038936284836381674, -0.005675398278981447, 0.011322401463985443, 0.014665882103145123, 0.04608466103672981, 0.0009574350551702082, 0.004678033292293549, -0.02091272361576557, -0.001335439970716834, -0.02356763184070587, 0.0033647764939814806, 0.004770316183567047, -0.022729987278580666, -0.003118097083643079, 0.010626730509102345, -7.814099080860615e-05, 0.031347788870334625, 0.017902882769703865, -0.004351493436843157, -0.004986825864762068, 0.0029903207905590534, -0.00609422056004405, -0.0048129078932106495, 0.009874270297586918, 0.014566500671207905, 0.012337513267993927, -0.016596725210547447, -0.004319549538195133, 0.008539717644453049, 0.006598227191716433, 0.005657651461660862, -0.0052423784509301186, 0.01492143515497446, 0.009476743638515472, 0.006037431303411722, -0.020089276134967804, -0.02904781699180603, 0.021537408232688904, 0.003473031334578991, 0.016199197620153427, 0.007276151794940233, 0.020586185157299042, -0.0015528372023254633, -0.0019219687674194574, 0.0008882228867150843, -0.005338210612535477, 0.0021810708567500114, 2.6148669348913245e-05, -0.021934935823082924, -0.005803174339234829, 0.0101369209587574, 0.002220113528892398, -0.010016243904829025, 0.014417428523302078, 0.00575703289359808, -0.014474217779934406, -0.038900792598724365, -0.01351589523255825, 0.002834149869158864, 0.013906322419643402, 0.014992421492934227, -0.004834203980863094, 0.0013709334889426827, -0.012472388334572315, -0.009881368838250637, -0.0050578126683831215, 0.0018021785654127598, 0.017803501337766647, -0.017647329717874527, 0.0002256050647702068, -0.004855500068515539, 0.012685349211096764, 0.009171499870717525, 0.00917859934270382, 0.023851579055190086, -0.009277980774641037, 0.0027915576938539743, -0.041484713554382324, -0.016795488074421883, -0.02882065810263157, -0.03952547535300255, -0.012138750404119492, -0.011648940853774548, 0.006108418107032776, -0.005991289857774973, -0.02453305386006832, 0.014140579849481583, -0.00454670749604702, -0.024192316457629204, 0.0013851308031007648, 0.0005989514756947756, 0.008866257034242153, 0.012571769766509533, -0.0012032269733026624, -0.026265133172273636, -0.00242597539909184, -0.018967684358358383, 0.012429796159267426, 0.016454750671982765, -0.009192796424031258, -0.005036516580730677, -0.013118368573486805, 0.0032228026539087296, 0.006985105574131012, 0.012160046957433224, 0.016397960484027863, 0.003758753417059779, -0.009405757300555706, -0.0284799225628376, -0.01874052733182907, -0.02132444828748703, -0.010697717778384686, -0.002656682627275586, 0.02839473821222782, -0.020728157833218575, 0.006253940984606743, -0.004621243569999933, 0.01480785571038723, -0.006601776462048292, 0.01672450080513954, 0.01235171128064394, 0.009831678122282028, 0.0023816085886210203, 0.003032912965863943, -0.0035528915468603373, 0.0006703819963149726, 0.042705684900283813, 0.016483144834637642, 0.005118151661008596, 0.002981447381898761, 0.007666579447686672, 0.0015812319470569491, -0.01602882891893387, -0.0009361390257254243, 0.012678250670433044, -0.017590539529919624, -0.005047164857387543, 0.0103782769292593, 0.005554720759391785, -0.0033381562680006027, -0.00018778238154482096, 0.0034677074290812016, 0.0005119926063343883, -0.007474914658814669, -0.011294007301330566, 0.022729987278580666, 0.03114902786910534, 0.019734343513846397, 0.0004973515751771629, 0.013231948018074036, -0.023709606379270554, 0.0005084432777948678, 0.020955316722393036, 0.002718796255066991, -0.00788663886487484, -0.01407669112086296, -0.005930950865149498, 0.001267115119844675, -0.009959454648196697, 0.010782902128994465, -0.007240658160299063, 0.01234461273998022, -0.007872440852224827, 0.002798656467348337, -0.011521165259182453, -0.0007560098893009126, 0.014751066453754902, -0.005969993770122528, -0.006250391714274883, -0.013388118706643581, -0.004915839061141014, 0.02518613263964653, -0.02713117189705372, -0.009157302789390087, -0.004986825864762068, 0.0023674112744629383, -0.0026140904519706964, 0.006221997085958719, 0.010200809687376022, 0.008844960480928421, -0.00893724337220192, 0.0002444609417580068, -0.013416513800621033, 0.0018545313505455852, 0.00553342467173934, 0.001772896503098309, 0.029814474284648895, -0.0030080676078796387, -0.012131651863455772, 0.008497125469148159, -0.014360638335347176, 0.008220276795327663, 0.004660286474972963, -0.004078194033354521, 0.0038190921768546104, 0.01642635650932789, -0.026904014870524406, -0.013537190854549408, -0.007801454048603773, 0.021863948553800583, -0.0003793359501287341, -0.015744881704449654, -0.025484276935458183, -0.00523173063993454, 0.0017675724811851978, 0.015120198018848896, -0.021750370040535927, 0.0028802913147956133], "6de89262-d55e-4917-ba9b-944c56f0494a": [0.011986855417490005, 0.017000066116452217, -0.0031504379585385323, -0.0048721469938755035, -0.05312701687216759, -0.03397119790315628, 0.01123451255261898, 0.034231625497341156, -0.0346367321908474, 0.022772856056690216, 4.2132811358897015e-05, 0.020342208445072174, -0.00027105159824714065, -0.026852872222661972, -0.004727465566247702, 0.003707461291924119, -0.02994905412197113, 0.023134559392929077, 0.015611125156283379, -0.025015417486429214, 0.07390327006578445, -0.022657111287117004, -0.029601817950606346, 0.011118766851723194, 0.007129176985472441, -0.020429017022252083, -0.04027930647134781, 0.022179661318659782, -0.04461975023150444, -0.011791535653173923, 0.017911558970808983, 0.017303897067904472, -0.003862994024530053, -0.007877903059124947, 0.027012020349502563, -0.03426055982708931, -0.010749829933047295, 0.016204319894313812, -0.02585456892848015, -0.02149965986609459, -0.024928608909249306, 0.023091154173016548, 0.01621878705918789, 0.017549855634570122, -0.050378069281578064, 0.026404358446598053, 0.013643457554280758, 0.007653647102415562, 0.023988179862499237, 0.0064166211523115635, 0.02093540132045746, -0.014395801350474358, 0.0011185682378709316, 0.013375797308981419, 0.026606913655996323, 0.01702900230884552, -0.003826823551207781, 0.04039505124092102, 0.011538343504071236, -0.05726490542292595, 0.007451093290001154, -0.0031341612339019775, 0.031193314120173454, -0.01115493755787611, 0.014714100398123264, -0.022483492270112038, 0.003669482422992587, -0.011183873750269413, -0.06308110058307648, 0.00391001533716917, 0.00043427033233456314, 0.03243757411837578, -0.027156703174114227, 0.02271498367190361, 0.004137888550758362, 0.0210945513099432, 0.01817198656499386, 0.007646413054317236, 0.023177962750196457, 0.004354910925030708, -0.010062593035399914, 0.0016439426690340042, 0.027663087472319603, 0.011885578744113445, 0.0833943709731102, 0.03799334168434143, -0.015466444194316864, -0.025217970833182335, -0.029240114614367485, -0.04062654450535774, 0.0027851173654198647, -0.009780463762581348, -0.01718815229833126, -0.015104739926755428, -0.02832862176001072, 0.0016113893361762166, 0.05830661207437515, 0.007827265188097954, -0.0011728237150236964, -0.03987419977784157, -0.01658049039542675, 0.017651133239269257, -0.055615536868572235, 0.002620542189106345, 0.03498396649956703, 0.005917469970881939, 0.017463047057390213, -0.012587283737957478, -0.03428949788212776, 0.04210229218006134, 0.02219413034617901, -0.01658049039542675, 0.008188968524336815, 0.0011764408554881811, -0.041436757892370224, -0.04953891783952713, -0.010771531611680984, -0.030672460794448853, 0.0291388388723135, -0.044880177825689316, 0.032813746482133865, 0.006724068894982338, 0.013267286121845245, 0.007252156268805265, 0.0129417534917593, -0.008463863283395767, 0.00025251429178752005, -0.014620057307183743, 0.0008477427181787789, 0.0210945513099432, -0.020255398005247116, -0.002211817307397723, 0.023554135113954544, 0.026158401742577553, 0.00936812162399292, 0.014287290163338184, -0.0069230059161782265, 0.04754231497645378, -0.020067313686013222, 0.044475067406892776, -0.03851419314742088, -0.028791602700948715, -0.01568346656858921, 0.03585205599665642, 0.02136944606900215, 0.017506452277302742, -0.037240996956825256, 0.035128649324178696, -0.005834278184920549, 0.02145625464618206, -0.04409889876842499, -0.01840347610414028, 0.020660506561398506, 0.006007895804941654, 0.014815377071499825, 0.013166009448468685, 0.0030672461725771427, 0.020978806540369987, 0.00944769661873579, 0.007501731626689434, 0.0031847998034209013, -0.05659937113523483, -0.007769392337650061, 0.016725171357393265, 0.0537346787750721, 0.0032191616483032703, 0.050407007336616516, 0.0033439493272453547, -0.03313204646110535, 0.03735674172639847, 0.016320064663887024, 0.013332393020391464, 0.017737941816449165, -0.02621627412736416, -0.017202621325850487, -0.027966918423771858, 0.04354910925030708, 0.00407278211787343, 0.03564950078725815, -0.030006926506757736, -0.00131840945687145, -0.012507708743214607, -0.015625594183802605, 0.007494497578591108, 0.010272380895912647, 0.034029070287942886, 0.018229858949780464, 0.031887784600257874, -0.018953265622258186, -0.000947663327679038, 0.00511087104678154, -0.009809399954974651, 0.0030708631966263056, 0.027171170338988304, 0.0026983085554093122, -0.02918224222958088, -0.004250016529113054, 0.006062151398509741, 0.013563883490860462, 0.004213846288621426, 0.01088727731257677, -0.05639681592583656, -0.03235076740384102, 0.04051079601049423, -0.0351865217089653, 0.02003837749361992, -0.026201805099844933, -0.04621124640107155, -0.0059717255644500256, -0.032206084579229355, 0.012153238989412785, -0.017737941816449165, 0.006995346862822771, -0.002463201293721795, 0.005186828784644604, -0.02280179224908352, -0.004676826763898134, 0.03706737980246544, 0.018707307055592537, -0.028097132220864296, -0.03640184551477432, 0.006499812938272953, -0.009194504469633102, -0.036315035074949265, -0.05616532638669014, -0.022179661318659782, -0.01491665467619896, -0.0018492094241082668, -0.0341448150575161, -0.004720231518149376, 0.025999251753091812, 0.005790873896330595, -0.00033254121080972254, -0.041465695947408676, -0.02902309224009514, 0.015914956107735634, 0.03779078647494316, -0.01963326893746853, 0.003776184981688857, -0.016276659443974495, 0.005986193660646677, 0.037646107375621796, 0.006583004724234343, -0.011697492562234402, 0.0001983717957045883, 0.013889416120946407, -0.013317924924194813, 0.05995598062872887, 0.020183058455586433, -0.03307417407631874, -0.009216206148266792, 0.006315344013273716, -0.031627357006073, -0.008601310662925243, -0.026433294638991356, 0.05156445875763893, 0.015857083722949028, 0.003128735814243555, 0.0210945513099432, -0.04650060832500458, 0.0065938555635511875, -0.027257978916168213, 0.014128141105175018, -0.0016159105580300093, 0.050985731184482574, 0.0010932489531114697, 0.023597540333867073, -0.04603762924671173, -0.00524108437821269, 0.034520987421274185, -0.02406051941215992, -0.016392404213547707, -0.028878411278128624, -0.008405990898609161, -0.005884916987270117, -0.002495754510164261, -0.01416431088000536, 0.011357491835951805, 0.02860351651906967, 0.019864758476614952, -0.020790720358490944, 0.000285519752651453, 0.006058534607291222, 0.031800977885723114, 0.010496636852622032, -0.006666196510195732, -0.009585143998265266, 0.009946847334504128, -0.02706989459693432, -0.022613706067204475, -0.014019629918038845, -0.033710770308971405, 0.012493240647017956, 0.020298803225159645, 0.03640184551477432, 0.004405549261718988, -0.003380119800567627, -0.009295781143009663, -0.01088727731257677, 0.01184940803796053, -0.018794115632772446, -0.012283452786505222, 0.010004720650613308, -0.022613706067204475, 0.034115880727767944, -0.009556207805871964, 0.0402214340865612, 0.014236651360988617, -0.018562626093626022, 0.03938228264451027, 0.04933636263012886, -0.023394985124468803, -0.005827044136822224, 0.00918726995587349, 0.0023583071306347847, 0.008955779485404491, 0.004412783309817314, -0.024943076074123383, 0.0030274586752057076, -0.022975409403443336, -0.010981319472193718, 0.01493112277239561, -0.06348621100187302, 0.02361200749874115, 0.017043471336364746, -0.03023841604590416, 0.05911682918667793, -0.00962854828685522, -0.01621878705918789, -0.046269118785858154, -0.03313204646110535, -0.039150793105363846, -0.018823053687810898, -0.011697492562234402, -0.010641318745911121, -0.007841733284294605, -0.03634397312998772, -0.04977040737867355, -0.019474118947982788, -0.028863944113254547, -0.007501731626689434, 0.0070206657983362675, 0.02259923703968525, 0.019604332745075226, 0.009599612094461918, 0.009657484479248524, 0.027605215087532997, 0.006293641868978739, -0.05205637589097023, 0.011466003023087978, 0.000788061588536948, -0.01954646036028862, 0.030006926506757736, -0.012117069214582443, 0.007121942937374115, -0.024639245122671127, -0.011205576360225677, -0.014815377071499825, 0.017766878008842468, 0.006792792584747076, 0.012565581128001213, -0.018302200362086296, -0.009295781143009663, -0.01339026540517807, -0.01304303016513586, 0.008384288288652897, 0.023915838450193405, 0.002884585876017809, 0.03738567978143692, 0.016276659443974495, -0.03434737026691437, 0.0045538474805653095, 0.027373725548386574, -0.012818774208426476, -0.039758455008268356, -0.020096249878406525, 0.028183940798044205, 0.01995156705379486, 0.012037494219839573, 0.028068196028470993, 0.02819840796291828, -0.008463863283395767, -0.020718378946185112, -0.02251242846250534, 0.05003083497285843, 0.002595223020762205, 0.010713659226894379, -0.035331204533576965, -0.011639620177447796, -0.019850291311740875, -0.01820092275738716, 0.03946909308433533, -0.03454992175102234, -0.03197459504008293, -0.030093735083937645, 0.005157892592251301, -0.007733222097158432, -0.012131537310779095, -0.007754924241453409, -0.03657546266913414, 0.0069121550768613815, -0.01414260920137167, 0.015799211338162422, 0.0021141571924090385, 0.027257978916168213, -0.02873373031616211, -0.0016330914804711938, 0.008116628043353558, -0.0026187337934970856, 0.011552811600267887, 0.006206832826137543, -0.003204693552106619, 0.03538907691836357, -0.000866279995534569, 0.04250740259885788, -0.019575396552681923, 0.014012395404279232, 0.037327807396650314, -0.04884444922208786, -0.00622853497043252, 0.018345603719353676, 0.033710770308971405, 0.004246399737894535, 0.025058822706341743, -0.01142259780317545, 0.028068196028470993, 0.04733975976705551, 0.01552431657910347, -0.031511612236499786, 0.008948545902967453, -0.015914956107735634, 0.0068434313870966434, 0.009997486136853695, 0.0026259678415954113, -0.02584010176360607, -0.0035012904554605484, -0.0036242695059627295, -0.047686997801065445, 0.010937915183603764, -0.019401779398322105, 0.020834123715758324, 0.009860038757324219, 0.005975342821329832, 0.006431089248508215, -0.019155820831656456, -0.03897717595100403, -0.009216206148266792, 0.006677047349512577, 0.01723155751824379, 0.005157892592251301, -0.0014287290396168828, 0.03278480842709541, -0.04380953311920166, 0.015509848482906818, -0.011357491835951805, 0.0029080966487526894, 0.003580865217372775, -0.020544761791825294, 0.014431972056627274, -0.018707307055592537, -0.03579418361186981, -0.016927726566791534, 0.021846894174814224, 0.00207798695191741, -0.013071966357529163, -0.04103165119886398, -0.0017958581447601318, 0.011820471845567226, 0.003295119386166334, -0.005950023420155048, 0.010554509237408638, 0.03836951404809952, -0.02121029607951641, 0.00290086236782372, -0.021514127030968666, -0.007042367942631245, -0.005139807239174843, 0.02320689894258976, 0.023105623200535774, -0.015003463253378868, -0.013628989458084106, -0.0497414730489254, -0.018012836575508118, -0.009737059473991394, 0.023669879883527756, 0.0062032160349190235, -0.012580049224197865, -0.005367680918425322, -0.01747751608490944, -0.006134492345154285, 0.03978738933801651, -0.019155820831656456, -9.741976100485772e-06, 0.011393661610782146, -0.01186387613415718, -0.030875016003847122, -0.015336230397224426, -0.0054074679501354694, -0.026563508436083794, -0.03935334458947182, 0.02019752562046051, -0.03136693313717842, 0.016609426587820053, 0.001792241120710969, 0.015090271830558777, 0.018750712275505066, -0.028010323643684387, 0.0008468384621664882, 0.007791094481945038, 0.005128956399857998, -0.010945149697363377, 0.006658962462097406, -0.009910677559673786, -0.010308551602065563, -0.0034705456346273422, 0.027460534125566483, -0.027764365077018738, -0.009802166372537613, 0.019879227504134178, -0.01934390515089035, 0.010532807558774948, -0.016797512769699097, -0.021600935608148575, 0.00285022403113544, -0.004622571170330048, -0.016884321346879005, 0.012102601118385792, 0.0019875611178576946, 0.01288388017565012, -0.025102226063609123, -0.0014296332374215126, 0.006347897462546825, -0.005342361517250538, 0.0018754329066723585, 0.02105114609003067, -0.03695163503289223, -0.007067687343806028, 0.020906465128064156, 0.012348559685051441, 0.04294144734740257, -0.010677488520741463, 0.02352519892156124, -0.0017470282036811113, -0.0068940697237849236, -0.002624159213155508, 0.026910744607448578, -0.01046046707779169, 0.015495380386710167, -0.012659624218940735, 0.003971504978835583, -0.030180543661117554, 0.019488587975502014, -0.02466818131506443, 0.009925145655870438, 0.003477779682725668, -0.056425753980875015, -0.008926843293011189, -0.023380517959594727, -0.03084607794880867, -0.016696235164999962, 0.008651948533952236, 0.020125186070799828, 0.02942820079624653, 0.0050493814051151276, -0.023192431777715683, 0.013708564452826977, -0.02401711605489254, 0.010424296371638775, -0.005356829613447189, 0.0037002272438257933, 0.03356609120965004, 0.0006795505760237575, 0.048294659703969955, 0.026520105078816414, -0.014157077297568321, 0.04363591596484184, -0.0029677776619791985, 0.027851173654198647, -0.025796696543693542, -0.003985973075032234, 0.03941122069954872, -0.04461975023150444, 0.005425553303211927, 0.006637260317802429, 0.016103042289614677, 0.01537963468581438, -0.046471673995256424, -0.015741338953375816, -0.02093540132045746, 0.024190733209252357, 0.008304713293910027, 0.015220485627651215, -0.0024414989165961742, 0.007017049007117748, -0.04664529114961624, 0.010185572318732738, 0.013542180880904198, -0.010438764467835426, -1.6559240975766443e-05, 0.004051079973578453, 0.017853686586022377, 0.024335414171218872, 0.016276659443974495, -0.03055671602487564, -0.015032399445772171, 0.01673964038491249, -0.006955559365451336, 0.005074700806289911, 0.007979180663824081, 0.021022209897637367, 0.02116689272224903, 0.012797071598470211, -0.005031296517699957, 0.002984054386615753, 0.030990760773420334, 0.019864758476614952, 0.02136944606900215, 0.027171170338988304, 0.01608857326209545, -0.015090271830558777, 0.020414547994732857, -0.03498396649956703, 0.05113041400909424, 0.003116076113656163, 0.004792571999132633, -0.009845570661127567, -0.006261088419705629, -0.020978806540369987, -0.0238579660654068, 0.003380119800567627, -0.009816634468734264, -0.011943451128900051, 0.012167707085609436, -0.03084607794880867, 0.038948237895965576, -0.036025673151016235, 0.0086736511439085, -0.0024740523658692837, 0.0056895967572927475, -0.007668115198612213, -0.026650317013263702, 0.00750896567478776, -0.007404071744531393, 0.008586842566728592, 4.250016718287952e-05, 0.006561302579939365, -0.017781347036361694, 0.0035682055167853832, 0.020573697984218597, 0.015336230397224426, -0.041349951177835464, 0.010091529227793217, 0.019966036081314087, 0.026794999837875366, -0.0011303236242383718, -0.010149401612579823, 0.003405438968911767, -0.006250237580388784, -0.0006081141182221472, -0.011277916841208935, 0.030614588409662247, -0.025261376053094864, -0.006673430558294058, 0.02076178416609764, 0.01666729897260666, 0.0173183660954237, 0.016030700877308846, -0.009397057816386223, 0.019401779398322105, -0.0074004544876515865, 0.004514060448855162, -0.02113795466721058, -0.0009775038342922926, 0.008926843293011189, 0.002486711833626032, -0.011625152081251144, 0.010134933516383171, -0.01577027514576912, 0.006159811280667782, -0.011003022082149982, -0.020674975588917732, -0.023554135113954544, -0.045777201652526855, 0.012095366604626179, 0.03125118836760521, -0.00311426748521626, -0.014793675392866135, 0.007494497578591108, -0.019401779398322105, -0.011017490178346634, 0.0029279901646077633, -0.011972387321293354, -0.005649809259921312, 0.01689879037439823, -0.008384288288652897, -0.004864912945777178, -0.00481427414342761, -0.011126001365482807, 0.044156771153211594, -0.03677801787853241, -0.03527333214879036, -0.03356609120965004, 0.003906398545950651, -0.02909543365240097, 0.03044097125530243, 0.038253769278526306, -0.008724289946258068, -0.03405800461769104, 0.008890673518180847, -0.01658049039542675, 0.01396175753325224, 0.02377115748822689, -0.002372775226831436, 0.019937099888920784, 0.0031016080174595118, -0.0025717122480273247, -0.011523875407874584, 0.008174500428140163, -0.010033656843006611, 0.017361771315336227, -0.01922816038131714, 0.021977107971906662, -0.022324342280626297, -0.02880607172846794, -0.022165194153785706, 0.01450431253761053, 0.014207715168595314, 0.002177455462515354, 0.011538343504071236, -0.005201296880841255, 0.02743159793317318, 0.006138109136372805, -0.0037653339095413685, 0.003895547240972519, 0.007190666627138853, -0.012522176839411259, 0.006091087590903044, -0.0014359630877152085, 0.037125252187252045, -0.03197459504008293, -0.00024754085461609066, -0.01779581420123577, 0.029804373160004616, -0.016681768000125885, -0.0050493814051151276, 0.0009973975829780102, 0.012818774208426476, -0.016262192279100418, -0.00433682557195425, 0.01072812732309103, 0.05506574735045433, -0.038051214069128036, 0.03530226647853851, 0.03287161886692047, 0.008528970181941986, 0.0020888380240648985, 0.022787323221564293, 0.028097132220864296, -0.0027326704002916813, 0.04059760645031929, 0.009389824233949184, -0.014026863500475883, 0.014714100398123264, 0.006492578890174627, -0.0114370658993721, -0.005447255447506905, -0.012797071598470211, 0.003192033851519227, 0.02819840796291828, 0.004137888550758362, 0.02963075414299965, 0.014735803008079529, 0.02136944606900215, 0.037240996956825256, 0.00234203040599823, 7.16625145287253e-05, 0.017969433218240738, 0.005374914966523647, -0.03952696546912193, -0.023583071306347847, -0.009360888041555882, -0.025738824158906937, 0.014236651360988617, -0.017014535143971443, 0.0025319247506558895, -0.01210983470082283, 0.02974650077521801, -0.011241746135056019, -0.034926094114780426, 0.010337487794458866, -0.005877682939171791, 0.0201107170432806, 0.009274079464375973, -0.008449395187199116, 0.01517708133906126, -0.004188527353107929, -0.004875763785094023, -0.03886143118143082, -0.027012020349502563, -0.019242629408836365, -0.00271820230409503, -0.025999251753091812, 0.043346554040908813, 0.03284268081188202, 0.023264773190021515, -0.00788513757288456, -0.02019752562046051, -0.017159216105937958, 0.01691325753927231, -0.0032101189717650414, -0.018837520852684975, -0.010004720650613308, -0.02259923703968525, 0.021080082282423973, -0.006326195318251848, 0.011343023739755154, -0.0253915898501873, 0.003125118790194392, -0.0004996030475012958, -0.018620498478412628, 0.016305595636367798, 0.016450276598334312, 0.010409828275442123, 0.009049822576344013, -0.036922696977853775, 0.007215986028313637, 0.040134627372026443, 0.009259611368179321, 0.013440904207527637, 0.011248980648815632, -0.004586400929838419, -0.010048124939203262, -0.013180477544665337, 0.020906465128064156, -0.0022172427270561457, 0.03417375311255455, -0.013260052539408207, -0.018620498478412628, -0.05043594166636467, 0.032524384558200836, 0.010077061131596565, -0.048092104494571686, -0.012153238989412785, -0.008796630427241325, 0.0006451887311413884, -0.008355352096259594, 0.02312009036540985, 0.01707240752875805, 0.04389634355902672, 0.02848777174949646, 0.0007392316474579275, -0.027243511751294136, 0.013231116347014904, 0.017347302287817, -0.031916722655296326, 0.048584021627902985, -0.007241304963827133, 0.008174500428140163, 0.018316667526960373, 0.004843210335820913, 0.035012904554605484, -0.0007292847731150687, -0.015234953723847866, -0.0016837300499901175, -0.011806003749370575, 0.0007410401594825089, 0.007841733284294605, 0.006058534607291222, 0.010388125665485859, 0.01142259780317545, 0.0012560156174004078, -0.0007998169749043882, -0.011552811600267887, 0.012775368988513947, -0.019879227504134178, -0.019083479419350624, 0.003307779086753726, 0.015307294204831123, -0.021224765107035637, -0.021080082282423973, -0.020819656550884247, 0.018360072746872902, 0.02502988651394844, -0.003870228072628379, -0.028632452711462975, 0.018157517537474632, 0.016696235164999962, -0.004760018549859524, 0.01160344947129488, 0.01759326085448265, -0.0026892658788710833, 0.017622197046875954, -0.014236651360988617, -0.013759203255176544, -0.011545577086508274, -0.03313204646110535, -0.0008147372282110155, -0.020949870347976685, 0.0183311365544796, -0.020747315138578415, 0.008991950191557407, -0.027156703174114227, -0.03075926937162876, 0.010279614478349686, 0.0035917162895202637, -0.050407007336616516, 0.019401779398322105, -0.009107694961130619, 0.006080236751586199, 0.0008242319454438984, 0.010062593035399914, 0.03116437792778015, -0.014410269446671009, -0.011263448745012283, 0.036025673151016235, 0.013296222314238548, 0.0016330914804711938, -0.003481396706774831, -0.02369881607592106, -0.012196644209325314, 0.027402661740779877, -0.005675128661096096, 0.02340945415198803, -0.008688119240105152, 0.021470723673701286, -0.022700514644384384, -0.0041740587912499905, 0.007856201380491257, 0.008319181390106678, 0.013346861116588116, -0.00881833303719759, 0.005349595565348864, 0.0216154046356678, -0.015697933733463287, 0.05468957871198654, -0.012203877791762352, -0.0059717255644500256, -0.002734478795900941, -0.05596277490258217, -0.024740522727370262, -0.027127766981720924, -0.0068434313870966434, 0.029529478400945663, -0.026274146512150764, -0.01666729897260666, -0.01184940803796053, -0.019922630861401558, 0.025594143196940422, -0.0035682055167853832, -0.010554509237408638, 0.005599170923233032, 0.03686482459306717, 0.02702648937702179, -0.0006207737023942173, 0.00011958823597524315, 0.025709887966513634, 0.0018591562984511256, -0.011277916841208935, 0.007892371155321598, 0.01983582228422165, 0.003725546645000577, -0.014757504686713219, -0.027446065098047256, 0.014077502302825451, -0.016305595636367798, -0.01517708133906126, -0.038022276014089584, 0.009910677559673786, 0.014786440879106522, 0.0019911781419068575, -0.008297479711472988, -0.02597031556069851, 0.002627776237204671, -0.0008292053826153278, 0.014439205639064312, -0.007313645910471678, -0.0396716445684433, -0.0019803268369287252, -0.015495380386710167, 0.01251494325697422, 0.031395867466926575, -0.03287161886692047, -0.008268543519079685, -0.009194504469633102, 0.006333429366350174, 0.009172801859676838, -0.0021014977246522903, 0.02453796938061714, -0.029355859383940697, 0.009237908758223057, 0.025420526042580605, -0.013477073982357979, -0.014540482312440872, -0.008123861625790596, 0.014518780633807182, -0.01954646036028862, -0.019821355119347572, 0.00040827287011779845, 0.006232152227312326, -0.039961010217666626, -0.008290245197713375, -0.012558347545564175, -0.011646854691207409, 0.06788451969623566, 0.013860479928553104, 0.021629871800541878, -0.0019296885002404451, 0.0018627733225002885, -0.00274352147243917, 0.01646474562585354, -0.013990693725645542, -0.04409889876842499, 0.011531108990311623, -0.01414260920137167, -0.011654088273644447, 0.0321192741394043, 0.008991950191557407, -0.06713218241930008, -0.0190979465842247, 0.021022209897637367, -0.015697933733463287, -0.021123487502336502, 0.006847048178315163, 0.004904699977487326, -0.010098762810230255, 0.004362144973129034, 0.008832801133394241, -0.0009693655301816761, -0.007396837696433067, 0.014475376345217228, -0.026404358446598053, -0.013506010174751282, 0.012326857075095177, -0.0046587418764829636, 0.016884321346879005, -0.03808014839887619, 0.006926623173058033, -0.05616532638669014, -0.0002780595968943089, -0.00833364948630333, 0.0070098149590194225, 0.005725766997784376, 0.007045985199511051, 0.012182175181806087, 0.0036929931957274675, -0.0005158797139301896, -0.004774486646056175, -0.00910046137869358, -0.0022208597511053085, 0.02377115748822689, 0.024393288418650627, 0.0020834123715758324, 0.012182175181806087, -0.008565139956772327, -0.0029388414695858955, 0.003682142123579979, -0.013006859458982944, 0.0059717255644500256, -0.009180036373436451, 0.04473549500107765, -0.008275777101516724, 0.006123641040176153, 0.061055559664964676, -0.03779078647494316, 0.03243757411837578, -0.018229858949780464, -0.010742595419287682, 0.007281092461198568, 0.02044348418712616, -0.011060894466936588, 0.004221080336719751, 0.01637793704867363, -0.002674797782674432, 0.018417945131659508, -0.008152797818183899, 0.03446311503648758, 0.017622197046875954, 0.014728568494319916, 0.04331761598587036, -0.0016457511810585856, -0.010236210189759731, -0.01601623371243477, -0.028878411278128624, -0.013694096356630325, -0.010366423986852169, -0.0021901149302721024, 0.014280056580901146, 0.01974901370704174, 0.0020038376096636057, 0.011357491835951805, -0.018620498478412628, 0.00242341379635036, 0.007935776375234127, 0.020747315138578415, -0.022903067991137505, 0.006803643889725208, 0.0021521360613405704, 0.03585205599665642, -0.004528528545051813, 0.003938951529562473, 0.012182175181806087, -0.004987891763448715, 0.018548158928751945, 0.019155820831656456, 0.038948237895965576, 0.016811981797218323, -0.0002861979301087558, -0.0042789531871676445, -0.010098762810230255, 0.011798770166933537, 0.024089455604553223, 0.006637260317802429, -0.004832359496504068, 0.04140782356262207, -0.011357491835951805, 0.006188747938722372, -0.008362585678696632, -0.016855385154485703, -0.006720452103763819, 0.014988995157182217, -0.015611125156283379, -0.03064352460205555, -0.023091154173016548, -0.008080457337200642, -0.008405990898609161, 0.0012325048446655273, 0.00548704294487834, 0.027214575558900833, 0.007465561386197805, 0.02873373031616211, 0.029312456026673317, -0.009657484479248524, 0.051188286393880844, 0.0006890452932566404, -0.016840917989611626, 0.002428839448839426, -0.000590028939768672, 0.015220485627651215, -0.012059196829795837, 0.0025500101037323475, -0.0178392194211483, -0.005208530928939581, -0.005248318426311016, 0.016754109412431717, -0.0009232482989318669, -0.015943892300128937, -0.02747500129044056, -0.026404358446598053, -0.022700514644384384, -0.01844688132405281, -0.014005161821842194, -0.021716680377721786, 0.012334090657532215, -0.007056836504489183, -0.003056395100429654, -0.03437630459666252, 0.005237467586994171, 0.000922796200029552, 0.0074004544876515865, -0.008688119240105152, -0.028111599385738373, -0.009064290672540665, 0.00034067954402416945, -0.0022516045719385147, 0.0013600053498521447, 0.0051144883036613464, 0.01743411086499691, -0.00686875032261014, 0.013780904933810234, -0.006004279013723135, 0.005327893421053886, -0.01072812732309103, 0.019401779398322105, 0.02100774273276329, -0.0371541902422905, 0.014699632301926613, -0.046269118785858154, 0.008225138299167156, 0.005798107944428921, 0.007429391145706177, 0.0002746686222963035, 0.010011954233050346, 0.0030238416511565447, -0.00859407614916563, -0.01452601421624422, 0.013809842057526112, -0.019372841343283653, -0.0016231447225436568, -0.011994089931249619, 0.018143050372600555, -0.015958361327648163, -0.019155820831656456, -0.013954523019492626, -0.01270302850753069, 0.013296222314238548, 0.014070267789065838, -0.013014093972742558, -0.022932006046175957, 0.0006619174964725971, 0.0281260684132576, -0.008651948533952236, 0.0050964029505848885, -0.011986855417490005, -0.032292891293764114, -0.006036832462996244, -0.005251935683190823, -0.006550451274961233, 0.00502767926082015, 0.004235548432916403, -0.023438390344381332, -0.013694096356630325, 0.02129710465669632, -0.013100902549922466, 0.007660881150513887, -0.0015028782654553652, 0.007914073765277863, -0.012565581128001213, -0.016508150845766068, 0.007827265188097954, -0.009968549944460392, 0.02731585130095482, 0.026274146512150764, 0.023684348911046982, 0.01125621423125267, -0.003090756945312023, -0.01995156705379486, 0.00612725829705596, 0.007993648760020733, 0.03182991221547127, -0.0033005448058247566, 0.015987297520041466, 0.004130654502660036, 0.001333781867288053, 0.03128012269735336, -0.007950244471430779, -0.01779581420123577, -0.03515758365392685, -0.008977482095360756, -0.012601751834154129, 0.009483867324888706, 0.0015960169257596135, -0.011357491835951805, -0.002730861771851778, -0.017506452277302742, 0.009983018040657043, 0.02116689272224903, -0.02442222461104393, -0.01577027514576912, 0.008319181390106678, 0.0018275071633979678, -0.0071870493702590466, 0.0003354800574015826, -0.01763666607439518, 0.0013455372536554933, -0.013665160164237022, -0.01056897733360529, -0.016696235164999962, 0.011646854691207409, -0.006025981158018112, -0.009122163988649845, -0.041552502661943436, 0.00796471256762743, 0.013542180880904198, 0.0011701110051944852, -0.05584703013300896, -0.0034705456346273422, 0.003953419625759125, 0.0007577689248137176, 0.01849028468132019, -0.01844688132405281, -0.014019629918038845, 0.004618954379111528, -0.00476363580673933, 0.013831543736159801, -0.023235836997628212, 0.028835007920861244, 0.002056284574791789, -0.033710770308971405, -0.034607794135808945, -0.0038087384309619665, 0.006897686515003443, 0.026997553184628487, 0.015394102782011032, -0.018345603719353676, -0.020125186070799828, 0.0258835069835186, 0.005534064490348101, -0.0034615029580891132, -0.018229858949780464, -0.029471606016159058, 0.028270749375224113, -0.015828147530555725, 0.027373725548386574, 0.004546613432466984, 0.0019947951659560204, 0.00987450685352087, -0.0168264489620924, 0.0068072606809437275, 0.00961408019065857, 0.006756622344255447, -0.02788010984659195, 0.03640184551477432, -0.015857083722949028, -0.017535388469696045, 0.004893849138170481, 0.003148629330098629, -0.024046052247285843, -0.009462164714932442, 0.0009521846077404916, -0.019314968958497047, 0.010634084232151508, -0.007943009957671165, -0.010764298029243946, 0.008037053048610687, -0.029659690335392952, 0.003365651471540332, 0.0091655682772398, 0.003117884509265423, -0.008811098523437977, -0.007060453295707703, -0.007610242813825607, 0.005052998661994934, -0.002211817307397723, 0.016797512769699097, -0.0028665007557719946, 0.026722658425569534, -0.007812797091901302, 0.003230012720450759, 0.005338744260370731, 0.03437630459666252, -0.009252376854419708, 0.01759326085448265, -0.025000950321555138, -0.014258353970944881, -0.002338413381949067, 0.02064603939652443, 0.015032399445772171, 0.0026549040339887142, -0.028617985546588898, -0.04328868165612221, -0.03182991221547127, -0.014019629918038845, -0.0002821287780534476, 0.008471096865832806, 0.019401779398322105, 0.00460086902603507, -0.0007229549810290337, 0.007378752343356609, 0.021398382261395454, -0.009136632084846497, -0.025087758898735046, -0.007085772696882486, -0.011921749450266361, -0.017709005624055862, -0.01030131708830595, -0.028256282210350037, -0.017361771315336227, 0.028227346017956734, -0.011777067556977272, 0.021890299394726753, 0.005682362709194422, -0.04823678731918335, -0.014055799692869186, 0.015234953723847866, -0.007111091632395983, 0.024798395112156868, -0.0023528817109763622, -0.015148145146667957, 0.02527584508061409, 0.00026766062364913523, 0.004354910925030708, 0.021760085597634315, -0.002307668561115861, -0.01613197848200798, -0.0037870362866669893, -0.00839152280241251, 0.00035040031070820987, -0.0024378818925470114, 0.017332833260297775, -0.0008653757395222783, 0.000599523657001555, 0.024697119370102882, -0.0004365309723652899, 0.015191549435257912, 0.0377039797604084, 0.011198341846466064, -0.021962638944387436, -0.011900046840310097, 0.00857237447053194, 0.010272380895912647, 0.0005561191937886178, 0.0023872433230280876, 0.032495446503162384, 0.014272822067141533, 0.03272693604230881, -0.0351865217089653, -0.02686733938753605, -0.014793675392866135, -0.007783860433846712, 0.013621755875647068, 0.01658049039542675, 0.008745991624891758, 0.027156703174114227, 0.003132352838292718, 0.006322578061372042, 0.012688560411334038, -0.043057192116975784, -0.01399792730808258, 0.004372995812445879, 0.0031938422471284866, 0.018461348488926888, -0.006687898654490709, 0.012645156122744083, 0.006720452103763819, 0.001682825735770166, -0.004119803663343191, -0.015914956107735634, -0.0068072606809437275, 0.0028863942716270685, -0.020776251330971718, -0.01168302446603775, -0.02316349558532238, 0.0007234070799313486, -0.009237908758223057, 0.022049449384212494, 0.021890299394726753, -0.003179374150931835, -0.0016575065674260259, -0.008304713293910027, 0.01115493755787611, 0.01588601991534233, -0.004394697956740856, 0.005132573191076517, -0.031309060752391815, 0.029688628390431404, -0.038427386432886124, 0.0002669824461918324, -0.007494497578591108, -0.0071870493702590466, -0.00029297987930476665, 0.02068944275379181, -0.007530667819082737, 0.04149463027715683, -0.01970561034977436, 0.022280938923358917, -0.00463342247530818, -0.04453293979167938, -0.03258225694298744, -0.0022986261174082756, 0.015538784675300121, -0.031222250312566757, -0.00630810996517539, 0.01621878705918789, 0.012312388978898525, 0.015582188963890076, -0.01527835801243782, 0.00023646370391361415, -0.002162987133488059, -0.012305154465138912, -0.00961408019065857, -0.020096249878406525, -0.021354977041482925, 0.027692023664712906, -0.014113673008978367, -0.0034452262334525585, -0.002815862186253071, -0.0013111754087731242, -0.008283011615276337, 0.03718312457203865, -0.02417626604437828, 0.015857083722949028, 0.058451294898986816, -0.03304523602128029, 0.024349883198738098, -0.0183311365544796, -0.009454931132495403, -0.03767504170536995, -0.023742221295833588, -0.00851450115442276, 0.006832580082118511, -0.008876205421984196, 0.0010615999344736338, -0.03816695883870125, 0.01493112277239561, -0.010800467804074287, 0.037530358880758286, 0.03550482168793678, -8.341787906829268e-05, -0.0014965484151616693, 0.03946909308433533, 0.01752091944217682, -0.0021955405827611685, 0.0173183660954237, -0.013354094699025154, 0.013686862774193287, -0.003474162658676505, 0.025449462234973907, 0.015857083722949028, -0.012898348271846771, -0.01934390515089035, 0.01229068636894226, 0.004908317234367132, 0.0006067577050998807, 0.015914956107735634, -0.03145373985171318, -0.0020508591551333666, 0.004908317234367132, -0.02540605701506138, 0.0016240489203482866, -0.02105114609003067, -0.014048566110432148, -0.012319622561335564, -0.006510663777589798, 0.013194945640861988, 0.005331510212272406, -0.0008165457402355969, 0.013411968015134335, 0.028950752690434456, -0.03237970173358917, -0.015755806118249893, 0.019372841343283653, 0.014974527060985565, 0.008152797818183899, -0.012153238989412785, -0.011451533995568752, -0.008420458994805813, 0.016450276598334312, -0.007935776375234127, 0.020573697984218597, -0.020906465128064156, 0.021239232271909714, 0.020790720358490944, -0.017057940363883972, -0.013498776592314243, -2.208369733125437e-05, 0.02986224554479122, -0.010474935173988342, 0.0006044970359653234, -0.02453796938061714, -0.027373725548386574, -0.004524911288172007, 0.011010255664587021, -0.00681811198592186, 0.008991950191557407, 0.011126001365482807, -0.0008373437449336052, -0.00881833303719759, -0.0014323460636660457, 0.012319622561335564, -0.0006049491930752993, 0.0005669703241437674, -0.004904699977487326, -0.0011529300827533007, 0.019980505108833313, -0.014873250387609005, -0.013831543736159801, 0.014786440879106522, -0.006901303771883249, -0.010800467804074287, -0.0019061777275055647, -0.020269867032766342, -0.003506715875118971, 0.008268543519079685, 0.0034850137308239937, 0.010778766125440598, -0.02051582559943199, -0.0004679539706557989, -0.004184910096228123, -0.00647087674587965, -0.007624710910022259, 0.020139653235673904, 0.005367680918425322, 0.011596215888857841, -0.008500033058226109, -0.007429391145706177, -0.006669813301414251, -0.005331510212272406, 0.0012171324342489243, 0.011343023739755154, -0.024031583219766617, 0.002846607007086277, -0.013585585169494152, 0.06493302434682846, 0.0026096911169588566, 0.0053966171108186245, 0.008955779485404491, 0.0004586853028740734, -0.021803490817546844, -0.003694801824167371, 0.008861737325787544, 0.038051214069128036, 0.006915771868079901, -0.012522176839411259, -0.009375356137752533, 0.009454931132495403, 0.009556207805871964, -0.025955846533179283, -0.0037327806930989027, 0.011806003749370575, 0.02576776035130024, 0.005888533778488636, 0.00920173805207014, -0.0026223508175462484, -0.004224697593599558, -0.021629871800541878, 0.015046867541968822, -0.006174279842525721, 0.012992391362786293, 0.011574513278901577, 0.022700514644384384, 0.008181734010577202, 0.025984782725572586, 0.0045538474805653095, -0.0016113893361762166, -0.005056615453213453, -0.0158136785030365, -0.01012046542018652, 0.014873250387609005, 0.001064312644302845, 0.02084859274327755, -0.003891930216923356, 0.006908537819981575, 0.011220044456422329, -0.020125186070799828, 0.028661388903856277, 0.026462232694029808, -0.01788262277841568, 0.005519596394151449, 0.004239165689796209, -0.006810877937823534, 0.010670254938304424, -0.00016762698942329735, -0.007971946150064468, -0.01396175753325224, 0.010185572318732738, 0.013672394677996635, 0.008868970908224583, -0.0004591374599840492, 0.021181359887123108, 0.002559052547439933, -0.012493240647017956, -0.013932820409536362, -0.013925586827099323, -0.007183432579040527, -0.0030401183757930994, -0.03446311503648758, -0.0019206458237022161, -0.0023872433230280876, 0.0009928762447088957, -0.008557906374335289, 0.009042588993906975, -0.0006926623173058033, 0.003439800813794136, -0.005968108773231506, 0.020327739417552948, -0.011957919225096703, -0.017000066116452217, 0.02356860414147377, 0.004463421646505594, 0.022425619885325432, 0.039961010217666626, 0.0023293709382414818, 0.0005190445808693767, 0.003054586471989751, -0.01820092275738716, -0.006253854371607304, 0.0012261749943718314, -0.0025373504031449556, 0.025999251753091812, -0.025492865592241287, 0.00428618723526597, -0.03044097125530243, -0.02084859274327755, -0.017868155613541603, 0.0035229925997555256, 0.011089830659329891, -0.00012964812049176544, 0.01414260920137167, -0.0024812864139676094, -0.005306191276758909, 0.016522618010640144, -0.019213693216443062, -0.014533248730003834, 0.0027869257610291243, -0.018823053687810898, 0.0021449020132422447, 0.016450276598334312, 0.003020224627107382, 0.011248980648815632, 0.0012912816600874066, -0.01691325753927231, 0.020978806540369987, -0.0008197106653824449, -0.006872367579489946, -0.011017490178346634, 0.01608857326209545, -0.04493805021047592, -0.005071084015071392, 0.0036622483748942614, 0.008138329721987247, -0.01450431253761053, -0.012608985416591167, -0.0015969211235642433, -0.005816193297505379, -0.023221367970108986, -0.00506023271009326, 0.004521294496953487, 0.0019839440938085318, -0.0020816039759665728, -0.005490659736096859, 0.0033095874823629856, -0.016262192279100418, 0.016074106097221375, 0.014308992773294449, 0.01714474894106388, -0.025449462234973907, 0.024335414171218872, 0.007270241156220436, -0.011560045182704926, 0.0011936216615140438, 0.009035354480147362, -0.03023841604590416, 0.022772856056690216, 0.013809842057526112, 0.004618954379111528, 0.006901303771883249, 0.009700889699161053, 0.004495975095778704, -0.01707240752875805, -0.03466566652059555, 0.020284336060285568, -0.01779581420123577, 0.005157892592251301, -0.02918224222958088, -0.009071525186300278, -0.009838336147367954, -0.008384288288652897, 0.00391001533716917, -0.02706989459693432, 0.03434737026691437, -0.02154306322336197, 0.005577468778938055, 0.0017298472812399268, -0.014815377071499825, -0.015321762301027775, 0.008702587336301804, -0.0022895834408700466, 0.01391835231333971, -0.013838778249919415, 0.023438390344381332, 0.018316667526960373, -0.004532145336270332, -0.010069826617836952, -0.003938951529562473, 0.019213693216443062, -0.019980505108833313, -0.012334090657532215, -0.0035537374205887318, 0.0039787390269339085, 0.00954897329211235, -0.02125370129942894, 0.017622197046875954, 0.007053219247609377, 7.544909749412909e-05, 0.0163345318287611, -0.0009928762447088957, -0.017911558970808983, -0.010525573045015335, 0.014743036590516567, -0.01012046542018652, -0.018634967505931854, -0.004955338779836893, -0.012370261363685131, 0.017159216105937958, -0.00022843839542474598, -0.004177676048129797, -0.01808517798781395, -0.0019188373116776347, 0.014699632301926613, 0.01001918874680996, 0.028617985546588898, -0.0018067092169076204, 0.0030997993890196085, 0.0013473457656800747, 0.00961408019065857, 0.0008296575397253036, 0.010655786842107773, -0.025941379368305206, -0.028704794123768806, -0.014887718483805656, -0.01869283989071846, -0.007299177814275026, -0.025608612224459648, -0.013346861116588116, 0.0040474627166986465, 0.008102159947156906, -0.011784302070736885, 0.00032756777363829315, 0.010496636852622032, -0.015828147530555725, 0.011126001365482807, -0.003891930216923356, 0.006724068894982338, 0.0019423480844125152, 0.004036611411720514, -0.017419643700122833, -0.015900488942861557, 0.007451093290001154, 0.0016520809149369597, 0.019286032766103745, 0.0033945878967642784, -0.007971946150064468, 0.008579608052968979, -0.012666858732700348, -0.013802607543766499, 0.00920173805207014, -0.015075803734362125, 0.03353715315461159, 0.012015791609883308, -0.00034474869607947767, 0.01694219373166561, 0.005335127469152212, 0.0077476901933550835, 0.006076619494706392, -0.004391081165522337, -0.017969433218240738, -0.003580865217372775, -0.025869037955999374, -0.0031504379585385323, 0.002987671410664916, 0.0016141020460054278, -2.5559442292433232e-05, 0.0034416092094033957, -0.015423038974404335, -0.006648111157119274, -0.0030147992074489594, 0.02170221321284771, -0.0016032509738579392, -0.007653647102415562, 0.0100553585216403, 0.01107536256313324, -0.022092852741479874, 0.00782003067433834, 0.013462605886161327, -0.02511669509112835, -0.006886835675686598, 0.003324055578559637, 0.01397622562944889, -0.04739763215184212, 0.003116076113656163, 0.004221080336719751, -0.009245142340660095, 0.0023528817109763622, -0.006886835675686598, 0.0069230059161782265, 0.020544761791825294, -7.137993816286325e-05, -0.004506826400756836, 0.00035740830935537815, -0.0062140668742358685, 0.006854282226413488, 0.008297479711472988, 0.011198341846466064, 0.009324717335402966, 0.02141284942626953, -0.02199157513678074, -0.008623012341558933, -0.026317549869418144, 0.025174567475914955, 0.010814935900270939, 0.010677488520741463, 0.006619174964725971, 0.010453232564032078, 0.0005733001162298024, 0.0021177742164582014, -0.0020237313583493233, -0.020790720358490944, 0.005638958420604467, -0.012927284464240074, -0.004510443191975355, 0.015871552750468254, -0.0028176705818623304, -0.00894131138920784, 0.0008156414842233062, 0.003694801824167371, -0.028545644134283066, 0.009946847334504128, 0.02100774273276329, 0.013795373030006886, 0.0015607507666572928, -0.014207715168595314, 0.032495446503162384, 0.011523875407874584, 0.006651728413999081, -0.015654530376195908, -0.012992391362786293, -0.018808584660291672, -0.017810283228754997, 0.017709005624055862, 0.010785999707877636, -0.024320947006344795, 0.003747248789295554, -0.0012795262737199664, 0.010757063515484333, 0.015437508001923561, 0.004452570807188749, 0.0012641538633033633, -0.004022143315523863, -0.003848525695502758, 0.005848746281117201, 0.01752091944217682, -0.007064070552587509, 0.026708189398050308, 0.006745771039277315, -0.018099645152688026, -0.006109172943979502, -0.001506495289504528, 0.017897091805934906, 0.015046867541968822, -0.014352397061884403, -0.007378752343356609, 0.014041331596672535, -0.01974901370704174, -0.013267286121845245, -0.016392404213547707, -0.004821508191525936, 0.01038089208304882, 0.026187337934970856, 0.0045827841386199, 0.0018474009120836854, 0.03605461120605469, -0.0021213912405073643, -0.006098322104662657, 0.0007948435377329588, 0.02121029607951641, 0.03382651507854462, -0.01158174779266119, -0.018909862264990807, 0.015090271830558777, 0.02390137128531933, -0.0015951126115396619, -0.011039192788302898, -0.012804306112229824, 0.039961010217666626, -0.0020201143343001604, -0.004477889742702246, 0.014034098014235497, 0.00022448226809501648, -0.00015191549027804285, 0.02727244794368744, -0.03729886934161186, -0.006705984007567167, -0.012203877791762352, -0.02453796938061714, -0.00961408019065857, -0.0028212876059114933, 1.4496400581265334e-05, 0.0006230343715287745, -0.01087280921638012, 0.002269689692184329, -0.009621314704418182, -0.006875984370708466, 0.03576524555683136, -0.010800467804074287, -0.012059196829795837, -0.012594517320394516, -0.007197900675237179, 0.026346486061811447, 0.019445182755589485, 0.0038051214069128036, 0.014692398719489574, -0.00583066139370203, -0.00023329879331868142, 0.016710704192519188, 0.0032408637925982475, 0.0013672393979504704, -0.008586842566728592, 0.009114929474890232, -0.023105623200535774, 0.012174941599369049, 0.016363468021154404, 0.0022045832592993975, 0.01642134040594101, -0.006485344842076302, 0.0012370261829346418, 0.003964270930737257, -0.003371077124029398, -0.02734478935599327, 0.009635782800614834, 0.007194283418357372, 0.005078318063169718, 0.008789395913481712, -0.006644494365900755, 0.0008273968705907464, -0.009577910415828228, -0.003477779682725668, 0.02693968079984188, 0.0020888380240648985, -0.0011212810641154647, -0.0033819281961768866, 0.006828962825238705, -0.013527712784707546, 0.0133106904104352, -0.012652390636503696, 0.015828147530555725, -0.006684281397610903, 0.01150217279791832, -0.003826823551207781, 0.03808014839887619, 0.005154275801032782, -0.003371077124029398, -0.006966410204768181, -0.017549855634570122, 0.00468406081199646, -0.01572686992585659, 0.015046867541968822, -0.031800977885723114, -0.013455372303724289, 0.022078385576605797, -0.008803864009678364, -0.016349000856280327, 0.013448137789964676, -0.011625152081251144, -0.022613706067204475, -0.008304713293910027, 0.009223440662026405, 0.019589863717556, 0.010532807558774948, -0.005997044965624809, 0.0190979465842247, -0.012225580401718616, -0.03194565698504448, 0.013744735158979893, 0.02994905412197113, -0.020327739417552948, -0.0084132244810462, -0.007617476861923933, -0.00412342045456171, 0.009577910415828228, -0.008868970908224583, 0.015104739926755428, -0.027851173654198647, 0.0032444808166474104, -0.00174521969165653, 0.005808959249407053, -0.0009693655301816761, -0.022034980356693268, 0.003703844267874956, -0.0011809620773419738, 0.009917911142110825, -0.004127037711441517, 0.016160914674401283, -0.007740456145256758, 0.017101343721151352, 0.020544761791825294, -0.0033873538486659527, 0.005982576869428158, 0.016233256086707115, -0.013520479202270508, -0.00824684090912342, -0.0019369225483387709, 6.555877189384773e-05, -0.0019441565964370966, -0.008131096139550209, -0.009180036373436451, 0.0013265478191897273, 0.04320187121629715, -0.02547839842736721, 0.012471538037061691, 0.007537901867181063, 0.0054942769929766655, 0.0050855521112680435, 0.003579056588932872, 0.01662389561533928, 0.011126001365482807, -0.004112569149583578, 0.014598355628550053, -0.005215765442699194, -0.002705542603507638, 0.014077502302825451, 0.0036586313508450985, 0.012775368988513947, 0.009310249239206314, 0.004694912116974592, 0.002846607007086277, -0.008080457337200642, 0.026650317013263702, 0.0010001102928072214, -0.01210983470082283, 0.02138391323387623, 0.01974901370704174, -0.0014540483243763447, 0.011270682327449322, 0.00876045972108841, -0.028299685567617416, 0.023438390344381332, -0.005382149014621973, 0.012117069214582443, -0.007660881150513887, 0.005577468778938055, 0.007675349246710539, 0.01844688132405281, 0.011769833974540234, -0.004774486646056175, 0.0003953872073907405, 0.00045823317486792803, -0.0006438323180191219, -0.009860038757324219, 0.018504753708839417, 0.0007961999508552253, 0.0072051347233355045, -0.012464304454624653, -0.02426307462155819, 0.013137073256075382, 0.003508524503558874, -0.010069826617836952, 0.006546834483742714, 0.005078318063169718, 0.018099645152688026, 0.018099645152688026, 0.03660440072417259, -0.014330694451928139, 0.009990252554416656, 0.008348117582499981, -0.00011467132571851835, -0.006970027461647987, -0.021832427009940147, -0.002417988143861294, 0.009671952575445175, -0.006637260317802429, -0.008897907100617886, -0.004430868662893772, -0.009281313046813011, -0.0031811827793717384, -0.0024903288576751947, 0.012797071598470211, 0.031193314120173454, -0.02983330935239792, -0.002360115759074688, -0.0009901634184643626, 0.009418760426342487, 0.014699632301926613, 0.010800467804074287, -0.001719900406897068, -0.003320438554510474, 0.0024812864139676094, -0.02255583368241787, 0.0014359630877152085, 0.018273264169692993, -0.010952383279800415, 0.017086876556277275, 0.010713659226894379, 0.0004448953550308943, -0.014366865158081055, -0.007451093290001154, -0.012384729459881783, 0.000856785278301686, -0.004850444849580526, -0.03700950741767883, 0.002674797782674432, 0.010250678285956383, -0.015394102782011032, 0.004170442000031471, -0.038138020783662796, 2.9925316994194873e-05, -0.001804900704883039, 0.011791535653173923, 0.026679253205657005, 0.0056100222282111645, 0.01577027514576912, -0.008015350438654423, -0.01698559895157814, 0.03223501890897751, -0.03978738933801651, -0.010959617793560028, 0.012543879449367523, 0.0173183660954237, 0.007494497578591108, -0.002665755106136203, 0.008825566619634628, -0.0321192741394043, -0.014764739200472832, -0.007132794242352247, 0.005465340800583363, 0.004416400566697121, -0.0077187540009617805, -0.018548158928751945, -0.0033945878967642784, -0.013853246346116066, -0.013014093972742558, -0.0025029885582625866, -0.019155820831656456, -0.004329591523855925, 0.005653426516801119, 0.02446562796831131, -0.01087280921638012, 0.0026910745073109865, -0.007472795434296131, 0.008897907100617886, -0.020863061770796776, 0.025348184630274773, -0.0266213808208704, -0.014287290163338184, -0.00025228821323253214, -0.0037580998614430428, 0.01718815229833126, -0.03203246742486954, -0.004618954379111528, 0.011415364220738411, 0.018794115632772446, 0.037125252187252045, 0.0011891004396602511, -0.007660881150513887, 0.005447255447506905, -0.018663903698325157, -0.029977990314364433, 0.014960058964788914, -0.009252376854419708, -0.01451154612004757, 0.009534505195915699, 0.006250237580388784, -0.02116689272224903, 0.00015440220886375755, 0.00823237281292677, -0.002513839630410075, -0.020617103204131126, 0.004166824743151665, 0.017130279913544655, 0.020429017022252083, -0.0018474009120836854, 0.005884916987270117, 0.013014093972742558, -0.009643016383051872, 0.0052736378274858, -0.029471606016159058, 0.022252002730965614, 0.016681768000125885, -0.017564324662089348, -0.0003501742612570524, -0.033421408385038376, 0.024248605594038963, 0.0015146336518228054, -0.014200481586158276, -0.02093540132045746, -0.01150217279791832, 0.010424296371638775, -0.005906619131565094, -0.008058754727244377, 0.0030328843276947737, 0.016681768000125885, 0.0029207561165094376, -0.014091970399022102, -0.0038304405752569437, -0.003041926771402359, -0.0020599018316715956, 0.016710704192519188, -0.0024433075450360775, 0.009404292330145836, 0.011523875407874584, -0.0026892658788710833, -0.0007419444154947996, -0.018707307055592537, -0.006217684131115675, 0.0027634152211248875, 0.008138329721987247, -0.006510663777589798, -1.3782883797830436e-05, 0.0011447917204350233, 0.006293641868978739, -0.018866457045078278, -0.019199224188923836, -0.003895547240972519, -0.03475247696042061, -0.0011565471068024635, -0.021962638944387436, -0.023033281788229942, 0.012131537310779095, 0.007451093290001154, -0.003340332303196192, -0.012956221587955952, -0.02731585130095482, -0.0030147992074489594, -0.01743411086499691, -0.005653426516801119, 0.005866831634193659, 0.003045543795451522, 0.006152577232569456, -0.01251494325697422, 0.02361200749874115, 0.0396716445684433, -0.00035763438791036606, -0.009722591377794743, 0.023539667949080467, 0.006130875088274479, 0.005215765442699194, -0.0014079310931265354, -0.017260493710637093, -0.02824181318283081, 0.020660506561398506, -0.0216154046356678, -0.013404733501374722, 0.017578791826963425, 0.013404733501374722, 0.0035555458161979914, -0.008456628769636154, -0.006434706039726734, 0.008905141614377499, 0.00036396420910023153, -0.0007961999508552253, 0.0188519898802042, -0.0027869257610291243, 0.003848525695502758, 0.027561809867620468, 0.0058234273456037045, -0.013035795651376247, 0.014815377071499825, -0.016001764684915543, -0.007653647102415562, 0.01062685064971447, -0.00824684090912342, -0.000555667094886303, 0.017781347036361694, -0.0049698068760335445, -0.031106505542993546, -0.01087280921638012, 0.001267771003767848, -0.00831194780766964, -0.021427318453788757, -0.003801504382863641, 0.005993427708745003, -0.011878344230353832, 0.030817141756415367, 0.010323019698262215, -0.0022082002833485603, 0.014605589210987091, -0.0057872566394507885, 0.014157077297568321, 0.0010751638328656554, 0.013180477544665337, -0.0012533027911558747, 0.008196202106773853, 0.014229417778551579, 0.027200106531381607, 0.01621878705918789, -0.01328898873180151, -0.005092786159366369, -0.0033132045064121485, 0.027156703174114227, -0.018273264169692993, -0.01296345517039299, 0.002213625703006983, 0.026158401742577553, 0.011755365878343582, -0.006456408184021711, -0.010930681601166725, -0.022497961297631264, -0.0014151651412248611, -0.026303082704544067, 0.006409387104213238, -0.019025607034564018, 0.0035012904554605484, 0.035823117941617966, 0.009809399954974651, -0.002356498735025525, -0.006460025440901518, -0.006575770676136017, -0.029659690335392952, 0.030701396986842155, 0.024320947006344795, 0.010720892809331417, 0.004597252234816551, 0.015871552750468254, 0.022946473211050034, -0.006962793413549662, -0.01983582228422165, 0.00506023271009326, 0.02902309224009514, 0.014829845167696476, -0.005997044965624809, -0.010511104948818684, -0.002414371119812131, -0.00338373682461679, 0.008420458994805813, -0.0022280937992036343, 0.007769392337650061, -0.009881741367280483, -0.018273264169692993, -0.006478110793977976, -0.009939613752067089, 0.01160344947129488, 0.01044599898159504, -0.008051521144807339, 0.0066553452052176, 0.0010498445481061935, 0.005002360325306654, 0.006800026632845402, -0.004944487474858761, -0.002390860579907894, 0.0038810791447758675, -0.005725766997784376, -0.0038846961688250303, 0.027200106531381607, -0.031019696965813637, 0.014656228013336658, 0.02174561843276024, -0.014316226355731487, -0.05046487972140312, -0.00788513757288456, -0.002730861771851778, -0.00010223776916973293, 0.0039606536738574505, -0.01662389561533928, -0.011227278038859367, -0.007248539011925459, -0.01857709512114525, 0.008029818534851074, 0.011711960658431053, -0.005219382233917713, -0.002879160223528743, -0.007208751980215311, 0.03284268081188202, 0.010735361836850643, 0.010583446361124516, -0.026433294638991356, -0.007552369963377714, 0.00130574987269938, -0.008210670202970505, 0.006170662585645914, -0.009180036373436451, -0.0031685230787843466, -0.0004973423783667386, -0.02296094223856926, 0.007848966866731644, 0.021644340828061104, -0.004647890571504831, 4.168068335275166e-05, -0.008369820192456245, 0.0025102226063609123, -0.025333717465400696, -0.011003022082149982, 0.013563883490860462, -0.003436183789744973, 0.033913325518369675, 0.015249421820044518, 0.02356860414147377, -0.010163869708776474, 0.0009286738932132721, -0.019372841343283653, -0.0014947399031370878, 0.009939613752067089, -0.004908317234367132, -0.015206017531454563, -0.009780463762581348, -0.02325030416250229, 0.006036832462996244, 0.006148960441350937, 0.013759203255176544, -0.002560861175879836, 0.006926623173058033, -0.001898943679407239, -0.012218345887959003, 0.013187711127102375, -0.013614521361887455, 0.005306191276758909, -0.003145012306049466, 0.009787698276340961, -0.028748197481036186, 0.009671952575445175, 0.017361771315336227, 0.0028303302824497223, 0.01320941373705864, 0.02738819271326065, -0.012095366604626179, -0.00934641994535923, 0.02743159793317318, -0.014287290163338184, 0.01491665467619896, -0.004032994620501995, 0.016768576577305794, 0.013339626602828503, -0.020429017022252083, 0.005884916987270117, 0.002338413381949067, 0.000894764147233218, -0.018663903698325157, -0.021600935608148575, -0.016725171357393265, 0.0013708564219996333, -0.030903952196240425, 0.00012783959391526878, -0.022932006046175957, 0.002593414392322302, -0.026433294638991356, -0.005244701635092497, -0.015321762301027775, 0.010156636126339436, -0.006322578061372042, 0.013679628260433674, 0.019966036081314087, 0.005414701998233795, -0.009744293987751007, -0.0022516045719385147, -0.010764298029243946, 0.017969433218240738, 0.024320947006344795, -0.005100020207464695, 0.016725171357393265, 0.005559383425861597, -0.019242629408836365, -0.009230674244463444, -0.013093668967485428, -0.03148267790675163, 0.01629112847149372, 0.003331289626657963, 0.0018030921928584576, 0.000982025172561407, -0.021282637491822243, -0.00187724141869694, -0.007848966866731644, -0.01864943467080593, -0.0021141571924090385, 0.021687744185328484, 0.01190728135406971, -0.012905582785606384, 0.010243444703519344, -0.021716680377721786, -0.023496262729167938, -0.016204319894313812, -0.003374694148078561, -0.0008463863050565124, 0.0047853379510343075, -0.0014088352909311652, 0.022338811308145523, 0.011690258979797363, 0.005418319255113602, -0.0034850137308239937, 0.013223881833255291, -0.007537901867181063, 0.005342361517250538, -0.016305595636367798, -0.025897974148392677, 0.009816634468734264, -0.023091154173016548, -0.01788262277841568, 0.012507708743214607, -0.0008332745637744665, 0.010858340188860893, -0.018591562286019325, 0.0014477184740826488, -0.00583066139370203, -0.0018555392744019628, 0.015987297520041466, 0.0021231998689472675, 0.0006863324670121074, -0.007480029482394457, 0.01788262277841568, 0.01849028468132019, 0.011892812326550484, -0.026954147964715958, -0.016305595636367798, -0.02568095177412033, 0.006800026632845402, -0.011357491835951805, -0.0006533270352520049, 0.0100553585216403, -0.0017226131167262793, 0.01727496087551117, -0.0037653339095413685, 0.004051079973578453, -0.003056395100429654, 0.022729450836777687, -0.003862994024530053, -0.012891114689409733, -0.012789838016033173, 0.0168264489620924, -0.012811539694666862, -0.0050168284215033054, -0.0071255601942539215, 0.010605148039758205, 0.001380803296342492, -0.02199157513678074, 0.004318740218877792, 0.010192805901169777, 0.022497961297631264, -0.007762158289551735, -0.00014377715706359595, 0.01723155751824379, -0.015900488942861557, 0.0200817808508873, -0.0032083105761557817, -0.016971129924058914, -0.0010109614813700318, 0.007899605669081211, -0.008268543519079685, -0.027605215087532997, 0.009389824233949184, -0.008565139956772327, 0.007812797091901302, 0.006937474012374878, 0.009845570661127567, 0.007480029482394457, 0.02055922895669937, 0.010554509237408638, 0.01694219373166561, 0.006539600435644388, -0.010178337804973125, -0.00500959437340498, -0.010518339462578297, 0.012818774208426476, -0.02165880799293518, -0.004137888550758362, -0.0005873161135241389, -0.009896209463477135, -0.006329812109470367, -0.006315344013273716, -0.0071074748411774635, -0.015943892300128937, 0.009360888041555882, -0.016074106097221375, 0.008087691850960255, 0.02401711605489254, 0.013267286121845245, -0.0014522398123517632, 0.006152577232569456, 0.012160473503172398, 0.001610485021956265, -0.014330694451928139, 0.0032065019477158785, 0.01869283989071846, -0.016551554203033447, 0.017781347036361694, -0.0013518669875338674, -0.02462477795779705, 0.007834498770534992, -0.019720077514648438, 0.0025029885582625866, 0.027402661740779877, 0.01662389561533928, -0.009860038757324219, -0.00044670389615930617, 0.011777067556977272, 0.02406051941215992, -0.003801504382863641, -0.008991950191557407, 0.009028120897710323, -0.013513244688510895, -0.009259611368179321, 0.009946847334504128, -0.025333717465400696, 0.0023745838552713394, 0.0009151099948212504, 0.0053785317577421665, -0.003365651471540332, 0.017737941816449165, 0.011220044456422329, 0.0072232200764119625, -0.0018718158826231956, 0.0075161997228860855, 0.004539379384368658, 0.015350698493421078, -0.01613197848200798, -0.005335127469152212, 0.0051651266403496265, -0.0019278798718005419, -0.0042427824810147285, -0.00865918304771185, 0.00028393729007802904, -0.0015734104672446847, 0.014113673008978367, 0.015495380386710167, 0.006029598414897919, 0.000816093641333282, 0.018389008939266205, 0.006449174135923386, 0.0026006484404206276, 0.040250372141599655, 0.002219051355496049, -0.0054761916399002075, 0.0036767167039215565, 0.00798641424626112, -0.01408473588526249, -0.020949870347976685, -0.0163345318287611, 0.0228451956063509, -0.009274079464375973, -0.009946847334504128, 0.00920173805207014, 0.010778766125440598, 0.007451093290001154, -0.012131537310779095, -0.005479808896780014, -0.01914135180413723, 0.00865918304771185, 0.004485124256461859, -0.030903952196240425, 0.0010444190120324492, 0.005479808896780014, -0.0016430383548140526, -0.03394225984811783, -0.005244701635092497, 0.02657797746360302, 0.011892812326550484, -8.991724462248385e-05, 0.0025662865955382586, -0.002240753499791026, -0.010930681601166725, 0.008044286631047726, 0.0003142299538012594, -0.006148960441350937, -0.00449959235265851, 0.024147329851984978, 0.0002166830381611362, 0.0063117267563939095, 0.006651728413999081, 0.013086434453725815, -0.010171104222536087, 0.01200855802744627, 0.017578791826963425, 0.008623012341558933, -0.005794490687549114, 0.03466566652059555, 0.006640877109020948, 0.015148145146667957, -0.004217463545501232, -0.001964050345122814, 7.578820077469572e-05, 0.0032028849236667156, -0.006344280205667019, -0.011538343504071236, -0.005794490687549114, -0.003430758137255907, 0.008615778759121895, -0.01044599898159504, -0.017332833260297775, -0.015871552750468254, -0.0045610819943249226, 0.02178902179002762, 0.013940054923295975, -0.00851450115442276, 0.014207715168595314, 0.00010506357648409903, 0.01493112277239561, 0.009151100181043148, 0.0140630342066288, 0.018866457045078278, -0.0035917162895202637, -3.650945291155949e-05, 0.015466444194316864, -0.022816259413957596, 0.011994089931249619, 0.008905141614377499, 0.004459804855287075, -0.024972012266516685, -0.009223440662026405, -0.002345647430047393, -0.011191108264029026, -0.006778324488550425, 0.008123861625790596, 0.005172360688447952, -0.0049806577153503895, 0.006423855200409889, -0.03055671602487564, 0.003938951529562473, 0.0025409674271941185, -0.008507267571985722, -0.018504753708839417, -0.006033215206116438, -3.549216125975363e-05, -0.009664718993008137, -0.009831102564930916, 0.023481793701648712, 0.02482733130455017, 0.031106505542993546, -0.010388125665485859, -0.028907347470521927, -0.004546613432466984, 0.0046695927157998085, 0.017709005624055862, -0.011639620177447796, -0.010836638510227203, 0.0003072219551540911, 0.006456408184021711, 0.0018627733225002885, -0.01517708133906126, 0.00308894831687212, 0.007147262338548899, -0.025941379368305206, -0.0014332503778859973, 0.009375356137752533, 0.010069826617836952, -0.0007433007704094052, 0.018866457045078278, -0.006170662585645914, 0.012080898508429527, -0.024118393659591675, -0.0045719328336417675, -0.006195981986820698, 0.020906465128064156, -0.001026333775371313, -0.011957919225096703, 0.03929547220468521, 0.013954523019492626, -0.008456628769636154, 0.009491100907325745, -0.007595774717628956, -0.0017180918948724866, 0.024653714150190353, -0.023597540333867073, 0.004608103074133396, 0.006792792584747076, -0.0026368189137429, 0.015336230397224426, 0.008290245197713375, 0.01397622562944889, -0.003038309747353196, 0.0010507488623261452, -0.0004136984352953732, -0.0041451225988566875, -0.0020255399867892265, 0.02340945415198803, 0.0034795880783349276, -0.009635782800614834, -0.017043471336364746, 0.021890299394726753, -0.014685164205729961, 0.0028447983786463737, -0.01286217849701643, -0.0007225028239190578, -0.006742154248058796, -0.020023908466100693, -0.0009128493256866932, -0.03055671602487564, 0.018143050372600555, -0.01613197848200798, 0.008731523528695107, 0.014070267789065838, 0.03689376264810562, -0.002922564744949341, -0.016450276598334312, -0.012305154465138912, 0.015423038974404335, 0.007317262701690197, 0.0001641229900997132, -0.02563754841685295, 0.01629112847149372, 0.005230233538895845, -0.01450431253761053, -0.012869412079453468, 0.012001323513686657, -0.002770649269223213, 0.004792571999132633, 0.011017490178346634, -0.019850291311740875, 0.008948545902967453, -0.011133234947919846, -0.02174561843276024, 0.00873875804245472, -0.030325226485729218, 0.00035356523585505784, -0.008138329721987247, -0.0014016012428328395, 0.005552149377763271, 0.016811981797218323, -0.006753005087375641, -0.009404292330145836, -0.00657215341925621, -0.004213846288621426, 0.017419643700122833, 0.04794742166996002, 0.019011138007044792, -0.0031902252230793238, -0.00187724141869694, 0.002815862186253071, -0.0456903912127018, 0.01072812732309103, -0.008948545902967453, -0.019286032766103745, -0.006944708060473204, 0.0035989503376185894, -0.015697933733463287, 0.01286217849701643, 0.02226646989583969, -0.0013129839207977057, 0.00657215341925621, -0.02369881607592106, -0.01123451255261898, -0.008051521144807339, 0.008304713293910027, 0.0206026341766119, 0.009802166372537613, -0.021195828914642334, -0.010323019698262215, 0.02397371083498001, 0.00814556423574686, 0.01451154612004757, -0.011191108264029026, -0.005975342821329832, 0.008608544245362282, 0.022208597511053085, -0.014562184922397137, -0.024407755583524704, -0.0037110785488039255, -0.001171015202999115, 0.009780463762581348, 0.006492578890174627, 0.012478772550821304, 0.0010227167513221502, -0.010207273997366428, -0.014518780633807182, -0.015234953723847866, 0.004893849138170481, -0.02909543365240097, -0.033421408385038376, -0.0053604464046657085, 0.007574072573333979, 0.0019730927888303995, -0.02361200749874115, 0.007183432579040527, -0.00625747162848711, 0.006901303771883249, -0.01804177276790142, 0.0010552700841799378, -0.007856201380491257, 0.002683840459212661, 0.011704727075994015, -0.00018865101446863264, 0.005852363537997007, -0.0140630342066288, -0.00910046137869358, -0.002347456058487296, -0.0008821045630611479, 0.02154306322336197, -0.0003650945145636797, 0.0068253460340201855, 0.0114370658993721, 0.01799836941063404, 0.014656228013336658, -0.005675128661096096, 0.02181795798242092, -0.020457953214645386, 0.0016122935339808464, -0.01723155751824379, -0.022237533703446388, -0.02116689272224903, -0.035620566457509995, 0.009006418287754059, -0.02792351506650448, 0.01408473588526249, -0.021875830367207527, -0.006666196510195732, 0.02170221321284771, -0.0027326704002916813, -0.01970561034977436, 0.005429170094430447, -0.0026259678415954113, -0.01046046707779169, 0.00276884064078331, -0.009541739709675312, -0.021586468443274498, -0.0055919368751347065, -0.012731964699923992, 0.00255543552339077, 0.016696235164999962, -0.00024934939574450254, -0.006438323296606541, -0.00831194780766964, 0.0010064401431009173, 0.004300655331462622, 0.0028574580792337656, 0.033623963594436646, 0.0051832119934260845, 0.020052844658493996, -0.013260052539408207, -0.04308612644672394, -0.015061335638165474, 0.001826602965593338, -0.007096623536199331, 0.025420526042580605, -0.02300434559583664, 0.013795373030006886, -0.004365761764347553, 0.008521735668182373, 0.009411526843905449, 0.016103042289614677, 0.004051079973578453, 0.009925145655870438, 0.0019224543357267976, -0.0008418650249950588, -0.010540041141211987, 0.006861516274511814, 0.025131162256002426, 0.005515979137271643, 0.017130279913544655, 0.00506023271009326, 0.016638362780213356, 0.011415364220738411, -0.011798770166933537, 0.0014233035035431385, 0.012131537310779095, -0.011936217546463013, 0.004745550453662872, 0.006427471991628408, -0.002577137900516391, -0.0009756953222677112, 0.0005194967379793525, -0.00745832733809948, 0.01629112847149372, 9.398640395374969e-05, -0.0238579660654068, 0.005465340800583363, 0.01954646036028862, -0.002354690106585622, -0.014721334911882877, 0.000762742361985147, -0.02304775081574917, 0.0135711170732975, 0.02832862176001072, -0.006195981986820698, 1.77743386302609e-05, -0.019401779398322105, -0.007201517932116985, 0.001572506153024733, -0.00630810996517539, 0.01087280921638012, -0.011617918498814106, 0.030180543661117554, -0.002240753499791026, -0.007494497578591108, -0.013455372303724289, 0.010373657569289207, 0.012637922540307045, 0.0059898109175264835, 0.01467069610953331, 0.004025760572403669, -0.0050855521112680435, 0.022237533703446388, -0.026896275579929352, -0.004275335930287838, -0.020501356571912766, 0.007422157097607851, -0.0039678881876170635, -0.006481727585196495, -0.0028357559349387884, 0.008579608052968979, -0.0031395868863910437, -0.00788513757288456, -0.016971129924058914, -0.009563442319631577, 0.008319181390106678, 0.0158136785030365, 0.019763482734560966, 0.005942789372056723, -0.008753226138651371, 0.011248980648815632, -0.007914073765277863, 0.025796696543693542, 0.006966410204768181, -0.0006845239549875259, -0.004738316405564547, 0.003003947902470827, -0.01355664897710085, 0.0010055358288809657, -0.0055051278322935104, 0.011885578744113445, -4.0606875700177625e-05, 0.008384288288652897, -0.04259420931339264, 0.004058314021676779, -0.00601512985303998, 0.010749829933047295, -0.009324717335402966, -0.005168743897229433], "cf1beb93-e72c-4e87-9196-8a06ca2540ab": [-0.02201630361378193, -0.007179392967373133, -0.010834972374141216, 0.024531161412596703, -0.014735261909663677, -0.03466589003801346, 0.02117299661040306, 0.03984619677066803, -0.014705143868923187, 0.01879367046058178, 0.0016837879084050655, 0.048219017684459686, -0.0037967581301927567, -0.00515771796926856, 0.003188749775290489, 0.023130672052502632, -0.005688549019396305, 0.013635952025651932, 0.015375270508229733, -0.05463416501879692, 0.05451369285583496, -0.024425748735666275, -0.022001244127750397, 0.010624146088957787, -0.00972813367843628, -0.013635952025651932, -0.01915508694946766, 0.016293872147798538, -0.03246727213263512, -0.023823386058211327, 0.01209993101656437, 0.017784714698791504, -0.0023680326994508505, 0.0007477750186808407, 0.02712131477892399, -0.042978473007678986, 0.026549071073532104, 0.023010199889540672, -0.021248292177915573, -0.0018419077387079597, -0.02239277958869934, 0.012431230396032333, -0.005684784147888422, 0.003184984903782606, -0.02073628455400467, 0.0051652477122843266, 0.030389124527573586, 0.010511203669011593, -0.0029835705645382404, -0.03231668099761009, 0.015947513282299042, 0.012589349411427975, -0.023416792973876, -0.006689974572509527, 0.046140871942043304, -0.0379788763821125, 0.019802626222372055, 0.06933178007602692, -0.003105925163254142, -0.05183318257331848, -0.008997770957648754, -0.026835191994905472, 0.020329691469669342, -0.024229981005191803, 0.014803027734160423, -0.007747871335595846, -0.003855111775919795, -0.004239117261022329, -0.021609708666801453, 0.030705364421010017, -0.015013854019343853, 0.02025439590215683, -0.058850690722465515, -0.019667094573378563, -0.0002484740107320249, 0.016293872147798538, 0.013696188107132912, -0.017076941207051277, 0.015450566075742245, -0.017378121614456177, 0.020450163632631302, 0.001968968193978071, 0.02688037045300007, 0.0037967581301927567, 0.05370050296187401, 0.03168420121073723, -0.02688037045300007, -0.05978435277938843, -0.05279696360230446, -0.0257358830422163, 0.019606858491897583, 0.025781061500310898, -0.010097079910337925, -0.020585695281624794, 0.001333665451966226, 0.014087723568081856, 0.015676451846957207, 0.005816550459712744, -0.018116014078259468, -0.040478676557540894, -0.016700465232133865, 0.019862862303853035, -0.024305276572704315, -0.0072848061099648476, 0.030148180201649666, -0.019245442003011703, -0.0040998212061822414, 0.008711649104952812, -0.022769253700971603, 0.02463657408952713, 0.00026400364004075527, -0.04288811981678009, 0.004913008771836758, -0.017137177288532257, -0.03568990156054497, -0.046321578323841095, -0.04111115261912346, -0.022799372673034668, -0.00879447441548109, -0.043400127440690994, 0.038852300494909286, -0.0029534525237977505, 0.025464821606874466, -0.033973172307014465, -0.007092803716659546, -0.010202493518590927, 0.012604408897459507, 0.010887679643929005, 0.02706107869744301, -0.0010230728657916188, -0.014027487486600876, -0.006652326788753271, 0.022859608754515648, 0.0072358641773462296, 0.023266201838850975, 0.009419423528015614, 0.014464199542999268, 0.05336920544505119, -0.028868161141872406, 0.03614167496562004, -0.030750541016459465, -0.014878322370350361, 0.0034108704421669245, 0.017980482429265976, 0.023928800597786903, 0.012401111423969269, -0.030569832772016525, 0.029410287737846375, 0.010082021355628967, 0.019365914165973663, -0.0602361224591732, -0.022648781538009644, 0.006806681863963604, -0.003695109626278281, 0.03340093046426773, -0.04397236928343773, 0.0033694582525640726, 0.040779855102300644, 0.03972572460770607, 0.03499718755483627, 0.024862460792064667, -0.046020399779081345, -0.0025073285214602947, 0.02117299661040306, 0.00812434684485197, 0.03942454233765602, 0.06409123539924622, 0.017664242535829544, -0.03812946751713753, 0.030283711850643158, 0.021549472585320473, -0.006983625702559948, 0.016700465232133865, 0.015917396172881126, -0.014742790721356869, 0.013786543160676956, 0.030208416283130646, 0.03192514553666115, 0.03903300687670708, -0.018417194485664368, -0.015202092006802559, 0.013206769712269306, 0.004856537561863661, 0.018658138811588287, 0.010089551098644733, 0.050267044454813004, 0.01951650343835354, 0.04773712903261185, -0.004977009724825621, -0.02919946052134037, -0.0009214244200848043, 0.023868564516305923, -0.004559121560305357, 0.013643481768667698, -0.01642940193414688, -0.019320735707879066, -0.014185607433319092, 0.02919946052134037, 0.0027143904007971287, 0.024621514603495598, -0.010210023261606693, -0.037135571241378784, -0.046562522649765015, 0.037195805460214615, -0.03812946751713753, 0.028265800327062607, -0.007981286384165287, -0.04397236928343773, 0.01685105636715889, -0.008658942766487598, 0.04719500243663788, -0.025811178609728813, -0.002187324222177267, 0.000744480814319104, -0.004250411409884691, -0.010563910007476807, -0.0003002394223585725, 0.0385812371969223, -0.025600353255867958, -0.033551521599292755, -0.014569612219929695, 0.026413539424538612, 0.0002110617351718247, -0.007898462004959583, -0.06794634461402893, 0.0064603243954479694, -0.015156914480030537, 0.042707409709692, -0.04400248825550079, -0.0073638660833239555, 0.027226727455854416, -0.010036843828856945, 0.0015059030847623944, -0.011512628756463528, -0.014253372326493263, 0.03996666893362999, 0.03620190918445587, -0.023928800597786903, -0.010338024236261845, 0.00530830817297101, 0.020916994661092758, 0.034274354577064514, 0.0036800506059080362, 0.001765671418979764, 0.020209219306707382, 0.019140027463436127, -0.027708616107702255, 0.07848767191171646, 0.007454220205545425, -0.02986205741763115, -0.007503162138164043, 0.0022437956649810076, -0.001393901533447206, 0.0016131986631080508, -0.01209993101656437, 0.016218576580286026, 0.012461348436772823, -0.03216608986258507, -0.0008593059610575438, -0.010955444537103176, 0.011384626850485802, 0.008237290196120739, 0.01715223677456379, 0.003994408063590527, 0.04574933648109436, 0.007958698086440563, 0.010428379289805889, -0.023100553080439568, 0.0020913227926939726, 0.009682957082986832, -0.007518221158534288, -0.006983625702559948, -0.00404711440205574, 0.014644907787442207, 0.009682957082986832, -0.010895208455622196, -0.029771704226732254, 0.005899375304579735, 0.037075333297252655, -0.008613765239715576, -0.0061403196305036545, 0.017604006454348564, 0.013470303267240524, 0.010338024236261845, 0.0567123107612133, -0.005748785100877285, -0.039334189146757126, -0.007318689022213221, -0.039876312017440796, -0.01727270893752575, -0.008252348750829697, -0.005959611386060715, 0.010270259343087673, 0.026202714070677757, 0.019817683845758438, -0.0010851913830265403, 0.0222120713442564, -0.012408641166985035, 0.0017901422688737512, 0.0316239632666111, 0.013229358941316605, -0.004163822159171104, 0.0015708451392129064, -0.02421492151916027, 0.056290656328201294, -0.03180467337369919, 0.02269395999610424, 0.00591443432494998, -0.04002690315246582, 0.039816077798604965, 0.026232831180095673, -0.004423590376973152, -0.015134326182305813, -0.005899375304579735, -0.005797727033495903, 0.0178298931568861, -0.014659966342151165, -0.010789795778691769, -0.0028838044963777065, -0.036232028156518936, -0.013786543160676956, -0.01977250725030899, -0.07294594496488571, 0.01959179900586605, 0.05921211093664169, -0.0562003031373024, 0.03132278472185135, -0.020359810441732407, -0.02938016876578331, -0.024440806359052658, -0.03035900555551052, -0.012762528844177723, -0.04080997407436371, 0.013891955837607384, -0.040237728506326675, -0.043460361659526825, -0.05607983097434044, -0.040057022124528885, 0.006275851279497147, -0.034274354577064514, -0.0035144013818353415, 0.015262328088283539, 0.004126174375414848, 0.0039755841717123985, 0.008997770957648754, -0.006441500503569841, 0.025344349443912506, 0.0003842405858449638, -0.04192434251308441, -0.002471563406288624, 0.0008621294982731342, 0.003328045830130577, 0.04165327921509743, -0.024290217086672783, 0.029636172577738762, -0.01611316204071045, 0.004092291463166475, 0.007243393920361996, 0.011331920512020588, -0.0009769545868039131, -0.02299514040350914, -0.02397397719323635, -0.023883622139692307, 0.016158340498805046, -0.007239629048854113, 0.0015153150307014585, 0.001766612520441413, -0.004657005425542593, -0.023883622139692307, 0.014825616031885147, -0.051923539489507675, 0.022061480209231377, 0.02823568321764469, 0.0031623963732272387, -0.017438357695937157, -0.04165327921509743, 0.014223254285752773, -0.007875872775912285, -0.03553931415081024, 0.04337000846862793, -0.005334661807864904, -0.001016484573483467, -0.007762930355966091, 0.008350232616066933, 0.039454661309719086, 0.01648963801562786, -0.020224278792738914, -0.018537666648626328, -0.02877780795097351, -0.026022005826234818, -0.0225132517516613, 0.005967141129076481, -0.04361095279455185, -0.009585073217749596, -0.049483973532915115, -0.005556782241910696, -0.015766805037856102, -0.02457633800804615, -0.007405278272926807, -0.033852700144052505, 0.01600774936378002, 0.01043590810149908, -0.0006545972428284585, -0.014614789746701717, 0.02773873507976532, -0.043400127440690994, -0.0019350855145603418, -0.01176863256841898, 0.029756644740700722, 0.008530940860509872, 0.020224278792738914, 0.013620893470942974, 0.027708616107702255, 0.019923098385334015, 0.05114046856760979, 0.006558207795023918, 0.009479659609496593, 0.029756644740700722, -0.039876312017440796, -0.0322263240814209, 0.040418438613414764, 0.0445144958794117, 0.016384225338697433, 0.015006324276328087, 0.012273110449314117, 0.00915589090436697, -0.011218978092074394, 0.024651633575558662, -0.021429000422358513, -0.010654264129698277, -0.0257358830422163, 0.043400127440690994, -0.00043388831545598805, -0.015616214834153652, 0.014742790721356869, 0.01795036531984806, 0.00939683523029089, -0.00486406683921814, 0.014652436599135399, -0.00037812284426763654, 0.0012498995056375861, 0.020329691469669342, -0.0018767317524179816, -0.002893216209486127, -0.020465223118662834, -0.03605131804943085, -0.027874266728758812, 0.02999758906662464, 0.028009796515107155, -0.0031906322110444307, 0.008711649104952812, 0.028371214866638184, -0.04861055314540863, 0.014396433718502522, 0.0007007155218161643, 0.008463175036013126, 0.01043590810149908, 0.011053328402340412, 0.012536643072962761, -0.03608143702149391, -0.029606055468320847, -0.0052405428141355515, 0.03698498010635376, 0.014833145774900913, -0.005029716063290834, -0.03204561769962311, 0.006742680910974741, 0.018055777996778488, -0.005120070651173592, -0.016444461420178413, 0.003184984903782606, 0.0050033628940582275, -0.012483936734497547, 0.04114127159118652, -0.0020028511062264442, 0.007868343964219093, -0.021986184641718864, -0.011708396486938, 0.010804854333400726, -0.011911693029105663, -0.021188056096434593, -0.038039110600948334, 0.005406192038208246, -0.01073708850890398, 0.04611075296998024, -0.013199240900576115, -0.021429000422358513, -0.008689060807228088, 0.023522205650806427, -0.016579993069171906, 0.05041763558983803, -0.021609708666801453, -0.003919112961739302, 0.009374246932566166, -0.002172265201807022, -0.03782828524708748, 0.000856011756695807, -0.023401733487844467, -0.021067583933472633, -0.042797766625881195, 0.04541803523898125, -0.012258050963282585, 0.01420066598802805, -0.0022099127527326345, 0.00573372608050704, 0.020977230742573738, -0.01751365326344967, 0.036713916808366776, -0.0052141896449029446, -0.02213677577674389, -0.03912336379289627, 0.026744838804006577, -0.016866113990545273, -0.008267408236861229, -0.00022541487123817205, 0.009682957082986832, -0.01691129244863987, 0.004822654649615288, 0.03758734092116356, -0.006464088801294565, -0.0007421278860419989, -0.010940385982394218, -0.009027888998389244, 0.0015689628198742867, -0.020239338278770447, -0.007838225923478603, -0.003521930892020464, -0.017619065940380096, 0.02998252958059311, -0.014690084382891655, 0.002697448944672942, -0.009464601054787636, -0.021142879500985146, 0.036894626915454865, 0.030072884634137154, -0.00046424168976955116, -0.00410735048353672, 0.01176863256841898, -0.0005910669569857419, 0.01262699719518423, -0.03234679996967316, 0.017423298209905624, -0.022859608754515648, 0.002396268304437399, -0.006049965508282185, 0.034334588795900345, -0.026925547048449516, 0.015051500871777534, 0.004977009724825621, 0.022859608754515648, -0.01795036531984806, 0.016926350072026253, -0.018116014078259468, 0.00011129565245937556, 0.002908275229856372, -0.024546220898628235, 0.005172776989638805, -0.0222120713442564, -0.03572002053260803, -0.001627316465601325, -0.021353704854846, -0.012401111423969269, -0.0060951425693929195, 0.007683870382606983, -0.005150188691914082, 0.004495120607316494, -0.017317885532975197, -0.003403340931981802, -0.024169744923710823, 0.03614167496562004, 0.04939362034201622, 0.0008898946107365191, 0.04508673772215843, -0.0037854639813303947, -0.0029496876522898674, 0.05195365473628044, 0.006072554271668196, 0.028326036408543587, -0.025043169036507607, -0.006885741837322712, 0.039936549961566925, -0.019742390140891075, 0.0049995980225503445, -0.007533280178904533, -0.00020317926828283817, 0.03809934854507446, -0.028310978785157204, -0.039093244820833206, -0.008643883280456066, 0.03004276566207409, -0.008289996534585953, 0.020706167444586754, -0.007691400125622749, 0.016022808849811554, -0.02019415982067585, 0.018899083137512207, 0.021248292177915573, 0.012062283232808113, 0.01161804236471653, 0.01197945885360241, 0.034274354577064514, 0.015646332874894142, 0.008425528183579445, -0.023025257512927055, -0.034153882414102554, 0.04324953630566597, -0.0140500757843256, 0.021338647231459618, -0.0050824228674173355, 0.02567564696073532, 0.01886896602809429, -0.004220293369144201, 0.021127820014953613, 0.004619357641786337, 0.04526744782924652, 0.010488615371286869, 0.030615009367465973, 0.02415468543767929, 0.011271684430539608, 0.004581710323691368, 0.011602982878684998, -0.05656171962618828, 0.05698337405920029, -0.011836398392915726, 0.003237691707909107, -0.010910267941653728, -0.021067583933472633, -0.011008151806890965, -0.013846779242157936, 0.004491355735808611, -0.0010146022541448474, -0.0037195805925875902, -0.0013355477713048458, -0.024561278522014618, 0.014004898257553577, -0.01721247285604477, 0.01149757020175457, 0.012514054775238037, -0.0052405428141355515, -0.012694763019680977, -0.002560035325586796, 0.008658942766487598, -0.008719178847968578, 0.03773793205618858, -0.025073286145925522, 0.013726306147873402, -0.005925728473812342, -0.004032055381685495, 0.03906312584877014, 0.017242589965462685, -0.004777477588504553, 0.014614789746701717, 0.017844950780272484, 0.02517869882285595, 0.007725283037871122, -0.007627399172633886, -0.002360503189265728, 0.010880149900913239, 0.003056983230635524, -0.00564337195828557, 0.018959319218993187, -0.014562082476913929, 0.00717562809586525, 0.008598706685006618, 0.014298549853265285, 1.3728130397794303e-05, 0.013492891564965248, 0.00413746852427721, 0.03620190918445587, 0.012792646884918213, 0.023130672052502632, -0.008259878493845463, 0.015962572768330574, 0.0037440515588968992, -0.00032494563492946327, 0.008899887092411518, 0.021323587745428085, 0.012265580706298351, 0.004355824552476406, -0.010827443562448025, -0.043400127440690994, -0.0415026880800724, -0.0316239632666111, 0.016640229150652885, -0.018582843244075775, -0.019877919927239418, -0.0024847399909049273, 0.02067604847252369, -0.022769253700971603, 0.008440586738288403, -0.012483936734497547, 0.018326841294765472, -0.023416792973876, 0.04252670332789421, -0.00240191537886858, -0.011023210361599922, 0.008869769051671028, -0.019501445814967155, 0.014765379950404167, -0.014584671705961227, -0.021067583933472633, -0.037015099078416824, 0.018537666648626328, -0.013651011511683464, 0.010119669139385223, 0.0074278670363128185, -0.01917014643549919, -0.03891253471374512, 0.007198216859251261, -0.00576384412124753, 0.00909565482288599, -0.002881922060623765, -0.012453818693757057, 0.023446910083293915, 0.001220722682774067, 0.009938959963619709, -0.015450566075742245, 0.029455464333295822, -0.013605833984911442, 0.04493614658713341, -0.015706568956375122, 0.03722592443227768, -0.030072884634137154, -0.012792646884918213, -0.02335655689239502, 0.021685004234313965, 0.00040612323209643364, -0.004608063492923975, 0.009856135584414005, -0.001076720654964447, 0.029033811762928963, -0.015706568956375122, -0.009682957082986832, 0.007830696180462837, 0.0033901643473654985, -0.002848039148375392, -0.009946489706635475, 0.010368142277002335, 0.03668379783630371, -0.002396268304437399, 0.014675025828182697, -0.022799372673034668, 0.02591659128665924, -0.012619467452168465, -0.005425015930086374, -0.013590775430202484, 0.017860010266304016, 0.0026014475151896477, -0.014810556545853615, 0.006264556664973497, 0.03478636220097542, -0.010473555885255337, 0.037015099078416824, 0.026232831180095673, -0.01764918491244316, -0.008252348750829697, 0.03234679996967316, 0.0040057022124528885, -0.020299574360251427, 0.05364026874303818, -0.021022407338023186, -0.007021273020654917, 0.021459119394421577, 0.000493653875309974, 0.000404240854550153, 0.010533791966736317, 0.01947132684290409, -0.0011341333156451583, 0.03773793205618858, 0.016896232962608337, 0.03828005492687225, -0.01055638026446104, 0.02531423047184944, 0.05111034959554672, -0.018281662836670876, -0.030750541016459465, -0.007544574327766895, -0.0032602802384644747, -0.015887277200818062, -0.015495742671191692, -0.03192514553666115, -0.03837041184306145, 0.014795497991144657, -0.027271904051303864, 0.04409284144639969, -0.03285880386829376, 0.04800818860530853, -0.012506525032222271, 0.002942158142104745, 0.015571038238704205, 0.011309332214295864, 0.005940787494182587, 0.0006216556066647172, 0.037135571241378784, -0.0031680436804890633, -0.022618664428591728, -0.006953507661819458, -0.01935085467994213, -0.007262217812240124, 0.0025769765488803387, 0.015187032520771027, -0.021203115582466125, 0.04126174375414848, 0.04436390474438667, 0.0127173513174057, 0.019667094573378563, 0.007318689022213221, -0.00830505508929491, -0.021850652992725372, 0.001428725547157228, -0.020344750955700874, -0.012800176627933979, -0.008741767145693302, 0.029756644740700722, -0.028431450948119164, -0.010872620157897472, 0.010142257437109947, -0.0074918679893016815, 0.009999196045100689, 0.0011190741788595915, 0.0032847512047737837, 0.009411894716322422, 0.01191922277212143, 0.023582441732287407, 0.014855734072625637, 0.00900530070066452, 0.010029314085841179, 0.01064673438668251, -0.002211795188486576, -0.015141855925321579, -0.012822764925658703, -0.023371616378426552, -0.018748493865132332, 0.027934502810239792, 0.0030588656663894653, 0.02317584864795208, -0.024561278522014618, -0.020510399714112282, -0.03882218152284622, 0.042737528681755066, -0.003930407110601664, -0.048580434173345566, -0.029274756088852882, -0.004397237207740545, -0.014419022016227245, 0.0014851968735456467, 0.02239277958869934, 0.024350453168153763, 0.03243715316057205, 0.039454661309719086, 0.028807925060391426, -0.021429000422358513, 0.01441149227321148, -0.02743755467236042, -0.027181550860404968, 0.015405388548970222, -0.0034899304155260324, -0.00824481900781393, 0.010827443562448025, 0.007830696180462837, -0.002132735215127468, 0.012581820599734783, -0.019757447764277458, -0.004303118214011192, -0.013327241875231266, -0.019185205921530724, -0.021127820014953613, 0.010548851452767849, -0.0006894212565384805, 0.0005082422867417336, -0.0025167404673993587, 0.0012781352270394564, 0.017302826046943665, 0.030810777097940445, -0.0019256735686212778, -0.005688549019396305, 0.004517709370702505, 0.006750210653990507, -0.04096056520938873, 0.013191711157560349, -0.0036198145244270563, 0.012980884872376919, -0.003472988959401846, 0.011045798659324646, -0.029636172577738762, -0.00010417790326755494, 0.011806280352175236, -0.002351091243326664, 0.00016682581917848438, -0.0005190659430809319, -0.009404364973306656, 0.006802916992455721, -0.016595052555203438, -0.022091597318649292, 0.006607149727642536, -0.028551923111081123, -0.013613363727927208, -0.011542746797204018, 0.0023190907668322325, 0.0014475493226200342, 0.0012724881526082754, -0.029169343411922455, -0.023989036679267883, 0.0052443076856434345, 0.030795717611908913, -0.048580434173345566, 0.02391374111175537, 0.0222120713442564, 0.008493293076753616, 0.013425125740468502, 0.042436350136995316, 0.027588143944740295, -0.014991264790296555, -0.03285880386829376, 0.031292665749788284, 0.034274354577064514, 0.0008898946107365191, -0.004619357641786337, -0.005455133970826864, -0.017619065940380096, 0.013259476982057095, -0.001914379303343594, 0.03520801290869713, 0.0007830695831216872, 0.002277678344398737, 0.003646167926490307, 0.004032055381685495, -0.026549071073532104, -0.006407617591321468, 0.030328888446092606, -2.5132698283414356e-05, 0.019682154059410095, 0.019983334466814995, 0.0008254231070168316, 0.020947111770510674, -0.008877298794686794, -0.009585073217749596, -0.028928399085998535, -0.0374668687582016, -0.01892920210957527, -0.03496706858277321, -0.009916371665894985, 0.021459119394421577, -0.024320334196090698, -0.01383924949914217, -0.012446288950741291, -0.024380570277571678, 0.018884025514125824, -0.004431119654327631, 0.003328045830130577, 0.007823166437447071, 0.036774154752492905, 0.025133522227406502, -0.005481487140059471, 0.009841077029705048, 0.011580394580960274, -0.006151614245027304, -0.011008151806890965, 0.013523009605705738, 0.00039671134436503053, -0.007616105023771524, 0.008440586738288403, -0.007845754735171795, 0.01891414262354374, -0.005489016883075237, 0.006279615685343742, -0.04044855758547783, -0.0074391611851751804, 0.006866917945444584, -0.002848039148375392, -0.013846779242157936, 0.010157315991818905, 0.0030889837071299553, 0.0019972040317952633, -0.015616214834153652, -0.002057440113276243, -0.024982932955026627, -0.00606502452865243, -0.03135290369391441, 0.013673599809408188, 0.00678409356623888, -0.012529113329946995, -0.02377820946276188, 0.006392558570951223, -0.00034400474396534264, -0.011535217985510826, -0.009389305487275124, 0.03617179021239281, -0.01739318110048771, -0.018266605213284492, 0.0037760520353913307, -0.03556942939758301, -0.015646332874894142, -0.013154063373804092, -0.003277221694588661, -0.02493775449693203, -0.024350453168153763, -0.022784313187003136, 0.007905990816652775, -0.03782828524708748, -0.014147959649562836, -0.002486622426658869, -0.02713637426495552, 0.046321578323841095, 0.019862862303853035, 0.031774554401636124, -0.009140831418335438, -0.022407837212085724, -0.005586900282651186, 0.004028290510177612, -0.012265580706298351, -0.03942454233765602, -0.004190175328403711, -0.018341898918151855, -0.014893381856381893, 0.017619065940380096, 0.018643079325556755, -0.043098945170640945, 0.0020122630521655083, 0.039575133472681046, -0.01529997494071722, -0.03644285351037979, 0.002266384195536375, -0.027904383838176727, -0.017227530479431152, 0.0040358202531933784, -0.015917396172881126, -0.008696590550243855, 0.030283711850643158, 0.028792867437005043, -0.015962572768330574, -0.002347326371818781, 0.0031115722376853228, 0.0031322783324867487, -0.002241913229227066, -0.029033811762928963, 0.020450163632631302, -0.06222391501069069, -0.025645529851317406, -0.00836529117077589, 0.012514054775238037, -0.0031680436804890633, 0.0005788314738310874, 0.012295698747038841, 0.00891494657844305, -0.024109508842229843, -0.006738916505128145, 0.021368764340877533, -0.019064733758568764, 0.023763149976730347, 0.007793048396706581, -0.0072961002588272095, 0.0187334343791008, -0.015947513282299042, -0.0023134436924010515, 0.00975825171917677, -0.009261303581297398, -0.018356958404183388, 0.011474981904029846, 0.03782828524708748, -0.014976206235587597, -0.016263753175735474, 0.024410689249634743, -0.01770942099392414, 0.01612822152674198, -0.005665960256010294, -0.03340093046426773, 0.0034993423614650965, 0.03120231255888939, -0.011452392674982548, -0.005059834569692612, 0.00405840901657939, 0.016579993069171906, 0.012694763019680977, -0.0004503591335378587, 0.024726929143071175, -0.004333236254751682, 0.0036386384163051844, 0.013967251405119896, -0.0003115336876362562, 0.005270660854876041, 0.0006451853550970554, -0.02876274846494198, 0.004517709370702505, -0.021489236503839493, -0.002624036045745015, 0.013176651671528816, 0.003934171982109547, 0.009720603935420513, 0.00708527397364378, -0.016474580392241478, 0.0016442579217255116, -0.0024339158553630114, 0.011324390769004822, -0.011633100919425488, 0.0037722871638834476, -0.0005237719160504639, 0.034696005284786224, 0.02189583145081997, 0.011324390769004822, 0.0052894847467541695, -0.024726929143071175, 0.013553127646446228, 0.01770942099392414, 0.029063928872346878, 0.026308126747608185, -0.002736978931352496, 0.013357359915971756, -0.0009054242400452495, -0.0010146022541448474, 0.020329691469669342, 0.004766183439642191, 0.019968274980783463, 0.012212874367833138, 0.00459300447255373, -0.002951570088043809, -0.017076941207051277, -0.042617056518793106, 0.0033562814351171255, -0.006573266815394163, -0.007232099771499634, -0.01642940193414688, -0.030389124527573586, 0.002351091243326664, 9.8295473435428e-05, 0.007755401078611612, 0.0087643563747406, 0.03906312584877014, 0.021865712478756905, 0.02876274846494198, 0.0027106255292892456, -0.027302023023366928, 0.06077824905514717, -0.0012931942474097013, -0.0022193246986716986, 0.002712507965043187, -0.0006894212565384805, -0.003100277855992317, 0.001944497344084084, 0.00764998747035861, -0.028190504759550095, -0.007104097865521908, 0.002902628155425191, 0.014516905881464481, 0.002684272127225995, -0.026232831180095673, -0.015827041119337082, -0.018899083137512207, 0.000712009787093848, -0.027889324352145195, 0.009449541568756104, -0.013794071972370148, 0.013131475076079369, -0.02773873507976532, -0.013741365633904934, -0.033671993762254715, -0.002456504385918379, -0.0005985964671708643, 0.02675989829003811, -0.01709200069308281, -0.02299514040350914, -0.0143512561917305, 0.005925728473812342, -0.0055530178360641, 0.0010936621110886335, -0.008342702873051167, 0.011994518339633942, 0.006565737538039684, -0.011776162311434746, -0.008877298794686794, 0.001557668554596603, -0.012340875342488289, 0.015766805037856102, 0.03016323782503605, -0.01209993101656437, 0.037617459893226624, -0.03587061166763306, 0.025886474177241325, -0.0039266422390937805, -0.007578457240015268, 0.008146936073899269, -0.018417194485664368, 0.008161994628608227, -0.0061102015897631645, -0.01751365326344967, 0.0032715743873268366, 0.005955846514552832, 7.99422778072767e-05, -0.02385350503027439, 0.013327241875231266, 0.014720202423632145, -0.021459119394421577, -0.02007368765771389, -0.03550919517874718, 0.0028103915974497795, -0.0042127640917897224, -0.026022005826234818, -0.01673058234155178, 0.010383201763033867, 0.010518733412027359, -0.014931028708815575, 0.007717753294855356, -0.010767207480967045, -0.010691911913454533, 0.001383548486046493, -0.0029892176389694214, -0.014313608407974243, 0.006294674705713987, 0.01654987409710884, -0.012250521220266819, -0.020284514874219894, 0.014373844489455223, -0.019441207870841026, -0.005827845074236393, -0.015232210047543049, 0.02245301567018032, 0.006776563823223114, -0.009750722907483578, 0.010932856239378452, -0.009253774769604206, 0.009961549192667007, 0.013123945333063602, 0.004220293369144201, -0.020389927551150322, -0.0049544209614396095, 0.005406192038208246, 0.0036047555040568113, 0.024245040491223335, 0.019938156008720398, -0.003591578919440508, 0.010247670114040375, 0.0012244874378666282, 0.001105897594243288, 0.046020399779081345, 0.019561681896448135, -0.0005661254399456084, -0.00879447441548109, -0.025148581713438034, 0.0003832993970718235, 0.0018240250647068024, 0.015164444223046303, 0.002763332100585103, 0.002405680250376463, -0.03578025847673416, 0.005756314378231764, 0.03210585191845894, -0.015232210047543049, -0.00043482950422912836, 0.009713075123727322, 0.018643079325556755, -0.008297526277601719, 0.00045459449756890535, -0.01789012923836708, 0.015021382831037045, -0.011030740104615688, 0.01787506975233555, -0.007435396313667297, 0.0385812371969223, -0.02079652063548565, -0.009472130797803402, -0.01941109076142311, 0.018567785620689392, 0.01892920210957527, 0.006629738491028547, -0.04556862637400627, 0.0035708725918084383, -0.00035365193616598845, -0.009178479202091694, 0.009923901408910751, -0.014245843514800072, -0.014923499897122383, -0.002520505338907242, -0.017679302021861076, 0.03849088400602341, -0.004141233395785093, 0.05364026874303818, 0.013282065279781818, -0.020043570548295975, -0.018778610974550247, 1.5147267731663305e-05, 0.0018202603096142411, 0.02663942612707615, 0.002851804019883275, -0.025811178609728813, -0.017107058316469193, 0.009110713377594948, 0.007111627142876387, 0.0062871454283595085, -0.010978033766150475, -0.009795899502933025, 0.016579993069171906, 0.00894506461918354, 0.009201067499816418, 0.004495120607316494, -0.014675025828182697, 0.0028593335300683975, -0.015766805037856102, 0.006738916505128145, 0.0035539313685148954, 0.00900530070066452, -0.032135970890522, 0.034033410251140594, -1.0845737961062696e-06, -0.005364779848605394, 0.009502248838543892, 0.0093667171895504, -0.01703176461160183, 0.0037534635048359632, 0.00981848780065775, -0.005285719875246286, 0.010225081816315651, 0.015284916386008263, 0.012604408897459507, 0.004329471383243799, -0.007081509102135897, -0.001760965446010232, -0.016444461420178413, -0.009291421622037888, -0.009344128891825676, -0.006968566682189703, 0.023763149976730347, 0.019802626222372055, 0.015277386642992496, 0.009351657703518867, -0.016835996881127357, 0.02700084261596203, -0.01158792432397604, 0.004193940199911594, -0.005861727520823479, 0.012883001007139683, -0.025028109550476074, 0.018703315407037735, -0.02567564696073532, -0.009012829512357712, 0.006068789400160313, 0.023748092353343964, 0.009856135584414005, 0.006076319143176079, -0.02239277958869934, -0.0163691658526659, -0.021218175068497658, 0.00020800286438316107, -0.0003141219785902649, -0.011602982878684998, 0.007883402518928051, -0.0008574235835112631, 0.0004284764872863889, 0.006083848420530558, 0.0020706166978925467, -0.016760701313614845, -0.01371877733618021, -0.006098907440900803, 0.007036332041025162, 0.02165488712489605, -0.006840564776211977, -0.02451610192656517, -0.03364187479019165, 0.012920648790895939, -0.018447313457727432, 0.016399284824728966, -0.007247158791869879, -0.05469439923763275, -0.006945977918803692, 0.007288570981472731, -0.010036843828856945, 0.02519375830888748, -0.0010334260296076536, -0.028687452897429466, 0.04484579339623451, 0.004483826458454132, 0.0015275503974407911, 0.005696078296750784, -0.009133302606642246, -0.0074128080159425735, -0.007160569075495005, -0.003794875694438815, -0.00041647630860097706, 0.02081158012151718, 0.005123835057020187, 0.00038659354322589934, -0.011414744891226292, 0.014848204329609871, 0.009012829512357712, 0.0072998651303350925, 0.03252750635147095, 0.027723675593733788, -0.008410468697547913, -0.0006593032157979906, 0.01739318110048771, 0.016760701313614845, 0.0035934611223638058, 0.0008790708961896598, 0.018025659024715424, 0.01185898669064045, 0.015601156279444695, -0.029967471957206726, -0.0015219033230096102, -0.009645309299230576, -0.011986988596618176, 0.0061742025427520275, 0.027392376214265823, -0.004186410456895828, 0.011324390769004822, 0.025103405117988586, -0.017302826046943665, 0.02567564696073532, -0.013041120953857899, 0.0034259294625371695, -0.002838627202436328, -0.01073708850890398, 0.0029270991217345, -0.02063087187707424, -0.013771483674645424, 0.004615592770278454, 0.013154063373804092, -0.0036329911090433598, -0.012529113329946995, -0.004193940199911594, 0.015141855925321579, -0.05412215739488602, -0.019862862303853035, -0.036352500319480896, 0.014931028708815575, -0.02055557630956173, 0.009050477296113968, -0.0037722871638834476, -0.016896232962608337, -0.016941409558057785, -0.0042127640917897224, 0.010767207480967045, 0.001780730439350009, 0.010827443562448025, 0.004604298621416092, -0.03138301894068718, 0.01691129244863987, -0.05466428026556969, -0.00045977102126926184, -0.018116014078259468, 0.005560547113418579, -0.004785006865859032, 0.03204561769962311, -0.014750320464372635, 0.02427515760064125, 0.014637378044426441, 0.01917014643549919, 0.01152768824249506, -0.040057022124528885, -0.022799372673034668, 0.0033167514484375715, 0.007303630001842976, -0.010006725788116455, -0.017046822234988213, -0.004513944499194622, -0.001680964371189475, 0.0196369756013155, -0.00410735048353672, 0.01408019382506609, -0.01965203508734703, -0.01529997494071722, -0.011090976186096668, -0.02700084261596203, -0.021865712478756905, 0.011030740104615688, -0.017558829858899117, -0.004419825505465269, 0.007401513867080212, -0.0127173513174057, 0.00684432964771986, 0.024711869657039642, -0.022980080917477608, 0.017664242535829544, 0.048821378499269485, -0.034214116632938385, 0.014072664082050323, -0.005654666107147932, -0.01441149227321148, -0.033852700144052505, -0.04698417708277702, -0.020826639607548714, -0.005315837915986776, -0.012182756327092648, 0.0027143904007971287, -0.023010199889540672, 0.023371616378426552, -0.02822062373161316, 0.022181952372193336, 0.023989036679267883, 0.02287466824054718, -0.018567785620689392, 0.021609708666801453, 0.0037365220487117767, 0.02409444935619831, -9.376599336974323e-05, -0.00705515593290329, -0.0038664061576128006, -0.002791567938402295, 0.033671993762254715, 0.01398983970284462, -0.000277650891803205, -0.010112139396369457, 0.008930005133152008, -0.01957673951983452, 0.0130185317248106, 0.019938156008720398, -0.02391374111175537, 0.001031543593853712, -0.014328667894005775, 0.02415468543767929, -0.016595052555203438, -0.02329632081091404, -0.002486622426658869, 0.012589349411427975, -0.012521584518253803, 0.01776965707540512, -0.008530940860509872, 0.0028706276789307594, -0.029846999794244766, 0.012920648790895939, -0.01801060140132904, -0.007747871335595846, 0.009291421622037888, 0.026925547048449516, 0.015827041119337082, 0.010164845734834671, -0.017799774184823036, 0.012340875342488289, 0.03102160431444645, 0.0025769765488803387, 0.020510399714112282, -0.015540920197963715, 0.002827333053573966, 0.023190908133983612, -0.008576118387281895, -0.007416572887450457, -0.007695164531469345, 0.013244417496025562, -0.0009741310495883226, -0.0014569612685590982, -0.024982932955026627, -0.015510802157223225, 0.0002760037896223366, 0.02025439590215683, -0.00653938390314579, 0.002336032222956419, 0.030328888446092606, 0.016263753175735474, -0.007277276832610369, 0.004800065886229277, 0.012333346530795097, 0.001105897594243288, 0.0017186119221150875, -0.02567564696073532, -0.01392960362136364, -0.0028405096381902695, -0.007740342058241367, -0.025540117174386978, -0.0073488070629537106, -0.011459922417998314, -0.001389195560477674, 0.000419299874920398, -0.0036499325651675463, 0.017408238723874092, 0.01347783301025629, -0.004619357641786337, -0.010962974280118942, -0.01533009298145771, 0.00752951530739665, -0.002887569135054946, 0.003646167926490307, 0.018100954592227936, 0.0074918679893016815, 0.0038268761709332466, -0.0023830917198210955, -0.006185496691614389, -0.0022795607801526785, -0.0012884882744401693, -0.000858364743180573, -0.005353485234081745, 0.0014259020099416375, -0.012536643072962761, 0.0053384262137115, -0.005089952610433102, 0.07288570702075958, 0.004250411409884691, 0.006313498597592115, -0.004946891684085131, -0.005647136364132166, -0.03186490759253502, -0.009103184565901756, 0.01910991035401821, 0.03915347903966904, 0.004837713669985533, -0.0130185317248106, -0.013523009605705738, 0.022859608754515648, 0.008372820913791656, -0.02269395999610424, 0.018748493865132332, 0.017001645639538765, 0.03484659641981125, 0.0016235517105087638, 0.016263753175735474, 0.004193940199911594, -0.01703176461160183, -0.021564532071352005, 0.015096678398549557, -0.002972276182845235, 0.03740663081407547, -0.024169744923710823, -0.007194451987743378, 0.014238313771784306, 0.021022407338023186, 7.51186817069538e-05, -0.016760701313614845, 0.006407617591321468, -0.00597467040643096, -0.003358163870871067, 0.00909565482288599, 0.0030965132173150778, 0.011444863863289356, 0.0034861655440181494, -0.005323367193341255, 0.009133302606642246, 0.010609087534248829, 0.011640630662441254, 0.023522205650806427, -0.00055530178360641, -0.012378523126244545, -0.014961146749556065, 0.004739829804748297, 0.003952995408326387, -0.013282065279781818, -0.01763412542641163, -0.0024301509838551283, 0.0026993313804268837, 0.01733294501900673, 0.0017628477653488517, -0.0050334809347987175, 0.024365512654185295, 0.0006687151035293937, 0.01268723327666521, -0.003478636033833027, -0.022889727726578712, 0.01365854125469923, -0.0025562704540789127, -0.019621917977929115, -0.01917014643549919, -0.003105925163254142, -0.0036988744977861643, -0.015292446129024029, 0.0017421416705474257, -0.006878212094306946, -0.015586096793413162, 0.012077342718839645, 0.0014023722615092993, -0.021308528259396553, 0.0009458953863941133, 0.014245843514800072, -0.011753574013710022, 0.022347601130604744, 0.02329632081091404, -0.000533183803781867, 0.013026061467826366, 0.00903541874140501, -0.01935085467994213, -0.014253372326493263, 0.004845242947340012, 0.0023303849156945944, 0.034575533121824265, -0.029033811762928963, -0.010744618251919746, -0.02499799057841301, -0.028988635167479515, -0.004551592282950878, 0.004171351436525583, 0.019727330654859543, 0.00459300447255373, -0.005443839821964502, -0.02087181620299816, 0.0041035860776901245, 0.014923499897122383, -0.008169524371623993, -0.0021252057049423456, 0.021157938987016678, -0.006369969807565212, -0.0036329911090433598, 0.013575715944170952, -0.010225081816315651, 0.027603203430771828, 0.0030155708082020283, -0.03315998613834381, 0.009110713377594948, 0.005699843168258667, -0.02391374111175537, -0.0007609516615048051, -0.00013106063124723732, -0.02864227630198002, 0.010661793872714043, 0.02367279678583145, -0.010752147994935513, -0.029696408659219742, -0.019426150247454643, 0.010262729600071907, 0.004050879273563623, -0.0032471034210175276, -0.011264154687523842, 0.0029270991217345, -0.0008207171922549605, -0.004544062539935112, -0.015171973966062069, -0.006829270627349615, 0.0010371907847002149, 0.0052141896449029446, 0.011663218960165977, 0.018477430567145348, 0.002624036045745015, 0.033431049436330795, -0.00013588422734756023, -0.01781483367085457, -0.023085493594408035, 0.016579993069171906, -0.008568588644266129, 0.0150590306147933, -0.004227823112159967, 0.004427355248481035, 0.015796924009919167, 0.0008616589475423098, 0.014539494179189205, -0.011452392674982548, -0.016339048743247986, -0.0026296833530068398, -0.016384225338697433, 0.02561541087925434, -0.037918638437986374, 0.006001023575663567, -0.020103806629776955, 0.0037045215722173452, 0.00960766151547432, -0.03581037372350693, 0.03984619677066803, -0.02361256070435047, -0.009984137490391731, 0.005718667060136795, 0.010691911913454533, -0.010179905220866203, -0.001260252669453621, 0.008899887092411518, 0.01517950277775526, 0.016941409558057785, 0.034274354577064514, 0.00684432964771986, -0.0062720864079892635, -0.0010343671310693026, 0.007446690928190947, 0.011151212267577648, -0.026353303343057632, 0.010518733412027359, 0.002778391120955348, 0.004352059680968523, 0.0007628340390510857, -0.02361256070435047, 0.014584671705961227, 0.003930407110601664, -0.0029496876522898674, 0.022407837212085724, 0.0012244874378666282, -0.011572864837944508, -0.010654264129698277, 0.0072358641773462296, -0.0035012245643883944, -0.0074128080159425735, 0.006106437183916569, 0.005199130158871412, 0.019998392090201378, 0.008146936073899269, 0.0052405428141355515, -0.00903541874140501, -0.0026616835966706276, 0.026805074885487556, 0.018703315407037735, 0.015571038238704205, -0.016323989257216454, 0.0051012467592954636, 0.011090976186096668, -0.001105897594243288, 0.016293872147798538, -0.007966226898133755, -0.0040998212061822414, -0.013891955837607384, -0.023341497406363487, -0.011008151806890965, 0.001691317418590188, -0.04852019622921944, -0.0357501395046711, 0.0020310867112129927, -0.002787803066894412, -0.005617018323391676, -0.002390621230006218, 0.009735663421452045, -0.0032075736671686172, 0.02141394093632698, -0.0074241021648049355, 0.016143281012773514, 0.004766183439642191, 0.022618664428591728, -0.0023642678279429674, -0.018131073564291, 0.008967652916908264, 0.002078146208077669, 0.014042546041309834, 0.016685405746102333, 0.006433970760554075, 0.016519756987690926, -0.018296722322702408, -0.008538470603525639, 0.014607260003685951, -0.007073979824781418, 0.013726306147873402, 0.00818458292633295, -0.003828758606687188, 0.028145328164100647, -0.021790416911244392, -0.0032000441569834948, 0.0009891900699585676, 0.0026654484681785107, -0.01921532303094864, 0.010541321709752083, -0.008892357349395752, 0.002093205228447914, 0.0041675865650177, -0.0002851804019883275, -2.6162124413531274e-05, -0.003591578919440508, -0.005473957862704992, 0.003497459925711155, 0.012642056681215763, 0.007183157838881016, -0.002757685026153922, -0.005929493345320225, 0.01630892977118492, 0.007830696180462837, -0.014147959649562836, 0.005150188691914082, 0.022859608754515648, -0.024169744923710823, -0.00808669999241829, 0.004483826458454132, 0.018462371081113815, -0.03276845067739487, -0.0026259184814989567, -0.003011806169524789, 0.0027463906444609165, 0.015842100605368614, 0.004224058240652084, 0.013417595997452736, 0.009080595336854458, -0.005846668500453234, 0.00410735048353672, 0.007627399172633886, -0.018838847056031227, 0.010541321709752083, 0.022181952372193336, 0.0024301509838551283, 0.005093717016279697, 0.024666693061590195, -0.004634416662156582, 0.0007967168348841369, -0.01801060140132904, 0.0064000883139669895, 0.0020367340184748173, -0.010511203669011593, 0.01917014643549919, 0.01149757020175457, -0.009908841922879219, 0.009773311205208302, -0.004781242460012436, -0.007578457240015268, 0.020299574360251427, -0.008786944672465324, 0.006584561429917812, 0.019426150247454643, -0.010887679643929005, -0.0014315490843728185, 0.001885202364064753, -0.010594028048217297, -0.02682013437151909, 0.009532366879284382, 0.013854308053851128, 0.013342301361262798, 0.01061661634594202, 0.0007680105627514422, 0.01502891257405281, 0.004013231489807367, -0.005364779848605394, -0.021037466824054718, -0.0031868673395365477, -0.026564130559563637, -0.00945707131177187, 0.01043590810149908, 0.01347783301025629, -0.025886474177241325, 0.006245733238756657, 0.0012169579276815057, 0.0012348404852673411, -0.01757388934493065, 0.01923038251698017, -0.0017129647312685847, 0.01213004905730486, 0.01861296221613884, 0.026609307155013084, 0.010134727694094181, -0.02731708250939846, 0.02061581239104271, 0.001419313601218164, -0.008598706685006618, -0.009103184565901756, 0.00029953353805467486, 0.015902336686849594, -0.0062532625161111355, -0.005579371005296707, -0.012416170910000801, 0.01581198163330555, -0.005402427166700363, -0.009411894716322422, -0.0029590995982289314, 0.0022607368882745504, 0.021669944748282433, 0.004231587518006563, 0.023205965757369995, -0.01879367046058178, 0.01775459758937359, 0.008131876587867737, -0.00041882929508574307, -0.01137709803879261, 0.03605131804943085, 0.0074579850770533085, -0.015322564169764519, -0.018236486241221428, 0.009321539662778378, 0.020600754767656326, -0.018462371081113815, 0.016640229150652885, -0.016715524718165398, 0.02329632081091404, -0.004811360500752926, -0.005756314378231764, -0.0013167239958420396, 0.00231156125664711, -0.010240141302347183, 0.019862862303853035, -0.023205965757369995, -0.00011194271792192012, -0.0013374302070587873, -0.026112359017133713, -0.01807083748281002, -0.004751124419271946, -0.015887277200818062, 0.006147849373519421, -0.009494719095528126, -0.006742680910974741, 0.0001795318821677938, -0.015676451846957207, 0.04586980864405632, -0.012754999101161957, -0.015887277200818062, -0.016820937395095825, 0.010051903314888477, 0.028973575681447983, 0.023989036679267883, -0.0016489638946950436, 0.009050477296113968, -0.005489016883075237, -0.01353806909173727, 0.010578969493508339, -0.016354108229279518, 0.0017901422688737512, -0.005169012118130922, 0.01691129244863987, -0.021218175068497658, 0.011331920512020588, -0.004807595629245043, -0.0036574620753526688, 0.008877298794686794, -0.0040697031654417515, 0.013304653577506542, -0.0024282687809318304, 0.004841478541493416, -0.01969721168279648, -0.006019847467541695, 0.017107058316469193, 0.02165488712489605, -0.00260897702537477, -0.004849007818847895, 0.009231185540556908, -0.013334771618247032, -0.005895610433071852, 0.005564311984926462, -0.026323186233639717, 0.01855272613465786, -0.020118864253163338, 0.0006823623552918434, 0.009494719095528126, 0.01286794152110815, -0.0052292486652731895, 0.011806280352175236, 0.002465916331857443, 0.01971227116882801, -0.005428780801594257, 0.023190908133983612, 0.0018814376089721918, -0.012370993383228779, 0.016820937395095825, -0.014065134339034557, -0.018221426755189896, 0.0019209675956517458, -0.0011595453834161162, -0.03472612425684929, -0.012393582612276077, 0.03352140262722969, -0.025961769744753838, -8.723649807507172e-05, 0.027046019211411476, -0.015322564169764519, -0.019365914165973663, -0.014479258097708225, 0.00632855761796236, 0.013794071972370148, 0.0050033628940582275, 0.012785117141902447, 0.012604408897459507, -0.008689060807228088, -0.012950766831636429, 0.0012169579276815057, 0.01886896602809429, 0.001146368682384491, 0.0030381595715880394, -0.008169524371623993, -0.008553529158234596, -0.006641032639890909, 0.016504697501659393, 0.020164042711257935, -0.03888241574168205, 0.0033111043740063906, 5.4559575801249593e-05, -0.00021494412794709206, 0.007036332041025162, -0.02063087187707424, 0.00824481900781393, -0.0006484795012511313, -0.00036518150591291487, -0.0031191017478704453, -0.0029553347267210484, -0.013003473170101643, 0.0064452653750777245, 0.008500822819769382, -0.010789795778691769, 0.006976095959544182, 0.014803027734160423, -0.00015917865675874054, 0.009532366879284382, 0.003804287640377879, -0.005530429072678089, -0.008546000346541405, -0.005022186785936356, -0.003248985856771469, 0.006046201102435589, 0.023160789161920547, -0.011075916700065136, 0.014486787840723991, 0.015540920197963715, 0.01751365326344967, 0.004438649397343397, 0.0002809450379572809, -0.0005068305181339383, 0.014712672680616379, -0.015171973966062069, 0.018899083137512207, -0.0014673143159598112, -0.014712672680616379, 0.01392960362136364, 0.001384489587508142, 0.010074491612613201, 0.00818458292633295, -0.013974780216813087, 0.004943126812577248, 0.0120095768943429, 0.018718374893069267, 0.009585073217749596, -0.00963777955621481, 0.026865310966968536, 0.025781061500310898, 0.02067604847252369, 0.016564933583140373, 0.018447313457727432, -0.0010682500433176756, 0.01923038251698017, -0.004171351436525583, 0.026383422315120697, -0.002861215965822339, 0.017619065940380096, 0.005458898842334747, 0.0030776893254369497, 0.0034861655440181494, -0.01542044710367918, -0.008342702873051167, 0.010051903314888477, -0.0012122519547119737, -0.00474359467625618, 0.020660990849137306, 0.00360287306830287, 0.012815235182642937, 0.0067238574847579, -0.024787165224552155, 0.012114990502595901, -0.005319602787494659, 0.00888482853770256, -0.002584506059065461, 0.0075859869830310345, 0.015412918291985989, 0.011203918606042862, 0.037496987730264664, -0.0014804910169914365, 0.0231156125664711, -0.013146533630788326, 0.01612822152674198, -0.015006324276328087, -0.010428379289805889, -0.015412918291985989, -0.010232611559331417, 0.002752037951722741, -0.01751365326344967, 0.008320114575326443, -0.006260792259126902, -0.0029101576656103134, 0.01061661634594202, 0.008267408236861229, 0.01795036531984806, -0.01709200069308281, -0.006595855578780174, -0.005918199196457863, -0.0011030740570276976, 0.029756644740700722, -0.009442012757062912, -0.015706568956375122, -0.012340875342488289, 0.009110713377594948, -0.0013317830162122846, -0.0012150754919275641, 0.012905589304864407, -0.011482510715723038, 0.010360613465309143, 0.020118864253163338, 0.0029798056930303574, -0.01685105636715889, -0.005632077343761921, 0.01715223677456379, 0.004468767438083887, 0.005903140176087618, -0.02073628455400467, -0.005251836962997913, 0.008146936073899269, 0.003297927789390087, 0.012145108543336391, -0.009050477296113968, -0.0007755400729365647, -0.008049052208662033, 0.01295829564332962, 0.02519375830888748, -0.011060858145356178, 0.010842502117156982, 0.0014597848057746887, -0.026067182421684265, 0.02555517479777336, -0.014629848301410675, -0.009042947553098202, 0.008207172155380249, 0.005699843168258667, -0.015887277200818062, 0.0019153205212205648, 0.00011917811207240447, -0.02385350503027439, -0.015322564169764519, -0.006776563823223114, -0.00912577286362648, -0.0012640174245461822, 0.006686209701001644, 0.00486406683921814, -0.006012318190187216, 7.576574716949835e-05, -0.01542044710367918, 0.0073450421914458275, -0.016037868335843086, -0.00205367524176836, -0.0034560475032776594, 0.021067583933472633, -0.005617018323391676, -0.00045365330879576504, -0.015171973966062069, 0.008576118387281895, 0.013922073878347874, 0.017016705125570297, -0.030253592878580093, -0.004231587518006563, -0.010962974280118942, -0.007604810409247875, 0.015555978752672672, -0.014193136245012283, -0.019200263544917107, 0.01957673951983452, 0.014697614125907421, 0.019124969840049744, -0.003834405681118369, 0.006588325835764408, 0.001959556480869651, -0.009502248838543892, -0.023281261324882507, 0.011821338906884193, 0.002848039148375392, -0.01971227116882801, 0.008666472509503365, 0.009103184565901756, -0.04448437690734863, -0.001166133675724268, -0.0040885270573198795, 0.00597467040643096, 0.0025073285214602947, 0.019802626222372055, -0.004310647491365671, 0.005918199196457863, -0.005891846027225256, 0.002287090290337801, -0.005869257263839245, -0.021097702905535698, 0.021820535883307457, -0.021127820014953613, 0.009871195070445538, 0.003606637939810753, -0.010360613465309143, 0.010970504023134708, -0.04671311378479004, -0.0019708506297320127, -0.001572727574966848, -0.016158340498805046, -0.031413137912750244, -0.005876787006855011, 0.0019859096501022577, 0.0073488070629537106, -0.016534816473722458, -0.0021760298404842615, 0.006505501456558704, 0.014396433718502522, -0.030569832772016525, 0.001691317418590188, 0.01587221771478653, -0.009954019449651241, 0.005105011630803347, 0.009042947553098202, 0.002693684073165059, -0.009524837136268616, -0.02907898835837841, 0.008922475390136242, -0.022483132779598236, -0.00933659914880991, 0.011392156593501568, 0.005323367193341255, -0.0032621624413877726, -1.4213431313692126e-05, -0.0020800286438316107, -0.0017091999761760235, -0.040057022124528885, -0.006245733238756657, -0.0007844814099371433, -0.030554773285984993, 0.0009440130088478327, 0.0062683215364813805, -0.01490844041109085, 0.005635842215269804, 0.012890530750155449, -0.01691129244863987, -0.013741365633904934, -0.029274756088852882, -0.015194562263786793, -0.017408238723874092, -0.009080595336854458, 0.010782266035676003, -0.00684432964771986, -0.00038000522181391716, -0.010880149900913239, 0.028687452897429466, -0.0032358092721551657, 2.922098974522669e-05, -0.004122409503906965, 0.005489016883075237, -0.0061930264346301556, -0.001984027214348316, -0.01125662587583065, -0.017438357695937157, -0.011753574013710022, 0.03578025847673416, -0.008011404424905777, -0.02227230742573738, -0.0004583592526614666, -0.0007105980184860528, -0.0067238574847579, -0.005985964555293322, 0.003892759559676051, 0.012288169004023075, -0.0065092658624053, -0.0018004953162744641, 0.015977632254362106, -0.006091378163546324, 0.010428379289805889, 0.022091597318649292, 0.0011228389339521527, 0.005654666107147932, 0.009735663421452045, -0.012242992408573627, -0.003666874021291733, 0.011038269847631454, -0.006185496691614389, 0.004171351436525583, 0.01581198163330555, -0.016414344310760498, -0.03972572460770607, -0.0007383631309494376, 0.003828758606687188, 0.016218576580286026, -0.017784714698791504, -0.01891414262354374, 0.01612822152674198, -0.02049534022808075, 0.0076801055110991, -0.006061260122805834, -0.007815636694431305, 0.013033591210842133, -0.007397748995572329, 0.0061440845020115376, -0.0010127198183909059, 0.009931431151926517, 0.0004124762781430036, 0.0020197925623506308, 0.004754888825118542, 0.006765269674360752, 0.013410067185759544, -0.010872620157897472, 0.004830183926969767, -0.012160167098045349, 0.005500311031937599, -0.012227932922542095, -0.010902738198637962, 0.0003392988000996411, 0.01789012923836708, 0.019260499626398087, -0.005123835057020187, -0.02207653969526291, -0.024862460792064667, -0.013635952025651932, -0.02397397719323635, 0.004611828364431858, -0.004845242947340012, 0.003873935667797923, 0.0083351731300354, 0.0024433278013020754, -0.014931028708815575, -0.04044855758547783, -0.011791220866143703, -0.015977632254362106, 0.010511203669011593, 0.039635367691516876, 0.00570360803976655, 0.006166673265397549, 0.021368764340877533, 0.004401001613587141, -0.0020009686704725027, -0.01898943819105625, -0.004480061586946249, 0.025660589337348938, -0.0019153205212205648, 0.011354508809745312, -0.0024885048624128103, -0.00447253230959177, -0.003011806169524789, 0.0083351731300354, 0.012830294668674469, -0.0017939070239663124, -0.0007077744230628014, -0.0040395851247012615, 0.0021590886171907187, -0.011986988596618176, 0.02499799057841301, 0.025133522227406502, -0.008282466791570187, 0.02901875227689743, -0.0072848061099648476, -0.011309332214295864, 0.007860814221203327, 0.006181732285767794, -0.002386856358498335, 0.0009054242400452495, -0.008847180753946304, -0.0163691658526659, 0.013703717850148678, -0.017483534291386604, -0.0007717753178440034, 0.021218175068497658, -0.01149757020175457, -0.024666693061590195, 0.003188749775290489, -0.012378523126244545, -0.008583647198975086, 0.01073708850890398, -0.015435506589710712, -0.0035802845377475023, 0.00687444768846035, -0.007220805156975985, 0.008869769051671028, -0.00921612698584795, 0.0005336544127203524, 0.0010447202948853374, -0.008056581020355225, 0.011904164217412472, 0.0037195805925875902, 0.010104609653353691, -0.03556942939758301, 0.0030155708082020283, 0.02093205228447914, -0.006851858925074339, 0.007593516260385513, -0.011218978092074394, 0.011663218960165977, -0.008056581020355225, -0.013123945333063602, 0.004660769831389189, 0.01605292595922947, -0.008960123173892498, -0.0011623689206317067, -0.011633100919425488, 0.018296722322702408, -0.006554443389177322, -0.003472988959401846, 0.021353704854846, -0.015586096793413162, 0.007747871335595846, 0.022709017619490623, 0.00030635716393589973, -0.005714902188628912, 0.003442870918661356, -0.01758894883096218, -0.009268833324313164, 0.014238313771784306, -0.011693337000906467, -0.01401995774358511, 0.007450455334037542, -0.02069110795855522, -0.010887679643929005, 0.009871195070445538, 0.0012291934108361602, 0.01262699719518423, 0.005816550459712744, 0.003715815953910351, -0.014614789746701717, 0.000863070716150105, -0.0051916008815169334, 0.017317885532975197, 0.005929493345320225, -0.019019555300474167, -0.011090976186096668, -0.009539895690977573, -0.004273000173270702, -0.012152638286352158, 0.009442012757062912, 0.03231668099761009, 0.020977230742573738, -0.013944662176072598, 0.014245843514800072, -0.012905589304864407, -0.008719178847968578, -0.015586096793413162, 0.02519375830888748, 0.0013468420365825295, -0.007303630001842976, -0.012581820599734783, 0.010127197951078415, -0.013854308053851128, -0.007164333947002888, -0.009088125079870224, -0.003983113449066877, 0.005722431931644678, -0.030027708038687706, 0.0052254837937653065, -0.003631108906120062, 0.0014654318802058697, -0.014569612219929695, -0.010187434032559395, 0.0007538927020505071, -0.0017139059491455555, 0.0072019812650978565, 0.0034108704421669245, 0.011414744891226292, -0.005342191085219383, -0.014833145774900913, -0.013387477956712246, -0.013395007699728012, 0.02835615538060665, 0.016941409558057785, 0.013108886778354645, 0.015571038238704205, 0.0080339927226305, -0.021037466824054718, -0.007845754735171795, -0.007058920804411173, -0.006607149727642536, 0.007875872775912285, -0.01304864976555109, -0.0062043205834925175, 0.017483534291386604, -0.018778610974550247, -0.007119156885892153, 0.0012621349887922406, 0.004393472336232662, 0.0014155488461256027, 0.021519355475902557, 0.015510802157223225, 0.002486622426658869, 0.0036649915855377913, -0.006878212094306946, -0.0051125409081578255, 0.0009171891142614186, -0.002972276182845235, -0.011572864837944508, 0.016067985445261, 0.01867319829761982, 0.017076941207051277, -0.004495120607316494, 0.003188749775290489, 0.014524435624480247, -0.0008720119949430227, 0.0034541653003543615, -0.0013873132411390543, -0.009592602960765362, -0.019682154059410095, -0.011369568295776844, 0.0020649696234613657, -0.0011567218462005258, 0.01587221771478653, -0.012340875342488289, 0.015917396172881126, -0.01746847666800022, 8.123640873236582e-05, -0.007382689975202084, -0.0014513140777125955, -0.001071073580533266, 0.00521795405074954, 0.004329471383243799, -0.003606637939810753, 0.021820535883307457, 0.006987390108406544, 0.020103806629776955, -0.039273951202631, 0.0009666015394032001, -0.006976095959544182, 0.0008856592467054725, -0.019185205921530724, -0.011791220866143703, 0.020480282604694366, 0.000692244793754071, 0.003597225993871689, 0.020585695281624794, -0.0037289925385266542, 0.008591176941990852, 0.017860010266304016, 0.00582408020272851, -0.02347702905535698, -0.013154063373804092, -0.00588431628420949, -0.002177912276238203, -0.006234438624233007, -0.029846999794244766, 0.01715223677456379, 0.003552048932760954, 0.0061930264346301556, 0.01049614418298006, 0.00912577286362648, 0.015977632254362106, -0.022046420723199844, 0.0008193054236471653, 0.012288169004023075, -0.0062532625161111355, 0.00027012135251425207, 0.001166133675724268, -0.02505822665989399, 0.018748493865132332, -0.0033412224147468805, -0.015555978752672672, -0.03668379783630371, 0.021323587745428085, -0.021037466824054718, 0.02651895396411419, 0.016956469044089317, 0.01423078402876854, 0.017619065940380096, 0.02841639146208763, -0.01277758739888668, 0.013974780216813087, 0.005440074950456619, -0.009765781462192535, 0.013342301361262798, 0.008440586738288403, -0.0012244874378666282, -0.008598706685006618, -0.01128674391657114, -0.012182756327092648, 0.003527577966451645, -0.0024094448890537024, -0.015013854019343853, -0.024832341820001602, -0.010458497330546379, 0.006196791306138039, -0.002008498180657625, 0.0301180612295866, -0.0031605141703039408, 0.01134697999805212, 0.002078146208077669, 0.0005694195860996842, 0.020480282604694366, 0.014373844489455223, -0.024245040491223335, -0.010044373571872711, -0.008741767145693302, -0.018718374893069267, 0.008237290196120739, -0.002560035325586796, -0.008613765239715576, -0.004913008771836758, 0.0011924869613721967, 0.002465916331857443, -0.006200555711984634, 0.015510802157223225, 0.003587814047932625, 0.01600774936378002, 0.008696590550243855, 0.04096056520938873, -0.0017054352210834622, 0.01161804236471653, 0.00023106200387701392, -0.014893381856381893, 0.01049614418298006, 0.008169524371623993, -0.00806411076337099, 0.012514054775238037, -0.0012263698736205697, 0.007725283037871122, -0.014163018204271793, 0.01709200069308281, -0.001230134628713131, 0.006129025481641293, -0.005899375304579735, -0.007495632395148277, 0.009050477296113968, 0.004491355735808611, -0.018628021702170372, 0.007890932261943817, -0.0008658942533656955, -0.008169524371623993, -0.013123945333063602, 0.0030099237337708473, 0.003877700539305806, -0.00930648110806942, 0.009600131772458553, -0.00573372608050704, 0.009464601054787636, -0.019998392090201378, 0.0187334343791008, -3.6882862332277e-05, -0.008289996534585953, 0.04138221591711044, 0.0061553786508738995, 0.0032320444006472826, 0.01052626222372055, 0.014125371351838112, -0.0027896855026483536, -0.012920648790895939, -0.008997770957648754, 0.020118864253163338, -0.008026462979614735, -0.003493695054203272, 0.010194963775575161, -0.004577945452183485, 0.0075558689422905445, -0.003491812851279974, -0.009411894716322422, -0.011836398392915726, -0.0013374302070587873, 0.005669725127518177, -0.011565336026251316, 0.009630249813199043, 0.010804854333400726, -0.005778903141617775, -0.004781242460012436, 0.0023849739227443933, 0.020901935175061226, 0.005876787006855011, -0.014893381856381893, -0.015962572768330574, 0.017257649451494217, 0.004913008771836758, -0.006046201102435589, 0.01517950277775526, -0.004480061586946249, -0.012559231370687485, 0.008425528183579445, 0.0025581528898328543, -0.0007496573962271214, -0.0008136582328006625, 0.01389948558062315, 0.00020223807950969785, -0.005353485234081745, -0.0003472988901194185, 0.011188860051333904, 0.005854198243469, 0.015616214834153652, 0.006151614245027304, 0.008192112669348717, -0.002351091243326664, 0.0011397803900763392, 0.011821338906884193, -0.009314010851085186, -0.015224680304527283, -0.010895208455622196, 0.005120070651173592, 0.012551702558994293, 0.003937936387956142, -0.011068387888371944, -0.011429804377257824, -0.008546000346541405, -0.006588325835764408, 0.013545597903430462, -0.008372820913791656, -0.005500311031937599, 0.0134477149695158, -0.022769253700971603, 0.01935085467994213, 0.009675427339971066, -0.0015388446627184749, -0.00518783601000905, -7.370689854724333e-05, -0.004254176281392574, 0.0072019812650978565, -0.014863263815641403, 0.017107058316469193, 0.004295588470995426, -0.002322855405509472, -0.01727270893752575, -0.016399284824728966, 0.008576118387281895, -0.009110713377594948, -0.0013863720232620835, 0.002861215965822339, 0.00800387468189001, -0.009750722907483578, 0.0031718083191663027, -0.03846076503396034, -0.004201469477266073, -0.02335655689239502, -0.012325816787779331, -0.023868564516305923, 0.0076801055110991, -0.0014296667650341988, -0.027874266728758812, -0.02347702905535698, 0.01745341718196869, 0.0008673060801811516, 0.029485581442713737, -0.0028706276789307594, -0.011843928135931492, 0.0016583757242187858, 0.002599565079435706, 0.01775459758937359, -0.007928580045700073, 0.015977632254362106, 0.00530830817297101, -0.014577141962945461, -0.010262729600071907, 0.003424047026783228, 0.006817976012825966, -0.003531342837959528, -0.03216608986258507, -0.007702694274485111, 0.02335655689239502, -0.0031134546734392643, 0.0027162726037204266, 0.023642677813768387, -0.007608575280755758, 0.010398260317742825, -0.018236486241221428, -0.0011538981925696135, -0.0014428433496505022, 0.01770942099392414, 0.0032715743873268366, -0.01807083748281002, 0.030374065041542053, 0.0013063709484413266, -0.00699491985142231, 0.002032969146966934, -0.0002557682164479047, -0.017543770372867584, 0.00407723244279623, 0.007058920804411173, 0.004393472336232662, -0.007198216859251261, 0.003527577966451645, 0.013492891564965248, -0.0072810412384569645, 0.006061260122805834, -0.008056581020355225, 0.0025280348490923643, -0.019260499626398087, 0.011512628756463528, 0.010134727694094181, 0.014531964436173439, 0.003764757653698325, 0.007905990816652775, -0.0032903982792049646, 0.003561460878700018, 0.0073149241507053375, 0.020359810441732407, -0.019606858491897583, -0.012325816787779331, -0.0018842612626031041, -0.010834972374141216, -0.002096970099955797, -0.03225644305348396, 0.01849249005317688, -0.014471728354692459, 0.004043349996209145, 0.003145455149933696, 0.03171432018280029, -0.01642940193414688, -0.005345955956727266, -0.0013402537442743778, 0.01947132684290409, 0.002688036998733878, -0.008990241214632988, -0.0026466245763003826, 0.0345454178750515, 0.023989036679267883, -0.0023397968616336584, 0.005315837915986776, 0.013861837796866894, -0.010210023261606693, 0.0011021328391507268, -0.0075859869830310345, -0.017182353883981705, 0.014923499897122383, -0.010270259343087673, -0.006027377210557461, 0.0037214630283415318, -0.03156372904777527, -0.007480573374778032, 4.726535553345457e-05, 0.0015209621051326394, 0.0038155820220708847, 0.005251836962997913, 0.0029440405778586864, -0.0015491978265345097, 0.002320973202586174, 0.019923098385334015, 0.00771022355183959, 0.04957433044910431, 0.0012414288939908147, 0.023266201838850975, -0.018281662836670876, 0.008786944672465324, -0.02523893490433693, -0.0017430827720090747, -0.01533009298145771, -0.017046822234988213, -0.021203115582466125, 0.009351657703518867, -0.004401001613587141, 0.02385350503027439, 0.03204561769962311, -0.004830183926969767, -0.0003750639734789729, 0.004634416662156582, -0.009765781462192535, -0.004525238648056984, 0.010473555885255337, 0.0020197925623506308, 0.009886253625154495, -0.01441149227321148, -0.01185898669064045, 0.017287766560912132, 0.015917396172881126, 0.007179392967373133, -0.011708396486938, 0.005775138270109892, 0.006215615198016167, 0.01600774936378002, -0.015224680304527283, -0.03285880386829376, 0.019019555300474167, 0.016158340498805046, -0.0033656933810561895, 0.01408019382506609, 0.018522607162594795, 0.005786432418972254, -0.01600774936378002, -0.010910267941653728, -0.009472130797803402, 0.004227823112159967, 0.00012129578681197017, -0.014644907787442207, -0.0017026116838678718, 0.007868343964219093, 0.0003590637643355876, -0.014690084382891655, 0.012423700653016567, 0.00483394879847765, -0.010164845734834671, -0.03644285351037979, -0.020404987037181854, -0.005624548066407442, 0.0166703462600708, 0.004457473289221525, -0.0017280237516388297, -0.012378523126244545, -0.015571038238704205, -0.011075916700065136, -0.0074090431444346905, 0.003233926836401224, 0.00827493704855442, -0.020525459200143814, 0.012182756327092648, -0.006659856531769037, 0.01751365326344967, 0.010157315991818905, -0.006177967414259911, 0.019079791381955147, -0.0064000883139669895, -0.020525459200143814, -0.024982932955026627, -0.016926350072026253, -0.022362660616636276, -0.03219620883464813, -0.0003108278033323586, -0.004340765532106161, 0.010601557791233063, -0.0014701378531754017, -0.01058649830520153, -0.010699441656470299, -0.012536643072962761, -0.022648781538009644, 0.0017176707042381167, -0.002172265201807022, 0.00632855761796236, 0.013131475076079369, -0.008282466791570187, -0.005605724174529314, -0.02067604847252369, -0.014072664082050323, 0.006637267768383026, 0.02523893490433693, -0.011512628756463528, -0.006456559523940086, -0.012664644978940487, -0.003804287640377879, 0.017302826046943665, 0.014298549853265285, 0.00963777955621481, -0.010865090414881706, 0.008960123173892498, 0.0015953161055222154, -0.011362038552761078, -0.02233254350721836, -0.0072170402854681015, -0.002821685979142785, 0.016760701313614845, -0.012107460759580135, 0.008741767145693302, 0.001126603689044714, 0.022422896698117256, -0.0005251836846582592, 0.018748493865132332, 0.017016705125570297, 0.017920246347784996, 0.004619357641786337, 0.014795497991144657, -0.011640630662441254, -0.001662140479311347, 0.04484579339623451, 0.004649475682526827, -0.0016828466905280948, 0.01167827844619751, 0.006196791306138039, 0.023266201838850975, -0.016293872147798538, 0.010353083722293377, 0.01152768824249506, -0.02529917098581791, -0.0026654484681785107, 0.03023853339254856, 0.00043435892439447343, 0.007574692368507385, 0.006674915552139282, -0.0024790929164737463, 0.009826017543673515, -0.0015764923300594091, -0.00900530070066452, 0.02682013437151909, 0.032135970890522, -0.004973244853317738, -0.01623363606631756, 0.011693337000906467, -0.03255762532353401, 0.008463175036013126, 0.023642677813768387, 0.008011404424905777, -0.00711539201438427, -0.017619065940380096, -0.029334992170333862, 0.00960766151547432, -0.012732410803437233, 0.00708527397364378, -0.024004094302654266, 0.013372419402003288, -0.012002047151327133, -0.0013515480095520616, -0.014720202423632145, -0.0020367340184748173, 0.017724478617310524, 0.004513944499194622, -0.0005501252016983926, -0.011746044270694256, -0.008297526277601719, 0.017197413370013237, -0.006735151633620262, -0.03237691521644592, -0.005025951657444239, 0.0005313014262355864, 0.006102672312408686, -0.004483826458454132, -0.00016706112364772707, 0.011354508809745312, -0.0025506233796477318, -0.005635842215269804, -0.015977632254362106, -0.007077744696289301, 0.019908038899302483, 0.006166673265397549, 0.02493775449693203, 0.011813810095191002, 0.0023492088075727224, 0.0014277843292802572, -0.017920246347784996, 0.017844950780272484, 0.007875872775912285, -0.01268723327666521, 0.012860412709414959, 0.028747688978910446, -0.033732227981090546, 0.0062532625161111355, -0.010774736292660236, 0.02049534022808075, -0.011655690148472786, 0.0036424030549824238, -0.02925969660282135, -0.015540920197963715, -0.006618443876504898, 0.00836529117077589, -0.01983274333178997, -0.0011576629476621747], "53b5eeef-535d-450e-a8d3-6b96ae833a9d": [-0.02365739457309246, -0.016679411754012108, 0.00017476713401265442, 0.018887978047132492, -0.035337045788764954, -0.05156932771205902, 0.032410360872745514, 0.04094653204083443, -0.003634648397564888, 0.016720060259103775, 0.006649408023804426, 0.04175950214266777, 0.0005648439982905984, -0.0053926934488117695, 0.034984759986400604, 0.009261070750653744, -0.019822891801595688, 0.00954560935497284, 0.00021403946448117495, -0.047368988394737244, 0.07652746886014938, -0.030811520293354988, -0.011273168958723545, 0.012228406965732574, -0.009430439211428165, -0.025581421330571175, -0.015283814631402493, 0.017695622518658638, -0.01338688749819994, -0.026448586955666542, 0.015730947256088257, 0.01940285786986351, 0.011896444484591484, -0.0066121467389166355, 0.02388773486018181, -0.032952338457107544, 0.011842247098684311, 0.01699104905128479, -0.03246455639600754, -0.01505347341299057, -0.009091702289879322, 0.022681832313537598, 0.002166223246604204, 0.008549722842872143, -0.019389307126402855, 0.038046944886446, 0.03230196237564087, 0.0082109859213233, 0.0029978228267282248, -0.00038975931238383055, 0.011273168958723545, -0.004044520203024149, -0.004234212916344404, -0.007906122133135796, 0.053276561200618744, -0.01532446313649416, 0.008847811259329319, 0.06926494836807251, 0.005308009218424559, -0.06579627841711044, -0.004701670259237289, 0.013183644972741604, 0.03398209810256958, -0.014389549382030964, 0.015636101365089417, -0.013590130023658276, 0.0009162836940959096, 0.007587709464132786, -0.042247284203767776, -0.0006431769579648972, 0.007079604081809521, -0.00913235079497099, -0.042030490934848785, -0.0019223326817154884, 0.01756012812256813, -0.008495524525642395, 0.015541255474090576, 0.014633440412580967, 0.0288332961499691, -0.017871765419840813, 0.006679894402623177, 0.013901768252253532, 0.03289813920855522, 0.01623227819800377, 0.07603968679904938, 0.04595984145998955, -0.02896879054605961, -0.049428507685661316, -0.031895481050014496, -0.02445681393146515, 0.008326156064867973, -0.005504476837813854, -0.01905057020485401, -0.012641666457057, -0.012445198372006416, -0.0007922212244011462, 0.01829179935157299, 0.005982095841318369, -0.01333946455270052, -0.030432134866714478, -0.00420711375772953, 0.01317687053233385, -0.02388773486018181, 0.012966853566467762, 0.03699008375406265, -0.008549722842872143, 0.01835954748094082, -0.00120675063226372, -0.03138059750199318, 0.027261557057499886, 0.015080573037266731, -0.03509315848350525, 0.005639971699565649, -0.021990807726979256, -0.051271237432956696, -0.05354754999279976, -0.03823663666844368, -0.010216308757662773, -0.009742077440023422, -0.05100024864077568, 0.02264118380844593, -0.012851683422923088, 0.02445681393146515, -0.013590130023658276, -0.004691508132964373, -0.01160513050854206, 0.0039022506680339575, 0.030892817303538322, 0.024687156081199646, -0.0021967096254229546, -0.004186789970844984, -0.006649408023804426, 0.015649650245904922, 0.007858699187636375, 0.012763611972332, 0.013142997398972511, -0.004318897146731615, 0.04918461665511131, -0.020120980218052864, 0.05224680155515671, -0.025405278429389, -0.018752481788396835, -0.007086378987878561, -0.002227196004241705, 0.017925964668393135, 0.014403099194169044, -0.035201553255319595, 0.0366377979516983, 0.0034534239675849676, 0.009159449487924576, -0.06931914389133453, -0.017885316163301468, -0.01812920533120632, -0.009071378037333488, 0.021394630894064903, -0.03306073322892189, 0.002896201563999057, 0.032058071345090866, 0.003223082982003689, 0.04284346103668213, -0.0013244617730379105, -0.046989601105451584, 0.0020493590272963047, 0.01149673480540514, 0.029619166627526283, 0.004847326781600714, 0.06449553370475769, 0.02972756139934063, -0.04086523503065109, 0.02327800914645195, 0.007716429885476828, 0.020825553685426712, 0.016557466238737106, 0.009565933607518673, -0.015432859770953655, 0.01241809967905283, 0.030513431876897812, 0.011632230132818222, 0.04124462231993675, -0.009532060474157333, 0.002178079215809703, 0.020188726484775543, -0.0022221149411052465, 0.003299298696219921, -0.010168885812163353, 0.040160663425922394, 0.01240454986691475, 0.04181370139122009, -0.0015116140712052584, -0.0035160903353244066, 0.004860876593738794, 0.005233487114310265, -0.0007261675200425088, 0.04842584580183029, -0.02171981893479824, -0.020175177603960037, -0.005328333470970392, 0.0035025409888476133, 0.019389307126402855, 0.017993710935115814, 0.0038243411108851433, -0.05820857360959053, -0.040350355207920074, 0.044957179576158524, -0.04449649527668953, 0.012363901361823082, -0.006114203482866287, -0.05021438002586365, -0.009857247583568096, -0.021123642101883888, 0.02143527939915657, -0.030811520293354988, 0.003549964167177677, -0.010365352965891361, -0.005910961423069239, -0.004379869904369116, 0.0002860210952349007, 0.055173490196466446, -0.007438665255904198, -0.029971452429890633, -0.027329303324222565, 0.022478589788079262, 0.004942173138260841, -0.02956496924161911, -0.07463054358959198, -0.005294459871947765, -0.015744497999548912, 0.026218246668577194, -0.03791144862771034, -0.024348417297005653, 0.02826421894133091, -0.01838664710521698, -0.003885313868522644, -0.02823711931705475, -0.02413162589073181, 0.04010646417737007, 0.05007888376712799, -0.007303170394152403, -0.01317687053233385, -0.018440844491124153, 0.015202518552541733, 0.03975417837500572, 0.007208324037492275, 0.0030062911100685596, 0.017763370648026466, 0.009349142201244831, -0.04547205939888954, 0.08471135795116425, 0.005094605032354593, -0.007154126185923815, -0.0014353982405737042, 0.007858699187636375, -0.006527462508529425, 0.00037451612297445536, -0.01495862752199173, 0.04235567897558212, 0.010067264549434185, -0.046827007085084915, 0.016747159883379936, 0.003412775695323944, 0.015256715938448906, 0.008536173030734062, -0.004054682329297066, -0.0029317690059542656, 0.05536318197846413, 0.010338254272937775, 0.026001455262303352, -0.04005226865410805, 0.0022881687618792057, 0.01810210756957531, 0.00024918344570323825, -0.009213647805154324, -0.03547254204750061, -0.0025964193046092987, 0.013156546279788017, -0.0004911686992272735, -0.018630536273121834, -0.009003630839288235, 0.0291855838149786, -0.0040479074232280254, -0.022559886798262596, 0.009613357484340668, 0.010561821050941944, 0.037748854607343674, 0.04677281156182289, -0.008251634426414967, -0.03270844742655754, -0.007133801933377981, -0.04777546972036362, -0.02394193410873413, -0.008556497283279896, -0.012343578040599823, 0.012695863842964172, 0.022600535303354263, 0.0037159451749175787, 0.011198646388947964, 0.009098476730287075, 0.004708444699645042, -0.023332206532359123, 0.02093394845724106, 0.011097025126218796, -0.01864408701658249, -0.006256473250687122, -0.0014243891928344965, 0.03422598913311958, -0.03170578554272652, 0.046474721282720566, -0.014552143402397633, -0.01975514367222786, 0.027573194354772568, 0.018332447856664658, -0.030730223283171654, -0.014375999569892883, -0.01203871425241232, 0.011252844706177711, 0.017695622518658638, -0.006476652342826128, -0.006690056528896093, 0.006917010061442852, -0.018142756074666977, 0.0008493831264786422, -0.004637309815734625, -0.053872738033533096, 0.03349431976675987, 0.03503895923495293, -0.060484886169433594, 0.016571015119552612, 0.005839826539158821, -0.0366377979516983, -0.02460585907101631, -0.0366377979516983, -0.014335351064801216, -0.04197629168629646, 0.005829664412885904, -0.030377937480807304, -0.013576580211520195, -0.04281635954976082, -0.05690782144665718, 0.0019324948079884052, -0.01457924209535122, -0.011957417242228985, -0.005094605032354593, 0.020270023494958878, 0.012438423931598663, 0.014159208163619041, 0.00825840886682272, 0.03026954084634781, 0.01756012812256813, -0.0340362973511219, 0.0020832328591495752, 0.000690600136294961, 0.005368981976062059, 0.012932980433106422, -0.009471087716519833, 0.03633970767259598, -0.0236302949488163, -0.015094121918082237, 0.008752965368330479, 0.012045488692820072, -0.0002853859623428434, -0.010046940296888351, -0.022153401747345924, -0.006513913162052631, 0.006547786761075258, -0.0036278737243264914, -0.00604984350502491, 0.02689572051167488, 0.016394872218370438, -0.0056941695511341095, -0.002316961297765374, -0.03338592126965523, 0.010521172545850277, 0.021516576409339905, 0.005114929284900427, -0.031326401978731155, -0.02270893007516861, 0.02601500414311886, 0.006503751035779715, -0.012993952259421349, 0.019321560859680176, 0.010358578525483608, -0.014362450689077377, -0.02445681393146515, -0.003797242185100913, 0.0475044809281826, 0.02495814487338066, 0.029646266251802444, 0.004051295109093189, -0.024118077009916306, -0.030811520293354988, -0.006337769795209169, 0.020148077979683876, -0.025744015350937843, -0.0267060287296772, -0.032410360872745514, -0.012499396689236164, -0.014768934808671474, -0.018061459064483643, -0.0018291800515726209, -0.03211227059364319, 0.013231068849563599, 0.0006977982702665031, 0.015175418928265572, -0.004627147689461708, 0.038317933678627014, -0.03975417837500572, 0.009518510662019253, -0.00019244497525505722, 0.011056376621127129, -0.005538350436836481, 0.0108124865218997, -0.002848778385668993, 0.014877330511808395, 0.017045248299837112, 0.03411759436130524, -0.005328333470970392, -0.0072218733839690685, 0.036122918128967285, -0.05896734446287155, -0.0034534239675849676, 0.004434067755937576, 0.03801984339952469, 0.006910235621035099, 0.016814906150102615, -0.003087588120251894, 0.016882654279470444, 0.007377692498266697, 0.019037021324038506, -0.013088799081742764, 0.0012922817841172218, -0.002003629459068179, 0.043141547590494156, -0.007513187360018492, 0.007187999784946442, -0.015744497999548912, -0.004921849351376295, 0.005822889506816864, -0.012546819634735584, 0.010507622733712196, 0.00023944473650772125, 0.022465040907263756, 0.0015336319338530302, -0.012174208648502827, 0.013502058573067188, -0.022722480818629265, -0.05167772248387337, -0.03287104144692421, 0.009586257860064507, -0.004640697501599789, -0.0033196229487657547, 0.0037633683532476425, 0.022478589788079262, -0.03604162111878395, 0.01600193791091442, 0.0029673364479094744, 0.022437941282987595, 0.0029605617746710777, -0.001703000394627452, 0.01940285786986351, -0.019741594791412354, -0.04010646417737007, -0.004677958320826292, 0.029863057658076286, -0.006317445542663336, -0.009118800982832909, -0.02823711931705475, 0.01578514650464058, 0.019646748900413513, 0.004285023547708988, -0.019890638068318367, 0.010710865259170532, 0.021760467439889908, 0.002105250721797347, 0.023589646443724632, 0.004698282573372126, 0.0010238327085971832, -0.008380354382097721, 0.011347690597176552, 0.022302446886897087, -0.0015336319338530302, -0.03861602023243904, -0.03674619272351265, -0.010819260962307453, -0.01268908940255642, 0.028724901378154755, 0.013190420344471931, -0.032058071345090866, 0.007838374935090542, -0.017099445685744286, -0.0024101140443235636, 0.016462620347738266, -0.0228037778288126, 0.004088555928319693, -0.002526978263631463, 0.005280910525470972, -0.029456572607159615, 0.017831116914749146, -0.013745948672294617, -0.03327752649784088, -0.034253090620040894, 0.04525526985526085, -0.0031011374667286873, 0.002987660700455308, 0.012106461450457573, -0.004566175397485495, 0.023413503542542458, -0.02238374389708042, 0.027004117146134377, -0.004342608619481325, -0.006124365609139204, -0.025730464607477188, 0.03915800154209137, -0.012201308272778988, 0.021868862211704254, -0.005331721156835556, 0.014850231818854809, -0.021638521924614906, -0.01095475535839796, 0.050539564341306686, -0.024063879624009132, -0.004362932872027159, -0.014904429204761982, -0.022275347262620926, 0.004698282573372126, -0.018183404579758644, -0.01886087842285633, -0.007458989508450031, -0.005521413870155811, 0.031109608709812164, -0.019890638068318367, 0.0038887010887265205, 0.013888218440115452, -0.014660539105534554, 0.006009194999933243, 0.010338254272937775, -0.027491897344589233, 0.007458989508450031, -0.003593999892473221, -0.00515219010412693, 0.014010163955390453, -0.03287104144692421, 0.01959254965186119, -0.01616453193128109, -0.0061040413565933704, 0.002848778385668993, 0.027668040245771408, -0.03265425190329552, 0.010406001470983028, 0.002786112017929554, 0.005199613515287638, -0.022288896143436432, 0.020148077979683876, -0.023589646443724632, -0.0035025409888476133, 0.003722720080986619, -0.024158725515007973, 0.011598356068134308, -0.020906850695610046, -0.03010694682598114, -0.006415679585188627, -0.018522141501307487, -0.007526736706495285, -0.002574401441961527, -0.010074038989841938, -0.009972418658435345, 0.0026285992935299873, -0.02124558761715889, 0.016571015119552612, -0.006490201689302921, 0.028372613713145256, 0.037803053855895996, 0.009565933607518673, 0.03566223382949829, 0.006527462508529425, -0.011896444484591484, 0.05338495597243309, -0.013203969225287437, 0.027478348463773727, -0.0228037778288126, -0.002686184598132968, 0.04926591366529465, -0.015297364443540573, 0.00896975677460432, -0.0028809583745896816, 0.01680135726928711, 0.019443506374955177, -0.029077187180519104, -0.027071863412857056, 0.004698282573372126, 0.03620421513915062, -0.009315268136560917, 0.01730268821120262, 0.007425115909427404, -0.007458989508450031, -0.03254585340619087, 0.009728527627885342, 0.016760708764195442, 0.002703121630474925, 0.00865134410560131, 0.026340192183852196, 0.03604162111878395, 0.022817326709628105, 0.008962982334196568, -0.015676749870181084, -0.028345515951514244, 0.03170578554272652, -0.001083958544768393, 0.012905880808830261, -0.011124123819172382, 0.020107431337237358, 0.002801355207338929, 0.0036651347763836384, 0.015080573037266731, -0.0002656968717928976, 0.03105541132390499, 0.002515122527256608, 0.03268134966492653, 0.025012342259287834, 0.00671715522184968, 0.009457537904381752, 0.025323981419205666, -0.04834454879164696, 0.058100175112485886, -0.024429714307188988, 0.0001809067471185699, -0.0029233007226139307, -0.007743528578430414, -8.574280946049839e-05, -0.010107913054525852, 0.016015486791729927, -0.006812001578509808, 0.0035906126722693443, 0.014606340788304806, -0.027803536504507065, 0.03102831169962883, -0.03848052769899368, 0.007370918057858944, -0.0009797968668863177, 0.001196588622406125, -0.0032789744436740875, -0.00986402202397585, -0.0033805957064032555, -0.013393661938607693, 0.03373820707201958, -0.015134770423173904, 0.01403726264834404, -0.003346721874549985, 0.007201549597084522, 0.01240454986691475, 0.02445681393146515, -0.029808858409523964, -0.0006965280044823885, 0.01240454986691475, 0.02448391355574131, -0.0006283572292886674, -0.019606100395321846, 0.009281395003199577, 0.01699104905128479, 0.00766223156824708, 0.004904912319034338, 0.03433438763022423, -0.03138059750199318, -0.004837164655327797, -0.007045730482786894, 0.0337924063205719, -0.006134527735412121, 0.014755384996533394, 0.011537383310496807, 0.019484154880046844, -0.004511977545917034, -0.005873700138181448, -0.019673846662044525, 0.017383985221385956, 0.013325914740562439, 0.005013308022171259, 0.010290831327438354, -0.00825840886682272, -0.009139125235378742, -0.002999516436830163, -0.020662959665060043, -0.0449029803276062, -0.015094121918082237, -0.024795550853013992, 0.015161870047450066, -0.01715364307165146, -0.01421340648084879, -0.002574401441961527, 0.014904429204761982, -0.012438423931598663, -0.007851924747228622, -0.015581903979182243, 0.00984369870275259, -0.021015245467424393, 0.028914593160152435, -0.0023711591493338346, -0.020053232088685036, -0.0003607549297157675, -0.022654732689261436, 0.020310672000050545, -0.0432499460875988, -0.04341254010796547, -0.04506557434797287, 0.021733367815613747, -0.011693202890455723, 0.02344060316681862, 0.028670702129602432, -0.012960079126060009, -0.03219356760382652, 0.01597483828663826, -0.0082109859213233, 0.025432376191020012, 0.009769176132977009, -0.014890880323946476, 0.031516093760728836, -0.005318171344697475, 0.017329785972833633, -0.02826421894133091, 0.0301340464502573, -0.016245828941464424, 0.047368988394737244, -0.019633198156952858, 0.025527223944664, -0.022654732689261436, -0.027559645473957062, -0.032437458634376526, 0.020026134327054024, 0.005328333470970392, -0.004437454976141453, -0.0014413261087611318, -0.0024101140443235636, 0.015446408651769161, -0.011639004573225975, -0.015798695385456085, -0.0005508711328729987, 0.008089040406048298, -0.015161870047450066, -0.009125575423240662, -0.009667554870247841, 0.03322332724928856, -0.020852651447057724, 0.004752480424940586, -0.023237360641360283, 0.021868862211704254, -0.034632474184036255, -0.0038514400366693735, -0.004230825696140528, 0.02086620219051838, -0.005240262020379305, -0.01831889897584915, -0.005988870747387409, 0.045363664627075195, -0.025608519092202187, 0.02381998859345913, 0.02394193410873413, -0.030621828511357307, -0.007445440161973238, 0.02029712311923504, 0.0311909057199955, -0.011774498969316483, 0.0354454442858696, -0.00987757183611393, 0.00321122701279819, 0.014497945085167885, 0.0077570779249072075, 0.010697315447032452, 0.007567385211586952, 0.004488265607506037, 0.02597435563802719, 0.04390031844377518, 0.015107671730220318, 0.045905642211437225, 0.007377692498266697, 0.0241045281291008, 0.039618682116270065, 0.009145899675786495, -0.021706270053982735, -0.0012711107265204191, -0.012045488692820072, -0.03891411051154137, -0.009362692013382912, -0.013752724044024944, -0.04769417643547058, 0.031001213937997818, -0.022844426333904266, 0.022722480818629265, -0.02195015922188759, 0.04745028540492058, -0.007154126185923815, -0.01905057020485401, 0.0010721026919782162, 0.010378902778029442, -0.010887008160352707, 0.012993952259421349, 0.02696346864104271, 0.00013231915363576263, -0.02195015922188759, 0.008854585699737072, -0.028508108109235764, -0.010900557972490788, 0.0034178567584604025, 0.024023231118917465, -0.024375516921281815, 0.03861602023243904, 0.05194871127605438, 0.009640456177294254, 0.005053956527262926, -0.014077911153435707, -0.00965400505810976, -0.021232036873698235, 0.010094363242387772, -0.010561821050941944, -0.009383016265928745, -0.01753302849829197, 0.016300026327371597, -0.016814906150102615, -0.005704331677407026, 0.007608033716678619, 0.015730947256088257, -0.0030892817303538322, -0.012655215337872505, -0.007411566562950611, 0.010710865259170532, 0.011157997883856297, 0.007282846141606569, -0.009023955091834068, 0.01405081246048212, 0.03029664047062397, 0.013969515450298786, 0.0039056381210684776, -0.006635858677327633, -0.011923544108867645, -0.0020629086066037416, -0.00016926266835071146, 0.028589405119419098, 0.01495862752199173, 0.046122435480356216, -0.026882171630859375, -0.02972756139934063, -0.0420575886964798, 0.030350837856531143, 0.004630535375326872, -0.04487588256597519, -0.0055180261842906475, -0.011361240409314632, 0.0026455363258719444, 0.018400195986032486, 0.02823711931705475, 0.017316237092018127, 0.040187761187553406, 0.0446590892970562, 0.023521900177001953, -0.027830634266138077, 0.006388580426573753, 0.0011669490486383438, -0.019619649276137352, 0.02429421991109848, 0.0008625091868452728, -1.5018224075902253e-05, 0.015012825839221478, 0.004010646604001522, 0.03414469212293625, 0.013745948672294617, -0.013298816047608852, -0.020080331712961197, -0.009870797395706177, -0.003422937821596861, -0.010887008160352707, 0.005196226295083761, -0.002440600423142314, -0.005006533581763506, -0.01560900267213583, 0.012872007675468922, 0.023413503542542458, 0.043520934879779816, -0.015405760146677494, -0.00733704399317503, 0.0032010648865252733, 0.006388580426573753, -0.03322332724928856, 0.00955915916711092, 0.0034669735468924046, 0.004904912319034338, -0.008461651392281055, 0.0038548274897038937, -0.034984759986400604, 0.012905880808830261, 0.007797726429998875, -0.006063392851501703, -0.006805227138102055, 0.01628647744655609, 0.0018884589662775397, 0.009728527627885342, -0.004823615308851004, -0.007255747448652983, -0.009796274825930595, -0.020947499200701714, 0.004647471942007542, -0.013359788805246353, 0.021299785003066063, -0.003136704908683896, 0.009701428934931755, -0.01432180218398571, -0.030215343460440636, -0.006805227138102055, 0.025174936279654503, -0.0668802410364151, 0.03783015161752701, 0.018373096361756325, 0.004010646604001522, 0.02311541512608528, 0.022939272224903107, 0.01559545285999775, -0.028399713337421417, -0.02769513987004757, 0.03514735400676727, 0.024145176634192467, 0.016394872218370438, 0.000791374419350177, 0.007059279829263687, -0.0101621113717556, 0.02188241295516491, -0.001479433965869248, 0.03625841066241264, 0.0025964193046092987, 0.011388339102268219, -0.006232761312276125, -0.0044306805357337, -0.008996855467557907, -0.004759255331009626, 0.033927902579307556, -0.008407453075051308, 0.011903219856321812, 0.0035398020409047604, -0.01297362893819809, 0.031109608709812164, 0.0030520206782966852, 0.009667554870247841, -0.0236302949488163, -0.04343963786959648, -0.03997097164392471, -0.04598693922162056, -0.020337771624326706, 0.03254585340619087, -0.020947499200701714, -0.01661166362464428, -0.0021442053839564323, -0.011937092989683151, 0.010439875535666943, -0.022397292777895927, -0.010914106853306293, 0.015283814631402493, 0.028724901378154755, 0.03349431976675987, 0.0002896201622206718, -0.00800096895545721, 0.020730705931782722, 0.006771353539079428, -0.003800629638135433, 0.009261070750653744, 0.00016820410382933915, -0.009836923331022263, -0.004312122240662575, -0.012607792392373085, 0.017478831112384796, -0.010026616044342518, 0.015500606968998909, -0.051054447889328, 0.01219453290104866, 0.013759498484432697, -0.0005843213875778019, -0.0073234946466982365, 0.011530608870089054, 0.003175659803673625, 0.004315509926527739, -0.0010551658924669027, 0.00023055289057083428, -0.036122918128967285, -0.00852939859032631, -0.025865960866212845, -0.0035669009666889906, 0.02153012529015541, -0.022085655480623245, -0.017099445685744286, -0.008387128822505474, 0.004305347800254822, -0.00268787844106555, -0.02531043067574501, 0.033548515290021896, -0.011916768737137318, -0.008089040406048298, 0.01720784232020378, -0.03029664047062397, -0.01718074269592762, -0.003712557954713702, 0.017411082983016968, -0.029971452429890633, -0.01949770376086235, -0.011862571351230145, 0.010074038989841938, -0.04525526985526085, -0.009613357484340668, 0.0030858945101499557, 0.0007257441175170243, 0.06319478154182434, 0.015432859770953655, 0.021828213706612587, -0.00927461963146925, -0.011584806255996227, 0.005697556771337986, 0.0023254298139363527, -0.012587468139827251, -0.03707138076424599, 0.00015285509289242327, -0.02318316325545311, -0.006639245897531509, 0.0366377979516983, 0.008874909952282906, -0.05167772248387337, -0.0033551903907209635, 0.0389954075217247, -0.021001696586608887, -0.035770632326602936, 0.00992499478161335, -0.01506702322512865, -0.023494800552725792, 0.006527462508529425, 0.009748851880431175, -0.01623227819800377, 0.010961530730128288, 0.01562255248427391, -0.025960806757211685, 0.00029914715560153127, -0.0004814300045836717, -0.022817326709628105, 0.00475586811080575, -0.03127220273017883, 0.015703849494457245, -0.048507142812013626, -0.02356254868209362, -0.0107515137642622, 0.010981854982674122, -0.006219211965799332, -0.000945923151448369, 0.003375514643266797, 0.011849021539092064, -0.016340674832463264, 0.0023914834018796682, 0.00734381889924407, -0.02337285503745079, 0.039076704531908035, 0.017709171399474144, -0.004928623791784048, 0.01966029778122902, -0.009450763463973999, -0.010074038989841938, 0.011652554385364056, -0.0028826522175222635, -0.006215824745595455, 0.02105589397251606, 0.021828213706612587, -0.012506171129643917, -0.02270893007516861, 0.05278877913951874, -0.02746479958295822, 0.003323010401800275, -0.024632956832647324, -0.025229133665561676, 0.008495524525642395, 0.017831116914749146, 0.0002777643676381558, 0.004193564411252737, 0.003128236625343561, 0.006195500493049622, 0.0177227221429348, -0.00577207887545228, 0.024660056456923485, 0.02134043350815773, 0.015161870047450066, 0.025391727685928345, -0.0063038961961865425, -0.004071619361639023, -0.001756351557560265, -0.023047666996717453, -0.009457537904381752, -0.01756012812256813, 0.00917977374047041, 0.022058555856347084, 0.015270265750586987, 0.0107515137642622, 0.0005021776305511594, -0.016665862873196602, -0.006805227138102055, 0.016571015119552612, 0.014863780699670315, -0.02689572051167488, 0.0021950160153210163, -0.010080814361572266, 0.03254585340619087, 0.015283814631402493, 0.008095814846456051, 0.00256423931568861, -0.012811034917831421, 0.01831889897584915, 0.02048681676387787, 0.039808377623558044, 0.02384708821773529, -0.011693202890455723, 0.006361481733620167, 0.0026709416415542364, 0.004647471942007542, 0.020595211535692215, 0.01921316422522068, 0.026407938450574875, 0.01085990946739912, 0.006706993095576763, -0.00383111578412354, -0.007587709464132786, -0.026651829481124878, -0.008360030129551888, 0.002599806757643819, -0.010412776842713356, -0.0025608520954847336, -0.03178708255290985, 0.009532060474157333, -0.004217275884002447, -0.0011677959701046348, 0.008678442798554897, 0.017600776627659798, 0.0015624245861545205, 0.024348417297005653, 0.009952094405889511, -0.024023231118917465, 0.06400775164365768, -0.0064122918993234634, -0.007655457127839327, -0.010263732634484768, -0.008332931436598301, 0.00510476715862751, -0.001294822315685451, 0.0009687879355624318, -0.027261557057499886, -0.013237843289971352, -0.008265183307230473, 0.015459958463907242, -0.0043493835255503654, -0.008339705877006054, -0.014226955361664295, -0.018820229917764664, -0.006859424989670515, -0.010182435624301434, -0.011442537419497967, -0.033358823508024216, 0.011198646388947964, -0.01864408701658249, 0.002826760523021221, -0.0340362973511219, 0.006812001578509808, -0.0027725626714527607, 0.03032374009490013, -0.0076757813803851604, -0.034253090620040894, -0.008664892986416817, 0.007641907315701246, -0.00701863132417202, -0.008549722842872143, 0.007811276242136955, 0.01432180218398571, 0.007655457127839327, 0.010805711150169373, 0.0008582749869674444, -0.007357368245720863, -0.003162110224366188, 0.019999034702777863, 0.026272444054484367, -0.01532446313649416, 0.029104286804795265, -0.02734285406768322, 0.014552143402397633, -0.0010890396079048514, -0.0035770630929619074, -0.009484636597335339, -0.0007981491507962346, 0.010534721426665783, -0.00017074463539756835, -0.017221391201019287, 0.006425841711461544, 0.003881926415488124, -0.002599806757643819, -0.005450278986245394, 0.016029035672545433, 0.008597145788371563, -0.03465957194566727, -0.024917496368288994, -0.023833537474274635, -0.0009679410723038018, -0.0034534239675849676, -0.01381369587033987, -0.017519479617476463, 0.018603438511490822, 0.016625214368104935, -0.005863538011908531, 0.030350837856531143, -0.008671668358147144, -0.02845391072332859, 0.005562061909586191, -0.007980644702911377, -0.016814906150102615, 0.001719090505503118, 0.004793128930032253, -0.019253812730312347, -0.025107190012931824, 0.0062463111244142056, -0.014606340788304806, -0.006652795244008303, -0.016950400546193123, 0.01928091235458851, -0.0005855916533619165, -0.011977741494774818, 0.006510525941848755, -0.008461651392281055, 0.011774498969316483, 0.030974114313721657, -0.00017688424850348383, -0.01848149299621582, -0.005473990458995104, -0.00836680456995964, 0.00440696906298399, 0.014375999569892883, 0.02651633508503437, 0.003321316558867693, 0.013278491795063019, -0.00639874255284667, -0.0011762643698602915, 0.02937527559697628, 0.012031939812004566, -0.0044239056296646595, -0.02058166265487671, -0.016083234921097755, -0.01899637281894684, 0.009443989023566246, 0.014389549382030964, 0.001293128589168191, 0.0047761923633515835, -0.015459958463907242, 0.012289379723370075, 0.021665621548891068, -0.02169271931052208, 0.006371643859893084, 0.015839343890547752, 0.022763129323720932, 0.0005800871876999736, 0.00800096895545721, -0.01680135726928711, 0.010460199788212776, 0.003644810523837805, 0.014470846392214298, -0.005457053426653147, 0.03530994802713394, -0.02143527939915657, -0.0095117362216115, -0.0250529907643795, 0.016557466238737106, 0.020432617515325546, 0.013298816047608852, -0.05116284266114235, -0.01403726264834404, 0.0004581418470479548, 0.001305831247009337, 0.0108124865218997, -0.022912172600626945, -0.012391000986099243, -0.0028182922396808863, -0.019077669829130173, 0.03414469212293625, -0.015175418928265572, 0.042193084955215454, -0.005697556771337986, -0.03325042873620987, -0.029293978586792946, -0.0053351083770394325, 0.0015776677755638957, 0.03913090378046036, 0.022058555856347084, -0.021489476785063744, -0.004437454976141453, 0.00570094445720315, 0.01651681773364544, 0.01257391832768917, -0.00998596753925085, -0.02531043067574501, 0.027193808928132057, -0.007777402177453041, 0.010412776842713356, 0.010141787119209766, -0.006236148998141289, 0.012059038504958153, -0.023779340088367462, 0.008190661668777466, 0.01181514747440815, 0.010548271238803864, -0.029293978586792946, 0.04132591933012009, 0.0011737238382920623, 0.0010035084560513496, 0.0061040413565933704, 0.017140094190835953, -0.020906850695610046, -0.015175418928265572, -0.00545366620644927, -0.01819695346057415, 0.00635131960734725, 0.01308202464133501, 0.01876603253185749, -0.007303170394152403, -0.01522961724549532, 0.013759498484432697, -0.007879023440182209, -0.0023372855503112078, -0.0025066540110856295, -0.02079845406115055, 0.016191629692912102, 0.021963709965348244, 0.0047761923633515835, 0.005118316505104303, -0.009118800982832909, 0.019579000771045685, -0.011090250685811043, 0.0021069443318992853, -0.0032264702022075653, 0.008610695600509644, -0.017478831112384796, 0.026719577610492706, -0.03173288702964783, -0.00924074649810791, 0.001232155947946012, 0.027668040245771408, 0.007967094890773296, 0.014389549382030964, -0.029266880825161934, -0.034822165966033936, -0.0228037778288126, 0.009267845191061497, -0.00027120133745484054, -0.00825840886682272, 0.008407453075051308, 0.01084635965526104, 0.0048574889078736305, -0.006439391057938337, 0.005751755088567734, -0.009850473143160343, -0.013366563245654106, 0.00019308010814711452, -0.003549964167177677, 0.00542317982763052, -0.0012744980631396174, -0.019931286573410034, -0.031678687781095505, 0.021855313330888748, -0.011754174716770649, 0.02311541512608528, 0.007729979231953621, -0.043710626661777496, -0.005006533581763506, 0.002689572051167488, -0.006385193206369877, 0.034849267452955246, 0.010439875535666943, 0.0027420762926340103, 0.03325042873620987, 0.011307042092084885, 0.010216308757662773, 0.009010405279695988, -0.016110332682728767, -0.004633922595530748, -0.011794823221862316, -0.0016445682849735022, -0.003969998098909855, 0.023874185979366302, 0.018373096361756325, 0.0035770630929619074, -0.003820953657850623, 0.013603678904473782, 0.013847569935023785, -0.0029182196594774723, 0.022478589788079262, 0.02048681676387787, -0.02518848516047001, -0.008204210549592972, 0.013901768252253532, 0.009362692013382912, -0.00176820729393512, 0.0028436973225325346, 0.01864408701658249, 0.008468425832688808, 0.020784905180335045, -0.04132591933012009, -0.02915848419070244, -0.006734092254191637, -0.012309703975915909, 0.004586499650031328, 0.016760708764195442, 0.008427777327597141, 0.03997097164392471, 0.02934817597270012, -0.0007109243306331336, 0.017004599794745445, -0.022939272224903107, -0.01432180218398571, 0.007438665255904198, -0.008725865744054317, 0.016123883426189423, -0.009166223928332329, 0.005721268709748983, -0.0010746432235464454, -0.01682845503091812, -0.004986209329217672, -0.007187999784946442, -0.012472297996282578, 0.011124123819172382, -0.05121703818440437, -0.017505930736660957, -0.023576097562909126, 0.003966610878705978, -0.02403677999973297, 0.016083234921097755, 0.005602710414677858, 0.010995403863489628, 0.00571788102388382, -0.008265183307230473, 0.010297605767846107, 0.003929349593818188, 0.0006410598289221525, -0.003336559748277068, -0.0263537410646677, 0.017519479617476463, -0.037965647876262665, 0.0053351083770394325, -0.005318171344697475, 0.015839343890547752, 0.00913235079497099, 0.02270893007516861, -0.011063151992857456, 0.03609582036733627, -0.001220300211571157, 0.011774498969316483, -0.0021984034683555365, -0.04249117523431778, -0.0366377979516983, -0.0007575007039122283, 0.013847569935023785, -0.01628647744655609, -0.026638280600309372, -6.26134205958806e-05, 0.0032196955289691687, 0.0048574889078736305, -0.011760950088500977, 0.015581903979182243, -0.02346770092844963, -0.020595211535692215, 0.003556738840416074, -0.026719577610492706, -0.017031697556376457, 0.013603678904473782, -0.016814906150102615, -0.02604210376739502, -0.004742318298667669, -0.0033551903907209635, -0.015378661453723907, 0.029808858409523964, -0.03642100468277931, 0.008075490593910217, 0.04392741993069649, -0.04173240438103676, 0.017695622518658638, -0.01803435944020748, -0.006015969906002283, -0.03127220273017883, -0.03736947104334831, -0.020906850695610046, -0.01800726167857647, -0.025716915726661682, -0.003644810523837805, -0.01613743230700493, 0.016855554655194283, -0.025608519092202187, 0.039266396313905716, 0.021665621548891068, 0.011713527143001556, -0.013759498484432697, 0.03514735400676727, -0.000497943430673331, 0.0177227221429348, 0.01178127434104681, -0.012065812945365906, -0.0018630536505952477, -0.00978272594511509, 0.028670702129602432, 0.014565692283213139, -0.002674328861758113, -0.02242439240217209, 0.012140335515141487, -0.024565210565924644, 0.016571015119552612, 0.01403726264834404, -0.025174936279654503, 0.00793999619781971, -0.001106823212467134, 0.0031671912875026464, 0.0029080575332045555, -0.013258167542517185, -0.007120252586901188, 0.00919332355260849, -0.028751999139785767, 0.008874909952282906, -0.0050844429060816765, 0.003793854732066393, -0.02171981893479824, 0.017966613173484802, -0.025418827310204506, -0.015798695385456085, 0.0040140338242053986, 0.01628647744655609, 0.0037803053855895996, -0.0020493590272963047, -0.0223295446485281, 0.002950399648398161, 0.03257295489311218, -0.0139424167573452, 0.00917977374047041, -0.034632474184036255, 0.01829179935157299, 0.027830634266138077, -0.015175418928265572, -0.010947980917990208, -0.007973870262503624, 0.02381998859345913, -0.002079845406115055, -0.0011034358758479357, -0.02096104808151722, -0.02823711931705475, -0.004894750192761421, 0.0037633683532476425, 0.0002128750493284315, 0.008691992610692978, 0.013075249269604683, -0.0007503025117330253, -0.016435520723462105, -0.012343578040599823, 0.015758046880364418, 0.005294459871947765, -0.001133922254666686, -0.004664408974349499, -0.004932011011987925, 0.005612872540950775, -0.0060464562848210335, -0.015256715938448906, 0.0024321319069713354, -0.011185096576809883, 0.0038920885417610407, 0.009721753187477589, -0.010663442313671112, 0.010155336000025272, 0.015541255474090576, -0.0064800395630300045, -0.00023902131943032146, -0.02188241295516491, 0.002501572947949171, -0.007933221757411957, 0.007797726429998875, 0.014281153678894043, -0.002440600423142314, 0.011489960364997387, -0.005213162861764431, -0.006927172187715769, -0.003583837766200304, -4.9513826525071636e-05, 0.001957900123670697, -0.011882895603775978, 0.0037633683532476425, -0.01590709201991558, 0.0005868619191460311, 0.0007299783173948526, 0.0649833157658577, 0.005457053426653147, -0.0015590372495353222, 0.0022847813088446856, -0.0015234698075801134, -0.010507622733712196, -0.0038141789846122265, 0.01831889897584915, 0.03032374009490013, -0.0005665376666001976, -0.020310672000050545, -0.020541014149785042, 0.011659328825771809, 0.008834261447191238, -0.02483619935810566, 0.00510476715862751, 0.008583596907556057, 0.03395500034093857, -0.0010890396079048514, 0.011747400276362896, 0.00816356297582388, -0.017804019153118134, -0.020283574238419533, 0.02025647461414337, -0.004376482684165239, 0.01753302849829197, -0.0019257200183346868, 0.019267363473773003, 0.0082719586789608, 0.017885316163301468, 0.004030970856547356, -0.004132591653615236, -0.003648197976872325, -0.007912897504866123, -0.011611905880272388, 0.0069136228412389755, 0.0032417133916169405, 0.01373239979147911, 0.002775950124487281, -0.0010594000341370702, 0.008780064061284065, -0.013156546279788017, 0.01819695346057415, 0.0356893353164196, -0.016191629692912102, -0.01373239979147911, -0.005551900248974562, -0.0014819744974374771, 0.0008159328135661781, -0.011279943399131298, -0.013529157266020775, -0.014741836115717888, 0.00333825359120965, 0.012174208648502827, 0.010324704460799694, -0.010338254272937775, 0.02372514270246029, 0.00965400505810976, 0.013556255958974361, -0.006446165964007378, -0.021516576409339905, -0.0009433826198801398, -0.004102105274796486, -0.022315995767712593, -0.006944109220057726, -0.00795354600995779, -0.003273893380537629, -0.015568354167044163, 0.004708444699645042, -0.006063392851501703, -0.0005487540038302541, -0.005419792607426643, 0.013745948672294617, -0.02474135346710682, -0.006337769795209169, 0.019429955631494522, -0.0033433346543461084, 0.040214862674474716, 0.03455117717385292, 0.002042584354057908, 0.005243649240583181, 0.002230583457276225, -0.01845439337193966, -0.011550933122634888, -0.003172272350639105, 0.0016386404167860746, 0.017045248299837112, -0.03856182470917702, 0.0041901771910488605, -0.03373820707201958, -0.022302446886897087, 0.00505056930705905, 0.006371643859893084, 0.01051439717411995, 0.0005711953272111714, 0.004271474201232195, -0.01494507770985365, 0.005785628687590361, 0.019077669829130173, -0.02041906863451004, -0.01522961724549532, 0.014132109470665455, -0.008841036818921566, -0.0043222843669354916, 0.011645779013633728, -0.00027310673613101244, 0.025432376191020012, 0.007208324037492275, -0.01014856155961752, 0.008834261447191238, -0.000251723948167637, -0.016977500170469284, -0.00480329105630517, 0.008495524525642395, -0.025960806757211685, -0.0015954514965415, 0.012059038504958153, -0.0054367296397686005, -0.023074766620993614, -0.01937575824558735, 0.010365352965891361, 0.00019932557188440114, -0.002552383579313755, -0.006036294158548117, -0.009308493696153164, 0.015473507344722748, -0.001756351557560265, -0.01108347624540329, -0.004383257124572992, -0.00018312971224077046, 0.003285749349743128, 0.019646748900413513, 0.022505689412355423, -0.017519479617476463, 0.024050328880548477, 0.004156303592026234, -0.00984369870275259, -0.013190420344471931, 0.007228648290038109, -0.014226955361664295, 0.016787808388471603, 0.0006436003604903817, 0.009836923331022263, 0.021963709965348244, -0.0058770873583853245, 0.0012253812747076154, -0.009660780429840088, -0.03273554891347885, 0.004766030237078667, -0.018251150846481323, 0.008644568733870983, -0.03959158435463905, 0.01052794698625803, -0.012241956777870655, 0.00927461963146925, 0.016530366614460945, -0.03785724937915802, 0.024334868416190147, -0.01457924209535122, -0.010893783532083035, -0.003148560645058751, 0.009789500385522842, -0.009430439211428165, 0.0010932737495750189, 0.0010814180132001638, 0.00321122701279819, 0.016909752041101456, 0.033521417528390884, 0.010670216754078865, -0.005003145895898342, -0.004102105274796486, 0.012960079126060009, 0.013407211750745773, -0.026340192183852196, 0.0007320954464375973, 0.005612872540950775, -0.011537383310496807, 0.004698282573372126, -0.02464650757610798, 0.027126062661409378, 0.002503266790881753, -0.014497945085167885, 0.03010694682598114, 0.005341883283108473, 0.0008387975976802409, 0.0006241229712031782, 0.012634891085326672, -0.0065816608257591724, -0.01532446313649416, 0.0010179048404097557, -0.004481491167098284, 0.02299346961081028, 0.002090007532387972, -0.0016462620114907622, -0.021584324538707733, 0.0007354827830567956, 0.01616453193128109, 0.009789500385522842, 0.024334868416190147, -0.0108124865218997, 0.00841422751545906, -0.0027166709769517183, 0.0014082991983741522, 0.0152431670576334, 0.008373579941689968, -0.022844426333904266, -0.014782484620809555, -0.023643845692276955, -0.019551901146769524, -0.0057686916552484035, -0.04002516716718674, -0.02299346961081028, 0.0022373581305146217, 0.0049591101706027985, -0.0006558795575983822, -0.002933462616056204, 0.012614566832780838, -0.01581224426627159, 0.034795068204402924, -0.003324704011902213, 0.011483185924589634, -0.00474909320473671, 0.022722480818629265, -0.012228406965732574, -0.011442537419497967, 0.006601984612643719, 0.003499153535813093, 0.008089040406048298, 0.010887008160352707, -0.018332447856664658, 0.018508590757846832, -0.009491411969065666, -0.012445198372006416, 0.013413986191153526, -0.007086378987878561, 0.018413744866847992, 0.003600774798542261, -0.002090007532387972, 0.013095573522150517, -0.0028978954069316387, -0.011998065747320652, 0.003299298696219921, 0.0004560247471090406, -0.004528914112597704, 0.008773289620876312, -0.013779822736978531, 0.008725865744054317, -0.0036143241450190544, -0.0009569321409799159, -2.4068855054792948e-05, 0.007804501336067915, 0.001083958544768393, -0.005758529528975487, 0.016394872218370438, 0.006300508975982666, -0.00890878401696682, 0.0003101560869254172, 0.008055166341364384, 0.009471087716519833, -0.011103800497949123, 0.0004050024726893753, 0.020852651447057724, -0.01692330278456211, 0.002367771929129958, -0.009437213651835918, 0.025798212736845016, -0.05062086135149002, 0.013332690112292767, -0.006432616151869297, 0.009965643286705017, -0.005680620204657316, -0.004305347800254822, 0.0223295446485281, 0.02861650474369526, 0.00321122701279819, 0.0036549726501107216, -0.007133801933377981, -0.006591822486370802, 0.013556255958974361, 0.01532446313649416, -0.00014872672909405082, 0.012621342204511166, 0.023576097562909126, -0.01715364307165146, -0.01247907243669033, -0.02207210473716259, 0.014105009846389294, -0.0014396323822438717, 0.001282119657844305, -0.004661021754145622, 0.017289137467741966, 0.01219453290104866, 0.015283814631402493, -0.0046508596278727055, -0.017031697556376457, 0.012675539590418339, -0.0004522139497566968, 0.00634454470127821, 0.024998793378472328, -0.005849988665431738, -0.009443989023566246, 0.0001069668069249019, -0.005365594755858183, -0.038317933678627014, 0.004932011011987925, 0.014457296580076218, 0.021774016320705414, 0.0032688123174011707, -0.0019274137448519468, 0.0212726853787899, 0.006527462508529425, 0.004572949837893248, -0.024565210565924644, -0.00913235079497099, -0.01505347341299057, -0.007804501336067915, 0.013380113057792187, 0.030594728887081146, -0.020825553685426712, 0.0139424167573452, 0.0016657393425703049, 0.013027826324105263, 0.0014768934343010187, 0.014105009846389294, 0.0016098477644845843, 0.00978272594511509, 0.01470118761062622, 0.021841764450073242, 0.026882171630859375, -0.030350837856531143, 0.015175418928265572, -0.000945923151448369, -0.013122673146426678, -0.0015031455550342798, 0.0007494557066820562, 0.010500848293304443, -0.00635131960734725, -0.01921316422522068, -0.013522382825613022, 0.014619890600442886, -0.01297362893819809, -0.02575756423175335, -0.005812727380543947, -0.002989354310557246, 0.027559645473957062, 0.0023694655392318964, 0.013346238993108273, -0.01661166362464428, 0.020662959665060043, 0.010771838016808033, 0.0007718970300629735, -0.0036549726501107216, 0.021868862211704254, 0.015487057156860828, -0.006805227138102055, -0.017966613173484802, 0.02117783948779106, 0.009200097993016243, -0.008278733119368553, 0.015012825839221478, -0.014877330511808395, 0.023643845692276955, -0.005280910525470972, -0.010561821050941944, 0.01020953431725502, -0.0016225504223257303, -0.009051053784787655, 0.019389307126402855, -0.02842681296169758, -0.00512847863137722, -0.0006745101418346167, -0.021001696586608887, -0.013319140300154686, -0.011652554385364056, -0.026936369016766548, -0.00038213771767914295, -0.0018308736616745591, -0.007628357969224453, -0.014077911153435707, -0.016150981187820435, 0.037396568804979324, -0.014105009846389294, -0.01405081246048212, -0.0102230841293931, 0.008536173030734062, 0.025229133665561676, 0.02826421894133091, 0.0013244617730379105, 0.014552143402397633, -0.01793951354920864, 0.002462618285790086, 0.007797726429998875, -0.006937334313988686, -0.002504960400983691, -0.01682845503091812, 0.01333946455270052, -0.0311909057199955, 0.015297364443540573, -0.0012126786168664694, -0.0018122431356459856, 0.013156546279788017, 0.012472297996282578, -0.0016852167900651693, 0.014985726214945316, 0.0003196830803062767, -0.023359306156635284, 0.0016352530801668763, 0.020175177603960037, 0.01430825237184763, 0.0044747162610292435, -0.002279700245708227, 0.004495040513575077, -0.007262521889060736, 0.013739174231886864, 0.017289137467741966, -0.014768934808671474, 0.008610695600509644, -0.015839343890547752, 0.013874668627977371, 0.014606340788304806, 0.012458748184144497, -0.005297847092151642, 0.03140769898891449, -0.002189934952184558, 0.02353544905781746, 0.003461892483755946, 0.03455117717385292, 0.008468425832688808, -0.0003453000681474805, -0.0010907332180067897, -0.01370530016720295, -0.016191629692912102, -0.005094605032354593, 0.017424633726477623, -0.042030490934848785, -0.012932980433106422, 0.0301340464502573, -0.03433438763022423, 0.0018122431356459856, 0.025527223944664, -0.02476845122873783, -0.019362209364771843, -0.008454876020550728, 0.012499396689236164, 0.010893783532083035, 0.006720542907714844, 0.005626422353088856, 0.02041906863451004, -0.015026374720036983, -0.01994483731687069, -0.0006618074839934707, 0.03549963980913162, 0.0005805105902254581, -0.005707718897610903, -0.007872248999774456, -0.009023955091834068, -0.001457416103221476, 0.00381079176440835, 0.03699008375406265, -0.036691997200250626, 0.014159208163619041, -0.014105009846389294, 0.014457296580076218, 0.009362692013382912, -0.021570773795247078, -0.005924510769546032, -0.004119042307138443, 0.014511494897305965, -0.006808614358305931, -0.008360030129551888, -0.0229257233440876, 0.014538593590259552, 0.0069712083786726, -0.007858699187636375, 0.00030274622258730233, 0.019606100395321846, -0.026245346292853355, 0.00804839190095663, 0.0009450763463973999, -0.012804259546101093, -0.004715219605714083, -0.018183404579758644, 0.006754416506737471, 0.009118800982832909, 0.021448828279972076, -0.00830583181232214, 0.009139125235378742, 0.011442537419497967, 0.005558674689382315, 0.010182435624301434, -0.004830390214920044, 0.0007486088434234262, 0.005968546494841576, -0.007912897504866123, 0.01864408701658249, -0.004257924389094114, -0.019795792177319527, 0.01924026384949684, -0.014917979016900063, -0.005650133825838566, -0.011354465037584305, -0.00857682153582573, 0.005826277192682028, 0.0022339706774801016, 0.018061459064483643, -0.004200339317321777, -0.00830583181232214, 0.01623227819800377, 0.022031456232070923, 0.018684735521674156, 0.01275006216019392, 0.01421340648084879, -0.008265183307230473, 0.01791241392493248, -0.009857247583568096, 0.020310672000050545, -0.01122574508190155, 0.005836439318954945, 0.008265183307230473, 3.958988963859156e-05, -0.0033026861492544413, -0.019511252641677856, 0.0031773534137755632, 0.0005673845298588276, -0.002950399648398161, -0.008095814846456051, 0.023454152047634125, 0.0034788292832672596, 0.018156304955482483, -0.0007109243306331336, -0.020120980218052864, 0.005924510769546032, -0.002493104664608836, 0.01644906960427761, -0.00601935712620616, 0.007255747448652983, 0.005978708621114492, 0.00707282917574048, 0.034469880163669586, -0.005687394645065069, -0.0050844429060816765, -0.0023355919402092695, 0.007594484370201826, -0.007208324037492275, -0.014782484620809555, -0.0301340464502573, -0.004586499650031328, -0.005223324988037348, -0.0027911930810660124, 0.00025257081142626703, -0.004359545651823282, 0.008664892986416817, 0.009721753187477589, 0.012519720941781998, 0.021204939112067223, -0.005321559030562639, 0.004806678742170334, -0.0021848538890480995, -0.006330995354801416, 0.013149771839380264, -0.006625696551054716, -0.01625937782227993, -0.0035194777883589268, 0.006944109220057726, -0.003111299593001604, -0.004278248641639948, 0.01581224426627159, -7.907392864581198e-05, 0.005402855575084686, 0.019321560859680176, -0.0068628122098743916, -0.012763611972332, -0.0102230841293931, 0.0029537868686020374, 0.0012287686113268137, 0.0005872853216715157, -0.015961289405822754, -0.008678442798554897, 0.01057536993175745, 0.002899589017033577, 0.005575611721724272, -0.03368401154875755, -0.005992257967591286, -0.01014856155961752, 0.009870797395706177, 0.03026954084634781, -0.002176385372877121, 0.012960079126060009, -0.004102105274796486, -0.019606100395321846, 0.02438906580209732, -0.04067554324865341, -0.016814906150102615, 0.011578031815588474, 0.011090250685811043, -0.014348900876939297, -0.006280184723436832, -0.00015624245861545205, -0.03029664047062397, -0.022695381194353104, 0.002030728617683053, 0.005213162861764431, 0.010704089887440205, 0.001255867537111044, -0.008183887228369713, -0.004044520203024149, -0.0047253817319869995, -0.01978224329650402, -0.009125575423240662, -0.008881685324013233, -0.0008773289155215025, -0.005006533581763506, 0.03384660556912422, -0.004613598342984915, -0.005263973493129015, -0.003175659803673625, 0.01779046840965748, -0.0018596663139760494, 0.025622069835662842, -0.03571643307805061, -0.017953062430024147, -0.008786838501691818, -0.005223324988037348, 0.023291558027267456, -0.015514155849814415, -0.0026302931364625692, 0.014430197887122631, 0.02051391452550888, 0.01522961724549532, -0.0012643359368667006, -0.007709654979407787, -0.0077570779249072075, -0.003150254487991333, -0.01810210756957531, 0.008116139099001884, -0.002503266790881753, -0.026624731719493866, 0.012065812945365906, 0.009538834914565086, -0.028914593160152435, -0.0025710139889270067, 0.0025811761151999235, 0.010040165856480598, -0.013014276511967182, 0.019226714968681335, 0.0186711847782135, 0.009945319034159184, 0.010114687494933605, -0.008177111856639385, -0.0003781152190640569, -0.015392211265861988, 0.017045248299837112, -0.023196712136268616, 0.01181514747440815, -0.005131866317242384, -0.022397292777895927, 0.012059038504958153, -0.03883281350135803, -0.004078393802046776, -0.001570046180859208, -0.020473266020417213, -0.03655650094151497, -0.009769176132977009, 0.00998596753925085, -0.0013464797521010041, -0.018684735521674156, 0.0009010405046865344, 0.022586986422538757, -0.0003997097082901746, -0.024524562060832977, -0.0028911205008625984, 0.013752724044024944, -0.015148320235311985, 0.020812002941966057, 0.003895475994795561, -0.004329059273004532, 0.007181225344538689, -0.01333946455270052, -0.006574885919690132, -0.02826421894133091, 0.0011508590541779995, 0.0038378906901925802, -0.006476652342826128, 0.009816599078476429, -1.5375486327684484e-05, 0.0015378661919385195, 0.004887975286692381, -0.02407742850482464, -0.00575514230877161, 0.0015454876702278852, -0.023955482989549637, -0.008353255689144135, -0.011937092989683151, -0.022817326709628105, 0.012458748184144497, 0.00701185641810298, -0.01959254965186119, -0.004586499650031328, -0.015825795009732246, -0.008393904194235802, -0.012506171129643917, -0.008644568733870983, 0.007093153428286314, -0.001579361385665834, 0.005057343747466803, -0.012106461450457573, 0.017383985221385956, 0.001432857709005475, 0.00011887552682310343, -0.017966613173484802, 0.011232520453631878, 0.007919671945273876, -0.008671668358147144, 0.007174450438469648, -0.01730268821120262, -0.031326401978731155, 0.02429421991109848, -0.008807162754237652, -0.024849748238921165, -0.006561336573213339, 0.006944109220057726, -0.003224776592105627, -0.010277281515300274, -0.003499153535813093, 0.006751029286533594, -0.01494507770985365, -0.002725139493122697, 0.01111734937876463, -0.00604306859895587, 0.003375514643266797, 0.02337285503745079, -0.0011034358758479357, -0.017573677003383636, 0.014525043778121471, -0.012451973743736744, -0.002438906580209732, 0.006849262863397598, -0.009593033231794834, 0.007445440161973238, 0.015039924532175064, -0.01581224426627159, -0.03311493247747421, -0.0021865474991500378, 0.0008366804686374962, 0.0012541739270091057, -0.026245346292853355, -0.013542707078158855, 0.010704089887440205, -0.02344060316681862, 0.029429472982883453, 0.004539076238870621, -0.016110332682728767, 0.006686669308692217, 0.0027285267133265734, 0.01715364307165146, 0.007912897504866123, 0.027126062661409378, 0.0032451008446514606, 0.012133561074733734, 0.02105589397251606, 0.021936610341072083, 0.016787808388471603, -0.020026134327054024, -0.0022119528148323298, 0.0011889670277014375, 0.011842247098684311, -0.010107913054525852, -0.013861119747161865, -0.007194774691015482, 0.02829131670296192, 0.006459715310484171, -0.006415679585188627, -0.014768934808671474, -0.02705831453204155, -0.017451731488108635, -0.0298901554197073, 0.009742077440023422, -0.009010405279695988, 0.008488750085234642, 0.005684007424861193, 0.005446891766041517, 0.003546576714143157, -0.023386405780911446, -0.0039056381210684776, -0.01644906960427761, 0.01106992643326521, 0.03493056446313858, 0.0006626543472521007, 0.015392211265861988, 0.01753302849829197, 0.019538352265954018, -0.005338495597243309, -0.01835954748094082, 0.0040411329828202724, 0.02041906863451004, 0.003002903889864683, 0.009396565146744251, -0.005558674689382315, -0.007127027027308941, -0.012201308272778988, -0.0008578515262342989, 0.007445440161973238, 0.007486088667064905, -0.005291072651743889, -0.002762400545179844, 0.0034076946321874857, -0.004921849351376295, 0.010866683907806873, 0.02270893007516861, -0.012607792392373085, 0.0038175664376467466, -0.0010170579189434648, -0.0009103557677008212, 0.0004793129046447575, 0.002899589017033577, -0.0019562062807381153, 0.002726833103224635, -0.008475200273096561, -0.003468667156994343, 0.02146237902343273, -0.020568111911416054, 0.009112026542425156, 0.020175177603960037, -0.008644568733870983, -0.029104286804795265, -0.014931528829038143, 0.004898137412965298, 0.005416405387222767, 0.005910961423069239, -0.025486575439572334, -0.0008282120688818395, 0.003980160225182772, -0.007567385211586952, 0.0015116140712052584, 0.002833535196259618, -0.0023914834018796682, -0.0068560377694666386, -0.003885313868522644, 0.010704089887440205, 0.014728286303579807, 0.00989112164825201, -0.03045923449099064, 0.004251149948686361, 0.006754416506737471, -0.006639245897531509, 0.003973385319113731, -0.0033789018634706736, 0.005785628687590361, -0.016503268852829933, -0.01623227819800377, 0.005507864058017731, 0.02001258358359337, -0.011327366344630718, 0.0034889914095401764, -0.021421730518341064, 0.011699977330863476, -0.011740625835955143, -0.0044239056296646595, 0.023318657651543617, -0.010975079610943794, 0.02190951071679592, 0.024524562060832977, 0.012987177819013596, -0.0010382289765402675, -0.0017148562474176288, -0.01734333671629429, -0.0063784183003008366, 0.002193322405219078, 0.0034517303574830294, -0.0172484889626503, -0.006541012320667505, -0.01470118761062622, 0.0010687153553590178, 0.011097025126218796, 0.00412920443341136, 0.004705057479441166, 0.010914106853306293, -0.00671715522184968, 0.0006452940287999809, 0.007709654979407787, -0.008122914470732212, 0.026570532470941544, -0.0019629811868071556, -0.0022322770673781633, -0.034469880163669586, -0.002013791585341096, 0.0038378906901925802, -0.006063392851501703, 0.010365352965891361, 0.03495766222476959, 0.008393904194235802, -0.007831600494682789, 0.0186711847782135, -0.01597483828663826, 0.0046000489965081215, 0.0011728770332410932, 0.013684975914657116, 0.017776919528841972, -0.01497217733412981, -0.0010517784394323826, 0.011422213166952133, 0.002640455262735486, -0.017451731488108635, -0.0015454876702278852, -0.006117590703070164, 0.008759739808738232, -0.02512073889374733, 0.008150013163685799, -0.022749578580260277, 0.004383257124572992, -0.01284490805119276, -0.01338688749819994, -0.0021120253950357437, 0.002526978263631463, 0.00475586811080575, -0.00023436368792317808, 0.021353982388973236, -0.006212437059730291, -0.009518510662019253, -0.02016162872314453, -0.012208082713186741, 0.017804019153118134, 0.00539946835488081, 0.0204461682587862, 0.022952821105718613, 0.01644906960427761, -0.024158725515007973, -0.004396806936711073, -0.013800146989524364, -0.008068716153502464, 0.0030300028156489134, 0.0021865474991500378, 0.000746915175113827, 0.01020953431725502, -0.020879751071333885, -0.012397775426506996, -0.0031333176884800196, -0.014606340788304806, 0.0015370192704722285, 0.022952821105718613, 0.014646989293396473, -0.009532060474157333, 0.007960320450365543, -0.006496976129710674, -0.023494800552725792, -0.004335834179073572, -0.00480329105630517, -0.009518510662019253, 0.007533511612564325, 0.02003968320786953, 0.005413017701357603, -0.0008091580821201205, 0.002552383579313755, 0.008122914470732212, 0.014511494897305965, 0.014254054054617882, 0.0010551658924669027, -0.03121800534427166, -0.0076486822217702866, 0.0030316964257508516, -0.006503751035779715, -0.012675539590418339, 0.024971693754196167, -0.009931770153343678, 0.013637552969157696, -0.014917979016900063, 0.0008129688794724643, -0.0051081543788313866, -0.006744254380464554, -0.002374546602368355, 0.0022339706774801016, 0.010663442313671112, 0.002662473125383258, 0.01816985383629799, 0.01562255248427391, 0.008197436109185219, -0.032030973583459854, -0.010290831327438354, -0.023996131494641304, 0.010317930020391941, -0.02346770092844963, 0.005822889506816864, 0.01430825237184763, -0.0021814664360135794, 0.005589161068201065, -0.0019595937337726355, -0.005297847092151642, 0.00890878401696682, 0.01822405308485031, 8.293764403788373e-05, -0.015798695385456085, -0.005514638964086771, -0.0024219697806984186, 0.005352044943720102, -0.010975079610943794, -0.03211227059364319, 0.01978224329650402, 0.008217760361731052, -0.01430825237184763, 0.014660539105534554, 0.010053715668618679, 0.017858216539025307, -0.016855554655194283, -0.002985966857522726, 0.004552625585347414, -0.007628357969224453, 0.009186548180878162, -0.007716429885476828, -0.012174208648502827, 0.009667554870247841, 0.005372369196265936, -0.008089040406048298, -0.024890396744012833, 0.0041359793394804, -0.024240022525191307, 0.020242925733327866, 0.01585289277136326, 0.027071863412857056, 0.008868135511875153, 0.019023472443223, -0.011110574938356876, 0.023332206532359123, 0.004837164655327797, -0.016855554655194283, 0.013786597177386284, 0.004566175397485495, -0.0010534721659496427, -0.02438906580209732, -0.008082265965640545, -0.012614566832780838, -0.008265183307230473, -0.010114687494933605, -0.011659328825771809, -0.027397051453590393, -0.015636101365089417, 0.01623227819800377, -0.009322043508291245, 0.011632230132818222, 0.009159449487924576, 0.02016162872314453, -0.004007258918136358, 0.008400678634643555, -0.00014703304623253644, 0.007967094890773296, -0.0197280440479517, -0.001542100333608687, -0.0012584080686792731, -0.026746677234768867, 0.004823615308851004, 0.00792644638568163, -0.00761480862274766, 0.0027183648198843002, -0.014660539105534554, 0.005711106583476067, 0.008244859054684639, 0.02419937402009964, -3.2312338589690626e-05, 0.01506702322512865, 0.023427054286003113, 0.030405037105083466, 0.0018054683459922671, 0.004952335264533758, 0.009586257860064507, -0.015378661453723907, -0.0019003148190677166, 0.005775466561317444, -0.011801598593592644, 0.0065816608257591724, 0.005324946250766516, 0.01661166362464428, -0.007784177083522081, 0.01302105188369751, 0.004139366559684277, 0.005623034667223692, -0.0022949434351176023, -0.008522624149918556, 0.0033772082533687353, 0.00635131960734725, -0.007906122133135796, -0.003424631431698799, 0.0006495282868854702, -0.005707718897610903, -0.023359306156635284, 0.012512946501374245, -0.012770386412739754, -0.010006291791796684, 0.011144448071718216, -0.0020375032909214497, -0.002477861475199461, -0.010033391416072845, 0.02117783948779106, 0.003136704908683896, -0.009247520938515663, 0.04119042307138443, 0.00761480862274766, -0.014985726214945316, 0.002958867931738496, 0.005538350436836481, -0.0035330273676663637, -0.018210502341389656, -0.03173288702964783, 0.009816599078476429, -0.006771353539079428, 0.0050810556858778, 0.00701185641810298, 0.0027928869239985943, 0.016191629692912102, -0.0011635617120191455, 0.0017732883570715785, -0.007032180670648813, 0.006642633117735386, -0.002178079215809703, -0.021516576409339905, -0.005247036460787058, 0.0076486822217702866, -0.002205178141593933, -0.016909752041101456, -0.0029791921842843294, 0.01402371283620596, 0.015676749870181084, -0.0026980405673384666, 0.00021552144607994705, 0.0043663205578923225, 0.008664892986416817, -0.004034358076751232, 0.005697556771337986, 0.0017334867734462023, -0.0047863544896245, 0.02937527559697628, 0.0051352535374462605, -0.0009806436719372869, -0.004030970856547356, 0.009714977815747261, -0.006805227138102055, 0.006165014114230871, 0.010216308757662773, -0.0019985483959317207, 0.004000484477728605, 0.023034118115901947, 0.0025693203788250685, -0.0010805710917338729, 0.010060490109026432, -0.0017902252729982138, 0.001145777991041541, -0.005904186517000198, 0.006439391057938337, -0.013698525726795197, -0.017519479617476463, 0.009640456177294254, 0.009437213651835918, -0.009850473143160343, -0.01699104905128479, -0.003461892483755946, -0.010656666941940784, -0.0006330148316919804, 0.005849988665431738, -0.007472538854926825, 0.008841036818921566, -0.023454152047634125, 0.011896444484591484, 0.01308202464133501, -0.012770386412739754, -0.004579724743962288, -0.005277522839605808, -0.002438906580209732, 0.0017326399683952332, -0.01349528320133686, 0.015107671730220318, 0.01119187194854021, -0.0015962983015924692, -0.030079849064350128, -0.010331479832530022, 0.0011008953442797065, -0.005799178034067154, -0.0035431894939392805, 0.016408421099185944, 0.006876362022012472, -0.010270507074892521, 0.01122574508190155, -0.03848052769899368, -0.009579483419656754, -0.01569029875099659, -0.01119187194854021, -0.012587468139827251, 0.0038175664376467466, 0.0022441328037530184, -0.024307768791913986, -0.0004911686992272735, 0.017492379993200302, 0.006869587115943432, 0.021232036873698235, -0.012682314962148666, -0.021570773795247078, 0.006950884126126766, 0.01831889897584915, 0.014511494897305965, -0.02169271931052208, 0.0037057832814753056, -0.004572949837893248, 0.008312607184052467, -0.016015486791729927, 0.007465764414519072, 0.007181225344538689, -0.007066054735332727, -0.04728769138455391, -0.015270265750586987, 0.018820229917764664, -0.009166223928332329, -0.002201790688559413, 0.018982823938131332, -0.0017715947469696403, 0.021394630894064903, -0.019714495167136192, -0.007831600494682789, -0.005009920801967382, 0.013413986191153526, -0.0019223326817154884, -0.011137673631310463, 0.0406484454870224, 0.00601935712620616, -0.0031333176884800196, 0.012878782115876675, -0.0009865716565400362, -0.01864408701658249, 0.025540772825479507, -0.01214710995554924, 0.012905880808830261, 0.0034889914095401764, -0.0076486822217702866, 0.016936851665377617, 0.006029519252479076, 0.015636101365089417, -0.02388773486018181, 0.004000484477728605, -0.0216249730437994, 0.003973385319113731, -0.00825840886682272, 0.018495041877031326, 0.0029927417635917664, -0.004871038720011711, 0.0035025409888476133, 0.005358819849789143, -0.004362932872027159, 0.008759739808738232, -0.00854294840246439, 0.003002903889864683, -0.014389549382030964, -0.01628647744655609, -0.003746431553736329, -0.02880619838833809, 0.010155336000025272, -0.012932980433106422, 0.008942658081650734, -0.003644810523837805, 0.0406484454870224, -0.007702880073338747, -0.008380354382097721, -0.006673119496554136, 0.012872007675468922, 0.010419551283121109, -0.014836682006716728, -0.024050328880548477, 0.014348900876939297, 0.009294943884015083, -0.0019308010814711452, -0.009071378037333488, 0.007601259276270866, -0.015432859770953655, 0.009315268136560917, -0.01569029875099659, -0.013955965638160706, 0.02117783948779106, -0.007431890349835157, -0.015744497999548912, -0.0005102226859889925, -0.031326401978731155, -0.00962013192474842, 0.011571257375180721, 0.003472054610028863, 0.004789741709828377, 0.020757805556058884, 0.0008146625477820635, -0.0018681347137317061, -0.005216550547629595, 0.016936851665377617, 0.01774981990456581, 0.04232858121395111, 0.002499879337847233, 0.010473749600350857, -0.02921268157660961, 0.008563272655010223, -0.029321078211069107, -0.0003978043096140027, -0.0020696832798421383, -0.024212922900915146, -0.022275347262620926, 0.019633198156952858, 0.007418341003358364, 0.027424151077866554, 0.020839102566242218, -0.01587999239563942, -0.004315509926527739, -0.004342608619481325, -0.007228648290038109, -0.00607355497777462, 0.002311880234628916, 0.010887008160352707, 0.008312607184052467, -0.021381082013249397, -0.005413017701357603, 0.019700946286320686, 0.006832325831055641, 0.0045255268923938274, -0.0026726352516561747, 0.005971933715045452, 0.013779822736978531, 0.0046000489965081215, -0.020879751071333885, -0.022370193153619766, 0.01758722774684429, 0.005348657723516226, 0.015107671730220318, 0.015039924532175064, 0.01609678380191326, 0.0018325673881918192, -0.0035736756399273872, 0.00448487838730216, -0.012946529313921928, -0.001294822315685451, -0.0002771292347460985, -0.023386405780911446, -0.001305831247009337, 0.004843939561396837, 0.0003723990230355412, -0.01532446313649416, 0.022654732689261436, 0.0066121467389166355, -0.007133801933377981, -0.041109126061201096, -0.009999517351388931, 0.007770627737045288, 0.013678201474249363, 0.01562255248427391, 0.00836680456995964, -0.008332931436598301, -0.016476169228553772, -0.012445198372006416, -0.006100654136389494, 0.0009679410723038018, 0.012634891085326672, -0.014823133125901222, 0.006541012320667505, -0.008251634426414967, 0.016692960634827614, 0.010744738392531872, 0.003209533402696252, 0.019822891801595688, -0.008983306586742401, -0.003146867034956813, -0.03376530855894089, -0.017573677003383636, -0.02311541512608528, -0.047368988394737244, -0.0076825558207929134, -0.012201308272778988, 0.007248972542583942, -0.010737963952124119, -0.01940285786986351, 0.01635422371327877, -0.0009874184615910053, -0.018373096361756325, -0.006266635376960039, -0.0028572469018399715, 0.00103230110835284, 0.006452940404415131, -0.0036888462491333485, -0.02432131953537464, 0.0016471088165417314, -0.023007020354270935, 0.017736271023750305, 0.013197194784879684, -0.0114018889144063, -0.0012719575315713882, -0.01203871425241232, -0.0010060489876195788, 0.006527462508529425, 0.0050336322747170925, 0.011889670044183731, 0.007818050682544708, 0.0017461894312873483, -0.03262715041637421, -0.024253571406006813, -0.019429955631494522, -0.01014856155961752, -0.003135011298581958, 0.021936610341072083, -0.021936610341072083, -0.0010289137717336416, -0.00922719668596983, 0.01838664710521698, -0.01167287863790989, 0.01506702322512865, 0.010643118061125278, 0.019389307126402855, 0.0010526253608986735, 0.0032061459496617317, -0.004268086515367031, -0.004738931078463793, 0.03921220079064369, 0.011862571351230145, 0.009796274825930595, -0.0062463111244142056, 0.006808614358305931, 0.005507864058017731, -0.016245828941464424, 0.004037745296955109, 0.015297364443540573, -0.014877330511808395, -0.0013676508096978068, 0.007696105632930994, -0.0016360998852178454, -0.006165014114230871, -0.00043824102613143623, 0.006883136462420225, 0.005680620204657316, -0.010771838016808033, -0.016950400546193123, 0.02321026101708412, 0.03517445549368858, 0.017397534102201462, -0.006036294158548117, 0.017682073637843132, -0.027613842859864235, 0.005978708621114492, 0.02625889517366886, -0.005687394645065069, -5.9755329857580364e-05, -0.018874427303671837, -0.006300508975982666, 0.0004505202523432672, -0.012180984020233154, 0.006449553184211254, -0.0033822893165051937, 0.017099445685744286, 0.006442778278142214, -0.00150483928155154, -0.019457055255770683, 0.00034953426802530885, 0.015568354167044163, 0.0033009923063218594, -0.0009145900257863104, -0.00674764160066843, -0.0036583601031452417, 0.027966130524873734, -0.02029712311923504, -0.015473507344722748, -0.009681104682385921, 0.008962982334196568, 0.003472054610028863, 0.0036414230708032846, 0.014877330511808395, 0.006734092254191637, -0.0020713768899440765, -0.010805711150169373, -0.0197280440479517, 0.0023186549078673124, 0.0028420037124305964, 0.01181514747440815, 0.02953786961734295, -0.0009662474039942026, -0.001605613506399095, 0.011835471726953983, -0.021543676033616066, 0.014497945085167885, 0.0010162111138924956, -0.004410356283187866, -0.004887975286692381, 0.024592308327555656, -0.035933226346969604, -0.006361481733620167, -0.0017969999462366104, 0.01829179935157299, 0.010006291791796684, -0.0060532307252287865, -0.021584324538707733, -0.007580935023725033, -0.007066054735332727, 0.0145927919074893, -0.01581224426627159, -0.0022712317295372486], "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f": [-0.03876004368066788, 0.01501848828047514, -0.013496066443622112, 0.03250576928257942, -0.025661727413535118, 0.0002477364905644208, 0.048936955630779266, 0.01416812650859356, -0.009230541065335274, 0.015855135396122932, 0.023631831631064415, 0.04048819839954376, 0.001156389364041388, 0.000516046246048063, 0.0028133948799222708, 0.009744873270392418, 0.006490867119282484, 0.008928800001740456, 0.01752842776477337, -0.04021389037370682, 0.012337105348706245, -0.019983505830168724, -0.05340821295976639, 0.025003382936120033, 0.02793850377202034, 0.014209273271262646, 0.00610683299601078, -0.005791375879198313, -0.023618116974830627, -0.015608255751430988, 0.01596485823392868, 0.006161694880574942, 0.03513914719223976, 0.01243311446160078, -0.00668288441374898, -0.030558167025446892, -0.012789717875421047, -0.023247797042131424, 0.0007414949941448867, -0.02692355588078499, -0.010595235042273998, 0.012247954495251179, 0.02444104664027691, 0.007372089195996523, -0.04405423253774643, 0.02740359865128994, 0.025730306282639503, 0.007666972931474447, 0.003242004895582795, 0.011548463255167007, 0.005074740387499332, -0.02175280638039112, 0.014579592272639275, 0.022562021389603615, 0.02998211607336998, -0.01365379523485899, 0.0009429416386410594, 0.016952376812696457, -0.02551085688173771, -0.07378946989774704, -0.0156768336892128, -0.019640617072582245, 0.009463705122470856, -0.01752842776477337, -0.000578194682020694, -0.01644490286707878, 0.02549714222550392, 0.009230541065335274, 0.01219309214502573, 0.00953914038836956, 0.023288944736123085, 0.04161287099123001, -0.0060039665549993515, 0.025963468477129936, 0.01957204006612301, -0.0028631137683987617, 0.014579592272639275, 0.02175280638039112, 0.027046995237469673, 0.000477899971883744, 0.008681920357048512, -0.023302659392356873, 0.05554783344268799, -0.019146857783198357, 0.0648469552397728, 0.03922637179493904, -0.011322157457470894, -0.02604576200246811, -0.004824432078748941, -0.03700445964932442, 0.013626364059746265, 0.034096769988536835, -0.011932497844099998, 0.01917428895831108, 0.0039089214988052845, -0.01423670444637537, 0.009408842772245407, 0.015251652337610722, 0.014360143803060055, -0.009642006829380989, 0.006874901708215475, 0.008023575879633427, -0.04605669900774956, 0.04273754358291626, 0.009374554269015789, -0.0033157255966216326, -0.00465984595939517, 0.011205575428903103, -0.04833347350358963, 0.01027292013168335, 0.006158266216516495, -0.03785482048988342, 0.002597375540062785, 0.026745254173874855, -0.04084480181336403, -0.012138230726122856, -0.012981734238564968, -0.006099975202232599, -0.020847583189606667, 0.004512404557317495, 0.031463392078876495, -0.001844736747443676, -0.02224656566977501, 0.0003578892210498452, -0.04136599227786064, 0.0025613724719733, 0.009093386121094227, 0.021725375205278397, -0.009923174977302551, -0.006079401820898056, 0.008633916266262531, -0.021972253918647766, 0.01499105803668499, -0.029186615720391273, 0.035166580229997635, 0.0047044213861227036, -0.0075709642842411995, 0.03470025211572647, 0.007180071901530027, 0.006998341530561447, -0.0583183690905571, -0.027046995237469673, -0.017885031178593636, 0.0024276461917907, 0.018241634592413902, -0.008654490113258362, -0.014949911274015903, 0.04317643865942955, -0.020189236849546432, 0.022959772497415543, -0.055273525416851044, -0.04070764780044556, 0.012275385670363903, -0.0077218348160386086, 0.01477160956710577, -0.03675758093595505, -0.016678065061569214, 0.04191461205482483, 0.024495908990502357, -0.020710427314043045, -0.008119584992527962, -0.024029580876231194, 0.0216156505048275, 0.013955536298453808, -0.01839250512421131, 0.0002241629408672452, 0.029268909245729446, -0.009888886474072933, -0.03609923645853996, 0.018968556076288223, -0.004893010016530752, -0.046413302421569824, 0.020600702613592148, 0.003214573720470071, -0.005160462576895952, -0.01606086827814579, 0.03568777069449425, 0.024495908990502357, 0.013886958360671997, -0.009347123093903065, -0.009059097617864609, 0.006377714220434427, -0.012371393851935863, -0.022411150857806206, 0.013989824801683426, 0.0334932878613472, 0.014126979745924473, 0.001684436690993607, 0.021492211148142815, 0.010903834365308285, 0.017254117876291275, -0.026361219584941864, 0.04004930332303047, 0.01879025436937809, -0.0062714191153645515, 0.013893816620111465, 0.002875114791095257, -0.015292799100279808, -0.043094146996736526, 0.021547073498368263, -0.011706192046403885, -0.05837323144078255, -0.02171166054904461, 0.046605318784713745, -0.021547073498368263, 0.010787252336740494, -0.008181304670870304, -0.006991483736783266, 0.03228631988167763, -0.024852512404322624, 0.037882249802351, -0.016924945637583733, -0.016513479873538017, 0.012570269405841827, 0.017267832532525063, -0.018570806831121445, -0.02998211607336998, 0.035605475306510925, 0.007138925604522228, -0.03354815021157265, -0.03228631988167763, 0.006655453704297543, -0.007975571788847446, -0.03179256245493889, -0.0398024246096611, -0.0205458402633667, -0.008503619581460953, 0.011905066668987274, -0.044218819588422775, -0.030887339264154434, 0.04707164689898491, 0.040378473699092865, 0.00684061273932457, 0.001104098977521062, -0.021163038909435272, 0.036428406834602356, 0.023288944736123085, -0.010471795685589314, 0.0009763732086867094, 0.003775195451453328, 0.031765133142471313, 0.031518254429101944, -0.02035382390022278, 8.266812073998153e-05, -0.013228613883256912, -0.017638152465224266, -0.02291862480342388, 0.0253599863499403, 0.020806435495615005, 3.139566979371011e-05, 0.004217520821839571, -0.01470303162932396, -0.01445615291595459, 0.0013586932327598333, -0.04794944077730179, 0.02005208283662796, 0.03941838815808296, 0.014126979745924473, -0.009676295332610607, -0.01070495881140232, 0.015800273045897484, 0.033904753625392914, -0.03568777069449425, -0.00859277043491602, 0.0221505556255579, -0.03236861526966095, 0.01665063574910164, -0.01321489829570055, 0.02516796998679638, 0.006871473044157028, 0.023823849856853485, -0.004090652335435152, 0.045535508543252945, -0.002960836747661233, 0.025250263512134552, 0.025058245286345482, 0.0102454898878932, 0.003022556658834219, 0.0204909797757864, 0.031024495139718056, 0.005153604783117771, -0.030338719487190247, -0.0037580509670078754, 0.020189236849546432, 0.0110478475689888, -0.02604576200246811, 0.006806324236094952, -0.021067030727863312, -0.015498531982302666, 0.00020208953355904669, -0.009127674624323845, 0.0037854821421205997, 0.019242867827415466, 0.013790950179100037, 0.015800273045897484, 0.03003697656095028, -0.008839649148285389, -0.005931959953159094, -0.03250576928257942, 0.023275228217244148, 0.0008803646196611226, -0.03903435543179512, -0.017651867121458054, -0.019681762903928757, 0.03952811285853386, -0.06808381527662277, -0.00031502824276685715, -0.007536675315350294, 0.006730888970196247, 0.030640460550785065, 0.055849574506282806, -0.03903435543179512, 0.015279083512723446, -0.011699333786964417, 0.03072275221347809, -0.015855135396122932, 0.02092987485229969, -0.03140852972865105, -0.003283151425421238, -0.041448283940553665, 0.02199968509376049, 0.030887339264154434, -0.06501153856515884, 0.05052795633673668, 0.032204028218984604, -0.052256111055612564, -0.003980928100645542, -0.016198022291064262, -0.017898745834827423, -0.00929226167500019, 0.018269065767526627, -0.0540391281247139, -0.032972097396850586, 0.029049459844827652, -0.012042221613228321, -0.04122883826494217, -0.05146061256527901, -0.01606086827814579, 0.03245090693235397, -0.026347503066062927, 0.0070429169572889805, -0.043341025710105896, 0.028061943128705025, -0.04989704117178917, 0.01659577339887619, -0.00034160204813815653, 0.019558323547244072, -0.0069366213865578175, -0.038129132241010666, 0.008195020258426666, 0.0006904904730618, 0.01854337565600872, 0.0005216181743890047, 0.019956074655056, -0.02184881456196308, -0.02136877179145813, -0.02784249559044838, 0.014469867572188377, -0.009840881451964378, 0.018227919936180115, -0.044657714664936066, -0.03393218293786049, -0.028637994080781937, -0.02516796998679638, -0.008819076232612133, -0.023961003869771957, 0.009607718326151371, -0.0070772054605185986, 0.013564644381403923, 0.0028631137683987617, -0.026882408186793327, 0.020038366317749023, 0.023837564513087273, 0.016280315816402435, 0.0013544070534408092, -0.013585217297077179, 0.010958696715533733, 0.025812597945332527, -0.01070495881140232, 0.012083368375897408, 0.043971940875053406, 0.021478496491909027, -0.001964747440069914, -0.0061308350414037704, -0.005962820257991552, -0.002797964960336685, -0.003864346304908395, -0.037361063063144684, -0.003082562005147338, 0.004471257794648409, 0.006984625943005085, 0.0210258848965168, -0.009312834590673447, -0.01189820934087038, 0.007653257343918085, 0.027513323351740837, -0.013427488505840302, 0.005397054832428694, -0.040433336049318314, -0.018776539713144302, 0.013585217297077179, -0.04254552721977234, -0.0006823468720540404, -0.02579888328909874, -0.02822653017938137, -0.04468514770269394, -0.0091756796464324, -0.014222988858819008, 0.006693171337246895, 0.017693014815449715, 0.007996144704520702, 0.028884874656796455, 0.01338634267449379, 0.022548306733369827, 0.04852548986673355, 0.0015824275324121118, 0.005235897842794657, 0.0754353329539299, -0.03615409508347511, -0.0036723290104418993, 0.019983505830168724, 0.01649976335465908, 0.002299063140526414, -0.006422289647161961, -0.013139463029801846, 0.010163196362555027, 0.0410916805267334, -0.0023402096703648567, -0.011925640515983105, -0.007591537199914455, -0.0024893658701330423, 0.0026488087605684996, 0.012295958586037159, 0.01423670444637537, -0.030064407736063004, -0.025881176814436913, -0.004375249147415161, -0.04185974970459938, 0.012343963608145714, 0.020628133788704872, -0.0036311824806034565, 0.04361533746123314, -0.017981039360165596, 0.04460285231471062, -0.0015558537561446428, -0.01596485823392868, -0.019352590665221214, 0.017336411401629448, 0.03398704528808594, -0.003696331288665533, 0.02146477997303009, -0.009594002738595009, -0.01820048876106739, -0.03423392400145531, 0.032204028218984604, -0.02442733198404312, -0.015196789987385273, -0.009408842772245407, 0.013722372241318226, -0.020422400906682014, 0.0022356288973242044, -0.021862531080842018, 0.05140575021505356, 0.013880101032555103, 0.03308182209730148, -0.0430118553340435, 0.008051007054746151, 0.010938122868537903, -0.009868312627077103, -0.017610721290111542, -0.0017427275888621807, -0.020806435495615005, -0.01555339340120554, 0.016774075105786324, -0.014634454622864723, -0.03549575060606003, -0.011521032080054283, 0.015525962226092815, 0.009888886474072933, -0.013146321289241314, 0.009868312627077103, -0.05165262892842293, -0.023234082385897636, 0.0011983930598944426, 0.0005143317976035178, -0.007029201369732618, 0.025963468477129936, 0.000249665230512619, 0.009861455298960209, -0.03513914719223976, 0.01267999317497015, -0.011795342899858952, -0.005688509903848171, 0.006206270307302475, -0.007365231402218342, -0.009683153592050076, -0.052887026220560074, -0.008750498294830322, 0.010231774300336838, -0.03908921778202057, 0.04254552721977234, -0.040954526513814926, 0.02029896154999733, 0.037882249802351, -0.015100781805813313, 0.042079199105501175, -0.00949113629758358, 0.019023418426513672, -0.005952533334493637, -0.016774075105786324, -0.029433494433760643, 0.04117397591471672, -0.036812443286180496, 0.0054656327702105045, 0.015333945862948895, 0.023686693981289864, -0.0007950712461024523, -0.010917549952864647, 0.022987201809883118, -0.012542838230729103, 0.01990121230483055, 0.010396360419690609, 0.012453687377274036, -0.018323928117752075, -0.04010416567325592, -0.023631831631064415, 0.005942246876657009, 0.002914546988904476, -0.0010166625725105405, -0.01119185984134674, 0.0024482193402945995, 0.01795360818505287, -0.013324622996151447, -0.018968556076288223, 0.023714125156402588, -0.038622889667749405, 0.003974070306867361, 0.025963468477129936, 0.03417906165122986, 0.017693014815449715, -0.033410992473363876, 0.04506918042898178, -0.00798242911696434, 0.015292799100279808, -0.0019184575648978353, -0.008455614559352398, -0.015663117170333862, 0.009888886474072933, -0.014072118327021599, 0.014140695333480835, -0.014579592272639275, 0.037882249802351, 0.005074740387499332, 0.00554792582988739, 0.012625131756067276, -0.008147016167640686, 0.004735281225293875, -0.024509625509381294, 0.019654331728816032, 0.0008422183454968035, 0.011178144253790379, 0.03308182209730148, -0.002499652560800314, -0.003233432536944747, 0.011040989309549332, 0.022671746090054512, -0.028171667829155922, -0.001495848293416202, -0.028939735144376755, 0.025099391117691994, 0.015292799100279808, 0.014373859390616417, 0.05990936979651451, -0.001820734585635364, -0.011370161548256874, 0.03500199317932129, -0.013886958360671997, -0.006446291692554951, -0.05338078364729881, -0.02131390944123268, 5.2290401072241366e-05, 0.0162117388099432, 0.007858989760279655, 0.005150175653398037, -0.0049547296948730946, -0.008140157908201218, -0.006051970645785332, 0.003994643688201904, -0.02730759046971798, 0.021862531080842018, 0.0005533352959901094, 0.043889645487070084, -0.020861297845840454, 0.017459850758314133, -0.020271530374884605, 0.0065217274241149426, 8.668634109199047e-05, 0.023961003869771957, -0.01869424618780613, -0.015059635043144226, 0.0065491581335663795, 0.030558167025446892, 0.03286237269639969, -0.03393218293786049, -0.0016210024477913976, 0.011692476458847523, 0.0043101003393530846, 0.008332175202667713, 0.007769838906824589, 0.006288563366979361, -0.022808900102972984, 0.018954841420054436, 0.019873781129717827, -0.00848990399390459, -0.003730620024725795, -0.01606086827814579, 0.01634889282286167, 0.0409819595515728, -0.002657380886375904, -0.002869971562176943, -0.004227807279676199, -0.021437348797917366, 0.027129288762807846, 0.02097102254629135, 0.0018618811154738069, 0.0034443086478859186, 0.014730462804436684, -0.021451065316796303, 0.0009515138226561248, 0.013194325380027294, 0.006339996587485075, -0.019777772948145866, -0.004628986120223999, -0.016033437103033066, 0.012083368375897408, -0.015073350630700588, -0.011068420484662056, 0.0012798289535567164, -0.024413615465164185, -0.012467402964830399, 0.0010543802054598927, 0.007577822078019381, 0.004238094203174114, 0.02092987485229969, 0.007056632544845343, 0.005294188857078552, -0.021478496491909027, 0.017308980226516724, 0.030585598200559616, 0.005674794316291809, -0.004179803188890219, -0.0033277268521487713, -0.01336576882749796, 0.01649976335465908, 0.005990250967442989, -0.03294466808438301, -0.004121512174606323, 0.006439434364438057, 0.00975858885794878, -0.008860222063958645, 0.002597375540062785, 0.003881490556523204, 0.00016865796351339668, 0.02291862480342388, 0.011322157457470894, -0.023741556331515312, 0.0029934111516922712, 0.004412966780364513, 0.031161649152636528, 0.020093228667974472, -0.009216825477778912, -0.008585912175476551, 0.04046076908707619, 0.009600860066711903, -0.020477263256907463, 0.01596485823392868, 0.01907828077673912, -0.022603169083595276, 0.01917428895831108, 0.010643239133059978, -0.025716589763760567, -0.035989511758089066, -0.029762666672468185, -0.02599089965224266, 0.022740323096513748, -0.01795360818505287, 0.015731696039438248, 0.013516639359295368, -0.04191461205482483, 0.0009300833335146308, 0.005112458020448685, 0.019489746540784836, -0.0019304587040096521, -0.01216566190123558, 0.011644472368061543, -0.01146617066115141, 0.008311602286994457, -0.01883140206336975, 0.012837721966207027, -0.02690983936190605, -0.03398704528808594, -0.0269647017121315, -0.016431186348199844, -0.017281549051404, -0.002172194654121995, 0.03807426989078522, -0.011500459164381027, -0.036483269184827805, -0.009950606152415276, -0.011761053465306759, 0.024550771340727806, 0.027664193883538246, -0.004584410693496466, 0.011932497844099998, 0.023864995688199997, -0.027664193883538246, 0.011377019807696342, 0.001629574573598802, -0.02608690969645977, 0.02150592766702175, 0.032396044582128525, 0.011040989309549332, -0.009511709213256836, -0.009045382030308247, -0.02404329739511013, 0.0001990892633330077, -0.015361376106739044, -0.022260280326008797, -0.00859277043491602, 0.004628986120223999, 0.0034494518768042326, -0.016431186348199844, -0.028116805478930473, 0.011185002513229847, -0.01119185984134674, -0.004797001369297504, -0.0020676138810813427, 0.0012515407288447022, 0.005589072126895189, -0.01343434676527977, 0.02885744348168373, -0.045343492180109024, 0.03450823575258255, -0.02487994357943535, -0.007996144704520702, -0.016870083287358284, 0.043231301009655, 0.007694403640925884, 0.01936630718410015, -0.006432576570659876, 0.010842114686965942, -0.01858452335000038, 0.06435319781303406, 0.018680531531572342, -0.008764213882386684, 0.008585912175476551, 0.02444104664027691, 0.020079514011740685, 0.015882566571235657, 0.08755984902381897, 0.0015018488047644496, 0.011884493753314018, 0.013516639359295368, 0.0012721139937639236, -0.00447811558842659, 0.006477151997387409, 8.625772898085415e-05, 0.036922164261341095, 0.012446830049157143, 0.006905761547386646, 0.041256267577409744, -0.002275061095133424, 0.009079670533537865, 0.04833347350358963, -0.045041751116514206, -0.01873539388179779, -0.02131390944123268, 0.0028682569973170757, 0.037059321999549866, -0.0021516212727874517, -0.014908764511346817, -0.022136840969324112, -0.002621377818286419, -0.011377019807696342, 0.029268909245729446, -0.03615409508347511, 0.042518094182014465, 0.018557092174887657, 0.0008949373150244355, 0.008462472818791866, 0.006545729469507933, 0.01699352264404297, -0.026128055527806282, 0.01219309214502573, 0.011863919906318188, -0.005630218889564276, 0.03294466808438301, -0.032341182231903076, -0.001856737770140171, 0.005616503302007914, 0.0409819595515728, -0.020504694432020187, 0.04298442229628563, 0.028994597494602203, -0.0030499876011162996, -0.0037477645091712475, -0.021259047091007233, -0.02778763324022293, 0.0029454068280756474, 0.027623046189546585, 0.0009077956201508641, -0.014222988858819008, -0.03725133836269379, 0.02180766873061657, -0.018131909891963005, -0.005266757681965828, 0.0025442279875278473, 0.018173057585954666, 0.019448600709438324, 0.013660652562975883, -0.015443669632077217, -0.030338719487190247, 0.01172676496207714, 0.006621164735406637, -0.03066789172589779, 0.0011075277579948306, 0.015045919455587864, 0.013468635268509388, 0.007516101934015751, 0.03483740612864494, -6.627379480050877e-05, -0.005191322416067123, 0.01581398770213127, 0.03099706396460533, -0.0004586125141941011, 0.02039496973156929, 0.009827165864408016, -0.0016381468158215284, -0.007550390902906656, 0.0004093223833478987, -0.030585598200559616, -0.02146477997303009, 0.0019098854390904307, -0.0020350394770503044, 0.004361533559858799, 0.012789717875421047, 0.016143159940838814, 0.013400058262050152, 0.019791487604379654, 0.054834626615047455, 0.015114497393369675, -0.021204186603426933, 0.012940588407218456, 0.01800847053527832, -0.03212173655629158, -0.0037477645091712475, 0.018570806831121445, 0.01392124779522419, -0.012172519229352474, 0.039637837558984756, 0.0011289583053439856, 0.010567803867161274, 0.0050815981812775135, 0.008332175202667713, -0.016732927411794662, 0.00969001092016697, 0.00559592992067337, -0.005527352448552847, 0.006566302850842476, -0.027074426412582397, -0.005078169517219067, 0.007913852110505104, 0.024207882583141327, 0.04122883826494217, -0.0069434791803359985, -0.01785760000348091, -0.025661727413535118, 0.03678501024842262, -0.01611573062837124, 0.004495259840041399, 0.015155644156038761, 0.0019013131968677044, -0.0041763740591704845, 0.008565339259803295, -0.033410992473363876, 0.010958696715533733, -0.0003859631542582065, -0.04004930332303047, -0.002731101820245385, -0.01348235085606575, 0.0001567640429129824, -0.014744178391993046, 0.0025493712164461613, -0.017116962000727654, -0.010835256427526474, -0.006655453704297543, 0.0301741324365139, -0.013777234591543674, 0.00583938043564558, -0.012817148119211197, 0.005678222980350256, -0.029131753370165825, -0.024783935397863388, 0.014730462804436684, 0.05033593997359276, -0.04292955994606018, 0.019105711951851845, 0.011061562225222588, -0.024619348347187042, 0.016225453466176987, 0.017939893528819084, -0.014744178391993046, -0.005835951305925846, 0.020367538556456566, 0.04989704117178917, -0.004786714445799589, 0.004738710355013609, 0.005962820257991552, -0.006442863028496504, -0.028884874656796455, 0.007852132432162762, 0.011315299198031425, 0.022671746090054512, -0.02073785848915577, 0.01146617066115141, -0.006501154042780399, -0.017254117876291275, 0.0005186179187148809, -0.004728423897176981, 0.015141928568482399, -0.026196632534265518, -0.003627753583714366, 0.005006162915378809, 0.0024430761113762856, 0.0204909797757864, -0.007632683962583542, -0.044026803225278854, 0.0355231836438179, -0.035111717879772186, -0.014881333336234093, -0.009943747892975807, -0.0077218348160386086, 0.015484816394746304, -0.00905223935842514, -0.014840186573565006, -0.0005036165821366012, 0.005496492609381676, 0.014010398648679256, 0.004114654380828142, -0.028116805478930473, 0.0194760300219059, 0.04775742068886757, -0.01596485823392868, -0.0052050380036234856, -0.001620145165361464, 0.038869768381118774, -0.004827861208468676, 0.006151408422738314, 0.007996144704520702, 0.009340265765786171, 0.00367575790733099, -0.023522106930613518, 0.015196789987385273, 0.003350014565512538, 0.012926872819662094, -0.02507196180522442, -0.018461082130670547, 0.00022201989486347884, -0.01957204006612301, -0.00439239339902997, -0.008695635944604874, -0.034919701516628265, 0.007975571788847446, -0.008846507407724857, 0.013084600679576397, 0.028583133593201637, -0.0475105419754982, -0.011521032080054283, -0.02784249559044838, 0.024852512404322624, 0.017116962000727654, -0.019695479422807693, 0.0018224490340799093, -0.013290333561599255, -0.02123161591589451, -0.004875865299254656, -0.03149082139134407, 0.03332870081067085, 0.012158803641796112, 0.005266757681965828, 0.008243024349212646, -0.017830168828368187, -0.014579592272639275, -0.0010543802054598927, -0.0058530960232019424, -0.023576969280838966, -0.019942358136177063, -0.051570333540439606, 0.0026059478987008333, -0.029131753370165825, 0.01182963140308857, -0.001856737770140171, -0.05217381939291954, 0.03393218293786049, 0.028994597494602203, 0.019558323547244072, -0.008764213882386684, -0.015141928568482399, 0.0014495584182441235, -0.003080847440287471, -0.010917549952864647, -0.02238371968269348, -0.010101476684212685, -0.014442437328398228, 0.02463306486606598, 0.01703466847538948, 0.01634889282286167, -0.021382488310337067, 0.019695479422807693, 0.03733363002538681, 0.017994755879044533, -0.012261670082807541, -0.012090226635336876, -0.015196789987385273, -0.01571797952055931, -0.0056096455082297325, 0.0066485959105193615, -0.01134273037314415, 0.01756957359611988, 0.004063221160322428, -0.021643081679940224, -0.007276080548763275, -0.0013809809461236, -0.036922164261341095, 0.008078438229858875, -0.013557786121964455, 0.0020298962481319904, -0.052448127418756485, -0.013358911499381065, -0.005911387037485838, -0.029378632083535194, -0.013907532207667828, -0.010478653013706207, 0.024125590920448303, 0.010163196362555027, -0.0038369151297956705, -0.03508428484201431, -0.026155486702919006, -0.031957149505615234, 0.0014589878264814615, 0.01445615291595459, -0.031134217977523804, 0.0075709642842411995, -0.008873937651515007, -0.009340265765786171, 0.019695479422807693, 0.006274847779422998, 0.012206807732582092, -0.017446134239435196, 0.01766558364033699, -0.02283633127808571, -0.01394867803901434, 0.0666574016213417, -0.017267832532525063, 0.013379484415054321, -0.03903435543179512, 0.007941283285617828, 0.006339996587485075, -0.01258398499339819, 0.0023830707650631666, -0.0006489153020083904, 0.006892045959830284, 2.7698910344042815e-05, 0.010615807957947254, -0.00805786531418562, -0.0034014475531876087, -0.014044687151908875, 0.008969946764409542, 0.027280159294605255, -0.02448219433426857, -0.016623204573988914, 0.003737477818503976, -0.019448600709438324, -0.024399900808930397, -0.029433494433760643, 0.00750924414023757, 0.007269222754985094, -0.005311333108693361, 0.001550710410811007, 0.0015318515943363309, -0.012762286700308323, 0.016266601160168648, -0.001001232536509633, 0.004601555410772562, -0.035742633044719696, 0.009456847794353962, 0.00412494083866477, 0.015141928568482399, 0.0020264673512429, 0.018035901710391045, 0.020765289664268494, -0.028500840067863464, 0.023302659392356873, 0.008695635944604874, 0.0409819595515728, 0.038129132241010666, -0.007529817521572113, 0.036236390471458435, 0.007433808874338865, 0.010663812980055809, 0.011767911724746227, 0.021149324253201485, -0.010286635719239712, 0.002413930604234338, 0.017116962000727654, 0.02915918454527855, -0.009518567472696304, -0.03719647601246834, -0.0013158321380615234, 0.004046076908707619, -0.005757087375968695, -0.00452611967921257, 0.0006754890782758594, -0.015155644156038761, -0.02341238409280777, 0.007557248696684837, 0.0018858832772821188, 0.045590370893478394, 0.00010458080214448273, 0.020271530374884605, 0.007399520371109247, 0.003830057568848133, 0.0497598871588707, -0.004327245056629181, 0.010499226860702038, -0.024523340165615082, 0.0001504420506535098, -0.021643081679940224, -0.017199255526065826, -0.019695479422807693, 0.008579054847359657, -0.0026796685997396708, -0.004577552899718285, 0.021039599552750587, -0.008716209791600704, -0.007948140613734722, -0.015498531982302666, -0.02146477997303009, -0.013304049149155617, -0.009950606152415276, 0.00043503899360075593, -0.0031219939701259136, -0.005698796361684799, 0.006432576570659876, 0.023042064160108566, 0.006662311498075724, 0.0056027877144515514, -0.009120817296206951, 0.018433650955557823, -0.0003308868035674095, -0.044273681938648224, -0.02755446918308735, -0.00017530142213217914, -0.008750498294830322, -0.0004748996871057898, 0.0019184575648978353, 0.0420517697930336, -0.029570650309324265, -0.006336567923426628, 0.013845812529325485, 0.018214203417301178, 0.0012318246299400926, 0.02142363414168358, 0.012124515138566494, -0.027170434594154358, 0.03500199317932129, -0.014126979745924473, 0.01966804824769497, 0.006813182029873133, -0.015471100807189941, -0.0014487012522295117, 0.009936890564858913, 0.016568342223763466, -0.01348235085606575, -0.025332555174827576, 0.0009480849839746952, -0.012117656879127026, -0.013825238682329655, 0.0022133411839604378, 0.011541605927050114, -0.006096546072512865, -0.018913695588707924, -0.03395961597561836, 0.00394321046769619, -0.016732927411794662, 0.015429954044520855, -0.008263597264885902, -0.01938002184033394, -0.017391271889209747, 0.029241478070616722, -0.016678065061569214, 0.00035960364039056003, 0.01080782525241375, -0.039308663457632065, 0.011390735395252705, -0.005517065990716219, 0.0013029739493504167, -0.0011615327093750238, -0.02623778022825718, 0.01189820934087038, 0.0059868223033845425, 0.010910691693425179, -0.004313529469072819, 0.009196252562105656, -0.011274153366684914, 0.021190470084547997, -0.005307903978973627, -0.005517065990716219, 0.02121790125966072, -0.018913695588707924, 0.013043454848229885, -0.010567803867161274, -0.0057433717884123325, 0.007948140613734722, 0.03072275221347809, -0.0002518082910683006, -0.004231236409395933, -0.01034149806946516, 0.02258945256471634, -0.0051227449439466, -0.009381412528455257, 0.009683153592050076, 0.005369624122977257, 0.025318840518593788, 0.0018087334465235472, -0.036428406834602356, 0.002998554380610585, 0.009299119003117085, -0.023878710344433784, -0.0020676138810813427, -0.0039054928347468376, -0.025236546993255615, 0.03700445964932442, -0.010931265540421009, 0.02014809101819992, -0.004646130837500095, -0.01263198908418417, -0.024317607283592224, 0.0003508171357680112, -0.01791246235370636, 0.013317764736711979, 0.016774075105786324, -0.015224221162497997, -0.0003028128412552178, -0.006874901708215475, 0.0015181360067799687, 0.009696869179606438, -0.0007826415821909904, -0.000998660922050476, -0.007090921048074961, 0.002125904895365238, 0.013468635268509388, 0.01401725597679615, -0.013139463029801846, -0.05222868174314499, 8.210557098209392e-06, 0.005835951305925846, 0.0014478439697995782, 0.026416081935167313, 0.021451065316796303, 0.010019183158874512, -0.0037477645091712475, 0.03401447832584381, -0.0036929023917764425, 0.0014547017635777593, 0.015786556527018547, 0.015320230275392532, -0.018419936299324036, 0.010848972015082836, -0.01401725597679615, 0.026745254173874855, 0.02326151356101036, 0.010279778391122818, -0.028884874656796455, -0.007365231402218342, 0.00953914038836956, 0.02176652103662491, -0.014799040742218494, -0.006724031176418066, 0.01379780750721693, 0.027924787253141403, -0.01649976335465908, 0.00798242911696434, 0.0038849194534122944, -0.014030971564352512, -0.0011581038124859333, 0.00041639446862973273, -0.0398024246096611, -0.0052050380036234856, -0.006089688744395971, -0.03785482048988342, -0.0010175197385251522, -0.022328857332468033, 0.02039496973156929, 0.04570009559392929, 0.0018790254835039377, -0.030119270086288452, -0.005427915137261152, -0.015471100807189941, -0.007961856201291084, 0.000561478896997869, 0.010108334012329578, 0.00902480911463499, -0.01600600592792034, -0.010362070985138416, 0.009930032305419445, -0.011020416393876076, 0.019846349954605103, -0.014209273271262646, -0.014675600454211235, 0.004865578841418028, 0.011493600904941559, -0.0034974562004208565, 0.011425023898482323, 0.009998610243201256, 0.009621433913707733, 0.01795360818505287, 0.006175410468131304, 0.008414468728005886, 0.007056632544845343, 0.003960354719310999, 0.015608255751430988, -0.022027116268873215, 0.01688379794359207, -0.018241634592413902, 0.009381412528455257, 0.018145626410841942, 0.020120659843087196, -0.015032203868031502, -0.04652302712202072, -0.03933609649538994, -0.030393579974770546, -0.00025780880241654813, 0.003470025258138776, 0.009717442095279694, 0.0020658993162214756, 0.015608255751430988, -0.002914546988904476, 0.013029739260673523, -0.014003540389239788, -0.018145626410841942, -0.011123282834887505, 0.017048384994268417, 0.007639541756361723, -0.018515944480895996, -0.003500885097309947, -0.022616883739829063, 0.0210258848965168, 0.017747875303030014, 0.04114654287695885, 0.008441898971796036, -0.014346428215503693, -0.0035934648476541042, 0.008942515589296818, 0.0008585054893046618, 0.0042929560877382755, -0.01353035494685173, -0.020573271438479424, 0.027472175657749176, 0.016129445284605026, 0.014305281452834606, -0.008805360645055771, 0.0028065370861440897, -0.0024310750886797905, 0.016417471691966057, 0.007502386346459389, 0.001122957793995738, 0.013832096941769123, 0.026896124705672264, 0.004601555410772562, 0.009360838681459427, 0.004073508083820343, -0.007872705347836018, 0.02389242686331272, 0.00583938043564558, 0.02413930557668209, -0.0291043221950531, 0.010677528567612171, 0.0029951254837214947, 0.0216156505048275, 0.0036929023917764425, -0.01038950216025114, 0.07357002049684525, 0.027472175657749176, 0.016966091468930244, -0.03587978705763817, -0.019928643479943275, -0.02176652103662491, 0.00975858885794878, -0.001608144142664969, 0.00927168782800436, 0.005582214333117008, 0.00572965620085597, 0.01688379794359207, -0.004742139019072056, 0.004776427987962961, -0.029214046895503998, 0.0052324687130749226, 0.002559657907113433, -0.01844736747443676, -0.00635028351098299, -0.024907374754548073, -0.007159498520195484, -0.021437348797917366, 0.022904910147190094, -0.008846507407724857, -0.00402893265709281, 0.030530735850334167, -0.01092440728098154, -0.007255507167428732, -0.022562021389603615, -0.014799040742218494, -0.01145931240171194, -0.0019596042111516, 0.00583938043564558, -0.009360838681459427, -0.016376323997974396, -0.007543533109128475, 0.0007560677477158606, -0.003336298977956176, 0.0232203658670187, 0.004495259840041399, -0.00902480911463499, -0.02828139066696167, 0.02121790125966072, -0.03072275221347809, -0.02954321913421154, 0.001070667407475412, 0.01863938383758068, 0.006466865073889494, 0.025908607989549637, 0.006134264171123505, 0.018406221643090248, -0.006168552674353123, -0.0011178144486621022, 0.016678065061569214, -0.03689473494887352, -0.015292799100279808, -0.004337531514465809, 0.010752963833510876, -0.009786020033061504, -0.011308441869914532, 0.007666972931474447, -0.0002678811433725059, 0.0220956951379776, -0.014387574978172779, -0.0023213508538901806, -0.005112458020448685, -0.007221218664199114, 0.004899867810308933, -0.006209699437022209, -0.0014547017635777593, 0.019284013658761978, -0.011431881226599216, -0.005918244831264019, 0.02073785848915577, -0.003470025258138776, 0.009868312627077103, 0.0031905716750770807, -0.012117656879127026, -0.00034545952803455293, 0.043971940875053406, -0.00554792582988739, 0.018515944480895996, -0.028830012306571007, -0.000922368373721838, -0.006881759501993656, -0.025346271693706512, -0.016266601160168648, 0.014010398648679256, -0.0058599538169801235, 0.0012789717875421047, -0.01499105803668499, -0.0020213238894939423, -0.023398667573928833, 0.020902443677186966, 0.03502942621707916, 0.007502386346459389, -0.005410770419985056, 0.052448127418756485, 0.003569462802261114, 0.02778763324022293, 0.027472175657749176, -0.025661727413535118, 0.001562711433507502, -0.03486483916640282, 0.018707962706685066, -0.007762981113046408, -0.014634454622864723, -0.009257972240447998, 0.015690548345446587, -0.006614306941628456, -0.009799735620617867, 0.01075982116162777, -0.023384952917695045, -0.019434884190559387, -0.005143317859619856, 0.010999842546880245, 0.017391271889209747, 0.004601555410772562, -0.011925640515983105, 0.010519799776375294, -0.05041823163628578, 0.011815915815532207, 0.02627892605960369, -0.005914815701544285, -0.0015052777016535401, -0.000444468401838094, 0.0015241365181282163, -0.01445615291595459, 0.03181999549269676, 0.035221442580223083, 0.005767373833805323, -0.013228613883256912, 0.014360143803060055, -0.001062952447682619, 0.004910154268145561, -0.01043750625103712, 0.044410835951566696, -0.022616883739829063, 0.010800967924296856, 0.02852827124297619, 0.012378252111375332, -0.0011126711033284664, -0.005640505347400904, 0.01649976335465908, 0.0005443344707600772, 0.002391642890870571, -0.02507196180522442, -0.02175280638039112, -0.019146857783198357, 0.009888886474072933, -0.01477160956710577, 0.009196252562105656, 0.011068420484662056, 0.0009120817412622273, 0.00922368373721838, -0.0030242709908634424, 0.0030122699681669474, 0.006861186120659113, 0.007845274172723293, 0.00340830534696579, -0.006977768149226904, 0.00492729851976037, 0.0019750341307371855, -0.01804961822926998, 0.014881333336234093, 0.0002000536333071068, -0.004330673720687628, 0.0067926086485385895, 0.015484816394746304, 0.00490329647436738, 0.009998610243201256, -0.005698796361684799, -0.007159498520195484, -0.019873781129717827, -0.004241522867232561, -0.011973644606769085, -0.0003859631542582065, 0.023768987506628036, 0.00621655723080039, 0.04336845874786377, 0.00452611967921257, 0.00018012328655458987, -0.006477151997387409, -0.00684061273932457, -0.004642701707780361, 0.0033517288975417614, 0.01034149806946516, -1.9434777641436085e-05, -0.012275385670363903, 0.002499652560800314, 0.06084202229976654, -0.009230541065335274, 0.010684385895729065, -0.01241254061460495, -0.00291969021782279, -0.014661884866654873, -0.0018224490340799093, 0.011301584541797638, 0.012254812754690647, 0.0019527464173734188, 0.0167466439306736, 0.007769838906824589, 0.004220949485898018, -0.014030971564352512, -0.012371393851935863, 0.006165124010294676, 0.0031648550648242235, -0.0036551847588270903, -0.015388807281851768, 0.0061479792930185795, -0.010519799776375294, -0.010485511273145676, -0.03286237269639969, 0.022013401612639427, -0.004718136973679066, 0.01075982116162777, 0.010986126959323883, -0.00312027963809669, -0.0050987424328923225, 0.017610721290111542, -0.006607449147850275, -0.000731208361685276, -0.01448358315974474, 0.012776002287864685, 0.0010338069405406713, 0.014360143803060055, -0.007858989760279655, 0.030969632789492607, -0.014024114236235619, 0.03489226847887039, 0.004899867810308933, 0.00875735655426979, 0.008510476909577847, 0.025977184996008873, -0.021588219329714775, -0.0007749265641905367, -0.003410019911825657, 0.0024310750886797905, 0.010410076007246971, -0.008236167021095753, 0.0007792126853018999, -0.009065954945981503, 0.01492248009890318, 0.015059635043144226, -0.0014607022749260068, -0.019489746540784836, 0.008339032530784607, -0.02326151356101036, 0.006652024574577808, 0.0040152170695364475, -0.006425718776881695, -0.003946639131754637, -0.014538445509970188, -0.0042929560877382755, -0.007132067810744047, -0.022740323096513748, -0.005534210242331028, 0.00031845711055211723, 0.017116962000727654, -0.0011915353825315833, -0.023151788860559464, 0.005904529243707657, 0.0015721408417448401, -0.021382488310337067, -0.0012626845855265856, 0.01791246235370636, 0.017487281933426857, 0.027979649603366852, 0.02389242686331272, 0.0021464780438691378, -0.01718554086983204, -0.005715940613299608, -0.00019266012532170862, -0.032588064670562744, -0.005239326506853104, -0.009655722416937351, 0.002499652560800314, -0.019297728314995766, -0.0070703476667404175, -0.02311064302921295, -0.013866385444998741, -0.01684265211224556, -0.006652024574577808, 0.0035728916991502047, -0.007296653930097818, 0.007673830259591341, 0.0045638373121619225, -0.037361063063144684, -0.002341924235224724, -0.018131909891963005, 0.017843885347247124, 0.02077900432050228, -0.020847583189606667, 0.016911229118704796, 0.005911387037485838, 0.0047215661033988, 0.004412966780364513, -1.7465850760345347e-05, -0.005211895797401667, 0.012275385670363903, -0.00873678270727396, 0.0010278064291924238, -0.025085676461458206, -0.004306671675294638, -0.012776002287864685, 0.010307209566235542, 0.03160054609179497, 0.018913695588707924, -0.010067188180983067, -0.019503461197018623, -0.00535247940570116, -0.002141334814950824, -0.006559445057064295, -0.0071937874890863895, -0.00922368373721838, 0.007111494429409504, -0.020710427314043045, -0.0052050380036234856, -0.002941977931186557, -0.027540752664208412, 0.024523340165615082, 0.011863919906318188, -0.007735550403594971, -0.017994755879044533, 0.01892741024494171, -0.003878061892464757, -0.008928800001740456, -0.0015764270210638642, -0.001407554722391069, -0.01390067394822836, 0.004766141530126333, 0.012282242998480797, 0.01087640319019556, 0.013811523094773293, -0.011178144253790379, -0.004323815926909447, -0.012556553818285465, -0.03431621938943863, -0.00367575790733099, 0.0004358961887191981, 0.008016718551516533, -0.015992289409041405, -0.009552855975925922, -0.018653100356459618, -0.005301046650856733, -0.02929633855819702, -0.031463392078876495, 0.02979009784758091, -3.4985278034582734e-05, -0.002287062117829919, 0.01884511671960354, 0.0097105847671628, -0.022767754271626472, 0.004241522867232561, 0.011239863932132721, -0.002239057794213295, 0.012220523320138454, 0.025675443932414055, 0.021643081679940224, -0.0023744984064251184, -0.029241478070616722, 0.0053490507416427135, 0.007817842997610569, -0.023000918328762054, -0.0216156505048275, -0.000573479977902025, 0.005472490563988686, -0.00975858885794878, -0.027911072596907616, 0.01049236860126257, 0.009415701031684875, -0.001118671614676714, 0.0038574885111302137, 0.00416265893727541, 0.004649559501558542, -0.01114385575056076, 0.016294032335281372, -0.013729230500757694, -0.017981039360165596, 0.01316689420491457, -0.0019801773596554995, 0.0188862644135952, -0.001261827303096652, 0.010485511273145676, -0.00530447531491518, -0.0004202519485261291, 0.014620739035308361, 0.014415006153285503, 0.005931959953159094, -0.02127276360988617, 0.01703466847538948, -0.007749265991151333, 0.033218976110219955, 0.01611573062837124, 0.0011726765660569072, -0.020943591371178627, 0.0017744447104632854, 0.0014392718439921737, 0.005277044139802456, -0.01263198908418417, -0.028391115367412567, -0.01936630718410015, 0.014785325154662132, 0.00541419954970479, -0.0089082270860672, -0.004364962689578533, 0.0312439426779747, 0.016774075105786324, 0.005088455975055695, -0.009161964058876038, -0.007516101934015751, -0.014977342449128628, -0.0007543532992713153, -0.007831558585166931, -0.011164428666234016, -0.0013938391348347068, 0.017610721290111542, 0.014661884866654873, 0.01917428895831108, -0.011404450051486492, 0.008448757231235504, 0.014620739035308361, -0.01796732470393181, 0.016239169985055923, 0.008969946764409542, 0.02633378840982914, 0.039939578622579575, -0.010135765187442303, 0.03072275221347809, -0.006024539936333895, -0.009511709213256836, 0.017020953819155693, -0.00010367000504629686, -0.021259047091007233, -0.006473722867667675, -0.008483045734465122, -0.010581519454717636, 0.013550928793847561, 0.002712243003770709, -2.396196941845119e-05, -0.0036380402743816376, -0.004779856652021408, 0.00708406325429678, 0.002523654606193304, 0.011493600904941559, 0.003998072352260351, -0.001529279863461852, -0.013832096941769123, -0.0006527727819047868, -0.027828779071569443, -0.0032968667801469564, 0.001137530547566712, -0.012933730147778988, -0.011006700806319714, 0.012686851434409618, 0.018488513305783272, -0.02594975382089615, 0.0053319064900279045, 0.00827045552432537, 0.010252347216010094, 0.00546220364049077, -0.018666815012693405, 0.0036243246868252754, 0.0012129658134654164, -0.017062099650502205, -0.013098316267132759, 0.021053314208984375, -0.008558481000363827, 0.03593464940786362, 0.03513914719223976, -0.013763519003987312, 0.0010406647343188524, 0.0057433717884123325, -0.028116805478930473, -0.009017950855195522, 0.00258537451736629, 4.8540063289692625e-05, 0.010821540839970112, 0.004152372013777494, 0.005067882593721151, 0.01938002184033394, -0.049183834344148636, 0.00635028351098299, -0.013934963382780552, -0.013009165413677692, 0.005767373833805323, -0.0006184839876368642, -0.019626902416348457, -0.0029385490342974663, 0.0025167970452457666, -0.020120659843087196, 0.01209708396345377, -0.01665063574910164, -0.01615687645971775, 0.01986006461083889, 0.012618273496627808, -0.01080782525241375, 0.002984838793054223, -0.004423253703862429, 0.009120817296206951, 0.008949372917413712, 0.0003319583192933351, -0.009257972240447998, 0.004584410693496466, 0.002203054493293166, -0.011863919906318188, -0.007639541756361723, 0.039637837558984756, -0.01416812650859356, 0.01109585165977478, 0.026882408186793327, 0.007104636635631323, -0.013845812529325485, -0.014908764511346817, -0.012378252111375332, 0.014037828892469406, 0.01678778976202011, 0.010019183158874512, -0.008496761322021484, -0.006895475089550018, -0.009950606152415276, -0.004577552899718285, -0.022205417975783348, 0.008942515589296818, -0.022891193628311157, 0.0210807453840971, -0.00846933014690876, -0.022027116268873215, 0.008345890790224075, 0.0091756796464324, -0.013475493527948856, 0.007701261434704065, -0.014318997040390968, 0.0002728101680986583, 0.008009860292077065, 0.014222988858819008, 0.007420093286782503, -0.006017682142555714, 0.022081978619098663, 0.00046247002319432795, -0.03426135703921318, 0.018337642773985863, 0.0210258848965168, 0.008798502385616302, 0.0005190465017221868, 0.006679455749690533, 0.01000546757131815, 0.0018738822545856237, -0.020559556782245636, 0.00041468002018518746, 0.002371069509536028, 0.023330090567469597, -0.011301584541797638, -0.010890118777751923, 0.03140852972865105, -0.008023575879633427, -0.01703466847538948, -0.0032180026173591614, -0.05417628213763237, -0.008359606377780437, -0.010739248245954514, -0.009717442095279694, 0.007680688053369522, -0.005105600226670504, -0.010794109664857388, 0.020600702613592148, 0.003974070306867361, -0.0008152159280143678, -0.007420093286782503, -0.008140157908201218, 0.024317607283592224, 0.005318190902471542, -0.0054759192280471325, -0.015141928568482399, 0.0036003226414322853, -0.00046847056364640594, 0.011623898521065712, 0.010094618424773216, 0.006785750854760408, -0.01070495881140232, -0.0027516752015799284, 0.007005199324339628, -0.00761896837502718, -0.006093117408454418, -0.0003491027164272964, 0.0091756796464324, -0.001168390386737883, 0.009347123093903065, -0.007927567698061466, 0.0029968400485813618, 0.029707804322242737, -0.0156768336892128, 0.00439239339902997, 0.0033825887367129326, 0.0248250812292099, -0.015896281227469444, 0.00519475108012557, 0.01976405642926693, 0.01743241958320141, -4.444148362381384e-05, -0.0038437729235738516, 0.008997377939522266, -0.018227919936180115, -0.0075709642842411995, 0.027129288762807846, 0.010773536749184132, 0.023864995688199997, 0.00805786531418562, -0.00985459703952074, -0.007488671224564314, 0.002069328213110566, -0.00018365931464359164, 0.000444468401838094, 0.004070078954100609, -0.012515407055616379, -0.0009566571679897606, 0.005955962464213371, 0.00922368373721838, -0.000638200028333813, -0.00038660605787299573, -0.019256582483649254, -0.004724994767457247, -0.0011049561435356736, 0.029515787959098816, -0.008846507407724857, -0.0015447098994627595, 0.026635529473423958, 0.01374980341643095, 0.004327245056629181, 0.004889580886811018, -0.014442437328398228, 0.0052084666676819324, 0.0069091906771063805, 0.008716209791600704, 0.03917150944471359, -0.00637428555637598, 0.005589072126895189, 0.013043454848229885, -0.0029385490342974663, -0.02413930557668209, -0.011637614108622074, 0.03700445964932442, -0.005434772931039333, 0.0005404769908636808, 0.007564106490463018, -0.009038523770868778, 0.007138925604522228, -0.016582056879997253, 0.011959929019212723, -0.019050849601626396, -0.017062099650502205, 0.0045878398232162, -0.008873937651515007, -0.007804127875715494, 0.002991696586832404, -0.003881490556523204, 0.009930032305419445, 0.003226574743166566, 0.003689473494887352, 0.006545729469507933, -0.008407610468566418, 0.00975858885794878, 0.005733085330575705, -0.008976804092526436, 0.013866385444998741, 0.009861455298960209, -0.014565876685082912, 0.001149531570263207, 0.009244256652891636, 0.00815387349575758, 0.014620739035308361, 0.014538445509970188, -0.007282938342541456, 0.006072544027119875, 0.03530373424291611, 0.002791107166558504, 0.015196789987385273, 0.017583290114998817, 0.026662960648536682, -0.00298655335791409, 0.01146617066115141, -0.019736625254154205, 0.004961587488651276, -0.012666277587413788, 0.00416265893727541, 0.015512247569859028, -0.005990250967442989, 0.008126442320644855, 0.006339996587485075, -0.002686526393517852, 0.005990250967442989, 0.0037649087607860565, 0.002185910241678357, 0.007276080548763275, -0.00746124004945159, -0.004080365411937237, -0.009353981353342533, 0.013585217297077179, -0.0020401827059686184, -0.01348235085606575, 0.0010972411837428808, -0.002592232311144471, -0.01581398770213127, 0.013489209115505219, -0.0015978574519976974, 0.022123124450445175, -0.013934963382780552, 0.0050815981812775135, 0.007426951080560684, 0.006518298294395208, 0.0036517558619379997, -0.017404988408088684, 0.006336567923426628, 0.006727459840476513, -5.593358218902722e-05, 0.009573428891599178, 0.02257573790848255, 0.008771071210503578, 0.016033437103033066, -0.015704264864325523, -0.01659577339887619, 0.014360143803060055, -0.003355157794430852, -0.011713049374520779, -0.00572965620085597, -0.005698796361684799, 0.004464400000870228, 0.01540252286940813, 0.018282780423760414, 0.0011152428342029452, -0.004748996812850237, 0.01464816927909851, -0.018776539713144302, 0.007426951080560684, 0.00035017423215322196, -0.01146617066115141, 0.003427164163440466, -0.0065217274241149426, 0.01285143755376339, -0.0094431322067976, 0.013804665766656399, 0.0028493981808423996, 0.032588064670562744, 0.01499105803668499, 0.016568342223763466, -0.01873539388179779, -0.009257972240447998, -0.0026110911276191473, 0.012673135846853256, 0.002955693518742919, 0.006511440500617027, -0.0034425940830260515, -0.013832096941769123, 0.015114497393369675, -0.03865031898021698, 0.004917012061923742, 0.020614419132471085, -0.008942515589296818, -0.004073508083820343, 0.01416812650859356, -0.0026745253708213568, 0.0004273240047041327, 0.0015421381685882807, 0.007872705347836018, -0.012494834139943123, -0.003089419798925519, -0.03538602963089943, 0.006165124010294676, -0.02249344438314438, -0.009696869179606438, -0.0026110911276191473, -0.024742787703871727, -0.0024413615465164185, -0.013818381354212761, 0.015471100807189941, 0.006432576570659876, 0.006693171337246895, -0.027815064415335655, 0.023192934691905975, -0.027293873950839043, 0.030146701261401176, -0.025126822292804718, -0.004104367922991514, -0.024783935397863388, 0.005047309212386608, 0.006717173382639885, 0.008387037552893162, 0.00848990399390459, -0.019256582483649254, -0.03596207872033119, 0.002141334814950824, 0.017734160646796227, -0.01501848828047514, -0.0016150018200278282, 0.011795342899858952, -0.005126173608005047, 0.009840881451964378, -0.03022899478673935, 0.01708953082561493, 0.008819076232612133, -0.005407341755926609, -0.017638152465224266, 0.027664193883538246, 0.0046872771345078945, 0.007701261434704065, -0.0014538445975631475, 0.005273615475744009, -0.024523340165615082, 0.019297728314995766, 0.0013124033575877547, -0.0032968667801469564, -0.02195853926241398, -0.009100244380533695, 0.006497724913060665, -0.007502386346459389, 0.009744873270392418, -0.011582751758396626, 0.0010972411837428808, 0.029707804322242737, -0.005314761772751808, 0.0006557730375789106, 0.005102171562612057, -0.013571501709520817, -0.006511440500617027, 0.005318190902471542, -0.011802200227975845, -0.01737755723297596, -0.003242004895582795, 0.01258398499339819, -0.005074740387499332, 0.0027379596140235662, -0.014305281452834606, 0.008510476909577847, 0.007474955637007952, -0.005482777021825314, 0.013057170435786247, -0.0012052508536726236, 0.0010080903302878141, 0.009059097617864609, -6.364856380969286e-05, -0.024564485996961594, 0.027924787253141403, -0.014716747216880322, 0.01713067851960659, 0.010986126959323883, -0.005537638906389475, 0.0011966786114498973, -0.013790950179100037, 0.012789717875421047, -0.005671365186572075, -0.0156768336892128, -0.023247797042131424, -0.016390040516853333, 0.03376759588718414, -0.005133031401783228, -0.02929633855819702, -0.0019544607494026423, 0.008647631853818893, 0.0004099653160665184, -0.025634296238422394, 0.008160730823874474, 0.001940745278261602, 0.007152640726417303, 0.012926872819662094, -0.019585754722356796, 0.005616503302007914, 0.025881176814436913, 0.012933730147778988, -0.0004967587883584201, -0.01145931240171194, -0.0183513592928648, 0.022548306733369827, -0.005739943124353886, -0.018858833238482475, -1.2804718608094845e-05, 0.007097778841853142, -0.008503619581460953, -0.010732389986515045, 0.006103403866291046, 0.004642701707780361, -0.03099706396460533, 0.009100244380533695, 0.0035386027302592993, -0.02948835678398609, 0.02979009784758091, -0.0022493444848805666, 0.0019287442555651069, -0.012378252111375332, -0.029954684898257256, -0.010554088279604912, -0.016321461647748947, -0.0004911868600174785, 0.011068420484662056, -0.00805786531418562, -0.0013184038689360023, 0.0034134488087147474, -0.0009875170653685927, -0.0091756796464324, -0.016828937456011772, 0.009113959968090057, -0.001976748462766409, 0.0015575680881738663, -0.010334640741348267, -0.010190627537667751, 0.009086528792977333, -0.030009545385837555, 0.008949372917413712, -0.017542142421007156, -0.015937428921461105, 0.012611416168510914, -0.01136330422013998, 0.02740359865128994, -0.003847201820462942, 0.006929763592779636, -0.010821540839970112, 0.019558323547244072, 0.007159498520195484, -0.0040529347024858, -0.013180609792470932, -0.006237130146473646, 0.01071181707084179, -0.01065695472061634, 0.004505546763539314, 0.007673830259591341, -0.0006609163829125464, 0.0046975635923445225, 0.02633378840982914, -0.011130140163004398, 0.0012909728102385998, -0.005945675540715456, -0.00975858885794878, -0.01689751446247101, -0.003269435837864876, -0.030091838911175728, 0.018433650955557823, 0.005362766329199076, 0.0034803119488060474, 0.019626902416348457, -0.011534747667610645, -0.006192554719746113, -0.010574662126600742, -0.0006587732932530344, 0.015663117170333862, -0.004738710355013609, 0.001723011489957571, -0.000996089307591319, 0.023618116974830627, -0.0081058694049716, 0.017048384994268417, 0.002220198977738619, 0.02282261662185192, 0.014360143803060055, -0.016431186348199844, 0.011569037102162838, -0.003233432536944747, 0.001182963140308857, -0.016362609341740608, 0.007166356313973665, -0.011425023898482323, 0.023247797042131424, 0.010746105574071407, -0.0032728647347539663, -0.015169359743595123, -0.024303892627358437, -0.030750183388590813, -0.02551085688173771, -0.013907532207667828, 0.010307209566235542, -0.0008940800908021629, 0.027197865769267082, 0.013317764736711979, -0.018282780423760414, 6.632737495237961e-05, 0.0073103695176541805, -0.014291566796600819, 0.015498531982302666, 0.007872705347836018, 0.013393200002610683, 0.002948835724964738, 0.012042221613228321, 0.012988592498004436, -0.008071579970419407, -0.04353304207324982, -0.0008726496016606688, 0.015471100807189941, 0.013002308085560799, 0.0037100466433912516, -0.023686693981289864, -0.001720439875498414, -0.022658029571175575, 0.01850222982466221, 0.013057170435786247, 0.0038574885111302137, 0.00024945090990513563, -0.005287331063300371, 0.025469711050391197, -0.004999305121600628, -0.003156282939016819, -0.0018481656443327665, -0.011850204318761826, 0.025387417525053024, -0.007090921048074961, -0.01966804824769497, -0.026114340871572495, -0.010698101483285427, -0.011850204318761826, 0.017487281933426857, -0.016074582934379578, 0.0018550233216956258, 0.018433650955557823, 0.0022904910147190094, -0.004786714445799589, 0.01477160956710577, -0.011486743576824665, -0.018666815012693405, 0.006113690789788961, 0.012426256202161312, 0.01258398499339819, -0.005297617521136999, 0.004718136973679066, 0.0007852131966501474, -0.013914389535784721, -0.001789874630048871, 0.019146857783198357, 0.01296801958233118, -0.005623361095786095, 0.02127276360988617, 0.0036174668930470943, 0.004742139019072056, 0.009642006829380989, 0.015882566571235657, -0.013194325380027294, 0.007090921048074961, -0.004262096248567104, 0.002875114791095257, 0.001541281002573669, -0.011911924928426743, 0.015937428921461105, -0.009401985444128513, -0.030311288312077522, 0.019640617072582245, 0.02326151356101036, 0.0077218348160386086, 0.0009412271901965141, -0.0031357095576822758, 0.02847340889275074, 0.006326280999928713, 0.0034785973839461803, 0.0014692745171487331, -0.012220523320138454, 0.015141928568482399, 0.012138230726122856, 0.009628291241824627, 0.0010835257126018405, -6.429147560993442e-06, 0.0061205485835671425, -0.01065695472061634, 0.015100781805813313, -0.013036596588790417, 0.026306357234716415, -0.020669281482696533, -0.01699352264404297, -0.002425931626930833, 0.014277851209044456, -0.009765446186065674, 0.006758319679647684, 0.008112726733088493, 0.021725375205278397, -0.03568777069449425, 0.014126979745924473, -0.01645861752331257, -0.0004586125141941011, 0.016870083287358284, 0.016801506280899048, -0.02043611742556095, -0.014373859390616417, 0.01684265211224556, 0.007749265991151333, 0.008119584992527962, 0.008133300580084324, -0.00888765323907137, -0.00824988167732954, 0.02195853926241398, -0.010362070985138416, -0.0012121086474508047, -0.0014015542110428214, 0.018282780423760414, -0.003895206144079566, -0.023823849856853485, -0.015032203868031502, -0.0025150824803858995, 0.02195853926241398, -0.01829649694263935, 0.009655722416937351, -0.015224221162497997, -0.01486761774867773, -0.027911072596907616, 0.0031391384545713663, 0.003360301023349166, 0.005760516040027142, -0.009257972240447998, 0.0003761051339097321, -0.009655722416937351, -0.002480793744325638, -0.00985459703952074, -0.0008469330496154726, 0.029214046895503998, 0.009120817296206951, 0.005554783623665571, -0.027376167476177216, -0.008208735845983028, 0.0044095381163060665, 0.01936630718410015, 0.00985459703952074, 0.005335335154086351, 0.010684385895729065, -0.010094618424773216, -0.030201563611626625, -0.01102727372199297, -0.025579435750842094, 0.029049459844827652, -0.008524192497134209, -0.01301602367311716, 0.007639541756361723, -0.019489746540784836, -0.006394858937710524, -0.010903834365308285, -0.0200109351426363, 0.005808520596474409, 0.004388964734971523, 0.021889962255954742, 0.002245915587991476, -0.017789022997021675, 0.0007457811152562499, -0.02935120090842247, -0.005139889195561409, 0.005294188857078552, -0.00777669670060277, 0.0003613180888351053, 0.0016150018200278282, -0.031463392078876495, 0.01634889282286167, 0.02885744348168373, 0.004985589534044266, 0.006298850290477276, 0.014154410921037197, -0.0007920709904283285, 0.01065695472061634, -0.003816341981291771, 0.0210807453840971, -0.016088299453258514, -0.009518567472696304, -0.011102708987891674, -0.0054759192280471325, 0.021876245737075806, -0.021300194784998894, 0.004090652335435152, 0.015210505574941635, 0.0036517558619379997, -0.004632415249943733, -0.002413930604234338, 0.0033877321984618902, -0.020943591371178627, 0.0015592825366184115, 0.0162117388099432, 0.02671782299876213, -0.0408722348511219, -0.0020487550646066666, -0.01214508805423975, 0.021286478266119957, 0.01777530647814274, -0.00586338248103857, -0.0021036171820014715, -0.004241522867232561, 0.02123161591589451, 0.012830863706767559, -0.017363840714097023, -0.00018033759261015803, -0.0027756772469729185, 0.0031339952256530523, -0.02511310763657093, -0.0067994664423167706, -0.015635685995221138, -0.013612648472189903, -0.002664238680154085, 0.0017675869166851044, 0.01270056702196598, -0.012810290791094303, -0.005787947215139866, 0.01477160956710577, 0.002791107166558504, -0.0008512191125191748, 0.01107527781277895, -0.02117675542831421, -0.010149480774998665, -0.007474955637007952, 0.012714282609522343, 0.009278546087443829, -0.03072275221347809, 0.009888886474072933, 0.005157033447176218, 0.004118083510547876, -0.020024651661515236, -0.00902480911463499, -0.009278546087443829, 0.0018841688288375735, 0.016280315816402435, 0.011692476458847523, 0.014826470986008644, 0.026265211403369904, 0.025620581582188606, 0.021944822743535042, -0.0007346372585743666, -0.00410093879327178, -0.027815064415335655, -0.0022167700808495283, 0.0040323613211512566, 0.004604984074831009, 0.01713067851960659, -0.03291723504662514, -0.0022064833901822567, 0.008085295557975769, 0.007138925604522228, -0.008716209791600704, -0.015361376106739044, 0.006693171337246895, -0.0334932878613472, 0.011479886248707771, 0.0026162343565374613, -0.00492729851976037, -0.015594540163874626, -0.013208040967583656, 0.0015832846984267235, 0.0011512460187077522, -0.008236167021095753, 0.00048047161544673145, -0.010595235042273998, 0.0054862056858837605, 0.011157571338117123, -0.00045646948274224997, -0.024454763159155846, 0.0014469868037849665, -0.013475493527948856, 0.012625131756067276, -0.0050713117234408855, 0.01328347623348236, -0.01034149806946516, 0.02136877179145813, 0.014387574978172779, 0.00927168782800436, 0.014908764511346817, 0.01034149806946516, -0.009545998647809029, 0.014085833914577961, 0.004361533559858799, -0.008921942673623562, -0.01141130831092596, -0.017007239162921906, -0.001493276678957045, 0.008627058938145638, -0.02477021887898445, 0.01644490286707878, 0.0029162613209336996, 0.01907828077673912, -0.020710427314043045, 0.006436005234718323, -0.0036174668930470943, 0.018515944480895996, 0.009772304445505142, -0.013132605701684952, 0.01606086827814579, -0.007001770194619894, 0.005561641417443752, -0.0020041796378791332, -0.012028506025671959, -0.009127674624323845, 0.0061376928351819515, 0.019558323547244072, 0.0025287980679422617, -0.008764213882386684, -0.0011100994888693094, -0.01267999317497015, -0.0001278328854823485, 0.005283901933580637, -0.008510476909577847, -0.01301602367311716, 0.017459850758314133, 0.012103941291570663, -0.014895048923790455, 0.005678222980350256, -0.008750498294830322, -0.01634889282286167, 0.005489634815603495, -0.0031219939701259136, 0.0062714191153645515, 0.0398024246096611, -0.002725958591327071, -0.0015524248592555523, -0.007282938342541456, -0.012323389761149883, 0.0026076622307300568, -0.005551354493945837, 0.0040152170695364475, 0.007701261434704065, 0.0010980983497574925, -0.011719907633960247, -0.01596485823392868, -0.0005739085609093308, -0.002062470419332385, 0.006449720822274685, -0.026882408186793327, -0.0037649087607860565, -0.008140157908201218, -0.009429416619241238, 0.0015978574519976974, -0.009086528792977333, -0.011281010694801807, 0.011178144253790379, 0.002731101820245385, 0.013475493527948856, 0.016472334042191505, 0.007687545847147703, -0.0026368077378720045, -0.0038334864657372236, 0.029625512659549713, 0.02005208283662796, 0.013962393626570702, -0.0006502011092379689, 0.026498373597860336, -0.018365073949098587, 0.010170054621994495, 0.005201608873903751, -0.0051981802098453045, -0.0003180284984409809, -0.005757087375968695, -0.00396721251308918, 0.011692476458847523, -0.016911229118704796, -0.011740480549633503, -0.00746124004945159, -0.01182963140308857, -0.002832253696396947, 0.01363322138786316, 0.006062257569283247, 0.010375786572694778, 0.011795342899858952, 0.0071937874890863895, -0.006669168826192617, -0.002840826055034995, 0.0036243246868252754, -0.013784091919660568, -0.009312834590673447, 0.010238631628453732, -0.008798502385616302, -0.0105129424482584, 0.008119584992527962, -0.004755854606628418, 0.00015815702499821782, 0.01374980341643095, -0.0030311287846416235, -0.02136877179145813, -0.02258945256471634, -0.009621433913707733, -0.026457227766513824, -0.028830012306571007, 0.020024651661515236, 0.002480793744325638, 0.006370856426656246, -0.008236167021095753, -0.009840881451964378, -0.008839649148285389, -0.022479727864265442, -0.01722668670117855, -0.032149165868759155, 0.01087640319019556, 0.0010689529590308666, -0.00735151581466198, -0.029652941972017288, -0.003034557681530714, 0.009991752915084362, 0.002779106143862009, -0.01562197133898735, -0.018077047541737556, 0.001204393687658012, 0.01743241958320141, 0.009923174977302551, -0.021012168377637863, 0.012734855525195599, -0.011802200227975845, 4.507100129558239e-06, 0.011123282834887505, 0.010423791594803333, 0.009251114912331104, -0.004923869855701923, -0.016774075105786324, 0.0004148943116888404, -0.005019878502935171, -0.018090764060616493, 0.003118565073236823, 0.003950068261474371, -0.016774075105786324, 0.019284013658761978, -0.030393579974770546, -0.031957149505615234, -0.006607449147850275, 0.014936195686459541, -0.006710315588861704, 0.023343805223703384, 0.03878747671842575, 0.0015849991468712687, 0.0033397278748452663, 0.006237130146473646, -0.008181304670870304, 0.0023093498311936855, 0.006672597955912352, -0.017199255526065826, 0.006038255523890257, -0.02184881456196308, 0.003830057568848133, 0.014607023447751999, -0.004351247102022171, -0.010677528567612171, -0.0078384168446064, -0.01219309214502573, 0.005314761772751808, -0.007097778841853142, 0.008174446411430836, 0.011973644606769085, 0.01017691195011139, -0.008675063028931618, -0.010355213657021523, -0.009216825477778912, -0.01172676496207714, 0.0038746329955756664, -0.009312834590673447, -0.013098316267132759, -0.006556015927344561, 0.00795499887317419, -0.016870083287358284, 0.011020416393876076, 0.017171824350953102, 0.006189126055687666, 0.004875865299254656, 0.01844736747443676, 0.007392662577331066, -0.0017007237765938044, -0.016856366768479347, -0.008839649148285389, -0.0010835257126018405, 0.007975571788847446, -0.01806333288550377, -0.0021344770211726427, 0.015416238456964493, 0.018365073949098587, -0.009401985444128513, 0.0030191277619451284, 0.006038255523890257, -0.007893278263509274, 0.001684436690993607, 0.025785166770219803, -0.02808937430381775, 0.022754039615392685, -0.019201720133423805, -0.030201563611626625, 0.011212433688342571, -0.03829371556639671, -0.007399520371109247, -0.013420631177723408, -0.015361376106739044, 0.0010072331642732024, 0.007474955637007952, -0.00853790808469057, 0.0036689001135528088, -0.017583290114998817, -0.010286635719239712, 0.015594540163874626, 0.04078993946313858, 0.013489209115505219, 0.02127276360988617, 0.011857062578201294, 0.013406915590167046, -0.03286237269639969, -0.0002886687288992107, -0.014744178391993046, -0.007769838906824589, 0.004433540161699057, 0.010149480774998665, -0.004066650290042162, 0.01163075678050518, 0.0006437719566747546, 0.008647631853818893, 0.00340830534696579, -0.0020830438006669283, -0.025195401161909103, 0.009340265765786171, 0.012810290791094303, -0.009360838681459427, 0.022411150857806206, 0.010320925153791904, -0.008531049825251102, 0.013489209115505219, 0.0027876782696694136, 0.013790950179100037, 0.00039110647048801184, 0.028692856431007385, 0.011788484640419483, 0.02117675542831421, -0.015155644156038761, -0.02171166054904461, 0.01922915130853653, 0.012625131756067276, 0.014030971564352512, -0.006772035267204046, 0.008668205700814724, 0.001622716779820621, -0.010396360419690609, -0.01029349397867918, -0.0031511394772678614, 0.0053421929478645325, 0.00447811558842659, -0.008681920357048512, 0.015114497393369675, 0.01957204006612301, -0.007063489872962236, -0.019064566120505333, 0.010821540839970112, -0.009312834590673447, 0.006206270307302475, -0.0057536582462489605, -0.0030431298073381186, -0.006034826394170523, 0.008832791820168495, -0.004817574750632048, 0.013379484415054321, 0.0003638897615019232, 0.012295958586037159, -0.005914815701544285, -0.019626902416348457, -0.014538445509970188, 0.021492211148142815, -0.0017050099559128284, 0.009353981353342533, -0.0016998666105791926, -0.006586875766515732, 0.008901368826627731, -0.00895623117685318, 0.013372627086937428, -0.012014790438115597, 0.023042064160108566, -0.001256684074178338, 0.0026230921503156424, -0.019640617072582245, -0.033712733536958694, 0.009614575654268265, -0.015759127214550972, -0.006919477134943008, 0.004265524912625551, 0.006151408422738314, 0.007646399550139904, 0.0022167700808495283, -0.013770376332104206, 0.003634611377492547, -0.006669168826192617, 0.006604020483791828, 0.008387037552893162, 0.009086528792977333, -0.03066789172589779, 0.004358104895800352, -0.00012869010970462114, 0.0068028951063752174, 0.009923174977302551, 0.007865848019719124, -0.0014032685430720448, -0.004491831175982952, -0.0029779812321066856, -0.007344658020883799, 0.011932497844099998, 0.009216825477778912, -0.0048312898725271225, 0.012199950404465199, -0.008963088504970074, -0.03486483916640282, 0.008174446411430836, -0.001271256827749312, 0.0162117388099432, 0.0003913207910954952, -0.013866385444998741, 0.0226854607462883, -0.01464816927909851, 0.008407610468566418, 0.014689316041767597, 0.012865153141319752, 0.00594910467043519, 0.02667667530477047, 0.032834943383932114, -0.01684265211224556, -0.02356325462460518, 0.0028974025044590235, 0.014840186573565006, 0.018035901710391045, -0.0027516752015799284, 0.0037786243483424187, 0.03716904670000076, 0.004896438680589199, -0.0016047152457758784, 0.01747356541454792, -0.007858989760279655, -0.032341182231903076, -0.014853902161121368, 0.026854977011680603, 0.003939781803637743, 0.01737755723297596, 0.021259047091007233, 0.014607023447751999, 0.013345195911824703, 0.00452611967921257, -0.03140852972865105, -0.0046769906766712666, -0.007989287376403809, -0.009882028214633465, -0.016568342223763466, -0.00416265893727541, -0.03042101114988327, 0.0005966249154880643, 0.022808900102972984, 0.008441898971796036, -0.041503146290779114, 0.011884493753314018, -0.02312435768544674, 0.00583938043564558, -0.0034065910149365664, -0.010506084188818932, -0.04287469759583473, 0.01321489829570055, -0.02423531375825405, 0.012817148119211197, 0.012830863706767559, 0.019434884190559387, 0.010533515363931656, 0.007132067810744047, 0.03486483916640282, -0.014908764511346817, -0.008380179293453693, -0.0038506307173520327, -0.026018330827355385, -0.00621655723080039, 0.006826897617429495, 0.014387574978172779, -0.0026436655316501856, 0.018707962706685066, -0.002377927303314209, 0.02638865076005459, -0.010883260518312454, 0.012878868728876114, -0.0025956612080335617, -0.013098316267132759, 0.002280204324051738, 0.020518410950899124, 0.017583290114998817, 0.013612648472189903, -0.0102454898878932, -0.007392662577331066, 0.008345890790224075, 0.01820048876106739, 0.0040083592757582664, 0.011507316492497921, -0.006072544027119875, 0.005369624122977257, -0.008099011145532131, -0.015745410695672035, 0.003022556658834219, 0.008942515589296818, -0.011637614108622074, -0.013626364059746265, -0.040131594985723495, 0.0071937874890863895, 0.015265367925167084, 0.009497993625700474, -0.020861297845840454, 0.010842114686965942], "20b1648d-1010-4845-982a-f3aeb7cb9df9": [-0.02522054687142372, -0.012383741326630116, -0.01025434210896492, 0.007452898193150759, -0.01062434446066618, -0.03334549069404602, 0.01899847202003002, 0.03920511528849602, -0.01908908411860466, 0.016431109979748726, -0.0001727305498206988, 0.03950715810060501, -0.005376356188207865, -0.005380131769925356, -0.0022804206237196922, 0.036939796060323715, 0.0046212500892579556, 0.01843969337642193, 0.014498039148747921, -0.055001936852931976, 0.05161906033754349, -0.01908908411860466, -0.025416875258088112, 0.02389156073331833, -0.00957474671304226, -0.014845388010144234, -0.014762326143682003, 0.010767814703285694, -0.03280181437730789, -0.020176436752080917, 0.013455992564558983, 0.018817245960235596, -0.0024012376088649035, -0.004715638235211372, 0.02621728740632534, -0.031170783564448357, 0.028256073594093323, 0.009906993247568607, -0.011228429153561592, -0.0019557250197976828, -0.0324997715651989, 0.013712728396058083, -0.0010684753069654107, 0.006920548155903816, -0.01624988578259945, 0.005078088957816362, 0.03422141447663307, 0.00283731147646904, -0.007075345143675804, -0.04056430608034134, 0.00810984056442976, 0.006750649306923151, -0.024238908663392067, 0.0004353659169282764, 0.0413496159017086, -0.05071293190121651, 0.01573641411960125, 0.06512036174535751, -0.008411883376538754, -0.04953496530652046, -0.0031204763799905777, -0.028029542416334152, 0.016778459772467613, -0.026292797178030014, 0.018137650564312935, 0.0054933978244662285, 0.002388023305684328, -0.006950752343982458, -0.017563769593834877, 0.02627769485116005, -0.02525075152516365, 0.021535629406571388, -0.058988895267248154, -0.01747315749526024, -0.004609923344105482, 0.008887600153684616, 0.01265557948499918, -0.012889662757515907, 0.011711697094142437, -0.018560510128736496, 0.021913181990385056, -0.0077020833268761635, 0.029131997376680374, -0.002548483433201909, 0.047420669347047806, 0.03325487673282623, -0.03340590000152588, -0.06061992421746254, -0.04581984505057335, -0.029872002080082893, 0.011794758960604668, 0.031261395663022995, -0.008170248940587044, -0.017140910029411316, 0.010488425381481647, 0.014143139123916626, 0.014815183356404305, 0.005346152000129223, -0.00810984056442976, -0.035550400614738464, -0.019813986495137215, 0.02414829656481743, -0.025462180376052856, -0.005584010388702154, 0.026292797178030014, -0.01702009327709675, -0.008275964297354221, 0.002140725962817669, -0.018726633861660957, 0.020750317722558975, 0.006240952759981155, -0.04192349687218666, 0.0013365380000323057, -0.008857395499944687, -0.039356134831905365, -0.04189329221844673, -0.04234635457396507, -0.028301380574703217, -0.015887433663010597, -0.046574950218200684, 0.044611673802137375, -0.0005257427110336721, 0.012119454331696033, -0.02559809945523739, -0.007845553569495678, -0.015268247574567795, 0.022275632247328758, 0.011409654282033443, 0.01721642166376114, 0.0006791236228309572, -0.020236846059560776, -0.012368639931082726, 0.020584195852279663, -0.0019236330408602953, 0.014958653599023819, 0.0030525168403983116, 0.011152918450534344, 0.058445218950510025, -0.024556053802371025, 0.03962797299027443, -0.027063006535172462, -0.023287475109100342, -0.006410851608961821, 0.007490653544664383, 0.01567600481212139, 0.00978617649525404, -0.028135256841778755, 0.03331528604030609, 0.008751681074500084, 0.005421662703156471, -0.07037589699029922, -0.017035195603966713, 0.013629666529595852, 0.004666556138545275, 0.01812254823744297, -0.04802475497126579, -0.0020840931683778763, 0.04711862653493881, 0.035127539187669754, 0.02843729965388775, 0.027304640039801598, -0.03863123431801796, -0.005036558490246534, 0.016340497881174088, 0.013508849777281284, 0.04811536520719528, 0.055606018751859665, 0.019300514832139015, -0.039748791605234146, 0.0276670902967453, 0.024329522624611855, -0.023997275158762932, 0.01579682156443596, 0.025552794337272644, -0.01070740632712841, 0.01475477498024702, 0.02380094677209854, 0.037906330078840256, 0.03494631499052048, -0.024133194237947464, -0.028497707098722458, 0.00931801088154316, 0.00012353065540082753, 0.008955559693276882, 0.010518629103899002, 0.05285743251442909, 0.027485866099596024, 0.05442805588245392, -0.001959500601515174, -0.026821373030543327, -0.003454610938206315, 0.018560510128736496, -0.0032337422017008066, 0.01428660936653614, -0.023332782089710236, -0.02712341398000717, -0.01373538188636303, 0.030883843079209328, 0.004821353126317263, 0.019753579050302505, -0.013516400940716267, -0.03098955750465393, -0.04542718827724457, 0.02789362333714962, -0.026896882802248, 0.024420134723186493, -0.003129915101453662, -0.038450006395578384, 0.028331585228443146, -0.012232720851898193, 0.04491371661424637, -0.030717719346284866, -0.01877194084227085, 0.002973230555653572, -0.01049597654491663, -0.013591911643743515, 0.006652485579252243, 0.051830489188432693, -0.020010314881801605, -0.03633571043610573, -0.014520692639052868, 0.042648397386074066, 0.0004334781551733613, -0.014218649826943874, -0.05473009869456291, 0.010360057465732098, -0.008698823861777782, 0.04968598857522011, -0.04675617441534996, -0.00949923601001501, 0.020886236801743507, -0.008721476420760155, -0.0034187433775514364, -0.013259665109217167, -0.007524633314460516, 0.0472092404961586, 0.029585061594843864, -0.02005561999976635, -0.00952944066375494, 0.01615927182137966, 0.020946646109223366, 0.03262058645486832, 0.0062447283416986465, 0.008645965717732906, 0.026911985129117966, 0.022290734574198723, -0.024978913366794586, 0.07351713627576828, 0.012497007846832275, -0.03286221995949745, -0.021082565188407898, 0.005617990158498287, 0.010276995599269867, 0.0003556078299880028, -0.012157210148870945, 0.020040517672896385, 0.02882995456457138, -0.02260787971317768, 0.005663296673446894, -0.004681658465415239, 0.008170248940587044, 0.011824962683022022, 0.019013574346899986, -0.0015234267339110374, 0.03491611033678055, 0.006777077913284302, 0.004730740562081337, -0.007683205418288708, 0.006252279505133629, 0.017035195603966713, -0.007792695891112089, -0.000540844805072993, -0.0002508368343114853, 0.011205775663256645, 0.01721642166376114, -0.00844963826239109, -0.014973755925893784, -0.001617814996279776, 0.04585004970431328, -0.009295357391238213, -0.011938229203224182, 0.02173195593059063, 0.012934968806803226, 0.006686465349048376, 0.05473009869456291, -0.016808664426207542, -0.037060610949993134, -0.010533731430768967, -0.03778551518917084, -0.006610954646021128, -0.006875242106616497, -0.005376356188207865, 0.016174374148249626, 0.02863362617790699, 0.0295699592679739, -0.0011807973496615887, 0.015139879658818245, -0.018333978950977325, -0.0013506961986422539, 0.02857321873307228, 0.011152918450534344, -0.009484133683145046, 0.010480874218046665, -0.029177304357290268, 0.05820358544588089, -0.04609168320894241, 0.014362120069563389, 0.0030185370706021786, -0.03473488613963127, 0.04050389677286148, 0.02451074682176113, -0.002918485552072525, -0.018424591049551964, -0.007203713059425354, -0.0017716679722070694, 0.015751514583826065, -0.000714047288056463, -0.014815183356404305, -0.006678914185613394, -0.03772510588169098, -0.0078002470545470715, -0.013758035376667976, -0.07194651663303375, 0.02363482490181923, 0.049323536455631256, -0.05920032784342766, 0.023936865851283073, -0.013674973510205746, -0.03243936225771904, -0.029811592772603035, -0.026821373030543327, -0.011364348232746124, -0.03582223877310753, 0.01143230777233839, -0.040352873504161835, -0.0568745993077755, -0.057901542633771896, -0.037030406296253204, 0.011809861287474632, -0.026428716257214546, 0.0006663812091574073, -0.00042993860552087426, 0.01631029322743416, -0.0034036412835121155, 0.010692304000258446, -0.006652485579252243, 0.017367443069815636, 0.001720698201097548, -0.030294859781861305, -0.0023144003935158253, 0.0009297244832850993, -0.0009056554990820587, 0.037483472377061844, -0.0248882994055748, 0.017322136089205742, -0.009582297876477242, 0.006335340905934572, 0.014120485633611679, 0.01028454676270485, -0.007494429126381874, -0.026594839990139008, -0.02034256048500538, -0.033103857189416885, 0.010790467262268066, -0.006550546269863844, 0.009121682494878769, 0.00578033784404397, -0.015600494109094143, -0.02392176352441311, 0.022517267614603043, -0.05047129839658737, 0.013720279559493065, 0.0263834111392498, 0.012111903168261051, -0.015351309441030025, -0.0439169779419899, 0.017458055168390274, -0.01276884600520134, -0.04337330162525177, 0.03968838229775429, -0.004957272205501795, 0.006048400886356831, 0.00033838197123259306, 0.009114132262766361, 0.02985689975321293, 0.02451074682176113, -0.018787041306495667, -0.024329522624611855, -0.014558447524905205, -0.026791168376803398, -0.029902204871177673, -0.0026485349517315626, -0.04020185396075249, -0.0022539920173585415, -0.04086634889245033, -0.006172993220388889, -0.010775365866720676, -0.03183527663350105, 0.0014394212048500776, -0.04119859263300896, 0.01202884130179882, 0.009514338336884975, 0.003362110350281, -0.010903733782470226, 0.017880914732813835, -0.04497412592172623, 0.006965854670852423, -0.014815183356404305, 0.03259038180112839, 0.008585557341575623, 0.015185185708105564, 0.01854540780186653, 0.018243364989757538, 0.025009118020534515, 0.04956516996026039, 0.014052526094019413, 0.014218649826943874, 0.028044644743204117, -0.0434035025537014, -0.02315155602991581, 0.03993001580238342, 0.0492631271481514, 0.011522920802235603, 0.024691972881555557, 0.01529845129698515, 0.007452898193150759, -0.0028391992673277855, 0.008411883376538754, -0.02550748735666275, -0.012376190163195133, -0.026323001831769943, 0.04110798239707947, -9.609906555851921e-05, -0.024133194237947464, 0.014860490337014198, 0.016657643020153046, 0.010601690970361233, 0.006456158123910427, 0.010858426801860332, -0.0024087887722998857, -0.00445135124027729, 0.021112769842147827, -0.009854136034846306, -0.003548999084159732, -0.029267916455864906, -0.03005322627723217, -0.034100595861673355, 0.02499401569366455, 0.023483803495764732, -0.006592077203094959, 0.010035361163318157, 0.026232389733195305, -0.05385417491197586, 0.014037424698472023, 0.008306168019771576, 0.00810984056442976, 0.009204744361341, 0.011998637579381466, 0.009008416905999184, -0.02627769485116005, -0.020116029307246208, -0.0036773672327399254, 0.03446304798126221, 0.014603753574192524, -0.0014460283564403653, -0.03669816255569458, 0.011402104049921036, 0.016008252277970314, -0.005059211514890194, -0.015615596435964108, -1.2314720152062364e-05, 0.0060521760024130344, -0.021399710327386856, 0.0324997715651989, 0.0013752371305599809, 0.015275798738002777, -0.027787908911705017, -0.024299317970871925, 0.020433174446225166, -0.01837928406894207, -0.024072784930467606, -0.030672414228320122, 0.005323498509824276, -0.0029883328825235367, 0.03292262926697731, -0.008940457366406918, -0.018333978950977325, -0.014324364252388477, 0.030657311901450157, -0.02369523234665394, 0.05859624221920967, -0.012127005495131016, -0.0064070760272443295, 0.004334309604018927, -0.0028920567128807306, -0.038842663168907166, -0.010979244485497475, -0.027500968426465988, -0.028029542416334152, -0.043645139783620834, 0.03721163421869278, -0.013780687935650349, 0.015978047624230385, 0.006172993220388889, -0.0018594489665701985, 0.013169052079319954, -0.02596055157482624, 0.03098955750465393, 0.0012836805544793606, -0.026141775771975517, -0.03712102025747299, 0.03615448623895645, -0.01766948588192463, -0.0026636370457708836, -0.00012364864232949913, 0.00999760627746582, -0.02559809945523739, 0.006501464173197746, 0.03252997621893883, -0.006218299735337496, -0.013055786490440369, -0.007660552393645048, -0.005765235982835293, 0.0009467143681831658, -0.03095935471355915, -0.005810542032122612, -0.011545573361217976, -0.02164134383201599, 0.03736265376210213, -0.0055915615521371365, 0.004096451215445995, 0.0014139363775029778, -0.01628009043633938, 0.03817816823720932, 0.025175239890813828, -0.008404332213103771, -0.007294326089322567, 0.016355600208044052, 0.008857395499944687, 0.009099029935896397, -0.036939796060323715, 0.01130393985658884, -0.019451536238193512, -0.002304961672052741, -0.0024238908663392067, 0.0487496554851532, -0.02621728740632534, 0.012225169688463211, 0.0006621337379328907, 0.021913181990385056, -0.015781719237565994, 0.01596294529736042, -0.01599314995110035, -0.007717185188084841, 0.002320063766092062, -0.02457115612924099, 0.013199256733059883, -0.01624988578259945, -0.028029542416334152, -0.0018830461194738746, -0.017503362149000168, -0.0016008251113817096, -0.0003876998380292207, 0.006592077203094959, -0.005164926405996084, 0.009257601574063301, -0.026745861396193504, 0.002150164917111397, -0.027032801881432533, 0.04473249241709709, 0.04751128330826759, 0.0013393695699051023, 0.047934141010046005, -0.0070187123492360115, -0.0006904502515681088, 0.05019946023821831, 0.012149658985435963, 0.02695729210972786, -0.026398513466119766, -0.022396448999643326, 0.04210472106933594, -0.015721311792731285, 0.001218552584759891, -0.008630864322185516, 0.0010609242599457502, 0.037423063069581985, -0.016400907188653946, -0.02940383553504944, 0.0033809880260378122, 0.03826878219842911, -0.001730137038975954, 0.020689910277724266, -0.003952980972826481, 0.019889498129487038, -0.021520527079701424, 0.023257270455360413, 0.024691972881555557, 0.02241155132651329, 0.01828867197036743, 0.010662099346518517, 0.03231854364275932, 0.01381844375282526, -0.0015630698762834072, -0.03234874829649925, -0.03473488613963127, 0.04440024495124817, -0.00643350463360548, 0.02630789950489998, 0.0004457486211322248, 0.026821373030543327, 0.01599314995110035, -0.002072766423225403, 0.02795403078198433, 0.0055009485222399235, 0.04343370720744133, 0.006184319965541363, 0.022064203396439552, 0.030778128653764725, 0.008313719183206558, 0.00643350463360548, 0.008963110856711864, -0.03926552087068558, 0.05436764657497406, -0.022456858307123184, 0.006980956997722387, -0.009114132262766361, -0.03101976215839386, -0.015343758277595043, -0.014928449876606464, -0.003114813007414341, 0.007267897017300129, -0.0027938929852098227, -0.001705596107058227, -0.02882995456457138, 0.005727480631321669, -0.017458055168390274, 0.012648029252886772, 0.016944583505392075, -0.013637217693030834, -0.020100926980376244, -0.010443118400871754, 0.008328821510076523, -0.0015432483050972223, 0.03712102025747299, -0.02337808720767498, 0.019194800406694412, -0.012670681811869144, -0.012904765084385872, 0.03965817764401436, 0.017322136089205742, 0.002997771603986621, 0.016491519287228584, 0.021973591297864914, 0.024586258456110954, 0.008291065692901611, -0.00601442065089941, -0.0006857308326289058, 0.014384773559868336, 0.0005059211398474872, -0.009536990895867348, 0.019451536238193512, -0.009861687198281288, 0.012043943628668785, 0.00952944066375494, 0.011983535252511501, 0.010027809999883175, 0.0206748079508543, 0.012376190163195133, 0.03829898685216904, 0.015154981054365635, 0.018469898030161858, -0.0008900814573280513, 0.021263791248202324, 0.00609370693564415, 0.004171961918473244, 0.004889312665909529, 0.023136453703045845, 0.018167855218052864, 0.01133414451032877, -0.006123911123722792, -0.04811536520719528, -0.03485570102930069, -0.017548667266964912, 0.01100944820791483, -0.020946646109223366, -0.016113966703414917, -0.0011185010662302375, 0.022562572732567787, -0.024389930069446564, 0.0066071790643036366, -0.010065565817058086, 0.014928449876606464, -0.01843969337642193, 0.03751367703080177, -0.002518279245123267, 0.003186548128724098, 0.004696760326623917, -0.013055786490440369, 0.008200453594326973, -0.006561873015016317, -0.022577675059437752, -0.03542958199977875, 0.003020424861460924, -0.025522589683532715, 0.0037547654937952757, -0.00030275038443505764, -0.024556053802371025, -0.0330132432281971, 0.005497172940522432, -0.011704145930707455, 0.003201650222763419, -0.0025919019244611263, -0.026368308812379837, 0.021686650812625885, 0.0061541153118014336, 0.015630697831511497, -0.01812254823744297, 0.026262594386935234, -0.005753909237682819, 0.046031273901462555, -0.012104352004826069, 0.030370371416211128, -0.033194467425346375, -0.023529108613729477, -0.022819308564066887, 0.02499401569366455, -0.0005229110247455537, -0.01230068039149046, 0.005399009212851524, -0.0043645137920975685, 0.03201650455594063, -0.02150542475283146, -0.016612336039543152, 0.009567195549607277, -0.007630348205566406, 0.0004768967628479004, -0.004190839361399412, 0.010156177915632725, 0.039325930178165436, -0.0038340517785400152, 0.019240105524659157, -0.025749120861291885, 0.031200988218188286, -0.007720960769802332, 0.00018287728016730398, -0.011862718500196934, 0.01644621230661869, 0.0032771609257906675, -0.01415824145078659, 0.0030260880012065172, 0.03621489182114601, -0.005478295497596264, 0.03878225386142731, 0.029207507148385048, -0.021852772682905197, -0.0056595210917294025, 0.03588264808058739, -0.002378584584221244, -0.02695729210972786, 0.05388437956571579, -0.01715601235628128, -0.008532700128853321, 0.027485866099596024, -0.0017943211132660508, 0.0017235298873856664, 0.00457971915602684, 0.010865977965295315, 0.0077700428664684296, 0.036003462970256805, 0.017322136089205742, 0.04572923108935356, -0.02105236053466797, 0.025447078049182892, 0.046061478555202484, -0.0305969025939703, -0.0342516154050827, -0.010579037480056286, -0.001705596107058227, -0.008827191777527332, -0.013554155826568604, -0.03440263867378235, -0.03760428726673126, 0.013810892589390278, -0.02937363088130951, 0.03869163990020752, -0.045034535229206085, 0.049867212772369385, -0.01028454676270485, 0.010730058886110783, 0.01567600481212139, 0.00986923836171627, 0.013712728396058083, -0.012580069713294506, 0.03391937166452408, -0.007064018398523331, -0.020871134474873543, -0.008283515460789204, -0.023045841604471207, -0.017744995653629303, 0.002437105169519782, 0.017941324040293694, -0.017307033762335777, 0.03878225386142731, 0.05092436075210571, 0.010276995599269867, 0.009083927609026432, 0.005066762678325176, -0.0006899783038534224, -0.012859459035098553, 0.0044626775197684765, -0.009061274118721485, -0.016491519287228584, -0.017744995653629303, 0.02937363088130951, -0.03304344788193703, -0.019889498129487038, 0.0036471630446612835, -0.0008320326451212168, 0.006240952759981155, 0.0035414481535553932, 6.695667980238795e-05, 0.00625605508685112, 0.014377222396433353, 0.028074849396944046, 0.020357662811875343, 0.001092072343453765, 0.009091478772461414, 0.009680461138486862, 2.3139875338529237e-05, -0.01242904830724001, -0.008661068044602871, -0.021596036851406097, -0.0204180721193552, 0.03545978665351868, 0.004609923344105482, 0.019587455317378044, -0.022200122475624084, -0.016597233712673187, -0.034161005169153214, 0.03905409201979637, -0.0026768515817821026, -0.05240437015891075, -0.02402747981250286, -0.0024880748242139816, -0.01230068039149046, -0.00481380196288228, 0.01963276043534279, 0.02369523234665394, 0.022789105772972107, 0.04044348746538162, 0.026791168376803398, -0.02511483244597912, 0.01328231766819954, -0.03902388736605644, -0.03027975931763649, 0.008034329861402512, -0.0010448781540617347, -0.011628635227680206, -0.0038283884059637785, 0.009854136034846306, -0.005761460401117802, 0.0027108313515782356, -0.014316813088953495, -0.004515535198152065, -0.01624988578259945, -0.01960255764424801, -0.02383115142583847, 0.015185185708105564, 0.007973921485245228, 0.0005606663762591779, 0.004153084009885788, 0.00849494431167841, 0.02377074398100376, 0.02318176068365574, 0.003773643169552088, -0.007845553569495678, -0.005693500861525536, 0.002803331706672907, -0.04920272156596184, 0.01567600481212139, 0.0003884077596012503, 0.011515369638800621, -0.0015460799913853407, 0.008698823861777782, -0.037845924496650696, 0.0014318701578304172, 0.009280255064368248, -0.00659585278481245, 0.004904414992779493, -0.005478295497596264, -0.010118423029780388, 0.009665359742939472, -0.009068825282156467, -0.024661768227815628, 0.0017546780873090029, -0.0276670902967453, -0.008729027584195137, -0.0033111406955868006, 0.001900036004371941, 0.0010939601343125105, 0.001335594104602933, -0.03162384778261185, -0.021067462861537933, 0.011115163564682007, 0.03252997621893883, -0.044158611446619034, 0.031744666397571564, 0.020236846059560776, 0.0008480786345899105, 0.014837836846709251, 0.03778551518917084, 0.01676335744559765, -0.021852772682905197, -0.024556053802371025, 0.03684918209910393, 0.03494631499052048, 0.010110871866345406, -0.00046533418935723603, -0.006373096257448196, -0.020584195852279663, 0.009166989475488663, 0.005100742448121309, 0.03709081560373306, -0.003907674457877874, 0.0017244737828150392, -0.0035848666448146105, 0.007332080975174904, -0.028452401980757713, -0.0011723024072125554, 0.02892056666314602, -0.0018736072815954685, 0.02044827677309513, 0.020161336287856102, 0.002240777714177966, 0.01786581240594387, 0.0004912909935228527, -0.024691972881555557, -0.033073652535676956, -0.0413496159017086, -0.018726633861660957, -0.03376834839582443, -0.00047288526548072696, 0.024661768227815628, -0.0214450154453516, -0.01033740397542715, -0.004979925230145454, -0.017503362149000168, 0.022909922525286674, -0.0050139049999415874, 0.014060077257454395, 0.005678398534655571, 0.027032801881432533, 0.008562903851270676, -0.0016952133737504482, 0.02102215588092804, 0.012625375762581825, -0.006055951584130526, -0.007128202356398106, 0.01631029322743416, -0.0003291791072115302, -0.0030827210284769535, 0.007320754695683718, -0.004217267967760563, 0.016204578801989555, -0.004353187046945095, 0.0002205146010965109, -0.03195609524846077, -0.011908024549484253, -0.006108809262514114, -0.00769075658172369, -0.009642706252634525, -0.008426984772086143, 0.0031563439406454563, -0.00012860402057413012, -0.016687847673892975, -0.00023597068502567708, -0.025688713416457176, -0.013516400940716267, -0.02866383083164692, 0.007845553569495678, 0.0009740869863890111, -0.005497172940522432, -0.02905648574233055, 0.005202681757509708, -0.009612501598894596, -0.00967290997505188, -0.02047847956418991, 0.03397977724671364, -0.014143139123916626, -0.007626572623848915, 0.00025720804114826024, -0.030747924000024796, -0.007989023812115192, -0.015811923891305923, -0.0089480085298419, -0.02130909636616707, -0.02247196063399315, -0.037030406296253204, 0.009559644386172295, -0.020131131634116173, -0.009974952787160873, -0.0046288007870316505, -0.03376834839582443, 0.04968598857522011, 0.02201889641582966, 0.02786341868340969, -0.00844963826239109, -0.027455661445856094, -0.010979244485497475, 0.0049837008118629456, -0.012149658985435963, -0.03331528604030609, -0.0013752371305599809, -0.02656463533639908, -0.009612501598894596, 0.01541171781718731, 0.017563769593834877, -0.022562572732567787, 0.004760944750159979, 0.03515774384140968, -0.00986923836171627, -0.029826695099473, -0.010428017005324364, -0.02028215304017067, -0.015751514583826065, 0.0015876108082011342, -0.024208704009652138, -0.007286774925887585, 0.03394957631826401, 0.02499401569366455, -0.009559644386172295, -0.008525148965418339, 0.0010118422796949744, 0.005259314551949501, -0.011084958910942078, -0.02476748265326023, 0.011613532900810242, -0.06306646764278412, -0.020387867465615273, -0.01602335274219513, 0.01248190551996231, -0.0036377240903675556, 0.005701052024960518, 0.008389229886233807, 0.0038283884059637785, -0.025160139426589012, 0.005621765740215778, 0.019753579050302505, -0.025779325515031815, 0.015321104787290096, 0.0009065993945114315, -0.008562903851270676, 0.01567600481212139, -0.010669650509953499, -0.006040849722921848, 0.013259665109217167, -0.0011326592648401856, -0.015056817792356014, 0.010110871866345406, 0.03262058645486832, -0.01579682156443596, -0.018983369693160057, 0.028225868940353394, -0.009401071816682816, 0.01599314995110035, -0.0031601195223629475, -0.035580605268478394, 0.007131977938115597, 0.031654052436351776, -0.012361088767647743, -0.0037981842178851366, -0.002036898862570524, 0.02059929631650448, 0.009212295524775982, -0.004307880997657776, 0.021656446158885956, -0.011613532900810242, 0.00583697110414505, 0.01033740397542715, 2.1458585251821205e-05, 0.0066638123244047165, -0.0073471833020448685, -0.03588264808058739, 0.007943716831505299, -0.019270310178399086, -0.005274416878819466, 0.007324530277401209, 0.0031355784740298986, 0.01712580770254135, 0.007430245168507099, -0.015540085732936859, -0.008744129911065102, 0.0008763951482251287, 0.011137816123664379, -0.013878852128982544, 0.010775365866720676, -0.006897895131260157, 0.04104757308959961, 0.022683389484882355, 0.012081699445843697, 0.006297585554420948, -0.0206748079508543, 0.02192828431725502, 0.01576661691069603, 0.03259038180112839, 0.019451536238193512, -0.0017518464010208845, 0.01831887662410736, -0.0009533215779811144, 0.0014318701578304172, 0.026126675307750702, 0.0006366489105857909, 0.029720980674028397, 0.006973405834287405, 0.002422003075480461, -0.004432473331689835, -0.014377222396433353, -0.03391937166452408, 0.0007074401364661753, -0.002320063766092062, -0.008547802455723286, -0.01012597419321537, -0.029418937861919403, 0.002997771603986621, -0.007279223762452602, -0.0008886656141839921, 0.003158231731504202, 0.046574950218200684, 0.023423394188284874, 0.02656463533639908, 0.004470228683203459, -0.02164134383201599, 0.05980440974235535, -0.0018037599511444569, 0.008955559693276882, 0.006437280215322971, 0.00436828937381506, -0.007422694005072117, 0.0024937381967902184, 0.009083927609026432, -0.03053649514913559, -0.013093541376292706, 0.0041983905248343945, 0.009272703900933266, -0.0031223641708493233, -0.02747076377272606, -0.016974788159132004, -0.01999521255493164, -0.008389229886233807, -0.03259038180112839, 0.011319042183458805, -0.016144171357154846, 0.018500102683901787, -0.023906663060188293, -0.020886236801743507, -0.034161005169153214, 0.005176253151148558, -0.001597993541508913, 0.029720980674028397, -0.017760097980499268, -0.02451074682176113, -0.020146233960986137, 0.006029522977769375, -0.010654548183083534, 0.001272353925742209, -0.007698307745158672, 0.019013574346899986, 0.0009750308818183839, -0.018817245960235596, -0.008849844336509705, 0.0012487568892538548, -0.010050463490188122, 0.008993314579129219, 0.030370371416211128, -0.008978212252259254, 0.037030406296253204, -0.03295283392071724, 0.026156878098845482, -0.014988858252763748, -0.006225850433111191, 0.004870434757322073, -0.021747058257460594, 0.006682689767330885, -0.0008839461952447891, -0.018560510128736496, 0.013214358128607273, 0.010548833757638931, -0.0036830303724855185, -0.023362984880805016, 0.01695968583226204, 0.01828867197036743, -0.024102989584207535, -0.01854540780186653, -0.023498905822634697, 0.0014195996336638927, -0.0029845573008060455, -0.021324198693037033, -0.007320754695683718, 0.011794758960604668, 0.01205904595553875, -0.017986629158258438, 8.736814925214276e-05, -0.012534762732684612, -0.01075271237641573, -0.005017680581659079, 0.003903899108991027, -0.013886403292417526, -0.009642706252634525, 0.013780687935650349, -0.006592077203094959, -0.018303774297237396, 0.006946977227926254, -0.012950071133673191, -0.005629316903650761, -0.005976665765047073, 0.017820505425333977, 0.011160469613969326, -0.0013620228273794055, 0.00986923836171627, -0.011417205445468426, 0.013599462807178497, 0.009257601574063301, 0.0036377240903675556, -0.010956590995192528, -0.006252279505133629, 0.007154631428420544, 0.003405529074370861, 0.027999337762594223, 0.019980110228061676, -0.015328655950725079, 0.00722259096801281, 0.005640643183141947, 0.0002793892927002162, 0.05146803706884384, 0.017246626317501068, -0.005610438995063305, -0.005897379480302334, -0.021203381940722466, 0.0026447593700140715, 0.002992108231410384, 0.004156859591603279, 0.0038963479455560446, 0.0017509025055915117, -0.038359396159648895, 0.008291065692901611, 0.02834668755531311, -0.01843969337642193, -0.0002970870991703123, 0.016914378851652145, 0.01332007348537445, -0.01214210782200098, -0.0036414996720850468, -0.016431109979748726, 0.012814152054488659, -0.011069856584072113, 0.019783781841397285, -0.000806547817774117, 0.04261819273233414, -0.0236046202480793, -0.007218815386295319, -0.01399211771786213, 0.01951194368302822, 0.011424756608903408, 0.011213326826691628, -0.04246717318892479, 0.003007210325449705, 0.004315432161092758, -0.008880048990249634, 0.015827026218175888, -0.015192736871540546, -0.015721311792731285, -0.003960532136261463, -0.015978047624230385, 0.03286221995949745, -0.0028920567128807306, 0.05334070324897766, 0.017563769593834877, -0.020644603297114372, -0.01612906903028488, -0.0037151225842535496, 0.00282598496414721, 0.030158940702676773, 0.00019149020954500884, -0.025658508762717247, -0.020267050713300705, 0.003065731143578887, 0.006203197408467531, 0.006648709997534752, -0.006203197408467531, -0.004575943574309349, 0.006867690943181515, 0.015056817792356014, 0.013289868831634521, 0.0034867029171437025, -0.01083577424287796, 0.005168701987713575, -0.008827191777527332, 0.004277676809579134, 0.006263605784624815, 0.003275273134931922, -0.03479529544711113, 0.029554856941103935, -0.0038227250333875418, -0.004870434757322073, 0.007686981000006199, 0.009114132262766361, -0.017171114683151245, 0.003046853467822075, 0.011824962683022022, -0.01880214363336563, 0.008562903851270676, 0.018922962248325348, 0.018333978950977325, 0.005746358074247837, -0.009401071816682816, -0.0003565516963135451, -0.013312522321939468, -0.00465900544077158, -0.00737738749012351, -0.013825994916260242, 0.020116029307246208, 0.013471094891428947, 0.01273864135146141, 0.00573125621303916, -0.00815514661371708, 0.02644381858408451, -0.011862718500196934, 0.005289518740028143, 0.0012261037481948733, 0.008162697777152061, -0.017367443069815636, 0.022819308564066887, -0.02476748265326023, -0.008011676371097565, -0.0010986794950440526, 0.019270310178399086, 0.01059413980692625, 0.012240271084010601, -0.015721311792731285, -0.022502165287733078, -0.0206748079508543, -0.0011760778725147247, -0.0003091215912718326, -0.010798018425703049, 0.010156177915632725, -0.009733319282531738, -0.002378584584221244, 0.0020633277017623186, 0.008570455014705658, -0.009642706252634525, -0.01772989332675934, -0.010118423029780388, 0.007366060744971037, 0.02769729495048523, -0.005852072965353727, -0.019874395802617073, -0.03325487673282623, 0.0032337422017008066, -0.017563769593834877, 0.019481739029288292, -0.006259830202907324, -0.048447612673044205, -0.0017707240767776966, 0.01075271237641573, -0.009748420678079128, 0.023272372782230377, 0.000131671637063846, -0.030189145356416702, 0.04328268766403198, 0.007588817272335291, -0.002282308414578438, 0.0031223641708493233, -0.0027863418217748404, -0.0089480085298419, -0.008396781049668789, -0.006006869953125715, -0.0022841962054371834, 0.014694366604089737, 0.005357478279620409, -0.0036905815359205008, -0.00978617649525404, 0.019587455317378044, 0.010450669564306736, 0.009234949015080929, 0.03095935471355915, 0.02834668755531311, -0.013471094891428947, -0.008781884796917439, 0.016884174197912216, 0.017004990950226784, 0.010933937504887581, 0.002846750430762768, 0.018817245960235596, 0.013221909292042255, 0.012210067361593246, -0.026806270703673363, 0.002308737253770232, -0.013765585608780384, -0.011749452911317348, 0.0032545076683163643, 0.027742601931095123, -0.008683721534907818, 0.014294160529971123, 0.030143840238451958, -0.017760097980499268, 0.025145037099719048, -0.01252721156924963, 0.0057576848194003105, -0.00785310473293066, -0.01702009327709675, -0.0029109343886375427, -0.0209315437823534, -0.012074148282408714, 0.008268413133919239, 0.011855167336761951, 0.0027561376336961985, -0.008253310807049274, -0.005346152000129223, 0.01336537953466177, -0.04923292249441147, -0.021324198693037033, -0.03485570102930069, 0.010141076520085335, -0.023000534623861313, 0.0039114500395953655, -0.0036962449084967375, -0.023030739277601242, -0.02192828431725502, -0.004443800076842308, 0.01828867197036743, 0.007551061920821667, 0.011749452911317348, 0.0015234267339110374, -0.033194467425346375, 0.026942189782857895, -0.05998563766479492, 0.007324530277401209, -0.014558447524905205, 0.003445171983912587, -0.005191355012357235, 0.029207507148385048, -0.013048235327005386, 0.019104186445474625, 0.013825994916260242, 0.02053888887166977, 0.016491519287228584, -0.040745530277490616, -0.018167855218052864, 0.0066298325546085835, 0.005062987096607685, -0.0006055007688701153, -0.02102215588092804, -0.014633958227932453, -0.004319207277148962, 0.011084958910942078, -0.001993480371311307, 0.02096174843609333, -0.026368308812379837, -0.01766948588192463, -0.01205904595553875, -0.02721402794122696, -0.02115807496011257, 0.010541282594203949, -0.014339466579258442, -0.0060446253046393394, 0.009559644386172295, -0.012262924574315548, 0.007181060034781694, 0.023785844445228577, -0.008072085678577423, 0.02272869646549225, 0.04231614992022514, -0.03340590000152588, 0.011364348232746124, -0.004205941688269377, -0.008457189425826073, -0.022909922525286674, -0.0401112399995327, -0.015524983406066895, 0.0041002267971634865, -0.01683886907994747, -0.0013242674758657813, -0.02034256048500538, 0.019134391099214554, -0.025205444544553757, 0.015479677356779575, 0.02727443538606167, 0.03104996681213379, -0.019919700920581818, 0.017775200307369232, 0.005746358074247837, 0.029917307198047638, -0.000619187077973038, -0.0030978231225162745, -0.0064070760272443295, -0.006614730227738619, 0.03875204920768738, 0.004455126356333494, 0.001759397448040545, -0.011311491020023823, 0.012489456683397293, -0.020387867465615273, 0.00878943596035242, 0.026851575821638107, -0.0209315437823534, -0.009272703900933266, -0.013977015390992165, 0.02002541720867157, -0.02369523234665394, -0.019980110228061676, -0.0038189496845006943, 0.012632926926016808, -0.011084958910942078, 0.009136784821748734, -0.010352506302297115, -0.006010645534843206, -0.035127539187669754, 0.015019061975181103, -0.020629500970244408, -0.009982503950595856, 0.012036392465233803, 0.025718918070197105, 0.012950071133673191, 0.012504559010267258, -0.013425787910819054, 0.011115163564682007, 0.026081368327140808, -0.0012931193923577666, 0.021007053554058075, -0.013229460455477238, -0.0015262584201991558, 0.020584195852279663, -0.011575778014957905, -0.005863399710506201, -0.007747389376163483, 0.015026613138616085, 0.0025277179665863514, 0.0007989967707544565, -0.018515203148126602, -0.01670295000076294, 0.0013384257908910513, 0.018303774297237396, -0.0048515573143959045, 0.005210232920944691, 0.02673075906932354, 0.01478497963398695, -0.00619942182675004, 0.002046337816864252, 0.011394552886486053, -0.003133690683171153, 0.0031129252165555954, -0.02522054687142372, -0.015117226168513298, -0.008630864322185516, -0.006694016512483358, -0.02760668285191059, -0.007739838678389788, -0.012889662757515907, -0.008510046638548374, 0.002046337816864252, -0.0056330920197069645, 0.01747315749526024, 0.014973755925893784, -0.0018103671027347445, -0.01602335274219513, -0.01415824145078659, 0.01190047338604927, 0.006040849722921848, 0.00202746014110744, 0.014392323791980743, 0.008540251292288303, 0.0006215468165464699, -0.0068601397797465324, -0.004919516853988171, -0.003386651398614049, -0.004179512616246939, -0.000389823573641479, -0.0030732823070138693, 0.0037302246782928705, -0.013471094891428947, 0.003054404631257057, -0.012912316247820854, 0.07249019294977188, 0.003133690683171153, 0.009831482544541359, -0.010261893272399902, -0.004088900052011013, -0.034553658217191696, -0.00743402075022459, 0.0214450154453516, 0.03138221427798271, 0.008041881024837494, -0.006135237868875265, -0.003564101178199053, 0.01689927652478218, 0.005772786680608988, -0.02280420809984207, 0.021852772682905197, 0.022230327129364014, 0.026338104158639908, 0.004194614943116903, 0.023211965337395668, 0.0002959072298835963, -0.014007220044732094, -0.02099195308983326, 0.014890694059431553, -0.0019236330408602953, 0.03627530112862587, -0.02473727986216545, -0.0020331235136836767, 0.010367607697844505, 0.021747058257460594, -0.000721126445569098, -0.017276829108595848, 0.0015904423780739307, 0.000313133088639006, 0.0019387351348996162, 0.011258633807301521, -2.6325480575906113e-05, 0.01618947647511959, -0.0013582472456619143, -0.007264121435582638, -0.0014734009746462107, 0.021067462861537933, 0.01475477498024702, 0.027938928455114365, 0.0026485349517315626, -0.012043943628668785, -0.012814152054488659, 0.005308396648615599, 7.657249079784378e-05, -0.007535960059612989, -0.017035195603966713, -0.010767814703285694, -0.00019786141638178378, 0.01641600951552391, 0.00423992145806551, -0.00585962412878871, 0.021580934524536133, 0.0034338454715907574, 0.013878852128982544, -0.002267206320539117, -0.02840709500014782, 0.015630697831511497, -0.004643903113901615, -0.015615596435964108, -0.018968267366290092, -0.012844356708228588, 0.001126052113249898, -0.0086912726983428, 0.0037547654937952757, -0.005629316903650761, -0.023649925366044044, 0.015751514583826065, -0.0016329172067344189, -0.027063006535172462, 0.0020293479319661856, 0.010737610049545765, -0.014981307089328766, 0.019240105524659157, 0.019980110228061676, 0.012882111594080925, 0.00881964061409235, 0.010231688618659973, -0.02241155132651329, -0.01402987353503704, -0.0003978465683758259, 0.0026485349517315626, 0.03609407693147659, -0.0314728282392025, -0.001579115865752101, -0.026942189782857895, -0.02076542004942894, -0.005327274091541767, 0.001934959669597447, 0.026141775771975517, 0.002588126575574279, -0.006592077203094959, -0.014822734519839287, 0.0034904784988611937, 0.0173825453966856, -0.007075345143675804, 0.004217267967760563, 0.01837928406894207, -0.013214358128607273, 0.0005686893709935248, 0.011538023129105568, -0.013463543727993965, 0.021067462861537933, 0.0025012893602252007, -0.03150302916765213, 0.006633608136326075, 0.006097482517361641, -0.01809234544634819, -0.0006460877484641969, -0.0029071588069200516, -0.023982172831892967, 0.013433339074254036, 0.026519330218434334, -0.012081699445843697, -0.025522589683532715, -0.015570289455354214, 0.007226366549730301, 0.013871300965547562, -0.00436828937381506, -0.0116739422082901, 0.005606663413345814, -0.002761801006272435, -0.0038472660817205906, -0.014611304737627506, -0.007173508871346712, 0.006456158123910427, 0.0002812770544551313, 0.009023519232869148, 0.009816380217671394, 0.007396265398710966, 0.03050629049539566, -0.002221900038421154, -0.014354568906128407, -0.020946646109223366, 0.024359725415706635, -0.008978212252259254, 0.011628635227680206, -0.012625375762581825, 0.005112069193273783, 0.019874395802617073, -0.0007805910427123308, 0.02298543229699135, -0.010110871866345406, -0.015154981054365635, -0.00743402075022459, -0.018333978950977325, 0.025416875258088112, -0.03802714869379997, -0.0015526871429756284, -0.018107445910573006, 0.00013119970390107483, 0.008880048990249634, -0.03156343847513199, 0.0413496159017086, -0.023649925366044044, -0.006965854670852423, 0.00523288594558835, 0.010420465841889381, -0.0062749325297772884, -0.0015781719703227282, 0.003835939569398761, 0.01747315749526024, 0.020553991198539734, 0.026005856692790985, 0.005991767626255751, -0.004020940512418747, -0.003571652341634035, 0.011485164985060692, 0.010903733782470226, -0.024238908663392067, 0.010994345881044865, -0.0013082214863970876, 0.0036150708328932524, 0.00030322233214974403, -0.02414829656481743, 0.018016833811998367, 0.00047099750372581184, 0.0026976168155670166, 0.02099195308983326, 0.00525553897023201, -0.004991251975297928, -0.015003960579633713, 0.003732112469151616, -0.0009132065461017191, -0.008124942891299725, 0.006082380656152964, 0.004530637059360743, 0.010654548183083534, 0.009106581099331379, 0.0028429748490452766, -0.010760263539850712, -0.012262924574315548, 0.029328323900699615, 0.026896882802248, 0.01156067568808794, -0.021792365238070488, 0.0029751183465123177, 0.009023519232869148, 0.003564101178199053, 0.014890694059431553, -0.015902535989880562, -0.004953496623784304, -0.015222940593957901, -0.019104186445474625, -0.01184761617332697, -0.00447400426492095, -0.03911450132727623, -0.03485570102930069, 0.0066638123244047165, -0.007301876787096262, -0.005761460401117802, 0.0006069166120141745, 0.010118423029780388, 0.005108293611556292, 0.017488259822130203, -0.007619021460413933, 0.016461314633488655, 0.0012676345650106668, 0.02209440805017948, -0.004296554252505302, -0.016884174197912216, 0.006897895131260157, 0.004832679871469736, 0.009763523004949093, 0.011704145930707455, 0.007664327975362539, 0.013395584188401699, -0.015842128545045853, -0.010533731430768967, 0.031140578910708427, -0.007698307745158672, 0.017911119386553764, 0.010699855163693428, 0.0029770061373710632, 0.03204670548439026, -0.017503362149000168, -0.0013997780624777079, -0.002153940498828888, 0.002690065884962678, -0.0205690935254097, 0.006863915361464024, -0.012942519970238209, -0.0012270475272089243, 0.010730058886110783, 0.0009504899499006569, -2.4894907255657017e-05, -0.006373096257448196, -0.0013280430575832725, 0.0008277851738967001, 0.010601690970361233, 0.012632926926016808, -0.008698823861777782, -0.019934803247451782, 0.01783560775220394, 0.006471259985119104, -0.022577675059437752, 0.001720698201097548, 0.017337238416075706, -0.021943386644124985, -0.014407426118850708, 0.005051660351455212, 0.019980110228061676, -0.025839734822511673, -0.00046486224164254963, 0.0014413089957088232, 6.235525506781414e-05, 0.020659705623984337, 0.007411367259919643, 0.00949923601001501, 0.005693500861525536, -0.009461481124162674, -0.0012799049727618694, 0.007097998168319464, -0.02318176068365574, 0.0086912726983428, 0.018137650564312935, 0.0022804206237196922, 0.006758200470358133, 0.017291931435465813, -0.007762491703033447, 0.0031884359195828438, -0.014467834495007992, 0.011115163564682007, 0.006535443942993879, -0.012247822247445583, 0.013274767436087132, 0.003630173159763217, -0.015585391782224178, 0.011711697094142437, -0.008124942891299725, -0.009363316930830479, 0.018077243119478226, -0.007524633314460516, 0.004300329834222794, 0.01683886907994747, -0.007030038628727198, 0.005395233631134033, 0.003845378290861845, -0.010775365866720676, -0.023967070505023003, 0.008094738237559795, 0.01462640706449747, 0.011069856584072113, 0.006841262336820364, -0.00447400426492095, 0.01227047573775053, 0.0032960386015474796, -0.006312687881290913, -0.017337238416075706, -0.0014337579486891627, -0.021369505673646927, -0.00849494431167841, 0.00695830350741744, 0.014762326143682003, -0.02783321402966976, -0.00023538076493423432, -0.00033342657843604684, -1.0220480362477247e-05, -0.02241155132651329, 0.018620919436216354, 0.004500432871282101, 0.01615927182137966, 0.01828867197036743, 0.02034256048500538, 0.008245759643614292, -0.03132180497050285, 0.019587455317378044, -0.0054027847945690155, -0.014347017742693424, -0.008532700128853321, -0.00036079916753806174, 0.01369007583707571, -0.010065565817058086, -0.0007914456655271351, -0.01599314995110035, 0.011545573361217976, -0.002255879808217287, -0.01715601235628128, -0.0032526198774576187, -0.0015687331324443221, 0.017367443069815636, 0.002169042592868209, 0.021626241505146027, -0.019693169742822647, 0.015389064326882362, 0.007754940539598465, -0.0026881780941039324, -0.0034716008231043816, 0.03561080992221832, 0.00986923836171627, -0.009952299296855927, -0.011749452911317348, 0.005550030618906021, 0.018454795703291893, -0.016793562099337578, 0.012323332950472832, -0.009106581099331379, 0.018031936138868332, -0.0001930240250658244, -0.0003754293720703572, -0.0005417887005023658, 0.002227563178166747, -0.0052064573392271996, 0.01702009327709675, -0.027047904208302498, -0.0014243191108107567, -0.0018792705377563834, -0.02605116367340088, -0.02176216058433056, 0.00030628996319137514, -0.022290734574198723, 0.000171786654391326, -0.01276884600520134, -0.009257601574063301, -0.0029656796250492334, -0.019753579050302505, 0.03582223877310753, -0.010367607697844505, -0.01264047808945179, -0.015615596435964108, 0.020433174446225166, 0.020916441455483437, 0.024586258456110954, 0.004791148938238621, 0.00836657639592886, -0.006486362311989069, -0.014603753574192524, 0.0004629744798876345, -0.012451700866222382, 0.0013327624183148146, -0.0078002470545470715, 0.020236846059560776, -0.01769968867301941, 0.011319042183458805, -0.007596368435770273, 0.002525830175727606, 0.00806453451514244, -0.008683721534907818, 0.013229460455477238, 0.004575943574309349, 0.0058558485470712185, -0.014256404712796211, -0.0062447283416986465, 0.0173825453966856, 0.021626241505146027, -0.004379616118967533, -0.004440024495124817, 0.008260861970484257, -0.017367443069815636, 0.00024186995869968086, 0.001272353925742209, -0.023936865851283073, 0.016174374148249626, -0.021747058257460594, -3.7386605526990024e-06, 0.003080833237618208, 0.017518464475870132, -0.012942519970238209, 0.01621968112885952, 0.001388451550155878, 0.01541171781718731, -0.012632926926016808, 0.021565832197666168, 0.005093191284686327, -0.009408622980117798, 0.01251211017370224, -0.020357662811875343, -0.016144171357154846, 0.0011392665328457952, -0.00481380196288228, -0.03195609524846077, -0.014384773559868336, 0.028875261545181274, -0.023166658356785774, -0.003815174102783203, 0.022592777386307716, -0.014694366604089737, -0.01177210547029972, -0.016718050464987755, 0.004417371470481157, 0.016370702534914017, 0.011296388693153858, 0.0071508558467030525, 0.0116739422082901, -0.008343923836946487, -0.01618947647511959, -0.0046514542773365974, 0.0119306780397892, -0.0018160303588956594, 0.006765751633793116, -0.010639446787536144, -0.009182091802358627, -0.01028454676270485, 0.017110707238316536, 0.02940383553504944, -0.035489991307258606, 0.0010316638508811593, -0.0037264490965753794, -0.0013629667228087783, 0.007592592854052782, -0.02272869646549225, 0.006780853495001793, 0.002227563178166747, -0.0010599803645163774, -0.0032771609257906675, -0.0065656485967338085, -0.009733319282531738, 0.007245243992656469, 0.011213326826691628, -0.015389064326882362, 0.007566164247691631, 0.01407517958432436, -0.0009183979127556086, 0.012602722272276878, 0.0004384335479699075, -0.0039680832996964455, -0.006354218814522028, -0.00024517354904673994, -0.003986960742622614, 0.001198731129989028, 0.032711200416088104, -0.017065400257706642, 0.01302558183670044, 0.013803341425955296, 0.01695968583226204, 0.010518629103899002, 0.00128745601978153, -0.003313028486445546, 0.02354421094059944, -0.01525314524769783, 0.01709560491144657, -0.0021237360779196024, -0.007437795866280794, 0.01478497963398695, 0.0033451204653829336, 0.008034329861402512, 0.0022294509690254927, -0.011794758960604668, 0.0027466989122331142, 0.01038271002471447, 0.0209315437823534, 0.009990055114030838, -0.010224138386547565, 0.030294859781861305, 0.028361788019537926, 0.025401772931218147, 0.008056983351707458, 0.01670295000076294, -0.006259830202907324, 0.014143139123916626, 4.5483349822461605e-05, 0.02573401853442192, -0.0005955900414846838, 0.02247196063399315, 0.0021029708441346884, 0.011696594767272472, -0.0006852588849142194, -0.015132328495383263, -0.004866659641265869, 0.013803341425955296, 0.0001422903296770528, -0.009151887148618698, 0.025190342217683792, 0.0011921238619834185, 0.01780540496110916, 0.0007008329266682267, -0.021263791248202324, 0.006493913475424051, -0.009401071816682816, 0.009469031356275082, 0.0004964823019690812, 0.00619942182675004, 0.011319042183458805, 0.006206972990185022, 0.039386339485645294, -0.004209717269986868, 0.022456858307123184, -0.015230491757392883, 0.013682524673640728, -0.01925520785152912, -0.009385970421135426, -0.011840065009891987, -0.008011676371097565, 0.007173508871346712, -0.01886255294084549, 0.0028297605458647013, -0.005629316903650761, -0.00240690098144114, 0.015177634544670582, 0.00044055728358216584, 0.017276829108595848, -0.02099195308983326, -0.009733319282531738, -0.005920032504945993, -0.0071508558467030525, 0.027682192623615265, -0.012383741326630116, -0.01937602460384369, -0.014717020094394684, 0.00802677869796753, -0.00337343686260283, 0.0004455126472748816, 0.012504559010267258, -0.004262574482709169, 0.009008416905999184, 0.015109675005078316, 0.0026976168155670166, -0.009212295524775982, -0.0028203215915709734, 0.011779656633734703, 0.0018679439090192318, 0.005648194346576929, -0.01880214363336563, -0.0002999187563546002, 0.007199937477707863, -0.0006508071674033999, 0.008970662020146847, -0.004768495447933674, -0.001232710899785161, -0.0069620790891349316, 0.014467834495007992, 0.024873198941349983, -0.007131977938115597, 0.015064368955790997, 0.004104002378880978, -0.023332782089710236, 0.018938062712550163, -0.005451866891235113, -0.009136784821748734, 0.004772271029651165, 0.01104720402508974, -0.015978047624230385, 0.00802677869796753, -0.0003584394871722907, -0.018273569643497467, -0.020191539078950882, -0.011077407747507095, -0.0022445530630648136, -0.0031714460346847773, 0.007422694005072117, 0.007653001230210066, -0.004507984034717083, 0.00013981263327877969, -0.013508849777281284, 0.010730058886110783, -0.0173825453966856, 0.0033149162773042917, -0.00764167495071888, 0.01712580770254135, -0.0024578706361353397, 0.0028618525248020887, -0.011892922222614288, 0.005485846661031246, 0.012232720851898193, 0.004681658465415239, -0.014739672653377056, -0.0026239941362291574, -0.0066977920942008495, -0.012225169688463211, 0.022456858307123184, -0.007211264222860336, -0.015540085732936859, 0.021127872169017792, 0.010435567237436771, 0.01818295754492283, -0.011077407747507095, 0.004311656579375267, 0.003956756554543972, -0.008208004757761955, -0.024978913366794586, 0.0086912726983428, 0.001827356987632811, -0.024586258456110954, 0.004908190108835697, 0.004572167992591858, -0.041802678257226944, -0.007267897017300129, -0.002792005194351077, 0.00394920539110899, 0.009431276470422745, 0.017790302634239197, -0.007097998168319464, 0.005331049673259258, -0.007532184477895498, 0.0025843509938567877, -0.008517597801983356, -0.01937602460384369, 0.028165461495518684, -0.021339301019906998, 0.009725768119096756, 0.0029826695099473, -0.007694532163441181, 0.012761294841766357, -0.0515284463763237, 0.003660377347841859, -0.005874726455658674, -0.01576661691069603, -0.034100595861673355, -0.003709459211677313, -0.00962760392576456, -0.0006309855962172151, -0.014618855901062489, -0.00523288594558835, 0.0072150398045778275, 0.00949923601001501, -0.020946646109223366, 0.0031714460346847773, 0.019043779000639915, -0.008374127559363842, 0.00494216987863183, 0.013523952104151249, 0.0023106250446289778, -0.011545573361217976, -0.03277160972356796, 0.01177210547029972, -0.026911985129117966, -0.015721311792731285, 0.008630864322185516, 0.0027995561249554157, -0.00026239940780214965, -1.6650681573082693e-05, -0.002792005194351077, -0.008510046638548374, -0.03902388736605644, -0.008094738237559795, -0.0038661437574774027, -0.022683389484882355, 0.0019727149046957493, 0.006569423712790012, -0.02050868421792984, 0.0068299355916678905, 0.009823931381106377, -0.013720279559493065, -0.01647641696035862, -0.032711200416088104, -0.017322136089205742, -0.014090281911194324, -0.008796987123787403, 0.0074453470297157764, -0.007830451242625713, 0.012700886465609074, -0.010412914678454399, 0.023725437000393867, -0.0029770061373710632, -0.0005285743391141295, -0.002852413570508361, 0.0012581957271322608, -0.001719754422083497, 0.00502145616337657, -0.013569258153438568, -0.01721642166376114, -0.011039652861654758, 0.026715656742453575, 0.0005210232920944691, -0.023393189534544945, 0.0012497007846832275, -0.0022841962054371834, -0.00844963826239109, -0.00363583629950881, 0.007717185188084841, 0.005727480631321669, -0.002442768542096019, 0.001106230542063713, 0.014180894009768963, -0.00785310473293066, 0.008744129911065102, 0.021596036851406097, 0.00027986124041490257, 0.005716153886169195, 0.0034470597747713327, -0.006845037918537855, -0.0008145708125084639, 0.009793727658689022, 0.0012902877060696483, 0.0057576848194003105, 0.014565998688340187, -0.016944583505392075, -0.04352432116866112, -0.0015866669127717614, -0.0020199089776724577, 0.022366246208548546, -0.020236846059560776, -0.01399211771786213, 0.022547470405697823, -0.018787041306495667, 0.002412564354017377, -0.010601690970361233, -0.013093541376292706, 0.014226200990378857, -0.004504208452999592, 0.0035169071052223444, -0.004028491675853729, 0.01599314995110035, -0.0029883328825235367, 0.0006772358901798725, -0.0032998141832649708, 0.009725768119096756, 0.011575778014957905, -0.020750317722558975, 0.00849494431167841, -0.01795642450451851, 0.009944749064743519, -0.011583329178392887, -0.011243531480431557, 0.0012261037481948733, 0.017110707238316536, 0.018198059871792793, -0.003807622939348221, -0.025975653901696205, -0.02559809945523739, -0.01386374980211258, -0.02656463533639908, 0.007332080975174904, -0.005663296673446894, 0.0014734009746462107, 0.015721311792731285, 0.009740869514644146, -0.021520527079701424, -0.03657734394073486, -0.012089250609278679, -0.017911119386553764, 0.0064750355668365955, 0.03343610092997551, 0.008087187074124813, 0.0006904502515681088, 0.0146566117182374, 0.011205775663256645, 0.0012289353180676699, -0.016068659722805023, -0.007169733289629221, 0.028814852237701416, -0.001208169967867434, 0.015154981054365635, -0.002104858634993434, -0.009129233658313751, -0.0007017768220975995, 0.002384247723966837, 0.015117226168513298, -0.004855332896113396, -0.0032696097623556852, -0.0011458736844360828, 0.009121682494878769, -0.01951194368302822, 0.027803009375929832, 0.028754444792866707, -0.010073116980493069, 0.023740539327263832, -0.002844862639904022, -0.007203713059425354, 0.007792695891112089, 0.0012459252029657364, -0.009378419257700443, 0.006724220700562, -0.004024716094136238, -0.008404332213103771, 0.011137816123664379, -0.014143139123916626, 0.0026485349517315626, 0.0173825453966856, -0.011598431505262852, -0.026428716257214546, 0.006773302797228098, -0.017458055168390274, -0.010443118400871754, 0.006792180240154266, -0.005863399710506201, -0.0012619711924344301, 0.009552093222737312, -0.007437795866280794, 0.016748255118727684, -0.010956590995192528, -0.0012676345650106668, 0.003290375228971243, -0.004734515678137541, 0.006546770688146353, 0.004085124470293522, 0.006527893245220184, -0.03104996681213379, 0.0020142458379268646, 0.021263791248202324, -0.008457189425826073, 0.011636186391115189, -0.013410686515271664, 0.012074148282408714, -0.009725768119096756, -0.015328655950725079, 0.01025434210896492, 0.012497007846832275, -0.006452382542192936, -0.006509015336632729, -0.0031072620768100023, 0.014505590312182903, -0.002206797944381833, 0.0016329172067344189, 0.01475477498024702, -0.01349374745041132, 0.005168701987713575, 0.021233586594462395, -0.006316463463008404, -0.0009721992537379265, 0.001930240192450583, -0.013659871183335781, -0.009295357391238213, 0.011832513846457005, -0.012572518549859524, -0.009121682494878769, 0.0030600677710026503, -0.01231578178703785, -0.007113100495189428, 0.01546457502990961, 0.0027674641460180283, 0.01075271237641573, 0.00297134299762547, 0.0073471833020448685, -0.018016833811998367, -0.010360057465732098, -0.009763523004949093, 0.017503362149000168, 0.004881761502474546, -0.016582131385803223, -0.012519660405814648, -0.012829254381358624, -0.002967567415907979, -0.011213326826691628, 0.008056983351707458, 0.03545978665351868, 0.02605116367340088, -0.005750133655965328, 0.011953331530094147, -0.017201319336891174, -0.013259665109217167, -0.023242168128490448, 0.029192404821515083, -0.003290375228971243, -0.0006965854554437101, -0.012663130648434162, 0.009038621559739113, -0.015441921539604664, -0.010103320702910423, -0.011726799421012402, -0.005946461111307144, -0.0043305340223014355, -0.02269849181175232, -0.0011477614752948284, 0.0031129252165555954, 0.008442087098956108, -0.01357680931687355, -0.0060861557722091675, 0.004794924519956112, -0.009355765767395496, 0.0012780172983184457, -0.0022483286447823048, 0.009521889500319958, -0.006188095081597567, -0.013742933049798012, -0.014014771208167076, -0.011084958910942078, 0.03660754859447479, 0.014649060554802418, 0.009922095574438572, 0.007807798217982054, 0.00594268599525094, -0.02392176352441311, -0.004738291259855032, -0.000933028117287904, -0.00405492028221488, 0.010458220727741718, -0.011568226851522923, -0.007101773750036955, 0.01828867197036743, -0.020327458158135414, -0.010798018425703049, 0.0005030895117670298, 0.00878943596035242, 0.005614214576780796, 0.0205690935254097, 0.020629500970244408, -0.001160031883046031, -0.005115844309329987, -0.011084958910942078, -0.003669816069304943, -0.0003251676098443568, 0.0076681035570800304, -0.00999760627746582, 0.01488314289599657, 0.016144171357154846, 0.012934968806803226, -0.009476582519710064, 0.006203197408467531, 0.015056817792356014, -0.006410851608961821, 0.01033740397542715, 0.003124251961708069, -0.015570289455354214, -0.025749120861291885, -0.018001731485128403, 0.0022313387598842382, -0.001813198789022863, 0.007543510757386684, -0.007358510047197342, 0.009952299296855927, -0.01641600951552391, 0.006954527925699949, -0.014837836846709251, -0.0035263460595160723, 0.0019368473440408707, 0.008056983351707458, 0.0006069166120141745, -0.004507984034717083, 0.020146233960986137, 0.01289721392095089, 0.01757887192070484, -0.040292467921972275, -0.0011760778725147247, -0.009718216955661774, 0.0050818645395338535, -0.02164134383201599, -0.008925355039536953, 0.02164134383201599, -0.0007367004873231053, 0.004625025670975447, 0.0217017512768507, -0.0036717038601636887, 0.008291065692901611, 0.013720279559493065, 0.005984216462820768, -0.025447078049182892, -0.012678232975304127, -0.008540251292288303, 0.003533896990120411, -0.0036188464146107435, -0.028074849396944046, 0.021142974495887756, -0.0014243191108107567, 0.007094222586601973, 0.0089480085298419, 0.011538023129105568, 0.016536826267838478, -0.0204180721193552, -0.0010033473372459412, 0.003416855586692691, -0.003173333825543523, 0.005183803848922253, 0.002057664329186082, -0.033617328852415085, 0.016068659722805023, 0.0016829429659992456, -0.013584360480308533, -0.030415678396821022, 0.02531115896999836, -0.01602335274219513, 0.027803009375929832, 0.018756838515400887, 0.013939260505139828, 0.01205904595553875, 0.028301380574703217, -0.011545573361217976, 0.022713594138622284, 0.004020940512418747, -0.010654548183083534, 0.01109251007437706, 0.014558447524905205, -0.003956756554543972, -0.012391292490065098, -0.008540251292288303, -0.013312522321939468, 0.009023519232869148, -0.0032658344134688377, -0.012580069713294506, -0.022426653653383255, -0.010798018425703049, 0.005414111539721489, -0.015056817792356014, 0.027229130268096924, -0.0028769546188414097, 0.0057916645891964436, 4.967183122062124e-05, -0.0077700428664684296, 0.021263791248202324, 0.012648029252886772, -0.026549534872174263, -0.00806453451514244, -0.003388538956642151, -0.011371899396181107, 0.011666391044855118, -0.006267381366342306, -0.005712378304451704, -0.0020501133985817432, 0.004730740562081337, 0.007679429836571217, -0.005825644358992577, 0.017624178901314735, 0.002397462259978056, 0.017201319336891174, 0.011077407747507095, 0.036970000714063644, 0.0015272023156285286, 0.008887600153684616, 0.0035018050111830235, -0.01957235299050808, 0.015630697831511497, 0.01454334519803524, -0.009257601574063301, 0.00931801088154316, -0.0010127861751243472, 0.01328231766819954, -0.017488259822130203, 0.019240105524659157, -0.004122879821807146, 0.0013459768379107118, -0.014558447524905205, -0.0038529294542968273, 0.012632926926016808, 0.0038189496845006943, -0.01529845129698515, 0.006690240930765867, -0.0010156178614124656, -0.016536826267838478, -0.007785144727677107, -0.0028543013613671064, 0.0025126158725470304, -0.005972890183329582, 0.008570455014705658, -0.005878501571714878, 0.010775365866720676, -0.021852772682905197, 0.02241155132651329, -0.007369836326688528, -0.009778625331819057, 0.03153323382139206, 0.007373611908406019, 0.0032658344134688377, 0.009793727658689022, 0.02022174373269081, -0.004300329834222794, -0.005338600836694241, -0.013554155826568604, 0.01818295754492283, -0.0044286977499723434, 0.00585962412878871, 0.009959850460290909, -0.009370868094265461, 0.0028826179914176464, 0.0033658859319984913, -0.011915575712919235, -0.0069620790891349316, -0.0003468769136816263, 0.003075170097872615, 0.0004889312549494207, 0.00022063258802518249, 0.005995543207973242, -0.005738806910812855, -0.005134722217917442, 0.0030864966101944447, 0.02147522009909153, 0.0009594568400643766, -0.016748255118727684, -0.01538151316344738, 0.020871134474873543, 0.0013119970681145787, -0.004051144700497389, 0.009922095574438572, 0.00033531434019096196, -0.012497007846832275, 0.0046023721806705, 0.003537672571837902, -0.0013167164288461208, -0.0051724775694310665, 0.01979888416826725, -1.4099248801358044e-05, -0.002514503663405776, 0.002909046597778797, 0.007679429836571217, 0.0011619196739047766, 0.014120485633611679, 0.0032828242983669043, 0.00802677869796753, -0.006648709997534752, 2.4629440304124728e-05, 0.01190047338604927, -0.0033413448836654425, -0.01391660701483488, -0.0021728181745857, 0.005670847371220589, 0.012919867411255836, 0.0015876108082011342, -0.012074148282408714, -0.009597400203347206, -0.010631895624101162, -0.004202166106551886, 0.01289721392095089, -0.0033262427896261215, 0.001272353925742209, 0.00659585278481245, -0.01488314289599657, 0.01928541250526905, 0.008374127559363842, -0.0035603258293122053, -0.0046288007870316505, -0.0005927583551965654, -0.007883308455348015, 0.005372580606490374, -0.01818295754492283, 0.01670295000076294, 0.004832679871469736, -0.004606147762387991, -0.009861687198281288, -0.016400907188653946, 0.008359025232493877, -0.010760263539850712, -0.0038963479455560446, 0.008570455014705658, 0.01180231012403965, -0.013002928346395493, 0.005946461111307144, -0.03183527663350105, -0.008087187074124813, -0.026609942317008972, -0.014354568906128407, -0.02950954996049404, 0.010224138386547565, 0.00031006548670120537, -0.02889036387205124, -0.023997275158762932, 0.0206748079508543, 0.006123911123722792, 0.03618469089269638, -0.0023804723750799894, -0.012096801772713661, 0.003080833237618208, -0.0028089950792491436, 0.009008416905999184, -0.010103320702910423, 0.013350277207791805, 0.0076039195992052555, -0.014105384238064289, -0.020402969792485237, 0.002597565297037363, 0.010292097926139832, -0.009061274118721485, -0.029660571366548538, -0.004791148938238621, 0.02440503239631653, 0.0040662470273673534, 0.002807107288390398, 0.0246315635740757, -0.012466803193092346, 0.012693335302174091, -0.02212461084127426, -0.0014734009746462107, -0.00012825007434003055, 0.020161336287856102, 0.005799215752631426, -0.01428660936653614, 0.02876954711973667, -0.007003610022366047, -0.0013903393410146236, -0.004734515678137541, 0.0043645137920975685, -0.014513141475617886, 0.010435567237436771, 0.010314750485122204, 0.0013422012561932206, -0.004564616829156876, 0.011130264960229397, 0.014528242871165276, -0.009219846688210964, 5.462721310323104e-05, -0.01239884365350008, -0.0020293479319661856, -0.018213162198662758, 0.00392655236646533, 0.011243531480431557, 0.010012708604335785, 0.0025012893602252007, -0.0024238908663392067, -1.8951395759359002e-05, -0.0015611820854246616, 0.010873529128730297, 0.026141775771975517, -0.0178960170596838, -0.014565998688340187, 0.001092072343453765, -0.004919516853988171, 0.0019727149046957493, -0.026685453951358795, 0.017790302634239197, -0.013569258153438568, 0.0024201152846217155, -0.0026844025123864412, 0.03298303857445717, -0.014822734519839287, -0.008472291752696037, 0.0004051616706419736, 0.017971526831388474, 0.00039690270205028355, -0.005901155062019825, -0.0021218485198915005, 0.04440024495124817, 0.023846253752708435, 0.0014479161472991109, 0.0032677219714969397, 0.01360701397061348, -0.011356797069311142, -0.001876438851468265, -0.004523086361587048, -0.016597233712673187, 0.017246626317501068, -0.009839033707976341, -0.011311491020023823, 0.0033696615137159824, -0.030551597476005554, -0.007407591678202152, -0.0008367520640604198, 0.001208169967867434, 0.0052706412971019745, 0.010110871866345406, 0.011492716148495674, 4.448047548066825e-05, 0.008910252712666988, 0.01605355739593506, 0.008442087098956108, 0.05007864162325859, 0.00416063517332077, 0.02366502769291401, -0.01644621230661869, 0.008404332213103771, -0.024269113317131996, 0.0017027645371854305, -0.015358859673142433, -0.02034256048500538, -0.017427850514650345, 0.017291931435465813, -0.005055435933172703, 0.015600494109094143, 0.02815035916864872, 0.0010420465841889381, 0.00033602226176299155, 0.002070878865197301, -0.005617990158498287, -0.005376356188207865, 0.011741901747882366, -0.0007225422305054963, 0.011628635227680206, -0.009582297876477242, -0.009136784821748734, 0.022713594138622284, 0.013901504687964916, 0.010405363515019417, -0.010654548183083534, 0.012466803193092346, 0.01122087799012661, 0.016536826267838478, -0.010148627683520317, -0.03331528604030609, 0.012753743678331375, 0.016551928594708443, 0.0016348048811778426, 0.009453929960727692, 0.020584195852279663, -0.005134722217917442, -0.010843325406312943, -0.014845388010144234, -0.007048916537314653, 0.0037981842178851366, 0.0008716757292859256, -0.009265152737498283, -0.005349927581846714, 0.012066597118973732, 0.00018039958376903087, -0.014550896361470222, 0.008472291752696037, 0.0035395603626966476, -0.008630864322185516, -0.04056430608034134, -0.017065400257706642, -0.002110521774739027, 0.018258467316627502, 0.0076114702969789505, -0.005251763388514519, -0.012308230623602867, -0.017322136089205742, -0.009861687198281288, -0.003979409579187632, 0.005463193170726299, 0.012746192514896393, -0.01695968583226204, 0.01369007583707571, -0.005538703873753548, 0.018620919436216354, 0.01106230542063713, -0.002403125399723649, 0.024812789633870125, -0.00627870811149478, -0.017971526831388474, -0.029101792722940445, -0.01647641696035862, -0.02331767976284027, -0.03070261888206005, -0.0028731790371239185, -0.009695563465356827, 0.018077243119478226, 0.002270981902256608, -0.009476582519710064, -0.01264047808945179, -0.012066597118973732, -0.013410686515271664, 0.009023519232869148, -0.00494216987863183, 0.011183123104274273, 0.00756238866597414, -0.0055349282920360565, -0.007649225648492575, -0.02050868421792984, -0.011960881762206554, 0.002518279245123267, 0.02280420809984207, -0.014762326143682003, -0.001959500601515174, -0.011069856584072113, -0.005338600836694241, 0.015721311792731285, 0.01880214363336563, 0.008683721534907818, -0.013033133000135422, 0.0011911800829693675, 0.00033319060457870364, -0.014482936821877956, -0.023000534623861313, -0.0013724055606871843, -0.0024540950544178486, 0.01605355739593506, -0.011598431505262852, 0.010888631455600262, -0.0004903470980934799, 0.022169917821884155, 0.0028788424097001553, 0.01809234544634819, 0.013546605594456196, 0.01644621230661869, 0.004696760326623917, 0.015494778752326965, -0.006354218814522028, 0.0011269960086792707, 0.0461822934448719, 0.010020258836448193, 0.0015149317914620042, 0.014180894009768963, 0.007928615435957909, 0.027999337762594223, -0.018847450613975525, 0.004700535908341408, 0.008751681074500084, -0.028965873643755913, -0.006350443232804537, 0.02869403548538685, 0.002197358990088105, 0.010065565817058086, 0.013199256733059883, -0.002769351936876774, 0.00844963826239109, 0.00416063517332077, -0.012451700866222382, 0.023816049098968506, 0.027078108862042427, -0.007430245168507099, -0.014233752153813839, 0.006561873015016317, -0.03159364312887192, 0.011605982668697834, 0.023936865851283073, 0.004866659641265869, -0.008034329861402512, -0.012874560430645943, -0.02531115896999836, 0.013093541376292706, -0.01407517958432436, 0.015419268980622292, -0.02476748265326023, 0.011364348232746124, -0.019481739029288292, -0.001798096694983542, -0.009642706252634525, -0.0008240096503868699, 0.01735234074294567, 0.0021558282896876335, -0.004840230569243431, -0.01889275759458542, -0.010110871866345406, 0.013486196286976337, -0.009295357391238213, -0.031684257090091705, -0.006403300445526838, -0.0020538887474685907, 0.010239239782094955, -0.007286774925887585, -0.0022105732932686806, 0.008993314579129219, -0.004194614943116903, -0.005066762678325176, -0.015268247574567795, -0.010133525356650352, 0.017337238416075706, 0.0058558485470712185, 0.019240105524659157, 0.01373538188636303, 0.0027221578639000654, -0.0016140395309776068, -0.018394386395812035, 0.01883234828710556, 0.009567195549607277, -0.011605982668697834, 0.016551928594708443, 0.028512809425592422, -0.038450006395578384, 0.006369320675730705, -0.00810984056442976, 0.023302577435970306, -0.015328655950725079, 0.0034621618688106537, -0.026942189782857895, -0.017488259822130203, -0.002106746193021536, 0.010994345881044865, -0.02173195593059063, -0.0034961416386067867], "66619eac-0a60-42a9-b2c5-f7e4d638dc44": [-0.023932768031954765, -0.01619606465101242, -0.006234705913811922, 0.00028583116363734007, -0.04248102009296417, -0.0489141009747982, 0.021368037909269333, 0.03618963435292244, -0.006000904366374016, 0.020064417272806168, 0.0029225184116512537, 0.03312895819544792, -0.0003909975348506123, -0.01001803856343031, 0.025760671123862267, 0.04341622442007065, -0.010669848881661892, 0.02302590198814869, 0.004948797635734081, -0.04233932122588158, 0.052938319742679596, -0.01918588951230049, -0.036076273769140244, 0.04219762235879898, 0.004095068201422691, -0.023450996726751328, -0.007765042595565319, 0.0056502022780478, -0.01544506661593914, -0.026214104145765305, 0.020843755453824997, 0.010315604507923126, 0.004024219233542681, -0.007382458541542292, 0.02374856173992157, -0.02152390591800213, 0.00546599505469203, -0.0017898210790008307, -0.03046504035592079, -0.01655030995607376, -0.021637262776494026, 0.017173780128359795, 0.01055649109184742, 0.011640478856861591, -0.014835766516625881, 0.025137200951576233, 0.023989448323845863, -0.001784507418051362, -0.0004839867469854653, -0.016890384256839752, -0.0019572016317397356, -0.016663668677210808, 0.0027666506357491016, 0.008232645690441132, 0.04860236495733261, -0.027390196919441223, -0.0046335202641785145, 0.04987764731049538, -0.006248875521123409, -0.0640474334359169, 0.009011983871459961, 0.005295957438647747, 0.02794281765818596, -0.010620255023241043, 0.018179835751652718, 0.00078907998977229, 0.011746753007173538, 0.01696123369038105, -0.027815289795398712, -0.0075524961575865746, -0.001132697332650423, 0.008473532274365425, -0.03443257883191109, 0.018194004893302917, 0.013858051039278507, -0.011824686080217361, 0.018364042043685913, 0.02935979701578617, 0.0068369219079613686, -0.013723437674343586, 0.0060327863320708275, -0.024740446358919144, 0.032222092151641846, -0.0017056879587471485, 0.06727814674377441, 0.052938319742679596, -0.028495440259575844, -0.04778051748871803, -0.027730271220207214, -0.03718151897192001, -0.010513980872929096, 0.018774965777993202, -0.01207265816628933, -0.0206878874450922, -0.008721503429114819, 0.000962659833021462, 0.020843755453824997, 0.013014948926866055, 0.0027701931539922953, -0.016139386221766472, -0.00394982798025012, 0.02294088341295719, -0.03324231877923012, 0.03584956005215645, 0.025023842230439186, 0.0044103460386395454, 0.014439011923968792, -0.011357083916664124, -0.035254426300525665, 0.028722155839204788, 0.01621023565530777, -0.03584956005215645, -0.0019040650222450495, -0.010237670503556728, -0.06308388710021973, -0.04860236495733261, -0.038230083882808685, -0.029643192887306213, -0.015374218113720417, -0.033327337354421616, 0.024244504049420357, 0.007488731760531664, 0.008962390013039112, 0.015685953199863434, -0.01378720160573721, -0.012051403522491455, 0.007680024020373821, 0.033384017646312714, 0.004438685718923807, -0.0028711529448628426, -0.01452403049916029, -0.024697937071323395, 0.01414853148162365, -0.014431927353143692, 0.011640478856861591, 0.007977589964866638, 0.011137451976537704, 0.05531884357333183, -0.01851991005241871, 0.05021772161126137, -0.04948089271783829, -0.028552118688821793, -0.010655678808689117, -0.01618189550936222, -0.00867899414151907, 0.01263944897800684, -0.03684144467115402, 0.056764163076877594, -0.015034142881631851, -0.005249905865639448, -0.06965866684913635, -0.0244287122040987, -0.0023468707222491503, -0.008615230210125446, 0.007672938983887434, -0.024386201053857803, -0.013829710893332958, 0.052909981459379196, 0.008601060137152672, 0.011286234483122826, 0.010882395319640636, -0.029643192887306213, -0.005568725988268852, -0.0028481269255280495, 0.0340074859559536, 0.02671004645526409, 0.05123794823884964, 0.027701931074261665, -0.045428335666656494, 0.019015852361917496, 0.01851991005241871, -0.02563314326107502, 0.023181769996881485, 0.02380524016916752, -0.004892118740826845, 0.009770067408680916, 0.026511669158935547, 0.025831520557403564, 0.04381297901272774, -0.020815415307879448, -0.020645378157496452, 0.019044192507863045, 0.0019324045861139894, -0.005490791983902454, -0.0016481232596561313, 0.03621797263622284, 0.025831520557403564, 0.0452016182243824, 0.00033874643850140274, 0.0021573498379439116, -0.0026072405744343996, -0.02107047289609909, 0.0040525589138269424, 0.049140818417072296, -0.019710171967744827, -0.03193869814276695, 0.0020245080813765526, 0.0009971987456083298, 0.0010538778733462095, 0.02070205844938755, 0.0003580084885470569, -0.05095455050468445, -0.029954927042126656, 0.039363667368888855, -0.02380524016916752, 0.01771223358809948, -0.005543929059058428, -0.0377766489982605, 0.006142602302134037, -0.01625274494290352, 0.029643192887306213, -0.03990211710333824, -0.012908674776554108, -0.010032208636403084, -0.013489636592566967, -0.008884456008672714, 0.014637389220297337, 0.061553552746772766, 0.008211391046643257, -0.03987377882003784, -0.030776776373386383, 0.03318563848733902, 0.0023468707222491503, -0.040157172828912735, -0.05832283943891525, 0.004562671296298504, -0.010676933452486992, 0.04095068201422691, -0.05506378784775734, -0.028367912396788597, 0.025930708274245262, -0.0004977137432433665, -0.010995754040777683, -0.018264854326844215, -0.0011495238868519664, 0.041715849190950394, 0.03514106944203377, 0.00809803232550621, -0.017598874866962433, -0.005508504342287779, 0.020078586414456367, 0.032165415585041046, 0.005072783213108778, 0.010180991142988205, 0.01147752720862627, 0.011165791191160679, -0.04783719778060913, 0.06518101692199707, 0.019710171967744827, -0.012674873694777489, -0.021566415205597878, -0.00010333980753784999, 0.002865839283913374, 0.0007943936507217586, -0.027588574215769768, 0.04591010883450508, 0.0281978752464056, -0.03196703642606735, 0.016295254230499268, 0.005150717217475176, 0.009394568391144276, 0.021963167935609818, -0.008997813798487186, -0.010705273598432541, 0.045031581073999405, 0.008657739497721195, 0.010641509667038918, -0.02756023406982422, 0.011909705586731434, 0.025009673088788986, 0.017613044008612633, 0.0019536593463271856, -0.011335829272866249, -0.020447000861167908, 0.017414666712284088, 0.0018526995554566383, 0.011973469518125057, -0.013496721163392067, 0.03548114374279976, -0.00016361674352083355, -0.024556240066885948, 0.009259955026209354, 0.0016729204216971993, 0.03267552703619003, 0.035282768309116364, -0.014424841850996017, -0.025902369990944862, -0.00716636935248971, -0.04443645104765892, -0.008289325051009655, -0.007609175052493811, -0.020177775993943214, 0.020588699728250504, 0.02523638866841793, 0.021608924493193626, 0.022544128820300102, -0.002757794689387083, -0.01738632842898369, -0.023082582280039787, 0.017117101699113846, -0.004385548643767834, -0.02825455367565155, 0.004158832132816315, -0.019086701795458794, 0.04038389027118683, -0.05588563531637192, 0.023677712306380272, -0.024697937071323395, -0.018534081056714058, 0.03276054561138153, 0.022374091669917107, -0.03363907337188721, -0.01415561605244875, -0.018307363614439964, 0.014254804700613022, 0.013801371678709984, 0.017513856291770935, -0.015671784058213234, 0.0018473858945071697, -0.017570534721016884, 0.014807426370680332, 0.006599578075110912, -0.05682084336876869, 0.02710680104792118, 0.02673838660120964, -0.06705142557621002, 0.004591010510921478, 0.0048637790605425835, -0.05741597339510918, -0.031456924974918365, -0.02794281765818596, -0.021396376192569733, -0.04075230658054352, 0.0030447328463196754, -0.019724342972040176, -0.0414041168987751, -0.04100736230611801, -0.05381684750318527, 0.017528025433421135, -0.011768007650971413, 0.002557646483182907, -0.02826872281730175, 0.037549931555986404, 0.0045059919357299805, 0.01737215742468834, -0.0023185312747955322, 0.014311484061181545, 0.018633268773555756, -0.025137200951576233, -0.0028994923923164606, 0.0008382314117625356, 0.007580835372209549, 0.0014745433581992984, -0.006574780680239201, 0.014446097426116467, -0.017910609021782875, -0.017499685287475586, 0.0024761701934039593, 0.011881365440785885, -0.021254679188132286, -0.01166881900280714, -0.021027961745858192, -0.01731547899544239, 0.0012522548204287887, -0.01778308115899563, -0.004753963090479374, 0.03165530040860176, 0.01055649109184742, 0.008849031291902065, 0.012731553055346012, -0.024726277217268944, 0.003540675388649106, 0.014920785091817379, 0.011987638659775257, -0.014304399490356445, -0.027801120653748512, 0.03443257883191109, 0.011208300478756428, -0.029643192887306213, 0.01660699024796486, 0.01915755122900009, 0.00830349512398243, -0.023989448323845863, -0.011796346865594387, 0.03091847337782383, 0.038655176758766174, 0.020461171865463257, -0.003971082624047995, 0.002523993141949177, -0.0244428813457489, -0.014963294379413128, 0.009755897335708141, -0.022444941103458405, -0.013872220180928707, -0.026568349450826645, -0.005019646603614092, -0.01487827580422163, -0.027744440361857414, 0.0005929169710725546, -0.04035555198788643, 0.008622314780950546, -0.0006495961570180953, 0.01589849963784218, 0.0015418498078361154, 0.029671533033251762, -0.04931085556745529, -0.0003340969851706177, -0.023649372160434723, 0.025477275252342224, -0.009323718957602978, 0.0017986772581934929, 0.00845227763056755, -0.009089917875826359, 0.04103570058941841, 0.03933532536029816, 0.015005803667008877, 0.006089465692639351, 0.048432327806949615, -0.06546441465616226, 0.000298451108392328, 0.016436951234936714, 0.040922343730926514, -0.006769615225493908, 0.03630299121141434, -0.0057104239240288734, 0.016748687252402306, 0.0169045552611351, -0.0067448182962834835, -0.02530723810195923, 0.0024106348864734173, -0.002166206017136574, 0.03267552703619003, -0.008409768342971802, 0.0075312415137887, -0.016833705827593803, -0.016663668677210808, -0.021679772064089775, 0.0033387558069080114, 0.009571690112352371, -0.00406672852113843, 0.010506896302103996, 0.01765555329620838, -0.0338941290974617, 0.01778308115899563, -0.02713514119386673, -0.04117739945650101, -0.043529581278562546, 0.009366228245198727, -0.0053172120824456215, 0.005419943016022444, -0.00042465078877285123, 0.01415561605244875, -0.039788760244846344, 0.016451122239232063, 0.02856628969311714, 0.014651559293270111, 0.0031226666178554296, -0.003409604774788022, 0.005207396578043699, -0.01961098425090313, -0.025151370093226433, -0.004484737291932106, 0.03545280545949936, -0.0009724015835672617, 0.01579931192100048, -0.033043939620256424, 0.02343682572245598, 0.007871315814554691, 0.0016118132043629885, -0.017938949167728424, -0.00724076060578227, 0.011045347899198532, -0.02671004645526409, 0.007453307509422302, 0.0034839962609112263, -0.002176833339035511, -0.009529180824756622, -0.005264075472950935, 0.024187825620174408, -0.006716478615999222, -0.032222092151641846, -0.03514106944203377, -0.018335703760385513, 0.003331671003252268, 0.007099062670022249, 0.012908674776554108, -0.016422782093286514, -0.001067162025719881, -0.010620255023241043, -0.018647437915205956, 0.022331582382321358, -0.00197491399012506, 0.007736703380942345, -0.0008780839270912111, 0.0005543928709812462, -0.03454593941569328, -0.011796346865594387, -0.016139386221766472, -0.028424590826034546, -0.03196703642606735, 0.028948873281478882, -0.013432957231998444, 0.005292415153235197, 0.02899138256907463, -0.00491337338462472, 0.0019412606488913298, -0.03055005893111229, 0.015190010890364647, -0.001731370692141354, -0.003850639332085848, -0.022161545231938362, 0.0528533011674881, -0.015104992315173149, 0.025123029947280884, 0.001911149942316115, 0.014488606713712215, -0.026936763897538185, -0.01373052317649126, 0.047327086329460144, -0.02417365461587906, -0.006964449770748615, -0.007396628148853779, -0.02070205844938755, 0.003425545757636428, -0.030266663059592247, -0.009734642691910267, -0.020121095702052116, -0.02336597815155983, 0.03964706137776375, -0.009557520970702171, -0.0029526292346417904, 0.022133205085992813, -0.012178931385278702, 0.014679898507893085, -0.0048248120583593845, -0.0377199724316597, 0.003074843669310212, 0.016351932659745216, 0.012837826274335384, 0.014042258262634277, -0.041517473757267, 0.0226008091121912, -0.014431927353143692, 0.00028538834885694087, 0.016706177964806557, 0.04225430265069008, -0.026582518592476845, 0.014821596443653107, 0.0018367585726082325, 0.00031682755798101425, -0.02642665058374405, 0.034489259123802185, -0.023125091567635536, -0.012313543818891048, -0.009762982837855816, -0.031201869249343872, 0.020206114277243614, -0.012894505634903908, -0.01581348106265068, -0.007842976599931717, -0.0047291661612689495, 0.017258798703551292, 0.012313543818891048, -0.012122252024710178, -0.01337627787142992, 0.008586890064179897, -0.04364294186234474, 0.01772640272974968, -0.022090695798397064, 0.03885355219244957, 0.02901972271502018, 0.013057458214461803, 0.04259437695145607, 0.003754993434995413, -0.006461422424763441, 0.04474818333983421, -0.006950280163437128, 0.014977463521063328, -0.01579931192100048, -0.03057839907705784, 0.038655176758766174, -0.015459236688911915, -0.0008678993908688426, -0.007446222472935915, 0.010067633353173733, 0.006758987903594971, -0.006535813678056002, -0.008615230210125446, 0.006415370851755142, 0.049565911293029785, -0.0017340275226160884, 0.023635203018784523, 0.016380272805690765, -0.007580835372209549, -0.0376066118478775, 0.01842072233557701, 0.011222470551729202, 0.01657865010201931, 0.01055649109184742, 0.016663668677210808, 0.03264718875288963, 0.026199935004115105, 0.0049594249576330185, -0.04072396457195282, -0.03440424054861069, 0.0226008091121912, 0.016111046075820923, 0.016451122239232063, 0.007417883258312941, 0.022416600957512856, -0.019115041941404343, 0.013071627356112003, 0.032958921045064926, -0.005515589378774166, 0.03128688782453537, -0.00887028593569994, 0.011952214874327183, 0.029189759865403175, 0.007262015249580145, 0.007835892029106617, 0.024768786504864693, -0.027999497950077057, 0.04500323906540871, -0.020574528723955154, -0.001651665661484003, 0.00923161581158638, -0.010917820036411285, -0.020602868869900703, -0.0048602367751300335, 0.006528729107230902, -0.003182888263836503, -0.0049913073889911175, 0.0036841444671154022, -0.028353741392493248, 0.022076526656746864, -0.030209984630346298, 0.0026621485594660044, 0.010988669469952583, -0.01656447909772396, -0.02679506503045559, -0.013298343867063522, 0.005458910018205643, 0.003184659406542778, 0.03154194355010986, -0.012023063376545906, 0.02632746286690235, -0.015941008925437927, 0.013581739738583565, 0.018321532756090164, 0.02218988537788391, -0.012292289175093174, 0.006011531688272953, 0.018392382189631462, 0.02410280704498291, 0.0004711453802883625, -0.018945004791021347, 0.010180991142988205, 0.025548124685883522, -0.008154711686074734, 0.004403261002153158, 0.021254679188132286, -0.030833454802632332, 0.005040901247411966, 0.00705301109701395, 0.02866547740995884, 0.005845036823302507, 0.01621023565530777, 0.007920910604298115, 0.023295128718018532, 0.006638544611632824, -0.013999748975038528, -0.015955179929733276, 0.020532019436359406, 0.0010335088009014726, 0.006114262621849775, -0.0005459795938804746, 0.0009343202691525221, 0.0015223664231598377, 0.00031749176559969783, -0.005480164662003517, -0.04375629872083664, -0.007123860064893961, -0.006170941982418299, 0.00793508067727089, -0.009451247751712799, -0.004548501223325729, 0.006656256970018148, 0.025548124685883522, -0.01448152121156454, -0.008508956991136074, -0.009564605541527271, 0.0020794160664081573, -0.009855085983872414, 0.018165666610002518, 0.00021697484771721065, 0.011024093255400658, -0.009019068442285061, -0.011874280869960785, 0.01961098425090313, -0.027390196919441223, -0.05344843491911888, -0.05095455050468445, -0.0030447328463196754, -0.02792864851653576, 0.010081802494823933, 0.033327337354421616, -0.02180730178952217, -0.027588574215769768, 0.005551013629883528, -0.011690073646605015, 0.010216415859758854, 0.02447122149169445, -0.02107047289609909, 0.015657613053917885, 0.008601060137152672, 0.012986608780920506, -0.018930833786725998, 0.03310061991214752, -0.015218350104987621, 0.03908026963472366, -0.009451247751712799, 0.006635002326220274, -0.026242444291710854, -0.04284943267703056, -0.025363916531205177, 0.01429022941738367, -0.0009086375357583165, -0.019866039976477623, 0.006348064169287682, -0.005618320312350988, 0.007991759106516838, -0.018760796636343002, -0.02264331839978695, 2.2873688067193143e-05, -0.017017913982272148, -0.02262914925813675, -0.007920910604298115, 0.0011920332908630371, 0.03242047131061554, -0.016068536788225174, 0.014552370645105839, -0.02907640114426613, 0.03465929627418518, -0.030408361926674843, 0.009437077678740025, -0.007757958024740219, 0.025094691663980484, -0.0008245044155046344, -0.01731547899544239, 0.00315986224450171, 0.03276054561138153, -0.021608924493193626, 0.03842845931649208, 0.028155365958809853, -0.029473155736923218, -0.001937718247063458, 0.03511273115873337, 0.017556365579366684, -0.023989448323845863, 0.052229832857847214, -0.0032289400696754456, 0.006829836871474981, 0.019129211083054543, 0.004183629527688026, 0.015515916049480438, 0.004690199159085751, -0.0016401527682319283, 0.03244880959391594, 0.04361460357904434, 0.010620255023241043, 0.0564807690680027, -0.006011531688272953, 0.01963932439684868, 0.04367128014564514, -0.013489636592566967, -0.02709263190627098, -0.0061638569459319115, -0.01001095399260521, -0.016876215115189552, -0.01878913678228855, -0.01190262008458376, -0.05095455050468445, 0.024230334907770157, -0.015331708826124668, 0.025774840265512466, -0.03871185705065727, 0.04786553606390953, -0.00904740858823061, -0.004272190388292074, -0.0018544708145782351, 0.001757939113304019, 0.010946160182356834, -0.010903650894761086, 0.023564353585243225, -0.0031899730674922466, -0.01769806258380413, 0.005239278543740511, -0.03720985725522041, -0.02859462797641754, 0.0020776449237018824, 0.02856628969311714, -0.027701931074261665, 0.03210873529314995, 0.054440319538116455, 0.006355149205774069, -0.0037124839145690203, -0.0282828938215971, -0.008069693110883236, 0.0016817764844745398, 0.02338014729321003, 0.011364168487489223, -0.006539356429129839, -0.03431922197341919, 0.025080520659685135, -0.016734518110752106, -0.015572595410048962, 0.0003754993376787752, 0.023592693731188774, -0.013532145880162716, 0.004640604835003614, -0.00032413387089036405, -0.003565472550690174, 0.011321659199893475, 0.01152003649622202, -0.009352059103548527, 0.009798407554626465, 0.02379107102751732, 0.007658769376575947, 0.02298339270055294, 0.012547345831990242, -0.011045347899198532, 0.0006650943541899323, -0.0069679925218224525, 0.038570158183574677, 0.01920006051659584, 0.03692646324634552, -0.021963167935609818, -0.014176870696246624, -0.02522221952676773, 0.017910609021782875, -0.00490983109921217, -0.04752546176314354, 0.009699218906462193, -0.011562545783817768, 0.006089465692639351, 0.01772640272974968, 0.02631329372525215, 0.013886390253901482, 0.0245137307792902, 0.05359013006091118, 0.028226213529706, -0.0377199724316597, -0.0030146220233291388, -0.008027183823287487, -0.02153807505965233, 0.015104992315173149, 0.010634424164891243, -0.0023787529207766056, 0.001731370692141354, 0.006270130164921284, 0.02563314326107502, -0.0008218475850299001, -0.016337763518095016, -0.019299248233437538, -0.000948490051086992, -0.006411828100681305, -0.010506896302103996, 0.012108081951737404, 0.027418537065386772, -0.0011388965649530292, 0.0014772001886740327, 0.02788613922894001, 0.04038389027118683, 0.030011607334017754, -0.007765042595565319, -0.012844910845160484, -0.014446097426116467, 0.013992663472890854, -0.04610848426818848, 0.008048438467085361, 0.010485641658306122, 0.008062608540058136, 0.00045697559835389256, -0.00041668026824481785, -0.04248102009296417, 0.00668813893571496, 0.009182021021842957, -0.021750621497631073, -1.3913789189246017e-05, 0.005728135816752911, 0.005547471344470978, 0.005508504342287779, 0.006596035324037075, -0.017598874866962433, -0.018718287348747253, -0.0058946311473846436, 0.022714167833328247, 0.0024885686580091715, 0.011137451976537704, 0.011031178757548332, 0.010315604507923126, -0.02342265658080578, -0.02332346886396408, -0.0028729240875691175, 0.032590508460998535, -0.05191809684038162, 0.03168364241719246, 0.025874029844999313, 0.0031775746028870344, 0.020220285281538963, 0.011987638659775257, -0.004644147586077452, -0.03930698707699776, -0.009663794189691544, 0.044663164764642715, 0.01965349353849888, 0.02033364400267601, 0.011505866423249245, 0.005508504342287779, -0.01922840066254139, 0.01470823772251606, 0.008353088982403278, 0.038966912776231766, -0.013468381948769093, 0.0141060221940279, -0.01653614081442356, -0.0011946901213377714, -0.011626309715211391, -0.0018349873134866357, 0.028849683701992035, -0.018746627494692802, 0.015175840817391872, 0.005565183702856302, -0.0074674771167337894, 0.028367912396788597, 0.010882395319640636, -0.019001683220267296, -0.019398437812924385, -0.04029887169599533, -0.04197090491652489, -0.04630685970187187, -0.005427028052508831, 0.040837325155735016, -0.016862045973539352, -0.016408612951636314, 0.008232645690441132, 0.008912795223295689, 0.02564731240272522, -0.012363138608634472, 0.017088761553168297, 0.016649499535560608, 0.022161545231938362, 0.008948219940066338, 0.004211968742311001, 0.008168881759047508, 0.023819411173462868, 0.008183051832020283, 0.0013372735120356083, 0.002226427663117647, 0.007003416772931814, -0.008508956991136074, -0.014219379983842373, -0.0013868678361177444, 0.010669848881661892, -0.01765555329620838, 0.016436951234936714, -0.048092253506183624, -0.0035867271944880486, -0.011080772615969181, -0.010329773649573326, -0.005175514612346888, -0.017542194575071335, 0.005324297118932009, -0.0022193428594619036, -0.0003553516580723226, 0.011916790157556534, -0.031173529103398323, -0.01075486745685339, -0.013631334528326988, -0.0029296032153069973, 0.013801371678709984, -0.02034781314432621, -0.026525840163230896, -0.002573587466031313, -0.005267618224024773, 0.0023185312747955322, -0.032278772443532944, 0.0301533043384552, -0.007439137902110815, 0.006209908984601498, 0.016082707792520523, -0.023266788572072983, -0.017556365579366684, -0.007116775028407574, 0.011201215907931328, -0.013255834579467773, -0.020503681153059006, -0.034857675433158875, 0.00649684714153409, -0.02372022159397602, -0.008395598269999027, 0.005774187855422497, -0.014198125340044498, 0.07254930585622787, 0.025052182376384735, 0.025930708274245262, 0.00031948438845574856, -0.01528919953852892, -0.009373313747346401, -0.0004222153511364013, -0.022359922528266907, -0.027418537065386772, 0.009373313747346401, -0.028410421684384346, 0.01038645301014185, 0.03440424054861069, 0.011286234483122826, -0.02036198228597641, -0.0034060622565448284, 0.0338374488055706, -0.009196191094815731, -0.027716102078557014, -0.013539230450987816, -0.010336859151721, -0.018633268773555756, 0.0008346889517270029, -0.002033364260569215, -0.012894505634903908, 0.024216163903474808, 0.013425872661173344, -0.02000773884356022, -0.013050372712314129, -0.003677059430629015, -0.017924780026078224, -0.0170037429779768, -0.027631083503365517, 0.004870864097028971, -0.054468657821416855, -0.021311357617378235, -0.008898626081645489, 0.0020351356361061335, -0.006454337388277054, -0.0031297514215111732, 0.005427028052508831, 0.00724076060578227, -0.014424841850996017, 0.013170816004276276, 0.006656256970018148, -0.03089013323187828, 0.01769806258380413, 0.01166173443198204, -0.0038258421700447798, 0.014920785091817379, -0.007658769376575947, -0.004258020780980587, 0.0150766521692276, 0.007956335321068764, -0.003985252231359482, 0.0002964584855362773, 0.02112715132534504, -0.016479460522532463, -0.013843880966305733, 0.058549556881189346, -0.017258798703551292, 0.005292415153235197, -0.025817349553108215, -0.01849157176911831, 0.0029402305372059345, 0.008565635420382023, -2.2749149138689972e-05, 0.005150717217475176, -0.011626309715211391, 0.0005340237985365093, 0.010761952959001064, -0.005214481148868799, 0.017613044008612633, 0.013213325291872025, 0.013206240721046925, 0.01300786342471838, -0.012008893303573132, -0.008218475617468357, -0.01548757590353489, -0.023110920563340187, -0.011640478856861591, -0.010110142640769482, 0.013666758313775063, 0.017825590446591377, 0.01805230788886547, 0.010315604507923126, 0.00352827669121325, -0.018009798601269722, -0.014580709859728813, 0.02115549147129059, 0.01616772636771202, -0.03344069421291351, 0.007814637385308743, -0.02150973491370678, 0.06665467470884323, 0.022487450391054153, 0.016777027398347855, 0.01812315732240677, -0.014056427404284477, 0.030663417652249336, 0.013985578902065754, 0.03616129606962204, 0.03267552703619003, -0.003925030585378408, 0.018222345039248466, 0.0071026054210960865, 0.006461422424763441, 0.032165415585041046, 0.022444941103458405, 0.02975655160844326, 0.006096550263464451, 0.012972439639270306, -0.0007567551219835877, 0.006585408002138138, -0.022813355550169945, -0.012986608780920506, 0.00197491399012506, -0.009366228245198727, 0.006730648223310709, -0.026540009304881096, 0.016026027500629425, -0.013432957231998444, -0.0029136622324585915, 0.001492255600169301, 0.03321398049592972, 0.013432957231998444, 0.02757440321147442, 0.010230585932731628, -0.019072532653808594, 0.05792608484625816, -0.0018810391193255782, 0.0207445677369833, -0.0012035461841151118, -0.003914403263479471, -0.008877371437847614, 0.005501419305801392, 0.0005535072996281087, -0.022586639970541, -0.020928774029016495, -0.006943195126950741, 0.0029685702174901962, -0.004413888324052095, -0.013418787159025669, -0.012731553055346012, -0.013014948926866055, -0.01769806258380413, -0.015005803667008877, -0.012660703621804714, -0.042424339801073074, 0.010251840576529503, -0.02183564007282257, 0.0006473821122199297, -0.023819411173462868, 0.016011858358979225, -1.1519870213305694e-06, 0.029189759865403175, -0.007864231243729591, -0.04324618726968765, -0.021297188475728035, 0.008324749767780304, -0.01851991005241871, -0.012667789123952389, 0.0013036202872171998, 0.026582518592476845, -0.0033068738412111998, -0.002683403203263879, -0.00583795178681612, -0.007099062670022249, -0.004948797635734081, 0.005682084243744612, 0.02751772478222847, -0.0022600810043513775, 0.022019848227500916, -0.02030530385673046, 0.013461296446621418, -0.012504836544394493, -0.008586890064179897, -0.013751777820289135, -0.00997552927583456, 0.01244107261300087, 0.00668105436488986, -0.02305424213409424, 0.01588433049619198, 0.0036699746269732714, -0.01584182120859623, -0.00724076060578227, 0.02031947299838066, 0.020220285281538963, -0.03278888389468193, -0.016351932659745216, -0.016380272805690765, -0.0038258421700447798, 0.003503479529172182, -0.003172260941937566, -0.007545411121100187, 0.01579931192100048, 0.023110920563340187, -0.020078586414456367, 0.015147501602768898, -0.007290354929864407, -0.0376066118478775, -0.000507898279465735, 0.0038293846882879734, -0.018590759485960007, -0.021013792604207993, 0.008027183823287487, -0.005161344539374113, -0.014424841850996017, -1.8570168322185054e-05, 0.0014639160363003612, -0.009323718957602978, -0.006914855446666479, 0.020872095599770546, 0.0012832512147724628, -0.004265105817466974, 0.006886516232043505, -0.015090822242200375, 0.013631334528326988, 0.010783207602798939, 0.0023964650463312864, -0.001539192977361381, 0.0032590508926659822, -0.001882810378447175, 0.001179634709842503, 0.017924780026078224, 0.02073039673268795, -0.012419817969202995, 0.0021856895182281733, -0.000673507631290704, -0.000968859123531729, 0.04375629872083664, 0.005232193507254124, -0.013716353103518486, -0.015317538753151894, -0.004743335768580437, -0.01955430395901203, 0.014474436640739441, -0.013270004652440548, 0.0016286397585645318, 0.010294349864125252, -0.022827524691820145, 0.011952214874327183, 0.02415948547422886, -0.03440424054861069, -0.002166206017136574, 0.020234454423189163, 0.011470441706478596, -0.006996331736445427, 0.0022777931299060583, -0.011378338560461998, 0.016139386221766472, 0.01147752720862627, 0.009536266326904297, -0.0002783034578897059, 0.039051931351423264, -0.015657613053917885, -0.006149687338620424, -0.02377690188586712, 0.016323594376444817, 0.009189106523990631, 0.022728336974978447, -0.03729487583041191, -0.014963294379413128, 0.0075383260846138, -0.0015489347279071808, 0.019837699830532074, -0.017017913982272148, -0.008714418858289719, -0.0013239893596619368, -0.002017423277720809, 0.031116850674152374, -0.010471471585333347, 0.03199537843465805, 0.004640604835003614, -0.03276054561138153, -0.020106926560401917, -0.019384266808629036, 0.010613169521093369, 0.039760418236255646, 0.01851991005241871, -0.025859858840703964, -0.01055649109184742, 0.0013620706740766764, 0.019710171967744827, 0.012837826274335384, -0.009302464313805103, -0.015530085191130638, 0.01577097177505493, 0.003329899627715349, 0.012837826274335384, 0.018222345039248466, -0.007786297705024481, 0.010145566426217556, -0.005136547610163689, -0.012200186029076576, 0.011775092221796513, 0.006220536306500435, -0.04440810903906822, 0.033780768513679504, -0.005047986283898354, 0.006677511613816023, 0.010336859151721, 0.011215385980904102, -0.026525840163230896, -0.01340461801737547, -0.007956335321068764, -0.039760418236255646, 0.0005260533071123064, 0.012136422097682953, 0.023068411275744438, -0.007616260088980198, -0.01730130799114704, 0.0188458152115345, -0.0140989376232028, 6.26570254098624e-05, 0.0029402305372059345, -0.030351681634783745, 0.007658769376575947, 0.004364293999969959, 0.0028959501069039106, -0.008154711686074734, 0.007081350777298212, 0.016337763518095016, -0.010358113795518875, 0.002557646483182907, 0.009805492125451565, 0.011272064410150051, -0.005632489919662476, 0.026540009304881096, -0.017074592411518097, 0.0016817764844745398, -0.007403713185340166, 0.018534081056714058, 0.005366806406527758, 0.025874029844999313, -0.01738632842898369, -0.043557923287153244, -0.02040449157357216, 0.008579805493354797, -0.00025483474018983543, -0.0010565347038209438, 0.017145441845059395, -0.0038718939758837223, -0.0021272392477840185, -0.008409768342971802, 0.01336210872977972, -0.0011645792983472347, -0.010485641658306122, -0.0033635529689490795, 0.00046494611888192594, 0.016096876934170723, -0.001300077885389328, -0.018633268773555756, -0.03831510245800018, 0.01299369428306818, -0.00564665999263525, 0.025335578247904778, 0.009812576696276665, -0.03094681352376938, -0.005037358961999416, 0.00789965596050024, -0.006946737878024578, 0.017428837716579437, 0.00698570441454649, -0.0006615518941543996, 0.03630299121141434, 0.010698188096284866, 0.01001095399260521, 0.006220536306500435, 0.0038010452408343554, -0.010733612813055515, -0.0019465744262561202, 0.002984511200338602, -0.005795442499220371, 0.01694706454873085, 0.01738632842898369, -0.010166822001338005, 0.007779212668538094, 0.020418662577867508, 0.015303368680179119, 0.0069715348072350025, 0.018279023468494415, 0.020050248131155968, -0.028934704139828682, -0.014793256297707558, 0.011952214874327183, 0.012164761312305927, 0.008296409621834755, 0.003158091101795435, 0.026114916428923607, 0.012150591239333153, 0.009408737532794476, -0.04712870717048645, -0.023450996726751328, -0.013468381948769093, -0.01585599035024643, 0.006826294586062431, 0.02372022159397602, 0.009217445738613605, 0.03134356811642647, 0.03922196850180626, -0.005494334734976292, 0.009075747802853584, -0.026653368026018143, -0.016068536788225174, 0.005774187855422497, -0.03091847337782383, 0.004771675448864698, -0.0024354320485144854, 0.008353088982403278, 0.008480616845190525, -0.009132427163422108, -0.003622151678428054, -0.009762982837855816, -0.000999855576083064, 0.008346004411578178, -0.029104741290211678, -0.016436951234936714, -0.02907640114426613, -0.010705273598432541, -0.014311484061181545, 0.008246815763413906, 0.004690199159085751, -0.0006898914580233395, 0.0027914477977901697, -0.0007270871428772807, 0.02479712665081024, 0.013248750008642673, 0.0006580094341188669, -0.007793382275849581, -0.037691630423069, 0.031825341284275055, -0.042821094393730164, 0.015969349071383476, -0.002910119714215398, 0.018165666610002518, -0.0019837701693177223, 0.029671533033251762, -0.015374218113720417, 0.02108464203774929, -0.006110720336437225, 0.016521969810128212, 0.001757939113304019, -0.037890009582042694, -0.03684144467115402, 0.00406318623572588, 0.013680928386747837, 5.158687781658955e-05, -0.02482546493411064, -0.014389418065547943, -0.0023309297394007444, 0.0032856191974133253, 0.0009591173729859293, 0.027956988662481308, -0.026270782575011253, -0.018604928627610207, -0.008785267360508442, -0.025434765964746475, -0.009309549815952778, 0.009451247751712799, -0.007396628148853779, -0.025009673088788986, 0.0015400786651298404, 0.007212420925498009, -0.0064791347831487656, 0.019851870834827423, -0.015133331529796124, 0.01171841286122799, 0.041347436606884, -0.03290224447846413, 0.014021003618836403, -0.02342265658080578, 0.002717056544497609, -0.010414793156087399, -0.028438759967684746, -0.013510891236364841, 0.00424739345908165, -0.02223239466547966, -0.016366103664040565, -0.01918588951230049, 0.00981966219842434, -0.01772640272974968, 0.01622440479695797, 0.027361856773495674, 0.022473281249403954, -0.018364042043685913, 0.03264718875288963, 0.0007324008038267493, 0.0301249660551548, 0.009918849915266037, -0.008020099252462387, -0.0025930709671229124, -0.019384266808629036, 0.029983267188072205, -0.008721503429114819, -0.011151622049510479, -0.013326684013009071, 0.012058488093316555, -0.022515790536999702, 0.008346004411578178, 0.013220410794019699, -0.020177775993943214, -0.016862045973539352, -0.015416727401316166, 2.0175339159322903e-05, -0.006103635299950838, -0.01995105855166912, -0.014176870696246624, 0.007772127632051706, -0.031825341284275055, 0.004668944515287876, -0.0006327694864012301, -0.0008825120166875422, -0.02720598876476288, 0.013808456249535084, -0.02532140724360943, -0.018661608919501305, 0.012540260329842567, 0.023635203018784523, -0.0018332160543650389, -0.010436047799885273, -0.013128306716680527, 0.002336243400350213, 0.026908423751592636, -0.014722407795488834, 0.014934954233467579, -0.03584956005215645, 0.003818757366389036, 0.03052171878516674, -0.01963932439684868, -0.01373760774731636, -0.0006385259912349284, 0.03655804693698883, 0.010769037529826164, -0.00018310020095668733, -0.02302590198814869, -0.026284953579306602, -0.00017867214046418667, 0.0014807427069172263, 0.0029561715200543404, 0.006323267240077257, 0.00830349512398243, -0.0005411087186075747, -0.014623219147324562, -0.008693164214491844, 0.012561514973640442, -0.0014807427069172263, 0.009097002446651459, -0.001195575692690909, -0.011052433401346207, -0.005037358961999416, -0.010485641658306122, -0.01487827580422163, -0.00325019471347332, -0.016295254230499268, -0.0024602292105555534, 0.008586890064179897, -0.009848001413047314, 0.008168881759047508, 0.014580709859728813, -1.2502345271059312e-05, -0.010662764310836792, -0.019341757521033287, 0.0068369219079613686, 0.004853151738643646, 0.0061603146605193615, 0.01359590981155634, 0.0016729204216971993, 0.013617164455354214, -0.003744365880265832, 0.0008723274804651737, -0.0036186091601848602, -0.012115167453885078, -0.004746878519654274, -0.00594422547146678, 0.006815667264163494, -0.018349872902035713, -0.01093907468020916, -0.01359590981155634, 0.08048438280820847, 0.011867196299135685, 0.003652262268587947, -0.006695223972201347, 0.0067483605816960335, -0.020574528723955154, 0.00039896805537864566, 0.022855864837765694, 0.01585599035024643, 0.00432532699778676, -0.011583800427615643, -0.007417883258312941, 0.0054093156941235065, 0.010698188096284866, -0.0169754046946764, 0.005504962056875229, 0.018279023468494415, 0.013397532515227795, -9.492649405729026e-05, 0.02190648950636387, 0.00358495581895113, -0.011505866423249245, -0.016125217080116272, 0.014736577868461609, -0.0029774263966828585, 0.013935985043644905, -0.004346582107245922, 0.022898374125361443, 0.0065216440707445145, 0.016479460522532463, -0.0011362397344782948, -0.0032147702295333147, -0.011470441706478596, -0.007658769376575947, 0.0023025902919471264, 0.009068663232028484, 0.0009715159540064633, 0.029303118586540222, -0.0034946235828101635, 0.0017428837018087506, -0.00831057969480753, -0.005480164662003517, 0.01806647703051567, 0.037946686148643494, -0.013043288141489029, -0.0054093156941235065, -0.0054447404108941555, -0.0023468707222491503, -0.0006031015072949231, -0.007835892029106617, -0.01543089747428894, -0.020432831719517708, 0.003558387514203787, 0.012356053106486797, 0.005345551762729883, -0.017499685287475586, 0.015048312954604626, 0.0004556471831165254, 0.007977589964866638, -0.0016552081797271967, -0.032618846744298935, -0.002350413240492344, -0.010124311782419682, -0.012894505634903908, -0.005016104318201542, -0.026880083605647087, 0.00011435460328357294, -0.012193100526928902, 0.007219505961984396, -0.000962659833021462, -0.014679898507893085, 0.006231163628399372, 0.012561514973640442, -0.029586512595415115, -0.004495364613831043, 0.013680928386747837, -0.004420973360538483, 0.039420343935489655, 0.0338941290974617, 0.014219379983842373, 0.0030854709912091494, 0.006054040975868702, -0.025732330977916718, -0.013149561360478401, -0.013475466519594193, 0.0010529921855777502, 0.011038263328373432, -0.029954927042126656, 0.01207974273711443, -0.02448539063334465, -0.0032466521952301264, 0.0005123263108544052, 0.004056101199239492, 0.0207729060202837, -0.004219053778797388, 0.0005995590472593904, -0.009444162249565125, -0.019015852361917496, 0.021183829754590988, -0.016465291380882263, 0.0020776449237018824, 0.011413762345910072, -0.010825716890394688, -4.6079479943728074e-05, 0.003342298325151205, -0.008140542544424534, 0.018959173932671547, 0.0005566069157794118, -0.011236640624701977, 0.011938044801354408, 7.289690984180197e-05, -0.00831766426563263, -0.003673517145216465, -0.006436625495553017, -0.019681833684444427, 0.001690632663667202, 0.009543350897729397, -0.006263045594096184, -0.022813355550169945, -0.01805230788886547, -0.0017393412999808788, 0.007254930678755045, -0.001770337694324553, -0.01259693969041109, -0.005664371885359287, 0.006659799255430698, -0.009925935417413712, -0.0032820766791701317, -0.009996783919632435, 3.7610818253597245e-05, 1.2107971997465938e-05, 0.014807426370680332, 0.0017322563799098134, -0.010258925147354603, 0.017641384154558182, -0.0008333605364896357, -0.0049948496744036674, -0.004165917169302702, 0.023989448323845863, -0.01660699024796486, 0.010733612813055515, -0.0034468004014343023, 0.012745722196996212, 0.02265748754143715, -0.00014114435180090368, 0.002750709652900696, -0.009344973601400852, -0.02904806099832058, -0.0029774263966828585, -0.022161545231938362, 0.005320754833519459, -0.03961872309446335, -0.0033511545043438673, -0.01524669025093317, 0.005908800754696131, 0.010492726229131222, -0.024386201053857803, 0.02155224420130253, -0.014807426370680332, -0.007251387927681208, -0.006585408002138138, 0.005983192007988691, -0.008062608540058136, -0.003050046507269144, -0.00679441262036562, 0.008849031291902065, 0.017187951132655144, 0.01849157176911831, 0.007247845642268658, -0.00221580034121871, -0.010117227211594582, 0.01469406858086586, 0.01619606465101242, -0.021948998793959618, 0.0034166895784437656, 0.0027896766550838947, -0.011002838611602783, 0.00017169796046800911, -0.02678089588880539, 0.031853679567575455, -0.002029821975156665, -0.004045473877340555, 0.021934829652309418, 0.014651559293270111, 0.007580835372209549, -0.00679795490577817, 0.010577745735645294, -0.009663794189691544, -0.01450986135751009, -0.00023025902919471264, 0.0012566829100251198, 0.00978423748165369, 0.011427932418882847, 0.0009024382452480495, -0.01954013481736183, -0.012972439639270306, 0.02031947299838066, 0.020149435847997665, 0.010485641658306122, -0.019143380224704742, 0.009741728194057941, -0.00300930836237967, 0.010315604507923126, 0.010676933452486992, 0.005621862597763538, -0.03009662590920925, -0.019710171967744827, -0.02407446689903736, -0.019455116242170334, -0.014609049074351788, -0.026256613433361053, -0.021679772064089775, 0.010662764310836792, 0.0027383111882954836, -0.0025417055003345013, 0.007779212668538094, 0.01924256980419159, -0.005200311541557312, 0.02981323003768921, 0.00048575797700323164, 0.01528919953852892, -0.011406677775084972, 0.01694706454873085, -0.019044192507863045, -0.014849935658276081, 0.007159284316003323, 0.01524669025093317, 0.003395434934645891, 0.011378338560461998, -0.02634163200855255, 0.011682989075779915, -0.0024336606729775667, -0.016323594376444817, 0.041574154049158096, -0.00413757748901844, 0.03267552703619003, 0.01730130799114704, 0.0034379444550722837, 0.023280957713723183, -0.0027152851689606905, -0.016791196539998055, 0.007318694610148668, -0.000626570254098624, -0.012894505634903908, 0.0018757254583761096, -0.011328743770718575, 0.0024035500828176737, 0.004211968742311001, 0.0035141068510711193, -2.593181488919072e-05, -0.00039918944821693003, 0.010060547851026058, -0.007765042595565319, 0.011413762345910072, 0.012958269566297531, -0.012320629321038723, -0.011314574629068375, 0.004938170313835144, 0.00395337026566267, -0.02374856173992157, -0.00827515497803688, 0.013078712858259678, -0.009961359202861786, -0.008338918909430504, -0.00809803232550621, 0.028367912396788597, -0.03930698707699776, 0.013659673742949963, -0.008260984905064106, 0.009444162249565125, -0.0016197836957871914, -0.0026373513974249363, 0.012554430402815342, 0.01622440479695797, 0.002706429222598672, -0.003170489566400647, -0.00078907998977229, -0.004810642451047897, 0.008891540579497814, 0.015629274770617485, 9.354273061035201e-05, 0.009493757039308548, 0.007814637385308743, -0.028920533135533333, -0.00650038942694664, -0.0226008091121912, 0.019285079091787338, 0.005079868249595165, 0.0029898248612880707, -0.00631263991817832, 0.006627917289733887, -0.007779212668538094, 0.019426776096224785, -0.007042383775115013, -0.020914604887366295, 0.006659799255430698, 0.006121347658336163, 0.00046184647362679243, 0.020546190440654755, 0.0029915960039943457, -0.004931085743010044, 0.0065181017853319645, -0.008367259055376053, -0.03729487583041191, 0.007474562153220177, 0.009515011683106422, 0.012561514973640442, 0.0007899655611254275, -0.012604025192558765, 0.020234454423189163, 0.0032023717649281025, -0.0010591915342956781, -0.02149556577205658, -0.012802401557564735, -0.004197799134999514, -0.00791382510215044, 0.002440745709463954, 0.0338374488055706, -0.027248498052358627, 0.0026586060412228107, 0.0025700449477881193, 0.012689043767750263, 0.0009564605425111949, 0.012894505634903908, 0.004350124392658472, 0.011923874728381634, 0.013539230450987816, 0.014779087156057358, 0.025420596823096275, -0.033355675637722015, 0.007035298738628626, -0.008990729227662086, -0.024201994761824608, -0.0014701152686029673, 0.0017349132103845477, 0.012674873694777489, -0.007927995175123215, -0.008813606575131416, -0.018562419340014458, 0.009904680773615837, -0.010124311782419682, -0.029529834166169167, 0.0015763887204229832, -0.007757958024740219, 0.017882270738482475, 0.007729618344455957, 0.00612843269482255, -0.013340854085981846, 0.020532019436359406, 0.0032023717649281025, -0.01392181497067213, 0.014042258262634277, 0.024357862770557404, 0.01450986135751009, -0.0028693818021565676, -0.007821721956133842, 0.018647437915205956, 0.0043713790364563465, -0.010081802494823933, 0.015643443912267685, -0.011548375710844994, 0.012901590205729008, -0.004265105817466974, -0.005154259502887726, 0.01662115938961506, 2.9584964067908004e-05, 0.0013434728607535362, 0.0051790568977594376, -0.0377199724316597, -0.008161797188222408, -0.00431824242696166, -0.019525965675711632, -0.016876215115189552, -0.0020741024054586887, -0.023110920563340187, -0.00394982798025012, 0.0009148368262685835, -0.009274125099182129, -0.01959681510925293, -0.01924256980419159, 0.023068411275744438, -0.0026125542353838682, -0.008005929179489613, -0.009394568391144276, 0.0188316460698843, 0.021778961643576622, 0.031428586691617966, 0.009373313747346401, 0.023578524589538574, -0.024556240066885948, -0.007821721956133842, -0.006808582227677107, 0.000762511626817286, -0.0052251084707677364, -0.009982614777982235, 0.013014948926866055, -0.022388262674212456, 0.01358882524073124, -0.006064668297767639, 0.011371253058314323, 0.01772640272974968, 0.0025647312868386507, 0.00509403832256794, 0.02972821146249771, 0.0005318098119460046, -0.02040449157357216, 0.0030146220233291388, 0.020602868869900703, 0.01616772636771202, -0.0021856895182281733, -0.0029207472689449787, 0.0007279727724380791, -0.0112933199852705, 0.020050248131155968, 0.015643443912267685, -0.01037936843931675, 0.009883426129817963, -0.013503805734217167, 0.006656256970018148, 0.0053172120824456215, 0.01851991005241871, -0.019710171967744827, 0.027248498052358627, 0.00414111977443099, 0.008735673502087593, -0.006758987903594971, 0.023295128718018532, 0.013050372712314129, 0.00144089013338089, -0.0032944753766059875, -0.017230460420250893, -0.021594753488898277, -0.005547471344470978, 0.010988669469952583, -0.029161419719457626, -0.013447127304971218, 0.025491444393992424, -0.02941647544503212, -0.004661859478801489, 0.020560359582304955, -0.01847740076482296, -0.00083601736696437, -0.0008988957852125168, 0.008756928145885468, 0.025052182376384735, 0.009755897335708141, -0.006557068321853876, 0.019327588379383087, -0.012193100526928902, -0.021977338939905167, -0.015204180963337421, 0.025420596823096275, -0.005299500189721584, 0.0020634750835597515, -0.0032147702295333147, -0.01396432425826788, -0.0028357284609228373, -0.003436173079535365, 0.04976429045200348, -0.0283112321048975, 0.008020099252462387, -0.01734381914138794, 0.0049558826722204685, 0.005200311541557312, -0.02641248144209385, -0.0009520325111225247, 0.0032466521952301264, 0.013107052072882652, -0.0028888650704175234, -0.0033210436813533306, -0.01731547899544239, 0.008700248785316944, 0.014637389220297337, -0.006107178051024675, 0.007545411121100187, 0.011612139642238617, -0.02904806099832058, 0.014453181996941566, -0.004254478495568037, -0.0025541039649397135, -0.000650038942694664, -0.004668944515287876, -0.0015108534134924412, 0.0022724794689565897, 0.035254426300525665, -0.014665728434920311, 0.004761048126965761, 0.013092881999909878, 0.011690073646605015, 0.00904032401740551, 0.001359413843601942, -0.001778308185748756, 0.009153681807219982, -0.011647564359009266, 0.01548757590353489, -0.013482551090419292, -0.00432532699778676, 0.014949124306440353, -0.010599000379443169, 0.00031195671181194484, -0.012008893303573132, -0.006280757486820221, 0.003875436494126916, -0.004162374883890152, 0.019469285383820534, -0.007113232742995024, -0.015317538753151894, 0.017938949167728424, 0.020234454423189163, 0.016096876934170723, 0.005908800754696131, -0.0007363860495388508, -0.007180538959801197, 0.008260984905064106, 0.002357498276978731, 0.01663532853126526, -0.011803431436419487, 0.004753963090479374, 0.016380272805690765, 0.009996783919632435, -0.003158091101795435, -0.018959173932671547, 0.008657739497721195, 0.006989247165620327, -0.0012566829100251198, -0.00461226562038064, 0.029303118586540222, -0.0016109275165945292, 0.026950933039188385, -0.012136422097682953, -0.022444941103458405, 0.0029561715200543404, -0.005781272891908884, 0.014261890202760696, -0.005214481148868799, 0.009146597236394882, -0.0016879757167771459, 0.0006739504751749337, 0.04100736230611801, -0.009337889030575752, -0.0005752047291025519, 0.0020652462262660265, -0.006702309008687735, -0.011916790157556534, -0.012143506668508053, -0.019511794671416283, 0.0026993441861122847, 0.004049016162753105, -0.001872182940132916, -0.014467352069914341, -0.004970052279531956, 0.006904228124767542, 0.01528919953852892, 0.005019646603614092, 0.025477275252342224, -0.01922840066254139, -0.002392922528088093, -0.0016224405262619257, -0.016720347106456757, 0.01037228386849165, 0.0005304813967086375, -0.021750621497631073, -0.012051403522491455, 0.01093199010938406, -0.00649684714153409, 0.00016383815091103315, 0.019469285383820534, 0.006588950753211975, -0.0017189722275361419, 0.008700248785316944, -0.008069693110883236, -0.00022417044965550303, -0.007276185322552919, -0.010896565392613411, -0.0009298922377638519, 7.887478568591177e-05, -0.011817601509392262, -0.0019979397766292095, 0.00546599505469203, -0.0007005187799222767, 0.0008935821242630482, -0.030408361926674843, -0.008473532274365425, -0.011052433401346207, 0.009592944756150246, 0.015147501602768898, 0.002256538486108184, 0.0071982513181865215, 0.006957365199923515, -0.018179835751652718, 0.015204180963337421, -0.023082582280039787, -0.013022033497691154, 0.005905258469283581, 0.019313419237732887, -0.014864105731248856, -0.00031771318754181266, -0.002743624849244952, -0.020957114174962044, -0.03624631464481354, 0.001817275071516633, 0.02414531633257866, 0.0112933199852705, 0.0021272392477840185, -0.0015303369145840406, -0.0018934377003461123, -0.004587468225508928, -0.02530723810195923, -0.006659799255430698, -0.007116775028407574, -0.0068440064787864685, -0.012015978805720806, 0.031088510528206825, 0.0035371328704059124, 0.008593975566327572, -0.008296409621834755, 0.01170424371957779, -0.006107178051024675, 0.0140989376232028, -0.01337627787142992, -0.0066102053970098495, -0.008204306475818157, -0.00904032401740551, 0.03094681352376938, -0.013014948926866055, 0.014353993348777294, 0.008601060137152672, 0.009727558121085167, 0.01843489147722721, -0.011151622049510479, -0.012646534480154514, -0.005161344539374113, -0.0008510727784596384, -0.013999748975038528, 0.003267906839028001, -0.011626309715211391, -0.03726653754711151, 0.0014320339541882277, -0.0026710047386586666, -0.022813355550169945, -0.0034450292587280273, -0.009380398318171501, 0.004045473877340555, 0.006103635299950838, 0.015530085191130638, 0.01433982327580452, 0.019738512113690376, 0.008572720922529697, -0.005271160509437323, -0.001332845538854599, -0.015416727401316166, 0.030323341488838196, -0.022785015404224396, 0.012469411827623844, -0.0021467225160449743, -0.015501745976507664, 0.011427932418882847, -0.03284556418657303, 0.0038152148481458426, -0.009812576696276665, -0.01662115938961506, -0.032987263053655624, -0.01396432425826788, 0.0045024496503174305, -0.021665602922439575, -0.019327588379383087, 0.0006947623332962394, 0.01849157176911831, -0.005696253851056099, -0.020645378157496452, 0.0007350576343014836, 0.016493631526827812, -0.013688012957572937, 0.022799186408519745, 0.01015265192836523, -0.006734190974384546, 0.0046937414444983006, -0.01055649109184742, -0.00339720631018281, -0.03933532536029816, -0.008778182789683342, 0.0011725497897714376, -0.010811546817421913, 0.0014258347218856215, -1.672975668043364e-05, 0.008948219940066338, -0.006564153358340263, -0.023649372160434723, -0.014488606713712215, -0.005976107437163591, -0.020673718303442, -0.010492726229131222, -0.008792351931333542, -0.031825341284275055, 0.021708112210035324, -0.0023167601320892572, -0.014276059344410896, -0.019384266808629036, -0.020928774029016495, -0.012681958265602589, -0.013645503669977188, -0.012731553055346012, 0.008792351931333542, -0.009302464313805103, 0.023068411275744438, -0.018973343074321747, 0.01487827580422163, 0.0029791975393891335, -0.005519131664186716, -0.006588950753211975, 0.011973469518125057, 0.0063905734568834305, -0.003076614812016487, 0.014665728434920311, -0.019710171967744827, -0.023606862872838974, 0.014169786125421524, -0.0010653907665982842, -0.016408612951636314, 0.0026621485594660044, 0.006227620877325535, -0.001334616681560874, -0.010988669469952583, -6.049834337318316e-05, -0.005076325964182615, -0.013666758313775063, 0.005770645570009947, 0.00845936220139265, -0.007991759106516838, 0.0034698264207690954, 0.014920785091817379, -0.0030819284729659557, -0.020914604887366295, 0.007729618344455957, -0.008537296205759048, -0.0013363879406824708, 0.010698188096284866, -0.0020209657959640026, 0.010457302443683147, 0.01147752720862627, -0.018264854326844215, -0.03800336644053459, -0.009408737532794476, -0.0005982306320220232, 0.019412606954574585, -0.027616912499070168, -0.009097002446651459, 0.01204431802034378, -0.022742506116628647, 0.015700122341513634, 0.0008532868232578039, -0.018718287348747253, 0.01203014887869358, -0.0005256105214357376, 0.006489762105047703, 0.011222470551729202, 0.030068285763263702, -0.003115581814199686, 0.009515011683106422, 0.004775217734277248, 0.016408612951636314, 0.015643443912267685, -0.022529959678649902, -0.0024637714959681034, -0.004736251197755337, 0.012667789123952389, -0.005749390926212072, -0.00631263991817832, -0.011073688045144081, 0.029926588758826256, 0.0034149184357374907, 0.0034060622565448284, -0.021212169900536537, -0.024952992796897888, -0.020220285281538963, -0.026143254712224007, 0.006355149205774069, -0.009713388048112392, -0.002109526889398694, 0.02295505441725254, 0.01774057187139988, -0.0058981734327971935, -0.022855864837765694, 0.0008448734879493713, -0.020928774029016495, 0.009777151979506016, 0.018378213047981262, 0.0029402305372059345, 0.014120192267000675, 0.0060327863320708275, 0.023890258744359016, -0.0017729945247992873, -0.02034781314432621, 0.0015560196479782462, 0.02566148340702057, 0.014474436640739441, 0.014028088189661503, -0.003515878226608038, -0.011392507702112198, -0.010691103525459766, -0.006093007978051901, 0.00813345704227686, -0.0043678367510437965, -0.005561640951782465, -0.0034149184357374907, 0.01341170258820057, -0.01625274494290352, 0.021580584347248077, 0.016507800668478012, -0.013865135610103607, 0.0049594249576330185, 0.00886320136487484, 0.005412858445197344, -0.0056749992072582245, -0.009699218906462193, -0.015303368680179119, 0.009465416893362999, 0.0043678367510437965, 0.007262015249580145, 0.01958264410495758, -0.019398437812924385, 0.016139386221766472, 0.01842072233557701, -0.015275029465556145, -0.037549931555986404, 0.0007390428800135851, 0.0034432581160217524, -0.0010574202751740813, -0.004761048126965761, -0.0048212697729468346, 0.0007465705857612193, 0.010903650894761086, -0.0027631083503365517, 0.01317790150642395, 0.004038388840854168, -0.004888575989753008, -0.006156771909445524, 0.0013284174492582679, -0.0022388261277228594, 0.012604025192558765, 0.011796346865594387, -0.02370605245232582, 0.00813345704227686, 0.009911765344440937, -0.009798407554626465, 0.010875310748815536, -0.008523126132786274, 0.01397140882909298, -0.021948998793959618, -0.021623093634843826, 0.02482546493411064, 0.018590759485960007, -0.014410672709345818, -0.0018013340886682272, -0.01392181497067213, 0.01318498607724905, 0.00037151409196667373, -0.0003033219836652279, 0.017910609021782875, -0.01170424371957779, 0.016408612951636314, 0.019299248233437538, 0.0020262794569134712, 0.007956335321068764, -0.0034397155977785587, -0.00680149719119072, -0.010407707653939724, 0.003200600389391184, -0.0001412550627719611, -0.004714996553957462, -0.014594879932701588, -0.008693164214491844, -0.001375354826450348, 0.025746501982212067, 0.0013098196359351277, 0.00012420702842064202, 0.012795316986739635, -2.204342672484927e-05, -0.0003329899627715349, -0.0013213325291872025, -0.01585599035024643, 0.03140024468302727, -0.004672486800700426, 0.0012451699003577232, -0.0339508093893528, -0.012391477823257446, 0.016153555363416672, -0.005745848175138235, 0.01057066023349762, 0.034886013716459274, 0.008013013750314713, 0.008431022986769676, 0.023592693731188774, -0.021198000758886337, -0.00808386318385601, -0.009982614777982235, 0.02379107102751732, 0.009146597236394882, -0.007736703380942345, -0.003356468165293336, 0.005023189354687929, -0.0017977915704250336, -0.02673838660120964, -0.003303331322968006, -0.006854634266346693, -0.008792351931333542, -0.01579931192100048, -0.004775217734277248, -0.010606084950268269, 0.015756802633404732, -0.007637514732778072, -0.004778760485351086, 0.0039214882999658585, 0.0032324823550879955, -0.0012929929653182626, 0.0010166821302846074, 0.020942943170666695, -0.0025417055003345013, -0.013199156150221825, -0.021382207050919533, -0.014495691284537315, 0.02862296812236309, 0.010698188096284866, 0.013071627356112003, 0.0018093045800924301, 0.014488606713712215, -0.014056427404284477, -0.005891088396310806, -0.0001309598155785352, -0.006149687338620424, 0.009288295172154903, 0.006560611072927713, -0.00498776463791728, 0.0047681331634521484, -0.014368163421750069, -0.019072532653808594, -0.004445770289748907, -0.009734642691910267, 0.007205336354672909, 0.021580584347248077, 0.015714293345808983, -0.016111046075820923, -0.00668459665030241, -0.012802401557564735, -0.01578514091670513, -0.008799437433481216, 0.00845936220139265, -0.00808386318385601, 0.007120317313820124, 0.01881747506558895, -0.004151747561991215, -0.006287842523306608, 0.01548757590353489, 0.005349094048142433, 0.008218475617468357, 0.026568349450826645, 0.00867899414151907, -0.0338941290974617, -0.015926839783787727, -0.002732997527346015, -0.009692133404314518, -0.012093912810087204, 0.012540260329842567, -0.004690199159085751, 0.003381265327334404, -0.012433987110853195, 0.010953244753181934, -0.012100997380912304, -0.010358113795518875, 0.010138481855392456, 0.002150265034288168, 0.006606662645936012, -0.004095068201422691, 0.009904680773615837, 0.02529306896030903, 0.01577097177505493, -0.03168364241719246, -0.0076871090568602085, -0.021963167935609818, 0.01621023565530777, -0.023125091567635536, 0.0032041429076343775, 0.014120192267000675, -0.0025682738050818443, 0.0076516843400895596, 0.009479586966335773, -0.005327839404344559, 0.005402231123298407, 0.015983518213033676, 0.0016100419452413917, -0.01240564789623022, -0.011002838611602783, -0.0058060698211193085, 0.007970504462718964, -0.001923548523336649, -0.0283112321048975, 0.026284953579306602, 0.00028605255647562444, -0.010634424164891243, 0.00794924981892109, 0.017173780128359795, 0.020659547299146652, -0.010223500430583954, -0.009869256056845188, -0.011052433401346207, -0.0018367585726082325, 0.014864105731248856, -0.006712936330586672, -0.016748687252402306, 0.01166173443198204, 0.013475466519594193, 0.0028959501069039106, -0.02182147093117237, 0.0010733612580224872, -0.02335180714726448, 0.016054367646574974, 0.017046252265572548, 0.028325403109192848, 0.00813345704227686, 0.025930708274245262, 0.0024070923682302237, 0.03174032270908356, -0.0008816263871267438, -0.015756802633404732, 0.00442805839702487, 0.0023433284368366003, -0.00018387511954642832, -0.024740446358919144, -0.005079868249595165, -0.02030530385673046, -0.004187171813100576, -0.006773157976567745, -0.0022742506116628647, -0.020418662577867508, -0.009890510700643063, 0.007318694610148668, -0.02897721342742443, 0.019412606954574585, 0.009557520970702171, 0.004031304270029068, -0.007495816797018051, -0.007031756453216076, 0.005611235275864601, 0.010733612813055515, -0.025165541097521782, -0.006929025519639254, 0.0036380926612764597, -0.008714418858289719, 0.017938949167728424, -0.005501419305801392, -0.006734190974384546, -0.00019029580289497972, -0.011803431436419487, 0.016422782093286514, 0.013943069614470005, 0.02675255574285984, 1.9095999959972687e-05, 0.009748812764883041, 0.026554178446531296, 0.028042007237672806, 0.004846066702157259, 0.002387608867138624, 0.0061603146605193615, -0.016748687252402306, 0.0031775746028870344, 0.01093907468020916, -0.014417757280170918, 0.001639267080463469, -0.002391151385381818, 0.02003607712686062, -0.024754615500569344, 0.026525840163230896, -0.0017809650162234902, 0.00527824554592371, -0.00960711482912302, -0.0009493756806477904, 0.009118257090449333, 0.008423937484622002, 0.004442228004336357, -0.004580383189022541, 0.004541416652500629, -0.013815541751682758, -0.011930960230529308, 0.0011362397344782948, -0.020900433883070946, -0.004180086776614189, 0.014835766516625881, -0.00576001824811101, -0.001649894518777728, -0.011817601509392262, 0.01470823772251606, -0.011654648929834366, -0.008374343626201153, 0.029926588758826256, 0.006929025519639254, -0.016309423372149467, 0.01487827580422163, 0.017542194575071335, -0.009515011683106422, -0.005058613605797291, -0.029926588758826256, 0.004304072353988886, -0.0032165413722395897, 0.01956847496330738, 0.005990277044475079, 0.01052106637507677, 0.009146597236394882, 0.006362233776599169, -0.003319272305816412, -0.004941713064908981, 0.00923870038241148, -0.009344973601400852, -0.001911149942316115, -0.014849935658276081, 0.004162374883890152, -0.003450342919677496, -0.022317413240671158, -0.003237796248868108, 0.017825590446591377, 0.007219505961984396, 0.001222143997438252, -0.0063834888860583305, 0.005845036823302507, -0.008225561119616032, -0.005065698642283678, -0.002387608867138624, -0.0014807427069172263, -0.006280757486820221, 0.023649372160434723, 0.011824686080217361, -0.006408285815268755, -0.009493757039308548, 0.013447127304971218, -0.007623345125466585, 0.014977463521063328, 0.016351932659745216, -0.01170424371957779, 0.001804876490496099, 0.02031947299838066, -0.006989247165620327, 0.0038045875262469053, 0.0004084883548785001, -0.0007053896551951766, -0.005731678567826748, 0.00020845084509346634, 0.006408285815268755, 0.004304072353988886, -0.009529180824756622, 0.013014948926866055, 0.007410798221826553, -0.01093199010938406, -0.006348064169287682, 0.006011531688272953, -0.004810642451047897, 0.004268648102879524, 0.012844910845160484, 0.0053101275116205215, 0.007864231243729591, -0.012023063376545906, 0.010421877726912498, 0.013836796395480633, -0.011349998414516449, -0.01166173443198204, -0.0016339534195140004, -0.010591914877295494, 0.007031756453216076, -0.015969349071383476, 0.00594776775687933, 0.013496721163392067, -0.0018491570372134447, -0.009111172519624233, -0.020602868869900703, -0.006231163628399372, -0.01300786342471838, -0.014198125340044498, 0.024230334907770157, 0.00790674053132534, -0.01881747506558895, 0.015317538753151894, -0.02754606492817402, -0.015275029465556145, -0.02116966061294079, -0.02224656380712986, -0.020971283316612244, 0.006117805372923613, 0.00376562075689435, -0.017145441845059395, -0.010854056105017662, 0.009196191094815731, 0.011257895268499851, 0.027418537065386772, -0.013950154185295105, -0.028013667091727257, 0.006464964710175991, 0.016295254230499268, -0.005040901247411966, -0.025108860805630684, 0.0027365400455892086, 1.5166098819463514e-05, -0.008374343626201153, -0.01582765020430088, -0.0008019213564693928, 0.008756928145885468, -0.02033364400267601, -0.041290756314992905, -0.006337436847388744, 0.014417757280170918, -0.006943195126950741, -0.0070565533824265, 0.01731547899544239, -0.004941713064908981, 0.02000773884356022, -0.021566415205597878, -0.018378213047981262, -0.0008802979718893766, 0.021580584347248077, 0.004874406382441521, 0.0014966836897656322, 0.04063894599676132, 0.0001904064993141219, 0.000906423490960151, 0.005079868249595165, -0.0002783034578897059, -0.013298343867063522, 0.03740823641419411, -0.007410798221826553, 0.0030695300083607435, 0.0017570534255355597, 0.0004213297215756029, 0.01738632842898369, 0.003971082624047995, 0.00414111977443099, -0.01846323162317276, 0.0025629601441323757, -0.010209331288933754, 0.0037691630423069, -0.0058981734327971935, 0.019370097666978836, 0.006153229624032974, -0.017145441845059395, -0.002336243400350213, 0.0032448810525238514, -0.005037358961999416, 0.014566539786756039, -0.012370223179459572, -0.006486219819635153, -0.003303331322968006, -0.00197845627553761, 0.000889154092874378, -0.019044192507863045, 0.02071622759103775, -0.015742631629109383, 0.0075383260846138, -0.003266135696321726, 0.03814506530761719, -0.0016605218406766653, -0.019894380122423172, 0.0035052509047091007, 0.018406551331281662, 0.007155742030590773, -0.008190136402845383, -0.017088761553168297, 0.02669587731361389, 0.011633394286036491, 0.00509758060798049, -0.008714418858289719, 0.007417883258312941, -0.0170037429779768, -0.0035495313350111246, -0.00812637247145176, -0.012171845883131027, 0.02641248144209385, -0.007757958024740219, -0.025151370093226433, -0.005271160509437323, -0.034120846539735794, -0.013270004652440548, -0.0020510766189545393, -0.0009786008158698678, 0.006918398197740316, 0.023139260709285736, 0.005076325964182615, 0.0014222923200577497, 0.0015958722215145826, 0.008572720922529697, 0.019710171967744827, 0.04948089271783829, 0.002692259382456541, 0.012901590205729008, -0.019908549264073372, 0.007084893062710762, -0.04338788613677025, 0.0030217068269848824, -0.0016100419452413917, -0.026214104145765305, -0.01340461801737547, 0.02792864851653576, 0.0026887168642133474, 0.012327713891863823, 0.01433982327580452, -0.014623219147324562, -0.004739793483167887, -0.005157802253961563, -0.005986734759062529, -0.011002838611602783, 0.004580383189022541, 0.004261563066393137, 0.020787077024579048, -0.012115167453885078, -0.002651521237567067, 0.02757440321147442, 0.0011371253058314323, 0.00509403832256794, -0.007219505961984396, 0.016692008823156357, 0.013496721163392067, 0.0069361100904643536, -0.016139386221766472, -0.03140024468302727, 0.009982614777982235, 0.010110142640769482, 0.027801120653748512, 0.001486056367866695, 0.012426902540028095, -0.009174936451017857, 0.000782880699262023, -0.002575358608737588, -0.006170941982418299, 0.0002150929212803021, 0.005497877020388842, -0.010244755074381828, -0.009295379742980003, 0.0140989376232028, 0.004481195006519556, -0.017428837716579437, 0.024187825620174408, 0.004389091394841671, -0.002649750094860792, -0.03420586511492729, -0.004828354809433222, 0.008530211634933949, 0.011973469518125057, 0.014021003618836403, -0.0018898951821029186, -0.006666884291917086, -0.010258925147354603, -0.006266587879508734, -0.011994724161922932, 0.0004328426730353385, 0.019781021401286125, -0.00035490887239575386, 0.007226590998470783, -0.0013514433521777391, 0.01662115938961506, 0.011151622049510479, -0.0017304851207882166, 0.02870798669755459, -0.014977463521063328, -0.0006721792160533369, -0.03550948575139046, -0.01543089747428894, -0.029558174312114716, -0.04310448840260506, -0.015303368680179119, -0.01997939869761467, 0.016862045973539352, -0.005922970827668905, -0.013765946961939335, 0.01414853148162365, -0.0014240634627640247, -0.008983644656836987, -0.00382229988463223, -0.0027684220112860203, 0.0024212622083723545, 0.0007713677478022873, 0.006220536306500435, -0.0244570504873991, 0.004580383189022541, -0.013092881999909878, 0.00735411886125803, 0.0036806019488722086, -0.008700248785316944, 0.0008599288994446397, -0.008749842643737793, 0.00017280496831517667, 0.013390447944402695, 0.017046252265572548, 0.014113106764853, 0.009472502395510674, -0.007970504462718964, -0.02904806099832058, -0.024244504049420357, -0.016082707792520523, -0.008423937484622002, -0.005345551762729883, 0.018633268773555756, -0.02255829982459545, 0.0042509357444942, -0.015204180963337421, 0.01075486745685339, 0.003648719983175397, 0.01052815094590187, 0.0014621447771787643, 0.01966766268014908, 0.007290354929864407, 0.0029774263966828585, -0.005926513113081455, -0.0056679146364331245, 0.03426254168152809, 0.01806647703051567, 0.004268648102879524, 0.0009352058987133205, 0.009961359202861786, 0.010117227211594582, -0.016493631526827812, 0.004268648102879524, 0.005441197659820318, -0.017046252265572548, 0.0031935155857354403, 0.010180991142988205, 0.00032413387089036405, -0.00038059160578995943, 0.010868226177990437, 0.003182888263836503, 0.00273122638463974, 0.00015077537682373077, -0.020291132852435112, 0.03140024468302727, 0.02417365461587906, -7.610725151607767e-05, -0.007545411121100187, 0.0018420722335577011, -0.03290224447846413, 0.001962515292689204, 0.02671004645526409, -0.0017136585665866733, -0.007765042595565319, -0.008778182789683342, -0.00509758060798049, 0.005940682720392942, -0.009458332322537899, 0.009245785884559155, -0.004644147586077452, 0.023181769996881485, -0.006780242547392845, 0.0030553601682186127, -0.015317538753151894, 0.0015958722215145826, 0.013340854085981846, 0.005565183702856302, 0.0084947869181633, -0.01734381914138794, -0.004056101199239492, 0.021339697763323784, -0.02112715132534504, -0.010145566426217556, -0.009550435468554497, 0.006372861098498106, 0.009706303477287292, 0.0030801573302596807, 0.009848001413047314, 0.007088435348123312, -0.008764012716710567, -0.0005845036939717829, -0.011321659199893475, 0.002867610426619649, -0.003960455302149057, 0.007382458541542292, 0.018179835751652718, 0.0025718160904943943, -0.004197799134999514, 0.001142438966780901, -0.011569630354642868, 0.015969349071383476, 0.003384807612746954, 0.0038648091722279787, -0.006415370851755142, 0.01955430395901203, -0.03290224447846413, -0.008983644656836987, -0.0009918850846588612, 0.016351932659745216, 0.00148782751057297, -0.009011983871459961, -0.022345753386616707, -0.011427932418882847, 0.0034715975634753704, 0.018604928627610207, -0.019313419237732887, -0.0016693779034540057], "1c786628-34fb-42fe-9f8b-5f20c447803b": [-0.053391627967357635, -0.03884851187467575, -0.0055038174614310265, 0.00843751523643732, -0.016933538019657135, -0.024355541914701462, 0.020744837820529938, 0.03557213023304939, -0.015454151667654514, 0.009804067201912403, -0.015211766585707664, -0.0045969621278345585, -0.007647673599421978, -0.026043880730867386, -0.046972595155239105, 0.0054453108459711075, -0.02898593619465828, 0.022015269845724106, 0.023101825267076492, -0.046003054827451706, 0.06666430830955505, -0.003545929677784443, -0.04078759253025055, -0.0026119104586541653, 0.011191513389348984, 0.015437435358762741, -0.008470947854220867, 0.007714538369327784, -0.035070642828941345, 0.002810415579006076, 0.020845133811235428, 0.02380390651524067, 0.02360331267118454, 0.004663827363401651, -0.02092871628701687, -0.05105135589838028, -0.0007506630499847233, 0.0064482842572033405, -0.007321707438677549, -0.02993876114487648, -0.024021217599511147, 0.02706357091665268, 0.006398135796189308, -0.009160492569208145, -0.043896809220314026, -0.023101825267076492, 0.0025304188020527363, -0.01079868245869875, -0.020978864282369614, -0.0009319296223111451, 0.01805352419614792, 0.007413646671921015, 0.0020571406930685043, 0.032763805240392685, -0.002513702493160963, -0.011350317858159542, 0.021563932299613953, 0.06472522765398026, 0.0033933939412236214, -0.04098818823695183, 0.0023904202971607447, 0.020460661500692368, 0.006051274016499519, -0.010723459534347057, -0.018922768533229828, -0.04550156742334366, -0.011818372644484043, -0.011818372644484043, -0.023369284346699715, 0.016557421535253525, -0.0027163869235664606, -0.031108897179365158, -0.022884514182806015, 0.011901953257620335, -0.027498193085193634, 0.010631520301103592, 0.07709524035453796, 0.02081170119345188, 0.019357390701770782, 0.0009700634982436895, -0.04526754096150398, 0.003811299568042159, 0.019140079617500305, 0.017033834010362625, 0.028651611879467964, 0.021764526143670082, -0.0049647195264697075, -0.03577272593975067, -0.015963995829224586, -0.012796271592378616, 0.006540223490446806, 0.03751121088862419, -0.014994455501437187, 0.009110343642532825, -0.007793940603733063, 0.0033160813618451357, 0.026628948748111725, -0.010247047059237957, 0.022098852321505547, -0.020293498411774635, -0.01718428172171116, 0.025926867499947548, -0.026528650894761086, 0.02465643361210823, -0.015696536749601364, 0.017702484503388405, 0.03406766802072525, -0.009720485657453537, -0.018471430987119675, 0.03040681593120098, -0.011417183093726635, -0.019440971314907074, 0.023101825267076492, -0.007919312454760075, -0.05172000452876091, -0.04075416177511215, -0.01222791988402605, 0.013406413607299328, -0.025692841038107872, -0.022901229560375214, 0.033047981560230255, 0.0038698064163327217, -0.022115567699074745, 0.009879290126264095, 0.00527814868837595, 0.023352568969130516, 0.010999277234077454, -0.0013446115190163255, -0.017819497734308243, 0.006853653118014336, -0.0011241661850363016, -0.02601044811308384, 0.001940126996487379, 0.018354415893554688, 0.021898256614804268, -0.006598730571568012, -0.0029002653900533915, 0.05870738625526428, -0.028283854946494102, 0.0604124441742897, -0.0412890799343586, -0.04115534946322441, 0.0012014787644147873, -0.012386724352836609, 0.019741863012313843, -0.0009679740178398788, -0.05860709026455879, 0.059643495827913284, -0.04306099936366081, 0.04356248676776886, -0.04232548549771309, -0.04185743257403374, 0.018254119902849197, 0.004371293354779482, -0.00774379214271903, -0.020945431664586067, 0.012604034505784512, 0.017334727570414543, -0.00750558590516448, 0.013314474374055862, -0.0005140239954926074, -0.07348453253507614, 0.01619802415370941, -0.009386161342263222, 0.0016653541242703795, 0.01890605315566063, 0.051285382360219955, 0.016448767855763435, -0.03244619444012642, 0.0311924796551466, 0.017042193561792374, 0.009185566566884518, 0.00274772965349257, 0.021530499681830406, -0.029336977750062943, 0.00575874000787735, 0.04249264672398567, 0.04018580913543701, 0.015755044296383858, -0.002160572214052081, -0.03274708613753319, -0.011367034167051315, -0.03107546456158161, -0.010924054309725761, -0.018772322684526443, 0.04269324243068695, 0.007012457121163607, -0.011475689709186554, 0.01530370581895113, -0.025024190545082092, -0.017585471272468567, -0.06151571497321129, -0.0026119104586541653, 0.03378349542617798, 0.009135417640209198, 0.0050608376041054726, -0.019691715016961098, -0.0055414289236068726, 0.0034790646750479937, -0.029621154069900513, -0.017100699245929718, -0.04356248676776886, -0.05145254358649254, 0.03951716050505638, -0.036809131503105164, 0.044130839407444, 0.001674756989814341, -0.008625572547316551, 0.028852207586169243, -0.020092904567718506, 0.011667925864458084, -0.04426456615328789, 0.021647512912750244, -0.007630957290530205, -0.010648236609995365, -0.0035313027910888195, -0.046471111476421356, 0.015220124274492264, -0.0013561039231717587, -0.0005244716303423047, -0.03677569702267647, 0.01501952949911356, -0.009143776260316372, -0.012971791438758373, -0.003213694551959634, -0.03617391362786293, -0.016005786135792732, 0.004371293354779482, -0.008312143385410309, 0.042459215968847275, 0.02512448839843273, 0.031025316566228867, -0.017886362969875336, -0.018588444218039513, -0.015905490145087242, 0.016749659553170204, 0.005533070769160986, 0.024104798212647438, 0.04165683686733246, -0.025676123797893524, -0.00395547691732645, 0.056734874844551086, -0.027698786929249763, -0.019925741478800774, 0.027514908462762833, -0.0005114120431244373, -0.015320421196520329, 0.026829544454813004, 0.0211125947535038, -0.006732460111379623, 0.0201597698032856, 0.029604436829686165, -0.00973720196634531, -0.015328779816627502, -0.03767837584018707, 0.021898256614804268, 0.03731061890721321, -0.008867958560585976, 0.0010212570196017623, -0.04372964799404144, 0.015479225665330887, 0.010823756456375122, -0.002524150302633643, 0.003351603401824832, 0.004018162842839956, -0.026729246601462364, 0.011099574156105518, 0.0016872941050678492, -0.017117416486144066, 0.025174636393785477, -0.024439122527837753, 0.01773591712117195, 0.03697629272937775, -0.016281604766845703, 0.022182432934641838, 0.004475769586861134, -0.006042915862053633, 0.008466769009828568, 0.015579523518681526, -0.01482729334384203, 0.0119938924908638, -0.019909026101231575, -0.005416057538241148, -0.004421441815793514, 0.014810577034950256, -0.0050399424508214, -0.010155107825994492, 0.015027888119220734, -0.05044957250356674, -0.009578397497534752, -0.01405834686011076, 0.005721128545701504, 0.024723298847675323, 0.04583589360117912, -0.008186771534383297, 0.004260548390448093, 0.034970346838235855, 0.005633368156850338, -0.027565058320760727, -0.0026160895358771086, -0.0028313109651207924, -0.015111468732357025, -0.017702484503388405, -0.03080800548195839, 0.002023708075284958, 0.0033599615562707186, 0.015947280451655388, -0.02196512185037136, -0.0015849071787670255, 0.04362935200333595, 0.07756329327821732, -0.009937796741724014, -0.015412361361086369, -0.014083420857787132, 0.011793297715485096, -0.021664230152964592, 0.002948324428871274, -0.011584345251321793, -0.033917222172021866, -0.04670513793826103, 0.0017332637216895819, 0.022500041872262955, -0.04520067572593689, 0.043194729834795, 0.035739291459321976, -0.023051677271723747, 0.018086956813931465, 0.008190951310098171, 0.007626778446137905, -0.036307644098997116, -0.0014919232344254851, -0.03667540103197098, -0.031008601188659668, -0.0034101102501153946, -0.0018408744363114238, -0.03904910385608673, -0.03848075494170189, -0.04727349057793617, -0.010715100914239883, -0.008684080094099045, -0.014701921492815018, -0.021179459989070892, 0.010497789829969406, -0.0035877202171832323, 0.0225501898676157, 0.008867958560585976, 0.01937410607933998, 0.01328940037637949, -0.041589971631765366, 0.01435088086873293, 0.001070883241482079, -0.010648236609995365, 0.02572627179324627, 0.001209836918860674, -0.007054247427731752, -0.022282730787992477, -0.004446516279131174, 0.0017280399333685637, 0.038614481687545776, -0.015663104131817818, 0.02331913635134697, -0.019541269168257713, -0.023737041279673576, 0.005273969378322363, -0.014175360091030598, 0.010781966149806976, 0.004049506038427353, -0.05108478665351868, 0.013113879598677158, 0.0055456082336604595, -0.04971405863761902, 0.016432050615549088, 0.03523780405521393, 0.010882263071835041, -0.04780840873718262, -0.04038640484213829, 0.05075046420097351, 0.03503721207380295, 0.011776581406593323, 0.021229607984423637, 0.0011220767628401518, 0.013464920222759247, 0.019056499004364014, 0.002198183909058571, 0.0326300747692585, 0.0072966329753398895, 0.01823740266263485, 0.007873342372477055, 0.015144901350140572, 0.02362002804875374, -0.04085445776581764, 0.03460258990526199, -0.023770473897457123, -0.006983203813433647, -0.004739050287753344, 0.0071336496621370316, 0.023770473897457123, 0.010004661977291107, -0.0013331191148608923, -0.0206445399671793, 0.013331190682947636, -0.005599936004728079, 0.019808728247880936, 0.029771599918603897, 0.004822631366550922, -0.000148095321492292, -0.030657559633255005, -0.021530499681830406, -0.011601061560213566, -0.0013644619612023234, 0.02275078371167183, 0.0048644221387803555, 0.028233706951141357, 0.0033369767479598522, 0.03831358999013901, -0.014158643782138824, 0.005629189312458038, 0.03898223862051964, -0.01775263249874115, -0.011617777869105339, 0.024790164083242416, 0.0690714493393898, 0.010781966149806976, 0.018254119902849197, -0.01669115200638771, 0.011818372644484043, 0.019039781764149666, 0.030540546402335167, -0.008232741616666317, -0.0268629752099514, 0.001986096613109112, 0.0023319136817008257, -0.003299365285784006, -0.006134855095297098, 0.013857752084732056, -0.03107546456158161, -0.0017332637216895819, -0.020945431664586067, -0.003761150874197483, -0.026729246601462364, -0.02848445065319538, 0.020092904567718506, -0.019725147634744644, 0.028818774968385696, -0.03140978887677193, -0.05352535843849182, -0.05937603861093521, -0.006602909415960312, 0.007626778446137905, 0.0038823436480015516, -0.0018575906287878752, 0.04306099936366081, -0.049078840762376785, -0.0011868521105498075, -0.031810980290174484, -0.011851804330945015, 0.017535321414470673, -0.035271238535642624, 0.030072491616010666, -0.0431612953543663, -0.04971405863761902, 0.004308607429265976, 0.036307644098997116, 0.00010434581781737506, 0.03700972720980644, -0.05385968089103699, -0.02457285299897194, 0.034669455140829086, 0.01252881158143282, 0.019407538697123528, 0.01584698259830475, -0.022700635716319084, -0.014651772566139698, 0.013974765315651894, -0.005077553912997246, -0.009060194715857506, -0.030156072229146957, 0.007233947049826384, 0.014643414877355099, -0.031242627650499344, -0.013757454231381416, -0.014609982259571552, -0.034000806510448456, 0.028517883270978928, -0.006310375407338142, 0.027214016765356064, 0.0017865466652438045, -0.036875996738672256, 0.007894238457083702, 0.014660130254924297, 0.05412714183330536, 0.0027122078463435173, -0.001329984748736024, -0.02005947194993496, 0.005340834613889456, -0.02512448839843273, -0.034870047122240067, -0.01572161167860031, -0.01074853353202343, -0.012152696959674358, 0.018956201151013374, -0.011392108164727688, -0.0023966890294104815, 0.031008601188659668, 0.00873422808945179, 0.014267299324274063, -0.022132283076643944, 0.01812038943171501, 0.011141365393996239, 0.0037507032975554466, -0.03771180659532547, -0.0034811540972441435, -0.044130839407444, 0.01377417054027319, 0.019440971314907074, 0.03289753571152687, 0.00038682392914779484, -0.023937636986374855, 0.025107773020863533, 0.004588603973388672, -0.02101229690015316, -0.023753758519887924, -0.0004048461269121617, 0.030841438099741936, 0.015529374592006207, 0.013097163289785385, -0.018555011600255966, 0.010840472765266895, 0.0230182446539402, -0.008228562772274017, -0.019223660230636597, 0.021363338455557823, -0.012487021274864674, 0.016457125544548035, 0.007121112663298845, -0.008362292312085629, -0.010690026916563511, 0.04396367445588112, 0.0105562973767519, 0.020962148904800415, -0.028467733412981033, 0.007869163528084755, -0.003602346871048212, 0.018922768533229828, -0.007885879836976528, 0.040152374655008316, 0.01766905188560486, 0.004684722516685724, -0.005579040851444006, 0.017786065116524696, -0.005838142242282629, -0.0072966329753398895, -0.00978735089302063, -0.009352728724479675, 0.026428354904055595, -0.0345357246696949, 0.010355702601373196, -0.016724584624171257, -0.008842883631587029, -0.01650727353990078, -0.0065527609549462795, 0.02945399098098278, 0.01783621311187744, 0.005365908611565828, -0.0062309736385941505, 0.004973077215254307, 0.01985887810587883, 0.03513750806450844, -0.030356667935848236, 0.01927381008863449, 0.022884514182806015, 0.0016037130262702703, 0.037945833057165146, -0.005332476459443569, 0.004726513288915157, 0.02830057218670845, -0.028083261102437973, -0.03704315796494484, -0.0672326609492302, -0.012344933114945889, 0.02704685367643833, -0.02072812058031559, 0.012930001132190228, -0.0034665274433791637, -0.006105601787567139, 0.020109619945287704, -0.006899622734636068, -0.035271238535642624, -0.0364748053252697, -0.006807683501392603, 0.0066697741858661175, 0.023670176044106483, 0.00017068834858946502, 0.02273406833410263, -0.03971775621175766, 0.040352970361709595, -0.015755044296383858, 0.015136542730033398, 0.012679257430136204, 0.015880415216088295, 0.03567242622375488, 0.00039936110260896385, 0.015972355380654335, 0.02380390651524067, -0.032095156610012054, 0.019123362377285957, 0.024639718234539032, 0.025876719504594803, -0.0031405610498040915, 0.0005338744958862662, -0.004647111054509878, -0.014225509017705917, 0.056768305599689484, -0.015295347198843956, 0.024004502221941948, 0.023720325902104378, 0.0038844330701977015, 0.045535001903772354, -0.02380390651524067, -0.009135417640209198, 0.03139307349920273, -0.03607361763715744, 0.03898223862051964, 0.017134131863713264, 0.0033411558251827955, 0.016373543068766594, -0.02830057218670845, -0.0010374508565291762, -0.013966407626867294, 0.018471430987119675, -0.012838061898946762, -0.008036325685679913, -0.006419030949473381, -0.04814273118972778, 0.04693916440010071, 0.015362212434411049, -0.01069838460534811, -0.008608856238424778, -0.011952102184295654, -0.0010651370976120234, -0.04095475375652313, -0.01300522405654192, -0.011743148788809776, -0.010781966149806976, -0.0008582737646065652, -0.017819497734308243, 0.011534196324646473, 0.012161054648458958, 0.03252977877855301, -0.002392509952187538, -0.024439122527837753, -0.011191513389348984, -0.001600578660145402, 0.011901953257620335, 0.012161054648458958, -0.04052013158798218, 0.011584345251321793, 0.01631503738462925, 0.005905007012188435, 0.007697822526097298, -0.0025199712254107, -0.00450920220464468, 0.02071140520274639, 0.006694848649203777, 0.010196898132562637, 0.013556859456002712, -0.004571888130158186, -0.025007475167512894, 0.025408664718270302, 0.01395804900676012, 0.00274564023129642, -0.021430201828479767, 0.02696327306330204, 0.01726786233484745, -0.01649891585111618, -0.0244558397680521, 0.00949481688439846, -0.010865547694265842, 0.010104958899319172, -0.0012840151321142912, -0.013891184702515602, -0.017986658960580826, -0.04349562153220177, -0.015980713069438934, 0.043127864599227905, -0.019457688555121422, -0.019992606714367867, 0.025091055780649185, 0.0016455035656690598, -0.013205818831920624, -0.0115174800157547, -0.005616652313619852, -0.01773591712117195, 0.003798762569203973, -0.00525307422503829, 0.01880575530230999, -0.03109218180179596, 0.012963433749973774, 0.01639861799776554, -0.022800933569669724, -0.04259294643998146, -0.005236357916146517, -0.003495780983939767, 0.0035814514849334955, 0.003205336397513747, 0.0326133593916893, -0.024104798212647438, -0.02275078371167183, 0.004906212445348501, 0.012888210825622082, 0.018304267898201942, 0.02850116603076458, -0.014651772566139698, 0.029871897771954536, 0.00830378569662571, 0.010414209216833115, -0.014375954866409302, 0.0021114684641361237, -0.013264325447380543, 0.030356667935848236, -0.0029128023888915777, 0.015888772904872894, 0.010598087683320045, -0.0431612953543663, -0.011626135557889938, 0.01098256092518568, 0.011860162951052189, 0.007292453665286303, 0.0038844330701977015, 0.01277119666337967, 0.012152696959674358, 0.015270273201167583, -0.021998554468154907, 0.006402314640581608, 0.0037507032975554466, -0.0045969621278345585, -0.025559110566973686, 0.015437435358762741, 0.03704315796494484, -0.019624849781394005, 0.009277505800127983, -0.015236840583384037, -0.012503737583756447, -0.006853653118014336, -0.004843526519834995, -0.01467684656381607, 0.03299783170223236, 0.03159366920590401, 0.015788476914167404, -0.011191513389348984, -0.0005234268610365689, -0.05342505872249603, 0.0451338104903698, 0.010180181823670864, 0.029019368812441826, -0.003984730690717697, 0.019792012870311737, -0.006368882488459349, 0.00896825548261404, 0.003086233278736472, 0.013749096542596817, 0.00041868924745358527, 0.013172386214137077, -0.010247047059237957, 0.01026376336812973, 0.013882826082408428, 0.025943582877516747, 0.01530370581895113, 0.023553162813186646, -0.015621313825249672, 0.03135964274406433, -0.011592702940106392, 0.01756875403225422, 0.015236840583384037, -0.010146749205887318, 0.018789038062095642, 0.029036086052656174, -0.0019944547675549984, -0.027949530631303787, -0.020377080887556076, -0.011960459873080254, -0.00891810655593872, -0.0024865386076271534, -0.034301698207855225, 0.01145897340029478, -0.02687969245016575, 0.040720727294683456, -0.01651563122868538, 0.007121112663298845, 0.013540143147110939, -0.004091296344995499, 0.013540143147110939, 0.005507996771484613, 0.020410513505339622, -0.008951539173722267, -0.013456562533974648, 0.03206172212958336, -0.02657880075275898, 0.010731817223131657, 0.010765249840915203, 0.024021217599511147, -0.022031987085938454, 0.036040183156728745, 0.0527564100921154, -0.03567242622375488, -0.035839591175317764, -0.01299686636775732, 0.001228642649948597, 0.012604034505784512, -0.0027519087307155132, -0.010690026916563511, -0.013164028525352478, 0.0014887889847159386, -0.005311580840498209, -0.0011586433975026011, 0.02179795876145363, -0.016523990780115128, 0.008366471156477928, 0.001227597938850522, -0.018738890066742897, -0.029537571594119072, -0.012587318196892738, 0.014668488875031471, -0.015980713069438934, -0.009327654726803303, -0.01122494600713253, 0.011425540782511234, 0.003564735408872366, 0.019925741478800774, -0.0020310215186327696, -0.004059953615069389, -0.02485702931880951, 0.0012495379196479917, 0.049948085099458694, 0.009085268713533878, 0.014518043026328087, -0.01957470178604126, 0.010606445372104645, -0.028283854946494102, 0.010664952918887138, -0.021079162135720253, -0.004684722516685724, -0.0441642701625824, -0.016340112313628197, -0.01501117181032896, -0.02647850289940834, 0.026612233370542526, -0.009586756117641926, 0.024606285616755486, 0.049948085099458694, 0.020778270438313484, -0.01525355689227581, -0.014049988240003586, 0.020611107349395752, -0.010447641834616661, 0.014317448250949383, -0.00848348531872034, 0.015571164898574352, -0.032011572271585464, -0.007731254678219557, 0.012695973739027977, 0.017134131863713264, -0.014342522248625755, 0.000332496187184006, -0.007513944059610367, -0.004709796980023384, -0.027314314618706703, -0.005512175615876913, 0.021998554468154907, 0.006473358720541, -0.014977739192545414, -0.011199872009456158, 0.002474001608788967, -0.002513702493160963, -0.019206944853067398, 0.0022316162940114737, -0.003098770510405302, 0.02896922081708908, -0.03211187198758125, 0.00299847312271595, 0.014275657944381237, 0.013632082380354404, -0.004124728962779045, 0.022968094795942307, -0.02763192169368267, 0.0035918992944061756, 0.017150849103927612, -0.012052399106323719, -0.0014062526170164347, -0.013214177452027798, 0.009578397497534752, -0.0016141606029123068, -0.005378446076065302, -0.011843446642160416, 0.004492485895752907, -0.012913284823298454, 0.001474162214435637, -0.020694687962532043, 0.02522478625178337, -0.025943582877516747, -0.00597187178209424, -0.04108848422765732, -0.03099188394844532, 0.009486458264291286, 0.006707386113703251, -0.04339532554149628, -0.0018857993418350816, -0.012395082041621208, -0.017418308183550835, 0.01603921875357628, 0.0031447401270270348, 0.01937410607933998, -0.008078116923570633, -0.001102226204238832, 0.04205802455544472, 0.01736816018819809, 0.006590372417122126, 0.020510809496045113, 0.008617214858531952, 0.023302419111132622, 0.01228642649948597, 0.026211043819785118, -0.002051916904747486, 0.003986820112913847, -0.007108575198799372, -0.026829544454813004, -0.0026913124602288008, 0.0009423772571608424, 0.038413889706134796, 0.02983846515417099, 0.009010045789182186, 0.016766374930739403, 0.025575825944542885, 0.028634896501898766, 0.007422004826366901, 0.010280479677021503, -0.0007799164741300046, -0.010146749205887318, -0.0412556454539299, -0.013122238218784332, -0.01026376336812973, 0.003332797670736909, 0.009611830115318298, -0.013866109773516655, 0.025492245331406593, -0.013648798689246178, -0.01755203865468502, 0.008216025307774544, -0.013088805601000786, 0.01257060281932354, 0.032195452600717545, 0.01620638184249401, -0.005169493146240711, -0.004233384504914284, -0.01746845617890358, 0.022500041872262955, 0.000604918459430337, -0.013414772227406502, 0.0024343004915863276, -0.003092502010986209, 0.027464760467410088, 0.005595756694674492, -0.015679821372032166, -0.0011105843586847186, -0.006987382657825947, -0.009135417640209198, -0.015036245808005333, -0.014225509017705917, -0.0028877281583845615, 0.004467411432415247, -0.011241662316024303, -0.017150849103927612, 0.013080446980893612, 0.01728457771241665, 0.022951379418373108, -0.010397492907941341, -0.018170537427067757, -0.0044381581246852875, -0.034702885895967484, 0.009870931506156921, 0.01852157898247242, 0.004070401191711426, -0.00604709517210722, -0.02340271696448326, -0.014367597177624702, 0.011793297715485096, 0.0021940048318356276, 0.026695813983678818, -0.03291425108909607, -0.0029754883144050837, -0.010957486927509308, -0.026812827214598656, -0.023837339133024216, -0.013155669905245304, 0.0076142409816384315, -0.004291891120374203, -0.03988491743803024, 0.0008661095052957535, -0.022500041872262955, -0.03664197027683258, 0.020861851051449776, -0.0006717833457514644, -0.031108897179365158, 0.05609965696930885, -0.012119264341890812, -0.006105601787567139, 0.002411315683275461, 0.02619432657957077, 0.0010343164904043078, 0.026979990303516388, 0.0034811540972441435, -0.025408664718270302, 0.010180181823670864, -0.002469822531566024, -0.0072548422031104565, -0.002845937618985772, -0.025676123797893524, -0.032095156610012054, 0.0005646950448863208, 0.04580245912075043, -0.0035793620627373457, -0.022800933569669724, -0.010255404748022556, 0.0005605159676633775, -0.012261352501809597, 0.01680816523730755, 0.016858315095305443, 0.0008347665425390005, 0.01698368601500988, 0.005553966388106346, -0.014133569784462452, 0.009319296106696129, 0.011601061560213566, -0.02716386877000332, -0.0015274451579898596, -0.010664952918887138, -0.0032722014002501965, -0.05793844163417816, -0.014409387484192848, 0.008111548610031605, 0.016557421535253525, -0.0035124970600008965, -0.015796834602952003, 0.01501952949911356, -0.012938359752297401, -0.009912722744047642, 0.0016956522595137358, -0.003382946364581585, 0.0031238447409123182, -0.0008807361591607332, 0.005411878228187561, -0.024388974532485008, -0.002060274826362729, 0.0031739934347569942, -0.0006597685860469937, 0.005416057538241148, -0.006586193107068539, 0.00010898196342168376, 0.020845133811235428, 0.02148035168647766, -0.011417183093726635, -0.006845294963568449, 0.03945029526948929, -0.016340112313628197, 0.011542554013431072, -0.017435023561120033, -0.007885879836976528, 0.010807040147483349, 0.01573832705616951, 0.004371293354779482, 0.006920517887920141, 0.012010608799755573, 0.0016026681987568736, 0.011584345251321793, 0.0018408744363114238, 0.003961745649576187, -0.02975488267838955, -0.00036227196687832475, 0.018170537427067757, -0.01995917409658432, -0.007070963736623526, 0.020293498411774635, -0.006786787882447243, -0.005148597992956638, -0.039283134043216705, 0.002206541830673814, 0.0011199872242286801, 0.011843446642160416, -0.008224383927881718, -0.010280479677021503, -0.027565058320760727, 0.025375232100486755, -0.013548501767218113, 0.03207843750715256, -0.01706726662814617, 0.009620188735425472, 0.012361649423837662, 0.048811379820108414, 0.007898417301476002, 0.031627099961042404, -0.005236357916146517, -0.03828015923500061, 0.002626537112519145, 0.006205899175256491, 0.04887824505567551, 0.020393796265125275, -0.00944466795772314, 0.013030298985540867, -0.01544579304754734, 0.02764863893389702, 0.018755605444312096, -0.005637547466903925, 0.01496938057243824, 0.013749096542596817, 0.005612473003566265, 0.022951379418373108, 0.009302579797804356, 0.0007611106848344207, -0.0036817488726228476, 0.043328460305929184, 0.006414852105081081, -0.02214900031685829, -0.019842160865664482, -0.005558145232498646, -0.017301294952630997, -0.009277505800127983, -0.00901840440928936, 0.01472699549049139, -0.018270835280418396, 0.052522383630275726, 0.015178333967924118, -0.01650727353990078, 0.019440971314907074, -0.006862010806798935, 0.0005458892555907369, -0.02554239332675934, -0.009603472426533699, 0.00400353642180562, -0.012779555283486843, -0.017109058797359467, -0.025676123797893524, -0.0013362533645704389, -0.013172386214137077, 0.025091055780649185, 0.01965828239917755, -0.01145897340029478, -0.0035960781387984753, -0.040720727294683456, -0.018638592213392258, -0.03299783170223236, 0.02437225915491581, -0.024338826537132263, 0.01632339507341385, 0.009411235339939594, 0.006185004021972418, -0.0006404404412023723, -0.004300249274820089, -0.005675158929079771, 0.01736816018819809, -0.0027623565401881933, -0.04376308247447014, -0.01795322820544243, -0.0004931286675855517, 0.007973640225827694, -0.007894238457083702, -0.01127509493380785, 0.02560925856232643, -0.029604436829686165, 0.0038321949541568756, -0.005332476459443569, 0.008023789152503014, -0.0036127944476902485, 0.010756892152130604, 0.026812827214598656, -0.0005631278618238866, 0.02773221954703331, -0.04750751703977585, -0.0057085915468633175, 0.014476251788437366, 0.03291425108909607, 0.04359591752290726, -0.007948565296828747, -0.01506967842578888, -0.007605883292853832, -0.008140802383422852, 0.04162340238690376, 0.006322912871837616, -0.004730692133307457, -0.0004920838982798159, 0.03244619444012642, -0.023636745288968086, -0.01649891585111618, -0.013640441000461578, -0.0030381742399185896, 0.004739050287753344, 0.018086956813931465, 0.02178124338388443, -0.029019368812441826, -0.003330708248540759, 0.01501117181032896, 0.006657237187027931, 0.0006477537681348622, -0.016866672784090042, -0.02957100421190262, -0.009152133949100971, -0.03828015923500061, -0.011383750475943089, -0.018638592213392258, -0.006824399344623089, -0.007350960746407509, -0.006402314640581608, 0.009386161342263222, -0.01074017584323883, 0.006159929558634758, 0.014768785797059536, 0.025291651487350464, 0.01222791988402605, 0.004768303595483303, 0.009327654726803303, -0.005528891924768686, 0.01424222532659769, 0.006293659098446369, 0.0019244556315243244, -0.002010126132518053, 0.014626698568463326, -0.022784216329455376, 0.015228481963276863, 0.029286829754710197, 0.0263782050460577, -0.03610704839229584, -0.010121675208210945, 0.0037820462603121996, 0.008454231545329094, 0.035538699477910995, 0.00796110276132822, -0.022884514182806015, -0.012344933114945889, -0.019140079617500305, 0.015470867976546288, 0.024589568376541138, 0.006176645867526531, -0.0043169655837118626, 0.002576388418674469, -0.03252977877855301, 0.01620638184249401, 0.0009575263247825205, -0.004843526519834995, 0.0019683355931192636, -0.005637547466903925, -0.012252993881702423, 0.0017040102975443006, 0.009929439052939415, -0.025926867499947548, -0.0025534036103636026, -0.008383187465369701, -0.02428867667913437, -0.01323925144970417, 0.008241099305450916, -0.004580246284604073, 0.006427389103919268, -0.03610704839229584, 0.01271269004791975, 0.008232741616666317, -0.011082857847213745, -0.10049795359373093, -0.02148035168647766, 0.005625010468065739, 0.012252993881702423, 0.009135417640209198, 0.003470706520602107, -0.0006127542001195252, 0.0031719040125608444, 0.019140079617500305, 0.023837339133024216, -0.009177207946777344, 0.01405834686011076, -0.0052865068428218365, -0.007931849919259548, -0.009879290126264095, -0.008374829776585102, 0.008316323161125183, 0.024255244061350822, -0.014476251788437366, -0.010765249840915203, -0.0070375315845012665, 0.02293466217815876, 0.026695813983678818, 0.006310375407338142, -0.03271365538239479, -0.02102901227772236, 0.009051837027072906, -0.0008708109380677342, 0.0012829704210162163, -0.006811862345784903, -0.0013247609604150057, 0.008867958560585976, 0.003211605129763484, -0.003036084584891796, -0.0018732621101662517, 0.017401590943336487, -0.02524150162935257, 0.024990757927298546, -0.00035730935633182526, -0.00979570858180523, 0.0012965523637831211, 0.00026824319502338767, -0.025893434882164, 0.009703769348561764, 0.014108494855463505, -0.00226713833399117, -0.013322832994163036, -0.004103833809494972, 0.007894238457083702, 8.952322968980297e-05, -0.011910311877727509, -0.004404725506901741, 0.012311500497162342, 0.008040504530072212, -0.016432050615549088, -0.021513784304261208, -0.0028898175805807114, -0.008675721473991871, -0.008700795471668243, 0.006214257329702377, 0.021045729517936707, 0.019240377470850945, -0.012578960508108139, 0.026712529361248016, 0.013498352840542793, 0.027581773698329926, -0.012963433749973774, 0.024205096065998077, -0.01472699549049139, -0.005299043841660023, -0.013138954527676105, 0.0002572731755208224, -0.013314474374055862, 0.009862573817372322, -0.012670899741351604, -0.04021923989057541, -0.011835088022053242, -0.017802780494093895, -0.00034294382203370333, -0.006866190116852522, 0.019123362377285957, -0.0013686410384252667, -0.0003808165492955595, -0.008500201627612114, 0.018555011600255966, 0.0033808567095547915, -0.023854054510593414, 0.0006555895088240504, 0.018437998369336128, -0.014752070419490337, -0.009570039808750153, -0.009937796741724014, -0.013172386214137077, 0.02186482399702072, -0.02687969245016575, 0.025776421651244164, -0.0040160734206438065, -0.03533810377120972, 0.0026537009980529547, 0.010063168592751026, 0.006699027959257364, 0.0035438400227576494, -0.004931286908686161, -0.036508239805698395, 0.028651611879467964, -9.128626697929576e-05, 0.0026808648835867643, -0.01435088086873293, 0.016574138775467873, 0.011835088022053242, -0.003623242024332285, -0.0059969462454319, 0.003836374031379819, 0.026829544454813004, 0.02054424211382866, 0.0018899784190580249, 0.026328057050704956, -0.01021361444145441, 0.001908784150145948, -0.0004680543497670442, 0.01027212105691433, 0.04185743257403374, -0.02726416476070881, 0.0005599936121143401, -0.0029002653900533915, 0.024505987763404846, -0.0011732701677829027, 0.02407136559486389, 0.019524551928043365, -0.016574138775467873, -0.004993972834199667, -0.011793297715485096, -0.011500763706862926, -0.006226794328540564, 0.00031160091748461127, -0.009327654726803303, 0.018922768533229828, -0.005512175615876913, 0.026461787521839142, 0.015554448589682579, -0.02649521827697754, -0.012353291735053062, -0.01967499777674675, 0.0027519087307155132, -0.0009951378451660275, 0.0030402636621147394, -0.01430073194205761, -0.004425621125847101, -0.00774797098711133, 0.01348163653165102, -0.005976051092147827, 0.005090090911835432, -0.0008702885243110359, 0.010807040147483349, 0.00125267228577286, -0.04503351449966431, -0.030306518077850342, -0.0025910150725394487, -0.008328859694302082, -0.006623804569244385, 0.02169766277074814, 0.013866109773516655, -0.025742989033460617, 0.008103190921247005, 0.007488869596272707, -0.012169413268566132, -0.01583862490952015, 0.005742023698985577, -1.1606676707742736e-05, -0.02320212312042713, 0.023068392649292946, -0.015119827352464199, 0.00578381447121501, -0.0004782408068422228, -0.028634896501898766, -0.008337218314409256, 0.022316163405776024, -0.010857189074158669, 0.007873342372477055, 0.007739612832665443, 0.008504380472004414, 0.0005200313753448427, -0.03493691235780716, -0.023770473897457123, 0.010130032896995544, 0.010355702601373196, 0.0021438561379909515, -0.004164429847151041, 0.011107932776212692, -0.010614803992211819, 0.01795322820544243, -0.0029023548122495413, 0.011876879259943962, 0.008462590165436268, -0.012177770957350731, -0.015002813190221786, -0.013013582676649094, -0.019524551928043365, 0.024589568376541138, -0.01803680881857872, -0.005453669000416994, 0.014091778546571732, -0.019457688555121422, -0.006067990325391293, 0.013506711460649967, 0.010146749205887318, -0.006519328337162733, 0.03406766802072525, -0.003205336397513747, 0.012378365732729435, -0.04085445776581764, -0.006803504191339016, -0.030239654704928398, -0.019056499004364014, -0.011960459873080254, 0.019541269168257713, -0.0073969303630292416, -0.01098256092518568, 0.006962308194488287, 0.013122238218784332, -0.013673873618245125, -0.0034351844806224108, 0.016164591535925865, 0.010113317519426346, -0.013648798689246178, 0.016457125544548035, 0.003913686610758305, -0.02870176173746586, 0.005215462762862444, -0.02188154123723507, 0.03050711378455162, -0.03177754580974579, 0.02763192169368267, 0.026211043819785118, -0.012854778207838535, -0.023185405880212784, 0.012620750814676285, 0.009645262733101845, 0.016064293682575226, 0.01584698259830475, -0.03707658872008324, -0.00022436310246121138, -0.0008138712728396058, -0.005077553912997246, 0.0013707305770367384, -0.0032074260525405407, 0.008069758303463459, -0.0034038417506963015, -0.008759303018450737, 0.010138391517102718, 0.008195130154490471, 0.00424174265936017, 0.02505762316286564, 0.027397895231842995, 0.007622599136084318, 0.0025910150725394487, 0.03214530274271965, 0.006573656108230352, 0.007551555521786213, -0.0047014388255774975, 0.0016768465284258127, -0.008324680849909782, 0.004818452522158623, -0.0027038496918976307, 0.022065419703722, 0.005002330988645554, -0.005662621930241585, 0.008692437782883644, -0.04185743257403374, -0.001172225340269506, 0.0034602589439600706, 0.005374266766011715, -0.008224383927881718, 0.0002293257275596261, -0.018254119902849197, -0.02234959416091442, -0.003880253992974758, -0.00997958704829216, -0.02131318859755993, 0.014409387484192848, -0.00011603411985561252, 0.015345496125519276, 0.001379088731482625, 0.01074017584323883, -0.0030841438565403223, -0.007284095510840416, 0.005411878228187561, 0.007610062137246132, 0.0020644539035856724, -0.018354415893554688, -0.021714378148317337, -0.008320502005517483, -0.01908993162214756, 0.0074178255163133144, -0.014910873956978321, 0.00772289652377367, -0.0042563690803945065, 0.007016635965555906, 0.012587318196892738, 0.006707386113703251, -0.0018492325907573104, -0.0066530583426356316, 0.0012161055346950889, 0.005650084465742111, 0.0010217793751507998, 0.002776983194053173, 0.023770473897457123, 0.022717351093888283, -0.00348951225169003, -0.008140802383422852, -0.012403439730405807, -0.005558145232498646, -0.01650727353990078, 0.006845294963568449, -0.010171824134886265, -0.005533070769160986, -0.007313349284231663, -0.0019557985942810774, 0.0757579356431961, 0.0015420719282701612, 0.015863699838519096, 0.006899622734636068, -0.0006002170266583562, -0.025308366864919662, -0.015888772904872894, -0.008512738160789013, 0.009762275964021683, -0.016849955543875694, 0.0009298400836996734, 0.0011983445147052407, 0.007660210598260164, 0.018170537427067757, -0.027113718912005424, 0.012821345590054989, 0.033047981560230255, 0.018454713746905327, -0.01937410607933998, 0.0066530583426356316, -0.0047599454410374165, -0.01021361444145441, -0.0158219076693058, 0.008759303018450737, -0.014852367341518402, 0.016657719388604164, 0.011743148788809776, 0.0010938680497929454, 0.01175986509770155, 0.020845133811235428, -0.0018043076852336526, -0.01420043408870697, -0.011032709851861, -0.02687969245016575, 0.009712127968668938, 0.007697822526097298, 0.002388330874964595, 0.006067990325391293, -0.0005025315331295133, 0.011199872009456158, 0.0034163787495344877, 0.01687503047287464, 0.03182769566774368, 0.022416459396481514, -0.005700233392417431, -0.00575874000787735, 0.0067115649580955505, -0.00426890654489398, 0.020761553198099136, 0.013314474374055862, -0.01773591712117195, -0.016624286770820618, 0.007284095510840416, 0.0028125052340328693, 0.016064293682575226, 0.004830989520996809, -0.006339628715068102, -0.0030151894316077232, -0.009937796741724014, -0.0027728041168302298, -0.004321144428104162, 0.00032309332164004445, -0.004304428119212389, -0.03089158609509468, -0.005131881684064865, -0.01175986509770155, 0.0037151812575757504, -0.010882263071835041, -0.0020268424414098263, 0.004910391755402088, -0.01305537298321724, 0.0027184763457626104, 0.008801093325018883, -0.027498193085193634, -0.016557421535253525, 0.035271238535642624, -0.014660130254924297, 0.009820783510804176, 0.011876879259943962, 0.013657157309353352, -0.0002721610653679818, 0.006410672795027494, 0.002708028769120574, -0.010146749205887318, -0.009879290126264095, -0.0022148999851197004, 0.011291811242699623, -0.015052962116897106, 0.0008164831670001149, -0.01927381008863449, 0.00796528160572052, -0.010790323838591576, 0.004041147883981466, -0.00673663942143321, 0.02955428883433342, -0.0036775697953999043, 0.0056082941591739655, -0.00621007801964879, 0.0017802781658247113, -0.007513944059610367, 0.0008551394566893578, 0.02244989201426506, -0.006556939799338579, 0.01358193438500166, 0.014167002402245998, 0.023636745288968086, 0.024522705003619194, -0.009954513050615788, 0.017635619267821312, 0.015470867976546288, -0.01592220552265644, -0.0029336977750062943, -0.004993972834199667, -0.0015514747938141227, -0.015696536749601364, -0.007342602591961622, 0.008002893067896366, -0.012303142808377743, -0.0006921562599018216, -0.007075143046677113, -0.030339950695633888, 0.0010750623187050223, -0.025742989033460617, -0.02216571569442749, 0.0009523025364615023, 0.0065109701827168465, -0.02803311124444008, -0.0046387529000639915, -0.02360331267118454, 0.00700827781111002, 0.03406766802072525, -0.0022525114472955465, 0.004064132459461689, -0.008190951310098171, 0.007325886283069849, 0.0007830507238395512, 0.019140079617500305, -0.015863699838519096, 0.032295748591423035, -0.009152133949100971, 0.03020622208714485, -0.015362212434411049, 0.009336012415587902, 0.016824882477521896, -0.003932492341846228, 0.01917351223528385, -0.0007611106848344207, -0.017886362969875336, 0.02005947194993496, -0.00020973640494048595, 0.03446885943412781, -0.03242947906255722, -0.012578960508108139, -1.2088247785868589e-05, -0.007572450675070286, 0.0028062365017831326, -0.008809451013803482, 0.021563932299613953, -0.02311854064464569, -0.01252045389264822, 0.0014981918502599, 0.002501165494322777, -0.01520340796560049, -0.002442658646032214, -0.004312786273658276, 0.007467974442988634, 0.019725147634744644, 0.025208069011569023, 0.02734774723649025, -0.005190388299524784, 0.0037318975664675236, 0.0063521661795675755, 0.0031886203214526176, -0.006916338577866554, -0.008261995390057564, -0.02004275657236576, -0.008040504530072212, -0.0035375715233385563, -0.011442257091403008, 0.020510809496045113, 0.010756892152130604, 0.009110343642532825, 0.022232580929994583, -0.011734791100025177, -0.00023037049686536193, 0.008157518692314625, 0.02178124338388443, -0.015855340287089348, -0.02129647321999073, 0.009628546424210072, 0.00726737966760993, -0.006540223490446806, 0.00626440579071641, -0.03069099225103855, -0.005077553912997246, -0.023085108026862144, 0.01995917409658432, -0.006318733561784029, 0.011383750475943089, 0.005587398540228605, -0.008801093325018883, 0.007125291507691145, 0.010623161680996418, -0.002488628262653947, -0.008851242251694202, -0.010857189074158669, 0.0036316001787781715, -0.003199067898094654, -0.00997122935950756, -0.023151973262429237, -0.019808728247880936, -0.0316772498190403, 0.0055163549259305, 0.00806140061467886, -0.009837498888373375, -0.0023966890294104815, 0.0022086314857006073, 0.009854215197265148, -0.01670786924660206, 0.025977015495300293, 0.008282890543341637, -0.0022817649878561497, -0.0011178976856172085, 0.010338986292481422, -0.011617777869105339, -0.017969943583011627, 0.021229607984423637, 0.022901229560375214, 0.03376677632331848, 0.014768785797059536, 0.0115091223269701, 0.00298593589104712, -0.02945399098098278, 0.004576066974550486, -0.008090653456747532, 0.022817648947238922, 0.029203247278928757, -0.0005798441125079989, -0.002841758541762829, -0.018872620537877083, -0.0007830507238395512, 0.006109780631959438, -0.007885879836976528, -0.018304267898201942, -0.0017750542610883713, -0.005110986065119505, -0.0076142409816384315, -0.009854215197265148, 0.004973077215254307, -2.8453498089220375e-05, -0.01640697568655014, 0.0023340031038969755, -0.025876719504594803, -0.006256047636270523, 0.019240377470850945, -0.004668006207793951, -0.009202282875776291, 0.00801960937678814, 0.018020091578364372, -0.026127461344003677, -0.007981997914612293, 0.006159929558634758, -0.021814676001667976, -0.02957100421190262, 0.015036245808005333, 0.009611830115318298, -0.013013582676649094, 0.01329775806516409, 0.01880575530230999, -0.0019505746895447373, -0.0038133892230689526, 0.0003050711238756776, 0.003786225337535143, 0.017217712476849556, -0.0040536848828196526, -0.015094752423465252, 0.005888290703296661, -0.0100798849016428, -0.026545368134975433, 0.020878566429018974, 0.01852157898247242, -0.010598087683320045, 0.01318910252302885, -0.017769349738955498, -0.016139516606926918, -0.023770473897457123, 0.001089688972570002, 0.023920919746160507, -0.01812038943171501, 0.02724744938313961, 0.02081170119345188, -0.005512175615876913, -0.022399744018912315, -0.02455613762140274, 0.009753918275237083, 0.006820220500230789, -0.010288837365806103, -0.005666800774633884, 0.025676123797893524, 0.025458812713623047, -0.0037653299514204264, -0.003855179762467742, -0.016941895708441734, -0.00801960937678814, 0.019123362377285957, -0.0026871333830058575, 0.034401994198560715, 0.004080848768353462, -0.005742023698985577, 0.028902355581521988, 0.004421441815793514, 0.011893595568835735, 0.013598650693893433, -0.003382946364581585, -0.021747810766100883, 0.011367034167051315, 0.0134314876049757, 0.006828578654676676, -0.009661979041993618, -0.005294864997267723, 0.03177754580974579, 3.129395190626383e-05, -0.017251145094633102, 0.023653460666537285, 0.0017489352030679584, 0.009436310268938541, 0.007789761759340763, 0.0063521661795675755, 0.004210399463772774, -0.008700795471668243, 0.015370570123195648, 0.0033620509784668684, -0.01228642649948597, -0.011835088022053242, -0.0011105843586847186, -0.00375488237477839, 0.0018377401866018772, 0.0115174800157547, -0.004446516279131174, 0.005006509833037853, -0.014275657944381237, 0.005984409246593714, -0.013356264680624008, -0.003995178267359734, -0.0027038496918976307, 0.0028710118494927883, -0.009327654726803303, -0.018437998369336128, 0.0002875713398680091, 0.0036002572160214186, -0.01145897340029478, -0.013899542391300201, 0.009778992272913456, 0.0022984810639172792, -0.010840472765266895, 0.004734870977699757, 0.012512095272541046, 0.010598087683320045, -0.019691715016961098, -0.008128264918923378, -0.025492245331406593, -0.0007391706458292902, -0.004993972834199667, -0.023820623755455017, 0.012904927134513855, 0.011592702940106392, -0.0105562973767519, 0.0012004340533167124, -0.032847385853528976, 0.009193924255669117, -0.0077814036048948765, 0.016849955543875694, -0.007656031753867865, -0.0024489271454513073, -0.022065419703722, 0.013389697298407555, -0.004475769586861134, -0.005027404986321926, -0.006924696732312441, 0.022784216329455376, 0.017050551250576973, -0.006222615484148264, -0.014267299324274063, -0.013598650693893433, 0.022951379418373108, 0.014601623639464378, 0.013590292073786259, 0.022299446165561676, -0.001054689404554665, 0.0001467893598601222, -0.00859214086085558, 0.0006905891350470483, -0.003773688105866313, -0.011032709851861, 0.006623804569244385, 0.021129310131072998, -0.014643414877355099, 0.02390420436859131, 0.013264325447380543, -0.014735354110598564, -0.00997122935950756, 0.014518043026328087, 0.013080446980893612, -0.0039011493790894747, 0.007844089530408382, -0.021146027371287346, 0.01726786233484745, -0.009720485657453537, 0.022332878783345222, -0.003042353317141533, 0.013063730672001839, 0.00896825548261404, -0.023469582200050354, -0.013882826082408428, 0.013113879598677158, 0.014618339948356152, -0.009001688100397587, -0.005407699383795261, -0.00055738165974617, -0.014994455501437187, 0.014116853475570679, -0.020326931029558182, 0.024021217599511147, -0.015128185041248798, 0.015136542730033398, -0.0023799727205187082, 0.022901229560375214, -0.0023340031038969755, -0.01324760913848877, -0.01021361444145441, -0.009035120718181133, 0.0039763725362718105, -0.01443446148186922, 0.01051450613886118, -0.025174636393785477, -0.009143776260316372, 0.007931849919259548, 0.007346781436353922, 0.023586595430970192, 0.01520340796560049, -0.022282730787992477, -0.01022197213023901, -0.0023131079506129026, 0.012303142808377743, 0.009277505800127983, 0.018471430987119675, 0.010046452283859253, 0.03520437330007553, -0.007054247427731752, -0.004910391755402088, -0.008124086074531078, 0.012319859117269516, -0.016457125544548035, -0.00830796454101801, -0.008429157547652721, -0.009193924255669117, 0.008667363785207272, -0.0024322110693901777, 0.012637467123568058, -0.02793281525373459, -0.0187221746891737, -0.0032784698996692896, -0.011082857847213745, 0.0014093868667259812, -0.003470706520602107, 0.013448203913867474, 0.009728844277560711, -0.0067700715735554695, -0.009728844277560711, 0.013448203913867474, -0.01690010540187359, 0.00820348784327507, 0.004149803426116705, 0.009879290126264095, -0.0005798441125079989, 0.01803680881857872, -0.000733946799300611, 0.010723459534347057, 0.0003220485523343086, -0.023168690502643585, -0.010773608461022377, -0.01622309722006321, -0.01910664699971676, -0.004567708820104599, 0.05439460277557373, -0.011199872009456158, -0.009377802722156048, 0.009837498888373375, 0.010297195985913277, 0.030055776238441467, 0.010188540443778038, -0.006097243633121252, 0.00546620599925518, -0.0047014388255774975, -0.004576066974550486, 0.0026662382297217846, 0.002047737827524543, 0.02677939459681511, -0.0074554369784891605, -0.0006075303535908461, -0.008124086074531078, -0.0008243189076893032, -0.012629109434783459, -0.0014971470227465034, -0.005006509833037853, -0.004605320282280445, 0.0018440088024362922, 0.00795692391693592, 0.020778270438313484, 0.017919795587658882, -0.007572450675070286, 0.016841597855091095, -0.03460258990526199, 0.025676123797893524, -0.0002901832340285182, 0.029052801430225372, 0.000499136105645448, 0.015328779816627502, -0.0031280238181352615, 0.0015222213696688414, -0.0010802861070260406, -0.007894238457083702, 0.0065527609549462795, 0.004028610419481993, -0.010690026916563511, -0.02044394426047802, 0.02408808283507824, 0.0063521661795675755, -0.008036325685679913, -0.006565297953784466, -0.025977015495300293, 0.01520340796560049, 0.012328216806054115, -0.004567708820104599, 0.034769751131534576, 0.02091199904680252, 0.02973816730082035, 0.024238528683781624, 0.004358755890280008, -0.008424977771937847, -0.0026745961513370275, 0.008767660707235336, 0.009051837027072906, 0.015044603496789932, -0.006164108403027058, -0.008984971791505814, 0.008926465176045895, 0.009611830115318298, -0.005002330988645554, -0.009369445033371449, -0.018655309453606606, 0.0013174476334825158, 0.026812827214598656, -0.00883452594280243, 0.01929052546620369, -0.011977176181972027, -0.0031948888208717108, 0.01478550210595131, 0.008625572547316551, 0.007898417301476002, 0.008700795471668243, -0.001480430830270052, -0.002879370003938675, -0.0004978301003575325, -0.007376035209745169, 0.0014887889847159386, 0.008759303018450737, 0.019307240843772888, 0.0034101102501153946, 0.005813067778944969, -0.03405095264315605, 0.00525725306943059, -0.01947440393269062, 0.007856626063585281, 0.020611107349395752, 0.005424415692687035, -0.038714781403541565, -0.00968705303966999, 0.010581371374428272, -0.013414772227406502, 0.005131881684064865, -0.018153822049498558, -0.027765652164816856, -0.006318733561784029, 0.012537170201539993, 0.016047578305006027, 0.015245198272168636, 0.010389135219156742, 0.029286829754710197, -0.003702644258737564, 0.012930001132190228, 0.001807442051358521, -0.00522799976170063, -0.022533472627401352, 0.013749096542596817, 0.014944306574761868, 0.0027936992701143026, 0.0008039459935389459, -0.03109218180179596, -0.012904927134513855, -0.008190951310098171, 0.020076187327504158, 0.007626778446137905, 0.0017405770486220717, 0.027197301387786865, 0.0018304268596693873, 0.005110986065119505, -0.021747810766100883, 0.0008838704670779407, 0.005148597992956638, 0.000724021578207612, -0.0019735596142709255, 0.034201398491859436, 0.010088242590427399, 0.0030632484704256058, 0.0013425219804048538, -0.0066530583426356316, -0.005917544011026621, 0.01583862490952015, 0.026929840445518494, -0.00997958704829216, 0.006256047636270523, 0.011726432479918003, 0.015704894438385963, -0.012854778207838535, -0.013180744834244251, 0.012553886510431767, 0.00048189747030846775, 0.012060757726430893, -0.02186482399702072, 0.0220821350812912, 0.007664389908313751, -0.011191513389348984, 0.002225347561761737, -0.006598730571568012, 0.007731254678219557, -0.027665354311466217, 0.0015284899855032563, 0.0025554930325597525, -0.00925243180245161, 0.016256529837846756, -0.003073696047067642, 0.006657237187027931, 0.013874468393623829, 0.005411878228187561, 0.0007532749441452324, -0.008943181484937668, -0.008617214858531952, 0.005261432379484177, -0.015378928743302822, -0.024689866229891777, 0.0019756490364670753, 0.010238688439130783, 0.01271269004791975, -0.009185566566884518, -0.0018816202646121383, 0.009436310268938541, -0.024990757927298546, 0.02704685367643833, 0.011617777869105339, -0.008993329480290413, 0.00022279596305452287, -0.002501165494322777, 0.017200997099280357, -0.005921723321080208, -0.0010468537220731378, -0.0071336496621370316, 0.014660130254924297, 0.007639315444976091, -0.008692437782883644, 0.007179619278758764, 0.0034226474817842245, 0.006490075029432774, 0.007856626063585281, 0.00974555965512991, 0.006707386113703251, -0.01420043408870697, 0.0076184202916920185, -0.00974555965512991, -0.003993088845163584, -0.028735194355249405, 0.009921080432832241, -0.00979570858180523, -0.021279755979776382, -1.4202262718754355e-05, -0.020410513505339622, 0.0008964076405391097, -0.012303142808377743, 0.020611107349395752, -0.0023465403355658054, 0.02868504449725151, -3.3342669212288456e-06, -0.04356248676776886, -0.041991159319877625, -0.000521598500199616, 0.0009852126240730286, 0.0057085915468633175, -0.014910873956978321, -0.05011524632573128, 0.0062309736385941505, -0.018387848511338234, 0.010196898132562637, 0.018103674054145813, 0.009193924255669117, -0.007167082279920578, 0.004580246284604073, 0.02275078371167183, 0.0119855348020792, 0.003685927949845791, 0.011768223717808723, 0.01443446148186922, -0.010623161680996418, 0.007584987673908472, 0.003508317982777953, 0.02273406833410263, -0.025107773020863533, 0.005370087921619415, -0.011308527551591396, -0.008320502005517483, 0.018187254667282104, 0.004626215901225805, 0.012069115415215492, -0.005796351470053196, 0.01209419034421444, -0.01132524386048317, -0.019039781764149666, -0.001103270915336907, 0.00400980468839407, -0.017384875565767288, 0.012620750814676285, 0.02898593619465828, -0.006134855095297098, 0.0035626457538455725, 0.010013019666075706, -0.01276283897459507, 0.018187254667282104, 0.013799245469272137, -0.01746845617890358, -0.008600498549640179, 0.010364060290157795, -0.019792012870311737, -0.01318910252302885, -0.0008488708990626037, -0.02139676921069622, 0.010347343981266022, -0.004059953615069389, -0.02649521827697754, 0.018086956813931465, -0.00250534457154572, 0.02311854064464569, -0.0011408824939280748, -0.0004320099833421409, 0.013556859456002712, 0.007338423281908035, 0.013281041756272316, 0.0007125291740521789, 0.01544579304754734, -0.011885236948728561, 0.0009141686605289578, 0.009678695350885391, 0.010146749205887318, 0.013281041756272316, -0.013105521909892559, 0.013264325447380543, 0.01496938057243824, 0.030757857486605644, 0.006999919656664133, -0.019307240843772888, -0.024790164083242416, 0.019440971314907074, 0.004264727234840393, -0.024037932977080345, -0.017150849103927612, -0.03493691235780716, -0.011116290464997292, -0.018304267898201942, -0.010439283214509487, 0.022132283076643944, 0.01620638184249401, 0.030473681166768074, 0.00921064056456089, -0.012746122665703297, -0.006895443424582481, -0.011341960169374943, -0.024589568376541138, 0.0026871333830058575, 0.013172386214137077, 0.008023789152503014, 0.011726432479918003, 0.029219964519143105, 0.017200997099280357, 0.0016601302195340395, -0.020878566429018974, 0.008817809633910656, 0.017869645729660988, 0.017702484503388405, -0.006473358720541, -0.006686490494757891, -0.021062444895505905, -0.025977015495300293, 0.00795692391693592, 0.015178333967924118, 0.013439846225082874, -0.011927027255296707, 0.01610608398914337, 0.018304267898201942, -0.002973398892208934, 0.02390420436859131, 0.03206172212958336, -0.012695973739027977, 0.004755766596645117, 0.002766535384580493, 0.0001383006601827219, -0.009946154430508614, 0.002425942337140441, -0.0030653381254523993, 0.009436310268938541, -0.010765249840915203, 0.00224206387065351, 0.013423129916191101, -0.008684080094099045, 0.01745174080133438, 0.014810577034950256, -0.009845857508480549, -0.02916981466114521, 0.0010306598851457238, 0.0006743952399119735, 0.0026223580352962017, -0.012244636192917824, -0.0032262317836284637, 0.008876316249370575, 0.02169766277074814, -0.011241662316024303, 0.016741300001740456, 0.011601061560213566, -0.013138954527676105, 0.004793378058820963, 0.005574861541390419, 0.009770634584128857, 0.011417183093726635, 0.006097243633121252, -0.013648798689246178, 0.0009940931340679526, 5.3838004532735795e-05, 0.01619802415370941, -0.013255967758595943, 0.023586595430970192, 0.0018001286080107093, -0.01651563122868538, -0.003349513979628682, 0.00222952663898468, 0.00997958704829216, 0.009319296106696129, 0.010422566905617714, -0.002089528366923332, 0.014233866706490517, 0.01850486360490322, -0.013891184702515602, 0.006690669804811478, -0.006807683501392603, 0.004500844050198793, -0.006239331793040037, -0.0030590693932026625, 0.004505022894591093, 0.010531222447752953, 0.008884674869477749, 0.003861448261886835, 0.0045384555123746395, -0.028367437422275543, -0.012269710190594196, -0.019808728247880936, -0.013122238218784332, 0.009377802722156048, 0.01994245871901512, 0.0006117094308137894, 0.0062309736385941505, -0.003773688105866313, -0.00012994254939258099, -0.02505762316286564, -0.009001688100397587, -0.00578381447121501, 0.00274772965349257, -0.01572996936738491, 0.022867798805236816, -0.035170942544937134, 0.007179619278758764, 0.019507836550474167, 0.00573366554453969, -0.0026474324986338615, -0.0032722014002501965, 0.007731254678219557, -0.017618902027606964, 0.01620638184249401, -0.008750944398343563, -0.00673663942143321, 0.0007031263085082173, 0.024405689910054207, 0.01526191458106041, -0.025960300117731094, -0.008742586709558964, 0.0034351844806224108, 0.025926867499947548, 0.0031572773586958647, -0.002336092758923769, -0.024923894554376602, -0.012436872348189354, -0.04346219077706337, 0.01995917409658432, 0.0006456642295233905, 0.01688338816165924, -0.005428594537079334, -0.013364623300731182, 0.008684080094099045, -0.010765249840915203, -0.022232580929994583, 0.015186691656708717, 0.01602250337600708, -0.00954496581107378, -0.01592220552265644, -0.011709717102348804, -0.023352568969130516, 0.02753162570297718, 0.010180181823670864, 0.0024823597632348537, 0.012930001132190228, -0.0037465242203325033, -0.01554609090089798, -0.02544209733605385, -0.003395483596250415, -0.015554448589682579, 0.004417262971401215, -0.014175360091030598, 0.0119855348020792, 0.007643494755029678, -0.0064524635672569275, 0.019440971314907074, 0.031108897179365158, -0.01175986509770155, 0.008057220838963985, 0.0014532669447362423, 0.027514908462762833, 0.010631520301103592, 0.007651852909475565, 0.002090573078021407, 0.0005720083718188107, 0.01371566392481327, 0.009804067201912403, -0.007125291507691145, -0.009636905044317245, 0.0011001366656273603, -0.01271269004791975, 0.0006665595574304461, 0.009845857508480549, -0.002814594656229019, 0.008170056156814098, -0.005850679241120815, -0.00954496581107378, -0.013782529160380363, -0.030841438099741936, -0.013832677155733109, -0.006465000566095114, -0.014108494855463505, 0.002628626534715295, -0.03211187198758125, 0.00750558590516448, -0.008266174234449863, -0.0037778671830892563, -0.007710359524935484, -0.018922768533229828, 0.008700795471668243, -0.01026376336812973, 0.01132524386048317, 0.004018162842839956, 0.025408664718270302, 0.035271238535642624, 0.02659551613032818, -0.009996303357183933, -0.030172789469361305, 0.007890058681368828, 0.010974202305078506, -0.011968818493187428, -0.0033913045190274715, 0.008943181484937668, -0.005950976628810167, 0.015245198272168636, 0.015286989510059357, 0.01619802415370941, -0.006205899175256491, 0.006941413041204214, -0.0030590693932026625, -0.02293466217815876, -0.012127622030675411, 0.011475689709186554, 0.009578397497534752, 0.004475769586861134, -0.00035443625529296696, 0.0005336133181117475, 0.0040348791517317295, -0.017535321414470673, 0.004475769586861134, -0.00724230520427227, 0.00025466125225648284, 0.0018680383218452334, 0.00796528160572052, 0.015587881207466125, -0.018939483910799026, 0.004810094367712736, 0.004826810210943222, -0.02601044811308384, 0.014760428108274937, 0.016365185379981995, 0.01376581285148859, -0.002676685806363821, 0.020878566429018974, -0.011693000793457031, 0.01079868245869875, 0.025592543184757233, 0.009954513050615788, 0.0004939122591167688, 9.866491745924577e-05, -0.005065016448497772, 0.018387848511338234, 0.002845937618985772, 0.002701760036870837, -0.013874468393623829, -0.017017118632793427, -0.009753918275237083, -0.017518606036901474, -0.008445873856544495, -0.015286989510059357, -0.00848348531872034, -0.010731817223131657, 0.016139516606926918, 0.00549545930698514, -0.02791609801352024, 0.019909026101231575, 0.005106807220727205, 0.012595676816999912, 0.003704733680933714, 0.007292453665286303, 0.01425058301538229, -0.014701921492815018, 0.002463553799316287, -0.002457285299897194, 0.006005304399877787, 0.00931093841791153, 0.027765652164816856, 0.003932492341846228, 0.01716756448149681, 0.008742586709558964, -0.015504300594329834, -0.007204693742096424, -0.026027165353298187, 0.01775263249874115, -0.002526239724829793, 0.022700635716319084, -0.0011325243394821882, 0.001178493956103921, 0.012252993881702423, 0.0220821350812912, 0.00014639757864642888, -0.00949481688439846, 0.00010917785402853042, -0.024104798212647438, 0.009402877651154995, 0.0012871494982391596, -0.0034999598283320665, -0.015278630889952183, -0.0001998111401917413, 0.012562244199216366, -0.001027003163471818, 0.020494094118475914, -0.0027748935390263796, -0.00427308538928628, -0.012637467123568058, 0.005328297149389982, 0.01501952949911356, 0.010924054309725761, -0.027514908462762833, -0.006297838408499956, 0.0009951378451660275, -0.007952745072543621, -0.015236840583384037, 0.0029023548122495413, -0.013790886849164963, -0.009854215197265148, -0.0002464337449055165, 0.01649891585111618, -0.0155962398275733, -0.0065109701827168465, 0.011241662316024303, -0.01853829436004162, -0.011024351231753826, 0.02119617536664009, -0.002574298996478319, 0.003915776032954454, -0.006807683501392603, -0.0011356585891917348, 0.0013404324417933822, -0.0013832676922902465, -0.004066222347319126, 0.01228642649948597, -0.004952182061970234, 0.005453669000416994, 0.0100798849016428, -0.008316323161125183, 0.013590292073786259, 0.009937796741724014, -0.002342361258342862, -0.004475769586861134, -0.01803680881857872, 0.001600578660145402, -0.004321144428104162, -0.008395724929869175, -0.009294222109019756, -0.012027325108647346, -0.0076811062172055244, 0.012110905721783638, -0.005574861541390419, -0.001902515534311533, -0.016632646322250366, 0.0004495097673498094, -0.027013422921299934, -0.01698368601500988, 0.0014072973281145096, 0.01795322820544243, 0.016147874295711517, -0.0023987784516066313, -0.004425621125847101, 0.0034874228294938803, 0.0007553644827567041, -0.0021584827918559313, -0.004492485895752907, 0.01957470178604126, 0.033532749861478806, 0.020494094118475914, -0.0011178976856172085, 0.0027498193085193634, 0.03376677632331848, 0.005156955681741238, 0.02236631140112877, 0.002664148574694991, -0.004404725506901741, -0.0027247448451817036, 0.008851242251694202, -0.012085831724107265, 0.01233657542616129, -0.0036316001787781715, 0.0018158000893890858, 0.01453475933521986, -0.015094752423465252, -0.008462590165436268, 0.0011899863602593541, -0.016666077077388763, -0.012319859117269516, 0.012654183432459831, 0.008951539173722267, -0.00883452594280243, 0.009519890882074833, 0.023770473897457123, 0.003919955343008041, 0.015061319805681705, 0.002779072616249323, -0.000191322440514341, 0.0033599615562707186, -0.002425942337140441, -0.030774572864174843, -0.005905007012188435, 0.004446516279131174, -0.008429157547652721, -0.007802298758178949, -0.03069099225103855, 0.003805031068623066, -0.01122494600713253, 0.005612473003566265, 0.004463232588022947, 0.010631520301103592, 0.0278158001601696, 0.0026411637663841248, -0.005403520073741674, -0.023085108026862144, -0.02858474664390087, 0.010347343981266022, -0.020677972584962845, 0.007463795132935047, 0.009001688100397587, -0.02139676921069622, 0.004805915057659149, -0.007672748062759638, 0.00020712449622806162, 0.017786065116524696, -0.008675721473991871, -0.028919072821736336, -0.002628626534715295, 0.008867958560585976, 0.00026772081037051976, -0.011333601549267769, -0.005336655303835869, -0.02014305256307125, 0.002354898490011692, 0.02236631140112877, -0.018939483910799026, 0.023870771750807762, 0.006862010806798935, 0.003959656227380037, 0.003974282648414373, 0.006836936809122562, 0.0010102869709953666, 0.011032709851861, 0.022784216329455376, -0.011433899402618408, 0.016248172149062157, -0.015144901350140572, -0.014944306574761868, 0.0022587801795452833, 0.001972514670342207, -0.016766374930739403, -0.006686490494757891, 0.024322109296917915, 0.0011607329361140728, -0.01669950969517231, 0.00626022694632411, 0.006368882488459349, -0.012395082041621208, 0.009586756117641926, 0.007087680045515299, -0.003702644258737564, 0.007024994120001793, 0.0008556618704460561, 0.017401590943336487, 0.01069838460534811, -0.002791609847918153, -0.002960861660540104, -0.024589568376541138, 0.0013717752881348133, 0.009753918275237083, 0.013038656674325466, 0.007204693742096424, -0.004231295082718134, -0.005528891924768686, -0.018304267898201942, 0.008094832301139832, -0.0037277184892445803, -0.014885799959301949, -0.02532508410513401, 0.001549385255202651, -0.004885317292064428, 0.001178493956103921, -0.006987382657825947, -0.007702001370489597, 0.01074017584323883, -0.019524551928043365, 0.02764863893389702, 0.013749096542596817, 0.023954352363944054, 0.006051274016499519, -0.020761553198099136, 0.018354415893554688, 0.009812424890697002, 0.008521096780896187, -0.018972916528582573, -0.026929840445518494, 0.0036190629471093416, 0.004122639540582895, 0.0013581934617832303, -0.01050614845007658, 0.002601462649181485, -0.01708398386836052, -0.0015399823896586895, 0.004202041309326887, -0.025692841038107872, -0.0007088725105859339, -0.0010557342320680618, -0.0019474404398351908, 0.014175360091030598, -0.02178124338388443, -0.004128907807171345, -0.01448461040854454, 0.002866832772269845, 0.005662621930241585, 0.01520340796560049, -0.00575456116348505, 8.560536662116647e-05, -0.003268022323027253, -0.0015880415448918939, -0.020560959354043007, 0.059442900121212006, 0.0316772498190403, 0.009143776260316372, 0.002791609847918153, 0.0035626457538455725, -0.027464760467410088, 0.0015723700635135174, -0.011734791100025177, -0.005102628376334906, -0.007568271365016699, 0.006327091716229916, 0.002455195877701044, 0.030440248548984528, 0.018170537427067757, 0.007693643216043711, -0.010999277234077454, -0.002977577969431877, -0.011074500158429146, -0.02044394426047802, 0.02275078371167183, -0.0013937153853476048, 0.006816041190177202, 0.005165313836187124, -0.0068745482712984085, 0.016064293682575226, 0.009829141199588776, 0.0007809611852280796, -0.012445230968296528, -0.00012073555990355089, -0.011492406018078327, 0.017150849103927612, -0.021179459989070892, -0.02687969245016575, -0.003733987221494317, -0.011133006773889065, 0.006991561967879534, -0.004814273212105036, 0.013799245469272137, 0.0029692198149859905, -0.010472715832293034, -0.024255244061350822, -0.015103111043572426, 0.005211283452808857, -0.015278630889952183, -0.012955076061189175, -0.0006461866432800889, 0.02629462443292141, -0.00520292529836297, 0.005349192302674055, -0.0010687937028706074, -0.0215973649173975, 0.02082841843366623, -0.010965844616293907, -0.006786787882447243, -0.007848268374800682, 0.018020091578364372, -0.005512175615876913, -0.007656031753867865, -0.003909507300704718, -0.019123362377285957, -0.014518043026328087, -0.004793378058820963, 0.005403520073741674, 0.015362212434411049, -0.00326384324580431, 0.013356264680624008, 0.006732460111379623, -0.0025993732269853354, -0.01716756448149681, 0.005846500396728516, 0.003761150874197483, -0.009570039808750153, 0.0139079000800848, -0.0010353613179177046, -0.0030089206993579865, -0.017109058797359467, -0.028651611879467964, -0.010823756456375122, -0.0055414289236068726, 0.010522864758968353, 0.009720485657453537, -0.0011293900897726417, -0.0007423049537464976, -0.01745174080133438, -0.02666238136589527, -0.010731817223131657, -0.004179056733846664, -0.0042166681960225105, 0.00137282011564821, -0.010205256752669811, -0.013690589927136898, -0.006272763945162296, -0.011400466784834862, 0.021446919068694115, 0.0100798849016428, 0.0009862573351711035, 0.004425621125847101, -0.006682311650365591, -0.004413083661347628, -0.0024405689910054207, -0.0018941573798656464, 0.013464920222759247, 0.00011583822924876586, 0.010113317519426346, -0.003426826559007168, -0.05001495033502579, 0.000499136105645448, -0.0008060355321504176, 0.011693000793457031, 0.011107932776212692, -0.010623161680996418, 0.008266174234449863, -0.00027007152675651014, 0.0050232261419296265, 0.0035563772544264793, 0.03301454707980156, 0.005984409246593714, 0.011300168931484222, 0.002563851187005639, -0.020895283669233322, 0.004446516279131174, -0.001025958452373743, 0.01880575530230999, 0.019725147634744644, 0.005917544011026621, -2.3441896701115184e-05, 0.011475689709186554, 0.04503351449966431, -0.005232179071754217, 0.00602202070876956, 0.001178493956103921, -0.006477538030594587, 0.006640520878136158, 0.005562324542552233, -0.007890058681368828, -0.0059300814755260944, 0.019641567021608353, 0.009277505800127983, 0.00877601932734251, 0.00724648404866457, -0.015362212434411049, 0.007346781436353922, 0.02390420436859131, -0.008048863150179386, 0.012110905721783638, -0.004264727234840393, -0.03868134692311287, -0.0026934021152555943, 0.008270353078842163, -0.017903078347444534, -0.005553966388106346, 0.0033557824790477753, -0.003130113473162055, 0.01756875403225422, -0.008320502005517483, 0.038815077394247055, -0.018972916528582573, 0.02753162570297718, -0.023553162813186646, -0.000452121690614149, 0.0124703049659729, 0.007171261124312878, -0.0027372820768505335, 0.027982963249087334, 0.00575456116348505, -0.0057085915468633175, -0.007016635965555906, 0.0124703049659729, -0.011684642173349857, -0.0028438479639589787, -0.018086956813931465, -0.0024363899137824774, -0.012537170201539993, 0.004095475655049086, -0.01223627757281065, 0.017401590943336487, -0.007434541825205088, -0.006460821721702814, -0.01045599952340126, -0.012980150058865547, 0.025408664718270302, 0.020293498411774635, 0.00572948670014739, -0.0022462429478764534, -0.005290685687214136, -0.011667925864458084, -0.0019599776715040207, 0.006310375407338142, 0.0007814835989847779, 0.008420798927545547, 0.020677972584962845, 0.010046452283859253, 0.015027888119220734, -0.0016287873731926084, -0.007146186660975218, 0.005800530780106783, 0.015061319805681705, -0.013155669905245304, -0.035170942544937134, 0.010046452283859253, -0.00477248290553689, 0.011542554013431072, -0.016774732619524002, 0.006895443424582481], "e67e559b-ac83-4048-aa23-7fb4cf7634fd": [-0.025989284738898277, -0.011080996133387089, -0.009288370609283447, 0.012858494184911251, -0.015838639810681343, -0.03237314894795418, 0.022994013503193855, 0.04232713580131531, -0.01830444484949112, 0.01667065918445587, -0.0009993697749450803, 0.03978569433093071, 0.0005918689421378076, -0.01553608663380146, -0.0017614245880395174, 0.031707532703876495, 0.001406870549544692, 0.016716042533516884, 0.01680680736899376, -0.06377813220024109, 0.05276520922780037, -0.026972582563757896, -0.018259061500430107, 0.024884967133402824, -0.00557831721380353, -0.013887173496186733, -0.01260132435709238, 0.0169580839574337, -0.033492594957351685, -0.025943903252482414, 0.0098480936139822, 0.01980208046734333, -0.0008424204424954951, 0.0001823589700507, 0.024385755881667137, -0.03806114196777344, 0.027592815458774567, 0.008274818770587444, -0.014023322612047195, -0.0016413489356637, -0.02745666727423668, 0.01307028066366911, 0.002021430991590023, 0.002322092652320862, -0.023720139637589455, -0.008350457064807415, 0.031556256115436554, 0.012018909677863121, -0.008887488394975662, -0.039906714111566544, 0.01133816596120596, 0.01354680210351944, -0.026427987962961197, -0.0032316420692950487, 0.04689568281173706, -0.047500789165496826, 0.005589663051068783, 0.06450425833463669, -0.006659943610429764, -0.05439899489283562, -0.010324614122509956, -0.02629183791577816, 0.007866373285651207, -0.02515726536512375, 0.006595651153475046, -0.007208320312201977, -0.007987393997609615, -0.007635676302015781, -0.018501102924346924, 0.03107217326760292, -0.01654963754117489, 0.01685219071805477, -0.06123668700456619, -0.01765395514667034, -0.0006552159320563078, 0.012238260358572006, 0.007450362667441368, -0.004205483943223953, 0.012102112174034119, -0.023432714864611626, 0.00904632918536663, -0.006497321184724569, 0.029635047540068626, 0.0015647652326151729, 0.05094989016652107, 0.02611030638217926, -0.025626221671700478, -0.060329027473926544, -0.04973968118429184, -0.02512701041996479, 0.01962054893374443, 0.034218721091747284, -0.00787393655627966, -0.011149071156978607, 0.006701544392853975, 0.008637882769107819, 0.008592499420046806, 0.00620989641174674, -0.007783170789480209, -0.03672990947961807, -0.016413489356637, 0.012714781798422337, -0.02735077403485775, -0.0061569493263959885, 0.029967855662107468, -0.014651119709014893, -0.009719508700072765, 0.008743776008486748, -0.016897574067115784, 0.023099906742572784, -0.00922786071896553, -0.035791996866464615, 0.016201702877879143, -0.014416640624403954, -0.03267570212483406, -0.03270595893263817, -0.04353734850883484, -0.01750268042087555, -0.01881878450512886, -0.044656794518232346, 0.04765206575393677, -0.002522533992305398, 0.017109360545873642, -0.01323668472468853, -0.007321777753531933, -0.006637251935899258, 0.022767098620533943, 0.01592940464615822, 0.016912702471017838, 0.001751969801262021, -0.015475575812160969, -0.015248660929501057, 0.0271692406386137, 0.013183738104999065, 0.017124488949775696, 0.006693980656564236, 0.01150457002222538, 0.06238638609647751, -0.022328397259116173, 0.03642735630273819, -0.02830381505191326, -0.017971636727452278, -0.007019225042313337, 0.016610149294137955, 0.0237050112336874, 0.017169872298836708, -0.032040342688560486, 0.026670029386878014, 0.006406555417925119, 0.019378507509827614, -0.0609038770198822, -0.02008950524032116, 0.011572645045816898, 0.002255909377709031, 0.020906398072838783, -0.04586700350046158, 0.0051433974876999855, 0.0419338196516037, 0.030724236741662025, 0.04099590331315994, 0.024113457649946213, -0.049134574830532074, -0.008305074647068977, 0.016458872705698013, -0.001239520963281393, 0.03915033116936684, 0.05452001467347145, 0.021965334191918373, -0.032978255301713943, 0.026927199214696884, 0.022691460326313972, -0.018289316445589066, 0.008236999623477459, 0.020694611594080925, -0.014522534795105457, 0.0160504262894392, 0.04868074506521225, 0.04033028706908226, 0.034188468009233475, -0.01105074118822813, -0.021012291312217712, 0.016473999246954918, 6.712890171911567e-05, 0.005283328238874674, 0.002976363291963935, 0.05222061276435852, 0.022691460326313972, 0.040390800684690475, -0.0006467066123150289, -0.0317377895116806, -0.009855657815933228, 0.013319887220859528, -0.008380712941288948, 0.00978758279234171, -0.021617397665977478, -0.024567287415266037, -0.004352978430688381, 0.031889066100120544, 0.0007138355285860598, 0.025217775255441666, -0.010816263034939766, -0.043930668383836746, -0.04701670631766319, 0.03930160775780678, -0.0313747264444828, 0.025974158197641373, -0.008161362260580063, -0.039180587977170944, 0.02497573383152485, -0.0072385757230222225, 0.0441121980547905, -0.031223449856042862, -0.004852190613746643, 0.00648219371214509, -0.003876457689329982, -0.011497006751596928, -0.0021802710834890604, 0.04045131057500839, -0.030754491686820984, -0.03924109786748886, -0.016035297885537148, 0.025943903252482414, -0.0005876142531633377, -0.017109360545873642, -0.062446899712085724, 0.005824141204357147, -0.006595651153475046, 0.04934636130928993, -0.038968801498413086, -0.004239520989358425, 0.021193822845816612, -0.009250551462173462, 0.002452568616718054, -0.009038764983415604, -0.0046404036693274975, 0.042538922280073166, 0.030240152031183243, -0.024597542360424995, -0.00328647973947227, 0.0016120391665026546, 0.024915223941206932, 0.029332494363188744, -0.0007734005921520293, -0.004243303090333939, 0.020467696711421013, 0.024370627477765083, -0.02450677752494812, 0.07025276124477386, 0.017260637134313583, -0.021753545850515366, -0.010180901736021042, 0.0017945163417607546, -0.002509297337383032, 0.001628112280741334, -0.005445950198918581, 0.015657108277082443, 0.02235865220427513, -0.02545981854200363, 0.0009412228828296065, -0.011474315077066422, 0.010914592072367668, 0.008955562487244606, 0.020739994943141937, 0.005234163254499435, 0.03588276356458664, -0.0020025214180350304, 0.01190545316785574, -0.012555941008031368, 0.0063611725345253944, 0.016791680827736855, -0.0098480936139822, -0.0056199184618890285, 0.001964702270925045, 0.020876143127679825, 0.01030192244797945, -0.01097510289400816, -0.026851560920476913, -0.0012886858312413096, 0.03957390785217285, -0.007828554138541222, -0.005729593802243471, 0.013077844865620136, 0.019227230921387672, 0.00942451972514391, 0.05718247964978218, -0.011300346814095974, -0.033311061561107635, -0.009076584130525589, -0.0383031852543354, -0.005026158411055803, -0.00777560705319047, -0.004560983274132013, 0.008252128027379513, 0.03182855620980263, 0.02013488858938217, -0.0032467697747051716, 0.012064293026924133, -0.023205799981951714, -0.004682004451751709, 0.030769620090723038, 0.012170186266303062, -0.006410337518900633, 0.01487803366035223, -0.024915223941206932, 0.05058682709932327, -0.03712322935461998, 0.018440593034029007, -0.002070595743134618, -0.02843996323645115, 0.04441475123167038, 0.034188468009233475, -0.0015638198237866163, -0.013675387017428875, -0.0062704067677259445, 0.00033375355997122824, 0.02254018373787403, -0.009099275805056095, -0.01535455510020256, -0.008441222831606865, -0.039694927632808685, -0.010929719544947147, -0.0158688947558403, -0.06716672331094742, 0.015483140014111996, 0.05911881849169731, -0.05793886259198189, 0.0269877091050148, -0.025474945083260536, -0.024809328839182854, -0.02614056132733822, -0.027880240231752396, -0.01670091412961483, -0.04105641692876816, 0.015415064990520477, -0.03234289586544037, -0.05367286875844002, -0.05219035968184471, -0.04030003398656845, 0.004670659080147743, -0.03146549314260483, -0.00620989641174674, 0.0007464544614776969, 0.007370942737907171, -0.0053589665330946445, 0.010279231704771519, -0.008509297855198383, 0.03019476868212223, -0.0022804916370660067, -0.04471730440855026, 0.0004708477936219424, 0.0008514024666510522, -0.0018313899636268616, 0.03784935548901558, -0.032040342688560486, 0.022449417039752007, -0.0040731169283390045, -0.0010778442956507206, 0.01425780076533556, 0.010127955116331577, -0.006467066239565611, -0.020513080060482025, -0.023871416226029396, -0.02541443519294262, 0.014961236156523228, 5.637409776682034e-05, 0.004239520989358425, 0.0001531673624413088, -0.016473999246954918, -0.024476520717144012, 0.028470218181610107, -0.046472109854221344, 0.015452884137630463, 0.03288748860359192, 0.015301607549190521, -0.01841033808887005, -0.05669839307665825, 0.012608887627720833, -0.001927828649058938, -0.03512638062238693, 0.040057990700006485, -0.007597857154905796, 0.004228175617754459, -0.005203908309340477, 0.017744721844792366, 0.03376489132642746, 0.017880870029330254, -0.027184369042515755, -0.030058620497584343, -0.01845572143793106, -0.027320517227053642, -0.024476520717144012, -0.00011765286035370082, -0.03839395195245743, 0.006020800676196814, -0.04172202944755554, -0.010748188011348248, -0.0047992439940571785, -0.026927199214696884, 0.0002260873152408749, -0.038454461842775345, 0.017593445256352425, 0.009923731908202171, -3.575086884666234e-05, -0.011217145249247551, 0.01972644217312336, -0.05279546231031418, -0.0012971950927749276, -0.01316104643046856, 0.030936023220419884, 0.0074427989311516285, 0.020906398072838783, 0.020800504833459854, 0.020331548526883125, 0.028500473126769066, 0.052855975925922394, 0.0171396154910326, 0.01418216247111559, 0.0335531048476696, -0.04002773389220238, -0.03588276356458664, 0.044868580996990204, 0.0565168634057045, 0.01739678531885147, 0.011043176986277103, 0.013471163809299469, 0.013206429779529572, -0.009121966548264027, 0.02329656481742859, -0.020301293581724167, -0.007994958199560642, -0.022600693628191948, 0.04529215395450592, 0.008675701916217804, -0.022555312141776085, 0.02326630987226963, 0.01834982819855213, 0.013599748723208904, 0.004504255019128323, 0.008925307542085648, 0.006058619823306799, 0.0020081941038370132, 0.016912702471017838, -0.007004097569733858, -0.00356445019133389, -0.019378507509827614, -0.031919319182634354, -0.03267570212483406, 0.031526003032922745, 0.03125370293855667, -0.005498897284269333, 0.0014210527297109365, 0.03376489132642746, -0.04420296475291252, 0.01555121410638094, -0.003256224561482668, 0.002361802849918604, -0.0015515285776928067, 0.013841791078448296, 0.004519382491707802, -0.040935393422842026, -0.02595902979373932, -0.002698392840102315, 0.030830129981040955, 0.019121337682008743, -0.0023977309465408325, -0.032221872359514236, 0.0034642296377569437, 0.02205609902739525, -0.0016290576895698905, -0.007461708504706621, 0.00776804331690073, 0.0062250238843262196, -0.018682636320590973, 0.039513394236564636, -0.0007795462151989341, 0.012934132479131222, -0.025505201891064644, -0.021435866132378578, 0.017306020483374596, -0.022918375208973885, -0.01644374430179596, -0.042720455676317215, 0.007586511317640543, -0.00017526789451949298, 0.028061771765351295, -0.012208005413413048, -0.016504256054759026, -0.023931926116347313, 0.032947998493909836, -0.021057674661278725, 0.059058308601379395, -0.01021115668118, -0.007699968758970499, 0.007253703195601702, -0.004647967405617237, -0.03679041936993599, -0.004515600390732288, -0.033643871545791626, -0.018516231328248978, -0.04244815930724144, 0.03912007808685303, -0.016292467713356018, 0.004905137233436108, 0.006550268270075321, 0.0022388906218111515, 0.014885597862303257, -0.01921210251748562, 0.027502048760652542, -0.004610148258507252, -0.02249480038881302, -0.02862149477005005, 0.026791051030158997, -0.02181405760347843, -0.0058127958327531815, 0.004908919334411621, 0.013796407729387283, -0.021269461140036583, 0.011171761900186539, 0.03352285176515579, -0.00501481257379055, -0.006886858027428389, -0.017926253378391266, -0.00347368442453444, 0.0022369998041540384, -0.02794075198471546, -0.009447211399674416, -0.004421052988618612, -0.01760857366025448, 0.034733060747385025, 0.0006386700551956892, -3.072802064707503e-05, -0.00493161054328084, -0.019605422392487526, 0.034702807664871216, 0.029529154300689697, -0.013841791078448296, -0.015331863425672054, 0.012238260358572006, 0.006799874361604452, 0.008758903481066227, -0.030497321859002113, 0.011784431524574757, -0.014681374654173851, -0.0014721084153279662, -0.006470847874879837, 0.035428933799266815, -0.027502048760652542, 0.015324299223721027, 0.002257800195366144, 0.023402459919452667, -0.021632526069879532, 0.015778128057718277, -0.0202407818287611, -0.004292468074709177, 0.011179326102137566, -0.02595902979373932, 0.0016810590168461204, -0.022086353972554207, -0.03551970049738884, -0.003038764698430896, -0.029362749308347702, -0.005979199893772602, -0.0040277340449392796, 0.013198865577578545, -0.006296880077570677, 0.00960605125874281, -0.012276079505681992, 0.0006060510640963912, -0.027229752391576767, 0.034884337335824966, 0.04801512882113457, 0.00182760797906667, 0.04816640540957451, -0.007662149611860514, -0.006682634819298983, 0.0477730855345726, 0.008191617205739021, 0.018773401156067848, -0.0353684239089489, -0.011587772518396378, 0.044172707945108414, -0.019015444442629814, 0.007015442941337824, -0.009583359584212303, -0.0007393634296022356, 0.04223637282848358, -0.020815633237361908, -0.03890829160809517, -0.0032070595771074295, 0.031556256115436554, 0.0006244878750294447, 0.02373526804149151, -0.0041638826951384544, 0.02184431254863739, -0.0297258123755455, 0.015195714309811592, 0.02096690982580185, 0.018153168261051178, 0.019015444442629814, 0.008214308880269527, 0.030361173674464226, 0.012412228621542454, 0.005782540421932936, -0.018138039857149124, -0.03787961229681969, 0.03930160775780678, -0.010717933066189289, 0.028651749715209007, -0.000781437149271369, 0.03264544904232025, 0.01779010519385338, 0.0020327765960246325, 0.019590293988585472, 0.005468641873449087, 0.040239524096250534, 0.00475764274597168, 0.024219350889325142, 0.030542705208063126, 0.0027381028048694134, 0.00873621180653572, 0.010037189349532127, -0.050375040620565414, 0.05987519770860672, -0.01946927234530449, 0.005529152229428291, -0.008577371947467327, -0.030799875035881996, -0.007420107256621122, -0.012185313738882542, -0.004179010633379221, 0.0021027419716119766, 0.0003945005009882152, -0.01030192244797945, -0.02552032843232155, 0.010324614122509956, -0.014976363629102707, 0.00960605125874281, 0.008607626892626286, -0.0196961872279644, -0.010506145656108856, -0.003534195013344288, 0.007620548829436302, -0.010294359177350998, 0.03300851210951805, -0.027502048760652542, 0.015611724928021431, -0.011270091868937016, -0.009341318160295486, 0.04641159996390343, 0.013735896907746792, -0.00246580527164042, 0.018032146617770195, 0.024158840999007225, 0.020119762048125267, 0.010392689146101475, -0.006860384717583656, 0.0004788843507412821, 0.008501733653247356, 0.0011184999020770192, -0.00039851877954788506, 0.01980208046734333, -0.016489127650856972, 0.011285219341516495, 0.010755752213299274, 0.010823826305568218, 0.006917113438248634, 0.018183423206210136, 0.009099275805056095, 0.044293731451034546, 0.02181405760347843, 0.023099906742572784, -0.004984557628631592, 0.013955247588455677, 0.004197920206934214, 0.0006107784574851394, 0.004958083853125572, 0.016912702471017838, 0.018788529559969902, 0.005725811701267958, -0.002611408941447735, -0.044293731451034546, -0.04051182046532631, -0.03179829940199852, 0.013335014693439007, -0.01957516558468342, -0.01703372225165367, -0.006765836849808693, 0.018213678151369095, -0.02257043868303299, 0.008358021266758442, -0.010876772925257683, 0.012306335382163525, -0.011565080843865871, 0.03125370293855667, -0.004999685101211071, 0.003314844099804759, 0.003948314115405083, -0.020664356648921967, 0.01363756787031889, -0.008789158426225185, -0.02949889749288559, -0.037909865379333496, 0.006951150484383106, -0.020906398072838783, 0.010362433269619942, 0.003876457689329982, -0.024854712188243866, -0.03424897789955139, 0.0040163882076740265, -0.00785880908370018, 0.008191617205739021, -0.006599432788789272, -0.012306335382163525, 0.027592815458774567, 0.009008510038256645, 0.00840340368449688, -0.012109675444662571, 0.021450992673635483, 0.0008112196810543537, 0.044293731451034546, -0.012722345069050789, 0.029362749308347702, -0.03070911020040512, -0.01453009806573391, -0.021012291312217712, 0.027562560513615608, -0.002774030901491642, -0.002741884673014283, 0.004421052988618612, -0.0031125119421631098, 0.031526003032922745, -0.021889695897698402, -0.007673495449125767, 0.009825401939451694, 0.00035266310442239046, 0.0015184368239715695, -0.0006660888902842999, 0.012472739443182945, 0.03394642472267151, 0.0026605736929923296, 0.01644374430179596, -0.024642925709486008, 0.02789536863565445, -0.0014267255319282413, -0.01176173985004425, -0.009946423582732677, 0.024083202704787254, 0.003910494968295097, -0.013266940601170063, -0.0007313268724828959, 0.030905768275260925, -0.012639143504202366, 0.0393923744559288, 0.034914594143629074, -0.015838639810681343, -0.004197920206934214, 0.034642294049263, 0.003399937180802226, -0.023220928385853767, 0.04629058018326759, -0.01409139670431614, -0.0026341003831475973, 0.019938230514526367, -0.0024960606824606657, 0.0025603531394153833, 0.010059881024062634, 0.019408762454986572, 0.0018852821085602045, 0.03778884559869766, 0.01673116907477379, 0.04169177636504173, -0.012934132479131222, 0.031526003032922745, 0.0484992153942585, -0.026246454566717148, -0.0383031852543354, -0.0008258746238425374, 0.0023731484543532133, -0.013955247588455677, -0.015362118370831013, -0.03430948778986931, -0.04072360694408417, 0.013040025718510151, -0.02753230556845665, 0.04368862509727478, -0.03182855620980263, 0.04084462672472, -0.009114403277635574, 0.0011752285063266754, 0.01954491063952446, 0.011118815280497074, 0.016610149294137955, -0.0010655531659722328, 0.031223449856042862, -0.00620989641174674, -0.027138985693454742, -0.006724236067384481, -0.02202584408223629, -0.005264418665319681, 0.00813110638409853, 0.009628742933273315, -0.014068705029785633, 0.04441475123167038, 0.05191805958747864, 0.01724550873041153, 0.012102112174034119, 0.007159155793488026, 0.001482508727349341, -0.013282068073749542, -0.0005431768367998302, -0.014961236156523228, -0.016458872705698013, -0.009946423582732677, 0.03467255085706711, -0.02833406999707222, -0.007957139052450657, 8.67918788571842e-06, 0.0040731169283390045, 0.009265679866075516, -0.0021613615099340677, 0.007662149611860514, 0.00969681702554226, 0.009598487988114357, 0.023493224754929543, 0.008819414302706718, 0.0003564450307749212, 0.00849416945129633, 0.011640719138085842, -0.011179326102137566, -0.015362118370831013, -0.005631263833492994, -0.02818279340863228, -0.019454145804047585, 0.043960921466350555, 0.0022124173119664192, 0.023357076570391655, -0.02629183791577816, -0.011262527666985989, -0.040602587163448334, 0.041812796145677567, -0.00630822591483593, -0.05149448662996292, -0.031162938103079796, -0.005419476889073849, -0.010672549717128277, -0.0008202017052099109, 0.0200592502951622, 0.028016390278935432, 0.0269877091050148, 0.03893854469060898, 0.024083202704787254, -0.02173841930925846, 0.011512134224176407, -0.031677279621362686, -0.030784746631979942, 0.017699338495731354, -0.004625275731086731, -0.012381973676383495, 0.005283328238874674, 0.006463284138590097, 0.003993696998804808, 0.019060825929045677, -0.024854712188243866, -0.01095997542142868, -0.01046832650899887, -0.021420737728476524, -0.02199558913707733, 0.018954932689666748, 0.0026019541546702385, 0.0061682951636612415, 0.002435550093650818, 0.005158525425940752, 0.013826662674546242, 0.01928774081170559, 0.0016328396741300821, -0.007336905226111412, -0.0035625591408461332, -0.0009710054146125913, -0.04435424134135246, 0.01106586866080761, -0.0030898205004632473, 0.0069322409108281136, 0.0014030885649845004, 0.020104633644223213, -0.027728963643312454, -0.0038953672628849745, 0.010763315483927727, -0.004133627749979496, 0.005858178716152906, -0.005430822726339102, -0.009810274466872215, 0.011890324763953686, -0.011459187604486942, -0.021526630967855453, 0.005930034909397364, -0.0371837392449379, -0.0047992439940571785, -0.007299086544662714, -0.006293098442256451, 0.0031011661048978567, -0.0013189411256462336, -0.03727450594305992, -0.019605422392487526, 0.012729909271001816, 0.026201073080301285, -0.039513394236564636, 0.02701796591281891, 0.014991491101682186, 0.0028950520791113377, 0.01983233541250229, 0.046109046787023544, 0.02921147271990776, -0.01105074118822813, -0.02362937293946743, 0.03869650140404701, 0.03760731220245361, 0.0014115979429334402, 0.0009100221213884652, -0.004133627749979496, -0.020180271938443184, 0.018788529559969902, 0.0021462340373545885, 0.029967855662107468, 0.0019439017632976174, -0.0023977309465408325, -0.0019987395498901606, 0.005332493223249912, -0.031919319182634354, -0.0030784746631979942, 0.026594391092658043, 0.0040731169283390045, 0.021798929199576378, 0.021829184144735336, 0.0033507721964269876, 0.022525055333971977, -0.004515600390732288, -0.022782225161790848, -0.03146549314260483, -0.03415821120142937, -0.016141191124916077, -0.028061771765351295, -0.01381909940391779, 0.021617397665977478, -0.02673053927719593, -0.002509297337383032, -0.010256540030241013, -0.018970061093568802, 0.020119762048125267, -0.0034888118971139193, 0.001773715834133327, 0.00621746014803648, 0.03694169595837593, 0.013372833840548992, 0.004349196329712868, 0.017306020483374596, 0.009288370609283447, -0.007363379001617432, -0.014719193801283836, 0.02155688777565956, -0.0030898205004632473, -0.004330286756157875, 0.01804727502167225, -0.008176489733159542, 0.016307596117258072, 0.0029404349625110626, 0.00013626694271806628, -0.02960479073226452, -0.002581153530627489, -0.003723290516063571, -0.004886227659881115, -0.005740939173847437, 0.005979199893772602, -0.00031768044573254883, -0.0049959030002355576, -0.016579894348978996, -0.010733060538768768, -0.02435550093650818, -0.011557516641914845, -0.03446076437830925, 0.010309486649930477, 0.006240151356905699, -0.005351402796804905, -0.025081627070903778, 0.0006041601300239563, -0.00033422629348933697, -0.013251813128590584, -0.009371573105454445, 0.03912007808685303, -0.022918375208973885, -0.0062704067677259445, 0.00045382921234704554, -0.032615192234516144, -0.01834982819855213, -0.007537346798926592, -0.005597226787358522, -0.018107784911990166, -0.02975606732070446, -0.029922472313046455, 0.008955562487244606, -0.029483770951628685, -0.0065313586965203285, -0.0045496379025280476, -0.03346233814954758, 0.04495934769511223, 0.020331548526883125, 0.02552032843232155, -0.005930034909397364, -0.022116608917713165, -0.008600063621997833, 0.002112196758389473, -0.012117239646613598, -0.040935393422842026, -0.010143082588911057, -0.023024268448352814, -0.01406114175915718, 0.011179326102137566, 0.019923102110624313, -0.0383031852543354, 0.002579262712970376, 0.039906714111566544, -0.009689253754913807, -0.033855658024549484, 0.00703057087957859, -0.0360945500433445, -0.016564765945076942, 0.0033205170184373856, -0.01881878450512886, -0.004265994299203157, 0.027592815458774567, 0.02657926268875599, -0.01363756787031889, -0.010165774263441563, 0.005343839060515165, 0.000890167080797255, -0.0042773401364684105, -0.028288686648011208, 0.021965334191918373, -0.05421746149659157, -0.024037819355726242, -0.011723920702934265, 0.012351717799901962, -0.007208320312201977, 0.00794957485049963, 0.014038450084626675, 0.008426095359027386, -0.026503626257181168, -0.0033658999018371105, 0.020119762048125267, -0.024703435599803925, 0.013751024380326271, 0.004852190613746643, -0.011708793230354786, 0.019091080874204636, -0.007253703195601702, -0.002095178235322237, 0.003256224561482668, -0.004311377182602882, -0.013168610632419586, 0.014613300561904907, 0.029877088963985443, -0.017714466899633408, -0.016791680827736855, 0.02300914004445076, -0.018622124567627907, 0.015399937517940998, -0.006323353387415409, -0.03397667780518532, 0.0010693350341171026, 0.030149387195706367, -0.015271352604031563, -0.006194768473505974, 0.003872675821185112, 0.020513080060482025, 0.010241412557661533, 0.003993696998804808, 0.022298142313957214, -0.014303184114396572, 0.0014758903998881578, 0.020301293581724167, 0.00011008903675246984, -0.0012773401103913784, -0.01026410423219204, -0.0353684239089489, 0.002828868804499507, -0.023402459919452667, -0.001619603019207716, 0.0040277340449392796, 0.006754491478204727, 0.015301607549190521, 0.011746612377464771, -0.015611724928021431, -0.00042475576628930867, -0.000397336931200698, 0.014144343324005604, -0.013017334043979645, 0.009416955523192883, -0.0036854713689535856, 0.03727450594305992, 0.017411913722753525, 0.013100536540150642, 0.013508982956409454, -0.024037819355726242, 0.01739678531885147, 0.0229788850992918, 0.030754491686820984, 0.022479673847556114, -0.0019628112204372883, 0.016247086226940155, -0.004829498939216137, 0.000394027738366276, 0.027365900576114655, 0.003091711550951004, 0.02483958564698696, 0.00548755144700408, 0.0011969745391979814, -0.0026170816272497177, -0.01332745049148798, -0.042871732264757156, 0.004746296908706427, 0.00011345730308676139, -0.00849416945129633, -0.012109675444662571, -0.025626221671700478, 0.0027626852970570326, -0.0005734321312047541, 0.002694610971957445, 0.006538922432810068, 0.046260323375463486, 0.022555312141776085, 0.02771383710205555, 0.005411913152784109, -0.022267885506153107, 0.05421746149659157, 0.0012017019325867295, 0.004205483943223953, 0.005858178716152906, 0.0013529782881960273, -0.0013879609759896994, -0.006981405895203352, 0.005071541294455528, -0.02884840965270996, -0.009832966141402721, 0.0052568549290299416, 0.015944533050060272, 0.004855972249060869, -0.02362937293946743, -0.02008950524032116, -0.022736843675374985, -0.003299716394394636, -0.030240152031183243, 0.006440592929720879, -0.017109360545873642, 0.012540813535451889, -0.017442168667912483, -0.018728017807006836, -0.033674128353595734, 2.5409708541701548e-05, -0.0009851875947788358, 0.03125370293855667, -0.017336275428533554, -0.029438387602567673, -0.020543335005640984, 0.001341632567346096, -0.01216262299567461, -0.0008665301138535142, -0.011073432862758636, 0.01910620927810669, 0.0008594390237703919, -0.017169872298836708, -0.007881500758230686, 0.004734951537102461, -0.008547117002308369, 0.01142893172800541, 0.030572960153222084, -0.01874314621090889, 0.03709297254681587, -0.041268203407526016, 0.022691460326313972, -0.005018594674766064, -0.007060825824737549, 0.009341318160295486, -0.022630950435996056, 0.0014059250243008137, 0.00283075962215662, -0.01928774081170559, 0.012866057455539703, 0.0019987395498901606, -0.005241727456450462, -0.01954491063952446, 0.011875197291374207, 0.01062716729938984, -0.020255910232663155, -0.015157895162701607, -0.030527576804161072, 0.006194768473505974, 0.0011827923590317369, -0.01918184757232666, -0.01406114175915718, 0.013047589920461178, 0.011875197291374207, -0.018501102924346924, -0.0007180901593528688, -0.007450362667441368, -0.014757012948393822, -0.0011345730163156986, 0.0014021431561559439, -0.013531673699617386, -0.00021509613725356758, 0.012669398449361324, -0.017744721844792366, -0.023674756288528442, 0.0114894425496459, -0.01597478799521923, -0.009197604842483997, -0.004886227659881115, 0.017517806962132454, 0.006179641000926495, -0.003490702947601676, 0.017184998840093613, -0.008554680272936821, 0.014409077353775501, 0.008947999216616154, 0.0028988339472562075, -0.016171447932720184, -0.005650173407047987, 0.0023807124234735966, 0.0038670029025524855, 0.02884840965270996, 0.010642294771969318, -0.01680680736899376, 0.004371888004243374, 0.001993066631257534, 0.00228805560618639, 0.04017901048064232, 0.024960605427622795, -0.001380397123284638, -0.003494484815746546, -0.03185880929231644, -0.0008826032280921936, -0.0018606997327879071, 0.007760479114949703, 0.0013170501915737987, 0.0034093919675797224, -0.041298456490039825, -0.0018096439307555556, 0.02939300425350666, -0.021965334191918373, 0.004254648927599192, 0.017200127243995667, 0.010816263034939766, -0.01123227272182703, -0.004663094878196716, -0.013350142166018486, 0.016307596117258072, -0.012858494184911251, 0.01794138178229332, -0.003271352266892791, 0.0383031852543354, -0.021602269262075424, -0.009416955523192883, -0.01480239536613226, 0.01983233541250229, 0.016322724521160126, 0.0013104318641126156, -0.04616955667734146, 0.004262212663888931, 0.004303813446313143, -0.010876772925257683, 0.013856918551027775, -0.01801702007651329, -0.0200592502951622, -0.008433659560978413, -0.01871289126574993, 0.03485408425331116, -0.007117554545402527, 0.05591175705194473, 0.01354680210351944, -0.01954491063952446, -0.018697762861847878, 0.000269224721705541, 0.0025565712712705135, 0.034006934612989426, -8.17247127997689e-05, -0.02213173732161522, -0.01626221276819706, 0.0034434290137141943, 0.01013551838696003, 0.0078058624640107155, -0.009764892049133778, -0.0010277340188622475, 0.011875197291374207, 0.011897888965904713, 0.013289631344377995, 2.8881382604595274e-05, -0.009485030546784401, -0.0015600378392264247, -0.0067355819046497345, -0.0013898519100621343, -0.0015430193161591887, 0.01150457002222538, -0.03512638062238693, 0.025656476616859436, 0.003959659952670336, -0.008047904819250107, 0.005207689944654703, 0.005933817010372877, -0.015914278104901314, 0.004035297781229019, 0.011285219341516495, -0.0098480936139822, 0.01323668472468853, 0.013539237901568413, 0.01088433712720871, 0.0023239837028086185, -0.00776804331690073, -0.0009974787244573236, -0.01834982819855213, -0.0007970375590957701, -0.008123543113470078, -0.011587772518396378, 0.027305390685796738, 0.014371258206665516, 0.009190041571855545, 0.01217775046825409, -0.012109675444662571, 0.030164513736963272, -0.010067444294691086, 0.008501733653247356, 0.003993696998804808, 0.01061203982681036, -0.021027419716119766, 0.020074378699064255, -0.02520264871418476, -0.008176489733159542, 0.006281752604991198, 0.023387331515550613, 0.00475764274597168, 0.012147494591772556, -0.013561929576098919, -0.02629183791577816, -0.01983233541250229, -0.0045496379025280476, -0.0003325717116240412, -0.007287740707397461, 0.013319887220859528, -0.004156318958848715, 0.0019836118444800377, 0.004209266044199467, 0.006493539549410343, -0.007681059185415506, -0.011716357432305813, -0.007272612769156694, 0.01114150695502758, 0.022812481969594955, -0.011655846610665321, -0.020815633237361908, -0.032221872359514236, 0.010786007158458233, -0.013100536540150642, 0.01783548854291439, -0.011663410812616348, -0.05119193345308304, -0.014325874857604504, 0.009878348559141159, -0.005514024756848812, 0.030467066913843155, -0.0022180902305990458, -0.03201008588075638, 0.04453577101230621, 0.011958399787545204, -0.00045902933925390244, 0.00548755144700408, -0.005442168563604355, -0.006867948453873396, -0.006803655996918678, -0.0015553104458376765, -0.0018597542075440288, 0.020951781421899796, 0.006535140331834555, 0.003110620891675353, 0.0017425150144845247, 0.01522596925497055, 0.0036873621866106987, 0.004893791396170855, 0.03494484722614288, 0.03140497952699661, -0.009651434607803822, -0.008410967886447906, 0.02512701041996479, 0.01270721759647131, 0.008146233856678009, 0.0046404036693274975, 0.019121337682008743, 0.00796470232307911, 0.008524425327777863, -0.027123859152197838, 0.00020008668070659041, -0.01217775046825409, -0.007461708504706621, 0.0007355815032497048, 0.02735077403485775, -0.0071251182816922665, 0.014083832502365112, 0.030361173674464226, -0.02618594467639923, 0.02045257017016411, -0.01124740019440651, 0.004069335293024778, -0.008267255499958992, -0.011005357839167118, -0.0024544596672058105, -0.02166278101503849, -0.010180901736021042, 0.009364008903503418, 0.014159470796585083, 0.0023769305553287268, -0.012624016031622887, -0.005854396615177393, 0.017094234004616737, -0.05076836049556732, -0.02308477833867073, -0.031707532703876495, 0.015732746571302414, -0.020558463409543037, 0.004644185304641724, -0.008078159764409065, -0.020104633644223213, -0.01853135973215103, -0.004961865954101086, 0.015006618574261665, 0.009658997878432274, 0.014341002330183983, 0.006455720402300358, -0.03766782209277153, 0.020255910232663155, -0.05582099035382271, 0.003997479099780321, -0.02468830905854702, 0.0015600378392264247, -0.003547431668266654, 0.02089127153158188, -0.008811850100755692, 0.02359911799430847, 0.006765836849808693, 0.015218405984342098, 0.015853766351938248, -0.043265052139759064, -0.012956824153661728, 0.01077844388782978, 0.002654900774359703, -0.005226599518209696, -0.016973212361335754, -0.005793886259198189, -0.003063347190618515, 0.025142136961221695, -0.011640719138085842, 0.019121337682008743, -0.026155689731240273, -0.012117239646613598, -0.007972266525030136, -0.024491649121046066, -0.023614246398210526, 0.012215569615364075, -0.014976363629102707, -0.004239520989358425, 0.005922471173107624, -0.007783170789480209, 0.004383233841508627, 0.02148124948143959, -0.009658997878432274, 0.0231604166328907, 0.046109046787023544, -0.02657926268875599, 0.014454459771513939, -0.005147179588675499, -0.011920580640435219, -0.021269461140036583, -0.04474755749106407, -0.011217145249247551, -0.00365521595813334, -0.015150331892073154, -0.004341632593423128, -0.016126064583659172, 0.023357076570391655, -0.02851560153067112, 0.012548377737402916, 0.02833406999707222, 0.025187520310282707, -0.023311693221330643, 0.02381090633571148, 0.004598802421241999, 0.02381090633571148, 0.0009336590301245451, -0.0063157896511256695, 0.0010797353461384773, -0.00882697757333517, 0.036850932985544205, 0.018168294802308083, -0.0036873621866106987, -0.0066788531839847565, 0.010014497675001621, -0.020830759778618813, 0.013448472134768963, 0.028197921812534332, -0.030421683564782143, -0.00613425811752677, -0.01739678531885147, 0.02210148237645626, -0.016746297478675842, -0.024083202704787254, -0.01150457002222538, 0.00620989641174674, -0.013387961313128471, 0.009727072902023792, -0.008683265186846256, -0.0047992439940571785, -0.03073936514556408, 0.013463599607348442, -0.02187456749379635, -0.013198865577578545, 0.007491963915526867, 0.02614056132733822, 0.010944847948849201, 0.011391112580895424, -0.013660258613526821, 0.006610778626054525, 0.02807690016925335, 0.0023674757685512304, 0.024446265771985054, -0.01685219071805477, -0.0009757328080013394, 0.021360227838158607, -0.0034717933740466833, -0.006304443813860416, -0.00940939225256443, 0.009984242729842663, -0.006599432788789272, 0.0014305075164884329, -0.022948630154132843, -0.023795777931809425, 4.538291977951303e-05, 0.021163567900657654, -0.010143082588911057, 0.006501103285700083, 0.030542705208063126, 0.00873621180653572, -0.010022061876952648, -0.0004814844287466258, 0.011133942753076553, -0.001239520963281393, 0.002583044581115246, -0.024854712188243866, -0.013009770773351192, -0.008547117002308369, -0.00595272658392787, -0.02786511369049549, -0.013032461516559124, -0.01608068123459816, -0.014983927831053734, 0.003764891531318426, -0.0022710368502885103, 0.016216829419136047, 0.017623700201511383, -0.007204538676887751, -0.01750268042087555, -0.016912702471017838, 0.01004475262016058, 0.0008915853104554117, 0.0013983611715957522, 0.011292783543467522, 0.012646706774830818, -0.0013274503871798515, -0.006243933457881212, -0.006436810828745365, -0.006720453966408968, -0.00501481257379055, 0.004345414694398642, 0.00042995589319616556, 0.0011733375722542405, -0.009280807338654995, 0.0070230066776275635, -0.010180901736021042, 0.07122092694044113, 0.006410337518900633, 0.008093287236988544, -0.011254964396357536, -0.007726442068815231, -0.03978569433093071, -0.004156318958848715, 0.020074378699064255, 0.02629183791577816, 0.0033677909523248672, -0.0100296251475811, -0.007597857154905796, 0.016534510999917984, 0.011973527260124683, -0.022192247211933136, 0.02107280306518078, 0.016640404239296913, 0.027396155521273613, -0.0007384179043583572, 0.018183423206210136, 0.00767727755010128, -0.01453009806573391, -0.02093665301799774, 0.01889442279934883, -0.0040126065723598, 0.03676016628742218, -0.022404035553336143, -0.0041752285324037075, 0.009621178731322289, 0.021239206194877625, -6.3228806538973e-05, -0.020150016993284225, 0.0025773716624826193, -0.0013340687146410346, 0.001636621542274952, 0.013024898245930672, 0.0020649228245019913, 0.011958399787545204, 0.0007951465668156743, -0.006811219733208418, 0.0010390797397121787, 0.021314844489097595, 0.008917744271457195, 0.020724866539239883, 0.0004474472370930016, -0.013660258613526821, -0.010551529005169868, 0.002842105459421873, 0.015452884137630463, -0.005374094005674124, -0.024884967133402824, -0.006546486169099808, -0.0019183738622814417, 0.020255910232663155, 0.001938228844664991, -0.0015921840677037835, 0.022963756695389748, 0.0020119762048125267, 0.01021115668118, -0.0016942956717684865, -0.022994013503193855, 0.015006618574261665, -0.0036703436635434628, -0.01983233541250229, -0.01856161467730999, -0.009923731908202171, -0.003681689500808716, -0.010543964803218842, -0.0005861960235051811, -0.006720453966408968, -0.024098331108689308, 0.013834226876497269, -0.001775606768205762, -0.018243933096528053, 0.0029555626679211855, 0.013781280256807804, -0.015157895162701607, 0.01936337910592556, 0.02122407965362072, 0.00566908298060298, 0.015074693597853184, 0.0116709740832448, -0.021360227838158607, -0.012624016031622887, 0.0027191932313144207, 0.0033205170184373856, 0.030981406569480896, -0.027653325349092484, -0.0035285220947116613, -0.027955878525972366, -0.025550583377480507, -0.004209266044199467, 0.0006259061046876013, 0.018501102924346924, 0.004405925050377846, -0.004591238684952259, -0.018652379512786865, 0.0006504885386675596, 0.016473999246954918, -0.005971635691821575, 0.003963441587984562, 0.015346990898251534, -0.011088560335338116, 0.0007209266186691821, 0.017351403832435608, -0.006644815672188997, 0.019060825929045677, -0.0027834856882691383, -0.032826978713274, 0.007889064028859138, 0.0012187204556539655, -0.023614246398210526, -0.0008405295084230602, 0.0024714781902730465, -0.024279862642288208, 0.016867319121956825, 0.025913648307323456, -0.012639143504202366, -0.026170818135142326, -0.0202407818287611, 0.005374094005674124, 0.008138670586049557, -0.0074427989311516285, -0.012321462854743004, 0.00776804331690073, -0.0011865742271766067, -0.006228805985301733, -0.013040025718510151, -0.005627482198178768, 0.0022748189512640238, -0.0005152852390892804, 0.007265049032866955, 0.011239836923778057, 0.0036155059933662415, 0.02742641232907772, 0.0014758903998881578, -0.009961551055312157, -0.025716988369822502, 0.02639773115515709, -0.0055178068578243256, 0.01592940464615822, -0.003944532014429569, 0.0028610150329768658, 0.023614246398210526, 0.003872675821185112, 0.019862592220306396, -0.01133816596120596, -0.013244248926639557, -0.005529152229428291, -0.01574787311255932, 0.028107155114412308, -0.03388591483235359, 0.0015401828568428755, -0.011867634020745754, -0.0008135833777487278, 0.00283454149030149, -0.03164702281355858, 0.041510242968797684, -0.025369051843881607, -0.0075449105352163315, 0.008327765390276909, -0.00011895288480445743, -0.013705641962587833, -0.004126064013689756, 0.004458872135728598, 0.010551529005169868, 0.022010715678334236, 0.03084525838494301, 0.010982667095959187, -0.0010570439044386148, -0.0022691460326313972, 0.007790734525769949, 0.011179326102137566, -0.023901671171188354, 0.013372833840548992, 0.0031200756784528494, 0.004137409385293722, -0.0027343209367245436, -0.02173841930925846, 0.00847904197871685, 0.012669398449361324, -0.0015685472171753645, 0.022449417039752007, 0.001033406937494874, -0.011882761493325233, -0.016247086226940155, 0.0063271354883909225, -0.00274377572350204, -0.00829751044511795, 0.0066788531839847565, 0.0003488812071736902, 0.010581783950328827, 0.006652379874140024, 0.005529152229428291, -0.011133942753076553, -0.010309486649930477, 0.02942325919866562, 0.026201073080301285, 0.014741885475814342, -0.013977939262986183, 0.0010560983791947365, 0.00880428683012724, -0.0006131421541795135, 0.013924992643296719, -0.009651434607803822, -0.004265994299203157, -0.01856161467730999, -0.024930350482463837, -0.011875197291374207, 0.0004911755677312613, -0.037758588790893555, -0.03818216174840927, 0.005858178716152906, -0.004610148258507252, -0.0035625591408461332, 0.0032221872825175524, 0.006001891102641821, 0.001680113491602242, 0.020392058417201042, -0.004023952409625053, 0.017290892079472542, -0.000998424249701202, 0.02114844135940075, 0.00014477624790742993, -0.022872991859912872, 0.004655531141906977, 0.005638828035444021, 0.014219981618225574, 0.015853766351938248, 0.01142893172800541, 0.01856161467730999, -0.01600504294037819, 0.00047722976887598634, 0.01834982819855213, -0.010559093207120895, 0.01579325646162033, 0.016685787588357925, 0.0017330602277070284, 0.028818154707551003, -0.02031642012298107, -0.00023506933939643204, -0.003097384236752987, 0.0029858178459107876, -0.019302869215607643, 0.005986763630062342, -0.016655530780553818, -0.0005044122226536274, 0.007673495449125767, 0.002547116484493017, -2.6517689548199996e-05, -0.005468641873449087, -0.006232587620615959, 0.006058619823306799, 0.014734321273863316, 0.01168610155582428, -0.004999685101211071, -0.008055468089878559, 0.015165459364652634, 0.001437125843949616, -0.02013488858938217, 0.006928459275513887, 0.015036874450743198, -0.02176867425441742, -0.01061203982681036, 0.00804034061729908, 0.020361803472042084, -0.028424834832549095, -0.0010901355417445302, 0.0024582415353506804, 0.001152537064626813, 0.016912702471017838, 0.00375543674454093, 0.01518815103918314, 0.003884021658450365, -0.002329656621441245, -0.0002545698080211878, 0.011618027463555336, -0.021904822438955307, 0.009507722221314907, 0.02195020578801632, 0.005555626004934311, 0.007382288575172424, 0.02027103677392006, -0.010763315483927727, 0.004050425719469786, -0.023130161687731743, -0.0019722660072147846, 0.011754176579415798, -0.009144658222794533, 0.016126064583659172, 0.007246139459311962, -0.011239836923778057, 0.014477151446044445, -0.004678222816437483, -0.007904191501438618, 0.012775291688740253, -0.015657108277082443, 0.004001260735094547, 0.013993066735565662, -0.005979199893772602, 0.003318625967949629, 0.0018852821085602045, -0.008395840413868427, -0.025293413549661636, 0.008637882769107819, 0.008577371947467327, 0.014431769028306007, 0.008690829388797283, -0.0009109675884246826, 0.015218405984342098, -0.002229436067864299, -0.006323353387415409, -0.0158688947558403, -0.0022237631492316723, -0.026624646037817, -0.011307911016047001, 0.012472739443182945, 0.00957579631358385, -0.026639774441719055, 0.002995272632688284, 0.00035786323132924736, 0.0004098645003978163, -0.020180271938443184, 0.022116608917713165, 0.0007431452977471054, 0.009628742933273315, 0.02231326885521412, 0.01801702007651329, 0.010559093207120895, -0.02486984059214592, 0.023462969809770584, 0.004455090034753084, -0.015241097658872604, -0.005790104158222675, -0.0031446581706404686, 0.016277341172099113, -0.005264418665319681, -0.0016668768366798759, -0.014847778715193272, 0.011096123605966568, -0.004806807730346918, -0.013448472134768963, -0.008010085672140121, -0.00033351717866025865, 0.019484400749206543, 0.006818783935159445, 0.017774976789951324, -0.0116709740832448, 0.019529784098267555, 0.012223132885992527, 0.00978758279234171, -0.01270721759647131, 0.03727450594305992, 0.00712890038266778, -0.01721525378525257, -0.0165950208902359, 0.01555121410638094, 0.017971636727452278, -0.02129971794784069, 0.016867319121956825, -0.01194327138364315, 0.02093665301799774, -0.003876457689329982, -0.005498897284269333, 0.004961865954101086, 0.0011733375722542405, -0.01297951489686966, 0.017306020483374596, -0.026670029386878014, -0.00036684528458863497, -0.0010750079527497292, -0.029150962829589844, -0.017623700201511383, -0.00356445019133389, -0.01794138178229332, 0.006852820981293917, -0.014484715647995472, -0.00759407551959157, -0.005203908309340477, -0.013282068073749542, 0.0419338196516037, -0.008547117002308369, -0.014832651242613792, -0.0171396154910326, 0.009825401939451694, 0.019862592220306396, 0.018259061500430107, -0.0024185313377529383, 0.0024847148451954126, -0.001011660904623568, -0.014522534795105457, 0.006610778626054525, -0.016837064176797867, -0.0007166719296947122, -0.0029385441448539495, 0.021208951249718666, -0.02453703247010708, 0.014930980280041695, -0.0017566971946507692, -0.005521588493138552, 0.0033772457391023636, -0.002929089358076453, 0.01553608663380146, 0.002127324463799596, 0.004988339263945818, -0.017457297071814537, -0.0021235423628240824, 0.016110936179757118, 0.01830444484949112, -0.005839269142597914, -0.00046115665463730693, 0.014363694004714489, -0.017729593440890312, -0.008229436352849007, 0.0038291839882731438, -0.019136464223265648, 0.014598173089325428, -0.02228301391005516, -0.0036287426482886076, 0.006943586748093367, 0.017260637134313583, -0.009825401939451694, 0.01579325646162033, 0.007526000961661339, 0.017593445256352425, -0.00940939225256443, 0.021466121077537537, 0.007643240038305521, -0.010453199036419392, 0.009439647197723389, -0.018425466492772102, -0.016655530780553818, -0.0016441853949800134, -0.0019023007480427623, -0.03216136246919632, -0.012563505209982395, 0.03485408425331116, -0.02461267076432705, -0.0005899779498577118, 0.030073748901486397, -0.015089821070432663, -0.013766152784228325, -0.011103687807917595, 0.001884336699731648, 0.011708793230354786, 0.01406114175915718, 0.009492593817412853, 0.01768421195447445, -0.006353608798235655, -0.012026473879814148, -0.004023952409625053, 0.012608887627720833, 0.0026965017896145582, 0.0034680115059018135, -0.008017648942768574, -0.011572645045816898, -0.009734636172652245, 0.021178696304559708, 0.01925748586654663, -0.03694169595837593, 0.0003937913861591369, -0.001041916199028492, -0.001938228844664991, 0.007196974940598011, -0.01943901740014553, 0.006667507346719503, 0.005498897284269333, -0.000499212124850601, -0.003855657298117876, -0.003581468714401126, -0.015778128057718277, 0.012313898652791977, 0.012661835178732872, -0.01044563576579094, 0.004621494095772505, 0.011708793230354786, -0.0012858493719249964, 0.010188465937972069, 0.002140561118721962, -0.004523164592683315, -0.009764892049133778, -0.0020497951190918684, -0.009016073308885098, 0.0034566656686365604, 0.033311061561107635, -0.023689884692430496, 0.014204854145646095, 0.018546486273407936, 0.015324299223721027, 0.008093287236988544, -0.002255909377709031, 0.004515600390732288, 0.018606998026371002, -0.009174914099276066, 0.01194327138364315, 0.004508036654442549, -0.01536968257278204, 0.016579894348978996, 0.003549322485923767, 0.00993885938078165, 0.00440214341506362, -0.010952411219477654, 0.008622754365205765, 0.009220296517014503, 0.016821935772895813, 0.013698077760636806, -0.003914277069270611, 0.0269877091050148, 0.03176804259419441, 0.018259061500430107, 0.013569492846727371, 0.020876143127679825, -0.0061682951636612415, 0.015944533050060272, -0.002358020981773734, 0.029877088963985443, 0.003403719048947096, 0.01680680736899376, 0.001487236120738089, 0.0032600064296275377, 0.0025414435658603907, -0.01504443772137165, -0.0012537031434476376, 0.012911440804600716, -0.0016942956717684865, -0.0053589665330946445, 0.023689884692430496, 0.0015931295929476619, 0.016277341172099113, 0.0046404036693274975, -0.0229788850992918, 0.005135833751410246, -0.010105263441801071, 0.005166089162230492, 0.0033677909523248672, 0.006750709377229214, 0.017532935366034508, 0.014976363629102707, 0.03452127426862717, -2.8733651561196893e-05, 0.019741570577025414, -0.017381658777594566, 0.02191995084285736, -0.016126064583659172, -0.0080252131447196, -0.009129530750215054, -0.007446581032127142, 0.0030746927950531244, -0.020649228245019913, 0.006739363539963961, -0.004700914025306702, 0.00027773401234298944, 0.01297951489686966, 0.003653325140476227, 0.015339426696300507, -0.014666247181594372, -0.01416703499853611, 0.0015780020039528608, -0.00014595809625461698, 0.029377877712249756, -0.012018909677863121, -0.021345099434256554, -0.01600504294037819, 0.00822187215089798, -0.0029347622767090797, 4.171919499640353e-05, 0.00777560705319047, -0.006414119154214859, 0.009749763645231724, 0.01636810600757599, -0.000476520654046908, -0.0158688947558403, -0.008252128027379513, 0.011731484904885292, 0.006062401924282312, 0.0082067446783185, -0.017911124974489212, 0.0013028680114075541, 0.010664986446499825, 0.0003200441424269229, 0.011111252009868622, -0.005918689072132111, -0.007007879205048084, -0.010823826305568218, 0.01305515319108963, 0.02538418024778366, -0.012684525921940804, 0.012790420092642307, 0.005177434999495745, -0.02836432494223118, 0.02293350175023079, -0.008342893794178963, -0.009371573105454445, 0.010861645452678204, 0.010105263441801071, -0.013879609294235706, 0.006444374565035105, 0.002726757200434804, -0.02515726536512375, -0.017260637134313583, -0.013955247588455677, -0.007234794087707996, 0.0014305075164884329, 0.005941380746662617, 0.013887173496186733, -0.008547117002308369, 0.004326505120843649, -0.015082256868481636, 0.006845257245004177, -0.013463599607348442, 0.005253072828054428, 0.0014333438593894243, 0.022782225161790848, 0.0017113143112510443, -0.0016886228695511818, -0.010438071563839912, -0.0011515916557982564, 0.011474315077066422, 0.004065553192049265, -0.02836432494223118, 0.0015553104458376765, -0.002670028479769826, -0.006569177843630314, 0.019378507509827614, -0.009560668841004372, -0.019938230514526367, 0.0195146556943655, 0.014825087040662766, 0.019091080874204636, -0.008645446039736271, 0.005873306188732386, 0.008985818363726139, -0.01502174697816372, -0.029967855662107468, 0.008917744271457195, 0.0015364009886980057, -0.02381090633571148, 0.00831263791769743, 0.0011374094756320119, -0.0441121980547905, -0.0028988339472562075, -0.003405609866604209, 0.006523794960230589, 0.004057989455759525, 0.019560039043426514, -0.006667507346719503, 0.008055468089878559, -0.008214308880269527, 0.006652379874140024, -0.006754491478204727, -0.01928774081170559, 0.02523290365934372, -0.016413489356637, 0.009129530750215054, 0.004144973587244749, -0.007147809956222773, 0.013660258613526821, -0.044505517929792404, 0.007643240038305521, -0.0010248975595459342, -0.014590608887374401, -0.03216136246919632, -0.005374094005674124, -0.0037043809425085783, 0.009537977166473866, -0.018606998026371002, -0.003974787425249815, 0.005340056959539652, 0.012215569615364075, -0.026049796491861343, 0.00017420423682779074, 0.014129215851426125, -0.009628742933273315, 0.0040126065723598, 0.007620548829436302, 0.0010305704781785607, -0.011444060131907463, -0.03125370293855667, 0.009901040233671665, -0.021904822438955307, -0.009583359584212303, 0.01354680210351944, 0.0066221244633197784, -0.00010796171409310773, -1.523105129308533e-05, -0.0038670029025524855, -0.004961865954101086, -0.041298456490039825, -0.012911440804600716, -0.004039079882204533, -0.022585567086935043, 0.005052631720900536, 0.007571383845061064, -0.017442168667912483, 0.0023769305553287268, 0.01030192244797945, -0.015089821070432663, -0.00969681702554226, -0.030164513736963272, -0.014303184114396572, -0.014749448746442795, -0.008645446039736271, 0.009265679866075516, -0.00915222242474556, 0.006792310159653425, -0.00840340368449688, 0.024385755881667137, 0.002390167210251093, -0.003258115379139781, -0.001649858197197318, 0.0033450995106250048, -0.0003252442693337798, 0.0014314529253169894, -0.014643555507063866, -0.014991491101682186, -0.014235109090805054, 0.028893793001770973, -0.007291522342711687, -0.019862592220306396, 0.005381657741963863, -0.003125748597085476, -0.0032467697747051716, -0.004107154440134764, 0.010891900397837162, 0.013486291281878948, -0.008781595155596733, -0.002185944002121687, 0.014462023973464966, -0.010415379889309406, 0.009273243136703968, 0.01703372225165367, -0.0025338795967400074, 0.006020800676196814, 0.011549953371286392, -0.01571761816740036, 0.0010693350341171026, 0.01062716729938984, -0.002613299759104848, 0.003036873647943139, 0.0158688947558403, -0.019635677337646484, -0.04281122237443924, -0.0002869524178095162, 0.0016895682783797383, 0.01819855161011219, -0.00942451972514391, -0.013947684317827225, 0.019711315631866455, -0.017895998433232307, -0.0016460763290524483, -0.012185313738882542, -0.013040025718510151, 0.008562244474887848, -0.005763630848377943, 0.0012886858312413096, -0.003948314115405083, 0.007503309287130833, -0.00456854747608304, 0.0015052001690492034, -0.002715411363169551, 0.0114894425496459, 0.016110936179757118, -0.013297195546329021, 0.0060661835595965385, -0.008138670586049557, 0.013924992643296719, -0.00847904197871685, -0.006353608798235655, -0.0005129215423949063, 0.01954491063952446, 0.01972644217312336, -0.00889505259692669, -0.022963756695389748, -0.02515726536512375, -0.015959659591317177, -0.020573589950799942, 0.00046706589637324214, -0.0015723290853202343, 0.0029820359777659178, 0.009439647197723389, 0.005279546603560448, -0.015808383002877235, -0.04208509624004364, -0.009167349897325039, -0.018440593034029007, 0.008380712941288948, 0.03270595893263817, 0.013002206571400166, 0.005604790523648262, 0.01841033808887005, 0.006364954635500908, 0.002539552515372634, -0.019711315631866455, -0.009356445632874966, 0.02812228351831436, -0.0029404349625110626, 0.011459187604486942, -0.004001260735094547, -0.009311062283813953, -0.00025929720140993595, 0.0002826977870427072, 0.015596596524119377, -0.0027513394597917795, -0.0005323038203641772, -0.0017500788671895862, 0.005956508219242096, -0.0171396154910326, 0.02440088428556919, 0.02719949744641781, -0.008925307542085648, 0.02285786345601082, -0.009250551462173462, -0.012003782205283642, 0.015203278511762619, 0.001263157930225134, -0.010808698832988739, 0.0033242988865822554, -7.397622994176345e-06, -0.011746612377464771, 0.01390986517071724, -0.018213678151369095, -0.0018701545195654035, 0.013811535201966763, -0.015672234818339348, -0.02771383710205555, 0.005052631720900536, -0.015309171751141548, -0.014976363629102707, 0.006141821853816509, -0.005911125335842371, -0.003914277069270611, 0.002182162133976817, -0.009931296110153198, 0.013614876195788383, -0.014719193801283836, 0.0010929720010608435, 0.00456854747608304, -0.005203908309340477, 0.010006933473050594, 0.005150961223989725, 0.00686416681855917, -0.029998110607266426, 0.0032032777089625597, 0.01972644217312336, -0.003507721470668912, 0.013569492846727371, -0.013781280256807804, 0.013758588582277298, -0.008320202119648457, -0.015884021297097206, 0.006898203864693642, 0.01579325646162033, -0.010097700171172619, -0.003815947100520134, -0.0034661204554140568, 0.01418216247111559, -0.00356066832318902, -0.005468641873449087, 0.02137535624206066, -0.012109675444662571, 0.007881500758230686, 0.017048850655555725, 0.004871100187301636, -0.0005020485259592533, 0.0023977309465408325, -0.010483454912900925, -0.007881500758230686, 0.018077529966831207, -0.021889695897698402, -0.014590608887374401, 0.0012423574225977063, -0.015505830757319927, -0.00882697757333517, 0.013660258613526821, 0.0042773401364684105, 0.019408762454986572, 0.010460763238370419, 0.00402017030864954, -0.019590293988585472, 0.0013075954047963023, -0.006871730554848909, 0.012578632682561874, 0.010430507361888885, -0.014726758003234863, -0.005846832878887653, -0.010233848355710506, -0.00510557834059, -0.014159470796585083, 0.007957139052450657, 0.02830381505191326, 0.02647336944937706, -0.00604349235072732, 0.01662527583539486, -0.013024898245930672, -0.013561929576098919, -0.02129971794784069, 0.028833281248807907, 7.906555401859805e-05, -0.002080050529912114, -0.013440907932817936, 0.010914592072367668, -0.013024898245930672, -0.011292783543467522, -0.006251497194170952, -0.005593444686383009, -0.003925622440874577, -0.026760796085000038, 0.0052568549290299416, 0.0028780335560441017, 0.00776804331690073, -0.00968168955296278, -0.007166719529777765, 0.004621494095772505, -0.008055468089878559, 0.010672549717128277, 0.0027759219519793987, 0.008978254161775112, -0.005797667894512415, -0.012230697087943554, -0.013032461516559124, -0.015067129395902157, 0.034006934612989426, 0.010831390507519245, 0.004504255019128323, 0.012208005413413048, 0.008728648535907269, -0.025989284738898277, -0.009265679866075516, -0.005627482198178768, -0.006236369721591473, 0.005525370594114065, -0.013350142166018486, -0.0008826032280921936, 0.018788529559969902, -0.022404035553336143, -0.008365584537386894, 0.0005327765829861164, 0.004008824471384287, 0.007609202992171049, 0.02272171527147293, 0.02140561118721962, 0.002889379160478711, -0.003475575242191553, -0.013115664012730122, -0.005933817010372877, -0.0011478096712380648, 0.0055518439039587975, -0.013539237901568413, 0.018606998026371002, 0.016277341172099113, 0.021496376022696495, -0.006988969631493092, 0.007253703195601702, 0.010022061876952648, 0.0022124173119664192, 0.004084462765604258, -0.0008334384183399379, -0.01390986517071724, -0.020044123753905296, -0.019560039043426514, 0.005979199893772602, -0.008441222831606865, 0.009961551055312157, -0.008085723966360092, 0.013357706367969513, -0.01703372225165367, 0.0068755121901631355, -0.007889064028859138, -0.004632839933037758, -0.003050110535696149, 0.007851244881749153, 0.007889064028859138, -0.0023202018346637487, 0.02184431254863739, 0.013183738104999065, 0.018954932689666748, -0.03709297254681587, 0.003097384236752987, -0.008032776415348053, 0.0014683265471830964, -0.017366530373692513, -0.016867319121956825, 0.018153168261051178, 0.0002848251024261117, 0.005529152229428291, 0.017457297071814537, -0.0018758273217827082, 0.012934132479131222, 0.012283643707633018, 0.0072839586064219475, -0.017003467306494713, -0.011262527666985989, -0.003952095750719309, 0.004122281912714243, -0.008910180069506168, -0.02311503328382969, 0.01998361200094223, -0.008002521470189095, 0.005113142542541027, 0.007469272240996361, 0.004148755222558975, 0.01062716729938984, -0.019348250702023506, 0.00044579265522770584, 0.01270721759647131, -0.004417270887643099, -0.00274377572350204, 0.004235739354044199, -0.028545856475830078, 0.014363694004714489, -0.0013822880573570728, -0.016110936179757118, -0.03066372685134411, 0.023659629747271538, -0.017638828605413437, 0.025943903252482414, 0.02042231336236, 0.011383549310266972, 0.015256225131452084, 0.0299073439091444, -0.013319887220859528, 0.020664356648921967, 0.007280176971107721, -0.009621178731322289, 0.011973527260124683, 0.0049467384815216064, -0.0006188150146044791, -0.009780019521713257, -0.009220296517014503, -0.01574787311255932, 0.013168610632419586, 0.0001765679189702496, -0.010332178324460983, -0.015059566125273705, -0.010332178324460983, 0.009855657815933228, -0.00993885938078165, 0.02815253846347332, -0.003152221906930208, 0.01673116907477379, 0.005060195457190275, -0.001643239869736135, 0.022071227431297302, 0.004579892847687006, -0.0195146556943655, -0.0039785695262253284, -0.004738733172416687, -0.014635991305112839, 0.007790734525769949, -0.0067469272762537, -0.00785880908370018, -0.0040126065723598, 0.004409707151353359, 0.004160101059824228, -0.013645131140947342, 0.01925748586654663, 0.0035266310442239046, 0.015763001516461372, 0.01044563576579094, 0.03872675821185112, -0.003621178911998868, 0.008985818363726139, -0.006467066239565611, -0.016247086226940155, 0.014174598269164562, 0.009492593817412853, -0.011882761493325233, 0.0015212732832878828, -0.0007970375590957701, 0.013554365374147892, -0.01834982819855213, 0.014393949881196022, -0.007348251063376665, 0.008849669247865677, -0.01363756787031889, -0.00218405295163393, 0.011360857635736465, 0.0023655847180634737, -0.015346990898251534, 0.00141537981107831, 0.0009090765961445868, -0.014741885475814342, -0.01052127406001091, -0.0015780020039528608, -0.00047061144141480327, -0.0007667822646908462, 0.004352978430688381, -0.005672865081578493, 0.007026788778603077, -0.017669083550572395, 0.017850615084171295, -0.00029097069636918604, -0.010014497675001621, 0.03691144287586212, 0.010127955116331577, 0.0006797983078286052, 0.01415190752595663, 0.010233848355710506, -0.0018937914865091443, -0.00704569835215807, -0.00169335026293993, 0.016942957416176796, -0.008516861125826836, -0.0009450047509744763, 0.012994642369449139, -0.00502237631008029, 0.0030784746631979942, -0.00024015129019971937, -0.006516230758279562, -0.007994958199560642, 0.0010986448032781482, 0.0005757958278991282, -0.0027040657587349415, 0.0012347935698926449, 0.009031200781464577, -0.002053577220067382, -0.008630318567156792, 0.00712890038266778, 0.01957516558468342, -0.0006462338496930897, -0.011406240984797478, -0.014386385679244995, 0.020119762048125267, -0.0008792940643616021, 0.0025300977285951376, 0.014265364967286587, 0.00012267570127733052, -0.019605422392487526, 0.0011374094756320119, -0.003241096856072545, 0.001296249683946371, 0.0012735582422465086, 0.017094234004616737, 0.007140246219933033, 0.002452568616718054, 0.0021311063319444656, 0.01260132435709238, -3.3121257729362696e-05, 0.01980208046734333, 0.0007875827723182738, 0.00960605125874281, -0.004647967405617237, 0.0013907974353060126, 0.008350457064807415, -0.006069965660572052, -0.017169872298836708, -0.004727387335151434, 0.0008102742140181363, 0.010528837330639362, 0.0022540183272212744, -0.012480302713811398, -0.008418532088398933, -0.014983927831053734, -0.0015940751181915402, 0.009658997878432274, -0.010067444294691086, -0.00100315164308995, 0.010014497675001621, -0.016942957416176796, 0.02406807616353035, 0.008849669247865677, -0.0032770249526947737, -0.005873306188732386, 0.0012281752424314618, -0.003815947100520134, 0.003798928577452898, -0.01354680210351944, 0.01918184757232666, 0.004356760531663895, -0.006433028727769852, -0.014454459771513939, -0.01486290618777275, 0.006459502503275871, -0.011126379482448101, -0.001571383560076356, 0.0023561299312859774, 0.012472739443182945, -0.012442483566701412, -0.0028685787692666054, -0.030361173674464226, -0.011307911016047001, -0.02344784140586853, -0.014197289943695068, -0.028349196538329124, 0.007102427072823048, -0.0016328396741300821, -0.03409770131111145, -0.015520958229899406, 0.018243933096528053, 0.0029177435208112, 0.03255468234419823, 0.0017510243924334645, -0.012321462854743004, 0.00036613616975955665, -0.004965648055076599, 0.013955247588455677, -0.010649858973920345, 0.014537662267684937, 0.008032776415348053, -0.013743461109697819, -0.0169580839574337, 0.0008698392775841057, 0.007231011986732483, -0.004318941384553909, -0.02983170561492443, -0.00548755144700408, 0.0271692406386137, 0.0005195398698560894, 0.0002168688952224329, 0.025611095130443573, -0.013002206571400166, 0.010241412557661533, -0.01703372225165367, 0.002842105459421873, -0.006682634819298983, 0.01794138178229332, 0.0012054838007315993, -0.023357076570391655, 0.03096628002822399, -0.0014777813339605927, -0.002879924373701215, -0.0016375670675188303, 0.007926883175969124, -0.015362118370831013, 0.007170501165091991, 0.007333123590797186, -0.0011865742271766067, -0.010680113919079304, 0.006323353387415409, 0.012351717799901962, -0.007404979784041643, 0.003038764698430896, -0.014908289536833763, -0.001788843423128128, -0.01564197987318039, 0.007669713348150253, 0.017729593440890312, 0.012949259951710701, 0.0041941381059587, 0.005071541294455528, 0.0018389536999166012, -0.0002574062382336706, 0.006807438097894192, 0.019847463816404343, -0.020195400342345238, -0.01801702007651329, 0.003505830653011799, -0.0082067446783185, -0.001115663442760706, -0.024673180654644966, 0.022237630560994148, -0.01194327138364315, -0.0003332808264531195, 0.004598802421241999, 0.030330918729305267, -0.01626221276819706, -0.006879294291138649, -0.004523164592683315, 0.013168610632419586, 0.0005890324828214943, -0.0064746299758553505, 0.00044602900743484497, 0.04305326193571091, 0.023462969809770584, 0.0009081311291083694, 0.0017992437351495028, 0.01046832650899887, -0.0118525056168437, 0.004852190613746643, -0.0015127640217542648, -0.018501102924346924, 0.014499843120574951, -0.014341002330183983, -0.012223132885992527, 0.006920895539224148, -0.027305390685796738, -0.006569177843630314, -0.0010740624275058508, 0.004156318958848715, 0.004031516145914793, 0.003019855124875903, 0.005684210918843746, -0.0011270091636106372, 0.0018815002404153347, 0.015672234818339348, 0.004186574369668961, 0.04989095777273178, 0.008758903481066227, 0.016746297478675842, -0.00592625280842185, 0.0041184998117387295, -0.02151150442659855, 0.0014711630064994097, -0.01406114175915718, -0.015316735953092575, -0.011330602690577507, 0.010226285085082054, -0.00639899168163538, 0.026942327618598938, 0.027365900576114655, 0.00246580527164042, -0.0032051687594503164, 0.007132682483643293, -0.00794957485049963, -0.006100221071392298, 0.012071856297552586, -0.0009298771037720144, 0.011217145249247551, -0.011769304051995277, -0.008963126689195633, 0.01261645182967186, 0.014250236563384533, 0.010891900397837162, -0.011807123199105263, 0.011512134224176407, 0.007820989936590195, 0.017986763268709183, -0.01998361200094223, -0.03234289586544037, 0.016322724521160126, 0.0053930035792291164, 0.002592499367892742, 0.007972266525030136, 0.02140561118721962, -0.0028250867035239935, -0.018395209684967995, -0.013440907932817936, -0.0045950207859277725, 0.00595272658392787, -0.0021878350526094437, -0.007041916251182556, -0.0012508666841313243, 0.01398550346493721, -0.004610148258507252, -0.015112512744963169, 0.009439647197723389, 0.004031516145914793, -0.012200442142784595, -0.03806114196777344, -0.023311693221330643, -0.005381657741963863, 0.017048850655555725, 0.00787393655627966, -0.008872360922396183, -0.004961865954101086, -0.01571761816740036, -0.01478726789355278, -0.0043794517405331135, 0.005532934330403805, 0.010498582385480404, -0.024642925709486008, 0.006085093133151531, -0.007041916251182556, 0.016912702471017838, 0.007514655124396086, -0.003314844099804759, 0.020982036367058754, -0.008055468089878559, -0.01644374430179596, -0.02957453578710556, -0.017911124974489212, -0.02523290365934372, -0.03252442553639412, -0.004031516145914793, -0.004795461893081665, 0.009341318160295486, 0.007147809956222773, -0.012676962651312351, -0.011784431524574757, -0.010838953778147697, -0.022767098620533943, 0.007374724373221397, 0.00020623227464966476, 0.011285219341516495, 0.012548377737402916, -0.0057220300659537315, -0.00993885938078165, -0.02359911799430847, -0.018001891672611237, -0.0024563504848629236, 0.028500473126769066, -0.013259376399219036, -0.0017188780475407839, -0.014469588175415993, -0.005177434999495745, 0.01564197987318039, 0.016035297885537148, 0.007979829795658588, -0.010907028801739216, 0.001753860735334456, 0.0038802395574748516, -0.015657108277082443, -0.021723290905356407, -0.005234163254499435, 8.91112576937303e-05, 0.020770249888300896, -0.007541128434240818, 0.008796722628176212, 0.0016337850829586387, 0.021027419716119766, 0.0024298771750181913, 0.0196961872279644, 0.014522534795105457, 0.015377245843410492, 0.008282382972538471, 0.01226851623505354, -0.009749763645231724, 0.00012072565732523799, 0.04674440622329712, 0.01662527583539486, -0.0032089506275951862, 0.01703372225165367, 0.013667822815477848, 0.024824457243084908, -0.016277341172099113, 0.0022048535756766796, 0.009053892455995083, -0.02453703247010708, -0.010105263441801071, 0.025686733424663544, 0.007389852311462164, 0.008607626892626286, 0.00804034061729908, 0.0010523165110498667, 0.008653010241687298, 0.002329656621441245, -0.00811597891151905, 0.03315978869795799, 0.0304519385099411, -0.004466435872018337, -0.012094547972083092, 0.008085723966360092, -0.030860384926199913, 0.008327765390276909, 0.024461394175887108, 0.008410967886447906, -0.013168610632419586, -0.014121651649475098, -0.028545856475830078, 0.013486291281878948, -0.011837378144264221, 0.013758588582277298, -0.02636747620999813, 0.010385124944150448, -0.022994013503193855, 0.0001545855775475502, -0.008932871744036674, 0.0024695871397852898, 0.017517806962132454, 0.0017330602277070284, -0.0047992439940571785, -0.013259376399219036, -0.01269209012389183, 0.01363756787031889, -0.008252128027379513, -0.030346045270562172, -0.004265994299203157, 0.0024128586519509554, 0.005801449995487928, 0.003872675821185112, -0.001699968590401113, 0.009205169044435024, -0.006792310159653425, -0.0032505516428500414, -0.015611724928021431, -0.0080252131447196, 0.020513080060482025, 0.003910494968295097, 0.02151150442659855, 0.012994642369449139, -0.0002772612788248807, -0.0003971005498897284, -0.016564765945076942, 0.014545225538313389, 0.014083832502365112, -0.011618027463555336, 0.02070973999798298, 0.030724236741662025, -0.02815253846347332, 0.0016876773443073034, -0.0158688947558403, 0.020513080060482025, -0.012926568277180195, 0.0001700677676126361, -0.029544280841946602, -0.014295619912445545, -0.0039331866428256035, 0.009311062283813953, -0.023901671171188354, -0.0014673811383545399], "8deac4ba-b6d2-4fdf-9a0c-3193562a049c": [-0.020876415073871613, -0.014430766925215721, -0.0009765586582943797, -0.006035600323230028, -0.051133546978235245, -0.04250098392367363, 0.034242499619722366, 0.036630842834711075, -0.006269398611038923, 0.020847639068961143, -0.006294576916843653, 0.03645819053053856, 0.0017274117562919855, -0.007884407415986061, 0.018991637974977493, 0.03959468752145767, -0.014581836760044098, 0.016574520617723465, 0.0064420499838888645, -0.05829857289791107, 0.04911928251385689, -0.02198426052927971, -0.030645597726106644, 0.03631431236863136, 0.012416502460837364, -0.017466552555561066, -0.004395413212478161, 0.012510022148489952, -0.027163797989487648, -0.040803246200084686, 0.012733030132949352, 0.015553000383079052, 0.018315421417355537, 0.0050896150059998035, 0.026127889752388, -0.0280558280646801, 0.004251536913216114, 0.0037983276415616274, -0.030501721426844597, -0.006790949497371912, -0.01402072049677372, 0.004208374302834272, 0.016617683693766594, 0.007531911134719849, -0.02194109745323658, 0.010632439516484737, 0.017552876845002174, -0.0022192879114300013, 0.00022705437731929123, -0.018516847863793373, 0.009891478344798088, -0.006834112107753754, -0.005449305288493633, 0.003776746103540063, 0.04425626993179321, -0.034731678664684296, -0.005553615279495716, 0.0485437773168087, -0.014653774909675121, -0.07573635131120682, 0.008236903697252274, -0.0024980478920042515, 0.017610428854823112, -0.012243851087987423, 0.004060901235789061, -0.019696630537509918, -0.004140033386647701, 0.014790457673370838, -0.02809899114072323, 0.004870204254984856, 0.012330177240073681, -0.0072621433064341545, -0.04094712436199188, 0.023610059171915054, 0.013222208246588707, -0.01007851678878069, 0.006035600323230028, 0.03254476189613342, 0.010725959204137325, -0.011402176693081856, -0.020775701850652695, -0.010121679864823818, 0.02992621809244156, -0.0009297989308834076, 0.07918937504291534, 0.027451548725366592, -0.019840506836771965, -0.04575258120894432, -0.044544022530317307, -0.025753812864422798, 0.004841428715735674, 0.02296261675655842, -0.01822909526526928, -0.013200626708567142, -0.004988901782780886, -0.0024620788171887398, 0.014178983867168427, 0.012596347369253635, 0.007913182489573956, -0.013236596249043941, 0.008179353550076485, 0.003870265558362007, -0.03585391119122505, 0.02474668063223362, 0.03392597287893295, -0.002776807639747858, 0.010409431532025337, -0.007197399158030748, -0.040860798209905624, 0.03406984731554985, -0.0026131486520171165, -0.034760452806949615, 0.009747602045536041, -0.024631578475236893, -0.050155188888311386, -0.04891785606741905, -0.039882440119981766, -0.015106984414160252, -0.011610796675086021, -0.03418494760990143, 0.030185194686055183, 0.01147411484271288, 0.019711017608642578, 0.016042178496718407, -0.010208005085587502, 0.006305367685854435, 0.012898487038910389, 0.02940826304256916, 0.012754611670970917, -6.24961539870128e-05, -0.006179476156830788, -0.030559271574020386, 0.024084849283099174, 0.012855324894189835, 0.016574520617723465, 0.018056442961096764, 0.007211786694824696, 0.06474421918392181, -0.010272749699652195, 0.04980988800525665, -0.05041416734457016, -0.02609911374747753, -0.009395105764269829, -0.0004999692318961024, 0.0027552263345569372, 0.024171175435185432, -0.03447270020842552, 0.03588268533349037, -0.021739671006798744, 0.009431074373424053, -0.05826979875564575, -0.010265556164085865, -0.008294453844428062, -0.005873739719390869, 0.006157894618809223, -0.01520769763737917, -0.007388034835457802, 0.03916306048631668, 0.002933272859081626, 0.03781062364578247, 0.0015331790782511234, -0.05412616953253746, -0.011510083451867104, -0.0020915979985147715, 0.025868913158774376, 0.019365714862942696, 0.03873142972588539, 0.031106000766158104, -0.03878898173570633, 0.01448112353682518, 0.008244097232818604, -0.002994420239701867, 0.013020781800150871, 0.023164043202996254, -0.004427785519510508, 0.013315727934241295, 0.0475078709423542, 0.022991392761468887, 0.03781062364578247, -0.01238772738724947, -0.014279697090387344, 0.0265739057213068, -0.001942326663993299, -0.019840506836771965, -0.005679506808519363, 0.037551648914813995, 0.01822909526526928, 0.025912076234817505, 0.01210716925561428, 0.003582513425499201, -0.007905988954007626, -0.026415642350912094, -0.010841060429811478, 0.03743654862046242, -0.019236227497458458, -0.02386903576552868, 0.010884222574532032, 0.006621894892305136, 0.006175879389047623, 0.03510575369000435, 0.00889873318374157, -0.06491687148809433, -0.0372638963162899, 0.04658706486225128, -0.031940482556819916, 0.02342301979660988, -0.018099606037139893, -0.03217068314552307, 0.008064252324402332, -0.009467043913900852, 0.042184457182884216, -0.048831529915332794, -0.005758638493716717, -0.0024962492752820253, -0.005434917751699686, -0.0024926525074988604, 0.0009738609660416842, 0.03263108804821968, -0.0013848069356754422, -0.035220857709646225, -0.03078947402536869, 0.024458928033709526, 0.004262327682226896, -0.045033201575279236, -0.06583768129348755, -0.012869711965322495, -0.019480817019939423, 0.03496187925338745, -0.03838612884283066, -0.01867511123418808, 0.031911708414554596, -0.012064006179571152, -0.005773026496171951, -0.021854771301150322, -0.0065607475116848946, 0.031163550913333893, 0.042242005467414856, 0.004240746609866619, -0.0056255534291267395, -0.0252358578145504, 0.024861780926585197, 0.02234395034611225, 0.008560624904930592, 0.00013814348494634032, 0.012682673521339893, 0.019466428086161613, -0.052572306245565414, 0.043651990592479706, 0.02287629060447216, 0.006258607842028141, -0.009200872853398323, -0.007017554249614477, -0.005327010527253151, 0.00792757049202919, -0.017596039921045303, 0.032861288636922836, 0.018934087827801704, -0.041263651102781296, 0.019336940720677376, -0.004071692004799843, 0.014848007820546627, 0.009395105764269829, -0.004827041178941727, 0.004373831674456596, 0.04471667483448982, -0.009006640873849392, 0.021782834082841873, -0.03890408203005791, 0.014135821722447872, 0.02618543989956379, 0.011769060976803303, -0.0004878297040704638, -0.009236842393875122, -0.009100159630179405, 0.008539043366909027, -0.0009540780447423458, -0.011150393635034561, 6.103491614339873e-05, 0.02660267986357212, -0.006139910314232111, -0.020401623100042343, 0.01282654982060194, 0.008646950125694275, 0.03553738445043564, 0.0325159877538681, -0.002427908359095454, -0.03277496248483658, 0.0036292732693254948, -0.04684603959321976, -0.01374016236513853, -0.00838077999651432, -0.0163299310952425, 0.008459911681711674, 0.024617191404104233, 0.0064924065954983234, 0.02471790462732315, -0.0012472254456952214, -0.014128627255558968, -0.026530742645263672, 0.029163673520088196, -0.0008497678791172802, -0.01334450300782919, 0.0009288997389376163, -0.006506794132292271, 0.028314806520938873, -0.04488932713866234, 0.02842990681529045, -0.029192449524998665, -0.013725774362683296, 0.03605533763766289, 0.03913428261876106, -0.02807021699845791, -0.011970487423241138, -0.017452163621783257, 0.01824348233640194, 0.023581283167004585, -0.00036733353044837713, -0.015524225309491158, 2.5880826797219925e-05, -0.02709185890853405, 0.01690543442964554, 0.010618052445352077, -0.051507625728845596, 0.01425092201679945, 0.04264485836029053, -0.06060058996081352, 0.020416010171175003, 0.0013659232063218951, -0.04235710948705673, -0.03591145947575569, -0.02668900601565838, -0.023509345948696136, -0.05127742141485214, 0.010992130264639854, -0.022674864158034325, -0.040889572352170944, -0.034386374056339264, -0.06031283736228943, 0.014891170896589756, -0.018862148746848106, -0.01023678109049797, -0.027379611507058144, 0.033897195011377335, 0.0011591013753786683, 0.019279390573501587, 0.0059564681723713875, 0.028343580663204193, 0.011229525320231915, -0.0437958687543869, 0.008819601498544216, 0.0008308841497637331, 0.00676217395812273, -0.004506917204707861, -0.024099238216876984, 0.02047356218099594, -0.012056812644004822, -0.02617105282843113, 0.0024063268210738897, 0.005647134967148304, -0.019696630537509918, -0.00021210475824773312, -0.02053111232817173, -0.010553307831287384, 0.0024872571229934692, -0.002337985672056675, -0.013481185771524906, 0.021782834082841873, -0.0033918777480721474, 0.011394983157515526, 0.016934210434556007, -0.013862457126379013, -0.00466877780854702, 0.026473192498087883, 0.010783509351313114, -0.019912444055080414, -0.04195425659418106, 0.026487579569220543, 0.0137329688295722, -0.01952398009598255, 0.021379981189966202, 0.015164535492658615, 0.01007132325321436, -0.030933350324630737, -0.004255134146660566, 0.03864510729908943, 0.029048573225736618, 0.008467105217278004, -0.00984112173318863, 0.0004806359065696597, -0.021840384230017662, -0.013315727934241295, 0.006528375670313835, -0.014538674615323544, -0.006129119545221329, -0.03314904123544693, -0.015250860713422298, -0.004301893524825573, -0.02139436826109886, 0.0023577685933560133, -0.042759962379932404, 0.0052550723776221275, 0.0011231324169784784, 0.016588907688856125, 0.0035969011951237917, 0.02989744208753109, -0.05084579437971115, -0.01008571032434702, -0.02014264650642872, 0.019754180684685707, -0.011251106858253479, -0.005247878842055798, 0.017653590068221092, 0.006751383654773235, 0.04419872164726257, 0.045119527727365494, 0.016617683693766594, 0.004654390271753073, 0.05075946822762489, -0.055305950343608856, -0.019279390573501587, 0.014186178334057331, 0.053435564041137695, -0.0023505748249590397, 0.024358214810490608, -0.0047622970305383205, 0.024645967409014702, 0.006478019058704376, 0.013963170349597931, -0.02343740686774254, 0.0016320939175784588, -0.005704685114324093, 0.04143629968166351, 0.003999753855168819, 0.003454823512583971, -0.006395290140062571, -0.012071200646460056, -0.012251045554876328, -0.0041544209234416485, 0.010438207536935806, 0.000599783263169229, 0.01909235119819641, 0.01194171141833067, -0.03487555310130119, 0.014517093077301979, -0.0044313822872936726, -0.04313403740525246, -0.04054426774382591, 0.01581197790801525, 0.014330053701996803, -0.0018227295950055122, -0.010776315815746784, 0.021825995296239853, -0.023897811770439148, 0.022761190310120583, 0.012358952313661575, 0.007118267472833395, -0.012754611670970917, -0.005172343924641609, -0.008352003991603851, -0.0365157388150692, -0.03240088373422623, -0.007790887728333473, 0.03182538226246834, 0.0073089031502604485, 0.013049556873738766, -0.030041318386793137, -0.004291103221476078, 0.02140875533223152, 0.011725897900760174, -0.015121372416615486, 0.0022480632178485394, 0.008258485235273838, -0.02194109745323658, 0.025969626381993294, -0.005492467898875475, -0.007380841299891472, -0.00815777201205492, -0.0024045284371823072, 0.014934333972632885, -0.010891417041420937, -0.025984013453125954, -0.05185292661190033, -0.01425092201679945, 0.0034674126654863358, 0.006647073198109865, 0.004744312725961208, -0.010891417041420937, -0.016962986439466476, -0.0016114116879180074, -0.00838077999651432, 0.033897195011377335, -0.011855386197566986, 0.0020178614649921656, -0.000793116691056639, -0.0007135352352634072, -0.023494958877563477, -0.011394983157515526, -0.02514953352510929, -0.02572503685951233, -0.02655951865017414, 0.03240088373422623, -0.022200074046850204, -0.005834173411130905, 0.01769675314426422, -0.007510329596698284, 0.003089738078415394, -0.02573942393064499, 0.004039320163428783, -0.01962469331920147, -0.002016063081100583, -0.015668101608753204, 0.038040827959775925, -0.0317678302526474, 0.011294269934296608, 0.003451226744800806, 0.023135267198085785, -0.00397457554936409, -0.004064498469233513, 0.05084579437971115, -0.025912076234817505, -0.00113482226151973, -0.02155263163149357, -0.01686227321624756, 0.010172036476433277, -0.031998030841350555, -0.02061743661761284, -0.017926955595612526, -0.016070954501628876, 0.032890062779188156, -0.001655473723076284, -0.010488564148545265, 0.020646212622523308, -0.015308410860598087, 0.007963539101183414, 0.006366515066474676, -0.04428504779934883, -0.007452778983861208, 0.009833927266299725, 0.021624568849802017, 0.009848315268754959, -0.03683226928114891, 0.029192449524998665, -0.004140033386647701, -0.008503073826432228, 0.007330484688282013, 0.03499065339565277, -0.03550860658288002, 0.024070462211966515, -0.0009477834682911634, 0.0019908847752958536, -0.03746532276272774, 0.021149778738617897, -0.029048573225736618, -0.007082298398017883, 0.008524655364453793, -0.02664584293961525, 0.006798143032938242, -0.01909235119819641, -0.028156541287899017, -0.011524471454322338, -0.025825750082731247, 0.010733152739703655, 0.001314667402766645, 0.003260590834543109, -0.016430644318461418, 0.00907857809215784, -0.01640186831355095, 0.017509715631604195, -0.022617314010858536, 0.02945142611861229, 0.0316239558160305, 0.014682549983263016, 0.048773977905511856, 0.005859351716935635, -0.014502705074846745, 0.052514757961034775, -0.013229402713477612, 0.0075894612818956375, -0.028156541287899017, -0.013761743903160095, 0.0467597134411335, -0.024847393855452538, 0.009236842393875122, -0.005758638493716717, 0.006848499644547701, 0.013632255606353283, -0.01673278398811817, -0.03027152083814144, 0.00094598502619192, 0.04440014809370041, 0.0009585741790942848, 0.025811363011598587, 0.017437776550650597, 0.002131163841113448, -0.05038538947701454, 0.017955729737877846, 0.007204593159258366, 0.008812407962977886, 0.00911454763263464, 0.011222331784665585, 0.024645967409014702, 0.025408510118722916, 0.005362979602068663, -0.014761682599782944, -0.032487209886312485, 0.01333730947226286, -0.0008740469929762185, 0.01830103248357773, -0.0031544822268188, 0.03309148922562599, -0.010898610576987267, 0.009495818987488747, 0.03165272995829582, -0.011963292956352234, 0.027768077328801155, -0.0036544515751302242, 0.01586952805519104, 0.039997540414333344, -0.004740715492516756, 0.025883300229907036, 0.023221593350172043, -0.03329291567206383, 0.053982291370630264, -0.023235980421304703, 0.0026311331894248724, 0.008762051351368427, -0.012948843650519848, -0.015970241278409958, 0.0036868236493319273, -0.0008583105518482625, 0.0029530557803809643, -0.00865414459258318, -0.008819601498544216, -0.030530497431755066, 0.021610181778669357, -0.02896224707365036, 0.00905699748545885, 0.004399009980261326, -0.021638957783579826, -0.010049741715192795, -0.003050172235816717, -0.0030321876984089613, 0.004291103221476078, 0.028228480368852615, -0.014668162912130356, 0.028660107403993607, -0.011984874494373798, 0.024171175435185432, 0.03035784512758255, 0.006920437794178724, -0.027293285354971886, 0.002994420239701867, 0.015063822269439697, 0.016157280653715134, -0.004006947856396437, -0.02290506660938263, 0.011740284971892834, 0.017567265778779984, -0.0031239085365086794, 0.010805090889334679, 0.021653344854712486, -0.036688391119241714, 0.007877213880419731, 0.011912936344742775, 0.02378270961344242, 0.005165149923413992, 0.0132869528606534, 0.015351573936641216, 0.03392597287893295, 0.017883792519569397, -0.002532218350097537, -0.01828664541244507, 0.021207328885793686, -0.0035267616622149944, 0.002305613597854972, 0.0018667917465791106, -0.011402176693081856, 0.0008111012284643948, 0.0017831637524068356, 0.004370234906673431, -0.03729267045855522, -0.014991884119808674, -0.028214093297719955, 0.003694017417728901, -0.011639571748673916, -0.0074671669863164425, -0.005219103768467903, 0.014725713059306145, -0.016617683693766594, -0.011905742809176445, -0.013049556873738766, -0.00027134123956784606, -0.007197399158030748, 0.00748874805867672, 0.00607876293361187, 0.009474237449467182, -0.01074754074215889, -0.021351205185055733, 0.018905311822891235, -0.03749409690499306, -0.062269553542137146, -0.04566625505685806, 0.0026581098791211843, -0.028803983703255653, 0.026358092203736305, 0.03496187925338745, -0.026976758614182472, -0.020214583724737167, 0.004880995023995638, -0.00907138455659151, 0.018013281747698784, 0.017480939626693726, -0.008963477797806263, 0.02935071289539337, 0.01164676621556282, 0.012430890463292599, -0.006945616099983454, 0.031451303511857986, -0.00022154662292450666, 0.04773807153105736, -0.004755103494971991, 0.005726266652345657, -0.02664584293961525, -0.033839646726846695, -0.02758103795349598, 0.019984383136034012, 0.0007692872313782573, -0.008251290768384933, 0.005801801569759846, -0.0025753811933100224, 0.014624999836087227, -0.01814276911318302, -0.012711448594927788, 0.0017858614446595311, -0.006736995652318001, -0.02290506660938263, -0.008977864868938923, 0.0011186362244188786, 0.027638588100671768, -0.018862148746848106, 0.011028098873794079, -0.030530497431755066, 0.026976758614182472, -0.018862148746848106, -0.0073053063824772835, 0.004305490758270025, 0.035307180136442184, -0.007348468992859125, -0.006830515339970589, -0.009704438969492912, 0.0354798324406147, -0.028386743739247322, 0.04284628480672836, 0.03640063852071762, -0.014603418298065662, -0.01687666028738022, 0.030242744833230972, 0.02244466356933117, -0.02516392059624195, 0.03772429749369621, 0.0039422037079930305, 0.013322921469807625, 0.009891478344798088, -0.0028145750984549522, 0.014495511539280415, 0.007373647298663855, 0.009632500819861889, 0.023653222247958183, 0.048860304057598114, 0.01052453275769949, 0.04934948310256004, 0.010783509351313114, 0.03303394094109535, 0.04106222465634346, -0.011251106858253479, -0.03674594312906265, 0.0023577685933560133, 0.0022264819126576185, -0.02841551974415779, -0.02424311451613903, -0.023063329979777336, -0.05985243618488312, 0.031969256699085236, -0.0034242498222738504, 0.027264511212706566, -0.029235612601041794, 0.04805459827184677, -0.007776500191539526, -0.008567818440496922, 0.002983629470691085, 0.0001865892409114167, 0.00956775713711977, -0.002075411844998598, 0.014603418298065662, -0.0038127151783555746, -0.024962494149804115, 0.014603418298065662, -0.04730644449591637, -0.010337494313716888, 0.012243851087987423, 0.01817154511809349, -0.025595547631382942, 0.04684603959321976, 0.06422626972198486, 0.014337248168885708, -0.009028221480548382, -0.021192941814661026, -0.0025951641146093607, 0.0003030389198102057, 0.01917867735028267, 0.007078701630234718, -0.014085465110838413, -0.028257254511117935, 0.0316239558160305, -0.015783201903104782, 0.006798143032938242, -0.007999507710337639, 0.029077349230647087, -0.00012094579869881272, -0.01356031745672226, 0.010682796128094196, 0.015524225309491158, 0.012474053539335728, 0.008697306737303734, -0.023164043202996254, 0.015308410860598087, 0.018833374604582787, 0.014761682599782944, 0.0005291940760798752, 0.006067972164601088, -0.0017193187959492207, -0.004737118724733591, -0.004963723476976156, 0.055277176201343536, 0.017509715631604195, 0.034818004816770554, -0.024444540962576866, -0.01491994597017765, -0.0362279899418354, 0.02565309964120388, -0.0034943893551826477, -0.04569503292441368, -0.009445462375879288, -0.00958214420825243, 0.011610796675086021, 0.023566896095871925, 0.026847269386053085, 0.01966785453259945, 0.032832514494657516, 0.05081702023744583, 0.01968224346637726, -0.023638835176825523, -0.00617228215560317, -0.007733337581157684, -0.014833619818091393, 0.022070584818720818, 0.008179353550076485, -0.002016063081100583, 0.005053645931184292, 0.007812469266355038, 0.029782341793179512, 0.018603172153234482, -0.02470351755619049, -0.026991145685315132, 0.0025681874249130487, -0.008021089248359203, -0.01030871830880642, 0.021595794707536697, 0.011790641583502293, 0.0015880318824201822, -0.0006451941444538534, 0.029638465493917465, 0.02278996631503105, 0.020876415073871613, -0.01193451788276434, -0.01561055053025484, -0.018804598599672318, 0.009164904244244099, -0.05107599496841431, 0.010596470907330513, 0.006395290140062571, 0.00222288491204381, 0.005327010527253151, 0.01956714130938053, -0.02887592278420925, -0.003555536735802889, 0.02001315727829933, -0.023984136059880257, 0.003460218897089362, 0.006636282429099083, 0.003884653327986598, 0.011769060976803303, -0.002767815487459302, -0.013150270096957684, -0.0102439746260643, -0.030127644538879395, 0.01637309417128563, 0.005057243164628744, -0.004913366865366697, 0.006481615826487541, 0.00866853166371584, -0.030098868533968925, -0.03173905611038208, -0.0052550723776221275, 0.017164412885904312, -0.050097640603780746, 0.023494958877563477, 0.017006147652864456, 0.0003621629730332643, 0.024458928033709526, 0.027825627475976944, 0.013099913485348225, -0.022674864158034325, -0.013380472548305988, 0.038501229137182236, 0.020660599693655968, 0.015049434266984463, 0.004607630427926779, 0.0026527144946157932, -0.02428627572953701, 0.02337985672056675, 0.0126179289072752, 0.02668900601565838, -0.0020502335391938686, 0.009740408509969711, -0.01680472120642662, 0.0017822645604610443, -0.023725159466266632, -0.002744435565546155, 0.025466060265898705, -0.00455727381631732, 0.017150023952126503, 0.0016213031485676765, -0.013999138958752155, 0.03746532276272774, 0.002510637044906616, -0.013819294050335884, -0.015035047195851803, -0.035307180136442184, -0.04146507754921913, -0.03959468752145767, -0.017524102702736855, 0.03076069802045822, -0.02663145586848259, -0.004100467078387737, -0.005327010527253151, 0.00032776762964203954, 0.021308042109012604, -0.007977927103638649, 0.006244220305234194, 0.01260354183614254, 0.028170930221676826, 0.011459726840257645, 0.01006412971764803, 0.0030825443100184202, 0.019006025046110153, 0.009754795581102371, -0.007539104670286179, 0.010884222574532032, -0.002850544173270464, -0.008021089248359203, -0.0014045898569747806, -0.004625614732503891, 0.013495572842657566, -0.015696875751018524, 0.01778307929635048, -0.04632808640599251, 0.002989024855196476, -0.020459173247218132, -0.008128996938467026, 0.002494450891390443, -0.001018822193145752, -0.001125830109231174, -0.0064420499838888645, 0.0036292732693254948, -0.014624999836087227, -0.027681751176714897, -0.014934333972632885, -0.015481062233448029, -0.004582452122122049, 0.019595917314291, -0.015006271190941334, -0.019739793613553047, -0.015020659193396568, 0.006945616099983454, 0.001296682865358889, -0.021178554743528366, 0.04025651887059212, -0.01812838204205036, 0.0059996312484145164, 0.010733152739703655, -0.03179660439491272, -0.024185562506318092, -0.004981708247214556, 0.012402115389704704, -0.006636282429099083, -0.02666023187339306, -0.026271766051650047, 0.011445339769124985, -0.03263108804821968, -0.0004433180729392916, 0.00297104031778872, -0.010948967188596725, 0.06370831280946732, 0.021365592256188393, 0.02103467844426632, -0.0007557988283224404, -0.01069718413054943, -0.003048373619094491, -0.005740654189139605, -0.025883300229907036, -0.038990408182144165, 0.002499846275895834, -0.018862148746848106, 0.008244097232818604, 0.03453025221824646, 0.00666865473613143, -0.04445769637823105, -0.010776315815746784, 0.03395474702119827, -0.01640186831355095, -0.03645819053053856, 0.004337862599641085, -0.022674864158034325, -0.016488194465637207, 0.0018685901304706931, 0.0025160324294120073, -0.010495757684111595, 0.02801266685128212, 0.018516847863793373, -0.032861288636922836, -0.009215260855853558, 0.0026455207262188196, -0.026257378980517387, -0.009704438969492912, -0.024185562506318092, 0.013135883025825024, -0.04842867702245712, -0.01589830219745636, -0.0026311331894248724, 0.019034801051020622, -0.008711694739758968, 0.0024297067429870367, 0.0062801893800497055, 0.012553185224533081, -0.014833619818091393, 0.0025124354287981987, 0.007834050804376602, -0.030242744833230972, 0.018890924751758575, 0.014574643224477768, -0.008920314721763134, 0.01542351208627224, -0.0016105124959722161, -0.0039889635518193245, 0.005021274089813232, 0.0022570553701370955, 0.003866668790578842, 0.013495572842657566, 0.018372971564531326, -0.017596039921045303, -0.017955729737877846, 0.059507131576538086, -0.023451795801520348, 0.009862703271210194, -0.029782341793179512, -0.02103467844426632, 0.0037947306409478188, 0.0052514756098389626, -0.015222085639834404, -0.0014144813176244497, -0.004287505988031626, 0.0019459235481917858, 0.016229217872023582, 0.004845025949180126, 0.021811608225107193, 0.006100344471633434, 0.012905681505799294, 0.02714940905570984, -0.011265493929386139, -0.011488501913845539, -0.022257624194025993, -0.026343703269958496, -0.011071261949837208, -0.022559763863682747, 0.013833682052791119, 0.008718888275325298, 0.017567265778779984, 0.018574398010969162, 0.010222393088042736, -0.017955729737877846, -0.00571907265111804, 0.008179353550076485, 0.021322429180145264, -0.03507697954773903, 0.013984751887619495, -0.007819662801921368, 0.06301771104335785, 0.015121372416615486, 0.00934474915266037, 0.027840014547109604, -0.023566896095871925, 0.025768199935555458, 0.029134899377822876, 0.031595177948474884, 0.03398352116346359, -0.005168747156858444, 0.011229525320231915, 0.003960188012570143, 0.009315974079072475, 0.03122110106050968, 0.018588785082101822, 0.02421433851122856, 0.0015772411134094, 0.010121679864823818, 0.0014675356214866042, 0.006636282429099083, -0.02798389084637165, -0.010618052445352077, 0.008826795034110546, -0.013006394729018211, 0.006589523050934076, -0.019408877938985825, 0.015509837307035923, -0.005028467625379562, 0.007819662801921368, 0.002449489664286375, 0.03556615859270096, 0.009812346659600735, 0.029696015641093254, 0.015063822269439697, -0.020430399104952812, 0.04989621415734291, 3.773936259676702e-05, 0.018459295853972435, -0.0005233490956015885, -0.013826487585902214, 0.005478080362081528, -0.005974452942609787, 0.00298003270290792, -0.017495326697826385, -0.014567449688911438, -0.012574766762554646, 0.004413397517055273, -0.0005597677663899958, -0.02009948343038559, -0.018430521711707115, -0.016632070764899254, -0.00984112173318863, -0.01821470819413662, -0.019423266872763634, -0.04345056414604187, 0.002107784152030945, -0.013430829159915447, 0.00794195756316185, -0.025969626381993294, 0.005496065132319927, 0.002107784152030945, 0.03127865120768547, -0.0007917678449302912, -0.05740654096007347, -0.024430152028799057, 0.00128679140470922, -0.016574520617723465, -0.014948721043765545, -0.007718950044363737, 0.028228480368852615, -0.003354110289365053, -0.006542763207107782, 0.0012346362927928567, -0.0016941404901444912, 0.0003918374131899327, 0.009977803565561771, 0.026919208467006683, -0.01630115509033203, 0.03122110106050968, -0.03611288592219353, 0.004755103494971991, -0.0006492406828328967, -0.01334450300782919, -0.0037803431041538715, -0.0034242498222738504, 0.005380963906645775, 0.008812407962977886, -0.014265310019254684, 0.01958153024315834, -0.009366330690681934, -0.014776069670915604, 0.006474421825259924, 0.020847639068961143, 0.012438083998858929, -0.027868790552020073, -0.01003535371273756, -0.026257378980517387, 0.003260590834543109, 0.002855939557775855, -0.004291103221476078, -0.017049310728907585, 0.019854893907904625, 0.025912076234817505, -0.02011387050151825, 0.01594146527349949, -0.004208374302834272, -0.03585391119122505, 0.0019063575891777873, 0.002721055643633008, -0.015768814831972122, -0.010877029038965702, 0.004575258120894432, -0.02234395034611225, -0.01282654982060194, 0.0015340783866122365, -0.00889873318374157, -0.008467105217278004, -0.00027201566263101995, 0.031969256699085236, -0.0033289319835603237, 0.0097979586571455, 0.010265556164085865, -0.013207821175456047, 0.008941896259784698, 0.007668593432754278, -0.0017076288349926472, -0.002906296169385314, 0.004801862873136997, -0.008035477250814438, 0.003239009529352188, 0.018372971564531326, 0.006553553976118565, -0.013488379307091236, 0.00596006540581584, -0.0017337063327431679, 0.006751383654773235, 0.02234395034611225, 0.014991884119808674, -0.011840998195111752, -0.007560686208307743, -0.023120880126953125, -0.016488194465637207, 0.008819601498544216, -0.0020034739281982183, -0.0011887758737429976, 0.01584075205028057, -0.04264485836029053, -0.005046452395617962, 0.021264879032969475, -0.031106000766158104, 0.008093027397990227, 0.011301463469862938, 0.0031257071532309055, -0.005143568851053715, -0.00038486841367557645, -5.946127203060314e-05, 0.006125522777438164, -0.0033792885951697826, 0.01148130837827921, -0.00526586314663291, 0.036630842834711075, -0.02100590243935585, -0.009006640873849392, -0.018790211528539658, 0.016704007983207703, 0.005844964180141687, 0.009229647926986217, -0.04117732495069504, -0.015078209340572357, 0.012510022148489952, 0.0038630717899650335, 0.020790088921785355, -0.0204879492521286, -0.022056197747588158, -0.0056723132729530334, -0.0034584205131977797, 0.038012050092220306, -0.019998770207166672, 0.041292425245046616, 0.00133804720826447, -0.024991268292069435, -0.02100590243935585, -0.008114608936011791, 0.01098493579775095, 0.045982785522937775, 0.01910673826932907, -0.02749471180140972, -0.008244097232818604, -0.001185178873129189, 0.026789719238877296, 0.01350276730954647, -0.012445277534425259, -0.017624815925955772, 0.015999015420675278, -0.0021095825359225273, 0.010582082904875278, 0.008179353550076485, -0.003483598819002509, 0.003658048342913389, -0.002213892759755254, -0.011912936344742775, 0.014401991851627827, 0.015063822269439697, -0.045148301869630814, 0.03398352116346359, 0.004143630154430866, 0.002989024855196476, -0.0016168070724233985, 0.006736995652318001, -0.02199864760041237, -0.010661214590072632, -0.008560624904930592, -0.02989744208753109, 0.008128996938467026, 0.011416563764214516, 0.01143095176666975, -0.009704438969492912, -0.01630115509033203, 0.019336940720677376, -0.009380717761814594, 0.010222393088042736, 0.0033649010583758354, -0.030156418681144714, 0.013639449141919613, 0.0026455207262188196, 0.001125830109231174, 0.005895320791751146, 0.004413397517055273, 0.01690543442964554, 0.0008380779763683677, 0.013581898994743824, 0.017409002408385277, 0.014991884119808674, -0.00884118303656578, 0.027638588100671768, -0.014776069670915604, -0.001739101717248559, 0.0035303584299981594, 0.024602804332971573, -0.001863194745965302, 0.022761190310120583, -0.008754857815802097, -0.0494358092546463, -0.024991268292069435, -0.0011366207618266344, -0.0002828063443303108, -0.0010763726895675063, 0.01768236607313156, 0.005974452942609787, 0.001863194745965302, -0.006798143032938242, 0.014207759872078896, -0.0007589461165480316, -0.011610796675086021, 0.0005233490956015885, 0.004186792764812708, 0.006625491660088301, -0.00865414459258318, -0.013804906979203224, -0.034818004816770554, 0.02381148561835289, -0.0027696138713508844, 0.014258116483688354, -0.003445831360295415, -0.04140752553939819, -0.01726512610912323, -0.0007971632294356823, -0.002140156226232648, 0.02710624784231186, 0.009682857431471348, -0.0039422037079930305, 0.031480077654123306, 0.01305675134062767, 0.015121372416615486, 0.017092473804950714, 0.003575319657102227, -0.00396738201379776, -0.0020304506178945303, 0.005877336487174034, -0.00503566162660718, 0.023653222247958183, 0.022243237122893333, -0.006564344745129347, 0.01907796412706375, 0.013430829159915447, 0.004514110740274191, -0.0017831637524068356, 0.022487826645374298, 0.026458805426955223, -0.023106493055820465, -0.022588539868593216, 0.018588785082101822, 0.0033415211364626884, 0.008553430438041687, 0.0029494590125977993, 0.028257254511117935, -0.0012616130989044905, 0.009100159630179405, -0.04776684567332268, -0.03763797506690025, -0.013394859619438648, -0.006589523050934076, -0.005208312999457121, 0.01909235119819641, 0.010445401072502136, 0.03694736957550049, 0.0353359580039978, -0.010359074920415878, 0.005568002816289663, -0.026818495243787766, -0.01053172629326582, -0.0010233183857053518, -0.02378270961344242, 0.01097054872661829, -0.004416994750499725, 0.005373770371079445, 0.0033181412145495415, -0.0047587002627551556, -0.00344942812807858, -0.016560133546590805, -0.007517523597925901, 0.004219165071845055, -0.024458928033709526, -0.013869650661945343, -0.018056442961096764, 0.0009217059123329818, -0.012402115389704704, 0.007870019413530827, -0.004589645657688379, -0.004528498742729425, 0.0009140624897554517, 0.002837955020368099, 0.019452041015028954, 0.01515014749020338, -0.003104125615209341, 0.002186915837228298, -0.046069107949733734, 0.023106493055820465, -0.03122110106050968, 0.013826487585902214, -0.010877029038965702, 0.011725897900760174, -0.0018506055930629373, 0.01961030438542366, -0.005481677129864693, 0.03378209471702576, -0.012085587717592716, 0.011769060976803303, 0.002384745515882969, -0.03470290079712868, -0.028127767145633698, 0.0056327469646930695, 0.014042302034795284, -0.0023128073662519455, -0.024372601881623268, -0.0010907602263614535, -0.004150823689997196, 0.025422897189855576, -0.012186300940811634, 0.029307549819350243, -0.02713502198457718, -0.0036562499590218067, 0.004093273542821407, -0.014286891557276249, -0.014553061686456203, 0.008726081810891628, -0.007517523597925901, -0.01097054872661829, -0.0035483429674059153, 0.014085465110838413, -0.009704438969492912, 0.015409124083817005, -0.011848192662000656, 0.005424126982688904, 0.05073069408535957, -0.027163797989487648, 0.012430890463292599, -0.0252358578145504, -0.0007090391591191292, -0.010344687849283218, -0.031537629663944244, -0.012725836597383022, 0.00031338000553660095, -0.01447393000125885, -0.021696507930755615, -0.00815777201205492, 0.018473684787750244, -0.019768567755818367, 0.009092966094613075, 0.031019674614071846, 0.012639510445296764, -0.03171028196811676, 0.035710033029317856, -0.0015385744627565145, 0.011617990210652351, 0.009848315268754959, -0.0058377706445753574, 0.0011294269934296608, -0.014819232746958733, 0.03484677895903587, 0.010502951219677925, -0.021351205185055733, -0.014646581374108791, 0.009258423931896687, -0.014049495570361614, 0.017898179590702057, 0.015337186865508556, -0.026775332167744637, -0.004722731187939644, -0.01536596193909645, -0.003118513384833932, -0.0016986365662887692, -0.025912076234817505, -0.01907796412706375, 0.005852158181369305, -0.03516330569982529, -0.007161430083215237, 0.007697368506342173, 0.0006415972602553666, -0.02104906551539898, 0.013466797769069672, -0.02481861785054207, -0.019711017608642578, 0.005280250683426857, 0.026976758614182472, -0.0021599391475319862, -0.008855571039021015, -0.015121372416615486, -0.004460157360881567, 0.03686104342341423, -0.007355662994086742, 0.02001315727829933, -0.038501229137182236, 0.004391816444694996, 0.02795511484146118, -0.008352003991603851, -0.014876782894134521, -0.0029908232390880585, 0.030645597726106644, 0.0004806359065696597, 0.002183319069445133, -0.025854526087641716, -0.039393261075019836, -0.0012975820573046803, 0.01074754074215889, -0.008049864321947098, 0.007956345565617085, 0.012056812644004822, -0.004150823689997196, -0.02243027463555336, -0.006596716586500406, 0.010725959204137325, -0.003667040728032589, 0.01052453275769949, -0.0022192879114300013, -0.0102439746260643, 0.0015817373059689999, -0.013157464563846588, -0.013366084545850754, -0.0023685593623667955, -0.015754427760839462, -0.016977373510599136, 0.006460034288465977, -0.009984997101128101, 0.012171913869678974, 0.023710772395133972, -0.006837708875536919, -0.009308780543506145, -0.024502091109752655, 0.00408607954159379, 0.0004509614664129913, 0.008208128623664379, 0.008711694739758968, 0.010582082904875278, 0.010862641036510468, -0.0043198782950639725, -0.002855939557775855, -0.004985305014997721, -0.011596409603953362, -0.0010592873441055417, -0.0025196291971951723, 0.003417056053876877, -0.012531603686511517, -0.0003432792436797172, -0.012704255059361458, 0.07176537066698074, 0.014732906594872475, 0.006747786421328783, -0.0025987611152231693, -0.004237149376422167, -0.031595177948474884, -0.0038810563273727894, 0.021250491961836815, 0.013135883025825024, -0.009992191568017006, -0.01211436279118061, -0.01594146527349949, 0.0010898610344156623, 0.015495450235903263, -0.01676155999302864, 0.007183011621236801, 0.01025116816163063, 0.012574766762554646, -0.006226236000657082, 0.016977373510599136, 0.01028713770210743, -0.013250983320176601, -0.016588907688856125, 0.01913551427423954, -0.0015142953488975763, 0.019754180684685707, -0.004247940145432949, 0.009380717761814594, 0.0034764050506055355, 0.024056075140833855, 0.0013209619792178273, -0.011912936344742775, -0.006452840752899647, 0.002888311631977558, -0.002293024444952607, 0.005816189106553793, 0.00467597134411335, 0.018042055889964104, -0.0022912260610610247, 0.003598699579015374, -0.00889873318374157, 0.002302016830071807, 0.010337494313716888, 0.030703147873282433, -0.01169712282717228, -0.01582636497914791, 0.0036094903480261564, -0.004791072104126215, 0.01730828918516636, -0.005542824510484934, -0.0265739057213068, -0.026444416493177414, 0.0017624815227463841, 0.02060304954648018, 0.008136190474033356, -0.006366515066474676, 0.013179046101868153, -0.003690420649945736, 0.009992191568017006, -0.0028721254784613848, -0.02525024674832821, 0.0011465122224763036, -0.012243851087987423, -0.02481861785054207, -0.01053172629326582, -0.02149508148431778, -0.006258607842028141, -0.016919823363423347, 0.0002322249347344041, -0.004776684567332268, -0.014660969376564026, 0.008093027397990227, 0.01630115509033203, -0.025480447337031364, 3.3046530006686226e-05, 0.023063329979777336, -0.0006357522797770798, 0.03185415640473366, 0.03464535251259804, 0.009891478344798088, 0.0030573660042136908, 0.003239009529352188, -0.022718027234077454, -0.011689928360283375, -0.006812530569732189, -0.0007985120755620301, -0.0022300786804407835, -0.027681751176714897, 0.0066111041232943535, -0.028832759708166122, -0.006348530296236277, 0.005319816991686821, -0.004880995023995638, 0.015178922563791275, -0.0005723569192923605, 0.005175940692424774, -0.01215752586722374, -0.019797343760728836, 0.02053111232817173, -0.011510083451867104, 0.004467351362109184, 0.004283909220248461, -0.012963231652975082, -0.005309026222676039, 0.011078455485403538, 0.0004107211425434798, 0.019926832988858223, -0.002149148378521204, -0.010056935250759125, 0.011740284971892834, -0.004294699989259243, -0.017480939626693726, -0.0007881709607318044, 0.004395413212478161, -0.022746803238987923, -0.0004626513982657343, 0.015035047195851803, -0.007060716859996319, -0.02005632035434246, -0.023192819207906723, -0.007049926090985537, -0.005222700536251068, -0.0029548543971031904, -0.006521181669086218, -0.00771175604313612, 0.006341336760669947, -0.009869896806776524, -0.003805521409958601, -0.011589215137064457, -0.008006702177226543, -0.000717132177669555, 0.008697306737303734, 0.010668409056961536, -0.014301278628408909, 0.018042055889964104, 0.003981769550591707, 0.004873801022768021, -0.01307113841176033, 0.02663145586848259, -0.010934579186141491, 0.022559763863682747, 0.010042548179626465, 0.014351635240018368, 0.02933632582426071, 0.003920622169971466, 0.005316219758242369, -0.008560624904930592, -0.031480077654123306, 0.002372156362980604, -0.020459173247218132, 0.018056442961096764, -0.03550860658288002, -0.002316404366865754, -0.009459850378334522, 0.00442059151828289, 0.005639940965920687, -0.02473229169845581, 0.01876143552362919, -0.013121495023369789, -0.007826857268810272, -0.006916841026395559, -0.0005202018073759973, -0.01635870710015297, 0.0008299849578179419, -0.010157648473978043, 0.0028523425571620464, 0.01910673826932907, 0.02845868095755577, 0.0065607475116848946, 0.0006829616031609476, -0.008416748605668545, 0.011805029585957527, 0.011596409603953362, -0.02327914349734783, 0.003913428634405136, 0.0010853649582713842, -0.011301463469862938, 0.0034674126654863358, -0.020459173247218132, 0.018056442961096764, 0.01733706332743168, -0.011502889916300774, 0.021653344854712486, 0.0044817388989031315, 0.0014909155433997512, -0.007193802390247583, 0.012207882478833199, -0.017178799957036972, -0.013481185771524906, 0.0012795976363122463, -0.0061147320084273815, 0.01048136968165636, 0.0057910108007490635, -0.005470886826515198, -0.014804844744503498, -0.011898549273610115, 0.023077717050909996, 0.01768236607313156, 0.016646457836031914, -0.009869896806776524, 0.002827164251357317, -0.004575258120894432, 0.002873924095183611, 0.011567633599042892, 0.012236657552421093, -0.025422897189855576, -0.018775824457406998, -0.024617191404104233, -0.012171913869678974, -0.011761866509914398, -0.02376832254230976, -0.02798389084637165, 0.010884222574532032, 0.011272688396275043, 0.005021274089813232, 0.0100209666416049, 0.016660846769809723, -0.006952810101211071, 0.02804144099354744, 0.007992314174771309, 0.019854893907904625, -0.01334450300782919, 0.018056442961096764, -0.011984874494373798, -0.019869280979037285, 0.003515970893204212, 0.00865414459258318, 0.013696999289095402, 0.012020844034850597, -0.013661030679941177, 0.021840384230017662, -0.005078824236989021, 0.0020826058462262154, 0.02096273936331272, -0.010639633983373642, 0.025897687301039696, 0.02388342283666134, -0.0009441865258850157, 0.01812838204205036, -0.006546359974890947, -0.011416563764214516, 0.007200995925813913, -0.00344942812807858, -0.007682980969548225, 0.0024045284371823072, -0.01690543442964554, -0.0003801474813371897, -0.0011905742576345801, 0.010553307831287384, -2.65692979155574e-05, 0.0015322798863053322, 0.007269337307661772, -0.006204654462635517, 0.016588907688856125, 0.011819417588412762, -0.012358952313661575, -0.005492467898875475, 0.007826857268810272, -0.0044853356666862965, -0.019811730831861496, -0.0012427293695509434, 0.0012256440240889788, -0.012970425188541412, -0.005970855709165335, -0.005442111287266016, 0.03139375150203705, -0.04486054927110672, 0.015553000383079052, -0.004916963633149862, 0.006366515066474676, -0.0010278144618496299, -0.012776193208992481, 0.017855016514658928, 0.013445216231048107, 0.011020905338227749, -0.002125768456608057, 0.00019445746147539467, -0.006334142759442329, 0.007165026850998402, 0.0241999514400959, 0.0057442509569227695, 0.010157648473978043, 0.01356751099228859, -0.029149286448955536, -0.012322983704507351, -0.02431505173444748, 0.00024009315529838204, 0.009941834956407547, 0.008575011976063251, -0.001249923137947917, 0.006021212320774794, 0.004427785519510508, 0.02749471180140972, -0.005078824236989021, -0.01238772738724947, -0.004877397790551186, -0.0010359075386077166, 0.0009378919494338334, 0.010841060429811478, 0.005740654189139605, -0.0037012111861258745, -3.667153214337304e-05, -0.009481430985033512, -0.031048450618982315, 0.007553492207080126, 0.00344942812807858, 0.017941342666745186, -0.000927101238630712, -0.002703071106225252, 0.025753812864422798, -0.004607630427926779, -4.94854903081432e-05, -0.018401745706796646, -0.011603603139519691, -0.002938668243587017, -0.01076192781329155, 0.008855571039021015, 0.02755226194858551, -0.02202742174267769, 0.011495696380734444, 0.004845025949180126, 0.01171150989830494, 0.011157587170600891, 0.017610428854823112, 0.005715475883334875, 0.0027408385649323463, 0.012351758778095245, 0.017006147652864456, 0.024430152028799057, -0.027163797989487648, 0.014653774909675121, -0.0004990700399503112, -0.02376832254230976, 0.0004424188518896699, 6.496902642538771e-05, 0.011445339769124985, 0.00038149632746353745, -0.006064375396817923, -0.024574028328061104, 0.0019764972385019064, -0.010150454938411713, -0.02243027463555336, -0.010200811550021172, 0.0002668451052159071, 0.019509591162204742, 0.01397036388516426, -0.005355785600841045, -5.384813903219765e-06, 0.017869405448436737, 0.005064436700195074, 0.002706668106839061, 0.005873739719390869, 0.028760820627212524, 0.007834050804376602, -0.013473991304636002, -0.010733152739703655, 0.027163797989487648, 0.006665057968348265, -0.016977373510599136, 0.02525024674832821, -0.014991884119808674, 0.021624568849802017, -0.004985305014997721, -0.008560624904930592, 0.022185686975717545, 0.002632931573316455, -0.01238772738724947, 0.006744189653545618, -0.032918840646743774, -0.005107599776238203, -0.0017049311427399516, -0.021178554743528366, -0.015409124083817005, -0.00748155452311039, -0.022056197747588158, 0.006341336760669947, -0.009934640489518642, -0.003913428634405136, -0.029811115935444832, -0.006409677676856518, 0.03271741420030594, -0.0010583881521597505, -0.012200688943266869, -0.009726020507514477, 0.004589645657688379, 0.01828664541244507, 0.019854893907904625, 0.006521181669086218, 0.007024747785180807, -0.01584075205028057, -0.0052982354536652565, 0.00113931845407933, -0.002537613734602928, -0.005395351909101009, -0.0030321876984089613, 0.013092719949781895, -0.033897195011377335, 0.01592707820236683, -0.0019009622046723962, -0.0036868236493319273, -0.0006474421825259924, 0.003985366318374872, 0.0021581407636404037, 0.02060304954648018, 0.0010161246173083782, -0.015006271190941334, 0.00573705742135644, 0.014351635240018368, 0.02094835229218006, -3.206300243618898e-05, 0.006647073198109865, 0.013920007273554802, -0.010092904791235924, 0.003649056190624833, 0.016042178496718407, -0.008963477797806263, 0.003363102674484253, -0.014862395823001862, 0.0064456467516720295, 0.011725897900760174, 0.01730828918516636, -0.01047417614609003, 0.02614227682352066, 0.009416687302291393, 0.013315727934241295, 3.888446826749714e-06, 0.02893347293138504, 0.010898610576987267, 0.0012013650266453624, -0.007776500191539526, -0.015437900088727474, -0.02333669364452362, -0.01561055053025484, 0.02057427540421486, -0.037148796021938324, -0.009294392541050911, 0.031048450618982315, -0.03700491786003113, 0.003690420649945736, 0.02430066466331482, -0.018042055889964104, -0.004298296757042408, 0.0014999078121036291, 0.0025448075029999018, 0.019250614568591118, 0.004535692278295755, 0.002526822965592146, 0.025969626381993294, -0.010733152739703655, -0.013804906979203224, -0.014294085092842579, 0.027322061359882355, -0.004888188559561968, 0.0007342174649238586, -0.0009927446953952312, -0.01680472120642662, -0.0032533970661461353, 0.0024009314365684986, 0.02936509996652603, -0.03406984731554985, 0.011596409603953362, -0.009977803565561771, -4.625389919965528e-05, 0.003598699579015374, -0.024156788364052773, -0.0006303568952716887, 0.0123949209228158, 0.016142891719937325, -0.009661276824772358, 0.003773149335756898, -0.02841551974415779, 0.015035047195851803, 0.01916428841650486, -0.003963785246014595, 0.005880933254957199, 0.00619026692584157, -0.029696015641093254, 0.0048054601065814495, 0.0013650240143761039, -0.01186977420002222, -0.001624000840820372, -0.00573705742135644, -0.004607630427926779, 0.0067693679593503475, 0.036141663789749146, -0.026746556162834167, 0.010596470907330513, 0.014538674615323544, 0.01828664541244507, 0.009812346659600735, -0.011337432079017162, 0.011344626545906067, -0.0014504503924399614, 0.0009235043544322252, 0.015294023789465427, -0.00032709320657886565, -0.011956099420785904, 0.016516970470547676, -0.01001377310603857, 0.0014009929727762938, -0.0095749506726861, -0.005636344198137522, 0.011625184677541256, -0.004255134146660566, 0.014135821722447872, 0.0023541718255728483, -0.003127505537122488, 0.015984628349542618, 0.02713502198457718, 0.013898425735533237, 0.006744189653545618, 0.0057946075685322285, -0.009452655911445618, 0.01030871830880642, 0.0009068687213584781, 0.026286153122782707, -0.011452533304691315, -0.0037335834931582212, 0.020243359729647636, -0.0010637835366651416, -0.0017705745995044708, -0.017898179590702057, 0.005096809007227421, 0.007611042819917202, -0.003677831497043371, -0.007046329323202372, 0.02762420102953911, -0.004363040905445814, 0.019955607131123543, -0.00033226373489014804, -0.023595672100782394, -0.004827041178941727, -0.006852096877992153, 0.006629088893532753, 0.0038774593267589808, 0.008977864868938923, 0.007341274991631508, 0.011301463469862938, 0.03605533763766289, -0.005773026496171951, -0.0002045737492153421, -0.0026491177268326283, 0.0036634437274187803, -0.013625061139464378, -0.006240623537451029, -0.01469693798571825, 0.0030429784674197435, 0.002057427540421486, -0.004755103494971991, -0.00594208063557744, -0.004625614732503891, 0.009423880837857723, 0.01001377310603857, 0.012531603686511517, 0.012222270481288433, -0.012028037570416927, -0.004521304741501808, 0.001965706469491124, -0.008798019960522652, 0.01686227321624756, -0.008057058788836002, -0.02933632582426071, -0.009934640489518642, 0.004140033386647701, -0.00958214420825243, -0.002911691553890705, 0.01496310904622078, 0.004132839385420084, 0.005291041452437639, 0.016142891719937325, -0.009855508804321289, -0.01447393000125885, -0.012495634146034718, -0.007402422372251749, 0.002084404230117798, 0.0012697060592472553, -0.01966785453259945, 0.0031311025377362967, 0.013855263590812683, -0.0006505894707515836, 0.00036418624222278595, -0.022056197747588158, -0.01812838204205036, -0.015783201903104782, 0.002260652370750904, 0.022617314010858536, -0.0016689621843397617, 0.010553307831287384, 0.015682488679885864, -0.018991637974977493, 0.026027176529169083, -0.028228480368852615, -0.015236473642289639, 0.010567695833742619, 0.019811730831861496, -0.012675479985773563, -0.0005543723818846047, 0.000617767742369324, -0.036170437932014465, -0.031106000766158104, -0.00573705742135644, 0.017452163621783257, 0.014848007820546627, -0.0016105124959722161, 0.00018310474115423858, -0.007416809909045696, -0.00017400008800905198, -0.02388342283666134, -0.009474237449467182, -0.005593181122094393, -0.00251783081330359, -0.0033469165209680796, 0.03484677895903587, 0.007517523597925901, 0.0004662483115680516, -0.008316035382449627, 0.004582452122122049, 0.00309873023070395, 0.015524225309491158, -0.026760945096611977, 0.0001412907731719315, 0.00016703110304661095, -0.0027929937932640314, 0.029091736301779747, -0.00701036024838686, 0.003981769550591707, 0.01097054872661829, 0.009481430985033512, 0.010495757684111595, -0.014660969376564026, -0.00839516706764698, 0.00430908752605319, -0.0069312285631895065, -0.02150946855545044, 0.00794915109872818, -0.0058377706445753574, -0.024502091109752655, 0.005032064858824015, -0.01188416127115488, -0.02155263163149357, 0.007236965000629425, -0.010934579186141491, 0.00723336823284626, 0.005496065132319927, 0.020761312916874886, 0.012754611670970917, 0.02061743661761284, 0.009740408509969711, 0.0006627290276810527, -0.0014288689708337188, -0.013927200809121132, 0.026386866346001625, -0.012653898447751999, 0.010668409056961536, 0.00034372886875644326, -0.016157280653715134, 0.007848437875509262, -0.027840014547109604, 0.01260354183614254, -0.003499784739688039, -0.009596532210707664, -0.03360944241285324, -0.013596286065876484, 0.012035231105983257, 0.002584373578429222, -0.018804598599672318, -0.0025034432765096426, 0.019063575193285942, 0.002454885048791766, -0.0181139949709177, -0.007510329596698284, 0.007733337581157684, -0.02336546964943409, 0.021092228591442108, 0.011064067482948303, -0.008467105217278004, 0.0009342950652353466, -0.01491994597017765, -0.0093519426882267, -0.030674373731017113, -0.006924034561961889, 0.00607876293361187, -0.004003351088613272, 0.00911454763263464, -1.7478691006544977e-05, 0.010668409056961536, 0.0031436916906386614, -0.01962469331920147, -0.014358829706907272, -0.00582338310778141, -0.020185809582471848, -0.00845271721482277, -0.014430766925215721, -0.027451548725366592, 0.009855508804321289, -0.0033199398312717676, -0.015092597343027592, -0.006578732281923294, -0.02664584293961525, -0.008071445859968662, -0.009013834409415722, -0.011466920375823975, 0.006129119545221329, -0.009524594061076641, 0.011315850540995598, -0.01582636497914791, 0.012495634146034718, 0.007783694192767143, -0.0095749506726861, -0.00571907265111804, 0.015999015420675278, 0.005708281882107258, -0.005420530214905739, 0.012524410150945187, -0.008639756590127945, -0.029134899377822876, 0.0135099608451128, -0.006409677676856518, -0.007740531116724014, 0.0016509776469320059, 0.01030871830880642, 0.002956652780994773, -0.006722608115524054, 0.0048126536421477795, 0.005902514792978764, -0.022041810676455498, 0.0017444971017539501, 0.008819601498544216, -0.010164842940866947, 0.0042695216834545135, 0.012862518429756165, -0.007060716859996319, -0.017495326697826385, 0.015308410860598087, -0.012452472001314163, -0.0005242483457550406, 0.012143137864768505, -0.006593119818717241, 0.010553307831287384, 0.01209997572004795, -0.02140875533223152, -0.03910550847649574, -0.007783694192767143, -0.0020808072295039892, 0.010733152739703655, -0.015250860713422298, -0.011107230558991432, 0.01630115509033203, -0.013250983320176601, 0.01424372848123312, -0.007157833315432072, -0.0181139949709177, 0.003620280884206295, 0.0016213031485676765, -0.0002134536043740809, 0.012056812644004822, 0.01628676801919937, -0.005060839932411909, 0.007546298671513796, 0.004093273542821407, 0.021379981189966202, 0.02100590243935585, -0.01868949830532074, -0.0041076610796153545, 0.007690174505114555, 0.019768567755818367, -0.010373462922871113, -0.003787536872550845, -0.013092719949781895, 0.03087580017745495, 0.0075894612818956375, -0.00021806213771924376, -0.020300909876823425, -0.024904944002628326, -0.030501721426844597, -0.018962861970067024, -0.001978295622393489, -0.0033379243686795235, 0.003870265558362007, 0.014214953407645226, 0.011740284971892834, -0.0026509161107242107, -0.031940482556819916, -0.004089676775038242, -0.016214830800890923, 0.011380595155060291, 0.023235980421304703, 0.0069276317954063416, 0.017811855301260948, 0.01634431816637516, 0.02139436826109886, 0.001513396156951785, -0.023566896095871925, -0.004050110466778278, 0.026343703269958496, 0.0066111041232943535, 0.012510022148489952, -0.00407888600602746, -0.01594146527349949, -0.011222331784665585, -0.010927385650575161, 0.005337801296263933, -0.0012661091750487685, -0.004722731187939644, 0.000500418886076659, 0.013128689490258694, -0.015106984414160252, 0.02099151536822319, 0.02001315727829933, -0.008093027397990227, 0.00780527526512742, 0.006629088893532753, -0.002388342283666134, 0.003177862148731947, -0.009035415947437286, -0.010143261402845383, 0.0027462339494377375, 0.014430766925215721, 0.0027372417971491814, 0.024919331073760986, -0.024171175435185432, 0.01120794378221035, 0.010668409056961536, -0.018574398010969162, -0.04299016296863556, -0.0012400316772982478, 0.0023469780571758747, -0.003999753855168819, -0.005557212047278881, -0.009244035929441452, -0.003017800161615014, 0.006812530569732189, -0.005758638493716717, 0.01216471940279007, 0.0028163734823465347, -0.007596655283123255, -0.007132655009627342, 0.009100159630179405, 0.004226358607411385, 0.015250860713422298, 0.011502889916300774, -0.02146630547940731, 0.007647011894732714, 0.0018524040933698416, -0.0025340167339891195, 0.01143814530223608, -0.012948843650519848, 0.017998892813920975, -0.02050233632326126, -0.01735145039856434, 0.015711264684796333, 0.022257624194025993, -0.012898487038910389, -0.000855612859595567, -0.016056567430496216, 0.008798019960522652, -0.00794915109872818, -0.012330177240073681, 0.023969748988747597, -0.008510268293321133, 0.017121249809861183, 0.014150208793580532, 0.015466675162315369, 0.009848315268754959, 0.00022480632469523698, -0.00723336823284626, -0.01025116816163063, 0.014337248168885708, -0.008459911681711674, -0.010380656458437443, -0.012920068576931953, -0.0128409368917346, -0.007682980969548225, 0.026271766051650047, 0.005697491578757763, 0.007826857268810272, 0.01771114207804203, -0.008776438422501087, -0.0026185440365225077, 0.009387912228703499, -0.011013710871338844, 0.020214583724737167, 0.0067729647271335125, 0.012049619108438492, -0.020372848957777023, -0.008539043366909027, 0.012819355353713036, -0.00980515219271183, 0.007661399431526661, 0.029753565788269043, 0.015783201903104782, 0.01237334031611681, 0.027336448431015015, -0.014646581374108791, -0.008762051351368427, -0.010337494313716888, 0.024386988952755928, 0.010941773653030396, -0.011402176693081856, -0.005992437247186899, 0.008977864868938923, 0.006661460734903812, -0.02427188865840435, 0.008215322159230709, -0.005697491578757763, -0.002782203024253249, -0.019754180684685707, -0.002965644933283329, -0.021768445149064064, 0.021739671006798744, -0.004298296757042408, 0.004244343377649784, 0.006366515066474676, 0.0039961570873856544, 0.011769060976803303, 0.0012840937124565244, 0.013934395276010036, -0.0024243113584816456, -0.01166115328669548, -0.023494958877563477, -0.011531664989888668, 0.0241999514400959, 0.004697552882134914, 0.003451226744800806, 0.005568002816289663, 0.014589031226933002, -0.01955275423824787, -0.006848499644547701, -0.007334081456065178, -0.01120794378221035, 0.00444576982408762, 0.0005031165201216936, 0.004629211965948343, 0.005395351909101009, -0.014833619818091393, -0.01282654982060194, -0.009229647926986217, -0.016962986439466476, 0.010056935250759125, 0.018862148746848106, 0.025523610413074493, -0.013013588264584541, -0.007718950044363737, -0.016200441867113113, -0.02289067953824997, -0.012416502460837364, 0.002339784288778901, -0.019466428086161613, 0.0007854732684791088, 0.014560256153345108, 0.0033469165209680796, 0.0010583881521597505, 0.01333011593669653, 0.0024890555068850517, 0.017078086733818054, 0.0182578694075346, -0.00453928904607892, -0.03263108804821968, -0.012531603686511517, -0.01238053385168314, -0.012279820628464222, -0.017150023952126503, 0.016660846769809723, -0.001037705922499299, 0.010841060429811478, -0.0167759470641613, 0.00889153964817524, -0.007503135595470667, -0.013768937438726425, 0.0023128073662519455, 0.004578855354338884, 0.007905988954007626, 0.003294761525467038, 0.011517276987433434, 0.02571064978837967, 0.018416134640574455, -0.03124987706542015, -0.00321023422293365, -0.019869280979037285, 0.00817215908318758, -0.022200074046850204, -0.004129242617636919, 0.010927385650575161, -0.0025627920404076576, 0.012668285518884659, 0.004129242617636919, -0.003016001544892788, 0.013380472548305988, 0.010546114295721054, 0.0016563729150220752, -0.009431074373424053, -0.008244097232818604, -0.0017346055246889591, 0.010186424478888512, -0.012912875041365623, -0.027278898283839226, 0.028386743739247322, -0.0001264535530935973, -0.008769244886934757, 0.0029854278545826674, 0.010769122280180454, 0.009143322706222534, -0.008949089795351028, -0.0024189159739762545, 0.005157956387847662, 0.0007252251962199807, 0.010589277371764183, -0.004050110466778278, -0.016962986439466476, 0.009035415947437286, 0.012675479985773563, -0.0037012111861258745, -0.01520769763737917, -0.004722731187939644, -0.020459173247218132, 0.01689104735851288, 0.019969994202256203, 0.025034431368112564, 0.009510206989943981, 0.027897564694285393, -0.006661460734903812, 0.025581160560250282, 0.013438022695481777, -0.021351205185055733, 0.006790949497371912, -0.009294392541050911, -0.00035204668529331684, -0.0215238556265831, -0.01216471940279007, -0.018962861970067024, 0.0020466367714107037, -0.0033774902112782, -0.0024980478920042515, -0.011840998195111752, -0.012308595702052116, 0.009488625451922417, -0.023250369355082512, 0.025883300229907036, 0.010797897353768349, 0.01634431816637516, 0.0051399716176092625, 0.005201118998229504, 0.007294515613466501, 0.0019405281636863947, -0.011416563764214516, -0.0024153192061930895, 0.0021617375314235687, -0.008560624904930592, 0.01186977420002222, -0.00780527526512742, -0.006334142759442329, -1.9986687220807653e-06, -0.01561055053025484, 0.013035169802606106, -3.2119201932800934e-05, 0.02527902089059353, -0.002537613734602928, 0.000885736895725131, 0.021653344854712486, 0.03217068314552307, -0.005060839932411909, 0.0011276284931227565, -0.00548887113109231, -0.01776869222521782, -0.0018560009775683284, 0.012135944329202175, -0.020286522805690765, -0.006175879389047623, 0.0048162504099309444, 0.015351573936641216, -0.01876143552362919, 0.019509591162204742, 0.0025537998881191015, 0.01630115509033203, -0.002771412255242467, -0.000634403433650732, 0.008294453844428062, 0.0034620172809809446, -0.00298003270290792, -0.004503320436924696, 0.008682919666171074, -0.013229402713477612, -0.01097774226218462, 0.002435102127492428, -0.018430521711707115, -0.005844964180141687, 0.0028253658674657345, 0.0011932719498872757, -0.006916841026395559, -0.007438391447067261, 0.007905988954007626, -0.0027336447965353727, -0.010560501366853714, 0.034731678664684296, 0.011495696380734444, -0.014437961392104626, 0.019049188122153282, 0.003755164798349142, -0.005891724023967981, -0.010891417041420937, -0.015970241278409958, 0.0002677443262655288, -0.010344687849283218, 0.0035411491990089417, 0.0005579692660830915, 0.009675663895905018, 0.004607630427926779, 0.0023415826726704836, 0.0016644659917801619, -0.005769429262727499, 0.008006702177226543, -0.014574643224477768, -0.01006412971764803, -0.011243913322687149, 0.0034674126654863358, -0.0003770001931115985, -0.021595794707536697, 0.0018191327108070254, 0.016516970470547676, 0.0005521243438124657, 0.004632808733731508, 0.004834235180169344, 0.00780527526512742, -0.013473991304636002, 0.0012031634105369449, 0.003086141077801585, 0.0022031019907444715, -0.016099728643894196, 0.014509899541735649, -0.004348653368651867, -0.0047587002627551556, -0.004240746609866619, 0.006406080909073353, 0.006844902876764536, 0.019955607131123543, 0.006956406868994236, -0.002127567073330283, 0.0041616144590079784, 0.02244466356933117, -0.006596716586500406, 0.005366576369851828, 0.005211909767240286, 0.00396738201379776, -0.0035483429674059153, -0.001761582330800593, -0.0002612249518278986, 0.0014414581237360835, -0.006539166439324617, 0.011840998195111752, 0.011790641583502293, -0.009510206989943981, -0.0053018322214484215, -0.0028127767145633698, -0.0019585127010941505, 0.0016338923014700413, 0.006672251503914595, 0.003109520999714732, 0.01585514098405838, -0.01775430329144001, 0.01773991622030735, 0.012474053539335728, -0.013855263590812683, -0.01627238094806671, -0.002010667696595192, -0.0019800940062850714, 0.00036688390537165105, -0.006625491660088301, 0.004690358880907297, 0.013761743903160095, -0.012589153833687305, -0.019955607131123543, -0.019955607131123543, -0.007366453297436237, -0.013991945423185825, -0.0034620172809809446, 0.01827225834131241, 0.010488564148545265, -0.016516970470547676, 0.006010422017425299, -0.023135267198085785, -0.021351205185055733, -0.01919306442141533, -0.022977003827691078, -0.017941342666745186, 0.006949212867766619, -0.00045118629350326955, -0.028660107403993607, 0.0015403729630634189, 0.016042178496718407, 0.00979076512157917, 0.02514953352510929, -0.009395105764269829, -0.02424311451613903, 0.00045725604286417365, 0.01496310904622078, 0.003888250095769763, -0.024545254185795784, 0.008143384009599686, 0.00192793901078403, -0.006017615552991629, -0.019826119765639305, -0.0016761559527367353, 0.008913121186196804, -0.015063822269439697, -0.04045794531702995, -0.003010606160387397, 0.022588539868593216, -0.006794546265155077, -0.010488564148545265, 0.024660354480147362, -0.004046513698995113, 0.018962861970067024, -0.015596163459122181, -0.008539043366909027, -0.009028221480548382, 0.015394737012684345, 0.0011905742576345801, -0.00907138455659151, 0.04071692004799843, 0.0015259853098541498, -0.0031940483022481203, 0.008546236902475357, 0.002343381056562066, -0.019221840426325798, 0.030012542381882668, -0.01120075024664402, 0.005517646204680204, -0.010618052445352077, -0.006805337034165859, 0.014128627255558968, 0.0025250245817005634, 0.009927446953952312, -0.026818495243787766, -0.0007742329617030919, -0.012855324894189835, 0.0021023887675255537, 0.001716621103696525, 0.01827225834131241, 0.011287075467407703, -0.006039197091013193, -0.004629211965948343, 0.007812469266355038, -0.005204715766012669, 0.011625184677541256, -0.018862148746848106, -0.007334081456065178, -6.052910248399712e-05, -0.007661399431526661, 0.0001569148153066635, -0.016646457836031914, 0.024128012359142303, -0.014114240184426308, 0.00583057664334774, 0.0017633808311074972, 0.03539350628852844, -0.006082359701395035, -0.014387604780495167, -0.0038199089467525482, 0.015078209340572357, 0.012135944329202175, -0.005244282074272633, -0.01628676801919937, 0.024444540962576866, 0.014416379854083061, 0.004337862599641085, -0.014531480148434639, 0.012416502460837364, -0.019912444055080414, 0.009100159630179405, -0.005273057147860527, -0.01723635010421276, 0.02343740686774254, -0.01585514098405838, -0.023494958877563477, -0.003274978371337056, -0.02378270961344242, -0.004424188286066055, 0.001268806867301464, 0.0007994112675078213, 0.007362856529653072, 0.01592707820236683, -0.0017462954856455326, 0.0024099238216876984, -0.007438391447067261, 0.004729925189167261, 0.015164535492658615, 0.04952213540673256, 0.017092473804950714, 0.010323106311261654, -0.01401352696120739, 0.0008744965889491141, -0.038069602102041245, 0.007819662801921368, 0.0010215198853984475, -0.023940974846482277, -0.008567818440496922, 0.011524471454322338, 0.010661214590072632, 0.024386988952755928, 0.009495818987488747, -0.01029433123767376, -0.006783755496144295, -0.00192793901078403, -0.0071470425464212894, -0.010934579186141491, 0.0077549186535179615, 0.007154236547648907, 0.014862395823001862, -0.015725651755928993, -0.00866133812814951, 0.016991760581731796, 0.007726143579930067, 0.0011725897202268243, -0.0037695523351430893, 0.009877090342342854, 0.01025836169719696, 0.012171913869678974, -0.025020044296979904, -0.038069602102041245, 0.019437653943896294, -0.007395228836685419, 0.02855939418077469, 0.006517584901303053, 0.01631554402410984, 4.5776185288559645e-05, -0.003260590834543109, -0.0020736134611070156, -0.00934474915266037, 0.002372156362980604, -0.011524471454322338, -0.0005013180780224502, -0.006524778436869383, 0.01491994597017765, -0.00361668411642313, -0.016704007983207703, 0.020862026140093803, 0.013991945423185825, -0.010869835503399372, -0.028127767145633698, -0.013258177787065506, 0.0005053646164014935, 0.010092904791235924, 0.018790211528539658, -0.016070954501628876, 0.0004770390223711729, -0.013092719949781895, -0.013682612217962742, -0.008740469813346863, 0.004003351088613272, 0.019466428086161613, -0.009272811003029346, 0.0019639080855995417, 0.00042263587238267064, 0.01007132325321436, 0.009848315268754959, 0.006715414579957724, 0.0215238556265831, -0.01771114207804203, -0.0067549804225564, -0.0372638963162899, -0.023681996390223503, -0.030674373731017113, -0.04474544897675514, -0.019308164715766907, -0.01561055053025484, 0.009639695286750793, 0.004701149649918079, -0.01355312392115593, 0.013171851634979248, 0.0019369312794879079, -0.019466428086161613, -0.0020088693127036095, 0.0037659555673599243, -0.00031585287069901824, 0.0036508545745164156, 0.007884407415986061, -0.025523610413074493, -0.001291287480853498, -0.025998400524258614, 0.002494450891390443, 0.008114608936011791, -0.009143322706222534, 0.0003749769530259073, -0.013193433173000813, 0.004877397790551186, 0.008690113201737404, 0.016574520617723465, 0.020746925845742226, 0.011121618561446667, -0.00594208063557744, -0.018545622006058693, -0.02890469692647457, -0.01097774226218462, -0.0025250245817005634, -0.0009122640476562083, 0.030213968828320503, -0.016459420323371887, 0.008524655364453793, -0.003481800202280283, 0.007647011894732714, 0.0038774593267589808, 0.016027791425585747, 0.003960188012570143, 0.019768567755818367, 0.010215199552476406, -0.004470948129892349, -0.002246264833956957, -0.0026814898010343313, 0.03752287104725838, 0.025552386417984962, -0.0009801555424928665, 0.0030375830829143524, 0.01589830219745636, 0.012258239090442657, -0.011251106858253479, -0.002328993519768119, 0.007848437875509262, -0.014517093077301979, -0.0038918470963835716, 0.004622017964720726, 0.007409616373479366, 0.0038522810209542513, 0.0036526531912386417, 0.002361365593969822, 0.001522388425655663, -0.006758577190339565, -0.012092781253159046, 0.0328037366271019, 0.03349434211850166, 0.0016986365662887692, -0.0005575196701101959, 0.006006824783980846, -0.02943703904747963, -0.004345056600868702, 0.02995499223470688, 0.0007121864473447204, -0.012545990757644176, -0.012308595702052116, -0.006862887181341648, 0.004204777535051107, -0.0075822677463293076, 0.012236657552421093, -0.00843833014369011, 0.0224158875644207, -0.013696999289095402, 0.003704808186739683, -0.013099913485348225, 0.008999446406960487, 0.0067693679593503475, 0.0013200626708567142, 0.0019153498578816652, -0.017639202997088432, -0.01076192781329155, 0.02201303467154503, -0.019466428086161613, -0.01048136968165636, -0.006021212320774794, 0.012020844034850597, 0.004737118724733591, 0.009150516241788864, 0.012984813190996647, 0.00956056360155344, -0.011783448047935963, -0.004143630154430866, -0.015250860713422298, 0.00501048332080245, -0.00036463583819568157, 0.004373831674456596, 0.017552876845002174, -0.0008178454008884728, -0.017926955595612526, 0.002989024855196476, -0.011589215137064457, 0.006902453489601612, 0.003740777261555195, 0.006524778436869383, 0.0036634437274187803, 0.024142401292920113, -0.019826119765639305, -0.015740038827061653, -0.007905988954007626, 0.015509837307035923, 0.0056255534291267395, -0.00689166272059083, -0.02897663600742817, -0.003722792724147439, 0.0009513803524896502, 0.012351758778095245, -0.029753565788269043, -0.00032911644666455686], "82e247ec-c751-43cf-856c-4b9305678284": [-0.00945982988923788, 0.0018180732149630785, 0.0034275311045348644, 0.013343585655093193, 0.009147881530225277, -0.048726312816143036, 0.009951148182153702, 0.029260743409395218, 0.007112419698387384, 0.06800471246242523, 0.012844468466937542, 0.022585051134228706, -0.02289699949324131, 0.001536344992928207, -0.01647086627781391, 0.040584463626146317, -0.027482638135552406, 0.029853444546461105, 0.06557151675224304, -0.014162449166178703, 0.0491318441927433, -0.019231608137488365, -0.002561874920502305, 0.05390465259552002, -0.003823315491899848, 0.0019370035734027624, -0.0067146853543818, -0.002017915016040206, -0.02047940157353878, 0.008711154572665691, 0.0278569757938385, 0.029198354110121727, 0.030836082994937897, -0.02695232629776001, 0.0014505592407658696, -0.028200119733810425, -0.0026554593350738287, 0.012555915862321854, 0.013749117963016033, 0.013062831945717335, -0.03593643382191658, 0.025501767173409462, 0.002595019293949008, 0.024877870455384254, -0.03019658848643303, 0.0102163041010499, 0.012204973958432674, -0.015301060862839222, 0.0022869703825563192, -0.02791936695575714, -0.0017313126008957624, -0.023146558552980423, 0.0015285463305190206, 0.016533255577087402, 0.0033631918486207724, -0.006539214868098497, 0.006683490704745054, 0.08959153294563293, -0.006819968111813068, -0.060018837451934814, 0.006055695004761219, -0.026500001549720764, 0.034719835966825485, 0.023380519822239876, 0.018295763060450554, 0.021898765116930008, 0.022678636014461517, -0.002916715806350112, -0.03525014966726303, -0.0029284139163792133, 0.022678636014461517, 0.035624489188194275, -0.04245615378022194, 0.020884932950139046, -0.0035055181942880154, -0.007697322405874729, -0.02631283365190029, 0.010918187908828259, 0.009561212733387947, 0.0024643910583108664, -0.0211188942193985, -0.017001178115606308, 0.028246911242604256, 0.006866760551929474, 0.07012595981359482, 0.0063715423457324505, -0.018264569342136383, -0.0476032979786396, -0.03609240800142288, -0.046293117105960846, 0.004156710114330053, -0.013967481441795826, 0.021087700501084328, -0.013780312612652779, 0.013343585655093193, 0.00980297289788723, 0.015574014745652676, 0.008718952536582947, 0.005533181596547365, -0.02706150896847248, -0.012189377099275589, 0.04152030870318413, -0.022304298356175423, 0.028886405751109123, 0.016704827547073364, 0.020884932950139046, 0.018638907000422478, 0.00023091479670256376, -0.03659152612090111, 0.036404356360435486, 0.014084462076425552, -0.00812625139951706, -0.005595571361482143, 0.001911657745949924, -0.023879636079072952, -0.03790171071887016, -0.03213066607713699, -0.02526780590415001, -0.011183343827724457, -0.038712773472070694, 0.00430098595097661, -0.038868747651576996, -0.011955415830016136, 0.019169218838214874, 0.001036253059282899, 0.010684226639568806, -0.02118128538131714, 0.029026782140135765, 0.02868364006280899, 0.024799883365631104, -0.01554282009601593, -0.03294173255562782, -0.012711890041828156, -0.024097999557852745, 0.0162213072180748, 0.012282961048185825, -0.009147881530225277, 0.051908183842897415, -0.01884167268872261, 0.04011654108762741, -0.034095942974090576, -0.055869925767183304, 0.018202178180217743, 0.005256327800452709, 0.014170248061418533, -0.004312684293836355, -0.026624782010912895, 0.04002295807003975, -0.03209947422146797, 0.008352413773536682, -0.052719250321388245, -0.008321219123899937, 0.021586816757917404, -0.003983188886195421, -0.0029089171439409256, -0.02044820599257946, 0.01876368559896946, 0.033908773213624954, 0.005911418702453375, -0.008297822438180447, 0.016891997307538986, -0.0238016489893198, -0.02612566389143467, -0.019356386736035347, 0.03167834132909775, 0.029806653037667274, 0.022647440433502197, 0.016611242666840553, -0.03509417548775673, 0.01395968347787857, 0.016907593235373497, -0.016611242666840553, 0.0025833211839199066, 0.014146852307021618, -0.015035904943943024, 0.009654797613620758, 0.005381106864660978, 0.05558917298913002, 0.02285020798444748, -0.00940523948520422, -0.03347204625606537, 0.0032910536974668503, -0.010403472930192947, -0.007744114845991135, 0.013795910403132439, -0.0024175988510251045, 0.01711036078631878, 0.03512537106871605, -0.013811507262289524, 0.01951236091554165, -0.023099767044186592, -0.0204326082020998, -0.006597705185413361, 0.04738493636250496, -0.019153621047735214, -0.0219611544162035, -0.012376545928418636, 0.011378311552107334, 0.013390377163887024, -0.025002650916576385, -0.013281195424497128, -0.022522661834955215, -0.02035462111234665, 0.037932902574539185, -0.051190704107284546, 0.0344390831887722, 0.015191878192126751, -0.02122807689011097, 0.02038581669330597, 0.009132284671068192, 0.04570041596889496, -0.016096528619527817, -0.0019857455044984818, 0.017656270414590836, 0.022491466253995895, 0.004195703659206629, -0.022553857415914536, 0.012555915862321854, -0.0018960603047162294, -0.013335786759853363, -0.008297822438180447, 0.004831298254430294, -0.016860801726579666, -0.03699706122279167, -0.048570338636636734, -0.0179058276116848, -0.007634932640939951, 0.02356768772006035, -0.0253301952034235, -0.0033846383448690176, 0.011651266366243362, 0.019434373825788498, 0.012977045960724354, -0.024893468245863914, -0.013749117963016033, 0.01973072439432144, 0.04641789570450783, 0.01098057720810175, -0.0032579093240201473, -0.002673006383702159, 0.013320188969373703, 0.036529138684272766, -0.027279872447252274, 0.009280459955334663, 0.00017632385424803942, 0.022678636014461517, -0.0020822545047849417, 0.04479576647281647, 0.016969984397292137, -0.0019106828840449452, -0.005572175141423941, 0.03213066607713699, -0.01642407476902008, -0.017001178115606308, -0.012587110511958599, 0.04888228699564934, 0.052875224500894547, 0.0075998385436832905, -0.02030782960355282, -0.03943025693297386, 0.0007126067066565156, -0.006211669184267521, -0.017437905073165894, -0.03578046336770058, 0.01711036078631878, -0.02049499936401844, 0.009514421224594116, -0.012828870676457882, 0.021820778027176857, 0.0476032979786396, 0.004195703659206629, 0.004636330530047417, 0.010949382558465004, 0.0046636261977255344, 0.015729989856481552, -0.016891997307538986, 0.0408652164041996, 0.027950560674071312, 0.034064747393131256, 0.01626810058951378, -0.00738927349448204, 0.006067392881959677, 0.006683490704745054, 0.013811507262289524, 0.019933491945266724, -0.006433932110667229, -0.00042332347948104143, 0.0030707402620464563, -0.01804620400071144, -0.0035601090639829636, -0.01546483300626278, -0.016814010217785835, 0.016876399517059326, 0.012119188904762268, -0.0003857922274619341, -0.0005317742470651865, 0.01427942980080843, -0.03114802949130535, -0.013320188969373703, 0.02363007888197899, -0.012711890041828156, -0.019044438377022743, 0.018280165269970894, -0.016985580325126648, 0.0286992359906435, -0.013593143783509731, 0.015620807185769081, -0.02044820599257946, -0.046105947345495224, 0.044670987874269485, 0.049537379294633865, -0.01427942980080843, 0.028995588421821594, -0.01799941249191761, -0.01962154358625412, -0.011214538477361202, 0.021430842578411102, -0.025720130652189255, 0.0062974547035992146, -0.02451913058757782, 0.040584463626146317, 0.011947616934776306, -0.0837269052863121, 0.008492790162563324, 0.023552091792225838, -0.02631283365190029, 0.003162375185638666, 0.008173043839633465, -0.017640672624111176, -0.0008115528034977615, -0.018420543521642685, -0.014162449166178703, -0.02384844236075878, 0.009498823434114456, -0.0044920542277395725, -0.043828725814819336, -0.0359676294028759, -0.02531459927558899, 0.004745512269437313, -0.012633902952075005, -0.01388169638812542, -0.00988095998764038, 0.017734257504343987, 0.021914362907409668, 0.024815481156110764, -0.0172195415943861, -0.0037258316297084093, -0.005837331060320139, -0.010933785699307919, 0.009303855709731579, 0.0008583450689911842, -0.026531197130680084, -0.0066717928275465965, 0.04320482909679413, -0.008757946081459522, 0.008796939626336098, -0.025969689711928368, 0.018576517701148987, 0.0012214722810313106, 0.03036816045641899, -0.001701092696748674, -0.017640672624111176, -0.017734257504343987, -0.007057828828692436, -0.01792142540216446, 0.022507064044475555, 0.04024131968617439, -0.011861830949783325, 0.01108975987881422, -0.002947910688817501, -0.028792820870876312, 0.025860507041215897, 0.012407740578055382, 0.025158625096082687, -0.020619777962565422, -0.028902003541588783, 0.008492790162563324, -0.0008178892312571406, 0.008523985743522644, 0.017313126474618912, 0.028278106823563576, 0.017547087743878365, -0.03415833041071892, -0.015503826551139355, 0.03836963325738907, -0.012368747033178806, 0.019886698573827744, -0.008048264309763908, -0.01631489209830761, -0.029713068157434464, -0.040584463626146317, 0.019044438377022743, -0.027357859537005424, 0.013148617930710316, -0.020261038094758987, 0.048663921654224396, -0.007124117575585842, 0.0078104035928845406, 0.024129195138812065, -0.03105444647371769, 0.01512948889285326, -0.010949382558465004, 0.00490538589656353, -0.015535022132098675, 0.029650678858160973, -0.04910065233707428, -0.02958828955888748, -0.021805180236697197, 0.007420468609780073, -0.0301497969776392, -0.004804002586752176, -0.00254042842425406, 0.014139053411781788, 0.02871483378112316, 0.02032342739403248, 0.018623309209942818, 0.02536139078438282, 0.026718365028500557, -0.05480930209159851, -0.01224396750330925, 0.023193350061774254, 0.04192584007978439, 0.006780974566936493, 0.02047940157353878, 0.01951236091554165, 0.011939818039536476, 0.010309888981282711, 0.001553892157971859, 0.013663331978023052, 0.015932755544781685, -0.010676427744328976, 0.04738493636250496, 0.013312391005456448, 0.012220571748912334, 0.016049737110733986, 0.007050029933452606, 0.0018999596359208226, -0.01718834787607193, 0.01023970078676939, 0.011386110447347164, 0.02625044248998165, -0.02876162715256214, -0.020962920039892197, 0.013281195424497128, -0.038775164633989334, -0.029931431636214256, -0.04279929772019386, -0.023552091792225838, -0.020011479035019875, 0.0036419956013560295, -0.0015714392066001892, 0.0162213072180748, -0.026811949908733368, -0.009927752427756786, 0.0003782372223213315, 0.0027217483147978783, -0.016751619055867195, -0.004772807937115431, 0.022335493937134743, -0.010091525502502918, -0.048726312816143036, -0.003948094788938761, 0.02277222089469433, 0.0015616908203810453, 0.03177192807197571, -0.01962154358625412, -0.022444674745202065, -0.007412669714540243, 0.005845129955559969, 0.008157446049153805, -0.018155386671423912, 0.007985875010490417, -0.023255739361047745, -0.0012487677158787847, -0.007350279949605465, -0.01548822969198227, -0.021555623039603233, 0.008352413773536682, -0.0016289546620100737, -0.008079458959400654, -0.0024507432244718075, -0.03200588747859001, -0.032349031418561935, -0.004776707384735346, 0.0029089171439409256, -0.005657961126416922, -0.005462993402034044, -0.03344085067510605, -0.012579312548041344, 0.013140819035470486, 0.03662272170186043, -0.016938788816332817, -0.010754414834082127, -0.00030463695293292403, -0.01395968347787857, -0.04507651925086975, -0.014918924309313297, -0.020713362842798233, -0.04969335347414017, -0.027623014524579048, 0.015768982470035553, -0.0026379122864454985, 0.009311654604971409, 0.029931431636214256, 0.0032696074340492487, 0.011191142722964287, -0.02704591117799282, -0.0022304297890514135, -0.005178340710699558, 0.012844468466937542, 0.005817834287881851, 0.008290024474263191, -0.03287934139370918, 0.0018824125872924924, -0.0009728885488584638, 0.015230871737003326, -0.015035904943943024, -0.020838141441345215, 0.046979401260614395, -0.009108887985348701, 0.0022401781752705574, -0.024815481156110764, -0.038120072335004807, 0.008999706245958805, -0.04501412808895111, -0.017827840521931648, 0.008313420228660107, 0.008703355677425861, 0.030602121725678444, -0.02132166177034378, 0.01712595671415329, -0.006882357876747847, 0.029650678858160973, 0.008523985743522644, 0.0009436433902010322, 0.000492780702188611, -0.003259859047830105, -0.005353811662644148, 0.014739553444087505, 0.02699911966919899, -0.02696792408823967, 0.025127429515123367, -3.0631243134848773e-05, -0.021524427458643913, 0.013335786759853363, 0.037932902574539185, -0.01346056628972292, 0.01436521578580141, 0.0017225390765815973, 0.032286640256643295, 0.010208506137132645, 0.0023591085337102413, -0.03189670667052269, -0.014458800666034222, -0.0016484514344483614, -0.04002295807003975, 0.033128902316093445, -0.052001770585775375, -0.016580048948526382, -0.022569453343749046, 0.023255739361047745, 0.004039729479700327, 0.04074043780565262, 0.005907519720494747, 0.006281857378780842, -0.006106386426836252, -0.03824485093355179, 0.01796821691095829, -0.03128840774297714, 0.019356386736035347, 0.029681874439120293, -0.01647086627781391, 0.0423937626183033, 0.019995881244540215, -0.0006107361405156553, 0.021742790937423706, -0.03107004426419735, -0.0014681062893941998, -0.03177192807197571, -0.005392804741859436, 0.04648028686642647, -0.04105238616466522, -0.010302090086042881, -0.006827767007052898, -0.01066862978041172, 0.017375515773892403, -0.01707916520535946, -0.00452714879065752, -0.021805180236697197, 0.01867010071873665, -0.021820778027176857, 0.011588877066969872, 0.017437905073165894, 0.009709388948976994, -0.03114802949130535, 0.012750883586704731, 0.013811507262289524, 0.01629929430782795, 0.007124117575585842, 0.006231165956705809, 0.01717275008559227, 0.001027479418553412, -0.007673926185816526, -0.023255739361047745, -0.011456298641860485, 0.04435903951525688, 0.015152884647250175, 0.0010664729634299874, -0.01303943619132042, -0.003521115519106388, -0.00032023436506278813, 0.0033534434624016285, 0.0093740439042449, 0.03528134524822235, -0.00034899209276773036, 0.018248971551656723, 0.047884054481983185, 0.013398176059126854, 0.012711890041828156, -0.015706593170762062, 0.006515818648040295, -0.017032373696565628, 0.03440788760781288, -0.012072396464645863, 0.018295763060450554, 0.003981239162385464, -0.009116686880588531, -0.010458064265549183, -0.012633902952075005, 0.02458151988685131, 0.008913920260965824, 0.013912891037762165, -0.012758682481944561, -0.014029871672391891, 0.005084756296128035, -0.012587110511958599, -0.014068865217268467, 0.010481460019946098, -0.025486169382929802, -0.044577401131391525, -0.02462831325829029, 0.024331960827112198, -0.0025248308666050434, -0.0033963362220674753, -0.0138505008071661, -0.019418777897953987, -0.0187480878084898, 0.0037609257269650698, 0.02777898870408535, 0.003232563380151987, -0.015238670632243156, 0.003222815226763487, 0.001453483710065484, 0.019995881244540215, 0.016891997307538986, -0.029260743409395218, 0.010949382558465004, -0.006480724550783634, 0.0044998531229794025, 0.023146558552980423, 0.006586006842553616, -0.004020232707262039, 0.009654797613620758, 0.037964098155498505, 0.014396410435438156, -0.0016387030482292175, 0.0376521497964859, 0.006242863833904266, 0.045419663190841675, -0.014981313608586788, -0.006348146591335535, -0.010629636235535145, 0.023364922031760216, 0.004203502554446459, -0.002782188355922699, -0.0034372794907540083, -0.01882607489824295, 0.010840200819075108, -0.016002943739295006, 0.008017069660127163, -0.03662272170186043, -0.0277010016143322, -0.03684108704328537, 0.015753384679555893, 0.01343716960400343, -0.0008052163757383823, -0.0026925031561404467, 0.037309009581804276, -0.01798381470143795, -0.009615804068744183, 0.03827604651451111, 0.004113817121833563, -0.00596601003780961, 0.003423631889745593, 0.010419070720672607, 0.009319453500211239, -0.008235433138906956, 0.009553414769470692, 0.009662596508860588, -0.02037021890282631, -0.030602121725678444, -0.036497943103313446, -0.0034957698080688715, -0.011588877066969872, 0.015254268422722816, 0.03131960332393646, -0.0072332993149757385, -0.01625250279903412, 0.014232638292014599, -0.03846321627497673, -0.013546351343393326, 0.018186582252383232, -0.008422601968050003, -0.008227634243667126, 0.04966215789318085, 0.017593879252672195, -0.004952177871018648, 0.023942027240991592, 0.014451001770794392, 0.02529900148510933, -0.006274058483541012, 0.03680989146232605, -0.015956152230501175, -0.03574926778674126, -0.016174515709280968, 0.0038018689956516027, 0.007432166486978531, -0.011323720216751099, -0.010504856705665588, 0.010083726607263088, 0.016548853367567062, 0.007946881465613842, -0.023536494001746178, 0.006028399337083101, -0.002226530574262142, -0.029884640127420425, 0.0034275311045348644, 0.02288140170276165, 0.026562390848994255, -0.0038798560854047537, -0.003782372223213315, -0.050223663449287415, 0.05477811023592949, -0.009225868619978428, 0.002160241361707449, -0.017671866342425346, 0.03125721216201782, -0.006913552526384592, 0.007736315950751305, 0.01477074809372425, 0.04021012783050537, -0.019871102645993233, 0.057710420340299606, 0.017578283324837685, -0.006613302510231733, 0.008734550327062607, 0.050379637628793716, 0.02687433920800686, -0.03097645938396454, 0.030820485204458237, -0.014903326518833637, 0.006718584802001715, 0.006683490704745054, -0.024253973737359047, 0.011214538477361202, 0.009569011628627777, -0.023099767044186592, 0.043859921395778656, 0.029900237917900085, 0.00896851159632206, 0.049381405115127563, 0.0022031343542039394, -0.003836963092908263, 0.014911125414073467, -0.024971455335617065, 0.012602708302438259, 0.023349324241280556, -0.02208593487739563, -0.023973220959305763, -0.0034723735880106688, -0.010465863160789013, -0.007751913275569677, 0.012789877131581306, -0.04747851938009262, 0.00982636958360672, -0.011518687941133976, 0.01971512846648693, -0.002836779225617647, 0.002324014203622937, 0.01563640497624874, -0.01099617499858141, 0.012992643751204014, -0.02788817137479782, 0.015246469527482986, 0.0022772219963371754, -0.01720394380390644, 0.013678929768502712, -0.009771778248250484, -0.015012508258223534, 0.015948353335261345, 0.028808418661355972, -0.012431137263774872, 0.041239555925130844, 0.04326722025871277, -0.018202178180217743, -0.00266715744510293, -0.011019570752978325, -0.018638907000422478, -0.003776523284614086, -0.0005220258608460426, 0.011269129812717438, -0.008765744976699352, -0.026375222951173782, 0.019325193017721176, -0.018638907000422478, -0.0007930308929644525, -0.016127724200487137, 0.012524721212685108, -0.01185403298586607, 0.008422601968050003, 0.006909653078764677, 0.00896851159632206, -0.000676050316542387, 0.001068422687239945, -0.011214538477361202, 0.021430842578411102, 0.012485727667808533, -0.00718650734052062, 0.0037999192718416452, 0.016767216846346855, 0.0011834535980597138, -0.0014515341026708484, -0.015238670632243156, 0.02213272638618946, -0.006079091224819422, 0.030914070084691048, -0.02051059529185295, -0.0024175988510251045, -0.021680401638150215, -0.00226357439532876, -0.012774280272424221, -0.049506183713674545, -0.012711890041828156, -0.0015958101721480489, -0.006905753631144762, -0.01387389749288559, 0.012025604024529457, -0.007849397137761116, 0.026468807831406593, 0.03849441185593605, -0.001453483710065484, -0.02539258636534214, 0.00552928214892745, -0.005790539085865021, -0.013811507262289524, 0.02852766588330269, 0.009670395404100418, 0.0020237641874700785, -0.011019570752978325, 0.014404209330677986, 0.028356093913316727, 0.0004498878261074424, -0.011448499746620655, -0.029791055247187614, 0.0028757727704942226, -0.006905753631144762, -0.004846895579248667, 0.011042967438697815, 0.019060036167502403, 0.0012526670470833778, -0.001925305463373661, 0.019340790808200836, 0.00570475310087204, 0.0004030955897178501, -0.028824016451835632, -0.012025604024529457, -0.014451001770794392, -0.006480724550783634, -0.03184991329908371, -0.025985287502408028, 0.009943349286913872, 0.01717275008559227, -0.009685992263257504, 0.007506254129111767, -0.016969984397292137, -0.029291938990354538, -0.005685256328433752, -0.016782814636826515, -0.011152149178087711, 0.0028816217090934515, -0.0027236980386078358, 0.01792142540216446, 0.01954355649650097, -0.029947029426693916, -0.03684108704328537, 0.017703061923384666, 0.005244629457592964, -0.008726751431822777, -0.02040141448378563, -0.02456592209637165, -0.010138317011296749, -0.027233080938458443, -0.013398176059126854, 0.0063013541512191296, 0.03615479916334152, -0.03294173255562782, 0.0301497969776392, -0.004936580546200275, -0.00944423209875822, -0.007096822373569012, -0.00022933068976271898, 0.006433932110667229, -0.030524134635925293, -0.004846895579248667, 0.0641365572810173, -0.011557681486010551, 0.027373457327485085, 0.009982342831790447, -0.004772807937115431, -0.030804887413978577, 0.0018073500832542777, 0.01962154358625412, 0.02113449200987816, -0.028356093913316727, 0.005891921930015087, -0.0156520027667284, -0.008219835348427296, 0.007408770266920328, 0.003846711479127407, 0.047041792422533035, -0.009717186912894249, 0.00903090089559555, 0.01393628679215908, -0.022397883236408234, 0.03272336721420288, -0.01793702319264412, -0.015870366245508194, 0.03618599474430084, -0.060174811631441116, -0.02604767680168152, -0.030648913234472275, 0.005381106864660978, 0.02957269176840782, -0.021009713411331177, 0.00028660244424827397, -0.011643467471003532, 0.007903988473117352, 0.051845796406269073, 0.004191804211586714, 0.02710830047726631, -0.0007457512547262013, 0.037309009581804276, 0.01477074809372425, -0.0031019351445138454, 0.028792820870876312, 0.007876692339777946, -0.00570475310087204, 0.009303855709731579, 0.01954355649650097, -0.007705121301114559, 0.014918924309313297, -0.009608005173504353, -0.005552678368985653, 0.00592311704531312, -0.015355651266872883, 0.007900089025497437, -0.014942320063710213, 0.004671424627304077, 0.005127648822963238, -0.012984844855964184, 0.004765009041875601, -0.0327545627951622, 0.0009017253178171813, -0.02774779498577118, -0.015683196485042572, -0.0002549201890360564, -0.004733814392238855, -0.02136845327913761, -0.024269571527838707, -0.006281857378780842, 0.02862124890089035, -0.018420543521642685, 0.008048264309763908, 0.004269791301339865, 0.006683490704745054, -0.001641627517528832, -0.024238377809524536, 0.02139964886009693, -0.00854738149791956, 0.02859005518257618, -0.016080930829048157, 0.015402443706989288, -0.023146558552980423, -0.023349324241280556, -0.0025326297618448734, -0.034782227128744125, -0.03353443369269371, -0.020167453214526176, 0.017625074833631516, -0.02450353279709816, 0.01711036078631878, 0.01891965977847576, -0.005888022948056459, 0.02944791316986084, 0.02297498658299446, 0.011783843860030174, -0.008640965446829796, -0.0045739407651126385, 0.0013365031918510795, 0.01626810058951378, -0.021773986518383026, -0.023193350061774254, 0.014419807121157646, -0.006328649818897247, 0.008321219123899937, 0.007432166486978531, 0.0001740086154313758, -0.03783931955695152, -0.001782979117706418, 0.05259447172284126, 0.021929960697889328, -0.009350648149847984, -0.029993822798132896, -0.004355577286332846, -0.024300767108798027, 0.005065259523689747, 0.017047971487045288, 0.012977045960724354, -0.004043628927320242, 0.020713362842798233, -0.017703061923384666, 0.002791936742141843, 0.007974176667630672, -0.008672161027789116, -0.02871483378112316, -0.03456386178731918, 0.006110285874456167, -0.06575868278741837, -0.008227634243667126, -0.012540319003164768, -0.0063715423457324505, -0.0011161897564306855, -0.007436065934598446, 0.03353443369269371, -0.00039651544648222625, -0.02536139078438282, -0.008640965446829796, -0.00675757834687829, -0.005533181596547365, 0.0009631401626393199, 0.012306357733905315, -0.03322248533368111, 0.020136257633566856, 0.012891260907053947, -0.02219511568546295, 0.013062831945717335, 0.017047971487045288, 0.00427369074895978, -0.015090495347976685, 0.01803060807287693, -0.019949089735746384, 0.008399206213653088, 0.04648028686642647, -0.013983079232275486, 0.011877428740262985, -0.01633048988878727, -0.02606327459216118, -0.011315922252833843, 0.005856827832758427, -0.024753091856837273, -0.0037843219470232725, 0.021758388727903366, 0.0019798963330686092, 0.02136845327913761, -0.001141535583883524, 0.03908711299300194, 0.011526486836373806, 0.008890524506568909, -0.002076405333355069, 0.007287890650331974, 0.00041820559999905527, 0.010543850250542164, -0.023364922031760216, -0.0004937555640935898, -0.017578283324837685, -0.004924882669001818, 0.025673339143395424, 0.0006224341923370957, 0.00406312569975853, -0.02453472837805748, -0.026827547699213028, -0.004757210612297058, 0.011300324462354183, 0.01261050719767809, -0.02122807689011097, -0.018982049077749252, -0.017687464132905006, 0.03030576929450035, 0.030056212097406387, 0.001316031557507813, 0.028012949973344803, -0.01711036078631878, 0.008383608423173428, 0.007915685884654522, 0.020292231813073158, 0.022647440433502197, -0.00672248424962163, 0.006153178866952658, 0.0066717928275465965, 0.005595571361482143, 0.030664511024951935, 0.019465569406747818, -0.007829900830984116, 0.029791055247187614, 0.012657299637794495, 0.012165980413556099, -0.01266509760171175, -0.010754414834082127, -0.0002312803699169308, 0.02035462111234665, -0.01065303198993206, -0.004679223522543907, -0.005997204687446356, 0.02375485748052597, -0.023411713540554047, 0.009124485775828362, -0.015807976946234703, 0.04807122051715851, 0.025626547634601593, 0.03372160345315933, 0.006866760551929474, 0.0002963508013635874, 0.05880223959684372, 0.0016426023794338107, 0.02545497566461563, 0.00472211604937911, -0.004878090228885412, 0.0001768112852005288, -0.024940261617302895, 0.01108196098357439, -0.015878165140748024, -0.027217483147978783, 0.01514508668333292, -0.006141480524092913, 0.0030609918758273125, -0.02125927247107029, -0.008867128752171993, -0.009296056814491749, -0.018514126539230347, -0.015199677087366581, -0.024066805839538574, -0.028153328225016594, 0.0033631918486207724, 0.0009192724246531725, -0.01141730509698391, -0.03325368091464043, 0.03699706122279167, -0.0028640746604651213, 0.012524721212685108, -0.0015460933791473508, -0.012657299637794495, -0.021477635949850082, -0.003589354222640395, 0.00306294159963727, 0.01963714137673378, -0.004749411717057228, 0.026375222951173782, -0.004382872488349676, -0.0007710970239713788, -0.019231608137488365, 0.0138505008071661, -0.003493820084258914, -0.00194382737390697, 0.03250500559806824, -0.005689155776053667, 0.0036965864710509777, -0.02122807689011097, 0.0025930695701390505, 0.001631879131309688, -0.0064612277783453465, 0.014996911399066448, 0.01472395658493042, -0.003911050967872143, 0.004039729479700327, -0.0329105369746685, 0.008087257854640484, -0.035499706864356995, 0.014232638292014599, -0.01100397389382124, -0.003836963092908263, -0.02704591117799282, -0.021087700501084328, -0.014895527623593807, -0.021040907129645348, 0.01395968347787857, 0.028153328225016594, -0.017016775906085968, -0.024285169318318367, 0.00675757834687829, 0.03943025693297386, -0.008438199758529663, 0.0013170064194127917, -0.003402185393497348, -0.038088876754045486, -0.018560919910669327, 0.0011064413702115417, -0.004168407991528511, -0.01023190189152956, -0.006683490704745054, 0.00854738149791956, 0.000632670009508729, 0.01623690500855446, 0.004807902034372091, 0.008321219123899937, -0.0024643910583108664, 0.010107122361660004, -0.0069486466236412525, -0.00431658374145627, -0.005455194506794214, -0.00035825304803438485, -0.0036653915885835886, -0.004102119244635105, 0.004191804211586714, 0.00266715744510293, 0.031553562730550766, -0.017609477043151855, 0.020947324112057686, 0.01793702319264412, 0.030492939054965973, -0.021571218967437744, 0.015862567350268364, 0.020167453214526176, -0.009841966442763805, 0.04554444178938866, 0.0050730579532682896, -0.04152030870318413, -0.0212748683989048, -0.0142716309055686, -0.011097557842731476, 0.00532651599496603, 0.02455032616853714, -0.005026265978813171, 0.004979473538696766, -0.027279872447252274, 0.020838141441345215, 0.0286992359906435, -0.008516186848282814, -0.0017498346278443933, -0.0010440517216920853, -0.0027119999285787344, 0.005030164960771799, 0.0044764569029212, 0.006051795557141304, 0.012407740578055382, -0.016595644876360893, -0.0027665907982736826, 0.008321219123899937, 0.028995588421821594, 0.0055175842717289925, -0.0028991687577217817, -0.02958828955888748, 0.005088655278086662, 0.020666569471359253, 0.011097557842731476, -0.03774573653936386, 0.0024819381069391966, -0.018170984461903572, -0.017391113564372063, 0.018248971551656723, 0.004230797756463289, -0.001494426978752017, 0.0058022369630634785, -0.011128753423690796, -0.0024741394445300102, -0.025486169382929802, 0.019169218838214874, -0.020105063915252686, -0.015971750020980835, -0.02958828955888748, -0.008851530961692333, 0.012797676026821136, 0.031522367149591446, -0.010083726607263088, -0.01059064269065857, -0.017609477043151855, 0.011760448105633259, 0.019387582316994667, -0.015410242602229118, -0.01629929430782795, 0.012220571748912334, 0.006040097679942846, -0.004804002586752176, 0.03125721216201782, -0.004644129425287247, -0.019403180107474327, 0.011464097537100315, -0.006465126760303974, -0.009155680425465107, 0.007120218127965927, 0.007510153576731682, -0.04077163338661194, 0.02620365098118782, 0.01141730509698391, -0.0034275311045348644, 0.015012508258223534, -0.014755151234567165, -0.043891116976737976, -0.0004006584931630641, -0.00821203738451004, -0.02706150896847248, 0.0221171285957098, -0.00905429758131504, 0.004917083773761988, 0.013405974954366684, -0.021711597219109535, 0.015706593170762062, 0.0038389128167182207, 0.01098837610334158, 0.009693791158497334, -0.028153328225016594, 0.004850795026868582, 0.012977045960724354, 0.006656195502728224, 0.013702325522899628, 0.015386845916509628, 0.02383284457027912, -0.012282961048185825, 0.010762213729321957, 0.019153621047735214, 0.0373402014374733, -0.0011698058806359768, -0.0001428137911716476, -0.015324456617236137, 0.015371249057352543, -0.01804620400071144, 0.016814010217785835, 0.007892290130257607, 0.0036244485527276993, 0.008703355677425861, -0.040584463626146317, -0.014334021136164665, -0.005470791831612587, -0.00035167287569493055, -0.002906967420130968, 0.007681725081056356, -0.01022410299628973, -0.0019837957806885242, 0.017609477043151855, 0.01626810058951378, 0.005552678368985653, -0.0038798560854047537, -0.01711036078631878, 0.02129046618938446, -0.008640965446829796, -0.02116568759083748, -0.009600206278264523, -0.008438199758529663, 0.011869629845023155, 0.0007262544822879136, 0.026468807831406593, 0.014248235151171684, -0.017625074833631516, -0.004390671383589506, 0.013803709298372269, -0.008445998653769493, 0.023162156343460083, -0.001843419042415917, -0.014567982405424118, 0.033160097897052765, 0.004406268708407879, 0.03677869588136673, -0.0026145160663872957, 0.015589612536132336, -0.006469026207923889, -0.00035995899816043675, 0.015441437251865864, 0.004024132154881954, 0.010894792154431343, -0.0006472925888374448, 0.018326958641409874, -0.002731496701017022, -0.005829532630741596, 0.009623602963984013, 0.020650971680879593, 0.011534285731613636, 0.02456592209637165, -0.009748382493853569, -0.005385006312280893, 0.017016775906085968, -0.004410168156027794, 0.0018443939043208957, 0.0001819291792344302, 0.02453472837805748, -0.0008832034072838724, 0.01793702319264412, -0.01555061899125576, 0.004453061148524284, 0.0026886037085205317, 0.008407005108892918, 0.013499559834599495, 0.017593879252672195, -0.007939082570374012, 0.025486169382929802, 0.0212748683989048, -0.03281695395708084, 0.006800471339374781, -0.02712389826774597, -0.01891965977847576, 0.00810285471379757, -0.00029708194779232144, -0.015098294243216515, 0.0024604916106909513, 0.005022366531193256, 0.0004089446156285703, 0.0014252134133130312, 0.005677457898855209, -0.0146927610039711, -0.0027763391844928265, 0.0008719927864149213, -0.029681874439120293, -0.02944791316986084, -0.029900237917900085, 0.012181578204035759, -0.002984954509884119, -0.004761109594255686, -0.016814010217785835, -0.027654210105538368, -0.0014427605783566833, -0.001283861929550767, 0.025798117741942406, -0.001402792171575129, 0.006566510070115328, 0.006527516525238752, -0.022397883236408234, 0.022475870326161385, -0.03113243356347084, 0.01804620400071144, -0.021618012338876724, 0.011393909342586994, -0.0057281493209302425, 0.021695999428629875, -0.014497794210910797, 0.02356768772006035, -0.013842702843248844, 0.006121983751654625, -3.64955049008131e-05, -0.029713068157434464, -0.027467042207717896, -0.0119008244946599, 0.021805180236697197, -0.005213434807956219, 0.003772623836994171, 0.0009192724246531725, -0.0009412062936462462, -0.010504856705665588, -0.0025345792528241873, -0.016814010217785835, -0.002039361512288451, -0.019293997436761856, 0.011019570752978325, -0.013546351343393326, -0.022382285445928574, 0.028434081003069878, -0.020916128531098366, 0.010816805064678192, -0.006402737461030483, -0.0017410609871149063, -0.008999706245958805, 0.004195703659206629, -0.009701590053737164, 0.018592113628983498, 0.06232725456357002, -0.012953650206327438, 0.03609240800142288, -0.014552384614944458, 0.00612588319927454, -0.004199603106826544, -0.017640672624111176, -0.006488522980362177, 0.00451934989541769, -0.024394351989030838, -0.01793702319264412, -0.02603207901120186, 0.021898765116930008, -0.02221071347594261, 0.04036610201001167, 0.011885227635502815, 0.009834167547523975, -0.024160390719771385, 0.03684108704328537, -0.010294291190803051, -0.003345644799992442, -0.003135079750791192, -0.010902590118348598, 0.0052251326851546764, -0.027404651045799255, 0.04008534550666809, 0.006625000387430191, -0.013172013685107231, -0.011019570752978325, 0.01394408568739891, -0.012438935227692127, 0.020682167261838913, 0.039648618549108505, -0.014185845851898193, -0.036373164504766464, -0.028246911242604256, 0.0172195415943861, -0.014599177055060863, -0.015402443706989288, -0.0063754417933523655, 0.01795262098312378, -0.025626547634601593, -4.7919391363393515e-05, -0.003215016331523657, -0.0013491760473698378, -0.007919585332274437, 0.010925986804068089, -0.01350735779851675, -0.01151088997721672, 0.012594909407198429, 0.021758388727903366, 0.018280165269970894, 0.026000885292887688, -0.0004464758967515081, -0.010356681421399117, -0.0024916864931583405, -0.020058270543813705, 0.018155386671423912, -0.03615479916334152, 0.03440788760781288, -0.006121983751654625, -0.039555035531520844, -0.0010245549492537975, 0.021009713411331177, 0.02849647030234337, 0.004601236432790756, 0.006262360606342554, -0.009342849254608154, -0.036310773342847824, -0.009685992263257504, -0.01261830609291792, 0.001192227122373879, -0.007790906820446253, 0.0016055585583671927, 0.0026145160663872957, -0.005595571361482143, 0.0008958763210102916, 0.01055944710969925, -0.0085317837074399, 0.015457035042345524, -0.00571255199611187, -0.003053193213418126, -0.01192422118037939, -0.0008661437314003706, -0.021805180236697197, -0.009740583598613739, -0.008438199758529663, -0.022569453343749046, 0.0073151858523488045, -0.014217040501534939, 0.017796646803617477, 0.0019370035734027624, -0.008851530961692333, 0.014856534078717232, -0.0130082406103611, -0.0017264384077861905, 0.000990435597486794, 0.004920983221381903, -0.005576074589043856, 0.008391407318413258, 0.019044438377022743, -0.000754037348087877, -0.0015412191860377789, -0.014443202875554562, -0.01267289649695158, -0.021056504920125008, 0.005786639638245106, 0.008679958991706371, -0.006890156306326389, -0.0179058276116848, 0.005646262783557177, 0.0780494436621666, -0.00022604060359299183, 0.012930253520607948, 0.0032540098764002323, 0.008578576147556305, -0.025065040215849876, 0.008718952536582947, -0.01225176639854908, 0.020027076825499535, -0.00676537724211812, -0.0063871401362121105, -0.0005990380886942148, 0.022319896146655083, -0.0005995255196467042, -0.013203208334743977, 0.014084462076425552, 0.03169393911957741, 0.016533255577087402, 0.015223073773086071, 0.017032373696565628, -0.004589538089931011, -0.004710418172180653, 0.0017732307314872742, 0.00672248424962163, 0.0050691585056483746, 0.015527223236858845, 0.005451295059174299, 0.016767216846346855, 0.0005727174575440586, 0.031584758311510086, -0.012103591114282608, -0.02217951975762844, 0.009919953532516956, -0.025033844634890556, 0.0001300190488109365, 0.009553414769470692, -0.005034064408391714, 0.006188272964209318, -0.014911125414073467, 0.009140082634985447, -0.016065333038568497, 0.01648646406829357, 0.0236456748098135, 0.03284814953804016, -0.0008310495759360492, 0.011378311552107334, 0.010021336376667023, 0.0029128165915608406, -0.002218731679022312, -0.015090495347976685, -0.0221171285957098, -0.014747352339327335, 0.0030083507299423218, 0.01310962438583374, 0.013476163148880005, -0.019075633957982063, 0.0016796462005004287, 0.006983740720897913, -0.007092922925949097, -0.00011228917719563469, -0.024331960827112198, -0.0018590164836496115, -0.010964980348944664, -0.03344085067510605, -0.01888846419751644, -0.02957269176840782, -0.010629636235535145, -0.009225868619978428, -0.004768908489495516, -0.010122720152139664, -0.02381724677979946, 0.00810285471379757, 0.001283861929550767, -0.03824485093355179, -0.020650971680879593, 0.013172013685107231, -0.0009650898282416165, 0.02690553478896618, 0.026390820741653442, -0.005201736465096474, 0.004612934309989214, 0.001045026583597064, -0.01565980166196823, -0.019325193017721176, 0.019418777897953987, -0.0007788957445882261, 0.012087993323802948, -0.01645526848733425, 0.021555623039603233, -0.02283461019396782, -0.024316364899277687, -0.013561949133872986, 0.003203318454325199, 0.010122720152139664, 0.0197463221848011, 0.003021998330950737, -0.009623602963984013, -0.023520896211266518, 0.03372160345315933, -0.007849397137761116, -0.02210153266787529, 0.020011479035019875, -0.012399941682815552, 0.006063493434339762, 0.0032208655029535294, -0.004616833757609129, 0.020073868334293365, 0.0010352781973779202, 0.009693791158497334, 0.02032342739403248, 0.00813405029475689, 0.0009933601832017303, -0.0010294291423633695, 0.004433564376085997, -0.010473662056028843, 0.002333762589842081, 0.02628163807094097, 0.009420836344361305, -0.0006087864749133587, -0.02030782960355282, -0.009740583598613739, 0.014068865217268467, -0.03334726393222809, -0.014731754548847675, -0.0013901193160563707, 0.009919953532516956, 0.001082070404663682, -0.007576442323625088, -0.008368011564016342, -0.019091231748461723, 0.0020471601746976376, 0.020900530740618706, -0.010785609483718872, -0.005583873484283686, 0.019465569406747818, 0.0007067577098496258, 0.0037102343048900366, -0.026655975729227066, 0.019777517765760422, -0.028808418661355972, 0.02035462111234665, 0.008017069660127163, 0.009662596508860588, 0.006445630453526974, -0.0022674736101180315, 0.0006102487095631659, -0.018638907000422478, -0.024846676737070084, -0.011877428740262985, -0.004749411717057228, 0.019917894154787064, -0.015924956649541855, -0.01388169638812542, 0.009896557778120041, -0.011362713761627674, -0.019793115556240082, -0.004819599911570549, 0.018514126539230347, -0.01226736418902874, -0.001389144454151392, 0.013234403915703297, -0.003103884868323803, 0.018264569342136383, -0.008937316946685314, -0.01346056628972292, 0.00017132781795226038, -0.0032169660553336143, -0.00630915304645896, 0.012930253520607948, -0.012064597569406033, 0.00939744058996439, -0.0027548926882445812, -0.004125515464693308, -0.01427942980080843, -0.011869629845023155, 0.006426133681088686, -0.00039627173100598156, 0.010013538412749767, -0.019949089735746384, 0.020011479035019875, -0.008742349222302437, 0.010684226639568806, 0.013920689933001995, 0.022491466253995895, 0.012782078236341476, -0.007108520250767469, 0.011994409374892712, -0.01148749329149723, 0.0031799222342669964, 0.012509123422205448, -0.009608005173504353, 0.0004016333550680429, -0.004339979495853186, -0.01098837610334158, -0.014193644747138023, -0.013632137328386307, 0.01968393288552761, 0.00818084180355072, 0.01556621678173542, -0.013398176059126854, -0.007876692339777946, -0.012470130808651447, 0.02465950697660446, 0.004449161700904369, -0.01100397389382124, -0.018514126539230347, -0.011308123357594013, -0.013577546924352646, -0.02523661218583584, -0.01891965977847576, -0.019902296364307404, -0.03422072157263756, 0.010029135271906853, -0.00015402444114442915, -0.02386404015123844, -0.004074823576956987, 0.022585051134228706, 0.010036934167146683, 0.0012370697222650051, 0.0313040055334568, 0.015589612536132336, 0.0073229847475886345, -0.004070924129337072, -0.04267451912164688, -0.010114921256899834, -0.007116319146007299, 0.020245440304279327, 0.009428635239601135, -0.00011381236254237592, 0.007962478324770927, 0.01016171369701624, 0.01261050719767809, -0.0130082406103611, 0.00810285471379757, -0.002283071167767048, 0.052812833338975906, 0.0035640085116028786, 0.0075296503491699696, 0.01633048988878727, -0.028933197259902954, -0.014638170599937439, -0.012407740578055382, -0.007447763811796904, -0.009264862164855003, 0.0016104327514767647, -0.019044438377022743, -0.005197837483137846, 0.02051059529185295, 0.004328281618654728, -2.5635197744122706e-05, -0.007787007372826338, -0.020619777962565422, -0.008937316946685314, 0.0042152004316449165, 0.034813422709703445, 0.0009772753110155463, 0.019044438377022743, 0.016907593235373497, 0.002690553432330489, -0.025969689711928368, 0.008227634243667126, 0.00512374984100461, -0.011128753423690796, -0.014061066322028637, -0.00286992359906435, 0.026687171310186386, -0.04470217972993851, 0.008687757886946201, 0.0009002630831673741, 0.0063013541512191296, -0.0033300472423434258, -0.0022460271138697863, 0.009140082634985447, 0.021540025249123573, -6.94572227075696e-05, -0.009576810523867607, -0.0037648251745849848, -0.01623690500855446, -0.004328281618654728, 0.006196071859449148, -0.00812625139951706, 0.02033902518451214, 0.009553414769470692, -0.042892880737781525, -0.0060128020122647285, -0.016751619055867195, 0.016564451158046722, 0.020650971680879593, -0.018529724329710007, -0.013710124418139458, 0.01182283740490675, -0.01711036078631878, -0.0021563421469181776, -0.014544585719704628, -0.022694233804941177, -0.013491760939359665, 0.020167453214526176, -0.014521189965307713, 0.011526486836373806, 0.0001854629663284868, -0.005252428352832794, 0.015683196485042572, 0.0007930308929644525, -0.01882607489824295, 0.030726900324225426, 0.020151855424046516, 0.027186287567019463, -0.0036185993812978268, -0.012836669571697712, -0.0031916203442960978, 0.0039227488450706005, -0.008999706245958805, -0.020619777962565422, -0.0038389128167182207, -0.02136845327913761, -0.005833431612700224, 0.019808711484074593, 0.022460272535681725, -0.030508536845445633, 0.00367708969861269, 0.03546851500868797, 0.004382872488349676, 0.00696814339607954, 0.010629636235535145, 0.010629636235535145, -0.012204973958432674, -0.0032286641653627157, 0.00596601003780961, 0.0110585642978549, -0.01807739958167076, 0.016969984397292137, 0.0027490437496453524, -0.008937316946685314, 0.005985506810247898, -0.0018551171524450183, 0.004460859578102827, -0.010738817974925041, -0.01141730509698391, -0.00215439242310822, 0.0021017512772232294, -0.004113817121833563, -0.005888022948056459, -0.005451295059174299, -0.010528252460062504, 0.010606239549815655, 0.007463361136615276, 0.006316951476037502, 0.0005810035509057343, 0.026515599340200424, 0.020728958770632744, 0.009436434134840965, -0.0039227488450706005, 0.0114796943962574, 0.016876399517059326, -0.00946762878447771, -0.006574308965355158, 0.013990878127515316, 0.006157078314572573, -0.017344322055578232, 0.0019184815464541316, -0.007615435868501663, 0.019153621047735214, -0.01887286826968193, -0.011315922252833843, 0.024940261617302895, 0.00356790772639215, -0.0057320487685501575, 0.008219835348427296, -0.043828725814819336, -0.0004913184675388038, -0.023068571463227272, -0.011791642755270004, -0.004468658473342657, -0.006632799282670021, -0.00255797547288239, 0.003942245617508888, -0.005767142865806818, -0.00107719621155411, -0.018202178180217743, -0.010598440654575825, 0.008227634243667126, 0.010871395468711853, -0.01709476299583912, -0.003612750442698598, -0.00818864069879055, 0.005599470809102058, 0.025844911113381386, 0.02774779498577118, 0.014224839396774769, -0.00988095998764038, -0.018139788880944252, -0.014240436255931854, -0.0045739407651126385, 0.016704827547073364, 0.016782814636826515, 0.02219511568546295, -0.011549883522093296, 0.019060036167502403, 0.012064597569406033, 0.0042814891785383224, 0.004410168156027794, 0.009062095545232296, 0.03016539290547371, 0.007677825633436441, 0.012446734122931957, -0.021695999428629875, 0.015776781365275383, 0.004757210612297058, 0.01267289649695158, -0.007252796087414026, 0.029073575511574745, -0.0023961523547768593, -0.03253620117902756, 0.01140170730650425, 0.022444674745202065, 0.02052619308233261, -0.0026652077212929726, -0.00348407169803977, 0.0017352120485156775, -0.015191878192126751, 0.009179076179862022, -0.017001178115606308, 0.024347558617591858, 0.0005117900436744094, 0.013749117963016033, -0.011315922252833843, 0.020619777962565422, 0.0035191660281270742, -0.01191642228513956, -0.005700853653252125, -0.006223367061465979, -0.004757210612297058, -0.00676537724211812, 0.007436065934598446, -0.023146558552980423, -0.021711597219109535, 0.020713362842798233, -0.019293997436761856, -0.00030463695293292403, 0.023271337151527405, -0.009600206278264523, -0.00028319048578850925, -0.00019448022067081183, 0.005759343970566988, 0.019371984526515007, 0.021649206057190895, 0.004094320349395275, 0.04311124607920647, -0.021758388727903366, -0.006137581542134285, -0.0032618085388094187, 0.03347204625606537, -0.004597336985170841, -0.005209535360336304, -0.0033768394496291876, -0.0033358964137732983, -0.0008412853931076825, -0.0058022369630634785, 0.029791055247187614, -0.034813422709703445, -0.012298558838665485, -0.009740583598613739, -0.005385006312280893, 0.0045817396603524685, -0.010473662056028843, -0.008695556782186031, -0.007545247673988342, -0.01506709959357977, -0.008368011564016342, 0.0038837555330246687, -0.019262803718447685, 0.00037677495856769383, -0.0022616246715188026, 0.00470261974260211, 0.012563714757561684, 0.005014567635953426, -0.017453502863645554, 0.018170984461903572, 0.007385374046862125, -0.011128753423690796, -0.03164714574813843, -0.002975206123664975, 0.00023396116739604622, 0.0073229847475886345, 0.029635081067681313, -0.011807240545749664, 0.021805180236697197, 0.0005561452126130462, 0.0020978518296033144, 0.015386845916509628, 0.004375074058771133, 0.004991171415895224, -0.007131916470825672, -0.009225868619978428, 0.011300324462354183, 0.01098837610334158, -0.012984844855964184, 0.015246469527482986, -0.0014612824888899922, 0.004854694474488497, -0.015987345948815346, 0.006215568631887436, 0.0019399280427023768, 0.013281195424497128, 0.012306357733905315, 0.011939818039536476, 0.014341820031404495, 0.0022401781752705574, 0.0187480878084898, -0.010738817974925041, 0.008703355677425861, -0.01636168360710144, 0.007681725081056356, -0.0032540098764002323, 0.0027158991433680058, 0.022569453343749046, -0.007985875010490417, 0.008017069660127163, 0.02465950697660446, 0.018592113628983498, 0.00902310200035572, -0.012914656661450863, 0.013055033050477505, -0.0012321955291554332, 0.0013326038606464863, 0.018389347940683365, 0.0204326082020998, -0.0019701479468494654, -0.0005103278090246022, -0.019371984526515007, -0.003782372223213315, 0.003649794263765216, 0.0035874044988304377, -0.020105063915252686, -0.010933785699307919, -0.002384454244747758, 0.010138317011296749, 0.012602708302438259, 0.014123455621302128, -0.01343716960400343, -0.001654300489462912, 0.005962110590189695, -0.009709388948976994, 0.001274113543331623, -0.005657961126416922, -0.005104253068566322, 0.012376545928418636, 0.010029135271906853, -0.008687757886946201, -0.013218806125223637, -0.020744556561112404, 0.008313420228660107, 0.018233373761177063, -0.0010469761909916997, 0.027295470237731934, -0.02710830047726631, -0.007642731536179781, 0.02356768772006035, 0.01801501028239727, 0.0007901063654571772, 0.0036926870234310627, -0.01640847697854042, 0.010504856705665588, 0.006753678899258375, -0.023068571463227272, -0.0006770251202397048, 0.0195903480052948, -0.01022410299628973, 0.005006769206374884, 0.013546351343393326, -0.0031896706204861403, 0.0045817396603524685, -0.01868569850921631, 0.012119188904762268, -0.01546483300626278, 0.015082696452736855, -0.0031487273517996073, 0.007790906820446253, -0.008009270764887333, -0.007350279949605465, 0.00981077179312706, -0.030383756384253502, -0.01108975987881422, 0.0029030682053416967, 0.01438081357628107, 0.019481167197227478, 0.015308858826756477, -0.014996911399066448, 0.0042892880737781525, -0.011565480381250381, 0.015043702907860279, -0.02208593487739563, -0.010723220184445381, -0.006223367061465979, 0.005248528905212879, -0.004675324074923992, -0.004258093424141407, 0.003328097751364112, -0.03331607207655907, -0.01971512846648693, -0.0021114996634423733, 0.01393628679215908, 0.001027479418553412, -0.0057281493209302425, -0.0022401781752705574, -0.0006541164475493133, -0.011885227635502815, -0.0064612277783453465, -0.003758976235985756, -0.0022811214439570904, -0.0003087799996137619, 0.0012253716122359037, 0.04317363351583481, -0.01065303198993206, 0.010481460019946098, -0.016034139320254326, -0.00011874747724505141, -0.0038252652157098055, 0.007935183122754097, -0.017625074833631516, -0.018982049077749252, 0.002581371460109949, -0.006040097679942846, 0.024004416540265083, -0.026577988639473915, -0.004679223522543907, 0.006145379971712828, 0.009108887985348701, 0.03490700572729111, -0.009296056814491749, -0.00041991155012510717, -0.0012692393502220511, -0.012758682481944561, -0.011159948073327541, 0.01429502759128809, 0.008765744976699352, -0.020245440304279327, 0.01715715229511261, -0.0246439091861248, -0.023302532732486725, -0.0015753385378047824, -0.01548043079674244, 0.008305621333420277, -0.008516186848282814, 0.00820423848927021, -0.009350648149847984, 0.019153621047735214, -0.012407740578055382, -0.003345644799992442, 0.00338268862105906, -0.00470261974260211, 0.003682938637211919, -0.006640597712248564, 0.02124367468059063, -0.0054356977343559265, -0.015706593170762062, 0.0035542601253837347, -0.027560625225305557, 0.024784287437796593, -0.0032247647177428007, -0.006636698730289936, -0.018436139449477196, 0.010263096541166306, 0.014185845851898193, -0.0038350136019289494, -0.017313126474618912, -0.0014057166408747435, 0.0015295211924239993, 0.0019642990082502365, 0.0033592924010008574, 0.006562610622495413, 0.009420836344361305, -0.007167010568082333, 0.025486169382929802, -0.0005951386992819607, 0.020105063915252686, 0.002511183265596628, -0.006543113850057125, -0.013366981409490108, -0.029775457456707954, -0.00651191920042038, 0.00494047999382019, 0.01620570942759514, -0.013733521103858948, -1.2779519238392822e-05, 0.008906122297048569, 0.002591119846329093, -0.03024337999522686, -0.013187611475586891, -0.0020920028910040855, -0.023318130522966385, -0.01636168360710144, -0.040459685027599335, -0.037153035402297974, 0.003462625201791525, 0.0036692910362035036, -0.0028952695429325104, -0.011526486836373806, -0.007482857909053564, -0.0189040619879961, -0.015347852371633053, 0.0018892363877967, -0.0021797381341457367, 0.0010927936527878046, 0.011214538477361202, -0.0006560661131516099, 0.024144792929291725, 0.011705856770277023, 0.013897293247282505, 0.010372278280556202, 0.01308622770011425, 0.003772623836994171, -0.013351384550333023, 0.0003604464291129261, -0.016954386606812477, -0.014458800666034222, 0.009171278215944767, -0.008438199758529663, -0.007202104665338993, 0.010341083630919456, 0.01647086627781391, -0.009436434134840965, 0.0034080343320965767, 0.0017547088209539652, 0.0010421019978821278, -0.0003092674305662513, 0.00944423209875822, -0.003957842942327261, -0.0024741394445300102, 0.007814303040504456, 0.00945982988923788, -0.0004006584931630641, -0.03013419918715954, 0.016985580325126648, -0.004920983221381903, 0.009202472865581512, 0.028839614242315292, 0.012282961048185825, 0.015051501803100109, 0.01807739958167076, -0.03674750030040741, -0.0037472781259566545, -0.011744850315153599, 0.005607269238680601, -0.002801684895530343, -0.008173043839633465, 0.0019769719801843166, 0.005540980491787195, 0.0026476606726646423, 0.00714361434802413, -0.0009914104593917727, 0.016080930829048157, -0.00676537724211812, -0.0035874044988304377, 0.010208506137132645, 0.0019984182436019182, 0.03609240800142288, -0.01310962438583374, -0.004359476268291473, -0.0042931875213980675, 0.0016659984830766916, 0.02381724677979946, -0.012407740578055382, -0.0012029503704980016, 0.010770012624561787, 0.012719688937067986, 0.009966745972633362, 0.0060829902067780495, -0.00986536219716072, 0.02935432828962803, 0.02528340369462967, -0.008508387953042984, -0.0012877612607553601, -0.02611006610095501, -0.0026242644526064396, -0.02949470467865467, 0.006819968111813068, -0.020994115620851517, -0.0085317837074399, 0.025205416604876518, 0.005174441263079643, -0.006270159501582384, -0.0187480878084898, -0.007903988473117352, -0.0329105369746685, 0.020650971680879593, 0.03269217535853386, 0.006972042843699455, 0.00010235801164526492, 0.023427311331033707, 0.00025321420980617404, -0.015035904943943024, -0.008492790162563324, 0.0260164812207222, 0.030695704743266106, 0.014926722273230553, -0.01059064269065857, -0.01566760055720806, -0.01968393288552761, -0.01885727047920227, 0.0061726756393909454, 0.0006892106030136347, -0.018280165269970894, -0.005552678368985653, -0.016002943739295006, 0.012711890041828156, -0.004449161700904369, 0.02707710675895214, -0.002090053167194128, -0.001109365839511156, 0.012743084691464901, 0.0017020675586536527, -0.011175544932484627, 0.01969953067600727, -0.0008329992415383458, -0.007092922925949097, 0.013983079232275486, -0.008991907350718975, -0.017453502863645554, 0.009756180457770824, -0.022741025313735008, 0.015152884647250175, -0.008484992198646069, 0.002415649127215147, -0.03924308717250824, 0.003215016331523657, 0.013725722208619118, -0.008945115841925144, 0.0032306138891726732, -0.012633902952075005, 0.007451663259416819, -0.00616877619177103, -0.012064597569406033, 0.010824603028595448, -0.009849765338003635, 0.005342113319784403, 0.018576517701148987, 0.018155386671423912, 0.017562685534358025, 0.005942613817751408, 0.017593879252672195, -0.012002208270132542, 0.0033436950761824846, 0.004683122970163822, -0.008149647153913975, 0.009600206278264523, -0.007974176667630672, -0.007759712170809507, -0.006936948746442795, -0.032193057239055634, 0.0025131329894065857, 0.01720394380390644, -0.019964685663580894, -0.006605503614991903, 0.009210271760821342, -0.008492790162563324, -0.0017371616559103131, -0.008789141662418842, 0.006406636908650398, -0.020666569471359253, 0.0007325909100472927, 0.01718834787607193, -0.0031233816407620907, 0.004854694474488497, 0.015823572874069214, -0.013499559834599495, -0.026655975729227066, 0.0024234477896243334, -0.01966833509504795, 2.3792144929757342e-05, -0.024378754198551178, -0.0048975870013237, 0.010473662056028843, 0.0015987346414476633, -0.001508074696175754, 0.027420248836278915, 0.010325485840439796, 0.01429502759128809, -0.02197675220668316, -0.013187611475586891, -0.009654797613620758, 0.015807976946234703, -0.0004303910827729851, -0.005716451443731785, -0.029650678858160973, -0.0008252005209214985, 0.03021218627691269, 0.02202354557812214, -0.0022928195539861917, 0.027326663956046104, 0.015394644811749458, -0.015402443706989288, 0.017781049013137817, -0.0004991171881556511, -0.02545497566461563, 0.00811845250427723, 0.02281901240348816, -0.0003263270773459226, 0.01190862338989973, 0.005946513265371323, -0.003443128662183881, -0.017328724265098572, -0.013819306157529354, -0.006118084769695997, -0.020635375753045082, -0.007716819178313017, -0.029042379930615425, -0.010731019079685211, 0.00287772249430418, 0.0031467776279896498, -0.0244879350066185, -0.012532520107924938, 0.013897293247282505, 0.009413037449121475, 0.001664048875682056, 0.007139714900404215, 0.007900089025497437, -0.014934521168470383, -0.00016365096962545067, 0.006496321875602007, -0.008874926716089249, 0.016798412427306175, -0.00694084819406271, 0.004881989676505327, 0.001462257350794971, -0.0022206814028322697, -0.029759861528873444, 0.008235433138906956, -0.008329018019139767, -0.010325485840439796, 0.014388611540198326, -0.005018467083573341, 0.008742349222302437, 0.015940554440021515, -0.01149529218673706, -5.40730579814408e-05, 0.007194305770099163, -0.01793702319264412, -0.0057983375154435635, 0.029853444546461105, 0.02526780590415001, -0.008711154572665691, 0.004480356350541115, -0.003928598016500473, -0.0060167014598846436, -0.01470055989921093, 0.015386845916509628, 0.00013379653682932258, 0.006812169216573238, -0.005774941761046648, 0.005010668188333511, -0.010138317011296749, 0.0030863378196954727, -0.0060829902067780495, 0.01562860608100891, 0.0030824383720755577, 0.008165244944393635, 0.0026983520947396755, -0.022678636014461517, -0.0013764715986326337, -0.016158917918801308, -0.005856827832758427, 0.011292525567114353, -0.021009713411331177, 0.015106093138456345, -0.01429502759128809, 0.02044820599257946, 0.00812625139951706, -0.004414067603647709, 0.013655534014105797, 0.00188436231110245, 0.0005732048884965479, -0.018295763060450554, 0.01555841788649559, 0.0070344326086342335, 0.02383284457027912, -0.029291938990354538, -0.01268069539219141, -0.020884932950139046, 0.027513833716511726, -0.02687433920800686, 0.006118084769695997, 0.012828870676457882, -0.008079458959400654, 0.015535022132098675, 0.008157446049153805, 6.318170198937878e-05, 0.004815700929611921, 0.0197463221848011, -0.00028245936846360564, -0.0014700560132041574, -0.027482638135552406, 0.011581078171730042, -0.010317687876522541, 0.006262360606342554, -0.010442466475069523, 0.004488155245780945, 0.0026106166187673807, -0.0246439091861248, 0.00028026598738506436, 0.01512948889285326, -0.014263832941651344, -0.013055033050477505, 0.01149529218673706, -0.010777811519801617, -0.0038759566377848387, 0.012446734122931957, 0.016595644876360893, -0.026484403759241104, 0.002992753405123949, 0.006628899835050106, -0.001746910042129457, -0.019824309274554253, -0.0035913039464503527, -0.012711890041828156, 0.010497057810425758, 0.010341083630919456, 0.02467510476708412, 0.010208506137132645, 0.0023591085337102413, 0.02292819507420063, 0.022366687655448914, 0.012236169539391994, -0.016002943739295006, 0.004589538089931011, -0.006075191777199507, -0.008469394408166409, 0.004086521919816732, -0.00903869979083538, -0.022585051134228706, -0.0001436667807865888, -0.0017430107109248638, 0.010738817974925041, -0.005022366531193256, -0.0039130006916821, 0.0014427605783566833, -0.01150309108197689, -0.0006867735064588487, -0.005170541815459728, 0.014178046956658363, -0.00039943994488567114, -0.005700853653252125, 0.0015217224135994911, 0.002811433281749487, -0.018155386671423912, -0.0197463221848011, 0.009436434134840965, -0.02367687039077282, 0.0020939523819833994, -0.02035462111234665, -0.015332255512475967, -0.009202472865581512, -0.0007554995827376842, -0.006687390152364969, 0.006231165956705809, 0.019434373825788498, 0.013125221244990826, 0.015597411431372166, -0.0008988008485175669, 0.030898472294211388, 0.01714155450463295, -0.0014817541232332587, -0.004675324074923992, -0.008781342767179012, -0.016611242666840553, -0.007763611618429422, -0.01882607489824295, 0.0039188493974506855, 0.023068571463227272, 0.00023213334497995675, -0.014412008225917816, 0.03490700572729111, 0.0014642069581896067, 0.0026925031561404467, 0.0028445778880268335, -0.008508387953042984, 0.00757254334166646, 0.027217483147978783, -0.012345351278781891, -0.006687390152364969, 0.01793702319264412, -0.026500001549720764, 0.00033534434624016285, -0.02033902518451214, -0.01436521578580141, -0.01810859516263008, 0.011378311552107334, -0.00554487993940711, -0.0034821219742298126, -0.002076405333355069, 0.004394570831209421, -0.006574308965355158, -0.0073268841952085495, 0.018420543521642685, -0.004016333259642124, -0.011534285731613636, 0.0005176390986889601, -0.0045778402127325535, -0.0013608741573989391, -0.012750883586704731, -0.025673339143395424, 0.018186582252383232, 0.009670395404100418, 0.020978517830371857, 0.010925986804068089, 0.011776045896112919, 0.021602414548397064, 0.02115008980035782, 0.0011698058806359768, -0.02055738866329193, 0.01225176639854908, 0.00042015526560135186, -0.008937316946685314, -0.0054356977343559265, 0.010060329921543598, 0.012454533018171787, -0.006402737461030483, -0.01183843519538641, 0.029635081067681313, -0.007849397137761116, -0.0024819381069391966, 0.009303855709731579, 0.0034080343320965767, -0.023442909121513367, 0.010278694331645966, -0.007576442323625088, -0.009709388948976994, -0.0008573702070862055, 0.0035230652429163456, 0.018638907000422478, -0.007716819178313017, -0.01648646406829357, 0.0067497799172997475, -0.010325485840439796, 0.012111390009522438, 0.02283461019396782, -0.006258461158722639, -0.0035269646905362606, 0.014232638292014599, -0.003758976235985756, 0.024877870455384254, -0.006589906290173531, 0.013561949133872986, 0.0015743636758998036, 0.003741428954526782, -0.019871102645993233, 0.010512655600905418, -0.0009368195314891636, -0.005642363335937262, -0.0040085348300635815, -0.010411271825432777, 0.005127648822963238, -0.003433380275964737, -0.00812625139951706, 0.02787257358431816, 0.007709020748734474, -0.001893135835416615, -0.005638464353978634, -0.008087257854640484, 0.03787051513791084, 0.00861756969243288, 0.012220571748912334, 0.005369408987462521, -0.01141730509698391, -0.014334021136164665, 0.017500296235084534, -0.017593879252672195, 0.0020978518296033144, 0.0229593887925148, 0.01707916520535946, -0.003304701531305909, -0.004562242887914181, 0.009101089090108871, -0.0142716309055686, -0.016626840457320213, 0.031397588551044464, 0.0044998531229794025, -0.0023357123136520386, -0.007705121301114559, -0.0002856275823432952, -0.017749853432178497, -0.028293704614043236, -0.01192422118037939, -0.025595352053642273, 0.0007272292859852314, 0.00813405029475689, -0.01023970078676939, 0.007377575617283583, 0.01647086627781391, 0.017032373696565628, 0.03269217535853386, -0.013000442646443844, -0.02038581669330597, 0.005618967581540346, 0.008063862100243568, 0.032349031418561935, -0.018373750150203705, -0.0089529138058424, 0.00812625139951706, -0.00982636958360672, 0.028231315314769745, -0.015269865281879902, 0.003530863905325532, 0.0031116835307329893, -0.008913920260965824, 0.0014154650270938873, -0.006472925655543804, -0.007260594982653856, 0.012766481377184391, 0.033908773213624954, -0.014170248061418533, -0.006617201957851648, -0.024815481156110764, -0.010925986804068089, -0.00028903954080305994, 0.031522367149591446, -0.010372278280556202, -0.001843419042415917, 0.0459187775850296, -0.020791349932551384, 0.0028660243842750788, 0.026390820741653442, -0.002916715806350112, -0.011752649210393429, 0.023099767044186592, -0.012867864221334457, 0.010894792154431343, 0.0022577252238988876, -0.014139053411781788, 0.028995588421821594, -0.0042229993268847466, 0.009857564233243465, -0.003127280855551362, -0.014591378159821033, -0.0007043206132948399, 0.004074823576956987, -0.010910389013588428, 0.01712595671415329, 0.008484992198646069, -0.0030180991161614656, -0.014162449166178703, 0.007334682624787092, -0.002446844009682536, -0.001187352929264307, -0.029120367020368576, -0.01066083088517189, 0.005112051498144865, -0.015737788751721382, -0.0023825045209378004, -0.02615685947239399, 0.021555623039603233, -0.013554150238633156, 0.004675324074923992, 0.0012175729498267174, 0.03418952599167824, -0.002043260959908366, -0.020073868334293365, 0.011214538477361202, 0.028059743344783783, -0.01726633496582508, 0.0047806063666939735, -0.012750883586704731, 0.026671573519706726, 0.014084462076425552, 0.0048663923516869545, -0.003053193213418126, -0.005572175141423941, -0.014903326518833637, -0.001201000646688044, 0.0005205636261962354, -0.009841966442763805, 0.010317687876522541, -0.004515450447797775, -0.02629723586142063, -0.0012048999778926373, -0.035655681043863297, -0.011643467471003532, 0.00022762472508475184, -0.003552310401573777, 0.002158291870728135, 0.005790539085865021, 0.004246395081281662, -0.003599102608859539, 0.006702987477183342, -0.008711154572665691, -0.002951810136437416, 0.05253208056092262, 0.01098057720810175, 0.0070227342657744884, -0.019465569406747818, -0.0006838489789515734, -0.038026489317417145, 0.0028660243842750788, -0.002947910688817501, -0.026484403759241104, 0.004593437537550926, -0.0002953759685624391, -0.026453210040926933, 0.01809299737215042, 0.013624338433146477, -0.010551649145781994, 0.00549418805167079, 0.0006609403062611818, -0.0009265837143175304, -0.027326663956046104, 0.014965715818107128, 0.0001426919479854405, 0.018654504790902138, 0.009249265305697918, -0.009763979353010654, 0.015012508258223534, -0.008243232034146786, 0.009428635239601135, 0.008921719156205654, 0.0123219545930624, 0.021618012338876724, 0.03100765310227871, -0.0016757468692958355, -0.020151855424046516, 0.01430282648652792, 0.0006458302959799767, 0.009997940622270107, 0.0170635674148798, 0.013047234155237675, -0.003823315491899848, -0.011230136267840862, -0.033066511154174805, -0.013320188969373703, -0.0008013169863261282, 7.792613178025931e-05, -0.009085492230951786, -0.008882725611329079, 0.020947324112057686, 0.011027369648218155, -0.0009212220902554691, -0.0045700413174927235, -0.00327350664883852, 0.019808711484074593, -0.03702825307846069, 0.0037648251745849848, 0.01151088997721672, 0.01388169638812542, 0.0010596491629257798, 0.0010440517216920853, 0.011456298641860485, -0.012657299637794495, -0.01725073717534542, 0.002669106936082244, 0.003540612291544676, 0.01647086627781391, -0.006843364331871271, 0.028309302404522896, -0.0037219321820884943, 0.01225176639854908, -0.0035367130767554045, -0.015792379155755043, 0.0238016489893198, -0.02199234999716282, 0.01634608767926693, -0.007131916470825672, -0.01804620400071144, -0.015620807185769081, -0.03777692839503288, 0.007942982017993927, -0.02384844236075878, 0.011331519111990929, -0.0028718733228743076, -0.01346056628972292, -0.007206004112958908, 0.00023274261911865324, -0.03027457557618618, 0.00430878484621644, -0.006558711640536785, 0.0042853886261582375, 0.015301060862839222, -0.0025930695701390505, -0.03350323811173439, -0.011690259911119938, 0.010177310556173325, -0.0010391775285825133, 0.011768247000873089, 0.007615435868501663, -0.008742349222302437, -0.009202472865581512, 0.0018346455181017518, 0.011175544932484627, -0.010348882526159286, 0.017640672624111176, 0.009935551322996616, 0.0023630077484995127, -0.010146115906536579, -0.022725427523255348, -0.013226605020463467, -0.005030164960771799, -0.009545615874230862, 0.0027548926882445812, -0.004523249343037605, -0.002062757732346654, -0.017687464132905006, 0.011315922252833843, 0.006847263779491186, 0.03512537106871605, -0.0045739407651126385, 0.012002208270132542, -0.0030278475023806095, 0.012181578204035759, 0.010614038445055485, -0.003540612291544676, 0.036341968923807144, 0.015168482437729836, -0.010138317011296749, 0.013335786759853363, 0.021836375817656517, 0.023240143433213234, -0.03587404638528824, 0.001682570786215365, 0.004398469813168049, -0.00650412030518055, -0.012516922317445278, 0.006430032663047314, 0.007128017023205757, -0.0028621249366551638, 0.00510815205052495, 0.0021192983258515596, 0.0219611544162035, 0.005213434807956219, -0.025985287502408028, 0.003920799121260643, -0.0039714910089969635, -4.487302066991106e-05, -0.02044820599257946, -0.01310182549059391, -0.03599882498383522, -0.002676905831322074, 0.019200412556529045, 0.007642731536179781, -0.0042113009840250015, -0.009553414769470692, 0.010964980348944664, 0.017531489953398705, -0.006313052028417587, 0.002595019293949008, -0.00015438999980688095, 0.013811507262289524, -0.006211669184267521, 0.0009792250348255038, -0.015893762931227684, 0.00574764609336853, 0.009327252395451069, 0.013226605020463467, 0.013296793214976788, 0.0016650236211717129, -0.004741612821817398, 0.025096233934164047, -0.011393909342586994, 0.012516922317445278, -0.016174515709280968, 0.014505592174828053, 0.009724985808134079, 0.015690995380282402, -0.008079458959400654, 0.01879488117992878, -0.007381475064903498, 0.0035367130767554045, -0.012571513652801514, -0.022335493937134743, 0.01395968347787857, 0.014201442711055279, 0.02035462111234665, -0.01435741689056158, -0.01385829970240593, -0.010356681421399117, -0.014334021136164665, 0.014513391070067883, 0.006153178866952658, 0.020058270543813705, 0.01108196098357439, 0.021820778027176857, -0.0018580416217446327, -0.010543850250542164, -0.0030824383720755577, 0.01023190189152956, 0.00028050970286130905, 0.003985138610005379, -0.04557563737034798, 0.002828980563208461, -0.0027938862331211567, 0.016704827547073364, -0.002879671985283494, -0.01267289649695158], "10e5d866-558a-499d-ad57-57208363e8bb": [-0.02260933443903923, -0.006753091234713793, -0.008089997805655003, 0.02000408060848713, -0.009781126864254475, -0.031689632683992386, 0.02446805313229561, 0.03601648658514023, -0.01128943171352148, 0.032207634299993515, -0.003382258815690875, 0.03851509094238281, -0.008029055781662464, -0.001066477969288826, 0.002268170239403844, 0.03382258862257004, -0.010108687914907932, 0.020202141255140305, 0.019242310896515846, -0.05155659466981888, 0.05451226234436035, -0.025900179520249367, -0.020963910967111588, 0.028170254081487656, 0.0008584195747971535, -0.009004121646285057, -0.011479874141514301, 0.011822670698165894, -0.030927862972021103, -0.023660575971007347, 0.014702160842716694, 0.013262415304780006, 0.011677933856844902, -0.0007117788190953434, 0.03327411413192749, -0.03997768834233284, 0.026387711986899376, 0.019729843363165855, -0.00819664541631937, 0.007716730237007141, -0.03583366051316261, 0.017444532364606857, -0.008531823754310608, 0.008067144080996513, -0.018846189603209496, 0.008120467886328697, 0.03321317210793495, 0.004715356510132551, -0.007191109005361795, -0.04707738757133484, 0.007034945767372847, 0.005698039662092924, -0.02395004965364933, 6.195332389324903e-05, 0.033944472670555115, -0.04537102207541466, 0.012165467254817486, 0.07361745089292526, 0.002711901208385825, -0.049545519053936005, -0.013894684612751007, -0.03610789775848389, 0.0231121014803648, -0.018465304747223854, 0.016713233664631844, 0.00248908344656229, 0.0021958020515739918, -0.01334621012210846, -0.027652250602841377, 0.02567164972424507, -0.018038714304566383, 0.026083005592226982, -0.05981418117880821, -0.0037479083985090256, 0.0008650850504636765, 0.006238896399736404, 0.008181409910321236, -0.012881530448794365, 0.01002489309757948, -0.016332348808646202, 0.01062669139355421, -0.010093452408909798, 0.02443758212029934, -0.0014054656494408846, 0.057894520461559296, 0.03226857632398605, -0.0318724550306797, -0.06490280479192734, -0.05560921132564545, -0.03415776789188385, 0.016317114233970642, 0.02617441676557064, 0.00823473371565342, -0.02483370155096054, 0.0039688218384981155, 0.01401656772941351, 0.02125338278710842, 0.0035022376105189323, -0.0024186198133975267, -0.041958291083574295, -0.02391957864165306, 0.02093343995511532, -0.022533155977725983, 0.006882592104375362, 0.03955109789967537, -0.008958415128290653, -0.0028528287075459957, 0.008082379586994648, -0.025961121544241905, 0.03318270295858383, -0.00360507657751441, -0.03409682586789131, -0.0025424074847251177, -0.01174649316817522, -0.034889064729213715, -0.04473113268613815, -0.0460718497633934, -0.026966657489538193, -0.009202181361615658, -0.0523793064057827, 0.047260209918022156, -0.0038850270211696625, 0.01088569313287735, -0.019303251057863235, 0.0009026974439620972, -0.002578591462224722, 0.012173084542155266, 0.01419939287006855, 0.0135290352627635, 0.010321983136236668, -0.020171670243144035, -0.011274196207523346, 0.017109354957938194, 8.331859135068953e-05, 0.018130125477910042, 0.008836532011628151, 0.0025214587803930044, 0.054298967123031616, -0.029419558122754097, 0.046864088624715805, -0.02393481321632862, -0.020202141255140305, 0.003664113814011216, 0.009308828972280025, 0.025945886969566345, 0.012287350371479988, -0.030958332121372223, 0.03955109789967537, 0.00205677910707891, 0.013132914900779724, -0.05634050816297531, -0.01039816066622734, 0.02079632133245468, -0.000623223080765456, 0.02094867452979088, -0.03827132657170296, 0.003248949069529772, 0.03772285208106041, 0.03607742860913277, 0.02751513198018074, 0.028215961530804634, -0.0408613421022892, -0.008966033346951008, 0.006962577812373638, 0.009369770996272564, 0.05247071757912636, 0.05551779642701149, 0.021573325619101524, -0.0364430770277977, 0.02976997196674347, 0.021177206188440323, -0.02260933443903923, 0.011060900054872036, 0.01991266757249832, -0.014938309788703918, 0.007853848859667778, 0.03650401905179024, 0.03866744413971901, 0.036625903099775314, -0.01596669852733612, -0.029023436829447746, 0.01307959109544754, -0.0060179829597473145, 0.012348291464149952, 0.018815718591213226, 0.049454107880592346, 0.024727053940296173, 0.05359813570976257, 0.0006146531668491662, -0.021101029589772224, -0.008745119906961918, 0.014374599792063236, -0.00976589135825634, 0.01461074873805046, -0.02353869378566742, -0.02349298633635044, -0.017901595681905746, 0.02757607400417328, -0.004037381149828434, 0.022060859948396683, -0.008539441972970963, -0.04311618208885193, -0.04540149122476578, 0.03760096803307533, -0.03513283282518387, 0.02128385379910469, 0.004799150861799717, -0.03504142165184021, 0.030486036092042923, -0.008074762299656868, 0.04387795180082321, -0.026463890448212624, -0.01307959109544754, 0.006886400748044252, 0.00040064341737888753, -0.007312992122024298, -0.005001020152121782, 0.044243600219488144, -0.025595471262931824, -0.03516330197453499, -0.01199787762016058, 0.029632853344082832, 0.005846584681421518, -0.020156433805823326, -0.06496374309062958, 0.009895392693579197, -0.020735379308462143, 0.05192224308848381, -0.04427407309412956, -0.009598301723599434, 0.01947084069252014, 0.001424509915523231, -0.006189381238073111, -0.016682762652635574, -0.00819664541631937, 0.03412729501724243, 0.03418823704123497, -0.020628731697797775, -0.013323357328772545, 0.009026974439620972, 0.02660100907087326, 0.03546801209449768, 0.002873777411878109, 0.0021405736915767193, 0.025625942274928093, 0.02353869378566742, -0.022563626989722252, 0.07227674126625061, 0.02125338278710842, -0.028642551973462105, -0.011594139039516449, 0.00554949464276433, -0.005941805895417929, -0.011030429974198341, -0.00631507346406579, 0.01779494807124138, 0.01867859996855259, -0.017200766131281853, 0.0031061172485351562, -0.006048453971743584, 0.011060900054872036, 0.011418932117521763, 0.009613537229597569, -0.0006932106916792691, 0.03333505615592003, -0.004623943939805031, 0.0032260960433632135, -0.01151034515351057, 0.007149211596697569, 0.009849686175584793, -0.012622528709471226, 0.004060233943164349, 0.005469508469104767, 0.01959272474050522, 0.015303959138691425, -0.010390542447566986, -0.01308720838278532, -0.004269720986485481, 0.041988763958215714, 0.0035650834906846285, -0.011891230009496212, 0.021862799301743507, 0.012988178059458733, 0.014968780800700188, 0.05563968047499657, -0.015250635333359241, -0.02928243950009346, -0.0068635474890470505, -0.0329694040119648, -0.005922761745750904, -0.010817133821547031, -0.003606980899348855, 0.01590575836598873, 0.027393249794840813, 0.033578820526599884, 0.00443350151181221, 0.011205636896193027, -0.02267027460038662, -0.005743745714426041, 0.036229781806468964, 0.00378028373233974, -0.006353161763399839, 0.011380843818187714, -0.026936186477541924, 0.04735162481665611, -0.03248187154531479, 0.019242310896515846, 0.002810931298881769, -0.04073945805430412, 0.04914940148591995, 0.033517878502607346, -0.006779753137379885, -0.010748574510216713, -0.0011140885762870312, -0.0034260605461895466, 0.015044957399368286, 0.007907172664999962, -0.020628731697797775, -0.005077197216451168, -0.03693060949444771, -0.0015949559165164828, -0.012013113126158714, -0.07733488827943802, 0.017017941921949387, 0.05365907773375511, -0.05890005826950073, 0.022776922211050987, -0.021207677200436592, -0.036260250955820084, -0.026052534580230713, -0.03150680661201477, -0.011182783171534538, -0.036595430225133896, 0.010527661070227623, -0.03379211574792862, -0.06078924611210823, -0.05685851350426674, -0.03245140239596367, 0.006867356598377228, -0.02757607400417328, -0.006044644862413406, 0.005625671241432428, 0.015814345329999924, -0.0022015152499079704, 0.011578904464840889, -0.010131540708243847, 0.020308788865804672, 0.0024319507647305727, -0.03519377484917641, -0.006189381238073111, 0.0008679417078383267, -0.002504318952560425, 0.03373117744922638, -0.0177492406219244, 0.017977772280573845, -0.0035479438956826925, 0.004037381149828434, 0.0216952096670866, 0.0016882728086784482, 0.010756192728877068, -0.024727053940296173, -0.016179995611310005, -0.02759130857884884, 0.006650252267718315, -0.00951450690627098, -0.0006779753020964563, 0.017855888232588768, -0.012972943484783173, -0.015494401566684246, 0.02478799596428871, -0.04467019438743591, 0.025839239358901978, 0.02617441676557064, 0.016682762652635574, -0.018328186124563217, -0.048570454120635986, 0.014214628376066685, -0.0072825211100280285, -0.025534531101584435, 0.03949015587568283, -0.004383986350148916, 0.0008560390560887754, -0.015562960878014565, 0.012477792799472809, 0.032573286443948746, 0.017200766131281853, -0.02167997509241104, -0.01945560611784458, -0.03421870991587639, -0.028505433350801468, -0.03144586458802223, 0.0021520003210753202, -0.04677267745137215, -0.00956783164292574, -0.04296382889151573, 0.014763102866709232, -0.012279732152819633, -0.018754776567220688, 0.006661678664386272, -0.04140981659293175, 0.019196603447198868, 0.0035269951913505793, -0.005446655675768852, -0.012249262072145939, 0.018069185316562653, -0.04335995018482208, -0.003719341941177845, -0.01222640834748745, 0.028733965009450912, 0.00048396200872957706, 0.02079632133245468, 0.013574741780757904, 0.017932066693902016, 0.019684135913848877, 0.05186130106449127, 0.009141240268945694, 0.02049161307513714, 0.02489464357495308, -0.05984465032815933, -0.025488823652267456, 0.04561478644609451, 0.05329342931509018, 0.014938309788703918, 0.016134288161993027, 0.01637805439531803, 0.009933480992913246, -0.007815760560333729, 0.006600737106055021, -0.0164847020059824, -0.00949927233159542, -0.017094118520617485, 0.04677267745137215, 0.0055685387924313545, -0.022091330960392952, 0.012089289724826813, 0.016774175688624382, 0.018815718591213226, 0.002157713519409299, 0.009864921681582928, 0.006040836218744516, 0.0030889774207025766, 0.017155060544610023, -0.0076976860873401165, 0.0002809026918839663, -0.024559464305639267, -0.030318446457386017, -0.038880739361047745, 0.02390434220433235, 0.024696582928299904, -0.01174649316817522, -0.00039183543412946165, 0.03650401905179024, -0.05621862784028053, 0.01241685077548027, -0.0003796947421506047, 0.006680722814053297, 0.004201161675155163, 0.011723640374839306, 0.011700787581503391, -0.03464530035853386, -0.03242092952132225, -0.011457020416855812, 0.034858595579862595, 0.015448695980012417, 0.003148014424368739, -0.035285186022520065, 0.011578904464840889, 0.013460475951433182, -0.0069701955653727055, -0.01464121975004673, -0.005766598973423243, 0.01308720838278532, -0.01374994870275259, 0.03522424399852753, -0.010047745890915394, 0.01858718879520893, -0.011761728674173355, -0.02260933443903923, 0.017216002568602562, -0.016972236335277557, -0.013666153885424137, -0.04208017513155937, 0.0008469930035062134, -0.0007512956508435309, 0.031263042241334915, -0.0164085254073143, -0.017414061352610588, -0.013186238706111908, 0.026494361460208893, -0.02803313545882702, 0.062404196709394455, -0.013666153885424137, -0.009141240268945694, 0.005709466058760881, -0.000823663838673383, -0.04089181497693062, -0.007145402487367392, -0.025092704221606255, -0.02439187467098236, -0.04939316585659981, 0.04003863036632538, -0.009560213424265385, 0.010580984875559807, 0.008821296505630016, -0.0035117596853524446, 0.014991633594036102, -0.027164718136191368, 0.023249220103025436, -0.004585855174809694, -0.01692652888596058, -0.030729802325367928, 0.026265829801559448, -0.021832328289747238, -0.01174649316817522, 0.0032413313165307045, 0.015410606749355793, -0.020979145541787148, 0.0025824003387242556, 0.037113435566425323, -0.00532858120277524, -0.0034127295948565006, -0.01605811156332493, -0.008150938898324966, -0.00030232747667469084, -0.032634228467941284, -0.014085127040743828, 0.0004894372541457415, -0.020125962793827057, 0.03671731427311897, -0.0017244567861780524, 0.00631888210773468, 0.0015768639277666807, -0.008493735454976559, 0.03857603296637535, 0.022563626989722252, -0.011975024826824665, -0.006703576073050499, 0.01643899641931057, 0.007354889530688524, 0.013460475951433182, -0.025580236688256264, 0.013262415304780006, -0.023279691115021706, -0.005446655675768852, -0.001115993014536798, 0.040160514414310455, -0.028155019506812096, 0.014306040480732918, 0.006901636254042387, 0.026083005592226982, -0.013201474212110043, 0.021222911775112152, -0.020171670243144035, -0.006021792069077492, 0.006840694695711136, -0.033517878502607346, 0.012348291464149952, -0.021116264164447784, -0.030501270666718483, -0.009278358891606331, -0.01308720838278532, -0.009857303462922573, 0.002675717230886221, 0.006566457450389862, -0.011472255922853947, 0.0032660888973623514, -0.021146735176444054, -0.0010760001605376601, -0.028094077482819557, 0.029968032613396645, 0.044152189046144485, 0.002032021526247263, 0.054390378296375275, -0.005381905008107424, -0.005130521021783352, 0.050916705280542374, 0.008470882661640644, 0.017444532364606857, -0.027286602184176445, -0.014572660438716412, 0.03903309628367424, -0.02125338278710842, -0.0011198018910363317, -0.007297756616026163, -0.005804687272757292, 0.03022703342139721, -0.02404146082699299, -0.03464530035853386, -0.004993402399122715, 0.035650834441185, 1.7556418242747895e-05, 0.019288016483187675, -0.004269720986485481, 0.02171044424176216, -0.020720144733786583, 0.02259409800171852, 0.023416809737682343, 0.016758939251303673, 0.01724647358059883, 0.008554677478969097, 0.027896016836166382, 0.009331682696938515, 0.0028452109545469284, -0.03379211574792862, -0.029404321685433388, 0.04131840541958809, -0.0059951297007501125, 0.02934337966144085, -0.001959653338417411, 0.0297395009547472, 0.015083045698702335, 0.0036507826298475266, 0.018130125477910042, 0.014511718414723873, 0.042384881526231766, 0.0023272072430700064, 0.03278658166527748, 0.022822629660367966, 0.004909607581794262, 0.0038012322038412094, 0.012028348632156849, -0.04610231891274452, 0.055731091648340225, -0.017048412933945656, 0.004719165153801441, -0.00542761106044054, -0.025046996772289276, -0.00523335998877883, -0.015707697719335556, -0.002270074561238289, 0.010916164144873619, -0.0005427611176855862, -0.003144205780699849, -0.01998884417116642, 0.00841755885630846, -0.011266577988862991, 0.008333764038980007, 0.008501353673636913, -0.022761687636375427, -0.015273488126695156, -0.011936935596168041, 0.013216709718108177, -0.0024852745700627565, 0.03379211574792862, -0.03060791827738285, 0.010999958962202072, -0.005983703304082155, -0.00886700302362442, 0.045919496566057205, 0.014671689830720425, -0.001615904620848596, 0.015395372174680233, 0.018023477867245674, 0.022106565535068512, 0.009491654112935066, -0.009826833382248878, 0.0011169452918693423, 0.009605919942259789, 0.005690421909093857, -0.0036126943305134773, 0.01688082329928875, -0.017535945400595665, 0.013247180730104446, 0.013993714936077595, 0.010146776214241982, 0.0033156038261950016, 0.018571952357888222, 0.012287350371479988, 0.041440289467573166, 0.008371852338314056, 0.011380843818187714, -0.002702379133552313, 0.017383592203259468, 0.007267285604029894, 0.00157972052693367, 0.004098322708159685, 0.013003413565456867, 0.017414061352610588, 0.00519908033311367, -0.007990967482328415, -0.045949965715408325, -0.03863697499036789, -0.029145320877432823, 0.015524872578680515, -0.01593622751533985, -0.013993714936077595, -0.0005189558141864836, 0.016591351479291916, -0.025961121544241905, 0.009255505166947842, -0.0011607470223680139, 0.018526246771216393, -0.011091371066868305, 0.033060818910598755, 0.00465822359547019, 0.0015835294034332037, 0.006593119353055954, -0.007922408170998096, 0.004452545661479235, -0.008249969221651554, -0.02126861922442913, -0.04080040007829666, 0.01513636950403452, -0.0190137792378664, -0.005355243105441332, 0.006425530184060335, -0.025107938796281815, -0.041988763958215714, 0.002454803790897131, -0.01602764055132866, 0.005244786385446787, -0.0030508888885378838, -0.013681389391422272, 0.013064355589449406, 0.01528872363269329, 0.007636744063347578, -0.010230571031570435, 0.02967855893075466, -0.013193855993449688, 0.04317712411284447, -0.022076094523072243, 0.04080040007829666, -0.02618965320289135, -0.014595513232052326, -0.016286643221974373, 0.025549765676259995, 0.00108457007445395, -0.008531823754310608, 0.005465699825435877, -0.0007146354764699936, 0.036260250955820084, -0.01599716953933239, -0.013254798017442226, 0.009407859295606613, -0.00698923971503973, -0.0016130480216816068, 0.006703576073050499, 0.012134996242821217, 0.04009957239031792, -0.001786350621841848, 0.011632228270173073, -0.028063606470823288, 0.032999876886606216, -0.008173791691660881, -0.006021792069077492, -0.012211172841489315, 0.026448654010891914, 0.008592765778303146, -0.011898847296833992, 0.014496482908725739, 0.03583366051316261, -0.0033194127026945353, 0.03702202066779137, 0.02612871117889881, -0.01445839460939169, -0.0007008283864706755, 0.03909403830766678, 0.00022579339565709233, -0.022411273792386055, 0.048997048288583755, -0.022990219295024872, -0.007571993861347437, 0.021101029589772224, -0.012881530448794365, -0.0007770053925924003, 0.010055364109575748, 0.005671377759426832, 0.00752628780901432, 0.03677825629711151, 0.007968113757669926, 0.04482254758477211, -0.014945927076041698, 0.02263980358839035, 0.038789328187704086, -0.030028972774744034, -0.03382258862257004, -0.002144382568076253, 0.0021539046429097652, -0.014542189426720142, -0.012074054218828678, -0.027195189148187637, -0.03464530035853386, 0.01777971163392067, -0.03066886030137539, 0.04080040007829666, -0.034767184406518936, 0.04497490078210831, -0.01129704900085926, 0.00025209825253114104, 0.022030388936400414, 0.003506046487018466, 0.013574741780757904, -0.006402676925063133, 0.028718728572130203, -0.0003158964973408729, -0.030790744349360466, -0.012074054218828678, -0.02134479582309723, -0.01816059648990631, 0.002094867406412959, 0.011906465515494347, -0.019760314375162125, 0.04396936297416687, 0.050368230789899826, 0.011830287985503674, 0.0011464637937024236, 0.008943179622292519, -0.004033572040498257, -0.012607293203473091, 0.0029689986258745193, -0.013018649071455002, -0.0088746203109622, -0.020552555099129677, 0.03421870991587639, -0.020095491781830788, -0.011495109647512436, 0.002723327837884426, 3.3416708902223036e-05, 0.0022662656847387552, 0.0027690338902175426, 0.009971569292247295, 0.012294967658817768, 0.012355909682810307, 0.030440328642725945, 0.003620311850681901, 0.0016663718270137906, 0.006996857468038797, 0.010321983136236668, -0.0034660534001886845, -0.009864921681582928, -0.0035517525393515825, -0.018846189603209496, -0.018541481345891953, 0.0362907238304615, -0.002862350782379508, 0.029861383140087128, -0.024757524952292442, -0.014549806714057922, -0.03558989614248276, 0.03501094877719879, -0.006878782995045185, -0.05204412713646889, -0.02401098981499672, -0.004479207564145327, -0.0060179829597473145, -0.0007827186491340399, 0.013201474212110043, 0.02125338278710842, 0.024605171754956245, 0.031323984265327454, 0.026006827130913734, -0.019379429519176483, 0.013247180730104446, -0.03674778342247009, -0.027728427201509476, 0.013254798017442226, -0.00016497081378474832, -0.008112850598990917, 0.0025195542257279158, 0.013658535666763783, -0.0012731080641970038, 0.007800524588674307, -0.016956999897956848, -0.007716730237007141, -0.010489572770893574, -0.017459768801927567, -0.016119053587317467, 0.022990219295024872, 0.005823731888085604, 0.004681076854467392, 0.0049476963467895985, 0.004764871206134558, 0.017673064023256302, 0.016743704676628113, -0.007092078682035208, -0.0008427080465480685, -0.000870798307005316, -0.004155455157160759, -0.042019233107566833, 0.0014406974660232663, -0.0035860321950167418, 0.01065716240555048, -0.012835824862122536, 0.00976589135825634, -0.03363976255059242, -0.005858011078089476, 0.00753009645268321, -0.007141593843698502, 0.0012588249519467354, -0.007034945767372847, -0.012241643853485584, 0.012614911422133446, -0.004901989828795195, -0.021938975900411606, 0.0035517525393515825, -0.02433093450963497, -0.006490280386060476, -0.012386379763484001, -0.004330662544816732, -0.0035288995131850243, -0.00011170643119839951, -0.02708854153752327, -0.0203544944524765, 0.013437623158097267, 0.030927862972021103, -0.03945968672633171, 0.027606545016169548, 0.019775548949837685, 0.0005632336833514273, 0.01732265017926693, 0.03997768834233284, 0.022472215816378593, -0.019333722069859505, -0.02433093450963497, 0.039368271827697754, 0.02393481321632862, 0.004989593289792538, 0.0012559682363644242, 0.0023348249960690737, -0.025077467784285545, 0.013848979026079178, 0.0064102946780622005, 0.03184198588132858, -0.0005241929902695119, 0.003368927864357829, -0.0029670940712094307, 0.00698543107137084, -0.027774134650826454, -0.00023007835261523724, 0.027210423722863197, 0.005221933126449585, 0.020583026111125946, 0.016119053587317467, 4.6241821110015735e-05, 0.025199351832270622, -0.012264496646821499, -0.023751989006996155, -0.022274155169725418, -0.0460718497633934, -0.019227074459195137, -0.03726578876376152, -0.005279066041111946, 0.02395004965364933, -0.0271342471241951, -0.003048984333872795, -0.011647463776171207, -0.015722932294011116, 0.025214586406946182, 0.0002673336712177843, 0.013224327005445957, 0.003330839332193136, 0.030775507912039757, 0.014443159103393555, -0.008310910314321518, 0.019288016483187675, 0.007846230641007423, -0.008387087844312191, -0.014351746998727322, 0.024559464305639267, -0.004582046531140804, 0.00466203223913908, 0.013026267290115356, -0.005854202434420586, 0.017932066693902016, -0.0036869668401777744, -0.0008227116195484996, -0.028627317398786545, -0.0063036466017365456, -0.00011045664723496884, -0.007636744063347578, -0.004140220116823912, -0.007899555377662182, -0.00032422837102785707, -0.003643165109679103, -0.025854473933577538, -0.006901636254042387, -0.016972236335277557, -0.011860758997499943, -0.024620406329631805, 0.011754111386835575, 0.001680655055679381, -0.008630854077637196, -0.030882155522704124, 0.00909553375095129, -0.0025309808552265167, -0.01133513730019331, -0.018526246771216393, 0.029830913990736008, -0.016347583383321762, -0.01200549490749836, 0.0006522655603475869, -0.03106497973203659, -0.016240935772657394, -0.010733339004218578, -0.00913362205028534, -0.031141158193349838, -0.02928243950009346, -0.03059268370270729, 0.006406485568732023, -0.030074680224061012, -0.00555711193010211, 0.0026738126762211323, -0.027179952710866928, 0.04317712411284447, 0.02393481321632862, 0.028642551973462105, -0.006806415040045977, -0.022091330960392952, -0.015212547034025192, -0.0004401602200232446, -0.013818508014082909, -0.03580319136381149, -0.002961380872875452, -0.02358439937233925, -0.011403696611523628, 0.008981267921626568, 0.023873871192336082, -0.030486036092042923, 0.004128793254494667, 0.041958291083574295, -0.007145402487367392, -0.03382258862257004, 0.0031556321773678064, -0.026448654010891914, -0.01951654814183712, -0.0066388254053890705, -0.01461074873805046, -0.0010693346848711371, 0.02794172428548336, 0.030303210020065308, -0.012561587616801262, -0.002616679994389415, 0.003033749060705304, -0.0006855929968878627, -0.005720892921090126, -0.02701236493885517, 0.01915089786052704, -0.0620080791413784, -0.02216750755906105, -0.011479874141514301, 0.010382925160229206, -0.005602818448096514, 0.00957544893026352, 0.01948607712984085, 0.005252404138445854, -0.02576306089758873, -0.007602464407682419, 0.018099654465913773, -0.019806019961833954, 0.011616992764174938, 0.005835158284753561, -0.012980560772120953, 0.012234026566147804, -0.00577421672642231, -0.00541999377310276, 0.013887067325413227, -0.001505448017269373, -0.013986097648739815, 0.010634309612214565, 0.03504142165184021, -0.016179995611310005, -0.016119053587317467, 0.031232569366693497, -0.019851725548505783, 0.014275569468736649, -0.005964659154415131, -0.04092228412628174, 0.0026719083543866873, 0.022472215816378593, -0.018343420699238777, -0.004399221856147051, 0.004985784646123648, 0.014542189426720142, 0.007019710727035999, -0.005884673446416855, 0.029480498284101486, -0.0038869313430041075, 0.004799150861799717, 0.011159930378198624, -0.00047896290197968483, 0.0017473099287599325, -0.0016435188008472323, -0.036686841398477554, 0.009369770996272564, -0.01814536191523075, -0.014801191166043282, 0.006006556563079357, -0.003172772005200386, 0.01285106036812067, 0.0015844815643504262, -0.01599716953933239, -0.00261858431622386, -0.0022719791159033775, 0.012020730413496494, -0.011045665480196476, 0.0009193611913360655, -0.0021691401489079, 0.04832668974995613, 0.018876660615205765, 0.01085522212088108, 0.011540815234184265, -0.01781018264591694, 0.017155060544610023, 0.020263081416487694, 0.029145320877432823, 0.022335097193717957, -0.0032756109721958637, 0.016119053587317467, -0.00411736685782671, -0.0002954239316750318, 0.022350331768393517, 2.3448232241207734e-05, 0.017840653657913208, 0.0082423510029912, 0.004144028760492802, -0.005503788124769926, -0.012972943484783173, -0.033517878502607346, 0.0037460040766745806, -0.0026319152675569057, -0.008775589987635612, -0.008996503427624702, -0.029084378853440285, 0.0005570442881435156, -0.004547766875475645, -0.005431420169770718, 0.006589310709387064, 0.049057986587285995, 0.021832328289747238, 0.022517921403050423, 0.004829621873795986, -0.01959272474050522, 0.06459809839725494, -0.001784446183592081, 0.012553969398140907, 0.005545685533434153, 0.002426237566396594, -0.000861752312630415, -0.010116305202245712, 0.007012092974036932, -0.027804605662822723, -0.015235399827361107, 0.007130166981369257, 0.010062981396913528, -0.0015540107851848006, -0.030318446457386017, -0.01592099294066429, -0.018373891711235046, -0.010954252444207668, -0.03162869065999985, -0.0003273230395279825, -0.016271406784653664, 0.011060900054872036, -0.019196603447198868, -0.022548392415046692, -0.04037380963563919, 0.0025347897317260504, 0.0009355488000437617, 0.02614394575357437, -0.0160124059766531, -0.023812931030988693, -0.019775548949837685, 0.0036507826298475266, -0.006802605930715799, 0.002835688879713416, -0.005618053954094648, 0.017490239813923836, 0.0033117951825261116, -0.01691129431128502, -0.015433460474014282, 0.007731965743005276, -0.008752737194299698, 0.010824752040207386, 0.028231196105480194, -0.011129459366202354, 0.03851509094238281, -0.04162311181426048, 0.02533647045493126, -0.008767972700297832, -0.00864608958363533, 0.003580318996682763, -0.023218749091029167, 0.0082423510029912, -0.0012359718093648553, -0.019394664093852043, 0.00820426270365715, 0.0007017806055955589, 0.003456531325355172, -0.024315698072314262, 0.0077890981920063496, 0.010520043782889843, -0.024711819365620613, -0.01860242336988449, -0.03242092952132225, 0.0007203487330116332, 0.005538067780435085, -0.02533647045493126, -0.018038714304566383, 0.011175165884196758, 0.02136003039777279, -0.011205636896193027, -0.0003001849981956184, -0.016271406784653664, -0.015844816341996193, -0.001003631972707808, 0.0031518233008682728, -0.011799816973507404, -0.001028389553539455, 0.009712567552924156, -0.0073929778300225735, -0.014526953920722008, 0.013224327005445957, -0.011396079324185848, -0.004905798938125372, -0.012363526970148087, 0.019379429519176483, 0.006086542271077633, -0.004300191532820463, 0.010977106168866158, -0.006383632775396109, 0.013414769433438778, 0.004311618395149708, 0.004833430517464876, -0.012881530448794365, -0.0028566375840455294, 0.005385714117437601, 0.009476418606936932, 0.021116264164447784, 0.018770013004541397, -0.011472255922853947, 0.007191109005361795, 0.012972943484783173, 0.006311264354735613, 0.038819801062345505, 0.01945560611784458, -0.013140532188117504, -0.007830996066331863, -0.02257886342704296, 0.002317685168236494, -0.0019472745480015874, 0.011434167623519897, 0.00044349298696033657, 0.00034993808367289603, -0.04467019438743591, 0.004940078593790531, 0.033974941819906235, -0.020278317853808403, -0.000150211519212462, 0.0190899558365345, 0.015585814602673054, -0.009925862774252892, -0.0028985347598791122, -0.013414769433438778, 0.015722932294011116, -0.015029721893370152, 0.02305115945637226, 0.0017577842809259892, 0.0418059378862381, -0.018038714304566383, -0.012774882838129997, -0.02219797857105732, 0.019440369680523872, 0.017078883945941925, 0.0017006514826789498, -0.043664656579494476, 0.007549140602350235, 0.004014527890831232, -0.01020771823823452, 0.011647463776171207, -0.015273488126695156, -0.012035965919494629, -0.003172772005200386, -0.02125338278710842, 0.02929767407476902, -0.011837906204164028, 0.04988069832324982, 0.009019357152283192, -0.01910519227385521, -0.019851725548505783, 0.005309537053108215, 0.001091235550120473, 0.027621779590845108, 0.007469154894351959, -0.021664738655090332, -0.01605811156332493, 0.003448913572356105, 0.008394705131649971, 0.00475725345313549, -0.009971569292247295, 0.00013414293061941862, 0.01598193496465683, 0.013056737370789051, 0.017185531556606293, 0.002481465693563223, -0.014146069064736366, 0.004635370336472988, -0.013605211861431599, 0.00510385911911726, 0.0020282126497477293, 0.007217770908027887, -0.03945968672633171, 0.022944511845707893, 0.00293471897020936, -0.0011464637937024236, 0.00555711193010211, 0.007968113757669926, -0.019745077937841415, -0.0017968249740079045, 0.014283187687397003, -0.011350372806191444, 0.01177696418017149, 0.021207677200436592, 0.01046671997755766, 0.006650252267718315, -0.007453919388353825, 0.00012105001223972067, -0.014107980765402317, -0.0022986410185694695, -0.0019034728175029159, -0.008135703392326832, 0.02398051880300045, 0.014138450846076012, 0.011716022156178951, 0.006562648341059685, -0.007709112484008074, 0.03546801209449768, -0.010961870662868023, 0.004997211042791605, 0.0069701955653727055, 0.01691129431128502, -0.01645423285663128, 0.00912600476294756, -0.026814304292201996, -0.01085522212088108, 0.00010646926239132881, 0.02489464357495308, 0.01040577795356512, 0.006402676925063133, -0.012515881098806858, -0.022441744804382324, -0.022563626989722252, -0.0020510656759142876, -0.0003335124347358942, -0.013452858664095402, -0.0001078380664694123, -0.010230571031570435, 0.0022662656847387552, 0.008783208206295967, 0.0019272781210020185, -0.00689020985737443, -0.012782501056790352, -0.01685035228729248, 0.013810889795422554, 0.027789369225502014, -0.010451484471559525, -0.017840653657913208, -0.0296633243560791, 0.0073701245710253716, -0.012729176320135593, 0.019836490973830223, -0.007004475221037865, -0.04677267745137215, 0.0013778514694422483, 0.01639329083263874, -0.007853848859667778, 0.027378013357520103, -0.0046163261868059635, -0.02390434220433235, 0.04668126627802849, 0.007537714205682278, 0.00820426270365715, 0.007499625440686941, -0.008783208206295967, -0.01133513730019331, -0.008257586508989334, 0.004144028760492802, -0.004025954287499189, 0.015441077761352062, 0.006581692956387997, 0.006139866076409817, -0.009682096540927887, 0.012279732152819633, 0.00820426270365715, 0.012173084542155266, 0.03827132657170296, 0.02664671465754509, -0.01379565428942442, -0.006570266094058752, 0.022045623511075974, 0.018907131627202034, 0.007194917649030685, 0.0008788921404629946, 0.024635642766952515, 0.0057780253700912, 0.01643899641931057, -0.02666194923222065, 0.0065474133007228374, -0.008448028936982155, -0.0030680287163704634, 0.0022586481645703316, 0.026875246316194534, -0.0031403969042003155, 0.02047637850046158, 0.02658577263355255, -0.029571911320090294, 0.02490987814962864, -0.015204928815364838, -0.003342265961691737, -0.007731965743005276, -0.008371852338314056, -0.006756899878382683, -0.017017941921949387, -0.011266577988862991, 0.007876701653003693, 0.014785955660045147, 0.005389522761106491, -0.008143321610987186, -0.004060233943164349, 0.022472215816378593, -0.05542638525366783, -0.023812931030988693, -0.034858595579862595, 0.02084202691912651, -0.020324023440480232, 0.00689782714471221, -0.0074348752386868, -0.022015152499079704, -0.013201474212110043, -0.0004187354352325201, 0.01598193496465683, 0.004376368597149849, 0.014717396348714828, 0.006010365206748247, -0.03510235995054245, 0.02448328770697117, -0.05676710233092308, 0.01176934689283371, -0.027789369225502014, 0.013285269029438496, -0.004456354305148125, 0.025016527622938156, -0.018495775759220123, 0.02436140552163124, 0.007667215075343847, 0.019684135913848877, 0.013163385912775993, -0.03507189080119133, -0.020704908296465874, 0.005225742235779762, 0.010329601354897022, -0.008608001284301281, -0.015524872578680515, -0.00698543107137084, 0.0002623345353640616, 0.014146069064736366, -0.0040868958458304405, 0.01378803700208664, -0.025153646245598793, -0.016301877796649933, -0.009247887879610062, -0.0284749623388052, -0.02489464357495308, 0.008067144080996513, -0.01730741374194622, -0.0010560036171227694, 0.007111122831702232, -0.012051201425492764, 0.0017006514826789498, 0.022121800109744072, -0.012028348632156849, 0.022533155977725983, 0.0514347106218338, -0.032603755593299866, 0.013650918379426003, -0.005629480350762606, -0.016332348808646202, -0.023416809737682343, -0.046376556158065796, -0.014405070804059505, 0.0016378054860979319, -0.01998884417116642, -0.004513487219810486, -0.01913566328585148, 0.019851725548505783, -0.025473589077591896, 0.023462515324354172, 0.02134479582309723, 0.025900179520249367, -0.022868335247039795, 0.02390434220433235, 0.005850393790751696, 0.025397412478923798, -0.0005865629063919187, -0.00973542034626007, -0.006307455711066723, -0.012134996242821217, 0.036199308931827545, 0.007217770908027887, -0.0035898410715162754, -0.008828914724290371, 0.010931399650871754, -0.017932066693902016, 0.01550963707268238, 0.02795695886015892, -0.023249220103025436, -0.0022529347334057093, -0.02353869378566742, 0.02263980358839035, -0.02125338278710842, -0.020689673721790314, -0.008585147559642792, 0.010192482732236385, -0.011472255922853947, 0.01018486451357603, -0.004056425299495459, 0.00261858431622386, -0.02526029385626316, 0.013490946963429451, -0.021222911775112152, -0.009049827232956886, 0.00980397965759039, 0.029648087918758392, 0.019806019961833954, 0.015860050916671753, -0.010131540708243847, 0.014130833558738232, 0.020659202709794044, -0.0005970372585579753, 0.02844449132680893, -0.01951654814183712, 0.006143675185739994, 0.021817093715071678, -0.01219593733549118, -0.0015778160886839032, 0.00367173133417964, 0.015524872578680515, 0.0015378232346847653, 0.003904071170836687, -0.02664671465754509, -0.023325396701693535, 0.0007422496564686298, 0.015768639743328094, -0.007263476960361004, 0.0017158868722617626, 0.031156392768025398, 0.007998584769666195, -0.0036260252818465233, 0.0004937222111038864, 0.010481955483555794, -0.00174635776784271, 0.0062998379580676556, -0.025473589077591896, -0.011731257662177086, -0.007884319871664047, -0.0027480851858854294, -0.030988803133368492, -0.009529742412269115, -0.01199787762016058, -0.0128967659547925, 0.003330839332193136, -0.008752737194299698, 0.018754776567220688, 0.014846897684037685, -0.005934188142418861, -0.012493028305470943, -0.016088582575321198, 0.009293594397604465, 0.002986138453707099, 0.0023843401577323675, 0.008280440233647823, 0.010512425564229488, 0.002576687140390277, -0.0030185135547071695, -0.0021348604932427406, -0.0095068896189332, -0.0035155685618519783, -0.0026871436275541782, 0.002388149034231901, 0.005610436201095581, -0.011822670698165894, -0.002452899469062686, -0.006478853989392519, 0.07684735953807831, -0.00042873367783613503, 0.009202181361615658, -0.004064043052494526, -0.002216750755906105, -0.034767184406518936, -0.004601090680807829, 0.012074054218828678, 0.028718728572130203, 0.009720184840261936, -0.01222640834748745, -0.010992340743541718, 0.021146735176444054, 0.005416184663772583, -0.021893270313739777, 0.020202141255140305, 0.022731216624379158, 0.026067769154906273, 0.006059880368411541, 0.01779494807124138, -0.0006522655603475869, -0.016499938443303108, -0.01689605787396431, 0.017414061352610588, -0.0003699345688801259, 0.036168839782476425, -0.018480539321899414, -0.0031403969042003155, 0.007358698174357414, 0.025138409808278084, -0.004254485480487347, -0.018312951549887657, 0.008112850598990917, -0.005705657415091991, 0.0021272427402436733, 0.009301211684942245, -0.0017939683748409152, 0.012812971137464046, -0.002801409224048257, -0.005785643123090267, 0.002765225013718009, 0.024117637425661087, 0.01781018264591694, 0.02219797857105732, -0.00011611040827119723, -0.007899555377662182, -0.00976589135825634, 0.0013445240911096334, 0.007636744063347578, -0.009682096540927887, -0.019790785387158394, -0.011319901794195175, -0.0020986762829124928, 0.013148150406777859, -0.0001249778870260343, -0.008966033346951008, 0.02533647045493126, 0.0049553136341273785, 0.010946635156869888, -0.006269366946071386, -0.025153646245598793, 0.015890521928668022, -0.006821650546044111, -0.02568688429892063, -0.022456979379057884, -0.015174458734691143, -0.003060410963371396, -0.015380136668682098, 0.0012359718093648553, -0.007061608135700226, -0.022502684965729713, 0.013376681134104729, 0.0005165752954781055, -0.026555301621556282, -0.0019406090723350644, 0.009202181361615658, -0.017627358436584473, 0.026524830609560013, 0.02492511458694935, 0.0035879367496818304, 0.014526953920722008, 0.010146776214241982, -0.021923741325736046, -0.011175165884196758, 0.003658400382846594, -0.0007465346134267747, 0.030790744349360466, -0.025046996772289276, -0.0030623155180364847, -0.03104974515736103, -0.026951422914862633, -0.003395589767023921, 0.003877409268170595, 0.01995837315917015, 0.008097615092992783, 0.0010560036171227694, -0.017977772280573845, -0.0046163261868059635, 0.02215227112174034, -0.004962931387126446, 0.003949777688831091, 0.015692461282014847, -0.008501353673636913, 0.0046429880894720554, 0.0148697504773736, -0.010154394432902336, 0.02033925987780094, 0.0049515049904584885, -0.02836831472814083, 0.008577530272305012, 0.00555711193010211, -0.015151605010032654, -0.004509678576141596, 0.00021829472098033875, -0.024681348353624344, 0.0121883200481534, 0.022380802780389786, -0.011281813494861126, -0.02568688429892063, -0.02215227112174034, 0.0015711506130173802, 0.006242705043405294, -0.011616992764174938, -0.016713233664631844, 0.007076843176037073, -0.0005813257303088903, -0.0035250906366854906, -0.012371145188808441, -0.005629480350762606, -0.00021674737217836082, 0.006467427127063274, 0.008615618571639061, 0.011182783171534538, 0.006398867815732956, 0.03272563964128494, -0.0001990124146686867, -0.013689006678760052, -0.018495775759220123, 0.014359364286065102, -0.00890509132295847, 0.011594139039516449, -0.004985784646123648, 0.004132602363824844, 0.021969446912407875, 0.00025162214296869934, 0.017216002568602562, -0.007442492991685867, -0.014999250881373882, -0.006577883847057819, -0.013727094978094101, 0.020171670243144035, -0.03717437759041786, 0.0018501488957554102, -0.015601049177348614, -0.004136411007493734, 0.007914789952337742, -0.03066886030137539, 0.0425981767475605, -0.02352345734834671, -0.0014968781033530831, 0.004460163414478302, 0.001140750595368445, -0.001955844461917877, -0.0038869313430041075, 0.0012712037423625588, 0.012706323526799679, 0.018053948879241943, 0.026860009878873825, 0.00908791646361351, -0.003618407528847456, -0.002167235594242811, 0.006684531923383474, 0.015646755695343018, -0.02657053805887699, 0.006665487308055162, 0.005214315839111805, 0.007648170925676823, -0.00243956851772964, -0.024620406329631805, 0.01397847943007946, 0.0005394283798523247, 0.00024924162426032126, 0.021222911775112152, 0.0040792785584926605, -0.009933480992913246, -0.015844816341996193, 0.0026319152675569057, -0.004220205824822187, -0.0007384407799690962, 0.0019234692445024848, 0.005001020152121782, 0.017200766131281853, 0.007922408170998096, 0.0041211755014956, -0.011647463776171207, -0.003679349087178707, 0.02615918219089508, 0.02093343995511532, 0.018312951549887657, -0.017383592203259468, 0.005602818448096514, 0.0082423510029912, 0.008211880922317505, 0.013719477690756321, -0.00931644719094038, -0.006456000730395317, -0.019303251057863235, -0.021009616553783417, -0.015212547034025192, -0.00243956851772964, -0.041135579347610474, -0.042049702256917953, 0.008691796101629734, -0.005812305025756359, -0.00822711642831564, -0.0020605877507478, 0.010390542447566986, 0.005915143992751837, 0.019303251057863235, -0.0013416673755273223, 0.014496482908725739, 0.007149211596697569, 0.01773400604724884, -0.012363526970148087, -0.018130125477910042, 0.006596927996724844, 0.004273529630154371, 0.006829267833381891, 0.014732631854712963, 0.01040577795356512, 0.012249262072145939, -0.0178254172205925, -0.007678641472011805, 0.022944511845707893, -0.002353869378566742, 0.022106565535068512, 0.012203555554151535, 0.0006755947833880782, 0.03153727948665619, -0.01642376184463501, -0.0014968781033530831, -0.005214315839111805, -0.0008722266647964716, -0.015342047438025475, 0.0028528287075459957, -0.014412688091397285, 0.0022872143890708685, 0.009026974439620972, 0.0028585419058799744, -2.6542922569205984e-05, -0.0019482268253341317, -0.006695958320051432, 0.0014730726834386587, 0.012553969398140907, 0.012089289724826813, 0.0028471152763813734, -0.005618053954094648, 0.018434833735227585, 0.00631507346406579, -0.02620488777756691, -5.802544910693541e-05, 0.015677226707339287, -0.02132955938577652, -0.016317114233970642, 0.0021748533472418785, 0.02305115945637226, -0.02838355116546154, -0.005111476872116327, -0.0005456177750602365, 0.007046372629702091, 0.018053948879241943, 0.007632935419678688, 0.009476418606936932, 0.0024357596412301064, -0.007332036271691322, 0.00033565491321496665, 0.013178621418774128, -0.019227074459195137, 0.008044291287660599, 0.018450070172548294, 0.0009331682231277227, 0.011182783171534538, 0.01989743299782276, -0.009263123385608196, 0.005180036183446646, -0.025046996772289276, 0.006429338827729225, 0.01378041971474886, -0.011129459366202354, 0.017124589532613754, 0.0007789098308421671, -0.01902901381254196, 0.008745119906961918, -0.0036755402106791735, -0.014504101127386093, 0.01686558872461319, -0.00842517614364624, 0.002603349043056369, 0.01905948482453823, -0.010222953744232655, -0.0002751894062384963, 0.005519023630768061, -0.010268659330904484, -0.02436140552163124, 0.008623236790299416, 0.015022104606032372, 0.012035965919494629, 0.0033917808905243874, -0.0024509949143975973, 0.008265204727649689, 0.0008317576139234006, -0.0095068896189332, -0.023645341396331787, -0.002241508336737752, -0.02533647045493126, -0.015014486387372017, 0.014770720154047012, 0.013810889795422554, -0.02836831472814083, -0.00017782568465918303, 0.0025233631022274494, 0.0023081630934029818, -0.018434833735227585, 0.01947084069252014, -0.0001667562173679471, 0.007922408170998096, 0.01513636950403452, 0.015258253552019596, 0.003926924429833889, -0.026296300813555717, 0.016149524599313736, 0.004921033978462219, -0.009781126864254475, -0.006692149676382542, -0.004608708433806896, 0.01692652888596058, -0.006311264354735613, -0.011274196207523346, -0.014587895944714546, 0.015014486387372017, -0.006368397269397974, -0.009971569292247295, -0.0031689631287008524, -0.003867887193337083, 0.01528872363269329, 0.005294301547110081, 0.016667528077960014, -0.014717396348714828, 0.024574700742959976, 0.008257586508989334, 0.004962931387126446, -0.008089997805655003, 0.03979486599564552, 0.013742330484092236, -0.016317114233970642, -0.011914082802832127, 0.010946635156869888, 0.01825200952589512, -0.018023477867245674, 0.010611455887556076, -0.010893311351537704, 0.02257886342704296, -0.007023519370704889, -0.0027080923318862915, 0.007556758355349302, -0.0002951858623418957, -0.00957544893026352, 0.014846897684037685, -0.03141539543867111, 0.00542761106044054, -0.008448028936982155, -0.0231121014803648, -0.012203555554151535, -0.004719165153801441, -0.01643899641931057, 0.005309537053108215, -0.010992340743541718, -0.013696624897420406, -0.01040577795356512, -0.022091330960392952, 0.03997768834233284, -0.007008283864706755, -0.012066436931490898, -0.018830955028533936, 0.007945260964334011, 0.019181368872523308, 0.024666111916303635, 0.0058808643370866776, 0.01334621012210846, -0.0060941600240767, -0.016728470101952553, 0.0034260605461895466, -0.012805353850126266, 0.00478391582146287, -0.0044144573621451855, 0.023630104959011078, -0.020232610404491425, 0.017962535843253136, -0.0025614516343921423, 0.0016120957443490624, 0.01240923348814249, -0.0035403261426836252, 0.022350331768393517, 0.0031899118330329657, 0.00845564715564251, -0.014366982504725456, -0.0015635329764336348, 0.016088582575321198, 0.019348958507180214, -0.0003946920915041119, -0.0017425488913431764, 0.007636744063347578, -0.022868335247039795, -0.0010721912840381265, 0.00949927233159542, -0.02222844772040844, 0.017170295119285583, -0.019333722069859505, -5.51092998648528e-05, -0.002911865944042802, 0.02090296894311905, -0.009438330307602882, 0.013818508014082909, 0.0021272427402436733, 0.011875994503498077, -0.017109354957938194, 0.012744411826133728, 0.0069701955653727055, -0.011251342482864857, 0.011472255922853947, -0.017642593011260033, -0.012325438670814037, 0.001961557660251856, -0.005629480350762606, -0.02923673205077648, -0.019653666764497757, 0.033578820526599884, -0.024269992485642433, -0.00261858431622386, 0.025153646245598793, -0.013810889795422554, -0.01267585251480341, -0.012066436931490898, 0.00689020985737443, 0.008851767517626286, 0.008021438494324684, 0.00954497791826725, 0.020979145541787148, -0.009194564074277878, -0.016179995611310005, -0.003633642802014947, 0.01356712356209755, 0.0005294301663525403, 0.003980248235166073, -0.00909553375095129, -0.009186945855617523, -0.005397140514105558, 0.020765850320458412, 0.026936186477541924, -0.04296382889151573, -0.0069435336627066135, -0.002241508336737752, -0.003039462259039283, 0.002091058762744069, -0.017657829448580742, 0.005720892921090126, 0.0002673336712177843, -0.006924489513039589, -0.003037557937204838, -0.003984056878834963, -0.012599675916135311, 0.010230571031570435, 0.009301211684942245, -0.006494089029729366, 0.006787370890378952, 0.018069185316562653, 0.0002518602123018354, 0.019257545471191406, 0.0031308745965361595, -0.003422251669690013, -0.011731257662177086, -0.0006870212964713573, -0.004288765136152506, -6.46314219920896e-05, 0.02753036841750145, -0.01910519227385521, 0.018983308225870132, 0.012592057697474957, 0.011990259401500225, 0.009788744151592255, -0.0005684708594344556, 0.002652863971889019, 0.015387753956019878, -0.010908546857535839, 0.01825200952589512, 0.00248908344656229, -0.011898847296833992, 0.013231945224106312, 0.0008512779604643583, 0.009438330307602882, 0.0021862799767404795, -0.00564471585676074, 0.0034622447565197945, 0.01151034515351057, 0.021070558577775955, 0.01083998754620552, -0.000576088554225862, 0.02529076486825943, 0.03109545074403286, 0.010939016938209534, 0.017033176496624947, 0.012074054218828678, -0.001941561233252287, 0.012241643853485584, 0.0007827186491340399, 0.031720101833343506, 3.8951442547841e-05, 0.018968073651194572, 0.005160991568118334, 0.008729884400963783, 0.0032546622678637505, -0.012835824862122536, -0.003544135019183159, 0.006379823666065931, -0.006715002469718456, -0.0012731080641970038, 0.024163344874978065, -0.0019320391584187746, 0.012622528709471226, -0.00041802128544077277, -0.024193815886974335, 0.01083998754620552, -0.007716730237007141, 0.00520288897678256, -0.002650959650054574, 0.007194917649030685, 0.012355909682810307, 0.010535279288887978, 0.040221456438302994, 3.198838749085553e-05, 0.022472215816378593, -0.015844816341996193, 0.013551888056099415, -0.016697999089956284, -0.011540815234184265, -0.009887774474918842, -0.0058770556934177876, 0.008036673069000244, -0.022898806259036064, 0.003923115320503712, -0.005637098103761673, 0.0008269965765066445, 0.014039421454071999, 0.0029956605285406113, 0.020628731697797775, -0.019379429519176483, -0.007019710727035999, -0.0006803558208048344, 0.0008269965765066445, 0.028215961530804634, -0.008112850598990917, -0.01779494807124138, -0.008981267921626568, 0.004833430517464876, -0.004818195477128029, 0.0009326921426691115, 0.016119053587317467, -0.015387753956019878, 0.005724701564759016, 0.015083045698702335, 0.0039726304821670055, -0.014062274247407913, -0.0065512219443917274, 0.012622528709471226, -0.0015406798338517547, 0.007092078682035208, -0.017947301268577576, 0.001642566523514688, 0.007415831089019775, -0.0001415225851815194, 0.009438330307602882, -0.014001332223415375, 0.0022472215350717306, -0.005081005860120058, 0.013056737370789051, 0.023340633139014244, -0.009941098280251026, 0.004323044791817665, 0.005945615004748106, -0.019211839884519577, 0.025504060089588165, -0.009415477514266968, -0.014351746998727322, 0.008760355412960052, 0.011129459366202354, -0.010131540708243847, 0.003248949069529772, 0.003953586332499981, -0.024071931838989258, -0.013917538337409496, -0.010222953744232655, -0.008166174404323101, -0.004585855174809694, 0.006962577812373638, 0.0016692285425961018, -0.003938350826501846, -8.825819531921297e-05, -0.014504101127386093, 0.007263476960361004, -0.015768639743328094, 0.0020872498862445354, -0.0017454054905101657, 0.018571952357888222, -0.007461537141352892, 0.0014844993129372597, -0.010116305202245712, -0.000379218632588163, 0.013270033523440361, 0.008508970960974693, -0.027347542345523834, -0.004776298068463802, -0.00037612393498420715, -0.0057780253700912, 0.01959272474050522, -0.016164759173989296, -0.012553969398140907, 0.01643899641931057, 0.015037340112030506, 0.02268551103770733, -0.006665487308055162, 0.0014187966007739305, 0.004738209303468466, -0.015768639743328094, -0.02797219529747963, 0.005286683794111013, -2.4504593966412358e-05, -0.026098240166902542, 0.008752737194299698, 0.003060410963371396, -0.04268959164619446, -0.004589664284139872, -0.00934691820293665, 0.0024186198133975267, 0.004235441330820322, 0.018511010333895683, -0.003961204085499048, 0.008531823754310608, -0.012614911422133446, 0.0034889066591858864, -0.005937997251749039, -0.015166840516030788, 0.02618965320289135, -0.019806019961833954, 0.006288411561399698, 0.011182783171534538, -0.00999442208558321, 0.008661325089633465, -0.04467019438743591, 0.0038602694403380156, -0.007320609875023365, -0.014793573878705502, -0.030394623056054115, -0.0021386693697422743, -0.0009241222287528217, 0.004863901529461145, -0.018861426040530205, -0.0038850270211696625, 0.004452545661479235, 0.0044144573621451855, -0.020643966272473335, -0.0026852393057197332, 0.01823677308857441, -0.001660658628679812, 0.003553657094016671, 0.008798443712294102, 0.00845564715564251, -0.010261042043566704, -0.028063606470823288, 0.009522125124931335, -0.023843400180339813, -0.011167548596858978, 0.010870457626879215, 0.008387087844312191, -0.0021253384184092283, -1.4863441720081028e-05, -0.0018130126409232616, -0.006726429332047701, -0.039703451097011566, -0.00979636237025261, -0.003123257076367736, -0.02129908837378025, 0.004010719247162342, 0.0070844609290361404, -0.018891895189881325, 0.00956783164292574, 0.012241643853485584, -0.00980397965759039, -0.011853140778839588, -0.021375266835093498, -0.01950131170451641, -0.017383592203259468, -0.007492008153349161, 0.009103151969611645, -0.011792199686169624, 0.008729884400963783, -0.00909553375095129, 0.02701236493885517, 0.0012274018954485655, -0.0015578196616843343, -0.004669649992138147, 0.006935915909707546, -0.0012407328467816114, -0.001325479825027287, -0.017109354957938194, -0.014747867360711098, -0.014184157364070415, 0.022015152499079704, -0.009339299984276295, -0.02356916293501854, 0.00344700925052166, 0.003869791515171528, -0.007175873499363661, -0.00689020985737443, 0.004681076854467392, 0.007050181273370981, -0.000641315127722919, 0.003521281760185957, 0.014968780800700188, -0.0046163261868059635, 0.008280440233647823, 0.019882196560502052, 0.0018825241131708026, -0.0013873736606910825, 0.00864608958363533, -0.013430004939436913, -0.0011893133632838726, 0.013369063846766949, 0.001039816066622734, 0.006535986438393593, 0.015456313267350197, -0.019623195752501488, -0.03906356543302536, -0.0001667562173679471, -0.0021348604932427406, 0.015722932294011116, -0.015616284683346748, -0.01593622751533985, 0.01689605787396431, -0.015395372174680233, 0.0034051118418574333, -0.006600737106055021, -0.007126358337700367, 0.012035965919494629, -0.008988886140286922, 0.0072825211100280285, -0.008394705131649971, 0.021497149020433426, -0.0024567083455622196, -0.0036488783080130816, -0.0022586481645703316, 0.013666153885424137, 0.0173531211912632, -0.01915089786052704, 0.008402323350310326, -0.00819664541631937, 0.00743868388235569, -0.0074767726473510265, -0.010131540708243847, 0.0016016213921830058, 0.024071931838989258, 0.017551179975271225, -0.007274903357028961, -0.024193815886974335, -0.030943097546696663, -0.013986097648739815, -0.02529076486825943, 0.005069579463452101, -0.004799150861799717, -0.0004489682032726705, 0.015456313267350197, 0.006924489513039589, -0.014054656960070133, -0.033883530646562576, -0.01286629494279623, -0.018922366201877594, 0.012645382434129715, 0.04134887456893921, 0.007575802505016327, 0.0029899473302066326, 0.020567789673805237, 0.007259668316692114, -0.0030280358623713255, -0.019668901339173317, 0.001176934689283371, 0.024650877341628075, -0.00033993987017311156, 0.007469154894351959, -0.009773509576916695, -0.0108476048335433, -0.006882592104375362, 0.0037993278820067644, 0.013041502796113491, -0.009004121646285057, -0.003803136758506298, -0.008950797840952873, 0.008493735454976559, -0.014435541816055775, 0.024727053940296173, 0.02391957864165306, -0.009019357152283192, 0.01593622751533985, -0.0015959081938490272, -0.012074054218828678, 0.011060900054872036, 0.005359051749110222, -0.0095068896189332, 0.004281147383153439, -0.007187299896031618, -0.015151605010032654, 0.012576823122799397, -0.018084419891238213, 0.0021348604932427406, 0.015425842255353928, -0.011182783171534538, -0.02532123401761055, 0.009186945855617523, -0.013231945224106312, -0.009011738933622837, 0.00654360419139266, -0.008143321610987186, -0.00698923971503973, 0.002591922413557768, -0.011312284506857395, 0.010268659330904484, -0.014633601531386375, -9.379292896483094e-05, 0.006996857468038797, -0.003467957954853773, 0.009697332046926022, 0.0030642198398709297, 0.012500645592808723, -0.025869708508253098, 0.000747010693885386, 0.02134479582309723, -0.003976439591497183, 0.011799816973507404, -0.01219593733549118, 0.010497190989553928, -0.0031746765598654747, -0.022746453061699867, 0.00797573197633028, 0.015166840516030788, -0.0044182660058140755, -0.005279066041111946, -0.0046429880894720554, 0.00891270861029625, -0.0023233985994011164, -0.0024052888620644808, 0.01375756599009037, -0.013071972876787186, 0.010146776214241982, 0.024071931838989258, 0.0005061009433120489, -0.0023614868987351656, 0.0032527579460293055, -0.014222245663404465, -0.008798443712294102, 0.011883611790835857, -0.014656455256044865, -0.015463931486010551, -0.0019225170835852623, -0.01419939287006855, -0.005758981220424175, 0.011632228270173073, 0.0008655611891299486, 0.0191661324352026, 0.008707030676305294, 0.007728156633675098, -0.016728470101952553, -0.00411355821415782, -0.005667568650096655, 0.015197311528027058, 0.004296382889151573, -0.01288914866745472, -0.006753091234713793, -0.008166174404323101, 0.006692149676382542, -0.007907172664999962, 0.007678641472011805, 0.032207634299993515, 0.021101029589772224, -0.010268659330904484, 0.01689605787396431, -0.007328227628022432, -0.01047433726489544, -0.019684135913848877, 0.020750615745782852, -0.005046726204454899, -0.0004618230741471052, -0.012386379763484001, 0.01243970450013876, -0.015083045698702335, -0.012043584138154984, -0.006707384716719389, -0.010961870662868023, -0.0024967011995613575, -0.02925196848809719, 0.0031670588068664074, -0.0026204888708889484, 0.00756818475201726, -0.01379565428942442, -0.009522125124931335, 0.008760355412960052, -0.0040830872021615505, 0.012074054218828678, 0.007549140602350235, 0.009636390954256058, -0.01025342382490635, -0.012089289724826813, -0.013887067325413227, -0.010733339004218578, 0.02931291051208973, 0.014664072543382645, 0.0068635474890470505, 0.012378762476146221, 0.006433147471398115, -0.021878033876419067, -0.0010493381414562464, -0.000798906316049397, -0.0029442410450428724, 0.008501353673636913, -0.007202535402029753, 0.000728918646927923, 0.014511718414723873, -0.017612121999263763, -0.006951151415705681, -0.00042920978739857674, 0.006398867815732956, 0.007869084365665913, 0.022106565535068512, 0.021908504888415337, -0.002058683428913355, -0.0018491967348381877, -0.010504808276891708, -0.0011045665014535189, -0.007792907301336527, 0.005640906747430563, -0.009933480992913246, 0.023264456540346146, 0.012013113126158714, 0.020080257207155228, -0.01129704900085926, 0.008387087844312191, 0.015212547034025192, 0.006257940549403429, 0.0032032427843660116, 0.0021158161107450724, -0.012576823122799397, -0.02388910762965679, -0.01602764055132866, 0.0012559682363644242, -0.0034184427931904793, 0.010055364109575748, -0.009042209945619106, 0.018404362723231316, -0.015463931486010551, 0.011441785842180252, -0.014740249142050743, -0.0037002977915108204, -0.0005713275168091059, 0.006257940549403429, 0.004673459101468325, -0.008889855816960335, 0.02082679234445095, 0.011403696611523628, 0.02218274213373661, -0.038819801062345505, 0.003456531325355172, -0.005404758267104626, 0.006033218465745449, -0.02081155590713024, -0.012119760736823082, 0.017505474388599396, -4.1689054341986775e-05, 0.005781834479421377, 0.01826724410057068, -0.005416184663772583, 0.011243725195527077, 0.01905948482453823, 0.002294832142069936, -0.022411273792386055, -0.014930691570043564, -0.0026471507735550404, 0.0011493205092847347, 0.0005180035950616002, -0.02356916293501854, 0.02049161307513714, -0.005720892921090126, 0.0020891542080789804, 0.007632935419678688, 0.00886700302362442, 0.009019357152283192, -0.023279691115021706, 0.0016254266956821084, 0.008950797840952873, -0.002344347070902586, 0.0005798974307253957, 0.0015273488825187087, -0.03686966747045517, 0.016271406784653664, -0.0007446301751770079, -0.010984723456203938, -0.036138370633125305, 0.02046114206314087, -0.018130125477910042, 0.026006827130913734, 0.016560880467295647, 0.016576115041971207, 0.01221879106014967, 0.022045623511075974, -0.006844503339380026, 0.02270074561238289, 0.009834450669586658, -0.010718103498220444, 0.010390542447566986, 0.007042563520371914, -0.0044182660058140755, -0.010375307872891426, -0.0062160431407392025, -0.012508263811469078, 0.007556758355349302, 0.005861820187419653, -0.005576156545430422, -0.018465304747223854, -0.009255505166947842, 0.0010150584857910872, -0.00973542034626007, 0.02614394575357437, -0.007644361816346645, 0.012698706239461899, -0.003949777688831091, -0.0028661596588790417, 0.016164759173989296, 0.0095830662176013, -0.026509596034884453, -0.012508263811469078, -0.007621509023010731, -0.01781018264591694, 0.010070599615573883, -0.009430713020265102, -0.007598655764013529, -0.008211880922317505, 0.0031670588068664074, -0.004403030499815941, -0.004829621873795986, 0.016210464760661125, 0.0069435336627066135, 0.014176540076732635, 0.010786662809550762, 0.032238107174634933, -0.0015587718226015568, 0.010101070627570152, -0.0020015507470816374, -0.012371145188808441, 0.010718103498220444, 0.008402323350310326, -0.013826125301420689, 0.01595146395266056, -0.0002418619696982205, 0.010055364109575748, -0.018312951549887657, 0.027164718136191368, 0.0025214587803930044, 0.005058152601122856, -0.008783208206295967, -0.003014704678207636, 0.010763810016214848, 0.005221933126449585, -0.015646755695343018, 0.00600274745374918, 0.0029518587980419397, -0.016667528077960014, -0.005979894660413265, -0.0031632499303668737, -4.4129097659606487e-05, -0.009118386544287205, 0.01178458146750927, -0.007998584769666195, 0.009362153708934784, -0.01951654814183712, 0.01512875221669674, -0.007598655764013529, -0.008821296505630016, 0.031750574707984924, 0.005130521021783352, 0.0010940921492874622, 0.011220872402191162, 0.013666153885424137, -0.0034374871756881475, -0.010382925160229206, -0.010291513055562973, 0.01645423285663128, -0.0014787859981879592, -0.0019786974880844355, 0.016606586053967476, -0.002414810936897993, 0.0035155685618519783, 0.0035098553635179996, -0.005115285515785217, -0.01267585251480341, 0.0010179152013733983, 0.002504318952560425, -0.009148857556283474, 0.001566389575600624, 0.010733339004218578, 0.0031689631287008524, -0.007556758355349302, -0.001802538288757205, 0.021161969751119614, 0.0010655258083716035, -0.013879449106752872, -0.017109354957938194, 0.018404362723231316, -0.0014159400016069412, -0.0008050956530496478, 0.00976589135825634, -0.006715002469718456, -0.014816426672041416, 0.003024226985871792, 0.002180566545575857, 0.00730918301269412, -0.0059037175960838795, 0.021375266835093498, 0.005324772093445063, -0.0023976711090654135, 0.009072680957615376, 0.006383632775396109, -0.00010938540799543262, 0.018526246771216393, -0.0013807081850245595, 0.011357991024851799, -0.008950797840952873, 0.0012369240866973996, 0.005340007599443197, -0.00676451763138175, -0.01907472126185894, -0.0019253736827522516, 0.005206698086112738, 0.012035965919494629, -0.0003775522636715323, -0.014557424932718277, -0.006756899878382683, -0.007431066129356623, -0.007244432810693979, 0.013673771172761917, -0.0005570442881435156, -0.00434208894148469, 0.009407859295606613, -0.015395372174680233, 0.02302069030702114, 0.007191109005361795, 0.0013578550424426794, -0.006657870020717382, -0.0008988886256702244, -0.007621509023010731, 0.011266577988862991, -0.017886359244585037, 0.01534966565668583, 0.005918953102082014, 9.343585406895727e-05, -0.01334621012210846, -0.015875287353992462, 0.00975827407091856, -0.006791179534047842, -0.0038926447741687298, 0.010101070627570152, 0.014275569468736649, -0.010992340743541718, -0.0035269951913505793, -0.0373876728117466, -0.0102153355255723, -0.017947301268577576, -0.013460475951433182, -0.02661624364554882, 0.006482662633061409, 0.000976970070041716, -0.01991266757249832, -0.020171670243144035, 0.02081155590713024, 0.004174499772489071, 0.03647354617714882, -0.0003042318858206272, -0.012401615269482136, 0.0029328144155442715, -0.0020891542080789804, 0.016515173017978668, -0.005084814969450235, 0.010794281028211117, 0.013163385912775993, -0.013384299352765083, -0.017109354957938194, 0.004292573779821396, 0.009979186579585075, -0.005785643123090267, -0.027804605662822723, -0.0009731611935421824, 0.024757524952292442, -0.0014092745259404182, 0.008638471364974976, 0.027256131172180176, -0.012546352110803127, 0.007861466147005558, -0.015006869100034237, -0.004220205824822187, -0.003652687184512615, 0.025001291185617447, 0.0022110373247414827, -0.015387753956019878, 0.031323984265327454, -0.009019357152283192, -0.0023481559474021196, 6.760708492947742e-05, 0.003803136758506298, -0.015037340112030506, 0.005717083811759949, 0.007111122831702232, 0.004227823577821255, -0.006939724553376436, 0.002576687140390277, 0.015768639743328094, -0.009529742412269115, 0.005282875150442123, -0.005309537053108215, -0.004490633960813284, -0.017535945400595665, 0.013414769433438778, 0.012317821383476257, 0.01590575836598873, -0.0006051310338079929, -0.004966740496456623, -0.0010321983136236668, -0.004323044791817665, 0.007065416779369116, 0.019196603447198868, -0.018846189603209496, -0.021024851128458977, -0.0008788921404629946, -0.006139866076409817, -0.006265558302402496, -0.033030346035957336, 0.015585814602673054, -0.015212547034025192, -0.0001791349786799401, 0.0023767224047333, 0.03370070457458496, -0.012569204904139042, -0.006456000730395317, -0.0032527579460293055, 0.021969446912407875, -0.002538598608225584, -0.002018690574914217, -0.003890740219503641, 0.043329477310180664, 0.026265829801559448, 0.004361133091151714, 0.0024967011995613575, 0.011540815234184265, -0.013384299352765083, -0.002289118943735957, -2.0829647837672383e-05, -0.010695250704884529, 0.018800484016537666, -0.00886700302362442, -0.015738168731331825, 0.000657026597764343, -0.030760273337364197, -0.006825459189713001, -0.0005832301685586572, -0.0015740072121843696, 0.004700121004134417, 0.008714648894965649, 0.013582359068095684, -0.0034279651008546352, 0.003231809241697192, 0.019745077937841415, 0.008745119906961918, 0.05271448567509651, 0.007594847120344639, 0.022944511845707893, -0.012386379763484001, 0.004559193272143602, -0.025092704221606255, 0.0006451239460147917, -0.014252716675400734, -0.018983308225870132, -0.012576823122799397, 0.008409940637648106, -0.009407859295606613, 0.029434792697429657, 0.026372477412223816, 0.00025305047165602446, 0.0012207364197820425, 0.006623590365052223, -0.007571993861347437, -0.008044291287660599, 0.0074805812910199165, 0.003862173995003104, 0.011159930378198624, -0.014976398088037968, -0.010946635156869888, 0.018358657136559486, 0.015143987722694874, 0.012127378024160862, -0.012698706239461899, 0.014816426672041416, 0.015692461282014847, 0.02131432481110096, -0.014054656960070133, -0.03068409487605095, 0.017155060544610023, 0.01039816066622734, -6.320310785667971e-05, 0.011906465515494347, 0.02094867452979088, 0.004292573779821396, -0.016256172209978104, -0.022990219295024872, -0.004144028760492802, 0.004128793254494667, 0.000731299223843962, -0.0065474133007228374, -0.0007455823943018913, 0.012294967658817768, -0.004239249974489212, -0.012812971137464046, 0.006086542271077633, 0.005541876889765263, -0.014047038741409779, -0.040587104856967926, -0.016499938443303108, -0.0019844109192490578, 0.018830955028533936, 0.007663406431674957, -0.004178308416157961, -0.007937643676996231, -0.014039421454071999, -0.00976589135825634, 0.0009693523170426488, 0.00743868388235569, 0.010946635156869888, -0.022106565535068512, 0.013894684612751007, -0.006779753137379885, 0.01991266757249832, 0.009423094801604748, -0.009004121646285057, 0.02538217604160309, -0.011426550336182117, -0.012249262072145939, -0.03111068718135357, -0.015692461282014847, -0.02529076486825943, -0.03814944252371788, -0.0011997877154499292, -0.007667215075343847, 0.013848979026079178, -0.0003754097851924598, -0.013719477690756321, -0.014488865621387959, -0.011137077584862709, -0.02088773250579834, 0.006025600712746382, -0.0027956957928836346, 0.009621155448257923, 0.012995796278119087, -0.007419639732688665, -0.01378041971474886, -0.017535945400595665, -0.014846897684037685, 0.0005080053815618157, 0.024513758718967438, -0.012302585877478123, -0.0059951297007501125, -0.01330050453543663, -0.0006813080399297178, 0.013483328744769096, 0.012691088020801544, 0.012599675916135311, -0.01353665255010128, 0.0041211755014956, 0.0007051133434288204, -0.015677226707339287, -0.0204306710511446, -0.0012102620676159859, -0.005244786385446787, 0.020141199231147766, -0.0004984832485206425, 0.007651979569345713, -0.0012121665058657527, 0.021070558577775955, 0.0033251261338591576, 0.019699372351169586, 0.011685552075505257, 0.016347583383321762, 0.006920680403709412, 0.01997360959649086, -0.011030429974198341, 0.0006084637716412544, 0.05015493556857109, 0.011944553814828396, -0.006063689012080431, 0.011396079324185848, 0.012790118344128132, 0.025016527622938156, -0.02091820351779461, -0.0005070531624369323, 0.014054656960070133, -0.023325396701693535, -0.0034889066591858864, 0.025488823652267456, 0.0006979717873036861, 0.005637098103761673, 0.013186238706111908, -0.0005775168538093567, 0.01020771823823452, 0.0032127650920301676, -0.013727094978094101, 0.03403588384389877, 0.025184115394949913, -0.005282875150442123, -0.02263980358839035, 0.005092432256788015, -0.03552895411849022, 0.007297756616026163, 0.019760314375162125, 0.00890509132295847, -0.013765184208750725, -0.016743704676628113, -0.023447280749678612, 0.015524872578680515, -0.011380843818187714, 0.006909254007041454, -0.018312951549887657, 0.011807435192167759, -0.01595146395266056, -0.0014435541816055775, -0.010786662809550762, 0.0007265381282195449, 0.01817583292722702, 0.0063264998607337475, -0.0022281771525740623, -0.010367689654231071, -0.009925862774252892, 0.020095491781830788, -0.007876701653003693, -0.023645341396331787, -0.003818372031673789, -0.0046163261868059635, 0.009057445451617241, -0.0018501488957554102, -0.0010750478832051158, 0.010756192728877068, -0.006756899878382683, -0.0039726304821670055, -0.011936935596168041, -0.013209091499447823, 0.020674437284469604, 0.007312992122024298, 0.01727694272994995, 0.010009657591581345, 0.0005427611176855862, -0.005138138774782419, -0.017840653657913208, 0.015250635333359241, 0.008402323350310326, -0.0043382802978158, 0.011167548596858978, 0.026981893926858902, -0.02795695886015892, 0.0034774800296872854, -0.012934854254126549, 0.024285227060317993, -0.010352454148232937, 0.0035269951913505793, -0.03069933131337166, -0.017566416412591934, -0.0034032075200229883, 0.006916871760040522, -0.018754776567220688, -0.006775944028049707], "e666b745-fe5b-4470-ba64-7ecd573acbb6": [-0.025543035939335823, -0.013887620531022549, -0.0007921337382867932, 0.020254652947187424, -0.0374830923974514, -0.04149806872010231, 0.025453148409724236, 0.036044891923666, 0.0026029925793409348, 0.03996998071670532, 0.0010543055832386017, 0.022516822442412376, -0.005003738217055798, -0.004588008392602205, 0.027895091101527214, 0.030636660754680634, -0.01893630251288414, 0.019250908866524696, 0.008988751098513603, -0.04008983075618744, 0.05243438482284546, -0.026561761274933815, -0.015146045945584774, 0.039101067930459976, 0.012951293028891087, -0.012479383498430252, -0.004438195843249559, 0.011378261260688305, -0.011685376986861229, -0.014104848727583885, 0.016374507918953896, 0.017962520942091942, 0.02014978416264057, -0.003955050837248564, 0.032239656895399094, -0.022187234833836555, 0.0053857602179050446, 0.018322071060538292, -0.013228446245193481, 0.00014103444118518382, -0.02461419813334942, 0.024793973192572594, -0.004741566255688667, 0.005426958668977022, -0.026426929980516434, 0.028973741456866264, 0.023190978914499283, -0.008209725841879845, -0.0021404463332146406, -0.023295847699046135, 0.002835202030837536, -0.01707862690091133, 0.0007022462086752057, 0.007588004227727652, 0.04089881852269173, -0.024509329348802567, -0.0009868900524452329, 0.057767707854509354, 0.0035580473486334085, -0.06250178813934326, -0.005891377571970224, -0.008756541647017002, 0.032179731875658035, -0.004921341314911842, 0.01880147121846676, -0.001293069333769381, 0.013101105578243732, -0.0055842618457973, -0.04356548190116882, -0.0034550512209534645, -0.0009653544402681291, -0.0028726551681756973, -0.04125836864113808, 0.026307079941034317, 0.019370758906006813, -0.010269648395478725, 0.009003732353448868, 0.01932581514120102, 0.013535561971366405, -0.009932570159435272, -0.0022378244902938604, -0.011543055064976215, 0.019910084083676338, 0.006385758984833956, 0.07580513507127762, 0.03850181773304939, -0.031490594148635864, -0.048988696187734604, -0.038441892713308334, -0.029498085379600525, 0.004101117607206106, 0.010853917337954044, 0.009842682629823685, -0.023325810208916664, -0.02145315334200859, 0.00455430056899786, 0.018337052315473557, 0.0026704082265496254, 0.009101110510528088, -0.031161004677414894, -0.007722835522145033, 0.024494348093867302, -0.02873404137790203, 0.034786466509103775, 0.041707806289196014, 0.0051048616878688335, 0.019400721415877342, 0.004393252078443766, -0.041707806289196014, 0.03751305490732193, 0.007464408874511719, -0.028719060122966766, 0.009048676118254662, -0.015850165858864784, -0.056299544870853424, -0.059205908328294754, -0.04065911844372749, -0.03128085657954216, -0.010771520435810089, -0.05704860761761665, 0.03898121789097786, -0.004588008392602205, 0.013535561971366405, -0.00248126988299191, -0.004239694215357304, 0.00704493373632431, 0.00819474458694458, 0.02530333586037159, 0.0008759350748732686, 0.017902595922350883, -0.011797736398875713, -0.02693629264831543, 0.0037378224078565836, -0.007333322893828154, 0.016838926821947098, 0.019415702670812607, -0.02023967169225216, 0.05240442231297493, -0.028419435024261475, 0.05357296019792557, -0.02898872271180153, -0.03415725380182266, -0.0018867014441639185, -0.010501857846975327, 0.011595489457249641, 0.017513083294034004, -0.03712354227900505, 0.04976772144436836, -0.025782736018300056, 0.015625447034835815, -0.07274895906448364, -0.005501864943653345, 0.0065318262204527855, -0.005441939923912287, 0.012269645929336548, -0.0130936149507761, 0.004524338059127331, 0.017228439450263977, 0.006363287102431059, 0.03382766619324684, 0.011760283261537552, -0.051116034388542175, -0.007071150932461023, -0.003985013347119093, 0.0303969606757164, 0.032239656895399094, 0.05540066957473755, 0.033318303525447845, -0.050037384033203125, 0.016239678487181664, 0.005719093140214682, -0.012194739654660225, 0.018022445961833, 0.01688387058675289, -0.005325835198163986, -0.00041947507997974753, 0.03469657897949219, 0.022352028638124466, 0.03739320486783981, -0.008801485411822796, -0.019640421494841576, 0.01769285835325718, -0.013999979943037033, -0.002812730148434639, 0.011310845613479614, 0.04074900597333908, 0.014629192650318146, 0.041647881269454956, 0.007352049462497234, 0.002250933088362217, -0.005906358826905489, -0.01968536525964737, -0.011176014319062233, 0.03277897834777832, -0.03454676643013954, -0.029243404045701027, -0.013685373589396477, -0.002102993195876479, -0.007220963481813669, 0.023235922679305077, 0.003541193436831236, -0.06109354645013809, -0.040569230914115906, 0.04326585680246353, -0.03469657897949219, 0.0116554144769907, 0.0005599242867901921, -0.043895069509744644, 0.014816458337008953, -0.022906335070729256, 0.03319845348596573, -0.03721342980861664, -0.015138555318117142, -0.0057415650226175785, -0.0010440059704706073, -0.0012228447012603283, -0.0008141374564729631, 0.05051678419113159, -0.004726585000753403, -0.03490631654858589, -0.032659128308296204, 0.024014947935938835, 0.0035543020348995924, -0.04731079563498497, -0.0756852850317955, -0.0019166639540344477, -0.020284615457057953, 0.039490580558776855, -0.049288321286439896, -0.015310839749872684, 0.02079397812485695, 0.003985013347119093, -0.01932581514120102, -0.028509322553873062, -0.001495316275395453, 0.026127304881811142, 0.047910045832395554, 0.005509355571120977, -0.014014961197972298, -0.014659155160188675, 0.025917567312717438, 0.03643440455198288, 0.0065842606127262115, -0.007767779286950827, 0.029722804203629494, 0.020329559221863747, -0.02997748553752899, 0.056629132479429245, 0.029962504282593727, -0.00222846120595932, -0.013048671185970306, 0.0081123486161232, -0.014307095669209957, -0.01962544023990631, -0.00992507953196764, 0.04593252018094063, 0.023235922679305077, -0.02710108645260334, 0.011333317495882511, 0.0023726557847112417, 0.01838199608027935, 0.013513090088963509, -0.009385754354298115, -0.01280148047953844, 0.04143814370036125, -0.020224690437316895, 0.01564042828977108, -0.030247148126363754, 0.014846420846879482, 0.017812708392739296, 0.0012087997747585177, 0.014883873984217644, -0.0139924893155694, -0.005183513276278973, 0.024149779230356216, 0.003149808384478092, 0.0025711574126034975, -0.0102172140032053, 0.032958753407001495, 0.011805227026343346, -0.029468122869729996, 0.017977502197027206, 0.0036067364271730185, 0.026831423863768578, 0.038441892713308334, -0.013715336099267006, -0.01289885863661766, -0.005101116374135017, -0.04482390731573105, -0.005865160375833511, -0.01100372988730669, -0.010898861102759838, 0.023745285347104073, 0.022876372560858727, 0.025018692016601562, 0.030112316831946373, -0.000633894233033061, -0.0044157239608466625, -0.020449409261345863, 0.025018692016601562, -0.0029475614428520203, -0.023265885189175606, 0.005048681981861591, -0.006524335592985153, 0.020464390516281128, -0.027056142687797546, 0.02873404137790203, -0.015925072133541107, -0.028883853927254677, 0.043835144490003586, 0.03616474196314812, -0.02034454047679901, -0.007168529089540243, 5.506780507857911e-05, -0.0008164782775565982, 0.01483893021941185, 0.017962520942091942, -0.01841195859014988, 0.0001712310331640765, -0.01893630251288414, 0.020194727927446365, 0.012119833379983902, -0.06765533238649368, 0.021033678203821182, 0.029947523027658463, -0.06220215931534767, 0.011228448711335659, 0.013647920452058315, -0.05459168180823326, -0.02148311585187912, -0.030741529539227486, -0.011700358241796494, -0.03418721631169319, 0.012052417732775211, -0.024659141898155212, -0.04722090810537338, -0.04737072065472603, -0.04176773130893707, 0.014396983198821545, -0.015041177161037922, -0.016104847192764282, -0.01253930851817131, 0.03763290494680405, 0.0031760255806148052, 0.01599997840821743, -0.0013258408289402723, 0.0159700158983469, 0.01769285835325718, -0.02262169122695923, -0.0015514959814026952, 0.0008815530454739928, -0.005704111885279417, 0.006895121186971664, 0.0016179753001779318, 0.024988729506731033, -0.013805223628878593, -0.01441196445375681, 0.015018705278635025, -0.005988755729049444, 0.011378261260688305, -0.008921335451304913, -0.015183499082922935, -0.01841195859014988, -0.009393244981765747, -0.01583518460392952, -0.009183507412672043, 0.028029922395944595, -0.0049513038247823715, 0.01025466714054346, 0.01477151457220316, -0.025767754763364792, 0.012262155301868916, 0.024299591779708862, 0.022651653736829758, -0.022636672481894493, -0.03196999430656433, 0.034007441252470016, 0.005411977414041758, 0.00016631530888844281, 0.015790240839123726, 0.027445653453469276, -0.0029082356486469507, -0.030501829460263252, -0.00045177838183008134, 0.03140070661902428, 0.0382021926343441, 0.01244193036109209, -0.0022153526078909636, -0.02106364071369171, -0.02680146135389805, -0.021108584478497505, 0.020419446751475334, -0.03352804109454155, -0.012516836635768414, -0.02660670503973961, 0.012284627184271812, -0.011041183024644852, -0.017977502197027206, 0.020029934123158455, -0.04557297006249428, 0.012786499224603176, -0.0017837053164839745, 0.0042097317054867744, -0.004131080117076635, 0.021722815930843353, -0.04946809634566307, 0.006007482297718525, -0.012119833379983902, 0.02298124134540558, -0.015063649043440819, 0.010921332985162735, 0.007363285403698683, 0.003514976240694523, 0.03134078159928322, 0.04263664409518242, -0.0003190538554918021, -0.0011310845147818327, 0.047520533204078674, -0.07460663467645645, 0.005865160375833511, 0.012089870870113373, 0.045692820101976395, 0.0011825825786218047, 0.02239697240293026, 0.004734075628221035, 0.02488386072218418, 0.017048664391040802, -0.009333319962024689, -0.016928814351558685, -0.0012780880788341165, 0.008704107254743576, 0.050936259329319, -0.004220967646688223, -0.0012752790935337543, -0.014239680022001266, -0.004936322569847107, 2.0906454665237106e-05, 0.005022464785724878, 0.01035204529762268, 0.01038200780749321, 0.018831433728337288, -0.0025730300694704056, -0.026951273903250694, 0.016509339213371277, -0.037333279848098755, -0.03493627905845642, -0.05063663423061371, 0.003876399016007781, -0.0038951255846768618, -0.022022441029548645, -0.01877150870859623, 0.02527337335050106, -0.0502171590924263, 0.013707845471799374, 0.004011230543255806, 0.017752783372998238, -0.016179753467440605, -0.006265908945351839, 0.010696614161133766, -0.02569284848868847, -0.04260668158531189, -0.013602976687252522, 0.03313852846622467, 0.0026029925793409348, 0.016629189252853394, -0.0346066914498806, 0.016793983057141304, 0.014531814493238926, 0.01064417976886034, -0.010973767377436161, -0.007041188422590494, 0.013153539970517159, -0.014726570807397366, 0.008134820498526096, -0.010599236004054546, 0.00633332459256053, -0.0014616084517911077, -0.0144793801009655, 0.02552805468440056, -0.018202221021056175, -0.02785014733672142, -0.0459025576710701, -0.023760266602039337, 0.00801497045904398, 0.008127329871058464, -0.001342694740742445, -0.009550548158586025, -0.007827704772353172, -0.01113107055425644, -0.014164773747324944, 0.04593252018094063, -0.009393244981765747, -0.0025449402164667845, 0.0038314552512019873, 0.014344548806548119, -0.030741529539227486, -0.01444941759109497, -0.017902595922350883, -0.042456869035959244, -0.03790256753563881, 0.0331684909760952, -0.014269642531871796, 0.005344561766833067, 0.018456902354955673, -0.015310839749872684, 0.010179760865867138, -0.030606698244810104, -0.0015411963686347008, -0.006011227611452341, -0.0002916662488132715, -0.024898841977119446, 0.0415879562497139, -0.024868879467248917, 0.0008684444474056363, 0.0016563647659495473, 0.02050933428108692, -0.019700346514582634, -0.008861410431563854, 0.04916847124695778, -0.017902595922350883, -0.005902613513171673, -0.019565515220165253, -0.02468910440802574, 0.007602985482662916, -0.03859170526266098, -0.033288341015577316, -0.00010475172894075513, -0.013850167393684387, 0.03448684141039848, -0.012142305262386799, 0.004674150608479977, 0.018831433728337288, -0.005149805452674627, 0.012629196047782898, 0.002177899470552802, -0.04032953083515167, 0.006808978971093893, 0.014494361355900764, 0.01549061480909586, 0.014202226884663105, -0.030127298086881638, 0.02389509789645672, -0.011842680163681507, -0.014681627042591572, 0.02125839702785015, 0.03598496690392494, -0.0387115553021431, 0.0173033457249403, 0.0018192857969552279, 0.0047490568831563, -0.02056925930082798, 0.028059884905815125, -0.02480895444750786, -0.015250914730131626, 0.003413852769881487, -0.03817223012447357, 0.012164777144789696, -0.02438947930932045, -0.01680896431207657, -0.012943802401423454, -0.0015299604274332523, 0.007037443108856678, 0.016269640997052193, -0.009086129255592823, -0.01916102133691311, 0.0047715287655591965, -0.025587979704141617, 0.018142296001315117, -0.01752806454896927, 0.017947539687156677, 0.0261872299015522, 0.008471897803246975, 0.04955798387527466, 0.0038352005649358034, -0.011610470712184906, 0.05198494717478752, -0.016119828447699547, 0.0061235870234668255, -0.029722804203629494, -0.017737802118062973, 0.03940069302916527, -0.020464390516281128, 0.0010037439642474055, -0.012284627184271812, 0.003992503974586725, 0.006767780985683203, -0.016254659742116928, -0.017902595922350883, 0.0009953170083463192, 0.03775275498628616, 0.003992503974586725, 0.02687636762857437, 0.005726583767682314, 0.008779013529419899, -0.033647891134023666, 0.022022441029548645, 0.020164765417575836, 0.0034868863876909018, 0.01345316506922245, 0.015385746024549007, 0.023760266602039337, 0.019056152552366257, -0.005352052394300699, -0.036284592002630234, -0.020644165575504303, 0.027640409767627716, 0.0071760197170078754, 0.022352028638124466, 0.004932577256113291, 0.026456892490386963, -0.016404470428824425, 0.018262146040797234, 0.02516850456595421, 0.01028462965041399, 0.03128085657954216, -0.005745310336351395, 0.020089859142899513, 0.034816429018974304, -0.004955049138516188, 0.005363288335502148, 0.026337042450904846, -0.02641194872558117, 0.06016470864415169, -0.023026185110211372, -0.0006610477576032281, 0.012202230282127857, -0.01752806454896927, -0.0009480323642492294, -0.010756539180874825, 0.004153551999479532, 0.005382014904171228, -0.004269656725227833, -0.0005070217885077, -0.02834452874958515, 0.016014959663152695, -0.02560296095907688, 0.0022677870001643896, -0.004591753706336021, -0.02034454047679901, -0.016644170507788658, -0.023760266602039337, 0.0023164760787039995, 0.0030580481979995966, 0.039520543068647385, -0.0151984803378582, 0.014277133159339428, -0.0067902528680861, 0.012352042831480503, 0.030666623264551163, 0.015655409544706345, -0.01680896431207657, 0.007561787031590939, 0.005479393061250448, 0.021827684715390205, 0.0002532768121454865, -0.02278648503124714, 0.005771527532488108, 0.014329567551612854, -0.004752802196890116, 0.006191002670675516, 0.027146030217409134, -0.036224666982889175, 0.008374519646167755, 0.002735951216891408, 0.024404460564255714, 0.0014316459419205785, 0.017513083294034004, 0.014951289631426334, 0.01890634000301361, 0.00354681140743196, -0.013895111158490181, -0.00460298964753747, 0.027610447257757187, 0.01467413641512394, -0.00014793986338190734, -0.0005664785858243704, -0.013041180558502674, 0.0013033689465373755, -0.00505991792306304, -0.011685376986861229, -0.041378218680620193, -0.01743817701935768, -0.023101091384887695, 0.008591747842729092, -0.004063664935529232, -6.630374264204875e-05, -0.001034642686136067, 0.011955039575695992, -0.026337042450904846, -0.012561780400574207, 0.0019363268511369824, 0.008808976039290428, -0.006640440318733454, 0.01244193036109209, 0.008614219725131989, -0.0003670406877063215, -0.009602982550859451, -0.01198500208556652, 0.013932564295828342, -0.029408197849988937, -0.04698120802640915, -0.04850929602980614, 0.009670398198068142, -0.02876400388777256, 0.007513097953051329, 0.032659128308296204, -0.02178274095058441, -0.03571530431509018, 0.0013586123241111636, -0.016299601644277573, 0.015565521083772182, 0.018621696159243584, -0.018951283767819405, 0.015430689789354801, 0.027056142687797546, 0.012816461734473705, -0.015400727279484272, 0.030771492049098015, -0.010651670396327972, 0.0453931950032711, -0.02455427311360836, 0.02062918432056904, -0.017587989568710327, -0.03538571670651436, -0.02370034158229828, 0.01851682737469673, 0.0053071086294949055, -0.013273390009999275, 0.0045168474316596985, -0.0017659150762483478, 0.025947529822587967, -0.015655409544706345, -0.017677877098321915, 0.001983143389225006, -0.002460670657455921, -0.018696602433919907, 0.005647932179272175, 0.0016835182905197144, 0.03826211765408516, -0.014277133159339428, 0.0165842454880476, -0.029018685221672058, 0.034067366272211075, -0.019640421494841576, 0.00937077309936285, -0.0015617955941706896, 0.036973729729652405, 0.0055617899633944035, -0.0030355763155966997, 0.005696621257811785, 0.03529582917690277, -0.01570035330951214, 0.034426916390657425, 0.016629189252853394, -0.017842670902609825, -0.0014241553144529462, 0.029333291575312614, 0.019610458984971046, -0.021797722205519676, 0.03199995681643486, -0.010509348474442959, 0.001549623324535787, 0.013895111158490181, -0.014097358100116253, 0.0037921294569969177, 0.0024662886280566454, -0.0068726493045687675, 0.03724339231848717, 0.0410785935819149, 0.009153544902801514, 0.050426896661520004, -0.0018352033803239465, 0.03310856595635414, 0.03643440455198288, -0.016629189252853394, -0.030576735734939575, -0.0011853915639221668, 0.0023614198435097933, -0.032149769365787506, -0.018726564943790436, -0.010831445455551147, -0.04994749650359154, 0.028524303808808327, -0.024179741740226746, 0.020838921889662743, -0.030651642009615898, 0.04047934338450432, -0.014689117670059204, -0.012202230282127857, 0.0073295775800943375, 0.006074897944927216, 0.007224708795547485, 0.0014990615891292691, 0.014509342610836029, 0.0002757486654445529, -0.026292098686099052, 0.001956926193088293, -0.03191006928682327, -0.03020220436155796, 0.0038333279080688953, 0.018726564943790436, -0.032958753407001495, 0.038771480321884155, 0.05300367251038551, 0.00391010707244277, -0.020329559221863747, -0.0094981137663126, -0.008029951713979244, -0.0020917572546750307, 0.016704095527529716, 0.010441932827234268, -0.0031011193059384823, -0.03745312988758087, 0.03343815356492996, -0.0067602903582155704, 0.003996249288320541, 0.0074831354431807995, 0.022576747462153435, -0.007999989204108715, -0.008831447921693325, 0.0033651639241725206, 0.01549061480909586, 0.021722815930843353, 0.017033683136105537, -0.023265885189175606, 0.0068464321084320545, 0.009408226236701012, 0.005217221099883318, 0.005086135119199753, 0.0068464321084320545, 0.0019147912971675396, -0.002477524569258094, -0.009505604393780231, 0.047460608184337616, 0.0063782683573663235, 0.0538126602768898, -0.02076401561498642, -0.015250914730131626, -0.03598496690392494, 0.012906349264085293, -0.0021610455587506294, -0.041378218680620193, -0.007805232424288988, -0.011048673652112484, 0.005670404061675072, 0.008494369685649872, 0.014194736257195473, 0.014067395590245724, 0.025408204644918442, 0.039820168167352676, 0.02569284848868847, -0.013767770491540432, -0.005318344570696354, -0.017917577177286148, -0.009280885569751263, 0.015984997153282166, 0.0017181623261421919, 0.005629205610603094, -0.002486887853592634, 0.01602994091808796, 0.02862917259335518, -0.0020187238696962595, -0.013265899382531643, -0.023820191621780396, -0.0009166653617285192, 0.0004166660946793854, -0.0028239660896360874, 0.01799248345196247, 0.011123579926788807, 0.00298688723705709, -0.002026214497163892, 0.024044910445809364, 0.020554278045892715, 0.02579771727323532, -0.019610458984971046, -0.011213467456400394, -0.006636695004999638, -0.005220966413617134, -0.04068908095359802, -0.005367033649235964, 0.0013033689465373755, 0.0031797708943486214, -0.023925060406327248, 0.0018520572921261191, -0.03229958191514015, -0.008037442341446877, 0.0018689112039282918, -0.01893630251288414, -0.0021329557057470083, 0.006985008716583252, -0.0019307088805362582, 0.0094981137663126, 0.005348307080566883, -0.02170783467590809, -0.014846420846879482, -0.010666651651263237, 0.008539313450455666, -0.011333317495882511, 0.0014129193732514977, 0.0020636674016714096, 0.0026760261971503496, -0.023520566523075104, -0.03448684141039848, 0.007352049462497234, 0.03931080549955368, -0.05351303517818451, 0.03610481694340706, 0.019595477730035782, -0.009692870080471039, 0.024239666759967804, 0.025572998449206352, 0.010876389220356941, -0.029767747968435287, -0.010681632906198502, 0.04326585680246353, 0.0006910102674737573, 0.02552805468440056, 0.011453167535364628, 0.006936319638043642, -0.027056142687797546, 0.012426949106156826, 0.016209715977311134, 0.0367639921605587, -0.003539320779964328, 0.017378251999616623, -0.007617966737598181, 0.008299613371491432, -0.011602980084717274, 0.0005037446389906108, 0.02023967169225216, -0.0035056129563599825, 0.013850167393684387, -0.00011446612916188315, -0.009670398198068142, 0.04050930589437485, 0.003571155946701765, -0.01979023404419422, -0.004760292824357748, -0.05060667172074318, -0.03760294243693352, -0.05054674670100212, -0.01616477221250534, 0.03637447953224182, -0.031220929697155952, -0.0070486790500581264, -0.0001516851771157235, 0.0024887605104595423, 0.037303317338228226, -0.008988751098513603, 0.00822470709681511, 0.012337061576545238, 0.019086115062236786, 0.018561771139502525, -0.01266664918512106, 0.0090112229809165, 0.021333303302526474, 0.003940069582313299, -0.017033683136105537, 0.012771517969667912, -0.004475648980587721, 0.010651670396327972, -0.00604119012132287, -0.0010674141813069582, 0.012749046087265015, -0.017977502197027206, 0.004149806685745716, -0.03793253004550934, 0.004838944412767887, -0.0061235870234668255, -0.004955049138516188, 0.0021385736763477325, -0.01567039079964161, 0.0007045870297588408, -0.00871908850967884, -0.014134811237454414, -0.00339512643404305, -0.02507861703634262, -0.016823945567011833, -0.021872628480196, -0.0043146004900336266, 0.006318343337625265, -0.02416476048529148, -0.02693629264831543, -0.00755055109038949, -0.005775272846221924, -0.004524338059127331, -0.034067366272211075, 0.029632916674017906, -0.007925082929432392, 0.006722837220877409, -0.0014391365693882108, -0.030381979420781136, -0.01292882114648819, -0.0037041145842522383, 0.006310852710157633, -0.025093598291277885, -0.02217225357890129, -0.03781268000602722, 0.0031797708943486214, -0.04359544441103935, 0.008119839243590832, 0.0018595479195937514, -0.010726576671004295, 0.06226208433508873, 0.02513854205608368, 0.0230561476200819, -0.002031832467764616, -0.012067398987710476, -0.012531817890703678, -0.011205976828932762, -0.027835166081786156, -0.03616474196314812, 0.009543057531118393, -0.01896626502275467, 0.0007626393926329911, 0.03199995681643486, 0.009850173257291317, -0.021692853420972824, -0.0007808977970853448, 0.035116054117679596, -0.009513095021247864, -0.03724339231848717, 0.00395879615098238, -0.007910101674497128, -0.020389484241604805, -0.007310851011425257, 0.005071153864264488, -0.010404479689896107, 0.01962544023990631, 0.01635952666401863, -0.016868889331817627, -0.00017169919738080353, -0.00510860700160265, -0.026367004960775375, -0.004449431784451008, -0.03397747874259949, 0.006745309103280306, -0.06399991363286972, -0.01688387058675289, -0.0047490568831563, 0.012396986596286297, -0.009153544902801514, 0.010239685885608196, 0.015595483593642712, 0.010322082787752151, -0.017782745882868767, 0.0018679748754948378, 0.00976028572767973, -0.01893630251288414, 0.02226214110851288, 0.01772282086312771, -0.01220972090959549, 0.011385751888155937, -0.005786508787423372, -0.005475647747516632, 0.01887637749314308, 0.004205986391752958, 0.007752798032015562, 0.008404482156038284, 0.030142279341816902, -0.019205965101718903, -0.012389495968818665, 0.056269582360982895, -0.024599216878414154, 0.002533704275265336, -0.024284610524773598, -0.035175979137420654, 0.0034250887110829353, 0.005393250845372677, -0.015108592808246613, 0.004558045882731676, 0.008164782077074051, 0.0013735935790464282, 0.01428462378680706, -0.010074892081320286, 0.03382766619324684, 0.020808959379792213, 0.01570035330951214, 0.013078633695840836, -0.005228457041084766, -0.0090112229809165, -0.0074082291685044765, -0.03412729129195213, -0.011220958083868027, -0.0187415461987257, -0.004576772451400757, 0.014561777003109455, 0.0013483127113431692, 0.018277127295732498, 0.0008033696794882417, -0.02491382323205471, -0.006722837220877409, 0.005393250845372677, 0.016644170507788658, -0.022247159853577614, 0.005146060138940811, -0.008591747842729092, 0.05815722048282623, 0.020299596711993217, 0.0016807093052193522, 0.014254661276936531, -0.014434436336159706, 0.027835166081786156, 0.020749034360051155, 0.03196999430656433, 0.035205941647291183, -0.014981252141296864, 0.01860671490430832, 0.004018721170723438, 0.00450561149045825, 0.019925065338611603, 0.015385746024549007, 0.02513854205608368, 0.007033697795122862, 0.008314594626426697, 0.0027490598149597645, -0.0009597364696674049, -0.01707862690091133, -0.006737818475812674, 0.006861413363367319, -0.016823945567011833, 0.0004756547568831593, -0.030157260596752167, 0.011647923849523067, -0.013872639276087284, -0.005490629002451897, 0.0036329536233097315, 0.034396953880786896, 0.007797741796821356, 0.019011208787560463, 0.015910090878605843, -0.016868889331817627, 0.07580513507127762, -0.006662912201136351, 0.022352028638124466, -0.004928831942379475, -0.007617966737598181, 0.007108604069799185, -0.00894380733370781, 0.0068801399320364, -0.03017224185168743, -0.016868889331817627, -0.008599238470196724, 0.0013867021771147847, -0.012554289773106575, -0.02223217859864235, -0.01943068392574787, -0.008973769843578339, -0.020464390516281128, -0.019176002591848373, -0.022966260090470314, -0.03616474196314812, 0.0069213383831083775, -0.01194754894822836, -0.0027808949816972017, -0.03931080549955368, 0.006745309103280306, 0.0022677870001643896, 0.02765539102256298, -0.0029044903349131346, -0.04068908095359802, -0.019760271534323692, 0.0061235870234668255, -0.0025430675595998764, -0.010224704630672932, 0.002230333862826228, 0.024569254368543625, -0.004531828686594963, -0.001017788890749216, -0.01599997840821743, -0.0016610464081168175, 0.001519660814665258, 0.014194736257195473, 0.026277117431163788, -0.01220972090959549, 0.03247935697436333, -0.038441892713308334, 0.014958780258893967, -0.003539320779964328, -0.009558038786053658, -0.0026198464911431074, -0.009190998040139675, 0.00985766388475895, 0.004704113118350506, -0.015790240839123726, 0.005146060138940811, -0.00989511702209711, -0.004044938366860151, -0.009131073020398617, 0.012674139812588692, 0.006209729239344597, -0.03610481694340706, -0.01799248345196247, -0.03508609160780907, -0.0019475627923384309, 0.006962536834180355, -0.014082376845180988, -0.027205953374505043, 0.01844192110002041, 0.034067366272211075, -0.0016647917218506336, 0.011550545692443848, -0.01280148047953844, -0.03562541678547859, 0.0016994357574731112, -0.0004056642355863005, -0.014262151904404163, -0.010591745376586914, -0.0038426911924034357, -0.0026760261971503496, -0.010434442199766636, 0.00028160071815364063, -0.0020149785559624434, 0.0007116094930097461, -0.01896626502275467, 0.01779772713780403, 0.0028782731387764215, 0.0002518723194953054, 0.008801485411822796, -0.003348310012370348, 0.01363293919712305, 0.0004784637421835214, 0.007782760541886091, 0.001034642686136067, 0.008134820498526096, 0.002838947344571352, 0.019056152552366257, 0.009138563647866249, 0.028314566239714622, -0.011812717653810978, 0.008426954038441181, 0.002940070815384388, 0.008988751098513603, 0.02494378574192524, 0.005235947668552399, -0.030217185616493225, -0.021468134596943855, -0.0052584195509552956, -0.013071143068373203, -0.001242507598362863, 0.0033389467280358076, -0.00937077309936285, -0.008329575881361961, -0.03355800360441208, 0.008973769843578339, 0.025183485820889473, -0.028943778946995735, 0.009086129255592823, 0.013602976687252522, 0.013752789236605167, -0.003468159819021821, -0.002127337735146284, -0.008973769843578339, 0.010359535925090313, 0.005958793219178915, 0.021872628480196, 0.0029569247271865606, 0.04266660660505295, -0.019475627690553665, -0.012419458478689194, -0.033677853643894196, 0.01979023404419422, 0.015550539828836918, 0.006797743029892445, -0.04071904346346855, -0.015093611553311348, 0.003906361758708954, 0.006797743029892445, 0.017213458195328712, -0.017558027058839798, -0.008704107254743576, -0.007112349383533001, -0.006651676259934902, 0.02383517287671566, -0.021183490753173828, 0.02990257926285267, -0.002035577781498432, -0.022022441029548645, -0.025782736018300056, -0.006434448063373566, 0.006861413363367319, 0.04704113304615021, 0.023101091384887695, -0.02314603514969349, -0.014509342610836029, 0.0067902528680861, 0.017932558432221413, 0.009685379453003407, -0.00976028572767973, -0.004910105373710394, 0.017573008313775063, 0.0019981246441602707, 0.017093608155846596, 0.004576772451400757, -0.007666655816137791, 0.016853908076882362, -0.015955034643411636, -0.0016292112413793802, 0.014823948964476585, 0.007460663560777903, -0.05051678419113159, 0.02605239860713482, 0.0011797735933214426, -0.0001637404056964442, 0.003743440378457308, 0.018831433728337288, -0.028689097613096237, -0.012966274283826351, 0.004610480275005102, -0.021228434517979622, 0.01227713655680418, 0.02325090393424034, 0.015333311632275581, -0.0025449402164667845, -0.020943790674209595, 0.019535552710294724, -0.005569280590862036, 0.008711597882211208, 0.007217218168079853, -0.03036699816584587, 0.013812714256346226, 0.014516833238303661, 0.004636697471141815, 0.0022453151177614927, 0.007370776031166315, 0.025543035939335823, 0.00016959245840553194, 0.010569273494184017, 0.01932581514120102, 0.015430689789354801, -0.00556553527712822, 0.017003720626235008, -0.023101091384887695, -0.002556176157668233, -0.0048988694325089455, 0.019011208787560463, 0.00654680747538805, 0.01907113380730152, -0.012719083577394485, -0.04293626919388771, -0.01998499035835266, 0.004041193053126335, -0.00029517748043872416, -0.011408223770558834, 0.0037902568001300097, -0.005288382060825825, 0.0035842645447701216, 0.0015608592657372355, 0.0030074864625930786, 0.006007482297718525, -0.00798500794917345, -0.012157286517322063, 0.0082921227440238, 0.015625447034835815, -0.004374525509774685, -0.01253930851817131, -0.03643440455198288, 0.010082382708787918, 0.0008768714033067226, 0.026277117431163788, 0.006681638769805431, -0.034426916390657425, -0.0019073006696999073, 0.013063652440905571, -0.009483132511377335, 0.028973741456866264, 0.002303367480635643, -0.0054868836887180805, 0.03940069302916527, 0.010142307728528976, 0.01998499035835266, 0.005101116374135017, -0.006535571534186602, -0.008614219725131989, -0.007775269914418459, 0.009685379453003407, -0.004917596001178026, 0.01467413641512394, 0.022157272323966026, 0.0050262100994586945, -0.0013595486525446177, 0.008973769843578339, 0.004595499020069838, 0.004344562999904156, 0.027310822159051895, 0.019400721415877342, -0.029333291575312614, -0.011535564437508583, 0.017737802118062973, 0.012853914871811867, 0.0008984069572761655, 0.0004578645166475326, 0.02820969745516777, 0.002273404970765114, 0.01577525958418846, -0.04554300755262375, -0.014861402101814747, -0.007059914991259575, 0.00026942844851873815, -0.002434453461319208, 0.02488386072218418, 0.008996241725981236, 0.04901865869760513, 0.03137074410915375, -0.019415702670812607, 0.0043370723724365234, -0.028089847415685654, -0.010734067298471928, 0.003037448972463608, -0.016644170507788658, 0.0012584251817315817, -0.005456921178847551, -0.0004358607984613627, 0.008277141489088535, -0.007307105697691441, 0.0015852038050070405, -0.014277133159339428, -0.015250914730131626, 0.015565521083772182, -0.03853178024291992, -0.013700354844331741, -0.0211535282433033, 0.001871720189228654, -0.0211535282433033, 0.006812724284827709, 0.004063664935529232, -0.0009784630965441465, -0.002247187774628401, -0.005471902433782816, 0.013625448569655418, 0.007486880756914616, 0.001599248731508851, -0.0031629169825464487, -0.04038945585489273, 0.032209694385528564, -0.041318293660879135, 0.017063645645976067, -0.012164777144789696, 0.017558027058839798, -0.0005397932254709303, 0.015093611553311348, -0.013183502480387688, 0.03706361725926399, -0.007872648537158966, 0.018561771139502525, 0.0025224683340638876, -0.03610481694340706, -0.038471855223178864, -0.0004403083585202694, 0.019146040081977844, -0.009745304472744465, -0.02142319083213806, -0.011385751888155937, 0.008187253959476948, 0.010943804867565632, -0.005213475786149502, 0.013962526805698872, -0.0279849786311388, -0.011123579926788807, 0.00027715315809473395, -0.022352028638124466, -0.01838199608027935, 0.011895114555954933, -0.008426954038441181, -0.005685385316610336, -0.008119839243590832, 0.0015608592657372355, -0.016479376703500748, 0.019580496475100517, -0.017602970823645592, 0.01526589598506689, 0.04740068316459656, -0.029048647731542587, 0.012284627184271812, -0.01067414227873087, -0.0042097317054867744, -0.013310843147337437, -0.03529582917690277, -0.011685376986861229, -0.0034550512209534645, -0.02367037907242775, -0.02056925930082798, -0.01316103059798479, 0.01493630837649107, -0.020853903144598007, 0.019595477730035782, 0.023190978914499283, 0.022322066128253937, -0.021947534754872322, 0.03835200518369675, 0.003621717682108283, 0.015161027200520039, 0.0024737792555242777, -0.012988746166229248, -0.004344562999904156, -0.021797722205519676, 0.03009733557701111, 0.0020861392840743065, -0.008936316706240177, -0.02181270346045494, 0.012337061576545238, -0.012127324007451534, 0.021243415772914886, 0.024314573034644127, -0.022381991147994995, -0.005782763473689556, -0.025617942214012146, -0.0002537449763622135, -0.000811796635389328, -0.010786501690745354, -0.01857675239443779, 0.004730330314487219, -0.029932541772723198, -0.005393250845372677, 0.005374524276703596, 0.007932573556900024, -0.011468148790299892, 0.015955034643411636, -0.0247490294277668, -0.019835177809000015, 0.013370768167078495, 0.02755052223801613, -0.0018689112039282918, 0.0029494340997189283, -0.006988754030317068, -7.882713543949649e-05, 0.023190978914499283, -0.015895109623670578, 0.02190259099006653, -0.031220929697155952, 0.012546799145638943, 0.02660670503973961, -0.0216179471462965, -0.004318345803767443, 0.004955049138516188, 0.030471866950392723, 0.004621716216206551, 0.006910102441906929, -0.02749059721827507, -0.03325837850570679, -0.00014466271386481822, 0.00018457371334079653, -0.004307109862565994, 0.002007487928494811, 0.016823945567011833, -0.0007720026769675314, -0.011258411221206188, -0.01025466714054346, 0.0041872598230838776, -0.002044940833002329, 0.01038200780749321, -0.003846436506137252, -0.011423205025494099, 0.003996249288320541, -0.001417601015418768, -0.028524303808808327, 0.0028277114033699036, -0.014913836494088173, -0.014464398846030235, 0.00858425721526146, -0.009513095021247864, 0.00774530740454793, 0.01577525958418846, -0.007460663560777903, -0.003091756021603942, -0.022247159853577614, 0.0071273306384682655, 0.005213475786149502, 0.003069284139201045, 0.0025992472656071186, 0.0034756504464894533, 0.014172264374792576, -0.007348304148763418, 0.00704493373632431, -0.011940058320760727, -0.005936321336776018, -0.012337061576545238, -0.006310852710157633, 0.008704107254743576, -0.010539310984313488, -0.009003732353448868, -0.006355796474963427, 0.08725081384181976, 0.010928823612630367, 0.001721907639876008, 0.0009803357534110546, -0.0007663847063668072, -0.020584240555763245, 0.0018885741010308266, 0.018037427216768265, 0.018861396238207817, 0.00011955741501878947, -0.021168509498238564, -0.017902595922350883, 0.014988742768764496, 0.0035580473486334085, -0.022816447541117668, 0.005479393061250448, 0.016104847192764282, 0.02214229106903076, -0.0033314561005681753, 0.010209723375737667, 0.000506553624290973, -0.018831433728337288, -0.003992503974586725, 0.022876372560858727, 0.0031366997864097357, 0.01896626502275467, 0.0009555229917168617, 0.014344548806548119, -0.00022471878037322313, 0.032629165798425674, -0.003041194286197424, -0.012299608439207077, -0.003906361758708954, -0.006314598023891449, 0.00222846120595932, 0.0038146013393998146, -0.0039213430136442184, 0.015288367867469788, -0.005411977414041758, 0.0024194722063839436, -0.00910860113799572, 0.008576766587793827, 0.020868884399533272, 0.028479360044002533, -0.012614214792847633, -0.006374523043632507, 0.0021872627548873425, -0.00510860700160265, 0.004089881666004658, -0.012651667930185795, -0.01444941759109497, -0.022486859932541847, 0.003168534953147173, 0.009970023296773434, 0.005988755729049444, -0.01325840875506401, 0.01772282086312771, 0.01198500208556652, 0.010142307728528976, -0.00568164000287652, -0.02109360322356224, 0.0031853888649493456, -0.012531817890703678, -0.028329547494649887, -0.012651667930185795, -0.023041166365146637, -0.004565536510199308, -0.017737802118062973, 0.003898870898410678, -0.005722838453948498, -0.01230709906667471, 0.0032602951396256685, 0.01580522209405899, -0.03152055665850639, -0.009385754354298115, 0.013917583040893078, -0.004752802196890116, 0.040179718285799026, 0.031430669128894806, 0.00628463551402092, 0.003698496613651514, 0.010561782866716385, -0.016494357958436012, -0.01113107055425644, -0.007580513600260019, -0.0025936292950063944, 0.0123745147138834, -0.02399996668100357, 0.010082382708787918, -0.03607485443353653, -0.01638948917388916, -0.0016460651531815529, 0.0010065529495477676, 0.011573017574846745, 0.00395879615098238, 0.013138558715581894, -0.014112339355051517, -0.015730315819382668, 0.02862917259335518, -0.008883882313966751, 0.00013249044422991574, 0.0081123486161232, -0.00702620716765523, 0.007992498576641083, 0.011977511458098888, -0.0016638553934171796, 0.01979023404419422, 0.008793994784355164, -0.009340810589492321, 0.009910098277032375, -0.0024456894025206566, -0.005625460296869278, -0.00354681140743196, -9.765611821421771e-07, -0.023745285347104073, -0.00017439114162698388, 0.015205970965325832, -0.011340808123350143, -0.015325821004807949, -0.02092880941927433, -0.0009049612563103437, -0.0001954585313796997, -0.00894380733370781, -0.012936311773955822, -0.003616099711507559, 0.010059910826385021, -0.0017406342085450888, -0.00460298964753747, -0.010014967061579227, -0.0029569247271865606, 0.0038913802709430456, 0.013108596205711365, 0.00791759230196476, -0.010471895337104797, 0.019925065338611603, 0.0044419411569833755, 0.0030599208548665047, -0.0066329496912658215, 0.011213467456400394, -0.017018701881170273, 0.014352039434015751, 0.006835196167230606, 0.01583518460392952, 0.025617942214012146, -0.004112353548407555, 0.013033689931035042, -0.011355789378285408, -0.027146030217409134, -0.004041193053126335, -0.014928817749023438, 0.014539305120706558, -0.03760294243693352, 0.00010984300752170384, -0.00798500794917345, -1.950196201505605e-05, 0.0025131050497293472, -0.027670372277498245, 0.03283890336751938, -0.014898855239152908, -0.004786510020494461, -0.008067404851317406, -0.0021685361862182617, 0.003247186541557312, -0.0021666635293513536, -0.013116086833178997, 0.006726582534611225, 0.016269640997052193, 0.02269659750163555, 0.010621707886457443, -0.005805235356092453, -0.009820210747420788, 0.00963294506072998, 0.013932564295828342, -0.02641194872558117, 0.0006793061620555818, 0.0023876370396465063, -0.0038127286825329065, 0.004535574000328779, -0.027745278552174568, 0.018022445961833, 0.0018679748754948378, -0.008704107254743576, 0.022322066128253937, 0.011970020830631256, 0.008711597882211208, -0.010194742120802402, 0.006033699493855238, -0.007865157909691334, -0.008382010273635387, -0.0003068815858568996, -0.004943813197314739, 0.01926589012145996, 0.006299616768956184, -0.002962542697787285, -0.02295127883553505, 0.003468159819021821, 0.011543055064976215, 0.014801477082073689, 0.02256176620721817, -0.01880147121846676, 0.011116089299321175, -0.008831447921693325, 0.008209725841879845, 0.015685372054576874, 0.002455052686855197, -0.029887598007917404, -0.025423185899853706, -0.015108592808246613, -0.019700346514582634, -0.01392507366836071, -0.026471873745322227, -0.028194716200232506, 0.012224702164530754, 0.0027190973050892353, -0.005906358826905489, -0.004250930156558752, 0.018666639924049377, -0.00026381047791801393, 0.02918347902595997, 0.008352047763764858, 0.00719100097194314, 0.00023419910576194525, 0.01175279263406992, -0.02892879769206047, -0.012876386754214764, 0.005037446040660143, 0.008786504156887531, 0.003447560593485832, 0.00435954425483942, -0.00930335745215416, 0.01418724562972784, -0.00314231775701046, -0.011108598671853542, 0.02364041656255722, -0.0021404463332146406, 0.03006737306714058, 0.015910090878605843, 0.0024719065986573696, 0.01907113380730152, -0.00237452844157815, -0.010531820356845856, 0.0035037402994930744, -0.012157286517322063, -0.0035355754662305117, -0.002537449588999152, -0.014471889473497868, 0.005531827453523874, 0.002533704275265336, 0.012853914871811867, -2.8250778996152803e-05, 0.0067865075543522835, -0.0024644159711897373, -0.007872648537158966, 0.0116554144769907, 0.012187249027192593, -0.007520588580518961, -0.002968160668388009, 0.006434448063373566, 0.002069285372272134, -0.02239697240293026, -0.0026722808834165335, 0.011940058320760727, -0.019116077572107315, -0.004902614746242762, -0.009520585648715496, 0.034067366272211075, -0.03979020565748215, 0.005033700726926327, -0.0037078598979860544, 0.016404470428824425, 0.005906358826905489, -0.0035262121818959713, 0.010764029808342457, 0.017258401960134506, 0.0014653537655249238, -0.005602988414466381, -0.0036348262801766396, -0.005029955413192511, 0.008097367361187935, 0.009655416943132877, 0.0007546806009486318, 0.015243424102663994, 0.013393240049481392, -0.026292098686099052, -0.003043066943064332, -0.02889883518218994, 0.012808971107006073, 0.018127314746379852, -0.0017434431938454509, -0.002003742614760995, -0.005430703982710838, -0.0057153478264808655, 0.019595477730035782, -0.004202241078019142, -0.020419446751475334, 0.004943813197314739, -0.0012050544610247016, 0.0017172259977087379, 0.018202221021056175, -0.0024232175201177597, -0.008734069764614105, 0.0017415705369785428, -0.008981260471045971, -0.033378228545188904, 0.010269648395478725, 0.010157288983464241, 0.00907863862812519, -0.007389502599835396, -0.005625460296869278, 0.013131068088114262, 0.0033127295318990946, -0.0025468128733336926, -0.0189962275326252, -0.01345316506922245, -0.006093624513596296, -0.017872633412480354, 0.01136328000575304, 0.028838910162448883, -0.027895091101527214, 0.0034737777896225452, 0.005734074395149946, 0.01815727725625038, 0.005014974158257246, 0.012456911616027355, 0.005775272846221924, 0.004565536510199308, 0.0016292112413793802, 0.011063654907047749, 0.011250920593738556, -0.029333291575312614, 0.011543055064976215, -0.001772469375282526, -0.017213458195328712, -0.0036123543977737427, -0.0067116012796759605, 0.019550533965229988, -0.0011198485735803843, -0.021273378282785416, -0.021872628480196, 0.007262161932885647, -0.012561780400574207, -0.01779772713780403, -0.0052322023548185825, -0.009453170001506805, 0.012576761655509472, 0.010164779610931873, 0.0011479384265840054, -0.009093619883060455, 0.0208988469094038, 0.009363282471895218, 0.004681641235947609, 0.0035561746917665005, 0.024823935702443123, 0.012044927105307579, -0.01273406483232975, -0.009235941804945469, 0.01860671490430832, 0.005250928923487663, -0.021198472008109093, 0.007471899501979351, -0.013558033853769302, 0.022816447541117668, -0.012494364753365517, -0.004565536510199308, 0.01910109631717205, -0.0055842618457973, -0.0062509276904165745, 0.012269645929336548, -0.035865116864442825, -0.006853922735899687, -0.015445671044290066, -0.01583518460392952, -0.006782762240618467, -0.006779016926884651, -0.023026185110211372, 0.002968160668388009, -0.005966283846646547, -0.011617961339652538, -0.028449397534132004, -0.016149790957570076, 0.027745278552174568, -0.0008473771158605814, -0.005651677493005991, -0.01952057145535946, 0.008831447921693325, 0.016704095527529716, 0.02693629264831543, 0.014681627042591572, 0.023760266602039337, -0.015595483593642712, -0.004078645724803209, -0.006011227611452341, -0.0030505575705319643, -0.004029957111924887, -0.002333329990506172, 0.02513854205608368, -0.02931831032037735, 0.014561777003109455, 0.0009157290332950652, 0.00039208747330121696, 0.016404470428824425, 0.016464395448565483, 0.012052417732775211, 0.01616477221250534, 0.004996247589588165, -0.01421720813959837, 0.008157291449606419, 0.015086120925843716, 0.015026195906102657, 0.0013651666231453419, 0.005445685237646103, 0.003069284139201045, -0.014509342610836029, 0.012883877381682396, 0.022052403539419174, -0.006411976180970669, 0.008734069764614105, -0.014254661276936531, 0.008299613371491432, 0.001796813914552331, 0.027999959886074066, -0.009805229492485523, 0.03020220436155796, -0.002762168413028121, 0.008134820498526096, -0.01355054322630167, 0.01733330823481083, 0.011400733143091202, 1.8726565031101927e-05, -0.005063663236796856, -0.021587984636425972, -0.01619473472237587, -0.006970027461647987, 0.010374517180025578, -0.02948310412466526, -0.018486864864826202, 0.02566288597881794, -0.024149779230356216, -0.0022415698040276766, 0.016928814351558685, -0.01749810203909874, -0.009602982550859451, 0.0013099232455715537, 0.01230709906667471, 0.016434432938694954, 0.0030355763155966997, 0.0055880071595311165, 0.024569254368543625, -0.013295861892402172, -0.01644941419363022, -0.013033689931035042, 0.029018685221672058, -0.0026460636872798204, -0.004382016137242317, -0.006157294847071171, -0.010943804867565632, -0.006666657514870167, 0.010898861102759838, 0.04659169539809227, -0.037003692239522934, -0.001599248731508851, -0.013670392334461212, 0.00033848267048597336, 0.0036554255057126284, -0.02040446549654007, -0.0026778988540172577, 0.004101117607206106, 0.0027546777855604887, -0.0038333279080688953, -0.007029952481389046, -0.017348289489746094, 0.01733330823481083, 0.014913836494088173, 0.00024297718482557684, 0.0038913802709430456, 0.014239680022001266, -0.02109360322356224, 0.023101091384887695, 0.005453175865113735, -0.00826216023415327, -0.002814602805301547, 0.0014672264223918319, -0.0014484998537227511, -0.0025973746087402105, 0.02948310412466526, -0.019640421494841576, 0.01713855192065239, 0.005674149375408888, 0.003069284139201045, 0.018681621178984642, -0.005569280590862036, -0.0022340791765600443, 0.0030337036587297916, -0.0022921315394341946, 0.02347562275826931, -0.006445684004575014, -0.0063782683573663235, 0.014344548806548119, -0.009558038786053658, 0.003441942622885108, -0.017752783372998238, -0.0008047741721384227, 0.0036891333293169737, 0.0013099232455715537, 0.013880129903554916, -0.00263670040294528, -0.0026423183735460043, 0.00868163537234068, 0.024793973192572594, 0.007108604069799185, 0.011310845613479614, -0.00012933033576700836, -0.008352047763764858, 0.005367033649235964, 0.0009012159425765276, 0.026232173666357994, -0.008734069764614105, -0.0006418530247174203, 0.012554289773106575, 0.005625460296869278, -0.00116291968151927, -0.02134828455746174, 0.0030262130312621593, -0.0036835153587162495, -0.01338574942201376, -0.004524338059127331, 0.02782018482685089, -0.00798500794917345, 0.020644165575504303, -0.007651674561202526, -0.015310839749872684, -0.0021367010194808245, -0.005048681981861591, 0.006902611814439297, -1.5946839994285256e-05, 0.010659161023795605, 0.005138569511473179, 0.007258416619151831, 0.04197746887803078, -0.011498111300170422, 0.006913847755640745, -0.0018951284000650048, -0.007217218168079853, -0.006513099651783705, -0.014404473826289177, -0.02510857954621315, 0.0013473763829097152, 0.005415722727775574, -0.006288380827754736, -0.005771527532488108, -0.013835186138749123, 0.004220967646688223, 0.015153536573052406, 0.006273399572819471, 0.023775247856974602, -0.013490618206560612, -0.0008525268640369177, 0.007438191678375006, -0.005861415062099695, 0.012059908360242844, -0.004348308313637972, -0.026202211156487465, 0.00532208988443017, 0.0007546806009486318, -0.01736327074468136, -0.0037322044372558594, 0.02468910440802574, 0.00011739215551642701, -0.005116097629070282, 0.015595483593642712, -0.006029954180121422, -0.005936321336776018, -0.009168526157736778, -0.0028745278250426054, -0.0028726551681756973, -0.003170407610014081, -0.0137602798640728, 0.002456925343722105, 0.008119839243590832, -0.005430703982710838, 0.0011170395882800221, -0.035565491765737534, -0.007576768286526203, -0.01198500208556652, 0.0013239681720733643, 0.026786480098962784, -0.00440823333337903, 0.003294002963230014, 0.005674149375408888, -0.011378261260688305, 0.02807486616075039, -0.025348279625177383, -0.022097347304224968, 0.01038200780749321, 0.027610447257757187, -0.006681638769805431, -0.003591755172237754, 0.005808980669826269, -0.034037403762340546, -0.019146040081977844, -0.0033651639241725206, 0.014322076924145222, -0.002455052686855197, 0.0015430690255016088, -0.015063649043440819, -4.514857937465422e-05, 0.0009719087393023074, -0.01916102133691311, -0.008104857988655567, 0.00019662894192151725, 0.003295875620096922, -0.0071535478346049786, 0.035505566745996475, -0.004610480275005102, 0.003771530231460929, -0.002683516824617982, 0.005142314825206995, -0.0015018705744296312, 0.019116077572107315, -0.01641945168375969, -0.009887626394629478, 0.0017930686008185148, -0.0076629105024039745, 0.024958766996860504, -0.021408209577202797, 0.004254675470292568, 0.005164786707609892, 0.013138558715581894, 0.015340802259743214, -0.0038352005649358034, -0.008299613371491432, -0.0045168474316596985, -0.007655419874936342, -0.020778996869921684, -0.0023426932748407125, -0.007307105697691441, -0.033647891134023666, 0.008352047763764858, -0.004149806685745716, -0.02148311585187912, -0.005902613513171673, -0.011602980084717274, 0.008689125999808311, -0.0008239689050242305, 0.01824716478586197, 0.015258405357599258, 0.007805232424288988, 0.004902614746242762, -0.009363282471895218, -0.0045692818239331245, -0.010269648395478725, 0.02242693491280079, -0.021887609735131264, 0.0069475555792450905, 0.007569277659058571, -0.02380521036684513, 0.005142314825206995, -0.031820181757211685, 0.005797744728624821, -0.010104854591190815, -0.02197749726474285, -0.03313852846622467, -0.007546805776655674, 0.00714231189340353, 0.0011769646080210805, -0.019550533965229988, -0.0013642302947118878, 0.021722815930843353, -0.011250920593738556, -0.01671907678246498, -0.008329575881361961, 0.013228446245193481, -0.0032322052866220474, 0.02585764229297638, 0.010921332985162735, 0.006131077650934458, 0.0002584265894256532, -0.008187253959476948, -0.01067414227873087, -0.03415725380182266, -0.006940064951777458, 0.008644182235002518, 0.0005042128032073379, 0.0023726557847112417, -1.6415004211012274e-05, 0.0011048673186451197, 0.0028445653151720762, -0.023071128875017166, -0.004501866176724434, -0.0007687255274504423, -0.012314589694142342, -0.006464410573244095, -0.004835199099034071, -0.033288341015577316, 0.021438172087073326, 0.0030842653941363096, -0.006310852710157633, -0.010704104788601398, -0.013655411079525948, -0.011977511458098888, -0.007014971226453781, -0.010299610905349255, 0.006003736983984709, -0.009573020040988922, 0.016329564154148102, -0.009707851335406303, 0.02053929679095745, 0.001876401831395924, -0.005269655492156744, -0.0014859529910609126, 0.011415714398026466, 0.010299610905349255, -0.006861413363367319, 0.0017378252232447267, -0.01047938596457243, -0.027580484747886658, 0.005543063394725323, -0.011303354986011982, -0.022576747462153435, 0.0016966268885880709, 0.01175279263406992, -0.005194749217480421, -0.016209715977311134, 0.001136702485382557, -0.00022975154570303857, -0.010779011063277721, 0.006426957435905933, 0.008299613371491432, -0.0016460651531815529, 0.0008080513216555119, 0.013692864216864109, 0.0023389479611068964, -0.023565510287880898, 0.00920597929507494, -0.0104494234547019, -0.0034812684170901775, 0.010441932827234268, -0.002252805745229125, 0.00966290757060051, 0.016074884682893753, -0.022651653736829758, -0.031820181757211685, -0.00440823333337903, 0.0020149785559624434, 0.0018333307234570384, -0.019235927611589432, -0.013932564295828342, 0.012524327263236046, -0.016659151762723923, 0.008831447921693325, 0.001163856009952724, -0.013003727421164513, 0.008569275960326195, -0.0006231264560483396, 0.008426954038441181, -0.0030074864625930786, 0.03973028063774109, 0.0033820178359746933, 0.006314598023891449, 0.004348308313637972, 0.029003703966736794, 0.021393228322267532, -0.02341569773852825, 0.004808981902897358, 0.0055131008848547935, 0.011595489457249641, -0.004370780196040869, -0.00674156378954649, -0.005048681981861591, 0.035535529255867004, 0.003299620933830738, -0.007449427619576454, -0.01172283012419939, -0.03391755372285843, -0.018846414983272552, -0.024149779230356216, 0.0018698475323617458, -0.005363288335502148, 0.0024325808044523, 0.027565503492951393, 0.01002245768904686, 0.003411980113014579, -0.020419446751475334, -0.002687262138351798, -0.019550533965229988, 0.016179753467440605, 0.03161044418811798, 0.0040262117981910706, 0.013700354844331741, 0.021722815930843353, 0.0187415461987257, -0.009775266982614994, -0.018951283767819405, 0.009490623138844967, 0.0223370473831892, 0.0030243403743952513, 0.009048676118254662, -0.01613480970263481, -0.018501846119761467, -0.01457675825804472, -0.0032659131102263927, 0.010157288983464241, -0.006363287102431059, -0.01408986747264862, -0.00845691654831171, 0.014044923707842827, -0.012494364753365517, 0.018816452473402023, 0.020359521731734276, -0.006561788730323315, -0.0007696618558838964, 0.005808980669826269, -0.007573022972792387, -0.0042359489016234875, -0.005161041393876076, -0.013573015108704567, 0.009880135767161846, 0.002479397226125002, -0.0019999973010271788, 0.014112339355051517, -0.019835177809000015, 0.010793992318212986, 0.006689129397273064, -0.012546799145638943, -0.030861379578709602, -0.004580517765134573, 0.005756546277552843, 0.0026760261971503496, -0.0056891306303441525, -0.008726579137146473, -0.0007631075568497181, 0.004906360059976578, -0.011887623928487301, 0.0013520580250769854, -0.0012059907894581556, -0.007962536066770554, 0.004385761450976133, 0.001368911936879158, 0.00884642917662859, 0.015355783514678478, 0.011977511458098888, -0.013715336099267006, 0.002610483206808567, 0.009415716864168644, -0.007112349383533001, 0.005999991670250893, -0.012629196047782898, 0.007685382384806871, -0.016494357958436012, -0.031161004677414894, 0.015610464848577976, 0.01503368653357029, -0.008996241725981236, -0.004355798941105604, -0.01638948917388916, 0.0008464407874271274, -0.005318344570696354, -0.007569277659058571, 0.011161033064126968, -0.008973769843578339, 0.017558027058839798, 0.02912355400621891, 0.004715349059551954, 0.0030280856881290674, -0.002612355863675475, -0.010209723375737667, -0.015318330377340317, 0.007835195399820805, -0.0004705049504991621, -0.013295861892402172, -0.01851682737469673, -0.005861415062099695, 0.00592508539557457, 0.01713855192065239, 0.0004789319064002484, 0.007595494855195284, 0.01411982998251915, -0.005659168120473623, -0.01220972090959549, -0.002814602805301547, -0.009318338707089424, 0.02435951679944992, -0.00697751808911562, 0.007441936992108822, -0.017123570665717125, -0.0025168503634631634, 0.025677867233753204, -0.0038183466531336308, 0.011048673652112484, 0.0379924550652504, 0.013475636951625347, 0.0010262157302349806, 0.02178274095058441, -0.01139324251562357, -0.0021161017939448357, -0.009453170001506805, 0.019415702670812607, -0.004411978647112846, -0.0020898845978081226, -0.007033697795122862, 0.01110110804438591, 0.0031816435512155294, -0.023430678993463516, 0.005250928923487663, -0.01418724562972784, -0.002352056559175253, -0.017917577177286148, -0.002074903342872858, -0.01998499035835266, 0.01652432046830654, -0.006183512043207884, -0.012561780400574207, 0.005887632258236408, 0.0008731260895729065, 0.008726579137146473, 0.011348298750817776, 0.017228439450263977, -0.007992498576641083, -0.012689121067523956, -0.020359521731734276, -0.019475627690553665, 0.01929585263133049, 0.010074892081320286, 0.010928823612630367, 0.007895120419561863, 0.010104854591190815, -0.018456902354955673, 0.004247184842824936, 0.00017052878683898598, -0.0019868887029588223, 0.0015580502804368734, 0.00835953839123249, 0.008741560392081738, 0.00826216023415327, -0.01661420799791813, -0.006981263402849436, -0.0031310818158090115, -0.005999991670250893, 0.010471895337104797, 0.01763293333351612, 0.026292098686099052, -0.014254661276936531, 0.001293069333769381, -0.012037436477839947, -0.01674903929233551, -0.012149795889854431, 0.00940073560923338, -0.006621713750064373, 0.008711597882211208, 0.00808238610625267, 0.0021573002450168133, -0.004558045882731676, 0.014224698767066002, 0.004063664935529232, 0.01805240847170353, 0.014943799003958702, 0.0038426911924034357, -0.034816429018974304, -0.019955027848482132, -0.008149800822138786, -0.012651667930185795, -0.01500372402369976, 0.013745298609137535, -0.0034026168286800385, 0.0187415461987257, -0.015550539828836918, 0.014344548806548119, -0.019026190042495728, -0.0173033457249403, 0.007505607325583696, 0.002505614422261715, 0.008546804077923298, -0.006550552789121866, 0.013445674441754818, 0.021033678203821182, 0.014861402101814747, -0.032569244503974915, -0.0005014038179069757, -0.018037427216768265, 0.02106364071369171, -0.021632928401231766, -0.0006956919096410275, 0.007430701050907373, -0.0024662886280566454, 0.015745297074317932, 0.009977513924241066, -0.00522471172735095, 0.010659161023795605, 0.022801466286182404, -0.007284633815288544, -0.014696608297526836, -0.012524327263236046, -2.79069718089886e-06, 0.008576766587793827, -0.007426955737173557, -0.02530333586037159, 0.02262169122695923, 0.005951302591711283, -0.019011208787560463, 0.003623590338975191, 0.010247176513075829, 0.009355791844427586, -0.012396986596286297, -0.0008286505471915007, -0.0028052395209670067, 0.0016086120158433914, -0.00116291968151927, -0.002683516824617982, -0.029827672988176346, 0.015910090878605843, 0.012074889615178108, 0.0005894186324439943, -0.020689109340310097, 0.007857667282223701, -0.018816452473402023, 0.01319099310785532, 0.01943068392574787, 0.0279849786311388, 0.009228451177477837, 0.014254661276936531, 0.00248126988299191, 0.029887598007917404, 0.01234455220401287, -0.019011208787560463, 0.010142307728528976, 0.0019213455962017179, -0.008037442341446877, -0.019400721415877342, 0.0019176002824679017, -0.015445671044290066, 0.0017612334340810776, 0.0006427893531508744, 0.004970030393451452, -0.020389484241604805, -0.010202232748270035, 0.004760292824357748, -0.026067379862070084, 0.008149800822138786, 0.0019082369981333613, 0.013445674441754818, -0.005947557277977467, 0.0024232175201177597, -0.0007621712284162641, 0.007232199423015118, -0.02386513538658619, -0.00927339494228363, -0.00044967164285480976, -0.014883873984217644, 0.013168521225452423, -0.0034550512209534645, -0.005022464785724878, -0.009520585648715496, -0.014456908218562603, 0.001139511470682919, 0.014307095669209957, 0.023355772718787193, 0.005018719471991062, 0.003649807535111904, 0.021378247067332268, 0.017782745882868767, -3.5083048715023324e-05, 0.0026479363441467285, 0.0002713011053856462, -0.012247174046933651, 0.0005215348210185766, 0.008067404851317406, -0.022846410050988197, 0.007213472854346037, 0.006198493298143148, 0.024838916957378387, -0.01605990342795849, 0.023955022916197777, 0.014172264374792576, 0.002477524569258094, -0.011737811379134655, 0.005086135119199753, 0.003936324268579483, 0.011288373731076717, -0.000139512907480821, -0.0008581448346376419, 0.010299610905349255, -0.018172258511185646, -0.01613480970263481, 0.0015056158881634474, -0.01175279263406992, -0.012254664674401283, 0.014898855239152908, 1.800968857423868e-05, -0.001138575142249465, -0.012981255538761616, 0.015325821004807949, -0.011602980084717274, -0.005438194610178471, 0.029198460280895233, 0.003494377015158534, -0.0094981137663126, 0.007333322893828154, 0.009318338707089424, -0.004498120862990618, -0.01438200194388628, -0.022996222600340843, 0.00683145085349679, -0.002147936960682273, 0.00046184391248971224, 0.012037436477839947, 0.005786508787423372, 0.010599236004054546, 0.009850173257291317, 0.006715346593409777, -0.011887623928487301, 0.006779016926884651, -0.010172270238399506, -0.006535571534186602, -0.00963294506072998, 0.0067602903582155704, 0.003544938750565052, -0.008232197724282742, -0.010816464200615883, 0.02128835953772068, 0.01641945168375969, -0.006314598023891449, 0.0018586115911602974, 0.0026011199224740267, 0.00042930649942718446, -0.0004967221757397056, 0.0030823927372694016, -0.00021675998868886381, -0.009999985806643963, 0.009865154512226582, 0.012217211537063122, 0.008696616627275944, -0.008764032274484634, 0.013535561971366405, 0.0009644181118346751, 0.015078630298376083, 0.02151307836174965, -0.00638201367110014, -0.004471903666853905, 0.027116067707538605, -0.01035204529762268, 0.0031572990119457245, 0.00073454953962937, -0.00031039281748235226, -0.013423202559351921, 0.002962542697787285, -2.9494340196833946e-05, -0.003970032092183828, -0.010329573415219784, 0.008277141489088535, 0.004947558511048555, -0.015610464848577976, -0.009250923059880733, 0.0021404463332146406, -0.01635952666401863, 0.001797750242985785, 0.0068464321084320545, -0.006131077650934458, 0.0076366933062672615, -0.016823945567011833, 0.01064417976886034, 0.012202230282127857, -0.011677886359393597, -0.007112349383533001, -0.011610470712184906, -0.008861410431563854, 0.009962532669305801, -0.013101105578243732, 0.006925083696842194, 0.01402245182543993, 0.0007879202603362501, -0.016149790957570076, -0.017947539687156677, 0.005850179120898247, -0.007955045439302921, -0.008127329871058464, 0.026172248646616936, 0.013543052598834038, -0.010958786122500896, 0.0029775239527225494, -0.032149769365787506, -0.017453158274292946, -0.01694379560649395, -0.016659151762723923, -0.019670384004712105, 0.00904118549078703, 0.0018258400959894061, -0.0069962446577847, -0.009033694863319397, 0.020838921889662743, 0.012119833379983902, 0.02791007235646248, -0.015625447034835815, -0.020943790674209595, 0.0028501832857728004, 0.006434448063373566, 0.012861405499279499, -0.01671907678246498, 0.001446627196855843, 0.0019307088805362582, 0.0033314561005681753, -0.016089865937829018, 0.0033820178359746933, 0.005498119629919529, -0.013902601785957813, -0.03490631654858589, -0.0043370723724365234, 0.014584248885512352, -0.0075355698354542255, 0.0022378244902938604, 0.021767759695649147, -0.003589882515370846, 0.014966270886361599, -0.01564042828977108, -0.013445674441754818, -0.005801490042358637, 0.023370753973722458, -0.004329581744968891, 0.0031760255806148052, 0.03580519184470177, -0.00709362281486392, 0.003565537976101041, 0.008726579137146473, -0.0070486790500581264, -0.0159700158983469, 0.024898841977119446, -0.009475641883909702, 0.010681632906198502, -0.0027940035797655582, -0.011640433222055435, 0.020524315536022186, -0.008254669606685638, 0.01641945168375969, -0.021737797185778618, -0.0042359489016234875, -0.015595483593642712, 0.010801482945680618, -0.01149062067270279, 0.02106364071369171, -0.0027003707364201546, -0.012367024086415768, -0.007307105697691441, 0.0012743427651003003, -0.004588008392602205, 0.011228448711335659, -0.015475633554160595, -0.012202230282127857, -0.007632947992533445, -0.009445679374039173, -0.009063657373189926, -0.026067379862070084, 0.010771520435810089, -0.013423202559351921, 0.004970030393451452, 0.0018267764244228601, 0.039820168167352676, -0.004629206843674183, -0.013348296284675598, -0.00881646666675806, 0.0211535282433033, 0.0027940035797655582, -0.008172272704541683, -0.017737802118062973, 0.030501829460263252, 0.01674903929233551, 0.010704104788601398, -0.014082376845180988, 0.011445676907896996, -0.01907113380730152, -0.0001887871912913397, -0.004157297313213348, -0.01227713655680418, 0.019640421494841576, -0.0030749021098017693, -0.02882392890751362, -0.0018267764244228601, -0.02696625515818596, -0.011438186280429363, 0.0015121701871976256, -0.0006282762624323368, 0.007217218168079853, 0.020494353026151657, 0.010666651651263237, -0.006486882455646992, -0.004876397550106049, 0.010247176513075829, 0.022352028638124466, 0.053632885217666626, 0.012104852125048637, 0.014344548806548119, -0.015205970965325832, 0.00227715028449893, -0.03685387969017029, -0.0033146021887660027, -0.005999991670250893, -0.026082361117005348, -0.0026292097754776478, 0.014898855239152908, -0.004524338059127331, 0.026891348883509636, 0.011378261260688305, -0.01211234275251627, 0.006940064951777458, -0.0052322023548185825, -0.007573022972792387, -0.008269650861620903, -0.0007537442725151777, 0.01008987333625555, 0.017453158274292946, -0.018486864864826202, -0.00819474458694458, 0.024853898212313652, 0.005374524276703596, 0.010419460944831371, -0.004973775707185268, 0.02007487788796425, 0.019999971613287926, 0.016659151762723923, -0.01564042828977108, -0.03053179197013378, 0.0223370473831892, 0.003876399016007781, 0.022217197343707085, 0.007659165188670158, 0.016179753467440605, 0.004400742705911398, -0.0005046809674240649, -0.013325824402272701, -0.006011227611452341, 0.004546809941530228, -0.00042696567834354937, -0.008239688351750374, -0.0014578631380572915, 0.013460655696690083, 0.0009517776779830456, -0.00573032908141613, 0.010966276749968529, 0.005599243100732565, -0.011018711142241955, -0.02934827283024788, -0.0038651630748063326, 0.00774530740454793, 0.021228434517979622, 0.010531820356845856, -0.0047977459616959095, -0.001983143389225006, -0.013715336099267006, -0.001772469375282526, -0.0010973766911774874, 0.009782757610082626, 0.018067389726638794, -0.007516843266785145, 0.009415716864168644, -0.003192879492416978, 0.015400727279484272, 0.007752798032015562, -0.0007663847063668072, 0.029408197849988937, -0.017707839608192444, -0.000190074642887339, -0.037303317338228226, -0.016868889331817627, -0.02912355400621891, -0.04695124551653862, -0.01477151457220316, -0.012022455222904682, 0.014359530061483383, -0.00577901815995574, -0.02912355400621891, 0.006198493298143148, -0.0006151676643639803, -0.017228439450263977, -0.0024943784810602665, -0.0016385745257139206, 0.008097367361187935, 0.011827698908746243, -0.0012209720443934202, -0.025947529822587967, 0.004584263078868389, -0.019176002591848373, 0.009617963805794716, 0.009318338707089424, -0.011745302006602287, -0.004779019393026829, -0.008172272704541683, 0.01067414227873087, 0.010247176513075829, 0.0029213442467153072, 0.018486864864826202, 0.006116096395999193, 3.242036473238841e-05, -0.019176002591848373, -0.027146030217409134, -0.017947539687156677, 0.00015250446449499577, -0.005400741472840309, 0.023205960169434547, -0.011970020830631256, 0.002155427588149905, -0.01149062067270279, 0.011400733143091202, 0.004883888177573681, 0.014097358100116253, 0.008898863568902016, 0.020059896633028984, 0.005355797708034515, 0.009617963805794716, -0.014007470570504665, -0.001625465927645564, 0.042726531624794006, 0.013910092413425446, -0.0002579584252089262, -0.001395129133015871, 0.01273406483232975, 0.011250920593738556, -0.01522844284772873, -0.007722835522145033, 0.01586514711380005, -0.013655411079525948, 0.0048988694325089455, 0.006981263402849436, -0.003621717682108283, 0.00324905919842422, 0.0043370723724365234, 0.012644177302718163, 0.003853927133604884, -0.0037921294569969177, -0.01844192110002041, 0.01348312757909298, 0.023625435307621956, 0.008958788588643074, -0.016674133017659187, 0.007722835522145033, -0.035146016627550125, -0.0027715316973626614, 0.01671907678246498, 0.0008014970226213336, -0.010044929571449757, -0.01815727725625038, -0.006078643258661032, 0.005138569511473179, -0.009258413687348366, 0.004955049138516188, -0.0020187238696962595, 0.022471878677606583, -0.0037153505254536867, -0.0010842680931091309, -0.015190989710390568, 0.0018323943950235844, 0.015610464848577976, 0.011932567693293095, 0.0021104838233441114, -0.006861413363367319, -0.007625457365065813, 0.027790222316980362, -0.018591733649373055, -0.006460665259510279, -0.001772469375282526, 0.0010243430733680725, 0.00871908850967884, 0.00011142306175315753, 0.0058164712972939014, 0.008599238470196724, -0.006936319638043642, -0.007640438620001078, -0.008479388430714607, -2.662683436938096e-05, 0.004970030393451452, 0.004704113118350506, 0.020524315536022186, -0.0035374481230974197, -0.00782021414488554, -0.0039475602097809315, -0.014157283119857311, 0.019026190042495728, 0.0007556169293820858, 0.009348301216959953, 0.0004555236955638975, 0.012389495968818665, -0.01779772713780403, -0.008382010273635387, -0.0071273306384682655, 0.025572998449206352, 0.0012087997747585177, -0.001697563217021525, -0.031161004677414894, -0.0006221901276148856, -0.0024119815789163113, 0.013101105578243732, -0.0144793801009655, -0.0003937260480597615], "6a0a74b4-f508-4b7b-ae58-3336e57e9c16": [-0.01593085750937462, 0.006571101024746895, -0.005448837298899889, 0.007183244917541742, -0.02897481434047222, -0.017336521297693253, 0.023971859365701675, 0.03518694266676903, -0.020994270220398903, 0.046855464577674866, 0.030183987691998482, 0.032889511436223984, -0.02468224987387657, 0.007791610434651375, -0.012341124936938286, 0.021175647154450417, -0.021523283794522285, 0.028188852593302727, 0.019165396690368652, -0.03207332268357277, 0.06275609135627747, -0.02873297967016697, -0.04223037511110306, 0.016399413347244263, 0.0021066064946353436, -0.006843165028840303, -0.01710980199277401, 0.012628303840756416, -0.020903583616018295, -0.008962997235357761, 0.01857592537999153, 0.03258721902966499, 0.0042585572227835655, 0.008804293349385262, 0.002892569173127413, -0.029836351051926613, -0.0034688159357756376, 0.00949200987815857, -0.0038334571290761232, -0.034008000046014786, -0.022702228277921677, 0.039267901331186295, 0.028853897005319595, 0.008131690323352814, -0.03415914624929428, 0.005611319560557604, 0.03660771995782852, -0.008320624008774757, -0.026178602129220963, 0.022399935871362686, 0.004409703891724348, 0.002017807913944125, -0.006695797201246023, -0.003128735814243555, 0.006608887575566769, -0.054170962423086166, 0.011487145908176899, 0.08693955838680267, 0.01806202530860901, -0.05985407903790474, 0.016943540424108505, -0.005936285015195608, 0.023457961156964302, 0.0054828450083732605, -0.005448837298899889, 0.0019242858979851007, 0.0035670611541718245, -0.0065824370831251144, -0.03137804567813873, 0.0010164612904191017, 0.03334295377135277, 0.0024976986460387707, -0.011079050600528717, 0.007644242141395807, -0.004575964994728565, 0.011033706367015839, 0.0016512772999703884, 0.00949200987815857, 0.039570193737745285, -0.008509556762874126, -0.013187546283006668, 0.0030399372335523367, 0.02744823321700096, 0.013973508961498737, 0.10338431596755981, 0.02445552870631218, -0.017230719327926636, -0.05012023076415062, -0.03579152747988701, -0.03213378041982651, -0.005830482579767704, -0.005135207902640104, -0.030682772397994995, 0.010134383104741573, 0.015160010196268559, 0.006469076965004206, 0.03328249603509903, 0.002527927979826927, 0.0018165939254686236, -0.005104978568851948, -0.018832873553037643, 0.04008409380912781, -0.033766165375709534, 0.026103029027581215, 0.0179713387042284, -0.0056226556189358234, 0.005513074342161417, -0.012620746158063412, -0.029821235686540604, 0.027720296755433083, 0.03542877733707428, -0.045918356627225876, 0.010723855346441269, -0.007576226256787777, -0.023397503420710564, -0.01771438866853714, -0.023306814953684807, -0.007043434306979179, -0.0186061542481184, -0.044134825468063354, 0.014132212847471237, -0.019603721797466278, -0.026072798296809196, 0.012137076817452908, -0.020238537341356277, 0.006155447568744421, 0.00370498257689178, 0.024984542280435562, 0.010708740912377834, -0.0024958092253655195, -0.009204831905663013, -0.02379048429429531, 0.027040136978030205, -0.006733583752065897, 0.010444234125316143, -0.002767873229458928, 0.010504692792892456, 0.05707297846674919, -0.020888468250632286, 0.03264767676591873, -0.04210945963859558, -0.04419528320431709, -0.0051616583950817585, -0.013368922285735607, -0.0012384579749777913, -0.01524314098060131, -0.01983044110238552, 0.03763552010059357, -0.01862126775085926, 0.016278496012091637, -0.07158305495977402, -0.024032318964600563, 0.016066890209913254, 0.010610495693981647, 0.0010542479576542974, -0.015809940174221992, 0.012205093167722225, 0.0432581752538681, 0.006457740906625986, 0.009786746464669704, 0.0015388618921861053, -0.06160737946629524, 0.01831897534430027, 0.031075753271579742, 0.04062822088599205, 0.015568106435239315, 0.0408700555562973, 0.025286836549639702, -0.02811327949166298, 0.014472292736172676, 0.028581833466887474, 0.005293911788612604, 0.012613188475370407, -0.012250436469912529, -0.016656361520290375, -0.015477417968213558, 0.03054673969745636, 0.04969702288508415, 0.0007562056416645646, -0.011766767129302025, -0.009083914570510387, -0.003659638576209545, 0.004575964994728565, 0.004848028998821974, 0.005758687853813171, 0.056045182049274445, 0.01989090070128441, 0.03509625419974327, 0.005656663794070482, -0.01706445775926113, -0.012734105810523033, -0.013807247392833233, 0.013761903159320354, 0.024334611371159554, 0.014736799523234367, -0.026148371398448944, -0.00841131154447794, 0.003336562542244792, 0.02835511416196823, -0.015311156399548054, -0.01127554103732109, -0.0365774929523468, -0.022490622475743294, 0.06115393713116646, -0.04343954846262932, 0.05686137452721596, -0.01649009995162487, -0.04640202596783638, 0.013444495387375355, -0.02714594081044197, 0.021205876022577286, -0.023004522547125816, -0.011842341162264347, 0.009983236901462078, 0.011094165034592152, 0.0011014812625944614, -0.014683897607028484, 0.029534056782722473, 0.043197713792324066, -0.009922778233885765, 0.0020537052769213915, 0.02318589761853218, -0.028642291203141212, -0.02927710860967636, -0.046583399176597595, -0.03857262805104256, 0.0028453359846025705, 0.014699012972414494, -0.022656884044408798, -0.0015284705441445112, 0.03627519682049751, -0.007251260802149773, 0.007028319872915745, -0.029443370178341866, -0.04090028628706932, 0.010157055221498013, 0.027070367708802223, -0.018999135121703148, -0.0012582959607243538, -0.013323578052222729, -0.008668260648846626, 0.01857592537999153, -0.0025222599506378174, 0.02930733747780323, 0.005611319560557604, 0.012567845173180103, -0.011623178608715534, 0.03391731157898903, 0.018470121547579765, -0.016943540424108505, 0.008033445104956627, 0.03146873414516449, -0.006979196798056364, -0.014540309086441994, -0.030380478128790855, 0.05012023076415062, 0.04851807653903961, 0.0053581492975354195, -0.001081643276847899, -0.023412616923451424, -0.00601941579952836, 0.00991522055119276, -0.006401061080396175, -0.0038636864628642797, 0.03878423199057579, 0.002218077192083001, 0.0062461355701088905, -0.020540831610560417, 0.0015407513128593564, 0.04328840225934982, 0.010058810003101826, -0.014238015748560429, 0.0021519504953175783, -0.021810462698340416, -0.0021273891907185316, 0.006926295813173056, -0.006208349019289017, 0.04129326716065407, 0.017880650237202644, -0.014502521604299545, -0.028007475659251213, -0.010738969780504704, -0.015311156399548054, 0.024893855676054955, -0.0030833918135613203, 0.009665829129517078, -0.016459871083498, -0.009650714695453644, -0.0259216520935297, -0.008615359663963318, -0.018787529319524765, -0.0007198359817266464, 0.011804553680121899, 0.041958313435316086, -0.007304162252694368, -0.015303599648177624, -0.005524410400539637, -0.013913050293922424, 0.003329005092382431, 0.034189373254776, -0.00990766379982233, -0.029413139447569847, -0.012114404700696468, -0.011071492917835712, 0.022702228277921677, -0.03778666630387306, 0.01361075695604086, 0.007122786249965429, -0.03352433070540428, 0.028884125873446465, 0.030335133895277977, 0.010414005257189274, 0.007413743529468775, 0.002357887802645564, -0.0027149717789143324, 0.00838108267635107, 0.000852561614010483, -0.004526842385530472, 0.011063935235142708, -0.054503485560417175, 0.02014784887433052, 0.015689022839069366, -0.08500488102436066, 0.045011475682258606, 0.028339998796582222, -0.027266858145594597, 0.03110598213970661, -0.006918738130480051, -0.022777801379561424, -0.03198263421654701, -0.023397503420710564, -0.011222639121115208, -0.00915192998945713, 0.007768938317894936, -0.012658532708883286, -0.01890844665467739, -0.022747572511434555, -0.021432597190141678, 0.0110110342502594, -0.006695797201246023, -0.022097641602158546, -0.030985064804553986, 0.048125095665454865, 0.02223367430269718, 0.008078789338469505, 0.003296886570751667, 0.025589128956198692, 0.014578095637261868, -0.05096665397286415, -0.001976242521777749, 0.0009172713034786284, -0.04727867618203163, 0.00949200987815857, 0.02841557189822197, -0.014449620619416237, 0.020873352885246277, -0.04183739423751831, 0.005471508949995041, -0.00458352267742157, -0.016550559550523758, -0.004568407777696848, -0.02720639854669571, -0.021870922297239304, -0.008237493224442005, -0.004296343773603439, 0.021432597190141678, 0.017412094399333, -0.014434506185352802, 0.011472031474113464, -0.016898196190595627, -0.024954313412308693, -0.0017844752874225378, 0.0034688159357756376, 0.018772415816783905, -0.03941904753446579, -0.029125960543751717, 0.011502261273562908, -0.0014084979193285108, 0.005645327735692263, 0.034370750188827515, 0.015673909336328506, 0.006661789026111364, -0.027357544749975204, -0.010315759107470512, 0.05096665397286415, 0.017850421369075775, 0.032859284430742264, -0.0481855534017086, -0.020858239382505417, -0.009476895444095135, -0.0427745059132576, -0.003073945175856352, -0.023291699588298798, -0.015447189100086689, 0.004836692940443754, 0.016701705753803253, -0.01054247934371233, 0.0018430445343255997, -0.00043383814045228064, -0.029382910579442978, 0.033131346106529236, -0.0046402025036513805, 0.006680682301521301, 0.009960564784705639, 0.014086868613958359, -0.03751460090279579, -0.012462042272090912, -0.014268244616687298, 0.004534399602562189, -0.006045866291970015, 0.0025487104430794716, 0.013036399148404598, 0.0488203726708889, 0.014918175525963306, 0.023714911192655563, 0.0015558659797534347, -0.00964315701276064, 0.028778323903679848, -0.05828215181827545, -0.020933812484145164, 0.0029057946521788836, 0.026329748332500458, 0.00541482912376523, 0.02041991427540779, 0.01707957312464714, 0.023140553385019302, 0.032859284430742264, 0.027115710079669952, -0.013656101189553738, -0.001910115941427648, -0.002854782622307539, 0.0031325144227594137, 0.004628866445273161, -0.0063821678049862385, -0.002527927979826927, 0.002342773135751486, -0.009227504022419453, -0.03261744976043701, 0.02809816412627697, 0.00525612523779273, 0.03845170885324478, 0.008199706673622131, -0.003933591768145561, 0.012295780703425407, -0.03836102411150932, -0.022384820505976677, -0.036789096891880035, -0.01269631925970316, 0.020828010514378548, -0.013777017593383789, 0.0034650370944291353, 0.006223463919013739, -0.049334269016981125, -0.012628303840756416, 0.0029303559567779303, -0.005395935848355293, -0.007553554140031338, -0.014751913957297802, 0.02103961445391178, -0.015054207295179367, -0.031015295535326004, 0.014699012972414494, 0.04419528320431709, -0.0023201012518256903, 0.015492532402276993, -0.027402888983488083, -0.009061242453753948, 0.01866661198437214, 0.011184852570295334, -0.00023758366296533495, 0.00010934516467386857, 0.02747846208512783, -0.010912789031863213, 0.025846078991889954, -0.01113950926810503, -0.009567583911120892, -0.032194238156080246, 0.008396197110414505, 0.0017958112293854356, 0.006835607811808586, 0.002981367753818631, -0.00795787200331688, -0.04588812589645386, -0.008902538567781448, 0.006930074188858271, -0.00013697665417566895, -0.006665567867457867, -0.01707957312464714, 0.011404015123844147, 0.022520853206515312, 0.02992703951895237, -0.0029719211161136627, -0.00931063387542963, 0.005384599789977074, -0.006419954355806112, -0.03996317833662033, 0.008222377859055996, -0.004439933225512505, -0.034642815589904785, -0.05217582732439041, 0.021508170291781425, -0.0006145056104287505, 0.0033649024553596973, 0.03019910305738449, 0.0009215222671627998, 0.033433642238378525, -0.0014793479349464178, 0.018832873553037643, 0.011880127713084221, -0.002571382559835911, -0.014396719634532928, 0.049334269016981125, -0.014494964852929115, -0.013777017593383789, 0.007194580975919962, 0.009673385880887508, -0.011608063243329525, -0.01235623937100172, 0.028339998796582222, -0.005845597013831139, -0.003776777070015669, -0.022641770541667938, -0.02386605739593506, -0.007270154543220997, -0.04857853800058365, -0.009665829129517078, 0.00011696153524098918, -0.015288484282791615, 0.02477293834090233, -0.04894128814339638, 0.008524671196937561, 0.015416959300637245, 0.03542877733707428, 0.008056117221713066, 0.015794826671481133, -4.620010258804541e-06, 0.00883452221751213, 0.010950575582683086, 0.033433642238378525, 0.016233151778578758, -0.016308724880218506, 0.016595903784036636, 0.011358671821653843, -0.0007491206051781774, -0.01775973290205002, 0.02779586985707283, -0.02561935968697071, 0.011335999704897404, -0.006812935695052147, -0.0009248286369256675, 0.015809940174221992, 0.00557353300973773, -0.019029363989830017, -0.0027584265917539597, -0.0024429080076515675, -0.04313725605607033, 0.016565673053264618, -0.0367286391556263, -0.02690410614013672, -0.031257130205631256, -0.007459087762981653, 0.032284926623106, 0.03210354968905449, 0.0021746226120740175, -0.004300122614949942, 0.0028037705924361944, -0.04606950283050537, 0.019316542893648148, -0.012144634500145912, -0.002412678673863411, 0.0287027508020401, -0.011547604575753212, 0.032798826694488525, 0.020042046904563904, -0.010141940787434578, 0.03358478844165802, -0.01543207373470068, 0.025846078991889954, -0.04446734860539436, -0.021901151165366173, 0.024667134508490562, -0.022127870470285416, 0.010021023452281952, 0.011252868920564651, 0.013346250168979168, 0.029685204848647118, -0.027025023475289345, -0.028536489233374596, -0.007493095472455025, 0.009242618456482887, -0.009386207908391953, 0.03137804567813873, 0.007504431530833244, -0.014169999398291111, -0.029171304777264595, 0.008313066326081753, 0.004315237049013376, 0.00975651666522026, 0.01371655985713005, 0.014721685089170933, 0.031257130205631256, 0.006839386187493801, 0.0032798824831843376, -0.024062547832727432, -0.016731934621930122, 0.029791006818413734, 0.026677384972572327, 0.0020310331601649523, -0.009393764659762383, -0.0005186219932511449, -0.025453098118305206, -0.014132212847471237, 0.023926516994833946, 0.012114404700696468, 0.013361364603042603, 0.026798302307724953, 0.0494551882147789, 0.027297087013721466, 0.004723333287984133, 0.0029927038121968508, 0.005966514348983765, -0.026148371398448944, 0.05093642324209213, -0.029806122183799744, 0.023941630497574806, 0.0037900025490671396, -0.016731934621930122, -0.01739698089659214, -0.016444755718111992, 0.012280666269361973, 0.0022142985835671425, -0.00899322610348463, -0.02561935968697071, -0.030682772397994995, 0.042260605841875076, -0.012779450044035912, -0.010285530239343643, -0.003463147906586528, -0.030440937727689743, -0.027070367708802223, -0.02350330539047718, 0.012635860592126846, -0.01647498644888401, 0.016867967322468758, -0.014404276385903358, 0.0022539745550602674, -0.027886558324098587, -0.015764595940709114, 0.025256607681512833, 0.022656884044408798, -0.021780233830213547, 0.007035877089947462, 0.014426948502659798, 0.020072275772690773, 0.006865837145596743, -0.02315566875040531, -0.006930074188858271, 0.003209977177903056, 0.013686330057680607, 0.00046666531125083566, 0.004277450498193502, -0.007255039643496275, -0.0005828593275509775, 0.011222639121115208, 0.01621803641319275, 0.011366228573024273, 0.013739231042563915, -0.017200490459799767, 0.04029569774866104, -0.009439108893275261, 0.005724679678678513, -0.015212911181151867, -0.003604847937822342, 0.012771892361342907, 0.006880951579660177, -0.0016966213006526232, -0.0011062045814469457, -0.008781621232628822, 0.011895242147147655, 0.005520631559193134, -0.01649009995162487, -0.03808895871043205, -0.023911401629447937, 0.023941630497574806, 0.011547604575753212, -0.012582959607243538, -0.006053423509001732, 0.0055433036759495735, -0.007341948803514242, -0.004455047659575939, 0.015991317108273506, -0.010345988906919956, -0.014887945726513863, 0.01990601420402527, 0.029745662584900856, 0.0026507345028221607, -0.006128997076302767, 0.004024279769510031, 0.0201931931078434, -0.023578878492116928, -0.05398958548903465, -0.028596948832273483, -0.007912527769804, -0.010648282244801521, 0.01707957312464714, 0.03155942261219025, -0.018772415816783905, -0.02291383408010006, 0.004791349172592163, -0.012310895137488842, 0.015031535178422928, 0.011993487365543842, -0.00026592364883981645, 0.029095731675624847, 0.009386207908391953, 0.010376217775046825, -0.00308905984275043, 0.020223423838615417, -0.004953831899911165, 0.02533218078315258, -0.011524932458996773, 0.032859284430742264, -0.016883082687854767, -0.042623359709978104, -0.033796392381191254, 0.007050991524010897, -0.002238859888166189, -0.008373524993658066, 0.009718730114400387, 0.008192148990929127, 0.016097119078040123, -0.023881172761321068, -0.011623178608715534, 0.0032931079622358084, 0.009031012654304504, -0.02502988651394844, 0.0017646373016759753, 0.0060647595673799515, 0.022082526236772537, -0.007768938317894936, 0.0210698451846838, -0.0378471240401268, 0.044769641011953354, -0.04026547074317932, 0.0054186079651117325, -0.01040644757449627, 0.042290836572647095, -0.009136815555393696, -0.017185375094413757, 0.01482748705893755, 0.0384819395840168, -0.02658669836819172, 0.05538013577461243, 0.028173737227916718, 0.008078789338469505, -0.005830482579767704, 0.021236104890704155, 0.034703273326158524, -0.006869615521281958, 0.03086414746940136, -0.012446927838027477, -0.0076631358824670315, 0.015001306310296059, -0.007001868914812803, 0.011706308461725712, -0.0027773198671638966, -0.0034404757898300886, 0.03932835906744003, 0.006960303522646427, 0.004526842385530472, 0.05350591614842415, 0.011668521910905838, 0.026949450373649597, 0.041353724896907806, -0.001705123228020966, -0.004477719776332378, -0.0023371053393930197, 0.00010562553507043049, -0.017034228891134262, -0.021855806931853294, -0.011192410252988338, -0.017215603962540627, 0.014207785949110985, -0.020828010514378548, 0.009786746464669704, -0.013006170280277729, 0.05320362374186516, 0.021130302920937538, -0.0002301444037584588, 0.002781098475679755, -0.005097420886158943, -0.00793519988656044, -0.03322203457355499, -0.013686330057680607, 0.009219946339726448, -0.01222776435315609, 0.0026488453149795532, -0.020828010514378548, 0.0049613891169428825, 0.01219753548502922, 0.014358933083713055, -0.023986974731087685, 0.03878423199057579, 0.04495101794600487, -0.0205106008797884, -0.018455008044838905, 0.0004154171620029956, 0.002733865287154913, -0.0002996955008711666, 0.010209957137703896, -0.0025978332851082087, -0.010414005257189274, -0.028929470106959343, 0.03509625419974327, -0.032526761293411255, -0.01203883159905672, 0.0022671998012810946, 0.010081482119858265, 0.00711145019158721, 0.004228327888995409, -0.008222377859055996, 0.0097791887819767, 0.0053468132391572, 0.015477417968213558, -0.013066628947854042, -0.024908969178795815, 0.019422346726059914, -0.0007269209600053728, -0.005241010338068008, 0.019029363989830017, 0.0011477699736133218, -0.027312202379107475, -0.012023717164993286, 0.045706748962402344, 0.013996181078255177, 0.020555945113301277, -0.006680682301521301, -0.006960303522646427, -0.025876307860016823, 0.02043502777814865, 0.0001885790697997436, -0.054503485560417175, 0.0005540470010600984, -0.0005781359504908323, -0.014434506185352802, -0.0003589733096305281, 0.037998270243406296, 0.010217513889074326, 0.03660771995782852, 0.05525922030210495, 0.006045866291970015, -0.024591561406850815, 0.002138725249096751, 0.00479890638962388, -0.03687978535890579, 0.022777801379561424, 0.009522239677608013, 0.02569493278861046, -0.014094426296651363, 0.01766904443502426, -0.00915192998945713, -0.007511989213526249, -0.006197012960910797, -0.023956745862960815, -0.007088778540492058, 0.003738990519195795, -0.018424777314066887, -0.006374610587954521, -0.002705525141209364, 0.031891945749521255, -0.007387293037027121, 0.03603336215019226, 0.024485759437084198, 0.007119007874280214, -0.038058727979660034, 0.005656663794070482, -0.01404152438044548, 0.011154623702168465, -0.01591574400663376, -0.004473940934985876, 0.006828050594776869, 0.018863102421164513, 0.017608586698770523, 0.024939198046922684, -0.035005565732717514, 0.00032402065698988736, -0.008872308768332005, -0.0013433159328997135, -0.004145197104662657, 0.012053946033120155, -0.022082526236772537, -0.010104154236614704, 0.02108495868742466, -0.008449098095297813, -0.015091993845999241, 0.003657749155536294, 0.015046649612486362, -0.0087060471996665, -0.000489337311591953, -0.005615098401904106, 0.003236427903175354, -0.04924358054995537, -0.03050139546394348, 0.011502261273562908, 0.012499828822910786, -0.048699453473091125, 0.02776564098894596, 0.0070245410315692425, 0.0036256304010748863, 0.003918477334082127, 0.011917914263904095, 0.007904970087110996, -0.025498442351818085, -0.006117661017924547, 0.02776564098894596, 0.02140236645936966, 0.021583743393421173, 0.005074749235063791, -0.019346771761775017, -0.012809679843485355, 0.007738708984106779, 0.02164420112967491, 0.012598074041306973, -0.02081289514899254, 0.013074185699224472, -0.009665829129517078, -0.023775368928909302, -0.0007425079820677638, 0.005029405001550913, 0.0434093214571476, 0.007383514195680618, 0.009446666575968266, 0.006778927519917488, -0.019120052456855774, 0.040779367089271545, 0.0017060679383575916, 0.002284203888848424, -0.012975940480828285, -0.04241175204515457, -0.022656884044408798, -0.02200695313513279, -0.00488959439098835, 0.025181032717227936, -0.02963986061513424, -0.01035354658961296, -0.01175165269523859, -0.020223423838615417, 0.006669346243143082, 0.0012771892361342907, 0.0010806985665112734, 0.014759471639990807, 0.03539854660630226, 0.02320101298391819, 0.011789439246058464, 0.004182983655482531, 0.006419954355806112, -0.010973247699439526, 0.002365445252507925, 0.015492532402276993, -0.003355455817654729, -0.02625417523086071, 0.0010136272758245468, -0.0198757853358984, 0.014290916733443737, -0.007980543188750744, -0.012839908711612225, -0.04035615921020508, 0.0070245410315692425, -0.0009021566365845501, -0.009680943563580513, -0.0009701726376079023, -0.011472031474113464, -0.0007727373158559203, -0.0004099853103980422, 0.010595381259918213, -0.008894980885088444, -0.044165052473545074, -0.008690932765603065, -0.010104154236614704, 0.000671185611281544, 0.027659839019179344, -0.0324360728263855, 0.004390810616314411, -0.012288223020732403, -0.0004010109696537256, -0.010943017899990082, -0.014525193721055984, 0.0059249489568173885, -0.008509556762874126, 0.01921074092388153, -0.006850722245872021, -0.006499306298792362, -0.014903061091899872, -0.030607199296355247, 0.01420022826641798, -0.01922585442662239, -0.020601289346814156, -0.03428006172180176, 0.010240186005830765, -0.034824188798666, 0.025574015453457832, -0.005104978568851948, -0.04334886372089386, 0.04736936464905739, 0.024924084544181824, 0.00011796524631790817, -0.0017381865764036775, -0.015394287183880806, 0.008774063549935818, 0.015945972874760628, -0.007674471475183964, -0.009696057997643948, 0.019059594720602036, -0.010557593777775764, -0.0002942636492662132, 0.030017726123332977, 0.0015955419512465596, -0.027327315881848335, -0.0002247125667054206, 0.03509625419974327, 0.016686590388417244, -0.009892548434436321, -0.00853978656232357, -0.015212911181151867, -0.020601289346814156, 0.003623741213232279, 0.008925210684537888, 0.006658010184764862, -0.0012384579749777913, -0.0013999959919601679, -0.037726204842329025, -0.00853978656232357, 0.0087060471996665, -0.0015190239064395428, -0.0021330572199076414, -0.01918051205575466, -0.01374678872525692, -0.08996248990297318, -0.023049864917993546, -0.027992362156510353, 0.011419130489230156, 0.0016909532714635134, -0.017593471333384514, 0.013595642521977425, -0.006673125084489584, -0.02781098522245884, -0.000626313965767622, -0.015507647767663002, -0.03201286122202873, 0.018152713775634766, 0.008365967310965061, -0.0015624786028638482, 0.007179466541856527, 0.006412397138774395, -0.03573106974363327, 0.014615882188081741, -0.0035878438502550125, -0.012182421050965786, 0.0036823104601353407, 0.02167443186044693, -0.02108495868742466, -0.002055594464763999, 0.0438929907977581, -0.021145418286323547, 0.015016420744359493, -0.04730890318751335, -0.01159294880926609, 0.013572970405220985, 0.019165396690368652, -0.015552991069853306, 0.005010511726140976, 0.01951303333044052, 0.010338431224226952, 0.022173214703798294, 0.0041149677708745, 0.021130302920937538, 0.01836431957781315, 0.012454484589397907, 0.004148975946009159, 0.003013486508280039, -0.008214821107685566, 0.0029171304777264595, -0.02930733747780323, -0.015749482437968254, -0.035851988941431046, -0.009046128019690514, 0.017910879105329514, 0.020948927849531174, 0.01269631925970316, -0.004772455897182226, -0.014918175525963306, -0.0025147025007754564, 0.014729241840541363, 0.016656361520290375, -0.031045524403452873, 0.0034820411819964647, -0.0096204848960042, 0.03264767676591873, 0.023654451593756676, 0.0033592344261705875, 0.015311156399548054, -0.01653544418513775, 0.03056185506284237, 0.03600313514471054, 0.040416616946458817, 0.032224468886852264, -0.014169999398291111, 0.009371092543005943, 0.001002291333861649, 0.017185375094413757, 0.02720639854669571, 0.0021613971330225468, -0.007273932918906212, 0.024848511442542076, 0.010890116915106773, 0.020208308473229408, -0.0015246919356286526, -0.017502782866358757, 0.011109279468655586, 0.032284926623106, -0.02716105431318283, -0.01951303333044052, -0.030304905027151108, 0.018107369542121887, -0.023352159187197685, 0.012598074041306973, 0.004043173044919968, 0.032496530562639236, 0.005354370456188917, 0.036789096891880035, 0.018742185086011887, -0.012749221175909042, 0.04606950283050537, -0.007277711760252714, 0.007126565091311932, -0.007685807533562183, 0.0012148412643000484, -0.008343295194208622, -0.021251220256090164, 0.0037106506060808897, -0.018681727349758148, -0.019966473802924156, -0.0016937872860580683, 0.008041001856327057, 0.006850722245872021, -0.008161919191479683, -0.022641770541667938, -0.013028842397034168, -0.026420436799526215, -0.03050139546394348, -0.014993748627603054, -0.015749482437968254, 0.010595381259918213, -0.012099290266633034, -0.0029908146243542433, -0.023034751415252686, 0.006998090539127588, -0.018500350415706635, 0.01921074092388153, -0.007315498311072588, -0.024606676772236824, -0.024047434329986572, -0.012598074041306973, 0.008607801981270313, -0.006310373079031706, 0.00809390377253294, 0.04035615921020508, 0.0030248225666582584, -0.0038353465497493744, -0.004814021289348602, 0.006775149144232273, 0.001349928556010127, 0.017880650237202644, 0.020525716245174408, -0.010376217775046825, 0.031045524403452873, -0.03113621287047863, 0.015197796747088432, 0.017487669363617897, -0.011963258497416973, 0.0097791887819767, 0.014903061091899872, -0.019361887127161026, -0.00694141024723649, -0.020374570041894913, 0.003141961293295026, -0.010036137886345387, 0.005751130636781454, -0.002304986584931612, 0.02258131094276905, -0.007806724868714809, -0.022520853206515312, -0.010844772681593895, -0.010602938011288643, 0.0012639639899134636, 0.014532751403748989, -0.007829396985471249, -0.0354590080678463, 0.016082003712654114, 0.026450665667653084, -0.0020688199438154697, -0.001078809262253344, -0.000949862296693027, -0.03146873414516449, -0.016233151778578758, 0.014419391751289368, 0.00731927715241909, -0.01432870328426361, 0.002452354645356536, -0.013202660717070103, -0.017291177064180374, 0.029231764376163483, -0.028808552771806717, 0.017245834693312645, 0.0004791821411345154, 0.01374678872525692, -0.004965167958289385, -0.0006381223211064935, -0.007315498311072588, 0.010602938011288643, 0.013368922285735607, 0.036214739084243774, -0.011199967935681343, -0.007523324806243181, 0.0019195625791326165, -0.020571060478687286, 0.019981589168310165, 0.024047434329986572, 0.032798826694488525, -0.012892809696495533, 0.01925608515739441, 0.016777278855443, -0.01707957312464714, 0.04730890318751335, -0.0011902799597010016, -0.014124655164778233, -0.012643418274819851, -0.018560810014605522, -0.018500350415706635, -0.0032269812654703856, 0.015152452513575554, 0.0030663879588246346, 0.012877695262432098, -0.029715433716773987, 0.02596699632704258, 0.023337043821811676, -0.029806122183799744, -0.00011200203880434856, 0.015439631417393684, 0.004704440012574196, -0.024243924766778946, 0.0014802926452830434, -0.00033960764994844794, -0.004012943711131811, -0.009114143438637257, -0.005970293190330267, -0.012892809696495533, 0.03836102411150932, -0.010640724562108517, 0.00025647698203101754, -0.0049689463339746, 0.02445552870631218, 0.017548127099871635, 0.01527336984872818, -0.07956360280513763, -0.02778075635433197, -0.0012592405546456575, -0.0015539765590801835, 0.013127087615430355, -0.006529535632580519, -0.002792434534057975, -0.0027716518379747868, -0.012016159482300282, 0.034310292452573776, -0.013792132958769798, 0.039207443594932556, 0.001604988588951528, -0.021825578063726425, -0.024939198046922684, -0.0030323797836899757, 0.02230924740433693, 0.03137804567813873, 0.0041414182633161545, -0.0274331197142601, 0.010217513889074326, 0.02262665517628193, 0.02079777978360653, -0.005486623849719763, -0.00991522055119276, 0.007791610434651375, 0.012703876942396164, -7.01414974173531e-05, 0.002705525141209364, 0.00564154889434576, -0.0010495246388018131, 0.016565673053264618, -0.022762687876820564, -0.00809390377253294, 0.009408880025148392, 0.008418869227170944, -0.030335133895277977, 0.03267790749669075, -0.008600245229899883, 0.003194862511008978, 0.01422290038317442, -0.02288360521197319, -0.031891945749521255, 0.002446686616167426, -0.015023978427052498, -0.02688899077475071, -0.0017400758806616068, 0.012681204825639725, 0.011638293042778969, 0.002121721161529422, -0.020843124017119408, 0.012318452820181847, 0.008403753861784935, 0.003956263884902, 0.004893373232334852, -0.020253652706742287, 0.004882037173956633, -0.009673385880887508, 0.01356541272252798, 0.004371917340904474, 0.01862126775085926, 0.016248265281319618, 0.009628042578697205, 0.02317078225314617, 0.015719251707196236, 0.0030002612620592117, -0.009635599330067635, 0.011638293042778969, -0.005906055681407452, -0.011676079593598843, -0.0019535706378519535, 0.02415323629975319, 0.010791871696710587, 0.016006430611014366, -0.011215082369744778, -0.04576721042394638, -0.006922516971826553, -0.012394025921821594, -0.00028481698245741427, 0.0026620705612003803, 0.02224878780543804, 0.0056793359108269215, 0.0015029646456241608, 0.011721423827111721, 0.028521373867988586, -0.021538399159908295, -0.03143850341439247, -0.008660703897476196, 0.004761119838804007, -0.0058040316216647625, -0.005690671969205141, -0.016731934621930122, -0.029201535508036613, 0.018530581146478653, 0.01652033068239689, 0.022974291816353798, 0.010081482119858265, -0.028551604598760605, -0.014887945726513863, -0.004927380941808224, -0.020087391138076782, 0.01387526374310255, 0.015734367072582245, -0.01836431957781315, 0.025483326986432076, 0.02385094203054905, -0.0012875805841758847, 0.00404695188626647, 0.019014250487089157, -0.013512511737644672, -0.001413221238180995, 0.020555945113301277, 0.001121319248341024, 0.014132212847471237, 0.04368138313293457, -0.009000783786177635, -0.01327067706733942, 0.017230719327926636, 0.0198757853358984, 0.020011818036437035, 0.013807247392833233, 0.04183739423751831, -0.016127347946166992, 0.00013886598753742874, 0.021750004962086678, 0.0020801560021936893, 0.014389161951839924, 0.003181637264788151, 0.014306031167507172, -0.008010772988200188, 0.008260165341198444, -0.02994215302169323, -0.008947881869971752, -0.018772415816783905, -0.0015331939794123173, 0.009537354111671448, 0.012590516358613968, -0.014411834068596363, 0.03981202840805054, 0.027297087013721466, -0.012348681688308716, -0.009892548434436321, -0.025543784722685814, -0.0013329245848581195, -0.0005823869723826647, 0.00359540106728673, -0.011351114138960838, 0.0010485799284651875, 0.009355978108942509, -0.014691455289721489, 0.0008516169618815184, -0.021205876022577286, -0.029821235686540604, -0.002966253086924553, -0.0034725945442914963, -0.037695977836847305, -0.03697047382593155, -0.010345988906919956, -0.0019195625791326165, 0.005471508949995041, 6.594954174943268e-05, 0.011313327588140965, -0.009688501246273518, -0.002731975866481662, -0.017412094399333, 0.03201286122202873, -0.0007798222941346467, 0.003818342462182045, 3.4746019082376733e-05, -0.03349409997463226, 0.010708740912377834, -0.03455212712287903, -0.005233453121036291, -0.012363797053694725, -0.00731927715241909, -0.0021462824661284685, 0.032194238156080246, -0.008290394209325314, 0.029171304777264595, -0.005218338221311569, 0.01957349292933941, -0.005305247846990824, -0.007447751704603434, -0.04464872181415558, -0.021538399159908295, 0.023669566959142685, -0.02386605739593506, -0.0037635518237948418, -0.004251000005751848, -0.0028698972892016172, 0.0015350832836702466, -0.005063413176685572, 0.007028319872915745, -0.010504692792892456, -0.011335999704897404, 5.431833051261492e-05, -0.01209173258394003, -0.02013273537158966, 0.03394753858447075, -0.008653146214783192, 0.004829135723412037, 0.011925471015274525, -0.005868269130587578, -0.000926245644222945, 0.008139248006045818, 0.004213212989270687, 0.016444755718111992, 0.050543442368507385, -0.031045524403452873, 0.017608586698770523, -0.0051276502199471, -0.0024806945584714413, -0.013633429072797298, -0.01980021223425865, -0.016973769292235374, 0.00857001543045044, -0.010602938011288643, -0.003376238513737917, -0.021886035799980164, 0.021568628028035164, -0.02289871871471405, 0.037061162292957306, 0.014812372624874115, -0.00479890638962388, -0.014358933083713055, 0.041958313435316086, -0.005086085293442011, 0.011101721785962582, -0.0007462866487912834, -0.0023257692810148, 0.015152452513575554, -0.010633167810738087, 0.03488465026021004, 0.018243402242660522, 0.006669346243143082, -0.03231515735387802, 0.013210218399763107, -0.00888742320239544, 0.0035141599364578724, 0.008517114445567131, -0.016399413347244263, -0.014630996622145176, -0.011978372931480408, -0.009000783786177635, 0.0036142945755273104, -0.006975418422371149, 0.006045866291970015, 0.009114143438637257, -0.008056117221713066, -0.01253761537373066, -0.0005087030003778636, 0.005705786403268576, -0.011585391126573086, 0.01928631402552128, -0.010995919816195965, -0.009673385880887508, 0.02811327949166298, 0.01831897534430027, -0.013829919509589672, 0.014887945726513863, -0.012205093167722225, -0.006669346243143082, 0.013504954054951668, -0.0223394762724638, 0.032798826694488525, -0.011789439246058464, 0.02230924740433693, -0.003398910630494356, -0.02936779521405697, 0.020828010514378548, -0.006106324959546328, 0.016021545976400375, 0.008229935541749, 6.364691216731444e-05, -0.022747572511434555, -0.0421396903693676, -0.011691194027662277, 0.00037904747296124697, -0.007262596860527992, 0.008003215305507183, 0.020601289346814156, 0.007039655465632677, -0.00703209824860096, -0.0015964865451678634, 0.003391353180631995, -0.00933330599218607, 0.0036823104601353407, 0.0001383936614729464, -0.007746266201138496, 0.0037711092736572027, -0.011041263118386269, -0.01329334918409586, 0.0003247291606385261, 0.003636966459453106, -0.007338170427829027, 0.016716821119189262, -0.008751391433179379, -0.0020518158562481403, 0.01481993030756712, -0.011184852570295334, -0.0007609289605170488, -0.026087913662195206, -0.011260426603257656, 0.010209957137703896, 0.007678250316530466, -0.010882559232413769, -0.00214250385761261, 0.014139769598841667, 0.009469338692724705, 0.009522239677608013, -0.00335734523832798, -0.008441541343927383, 0.0005403492832556367, -0.002486362587660551, 0.013981065712869167, -0.02354864962399006, -0.0041149677708745, 0.004424818325787783, 0.06680682301521301, -0.006665567867457867, 0.003255321178585291, -0.0007826563087292016, -0.0025147025007754564, -0.02566470205783844, -0.0038920266088098288, 0.009945450350642204, 0.022445278242230415, -0.010194841772317886, -0.015152452513575554, -0.00473089050501585, -0.0051276502199471, 0.0004716248076874763, -0.026994792744517326, 0.0019063372164964676, 0.018530581146478653, 0.029503827914595604, 0.02564958855509758, 0.009854761883616447, -0.013845033943653107, -0.0015794825740158558, -0.013686330057680607, 0.0077840532176196575, -0.01159294880926609, 0.03364524617791176, -0.007360842544585466, 0.01683773845434189, -0.00017677074356470257, 0.02469736337661743, -0.01542451698333025, -0.004096074495464563, -0.006809156853705645, -0.02593676745891571, -0.0027111931703984737, 0.008282836526632309, 0.0013319799909368157, 0.009250175207853317, 2.0738383682328276e-05, 0.007610234431922436, 0.0065068635158240795, -0.0049009304493665695, 0.027251742780208588, 0.03270813822746277, -0.013338692486286163, -0.014502521604299545, 0.015379172749817371, -0.0009862319566309452, -0.0009451389778405428, -0.022656884044408798, -0.004069624003022909, -0.027856329455971718, 0.006023194175213575, 0.010345988906919956, 0.014736799523234367, -0.00641617551445961, -0.015613449737429619, 0.01022507157176733, -0.011600506491959095, -0.009280405007302761, -0.019785096868872643, -0.0036067371256649494, -0.005241010338068008, -0.02713082544505596, -0.0060609811916947365, -0.02164420112967491, -0.008970553986728191, -0.012265551835298538, 0.006809156853705645, 0.003230759873986244, -0.008615359663963318, 0.02048037201166153, 0.005649106577038765, -0.02533218078315258, -0.018455008044838905, 0.02992703951895237, 0.0059854076243937016, 0.011018591932952404, 0.03276859596371651, 0.008471770212054253, 0.017533011734485626, 0.002748979954048991, -0.008826964534819126, -0.015991317108273506, 0.01008903980255127, -0.0010202398989349604, 0.0105349225923419, -0.03845170885324478, 0.007341948803514242, -0.030954835936427116, -0.007844511419534683, -0.0014415612677112222, -0.002218077192083001, 0.002694189315661788, 0.029836351051926613, -0.005736015737056732, -0.009582698345184326, -0.02165931649506092, 0.033433642238378525, -0.015568106435239315, -0.008554900996387005, 0.014260686933994293, -0.017472553998231888, -0.0015124112833291292, 0.018152713775634766, 0.000557825667783618, 0.013580527156591415, 0.015673909336328506, -0.015568106435239315, 0.012953268364071846, -0.006639116909354925, -0.009023455902934074, -0.01447985041886568, 0.010164612904191017, -0.04334886372089386, -0.007425079587846994, 0.006011858582496643, 0.015016420744359493, -0.02111518755555153, -0.022384820505976677, -0.0020952706690877676, -0.009824533015489578, -0.012582959607243538, -0.00977163203060627, 0.009839647449553013, -0.001963017275556922, -0.011343556456267834, -0.005437501240521669, -0.0065635438077151775, -0.023064980283379555, 0.016112234443426132, 0.033131346106529236, -0.005947621073573828, -0.024485759437084198, 0.020268766209483147, 0.00457218661904335, -0.0014982412103563547, -0.016595903784036636, 0.02353353425860405, -0.016580788418650627, 0.026072798296809196, 0.002605390502139926, 0.011865012347698212, 0.006359495688229799, -0.00756866903975606, 0.008622917346656322, -0.014683897607028484, -0.029806122183799744, -0.009083914570510387, -0.01777484640479088, 0.05015046149492264, -0.03576130047440529, -0.016973769292235374, 0.0008563402807340026, -0.0044928346760571, -0.0031854158733040094, -0.030456051230430603, 0.03624496981501579, -0.000297333812341094, 0.002163286553695798, 0.007670693099498749, 0.0020253651309758425, -0.004277450498193502, 0.0015492532402276993, 0.000531375000718981, -0.006200791802257299, 0.014109540730714798, 0.020026931539177895, 0.013331135734915733, 0.003209977177903056, 0.013897934928536415, -0.0006244246615096927, 0.014903061091899872, -0.011086607351899147, -0.015794826671481133, -0.005395935848355293, -0.005229674279689789, 0.019407231360673904, -0.01345205307006836, 0.04238152503967285, 0.005955178290605545, 0.02468224987387657, 0.011577834375202656, 0.003463147906586528, 0.004175426438450813, -0.007119007874280214, 0.019074708223342896, -0.010761641897261143, -0.01159294880926609, -0.008373524993658066, -0.021901151165366173, 0.008343295194208622, 0.004005386494100094, -0.022490622475743294, -0.024002090096473694, -0.009900106117129326, 0.013066628947854042, 0.010633167810738087, 0.00959025602787733, -0.012492271140217781, 0.005853154230862856, 0.003820231882855296, 0.007428858429193497, -0.00021951690723653883, -0.011290655471384525, -0.008025887422263622, -0.010927903465926647, -0.011623178608715534, -0.011562719941139221, -0.019074708223342896, -0.02070709317922592, -0.02447064407169819, 0.009968122467398643, 0.0018458785489201546, -0.029080618172883987, 0.010882559232413769, 0.020571060478687286, -0.008630474098026752, 0.00672602653503418, 0.014124655164778233, 0.02347307652235031, -0.00031646332354284823, -0.0066277808509767056, -0.023609107360243797, -0.006831828970462084, -0.007281490135937929, 0.018439892679452896, 0.023352159187197685, 0.006472855806350708, -0.0006796876550652087, 0.0040167225524783134, 0.009393764659762383, -0.023971859365701675, 0.0080712316557765, 0.0048102424480021, 0.04207922890782356, 0.011608063243329525, -0.012530057691037655, 0.007746266201138496, -0.012341124936938286, 0.003948706667870283, -0.020208308473229408, -0.005244789179414511, 0.004829135723412037, 0.006597551517188549, -0.021538399159908295, -0.005656663794070482, 0.01437404751777649, 0.0019724639132618904, -2.580120781203732e-05, 0.007629127707332373, -0.0008794846362434328, -0.015008863061666489, -0.00756866903975606, 0.022369705140590668, 0.007814282551407814, -0.00019967890693806112, 0.0062423571944236755, -0.004689325112849474, -0.011502261273562908, -0.00198946800082922, 0.002765983808785677, -0.017336521297693253, -0.0059816292487084866, 0.005607541184872389, 0.031317587941884995, -0.047157756984233856, 0.01404152438044548, 0.002431571949273348, 0.011086607351899147, 0.0023730024695396423, -0.013248004950582981, 0.014691455289721489, 0.016066890209913254, -0.006404839921742678, 0.0038674650713801384, -0.010474463924765587, -0.02347307652235031, -0.003555725095793605, 0.02412300743162632, -0.001423612586222589, 0.01222776435315609, 0.00556219695135951, -0.035882215946912766, -0.010414005257189274, -0.010958133265376091, 0.0027395333163440228, 0.019769983366131783, -0.00625747162848711, -0.013640985824167728, 0.023911401629447937, -0.020314110442996025, 0.002833999926224351, -0.0055433036759495735, -0.0099378926679492, 0.004636423662304878, 0.010633167810738087, 0.0026016118936240673, 0.029246877878904343, 0.02013273537158966, -0.0008941269479691982, -0.0024958092253655195, 0.01421534363180399, -0.026798302307724953, 0.020344341173768044, 0.028022591024637222, 0.007349506486207247, 0.0002536429965402931, -0.008320624008774757, -0.010398889891803265, -0.0010136272758245468, 0.004281229339540005, -0.016233151778578758, -0.006540871690958738, -0.016913311555981636, -0.004753562621772289, 0.00517677329480648, 0.004368138499557972, -0.03119667060673237, 0.009544911794364452, 0.010663396678864956, 0.008078789338469505, -0.007047213148325682, 0.01857592537999153, 0.004341688007116318, 0.018485236912965775, 0.015945972874760628, 0.013935722410678864, 0.0046590957790613174, -0.011479589156806469, 0.018787529319524765, -0.00038282613968476653, -0.005033183842897415, -0.0094617810100317, -0.017200490459799767, 0.010633167810738087, -0.014253130182623863, -0.0038070064038038254, -0.013043956831097603, 0.01387526374310255, -0.004371917340904474, -0.006733583752065897, -0.0005644382908940315, -0.007655578199774027, 0.006351938471198082, 0.009522239677608013, 0.011842341162264347, -0.005486623849719763, 0.011154623702168465, 0.020404798910021782, -0.0029190198983997107, -0.008743834681808949, 0.0027395333163440228, 0.012310895137488842, -0.014903061091899872, -0.0013149759033694863, 0.004220770671963692, 0.015228025615215302, -0.0030512732919305563, -0.003956263884902, -0.0359426774084568, 0.0179713387042284, -0.022535966709256172, -0.018122484907507896, 0.013376479037106037, 0.015477417968213558, -0.0004921713261865079, 0.008275279775261879, -0.03561015427112579, 0.005615098401904106, -0.032526761293411255, -0.0256042443215847, -0.004394588991999626, -0.010648282244801521, -0.011222639121115208, 0.003914698492735624, -0.005286354571580887, -0.01744232513010502, -0.017321407794952393, -0.0038013386074453592, 0.01918051205575466, 0.0026960785035043955, -0.01925608515739441, -0.003712539793923497, -7.374303822871298e-05, 0.011540047824382782, 0.026405321434140205, 0.006960303522646427, 0.005868269130587578, -0.002745201112702489, -0.02171977423131466, -0.011086607351899147, -0.009567583911120892, 0.018198058009147644, 0.007538439705967903, 0.014842602424323559, -0.016338953748345375, 0.014177557080984116, 1.4324983567348681e-05, -0.005947621073573828, 0.001655055908486247, -0.005203223787248135, 0.01918051205575466, -0.0009503346518613398, 0.005305247846990824, -0.021931380033493042, 0.014472292736172676, 0.02713082544505596, 0.01524314098060131, -0.0019535706378519535, 0.016066890209913254, 0.003841014578938484, -0.023745140060782433, -0.00541482912376523, 0.01497863419353962, 0.001920507289469242, 0.01800156757235527, -0.0008147749467752874, 0.00887986645102501, -0.007164351642131805, -0.00039298131014220417, -0.00809390377253294, 0.01744232513010502, -0.008622917346656322, 0.012242879718542099, 0.0034933772403746843, 0.03839125111699104, -0.0005937229725532234, 0.0036086265463382006, -0.0027981025632470846, -0.011517375707626343, 0.0035859544295817614, -0.02043502777814865, 0.0015114665729925036, -0.022112756967544556, -0.016928425058722496, 0.031650111079216, -0.024062547832727432, 0.011479589156806469, 0.02013273537158966, -0.023321930319070816, -0.012598074041306973, -0.0007642352720722556, 0.0024882517755031586, 0.012031273916363716, -0.003899583825841546, 0.0072852689772844315, 0.03198263421654701, -0.01527336984872818, -0.021553514525294304, -0.004617530386894941, 0.04050730541348457, 0.0045192851684987545, 0.0006319819949567318, -0.0029983718413859606, 0.0019441238837316632, 0.004882037173956633, -0.0099378926679492, 0.029775891453027725, -0.025453098118305206, 0.0053430343978106976, -0.012613188475370407, 0.0033611238468438387, -0.0008539786213077605, -0.023442847654223442, 0.002344662556424737, -0.011351114138960838, -0.0006584326620213687, -0.007829396985471249, 0.017608586698770523, -0.02898992970585823, 0.011645849794149399, -0.0021916264668107033, -0.002110385335981846, 0.0032402065116912127, 0.021901151165366173, -0.013550298288464546, 0.014011295512318611, 0.0038334571290761232, -0.009869877249002457, 5.440689346869476e-05, 0.014132212847471237, -0.0007774606347084045, 0.008849636651575565, 0.03842148184776306, -0.02262665517628193, 0.009446666575968266, 0.020404798910021782, 0.005093642510473728, -0.01650521531701088, 0.016082003712654114, 0.010655839927494526, 0.006299037020653486, -0.012394025921821594, 0.007436415646225214, 0.0060609811916947365, -0.015076879411935806, 0.028022591024637222, -0.00359540106728673, 0.005044519901275635, 0.008305508643388748, -0.0024806945584714413, -0.00037196249468252063, 0.003249653149396181, 0.017004000023007393, 0.011857455596327782, -0.0018968905787914991, 0.020253652706742287, 0.019044479355216026, 0.008970553986728191, 0.0016522218938916922, 0.002503366442397237, -0.028869012370705605, 0.016913311555981636, 0.006419954355806112, 0.006314151920378208, 0.007417522370815277, 0.015235583297908306, 0.010686068795621395, -0.0018553253030404449, -0.009514681994915009, -0.010451791808009148, 0.009998351335525513, 0.0006154503207653761, 0.00495761027559638, -0.004292564932256937, 0.030093299224972725, 0.013361364603042603, 0.00012398749822750688, 0.0019403452752158046, -0.014321145601570606, -0.0047006611712276936, 0.001189335249364376, -0.01177432481199503, 0.00617811968550086, 0.0010731412330642343, 0.010058810003101826, -0.0025487104430794716, 0.02413812093436718, -0.019392115995287895, 0.014782143756747246, 0.012001045048236847, 0.009295519441366196, 0.0018543805927038193, -0.009454223327338696, -0.012310895137488842, 0.003907141275703907, 0.008214821107685566, -0.0038164532743394375, 0.003438586601987481, -0.0011014812625944614, 0.007972986437380314, 0.013051514513790607, 0.011555162258446217, 0.028309769928455353, -0.028793439269065857, -0.0025902758352458477, 0.015016420744359493, 0.011373786255717278, 0.018696842715144157, 0.007852069102227688, -0.018878217786550522, 0.0029794785659760237, 0.00037196249468252063, -0.027674952521920204, 0.0016380519373342395, 0.01513733807951212, -0.0006329266470856965, -0.010172170586884022, 0.01800156757235527, -0.007387293037027121, -0.0008416979690082371, -0.023397503420710564, -0.003402689239010215, -0.02232436090707779, 0.0023087651934474707, -0.022158101201057434, -0.006760034244507551, 0.005207002628594637, -0.008864752016961575, 0.017472553998231888, -0.014676340855658054, -0.014389161951839924, -0.006253693252801895, 0.0046402025036513805, 0.007682029157876968, 0.004182983655482531, -0.001183667336590588, 0.02903527393937111, -0.01327823381870985, 0.017910879105329514, -0.023760255426168442, -0.01112439390271902, 0.009635599330067635, 0.028188852593302727, -0.004511727951467037, 0.0024825839791446924, 0.008048559539020061, -0.015023978427052498, -0.01330090593546629, 0.004496613051742315, 0.022687112912535667, 0.005807810463011265, -0.0106936264783144, -0.009189716540277004, 0.0017466886201873422, -0.0077235945500433445, -0.020964041352272034, -0.020540831610560417, -0.010308202356100082, 1.5306552086258307e-05, -0.0012989166425541043, 0.027040136978030205, -0.005452615674585104, 0.005513074342161417, -0.0028793439269065857, 0.015205354429781437, 0.00027111932286061347, 0.010149498470127583, -0.01513733807951212, -0.01388282049447298, 0.005819146521389484, 0.004311458673328161, 0.024924084544181824, -0.022762687876820564, 0.002926577115431428, 0.0043832529336214066, 0.021568628028035164, 0.03458235412836075, -0.0066428957507014275, 0.002021586522459984, 0.00974895991384983, -0.0036010690964758396, -0.013603199273347855, 0.007428858429193497, 0.001865716534666717, -0.015673909336328506, -0.007511989213526249, -0.003376238513737917, -0.018485236912965775, 0.003944927826523781, 0.0016730045899748802, 0.0021066064946353436, -0.0069489674642682076, -0.012635860592126846, 0.008592687547206879, 0.0022142985835671425, 0.003576507791876793, 0.0053014690056443214, 0.0037068717647343874, -0.01283235102891922, 0.004768677055835724, -0.017850421369075775, 0.023624222725629807, -0.01679239422082901, -0.01980021223425865, 0.017880650237202644, -0.04268381744623184, 0.01251494325697422, -0.00764802098274231, -0.02317078225314617, -0.032224468886852264, -0.009975679218769073, 0.010398889891803265, -0.004375695716589689, -0.015779711306095123, -0.0011430466547608376, 0.016883082687854767, -0.004251000005751848, -0.005365706514567137, 0.016006430611014366, 0.017880650237202644, -0.020359454676508904, 0.014238015748560429, -0.006816714536398649, 0.004028058610856533, 0.01529604196548462, 0.00041801496990956366, -0.019981589168310165, -0.02474270761013031, -0.011540047824382782, 0.0011666632490232587, 0.010209957137703896, -0.02935268171131611, -1.4214280781743582e-05, 0.002210519975051284, 0.014759471639990807, -0.011109279468655586, -0.018500350415706635, 0.006484191864728928, -0.008373524993658066, -0.009091471321880817, -0.03213378041982651, -0.029549172148108482, 0.019664179533720016, -0.004243442323058844, -0.017004000023007393, 0.00959025602787733, -0.004689325112849474, -0.019059594720602036, -0.009129257872700691, -0.007882297970354557, -0.00158420589286834, 0.008517114445567131, 0.011109279468655586, -0.007137901149690151, 0.017941107973456383, 0.013331135734915733, -0.016066890209913254, 0.005305247846990824, 0.018742185086011887, -0.009008340537548065, 0.006767591927200556, -0.00029095730860717595, -0.01674704998731613, -0.021432597190141678, 0.024500872939825058, 0.0021897372789680958, -0.025800734758377075, 0.005395935848355293, -0.0015360278775915504, 0.0102553004398942, 0.012764335609972477, -0.0012365685543045402, -0.020616404712200165, -0.005108756944537163, -0.004031836986541748, 0.012726549059152603, 0.00034456714638508856, -0.013149759732186794, 0.002565714530646801, -0.019679294899106026, -0.005142765119671822, 0.005044519901275635, -0.010036137886345387, 0.01683773845434189, 0.02011762000620365, -0.009514681994915009, 0.012877695262432098, 0.005637770518660545, -0.012809679843485355, -0.028037704527378082, -0.01771438866853714, 0.00841131154447794, 0.022853374481201172, -0.014003737829625607, 0.007988100871443748, 0.022127870470285416, -0.010497135110199451, 0.019785096868872643, -0.017170259729027748, 0.0031457399018108845, -0.0021557293366640806, 0.009340863674879074, 0.006079874467104673, 0.00222185580059886, 0.018409663811326027, -0.001039133290760219, -0.0018572146072983742, 0.006423733197152615, 0.02324635721743107, 0.028793439269065857, -0.030063070356845856, -0.0023730024695396423, 0.0009045182960107923, 0.017880650237202644, -0.004031836986541748, -0.010315759107470512, -0.0014623439637944102, 0.03388708084821701, 0.009869877249002457, -0.018696842715144157, -0.0015766485594213009, -0.025725161656737328, 0.00020345757366158068, -0.017789961770176888, -0.01006636768579483, -0.008902538567781448, -0.000784073316026479, 0.023654451593756676, 0.012363797053694725, -0.013709002174437046, -0.020011818036437035, 0.0012205092934891582, -0.006438847631216049, -0.005225895904004574, 0.03155942261219025, 0.012923039495944977, 0.009522239677608013, 0.014691455289721489, -0.0006905513000674546, -0.0024088998325169086, -0.015749482437968254, 0.0018732738681137562, 0.031891945749521255, 0.020646633580327034, 0.0063065942376852036, -0.008585129864513874, 0.0016862299526110291, -0.00687339436262846, 0.008494442328810692, -0.006147890351712704, -0.00293602398596704, -0.01804691180586815, -0.015333828516304493, 0.016731934621930122, -0.01834920421242714, 0.027115710079669952, 0.01463855430483818, -0.007852069102227688, 0.002323879860341549, 0.0019006693037226796, 0.005475287791341543, 0.01744232513010502, -0.00205748388543725, -0.010844772681593895, 0.007912527769804, -0.008804293349385262, -0.0071454583667218685, 0.017910879105329514, -0.01707957312464714, 0.001102425972931087, 8.437053475063294e-05, -0.009733844548463821, -0.03424983471632004, -0.006465298589318991, 0.0027905451133847237, -0.01067851111292839, 0.012235322035849094, -0.012907925061881542, 0.006926295813173056, -0.008509556762874126, -0.006480413023382425, 0.00932574924081564, -0.0011865012347698212, -0.01268876250833273, 0.014003737829625607, -0.0017136252718046308, 0.01986067183315754, 0.009348421357572079, 0.016883082687854767, -0.011131951585412025, 0.0030796132050454617, 0.0012101179454475641, -0.005286354571580887, 4.6082019252935424e-05, -0.01175165269523859, 0.005913612898439169, -0.014502521604299545, -0.007338170427829027, 0.007712258491665125, 0.0027905451133847237, -0.004768677055835724, -0.0019110605353489518, 0.0018033685628324747, 0.011449359357357025, -0.009794303216040134, -0.004405925050377846, 0.02957940101623535, -0.013709002174437046, 0.016051774844527245, 0.01798645220696926, 0.01203883159905672, -0.016958655789494514, 0.016414526849985123, -0.007889855653047562, -5.514491567737423e-05, 0.003175969235599041, -0.01036110334098339, -0.0008128856425173581, -0.021598856896162033, -0.005822924897074699, -0.007689586374908686, 0.015779711306095123, 0.006525757256895304, 0.01283235102891922, -0.006710911635309458, 0.01558322086930275, -0.023941630497574806, 0.010028581134974957, -0.014472292736172676, 0.01330090593546629, 0.00755733298137784, 0.002144393278285861, -0.01621803641319275, -0.028808552771806717, 0.01466878317296505, 0.008509556762874126, -0.006499306298792362, 0.017351636663079262, 0.007255039643496275, -0.01584016904234886, 0.020253652706742287, -0.015258255414664745, -0.0007481759530492127, -0.0024693585000932217, 0.011600506491959095, 0.015825055539608, -0.006994311697781086, 0.009371092543005943, 0.004919823724776506, -0.0016219925601035357, -0.021220991387963295, 0.004715775605291128, -0.004507949110120535, -0.014442062936723232, -0.03944927826523781, -0.0016522218938916922, 0.00011265149805694818, 0.014676340855658054, -0.012582959607243538, -0.009741402231156826, 0.017034228891134262, 0.010875002481043339, 0.007927642203867435, 0.014857716858386993, 0.008335738442838192, -0.005524410400539637, -0.005736015737056732, -6.175757880555466e-05, -0.029171304777264595, 0.024621790274977684, 0.0063859461806714535, 0.004220770671963692, 0.012892809696495533, 0.010391333140432835, -0.04398367926478386, -0.008683376014232635, -0.02620883099734783, -0.01989090070128441, 0.021205876022577286, -0.016399413347244263, 0.0097791887819767, 0.003922255709767342, -0.004689325112849474, 0.0011931139742955565, 0.013542740605771542, -0.005841818638145924, -0.004167869221419096, 0.02599722519516945, 0.013225332833826542, -0.011071492917835712, -0.0003367736644577235, -0.01862126775085926, -0.01742720976471901, -0.0025959438644349575, -0.004481498617678881, -0.004477719776332378, -0.006412397138774395, -0.005898498464375734, -0.0020801560021936893, 0.0016191585455089808, 0.011880127713084221, -0.0008313066209666431, -0.003907141275703907, 0.01986067183315754, -0.00034669265733100474, -0.007107671815901995, -0.02081289514899254, -0.011721423827111721, -0.01421534363180399, -0.015039092861115932, 0.01390549261122942, -0.022989407181739807, 0.007904970087110996, -0.01863638311624527, 0.0012715213233605027, -0.006914959754794836, -0.017200490459799767, 0.008267722092568874, -0.005252346396446228, 0.007610234431922436, -0.007836954668164253, 0.015613449737429619, 0.028188852593302727, -0.005717122461646795, -0.03358478844165802, -0.0012252326123416424, -0.03938882052898407, 0.005184330511838198, -0.01327823381870985, 0.005675557069480419, 0.0043379091657698154, 0.0005379876238293946, 0.011192410252988338, -0.0060043008998036385, 0.004534399602562189, 0.003623741213232279, 0.005203223787248135, -0.006786485202610493, -0.006676903925836086, -0.01706445775926113, 0.006076095625758171, -0.0064464048482477665, -0.00239945319481194, -0.005717122461646795, 0.013913050293922424, 0.001868550549261272, -0.018772415816783905, 0.014547865837812424, 0.012658532708883286, 0.018727071583271027, -0.011094165034592152, 0.0027149717789143324, 0.009892548434436321, -0.008683376014232635, 0.004326573107391596, 0.006718468852341175, -0.0241683516651392, 0.0038636864628642797, 0.0007552609895356, -0.004232106264680624, -0.024621790274977684, -0.009212388657033443, -0.011940586380660534, 0.014464735053479671, 0.002144393278285861, 0.013860148377716541, 0.013195103034377098, 0.023004522547125816, 0.0014784032246097922, 0.03993294760584831, 0.0017485779244452715, -0.009514681994915009, 0.008025887422263622, -0.011585391126573086, 0.004012943711131811, 0.003975157160311937, -0.009476895444095135, -0.005705786403268576, -0.009099029004573822, -0.0052825757302343845, 0.006076095625758171, -0.012371353805065155, -0.007534660864621401, 0.010746527463197708, -0.018711956217885017, 0.009801860898733139, -0.0031230677850544453, 0.02258131094276905, -0.00361996260471642, -0.010021023452281952, -0.010973247699439526, 0.005611319560557604, -0.006094988901168108, -0.002304986584931612, 0.018243402242660522, -0.007670693099498749, 0.014389161951839924, -0.0023730024695396423, -0.010822100564837456, -0.004904709290713072, -0.005611319560557604, 0.008418869227170944, 0.016943540424108505, 0.013784575276076794, 0.0020858237985521555, 0.010572709143161774, 0.004216991830617189, 0.030985064804553986, 0.003948706667870283, 0.0060043008998036385, 0.010141940787434578, -0.008479327894747257, -0.0015558659797534347, -0.013520068489015102, -0.007277711760252714, -0.0005181496380828321, -0.009476895444095135, 0.0017958112293854356, 0.002367334673181176, 0.020979156717658043, -0.0001721654989523813, 0.004526842385530472, -0.01464611105620861, -0.011358671821653843, 0.007904970087110996, 0.022142985835671425, -0.010058810003101826, -0.011796996928751469, 0.003982714377343655, 0.0015331939794123173, -0.0007373123080469668, -0.003971378318965435, -0.014842602424323559, -0.006197012960910797, -0.005074749235063791, -0.0025902758352458477, -0.011781882494688034, 0.0006121439510025084, 0.011917914263904095, 0.007836954668164253, -0.011555162258446217, 0.023427732288837433, 0.0008034389466047287, -0.017593471333384514, 0.0006914959521964192, 0.01253761537373066, 0.0005124816671013832, -0.01542451698333025, -0.022203443571925163, 0.013467167504131794, -0.0004902819637209177, 0.010754085145890713, 0.011109279468655586, -0.004908487666398287, -0.002465579891577363, -0.005059634335339069, 0.004273671656847, -0.0195583775639534, 0.003417803905904293, -0.009968122467398643, -0.010837215930223465, 0.0009654493187554181, -0.00794275663793087, -0.010179727338254452, -0.022188330069184303, 0.006533314473927021, 0.02255108207464218, 0.0005087030003778636, -0.019301429390907288, -0.006605109199881554, 0.008894980885088444, -0.017215603962540627, -0.007156794425100088, 0.01203883159905672, -0.0003910919767804444, 0.0049613891169428825, 0.025120574980974197, -0.002539263805374503, -0.004012943711131811, -0.002560046501457691, -0.000870982650667429, 0.001131710596382618, 0.017533011734485626, 0.030773460865020752, 0.01949791982769966, 0.006238578353077173, 0.02723662741482258, -0.0013914939481765032, 0.020676862448453903, 0.020359454676508904, 0.009832089766860008, -0.0010636945953592658, 0.0037144292145967484, -0.0021406146697700024, 0.012242879718542099, 0.010557593777775764, -0.0012686873087659478, -0.013807247392833233, -0.011109279468655586, -0.008214821107685566, 0.00293602398596704, -0.01707957312464714, 0.014706569723784924, 0.0056642210111021996, -0.0009545856155455112, 0.002218077192083001, -0.002225634641945362, 0.018545694649219513, 0.0065030851401388645, -0.005751130636781454, -0.002278535859659314, 0.0026734066195786, -0.007791610434651375, -0.0018458785489201546, -0.020646633580327034, 0.019679294899106026, 0.0021519504953175783, 0.012401583604514599, -0.013232890516519547, -0.014948404394090176, -0.0008303619688376784, 0.005086085293442011, -0.00872871931642294, 0.029261993244290352, 0.006608887575566769, 0.0087060471996665, 0.009665829129517078, -0.010345988906919956, 0.001526581239886582, -0.023926516994833946, -0.011630735360085964, -0.025211263447999954, 0.0006513476255349815, 0.00931063387542963, -0.03027467615902424, -0.008502000011503696, 0.029413139447569847, 0.023457961156964302, 0.022112756967544556, -0.0032874399330466986, -0.025815850123763084, 0.006661789026111364, -0.013240447267889977, 0.0268738754093647, -0.007504431530833244, 0.001423612586222589, -0.002526038559153676, -0.005792695563286543, 0.015280927531421185, -0.009650714695453644, 0.008970553986728191, 0.014313588850200176, -0.003342230571433902, -0.00710011413320899, 0.024954313412308693, -0.0031268466264009476, 0.011676079593598843, 0.010663396678864956, -0.015689022839069366, 0.012409140355885029, -0.028007475659251213, -0.0010693626245483756, -0.000297333812341094, 0.027856329455971718, -0.003262878628447652, -0.012590516358613968, 0.017941107973456383, -0.009990794584155083, 0.006695797201246023, 0.00711145019158721, 0.009688501246273518, -0.009197274222970009, 0.018711956217885017, -0.010731413029134274, 0.0054790666326880455, -0.0004038449842482805, -0.000773681967984885, 0.03270813822746277, 0.010633167810738087, 0.012371353805065155, -0.010640724562108517, -0.014502521604299545, -0.0038485717959702015, -0.00300970789976418, 0.0011477699736133218, 0.013187546283006668, -0.0015039092395454645, -0.008743834681808949, -0.009114143438637257, 0.005955178290605545, 0.000839336309581995, 0.005388378631323576, -0.02379048429429531, -0.004564628936350346, 0.00039274516166187823, -0.012439370155334473, -0.005501738283783197, -0.009431551210582256, 0.027327315881848335, -0.010368661023676395, 0.02258131094276905, 0.003820231882855296, 0.02691921964287758, -0.005093642510473728, -0.016429642215371132, -0.003478262573480606, 0.009053684771060944, 0.0006839386187493801, -0.00180998130235821, -0.017155146226286888, 0.02078266628086567, 0.009227504022419453, -0.007761381100863218, -0.015825055539608, 0.003053162479773164, -0.029065502807497978, 0.01113950926810503, -0.004413482267409563, -0.03503579646348953, 0.014812372624874115, -0.013489839620888233, -0.01989090070128441, -0.0029379131738096476, -0.03506602346897125, -0.004273671656847, 0.009423994459211826, -0.0005545192980207503, 0.006722247693687677, 0.012545173056423664, 0.005856933072209358, -0.016384297981858253, 0.010338431224226952, 0.0007703756564296782, 0.003873133100569248, 0.04670431837439537, 0.018500350415706635, 0.014079310931265354, -0.014948404394090176, 0.004167869221419096, -0.03509625419974327, 0.006465298589318991, -0.015447189100086689, -0.013595642521977425, -0.007776495534926653, 0.002176511799916625, -0.024848511442542076, 0.016097119078040123, 0.01990601420402527, 0.0038145638536661863, 0.007882297970354557, -0.008766505867242813, -0.00525612523779273, -0.01345205307006836, 0.002204851945862174, 0.008418869227170944, 0.008290394209325314, -0.003075834596529603, -0.004028058610856533, 0.013693887740373611, -0.0005176772829145193, 0.016338953748345375, -0.010814543813467026, 0.0013376479037106037, 0.003478262573480606, 0.0337057039141655, -0.008350852876901627, -0.01769927330315113, 0.009423994459211826, 0.014691455289721489, 0.0083886394277215, 0.004164090380072594, 0.003389463759958744, 0.007364620920270681, -0.019769983366131783, -0.03276859596371651, -0.010738969780504704, 0.02013273537158966, -0.01706445775926113, -0.023382388055324554, -0.013572970405220985, 0.009295519441366196, 0.008811850100755692, -0.01706445775926113, -0.006072317250072956, 0.0046590957790613174, 0.02289871871471405, -0.02108495868742466, 0.0016361626330763102, 0.003087170422077179, 0.004507949110120535, 0.003149518510326743, 0.0019989146385341883, 0.007417522370815277, -0.020344341173768044, -0.014774586074054241, -0.005974071566015482, 0.007417522370815277, 0.0019063372164964676, -0.011101721785962582, 0.020011818036437035, -0.0022483065258711576, 0.01590062864124775, 0.019664179533720016, 0.0024372399784624577, 0.0032439851202070713, -0.012968383729457855, 0.005898498464375734, -0.02291383408010006, -0.022445278242230415, -0.026344863697886467, -0.03177102655172348, 0.0008492553024552763, 0.00043147648102603853, -0.002975699957460165, -0.011766767129302025, -0.006132775917649269, -0.004545735660940409, -0.00601941579952836, -0.01919562555849552, 0.003960042260587215, -0.006200791802257299, 0.019059594720602036, 0.018152713775634766, -0.003049383871257305, -0.02474270761013031, 0.0020140293054282665, -0.006083652842789888, 0.005996743682771921, 0.02501477301120758, 0.004859365057200193, -0.009371092543005943, -0.009257732890546322, 0.00146801199298352, 0.005781359970569611, 0.0005436556530185044, 0.014683897607028484, 0.008426425978541374, 0.01482748705893755, -0.019104937091469765, -0.026677384972572327, -0.021190762519836426, -0.009287962689995766, -0.005656663794070482, 0.01836431957781315, -0.027644723653793335, 0.0036124051548540592, 0.0008095792727544904, 0.015280927531421185, 0.004598637111485004, 0.02499965764582157, 0.006166783627122641, -0.008955439552664757, -0.0024750265292823315, 0.0035292746033519506, 0.00106841791421175, 0.00458352267742157, 0.026979679241776466, 0.026420436799526215, 0.017925994470715523, -0.009718730114400387, 0.01591574400663376, 0.017563242465257645, -0.023140553385019302, 0.010451791808009148, 0.003765441244468093, -0.0014887945726513863, -0.014585652388632298, 0.019709523767232895, -0.007413743529468775, 0.015507647767663002, 0.026677384972572327, 0.0006716579664498568, 0.029821235686540604, -0.003680421272292733, -0.03207332268357277, 0.02076755091547966, 0.015016420744359493, 0.0022898719180375338, 0.001594597240909934, -0.006930074188858271, -0.0274331197142601, 0.012923039495944977, 0.005460172891616821, 0.000451314466772601, -0.004693103954195976, 0.005747351795434952, 0.01949791982769966, 0.006707133259624243, -0.0087060471996665, 0.00037881132448092103, -0.0014047193108126521, 0.011570276692509651, 0.0015161898918449879, 0.005033183842897415, 0.0027640946209430695, 0.018787529319524765, 0.01584016904234886, -0.008313066326081753, 0.019724639132618904, -0.009114143438637257, -0.014185113832354546, 0.008592687547206879, -0.033463869243860245, -0.007530882488936186, -0.011759210377931595, 0.018999135121703148, 0.0035292746033519506, 0.014699012972414494, -0.012522500939667225, 0.025770505890250206, -0.005316583905369043, 0.009287962689995766, -0.01771438866853714, -0.027705183252692223, 0.009053684771060944, 0.022173214703798294, 0.01830385997891426, -0.02135702222585678, 0.0006437902920879424, 0.005626434460282326, -0.010943017899990082, 0.012938153930008411, 0.01174409594386816, 0.014396719634532928, 0.007617791648954153, 0.014615882188081741, -0.012575401924550533, -0.00915192998945713, -0.004772455897182226, 0.01329334918409586, 0.01219753548502922, -0.008003215305507183, -0.053566377609968185, -0.0014755692100152373, -0.00198379997164011, 0.012839908711612225, 0.0015379172982648015, 0.012870138511061668], "9215469c-3a99-45c3-8979-b22e4d10d0d3": [-0.028510890901088715, -0.01594548486173153, -0.00861692801117897, 0.012663927860558033, -0.00561957061290741, -0.03822672367095947, 0.019962171092629433, 0.033376384526491165, -0.02790459804236889, 0.01873442903161049, 0.009048910811543465, 0.04413807392120361, -0.008450197987258434, -0.005524837877601385, -0.01176964771002531, 0.02752566523849964, 0.0027870493941009045, 0.011527130380272865, 0.008124315179884434, -0.05717335268855095, 0.05568793788552284, -0.020235002040863037, -0.020371418446302414, 0.0260099358856678, -0.004251623991876841, -0.015596866607666016, -0.011792383156716824, 0.01905273273587227, -0.03389173373579979, -0.018840530887246132, 0.013694625347852707, 0.0160970576107502, -0.0012580562615767121, 0.007146669086068869, 0.03422519564628601, -0.03110278956592083, 0.022614698857069016, 0.018219079822301865, -0.004236466716974974, -0.007521812804043293, -0.0325578898191452, 0.01562718115746975, 0.00013049492554273456, 0.009185327216982841, -0.016551777720451355, -0.0035202840808779, 0.022842058911919594, 0.0026411605067551136, -0.007173194549977779, -0.03413425013422966, 0.022463126108050346, 0.002949990564957261, -0.01602127216756344, -0.0016436203150078654, 0.03598344326019287, -0.0452900268137455, 0.012716978788375854, 0.0651157796382904, 0.0013044755905866623, -0.05177735537290573, 0.0012779502430930734, -0.023827282711863518, 0.016718506813049316, -0.01841612532734871, 0.02026531659066677, 0.0018956104759126902, -0.004463826306164265, -0.00438425038009882, -0.020598776638507843, 0.033527959138154984, -0.019355878233909607, 0.02472156472504139, -0.05593045428395271, -0.004820023197680712, 0.003594175912439823, 0.006453222595155239, 0.011580181308090687, -0.01906788907945156, 0.010178130120038986, -0.024903452023863792, 0.008071265183389187, 0.0023380143102258444, 0.02638886868953705, -0.005138326436281204, 0.05768870189785957, 0.0346192829310894, -0.03571061044931412, -0.05902254581451416, -0.054202523082494736, -0.03525589033961296, 0.01665787771344185, 0.016536619514226913, -0.006328174844384193, -0.02303910441696644, 0.00717698410153389, 0.013239906169474125, 0.0069306776858866215, 0.00341986701823771, -0.001255214330740273, -0.041258182376623154, -0.0232058335095644, 0.020917080342769623, -0.018052350729703903, -0.002144758589565754, 0.03428582474589348, -0.013588523492217064, -0.00948847271502018, 0.0005755039164796472, -0.01356578804552555, 0.025221755728125572, 0.0048654950223863125, -0.03677162155508995, 0.006745000835508108, -0.017688574269413948, -0.0389239601790905, -0.036650363355875015, -0.03483148664236069, -0.01474805735051632, -0.013383900746703148, -0.04538097232580185, 0.03956056758761406, 0.005217902362346649, 0.022129666060209274, -0.02576741762459278, -0.0080940006300807, -0.01905273273587227, 0.01682460866868496, 0.009526366367936134, 0.018567698076367378, 0.005596834700554609, -0.022690486162900925, -0.018764743581414223, 0.0200228001922369, 0.0007455499144271016, 0.015187619253993034, -0.012406254187226295, 0.009609730914235115, 0.06244809553027153, -0.019749969244003296, 0.041045982390642166, -0.0232058335095644, -0.015930326655507088, -0.0024592727422714233, 0.0016824608901515603, 0.01946198008954525, 0.017658259719610214, -0.023812126368284225, 0.036892879754304886, 0.013255063444375992, 0.012095529586076736, -0.06366068124771118, -0.004456247668713331, 0.015566552057862282, 0.0010562747484073043, 0.01921946182847023, -0.038560185581445694, 0.0006124498322606087, 0.042561713606119156, 0.025494586676359177, 0.03131499141454697, 0.025297541171312332, -0.05086791515350342, -0.006199337542057037, 0.01962870918214321, 0.013194434344768524, 0.042622342705726624, 0.058416254818439484, 0.02943548560142517, -0.03859049826860428, 0.023963699117302895, 0.028526047244668007, -0.01531645655632019, 0.015733283013105392, 0.028450261801481247, -0.018688956275582314, 0.012936759740114212, 0.03334607183933258, 0.05011004954576492, 0.022190295159816742, -0.018931474536657333, -0.03307323902845383, 0.010738950222730637, 0.007571073714643717, 0.0013518421910703182, 0.007499076426029205, 0.05605171248316765, 0.02734377793967724, 0.049776591360569, -0.0007933902088552713, -0.030890587717294693, -0.006987517699599266, 0.01283823698759079, -0.01068590022623539, 0.0161880012601614, -0.025418801233172417, -0.025343013927340508, -0.0077756973914802074, 0.0314362496137619, 0.004600242245942354, 0.02290268801152706, -0.010814737528562546, -0.034558653831481934, -0.03561966493725777, 0.022826900705695152, -0.03634721785783768, 0.030739014968276024, -0.012876130640506744, -0.04050032049417496, 0.026494968682527542, -0.01283823698759079, 0.03925741836428642, -0.030829958617687225, -0.018234238028526306, 0.005608202889561653, -0.01499815285205841, -0.013603681698441505, 0.00019337405683472753, 0.04719984903931618, -0.024024328216910362, -0.035286206752061844, -0.016779135912656784, 0.03622595965862274, 0.0037609064020216465, -0.011724174953997135, -0.06317564845085144, 0.002072761533781886, -0.0015147831290960312, 0.04413807392120361, -0.04762425273656845, -0.0033005031291395426, 0.028935294598340988, -0.005873455666005611, 0.0002605161862447858, -0.01650630496442318, -0.007680964190512896, 0.0334976427257061, 0.03152719512581825, -0.02376665361225605, -0.010382753796875477, 0.009094382636249065, 0.020629091188311577, 0.024782193824648857, -4.991253081243485e-05, -0.0024820086546242237, 0.022266080603003502, 0.02576741762459278, -0.028526047244668007, 0.06875353306531906, 0.020871609449386597, -0.025085339322686195, -0.011860591359436512, -0.0015829909825697541, 0.007703700102865696, 0.00014434964396059513, -0.011534709483385086, 0.029935676604509354, 0.026100879535079002, -0.017249012365937233, -0.002927254419773817, 0.0007360766176134348, 0.011079990305006504, 0.01156502403318882, 0.017370272427797318, 4.046882168040611e-05, 0.036953508853912354, 0.00046632395242340863, 0.008025793358683586, -0.018310025334358215, -0.0017383533995598555, 0.013959878124296665, -0.013611259870231152, -0.002008342882618308, -0.012254681438207626, 0.01356578804552555, 0.016127372160553932, -0.010943573899567127, -0.013755254447460175, -0.0013575261691585183, 0.041440073400735855, -0.010284231044352055, -0.015324035659432411, 0.01586969755589962, 0.014300917275249958, 0.01120124850422144, 0.059537895023822784, -0.017188383266329765, -0.03477085754275322, -0.01139829307794571, -0.043743982911109924, -0.014634378254413605, -0.007574863266199827, -0.007112565450370312, 0.011640810407698154, 0.029314227402210236, 0.026267610490322113, -0.00793484877794981, 0.011906063184142113, -0.0221751369535923, -0.003296713810414076, 0.0389239601790905, 0.007116354536265135, -0.010549483820796013, 0.012739715166389942, -0.019492294639348984, 0.052050184458494186, -0.04444121941924095, 0.025888677686452866, 0.0036794357001781464, -0.031042160466313362, 0.04001528397202492, 0.019416507333517075, -0.0017999300034716725, -0.01352031622081995, -0.002262227702885866, -0.010549483820796013, 0.022614698857069016, -0.0037646957207471132, -0.009920456446707249, -0.00893523171544075, -0.03504369035363197, -0.006430486682802439, -0.015142147429287434, -0.07833295315504074, 0.023827282711863518, 0.048776205629110336, -0.05784027650952339, 0.022463126108050346, -0.012338045984506607, -0.029223283752799034, -0.02966284565627575, -0.0269496887922287, -0.005020857322961092, -0.03561966493725777, 0.018537383526563644, -0.03231537342071533, -0.04886715114116669, -0.05489975959062576, -0.04886715114116669, 0.00948847271502018, -0.03183034062385559, -0.009465737268328667, -0.00917774811387062, 0.016324417665600777, -0.005433893762528896, 0.015225512906908989, -0.004456247668713331, 0.027722710743546486, 0.0034331295173615217, -0.04040937498211861, 0.00033772370079532266, 0.0009084909688681364, 0.00043577252654358745, 0.035286206752061844, -0.024206215515732765, 0.022751115262508392, 0.0002234518324257806, 0.004710132721811533, 0.02441841922700405, 0.01000382099300623, -0.011102725751698017, -0.02337256446480751, -0.024600306525826454, -0.027070946991443634, 0.0034236563369631767, 0.0014579432317987084, 0.008283467032015324, 0.006347121670842171, -0.01419481635093689, -0.019598394632339478, 0.020280474796891212, -0.039681825786828995, 0.023948542773723602, 0.016688192263245583, 0.012027321383357048, -0.01383861992508173, -0.04347115010023117, 0.010155394673347473, -0.01507394015789032, -0.04871557652950287, 0.04043969139456749, -0.003963635303080082, -0.0018766638822853565, -0.0036320690996944904, 0.01351273711770773, 0.03898458927869797, 0.019355878233909607, -0.02376665361225605, -0.014384282752871513, -0.019734811037778854, -0.02305426076054573, -0.03398267924785614, -0.001571623026393354, -0.045108139514923096, -0.005449051037430763, -0.0411672405898571, -0.004168258979916573, -0.0009288585861213505, -0.020371418446302414, -0.0005579782882705331, -0.045017194002866745, 0.01914367638528347, 0.013891669921576977, 0.005316424649208784, -0.01865864172577858, 0.022159980610013008, -0.041834160685539246, -0.0022110717836767435, -0.010594956576824188, 0.031133104115724564, 0.012982231564819813, 0.024630621075630188, 0.02335740625858307, 0.008624506182968616, 0.03029945306479931, 0.050595082342624664, 0.009314163587987423, 0.005392211023718119, 0.02973863296210766, -0.04043969139456749, -0.030602598562836647, 0.039681825786828995, 0.04898840934038162, 0.021265698596835136, 0.02258438430726528, 0.012974653393030167, 0.015210355632007122, -0.010102343745529652, 0.02088676579296589, -0.016081901267170906, -0.013815883547067642, -0.030845114961266518, 0.04040937498211861, 0.0066047958098351955, -0.01865864172577858, 0.012580563314259052, 0.01037517562508583, 0.009859827347099781, 0.004380461294203997, 0.015369507484138012, -0.0048844413831830025, 0.003264504484832287, 0.01144376490265131, -0.013656731694936752, -0.011860591359436512, -0.0291020255535841, -0.03598344326019287, -0.038408610969781876, 0.025176282972097397, 0.025479430332779884, -0.007055725436657667, -1.7288801245740615e-05, 0.020401732996106148, -0.04465341940522194, 0.022690486162900925, -0.0018823478603735566, 0.01180754043161869, 0.0015204671071842313, 0.01667303591966629, -0.001993185607716441, -0.029844732955098152, -0.025812890380620956, -0.005721882451325655, 0.027070946991443634, 0.016491148620843887, 0.0020784453954547644, -0.03070870041847229, 0.01001140009611845, 0.021341485902667046, -0.0016133056487888098, -0.008291046135127544, 0.0006186075042933226, 0.01248961966484785, -0.0259189922362566, 0.04307705909013748, -0.004437300842255354, 0.014604063704609871, -0.027874283492565155, -0.0248882956802845, 0.018400968983769417, -0.021659789606928825, -0.017976563423871994, -0.03301260992884636, 0.0040394216775894165, -0.006544166244566441, 0.02719220519065857, -0.0057294610887765884, -0.01873442903161049, -0.017203541472554207, 0.03516494855284691, -0.0173096414655447, 0.050352565944194794, -0.0033175551798194647, -0.007874219678342342, 0.006108393892645836, -0.0033118710853159428, -0.03931804746389389, -0.007021621335297823, -0.03786294907331467, -0.0248882956802845, -0.04113692417740822, 0.03416456654667854, -0.0116483885794878, 0.004710132721811533, 0.007798433303833008, -0.008177366107702255, 0.010193287394940853, -0.016612406820058823, 0.019280092790722847, -0.0035581772681325674, -0.020462362095713615, -0.04043969139456749, 0.035528723150491714, -0.023630239069461823, -0.008389567956328392, 0.0023190677165985107, 0.020674563944339752, -0.02519144117832184, 0.0014854158507660031, 0.039287734776735306, -0.008579034358263016, -0.008389567956328392, -0.017991721630096436, -0.0033440804108977318, 0.004225098993629217, -0.04013654217123985, -0.005399790126830339, -0.009033753536641598, -0.017355114221572876, 0.03549840673804283, -0.010610113851726055, 0.004369093105196953, 0.003658594563603401, -0.008518405258655548, 0.036559417843818665, 0.02672232873737812, -0.005642306990921497, -0.0037969048134982586, 0.010140237398445606, 0.009048910811543465, 0.005608202889561653, -0.03164845332503319, 0.013535473495721817, -0.022357024252414703, -0.00436530401930213, -0.0023531715851277113, 0.04468373581767082, -0.030208509415388107, 0.017840148881077766, 0.0030200930777937174, 0.01683976501226425, -0.013580945320427418, 0.016294103115797043, -0.01834033988416195, -0.008018214255571365, 0.005354317836463451, -0.019522609189152718, 0.006771525833755732, -0.021826518699526787, -0.02290268801152706, -0.00841230433434248, -0.021720418706536293, -0.0017724573845043778, 0.0027832600753754377, 0.002419484779238701, -0.005945452954620123, 0.013868934474885464, -0.027070946991443634, -0.0008156524854712188, -0.02185683324933052, 0.04074283689260483, 0.04471404850482941, 0.0024744300171732903, 0.04471404850482941, -0.007813590578734875, -0.003853744827210903, 0.055233217775821686, 0.009321742691099644, 0.02050783298909664, -0.029480958357453346, -0.008503247983753681, 0.044380590319633484, -0.014839001931250095, -7.679306145291775e-05, -0.006953413598239422, -0.004065947141498327, 0.036953508853912354, -0.016642721369862556, -0.032891351729631424, -0.0038063782267272472, 0.03207285702228546, -0.0001786904176697135, 0.020553305745124817, -0.0002768576378002763, 0.023554451763629913, -0.02670717053115368, 0.016688192263245583, 0.024676091969013214, 0.020932238548994064, 0.020932238548994064, 0.014702585525810719, 0.0302236657589674, 0.009981085546314716, 0.0034653388429433107, -0.028010699898004532, -0.03868144378066063, 0.046532925218343735, -0.005024646408855915, 0.02696484513580799, 0.004888230934739113, 0.02846541814506054, 0.015687810257077217, -0.005862087476998568, 0.022629857063293457, 0.010481276549398899, 0.043592408299446106, 0.010708635672926903, 0.025312699377536774, 0.031709082424640656, -0.0009373845532536507, 0.009208062663674355, 0.010140237398445606, -0.04480499401688576, 0.0574461854994297, -0.03243663161993027, 0.0048654950223863125, -0.007521812804043293, -0.034407082945108414, -0.010390332899987698, -0.017688574269413948, -0.006854891311377287, -0.000998487463220954, -0.003827219596132636, -0.0047025540843605995, -0.026752643287181854, 0.009768882766366005, -0.010481276549398899, 0.008381989784538746, 0.014695007354021072, -0.015975799411535263, -0.019886383786797523, -0.011208826676011086, 0.016142530366778374, 0.0029139919206500053, 0.03837829455733299, -0.03048134036362171, 0.014657113701105118, -0.020371418446302414, -0.012406254187226295, 0.0441683866083622, 0.02688905969262123, 0.002779470756649971, 0.017097439616918564, 0.02378181181848049, 0.028814036399126053, 0.004403197206556797, -0.006828365847468376, 0.004664660431444645, 0.010109922848641872, 0.003978792577981949, -0.004001528490334749, 0.02696484513580799, -0.018946630880236626, 0.01603642851114273, 0.008503247983753681, 0.007453604601323605, 0.008351675234735012, 0.016066743060946465, 0.01145134400576353, 0.03558935225009918, 0.01283823698759079, 0.0260099358856678, -0.0008895443170331419, 0.022069036960601807, 0.007328556850552559, 0.005225480999797583, 0.004880652297288179, 0.013747675344347954, 0.013346007093787193, 0.007339925039559603, -0.003594175912439823, -0.05129231885075569, -0.03595312684774399, -0.024660935625433922, 0.01985606923699379, -0.02455483376979828, -0.01243656873703003, -0.0004386145155876875, 0.023069418966770172, -0.018643485382199287, 0.007248980924487114, -0.00873060803860426, 0.016627563163638115, -0.017355114221572876, 0.04683607071638107, -0.000865387381054461, 0.009465737268328667, -0.00010793659021146595, -0.014846580103039742, 0.0130049679428339, -0.0052747419103980064, -0.02951127290725708, -0.0336795300245285, 0.0032285060733556747, -0.02232670970261097, 0.005843141116201878, 0.003721118438988924, -0.02855636179447174, -0.03277009353041649, 0.006998885422945023, -0.013073175214231014, 0.008836708962917328, -9.0825415099971e-05, -0.014611641876399517, 0.025343013927340508, 0.0023550663609057665, 0.012512355111539364, -0.020704878494143486, 0.02872309274971485, -0.00041090507875196636, 0.0477151945233345, -0.013429372571408749, 0.03189096972346306, -0.0323760025203228, -0.02511565387248993, -0.019659023731946945, 0.030435867607593536, -0.0002643055049702525, -0.005335371475666761, 0.0048692841082811356, -0.0033308176789432764, 0.028359318152070045, -0.01961355283856392, -0.01596064306795597, 0.009185327216982841, -0.0019439243478700519, -0.000850703741889447, 0.00017750625556800514, 0.007950006052851677, 0.028738250955939293, -0.005543784238398075, 0.011837854981422424, -0.01968933828175068, 0.03280040621757507, 0.002732104156166315, -0.00026572649949230254, -0.0031659819651395082, 0.024827664718031883, 0.0037741689011454582, -0.016157686710357666, -0.005539995152503252, 0.03746885806322098, -0.005198955535888672, 0.030451025813817978, 0.02895045280456543, -0.020401732996106148, -0.007097408175468445, 0.03240631893277168, 0.001435207319445908, -0.027328621596097946, 0.04792739823460579, -0.02032594569027424, -0.007904534228146076, 0.02209935151040554, -0.002099286764860153, 0.0014721532352268696, 0.009700675494968891, 0.017764361575245857, 0.00256347912363708, 0.035437777638435364, 0.014096293598413467, 0.04647229611873627, -0.014369125477969646, 0.03280040621757507, 0.04480499401688576, -0.027222519740462303, -0.04162196069955826, -0.001970449695363641, 0.00474423635751009, -0.014808687381446362, -0.014020507223904133, -0.02544911578297615, -0.04013654217123985, 0.016248630359768867, -0.028116799890995026, 0.03907553106546402, -0.03607438504695892, 0.045896317809820175, -0.01371736079454422, 0.00015867804177105427, 0.024069800972938538, 0.013224748894572258, 0.007635492365807295, -0.002309594303369522, 0.02608572132885456, -0.008556298911571503, -0.024600306525826454, -0.012254681438207626, -0.024282002821564674, -0.019249778240919113, -0.006017450243234634, 0.005953031592071056, -0.02209935151040554, 0.041258182376623154, 0.051080118864774704, 0.008306203410029411, 0.007461183238774538, 0.0044297222048044205, 0.001822665915824473, -0.013323270715773106, 0.0001995317143155262, -0.007032989524304867, -0.00632059620693326, -0.017840148881077766, 0.036165330559015274, -0.03340670093894005, -0.01874958537518978, 0.0007469709380529821, 0.009344478137791157, 0.006104604806751013, 0.00027401564875617623, -0.0009463842143304646, 0.004168258979916573, 0.011989428661763668, 0.028192587196826935, 0.023645395413041115, 0.0007663912256248295, 0.018006877973675728, 0.01148923672735691, -0.007904534228146076, -0.01371736079454422, -0.01211826503276825, -0.02560068853199482, -0.021341485902667046, 0.037438541650772095, 0.003719223663210869, 0.02369086816906929, -0.024130430072546005, -0.01659724861383438, -0.038560185581445694, 0.04156133159995079, -0.007298242300748825, -0.05226238816976547, -0.0220841933041811, -0.00281168008223176, -0.010337281972169876, 0.0015261512016877532, 0.013012546114623547, 0.029965991154313087, 0.018370654433965683, 0.03822672367095947, 0.03023882396519184, -0.03102700412273407, 0.010276652872562408, -0.04325895011425018, -0.02464577741920948, 0.007279295939952135, -0.005869666580110788, -0.00794242788106203, 0.008738186210393906, 0.012156158685684204, -0.0003085932694375515, -0.00034482870250940323, -0.014626799151301384, -0.006790472660213709, -0.010996624827384949, -0.01874958537518978, -0.019992485642433167, 0.016475990414619446, 0.0023626449983567, -0.0012912129750475287, 0.00719972001388669, 0.010458540171384811, 0.02575226128101349, 0.01746121607720852, -0.00010355518315918744, -0.0019183463882654905, -0.004615399520844221, 0.0022849636152386665, -0.04747267812490463, 0.015612023882567883, -0.006710896734148264, 0.009609730914235115, -0.0025502166245132685, 0.015460451133549213, -0.03722634166479111, 0.0030409342143684626, 0.0035922813694924116, -0.008306203410029411, 0.00017490108439233154, 0.004100050777196884, -0.01511941198259592, 0.0033592376857995987, -0.009306585416197777, -0.01491478830575943, 0.008003056980669498, -0.024918610230088234, -0.0037874316330999136, -0.00368701433762908, 0.0013859460595995188, 0.0002662001643329859, -0.0021049706265330315, -0.03204254433512688, -0.024767035618424416, 0.008404725231230259, 0.030587442219257355, -0.03889364376664162, 0.029283912852406502, 0.01212584413588047, -0.0017819306813180447, 0.019189147278666496, 0.04259202629327774, 0.025540059432387352, -0.020598776638507843, -0.029617374762892723, 0.030329767614603043, 0.02625245228409767, 0.0005707672680728137, 0.0004343515320215374, -0.0014816265320405364, -0.01811297982931137, 0.019840912893414497, 0.007699911016970873, 0.04140975698828697, 0.003313765861093998, 0.005168640986084938, -0.0020102376583963633, -0.0034369188360869884, -0.02855636179447174, -0.0021068654023110867, 0.032012227922677994, 0.0025180072989314795, 0.020704878494143486, 0.016536619514226913, -0.002510428661480546, 0.025343013927340508, -0.0013812094694003463, -0.017339956015348434, -0.03507400304079056, -0.04062157869338989, -0.015498344786465168, -0.02791975624859333, -0.00865482073277235, 0.025570373982191086, -0.025479430332779884, -0.01088294479995966, -0.0105267483741045, -0.02511565387248993, 0.01331569254398346, -0.0068662590347230434, 0.00860934890806675, 0.003821535501629114, 0.030253980308771133, 0.012201630510389805, 0.0027283148374408484, 0.024024328216910362, 0.007813590578734875, -0.006945834960788488, -0.004880652297288179, 0.017567316070199013, -0.006907941773533821, -0.00892765261232853, 0.00740055413916707, -0.009314163587987423, 0.015687810257077217, -0.005513469688594341, 0.0003419866843614727, -0.03364921733736992, -0.014982995577156544, -0.0035600720439106226, -0.004145523067563772, -0.003493758849799633, 0.004710132721811533, -0.002948095789179206, 0.008003056980669498, -0.030011463910341263, -0.00908680446445942, -0.019886383786797523, -0.014300917275249958, -0.026222137734293938, 0.013694625347852707, -0.0006948676891624928, -0.008222837932407856, -0.034740544855594635, 0.009958349168300629, -0.004399407655000687, -0.01809782162308693, -0.010041714645922184, 0.03213348612189293, -0.01978028379380703, -0.003213348565623164, 0.0008255994762293994, -0.028359318152070045, -0.013262641616165638, -0.012724557891488075, -0.003476706799119711, -0.018946630880236626, -0.023948542773723602, -0.032254744321107864, 0.013891669921576977, -0.0269496887922287, -0.0014456280041486025, -0.004535823594778776, -0.034983061254024506, 0.04086409509181976, 0.029011081904172897, 0.02153852954506874, -0.006339543033391237, -0.02782881259918213, -0.015854541212320328, 0.004914755932986736, -0.01423270907253027, -0.03531651943922043, -0.0036225959192961454, -0.02784396894276142, -0.017658259719610214, 0.007521812804043293, 0.019825754687190056, -0.027010317891836166, 0.003219032660126686, 0.03940899297595024, -0.011102725751698017, -0.03270946443080902, 0.0028495732694864273, -0.024463890120387077, -0.011671124957501888, 0.005130747798830271, -0.01850706897675991, -0.006294070743024349, 0.029617374762892723, 0.029329385608434677, -0.01738542877137661, -0.008829129859805107, 0.0014892051694914699, -0.00013783674512524158, -0.008086422458291054, -0.025964463129639626, 0.013421793468296528, -0.06590396165847778, -0.025479430332779884, -0.012451726011931896, 0.01985606923699379, -0.00032185588497668505, 0.009079225361347198, 0.005536205600947142, 0.005418736487627029, -0.02479735016822815, 0.0035221788566559553, 0.016006113961338997, -0.02313004806637764, 0.013406636193394661, 0.0043463571928441525, -0.007411922328174114, 0.012466883286833763, -0.005816615652292967, -0.007184562738984823, 0.009988663718104362, 0.0007209193427115679, -0.015036046504974365, 0.013292956165969372, 0.028753407299518585, -0.013421793468296528, -0.01931040734052658, 0.025721946731209755, -0.023645395413041115, 0.014982995577156544, -0.006960992235690355, -0.029632531106472015, 0.008882180787622929, 0.0364987887442112, -0.02025016024708748, -0.003732486395165324, 0.0001170546529465355, 0.020992867648601532, 0.006582059897482395, -0.0024876927491277456, 0.022296395152807236, -0.010594956576824188, 0.0043463571928441525, 0.012292574159801006, -0.003404709743335843, 0.0003391446953173727, -0.010632849298417568, -0.03634721785783768, 0.013118647038936615, -0.025252070277929306, -0.0007299189455807209, 0.00127605558373034, 0.007688542827963829, 0.019643867388367653, 0.008268309757113457, -0.021250542253255844, -0.0037987995892763138, 0.002415695460513234, 0.01579391211271286, -0.011928798630833626, 0.008669978007674217, -0.01104209665209055, 0.048291172832250595, 0.022357024252414703, 0.012747293338179588, 0.007362660951912403, -0.023084575310349464, 0.0160970576107502, 0.02266017161309719, 0.03740822896361351, 0.0259189922362566, -0.0045585595071315765, 0.0189011599868536, -0.00789695605635643, -0.007912113331258297, 0.02840478904545307, 0.0019590817391872406, 0.03131499141454697, 0.010996624827384949, -0.0020936026703566313, -0.005638517439365387, -0.009882562793791294, -0.03240631893277168, 0.004009107127785683, -0.001595306326635182, -0.0036225959192961454, -0.010587377473711967, -0.02631308138370514, 0.0035771240945905447, -0.008669978007674217, 0.002055709483101964, 0.002599477767944336, 0.04835180193185806, 0.02170526050031185, 0.024054642766714096, 0.0011159565765410662, -0.01874958537518978, 0.05774933099746704, -0.0013812094694003463, 0.008753343485295773, 0.004581295419484377, 0.004615399520844221, -0.003056091722100973, -0.005361896473914385, 0.01252751238644123, -0.029147498309612274, -0.01546802930533886, 0.014035664498806, 0.011034518480300903, -0.0018624538788571954, -0.023084575310349464, -0.012921602465212345, -0.01818876527249813, -0.007608966901898384, -0.03446771204471588, 0.00757865235209465, -0.018143294379115105, 0.01865864172577858, -0.02137180045247078, -0.02258438430726528, -0.029784103855490685, 0.005509680137038231, -0.004914755932986736, 0.023569609969854355, -0.01367946807295084, -0.02840478904545307, -0.0211444403976202, 0.00153562449850142, -0.014497961848974228, -0.003366816323250532, -0.008829129859805107, 0.013255063444375992, 0.005373264662921429, -0.023084575310349464, -0.011034518480300903, 0.002595688449218869, -0.010814737528562546, 0.009518787264823914, 0.028253216296434402, -0.008685136213898659, 0.03707476705312729, -0.038166094571352005, 0.026585912331938744, -0.005820405203849077, -0.016854923218488693, 0.006191758904606104, -0.019962171092629433, 0.004308464005589485, -0.0023759074974805117, -0.012906445190310478, 0.013338427990674973, 0.008328938856720924, -0.0003083564224652946, -0.021250542253255844, 0.016870079562067986, 0.013997770845890045, -0.019734811037778854, -0.01124672032892704, -0.03102700412273407, -0.00011812040611403063, 0.0005778722697868943, -0.018461598083376884, -0.012004585936665535, 0.015377085655927658, 0.007339925039559603, -0.01849191263318062, 0.001937293098308146, -0.010352439247071743, -0.010867787525057793, -0.004520666319876909, 0.008291046135127544, -0.007476340513676405, -0.008594191633164883, 0.017264170572161674, -0.018567698076367378, -0.02688905969262123, 0.01012508012354374, -0.010299388319253922, -0.007267927750945091, -0.008601770736277103, 0.015217933803796768, 0.016142530366778374, -0.007446025963872671, 0.009594573639333248, -0.004975385498255491, 0.00917774811387062, 0.015566552057862282, 0.0055021014995872974, -0.010488854721188545, -0.006635110359638929, 0.0012163737555965781, 0.008533562533557415, 0.025828048586845398, 0.021811362355947495, -0.014141765423119068, 0.004615399520844221, 0.0023626449983567, 0.004569927230477333, 0.042713284492492676, 0.02384244091808796, -0.0008762817014940083, 0.0022546490654349327, -0.03374015912413597, -0.006813208572566509, 0.0015005732420831919, 0.012012164108455181, 0.01016297284513712, 0.0031110369600355625, -0.03692319616675377, 0.008920074440538883, 0.027874283492565155, -0.020068271085619926, 0.005896191578358412, 0.015505922958254814, 0.020538147538900375, -0.01176206860691309, -0.0035752293188124895, -0.011837854981422424, 0.011261877603828907, -0.005456629674881697, 0.020159214735031128, -0.0064115398563444614, 0.0400456003844738, -0.023554451763629913, -0.006729843560606241, -0.017521845176815987, 0.018219079822301865, 0.009935613721609116, 0.010913259349763393, -0.037135396152734756, -0.00029106761212460697, 0.008427461609244347, -0.0061690229922533035, 0.015990957617759705, -0.019901541993021965, -0.017112597823143005, -0.005627149250358343, -0.02050783298909664, 0.03546809405088425, -0.004831390921026468, 0.05605171248316765, 0.008548719808459282, -0.013255063444375992, -0.01944682188332081, -0.003186823334544897, -0.003308081766590476, 0.030117565765976906, 0.011102725751698017, -0.029299071058630943, -0.010155394673347473, 0.0035335468128323555, 0.007972742430865765, 0.010935995727777481, -0.009435422718524933, -0.0019382403697818518, 0.019113361835479736, 0.01424028817564249, 0.012716978788375854, 0.003404709743335843, -0.007707489654421806, 0.004361514467746019, -0.01347484439611435, 0.0034066042862832546, 0.004274359904229641, 0.008442618884146214, -0.03167876601219177, 0.028253216296434402, 0.003535441355779767, -0.0066237421706318855, 0.0015469924546778202, 0.006741211283951998, -0.017355114221572876, -0.0030428289901465178, 0.006191758904606104, -0.016475990414619446, 0.010117501020431519, 0.017764361575245857, 0.011701439507305622, 0.003101563546806574, -0.011981849558651447, 0.0019875015132129192, -0.019749969244003296, -0.004873073659837246, -0.01120124850422144, -0.015460451133549213, 0.018764743581414223, 0.01211826503276825, 0.01665787771344185, 0.012421411462128162, -0.005877245217561722, 0.03149687871336937, -0.009791619144380093, 0.002679053694009781, 0.004122787155210972, 0.00614249799400568, -0.017279326915740967, 0.025797734037041664, -0.02447904832661152, -0.011572602204978466, 0.003277767216786742, 0.020795822143554688, 0.007260349113494158, 0.011928798630833626, -0.01259572058916092, -0.020159214735031128, -0.017734047025442123, -0.0008265468059107661, -0.0003123825881630182, -0.0036074386443942785, 0.008381989784538746, -0.00755591643974185, -0.001305422862060368, 0.002616529818624258, 0.007669596467167139, -0.010670742951333523, -0.02032594569027424, -0.008957967162132263, 0.01004929281771183, 0.023887911811470985, -0.009874984622001648, -0.02241765335202217, -0.03737791255116463, 0.007264138199388981, -0.01682460866868496, 0.011193669401109219, -0.005881034303456545, -0.047502994537353516, -0.010064450092613697, 0.005202745087444782, -0.004846548195928335, 0.026661699637770653, 0.004501719493418932, -0.023812126368284225, 0.04516876861453056, 0.013846198096871376, -0.0006328175077214837, -0.0010316440602764487, -0.0037571170832961798, -0.011019360274076462, -0.009101961739361286, 0.0008957019890658557, -0.006563113071024418, 0.01586969755589962, 0.011671124957501888, 0.00010106843546964228, -0.0030447235330939293, 0.022432811558246613, 0.010314545594155788, 0.0031375621911138296, 0.027313463389873505, 0.03110278956592083, -0.013808304443955421, -0.008162208832800388, 0.02935970015823841, 0.015225512906908989, 0.012413832359015942, 0.00307124899700284, 0.016945866867899895, 0.009981085546314716, 0.01012508012354374, -0.02934454195201397, 0.0023702236358076334, -0.017809832468628883, -0.006434275768697262, -0.00030906693427823484, 0.027616608887910843, -0.007643071003258228, 0.02305426076054573, 0.03261851891875267, -0.020720036700367928, 0.022826900705695152, -0.009314163587987423, 0.009905299171805382, -0.0068321553990244865, -0.013861355371773243, 0.001096062595024705, -0.02272080071270466, -0.012186473235487938, 0.0080940006300807, 0.009609730914235115, 0.0023664343170821667, -0.009071647189557552, -0.01284581609070301, 0.01356578804552555, -0.047806140035390854, -0.022372182458639145, -0.031042160466313362, 0.008541141636669636, -0.02528238482773304, 0.003402814967557788, -0.0018937158165499568, -0.01985606923699379, -0.01929524913430214, -0.0041872053407132626, 0.020401732996106148, 0.00917774811387062, 0.010829894803464413, 0.004304674454033375, -0.027252834290266037, 0.01921946182847023, -0.0593256913125515, 0.009503629989922047, -0.019734811037778854, 0.0034160776995122433, -0.006066711153835058, 0.026540441438555717, -0.011428607627749443, 0.022129666060209274, 0.011019360274076462, 0.016536619514226913, 0.013148962520062923, -0.03398267924785614, -0.02112928405404091, 0.01120124850422144, 0.012027321383357048, -0.007214877288788557, -0.013664310798048973, -0.005574098788201809, -0.006525219883769751, 0.019416507333517075, -0.004179626703262329, 0.026980003342032433, -0.025873519480228424, -0.018052350729703903, -0.011284613981842995, -0.02193262055516243, -0.024676091969013214, 0.011709017679095268, -0.010920838452875614, -0.006259967107325792, 0.010670742951333523, -0.005479365587234497, 1.1974862900387961e-05, 0.025312699377536774, -0.009465737268328667, 0.02863214910030365, 0.03677162155508995, -0.028829194605350494, 0.013346007093787193, -7.187878509284928e-05, -0.010291810147464275, -0.02647981233894825, -0.045411285012960434, -0.01527856383472681, -0.0011680597672238946, -0.016551777720451355, -0.002531270030885935, -0.021947776898741722, 0.01715806871652603, -0.02384244091808796, 0.016612406820058823, 0.018522227182984352, 0.022842058911919594, -0.025464272126555443, 0.024509362876415253, 0.003921952564269304, 0.028435103595256805, -0.00018094033293891698, -0.0028817825950682163, -0.006214494816958904, -0.005308846011757851, 0.04101566597819328, 0.0178704634308815, 0.00326071516610682, -0.009723410941660404, 0.015399822033941746, -0.025252070277929306, 0.016369888558983803, 0.022523755207657814, -0.022296395152807236, -0.0050966436974704266, -0.013058017939329147, 0.021978091448545456, -0.028298689052462578, -0.01865864172577858, -0.007866641506552696, 0.005180009175091982, -0.010041714645922184, 0.0002477272064425051, -0.009541523642838001, -0.001686250208877027, -0.040166858583688736, 0.012391096912324429, -0.01897694543004036, -0.01336116436868906, 0.006172812543809414, 0.027692396193742752, 0.015104254707694054, 0.008275888860225677, -0.01283823698759079, 0.0017506687436252832, 0.034346453845500946, 0.0011917430674657226, 0.025418801233172417, -0.012497197836637497, -0.0018615064909681678, 0.019901541993021965, -0.003463444299995899, 0.0008369674324057996, -0.013179277069866657, 0.014429754577577114, 0.0036074386443942785, -0.002885571913793683, -0.01849191263318062, -0.017991721630096436, 0.0028723091818392277, 0.016491148620843887, -0.012853394262492657, 0.0038025889080017805, 0.029329385608434677, 0.00794242788106203, -0.0010685899760574102, 0.0010951153235509992, 0.010557062923908234, -0.004122787155210972, -0.0017345640808343887, -0.019916698336601257, -0.009458158165216446, -0.01037517562508583, -0.00801063608378172, -0.027328621596097946, -0.00933689996600151, -0.006699529010802507, -0.013482422567903996, 0.004077314864844084, -0.0017876146594062448, 0.015020889230072498, 0.012315310537815094, -0.005119379609823227, -0.019280092790722847, -0.01383861992508173, 0.0014569959603250027, 0.010640428401529789, -0.002108759945258498, 0.012110686860978603, 0.01016297284513712, -0.0057749333791434765, -0.004994331859052181, -0.0024175902362912893, -0.004084893502295017, -0.004937492311000824, 0.006631320808082819, -0.0006489221123047173, 0.003550598630681634, -0.011019360274076462, 0.0020159215200692415, -0.0066199530847370625, 0.06869290769100189, 0.0041834162548184395, 0.011193669401109219, -0.010625271126627922, -0.0060212393291294575, -0.035225577652454376, -0.0026354764122515917, 0.017127754166722298, 0.026858745142817497, 0.008381989784538746, -0.007002674974501133, -0.0038006941322237253, 0.015551394782960415, 0.004998121410608292, -0.025661317631602287, 0.019840912893414497, 0.0182493943721056, 0.02973863296210766, 0.0002009527088375762, 0.017673417925834656, 0.0060856579802930355, -0.013399058021605015, -0.022993631660938263, 0.011345243081450462, -0.0035297574941068888, 0.0378023199737072, -0.024130430072546005, 0.002267911797389388, 0.012542669661343098, 0.020128900185227394, -0.003372500417754054, -0.013694625347852707, 0.003069354221224785, 0.0027283148374408484, 0.004649503156542778, 0.009677939116954803, 0.001949608325958252, 0.010958731174468994, -0.0005693462444469333, -0.010435804724693298, -0.0019439243478700519, 0.01738542877137661, 0.018704114481806755, 0.021568844094872475, 0.006206916179507971, -0.010579799301922321, -0.00892765261232853, 0.0012182684149593115, 0.003963635303080082, -0.011504394933581352, -0.018294867128133774, -0.009738568216562271, -0.0024422206915915012, 0.02034110389649868, 0.005725672002881765, 0.00031522457720711827, 0.02232670970261097, 0.0057938797399401665, 0.011428607627749443, -0.0031792446970939636, -0.026661699637770653, 0.017127754166722298, -0.003804483450949192, -0.01944682188332081, -0.016218315809965134, -0.012421411462128162, -0.0021902306471019983, -0.009579416364431381, 0.0006238178466446698, -0.009981085546314716, -0.02034110389649868, 0.011458922177553177, -0.0019875015132129192, -0.024115271866321564, 0.0017383533995598555, 0.008488090708851814, -0.018522227182984352, 0.02408495731651783, 0.018143294379115105, 0.010473697446286678, 0.011830276809632778, 0.010504011996090412, -0.021189913153648376, -0.015195198357105255, 0.0027737868949770927, 0.009283849038183689, 0.02872309274971485, -0.031466566026210785, -0.002525585936382413, -0.02864730730652809, -0.026661699637770653, 0.001101746573112905, -0.00029793576686643064, 0.023872755467891693, 0.012656349688768387, -0.004194783978164196, -0.011011782102286816, 0.0009785934817045927, 0.020159214735031128, -0.004137944430112839, 0.005699146538972855, 0.01777951791882515, -0.01443733274936676, -0.005350528750568628, 0.015066361054778099, -0.012542669661343098, 0.023008789867162704, 0.006434275768697262, -0.034407082945108414, 0.0069950963370501995, 0.0039030059706419706, -0.023327091708779335, -0.002519901841878891, 0.00033369753509759903, -0.02646465413272381, 0.016142530366778374, 0.02313004806637764, -0.01496026013046503, -0.021568844094872475, -0.0160970576107502, 0.005479365587234497, 0.006047764793038368, 0.0010022767819464207, -0.009988663718104362, 0.0013148961588740349, -0.002241386566311121, -0.004471404943615198, -0.016612406820058823, -0.011019360274076462, 0.0009994348511099815, 0.0006034502293914557, 0.01195911318063736, 0.011815119534730911, -1.9538712876965292e-05, 0.028268374502658844, -0.000806179188657552, -0.013959878124296665, -0.02663138508796692, 0.02455483376979828, -0.010943573899567127, 0.007392975501716137, -0.016870079562067986, 0.005361896473914385, 0.02152337320148945, -0.004736657720059156, 0.018552541732788086, -0.006805629935115576, -0.011383135803043842, -0.0054035792127251625, -0.018446439877152443, 0.02999630570411682, -0.03510431945323944, 0.006468379870057106, -0.015748439356684685, -0.0011538498802110553, 0.004062157589942217, -0.03192128613591194, 0.04137944430112839, -0.023508980870246887, -0.010087186470627785, 0.0116483885794878, 0.006176601629704237, -0.00667679263278842, -0.0007152353064157069, 0.0050928546115756035, 0.011216405779123306, 0.019977327436208725, 0.03355827182531357, 0.003963635303080082, -0.00773401465266943, -0.0004639556282199919, 0.010655585676431656, 0.013580945320427418, -0.01594548486173153, 0.009632467292249203, -0.0026373709551990032, 0.0032891351729631424, 0.003777958219870925, -0.019113361835479736, 0.012739715166389942, 0.01145134400576353, 0.0009203326189890504, 0.017491530627012253, 0.001260898308828473, -0.01527098473161459, -0.00771506829187274, 0.004452458117157221, -0.0032285060733556747, -0.005536205600947142, 0.004372882656753063, 0.004736657720059156, 0.007722646929323673, 0.012087950482964516, -0.0009028069907799363, -0.015301299281418324, -0.009708253666758537, 0.02560068853199482, 0.022690486162900925, 0.017264170572161674, -0.020522991195321083, 0.005733250640332699, 0.00948847271502018, -0.0004935597535222769, 0.009458158165216446, -0.013020125217735767, -0.006949624512344599, -0.012974653393030167, -0.02496408112347126, -0.013694625347852707, -0.00041303655598312616, -0.032982297241687775, -0.04062157869338989, 0.008965546265244484, -0.005475576501339674, -0.01032970380038023, 0.003181139472872019, 0.005426315125077963, 0.005047382786870003, 0.016930710524320602, -0.013967456296086311, 0.01259572058916092, 0.0023228570353239775, 0.024463890120387077, -0.005407368764281273, -0.01602127216756344, 0.0044297222048044205, 0.012141001410782337, 0.013505158945918083, 0.00788937695324421, 0.009928034618496895, 0.015043625608086586, -0.017809832468628883, -0.005668831989169121, 0.020841294899582863, -0.0027150523383170366, 0.01268666423857212, 0.01032212469726801, 0.005627149250358343, 0.02702547423541546, -0.0220841933041811, -0.0029139919206500053, -0.004513087682425976, 0.0052747419103980064, -0.011436186730861664, 0.010018978267908096, -0.011898484081029892, -0.002874203957617283, 0.013232327066361904, 0.0020746560767292976, -2.5326316972495988e-05, -0.0013954193564131856, -0.0018851897912099957, 0.0021807572338730097, 0.014043242670595646, 0.010140237398445606, -0.010579799301922321, -0.012466883286833763, 0.012345625087618828, 0.0027131575625389814, -0.018567698076367378, 0.006449433509260416, 0.017931092530488968, -0.028177430853247643, -0.0105722201988101, 0.011186091229319572, 0.015308878384530544, -0.03176971152424812, -0.002838205313310027, 0.00023150414926931262, -0.0004831390979234129, 0.016885237768292427, 0.006517641246318817, 0.011254298500716686, 0.009397529065608978, -0.009549101814627647, -0.006726054009050131, 0.007131511811167002, -0.027086103335022926, 0.00933689996600151, 0.027874283492565155, -0.000688236381392926, 0.013186855241656303, 0.019734811037778854, -0.007821169681847095, -0.000726603320799768, -0.01579391211271286, 0.002398643409833312, 0.009579416364431381, -0.011193669401109219, 0.013058017939329147, 0.0076771751046180725, -0.010534326545894146, 0.014103872701525688, -0.006385014858096838, -0.01148923672735691, 0.012519934214651585, -0.008700293488800526, 0.011436186730861664, 0.019280092790722847, -0.004441090393811464, 0.0036851197946816683, -0.0006863417220301926, -0.007169405464082956, -0.025964463129639626, 0.011625653132796288, 0.015915170311927795, 0.010784422047436237, 0.00793484877794981, 0.000525769020896405, 0.007343714125454426, 0.0045585595071315765, -0.011322506703436375, -0.016854923218488693, -0.005934084765613079, -0.02184167690575123, -0.01252751238644123, 0.008222837932407856, 0.008920074440538883, -0.031133104115724564, 0.0012798449024558067, -0.0010477487230673432, -0.0014276286819949746, -0.019507450982928276, 0.024054642766714096, 0.002694210968911648, 0.012368360534310341, 0.019810598343610764, 0.020144058391451836, 0.006820787210017443, -0.031951598823070526, 0.01937103644013405, 0.0026070564053952694, -0.009943191893398762, -0.0037021718453615904, 0.005706725176423788, 0.016051586717367172, -0.007423290051519871, 0.00030788275762461126, -0.013277798891067505, 0.009791619144380093, -0.006032607518136501, -0.016415361315011978, -0.0036491211503744125, 5.056382360635325e-05, 0.016779135912656784, 0.006752579472959042, 0.023402879014611244, -0.01596064306795597, 0.011799962259829044, 0.007104986812919378, 0.0038556393701583147, -0.01092841662466526, 0.029647689312696457, 0.015566552057862282, -0.019280092790722847, -0.014088715426623821, 0.013603681698441505, 0.02122022770345211, -0.02097770944237709, 0.014664692804217339, -0.018385810777544975, 0.00861692801117897, -0.004395618569105864, 0.002430852735415101, 0.0029424119275063276, 0.0037703795824199915, -0.0037855368573218584, 0.015051203779876232, -0.0243274737149477, -0.0029291491955518723, 0.0012135317083448172, -0.02688905969262123, -0.01547560840845108, 0.0035487040877342224, -0.019264934584498405, 0.0047025540843605995, -0.01161049585789442, -0.008647242560982704, -0.0059378743171691895, -0.01248204056173563, 0.038954272866249084, -0.0140811363235116, -0.01747637242078781, -0.015339192934334278, 0.011223983950912952, 0.018370654433965683, 0.023266462609171867, 0.001252372283488512, 0.003899216651916504, -0.0007758645224384964, -0.011853012256324291, -0.0009080172749236226, -0.010670742951333523, 0.006877627223730087, 0.0005347686819732189, 0.02088676579296589, -0.022857215255498886, 0.013103489764034748, -0.0077756973914802074, 0.0010468013351783156, 0.002358855679631233, -0.004255413543432951, 0.013073175214231014, 0.0038196409586817026, 0.003446392249315977, -0.01264119241386652, -0.004956438671797514, 0.016081901267170906, 0.024433575570583344, -0.007703700102865696, 0.0014096293598413467, 0.00578251201659441, -0.020083429291844368, -0.0005646095960400999, 0.002809785306453705, -0.02384244091808796, 0.018203923478722572, -0.019568080082535744, 0.0036756463814526796, 0.0032209272030740976, 0.02017437294125557, -0.01288370881229639, 0.022296395152807236, -0.004763183183968067, 0.017809832468628883, -0.012247102335095406, 0.02065940760076046, 0.00542252603918314, -0.0081394724547863, 0.011307349428534508, -0.017885619774460793, -0.01708228327333927, -0.004945070948451757, -0.0042478349059820175, -0.03374015912413597, -0.017688574269413948, 0.036741308867931366, -0.030253980308771133, -0.003095879452303052, 0.02344834990799427, -0.012292574159801006, -0.016627563163638115, -0.012186473235487938, 0.005308846011757851, 0.01124672032892704, 0.016051586717367172, 0.008647242560982704, 0.012701821513473988, -0.008586613461375237, -0.01683976501226425, -0.004581295419484377, 0.008700293488800526, -0.0020632881205528975, 0.010693478398025036, -0.01316411979496479, -0.006968570873141289, -0.011481658555567265, 0.019507450982928276, 0.024706406518816948, -0.04028811678290367, 0.003895427333191037, -0.005236848723143339, -0.0024876927491277456, 0.01280034426599741, -0.023963699117302895, 0.005047382786870003, 0.0032626099418848753, -0.0038878486957401037, -0.005164851900190115, -0.006146287079900503, -0.01068590022623539, 0.0066388994455337524, 0.010018978267908096, -0.010087186470627785, -0.0016597248613834381, 0.014482804574072361, -0.0014920472167432308, 0.011193669401109219, -0.0017355114687234163, -0.00036661731428466737, -0.006422908045351505, 0.0007104986580088735, -0.004297095816582441, 0.005672621540725231, 0.0312543623149395, -0.020613934844732285, 0.015460451133549213, 0.018203923478722572, 0.014035664498806, 0.005903770215809345, 0.006176601629704237, 0.004967806860804558, 0.0232967771589756, -0.016248630359768867, 0.0179614070802927, 0.001078063272871077, -0.013846198096871376, 0.021947776898741722, -0.0024592727422714233, 0.005555152427405119, -0.00020343945652712137, -0.007673385553061962, 0.0017241433961316943, 0.012626035138964653, 0.021796204149723053, 0.011178512126207352, -0.009041332639753819, 0.031618136912584305, 0.026540441438555717, 0.028980767354369164, 0.010056871920824051, 0.022842058911919594, -0.004971595946699381, 0.015839383006095886, 0.0024081168230623007, 0.021947776898741722, 0.0014418386854231358, 0.017900777980685234, -0.000578819599468261, 0.007919691503047943, 0.006309228017926216, -0.018158450722694397, -0.0018236133037135005, 0.0105722201988101, -0.0007455499144271016, -0.007237613201141357, 0.022629857063293457, 0.006445643957704306, 0.016142530366778374, 0.00201402697712183, -0.024539677426218987, 0.006350910756736994, -0.006510062608867884, 0.011724174953997135, 0.0008634927216917276, 0.007343714125454426, 0.012474462389945984, 0.006407750770449638, 0.03828735277056694, -0.007214877288788557, 0.021098967641592026, -0.010951153002679348, 0.015854541212320328, -0.019901541993021965, -0.00821525976061821, -0.011898484081029892, -0.009268691763281822, 0.011072411201894283, -0.0151118328794837, 0.007146669086068869, -0.005869666580110788, 0.0014247866347432137, 0.012739715166389942, 0.004100050777196884, 0.012898867018520832, -0.01665787771344185, -0.005543784238398075, -0.005918927490711212, -0.003467233618721366, 0.029723474755883217, -0.014520698226988316, -0.02440326102077961, -0.010564642027020454, 0.004698764532804489, 1.893182889034506e-05, 0.0011121672578155994, 0.006612374447286129, -0.009791619144380093, 0.004910966847091913, 0.015142147429287434, -0.0032682938035577536, -0.007525601889938116, -0.007067093625664711, 0.008541141636669636, 0.0012173210270702839, 0.0048692841082811356, -0.016794294118881226, -0.000549452321138233, 0.013232327066361904, -0.0010439594043418765, 0.01304286066442728, -0.0038651127833873034, 0.004490351770073175, -0.00402426440268755, 0.012178894132375717, 0.023342249915003777, -0.006301649380475283, 0.019037574529647827, 0.008904916234314442, -0.024115271866321564, 0.019325563684105873, -0.008291046135127544, -0.013065597042441368, 0.00984466914087534, 0.011193669401109219, -0.014664692804217339, 0.009056489914655685, -0.0034103936050087214, -0.015233091078698635, -0.021083811298012733, -0.006551744882017374, -0.002965147839859128, -0.005585466977208853, 0.0080940006300807, 0.008836708962917328, -0.005399790126830339, 0.004838969558477402, -0.017900777980685234, 0.005433893762528896, -0.018613170832395554, 0.0094960518181324, 0.0006043975590728223, 0.015392242930829525, -0.0023948540911078453, -0.00420615216717124, -0.011792383156716824, 0.00422888807952404, 0.012588141486048698, 0.004683607257902622, -0.017643103376030922, -0.006919309962540865, 0.0005447156727313995, -0.006438065320253372, 0.020128900185227394, -0.009003438986837864, -0.01826455257833004, 0.02146274410188198, 0.01635473221540451, 0.021280856803059578, -0.007643071003258228, 0.007226245012134314, 0.007067093625664711, -0.008071265183389187, -0.026176664978265762, 0.009003438986837864, 0.0023929595481604338, -0.02657075598835945, 0.008950388990342617, 0.0009075436391867697, -0.039924342185258865, -0.00948847271502018, 0.0005527679459191859, 0.003895427333191037, 0.005744618363678455, 0.01626378856599331, -0.00544526195153594, 0.006843523122370243, -0.00683973403647542, 0.005862087476998568, -0.005471786949783564, -0.015255827456712723, 0.026222137734293938, -0.017840148881077766, 0.00490338820964098, 0.0018624538788571954, -0.008169787004590034, 0.012807922437787056, -0.04910966753959656, 0.0063130175694823265, -0.005433893762528896, -0.02184167690575123, -0.03571061044931412, -0.005884823855012655, -0.00596061022952199, 0.009730990044772625, -0.018461598083376884, -0.0075293914414942265, 0.013148962520062923, 0.008313781581819057, -0.026585912331938744, 0.0006124498322606087, 0.011542287655174732, -0.009632467292249203, 0.007662017829716206, 0.006385014858096838, -0.0025805311743170023, -0.011057253926992416, -0.027692396193742752, 0.014725321903824806, -0.024448733776807785, -0.011155776679515839, 0.00211444403976202, 0.004604031331837177, -0.001662566908635199, -1.529052315163426e-05, -0.0013006862718611956, -0.0035581772681325674, -0.03843892365694046, -0.011072411201894283, -0.0013925774255767465, -0.023327091708779335, 0.002510428661480546, 0.0019875015132129192, -0.01817360892891884, 0.010291810147464275, 0.00932932086288929, -0.020310789346694946, -0.012398675084114075, -0.025479430332779884, -0.019098203629255295, -0.01620315946638584, -0.008086422458291054, 0.00857145618647337, -0.005142115522176027, 0.00873060803860426, -0.00436530401930213, 0.02082613669335842, 0.0021655999589711428, -0.0026620016433298588, -0.003133772872388363, 0.006957203149795532, -0.0028401000890880823, 0.008192523382604122, -0.01633957400918007, -0.016930710524320602, -0.013186855241656303, 0.027313463389873505, 0.0009231746080331504, -0.015990957617759705, -0.001641725655645132, -0.003255031304433942, -0.005706725176423788, -0.004380461294203997, 0.008306203410029411, 0.006017450243234634, -0.008374410681426525, -0.0012220577336847782, 0.015839383006095886, -0.01140587218105793, 0.007173194549977779, 0.023948542773723602, -0.0019875015132129192, -0.004372882656753063, 0.006923099048435688, -0.00456613814458251, -0.004251623991876841, 0.008510827086865902, -0.002358855679631233, 0.008124315179884434, 0.01912851817905903, -0.015354350209236145, -0.039833396673202515, -0.002230018610134721, -0.0018984524067491293, 0.01938619278371334, -0.01953776553273201, -0.013702203519642353, 0.020462362095713615, -0.02000764198601246, 0.0007247086614370346, -0.015164883807301521, -0.011875748634338379, 0.0077567510306835175, -0.00544526195153594, 0.0029518851079046726, -0.0003931426035705954, 0.0060060820542275906, -0.003910584840923548, 0.003463444299995899, -0.003986371215432882, 0.016688192263245583, 0.012671506963670254, -0.013823461718857288, 0.0038916380144655704, -0.014460069127380848, 0.014634378254413605, -0.007874219678342342, -0.011330085806548595, -0.0015422557480633259, 0.014202394522726536, 0.021674945950508118, -0.003971213940531015, -0.02399401366710663, -0.025494586676359177, -0.013853777199983597, -0.018810216337442398, 0.001745932037010789, -0.006763947196304798, -0.002182652009651065, 0.013080754317343235, 0.006771525833755732, -0.019037574529647827, -0.039681825786828995, -0.016763979569077492, -0.01490720920264721, 0.005524837877601385, 0.031860653311014175, 0.008025793358683586, 0.002626002999022603, 0.01208037231117487, 0.007472551427781582, 0.002309594303369522, -0.02234186790883541, -0.008594191633164883, 0.020704878494143486, 0.003541125450283289, 0.0178704634308815, 0.003514599986374378, -0.00901859626173973, 0.003840482095256448, -0.0026961055118590593, 0.01212584413588047, -0.006790472660213709, 0.0006541324546560645, -0.0008734397124499083, 0.004448669031262398, -0.018143294379115105, 0.024767035618424416, 0.02625245228409767, -0.005915138404816389, 0.019583238288760185, -0.005987135693430901, -0.008677557110786438, 0.012747293338179588, -0.001027854741550982, -0.012307731434702873, 0.005437683314085007, -0.00032706622732803226, -0.010564642027020454, 0.010905681177973747, -0.017051968723535538, -0.00016767768829595298, 0.017582474276423454, -0.010306967422366142, -0.027616608887910843, 0.002099286764860153, -0.014005349949002266, -0.010337281972169876, 0.012982231564819813, -0.0070936186239123344, -0.001355631509795785, 0.0008691766997799277, -0.010943573899567127, 0.012747293338179588, -0.013406636193394661, -0.0016654088394716382, 0.0029935678467154503, -0.0036604891065508127, 0.01777951791882515, 0.006828365847468376, 0.013391478918492794, -0.02911718375980854, 0.004350146744400263, 0.02290268801152706, -0.0028041014447808266, 0.014967838302254677, -0.008700293488800526, 0.011974271386861801, -0.011792383156716824, -0.014065979048609734, 0.00753697007894516, 0.010102343745529652, -0.0064570121467113495, -0.007525601889938116, -0.003514599986374378, 0.015513502061367035, -0.004244045354425907, -0.0029424119275063276, 0.02258438430726528, -0.011860591359436512, 0.009829511865973473, 0.021493058651685715, 0.0008104421431198716, -0.0018217186443507671, 0.003207664703950286, -0.009230799041688442, -0.00634333211928606, 0.013861355371773243, -0.013020125217735767, -0.00881397258490324, -0.00036164381890557706, -0.013292956165969372, -0.005066329147666693, 0.010625271126627922, 0.004327410366386175, 0.011625653132796288, 0.005975767504423857, 0.0044107758440077305, -0.015990957617759705, -0.006597217172384262, -0.006426697131246328, 0.019325563684105873, 0.003565755905583501, -0.018476754426956177, -0.0058582983911037445, -0.02170526050031185, -0.0017345640808343887, -0.00721866637468338, 0.006517641246318817, 0.030572284013032913, 0.023145204409956932, -0.0027131575625389814, 0.01690039597451687, -0.009458158165216446, -0.010132658295333385, -0.023963699117302895, 0.01906788907945156, -0.003255031304433942, 0.004763183183968067, -0.015217933803796768, 0.01474805735051632, -0.017582474276423454, -0.011731754057109356, -0.0094960518181324, -0.00683594448491931, -0.003925742115825415, -0.03837829455733299, 0.00045708747347816825, 0.00024938504793681204, 0.013482422567903996, -0.009890141896903515, -0.004016685765236616, 0.00881397258490324, -0.007745382841676474, 0.005543784238398075, 0.0003033829270862043, 0.0077605401165783405, -0.0038347982335835695, -0.014467647299170494, -0.00841230433434248, -0.013952299021184444, 0.034740544855594635, 0.012951917015016079, 0.011890905909240246, 0.007650649640709162, 0.005009489133954048, -0.03048134036362171, -0.0020689722150564194, -0.0030769328586757183, -0.005066329147666693, 0.007392975501716137, -0.009033753536641598, -0.0022110717836767435, 0.016051586717367172, -0.017643103376030922, -0.005123169161379337, -0.0028836773708462715, 0.006324385292828083, 0.0062296525575220585, 0.025388486683368683, 0.017021654173731804, -0.006722264923155308, -0.00810157973319292, -0.013277798891067505, -0.004975385498255491, -0.006756368558853865, 0.004907177295535803, -0.010807158425450325, 0.017734047025442123, 0.021250542253255844, 0.01495268102735281, -0.005638517439365387, 0.01000382099300623, 0.014126608148217201, 0.002055709483101964, 0.004539612680673599, -0.005020857322961092, -0.015581709332764149, -0.02281174436211586, -0.019719654694199562, 0.005301267374306917, -0.004319831728935242, 0.014823844656348228, -0.012656349688768387, 0.01674882136285305, -0.013467265293002129, 0.00801063608378172, -0.010360018350183964, 0.0015735176857560873, 0.003567650681361556, 0.005877245217561722, 0.008495669811964035, -0.005975767504423857, 0.02359992451965809, 0.01264119241386652, 0.01740058697760105, -0.03907553106546402, 0.003709750482812524, -0.006472169421613216, 0.0036661732010543346, -0.01929524913430214, -0.010504011996090412, 0.013133805245161057, -0.006949624512344599, 0.00220349314622581, 0.01691555231809616, 0.0009918560972437263, 0.011026939377188683, 0.013459687121212482, 0.0047480259090662, -0.021493058651685715, -0.009799197316169739, -0.0026127404998987913, 0.005589256063103676, -0.007192141376435757, -0.026206979528069496, 0.021402115002274513, -0.008700293488800526, 0.009238377213478088, 0.007419500965625048, 0.011739333160221577, 0.015005731955170631, -0.020720036700367928, -0.0012950022937729955, 0.01025391649454832, 0.00039622143958695233, -0.002061393577605486, 0.0021902306471019983, -0.029526429250836372, 0.017688574269413948, -0.0033630270045250654, -0.010920838452875614, -0.030117565765976906, 0.017900777980685234, -0.016854923218488693, 0.03158782422542572, 0.015581709332764149, 0.013300535269081593, 0.011261877603828907, 0.032345689833164215, -0.011686282232403755, 0.022705642506480217, 0.008495669811964035, -0.009617310017347336, 0.015483187511563301, 0.0105722201988101, -0.0021674945019185543, -0.015195198357105255, -0.005971977952867746, -0.011095147579908371, 0.006612374447286129, 0.0026866323314607143, -0.018567698076367378, -0.016445675864815712, -0.006631320808082819, 0.011792383156716824, -0.018082665279507637, 0.03110278956592083, -0.006040186155587435, 0.00845777615904808, -0.0024706406984478235, -0.0029462012462317944, 0.018870845437049866, 0.01120124850422144, -0.015066361054778099, -0.01104967575520277, -0.0011595338582992554, -0.010056871920824051, 0.008586613461375237, -0.003239874029532075, -0.00719593046233058, -0.005164851900190115, 0.005138326436281204, 0.00649869441986084, -0.006763947196304798, 0.01697618141770363, 0.008904916234314442, 0.01850706897675991, 0.011337663978338242, 0.03759011626243591, -0.002194019965827465, 0.016809450462460518, -0.0035752293188124895, -0.0179614070802927, 0.012375939637422562, 0.007180773187428713, -0.009139854460954666, 0.007408132776618004, -0.002288753166794777, 0.015202776528894901, -0.01611221581697464, 0.017885619774460793, -0.006661635357886553, 0.00629786029458046, -0.01715806871652603, -0.006407750770449638, 0.0105267483741045, 0.0030428289901465178, -0.013209591619670391, 0.004323621280491352, -0.00016957234765868634, -0.012497197836637497, -0.017658259719610214, -0.006661635357886553, -0.003112931502982974, -0.0036188066005706787, -0.0003777484525926411, -0.01012508012354374, 0.009435422718524933, -0.02112928405404091, 0.023796968162059784, -0.005615781527012587, -0.006601006258279085, 0.0325578898191452, 0.006301649380475283, 0.006112183444201946, 0.012087950482964516, 0.015346771106123924, -0.0034975481685250998, -0.0065593235194683075, -0.011633231304585934, 0.016157686710357666, -0.004262992180883884, 0.006976149510592222, 0.008624506182968616, -0.011186091229319572, 0.002790838712826371, -0.0007834432180970907, -0.004789708182215691, -0.0032569258473813534, -1.5497751519433223e-05, 0.0010790106607601047, -0.0003242242382839322, -0.0008743870421312749, 0.00788937695324421, -0.0019837121944874525, -0.004960228223353624, 0.00210307608358562, 0.024054642766714096, 0.0017800360219553113, -0.013292956165969372, -0.012459305115044117, 0.015384664759039879, 0.006468379870057106, 0.0008710713591426611, 0.010511591099202633, -0.004217519890516996, -0.017051968723535538, 0.008291046135127544, 0.003626385238021612, -0.005763565190136433, -0.004342568106949329, 0.02032594569027424, 0.006983728148043156, -0.00044287749915383756, 0.004793497733771801, 0.012247102335095406, 0.003145140828564763, 0.007965163327753544, -0.004740447271615267, 0.009632467292249203, -0.006025028880685568, 0.0009525418863631785, 0.010291810147464275, -0.0037116450257599354, -0.016870079562067986, -0.004334989003837109, 0.0042667812667787075, 0.019264934584498405, 0.003821535501629114, -0.01985606923699379, -0.010079607367515564, -0.014209973625838757, -0.007836326956748962, 0.01351273711770773, -0.00616144435480237, -0.006252388469874859, 0.012391096912324429, -0.018537383526563644, 0.02352413721382618, 0.00805610790848732, -0.006733632646501064, -0.014725321903824806, 0.0029102026019245386, -0.008222837932407856, 0.0023209622595459223, -0.021159598603844643, 0.018067507073283195, 0.004107629880309105, -0.007434658240526915, -0.010837472975254059, -0.015930326655507088, 0.006718475371599197, -0.009011018089950085, -0.0007185509894043207, 0.008632085286080837, 0.013148962520062923, -0.008533562533557415, -0.001704249531030655, -0.034437395632267, -0.011163354851305485, -0.023433193564414978, -0.013747675344347954, -0.024933766573667526, 0.0105267483741045, 0.009192905388772488, -0.0336795300245285, -0.01383861992508173, 0.02234186790883541, 0.0037021718453615904, 0.033527959138154984, 0.011557444930076599, -0.005180009175091982, 0.0007024463266134262, -0.003192507429048419, 0.009556680917739868, -0.009185327216982841, 0.013330849818885326, 0.007798433303833008, -0.01120124850422144, -0.03039039671421051, 0.004952649585902691, 0.0019723442383110523, -0.008472933433949947, -0.02646465413272381, -0.001482573919929564, 0.021796204149723053, 0.004145523067563772, 0.004846548195928335, 0.023463508114218712, -0.01527098473161459, 0.015498344786465168, -0.01611221581697464, 0.00029296227148734033, -0.004679817706346512, 0.01897694543004036, 0.0037874316330999136, -0.021402115002274513, 0.02760145254433155, -0.002235702471807599, -0.0042478349059820175, -0.0002158731804229319, 0.007055725436657667, -0.01180754043161869, 0.013997770845890045, 0.011072411201894283, 0.003789326176047325, -0.009003438986837864, 0.0016995128244161606, 0.013118647038936615, -0.0061500766314566135, 0.003825324820354581, -0.015596866607666016, -0.004016685765236616, -0.018704114481806755, 0.004111418966203928, 0.01367188896983862, 0.011277034878730774, 0.00021208384714554995, 0.0012135317083448172, 0.00290072918869555, 0.002859046682715416, 0.006350910756736994, 0.02328162081539631, -0.025888677686452866, -0.010056871920824051, 0.0007370239472948015, -0.011557444930076599, 0.003069354221224785, -0.02455483376979828, 0.016854923218488693, -0.016885237768292427, -0.0014134186785668135, 0.001872874447144568, 0.030329767614603043, -0.019674181938171387, -0.009920456446707249, -0.0051118009723722935, 0.01738542877137661, 0.0030750383157283068, -0.008647242560982704, -0.003402814967557788, 0.0432286337018013, 0.02202356420457363, 0.00015986220387276262, -0.0018738218350335956, 0.010178130120038986, -0.014316074550151825, 0.003192507429048419, -0.010708635672926903, -0.017249012365937233, 0.01841612532734871, -0.011557444930076599, -0.009602152742445469, 0.002218650421127677, -0.025661317631602287, -0.0013366847997531295, -0.0013831041287630796, 0.003224716754630208, 0.006362278945744038, 0.0063925934955477715, 0.009685518220067024, 0.0002967516193166375, 0.007112565450370312, 0.018870845437049866, 0.012497197836637497, 0.05041319504380226, 0.009890141896903515, 0.022857215255498886, -0.014937523752450943, 0.0059227170422673225, -0.021114125847816467, 0.001465521869249642, -0.014490383677184582, -0.015513502061367035, -0.015536237508058548, 0.016051586717367172, -0.0028495732694864273, 0.015225512906908989, 0.027798498049378395, 0.003328923135995865, 0.0029708317015320063, 0.006722264923155308, -0.0032701885793358088, -0.0044107758440077305, 0.008753343485295773, 0.003355448367074132, 0.01176964771002531, -0.00801063608378172, -0.011148197576403618, 0.018795058131217957, 0.018234238028526306, 0.012906445190310478, -0.009912877343595028, 0.013535473495721817, 0.011822697706520557, 0.019492294639348984, -0.012762450613081455, -0.023706024512648582, 0.015824226662516594, 0.007317189127206802, 0.004808655008673668, 0.009147433564066887, 0.017582474276423454, -0.0034899695310741663, -0.013429372571408749, -0.019795440137386322, -0.010466119274497032, 0.011428607627749443, 0.0013205802533775568, -0.011269456706941128, -0.002879888052120805, 0.01579391211271286, -0.0005878192605450749, -0.021674945950508118, 0.015460451133549213, 0.008268309757113457, -0.00613870844244957, -0.036892879754304886, -0.015612023882567883, -0.005570309702306986, 0.01603642851114273, 0.007957585155963898, -0.01084505207836628, -0.009048910811543465, -0.018522227182984352, -0.011549866758286953, -0.00528611009940505, 0.004751814994961023, 0.007866641506552696, -0.015521080233156681, 0.013194434344768524, -0.006112183444201946, 0.015657495707273483, 0.008306203410029411, -0.0035202840808779, 0.01809782162308693, -0.006301649380475283, -0.01208037231117487, -0.030102407559752464, -0.013823461718857288, -0.019325563684105873, -0.03222443163394928, -0.005335371475666761, -0.004698764532804489, 0.012944338843226433, -0.0003258820506744087, -0.011178512126207352, -0.01124672032892704, -0.013732518069446087, -0.012777607887983322, 0.010761686600744724, -0.007965163327753544, 0.0162789449095726, 0.006419118493795395, -0.005187587812542915, -0.009761304594576359, -0.014990574680268764, -0.018613170832395554, 0.0030314610339701176, 0.02967800386250019, -0.015263406559824944, 0.001299738883972168, -0.013171697966754436, -0.005017067771404982, 0.016142530366778374, 0.01755215972661972, 0.006074289791285992, -0.01120124850422144, 0.0024971659295260906, 0.0057749333791434765, -0.01123914122581482, -0.025388486683368683, -0.0011064832797273993, -0.002182652009651065, 0.018704114481806755, -0.009101961739361286, 0.011163354851305485, -0.0022641224786639214, 0.02043204754590988, 0.004653292708098888, 0.017249012365937233, 0.012421411462128162, 0.011367978528141975, 0.0005049277096986771, 0.0172186978161335, -0.011095147579908371, 0.0028628360014408827, 0.04362272471189499, 0.012194051407277584, -0.0026544230058789253, 0.012853394262492657, 0.010481276549398899, 0.02632823958992958, -0.013338427990674973, 0.00376848503947258, 0.006673003546893597, -0.024115271866321564, -0.0072414022870361805, 0.02416074462234974, 0.0025350593496114016, 0.01499815285205841, 0.011299771256744862, -0.0024592727422714233, 0.009041332639753819, -0.0027718921191990376, -0.012656349688768387, 0.028071328997612, 0.028177430853247643, -0.007139090448617935, -0.012982231564819813, 0.006047764793038368, -0.025009553879499435, 0.011655967682600021, 0.026297925040125847, 0.004910966847091913, -0.008957967162132263, -0.00913227628916502, -0.02552490122616291, 0.01192122045904398, -0.010966310277581215, 0.020598776638507843, -0.023903070017695427, 0.010708635672926903, -0.017718888819217682, -0.0041038403287529945, -0.007662017829716206, 0.0005366633413359523, 0.016400203108787537, 0.00020995235536247492, -0.007032989524304867, -0.015051203779876232, -0.011436186730861664, 0.013611259870231152, -0.00785148423165083, -0.026267610490322113, -0.006059132516384125, 0.004153101705014706, 0.0064608012326061726, -0.003929531201720238, -0.001920241047628224, 0.009602152742445469, -0.0035183895379304886, -0.005327792838215828, -0.017567316070199013, -0.0076165455393493176, 0.02176588959991932, 0.006176601629704237, 0.024372946470975876, 0.012929181568324566, 0.0015630971174687147, -0.0013546841219067574, -0.018779901787638664, 0.012497197836637497, 0.00892765261232853, -0.010147815570235252, 0.01953776553273201, 0.028344159945845604, -0.031860653311014175, 0.00013736308028455824, -0.010943573899567127, 0.02376665361225605, -0.008942809887230396, 0.00510801188647747, -0.028495732694864273, -0.011261877603828907, -0.001559307798743248, 0.011837854981422424, -0.016809450462460518, -0.004001528490334749], "9e067826-57fa-43bb-8dea-4f30569f03a6": [-0.03397035971283913, -0.019897334277629852, -0.0021321135573089123, 0.0172434002161026, -0.02494698204100132, -0.055345289409160614, 0.02513347566127777, 0.03672471269965172, -0.012867995537817478, 0.01681303232908249, 0.02189137227833271, 0.03483109548687935, -0.005046061705797911, -0.009884112514555454, 0.021963100880384445, 0.01859188638627529, -0.005702372640371323, 0.0048918467946350574, 0.003046644851565361, -0.04814380407333374, 0.06312060356140137, -0.031158624216914177, -0.011038932017982006, 0.03207674250006676, 0.005487188696861267, -0.026467615738511086, -0.005741822998970747, 0.02199179120361805, -0.01509156171232462, -0.018175864592194557, 0.0235841516405344, 0.018104135990142822, 0.001219375291839242, 0.004425615072250366, 0.03511800616979599, -0.012308517470955849, 0.012000086717307568, 0.007065203506499529, -0.01744423806667328, -0.018046753481030464, -0.019194401800632477, 0.025563843548297882, 0.00018940663721878082, 0.01573711261153221, -0.016483083367347717, 0.011297153308987617, 0.013943914324045181, 0.0016569157596677542, -0.004092080052942038, -0.00048147389316000044, 0.017559003084897995, -0.01864926889538765, 0.00586017407476902, -0.008341961540281773, 0.03927822783589363, -0.03675340488553047, 0.0038517911452800035, 0.05270570144057274, 0.007954630069434643, -0.06243201345205307, 0.008126777596771717, 0.003539774566888809, 0.029666682705283165, -0.006932506803423166, 0.02906416729092598, -0.001326967147178948, -0.0021500454749912024, 0.009518299251794815, -0.030154433101415634, 0.00910227745771408, 3.320219911984168e-05, 0.004454305861145258, -0.03566313907504082, 0.022637343034148216, 0.030957786366343498, -0.013226634822785854, 0.004590589087456465, 0.013348572887480259, 0.01288234069943428, -0.019208746030926704, -0.004185326397418976, 0.008255887776613235, 0.038245346397161484, 0.003274381160736084, 0.07442492991685867, 0.05009480565786362, -0.029666682705283165, -0.05150067061185837, -0.03382690250873566, -0.04033980146050453, 0.00641965214163065, -0.006753187160938978, -0.01004908699542284, -0.024086248129606247, -0.00644117034971714, 0.0033604546915739775, -0.0031972737051546574, 0.0020532128401100636, 0.01075202040374279, -0.02863379940390587, -0.013764594681560993, 0.009288770146667957, -0.008220023475587368, 0.02509043924510479, 0.041831742972135544, -0.004888260271400213, 0.012050296179950237, -0.004583416506648064, -0.02276645228266716, 0.02696971222758293, 0.02136058546602726, -0.02421535737812519, 0.0107305021956563, -0.02392844669520855, -0.054025497287511826, -0.041343994438648224, -0.03792974352836609, -0.0009172212448902428, -0.019796915352344513, -0.04702484607696533, 0.01821890100836754, -0.008801019750535488, 0.023139437660574913, -0.006627663038671017, -0.009869766421616077, -0.009597200900316238, 0.00636944267898798, 0.023957137018442154, 0.0183049738407135, 0.01019971538335085, -0.01860623247921467, -0.032048050314188004, 0.008614527061581612, -0.00749557139351964, 0.010493800044059753, -0.006803396623581648, -0.0008531143539585173, 0.0647273063659668, -0.01836235634982586, 0.05101292207837105, -0.024918291717767715, -0.027988247573375702, -0.007696409709751606, -0.019653460010886192, 0.0031811348162591457, 0.013642657548189163, -0.024459233507514, 0.04389750957489014, -3.493935946607962e-05, 0.0008015598868951201, -0.07367895543575287, 0.002955191768705845, -0.007818346843123436, -0.004163807723671198, 0.016210518777370453, -0.03468763828277588, -0.004680248908698559, 0.028590762987732887, -0.009346152655780315, 0.03721246495842934, 0.006828501354902983, -0.04871762916445732, -0.014948106370866299, 0.010127987712621689, 0.03282271325588226, 0.01516328938305378, 0.05546005442738533, 0.046135421842336655, -0.029609300196170807, 0.012258308008313179, 0.012200925499200821, 0.002311433432623744, 0.018534503877162933, 0.017013870179653168, -0.011003068648278713, 0.008313270285725594, 0.04016765579581261, 0.038331419229507446, 0.030871711671352386, -0.004221190232783556, -0.016784342005848885, 0.022536924108862877, 0.01004908699542284, -0.015392819419503212, -0.01506287045776844, 0.04384012520313263, 0.022307394072413445, 0.04059802368283272, 0.009037722833454609, -0.001636293949559331, -0.012746057473123074, -0.008779501542448997, -0.011971395462751389, 0.04039718583226204, -0.03026919811964035, -0.035290155559778214, -0.0015206326497718692, 0.009668928571045399, 0.0068751247599720955, 0.01704256236553192, 0.0006581040215678513, -0.049147993326187134, -0.026381542906165123, 0.030642183497548103, -0.038876552134752274, 0.01999775320291519, -0.010967204347252846, -0.03913477435708046, 0.004561897832900286, -0.02688363753259182, 0.0214610043913126, -0.0415448322892189, -0.011390399187803268, -0.0026718664448708296, -0.014252345077693462, -0.005429806187748909, 0.000514199782628566, 0.056406863033771515, -0.0007033822475932539, -0.04062671586871147, -0.03173244744539261, 0.031646374613046646, 0.004289331845939159, -0.03250711038708687, -0.06874407082796097, -0.004110011737793684, -0.0023347449023276567, 0.03302355110645294, -0.04668055474758148, -0.01742989383637905, 0.03468763828277588, -0.013154907152056694, -0.003003608202561736, -0.031502917408943176, -0.009374843910336494, 0.030240505933761597, 0.04498777538537979, -0.006925334222614765, -0.012071815319359303, -0.01133301667869091, 0.015177635475993156, 0.031703755259513855, -0.007603163365274668, -0.011576891876757145, 0.011089141480624676, 0.027787409722805023, -0.045647669583559036, 0.06363704055547714, 0.02402886562049389, 0.008686255663633347, -0.012387418188154697, 0.003121959278360009, -0.002182323019951582, -0.003477012738585472, -0.01622486300766468, 0.053882040083408356, 0.026568034663796425, -0.03147422522306442, 0.00700064841657877, 0.020471159368753433, 0.014976796694099903, 0.018878797069191933, -0.0036097094416618347, -0.006702977232635021, 0.038187962025403976, -0.003503910731524229, 0.021977445110678673, -0.02963799051940441, -0.0006711047026328743, 0.017229054123163223, 0.012172234244644642, -0.00725528271868825, -0.04229080304503441, 0.005652162712067366, 0.015321091748774052, -0.002164391102269292, 0.0062188138253986835, -0.017989370971918106, 0.03718377277255058, -0.008456725627183914, -0.03328176960349083, 0.004970747511833906, -0.00040952180279418826, 0.023914100602269173, 0.05115637928247452, -0.01569407619535923, -0.02906416729092598, -0.018950525671243668, -0.05207449570298195, -0.019108327105641365, -0.009052067995071411, -0.00854997243732214, 0.012064642272889614, 0.03551968187093735, 0.011175215244293213, 0.0030430585611611605, -0.0035899842623621225, -0.00427498621866107, -0.019022254273295403, 0.033740829676389694, 0.003346109064295888, -0.023770645260810852, 0.005408287979662418, 0.0002748077386058867, 0.036007434129714966, -0.04581981897354126, 0.035146698355674744, -0.012315689586102962, -0.011182388290762901, 0.0376715213060379, 0.013240980915725231, -0.03331046178936958, -0.01392239611595869, -0.012165061198174953, 0.0007751102093607187, 0.024444887414574623, 0.003077129367738962, -0.01455360185354948, -0.006663526874035597, -0.020370738580822945, 0.00269338465295732, 0.0037979951594024897, -0.07017863541841507, 0.032908786088228226, 0.025205204263329506, -0.058443937450647354, 0.003618675284087658, 0.011928359046578407, -0.03531884402036667, -0.02504740282893181, -0.03201935812830925, -0.006096876226365566, -0.030986476689577103, 0.01344181876629591, -0.024086248129606247, -0.026754528284072876, -0.035921361297369, -0.06220248341560364, 0.013197943568229675, -0.018089789897203445, -0.01334139984101057, -0.0348597876727581, 0.034314654767513275, 0.005436979234218597, 0.0218052975833416, 0.008069395087659359, 0.020987600088119507, 0.02266603335738182, -0.031502917408943176, 0.008887093514204025, 0.0008342858054675162, -0.0021052155643701553, 0.005465670023113489, -0.0010131574235856533, 0.024860909208655357, -0.002901395782828331, -0.01271019410341978, 0.0316750667989254, 0.013355745002627373, -0.013735903427004814, -0.011103487573564053, -0.022106556221842766, -0.01777418702840805, -0.006039493717253208, 0.004533206578344107, 0.006509311962872744, 0.029896212741732597, 0.006749600637704134, 0.00045031707850284874, 0.00036850236938335, -0.010995895601809025, 0.010572700761258602, 0.008628873154520988, 0.007054444402456284, -0.02209221012890339, -0.03322438895702362, 0.020413776859641075, 0.0017905090935528278, -0.03385559469461441, 0.013621138408780098, 0.022063519805669785, -0.01065160147845745, -0.022981636226177216, 0.00451527489349246, 0.04005289077758789, 0.02659672684967518, 0.018520157784223557, 0.008033530786633492, -0.009747829288244247, -0.029035476967692375, -0.02242215909063816, -0.0008073878125287592, -0.026037247851490974, -0.019538694992661476, -0.03316700831055641, -0.012344380840659142, 0.003884068690240383, -0.01932351104915142, 0.00010142780956812203, -0.043954890221357346, 0.010952859185636044, 0.010766366496682167, 0.02266603335738182, -0.01402281504124403, 0.0362369641661644, -0.04108577221632004, 0.006075358018279076, -0.0018308560829609632, 0.019266128540039062, -0.004335954785346985, 0.018290627747774124, 0.017372511327266693, -0.006394547410309315, 0.042061273008584976, 0.03721246495842934, 0.0035433610901236534, -0.013154907152056694, 0.03365475684404373, -0.05178758502006531, -0.0015663591912016273, -0.0048918467946350574, 0.03643780201673508, 0.02014121040701866, 0.028935058042407036, 0.00046174871386028826, 0.02402886562049389, -0.0006249297875910997, 0.008148295804858208, -0.0037621313240379095, -0.0011046105064451694, -0.004432787653058767, 0.052045803517103195, 0.007083135657012463, 0.005472843069583178, -0.014862032607197762, -0.007201486732810736, -0.004210431128740311, 0.0006858985871076584, 0.02547777071595192, -5.071390660305042e-06, 0.018491467460989952, -0.009360497817397118, -0.036351729184389114, 0.004016765393316746, -0.0348597876727581, -0.04871762916445732, -0.05023825913667679, 0.006649181712418795, -0.008607354946434498, -0.009597200900316238, -0.00959002785384655, 0.01060856506228447, -0.03709769994020462, 0.025735991075634956, 0.004217603709548712, 0.027500499039888382, -0.007603163365274668, 0.002175150206312537, -0.0074812257662415504, -0.020370738580822945, -0.02877725660800934, 0.0017797498730942607, 0.024043209850788116, 0.006954025477170944, 0.0030591972172260284, -0.020901525393128395, 0.01573711261153221, 0.013011450879275799, 0.012129196897149086, -0.008858402259647846, 0.004475824534893036, 0.02533431351184845, -0.013664175756275654, 0.030871711671352386, 6.321026012301445e-05, 0.006631249561905861, -0.015579312108457088, -0.016110097989439964, 0.0281460490077734, -0.010020395740866661, -0.035146698355674744, -0.0372985377907753, -0.011081969365477562, -0.005376010201871395, -0.0008840470691211522, 0.023426350206136703, -0.030642183497548103, -0.006272609811276197, -0.0018183037173002958, -0.0004178153467364609, 0.013793285936117172, -0.0033245908562093973, -0.004170980770140886, 8.68020360940136e-05, 0.007717927917838097, -0.02853338047862053, 0.004228362813591957, -0.03758544847369194, -0.028748564422130585, -0.03675340488553047, 0.03365475684404373, -0.0036527460906654596, -0.008184160105884075, 0.015220671892166138, -0.012767575681209564, 0.008004839532077312, -0.01085243932902813, 0.00635509705170989, -0.004117184784263372, -0.0031165797263383865, -0.0256786085665226, 0.047541290521621704, -0.026725836098194122, 0.016483083367347717, -0.0017035389319062233, 0.020887181162834167, -0.025793373584747314, -0.01276040356606245, 0.05525921657681465, -0.02014121040701866, -0.0134633369743824, -0.023698916658759117, -0.025348659604787827, 0.001401384943164885, -0.05221795290708542, -0.012416109442710876, -0.013312708586454391, -0.01555062085390091, 0.03365475684404373, -0.029867520555853844, 0.003837445518001914, 0.027672644704580307, -0.002849393058568239, 0.011196733452379704, 0.010228406637907028, -0.02668279968202114, 0.005544570740312338, -0.005419047083705664, 0.005114203318953514, -0.0005133032100275159, -0.038962624967098236, 0.02237912267446518, -0.009740656241774559, -0.013965432532131672, 0.0034339758567512035, 0.038819167762994766, -0.03864702209830284, 0.020528540015220642, -0.0036419869866222143, 7.02709803590551e-05, -0.015177635475993156, 0.017602039501070976, -0.025076093152165413, -0.012581082992255688, -0.001954586710780859, -0.01942392997443676, 0.010974377393722534, -0.019696496427059174, -0.01182076707482338, -0.021001946181058884, -0.013771767728030682, 0.007588817737996578, 0.010257097892463207, -0.008133949711918831, -0.015564966015517712, 0.014933760277926922, -0.029523227363824844, 0.015048525296151638, -0.009166833013296127, 0.03230627253651619, 0.036609947681427, 0.006803396623581648, 0.038044508546590805, 0.002983883023262024, -0.009382016956806183, 0.05749712884426117, -0.006706563755869865, 0.01860623247921467, -0.03503193333745003, -0.010931340046226978, 0.052189260721206665, -0.005992870777845383, -0.00012630844139494002, -0.0016972627490758896, 0.007373633794486523, 0.021963100880384445, -0.010522491298615932, -0.020313357934355736, 0.0050137839280068874, 0.033884286880493164, -0.004292918369174004, 0.01985429786145687, 0.011957050301134586, 0.0005325800739228725, -0.03503193333745003, 0.0022038414608687162, 0.022020481526851654, 0.009740656241774559, 0.0258651003241539, 0.03012574091553688, 0.034745022654533386, 0.02015555463731289, 0.001018536975607276, -0.02871987409889698, -0.03488847613334656, 0.03827403858304024, 0.013929569162428379, 0.01816151849925518, 0.004131530411541462, 0.02983883023262024, -0.008026358671486378, -0.00640530651435256, 0.02044246718287468, 0.0050101978704333305, 0.031072549521923065, -0.005135721527040005, 0.02388540841639042, 0.0255208071321249, -0.003148857271298766, 0.020356394350528717, 0.023282894864678383, -0.029867520555853844, 0.05304999649524689, -0.04315153881907463, -0.0017797498730942607, 0.0023221925366669893, -0.024932637810707092, -0.0010499180061742663, -0.012487837113440037, 0.006677872501313686, -0.013427473604679108, -0.008420862257480621, 0.003941451199352741, -0.02659672684967518, 0.01956738717854023, -0.02722793258726597, -0.0004881983913946897, -0.00753143522888422, -0.01217940729111433, -0.015536274760961533, -0.015564966015517712, 0.010422072373330593, 0.0061614313162863255, 0.03316700831055641, -0.018132826313376427, 0.014732922427356243, -0.020126864314079285, 0.0018227866385132074, 0.025635572150349617, 0.03224888816475868, -0.010795057751238346, 0.011562546715140343, 0.019251782447099686, 0.03055610880255699, -0.0030125740449875593, -0.013943914324045181, 0.010687465779483318, 0.016741305589675903, 0.002008382696658373, 0.011433436535298824, 0.038044508546590805, -0.03701162338256836, 0.00044516162597574294, -0.005501534324139357, 0.020958907902240753, 0.007283973973244429, 0.015392819419503212, 0.01816151849925518, 0.017372511327266693, -0.004540379624813795, 0.007438188884407282, -0.007093894761055708, 0.027873484417796135, 0.006742428056895733, 0.0003191893920302391, 0.009697619825601578, -0.013018623925745487, -0.0018218901241198182, -0.0052720047533512115, -0.006538003217428923, -0.05075469985604286, -0.01681303232908249, -0.013735903427004814, 0.024043209850788116, -0.03706900775432587, -0.003790822345763445, 0.001774370321072638, 0.021977445110678673, -0.01242328155785799, -0.011727521196007729, -0.0109026487916708, 0.008248714730143547, -0.018907489255070686, 0.0418604351580143, 0.006692218128591776, 0.0027220759075134993, -0.007595990318804979, -0.01552192959934473, 0.014589466154575348, -0.03210543468594551, -0.048516787588596344, -0.03574921190738678, -0.0003185169480275363, -0.030699564144015312, 0.01695648953318596, 0.021762261167168617, -0.025922482833266258, -0.02925066091120243, 0.007158449850976467, -0.013240980915725231, 0.019352203235030174, 0.01773115061223507, -0.01791764423251152, 0.033539991825819016, 0.0036796440836042166, 0.024918291717767715, -0.026654107496142387, 0.03477371111512184, -0.001900790841318667, 0.04954967275261879, -0.014905069023370743, 0.015665385872125626, -0.02877725660800934, -0.03382690250873566, -0.015909260138869286, 0.026869291439652443, 0.005246900022029877, -0.00910945050418377, -0.004160221200436354, -0.0014587673358619213, 0.011713175103068352, -0.022149592638015747, -0.018907489255070686, 0.008428034372627735, -0.00035594997461885214, -0.0035899842623621225, 0.0038338592275977135, -0.005523052532225847, 0.025549497455358505, -0.011469299905002117, 0.008872748352587223, -0.016784342005848885, 0.03442941978573799, -0.017544658854603767, 0.004676662851125002, 0.0009234974277205765, 0.03749937564134598, 0.0030394720379263163, -0.023182475939393044, -0.023268548771739006, 0.04028242081403732, -0.01763073168694973, 0.021088019013404846, 0.02543473243713379, -0.02615201286971569, -0.006670699920505285, 0.027586571872234344, 0.020456813275814056, -0.024387504905462265, 0.028734218329191208, -0.0022181870881468058, 0.00809091329574585, 0.015765804797410965, -0.001655122614465654, 0.005081925541162491, 0.005167999304831028, 0.014402973465621471, 0.022436505183577538, 0.0362369641661644, 0.016253555193543434, 0.0577266588807106, 0.007911593653261662, 0.03359737619757652, 0.03709769994020462, -0.0010848853271454573, -0.04165959730744362, -0.0002147355698980391, -0.0011969602201133966, -0.036064814776182175, -0.017358165234327316, -0.01709994487464428, -0.047885581851005554, 0.03681078553199768, -0.01860623247921467, 0.017300782725214958, -0.023655880242586136, 0.04165959730744362, -0.014761613681912422, -0.015005487948656082, 0.00674601411446929, 0.013714385218918324, -0.003611502470448613, 0.0016613987972959876, 0.014352764002978802, -0.003177548525854945, -0.018089789897203445, 0.0014892517356202006, -0.02857641689479351, -0.021102365106344223, -0.0004059353959746659, 0.013714385218918324, -0.02150404080748558, 0.03709769994020462, 0.05927598103880882, -0.0009306702413596213, -0.0065344166941940784, -0.013735903427004814, 0.000955775030888617, -0.010013222694396973, 0.012552392669022083, 0.010113641619682312, 0.0016443633940070868, -0.0348597876727581, 0.03560575842857361, -0.022006137296557426, -0.011655792593955994, 0.00016295694513246417, 0.030068358406424522, -0.008743638172745705, -0.006699391175061464, -0.00426064059138298, 0.00674601411446929, 0.008428034372627735, 0.018348010256886482, 0.005254072602838278, 0.003902000840753317, 0.03419988974928856, 0.01874968782067299, -0.006702977232635021, -0.003916346468031406, -0.009862594306468964, -0.004271399695426226, -0.004099252633750439, 0.04028242081403732, 0.01385066844522953, 0.045791126787662506, -0.016210518777370453, -0.022924253717064857, -0.04031110927462578, 0.03018312342464924, -0.007011407520622015, -0.05072601139545441, 0.0028978094924241304, -0.007775310426950455, 0.010328825563192368, 0.01506287045776844, 0.017688114196062088, 0.019007908180356026, 0.01773115061223507, 0.046623170375823975, 0.03454418480396271, -0.03893393278121948, -0.0030520244035869837, -0.01714298129081726, -0.008377824909985065, 0.014324072748422623, -0.0060502528212964535, -0.003477012738585472, 0.005279177334159613, 0.01278909482061863, 0.03201935812830925, -0.0011386813130229712, -0.012337208725512028, -0.022838180884718895, -0.009546990506350994, -0.0022881217300891876, -0.0067316684871912, 0.012939723208546638, 0.006096876226365566, -0.0049528153613209724, 0.0035846044775098562, 0.020958907902240753, 0.028992440551519394, 0.024530960246920586, -0.009747829288244247, -0.006602558307349682, -0.003701162524521351, 0.004895432852208614, -0.042118657380342484, 0.00973348319530487, -0.0050137839280068874, -0.0019402411999180913, -0.010350343771278858, 0.007753792218863964, -0.043323684483766556, 0.004110011737793684, -0.0007755585247650743, -0.010393381118774414, -0.005770514253526926, 0.022551268339157104, -0.00791876669973135, 0.005440565291792154, 0.0016076028114184737, -0.0037549585103988647, -0.008255887776613235, -0.0009149797260761261, 0.018850106745958328, 0.0016775375697761774, 0.014216480776667595, 0.00010854456922970712, 0.0031883076298981905, -0.02262299694120884, -0.03632303699851036, -0.0075099170207977295, 0.03787235915660858, -0.05391073226928711, 0.03617957979440689, 0.010981550440192223, -0.003104027360677719, 0.0255208071321249, 0.027773063629865646, 0.015263709239661694, -0.03580659627914429, -0.02847599796950817, 0.034027740359306335, 0.014610984362661839, 0.015851877629756927, 0.0029121548868715763, 0.006548762321472168, -0.019581731408834457, 0.03244972601532936, 0.012495010159909725, 0.05207449570298195, -0.0009450158104300499, 0.014876377768814564, -0.005652162712067366, -0.012595429085195065, -0.014331245794892311, -0.004400509875267744, 0.0292076226323843, 0.0022163938265293837, 0.00857149064540863, -0.0029175346717238426, -0.011225424706935883, 0.03652387484908104, 0.01184228528290987, -0.009346152655780315, -0.028662491589784622, -0.04082755371928215, -0.03104385919868946, -0.04039718583226204, -0.025779027491807938, 0.038962624967098236, -0.02542038820683956, -0.01404433324933052, -0.002592965494841337, -0.010744847357273102, 0.0022450850810855627, -0.022006137296557426, -0.00028489448595792055, 0.008428034372627735, 0.023426350206136703, 0.013477683067321777, 0.006387374363839626, 0.009898457676172256, 0.016483083367347717, 0.0029641578439623117, -0.003120166016742587, 0.00973348319530487, -0.007366461213678122, -0.011885322630405426, -0.007854211144149303, -0.011354535818099976, 0.011562546715140343, -0.010895476676523685, 0.011756211519241333, -0.046422332525253296, 0.0014524911530315876, -0.0054154605604708195, -0.004002419766038656, -0.0003095509600825608, 0.008506935089826584, -0.00918117817491293, 0.009353325702250004, -0.017860261723399162, -0.006989889312535524, -0.028805946931242943, -0.012717366218566895, -0.020557232201099396, -0.000782731338404119, 0.010952859185636044, -0.026625417172908783, -0.03876178711652756, -0.0048380508087575436, -0.0009109450620599091, -0.01138322614133358, -0.030383961275219917, 0.027041438966989517, -0.022536924108862877, 0.009618719108402729, 0.009095104411244392, -0.019294820725917816, -0.011957050301134586, -0.009317461401224136, 0.01734381914138794, -0.015536274760961533, -0.018878797069191933, -0.027873484417796135, 0.017659422010183334, -0.039106082171201706, 0.0026790390256792307, -0.0007719721179455519, -0.009525472298264503, 0.05313606932759285, 0.032134123146533966, 0.009274424985051155, -0.005648576654493809, -0.01879272423684597, -0.009389189071953297, 0.0075099170207977295, -0.025004364550113678, -0.03658125549554825, 0.0034321825951337814, -0.03666733205318451, -0.014496220275759697, 0.024129284545779228, 0.012896686792373657, -0.02509043924510479, -0.0010696431854739785, 0.03422858193516731, -0.01874968782067299, -0.033884286880493164, 0.008822538889944553, -0.011340189725160599, -0.015952296555042267, 0.014790304005146027, -0.0012875167885795236, -0.014051506295800209, 0.017759840935468674, 0.01728643663227558, -0.028519034385681152, -0.013248153030872345, -0.005056820809841156, -0.029867520555853844, -0.01133301667869091, -0.02853338047862053, 0.00849976297467947, -0.06065315753221512, -0.021905718371272087, -0.016009679064154625, 0.01395108737051487, -0.001427386305294931, 0.0018864452140405774, 0.003218791913241148, 0.008485416881740093, -0.017544658854603767, 0.01966780610382557, 0.0028422202449291945, -0.02635285072028637, 0.02606593817472458, 0.014747267588973045, -0.00044673067168332636, 0.014862032607197762, -0.0028511863201856613, -0.00641965214163065, 0.011555373668670654, 0.0034375623799860477, 7.901282515376806e-05, 0.012753230519592762, 0.019538694992661476, -0.010127987712621689, -0.020471159368753433, 0.04811511188745499, -0.030211815610527992, -0.004691008478403091, -0.024129284545779228, -0.025879446417093277, 0.008155468851327896, 0.029810138046741486, -0.012408936396241188, 0.008887093514204025, -0.0038804823998361826, 0.012272653169929981, 0.010300134308636189, -0.015019834041595459, 0.02223566547036171, 0.01271019410341978, 0.008879920467734337, 0.017931988462805748, -0.010909821838140488, -0.003564879298210144, -0.013506374321877956, -0.028260814025998116, -0.0005800998187623918, -0.01791764423251152, 0.012308517470955849, 0.00973348319530487, 0.020901525393128395, 0.017931988462805748, 0.0028422202449291945, -0.02242215909063816, -0.013958260416984558, 0.019438276067376137, 0.023426350206136703, -0.020743723958730698, 0.006839260458946228, -0.028834637254476547, 0.049520980566740036, 0.022536924108862877, 0.010515318252146244, 0.011584064923226833, -0.01227982621639967, 0.02227870374917984, 0.03207674250006676, 0.03749937564134598, 0.032765328884124756, -0.015220671892166138, 0.015952296555042267, -0.00134669232647866, -0.008872748352587223, 0.024617034941911697, 0.019337857142090797, 0.03382690250873566, 0.00431085005402565, 0.001900790841318667, -0.0036240550689399242, 0.0054513243958354, -0.020528540015220642, -0.005236140917986631, 0.008872748352587223, -0.009317461401224136, 0.003231344511732459, -0.028160395100712776, 0.01641135662794113, -0.014173444360494614, -0.0036061229184269905, -0.000496267806738615, 0.03147422522306442, 0.0027238691691309214, 0.018046753481030464, 0.008241541683673859, -0.01666957698762417, 0.05689461529254913, -0.00895882211625576, 0.015392819419503212, -0.003145270748063922, -0.0011799248168244958, 0.0018183037173002958, -0.009654582478106022, 0.018233247101306915, -0.02653934434056282, -0.026195049285888672, 0.0024244049564003944, 0.001992244040593505, -0.00903054978698492, -0.008987512439489365, -0.010113641619682312, -0.012272653169929981, -0.014862032607197762, -0.015292400494217873, -0.017817223444581032, -0.03322438895702362, 0.01646873913705349, -0.012989932671189308, -0.0004409027751535177, -0.028404271230101585, 0.01545020192861557, -0.0067926375195384026, 0.02698405645787716, -0.0039522103033959866, -0.04137268662452698, -0.0139008779078722, 0.0018147173104807734, -0.013635484501719475, -0.013678520917892456, 0.005150067154318094, 0.016210518777370453, 0.0036150889936834574, -0.0036240550689399242, -0.010206888429820538, -0.00857149064540863, -0.0035057037603110075, 0.013233807869255543, 0.02466007135808468, -0.004249881487339735, 0.029724065214395523, -0.024229703471064568, 0.02014121040701866, -0.004364646039903164, -0.022063519805669785, -0.006896642968058586, -0.0034590805880725384, 0.008255887776613235, 0.004278572741895914, -0.014094543643295765, 0.01748727634549141, 0.005530225578695536, -0.0070257531479001045, -0.0036097094416618347, 0.018634922802448273, 0.015808841213583946, -0.03239234536886215, -0.015564966015517712, -0.02494698204100132, -0.003593570552766323, -0.00908075924962759, -0.006699391175061464, -0.01187097653746605, 0.026481961831450462, 0.014833341352641582, -0.012695848010480404, 0.015306745655834675, -0.01007060520350933, -0.027486152946949005, -0.007287560496479273, 0.004626452922821045, -0.0056162988767027855, -0.017186017706990242, 0.0027346282731741667, -0.028246469795703888, -0.028490344062447548, 0.0016058095498010516, -0.010694637894630432, -0.009310288354754448, -0.014539256691932678, 0.01397260557860136, 0.00898034032434225, -0.007646200247108936, 0.009238560684025288, -0.006121980957686901, 0.0065631079487502575, 0.02553515136241913, 0.0023455042392015457, -0.009683273732662201, -0.004863155540078878, -0.004694594535976648, 0.016483083367347717, 0.026625417172908783, 0.027357041835784912, -0.008908611722290516, 0.0020065896678715944, -0.004163807723671198, 0.001709815114736557, 0.025147821754217148, 0.020801106467843056, -0.004113598261028528, -0.00872211903333664, -0.026697145774960518, -0.02761526219546795, 0.004131530411541462, 0.006925334222614765, 0.007431016303598881, -0.0017985785380005836, -0.013621138408780098, 0.01392239611595869, 0.018376702442765236, -0.02751484327018261, 0.015952296555042267, 0.014216480776667595, 0.026912329718470573, -0.006885883864015341, 0.0062797823920845985, -0.0040346975438296795, 0.00900903157889843, 0.011971395462751389, 0.01956738717854023, -0.011512337252497673, 0.04013896360993385, -0.02179095335304737, -0.0016309143975377083, -0.019251782447099686, 0.01844843104481697, 0.005089098587632179, 0.022823834791779518, -0.03933561220765114, -0.017358165234327316, 0.010027567856013775, 0.007947457022964954, 0.01961042359471321, -0.02527693100273609, -0.014324072748422623, -0.010830921120941639, -0.018850106745958328, 0.031158624216914177, -0.012035951018333435, 0.04045456647872925, -0.010931340046226978, -0.01962476782500744, -0.030068358406424522, -0.010952859185636044, -0.0030609904788434505, 0.04274986311793327, 0.031904593110084534, -0.03104385919868946, -0.003037679009139538, 0.0009208076517097652, 0.0191800557076931, 0.015335436910390854, -0.0024495096877217293, -0.007517089601606131, 0.02519085817039013, 0.00046354191727004945, 0.009052067995071411, 0.014202135615050793, 0.006412479095160961, 0.007176382001489401, -0.018032407388091087, 0.00011801490472862497, 0.014718576334416866, 0.014015642926096916, -0.02808866649866104, 0.03012574091553688, 0.0030071944929659367, 0.0032958996016532183, 0.0015457374975085258, 0.016741305589675903, -0.022221321240067482, -0.021733570843935013, -0.010536836460232735, -0.032621875405311584, 0.007162036374211311, 0.017688114196062088, 0.019294820725917816, -0.008714946918189526, -0.02490394562482834, 0.019352203235030174, -0.013090351596474648, 0.0015125632053241134, -0.00025306519819423556, -0.03497455269098282, 0.011325844563543797, 0.014295381493866444, 0.010924167931079865, 0.009869766421616077, 0.002904982306063175, 0.01797502487897873, -0.008743638172745705, 0.0001148768060375005, 0.007305492181330919, 0.0013977985363453627, -0.009833903051912785, 0.03110124170780182, -0.022493887692689896, -0.00898034032434225, -0.0004756459966301918, 0.027285315096378326, -0.0009199110209010541, 0.019438276067376137, -0.008320442400872707, -0.034314654767513275, -0.015995334833860397, 0.01060856506228447, -0.0002918431127909571, 0.0027902175206691027, 0.004877501167356968, -0.0023150197230279446, 0.0030358857475221157, -0.006785464473068714, 0.015048525296151638, -0.0020478330552577972, -0.017845915630459785, -0.00012160129699623212, -0.0004944746033288538, 0.015378473326563835, -0.004658730700612068, -0.019926026463508606, -0.04280724376440048, 0.01860623247921467, -0.007101067807525396, 0.019093981012701988, 0.008148295804858208, -0.033253081142902374, -0.01753031276166439, -0.003801581682637334, -0.004540379624813795, 0.0323636531829834, 0.013865013606846333, 0.0026073111221194267, 0.040081582963466644, 0.02115974761545658, 0.0027955970726907253, -0.0008060429245233536, -0.0037800632417201996, -0.01177055761218071, -0.011325844563543797, 0.006925334222614765, -0.007725100964307785, 0.02029901184141636, 0.019983408972620964, 0.005189517512917519, 0.009496781043708324, 0.020313357934355736, 0.008650391362607479, -0.005799205042421818, 0.01628224551677704, 0.025219548493623734, -0.019007908180356026, -0.016052717342972755, 0.031703755259513855, 0.006979130208492279, 0.007789656054228544, 0.005748995579779148, 0.022020481526851654, 0.005408287979662418, 0.00801918562501669, -0.04338106885552406, -0.014905069023370743, -0.017257746309041977, -0.004845223389565945, -0.002637795638293028, 0.015407164581120014, 0.003927105572074652, 0.05009480565786362, 0.03787235915660858, -0.010343171656131744, 0.008679082617163658, -0.015249363146722317, -0.00729114655405283, 0.003647366538643837, -0.014524910598993301, 0.01569407619535923, -0.00869342777878046, 0.003830272937193513, 0.002765112789347768, -0.015034179203212261, -0.006433997768908739, -0.008650391362607479, -0.023627188056707382, 0.007258869241923094, -0.03947906568646431, -0.016167480498552322, -0.021001946181058884, -0.008930130861699581, -0.027041438966989517, 0.0055266390554606915, 0.0017340233316645026, 0.0009091518586501479, 0.00012619637709576637, -0.008277405984699726, 0.01928047463297844, 0.01024275179952383, 0.0005675474531017244, -0.007452534511685371, -0.022106556221842766, 0.0184627752751112, -0.04670924320816994, 0.012050296179950237, -0.012000086717307568, 0.006444756872951984, 0.001655122614465654, 0.01177055761218071, -0.009037722833454609, 0.034745022654533386, -0.00028153223684057593, 0.014015642926096916, 0.002354470081627369, -0.03864702209830284, -0.02916458621621132, 0.012638465501368046, 0.016741305589675903, -0.01075202040374279, -0.021518386900424957, -0.0017044355627149343, -0.008119604550302029, 0.014747267588973045, -0.011067623272538185, 0.02867683582007885, -0.026324160397052765, -0.02441619522869587, 0.0012346174335107207, -0.016870414838194847, -0.01763073168694973, 0.01489072386175394, -0.0055051203817129135, -0.024014519527554512, -0.0008199401781894267, 0.006835673935711384, -0.021417967975139618, 0.024573996663093567, -0.020413776859641075, 0.020844144746661186, 0.03397035971283913, -0.02823212370276451, 0.016526121646165848, -0.012143542990088463, -0.005630644503980875, -0.01797502487897873, -0.039163462817668915, -0.012889513745903969, -0.015780150890350342, -0.029236314818263054, -0.006211640778928995, -0.015177635475993156, 0.013778939843177795, -0.021475350484251976, 0.024330122396349907, 0.012523701414465904, 0.017688114196062088, -0.028648145496845245, 0.035376228392124176, 0.0035057037603110075, 0.025104785338044167, 0.008894266560673714, -0.008212851360440254, -0.00811243150383234, -0.010967204347252846, 0.03956513851881027, 0.020370738580822945, 0.0007656959351152182, -0.022551268339157104, 0.015923606231808662, -0.03219150751829147, 0.01593795232474804, 0.01742989383637905, -0.023670224472880363, -0.0024172321427613497, -0.01022123359143734, 0.006258264183998108, -0.006957611534744501, -0.003471632953733206, -0.021102365106344223, 0.0005545467720367014, -0.027529189363121986, -0.011046105064451694, -0.008148295804858208, -0.0014229032676666975, -0.03850356489419937, 0.015220671892166138, -0.019266128540039062, -0.016985179856419563, -0.0034967379178851843, 0.022350430488586426, 3.7601137591991574e-05, -0.004002419766038656, -0.016640884801745415, -0.011756211519241333, 0.036150891333818436, -0.014704231172800064, 0.014424491673707962, -0.03787235915660858, 0.0092313876375556, 0.024731799960136414, -0.010500973090529442, -0.005038888659328222, -0.013692867010831833, 0.027816101908683777, 0.005340146366506815, -0.0010391587857156992, -0.014962451532483101, -0.030240505933761597, 0.004135116469115019, 0.002836840692907572, -0.010601392015814781, 0.009023376740515232, 0.014905069023370743, -0.0061901225708425045, -0.010371861979365349, -0.01242328155785799, 0.010859612375497818, -0.008148295804858208, -0.004357473459094763, -0.0018487880006432533, -0.00405621575191617, -0.004249881487339735, -0.011368880979716778, -0.020069481804966927, -0.00047071470180526376, -0.009575681760907173, -0.009833903051912785, 0.008578663691878319, -0.0021984619088470936, 0.0086217001080513, 0.010400553233921528, -0.007768137380480766, -0.009704791940748692, -0.01714298129081726, -0.007423843257129192, 0.009453744627535343, 0.005709545221179724, 0.006982716266065836, -0.0019241024274379015, -0.0012166853994131088, -0.007574472110718489, -0.002919327700510621, -0.005623471923172474, -0.006946852430701256, 0.005827896296977997, -0.005709545221179724, 2.7948685783485416e-06, -0.012846476398408413, 0.00323851709254086, -0.003077129367738962, 0.0661618635058403, 0.00791876669973135, 0.0065917992033064365, -0.009016203694045544, -0.002892429707571864, -0.015823187306523323, 0.0019258955726400018, 0.019395239651203156, 0.01628224551677704, 0.0010086743859574199, -0.012853649444878101, -0.010708983987569809, 0.005723890848457813, 0.0050424751825630665, -0.022307394072413445, 0.009604373015463352, 0.01057987380772829, 0.02863379940390587, -0.003154236823320389, 0.012523701414465904, 0.011476472951471806, -0.017616385594010353, -0.015679731965065002, 0.013183598406612873, -0.008679082617163658, 0.017257746309041977, -0.0019707255996763706, 0.025750335305929184, 0.0017420927761122584, 0.016597848385572433, -0.0026790390256792307, -0.000754936714656651, -0.01675564981997013, 0.004726872313767672, 0.0006119291065260768, 0.006290541496127844, 0.002338331425562501, 0.016296591609716415, 0.0018989975797012448, -0.0020890766754746437, -0.012688674964010715, -0.0037370265927165747, 0.01985429786145687, 0.030010975897312164, -0.00649137981235981, -0.015765804797410965, 0.0022504646331071854, -0.005594780668616295, 0.0017160912975668907, -0.011541028507053852, -0.01791764423251152, -0.01665523089468479, -0.0026987644378095865, 0.013240980915725231, 0.011878149583935738, -0.0028153222519904375, 0.020858488976955414, 0.016683923080563545, 0.010866785421967506, -0.0032869335263967514, -0.03055610880255699, 0.005695199593901634, -0.012875167652964592, -0.018850106745958328, -0.007395152002573013, -0.021590115502476692, -0.004135116469115019, -0.009260078892111778, 0.003518256125971675, -0.006243918556720018, -0.006276196334511042, 0.007402325049042702, 0.015608003363013268, -0.02882029302418232, -0.009410708211362362, 0.013958260416984558, -0.01593795232474804, 0.03861832991242409, 0.02189137227833271, 0.016540465876460075, 0.00809091329574585, 0.007818346843123436, -0.021446658298373222, -0.00961154606193304, -0.003884068690240383, 0.01404433324933052, 0.009245733730494976, -0.03858964145183563, 0.009647410362958908, -0.04028242081403732, -0.014517738483846188, 0.012552392669022083, 0.000836527266073972, 0.01395108737051487, 0.013814804144203663, 0.006573867052793503, -0.007574472110718489, -0.0023598496336489916, 0.02727096900343895, -0.0084495535120368, -0.0006867951597087085, 0.013355745002627373, -0.01295406837016344, -0.004482997115701437, 0.014876377768814564, -0.008628873154520988, 0.021231474354863167, 0.008628873154520988, -0.01850581169128418, 0.004726872313767672, -0.001510770060122013, -0.013692867010831833, 0.0009629477863200009, 0.007466880138963461, -0.025162165984511375, 0.002193082356825471, 0.014202135615050793, -0.01235155388712883, -0.011949877254664898, -0.022737761959433556, 0.0025517221074551344, -0.0023885408882051706, 0.0006697597564198077, -0.0029802965000271797, -0.008793847635388374, 0.015608003363013268, 0.0014211101224645972, -0.01063008327037096, -0.006512898486107588, -0.00048461201367899776, -0.0036366074346005917, 0.01642570272088051, 0.00616501783952117, -0.017128635197877884, 0.0161818265914917, 0.0044973427429795265, -0.0035057037603110075, -0.023039018735289574, 0.022293047979474068, -0.012380245141685009, 0.0020173487719148397, -0.009726311080157757, 0.007219418883323669, 0.025147821754217148, -0.00616501783952117, 0.01281061302870512, -0.013484856113791466, -0.02272341586649418, -0.0015968435909599066, -0.02038508467376232, 0.01932351104915142, -0.0355483740568161, 0.0071369316428899765, -0.01022123359143734, 0.004999438300728798, 0.004228362813591957, -0.03055610880255699, 0.02741442434489727, -0.015765804797410965, -0.01177055761218071, -0.0009261872037313879, 0.004873914644122124, -0.00538676930591464, -0.00033196594449691474, -0.004526033997535706, -0.0015224259113892913, 0.024961328133940697, 0.02741442434489727, 0.007552953902631998, -0.006043080240488052, -0.002628829563036561, 0.013162080198526382, 0.013327053748071194, -0.013857840560376644, 0.003550533903762698, -0.0008593905949965119, -0.00791876669973135, 0.005508706904947758, -0.025248240679502487, 0.0191800557076931, 0.0161818265914917, -0.006993475835770369, 0.022608650848269463, 0.010400553233921528, 0.003328177146613598, 0.0005890658358111978, 0.013097524642944336, -0.010178197175264359, -0.008270232938230038, 0.004543966148048639, -0.005121375899761915, 0.012078987434506416, 0.0073090787045657635, -0.004110011737793684, -0.02837557904422283, -0.004612107761204243, 0.01247349102050066, 0.019940372556447983, 0.017013870179653168, -0.020571578294038773, 0.011505164206027985, -0.002254050923511386, 0.002065765205770731, 0.006530830170959234, 0.005203863140195608, -0.02682625502347946, -0.014654021710157394, -0.027859138324856758, -0.01598098874092102, -0.0029336733277887106, -0.025879446417093277, -0.030670873820781708, 0.004092080052942038, 0.000677380885463208, -0.007925938814878464, 0.0017815431347116828, 0.009841075167059898, 0.0008141123107634485, 0.03597874194383621, -0.008829711005091667, 0.011662965640425682, -0.01118956133723259, 0.018821416422724724, -0.017401201650500298, -0.011067623272538185, 0.0013117250055074692, 0.015263709239661694, 0.007997667416930199, 0.002246878109872341, -0.014661193825304508, 0.01704256236553192, -0.006685045547783375, -0.006193709094077349, 0.01742989383637905, -0.00538676930591464, 0.015708422288298607, 0.009855421259999275, 0.0016596055356785655, 0.020471159368753433, -0.007380806840956211, -0.012681502848863602, 0.0013296569231897593, 0.00014928380551282316, 0.0029677441343665123, 0.010945686139166355, -0.014732922427356243, 0.005250486545264721, 0.0049599879421293736, 0.001101024099625647, -2.3913988115964457e-05, 0.011899667792022228, 0.00587451970204711, -0.007868556305766106, 0.01883576065301895, 0.01078071165829897, -0.011584064923226833, -0.004647971596568823, 0.002956985030323267, 0.004655144177377224, -0.014496220275759697, 0.0035254289396107197, 0.015235017985105515, -0.0233976598829031, 0.006437583826482296, -0.0057561686262488365, 0.02349807880818844, -0.04524599388241768, 0.007111826911568642, -0.005393942352384329, 0.007832692936062813, -0.00014468873268924654, -0.0036366074346005917, 0.01753031276166439, 0.025979865342378616, 0.0014318693429231644, -0.007344942539930344, -0.010601392015814781, -0.01380045898258686, 0.014108888804912567, 0.024789180606603622, -0.003948623780161142, 0.018276283517479897, 0.019294820725917816, -0.018477121368050575, -0.015335436910390854, -0.016827378422021866, 0.0035361882764846087, 0.007882902398705482, 0.002992848865687847, -0.007298319600522518, 0.010988722555339336, 0.011110660620033741, 0.025879446417093277, -0.00509627116844058, -0.0181184820830822, 0.0008302510832436383, 0.006702977232635021, 0.017171673476696014, 0.022006137296557426, 0.003111200174316764, -0.003866136772558093, -0.006957611534744501, -0.0037549585103988647, -0.0355483740568161, 0.011935532093048096, 0.013986951671540737, 0.011397572234272957, 0.0007491088472306728, 0.00040190070285461843, 0.009446571581065655, 0.003722680965438485, -0.0061614313162863255, -0.01801806315779686, -0.019022254273295403, -0.0058996244333684444, -0.010135159827768803, 0.006742428056895733, 0.017013870179653168, -0.02853338047862053, 0.006799810100346804, 0.0038517911452800035, 0.01182076707482338, 0.0005971352220512927, 0.02199179120361805, 0.010285789147019386, 0.012071815319359303, 0.011634274385869503, 0.011928359046578407, 0.017745496705174446, -0.03348261117935181, 0.015823187306523323, -0.005372423678636551, -0.011662965640425682, -0.001783336279913783, 0.00664559518918395, 0.01679868809878826, -0.0038625504821538925, -0.008700600825250149, -0.014804650098085403, 0.007359288167208433, -0.012746057473123074, -0.031703755259513855, -0.0031793415546417236, -0.007804001681506634, 0.02209221012890339, 0.012200925499200821, 0.014818995259702206, -0.011985741555690765, 0.0077107553370296955, 0.010457935743033886, 0.009453744627535343, -0.005128548946231604, 0.014596639201045036, 0.0195243488997221, -0.01273888535797596, -0.011010240763425827, 0.02295294590294361, 0.007223004940897226, -0.015364128164947033, 0.01671261340379715, -0.02111670933663845, 0.007825519889593124, -0.00753143522888422, -0.0008468381711281836, 0.01509156171232462, 0.002157218288630247, -0.005300696007907391, 0.01506287045776844, -0.02441619522869587, -0.009460917674005032, 0.001763611100614071, -0.02542038820683956, -0.00961154606193304, 0.00026113458443433046, -0.026568034663796425, 0.0015959469601511955, -0.0010490213753655553, -0.012028777971863747, -0.016970833763480186, -0.004712526686489582, 0.029523227363824844, -0.014316899701952934, -0.016554811969399452, -0.007689236663281918, 0.013040142133831978, 0.012925378046929836, 0.021374931558966637, 0.007868556305766106, 0.008212851360440254, -0.013262499123811722, -0.00161925854627043, -0.004647971596568823, -0.0002510478370822966, 0.0011413710890337825, -0.0028978094924241304, 0.013520719483494759, -0.031015168875455856, 0.013104697689414024, -0.0022253599017858505, -0.0020675582345575094, 0.008320442400872707, 0.016784342005848885, -0.000700244156178087, 0.02653934434056282, -0.002904982306063175, -0.012358726933598518, 0.003419630229473114, 0.020370738580822945, 0.0214610043913126, -0.0038625504821538925, 0.011526682414114475, 0.0033174180425703526, -0.01552192959934473, 0.018878797069191933, 0.013205116614699364, -0.0161818265914917, 0.012903858907520771, -0.016009679064154625, 0.012667156755924225, 0.009654582478106022, 0.020428121089935303, -0.013484856113791466, 0.04194650799036026, -0.008750810287892818, 0.02455965243279934, -0.01032165251672268, 0.027973903343081474, 0.009396362118422985, 0.005680853966623545, -0.002492546569555998, -0.016640884801745415, -0.01922309212386608, -0.010092123411595821, 0.011125005781650543, -0.03546230122447014, -0.01646873913705349, 0.031216006726026535, -0.0379871241748333, 0.003919932991266251, 0.02117409184575081, -0.01642570272088051, -0.013233807869255543, 0.002883463865146041, 0.00920269638299942, 0.01024275179952383, 0.01975387893617153, 0.001855960814282298, 0.015392819419503212, -0.015923606231808662, -0.02421535737812519, -0.011885322630405426, 0.02576468139886856, -0.003120166016742587, 0.007373633794486523, -0.012071815319359303, -0.009224215522408485, -0.015134599059820175, 0.011899667792022228, 0.04188912734389305, -0.03617957979440689, 0.01380045898258686, -0.018276283517479897, 0.007517089601606131, 0.02189137227833271, -0.023813681676983833, -0.006043080240488052, 0.001945620751939714, 0.007395152002573013, -0.003129132091999054, -0.008650391362607479, -0.022752108052372932, 0.011089141480624676, 0.014166271314024925, -0.008212851360440254, -0.008004839532077312, 0.009511127136647701, -0.023182475939393044, 0.015464547090232372, -0.007868556305766106, -0.003873309586197138, -0.005551743786782026, -0.007183554582297802, 0.0017044355627149343, 0.010379035025835037, 0.031359463930130005, -0.0233976598829031, 0.007689236663281918, 0.017171673476696014, 0.008435207419097424, 0.012774748727679253, 0.004504515789449215, 0.007431016303598881, 0.009353325702250004, -0.008341961540281773, 0.016540465876460075, -0.005745409056544304, -0.01767376810312271, 0.031216006726026535, -0.01840539276599884, -0.007330596912652254, -0.02625243179500103, -0.0040633887983858585, 0.004622866865247488, 0.00976217444986105, 0.016942143440246582, 0.00038934830809012055, -0.008729292079806328, 0.0191800557076931, 0.022780798375606537, 0.0292076226323843, 0.006283368915319443, 0.015120252966880798, -0.009367670863866806, 0.01189249474555254, -0.0024154388811439276, 0.014144753105938435, -0.003294106340035796, 0.007093894761055708, 0.0055266390554606915, 0.005594780668616295, 0.00478425482288003, -0.022637343034148216, 0.00872211903333664, -0.0016838137526065111, -0.00814112275838852, -0.011024586856365204, 0.025463424623012543, 0.007653372827917337, 0.024631379172205925, -0.006609730888158083, -0.020184246823191643, -0.0018720995867624879, -0.009138141758739948, 0.019481312483549118, -0.0002846703282557428, 0.0056162988767027855, -0.0005164413014426827, -0.0010391587857156992, 0.03764283284544945, -0.013728730380535126, -0.006505725439637899, -0.004418442025780678, 0.004712526686489582, -0.009905630722641945, -0.011799248866736889, -0.022250011563301086, -0.006071771495044231, 0.005763341207057238, -0.0040346975438296795, 0.0013511753641068935, -0.004023938439786434, 0.009123795665800571, 0.016698267310857773, 0.014029988087713718, 0.015019834041595459, -0.012294171378016472, 0.006021562032401562, -0.003819513600319624, -0.009073586203157902, 0.01506287045776844, -0.010665946640074253, -0.027041438966989517, -0.000348104746080935, 0.004873914644122124, -0.0036366074346005917, -0.004389750771224499, 0.009482435882091522, 0.007438188884407282, -0.0006715529598295689, 0.012236788868904114, -0.012516528367996216, -0.003693989710882306, -0.01443166472017765, -0.0029605713207274675, 0.0035541201941668987, -0.0006195502355694771, -0.004630039446055889, -0.008306097239255905, 0.01758769527077675, -0.004335954785346985, 0.007560126483440399, -0.021590115502476692, -0.007380806840956211, -0.004734044894576073, 0.00804070383310318, 0.02721358649432659, 0.0027884242590516806, 0.02247954159975052, 0.006638422142714262, -0.01642570272088051, 0.019251782447099686, -0.028318196535110474, -0.0203994307667017, 0.01748727634549141, 0.014173444360494614, -0.01126128900796175, 0.0005074752843938768, -0.003520049387589097, -0.017688114196062088, -0.02696971222758293, -0.00032299995655193925, 0.016267899423837662, 0.003916346468031406, 0.005053234286606312, -0.002956985030323267, -0.0003613295848481357, 0.001674847793765366, -0.02256561443209648, -0.016196172684431076, -0.010816575959324837, 0.006842846982181072, -2.3745875296299346e-05, 0.030957786366343498, 0.0072265914641320705, -0.009862594306468964, -0.0058781057596206665, 0.013599620200693607, -0.004877501167356968, 0.013448991812765598, -0.017860261723399162, -0.01869230531156063, -0.0015502204187214375, -0.005250486545264721, 0.02794521115720272, -0.009310288354754448, -0.002472821157425642, 0.011777730658650398, 0.01956738717854023, 0.014862032607197762, -0.003283347235992551, -0.0069504389539361, 0.0016076028114184737, -0.00269338465295732, -0.019251782447099686, 0.004418442025780678, -0.0040346975438296795, -0.03250711038708687, 0.005921142641454935, -0.0018505812622606754, -0.022163938730955124, -0.011462126858532429, 0.001536771422252059, 0.010859612375497818, -0.006086117122322321, 0.013692867010831833, 0.011419090442359447, 0.01032165251672268, 0.004723285790532827, -0.0031434777192771435, -0.0005393045721575618, -0.015220671892166138, 0.021202784031629562, -0.013549410738050938, 0.005426219664514065, -0.004332368727773428, -0.02156142331659794, 0.01679868809878826, -0.039737287908792496, 0.005680853966623545, -0.0040633887983858585, -0.023942790925502777, -0.038876552134752274, -0.011146523989737034, 0.0017035389319062233, 6.787538040953223e-06, -0.02111670933663845, -0.0020765243098139763, 0.02653934434056282, -0.0032080328091979027, -0.019682150334119797, -0.004131530411541462, 0.010737675242125988, -0.017645077779889107, 0.02131754904985428, 0.004181739874184132, -0.01545020192861557, -0.0032510696910321712, -0.008765156380832195, -0.005304282531142235, -0.03503193333745003, -0.0028153222519904375, -0.0015502204187214375, -0.004486583638936281, 0.004350300412625074, -1.7259539163205773e-05, 0.001782439649105072, 0.0063909608870744705, -0.026768872514367104, -0.013169252313673496, -0.00033577647991478443, -0.017171673476696014, -0.010314480401575565, -0.009023376740515232, -0.020428121089935303, 0.016397010535001755, -0.0019671390764415264, -0.026022901758551598, -0.007068790029734373, -0.013599620200693607, -0.01506287045776844, -0.013025796972215176, -0.006688632071018219, 0.005670094862580299, 0.00028310128254815936, 0.016009679064154625, -0.00913096871227026, 0.009116623550653458, 0.0017340233316645026, -0.004569070879369974, -0.009410708211362362, 0.010787884704768658, 0.01339160930365324, -0.0027184896171092987, 0.002037073951214552, -0.01956738717854023, -0.024530960246920586, 0.016483083367347717, -0.0026449684519320726, -0.018147172406315804, -0.005921142641454935, 0.005078339483588934, -0.004913365002721548, -0.008270232938230038, 0.0057059586979448795, 0.001190684037283063, -0.01569407619535923, -0.0022343257442116737, 0.009468089789152145, -0.010967204347252846, 0.0018989975797012448, 0.020958907902240753, -0.01019254233688116, -0.02513347566127777, 0.01380045898258686, -0.003303072415292263, -0.006545175798237324, 0.005293522961437702, -0.004590589087456465, 0.015564966015517712, 0.015263709239661694, -0.013599620200693607, -0.032134123146533966, -0.006573867052793503, -0.0006038597202859819, 0.008779501542448997, -0.024000173434615135, -0.013355745002627373, 0.018964871764183044, -0.020212937146425247, 0.018491467460989952, -0.00867190957069397, -0.017573349177837372, -0.00490619195625186, 0.004016765393316746, 0.005838655401021242, 0.0067352550104260445, 0.021374931558966637, 0.0020496263168752193, 0.012308517470955849, 0.008965994231402874, 0.029523227363824844, 0.019553041085600853, -0.021762261167168617, -0.003573845373466611, -0.0030502313748002052, 0.022293047979474068, -0.003000021679326892, -0.008944476023316383, -0.007122586015611887, 0.02121713012456894, 0.016310937702655792, -0.003229551250115037, -0.012078987434506416, -0.022250011563301086, -0.01903659850358963, -0.019725188612937927, 0.006656354293227196, -0.010041913948953152, 0.001738506369292736, 0.01237307209521532, 0.009575681760907173, 0.0016309143975377083, -0.027242276817560196, -0.012308517470955849, -0.01278909482061863, 0.0030699565540999174, 0.025104785338044167, 0.00017629386275075376, 0.018046753481030464, 0.007588817737996578, 0.015665385872125626, 0.0015869810013100505, -0.02305336482822895, -0.007696409709751606, 0.018563194200396538, 0.009052067995071411, 0.020887181162834167, 0.003494944656267762, -0.013169252313673496, -0.004490170162171125, -0.011605583131313324, 0.008435207419097424, -0.0005245106876827776, -0.003154236823320389, -0.00042498813127167523, 0.00754578085616231, -0.012107678689062595, 0.01661219447851181, 0.02270907163619995, -0.0017295402940362692, -0.0026629003696143627, -0.0008078361279331148, -0.004188912454992533, 0.0117920758202672, -0.002300674095749855, -0.009453744627535343, 0.014646848663687706, 0.0033873526845127344, -0.0010660567786544561, 0.01981126144528389, -0.015722768381237984, 0.007789656054228544, 0.009417880326509476, -0.007093894761055708, -0.0281460490077734, -0.01019254233688116, 0.00644117034971714, -0.003164995927363634, 0.005799205042421818, -0.01082374807447195, 0.002338331425562501, 0.006380201783031225, -0.010873958468437195, 0.006258264183998108, -0.002600138308480382, -0.006803396623581648, 0.000664380204398185, -0.0014417319325730205, 0.015177635475993156, 0.01636832021176815, 0.017071252688765526, -0.02682625502347946, 0.005792032461613417, 0.0065917992033064365, 7.1615882916376e-05, 0.013061660341918468, -0.006326405797153711, 0.012394590303301811, -0.02582206390798092, -0.01339160930365324, 0.00966175552457571, 0.014245172031223774, -0.01380045898258686, -0.006530830170959234, -0.0068249148316681385, 0.010429244488477707, -0.002227152930572629, -0.005996457301080227, 0.02925066091120243, -0.010300134308636189, 0.01763073168694973, 0.02111670933663845, 0.010536836460232735, -0.0031596163753420115, -0.0037262672558426857, -0.009668928571045399, -0.006681459024548531, 0.007054444402456284, -1.4513703717966564e-05, -0.007660545874387026, -0.013613966293632984, -0.005164412781596184, 0.0068536060862243176, 0.012645638547837734, 0.011447781696915627, 0.0013753835810348392, 0.012459145858883858, -0.007273214869201183, -0.006706563755869865, 0.0008298027678392828, -0.009869766421616077, 0.02838992513716221, -0.0048380508087575436, -0.003421423491090536, -0.016095753759145737, -0.020700687542557716, 0.006821328774094582, -0.0035612930078059435, 0.01174186635762453, 0.03316700831055641, 0.013520719483494759, 0.0028081494383513927, 0.026912329718470573, -0.013133388943970203, 0.0009494987898506224, -0.009805211797356606, 0.009719138033688068, 0.005892451386898756, 0.008657564409077168, -0.011081969365477562, 0.011505164206027985, 0.0009970185346901417, -0.025248240679502487, -0.0022970878053456545, -0.006627663038671017, -0.0013933154987171292, -0.032621875405311584, -0.0022038414608687162, -0.014230825938284397, 0.018434084951877594, -0.008205678313970566, -0.00456548435613513, 0.008026358671486378, 0.0017214709660038352, 0.007804001681506634, -0.006043080240488052, 0.01545020192861557, -0.004533206578344107, -0.010429244488477707, -0.01438862830400467, -0.01404433324933052, 0.029752755537629128, -0.0008033530903048813, 0.012387418188154697, 0.007147690746933222, 0.011684483848512173, -0.03580659627914429, 0.0033335566986352205, -0.005885278806090355, -0.00799049437046051, 0.003494944656267762, 0.005293522961437702, 0.0021984619088470936, 0.01326967217028141, -0.019796915352344513, -0.012846476398408413, -0.006132740061730146, -0.012229616753757, 0.007380806840956211, 0.026223741471767426, 0.015220671892166138, -0.019065290689468384, -0.0031363049056380987, -0.017358165234327316, -0.020585922524333, -0.0107305021956563, 0.0037334400694817305, -0.005637817084789276, 0.010601392015814781, 0.025922482833266258, 0.006204468198120594, -0.0034895651042461395, 0.011125005781650543, 0.009066413156688213, 0.015048525296151638, 0.013872186653316021, -0.0033514886163175106, -0.03749937564134598, -0.010924167931079865, -0.008176987059414387, -9.470331860939041e-05, -0.015048525296151638, 0.02737138792872429, -0.008535626344382763, 0.01281061302870512, -0.013843495398759842, 0.011289980262517929, -0.005720304325222969, -0.0077394465915858746, 0.007280387450009584, 0.0005783066153526306, 0.016526121646165848, -0.00431085005402565, 0.020428121089935303, 0.02276645228266716, 0.00964023731648922, -0.03422858193516731, -0.0030394720379263163, -0.020815452560782433, 0.012946896255016327, -0.01889314316213131, 0.0007854211144149303, 0.008585836738348007, -0.008514108136296272, 0.0048703281208872795, 0.003401698311790824, -0.0015753252664580941, 0.012459145858883858, 0.012236788868904114, 0.003530808724462986, -0.018276283517479897, -0.0021769434679299593, -0.0029336733277887106, 0.008341961540281773, -0.013147734105587006, -0.02915024198591709, 0.0255208071321249, 0.0022863284684717655, -0.00806222204118967, 0.007667718455195427, 0.00796897616237402, 0.0184627752751112, -0.011490818113088608, -0.004744804464280605, 0.0013780733570456505, -0.0012776541989296675, 0.0010203301208093762, -0.007402325049042702, -0.018850106745958328, 0.012817786075174809, 0.004099252633750439, 0.0015206326497718692, -0.02174791693687439, 0.0010956445476040244, -0.019309164956212044, 0.026123320683836937, 0.015866223722696304, 0.022967291995882988, -0.0003599846677388996, 0.02741442434489727, -0.00852128118276596, 0.02963799051940441, 0.006233159452676773, -0.016454393044114113, 0.015464547090232372, 0.00213032029569149, 0.0013511753641068935, -0.03081432916224003, -0.0007567299180664122, -0.011763384565711021, -0.002202048199251294, -0.0024871667847037315, -0.011074796319007874, -0.0191800557076931, -0.010379035025835037, 0.01441014651209116, -0.03081432916224003, 0.017659422010183334, 0.0016838137526065111, 0.010938513092696667, -0.004662317223846912, 0.00025866893702186644, 0.0031506505329161882, 0.006401719991117716, -0.01230134442448616, -0.007366461213678122, 0.004174566827714443, -0.010414899326860905, 0.009016203694045544, 0.0022235666401684284, -0.004590589087456465, -0.0038589639589190483, -0.009991704486310482, 0.012753230519592762, 0.011971395462751389, 0.0218052975833416, 0.008930130861699581, 0.01628224551677704, 0.02659672684967518, 0.02639588713645935, -0.0007038305629976094, 0.011978568509221077, -0.0015412544598802924, -0.012889513745903969, 0.004766322672367096, 0.004038284067064524, -0.01341312751173973, 0.006810569204390049, 0.005053234286606312, 0.026711490005254745, -0.014625330455601215, 0.01632528193295002, -0.0020047964062541723, 0.010006049647927284, -0.014876377768814564, -0.00649137981235981, 0.006373028736561537, 0.0024208184331655502, -0.002227152930572629, -0.003229551250115037, 0.0029247074853628874, -0.009511127136647701, -0.022250011563301086, 0.0016784342005848885, -0.01797502487897873, -0.007090308237820864, -0.0011763385264202952, -0.008901439607143402, -0.0025606879498809576, -0.013872186653316021, 0.020958907902240753, -0.005465670023113489, -0.00516082625836134, 0.02861945517361164, 0.008420862257480621, -0.006254677660763264, 0.005820723716169596, 0.0021518387366086245, -0.0035433610901236534, -0.012681502848863602, -0.028547726571559906, 0.008528454229235649, -0.007603163365274668, 0.01506287045776844, 0.009948667138814926, -0.005713131744414568, 0.0077394465915858746, 0.0003156030143145472, 0.008133949711918831, 0.0014596638502553105, 0.008686255663633347, -0.007172795478254557, 0.0016255348455160856, -0.015507584437727928, 0.0025911724660545588, 3.168918556184508e-05, -0.010364689864218235, -0.0033532818779349327, 0.017358165234327316, 0.009948667138814926, 0.0012435833923518658, 0.0008410103037022054, 0.008420862257480621, 0.008220023475587368, 0.002564274473115802, 0.005515879951417446, 0.004594175610691309, -0.013176425360143185, 0.02537734992802143, 0.008055048994719982, -0.004590589087456465, -0.004543966148048639, 0.012122024782001972, 0.002436957322061062, 0.011404745280742645, 0.015851877629756927, 0.003521842649206519, 0.003256449243053794, 0.014209307730197906, -0.005680853966623545, 0.00033487987820990384, 0.008392171002924442, 7.374530105153099e-05, -0.002230739453807473, 0.000563961046282202, 0.0035863977391272783, -0.012186579406261444, -0.015235017985105515, 0.014087370596826077, 0.009439398534595966, -0.022852526977658272, -0.010988722555339336, -0.008277405984699726, -0.008485416881740093, -0.0016049130354076624, 0.00280276988632977, -0.008593008853495121, 0.010795057751238346, -0.02064330503344536, 0.01797502487897873, 0.01971084251999855, -0.021389275789260864, -0.01675564981997013, -0.0018299594521522522, -0.00754578085616231, -0.0019151364685967565, -0.016540465876460075, 0.015608003363013268, 0.007703582290560007, -0.008184160105884075, -0.016583504155278206, -0.01446035597473383, -0.002175150206312537, -0.005469256546348333, -0.0012812406057491899, 0.023182475939393044, 0.011275634169578552, -0.007782483007758856, 0.006602558307349682, -0.03133077174425125, -0.01588056981563568, -0.02527693100273609, -0.019682150334119797, -0.01491941511631012, 0.009963013231754303, 0.007997667416930199, -0.025004364550113678, 0.011569718830287457, 0.02107367292046547, 0.006276196334511042, 0.025406042113900185, 0.0027633195277303457, -0.012631293386220932, 0.0030950612854212523, 0.009884112514555454, 0.008578663691878319, -0.021001946181058884, 0.006656354293227196, 0.0009781899861991405, 0.0016757443081587553, -0.038532257080078125, 0.009776520542800426, 0.004443546757102013, -0.013778939843177795, -0.036839477717876434, -0.0006832087528891861, 0.015306745655834675, -0.0057059586979448795, -0.003130925353616476, 0.015177635475993156, -0.011648619547486305, 0.023569805547595024, -0.016540465876460075, -0.007294733077287674, -0.005935488268733025, 0.018075445666909218, -0.0013440025504678488, -0.013958260416984558, 0.03706900775432587, -0.0018954111728817225, 0.0027776651550084352, 0.013721558265388012, 0.0024764076806604862, -0.010945686139166355, 0.0348597876727581, -0.005358078051358461, 0.008607354946434498, -0.0002772733860183507, -0.010981550440192223, 0.01995471678674221, 0.0020514195784926414, 0.0128393042832613, -0.028519034385681152, 0.0004792324034497142, -0.01744423806667328, -0.0013861426850780845, -0.003292313078418374, 0.00898034032434225, -0.006007216405123472, -0.004214017186313868, 0.006319232750684023, 0.009052067995071411, -0.0007235557422973216, 0.013427473604679108, -0.022967291995882988, 0.0030251264106482267, -0.01167013868689537, -0.014905069023370743, 0.0008791157742962241, -0.018233247101306915, 0.010228406637907028, -0.01665523089468479, 0.0003877792623825371, -0.00038217552355490625, 0.040081582963466644, -0.009833903051912785, -0.01665523089468479, -0.012114851735532284, 0.013549410738050938, 0.007409497629851103, -0.017372511327266693, -0.011533855460584164, 0.030498726293444633, 0.01555062085390091, 0.0025427560321986675, -0.01864926889538765, 0.002110595116391778, -0.02082979865372181, 0.009546990506350994, -0.020499849691987038, -0.017214709892868996, 0.024459233507514, -0.00854997243732214, -0.017688114196062088, 0.002757939975708723, -0.019481312483549118, -0.0012310310266911983, 0.005200276616960764, 0.0026611071079969406, 0.007854211144149303, 0.02087283506989479, 0.007058030925691128, -0.0001461457140976563, 0.0029713306576013565, 0.013506374321877956, 0.021346239373087883, 0.045791126787662506, 0.008750810287892818, 0.009288770146667957, -0.022780798375606537, -0.0006509312079288065, -0.028260814025998116, -0.003193687181919813, -0.0020047964062541723, -0.02101629041135311, -0.010508145205676556, 0.014818995259702206, 0.0025158580392599106, 0.017372511327266693, 0.020212937146425247, -0.004074147902429104, 0.00045390345621854067, 0.003071749582886696, -0.0008253197884187102, -0.0023419177159667015, 0.008750810287892818, 0.007674891036003828, 0.013276844285428524, -0.011297153308987617, -0.006505725439637899, 0.0134633369743824, 0.008026358671486378, 0.013628311455249786, 0.0001855960872489959, 0.018950525671243668, 0.015564966015517712, 0.006638422142714262, -0.020858488976955414, -0.019093981012701988, 0.017946334555745125, -0.001092954771593213, 0.02523389458656311, 0.009116623550653458, 0.01691345125436783, -0.004931297153234482, 0.001401384943164885, -0.006215227302163839, -0.011268462054431438, 0.011103487573564053, 0.0035146698355674744, -0.017013870179653168, -0.0031901008915156126, 0.01569407619535923, 0.005820723716169596, -0.020413776859641075, 0.02397148311138153, 0.012975587509572506, -0.0005823413375765085, -0.03655256703495979, -0.009719138033688068, 0.010328825563192368, 0.008650391362607479, 0.014281036332249641, -0.010708983987569809, -0.00456548435613513, -0.015077216550707817, -0.008664737455546856, -0.0065917992033064365, 0.0037155081517994404, 0.011978568509221077, -0.008270232938230038, 0.005630644503980875, -0.005006611347198486, 0.013599620200693607, 0.009087932296097279, 0.005469256546348333, 0.02117409184575081, -0.010952859185636044, 0.0069074020721018314, -0.03899131715297699, -0.01123977079987526, -0.020514195784926414, -0.04513122886419296, -0.010493800044059753, -0.009145313873887062, 0.00801918562501669, -0.009453744627535343, -0.022881217300891876, 0.012236788868904114, -0.002910361858084798, -0.013865013606846333, -0.0007544884574599564, -0.005673681385815144, 0.01303296908736229, 0.005949833896011114, 0.006358683109283447, -0.026080284267663956, 0.006545175798237324, -0.02290990948677063, 0.018434084951877594, 0.017472930252552032, -0.012495010159909725, 0.0042678131721913815, -0.012681502848863602, 0.000306861154967919, 0.012208097614347935, 0.012229616753757, 0.004371819086372852, 0.004443546757102013, -0.0055051203817129135, -0.02272341586649418, -0.016970833763480186, -0.026281122118234634, -0.007725100964307785, 0.0003012574161402881, 0.024344468489289284, -0.02115974761545658, 0.0024459233973175287, -0.01636832021176815, 0.011541028507053852, -0.00016318110283464193, 0.011734693311154842, 0.008327615447342396, 0.011713175103068352, 0.001518839504569769, 0.0077107553370296955, -0.006954025477170944, -0.002101629041135311, 0.038876552134752274, 0.012767575681209564, 0.0023706089705228806, 0.0018326492281630635, 0.008205678313970566, 0.005741822998970747, -0.011110660620033741, -0.0025965520180761814, 0.013169252313673496, -0.014833341352641582, -0.005799205042421818, 0.010113641619682312, 0.0037513719871640205, 0.005476429592818022, 0.0046981810592114925, 0.002926500514149666, 0.005770514253526926, -0.010472281835973263, -0.018003717064857483, 0.019926026463508606, 0.026955366134643555, 0.014144753105938435, -0.0030125740449875593, 0.009288770146667957, -0.02290990948677063, 0.002727455459535122, 0.026367196813225746, -0.0002593413810245693, -0.005322214215993881, -0.014905069023370743, -0.008083740249276161, -0.0013888325775042176, -0.009941495023667812, 0.02232174016535282, -0.0009503954206593335, 0.008463898673653603, 0.000546029070392251, -0.005856587551534176, -0.011641447432339191, 0.0012803439749404788, 0.01679868809878826, -0.002592965494841337, -0.0058171371929347515, -0.009503954090178013, -0.0033801798708736897, 0.025692952796816826, -0.019596077501773834, -0.01169882994145155, -0.010357516817748547, 0.007438188884407282, 0.00700064841657877, -0.0028888434171676636, 0.011340189725160599, 0.008757983334362507, 8.640977466711774e-05, -0.007316251285374165, -0.015421510674059391, 0.010228406637907028, 0.00799049437046051, 0.0024064728058874607, 0.03181852027773857, -0.0017160912975668907, -0.01271019410341978, 0.006469861604273319, -0.01791764423251152, 0.014324072748422623, 0.009145313873887062, 0.0003026023041456938, 0.0049815066158771515, 0.01820455491542816, -0.034658949822187424, -0.012824958190321922, -0.00347521947696805, 0.024201011285185814, 0.004744804464280605, -0.00476990919560194, -0.025104785338044167, -0.0016990558942779899, 0.003927105572074652, 0.02193440869450569, -0.015808841213583946, -8.114225056488067e-05], "ecd31646-bf80-42af-99f3-2788fe59ea15": [-0.005116845481097698, -0.012473260052502155, -0.019267883151769638, 0.046977803111076355, -0.0035927998833358288, 0.015411270782351494, 0.035013191401958466, 0.026874827221035957, -0.025599410757422447, 0.03504355996847153, 0.0055230045691132545, 0.0073943729512393475, 0.024597298353910446, -0.004334894474595785, -0.0050371321849524975, 0.015745308250188828, -0.005773532669991255, 0.00115204940084368, 0.015115192160010338, -0.02860574796795845, 0.03890017420053482, -0.04506468027830124, -0.050652213394641876, -0.007948571816086769, -0.015623839572072029, 0.03044295310974121, -0.025614595040678978, 0.010674012824892998, -0.03452732041478157, 0.000992622459307313, 0.0320979580283165, 0.016944805160164833, -0.02860574796795845, 0.009763001464307308, 0.011433188803493977, -0.05068258196115494, 0.033221535384655, -0.0022984049282968044, -0.018098752945661545, 0.006790828425437212, -0.02944084070622921, -0.014204180799424648, 0.021803531795740128, -0.010780297219753265, -0.01749141328036785, 0.0016882173949852586, -0.01591232605278492, 0.01098527479916811, -0.01984485797584057, -0.05617901682853699, -0.0023135885130614042, 0.016140079125761986, -0.007489270064979792, 0.02452138066291809, 0.043576695024967194, -0.03801952674984932, 0.02664707414805889, 0.05396222323179245, 0.008593871258199215, -0.06328490376472473, 0.0035415554884821177, -0.05548057332634926, 0.019768940284848213, -0.01604897901415825, 0.020679950714111328, 0.019935958087444305, -0.009292312897741795, 0.0005888357991352677, 0.015008906833827496, 0.0247946847230196, -0.016018610447645187, 0.0176128800958395, -0.042635317891836166, 0.006077202968299389, -0.011235803365707397, 0.009945204481482506, 0.03662264347076416, 0.0024445464368909597, 0.010089447721838951, -0.02918272092938423, 0.004407016094774008, 0.009451739490032196, 0.03534723073244095, 0.017703982070088387, 0.028210975229740143, 0.020938070490956306, -0.013065417297184467, -0.034588053822517395, -0.02889423444867134, -0.022167935967445374, -0.011114334687590599, -0.008130773901939392, -0.013391862623393536, -0.006350506097078323, -0.007227354217320681, 0.034162916243076324, 0.024278445169329643, 0.006274588871747255, -0.01732439361512661, -0.024961702525615692, -0.0191767830401659, -0.0015373311471194029, 0.0010495606111362576, 0.0018096854910254478, 0.04160283878445625, -0.02704184502363205, -0.02439991384744644, 0.007041356526315212, -0.014485076069831848, 0.03142988309264183, 0.0006585851078853011, -0.009808552451431751, -0.00032858081976883113, -0.001409220276400447, -0.04044889286160469, -0.04041852429509163, -0.04849615693092346, -0.042635317891836166, -0.0038015733007341623, 0.0036820031236857176, 0.046674132347106934, 0.0011738757602870464, -0.005538187921047211, -0.00838889367878437, -0.03665301203727722, -0.002822236390784383, 0.007682859897613525, 0.02705702930688858, 0.02957749180495739, 0.022365322336554527, -0.028636114671826363, -0.021454310044646263, 0.037989161908626556, -0.011311721056699753, 0.031794287264347076, 0.027269598096609116, 0.014204180799424648, 0.01556310523301363, -0.008700155653059483, 0.025326106697320938, -0.019935958087444305, 0.014090304262936115, 0.0012744665145874023, 0.05110771954059601, 0.01834169030189514, -0.0078119197860360146, -0.013186885043978691, 0.028119875118136406, 0.000759175862185657, 0.01989040896296501, -0.07828621566295624, -0.03537759557366371, -0.016398198902606964, -0.00376930832862854, 0.04427513852715492, -0.022729726508259773, 0.010643646121025085, 0.03449695184826851, 0.034466587007045746, 0.04184577614068985, 0.02874239906668663, -0.031186945736408234, -0.009838919155299664, 0.040084484964609146, 0.023701470345258713, 0.018812378868460655, 0.07111959904432297, 0.005169987678527832, -0.021181007847189903, 0.02648005448281765, -0.013490555807948112, -0.031490616500377655, 0.009421372786164284, 0.025994181632995605, -0.04955900087952614, -0.014970948919653893, 0.040357790887355804, 0.030898459255695343, 0.018539074808359146, -0.017127007246017456, -0.04463954269886017, 0.004232405684888363, 0.013551289215683937, 0.023154864087700844, 0.019966326653957367, 0.047949548810720444, 0.01098527479916811, 0.02664707414805889, -0.0049308473244309425, 0.0019491841085255146, 0.017385127022862434, 0.027573268860578537, 0.0046271770261228085, 0.005063703283667564, -0.013110967352986336, -0.01632228121161461, -0.005116845481097698, 0.015881959348917007, 3.010013824678026e-05, 0.0365922786295414, 0.006369485519826412, -0.042027976363897324, -0.03285713121294975, 0.020178895443677902, -0.031050294637680054, 0.029410474002361298, -0.01253399346023798, -0.026024550199508667, 0.03868760168552399, -0.03136914595961571, 0.037108518183231354, -0.04943753406405449, -0.00556855509057641, -0.009140477515757084, 0.006293568294495344, 0.012852847576141357, 0.007842286489903927, 0.038930539041757584, -0.028545012697577477, -0.0023648329079151154, 0.033343005925416946, 0.016732236370444298, -0.023321883752942085, -0.01302745845168829, -0.04828358814120293, -0.0007582269026897848, -0.031186945736408234, 0.03999338671565056, -0.024050692096352577, 0.011311721056699753, 0.013930877670645714, -0.013953653164207935, 0.008821623399853706, -0.017278842628002167, -0.038383934646844864, 0.03604567050933838, 0.06668601185083389, -0.030108915641903877, -0.019784122705459595, 0.010081855580210686, -0.025052804499864578, 0.010119814425706863, -0.005986101925373077, -0.00329482345841825, -0.005450882948935032, 0.028560196980834007, -0.023898856714367867, 0.07676786929368973, -0.01331594493240118, -0.005181375425308943, 0.00513962097465992, 0.009277129545807838, 0.013839776627719402, 0.023777388036251068, -0.031490616500377655, 0.017977284267544746, 0.029228271916508675, 0.001864725723862648, -0.028666481375694275, -0.026722991839051247, 0.038262464106082916, 0.023762205615639687, 0.014500259421765804, 0.00422860961407423, 0.009922428987920284, 0.0005987999611534178, 0.039811182767152786, -0.003076560329645872, 0.02339780144393444, 0.016792969778180122, 0.030200017616152763, 0.019693022593855858, -0.018645359203219414, 0.0399630181491375, 0.020634399726986885, -0.005405332427471876, 0.004539871588349342, 0.02169724740087986, 0.04676523432135582, 0.017825448885560036, -0.025310924276709557, 0.03692631423473358, 0.006043040193617344, -0.015532738529145718, 0.050500381737947464, -0.006604830268770456, -0.046552665531635284, -0.013763858936727047, -0.035225760191679, -0.034861356019973755, 0.011569840833544731, 0.010264057666063309, 0.017719164490699768, 0.008745706640183926, -0.002156059490516782, -0.02113545686006546, 0.0007349771331064403, -0.006942663341760635, 0.023747021332383156, 0.01702072285115719, 0.01931343413889408, -0.022714542225003242, -0.008426852524280548, -0.03370741009712219, 0.05241350457072258, -0.03212832286953926, 0.02719368040561676, 0.019374169409275055, -0.043030090630054474, 0.02002706006169319, 0.02903088554739952, -0.00838889367878437, -0.0065516880713403225, -0.01028683315962553, -0.019267883151769638, -0.010028713382780552, -0.011243394576013088, -0.008479994721710682, -0.006274588871747255, -0.05891204997897148, -0.01034756749868393, -0.013103376142680645, -0.08363081514835358, 0.004756236914545298, 0.07397409528493881, -0.039112742990255356, 0.028347628191113472, -0.0032891295850276947, -0.024187343195080757, 0.0052269259467720985, -0.040934763848781586, -0.019267883151769638, -0.022213486954569817, 0.014318057335913181, -0.047281473875045776, -0.014932990074157715, -0.04764587804675102, -0.02846909500658512, 0.0014765970408916473, -0.03829283267259598, -0.015988243743777275, 0.018235404044389725, 0.023488901555538177, -0.004611993674188852, -0.014029569923877716, -0.0050371321849524975, 0.016975173726677895, 0.007090702652931213, -0.03045813739299774, 0.00852554477751255, 0.0009380566771142185, -0.0187364611774683, 0.04761551320552826, -0.029501574113965034, 0.023412983864545822, -0.0027634003199636936, -0.0231093131005764, 0.009406189434230328, 0.0078119197860360146, -0.014538218267261982, -0.004520892631262541, -0.039386045187711716, -0.009345455095171928, 0.015517555177211761, -0.025280557572841644, -0.0038300424348562956, 0.0007696145330555737, -0.010954908095300198, -0.034466587007045746, 0.01063605397939682, -0.047949548810720444, 0.024430280551314354, 0.005439495202153921, -0.005868429783731699, -0.027861755341291428, -0.027831388637423515, 0.034314751625061035, -0.012093671597540379, -0.004353873897343874, 0.04096513241529465, -0.007276700809597969, -0.011342087760567665, 0.018903478980064392, 0.03941641375422478, 0.030518870800733566, -0.015069641172885895, -0.006866746116429567, -0.046704500913619995, -0.05602718144655228, -0.002826032228767872, 0.003395414212718606, -0.002340159611776471, -0.022031284868717194, -0.0039742859080433846, -0.025857530534267426, -0.0019681635312736034, -0.029334556311368942, -0.013999203220009804, -0.013520922511816025, -0.019131232053041458, 0.00880644004791975, -0.026935560628771782, -0.021636512130498886, -0.02942565642297268, 0.02632821910083294, -0.010332384146749973, -0.019495636224746704, -0.0018296139314770699, 0.03139951452612877, 0.02014852873980999, -0.004953622817993164, 0.028939785435795784, 0.019905591383576393, 0.034588053822517395, 0.025599410757422447, -0.011759634129703045, -0.027254413813352585, 0.06559279561042786, -0.018523892387747765, -0.019328618422150612, 0.03158171847462654, 0.028970152139663696, 0.021909816190600395, 0.008707747794687748, 0.03130841255187988, 0.0026836867909878492, -0.0226689912378788, 0.016823338344693184, 0.0024692195001989603, 0.016307098791003227, 0.00464995251968503, 0.03115657903254032, -0.003110723104327917, -0.015084824524819851, -0.0033897203393280506, 0.02336743287742138, 0.01296672411262989, -0.03382887691259384, 0.004927051719278097, 0.012192364782094955, -0.024354362860322, 0.008502770215272903, -0.01381700113415718, 0.012518810108304024, -0.04139026999473572, -0.025174273177981377, -0.024566931650042534, 0.0186149924993515, 0.0116153908893466, -0.04369816556572914, 0.005431903526186943, 0.018250588327646255, -0.04460917413234711, 0.0038528176955878735, 0.01436360739171505, -0.018979396671056747, 0.00496880616992712, 0.0035927998833358288, 0.06237389147281647, -0.03877870365977287, -0.01457617711275816, 0.011638166382908821, 0.0442144051194191, 0.009641533717513084, 0.03155134990811348, -0.018098752945661545, 0.003254966577515006, 0.011273762211203575, -0.008312975987792015, 0.021332843229174614, 0.025326106697320938, -0.038657236844301224, -0.01831132173538208, 0.02547794207930565, 0.019799306988716125, 0.015441637486219406, -0.009679492563009262, -0.023170048370957375, 0.017430678009986877, -0.04184577614068985, 0.003004438476637006, 0.0073336390778422356, 0.03932531177997589, -0.02506798692047596, 0.020178895443677902, 0.003317598719149828, -0.02098362147808075, -0.006248017773032188, 0.054144423454999924, -0.012010162696242332, 0.030792174860835075, 0.005898796487599611, 0.027436615899205208, 0.011038416996598244, -0.01984485797584057, -0.03549906611442566, -0.019495636224746704, -0.034891724586486816, -0.0017555942758917809, -0.045003946870565414, 0.003332782071083784, -0.0058114915154874325, 0.008715339004993439, -0.007458902895450592, -0.015851592645049095, 0.01091694924980402, -0.024065876379609108, 0.06358857452869415, 0.014181405305862427, -0.03956824541091919, -0.03376814350485802, 0.01416622195392847, -0.028712032362818718, -0.015031682327389717, 0.011038416996598244, 0.02622193470597267, -0.020391464233398438, -0.006358098238706589, 0.028954967856407166, -0.017855817452073097, -0.007094498723745346, -0.031186945736408234, -0.014393975026905537, -0.007485474459826946, -0.004699298646301031, 0.003025315934792161, 0.01846315711736679, -0.022775277495384216, 0.01337667927145958, -0.017567329108715057, -0.002380016492679715, 0.00873811449855566, -0.02942565642297268, 0.025553859770298004, 0.023018212988972664, -0.0022794255055487156, 0.00401983642950654, 0.01591232605278492, 0.016443749889731407, 0.002410383429378271, -0.03832319751381874, 0.009208803065121174, -0.033737774938344955, 0.002981663215905428, -0.00175179832149297, 0.02763400226831436, -0.014371199533343315, -0.013452596962451935, 0.004517096560448408, 0.03127804771065712, -0.019267883151769638, 0.037837326526641846, 0.008312975987792015, 0.009725043550133705, -0.0062897722236812115, -0.03310006856918335, 0.005094069987535477, -0.00015907107444945723, -0.006137936841696501, -0.013141334988176823, -0.015396087430417538, 0.0249161534011364, 0.026434503495693207, 0.012761746533215046, 0.011008050292730331, -0.006608625873923302, -0.007576575502753258, -0.010256466455757618, -0.010795481503009796, 0.02239568904042244, 0.028286892920732498, -0.01296672411262989, 0.009945204481482506, -0.00290384772233665, 0.003374536754563451, 0.03929494321346283, 0.0006694982293993235, 0.01632228121161461, -0.015608656220138073, -0.018706094473600388, 0.020528115332126617, 0.007610738277435303, -0.01472801249474287, 0.0013076805043965578, -0.02576643042266369, 0.02745180018246174, -0.02900051884353161, -0.014272506348788738, -0.019966326653957367, -0.02016371116042137, 0.021029172465205193, 0.03045813739299774, -0.03637970983982086, 0.025599410757422447, -0.017369944602251053, 0.030078548938035965, -0.004365261178463697, 0.0252350065857172, 0.012883215211331844, 0.00950488168746233, 0.023033397272229195, 0.019207149744033813, 0.024855418130755424, 0.012063304893672466, -0.020102977752685547, 0.02421770989894867, -0.013589248061180115, 0.010795481503009796, 0.003146784147247672, 0.02477950043976307, 0.03531686216592789, -0.020376279950141907, 0.02382293902337551, -0.012875623069703579, 0.015115192160010338, 0.018706094473600388, 0.015988243743777275, 0.012496035546064377, 0.022623442113399506, -0.013073008507490158, 0.035863470286130905, -0.03200685605406761, 0.03735145181417465, 0.024308811873197556, 0.008001714013516903, 0.025736061856150627, -0.004862521775066853, -0.004885296802967787, -0.0058076954446733, -0.01168371643871069, -0.009186028502881527, -0.012055712752044201, 0.00030722899828106165, -0.006608625873923302, 0.004243793431669474, -0.003632656531408429, 0.0005807695561088622, -0.01492539793252945, -0.0005812440649606287, 0.011972203850746155, -0.006092386320233345, 0.002655217656865716, 0.003989469259977341, 0.04898202791810036, -0.0014671074459329247, 0.0004426944360602647, 0.0014927296433597803, 0.006878133397549391, 0.04567202180624008, 0.01859981007874012, -0.00893549993634224, 0.007276700809597969, 0.032766032963991165, 0.030670706182718277, 0.006669360212981701, -0.0007183701964095235, -0.020634399726986885, -0.018539074808359146, -0.0026647073682397604, 0.008487586863338947, 0.011957020498812199, -0.02354963682591915, 0.03559016436338425, 0.009406189434230328, 0.010089447721838951, -0.02590308152139187, 0.02646487206220627, -0.0124580767005682, 0.03592420369386673, 0.019343800842761993, 0.022092018276453018, -0.0028374199755489826, 0.00182202213909477, 0.003718063933774829, -0.001911225263029337, -0.012192364782094955, -0.005329414736479521, 0.029197905212640762, 0.0252350065857172, -0.03592420369386673, -0.02171242982149124, -0.05450882762670517, -0.022881561890244484, 0.018129119649529457, -0.011288945563137531, -0.002721645636484027, -0.01832650601863861, -0.01986004039645195, -0.02225903607904911, 0.03291786462068558, -0.008601462468504906, 0.015304985456168652, -0.010370342992246151, 0.01450785156339407, -0.01472801249474287, -0.012124039232730865, 0.006927479989826679, -0.02617638371884823, 0.017567329108715057, -0.0007079315255396068, -0.004471546038985252, -0.02297266200184822, 0.0016331771621480584, 0.0040426114574074745, -0.001288701081648469, -0.006942663341760635, -0.019207149744033813, -0.04524688422679901, -0.002184528624638915, 0.013080600649118423, -0.005746961571276188, -0.003940122667700052, 0.01507723331451416, 0.024354362860322, 0.0025090763811022043, -0.009770593605935574, -0.005541983991861343, 0.036136772483587265, -0.005750757176429033, 0.03449695184826851, -0.025660144165158272, 0.0030651725828647614, -0.005033336114138365, 0.003499800805002451, -0.034709520637989044, 0.016291914507746696, -0.010370342992246151, -0.00357382046058774, 0.012632686644792557, 0.0014025775017216802, 0.04296935349702835, -0.006244221702218056, 0.0006723451660946012, 0.014690053649246693, -0.005913980305194855, -0.0055154128931462765, -0.030397402122616768, 0.04385000094771385, 0.02942565642297268, -0.001958673819899559, 0.0304125864058733, 0.007849878631532192, 0.012868030928075314, -0.002180732786655426, -0.008070039562880993, -0.026586338877677917, 0.032462362200021744, 0.012351791374385357, -0.04278715327382088, -0.01776471547782421, 0.03404144570231438, -0.01645893231034279, 0.017643246799707413, 0.012837664224207401, -0.011304128915071487, 0.0246732160449028, 0.029547125101089478, 0.0011928550666198134, 0.00879884883761406, 0.053476348519325256, -0.045125413686037064, 0.016792969778180122, 0.01998150907456875, -0.018144303932785988, -0.013824593275785446, 0.007880245335400105, 0.004813175182789564, 0.00195487798191607, 0.02648005448281765, 0.018554259091615677, 0.025569044053554535, 0.017992468550801277, 0.018645359203219414, 0.03461841866374016, -0.026100467890501022, -0.020816603675484657, -0.0031752530485391617, -0.030078548938035965, -0.029835611581802368, -0.011805185116827488, -0.040813297033309937, -0.023762205615639687, 0.004004652611911297, -0.01577567495405674, 0.02593344822525978, -0.04005412012338638, 0.04664376750588417, -0.023974774405360222, 0.0042703645303845406, 0.016231181100010872, 0.017263660207390785, 0.01592751033604145, 0.006638993043452501, 0.025174273177981377, -6.642789230681956e-05, -0.039386045187711716, -0.012169589288532734, 0.005306639242917299, -0.018797194585204124, -0.006726298481225967, 0.02058885060250759, 0.0016217895317822695, 0.014636911451816559, 0.015350536443293095, 0.03704778477549553, -0.027937673032283783, -0.009201211854815483, -0.01507723331451416, -0.042604949325323105, 0.010666421614587307, -0.006369485519826412, 0.0033859245013445616, -0.0022129977587610483, 0.015039274469017982, -0.02224385365843773, 0.0012782623525708914, 0.008548320271074772, -0.012731379829347134, 0.024855418130755424, 0.028514645993709564, -0.024703582748770714, 0.0035529432352632284, 0.019055314362049103, 0.006946459412574768, 0.01591232605278492, -0.011919061653316021, 0.0026647073682397604, 0.001690115313977003, -0.011433188803493977, -0.020239628851413727, -0.02690519392490387, -0.01416622195392847, -0.01563902385532856, 0.017445862293243408, 0.0027899714186787605, 0.020922888070344925, 0.0001789994421415031, 0.007310863584280014, -0.014932990074157715, 0.03607603907585144, -0.010871398262679577, -0.04494321346282959, -0.012260690331459045, -0.0037712061312049627, -0.013073008507490158, 0.0033935161773115396, 0.029213087633252144, 0.007994121871888638, 0.038383934646844864, 0.0417243055999279, 0.026601523160934448, -0.02143912762403488, 0.046006057411432266, 0.003302415134385228, 0.00033546084887348115, 0.010431076399981976, 0.008487586863338947, 0.011501514352858067, -0.01676260307431221, -0.001117886509746313, 0.016003428027033806, 0.02974451147019863, -0.024263260886073112, 0.010431076399981976, -0.014044754207134247, -0.021029172465205193, -0.0005926316953264177, 0.01394606102257967, 0.008153549395501614, 0.0033194965217262506, -0.012670645490288734, 0.002381914295256138, 0.005754553247243166, 0.017157375812530518, 0.013505739159882069, -0.001070437952876091, -0.0015449229395017028, -0.012769338674843311, 0.001658799359574914, 0.012374566867947578, 0.0075424122624099255, 0.01522906869649887, -0.013627206906676292, 0.028696848079562187, -0.0050788866356015205, -0.019222334027290344, -0.019252700731158257, -0.0068895211443305016, -0.0124580767005682, -0.01549477968364954, -0.0038376341108232737, 0.002383812330663204, 0.0070717232301831245, -0.014955764636397362, -0.008821623399853706, 0.007978938519954681, -0.008533136919140816, -0.004794195760041475, 0.00559892226010561, -1.9172157408320345e-05, -0.004091958049684763, -0.031338781118392944, -0.011410413309931755, -0.0067756446078419685, 0.05915498360991478, -0.059094250202178955, 0.013703124597668648, 0.007781552616506815, 0.034709520637989044, 0.014318057335913181, 0.02664707414805889, 0.006536504253745079, 0.012108854949474335, -0.006528912577778101, 0.02494652010500431, 0.03735145181417465, 0.00015147931117098778, -0.02534129098057747, -0.02307894639670849, 0.0026210546493530273, 0.0123366080224514, 0.0020725501235574484, 0.035984937101602554, 0.0192982517182827, -0.014659686014056206, 0.011235803365707397, -0.024354362860322, -0.01774953305721283, -0.0028943580109626055, 0.005242109298706055, -0.001471852301619947, -0.005940551403909922, 0.016231181100010872, -0.02011816017329693, 0.0049574184231460094, -0.004376648925244808, -0.0354686975479126, -0.0037863897159695625, -0.018417606130242348, 0.0066200136207044125, -0.004072978626936674, 0.009740226902067661, 0.04363742843270302, -0.0064491992816329, -0.016140079125761986, -0.015092416666448116, 0.023595185950398445, 0.02071031741797924, 0.0005769736599177122, 0.0037123700603842735, 0.0027747878339141607, -0.003465638030320406, 0.000200469876290299, -0.026722991839051247, 0.02239568904042244, -0.0006917990394867957, -0.019191967323422432, -0.016519667580723763, -0.012731379829347134, 0.013186885043978691, 0.00728808855637908, 0.03762475773692131, 0.0003359353286214173, 0.007067927625030279, -0.02227422036230564, -0.002266139956191182, 0.0037750022020190954, -0.008760889992117882, -0.03059478849172592, 0.01226828247308731, 0.0064719743095338345, 0.008540729060769081, 0.007371597923338413, 0.01148633100092411, -0.010059080086648464, -0.01557828951627016, -0.011516698636114597, -0.008897541090846062, -0.031915754079818726, -0.0022642421536147594, 0.02140875905752182, -0.022729726508259773, -0.011638166382908821, -0.02748216688632965, -0.008996234275400639, -0.014211772941052914, -0.006832582876086235, 0.029683778062462807, -0.028833501040935516, 0.01098527479916811, 0.01240493357181549, -0.0170510895550251, -0.006320139393210411, 0.005606513936072588, 0.0018353076884523034, -0.021909816190600395, -0.01730920933187008, -0.023731838911771774, -0.00034423882607370615, -0.018660543486475945, 0.0005352189764380455, -0.001542076002806425, -0.034284383058547974, 0.022319771349430084, 0.03637970983982086, 0.02717849612236023, 0.0124580767005682, -0.029228271916508675, -0.030792174860835075, 0.013968836516141891, -0.011433188803493977, -0.0338592454791069, -0.0029721735045313835, -0.03328227251768112, -0.0076638804748654366, 0.009854103438556194, 0.01759769767522812, -0.022911928594112396, -8.25603783596307e-05, 0.024126609787344933, -0.0016692379722371697, -0.03237126022577286, 0.001825817977078259, -0.023443350568413734, -0.014105487614870071, -0.0022870174143463373, -0.012594727799296379, 0.0005869378801435232, 0.009967979043722153, 0.006118957418948412, -0.009034193120896816, -0.027861755341291428, 0.002822236390784383, 0.005955734755843878, 0.025614595040678978, -0.01006667222827673, 0.0030632747802883387, -0.09571689367294312, -0.00654789200052619, -0.01904013194143772, 0.006684543564915657, 0.011600207537412643, -0.008874766528606415, 0.008958275429904461, 0.01274656318128109, -0.0252350065857172, -0.013649982400238514, 0.01689925603568554, -0.02169724740087986, -0.0006410291534848511, 0.0018485932378098369, 0.004224814008921385, 0.0012393546057865024, -0.019617104902863503, -0.01635264791548252, 0.005652064457535744, -0.002854501362890005, -0.0039021640550345182, -0.007675268221646547, 0.03662264347076416, -0.010446259751915932, -0.01472801249474287, 0.005883613135665655, -0.010605687275528908, -0.0006125600193627179, 0.00039145007031038404, -0.046825967729091644, 0.0048093791119754314, 0.01834169030189514, 0.004498117137700319, -0.02717849612236023, -0.011235803365707397, 0.0049650100991129875, -0.0004310695512685925, -0.004494321066886187, 0.01098527479916811, 0.010180548764765263, -0.016959989443421364, -0.015259435400366783, 0.0054888417944312096, 0.010772706009447575, 0.03112621046602726, -0.0001855236041592434, 0.013741083443164825, -0.02128729224205017, -0.0064491992816329, 0.007136253174394369, -0.01006667222827673, -0.0023724245838820934, -0.015714941546320915, -0.014500259421765804, -0.007299476303160191, -0.012518810108304024, 0.02392922341823578, -0.025280557572841644, 0.017005540430545807, 0.014158629812300205, 0.04649193212389946, 0.01759769767522812, 0.03231052681803703, -0.0076221260242164135, -0.028666481375694275, -0.0017679308075457811, 0.03197648748755455, 0.039355676621198654, 0.023838123306632042, 0.013680349104106426, 0.019799306988716125, -0.002378118457272649, -0.011676125228404999, 0.019085681065917015, -0.012875623069703579, 0.01113711018115282, 0.02253234013915062, 0.005420515779405832, 0.00865460466593504, -0.017233293503522873, -0.056118279695510864, 0.0019795510452240705, 0.001981449080631137, 0.004779012408107519, -0.014826704747974873, -0.006430219858884811, -0.015335353091359138, -0.004091958049684763, 0.026115650311112404, -0.0015515657141804695, 0.03425401449203491, -0.014037162065505981, 0.03127804771065712, 0.009140477515757084, -0.018144303932785988, 0.05201873183250427, -0.015327760949730873, 0.012594727799296379, -0.006274588871747255, -0.0008901337278075516, -0.00936823058873415, -0.022471606731414795, 0.009360638447105885, -0.013862552121281624, -0.0062556094489991665, -0.013338720425963402, 0.01231383252888918, 0.014834296889603138, -0.008297792635858059, -0.012905989773571491, 0.0023648329079151154, -0.01176722627133131, -0.028074324131011963, 0.013240027241408825, -0.014849480241537094, -0.002558422740548849, -0.033585939556360245, 0.0016104019014164805, -0.010772706009447575, -0.0068819294683635235, 0.013976427726447582, 0.022714542225003242, -0.026555972173810005, 0.00124979333486408, 0.001327608828432858, 0.012556768953800201, 0.0059595308266580105, 0.0002106713072862476, 0.0005456576473079622, 0.021013988181948662, -0.01846315711736679, -0.007443719543516636, -0.00055846874602139, 0.004262772388756275, -0.01565420627593994, 0.021196190267801285, 0.03142988309264183, -0.026510421186685562, 0.031915754079818726, -0.03962898254394531, 0.02055848389863968, -0.00795616302639246, -0.006035448517650366, 0.011008050292730331, -0.032067589461803436, 0.013862552121281624, -0.028696848079562187, -0.012845256365835667, 0.008229466155171394, -0.006604830268770456, 0.018645359203219414, -0.01557828951627016, 0.010446259751915932, 0.002199712209403515, -0.006954051088541746, -0.02171242982149124, -0.017415495589375496, 0.00886717438697815, -0.014720420353114605, -0.022198302671313286, -0.022896744310855865, 0.0010609483579173684, 0.015320169739425182, 0.0035852082073688507, -0.010552545078098774, -0.004293139558285475, 0.006999601610004902, -0.014204180799424648, 0.022152751684188843, 0.01776471547782421, 0.010742338374257088, 0.0011207334464415908, -0.00175179832149297, -0.0050371321849524975, 0.002725441474467516, -0.027649186551570892, 0.0019453881541267037, 0.0021788347512483597, 0.023853305727243423, -0.0009603574872016907, 0.00679842010140419, 0.01931343413889408, 0.003355557331815362, 0.0055837384425103664, -0.014803930185735226, 0.001265925820916891, -0.018053201958537102, 0.002351547358557582, 0.010833440348505974, 0.007352618500590324, 0.015449229627847672, 0.02971414476633072, -0.00999834667891264, 0.005166192073374987, -0.008016897365450859, 0.00774738984182477, 0.039507512003183365, 0.030473319813609123, -0.019632289186120033, -0.014591360464692116, 0.004843542352318764, 0.007261517457664013, 0.021454310044646263, 0.0302911177277565, -0.0034447605721652508, 0.006475770380347967, -0.06358857452869415, 0.020634399726986885, 0.016428565606474876, -0.008859582245349884, -0.003351761493831873, -0.005511616822332144, 0.010097038932144642, -0.002753910608589649, 0.024992071092128754, -0.008753297850489616, 0.017567329108715057, -0.014872255735099316, 0.009846511296927929, -0.01702072285115719, 0.03440584987401962, -0.030093731358647346, 0.013862552121281624, -0.011653349734842777, 0.02324596606194973, 0.027148129418492317, 0.0074740867130458355, -0.06273829191923141, -0.005101662129163742, -0.005803899839520454, 0.001760339131578803, 0.009967979043722153, -0.00295888795517385, -0.0006761410040780902, -0.012215140275657177, 0.012503626756370068, 0.03592420369386673, 0.0009646278340369463, 0.027224047109484673, 0.012389750219881535, -0.005371169187128544, -0.02280564419925213, -0.015008906833827496, -0.0017413597088307142, 0.030321484431624413, 0.023291517049074173, -0.002981663215905428, -0.018539074808359146, 0.000911011069547385, -0.017992468550801277, 0.013604432344436646, 0.004213426262140274, -0.006130345165729523, 0.0018875011010095477, 0.0037199617363512516, 4.899056875729002e-05, 0.009117702022194862, -0.013088191859424114, 0.013240027241408825, 0.0067338901571929455, -0.0118962861597538, 0.009892061352729797, 0.0063315266743302345, -0.013703124597668648, 0.02661670744419098, -0.011850735172629356, -0.01576049067080021, -0.0015449229395017028, 0.009990754537284374, -0.013156518340110779, 0.009178436361253262, -0.0011159885907545686, -0.01231383252888918, 0.015684572979807854, 0.0009276180644519627, 0.021241741254925728, 0.00030628000968135893, -0.023580003529787064, -0.0012678237399086356, -0.009315088391304016, -0.01196461170911789, -0.0116153908893466, -0.002455933950841427, 0.010302016511559486, 0.008973458781838417, 0.009026600979268551, -3.689120421768166e-05, -6.796996603952721e-05, 0.03862686827778816, -0.00524970144033432, -0.0020421831868588924, 0.01577567495405674, 0.030230384320020676, -0.008252241648733616, 0.013870143331587315, 0.0118355518206954, 0.012776929885149002, 0.010529769584536552, 0.01351333037018776, 0.0013266598107293248, -0.005485045723617077, -0.007458902895450592, -0.024885784834623337, -0.006304955575615168, -0.012093671597540379, -0.00027472677174955606, -0.006483362056314945, 0.002266139956191182, -0.007265313062816858, 0.0005575197865255177, -0.012845256365835667, 0.011676125228404999, -0.014560993760824203, -0.024976886808872223, -0.003947714809328318, 0.028256526216864586, 0.030351851135492325, -0.017855817452073097, 0.008464811369776726, -0.034162916243076324, 0.011592615395784378, 0.004911867901682854, 0.00795616302639246, -0.005591330584138632, -0.049103494733572006, -0.007918204180896282, 0.00357382046058774, -0.006673155818134546, 0.0012213242007419467, 0.0036933906376361847, -0.023762205615639687, 0.055146537721157074, 0.009360638447105885, -0.00425897678360343, -0.004832154605537653, -0.0006301159737631679, -0.004031224176287651, 0.011941837146878242, -0.02198573388159275, -0.0005428107688203454, 0.013399454765021801, 0.0018903479212895036, 0.006232833955436945, -0.030230384320020676, 0.0047486452385783195, 0.011258577927947044, 0.010818256065249443, 0.034314751625061035, 0.010947315953671932, 0.006813603453338146, 0.0005693819257430732, 0.017992468550801277, 0.030321484431624413, -0.007105886470526457, -0.01098527479916811, 0.01633746549487114, 0.014803930185735226, 0.022061651572585106, 0.0014889336889609694, -0.029228271916508675, -0.016170445829629898, -0.0013323536841198802, 0.013437413610517979, 0.03534723073244095, -0.0043310984037816525, -0.008730522356927395, -0.002106713131070137, -0.019404536113142967, 0.0188579298555851, -0.017582513391971588, 0.011144702322781086, -0.020330730825662613, -0.02818060852587223, 0.014029569923877716, -0.02804395742714405, -0.008032080717384815, 0.0176128800958395, 0.0026096671354025602, 0.012974316254258156, -0.010180548764765263, 0.009034193120896816, -0.008426852524280548, -0.006513729225844145, -0.006464382633566856, -0.034314751625061035, 0.0025868918746709824, -0.01914641633629799, 0.007713227067142725, 0.0037123700603842735, -0.007466495037078857, -0.042908620089292526, -0.01759769767522812, 0.0065858508460223675, 0.001503168256022036, 0.03325190395116806, 0.006957847159355879, -0.02181871421635151, 0.021925000473856926, -0.03856613487005234, -0.02537165768444538, -0.008973458781838417, 0.004672727547585964, -0.015623839572072029, 0.04561128839850426, -0.026313036680221558, 0.01703590713441372, 0.022000916302204132, 0.010666421614587307, 0.018979396671056747, -0.027998406440019608, -0.010339975357055664, -0.011676125228404999, -0.010453851893544197, -0.0003449505311436951, -0.025280557572841644, 0.02128729224205017, -0.02169724740087986, 0.010681604966521263, -0.002083937870338559, -0.0013712614309042692, -0.008145957253873348, -0.014090304262936115, -0.023473719134926796, -0.017354760318994522, -0.02450619824230671, 0.007174212019890547, -0.02804395742714405, 0.014348424039781094, -0.0037579205818474293, -0.014963356778025627, 0.008199099451303482, -0.005803899839520454, -0.010537361726164818, 0.015198701061308384, 0.039659347385168076, -0.0309743769466877, -0.0004161232791375369, -0.0006177793839015067, -0.0034618419595062733, -0.021499861031770706, -0.03279639780521393, -0.013171701692044735, 0.016580400988459587, -0.01176722627133131, 0.011630574241280556, -0.0004296461120247841, 0.02452138066291809, -0.014424341730773449, 0.017127007246017456, -0.0010751828085631132, 0.02143912762403488, -0.016170445829629898, -0.012382159009575844, 0.02324596606194973, 0.016367832198739052, -0.004517096560448408, -0.005932959727942944, -0.022304587066173553, 0.0021162028424441814, 0.035833101719617844, -0.008973458781838417, 0.018129119649529457, -0.00767906429246068, 0.009838919155299664, -0.01692962273955345, 0.0063087516464293, 0.03877870365977287, -0.00774738984182477, 0.005762144923210144, -0.024035507813096046, 0.017916550859808922, -0.015669390559196472, -0.0044184038415551186, 0.015479596331715584, 0.01071956381201744, -0.021378392353653908, 0.0053673735819756985, 0.003055682871490717, -0.011402822099626064, 0.006494749803096056, 0.0061834873631596565, 0.0027709919959306717, 0.002495790831744671, 0.01618563011288643, 0.021059539169073105, -0.00908733531832695, 0.015153151005506516, -0.014075120911002159, 0.01063605397939682, 0.02843872830271721, -0.012177181430161, 0.03367704153060913, -0.006532708648592234, -0.002156059490516782, 0.007299476303160191, -0.0017147884937003255, -0.0030461931601166725, -0.007348822429776192, 0.011304128915071487, -0.00223387498408556, 0.007166620343923569, -0.011881102807819843, -0.027998406440019608, -0.008684972301125526, 0.005200354848057032, -0.009094927459955215, -0.024764318019151688, 0.010932132601737976, 0.006373281590640545, 0.008927908726036549, 0.00032027732231654227, 0.016656318679451942, -0.004152691923081875, 0.0001419896143488586, -0.0065896469168365, -0.017795082181692123, -0.004232405684888363, -0.0035149843897670507, -0.02690519392490387, 0.002892460208386183, -0.013057825155556202, -0.003048091195523739, -0.005910184234380722, -0.018645359203219414, 0.004771420266479254, 0.00908733531832695, -0.008753297850489616, -0.004308323375880718, -0.023595185950398445, 0.014120671898126602, -0.008760889992117882, 0.0021048150956630707, 0.013923285529017448, 0.008912724442780018, 0.015236659906804562, -0.005754553247243166, 0.007022377103567123, -0.003981877584010363, -0.010423485189676285, -0.018949029967188835, 0.007481678389012814, -0.006187283433973789, -0.02564496174454689, 0.0006604830268770456, 0.01450785156339407, 0.06644307076931, -0.013574064709246159, -0.015411270782351494, -0.019647471606731415, 0.00376930832862854, -0.023473719134926796, 0.011562248691916466, 0.009132886305451393, 0.02761881798505783, 0.011448372155427933, 0.0013532310258597136, -0.017142191529273987, 0.02280564419925213, 0.008624237962067127, -0.006373281590640545, 0.027922488749027252, 0.02224385365843773, 0.04454844072461128, -0.007481678389012814, 0.017111824825406075, -0.006843970622867346, 0.017536962404847145, -0.012564361095428467, 0.037412188947200775, -0.009542840532958508, 0.01989040896296501, -0.010051488876342773, 0.0016967580886557698, 0.012146813794970512, 0.013073008507490158, 0.0028374199755489826, -0.009565616026520729, 0.0024863011203706264, -0.020497748628258705, -0.007618329953402281, 0.023139681667089462, 0.002281323540955782, 0.003125906689092517, 0.0032492727041244507, 0.016732236370444298, -0.002776685869321227, -0.00032525943242944777, 0.015137966722249985, 0.004623380955308676, -0.004725869745016098, -0.008814032189548016, -0.007208375260233879, 0.00422860961407423, -0.006540300324559212, -0.020877337083220482, -0.009823735803365707, 0.011091560125350952, 0.012237914837896824, 0.0032530687749385834, 0.016033794730901718, 0.0039666942320764065, 0.01984485797584057, -0.016808154061436653, -0.00513962097465992, -0.005587534513324499, -0.008434443734586239, 0.003262558486312628, -0.004262772388756275, -0.004983989521861076, -0.0024483422748744488, -0.007265313062816858, -0.01148633100092411, -0.016671502962708473, 0.008753297850489616, 0.010400709696114063, -0.0038281443994492292, 0.010803072713315487, -0.01331594493240118, -0.020361097529530525, -0.0039021640550345182, 0.010431076399981976, -0.0024616278242319822, 7.396033470286056e-05, 0.012237914837896824, -0.007132457569241524, 0.01372590009123087, 0.0060885907150805, -0.007447515614330769, -0.01246566791087389, 0.009945204481482506, 0.0009821838466450572, 0.03200685605406761, -0.008335751481354237, -0.016732236370444298, -0.025978999212384224, -0.018797194585204124, -0.013148926198482513, 0.0030936417169868946, 0.002176936948671937, 0.003095539752393961, -0.0123366080224514, -0.020406648516654968, 0.01232901681214571, -0.0005171885713934898, 0.00023059967497829348, 0.010689196176826954, 0.023443350568413734, -0.003180946921929717, 0.00416028406471014, 0.013482963666319847, -0.02465803362429142, 0.012351791374385357, 0.003678207052871585, -0.02904606983065605, 0.010453851893544197, 0.010127406567335129, -0.009580799378454685, -0.007265313062816858, 0.009026600979268551, -0.009709859266877174, 0.009527657181024551, 0.03537759557366371, -0.0020421831868588924, -0.023564819246530533, -0.02139357663691044, -0.0008113692165352404, 0.023564819246530533, 0.0014234548434615135, -0.016367832198739052, 0.012701012194156647, -0.015957877039909363, 0.004915663972496986, -0.002966479863971472, -0.019389351829886436, 0.00031553246662952006, 0.017233293503522873, 0.003025315934792161, 0.006604830268770456, 0.017673615366220474, 0.02549312636256218, -0.003325190395116806, -0.031885385513305664, -0.003917347639799118, 0.012640278786420822, 0.009034193120896816, 0.009626350365579128, 0.024961702525615692, 0.007322251331061125, 0.01085621491074562, 0.00958839152008295, 0.017445862293243408, -0.022198302671313286, -0.005101662129163742, -0.0025356474798172712, -0.007671472150832415, 0.012830072082579136, -0.026814091950654984, 0.012883215211331844, -0.015745308250188828, 0.015373311936855316, 0.006654176861047745, -0.030898459255695343, 0.054569561034440994, -0.009930020198225975, -0.0049308473244309425, -0.0022490585688501596, -0.0030822542030364275, -0.005678635556250811, -0.022456422448158264, 0.019768940284848213, 0.011949428357183933, 0.01563902385532856, 0.0232307817786932, 0.008138365112245083, -0.012154405936598778, 0.008677380159497261, -0.0027615022845566273, 0.004167875740677118, -0.030776990577578545, -0.008631830103695393, 0.0043045273050665855, 0.0012735174968838692, 0.0018286649137735367, -0.010560136288404465, 0.008275017142295837, -0.0012450484791770577, -0.009808552451431751, 0.003302415134385228, -0.006783236749470234, 0.0023306699004024267, -0.010362750850617886, 0.012951540760695934, 0.004839746281504631, -0.004938439000397921, -0.0012289159931242466, -0.000502005044836551, 0.024005141109228134, -0.006973030511289835, 0.0019681635312736034, -0.013741083443164825, 0.010233690962195396, 0.01688407175242901, 0.030367035418748856, 0.006452994886785746, -0.009740226902067661, 0.0009076896822080016, 0.006676951888948679, 0.009041785262525082, -0.0035795143339782953, -0.014409158378839493, -0.007986530661582947, -0.002480607246980071, -0.010469035245478153, -0.002822236390784383, -0.0009124345378950238, -0.05110771954059601, -0.030032997950911522, 0.012647869996726513, -0.008373710326850414, -0.027512533590197563, -0.007417148444801569, 0.023443350568413734, -0.010400709696114063, 0.020907703787088394, -0.0011349678970873356, 0.0040350197814404964, 0.02112027257680893, 0.017779899761080742, 0.013277986086905003, -0.02831725962460041, 0.015509963035583496, -0.00032431044382974505, 0.0186149924993515, 0.02253234013915062, 0.0007259619305841625, 0.01875164359807968, -0.011372454464435577, -0.024764318019151688, 0.005120641551911831, 0.00038338382728397846, 0.017430678009986877, 0.021181007847189903, -0.01147873979061842, 0.023018212988972664, -0.00858627911657095, 0.008199099451303482, 0.004460158292204142, 0.00704894820228219, -0.011987387202680111, 0.01888829655945301, -0.01388532668352127, 4.2970539652742445e-05, 0.004915663972496986, -0.0017138395924121141, -2.741633215919137e-05, 0.0017565431771799922, -0.011752042919397354, 0.011220620013773441, 0.0192982517182827, 0.011061192490160465, 0.023276332765817642, 0.002854501362890005, 0.01049940288066864, 0.004365261178463697, -0.008350934833288193, 0.012564361095428467, 0.008555912412703037, 0.003691492835059762, -0.027011478319764137, 0.002759604249149561, -0.0009641533833928406, -0.0006974928546696901, -0.0030120303854346275, 0.004361465573310852, 0.01071956381201744, 0.0022129977587610483, 0.01563902385532856, -0.007033764384686947, 0.01069678831845522, -0.013520922511816025, -0.018554259091615677, 0.009876878000795841, -0.03437548503279686, -0.0011131416540592909, 0.015464412979781628, -0.003220803802832961, 0.0048093791119754314, 0.017248475924134254, -0.004441178869456053, 0.012943948619067669, -0.006270792800933123, -0.0024787092115730047, -0.0009005723986774683, -0.009413780644536018, -0.0004645207372959703, 0.003110723104327917, -0.01381700113415718, 0.0003990418335888535, -0.004623380955308676, -0.006692135240882635, 0.03243199363350868, -0.01970820687711239, -0.00043747510062530637, 0.009466922841966152, -0.003072764491662383, -0.01815948635339737, 0.009117702022194862, 0.006452994886785746, -0.006821195129305124, -0.002782379509881139, -0.0009143324568867683, 0.0015695961192250252, 0.00036559064756147563, -0.006122753489762545, -0.0017840632935985923, 0.014409158378839493, -0.006612421944737434, 0.0019188170554116368, 0.005621697288006544, -0.010681604966521263, -0.004786604084074497, 0.009003826417028904, 0.014181405305862427, -0.012807297520339489, -0.012905989773571491, 0.006418832112103701, -0.0034124956000596285, -0.02452138066291809, 0.016792969778180122, -0.005424311850219965, 0.02731514908373356, 0.007781552616506815, 0.03650117665529251, -0.010780297219753265, -0.008183916099369526, -0.005128233227878809, 0.015745308250188828, -0.007910612970590591, -0.009702268056571484, -0.012738971039652824, 0.017415495589375496, -0.024855418130755424, -0.009003826417028904, -0.013126150704920292, 0.010658829472959042, -0.020254813134670258, 0.0014500259421765804, 0.007174212019890547, -0.006399852689355612, 0.019070498645305634, 0.004555055405944586, 0.019541187211871147, -0.012890806421637535, 0.011706491932272911, 0.021894631907343864, 0.008965867571532726, -0.02619156800210476, 0.006836378946900368, 0.001725227222777903, -0.0025204638950526714, -0.004801787436008453, -0.01219995692372322, 0.00803967285901308, -0.02818060852587223, 0.005337006412446499, -0.013490555807948112, 0.01759769767522812, -0.0036611256655305624, -0.005355985835194588, 0.011410413309931755, 0.005151008255779743, -0.00018801465921569616, 0.017248475924134254, -0.009353047236800194, 0.0016749318456277251, -0.002640034072101116, -0.010749930515885353, -0.02957749180495739, -0.0186149924993515, -0.01620081253349781, 0.005299047566950321, -0.024566931650042534, -0.020512932911515236, 0.0019643676932901144, -0.010871398262679577, 0.026297852396965027, 0.005560963414609432, -0.017233293503522873, -0.014037162065505981, 0.015806041657924652, 0.007352618500590324, 0.022167935967445374, 0.006843970622867346, 0.007086907047778368, 0.004095754120498896, -0.016717052087187767, -0.011152293533086777, -0.012708604335784912, 0.0012611809652298689, -0.0019283067667856812, -0.004395628347992897, -0.01914641633629799, 0.023625552654266357, -0.007261517457664013, -0.008358526043593884, 0.01106878463178873, -0.0024198731407523155, 0.010339975357055664, 0.000613509037066251, 0.009952795691788197, -0.0197385735809803, -0.009580799378454685, 0.006073406897485256, 0.015623839572072029, -0.0009684237302280962, -0.015897143632173538, 0.005344598088413477, -0.01846315711736679, 0.018675725907087326, 0.005443291272968054, -0.0192982517182827, 0.03001781366765499, -0.008092815056443214, 0.012776929885149002, 0.0009527657530270517, 0.015016498975455761, 0.010157773271203041, 0.01803801953792572, -0.0009840817656368017, 0.006213854532688856, -0.0035301679745316505, -0.006335322745144367, -0.011083967983722687, -0.017218109220266342, 0.014393975026905537, 0.003706676186993718, 0.00010539496724959463, 0.0025242597330361605, 0.0011140905553475022, -0.024582115933299065, -0.003691492835059762, 0.021150639280676842, -0.009763001464307308, 0.008684972301125526, 0.015175925567746162, -0.013589248061180115, -0.008814032189548016, -0.0010922643123194575, -0.006642789114266634, 0.016656318679451942, 0.003496004967018962, 0.010431076399981976, 0.012913581915199757, 0.0071438453160226345, 0.0040084486827254295, 0.010043896734714508, 0.018812378868460655, 0.000613509037066251, -0.014629319310188293, -0.003921143244951963, -0.011448372155427933, -0.0037047783844172955, 0.02957749180495739, 0.015532738529145718, -0.02789212204515934, -0.007371597923338413, 0.006118957418948412, -0.0012127835070714355, 0.01635264791548252, -0.017795082181692123, -0.006191079504787922, -0.005932959727942944, 0.010264057666063309, -0.005690023303031921, 0.005344598088413477, 0.0007862215279601514, 0.0064454032108187675, -0.012792113237082958, -0.0054888417944312096, 0.016580400988459587, 0.012086080387234688, 0.01444711722433567, 0.009231578558683395, 0.017795082181692123, -0.016792969778180122, -0.024354362860322, 0.0029266229830682278, -0.00520794652402401, -0.00015847796748857945, 0.005895000882446766, 0.01676260307431221, 0.009846511296927929, 0.015153151005506516, 0.018250588327646255, 0.031247679144144058, -0.0026134629733860493, -0.029258638620376587, 0.02904606983065605, -0.01688407175242901, 0.003277741838246584, -0.005310435313731432, -0.009899653494358063, -0.005029540043324232, 0.00018469325732439756, 0.012587136588990688, -0.006927479989826679, -0.014887439087033272, -0.0017527473391965032, 0.033312637358903885, 0.0058532459661364555, -0.008221874944865704, -0.00880644004791975, 0.020512932911515236, 0.013019866310060024, 0.011774818412959576, 0.015335353091359138, -0.0037047783844172955, -0.009459331631660461, 0.02452138066291809, -0.005955734755843878, 0.01888829655945301, -0.001970061333850026, 0.00767906429246068, 0.009246761910617352, -0.0034599441569298506, -0.007382985670119524, -0.005507821217179298, 0.0017973489593714476, 0.012792113237082958, -0.0025641166139394045, 0.004091958049684763, 0.01703590713441372, 0.02547794207930565, 0.002154161687940359, -0.00014697170990984887, -0.009876878000795841, 0.007754981517791748, 0.010749930515885353, 0.0008844399126246572, 0.0023610370699316263, -0.006957847159355879, 0.002674197079613805, 0.008487586863338947, 0.04719037190079689, 0.0031391922384500504, 0.016140079125761986, -0.007113478146493435, 0.004114733077585697, 0.00124220154248178, -0.004076774697750807, -0.01303504966199398, -0.00917084515094757, 0.011979795061051846, -0.021196190267801285, -0.005621697288006544, 0.005788716021925211, 0.0016749318456277251, 0.02338261716067791, 0.010241283103823662, 0.010803072713315487, -0.03291786462068558, -0.007971346378326416, -0.00117956951726228, -0.007462698966264725, 0.018979396671056747, -0.007584167178720236, -0.0182961393147707, -0.01676260307431221, 0.009831327944993973, -0.004334894474595785, -0.006039244122803211, 0.009178436361253262, -0.004050203133374453, -0.014674870297312737, 0.01401438657194376, -0.008996234275400639, -0.006802216172218323, -0.005337006412446499, 0.004095754120498896, 0.007310863584280014, 0.003055682871490717, -0.02156059443950653, -0.001981449080631137, 0.013703124597668648, -0.005116845481097698, 0.005276272539049387, -0.015684572979807854, -0.010734747163951397, -0.010172956623136997, 0.0031562738586217165, 0.022031284868717194, -0.0014206079067662358, -0.0020687542855739594, -0.0002279900072608143, -0.020892519503831863, 0.017536962404847145, -0.006304955575615168, -0.005010560620576143, -0.0037389411590993404, -0.0007947622798383236, -0.0048093791119754314, -0.0021655492018908262, 0.025538677349686623, -0.030761806294322014, -0.004585422575473785, 0.0025717082899063826, 0.00700719328597188, -0.00845721922814846, -0.011402822099626064, 0.0038072671741247177, -0.0013494351878762245, 0.008851991035044193, -0.0006452995003201067, -0.006206262856721878, -0.017931735143065453, -0.013612023554742336, -0.005439495202153921, 0.003410597564652562, 0.018949029967188835, 5.017678267904557e-05, -0.02760363556444645, 0.015669390559196472, 0.010833440348505974, 0.031794287264347076, -0.016109712421894073, -0.023063763976097107, -0.030959192663431168, -0.00241417926736176, 0.00302911177277565, 0.0007212170748971403, -0.014257322996854782, 0.006673155818134546, 0.009808552451431751, -0.003184742759913206, -0.00499917333945632, 0.007557596080005169, 0.00030794073245488107, 0.0006206262623891234, -0.021788347512483597, 0.007625921629369259, -0.0030423973221331835, -0.015115192160010338, -0.004980193916708231, 0.004805583506822586, -0.031612083315849304, -0.0019681635312736034, -0.00362886069342494, -0.003002540674060583, 0.008373710326850414, 0.00795616302639246, 0.003936327062547207, 0.009800960309803486, -0.01521388441324234, -0.0036839009262621403, -0.012754155322909355, -0.011949428357183933, -0.0068819294683635235, -0.012845256365835667, 0.013277986086905003, -0.008631830103695393, -0.015472004190087318, 0.02537165768444538, -0.01875164359807968, -0.008783664554357529, -0.0057052066549658775, -0.016033794730901718, -0.02988116256892681, 0.006118957418948412, 0.00851795356720686, 0.036106403917074203, -0.018630176782608032, 0.012860439717769623, 0.013756266795098782, 0.0037085742224007845, -0.053020842373371124, -0.0007458903128281236, 0.033221535384655, -0.0036801050882786512, 0.019632289186120033, -0.01069678831845522, -0.01394606102257967, -0.01106878463178873, -0.014765971340239048, 0.007447515614330769, -0.029683778062462807, -0.012541585601866245, 0.030776990577578545, -0.003799675265327096, -0.01479633804410696, -1.4227133760869037e-05, -0.004805583506822586, 0.002192120300605893, -0.035833101719617844, -0.004247589036822319, -0.0031486819498240948, -0.026965927332639694, -0.008631830103695393, 0.011577432043850422, -0.019328618422150612, 0.031490616500377655, 0.012852847576141357, -0.021484676748514175, 0.00048065322334878147, -0.025584226474165916, -0.013991612009704113, -0.02450619824230671, -0.012723787687718868, 0.0058532459661364555, 0.002459729788824916, -0.0005086478195153177, -0.007504453416913748, 0.025417208671569824, -0.009466922841966152, 0.00290384772233665, 0.0049232556484639645, -0.009315088391304016, 0.0013807511422783136, 0.002725441474467516, -0.017127007246017456, -0.029410474002361298, -0.01576049067080021, 0.03294823318719864, -0.01832650601863861, -0.009595983661711216, 0.02846909500658512, -0.004080570302903652, 0.003936327062547207, -0.005393944680690765, 0.01691443845629692, -0.004239997360855341, -0.009110110811889172, 0.012761746533215046, 0.013012275099754333, -0.008070039562880993, 0.012609911151230335, 0.018812378868460655, -0.0020023263059556484, 0.01621599681675434, 0.004839746281504631, -0.005029540043324232, -0.005128233227878809, 0.00256981048732996, -0.009641533717513084, -0.004832154605537653, -0.002455933950841427, -0.01943490281701088, -0.026981111615896225, -0.006062019616365433, 0.00873811449855566, 0.020497748628258705, -0.00999834667891264, -0.0015306883724406362, 0.023428168147802353, -0.014849480241537094, 0.002133284229785204, -0.01076511386781931, -0.015973061323165894, 0.02450619824230671, -0.003721859771758318, 0.016671502962708473, -0.014052345417439938, 0.01916159875690937, 0.007003397680819035, 0.004448770545423031, -0.0010808766819536686, -0.0025641166139394045, 0.014287690632045269, -0.017218109220266342, 0.018554259091615677, -0.00873811449855566, -0.004813175182789564, -0.0035054946783930063, 0.0005437597283162177, 0.00195487798191607, 0.01041589304804802, 0.025310924276709557, -0.011585024185478687, -0.0014158630510792136, -0.011091560125350952, -0.01520629320293665, -0.017855817452073097, -0.008821623399853706, -0.006912296637892723, 0.010954908095300198, -0.006525116972625256, -0.0019681635312736034, -0.006824991200119257, -0.029076436534523964, -0.001320017036050558, -0.018053201958537102, 0.008730522356927395, 0.042027976363897324, -0.00042347778799012303, 0.007067927625030279, 0.02801359072327614, -0.015532738529145718, -0.0020763459615409374, -0.018387239426374435, 0.0005916826776228845, 0.019935958087444305, 0.0037579205818474293, 0.00739816902205348, -0.0054015363566577435, -0.009497290477156639, 0.006065815221518278, -0.001342792296782136, 0.01576049067080021, 0.008009305223822594, -0.0076562887988984585, -0.002309792675077915, 0.01113711018115282, -0.0019510820275172591, 0.02449101395905018, 0.021590963006019592, 0.002129488391801715, 0.013209660537540913, 0.017294026911258698, -0.018220221623778343, -0.0020213057287037373, 0.018690910190343857, -0.00923917070031166, -0.0016531054861843586, 0.004638564772903919, 0.007272905204445124, -0.006468178704380989, -0.018250588327646255, -0.006194875109940767, 0.008183916099369526, -0.002881072461605072, -0.018964214250445366, -0.007644901052117348, 8.463625272270292e-05, -0.016823338344693184, 0.007512045558542013, -0.011425596661865711, -0.007568983361124992, 0.00929990503937006, 0.0034561483189463615, 0.021196190267801285, -0.008138365112245083, -0.017096640542149544, 0.013179293833673, -0.002102917293086648, -0.007561391685158014, 0.015380903147161007, 0.012708604335784912, -0.028226159512996674, 0.0123366080224514, 0.017233293503522873, -0.009907245635986328, 0.0059671225026249886, -0.020072611048817635, 0.0069160922430455685, -0.0007079315255396068, -0.007625921629369259, -0.002628646558150649, 0.014492667280137539, 0.009117702022194862, 0.0043310984037816525, -0.011706491932272911, 0.016686685383319855, -0.0002820812806021422, -0.0024825050495564938, 0.020619217306375504, -0.018250588327646255, -0.0004042611690238118, 0.025660144165158272, 0.016383016481995583, 0.003129702527076006, -0.0075082494877278805, -0.002810848644003272, -0.013156518340110779, 0.015046865679323673, -0.006194875109940767, 0.012344200164079666, -0.004524688236415386, -0.00942896492779255, -0.016944805160164833, 0.011782409623265266, 0.002562218578532338, 0.01204812154173851, -0.006050631869584322, 0.004665135871618986, -0.025523493066430092, 0.00718939583748579, -0.010104631073772907, 0.018129119649529457, 0.009535249322652817, -0.012215140275657177, -0.0027577064465731382, -0.005674839951097965, -0.006942663341760635, -0.016944805160164833, 0.01633746549487114, 0.021515045315027237, 0.009823735803365707, -0.015016498975455761, 0.015957877039909363, -0.023974774405360222, -0.005724186077713966, -0.0041223252192139626, 0.02058885060250759, -0.007587962783873081, -0.006020264700055122, -0.015259435400366783, -0.008434443734586239, 0.005052315536886454, -0.02069513499736786, 0.0018485932378098369, -0.0121164470911026, -0.0007976091583259404, -0.03674411401152611, 0.002036489313468337, -0.0015411271015182137, 0.011258577927947044, -0.012716196477413177, -0.019085681065917015, 0.0010210915934294462, 0.007014784961938858, 0.020345913246273994, 0.020755868405103683, 0.014424341730773449, -0.017658431082963943, -0.013065417297184467, -0.01218477264046669, 0.002351547358557582, 0.016109712421894073, 0.0036535339895635843, -0.004714482463896275, 0.0025470349937677383, 0.0013370985398069024, -0.018630176782608032, -0.014318057335913181, 0.0044867293909192085, -0.008396484889090061, 0.00535978190600872, -0.01253399346023798, -0.007682859897613525, 0.010674012824892998, -0.02324596606194973, -0.006327731069177389, 0.0004426944360602647, 0.006483362056314945, 0.005625493358820677, -0.009231578558683395, 0.04433587193489075, 0.018280955031514168, 0.011600207537412643, -0.013407045975327492, -0.010954908095300198, 0.018630176782608032, 0.010309608653187752, -0.007652492728084326, -0.009861694648861885, -0.0010694890515878797, 0.003566228784620762, 0.008479994721710682, 0.012139222584664822, 0.013900510035455227, 0.007796736434102058, 0.00034661125391721725, -0.0076904515735805035, -0.014021978713572025, -0.017369944602251053, -0.004695503041148186, 0.010203324258327484, 9.976045839721337e-05, 0.007603146601468325, -0.034557685256004333, 0.004129916895180941, -0.007128661498427391, 0.012374566867947578, -0.003230293281376362, -0.0063391188159585, -0.008312975987792015, 0.0031638655345886946, -0.009671900421380997, -0.013574064709246159, 0.01762806437909603, 0.011182661168277264, 0.023306699469685555, -0.02436954528093338, 0.011676125228404999, -0.005143416579812765, 0.02720886468887329, -0.003985673189163208, -0.019632289186120033, 0.020679950714111328, 0.0036857989616692066, -0.00971745140850544, 0.01556310523301363, 0.0040008570067584515, -0.0037370433565229177, 0.030093731358647346, -0.0020972234196960926, -0.002195916138589382, -0.006210058927536011, -0.007933388464152813, -0.0028127466794103384, 0.005280068144202232, -0.009132886305451393, 0.013050233945250511, 0.0065516880713403225, 0.005314231384545565, 0.019753756001591682, -6.280994421103969e-05, 0.0128983985632658, -0.011721675284206867, 0.004016040358692408, 0.010385526344180107, -0.011250986717641354, -0.009960387833416462, -0.010582911781966686, -0.033889610320329666, 0.0292890053242445, 0.006976826582103968, -0.006821195129305124, -0.05435699224472046, 0.011592615395784378, -0.004737257491797209, 0.01859981007874012, 0.0043045273050665855, 0.029759693890810013, 0.024885784834623337, 0.017992468550801277, -0.0008023540140129626, -0.0008033029735088348, -0.006992009934037924, -0.014720420353114605, -0.010605687275528908, 0.018083570525050163, 0.0010865704389289021, -0.015100008808076382, -0.0012308139121159911, -0.018083570525050163, 0.007337435148656368, 0.008312975987792015, 0.00127731345128268, -0.00499917333945632, -0.008821623399853706, -0.004350077826529741, -0.006942663341760635, 0.02493133582174778, -0.013460188172757626, 0.002281323540955782, 0.002336363773792982, -0.006680747959762812, 0.009945204481482506, 0.026677440851926804, -0.003251170739531517, 0.007686655968427658, 0.0035054946783930063, -0.011311721056699753, 0.0002491045743227005, 0.005997489672154188, -0.03713888302445412, -0.028696848079562187, -0.0002806578413583338, -0.010423485189676285, 0.002125692553818226, -0.0020194079261273146, -0.0038755929563194513, -0.006153120659291744, 0.005784920416772366, 0.016792969778180122, -0.016443749889731407, 0.005989897530525923, -0.011159885674715042, -0.0018058896530419588, 0.012480851262807846, 0.003499800805002451, 8.914385398384184e-05, -0.002355343196541071, 0.010643646121025085, -0.009360638447105885, 0.0010059080086648464, 0.01231383252888918, 0.011433188803493977, 0.007971346378326416, -0.008252241648733616, -0.022911928594112396, 0.007250129710882902, 0.020072611048817635, -0.0036117793060839176, 0.022016100585460663, 0.004346281755715609, -0.010992866940796375, -0.0046613398008048534, -0.004164079669862986, 0.007732206489890814, -0.011182661168277264, 0.016261547803878784, 0.002600177424028516, 0.010514586232602596, -0.025174273177981377, 0.00817632395774126, 0.01231383252888918, -0.01219995692372322, 0.020634399726986885, 0.014021978713572025, -0.0041488963179290295, 0.001744206645525992, 0.015092416666448116, -0.0031372944358736277, -0.007587962783873081, 0.001658799359574914, 0.011281353421509266, -0.0007605993305332959, -0.00810799840837717, 0.004209630191326141, -0.002277527702972293, -6.814789958298206e-05, 0.01458376832306385, -0.01507723331451416, -0.011744450777769089, -0.0069502550177276134, 0.016018610447645187, -0.0013114763423800468, 0.014887439087033272, 0.005120641551911831, 0.007322251331061125, 0.0032416810281574726, 0.004942235071212053, 0.014204180799424648, -0.002006122376769781, -0.02506798692047596, -0.011053601279854774, 0.009026600979268551, -0.0024008937180042267, -0.01400679536163807, 0.01049940288066864, 0.004433587193489075, -0.014523034915328026, 0.009337862953543663, -0.020649584010243416, 0.002421771176159382, 6.245407712412998e-05, 0.017643246799707413, -0.0036649215035140514, 0.004699298646301031, 0.006206262856721878, 0.014242139644920826, 0.016838520765304565, -0.00015136069850996137, 0.013118559494614601, 0.019237516447901726, -0.002044080989435315, -0.0056672478094697, 0.006380873266607523, 0.008836807683110237, -0.011774818412959576, 0.0006244221585802734, 0.004255180712789297, 0.015236659906804562, 0.0008554963278584182, -0.007701839320361614, -0.009876878000795841, 0.012382159009575844, -0.001487984787672758, 0.0017005540430545807, -0.00194728618953377, -0.010939724743366241, 0.0009503933251835406, -0.03398071229457855, 0.018630176782608032, 0.0033859245013445616, 0.0001871842978289351, 0.02394440770149231, 0.0035320657771080732, 0.017096640542149544, 0.02900051884353161, -0.028484279289841652, 0.0011862122919410467, 0.015259435400366783, 0.017992468550801277, -0.014067528769373894, -0.00041351362597197294, 0.010924541391432285, -0.012420117855072021, 0.0009138579480350018, -0.00742853619158268, 0.007159028667956591, 0.0029683776665478945, 0.025978999212384224, -0.014128263108432293, 0.003843327984213829, -0.02562977746129036, -0.017294026911258698, -0.016003428027033806, 0.016109712421894073, 0.004870113451033831, -0.026722991839051247, -0.01592751033604145, 0.0017034008633345366, 0.01957155391573906, 0.015836408361792564, 0.002685584593564272, -0.01119784452021122, 0.009049376472830772, -0.007720818743109703, 0.010264057666063309, -0.019116049632430077, 0.025007253512740135, 0.006225242279469967, -0.011569840833544731, 0.0036895947996526957, 0.0014234548434615135, 0.003670615376904607, -0.012708604335784912, -0.019799306988716125, 0.006236630026251078, 0.01843279041349888, -0.01620081253349781, 0.012723787687718868, 0.00031149934511631727, 0.004023632034659386, 0.008153549395501614, -0.02198573388159275, -0.009383413940668106, 0.002140875905752182, 0.01762806437909603, -0.015547921881079674, -0.013984019868075848, 0.025751246139407158, 0.004752440843731165, 0.004031224176287651, 0.013156518340110779, 0.00460819760337472, -0.003080356167629361, -0.001183365355245769, 0.011380046606063843, 0.003921143244951963, 0.010180548764765263, -0.0018818072276189923, 0.01240493357181549, -0.000498209148645401, 0.009747818112373352, -0.0026666054036468267, -0.0067338901571929455, -0.011440780945122242, 0.014356016181409359, -0.00609997846186161, 0.02156059443950653, -0.0024445464368909597, 0.0008033029735088348, -0.013968836516141891, 0.011926652863621712, 0.004372853320091963, -0.0035453513264656067, -0.00023297210282180458, -0.025994181632995605, -0.0018799093086272478, -0.0010846725199371576, -0.008153549395501614, -0.022304587066173553, 0.018098752945661545, -0.001992836594581604, -0.0017698287265375257, 0.015988243743777275, 0.038657236844301224, -0.019799306988716125, -0.005951939150691032, 0.0009665258112363517, 0.02297266200184822, -0.00242936285212636, -0.011455964297056198, 0.007481678389012814, 0.03929494321346283, 0.007557596080005169, 0.0023686287458986044, 0.004991581663489342, -0.008350934833288193, -0.00534839415922761, -0.006544095929712057, -0.006270792800933123, -0.011228211224079132, 0.019465269520878792, -0.012351791374385357, -0.010833440348505974, 0.0030386014841496944, -0.020330730825662613, -0.009550432674586773, 0.0004704518069047481, -0.006350506097078323, 0.004558851011097431, 0.005325618665665388, -0.0013835980789735913, -0.015031682327389717, 0.0026229526847600937, 0.02326114848256111, -0.005230722017586231, 0.04919459670782089, 0.0027690939605236053, 0.03637970983982086, -0.004372853320091963, 0.010871398262679577, -0.023139681667089462, -0.008836807683110237, -0.017263660207390785, -0.000967474770732224, -0.01747622899711132, 0.0017337679164484143, -0.0176128800958395, 0.018250588327646255, 0.019404536113142967, 0.0003499326412566006, -0.0035111885517835617, 0.005921571981161833, -0.004103345796465874, 0.010894173756241798, 0.010795481503009796, -0.015122783370316029, 0.01703590713441372, -0.018144303932785988, -0.014409158378839493, 0.013255210593342781, 0.010689196176826954, 0.023898856714367867, -0.007227354217320681, -0.0025185660924762487, 0.0053673735819756985, 0.018250588327646255, 0.001911225263029337, -0.021363209933042526, 0.009163253009319305, 0.011881102807819843, -0.01437879167497158, 0.0016246363520622253, 0.013718307949602604, 0.01006667222827673, -0.00852554477751255, -0.030503686517477036, -0.013710716739296913, 0.006285976152867079, 0.002184528624638915, -0.020391464233398438, 0.0006917990394867957, 0.002677992917597294, -0.0008920316467992961, -0.002013714052736759, 0.0036535339895635843, -0.0036155751440674067, -0.005898796487599611, -0.01416622195392847, -0.0006225242395885289, 0.008070039562880993, 0.010271649807691574, -0.009125294163823128, 0.0064454032108187675, -0.01514555886387825, -0.006904704496264458, -0.004312118981033564, -0.00764869712293148, 0.0001467344700358808, 0.02353445254266262, -0.009413780644536018, 0.010393117554485798, -0.01664113625884056, 0.025386841967701912, -0.011471147648990154, -0.009542840532958508, 0.012139222584664822, -0.014158629812300205, -0.020786235108971596, -0.01563902385532856, -0.022228669375181198, -0.01790136657655239, -0.015730123966932297, 0.002602075459435582, -0.01232901681214571, 0.0013209660537540913, -0.010825848206877708, -0.007633513305336237, -0.0027937672566622496, -0.013338720425963402, -0.0016265343874692917, -0.002818440552800894, 0.004543667659163475, -0.006980622187256813, 0.00795616302639246, 0.01021850761026144, -0.026130834594368935, -0.025386841967701912, 0.004133712500333786, 0.006240425631403923, 0.014841889031231403, -0.0012526401551440358, -0.0004948877613060176, -0.03045813739299774, 0.00682878727093339, -0.005898796487599611, 0.02157577872276306, 0.006468178704380989, -0.012321424670517445, 0.009854103438556194, 0.002966479863971472, -0.03677447885274887, 0.003048091195523739, -0.015623839572072029, 0.00026594879454933107, 0.014462300576269627, -0.00383953214623034, -0.0047752163372933865, -0.011380046606063843, 0.0038566135335713625, 0.015836408361792564, 0.03577236831188202, 0.013900510035455227, 0.00914806965738535, 0.024764318019151688, 0.010932132601737976, -0.008442035876214504, 0.00640744436532259, 0.03224979341030121, -0.007720818743109703, 0.003676309250295162, 0.01703590713441372, 0.005029540043324232, 0.016732236370444298, -0.002907643560320139, 0.004680319223552942, 0.007345026824623346, -0.0338592454791069, -0.013908102177083492, 0.011979795061051846, 0.014143446460366249, 0.010560136288404465, 0.009269537404179573, -0.008647013455629349, 0.02099880576133728, -0.0026495237834751606, -0.002362934872508049, 0.022046467289328575, 0.009747818112373352, 0.008070039562880993, -0.01875164359807968, -0.00021897479018662125, -0.024050692096352577, 0.001837205607444048, 0.0073336390778422356, 0.00810799840837717, -0.02704184502363205, -0.029774878174066544, -0.01941971853375435, 0.010590503923594952, -0.019191967323422432, 0.004224814008921385, -0.019480453804135323, 0.008153549395501614, -0.021879449486732483, 0.009922428987920284, -0.002725441474467516, -0.01941971853375435, 0.0018438483821228147, 0.016868887469172478, 0.006779440678656101, -0.001097958069294691, -0.0007477882318198681, 0.02282082661986351, 0.009861694648861885, -0.025978999212384224, -0.004870113451033831, -0.0002877750957850367, 0.005014356691390276, 0.0031391922384500504, -0.0034086997620761395, 0.02295747958123684, -0.00482835853472352, 0.0186149924993515, -0.011509106494486332, -0.01028683315962553, 0.01565420627593994, 0.009474514983594418, 0.0057317777536809444, 0.012852847576141357, -0.015024091117084026, 0.005887409206479788, -0.00520794652402401, 0.015730123966932297, 0.0029399085324257612, -0.0010732848895713687, 0.012366974726319313, 0.023838123306632042, -0.01169890072196722, 0.0003138717729598284, -0.01945008710026741, 0.026282669976353645, -0.023321883752942085, 0.003750328905880451, -0.0231093131005764, 0.009466922841966152, 0.005257293116301298, 0.014424341730773449, -0.020194077864289284, 0.005545780062675476], "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f": [-0.040901944041252136, 0.006835355423390865, -0.013993930071592331, 0.052949208766222, 0.01155509240925312, -0.0027620564214885235, 0.006868411786854267, 0.01898179203271866, -0.023697856813669205, 0.014978279359638691, 0.04104886204004288, 0.01802682690322399, 0.019114019349217415, 0.014912166632711887, -0.008315552957355976, 0.02385946735739708, -0.008095175959169865, -0.006747204344719648, 0.008726922795176506, -0.040255505591630936, 0.018967101350426674, -0.006075054872781038, -0.006897795479744673, -0.01474321074783802, -0.0005936401430517435, 0.01738038659095764, -0.013656018301844597, 0.0034746082965284586, -0.043399546295404434, 0.004686681088060141, 0.01920216903090477, 0.00032023509265854955, -0.002253353362902999, 0.020083677023649216, 0.031881183385849, -0.050099004060029984, 0.054800376296043396, 0.007595655508339405, -0.013090385124087334, 0.016322579234838486, -0.0023727240040898323, 0.006379909813404083, 0.028384538367390633, -0.008190672844648361, -0.005145799368619919, -0.03138166293501854, -0.01099680457264185, -0.005799584090709686, -0.021112101152539253, -0.043722767382860184, -0.01661641336977482, -0.03158734738826752, -0.02540210448205471, 0.013553176075220108, 0.035054609179496765, -0.06593675166368484, 0.023903541266918182, 0.02734142169356346, -0.007889491505920887, -0.01898179203271866, -0.002398434793576598, -0.034878309816122055, -0.004914403893053532, -0.022831041365861893, 0.009909612126648426, 0.022992651909589767, 0.0065562110394239426, -0.009020758792757988, -0.04187159985303879, 0.0159405916929245, -0.020627273246645927, 0.021023951470851898, -0.012392524629831314, -0.016748640686273575, -0.007221014704555273, 0.01209134329110384, 0.013487063348293304, 0.010798465460538864, 0.01955477148294449, -0.022551897913217545, 0.01012264285236597, -0.015022355131804943, 0.04904119297862053, 0.016249120235443115, 0.039285846054553986, 0.01827658712863922, 0.0075111775659024715, -0.03722899407148361, -0.0204215869307518, -0.035377830266952515, -0.012230915017426014, 0.017262853682041168, -0.0003165621601510793, -0.019466621801257133, 0.0033405458088964224, 0.051538798958063126, 0.008469817228615284, 0.006949216593056917, -0.01336218323558569, -0.04381091892719269, -0.016293194144964218, -0.010041838511824608, 0.022625356912612915, -0.00979942362755537, 0.014824016019701958, -0.03593611717224121, -0.009792078286409378, 0.003911688923835754, -0.017865216359496117, 0.04627913609147072, 0.008359628729522228, -0.030030017718672752, -0.008418395183980465, -0.012407216243445873, -0.023830082267522812, -0.01465506013482809, -0.06329222768545151, -0.006221972871571779, -0.03364419937133789, -0.008866495452821255, 0.02034812793135643, -0.014280419796705246, 0.020935799926519394, -0.030617689713835716, -0.02722388692200184, -0.009439474903047085, 0.018335353583097458, 0.03728776425123215, 0.04912934452295303, -0.001662008697167039, -0.017865216359496117, -0.006453368812799454, 0.027782173827290535, -0.0018171907868236303, -0.006659053731709719, 0.029971251264214516, 0.02787032537162304, 0.04378153383731842, 0.01130533218383789, 0.006174224428832531, -0.05306674540042877, -0.0062476834282279015, -0.0056893955916166306, 0.04510379582643509, 0.02600446715950966, 0.014067389070987701, -0.01655764691531658, 0.032615773379802704, 0.007287127897143364, 0.0033534010872244835, -0.08250909298658371, -0.02640114538371563, -0.01216480229049921, -0.025313952937722206, 0.062351956963539124, -0.03937399759888649, -0.012642284855246544, 0.0048813470639288425, 0.014912166632711887, 0.058914076536893845, 0.04889427497982979, -0.030147552490234375, 0.0057555087842047215, 0.03361481428146362, 0.036993928253650665, 0.036847010254859924, 0.03605365380644798, 0.011746086180210114, -0.014251035638153553, 0.02020121179521084, 0.03370296582579613, -0.05409517139196396, 0.027561796829104424, 0.014713827520608902, -0.02443244680762291, -0.01551453024148941, 0.055652499198913574, 0.007246725261211395, 0.03296837583184242, -0.003977802116423845, -0.028105393052101135, 0.008535929955542088, 0.0216703899204731, 0.023624397814273834, 0.0433407798409462, 0.020965183153748512, 0.026166077703237534, 0.030265087261795998, 0.003889651270583272, 0.009116255678236485, 0.0029659050051122904, 0.04886489361524582, -0.001322261057794094, 0.006508463062345982, -0.026841899380087852, -0.02980964072048664, 0.026312995702028275, 0.022184602916240692, -0.02447652257978916, 0.013296069577336311, 0.010247522965073586, -0.02142062969505787, -0.03073522448539734, 0.022581281140446663, -0.011511017568409443, 0.03711146116256714, 4.918306149193086e-05, -0.018923025578260422, 0.05115681141614914, -0.018496964126825333, 0.04099009186029434, -0.043546464294195175, 0.012539442628622055, -0.03020631894469261, 0.03202810138463974, 0.010475246235728264, 0.0066443621180951595, 0.018188435584306717, -0.03070584125816822, -0.017115935683250427, 0.023007342591881752, 0.01180485263466835, -0.021450012922286987, -0.008609388954937458, -0.02886936627328396, 0.03311529383063316, -0.02500542625784874, 0.021112101152539253, -0.04912934452295303, 0.008719577454030514, 0.024549981579184532, -0.0010201612021774054, 0.008572659455239773, 0.005101724062114954, -0.008440433070063591, 0.04228297248482704, 0.043399546295404434, -0.03396741673350334, -0.007852762006223202, 0.009219097904860973, 0.010240177623927593, 0.018790798261761665, -0.0010752553353086114, -0.02239028736948967, 0.020965183153748512, -0.002444346435368061, -0.040608108043670654, 0.06963908672332764, -0.030000634491443634, -0.001999919768422842, 0.008572659455239773, 0.00018858289695344865, -0.006673745345324278, 0.02629830315709114, -0.040431804955005646, 0.029794950038194656, 0.019569464027881622, -0.020113060250878334, -0.009160330519080162, -0.009997762739658356, 0.01873203180730343, 0.020715422928333282, 0.009013413451611996, 0.018643882125616074, 0.024564672261476517, 0.00965250562876463, 0.03840433806180954, 0.017218777909874916, 0.006592940539121628, 0.0007286209729500115, 0.019716382026672363, 0.009770040400326252, -0.008550621569156647, 0.03173426538705826, -0.006115457508713007, -0.007984987460076809, -0.00023128090833779424, -0.00272349058650434, 0.040255505591630936, -0.008770998567342758, -0.005094378255307674, 0.031146595254540443, 0.0028006224893033504, -0.017115935683250427, 0.0446336567401886, 0.03855125606060028, -0.03887447714805603, -0.031793031841516495, -0.04054934158921242, -0.013119768351316452, 0.007610347121953964, -0.0026114655192941427, -0.01067358534783125, 0.0016923105577006936, 0.012135418131947517, -0.030940908938646317, 0.028472688049077988, 0.019319703802466393, 0.024917274713516235, 0.03023570403456688, -0.02632768638432026, -0.0255049467086792, 0.006989618763327599, -0.018291277810931206, 0.08391950279474258, -0.010387095622718334, 0.03020631894469261, 0.007529542315751314, -0.021376553922891617, 0.02834046259522438, 0.004212870728224516, -0.010034492239356041, -0.01884956657886505, -0.010056530125439167, -0.011650589294731617, 0.012311720289289951, -0.03402618691325188, -0.0338204987347126, -0.011224527843296528, -0.03052954003214836, -0.019363779574632645, 0.011870966292917728, -0.0491587296128273, 0.021846691146492958, 0.038668788969516754, -0.05192078649997711, 0.019833916798233986, -0.01383232045918703, -0.03088214248418808, -0.012186839245259762, -0.04572084918618202, 0.017718298360705376, -0.017101243138313293, 0.008021716959774494, -0.04198913648724556, -0.011488979682326317, -0.04639667272567749, -0.03755221515893936, 0.003955764230340719, -0.043399546295404434, 0.010240177623927593, 0.011452250182628632, -0.017453845590353012, 0.0001993721816688776, -0.007364259567111731, -0.011606513522565365, -0.018790798261761665, 0.02031874470412731, -0.021832000464200974, 0.014574255794286728, 0.0009324695565737784, 0.006897795479744673, 0.035377830266952515, -0.014809324406087399, 0.02973618172109127, -0.0229632668197155, -0.0009806769667193294, 0.0049474602565169334, 0.013560522347688675, -0.02762056514620781, -0.015925901010632515, -0.032586388289928436, -0.00385659490711987, 0.019114019349217415, 0.002203768352046609, 0.025049502030014992, -0.008888532407581806, -0.018041517585515976, -0.02829638682305813, -0.01666048914194107, 0.006736185401678085, 0.005564515478909016, 0.014148193411529064, -0.012701052241027355, -0.028355155140161514, -0.04051995649933815, 0.002042158739641309, -0.015705524012446404, -0.03246885538101196, 0.051039278507232666, -0.01481666974723339, 0.0007479039486497641, 0.029545189812779427, 0.0465729720890522, 0.023727240040898323, 0.010827848687767982, -0.004473649896681309, -0.030500154942274094, -0.014397953636944294, 0.012906737625598907, -0.028898751363158226, 0.007323857396841049, -0.028252311050891876, -0.009336632676422596, -0.04736632853746414, -0.0008117213728837669, -0.018864257261157036, -0.012833278626203537, 0.006324815563857555, -0.01780644990503788, 0.011202489957213402, 0.0013791917590424418, -0.0043671345338225365, 0.0009145638905465603, 0.03910954296588898, -0.02547556348145008, -0.030265087261795998, -0.024123918265104294, 0.03102906048297882, 0.012311720289289951, -0.0061999354511499405, 0.008440433070063591, -0.002971414476633072, 0.04295879229903221, 0.05247907340526581, 0.011283294297754765, -0.01902586780488491, 0.02510826848447323, -0.020304054021835327, -0.025813475251197815, 0.03614180162549019, 0.033556047827005386, 0.020127752795815468, 0.0002658295852597803, 0.04510379582643509, 0.02216991037130356, -0.04554454982280731, 0.03105844371020794, 0.019686998799443245, 0.0068390280939638615, 0.0009742493275552988, 0.05077482387423515, 0.009006067179143429, -0.0453682467341423, 0.013633981347084045, 0.010240177623927593, -0.023257102817296982, -0.012135418131947517, 0.021611623466014862, -0.0027326729614287615, -0.05723921209573746, 0.01544107124209404, -0.009417437016963959, -0.0011817708145827055, -0.03217501938343048, -0.04210666939616203, -0.011011496186256409, 0.02343340404331684, 0.017424462363123894, -0.01604343391954899, 0.00827882345765829, 0.0453682467341423, -0.03199871629476547, -0.016748640686273575, 0.012620246969163418, -0.019260935485363007, 0.018364736810326576, -0.010181410238146782, 0.025313952937722206, -0.06164674833416939, -0.018761415034532547, -0.01201788429170847, 0.042900025844573975, 0.028546147048473358, 0.030676456168293953, -0.015969974920153618, 0.001470097224228084, -0.005200893618166447, 0.0019099327037110925, 0.01586713269352913, 0.011562438681721687, -0.033409129828214645, 0.008837111294269562, 0.04968763142824173, 0.004495687782764435, 0.013112422078847885, -0.002200095448642969, -0.013296069577336311, 0.006651707924902439, 0.008954646065831184, 0.01192973367869854, 0.01898179203271866, 0.04460427537560463, -0.019481312483549118, 0.027414878830313683, 0.005744489841163158, -0.00996103323996067, -0.0023525229189544916, 0.002872244920581579, -0.030823374167084694, 0.03282145783305168, -0.005270679481327534, 0.03984413295984268, 0.0018162725027650595, 0.010115297511219978, -0.02321302704513073, -0.01758607290685177, -0.025784090161323547, 0.005112743005156517, -0.04428105428814888, -0.00385659490711987, -0.01250271312892437, -0.0058363135904073715, -0.02052443102002144, 0.010166718624532223, 0.024065151810646057, -0.03443755581974983, 0.0376109816133976, -0.009006067179143429, -0.011173105798661709, -0.058590859174728394, 0.012803894467651844, -0.02980964072048664, 0.00386026781052351, 0.019789841026067734, 0.0017639329889789224, -0.010717660188674927, -0.014383262023329735, 0.012745128013193607, -0.02206706814467907, 0.005498402286320925, -0.018217818811535835, -0.002416799310594797, -0.014721173793077469, 0.004991535563021898, -0.012363141402602196, -0.016454804688692093, -0.022096451371908188, 0.018144359812140465, -0.030030017718672752, -0.02669498138129711, 0.014412646181881428, -0.028707757592201233, 0.038022350519895554, 0.020333437249064445, 0.04328201338648796, -0.009035450406372547, 0.013141806237399578, 0.014941549859941006, -0.018643882125616074, -0.046778660267591476, 0.009703926742076874, -0.04263557493686676, 8.160829747794196e-05, -0.02017182670533657, 0.022434363141655922, 0.018658572807908058, 0.011760777793824673, 0.013707439415156841, 0.021832000464200974, 0.004752793814986944, -0.004671989008784294, 0.001253393362276256, 0.005502075422555208, -0.03135227784514427, -0.0027859306428581476, 0.03102906048297882, 0.0021817306987941265, -0.0037757898680865765, -0.00972596462816, -0.02020121179521084, 0.00763238500803709, -0.0200983677059412, 0.007004310842603445, 0.010240177623927593, 0.012194185517728329, 0.0029732510447502136, -0.032116252928972244, -0.010012454353272915, 0.015969974920153618, 0.0313228964805603, -0.008286169730126858, 0.029897792264819145, -0.004558127839118242, 0.0071365367621183395, 0.04395783320069313, -0.014735865406692028, 0.018658572807908058, -0.027561796829104424, -0.009417437016963959, 0.02268412336707115, 0.013619288802146912, 0.004308367148041725, 0.003919034730643034, 0.0026500315871089697, 0.01551453024148941, -0.023595014587044716, -0.03808112069964409, -0.0030044710729271173, -0.0027877672109752893, 0.025857549160718918, 0.025607788935303688, -0.03655317425727844, 0.00899137556552887, -6.869559729238972e-05, 0.019892683252692223, 0.010607472620904446, 0.03711146116256714, 0.05233215540647507, 0.01250271312892437, 0.027091659605503082, 0.01176812406629324, 0.02457936480641365, 0.01676333136856556, -0.01862918958067894, 0.04563269764184952, -0.004569146782159805, 0.03661194071173668, 0.010666239075362682, -0.0012579845497384667, 0.008389011956751347, -0.03952091559767723, 0.029280737042427063, -0.006883103400468826, 0.010945383459329605, 0.025695940479636192, 0.02590162493288517, -0.0039447457529604435, 0.012245606631040573, -0.002740018768236041, 0.008418395183980465, -0.008337590843439102, 0.012774511240422726, 0.02286042459309101, -0.029706798493862152, 0.013442987576127052, -0.023477479815483093, -0.008234748616814613, -0.003276269184425473, -0.0024223087821155787, -0.016102202236652374, -0.022022992372512817, -0.002359868725761771, -0.030015327036380768, -0.005652666091918945, -0.02472628280520439, 0.03499584272503853, 0.012656976468861103, 0.0004531498998403549, -0.027973167598247528, 0.01098211295902729, 0.004194505978375673, 0.015294153243303299, 0.04639667272567749, -0.008359628729522228, 0.004455285146832466, 0.006266048178076744, 0.009116255678236485, 0.034084953367710114, 0.023271795362234116, -0.017688915133476257, 0.018496964126825333, -0.0036123439203947783, 0.022478438913822174, 0.01146694179624319, 0.001753832446411252, -0.008800381794571877, 0.021582238376140594, 0.004554454702883959, -0.0098875742405653, 0.003816192504018545, -0.011753431521356106, 0.02114148624241352, 0.007603001315146685, 0.017762374132871628, -0.003256067866459489, 0.026753749698400497, -0.010930691845715046, 0.03875694051384926, -0.0028685720171779394, 0.04854167252779007, -0.03191056847572327, 0.00679862592369318, 0.006089746952056885, -0.020465662702918053, 0.006273394450545311, 0.0037096769083291292, 0.03323282673954964, 0.011679972521960735, -0.003590306034311652, -0.01502970140427351, -0.028884058818221092, -0.015455762855708599, 0.021582238376140594, -0.03990289941430092, -0.008300861343741417, -0.002471893560141325, -0.02121494524180889, -0.008396358229219913, 0.009123601019382477, -0.02726796269416809, 5.1478655223036185e-05, -0.011224527843296528, 0.05327242985367775, 0.0013672546483576298, -0.012377833016216755, 0.03526029363274574, -0.012348448857665062, 0.002510459627956152, 0.02346278913319111, -0.0009411927894689143, -0.04263557493686676, 0.005046629812568426, 0.004598530009388924, 0.0036784568801522255, -0.009189714677631855, -0.009931650012731552, -0.027076968923211098, 0.0022698815446347, 0.0025031135883182287, -0.0017198576824739575, 0.0035168472677469254, 0.002818987239152193, 0.03299776092171669, 0.00386026781052351, 0.010938037186861038, -0.015161926858127117, 0.0376109816133976, -0.0037904817145317793, 0.04428105428814888, -0.012906737625598907, 0.025740016251802444, -0.016866175457835197, 0.017277544364333153, -0.03055892325937748, -0.013354836963117123, 0.011731394566595554, 0.010563396848738194, 0.021773232147097588, 0.002486585406586528, 0.012723090127110481, -0.0017125117592513561, 0.01105557195842266, 0.007276108954101801, -0.00411002803593874, 0.012421907857060432, -0.0019925739616155624, 0.03302714228630066, 0.0344669371843338, -0.0031660806853324175, 0.015852442011237144, -0.009630467742681503, 0.01967230625450611, -0.030500154942274094, -0.01651357114315033, -0.001525191473774612, 0.01955477148294449, 0.0229632668197155, -0.03255700692534447, -0.01114372257143259, 0.0025986102409660816, -0.020362820476293564, 0.0018135177670046687, -0.02407984435558319, 0.011613859795033932, 0.005604917649179697, 0.04266495630145073, -0.0066443621180951595, 0.0005766527610830963, 0.05862024053931236, -0.02841392159461975, 0.0001631018240004778, 0.01359725184738636, -0.003133024089038372, 0.03320344537496567, 0.001538965036161244, 0.014574255794286728, -0.005810603033751249, 0.020656656473875046, 0.0009439474670216441, 0.03191056847572327, 0.0351133793592453, 0.03235132247209549, 0.034555088728666306, -0.028795907273888588, -0.005410251673310995, 0.00402922322973609, -0.013127114623785019, -0.02794378437101841, -0.00394841842353344, -0.048923660069704056, -0.009410091675817966, 0.03476077318191528, 0.006310123484581709, 0.02859022282063961, -0.046337906271219254, 0.061176612973213196, -0.00015747762518003583, -0.00947620440274477, 0.01970168948173523, 0.021655697375535965, 0.02490258403122425, 0.014846053905785084, 0.00915298517793417, -0.004337750840932131, -0.016792716458439827, -0.011459596455097198, -0.004484668839722872, -0.001981555251404643, -0.012223568744957447, 0.006291759200394154, 0.0010624000569805503, 0.01511785201728344, 0.03808112069964409, -0.0032744326163083315, 0.0021486743353307247, -0.00013061919889878482, -0.011129030957818031, -0.025372721254825592, 0.010438516736030579, -0.008653463795781136, -0.008602042682468891, 0.012407216243445873, 0.014897475019097328, -0.05374256521463394, -0.012135418131947517, 0.020891724154353142, -0.006346852984279394, 0.03235132247209549, 0.03811050206422806, -0.03628871962428093, -0.002482912503182888, -0.000421700271544978, 0.014104118570685387, 0.031175978481769562, -0.004043915309011936, 0.006677418481558561, 0.018012134358286858, -0.006152187008410692, -0.015470454469323158, -0.02303672581911087, -0.04031427204608917, -0.009116255678236485, 0.0020862340461462736, -0.00018777944205794483, 0.029677415266633034, -0.0017510777106508613, 0.0030944582540541887, -0.046984344720840454, 0.04292941093444824, 0.004330405034124851, -0.02632768638432026, -0.017042476683855057, 0.024917274713516235, 0.003239539684727788, -0.015823056921362877, 0.00845512468367815, -0.002027466893196106, 0.016293194144964218, 0.05656339228153229, 0.038668788969516754, -0.030617689713835716, 0.01705716736614704, -0.013589905574917793, -0.014353878796100616, 0.00838166568428278, 0.00494378712028265, 0.010232831351459026, 0.005502075422555208, 0.008095175959169865, -0.02834046259522438, 0.03910954296588898, -0.02894282527267933, 0.028928134590387344, -0.013971892185509205, -0.04313509538769722, -0.011415520682930946, -0.0066223242320120335, -0.019334394484758377, -0.006816990673542023, -0.007088788785040379, -0.020891724154353142, 0.010247522965073586, 0.007132864091545343, 0.0197751484811306, 0.021861383691430092, -0.015147235244512558, 0.0023323216009885073, -0.0017216941341757774, 0.002960395533591509, -0.0038382301572710276, 0.02077419124543667, 0.014588947407901287, 0.027312036603689194, -0.012818587012588978, -0.02575470693409443, 0.004205524921417236, 0.020832957699894905, -0.0032744326163083315, 0.0008548785117454827, 0.01026221551001072, 0.01132002379745245, 0.01481666974723339, -0.0035186836030334234, -0.00763238500803709, 0.010269560851156712, 0.01780644990503788, 0.024961350485682487, -0.017850523814558983, 0.01730692759156227, 0.005505748093128204, -0.033409129828214645, -0.0369645431637764, -0.023624397814273834, 0.04187159985303879, -0.05958990007638931, 0.016528263688087463, 0.006141168065369129, 0.02919258549809456, -0.01282593235373497, 0.027958475053310394, 0.007749919313937426, 0.014647714793682098, -0.024094535037875175, 0.012517404742538929, 0.02593100816011429, -0.019540080800652504, -0.014633022248744965, -0.0035388849209994078, 0.007889491505920887, -0.01527946162968874, 0.00513110775500536, 0.021582238376140594, 0.018217818811535835, -8.235436689574271e-05, -0.0011670790845528245, -0.03120536170899868, -0.04002043604850769, 0.02281634882092476, -0.004554454702883959, -0.023727240040898323, 0.0019484986551105976, -0.002835515420883894, -0.00037578842602670193, 0.012047267518937588, -0.03217501938343048, -0.032116252928972244, -0.007305492646992207, -0.013744168914854527, 0.015999358147382736, -0.01377355307340622, 0.002980596851557493, 0.01608750969171524, -0.019040560349822044, -0.01601405069231987, -0.026312995702028275, 0.02368316426873207, 0.008513892069458961, -0.008440433070063591, -0.010504629462957382, -0.002407616935670376, 0.021949533373117447, -0.008374320343136787, 0.005564515478909016, 0.015396995469927788, 0.006659053731709719, 0.005200893618166447, -0.03167549893260002, 0.023271795362234116, 0.007070424035191536, -0.01837942935526371, 0.011334715411067009, -0.008491854183375835, 0.016146276146173477, -0.0077278814278542995, -0.0017180211143568158, -0.011870966292917728, 0.009667197242379189, -0.02074480801820755, 0.007573617622256279, -0.010857232846319675, 0.012994888238608837, 0.0005018164520151913, -0.005483710672706366, -0.008264131844043732, -0.009307248517870903, -0.019466621801257133, -0.02554902248084545, -0.03675885871052742, -0.016675181686878204, 0.006181570701301098, -0.006809644401073456, 0.0036472368519753218, -0.005502075422555208, 0.009175023064017296, -0.024197377264499664, -0.00159405916929245, 0.018188435584306717, -0.029721491038799286, 0.0011376955080777407, 0.0127524733543396, -0.01026221551001072, 0.0019760457798838615, 0.00038152741035446525, 0.003131187753751874, -0.00477483170107007, -0.01544107124209404, -0.02002490870654583, 0.004627913702279329, -0.01474321074783802, -0.013274031691253185, -0.00721734156832099, -0.029545189812779427, 0.004660970531404018, 0.017145318910479546, 0.012627593241631985, 0.008499200455844402, -0.017365695908665657, -0.02153816446661949, 0.0037868088111281395, -0.015396995469927788, -0.02607792615890503, -0.00972596462816, -0.015955284237861633, 0.00017262852634303272, -0.005384541116654873, 0.029750874266028404, -0.04137207940220833, -0.002714308211579919, 0.015734907239675522, 0.006350526120513678, -0.006739858537912369, -0.007143882568925619, -0.027356112375855446, -0.007999679073691368, 0.010688276961445808, -0.02196422591805458, -0.009145638905465603, 0.014875437133014202, 0.012039922177791595, -0.00041504306136630476, -0.032410088926553726, -0.008873840793967247, 0.00256555387750268, 0.008411049842834473, -0.026180770248174667, 0.011239219456911087, -0.07099072635173798, -0.020142443478107452, -0.018790798261761665, 4.5366639824351296e-05, 0.0017290400573983788, 0.016866175457835197, 0.011606513522565365, 0.00645704148337245, -0.0033129986841231585, -0.014801978133618832, 0.009020758792757988, -0.0013259340776130557, 0.0027014529332518578, 0.020406896248459816, -0.00763973081484437, 0.009072179906070232, -0.015382303856313229, -0.017453845590353012, 0.0036821297835558653, -0.008403703570365906, -0.012532096356153488, 0.018864257261157036, 0.054300855845212936, -0.005803256761282682, -0.0072944737039506435, 0.0033680927008390427, -0.00026973208878189325, -0.012620246969163418, 0.005149472504854202, -0.038286805152893066, 0.009454166516661644, 0.024491213262081146, -0.017262853682041168, -0.026239536702632904, -0.0003682129899971187, 0.015749597921967506, 0.004411209840327501, -0.0020972529891878366, 0.0011266766814514995, 0.010071221739053726, -0.01443468313664198, -0.011136376298964024, 0.00044764045742340386, 0.021082717925310135, 0.02644522115588188, -0.007099807262420654, 0.01586713269352913, -0.01967230625450611, -0.003999839536845684, 0.005406578537076712, 0.009351324290037155, 0.024123918265104294, -0.008337590843439102, -0.016278503462672234, -0.00813190545886755, -0.0216703899204731, 0.0188054908066988, -0.02955988049507141, 0.007389970123767853, 0.0050392840057611465, 0.04242989048361778, 0.002159693045541644, 0.013700094074010849, -0.005101724062114954, -0.024241453036665916, 0.013442987576127052, -0.0013525629183277488, 0.03417310118675232, 0.026562755927443504, -0.003751915879547596, 0.009938995353877544, 0.0016271157655864954, -0.01668987236917019, 0.011386137455701828, -0.0030063074082136154, 0.022581281140446663, 0.014060042798519135, 0.021229635924100876, 0.009167676791548729, 0.01511785201728344, -0.04281187430024147, 0.008102522231638432, -0.006761896423995495, -0.009770040400326252, -0.018864257261157036, -0.010005109012126923, -0.009696581400930882, -0.008815073408186436, 0.0427824929356575, -0.006229318678379059, 0.02497604303061962, 0.01352379284799099, -0.0029236662667244673, 0.004558127839118242, -0.028031934052705765, 0.05468284338712692, -0.018643882125616074, 0.012627593241631985, -0.0036509097553789616, 0.0015738579677417874, -0.011841582134366035, -0.012612901628017426, 0.013979237526655197, 0.0009232871816493571, -0.01124656479805708, -0.0014967260649427772, -0.01604343391954899, 0.03443755581974983, 0.005715106148272753, -0.006008942145854235, -0.0017832160228863358, 0.0035058283247053623, -0.018496964126825333, 0.03590673580765724, 0.010071221739053726, -0.0013461352791637182, -0.024065151810646057, -0.014603639021515846, -0.003672947408631444, -0.006883103400468826, 0.0019668634049594402, 0.034555088728666306, -0.0015720215160399675, -0.010960075072944164, -0.012612901628017426, 0.017189394682645798, 0.004179814364761114, -0.0071365367621183395, -0.005303736310452223, 0.01701309345662594, -0.013340145349502563, -0.03285084292292595, 0.0014021476963534951, -0.009358669631183147, -0.018070900812745094, 0.00772053562104702, 0.03323282673954964, -0.0005931810010224581, 0.016719257459044456, -0.020906416699290276, 0.01616096869111061, -0.009366015903651714, -0.009424783289432526, -0.003215665463358164, -0.010916000232100487, 0.004851963371038437, -0.022096451371908188, -0.030940908938646317, 0.003805173560976982, 0.01583774946630001, 0.005773873534053564, -0.015925901010632515, 0.019907375797629356, 0.042547423392534256, -0.018687956035137177, -0.029794950038194656, -0.023550938814878464, 0.01375886145979166, -0.0159405916929245, -0.015338228084146976, -0.0008888532756827772, 0.01393516268581152, 0.0003923166950698942, 0.007735227234661579, -0.027458954602479935, -0.014559563249349594, 0.01155509240925312, -0.011275948956608772, 0.006912487093359232, -0.012847970239818096, 0.028076009824872017, 0.013736823573708534, -0.016131585463881493, 0.012230915017426014, -0.0012488021748140454, -0.02826700359582901, -0.0052559878677129745, -0.006567229982465506, 0.025710633024573326, -0.0026004468090832233, -0.02084765024483204, 0.012311720289289951, 0.008161289617419243, 0.0054616727866232395, -0.016072817146778107, 0.014691789634525776, -0.026239536702632904, -0.004139411728829145, -0.001563757425174117, -0.008998720906674862, 0.007625038735568523, 0.017615456134080887, 0.0037427335046231747, 0.007676460314542055, 0.004396518226712942, -0.0011679972521960735, 0.029119126498699188, 0.027649948373436928, -0.010174063965678215, -0.008374320343136787, -0.01520600263029337, -0.0021945862099528313, 0.007356913760304451, 0.013303415849804878, 0.005652666091918945, 0.010916000232100487, -0.028208237141370773, 0.013751515187323093, 0.023198336362838745, -0.004642605781555176, 0.002014611614868045, 0.0006432249210774899, 0.034378789365291595, 0.007114499341696501, 0.007771956734359264, -0.0007267844630405307, 0.006100765895098448, -0.022404979914426804, 0.002306611044332385, -0.02092110924422741, 0.05341934785246849, -0.01073235273361206, 0.018937716260552406, 0.002174384891986847, 0.010005109012126923, -0.0017134299268946052, 0.0044369203969836235, -0.05227338895201683, -0.007334875874221325, -0.004536089953035116, 0.018834874033927917, 0.01289939135313034, -0.008300861343741417, 0.010886616073548794, -0.0004972252645529807, 0.005839986260980368, 0.022052375599741936, 0.00553513178601861, 0.01074704434722662, 0.015543913468718529, -0.001376437023282051, -0.02400638535618782, 0.015088467858731747, -0.008859149180352688, 0.010511975735425949, -0.003239539684727788, -0.024917274713516235, -0.0026665597688406706, 0.009770040400326252, 0.010137335397303104, -0.004212870728224516, 0.0037757898680865765, 0.0008204446639865637, -0.013376874849200249, 0.008910570293664932, -0.014464067295193672, 0.018188435584306717, -0.014919512905180454, 0.019731074571609497, -0.013993930071592331, -0.021479396149516106, 0.015485146082937717, 0.01895240880548954, -0.0029457039199769497, 0.014302457682788372, 0.0010559724178165197, -0.011731394566595554, 0.0009641487267799675, 0.0034360422287136316, -0.006005269009619951, 0.0092411357909441, 0.016293194144964218, -0.007992333732545376, 0.01083519496023655, 0.002389252418652177, 0.008300861343741417, 0.0017391405999660492, -0.010489937849342823, -0.004323059227317572, -0.01601405069231987, -0.017424462363123894, -0.026753749698400497, -0.003228520741686225, 0.015235385857522488, 0.01544107124209404, 0.019481312483549118, -0.01598466746509075, -0.006897795479744673, 0.021259019151329994, -0.014824016019701958, -0.008425741456449032, 0.008793036453425884, 0.024491213262081146, -0.002455365378409624, 0.012355795130133629, 0.013810282573103905, 0.0014113300712779164, 0.014287765137851238, 0.0286930650472641, -0.021582238376140594, -0.002683088183403015, -0.012634939514100552, -0.00804375484585762, 0.000864060886669904, -0.01481666974723339, -0.00025090822600759566, -0.008227402344346046, -0.010005109012126923, -0.0043561155907809734, 0.005458000116050243, -0.0016271157655864954, -0.014140848070383072, 0.004054933786392212, -0.02926604449748993, -0.005182528868317604, 0.028928134590387344, 0.030999677255749702, 0.0026169749908149242, -0.01758607290685177, -0.023345254361629486, 0.012054613791406155, -0.030617689713835716, 0.02540210448205471, -0.014838707633316517, -0.0560932531952858, -0.001985228154808283, 0.0007979478104971349, -0.0025490254629403353, 0.0008007025462575257, -0.012994888238608837, -0.04613221809267998, 0.03646502271294594, 0.001685882918536663, -0.0020403224043548107, -0.014375916682183743, -0.009909612126648426, -0.0015775308711454272, 0.007268763147294521, -0.015676138922572136, -0.0034470611717551947, 0.020289361476898193, 0.020935799926519394, 0.0064166393131017685, -0.011959116905927658, 0.023095494136214256, 0.001120248925872147, 0.005851005204021931, 0.03158734738826752, 0.006284412927925587, 0.01409677229821682, 0.013516446575522423, -0.002791440114378929, 0.005064994562417269, -0.016307886689901352, -0.0009898593416437507, 0.02719450369477272, 0.007625038735568523, -0.012532096356153488, -0.0031770996283739805, -0.014177577570080757, 0.007503831759095192, 0.019892683252692223, 0.013817627914249897, 0.009667197242379189, -0.02794378437101841, -0.02751772291958332, -0.008249440230429173, -0.03743467852473259, 0.021699773147702217, -0.0009375198278576136, -0.009777385741472244, -0.005575534421950579, -0.01763014681637287, 0.005344138480722904, -0.023007342591881752, -0.0002465466095600277, 0.006372564006596804, 0.006985946092754602, 0.010857232846319675, -0.005700414534658194, -0.014442029409110546, 0.008859149180352688, -0.022228678688406944, -0.028178852051496506, -0.0181590523570776, 0.017762374132871628, -0.004065952729433775, 0.007654422428458929, -0.015396995469927788, -0.024946659803390503, -0.025049502030014992, -0.01433184091001749, -0.01450814213603735, -0.0034654259216040373, 0.018144359812140465, 0.000701532990206033, -0.025122961029410362, 0.010960075072944164, -0.026342378929257393, -0.01942254602909088, -0.013068347238004208, 0.023697856813669205, -0.017791757360100746, 0.043223246932029724, -0.02178792469203472, 0.007757265120744705, 0.011834236793220043, 0.0030816029757261276, -0.010710314847528934, -0.02214052714407444, -0.0005284452927298844, -0.008484508842229843, -0.0011845255503430963, -0.003974128980189562, -0.01984860748052597, 0.009762694127857685, -0.01057074312120676, 0.036376871168613434, -0.014449375681579113, 0.008322899229824543, -0.013193227350711823, -0.022595971822738647, -0.007063077762722969, -0.019084634259343147, -0.021508779376745224, 0.01733631268143654, -0.019246244803071022, -0.009050142951309681, 0.015896515920758247, -0.030176935717463493, 0.005435962229967117, 0.016146276146173477, -0.01241456251591444, 0.007496485952287912, 0.04231235384941101, -0.018864257261157036, 0.01450814213603735, 0.0022368249483406544, -0.011959116905927658, -0.034525707364082336, -0.036200571805238724, -0.01787990890443325, 0.0024370006285607815, 0.004275310784578323, 0.01909932680428028, -0.009505587629973888, 0.017571380361914635, -0.01730692759156227, -0.003331363433972001, 0.01289939135313034, 0.012767164967954159, -0.05406578630208969, -0.024740973487496376, 0.018541038036346436, 0.004987862426787615, -0.0042202165350317955, -0.008183326572179794, -0.000553696823772043, 0.0018511655507609248, 0.02181730791926384, 0.007867453619837761, 0.024961350485682487, 0.016146276146173477, 0.011657935567200184, -0.01701309345662594, 0.015969974920153618, 0.02515234425663948, -0.001959517365321517, 0.005718779284507036, -0.027326729148626328, 0.02593100816011429, 0.0014113300712779164, 0.0032303573098033667, -0.003481954103335738, 0.0056085907854139805, -0.008491854183375835, -0.010144680738449097, 0.005182528868317604, -0.006614978425204754, -0.007345894817262888, -0.004198179114609957, 0.01683679036796093, 0.019290320575237274, -0.010967421345412731, 0.006688437424600124, -0.002534333849325776, -0.014515488408505917, -0.012120726518332958, 0.013332799077033997, 0.03217501938343048, -0.003963110502809286, 0.04604407027363777, -0.01526477001607418, -0.0003652287123259157, 0.019892683252692223, -0.003239539684727788, 0.006989618763327599, 0.005718779284507036, 0.010269560851156712, -0.0019668634049594402, 0.005571861285716295, -0.008734269067645073, -0.015720214694738388, 0.004874001257121563, 0.01959884725511074, -0.01683679036796093, -0.017571380361914635, 0.012150109745562077, 0.013692747801542282, 0.011746086180210114, 0.0036343815736472607, 0.008440433070063591, -0.009542317129671574, -0.0006505708443000913, -0.012047267518937588, -0.011106993071734905, -0.008947299793362617, 0.009270519018173218, -0.010725006461143494, -0.0024204724468290806, -0.016278503462672234, -0.004433247726410627, 0.005593899171799421, -0.005303736310452223, 0.01840881258249283, 0.008939954452216625, -0.015338228084146976, 0.0004097631899639964, -0.0213471706956625, -0.0004829925892408937, 0.004932768642902374, 0.00827882345765829, 0.004848290700465441, 0.010166718624532223, 0.007962950505316257, -0.0011533055221661925, 0.0204215869307518, 0.005832640454173088, -0.008984029293060303, -0.011062917299568653, -0.006648034788668156, -0.00763973081484437, -0.01105557195842266, 0.014610985293984413, 0.017189394682645798, 0.05051037296652794, -0.0011836072662845254, 0.003173426492139697, 2.7274503736407496e-05, -0.008271477185189724, -0.035230912268161774, -0.009520280174911022, 0.019789841026067734, 0.018864257261157036, 0.003669274505227804, 0.01586713269352913, -0.017204085364937782, 0.026474604383111, 0.029280737042427063, -0.005498402286320925, 0.012612901628017426, 0.012083997018635273, 0.03908016160130501, -0.010578088462352753, 0.0156173724681139, -0.005744489841163158, 0.007070424035191536, 0.0018410648917779326, 0.01701309345662594, 0.002361705293878913, 0.027165118604898453, -0.015808366239070892, -0.01823251135647297, 0.001297468668781221, 0.027003509923815727, -0.0018429013434797525, -0.0015821220586076379, 0.018320661038160324, -0.016704564914107323, -0.013964545913040638, 0.0018410648917779326, 0.0014333677245303988, 0.008888532407581806, 0.0022441709879785776, -0.007933566346764565, 0.004991535563021898, 0.02203768491744995, 0.011577130295336246, 0.017747681587934494, -2.9527054721256718e-05, -0.03432001918554306, -0.003537048352882266, -0.0016969017451629043, -0.010107951238751411, 3.526603541104123e-05, -0.023741932585835457, 0.003090785350650549, 0.003988821059465408, -0.005968539509922266, -0.003344218712300062, 0.0026922705583274364, -0.008499200455844402, -0.0006101683829911053, 0.010453208349645138, -0.007000637706369162, -0.013009579852223396, 0.0036931487265974283, -0.010489937849342823, -0.013810282573103905, -0.012561480514705181, -0.009248482063412666, -0.009454166516661644, -0.0229632668197155, 0.010636855848133564, -0.009755348786711693, -0.005307408981025219, 0.02593100816011429, 0.004940114449709654, -0.02221398614346981, -0.004683007951825857, -0.0008199855219572783, -0.007400989066809416, 0.02149408869445324, 0.0001274053647648543, -0.002743691671639681, 0.013876395300030708, 0.01526477001607418, -0.009255827404558659, -0.010960075072944164, -0.0007203568238765001, -0.01591120846569538, 0.02067134901881218, -0.009006067179143429, -0.006732512731105089, -0.03905077651143074, -0.011981154792010784, -0.011511017568409443, -0.011114339344203472, 0.01124656479805708, -0.005388213787227869, -0.003919034730643034, -0.014882783405482769, -0.0006932688411325216, -0.000486206408822909, 0.020730115473270416, 0.011187798343598843, 0.01361194346100092, 0.0019411527318879962, 0.0022974286694079638, 0.01520600263029337, -0.037669748067855835, 0.021978916600346565, 0.0016509898705407977, -0.032615773379802704, 0.0018842220306396484, 0.005880388896912336, 0.000932010414544493, -0.007334875874221325, 0.0006785770528949797, -0.015881825238466263, 0.00030278859776444733, 0.0382574200630188, -0.007206323090940714, -0.023007342591881752, -0.019069943577051163, 0.011694665066897869, 0.013185881078243256, 0.0010091422591358423, -0.00019914262520615011, 0.005410251673310995, 0.00897668395191431, -0.019290320575237274, -0.013729477301239967, 0.0019393162801861763, 0.001093620085157454, 0.003496645949780941, -0.0022166238632053137, 0.005612263921648264, 0.016939634457230568, 0.02249312959611416, -0.002686761086806655, -0.01795336790382862, -0.006335834506899118, 0.01798275113105774, 0.006049344316124916, 0.002122963545843959, 0.011297985911369324, 0.005178855732083321, 0.004062280058860779, 0.008734269067645073, 0.01708655059337616, -0.009211752563714981, -0.0011560602579265833, -0.022258061915636063, -0.004165122285485268, 0.01870264858007431, -0.019686998799443245, 0.0074413917027413845, -0.02490258403122425, 0.01701309345662594, 0.004124720115214586, -0.018614497035741806, 0.042400505393743515, -0.003999839536845684, -0.002497604349628091, -0.007033694535493851, 0.022258061915636063, -0.010247522965073586, -0.019716382026672363, 0.010063876397907734, 0.0041504306718707085, 0.011378791183233261, 0.016058126464486122, 0.013494408689439297, -0.018717339262366295, 0.004080644808709621, 0.007412008009850979, 0.007823377847671509, -0.031646113842725754, 0.0019191150786355138, 0.0011955443769693375, 0.005068667698651552, 0.0022753910161554813, -0.025064192712306976, -0.0037023311015218496, 0.0017969895852729678, -0.0006629670388065279, 0.016146276146173477, -0.012686360627412796, -0.011239219456911087, -0.01322261057794094, 0.02769402414560318, -0.01232641190290451, 0.005513093899935484, 0.01927562803030014, -0.006545192562043667, 0.0312347449362278, -0.02124432846903801, 0.0038235383108258247, -0.016498880460858345, -0.002995288698002696, 0.004080644808709621, 0.029398271813988686, -0.01740977168083191, -0.018394120037555695, -0.003439715364947915, 0.005604917649179697, -0.00780868623405695, 0.020891724154353142, -0.008256785571575165, 0.0020072658080607653, -0.01284062396734953, 0.010225486010313034, -0.023977000266313553, -0.0005270679830573499, -0.06352730095386505, -0.019657615572214127, 0.009277865290641785, -0.02403576858341694, -0.023257102817296982, 6.272705650189891e-05, 0.01920216903090477, 0.0028153141029179096, 0.00242781825363636, -0.004921749699860811, 0.007698497734963894, 0.004205524921417236, 0.013714785687625408, -0.0036013249773532152, -0.017424462363123894, 0.006078728009015322, 0.004308367148041725, 0.007749919313937426, 0.02077419124543667, -0.0007373442058451474, 0.023301178589463234, -0.024447137489914894, -0.012201531790196896, 0.027238577604293823, 0.005733470898121595, 0.016601722687482834, 0.017497921362519264, -0.02027467079460621, 0.02734142169356346, -0.023374637588858604, 0.00829351507127285, 0.006978600285947323, 0.00653050048276782, -0.015999358147382736, 0.020054293796420097, 0.00544698117300868, 0.007110826205462217, 0.006034652702510357, 0.012671669013798237, -2.3888505893410183e-05, -0.006559884175658226, -0.00027845532167702913, -0.004752793814986944, 0.02859022282063961, 0.002227642573416233, 0.019907375797629356, 0.0038969973102211952, 0.004312040284276009, -0.0076470766216516495, -0.012333757244050503, 0.006971254479140043, 0.007463429123163223, -0.004278983920812607, -0.01511785201728344, -0.001376437023282051, 0.0014471412869170308, 0.00990226585417986, 0.014838707633316517, -0.0200983677059412, 0.010827848687767982, 0.0125908637419343, 0.02084765024483204, 0.0050245919264853, 0.01408208068460226, -0.008300861343741417, -0.005865697283297777, -0.003305652644485235, -0.008726922795176506, -0.014206960797309875, 0.025989776477217674, 0.000937978969886899, -0.011048225685954094, 0.01520600263029337, -0.021156176924705505, 0.023227719590067863, 0.003470935393124819, -0.002038485836237669, -0.009461512789130211, -0.029427655041217804, 0.023124877363443375, 0.004932768642902374, 0.006181570701301098, 0.01483136136084795, -0.012510059401392937, -0.01511785201728344, 0.027018200606107712, 0.00015426379104610533, -0.002146837767213583, 0.020392203703522682, 0.0038235383108258247, 0.006089746952056885, -0.003900670213624835, -0.008602042682468891, -0.008844457566738129, 0.0009223689557984471, 0.012297027744352818, -0.0021009258925914764, -0.013031617738306522, -0.0009260418592020869, 0.008374320343136787, 0.0033405458088964224, 0.002387415850535035, 0.017130626365542412, 0.003439715364947915, -0.015632065013051033, -0.0033019797410815954, 0.017541997134685516, 0.012429254129529, -0.01266432274132967, 0.004278983920812607, -0.012208877131342888, 0.002675742143765092, -0.025034809485077858, 0.02919258549809456, -0.010578088462352753, 0.03476077318191528, 0.006905141286551952, 0.03443755581974983, 0.0010578088695183396, -0.0296627227216959, 0.008161289617419243, -0.012612901628017426, 0.009277865290641785, -0.00987288262695074, 0.0019521715585142374, 0.013347490690648556, -0.02020121179521084, 0.00830820668488741, -0.008969337679445744, 0.006468060426414013, -0.020259978249669075, 0.010916000232100487, -0.0013993929605931044, -0.017453845590353012, 0.00021613000717479736, 0.020539121702313423, 0.012385178357362747, -0.024887891486287117, 0.0016004868084564805, 0.0072834547609090805, 0.0012873681262135506, -0.0129140829667449, 0.023051418364048004, -0.004756466951221228, -0.0023947616573423147, -0.015161926858127117, -0.013905779458582401, 0.02224336937069893, -0.01668987236917019, 0.020877033472061157, -0.024785049259662628, -0.005053975619375706, -0.016851482912898064, -0.001566512044519186, -0.0102107934653759, -0.0033276902977377176, -0.015749597921967506, 0.013604597188532352, -0.014412646181881428, -0.0007208159076981246, -0.005524112842977047, -0.04448673874139786, -0.02672436647117138, -0.0050062271766364574, -0.02031874470412731, 0.008234748616814613, -0.001161569613032043, -0.01676333136856556, -0.00780134042724967, -0.012025229632854462, 0.03396741673350334, -0.004121046978980303, -0.017835833132267, -0.0062697213143110275, 0.02077419124543667, 0.002958559198305011, 0.033732350915670395, 0.0016647634329274297, -0.0035315388813614845, -0.005241295788437128, -0.0005908854072913527, -0.005476364865899086, -0.01716000959277153, -0.01033567450940609, 0.011606513522565365, 0.0008599288412369788, -0.0011771796271204948, 0.027503030374646187, 0.006912487093359232, -0.017762374132871628, 0.009123601019382477, 0.0026114655192941427, 0.018717339262366295, 0.009828807786107063, 0.0008461552788503468, -0.015294153243303299, -0.018394120037555695, 0.011437558569014072, 0.012054613791406155, 0.00850654672831297, -0.0075111775659024715, 0.00789683684706688, -0.017615456134080887, -0.0014168394263833761, -0.007992333732545376, -0.035554129630327225, 0.018687956035137177, -0.019187478348612785, 0.011033534072339535, 0.00188973150216043, 0.0098875742405653, -0.009211752563714981, -0.004414882976561785, 0.0005986904143355787, 0.021626314148306847, 0.01859980635344982, 0.018820183351635933, -0.015411687083542347, -0.024740973487496376, 0.017439154908061028, 0.0008277905290015042, -0.02056850492954254, 0.0065562110394239426, -0.0017997442046180367, -0.01511785201728344, -0.006791279651224613, 0.02099456824362278, -0.011812198907136917, 0.003186282003298402, 0.01755668967962265, -0.012671669013798237, -0.0035958155058324337, -0.00585835101082921, -0.00661130528897047, 0.020583197474479675, -0.0015371284680441022, 0.014750557020306587, 0.010511975735425949, -0.015587989240884781, -0.02056850492954254, -0.01074704434722662, 0.03467262536287308, 0.011026187799870968, -0.026841899380087852, -0.016998400911688805, -0.0041504306718707085, -0.014500796794891357, 0.028810599818825722, 0.012928774580359459, -0.010695623233914375, 0.009520280174911022, 0.007198976818472147, -0.009520280174911022, 0.009571701288223267, -0.0064754062332212925, 0.004734429065138102, 0.0001780231687007472, 0.0056673577055335045, -0.0024480195716023445, -0.0011946262093260884, -0.011834236793220043, 0.0004577410873025656, -0.005421270616352558, 9.279930964112282e-05, 0.007889491505920887, -0.01306100096553564, 0.015088467858731747, 0.011151068843901157, 0.005465345922857523, -0.007114499341696501, -0.02779686637222767, -0.004635259509086609, -0.0017593418015167117, 0.012436600401997566, 0.02281634882092476, 0.0018474925309419632, 0.0027363458648324013, 0.02321302704513073, 0.03414371982216835, 0.014522833749651909, -0.01130533218383789, -0.021552855148911476, 0.014500796794891357, -0.025857549160718918, 0.007742573041468859, 0.004337750840932131, -0.0030816029757261276, 0.010695623233914375, 0.00536617636680603, 0.007037367206066847, -0.0009127274388447404, -0.00929990317672491, 0.0064166393131017685, 0.01651357114315033, -0.002916320227086544, -0.003226684406399727, -0.006897795479744673, 0.02809070236980915, 0.013332799077033997, 0.00882976595312357, 0.028722448274493217, 0.0261513851583004, 0.01676333136856556, 0.022507822141051292, 0.0005532376817427576, 0.01368540246039629, 0.00913829356431961, 0.011275948956608772, 0.006482752040028572, -0.0002791440056171268, 0.005406578537076712, 0.007845415733754635, 0.005575534421950579, 0.0059060994535684586, -0.009997762739658356, -0.003711513476446271, 0.0018070901278406382, 0.0038823054637759924, 0.012069305405020714, 0.003985147923231125, -0.001780461287125945, -0.009101564064621925, 0.0029346849769353867, 0.01483136136084795, -0.012083997018635273, 0.0094027454033494, 0.0017933165654540062, -0.010938037186861038, 0.036347486078739166, -0.004929095506668091, 0.012789202854037285, -0.005920791067183018, 0.010636855848133564, -0.008763652294874191, 0.004433247726410627, -0.017527304589748383, -0.01855573058128357, 0.030940908938646317, -0.01458160113543272, 0.021288404241204262, 0.002211114391684532, 0.008168634958565235, 0.009938995353877544, 0.006383582483977079, -0.000600986008066684, -0.026885975152254105, 0.002143164863809943, -0.0054616727866232395, -0.00938805378973484, -0.00018777944205794483, -0.02396230958402157, -0.01805621013045311, -0.007661768235266209, 0.017101243138313293, -0.005671030841767788, -0.004888692870736122, 0.005733470898121595, 0.019011175259947777, -0.0018190272385254502, 0.017835833132267, -0.0026794150471687317, -0.01248802151530981, 0.0064974441193044186, 0.007022675592452288, 0.015823056921362877, -0.0033166715875267982, 0.003173426492139697, 0.00836697407066822, 0.016572339460253716, 0.0020458316430449486, 0.006596613675355911, -0.005821621511131525, -0.012862661853432655, 0.006225646007806063, -0.0029089744202792645, 0.013420949690043926, -0.0036380544770509005, -0.006302777677774429, 0.01156978402286768, -0.020553814247250557, 0.004756466951221228, -0.024138610810041428, -0.008785690180957317, 0.0001976504863705486, -0.0094027454033494, -0.02002490870654583, -0.000688677653670311, 0.01551453024148941, -0.0090795261785388, 0.004749121144413948, -0.0029457039199769497, 0.001322261057794094, -0.010489937849342823, 0.010387095622718334, 0.0045250714756548405, -0.004851963371038437, 0.008014371618628502, -0.0013883741339668632, 0.012605555355548859, -0.004422228783369064, -0.024623440578579903, 0.01608750969171524, 0.0077939946204423904, 0.01201788429170847, -0.0026959434617310762, -0.023947617039084435, 0.009050142951309681, 0.016880866140127182, 0.02622484415769577, -0.013435641303658485, -0.005612263921648264, -0.024270836263895035, -0.017262853682041168, -0.001539883203804493, -0.004106355365365744, -0.02027467079460621, -0.0063284882344305515, -0.013303415849804878, 0.009072179906070232, -0.0039337268099188805, -0.004646278452128172, -0.005707760341465473, -0.002242334419861436, -0.004051261115819216, 0.015558605082333088, -0.004793196450918913, -0.006148513872176409, 0.009123601019382477, 0.002306611044332385, -0.017292236909270287, 0.010842541232705116, -0.011790161021053791, -0.0009595575393177569, 0.033585432916879654, 0.018834874033927917, 0.0006583758513443172, -0.005432289093732834, -0.010644202120602131, 0.0027216540183871984, -0.001160651445388794, -0.03361481428146362, -0.010886616073548794, -0.011114339344203472, 0.005582880228757858, 2.533759834477678e-05, -0.002361705293878913, 0.018717339262366295, -0.017938675358891487, 0.010563396848738194, 0.009101564064621925, -0.007033694535493851, -0.023095494136214256, 0.0031899549067020416, 0.009292556904256344, 0.00364540028385818, -0.017821140587329865, 0.017101243138313293, 0.017042476683855057, 0.012465983629226685, -0.03399680182337761, -0.003377275075763464, 0.021200252696871758, -0.014287765137851238, 0.0053221010603010654, 0.001268085092306137, -0.011584476567804813, -0.022581281140446663, -0.025769399479031563, 0.021655697375535965, -0.03875694051384926, 0.001256147981621325, -0.006934524979442358, 0.005215585231781006, -0.018717339262366295, -1.5193950275715906e-05, -0.011540400795638561, 0.0007309165666811168, -0.036024268716573715, 0.003076093504205346, -0.012943467125296593, -0.022228678688406944, -0.011753431521356106, 0.016719257459044456, -0.003977802116423845, 0.031881183385849, 0.005917118396610022, -0.008734269067645073, -0.012039922177791595, -0.011628551408648491, -0.01845288835465908, -0.028031934052705765, 0.006401947233825922, -0.00696758134290576, -0.005491056479513645, 0.006306450814008713, -0.0038786325603723526, 0.03517214581370354, -0.007063077762722969, -0.009373362176120281, 0.008631426841020584, -0.00869019329547882, -0.002784094074741006, -0.004212870728224516, -0.013487063348293304, -0.0232864860445261, -0.0027767482679337263, 0.03649440407752991, -0.017042476683855057, -0.010276907123625278, 0.01884956657886505, -0.02281634882092476, -0.002552698366343975, -0.004580165259540081, 0.0008057528175413609, -0.007070424035191536, -0.012767164967954159, -0.008969337679445744, 0.011533054523169994, 0.006930851843208075, 0.013700094074010849, 0.0127524733543396, -0.015485146082937717, 0.022272752597928047, 0.010717660188674927, 0.004245927091687918, 0.010152027010917664, 0.0034507340751588345, -0.014963587746024132, -0.0021101082675158978, -0.0002711094275582582, -0.00763238500803709, -0.03170488402247429, -0.013340145349502563, 0.0023525229189544916, 0.01619035191833973, -0.02321302704513073, -0.017262853682041168, 0.01418492291122675, -0.017321620136499405, 0.0005798665806651115, -0.024799741804599762, -0.0032487220596522093, 0.0023708876688033342, -0.001538046752102673, -2.8436646971385926e-05, 0.0061889165081083775, 0.02293388359248638, 0.005759181454777718, -0.0031532254070043564, 0.006401947233825922, 0.00604567164555192, 0.010343019850552082, -0.01347237080335617, 0.011665280908346176, 0.005226604174822569, 0.008770998567342758, -0.006306450814008713, -0.005935483146458864, 0.011797507293522358, 0.006684764288365841, 0.02607792615890503, -0.012223568744957447, 0.005278025288134813, -0.013105076737701893, -0.025240493938326836, -0.014919512905180454, -0.00113494077231735, 0.00852858368307352, -0.0200983677059412, 0.006787606980651617, 0.0023800700437277555, -0.006868411786854267, -0.04933502897620201, -0.0003333199711050838, -0.025960393249988556, 0.02303672581911087, 0.03649440407752991, 0.006067709065973759, 0.009828807786107063, 0.022507822141051292, -0.012113380245864391, -0.0018291277810931206, -0.008594697341322899, -0.00852858368307352, 0.03675885871052742, 0.027885017916560173, 0.0034103316720575094, 0.009850844740867615, 0.0056783766485750675, -0.01033567450940609, 0.00461322208866477, 0.011657935567200184, -0.0056783766485750675, -0.006196262314915657, 0.0038419030606746674, 0.013993930071592331, 0.00011409092985559255, 0.01623442769050598, 0.00890322495251894, -0.0033001431729644537, 0.024520596489310265, 0.012612901628017426, -0.016675181686878204, 0.00628808606415987, 0.0010467900428920984, 0.0061117843724787235, 0.00720999576151371, 0.0008782935328781605, -0.004440593533217907, 0.01033567450940609, 0.007764610927551985, -0.020465662702918053, 0.005553496535867453, 0.01098211295902729, -0.012906737625598907, -0.0027749116998165846, 0.0028667354490607977, -0.026283612474799156, 0.008352282457053661, 0.0226400475949049, -0.013788244687020779, 0.010475246235728264, -0.0007341303862631321, 0.03370296582579613, -0.014324494637548923, -0.018511654809117317, -0.017424462363123894, -0.015734907239675522, -0.009307248517870903, 0.004341423977166414, 0.011606513522565365, -0.022948576137423515, 0.0102107934653759, 0.02099456824362278, -0.008851802907884121, -0.0023451768793165684, -0.027973167598247528, 0.001660172245465219, 0.0002495308581274003, 0.005193547811359167, 0.00771318981423974, 0.011635897681117058, 0.023124877363443375, 0.013545829802751541, -0.009366015903651714, 0.019466621801257133, -0.014765248633921146, 0.0015674303285777569, 0.013457679189741611, -0.022507822141051292, -0.011004150845110416, 0.00771318981423974, 0.02385946735739708, -0.0024737301282584667, 0.005362503230571747, -0.0025875915307551622, -0.00339931296184659, 0.016969017684459686, -0.01598466746509075, -0.0008842620882205665, -0.009843499399721622, -0.016778023913502693, -0.022096451371908188, 0.017718298360705376, 0.004385499283671379, 0.01520600263029337, 0.009579046629369259, 0.011848928406834602, 0.010916000232100487, 0.009733310900628567, -0.006266048178076744, 0.021758541464805603, -0.005439635366201401, -0.020480355247855186, 0.009094217792153358, -0.018937716260552406, -0.006501116789877415, -0.01058543473482132, 0.0357598178088665, 0.00990226585417986, 0.017821140587329865, -0.01740977168083191, 0.01852634735405445, -0.007940912619233131, 0.01716000959277153, -0.028928134590387344, 0.018041517585515976, -0.005568188149482012, -0.005068667698651552, -0.010343019850552082, -0.003156898310407996, -0.0036766203120350838, 0.003492973046377301, -0.0018934044055640697, -0.005465345922857523, 0.026180770248174667, -0.03725837916135788, 0.0035039917565882206, -0.011459596455097198, -0.0012175820302218199, -0.007239379454404116, -0.0064643872901797295, 0.00913829356431961, -0.0013084874954074621, 0.0007974887266755104, 0.003472771728411317, 0.006244010757654905, -0.0077058435417711735, -0.027106352150440216, -0.016998400911688805, -0.010563396848738194, 0.01201788429170847, 0.0165870301425457, -0.006302777677774429, -0.017600763589143753, 0.009439474903047085, -0.014442029409110546, -0.007691151928156614, 5.5668107961537316e-05, -0.00461322208866477, 0.003974128980189562, -0.0037610982544720173, 0.0008704885258339345, 0.02819354459643364, -0.010445862077176571, -0.013582559302449226, 0.0013167517026886344, 0.006302777677774429, -0.011694665066897869, -0.0006974008865654469, 0.04237112030386925, 0.015573297627270222, 0.01392047107219696, -0.006578248925507069, -0.0038272112142294645, 0.019143402576446533, 0.006894122343510389, -0.01586713269352913, -0.002416799310594797, 0.023639090359210968, 0.007143882568925619, -0.005726125091314316, 0.002538006752729416, 0.019011175259947777, -0.0016509898705407977, -0.010041838511824608, -0.0047013727016747, -0.006141168065369129, -0.014934204518795013, -0.004249600227922201, 0.009204406291246414, -0.005630628205835819, 0.013068347238004208, -0.019143402576446533, -0.00012338807573542, -0.0017042476683855057, 0.0011982991127297282, -0.008477162569761276, -0.001983391586691141, 0.008124560117721558, 0.007610347121953964, -0.010489937849342823, -0.008866495452821255, 0.017615456134080887, 0.004859309643507004, 0.00720999576151371, -0.032439470291137695, 0.0050245919264853, -0.008175981231033802, 0.007625038735568523, -0.008484508842229843, -0.03088214248418808, 0.02784094214439392, 0.004319386091083288, 0.009454166516661644, 0.028457997366786003, -0.0031293511856347322, -0.013178535737097263, 0.013178535737097263, 0.019980834797024727, -0.03337974473834038, -0.019363779574632645, -0.0035994884092360735, 0.011606513522565365, 0.001981555251404643, -0.011782815679907799, 0.01887894980609417, 0.012759819626808167, 0.013589905574917793, 0.021450012922286987, -3.959896639571525e-05, 0.017923982813954353, -0.0130756925791502, 0.008389011956751347, -0.002295592101290822, -0.010203448124229908, -0.01322261057794094, -0.0033276902977377176, -0.03314467892050743, 0.045662082731723785, 0.0034984825178980827, -0.009417437016963959, -0.04266495630145073, 0.002310283947736025, -0.00780134042724967, 0.016778023913502693, 0.0018419831758365035, 0.019789841026067734, 0.005362503230571747, 0.02403576858341694, -0.016924941912293434, -0.000627614906989038, -0.005810603033751249, 0.006548865232616663, -0.002091743517667055, 0.01090865395963192, 0.011386137455701828, 0.008984029293060303, 0.008198019117116928, -0.020509738475084305, 0.00461322208866477, 0.021552855148911476, 0.0063284882344305515, -0.012671669013798237, -0.00729080056771636, -0.0026224844623357058, -0.005931810010224581, 0.027312036603689194, -0.028825292363762856, 0.007206323090940714, -0.0008360546780750155, -0.01887894980609417, 0.006365217734128237, -0.004503033589571714, -0.013398912735283375, -0.012921429239213467, -0.003952091559767723, -0.002306611044332385, -0.005333119537681341, -0.0046646432019770145, -0.037816666066646576, -0.009160330519080162, 0.002198259113356471, 0.00729080056771636, -0.003507664892822504, 0.0018162725027650595, -0.002943867351859808, 0.017101243138313293, 0.002049504779279232, 0.022977959364652634, -0.0025692267809063196, -0.004337750840932131, -0.013964545913040638, -0.005817948840558529, 0.003414004575461149, 0.012803894467651844, -0.017791757360100746, 0.009586392901837826, -0.0017299582250416279, -0.0007520359940826893, -0.012627593241631985, 0.02109741047024727, 0.0021101082675158978, 0.024711590260267258, 0.006343180313706398, -0.020406896248459816, 0.013347490690648556, 0.006218300200998783, -0.009542317129671574, 0.02196422591805458, -0.002793276449665427, -0.023330561816692352, -0.007110826205462217, 0.0010238341055810452, 0.004683007951825857, -0.017453845590353012, 0.007147555705159903, -0.005935483146458864, 0.0037078403402119875, -0.03664132207632065, -0.002943867351859808, 0.0025710631161928177, -0.00890322495251894, 0.00915298517793417, -0.0038823054637759924, 0.0014939713291823864, 0.009277865290641785, 0.019569464027881622, 0.016969017684459686, -0.00854327529668808, -0.0035186836030334234, 0.0293395034968853, -0.00013566949928645045, 0.00899137556552887, 0.013031617738306522, -0.009527625516057014, 0.0029787602834403515, 0.021832000464200974, -0.015103159472346306, 0.01586713269352913, -0.0006473569665104151, -0.013119768351316452, -0.008352282457053661, 0.009718619287014008, 0.025122961029410362, -0.0008966582827270031, 0.012186839245259762, -0.0005261496989987791, 0.0026537044905126095, -6.743302219547331e-05, -0.03581858426332474, -0.023830082267522812, 0.01132002379745245, 0.012010538019239902, -0.011496325954794884, 0.006192589178681374, -0.005057648755609989, -0.01361194346100092, -0.002648195018991828, -0.0031293511856347322, 0.008190672844648361, 0.00954966340214014, -0.005469018593430519, 0.006534173619002104, 0.011033534072339535, -0.0017115934751927853, 0.005494729150086641, 0.010254869237542152, 0.0204215869307518, 0.010754389688372612, 0.016528263688087463, 0.007669114042073488, 0.004429574590176344, 0.009483550675213337, 0.0005559924175031483, -0.01402331329882145, 0.005516767036169767, 0.003156898310407996, -0.005821621511131525, 0.011511017568409443, -0.013193227350711823, -6.289922748692334e-05, 0.004007185809314251, 0.014015967026352882, 0.0017216941341757774, -0.009248482063412666, -0.011327370069921017, 0.0005697659798897803, -0.02303672581911087, 0.023977000266313553, 0.003926381003111601, -0.0073532406240701675, -0.002971414476633072, -0.0013057327596470714, 0.024417754262685776, 0.01450814213603735, -0.00611913064494729, 0.0002369051071582362, 0.01058543473482132, 0.012524751015007496, 0.0009825134184211493, -0.01345033384859562, -0.0025986102409660816, 0.009615776129066944, -0.00182453659363091, -0.014045351184904575, -0.0020035929046571255, 0.0011826890986412764, 0.023565631359815598, -0.02174384891986847, -0.0026977797970175743, -0.029648032039403915, -0.010328328236937523, -0.019510697573423386, 0.026107311248779297, 0.009336632676422596, -0.025666557252407074, 0.009307248517870903, -0.002159693045541644, 0.00461322208866477, 0.001566512044519186, 0.0009085953934118152, -0.01124656479805708, 0.011364099569618702, -0.006093419622629881, 0.003900670213624835, -0.01579367369413376, 0.03625933825969696, 0.004503033589571714, -0.013722131960093975, -0.016425421461462975, 0.009366015903651714, 0.017439154908061028, -0.023022035136818886, -0.013332799077033997, 0.013141806237399578, 0.017453845590353012, -0.0016555810580030084, 0.004187160171568394, -0.016998400911688805, -0.004624241031706333, 0.014030659571290016, -0.002919993130490184, -0.006802298594266176, 0.0034874635748565197, 0.021023951470851898, 0.00010215384827461094, -0.010240177623927593, 0.014772594906389713, 0.006387255620211363, -0.0015031537041068077, 0.016131585463881493, 0.00629543187096715, -0.010137335397303104, 0.006479079369455576, 0.013009579852223396, 0.016719257459044456, -0.0020035929046571255, -0.011738739907741547, 0.011834236793220043, -0.0012488021748140454, 0.0052559878677129745, -0.020935799926519394, -0.00645704148337245, -0.010372404009103775, 0.015235385857522488, 0.007327530067414045, 0.03023570403456688, 0.005465345922857523, 0.00477483170107007, -0.006589267868548632, 0.014868090860545635, 0.013589905574917793, 0.0016831281827762723, -0.007434045430272818, -0.006655380595475435, 5.454900747281499e-05, -0.007331203203648329, -0.01459629274904728, -0.010247522965073586, 0.010467899963259697, -0.012385178357362747, 0.00020866932754870504, 0.010798465460538864, 0.012510059401392937, 0.0056085907854139805, -0.004165122285485268, 0.0036802934482693672, 0.007661768235266209, -0.016969017684459686, -0.023947617039084435, 0.015338228084146976, 0.031763650476932526, -0.0006230237195268273, 0.023741932585835457, 0.016939634457230568, 0.002359868725761771, -0.0025214783381670713, 0.001605996279977262, -0.009696581400930882, -0.022581281140446663, 0.022478438913822174, 0.0025178054347634315, 0.002954886294901371, 0.0019393162801861763, -0.010842541232705116, -0.02510826848447323, 0.01132002379745245, -0.012510059401392937, 0.006115457508713007, 0.006559884175658226, 0.009608430787920952, -0.01417023129761219, -0.008242093957960606, 0.026195460930466652, -0.010298945009708405, 0.04357584938406944, -0.004712391644716263, 0.045191943645477295, -0.00965250562876463, 0.00427163764834404, -0.031293511390686035, -0.0013424622593447566, -0.005417597480118275, -0.0006303695845417678, 0.004334078170359135, 0.0053221010603010654, -0.007683806121349335, 0.02253720536828041, 0.01887894980609417, 0.010041838511824608, 0.0004738102143164724, 0.004323059227317572, -0.007415680680423975, 0.02579878270626068, 0.006350526120513678, -0.003922707866877317, -0.002536170184612274, -0.013024271465837955, -0.021876074373722076, -0.00680597173050046, 0.0013727641198784113, 0.023741932585835457, -0.005020919255912304, -0.0035443943925201893, -0.0156173724681139, 0.006324815563857555, -0.0014140848070383072, -0.02164100669324398, 0.022919192910194397, 0.010401787236332893, -0.016454804688692093, 0.013266686350107193, 0.006614978425204754, 0.02407984435558319, -0.008374320343136787, -0.008734269067645073, 0.007334875874221325, 0.005693068727850914, 0.021729156374931335, -0.013009579852223396, 0.013406258076429367, 0.012671669013798237, 0.00696023553609848, -0.007816032506525517, 0.0031642441172152758, -0.006229318678379059, 0.003092621685937047, -0.010952729731798172, 0.004517725203186274, 0.004058606922626495, 0.010725006461143494, 0.006056690122932196, -0.006313796620815992, -0.03158734738826752, 0.012980196624994278, -0.012671669013798237, -0.0037427335046231747, 0.002102762460708618, 0.00604567164555192, -0.005762854591012001, 0.02002490870654583, -0.009953687898814678, 0.028002550825476646, -0.001835555536672473, 0.0034635893534868956, -0.006394601427018642, -0.018614497035741806, -0.0038786325603723526, -0.02156754769384861, -0.004683007951825857, -0.009755348786711693, -0.011547747068107128, 0.002378233475610614, 0.0019393162801861763, -0.0051862020045518875, -0.0018401467241346836, -0.0034544069785624743, -0.0049474602565169334, -0.0062476834282279015, -0.0004917158512398601, 0.0023157934192568064, 0.01542637962847948, 0.006651707924902439, 0.00979942362755537, -0.0072246878407895565, -0.0006891367374919355, -0.016072817146778107, 0.0053918869234621525, 0.017189394682645798, 0.019936759024858475, -0.023330561816692352, -0.014486105181276798, 0.0010495447786524892, 0.0010688276961445808, 0.001295632217079401, 0.005318427924066782, -0.007926221005618572, -0.012128072790801525, -0.0030154897831380367, 0.01090865395963192, -0.0065562110394239426, -0.0031789359636604786, -0.022081760689616203, -0.005138453561812639, 0.0036802934482693672, -0.008521238341927528, 0.01992206647992134, -0.004778504837304354, 0.013971892185509205, 0.010578088462352753, 0.008389011956751347, 0.013891086913645267, 0.02747364714741707, 0.01073235273361206, 0.02729734592139721, -0.006354199256747961, 0.011760777793824673, 0.030676456168293953, 0.0039337268099188805, -0.005182528868317604, 0.009160330519080162, -0.0071365367621183395, 0.010849886573851109, -0.019642923027276993, -0.0006487343343906105, 0.007356913760304451, -0.03311529383063316, -0.002820823574438691, 0.026195460930466652, 0.0005275270668789744, 0.009358669631183147, 0.0031917912419885397, 0.0048115612007677555, 0.017571380361914635, 0.016175661236047745, 0.011613859795033932, 0.014728519134223461, 0.009167676791548729, -0.0021248001139611006, 0.005626955535262823, 0.004925422370433807, -0.026107311248779297, 0.0015848767943680286, 0.01200319267809391, 0.006019961088895798, -0.00772053562104702, -0.01067358534783125, -0.026753749698400497, 0.013898433186113834, -0.01542637962847948, 0.01526477001607418, -0.0008300861227326095, 0.007320184260606766, -0.01740977168083191, 0.006361545063555241, 0.020906416699290276, 0.005546150729060173, 0.003540721256285906, -0.0018952408572658896, 0.0027602200862020254, -0.006232991814613342, -0.015955284237861633, 0.016748640686273575, 0.010489937849342823, -0.031293511390686035, 0.0006184325320646167, 0.006210953928530216, 0.00280796829611063, -0.007911528460681438, 0.00672516692429781, 0.019393162801861763, 0.0009962869808077812, -0.002875917823985219, -0.00628808606415987, -0.011834236793220043, 0.013986583799123764, -0.005612263921648264, 0.02747364714741707, 0.0038933244068175554, -0.004554454702883959, 0.029119126498699188, -0.008873840793967247, 0.03105844371020794, 0.00829351507127285, 0.006589267868548632, 0.008866495452821255, 0.020054293796420097, -0.0009623122168704867, -0.005997923202812672, -0.015338228084146976, 0.021876074373722076, -0.012421907857060432, -0.004422228783369064, -0.03255700692534447, -0.01837942935526371, 0.001580285606905818, 0.025446180254220963, -0.021229635924100876, 0.01852634735405445], "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94": [-0.021697666496038437, -0.0025486755184829235, -0.0040604835376143456, 0.02636008895933628, -0.012588542886078358, -0.0023068557493388653, 0.016520287841558456, 0.0431169793009758, 0.0002160502626793459, 0.01972135528922081, 0.021461065858602524, -0.00031706219306215644, 0.019067224115133286, 0.0037125416565686464, 0.03418182581663132, 0.03821795433759689, -0.014126447029411793, -0.006903170142322779, 0.0041822632774710655, -0.05196862295269966, 0.06062542274594307, -0.017007406800985336, -0.020500745624303818, 0.029588991776108742, 0.00896298699080944, 0.01585223898291588, -0.006645692978054285, 0.020779099315404892, -0.01029212586581707, -0.01331226248294115, 0.003423749702051282, 0.023033762350678444, 0.006659610662609339, 0.021127041429281235, 0.028893107548356056, -0.01664554700255394, 0.013263550586998463, 0.009157834574580193, -0.009227422997355461, -0.022129114717245102, -0.002783536445349455, 0.01351406890898943, 0.006301230285316706, -0.0058036730624735355, -0.01604708656668663, 0.010786203667521477, -0.010250372812151909, 0.024272436276078224, -0.013813299126923084, -0.006276874337345362, 0.014502224512398243, -0.017758961766958237, 0.0007319830474443734, -0.011384663172066212, 0.020528580993413925, -0.043061308562755585, 0.010772285982966423, 0.01351406890898943, 0.009269176051020622, -0.057006824761629105, 0.005299157463014126, -0.01642286404967308, 0.03663133829832077, -0.032372526824474335, 0.02620699442923069, 0.031398288905620575, -0.011976164765655994, -0.005821070168167353, -0.03501688688993454, 0.021739419549703598, 0.0284894946962595, -0.0011621264275163412, -0.014168200083076954, 0.012922567315399647, 0.04314481467008591, 0.007905242964625359, 0.008114008232951164, 0.03688185662031174, 0.014049899764358997, -0.03663133829832077, 0.022282209247350693, -0.002106789033859968, 0.057118166238069534, 0.020458992570638657, 0.07081316411495209, 0.03164880722761154, -0.017981644719839096, -0.05263667181134224, -0.014836248941719532, -0.025664204731583595, -0.011753481812775135, -0.01821824535727501, -0.022936338558793068, 0.0009646693360991776, -0.021878596395254135, 0.018830623477697372, 0.04484277218580246, -0.0007667772588320076, -0.009923307225108147, -0.03535091131925583, -0.014307376928627491, -0.010438261553645134, 0.015601721592247486, -0.0031645328272134066, 0.043283991515636444, -0.004773764871060848, 0.015184191055595875, -0.000280093343462795, -0.033875636756420135, 0.03498905152082443, 0.023534798994660378, 0.008642880246043205, -0.02171158418059349, 0.01027124933898449, -0.031398288905620575, -0.003555967705324292, -0.08239267766475677, 0.0012012699153274298, -0.014697072096168995, -0.03025704063475132, 0.0266245249658823, -0.05650578811764717, -0.0036151178646832705, -0.01874711737036705, -0.014599648304283619, 0.0008150542271323502, 0.004366672597825527, 0.0491015799343586, 0.02350696362555027, -0.0012099684681743383, -0.001887585618533194, -0.03309624642133713, 0.017202254384756088, 0.00015461674774996936, -0.007515548262745142, 0.032038502395153046, -0.01486408431082964, 0.04459225386381149, 0.0021885554306209087, 0.01561563927680254, -0.053777921944856644, -0.013207879848778248, -0.005880220327526331, 0.030618900433182716, 0.006523913238197565, 0.0005427895812317729, -0.001284776022657752, 0.03930353373289108, -0.006377777550369501, -0.0017988603794947267, -0.08951853215694427, -0.016617711633443832, -0.04264377802610397, -0.018621858209371567, 0.041335515677928925, -0.03304057568311691, 0.006572625134140253, 0.0042796870693564415, -0.01066790334880352, 0.060903776437044144, 0.012310189194977283, -0.023451292887330055, 0.002839206950739026, 0.02636008895933628, 0.04851703718304634, 0.02313118614256382, 0.037661246955394745, 0.02583121694624424, -0.02598431147634983, 0.01574089750647545, 0.01766153797507286, -0.01126636378467083, 0.02616524137556553, 0.0077312723733484745, -0.03145395964384079, 0.00785653106868267, 0.04915725067257881, 0.021210547536611557, 0.03159313648939133, 0.006617857608944178, -0.022393550723791122, 0.05544804409146309, -0.008155761286616325, -0.0019467357778921723, 0.024077588692307472, 0.01739710196852684, 0.03178798407316208, 0.03407048434019089, 0.021307971328496933, -0.004272728227078915, -0.019262071698904037, 0.0001748408831190318, -0.011106310412287712, 0.016186263412237167, -0.02452295459806919, -0.004394507966935635, 0.011746522970497608, 0.020681675523519516, -0.030229205265641212, 0.017870303243398666, 0.008002666756510735, -0.06318627297878265, -0.01400118786841631, 0.026151323691010475, -0.019582178443670273, 0.027807528153061867, -0.013834175653755665, -0.022282209247350693, 0.015323367901146412, -0.03654783219099045, 0.03089725412428379, -0.04904590919613838, -0.006339503917843103, -0.02642967738211155, 0.031509630382061005, 0.00954057089984417, -0.0011951809283345938, 0.03482203930616379, -0.012442407198250294, -0.01567130908370018, 0.00785653106868267, 0.026179159060120583, -0.011502963490784168, -0.03170447796583176, -0.05113356187939644, 0.004554561339318752, -0.015003261156380177, 0.02392449416220188, -0.031732313334941864, -0.006635254714637995, 0.003959580324590206, -0.023520881310105324, -0.02642967738211155, -0.024495119228959084, -0.019178565591573715, 0.03164880722761154, 0.062072861939668655, -0.008976904675364494, -6.409744673874229e-05, 0.006461283657699823, 0.022017773240804672, 0.03343027085065842, -0.017035242170095444, 0.0008376704645343125, 0.00909520499408245, 0.030312711372971535, -0.030284876003861427, 0.0547521598637104, -0.00223030848428607, 0.01848268136382103, -0.005935891065746546, -0.008253185078501701, -0.01064702682197094, 0.01938733085989952, -0.03535091131925583, 0.04194789379835129, 0.0253023449331522, -0.007390289101749659, 0.017939891666173935, -0.01053568534553051, 0.010521767660975456, 0.01781463250517845, -0.015337285585701466, 0.014460471458733082, 0.014168200083076954, 0.013966393657028675, 0.03883033245801926, -0.009951142594218254, -0.007919160649180412, -0.006621337030082941, 0.03551792353391647, 0.017536278814077377, -0.035824112594127655, 0.023715728893876076, 0.023298198357224464, 0.00011112399079138413, 0.00783565454185009, -0.009067369624972343, 0.03070240654051304, 0.0021607200615108013, -0.02237963303923607, 0.019930120557546616, 0.002806152682751417, 0.021433230489492416, 0.048684049397706985, 0.006450845394283533, -0.029644662514328957, -0.019206400960683823, -0.03958188742399216, -0.013451439328491688, -9.106295692618005e-06, 0.0032984905410557985, -0.005678413901478052, 0.023270362988114357, -0.013527986593544483, -0.002539976965636015, 0.018357422202825546, 0.014390883035957813, -0.0009898950811475515, 0.05631094053387642, 0.011850905604660511, -0.033986978232860565, -0.018120821565389633, 0.005233048461377621, 0.045566488057374954, -0.01355582196265459, 0.04871188476681709, 0.013152209110558033, -0.005469649098813534, 0.04893456771969795, -0.000566275673918426, -0.03153746575117111, -0.009310929104685783, -0.014237788505852222, 0.0031158209312707186, 0.033124081790447235, -0.023367786779999733, -0.018914129585027695, -0.017146583646535873, -0.017480608075857162, -0.0041822632774710655, 0.02853124774992466, -0.04659639671444893, 0.037243716418743134, 0.021015699952840805, -0.031203443184494972, 0.005274801515042782, 0.013082620687782764, -0.032901398837566376, 0.0038517185021191835, -0.03846847265958786, -0.018176492303609848, -0.02789103426039219, 0.0363808199763298, -0.06168316677212715, 0.0017205734038725495, -0.03543441742658615, -0.03888600319623947, 0.003938703797757626, -0.04116850346326828, -0.008072255179286003, -0.018802788108587265, 0.03610246628522873, 0.01679864153265953, 0.020500745624303818, 0.020236309617757797, 0.017369266599416733, 0.005135624669492245, -0.031815819442272186, 0.0017814632738009095, 0.0007450308767147362, 0.011127186939120293, -0.002376444172114134, 0.003764732973650098, 0.03156530112028122, -0.014975425787270069, -0.014168200083076954, 0.0223100446164608, 0.016353275626897812, -0.009999854490160942, -0.00732070067897439, -0.015963580459356308, 0.02122446522116661, 0.004446699284017086, 0.0011360307689756155, -0.00048798872740007937, 0.0341261550784111, -0.0058280290104448795, -0.01362541038542986, -0.027014220133423805, 0.009290052577853203, -0.006269915495067835, -0.020194556564092636, 0.004491931758821011, -0.04044478386640549, -0.028280729427933693, 0.02448120154440403, -0.00718848267570138, 0.012129259295761585, 0.020681675523519516, 0.016993489116430283, -0.03986024111509323, -0.01327050942927599, 0.017633702605962753, 0.01679864153265953, 0.01567130908370018, 0.033124081790447235, -0.018802788108587265, -0.01777287945151329, -0.020417239516973495, -0.022365715354681015, 0.014105570502579212, -0.026499265804886818, -0.04102932661771774, -0.005539237521588802, -0.02246313914656639, -0.0003533786511979997, -0.009150875732302666, 0.021015699952840805, -0.017118748277425766, 0.0037055828142911196, -0.024620378389954567, -0.0026460993103682995, -0.029143625870347023, 0.04225408285856247, -0.03504472225904465, -0.012087506242096424, -0.002684372942894697, 0.008037460967898369, 0.008204473182559013, 0.014209953136742115, 0.00956144742667675, -0.002599127124994993, 0.05380575731396675, 0.02970033325254917, -0.0023346911184489727, -0.030006522312760353, 0.04796032980084419, -0.03471069782972336, -0.00353335146792233, 0.026610607281327248, -0.0010438261087983847, 0.01890021190047264, 0.00598112354055047, 0.01528161484748125, 0.007515548262745142, -0.05302636697888374, 0.01080012135207653, 0.018204327672719955, -0.00671180197969079, 0.006896211300045252, 0.051829446107149124, -0.008294938132166862, 0.008552415296435356, -0.017689373344182968, -0.007195441517978907, -0.03457152098417282, -0.02627658285200596, 0.024202847853302956, 0.0007937427726574242, -0.019067224115133286, -0.0121849300339818, -0.011509922333061695, 0.022170867770910263, -0.03696536272764206, -0.05555938556790352, -0.040806643664836884, -0.003966539166867733, 0.0025312784127891064, -0.017675455659627914, -0.0029261924792081118, 0.023632222786545753, -0.014627483673393726, -0.01976310834288597, 0.004853791557252407, -0.015253779478371143, 0.019443001598119736, 0.020862605422735214, 0.02129405364394188, -0.04281079024076462, -0.018552269786596298, -0.01825999841094017, 0.016770806163549423, 0.01523986179381609, 0.000882902939338237, 0.0030114382971078157, 0.006280353758484125, -0.00205807713791728, 0.006175971124321222, 0.03156530112028122, 0.03457152098417282, -0.025970393791794777, 0.029421979561448097, 0.028294647112488747, 0.023214692249894142, 0.004457137547433376, -0.01015990786254406, 0.004864229820668697, 0.006739637348800898, 0.018204327672719955, -0.018649693578481674, -0.0017153542721644044, 0.002162459772080183, 0.003246299223974347, -0.003587282495573163, 0.019707437604665756, -0.00929701142013073, -0.0018910650396719575, 0.01018078438937664, 0.008795974776148796, -0.006186409387737513, -0.03546225279569626, 0.024801308289170265, -0.0008572422084398568, -0.00042622900218702853, -0.018914129585027695, -0.013444480486214161, -0.013360974378883839, 0.014112529344856739, -0.03306841105222702, 0.0318714901804924, -0.006558707449585199, 0.003380256937816739, -0.004787682555615902, -0.020500745624303818, 0.03958188742399216, -0.029199296608567238, 0.022922420874238014, -0.010695738717913628, 0.010772285982966423, -0.03176014870405197, 0.04698609188199043, -0.03295706957578659, 0.001974571030586958, 0.013896805234253407, 0.027389997616410255, -0.010187743231654167, -0.003338503884151578, 0.030173534527420998, -0.01976310834288597, -0.012247559614479542, -0.03459935635328293, -0.018872376531362534, -0.0006832712097093463, -0.00021213591389823705, -0.013166126795113087, -0.007271988783031702, -0.034098319709300995, 0.028211141005158424, -0.04542731121182442, -0.011273322626948357, 0.02815547026693821, -0.014335212297737598, -0.0020145843736827374, 0.0051251864060759544, -0.010034648701548576, 0.007445959839969873, 0.004892065189778805, 0.021280135959386826, -0.022407468408346176, -0.03381996601819992, 0.018051233142614365, -0.018454845994710922, -0.008496744558215141, -0.0019206401193514466, 0.02178117260336876, -0.01739710196852684, 0.014975425787270069, -0.007898284122347832, 0.002496484201401472, 0.0016153209144249558, 0.017745044082403183, -0.010653985664248466, 0.010278208181262016, -0.020709510892629623, -0.009331805631518364, 0.018246080726385117, -0.007369412574917078, -0.0054104989394545555, -0.02320077456533909, -0.012525913305580616, 0.029672497883439064, -0.006798787508159876, -0.011273322626948357, 0.017939891666173935, 0.012887773104012012, -0.028016293421387672, 0.0002444292767904699, 0.0043771108612418175, 0.027055973187088966, 0.030090028420090675, -0.021836843341588974, 0.027348244562745094, -0.004961653612554073, 0.0073972479440271854, 0.06919871270656586, -0.02264406904578209, 0.010772285982966423, -0.04603968933224678, -0.006026356015354395, 0.02339562214910984, 0.013548863120377064, -0.0018928047502413392, 0.011461210437119007, 0.015796568244695663, 0.019804861396551132, -0.016408946365118027, -0.012637254782021046, -0.009436188265681267, -0.002381663303822279, 0.013639328069984913, 0.020793016999959946, -0.01679864153265953, -0.0070562646724283695, -0.02051466330885887, 0.021906431764364243, 0.005539237521588802, -0.00657958397641778, 0.04183655232191086, 0.033541612327098846, 0.037883929908275604, 0.013193962164223194, 0.017202254384756088, 0.006520433817058802, -0.042727284133434296, 0.020013626664876938, 0.01799556240439415, 0.028141552582383156, 0.00384823908098042, -0.003980456851422787, -0.019053306430578232, -0.01983269676566124, 0.033235423266887665, -0.0018980238819494843, 0.007578177843242884, 0.005915014538913965, 0.014063817448914051, 0.012505036778748035, -0.00016559867071919143, 0.012623337097465992, 0.040027253329753876, -0.018761035054922104, 0.03727155178785324, -0.008538497611880302, -0.01671513542532921, -0.0016979571664705873, -0.006200327072292566, 0.014850166626274586, -0.0020545977167785168, 0.023743564262986183, -0.03510039299726486, -0.021085288375616074, 0.009631035849452019, -0.022992009297013283, 0.003956100903451443, -0.02729257382452488, 0.015031096525490284, -0.01976310834288597, 0.001121243229135871, -0.007933078333735466, -0.0036499120760709047, -0.02762659825384617, -0.006182929966598749, 0.034515850245952606, -0.008441073819994926, -0.0032323815394192934, 0.009811965748667717, 0.0015709582949057221, 0.014335212297737598, 0.01126636378467083, -0.02489873208105564, 0.005006886087357998, 0.0026339213363826275, 0.026708031073212624, -0.0012569406535476446, -0.01863577589392662, 0.007619930896908045, 0.011906576342880726, 0.00954057089984417, 0.011864823289215565, 0.03565710037946701, -0.03880249708890915, -0.00847586803138256, 0.013507110066711903, 0.016353275626897812, -0.0024321149103343487, 0.020751263946294785, -0.009060410782694817, 0.026401842013001442, -0.017257925122976303, 0.0149058373644948, -0.03601896017789841, 0.017188336700201035, -0.011363786645233631, -0.024091506376862526, 0.004008292220532894, -0.028280729427933693, 0.008023543283343315, 0.014279541559517384, -0.017870303243398666, -0.022407468408346176, -0.015114602632820606, -0.030646735802292824, 0.029338473454117775, -0.017522361129522324, -0.011224610731005669, 0.000517563777975738, -0.024731719866394997, 0.008489785715937614, 0.009533612057566643, -0.031036430969834328, -0.006816184613853693, -0.019039388746023178, 0.0397488996386528, 0.011377704329788685, -0.013938558287918568, 0.02237963303923607, -0.0010499150957912207, -0.015114602632820606, -0.022741490975022316, -0.02452295459806919, -0.03660350292921066, 0.010264290496706963, -0.007035388145595789, -0.007038867566734552, 0.016729053109884262, -0.014126447029411793, -0.022824997082352638, -0.005528799258172512, 3.427772753639147e-05, 0.02474563755095005, 0.005866302642971277, 0.0008576771360822022, 0.031203443184494972, 0.003362859832122922, 0.025956476107239723, -0.030006522312760353, 0.032901398837566376, 0.005636661313474178, 0.05274801328778267, -0.015810485929250717, 0.034961216151714325, -0.01852443441748619, -0.004700697027146816, -0.01728576049208641, 0.0017614566022530198, 0.001339576905593276, -0.0026408801786601543, 0.00894211046397686, 0.0013708916958421469, 0.020987864583730698, -0.00584890553727746, 0.010361714288592339, 0.0019275989616289735, 0.017522361129522324, -0.006482160184532404, 0.0006550009129568934, -0.0047842031344771385, 0.02864258922636509, -0.00021800743706990033, 0.019248154014348984, -0.02616524137556553, 0.02665236033499241, -0.052052129060029984, -0.024091506376862526, -0.004293604753911495, 0.03827362507581711, 0.02122446522116661, -0.03156530112028122, -0.03986024111509323, 0.024759555235505104, -0.024940485134720802, 0.019429083913564682, -0.0074877128936350346, -0.007494671735912561, -0.0031523548532277346, 0.025511110201478004, 0.029644662514328957, 0.012644213624298573, 0.022588398307561874, -0.021850761026144028, 0.014724907465279102, 0.00832277350127697, -0.0033541612792760134, 0.017299678176641464, -0.0033976540435105562, 0.025928640738129616, 0.03640865534543991, 0.020987864583730698, 0.018761035054922104, 0.05536453798413277, 0.0359911248087883, 0.015476462431252003, 0.03329109400510788, -0.002992301480844617, -0.008733345195651054, 0.015490380115807056, -0.03596328943967819, -0.033124081790447235, -0.006805746350437403, -0.026499265804886818, -0.015657391399145126, 0.04732011631131172, 0.0014517881209030747, 0.0020632962696254253, -0.03395914286375046, 0.04492627829313278, -0.0007946126279421151, -0.030424052849411964, 0.013451439328491688, 0.017188336700201035, 0.0008341910433955491, -0.0048259561881423, -0.0016857791924849153, 0.006040273699909449, -0.024606460705399513, 0.008448032662272453, 0.009554488584399223, -0.006088985595852137, 0.008406279608607292, 0.007717354688793421, -0.01998579129576683, 0.017870303243398666, 0.0453716404736042, -0.0007946126279421151, -0.0183713398873806, -0.014683154411613941, -0.01954042539000511, -0.025747710838913918, 0.019888367503881454, 0.010306043550372124, -0.01582440361380577, -0.015726979821920395, 0.02257448062300682, -0.039832405745983124, 0.007689519319683313, 0.025511110201478004, 0.020458992570638657, 0.019582178443670273, -0.011161981150507927, -0.023938411846756935, -0.01075836829841137, 0.003321106778457761, 0.010090319439768791, 0.027835363522171974, 0.03999941796064377, 0.02647143043577671, 0.025859052315354347, -0.011864823289215565, -0.0035281323362141848, -0.005873261485248804, -0.01642286404967308, -0.01578265056014061, 0.013221797533333302, 0.009227422997355461, 0.032372526824474335, 0.011864823289215565, -0.0021589803509414196, -0.03696536272764206, 0.016450699418783188, -0.0059254528023302555, -0.03070240654051304, -0.006419530604034662, 0.018983718007802963, 0.01318004447966814, 0.00991634838283062, 0.013924640603363514, 0.009617118164896965, 0.032483868300914764, 0.06407700479030609, 0.017647620290517807, -0.032595209777355194, 0.027153396978974342, -0.0024408134631812572, 0.015406874008476734, 0.030006522312760353, 0.01679864153265953, 0.01167693454772234, 0.0015848759794607759, 0.00042666392982937396, 0.02777969278395176, 0.033875636756420135, -0.021878596395254135, -8.617002458777279e-05, -0.017967727035284042, -0.023033762350678444, 0.015434709377586842, -0.00038708551437593997, -0.006931005511432886, -0.011370745487511158, -0.019749190658330917, 0.010152949020266533, 0.019888367503881454, 0.0260538998991251, 0.02695854939520359, -0.006875334773212671, -0.004439740441739559, 0.011871782131493092, -0.007912201806902885, 0.004317960701882839, 0.009436188265681267, -0.0014909316087141633, -0.012470242567360401, 0.026081735268235207, -0.029978686943650246, -0.006221203599125147, 0.004669382236897945, 0.01892804726958275, -0.026346171274781227, 0.029004449024796486, 0.0027557010762393475, 0.007038867566734552, 0.03930353373289108, -0.013451439328491688, -0.019206400960683823, 0.034209661185741425, 0.01615842804312706, 0.007724313531070948, -0.008107049390673637, -0.006367339286953211, 0.012929526157677174, -0.039053015410900116, -0.02631833590567112, -0.005692331586033106, 0.0641326755285263, -0.05227481201291084, 0.04459225386381149, 0.007181523833423853, 0.016144510358572006, -0.00035468340502120554, 0.016882147639989853, -0.0024025398306548595, -0.008969945833086967, -0.013743710704147816, 0.029561156406998634, 0.007738231215626001, 0.009227422997355461, -0.017452772706747055, 0.0059985206462442875, -0.007017991039901972, 0.03125911206007004, 0.01600533351302147, 0.04114066809415817, -0.00316801224835217, -0.0048329150304198265, -0.007703437004238367, -0.022588398307561874, -0.029115790501236916, 0.0049790507182478905, 0.016255851835012436, -0.00682314345613122, -0.0020667756907641888, -0.01180915255099535, -0.01375762838870287, 0.02718123234808445, -0.013562780804932117, -0.021878596395254135, 0.0006384736625477672, -0.01561563927680254, -0.003265436040237546, -0.034321002662181854, 0.007619930896908045, 0.027849281206727028, 4.55858425993938e-05, -0.014710989780724049, -0.02193426713347435, 0.024077588692307472, 0.0003268480650149286, -0.03418182581663132, -0.03468286246061325, 0.004923379980027676, 0.01244936604052782, 0.010577438399195671, -0.0011908316519111395, 0.008267102763056755, 0.009457064792513847, 0.011238528415560722, -0.015448627062141895, 0.009624077007174492, -0.004342316649854183, 0.006763993296772242, 0.011704769916832447, -0.02729257382452488, 0.010772285982966423, 0.0030601501930505037, 0.014822331257164478, -0.03557359427213669, 0.017828550189733505, -0.02474563755095005, -0.01746669039130211, -0.006767472717911005, 0.019317742437124252, -0.00023921015963423997, 0.010299084708094597, -0.012525913305580616, 0.004380590282380581, -0.03220551460981369, -0.01102280430495739, -0.020264144986867905, -0.01709091290831566, 0.02815547026693821, -0.03576844185590744, 0.009749336168169975, -0.013973352499306202, 0.012066629715263844, -0.02414717711508274, -0.036687009036540985, 0.027751857414841652, -0.03660350292921066, -0.00706670293584466, 0.022393550723791122, -0.005427896045148373, -0.003667309181764722, -0.005775837693363428, 0.019178565591573715, -0.031927160918712616, -0.019095059484243393, -0.027264738455414772, -0.0003644692769739777, -0.03465502709150314, 0.008622003719210625, -0.016436781734228134, -0.009039534255862236, 0.031286947429180145, 0.0374942347407341, 0.016923900693655014, 0.006708322558552027, -0.01896980032324791, -0.022365715354681015, 0.003392434911802411, -0.02162807807326317, -0.010584397241473198, -0.01167693454772234, -0.018580105155706406, -0.0004055699391756207, 0.01863577589392662, 0.008844686672091484, -0.03977673500776291, 0.018830623477697372, 0.03003435768187046, -0.011489045806229115, -0.010306043550372124, -0.027348244562745094, -0.02939414419233799, -0.021015699952840805, 0.013653245754539967, 0.002486045937985182, -0.02826681174337864, -0.010744450613856316, 0.014432636089622974, -0.034404508769512177, -0.024133259430527687, 0.0023799235932528973, -0.03100859560072422, 0.00671180197969079, -0.005132145248353481, -0.0021537612192332745, -0.06390999257564545, -0.0038830332923680544, -0.03632514923810959, 0.01679864153265953, -0.0024895253591239452, -0.0020876522175967693, 0.013430562801659107, -0.00556707289069891, -0.021127041429281235, -0.00572712579742074, 0.018009480088949203, -0.018468763679265976, 0.0329849049448967, -0.003075807588174939, -0.006920567248016596, 0.009644953534007072, -0.006979717407375574, -0.017856385558843613, 0.012226683087646961, -0.006506516132503748, -0.013994229026138783, 0.02089044079184532, 0.024133259430527687, -0.004617190919816494, -0.025845134630799294, 0.02406367100775242, -0.026457512751221657, -0.024578625336289406, -0.01620018109679222, -0.031286947429180145, 0.007612972054630518, 0.014390883035957813, -0.00896298699080944, -0.010953215882182121, -0.0067465961910784245, 0.008461950346827507, 0.0002152891393052414, -0.018983718007802963, 0.002576510887593031, 0.038190118968486786, 0.014008146710693836, 0.0004212273343000561, -0.005995041225105524, 0.013402727432549, 0.009846759960055351, -0.019623931497335434, 0.009617118164896965, -0.014919755049049854, -0.012832102365791798, 0.014216911979019642, 0.00916479341685772, 0.020946111530065536, -0.018246080726385117, -0.01660379394888878, -0.014571812935173512, 0.005674934480339289, 0.0326230451464653, -0.0298116747289896, 0.0076338485814630985, 0.007028429303318262, 0.029087955132126808, 0.02197602018713951, 0.006499557290226221, -0.0015544310444965959, -0.010125113651156425, 0.0012569406535476446, 0.032678715884685516, 0.03510039299726486, 0.02583121694624424, -0.007842613384127617, 0.02733432687819004, 0.010605273768305779, -0.0176197849214077, 0.017564114183187485, 0.0036638297606259584, 0.033680789172649384, -0.003903909819200635, 0.02470388449728489, 0.005494005046784878, 0.010869709774851799, -0.04904590919613838, -0.008134884759783745, 0.00023681805760134012, -0.011892658658325672, -0.003307189093902707, -0.01379938144236803, -0.0006558707682415843, -0.019637849181890488, -0.005118227563798428, 0.009303970262408257, 0.017745044082403183, -0.020598169416189194, 0.004168345592916012, 0.0023538279347121716, -0.025107497349381447, 0.06780694425106049, -0.024731719866394997, 0.018009480088949203, -0.0198744498193264, -0.010020731016993523, 0.009283093735575676, -0.009387476369738579, 0.01042434386909008, -0.012310189194977283, -0.022964173927903175, -0.001437870436348021, 0.0012638994958251715, -0.004210098646581173, -0.0048572709783911705, -0.011189816519618034, -0.008768139407038689, -0.014878001995384693, -0.03137045353651047, 0.008837727829813957, -0.021154876798391342, 0.005765399429947138, -0.008907316252589226, 0.003004479454830289, -0.015880074352025986, 0.01251895446330309, -0.005006886087357998, 0.03036838211119175, 0.004655464552342892, -0.021474983543157578, 0.0025121415965259075, -0.00810009054839611, 0.003333284752443433, -0.0046867793425917625, 0.005831508431583643, 0.01702132448554039, -0.010389549657702446, 0.002559113781899214, 0.0070319087244570255, -0.011732605285942554, -0.004860750399529934, 0.0032132447231560946, 0.028809601441025734, -0.01773112639784813, 0.027320409193634987, -0.022936338558793068, 0.012226683087646961, -0.0022738012485206127, -0.022518809884786606, -0.017160501331090927, -0.0027052494697272778, 0.01203183550387621, -0.002070255111902952, -0.013166126795113087, 0.012999114580452442, 0.01417515892535448, -0.006148135755211115, -0.003789088921621442, 0.03292923420667648, 0.018844541162252426, -0.02089044079184532, -0.03273438662290573, -0.00903257541358471, 0.014919755049049854, -0.01280426699668169, 0.00847586803138256, -0.0016762107843533158, 0.010528726503252983, 0.024119341745972633, 0.0024199369363486767, 0.002858343767002225, 0.0011195035185664892, -0.0166873000562191, -0.018566187471151352, 0.018510516732931137, 0.01441871840506792, 0.025886887684464455, -0.02366005815565586, -0.028781766071915627, -0.021725501865148544, -0.01044522039592266, -0.019317742437124252, 0.003375037806108594, -0.015462544746696949, 0.022922420874238014, -0.015810485929250717, -0.0034498453605920076, 0.017035242170095444, 0.0044745346531271935, 0.025664204731583595, 4.6510063839377835e-05, 0.003277614014223218, -0.02793278731405735, -0.00019636978686321527, -0.0012525913771241903, -0.0014517881209030747, 0.008559374138712883, 0.030173534527420998, 0.002223349642008543, 0.005591428838670254, 0.0059254528023302555, 0.00229119835421443, 0.031927160918712616, 0.023785317316651344, -0.03276222199201584, -0.012101423926651478, -0.0014526579761877656, -0.038245789706707, 0.0009029096108861268, -0.0036812268663197756, 0.0016361974412575364, 0.014710989780724049, -0.014836248941719532, 0.012929526157677174, -0.0003270655288361013, -0.012866896577179432, 0.00858720950782299, 0.004286645911633968, 0.038524143397808075, 0.012400654144585133, 0.006924046669155359, -0.008155761286616325, 0.0012282354291528463, -0.0012082287576049566, -0.004300563596189022, -0.028503412380814552, 0.0352395698428154, -0.0168682299554348, 0.02096002921462059, -0.009171752259135246, 0.029950851574540138, 0.02084868773818016, 0.024940485134720802, -0.05294286087155342, -0.02751525677740574, 0.01089058630168438, 0.009992895647883415, 0.013632369227707386, 0.003587282495573163, 0.003187149064615369, -0.01814865693449974, 0.001967612188309431, 0.026039982214570045, -0.005469649098813534, 0.024077588692307472, 0.008086172863841057, -0.0024512517265975475, -0.037104539573192596, -0.02133580669760704, -0.007466836366802454, 0.022184785455465317, 0.01597749814391136, -0.03404264897108078, 0.006708322558552027, 0.022226538509130478, 0.019484754651784897, 0.003502036677673459, 0.010953215882182121, -0.002625222783535719, 0.01757803186774254, -0.0030062191653996706, -0.003173231380060315, 0.013388809747993946, -0.010250372812151909, 0.005695811007171869, -0.0020980904810130596, -0.03883033245801926, 0.02308943308889866, 0.02320077456533909, -0.01934557780623436, 0.03320758789777756, -0.010090319439768791, -0.009853718802332878, 0.006506516132503748, 0.01750844344496727, -0.020236309617757797, -0.009742377325892448, -0.01042434386909008, -0.016854312270879745, -0.004777244292199612, 0.0060924650169909, 0.007244153413921595, -0.003308928804472089, -0.03986024111509323, 0.014363047666847706, -0.012679007835686207, -0.0012586803641170263, -0.015379038639366627, -0.027946704998612404, 0.01961001381278038, 0.017480608075857162, 0.01313829142600298, -0.027195150032639503, -0.0052400073036551476, 0.015601721592247486, 0.002435594331473112, 0.000136241054860875, 0.008107049390673637, 0.00819055549800396, 0.0022807600907981396, 0.02162807807326317, 0.0013569740112870932, 0.007543383631855249, 0.007376371417194605, 0.029533321037888527, -0.015587803907692432, 0.0065761045552790165, -0.006318627391010523, -0.033875636756420135, -0.01578265056014061, 0.007905242964625359, -0.00028813950484618545, -0.007884366437792778, -0.0004275337851140648, 0.010299084708094597, 0.006548269186168909, -0.015949662774801254, -0.0021485420875251293, 0.0029140145052224398, -0.021419312804937363, -0.0104034673422575, 0.006670048926025629, 0.020987864583730698, -0.010577438399195671, -0.00610290328040719, -0.0322333499789238, 0.020124968141317368, 0.010173825547099113, 0.017967727035284042, 0.022031690925359726, -0.045121125876903534, -0.01113414578139782, -0.011753481812775135, -0.013019991107285023, 0.00916479341685772, 0.006861417088657618, -0.020973946899175644, 0.05394493415951729, 0.01366716343909502, -0.0027000303380191326, -0.0032202035654336214, -0.005302636884152889, 0.008385403081774712, 0.008649839088320732, -0.010786203667521477, -0.00036512166843749583, 0.02970033325254917, 0.02197602018713951, 0.016923900693655014, -0.00042079240665771067, -0.003387215780094266, -0.004248372279107571, 0.0012595502194017172, 0.0253023449331522, 0.023409539833664894, -0.004505849443376064, -0.0013787203934043646, 0.008552415296435356, 0.004432781599462032, -0.01377850491553545, -0.002776577603071928, 0.022824997082352638, -0.0007650375482626259, 0.029199296608567238, -0.026415759697556496, -0.024773472920060158, -0.010076401755213737, 0.006659610662609339, 0.008559374138712883, 0.018552269786596298, -0.001022949581965804, 0.015532133169472218, 0.002131144981831312, -0.009944183751940727, 0.013785463757812977, -0.0099372249096632, -0.00856633298099041, 0.00460327323526144, -0.015365120954811573, 0.01945691928267479, -0.017786797136068344, 0.02789103426039219, 0.006064629647880793, -0.017383184283971786, 0.0049686124548316, 0.001126462360844016, -0.021586325019598007, 0.0029696852434426546, -0.009380517527461052, -0.02507966198027134, -0.020806934684515, -0.001243022968992591, -0.01653420552611351, 0.0206260047852993, -0.011767399497330189, -0.013103497214615345, -0.010855792090296745, -0.011189816519618034, 0.005535758100450039, 0.014404800720512867, 0.0037716918159276247, -0.004617190919816494, -0.030117863789200783, 0.008559374138712883, -0.021502818912267685, -0.0012143177445977926, -0.009067369624972343, 0.015114602632820606, -0.008204473182559013, 0.03220551460981369, -0.011502963490784168, 0.04389636963605881, -0.001029908424243331, 0.002764399629086256, -0.001278687035664916, -0.03521173447370529, -0.028169387951493263, -0.0051912954077124596, -0.0024338546209037304, -0.01464140135794878, -0.03493338078260422, 0.014223870821297169, -0.01626976951956749, 0.03212200850248337, -0.014613565988838673, 0.01750844344496727, -0.005375704728066921, -0.03704886883497238, -0.01278339046984911, -0.007265029940754175, -0.03515606373548508, 0.02366005815565586, -0.025664204731583595, -0.0008842077222652733, -0.007543383631855249, -0.02713947929441929, -0.013173085637390614, 0.014502224512398243, -0.02590080536901951, 0.01998579129576683, 0.03014569915831089, -0.012386736460030079, 0.003997853957116604, 0.007404206786304712, -0.011328993365168571, -0.009575365111231804, -0.03134261816740036, 0.0035542279947549105, -0.008928192779421806, -0.009658871218562126, 0.006725719664245844, -5.4501859267475083e-05, 0.008622003719210625, -0.028475577011704445, 0.0161166749894619, 0.0096519123762846, 0.007480754051357508, -0.04659639671444893, 0.02308943308889866, 0.00907432846724987, 0.01998579129576683, 0.012358901090919971, -0.01642286404967308, 0.0044745346531271935, -0.009888513013720512, 0.02507966198027134, 0.014571812935173512, 0.021419312804937363, -0.009610159322619438, 0.0031645328272134066, -0.021307971328496933, 0.025023991242051125, 0.027751857414841652, -0.007752148900181055, -0.007098017726093531, -0.020152803510427475, 0.016395028680562973, 0.015448627062141895, 0.012734678573906422, -0.02219870314002037, 0.008371485397219658, -0.02459254302084446, -0.008037460967898369, -0.00621424475684762, 0.0033228464890271425, -0.007494671735912561, 0.010695738717913628, -0.0039213066920638084, -0.008712468668818474, 8.379151040571742e-06, 0.007828695699572563, -0.0028357275296002626, 0.0024094986729323864, -0.014780578203499317, -0.0033124082256108522, 0.050743866711854935, -0.01927598938345909, 0.028127634897828102, -0.03468286246061325, 0.019735272973775864, 0.029032284393906593, -0.004102236591279507, 0.001687518903054297, -0.017703291028738022, 0.020305898040533066, -0.004631108604371548, 0.008120967075228691, -0.004860750399529934, -0.026332253590226173, -0.0016274988884106278, 0.00933876447379589, -0.005667976103723049, -0.0014335211599245667, 0.0037856095004826784, 0.015072849579155445, -0.007070182356983423, -0.01919248327612877, 0.005396581254899502, -0.004244892857968807, -0.000618032063357532, 0.00013178304652683437, -0.010076401755213737, -0.004620670340955257, 0.003903909819200635, -0.016548123210668564, 0.011579510755836964, -0.010869709774851799, -0.011948329396545887, 0.0046867793425917625, 0.0026408801786601543, 0.002252924721688032, 0.013834175653755665, -0.010807080194354057, 0.004283166490495205, -0.0337364599108696, -0.007557301316410303, -0.003034054534509778, -0.004251851700246334, 0.010243413969874382, 0.005180857144296169, 0.010257331654429436, 0.004665902815759182, 0.010772285982966423, 0.005017324350774288, -0.012379777617752552, -0.016854312270879745, -0.009464023634791374, 0.006391695234924555, -0.002235527615994215, 0.01006944291293621, 0.015949662774801254, 0.031927160918712616, -0.001845832564868033, 0.0037299387622624636, -0.016840394586324692, 0.00805833749473095, -0.027501339092850685, 0.007000593934208155, 0.0066735283471643925, 0.01550429780036211, 0.006040273699909449, -0.00018582279153633863, -0.02771010436117649, 0.0008620264125056565, 0.011168939992785454, -0.025204921141266823, 0.0018928047502413392, 0.0011073255445808172, 0.03922002762556076, -0.0008394101751036942, 0.01437696535140276, 0.004495411179959774, 0.002992301480844617, -0.005226089619100094, 0.016840394586324692, -0.013354015536606312, 0.015866156667470932, 0.004972091875970364, 0.007459877524524927, 0.010619191452860832, 0.008872522041201591, 0.0032915316987782717, -0.0005606216145679355, -0.01885845884680748, -0.008176637813448906, -0.012699884362518787, 0.009178711101412773, 0.008795974776148796, 0.009707583114504814, -0.0004914681194350123, 0.014063817448914051, -0.016742970794439316, -0.007912201806902885, 0.0251214150339365, 0.04801600053906441, -0.003404612885788083, -0.021809007972478867, 0.011530798859894276, -0.003970018588006496, -0.008274061605334282, -0.013402727432549, -0.03231685608625412, -0.0010403466876596212, 0.0018110383534803987, -0.008726386353373528, 0.014933672733604908, 0.0023903618566691875, 0.0073972479440271854, 0.0072024003602564335, 0.01216405350714922, -0.01852443441748619, -0.014202994294464588, -0.00896298699080944, -0.023186856880784035, -0.01638111099600792, 0.006450845394283533, -0.019248154014348984, -0.011871782131493092, -0.015573886223137379, 0.003907389007508755, 0.0033611201215535402, 0.0016370672965422273, 0.020222391933202744, 0.020069297403097153, -0.012157094664871693, -0.006805746350437403, 0.008134884759783745, -0.0007493801531381905, 0.03206633776426315, 0.020932193845510483, -0.009248299524188042, -0.0024756076745688915, 0.0003707757277879864, -0.00954057089984417, -0.006363859865814447, -0.015448627062141895, 0.005017324350774288, 0.011252446100115776, -0.020375486463308334, 0.002793974708765745, -0.05141191557049751, 0.0009646693360991776, 0.009839801117777824, 0.0019345578039065003, 0.0009516215068288147, 0.020083215087652206, 0.0054348548874258995, -0.009700624272227287, 0.007024949882179499, 0.013729793019592762, -0.010619191452860832, -0.005320033989846706, 0.014390883035957813, -0.014933672733604908, 0.005034721456468105, 0.020876523107290268, -0.02257448062300682, 0.0258729699999094, 0.00783565454185009, -0.013827216811478138, 0.008016584441065788, -0.000260304135736078, -0.017216172069311142, -0.0066248164512217045, 0.013994229026138783, -0.013862011022865772, -0.009380517527461052, 0.012832102365791798, -0.004791161976754665, -0.006562186870723963, -0.006840540561825037, 0.010118154808878899, -0.0004229670448694378, 0.014516142196953297, 0.016589876264333725, 0.0013769806828349829, 0.021043535321950912, -0.0001985444250749424, -0.006255997810512781, -0.006607419345527887, -0.012310189194977283, 0.016450699418783188, 0.007981790229678154, 0.00830189697444439, -0.009373558685183525, 0.021266218274831772, -0.004926859401166439, -0.005935891065746546, -0.014251706190407276, 0.012887773104012012, -0.009714541956782341, 0.005720166955143213, 0.03476636856794357, 0.023743564262986183, 0.014975425787270069, 0.0033176273573189974, 0.004359713755548, -0.024272436276078224, -0.02631833590567112, -0.008816851302981377, 0.004098757170140743, 0.017605867236852646, -0.01578265056014061, 0.004756367765367031, -0.0072024003602564335, 0.009658871218562126, -0.005678413901478052, -0.02096002921462059, 0.02835031785070896, -0.005233048461377621, 0.008107049390673637, -0.006809225771576166, 0.008357567712664604, -0.0011830029543489218, -0.010097278282046318, 0.0009533612173981965, -0.01735534891486168, 0.005674934480339289, 0.023980164900422096, 0.019777026027441025, -0.01649245247244835, 0.01426562387496233, -3.6207718949299306e-05, -0.0006858807755634189, -0.013694998808205128, -0.0041091954335570335, -0.009477941319346428, -0.011210693046450615, 0.00767560163512826, -0.0290601197630167, 0.01881670579314232, -0.001200400060042739, 0.003872595028951764, 0.024717802181839943, 0.012567666359245777, 0.003914347849786282, -0.011210693046450615, 0.01156559307128191, -0.012338024564087391, -0.005017324350774288, 0.0036012001801282167, 0.0007467705872841179, 0.027570927515625954, -0.013660204596817493, 0.01404294092208147, -0.02835031785070896, -0.0022390070371329784, -0.013715875335037708, 0.012818184681236744, -0.004070921801030636, -0.008816851302981377, 0.008030502125620842, -0.006802266929298639, -0.000295315810944885, 0.014126447029411793, 0.004241413436830044, -0.018273916095495224, -0.027529174461960793, -0.003733418183401227, -0.026262665167450905, -0.0021659391932189465, -0.046735573559999466, -0.014891919679939747, 0.011795234866440296, -0.0028653026092797518, -0.022630151361227036, -0.015810485929250717, 0.020389404147863388, -0.012268436141312122, 0.018357422202825546, -0.0050521185621619225, 0.003197587328031659, -0.003131478326395154, 0.014766660518944263, -0.007098017726093531, -0.014363047666847706, 0.004203139804303646, 0.018315669149160385, 0.01329138595610857, 0.00671180197969079, -0.012393695302307606, 0.019401248544454575, -0.013367933221161366, -0.015726979821920395, 0.012386736460030079, -0.0026530581526458263, 0.024829143658280373, 0.01825999841094017, -0.008795974776148796, 0.015866156667470932, -0.01679864153265953, 0.0023486088030040264, -0.0040117716416716576, 0.0013352276291698217, 0.0017753742868080735, 0.016937818378210068, 0.0011055858340114355, 0.01027124933898449, -0.006210765335708857, 0.012324106879532337, -2.1868701878702268e-05, 0.011906576342880726, -0.003041013376787305, -0.014627483673393726, 0.023479128256440163, 0.014293459244072437, 0.005883699748665094, -0.0017327513778582215, 0.00041296370909549296, 0.001115154242143035, -0.0012656392063945532, 0.013263550586998463, 0.012247559614479542, -0.006718760821968317, 0.0035246529150754213, 0.0008711598929949105, 0.009742377325892448, -0.025204921141266823, 0.015699144452810287, -0.01795380935072899, 0.0033124082256108522, -0.008002666756510735, 0.002868782030418515, 0.010827956721186638, 0.027640515938401222, -0.0033611201215535402, -6.926221249159425e-05, -0.021474983543157578, -0.01582440361380577, -0.006057670805603266, 0.02200385555624962, -0.002272061537951231, 0.0029383704531937838, 0.007884366437792778, -0.03234469145536423, -0.006360380444675684, 0.0037925683427602053, -0.010194702073931694, -0.009777171537280083, -0.007940037176012993, -0.011628222651779652, 0.010848833248019218, 0.010459138080477715, 0.020458992570638657, -0.007515548262745142, -0.00916479341685772, 0.009394435212016106, 0.009610159322619438, 0.00032945763086900115, 0.030117863789200783, 0.014502224512398243, 0.00398393627256155, 0.008225349709391594, 0.001188222086057067, -0.0198744498193264, 0.008274061605334282, 0.013708916492760181, -0.0036951445508748293, -0.010062484070658684, 0.005180857144296169, -0.0032932714093476534, 0.01657595857977867, 0.0024286354891955853, 0.0030427530873566866, -0.004140510223805904, 0.008378444239497185, -0.009637994691729546, 0.007091058883816004, 0.016520287841558456, -0.023938411846756935, 0.004770285449922085, 0.014613565988838673, 0.012442407198250294, -0.01240761298686266, 0.025956476107239723, -0.007933078333735466, 0.027278656139969826, -0.008225349709391594, 0.016993489116430283, 0.0003938268928322941, -0.007752148900181055, 0.00989547185599804, -0.01183002907782793, 0.0029836029279977083, 0.006913608405739069, 0.00620380649343133, 0.0032636963296681643, -0.024536872282624245, -0.007244153413921595, -0.017758961766958237, 0.013785463757812977, -0.03287356346845627, -0.008364526554942131, -0.0024947444908320904, -0.014975425787270069, 0.014230829663574696, 0.012992155738174915, 0.004742450080811977, -0.02129405364394188, 0.006423010025173426, -0.0017214432591572404, 0.009811965748667717, -0.01646461710333824, 0.020389404147863388, 0.00411615427583456, 0.0013926380779594183, -0.01229627151042223, -0.002479087095707655, 0.01690998300909996, -0.023451292887330055, 0.014279541559517384, -0.030062193050980568, 0.011836987920105457, -0.007334618363529444, -0.008740304037928581, 0.01015990786254406, -0.0003198892227374017, -0.01788422092795372, 0.010389549657702446, -0.0318714901804924, -0.007011032197624445, -0.0024512517265975475, -0.014822331257164478, -0.013089579530060291, -0.004707655869424343, -0.01814865693449974, 0.002339910250157118, 0.00360467960126698, -0.012755555100739002, -0.017633702605962753, -0.005688852164894342, 0.03782825917005539, 0.006948402617126703, -0.029644662514328957, -0.0002494309446774423, 0.024982238188385963, 0.010354755446314812, 0.0275570098310709, 0.01207358855754137, 0.006228162441402674, -0.021015699952840805, -0.009763253852725029, -0.02620699442923069, -0.01597749814391136, -0.0035524882841855288, 0.008851645514369011, -0.010201660916209221, -0.019999708980321884, 0.019512590020895004, 0.003519433783367276, -0.009331805631518364, 0.023479128256440163, 0.013409686274826527, 0.005789755377918482, 0.01757803186774254, 0.005873261485248804, -0.018621858209371567, 0.003635994391515851, 0.020013626664876938, 0.006548269186168909, 0.011579510755836964, 0.020180638879537582, 0.0013813299592584372, -0.014404800720512867, 0.008169678971171379, -0.004874668084084988, -0.014822331257164478, 0.018621858209371567, -0.011489045806229115, 0.00856633298099041, -0.0056297024711966515, 0.017981644719839096, 0.001206489047035575, 0.02489873208105564, -0.010507849976420403, 0.02613740600645542, -0.0032497786451131105, 0.025330180302262306, -0.001151688164100051, -0.004464096389710903, 0.0016657725209370255, -0.013507110066711903, -0.009241340681910515, 0.0013848093803972006, 0.018399175256490707, -0.026220912113785744, -0.006471721921116114, 0.021154876798391342, -0.037995271384716034, 0.004596314392983913, -0.0058523849584162235, -0.023646140471100807, -0.0008233178523369133, 0.008893398568034172, 0.0023590470664203167, 0.010723574087023735, 0.001705785864032805, 0.011036721989512444, 0.019178565591573715, 0.00043275291682220995, -0.0166873000562191, 0.0014361307257786393, 0.044564418494701385, 0.025023991242051125, -0.02684720791876316, 0.0035176940727978945, -0.0007859140750952065, -0.010208619758486748, 0.03256737440824509, 0.024620378389954567, -0.03780042380094528, 0.008642880246043205, -0.02148890122771263, 0.003587282495573163, 0.02301984466612339, -0.01806515082716942, -0.0236183051019907, 0.0041335513815283775, 0.01901155337691307, -0.008009625598788261, 0.0002092001523124054, -0.009129999205470085, -0.011036721989512444, -0.011649099178612232, 0.006189888808876276, 0.0005323513178154826, -0.002442553173750639, -0.005570552311837673, 0.006353421602398157, 0.008517621085047722, -0.023868823423981667, -0.01649245247244835, -0.005236527882516384, 0.003321106778457761, 0.018176492303609848, 0.03253953903913498, 0.003618597285822034, 0.018663611263036728, 0.022477056831121445, 0.019554343074560165, 0.01916464790701866, -0.027612680569291115, -0.016325440257787704, -0.005253924988210201, -0.01841309294104576, 0.005549675785005093, 0.014516142196953297, -0.014557895250618458, 0.015768732875585556, -0.007543383631855249, 0.003094944404438138, -0.02489873208105564, -0.007101497147232294, 0.008406279608607292, 0.01550429780036211, -0.0025852094404399395, -0.00720935920253396, -0.009436188265681267, 0.016061004251241684, 0.020820852369070053, 0.009554488584399223, 0.012978238053619862, 0.029867345467209816, -0.005883699748665094, 0.0166873000562191, -0.01631152257323265, 0.012623337097465992, 0.007216318044811487, 0.0046137114986777306, -0.0032671757508069277, -0.00024573405971750617, 0.0005614914698526263, 0.0008568072807975113, 0.004676341079175472, -0.017035242170095444, -0.00781477801501751, -0.0012343244161456823, 0.013987270183861256, 0.00783565454185009, 0.014891919679939747, -0.00032162893330678344, -0.016770806163549423, -0.0027904952876269817, -0.00272786570712924, 0.012964320369064808, -0.008420197293162346, 0.003465502755716443, 0.0027000303380191326, 0.013729793019592762, 0.033346764743328094, -0.004992968402802944, -0.02545543946325779, 0.0007754758116789162, -0.00572712579742074, 0.005939370486885309, -0.00792611949145794, -0.03437667340040207, -0.004147469066083431, 0.01941516622900963, -0.006850978825241327, -0.0015605200314894319, -0.0029592469800263643, 0.009380517527461052, 0.010438261553645134, 0.011795234866440296, 0.01512852031737566, -0.017452772706747055, 0.0015639994526281953, 0.00903257541358471, -0.0020876522175967693, -0.005243486724793911, -0.0032393403816968203, -0.02501007355749607, 0.002381663303822279, 0.011280281469225883, -0.009686706587672234, -0.004443219862878323, 0.01615842804312706, 0.016186263412237167, -0.006791828665882349, 0.018357422202825546, -0.006948402617126703, 0.0007428562385030091, -0.007278947625309229, 0.014738825149834156, 0.01205271203070879, 0.0006884903414174914, 0.0015283353859558702, 0.0017031762981787324, 0.01885845884680748, -0.009109122678637505, 0.01128724031150341, -0.030869418755173683, 0.00121170817874372, -0.004314481280744076, -0.011461210437119007, 0.022184785455465317, 0.01013903133571148, -0.0016770806396380067, 0.00978413037955761, -0.0012082287576049566, 0.003496817545965314, -0.032706551253795624, -0.011669975705444813, -0.0015570406103506684, -0.0011551675852388144, -0.014063817448914051, -0.0005301766796037555, 0.00010498063784325495, -0.012658131308853626, -0.01169781107455492, 0.004822476767003536, 0.01649245247244835, -0.0028531246352940798, 0.0008537627873010933, -0.012609419412910938, -0.004617190919816494, 0.005413978360593319, -0.020612087100744247, -0.010208619758486748, -0.008893398568034172, -0.005817590747028589, 0.008044419810175896, 0.0341261550784111, 0.012024876661598682, -0.009081287309527397, -0.012727719731628895, 0.015907909721136093, 0.006019397173076868, 0.03329109400510788, -0.033652953803539276, -0.033124081790447235, -0.023312116041779518, -0.01600533351302147, 0.025441521778702736, -0.014216911979019642, -0.006558707449585199, -0.0037612535525113344, 0.007626889739185572, 0.02144714817404747, 0.006106382701545954, -0.005671455059200525, 0.0034324482548981905, 0.01859402284026146, -0.0035124749410897493, -0.0016109716380015016, -0.009004740044474602, -0.02598431147634983, -0.0006919697625562549, 0.00041296370909549296, -0.0161166749894619, -0.008399320766329765, -0.006864896509796381, 0.009331805631518364, 0.005017324350774288, 0.018343504518270493, 0.018649693578481674, 0.000283137836959213, 0.0008428895962424576, -0.008983863517642021, 0.011795234866440296, -0.01735534891486168, -0.012852978892624378, -0.008531538769602776, 0.022323962301015854, -0.013841134496033192, -0.024773472920060158, 0.019554343074560165, -0.017146583646535873, -0.007230235729366541, 0.003931744955480099, -0.01755019649863243, -0.03557359427213669, -0.009568406268954277, 0.013319221325218678, 0.01180915255099535, -0.011725646443665028, 0.021280135959386826, 0.008531538769602776, -0.009457064792513847, -0.027835363522171974, -0.010368673130869865, 0.019289907068014145, -0.0025295387022197247, 0.02295025624334812, -0.004018730483949184, -0.031286947429180145, -0.0007685169694013894, -0.016395028680562973, -0.0005349608836695552, -0.04136335104703903, 0.007230235729366541, 0.0027313451282680035, 0.00708757946267724, -0.01113414578139782, -1.507295837654965e-05, -0.0005275671137496829, -0.006353421602398157, -0.024119341745972633, 0.00522261019796133, -0.0006402133731171489, -0.019693519920110703, -0.009067369624972343, 0.015699144452810287, -0.01167693454772234, 0.01615842804312706, -0.0005123446462675929, -0.01998579129576683, 0.0004871188721153885, -0.01145425159484148, -0.010111195966601372, -0.014891919679939747, -0.00031575741013512015, -0.002479087095707655, -0.0029957809019833803, 0.02178117260336876, -0.00967278890311718, 0.0117186876013875, 0.0013787203934043646, -0.018941964954137802, -0.006269915495067835, 0.006088985595852137, 0.017564114183187485, -0.004203139804303646, -0.008935151621699333, -0.016172345727682114, -0.023938411846756935, 0.037661246955394745, -0.021878596395254135, -0.014230829663574696, 0.010243413969874382, -0.013771546073257923, -0.001278687035664916, -0.011836987920105457, 0.00015015873941592872, -0.006729199085384607, -0.01781463250517845, 0.0014648359501734376, 0.0055566346272826195, -0.00470417644828558, -0.004244892857968807, 0.018580105155706406, -0.009791089221835136, -0.0008802933734841645, 0.012254518456757069, -0.0042796870693564415, 0.01244936604052782, 0.009637994691729546, -0.006732678506523371, 0.024008000269532204, -0.00794699601829052, -0.010925380513072014, -0.03131478279829025, -0.008448032662272453, 0.002303376328200102, 0.010459138080477715, -0.021349724382162094, 0.003684706287458539, 0.021433230489492416, -0.024272436276078224, 0.012734678573906422, -0.02102961763739586, -0.014446553774178028, -0.0033176273573189974, -0.0021607200615108013, 0.01027124933898449, 0.009116081520915031, 0.025107497349381447, 0.0021033096127212048, -0.0026774141006171703, 0.007891325280070305, 0.0206260047852993, 0.02695854939520359, -0.028475577011704445, 0.011683893389999866, 0.0031332180369645357, 0.008573291823267937, -0.005601867102086544, -0.0019015033030882478, 0.014613565988838673, 0.022616233676671982, 0.013764587230980396, -0.017703291028738022, -0.00015102859470061958, -0.01256070751696825, -0.028364235535264015, -0.030284876003861427, 0.013152209110558033, -0.0035838030744343996, -0.004700697027146816, 0.02492656745016575, 0.0033245861995965242, -0.0017083954298868775, -0.025956476107239723, 0.0017510183388367295, -0.01664554700255394, 0.009923307225108147, 0.0228667501360178, 0.00211896700784564, 0.0329849049448967, 0.007285906467586756, 0.004697217606008053, 0.005309595726430416, -0.00909520499408245, -0.007592095527797937, 0.02691679634153843, 0.021836843341588974, 0.0028722614515572786, -0.00646824249997735, -0.0017866824055090547, -0.007870448753237724, -0.015045014210045338, 0.00521217193454504, 0.007891325280070305, -0.0005493134958669543, -0.010827956721186638, 0.011106310412287712, 0.01306870300322771, 0.007738231215626001, 0.01874711737036705, 0.013681081123650074, 0.008510662242770195, 0.013388809747993946, -0.018761035054922104, -0.0016274988884106278, 0.006621337030082941, -0.007689519319683313, 0.015866156667470932, 0.00645780423656106, -0.004415384493768215, 0.016882147639989853, -0.014613565988838673, -0.005170418880879879, 0.01042434386909008, 0.0006763123674318194, -0.018399175256490707, -0.015309450216591358, 0.011322034522891045, -0.023479128256440163, -3.3951531804632396e-05, 0.003270655171945691, 0.0010090318974107504, 0.012908649630844593, -0.0033245861995965242, 0.00945010595023632, -0.017800714820623398, 2.727811261138413e-05, -0.01227539498358965, -0.00013080445933155715, -0.004829435609281063, 0.013771546073257923, 0.0183713398873806, -0.02215695008635521, 0.0029836029279977083, -0.004074401222169399, -0.003161053406074643, -0.003938703797757626, -0.025107497349381447, 0.004457137547433376, -0.011189816519618034, 0.0032254226971417665, 0.013451439328491688, 0.01355582196265459, -0.004697217606008053, 0.011363786645233631, -0.01713266596198082, 0.01528161484748125, 0.003301969962194562, 0.00669092545285821, 0.027417832985520363, -0.0077312723733484745, 0.0017040461534634233, 0.029032284393906593, 0.02414717711508274, 0.008023543283343315, -0.002430375199764967, -0.006141176912933588, 0.01792597398161888, 0.0016640328103676438, -0.011078475043177605, 0.002084172796458006, -0.013729793019592762, -0.011189816519618034, -0.010104237124323845, 0.020681675523519516, 0.007578177843242884, 0.016854312270879745, 0.009436188265681267, 0.009213505312800407, 0.006791828665882349, 0.007313741836696863, -0.007828695699572563, 0.029950851574540138, -0.007174564991146326, 0.00880989246070385, -0.022588398307561874, -0.007550342474132776, -0.002649578731507063, -0.0009864156600087881, 0.01404294092208147, 0.023214692249894142, 0.007884366437792778, -0.003580323653295636, 0.02392449416220188, -0.01437696535140276, 0.017786797136068344, -0.008496744558215141, 0.007752148900181055, -0.004551081918179989, 0.015643473714590073, -0.021057453006505966, 0.0015492119127884507, 0.0040117716416716576, -0.010681821033358574, -0.006541310343891382, -0.007766066584736109, 0.00031293038045987487, -0.026234829798340797, 0.004119633696973324, -0.03014569915831089, 0.00409527774900198, -0.029561156406998634, -0.019916202872991562, 0.007745190057903528, 0.003065369324758649, 0.014836248941719532, 0.00254519609734416, 0.013715875335037708, -0.014613565988838673, -0.028225058689713478, -0.022880667820572853, -0.019707437604665756, 0.016562040895223618, 0.002997520612552762, -0.004794641397893429, -0.005170418880879879, 0.011356827802956104, -0.017870303243398666, 0.021043535321950912, -0.013326180167496204, -0.013848093338310719, 0.01031300239264965, 0.002338170539587736, -0.0011238527949899435, 0.02208736166357994, -0.01755019649863243, -0.016548123210668564, 0.007752148900181055, -0.005118227563798428, -0.005984602961689234, 0.015225944109261036, 0.03621380776166916, 0.0009246559930033982, 0.001681429916061461, 0.0036394738126546144, -0.02928280271589756, -0.0075851366855204105, -3.226618719054386e-05, -0.011669975705444813, -0.003949142061173916, 0.023854905739426613, -0.011328993365168571, 0.0008876871434040368, 0.0018736679339781404, 0.006805746350437403, 0.02102961763739586, -0.0013856792356818914, -0.004871188662946224, -0.02917146123945713, -0.004495411179959774, 0.00216941861435771, -0.008482826873660088, -0.006729199085384607, 0.020820852369070053, -0.012525913305580616, 0.011398580856621265, -0.008983863517642021, 0.00015874856035225093, -0.0002046334120677784, -0.010765327140688896, 0.0017449293518438935, -0.007578177843242884, 0.00940835289657116, -0.006976237986236811, 0.01878887042403221, 0.027473503723740578, 0.009123040363192558, -0.033986978232860565, -0.00903257541358471, -0.015253779478371143, 0.0060959444381296635, 0.0002381228405283764, -0.01391072291880846, 0.021168794482946396, 0.0004010031989309937, -0.000305971538182348, 0.0037786506582051516, 0.0014587469631806016, 0.007599054370075464, 0.012198847718536854, 0.0026826332323253155, -0.024829143658280373, 0.0032080255914479494, 0.002486045937985182, 0.013388809747993946, -0.015601721592247486, -0.015462544746696949, 0.020709510892629623, 0.004004812799394131, -0.02084868773818016, 0.005765399429947138, -0.0018284354591742158, 0.017647620290517807, -0.005420937202870846, -0.008726386353373528, -0.011168939992785454, -0.001985009294003248, -0.0014918014639988542, -0.01646461710333824, -0.036269478499889374, 0.02384098805487156, 0.011120228096842766, 0.0005449642194435, -0.005928932223469019, 0.0012412832584232092, -0.014446553774178028, 0.013980311341583729, 0.0020667756907641888, 0.026332253590226173, 0.006913608405739069, 0.028016293421387672, -0.012010958977043629, 0.008350608870387077, -0.007480754051357508, -0.0121849300339818, -0.010431302711367607, -0.001974571030586958, 0.012553748674690723, -0.004453658126294613, 0.009749336168169975, -0.019637849181890488, -0.015643473714590073, 0.004631108604371548, 0.0031332180369645357, -0.013326180167496204, -0.023033762350678444, 0.001035997411236167, -0.01799556240439415, 0.006596981082111597, -0.012338024564087391, 0.022143032401800156, -0.005267842672765255, -0.011391622014343739, -0.0028096321038901806, 0.011649099178612232, -0.008538497611880302, 0.000295315810944885, 0.013548863120377064, -0.007313741836696863, 0.004798120819032192, 0.011635181494057178, -0.030284876003861427, -0.008573291823267937, -0.012873855419456959, 0.010306043550372124, 0.011899617500603199, 0.010243413969874382, -0.00830189697444439, 0.01901155337691307, 0.009303970262408257, 0.018774952739477158, 0.0076825604774057865, 0.0036707886029034853, -0.01961001381278038, -0.012532872147858143, -0.005553155206143856, -0.007870448753237724, -0.023409539833664894, -0.003896950976923108, 0.010598314926028252, 0.02084868773818016, -0.006189888808876276, 0.028364235535264015, 0.01364628691226244, 0.010674862191081047, -0.014822331257164478, -0.004867709241807461, 0.008872522041201591, 0.014543977566063404, 0.0020180637948215008, -0.007473795209079981, 0.00015244210953824222, -0.008162720128893852, -0.025107497349381447, 0.0019658724777400494, 0.004999927245080471, -0.018607940524816513, 0.0091856699436903, 0.0021902951411902905, -0.014063817448914051, -0.014891919679939747, 0.017257925122976303, -0.0011490785982459784, -0.01539295632392168, 0.02257448062300682, 0.0014630962396040559, -0.018385257571935654, 0.002205952536314726, 0.019039388746023178, -0.002430375199764967, -0.020333733409643173, -0.02357655204832554, 0.015086767263710499, 0.006798787508159876, 0.02111312374472618, 0.00459283497184515, 0.00041296370909549296, 0.007028429303318262, 0.012887773104012012, -0.0037960477638989687, 0.007599054370075464, 0.00958232395350933, -0.0042796870693564415, -0.0050764745101332664, -0.00608202675357461, 0.020375486463308334, -0.007195441517978907, -0.004008292220532894, -0.0031540945637971163, 0.008949069306254387, 0.018719282001256943, -0.03437667340040207, -0.0038273625541478395, 0.026123488321900368, 0.007578177843242884, -0.007216318044811487, 0.011516881175339222, 0.009060410782694817, -0.013806340284645557, -0.009248299524188042, 0.005128665827214718, 0.007418124470859766, 0.003886512713506818, -0.00940835289657116, 0.01055656187236309, 0.008392361924052238, 0.017828550189733505, 0.0067222402431070805, 0.013945517130196095, 0.010723574087023735, 0.007285906467586756, 0.009972019121050835, 0.022059526294469833, 0.009387476369738579, 0.002825289499014616, 0.007258071098476648, 0.0014735345030203462, -0.008510662242770195, -0.008427156135439873, -0.0006684836698696017, -0.008705509826540947, -0.020709510892629623, -0.017967727035284042, 0.011106310412287712, 0.0041579073294997215, -0.014683154411613941, 0.005887179169803858, -0.016436781734228134, -0.0159357450902462, -0.02673586644232273, 0.017939891666173935, 0.006200327072292566, -0.017104830592870712, 0.00012928221258334816, -0.00030662392964586616, 0.017216172069311142, 0.008072255179286003, -0.016408946365118027, 0.006391695234924555, 0.02403583563864231, 0.023632222786545753, -0.01821824535727501, -0.009290052577853203, 0.0043771108612418175, 0.0004012206627521664, -0.008120967075228691, 0.004415384493768215, -0.0060228765942156315, 0.009255258366465569, 0.01657595857977867, -0.02111312374472618, -0.003034054534509778, -0.017494525760412216, 1.6418514860561118e-05, -0.013653245754539967, 0.007355494890362024, -0.0019728313200175762, -0.02377139963209629, 0.0014970205957069993, 0.008461950346827507, 0.008023543283343315, 0.009241340681910515, 0.002045899163931608, -0.000563231180422008, 0.01671513542532921, 0.009679747745394707, 0.01203183550387621, -0.006781390402466059, 0.018315669149160385, -0.007759107742458582, 0.008016584441065788, -0.004843353293836117, 0.004519767127931118, 0.013973352499306202, -0.004892065189778805, -0.026666278019547462, 0.010118154808878899, 0.015058931894600391, -0.029672497883439064, 0.00646824249997735, -0.0028270292095839977, -0.006492598447948694, 0.015810485929250717, -0.023367786779999733, -0.023270362988114357, 0.001759716891683638, 0.0072024003602564335, 0.004551081918179989, -4.158994852332398e-05, 0.0344880148768425, -0.006388215813785791, -0.0008254924905486405, 0.022671904414892197, 0.011690852232277393, -0.00805833749473095, 0.021586325019598007, 0.000511474790982902, 0.017494525760412216, 0.018399175256490707, -0.010674862191081047, 0.013263550586998463, 0.008719427511096, 0.019484754651784897, -0.03111993707716465, -0.018176492303609848, -0.01941516622900963, 0.007167606148868799, -0.019735272973775864, 0.02583121694624424, 0.005699290428310633, 0.0036812268663197756, -0.018427010625600815, 0.003562926547601819, -0.0018249560380354524, 0.007759107742458582, -0.006482160184532404, -8.421285019721836e-05, -0.021252300590276718, -0.026875043287873268, -0.004022209905087948, -0.008935151621699333, 0.0008672455442138016, -0.004258810542523861, 0.002759180497378111, 0.01523986179381609, 0.040583960711956024, -0.007877407595515251, -0.007592095527797937, -0.013827216811478138, 0.00732070067897439, 0.005281760357320309, -0.03393130749464035, 0.007960913702845573, 0.008656797930598259, 0.003155834274366498, 0.006913608405739069, -0.009227422997355461, 0.00845499150454998, -0.009401394054293633, 0.0021850760094821453, -0.024773472920060158, -0.039804570376873016, 0.016631629317998886, -0.00931788794696331, -0.01934557780623436, 0.005243486724793911, -0.007522507105022669, -0.02507966198027134, 0.019401248544454575, 0.000962059770245105, -0.0012525913771241903, 0.026457512751221657, 0.002557374071329832, -0.010076401755213737, -0.0015848759794607759, 0.01453005988150835, 0.0129364849999547, 0.04038911312818527, -0.007473795209079981, 0.020876523107290268, -0.03142612427473068, 5.776381385658169e-06, -0.01626976951956749, -0.012985196895897388, 0.007515548262745142, -0.0038586773443967104, 0.011210693046450615, 0.01216405350714922, -0.007139770779758692, 0.018454845994710922, 0.01746669039130211, -0.0040361275896430016, 0.002894877688959241, -0.005956767592579126, 0.009415311738848686, -0.0030810267198830843, 0.018343504518270493, -0.0020424197427928448, 0.006596981082111597, -0.010278208181262016, -0.021878596395254135, -0.001759716891683638, 0.008016584441065788, 0.01755019649863243, 0.008795974776148796, 0.005494005046784878, 0.014049899764358997, 0.0059985206462442875, -0.0013239195104688406, -0.030117863789200783, 0.03404264897108078, 0.014446553774178028, 0.000645432504825294, 0.008552415296435356, 0.0076338485814630985, 0.021530654281377792, 0.0018788870656862855, -0.004345796070992947, -0.011892658658325672, 0.008308855816721916, 0.019039388746023178, -0.03170447796583176, -0.0026147845201194286, 0.020570334047079086, -0.0011125446762889624, -0.000663699465803802, 0.011349868960678577, -0.0004949475405737758, -0.005841946694999933, -0.017522361129522324, 0.0008298417669720948, 0.011335952207446098, 0.01486408431082964, 0.014063817448914051, 0.011642140336334705, -0.012609419412910938, -0.005661017261445522, -0.009589282795786858, -0.006311668548732996, -0.00794699601829052, 0.022992009297013283, -0.016659464687108994, 0.009324846789240837, -0.005928932223469019, 0.022546645253896713, 0.010605273768305779, 0.008392361924052238, 0.006763993296772242, -0.0045893555507063866, 0.020236309617757797, -0.0435066744685173, -0.002442553173750639, -0.02897661365568638, -0.03437667340040207, -0.007668642792850733, -0.009345723316073418, -0.020375486463308334, -0.01657595857977867, -0.006485639605671167, 0.021154876798391342, 0.002491265069693327, -0.011997041292488575, -0.008907316252589226, 0.0032428198028355837, 0.00556707289069891, 0.015573886223137379, -0.017717208713293076, -0.014724907465279102, 0.0038760744500905275, -0.0006654391763731837, 0.03100859560072422, 0.02372964657843113, -0.004533684812486172, -0.014126447029411793, -0.004738970659673214, 0.0028113718144595623, -0.00023420849174726754, 0.012226683087646961, -0.0010734011884778738, -0.0016822997713461518, -0.006402133498340845, -0.003879553871229291, -0.019289907068014145, -0.03131478279829025, -0.012344983406364918, -0.0022094319574534893, 0.002576510887593031, -0.02372964657843113, -0.012310189194977283, -0.006565666291862726, 0.006085506174713373, -0.007045826409012079, 0.021238382905721664, 0.04244893044233322, 0.02894877828657627, 0.002660016994923353, 0.010459138080477715, -0.003368078963831067, 0.010375631973147392, 0.02478739060461521, 0.003307189093902707, 0.005657537840306759, 0.012887773104012012, -0.0022946777753531933, -0.010563520714640617, -0.009700624272227287, 0.01784246787428856, 0.008608086034655571, -0.022783244028687477, 0.0009455325198359787, 0.016896065324544907, 0.006318627391010523, 0.0007928729173727334, -0.006172491703182459, 0.00192411954049021, -0.005038200877606869, -0.004161386750638485, -0.010786203667521477, 0.004404946230351925, 0.010340837761759758, 0.010939298197627068, 0.0024564708583056927, 0.00810009054839611, -0.03671484440565109, -0.0013404467608779669, 0.019039388746023178, -0.005991561803966761, -0.01908114179968834, -0.014557895250618458, -0.0064056129194796085, 0.0038830332923680544, -0.019206400960683823, 0.01870536431670189, 0.010507849976420403, 0.0006041143788024783, -0.008392361924052238, 0.0055775111541152, 0.011050639674067497, -0.0033402435947209597, 0.023604387417435646, -0.015963580459356308, 0.005024283193051815, -0.010486973449587822, -0.013388809747993946, 0.022894585505127907, -0.010869709774851799, -0.006002000067383051, -0.00546616967767477, 0.008009625598788261, -0.012769472785294056, 0.002793974708765745, 0.0011908316519111395, 0.024912649765610695, -0.0013343577738851309, -0.00033119734143838286, -0.001993707846850157, -0.0023903618566691875, 0.021252300590276718, 0.005031242035329342, 0.02950548566877842, -0.004651985131204128, -0.006816184613853693, 0.013277468271553516, -0.010855792090296745, 0.010563520714640617, 0.0017197035485878587, 0.011704769916832447, -0.011663016863167286, 0.01006944291293621, -0.01539295632392168, -0.00018223463848698884, -0.013096538372337818, 0.01941516622900963, -0.006255997810512781, -0.021210547536611557, -0.04345100373029709, 0.0018667090917006135, 0.013075661845505238, 0.010507849976420403, -0.002720906864851713, 0.008461950346827507], "a643d7bb-5024-4ccd-8e46-623292978454": [-0.01648484729230404, 0.01600813865661621, -0.012540478259325027, 0.037582989782094955, 0.004359565209597349, 0.005063093267381191, 0.014470374211668968, 0.05010040104389191, -0.009541835635900497, 0.03383084386587143, 0.03195476904511452, 0.019206691533327103, 0.0061664399690926075, -0.002400836441665888, -0.008634553290903568, 0.0332772471010685, -0.006439393386244774, -0.005762776359915733, 0.002239371184259653, -0.05455992370843887, 0.04068927839398384, -0.012348257936537266, -0.02346630208194256, 0.012056082487106323, 0.006489370483905077, 0.007942559197545052, -0.01602351665496826, 0.01357846986502409, -0.02950972132384777, -0.0034042284823954105, 0.01634644716978073, 0.01572365313768387, -0.014816371724009514, 0.024081408977508545, 0.046563539654016495, -0.044902753084897995, 0.02981727384030819, 0.020913612097501755, -0.011802351102232933, -0.011633196845650673, -0.012502034194767475, -0.004724784754216671, 0.016746267676353455, 0.0007352441898547113, -0.014601084403693676, -0.008503844030201435, 0.00786951556801796, 0.006873812060803175, -0.019406601786613464, -0.05139212682843208, 0.0017741969786584377, 0.00858073215931654, -0.019944818690419197, -0.0037925143260508776, 0.038382627069950104, -0.06440161913633347, 0.01948348991572857, 0.03312347084283829, -0.002860243897885084, -0.03100135363638401, 0.000342393119353801, -0.0416119359433651, 0.014554951339960098, -0.025080956518650055, 0.015546809881925583, 0.028602439910173416, -0.0017818858614191413, -0.02369696833193302, -0.02415829710662365, 0.038413383066654205, -0.0036944816820323467, 0.018545452505350113, -0.039766617119312286, -0.015016281045973301, 0.016269559040665627, 0.032569874078035355, 0.010625960305333138, 0.0002943379513453692, 0.00900361780077219, -0.03117050789296627, 0.01731524057686329, -0.0016463702777400613, 0.05053097754716873, 0.01797647960484028, 0.05209949612617493, 0.02418905310332775, -0.0010005086660385132, -0.04730166867375374, -0.040412478148937225, -0.028433285653591156, 0.002791044535115361, 0.00041808001697063446, -0.00337347318418324, -0.009334237314760685, -0.007669605780392885, 0.032600630074739456, 0.03210854530334473, 0.009626412764191628, -0.03047851286828518, -0.03884395956993103, -0.03281591832637787, -0.005201491992920637, 0.0062510170973837376, -0.022451376542448997, 0.037552233785390854, -0.015746720135211945, -0.014278152957558632, 0.00941112544387579, -0.02331252582371235, 0.03546087443828583, -0.0015339211095124483, -0.007096787914633751, -0.0183455441147089, 0.016377203166484833, -0.01602351665496826, -0.011194933205842972, -0.07688827812671661, -0.022743552923202515, -0.012017637491226196, -0.012786520645022392, 0.0366910882294178, -0.03715241700410843, -0.00642401585355401, -0.035091809928417206, -0.02234373427927494, -0.0047401622869074345, 0.0072082760743796825, 0.03253911808133125, 0.03432292863726616, 0.0014877881621941924, -0.0300018060952425, -0.01597738452255726, 0.03552238643169403, -0.0020394616294652224, 0.016284937039017677, 0.024050652980804443, 0.0023162593133747578, 0.04127362743020058, -0.0031235862988978624, 0.013309361413121223, -0.054744455963373184, -0.006285616662353277, 0.0038482584059238434, 0.04028945788741112, 0.018868383020162582, 0.01074898149818182, -0.02652645669877529, 0.025219354778528214, 0.0028390996158123016, 0.017791947349905968, -0.09804793447256088, -0.0308168213814497, -0.003654115367680788, -0.0056243776343762875, 0.051576659083366394, -0.03183174878358841, 0.003171641379594803, 0.01249434519559145, 0.02780280075967312, 0.05477520823478699, 0.03453821316361427, -0.02065219171345234, -0.0017482471885159612, 0.04032021388411522, 0.021282674744725227, 0.03312347084283829, 0.041734956204891205, 0.0133247384801507, -0.023866120725870132, 0.026587966829538345, 0.027418360114097595, -0.033431023359298706, 0.031201263889670372, 0.026065126061439514, -0.02415829710662365, 0.00347535009495914, 0.04939303174614906, 0.02598823793232441, 0.04062776640057564, -0.009895521216094494, -0.03795205429196358, 0.02983265183866024, 0.010272273793816566, 0.02014472894370556, 0.041550423949956894, 0.033892352133989334, 0.021959291771054268, 0.041058339178562164, 0.0004262494039721787, -0.017469016835093498, 0.0005555177922360599, 0.036906372755765915, -0.006362505257129669, -0.005762776359915733, -0.011364087462425232, -0.001205223728902638, 0.008042514324188232, 0.03195476904511452, -0.031893257051706314, 0.030878333374857903, -0.0007116971537470818, -0.0383211188018322, -0.02549615316092968, 0.01324016135185957, -0.02932518906891346, 0.04745544493198395, -0.0056243776343762875, -0.014039799571037292, 0.0400126613676548, -0.02146720699965954, 0.044902753084897995, -0.03444594889879227, 0.0011715851724147797, -0.016407959163188934, 0.0333695113658905, 0.005328357685357332, 0.0002679075987543911, 0.030447758734226227, -0.03220080956816673, -0.014947080984711647, 0.010725914500653744, 0.022912707179784775, -0.0038867024704813957, -0.0074312519282102585, -0.050746262073516846, 0.0200063306838274, -0.015308456495404243, 0.030924465507268906, -0.03985888510942459, 0.001074513653293252, 0.006227950565516949, -0.01699231006205082, -0.011702395975589752, -0.008972861804068089, -0.015354589559137821, 0.031216641888022423, 0.05299140140414238, -0.025403887033462524, -0.0065162815153598785, 0.023112617433071136, 0.021590229123830795, 0.02784893475472927, -0.006481681950390339, -0.0025623019319027662, 0.014293530955910683, 0.029033014550805092, -0.025588419288396835, 0.066739022731781, -0.012363635003566742, -0.010187696665525436, -0.012209858745336533, 3.7573139707092196e-05, 0.0005060209659859538, 0.022866573184728622, -0.03047851286828518, 0.010941201820969582, 0.033923108130693436, 0.0006814223597757518, 0.00649321498349309, -0.016900043934583664, 0.007558117620646954, 0.016238804906606674, 0.009718677960336208, 0.011863861232995987, 0.010164630599319935, 0.010349161922931671, 0.031893257051706314, 0.010633649304509163, 0.011118045076727867, -0.0050169602036476135, 0.017745815217494965, 0.012448212131857872, -0.008603798225522041, 0.04770148918032646, 0.019052915275096893, -0.006597014144062996, -0.007239031605422497, 0.00716983200982213, 0.0516689233481884, 0.0006895917467772961, -0.01259430032223463, 0.04561012610793114, 0.018745362758636475, -0.006274083629250526, 0.05566711351275444, 0.006028041243553162, -0.030570778995752335, -0.02649570070207119, -0.044595200568437576, -0.00654319254681468, 0.0031754858791828156, 0.006854590028524399, -0.006135684438049793, 0.014893259853124619, 0.009534146636724472, -0.027618270367383957, 0.023204881697893143, 0.011048845946788788, 0.010364539921283722, 0.05249931663274765, 0.004140433855354786, -0.026710987091064453, -0.01051062811166048, -0.017576660960912704, 0.07055268436670303, -0.016208048909902573, 0.027372227981686592, 0.0233586598187685, -0.03398462012410164, 0.03801356628537178, 0.009149705059826374, -0.0059011755511164665, -0.008450021967291832, 0.000602611864451319, -0.012033015489578247, 0.03069380111992359, -0.02900225855410099, -0.02200542576611042, -0.013478515669703484, -0.03745996952056885, -0.029033014550805092, 0.005585933569818735, -0.07221347093582153, 0.018284032121300697, 0.043088190257549286, -0.03067842312157154, 0.03287742659449577, -0.011248755268752575, -0.006539348047226667, -0.018760740756988525, -0.044564444571733475, -0.009518768638372421, -0.018899139016866684, 0.020360015332698822, -0.06520126014947891, -0.007950248196721077, -0.04570239409804344, -0.022574398666620255, 0.002821799833327532, -0.0550520084798336, 0.0037463812623173, 0.011886928230524063, 0.008872907608747482, -0.0011004634434357285, 0.0065816366113722324, -0.0014368497068062425, 0.016454091295599937, -0.0019366234773769975, -0.03702939674258232, 0.0011696629226207733, 0.0008496154914610088, 0.005082315299659967, 0.04684033989906311, -0.01650022529065609, 0.029417455196380615, -0.01390140037983656, -0.004774762317538261, 0.02168249525129795, 0.008034825325012207, -0.0019798732828348875, -0.021036632359027863, -0.03229307755827904, 0.00745816295966506, 0.007696516811847687, 0.005243780557066202, 0.013909089379012585, 0.004348032176494598, -0.01599276252090931, -0.02615739218890667, -0.02200542576611042, -0.016546357423067093, 0.01800723560154438, -0.007296697702258825, -0.003261985257267952, -0.02949434332549572, -0.039889637380838394, 0.01381682325154543, -0.006743101868778467, -0.005470600910484791, 0.04582541435956955, 0.004759384319186211, -0.011948438361287117, 0.0027256894391030073, 0.03247760981321335, 0.03616824746131897, 0.010126186534762383, -0.021574851125478745, -0.030094072222709656, -0.0316472165286541, -0.01617729291319847, -0.026403434574604034, 0.007873360067605972, -0.03795205429196358, -0.011479419656097889, -0.018591586500406265, -0.007158298511058092, 0.00014813007146585733, -0.018760740756988525, 0.018268654122948647, -0.01863771863281727, 0.005720487795770168, -0.014962458983063698, -0.015054725110530853, -0.0076657612808048725, 0.02485029213130474, -0.020544547587633133, -0.024219807237386703, -0.015369966626167297, 0.02932518906891346, 0.003033242654055357, 0.012886475771665573, 0.016792399808764458, 0.015523743815720081, 0.042227040976285934, 0.04465671256184578, 0.0051976474933326244, -0.016284937039017677, 0.04068927839398384, -0.02581908367574215, -0.016761643812060356, 0.05948077142238617, 0.02268204279243946, 0.025573041290044785, 0.016623245552182198, 0.03678335249423981, 0.001696347608231008, -0.04988511651754379, 0.025296242907643318, 0.0013378560543060303, -0.010572138242423534, -0.013309361413121223, 0.05517502874135971, 0.0014983603032305837, -0.028710084035992622, 0.010549072176218033, 0.015223879367113113, -0.00633943872526288, -0.016700133681297302, 0.009995476342737675, 0.011248755268752575, -0.03816734254360199, 0.017299862578511238, 0.0062394835986196995, -0.007342830765992403, -0.02967887558043003, -0.041581179946660995, -0.02034463919699192, 0.012625055387616158, 0.024773404002189636, -0.0063586607575416565, 0.010449117049574852, 0.041242871433496475, -0.03635277971625328, -0.009357303380966187, 0.00031740442500449717, -0.020206239074468613, 0.025788329541683197, 0.017392128705978394, 0.029863407835364342, -0.04868565872311592, -0.013363182544708252, -0.011771595105528831, 0.030432380735874176, 0.019914064556360245, 0.005220714025199413, -0.009080505929887295, -0.013809135183691978, -0.01032609585672617, -5.7906483561964706e-05, 0.029279056936502457, 0.02051379345357418, -0.030232470482587814, 0.01184848416596651, 0.04050474613904953, 0.0018789572641253471, 0.022697418928146362, -0.008150157518684864, -0.023558568209409714, -0.004982360638678074, -0.0041327448561787605, -0.005528267007321119, -0.009980098344385624, 0.028279509395360947, -0.020037084817886353, 0.02952509932219982, 0.000444029807113111, -0.009741744957864285, -0.016208048909902573, 0.03601447120308876, -0.0042519220151007175, 0.028125733137130737, -0.0216671172529459, 0.011194933205842972, 0.011064223013818264, 0.007212120573967695, -0.016607867553830147, -0.0208521019667387, -0.0052514695562422276, 0.007734960876405239, -0.053083665668964386, 0.02131343074142933, -0.014624150469899178, 0.013094074092805386, -0.018530074506998062, -0.013570780865848064, 0.028402529656887054, -0.033923108130693436, 0.03117050789296627, -0.011118045076727867, -0.01631569303572178, -0.04933151975274086, 0.034938033670186996, -0.039243776351213455, -0.020267751067876816, 0.011533241719007492, 0.01714608632028103, -0.014924014918506145, 0.009757122956216335, 0.029248300939798355, -0.015162368305027485, -0.0010956579353660345, -0.035245586186647415, -0.002206693636253476, -0.007404341362416744, -0.006512437015771866, -0.021267298609018326, 0.006193351000547409, -0.0249886903911829, 0.021267298609018326, -0.029894161969423294, -0.02334328182041645, 0.008511532098054886, -0.028587061911821365, 0.02448122762143612, 0.018929895013570786, -0.00508615979924798, -0.0034657390788197517, 0.013870645314455032, 0.013547714799642563, -0.01298642996698618, -0.02966349758207798, 0.01634644716978073, -0.035214830189943314, 0.0036060602869838476, -0.009680233895778656, 0.02334328182041645, -0.00679692393168807, 0.010641337372362614, -0.0003933316038455814, 0.01883762888610363, -0.009334237314760685, 0.017914969474077225, 0.0029967206064611673, 0.016900043934583664, -0.01800723560154438, -0.009388058446347713, 0.012048393487930298, -0.018222521990537643, -0.016454091295599937, -0.0016136927297338843, -0.01963726617395878, 0.008642242290079594, -0.001284995349124074, 0.0024239029735326767, 0.0199755746871233, 0.007881048135459423, -0.012348257936537266, -0.03244685381650925, -0.004136589355766773, 0.02348168008029461, 0.0449335090816021, -0.015431477688252926, 0.03853640332818031, 0.0056974212639033794, 0.009449569508433342, 0.05151514708995819, -0.0007655189256183803, 0.02686476521193981, -0.03186250105500221, -0.018699228763580322, 0.0199755746871233, -0.001116802217438817, -0.007346674799919128, -0.0005295680020935833, 0.003229307709261775, 0.030739933252334595, -0.028771594166755676, -0.027279961854219437, -0.013962911441922188, -0.00023955504002515227, 0.011771595105528831, 0.02632654644548893, -0.030909087508916855, 0.014485751278698444, -0.01490094792097807, 0.01883762888610363, 0.003640660084784031, 0.013024874031543732, 0.03712166100740433, 0.009480324573814869, 0.02618814818561077, 0.0133247384801507, 0.009403436444699764, -0.004647896625101566, -0.05452916771173477, 0.03878244757652283, -0.0026142015121877193, 0.029571231454610825, 0.008995928801596165, 0.0022124601528048515, 0.004382631741464138, -0.016284937039017677, 0.02334328182041645, 0.005393712781369686, 0.01966802217066288, 0.0013349726796150208, 0.013547714799642563, 0.019944818690419197, 0.008957484737038612, 0.003911691252142191, 0.025619175285100937, -0.019606510177254677, 0.03416915237903595, 0.001972184283658862, -0.006500903982669115, -0.010333784855902195, -0.014885570853948593, -0.0029967206064611673, -0.0074312519282102585, 0.00625486159697175, -0.019068293273448944, -0.020021706819534302, -0.005605155602097511, -0.0308168213814497, -0.008203979581594467, -0.02381998859345913, 0.011310265399515629, -0.0076234727166593075, -0.0022970372810959816, -0.020206239074468613, -0.0008159768767654896, -0.0019971730653196573, 0.0008866179850883782, 0.04917774349451065, -0.016946176066994667, 5.051800326327793e-05, -0.01049525011330843, -0.009042061865329742, 0.035737670958042145, 0.001846279832534492, 0.0004526797274593264, 0.021605607122182846, 0.003323495853692293, 0.040750786662101746, 0.0045594749972224236, -0.010825869627296925, -0.00011677407019305974, 0.008004069328308105, 0.0017232585232704878, -0.010364539921283722, 0.014639528468251228, -0.014870192855596542, -0.00022958358749747276, 0.019744910299777985, 0.009042061865329742, -0.010064675472676754, 0.023374035954475403, -0.006723879836499691, 0.03217005729675293, -0.0010524083627387881, 0.03629126772284508, -0.022097691893577576, 0.012994118966162205, -0.00462867459282279, -0.0183147881180048, -0.001294606365263462, 0.011617818847298622, 0.031554948538541794, 0.01797647960484028, -0.011948438361287117, -0.017884213477373123, -0.0383518747985363, -0.035030297935009, 0.012148347683250904, -0.022559020668268204, -0.01349389273673296, -0.009572590701282024, -0.017361372709274292, -0.011479419656097889, 0.02315874956548214, -0.024204429239034653, 0.002477724803611636, -0.006212573032826185, 0.04198100045323372, 0.005778154358267784, -0.019729532301425934, 0.028740838170051575, -0.013786068186163902, -0.0019077904289588332, 0.011164178140461445, -0.003523405408486724, -0.04714789241552353, 0.009134327061474323, -0.0033331068698316813, 0.004451831337064505, -0.00026358262402936816, -0.013955222442746162, -0.03318498283624649, -0.008534599095582962, -0.0007097749039530754, 0.008250112645328045, -0.012725010514259338, 0.006497059483081102, 0.025772951543331146, 0.019191313534975052, 0.01885300502181053, -0.014800993725657463, 0.03798281028866768, -0.01317096222192049, 0.04597919061779976, -0.024281319230794907, 0.037921298295259476, -0.02764902450144291, 0.007354363799095154, -0.02369696833193302, -0.0038155808579176664, 0.0039635905995965, -0.006274083629250526, 0.011879239231348038, 0.002514246618375182, 0.02880234830081463, -0.00537449074909091, 0.005647444166243076, 0.010518316179513931, 0.0032754407729953527, -0.0027583669871091843, -0.01298642996698618, 0.024742648005485535, 0.033400267362594604, 0.0015483377501368523, 0.01885300502181053, -0.0074658519588410854, 0.027249205857515335, -0.023927632719278336, -0.022866573184728622, -0.003617593552917242, 0.01651560142636299, 0.021374940872192383, -0.03101673163473606, -0.017530526965856552, 0.012648121453821659, -0.018760740756988525, 0.0216671172529459, 0.002902532462030649, 0.010249207727611065, 0.0036291268188506365, 0.031924013048410416, 0.009672545827925205, 0.0049323830753564835, 0.04865490272641182, -0.041734956204891205, 0.0022547487169504166, 0.010456806048750877, -0.002593057230114937, 0.023081861436367035, -0.006927634123712778, 0.028402529656887054, 0.003425372764468193, 0.029463589191436768, 0.01582360826432705, 0.039766617119312286, 0.00925734918564558, 0.013132518157362938, 0.04293441399931908, -0.029079146683216095, -0.014301219955086708, 0.004332654643803835, -0.015646765008568764, -0.011118045076727867, -0.015546809881925583, -0.03083219937980175, -0.006677746772766113, 0.01217141468077898, -0.00908819492906332, 0.016407959163188934, -0.0400126613676548, 0.05237629637122154, -0.005705110263079405, -0.012571233324706554, 0.03416915237903595, 0.017222974449396133, 0.016131160780787468, 0.00991858821362257, 0.01450881827622652, 0.011786973103880882, -0.033584799617528915, -0.015531431883573532, 0.02781817875802517, -0.003738692495971918, -0.00033326263655908406, 0.005674354732036591, -0.010587516240775585, 0.020621435716748238, 0.039582084864377975, 0.008826774545013905, -0.007281320169568062, -0.0037579145282506943, -0.016592491418123245, -0.018299410119652748, 0.004413387272506952, -0.011794662103056908, -0.009134327061474323, 0.012286746874451637, 0.020098596811294556, -0.042719125747680664, -0.009887832216918468, 0.02568068541586399, -0.002149027306586504, 0.02300497330725193, 0.019252825528383255, -0.015108547173440456, -0.006819990463554859, 0.007573495618999004, 0.026111260056495667, 0.031093619763851166, 0.026957031339406967, 0.005839664954692125, 0.018899139016866684, -0.016238804906606674, -0.017192218452692032, -0.0068891895934939384, -0.0416426919400692, -0.027772046625614166, 0.011417909525334835, 0.0038021253421902657, 0.025203976780176163, 0.008857529610395432, -0.0016838533338159323, -0.03779827803373337, 0.03398462012410164, -0.006643147207796574, -0.04195024445652962, -0.0299710500985384, 0.022528264671564102, -0.009318859316408634, -0.0017049976158887148, 0.013163273222744465, 0.01242514606565237, 0.019099049270153046, 0.046901848167181015, 0.026910897344350815, -0.015946628525853157, 0.03813658654689789, -0.02818724326789379, -0.00024964663316495717, 0.027787424623966217, 0.012140659615397453, 0.0035426274407655, 0.00612030690535903, -0.009795567020773888, -0.010472183115780354, 0.024204429239034653, -0.02298959530889988, 0.005908864084631205, -0.0108181806281209, -0.03098597563803196, -0.005655132699757814, -0.001663670176640153, 0.0023623923771083355, -0.002587290480732918, -0.004225010983645916, -0.011725462041795254, 0.007312075234949589, 0.011640884913504124, 0.0224821325391531, -0.009910899214446545, -0.0002365515974815935, 0.0016559812938794494, -0.012886475771665573, 0.01633107103407383, 0.006562414579093456, 0.015277700498700142, 2.8682932679657824e-05, 0.028786972165107727, -0.014954769983887672, -0.014416552148759365, 0.0009841700084507465, 0.012117592617869377, -0.012017637491226196, 0.008588421158492565, -0.008880596607923508, 0.017761193215847015, 0.01883762888610363, -0.018222521990537643, 0.001972184283658862, 0.007350519299507141, 0.008257800713181496, 0.011333332397043705, -0.020759835839271545, 0.011479419656097889, -0.0013022952480241656, -0.048408858478069305, -0.018606962636113167, -0.0007751299417577684, 0.05594391003251076, -0.05898868665099144, 0.026388056576251984, -0.00445952033624053, 0.02280506305396557, -0.00841157790273428, 0.03650655597448349, 0.011756218038499355, -0.00867299735546112, -0.023927632719278336, 0.023420169949531555, 0.027787424623966217, 0.0007933909073472023, -0.004728629253804684, -0.011194933205842972, 1.4709388779010624e-05, 0.01007236447185278, 0.004936227574944496, 0.02317412756383419, 0.002846788614988327, -0.01651560142636299, 0.014216642826795578, -0.0241429191082716, -0.03948982059955597, 0.0017463250551372766, -0.0018578129820525646, -0.0019164403202012181, 0.002733378205448389, 0.0008654737030155957, -0.00642401585355401, 0.014193575829267502, -0.018945271149277687, -0.036383531987667084, -0.009772500023245811, -0.0032965850550681353, 0.0018453187076374888, -0.03247760981321335, 0.02049841545522213, 0.029063768684864044, -0.014731794595718384, -0.0008760458440519869, -0.025096334517002106, 0.012894164770841599, 0.01651560142636299, -0.0036906374152749777, -0.012686565518379211, 0.006181817501783371, 0.026265036314725876, 0.008995928801596165, -0.004463364370167255, 0.017253730446100235, 0.0044326093047857285, -0.002710311906412244, -0.03213930130004883, 0.008465399034321308, -0.004228855483233929, 0.002318181563168764, 0.020452281460165977, -0.03453821316361427, 0.010964268818497658, 0.008995928801596165, -0.012432835064828396, -0.003433061530813575, 0.0018260965589433908, -0.024419717490673065, -0.006227950565516949, -0.007012210786342621, 0.015962006524205208, -0.007308230735361576, 0.01731524057686329, -0.01763817109167576, 0.0003534457937348634, -0.024404339492321014, -0.019960196688771248, -0.03201627731323242, -0.0026142015121877193, 0.008888284675776958, -0.0183455441147089, -0.00044354924466460943, -0.0014551106141880155, 0.006335594225674868, -0.026434190571308136, -0.005897331051528454, 0.034722745418548584, -0.037890542298555374, -0.014585706405341625, 0.012909541837871075, -0.005028493236750364, 6.331269105430692e-05, -0.007573495618999004, -0.014539573341608047, -0.01951424591243267, -0.030263226479291916, -0.030909087508916855, 0.010502939112484455, -0.017130708321928978, 0.006535503547638655, -0.011671640910208225, -0.040750786662101746, 0.020221617072820663, 0.034261416643857956, 0.0200063306838274, 0.0009164121584035456, -0.0291867908090353, -0.03247760981321335, 0.015531431883573532, -0.01899140514433384, -0.024127541109919548, 0.0034561280626803637, -0.02266666479408741, -0.008219356648623943, 0.0009197760373353958, 0.029571231454610825, -0.029448211193084717, 0.010387605987489223, 0.030801445245742798, -0.0018530074739828706, -0.02185164950788021, -0.014808682724833488, -0.035583894699811935, -0.01393215637654066, -0.0003536860749591142, -0.018745362758636475, -0.010126186534762383, 0.0072890087030828, 0.020452281460165977, -0.015346900559961796, -0.02334328182041645, 0.0009356342488899827, 0.001234056893736124, 0.004382631741464138, -0.014962458983063698, 0.012371324002742767, -0.06563183665275574, -0.021897781640291214, -0.02648032270371914, 0.014547262340784073, 0.006293305661529303, 0.009526457637548447, 0.01833016611635685, 0.0006304839043878019, -0.026910897344350815, -0.012117592617869377, 0.01899140514433384, -0.013947533443570137, 0.00849615503102541, 5.834198418597225e-06, -0.010518316179513931, 0.01350927073508501, -0.022774308919906616, -0.008619176223874092, -0.002223993418738246, -0.006174128968268633, -0.020067840814590454, 0.00891904067248106, 0.040074169635772705, -0.00892672874033451, -0.017884213477373123, 0.01383220124989748, -0.015962006524205208, -0.004936227574944496, -0.003523405408486724, -0.04364178702235222, 0.01342469360679388, 0.027402982115745544, -0.010133875533938408, -0.01817638985812664, -0.0021528718061745167, 0.008365444839000702, 0.003879013704136014, -0.007996381260454655, 0.009595656767487526, 0.013232472352683544, -0.0015214268350973725, -0.0056320661678910255, -0.003052464686334133, 0.0005877147777937353, 0.020959744229912758, -0.02780280075967312, 0.018622340634465218, -0.02285119704902172, -0.02600361593067646, -0.0037579145282506943, 0.0008078074897639453, 0.020021706819534302, 0.000715060974471271, -0.01865309663116932, -0.010018542408943176, -0.013332427479326725, 0.02549615316092968, -0.024758026003837585, 0.013370871543884277, 0.016423337161540985, 0.033584799617528915, 0.01780732534825802, 0.01025689672678709, 0.00039693573489785194, -0.021759383380413055, 0.005509044975042343, 0.0249886903911829, 0.02863319404423237, 0.026434190571308136, -0.00201831734739244, 0.028248753398656845, -0.005312980152666569, -0.006812301464378834, 0.027895066887140274, -0.009864766150712967, 0.025603797286748886, 0.011387154459953308, 0.014693349599838257, 0.011164178140461445, 0.0028160330839455128, -0.049915868788957596, 0.0023470146115869284, -0.004274988081306219, -0.014524196274578571, -0.012717321515083313, -0.018576208502054214, -0.010195385664701462, -0.010472183115780354, 0.015462232753634453, 0.007362052798271179, 0.03130890801548958, -0.001985639799386263, 0.012033015489578247, -0.0024700360372662544, -0.02966349758207798, 0.07362821698188782, -0.011218000203371048, 0.008188601583242416, -0.006923789624124765, 0.001621381612494588, -0.0009635062306188047, 0.004728629253804684, 0.0074735404923558235, -0.02132880873978138, -0.010879691690206528, 0.012940296903252602, 0.011302577331662178, 0.012563544325530529, -0.01334011647850275, -0.009195838123559952, -0.01350927073508501, 0.0026180457789450884, -0.03416915237903595, 0.02548077516257763, -0.008065580390393734, 0.003928991034626961, -0.029894161969423294, -0.013486203737556934, -0.023558568209409714, -0.002654567826539278, 0.004398009739816189, 0.028248753398656845, -0.014447307214140892, -0.00454409746453166, -0.007777249440550804, -0.008365444839000702, -0.008980550803244114, 0.0022701264824718237, -0.009026683866977692, 0.015623698011040688, -0.013855268247425556, -0.014601084403693676, 0.0029717320576310158, -0.0017165307654067874, -0.017284484580159187, -0.005266847088932991, 0.03133966401219368, -0.01308638509362936, 0.035553138703107834, -0.03266214206814766, 0.03613749146461487, 0.011556308716535568, -0.014993214048445225, -0.010479872114956379, -0.023266393691301346, 0.007531207054853439, -0.01432428602129221, -0.02815648727118969, 0.014139754697680473, 0.0087498864158988, 0.00013419408060144633, -0.017453638836741447, 0.02998642809689045, 0.030063316226005554, -0.005893486551940441, -0.0349687896668911, -0.022559020668268204, 0.004863183479756117, -0.01273269858211279, -0.011710084974765778, -0.0014724105130881071, 0.012132970616221428, 0.013939844444394112, -0.00941112544387579, -0.02180551551282406, -0.013647668994963169, 0.0016002373304218054, -0.021436452865600586, 0.023758478462696075, 0.0019212458282709122, 0.024773404002189636, 0.007927181199193, -0.013147895224392414, -0.00036281655775383115, 0.008826774545013905, -0.02800271101295948, 0.0016040817135944963, 0.0017030753660947084, 0.019714154303073883, -0.016038894653320312, 0.0006617197650484741, 0.021605607122182846, 0.006485526449978352, 0.015416099689900875, -0.009118949994444847, 0.0029121434781700373, -0.029079146683216095, -0.010948890820145607, 0.008334689773619175, 0.011333332397043705, 0.007881048135459423, 0.01734599471092224, 0.004713251255452633, 0.011387154459953308, 0.0009452452650293708, -0.005997285712510347, 0.053760282695293427, 0.028125733137130737, -0.012717321515083313, -0.0017828469863161445, -0.017884213477373123, -0.013924467377364635, 0.001761702704243362, 0.008526910096406937, -0.0038847802206873894, 0.014301219955086708, -0.032385341823101044, 0.015854362398386, 0.01848394237458706, -0.012778831645846367, 0.002696856390684843, 0.006177973002195358, 0.028217997401952744, 0.0059011755511164665, 0.007488918490707874, -0.013109451159834862, 0.0072890087030828, -0.017376750707626343, -0.0033850064501166344, -0.0225128885358572, 0.03749072551727295, -0.023712344467639923, 0.015854362398386, 0.0027449114713817835, 0.017084576189517975, 0.017453638836741447, 0.01699231006205082, -0.05954228341579437, -0.000817899068351835, 0.0042519220151007175, -0.000509384844917804, 0.009564901702105999, -0.0034042284823954105, 0.0009043983882293105, -0.003617593552917242, 0.011348709464073181, 0.024881046265363693, 0.0024834913201630116, 0.03367706760764122, 0.020206239074468613, -0.0005925202858634293, -0.028248753398656845, -0.00745816295966506, -0.002223993418738246, 0.02249751053750515, 0.008980550803244114, -0.021882403641939163, -0.015231568366289139, 0.014201264828443527, 0.0019289347110316157, 0.0008164573810063303, 0.00801175832748413, 0.010710537433624268, 0.009303481318056583, 0.00700067775323987, -0.0010802802862599492, 0.007673450279980898, -0.027372227981686592, 0.010279962792992592, -0.00301786488853395, -0.019052915275096893, 0.010279962792992592, 0.0029640430584549904, -0.017699681222438812, 0.012486656196415424, -0.007146765477955341, -0.020867478102445602, 0.012486656196415424, 0.006089551839977503, -0.014524196274578571, -0.002771822502836585, -0.0013868723763152957, -0.0052399360574781895, 0.004213477484881878, 0.010210763663053513, 0.0037656035274267197, 0.009734055958688259, -0.0199755746871233, -0.010318406857550144, -0.021867025643587112, -0.0061241514049470425, -0.016715511679649353, -0.004655585158616304, 0.02535775490105152, 0.011371776461601257, 0.018114877864718437, -0.01582360826432705, -0.024588871747255325, 0.028217997401952744, -0.010056986473500729, -0.005020804703235626, 0.007127543445676565, 0.017530526965856552, -0.00520533649250865, 0.01224061381071806, 0.006977611221373081, 0.0006309644086286426, 0.007435096427798271, 0.02900225855410099, -0.0022624374832957983, -0.0017357529141008854, -0.013147895224392414, -0.015123924240469933, -0.021928537636995316, 0.0029640430584549904, -0.00034311393392272294, -0.008196290582418442, 0.008465399034321308, -0.0027276116888970137, 0.004294210579246283, -0.0065816366113722324, -0.0025680684484541416, -0.0002556535182520747, -0.019791042432188988, -0.011548619717359543, 0.019744910299777985, 0.03195476904511452, -0.015077791176736355, -0.0149855250492692, -0.032600630074739456, 0.013055630028247833, -0.008857529610395432, 0.008965173736214638, 0.004682496190071106, -0.05649750679731369, -0.012571233324706554, -0.001327283913269639, -0.014178198762238026, 0.016623245552182198, -0.006258706096559763, -0.0499773807823658, 0.05305291339755058, 0.0009068011422641575, -0.02480415813624859, -0.020606057718396187, 0.00337347318418324, 0.00031596276676282287, 0.008257800713181496, -0.022266846150159836, -0.0005843508988618851, 0.020744457840919495, 0.0158389862626791, 0.01597738452255726, -0.02017548494040966, 0.015762096270918846, -0.0023566256277263165, 0.008949795737862587, 0.026065126061439514, 0.015808230265975, 0.009349614381790161, 0.004301899112761021, 0.008280867710709572, 0.008865218609571457, -0.0015723652904853225, -0.009557212702929974, 0.02581908367574215, 0.011279510334134102, 0.022128446027636528, -0.012217547744512558, -0.0028525551315397024, -0.015715964138507843, 0.005489822942763567, 0.014862503856420517, 0.019252825528383255, -0.013855268247425556, -0.017745815217494965, 0.00891904067248106, -0.018253277987241745, 0.016085028648376465, -0.004471053369343281, -0.002742989221587777, -0.006070329807698727, -0.02483491413295269, -8.559827983845025e-05, -0.027725912630558014, 0.011794662103056908, 0.004105834290385246, 0.00774649390950799, 0.00662776967510581, -0.0056320661678910255, -0.007504296023398638, 0.003229307709261775, -0.025880593806505203, -0.026572588831186295, -0.036260511726140976, 0.019468111917376518, -0.014185887761414051, 0.012455901131033897, -0.016869287937879562, -0.02651107870042324, -0.02548077516257763, -0.012994118966162205, -0.00044883531518280506, 0.007850293070077896, 0.023435547947883606, -0.004371098708361387, -0.031124375760555267, 0.009741744957864285, -0.03718317300081253, -0.018376298248767853, -0.015915874391794205, 0.011233377270400524, -0.01557756494730711, 0.03518407791852951, -0.013516959734261036, 0.026772499084472656, 0.014047488570213318, 0.011471731588244438, 0.005201491992920637, -0.026434190571308136, -0.008857529610395432, -0.005905019585043192, -0.006485526449978352, -0.005843508988618851, -0.02683400921523571, 0.008388510905206203, -0.0023431703448295593, 0.028602439910173416, -0.018868383020162582, 0.012755765579640865, -0.009418814443051815, -0.024066030979156494, -0.018868383020162582, -0.014654905535280704, -0.026418812572956085, 0.025388509035110474, -0.025942105799913406, 0.009572590701282024, 0.0041327448561787605, -0.04711713641881943, 0.0062087285332381725, 0.009488013572990894, -0.025034824386239052, 0.020698323845863342, 0.04404160752892494, -0.021943913772702217, 0.012894164770841599, 0.012394390068948269, -0.0037367702461779118, -0.017453638836741447, -0.037767522037029266, -0.004855494946241379, 0.010118497535586357, -0.0027007008902728558, 0.010372228920459747, -0.00881908554583788, 0.01717684231698513, -0.016423337161540985, 0.010379917919635773, 0.014885570853948593, 0.012294435873627663, -0.038259606808423996, 0.0019087515538558364, 0.00045123809832148254, 0.020529169589281082, -0.006554725579917431, -0.017914969474077225, 0.0033427178859710693, 0.0074735404923558235, 0.02235911227762699, 0.00508615979924798, 0.014385797083377838, 0.010441428050398827, 0.0061664399690926075, -0.018222521990537643, 0.02234373427927494, 0.030432380735874176, -0.015054725110530853, -0.005397557280957699, -0.04296516999602318, 0.037244681268930435, -0.0022605154663324356, -0.011394842527806759, -0.012302124872803688, 0.01523925643414259, -0.01849932037293911, -0.006527815014123917, -4.03363119403366e-05, 0.005266847088932991, -0.012978740967810154, 0.0034003842156380415, -0.0001852526911534369, -0.00012266082921996713, 0.002967887558043003, 0.022574398666620255, 0.006224106065928936, 0.010948890820145607, -0.013378560543060303, 0.006031885277479887, 0.03552238643169403, -0.009695611894130707, 0.03933604434132576, -0.014147443696856499, -0.0015243100933730602, 0.022928085178136826, 0.0008789291605353355, 0.012286746874451637, -0.020959744229912758, 0.003998190630227327, -0.0006247172714211047, 0.009357303380966187, -0.005989596713334322, -0.01017231959849596, -0.004586386028677225, 0.01617729291319847, -0.007077565882354975, -0.007727271877229214, 0.013140207156538963, 0.011710084974765778, 0.008480777032673359, 0.0030639979522675276, 0.002775666769593954, -0.004640207625925541, -0.003706014947965741, -0.014078243635594845, -0.012017637491226196, -0.008034825325012207, 0.00866530928760767, -0.0199755746871233, 0.0058165984228253365, -0.00807326938956976, -0.01142559852451086, 0.0035349386744201183, 0.005701265763491392, 0.014885570853948593, 0.016038894653320312, -0.005220714025199413, -0.005128448363393545, -0.01717684231698513, 0.007139076478779316, 0.003936680033802986, -0.009618723765015602, 0.010526005178689957, 0.011963816359639168, 0.004524874966591597, 0.00620488403365016, 0.012186791747808456, 0.005266847088932991, -0.006062640808522701, -0.007811849005520344, -0.006912256125360727, -0.00625486159697175, -0.0063240607269108295, 0.006850745528936386, 0.015023970045149326, 0.04865490272641182, -0.001237901276908815, 0.006758479867130518, -0.013886023312807083, 0.0059319306164979935, -0.039889637380838394, 0.00433649867773056, 0.01242514606565237, 0.020529169589281082, 0.010441428050398827, 0.005328357685357332, -0.017069198191165924, 0.013870645314455032, 0.012640433385968208, -0.014178198762238026, 0.013670735992491245, 0.016115782782435417, 0.044410668313503265, -0.00720443157479167, 0.012109903618693352, -0.0044326093047857285, 0.011525552719831467, -0.0015146990772336721, 0.011517863720655441, -0.005497511941939592, 0.03210854530334473, -0.02132880873978138, -0.0070160552859306335, 0.0022182269021868706, 0.01985255442559719, -0.0009149705292657018, -0.007262098137289286, 0.009518768638372421, -0.01885300502181053, -0.006366349291056395, 0.006854590028524399, 0.001977951033040881, 0.006350971758365631, -0.011148800142109394, -0.004893939010798931, 0.001271539949811995, 0.017469016835093498, 0.016900043934583664, 0.023943010717630386, -0.002673789858818054, -0.019775664433836937, -0.0009985865326598287, 0.003533016424626112, -0.009680233895778656, -0.01384757924824953, -0.022605154663324356, 0.009534146636724472, -0.0018472408410161734, 0.004340343177318573, 0.004886250011622906, -0.00038420112105086446, 0.011279510334134102, -0.009380370378494263, 0.003607982536777854, -0.015777474269270897, -0.014139754697680473, 0.0010216529481112957, -0.01334011647850275, -0.012701943516731262, -0.0032004746608436108, -0.012924919836223125, -0.009203527122735977, -0.022528264671564102, 0.010526005178689957, 6.925952038727701e-05, -0.010310717858374119, 0.029601987451314926, 0.001448382972739637, -0.01149479765444994, 0.0021836271043866873, 0.010056986473500729, -0.008173223584890366, 0.018084123730659485, 0.020729079842567444, -0.01149479765444994, 0.010233829729259014, 0.0017530526965856552, -0.017930347472429276, -0.009334237314760685, 0.002366236876696348, 0.0015877429395914078, 0.029202168807387352, -0.01682315580546856, -0.007823382504284382, -0.035891447216272354, -0.021251920610666275, -0.003907846752554178, -0.0010264585725963116, 0.010502939112484455, 0.012394390068948269, -0.0039828126318752766, -0.019375845789909363, 0.008803707547485828, 0.0061664399690926075, -0.004232699517160654, -0.0004106314736418426, 0.022420622408390045, -0.0018337854417040944, 0.002056761411949992, 0.020067840814590454, -0.042903658002614975, 0.02480415813624859, 0.009972409345209599, -0.04767073318362236, 0.0037502257619053125, 0.006331749726086855, -0.021036632359027863, -0.007896426133811474, -0.0019193236948922276, -0.012525100260972977, 0.0008486543665640056, 0.03398462012410164, -0.009611034765839577, -0.019099049270153046, -0.01398597750812769, 0.014785615727305412, 0.011248755268752575, 0.00832700077444315, 0.0011091134510934353, 0.011702395975589752, -0.0017703525954857469, -0.00640863785520196, -0.008619176223874092, -0.012863408774137497, -0.009065127931535244, 0.017776569351553917, 0.013516959734261036, 0.005566711537539959, 0.005247625056654215, 0.03052464686334133, -0.006843056995421648, -0.01200226042419672, -0.017945723608136177, 0.016961554065346718, -0.004774762317538261, 0.006635458208620548, 0.026618722826242447, 0.011625507846474648, 0.002629579044878483, 0.010226140730082989, 0.017099952325224876, -0.006685435771942139, -0.010841247625648975, -0.011725462041795254, 0.007888737134635448, 0.027556758373975754, -0.027233827859163284, -0.007531207054853439, -0.017130708321928978, 0.00503618223592639, -0.0036156713031232357, -0.03127815201878548, 0.04210402071475983, -0.009065127931535244, -0.005451378878206015, -0.0015502598835155368, 0.007669605780392885, -0.006231795065104961, -0.011064223013818264, 0.012363635003566742, 0.000509384844917804, 0.00891904067248106, 0.030909087508916855, 0.012440523132681847, -0.018360920250415802, 0.0032677517738193274, -0.0029294434934854507, 0.01149479765444994, -0.02631116844713688, 0.0019289347110316157, -0.009480324573814869, 0.002985187340527773, 0.00595115264877677, -0.03001718409359455, 0.0005785843241028488, -0.002164405072107911, 0.007611939683556557, 0.012517412193119526, -0.00023258704459294677, -0.01374762412160635, -0.018191765993833542, 0.008995928801596165, -0.00983401108533144, -0.0020433058962225914, 0.00958027970045805, 0.0038501806557178497, 0.023420169949531555, -0.015715964138507843, 0.018776116892695427, -0.013286294415593147, -0.012924919836223125, 0.007600406184792519, 0.02115965448319912, -0.005528267007321119, -0.007942559197545052, 0.004136589355766773, 0.004701718222349882, -0.0072890087030828, 0.01115648914128542, -0.02231297828257084, 0.003396539716050029, -0.02481953613460064, 0.0060165077447891235, -0.019452733919024467, -0.00041519670048728585, -0.053760282695293427, -0.019037537276744843, 0.004267299547791481, -0.013217095285654068, -0.029417455196380615, -0.0008424072293564677, 0.023712344467639923, -0.01540841069072485, 0.013839890249073505, -0.011456353589892387, 0.007846448570489883, 0.012225236743688583, 0.022574398666620255, -0.005678199231624603, -0.027602892369031906, 0.013370871543884277, -0.0004288924392312765, 0.010533694177865982, 0.016607867553830147, 0.006039574276655912, 0.020544547587633133, -0.01982179842889309, -0.01614653877913952, 0.017745815217494965, 0.0012917231069877744, 0.02034463919699192, 0.0158389862626791, -0.014547262340784073, 0.030124828219413757, -0.033769331872463226, 0.007861826568841934, -0.004613296594470739, 0.0042096334509551525, -0.01631569303572178, 0.018084123730659485, -0.0007794549455866218, 0.00981863308697939, 0.0032331522088497877, 0.003438828280195594, -2.5183915568049997e-05, -0.00044667284237220883, -0.01274807658046484, 0.002416214207187295, 0.020360015332698822, 0.008419266901910305, 0.018253277987241745, -0.004221166484057903, 0.004428764805197716, -0.0017501694383099675, -0.008442332968115807, 0.009464947506785393, 0.007996381260454655, -0.014101310633122921, -0.011025778949260712, 0.009680233895778656, 0.008365444839000702, -0.00932654831558466, 0.004159655887633562, -0.019099049270153046, -0.0013811057433485985, 0.012209858745336533, 0.020744457840919495, 0.001673281192779541, 0.009226593188941479, -0.0025411576498299837, -0.00849615503102541, -0.00483242841437459, -0.031924013048410416, -0.007327452767640352, 0.019621888175606728, -0.003738692495971918, -0.003827114123851061, 0.016454091295599937, -0.015946628525853157, 0.010080053471028805, 0.0019433512352406979, -0.0015454543754458427, -0.011794662103056908, -0.023204881697893143, 0.01349389273673296, 0.0068891895934939384, -0.018114877864718437, 0.00412121182307601, 0.0025776794645935297, -0.005297602619975805, 0.02014472894370556, 0.0009120872127823532, -0.0001865742087829858, 0.02263590879738331, 0.0046248300932347775, 0.003640660084784031, 0.007442785426974297, -0.005609000101685524, -0.014870192855596542, 0.006354816257953644, 0.010141563601791859, 0.0026949341408908367, 0.002485413569957018, -0.0008078074897639453, -0.0006910333759151399, 0.01117186713963747, -0.0047094072215259075, 0.008265489712357521, 0.007066032849252224, -0.010756670497357845, -0.011348709464073181, 0.004682496190071106, 0.013886023312807083, -0.021897781640291214, -0.007811849005520344, 0.004820894915610552, -0.008127091452479362, -0.02766440249979496, 0.031108997762203217, -0.01483174879103899, 0.026541832834482193, 0.0020240838639438152, 0.02781817875802517, -0.007469696458429098, -0.01949886791408062, 0.0026795566082000732, -0.01025689672678709, 0.005670510698109865, -0.008519221097230911, 0.010272273793816566, 0.00520533649250865, -0.01934509165585041, -0.006031885277479887, -0.010318406857550144, 0.0006030924268998206, -0.019729532301425934, 0.006220261566340923, 0.00010878490138566121, -0.0032331522088497877, 0.006112618371844292, 0.02282044105231762, 0.01582360826432705, -0.025050200521945953, 0.012371324002742767, -0.0017174918903037906, 0.005954997148364782, -0.016746267676353455, 0.025603797286748886, -0.0016665534349158406, -0.008542288094758987, -0.019468111917376518, -0.0018991404213011265, 0.014216642826795578, -0.022128446027636528, 0.013355493545532227, -0.028402529656887054, 0.013563091866672039, -0.010049298405647278, -0.011018089950084686, -0.011710084974765778, -0.006658524740487337, -0.01533921156078577, 0.0112564442679286, -0.02900225855410099, -0.0012811509659513831, 0.0056243776343762875, -0.0275260042399168, -0.016607867553830147, 0.0022893485147506, -0.02119041047990322, 0.0037925143260508776, -0.009587968699634075, -0.006274083629250526, -0.00671234680339694, -0.006800768431276083, 0.04647127538919449, -0.010518316179513931, -0.025757573544979095, -0.007089099381119013, 0.018253277987241745, 0.004221166484057903, 0.028294887393712997, 0.0008568237535655499, -0.007354363799095154, -0.0015973539557307959, -0.015854362398386, -0.01500090304762125, -0.021298052743077278, 0.0037559925112873316, 0.004574852529913187, 0.002958276541903615, -0.015869740396738052, 0.0199755746871233, 0.00320431892760098, -0.005201491992920637, 0.01882225088775158, 7.622752309544012e-05, 0.016238804906606674, 0.010848935693502426, 0.01057982724159956, -0.016792399808764458, -0.01090275775641203, 0.02068294771015644, 0.010518316179513931, 0.009288104251027107, 0.014385797083377838, 0.010848935693502426, -0.012609677389264107, -0.0006405754829756916, -0.00462867459282279, -0.0316779725253582, 0.023789232596755028, -0.013770691119134426, 0.006904567591845989, -0.005024649202823639, 0.010933512821793556, -0.000936595315579325, 0.006070329807698727, 0.0008400044171139598, 0.010180007666349411, 0.0035637717228382826, 0.017038442194461823, -0.005981908179819584, -0.019621888175606728, 0.027710536494851112, -0.007381274830549955, -0.007808004505932331, 0.010226140730082989, 0.0015589098911732435, -0.0224821325391531, -0.00966485682874918, 0.019437355920672417, -0.021867025643587112, 8.547813922632486e-05, 0.0038098141085356474, -0.014139754697680473, -0.0011850405717268586, -0.008465399034321308, -0.0051246038638055325, 0.01648484729230404, 0.0010408750968053937, 0.019375845789909363, 0.016054272651672363, -0.001340739312581718, -0.012771142646670341, -0.003584916004911065, 0.03017096035182476, 0.014370419085025787, -0.021913159638643265, 0.0005944424774497747, -0.0047516957856714725, -0.014062866568565369, 0.041212115436792374, 0.014954769983887672, -0.03232383355498314, -0.0035310941748321056, 0.002967887558043003, -0.006151062436401844, 0.013778379186987877, -0.018791494891047478, -0.00281411106698215, -0.004413387272506952, -0.003994346130639315, 0.0028429441154003143, 0.0011600519064813852, -0.006885345559567213, -0.006212573032826185, -0.009687922894954681, 0.00011088731116615236, 0.018253277987241745, -0.007354363799095154, 0.01117186713963747, 0.010164630599319935, 0.00711985444650054, -0.013132518157362938, -0.019452733919024467, 0.00023571062774863094, -0.003579149255529046, 0.01057982724159956, 0.02684938721358776, 0.004909316543489695, 0.01066440436989069, 0.017884213477373123, 0.025895971804857254, 0.021405696868896484, -0.011479419656097889, -0.017607415094971657, 0.0004906433168798685, -0.025250110775232315, 0.011218000203371048, 0.01276345457881689, -0.01042605098336935, 0.008088646456599236, 0.0049746716395020485, 0.02365083433687687, -0.0035676162224262953, -0.01108729001134634, -0.0016992309829220176, 0.018376298248767853, -0.00041639807750470936, -0.011187244206666946, -0.016407959163188934, 0.02683400921523571, 0.021436452865600586, 0.007192898541688919, 0.0200063306838274, 0.022574398666620255, 0.009372681379318237, 0.009995476342737675, -0.009803255088627338, 0.01848394237458706, 0.010418361984193325, 0.016869287937879562, 0.0013234395300969481, 0.0005550372879952192, 0.003752148011699319, 0.0035291719250380993, -0.0030582312028855085, 0.0014320441987365484, 0.0026891676243394613, -0.004959294106811285, 0.011464042589068413, 0.006620080675929785, 0.017192218452692032, 0.0029717320576310158, -0.021298052743077278, 0.0022086158860474825, -0.0031812526285648346, 0.016069650650024414, -0.01500090304762125, 0.007927181199193, 0.004970827139914036, 0.019606510177254677, 0.029417455196380615, 0.0007746493793092668, 0.012179103679955006, -0.015293078497052193, 0.001929895835928619, 0.00013839890016242862, -0.004405698273330927, -0.01765354909002781, -0.003092831000685692, 0.019375845789909363, -0.012755765579640865, 0.011856172233819962, 0.0025123246014118195, 0.0005867536528967321, 0.014862503856420517, 0.009780189022421837, 0.007196743041276932, -0.020390771329402924, -0.0067085023038089275, 0.0008899818058125675, 0.004344187676906586, 0.016223426908254623, -0.012940296903252602, -0.03349253535270691, -0.00798869226127863, 0.008519221097230911, -0.004274988081306219, 2.6745707145892084e-05, 0.004966982640326023, -0.0012157958699390292, -0.005758931860327721, 0.01963726617395878, 0.008150157518684864, -0.004378787241876125, 0.004328810144215822, 0.014032110571861267, 0.005958841647952795, 0.004655585158616304, -0.008688375353813171, 0.008027136325836182, 0.011502486653625965, 0.0021759383380413055, 0.013655357994139194, -0.005113070365041494, 0.0006396143580786884, 0.0014887492870911956, 0.0024469695053994656, 0.02017548494040966, -0.005812753923237324, -0.007650383748114109, 0.011702395975589752, -0.01814563386142254, 0.0017463250551372766, -0.012209858745336533, -0.007950248196721077, -0.003513794392347336, -0.005151514429599047, -0.019468111917376518, 0.0044748978689312935, 0.005732021294534206, -0.015477610751986504, -0.003863635938614607, -0.00043321738485246897, -0.010472183115780354, -0.014685661531984806, 0.006343282759189606, -0.0013714946107938886, -0.008203979581594467, 0.00754274008795619, -0.012886475771665573, 0.0045056529343128204, -0.01191768329590559, -0.010095430538058281, 0.00283141084946692, 0.01882225088775158, 0.008111713454127312, -0.012640433385968208, -0.02348168008029461, 0.006685435771942139, 0.01383220124989748, 0.028033467009663582, -0.02969425357878208, -0.010772047564387321, -0.02566530741751194, -0.01934509165585041, 0.008626865223050117, -0.004217321984469891, -0.012478967197239399, 0.0014032110339030623, 0.004151966888457537, 0.0183455441147089, -0.0013493893202394247, 0.0015079713193699718, -0.0004762267635669559, 0.0015012436779215932, -0.011433286592364311, 0.010133875533938408, 0.0019462344935163856, -0.016284937039017677, 0.0058319759555161, 0.007823382504284382, -0.034261416643857956, -0.00801175832748413, -0.015708275139331818, 0.004271144047379494, 0.022866573184728622, 0.015715964138507843, 0.0008476932416670024, -0.0009827283211052418, -0.013363182544708252, -0.002079827943816781, 0.006477837450802326, -0.011448664590716362, -0.008080958388745785, -0.01474717166274786, 0.019698776304721832, -0.0005694538122043014, -0.010710537433624268, 0.02249751053750515, -0.025419265031814575, 0.002135572023689747, 0.0065085929818451405, -0.01932971365749836, -0.03610673546791077, -0.003927068784832954, 0.005470600910484791, 0.018037989735603333, -0.010541383177042007, 0.008957484737038612, -0.004163500387221575, 0.007454318460077047, -0.03647579997777939, -0.010948890820145607, 0.018576208502054214, -0.009480324573814869, 0.004759384319186211, -0.005232247523963451, -0.011487108655273914, -0.0125097231939435, -0.02783355675637722, 0.018745362758636475, -0.04284214973449707, 0.000342393119353801, 0.010802803561091423, 0.01685390993952751, -0.015885118395090103, -1.2892302038380876e-05, -0.0033023515716195107, -0.004332654643803835, -0.03844413906335831, -0.005213025491684675, -0.0007208276074379683, -0.037213925272226334, 0.0025623019319027662, 0.03383084386587143, -0.008857529610395432, 0.02531162090599537, 0.011602440848946571, -0.017868835479021072, -0.009703300893306732, -0.028064221143722534, -0.016469469293951988, -0.021620983257889748, -0.0008774874731898308, -0.0012705788249149919, -0.0037367702461779118, 0.008019447326660156, -0.01814563386142254, 0.028756216168403625, -0.0023527813609689474, -0.0018011078936979175, 0.005655132699757814, -0.007684983313083649, 0.014531884342432022, 0.001976028783246875, -0.014685661531984806, -0.022451376542448997, -0.009126638993620872, 0.045425593852996826, -0.011871550232172012, -0.015531431883573532, 0.005820442456752062, -0.01899140514433384, 0.0020452281460165977, -0.005243780557066202, 0.005213025491684675, -0.0023854589089751244, -0.005978063680231571, -0.009018994867801666, 0.012886475771665573, -0.0004949683207087219, 0.011079601012170315, 0.01963726617395878, 0.000532451318576932, 0.020190861076116562, 0.006585481110960245, 0.003065920202061534, 0.003550316207110882, 0.0065931701101362705, -0.003923224285244942, 0.008995928801596165, -0.0003467180940788239, -0.011064223013818264, -0.03647579997777939, -0.016423337161540985, 0.003967435099184513, 0.022374488413333893, -0.017407506704330444, 0.003928991034626961, 0.02597285993397236, -0.022712796926498413, -0.0008707597735337913, -0.026034371927380562, -0.004940072074532509, 0.005501356441527605, -0.004905472043901682, 0.0028794659301638603, -0.0015022046864032745, 0.0125097231939435, -0.0005358151975087821, -0.003108208766207099, -0.004497964400798082, 0.0004824739589821547, 0.024066030979156494, -0.014547262340784073, 0.011540930718183517, 0.005489822942763567, 0.009787878021597862, -0.0062087285332381725, -0.006939167156815529, 0.009926277212798595, 0.0068815010599792, 0.017530526965856552, -0.015446854755282402, -0.008703753352165222, -0.013063318096101284, -0.02349705807864666, -0.024066030979156494, 0.005105381831526756, 0.0016204204875975847, -0.011533241719007492, 0.01685390993952751, 0.005301446653902531, -0.016930798068642616, -0.04450293630361557, -0.004659429658204317, -0.015854362398386, 0.021405696868896484, 0.03552238643169403, 0.013801446184515953, 0.010502939112484455, 0.009280415251851082, -0.010687470436096191, 0.0029448210261762142, -0.013909089379012585, -0.004728629253804684, 0.029771141707897186, 0.013570780865848064, 0.002435436239466071, 0.000300104555208236, -0.0018808795139193535, 0.0015973539557307959, -0.0038713249377906322, 0.015462232753634453, 0.0042519220151007175, 0.006923789624124765, -0.009880144149065018, 0.014347353018820286, -0.0003851622168440372, 0.019406601786613464, 0.014447307214140892, 0.0032831295393407345, 0.029202168807387352, -0.0013868723763152957, -0.018530074506998062, 0.007300542201846838, 0.0066662137396633625, -0.004340343177318573, 0.005524422973394394, 0.008949795737862587, -0.013486203737556934, 0.008311622776091099, -0.010041609406471252, -0.01573903113603592, 0.010303028859198093, -0.001018769689835608, -0.0183455441147089, -0.00998778734356165, -0.005597466602921486, -0.025603797286748886, 0.013063318096101284, 0.011248755268752575, -0.009249660186469555, 0.006716191302984953, -0.003037086920812726, 0.011571685783565044, -0.029940295964479446, -0.006454770918935537, 0.0013791834935545921, -0.009857077151536942, -0.0002180503506679088, 0.0022778152488172054, 0.012455901131033897, -0.030801445245742798, 0.006139528937637806, 0.013447759672999382, -0.01242514606565237, 0.008557665161788464, -0.03161646053195, 0.0036656486336141825, -0.006031885277479887, 0.0022374489344656467, 0.007023744285106659, 0.010679781436920166, 0.0029563542921096087, 0.008434643968939781, -0.004255766049027443, 0.005278380122035742, -0.0008611486991867423, 0.0016876977169886231, 0.021267298609018326, -0.020113972947001457, -0.010672093369066715, 0.01634644716978073, 0.016577113419771194, 0.006935322657227516, 0.007323608733713627, -0.0004257688415236771, 0.003313884837552905, 0.009549524635076523, -0.0183147881180048, 0.0009466869523748755, 0.0015665986575186253, -0.011640884913504124, -0.02435820735991001, 0.01634644716978073, 0.00274683372117579, 0.01833016611635685, 0.008711442351341248, 0.013432382605969906, -0.008657620288431644, 0.007192898541688919, -0.001902023795992136, 0.02298959530889988, 0.00586657552048564, -0.019037537276744843, -0.00291598797775805, -0.016777021810412407, -0.014785615727305412, -0.008234734646975994, 0.018391676247119904, 0.016131160780787468, 0.01780732534825802, -0.017115330323576927, 0.019268201664090157, -0.015200812369585037, -0.005055404268205166, -0.018099499866366386, 0.017269106581807137, -0.017453638836741447, 0.010518316179513931, -0.02218995802104473, 0.0030639979522675276, -0.011371776461601257, -0.00031476138974539936, -0.014132065698504448, -0.011971505358815193, -0.00033134041586890817, -0.03269289433956146, 0.0033446401357650757, -0.009180460125207901, 0.0007852215203456581, -0.022866573184728622, -0.006904567591845989, 0.009126638993620872, -0.009203527122735977, 0.007292853202670813, 0.00884215161204338, 0.010103119537234306, -0.012517412193119526, -0.02718769572675228, -0.011148800142109394, -0.008119402453303337, 0.019944818690419197, 0.011018089950084686, -0.00433649867773056, -0.009272726252675056, 0.0056243776343762875, -0.021713249385356903, 0.007561962120234966, -0.000300104555208236, -0.010787425562739372, 0.005985752679407597, -0.014362730085849762, -0.005981908179819584, 0.027741290628910065, -0.01634644716978073, -0.013094074092805386, 0.002410447457805276, 0.011779284104704857, -0.005224558524787426, 0.015200812369585037, 0.03779827803373337, 0.015300767496228218, -0.007066032849252224, 0.0016079260967671871, -0.008350066840648651, 0.006673902738839388, 0.004294210579246283, -0.020037084817886353, 0.0038194251246750355, 0.01785345748066902, 0.006654680706560612, -0.005589778069406748, 0.00198179529979825, 0.018053367733955383, 0.0002671867550816387, 0.0011427520075812936, -0.010933512821793556, -0.004640207625925541, -0.016900043934583664, -0.0019327790942043066, 0.005082315299659967, -0.005301446653902531, 0.004797828383743763, -0.01602351665496826, -0.0010908524272963405, -0.011141111142933369, 0.0008587459451518953, -0.014047488570213318, 0.00657779211178422, -0.000953414652030915, -0.0007698438712395728, 0.0013340116711333394, -0.008688375353813171, 0.02614201419055462, 0.017069198191165924, 0.014654905535280704, -0.035214830189943314, 0.008203979581594467, 1.5678000636398792e-05, 0.0007289969944395125, -0.006969922222197056, -0.024727270007133484, 0.023712344467639923, 0.003879013704136014, 0.0006876695551909506, 0.03447670489549637, -0.0004935266333632171, -8.47573101054877e-05, 0.006854590028524399, 0.008273178711533546, -0.0266494769603014, -0.010641337372362614, -0.0002527702017687261, 0.0033542511519044638, -0.0028717771638184786, -0.01384757924824953, 0.021790137514472008, -0.0030159426387399435, -0.0016550201689824462, 0.01982179842889309, 9.74919312284328e-05, 0.013024874031543732, -0.01325553935021162, -0.007684983313083649, -0.0019337402191013098, 0.0019798732828348875, -0.005732021294534206, -0.0037752145435661077, -0.040043413639068604, 0.03198552504181862, -0.00725440913811326, -0.01315558422356844, -0.028279509395360947, 0.012655810452997684, -0.013993666507303715, 0.012025326490402222, 0.004601763561367989, 0.021082766354084015, 0.017730437219142914, 0.02914065681397915, -0.01785345748066902, -0.0002520493871998042, -0.0020836724434047937, -0.009311170317232609, -0.0034003842156380415, 0.0037752145435661077, 0.0022874262649565935, 0.005420623812824488, 0.00716983200982213, -0.019237447530031204, 0.00649321498349309, 0.010572138242423534, 0.006773857399821281, -0.011687017977237701, -0.012117592617869377, 0.00042937297257594764, -0.009995476342737675, 0.014454996213316917, -0.022297600284218788, 0.008688375353813171, -7.538655336247757e-05, -0.006597014144062996, 0.0191605594009161, 0.015008592046797276, -0.014147443696856499, -0.001813602284528315, 0.003734848229214549, -0.011018089950084686, 0.004328810144215822, 0.0013753391103819013, -0.028571683913469315, -0.008534599095582962, -0.00403663469478488, 0.0013638058444485068, -0.004963138606399298, 0.005439845845103264, -0.004332654643803835, 0.017422884702682495, -0.002112505491822958, 0.031708724796772, -0.0007698438712395728, 0.007304386235773563, -0.024927180260419846, -0.013140207156538963, 0.016746267676353455, 0.010618271306157112, -0.014062866568565369, -0.0048670279793441296, 0.007162143010646105, 0.004909316543489695, -0.018407054245471954, 0.02700316347181797, -0.0005161125445738435, 0.01880687288939953, -0.01600813865661621, -0.0022893485147506, 0.01232519093900919, 0.007077565882354975, -0.014947080984711647, 0.009518768638372421, 0.0018443575827404857, -0.01374762412160635, -0.006646991707384586, -0.0013147895224392414, 0.01349389273673296, -0.018453186377882957, 0.014877881854772568, -0.002322026062756777, -0.001812641159631312, -0.025234732776880264, 0.018114877864718437, -0.00201831734739244, -0.011317954398691654, 0.021251920610666275, 0.0018030301434919238, -0.005305291153490543, 0.004809361882507801, 0.017715059220790863, -0.002504635602235794, -0.009534146636724472, -0.0006737335352227092, 0.0283102635294199, -0.001182157313451171, 0.012809587642550468, 0.0174997728317976, -0.005908864084631205, 0.010810491628944874, 0.014378108084201813, -0.01433966401964426, 0.0030082538723945618, -0.007042966317385435, -0.0008919040556065738, -0.008357755839824677, 0.013616913929581642, 0.024619625881314278, -0.004855494946241379, 0.015039347112178802, -0.0005478289676830173, 0.012332879938185215, 0.006058796308934689, -0.03395386412739754, -0.012263680808246136, 0.033923108130693436, 0.007096787914633751, -0.013639980927109718, 0.011064223013818264, 0.00038684415630996227, -0.01151017565280199, -0.017238352447748184, -0.0013234395300969481, 0.011840795166790485, 0.0061664399690926075, 0.006354816257953644, 0.01517005730420351, -0.002533468883484602, 0.0017395972972735763, 0.02100587822496891, 0.02814110927283764, 0.005897331051528454, 0.01167932990938425, 0.011702395975589752, 0.002366236876696348, 0.006454770918935537, 0.018299410119652748, 0.0073159197345376015, -0.015731342136859894, -0.0022124601528048515, 0.010010853409767151, 0.0027929667849093676, -0.004982360638678074, -0.01015694160014391, -0.014693349599838257, 0.0015060491859912872, 0.010387605987489223, -0.0009803255088627338, -0.004317276645451784, -0.0029217544943094254, -0.011671640910208225, -0.029755763709545135, 0.02283581905066967, -0.0020260061137378216, -0.0036906374152749777, 0.009249660186469555, 0.004117367323487997, 0.02083672396838665, 0.015946628525853157, -0.018222521990537643, 0.010795114561915398, 0.012555856257677078, 0.01115648914128542, -0.015469921752810478, -0.01281727571040392, 0.004244233015924692, -0.005366801749914885, 0.004128900356590748, -0.010018542408943176, -0.003669493133202195, 0.0014339664485305548, 0.014201264828443527, -0.02584983967244625, 0.004144278354942799, -0.02363545633852482, -0.006362505257129669, -0.017038442194461823, 0.01467797253280878, 0.0013128673890605569, -0.032938938587903976, -0.010872002691030502, 0.003556082956492901, 0.006969922222197056, 0.024081408977508545, 0.007600406184792519, -0.002056761411949992, 0.012117592617869377, 0.003160108346492052, 0.022958839312195778, -0.003948213066905737, 0.032416097819805145, 0.010203074663877487, -0.008042514324188232, 0.009634100832045078, 0.01015694160014391, 0.010679781436920166, 0.0074312519282102585, -0.020083218812942505, 0.0057089547626674175, 0.01276345457881689, -0.014816371724009514, 0.017438260838389397, 0.011333332397043705, 0.00018717489729169756, 0.007231342606246471, -0.012978740967810154, -0.00442107580602169, -0.0018808795139193535, 0.00866530928760767, 0.00512075936421752, -0.009910899214446545, 0.020882856100797653, -0.007281320169568062, 0.00035993324127048254, 0.011379465460777283, 0.011225688271224499, -0.011717773973941803, 0.003930913284420967, 0.0065508815459907055, 0.009142016060650349, 0.013247850351035595, -0.011164178140461445, 0.008250112645328045, -0.002687245374545455, 0.014208953827619553, -0.018530074506998062, -0.009395747445523739, -0.018776116892695427, 0.012379013001918793, -0.0017222973983734846, 0.027541382238268852, 0.0071236989460885525, 0.012294435873627663, -0.01763817109167576, -0.0025353909004479647, 0.006927634123712778, 0.007815693505108356, -0.004382631741464138, -0.009426502510905266, -0.011271821334958076, -0.013293983414769173, -0.001429160824045539, -0.013401626609265804, 0.014447307214140892, -0.007631161715835333, -0.008473088033497334, 0.011702395975589752, 0.03083219937980175, -0.017914969474077225, 0.0005089042824693024, -0.009626412764191628, 0.021052010357379913, -0.0019837175495922565, -0.02083672396838665, 0.010249207727611065, 0.030094072222709656, 0.010625960305333138, 0.007246720138937235, 0.01091813575476408, 0.011202622205018997, 0.0012686565751209855, -0.011102667078375816, -0.008588421158492565, -0.03281591832637787, 0.01259430032223463, -0.016254182904958725, -0.004970827139914036, 0.00925734918564558, -0.017622793093323708, -0.019052915275096893, 0.012640433385968208, -0.0028294885996729136, 0.001140829874202609, 0.01866847462952137, 0.007788782473653555, -0.016715511679649353, 0.0005665704957209527, 0.017930347472429276, 0.0027872000355273485, 0.048593390733003616, -0.003948213066905737, 0.03927453234791756, -0.00771189434453845, 0.007888737134635448, -0.020190861076116562, -0.006143373437225819, -0.006020352244377136, -0.0033580956514924765, -0.00077561050420627, 0.0008467321749776602, -0.01191768329590559, 0.026095882058143616, 0.028110355138778687, -0.0005930008483119309, -0.0007650383631698787, 0.00695070018991828, 0.0007794549455866218, -0.0011840794468298554, 0.007285164203494787, -0.0057397098280489445, 0.008342377841472626, -0.010379917919635773, -0.02381998859345913, -0.0003234113100916147, 0.021867025643587112, 0.02368159033358097, -0.0010447194799780846, 0.002318181563168764, 0.009080505929887295, 0.013862956315279007, -0.0039751240983605385, -0.035245586186647415, 0.03117050789296627, 0.018776116892695427, -0.011810039170086384, 0.00220477138645947, 0.013293983414769173, 0.014947080984711647, -0.012978740967810154, -0.019298957660794258, 0.0011485186405479908, 0.003327340353280306, 0.011118045076727867, -0.012671188451349735, 0.00612030690535903, 0.020267751067876816, 0.005885797552764416, -0.01466259453445673, 0.016530979424715042, -0.0019270124612376094, -0.009042061865329742, -0.02298959530889988, -0.005097692832350731, 0.005512889474630356, 0.005074626300483942, 0.004905472043901682, 0.007042966317385435, -0.020713701844215393, 0.00462867459282279, -0.011064223013818264, -0.006654680706560612, -0.00766191678121686, 0.017930347472429276, -0.026541832834482193, 0.010180007666349411, -0.011387154459953308, 0.027541382238268852, 0.0013484281953424215, -0.003046697936952114, 0.005720487795770168, -0.006350971758365631, -0.009180460125207901, -0.034384436905384064, -0.006700813304632902, -0.02314337156713009, -0.016884665936231613, -0.004248077515512705, -0.0003027475904673338, -0.007608095183968544, -0.007419718895107508, -0.01215603668242693, -0.006047263275831938, -0.0048247394151985645, -0.007250564638525248, 0.00412121182307601, 0.001191768329590559, 0.011856172233819962, 0.02016010694205761, -0.009703300893306732, -0.006739257834851742, -0.025542285293340683, 0.008542288094758987, 0.011940749362111092, 0.03715241700410843, -0.016577113419771194, -0.0034695835784077644, -0.013639980927109718, 0.0008241462637670338, 0.006773857399821281, 0.007631161715835333, 0.004551785998046398, -0.02014472894370556, 0.00272953393869102, 0.022620530799031258, -0.006435548886656761, -0.020267751067876816, -0.01267887745052576, 0.0007645578007213771, -0.003533016424626112, -0.006954544689506292, 0.004105834290385246, -0.0064317043870687485, 0.019867930561304092, 0.009057438932359219, 0.01680777780711651, 0.03235458582639694, 0.01717684231698513, 0.003340795636177063, 0.020390771329402924, -0.011264132335782051, 0.006612392142415047, 0.026080504059791565, 0.0013301671715453267, -0.0074658519588410854, 0.02063681371510029, 0.0033619399182498455, 0.004647896625101566, -0.020021706819534302, 0.022712796926498413, 0.012648121453821659, -0.03183174878358841, -0.006962233688682318, 0.021298052743077278, 0.0006482643075287342, 0.01682315580546856, 0.0018164855428040028, -0.0038328806404024363, 0.005424467846751213, 0.008150157518684864, -0.010264584794640541, 0.00264495681039989, 0.011971505358815193, 0.005501356441527605, -0.007323608733713627, 0.010203074663877487, -0.037090905010700226, 0.006078018341213465, 0.022528264671564102, 0.004028945695608854, -0.019606510177254677, -0.011779284104704857, -0.02552690915763378, 0.01225599180907011, -0.012640433385968208, 0.015692897140979767, -0.011456353589892387, 0.005770465359091759, -0.01563907600939274, 0.004428764805197716, 0.011909994296729565, 0.0036002935376018286, 0.0199755746871233, 0.004386476241052151, 0.0037079371977597475, -0.008811396546661854, -0.014116687700152397, 0.022236090153455734, 0.003256218507885933, -0.022066935896873474, -0.004736317787319422, 0.009026683866977692, -0.001546415500342846, -0.0010005086660385132, -0.0041250563226640224, 0.03413839638233185, 0.0013349726796150208, 0.006074173841625452, -0.006227950565516949, -0.00771189434453845, 0.02380461059510708, -0.0014454995980486274, 0.02480415813624859, 0.004382631741464138, -0.004809361882507801, 0.013870645314455032, -0.015531431883573532, 0.02817186526954174, 0.0020682946778833866, 0.0038847802206873894, 0.008150157518684864, 0.02034463919699192, -0.011148800142109394, 0.008211668580770493, -0.03034011460840702, 0.019560378044843674, -0.0225128885358572, -0.00875757448375225, -0.03296969458460808, -0.013117140159010887, 0.005009271204471588, 0.005954997148364782, -0.014301219955086708, 0.002052917145192623], "86a1c76e-c2ee-4953-a619-dfbbfd9beb39": [-0.05228385701775551, -0.009319321252405643, -0.02062656544148922, 0.04950375482439995, -0.027561873197555542, -0.012667400762438774, 0.02023794874548912, 0.012914023362100124, -0.001818837015889585, 0.02644086442887783, 0.01315317116677761, 0.032464418560266495, -0.026635171845555305, 0.004670870490372181, -0.0059226639568805695, 0.02125432901084423, -0.008631768636405468, 0.010111500509083271, 0.019759651273489, -0.011120408773422241, 0.08089200407266617, -0.005171588156372309, -0.01747279241681099, -0.014797317795455456, -0.0160528477281332, -0.005418209824711084, -0.014274180866777897, 0.0022195978090167046, -0.025125546380877495, 0.0065354821272194386, 0.022973209619522095, 0.013310112990438938, 0.01474500447511673, 0.023511294275522232, 0.007409869227558374, -0.059906717389822006, 0.01987922564148903, 0.01694965548813343, -0.00756307365372777, -0.0236757081001997, -0.03647015616297722, 0.02216608263552189, -0.0109559940174222, 0.005851666908711195, -0.029146231710910797, -0.013407266698777676, 0.01781656965613365, -0.0008589731296524405, -0.03001314587891102, -0.02557395026087761, 0.010657058097422123, 0.023884963244199753, -0.03324165195226669, 0.00012891602818854153, 0.030939847230911255, -0.05267247185111046, 0.019894171506166458, 0.10050218552350998, 0.013765989802777767, -0.048666734248399734, -0.030057987198233604, -0.01392293069511652, 4.262169386493042e-05, -0.03590217977762222, 0.0013984586112201214, -0.01783151552081108, 0.000788442965131253, 0.017024388536810875, -0.018250025808811188, 0.005776932928711176, -0.025394588708877563, 0.03126867488026619, -0.028309212997555733, 0.027756180614233017, -0.03419824689626694, -0.006871785037219524, 0.045617591589689255, -0.01671050675213337, 0.018698429688811302, 0.011673440225422382, 0.007473392877727747, 0.030297135934233665, 0.05963767692446709, 0.023959698155522346, 0.014438595622777939, 0.030327029526233673, -0.029564741998910904, -0.04343536123633385, -0.02874266915023327, -0.019012311473488808, 0.02038741670548916, 0.023870017379522324, -0.01284676231443882, 0.00024638843024149537, 0.006520535331219435, 0.03623100742697716, 0.02076108567416668, 0.010133921168744564, 0.020671404898166656, -0.01911693997681141, 0.0002690421533770859, 0.019909119233489037, -0.023182464763522148, 0.004330831114202738, 0.01207700278609991, -0.010589797981083393, -0.018952524289488792, 0.034616757184267044, -0.016919761896133423, 0.007787275593727827, 0.03494558483362198, -0.063792884349823, -0.016650719568133354, -0.012689821422100067, -0.02605224773287773, -0.010477696545422077, -0.023122677579522133, -0.02935548685491085, -0.014311547391116619, -0.018294865265488625, 0.012682347558438778, 0.004371935036033392, 0.001650685677304864, -0.0006996964220888913, -0.03261388838291168, 0.01608274132013321, 0.005399526562541723, 0.014453542418777943, 0.01633683778345585, 0.022749008610844612, 0.008586928248405457, -0.009042805060744286, 0.04905535280704498, -0.006860574707388878, 0.007125880103558302, 0.02313762530684471, 0.030581124126911163, 0.041193343698978424, -0.019939012825489044, 0.05312087759375572, -0.0346466489136219, -0.03694845363497734, -0.016142528504133224, 0.01696460135281086, 0.027247991412878036, 0.00017889434820972383, -0.046753548085689545, 0.021986722946166992, 0.001229373156093061, 0.0364103689789772, -0.04229940474033356, -0.012211523950099945, 0.011748174205422401, -0.012928970158100128, -0.004895072430372238, -0.01582864671945572, -0.016037901863455772, 0.02392980456352234, 0.020148267969489098, 0.06516798585653305, 0.0015395189402624965, -0.02567857876420021, -0.006169286090880632, 0.00294264848344028, 0.022554699331521988, 0.018683481961488724, 0.0786798819899559, 0.017278485000133514, 0.00601608119904995, 0.014139659702777863, 0.016919761896133423, -0.019146833568811417, 0.03342101350426674, 0.030057987198233604, -0.02125432901084423, -0.024497782811522484, 0.03808441013097763, 0.025215227156877518, 0.02466219663619995, -0.024109166115522385, -0.013250325806438923, 0.0012966337380930781, -0.0058404565788805485, -0.012106896378099918, -0.01196490228176117, 0.02315257117152214, 0.003422813955694437, 0.04896567016839981, 0.007548126857727766, -0.000874386983923614, -0.01949060894548893, 0.01606779545545578, 0.004962333012372255, 0.021672839298844337, -0.0008533680811524391, -0.014999100007116795, -0.010657058097422123, 0.0017683915793895721, 0.011471658013761044, 0.05811310186982155, -0.003703066147863865, -0.026530545204877853, -0.03186654672026634, 0.04759056493639946, -0.026978949084877968, 0.0407150462269783, -0.018698429688811302, -0.021792413666844368, 0.022210923954844475, -0.011254929937422276, 0.03856270760297775, -0.02582804672420025, 0.012091949582099915, 0.026874320581555367, -0.011023255065083504, 0.019042205065488815, 0.0008075935184024274, 0.039310045540332794, 0.0069726756773889065, -0.015604444779455662, -0.00027931807562708855, 0.011426817625761032, 0.012286257930099964, -0.00455129612237215, -0.04732152447104454, -0.017293430864810944, -0.014064925722777843, 0.05437640845775604, -0.048517268151044846, 0.004943649284541607, 0.03608154132962227, -0.01732332445681095, 0.01899736560881138, -0.047530777752399445, -0.008669136092066765, -0.0008290795376524329, 0.013026123866438866, -0.022465018555521965, -0.010298335924744606, -0.014221866615116596, -0.0019393455004319549, 0.02276395447552204, 0.02215113677084446, 0.0017973510548472404, -0.014064925722777843, 0.00359096541069448, -0.010074133984744549, 0.048666734248399734, -0.0020084744319319725, -0.002759550465270877, 0.01006666012108326, 0.009954559616744518, 0.019595235586166382, 0.013175591826438904, -0.03925025835633278, 0.01910199224948883, 0.014535749331116676, -0.02038741670548916, -0.013302639126777649, 0.0004348580550868064, 0.02062656544148922, 0.014012611471116543, -0.007215560879558325, 0.03264378011226654, 0.01781656965613365, -0.027427352964878082, 0.040446002036333084, -0.028667936101555824, 0.013235379010438919, 0.010776632465422153, -0.007290294859558344, -0.005803089588880539, 0.003789010224863887, 0.031178995966911316, 0.01596316695213318, -0.026799587532877922, -0.0031855336856096983, 0.0048913354985415936, 0.01404997892677784, -0.003547993255779147, 0.008751343004405499, 0.02898181788623333, 0.02330203913152218, 0.008355253376066685, 0.013362426310777664, 0.020088480785489082, -0.017502686008810997, 0.00126487179659307, -0.027741234749555588, -0.006457011681050062, 0.009080172516405582, 0.013945351354777813, 0.02821953222155571, 0.01772688888013363, -0.013803357258439064, 0.0037535117007791996, -0.006557902321219444, -0.02747219242155552, -0.023436561226844788, 0.024228740483522415, 0.012106896378099918, -0.002092550043016672, -0.021613052114844322, -0.068874791264534, 0.034736331552267075, -0.025364695116877556, 0.006931571755558252, 0.010993361473083496, -0.03135835751891136, 0.018668536096811295, 0.012525406666100025, 0.010657058097422123, -0.011927534826099873, -0.005392053164541721, -0.014199446886777878, -0.015036466531455517, -0.021568212658166885, -0.004741868004202843, 0.008878391236066818, -0.03913068398833275, 0.0031051947735249996, -0.0035853602457791567, -0.0665430873632431, 0.03377973660826683, 0.04014706611633301, -0.049025457352399826, 0.032225269824266434, 0.002927701687440276, -0.011949955485761166, -0.01781656965613365, 0.005541520658880472, -0.009603310376405716, -0.028548361733555794, -0.02011837437748909, -0.027502086013555527, -0.014475962147116661, -0.04212004318833351, -0.04238908365368843, -0.0066438461653888226, -0.03566303104162216, 0.011045674793422222, 0.017562473192811012, -0.01642651855945587, -0.008841023780405521, 0.0016263971338048577, -0.0053845797665417194, -0.00892323162406683, -0.007039936259388924, -0.020267842337489128, 0.006217862945050001, 0.0009355754009447992, -0.007215560879558325, 0.038532815873622894, -0.0013340006116777658, 0.02950495481491089, -0.017741834744811058, -0.013175591826438904, -0.014371334575116634, 0.024736931547522545, -0.006804524455219507, -0.020342575386166573, -0.023630868643522263, -0.022584592923521996, -0.003934741485863924, -0.005261268466711044, 0.023466454818844795, 0.004125312902033329, -0.02189704217016697, -0.02582804672420025, 0.0028324159793555737, -0.038801856338977814, 0.03061101771891117, 0.006479431875050068, -0.0006441130535677075, -0.04364461451768875, -0.015783805400133133, 0.05578140541911125, 0.006557902321219444, -0.025095652788877487, 0.0334509052336216, -0.016247157007455826, -0.003092116443440318, 0.01170333381742239, 0.043076638132333755, 0.03413845971226692, 0.015619391575455666, -0.00490254582837224, -0.0164414644241333, -0.017547527328133583, 0.0030734329484403133, -0.02517038770020008, -0.017682047560811043, -0.022704167291522026, 0.00047362627810798585, -0.03324165195226669, -0.01569412462413311, -0.00911006610840559, -0.03240463137626648, 0.013444634154438972, -0.037665899842977524, 0.00702498946338892, -0.02088066004216671, -0.026366129517555237, 0.009506155736744404, -0.004913755692541599, -0.011621125973761082, 7.730290963081643e-05, -0.032464418560266495, 0.026381077244877815, 0.010784106329083443, -0.018309812992811203, -0.001978580839931965, 0.040804725140333176, 0.03273346275091171, 0.04161185026168823, 0.003140693297609687, -0.010410436429083347, 0.047291629016399384, -0.013549261726439, -0.02950495481491089, 0.026799587532877922, 0.04212004318833351, -0.019027259200811386, 0.039937812834978104, -0.0006207586848177016, 0.027890702709555626, -0.005974977742880583, 0.0379648357629776, 0.008011477068066597, -0.01517846155911684, -0.00035218364791944623, 0.059308845549821854, 0.007193140685558319, -0.001736629637889564, -0.003566676750779152, -0.008302939124405384, 0.03709792345762253, 0.006800787523388863, 0.02494618482887745, 0.022808795794844627, -0.01808561012148857, 0.004192573484033346, 0.007436025887727737, 0.02186714857816696, -0.046514399349689484, -0.04337557405233383, -0.03572281822562218, -0.004521402530372143, 0.028383946046233177, -0.0006058118888176978, 0.02783091552555561, 0.024124111980199814, -0.07377733290195465, 0.0211347546428442, 0.017263537272810936, 0.00758923077955842, 0.011807960458099842, -0.012861709110438824, 0.03901110962033272, -0.047381311655044556, -0.04986247792840004, 0.008086211048066616, 0.02959463559091091, 0.004368198104202747, 0.01886284351348877, -0.039190471172332764, 0.004427985288202763, 0.03363026678562164, -0.0037647217977792025, 0.03670930489897728, -0.02037246897816658, -0.011247456073760986, 0.017741834744811058, 0.06241777911782265, -0.00229433155618608, -0.01207700278609991, -0.006950255483388901, -0.006677476689219475, -0.010006872937083244, -0.008833550848066807, -0.01126240286976099, -0.025349749252200127, 0.0005380843067541718, -0.010044240392744541, 0.025394588708877563, 0.009379108436405659, -0.03482601046562195, -0.004988489672541618, 0.048547159880399704, -0.014109766110777855, 0.05488459765911102, -0.0018786241998896003, -0.009782670997083187, 0.013056017458438873, -0.023959698155522346, -0.03948940709233284, 0.008093684911727905, -0.05084896460175514, -0.017637208104133606, -0.05192513391375542, 0.03596196696162224, 0.0033817102666944265, -0.005078170448541641, 0.022375337779521942, -0.013369900174438953, 0.016486305743455887, -0.036619625985622406, 0.05470523610711098, 0.002369065536186099, -0.048636842519044876, -0.05135715752840042, 0.004779234994202852, -0.03291282430291176, 0.019430821761488914, 0.005089380778372288, 0.03285303711891174, 0.01500657293945551, -0.007066092919558287, 0.02062656544148922, 0.00122563645709306, -0.027487140148878098, -0.00879618339240551, 0.003706802846863866, -0.004999700002372265, -0.021224435418844223, -0.006143128965049982, 0.009237113408744335, -0.027113469317555428, 0.034975480288267136, -0.029953358694911003, -0.004084209445863962, 0.02518533356487751, -0.013123278506100178, 0.03437760844826698, 0.02013332024216652, 0.043315786868333817, -0.01618736982345581, -0.001077102730050683, -0.007391185499727726, 0.021344009786844254, 0.0038114304188638926, 0.01057485118508339, -0.019834384322166443, -0.01659093238413334, -0.020297735929489136, 0.052074603736400604, 0.01297381054610014, 0.0004993160837329924, -0.002793180523440242, 0.04301685094833374, -0.019953958690166473, -0.0036862511187791824, -0.010470223613083363, 0.005612518172711134, 0.008549561724066734, -0.012525406666100025, 0.0009150235564447939, -0.030909953638911247, -0.019655022770166397, -0.010612217709422112, -0.018922630697488785, 0.032464418560266495, 0.008235679008066654, 0.019131885841488838, -0.01579875312745571, 0.008997964672744274, 0.010784106329083443, 0.016979549080133438, -0.026545491069555283, 0.020417310297489166, 0.04274780675768852, -0.001954292180016637, 0.00892323162406683, 0.004498982336372137, -0.001420878805220127, 0.028159745037555695, 0.0015086912317201495, 0.012869182974100113, -0.028697829693555832, -0.027038736268877983, 0.012428252957761288, -0.017517633736133575, -0.00975277740508318, 0.004850232042372227, 0.0042710439302027225, 0.03960898146033287, -0.03010282665491104, -0.026396023109555244, 0.004480299074202776, 0.008571981452405453, -0.00505948718637228, 0.03811430558562279, -0.01555960439145565, 0.008818604052066803, -0.016605878248810768, 0.01781656965613365, -0.008557034656405449, 0.037636008113622665, 0.015858540311455727, -0.0015114936977624893, 0.02001374587416649, 0.004371935036033392, 0.00992466602474451, -0.01972975768148899, -0.02910139225423336, 0.03554345667362213, 0.01138197723776102, 0.0077499086037278175, -0.009072698652744293, 0.03237473964691162, -4.180429095868021e-05, -0.0023429086431860924, 0.03064091131091118, 0.013302639126777649, 0.04621546342968941, 0.011897641234099865, -0.0064607481472194195, 0.03312207758426666, 0.013631468638777733, 0.019759651273489, 0.03324165195226669, -0.0379648357629776, 0.0614611841738224, -0.0292508602142334, 0.017891302704811096, 0.03455697000026703, -0.015888433903455734, 0.01759236678481102, -0.012757081538438797, 0.004102892708033323, -0.006359857507050037, -0.012024689465761185, 0.023242251947522163, -0.029579689726233482, -5.143796079210006e-05, 0.0010743002640083432, -0.027621660381555557, 0.005025856662541628, -0.01138945110142231, 0.007376238703727722, 0.01057485118508339, -0.005881560035049915, -0.00011087478924309835, 0.05150662362575531, -0.00477176159620285, 0.012607613578438759, -0.009379108436405659, 0.008878391236066818, 0.037875156849622726, 0.033600375056266785, -0.01107556838542223, 0.018444333225488663, 0.013026123866438866, 0.01593327336013317, 0.020282788202166557, -0.005022120196372271, 0.005590097978711128, -0.002781970426440239, 0.03629079461097717, 0.013108331710100174, 0.0054854704067111015, 0.0009650018764659762, 0.019804490730166435, -0.0016301338328048587, 0.010709372349083424, -0.009095119312405586, 0.03721749782562256, 0.009595836512744427, 0.03171708062291145, 0.020417310297489166, 0.028892137110233307, -0.001541387289762497, 0.015238247811794281, 0.010731792077422142, -0.0014769292902201414, 0.005444366950541735, 0.007652754429727793, 0.011426817625761032, 0.021433690562844276, -0.03138824924826622, -0.02176252007484436, -0.041701532900333405, -0.025275014340877533, -0.009580889716744423, -0.010530010797083378, -0.008968072012066841, 0.0007333267130888999, 0.06134160980582237, -0.027382511645555496, 0.019311247393488884, -0.007507023401558399, 0.01845928095281124, -0.02264438010752201, 0.016486305743455887, 0.0080264238640666, -0.018399493768811226, 0.014438595622777939, -0.012091949582099915, 0.01018623448908329, -0.016097689047455788, -0.010821472853422165, -0.0014573116786777973, 0.03527441620826721, -0.019789544865489006, 0.004237413872033358, -0.006344910711050034, -0.022240817546844482, -0.02478177100419998, -0.00240456429310143, 0.034885797649621964, 0.004420511890202761, -0.0028398893773555756, 0.002376538934186101, 0.024991026148200035, 0.013534314930438995, 0.018399493768811226, -0.005881560035049915, 0.018040770664811134, -0.024886399507522583, 0.020447203889489174, 0.010769159533083439, 0.028667936101555824, 0.009259534068405628, -0.02795048989355564, -0.03204590827226639, 0.03138824924826622, -0.010358123108744621, 0.023062890395522118, -0.005612518172711134, 0.00563493836671114, 0.047530777752399445, -0.01195742841809988, -0.018324758857488632, 0.013369900174438953, 0.006912888493388891, -0.0034003937616944313, -0.014333968050777912, 0.01872832328081131, 0.03213559091091156, -0.01923651434481144, 0.017263537272810936, -0.011643546633422375, 0.02253975346684456, -0.008385146968066692, 0.018384546041488647, -0.014087345451116562, 0.022450072690844536, -0.0030267240945249796, -0.0011658492730930448, 0.02023794874548912, 0.01632189005613327, -0.0354238823056221, 0.04008727893233299, 0.026545491069555283, -0.009394055232405663, 0.021613052114844322, 0.02491629123687744, -0.021657893434166908, -0.024497782811522484, 0.04412291198968887, -0.019146833568811417, -0.012622560374438763, -0.008579455316066742, -0.030790379270911217, 0.0013246588641777635, 0.02757682092487812, -0.0016581590753048658, 0.009573416784405708, 0.028189638629555702, -0.01215173676609993, 0.023212358355522156, 0.027367565780878067, 0.011643546633422375, 0.03446728736162186, -0.005235111806541681, -0.04137270525097847, 0.02330203913152218, 0.006755947135388851, -0.03038681671023369, -0.0216279998421669, -0.015111200511455536, -0.04116344824433327, 0.012674874626100063, -0.0438239760696888, 0.02327214553952217, -0.04451152682304382, 0.021224435418844223, 0.016396624967455864, 0.0105673773214221, 0.01925146020948887, 0.020312681794166565, -0.010029293596744537, -0.0031930070836097, 0.03389931097626686, 0.0041701532900333405, -0.04214993491768837, 0.027487140148878098, -0.026500651612877846, -0.001463850843720138, 0.01493183895945549, 0.00731271505355835, -0.014408702030777931, 0.03300250321626663, 0.05096853896975517, -0.0032808196265250444, -0.01899736560881138, 0.011658493429422379, -0.002236412838101387, -0.018668536096811295, -0.012794448994100094, -0.02528996206820011, -0.024273579940199852, 0.0029519901145249605, 0.035005372017621994, -0.005197744816541672, -0.020850766450166702, 0.0020682616159319878, -0.015768859535455704, 0.03694845363497734, 0.02645581029355526, -0.019804490730166435, 0.009513629600405693, 0.009267007000744343, 0.01799592934548855, 0.005642411764711142, -0.02972915768623352, -0.006131919100880623, -0.006281386595219374, 0.009379108436405659, -0.027636608108878136, -0.024213792756199837, -0.01569412462413311, 0.0029445167165249586, 0.017368165776133537, -0.0033350016456097364, 0.009640676900744438, 0.0084150405600667, 0.024587463587522507, -0.018638642504811287, 0.03225516527891159, -0.025155439972877502, -0.03844313323497772, -0.02267427369952202, 0.006823207717388868, -0.00544063001871109, 0.0032023489475250244, 0.013063491322100163, -0.00017936143558472395, 0.03428792580962181, 0.029639476910233498, 0.01642651855945587, -0.0028510994743555784, 0.01694965548813343, -0.0010490774875506759, -0.011568812653422356, -0.001815100316889584, -0.025992460548877716, 0.00420752028003335, -0.028279319405555725, 0.013833250850439072, 7.079288479872048e-06, 0.023615920916199684, -0.033959098160266876, 0.014154606498777866, -0.021224435418844223, -0.02937043458223343, -0.005545257590711117, -0.0056498851627111435, 0.014901945367455482, 0.025887833908200264, -0.0010173156624659896, -0.01659093238413334, 0.018145397305488586, -0.007794748991727829, -0.01938598044216633, -0.0010649585165083408, -0.013758516870439053, 0.026171822100877762, -0.028040170669555664, 0.005223901476711035, -0.01176312007009983, 0.02262943424284458, 0.0012424516025930643, 0.0002704434155020863, -0.0510881133377552, 0.006991358939558268, 0.0031892703846096992, -0.02038741670548916, 0.006064658518880606, -0.007133353501558304, 0.02011837437748909, 0.009147432632744312, -0.023586027324199677, -0.014700164087116718, 0.009274480864405632, 0.0010444066720083356, -0.010044240392744541, -0.022046510130167007, 0.004801655188202858, 0.0023279618471860886, 0.002673606388270855, -0.038413241505622864, -0.047142162919044495, 0.012719715014100075, 0.059518102556467056, -0.03655983880162239, 0.0167254526168108, 0.010268442332744598, 0.02038741670548916, 0.004835285246372223, 0.025723418220877647, 0.03264378011226654, 0.0037684584967792034, -0.02467714436352253, 0.044720783829689026, 0.04289727658033371, 0.004368198104202747, -0.014640376903116703, -0.027098523452878, 0.0021168384701013565, 0.0028193374164402485, 0.012547826394438744, 0.04214993491768837, 0.01759236678481102, -0.008056317456066608, 0.009214693680405617, -0.0008790578576736152, -0.02984873205423355, -0.0004199112590868026, -0.006498115137219429, -0.006621425971388817, -0.005317319184541702, 0.03458686172962189, 0.008960598148405552, -0.0008799920324236155, 0.013937877491116524, -0.00015764188719913363, -0.012039636261761189, -0.01473753061145544, -0.02052193693816662, -0.021941881626844406, 0.0013377373106777668, 0.01696460135281086, -0.01133713684976101, 0.008781236596405506, -0.019699864089488983, -0.019968906417489052, 0.012009742669761181, 0.013751043006777763, 0.019460715353488922, -0.010544957593083382, 0.025618791580200195, -0.0031593767926096916, -0.002494244836270809, 0.02454262226819992, 0.018264971673488617, -0.005134221166372299, 0.004801655188202858, 0.029445167630910873, 0.0023503820411860943, -0.006587795913219452, 0.00772001501172781, -0.00322476914152503, 0.02342161349952221, -0.02531985566020012, 0.016411570832133293, -0.025499217212200165, -0.002255096333101392, 0.01455069612711668, -0.0034639176446944475, -0.0176073145121336, 0.008489774540066719, 0.0016348047647625208, 0.034497182816267014, -0.006217862945050001, -0.01195742841809988, -0.007376238703727722, -0.0008150669164024293, -0.007503286469727755, 0.015170987695455551, -0.003727354807779193, 0.02786080911755562, -0.022734060883522034, -0.017771728336811066, -0.018638642504811287, -0.015215828083455563, -0.019595235586166382, 0.02618676982820034, -0.025005972012877464, 0.01798098348081112, 0.039190471172332764, -0.028623094782233238, 0.011822907254099846, -0.0047082374803721905, 0.008766289800405502, -0.016008008271455765, -0.03419824689626694, -0.021224435418844223, -0.0008416908676736057, -0.020282788202166557, -0.021717680618166924, 0.010627164505422115, -0.03171708062291145, 0.02428852766752243, 0.022808795794844627, -0.0020738665480166674, 0.006793314125388861, -0.023840123787522316, -0.02013332024216652, 0.020073533058166504, -0.0010350649245083332, -0.011658493429422379, 0.006595269311219454, -0.0012807527091354132, 0.006539219059050083, 0.01872832328081131, 0.022225869819521904, -0.03431782126426697, -0.00622907280921936, 0.04011717438697815, -0.01757742092013359, -0.02835405245423317, 0.01416955329477787, -0.017383111640810966, -0.018324758857488632, 0.002036499558016658, -0.019146833568811417, 0.007051146123558283, 0.04711226746439934, 0.0022027825471013784, -0.002064524916931987, -0.01950555481016636, 0.011688387021422386, 0.01808561012148857, 0.008355253376066685, -0.027008842676877975, 0.01517846155911684, -0.0857347622513771, -0.025499217212200165, -0.017502686008810997, 0.014595536515116692, 0.011426817625761032, 0.012607613578438759, 0.015305508859455585, 0.012263838201761246, -0.028638042509555817, 0.03357047960162163, 0.012062055990099907, -0.013377373106777668, 0.015223301015794277, 0.017143962904810905, -0.009244587272405624, 0.014341440983116627, -0.0088036572560668, -0.007196877617388964, 0.013265272602438927, -0.019520502537488937, -0.0022737798281013966, 0.01823507808148861, 0.002165415557101369, -0.011710806749761105, -0.009087645448744297, 0.018070664256811142, -0.006591532379388809, 0.0021878357511013746, -0.009663097560405731, -0.049802690744400024, 0.021538319066166878, 0.00022665399592369795, -0.0060310279950499535, -0.004241150338202715, 0.008788710460066795, 0.017547527328133583, 0.01416955329477787, 0.010970940813422203, 0.012607613578438759, 0.006621425971388817, 0.008287993259727955, 0.004229940474033356, 0.0023130150511860847, -0.013205485418438911, 0.01872832328081131, -0.018952524289488792, -0.003630200633779168, -0.019939012825489044, -0.0048651788383722305, -0.007032462861388922, 0.0027969172224402428, 0.01694965548813343, -0.010978414677083492, -0.016859974712133408, 0.005788142792880535, -0.007772328797727823, 0.014132185839116573, 0.0023784074001014233, 0.012450672686100006, 0.005575151182711124, 0.054615557193756104, 0.01517846155911684, -0.003064091084524989, -0.0039721084758639336, -0.01284676231443882, 0.006072131916880608, 0.006684950087219477, 0.028563307598233223, 0.03010282665491104, 0.012495513074100018, 0.0009388449834659696, -0.009820038452744484, 0.018773162737488747, 0.02114970237016678, -0.003032329259440303, -0.0021355219651013613, 0.03038681671023369, 0.017009442672133446, 0.005044540390372276, -0.010163814760744572, -0.029086444526910782, 0.006901678629219532, 0.0284736268222332, 0.004427985288202763, -0.02315257117152214, -0.027681447565555573, -0.022599540650844574, -0.03174697235226631, 0.004644713830202818, 0.004095419310033321, 0.034736331552267075, -0.011875221505761147, 0.05138704925775528, 0.010836419649422169, -0.010522536933422089, 0.024333367124199867, 0.005765722598880529, 0.002045841421931982, 0.008205785416066647, 0.0022999367211014032, -0.007518233265727758, -0.018952524289488792, 0.008571981452405453, -0.016277050599455833, -0.00860934890806675, -0.005918927025049925, 0.0027109733782708645, 0.02668001316487789, -0.0031276149675250053, -0.01157628558576107, 0.005081907380372286, 0.016546092927455902, -0.024258634075522423, -0.00031458312878385186, -0.017024388536810875, -6.620959175052121e-05, -0.042717915028333664, -0.016247157007455826, -0.00867660902440548, 0.0017543790163472295, 0.008063791319727898, 0.015978114679455757, -0.005971240811049938, -0.020327629521489143, -0.004480299074202776, 0.012435725890100002, 0.0026007406413555145, -0.017801621928811073, -0.00016336370026692748, 0.014348914846777916, -0.0014003269607201219, -0.01544003002345562, -0.008751343004405499, 0.007869482971727848, -0.021702732890844345, 0.02265932783484459, 0.03369005396962166, -0.014199446886777878, 0.015604444779455662, -0.02910139225423336, -0.003856270806863904, -0.02077603153884411, 0.00905775185674429, 0.009042805060744286, -0.01833970658481121, -0.00790684949606657, 0.006146865896880627, -0.0364103689789772, 0.0035853602457791567, -0.01986427791416645, 0.01669555902481079, -0.013205485418438911, 0.026859374716877937, -0.0007193140918388963, -0.0005534981610253453, -0.0037516432348638773, -0.014199446886777878, -0.006539219059050083, -0.020955393090844154, -0.009580889716744423, -0.022868582978844643, -0.0022420180030167103, 0.004058052320033312, -0.005541520658880472, -8.915524085750803e-05, -0.02605224773287773, 0.0010042372159659863, -0.010911153629422188, -0.011090515181422234, -0.0035648085176944733, 0.0008276782464236021, 0.0008706502849236131, -0.0109559940174222, -0.02392980456352234, 0.01896747201681137, -0.03632069006562233, -0.01656103879213333, -0.021956829354166985, 0.03425803408026695, 0.0007762986933812499, 0.0053285290487110615, -0.00420752028003335, -0.00014631502563133836, 0.025618791580200195, 0.0038114304188638926, -0.00756307365372777, -0.02038741670548916, 0.011127881705760956, 0.013183064758777618, 0.0016917893663048744, 0.013437160290777683, 0.005937610752880573, -0.014386281371116638, -0.0037366964388638735, -0.0019617655780166388, 0.005306108854711056, 0.03088006004691124, 0.017413005232810974, 0.0095435231924057, -0.004603609908372164, -0.017158910632133484, 0.019774597138166428, 0.013302639126777649, 0.018773162737488747, -0.0047904448583722115, 0.007630334235727787, -0.04809875786304474, 0.008078738115727901, 0.030909953638911247, -0.008355253376066685, -0.00029239649302326143, 0.010866313241422176, 0.023855069652199745, -0.008474827744066715, 0.021089915186166763, -0.012914023362100124, 0.0036432789638638496, -0.014326494187116623, 0.004648450296372175, 0.0019468188984319568, 0.04262823238968849, -0.021074967458844185, 0.002400827594101429, 0.003344343276694417, 0.012562773190438747, 0.00853461492806673, -0.0017319588223472238, -0.07389690726995468, -0.009252060204744339, 0.0066513195633888245, -0.007996530272066593, 0.009379108436405659, 0.0003890835214406252, -0.006957728881388903, -0.007342608645558357, -0.014154606498777866, 0.04723184183239937, 0.010171287693083286, 0.02757682092487812, 0.002880993066355586, -0.02253975346684456, -0.018698429688811302, 0.013325059786438942, -0.0036358055658638477, 0.02807006426155567, -0.0005838588112965226, -0.020955393090844154, -0.0003804424195550382, -0.0014339572517201304, 0.023989591747522354, 0.0024195110891014338, -0.011038201861083508, -0.025588897988200188, 0.018773162737488747, 0.019072098657488823, 0.014296600595116615, 0.01335495337843895, -0.014266707003116608, 0.010851366445422173, -0.008175891824066639, 0.012891602702438831, 0.021194541826844215, 0.02213619090616703, -0.014924366027116776, 0.03342101350426674, -0.011516498401761055, 0.011105461977422237, 0.012637507170438766, -0.011053148657083511, -0.0033107129856944084, 0.003931004554033279, 0.00487638870254159, -0.010515064001083374, -0.014595536515116692, 0.017158910632133484, 0.019326195120811462, 0.02203156240284443, -0.009319321252405643, -0.015738965943455696, -0.0010425383225083351, -0.012443199753761292, -0.011180195957422256, -0.004566242918372154, 0.007996530272066593, 0.005537784192711115, 0.008983018808066845, 0.0015890301438048482, -0.002737130271270871, 0.026545491069555283, -0.024497782811522484, 0.003781536826863885, -0.011396924033761024, 0.024587463587522507, 0.0014545090962201357, 0.019042205065488815, 0.0038786910008639097, -0.003759116632863879, -0.010335702449083328, 0.01632189005613327, -0.00363767403177917, 0.011135355569422245, -0.0037441698368638754, -0.003863744204863906, -0.014162079431116581, -0.007028725929558277, -0.00023611250799149275, -0.00089774135267362, 0.01088126003742218, 0.002182230819016695, 0.012166683562099934, 0.006438327953219414, 0.009267007000744343, -0.026500651612877846, -0.009827511385083199, 0.006591532379388809, 8.150668872985989e-05, 0.043973445892333984, 0.006143128965049982, -0.005646148230880499, -0.02177746780216694, -0.015163514763116837, -0.022569647058844566, 0.018653588369488716, 0.007413605693727732, -0.026665065437555313, -0.001982317538931966, -0.002088813344016671, -0.017562473192811012, 0.025409536436200142, -0.0131606450304389, -0.01886284351348877, 0.04681333526968956, -0.013721149414777756, -0.015081306919455528, 0.00359096541069448, -0.0023204884491860867, -0.0018832950154319406, -0.01618736982345581, -0.019012311473488808, -0.0011452974285930395, 0.008437460288405418, 0.03088006004691124, -0.000315050216158852, -0.007854536175727844, 0.013310112990438938, 0.006920361891388893, 0.007170720491558313, 0.034616757184267044, 0.02974410355091095, 0.00019524239178281277, -0.006946518551558256, 0.0004946452099829912, -0.006800787523388863, -0.0028865979984402657, 0.012360991910099983, 0.01925146020948887, -0.005250058602541685, 0.012218997813761234, -0.01245814561843872, -0.03724738955497742, -0.027158310636878014, -0.013631468638777733, 0.016770293936133385, 0.025275014340877533, -0.02315257117152214, -0.010432856157422066, 0.031567610800266266, -0.010104027576744556, 0.023989591747522354, -0.006363593973219395, 0.010657058097422123, 0.0009267007117159665, 0.0068904682993888855, -0.00011910720058949664, -0.02289847657084465, -0.006191706284880638, -0.0030939846765249968, -0.004024422261863947, -0.014969206415116787, -0.005149167962372303, 0.019176727160811424, 0.020043639466166496, -0.03724738955497742, -0.02379528246819973, -0.03605164587497711, 0.014453542418777943, -0.005907717160880566, -0.006770893931388855, -0.01733827218413353, -0.006599005777388811, -0.016994494944810867, -0.0014872051542624831, -0.0110083082690835, -0.00487638870254159, 0.004648450296372175, -0.0031948755495250225, -0.022420179098844528, 0.013242851942777634, -0.039310045540332794, -0.009894772432744503, 0.002752077067270875, 0.006322490517050028, -0.008325359784066677, 0.02440810203552246, -0.01896747201681137, 0.024721983820199966, 0.026605278253555298, 0.008968072012066841, 0.0036395422648638487, -0.022450072690844536, 0.0016656324733048677, 0.0012321756221354008, -0.00023330998374149203, -0.01922156661748886, -0.011516498401761055, -0.005156641360372305, 0.008235679008066654, 0.022599540650844574, 0.011068095453083515, -0.020163213834166527, -0.015484870411455631, 0.0015329797752201557, 0.018668536096811295, -0.025633737444877625, -0.0029164915904402733, 0.013825776986777782, -0.02528996206820011, -0.013078438118100166, 0.0010341308079659939, -0.008400093764066696, 0.018414439633488655, -0.004058052320033312, 0.002996830502524972, -0.0026399760972708464, 0.03165729343891144, -0.0034826011396944523, 0.009311847388744354, -0.02392980456352234, -0.0060048713348805904, -0.02883234992623329, -0.03670930489897728, -0.02342161349952221, -0.002884729765355587, -0.02608214132487774, 0.02215113677084446, 0.004936175886541605, 0.017547527328133583, 0.012263838201761246, 0.011172722093760967, 0.011972375214099884, 0.005149167962372303, -0.04137270525097847, 0.005829246714711189, 0.016351783648133278, 0.008385146968066692, 0.007241718005388975, -0.006707370281219482, -0.00791432335972786, -0.022061455994844437, 0.02682948112487793, 0.013534314930438995, 0.01019370835274458, -0.010530010797083378, 0.009790144860744476, -0.019789544865489006, 0.019924065098166466, 0.029534848406910896, -0.016022954136133194, -0.01284676231443882, -0.00012774830975104123, -0.0048726522363722324, -0.0326736755669117, -0.022808795794844627, 0.019924065098166466, 0.00736876530572772, 0.001014513080008328, -0.0024325894191861153, -0.0021635473240166903, -0.006057185120880604, -0.010716845281422138, 0.00930437445640564, 0.005832983180880547, 0.0043607247062027454, 0.003164981957525015, 0.028144797310233116, 0.0028903346974402666, 0.03392920270562172, 0.00028772561927326024, -0.008586928248405457, 0.042957063764333725, -0.01796603761613369, 0.012824342586100101, 0.0012592667480930686, -0.003785273525863886, 0.0030771696474403143, -0.031567610800266266, 0.0060235545970499516, -0.008041370660066605, 0.011538919061422348, 0.0036470156628638506, 0.01833970658481121, -0.0061618126928806305, -0.03204590827226639, -0.012024689465761185, 0.006131919100880623, -0.004345777910202742, -0.009625730104744434, 0.015410136431455612, 0.009169853292405605, 0.0022177293431013823, 0.0006184232770465314, 0.0002315584133611992, -0.014401228167116642, 0.005317319184541702, -0.019161779433488846, -0.0037460383027791977, 0.0013069096021354198, 0.012921496294438839, -0.033092185854911804, -0.013070964254438877, -0.00803389772772789, -0.0142368134111166, -0.02086571231484413, -0.012218997813761234, 0.0021299170330166817, -0.006946518551558256, -0.0038861643988639116, 0.011905115097761154, -0.009005438536405563, 0.0043607247062027454, -0.0055938344448804855, 0.011172722093760967, 0.0032490575686097145, -0.0008729856926947832, 0.006636372767388821, 0.0024363261181861162, 0.006561639253050089, 0.001912254374474287, -0.014177026227116585, -0.013609048910439014, -0.016277050599455833, -0.011434291489422321, 0.007473392877727747, 0.0021878357511013746, -0.00505948718637228, 0.07485350221395493, -0.005810562986880541, -0.00658032251521945, -0.003200480481609702, -0.008661662228405476, -0.013765989802777767, -0.0024176426231861115, 0.020073533058166504, 0.010926100425422192, -0.012443199753761292, 0.015021519735455513, -0.02267427369952202, 0.01315317116677761, 0.0005988056072965264, -0.006826944649219513, 0.01632189005613327, 0.028802456334233284, 0.01732332445681095, -0.009431421756744385, 0.011254929937422276, -0.0029837521724402905, 0.010141394101083279, -0.017532579600811005, 0.01443112175911665, -0.018429387360811234, 0.020462149754166603, 0.007921796292066574, -0.015425083227455616, 0.019580289721488953, 0.014573115855455399, -0.0026511861942708492, 0.008893338032066822, -0.0022494911681860685, -0.01114282850176096, -0.01176312007009983, 0.02304794453084469, 0.004046842455863953, 0.010290862061083317, -0.0018730191513895988, -0.005227638408541679, 0.015903379768133163, 0.0010051713325083256, 0.018668536096811295, 0.007286557927727699, -0.003359290072694421, -0.008968072012066841, 0.002455009613186121, -0.00338731543160975, 0.008145998232066631, -0.009700464084744453, 0.0015012178337201476, -0.0013125146506354213, -0.0010061055654659867, 0.017143962904810905, 0.014281653799116611, 0.003852534107863903, -0.006528008729219437, -0.005631201434880495, 0.014804791659116745, -8.483468991471455e-05, -0.02126927673816681, -0.0016133186873048544, -0.01896747201681137, -0.018653588369488716, -0.012301204726099968, -0.009125012904405594, -0.010201181285083294, -0.03171708062291145, 0.009573416784405708, -0.016381677240133286, -0.007062356453388929, 0.020417310297489166, -0.006591532379388809, -0.020716246217489243, -0.006722317077219486, 0.032464418560266495, 0.00043065426871180534, 0.005911453627049923, -0.008616821840405464, 0.006528008729219437, -0.005324792582541704, 0.005279952194541693, -0.01473753061145544, -0.020970340818166733, 0.006849364843219519, -0.004528875928372145, 0.022973209619522095, -0.037008240818977356, 0.0042710439302027225, -0.006109498906880617, -0.015133621171116829, -0.002369065536186099, 0.002441931050270796, -0.0016404098132625222, 0.025992460548877716, 0.00019045475346501917, -0.02569352462887764, 0.009379108436405659, 0.016351783648133278, 0.0006081473547965288, -0.006599005777388811, 0.023361826315522194, -0.0008127315086312592, 0.012936443090438843, -0.006158075761049986, -0.024617357179522514, 0.019191673025488853, 0.0029034132603555918, -0.01732332445681095, 0.019445767626166344, -0.0036152538377791643, -0.003426550654694438, 0.005795616190880537, -0.0024064325261861086, -0.02200166881084442, 0.011441764421761036, 0.018668536096811295, -0.007058619521558285, -0.017771728336811066, -0.016919761896133423, 0.001120074768550694, 0.003200480481609702, 0.015380242839455605, -0.004704501014202833, 0.0053285290487110615, -0.009431421756744385, -0.014012611471116543, -0.00783958937972784, -0.014154606498777866, 0.00031995464814826846, 0.012062055990099907, 0.007409869227558374, 0.015275615267455578, 0.011531445197761059, 0.020163213834166527, -0.00019197278015781194, -0.024482835084199905, -0.010373069904744625, 0.021074967458844185, -0.013952824287116528, 0.005907717160880566, 0.000645981403067708, -0.004629767034202814, 0.0013807093491777778, 0.0036544890608638525, 0.015425083227455616, -0.004730657674372196, -0.0007365962956100702, -0.002279384760186076, -0.013907983899116516, 0.03198612108826637, -0.045767057687044144, 0.007223034277558327, -0.011135355569422245, 0.0004932439187541604, -0.00493991281837225, -0.03249431401491165, 0.032195378094911575, -0.008639242500066757, 0.004177626688033342, -0.010373069904744625, 0.010036766529083252, -0.011494078673422337, -0.019804490730166435, 0.010440330021083355, 0.022106297314167023, 0.015978114679455757, 0.02037246897816658, 0.017263537272810936, -0.0076826480217278, 0.00044536750647239387, -0.0017711941618472338, 0.003000567201524973, -0.02796543575823307, 0.01031328272074461, -0.002537216991186142, 0.004420511890202761, -0.021104861050844193, -0.015604444779455662, 0.004880125634372234, -0.013564208522439003, -0.005747039336711168, 0.027681447565555573, -0.0008491642656736076, -0.011718280613422394, -0.013743570074439049, 0.002103760140016675, -0.012891602702438831, -0.005500417202711105, 0.02086571231484413, -0.021358957514166832, 0.002094418276101351, -0.0006174891022965312, -0.013220432214438915, -0.01481226459145546, 0.006741000339388847, 0.012368465773761272, 0.024871451780200005, 0.010477696545422077, -0.01810055784881115, -0.005761986132711172, 0.018294865265488625, 0.016172422096133232, 0.006714843679219484, -0.01632189005613327, -0.005108064040541649, 0.0006506522768177092, -0.018638642504811287, -0.017308378592133522, 0.020716246217489243, -0.057634808123111725, -0.032583992928266525, 0.0040057385340332985, 0.003411603858694434, -0.03099963441491127, 0.01923651434481144, -0.0008430921589024365, 0.013467053882777691, 0.014378808438777924, 0.013511894270777702, 0.0189824178814888, 0.014266707003116608, 0.020596671849489212, 0.001537650590762496, -0.010358123108744621, -0.0110083082690835, 0.006001134403049946, 0.02657538466155529, 0.0381740927696228, 0.011471658013761044, 0.03572281822562218, -0.009125012904405594, -0.018444333225488663, 0.019953958690166473, -0.004024422261863947, 0.0077499086037278175, 0.010290862061083317, -0.017293430864810944, 0.012667400762438774, -0.00047129084123298526, -0.01524572167545557, -0.003867480903863907, -0.014655323699116707, -0.0022065192461013794, 0.013564208522439003, -0.03557335212826729, 0.003630200633779168, -0.005713408812880516, -0.0038002203218638897, -2.9134555006748997e-05, -0.002088813344016671, -0.008983018808066845, -0.004203783348202705, 0.004831548780202866, 0.019326195120811462, 0.009722883813083172, -0.014296600595116615, 0.006457011681050062, -0.0029912255704402924, -0.030596069991588593, -0.0008627098286524415, 0.011083041317760944, -0.007282821461558342, -0.0046746074222028255, -0.0012424516025930643, 0.013332532718777657, -0.0035386516246944666, 0.003968371544033289, 0.014446068555116653, -0.0006917559658177197, -0.007148300297558308, 0.002314883517101407, 0.011449238285422325, 0.02545437589287758, -0.013870617374777794, 0.006285123527050018, 0.0011527708265930414, -0.02506575919687748, -0.009939612820744514, 0.022958263754844666, -0.014588062651455402, 0.021448638290166855, 0.017517633736133575, -0.01633683778345585, 0.00266052782535553, -0.02820458449423313, -0.0020234212279319763, 0.0009238981874659657, -0.017398059368133545, 1.512194376118714e-05, -0.004760551266372204, -0.022046510130167007, 0.005066960584372282, 0.00999940000474453, -0.003368631936609745, 0.015783805400133133, -0.003200480481609702, 0.009797617793083191, 0.0045176660642027855, 0.009521102532744408, -0.013803357258439064, 0.009080172516405582, -0.011023255065083504, -0.012839289382100105, -0.002856704406440258, -0.007824642583727837, 0.011867747642099857, 0.007989057339727879, 0.003383578732609749, 0.023615920916199684, 0.0267099067568779, 0.0006081473547965288, 0.0004988489672541618, 0.00557141425088048, -0.015843592584133148, 0.014490908943116665, -0.01183785405009985, 0.010275915265083313, -0.004416775424033403, 0.005963767413049936, 0.00021287493291310966, -0.006513061933219433, -0.014819738455116749, 0.0036358055658638477, 0.00040986889507621527, 0.033480800688266754, 0.018279919400811195, 0.02542448230087757, -0.004850232042372227, -0.02174757421016693, 0.00584792997688055, 0.015253194607794285, -0.007152037229388952, -0.017248591408133507, -0.015163514763116837, 0.019326195120811462, -0.008557034656405449, -0.006909152027219534, -0.0068904682993888855, 0.0035068895667791367, -0.022749008610844612, -0.017562473192811012, -0.0012228338746353984, -0.009976979345083237, 0.000685216742567718, 0.004816601984202862, 0.019684916362166405, -0.006468221545219421, 0.022614486515522003, 0.003092116443440318, 0.009887298569083214, 0.0061132353730499744, 0.03141814470291138, 0.004689554218202829, -0.018519068136811256, 0.0074846032075583935, -0.009281953796744347, 0.018190238624811172, -0.012316151522099972, 0.008340306580066681, -0.01795108988881111, 0.0011798619525507092, -0.0037441698368638754, -0.008900810964405537, -0.0004091682785656303, 0.018414439633488655, -0.016411570832133293, 0.021613052114844322, -0.027247991412878036, 0.01694965548813343, 0.010739265941083431, -0.013982717879116535, -0.008370200172066689, -0.007581757381558418, -0.028369000181555748, 0.0047642881982028484, -0.00266052782535553, -0.01718880422413349, -0.005279952194541693, 0.01823507808148861, 0.04110366106033325, 0.012943916954100132, -0.019161779433488846, -0.005851666908711195, 0.020462149754166603, 0.006531745661050081, 0.004416775424033403, 0.010365596041083336, 0.011359557509422302, -0.0029986989684402943, -0.010873787105083466, -0.005276215262711048, -0.008975544944405556, 0.001861809054389596, -0.0030622228514403105, 0.015738965943455696, -0.033869415521621704, 0.022225869819521904, -0.005967504344880581, -0.009125012904405594, -0.017173856496810913, -0.008571981452405453, 0.010298335924744606, -0.008370200172066689, -0.015843592584133148, -0.021194541826844215, -0.02682948112487793, 0.021045073866844177, 0.029131285846233368, -0.010873787105083466, -0.016650719568133354, 0.0020084744319319725, -0.015484870411455631, 0.006595269311219454, 0.012450672686100006, -0.016291996464133263, 0.016755346208810806, -0.005365896038711071, -0.002118706936016679, 0.01596316695213318, 0.018279919400811195, 0.0076826480217278, 0.012047109194099903, -0.004562506452202797, 0.021299170330166817, 0.0006044106557965279, 0.01404997892677784, -0.008108631707727909, -0.02061161771416664, 0.005788142792880535, 0.008280519396066666, -0.018324758857488632, 0.004274780862033367, 0.006901678629219532, -0.01659093238413334, -0.017383111640810966, 0.023705601692199707, -0.019550396129488945, -0.0070548830553889275, 0.02391485683619976, -0.026754746213555336, -0.006468221545219421, -0.009947085753083229, 0.005444366950541735, 0.016755346208810806, 2.7076452170149423e-05, 0.0083627263084054, 0.012749608606100082, 0.010634638369083405, 0.00860187504440546, -0.0052201650105416775, 0.0013003703206777573, 0.01567917875945568, 0.006759684067219496, -0.019834384322166443, -0.00015600708138663322, 0.0034246824216097593, -0.005773195996880531, 0.033092185854911804, -0.03545377776026726, 0.00503333006054163, 0.006195442751049995, 0.0012779502430930734, 0.02013332024216652, -0.001261135097593069, 0.0013564208056777716, -0.000784706266131252, 0.006479431875050068, -0.010873787105083466, 0.006251493003219366, -0.011561338789761066, -0.001366696786135435, 0.015499817207455635, -0.0025633738841861486, -0.013721149414777756, 0.01986427791416645, 0.0022345446050167084, 0.020073533058166504, 0.007107196841388941, -0.020910553634166718, -0.026530545204877853, 0.005956294015049934, -0.02023794874548912, 0.007697594817727804, 0.021179595962166786, 3.0827744922135025e-05, -0.005268741864711046, 0.024736931547522545, 0.011875221505761147, -0.007196877617388964, 0.018444333225488663, 0.01258519385010004, 0.03539399057626724, -0.03407867252826691, -0.003450839314609766, -0.0029090181924402714, 0.0029650686774402857, 0.027307778596878052, -0.014274180866777897, -0.014199446886777878, 0.016008008271455765, -0.001971107441931963, -0.012622560374438763, 0.026665065437555313, 0.004528875928372145, 0.0069988323375582695, -0.005406999960541725, 0.010126447305083275, 0.012159210629761219, 0.0056498851627111435, -0.010208655148744583, 0.00018087946227751672, -0.010821472853422165, 0.01847422681748867, -0.004510192666202784, 0.006920361891388893, 0.03315197303891182, 0.018264971673488617, 0.014408702030777931, -0.006707370281219482, -0.0031313516665250063, -0.005081907380372286, 0.002787575591355562, 0.021433690562844276, 0.02328709326684475, -0.029519902542233467, 0.007787275593727827, -0.011419344693422318, -0.003090247977524996, 0.0021486005280166864, -0.010926100425422192, 0.008586928248405457, 0.00731271505355835, -0.002161678858101368, 0.008287993259727955, 0.00942394882440567, 0.023840123787522316, 0.016531145200133324, 0.04155206307768822, -0.014057451859116554, 0.023122677579522133, -0.005074433982372284, 0.021314116194844246, 0.005548994056880474, -0.004637240432202816, -0.017442898824810982, -0.0022345446050167084, 0.007189404219388962, -0.015978114679455757, 0.02265932783484459, -0.017637208104133606, -0.0050295935943722725, 0.04152217134833336, 0.0080264238640666, 0.007204351015388966, -0.00879618339240551, 0.00203836802393198, -0.0002461548720020801, 0.00033420079853385687, 0.019669970497488976, -0.012293731793761253, -0.014767424203455448, -0.025230174884200096, 0.00335555337369442, -0.015529710799455643, -0.0003650285361800343, 0.017308378592133522, 0.009192273020744324, -0.0022345446050167084, 0.02557395026087761, 0.0037180129438638687, -0.007376238703727722, 0.011210089549422264, 0.011292296461760998, 0.007540653459727764, 0.0029986989684402943, -0.010515064001083374, 0.0028081273194402456, 0.018444333225488663, -0.006333700381219387, 0.0009220298379659653, -0.007122143637388945, -0.02811490371823311, 0.0028828612994402647, -0.001178927719593048, 0.023376774042844772, 0.007891902700066566, 0.005343475844711065, 0.015634337440133095, -0.02531985566020012, 0.012786975130438805, 0.014304074458777905, -0.0043532513082027435, -0.004099156241863966, 0.011531445197761059, -0.005025856662541628, -0.0020028692670166492, 0.002154205460101366, -0.01088126003742218, -0.014162079431116581, -0.012181630358099937, -0.009319321252405643, -0.004581189714372158, -0.0068082609213888645, 0.021553264930844307, -0.005560204386711121, -0.0018599407048895955, -0.00961825717240572, -0.006752210669219494, -0.008213259279727936, 0.00563493836671114, -0.005799353122711182, -0.0063523841090500355, -0.009349214844405651, -8.582724694861099e-05, -0.010104027576744556, 0.015305508859455585, 0.01416955329477787, 0.021448638290166855, 0.009162379428744316, 0.008190838620066643, -0.001366696786135435, -0.0004199112590868026, 0.011845327913761139, -0.012189104221761227, -0.015529710799455643, 0.016650719568133354, 0.0022420180030167103, 0.009117539040744305, -0.008190838620066643, -0.0019262670539319515, 0.011449238285422325, -0.0012872919905930758, -0.028922030702233315, 0.006281386595219374, -0.006569112651050091, -0.013631468638777733, 0.001971107441931963, 0.00905775185674429, -0.028040170669555664, 0.008213259279727936, -0.008818604052066803, 0.005623728036880493, -0.003785273525863886, 0.0091025922447443, -0.005433156620711088, 0.0023130150511860847, -0.006479431875050068, -0.005765722598880529, 0.003990791738033295, -0.007697594817727804, 0.006221599876880646, -0.02579815313220024, 0.027382511645555496, -0.009334268048405647, -0.01215173676609993, 0.013840723782777786, -0.037755582481622696, 0.028413839638233185, 0.010515064001083374, -0.016904814168810844, -0.016127582639455795, -0.004024422261863947, 0.002311146818101406, 0.0010640242835506797, -0.015268141403794289, 0.009401528164744377, 0.00867660902440548, 0.015193408355116844, -0.027517033740878105, -0.009857404977083206, 0.014842158183455467, -0.03135835751891136, 0.018504120409488678, 0.0040543158538639545, 0.005500417202711105, -0.013407266698777676, -0.005175324622541666, 0.015350349247455597, -0.009080172516405582, -0.008116104640066624, 0.010335702449083328, 0.006916625425219536, -0.01632189005613327, -1.3837454389431514e-05, 0.005223901476711035, 0.0047568148002028465, -0.020043639466166496, -0.002060788217931986, 0.016351783648133278, -0.02669495902955532, -0.0069988323375582695, -0.0041963099502027035, -0.000805725168902427, -0.007391185499727726, 0.004521402530372143, -0.030177561566233635, -0.007095986511558294, -0.029669370502233505, -0.013340006582438946, -0.03261388838291168, -0.008945651352405548, 0.002587662311270833, -0.010679478757083416, -0.01158375944942236, -0.004853968508541584, 0.013235379010438919, -0.001569412532262504, 0.012002268806099892, -0.0034022622276097536, 0.009864878840744495, 0.012189104221761227, 0.004043105524033308, 0.004637240432202816, -0.021224435418844223, -0.024991026148200035, 0.024721983820199966, -0.0038058252539485693, -0.01069442555308342, 0.008766289800405502, 0.007884429767727852, -0.0008883996051736176, -0.007794748991727829, 0.01404250506311655, 4.513228850555606e-05, -0.015843592584133148, 0.008071264252066612, 0.006027291528880596, -0.004603609908372164, -0.008265572600066662, 0.022734060883522034, -0.010903680697083473, 0.008983018808066845, 0.00790684949606657, -0.006584058981388807, -0.015350349247455597, 0.0094912089407444, -0.012174157425761223, 0.007301504723727703, -0.012480566278100014, -0.017114069312810898, -0.03061101771891117, -0.009797617793083191, 0.005037066992372274, 0.008624295704066753, -0.005070697050541639, -0.0019449505489319563, 0.012622560374438763, -0.015589497983455658, 0.00311453640460968, -0.009573416784405708, -0.013056017458438873, 0.011733227409422398, 0.011396924033761024, 0.012069529853761196, -0.01473753061145544, 0.03431782126426697, 0.012958863750100136, 0.00696146534755826, -0.006247756537050009, 0.004521402530372143, 0.008751343004405499, -0.0011705202050507069, 0.017517633736133575, 0.009281953796744347, 0.03240463137626648, 0.01632189005613327, -0.0080264238640666, -0.002673606388270855, 0.01411723904311657, 0.020058587193489075, -0.0031780602876096964, -0.00848230067640543, -0.02404937893152237, -0.01416955329477787, -0.02265932783484459, -0.009125012904405594, 0.007649017497897148, 0.007208087481558323, 0.0020234212279319763, 0.001018249779008329, 0.0036115171387791634, -0.02579815313220024, -0.01857885532081127, -0.016008008271455765, -0.019161779433488846, 0.023346880450844765, 0.006815734319388866, 0.018758216872811317, 0.02037246897816658, 0.006165549159049988, 0.012062055990099907, -0.01150902546942234, -0.0004257498658262193, 0.021344009786844254, -0.007824642583727837, -0.008930704556405544, -0.023645814508199692, -0.018250025808811188, -0.0098798256367445, 0.007742435205727816, 0.010216128081083298, -0.0018207053653895855, -0.0025820573791861534, -0.013414740562438965, 0.018534014001488686, -0.010858840309083462, -0.005646148230880499, -0.004697027616202831, -0.006834418047219515, 0.015454976819455624, 0.007727488409727812, -0.012009742669761181, 0.0035349149256944656, -0.001330263912677765, 0.006049711722880602, -0.013878090307116508, 0.00043532514246180654, 0.013945351354777813, 0.024751877412199974, -0.001956160645931959, -0.017741834744811058, 0.012891602702438831, -0.02301805093884468, -0.003964635077863932, 0.0026792113203555346, -0.00992466602474451, -0.02328709326684475, 0.005623728036880493, -0.0036133856046944857, -0.012764555402100086, 0.009020385332405567, -0.011568812653422356, 0.01315317116677761, 0.0076677012257277966, -0.019146833568811417, -0.00822073221206665, 0.005481733940541744, 0.030147667974233627, 0.010858840309083462, -0.0022999367211014032, -0.035872288048267365, 0.0014507723972201347, -0.0028940713964402676, 0.0012788843596354127, -0.00899049174040556, -0.012002268806099892, -0.006935308687388897, -0.0070474096573889256, -0.015335402451455593, -0.007869482971727848, 0.019042205065488815, 0.003353685140609741, 0.022988157346844673, -0.0040617892518639565, 0.005724619142711163, 0.005425683222711086, 0.006505588535219431, 0.004315884318202734, -0.0016385414637625217, 0.014804791659116745, 0.014520802535116673, -0.002802522387355566, -0.001050011720508337, 0.010343176312744617, -0.003340606577694416, 5.8181532949674875e-05, -0.01671050675213337, -0.006539219059050083, -0.016531145200133324, -0.008549561724066734, -0.006285123527050018, 0.004827811848372221, 0.011927534826099873, 0.014296600595116615, 0.0054032630287110806, 0.007649017497897148, 0.0019991325680166483, -0.010335702449083328, 0.00314629846252501, -6.626797403441742e-05, 0.011935008689761162, 0.012786975130438805, 0.0064271180890500546, -0.012502986006438732, -0.007802222389727831, 0.0021915724501013756, -0.01808561012148857, 0.010373069904744625, 0.018892737105488777, -0.006565375719219446, -0.007884429767727852, 0.008706502616405487, -0.02215113677084446, -0.001572214998304844, -0.02467714436352253, 0.01424428727477789, 0.010604744777083397, -0.011494078673422337, -9.855537064140663e-05, 0.0005656424327753484, 0.0031593767926096916, -0.00872892327606678, -0.0007608848391100764, -0.018175290897488594, 0.016217263415455818, -0.04430227354168892, 0.004476562608033419, 0.006315017119050026, 0.013937877491116524, -0.004895072430372238, 0.005268741864711046, -0.001611450337804854, 0.007492076605558395, 0.004831548780202866, 0.011053148657083511, 0.003912321291863918, -0.004002002067863941, -0.006804524455219507, -0.011284823529422283, 0.003247189335525036, 0.02089560590684414, 0.0022849899251013994, 0.02035752311348915, 0.017173856496810913, -0.0030584861524403095, -0.014730057679116726, -0.017248591408133507, 8.600240835221484e-05, 0.0012050846125930548, 0.01227878499776125, -0.027307778596878052, 0.01227131113409996, 0.00532105565071106, -0.012697294354438782, -0.008497247472405434, 0.017622260376811028, 0.004043105524033308, 0.004693290684372187, 0.0189824178814888, 0.024841558188199997, 0.019430821761488914, -0.006965202279388905, -0.01896747201681137, 0.00829546619206667, 0.014640376903116703, 0.00791432335972786, -0.01771194115281105, -0.006221599876880646, 0.008818604052066803, -0.006475694943219423, 9.219130879500881e-05, 0.011367030441761017, 0.004558769520372152, 0.008310412988066673, 0.01107556838542223, 0.00860934890806675, -0.003852534107863903, -0.024333367124199867, -0.019774597138166428, 0.016620825976133347, -0.00692409835755825, 0.01684502698481083, -0.036380477249622345, 0.019415874034166336, -0.012024689465761185, 0.009162379428744316, -0.012719715014100075, -0.0027576819993555546, 0.0001028175393003039, 0.011860274709761143, 0.010537483729422092, 0.006670003291219473, 0.022061455994844437, 0.016037901863455772, 0.02833910658955574, -0.02807006426155567, 0.0029052814934402704, -0.010089080780744553, 0.006195442751049995, -0.004442932084202766, 0.005832983180880547, 0.01886284351348877, -0.0007856404408812523, 0.01322790514677763, 0.004465352278202772, 0.0027072366792708635, 0.008564508520066738, 0.012951389886438847, -0.0053845797665417194, -0.011060621589422226, -0.007518233265727758, 0.004868915304541588, 0.004951122682541609, -0.020342575386166573, -0.009513629600405693, 0.018818004056811333, 0.010432856157422066, 0.0049735428765416145, 0.023436561226844788, 0.009902245365083218, 0.014886998571455479, 0.009072698652744293, -0.005444366950541735, 0.004648450296372175, -0.015888433903455734, -0.0009734094492159784, 0.008392619900405407, -0.034616757184267044, 0.00642338115721941, 0.01532045565545559, 0.0032677410636097193, -0.03557335212826729, 0.02735261805355549, -0.016022954136133194, 0.03871217742562294, 0.018025822937488556, 0.011949955485761166, -0.006453274749219418, 0.007002569269388914, -0.0024139059241861105, 0.012734661810100079, 0.0017413005698472261, -0.0005983385490253568, 0.0010948521085083485, 0.001826310413889587, -0.008938178420066833, -0.011561338789761066, -0.028010277077555656, -0.027786074206233025, -0.00534721277654171, 0.01570907235145569, 0.016381677240133286, -0.009281953796744347, -0.005993661005049944, 0.017891302704811096, -0.006688686553388834, 0.023496348410844803, -0.011523972265422344, 0.0019075835589319468, -0.003968371544033289, -0.005395789630711079, 0.013937877491116524, 0.012383412569761276, 0.005048276856541634, -0.0044093020260334015, 0.012757081538438797, -0.003095853142440319, 0.011875221505761147, 0.0071557736955583096, -0.014401228167116642, -0.002079471480101347, -0.004065525718033314, -0.0032060856465250254, 0.00014935109356883913, -0.000462416181107983, 0.0005329463165253401, 0.019684916362166405, 0.0030584861524403095, 0.02545437589287758, -0.003792746923863888, -0.0021560739260166883, -0.012301204726099968, -0.018010877072811127, 0.011464185081422329, 0.009648150764405727, -0.028189638629555702, 0.01796603761613369, 0.000616554927546531, -0.013751043006777763, -0.004835285246372223, 0.032464418560266495, 0.01177059393376112, 0.005145431030541658, -0.01972975768148899, 0.004229940474033356, 0.004465352278202772, 0.008811130188405514, -0.020193107426166534, 0.008788710460066795, 0.005231374874711037, -0.005590097978711128, -0.012181630358099937, 0.008758816868066788, 0.01424428727477789, -0.011636072769761086, -0.017413005232810974, -0.009154906496405602, 0.0051043275743722916, -0.020820872858166695, 0.011830381117761135, 0.0024998500011861324, -0.0007095052278600633, 0.020970340818166733, 0.006531745661050081, 0.009962032549083233, -0.0038786910008639097, 0.009678044356405735, 0.015148567967116833, -0.005911453627049923, -0.012443199753761292, 0.01289907656610012, -0.0007043672958388925, 0.008654189296066761, 0.008953125216066837, -0.0010397357400506735, 0.01157628558576107, 0.010799053125083447, -0.01784646324813366, -0.011030727997422218, -0.015133621171116829, -0.0075593371875584126, -0.015768859535455704, 0.007570547051727772, 0.014490908943116665, -0.017652153968811035, -0.01467027049511671, -5.984553013149707e-07, 0.012824342586100101, 0.015664231032133102, -0.01798098348081112, -0.003688119351863861, 0.011613653041422367, -0.004936175886541605, -0.002735261805355549, -0.010141394101083279, 0.004932439420372248, -0.009580889716744423, 0.003867480903863907, -0.010455276817083359, 3.3776232157833874e-05, 0.008669136092066765, -0.007424816023558378, 0.008616821840405464, 0.001611450337804854, 0.009558469988405704, 0.013437160290777683, 0.005784406326711178, 0.009237113408744335, 0.0029482534155249596, 0.027128417044878006, 0.006557902321219444, 0.0011695859720930457, 0.015230774879455566, -0.008699029684066772, 0.0006469155778177083, 0.008766289800405502, 0.009356687776744366, 0.008258099667727947, 0.00455129612237215, -0.017487740144133568, -0.010896206833422184, 0.01986427791416645, 0.002731525106355548, -0.02354118786752224, 0.003348079975694418, -0.011060621589422226, -0.0025353485252708197, -0.022853635251522064, 0.02089560590684414, 0.0001969939621631056, 0.009326794184744358, -0.010006872937083244, -0.002789443824440241, 0.009700464084744453, 0.022195976227521896, -0.010896206833422184, 0.0032565309666097164, 0.0029519901145249605, 0.00613565556704998, 0.003927268087863922, -0.01938598044216633, 0.015230774879455566, -0.014513329602777958, 0.012951389886438847, 0.00021777933579869568, 0.01245814561843872, 0.011994795873761177, 0.020536884665489197, -0.0236757081001997, -0.010141394101083279, -0.005870350170880556, -0.014274180866777897, 0.0009892904199659824, 0.0356331393122673, -0.009775198064744473, -0.016800187528133392, -0.0010061055654659867, -0.004173889756202698, -0.0018001535208895802, 0.02898181788623333, -0.009139959700405598, -0.004640976898372173, 0.0060310279950499535, -0.0025783206801861525, -0.0006646648980677128, -0.012988757342100143, 0.021971775218844414, 0.004812865052372217, -0.0018646115204319358, 0.007611650507897139, -0.0033817102666944265, 0.029310647398233414, -0.002286858158186078, -0.02227071113884449, 0.007626597303897142, 0.01170333381742239, 0.010201181285083294, -0.005582624580711126, 0.019684916362166405, -0.002752077067270875, 0.0127720283344388, -0.019580289721488953, -0.005713408812880516, -0.005522837396711111, 0.0346466489136219, -0.014020085334777832, 0.006277650129050016, 0.012540353462100029, -0.003286424558609724, 0.007223034277558327, 0.023227306082844734, 0.012562773190438747, -0.0010051713325083256, 0.0036115171387791634, 0.005657358560711145, 0.023989591747522354, -0.0047568148002028465, 0.021672839298844337, 0.022450072690844536, -0.000474093365482986, -0.009902245365083218, -0.007252927869558334, -0.0021448638290166855, -0.01632189005613327, 0.014707637019455433, 0.0008823274401947856, 0.017547527328133583, 0.0016422781627625227, 0.0029482534155249596, -0.0038263772148638964, 0.0018954393453896046, 0.01393040455877781, 0.0024568778462707996, -0.013623995706439018, -0.002466219710186124, 0.004850232042372227, -0.019774597138166428, -0.007450972683727741, -0.02591772750020027, 0.008983018808066845, -0.007282821461558342, 0.020955393090844154, -0.009917192161083221, 0.022734060883522034, -0.003998265136033297, -0.006258966401219368, 0.006045974791049957, 0.005541520658880472, -0.0027763654943555593, -0.004211256746202707, -0.0009734094492159784, 0.028652988374233246, 0.014416174963116646, 0.0017413005698472261, 0.0017188803758472204, 0.011105461977422237, -0.021463584154844284, -0.012375938706099987, 0.007817168720066547, -0.014020085334777832, 0.011860274709761143, 0.010275915265083313, -0.007802222389727831, 0.0008926033624447882, -0.027487140148878098, 0.021224435418844223, -0.0052201650105416775, 0.00015156975132413208, 0.006935308687388897, -0.0037759318947792053, 0.007544390391558409, -0.02011837437748909, -0.0041626798920333385, 0.0075929672457277775, 0.0017852067248895764, 0.04857705533504486, 0.02114970237016678, 0.013564208522439003, -0.0038076937198638916, 0.01925146020948887, -0.02174757421016693, -0.009670570492744446, -0.014961732551455498, 0.002791312290355563, -0.027098523452878, 0.005702198948711157, -0.012002268806099892, 0.01732332445681095, 0.004697027616202831, -0.006714843679219484, -0.007017516065388918, 0.010926100425422192, 0.010612217709422112, 0.018907684832811356, -0.003364895237609744, -0.005332265980541706, 0.017293430864810944, -0.023182464763522148, 0.010612217709422112, 0.0073201884515583515, 0.014954259619116783, -0.003770326729863882, -0.006759684067219496, -0.00772001501172781, 0.00490254582837224, 0.009902245365083218, -0.0047082374803721905, -0.0326736755669117, 0.009416474960744381, 0.0015311114257201552, 0.008743870072066784, 0.010477696545422077, -0.00029776801238767803, 0.003140693297609687, -0.015395189635455608, -0.010731792077422142, -0.0240643247961998, 0.008347779512405396, -0.010126447305083275, -0.008997964672744274, -0.012331098318099976, 0.0007945150719024241, -0.0013340006116777658, -0.007308978121727705, -0.0066176895052194595, 0.012704768218100071, -0.020671404898166656, -0.01633683778345585, -0.020178161561489105, 0.008818604052066803, -0.0030566176865249872, 0.0019057152094319463, -0.01962512917816639, -0.006277650129050016, -0.013138225302100182, -0.004510192666202784, 0.013033597730100155, 0.011927534826099873, 0.0005348146660253406, -0.01606779545545578, 0.010724319145083427, -0.013967771083116531, 0.0024755613412708044, 0.016859974712133408, -0.010178761556744576, 0.011105461977422237, -0.018698429688811302, -0.010941047221422195, -0.007794748991727829, -0.00917732622474432, -0.013011177070438862, -0.02101518027484417, 0.013579155318439007, -0.0070474096573889256, 0.01189016830176115, 0.0012639375636354089, -0.010672004893422127, 0.003086511278524995, -0.010373069904744625, -0.011225036345422268, 0.011127881705760956, 0.004334568046033382, 0.002142995363101363, 0.026889268308877945, 0.003994528669863939, -0.003407867159694433, -0.0190870463848114, -0.007802222389727831, -0.0017655891133472323, 0.016994494944810867, -0.013997664675116539, -0.010649585165083408, -0.014348914846777916, 0.0010752343805506825, 0.005694725550711155, 0.01131471712142229, 0.0098798256367445, -0.014543222263455391, 0.02771134115755558, 0.007824642583727837, -0.021792413666844368, -0.0029482534155249596, -0.007581757381558418, 0.0011527708265930414, 0.006191706284880638, -0.007649017497897148, 0.014124712906777859, 0.004741868004202843, 0.02074613980948925, -0.00017702599870972335, 0.0172186978161335, -0.008758816868066788, 0.0004584459529723972, 0.012996230274438858, 0.009087645448744297, 5.320413492881926e-06, 0.01068695168942213, 0.019535448402166367, 0.0024494044482707977, -0.020163213834166527, -0.004540086258202791, -0.001666566589847207, 0.015141094103455544, -0.002658659592270851, -0.003450839314609766, 0.004510192666202784, -0.0110083082690835, -0.007208087481558323, 0.02404937893152237, -0.006707370281219482, -0.0002800186921376735, 0.009767724201083183, -0.01961018331348896, 0.01076168566942215, -0.01498415321111679, -0.026784639805555344, 0.030850166454911232, 0.006083341781049967, -0.013437160290777683, -0.009192273020744324, -0.012420779094099998, -0.01720375008881092, 0.007832115516066551, 0.0015404531732201576, -0.011187668889760971, 0.002793180523440242, -0.0040617892518639565, -0.02126927673816681, 0.017517633736133575, -0.00853461492806673, 0.02759176678955555, -0.022689221426844597, 0.014057451859116554, -0.010843893513083458, 0.015215828083455563, -0.005855403374880552, -0.0005534981610253453, 0.004472825676202774, 0.013063491322100163, -0.0025689788162708282, -0.010634638369083405, -0.0030696962494403124, 0.017502686008810997, -0.002791312290355563, -0.02708357572555542, -0.0014386281836777925, -0.021194541826844215, -0.003845060709863901, 0.0015012178337201476, -0.0016357388813048601, 0.005298635456711054, -0.004420511890202761, -0.0016675008228048682, -0.023840123787522316, -0.0073538185097277164, 0.01006666012108326, 0.0025633738841861486, 0.020790979266166687, 0.0051043275743722916, -0.030536282807588577, 0.004016948863863945, -0.008863444440066814, 0.011292296461760998, -0.0023242251481860876, -0.01183785405009985, 0.011994795873761177, 0.021852200850844383, -0.024243686348199844, 0.011030727997422218, -0.01757742092013359, 0.014378808438777924, 0.011329663917422295, 0.0036171223036944866, -0.025992460548877716, -0.0003423748130444437, 0.019714809954166412, 0.00245127291418612, -0.012017215602099895, -0.00154979492072016], "e36834c7-2a8f-4483-8ec0-413205b1dea5": [-0.028701895847916603, -0.03008357435464859, 0.005558766890317202, 0.010426693595945835, -0.009522192180156708, -0.038288187235593796, 0.027476901188492775, 0.04313118755817413, 0.004105866886675358, 0.01603887602686882, 0.0072929877787828445, 0.02273361012339592, -0.00364293297752738, -0.009728731587529182, 0.036806799471378326, 0.03868702054023743, -0.000239924353081733, 0.01753450743854046, 0.005946918856352568, -0.041080035269260406, 0.038459114730358124, -0.012919413857161999, -0.04142189398407936, 0.029114974662661552, -0.005961162969470024, -0.025226330384612083, -0.018232470378279686, 0.017819389700889587, -0.02485598437488079, -0.033074840903282166, 0.013296883553266525, 0.03555331751704216, 0.019742345437407494, -0.0030589241068810225, 0.020796410739421844, -0.00417708745226264, 0.00748528353869915, -0.024699298664927483, -0.03994050249457359, -0.004554556217044592, -0.02740568108856678, 0.01991327479481697, 0.0050531006418168545, 0.007054398767650127, -0.030425433069467545, 0.020426062867045403, 0.01994176395237446, 0.010540646500885487, -0.017619973048567772, -0.006313704885542393, 0.022420240566134453, -0.004130793735384941, 0.017591483891010284, -0.005498229060322046, 0.03165042772889137, -0.019485952332615852, 0.0009410019847564399, 0.03438529744744301, 0.01457173191010952, -0.05597937852144241, -0.004301723558455706, 0.025311795994639397, 0.003242317121475935, -0.013553277589380741, 0.024385929107666016, 0.006545171607285738, 0.008717400021851063, -0.0031052175909280777, -0.024371683597564697, 0.014229873195290565, 0.0017965392908081412, -0.00815475732088089, -0.04492594674229622, 0.012264184653759003, 0.024129534140229225, -0.027362948283553123, 0.03489808738231659, 0.0015499379951506853, 0.021451640874147415, -0.025724874809384346, -0.009408239275217056, -0.003877960843965411, 0.03330274671316147, -0.005939796566963196, 0.0640985295176506, 0.053814273327589035, -0.0031889015808701515, -0.04982592165470123, -0.01883072219789028, -0.024129534140229225, 0.004867927171289921, 0.014714173041284084, -0.02206413634121418, 0.0025675022043287754, -0.04173526167869568, 0.008503737859427929, 0.014023332856595516, -0.0015641821082681417, 0.004056012257933617, -0.031906820833683014, -0.01243511401116848, -0.015056031756103039, -0.010690209455788136, 0.024143777787685394, 0.04153584688901901, -0.00641697458922863, 0.0037533247377723455, 0.00031047724769450724, -0.024115290492773056, 0.012007790617644787, -0.006007456220686436, -0.022021405398845673, 0.020027227699756622, -0.021081293001770973, -0.06609269976615906, -0.04290328174829483, -0.03811725601553917, 0.005665597505867481, -0.016679860651493073, -0.046321868896484375, 0.021836230531334877, -0.006363559048622847, -0.0016416345024481416, -0.019229557365179062, 0.011587589047849178, -0.00628521665930748, 0.015554576180875301, 0.0038494726177304983, 0.0164377111941576, 0.013076099567115307, 0.014215628616511822, -0.021052805706858635, 0.014151530340313911, -0.005996773485094309, 0.01323278434574604, 0.001095016486942768, -0.010775674134492874, 0.04506838694214821, -0.012990634888410568, 0.05523868650197983, -0.015141496434807777, -0.019956007599830627, -0.011195875704288483, -0.0005070015322417021, 0.02261965721845627, 0.0028986777178943157, -0.00768470112234354, 0.021081293001770973, -0.013090343214571476, 0.013660108670592308, -0.09355536103248596, 0.002380548045039177, -0.030396945774555206, 0.006221117917448282, 0.0111531438305974, -0.027192018926143646, 0.010348350740969181, 0.026693474501371384, 0.004593727644532919, 0.04560966417193413, -0.012848193757236004, -0.0349835529923439, -0.02418651059269905, 0.02085338719189167, 0.0279469583183527, -0.00032116033253259957, 0.04971196874976158, 0.024969937279820442, -0.021480128169059753, 0.01618131622672081, -0.009315652772784233, 0.00022990895377006382, 0.010091956704854965, 0.0005599718424491584, -0.004198453389108181, -0.019215313717722893, 0.016480443999171257, 0.03974108770489693, 0.037234120070934296, 0.0062638502568006516, 0.0012935438426211476, 0.032020773738622665, -0.014550365507602692, -0.0064312187023460865, -0.00621755700558424, 0.024784764274954796, -0.00027197360759600997, 0.04344455525279045, -0.0001771612005541101, 0.009137600660324097, -0.023759186267852783, 0.0018232469446957111, 0.0013442885829135776, 0.01712142862379551, -0.027491146698594093, -0.018916187807917595, -0.0012214330490678549, 0.005370032042264938, 0.003014411311596632, 0.013204296119511127, 0.00794821698218584, -0.04589454457163811, -0.017676949501037598, 0.029741715639829636, -0.042988743633031845, 0.008596324361860752, -0.0021793500054627657, -0.04113700985908508, -0.0030250942800194025, -0.05338694900274277, 0.0069048358127474785, -0.03689226135611534, 0.0012801900738850236, 0.008339930325746536, -0.016751080751419067, -0.006213996093720198, -0.018901944160461426, 0.05788809061050415, -0.00794821698218584, -0.03213472664356232, -0.020896119996905327, 0.030282992869615555, -0.011858227662742138, -0.02779027260839939, -0.07076477259397507, 0.005252518225461245, -0.022633902728557587, 0.04090910404920578, -0.024300463497638702, -0.009180333465337753, 0.015412135049700737, -0.01445065625011921, 0.008382663130760193, -0.026821672916412354, -0.030767293646931648, 0.04703407362103462, 0.03210623934864998, -0.001608695019967854, -0.005701208021491766, -0.008696033619344234, 0.021451640874147415, 0.014051821082830429, -0.012257062830030918, 0.009272919967770576, -0.003112339647486806, 0.006648441776633263, -0.011096167378127575, 0.044584088027477264, -0.0014253020053729415, -0.006534488871693611, -0.00501749012619257, 0.019728101789951324, -0.01263453159481287, -0.013880891725420952, -0.01763421669602394, 0.027719052508473396, 0.014044699259102345, -0.02301849238574505, 0.017947588115930557, 0.01887345500290394, 0.02620917558670044, 0.023602502420544624, 0.010889627039432526, 0.018887698650360107, 0.04771779105067253, -0.01565428450703621, 0.025083890184760094, -0.017206894233822823, -0.006338632199913263, 0.015041787177324295, 0.017990319058299065, 0.011630321852862835, -0.030938223004341125, 0.006189068779349327, 0.014585975557565689, -0.00803368166089058, 0.0007246694294735789, -0.017292357981204987, 0.03458471596240997, 0.013325371779501438, -0.04424222558736801, 0.023360351100564003, 0.012549066916108131, 0.0022594730835407972, 0.03586668521165848, -0.020796410739421844, -0.03167891502380371, 0.0065985871478915215, -0.04409978538751602, -0.0035930785816162825, 0.015426378697156906, 0.006206873804330826, 0.040852125734090805, 0.0030998759903013706, 0.00017026171553879976, 0.015583064407110214, -0.006092920899391174, -0.007260938640683889, -0.049256157130002975, 0.01445065625011921, 0.02192169614136219, -0.016095852479338646, -0.0009757220395840704, -0.007211084011942148, 0.026038246229290962, -0.05615030974149704, 0.02672196365892887, -0.011601833626627922, -0.03355913981795311, 0.05521019920706749, 0.024371683597564697, -0.047803256660699844, -0.022747855633497238, 0.0008199269650503993, 0.01938624307513237, 0.015070275403559208, -0.008938183076679707, -0.016637127846479416, 0.004533190280199051, -0.013318249024450779, 0.0031586328987032175, -0.008809986524283886, -0.05176312103867531, 0.014415046200156212, 0.050481151789426804, -0.05948343127965927, 0.015853703022003174, 0.008980915881693363, -0.011245730333030224, -0.024357439950108528, -0.013375225476920605, -0.027633586898446083, -0.04184921458363533, -0.005911308340728283, -0.02873038314282894, -0.04375792667269707, -0.04142189398407936, -0.055409613996744156, 0.0048073893412947655, 0.0050744665786623955, -0.014528999105095863, 0.0063101439736783504, 0.05036719888448715, -0.017406310886144638, 0.016907766461372375, 0.01991327479481697, 0.02368796616792679, 0.00011706883378792554, -0.044441644102334976, 0.032419610768556595, 0.0006797114619985223, 0.00759211415424943, 0.0009872954105958343, 0.007869875058531761, 0.017192648723721504, -0.012997756712138653, -0.027206262573599815, 0.02393011748790741, 0.021366175264120102, 0.001353191095404327, -0.011060556396842003, 0.007570748217403889, -0.01965688169002533, -0.00017148580809589475, -1.2658346122407238e-06, 0.02004147320985794, 0.01753450743854046, -0.024784764274954796, 0.005964723881334066, -0.0012588237877935171, -0.036294009536504745, -0.0019033701391890645, 0.011537734419107437, 0.010255764238536358, -0.024941448122262955, -0.043501533567905426, 0.029371369630098343, 0.016551664099097252, -0.012641653418540955, 0.014293971471488476, 0.03113763965666294, -0.005822282750159502, -0.0025977708864957094, 0.019557172432541847, 0.01910136081278324, 0.0049249036237597466, 0.0046578263863921165, -0.006445462815463543, -0.02432895265519619, -0.035097505897283554, -0.01443641260266304, 0.0023627430200576782, -0.03674982115626335, -0.022135358303785324, -0.030055087059736252, -0.033245768398046494, 0.015497599728405476, -0.03290390968322754, 0.0179048553109169, -0.04105154424905777, 0.001757367979735136, -0.004778901115059853, 0.007146985735744238, -0.00962190143764019, 0.020525772124528885, -0.04526780545711517, -0.006812248844653368, 0.020953096449375153, 0.0193719994276762, -0.012079011648893356, 0.016950499266386032, 0.0037283976562321186, 0.026764696463942528, 0.011879593133926392, 0.033872511237859726, 0.015397890470921993, -0.003838789649307728, 0.02338884025812149, -0.04116549715399742, 0.0002750895218923688, 0.008774376474320889, 0.024685055017471313, 0.01564004085958004, 0.028516722843050957, -0.0054198866710066795, 0.02190745249390602, 0.009814196266233921, -0.0031230226159095764, -0.008546470664441586, -0.0015971215907484293, -0.015739750117063522, 0.04395734518766403, 0.01646619848906994, 0.006840737070888281, -0.009935271926224232, -0.02445714920759201, 0.013717085123062134, 0.007535137701779604, 0.019443219527602196, 0.0264798142015934, 0.007941095158457756, -0.012549066916108131, -0.006149897351861, 0.011210120283067226, -0.010013613849878311, -0.041906192898750305, -0.010148933157324791, -0.005494668148458004, -0.003039338393136859, -0.004672070499509573, -0.003838789649307728, 0.013482056558132172, -0.04717651382088661, -0.009785708039999008, -0.0028719701804220676, 0.00754938181489706, -0.005245395936071873, -0.004989001899957657, 0.01163744367659092, -0.05498229339718819, -0.0443846695125103, -0.004372944124042988, 0.03284693509340286, 0.0038138623349368572, 0.008532226085662842, -0.021052805706858635, 0.006281655747443438, 0.028545210137963295, 0.0022915222216397524, 0.018773745745420456, 0.019984496757388115, -0.0016995011828839779, 0.0014270824613049626, 0.022149601951241493, 0.00357527332380414, -0.005872137378901243, -0.017292357981204987, 0.003311757231131196, 0.01377406157553196, -0.013197174295783043, -0.03398646414279938, -0.04193468019366264, -0.0010309179779142141, 0.0055872551165521145, 0.009522192180156708, 0.019884787499904633, -0.01564004085958004, -0.002149081090465188, 0.015597308054566383, -0.0069048358127474785, 0.03230565786361694, -0.006595026236027479, -0.00448333565145731, 0.0042126975022256374, -0.014379436150193214, -0.024528369307518005, 0.0005524046719074249, -0.0345277413725853, -0.03598063811659813, -0.051250334829092026, 0.07275895029306412, -0.013289760798215866, -0.004704119637608528, -0.0011484319111332297, -0.027889981865882874, 0.021864719688892365, -0.006392047740519047, 0.032419610768556595, 0.002946751657873392, -0.017192648723721504, -0.02821759507060051, 0.030112063512206078, -0.020155426114797592, 0.027334460988640785, 0.005156370345503092, 0.027861492708325386, -0.0036126640625298023, -0.01163744367659092, 0.049654990434646606, -0.016637127846479416, -0.00888832937926054, -0.022904539480805397, -0.022249311208724976, -0.005181297659873962, -0.03330274671316147, -0.015967655926942825, -0.014628708362579346, -0.01619556173682213, 0.00814763456583023, -0.02165105752646923, 0.001306007499806583, 0.018802234902977943, -0.01925804652273655, 0.01363874226808548, 0.018004564568400383, -0.03136554732918739, -0.004875048995018005, 0.007841386832296848, -0.01023439783602953, 0.001556169823743403, -0.04372943937778473, 0.029456833377480507, 0.007563625928014517, 0.004137916024774313, -0.003601981094107032, 0.040054455399513245, -0.02957078628242016, -0.0019282973371446133, -0.02365947887301445, 0.009308530017733574, -0.028160618618130684, 0.01883072219789028, -0.005597937852144241, -0.011908081360161304, 0.010996458120644093, -0.030169039964675903, 0.005911308340728283, -0.028530966490507126, -0.011217242106795311, -0.011024946346879005, -0.022363264113664627, 0.020369086414575577, 0.01183686126023531, 0.00794821698218584, -0.009579168632626534, 0.030966710299253464, -0.011480757966637611, 0.011957935988903046, -0.010882505215704441, 0.021736523136496544, 0.0452108271420002, 0.011473636142909527, 0.024898717179894447, -0.011737152002751827, 0.014856614172458649, 0.05079451948404312, -0.008275832049548626, 0.013311127200722694, -0.06039505451917648, -0.023217910900712013, 0.026280395686626434, -0.021024316549301147, 0.006954689975827932, 0.008774376474320889, 0.019072873517870903, 0.03472715616226196, 0.0035254189278930426, -0.020554261282086372, 0.02165105752646923, 0.024542612954974174, 0.008062169887125492, 0.018560083582997322, -0.018232470378279686, 0.0032227314077317715, -0.03019752725958824, -0.0007616151124238968, 0.019742345437407494, 0.009536436758935452, 0.0039847916923463345, 0.03917132318019867, 0.021750766783952713, 0.023232154548168182, 0.003966986667364836, 0.0014422168023884296, -0.019756590947508812, 0.035211458802223206, -0.009472337551414967, 0.022562680765986443, 0.0008639947045594454, 0.03637947514653206, 0.01645195484161377, 0.01156622264534235, 0.017548752948641777, -0.01686503365635872, 0.03700621426105499, -0.021978672593832016, 0.025354528799653053, 0.016095852479338646, -0.003283269004896283, 0.01672259345650673, 0.024229243397712708, -0.03384402021765709, 0.04090910404920578, -0.01670834980905056, 0.009258676320314407, 0.002129495609551668, -0.01873101480305195, 0.020383331924676895, -0.010177421383559704, 0.014379436150193214, -0.009194577112793922, 0.004344455897808075, 0.004419237375259399, -0.011851104907691479, 0.017990319058299065, -0.01940048672258854, -0.0022594730835407972, 0.006402730476111174, -0.022092625498771667, -0.006954689975827932, -0.007919728755950928, 0.02180774323642254, 0.003219170495867729, 0.024271976202726364, -0.009785708039999008, 0.01210037712007761, -0.018787991255521774, 0.005067344754934311, 0.02645132504403591, 0.02942834608256817, -0.01469992846250534, 0.017548752948641777, 0.01871676929295063, 0.029371369630098343, -0.0073998188599944115, -0.0014048260636627674, 0.008624812588095665, 0.005840087775141001, -0.008382663130760193, 0.028018178418278694, 0.04344455525279045, -0.022163845598697662, 0.007307231891900301, -0.022292044013738632, 0.01726387068629265, 0.007841386832296848, 0.018503107130527496, 0.0028951168060302734, 0.016793813556432724, 0.007157668936997652, 0.006053749937564135, -0.010298497043550014, 0.02593853697180748, 0.0069048358127474785, -0.004419237375259399, 0.014350947923958302, -0.021722277626395226, -0.006039505824446678, -0.009201699867844582, -0.006481073331087828, -0.02702108956873417, -0.03942771628499031, -0.015212716534733772, 0.006822932045906782, -0.020255133509635925, -0.00601813942193985, 0.009201699867844582, 0.024158023297786713, -0.03840214014053345, -0.016081608831882477, -0.023061225190758705, 0.008368418551981449, -0.027861492708325386, 0.0201981570571661, -0.0001669232442509383, -0.012513456866145134, -0.003799618221819401, -0.0308812465518713, 0.009344140999019146, -0.028317304328083992, -0.03569575771689415, -0.02915770746767521, 0.008446761406958103, -0.04033933952450752, 0.02796120196580887, 0.004757535178214312, -0.030938223004341125, -0.03367309272289276, 0.004437042400240898, -0.0011795909376814961, 0.02662225440144539, 0.013225662522017956, -0.024286219850182533, 0.00132114184089005, 0.01763421669602394, 0.020369086414575577, -0.0201981570571661, 0.017619973048567772, 0.0007963351672515273, 0.04116549715399742, -0.00025082999491132796, 0.008731643669307232, -0.022434484213590622, -0.027434170246124268, -0.021565593779087067, 0.02393011748790741, 0.010811285115778446, 0.005808038637042046, -0.003845911705866456, 0.004689875524491072, 0.0337015800178051, -0.01724962517619133, -0.015825213864445686, 0.004693436436355114, 0.02326064370572567, 0.01356752123683691, -0.003678543260321021, -0.014657196588814259, 0.045809078961610794, -0.026494057849049568, 0.00983556266874075, -0.004967635963112116, 0.03885795176029205, -0.0036162252072244883, -0.000662351434584707, -0.005227590911090374, 0.040025968104600906, -0.0009142942726612091, -0.01672259345650673, -0.02965625189244747, 0.030254503712058067, -0.028288817033171654, 0.0240725576877594, 0.01789061166346073, -0.0387439988553524, 0.023360351100564003, 0.029086487367749214, 0.009515070356428623, -0.01925804652273655, 0.01028425246477127, -0.008717400021851063, 0.019728101789951324, 0.006000334396958351, -0.03224867954850197, 0.006911957636475563, 0.018560083582997322, 0.03988352790474892, 0.02751963399350643, 0.03800330311059952, 0.01003498025238514, 0.042589910328388214, -0.012029157020151615, 0.02059699408710003, 0.03504052758216858, 0.002991264685988426, -0.049256157130002975, 0.003924254328012466, -0.01183686126023531, -0.041678287088871, -0.017007475718855858, -0.030795780941843987, -0.02552545815706253, 0.019998740404844284, -0.017463287338614464, 0.01578248105943203, -0.019998740404844284, 0.04347304627299309, 0.008574958890676498, 0.0009685999830253422, 0.00038993271300569177, 0.021337687969207764, -0.013531911186873913, 0.0018374910578131676, 0.03774691000580788, -0.0055872551165521145, -0.02645132504403591, 0.007414062973111868, -0.006488195154815912, -0.009906783699989319, 0.0018374910578131676, 0.022420240566134453, -0.03900039196014404, 0.03515448048710823, 0.033872511237859726, 0.005765306297689676, -0.02447139285504818, 0.004611532669514418, -0.01789061166346073, -0.03008357435464859, 0.018147004768252373, -0.000334514188580215, -0.028915558010339737, -0.028573699295520782, 0.023232154548168182, -0.010383961722254753, -0.01629526913166046, -0.015967655926942825, 0.028701895847916603, 0.009208821691572666, -0.004426359198987484, -0.013788305222988129, 0.020881876349449158, 0.027035333216190338, 0.0048251948319375515, 0.007364208344370127, -0.0037497638259083033, 0.020611237734556198, 0.015597308054566383, 0.0038245453033596277, -0.009792830795049667, -0.018645549193024635, -0.002747334074229002, -0.011822616681456566, 0.04398583248257637, -0.0005697646993212402, 0.0240725576877594, -0.021195245906710625, -0.013994844630360603, -0.035895176231861115, 0.02421499975025654, -0.0326475165784359, -0.05358636751770973, 0.003899327013641596, 0.008325686678290367, 0.004992562811821699, -0.012591799721121788, 0.01425123866647482, 0.021067049354314804, 0.03381553292274475, 0.05398520454764366, 0.024813251569867134, -0.014521877281367779, 0.002024445217102766, -0.014486267231404781, -0.012321161106228828, 0.02659376710653305, -0.005124321207404137, 0.006320826709270477, -0.00494983047246933, 0.025895804166793823, 0.040567245334386826, 0.013709962368011475, -0.024414416402578354, -0.01575399376451969, -0.045809078961610794, -0.004486897028982639, -0.013802549801766872, 0.012712874449789524, 0.019685368984937668, -0.006890591699630022, -0.009037892334163189, 0.008696033619344234, 0.02780451625585556, 0.03464169427752495, -0.007663335185497999, -0.020824899896979332, 0.01197218056768179, -0.0032601223792880774, -0.04600849747657776, 0.019215313717722893, 0.001371886464767158, -0.027889981865882874, -0.01752026379108429, -0.0023894505575299263, -0.02806091122329235, 0.01478539314121008, -0.004654265008866787, -0.0216653011739254, 0.00421625841408968, 0.025482725352048874, 0.014329581521451473, 0.016608640551567078, 0.003601981094107032, -0.00834705214947462, -0.006687612738460302, -0.019357755780220032, 0.007207523100078106, -0.02487022802233696, 0.02125222235918045, -0.013724206946790218, -0.003678543260321021, -0.015825213864445686, -0.043245140463113785, 0.0016291708452627063, 0.03700621426105499, -0.08557865768671036, 0.03142252191901207, 0.022804832085967064, -0.005348666105419397, 0.010291374288499355, 0.017705436795949936, -0.002086763037368655, -0.019628392532467842, -0.015697017312049866, 0.03620854392647743, 0.014422168023884296, 0.008425395004451275, 0.0058863814920187, -0.0030304358806461096, -0.008375540375709534, 0.013197174295783043, 0.02126646600663662, 0.030112063512206078, -0.006206873804330826, 0.012997756712138653, 0.001978151733055711, -0.007196839898824692, 0.000802566995844245, -0.02072519063949585, 0.04236200451850891, 0.006313704885542393, -0.0006089360103942454, 0.001057625631801784, 0.0035663708113133907, 0.01979932188987732, 0.0015615113079547882, -0.008795741945505142, -0.02139466442167759, -0.01763421669602394, -0.029770204797387123, -0.022135358303785324, -0.046606749296188354, 0.02808939851820469, -0.019884787499904633, -0.004130793735384941, 0.003504052758216858, -0.009059258736670017, 0.01450763363391161, -0.02351703681051731, -0.012976390309631824, 0.007734555751085281, 0.00928716454654932, 0.010782796889543533, -0.0031978043261915445, -0.005605060141533613, -0.0036251277197152376, 0.0014609122881665826, -0.009564924985170364, 0.0017564776353538036, 0.002115251263603568, 0.008710277266800404, -0.0004656045639421791, -0.0220783818513155, 0.0074211847968399525, 0.011495002545416355, 0.009408239275217056, -0.023103957995772362, 0.006189068779349327, -0.005270323250442743, 0.0035539071541279554, 0.0023253520485013723, 0.01722113788127899, -0.006092920899391174, 0.0015739749651402235, 0.00031381568987853825, 0.002410816727206111, -0.019827811047434807, -0.007570748217403889, -0.03939922899007797, -0.0012383479624986649, 0.017349334433674812, -0.015397890470921993, -0.027619343250989914, -0.020155426114797592, -0.023460060358047485, 0.004857243970036507, -0.05182009935379028, 0.029855668544769287, -0.03677830845117569, 0.006488195154815912, 0.014158652164041996, -0.021337687969207764, -0.014073187485337257, 0.002282619709149003, -0.012157353572547436, -0.010291374288499355, -0.025183599442243576, -0.0237734317779541, 0.020938852801918983, -0.040054455399513245, -0.018545839935541153, -0.0028345792088657618, -0.004437042400240898, 0.055124733597040176, 0.021209489554166794, 0.030510898679494858, -0.026009757071733475, -0.030140550807118416, 0.016266781836748123, 0.0023395961616188288, -0.03276146948337555, -0.02818910777568817, 0.004956952761858702, -0.029855668544769287, -0.004896415397524834, 0.020767923444509506, 0.0027259679045528173, -0.02806091122329235, 0.008325686678290367, 0.03150798752903938, -0.01883072219789028, -0.020369086414575577, 0.026935625821352005, -0.006983178202062845, -0.024670811370015144, 0.003219170495867729, -0.0007193278870545328, -0.02150861732661724, 0.014999055303633213, 0.0020814216695725918, -0.009472337551414967, -0.017320847138762474, 0.010049224831163883, -0.025995513424277306, 0.023189421743154526, -0.01895892061293125, 0.00948658213019371, -0.04763232544064522, -0.027576610445976257, -0.014222750440239906, 0.012534823268651962, 0.0026333811692893505, 0.014144408516585827, -0.0015891093062236905, 0.018360666930675507, -0.010476548224687576, 0.0196711253374815, 0.010462303645908833, -0.01518422830849886, 0.03364460542798042, 0.013681474141776562, -0.013190052472054958, 0.02246297337114811, -0.007898363284766674, 0.002912921831011772, 0.010982214473187923, 0.006231801118701696, 0.008268710225820541, 0.01873101480305195, 0.011224363930523396, -0.011509246192872524, -0.026536790654063225, 0.03888643905520439, -0.007976705208420753, -0.007720311637967825, -0.016266781836748123, -0.043359093368053436, -0.0028043105266988277, 0.021494371816515923, 0.005209785886108875, -0.006338632199913263, 0.007478161249309778, 0.013474934734404087, 0.0037640079390257597, -0.022235067561268806, 0.016651373356580734, -0.001023795921355486, 0.016793813556432724, 0.045495711266994476, 0.0037212755996733904, -0.010932359844446182, -0.019015897065401077, -0.024300463497638702, -0.021223735064268112, -0.014023332856595516, 0.0016113657038658857, 0.01330400537699461, 0.009657511487603188, 0.006260289344936609, -0.0011359683703631163, -0.019742345437407494, -0.018787991255521774, 0.004141476936638355, 0.021423151716589928, -0.0027722613885998726, 0.00011306267697364092, 0.006922640837728977, 0.02555394545197487, 0.02257692627608776, 0.008439639583230019, 0.007962461560964584, 0.0008283844217658043, 0.014151530340313911, 0.030710317194461823, 0.02727748453617096, 0.027163531631231308, -0.013154442422091961, 0.0032601223792880774, -0.015697017312049866, 0.0021757888607680798, 0.02954229898750782, 0.014585975557565689, 0.02689289301633835, 0.007748799864202738, 0.014756904914975166, 0.0009641486685723066, -0.005316616501659155, -0.014187140390276909, -0.010241520591080189, 0.016110096126794815, -0.009807074442505836, 0.006947568152099848, -0.018674036487936974, 0.004429920576512814, -0.023887384682893753, 0.007182595785707235, 0.014528999105095863, 0.020297866314649582, -0.0049249036237597466, 0.02484174072742462, 0.0004202014533802867, -0.016366491094231606, 0.0580020435154438, -0.02818910777568817, -0.010476548224687576, -0.01803305186331272, -0.00876725371927023, 0.01713567227125168, -0.02860218659043312, 0.0255397018045187, -0.02901526726782322, -0.015810970216989517, -0.0019158337963744998, 0.00031403827597387135, -0.009158967062830925, -0.014336703345179558, -0.017064452171325684, -0.024286219850182533, -0.012883803807199001, -0.012940780259668827, -0.006609270349144936, -0.028972534462809563, 0.005765306297689676, -0.004704119637608528, -0.005786672700196505, -0.029314393177628517, 0.006160580553114414, -0.009080624207854271, 0.019614148885011673, 0.0018090028315782547, -0.04224805161356926, 0.009322774596512318, 0.018688281998038292, -0.010398205369710922, -0.0002842146495822817, 0.024129534140229225, 0.027505390346050262, -0.010868261568248272, 0.005808038637042046, -0.004486897028982639, -0.009280041791498661, 0.002154422691091895, 0.016352245584130287, 0.030795780941843987, -0.02431470714509487, 0.02193593978881836, -0.005929113831371069, 0.01589643396437168, -0.012164476327598095, 0.003927815239876509, -0.00788411870598793, -0.01605311967432499, 0.013054733164608479, -0.007068642880767584, -0.006060871761292219, 0.014222750440239906, 0.0007803105399943888, -0.01135256141424179, 0.007677579298615456, 0.001518778968602419, 0.003372294595465064, -0.02592429332435131, -0.0034577595070004463, -0.022947272285819054, 0.002975239884108305, -0.002154422691091895, -0.01602463237941265, -0.02526906318962574, 0.012805460952222347, 0.02058274857699871, -0.01556881982833147, 0.029456833377480507, 0.0015169985126703978, -0.012178719975054264, -0.003601981094107032, -0.0013638741802424192, -0.004899976309388876, -0.016480443999171257, -0.010291374288499355, -0.014415046200156212, -0.029627762734889984, -0.008973794057965279, -0.005736818071454763, -0.011608955450356007, -0.012093255296349525, 0.02595278061926365, 0.007211084011942148, -0.006441901903599501, 0.007691823411732912, -0.012449358589947224, 0.02247721701860428, 0.009450972080230713, 0.002384109189733863, -0.012050523422658443, 0.0013612033799290657, -0.0030518020503222942, 0.009714487940073013, 0.02996962144970894, 0.021223735064268112, -0.0026672109961509705, -0.00034408445935696363, 0.015056031756103039, -0.002223862800747156, 0.040852125734090805, 0.023431573063135147, -0.004166404251009226, -0.01210749987512827, -0.015198472887277603, -0.015326670370995998, 0.007203962188214064, 0.025354528799653053, -0.0054020811803638935, -0.0014333142898976803, -0.008653300814330578, -0.0074211847968399525, 0.007157668936997652, -0.015469111502170563, 0.006356437224894762, 0.007478161249309778, 0.0034328321926295757, 0.004006158094853163, -0.004059573169797659, -0.013360981829464436, 0.01763421669602394, -0.0020689580123871565, 0.009906783699989319, -0.010611867532134056, 0.026237662881612778, -0.025425748899579048, -0.013417958281934261, -0.01055489107966423, 0.013788305222988129, 0.02687864936888218, 0.032163217663764954, -0.04877185821533203, -0.020226646214723587, 0.008304320275783539, 0.0054412526078522205, 0.015996143221855164, -0.020924607291817665, -0.023175178095698357, -0.002216740744188428, -0.011181632056832314, 0.041792239993810654, 0.007933973334729671, 0.0502532459795475, 0.0002107684122165665, -0.010668843984603882, -0.010910993441939354, -0.011815494857728481, 0.003778252052143216, 0.04304572194814682, 0.04199165850877762, -0.02595278061926365, -0.014942078851163387, -0.013581765815615654, 0.02472778782248497, 0.011174510233104229, 0.009522192180156708, -0.018759502097964287, 0.017449043691158295, -0.0038886440452188253, 0.013097465969622135, -0.01632375828921795, 0.013026244938373566, 0.0049070981331169605, -0.011259974911808968, 0.00888120662420988, 0.006719662342220545, 0.01283394917845726, -0.03130856901407242, 0.030824270099401474, -0.0117727629840374, -0.0003129254328086972, -0.011331195011734962, 0.02475627511739731, -0.015212716534733772, -0.02045455202460289, 0.0003703470283653587, -0.009230188094079494, -0.00010850011312868446, 0.023232154548168182, 0.021309198811650276, -0.00739269657060504, -0.01602463237941265, 0.005102954804897308, 0.004248308017849922, -0.009244431741535664, 0.01709294132888317, -0.02270512282848358, 0.007663335185497999, 0.0078057763166725636, 0.00484299985691905, 0.01806154102087021, -0.0031515108421444893, 0.040025968104600906, -0.01883072219789028, -0.0037604467943310738, -0.006295899860560894, 0.005562327802181244, -0.024685055017471313, 0.025995513424277306, -0.04321664944291115, -0.009757219813764095, -0.004600849933922291, -0.000734907400328666, -0.0033687336836010218, 0.005989651195704937, -0.01724962517619133, -0.031621940433979034, -0.02568214386701584, 0.007599236443638802, -0.00027731515001505613, -0.021181002259254456, 0.008161879144608974, 0.018018808215856552, -0.013076099567115307, 0.009187455289065838, 0.006427657790482044, -0.0028630674351006746, -0.010540646500885487, 0.004294601269066334, -0.00688346941024065, 0.011459392495453358, -0.011908081360161304, -0.021494371816515923, -0.047660816460847855, 0.002544355345889926, -0.014600220136344433, 0.02404407039284706, 0.005694085732102394, -0.04783174395561218, -0.02592429332435131, 0.0074211847968399525, -0.001618487760424614, 0.012228574603796005, 0.0053807152435183525, -0.01656590774655342, 0.06626363098621368, 0.01477114949375391, 0.0030233138240873814, 0.0053415438160300255, -0.01509876362979412, -0.006748150568455458, 0.000439341994933784, -0.02367372252047062, 0.00027197360759600997, 0.018759502097964287, 0.015155740082263947, 0.010455181822180748, 0.0009169650147669017, 0.009529314003884792, -0.006324388086795807, -0.002051152754575014, 0.034955061972141266, 0.025867316871881485, -0.01443641260266304, -0.002218521200120449, 0.019457463175058365, 0.009757219813764095, 0.009066380560398102, 0.004600849933922291, 0.022534193471074104, 0.03036845661699772, 0.022135358303785324, -0.013061854988336563, -0.033502161502838135, -0.01602463237941265, -0.004917781334370375, 0.003667860059067607, 0.012791217304766178, 0.010533524677157402, 0.033074840903282166, 0.018759502097964287, -0.010462303645908833, 0.015839457511901855, -0.03273298218846321, 0.0067374673672020435, 0.013645864091813564, -0.024955693632364273, 0.023759186267852783, -0.021864719688892365, -0.0067517114803195, -0.006488195154815912, 0.002952093258500099, 0.0008608788484707475, -0.0009463435271754861, -0.001638963702134788, 0.003078509820625186, -0.03261902928352356, -0.02056850492954254, -0.023160934448242188, -0.00815475732088089, -0.02031210996210575, 0.005733257159590721, -0.004198453389108181, 0.019457463175058365, -0.003115900559350848, -0.014714173041284084, 0.024556858465075493, 0.024528369307518005, -0.004689875524491072, -0.0024873788934201, -0.024115290492773056, 0.027704806998372078, -0.03458471596240997, -0.007698945235460997, 0.004066695459187031, 0.013211418874561787, 0.00330819608643651, 0.0072929877787828445, -0.01450051087886095, 0.03657889366149902, 0.01249921228736639, 0.03703470528125763, -0.0012508115032687783, -0.05441252514719963, -0.02526906318962574, 0.024699298664927483, -0.0026262591127306223, -0.006196191068738699, -0.03945620357990265, -0.00908774696290493, 0.002777602756395936, 0.014685684815049171, -0.006986739579588175, -0.00032850494608283043, -0.026123709976673126, -0.015383646823465824, -0.009322774596512318, -0.0240725576877594, -0.00023413766757585108, 0.015839457511901855, -0.004996124189347029, 0.0020226645283401012, 0.007228889502584934, 0.0035271993838250637, -0.006516683381050825, 0.026508301496505737, -0.025041157379746437, 0.008603447116911411, 0.03657889366149902, -0.039228297770023346, 0.008717400021851063, -0.0337015800178051, -0.0030998759903013706, -0.012947902083396912, -0.027448413893580437, -0.006267411634325981, -0.010590501129627228, -0.027776028960943222, 0.002654747338965535, -0.0072716218419373035, 0.018218224868178368, -0.013688596896827221, 0.0013558618957176805, 0.022562680765986443, 0.004422798287123442, -0.022220822051167488, 0.027491146698594093, -0.01606736332178116, 0.026009757071733475, 0.00921594351530075, -0.00024326280981767923, 0.0002381438243901357, -0.017149917781352997, 0.02979869209229946, 0.0038672778755426407, 0.0030215333681553602, -0.027847249060869217, 0.014286849647760391, -0.02179349958896637, 0.010205909609794617, 0.03165042772889137, -0.020283622667193413, 0.004077378660440445, -0.005516034085303545, 0.005430569406598806, -0.0067766387946903706, -0.006516683381050825, -0.012791217304766178, 0.006459706928580999, -0.041222475469112396, -0.0020315672736614943, -0.013282638974487782, 0.007100692484527826, -0.010854016989469528, 0.018360666930675507, -0.02071094699203968, -0.019870543852448463, 0.01242087036371231, 0.024670811370015144, -0.00397766986861825, 0.005505351349711418, -0.013866648077964783, -0.007812898606061935, 0.02739143744111061, 0.014322459697723389, 0.014457779005169868, -0.031906820833683014, 0.014600220136344433, 0.009009404107928276, -0.013482056558132172, -0.0076490906067192554, -0.0196711253374815, 0.02487022802233696, 0.002218521200120449, 0.020896119996905327, -0.013261272571980953, -0.027377193793654442, -0.003877960843965411, 0.011979302391409874, -0.022149601951241493, 0.01630951464176178, 0.00901652593165636, 0.0079553397372365, -0.017434800043702126, -0.02475627511739731, 0.0010807723738253117, -0.016095852479338646, -0.0017244283808395267, -0.008040804415941238, -0.008838474750518799, -0.0026921380776911974, -0.0023698650766164064, -0.028260327875614166, 0.0053201778791844845, -0.02368796616792679, -0.011174510233104229, -0.0072324504144489765, -0.014379436150193214, 0.0013273736694827676, 0.013503422960639, -0.011259974911808968, 0.0038565946742892265, -0.019685368984937668, 0.005594376940280199, -0.008389784954488277, 0.014009089209139347, 0.004112988710403442, 0.004031084943562746, 0.01148788072168827, -0.004387188237160444, 0.003171096555888653, 0.0011297365417703986, -0.00828295387327671, -0.007926851511001587, -0.0036892262287437916, -0.002446427009999752, -0.008325686678290367, -0.011651687324047089, -0.0038637167308479548, 0.03532541170716286, 0.013261272571980953, 0.0016959401546046138, -0.005637109279632568, -0.00611072639003396, -0.015212716534733772, -0.012648776173591614, 0.010896749794483185, 0.030909733846783638, -0.003486247733235359, -0.016893522813916206, -0.014400802552700043, 0.006167702842503786, -0.005729696247726679, -0.030140550807118416, 0.02834579348564148, 0.0034844670444726944, 0.014528999105095863, -0.02180774323642254, 0.012613165192306042, -0.001802771002985537, -0.008005193434655666, -0.009892539121210575, 0.027334460988640785, -0.0021366176661103964, 0.016879279166460037, 0.0020618359558284283, 0.018132761120796204, 0.011879593133926392, 0.01023439783602953, -0.0019354193937033415, -0.019813567399978638, -0.01669410429894924, 0.0066769300028681755, 0.003845911705866456, 0.009379751048982143, -0.007342842407524586, 0.0055872551165521145, -0.00237520644441247, 0.008496616035699844, 0.0013879111502319574, -0.0017529166070744395, 0.00034074598806910217, 0.0208391435444355, -0.003991913981735706, -0.01509876362979412, 0.0011982863070443273, -0.0016265001613646746, 0.010270008817315102, -0.014208506792783737, -0.01063323300331831, -0.012890925630927086, 0.003924254328012466, 0.016366491094231606, 0.016508931294083595, 0.005954040680080652, 0.014799637719988823, 0.007406940683722496, 0.001857076771557331, 0.002612014999613166, -0.024898717179894447, 0.00814763456583023, -0.01830369047820568, -0.019827811047434807, -0.011851104907691479, -0.027491146698594093, -0.007492405362427235, -0.003934937529265881, 0.004782462492585182, -0.006545171607285738, -0.0014333142898976803, -0.007990949787199497, 0.009963760152459145, -0.025197843089699745, -0.0012953244149684906, 0.014001967385411263, -0.0007273402297869325, 0.02957078628242016, 0.011160265654325485, 0.018930431455373764, -0.005384276155382395, -0.003927815239876509, -0.008461005054414272, -0.0032351950649172068, 0.0061036041006445885, 0.0054020811803638935, 0.007357086520642042, -0.02351703681051731, 0.008069292642176151, -0.03942771628499031, -0.007406940683722496, 0.0035663708113133907, -0.009906783699989319, 0.009479460306465626, 0.017149917781352997, 0.011608955450356007, -0.006566538009792566, 0.017605729401111603, 0.025297552347183228, -0.01284107193350792, -0.007584992330521345, 0.014942078851163387, -0.020682457834482193, 0.004461969714611769, 0.014066065661609173, -0.00017571453645359725, 0.013254150748252869, -0.003899327013641596, -0.005423447582870722, 0.01008483488112688, -0.008909694850444794, -0.026166442781686783, -0.008318563923239708, 0.008980915881693363, -0.017192648723721504, 0.0013344957260414958, 0.009629023261368275, -0.0019995179027318954, -0.010996458120644093, -0.009294286370277405, -0.011993546970188618, 0.00962190143764019, 0.002572843572124839, 0.010362595319747925, 0.0028025300707668066, -0.0019140532240271568, 0.0053201778791844845, -0.010334107093513012, -0.005131443031132221, -0.0016229391330853105, -0.011858227662742138, 0.002019103616476059, 0.014885102398693562, 0.010861138813197613, 0.012392382137477398, 0.006605709437280893, -0.010497914627194405, -0.01518422830849886, 0.013952112756669521, -0.016494687646627426, 0.014358069747686386, 0.014799637719988823, 0.008560714311897755, 0.019742345437407494, 0.005622865166515112, 0.035752732306718826, -0.014272605068981647, -0.03734807297587395, -0.003580614924430847, -0.002914702519774437, 0.009664633311331272, -0.018517352640628815, 0.0105691347271204, -0.009372629225254059, -0.007734555751085281, -0.0034613204188644886, -0.04133642837405205, 0.029072243720293045, -0.021679546684026718, -0.007663335185497999, -0.00537715433165431, -0.002736650872975588, -0.006911957636475563, -0.0065309274941682816, 0.0025764047168195248, -0.0007580540841445327, 0.017149917781352997, 0.035496339201927185, 0.012520578689873219, -0.018161248415708542, -0.008596324361860752, 0.01828944683074951, 0.007670457009226084, -0.03840214014053345, 0.006121409125626087, -0.007855630479753017, -0.016252538189291954, 0.001921175280585885, -0.03338820859789848, 0.012791217304766178, -0.0008662203908897936, -0.017748169600963593, 0.024699298664927483, -0.003374075284227729, 0.00955068040639162, -0.007962461560964584, -0.00491065951064229, 0.0029004584066569805, -0.016138585284352303, 0.007428307086229324, -0.020126936957240105, 0.027035333216190338, 0.00655229389667511, -0.0037568858824670315, -0.028659163042902946, -0.006826492957770824, 0.015027543529868126, 0.015540331602096558, 0.020796410739421844, -0.0010398204904049635, 0.009137600660324097, -0.012456480413675308, -0.0051528094336390495, 0.004397870972752571, -0.015511843375861645, -0.01938624307513237, -0.015056031756103039, -0.019144093617796898, -0.01489934604614973, -0.001883784425444901, -0.03823120892047882, -0.03928527608513832, 0.00734996423125267, 0.0029182634316384792, -0.004404993262141943, -0.014265483245253563, 0.010490791872143745, 0.0026565277948975563, 0.024813251569867134, -0.012613165192306042, 0.006523805670440197, -0.0016104754758998752, 0.023858895525336266, -0.0014680343447253108, -0.028160618618130684, -0.00782002042979002, 0.007029471918940544, 0.010106201283633709, 0.01924380287528038, -0.0011831519659608603, 0.022947272285819054, -0.01615282893180847, -0.009978003799915314, 0.006520244758576155, -0.004401432350277901, 0.017562996596097946, 0.016893522813916206, 0.001110150828026235, 0.02565365470945835, -3.4135802707169205e-05, -0.017548752948641777, 0.002914702519774437, -0.005273884162306786, -0.0027740418445318937, 0.0038672778755426407, -0.009771464392542839, -0.005654914304614067, -0.010141811333596706, -0.008040804415941238, -2.7973554097115993e-05, 0.0032156093511730433, -0.003039338393136859, -0.0024962814059108496, 0.017434800043702126, 0.004761096090078354, -0.012157353572547436, -0.004985440988093615, 0.001409277319908142, 0.0038637167308479548, 0.002052933443337679, 0.009329896420240402, 0.015725504606962204, -0.026394348591566086, 0.01697898656129837, -0.006780199706554413, 0.025867316871881485, -0.030453922227025032, 0.01242087036371231, 0.023431573063135147, -0.0002917818201240152, -0.0015632918803021312, -0.0068656643852591515, 0.018759502097964287, 0.026095222681760788, -0.00357527332380414, 0.006406291853636503, -0.00803368166089058, -0.022918784990906715, 0.017691193148493767, 0.011252852156758308, 0.0019158337963744998, 0.019984496757388115, 0.01095372624695301, -0.013788305222988129, -0.013681474141776562, -0.02056850492954254, 0.005373592954128981, 0.009137600660324097, -0.0008964891312643886, -0.0007509320275858045, 0.013759816996753216, -0.006374242249876261, 0.023873141035437584, -0.011694420129060745, -0.008453883230686188, -0.0036642991472035646, -0.002426841529086232, 0.0240725576877594, 0.01699323207139969, 0.007734555751085281, -0.002474915236234665, -0.0007714079692959785, -0.00575106218457222, -0.01991327479481697, 0.009814196266233921, 0.0053023723885416985, 0.0031942431814968586, 0.01202203519642353, 0.0015721943927928805, 0.006384925451129675, 0.020938852801918983, -0.006149897351861, -0.005555205512791872, -0.00739269657060504, -0.007663335185497999, -0.0070650819689035416, 0.003279707860201597, 0.015668528154492378, -0.016922010108828545, 0.009999370202422142, 0.011067679151892662, 0.012064767070114613, -0.00024148229567799717, 0.012470724061131477, -0.003044679993763566, 0.010690209455788136, 0.005106515716761351, -0.0035485655535012484, 0.011908081360161304, -0.04296025633811951, 0.018161248415708542, -0.006854981184005737, -0.014564610086381435, -0.006879908498376608, 0.005006806924939156, 0.02123797871172428, 0.0025675022043287754, -0.011794128455221653, -0.015939166769385338, 0.0032601223792880774, -0.016765326261520386, -0.017149917781352997, -0.010576256550848484, -0.008396906778216362, 0.01912984997034073, 0.019856298342347145, 0.010383961722254753, -0.0018713208846747875, 0.02833154797554016, 0.022519949823617935, 0.0084823714569211, 0.003009069710969925, 0.022135358303785324, 0.01103919092565775, -0.00988541729748249, -0.002879092236980796, 0.0020689580123871565, 0.006972495466470718, -0.018118517473340034, 0.004964074585586786, -0.024770518764853477, 0.018218224868178368, -0.020283622667193413, 0.0012214330490678549, 0.014999055303633213, 0.01425123866647482, -0.014066065661609173, 0.024015581235289574, -0.013254150748252869, -0.007513771764934063, 0.0019389804219827056, -0.01699323207139969, -0.010825528763234615, -0.007983827963471413, -0.025439992547035217, -0.006958251353353262, -0.00794821698218584, -0.0038637167308479548, -0.014728416688740253, -0.00494983047246933, 0.04079515114426613, 0.01170154195278883, -0.0006405401509255171, -0.004882171284407377, 0.019315022975206375, 0.013275517150759697, 0.013489178381860256, 0.005523156374692917, 0.009742976166307926, -0.01330400537699461, -0.012812583707273006, -0.002248789882287383, -0.007641968782991171, -0.0003334013745188713, 0.0012178720207884908, 0.008254465647041798, -0.036436449736356735, 0.01736357808113098, -0.006523805670440197, -0.003213828895241022, 0.0034844670444726944, 0.011722908355295658, -0.0009276480996049941, 0.018360666930675507, 0.002816774183884263, -0.026807427406311035, 0.006157019641250372, 0.01804729551076889, 0.014642952010035515, -0.005127882119268179, 0.007364208344370127, -0.007104253396391869, -0.009094868786633015, 0.010455181822180748, 0.012684386223554611, -0.020369086414575577, 0.013759816996753216, -0.012648776173591614, 0.004928464535623789, -0.002044030698016286, 0.02324639819562435, -0.007577870041131973, 0.02098158374428749, 0.005444813519716263, 0.02367372252047062, -0.023331863805651665, 0.016081608831882477, 0.005879259202629328, -9.503497130936012e-05, -0.006847859360277653, -0.027633586898446083, 0.00014366526738740504, 0.00941536109894514, 0.021223735064268112, -0.03692075237631798, -0.007798654027283192, 0.022377507761120796, -0.03222019225358963, 0.0061641414649784565, 0.013346737250685692, -0.034698668867349625, -0.01749177649617195, 0.0017475751228630543, -0.0006196190952323377, 0.018901944160461426, 0.019158337265253067, 0.006641319487243891, 0.003671421203762293, -0.003607322694733739, -0.026935625821352005, -0.0014911809703335166, 0.020924607291817665, -0.005131443031132221, 0.0063706813380122185, -0.00881710834801197, -0.012157353572547436, -0.0016959401546046138, 0.012848193757236004, 0.049142204225063324, -0.043501533567905426, -0.00099352712277323, -0.0028630674351006746, 0.0005688744131475687, 0.020767923444509506, -0.024556858465075493, -0.02058274857699871, 0.0008804645040072501, 0.009059258736670017, -0.005865015089511871, 0.000293117220280692, -0.016893522813916206, 0.0009632584406062961, 0.012962146662175655, -0.01900165155529976, -0.0033384650014340878, 0.013610254041850567, -0.009408239275217056, 0.011801251210272312, -0.0038601558189839125, -0.016338001936674118, 0.007175473961979151, 0.012007790617644787, 0.008090658113360405, 0.0231324452906847, 0.027747539803385735, -0.00695112906396389, -0.007634846493601799, 0.006623514462262392, 0.00955068040639162, 0.004850121680647135, -0.001385240349918604, 0.006983178202062845, 0.012883803807199001, -0.020012984052300453, 0.01685079000890255, 0.0010407108347862959, -0.010668843984603882, 0.033473674207925797, -0.008845596574246883, -0.016551664099097252, -0.010526402853429317, -0.008660423569381237, 0.012812583707273006, 0.014870857819914818, 0.011331195011734962, 0.007342842407524586, -0.005099393893033266, 0.02405831404030323, 0.014728416688740253, 0.026636498048901558, -0.0017983197467401624, 0.01712142862379551, -0.004305284470319748, 0.022804832085967064, -0.012755606323480606, 0.014799637719988823, 0.00890257302671671, 0.007720311637967825, 0.0037640079390257597, 0.010918115265667439, -0.004469091538339853, -0.021708033978939056, 0.015283937565982342, -0.004273235332220793, 0.01630951464176178, 0.003799618221819401, 0.02850247733294964, 0.014828125946223736, 0.028787359595298767, -0.0037818129640072584, -0.016394978389143944, -0.007164790760725737, -0.0064098527655005455, 0.01710718497633934, -0.000736687914468348, -0.005626426078379154, 0.00037123728543519974, 0.019015897065401077, 0.035895176231861115, -0.00255503854714334, 0.001809893175959587, -0.004209136590361595, 0.013816793449223042, 0.0032280730083584785, -0.00948658213019371, -0.027006845921278, -0.010006492026150227, 0.000178274029167369, -0.015554576180875301, -0.0031621940433979034, -0.01686503365635872, -0.0020102011039853096, 0.024172266945242882, 0.008339930325746536, 0.02591004967689514, -0.002519428264349699, 0.0008292747079394758, -0.01605311967432499, -0.003073168219998479, 0.014123042114078999, -0.017335090786218643, -0.019728101789951324, -0.002512306207790971, 0.0029983867425471544, 0.006192629691213369, 0.0007371330284513533, 0.011345439590513706, 0.012050523422658443, 0.006662685889750719, 0.014051821082830429, -0.010248642414808273, -0.00935126282274723, -0.003731958568096161, 0.015226961113512516, 0.021565593779087067, -0.011131777428090572, -0.022519949823617935, -0.013453568331897259, 0.0070437160320580006, 0.00021978227596264333, 0.006167702842503786, -0.024357439950108528, -0.0033633920829743147, 0.005573011003434658, 0.011858227662742138, 0.03136554732918739, 0.0055694496259093285, 0.015540331602096558, -0.006929763127118349, -0.0193719994276762, 0.016808057203888893, -0.02314669080078602, -0.013090343214571476, 0.004077378660440445, 0.018004564568400383, -0.005626426078379154, 0.003438173793256283, -0.00611072639003396, -0.02326064370572567, -0.02471354231238365, -0.01806154102087021, 0.006833615247160196, -0.004853683058172464, -0.002316449536010623, -0.006837176159024239, -0.008268710225820541, 0.005156370345503092, -0.004875048995018005, -0.01578248105943203, -0.02432895265519619, 0.0016175975324586034, -0.0038957661017775536, 0.013617375865578651, 0.005498229060322046, -0.0023395961616188288, -0.00023213459644466639, 0.01870252564549446, -0.0035004918463528156, 0.005063783377408981, -0.009842684492468834, -0.0208391435444355, -0.01243511401116848, -0.010519280098378658, 0.01885921135544777, -0.0014520096592605114, 0.0036358109209686518, 0.036037616431713104, 0.016480443999171257, 0.0022612535394728184, -0.0094224838539958, -0.0009013855014927685, -0.00017148580809589475, -0.007314354181289673, -0.016409222036600113, 0.015697017312049866, -0.005622865166515112, -0.021437395364046097, -0.005900625605136156, 0.017947588115930557, -0.028673406690359116, -0.02018391340970993, 0.002813213039189577, 0.010476548224687576, 0.0008577629341743886, 0.013254150748252869, 0.0013442885829135776, 0.01576823741197586, 0.005854331888258457, -0.015412135049700737, 0.004572361707687378, -0.02286180853843689, 0.02702108956873417, -0.004497579764574766, 0.006837176159024239, -0.015255449339747429, -0.025610921904444695, 0.012064767070114613, -0.05187707394361496, 0.01646619848906994, 0.006317265797406435, -0.01777665875852108, -0.02073943428695202, -0.00896667130291462, 0.001160895568318665, 0.010583379305899143, -0.010063468478620052, -0.002749114530161023, 0.014222750440239906, -0.0025924292858690023, -0.030909733846783638, -0.013795427046716213, 0.014742661267518997, -0.028317304328083992, 0.015383646823465824, 0.012392382137477398, -0.006481073331087828, 0.0023395961616188288, -0.0027597977314144373, -0.00970024336129427, -0.014108797535300255, -0.010213031433522701, 0.023830408230423927, 0.0036215668078511953, 0.018531596288084984, -1.168462767964229e-05, 0.012057645246386528, 0.011067679151892662, -0.009878295473754406, -0.010825528763234615, 0.011117533780634403, -0.004137916024774313, 0.0015606210799887776, -0.008133390918374062, -0.021594081073999405, 0.003806740278378129, 0.002047591842710972, -0.029884157702326775, -0.012784095481038094, -0.017733925953507423, -0.006367120426148176, 0.0054198866710066795, -0.007663335185497999, 0.002877311548218131, -0.008176122792065144, -0.00015980118769221008, -0.0198990311473608, 0.019087117165327072, 0.008831352926790714, -0.0030891927890479565, -0.006092920899391174, -0.00048519024858251214, 0.017021719366312027, -0.008290075697004795, -0.01075430866330862, -0.008119146339595318, -0.042874790728092194, 0.025169353932142258, -0.0196711253374815, -0.01789061166346073, 0.003568151267245412, 0.006566538009792566, 0.005690524820238352, -0.0231324452906847, 0.0054804240353405476, 0.006830054335296154, -0.01991327479481697, -0.0019656880758702755, 0.0022950833663344383, -0.013318249024450779, -0.0027384315617382526, 0.02004147320985794, -0.009849807247519493, -0.017705436795949936, 0.011986424215137959, -0.008275832049548626, -0.010797040536999702, -0.0003957193694077432, -0.009009404107928276, 0.007634846493601799, -0.007677579298615456, -0.019856298342347145, -0.03501204028725624, -0.01565428450703621, 0.005533839575946331, 0.009515070356428623, -0.004971196874976158, 0.002241667825728655, 0.020012984052300453, -0.025511212646961212, 0.013154442422091961, 0.008760131895542145, -0.01576823741197586, -0.007535137701779604, 0.0002810987352859229, 0.0008052377379499376, 0.01035547349601984, 0.022277798503637314, -0.007570748217403889, 0.008503737859427929, -0.001251701731234789, 0.03677830845117569, 0.011067679151892662, -0.018389154225587845, 0.0179048553109169, -0.0028719701804220676, 0.02326064370572567, 0.004038207232952118, -0.01028425246477127, -0.007919728755950928, 0.017705436795949936, 0.007196839898824692, -0.021024316549301147, -0.01860281638801098, -0.029371369630098343, -0.025625167414546013, -0.02404407039284706, 0.0054804240353405476, 0.008005193434655666, 0.0071719130501151085, 0.012613165192306042, 0.00481807254254818, 0.005558766890317202, -0.018389154225587845, -0.01304048951715231, -0.006694735027849674, -0.006007456220686436, 0.019058628007769585, 0.010426693595945835, 0.02086763083934784, 0.022035649046301842, 0.0137669388204813, 0.008090658113360405, -0.018816478550434113, -0.005540961399674416, 0.012712874449789524, -0.019998740404844284, 0.012007790617644787, -0.010747185908257961, -0.01776241324841976, -0.012648776173591614, -0.00641697458922863, 0.00997088197618723, 0.010063468478620052, 0.006993861403316259, 0.002086763037368655, 0.006121409125626087, -0.007228889502584934, 0.007869875058531761, 0.02123797871172428, -0.0004878610197920352, 1.9084891391685233e-05, -0.012826827354729176, -0.006993861403316259, -0.006477512419223785, 0.0010371498065069318, -0.0009392214706167579, 0.02326064370572567, -0.003115900559350848, 0.010341228917241096, 0.018374910578131676, -0.01237101573497057, 0.00754938181489706, 0.008382663130760193, -0.01028425246477127, -0.032020773738622665, -0.02434319630265236, -0.0030998759903013706, -0.008560714311897755, -0.0027918468695133924, -0.03145100921392441, 0.004137916024774313, 0.018118517473340034, -0.01269862987101078, -0.0012071889359503984, -0.0032868299167603254, -0.00011211678065592423, 0.0037818129640072584, -0.0040845004841685295, -0.004469091538339853, 0.02340308390557766, 0.01478539314121008, -0.016808057203888893, -0.004319528583437204, -0.002241667825728655, -0.013795427046716213, 0.011509246192872524, -0.008646178990602493, 0.002645844826474786, -0.023744942620396614, -0.026778940111398697, -0.010198787786066532, 0.01130270678550005, -0.015611552633345127, 0.013061854988336563, -0.009329896420240402, 0.006028822623193264, 0.003050021594390273, -0.009536436758935452, 0.015141496434807777, -0.021679546684026718, 0.02754812315106392, 0.035752732306718826, 0.0012267745332792401, -0.008546470664441586, -0.011046312749385834, -0.01615282893180847, 0.001857076771557331, 0.004340894520282745, -6.48775021545589e-05, -0.0036162252072244883, -0.007528015878051519, 0.0008631044765934348, 0.005761745385825634, 0.0046400208957493305, 0.005651353392750025, 0.01190095953643322, 0.025041157379746437, -0.006021700333803892, -0.019599905237555504, 0.004152160137891769, -0.008161879144608974, 0.02528330683708191, 0.003949181642383337, 0.009799952618777752, -0.024101046845316887, -0.010497914627194405, 0.01377406157553196, -0.0049070981331169605, 0.005758184473961592, 0.028417013585567474, 0.020611237734556198, 0.0017288797535002232, 0.019827811047434807, -0.01699323207139969, 0.0010487231193110347, -0.011295584961771965, 0.021622570231556892, 0.006673368625342846, 0.016281025484204292, 0.002190032973885536, 0.0105691347271204, 0.01290517020970583, -0.01425123866647482, 0.007599236443638802, -0.014600220136344433, 0.011402416042983532, -0.039513181895017624, -0.0076277246698737144, -0.010861138813197613, 0.022534193471074104, -0.005159931257367134, -0.010882505215704441, -0.0015606210799887776, 0.011751396581530571, 0.002323571592569351, -0.0057083298452198505, 0.004768218379467726, -0.010277130641043186, -0.01343932468444109, -0.03546785190701485, -0.022904539480805397, 0.03994050249457359, -0.006466829217970371, 0.028516722843050957, 0.02259116992354393, 0.004611532669514418, -0.021992916241288185, -0.004554556217044592, -0.007770165801048279, -0.0011849325383082032, -0.0014217409770935774, -0.0011617857962846756, -0.01017029955983162, 0.015383646823465824, -0.01911560446023941, -0.022220822051167488, 0.005070905666798353, -0.01618131622672081, 0.007812898606061935, 0.008574958890676498, 0.012271306477487087, -0.007414062973111868, -0.004896415397524834, -0.009401117451488972, -0.01724962517619133, 0.00648463424295187, -0.002214960288256407, 0.001962127164006233, 0.008119146339595318, 0.02365947887301445, 0.007891240529716015, 0.000811024394351989, 0.0035236384719610214, -0.0029716789722442627, 0.020269379019737244, 0.027719052508473396, 0.007175473961979151, -0.03421436995267868, -0.018773745745420456, 0.00448333565145731, 0.0023271325044333935, -0.02806091122329235, 0.01927229017019272, -0.004333772696554661, 0.01685079000890255, -0.017847878858447075, 0.022349020466208458, 0.0025016230065375566, -0.013133076019585133, -0.009258676320314407, 0.004415676463395357, -0.008909694850444794, -0.0009347701561637223, 0.016608640551567078, 0.019884787499904633, 0.018517352640628815, -0.03008357435464859, -0.012976390309631824, -0.016622884199023247, 0.008140512742102146, -0.014187140390276909, -0.006922640837728977, 0.01323278434574604, -0.004583044443279505, 0.012684386223554611, -0.012192964553833008, -0.0017449043225497007, 0.009344140999019146, 0.016224049031734467, -0.003106998046860099, -0.020497284829616547, -0.007791532203555107, -0.0018116736318916082, 0.01603887602686882, -0.004939147736877203, -0.02622341923415661, 0.018132761120796204, 0.014614463783800602, -0.01163744367659092, 0.01036971714347601, 0.012541945092380047, 0.020682457834482193, 0.007449673023074865, -0.013339615426957607, -0.0021010071504861116, 9.559137834003195e-05, -0.0067980047315359116, -0.0008666655048727989, -0.023317620158195496, 0.013624497689306736, 0.0034274905920028687, -0.007905485108494759, -0.027889981865882874, 0.015355158597230911, -0.009707366116344929, 0.023588256910443306, 0.03236263245344162, 0.013076099567115307, 0.0030891927890479565, 0.015084519982337952, -0.01710718497633934, 0.01685079000890255, 0.003044679993763566, -0.0047860234044492245, 0.011751396581530571, 0.017206894233822823, -0.004194892477244139, -0.017591483891010284, -0.01516998466104269, -0.010960848070681095, -0.0009837343823164701, -0.006979617290198803, -0.007983827963471413, -0.005626426078379154, -0.016209805384278297, 0.008874084800481796, 0.002615575911477208, 0.027633586898446083, 0.0020315672736614943, 0.00695112906396389, 0.004835877567529678, 0.0029236050322651863, 0.0069048358127474785, 0.0031586328987032175, -0.014813881367444992, -0.0016078046755865216, 0.015682773664593697, -0.013681474141776562, 0.012862437404692173, 0.001172468881122768, -0.007763043977320194, -0.010412449948489666, 0.005840087775141001, -0.011851104907691479, 0.014856614172458649, 0.0120362788438797, 0.00537715433165431, 0.02123797871172428, 0.02085338719189167, 0.029043754562735558, -0.0007326817722059786, -0.00814763456583023, -0.010975091718137264, -0.01123860850930214, 0.008653300814330578, -0.005327299702912569, -0.015298181213438511, -0.0003839234705083072, 0.00962190143764019, 0.010925238020718098, -0.00794821698218584, -0.0037283976562321186, 0.0016451955307275057, 0.010405327193439007, -0.02327488735318184, -0.004112988710403442, -0.005313055589795113, -0.004095183685421944, -0.004543873481452465, 0.0018232469446957111, 0.014870857819914818, -0.005038856528699398, -0.019956007599830627, -0.005622865166515112, -0.00575106218457222, -0.002717065392062068, 0.007449673023074865, 0.010305618867278099, -0.0028203350957483053, -0.009856929071247578, 0.026650743559002876, -0.006548732984811068, -0.0018357106018811464, 0.02885858155786991, 0.010270008817315102, -0.008176122792065144, 0.01103919092565775, 0.006559415720403194, 0.010305618867278099, 0.0010629672324284911, -0.015839457511901855, 0.00975009799003601, 0.0005679841851815581, -0.008382663130760193, 0.011345439590513706, 0.005167053546756506, 0.021451640874147415, 0.0052810064516961575, 0.002190032973885536, -0.011936570517718792, -0.0009961979230865836, 0.0013496300671249628, -0.0022292044013738632, -0.012271306477487087, 7.52823834773153e-05, -0.00584364915266633, -0.011445147916674614, -0.005021051038056612, 0.018802234902977943, 0.025169353932142258, -0.00856783613562584, 0.00417352607473731, 0.013111709617078304, 0.009443849325180054, 0.0023306936491280794, 0.009201699867844582, 0.015155740082263947, -0.011202998459339142, -0.0029894839972257614, 0.016736837103962898, 0.005925552453845739, 0.0025746242608875036, 0.014286849647760391, 0.00099352712277323, 0.013531911186873913, 0.01670834980905056, -0.001825027517043054, -0.0012917633866891265, 0.026565277948975563, 0.0018766623688861728, 0.005740378983318806, 0.015711260959506035, -0.00043489070958457887, -0.003306415630504489, -0.0046578263863921165, -0.004209136590361595, -0.016879279166460037, -0.0032850494608283043, 0.009401117451488972, 0.010711575858294964, -0.006238923408091068, -0.024628078565001488, -0.006228240206837654, -0.029770204797387123, -0.007239572703838348, 0.003372294595465064, -0.0038316675927489996, 0.003213828895241022, -0.02568214386701584, 0.017548752948641777, 0.012919413857161999, -0.015355158597230911, -0.004355138633400202, 0.008674667216837406, 0.011601833626627922, 0.007713189348578453, -0.012876681983470917, 0.018232470378279686, 0.0029592153150588274, -0.0013745572650805116, -0.020682457834482193, -0.011081922799348831, -0.005021051038056612, 0.004565239418298006, -0.001426192233338952, 0.027362948283553123, 0.006847859360277653, -0.006837176159024239, 0.01003498025238514, -0.02914346382021904, -0.01870252564549446, -0.017748169600963593, -0.013994844630360603, -0.00501749012619257, 0.012762729078531265, 0.009002282284200191, -0.02155134826898575, 0.0063706813380122185, 0.028944045305252075, 0.005295250564813614, 0.02300424873828888, -0.0009383311844430864, 0.003731958568096161, 0.01323278434574604, 0.008503737859427929, -0.002914702519774437, -0.016508931294083595, 0.0016656714724376798, -0.0026316007133573294, 0.009543558582663536, -0.000925867585465312, 0.011480757966637611, 0.023346107453107834, -0.018916187807917595, -0.041080035269260406, -0.006972495466470718, 0.01645195484161377, -0.0060430667363107204, -0.0012677264166995883, 0.022220822051167488, -0.0011920545948669314, 0.012492090463638306, -0.031764380633831024, 0.0024001337587833405, 0.004244746640324593, 0.014493389055132866, -0.012285551056265831, -0.017619973048567772, 0.04635035619139671, -0.004365821834653616, 0.001458241487853229, 0.0014146189205348492, -0.010761430487036705, -0.013054733164608479, 0.028246084228157997, -0.022292044013738632, 0.009778586216270924, 0.006224679294973612, -0.0029681178275495768, 0.016081608831882477, 0.008169000968337059, 0.0033242208883166313, -0.023046981543302536, -0.0038316675927489996, -0.024300463497638702, -0.005590816028416157, -0.01243511401116848, -0.0003796947421506047, -0.013560399413108826, -0.0045581175945699215, -0.0019051505951210856, 0.004269673954695463, 0.018944675102829933, 0.020625481382012367, -0.019884787499904633, -0.0036821041721850634, -0.017691193148493767, -0.008582080714404583, -0.006641319487243891, -0.022548437118530273, 0.014486267231404781, -0.003874399932101369, 0.01897316426038742, -0.005323738791048527, 0.03561029210686684, -0.0069048358127474785, -0.009572046808898449, -0.007698945235460997, 0.015141496434807777, 0.018018808215856552, -0.01188671588897705, -0.006488195154815912, 0.025311795994639397, 0.025169353932142258, 0.012520578689873219, -0.009465215727686882, 0.010255764238536358, -0.015526087954640388, -0.00225413148291409, -0.00962190143764019, -0.018545839935541153, 0.014870857819914818, -0.02112402580678463, -0.023189421743154526, 0.012826827354729176, -0.03304634988307953, 6.916186248417944e-05, -0.013111709617078304, 0.005209785886108875, -0.0005421667010523379, 0.0017075135838240385, -0.009985125623643398, -0.0037604467943310738, -0.020540017634630203, 0.00561930425465107, 0.013204296119511127, 0.04119398817420006, -0.0037640079390257597, 0.008311442099511623, -0.008639057166874409, -0.001956785563379526, -0.015882190316915512, 0.006050188560038805, -3.720997483469546e-07, -0.018802234902977943, -0.012249941006302834, 0.008297198452055454, 0.007763043977320194, 0.017691193148493767, 0.020269379019737244, -0.003304635174572468, -0.0051136380061507225, -0.007036593742668629, -0.019201070070266724, -0.0030019476544111967, 0.01477114949375391, -6.732570909662172e-05, 0.010590501129627228, -0.014051821082830429, -0.00803368166089058, 0.006338632199913263, 0.011665931902825832, 0.008069292642176151, 0.004857243970036507, 0.007378452457487583, 0.006897713523358107, 0.011281340382993221, -0.0009276480996049941, -0.03971259668469429, 0.009194577112793922, -0.004572361707687378, 0.002284400165081024, -0.006840737070888281, 0.010825528763234615, 0.00029690080555155873, -0.0018748819129541516, 0.0009970881510525942, -0.004437042400240898, 0.0013300444697961211, 0.005793794523924589, -0.02582458406686783, -0.01682230271399021, 0.003803179133683443, 0.007983827963471413, -0.006815810222178698, 0.02126646600663662, -0.000976612325757742, -0.004604410845786333, -0.02808939851820469, -0.011495002545416355, 0.0035895174369215965, 0.007656212896108627, 0.008012316189706326, -0.02311820164322853, -0.0020226645283401012, -0.034413788467645645, -0.0018410520860925317, -0.0019674687646329403, 0.00045981790754012764, 0.02740568108856678, -0.009650389663875103, 0.008838474750518799, 0.012670141644775867, 0.0002403694816166535, 0.0036286888644099236, -0.0018339300295338035, 0.020411819219589233, -0.015668528154492378, 0.0006725894054397941, -0.02525481954216957, -0.020155426114797592, -0.030282992869615555, -0.0328754223883152, 0.006121409125626087, -0.02259116992354393, 0.00930140819400549, -0.007264499552547932, -0.021978672593832016, 0.002316449536010623, 0.0018909064820036292, -0.007798654027283192, 0.004860804881900549, -0.004511823877692223, -0.005451935809105635, 0.006968934088945389, 0.006830054335296154, -0.002280839253216982, -0.0038601558189839125, -0.025582434609532356, 0.012143109925091267, -0.010341228917241096, 0.0001470037386752665, 0.006445462815463543, -0.02016966976225376, 0.00044089992297813296, 0.0019300779094919562, 0.006392047740519047, 0.013161564245820045, -0.0051919808611273766, -0.011986424215137959, -0.033245768398046494, -0.014728416688740253, -0.030852757394313812, -0.012741362676024437, -0.0016665617004036903, 0.02498418092727661, -0.0023075470235198736, -0.004234063904732466, -0.017562996596097946, 0.029171951115131378, -0.005743940360844135, 0.013090343214571476, 0.002711723791435361, 0.005893503315746784, -0.00397766986861825, 0.00575106218457222, -0.014657196588814259, 0.0061819469556212425, 0.03330274671316147, 0.023574013262987137, -0.0069440072402358055, 0.008076414465904236, 0.005259640049189329, 0.007136302534490824, -0.004882171284407377, -0.007698945235460997, 0.014137285761535168, -0.014472022652626038, -0.01403757743537426, 0.013054733164608479, -0.008539347909390926, -0.00023168946790974587, -0.0018713208846747875, 0.015540331602096558, -0.01002073660492897, -0.01081840693950653, -0.018218224868178368, -0.006157019641250372, 0.020240889862179756, 0.015255449339747429, -0.00222030165605247, 0.014585975557565689, -0.01910136081278324, 0.012712874449789524, 0.010248642414808273, 0.006787321530282497, -0.02006996050477028, -0.00935126282274723, -0.023346107453107834, 0.009258676320314407, -0.011829739436507225, 0.013560399413108826, -0.025610921904444695, 0.01831793412566185, -0.020255133509635925, 0.002159764291718602, -0.008183245547115803, -0.004472652915865183, 0.0061036041006445885, 0.009928149171173573, -0.017050208523869514, -0.015269692987203598, -0.011252852156758308, 0.015041787177324295, -0.019599905237555504, -0.0084823714569211, -0.002870189491659403, -0.0070437160320580006, 0.002649405738338828, 0.0007749689975753427, 0.0042518689297139645, -0.0010985775152221322, -0.003970547579228878, 0.0024304024409502745, -0.02608097903430462, 0.002916482975706458, 0.006441901903599501, 0.014023332856595516, 0.03019752725958824, -0.0020760800689458847, -0.01927229017019272, 0.010711575858294964, -0.025098133832216263, 0.00950082577764988, -0.007456795312464237, -0.0022024966310709715, 0.008290075697004795, 0.019158337265253067, -0.022762099280953407, 0.004380065947771072, -0.013204296119511127, 0.030453922227025032, -0.00015412579523399472, -0.01685079000890255, -0.014386557973921299, 0.013353860005736351, 0.009735854342579842, 0.0005844539264217019, -0.019599905237555504, -0.0012018473353236914], "532697b7-ec72-41ad-9dbe-e1ed57b7917b": [-0.026645027101039886, -0.0007674460648559034, -0.006622324697673321, 0.030117757618427277, -0.008502737618982792, -0.024745147675275803, 0.02069622464478016, 0.05718325078487396, 0.0037355206441134214, 0.0311299879103899, 0.0043642716482281685, 0.02932354435324669, -0.007436002604663372, -0.004212437197566032, 0.004282514564692974, 0.02854490652680397, -0.0008506631129421294, 0.01234142854809761, 0.005567268934100866, -0.05581284314393997, 0.039928607642650604, -0.016974329948425293, -0.031706180423498154, 0.020976534113287926, -0.010776364244520664, -0.015409265644848347, -0.013711833395063877, 0.009787492454051971, -0.031192278489470482, -0.02894979901611805, 0.01509781088680029, 0.03145701438188553, -0.00011521424312377349, -0.0029062700923532248, 0.029728436842560768, -0.03245367482304573, 0.020540496334433556, -0.0004752131353598088, -0.013976570218801498, -0.010939878411591053, -0.0354125015437603, 0.012512728571891785, 0.006493849214166403, 0.00746325496584177, -0.02977515570819378, 0.011126751080155373, 0.030849678441882133, 0.0006185313686728477, -0.018827490508556366, -0.035287920385599136, 0.01058949064463377, 0.011344769969582558, -0.0015553314005956054, -0.010682927444577217, 0.035194482654333115, -0.040458083152770996, 0.006123995874077082, 0.057307831943035126, 0.012855330482125282, -0.055563680827617645, -0.004422669764608145, -0.006026666145771742, -0.0035681133158504963, -0.02546149492263794, 0.0167874563485384, 0.010223530232906342, -0.0010404563508927822, -0.009834210388362408, -0.0035330746322870255, 0.04148588702082634, -0.007568371016532183, 0.018048852682113647, -0.055563680827617645, -0.006743013858795166, 0.008300292305648327, -0.006770266219973564, 0.03341918811202049, -0.027376947924494743, 0.01599324494600296, -0.02499431185424328, 0.007498293649405241, 0.0004764297336805612, 0.03834018483757973, 0.005796967539936304, 0.049054257571697235, 0.040894120931625366, -0.012917621061205864, -0.0604223869740963, -0.04494304209947586, -0.03032020293176174, 0.012793038971722126, 0.009764133021235466, -0.013478240929543972, 0.002513057319447398, -0.021412573754787445, 0.022331366315484047, 0.01428023912012577, 0.009242445230484009, -0.009429318830370903, -0.03069395013153553, -0.029307972639799118, -0.0027758481446653605, -0.02680075541138649, 0.0042980872094631195, 0.03746810927987099, -0.007077828515321016, -0.018453745171427727, 0.02153715491294861, -0.020540496334433556, 0.018329162150621414, -0.009460464119911194, -0.027906421571969986, 0.0018006027676165104, -0.007790283299982548, -0.040925268083810806, -0.03553708270192146, -0.03644030541181564, -0.031706180423498154, -0.011928749270737171, -0.03292085602879524, 0.03631572425365448, -0.008775261230766773, 0.003980792127549648, -0.027999859303236008, -0.002425460610538721, 0.009873142465949059, 0.0157362949103117, 0.0022249610628932714, 0.019668420776724815, 0.000980598502792418, -0.011196829378604889, -0.014397035352885723, 0.023437034338712692, -0.007657914888113737, 0.030787386000156403, -0.0002518410619813949, -8.814437023829669e-05, 0.049832895398139954, -0.008315864950418472, 0.04970831423997879, -0.021506009623408318, -0.024075517430901527, 0.00023006349510978907, 0.010207957588136196, 0.0189676471054554, 0.018702909350395203, -0.01993315853178501, 0.02032247744500637, -0.006209646351635456, 0.024059945717453957, -0.09343668073415756, -0.016585011035203934, -0.0037744527217000723, 0.009258017875254154, 0.026613881811499596, -0.02849818766117096, 0.01293319370597601, 0.039772879332304, 0.015868663787841797, 0.041330158710479736, 0.00947603676468134, -0.025648368522524834, -0.020182322710752487, 0.01599324494600296, 0.018422599881887436, 0.016725165769457817, 0.049428004771471024, 0.018282443284988403, -0.026940910145640373, 0.027875276282429695, 0.012123409658670425, -0.00745936157181859, 0.017924269661307335, 0.018313590437173843, -0.00950718205422163, -0.013229076750576496, 0.017924269661307335, 0.03718779981136322, 0.029603855684399605, -0.008339223451912403, -0.021381426602602005, 0.01600881852209568, -0.007852574810385704, -0.0032547111622989178, 0.013143426738679409, 0.02726793847978115, -7.603896665386856e-05, 0.04541022703051567, 0.002754435408860445, -0.014342530630528927, -0.019325820729136467, 0.018033279106020927, -0.004952144343405962, 0.0015086131170392036, -0.018422599881887436, -0.014319171197712421, -0.013719619251787663, 0.020415915176272392, 0.0020614468958228827, 0.024900875985622406, -0.004500533454120159, -0.03169060871005058, -0.03964829817414284, 0.0354125015437603, -0.045534808188676834, 0.028653915971517563, -0.005037794355303049, -0.0387762226164341, 0.01428802590817213, -0.021957620978355408, 0.02465171180665493, -0.028638342395424843, 0.0008866752032190561, 0.01776854135096073, -0.010293607600033283, -0.008090059272944927, -0.01734807714819908, 0.055875133723020554, -0.01893649995326996, -0.030538221821188927, -0.012722961604595184, 0.026676172390580177, -0.00541543448343873, -0.009437104687094688, -0.0748739242553711, -6.444302471209085e-06, -0.012575020082294941, 0.047714997082948685, -0.02504103071987629, -0.005586734972894192, 0.010690713301301003, -0.017924269661307335, 0.004395417403429747, -0.016257982701063156, -0.0172857865691185, 0.03298315033316612, 0.02599097043275833, -0.0049326783046126366, -0.011298052035272121, -0.0025617224164307117, 0.01723906770348549, 0.01579858548939228, -0.012154554948210716, 0.008090059272944927, -0.0015154262073338032, 0.011811953969299793, -0.0024527129717171192, 0.05615544691681862, -0.002318397630006075, -0.016694020479917526, 0.0008672092226333916, 0.006260257679969072, 0.002997760195285082, -0.001693539903499186, -0.023421460762619972, 0.006524994969367981, 0.0276105385273695, -0.02071179822087288, 0.011251334100961685, 0.0050533670000731945, 0.025212330743670464, 0.006038345396518707, 0.012863116338849068, 0.015759654343128204, 0.03510104492306709, -0.01382084283977747, 0.026582736521959305, -0.0008978681289590895, 0.003420171793550253, 0.012839756906032562, 0.006295296363532543, 0.015245751477777958, -0.009989938698709011, 0.027766266837716103, 0.017176777124404907, -0.008362582884728909, -0.007646235171705484, 0.005096192471683025, 0.03491417318582535, 0.01098659634590149, -0.027532676234841347, 0.040831830352544785, 0.033076584339141846, -0.004449922125786543, 0.046905215829610825, -0.0051818424835801125, -0.029058808460831642, 0.003486356232315302, -0.04148588702082634, -0.0009158741449937224, 0.009187940508127213, 0.013501600362360477, 0.026489298790693283, 0.0048353481106460094, 0.0014472953043878078, -0.006022772751748562, 0.00012062821770086884, -0.012948766350746155, -0.04073839262127876, 0.023982081562280655, 0.023935362696647644, -0.016071109101176262, -0.010340326465666294, -0.02286084182560444, 0.040053192526102066, -0.04569053649902344, 0.028217878192663193, -0.0014210161752998829, -0.05578169971704483, 0.0501754991710186, 0.031020978465676308, -0.02208220213651657, -0.025212330743670464, -0.005855365190654993, 0.0005124417948536575, 0.010605063289403915, -0.023078860715031624, -0.0052713858895003796, 0.0052713858895003796, -0.033481478691101074, -0.010573917999863625, -0.015705149620771408, -0.07269373536109924, 0.01641371101140976, 0.05793074145913124, -0.060328949242830276, 0.046001993119716644, -0.006957139354199171, -0.004076175391674042, -0.029588282108306885, -0.023172296583652496, -0.0276884026825428, -0.043479204177856445, 0.007474934682250023, -0.04067610204219818, -0.047808434814214706, -0.0468117780983448, -0.032671693712472916, -0.007817535661160946, -0.017830833792686462, -0.004695193376392126, 0.01815786212682724, 0.017410367727279663, -0.024106664583086967, 0.008775261230766773, 0.002921842969954014, 0.02845146879553795, -0.009592832997441292, -0.041672758758068085, 0.007626769132912159, 0.000871102383825928, 0.005964374635368586, 0.046469178050756454, 0.0004418776370584965, 0.01769067905843258, -0.006314762402325869, -0.027735121548175812, 0.018251297995448112, 0.010597276501357555, 0.004263048525899649, -0.01730135828256607, -0.02416895516216755, -0.023219015449285507, -0.0020945388823747635, 0.006108423229306936, 0.03251596540212631, 0.010137880221009254, -0.031410299241542816, -0.006357587408274412, -0.004613436292856932, -0.04366607591509819, 0.016522720456123352, 0.0036634965799748898, 0.012754106894135475, -0.03292085602879524, -0.05142132192850113, 0.024900875985622406, 0.00658728601410985, -0.027392519637942314, 0.03494532033801079, 0.007439895533025265, -0.0031749005429446697, 0.0023281306494027376, 0.021397000178694725, 0.03159717097878456, 0.007887613028287888, -0.022611677646636963, -0.02035362459719181, -0.03587968647480011, -0.03332575038075447, -0.02848261594772339, 0.005065046716481447, -0.042171087116003036, -0.008121204562485218, -0.025336913764476776, -0.018734054639935493, -0.00594880199059844, -0.026520444080233574, 0.02078966237604618, -0.036502595990896225, -0.00014903637929819524, 0.0040800683200359344, -0.011157897301018238, -0.014077792875468731, 0.009616191498935223, -0.02719007432460785, -0.006451024208217859, 0.00126820825971663, 0.029043234884738922, -0.0035058220382779837, 0.020898671820759773, 0.014903150498867035, 0.03858935087919235, 0.012925407849252224, 0.04889852926135063, 0.009444891475141048, -0.002022514818236232, 0.026551591232419014, -0.03858935087919235, -0.015712935477495193, 0.04506762698292732, 0.042108796536922455, 0.012154554948210716, 0.02588196098804474, 0.009935433976352215, 0.008066699840128422, -0.008183496072888374, 0.021786319091916084, -0.005555589217692614, -0.007840895093977451, -0.025290194898843765, 0.06163706257939339, 0.014981014654040337, -0.017815260216593742, 0.008385942317545414, -0.008128991350531578, 0.023982081562280655, 0.013462668284773827, 0.01210005022585392, 0.02077408879995346, -0.009989938698709011, 0.002256106585264206, 0.014474899508059025, -0.0031554345041513443, -0.02591310627758503, -0.03721894323825836, -0.017861979082226753, 0.012154554948210716, 0.01684974879026413, 0.001677967025898397, 0.007256915792822838, 0.03687634319067001, -0.0543801486492157, 0.0002939362311735749, 0.0002250753459520638, -0.01125911995768547, 0.005298638250678778, 0.006205752957612276, 0.02553935907781124, -0.04871165752410889, -0.04220223426818848, 0.004029456991702318, 0.03207992762327194, 0.004473281092941761, -0.0015066665364429355, -0.029588282108306885, -0.011111178435385227, 0.019559411332011223, -0.005006649065762758, 0.01983972266316414, 0.013665114529430866, -0.009460464119911194, -0.010106734000146389, 0.04014662653207779, -0.013330300338566303, 0.016117827966809273, -0.016974329948425293, -0.0011319464538246393, 0.005843685939908028, -0.026489298790693283, -0.02077408879995346, -0.030398067086935043, 0.008557242341339588, -0.005458259489387274, 0.015502702444791794, 0.0002468528982717544, -0.02116340771317482, -1.1824059583886992e-05, 0.042980872094631195, -0.0017519377870485187, 0.05092298984527588, -0.009335882030427456, 0.0018794399220496416, 0.007058362476527691, -0.014646199531853199, -0.018048852682113647, -0.007073935586959124, -0.025835242122411728, -0.026925336569547653, -0.055532533675432205, 0.06191737577319145, -0.012255777604877949, 0.0030016533564776182, -0.00178211007732898, -0.02335917018353939, 0.019964303821325302, -0.01773739606142044, 0.03335689380764961, -0.002333970507606864, -0.03232908993959427, -0.0422956719994545, 0.027999859303236008, -0.018734054639935493, -0.0038639961276203394, 0.004847027827054262, 0.02550821378827095, -0.0012769679306074977, 0.0086818253621459, 0.04226452484726906, -0.0023437035270035267, -0.002460499294102192, -0.02591310627758503, -0.012053332291543484, -0.0038114378694444895, -0.029681719839572906, -0.007953797467052937, -0.004683513659983873, -0.01859389990568161, 0.024449264630675316, -0.021350281313061714, -0.012878688983619213, 0.0027622219640761614, -0.023265734314918518, 0.03369949758052826, 0.029697291553020477, -0.01901436410844326, -0.005189628805965185, 0.009888715110719204, -0.008378155529499054, -0.002104271901771426, -0.03700092434883118, 0.0311299879103899, -0.00786814745515585, 0.005201308522373438, -0.012645097449421883, 0.04793301597237587, -0.03019562177360058, 0.0037919720634818077, -0.009359240531921387, 0.021506009623408318, -0.03547479212284088, 0.014786355197429657, -0.00011126021854579449, -0.000608798349276185, 0.01209226343780756, -0.02200433798134327, -0.0022658396046608686, -0.030413640663027763, -0.02680075541138649, 0.0029938670340925455, -0.02284526824951172, 0.013914278708398342, 0.008767475374042988, 0.01991758681833744, 0.0010307234479114413, 0.009600618854165077, -0.01274632103741169, -0.009732987731695175, -0.02078966237604618, 0.0297907292842865, 0.04889852926135063, 0.0033014293294399977, 0.032671693712472916, 0.00046110028051771224, 0.010745218023657799, 0.0424514003098011, 0.006077277474105358, 0.015860876068472862, -0.046469178050756454, -0.029697291553020477, 0.02423124574124813, -0.03802872821688652, 0.006018879357725382, -0.002318397630006075, -0.000310725619783625, 0.04706094041466713, -0.012022186070680618, -0.02719007432460785, 0.01273074746131897, 0.024480409920215607, 0.008253573440015316, 0.03156602382659912, -0.011601720936596394, 0.015144528821110725, -0.027719547972083092, 0.01516788825392723, 0.014062220230698586, 0.012699602171778679, 0.006493849214166403, 0.01357946451753378, 0.020914243534207344, 0.019356966018676758, -0.00746325496584177, -0.014661772176623344, -0.039554860442876816, 0.03815331310033798, -0.014467112720012665, 0.024729574099183083, -0.004037243314087391, 0.040364645421504974, 0.022144492715597153, 0.008969921618700027, 0.0167874563485384, 0.00776692433282733, 0.03980402648448944, -0.021412573754787445, 0.02124127186834812, 0.023608334362506866, 0.006676829420030117, 0.002398208249360323, 0.036938633769750595, -0.040022045373916626, 0.04547251760959625, -0.0246672835201025, 0.012154554948210716, -0.004519999492913485, -0.022782977670431137, 0.008043341338634491, -0.008720756508409977, -0.0019154519541189075, -0.0041501461528241634, -0.010846441611647606, -0.010301394388079643, -0.017970988526940346, 0.003618724877014756, -0.008969921618700027, -0.006260257679969072, 0.021786319091916084, -0.01725464127957821, -0.010807509534060955, 0.0009518861770629883, 0.025414777919650078, -0.0021743495017290115, 0.03628457710146904, -0.015237965621054173, 0.00932030938565731, -0.030148902907967567, 0.0018122822511941195, 0.04148588702082634, 0.012271351180970669, 0.0009022479644045234, 0.009803065098822117, 0.014669558964669704, 0.03796643763780594, 0.001908638863824308, -0.00930473580956459, 0.006844236981123686, 0.00658728601410985, -0.004041136242449284, 0.008362582884728909, 0.036066558212041855, -0.004372057970613241, 0.0034026524517685175, 0.000265953887719661, -0.0017022995743900537, -0.005602307617664337, 0.02251823991537094, 0.003846476785838604, 0.020197896286845207, 0.01985529437661171, 0.016148973256349564, -0.001152385724708438, 0.021365854889154434, 0.00840930175036192, -0.0006749826716259122, 0.011399274691939354, 0.005742462817579508, 0.011726303957402706, -0.0011952108470723033, -0.0050572603940963745, -0.03369949758052826, -0.05107871815562248, -0.03363720700144768, -0.0035739531740546227, -0.009351454675197601, -0.0060928501188755035, 0.001832721522077918, 0.03463386371731758, -0.04326118528842926, 0.005761928856372833, -0.008899844251573086, 0.01733250357210636, -0.015790799632668495, 0.030880823731422424, 0.005092299077659845, -0.017036622390151024, 0.0035058220382779837, -0.034384697675704956, 0.0219887662678957, -0.007245236076414585, -0.019574984908103943, -0.03883851319551468, 0.017394796013832092, -0.03575510159134865, 0.024091091006994247, -4.78437177662272e-05, -0.027517102658748627, -0.027361374348402023, 0.0025539358612149954, -0.004897639155387878, 0.013003271073102951, 0.00018626505334395915, -0.008954348973929882, 0.009429318830370903, 0.016507146880030632, 0.00995879340916872, -0.009024426341056824, 0.025617223232984543, -0.011998827569186687, 0.035256773233413696, -0.004850921221077442, 0.022300221025943756, -0.028622770681977272, -0.018718481063842773, -0.026131125167012215, 0.022658394649624825, 0.009008853696286678, 0.006711868103593588, 0.010028870776295662, 0.008378155529499054, 0.041703905910253525, -0.01596209965646267, -0.009226872585713863, 0.007840895093977451, 0.00928137730807066, 0.008533883839845657, -0.01723906770348549, 0.012442651204764843, 0.04027121141552925, -0.010278034955263138, 0.019170092418789864, -0.009841997176408768, 0.036066558212041855, 0.00864289328455925, -0.005578948650509119, -0.008456019684672356, 0.03335689380764961, -0.0015582513296976686, -0.012388146482408047, -0.009187940508127213, 0.015549421310424805, -0.025695087388157845, 0.046001993119716644, 0.026458153501152992, -0.01818900741636753, 0.01779968850314617, 0.031846337020397186, 0.005839792545884848, -0.016569437459111214, 0.03883851319551468, -0.02591310627758503, 0.00866625178605318, 0.006419878453016281, -0.02588196098804474, 0.014817500486969948, 0.021677309647202492, 0.03587968647480011, 0.02111669071018696, 0.04248254373669624, 0.004473281092941761, 0.04154817759990692, -0.02035362459719181, 0.0053414637222886086, 0.04226452484726906, -0.016771884635090828, -0.049085404723882675, 0.009242445230484009, -0.0002118141419487074, -0.026536017656326294, -0.023499324917793274, -0.031192278489470482, -0.025352485477924347, -0.0028303528670221567, -0.030164474621415138, 0.027003200724720955, -0.03061608597636223, 0.04357263818383217, 0.004025563597679138, 0.004671833943575621, 0.01775296963751316, 0.019325820729136467, -0.008603961206972599, 0.0027252365835011005, 0.039928607642650604, -0.0020556070376187563, -0.044725023210048676, 0.0031359686981886625, 0.010137880221009254, -0.0016614210326224566, 0.010301394388079643, 0.015043306164443493, -0.026613881811499596, 0.04154817759990692, 0.04182848706841469, 0.002563668880611658, -0.0203069057315588, 0.007101187948137522, -0.01820458099246025, -0.027392519637942314, 0.007634555455297232, -0.0022872521076351404, -0.026972055435180664, -0.0007465201779268682, 0.023592762649059296, -0.009413745254278183, -0.022362511605024338, 0.004819775465875864, 0.0008477432420477271, 0.01488757785409689, 0.01316678524017334, -0.0035058220382779837, 0.01638256572186947, 0.020104458555579185, 0.0117029445245862, 0.01166401244699955, -0.00022020885080564767, 0.008923202753067017, 0.005380395799875259, 0.004722445737570524, -0.024013226851820946, -0.013361445628106594, -0.02242480404675007, -0.021692883223295212, 0.043790657073259354, 0.002935469150543213, 0.02423124574124813, -0.014661772176623344, -0.012279137037694454, -0.031285714358091354, 0.036066558212041855, -0.027330229058861732, -0.062384556978940964, -0.024013226851820946, 0.005306425038725138, -0.00887648481875658, -0.004730232059955597, 0.0051234448328614235, 0.026208989322185516, 0.029697291553020477, 0.04024006426334381, 0.030491502955555916, -0.008720756508409977, 0.021895328536629677, -0.04030235484242439, -0.02859162539243698, 0.022720687091350555, -0.008362582884728909, 0.0004839728062506765, -0.007747458294034004, 0.011080033145844936, 0.010293607600033283, 0.012839756906032562, -0.02337474375963211, -0.0032138326205313206, -0.030351348221302032, -0.023623907938599586, -0.013026630505919456, 0.0021957620047032833, 0.021879756823182106, 0.002092592418193817, 0.00692599406465888, 0.00021887055481784046, 0.022658394649624825, 0.017830833792686462, -0.004691299982368946, -0.01584530435502529, 0.0004214383661746979, -0.0008151376969181001, -0.039087679237127304, 0.013742978684604168, 0.002308664610609412, 0.0028031005058437586, -0.019325820729136467, 0.006190180312842131, -0.029993174597620964, 0.005294745322316885, 0.0017918429803103209, -0.022393658757209778, 0.007085614837706089, 0.0043603782542049885, -0.001821042038500309, 0.02119455300271511, 0.0028537120670080185, -0.026240134611725807, 0.004247475881129503, -0.020836379379034042, -0.0001686240138951689, -0.025336913764476776, 0.005100085400044918, 0.0015971832908689976, -0.0038698359858244658, -0.03385522589087486, -0.031005404889583588, 0.017161203548312187, 0.03700092434883118, -0.07194624841213226, 0.02111669071018696, 0.0173636507242918, 0.014661772176623344, -0.0019680100958794355, 0.030802959576249123, 0.012793038971722126, -0.020945388823747635, -0.019528266042470932, 0.031316861510276794, 0.02420010045170784, 0.012800825759768486, -0.0033890262711793184, -0.013120067305862904, 0.0066340044140815735, 0.0074515752494335175, 0.010737432166934013, 0.033979807049036026, 0.003369560232385993, 0.004282514564692974, 0.013548319227993488, -0.0021217912435531616, -0.01230249647051096, -0.021817464381456375, 0.024869730696082115, 0.0038289574440568686, 0.008370369672775269, 0.015004374086856842, 0.005894297268241644, 0.008105631917715073, 0.005730783101171255, -0.026691745966672897, -0.020960962399840355, -0.006264151073992252, -0.026707317680120468, -0.01982414908707142, -0.020618360489606857, 0.025274623185396194, -0.019185665994882584, -0.0023359169717878103, -0.008113418705761433, -0.012831971049308777, 0.02117898128926754, -0.006123995874077082, 0.009195726364850998, 0.0013752711238339543, 0.02468285709619522, 0.016180118545889854, -0.00022848189109936357, 0.0076073030941188335, -0.008097846060991287, -0.014303598552942276, -0.009219085797667503, 0.013447095640003681, -0.008728543296456337, 0.004523892886936665, 0.00678973225876689, -0.02077408879995346, 0.009530541487038136, 0.002203548327088356, -0.007844788022339344, -0.012240204960107803, -0.0005577001720666885, -0.009608405642211437, 0.0019212918123230338, 0.0010278035188093781, 0.017067767679691315, -0.007837001234292984, 0.01166401244699955, -0.017581669613718987, 0.005867044907063246, -0.021397000178694725, -0.012193487025797367, -0.039554860442876816, 0.01647600159049034, 0.0071050808764994144, 0.0014336691237986088, -0.025181185454130173, -0.01101774163544178, -0.01644485630095005, -0.005446579772979021, -0.014591694809496403, 0.04593970254063606, -0.035692811012268066, -0.00038323638727888465, 0.012240204960107803, -0.019325820729136467, -0.011874244548380375, -0.003435744671151042, -0.013633969239890575, -0.010955451056361198, -0.026645027101039886, -0.03019562177360058, 0.020883098244667053, -0.03584853932261467, -0.010215743444859982, 0.005022221710532904, -0.026286853477358818, 0.04871165752410889, 0.030039893463253975, 0.032142218202352524, -0.02203548327088356, -0.02891865372657776, 0.004091748036444187, 0.008035554550588131, -0.018453745171427727, -0.042139943689107895, 0.011383702047169209, -0.021054398268461227, -0.011336984112858772, 0.006474383175373077, 0.007237449754029512, -0.028171159327030182, 0.008276932872831821, 0.04095641151070595, -0.019746284931898117, -0.023623907938599586, 0.02027576044201851, -0.01814228855073452, -0.017830833792686462, -0.012613952159881592, -0.008572815917432308, -0.005870938301086426, 0.028280168771743774, 0.006614538375288248, -0.007794176694005728, -0.013361445628106594, 0.016164544969797134, -0.003618724877014756, 0.011586148291826248, -0.026255708187818527, 0.019606130197644234, -0.05824219807982445, -0.029183389618992805, -0.013914278708398342, 0.024745147675275803, -0.0011066406732425094, 0.009141221642494202, 0.013470455072820187, 0.02463613823056221, -0.02591310627758503, 0.006949353031814098, 0.011531643569469452, -0.02328130602836609, 0.019279101863503456, 0.007120653986930847, -0.010060016065835953, 0.016226837411522865, -0.019543839618563652, -0.001256528659723699, 0.008658465929329395, 0.005450473167002201, -0.008284718729555607, 0.01487979106605053, 0.016242409124970436, -0.019294675439596176, -0.024698428809642792, 0.025134466588497162, -0.009374814108014107, 0.0027485957834869623, -0.007770817261189222, -0.04319889098405838, 0.002729129744693637, 0.032142218202352524, 0.003928233869373798, -0.013088922016322613, 0.010480481199920177, 0.010503840632736683, 0.011477138847112656, -0.005442686844617128, 0.01898321881890297, -0.01034811232239008, 0.005446579772979021, 0.030413640663027763, 0.005290851928293705, -0.014186803251504898, 0.003819224424660206, -0.030039893463253975, 0.004815882071852684, -0.023623907938599586, -0.01893649995326996, 0.006014986429363489, -0.0024196207523345947, 0.0028439790476113558, 0.005240240599960089, -0.02543034963309765, -0.00947603676468134, -0.0031203958205878735, 0.01276967953890562, -0.0094838235527277, 0.005220774561166763, 0.009764133021235466, 0.0406138114631176, 0.02848261594772339, 0.0021840825211256742, 0.013135639950633049, -0.007634555455297232, 0.014677345752716064, 0.02762611210346222, 0.029572710394859314, 0.03144144266843796, -0.003036692040041089, 0.010363684967160225, -0.017067767679691315, 0.0026045474223792553, 0.048213329166173935, -0.0006399439298547804, 0.011811953969299793, 0.010028870776295662, 0.005742462817579508, 0.0034435309935361147, -0.015346975065767765, -0.023701772093772888, 4.045272817165824e-06, 0.01062842272222042, -0.006929886993020773, -0.006665150169283152, -0.025212330743670464, -0.007007751148194075, -0.018002133816480637, 0.0022755726240575314, 0.013968783430755138, 0.03980402648448944, -0.0026609988417476416, 0.031379152089357376, -0.0011076140217483044, -0.016335846856236458, 0.06553026288747787, -0.017955414950847626, -0.010176812298595905, -0.013081135228276253, -0.0043681650422513485, 0.004959930665791035, -0.013735191896557808, 0.007432109210640192, -0.03382407873868942, -0.008814193308353424, 0.001395710394717753, 0.013509387150406837, 0.010776364244520664, -0.02374848909676075, -0.01189760398119688, -0.026458153501152992, 0.0005932255880907178, -0.030849678441882133, 0.00931252259761095, -0.028264597058296204, 0.00995100662112236, -0.0219887662678957, -0.009647337719798088, -0.03323231264948845, 0.005380395799875259, 0.0018891729414463043, 0.01692761294543743, -0.013081135228276253, -0.021397000178694725, -0.00766180781647563, 0.007369818165898323, -0.023623907938599586, 0.001052135950885713, 0.007280274759978056, 0.019699567928910255, -0.012022186070680618, -0.009686268866062164, -0.009125648997724056, 0.001192291034385562, -0.00974077358841896, 0.009156795218586922, 0.03385522589087486, -0.01599324494600296, 0.029603855684399605, -0.027517102658748627, 0.023421460762619972, -0.001078415079973638, 0.00025427431683056056, 0.0009752453770488501, -0.021895328536629677, 0.014124511741101742, -0.011344769969582558, -0.012357001192867756, 0.011648439802229404, -0.006482169963419437, 0.002651265822350979, -0.002629853319376707, 0.009795278310775757, 0.010239102877676487, -0.014529404230415821, -0.015113383531570435, -0.023608334362506866, -0.0014862272655591369, -0.003702428424730897, -0.01809557154774666, -0.02289198711514473, 0.0024546594358980656, 0.011368129402399063, -0.019170092418789864, 0.0003593905712477863, -0.0028128335252404213, 0.0034921958576887846, -0.00884533952921629, 0.006544461008161306, -0.010052229277789593, 0.003830903908237815, 0.008417087607085705, -0.012450437992811203, -0.02511889487504959, 0.009655123576521873, -0.007182945031672716, -0.008541669696569443, -0.006213539279997349, 0.020556069910526276, -5.672506813425571e-05, 0.0016127560520544648, 0.016148973256349564, -0.002166562946513295, 0.020447060465812683, 0.002448819577693939, -0.0006452970555983484, -0.016522720456123352, -0.01018459815531969, 0.012076690793037415, 0.01234142854809761, 0.019761858507990837, 0.01277746632695198, -0.009616191498935223, 0.012403719127178192, 0.012364787049591541, 0.0037705593276768923, 0.04836905375123024, 0.03276513144373894, -1.3101514014124405e-05, -0.011516070924699306, -0.02547706849873066, -0.0037374673411250114, 0.009585046209394932, 0.031799618154764175, -0.00204976717941463, 0.005438793450593948, -0.02723679319024086, -0.0008506631129421294, 0.022222356870770454, -0.014225734397768974, 0.006240791641175747, 0.008152350783348083, -0.0004727798805106431, -0.004247475881129503, 0.0016516880132257938, -0.01532361563295126, 0.020509351044893265, -0.005578948650509119, 0.014132298529148102, -0.002474125474691391, 0.031270142644643784, -0.0250877495855093, -0.009343667887151241, -0.0004849460965488106, 0.014264666475355625, 0.02764168567955494, 0.014108939096331596, -0.08016867190599442, -0.008347010239958763, 0.0053414637222886086, -0.010908732190728188, 0.008720756508409977, -0.014311385340988636, -0.02292313240468502, 0.004056709352880716, -0.007747458294034004, 0.03600426763296127, 0.009156795218586922, 0.05216881260275841, 0.010893159545958042, -0.0069182077422738075, -0.009701842442154884, -0.0012234365567564964, -0.003100929781794548, 0.03401095047593117, 0.018920928239822388, -0.013719619251787663, -0.02424681931734085, -0.007019430864602327, 0.012785252183675766, 0.010418189689517021, 0.008074486628174782, -0.00786036066710949, 0.01688089407980442, -0.0010939878411591053, 0.0023495431523770094, -0.006081170868128538, -0.00473412498831749, 0.005559482611715794, -0.0017490178579464555, 0.013057775795459747, 0.008128991350531578, 8.552862709620968e-05, -0.021334709599614143, 0.026286853477358818, -0.007182945031672716, -0.0038036515470594168, 0.0006053918041288853, 0.004512213170528412, -0.0108230821788311, -0.01143042091280222, 0.0038484232500195503, -0.004901532549411058, 0.003980792127549648, 0.018780773505568504, 0.012824184261262417, 0.0026045474223792553, -0.013190144672989845, -0.010098948143422604, -0.006669043097645044, -0.002600654261186719, 0.004761377349495888, -0.013470455072820187, 0.023639479652047157, 0.009639550931751728, 0.008074486628174782, 0.010527199134230614, -0.019107801839709282, 0.046905215829610825, -0.02251823991537094, -0.008494951762259007, -0.002283358946442604, 0.014038861729204655, -0.024527128785848618, 0.024044372141361237, -0.03067837655544281, -0.00928137730807066, -0.0035544871352612972, 0.009133435785770416, 0.0029919203370809555, 0.00041535525815561414, -0.015463770367205143, -0.025788523256778717, -0.023094432428479195, -0.0022716792300343513, -0.0003112122940365225, -0.01823572628200054, 0.019559411332011223, 0.0059449090622365475, -0.007432109210640192, 0.006135675590485334, 0.008580601774156094, -0.01210783701390028, -0.006653470452874899, -0.007934331893920898, 0.003373453626409173, 0.019886439666152, -0.022237930446863174, -0.020462634041905403, -0.04718552529811859, 0.0018599738832563162, -0.012473797425627708, 0.02155272848904133, 0.002705770544707775, -0.05842906981706619, -0.014179016463458538, 0.01297991257160902, -0.0023865285329520702, 0.018266871571540833, -0.0049910759553313255, -0.03675176203250885, 0.06182393804192543, 0.002616227138787508, -0.017036622390151024, -0.001257502008229494, -0.00014526484301313758, -0.01166401244699955, -0.00200110231526196, -0.023141151294112206, 0.0030717309564352036, 0.017176777124404907, 0.01940368488430977, 0.005765821784734726, -0.012684029527008533, 0.021848611533641815, -0.001794762909412384, 0.000506601994857192, 0.031815189868211746, 0.019886439666152, -0.01035589911043644, 0.00011624836770351976, 0.020633934065699577, 0.007603410165756941, 0.006945460103452206, 0.0004477174370549619, 0.024885302409529686, 0.02250266820192337, 0.019170092418789864, -0.00823800079524517, -0.015744080767035484, -0.02594425156712532, -0.007537225726991892, 0.005832006223499775, 0.023623907938599586, -0.0006886088522151113, 0.00904778577387333, 0.01946597546339035, -0.014973227865993977, 0.024807438254356384, -0.023935362696647644, 0.015105596743524075, -0.0026240134611725807, -0.02543034963309765, 0.00243714009411633, -0.03295200318098068, 3.05220419249963e-05, -0.00789150595664978, 0.010161238722503185, -0.0029646679759025574, -0.005789181217551231, 0.014638413675129414, 0.016709594056010246, -0.03226679936051369, -0.019559411332011223, -0.038184456527233124, 0.012917621061205864, -0.02111669071018696, 0.0013976569753140211, -0.014186803251504898, -0.002861498389393091, -0.019761858507990837, -0.009180153720080853, 0.015510489232838154, 0.01902993768453598, 0.011407061479985714, 0.003447424154728651, -0.024511555209755898, 0.02504103071987629, -0.049521442502737045, -0.011555003002285957, -0.002919896272942424, -0.0009557793964631855, -0.004718552343547344, 0.016226837411522865, -0.009289163164794445, 0.036969780921936035, 0.027937566861510277, 0.028638342395424843, 0.008152350783348083, -0.039959754794836044, -0.013517173007130623, 0.013392590917646885, -0.004885959904640913, -0.014132298529148102, -0.03376178815960884, -0.011407061479985714, 0.005006649065762758, 0.015206820331513882, -0.005360929761081934, -0.008066699840128422, -0.019995449110865593, -0.010869801044464111, -0.004119000397622585, -0.03148816153407097, -0.007070042192935944, 0.013976570218801498, -0.016086682677268982, 0.00722187664359808, 0.01273074746131897, -0.009398172609508038, 0.013361445628106594, 0.017472660169005394, -0.025259049609303474, 0.009328095242381096, 0.034571573138237, -0.025695087388157845, 0.012123409658670425, -0.019730713218450546, -0.007961584255099297, -0.022144492715597153, -0.03500761091709137, -0.01822015270590782, 0.003591472515836358, -0.02203548327088356, 0.004484960809350014, -0.01636699214577675, 0.022767404094338417, -0.00605391850695014, 0.005917656701058149, 0.015346975065767765, 0.0016312487423419952, -0.018438171595335007, 0.014544976875185966, -0.017955414950847626, 0.027345802634954453, -0.005384288728237152, 0.001215650117956102, 0.003832850605249405, -0.015627285465598106, 0.03251596540212631, -0.006108423229306936, 0.004543358460068703, -0.012177914381027222, 0.013361445628106594, -0.022269075736403465, 0.012754106894135475, 0.037405818700790405, -0.018827490508556366, -0.005267492961138487, -0.020197896286845207, 0.02851376123726368, -0.023063287138938904, -0.017815260216593742, -0.006711868103593588, 0.015409265644848347, -0.020976534113287926, 0.0012331695761531591, -0.00904778577387333, -0.004687407054007053, -0.01469291839748621, 0.018298016861081123, -0.020540496334433556, -0.012761893682181835, 0.016553865745663643, 0.03229794651269913, 0.006770266219973564, 0.023250160738825798, -0.012878688983619213, -0.0021237379405647516, 0.02250266820192337, 0.009219085797667503, 0.0250877495855093, -0.01779968850314617, 0.0049287849105894566, 0.008090059272944927, -0.01125911995768547, -0.002869284711778164, -0.02377963624894619, 0.010947664268314838, 0.00844044703990221, 0.019356966018676758, -0.013439309783279896, -0.01638256572186947, -0.01340816356241703, 0.011041101068258286, -0.013493814505636692, 0.005380395799875259, 0.01512895617634058, 0.013789696618914604, -0.007295847404748201, -0.004827561788260937, -0.0005722997011616826, -0.006645684130489826, -0.0040800683200359344, -0.023686198517680168, -0.008385942317545414, -0.006073384080082178, -0.0036946421023458242, -0.037810709327459335, -0.0035544871352612972, -0.015315829776227474, -0.014576122164726257, -0.007151799276471138, -0.00974856037646532, 0.012209059670567513, 0.01596209965646267, -0.003383186412975192, -0.0020069419406354427, -0.011111178435385227, 0.0065055289305746555, -0.005668492056429386, 0.0045861839316785336, 0.005049474071711302, 0.005286958999931812, 0.011375916190445423, -0.0035797927994281054, -0.0035077687352895737, 0.00033311150036752224, -0.00443434901535511, -0.0026687851641327143, -0.008954348973929882, -0.0063498010858893394, -0.011375916190445423, -0.008892057463526726, 0.003215779084712267, 0.055065352469682693, 0.009335882030427456, 0.00974856037646532, -0.008533883839845657, -0.0038133845664560795, -0.02845146879553795, -0.005080619361251593, 0.010005511343479156, 0.02553935907781124, 0.009686268866062164, -0.006598965730518103, -0.013081135228276253, 0.015027732588350773, -0.0021724028047174215, -0.02337474375963211, 0.032142218202352524, 0.011142324656248093, 0.026442579925060272, -0.022611677646636963, 0.014077792875468731, -0.00995879340916872, -0.0010920412605628371, -0.017550522461533546, 0.019123373553156853, -0.007910972461104393, 0.03162831813097, -0.014739636331796646, 0.010262462310492992, 0.012637311592698097, 0.01555720716714859, 0.002028354676440358, -0.01769067905843258, -0.00014453486073762178, -0.008113418705761433, 0.0051857358776032925, 0.00991207454353571, -0.0016088628908619285, 0.0012419292470440269, -0.008066699840128422, -0.0052519203163683414, 0.00820685550570488, 0.008985494263470173, 0.000692015397362411, 0.011726303957402706, -0.005664598662406206, -0.010363684967160225, -0.011617294512689114, -0.0011046940926462412, -0.0016361152520403266, -0.015487129800021648, -0.0077980696223676205, 0.0006044185138307512, 0.008471592329442501, 0.023110006004571915, 0.006894848309457302, 0.003591472515836358, 0.01723906770348549, -0.0020575535017997026, 0.003885408630594611, 0.0012068904470652342, -0.02595982514321804, 0.00668850913643837, -0.01445932686328888, -0.022331366315484047, -0.01681860350072384, -0.017145631834864616, -0.006890955381095409, -0.017519377171993256, 0.00605391850695014, -0.008222428150475025, -0.00991207454353571, 0.003747200360521674, 0.002320344327017665, -0.020836379379034042, 0.002156830159947276, 0.015378120355308056, -0.006392626091837883, 0.01945040188729763, 0.009896501898765564, 0.006412092130631208, 0.005968268029391766, -0.001229276298545301, -0.01807999797165394, -0.004893746227025986, 0.010130093432962894, 0.010885373689234257, 0.022191211581230164, -0.017550522461533546, -0.004041136242449284, -0.025321340188384056, -0.02812444046139717, -0.0018132555996999145, -0.008362582884728909, 0.012676242738962173, 0.02113226242363453, -0.0017548577161505818, -0.009997724555432796, 0.014708491042256355, 0.02678518183529377, -0.009725200943648815, -0.002602600958198309, 0.030584940686821938, -0.008985494263470173, 0.003879568772390485, 0.005384288728237152, -0.01597767323255539, 0.018360307440161705, 0.0015290523879230022, -0.038651641458272934, 0.0071050808764994144, -0.006641790736466646, -0.02153715491294861, 0.00043019806616939604, 0.0013450989499688148, -0.018780773505568504, 0.0070427898317575455, 0.027937566861510277, -0.00887648481875658, -0.021677309647202492, -0.010503840632736683, -0.0013830575626343489, 0.02382635325193405, 0.00595269538462162, -0.005427113734185696, 0.009771919809281826, -0.010869801044464111, -0.0012253831373527646, -0.013696259818971157, -0.008860912173986435, -0.002063393360003829, 0.005863151978701353, 0.015541634522378445, 0.012909835204482079, 0.014467112720012665, 0.024028800427913666, -0.0006117182783782482, -0.014638413675129414, -0.023421460762619972, 0.023219015449285507, -0.017861979082226753, 0.018780773505568504, 0.008113418705761433, 0.0060033067129552364, 0.012084477581083775, 0.008300292305648327, 0.032204508781433105, -0.007471041288226843, -0.020540496334433556, -0.010877586901187897, 0.00409953435882926, 0.018827490508556366, -0.0276105385273695, -0.0007557664648629725, -0.011539430357515812, -0.0065094223245978355, -0.0005868991720490158, -0.047372397035360336, 0.04207765311002731, -0.017846405506134033, -0.010324752889573574, 0.0032371915876865387, 0.0007538198842667043, -0.006871489342302084, -0.01146935299038887, 0.0101534528657794, 0.014428180642426014, 0.018734054639935493, 0.039554860442876816, 0.012286923825740814, -0.010768577456474304, -0.006513315252959728, 0.0073931775987148285, 0.00678973225876689, -0.03637801483273506, 0.006988285109400749, -0.009849783964455128, -0.00786814745515585, 0.0009222005610354245, -0.02729908376932144, 0.010363684967160225, -0.00745936157181859, -0.006754693575203419, 0.017052194103598595, 0.0009426398319192231, -0.0008749956032261252, -0.01684974879026413, -0.006229111924767494, 0.0018229886190965772, -0.00410342775285244, 0.004667941015213728, -0.009927647188305855, 0.019170092418789864, 0.0022093881852924824, -0.0009737854124978185, -0.020633934065699577, -0.009429318830370903, 0.03067837655544281, 0.02293870598077774, 0.019995449110865593, -0.0001481847430113703, 0.0033384147100150585, -0.00011922910198336467, -0.003536967793479562, 0.005843685939908028, -0.025741806253790855, -0.005964374635368586, -0.016631729900836945, -0.017908697947859764, -0.0094838235527277, 0.0073853908106684685, -0.046095430850982666, -0.03743696212768555, 0.007050576154142618, 0.00050027557881549, -0.013447095640003681, 0.002629853319376707, 0.017145631834864616, -0.004305873531848192, 0.023623907938599586, -0.010363684967160225, 0.011601720936596394, 0.012240204960107803, 0.037405818700790405, -0.002320344327017665, -0.028653915971517563, -0.0033500944264233112, -0.004761377349495888, 0.013221289962530136, 0.021350281313061714, 0.005567268934100866, 0.024106664583086967, -0.019107801839709282, -0.011679585091769695, 0.0155260618776083, -0.000814164406619966, 0.014903150498867035, 0.012925407849252224, -0.0014550816267728806, 0.02901208959519863, -0.016242409124970436, -0.013104494661092758, 0.0027388627640902996, -0.0055984146893024445, -0.013898706063628197, 0.0072024110704660416, -0.011477138847112656, -0.008814193308353424, 0.0008462832774966955, -0.01083086896687746, -2.834732731571421e-05, -0.008183496072888374, -0.009787492454051971, 0.004119000397622585, 0.01857832632958889, 0.00756447808817029, -0.005357036367058754, -0.016180118545889854, 0.0061473548412323, 0.005976054351776838, -0.0036342975217849016, 0.014739636331796646, 0.010612850077450275, -0.023110006004571915, 0.001691593206487596, 0.005730783101171255, 0.0203069057315588, -0.016538292169570923, -0.0022736259270459414, 0.014677345752716064, 0.006011093035340309, 0.007288061082363129, 0.010729645378887653, 0.01169515773653984, 0.006575606297701597, -0.0029724545311182737, 0.0019923425279557705, 0.005695744417607784, -0.034571573138237, 0.010566131211817265, 0.015199033543467522, 0.001795736257918179, 0.009343667887151241, 0.015712935477495193, -0.004165718797594309, -0.0023904216941446066, -0.01951269432902336, -0.0014414554461836815, 0.014264666475355625, -0.014599481597542763, 0.005018328316509724, 0.007073935586959124, -0.025290194898843765, 0.008144563995301723, 0.002219121204689145, -0.0027992073446512222, 0.004037243314087391, -0.0051234448328614235, 0.017130058258771896, 0.013626182451844215, 0.0007533332682214677, -0.0014044700656086206, -0.002719396725296974, -0.006645684130489826, -0.01820458099246025, 0.009125648997724056, 0.004940464626997709, 0.01638256572186947, 0.018360307440161705, -0.003272230504080653, 0.005388182122260332, 0.023250160738825798, -0.0035797927994281054, -0.008946562185883522, 0.001385004143230617, -0.016335846856236458, -0.0110333152115345, 8.771855209488422e-05, 0.009234658442437649, -0.02117898128926754, 0.008705183863639832, 0.006077277474105358, 0.0023573297075927258, -0.017021048814058304, 0.015790799632668495, -0.008751902729272842, 0.012528302147984505, 0.009016639553010464, 0.006178500596433878, 0.0044265626929700375, -0.042980872094631195, 0.006014986429363489, -0.0062252189964056015, -0.008915416896343231, -0.014770781621336937, 0.006649577058851719, 0.018329162150621414, -0.00746325496584177, -0.008549456484615803, -0.011445993557572365, 0.0017587508773431182, -0.010869801044464111, -0.008144563995301723, -0.007186837960034609, 0.0029705078341066837, 0.01733250357210636, 0.015276897698640823, 0.02286084182560444, -0.0077357785776257515, 0.027984285727143288, 0.015440411865711212, 0.006579499691724777, -0.006392626091837883, 0.022237930446863174, 0.014326957985758781, -0.013680687174201012, -0.01210005022585392, 0.00409953435882926, 0.008938775397837162, -0.022237930446863174, 0.0057502491399645805, -0.017877550795674324, 0.01647600159049034, -0.021506009623408318, -0.005306425038725138, 0.0009674589964561164, 0.009771919809281826, -0.01083086896687746, 0.01902993768453598, -0.012263564392924309, -0.00025768086197786033, 0.0006306975847110152, -0.023857498541474342, -0.019341392442584038, -0.009296949952840805, -0.020104458555579185, -0.002205495024099946, -0.017846405506134033, 0.0003192419826518744, -0.010597276501357555, -0.007587837055325508, 0.05282286927103996, 0.0019670368637889624, -0.0052519203163683414, -0.00776303093880415, 0.011843099258840084, 0.008152350783348083, 0.010005511343479156, 0.0005455339560285211, -0.0011952108470723033, -0.0045861839316785336, -0.017130058258771896, 0.002166562946513295, -0.00736592523753643, 0.00884533952921629, 0.0010910679120570421, 0.012870903126895428, -0.03198648989200592, 0.02111669071018696, -0.004683513659983873, -0.005999413784593344, -0.0002220337773906067, -0.011243547312915325, 0.015580566599965096, 0.01727021299302578, 0.00946824997663498, -0.027003200724720955, 0.003295589704066515, 0.020104458555579185, 0.0216461643576622, -0.006556140258908272, 0.00531421136111021, 0.0066340044140815735, -0.012115622870624065, 0.005540016572922468, 0.009810851886868477, -0.027953140437602997, 0.01602439023554325, -0.014591694809496403, -0.002949095331132412, -0.001819095341488719, 0.01691203936934471, -0.0058787246234714985, 0.014194589108228683, 0.006233005318790674, 0.01209226343780756, -0.018375881016254425, 0.009203513152897358, 0.0013051936402916908, -0.010566131211817265, 0.010060016065835953, -0.017519377171993256, 0.004523892886936665, 0.009732987731695175, 0.004056709352880716, -0.031285714358091354, -0.007587837055325508, 0.02376406267285347, -0.030366921797394753, -0.003809491405263543, 0.02331245131790638, -0.029230108484625816, -0.017955414950847626, -0.01058170385658741, -0.00904778577387333, 0.018811918795108795, 0.013602823950350285, 0.015650644898414612, 0.0008277905872091651, -7.102039489836898e-06, -0.007552798371762037, -0.00044747409992851317, 0.013906492851674557, 0.011360343545675278, -0.0021607233211398125, -0.008526097051799297, -0.009102290496230125, -0.005571162328124046, 0.023639479652047157, 0.03918111324310303, -0.04537907987833023, 0.0015611712587997317, 0.00947603676468134, -0.000994224683381617, 0.01691203936934471, -0.0263491440564394, -0.005197415594011545, -0.00047010331763885915, -0.004531679209321737, 0.005769715178757906, -0.011173469945788383, -0.009367027319967747, 0.003229405265301466, 0.006018879357725382, -0.015269110910594463, 0.006361480802297592, 0.011718517169356346, 0.004885959904640913, 0.01769067905843258, -9.558098099660128e-06, -0.009904288686811924, -0.0037199477665126324, 0.011889818124473095, -0.0009703788673505187, 0.01638256572186947, 0.021023252978920937, -0.0007445735391229391, -0.002407941035926342, 0.007864253595471382, 0.004699086304754019, 0.005645132623612881, 0.010371471755206585, 0.0018872263608500361, 0.017628386616706848, -0.024464838206768036, 0.01906108297407627, 0.005769715178757906, -0.011150110512971878, 0.021085543558001518, 0.000994224683381617, -0.0031126094982028008, 0.004224116448312998, -0.008051127195358276, 0.0037277343217283487, 0.02036919631063938, 0.012948766350746155, -0.001679913722909987, -0.010176812298595905, 0.02683190070092678, 0.016974329948425293, 0.01853160932660103, 0.008627320639789104, 0.013548319227993488, 0.0037082682829350233, 0.011679585091769695, -0.011290265247225761, 0.02681632712483406, 0.011850886046886444, 0.015806371346116066, 0.00434091268107295, 0.0029549349565058947, 0.0010618689702823758, -0.01990201324224472, 0.007953797467052937, 0.003605098696425557, 0.015541634522378445, 0.0028517653699964285, 0.018827490508556366, 0.005567268934100866, 0.018282443284988403, 0.005135124083608389, -0.014529404230415821, -0.005189628805965185, 0.002524737035855651, 0.016709594056010246, -0.0008730489644221961, 0.0005893324268981814, 0.008572815917432308, 0.02731465734541416, 0.03799758478999138, -0.002460499294102192, 0.027532676234841347, -0.006879275664687157, 0.013774123974144459, 0.0017470712773501873, -0.005107871722429991, -0.010698500089347363, -0.005431007128208876, 0.006867595948278904, -0.01769067905843258, 0.007062255870550871, -0.01572072133421898, -0.006497742608189583, 0.028840789571404457, 0.007833108305931091, 0.012847543694078922, -0.0018035225803032517, -0.007755244616419077, -0.008019981905817986, 0.0018551074899733067, 0.022798549383878708, -0.021506009623408318, -0.025399204343557358, -0.010091161355376244, 0.010231317020952702, 0.006100636441260576, 0.0005567268817685544, 0.011196829378604889, 0.00026741382316686213, 0.005882617551833391, 0.020665079355239868, 0.005547802895307541, -0.008152350783348083, 0.006727441214025021, 0.015378120355308056, 0.014381462708115578, 0.00040172907756641507, -0.02899651601910591, -0.004547251854091883, 0.002744702622294426, -0.0012730747694149613, 0.010511626489460468, -0.013493814505636692, -0.002228854224085808, 0.0007270541973412037, 0.011383702047169209, 0.029074380174279213, 0.0016069163102656603, 0.00820685550570488, -0.007704632822424173, -0.0246672835201025, 0.017021048814058304, -0.001038509770296514, -0.006022772751748562, -0.0009694055770523846, 0.008946562185883522, -0.011562789790332317, 0.005489405244588852, -7.281491707544774e-05, -0.022144492715597153, -0.022237930446863174, -0.008113418705761433, -0.01186645869165659, -0.003369560232385993, 0.0015309989685192704, 0.003638190682977438, -0.00843266025185585, 0.002472178777679801, -0.016242409124970436, -0.006330335047096014, -0.023483753204345703, -0.001872626831755042, -0.0052713858895003796, 0.005485511850565672, -0.00551665760576725, -0.0005752195720560849, -0.012395933270454407, 0.014778568409383297, 0.005761928856372833, 0.011780808679759502, -0.0189676471054554, -0.0047730570659041405, -0.010496053844690323, -0.009141221642494202, 0.011212402023375034, -0.0004109753936063498, -0.007794176694005728, 0.032173365354537964, 0.011570575647056103, 0.01062063593417406, -0.009631764143705368, 0.0029705078341066837, 0.0012983805499970913, -0.01146156620234251, -0.021428145468235016, 0.012450437992811203, 0.0011718517635017633, -0.021459290757775307, 0.002230800688266754, 0.011640653014183044, -0.03187748044729233, -0.015455984510481358, -0.005983840674161911, 0.0061629279516637325, 0.017005475237965584, 0.013742978684604168, -0.007809749338775873, 0.008806407451629639, -0.005960481707006693, -0.015385907143354416, -0.0006496769492514431, -0.015012159943580627, 0.020556069910526276, -0.011352556757628918, 0.010005511343479156, -0.0020575535017997026, -0.015603926032781601, 0.015463770367205143, -0.05528337135910988, 0.012606165371835232, 0.003638190682977438, -0.014210161752998829, -0.024729574099183083, -0.0038776223082095385, -0.0052713858895003796, 0.020509351044893265, -0.0077357785776257515, -0.006669043097645044, 0.009732987731695175, 0.004695193376392126, -0.040458083152770996, -0.017643960192799568, 0.017877550795674324, -0.028420323505997658, 0.006279723718762398, 0.008276932872831821, 0.002933522453531623, -0.009639550931751728, -0.01681860350072384, 0.006606752052903175, -0.019310247153043747, -0.011788594536483288, 0.023452607914805412, 0.015681790187954903, 0.006318655796349049, -1.125376729760319e-05, 0.010130093432962894, 0.0052480269223451614, -0.020229041576385498, -0.006774159613996744, 0.012224632315337658, -0.017425941303372383, 0.006365373730659485, 0.010745218023657799, -0.013587250374257565, 0.006961032748222351, 0.003718001302331686, -0.031192278489470482, -0.012621738016605377, -0.031768471002578735, -0.014467112720012665, -0.011142324656248093, -0.006326442118734121, 0.00020779928308911622, -0.010324752889573574, -0.003011386375874281, -0.02552378736436367, 0.02935469150543213, 0.009725200943648815, 0.010044443421065807, 0.009187940508127213, -0.010301394388079643, 0.00866625178605318, -0.0032138326205313206, -0.01779968850314617, -0.012271351180970669, -0.028373606503009796, 0.030880823731422424, -0.011305838823318481, -0.01579858548939228, -0.0023495431523770094, -0.0012876742985099554, -0.001010284060612321, -0.013665114529430866, 0.013299154117703438, 0.011547216214239597, -0.011913176625967026, -0.011321411468088627, -0.0002752002328634262, -0.015113383531570435, 0.004761377349495888, 0.011936536058783531, -0.002168509643524885, -0.0018891729414463043, 0.006653470452874899, -0.011773021891713142, -0.01014566607773304, 0.008502737618982792, -0.002446873113512993, 0.008269146084785461, -0.005302531644701958, -0.03117670677602291, -0.046406883746385574, -0.017036622390151024, -0.0020536603406071663, 0.022300221025943756, -0.0042357961647212505, 0.0024429799523204565, 0.01556499395519495, -0.02329687960445881, 0.013143426738679409, -0.008712970651686192, -0.004379844292998314, 0.005357036367058754, -0.007007751148194075, -0.00624857796356082, -0.0014073899947106838, 0.014513831585645676, -0.005707424134016037, 0.010503840632736683, -0.009647337719798088, 0.010807509534060955, 0.015892021358013153, -0.00951496884226799, 0.0168653205037117, -0.0019952624570578337, 0.0173636507242918, 0.0037510935217142105, -0.00766570121049881, -0.01249715592712164, 0.01337701827287674, 0.014762995764613152, -0.013509387150406837, -0.023172296583652496, -0.029650572687387466, -0.02201991155743599, -0.017130058258771896, 0.003449370851740241, 0.007856467738747597, 0.004531679209321737, 0.006552247330546379, 0.005302531644701958, -0.009499396197497845, -0.036533743143081665, -0.014544976875185966, -0.01361060980707407, -0.00584757886826992, 0.03032020293176174, 0.018438171595335007, 0.011796381324529648, 0.018422599881887436, 0.004009990952908993, 0.01055834535509348, -0.02589753270149231, -0.00970962829887867, 0.025570504367351532, -0.019341392442584038, 0.01146156620234251, -0.007011644076555967, -0.0168653205037117, -0.0016877000452950597, -0.0065094223245978355, 0.014560549519956112, 0.0008287638775072992, 0.004208543803542852, -0.0033929194323718548, 0.011500498279929161, -0.0059371222741901875, 0.018905354663729668, 0.01985529437661171, -0.0024527129717171192, 0.018438171595335007, -0.015237965621054173, -0.008962134830653667, -0.004574504215270281, -4.7265821194741875e-05, 0.0003732600889634341, 0.009242445230484009, 0.003665443044155836, -0.0008243840420618653, 0.012761893682181835, -0.013937638141214848, -0.0004080554936081171, 0.014825286343693733, -0.011336984112858772, -0.02719007432460785, -0.008565029129385948, -0.012279137037694454, -0.01058949064463377, 0.01143042091280222, -0.016055535525083542, -0.002228854224085808, 0.008658465929329395, -0.007439895533025265, 0.006805304903537035, -0.00735813844949007, -0.007583944126963615, 0.00584757886826992, -0.007210197392851114, 0.0051857358776032925, 0.011835313402116299, 0.010690713301301003, -0.030024319887161255, -0.0050572603940963745, 0.003063944401219487, -0.013797483406960964, 0.02036919631063938, -0.014350317418575287, 0.003398759290575981, -0.017192348837852478, -0.023904217407107353, -0.015541634522378445, 0.014770781621336937, -0.012372573837637901, 0.0023261839523911476, -0.009001066908240318, 0.003281963523477316, 0.0002204521733801812, -0.009701842442154884, 0.01722349412739277, -0.020898671820759773, 0.013501600362360477, 0.028669487684965134, -0.003959379158914089, -0.0002157073322450742, 0.0031554345041513443, -0.01078415010124445, -0.003690748941153288, 0.012310282327234745, -0.004866493865847588, -0.005793074145913124, 0.003270283807069063, -0.005777501501142979, -0.0037199477665126324, 0.003153488039970398, -0.005909869913011789, 0.022798549383878708, 0.018889782950282097, 0.0006706028361804783, -0.021521583199501038, 0.0029919203370809555, -0.0029082167893648148, 0.02201991155743599, 0.010636208578944206, -0.005096192471683025, -0.019310247153043747, -0.01428802590817213, -0.000474483153084293, -0.010932091623544693, 0.010534985922276974, 0.023982081562280655, 0.01856275461614132, -0.001331472652964294, 0.01638256572186947, -0.015424839220941067, -0.014560549519956112, -0.008759688585996628, 0.02729908376932144, 0.0009090610546991229, 0.012380360625684261, -0.005983840674161911, 0.009982151910662651, 0.0037257876247167587, -0.003373453626409173, -0.0019417310832068324, -0.01779968850314617, 0.009460464119911194, -0.035287920385599136, -0.005563375540077686, 0.0025422563776373863, 0.011313624680042267, -0.008596174418926239, -0.00786814745515585, 0.0034045991487801075, 0.007813642732799053, 0.002166562946513295, 0.0062252189964056015, 0.0032371915876865387, -0.004601756576448679, -0.010667354799807072, -0.032609403133392334, -0.009413745254278183, 0.030444785952568054, 0.004605649970471859, 0.02427796460688114, 0.022767404094338417, 0.00302306585945189, -0.022798549383878708, -0.0003036692214664072, -0.004765270743519068, -0.005438793450593948, 0.007276381365954876, -0.014513831585645676, -0.010667354799807072, 0.018407026305794716, -0.019528266042470932, -0.016273556277155876, 0.0069182077422738075, -0.0029646679759025574, 0.006575606297701597, 0.010675140656530857, 0.01641371101140976, 0.004072281997650862, -0.012878688983619213, -0.005360929761081934, -0.004652367904782295, 0.004185184836387634, -0.0002075559605145827, -0.012995485216379166, 0.008144563995301723, 0.01551827508956194, 0.015253538265824318, 0.008292505517601967, -0.00022373704996425658, 0.007147906348109245, 0.010862014256417751, 0.021085543558001518, -0.0021607233211398125, -0.006412092130631208, -0.019637275487184525, -0.0025850816164165735, 0.008308078162372112, -0.02421567402780056, 0.009242445230484009, -0.013524959795176983, 0.013953210785984993, -0.016117827966809273, 0.015346975065767765, -0.004547251854091883, -0.0006107449880801141, -0.011741876602172852, 0.005999413784593344, 0.0065055289305746555, -0.0066340044140815735, 0.018671764060854912, 0.013999929651618004, 0.02114783599972725, -0.03497646376490593, 0.001395710394717753, 0.003244978142902255, -0.0029549349565058947, -0.011352556757628918, -0.01853160932660103, 0.019995449110865593, -0.0033247885294258595, 0.011539430357515812, 0.008969921618700027, -0.0017139791743829846, 0.004282514564692974, 0.015455984510481358, -0.003957432694733143, -0.01727021299302578, -0.014856432564556599, -0.006478276569396257, 0.010464908555150032, 0.003642084077000618, -0.023047715425491333, 0.028233449906110764, -0.003130128839984536, 0.0034162786323577166, 0.01037925761193037, 0.009585046209394932, 0.020556069910526276, 0.0019757964182645082, -0.012909835204482079, 0.00551276421174407, -0.003398759290575981, -0.003959379158914089, 0.011734089814126492, -0.03109884262084961, 0.015082237310707569, -0.0029276825953274965, -0.015082237310707569, -0.03553708270192146, 0.019777430221438408, -0.01404664758592844, 0.026645027101039886, 0.02114783599972725, 0.015674002468585968, 0.01449047215282917, 0.014552762731909752, -0.014163443818688393, 0.00930473580956459, 0.0067858388647437096, -0.004305873531848192, 0.007572264410555363, 0.01688089407980442, -0.00951496884226799, -0.010464908555150032, -0.015043306164443493, -0.017581669613718987, 0.00420465087518096, -0.00561398733407259, -0.005135124083608389, -0.0020848058629781008, -0.01779968850314617, 0.009382599964737892, -0.00052558135939762, 0.028653915971517563, -0.007809749338775873, 0.004009990952908993, 0.0031223425175994635, -0.004617329221218824, 0.023250160738825798, 0.011718517169356346, -0.014973227865993977, -0.010877586901187897, 0.007770817261189222, -0.01603996381163597, 0.017550522461533546, -0.0012146768858656287, -0.004792523104697466, -0.009616191498935223, 0.004352591931819916, -0.011617294512689114, 0.004177398514002562, 0.008892057463526726, 0.011368129402399063, 0.022222356870770454, 0.005602307617664337, 0.04095641151070595, -0.009086716920137405, 0.004862600471824408, -0.021724028512835503, -0.013914278708398342, 0.016522720456123352, 0.00584757886826992, -0.010402617044746876, 0.009764133021235466, 0.012372573837637901, -0.0036304043605923653, -0.015923168510198593, 0.008191282860934734, -0.0028634448535740376, 0.008121204562485218, -0.023172296583652496, -0.003258604323491454, 0.003336468245834112, 0.0017772435676306486, -0.010932091623544693, 0.012154554948210716, 0.019247956573963165, -0.005212988238781691, -0.01337701827287674, -0.007412643171846867, 0.00175680429674685, -0.0029276825953274965, 0.005672384984791279, 0.0038756756111979485, 0.003895141649991274, -0.02029133215546608, 0.027423666790127754, -0.0007168345618993044, -0.002026407979428768, 0.03108326904475689, 0.0076734875328838825, -0.001346072182059288, 0.012271351180970669, 0.012427078559994698, 0.006014986429363489, -0.001088147982954979, -0.010698500089347363, 0.019606130197644234, -0.0035194482188671827, -0.0025286301970481873, 0.01898321881890297, -0.0021373641211539507, 0.01985529437661171, 0.006069491151720285, -0.005902083590626717, -0.009662910364568233, -0.010472694411873817, -0.005473832134157419, -0.007233556360006332, 0.0040138838812708855, 0.00799662247300148, -0.010651781223714352, -0.004157932475209236, -0.0026979842223227024, 0.022782977670431137, 0.02253381349146366, -0.019699567928910255, -0.012037758715450764, 0.024386974051594734, 0.008572815917432308, -0.0010024977382272482, 0.009787492454051971, 0.003128182142972946, -0.012006613425910473, -0.007708526216447353, 0.012115622870624065, 0.004041136242449284, -0.0009095476707443595, 0.015681790187954903, 0.0015047198394313455, 0.0018015759997069836, 0.004570610821247101, 0.013626182451844215, 0.007591730449348688, 0.007879827171564102, -0.001192291034385562, 0.010363684967160225, 0.008689611218869686, -0.0012020239373669028, 0.010519413277506828, -0.002022514818236232, -0.009491609409451485, -0.00931252259761095, 0.00975634716451168, 0.008946562185883522, 0.0010073642479255795, -0.00361483171582222, -0.02244037576019764, -0.0070272171869874, -0.01337701827287674, -0.002472178777679801, -0.0027875276282429695, -0.004068389069288969, -0.003472730051726103, -0.027081064879894257, 0.02511889487504959, 0.005660705734044313, -0.007498293649405241, 0.003756933147087693, 0.005111765116453171, 0.013221289962530136, 0.010021083988249302, -0.015868663787841797, 0.018422599881887436, 0.0005007621948607266, -0.000800538226030767, -0.011710730381309986, -0.01516010146588087, 0.0008224374614655972, -0.01037925761193037, 1.4173663657857105e-05, 0.010301394388079643, 0.005571162328124046, -0.009219085797667503, 0.009795278310775757, -0.026037689298391342, -0.012115622870624065, -0.01213119551539421, -0.012481583282351494, -0.012886475771665573, 0.014147871173918247, 0.009623978286981583, -0.02902766317129135, -0.007903185673058033, 0.018843064084649086, 0.007903185673058033, 0.03946142643690109, -0.002989973872900009, 0.005964374635368586, 0.015269110910594463, -0.003739413805305958, 0.008650679141283035, -0.007151799276471138, 0.018749628216028214, 0.00648995628580451, -0.0035291812382638454, 0.015175674110651016, 0.008463806472718716, 0.014506044797599316, -0.0008365503163076937, -0.03575510159134865, 0.002205495024099946, 0.02082080766558647, -0.006544461008161306, 0.008463806472718716, 0.02946370095014572, 0.00011776915198424831, 0.007112867198884487, -0.026442579925060272, 0.006727441214025021, -0.0007144013070501387, 0.023577189072966576, -0.003229405265301466, -0.01860947161912918, 0.037312380969524384, -0.014373675920069218, 0.005220774561166763, 0.004940464626997709, -0.009538328275084496, -0.01321350410580635, 0.010675140656530857, -0.011251334100961685, 0.010433762334287167, -0.0016419549938291311, 0.0005109818303026259, 0.010862014256417751, -0.004185184836387634, 0.0011650386732071638, -0.014319171197712421, 0.0031203958205878735, -0.020602788776159286, 0.014108939096331596, 0.0011387595441192389, 0.005843685939908028, -0.005785287823528051, 0.012645097449421883, -0.0036634965799748898, 0.0025422563776373863, 0.01591538079082966, 0.013345872983336449, -0.01949712075293064, -0.014070007018744946, -0.009904288686811924, 0.0017149524064734578, -0.005380395799875259, -0.023032141849398613, 0.01901436410844326, -0.003887355327606201, 0.007833108305931091, -0.001166985253803432, 0.03454042598605156, -0.012902048416435719, -0.004165718797594309, -0.006264151073992252, 0.024355828762054443, 0.01230249647051096, -0.00420075748115778, -0.00041997843072749674, 0.03749925643205643, 0.02856047824025154, 0.011889818124473095, 0.004590076860040426, 0.013774123974144459, -0.011445993557572365, -0.009982151910662651, 0.0008642892935313284, -0.023265734314918518, 0.00786036066710949, -0.021926473826169968, -0.004917105194181204, 0.015572779811918736, -0.038246747106313705, 0.0017743236385285854, -0.00410342775285244, 0.005395968444645405, 0.002092592418193817, 0.003052264917641878, -0.0002586541522759944, -0.010612850077450275, -0.014373675920069218, 0.006229111924767494, 0.005913763307034969, 0.0545358769595623, -0.002806993667036295, 0.024978740140795708, 0.002713556867092848, 0.01468513160943985, -0.013049989938735962, 0.0073892842046916485, -0.005730783101171255, -0.016133399680256844, -0.02069622464478016, 0.004944357555359602, -0.004111214075237513, 0.024386974051594734, 0.02639586292207241, -0.003768612863495946, -0.007622875738888979, 0.006431558169424534, -0.022782977670431137, -0.0044265626929700375, 0.008315864950418472, -0.0032235654070973396, 0.014653986319899559, -0.015346975065767765, -0.009764133021235466, 0.007147906348109245, 0.026987629011273384, 0.008603961206972599, -0.0033792932517826557, 0.0041968640871346, 0.010854227468371391, 0.023063287138938904, -0.005960481707006693, -0.03858935087919235, 0.013960997574031353, 0.0050767264328897, -0.002203548327088356, -0.0048392415046691895, 0.016180118545889854, -0.0007898319745436311, -0.01642928272485733, -0.020462634041905403, -0.0034260116517543793, 0.004671833943575621, -0.001166011905297637, -0.017550522461533546, -0.009102290496230125, 0.0063498010858893394, 0.0031359686981886625, -0.009226872585713863, 0.02592867985367775, -0.0008842419483698905, -0.013960997574031353, -0.031784042716026306, -0.011632867157459259, -0.00017215221305377781, 0.002662945305928588, 0.004702979698777199, -0.01815786212682724, -0.008136778138577938, -0.029152244329452515, -0.007186837960034609, -0.003114555962383747, 0.0013061669887974858, 0.01591538079082966, -0.020960962399840355, 0.010340326465666294, -0.0009494529222138226, 0.003061997937038541, 0.0013499653432518244, -0.00866625178605318, 0.01987086795270443, -0.00789150595664978, -0.01210783701390028, -0.02462056465446949, -0.018811918795108795, -0.03063165955245495, -0.024978740140795708, 0.004745804704725742, -0.012247991748154163, 0.009024426341056824, -0.006233005318790674, -0.016304701566696167, -0.012808611616492271, -0.005859258584678173, -0.005209094844758511, 0.01321350410580635, -0.008689611218869686, 0.003204099601134658, 0.01982414908707142, 0.0007392204133793712, -0.00658339262008667, -0.023623907938599586, -0.017036622390151024, 0.0029160031117498875, 0.010643995366990566, -0.0023514898493885994, 0.00911007635295391, -0.021272417157888412, 2.296376806043554e-05, 0.009865356609225273, 0.010200170800089836, 0.012434865348041058, -0.01860947161912918, 0.0047068726271390915, -0.010083375498652458, -0.014653986319899559, -0.017005475237965584, -0.013314726762473583, -0.004056709352880716, 0.011344769969582558, 0.003307269187644124, 0.001321739749982953, -0.008323650807142258, 0.030865250155329704, 0.0015611712587997317, 0.017877550795674324, 0.008627320639789104, 0.0003625537792686373, -0.0028031005058437586, 0.010418189689517021, -0.018453745171427727, 0.009873142465949059, 0.033076584339141846, 0.022066630423069, -0.021708454936742783, 0.016133399680256844, 0.010036656633019447, 0.011920963414013386, -0.011150110512971878, 0.0042396895587444305, 0.008923202753067017, -0.017908697947859764, -0.01638256572186947, 0.01815786212682724, -0.0094838235527277, 0.006174607202410698, -0.0014570282073691487, -0.001666287542320788, 0.0016838068841025233, -0.011718517169356346, -0.018874209374189377, -0.008424874395132065, 0.01316678524017334, 0.010900946334004402, -0.008097846060991287, 0.010433762334287167, -0.022751832380890846, 0.016086682677268982, 0.009678483009338379, -0.00019855295249726623, -0.015019946731626987, -0.0010667354799807072, -0.027143355458974838, 0.022144492715597153, -0.007805855944752693, 0.014583908952772617, -0.02759496681392193, 0.017924269661307335, -0.019606130197644234, 0.004177398514002562, -0.003675176063552499, 0.0019524373346939683, 0.009771919809281826, 0.011212402023375034, -0.014552762731909752, -0.016273556277155876, -0.0027622219640761614, 0.021926473826169968, -0.011344769969582558, -0.023608334362506866, -0.005224667955189943, 0.0010093108285218477, 0.0061590345576405525, 0.005976054351776838, -0.003011386375874281, 0.014513831585645676, -0.004527785815298557, 0.005193522199988365, -0.02337474375963211, -0.005232454277575016, 0.02110111713409424, 0.00799662247300148, 0.026909764856100082, 0.005438793450593948, -0.012286923825740814, 0.0024137808941304684, -0.023499324917793274, 0.013447095640003681, -0.002653212519362569, -0.004052815958857536, 0.014949869364500046, 0.021942047402262688, -0.018749628216028214, 0.007291954476386309, -0.02078966237604618, 0.02027576044201851, -0.0051195514388382435, -0.0011387595441192389, -0.023468179628252983, 0.004290300887078047, 0.00604613171890378, -0.0028147799894213676, -0.015853090211749077, -0.0029685611370950937], "e963a28d-552a-45f4-9ec2-76023245927a": [-0.04296916723251343, -0.005378890782594681, -0.010169163346290588, 0.011168265715241432, -0.022754760459065437, -0.01572231575846672, 0.014754192903637886, 0.029818186536431313, 0.008147722110152245, 0.022754760459065437, 0.020632635802030563, -0.005955892149358988, 0.008666636422276497, -0.010231123305857182, 0.024923356249928474, -0.00927074532955885, -0.009456624276936054, 0.0025887605734169483, 0.019625788554549217, -0.050683170557022095, 0.06716449558734894, -0.0029953722842037678, -0.04708949849009514, -0.027711549773812294, -0.0012498466530814767, 0.01834012009203434, -0.028083309531211853, 0.0004930166178382933, -0.047523219138383865, -0.004538560286164284, 0.015544181689620018, 0.03457360714673996, -0.03352028876543045, 0.0062850541435182095, -0.0023099412210285664, -0.03506928309798241, 0.029957596212625504, 0.049660831689834595, -0.033396366983652115, -0.0387868769466877, -0.02072557620704174, -0.017534641548991203, -0.008225172758102417, 0.0007590083405375481, -0.0219492819160223, 0.00010679606202756986, 0.03643240034580231, -0.008031548000872135, 0.02263084053993225, -0.006323779001832008, 0.012887652032077312, -0.027308810502290726, 0.01468448806554079, -0.024303758516907692, 0.01663622446358204, -0.02763410098850727, 0.021763402968645096, 0.06518177688121796, -0.005715797655284405, -0.035100266337394714, -0.013995184563100338, -0.03283872827887535, 0.021964773535728455, 0.006989847403019667, -0.012461678124964237, -0.010471217334270477, 0.0004484829551074654, 0.022398492321372032, -0.012206093408167362, 0.019579317420721054, -0.004449492786079645, 0.00020814643357880414, -0.03423282504081726, 0.018417570739984512, 0.004472727887332439, 0.020338326692581177, 0.0007498111808672547, 0.031196793541312218, 0.03249794989824295, 0.0059907445684075356, -0.02732430212199688, 0.011454829946160316, 0.03376812860369682, 0.03485242649912834, 0.02348279021680355, 0.023978468030691147, -0.03760964050889015, -0.0411723330616951, -0.034418705850839615, -0.0034213464241474867, -0.017302293330430984, 0.015745550394058228, -0.030530724674463272, -0.01514144241809845, -0.011106305755674839, 0.008008312433958054, 0.010509942658245564, 0.009069375693798065, 0.004736057482659817, -0.02902819775044918, -0.009348195046186447, 0.0199046079069376, -0.04216368868947029, 0.0037311457563191652, 0.007617190945893526, 0.00185201910790056, -0.021825363859534264, -0.007830178365111351, 0.019982056692242622, 0.042690347880125046, 0.020493226125836372, 0.008837025612592697, 0.00927074532955885, 0.008844771422445774, -0.02817624993622303, -0.030917974188923836, -0.071439728140831, 0.006219221744686365, -0.028826827183365822, 0.022166142240166664, 0.007977332919836044, -0.011710414662957191, 0.023467300459742546, 0.004472727887332439, 5.920676630921662e-05, 0.0026565291918814182, -0.016992492601275444, 0.03252892941236496, 0.025682365521788597, 0.0007841795450076461, -0.013623425737023354, -0.044425223022699356, 0.012817947193980217, -0.018526000902056694, -0.013321371749043465, 0.026596272364258766, -0.011114051565527916, 0.03531712293624878, -0.02800585888326168, 0.024288266897201538, -0.06858957558870316, 0.006656812969595194, -0.01047896221280098, 0.011694924905896187, -0.011323166079819202, -0.0047709099017083645, -0.03587476164102554, 0.022878680378198624, -0.031692471355199814, 0.03931353613734245, -0.043681707233190536, -0.006331523880362511, -0.029043687507510185, 0.04191584885120392, 0.029415447264909744, -0.025511974468827248, 0.003984794020652771, 0.00538663612678647, 0.010014263913035393, 0.020477736368775368, 0.0411723330616951, -0.03726885840296745, -0.0031134833116084337, -0.0030379698146134615, 0.02823820896446705, 0.015613886527717113, 0.07627259939908981, 0.0011540025006979704, 0.002737851580604911, 0.007059552241116762, 0.004488217644393444, -0.005928784608840942, 0.02191830240190029, 0.02803684026002884, -0.001007815939374268, -0.020880475640296936, 0.04563344269990921, 0.0027765764389187098, 0.03031386435031891, -0.002391263609752059, -0.022336531430482864, 0.008108997717499733, 0.013437545858323574, 0.0001803128980100155, -0.0241643488407135, 0.03637044131755829, -0.022506922483444214, -0.00687367282807827, -0.016853082925081253, 0.003057332243770361, 0.025357075035572052, 0.0014880049275234342, -0.01167169027030468, 0.0034174739848822355, 0.02490786649286747, 0.007470036391168833, -0.012206093408167362, -0.02010597661137581, -0.003783424384891987, 0.020570674911141396, 0.031258754432201385, -0.02575981430709362, -0.021840853616595268, 0.04467306286096573, -0.02806781977415085, 0.03903471678495407, -0.008341346867382526, -0.059698332101106644, 0.019470887258648872, -0.030236415565013885, 0.05607368052005768, -0.0275566503405571, 0.04681067913770676, -0.004670225083827972, 0.01364666037261486, 0.0035026688128709793, 0.002699126722291112, 0.025511974468827248, -0.007214452140033245, -0.03082503378391266, 0.04501384496688843, 0.03082503378391266, -0.009944559074938297, -0.026456862688064575, -0.01844855025410652, -0.02510923519730568, -0.008922221139073372, 0.03392302617430687, -0.04485894367098808, -0.03113483265042305, 0.021562034264206886, -0.018758349120616913, 0.02044675685465336, -0.018262671306729317, -0.008085763081908226, 0.007938607595860958, 0.016868574544787407, -0.034728504717350006, -0.001994333229959011, -0.006207603961229324, -0.01586172543466091, 0.06920917332172394, -0.03931353613734245, -0.023327890783548355, -0.007117639761418104, 0.023018090054392815, -0.0367421992123127, 0.00609917426481843, -0.01970323733985424, 0.03135169297456741, 0.008984181098639965, 0.017100922763347626, 4.768005237565376e-05, -0.0009773201309144497, -0.001054285909049213, 0.05591877922415733, 0.02919858694076538, -0.04774007573723793, -0.01606309600174427, -0.03209521248936653, 0.025233155116438866, -0.004701205063611269, 0.00036110985092818737, -0.0036846757866442204, 0.021562034264206886, -0.013584700413048267, 0.014901348389685154, -0.015164677053689957, 0.03847707808017731, -0.003909280523657799, 0.015908196568489075, 0.00891447626054287, -0.016109565272927284, 0.02334338054060936, 0.0156526118516922, 0.010409257374703884, -0.021933792158961296, -0.000201369563001208, -0.027758020907640457, 0.029663287103176117, -0.0019323733868077397, 0.009727698750793934, 0.006939505226910114, -0.003551074769347906, 0.022367512807250023, -0.020663615316152573, -0.009115844964981079, 0.022398492321372032, -0.042721327394247055, 0.006389611400663853, 0.022444961592555046, -0.01487036794424057, -0.013514995574951172, 0.011965999379754066, 0.02362219989299774, -0.02701450139284134, 0.022677311673760414, -0.01216736901551485, -0.011888549663126469, -0.001269209198653698, 0.031119342893362045, -0.009944559074938297, 0.008116742596030235, 0.009340450167655945, 0.035812802612781525, -0.01235324889421463, 0.004801889881491661, 0.003264510538429022, -0.04814281687140465, 0.033086568117141724, 0.04210172966122627, -0.01620250567793846, -0.025713345035910606, -0.012105409055948257, 0.008139977231621742, -0.01694602333009243, -0.03133620321750641, -0.03324146941304207, -0.038508057594299316, -0.015474476851522923, -0.0003824085579253733, -0.005464085843414068, -0.03782649710774422, 0.01380156073719263, 0.05192236974835396, -0.03423282504081726, 0.041358210146427155, 0.00424425071105361, -0.022909659892320633, -0.0039964113384485245, -0.01714739389717579, -0.00979740358889103, 0.0026449118740856647, 0.024721987545490265, -0.04464208334684372, -0.009657993912696838, -0.0035491385497152805, -0.021531052887439728, -0.001075584557838738, -0.041017431765794754, 0.00406611617654562, -0.011284440755844116, 0.04671774059534073, -0.0025287370663136244, 0.012283544056117535, 0.01728680357336998, -0.0016758207930251956, 0.007113767322152853, -0.045509520918130875, -0.00587844243273139, 0.0009061630698852241, -0.01885128952562809, 0.021360663697123528, 0.01415782980620861, 0.051705509424209595, -0.026007654145359993, -0.05049728974699974, -0.008968690410256386, 0.05220118910074234, -0.044735025614500046, -0.004875467158854008, -0.035410065203905106, -0.0017155137611553073, 0.017364252358675003, 0.0049761519767344, 0.03841511905193329, -0.003795041935518384, -0.013274901546537876, -0.02746371179819107, -0.046191081404685974, -0.018216200172901154, 0.01246942300349474, -0.0034058564342558384, -0.041017431765794754, -0.035100266337394714, -0.0287493783980608, 0.049351032823324203, -0.006896907463669777, 0.012639813125133514, 0.016279954463243484, 0.02684411220252514, 0.000362562044756487, -0.012887652032077312, -0.010688076727092266, 0.03090248443186283, -0.008782811462879181, 0.009092610329389572, -0.019254028797149658, -0.02289417013525963, -0.006017852108925581, 0.02425728738307953, 0.020028527826070786, -0.022475941106677055, -0.04042881354689598, -0.006893035024404526, 0.01097464095801115, 0.012531382963061333, -0.0229716207832098, 0.0027727039996534586, -0.05405998229980469, 0.024303758516907692, -0.02294064126908779, -0.0228012315928936, -0.04876241460442543, 0.013329116627573967, -0.031088363379240036, -0.024350227788090706, 0.01047896221280098, 0.011323166079819202, 0.010850721970200539, 0.019006188958883286, 0.01134640071541071, 0.007353861816227436, 0.05845913290977478, 0.01660524494946003, -0.004805762320756912, -0.02752567082643509, 0.03881785646080971, 0.004879339598119259, -0.013329116627573967, -0.01902167871594429, 0.04089351370930672, 0.0049916417337954044, 0.019285008311271667, 0.04361974447965622, 0.012732752598822117, -0.01970323733985424, 0.01116052083671093, 0.015435751527547836, -0.008139977231621742, 0.005200756248086691, 0.08017607033252716, -0.030685624107718468, 0.0301124956458807, 0.01418880932033062, 0.0027727039996534586, -0.014707723632454872, -0.013979694806039333, 0.0214381143450737, 0.017581112682819366, 0.007388714235275984, 0.028191739693284035, -0.023498279973864555, 0.029136627912521362, -0.008434287272393703, -0.01170266978442669, -0.01407263521105051, -0.012229328975081444, 0.020508715882897377, -0.011795609258115292, 0.002337048761546612, 0.024381207302212715, -0.017472682520747185, -0.012624322436749935, -0.004263613373041153, 0.0014976861421018839, 0.01620250567793846, -0.011013366281986237, 0.012616577558219433, -0.01714739389717579, -0.006552255712449551, 0.019269518554210663, 0.02490786649286747, -0.0026410394348204136, 0.00917006004601717, -0.01121473591774702, -0.010796506889164448, 0.014366944320499897, -0.006393483839929104, 0.007721748203039169, 0.04808085784316063, -0.04352680593729019, 0.0033380878157913685, 0.04677969962358475, 0.057591695338487625, 0.00031585010583512485, -0.01211315393447876, -0.0003211747680325061, -0.01487036794424057, -0.02453610673546791, -0.028284680098295212, -0.021376153454184532, -0.01748817227780819, -0.025357075035572052, 0.018696390092372894, 0.021159294992685318, -0.03599868342280388, -0.04708949849009514, 0.020539695397019386, -0.013437545858323574, 0.030484255403280258, 0.0076442984864115715, -0.004488217644393444, 0.003016670932993293, -0.02052420563995838, -0.030670134350657463, -0.04420836642384529, -0.026317453011870384, -0.020880475640296936, -0.024009447544813156, 0.043371908366680145, -0.03175443038344383, 0.008263897150754929, -0.02613157406449318, -0.012771477922797203, 0.03519320487976074, 0.005123306531459093, 0.0649958997964859, -0.03491438552737236, -0.019749708473682404, -0.0415131114423275, 0.0001878158509498462, -0.028811337426304817, 0.012066683731973171, -0.004035136196762323, 0.031010912731289864, -0.005882314871996641, -0.024009447544813156, 0.024179838597774506, -0.016512304544448853, -0.012337758205831051, -0.006877545267343521, -0.048266734927892685, -0.01660524494946003, -0.023126520216464996, 0.008279386907815933, -0.004240378271788359, -0.024629047140479088, 0.017007984220981598, -0.03767159953713417, -0.00025994100724346936, 0.024303758516907692, -0.032714810222387314, 0.020167937502264977, 0.016682693734765053, 0.0010358914732933044, 0.031026402488350868, 0.013538231141865253, -0.002234427724033594, 0.003016670932993293, 0.008434287272393703, 0.042039770632982254, 0.020307347178459167, 0.00709440466016531, 0.0004158087831456214, 0.03240501135587692, 0.017302293330430984, 0.01864992082118988, -0.022770250216126442, 0.025465505197644234, -0.0009666707483120263, 0.02692156285047531, -0.03550300374627113, 0.02269280143082142, -0.02263084053993225, -0.013530486263334751, -0.01745719276368618, -0.004798016976565123, -0.007477781269699335, 0.00582809979096055, -0.0204157754778862, 0.015799766406416893, 0.013948715291917324, 0.04386758431792259, 0.013848030008375645, -0.018014831468462944, -0.004042881540954113, 0.023358870297670364, -0.021933792158961296, 0.023126520216464996, 0.04913417622447014, -0.0377645380795002, 0.008503992110490799, 0.017534641548991203, -0.010331807658076286, 0.050683170557022095, -0.024551596492528915, -0.001379575114697218, -0.04191584885120392, -0.008085763081908226, 0.03417086601257324, 0.027029991149902344, 0.010494452901184559, 0.017348762601614, 0.0001247668405994773, -0.015180167742073536, -0.030948953703045845, -0.02425728738307953, -0.03172345086932182, -0.0072067067958414555, 0.021221254020929337, 0.03252892941236496, -0.014746448025107384, 0.00391315296292305, -0.02606961317360401, -0.015133697539567947, 0.006416718475520611, -0.00741969421505928, 0.04352680593729019, 0.019796177744865417, 0.049320053309202194, 0.01606309600174427, -0.007744983304291964, -0.01364666037261486, -0.05650739744305611, 0.024443168193101883, 0.020369306206703186, 0.0004937427002005279, -0.03184737265110016, -0.0007110862643457949, 0.007016954943537712, -0.005653837695717812, 0.0449209026992321, -0.007853413000702858, 0.021794382482767105, 0.022909659892320633, 0.02647235244512558, 0.016217995434999466, 0.014181064441800117, -0.01350725069642067, 0.022197121754288673, -0.022770250216126442, 0.04938201233744621, -0.008418796584010124, 0.032714810222387314, -0.005177521146833897, -0.026348432525992393, 0.008465266786515713, -0.007876647636294365, -0.0036788671277463436, 0.0018626685487106442, -0.01592368632555008, -0.01418880932033062, -0.04430130496621132, -0.019966566935181618, -0.017302293330430984, 0.03429478779435158, -0.008240662515163422, 0.011114051565527916, -0.043712686747312546, 0.019130108878016472, 0.0233123991638422, 0.01623348519206047, 0.005549280438572168, -0.00976642407476902, -0.004124203696846962, -0.010765526443719864, -0.012020214460790157, 0.03249794989824295, 0.008852516300976276, -0.034759484231472015, 0.011540025472640991, 0.014119104482233524, 0.0077023860067129135, 0.02641039341688156, -0.01830914057791233, -0.02086498588323593, -0.00831811223179102, 0.0062463292852044106, -0.016930533573031425, 0.005870697554200888, -0.030499745160341263, 0.016171526163816452, 0.008380072191357613, 0.002635230543091893, 0.0004717178817372769, -0.0027978753205388784, -0.03076307475566864, -0.0072725391946733, -2.612419120850973e-05, -0.013809305615723133, -0.01830914057791233, -0.013027061708271503, -0.017581112682819366, -0.02004401758313179, -0.03246697038412094, -0.018804820254445076, 0.037516698241233826, -0.016992492601275444, -0.032683830708265305, -0.009061630815267563, -0.030127985402941704, -0.005955892149358988, 0.012678537517786026, -0.022026732563972473, -0.01660524494946003, 0.010610627010464668, 0.016713673248887062, -0.02735528163611889, 0.015528691932559013, -0.031971290707588196, 0.013615680858492851, -0.004867721814662218, 0.02527962625026703, 0.0035317123401910067, -0.013886755332350731, 0.01919206790626049, -0.025372564792633057, 0.007799198385328054, -0.01939343847334385, -0.0036382058169692755, 0.029787205159664154, 0.00908486545085907, -0.016450345516204834, 0.01785993203520775, 0.016326425597071648, -0.015118207782506943, -0.05080709233880043, 0.02075655572116375, 1.5036159311421216e-05, 0.009038395248353481, -0.019687747582793236, -0.0007057616021484137, 0.013499505817890167, 0.004143565893173218, 0.022754760459065437, -0.02425728738307953, 0.049320053309202194, 0.026394903659820557, 0.02490786649286747, -0.03705200180411339, 0.014413413591682911, -0.014576058834791183, -0.008573696948587894, -0.030360335484147072, -0.0028656439390033484, -0.0026971905026584864, 0.00759782874956727, 0.005142668727785349, 0.0012362929992377758, 0.02163948304951191, -0.012291288934648037, 0.02242947183549404, 0.0078263059258461, -0.00492580933496356, 0.01847952976822853, -0.005986872129142284, 0.012314523570239544, 0.01714739389717579, -0.014792918227612972, 0.027912920340895653, 0.019315987825393677, -0.02157752402126789, -0.016698183491826057, -0.006358631420880556, 0.003748571965843439, 0.03321048989892006, 0.026766661554574966, -0.0301124956458807, 0.0036556320264935493, 0.011176010593771935, -0.03782649710774422, 0.05979127064347267, -0.0033206616062670946, -0.014212044887244701, -0.006668430753052235, 0.01847952976822853, -0.001201440580189228, 0.03739278018474579, 0.04111037030816078, -0.00941015500575304, 0.019548337906599045, 0.018587959930300713, 0.0015935302944853902, -0.024489637464284897, 0.01694602333009243, 0.025821775197982788, 0.028904277831315994, 0.026689212769269943, 0.03237403184175491, 0.0287493783980608, 0.03875589743256569, 0.023358870297670364, 0.016760144382715225, 0.00393057893961668, -0.01039376761764288, 0.01586172543466091, -0.013755090534687042, -0.028222719207406044, -0.004286848474293947, -0.016078585758805275, -0.00332259782589972, 0.008651146665215492, -0.008442032150924206, 0.0071873445995152, -0.019145598635077477, 0.043433867394924164, 0.0008684062631800771, -0.005072963889688253, 0.014297239482402802, 0.003053459571674466, 0.0014957499224692583, 0.0010988195426762104, 0.009503094479441643, -7.490850839531049e-05, -0.039251577109098434, 0.006374121177941561, 0.013081276789307594, 0.002939221216365695, -0.0018752540927380323, 0.0015218892367556691, -0.009874854236841202, 0.0035104136914014816, 0.03457360714673996, 0.005533790681511164, 0.0037931054830551147, 0.005367273464798927, -0.003564628539606929, -0.019486378878355026, 0.00813223235309124, -0.004093223717063665, -0.0019430227112025023, -0.009177804924547672, -0.004577285144478083, 0.0005319835618138313, 0.0019585127010941505, 0.0017900592647492886, -0.05220118910074234, 0.042349569499492645, 0.02075655572116375, 0.0056693279184401035, -0.006397356279194355, 0.01116052083671093, 0.022383002564311028, -0.007539741229265928, -0.008054782636463642, 0.024691006168723106, 0.008411051705479622, 0.0067071556113660336, -0.04262838885188103, -0.013576955534517765, -0.03249794989824295, -0.00840330682694912, -0.010959151200950146, -0.015451242215931416, 0.03252892941236496, 0.026797642931342125, -0.0019430227112025023, -0.032064229249954224, 0.04724439978599548, -0.004724439699202776, -0.05365724489092827, 0.002480330877006054, -0.003733081975951791, -0.024923356249928474, 0.000976351962890476, 0.022956131026148796, -0.005367273464798927, 0.018355609849095345, 0.06598725914955139, 0.036184560507535934, -0.008991925977170467, 0.03243599086999893, 0.003969303797930479, -0.010502197779715061, 0.020477736368775368, 0.021376153454184532, 0.0073809693567454815, -0.0034232826437801123, 0.003264510538429022, 0.010006518103182316, 0.02405591867864132, -0.0381053164601326, -0.0038608741015195847, -0.014250769279897213, 0.010471217334270477, 0.007795325946062803, 0.0007861158228479326, -0.0021105080377310514, 0.01785993203520775, -0.024629047140479088, -0.0065251486375927925, -0.035781823098659515, -0.005402125883847475, 0.011718159541487694, -0.038631975650787354, 0.02289417013525963, 0.017162883654236794, -0.0316460020840168, 0.012175113894045353, 0.0048948293551802635, 0.0045734127052128315, -0.01799934171140194, 0.033365387469530106, -0.0034019839949905872, -0.011601985432207584, 0.006800095550715923, -0.028455069288611412, -0.01708543300628662, 0.00837232731282711, -0.012244818732142448, 0.02140713483095169, -0.03463556617498398, -0.017503662034869194, -0.009108100086450577, 0.03187835216522217, 0.024675516411662102, -0.019548337906599045, -0.009750934317708015, 0.014738703146576881, -0.0036556320264935493, -0.03596770390868187, -0.05148864910006523, -0.0200749970972538, 0.032343052327632904, -0.04659381881356239, 0.014924583025276661, 0.00398092158138752, 0.019114619120955467, -0.017906401306390762, 0.0241643488407135, 0.013979694806039333, 0.013956460170447826, -0.02684411220252514, 0.0079115005210042, -0.002298323903232813, 0.01683759316802025, -0.034015968441963196, -0.01956382766366005, 0.02334338054060936, 0.024288266897201538, 0.012291288934648037, 0.014692233875393867, -0.017643071711063385, 0.012446188367903233, -0.017395231872797012, -0.02106635458767414, -0.0102078877389431, -0.01959480717778206, 0.006877545267343521, -0.018061300739645958, -0.015133697539567947, -0.0002715584705583751, 0.008968690410256386, 0.03218815103173256, 0.01194276474416256, -0.024350227788090706, 0.000634604599326849, -0.0428762286901474, -0.0022673439234495163, -0.0006331523763947189, 0.008085763081908226, 0.03228108957409859, 0.0018500828882679343, -0.028764868155121803, -0.01333686150610447, 0.0009492445387877524, -0.03525516390800476, -0.0021531053353101015, -0.02294064126908779, -0.014560569077730179, 0.013708620332181454, 0.009115844964981079, -0.00501874927431345, -0.019207559525966644, 0.011958254501223564, -0.0006486423662863672, -0.015451242215931416, -0.02510923519730568, 0.009572799317538738, -0.00773336598649621, 0.004422385711222887, -0.002519055735319853, 0.00683107553049922, 0.01432821899652481, 0.002273152582347393, -0.011036600917577744, 0.0313052237033844, -0.03022092580795288, 0.0037814881652593613, -0.022104183211922646, -0.012120898813009262, -0.00669553829357028, 0.0384460985660553, -0.006103046704083681, -0.0026255494449287653, -0.022197121754288673, -0.017240332439541817, -0.034387726336717606, -0.003016670932993293, 0.03497634455561638, -0.03221913054585457, 0.011028856039047241, -0.034728504717350006, 0.012058938853442669, 0.007361606694757938, 0.006459316238760948, 0.013855774886906147, -0.02388552948832512, -0.009727698750793934, -0.019486378878355026, -0.0025945694651454687, 0.02024538628757, 0.015048502944409847, 0.03181639313697815, -0.003580118529498577, -0.02055518515408039, -0.029353486374020576, 0.00388798164203763, -0.018897758796811104, -0.02647235244512558, -0.008465266786515713, 0.005557025782763958, 0.014142340049147606, -0.014878112822771072, 0.006614215672016144, 0.01514144241809845, -0.004406895488500595, -0.015358301810920238, 0.027742531150579453, -0.020291855558753014, -0.006339268758893013, -0.02698352187871933, -0.016682693734765053, 0.015830745920538902, 0.021345173940062523, -0.002759150229394436, -0.005131051409989595, -0.011563260108232498, 0.05186040699481964, -0.00979740358889103, -0.0006670366856269538, -0.022057712078094482, 0.0005639315932057798, -0.016651714220643044, 0.0009773201309144497, 0.012415207922458649, -0.007764345966279507, 0.007319009397178888, 0.017581112682819366, -0.024489637464284897, -0.013669895939528942, -0.011578749865293503, 0.01184207946062088, -0.00117626937571913, -0.01816973090171814, -0.016729164868593216, -0.040676653385162354, -0.009874854236841202, -0.02218163199722767, 0.021453604102134705, 0.013995184563100338, -0.019300498068332672, 0.006478678435087204, 0.006753625348210335, -0.024412186816334724, 0.0066877929493784904, 0.008209682069718838, -0.010928171686828136, 0.03321048989892006, 0.010943661443889141, -0.012291288934648037, 0.04386758431792259, -0.02579079382121563, -0.012941867113113403, 7.103601819835603e-05, -0.02038479596376419, -0.00678073288872838, 0.004581157583743334, 0.02163948304951191, -0.029121138155460358, -0.02146909385919571, 0.03417086601257324, -0.0032490205485373735, 0.01793738082051277, -0.029864655807614326, -0.026704702526330948, -0.008720851503312588, 0.010161418467760086, -0.012903142720460892, 0.0003957202425226569, -0.007396459113806486, -0.0018161985790356994, 0.01660524494946003, -0.014266259036958218, 0.004015774000436068, 0.011052091605961323, -0.016078585758805275, 0.024474147707223892, -0.0024106260389089584, -0.004708949942141771, -0.0005658678710460663, -0.0058668251149356365, 0.022739270702004433, -0.02885780856013298, 0.022305551916360855, 0.013321371749043465, 0.0030205436050891876, 0.0017348763067275286, -0.014947817660868168, -0.022925151512026787, -0.0018142623594030738, -0.016217995434999466, 0.011803355067968369, -0.010014263913035393, 0.013228431344032288, 0.0010736483382061124, 0.03602966293692589, 0.008875750936567783, 5.0372644182061777e-05, -0.0004692975780926645, -0.012570108287036419, 0.017612092196941376, 0.016992492601275444, 0.02340533956885338, 0.02425728738307953, -0.005421488545835018, 0.009193295612931252, 0.011114051565527916, 0.02470649778842926, 0.029245056211948395, -0.007005337625741959, -0.00011901860852958634, 0.011509045027196407, 0.004906447138637304, 0.01246942300349474, -0.004120331257581711, -0.039282556623220444, -0.003622716059908271, 0.024117877706885338, -0.015164677053689957, -0.011795609258115292, -0.008868006058037281, 0.01674465462565422, -0.05300666764378548, 0.010076222941279411, -0.004782527219504118, 0.013166471384465694, -0.004085478838533163, 0.002871452597901225, 0.010935916565358639, 0.002863707486540079, 0.0473063588142395, 0.017069943249225616, 0.008612421341240406, 0.004767037462443113, 0.022723780944943428, 0.001986588118597865, -0.01400292944163084, 0.0027572140097618103, -0.016527794301509857, 0.006230839062482119, 0.005177521146833897, 0.012647558003664017, 0.023389849811792374, -0.008364582434296608, 0.0035839909687638283, 0.013731855899095535, 0.01036278810352087, -0.02712293155491352, -0.006982102524489164, -0.00012682410306297243, -0.005065219011157751, 0.009007415734231472, -0.0009037427371367812, -0.02123674377799034, 0.02905917726457119, 0.011780119501054287, 0.011865314096212387, -0.01691504381597042, -0.01026210281997919, -0.012345503084361553, -0.01759660243988037, -0.0068039679899811745, 0.014366944320499897, 0.01167169027030468, -0.00020475799101404846, -0.00695886742323637, -0.008705361746251583, -0.007195089478045702, -0.003235466778278351, -0.013042552396655083, 0.0432170070707798, 0.015815256163477898, -0.03968529403209686, 0.022228103131055832, -0.020167937502264977, 0.020338326692581177, 0.024799436330795288, -0.011849824339151382, 0.0021492328960448503, -0.011780119501054287, 0.01606309600174427, -0.02089596539735794, 0.004511452745646238, -0.002871452597901225, 0.006668430753052235, -0.00587844243273139, -0.017333272844552994, 0.006865927949547768, 0.02303357981145382, -0.022057712078094482, -0.03602966293692589, -0.005862952210009098, 0.00840330682694912, -0.014583803713321686, 0.01129993051290512, -0.023234950378537178, -0.006676175631582737, -0.004987769294530153, 0.00228477013297379, -0.0031347819603979588, -0.010285337455570698, -0.015660356730222702, -0.010595137253403664, -0.00510394386947155, 0.003988666459918022, 0.00488321203738451, -0.0024609684478491545, -0.029787205159664154, 0.029802696779370308, -0.007222197018563747, 0.001193695585243404, 0.007013082504272461, -0.029523877426981926, 0.020090486854314804, -0.018355609849095345, 0.0028869425877928734, 0.027572140097618103, -0.0014696106081828475, 0.022444961592555046, -0.033365387469530106, 0.0017300356412306428, -0.020849494263529778, 0.0015664228703826666, -0.012182858772575855, 0.011857569217681885, -0.012562363408505917, 0.03187835216522217, 0.011679435148835182, 0.01097464095801115, -0.009642504155635834, -0.003609162289649248, 0.04049077257514, -0.0024319246876984835, -0.01229903381317854, -0.009812894277274609, 0.014173319563269615, -0.013321371749043465, 0.01558290608227253, 0.005735160317271948, -0.008596931584179401, 0.006954994983971119, -0.019656768068671227, -0.0003214167954865843, -0.0023719011805951595, 0.011276695877313614, -0.003977049142122269, -0.0050613465718925, 0.023064561188220978, -0.0002817237691488117, 0.04386758431792259, -0.013894500210881233, 0.011594239622354507, -0.01088944636285305, 0.01383254025131464, -0.0044920905493199825, 0.010920426808297634, -0.03243599086999893, 0.030375825241208076, -0.028439579531550407, 0.01298059243708849, 0.014893602579832077, 0.006920142564922571, -0.09021356701850891, 0.012864417396485806, 0.020059507340192795, 0.0014289494138211012, 0.007528123911470175, 0.008062527514994144, -0.003605289850383997, -0.0027436602395027876, 0.014831643551588058, 0.03491438552737236, -0.023080050945281982, 0.03031386435031891, -0.00039112166268751025, -0.005673200357705355, -0.016899554058909416, -0.00908486545085907, 0.0031812519300729036, 0.007582338526844978, 0.018572470173239708, 0.005777757614850998, 0.0026971905026584864, 0.010571902617812157, 0.01017690822482109, 0.015218892134726048, 0.0015431878855451941, -0.012701773084700108, 0.001640000264160335, 0.001041700248606503, -0.010254357941448689, 0.018495019525289536, -0.014010675251483917, 0.031150322407484055, 0.008806046098470688, -0.020911455154418945, 0.028733888640999794, 0.013964205048978329, -0.01116052083671093, 0.023637689650058746, -0.00985161866992712, -0.0015848171897232533, -0.004778654780238867, 0.0010620307875797153, -0.012012469582259655, -0.008496246300637722, -0.01643485389649868, -0.02385454811155796, -0.004147438798099756, 0.00637024873867631, 0.009193295612931252, 0.014297239482402802, -0.007841795682907104, 0.000977804185822606, 0.014297239482402802, -0.00334776914678514, -0.008666636422276497, -0.03609162196516991, 0.019470887258648872, 0.00515428651124239, 0.008124487474560738, 0.006033341865986586, -0.006532893516123295, -0.006834947969764471, -0.02684411220252514, 0.008271642029285431, 0.013143236748874187, 0.03212619200348854, -0.014266259036958218, 0.0045579224824905396, 0.01569133624434471, -0.004364298190921545, 0.020772045478224754, 1.4415955774893519e-05, -0.012918632477521896, 0.002054356737062335, 0.00291792256757617, -0.01956382766366005, -0.017054453492164612, -0.011013366281986237, -0.0003238371282350272, -0.01333686150610447, 0.013894500210881233, -0.0006641322979703546, 0.006052704527974129, 0.0008485597209073603, 0.021360663697123528, -0.007466163951903582, -0.01579202152788639, 0.0023467298597097397, 0.004004156216979027, 0.029121138155460358, -0.0027843215502798557, -0.011021111160516739, -0.02735528163611889, 0.03392302617430687, -0.006091429386287928, 0.001716481987386942, 0.01993558742105961, -0.0442393459379673, -0.009541819803416729, -0.04461110383272171, -0.041668009012937546, -0.007055679801851511, 0.00032311101676896214, -0.009805148467421532, 0.022553391754627228, 0.018433060497045517, -0.006850437726825476, -0.012934122234582901, 0.0033671315759420395, 0.004658607300370932, 0.0016187014989554882, 0.010145927779376507, 0.007547486107796431, 0.02289417013525963, 0.017193863168358803, 0.0021356791257858276, -0.01694602333009243, -0.001429917523637414, 0.011199246160686016, 0.008705361746251583, 0.020570674911141396, 0.02905917726457119, -0.010997876524925232, -0.012562363408505917, 0.005762267392128706, -0.009301724843680859, -0.01657426357269287, -0.0009473082609474659, -0.004817379638552666, -0.0006423495360650122, 0.022506922483444214, -0.032064229249954224, -0.008333601988852024, 0.004716694820672274, 0.006924015004187822, 0.011222480796277523, 0.007977332919836044, -0.030840523540973663, 0.0009894216200336814, 0.025914713740348816, -0.011013366281986237, 0.022413982078433037, -0.0020853367168456316, 0.024489637464284897, -0.021732423454523087, -0.005843590013682842, 0.03968529403209686, -0.018665410578250885, 0.007245432119816542, 0.0022750888019800186, 0.01683759316802025, -0.006815585307776928, -0.005855207331478596, 0.011834334582090378, 0.014212044887244701, -0.04293818771839142, -0.012585598044097424, -0.011911784298717976, -0.0013040616177022457, -0.022847700864076614, -0.021840853616595268, -0.014405668713152409, -0.013042552396655083, 0.00456954026594758, 0.003121228190138936, 0.015358301810920238, 0.020849494263529778, 0.028981728479266167, 0.009774168953299522, -0.021391643211245537, -0.0024319246876984835, -0.02919858694076538, 0.0034774974919855595, -0.0015915940748527646, -0.018247181549668312, -0.009193295612931252, 0.02150007337331772, -0.018495019525289536, 0.02627098374068737, 0.008991925977170467, -0.001235324889421463, 0.007473908830434084, -0.036773182451725006, -0.02422630786895752, 0.013127746991813183, -0.01657426357269287, 0.009518584236502647, -0.005200756248086691, 0.016713673248887062, -0.003221913008019328, 0.012213838286697865, -0.003855065442621708, -0.014413413591682911, -0.0024822670966386795, -0.021995753049850464, -0.006854310166090727, 0.012430698610842228, 0.0010649352334439754, 0.016651714220643044, -0.006393483839929104, -0.007977332919836044, -0.005320803727954626, -0.005557025782763958, 0.002004014328122139, 0.005831972695887089, -0.014932327903807163, 0.013948715291917324, 0.04519972205162048, -0.016140544787049294, 0.009293979965150356, -0.007698513567447662, -0.013034806586802006, -0.03138267248868942, -0.004972279537469149, 0.005405998323112726, -0.026317453011870384, -0.000892125244718045, -0.0012430698843672872, -0.017178373411297798, 0.01742621324956417, 0.004980024415999651, 0.016729164868593216, 0.003398111555725336, 0.013174216262996197, -0.007992822676897049, 0.024474147707223892, 0.00971220899373293, 0.022398492321372032, 0.00813223235309124, 0.000805478252004832, -0.011981489136815071, -0.01347627118229866, 0.04975377395749092, 0.02562040463089943, 0.012004723772406578, -0.014312729239463806, 0.007133129518479109, -0.016543284058570862, 0.03903471678495407, 0.0421946682035923, -0.02242947183549404, -0.0009216530015692115, -0.007466163951903582, 0.0020775918383151293, 0.019346969202160835, -0.005704180337488651, -0.009719953872263432, -0.007295774295926094, -0.027277830988168716, -0.03361322730779648, 0.007992822676897049, -0.003893790300935507, 0.013011571951210499, 0.010982386767864227, -0.008008312433958054, -0.014831643551588058, 0.005282078869640827, 0.008031548000872135, -0.009061630815267563, 0.025124726817011833, -0.005076836794614792, -0.0056925625540316105, 0.029384467750787735, 0.001134640071541071, 0.022584371268749237, 0.009929068386554718, 0.01813875138759613, 0.02320397086441517, 0.005917167291045189, -0.004960661754012108, 0.005847462452948093, 0.02814527042210102, 0.005615112837404013, 0.021856343373656273, -0.012430698610842228, -0.0156526118516922, -0.006924015004187822, -0.0012876035179942846, -0.016481325030326843, 0.010331807658076286, 0.027618611231446266, 0.016357405111193657, 0.005254971329122782, -0.01030857302248478, 0.0024280522484332323, -0.021995753049850464, 0.007706258445978165, -0.022785741835832596, -0.023451808840036392, -0.014676743187010288, 0.007655916269868612, -0.013956460170447826, 0.0017222906462848186, -0.004627627786248922, -0.009789658710360527, -0.0071679819375276566, -0.0031812519300729036, 0.014049399644136429, 0.007075042463839054, -0.007237686775624752, 0.015939176082611084, -0.01579202152788639, 0.003609162289649248, -0.0029740736354142427, 0.017952870577573776, 0.035410065203905106, 0.011663945391774178, 0.014800663106143475, 0.011470320634543896, 0.0070672971196472645, -0.01810777187347412, -0.003289681626483798, -0.02078753523528576, 0.0014976861421018839, -0.010943661443889141, -0.01511046290397644, -0.004585030023008585, 0.00854271650314331, 0.04873143509030342, -0.006893035024404526, -0.016543284058570862, 0.00291792256757617, 0.003156080609187484, -0.023389849811792374, -0.01612505502998829, 0.0035994809586554766, 0.017410723492503166, 0.007617190945893526, 0.011176010593771935, -0.002213129075244069, -0.005630603060126305, 0.001438630628399551, -0.02647235244512558, 0.020942434668540955, 0.0019962694495916367, 0.021654972806572914, 0.01481615286320448, 0.011361890472471714, -0.0023428574204444885, 0.006141772028058767, -0.022398492321372032, 0.022878680378198624, -0.008356836624443531, 0.012291288934648037, 0.0034058564342558384, 0.00216859532520175, -0.00010074528836412355, -0.00796184316277504, 0.00899967085570097, -0.002240236382931471, -0.008984181098639965, -0.009758679196238518, -0.014963307417929173, 0.022228103131055832, -0.004453365225344896, 0.001370862009935081, -0.003407792653888464, 0.01691504381597042, 0.005514428019523621, -0.004588902462273836, 0.01585398055613041, 0.011640709824860096, -0.0014763874933123589, -0.018402080982923508, 0.00511168921366334, -0.0031096108723431826, -0.00411645881831646, -0.01143159531056881, -0.017410723492503166, -0.0019285008311271667, 0.017612092196941376, -0.00899967085570097, 0.014250769279897213, 0.0014851005980744958, 0.02362219989299774, -0.02425728738307953, -0.005688690114766359, -0.01088944636285305, -0.01238422840833664, 0.0024474146775901318, -0.012175113894045353, -0.01691504381597042, -0.014134594239294529, -0.028269188478589058, -0.015970155596733093, -0.027881940826773643, 0.00601397966966033, 0.019083639606833458, -0.005444723181426525, 0.016682693734765053, 0.007175727281719446, 5.249041350907646e-05, -0.011501300148665905, 0.01514144241809845, 0.00913908053189516, 0.013027061708271503, 0.02641039341688156, -0.02225908264517784, 0.003622716059908271, -0.0025674619246274233, 0.0061688791029155254, -0.029307017102837563, 0.007768218405544758, -0.0006186305545270443, 0.004174545872956514, -0.033706165850162506, -0.00908486545085907, -0.03221913054585457, 0.014568313956260681, 0.004302338231354952, -0.0014066826552152634, -0.004828996956348419, 0.015768786892294884, 0.011307675391435623, -0.026456862688064575, 0.012663047760725021, -0.0023041325621306896, -0.011594239622354507, -0.018433060497045517, 0.02388552948832512, -0.001687438227236271, 0.02848604880273342, 0.013770580291748047, -0.028470559045672417, 0.013724110089242458, -0.007849540561437607, -0.012949611991643906, -0.007326754275709391, 0.0212677251547575, 0.0070672971196472645, 0.013731855899095535, 0.0028056201990693808, -0.009867108426988125, -0.01643485389649868, 0.01184207946062088, -0.013553720898926258, -0.036804161965847015, -0.0290901567786932, -0.020369306206703186, -0.00845752190798521, -0.004131948575377464, 0.007129257079213858, 0.009921323508024216, -0.012670792639255524, -0.0010397640289738774, -0.005704180337488651, -0.010997876524925232, -0.005270461086183786, -0.024319248273968697, -0.01181109994649887, -0.0018200711347162724, -0.009309469722211361, 0.014041654765605927, -0.009758679196238518, -0.016310935840010643, 0.0043914057314395905, 0.021391643211245537, -0.012260308489203453, 0.01837109960615635, 0.02735528163611889, 0.005220118910074234, 0.020059507340192795, 0.007040190044790506, 0.01410361472517252, -0.028300169855356216, -0.026518823578953743, -0.005165903829038143, 0.003022479824721813, 0.007078914903104305, 0.01039376761764288, -0.0012672728626057506, -0.003694357117637992, 0.0043371906504035, -0.01555192656815052, -0.01589270494878292, 0.03519320487976074, 0.0031018657609820366, -0.005262716207653284, 0.0028753250371664762, 0.004213270731270313, -0.006498041097074747, -0.004383660387247801, 0.016171526163816452, 0.010680331848561764, 0.011191501282155514, 0.017069943249225616, 0.03457360714673996, -0.015451242215931416, -0.009921323508024216, -0.010664842091500759, -0.003932515159249306, -0.03482144698500633, -0.0032703191973268986, -0.002610059455037117, 0.006486423779278994, 0.008868006058037281, -0.023637689650058746, -0.031196793541312218, -0.01047896221280098, -0.004403023049235344, 0.019966566935181618, 0.0046547348611056805, 0.0010465409141033888, -0.007160237058997154, -0.019083639606833458, -0.00203305808827281, -0.009146825410425663, 0.01451409887522459, -0.004937427118420601, 0.021252233535051346, 0.008496246300637722, 0.007040190044790506, -0.0062695639207959175, -0.002509374637156725, 0.004341063089668751, 0.0029198587872087955, 0.011563260108232498, -0.01579202152788639, -0.007435183972120285, 0.007384841796010733, -0.016682693734765053, -0.0001559888041811064, -0.007288029417395592, -0.014335963875055313, -0.005026494152843952, 0.004046753980219364, -0.0005648997030220926, -0.005158158950507641, -0.04523070156574249, -0.004643117543309927, -0.009386919438838959, -0.008085763081908226, -0.013081276789307594, -0.014421159401535988, 0.010935916565358639, -0.00014630757505074143, 0.028594478964805603, 0.01410361472517252, 0.014026165008544922, 4.2385632696095854e-05, -0.004677969962358475, -0.0010881702182814479, -0.025542955845594406, 0.011958254501223564, 0.01208217442035675, 0.0143746891990304, 0.012337758205831051, 0.0013650533510372043, 0.026363924145698547, 0.013050297275185585, -0.02473747730255127, 2.7243584554526024e-05, 0.01660524494946003, 0.005595750641077757, 0.01320519670844078, -0.009115844964981079, 0.02848604880273342, -0.0114006157964468, 0.018618939444422722, 0.006134026683866978, -0.01612505502998829, 0.0005474734934978187, 0.004716694820672274, -0.018526000902056694, -0.0052743335254490376, -0.009332705289125443, -0.012508148327469826, -2.6880537916440517e-05, 0.01586172543466091, 0.007257049437612295, -0.023947488516569138, 0.015102717094123363, 0.01936245895922184, 0.022739270702004433, 0.010525432415306568, 0.012035704217851162, 0.020462246611714363, -0.0009744157432578504, 8.145846550178248e-06, 0.01252363808453083, -0.00363626959733665, -0.016899554058909416, 0.016481325030326843, 0.0075048888102173805, -0.023761609569191933, 0.015118207782506943, -0.008364582434296608, 0.018045810982584953, -0.00985161866992712, 0.01731778308749199, 0.004980024415999651, 0.027386261150240898, -0.0008746990351937711, 0.007268666755408049, -0.02408689819276333, -0.03643240034580231, 0.0016545220278203487, 0.0028404726181179285, 0.014645763672888279, -0.008000567555427551, 0.005634475499391556, -0.031320713460445404, -0.0038531292229890823, -0.009263000451028347, -0.00740807643160224, -0.010238868184387684, -0.012593342922627926, 0.003188996808603406, 0.015505456365644932, 0.0074042039923369884, 0.012446188367903233, -0.005293696187436581, -0.0027630229014903307, 0.00922427512705326, 0.008960945531725883, 0.004008028656244278, 0.005355656147003174, 0.01246942300349474, -0.009998773224651814, -0.0008538844413124025, -0.002373837400227785, -0.012159624136984348, 0.008674381300807, 0.014947817660868168, 0.010192397981882095, 0.006889162585139275, -0.001240165438503027, 0.019114619120955467, 0.003812468145042658, -0.009340450167655945, 0.003808595472946763, -0.01640387438237667, 0.001147225615568459, -0.014978798106312752, -0.0034349001944065094, 0.02470649778842926, -0.02402493916451931, 0.01620250567793846, -0.000777886772993952, 0.018835799768567085, -0.007098277099430561, 0.017100922763347626, -0.012206093408167362, 0.03491438552737236, 0.006068194285035133, 0.02058616653084755, 0.008868006058037281, -0.010711312294006348, 0.007923117838799953, -0.013243921101093292, 0.007431311532855034, -0.01487036794424057, 0.00592103973031044, 0.01329039130359888, -0.013011571951210499, -0.020090486854314804, -0.0043371906504035, -0.015559671446681023, -0.014940072782337666, 0.006203731521964073, -0.0010097521590068936, -0.0001884209195850417, 0.03243599086999893, 0.010269847698509693, 0.011083071120083332, 0.01255461759865284, 0.011540025472640991, 0.01688406430184841, 0.020369306206703186, -0.01558290608227253, 0.007652043364942074, 0.015017522498965263, -0.01211315393447876, -0.00466248020529747, -0.003946069162338972, 0.010006518103182316, -0.025883734226226807, 0.011880804784595966, -0.005696435458958149, 0.01585398055613041, -0.0199046079069376, -0.00889898557215929, 0.003715655766427517, 0.004209398292005062, -0.026317453011870384, 0.005262716207653284, -0.026054123416543007, -0.01714739389717579, -0.004906447138637304, -0.028300169855356216, -0.013855774886906147, 0.004941299557685852, -0.0053324210457503796, 0.01677563413977623, -0.008465266786515713, -0.0039964113384485245, 0.0044920905493199825, 0.008411051705479622, 0.03184737265110016, -0.005874569993466139, -0.023699648678302765, -0.002369964960962534, 0.012461678124964237, 0.018603449687361717, 0.015164677053689957, 0.008558206260204315, 0.007338371593505144, 0.0034523264039307833, -0.017209352925419807, -0.0214381143450737, -0.011330910958349705, -0.001564486650750041, 0.010347297415137291, -0.00682333018630743, -0.010966896079480648, 0.003783424384891987, 0.006598725914955139, -0.007837923243641853, 0.008387817069888115, 0.006134026683866978, 0.010579647496342659, 0.005378890782594681, -0.011253461241722107, -0.03364420682191849, -0.01469997875392437, 0.015304086729884148, 0.034015968441963196, 0.002871452597901225, -0.0034600712824612856, 0.0077023860067129135, -0.0158230010420084, 0.01851051114499569, -0.014614783227443695, -0.009239764884114265, 0.02545001544058323, -0.02558942511677742, 0.012732752598822117, 0.01047896221280098, 0.0028017477598041296, 0.006079812068492174, -0.0016429045936092734, -0.015985645353794098, 0.016481325030326843, 0.006176624447107315, 0.021701443940401077, 0.006610343232750893, 0.0014241088647395372, 0.01967225782573223, 0.0005450532189570367, -0.0007967651472426951, 0.009363684803247452, -0.014568313956260681, -0.02106635458767414, 0.0158230010420084, 0.02766508050262928, -0.02150007337331772, 0.002766895340755582, -0.0032374029979109764, -0.028532518073916435, 0.0019536721520125866, -0.009487604722380638, 0.002898559905588627, 0.0233123991638422, 0.03228108957409859, 0.01762758195400238, 0.002247981494292617, -0.010316317901015282, -0.005804865155369043, 0.007791453041136265, 0.022413982078433037, 0.03124326281249523, -0.007078914903104305, -0.01592368632555008, -0.015063992701470852, -0.007535868790000677, 0.01646583527326584, 0.005359528586268425, -0.019889118149876595, -0.005773885175585747, -0.001877190312370658, -0.005491193383932114, 0.010726802051067352, -0.009077120572328568, 0.0023680287413299084, -0.01026210281997919, 0.008480756543576717, -0.011028856039047241, -0.0006079811719246209, -0.021685954183340073, -0.0022537901531904936, -3.128247044514865e-05, 0.0014173319796100259, 0.001404746319167316, 0.012755987234413624, -0.008163212798535824, 0.008310367353260517, 0.01728680357336998, -0.02633294276893139, -0.01827816106379032, -0.012926377356052399, 0.0005053601926192641, 0.006865927949547768, 0.017333272844552994, 0.012616577558219433, -0.02405591867864132, -0.004507580306380987, 0.022537901997566223, 0.000588134687859565, 0.0012362929992377758, -0.0024144984781742096, 0.007632681168615818, -0.022553391754627228, 0.00764042604714632, -0.005979127250611782, -0.0114006157964468, 0.0009197167819365859, -0.000727544364053756, 0.010068478062748909, -0.007063424680382013, -0.009704464115202427, 0.013762835413217545, -0.0017726330552250147, 0.0033264702651649714, -0.012097664177417755, -0.0005402126116678119, 0.01216736901551485, 0.017379742115736008, -0.00881379097700119, 0.015234381891787052, 0.00013444806972984225, -0.01225256361067295, 0.030158964917063713, 0.003733081975951791, 0.01364666037261486, 0.016140544787049294, 0.017178373411297798, 0.0023002601228654385, -0.009177804924547672, 0.022708291187882423, -0.012322268448770046, 0.017844442278146744, 0.011385125108063221, -0.006993719842284918, -0.0023602836299687624, 0.0212677251547575, -0.003297426737844944, 0.01009171362966299, 0.016961513087153435, 0.015706826001405716, 0.009015160612761974, 0.011052091605961323, 0.009735443629324436, -0.0012178986798971891, -0.01432821899652481, 0.011555515229701996, -0.006703283172100782, 0.034418705850839615, -0.011369635351002216, 0.01216736901551485, -0.0017087369924411178, -0.006536765955388546, -0.00538663612678647, -0.00024082057643681765, -0.0026178043335676193, 0.012996082194149494, 0.007907628081738949, -0.0015673909801989794, 0.018835799768567085, -0.0070440624840557575, -0.00397317623719573, 0.023529259487986565, 0.004279103130102158, -0.0006249233265407383, -0.019455397501587868, -0.005347910802811384, 0.004031263757497072, 0.006354758981615305, 0.016512304544448853, -0.004879339598119259, -0.006114664487540722, -0.0017406849656254053, 0.022553391754627228, -0.02061714604496956, 0.0009056790149770677, 0.018835799768567085, 0.008209682069718838, -0.012848927639424801, 0.008108997717499733, 0.009402410127222538, -0.0027475329115986824, -0.0037640619557350874, -0.007020827382802963, 0.02208869345486164, 0.009177804924547672, -0.010711312294006348, -0.00583584513515234, 0.001446375623345375, -0.011052091605961323, 0.003067013341933489, 0.003736954415217042, -0.017782481387257576, -0.010386022739112377, 0.002826918847858906, 0.001927532721310854, -0.011803355067968369, 0.001251782989129424, -0.0004460626223590225, -0.005673200357705355, -0.0015315704513341188, -0.02729332074522972, 0.011965999379754066, -0.01677563413977623, -0.012996082194149494, -0.015087227337062359, -0.007888265885412693, 0.005297568626701832, -0.016140544787049294, -0.005344038363546133, 0.010440237820148468, 0.020772045478224754, 0.006571618374437094, 0.0064244638197124004, 0.002474522218108177, -0.011338655836880207, -0.0013360095908865333, -0.0033923026639968157, -0.008178702555596828, -0.005936529953032732, -0.009131335653364658, 0.005115561652928591, 0.015428006649017334, 0.015528691932559013, -0.006494168657809496, -0.016109565272927284, 0.023637689650058746, -0.00239513604901731, 0.020741065964102745, -0.01830914057791233, -0.014885857701301575, -0.024458657950162888, 0.004929681774228811, 0.010858466848731041, 0.0008466235012747347, -0.017813460901379585, 0.021763402968645096, 0.015102717094123363, 0.0048948293551802635, -0.009673484601080418, 0.014862623065710068, 0.010873956605792046, 0.005812610033899546, -0.01274049747735262, 0.013685385696589947, 0.0024009449407458305, -0.015567416325211525, 0.006436081137508154, 0.008844771422445774, -0.02501629665493965, -0.004949044436216354, -0.01022337842732668, 0.003965431358665228, -0.008442032150924206, 0.010231123305857182, 0.01776699163019657, -0.014483118429780006, 0.0072067067958414555, -0.0023990084882825613, 0.020369306206703186, -0.0204157754778862, -0.005045856814831495, -0.02211967296898365, 0.014467628672719002, -0.006498041097074747, 0.009843873791396618, 0.025031786412000656, -0.00971220899373293, 0.015745550394058228, 0.010347297415137291, 0.006010107230395079, -0.011284440755844116, -0.006896907463669777, 0.009185549803078175, 0.02957034669816494, -0.014754192903637886, 0.012601087801158428, -0.0038899178616702557, 0.007442928850650787, -0.015590651892125607, 0.00035239674616605043, 0.017890911549329758, -0.02692156285047531, 0.019099129363894463, -0.007590083871036768, -0.007628808729350567, -0.020849494263529778, 0.002424179809167981, 0.004445620346814394, -0.05182942748069763, 0.00619211420416832, 0.012546872720122337, -0.02167046256363392, -0.019176578149199486, -1.379575132887112e-05, -0.0003110094985459, -0.003917025402188301, -0.022475941106677055, 0.017240332439541817, -0.00913908053189516, -0.020710084587335587, -0.008070272393524647, -0.0006839788402430713, -0.007648170925676823, -0.008480756543576717, -0.009309469722211361, -0.01953284814953804, 0.008178702555596828, -0.031041894108057022, 0.006405101157724857, -0.009061630815267563, -0.01586172543466091, 0.003239339217543602, 0.022754760459065437, 0.007764345966279507, -0.01468448806554079, 0.020400285720825195, 0.0012091855751350522, -0.001084297662600875, -0.0004896281752735376, -0.00913908053189516, 0.022212611511349678, -0.007280284538865089, -0.002759150229394436, 0.004604392684996128, -0.007679150905460119, 0.018556980416178703, -0.007566848769783974, 0.013414311222732067, 0.02320397086441517, -0.007799198385328054, 0.017007984220981598, -0.011083071120083332, 0.006064321845769882, -0.0004119363147765398, -0.024210818111896515, -0.0030979933217167854, 0.012678537517786026, -0.004534687846899033, 0.0021705315448343754, 0.002648784313350916, -0.006161134224385023, -0.008473011665046215, 0.023962978273630142, 0.0015596459852531552, -0.01208217442035675, 0.00246290466748178, -0.014645763672888279, 3.91182184102945e-05, -0.016512304544448853, -0.02565138414502144, -0.022537901997566223, -0.021685954183340073, 0.01646583527326584, 0.01315098162740469, -0.002838536398485303, -0.018464040011167526, 0.020942434668540955, 0.0032587016467005014, 0.01620250567793846, -0.011718159541487694, 0.002240236382931471, 0.011098560877144337, -0.0003313400666229427, 0.003992538899183273, -0.0018742859829217196, 0.00891447626054287, 0.0073073916137218475, 0.0035607561003416777, -0.002948902314528823, -0.002129870466887951, 0.018045810982584953, 0.002863707486540079, 0.02092694491147995, -0.0005489257164299488, -0.003454262623563409, 0.012755987234413624, -0.0029237312264740467, 0.00560736795887351, 0.025511974468827248, 0.014111359603703022, -0.012283544056117535, -0.007152492180466652, -0.009193295612931252, -0.022785741835832596, -0.014297239482402802, -0.002677828073501587, 0.0012285480042919517, -0.005251098889857531, 0.005952019710093737, -0.0025539081543684006, -0.003765998175367713, -0.02868741750717163, -8.289552351925522e-05, -0.01532732229679823, -0.0034523264039307833, 0.03423282504081726, 0.004596647806465626, 0.023064561188220978, 0.025775304064154625, 0.007566848769783974, -0.006869800388813019, -0.01312000211328268, -0.003301299177110195, 0.032652851194143295, -0.0043178279884159565, -0.004697332624346018, 0.01044798269867897, -0.006118536926805973, 0.01047896221280098, -0.0006742976256646216, 0.006997592281550169, 0.015970155596733093, 0.019920097663998604, 0.018495019525289536, 0.0013282645959407091, 0.013243921101093292, 0.030871503055095673, 0.010114948265254498, 0.0023680287413299084, 0.01956382766366005, -0.006041087210178375, -0.028269188478589058, -0.005576387979090214, 0.012624322436749935, 0.017844442278146744, -0.002251853933557868, 0.02692156285047531, 1.6110170690808445e-05, 0.014707723632454872, -0.02232104167342186, 0.016032114624977112, 0.015613886527717113, -0.0007575561758130789, 0.004674097523093224, 0.008991925977170467, 0.016589755192399025, -0.020136956125497818, -0.01657426357269287, 0.0071873445995152, -0.012717262841761112, -0.004302338231354952, -0.019811667501926422, 0.001632255269214511, 0.007106022443622351, -0.01646583527326584, 0.008155467920005322, 0.002255726372823119, 0.018417570739984512, 0.007295774295926094, 0.032621871680021286, -0.025140216574072838, -0.009905833750963211, -0.015304086729884148, -0.02146909385919571, 0.01071905717253685, 0.003243211889639497, 0.013979694806039333, -0.016667203977704048, 0.00794635247439146, -0.007907628081738949, -0.001877190312370658, 0.009100355207920074, 0.016868574544787407, 0.02555844560265541, 0.00032238493440672755, 0.0008156435796990991, -0.002116316696628928, 0.028284680098295212, -0.007040190044790506, -0.020679105073213577, 0.014769683592021465, 0.013499505817890167, -0.0016022433992475271, 0.00958054419606924, -0.019285008311271667, -0.001981747569516301, 0.010378277860581875, 0.0018161985790356994, -0.010657097212970257, 0.021840853616595268, -0.014490864239633083, -0.006800095550715923, -0.004538560286164284, 0.008163212798535824, 0.007090532220900059, -0.005030366592109203, 0.005204628687351942, -0.03209521248936653, 0.015699081122875214, -0.008395561948418617, -0.004639245104044676, 0.004511452745646238, -0.0007933767046779394, -0.017906401306390762, 0.0006636482430621982, -0.007818561047315598, 0.006389611400663853, -0.00039814054616726935, 0.01225256361067295, 0.02294064126908779, -0.01022337842732668, 0.017705032601952553, 0.0016932470025494695, 0.011625220067799091, 0.01623348519206047, 0.029121138155460358, -0.0043914057314395905, 0.0001389256358379498, 0.010494452901184559, -0.0034658799413591623, 0.02701450139284134, -0.00691627012565732, -0.010587392374873161, -0.015660356730222702, 0.008682126179337502, -0.04640794172883034, -0.005146541632711887, -0.010509942658245564, -0.009232020005583763, 0.00032601540442556143, -0.0036924208980053663, 0.018185220658779144, -0.010966896079480648, 0.009379174560308456, -0.012701773084700108, 0.016450345516204834, -0.009634759277105331, -0.030158964917063713, 0.014150084927678108, -0.01933147758245468, -0.002863707486540079, 0.013383330777287483, -0.017581112682819366, 0.014444394037127495, 0.00296051986515522, -0.004217143636196852, -0.009007415734231472, -0.005057474132627249, -0.006257946603000164, 0.01522663701325655, -0.014576058834791183, 0.008124487474560738, 0.017751501873135567, -0.027029991149902344, -0.012058938853442669, 0.001927532721310854, 0.002910177456215024, 0.0016341914888471365, -0.0011085007572546601, 0.017751501873135567, 0.0024551597889512777, 0.024303758516907692, -0.01511046290397644, -0.016279954463243484, 0.0005237545119598508, -0.0028114288579672575, -0.011826589703559875, 0.007717875763773918, 0.011973744258284569, 0.01708543300628662, 0.007411948870867491, 0.0071873445995152, -0.013352351263165474, 0.0025113108567893505, -0.002230555284768343, 0.025233155116438866, -0.00592103973031044, 0.0043914057314395905, 0.012020214460790157, -0.0017493980703875422, -0.016450345516204834, 0.011865314096212387, -0.0313052237033844, -0.010339552536606789, -0.01711641252040863, 0.02439669705927372, -0.0032819367479532957, -0.0075862109661102295, 0.009596033953130245, -0.0053711459040641785, -0.0037137195467948914, -0.010788762010633945, 0.029322506859898567, 0.03039131499826908, 0.012910887598991394, -0.0245051272213459, 0.0007333531393669546, -0.007930862717330456, 0.00845752190798521, -0.005739032756537199, -0.013019316829741001, 0.021701443940401077, -0.0011085007572546601, 0.014800663106143475, 0.0015218892367556691, -0.00031270369072444737, -0.015335067175328732, -0.0067071556113660336, -0.012105409055948257, -0.011145031079649925, -0.0004358973528724164, 0.02442767657339573, -0.01282569207251072, -0.002921795006841421, -0.0377645380795002, 0.01325166691094637, 0.00298569118604064, -0.01483938843011856, 0.0068039679899811745, -0.0008098348043859005, -0.004720567259937525, -0.029214076697826385, -0.009263000451028347, 0.01592368632555008, 0.004120331257581711, -0.0076017011888325214, -0.009991028346121311, -0.030778564512729645, 0.01714739389717579, 0.01745719276368618, -0.0144598837941885, -0.03881785646080971, 0.00011435952183092013, -0.004282975569367409, 0.0228012315928936, 0.010316317901015282, 0.022042222321033478, 0.020167937502264977, -0.002079528057947755, -0.010045243427157402, 0.012020214460790157, -0.017782481387257576, -0.00350073236040771, -0.020167937502264977, -0.0012634004233404994, 0.0017677925061434507, -0.009007415734231472, -0.008984181098639965, -0.019641278311610222, 0.01047896221280098, 0.00255584460683167, -0.01323617622256279, -0.008782811462879181, -0.022956131026148796, -0.010842977091670036, 0.00253067328594625, 0.024629047140479088, 0.010912681929767132, 0.015559671446681023, 0.0031909330282360315, -0.000613305892329663, 0.005405998323112726, 0.00968122947961092, -0.014165574684739113, -0.006827202625572681, -0.009038395248353481, -0.01143159531056881, 0.0041358210146427155, -0.014901348389685154, -0.028083309531211853, -0.022816721349954605, -0.0015848171897232533, 0.01483938843011856, 0.028702909126877785, -0.0036207796074450016, -0.010509942658245564, 0.0004751063243020326, 0.0041551836766302586, 0.02664274349808693, 0.0060720667243003845, 0.009433389641344547, -0.025000806897878647, -0.0025674619246274233, -0.00302828848361969, -9.820397099247202e-05, -0.01950186863541603, 0.02453610673546791, -0.0004821252077817917, -0.004732185043394566, -0.009193295612931252, 0.00979740358889103, -0.015598396770656109, 0.014490864239633083, 0.003067013341933489, -0.01950186863541603, -0.006095301825553179, 0.014080380089581013, 0.005026494152843952, 0.011617475189268589, 0.013894500210881233, -0.010688076727092266, 0.000824356684461236, -0.003179315710440278, -0.001610956504009664, 0.0032761278562247753, -0.0013979695504531264, 0.0028114288579672575, -0.020988905802369118, -0.006021724548190832, 0.022646332159638405, 0.012144133448600769, -0.012771477922797203, -0.001214994234032929, 0.021174784749746323, 0.002054356737062335, -0.003188996808603406, 0.009611524641513824, -0.0012624323135241866, -0.01643485389649868, -0.019486378878355026, -0.006304416339844465, -0.01424302440136671, -0.0006317002116702497, -0.009603779762983322, -0.003032160922884941, 0.006377993617206812, -0.0014512162888422608, -0.006451571360230446, -0.005870697554200888, 0.00678073288872838, 0.010145927779376507, -0.01252363808453083, -0.02579079382121563, 0.00691627012565732, -0.003057332243770361, -0.007020827382802963, 0.01878933049738407, 0.014847133308649063, -0.004480472765862942, -0.012128643691539764, -0.004062243737280369, 0.014452138915657997, 0.00483286939561367, -0.008116742596030235, 0.00941015500575304, 0.026085104793310165, 0.0022867063526064157, 0.019920097663998604, -0.016791123896837234, 0.01643485389649868, 0.017612092196941376, -0.012430698610842228, 0.001184982480481267, -0.012593342922627926, 0.008016057312488556, -0.0019255965016782284, 0.018293650820851326, 0.013514995574951172, 0.0031483357306569815, -0.005316931288689375, -0.008496246300637722, 0.016047606244683266, 0.0007076978799887002, 0.002950838766992092, -0.008651146665215492, -0.014057144522666931, 0.02484590746462345, -0.016899554058909416, 0.005599623080343008, -0.00831811223179102, -0.008310367353260517, 0.01742621324956417, 0.005177521146833897, 0.0014192681992426515, 0.0018113580299541354, -0.007501016370952129, -0.026689212769269943, -0.025264136493206024, 0.015846235677599907, 0.029136627912521362, 0.006126281805336475, -0.0021879577543586493, 0.012237073853611946, 0.010920426808297634, -0.01495556253939867, -0.012570108287036419, 0.006792350206524134, 0.017689542844891548, 0.007899883203208447, -0.009774168953299522, -0.013584700413048267, 0.0013640852412208915, -0.008550461381673813, 0.0026681467425078154, 0.0036343333777040243, -0.00038482886156998575, 0.008581441827118397, 0.027200382202863693, -0.00437978794798255, 0.007876647636294365, 0.0004225856682751328, -0.01827816106379032, -0.011679435148835182, 0.0074468012899160385, 0.0013234240468591452, -0.015435751527547836, 0.01252363808453083, 0.0007381937466561794, 0.018355609849095345, 0.03107287362217903, 0.011199246160686016, -0.0013147109420970082, -0.01366215106099844, -0.003783424384891987, 0.0019130108412355185, -0.02763410098850727, -0.0019033296266570687, -0.01589270494878292, 0.0002577627310529351, 0.013027061708271503, 0.005680945236235857, 0.0024183711502701044, 0.025372564792633057, -0.006381866056472063, 0.018928740173578262, 0.013383330777287483, -0.00033956911647692323, 0.005297568626701832, -0.0017029282171279192, 0.001172396820038557, 0.004166800994426012, -0.016310935840010643, -0.01646583527326584, -0.005940402392297983, 0.007954098284244537, -0.012097664177417755, -0.0033768126741051674, 0.021964773535728455, -0.008821535855531693, -0.012601087801158428, 0.019099129363894463, -0.006025596987456083, 0.0015296342317014933, 0.014591548591852188, -0.01366215106099844, -0.008480756543576717, -0.011315420269966125, -0.017209352925419807, 0.0072260694578289986, 0.017983851954340935, 0.002040803199633956, -0.0054524680599570274, 0.00905388593673706, 0.0014144275337457657, 0.0011026919819414616, -0.017023473978042603, 0.005115561652928591, -0.016078585758805275, 0.0035568836610764265, -0.018727369606494904, -0.006614215672016144, -0.015211147256195545, 0.010796506889164448, -0.014026165008544922, -0.002809492638334632, -0.004708949942141771, 0.004197780974209309, 0.0009168123942799866, -0.026999011635780334, 0.015342812053859234, -0.02167046256363392, 0.005177521146833897, -0.012972847558557987, 0.03528614342212677, -0.001813294249586761, -0.008124487474560738, -0.010781017132103443, 0.0029876274056732655, -0.014529588632285595, -0.025186685845255852, 0.009688974358141422, 0.020260876044631004, -0.0005266588414087892, 0.008503992110490799, 0.004031263757497072, 0.014119104482233524, -0.016217995434999466, -0.001931405276991427, -0.002491948427632451, -0.02086498588323593, -0.0027727039996534586, -0.006501913536339998, 0.00021117180585861206, 0.009913578629493713, -0.025976674631237984, 0.012446188367903233, -0.006416718475520611, -0.015172421932220459, 0.008031548000872135, 0.024830415844917297, -0.00872859638184309, -0.009688974358141422, 0.001834592898376286, 0.007210579700767994, -0.012120898813009262, 0.051023948937654495, 0.004464983008801937, 0.01589270494878292, -0.004983896855264902, 0.013406566344201565, -0.014529588632285595, -0.0048948293551802635, 0.0022925150115042925, -0.0026410394348204136, -0.010842977091670036, -0.004639245104044676, -0.012717262841761112, 0.024520616978406906, 0.025155706331133842, -0.002774640219286084, 0.010153673589229584, -0.025465505197644234, -0.017271311953663826, -0.01047896221280098, 0.014901348389685154, -0.005723542533814907, 0.007655916269868612, -0.003965431358665228, -0.005220118910074234, 0.0076017011888325214, 0.013267156668007374, 0.027370771393179893, 0.003698229556903243, 0.0006786541780456901, -0.014715468510985374, -0.0014260450843721628, 0.0030147347133606672, -0.016047606244683266, 0.02035381644964218, 0.00691627012565732, -0.008503992110490799, 0.0025965056847780943, 0.009975538589060307, 0.0021666591055691242, -0.0019004252972081304, -0.013724110089242458, -0.01575329527258873, -0.008108997717499733, 0.01933147758245468, -0.03240501135587692, -0.0024764584377408028, 0.02548099495470524, 0.02201124280691147, 0.022785741835832596, 0.0038802367635071278, 0.004530815407633781, -0.010966896079480648, -0.020663615316152573, 0.0032199767883867025, -0.0067884777672588825, 0.0007033413276076317, 0.0053324210457503796, -0.014761938713490963, -0.016930533573031425, 0.0024474146775901318, -0.007729493547230959, -0.003235466778278351, -0.006439953576773405, 0.014134594239294529, -0.008496246300637722, 0.007113767322152853, -0.004844487179070711, 0.014490864239633083, -3.4065826184814796e-05, 0.014909093268215656, 0.00971220899373293, -0.011098560877144337, -0.005367273464798927, -0.007377096451818943, -0.019625788554549217, -0.0032161043491214514, -0.007593956310302019, 0.0037679343950003386, -0.013700875453650951, -0.00682333018630743, 0.005165903829038143, -0.009998773224651814, -0.011021111160516739, -0.009967793710529804, -0.01765856146812439, -0.0045579224824905396, 0.006316034123301506, 0.005115561652928591, 0.0038027868140488863, -0.007834050804376602, 0.0034987961407750845, -0.029616815969347954, -0.01827816106379032, 0.013143236748874187, 0.004306210670620203, 0.0031522081699222326, 0.008031548000872135, -0.012546872720122337, 0.0038511930033564568, -0.0021589139942079782, -0.011935018934309483, 0.0013001890620216727, -0.0023641560692340136, -0.0009245573892258108, -0.0015751359751448035, -0.028300169855356216, -0.030886992812156677, -0.02524864487349987, 0.0013815114507451653, 0.01047896221280098, -0.007377096451818943, 0.005022621713578701, -0.012089919298887253, 0.012802457436919212, 0.008953200653195381, 0.028269188478589058, 0.005533790681511164, 0.023327890783548355, -0.002563589485362172, -0.00032940381788648665, -0.01386351976543665, -0.0032587016467005014, 0.01967225782573223, -0.005952019710093737, 0.011493555270135403, 0.022228103131055832, 0.002180212875828147, 0.005673200357705355, -0.010316317901015282, 0.0032102956902235746, -0.009998773224651814, -0.017364252358675003, -0.007415821775794029, 0.007899883203208447, 0.006924015004187822, 0.0068039679899811745, -0.0034774974919855595, 0.010959151200950146, 0.008124487474560738, -0.019377948716282845, -0.0009782882407307625, 0.01725582219660282, 0.014847133308649063, -0.004062243737280369, 0.029554856941103935, 0.013019316829741001, -0.005200756248086691, 0.012570108287036419, -0.007415821775794029, 0.005208501126617193, -0.012058938853442669, -0.007795325946062803, -0.004786399658769369, -0.008124487474560738, -0.006021724548190832, 0.009743189439177513, -0.01796836219727993, 0.02086498588323593, 0.010417002253234386, 0.005502810701727867, -0.006122409366071224, 0.003340024035423994, 0.003614970948547125, -0.0008321016211993992, 0.019238539040088654, -0.035131245851516724, -0.0032916178461164236, 0.013313625939190388, -0.008906730450689793, 0.006199859082698822, -0.00042742627556435764, 0.011865314096212387, -0.021732423454523087, -0.00523948110640049, 0.009619269520044327, 0.013770580291748047, -0.0024958208668977022, 0.022383002564311028, -0.006203731521964073, -0.0027068716008216143, 0.008170957677066326, 0.013786070048809052, 0.007806943263858557, -0.005216246470808983, -0.014134594239294529, 0.008883495815098286, -0.007837923243641853, -0.0015015586977824569, -0.010200142860412598, 0.01536604668945074, -0.010556411929428577, 0.01973421685397625, 0.016729164868593216, -0.005719670094549656, -0.02476845681667328, 0.009867108426988125, -0.005324676167219877, -0.005545407999306917, -0.03277676925063133, -0.004248123150318861, 0.024923356249928474, 0.008039292879402637, -0.03909667581319809, 0.001100755762308836], "9ce827fd-a136-4195-b8df-3d30e7dc210f": [-0.0005558066186495125, 0.03468233346939087, -0.009848070330917835, 0.037580762058496475, -0.02458723820745945, 0.0006165336235426366, -0.006933173164725304, 0.03932640701532364, -0.01079500000923872, 0.04041331633925438, -0.01827986165881157, 0.005628056824207306, -0.001939147594384849, 0.011025556363165379, -0.03662559762597084, 0.016278957948088646, 0.005109303630888462, 0.03576924279332161, -0.006076819263398647, -0.056189991533756256, 0.055333636701107025, -0.010169202461838722, -0.033200182020664215, -0.014376864768564701, -0.0051545919850468636, -0.00443410174921155, -0.01966320350766182, 0.007600140757858753, -0.025015415623784065, -0.0023879099171608686, 0.020338404923677444, 0.0026946328580379486, -0.00038623414002358913, 0.03471526876091957, 0.0010570618323981762, -0.043278809636831284, -0.008645880967378616, 0.05427966266870499, 0.0034851133823394775, -0.0028407895006239414, -0.038371242582798004, -0.017341166734695435, 0.0005061442498117685, 0.012095998972654343, -0.010399759747087955, -0.0002881960244849324, -0.0020204600878059864, 6.979747558943927e-05, -0.019778480753302574, -0.033760104328393936, 0.008094191551208496, -0.008662349544465542, -0.038404177874326706, 0.0066285086795687675, 0.015710800886154175, -0.030120601877570152, 0.026151731610298157, 0.07753296196460724, -0.016196615993976593, -0.02625054121017456, -0.0018815083894878626, -0.039227597415447235, -0.013891048729419708, -4.110653026145883e-05, 0.017160015180706978, -0.02539418637752533, -0.026975147426128387, 0.016311895102262497, 0.01025977823883295, 0.016517749056220055, -0.04318000003695488, 0.0043846964836120605, -0.03988632932305336, 0.050656627863645554, -0.023138023912906647, -0.019235026091337204, 0.06099874898791313, -0.03216267749667168, 0.0012845308519899845, 0.024949541315436363, 0.016534218564629555, -0.0035324599593877792, 0.0010241251438856125, 0.024949541315436363, 0.032113272696733475, 0.01854335516691208, -0.01748938113451004, -0.04999789223074913, -0.04749470576643944, -0.027683285996317863, -0.041631974279880524, -0.005278104450553656, -0.015035598538815975, -0.014977958984673023, 0.012128935195505619, 0.0038556510116904974, 0.012244214303791523, 0.01724235713481903, 0.004854044411331415, 0.0019165035337209702, -0.0024887784384191036, 0.02845729887485504, -0.04400341585278511, -0.004331174772232771, 0.0028346136678010225, 0.002439373405650258, -0.013248782604932785, 0.022331075742840767, -0.0287043247371912, 0.004327057395130396, 0.03142160177230835, -0.04268594831228256, -0.005306923761963844, 0.0017322639469057322, -0.030713461339473724, -0.029708893969655037, -0.023895567283034325, -0.023944972082972527, 0.008061254397034645, -0.0009500175947323442, 0.012194808572530746, -0.025295376777648926, 0.056420546025037766, -0.0013370236847549677, -0.03147100657224655, -0.002929306821897626, -0.012631219811737537, 0.028243210166692734, 0.05309394374489784, 0.022808656096458435, 0.01201365701854229, 0.0019072401337325573, 0.03306843712925911, -0.006974343676120043, 0.024653110653162003, 0.050722502171993256, 0.040018077939748764, 0.015743738040328026, -0.02244635298848152, 0.04568318650126457, -0.061031684279441833, -0.002079128520563245, -0.0016519807977601886, 0.013512276113033295, 0.0007421047776006162, -5.085244629299268e-05, 0.0006082994514144957, 0.0629090741276741, 0.0062456196174025536, 0.044398657977581024, -0.04565025120973587, -0.004981674253940582, 0.0030631120316684246, -0.0006170482956804335, 0.042521264404058456, -0.04476096108555794, -0.02213345468044281, 0.004248832818120718, 0.012664156965911388, 0.025031883269548416, 0.024537833407521248, -0.011206707917153835, -0.022545162588357925, -0.007357232738286257, 0.015727268531918526, 0.030417032539844513, 0.07298770546913147, 0.013841642998158932, -0.03860180079936981, 0.01750585064291954, 0.023319175466895103, 0.009090526029467583, 0.027732692658901215, 0.005908018443733454, 0.0007565145497210324, -0.02952774055302143, 0.029116032645106316, -0.031553346663713455, 0.032360296696424484, -0.0437728576362133, -0.03942521661520004, 0.016056636348366737, -0.004129437264055014, -0.028819601982831955, 0.008168298751115799, -0.02346738986670971, -0.014096902683377266, 0.018477482721209526, -0.007575438357889652, 0.028342019766569138, -0.005010493565350771, -0.0021285335533320904, 0.0006438093259930611, 0.015389667823910713, 0.005413968116044998, -0.003690967569127679, -0.005681579001247883, 0.002898428589105606, -0.004602902103215456, 0.026695186272263527, 0.010597379878163338, -0.012730030342936516, 0.001992669655010104, 0.015735503286123276, -0.00941989291459322, 0.02099713869392872, -0.013257017359137535, -0.016863584518432617, 0.0410061776638031, -0.004150022752583027, 0.048548679798841476, -0.02781503275036812, 0.0037403726018965244, 0.017835216596722603, 0.0017466737190261483, 0.014195713214576244, -0.021705277264118195, 0.025542402639985085, -0.014302756637334824, -0.03244263678789139, 0.05487252399325371, -0.003773309290409088, 0.0006041823653504252, -0.02404378354549408, -0.049833208322525024, -0.006986694876104593, -0.03883235529065132, 0.00915639940649271, -0.027370387688279152, -0.028243210166692734, -0.007851283065974712, -0.013257017359137535, 0.0070072803646326065, -0.01748938113451004, 0.01460742112249136, 0.01283707469701767, 0.044135164469480515, -0.01613897830247879, -0.023912036791443825, -0.017538785934448242, 0.0019422353943809867, 0.020931266248226166, -0.0033019031397998333, -0.003219561418518424, 0.010959682986140251, 0.038964103907346725, -0.008505899459123611, 0.0020564845763146877, 0.023434454575181007, 0.03303549811244011, -0.005854496266692877, -0.011247878894209862, -0.021655872464179993, 0.02107948064804077, -0.038700610399246216, 0.004351759795099497, 0.02982417121529579, -0.021787619218230247, 0.004919917788356543, -0.007122559007257223, 0.003975046798586845, 0.023385049775242805, -0.051776476204395294, -0.0032113271299749613, 0.032080333679914474, -0.02598704770207405, 0.029922980815172195, 0.006620274391025305, 0.03114163875579834, 0.03639503940939903, -0.00010144757106900215, -0.0191197469830513, 0.007822463288903236, 0.029379526153206825, 0.035439878702163696, -0.0019463524222373962, -0.010111563839018345, 0.024406086653470993, -0.009988050907850266, -0.014401567168533802, -0.00944459531456232, 0.018181052058935165, 0.016443641856312752, 0.026349350810050964, -0.0164107047021389, 0.032623790204524994, -0.01131375227123499, 0.00860470999032259, 0.004003866109997034, -0.013479339890182018, 0.023022744804620743, 0.0032936688512563705, 0.0327720046043396, -0.002844906412065029, 0.022331075742840767, -0.0006402069120667875, -0.006089170463383198, -0.010169202461838722, 0.00930461473762989, 0.009584576822817326, -0.016493046656250954, 0.0004358964797575027, -0.03847005218267441, -0.03254145011305809, 0.020354874432086945, 0.0024496661499142647, 0.038964103907346725, 0.012639454565942287, -0.09255209565162659, 0.048482805490493774, 0.017966963350772858, 0.0164024718105793, 0.005780389066785574, -0.03058171458542347, -0.012417132034897804, -0.03639503940939903, -0.030812272801995277, -0.02542712353169918, 0.0034274740610271692, -0.029577147215604782, -0.005500426981598139, -0.013174675405025482, -0.04825224727392197, 0.01531556062400341, 0.0518752858042717, -0.03468233346939087, 0.026975147426128387, -0.02430727705359459, -0.019284430891275406, 0.011124366894364357, -0.042784757912158966, 0.00539750000461936, -0.019251493737101555, 0.0014214239781722426, -0.03926053270697594, -0.0003159863699693233, -0.026563439518213272, -0.03695496544241905, 0.007670131511986256, -0.03985339403152466, 0.002023547887802124, 0.02621760405600071, 0.03735020384192467, -0.0028881358448415995, -0.037251394242048264, -0.021919365972280502, 0.004738766234368086, 0.021705277264118195, -0.0023796758614480495, -0.020354874432086945, 0.0011054376373067498, -0.0246037058532238, 0.03886529430747032, 0.003575689159333706, 0.028325552120804787, -0.020354874432086945, -0.08906080573797226, -0.005479841493070126, 0.0010225812438875437, -0.00389476353302598, -0.007287242449820042, -0.0710773766040802, 0.003106341464444995, -0.013751067221164703, 0.01489561703056097, 0.012137169949710369, 0.01691298931837082, -0.01587548479437828, 0.00010028964607045054, -0.00901641882956028, -0.023928504437208176, 0.03478114306926727, -0.013215846382081509, -0.02788090705871582, -0.028901943936944008, -0.042488329112529755, 0.009395190514624119, -0.02351679652929306, 0.007410754915326834, 0.035670433193445206, 0.0036003917921334505, -0.0018372496124356985, -0.005998594220727682, -0.023286238312721252, 0.008958779275417328, -0.008876437321305275, -0.0011785158421844244, -0.018740976229310036, -0.035110510885715485, -0.0020503089763224125, -0.029363058507442474, 0.0066532110795378685, -0.026629311963915825, 0.0013596676290035248, -0.01105025876313448, 0.0060644675977528095, -0.0010786765487864614, 0.0007832756382413208, 0.0040697394870221615, -0.02845729887485504, 0.001557287760078907, -0.009633981622755527, -0.021441783756017685, 0.007970678620040417, 0.001557287760078907, -0.022841593250632286, -0.03389185294508934, -0.005216347984969616, -0.006702616345137358, 0.02542712353169918, -0.005286338739097118, -0.010012753307819366, 0.01257358118891716, 0.006097404286265373, 0.02373088337481022, 0.00945283006876707, -0.010358588770031929, 0.0300876647233963, -0.02954421006143093, -0.012392428703606129, 0.03616448491811752, 0.051512982696294785, -0.019514987245202065, 0.041928403079509735, 0.031075766310095787, 0.011017322540283203, 0.010712658055126667, 0.0409403033554554, 0.017818748950958252, -0.01720941998064518, -0.007945976220071316, 0.05213877931237221, -0.0016828589141368866, -0.016880052164196968, 0.009024652652442455, -0.040051013231277466, 0.011816036887466908, -0.012145403772592545, 0.0019659085664898157, 0.01665773056447506, 0.006570869591087103, 0.0022973341401666403, 0.020980671048164368, 0.023121556267142296, -0.014426269568502903, 0.02017372101545334, -0.04976733773946762, -0.01668243296444416, 0.00641441997140646, 0.004429984837770462, 0.0017302053747698665, 0.007147261407226324, -0.0601094551384449, -0.026085857301950455, 0.038107749074697495, -0.018098710104823112, 0.010943214409053326, -0.02951127290725708, 0.05902254581451416, -0.05332449823617935, -0.04818637669086456, 0.021524125710129738, 0.03471526876091957, -0.0245707705616951, 0.03338133543729782, -0.01516734529286623, -0.014310991391539574, -0.00504754763096571, -0.016567153856158257, 0.02373088337481022, -0.03336486592888832, -0.017983432859182358, -0.00017459018272347748, 0.03655972331762314, 0.005607471335679293, 0.0070649199187755585, -0.02430727705359459, -0.017357634380459785, -0.0006695411284454167, 0.001595370820723474, 0.006990812253206968, 0.007740121800452471, -0.011536074802279472, -0.006253853905946016, 0.02346738986670971, 0.020124316215515137, -0.014945022761821747, -0.024224935099482536, 0.013923984952270985, 0.024126123636960983, 0.0409732423722744, 0.02651403471827507, -0.02625054121017456, 0.011980720795691013, 0.006332078482955694, -0.008279460482299328, -0.000936122436542064, -0.05332449823617935, 0.003804187523201108, -0.030384095385670662, 0.02679399587213993, -0.006809660233557224, 0.006187980528920889, 0.009996284730732441, -0.015669628977775574, 0.0205360259860754, -0.03201446309685707, 0.044958580285310745, 0.014945022761821747, -0.009913943707942963, -0.015101471915841103, 0.006957875564694405, -0.025624744594097137, 0.01216187234967947, 0.007505448069423437, 0.006290907505899668, 0.032640259712934494, -0.022314606234431267, 0.012960586696863174, -0.01271356176584959, -0.028770197182893753, 0.001802254468202591, -0.011264347471296787, 0.00014088154421187937, -0.00900818407535553, 0.00036256088060326874, -0.016040166839957237, -0.03385891765356064, 0.03576924279332161, 0.003050760831683874, -0.00593683822080493, 0.010745594277977943, -0.004347642883658409, 0.012515941634774208, 0.0036786163691431284, 0.024455491453409195, 0.009312848560512066, 0.011387860402464867, 0.01719295233488083, 0.011363158002495766, 0.001971055055037141, 0.04080855846405029, 0.005726866889744997, -0.011140834540128708, -0.014887383207678795, 0.021919365972280502, 0.007711302023380995, 0.007497213780879974, -0.02618466690182686, 0.041928403079509735, -0.0025217151269316673, -0.01245006825774908, -0.021260632202029228, 0.015661396086215973, -0.012524175457656384, -0.024488428607583046, -0.028276147320866585, 0.01134668942540884, -0.010004519484937191, -0.005475724581629038, -0.0012989406241104007, 0.016254255548119545, 0.014195713214576244, 0.026052920147776604, -0.0013318773126229644, -0.0190868116915226, -0.002431139349937439, 0.03982045501470566, -0.03471526876091957, 0.014928554184734821, 0.035900991410017014, -0.057540394365787506, 0.03361188992857933, 0.002447607694193721, 0.0031104586087167263, 0.04038038104772568, -0.0029190140776336193, -0.017719939351081848, -0.006644976790994406, -0.030384095385670662, 0.007279008161276579, -0.014780338853597641, 0.012384194880723953, -0.0328543484210968, -0.01670713536441326, -4.612423072103411e-05, -0.006484410725533962, -0.01748938113451004, 0.021260632202029228, 0.006784957833588123, 0.008975247852504253, 0.053159814327955246, -0.005125772207975388, 0.006863182410597801, -0.026349350810050964, 0.030202943831682205, 0.007456042803823948, 0.016797712072730064, 0.029346588999032974, -0.018740976229310036, 0.03748195245862007, 0.02211698703467846, 0.02272631600499153, 0.011214942671358585, -0.01720941998064518, 0.0046440730802714825, 0.028490236029028893, 0.021524125710129738, -0.012927650474011898, 0.01719295233488083, 0.01487914938479662, -0.02073364518582821, 0.04746176674962044, -0.018658634275197983, 0.011717227287590504, -0.014253351837396622, 0.0205195564776659, 0.04262007400393486, 0.01752231828868389, 0.01743997633457184, 0.031306322664022446, -0.03352954983711243, 0.03249204158782959, -0.0021964653860777617, 0.013174675405025482, 0.027535071596503258, -0.0010297861881554127, -0.03359542414546013, 0.0033718934282660484, -0.016328362748026848, -0.022331075742840767, -0.022890998050570488, -0.013660491444170475, -0.04344349354505539, -0.023286238312721252, -0.030746398493647575, -0.003571572247892618, -0.0005141211440786719, 0.011042024940252304, -0.047659389674663544, 0.009494000114500523, 0.00477170292288065, 0.04479389637708664, 0.025097757577896118, -0.006365015171468258, 0.0012454185634851456, 0.020420746877789497, 0.024998946115374565, 0.021639404818415642, 0.003166039241477847, 0.003946227021515369, -0.0066285086795687675, 0.019218558445572853, 0.0163612999022007, -0.0028263796120882034, -0.032903753221035004, 0.00020328113168943673, 0.029560677707195282, 0.03186624497175217, 0.0029231312219053507, 0.006039765197783709, -0.014648592099547386, 0.037284333258867264, -0.010967917740345001, 0.029083095490932465, -0.0031372196972370148, 0.010827936232089996, 0.01752231828868389, 0.007764824200421572, 0.00900818407535553, 0.005278104450553656, -0.05062368884682655, 0.02050308883190155, -0.0013174675405025482, 0.013742833398282528, -0.014154542237520218, 0.012227745726704597, -0.0019978159107267857, -0.006529698614031076, -0.038667671382427216, -0.020552493631839752, -0.034023597836494446, -0.007834814488887787, 0.021441783756017685, -0.011890145018696785, 0.0040697394870221615, -0.017308229580521584, 0.04318000003695488, -0.024257870391011238, 0.03166862577199936, -0.007731887511909008, 0.030960487201809883, -0.021804088726639748, 0.021507658064365387, 0.018362203612923622, -0.01420394703745842, 0.004110910464078188, -0.03952402621507645, 0.019235026091337204, -0.01801636815071106, -0.013018226251006126, -0.020404279232025146, 0.013396997936069965, -0.016073103994131088, 0.02162293531000614, 0.018938595429062843, -0.020124316215515137, 0.008769392967224121, 0.012483005411922932, 0.01963026635348797, 0.002217050874605775, 0.012540644034743309, 0.019778480753302574, 0.034847017377614975, -0.009806899353861809, 0.025888238102197647, -0.015299092046916485, 0.018444545567035675, -0.022561632096767426, 0.015611990354955196, -0.007978912442922592, 0.0011610182700678706, -0.004187076352536678, -0.0014759753830730915, -0.04133554548025131, 3.244617573727737e-06, 0.008497665636241436, 0.0045946682803332806, 0.012433599680662155, 0.013446402736008167, 0.031026361510157585, 0.0013133505126461387, 0.0058915503323078156, 0.0009778079111129045, -0.035341065376996994, -0.033463675528764725, -0.02185349352657795, 0.014541547745466232, 0.02295687235891819, -0.013471106067299843, 0.007690717000514269, -0.02435668185353279, -0.015562585555016994, -0.018246926367282867, 0.018181052058935165, 0.0010982326930388808, 0.02216639183461666, 0.0036148016806691885, -0.008687051944434643, 0.005698047112673521, 0.027222173288464546, -0.02947833575308323, 0.06623568385839462, 0.0205360259860754, -0.018790381029248238, 0.003750665346160531, 0.018493950366973877, -0.015397901646792889, -0.0024105538614094257, 0.023599136620759964, -0.029017223045229912, -0.00403268588706851, -0.01163488533347845, -0.012079530395567417, 0.02022312767803669, 0.03204739838838577, -0.0017085907747969031, 0.009551639668643475, 0.010902044363319874, 0.025064820423722267, 0.05299513041973114, 0.030696993693709373, -0.017917558550834656, 0.031092233955860138, -0.013232314959168434, -0.0574415847659111, 0.018922127783298492, 0.008547070436179638, 0.004862278699874878, -0.013586384244263172, -0.009839835576713085, -0.039458151906728745, 0.0036950847133994102, 0.008999950252473354, 0.020634835585951805, -0.03438590466976166, 0.04808756709098816, 0.019580861553549767, -0.02188642881810665, 0.026629311963915825, 0.014368630014359951, -0.0032092686742544174, -0.021919365972280502, 0.03110870160162449, 0.014747402630746365, -0.0436411127448082, -0.0035098157823085785, -0.003804187523201108, -0.019893759861588478, 0.02267690934240818, 0.02216639183461666, -0.026892805472016335, 0.03748195245862007, 0.03929346799850464, 0.019564393907785416, -0.021211227402091026, 0.0036374456249177456, -0.007085504941642284, -0.02079951949417591, 0.014096902683377266, 0.0026905157137662172, -0.0052328165620565414, 0.014928554184734821, 0.03751488775014877, -0.018526887521147728, -0.009757493622601032, -0.008859969675540924, -0.011956018395721912, 0.049833208322525024, 0.029725361615419388, -0.02481779456138611, 0.017077673226594925, -0.005978009197860956, 0.02129356935620308, 0.009996284730732441, -0.025838831439614296, 0.03217914327979088, -0.013479339890182018, 0.006109755951911211, -0.026843400672078133, -0.022512227296829224, -0.014006326906383038, 0.006204448640346527, -0.013108802028000355, -0.0018393081845715642, 0.015966059640049934, 0.004891098476946354, 0.010613847523927689, -0.000851207529194653, 0.04390460625290871, -0.012145403772592545, -0.0437728576362133, -0.01382517535239458, -0.019877292215824127, -0.004915800876915455, -0.005372797138988972, -0.0015891952207311988, -0.014171009883284569, 0.028901943936944008, 0.034847017377614975, 0.04262007400393486, 0.03222854807972908, -0.006896119099110365, 0.0301041342318058, -0.027205705642700195, 0.016880052164196968, 0.024784857407212257, 0.026629311963915825, -0.03000532276928425, 0.020815987139940262, 0.022018175572156906, 0.019020937383174896, -0.03007119707763195, -0.015710800886154175, -0.0034707034938037395, -0.0024187881499528885, 0.0026637546252459288, -0.009699854999780655, 0.02374735288321972, -0.00030878145480528474, -0.01364402286708355, -0.011643119156360626, 0.008670583367347717, -0.006644976790994406, -0.007818346843123436, -0.005492192693054676, -0.013751067221164703, 0.008884672075510025, -0.020074911415576935, -0.0016365416813641787, -0.016880052164196968, 0.0409732423722744, 0.01038329117000103, -0.0040594469755887985, -0.02043721452355385, 0.009469297714531422, 0.007805995177477598, -0.011387860402464867, 0.006439122837036848, -0.030417032539844513, 0.015266154892742634, 0.007818346843123436, -0.00845649465918541, -0.03422122076153755, -0.009354019537568092, 0.015957824885845184, 0.01134668942540884, -0.0025875885039567947, -0.02401084639132023, 0.02954421006143093, 0.003126926952973008, -0.029313653707504272, -0.01420394703745842, -0.008242405951023102, 0.017719939351081848, -0.02264397405087948, 0.0011548426700755954, 0.010547974146902561, 0.05062368884682655, 0.009255209937691689, 0.01829633116722107, -0.0001698298001429066, -0.009872772730886936, 0.007192549295723438, 0.03711964935064316, -0.017077673226594925, 0.010580911301076412, -0.03616448491811752, 0.0042900037951767445, 0.027518603950738907, -0.012170106172561646, 0.026168199256062508, 0.031536880880594254, -0.008958779275417328, 0.021260632202029228, 0.017654065042734146, -0.025740021839737892, -0.004298238083720207, -0.002861374756321311, 0.03191564977169037, -0.028243210166692734, -0.005595120135694742, 0.0074148718267679214, -0.012104232795536518, 0.0038288901560008526, 0.007785409688949585, -0.03800893947482109, 0.01666596531867981, -0.0017610836075618863, -0.04265301302075386, 0.009790430776774883, 0.022232264280319214, 0.01966320350766182, 0.005866847466677427, 0.006015062797814608, -0.005253402050584555, -0.002492895582690835, 0.002785208635032177, 0.011783100664615631, 0.012252448126673698, -0.013520510867238045, 0.007509564980864525, -0.03199799358844757, -0.011239645071327686, 0.013067631050944328, 0.005500426981598139, -0.008514134213328362, -6.761027179891244e-05, 0.010630316101014614, 0.0034315912052989006, -0.0004950796137563884, -0.024751922115683556, -0.01408866886049509, 0.022479290142655373, 0.0011311693815514445, -0.0218205563724041, 0.010251544415950775, 0.035670433193445206, -0.03873354569077492, -0.023055681958794594, -0.008884672075510025, -0.014418035745620728, 0.01581784524023533, 0.027930311858654022, -0.028621982783079147, -0.01916915364563465, -0.02923131175339222, -0.016748305410146713, -0.0245707705616951, -0.010836170986294746, 0.02079951949417591, -0.008596476167440414, -0.018362203612923622, -0.02267690934240818, -0.005138123407959938, -0.007423106115311384, 0.0014378923224285245, 0.014450971968472004, -0.006303258705884218, 0.01860922947525978, 0.02244635298848152, -0.016336597502231598, 0.00045287946704775095, -0.010515037924051285, 0.035341065376996994, -0.008621178567409515, -0.03334839642047882, -0.0546419657766819, 0.00930461473762989, -0.018971532583236694, -0.037020839750766754, 0.021655872464179993, -0.009172867983579636, 0.0627773255109787, -0.012845308519899845, 0.010605613701045513, 0.00593683822080493, -0.026102324947714806, -0.01910327933728695, -0.00871998816728592, -0.023599136620759964, -0.009576342068612576, 0.00504754763096571, 0.00820535235106945, 0.002653461880981922, 0.03389185294508934, 0.05790269747376442, -0.029560677707195282, -0.040281571447849274, 0.04535381868481636, -0.0005583798047155142, 0.007826580666005611, -0.019729075953364372, -0.0017209419747814536, -0.022512227296829224, -0.002439373405650258, 0.025789426639676094, 0.0191362164914608, 0.02565767988562584, -0.03616448491811752, -0.019350305199623108, -0.013932219706475735, -0.0042653013952076435, 0.013364061713218689, 0.006583220791071653, 0.010729126632213593, -0.013866346329450607, -0.05908842012286186, -0.01725882478058338, -0.0022294020745903254, -0.014648592099547386, -0.003964753821492195, -0.01804930530488491, 0.009922177530825138, 0.002161470241844654, -0.019877292215824127, 0.028819601982831955, 0.012820606119930744, -0.022001707926392555, 0.028836071491241455, 0.014072200283408165, 0.009782196953892708, 0.0013287895126268268, 0.00831651408225298, -0.017621127888560295, 0.01475563645362854, -0.01964673399925232, -0.022067582234740257, -0.0027131596580147743, 0.026299946010112762, -0.0164024718105793, -0.006377366371452808, 0.03031822107732296, -0.008530602790415287, 0.015463775023818016, -0.01936677284538746, -0.024439023807644844, 0.002470251638442278, -0.006163277663290501, -0.025064820423722267, -0.010457398369908333, 0.010350354015827179, 0.0011301401536911726, 0.007661897223442793, 0.009246975183486938, 0.03682321682572365, 0.010465633124113083, 0.003629211336374283, 0.0035180500708520412, -0.00021949215442873538, -0.02654697187244892, 0.03382597863674164, 0.0013853994896635413, 0.019185621291399002, -0.020865391939878464, 0.007558970246464014, 0.0007729828939773142, 0.003511874470859766, 0.01880684867501259, -0.008530602790415287, -0.020667772740125656, 0.016336597502231598, -0.006966109853237867, 0.006327961105853319, 0.002906662877649069, 0.0034007132053375244, 0.02159000001847744, 0.03058171458542347, 0.026118794456124306, 0.005821559578180313, -0.005640408024191856, -0.03178390488028526, 0.0009242858504876494, -0.00702786585316062, 0.024949541315436363, 0.022199328988790512, -0.00098964455537498, 0.005784505978226662, -0.0009953055996447802, 0.01639423705637455, 0.0014306873781606555, -0.006052116397768259, -0.01880684867501259, 0.03115810826420784, 0.012318321503698826, -0.0019381182501092553, -0.01245006825774908, -0.022067582234740257, -0.0044135162606835365, 0.007731887511909008, 0.02781503275036812, -0.02761741355061531, -0.010679720900952816, -0.018790381029248238, -0.011700758710503578, -0.0116019481793046, 0.010391524992883205, 0.03035115823149681, 0.01720941998064518, 0.048482805490493774, 0.010762062855064869, -0.00955987349152565, 0.04472802206873894, 0.00790480524301529, -0.002890194533392787, 0.014665060676634312, 0.013067631050944328, -0.010457398369908333, -0.015060300938785076, -0.018790381029248238, -0.008950545452535152, -0.0023673244286328554, -0.016855349764227867, -0.004747000057250261, 0.03244263678789139, 0.003773309290409088, -0.010613847523927689, -0.01745644584298134, 0.0068302457220852375, -0.04347642883658409, 0.013257017359137535, -0.018230456858873367, 0.03163569048047066, -0.005319275427609682, -0.013042928650975227, -0.007892454043030739, 0.006241502705961466, 0.005578651558607817, 0.001971055055037141, -0.011190240271389484, -0.02325330302119255, -0.01382517535239458, -0.004899332299828529, -0.01446744054555893, -0.003686850657686591, -0.014862680807709694, 0.02541065588593483, -0.02674459107220173, -0.006961992476135492, -0.015957824885845184, 0.012326555326581001, 0.00452056061476469, -0.010605613701045513, 0.009963348507881165, -0.026398755609989166, 0.0001549053704366088, -0.027469199150800705, 0.025081288069486618, -0.008275343105196953, 0.023319175466895103, -0.0013905458617955446, 0.011717227287590504, 0.02458723820745945, -0.02404378354549408, -0.03461645916104317, 0.0010766179766505957, -0.008386503905057907, -0.008851734921336174, -0.005368680227547884, 0.03876648098230362, 0.008827032521367073, 0.012170106172561646, 0.0015964001649990678, 0.02103007584810257, 0.0033266055397689342, -0.014171009883284569, 0.0024434905499219894, -0.016880052164196968, 0.02160646766424179, -0.001488326583057642, -0.02295687235891819, 0.0001233195944223553, -0.013553447090089321, 0.02027253247797489, -0.010300949215888977, -0.02702455222606659, 0.0122771505266428, -0.004808756522834301, 0.020914796739816666, -0.010539740324020386, 0.008670583367347717, -0.008283576928079128, 0.001823869184590876, -0.004351759795099497, -0.0031475122086703777, 0.0019432646222412586, 0.019037406891584396, -0.008024200797080994, 0.00804478581994772, 0.011988954618573189, 0.004302354995161295, 0.001274238107725978, -0.019465582445263863, 0.008596476167440414, -0.015513180755078793, 0.0007863634382374585, 0.00075136823579669, -0.006509113125503063, -0.016246020793914795, -0.0015171462437137961, -0.004837576299905777, -0.016171913594007492, 0.0008455465431325138, 0.02214992232620716, 0.02160646766424179, -0.019284430891275406, -0.020074911415576935, 0.023088619112968445, -0.004928152076900005, 0.03356248512864113, -0.002997238654643297, 0.006183863151818514, 0.011305518448352814, -0.03438590466976166, 0.0273539200425148, 0.011256113648414612, -0.009362253360450268, -0.0020348697435110807, 0.012326555326581001, 0.016023699194192886, 0.013471106067299843, 0.002198524074628949, 0.00845649465918541, 0.01487914938479662, -0.017077673226594925, 0.005257518962025642, -0.004549379926174879, 0.020371342077851295, -0.003219561418518424, 0.05101893097162247, 0.016262490302324295, 0.004763468634337187, -0.0024270222056657076, 0.020058443769812584, -0.08530602604150772, 0.029692424461245537, -0.010218607261776924, 0.006348546594381332, -0.0028881358448415995, 0.0025752373039722443, 0.0018588643288239837, 0.01105849351733923, 0.00297459471039474, 0.012367726303637028, -0.007694833911955357, 0.0015068534994497895, 0.01326525118201971, 0.001601546537131071, -0.005784505978226662, -0.028226742520928383, -0.010004519484937191, 0.010638550855219364, 0.0019144450780004263, -0.009049355052411556, -0.01107496116310358, -0.011791334487497807, 0.002515539526939392, -0.0034007132053375244, 0.00016687063907738775, -0.006467942148447037, 0.004574082791805267, 0.010375057347118855, -0.0286878552287817, 0.03632916882634163, -0.017654065042734146, 0.006702616345137358, 0.0036189185921102762, 0.0005419114604592323, 0.03412241116166115, 0.027798565104603767, -0.01108319591730833, 0.018642166629433632, -0.010860873386263847, 0.010613847523927689, 0.0003193314769305289, 0.014525080099701881, -0.011264347471296787, 0.002583471592515707, -0.02979123406112194, -0.021935835480690002, -0.00472229765728116, -0.003460410749539733, 0.015093237161636353, -0.0007482803775928915, -0.007645428646355867, 0.011544309556484222, 0.01394045352935791, -0.02598704770207405, -0.0019988452550023794, -0.008711754344403744, 0.0005635261768475175, 0.0014389215502887964, 0.0024208466056734324, -0.006986694876104593, 0.0008455465431325138, 0.006871416699141264, -0.0034171815495938063, 0.014022795483469963, 0.013331124559044838, 0.0232203658670187, -0.007670131511986256, 0.002126474864780903, 0.008514134213328362, 0.006784957833588123, -0.004981674253940582, 0.006072701886296272, -0.009181101806461811, -0.00818064995110035, 0.0259541105479002, -0.0015243510715663433, -0.0012711503077298403, -0.022067582234740257, -0.00027018378023058176, 0.007608375046402216, -0.0034027716610580683, -0.007550735957920551, 0.01938324049115181, 0.01422864943742752, -0.00807772297412157, -0.024801326915621758, -0.016435407102108, -0.00830827932804823, 0.01338052935898304, -0.007530150469392538, -0.019037406891584396, 0.007575438357889652, -0.015332028269767761, -0.014829743653535843, -0.01883978582918644, 0.017357634380459785, 0.014105136506259441, -0.053159814327955246, 0.005068133119493723, -0.026958679780364037, -0.0029087213333696127, 0.025822363793849945, 0.004714063368737698, -0.03408947214484215, 0.0038680024445056915, -0.01916915364563465, -0.011371391825377941, 0.0006144751096144319, 0.0075960238464176655, -0.009584576822817326, -0.025081288069486618, -0.03161922097206116, 0.0057351007126271725, 0.017637597396969795, 0.017011798918247223, -0.015990762040019035, -0.013174675405025482, 0.008884672075510025, 0.037317268550395966, 0.016789477318525314, 0.011881910264492035, 0.037844255566596985, -0.0002273403515573591, -0.01381694059818983, 0.006187980528920889, 0.003960636910051107, 0.0019144450780004263, -0.006974343676120043, -0.00012563545897137374, -0.015348496846854687, 0.01971260830760002, -0.010136266238987446, -0.0232203658670187, 0.0053563290275633335, 0.01381694059818983, 0.03804187476634979, 0.028490236029028893, -0.02567414939403534, -0.00012145403889007866, 0.00901641882956028, -0.020898329094052315, 0.009897475130856037, -0.015982527285814285, -0.0003062082687392831, -0.007233720272779465, -0.01971260830760002, 0.014945022761821747, -0.009741025976836681, 0.009337550960481167, 0.004458804149180651, 0.01827986165881157, -0.0204866211861372, -0.012639454565942287, 0.031289853155612946, 4.872957288171165e-05, -0.0492074117064476, -0.013899282552301884, -0.015414370223879814, 0.01382517535239458, -0.006731435656547546, 0.00435999408364296, -0.00043744040885940194, -0.02272631600499153, -0.014920320361852646, 0.008176532573997974, -0.01855982467532158, 0.019185621291399002, 0.03662559762597084, 0.0019535573665052652, -0.01490385178476572, 0.00860470999032259, -0.03860180079936981, -0.0005527188186533749, -0.00031778757693246007, 0.00252994941547513, -0.006097404286265373, 0.0005738188629038632, -0.027436261996626854, 0.03692202642560005, 0.020124316215515137, -0.004257067106664181, 0.004607019480317831, -0.01581784524023533, 0.00217999704182148, 0.0066285086795687675, 0.0040306271985173225, -0.00168800528626889, -0.03636210411787033, 0.0009114199201576412, 0.009675152599811554, 0.005788622889667749, 0.003962695132941008, -0.036757346242666245, -0.013331124559044838, 0.008843501098453999, 0.03135572746396065, -0.010399759747087955, -0.007970678620040417, 0.006887884810566902, -0.020832454785704613, -0.00745192589238286, 0.02270984649658203, -0.0003512389084789902, -0.0190868116915226, 0.023879099637269974, -0.0024187881499528885, -0.00835356768220663, 0.041434355080127716, -0.014730934053659439, 0.005591002758592367, -0.030680526047945023, -0.014689763076603413, -0.04476096108555794, -0.00832886528223753, -0.003128985408693552, -0.0003728535957634449, -0.024488428607583046, 0.007410754915326834, -0.021935835480690002, 0.019729075953364372, 0.003674499224871397, 0.024142593145370483, 0.0020214891992509365, -0.013495808467268944, -0.006974343676120043, -0.015332028269767761, -0.009246975183486938, 0.00040630492730997503, -0.013784004375338554, 0.0011373449815437198, -0.005516895558685064, -0.019020937383174896, 0.03873354569077492, -0.003260732162743807, 0.00832063052803278, -0.00710197351872921, 0.012359492480754852, 0.0029416580218821764, 0.01826339401304722, 0.01938324049115181, -0.016311895102262497, -0.005343977827578783, 0.004903449676930904, 0.014912085607647896, -0.003328663995489478, 0.006723201368004084, 0.011305518448352814, 0.008983481675386429, -0.00026194960810244083, -0.018938595429062843, -0.015142642892897129, 0.021441783756017685, 6.439379649236798e-05, 0.020585430786013603, 0.019053874537348747, 0.005302806850522757, 0.010111563839018345, 0.02266044169664383, -0.02019019052386284, 0.00034068888635374606, 0.006303258705884218, 0.007698950823396444, 0.02975829876959324, -0.020157253369688988, 0.013487573713064194, 0.013709896244108677, 0.011478436179459095, 0.013364061713218689, -0.018971532583236694, 0.010399759747087955, 0.009848070330917835, 0.01910327933728695, 0.006595571991056204, -0.006377366371452808, -0.024471959099173546, -0.01543083880096674, -0.006875533610582352, -0.012260681949555874, 0.004071798175573349, 0.01580137573182583, 0.020585430786013603, 0.01338876411318779, 0.0003710523888003081, -0.00561158824712038, 0.005640408024191856, -0.013034694828093052, -0.010169202461838722, -0.03110870160162449, 0.015076769515872002, 0.0012907064519822598, -0.006043882574886084, -0.02434021234512329, 0.007851283065974712, -0.002094567520543933, -0.010177437216043472, 0.004685244057327509, -0.020700708031654358, 0.014014560729265213, 0.010473866946995258, 0.0029581263661384583, 0.016443641856312752, -0.006525581236928701, -0.002371441572904587, 0.0038927048444747925, -0.001664331997744739, 0.016863584518432617, -0.02132650651037693, 0.013322890736162663, 0.02463664300739765, 0.014360396191477776, -0.004747000057250261, 0.009485766291618347, -0.004156198352575302, -0.016534218564629555, 0.008085956797003746, -0.012639454565942287, -0.011124366894364357, -0.013084099628031254, 0.04756058007478714, -0.002700808458030224, 0.012153638526797295, -0.0010519154602661729, 0.003942110110074282, -0.03117457590997219, 0.0013689311454072595, 0.008431792259216309, 0.015603756532073021, -0.016756540164351463, 0.00915639940649271, -0.019531456753611565, 0.004172666929662228, 0.013545213267207146, -0.01379223819822073, 0.02244635298848152, 0.008390621282160282, 0.00015258950588759035, -0.0005712456768378615, -0.016254255548119545, 0.00040733421337790787, 0.007978912442922592, -0.011042024940252304, -0.00743957469239831, 0.003680675057694316, 0.015488477423787117, -0.00524928467348218, 0.01489561703056097, -0.01545554120093584, 0.013701662421226501, -0.008514134213328362, -0.0005552920047193766, -0.020898329094052315, -0.02381322532892227, -0.008402972482144833, 0.00022605375852435827, 0.0030404680874198675, 0.004137671552598476, -0.011017322540283203, 0.006612040102481842, -0.004125320352613926, -0.017110610380768776, 0.023072149604558945, 0.0021347091533243656, -0.009930411353707314, -0.014780338853597641, 0.003050760831683874, -0.00334513233974576, -0.014747402630746365, -0.01050680410116911, -0.01636953465640545, -0.007456042803823948, 0.010836170986294746, 0.00778952706605196, 0.02733745239675045, 0.003052819287404418, 0.0007235778612084687, -0.009666917845606804, 0.00832886528223753, 0.01256534643471241, -0.022199328988790512, -0.005228699184954166, -0.00901641882956028, -0.01516734529286623, -0.01661655865609646, -0.011914847418665886, -0.002194406930357218, -0.015504946000874043, 0.02572355419397354, 0.00031572903390042484, -0.0044670384377241135, 0.035703372210264206, 0.016838882118463516, -0.013981624506413937, -0.0008831149898469448, 0.0014595070388168097, 0.022874530404806137, -1.7240297893295065e-05, -0.00997158233076334, 0.007126675918698311, -0.009115228429436684, -0.001748732291162014, -0.013866346329450607, -0.027749160304665565, -0.0018413667567074299, 0.00601094588637352, 0.004269418306648731, -0.01692945882678032, 0.0012629161356016994, -0.012705327942967415, -0.013784004375338554, -0.02262750454246998, -0.009238741360604763, 0.004368228372186422, 0.0191197469830513, 0.004351759795099497, -0.019498519599437714, 0.009881006553769112, -0.0034645278938114643, -0.011544309556484222, -0.015521414577960968, 0.00985630415380001, 0.011445499025285244, 0.01804930530488491, -0.00015927976346574724, -0.01490385178476572, 0.01743997633457184, 0.0020739820320159197, -0.012680625542998314, 0.003643621224910021, -0.005521012470126152, -0.00491168349981308, -0.010745594277977943, 0.02432374469935894, -0.004351759795099497, -0.00690023647621274, 0.014294522814452648, 0.013627555221319199, -0.02951127290725708, -0.028259679675102234, -0.005146357696503401, 0.0003458352293819189, 0.018230456858873367, -0.029165437445044518, 0.02129356935620308, 0.0070608025416731834, -0.00968338642269373, -0.004845810122787952, -0.015957824885845184, -0.009963348507881165, 0.011412562802433968, 0.013891048729419708, 0.005961540620774031, -0.004574082791805267, 0.013018226251006126, -0.0019463524222373962, 0.006208566017448902, -0.00047295025433413684, 0.013446402736008167, -0.00716372998431325, 0.01542260404676199, -0.0064473566599190235, -0.001824898412451148, 0.017143545672297478, 0.003336898284032941, 0.03308490291237831, 0.0011764573864638805, -0.003303961595520377, -0.013182909227907658, 0.012030125595629215, 0.021145354956388474, -0.021952303126454353, 0.004302354995161295, 0.0027707989793270826, -0.009601044468581676, 0.005282221361994743, -0.029643019661307335, 0.023895567283034325, 0.0015233218437060714, 0.008925843052566051, -0.0012176282471045852, -0.018675101920962334, -0.006974343676120043, 0.004812873434275389, 0.00846472941339016, 0.022215796634554863, -0.003909173421561718, 0.029297184199094772, 0.013009992428123951, 0.003985339310020208, -0.00017330358969047666, 0.008505899459123611, 0.003962695132941008, -0.015480243600904942, 0.03147100657224655, -0.004668775480240583, 0.00365185528062284, -0.006187980528920889, -0.0016910930862650275, 0.018428077921271324, -0.020140785723924637, 0.004049153998494148, 0.009230506606400013, -0.006179746240377426, -0.021112417802214622, -0.015636693686246872, -0.003824773011729121, 0.002622583881020546, 0.007147261407226324, 0.004187076352536678, -0.004421750549226999, 0.01829633116722107, 0.017719939351081848, 0.0016066927928477526, -0.007254305761307478, -0.012474770657718182, -0.0006077848374843597, 0.010004519484937191, -0.0037321385461837053, -0.009757493622601032, -0.0015006778994575143, 0.017966963350772858, 0.011544309556484222, -0.006929055787622929, -0.01175839826464653, 0.0021964653860777617, -0.00778952706605196, -0.0246037058532238, 0.00036796455970034003, 0.006208566017448902, -0.05302806943655014, 0.0007858488243073225, 0.018131647258996964, -0.006797309033572674, -0.005146357696503401, 0.02896781824529171, 0.007838931865990162, 0.00968338642269373, 0.035637497901916504, 0.014442738145589828, 0.0070072803646326065, 0.007287242449820042, -0.005043430253863335, -0.006937290076166391, 0.003030175343155861, -0.0006618215702474117, -0.002960184821859002, 0.00927991233766079, 0.021935835480690002, -0.007690717000514269, 0.027255110442638397, -0.018164584413170815, -0.0035262841265648603, 0.02134297415614128, 0.020881861448287964, 0.007678365334868431, 0.011280816048383713, -0.006080936174839735, 0.026415225118398666, -0.031256917864084244, 0.0011435206979513168, -0.012326555326581001, -0.014409800991415977, 0.016476579010486603, 0.004549379926174879, -0.0018876839894801378, 0.0019494402222335339, -0.010959682986140251, -0.005669227335602045, -3.247029962949455e-05, -0.010696189478039742, -0.007546618580818176, -0.00710197351872921, 0.018148114904761314, 0.01434392761439085, 0.02435668185353279, -0.012705327942967415, -0.0009320053504779935, 0.026085857301950455, -0.03494582697749138, -0.010556208901107311, -0.014096902683377266, 0.018362203612923622, -0.0022067581303417683, -0.0066243913024663925, 0.025888238102197647, -0.0095434058457613, 0.016237787902355194, 0.011412562802433968, 0.00702786585316062, 0.003534518415108323, 0.010193904861807823, -0.004397048149257898, 0.017687002196907997, -0.0023632075171917677, 0.005199879873543978, -0.016237787902355194, -0.029593614861369133, 0.0038371242117136717, 0.026843400672078133, -0.011906612664461136, -0.0023590903729200363, 0.008411207236349583, -0.023286238312721252, -0.00691258767619729, -0.011684290133416653, 0.004532911814749241, -0.0007498242775909603, -0.004730531945824623, -0.00472229765728116, -0.015060300938785076, -0.02104654349386692, -0.0008460612152703106, 0.012771201319992542, 0.0009160516783595085, 0.005298689939081669, -0.01161018293350935, -0.0020770698320120573, 0.007575438357889652, 0.00695375818759203, 0.0012824722798541188, -0.008386503905057907, 0.0030425265431404114, -0.0015058242715895176, 0.000729238847270608, -0.02079951949417591, 0.01748938113451004, 0.004285886418074369, -0.0029704775661230087, 0.009172867983579636, 0.023154491558670998, 0.0038103631231933832, 0.002523773815482855, 0.014780338853597641, 0.0016365416813641787, 0.0010092006996273994, -0.017719939351081848, 0.010893809609115124, 0.015784908086061478, 0.009699854999780655, -0.004252949729561806, 0.016509514302015305, 0.00023557452368550003, 0.013413466513156891, -0.01615544594824314, 0.007130793295800686, 0.014772105030715466, 0.01776934415102005, -0.0035983333364129066, -0.008172416128218174, -0.002239694818854332, -0.012557112611830235, -0.0008115805685520172, -0.01611427403986454, -0.0040450370870530605, 0.01464035827666521, -0.013841642998158932, -0.016007231548428535, -0.032656725496053696, 0.0018650400452315807, -0.0042076618410646915, -0.007085504941642284, -0.006784957833588123, 0.0017137370305135846, -0.007410754915326834, 0.014697996899485588, 0.017011798918247223, -0.0035983333364129066, 0.0191197469830513, 0.001978259766474366, 0.0025340665597468615, -0.006772606633603573, -0.0013606969732791185, 9.73948190221563e-05, -0.004631721880286932, 0.0020503089763224125, -0.017687002196907997, -3.883891622535884e-06, -0.0014461264945566654, -0.014796807430684566, -0.009321083314716816, 0.005957423709332943, -0.017061205580830574, -0.014253351837396622, 0.00927167758345604, 0.02023959532380104, 0.010432695969939232, 0.01860922947525978, -0.03662559762597084, 0.01161018293350935, 0.0003069802187383175, 0.010226842015981674, -0.008859969675540924, -0.00416031526401639, -0.008015966974198818, 0.005010493565350771, 0.011396094225347042, -0.007155495695769787, -0.016188383102416992, 0.0021285335533320904, 0.008275343105196953, -0.013248782604932785, -0.0075425016693770885, 0.008991716429591179, 0.010070392861962318, 0.002301451051607728, 0.01025977823883295, 0.026431692764163017, 0.0012073355028405786, -0.005488075781613588, 0.005146357696503401, -0.005212231073528528, -0.0015696390764787793, 0.013866346329450607, -0.011659587733447552, 7.938256749184802e-05, -0.01408866886049509, 0.02023959532380104, 0.009922177530825138, -0.012079530395567417, 0.007686599623411894, -0.02564121223986149, 0.008020083419978619, 0.03091108240187168, -0.0007508535636588931, -0.01717648282647133, 0.013932219706475735, 0.02023959532380104, 0.028226742520928383, 0.0017425566911697388, -0.004499975126236677, 0.011684290133416653, -0.01202189177274704, 0.02246282249689102, 0.019465582445263863, -0.004425867460668087, 0.013759301975369453, -0.0025175982154905796, 0.002820204012095928, -0.0006649094284512103, 0.0010483129881322384, 0.00846472941339016, 0.005022845230996609, 0.006887884810566902, 0.012252448126673698, -0.0005321333883330226, 0.02214992232620716, -0.00945283006876707, -0.004057388287037611, 0.020404279232025146, 0.007097856607288122, 0.006739669945091009, 0.009354019537568092, -0.025064820423722267, -0.012063061818480492, 0.0002668386441655457, 0.02346738986670971, -0.009502234868705273, -0.027732692658901215, 0.009246975183486938, -0.011149069294333458, 0.0071596126072108746, 0.00913169700652361, 0.02211698703467846, 0.011733694933354855, 0.013569915667176247, 0.021919365972280502, 0.018658634275197983, -0.008999950252473354, 0.007192549295723438, -0.01464035827666521, 0.02236401103436947, 0.018922127783298492, -0.00795009359717369, -0.027403324842453003, -0.004211779218167067, -0.005162825807929039, 0.01938324049115181, 0.010836170986294746, -0.01011979766190052, 0.011404328048229218, 0.0015737561043351889, 0.012927650474011898, -0.013668726198375225, -0.00013393395056482404, -0.0023590903729200363, -0.0033945373725146055, 0.012128935195505619, -0.007558970246464014, 0.002684340113773942, -0.012112467549741268, -0.013174675405025482, -0.00860470999032259, 0.007818346843123436, -0.004185018129646778, -0.014426269568502903, -0.008917608298361301, 0.0011157303815707564, 0.0012011599028483033, -0.0017929909517988563, -0.02781503275036812, 0.005306923761963844, -0.005842145066708326, 0.012120701372623444, 0.0032113271299749613, -0.0044958582147955894, -0.005870964843779802, 0.006760255433619022, 0.032129738479852676, 0.006587337702512741, 0.02043721452355385, 0.006896119099110365, 0.001149696297943592, -0.021968770772218704, -0.007443691603839397, 0.001709620002657175, 0.0031372196972370148, 0.01692945882678032, -0.003824773011729121, -1.4104236470302567e-05, -0.0007060802890919149, -9.507895447313786e-05, -0.018115179613232613, 0.013956922106444836, 0.00805302057415247, -0.013182909227907658, -0.005809208378195763, 0.013133504427969456, -0.007279008161276579, -0.015727268531918526, 0.02185349352657795, -0.004040920175611973, -0.006665562279522419, 0.030762868002057076, -0.006187980528920889, 0.017637597396969795, 0.027452729642391205, 0.006607923191040754, 0.015364965423941612, -0.0035448111593723297, 0.004936386365443468, -0.019860822707414627, 0.001165135414339602, 0.002875784644857049, -0.0010930863209068775, 0.0061468095518648624, 0.009214038960635662, -0.015694331377744675, -0.012779435142874718, 0.003917407244443893, 0.0017013858305290341, 0.019580861553549767, 0.00955987349152565, -0.017390571534633636, -0.006879650987684727, -0.0016066927928477526, 0.013289953581988811, -0.0029457751661539078, 0.033463675528764725, -0.004512326326221228, 0.006537932902574539, -0.015183813869953156, 0.01994316466152668, -0.007328413426876068, -0.0003090387617703527, -0.006566752213984728, -0.004578199703246355, -0.0034068888053297997, 0.003213385585695505, 0.0032339710742235184, -0.008530602790415287, 0.002241753274574876, 0.04756058007478714, 0.006348546594381332, 0.0035324599593877792, -0.02381322532892227, 0.007167846895754337, -0.01285354234278202, -0.013923984952270985, 0.02893488109111786, 0.00025615995400585234, -2.475076325936243e-05, 0.014648592099547386, 0.03448471426963806, -0.012137169949710369, 0.007962444797158241, 0.010440930724143982, 0.010490335524082184, 0.0002938570105470717, -0.0002691544941626489, -0.019053874537348747, -0.004166491329669952, 0.01615544594824314, 0.013001757673919201, 0.02183702401816845, 0.007246071472764015, -0.0204701516777277, 0.007847165688872337, 0.013709896244108677, -0.009633981622755527, 0.008827032521367073, -0.0064761764369904995, -0.013808706775307655, 0.020898329094052315, -0.008580007590353489, 0.008151830174028873, 0.011470201425254345, 0.0004629148752428591, 0.024224935099482536, -0.015463775023818016, -0.000560438318643719, -0.00018385362636763602, 0.01583431288599968, -0.02704102173447609, -0.0033307226840406656, -0.006257970817387104, -0.004965205676853657, -0.0021923482418060303, 0.0015150876715779305, -0.014236883260309696, -0.0015099412994459271, 0.011470201425254345, -0.0143521623685956, 0.0016602149698883295, -0.005051664542406797, -0.010062158107757568, -0.009658684022724628, -0.0010328739881515503, 0.009625746868550777, -0.012054827995598316, -0.007563087157905102, -0.006669679656624794, 0.010111563839018345, 0.00013380529708229005, 0.0033142543397843838, -0.015554350800812244, 0.012293619103729725, -0.0031639805529266596, 0.009749259799718857, 0.007666014134883881, -0.011099664494395256, 0.012071296572685242, 0.005389265716075897, 0.012170106172561646, 0.005718632601201534, -0.019235026091337204, 0.0025402421597391367, -0.010399759747087955, 0.014113371260464191, -0.01119847409427166, 0.015488477423787117, -0.008827032521367073, -0.010169202461838722, -0.02954421006143093, -0.007196666672825813, -0.0022952754516154528, -0.009798664599657059, 0.013454637490212917, 0.01052327174693346, 0.014533313922584057, 0.0006082994514144957, -0.013602852821350098, -0.0030384096316993237, 0.010366822592914104, -0.012334790080785751, 0.00997158233076334, 0.009815133176743984, -0.025213034823536873, -0.011956018395721912, -0.003322488395497203, -0.014113371260464191, -0.005500426981598139, -0.00848943181335926, 0.008777627721428871, 0.0032772005070000887, 0.009675152599811554, 0.021919365972280502, -0.018461013212800026, 0.014171009883284569, 0.022199328988790512, 0.007517799269407988, -0.015924889594316483, 0.018197519704699516, 0.004347642883658409, 0.015620224177837372, -0.017934026196599007, 0.0071843150071799755, 0.006657327990978956, -0.006686147768050432, -0.009230506606400013, -0.000912449206225574, 0.0232697706669569, -0.020980671048164368, 0.03178390488028526, 0.00435999408364296, 0.017341166734695435, -0.014788573607802391, -0.007204900495707989, -0.006986694876104593, -0.02401084639132023, 0.00020482503168750554, 0.02239694818854332, -0.006937290076166391, -0.0075672040693461895, -1.428114228474442e-05, 0.02264397405087948, -0.013042928650975227, -0.0034851133823394775, -0.006360897794365883, 0.009469297714531422, -0.03711964935064316, -0.022248733788728714, -0.0055333636701107025, 0.009864537976682186, 0.009699854999780655, 0.015908420085906982, -0.024718984961509705, -0.00526163587346673, -0.025624744594097137, -0.013742833398282528, -0.01776934415102005, -0.00372596294619143, -0.014739167876541615, 0.010317417792975903, 0.0001368931116303429, -0.020618367940187454, 0.011593714356422424, 0.020091380923986435, 0.01079500000923872, -0.0038927048444747925, 0.00021769093291368335, -0.017835216596722603, -0.013586384244263172, 0.0191362164914608, -0.0036189185921102762, -0.019794950261712074, -0.02264397405087948, 0.0023220365401357412, 2.3335514924838208e-05, 0.002929306821897626, 0.007591906934976578, -0.006566752213984728, 0.0004358964797575027, 0.005488075781613588, -0.012483005411922932, 0.01311703585088253, -0.002293216995894909, 0.012375961057841778, -0.005574534647166729, 0.0026925744023174047, -0.0049446201883256435, 0.007139027118682861, -0.008143596351146698, 0.02190289832651615, -0.0004968808498233557, 0.008917608298361301, 0.016896521672606468, -0.02541065588593483, 0.025180097669363022, -0.005306923761963844, -0.033710699528455734, -0.036724407225847244, -0.004339408595114946, 0.014945022761821747, -0.008761159144341946, -0.011453733779489994, -0.012557112611830235, 0.01915268413722515, 0.0009309760644100606, 0.0129770552739501, -0.005932720843702555, -0.0070072803646326065, 0.009699854999780655, -0.014179244637489319, -0.0036209772806614637, -0.011527840979397297, 0.00341924000531435, 0.008398856036365032, 0.017110610380768776, 0.004611136391758919, -0.01691298931837082, 0.00628679059445858, -0.021095948293805122, 0.02483426406979561, -0.013734599575400352, 0.014986193738877773, 0.0012485063634812832, -0.011042024940252304, 0.010885575786232948, 0.017802279442548752, 0.016229553148150444, -0.014278054237365723, -0.010317417792975903, 0.0003496950084809214, -0.009494000114500523, 0.001111613237299025, 0.0030342924874275923, 0.014673294499516487, -0.002737862290814519, 0.020964201539754868, -0.018378673121333122, -0.006459707859903574, -0.037020839750766754, -0.009592810645699501, -0.0232203658670187, -0.021474720910191536, 0.0050269621424376965, 0.00648852763697505, 0.024191997945308685, 0.009485766291618347, -0.010482100769877434, 0.013347593136131763, -0.0015243510715663433, 0.014558016322553158, 0.01775287464261055, 0.006360897794365883, 0.012137169949710369, -0.02816086821258068, -0.02760094590485096, 0.006377366371452808, 0.00830827932804823, 0.007851283065974712, 0.02513069286942482, -0.010432695969939232, 0.0015202340437099338, 0.00138128234539181, -0.011816036887466908, -0.0003123838978353888, 0.004961088765412569, 0.014483909122645855, 0.01722588762640953, 0.027946779504418373, -0.0005933750071562827, -0.01720941998064518, -0.00047423684736713767, -0.004077973775565624, -0.010992620140314102, 0.0024599588941782713, 0.005245167762041092, -0.0021923482418060303, -0.009263443760573864, -0.002608173992484808, -0.0013082041405141354, -0.010276246815919876, -0.017983432859182358, -3.2212981750490144e-05, -0.006484410725533962, -0.02399437688291073, 0.016740072518587112, -0.0021048602648079395, 0.00970808882266283, 0.0025196566712111235, 0.016460109502077103, 0.026942212134599686, 0.03189918398857117, -0.007686599623411894, -0.003260732162743807, -8.253470878116786e-05, 0.010704424232244492, 0.0020081086549907923, -0.0009484736947342753, -0.021672341972589493, -0.001373048173263669, -0.00832063052803278, -0.0039009391330182552, 0.006673796568065882, -0.017028268426656723, 0.0009870714275166392, -0.01750585064291954, -0.010951449163258076, 0.008571772836148739, 0.009345785714685917, 0.0064514740370213985, 0.009139930829405785, 0.012186574749648571, 0.010325651615858078, 0.002245870418846607, 0.010902044363319874, 0.004882864188402891, 0.014294522814452648, -0.0016190441092476249, -0.004611136391758919, 0.022858062759041786, 0.008769392967224121, 0.02027253247797489, -0.023072149604558945, 0.014401567168533802, 0.023319175466895103, -0.004891098476946354, -0.011000853963196278, -0.004664658568799496, -0.010605613701045513, 0.0011445499258115888, 0.023599136620759964, -0.0018074008403345942, 0.00464818999171257, -0.0052328165620565414, 0.010366822592914104, -0.015751970931887627, 0.006047999486327171, -0.003091931575909257, 0.0038453585002571344, 0.013660491444170475, 0.005574534647166729, -0.002776974579319358, -0.008032434619963169, -0.001602575764991343, -0.0070072803646326065, -0.01310056820511818, 0.012104232795536518, 0.019860822707414627, -0.01608133874833584, 0.01938324049115181, -0.00771541940048337, -0.010473866946995258, -0.014566250145435333, 0.0045946682803332806, -0.00036178893060423434, -0.013849877752363682, -0.00040784882730804384, -0.002093538176268339, 0.0050269621424376965, 0.002239694818854332, 0.01589195244014263, -0.025805896148085594, -0.01832926645874977, -0.05678285285830498, -0.0022108752746134996, -0.006797309033572674, 0.010984385386109352, -0.016023699194192886, 0.006735553033649921, 0.012919415719807148, 0.006047999486327171, 0.012499473057687283, 0.01582607813179493, -0.0003864914469886571, -0.015348496846854687, -0.004734648857265711, 0.008802330121397972, -0.0053316266275942326, 0.0005226125940680504, 0.020717177540063858, -0.00711432471871376, -0.004512326326221228, 0.0088682034984231, -0.02407671883702278, 0.013289953581988811, -0.010070392861962318, 0.0006237385678105056, 0.02570708468556404, -0.010696189478039742, 0.006784957833588123, 0.02025606296956539, -0.014508611522614956, -0.03061465173959732, 0.007134910207241774, -0.01406396646052599, 0.008909374475479126, 0.011445499025285244, 0.03175096958875656, -0.005199879873543978, 0.0191197469830513, -0.011906612664461136, -0.005628056824207306, 0.015463775023818016, 0.008448260836303234, -4.181415533821564e-07, 0.008176532573997974, -0.0010210373438894749, 0.005516895558685064, -0.008563539013266563, 0.00021781958639621735, -0.001992669655010104, 0.0163860023021698, -0.008337099105119705, -0.009189336560666561, -0.011107898317277431, -0.0163860023021698, 0.0300382599234581, -0.002078099176287651, -0.017621127888560295, 0.007554852869361639, -0.026052920147776604, 0.006360897794365883, 0.01722588762640953, 0.018230456858873367, -0.016814179718494415, -0.01542260404676199, 0.006546166725456715, 0.004792288411408663, -0.010202139616012573, -0.009642215445637703, 0.030680526047945023, 0.007810112088918686, 0.025888238102197647, -0.025180097669363022, -0.016311895102262497, -0.00941989291459322, 0.017802279442548752, -0.01887272298336029, -0.0019370890222489834, 0.015101471915841103, -0.01504383236169815, 0.007509564980864525, 0.012367726303637028, -0.008094191551208496, -0.00016481209604535252, 0.003841241355985403, -0.007423106115311384, -0.00378977763466537, -0.019844355061650276, 0.0030692876316607, 0.007785409688949585, -0.007081388030201197, -0.004755234345793724, 0.015414370223879814, 0.019333835691213608, 0.009584576822817326, 0.018461013212800026, 0.000402445177314803, -0.017374103888869286, -0.006723201368004084, -0.008851734921336174, 0.010836170986294746, 0.004063563887029886, -0.005953306332230568, 0.0007379876915365458, -0.015760205686092377, 0.010457398369908333, 0.02188642881810665, -0.007637194823473692, -0.03364482894539833, -0.004841693211346865, -0.0003656487097032368, 0.01854335516691208, 0.022561632096767426, 0.038964103907346725, 0.010358588770031929, -0.01671537011861801, 0.030746398493647575, 0.003942110110074282, -0.007978912442922592, 0.00013792238314636052, -0.00037980120396241546, -0.008711754344403744, 0.0005578651907853782, 0.01008686050772667, -0.022874530404806137, -0.02649756520986557, 0.009881006553769112, 0.007978912442922592, 0.00997981708496809, 0.0005362504743970931, -0.021804088726639748, -0.0019381182501092553, -0.04133554548025131, 0.014961490407586098, -0.0005030564498156309, -0.004005924798548222, 0.017028268426656723, 0.0024990711826831102, 0.0030795803759247065, 0.0259541105479002, -0.007097856607288122, -0.011173771694302559, 0.018658634275197983, -0.02378029003739357, 0.020815987139940262, -0.008106542751193047, -0.02183702401816845, -0.028589045628905296, 0.004331174772232771, 0.007447808515280485, 0.021112417802214622, 0.03203092887997627, 0.008419441059231758, -0.006043882574886084, 0.015628458932042122, -0.0006263116956688464, -0.01201365701854229, 0.013512276113033295, 0.01132198702543974, -0.013685193844139576, -0.00804066937416792, 0.0002393056347500533, -0.0077730584889650345, 0.02761741355061531, -0.004730531945824623, -0.022265201434493065, 0.013751067221164703, 0.01967967115342617, 0.012005423195660114, -0.003843299811705947, 0.002064718632027507, -0.011906612664461136, 0.010926746763288975, -0.013232314959168434, -0.01091027818620205, 0.029577147215604782, 0.015085003338754177, -0.0010652960045263171, 0.01108319591730833, -0.009148165583610535, 0.012235979549586773, -0.014623889699578285, 0.02924777939915657, -0.012754732742905617, -0.003571572247892618, -0.01964673399925232, -0.02157353051006794, 0.007493096869438887, 0.005224582273513079, -0.0003391449572518468, 0.014730934053659439, -0.002739920746535063, -0.009370488114655018, -0.000517466280143708, 0.007970678620040417, -0.007122559007257223, -0.0328049436211586, 0.015332028269767761, 0.008102425374090672, 0.004685244057327509, 0.003703319001942873, -0.006155043840408325, 0.025871768593788147, 0.01590018719434738, -0.029659487307071686, -0.0014543606666848063, 0.009584576822817326, -0.007056685630232096, -0.006735553033649921, 0.003575689159333706, 0.0016602149698883295, -0.007472511380910873, 0.004886981099843979, -0.007328413426876068, 0.024224935099482536, 0.014483909122645855, -0.011783100664615631, 0.000483242969494313, -0.0008841442177072167, 0.0043846964836120605, -0.0143274599686265, -0.007468394003808498, 0.00716372998431325, -0.01971260830760002, 0.016855349764227867, -0.022841593250632286, -0.007871869020164013, 0.010317417792975903, -0.020980671048164368, 0.008975247852504253, 0.005430436693131924, 0.008802330121397972, 0.002785208635032177, -0.007497213780879974, -0.022545162588357925, -0.004491740837693214, 0.016278957948088646, 0.005677461624145508, 0.018790381029248238, 0.009864537976682186, 0.005772154778242111, 0.0012032183585688472, 0.014977958984673023, 0.004697595257312059, 0.00378977763466537, 0.0013668725732713938, 0.012375961057841778, 0.008287694305181503, 0.007995381020009518, 0.00045210751704871655, 0.002414671005681157, 0.002416729461401701, -0.0025134810712188482, 0.01916915364563465, -0.033183712512254715, 0.017110610380768776, 0.015249687246978283, -0.0066285086795687675, 0.015949591994285583, -0.008155947551131248, 0.018378673121333122, 0.02817733772099018, -0.011766632087528706, -0.00804066937416792, 0.012170106172561646, 0.005488075781613588, 0.019218558445572853, -0.038634736090898514, 0.001319526112638414, -0.02216639183461666, -0.002760506235063076, 0.0024496661499142647, 0.004730531945824623, -0.009864537976682186, 0.0272880457341671, -0.004751117434352636, 0.0018856254173442721, 0.011741929687559605, -0.018625697121024132, -0.0033945373725146055, -0.004053271375596523, -0.0024187881499528885, -0.0016694783698767424, -0.004102676175534725, -0.012680625542998314, 0.01915268413722515, 0.00830827932804823, -0.008073605597019196, -0.0037774264346808195, 0.008472963236272335, 0.029560677707195282, -0.01327348593622446, -0.004574082791805267, 0.005718632601201534, -0.0006870387587696314, 0.009535171091556549, 0.012178340926766396, -0.011560778133571148, 0.022808656096458435, -0.0050022597424685955, -0.01748938113451004, 0.027666818350553513, -0.01584254764020443, -0.010992620140314102, -0.003919465932995081, 0.002729628002271056, 0.005759803578257561, -0.00983160175383091, -0.01661655865609646, -0.02755153924226761, 0.005031079053878784, 0.026299946010112762, -0.0016499222256243229, 0.0009026711340993643, 0.0008285635849460959, -0.006439122837036848, -0.0023035097401589155, 0.01748938113451004, 0.018625697121024132, -0.01720941998064518, 0.02017372101545334, 0.0033142543397843838, 0.027502134442329407, -0.012968821451067924, -0.01776934415102005, 0.012128935195505619, 0.009601044468581676, -0.014450971968472004, 0.0007925390964373946, -0.003826831467449665, -0.01134668942540884, 0.007826580666005611, 0.0004914771416224539, -0.001909298705868423, 0.009263443760573864, 0.003242205362766981, -0.006731435656547546, 0.007369583938270807, 0.009222272783517838, -0.0066820308566093445, -0.020124316215515137, -0.010943214409053326, 0.00587508175522089, 0.005471607204526663, 0.002744037890806794, -0.007760707288980484, 0.01717648282647133, -0.011478436179459095, 0.01834573596715927, 0.0027646233793348074, -0.0025011298712342978, 0.008382387459278107, 0.0014162776060402393, 0.0013092333683744073, 0.007464277092367411, 0.008164181374013424, -0.006249736528843641, 0.008530602790415287, -0.011214942671358585, -0.007077271118760109, 0.017341166734695435, 0.002315860940143466, 0.009872772730886936, -0.01827986165881157, -0.00601094588637352, 0.007023748941719532, -0.020651303231716156, -0.0073901694267988205, 0.023714415729045868, -0.011099664494395256, -0.0027563890907913446, -0.025278909131884575, 0.004524677526205778, -0.0005856555071659386, -0.0055086612701416016, 0.003981222398579121, 0.01829633116722107, -0.008827032521367073, -0.03110870160162449, -0.0024887784384191036, 0.035604558885097504, -0.01504383236169815, 0.05767214298248291, 0.029675956815481186, 0.026629311963915825, -0.0218205563724041, 0.01612250879406929, -0.01008686050772667, 0.022265201434493065, 0.010053924284875393, -0.008818798698484898, -0.013989858329296112, -0.012499473057687283, -0.01831279881298542, 0.02017372101545334, 0.001211452530696988, 0.0024434905499219894, -0.004028568509966135, -0.009214038960635662, 0.001840337528847158, -0.005422202404588461, -0.0030239997431635857, -0.005986243020743132, -0.0012001305585727096, -0.023582668974995613, -0.012820606119930744, -0.0006412361399270594, 0.012524175457656384, 0.005245167762041092, 0.0007204900612123311, -0.006369132082909346, -0.01831279881298542, 0.010284480638802052, -0.0023590903729200363, -0.00997981708496809, 0.010218607261776924, 0.018658634275197983, 0.012071296572685242, 0.01050680410116911, 0.004891098476946354, 0.003865943755954504, -0.009074057452380657, -0.023912036791443825, -0.016064869239926338, 0.001970025710761547, 0.004154139664024115, 0.00567334471270442, -0.00807772297412157, 0.0006932143587619066, 0.010663253255188465, -0.024455491453409195, -0.00337601057253778, 0.021260632202029228, -0.007604258134961128, -0.004631721880286932, -0.016311895102262497, 0.027205705642700195, -0.0004950796137563884, 0.019350305199623108, -0.003145453752949834, -0.02783150225877762, 0.002538183471187949, -0.00320720998570323, -0.0057392180897295475, 0.0038165387231856585, 0.015686098486185074, -0.008794096298515797, 0.011519607156515121, 0.008440026082098484, 0.00029565824661403894, -0.0016550685977563262, -0.011305518448352814, 0.018625697121024132, -0.01052327174693346, -0.03501170128583908, 0.007480745203793049, 0.0024208466056734324, -0.0074148718267679214, -0.019547924399375916, 0.002087362576276064, -0.031240448355674744, -0.010992620140314102, 0.013784004375338554, 6.883253081468865e-05, 0.01312527060508728, 0.0008110659546218812, -0.01636953465640545, -0.006410303059965372, -0.005805091466754675, 0.003289551706984639, -0.00177858117967844, 0.026019984856247902, -0.000889805203769356, 0.0047840541228652, -0.010366822592914104, -0.002169704297557473, 0.015068534761667252, 0.012203043326735497, -0.017588192597031593, -0.004285886418074369, 0.020091380923986435, -0.0024826028384268284, -0.017390571534633636, -0.005224582273513079, -0.004339408595114946, 0.013289953581988811, -0.004899332299828529, -0.0383053682744503, -0.00901641882956028, -0.008514134213328362, 0.006266205105930567, 0.014335693791508675, -0.0038597681559622288, -0.007106090430170298, 0.0058009740896523, -0.004891098476946354, 0.004965205676853657, 0.021985240280628204, -0.0011867500143125653, -0.0020142842549830675, 0.024504896253347397, 0.009601044468581676, -0.00846472941339016, 0.016056636348366737, 0.014171009883284569, 0.008394738659262657, -0.009675152599811554, 0.0014924437273293734, 0.015068534761667252, -0.014689763076603413, -0.009732791222631931, 0.006933173164725304, -0.02017372101545334, -0.004874629899859428, -0.0036930262576788664, -0.008061254397034645, -0.011700758710503578, -0.0011630768422037363, -0.017983432859182358, -0.010251544415950775, 0.010473866946995258, 0.004623487591743469, -0.0136522576212883, 0.026069389656186104, -0.004578199703246355, -0.01282883994281292, 0.006233268417418003, -0.0081930011510849, -0.010193904861807823, 0.000302863132674247, 0.014961490407586098, 0.010696189478039742, -0.0010493423324078321, 0.020832454785704613, -0.004355877172201872, 0.004462921526283026, -0.00351393292658031, 0.03504463657736778, -0.0019463524222373962, 0.027502134442329407, 0.02490013651549816, 0.017884621396660805, 0.007217251695692539, 0.01245006825774908, -0.005512778181582689, 0.006080936174839735, 0.006216799840331078, -0.014022795483469963, -0.0032627906184643507, 0.027979716658592224, -0.022841593250632286, -0.001411131233908236, -0.007867751643061638, -0.01855982467532158, -0.01826339401304722, 1.4916396139597055e-05, 0.006558517925441265, 0.022841593250632286, 0.0032998444512486458, -0.009815133176743984, -0.006739669945091009, -0.006262087728828192, -0.0034707034938037395, 0.01490385178476572, -0.0001488583948230371, 0.014146307483315468, -0.012935884296894073, -0.0023673244286328554, -0.01804930530488491, 0.015216750092804432, -0.002999297110363841, 0.008588241413235664, 0.003979163710027933, 0.017143545672297478, -0.0007225486333481967, -0.00860470999032259, -0.017670532688498497, 0.001603604992851615, 0.003159863641485572, 0.013158206827938557, -0.026052920147776604, 0.0012299794470891356, 0.018428077921271324, -0.009148165583610535, -0.0033718934282660484, -0.003806245978921652], "fe29e92a-4453-400e-ada7-86ec463cda92": [-0.024921249598264694, -0.02222374640405178, -0.017227236181497574, 0.05244804173707962, -0.035925835371017456, 0.0026840921491384506, 0.004835580941289663, 0.021534044295549393, -0.017242562025785446, 0.05854807794094086, 0.008797538466751575, 0.009081082418560982, 0.0066901142708957195, 0.01016161683946848, 0.017334522679448128, 0.0321861170232296, -0.027450159192085266, -0.0015508726937696338, -0.017227236181497574, -0.009295657277107239, 0.03883791342377663, -0.024936577305197716, -0.026208695024251938, -0.023664459586143494, 0.00383742805570364, -0.015755869448184967, -0.025028537958860397, 0.0008913446799851954, -0.051313865929841995, 0.008582964539527893, 0.007759152911603451, 0.002459938870742917, 0.005831817630678415, 0.035527341067790985, 0.0003108450910076499, -0.05505358427762985, 0.011801576241850853, 0.01075169537216425, -0.015510642901062965, 0.0025902159977704287, -0.009211359545588493, 0.01963353157043457, 0.002632364397868514, -0.006939173210412264, -0.01759507693350315, -0.013939653523266315, -0.04971988499164581, 0.013066030107438564, -0.009333973750472069, -0.021855905652046204, 0.012223061174154282, 0.04153541848063469, -0.024875270202755928, 0.00773616274818778, 0.05349025875329971, -0.05112994462251663, 0.013203971087932587, 0.07871804386377335, 0.014269177801907063, -0.044478148221969604, -0.028139861300587654, -0.05134451761841774, 0.021488064900040627, -0.017089294269680977, 0.017135275527834892, -0.010598428547382355, -0.03604844957590103, 0.012943416833877563, -0.004092234652489424, 0.03086801804602146, -0.022422993555665016, 0.0204918272793293, -0.04846309497952461, 0.004954362753778696, -0.013410882093012333, 0.005295382346957922, 0.04239371418952942, 0.014200207777321339, 0.01358713861554861, -0.026668496429920197, 0.025718240067362785, -0.016047077253460884, 0.03125118464231491, 0.02230038121342659, 0.03997208923101425, 0.012422308325767517, -0.035772569477558136, -0.042424365878105164, -0.032952453941106796, -0.025871505960822105, 0.024369487538933754, 0.024936577305197716, 0.005000343080610037, -0.002475265646353364, 0.013165654614567757, 0.008835854940116405, 0.035987142473459244, 0.014629356563091278, 0.014092921279370785, -0.035220805555582047, -0.028124535456299782, 0.02401697263121605, -0.010598428547382355, -0.007284024730324745, 0.015234761871397495, -0.005023333244025707, -0.018805887550115585, 0.04064646735787392, -0.01750311627984047, 0.011694288812577724, -0.0022204588167369366, -0.06277825683355331, 0.007985222153365612, -0.0010776601266115904, 0.001500102924183011, -0.03298310562968254, -0.0321861170232296, -0.01900513470172882, -0.018805887550115585, 0.0009401986026205122, 0.037642430514097214, -0.006973658688366413, 0.005824154242873192, 0.018438046798110008, -0.038684647530317307, 0.03926706314086914, -0.008674924261868, 0.026270002126693726, 0.042424365878105164, 0.03094465099275112, -0.01632295921444893, 0.014069930650293827, 0.04420226812362671, 0.004555867984890938, -0.0024177904706448317, 0.025013210251927376, 0.02599412016570568, 0.04956661909818649, -0.020231273025274277, 0.016353612765669823, -0.032308731228113174, 0.005521451588720083, -0.015288405120372772, 0.02801724709570408, -0.0016169691225513816, -0.015909137204289436, -0.044171612709760666, 0.06296217441558838, -0.012414644472301006, 0.018713926896452904, -0.040554504841566086, -0.013341911137104034, -0.003297161078080535, -0.010299556888639927, 0.0530611127614975, -0.013357237912714481, 0.0016763602616265416, 0.036630865186452866, 0.002795211039483547, 0.04199521988630295, 0.03886856883764267, -0.03194088861346245, 0.0005014711641706526, 0.028247147798538208, 0.02614738792181015, 0.0013027713866904378, 0.0708707645535469, 0.026423268020153046, 0.004743620287626982, 0.020277252420783043, -3.331765765324235e-05, -0.03641629219055176, 0.045275136828422546, -0.0029523097909986973, -0.023741092532873154, -0.007061786949634552, 0.046838462352752686, 0.02873760461807251, 0.010973933152854443, -0.008069518953561783, -0.029718514531850815, -0.012736505828797817, 0.033412255346775055, 0.015479989349842072, 0.015495316125452518, 0.05913049355149269, 0.00029623680165968835, 0.02849237620830536, -0.012744169682264328, -0.012016150169074535, 0.002603626810014248, -0.005318372510373592, 0.022806162014603615, 0.010621418245136738, 0.010399180464446545, 0.002448443789035082, -0.013249951414763927, -0.008422033861279488, 0.0037243934348225594, 0.05851742625236511, -0.02394033968448639, -0.027848653495311737, -0.019281016662716866, 0.04168868437409401, -0.007590558845549822, 0.02913609892129898, -0.011962506920099258, -0.017778998240828514, 0.03837811201810837, -0.018177492544054985, 0.0678667277097702, -0.015449335798621178, 0.0067437575198709965, 0.0023603152949362993, -0.0021572362165898085, 0.018407393246889114, 0.014682999812066555, 0.01830010674893856, 0.003251180984079838, -0.030500177294015884, 0.014728980138897896, -0.0017731101252138615, -0.005636401940137148, -0.020936302840709686, -0.039696209132671356, -0.016920700669288635, -0.026990357786417007, 0.0397268645465374, -0.015142801217734814, -0.03282983973622322, 0.01837673969566822, -0.002739651594310999, 0.027741366997361183, -0.01689004711806774, -0.016001097857952118, -0.004195690155029297, 0.034515779465436935, -0.025932813063263893, 0.0025480675976723433, -0.00461334316059947, -0.0014617861015722156, 0.02473733015358448, -0.003931303974241018, -0.011042903177440166, -0.01805487833917141, 0.031511738896369934, -0.0021284986287355423, 0.07835020124912262, 0.005479303188621998, 0.021549372002482414, 0.0014110163319855928, -0.02095162868499756, 0.01429216843098402, 0.0021457411348819733, -0.03997208923101425, 0.02371043898165226, 0.029657207429409027, -0.011150190606713295, -0.029933087527751923, -0.028461722657084465, -0.012192407622933388, 0.018575986847281456, -0.021932538598775864, 0.023894360288977623, 0.028308454900979996, -0.03172631561756134, 0.045275136828422546, 0.028047900646924973, 0.012207734398543835, 0.02810920774936676, 0.018346086144447327, -0.018729254603385925, -0.004728293512016535, 0.043006781488657, -0.02072172798216343, -0.02513582445681095, 0.0029963741544634104, 0.012391654774546623, 0.02668382227420807, 0.004674650263041258, -0.0035213143564760685, 0.015594939701259136, 0.039297714829444885, -0.01820814609527588, 0.0006422854494303465, 0.02936599962413311, -0.018192818388342857, -0.028155189007520676, -0.035067539662122726, 0.013794049620628357, -0.0014340063789859414, 0.004080739803612232, -0.0005508040776476264, 0.026178041473031044, -0.004092234652489424, -0.014023950323462486, -0.009219023399055004, -0.010966269299387932, 0.02190188504755497, -0.007387480232864618, -0.0003450907242950052, 0.000243790665990673, -0.03134314715862274, -0.046991728246212006, 0.010667398571968079, -0.03525146096944809, 0.031189879402518272, 0.0059199463576078415, -0.010943279601633549, 0.008766884915530682, 0.011019913479685783, 0.009050429798662663, 0.0005019501550123096, -0.012575575150549412, 0.007636539172381163, 0.007054124027490616, -0.034423816949129105, -0.012935752980411053, -0.013617792166769505, -0.007847282104194164, -0.01221539732068777, -0.010927952826023102, -0.03856203332543373, 0.008077182807028294, 0.04653192684054375, -0.05244804173707962, 0.03485296666622162, -0.013142663985490799, -0.006130688823759556, -0.02991776168346405, -0.008222786709666252, -0.023572498932480812, 0.0008381801308132708, 0.0006513856933452189, -0.03439316526055336, -0.004387274384498596, -0.030975304543972015, -0.02717427723109722, -0.025871505960822105, -0.028921524062752724, -0.03115922585129738, -0.0022990081924945116, 0.000851591001264751, 0.0035385568626224995, -0.04717564955353737, -0.0211202222853899, 0.027542119845747948, 0.01134177390486002, 0.02127349004149437, -0.0025461516343057156, 0.0009425933822058141, 0.004701471887528896, 0.057505860924720764, -0.04460076242685318, 0.012859120033681393, -0.016368938609957695, -0.018330760300159454, 0.013571812771260738, 0.011088883504271507, 0.009196032769978046, -0.03473035246133804, -0.036477599292993546, -0.003216695738956332, -0.037489160895347595, -0.008153815753757954, 0.013135001063346863, -7.675334927625954e-05, -0.024384815245866776, -0.046593233942985535, -0.016859393566846848, -0.01774834468960762, 0.01649155281484127, -0.013679099269211292, -0.006601985543966293, -0.027971267700195312, -0.05778174102306366, 0.04788067936897278, 0.01971016451716423, 0.006008075084537268, 0.033167026937007904, -0.014345811679959297, 0.022039826959371567, -0.027296891435980797, 0.02646924927830696, 0.049750540405511856, -0.0035193986259400845, -0.002618953585624695, -0.042822860181331635, -0.030990632250905037, -0.017916938289999962, -0.021717965602874756, -0.00250400323420763, -0.006762916222214699, -0.0017711942782625556, -0.025227785110473633, -0.025059189647436142, 0.00111406110227108, -0.019756143912672997, 0.028783584013581276, -0.011088883504271507, 0.011257477104663849, -0.020231273025274277, -0.01971016451716423, -0.0005445776041597128, -0.03831680491566658, -0.015648582950234413, -0.000882723368704319, -0.025641605257987976, 0.021488064900040627, 0.02158002369105816, 0.002458023140206933, -0.002691755536943674, 0.0126368822529912, 0.021610677242279053, 0.023925013840198517, 0.006544510368257761, -0.02668382227420807, 0.05940637364983559, -0.034822311252355576, -0.017058640718460083, 0.03362682834267616, 0.017058640718460083, -0.007609717547893524, 0.03335094824433327, -0.00647553987801075, 0.01259856577962637, 0.012452961876988411, 0.010468151420354843, 0.014506742358207703, -0.007057955488562584, 0.011709615588188171, 0.03166500851511955, -0.01750311627984047, 0.02456873469054699, -0.007962232455611229, -0.005571263376623392, 0.034699697047472, 0.001037427457049489, -0.013249951414763927, -0.012429971247911453, 0.010943279601633549, 0.04046254605054855, 0.022254399955272675, 0.007042628712952137, -0.06700842827558517, -0.03365748003125191, -0.04199521988630295, 0.01511214766651392, 0.017794324085116386, -0.0063644214533269405, 0.008858845569193363, 0.034423816949129105, -0.06725365668535233, -0.002601711079478264, 0.03433185815811157, -0.013671436347067356, 0.014307495206594467, -0.007057955488562584, 0.03243134543299675, -0.06431092321872711, 0.006448718253523111, 0.01727321557700634, 0.04270024597644806, 0.0012567911762744188, 0.006736094132065773, -0.0404931977391243, -0.0028756761457771063, 0.008843518793582916, 0.003000205848366022, 0.02567225880920887, 0.009770785458385944, -0.029703186824917793, 0.00039993165410123765, 0.051221903413534164, 0.02443079464137554, -0.011655972339212894, -0.014667673036456108, -0.030561484396457672, 0.010675061494112015, -0.011686625890433788, -0.007824291475117207, -0.008782211691141129, -0.009824428707361221, 0.0011380091309547424, 0.01365610957145691, 0.005030996631830931, -0.015878483653068542, 0.004161205142736435, 0.005762847606092691, 0.009134726598858833, 0.02220842055976391, 0.007759152911603451, -0.009594528004527092, 0.039696209132671356, 0.01584783010184765, -0.04834048077464104, 0.019740818068385124, -0.025243110954761505, 0.004165036603808403, -0.03540472686290741, 0.00970181543380022, -0.02723558433353901, 0.0397268645465374, -0.01702798902988434, -0.04092234745621681, 0.03227807581424713, -0.011602328158915043, 0.02982580102980137, 0.017962917685508728, -0.04184195026755333, -0.030117008835077286, 0.029810475185513496, -0.032002195715904236, 0.01024591363966465, 0.023970993235707283, 0.012376327998936176, -0.008498667739331722, -0.00420335354283452, 0.023357924073934555, 0.0023354091681540012, -0.009318646974861622, -0.00757906399667263, -0.007352994754910469, -0.003450428368523717, -0.013525832444429398, -0.0017558676190674305, 0.004099898040294647, -0.031358473002910614, 0.04732891917228699, -0.017411155626177788, -0.01221539732068777, 0.016430245712399483, -0.013058367185294628, 0.01649155281484127, 0.004506056196987629, 0.025871505960822105, -0.002663017949089408, -0.008153815753757954, -0.001905303099192679, -0.0023124192375689745, 0.006992816925048828, 0.015740543603897095, -0.027618752792477608, -0.010950942523777485, -0.01618501916527748, 0.022729529067873955, 0.018438046798110008, -0.0118169030174613, 0.001656243926845491, 0.011778585612773895, -0.03157304599881172, 0.006805064622312784, -0.013157990761101246, 0.009885735809803009, -0.007939241826534271, -0.0037224777042865753, -0.009287993423640728, -0.013610129244625568, -0.007644202560186386, -0.023281291127204895, -0.018116185441613197, 0.006100035272538662, 0.0034293539356440306, 0.02976449392735958, -0.026285327970981598, 0.007402806542813778, -0.02856900915503502, -0.00436045229434967, -0.012498942203819752, 0.013173317536711693, 0.03243134543299675, -0.011188507080078125, 0.02591748721897602, -0.0014809445710852742, -0.004927541129291058, 0.01727321557700634, -0.0041535417549312115, -0.0023564836010336876, -0.028523029759526253, -0.0015365038998425007, 0.02199384570121765, -0.0051344516687095165, 0.013035377487540245, -0.012767159380018711, 0.0018909343052655458, -0.000866917718667537, -0.015564286150038242, -0.0238790325820446, -0.022039826959371567, 0.035772569477558136, -0.012966406531631947, 0.03816353902220726, -0.014958880841732025, -0.01702798902988434, -0.011288130655884743, 0.032952453941106796, -0.009663498029112816, -0.0013171401806175709, 0.03240069001913071, -0.005318372510373592, 0.03062279149889946, 0.018729254603385925, -0.0020806025713682175, -0.04521382972598076, -0.029411979019641876, 0.014859257265925407, -0.01877523399889469, 0.013663772493600845, -0.006203490775078535, 0.009648171253502369, 0.0354660339653492, -0.0063184411264956, 0.026116734370589256, -0.005425659473985434, 0.029979068785905838, 0.009832092560827732, -0.019771471619606018, 0.03445447236299515, 0.02528909221291542, -0.007268697954714298, 0.039450980722904205, 0.00809250958263874, 0.056402336806058884, -0.013916663825511932, -0.002103592501953244, 0.036876093596220016, -0.03706001490354538, -0.002398632001131773, -0.003908314276486635, 0.009870409034192562, -0.01954157091677189, -0.016552859917283058, -0.011632981710135937, -0.02207048051059246, 0.01420787163078785, -0.025871505960822105, -0.010115636512637138, 8.357853221241385e-05, -0.01236866507679224, 0.003883408149704337, 0.0034600074868649244, 0.009993022307753563, -0.004226343706250191, 0.04371181130409241, -0.013173317536711693, 0.020123986527323723, 0.00455203652381897, -0.012759496457874775, 0.03157304599881172, 0.035833876579999924, -0.013564148917794228, 0.01452206913381815, 0.007939241826534271, 0.013387891463935375, 0.004594184923917055, -0.023434557020664215, -0.004893056116998196, 0.005272392183542252, 0.03666152060031891, -0.003542388556525111, -0.015411019325256348, -0.016690799966454506, 0.03899117931723595, 0.009747794829308987, 0.02479863539338112, 0.012882109731435776, -0.005896956194192171, 0.008391380310058594, 0.01932699605822563, 0.018315432593226433, 0.029243385419249535, -0.029963741078972816, -0.008038865402340889, 0.013640782795846462, 6.27437693765387e-05, -0.002333493437618017, 0.019051115959882736, 0.012989397160708904, 0.000417653180193156, -0.02331194467842579, -0.021380776539444923, -0.06100035458803177, -0.025810200721025467, 0.009510231204330921, -0.02542703226208687, -0.01813151128590107, 0.0043259672820568085, 0.012154090218245983, -0.03126651421189308, 0.01103524025529623, -0.007406638469547033, 0.02810920774936676, -0.018162164837121964, 0.030837364494800568, 0.003253096714615822, -0.0160930585116148, -0.005552105139940977, -0.018591314554214478, 0.010115636512637138, -0.007226549554616213, -0.000410229287808761, -0.012138763442635536, -0.00268983980640769, -0.0020920976530760527, 0.010146290063858032, 0.013686763122677803, -0.019035788252949715, -0.03384140133857727, 0.010383854620158672, 0.0080465292558074, -0.011648308485746384, -0.018238799646496773, -0.0044639077968895435, 0.021886559203267097, 0.00742196524515748, -0.020154640078544617, -0.0067054410465061665, -0.0012136847944930196, -0.022974755614995956, 0.028752930462360382, -0.019602878019213676, 0.036876093596220016, -0.014092921279370785, -0.02418556809425354, -0.022806162014603615, 0.025702912360429764, -0.010184606537222862, -0.03252330422401428, 0.01915840245783329, 0.008897162042558193, 0.032707225531339645, -0.025871505960822105, 0.0038125221617519855, 0.009847419336438179, 0.008345399983227253, -0.03782634809613228, -0.016552859917283058, 0.02182525210082531, 0.03335094824433327, 0.006306946277618408, 0.0245074275881052, 0.012583239004015923, 0.02135012298822403, -0.014713653363287449, 0.006130688823759556, 0.0028239486273378134, 0.023495864123106003, 0.01891317404806614, -0.02558029815554619, 0.026407942175865173, 0.025381051003932953, -0.05250934883952141, 0.03086801804602146, 0.01327294111251831, 0.011870546266436577, 0.0046708183363080025, 0.029105445370078087, -0.015426346100866795, 0.003839343786239624, 0.05296915024518967, -0.015181117691099644, -0.003699487540870905, -0.007080945651978254, -0.006460213102400303, 0.0007256245007738471, 0.032155461609363556, 0.01875990815460682, -0.01790161058306694, 0.017794324085116386, 0.01624632440507412, 0.03405597805976868, 0.016782760620117188, 0.01190119981765747, 0.0248905960470438, -0.008628944866359234, -0.052723925560712814, -0.008284092880785465, -0.02064509503543377, 0.025089843198657036, -0.02763408049941063, -0.021181529387831688, -0.05465508997440338, 0.05063948780298233, -0.00390448234975338, 0.021089568734169006, -0.017303869128227234, 0.01079767569899559, -0.017211908474564552, 0.0025557309854775667, 0.018575986847281456, 0.014866920188069344, -0.014981870539486408, -0.007487103808671236, 0.03187958151102066, 0.02095162868499756, -0.010514131747186184, 0.019281016662716866, -0.001330551109276712, -0.029411979019641876, -0.01681341417133808, -0.011740269139409065, -0.016276977956295013, 0.019449610263109207, 0.018269453197717667, 0.01616969145834446, -0.029074791818857193, -0.009333973750472069, -0.007609717547893524, -0.023756418377161026, 0.01765638403594494, 0.0018871026113629341, 0.007352994754910469, 0.013908999972045422, 0.03304441273212433, -0.014529732055962086, -0.020507153123617172, 0.008621281012892723, -0.004716798663139343, 0.028093881905078888, 0.017457136884331703, -0.008628944866359234, -0.014813276939094067, 0.023419231176376343, 0.024522755295038223, 0.017625730484724045, -0.039542943239212036, -0.010360863991081715, 0.0035193986259400845, -0.017012661322951317, -0.018897848203778267, -0.006586658768355846, -0.048248521983623505, -0.026407942175865173, 0.018346086144447327, 0.012414644472301006, 0.012054466642439365, 0.002889087190851569, 0.030423542484641075, -0.027051664888858795, 0.032155461609363556, -0.01000834908336401, -0.04742087796330452, -0.011372427456080914, -0.002829696051776409, 0.00457502668723464, 0.03085269220173359, 0.03289114683866501, -0.007410469930619001, 0.022898122668266296, 0.0477580651640892, 0.024216221645474434, 0.01267519872635603, 0.04812590777873993, 0.007437292020767927, -0.03610975667834282, -0.009801439009606838, -0.0027013346552848816, -0.0007217928068712354, -0.022024499252438545, 0.01695135422050953, 0.0066901142708957195, 0.02260691486299038, -0.020905649289488792, 0.001130345743149519, -0.018637293949723244, -0.016353612765669823, 0.011150190606713295, 0.01656818576157093, 0.027833327651023865, 0.02826247550547123, -0.005590422078967094, -0.0015968529041856527, 0.024614715948700905, -0.015426346100866795, -0.002304755849763751, -0.02928936667740345, 0.017564423382282257, 0.004605679772794247, -0.012905100360512733, 0.007977559231221676, -0.01382470317184925, 0.00730318296700716, 0.006349094677716494, -0.006590490695089102, -0.02207048051059246, 0.007862607948482037, 0.01696668192744255, -0.004222511779516935, -0.0034312698990106583, -0.01365610957145691, -0.0020039689261466265, 0.002864181064069271, -0.018024224787950516, -0.010491141118109226, -0.010491141118109226, 0.02417024038732052, -0.0048049273900687695, -0.009786112233996391, 0.0016342117451131344, 0.0006303114350885153, 0.006050223484635353, -0.03460773825645447, -0.01239931769669056, -0.004881560802459717, 0.04876963049173355, -0.020384540781378746, -0.005743688903748989, -0.012475951574742794, 0.04521382972598076, -0.011418407782912254, 0.013135001063346863, 0.028139861300587654, 0.008935478515923023, -0.009303320199251175, 0.04386507719755173, 0.03877660632133484, 0.01702798902988434, -0.03359617292881012, -0.007287856191396713, -0.004536709748208523, -0.009640508331358433, -0.002486760728061199, 0.03571126237511635, 0.00508080841973424, -0.04003339633345604, 0.014644683338701725, -0.029565246775746346, -0.020936302840709686, -0.015257751569151878, 0.010422171093523502, -0.004563531372696161, -0.01287444680929184, 0.021840577945113182, -0.008567637763917446, 0.010238250717520714, -0.012338011525571346, -0.03736654669046402, -0.007433460094034672, -0.025932813063263893, 0.010782348923385143, -0.0047704423777759075, -0.011763258837163448, 0.03935902193188667, 0.0025595626793801785, -0.02033855952322483, -0.015265415422618389, -0.0005608622450381517, 0.00887417234480381, 0.02182525210082531, 0.001099692308343947, 0.007452618796378374, 0.02709764428436756, -0.027342872694134712, 0.0049237096682190895, 0.030040375888347626, 0.0035538836382329464, -0.015104484744369984, -0.002431201282888651, 0.008491003885865211, 0.01098925992846489, -0.005525283515453339, 0.00346575491130352, -0.01295874360948801, 0.016460899263620377, -0.0201086588203907, 0.034669045358896255, -0.01299706008285284, 0.012192407622933388, -0.025733565911650658, -0.022024499252438545, -0.02582552656531334, -0.014108248054981232, -0.02597879432141781, 0.018713926896452904, -0.02637728862464428, -0.02144208364188671, -0.026760457083582878, 0.0041535417549312115, -0.018897848203778267, 0.0007835786673240364, 0.0071844011545181274, -0.018254125490784645, -0.016905374825000763, -0.01616969145834446, 0.009916389361023903, 0.005498461425304413, -0.001501060789451003, 0.010973933152854443, 0.007609717547893524, 0.011019913479685783, 0.0313124917447567, -0.019281016662716866, 0.032707225531339645, 0.008222786709666252, 0.014537395909428596, -0.012744169682264328, -0.011533358134329319, -0.026392614468932152, -0.005157441832125187, -0.003172631375491619, -0.01751844398677349, 0.01483626663684845, -0.02795594185590744, 0.02645392157137394, 0.01813151128590107, 0.0005373932071961462, 0.01877523399889469, -0.0008276429725810885, -0.012935752980411053, 0.021028263494372368, -0.0006298325024545193, 0.004931372590363026, 0.007176737766712904, 0.008483340963721275, -0.015020187944173813, 0.016384266316890717, 0.046041473746299744, -0.016062404960393906, 0.007659529335796833, 0.0334429070353508, 0.00500800646841526, -0.024599388241767883, -0.019418956711888313, -0.02669914998114109, -0.012905100360512733, -0.006590490695089102, 0.003140062093734741, -0.006096203811466694, 0.022806162014603615, -0.010889636352658272, -0.021150875836610794, -0.01456038560718298, 0.007835786789655685, 0.021855905652046204, -0.0008741021156311035, -0.011594665236771107, 0.012200070545077324, -0.07657230645418167, -0.02550366520881653, -0.00946425087749958, -0.02395566739141941, 0.004766610451042652, -0.001394731691107154, 0.02205515280365944, 0.0080465292558074, -0.022239074110984802, 0.016767434775829315, 0.012767159380018711, 0.0037186460103839636, 0.012889773584902287, 0.019296342507004738, -0.0022990081924945116, -0.007544578984379768, -0.009487240575253963, -0.016276977956295013, -0.0006777285016141832, -0.023036062717437744, -0.007061786949634552, 0.002862265333533287, 0.011594665236771107, -0.004571194760501385, -0.037887655198574066, 0.009533220902085304, 0.01822347193956375, 0.00937995407730341, -0.005916114896535873, -0.025948140770196915, 0.018438046798110008, -0.0022951767314225435, 0.0029005820397287607, -0.015893811360001564, -0.017886284738779068, 0.03684543818235397, 0.014230861328542233, -0.0027913793455809355, 0.027986593544483185, 0.024047626182436943, 0.01759507693350315, -0.0004396853328216821, 0.014023950323462486, -0.025258438661694527, 0.016031751409173012, -0.00498501630499959, -0.0074947671964764595, -0.03892987221479416, 0.006575163919478655, -0.002879507839679718, 0.007008143700659275, 0.014958880841732025, 0.0019713996443897486, -0.016598839312791824, 0.014866920188069344, 0.00309982942417264, -0.0012654124293476343, -0.01221539732068777, 0.016905374825000763, 0.005138283595442772, 0.05419528856873512, 0.019587550312280655, -0.02228505350649357, -0.008759221993386745, -0.023204656317830086, 0.003804858773946762, -0.0031802947632968426, 0.026760457083582878, 0.027419505640864372, 0.006674787495285273, -0.000697365845553577, -0.008782211691141129, 0.02222374640405178, 0.02009333297610283, 0.016139037907123566, -0.013633118942379951, 0.03102128580212593, 0.025396378710865974, 0.0024503597524017096, 0.0041382149793207645, -0.027373526245355606, -0.001765446737408638, 0.010061993263661861, 0.008353063836693764, -0.026913722977042198, -0.01946493610739708, -0.025396378710865974, -0.012460624799132347, -0.013242287561297417, 0.00851399451494217, 0.027419505640864372, 0.015909137204289436, 0.03822484612464905, 0.012583239004015923, -0.022009173408150673, 0.04043189436197281, -0.009471913799643517, 0.014552722685039043, -0.011372427456080914, 0.004559699911624193, -0.011403081007301807, -0.013449198566377163, -0.002617037855088711, -0.011096546426415443, -0.007843449711799622, -0.0018918922869488597, 0.019878758117556572, 0.018637293949723244, -0.0008563806186430156, -0.022116459906101227, -0.012000823393464088, 0.01805487833917141, -0.0034006163477897644, -0.004540541209280491, -0.006655629258602858, -0.006567500531673431, -0.028783584013581276, -0.010552448220551014, 0.00039538153214380145, 0.0031841264571994543, -0.002293260768055916, 0.01075169537216425, -0.027434831485152245, -0.00809250958263874, 0.007567569147795439, 0.010858982801437378, -0.002105508465319872, -0.014422445558011532, -0.0015681151999160647, 0.0007371195242740214, -0.009395280852913857, -0.026821764186024666, -0.002850770251825452, 0.006904688198119402, 0.001424427260644734, -0.0054409862495958805, 0.004747452214360237, -0.02237701416015625, 0.023833053186535835, -0.027143625542521477, -0.003793363692238927, 0.004161205142736435, -0.009272666648030281, -0.0030327751301229, -0.02418556809425354, 0.013840029947459698, -0.009073419496417046, -0.01946493610739708, -0.0037837845738977194, -0.016660146415233612, 0.0028201169334352016, 0.0019828947260975838, 0.031281840056180954, 0.022576261311769485, -0.008192133158445358, -0.03727458789944649, -0.006601985543966293, -0.0037205617409199476, -0.01557961292564869, -0.006525351665914059, -0.019219709560275078, -0.017135275527834892, -0.013908999972045422, 0.0035807054955512285, 0.007923915050923824, -0.0246453694999218, 0.011870546266436577, -0.012108110822737217, -0.01860664039850235, -0.01295874360948801, 0.01483626663684845, -0.008261103183031082, -0.017150601372122765, -0.005927609745413065, 0.016200345009565353, -0.02574889361858368, -0.01632295921444893, -0.007977559231221676, 0.024062953889369965, 0.00034173799213021994, -0.01479795016348362, 0.010805338621139526, 0.004919877741485834, 0.008782211691141129, -0.008146152831614017, 0.01424618810415268, 0.00037406780757009983, 0.007690182887017727, -0.0065368469804525375, 0.00922668632119894, 0.002954225754365325, -0.010659734718501568, -0.03347356244921684, 0.009770785458385944, -0.010820665396749973, 0.0005613411776721478, -1.0656861377356108e-05, 0.010705715045332909, 0.008115499280393124, -0.002310503274202347, -0.0002413958718534559, 0.002553815022110939, 0.012269040569663048, 0.007295519579201937, -0.010690388269722462, -0.00832241028547287, -0.04656258225440979, 0.049505311995744705, 0.033258985728025436, -0.029488613829016685, -0.01299706008285284, -0.014108248054981232, 0.020062679424881935, -0.013886010274291039, 0.008705577813088894, -0.01923503540456295, 0.013579475693404675, -0.023618478327989578, 0.0018909343052655458, -0.01005432941019535, 0.025534318760037422, -0.02016996592283249, 0.029243385419249535, 0.01378638669848442, 0.033013761043548584, -0.005870134569704533, 0.016154365614056587, -0.049260083585977554, -0.00937995407730341, 0.004448581021279097, -0.012345674447715282, 0.010337874293327332, -0.012269040569663048, -0.002465686295181513, -0.019357649609446526, 0.0038949032314121723, 0.04594951122999191, 0.001316182198934257, 0.02346521057188511, -0.0071844011545181274, -0.030484849587082863, 0.0029580574482679367, 0.005188095383346081, 0.012330347672104836, 0.03463838994503021, -0.002276018261909485, -0.004161205142736435, 0.009533220902085304, 0.0011686625657603145, 0.0036707499530166388, 0.004467739257961512, 0.006214985623955727, -0.015449335798621178, -0.010744032450020313, 0.0043451255187392235, -0.009901062585413456, 0.03715197369456291, -0.008889499120414257, 0.0004363326297607273, -0.004414096008986235, -0.014345811679959297, 0.005234075710177422, 0.01569456420838833, -0.01554129645228386, 0.012108110822737217, -0.009211359545588493, 0.016031751409173012, 0.0397268645465374, 0.016598839312791824, 0.0034868293441832066, -0.005226412322372198, 0.007161410991102457, -0.00702730193734169, -0.0024561071768403053, 0.004716798663139343, -0.005272392183542252, 0.02222374640405178, 0.001176325953565538, -0.013993296772241592, -0.0010872393613681197, -0.024844616651535034, -0.014598703011870384, -0.007433460094034672, 0.004230175167322159, 0.02268354780972004, -0.010353201068937778, -0.022254399955272675, -0.027817999944090843, 0.026315981522202492, -0.01759507693350315, 0.01656818576157093, 0.008736231364309788, 0.021380776539444923, 0.016077730804681778, 0.008851181715726852, 0.010667398571968079, -0.010383854620158672, -0.0005431406898424029, 0.027450159192085266, -0.003958126064389944, 0.0028871712274849415, 0.004605679772794247, -0.01028423011302948, 0.0034580917563289404, -0.008751558139920235, -0.0002476223453413695, 0.02151871845126152, 0.007782143075019121, -0.0008271640399470925, 0.007199727464467287, -0.0015642836224287748, 0.011640645563602448, -0.02921273186802864, -0.02338857762515545, 0.0018918922869488597, 0.02292877621948719, 0.012062130495905876, -0.007107767276465893, 0.015372701920568943, -0.034669045358896255, 0.010805338621139526, 0.017012661322951317, 0.012828466482460499, 0.0067054410465061665, -0.013962644152343273, -0.02135012298822403, -0.004509888123720884, -0.01757974922657013, 0.012069793418049812, -0.007130757439881563, -0.015878483653068542, 0.00443325424566865, -0.030009722337126732, -0.029580572620034218, -0.007793637923896313, 0.010452824644744396, 0.0020327065140008926, -0.017395829781889915, -0.014774960465729237, -0.002860349602997303, 0.018407393246889114, 0.024231547489762306, 0.01567157357931137, 0.0014981870772317052, 0.0022415330167859793, 0.013556485995650291, 0.007471777033060789, 0.043313317000865936, 0.02332727052271366, -0.0008482382982037961, 0.01759507693350315, -0.019725490361452103, 0.003297161078080535, -0.011594665236771107, -0.022668221965432167, 0.037581123411655426, 0.004992679692804813, 0.0024177904706448317, -0.025396378710865974, -0.04113692045211792, -0.03739720210433006, -0.0003745467693079263, 0.009265003725886345, 0.01351050566881895, -0.0020786866080015898, -0.012935752980411053, 0.012200070545077324, -0.019740818068385124, 0.005954431369900703, -0.0018909343052655458, 0.0020633600652217865, -0.023909686133265495, 0.0009952790569514036, -0.004939035978168249, -0.0031304829753935337, 0.006958331912755966, -0.03298310562968254, 0.007042628712952137, 0.0073759849183261395, -0.019281016662716866, 0.016307631507515907, 0.01452206913381815, -0.03589518368244171, -0.018116185441613197, -0.03181827440857887, 0.008475677110254765, -0.01561792939901352, 0.005678550340235233, -0.013916663825511932, -0.014660009182989597, -0.025028537958860397, -0.01492056343704462, -0.014889910817146301, 0.0167214535176754, 0.008927815593779087, 0.01020759716629982, -0.012230724096298218, 0.0015192612772807479, -0.0615827701985836, -0.01868327334523201, -0.012207734398543835, 0.011357100680470467, -0.009625181555747986, 0.025335071608424187, -0.026423268020153046, 0.016936028376221657, 0.009671161882579327, 0.01995539292693138, 0.0008065687725320458, -0.0221317857503891, 0.007314678281545639, -0.0026553545612841845, 0.0034216907806694508, -0.02220842055976391, -0.02016996592283249, 0.01358713861554861, -0.004406432621181011, 0.015127474442124367, 0.00839904323220253, -0.022039826959371567, -0.004475402645766735, 0.012935752980411053, -0.01900513470172882, -0.03282983973622322, -0.017242562025785446, 0.013771059922873974, -0.025564972311258316, -0.013686763122677803, -0.0014512490015476942, -0.031297165900468826, 0.008215122856199741, 0.0005699624889530241, 0.00813082605600357, 0.018116185441613197, 0.02253028191626072, -0.014361138455569744, -0.010552448220551014, 0.018254125490784645, 0.005736025515943766, -0.01875990815460682, -0.03077605739235878, -0.029304692521691322, 0.00022403357434086502, 0.007931578904390335, 0.001965651987120509, -0.01938830316066742, 0.003385289805009961, -0.011173180304467678, 0.019771471619606018, 0.030162988230586052, 0.021334797143936157, -0.02269887551665306, 0.0007256245007738471, 0.009487240575253963, 0.0024235378950834274, -0.010828329250216484, 0.008015875704586506, 0.007464113645255566, -0.016200345009565353, 0.027128297835588455, 0.02197851985692978, 0.0073759849183261395, -0.000510571408085525, 0.008437360636889935, -0.01875990815460682, 0.01547232549637556, 0.015135138295590878, -0.0006624017842113972, -0.011770922690629959, -0.01820814609527588, 0.01624632440507412, -0.012383990921080112, -0.026944376528263092, 0.005092303268611431, 0.025258438661694527, -0.015548959374427795, -0.0123226847499609, 0.018008898943662643, -0.0009009238565340638, 0.00281628523953259, 0.016139037907123566, 0.02214711345732212, 0.013594802469015121, 0.028477050364017487, 0.013947317376732826, -0.017487790435552597, 0.014437772333621979, 0.00712309405207634, -0.004954362753778696, 0.040861040353775024, -0.0238790325820446, 0.013203971087932587, -0.00025289092445746064, 0.001053712097927928, 0.006548341829329729, -0.02158002369105816, -0.004831749014556408, -0.005624907091259956, -0.005191927310079336, 0.01024591363966465, 0.00859829131513834, -0.030132334679365158, -0.028047900646924973, 0.0027971267700195312, -0.007525420282036066, -0.011472051031887531, -0.002929319627583027, 0.00622264901176095, 0.0072227176278829575, -0.003452344099059701, -0.005291550885885954, 0.0029657206032425165, -0.002233869628980756, 0.008728568442165852, -0.026285327970981598, -0.020844342187047005, 0.0007984264520928264, -0.0004631543706636876, -0.02558029815554619, 0.0027664732187986374, 0.002536572515964508, -0.013993296772241592, -0.019970718771219254, -0.009625181555747986, -0.017150601372122765, 0.0026534388307482004, -0.003126651281490922, 0.0022089637350291014, -0.011847556568682194, -0.008345399983227253, -0.007425796706229448, 0.006287787575274706, 0.0009416354587301612, 0.010322547517716885, 0.010897299274802208, -0.008981458842754364, 0.003871913067996502, 0.009870409034192562, -0.007046460639685392, -0.015955118462443352, -0.010153952986001968, -0.0075330836698412895, -0.01033021043986082, -0.007057955488562584, 0.003126651281490922, 0.08717839419841766, -0.008054192177951336, -0.01626165211200714, 0.005621075164526701, -0.00043729052413254976, -0.015495316125452518, 0.005027164705097675, 0.037948962301015854, 0.019357649609446526, 0.0006255218177102506, 0.002040369901806116, -0.0177330169826746, 0.0021304143592715263, -0.014866920188069344, -0.020706402137875557, 0.023618478327989578, 0.017319194972515106, 0.02237701416015625, -0.007073282264173031, 0.0006331852055154741, 0.010858982801437378, 0.02889087051153183, -0.018269453197717667, 0.018867194652557373, 0.00281628523953259, 0.006533015053719282, -0.004720630589872599, 0.004088403191417456, 0.005525283515453339, 0.016123712062835693, 0.0006518646259792149, 0.006257134489715099, -0.012713516131043434, -0.01346452534198761, 0.005586590152233839, 0.02700568363070488, -0.008000548928976059, 0.013625456020236015, 0.0006920972955413163, 0.008904825896024704, 0.009134726598858833, -0.011801576241850853, 0.015909137204289436, -0.009134726598858833, 0.00836839061230421, -0.006789737846702337, -0.003555799601599574, 0.004735956899821758, 0.010935615748167038, -0.01616969145834446, -0.0009837839752435684, 0.005042491480708122, 0.001098734326660633, 0.010575437918305397, 0.002226206474006176, -0.01900513470172882, 0.012315020896494389, -0.005191927310079336, 0.010376190766692162, 0.004007937852293253, -0.0194802638143301, -0.0073951431550085545, -0.02237701416015625, -0.024676023051142693, 0.0030538493301719427, 0.0011638730065897107, 0.001547040999867022, -0.014644683338701725, 0.011640645563602448, 0.008981458842754364, -0.011487377807497978, 0.03117455169558525, 0.000271091383183375, 0.0022664389107376337, -0.007364490069448948, 0.03249264881014824, -0.0037090666592121124, -0.013901337049901485, 0.006682450883090496, -0.0008582964073866606, -0.01519644446671009, -0.0007375985151156783, 0.0021438251715153456, -0.01577119715511799, 0.004766610451042652, 0.004513719584792852, 0.0316956602036953, -0.012782486155629158, 0.014552722685039043, -0.00864427164196968, -0.018805887550115585, -0.00371098262257874, 0.00915005337446928, 0.017610402777791023, -0.0034753342624753714, 0.002260691486299038, -0.020200619474053383, -0.00028234696947038174, 0.01083599217236042, -0.013295931741595268, -0.00643722340464592, 0.004053918179124594, 0.006349094677716494, 0.01932699605822563, -0.0006968869129195809, -0.016905374825000763, 0.007326173130422831, 0.007877934724092484, -0.003950462676584721, 0.010537121444940567, 0.006425728090107441, 0.003369963029399514, -0.014169554226100445, -0.006678618956357241, -0.02607075497508049, 0.014391792006790638, 0.01744180917739868, -0.015004861168563366, -0.02873760461807251, -0.010889636352658272, 0.016598839312791824, -0.0030251117423176765, 0.03123585879802704, -0.004820254165679216, -0.011824565939605236, -0.012943416833877563, -0.024538081139326096, -0.00882819201797247, -0.016997335478663445, 0.008552310988307, 0.023189330473542213, -0.0008386590634472668, 0.008468014188110828, 0.01875990815460682, 0.011970169842243195, 0.0035941163077950478, -0.005027164705097675, -0.01641491986811161, 0.010874309577047825, -0.006812728010118008, -0.006138352211564779, 0.014460762031376362, 0.0011983580188825727, 0.006153678987175226, 0.006203490775078535, 0.005739857442677021, 0.014230861328542233, 0.005027164705097675, 0.010889636352658272, 0.006483203265815973, 0.028078554198145866, -0.027266237884759903, 0.0061268568970263, -0.004686145111918449, 0.0020499490201473236, 0.004594184923917055, -0.014215534552931786, 0.006831886246800423, 0.0038278489373624325, -0.013479852117598057, -0.003061512717977166, -0.0019072189461439848, -0.013893673196434975, -0.010261240415275097, -0.006793569307774305, 0.022652894258499146, 0.023511191830039024, 0.012866782955825329, 0.021626004949212074, -0.007119262591004372, -0.010222923941910267, 0.026990357786417007, -0.0011044818675145507, -0.0221317857503891, -0.010153952986001968, 0.0007040713098831475, 0.010805338621139526, -0.003233938245102763, -0.024921249598264694, 0.012529594823718071, 0.0015039346180856228, 0.014813276939094067, 0.0163382850587368, -0.003726309398189187, 0.001625590492039919, -0.013219297863543034, 0.003730140859261155, -0.005199590232223272, 0.003214780008420348, 0.008284092880785465, -0.017610402777791023, 0.002519330009818077, -0.017533769831061363, -0.011502704583108425, -0.009717142209410667, 0.01736517623066902, 0.010452824644744396, 0.023373251780867577, -0.0030231960117816925, -0.00404625479131937, -0.00969415158033371, 0.00809250958263874, 0.010353201068937778, 0.004885392729192972, -0.024216221645474434, -0.005808827467262745, -0.019097095355391502, -0.015319058671593666, -0.015725215896964073, 0.015985770151019096, -0.05477770417928696, -0.017717691138386726, 0.012146427296102047, 0.013043040409684181, -0.03335094824433327, 0.027772020548582077, 0.003097913693636656, -0.016982007771730423, 0.026806436479091644, 0.01820814609527588, 0.01639959216117859, 0.01900513470172882, 0.014974207617342472, -0.016629492864012718, -0.008330073207616806, 0.02521245740354061, 0.00836839061230421, 0.0067284307442605495, 0.04239371418952942, 0.004348957445472479, 0.032216768711805344, -0.005245570559054613, -0.009548547677695751, 0.010184606537222862, 0.015181117691099644, 0.00808484572917223, 0.02953459322452545, -0.016997335478663445, 0.024875270202755928, -0.01813151128590107, -0.014046940952539444, 0.011058229953050613, -0.00812316220253706, 0.004494561348110437, 0.012621555477380753, -0.01420787163078785, -0.0018238798948004842, -5.029080784879625e-05, -0.004904550965875387, -3.119227403658442e-05, 0.019970718771219254, -0.01315032783895731, -0.00813082605600357, -0.0012251798762008548, 0.01862196810543537, 0.018575986847281456, 0.006996648386120796, -0.0008118373225443065, 0.016353612765669823, -0.015234761871397495, -0.012138763442635536, 0.008207459934055805, 0.0004902156069874763, -0.0011552516371011734, 0.014345811679959297, 0.01702798902988434, 0.007100103888660669, 0.006115362048149109, -0.012307357974350452, 0.004678481724113226, 0.004437086172401905, -0.0008865550626069307, 0.005429491400718689, 0.00730318296700716, -0.01138775423169136, -0.00812316220253706, 0.01744180917739868, -0.006663292180746794, 0.009602190926671028, 0.024921249598264694, -0.006510025355964899, 0.0003932262188754976, -0.0003314403584226966, -0.034515779465436935, 0.007157579064369202, -0.023219984024763107, -0.012989397160708904, 0.001145672518759966, -0.017855631187558174, -0.0008262061164714396, 0.0020691074896603823, -0.030668770894408226, 0.00993171613663435, 0.01221539732068777, -0.0073414999060332775, 0.007157579064369202, -0.0001430893171345815, 0.0072073908522725105, 0.013050703331828117, 0.004548204597085714, -0.004643996711820364, 0.010767022147774696, -0.01405460387468338, -0.03109791874885559, 0.012537258677184582, 0.008391380310058594, 0.011295794509351254, -0.013311258517205715, 0.014629356563091278, 0.022484300658106804, 0.0198634322732687, 0.005345194134861231, -0.011724942363798618, 0.005762847606092691, -0.005402669310569763, 0.0007696888060308993, -0.006839549634605646, 0.01102757640182972, 0.00035969901364296675, -0.001842080382630229, -0.007295519579201937, 0.006050223484635353, -0.01830010674893856, 0.011755595915019512, 0.011993159539997578, 0.0284157432615757, 0.03359617292881012, 0.036630865186452866, -0.0059046195819973946, 0.008391380310058594, -0.009027439169585705, 0.004184195306152105, -0.01639959216117859, -0.014453099109232426, -0.019097095355391502, 0.00859829131513834, 0.00108053395524621, -0.005567431915551424, -0.01868327334523201, 0.0009876156691461802, -0.004237838555127382, -0.005785837769508362, -0.0016150532756000757, -0.013372564688324928, 0.010468151420354843, 0.022867469117045403, 0.03243134543299675, -0.01869860105216503, 0.00551378820091486, 0.031373798847198486, 0.0076480344869196415, -0.009862745180726051, 0.02715895138680935, -0.009632844477891922, -0.019051115959882736, -0.0037397202104330063, -0.014943554066121578, 0.004912214353680611, -0.021717965602874756, 0.00813082605600357, -0.011042903177440166, 0.011380091309547424, 0.0001566199352964759, -0.009494904428720474, 0.0013506673276424408, 0.004862402565777302, -0.005644065327942371, 0.016767434775829315, -0.024752655997872353, 0.031067265197634697, -0.0034887450747191906, -0.0157098900526762, 0.0016667810268700123, -0.011418407782912254, -0.008069518953561783, -0.011326447129249573, -0.0014071846380829811, -0.007946905680000782, -0.004314472433179617, 0.02207048051059246, 0.046133432537317276, -0.004134383052587509, -0.012261377647519112, 0.003002121578902006, 0.011556348763406277, -0.000333116709953174, 0.005835649557411671, 0.009916389361023903, -0.0031956215389072895, 0.017533769831061363, 0.009625181555747986, 0.01624632440507412, 0.003684160765260458, -0.0015374617651104927, 0.003931303974241018, 0.0010441329795867205, -0.014537395909428596, 0.0018056794069707394, -0.00594676798209548, -0.021656658500432968, -0.002400547731667757, -0.005180431995540857, 0.001005816156975925, 0.0013439619215205312, -0.008567637763917446, -0.02654588222503662, -0.0008846392156556249, 0.03666152060031891, 0.01915840245783329, -0.011640645563602448, 0.006923846434801817, 0.006866371259093285, -0.011625318787992, 0.010881972499191761, 0.006100035272538662, -0.013410882093012333, 0.03289114683866501, -0.013104347512125969, 0.004900719504803419, 0.013334248214960098, 0.012276704423129559, 0.011571675539016724, 0.012583239004015923, -0.013203971087932587, 0.004843244329094887, 0.03601779788732529, 0.009686488658189774, -0.004682313650846481, -0.015801850706338882, 0.014744306914508343, -0.010506467893719673, -0.019894085824489594, 0.027419505640864372, -0.001113103237003088, -0.014790286310017109, -0.008307083509862423, 0.02700568363070488, -0.019694838672876358, -0.006034896709024906, 0.02890619821846485, -0.007613549008965492, -0.014790286310017109, -0.0044447495602071285, 0.0012328431475907564, 0.008429696783423424, 0.006812728010118008, -0.0010881972266361117, 0.02668382227420807, -0.003938967362046242, -0.01837673969566822, -0.01370208989828825, 0.015173454768955708, -0.0016983923269435763, 0.013173317536711693, -0.02551899291574955, 0.00330865615978837, -0.01483626663684845, 0.00500800646841526, 0.010460487566888332, -0.01287444680929184, 0.014805613085627556, 0.013311258517205715, 0.00244461209513247, 0.006889361422508955, -0.0015202192589640617, -0.012238387949764729, -0.0020039689261466265, -0.001811426947824657, 0.002647691173478961, 0.0073951431550085545, -0.007621212396770716, 0.009479577653110027, 0.008291756734251976, -0.008582964539527893, -0.02127349004149437, 0.015955118462443352, 0.004590353462845087, -0.008314746432006359, 0.021564697846770287, -0.02692905068397522, -0.006138352211564779, 0.0005460144602693617, -0.0012788233580067754, -0.008314746432006359, 0.030561484396457672, -0.0017664047190919518, -0.021534044295549393, 0.02472200244665146, 0.008881835266947746, 0.015334385447204113, 0.006544510368257761, -0.005988916847854853, 0.005168937146663666, -0.01563325710594654, -0.009058092720806599, -0.0003903524484485388, 0.004230175167322159, 0.027051664888858795, -0.015556623227894306, 0.0074947671964764595, 0.011242150329053402, -0.00922668632119894, -0.012989397160708904, 0.016982007771730423, 0.009855082258582115, 0.0011533357901498675, -0.009985359385609627, 0.021472737193107605, 0.02220842055976391, -0.006889361422508955, 0.002889087190851569, -0.008414370007812977, -0.005490798037499189, 0.005965926684439182, -0.01711994782090187, 0.01024591363966465, 0.016200345009565353, 0.022974755614995956, 0.015418682247400284, -0.0017462883843109012, 0.003496408462524414, -0.004295313730835915, 0.001375573338009417, -0.010813002474606037, -0.002486760728061199, -0.008621281012892723, 0.0027204931247979403, -0.0041190567426383495, -0.020829014480113983, 0.011809239163994789, -0.026637842878699303, 0.01892850175499916, 0.00659432215616107, -0.01075935922563076, -0.0005239823367446661, 0.012928090058267117, 0.004820254165679216, -0.004314472433179617, 0.021534044295549393, -0.01267519872635603, 0.012943416833877563, 0.0007237086538225412, 0.01185521949082613, -0.0025001715403050184, -0.008153815753757954, -0.020277252420783043, -0.018652619794011116, 0.003172631375491619, -0.009908725507557392, -0.0007562779355794191, -0.020369213074445724, 0.002197468653321266, 0.024292854592204094, 0.01208512019366026, 0.013387891463935375, -0.024997884407639503, -0.013541159220039845, -0.002827780321240425, 0.004230175167322159, 0.009609854780137539, 0.0014895658241584897, -0.012751832604408264, -0.00922668632119894, 0.002398632001131773, -0.021396104246377945, -0.005383511073887348, 0.0019177560461685061, -0.0017913106130436063, -0.014192544855177402, 0.018192818388342857, 0.00040927136433310807, 0.0021476568654179573, -0.015832504257559776, 0.0008889499003998935, 0.0016610334860160947, 0.0035251460503786802, 0.008100172504782677, -0.00022307565086521208, 0.01111187320202589, -0.018438046798110008, 0.003329730359837413, -0.02458406239748001, -0.020522480830550194, 0.009058092720806599, 0.00700431177392602, 0.020231273025274277, -0.011717278510332108, 0.0005469723837450147, 0.012062130495905876, -0.034178588539361954, 0.01102757640182972, 0.007820460014045238, -0.02151871845126152, -0.0031285672448575497, 0.009027439169585705, -0.0037397202104330063, -0.012659871950745583, -0.008628944866359234, -0.023894360288977623, -0.019756143912672997, 0.0017932264599949121, 0.004383442457765341, -0.008284092880785465, 0.002938898978754878, 0.0017367091495543718, 0.00222812220454216, 0.0032262750901281834, -0.013318921439349651, 0.010452824644744396, -0.00832241028547287, -0.00809250958263874, 0.003511735238134861, -0.0031036611180752516, -0.011770922690629959, 0.0020786866080015898, -0.00445624440908432, 0.004440917633473873, 0.00970181543380022, 0.03751981630921364, 0.004663154948502779, -0.010567774996161461, -0.018897848203778267, 0.006954499986022711, -0.007414301857352257, -0.010184606537222862, 1.1562395229702815e-05, -0.003513650968670845, 0.0016993503086268902, 0.019035788252949715, -0.007218886166810989, -0.011395418085157871, -0.0014205955667421222, 0.012966406531631947, -0.027848653495311737, 0.01757974922657013, -0.024844616651535034, -0.012537258677184582, -0.003174547338858247, 0.021855905652046204, -0.02315867692232132, 0.010514131747186184, 0.0017252141842618585, 0.004774273838847876, 0.010567774996161461, 0.0010881972266361117, -0.0020422856323421, 0.0017089295433834195, -0.01790161058306694, -0.005624907091259956, 0.01679808646440506, -0.003373794723302126, 0.00832241028547287, -0.012207734398543835, 0.028477050364017487, -0.007291688118129969, -0.006655629258602858, 0.007916252128779888, -0.02660718932747841, 0.0023277460131794214, -0.01639959216117859, 0.0023009241558611393, -0.023970993235707283, -0.008192133158445358, 0.005019501317292452, -0.009678824804723263, -0.00895080529153347, 0.018560661002993584, 0.0026840921491384506, 0.022346360608935356, -0.007433460094034672, -0.01016161683946848, 0.017702363431453705, -0.009303320199251175, 0.0042761554941535, 0.0006949710659682751, -0.018392065539956093, -0.02072172798216343, -0.027281565591692924, -0.005145946983247995, -0.04187260568141937, -0.01460636593401432, 0.014790286310017109, -0.025733565911650658, -0.031603701412677765, -1.3515654245566111e-05, -0.000285939167952165, -0.007946905680000782, -0.0013410882093012333, -0.010881972499191761, -0.003730140859261155, -0.019097095355391502, -0.02968786098062992, 0.008981458842754364, 0.005578926764428616, 0.009525557979941368, 0.010552448220551014, -0.013035377487540245, 0.0017405408434569836, -0.015955118462443352, -0.005030996631830931, -0.01891317404806614, -0.019035788252949715, -0.007628875784575939, -0.012713516131043434, 0.010192270390689373, -0.019909411668777466, 0.014813276939094067, 0.0005148820928297937, 0.014660009182989597, -0.00309216626919806, 0.007333836518228054, -0.002007800620049238, -0.016476226970553398, 0.007743826135993004, -0.010805338621139526, -0.012575575150549412, 0.023925013840198517, -0.012475951574742794, -0.008460350334644318, 0.018637293949723244, 0.004352788906544447, 0.009203696623444557, 0.00498501630499959, 0.020537806674838066, -0.0004734520334750414, -0.01208512019366026, -0.008544647134840488, 0.02018529362976551, -0.013648445717990398, 0.007042628712952137, 0.008621281012892723, 0.013870683498680592, -0.00014105373702477664, -0.00755607383325696, -0.01318864431232214, 0.0006825180607847869, 0.010889636352658272, -0.006736094132065773, 0.023664459586143494, 0.0075139254331588745, 0.0031304829753935337, -0.02174861915409565, -0.004142046440392733, 0.015027850866317749, 0.022576261311769485, -0.003791447961702943, 0.00714608421549201, 0.014583376236259937, -0.008115499280393124, -0.0077016777358949184, -0.025028537958860397, -0.02285214327275753, 0.03448512405157089, 0.006732262670993805, 0.00887417234480381, -0.00973246805369854, 0.017702363431453705, -0.0029695522971451283, 0.014123573899269104, -0.004437086172401905, 0.00418036337941885, 0.0022300381679087877, -0.006149847060441971, 0.017319194972515106, -0.006992816925048828, 0.013403218239545822, -0.007092440500855446, -0.010276567190885544, -0.006759084295481443, 0.008651934564113617, 0.007739994674921036, -0.005697709042578936, -0.009663498029112816, 0.013794049620628357, 0.005172768607735634, -0.014353475533425808, -0.015970444306731224, 0.014690662734210491, 0.006778242997825146, 0.019357649609446526, -0.005824154242873192, 0.02591748721897602, -0.021074242889881134, 0.00755607383325696, -0.011449061334133148, -0.010230586864054203, 0.04686911404132843, 0.02174861915409565, 0.02277550846338272, 0.0026936715003103018, 0.017012661322951317, 0.00011985975288553163, -0.013801713474094868, -0.003954294137656689, 0.016215672716498375, 0.009878071956336498, 0.010920288972556591, -0.011226823553442955, -0.008038865402340889, 0.00019278143008705229, 0.015955118462443352, 0.017395829781889915, 0.0029657206032425165, -0.007326173130422831, 0.004532877821475267, 0.017395829781889915, -0.014430108480155468, 0.009448924101889133, 0.016031751409173012, 0.0019378723809495568, 0.01830010674893856, 0.013487515039741993, -0.026086080819368362, 0.01577119715511799, 0.009265003725886345, 0.003693740116432309, -0.014269177801907063, 0.000146801263326779, -0.0066901142708957195, 0.010153952986001968, -0.012583239004015923, -0.014062267728149891, 0.018024224787950516, -0.01236100122332573, -0.021411430090665817, -0.0026074585039168596, -0.0065713319927453995, -0.015801850706338882, -0.0007672940264455974, 0.011763258837163448, -0.002105508465319872, -0.007295519579201937, -0.014376465231180191, 0.03194088861346245, 0.003699487540870905, -0.02685241773724556, 0.011648308485746384, 0.003804858773946762, 0.009908725507557392, -0.011602328158915043, -0.003002121578902006, -0.03045419603586197, 0.011203833855688572, -0.00023936029174365103, -0.004364284221082926, -0.007559905759990215, 0.0016006844816729426, 0.008858845569193363, -0.006797401234507561, -0.011847556568682194, -0.0044792345724999905, 0.01601642370223999, -0.00832241028547287, -0.009770785458385944, -0.01687472127377987, 0.019189056009054184, 0.0003881971351802349, -0.002645775442942977, -0.0073414999060332775, -0.013142663985490799, 0.010253576561808586, 0.001422511413693428, 0.018974481150507927, 0.001576736569404602, 0.009127062745392323, -0.012223061174154282, 0.006276292726397514, 0.0019244615687057376, -0.01079767569899559, -0.007931578904390335, -0.008284092880785465, -0.01475963369011879, -0.007954568602144718, 0.022821489721536636, 0.006444886792451143, 0.0012615808518603444, 0.01024591363966465, -0.00024786184076219797, -0.04083038866519928, 0.008835854940116405, -0.00730318296700716, -0.0038910715375095606, 0.006460213102400303, 0.004092234652489424, -0.019296342507004738, -0.013870683498680592, 0.018499353900551796, -0.007498598657548428, -0.0008314746664837003, 0.013180981390178204, -0.0033987006172537804, -0.0034600074868649244, 0.007073282264173031, -0.011203833855688572, 0.013755733147263527, -0.005314541049301624, 0.010705715045332909, 0.004517551511526108, -0.01813151128590107, -0.004674650263041258, -0.0007337668212130666, -0.010774686001241207, -0.016384266316890717, 0.0022817656863480806, -0.016154365614056587, -0.0013410882093012333, -0.04662388935685158, -0.0008697914890944958, 0.004387274384498596, 0.009180706925690174, 0.0011198086431249976, -0.0123226847499609, 0.009847419336438179, -0.00011291483679087833, 0.012269040569663048, 0.014407118782401085, -0.007678687572479248, -0.017886284738779068, -0.018637293949723244, -0.02135012298822403, 0.000913376861717552, 0.004368115682154894, 0.004916046280413866, 0.006234144326299429, -0.01554129645228386, -0.013663772493600845, -0.01557961292564869, -0.0007213138742372394, 0.003341225441545248, -0.0075330836698412895, 0.015250088647007942, -0.004801095463335514, -0.0028201169334352016, 0.004548204597085714, -0.010123299434781075, -0.007345331367105246, 0.011709615588188171, -0.008690251037478447, -0.003885324113070965, 0.00044327753130346537, 0.022422993555665016, 0.010767022147774696, -0.014598703011870384, -0.021258164197206497, -0.008575300686061382, 0.008038865402340889, 0.008215122856199741, -0.010100309737026691, 0.016062404960393906, 0.0036630865652114153, 0.009242013096809387, 0.0063184411264956, -0.01075935922563076, 0.0025653101038187742, -0.0081691425293684, 0.0028047901578247547, 0.0008463224512524903, 0.003214780008420348, -0.004111393354833126, -0.00033191932016052306, 0.018713926896452904, 0.0005838522920385003, 0.016276977956295013, -0.03276853263378143, -0.00647553987801075, -0.002848854521289468, 0.007441123481839895, -0.0008319536573253572, 0.002274102298542857, -0.007372153457254171, 0.01102757640182972, 0.0198634322732687, 0.003253096714615822, 0.022422993555665016, 0.028599662706255913, 0.0314197801053524, -0.022959429770708084, 0.010222923941910267, -0.026024773716926575, 0.01405460387468338, 0.00021708864369429648, -0.009088746272027493, 0.030730077996850014, 0.003174547338858247, 0.002800958463922143, 0.020200619474053383, -0.0002588779025245458, 0.008927815593779087, 0.011395418085157871, -0.016123712062835693, -0.00789326149970293, -0.012537258677184582, 0.008690251037478447, -0.00013961685181129724, -0.010153952986001968, -0.016200345009565353, 0.02024659886956215, 0.017319194972515106, 0.011594665236771107, 0.01891317404806614, 0.0021304143592715263, 0.01938830316066742, 0.0009243928943760693, 0.023756418377161026, -0.004314472433179617, -0.008973795920610428, -0.0037033192347735167, 0.015058504417538643, -0.02222374640405178, 0.021089568734169006, -0.020614441484212875, -0.00643722340464592, -0.05235608294606209, 0.002879507839679718, -0.026270002126693726, 0.02757277339696884, -0.0016198429511860013, 0.02332727052271366, 0.0016495384043082595, 0.008391380310058594, 0.00386808137409389, -0.006375916302204132, -0.008000548928976059, -0.008376053534448147, -0.007985222153365612, 0.009893398731946945, -0.01484393049031496, -0.016767434775829315, 0.004134383052587509, -0.028477050364017487, -0.002536572515964508, -0.007352994754910469, 0.012905100360512733, -0.014751969836652279, -0.018100859597325325, 0.011839892715215683, -0.01868327334523201, 0.021733291447162628, -0.007008143700659275, -0.0029369830153882504, 0.01204680372029543, 0.0029350672848522663, -0.006720767822116613, 0.02016996592283249, 0.0057475208304822445, -0.0003822101280093193, 0.022990083321928978, -0.0020173797383904457, 0.0036918241530656815, 0.00910407304763794, -0.02182525210082531, -0.022744854912161827, 0.01239931769669056, 0.013135001063346863, 0.0044830660335719585, 0.0002112213842337951, 0.0032626758329570293, -0.011395418085157871, 0.0019445779034867883, 0.03423989564180374, 0.0088665084913373, 0.013633118942379951, -0.00201163231395185, -0.020844342187047005, 0.009211359545588493, 0.013993296772241592, -0.009947042912244797, 0.02371043898165226, -0.0030423542484641075, -0.012207734398543835, -0.007142252288758755, 0.016031751409173012, 0.008146152831614017, 0.006165173836052418, -0.009303320199251175, -0.007418133318424225, 0.011219160631299019, 0.00461334316059947, -0.0046171750873327255, 0.016353612765669823, 0.012230724096298218, -0.00275689410045743, 0.005053986795246601, 0.010598428547382355, 0.015219435095787048, -0.017886284738779068, 0.003446596674621105, 0.006916183512657881, -0.004697640426456928, -0.018882522359490395, -0.0062264809384942055, -0.014621692709624767, 0.010383854620158672, 0.02441546879708767, 0.007149915676563978, 0.010805338621139526, 0.004027096088975668, 0.01161765493452549, 0.021212182939052582, -0.014215534552931786, -0.02630065567791462, 0.020139312371611595, -0.004379610996693373, 0.0012002738658338785, 0.013387891463935375, 0.015663910657167435, -0.0010786181082949042, -0.007391311693936586, -0.02567225880920887, -0.0088665084913373, -0.0011562096187844872, -0.005647897254675627, 0.00042172434041276574, 0.02190188504755497, 0.002277933992445469, -0.00895080529153347, -0.010675061494112015, -0.000789326208177954, 0.010391517542302608, 0.014928227290511131, -0.00684721302241087, -0.006391243077814579, 0.018667947500944138, -0.026101406663656235, 0.0029331513214856386, -0.002906329696998, 0.0029695522971451283, -0.011533358134329319, 0.007900925353169441, -0.006130688823759556, 0.02064509503543377, 0.012491278350353241, -0.012008486315608025, 0.013257614336907864, -0.0006149847176857293, 0.0001656004460528493, 0.019265688955783844, 0.015648582950234413, -0.007824291475117207, 0.02622402086853981, 0.008054192177951336, 0.02072172798216343, 0.010652071796357632, 0.002061444101855159, -0.01259856577962637, 0.0022377013228833675, 0.0034734182991087437, 0.006981322076171637, -0.003034690860658884, 0.006651797331869602, -0.0014292168198153377, -0.011081219650804996, 0.01750311627984047, 0.017012661322951317, -0.02582552656531334, -0.005701540503650904, -0.023281291127204895, 0.0018526174826547503, -0.02032323367893696, 0.015288405120372772, 0.01586315780878067, -0.0059391045942902565, 0.012552585452795029, 0.0121311005204916, 0.019265688955783844, 0.03384140133857727, 0.003958126064389944, 0.0011619571596384048, 0.010368527844548225, 0.002433117013424635, -0.0194802638143301, -0.015985770151019096, 0.008674924261868, -0.011556348763406277, -0.0016284642042592168, 0.006310777738690376, 0.011847556568682194, 0.010399180464446545, 0.026178041473031044, -0.0280325748026371, -0.019694838672876358, -0.02024659886956215, -0.007644202560186386, -0.0036151905078440905, 0.01925036311149597, 0.017641056329011917, -0.016936028376221657, -0.01931167021393776, 0.0014330485137179494, -0.003760794410482049, 0.015449335798621178, -0.010606091469526291, -0.01908176951110363, 0.0028086218517273664, -0.007575232535600662, 0.0033335620537400246, -0.009395280852913857, 0.006529183592647314, 0.015296068973839283, -0.00406158110126853, -0.005337530747056007, 0.016476226970553398, 0.03399467095732689, -0.0036592548713088036, -0.027971267700195312, 0.010537121444940567, 0.011732605285942554, -0.011019913479685783, 0.006130688823759556, -0.004586521536111832, 0.006123025435954332, 0.0023967160377651453, -0.022254399955272675, -0.02174861915409565, 0.0068778665736317635, 0.032615263015031815, -0.01822347193956375, 0.001128429896198213, 0.005368184298276901, 0.022438321262598038, 0.01584783010184765, 0.01767170988023281, 0.006130688823759556, -0.01679808646440506, 0.005490798037499189, 0.020123986527323723, 0.008330073207616806, -0.009839755482971668, 0.017257889732718468, 0.021534044295549393, 0.004287650343030691, 0.0026879238430410624, -0.007096272427588701, -0.009326309897005558, -0.012836129404604435, 0.0018123849295079708, -0.007510093972086906, 0.018575986847281456, -0.017717691138386726, 0.00596975814551115, -0.012889773584902287, 0.020307905972003937, -0.015411019325256348, 0.008521657437086105, -0.0188518688082695, -0.007923915050923824, -0.006448718253523111, -0.013679099269211292, -0.005126788280904293, -0.023250637575984, 0.003082586918026209, -0.00808484572917223, 0.011150190606713295, -0.01043749786913395, 0.02976449392735958, -0.017303869128227234, -0.007326173130422831, -0.01584783010184765, 0.02167198434472084, -0.0018669862765818834, -0.026760457083582878, 0.009678824804723263, -0.006812728010118008, -0.00037646261625923216, -0.0037971953861415386, -0.004069244489073753, 0.006533015053719282, -0.028001921251416206, -0.001747246365994215, -0.011878209188580513, -0.009594528004527092, 0.028798909857869148, 0.0036899084225296974, 0.02136545069515705, -0.007586727384477854, -0.009686488658189774, 0.025089843198657036, 0.001222306047566235, -0.0006566542433574796, 0.005038660019636154, 0.010215260088443756, -0.00012087754294043407, -0.026944376528263092, -0.01448375266045332, 0.006858707871288061, 0.013640782795846462, 0.05275457724928856, -0.0068625397980213165, 0.03045419603586197, -0.008061856031417847, -0.0025748892221599817, -0.027189604938030243, -0.0008999659330584109, -0.0052877189591526985, -0.003542388556525111, -0.006943005137145519, -0.00915005337446928, -0.03203284740447998, 0.01860664039850235, 0.016920700669288635, 0.004509888123720884, 0.007103935815393925, 0.008107836358249187, 0.012054466642439365, 0.01679808646440506, 0.01134177390486002, -0.0044600763358175755, -0.0014158058911561966, -0.033565521240234375, -0.007843449711799622, 0.011042903177440166, 0.016123712062835693, -0.00160930585116148, -0.02081368863582611, -0.005234075710177422, -0.0032760868780314922, 0.00488922419026494, -0.0038910715375095606, -0.015832504257559776, -0.00832241028547287, 0.004375779069960117, 0.020553134381771088, 0.0129510797560215, 0.010943279601633549, 0.0049965111538767815, -0.01106589287519455, -0.013311258517205715, -0.011694288812577724, -0.0068433815613389015, 0.004881560802459717, -0.012276704423129559, -0.00671310443431139, -0.008184469304978848, 0.00461334316059947, -0.03761177510023117, -0.012391654774546623, -0.009939379058778286, -0.02205515280365944, -0.0012443382292985916, -0.00485090771690011, 0.020691074430942535, -0.00608854042366147, 0.006146015599370003, 0.0014732811832800508, -0.010950942523777485, -0.008774548768997192, -0.007471777033060789, 0.009372290223836899, 0.024752655997872353, 0.00910407304763794, -0.01479795016348362, 0.00017350328562315553, -0.004034759476780891, -0.016384266316890717, 0.026499902829527855, -0.016460899263620377, 0.012843793258070946, -0.0035059875808656216, -0.0052494024857878685, -0.01837673969566822, -0.0038604182191193104, 0.007487103808671236, -0.023434557020664215, 0.010996922850608826, -0.026270002126693726, -0.015296068973839283, -0.01547232549637556, -0.004521382972598076, 0.01098925992846489, -0.003343141172081232, -0.013441535644233227, -0.01460636593401432, 0.012859120033681393, 0.009111735969781876, 0.013525832444429398, 0.007008143700659275, -0.024783309549093246, -0.02991776168346405, 0.013020050711929798, -0.006927678361535072, 0.017104621976614, -0.016445573419332504, -0.03650825098156929, -0.001765446737408638, 0.005452481564134359, 0.0012654124293476343, 0.009939379058778286, 0.016307631507515907, -0.011770922690629959, 0.014805613085627556, 0.015464662574231625, -0.019495589658617973, -0.0027645574882626534, -0.010046666488051414, -0.002722409088164568, -0.0008535068482160568, -0.0007984264520928264, -0.0005048239254392684, -0.017564423382282257, 0.03187958151102066, 0.008713241666555405, 0.00362093816511333, 0.01492056343704462, -0.00257105752825737, 0.01853000745177269, 0.008414370007812977, -0.008414370007812977, 0.009249676950275898, 0.03384140133857727, -0.005276224110275507, -0.02081368863582611, -0.0004655491793528199, -0.00042771134758368134, 0.016353612765669823, -0.0073606581427156925, 0.012575575150549412, -0.01161765493452549, -0.007249539718031883, 0.014598703011870384, 0.01484393049031496, -0.014629356563091278, -0.008559973910450935, 0.02032323367893696, -0.013916663825511932, 0.0013439619215205312, -0.020353887230157852, -0.03736654669046402, 0.025902159512043, 0.009924052283167839, -0.013472188264131546, 0.0023775578010827303, -0.006605817005038261, -0.01750311627984047, 5.699624671251513e-05, -0.000679644348565489, -0.0014129321789368987, 0.004341294057667255, -0.022790836170315742, -0.011426071636378765, 0.003232022514566779, -0.014161891303956509, 0.01892850175499916, -0.007640371099114418, 0.010460487566888332, -0.014514405280351639, 0.015372701920568943, -0.0009689361904747784, 0.007705509662628174, -0.001127472030930221, -0.00019697232346516103, 0.011426071636378765, -0.0065713319927453995, -0.00977844838052988, 0.014069930650293827, 0.00031946637318469584, -0.02079836092889309, -0.0023411568254232407, -0.02032323367893696, 0.00029911057208664715, 0.006444886792451143, -0.001963736256584525, 0.009272666648030281, 0.0007816628203727305, 0.002333493437618017, -0.0046325018629431725, -0.00010177901276620105, 0.009763121604919434, 0.002741567324846983, 0.027496138587594032, 0.007165242452174425, 0.006061718333512545, 0.015418682247400284, -0.0010776601266115904, 0.013096683658659458, -0.0013056450989097357, 0.0036764973774552345, -0.005785837769508362, 0.027066990733146667, -0.024231547489762306, 0.008559973910450935, -0.021610677242279053, 0.011740269139409065, 0.007414301857352257, -0.010322547517716885, -0.02653055638074875, -0.014069930650293827, 0.02576421946287155, 0.021687312051653862, -0.009387616999447346, 0.011472051031887531], "a884050d-6aec-46e2-a38e-6bfda8af1a07": [-0.011325263418257236, -0.021808087825775146, -0.005646736826747656, 0.007979343645274639, -0.05216774344444275, -0.02273000404238701, 0.030995458364486694, 0.05115045607089996, -0.014273806475102901, 0.04800322279334068, 0.022284939885139465, 0.015759998932480812, 0.0035326876677572727, -0.007268037647008896, 0.013264467008411884, 0.0269263107329607, -0.023461177945137024, 0.007482621818780899, 0.016928289085626602, -0.02424003928899765, 0.06758599728345871, -0.017246190458536148, -0.058335043489933014, 0.04158160090446472, 0.004824165254831314, -0.020774904638528824, -0.006870659999549389, 0.015958687290549278, -0.025448067113757133, -0.011841855011880398, -0.014297649264335632, 0.024748681113123894, 0.021569659933447838, -0.005102329421788454, 0.006846817210316658, -0.01897875778377056, 0.012509449385106564, 0.016578596085309982, -0.005614946596324444, -0.009743700735270977, -0.031583577394485474, 0.04580969735980034, 0.015044718980789185, -0.022062409669160843, -0.04526926577091217, 0.030105333775281906, -0.002612758195027709, -0.0017822389490902424, -0.004315521568059921, -0.02207830362021923, 0.04037357121706009, 0.02668788470327854, 0.0051142508164048195, 0.004895693156868219, 0.015092404559254646, -0.046413712203502655, 0.011722641997039318, 0.05706343427300453, 0.019360240548849106, -0.06373938173055649, -0.0002519622794352472, 0.0008444275590591133, 0.021951142698526382, 0.00644149212166667, 0.011690851300954819, -0.027291899546980858, 0.024144668132066727, -0.003041926072910428, -0.04476062208414078, 0.02816613018512726, 0.02506658434867859, -0.006437518633902073, -0.0484800785779953, -0.00019285235612187535, -0.0056348154321312904, -0.006568653043359518, 0.028007179498672485, 0.020345736294984818, 0.027562115341424942, -0.016387855634093285, -0.03442880138754845, -0.021712716668844223, 0.009235057048499584, -0.001083847600966692, 0.0686032846570015, 0.03837078809738159, -0.03468312323093414, -0.06853970140218735, -0.05738133564591408, -0.0029366209637373686, 0.004096963908523321, 0.009004577994346619, 0.001030201674439013, 0.01751640811562538, -0.026910416781902313, 0.012104123830795288, 0.027705172076821327, 0.011349106207489967, 0.003761179745197296, -0.024780472740530968, -0.03293466195464134, -0.012453816831111908, -0.038052886724472046, 0.023381702601909637, 0.014162540435791016, 0.023938031867146492, 0.009235057048499584, 0.0079197371378541, -0.010713302530348301, 0.045650746673345566, -0.0023028035648167133, -0.026211032643914223, 0.052612803876399994, -0.01845422014594078, -0.045650746673345566, -0.06415265053510666, -0.03690844029188156, -0.02465331181883812, -0.017834309488534927, -0.03808467835187912, 0.05083255097270012, 0.005253333132714033, 0.023922136053442955, 0.024160562083125114, -0.009624487720429897, 0.01316909585148096, 0.00576992379501462, 0.026544829830527306, 0.011516004800796509, 0.005622894037514925, 0.0047844271175563335, -0.012604819610714912, 0.018883386626839638, 0.009862913750112057, 0.005050670355558395, 0.006914371624588966, -0.0033558544237166643, 0.06399369984865189, -0.011587533168494701, 0.020774904638528824, -0.03538250923156738, -0.021474290639162064, -0.0016938223270699382, -0.016928289085626602, 0.0448559932410717, -0.004851981531828642, -0.026083871722221375, 0.04266246780753136, -0.030057648196816444, 0.04603223130106926, -0.059733811765909195, -0.019773513078689575, -0.009775490500032902, 0.0016342157032340765, -0.008861522190272808, -0.022221360355615616, 0.004700977820903063, 0.008543619886040688, -0.012509449385106564, 0.01302604004740715, -0.014774502255022526, -0.06828538328409195, -0.011333211325109005, 0.020727219060063362, 0.003300221636891365, -0.0030717295594513416, 0.023206856101751328, 0.03020070306956768, -0.026258716359734535, 0.030598081648349762, 0.0004800819151569158, -0.011929278261959553, -0.005761976353824139, -0.0243672002106905, -0.008336983621120453, 0.014758607372641563, 0.05426589772105217, 0.055696453899145126, 0.00032783657661639154, -0.0006690846639685333, -0.02530501037836075, 0.025432171300053596, -0.023095590993762016, -0.008623095229268074, 0.01816810667514801, 0.020170891657471657, 0.0071289557963609695, 0.029358262196183205, 0.0018537668511271477, 0.0010977558558806777, 0.0003993645659647882, -0.038116466253995895, -0.0062149870209395885, 0.004240019712597132, -0.027498535811901093, -0.005372546147555113, 0.002535269595682621, -0.023636024445295334, -0.0004276777326595038, 0.006938214413821697, -0.0224915761500597, -0.051309406757354736, -0.03171074017882347, 0.033792998641729355, -0.029246997088193893, 0.006238829344511032, -0.02079080045223236, -0.04075505584478378, 0.02781643718481064, -0.025479856878519058, 0.05258101597428322, -0.030915983021259308, -0.009099949151277542, -0.0067355516366660595, -0.009012525901198387, -0.0025233482010662556, -0.0020564293954521418, 0.02137891948223114, 0.007693232037127018, -0.01653091236948967, -0.015187774784862995, -0.01646733097732067, -0.03872048109769821, -0.020536478608846664, -0.06170480698347092, -0.013256519101560116, -0.006302409805357456, 0.03407910838723183, -0.013502893969416618, 0.0018756226636469364, 0.0278641227632761, 0.017277982085943222, 0.0024677154142409563, -0.02452615089714527, -0.01641964539885521, 0.024557940661907196, 0.05445663630962372, -0.00681900093331933, 0.022412100806832314, -0.04520568624138832, 0.02319096215069294, 0.044951364398002625, -0.007117034401744604, -0.00355653022415936, 0.006830922327935696, 0.013940009288489819, -0.014035379514098167, 0.04043715447187424, 0.014536075294017792, 0.015728209167718887, 0.006763367913663387, 0.014313544146716595, -0.027244213968515396, -0.000596563215367496, -0.012080281041562557, 0.04428377002477646, 0.03322077542543411, -0.02686273120343685, -0.023111484944820404, -0.011317316442728043, 0.0056983958929777145, 0.02137891948223114, 0.0015020875725895166, -0.0040155015885829926, 0.021919352933764458, -0.0015964647755026817, 0.02869066782295704, -0.006644154898822308, -0.009123791940510273, 0.023810870945453644, 0.023636024445295334, 0.0015507664065808058, 0.005765950307250023, -0.002231275662779808, -0.011110680177807808, -0.01653091236948967, -0.020933855324983597, 0.006278567481786013, -0.0005757008912041783, 0.0034373169764876366, -0.02500300295650959, -0.017945576459169388, 0.029469529166817665, 0.04692235589027405, 0.04577790945768356, -0.027736961841583252, -0.013836691156029701, -0.0484800785779953, -0.043425433337688446, -0.018788017332553864, -0.010530508123338223, 0.026274612173438072, 0.002700181445106864, 0.04644550383090973, 0.00012939611042384058, 0.012978355400264263, -0.0066163381561636925, -0.0037850223015993834, -0.0016580583760514855, -0.014472494833171368, -0.014393019489943981, -0.004657266195863485, 0.011984910815954208, -0.01424996368587017, -0.018358848989009857, -0.028484031558036804, 0.05378904193639755, -0.012557134963572025, -0.02109280787408352, 0.025193745270371437, 0.031933270394802094, -0.003673756727948785, 0.013232676312327385, 0.009831123985350132, 0.011039151810109615, 0.0009462555753998458, 0.016197113320231438, -0.004605607129633427, -0.0037651534657925367, -0.02849992737174034, 0.002058416372165084, 0.0033419462852180004, -0.06688661128282547, 0.019296661019325256, 0.040977586060762405, -0.03471491485834122, 0.004589712247252464, -0.01618916727602482, -0.027291899546980858, -0.037989307194948196, 0.014122802764177322, -0.02768927626311779, -0.04329827055335045, 0.0156487338244915, 0.011086837388575077, -0.051023293286561966, -0.039515238255262375, -0.0322352759540081, -0.010975571349263191, -0.015616943128407001, -0.03989671915769577, 0.005658658221364021, -0.006254724692553282, -0.0006353075732477009, -0.008432354778051376, 0.009266847744584084, 0.03159947320818901, 0.028340976685285568, -0.00565071078017354, -0.01932845078408718, 0.0009144654031842947, -0.03535071760416031, 0.055823616683483124, -0.019201289862394333, 0.013940009288489819, -0.007260090205818415, -0.020472897216677666, 0.03132925555109978, 0.019725827500224113, 0.021426605060696602, 0.0007043519290164113, -0.024987109005451202, 0.00541625777259469, -0.005626867990940809, 0.04015104100108147, 0.005261280573904514, 0.013486998155713081, -0.02115638740360737, -0.004955299664288759, 0.006278567481786013, -0.048734400421381, 0.012986302375793457, 0.006830922327935696, 0.0037095206789672375, -0.03967418894171715, -0.05525139346718788, 0.037480663508176804, 0.012374340556561947, -0.01203259639441967, 0.024398989975452423, 0.010149026289582253, 0.013828743249177933, 0.001350090722553432, 0.03043913096189499, 0.05191342160105705, 0.02096564695239067, 0.016276590526103973, -0.03652695566415787, -0.029835116118192673, 0.000678522395901382, -0.050959713757038116, 0.016499120742082596, -0.020059624686837196, -0.0016352091915905476, -0.023874450474977493, 0.02886551432311535, -0.0007992258761078119, -0.014281753450632095, 0.01622890494763851, -0.041263699531555176, 0.004971194546669722, -0.013256519101560116, -0.0028909225948154926, -0.021808087825775146, 0.01688060350716114, -0.04568253830075264, -0.00739122461527586, -0.017436932772397995, 0.01264455821365118, -0.008813836611807346, 0.02921520732343197, -0.012199494987726212, 0.021998828276991844, 0.010403347201645374, 0.00638188561424613, 0.01827937364578247, 0.0037194550968706608, 0.042439937591552734, -0.06281746178865433, -0.03050271049141884, 0.00360620254650712, 0.04094579443335533, -0.0080270292237401, 0.019614562392234802, -0.031233886256814003, 0.034555964171886444, 0.027768751606345177, -0.012835298664867878, -1.9573955796658993e-05, -0.01891517825424671, 0.008046898059546947, 0.02740316465497017, -6.966527143958956e-05, -0.01124578807502985, -0.0042877052910625935, -0.014210226014256477, 0.00811842642724514, -0.023238645866513252, -0.020647743716835976, -0.007510438095778227, 0.02664019912481308, 0.004069147631525993, 0.000392162095522508, 0.016387855634093285, -0.010594088584184647, -0.03013712354004383, -0.05375725403428078, 0.021569659933447838, 0.024557940661907196, -0.0055434186942875385, -0.014146645553410053, 0.040564313530921936, -0.01300219725817442, 0.00841645896434784, 0.0013431365368887782, -0.021474290639162064, -0.027657486498355865, -0.010880201123654842, 0.03164715692400932, -0.04806680232286453, -0.028658878058195114, 0.01335189025849104, 0.042726047337055206, -0.0020246391650289297, -0.00050541473319754, -0.03872048109769821, 0.022189568728208542, 0.02664019912481308, 0.018247583881020546, 0.003407513489946723, 0.01880391128361225, 0.01921718381345272, -0.013947956264019012, 0.013542631641030312, 0.03709917888045311, 0.019614562392234802, -0.006671971175819635, 0.029755640774965286, 0.023985717445611954, -0.007188562303781509, -0.04441092908382416, -0.02919931150972843, -0.002324659377336502, 0.057444918900728226, -0.00547586428001523, 0.019996045157313347, -0.0011255722492933273, -0.018088631331920624, -0.0009412883664481342, 0.030804717913269997, 0.014758607372641563, 0.0033498937264084816, 0.014202278107404709, 0.013447260484099388, 0.010753040201961994, -0.03347509726881981, 0.004816217347979546, -0.011555742472410202, -0.002821381436660886, -0.0683489590883255, 0.03614547476172447, -0.017198506742715836, -0.013161148875951767, 0.0020782852079719305, -0.030280178412795067, 0.03407910838723183, -0.013256519101560116, 0.003129349322989583, 0.003012122819200158, -0.010943781584501266, -0.006783237215131521, 0.004502288997173309, -0.012962459586560726, -0.010387452319264412, 0.008980735205113888, 0.039864927530288696, -0.021124597638845444, 0.0071289557963609695, 0.04733562842011452, -0.004605607129633427, 0.004633423872292042, -0.02242799662053585, -0.002145839389413595, 0.02751442976295948, -0.009616539813578129, -0.031758423894643784, -0.0036598483566194773, 0.0015944779152050614, 0.02039342187345028, -0.003266444429755211, -0.0068587386049330235, 0.005134119652211666, 3.5298315196996555e-05, 0.010919938795268536, 0.026958102360367775, -0.015163931995630264, -0.031217990443110466, 0.01881980709731579, 0.018088631331920624, 0.027593906968832016, -0.04053252190351486, 0.027069367468357086, -0.014289701357483864, -0.008050872012972832, -0.01869264617562294, 0.01124578807502985, -0.020139100030064583, 0.018788017332553864, 0.006946161855012178, 0.01635606586933136, -0.027736961841583252, 0.02067953534424305, -0.020488793030381203, -0.004027422983199358, 0.00476058479398489, -0.04326648265123367, 0.01346315536648035, -0.038879431784152985, -0.0076495204120874405, -0.023620128631591797, -0.020186785608530045, 0.0022114068269729614, 0.006751446984708309, 0.004768532235175371, -0.03376120701432228, 0.013860533013939857, -0.03442880138754845, 0.023334017023444176, 0.0019620521925389767, 0.018788017332553864, -0.0030935851391404867, 0.011086837388575077, 0.012652505189180374, 0.006397780496627092, -0.013796953484416008, 0.03515997529029846, -0.026258716359734535, -0.011158364824950695, -0.053312189877033234, -0.019471505656838417, 0.04574611783027649, -0.015879211947321892, 0.013510840944945812, -0.024844052270054817, -0.01541825383901596, -0.009839070960879326, -0.02382676489651203, -0.03500102460384369, 0.00608782609924674, 0.018501903861761093, -0.014774502255022526, 0.026497144252061844, -0.007991265505552292, 0.007101139053702354, -0.021394813433289528, 0.014790397137403488, -0.007609782740473747, -0.0021895510144531727, 0.013733373023569584, 0.036018311977386475, 0.007196509744971991, 0.020123206079006195, 0.001436520367860794, -0.013534683734178543, -0.03531892970204353, 0.03234654292464256, -0.010880201123654842, 0.025559332221746445, -0.0019173473119735718, 0.022173674777150154, 0.012660453096032143, 0.011802117340266705, 0.013423417694866657, -0.002612758195027709, 0.033379726111888885, 0.018708541989326477, 0.02716473862528801, 0.030296074226498604, 0.014607603661715984, -0.011500109918415546, 0.03002585656940937, -0.019535087049007416, 0.06024245545268059, -0.0014782450161874294, 0.009163529612123966, 0.030645767226815224, -0.03439701348543167, 0.007701179478317499, -0.007101139053702354, 0.02710115723311901, -0.001607392681762576, -0.00022203478147275746, -0.014774502255022526, -0.03722634166479111, 0.035605039447546005, 0.01010928861796856, 0.0061871702782809734, 0.007462752982974052, -0.008305193856358528, 0.009099949151277542, -0.027736961841583252, -0.005714291241019964, 0.004486394114792347, 0.005638789385557175, -0.014822187833487988, -0.011937225237488747, 0.0038346946239471436, 0.01092788577079773, 0.020902065560221672, 0.02384266071021557, -0.030820613726973534, 0.028404556214809418, 0.03614547476172447, 0.027291899546980858, 0.00847209244966507, -0.009719857946038246, -0.011690851300954819, 0.013804900459945202, -0.009998022578656673, 0.014377124607563019, 0.0007391225080937147, -0.02687862701714039, 0.03113851509988308, 0.03617726266384125, 0.02377908118069172, 0.02598850056529045, -0.007891920395195484, -0.0003757702652364969, 0.012056439183652401, 0.006981926038861275, 4.495335087995045e-05, -0.004736742004752159, 0.014734764583408833, -0.0035287137143313885, 0.011825960129499435, -0.01246971171349287, -0.013359837234020233, -0.009211214259266853, 0.013868480920791626, -0.02288895472884178, -0.017595883458852768, -0.030184809118509293, -0.03283929079771042, 0.007466726470738649, 0.018597275018692017, -0.006755420472472906, 0.011484215036034584, 0.02506658434867859, -0.02681504562497139, -0.013439313508570194, 0.011190155521035194, 0.011476267129182816, -0.01967814192175865, 0.014122802764177322, 0.0010470901615917683, 0.005312939640134573, -0.028611192479729652, -0.006644154898822308, 0.020488793030381203, -0.006342147942632437, -0.044538091868162155, -0.01185774989426136, -0.015195722691714764, -0.00743096275255084, 0.017850205302238464, 0.0261156614869833, -0.018533695489168167, -0.041676972061395645, -0.011579585261642933, -0.015219565480947495, 0.022571051493287086, 0.024271829053759575, -0.003332011867314577, 0.02306380122900009, 0.02238031104207039, -0.006203065626323223, -0.014551970176398754, 0.0023147249594330788, 0.00393006531521678, 0.03837078809738159, -0.009163529612123966, 0.01939203031361103, -0.03360225632786751, -0.04018283262848854, -0.026497144252061844, 0.01332009956240654, 0.010848410427570343, -8.220750896725804e-05, -0.00043413511593826115, -0.001879596384242177, 0.06443876773118973, -0.020997436717152596, -0.011317316442728043, 0.014218172989785671, 0.013335995376110077, -0.02721242420375347, -0.013781057670712471, 0.006846817210316658, 0.02002783492207527, 0.007017689757049084, 0.02360423468053341, -0.001810055342502892, 0.03541429713368416, -0.007693232037127018, -0.005157962441444397, -0.02764159068465233, 0.03859332203865051, 0.018899282440543175, -0.01967814192175865, -0.0036777304485440254, 0.02727600373327732, -0.03614547476172447, 0.030296074226498604, 0.003737337188795209, -0.0030200702603906393, -0.00018093101971317083, 0.0233658067882061, 0.0016819010488688946, -0.009401955641806126, 0.01442481018602848, -0.0031949165277183056, 0.012803508900105953, 0.002029606606811285, -0.02295253425836563, -4.368049849290401e-05, 0.03366583585739136, 0.0004703958402387798, 0.026671990752220154, 0.027673382312059402, 0.015299040824174881, 0.048448286950588226, -0.0038327076472342014, 0.028579402714967728, 0.0288019347935915, -0.02821381576359272, -0.04803501442074776, 0.004263862501829863, -0.0156487338244915, -0.017023660242557526, -0.0028968832921236753, -0.009370165877044201, -0.05684090405702591, -0.0010957689955830574, 0.0011961067793890834, -0.003423408605158329, -0.012016700580716133, 0.016165323555469513, 0.0028134339954704046, -0.013892323710024357, 0.00890920776873827, 0.02214188501238823, -0.015171879902482033, -0.023556549102067947, 0.03703559935092926, 0.009409903548657894, 0.001114644343033433, 0.015259303152561188, -0.015299040824174881, -0.004486394114792347, 0.018422428518533707, -0.009680120274424553, -0.03493744507431984, 0.04333006218075752, 0.036240845918655396, 0.0028333028312772512, -0.03013712354004383, -0.005618920549750328, 0.006413675844669342, -0.004406918305903673, 0.012851194478571415, -0.010339767672121525, -0.007959474809467793, -0.010125183500349522, 0.02780054323375225, 0.0012318708468228579, 0.0048718503676354885, 0.005618920549750328, 0.0243672002106905, 0.021919352933764458, -0.005738133564591408, -0.009386060759425163, 0.004240019712597132, 0.013701582327485085, 0.004792375024408102, -0.0035227530170232058, -0.02295253425836563, 0.002902843989431858, 0.00788397341966629, -0.007228299975395203, 0.008106504566967487, 0.005976560525596142, -0.02067953534424305, -0.006707735359668732, 0.04813038557767868, 0.007323670666664839, 0.03655874729156494, -0.012835298664867878, 0.019996045157313347, -0.028293291106820107, -0.007200483698397875, -0.017866101115942, -0.04075505584478378, -0.019709933549165726, -0.007013716269284487, -0.0072561162523925304, 0.014440705068409443, 0.0045420266687870026, -0.0022988298442214727, 0.03008943796157837, 0.04120011627674103, 0.025495752692222595, -0.004836086183786392, 0.01829526759684086, 0.032092221081256866, -0.014432757161557674, 0.02832508087158203, -0.004140675533562899, 0.013916166499257088, 0.018184002488851547, 0.0006238829810172319, -0.00360620254650712, -0.014242015779018402, -0.02629050798714161, -0.02652893401682377, 0.0032426018733531237, -0.01010928861796856, -0.01653091236948967, 0.012406131252646446, 0.013113463297486305, -0.006199091672897339, -0.0063381739892065525, 0.024907633662223816, 0.0023206856567412615, 0.006111668888479471, -0.02412877231836319, -0.02703757770359516, 0.0006358042592182755, -0.003415461163967848, -0.02563880756497383, -0.005797740537673235, -0.0031969035044312477, 0.008782046847045422, -0.03872048109769821, 0.007514412049204111, -0.04107295721769333, 0.008813836611807346, 0.025924919173121452, -0.009942389093339443, -0.013216781429946423, -0.0017057437216863036, -0.01934434473514557, 0.023349912837147713, 0.005440100561827421, -0.01716671511530876, -0.0037234288174659014, 0.003385657910257578, -0.016141481697559357, -0.010212606750428677, 0.01203259639441967, 0.0012596872402355075, -0.005638789385557175, -0.04491957277059555, -0.035128187388181686, 0.017436932772397995, 0.018247583881020546, -0.048098593950271606, 0.005702369846403599, 0.004844034090638161, 0.02575007453560829, 0.0198688842356205, 0.0016838879091665149, 0.02681504562497139, -0.0032088246662169695, -0.013598264195024967, 0.05277175456285477, 0.012143861502408981, 0.015616943128407001, -0.016515016555786133, -0.0039221178740262985, -0.018533695489168167, -0.008646938018500805, 0.01290682703256607, 0.006970004644244909, 0.00920326728373766, -0.007903842255473137, -0.0027180633042007685, -0.02762569673359394, 0.014591708779335022, 0.01753230392932892, 0.034842073917388916, -0.00358633347786963, 0.03078882209956646, 0.014512232504785061, 0.010458980686962605, 0.0225551575422287, -0.010816620662808418, 0.011468320153653622, -0.006811053492128849, -0.04730384051799774, -0.011404739692807198, -0.0017365404637530446, -0.029533108696341515, 0.03177431970834732, -0.013097568415105343, -7.103125972207636e-05, 0.004343337845057249, -0.01735745742917061, 0.02242799662053585, -0.013534683734178543, -0.0323624387383461, 0.000511127058416605, 0.030232494696974754, 0.008360826410353184, -0.003868471598252654, 0.005360624752938747, 0.016387855634093285, -0.015163931995630264, 0.017325667664408684, -0.00341744814068079, -0.0013123397948220372, 0.006707735359668732, 0.009560907259583473, -0.0205523744225502, 0.013407522812485695, -0.02991459146142006, 0.003912183456122875, -0.03872048109769821, 0.01904233917593956, -0.025924919173121452, -0.01130142156034708, -0.004061199724674225, 0.011690851300954819, 0.0010351688833907247, -0.00015001007704995573, -0.02862708829343319, 0.00430757412686944, -0.03620905429124832, -0.008217770606279373, -0.03709917888045311, 0.0035465958062559366, 0.01302604004740715, -0.03139283508062363, -0.009012525901198387, -0.030184809118509293, 0.0002776676556095481, -0.005432152654975653, -0.013383680023252964, 0.008662833832204342, -0.010538456030189991, 0.007013716269284487, 0.0002558118721935898, -0.03996029868721962, -0.01110273227095604, -0.030629871413111687, 0.006179222837090492, 0.004577790852636099, -0.0296761654317379, -0.029294682666659355, 0.015465939417481422, -0.04434734955430031, 0.006989873480051756, 0.023222751915454865, -0.054234106093645096, 0.04994242638349533, 0.0279277041554451, 0.012819403782486916, -0.004144649021327496, 0.0031472311820834875, 0.004224124830216169, -0.0003747768350876868, -0.006620312109589577, -0.014408914372324944, 0.0029425816610455513, -0.01921718381345272, -0.018390638753771782, 0.017850205302238464, 0.03043913096189499, -0.030534500256180763, 0.0180568415671587, 0.048162173479795456, 0.008126373402774334, -0.032092221081256866, 0.009688068181276321, -0.027546221390366554, -0.00905226357281208, 0.008162137120962143, 0.008702571503818035, 0.00598848145455122, -0.0010778869036585093, 0.0052374377846717834, -0.022284939885139465, 0.0025471909902989864, -0.0035684516187757254, -0.010498718358576298, 0.003399566048756242, -0.03164715692400932, 0.008933050557971, -0.05626868084073067, -0.014742711558938026, 0.0066481283865869045, 0.026846835389733315, -0.009711910039186478, -0.014909610152244568, 0.01886749267578125, 0.015561309643089771, -0.02563880756497383, 0.007049479987472296, -0.012716085650026798, 0.0288019347935915, 0.0041327280923724174, 0.01606995426118374, -0.02015499584376812, 0.0012368380557745695, -0.0024677154142409563, -0.012406131252646446, -0.00015038262063171715, -0.005185778718441725, -0.016801128163933754, 0.007951527833938599, 0.0216809269040823, -0.010578193701803684, -0.018088631331920624, 0.04603223130106926, -0.023206856101751328, 0.01144447736442089, -0.03290287032723427, -0.021919352933764458, 0.0003034971887245774, 0.0026803123764693737, -0.008845627307891846, 0.00992649421095848, 0.005340755917131901, 0.03328435495495796, 0.005833504255861044, 0.005169883836060762, 0.02026626095175743, 0.011182207614183426, 0.007609782740473747, 0.01480629201978445, 0.004343337845057249, -0.00407312111929059, -0.0026226926129311323, -0.0028273421339690685, 0.009084053337574005, -0.04151802137494087, -0.0017921733669936657, 0.00420822948217392, 0.007089217659085989, 0.011643165722489357, 0.00770912691950798, -0.016848813742399216, 0.008162137120962143, 0.010268239304423332, 0.023524759337306023, -0.015235460363328457, 0.004812243860214949, 0.005400362890213728, 0.04456987977027893, 0.01381284836679697, 0.004764558281749487, -0.0024915579706430435, -0.03174252808094025, 0.016085848212242126, 0.027657486498355865, 0.022094199433922768, 0.03312540426850319, 0.0008285324438475072, 0.013510840944945812, -0.011627270840108395, 0.010522561147809029, 0.033157192170619965, 0.006970004644244909, 0.018740331754088402, 0.03751245141029358, 0.018676750361919403, 0.009298637509346008, 0.0021716689225286245, -0.010403347201645374, 0.003918143920600414, 0.026195136830210686, 0.0066679976880550385, -0.01734156161546707, -0.033157192170619965, 0.004331416916102171, -0.018009155988693237, -0.016451435163617134, -0.006572626996785402, 0.036368004977703094, 0.008988683111965656, 0.019996045157313347, 0.016371959820389748, -0.024923527613282204, 0.046826984733343124, -0.009529116563498974, 0.008082661777734756, -0.014536075294017792, 0.0013083659578114748, -0.004907614551484585, -0.021585555747151375, -0.0023365807719528675, -0.002946555381640792, -0.011055046692490578, -0.005507654510438442, 0.028770143166184425, -0.00503874896094203, -0.00875820405781269, -0.030741136521100998, -0.014059222303330898, -0.010156973265111446, -0.021045122295618057, -0.01019671093672514, -0.029994066804647446, -0.005563287530094385, -0.0003688161668833345, -0.009672172367572784, -0.0064931511878967285, -0.0022193542681634426, -0.0022372363600879908, 0.023556549102067947, -0.008782046847045422, -0.01945561170578003, -0.005487785674631596, 0.006505072582513094, -0.00015870270726736635, -0.02056826837360859, -0.009473484009504318, 0.039737768471241, -0.0022590921726077795, -0.017659464851021767, 0.00036956125404685736, 0.006298436317592859, -0.0003005168691743165, -0.00803497713059187, 0.0180568415671587, -0.008480039425194263, 0.017961470410227776, -0.03954702615737915, -0.005070539191365242, 0.010737145319581032, -0.0004882778157480061, 0.01010928861796856, -0.02242799662053585, 0.006036167033016682, -0.006779263261705637, -0.01764356903731823, 0.011754431761801243, -0.006191144231706858, -0.0009631441789679229, -0.00436718063428998, 0.01683291792869568, -0.010594088584184647, -0.016578596085309982, -0.02598850056529045, -0.024780472740530968, -0.014114854857325554, 0.0005354664172045887, -0.000784324191045016, -0.016435541212558746, 0.0013401561882346869, 0.026147451251745224, -0.02179219201207161, 0.02528911642730236, 0.0008126373286359012, -0.017134925350546837, 0.0007977357017807662, -0.022062409669160843, -0.009099949151277542, -0.0040810685604810715, -0.010180816054344177, -0.01480629201978445, -0.024987109005451202, 0.024796366691589355, -0.018883386626839638, -0.01967814192175865, -0.013431365601718426, 0.009274794720113277, -0.009847018867731094, -0.022173674777150154, 0.01740514300763607, 0.008893312886357307, 0.011285525746643543, 0.014114854857325554, -0.0034671202301979065, 0.00044257938861846924, -0.0023663840256631374, -0.007887947373092175, 0.017134925350546837, 0.05057823285460472, 0.014035379514098167, -0.022809479385614395, -0.0043870494700968266, 0.019360240548849106, -0.0017454815097153187, 0.025781864300370216, 0.011969015933573246, -0.0037870092783123255, -0.020727219060063362, 0.012859141454100609, -0.01823168806731701, 0.007498516701161861, 0.015052666887640953, 0.008678728714585304, -0.015672575682401657, -0.03652695566415787, 0.014949348755180836, 0.029183417558670044, -0.025924919173121452, 0.009012525901198387, 0.0031253753695636988, -0.007311749272048473, -0.02037752792239189, 0.014909610152244568, -0.01588715985417366, 0.006405728403478861, -0.010212606750428677, 0.0032644576858729124, -0.0252414308488369, 0.021521974354982376, -0.005400362890213728, 0.014583760872483253, -0.04288499802350998, 0.03646337613463402, 0.01232665590941906, 0.011611375957727432, -0.0502285398542881, -0.0014871859457343817, 0.010911990888416767, 0.0038029043935239315, -0.014917558059096336, -0.017071345821022987, -0.021521974354982376, 0.0027200502809137106, -0.021982932463288307, 0.028944989666342735, -0.01468707900494337, 0.02932647243142128, -0.010681511834263802, -0.014035379514098167, -0.017484618350863457, -0.02633819170296192, -0.0019471506820991635, 0.03026428446173668, -1.388493456033757e-05, -0.013661844655871391, -0.021887563169002533, 0.0006452419911511242, 0.012453816831111908, 0.017198506742715836, -0.005368572659790516, -0.012533292174339294, 0.003347906982526183, 0.009688068181276321, 0.0067037614062428474, 0.011913382448256016, -0.003363802097737789, -0.007248168811202049, -0.000948242493905127, -0.014194331131875515, 0.019058233126997948, 0.010379505343735218, -0.03015301749110222, 0.03919733315706253, -0.01469502691179514, -0.0008399570942856371, 0.014385071583092213, -0.004327442962676287, -0.017738940194249153, 0.005408310331404209, -0.004844034090638161, -0.01407511718571186, 0.022920744493603706, 0.0020156982354819775, 0.005805687978863716, -0.0008851587772369385, -0.01495729573071003, 0.0015815631486475468, -0.006385859102010727, -0.010745092295110226, -0.005241411738097668, -0.035891152918338776, 0.017548197880387306, 0.00902842078357935, 0.009092001244425774, -0.005471890792250633, 0.004343337845057249, 0.026846835389733315, 0.013526735827326775, 0.0066481283865869045, 0.02102922648191452, 0.01694418489933014, -0.017039554193615913, 0.010125183500349522, 0.0058533730916678905, -0.01471886970102787, -0.011667008511722088, 0.02354065328836441, -0.014361229725182056, 0.01483808271586895, -0.004263862501829863, -0.0394834466278553, -0.011460372246801853, 0.006815026979893446, -0.0003675743646454066, 0.015187774784862995, -0.0016014321008697152, -0.006608390714973211, 0.019121814519166946, 0.003502884181216359, -8.529649676347617e-06, -0.0018428389448672533, -0.0005300024640746415, -0.013852586038410664, -0.0016590518644079566, -0.0014245989732444286, -0.016610387712717056, -0.004927483387291431, -0.021871667355298996, 0.010244396515190601, 0.010864305309951305, 0.01197696290910244, 0.01735745742917061, -0.03690844029188156, -0.018501903861761093, 0.033570464700460434, -0.0029584767762571573, -0.004311547614634037, 0.0039221178740262985, -0.006481229793280363, 0.00922711007297039, 0.005209621507674456, -0.0033121430315077305, 0.0020385475363582373, -0.010268239304423332, -0.011992858722805977, 0.0019560917280614376, 0.022984325885772705, -3.52051793015562e-05, 0.04266246780753136, 0.016562702134251595, 0.0038366816006600857, 0.016721652820706367, 0.019598666578531265, 0.011078889481723309, 0.012374340556561947, 0.0205523744225502, 0.01405127439647913, -0.014774502255022526, -0.006807079538702965, -0.0026882600504904985, -0.003113454207777977, 0.01039540022611618, -0.007415067404508591, 0.01039540022611618, -0.004657266195863485, 0.009688068181276321, -0.014432757161557674, -0.007872051559388638, -0.007176640909165144, 0.0021259705536067486, 0.001387841533869505, 0.004478446673601866, -6.711957394145429e-05, 0.023270437493920326, 0.033443305641412735, -0.005412283819168806, 0.0009715884225443006, -0.02950131893157959, -0.0009224129607900977, -0.004891719203442335, -0.013852586038410664, 0.015291092917323112, -0.010204658843576908, -0.0036777304485440254, 0.011500109918415546, 0.009831123985350132, 0.00020750565454363823, -0.00046145482338033617, -0.006314331199973822, -0.002676338655874133, -0.03976955637335777, -0.03557325154542923, -0.013677739538252354, 0.0009954310953617096, -0.021283548325300217, 0.00858335755765438, 0.014965243637561798, -0.017866101115942, -0.015903055667877197, -0.002185577293857932, 0.01688060350716114, 0.010872253216803074, 0.011762379668653011, -0.013820795342326164, -0.03617726266384125, 0.01262071542441845, -0.02091796137392521, 0.008631043136119843, -0.006803106050938368, 0.00293463421985507, 0.001833898015320301, 0.024875842034816742, 0.005134119652211666, 0.023286331444978714, 0.00876615196466446, 0.015990477055311203, 0.0037889962550252676, -0.04555537551641464, -0.025511646643280983, -0.012064386159181595, 0.015918949618935585, -0.04895693063735962, -0.018184002488851547, -0.015092404559254646, 0.00817803293466568, 0.019074128940701485, -0.028531717136502266, 0.0019878819584846497, -0.024049296975135803, -0.0036419664975255728, 0.0050268275663256645, -0.015553362667560577, -0.014019484631717205, 0.016960078850388527, -0.01967814192175865, -0.01063382625579834, -0.009123791940510273, 0.01951919123530388, -0.01770714856684208, 0.001490166294388473, -0.013582369312644005, 0.019010547548532486, 0.050737183541059494, -0.020727219060063362, 0.009767543524503708, -0.017723044380545616, -0.002620705869048834, -0.009719857946038246, -0.018565485253930092, -0.0011096771340817213, -0.007999212481081486, 0.009711910039186478, -0.02067953534424305, -0.017087239772081375, 0.022189568728208542, -0.03509639576077461, 0.02190345712006092, 0.02886551432311535, -0.017897890880703926, -0.005750054959207773, 0.014814239926636219, -0.019074128940701485, 0.003906222525984049, -0.004708925727754831, -0.003198890248313546, 0.012739928439259529, -0.017723044380545616, 0.03417447954416275, 0.02471689134836197, -0.001811048830859363, -0.00995828490704298, 0.009338375180959702, -0.003270418383181095, 0.005404336377978325, 0.02528911642730236, -0.030470920726656914, -0.009584750048816204, -0.021521974354982376, 0.00616332795470953, 0.0035783860366791487, -0.015497729182243347, 0.0030220572371035814, 0.005984507966786623, -0.03067755699157715, -0.0025074530858546495, 0.010021865367889404, 0.00460163364186883, 0.007399172522127628, 0.01653091236948967, -0.017850205302238464, -0.03732171282172203, 0.008424406871199608, 0.017850205302238464, 0.0020663640461862087, 0.006918345578014851, 0.011611375957727432, 0.004478446673601866, 0.044315557926893234, 0.004931456875056028, 0.026322297751903534, -0.000288595532765612, 0.010768935084342957, 0.01775483414530754, -0.023731395602226257, -0.015402358956634998, -0.007188562303781509, 0.016689863055944443, -0.00022290404012892395, -0.00733161810785532, -0.02991459146142006, -0.04129548743367195, 0.006413675844669342, 0.006608390714973211, -0.018883386626839638, 0.007101139053702354, 0.012747876346111298, 0.011841855011880398, -0.022936640307307243, -0.014774502255022526, 0.014504285529255867, 0.011603428050875664, 0.01054640393704176, -0.010315924882888794, 0.0011116641107946634, 0.003965829033404589, 0.023000219836831093, -0.024096982553601265, 0.010053655132651329, -0.001216969103552401, -0.00820187572389841, 0.015044718980789185, -0.019010547548532486, 0.007260090205818415, 0.00452613178640604, -0.007792576216161251, -0.00460163364186883, -0.01098351925611496, -0.01641964539885521, -6.767838931409642e-05, 0.019121814519166946, -0.01232665590941906, 0.01723029650747776, 0.007951527833938599, 0.009068158455193043, 0.009401955641806126, -0.001053050858899951, -0.010172868147492409, -0.008726414293050766, -0.009680120274424553, 0.0009214194724336267, -0.031090829521417618, -0.005936822388321161, 0.0002679815806914121, 0.08316320180892944, 0.0032883002422749996, 0.003369762795045972, -0.00329227396287024, 0.0028750274796038866, -0.025845443829894066, 0.001404730137437582, 0.01939203031361103, 0.03376120701432228, -0.01405127439647913, -0.00525730662047863, -0.011166312731802464, -0.008607200346887112, -0.0002640078018885106, -0.01998014934360981, 0.019725827500224113, 0.012135914526879787, 0.016499120742082596, 0.007923711091279984, 0.013129358179867268, 0.006191144231706858, -0.004007553681731224, -0.01025234442204237, 0.013502893969416618, -0.010578193701803684, 0.028929095715284348, 0.004617528524249792, 0.008662833832204342, 0.006950135808438063, 0.013161148875951767, -0.00794357992708683, -0.013105516321957111, 0.005106303375214338, -0.013606212101876736, 0.0021120624151080847, 0.01653091236948967, -0.005102329421788454, 0.014234068803489208, -0.0016123598907142878, 0.011110680177807808, 0.0019093997543677688, 0.006528915371745825, 0.026830941438674927, 0.012875037267804146, -0.01539441104978323, 0.0058215828612446785, 0.021712716668844223, 0.00017161748837679625, 0.024049296975135803, -0.005960665177553892, -0.02020268142223358, -0.018676750361919403, 0.020409317687153816, 0.009799333289265633, 0.015163931995630264, -0.004788401070982218, -0.007832313887774944, -0.006226908415555954, 0.005074513144791126, 0.001856747199781239, -0.01066561695188284, 0.0169918704777956, -0.014639393426477909, -0.033792998641729355, -0.0013053857255727053, -0.02382676489651203, -0.014575812965631485, 0.003590307431295514, -0.007061401382088661, 0.007160745561122894, -0.021951142698526382, 0.0015885172178968787, 0.011047099716961384, -0.006179222837090492, -0.0008846620330587029, 0.029008571058511734, -0.0055791824124753475, 0.010355662554502487, 0.013582369312644005, 0.003558517200872302, 0.014973190613090992, 0.00565071078017354, -0.00090155063662678, -0.009990074671804905, -0.0024279775097966194, -0.006906424183398485, 0.017373351380228996, -0.020711325109004974, -0.00430757412686944, -0.02745085023343563, 0.000191238010302186, 0.011698799207806587, -0.013105516321957111, 0.0009780458640307188, 0.007434936240315437, 0.008686675690114498, -0.018247583881020546, -0.013415470719337463, 0.03646337613463402, -0.008670780807733536, 0.0016550780273973942, 0.019248975440859795, -0.0011821986408904195, 0.007574018556624651, 0.0042877052910625935, 0.006465334910899401, 0.007947553880512714, 0.007895894348621368, 0.015616943128407001, 0.004975168500095606, -0.004987089894711971, -0.015585152432322502, -0.024255933240056038, 0.020997436717152596, -0.010307976976037025, -0.00960859190672636, 0.000382476020604372, -0.01098351925611496, -0.01390821859240532, -0.01127757877111435, 0.002588915638625622, 0.017436932772397995, -0.010164921171963215, -0.002294856123626232, -0.010991466231644154, 0.0016570648876950145, -0.003332011867314577, -0.010776882991194725, -0.016673967242240906, -0.003081663977354765, 0.024812262505292892, 0.01595073938369751, 0.017500512301921844, -0.009107896126806736, 0.021919352933764458, -0.0007833307608962059, 0.004697004333138466, -0.00503874896094203, 0.013423417694866657, 0.004502288997173309, 0.014098959974944592, 0.00299424072727561, 0.011460372246801853, 0.012453816831111908, -0.0012100150343030691, -0.0040512653067708015, -0.02050468884408474, -0.029342368245124817, 0.004887745250016451, -0.005674553103744984, 0.030947772786021233, -0.03144052252173424, -0.001840852084569633, -0.008336983621120453, -0.0031531918793916702, 0.008130347356200218, -0.019757619127631187, 0.012954512611031532, -0.011460372246801853, -0.010347714647650719, 0.007359434850513935, -0.007899868302047253, -0.007395198568701744, 0.0015408319886773825, 0.006389833055436611, -0.0066481283865869045, 0.001911386614665389, 0.01112657506018877, 0.02114049345254898, -0.0010560312075540423, 0.011881592683494091, 0.006830922327935696, -0.004490367602556944, -0.02067953534424305, 0.0031710739713162184, -0.009910599328577518, -0.004303600173443556, 0.009974179789423943, -0.019423820078372955, 0.021998828276991844, 0.003830720903351903, -0.003049873746931553, -0.001997816376388073, 0.005396388936787844, -0.00014119326078798622, 0.010458980686962605, 0.02985101193189621, 0.0027955519035458565, -0.01469502691179514, -0.01716671511530876, -0.010451032780110836, 0.025924919173121452, 0.00318299513310194, -0.011349106207489967, -0.009950337000191212, 0.0032902872189879417, 0.0058533730916678905, 0.002698194468393922, 0.01746872253715992, -0.011182207614183426, -0.011237841099500656, -0.004494341555982828, 0.018136316910386086, 0.009394008666276932, -0.016260694712400436, -0.02652893401682377, -0.01629248447716236, -0.014448652043938637, -0.038339000195264816, 0.005980534013360739, -0.023095590993762016, -0.025082478299736977, 0.008535672910511494, 0.005777871236205101, -0.0189310722053051, 0.00012486352352425456, 0.004951325710862875, -0.0006377911777235568, 0.01525135524570942, 0.012096176855266094, 0.015855370089411736, 0.0010560312075540423, 0.006397780496627092, -0.02670378051698208, -0.007383277174085379, -0.012167704291641712, 0.018597275018692017, 0.011039151810109615, 0.022682318463921547, 0.001426585833542049, 0.009576802141964436, -0.004379102028906345, -0.005531497299671173, 0.026195136830210686, -0.005670579615980387, 0.03824362903833389, 0.016133533790707588, -0.00023482537653762847, 0.0033518807031214237, -0.0003400062851142138, -0.004430761095136404, -0.00503874896094203, -0.010443085804581642, -0.005567261483520269, 0.005984507966786623, -0.024446675553917885, 0.00024302129168063402, -0.010967624373733997, 0.009966231882572174, -2.946182939922437e-05, 0.007601834833621979, -0.01757998764514923, -0.005773897748440504, 0.020234471186995506, 0.0216173455119133, 0.008988683111965656, 0.008797941729426384, 0.011825960129499435, -0.0102761872112751, -0.02312738075852394, -0.006628259550780058, 0.005483812186866999, -0.024398989975452423, -0.023588338866829872, 0.015871264040470123, 0.02954900451004505, -0.02681504562497139, 0.009743700735270977, 0.001467317109927535, 0.0050824605859816074, 0.005074513144791126, -0.012016700580716133, 0.01583152636885643, 0.006866686511784792, -0.010021865367889404, -0.0026564698200672865, 0.005444074049592018, -0.007852182723581791, 0.01483808271586895, 0.017309771850705147, 0.0002582955057732761, 0.011062994599342346, 0.012334602884948254, -0.03366583585739136, 0.0059090061113238335, -0.02915162593126297, 0.0011206050403416157, 0.018025051802396774, 0.0015656680334359407, 0.024510255083441734, 0.008996631018817425, -0.01290682703256607, 0.018533695489168167, -0.0019690063782036304, -0.011460372246801853, 0.00042966462206095457, -0.016848813742399216, 0.011818012222647667, 0.013741319999098778, 0.00788397341966629, 0.0016123598907142878, 0.01545004453510046, -0.00932248029857874, -0.019614562392234802, 0.029596690088510513, 0.004756610840559006, 0.011094784364104271, -0.010061603039503098, 0.0036876648664474487, 0.022189568728208542, 0.0027279977221041918, -0.008861522190272808, 0.002261078916490078, -0.006230881903320551, -0.0048718503676354885, 0.007832313887774944, -0.012604819610714912, 0.016864709556102753, -0.017500512301921844, 0.017087239772081375, 0.016499120742082596, 0.007776681333780289, -0.0063699642196297646, 0.01622890494763851, -0.002962450496852398, -0.002042521256953478, 0.004055239260196686, -1.1665208148770034e-05, 0.013502893969416618, -0.005686474498361349, 0.014965243637561798, -0.0009636408649384975, -0.024160562083125114, -0.004450629930943251, -0.013073725625872612, 0.012477658689022064, 0.007315723225474358, -0.011062994599342346, -0.022523367777466774, 0.005559313576668501, -0.01436917670071125, -0.009854966774582863, -0.0033896316308528185, -0.01054640393704176, 0.01188954059034586, -0.003244588850066066, 0.011206050403416157, -0.013089620508253574, 0.007415067404508591, 0.02201472409069538, 0.011619322933256626, -0.020139100030064583, 0.0032008772250264883, -0.009537064470350742, 0.002869066782295704, -0.00497914245352149, -0.009282742626965046, 0.022364415228366852, -0.030168913304805756, -0.005932848900556564, -0.01641964539885521, 0.025034794583916664, -0.005340755917131901, -0.01974172331392765, 0.018422428518533707, 0.024224143475294113, 0.006207039579749107, -0.00820187572389841, -0.05229490250349045, -0.0015348712913691998, -0.005877215880900621, 0.0012477659620344639, -0.016721652820706367, -0.015696417540311813, -0.010419243015348911, -0.0003720448585227132, 0.00252732215449214, 0.015847422182559967, -0.02349296770989895, -0.015688471496105194, 0.016038162633776665, -0.0026187188923358917, -0.004911588039249182, -0.009004577994346619, 0.012429974041879177, 0.00931453239172697, 0.015227512456476688, 0.01334394235163927, -0.007248168811202049, -0.016077900305390358, -0.002582954941317439, 0.003494936740025878, -0.00031119640334509313, 0.008646938018500805, 0.012692242860794067, 0.028372766450047493, -0.022809479385614395, 0.009847018867731094, 0.00026301434263587, -0.003737337188795209, -0.007971396669745445, -0.006946161855012178, 0.01694418489933014, 0.01847011409699917, 0.023524759337306023, -0.028881410136818886, 0.01928076520562172, 0.0004304097092244774, 0.01264455821365118, -0.01066561695188284, -0.0011682903859764338, -0.004653292708098888, -0.003159152576699853, -0.003934038802981377, 0.008408511988818645, 0.002316711936146021, 0.019376136362552643, 0.009378112852573395, 0.01583152636885643, -0.02570238895714283, 0.022221360355615616, -0.02015499584376812, 0.018390638753771782, 0.00476058479398489, 0.012048491276800632, 0.011070942506194115, 0.030073542147874832, 0.009179424494504929, -0.012167704291641712, -0.018883386626839638, -0.008670780807733536, -0.0042320722714066505, 0.0060282195918262005, 0.012549187056720257, -0.03217169642448425, -0.0012696216581389308, 0.04905230179429054, -0.026195136830210686, 0.0005553353112190962, 0.01659449189901352, -0.006604417227208614, -0.027434954419732094, 0.0022809479851275682, 0.0033598283771425486, 0.003953908104449511, 0.006401754450052977, 0.006874633952975273, 0.03258496895432472, 0.00703755859285593, -0.02061595395207405, -0.006481229793280363, 0.005805687978863716, -0.010347714647650719, 0.004446656443178654, -0.019439715892076492, -0.013391627930104733, -0.005467916838824749, 0.00027791602769866586, 0.029707955196499825, -0.03131335973739624, -0.003095572115853429, -0.00966422539204359, 0.016578596085309982, -0.00048728438559919596, -0.0019521178910508752, 0.012382288463413715, 0.030121227726340294, 0.018549589440226555, -0.0156487338244915, 0.008575410582125187, -0.03767140582203865, 0.021871667355298996, -0.017277982085943222, 0.002167695201933384, -0.004895693156868219, 0.02277768775820732, 0.0075620971620082855, -0.0038048913702368736, 0.011643165722489357, -0.004780453629791737, -0.014353281818330288, 0.008154190145432949, -0.004665214102715254, 0.005495733115822077, 0.027657486498355865, -0.027673382312059402, -0.003936025779694319, 0.021808087825775146, -0.011023256927728653, 0.03299824148416519, 0.004204255994409323, 0.008456196635961533, 0.006604417227208614, -0.00043711543548852205, -0.0038267469499260187, 0.009076106362044811, -0.012747876346111298, 0.022586947306990623, -0.0035525565035641193, 0.0011345132952556014, -0.012096176855266094, -0.014186383225023746, 0.002129944274201989, 0.005452021956443787, 0.014504285529255867, -0.025161955505609512, -0.011190155521035194, 0.009799333289265633, 0.04065968468785286, 0.004498315509408712, 0.01594279333949089, 0.013852586038410664, -0.024383094161748886, 0.0021736558992415667, -0.009672172367572784, 0.0171190295368433, 0.020949751138687134, 0.006199091672897339, -0.0039896718226373196, 0.0051500145345926285, 0.0017107109306380153, -0.015227512456476688, -0.02133123390376568, 0.0006924305926077068, -0.01452018041163683, 0.004581764806061983, 0.017134925350546837, -0.0028650930617004633, -0.0019928491674363613, -0.008289298042654991, -0.036781277507543564, -0.010824567638337612, 0.016046110540628433, -0.005233463831245899, -0.004220150876790285, 0.01098351925611496, 0.017436932772397995, 0.0027101158630102873, 0.017134925350546837, -0.008654885925352573, 0.00042047526221722364, -0.006711708847433329, 0.01203259639441967, -0.0017097174422815442, -0.015863316133618355, -0.015728209167718887, 0.00344725139439106, -0.00525730662047863, -0.012096176855266094, -0.00628254096955061, -0.02185577154159546, -0.0014534088550135493, 0.019074128940701485, 0.006747473031282425, -0.004506262950599194, -0.021045122295618057, -0.023620128631591797, 0.040214620530605316, 0.008917154744267464, 0.01816810667514801, -0.0003325554425828159, -0.021744506433606148, 0.005293070804327726, -0.01057024672627449, -0.02454204484820366, 0.0016054058214649558, 0.01515598502010107, 0.006604417227208614, -0.007629651576280594, 0.024446675553917885, -0.00466124014928937, 0.005320887081325054, -0.028579402714967728, 0.0024975186679512262, 0.007899868302047253, 0.004724820610135794, -0.022459786385297775, -0.0053884414955973625, 0.009807281196117401, -0.01705545000731945, 0.002777670044451952, -0.008126373402774334, -0.010856358334422112, -0.0030558344442397356, -0.0021776296198368073, 0.012143861502408981, -0.005626867990940809, -0.0047844271175563335, 0.02085437998175621, -0.030216598883271217, 0.012517397291958332, -0.016451435163617134, -0.015283145941793919, -0.004391023423522711, 0.017548197880387306, -0.0026028237771242857, -0.011587533168494701, -0.0060083502903580666, -0.02271410822868347, -0.0216173455119133, 0.004653292708098888, 0.0070097423158586025, 0.013153200969099998, 0.0024478465784341097, -0.0018358848756179214, 0.01156369037926197, 0.01334394235163927, -0.028515823185443878, 0.009998022578656673, 0.010292082093656063, 0.006993846967816353, -0.016371959820389748, 0.027307793498039246, -0.0020464949775487185, 0.0051818047650158405, 0.006191144231706858, 0.0019858949817717075, 0.0005801714141853154, 0.020457003265619278, -0.013280361890792847, -0.011905435472726822, -0.004665214102715254, 0.011047099716961384, 0.01734156161546707, -0.0007773700635880232, 0.01308167353272438, -0.015585152432322502, 0.006473282352089882, 0.014734764583408833, -0.01332009956240654, 0.002588915638625622, -0.005360624752938747, -0.0027279977221041918, -0.019185394048690796, -0.011698799207806587, -0.014496337622404099, -0.018199898302555084, 0.0053566512651741505, 0.006135511212050915, -0.017770729959011078, 0.005444074049592018, -0.005436126608401537, 0.007848208770155907, 0.003276379080489278, 0.00776873342692852, 0.015322883613407612, 0.011905435472726822, 0.008933050557971, -0.003415461163967848, 0.010323871858417988, -0.005074513144791126, 0.007856156677007675, -0.007995238527655602, 0.005372546147555113, -0.008448249660432339, -0.012286918237805367, 0.00018900276336353272, -0.020663639530539513, 0.0016878617461770773, -0.005519575905054808, -0.018660856410861015, -0.03767140582203865, -0.006918345578014851, 0.014464547857642174, -0.0027816437650471926, -0.012684295885264874, 0.005742107518017292, 0.019646352156996727, -0.0050824605859816074, -0.005432152654975653, -0.013987693935632706, 0.008623095229268074, -0.001989868702366948, 0.0076177301816642284, -0.0003188955888617784, -0.003369762795045972, -0.0012457789853215218, -0.017659464851021767, -0.009044315665960312, -0.029278786852955818, -0.0004006063682027161, 0.03290287032723427, -0.0011891527101397514, 0.0024319514632225037, -1.619003523956053e-05, 0.007848208770155907, 0.006862712558358908, -0.02114049345254898, -0.010212606750428677, -0.00812239944934845, 0.0057897926308214664, -0.030168913304805756, -0.012088228948414326, -0.026497144252061844, -0.0031551788561046124, 0.00832108873873949, -0.015171879902482033, 0.005205647554248571, -0.021013332530856133, -0.023159170523285866, -0.014130750671029091, -0.0034969234839081764, -0.0055791824124753475, 0.0004577294166665524, 0.0006313337944447994, 0.0038366816006600857, 0.011039151810109615, 0.0171826109290123, 0.004669187590479851, -0.004478446673601866, 0.002823368413373828, -0.0039221178740262985, 0.015807684510946274, -0.011476267129182816, -0.019090022891759872, -0.01740514300763607, -0.012859141454100609, 0.0004808270023204386, -0.01063382625579834, -0.0036777304485440254, -0.0016530911670997739, -0.013280361890792847, 0.013852586038410664, 0.012859141454100609, 0.0035227530170232058, -0.02757801115512848, 0.006409701891243458, 0.00829724594950676, -0.004895693156868219, -0.0011355066671967506, 0.00920326728373766, -0.019884778186678886, -0.02371549978852272, -0.0038366816006600857, -0.01276377122849226, -0.0004279260756447911, 0.009600644931197166, -0.007585939951241016, 0.02996227703988552, 0.01753230392932892, -0.009839070960879326, -0.039737768471241, -0.00015286622510757297, 0.013582369312644005, 0.025432171300053596, 0.0025610991287976503, -0.008980735205113888, 0.011937225237488747, -0.01629248447716236, 0.0028591323643922806, -0.01054640393704176, -0.013606212101876736, 0.018215792253613472, -0.005010932683944702, 0.02166503109037876, -0.0015845434973016381, 0.012771718204021454, -0.00393006531521678, 0.013550578616559505, 0.0180568415671587, 0.006838869769126177, 0.019233079627156258, -0.020123206079006195, 0.017134925350546837, -0.0010157966753467917, 0.012135914526879787, 0.01757998764514923, -0.011849801987409592, -0.007371355779469013, 0.02546396106481552, 0.005408310331404209, -0.01864496059715748, -0.005364598706364632, -0.028897304087877274, -0.008050872012972832, -0.03037554956972599, -0.013439313508570194, 0.0010172869078814983, 0.006914371624588966, 0.03331614285707474, -0.006771315820515156, -0.011905435472726822, -0.00975959561765194, 0.002739919116720557, -0.02635408751666546, -0.0025293088983744383, 0.028340976685285568, 0.00931453239172697, 0.019646352156996727, 0.007518385536968708, 0.00794357992708683, 0.007470700424164534, -0.018199898302555084, -0.0032624707091599703, 0.029946381226181984, 0.013010145165026188, 0.009012525901198387, -0.02288895472884178, -0.021871667355298996, -0.009823176078498363, 0.008940997533500195, -0.0021339182276278734, 0.005674553103744984, -0.009187372401356697, -0.006505072582513094, 0.007518385536968708, -0.01375721488147974, 0.022698212414979935, 0.02114049345254898, 0.018311163410544395, -0.006544810254126787, 0.008070740848779678, -0.010141078382730484, 0.015815632417798042, 0.00794357992708683, -0.024033401161432266, 0.007434936240315437, -0.001762369996868074, -0.005110276862978935, 0.009576802141964436, -0.003558517200872302, 0.0076813106425106525, 0.004331416916102171, -0.015124194324016571, -0.027943598106503487, 0.008646938018500805, 0.008078687824308872, 0.0035644778981804848, -0.020727219060063362, -0.01066561695188284, 0.003441290697082877, -0.00791178923100233, -0.0009149620891548693, 0.0016749468632042408, 0.00307371630333364, -0.005030801519751549, -0.009409903548657894, 0.005090408027172089, 0.007502490654587746, 0.0077727073803544044, 0.004422813653945923, -0.014512232504785061, 0.0003159152693115175, 0.0003688161668833345, -0.001964039169251919, -0.0009551966213621199, 0.008281351067125797, 0.004732768051326275, -0.013916166499257088, -0.015815632417798042, -0.005380493588745594, 0.0171190295368433, -0.002980332588776946, 0.011110680177807808, 0.0006690846639685333, 0.01622890494763851, -0.005014906171709299, -0.015402358956634998, 0.007001794874668121, -0.011651113629341125, 0.008368774317204952, 0.01735745742917061, 0.003806878114119172, -0.009529116563498974, -0.008607200346887112, -0.011961068026721478, -0.014575812965631485, 0.01753230392932892, -0.017325667664408684, 0.0045420266687870026, -0.013161148875951767, -0.008917154744267464, 0.0020017900969833136, 0.026973996311426163, -0.0001483957312302664, 0.010745092295110226, 0.012811456806957722, -0.0003280849487055093, -0.023461177945137024, 0.008360826410353184, -0.004494341555982828, 0.015163931995630264, -0.015879211947321892, 0.013661844655871391, -0.023874450474977493, 0.008996631018817425, 0.012215389870107174, 0.00622293446213007, 0.011643165722489357, 0.02563880756497383, 0.012286918237805367, 0.0031631262972950935, 0.02926289290189743, -0.01600637286901474, -0.0030061621218919754, -0.005952717736363411, 0.025193745270371437, 0.00013113462773617357, 0.0016153402393683791, -0.004204255994409323, 0.0027796567883342505, -0.0036379925440996885, -0.016626281663775444, -0.0044665252789855, -0.006505072582513094, -0.008106504566967487, -0.03500102460384369, 0.0055990517139434814, -0.009155581705272198, 0.02664019912481308, -0.022968430072069168, -0.008392616175115108, 0.009338375180959702, -0.014472494833171368, 0.02120407298207283, -0.006775289308279753, 0.017134925350546837, -0.020361632108688354, -0.006942187901586294, -0.021347129717469215, -0.018724435940384865, 0.028897304087877274, 0.009481430985033512, 0.01480629201978445, 0.007788602728396654, 0.012668400071561337, -0.02032984234392643, 0.0010242409771308303, -0.020123206079006195, 0.0007848209352232516, 0.0045618959702551365, 0.006274593528360128, -0.002215380547568202, -0.010578193701803684, -0.01915360428392887, -0.010824567638337612, -0.0042002820409834385, 0.0010157966753467917, -0.0007704159943386912, 0.014567865990102291, 0.028595298528671265, -0.009409903548657894, -0.013335995376110077, -0.016673967242240906, -0.00914763379842043, 0.0035008974373340607, 0.010339767672121525, -0.0015795762883499265, -0.008623095229268074, -0.002316711936146021, 0.008305193856358528, -0.0033200904726982117, 0.007840261794626713, -0.008805889636278152, 0.010315924882888794, -0.004931456875056028, -0.009950337000191212, -0.012437921017408371, -0.011984910815954208, -0.012374340556561947, 0.000612458330579102, -0.004422813653945923, 0.004573816899210215, -0.024987109005451202, 0.015624890103936195, -0.011508057825267315, 0.009568854235112667, -0.016801128163933754, -0.007335592061281204, -0.00474468944594264, 0.008170085027813911, 0.024859948083758354, -0.0050268275663256645, 0.033729419112205505, 0.01110273227095604, 0.034619543701410294, -0.010681511834263802, -0.007399172522127628, -0.02727600373327732, 0.009862913750112057, -0.018072737380862236, 0.006159354001283646, 0.009839070960879326, -0.009616539813578129, -0.004569843411445618, 0.004553948063403368, 0.00027692256844602525, 0.009966231882572174, 0.011818012222647667, 0.0074945432133972645, 0.002682299353182316, -0.005726212169975042, -0.018263477832078934, 0.0012199494522064924, -0.024446675553917885, -0.02657661959528923, 0.007891920395195484, 0.005992455407977104, -0.0034452644176781178, -0.006270619574934244, 0.0004979639197699726, 0.0011523952707648277, -0.010967624373733997, 0.0038366816006600857, 0.009243004955351353, -0.011293473653495312, 0.015529519878327847, -0.011023256927728653, -0.012819403782486916, 0.002473676111549139, 0.004049278330057859, -0.014281753450632095, -0.005495733115822077, -0.010029812343418598, -0.01583152636885643, -0.0028491979464888573, 0.013065777719020844, 0.01723029650747776, 0.012374340556561947, 0.014178435318171978, 0.0039876848459243774, 0.023636024445295334, 0.003870458574965596, -0.011190155521035194, -0.013256519101560116, -0.0009512228425592184, -0.011603428050875664, -0.003971789963543415, 0.014297649264335632, -0.019264869391918182, -0.0014921531546860933, 0.005670579615980387, 0.005758002400398254, -0.008797941729426384, -0.022221360355615616, 0.0017494552303105593, -0.017023660242557526, 0.017564093694090843, 0.0020504689309746027, 0.006453413516283035, 0.008654885925352573, -0.019614562392234802, 0.005245385225862265, -0.0012149822432547808, -0.014536075294017792, 9.133477578870952e-05, 0.010085445828735828, -0.014321491122245789, 0.005730186123400927, 0.007450831588357687, -0.010427189990878105, -0.015195722691714764, -0.002449833322316408, 0.00044878842891193926, -0.010029812343418598, 0.022412100806832314, -0.005575208924710751, 0.0035922941751778126, 0.004180413205176592, 0.01361415907740593, 0.011015309020876884, -0.019821198657155037, -0.004263862501829863, -0.010967624373733997, 0.002857145620509982, -0.0036141499876976013, 0.003689651843160391, 0.00505464430898428, 0.016785232350230217, 0.010498718358576298, -0.0008459177333861589, 0.01440096739679575, 0.023699603974819183, -0.003268431406468153, -0.01705545000731945, -0.0004346318310126662, 0.004538053181022406, 0.013089620508253574, -0.009409903548657894, -0.001715678139589727, 0.0068587386049330235, -0.003961855545639992, -0.020345736294984818, 0.0017574027879163623, -0.013741319999098778, -0.0063381739892065525, 0.004406918305903673, 0.007216378580778837, 0.009187372401356697, 0.0020077507942914963, 0.009481430985033512, -0.009409903548657894, -0.005471890792250633, 0.02530501037836075, 0.010149026289582253, 0.0012616741005331278, 0.025543436408042908, -0.004188360646367073, -0.008654885925352573, -0.025161955505609512, -0.01840653456747532, -0.002316711936146021, -0.006067957263439894, -0.0205523744225502, 0.005336782429367304, 0.0030558344442397356, -0.004422813653945923, -0.0005344729870557785, -0.002412082627415657, -0.02419235371053219, -0.003214785363525152, 0.001426585833542049, 0.005201673600822687, -0.01951919123530388, -0.0003196406760253012, 0.016133533790707588, -0.019598666578531265, 0.007887947373092175, 0.028611192479729652, 0.005058617796748877, -0.0010937820188701153, 0.0008940997649915516, 0.0020703377667814493, -0.0035525565035641193, -0.008527725003659725, 0.021744506433606148, -0.0001762121682986617, -0.011802117340266705, -0.011404739692807198, -0.0022908824030309916, -0.007963448762893677, -0.0001126938295783475, 0.0005354664172045887, 0.005793766584247351, 0.021410709246993065, 0.01635606586933136, -0.004538053181022406, -0.003049873746931553, 0.007581965997815132, -0.010864305309951305, 0.008511830121278763, -0.0020484819542616606, -0.005189752671867609, -0.009417851455509663, -2.1219346308498643e-05, -0.01527519803494215, 0.003012122819200158, 0.0008245586650446057, 0.013987693935632706, 0.005261280573904514, -0.01197696290910244, -0.003252536291256547, -0.0030717295594513416, 0.010244396515190601, 0.011237841099500656, 0.006330226548016071, -0.011778274551033974, 0.016030214726924896, -0.023349912837147713, 0.010053655132651329, 0.01659449189901352, -0.015672575682401657, 0.000718260183930397, 0.008599253371357918, 0.0014623499009758234, 0.026481248438358307, -0.0234293881803751, -0.00733161810785532, 0.002394200535491109, -0.0014156579272821546, -0.018660856410861015, -0.019074128940701485, -0.006656076293438673, 0.012255127541720867, -0.0038863536901772022, 0.0171190295368433, 0.011086837388575077, -0.0006939207669347525, -0.006159354001283646, -0.023159170523285866, -0.01019671093672514, -0.015863316133618355, -0.007323670666664839, -0.005638789385557175, 0.004605607129633427, 0.000705842103343457, 0.0026167319156229496, -0.0049036405980587006, 0.005193726159632206, 0.008134321309626102, 0.020425213500857353, -0.0076852841302752495, -0.014734764583408833, 0.0051500145345926285, -0.016515016555786133, 0.0038247602060437202, -0.015465939417481422, 0.00600437680259347, 0.0035605039447546005, 0.018422428518533707, -0.003363802097737789, -0.011611375957727432, 0.01599842496216297, 0.002114049158990383, -0.027387268841266632, 0.007264064159244299, 0.018438324332237244, -0.020838486030697823, 0.005726212169975042, 0.0017136912792921066, -0.012263075448572636, 0.0031333230435848236, -0.01834295317530632, -0.008480039425194263, -0.011285525746643543, 0.021823981776833534, -0.018120422959327698, -0.009862913750112057, 0.013415470719337463, -0.004649318754673004, 0.005213594995439053, 0.011086837388575077, 0.008988683111965656, -0.028023073449730873, 0.017595883458852768, 0.004788401070982218, 0.003486989066004753, 0.00025233483756892383, 0.0030220572371035814, 0.004732768051326275, 0.006175249349325895, -0.007728995755314827, -0.0036280581261962652, -0.011158364824950695, -0.0015577204758301377, 0.01452018041163683, -0.0016242812853306532, 0.011953121051192284, -0.025686493143439293, -0.010307976976037025, -0.02312738075852394, -0.003286313498392701, -0.001450428506359458, 0.002807473298162222, -0.024796366691589355, -0.012159757316112518, -0.0020504689309746027, -0.01683291792869568, -0.005670579615980387, -0.02441488392651081, 0.01945561170578003, -0.006719656754285097, 0.01641964539885521, -4.3121686758240685e-05, 0.02447846531867981, -0.000131507171317935, -0.01510035153478384, 0.00237234472297132, 0.006334200035780668, 0.02225315012037754, -0.004402944818139076, -0.01468707900494337, 0.004212203435599804, 0.0028333028312772512, -0.002863106084987521, -0.0038187995087355375, 0.0004691540088970214, -0.019026443362236023, 0.011635218746960163, 0.00687860744073987, -0.023095590993762016, 0.0036141499876976013, 0.00035068579018116, -0.012485606595873833, 0.006497125141322613, -0.03043913096189499, 0.007597861345857382, 5.48877906112466e-05, -0.004657266195863485, 0.004271809943020344, 0.007939605973660946, -0.0034452644176781178, -0.009831123985350132, -0.025861339643597603, 0.01142063457518816, 0.012374340556561947, 0.05858936533331871, 0.005885163322091103, 0.013296256773173809, -0.005058617796748877, -0.00917147658765316, -0.017627673223614693, 0.009791386313736439, 0.004848007578402758, -0.02312738075852394, -0.0017335601150989532, 0.009560907259583473, -0.01864496059715748, 0.025225535035133362, 0.014059222303330898, -0.003252536291256547, -0.0009000604622997344, -0.00800318643450737, 0.007574018556624651, -0.007299827877432108, 0.024732787162065506, 0.006040140520781279, 0.008885364979505539, -0.009076106362044811, 0.00015249368152581155, 0.020361632108688354, 0.010149026289582253, -0.003542622085660696, -0.03474670276045799, -0.004621502477675676, -0.0080270292237401, 0.015815632417798042, -0.002167695201933384, -0.0260520800948143, 0.014575812965631485, 0.0068229748867452145, 0.0243672002106905, -0.013781057670712471, 0.022586947306990623, 0.011015309020876884, -0.006870659999549389, -0.015847422182559967, -0.015012928284704685, 0.0019213210325688124, 0.008662833832204342, -0.021649135276675224, -0.00829724594950676, 0.011404739692807198, -0.009123791940510273, -0.008710518479347229, 0.000718260183930397, -0.003558517200872302, 0.008662833832204342, -0.02856350690126419, -0.011730588972568512, 0.0010908017866313457, 0.00020427696290425956, 0.011269630864262581, -0.015871264040470123, -0.008638991042971611, -0.021951142698526382, 0.005678527057170868, -0.007383277174085379, 0.011062994599342346, 0.021951142698526382, -0.016896499320864677, -0.0068587386049330235, -0.014456599950790405, -0.001964039169251919, -0.0019322489388287067, 0.0008871456957422197, 0.0169918704777956, -0.01290682703256607, 0.0011037165531888604, -0.018438324332237244, -0.011945173144340515, -0.01864496059715748, -0.02312738075852394, -0.01950329728424549, -0.009537064470350742, 0.005281149409711361, -0.01127757877111435, 0.010745092295110226, -0.0037015730049461126, -0.005603025201708078, -0.014647341333329678, 0.0046294499188661575, 0.00045201712055131793, 0.016483226791024208, 0.0156487338244915, -0.0032644576858729124, -0.03458775207400322, -0.005916953552514315, -0.010768935084342957, 0.005837478209286928, 0.021394813433289528, -0.01276377122849226, 0.002743892837315798, 0.008209822699427605, 0.006071930751204491, -0.0030081490986049175, 0.008789993822574615, 0.009775490500032902, -0.0021577607840299606, 0.017134925350546837, 0.003033978631719947, -0.03318898379802704, -0.019821198657155037, -0.009560907259583473, 0.009123791940510273, 0.01985298842191696, -0.0066481283865869045, -0.0005319893825799227, -0.0024915579706430435, 0.00966422539204359, -0.0028988702688366175, 0.009060211479663849, 0.02856350690126419, 0.008007160387933254, 0.014893715269863605, 0.010339767672121525, -0.023461177945137024, 0.00547586428001523, 0.014655289240181446, -0.004375128075480461, 0.006437518633902073, 0.009807281196117401, 0.02681504562497139, 0.004402944818139076, -0.030518606305122375, 0.016165323555469513, 0.003943973686546087, -0.0014096973463892937, 0.0063381739892065525, -0.0038803929928690195, 0.0011176246916875243, 0.003580372780561447, 0.008090609684586525, 0.019821198657155037, 0.004144649021327496, -0.0074945432133972645, -0.0035326876677572727, 0.046636246144771576, 0.013010145165026188, -0.0012964446796104312, 0.00018838186224456877, -0.006803106050938368, -0.020584164187312126, 0.013765162788331509, 0.01659449189901352, 0.007796550169587135, -0.0171190295368433, -0.026020290330052376, 0.0026544828433543444, 0.0009725818526931107, -0.01197696290910244, 0.002519374480471015, -0.0003829727356787771, 0.02183987759053707, -0.015728209167718887, 0.0007912783185020089, -0.008265456184744835, 0.003743297653272748, 0.01963045820593834, 0.014774502255022526, -0.004418839700520039, -0.006139485165476799, -0.0037472716066986322, 0.015346726402640343, -0.007872051559388638, 0.0069223190657794476, -0.012199494987726212, -0.0027121026068925858, -0.010673564858734608, -0.00021644665685016662, -0.0021637214813381433, 0.009076106362044811, -0.005110276862978935, 0.0038724455516785383, -0.001138487015850842, -0.0027260109782218933, -0.0007152798352763057, 0.03182200342416763, 0.009616539813578129, -0.004363207146525383, 0.011213998310267925, -0.006429570727050304, -0.006234855856746435, -0.009266847744584084, 0.015704365447163582, -0.007144850678741932, -0.011023256927728653, 0.022507471963763237, -0.011516004800796509, -0.016220957040786743, -0.007840261794626713, 0.027943598106503487, -0.008901259861886501, -0.01578384079039097, -0.03031197004020214, -0.0034293693024665117, 0.004196308087557554, 0.015863316133618355, 0.006254724692553282, 0.004943378269672394], "9bbca8e2-87bb-4617-8884-95f1278f1c91": [-0.011878520250320435, -0.011365163139998913, -0.01069494616240263, 0.019578881561756134, -0.018808845430612564, -0.0023011958692222834, 0.04081191495060921, 0.028605416417121887, -0.022131409496068954, 0.05079386755824089, 0.019279424101114273, 0.02394242025911808, 0.023314982652664185, -0.004762816242873669, 0.004288673400878906, 0.03995632007718086, -0.006556002423167229, 0.0016095894388854504, 0.020135018974542618, -0.02234530821442604, 0.048740435391664505, -0.03365343064069748, -0.0458599291741848, 0.00484481081366539, 0.03017400950193405, 0.001602459466084838, -0.021076174452900887, 0.017867689952254295, -0.025995850563049316, -0.0028626807034015656, 0.013197563588619232, 0.020648377016186714, 0.010202978737652302, 0.00268086651340127, 0.013333032839000225, -0.028847835958003998, 0.001511552487500012, -0.010103159584105015, -0.034708667546510696, -0.009789440780878067, -0.012841065414249897, 0.020420217886567116, 0.030088448897004128, -0.03217040002346039, -0.02258772775530815, 0.027892420068383217, -0.002187116537243128, 0.0009375903173349798, 0.004538222216069698, -0.044719137251377106, 0.03353935107588768, 0.03399566933512688, 0.019892601296305656, 0.012277798727154732, 0.03673357516527176, -0.03661949560046196, 0.02980324998497963, 0.041154153645038605, 0.028220398351550102, -0.08647220581769943, 0.008399098180234432, -0.028990434482693672, 0.024227619171142578, -0.011058574542403221, 0.01813862845301628, 0.008456137962639332, 0.011065704748034477, -0.019037004560232162, -0.014088809490203857, 0.023600181564688683, 0.009375902824103832, 0.005728926509618759, -0.050280507653951645, 0.014559387229382992, 0.030487727373838425, 0.02003519982099533, 0.03473718464374542, 0.029945850372314453, 0.02826317772269249, -0.031856682151556015, 0.0010730596259236336, -0.002543614711612463, 0.03040216863155365, -0.0010044337250292301, 0.0919480174779892, 0.030202528461813927, -0.01706913486123085, -0.04449097812175751, -0.02951805293560028, -0.02253068797290325, 0.004887590650469065, 0.015800001099705696, -0.014466697350144386, -5.965774835203774e-05, -0.007137094158679247, -0.008727076463401318, 0.01920812390744686, 0.010623646900057793, -0.002743253717198968, -0.025910289958119392, -0.004395623225718737, 0.003318998496979475, -0.010074639692902565, 0.02347184345126152, 0.021846210584044456, -0.0047949012368917465, -0.005429467651993036, 0.01984982006251812, -0.02951805293560028, 0.013069224543869495, -0.008912455290555954, -0.030145488679409027, 0.014972925186157227, 0.005621976684778929, -0.05564223974943161, -0.030658846721053123, -0.05162094160914421, -0.03353935107588768, 0.009012274444103241, -0.0075791520066559315, 0.0305732861161232, -0.020833754912018776, 0.00019072653958573937, 0.008727076463401318, -0.024455778300762177, 0.00339208054356277, -0.0016104807145893574, 0.028876354917883873, 0.02726498432457447, 0.01748267188668251, -0.03616317734122276, 0.002434882801026106, 0.029774731025099754, 0.00806398969143629, 0.025154514238238335, 0.028277438133955002, 0.004374233074486256, 0.05592744052410126, -0.018623467534780502, 0.011800090782344341, -0.05618412047624588, -0.01380361057817936, -0.013917690142989159, 0.014566517435014248, 0.028462817892432213, -0.019407762214541435, -0.028462817892432213, 0.04660144820809364, -0.008577346801757812, 0.012969405390322208, -0.06325704604387283, -0.029603611677885056, -0.03764621168375015, -0.00980370119214058, 0.0227588452398777, -0.022801626473665237, -0.0025899596512317657, 0.02756444178521633, 0.013233213685452938, 0.047970399260520935, 0.014495217241346836, -0.06280072778463364, 0.012242148630321026, 0.046487368643283844, 0.03590650111436844, 0.02240234799683094, 0.04546065255999565, -0.005443727597594261, -0.023714261129498482, 0.02886209636926651, 0.019892601296305656, -0.039500001817941666, 0.008028339594602585, 0.01605667918920517, -0.02181769162416458, 0.0055471123196184635, 0.028591156005859375, 0.04132527485489845, 0.0032441336661577225, -0.022388087585568428, -0.0305732861161232, -0.00903366506099701, 0.009333123452961445, 0.017996029928326607, 0.02347184345126152, 0.05795234814286232, 0.024398738518357277, 0.038787007331848145, -0.008748466148972511, 0.01796751096844673, -0.0008168265339918435, 0.007736011408269405, -0.007771661039441824, -0.012755505740642548, -0.014644946902990341, -0.029346933588385582, -0.003839485812932253, 0.0009313515620306134, -0.01849512755870819, 0.011350903660058975, -0.019807040691375732, -0.0452895350754261, -0.02429891750216484, 0.021133214235305786, -0.03998484089970589, 0.02394242025911808, -0.01771083101630211, -0.06257256865501404, 0.04449097812175751, -0.008634386584162712, 0.051592420786619186, -0.025040434673428535, -0.02270180732011795, -0.011714531108736992, -0.0009331340552307665, -0.01416723895817995, 0.010894585400819778, 0.02495487593114376, 0.00546868285164237, -0.01926516368985176, -0.003921480383723974, 0.017810650169849396, -0.018865885213017464, -0.013789351098239422, -0.04594549164175987, -0.023899640887975693, -0.022944224998354912, 0.03336823359131813, -0.000401060504373163, 0.0047699459828436375, 0.001079298323020339, 0.007087184581905603, 0.009561282582581043, 0.004734296351671219, -0.024427257478237152, 0.05664043501019478, 0.060176897794008255, -0.01229205820709467, -0.017268773168325424, 0.003732536220923066, -0.008577346801757812, 0.013810740783810616, 0.0027379062958061695, -0.009568411856889725, 0.011628971435129642, 0.034879785031080246, 0.0006171875284053385, 0.058693867176771164, 0.0022601985838264227, 0.010145938955247402, -0.004338583443313837, 0.007971299812197685, 0.014245668426156044, 0.008242238312959671, -0.026452166959643364, 0.03302599489688873, 0.03627725690603256, -0.014559387229382992, -0.020348917692899704, -0.002666606567800045, 0.01759675145149231, 0.02683718502521515, 0.020634116604924202, 0.019065525382757187, 0.0072155240923166275, -0.007308213505893946, 0.030772926285862923, -0.00521556893363595, -0.0021193819120526314, 0.04052671790122986, 0.03676209598779678, 0.020719677209854126, 0.0069517153315246105, 0.024626897647976875, 0.01997816003859043, -0.009318863041698933, 0.005764576140791178, 0.007871480658650398, 0.02886209636926651, 0.005679016467183828, -0.023657221347093582, -0.026224009692668915, 0.036419857293367386, 0.03231299668550491, 0.06051913648843765, -0.016926534473896027, -0.029831770807504654, -0.05441588908433914, -0.05139278247952461, -0.011871390976011753, 0.0014892712933942676, 0.015543322078883648, 0.0042601535096764565, 0.03453754633665085, 0.007140659261494875, 0.008334928192198277, -0.024740975350141525, -0.00775027135387063, 0.009489982388913631, 0.029133034870028496, 0.01647021807730198, -0.0010053250007331371, -0.006099684629589319, -0.016455957666039467, 0.016370398923754692, -0.03302599489688873, 0.0342523492872715, 0.03439494967460632, -0.02317238412797451, 0.048084478825330734, 0.04737148433923721, -0.022316789254546165, -0.018181409686803818, 0.01979278028011322, 0.004819856025278568, 0.023186644539237022, -0.0065595670603215694, -0.024142058566212654, -0.005960650276392698, -0.05036606639623642, -0.0005053362110629678, 0.027707042172551155, -0.06593790650367737, 0.022416608408093452, 0.053417693823575974, -0.03045920841395855, 0.022031590342521667, -0.03773177042603493, -0.01682671532034874, -0.023571662604808807, -0.022673286497592926, -0.0187945868819952, -0.03684765473008156, 0.01771083101630211, -0.03148592263460159, -0.03670505806803703, -0.06491119414567947, -0.023714261129498482, 0.015072744339704514, -0.004958890378475189, -0.01973574049770832, -0.035107944160699844, 0.04200974851846695, 0.013682401739060879, 0.022302528843283653, -0.006263673771172762, 0.012527347542345524, 0.019094044342637062, -0.024042239412665367, -0.0013769743964076042, 0.0008449007873423398, -0.01401751022785902, 0.04337870329618454, -0.01454512681812048, 0.00974666140973568, -0.020220579579472542, -0.012284928932785988, 0.011878520250320435, 0.007479332387447357, 0.009910650551319122, -0.004908980336040258, -0.0264949481934309, 0.00546868285164237, -0.003515072399750352, -0.0008622800814919174, 0.008363448083400726, 0.00023863099340815097, -0.0265519879758358, -0.019650181755423546, -0.006627301685512066, -0.02968917228281498, 0.01565740257501602, -0.003914350643754005, -0.01973574049770832, -0.008163808844983578, -0.0385018065571785, 0.025496752932667732, 0.003903655568137765, -0.004887590650469065, 0.037018775939941406, 0.0077217514626681805, 0.013204693794250488, 0.009625451639294624, 0.04765668138861656, 0.02940397337079048, -0.00367549667134881, 0.014566517435014248, -0.04799892008304596, -0.03359639272093773, -0.0055649373680353165, -0.02678014524281025, -0.0007375056738965213, -0.028491336852312088, -0.014480957761406898, -0.017682312056422234, 0.0002883179404307157, 0.0007308213389478624, -0.007693231571465731, -0.002839508233591914, -0.021646572276949883, 0.003071232233196497, -0.016812456771731377, -0.01695505529642105, -0.016555776819586754, 0.00632784329354763, -0.038558848202228546, -0.003488335059955716, 0.0004097501514479518, 0.017340073361992836, -0.010866065509617329, 0.005137139465659857, -0.007062229793518782, 0.009055054746568203, 0.03590650111436844, 0.024199098348617554, 0.0228729248046875, -0.008434747345745564, 0.07278267294168472, -0.02144693210721016, -6.177445902721956e-05, 0.03237003833055496, 0.009882130660116673, 0.015372202731668949, 0.018338268622756004, -0.013946210034191608, 0.025040434673428535, -0.013682401739060879, -0.021247293800115585, -0.0007419619360007346, -0.0026434343308210373, 0.01460216660052538, 0.0416104719042778, -0.02150397188961506, 0.00013858868624083698, -0.00478777103126049, 0.0008863437105901539, 0.006046209950000048, -0.028947655111551285, 0.010366967879235744, -0.0016372180543839931, -0.018894406035542488, -0.003099751891568303, 0.001357366912998259, 0.00632784329354763, -0.030059929937124252, -0.024199098348617554, -0.028134839609265327, 0.03622021898627281, 0.03924332186579704, -0.012227889150381088, 0.011529152281582355, 0.018951445817947388, -0.03661949560046196, -0.0029642826411873102, 0.022801626473665237, -0.021347112953662872, -0.009440072812139988, 0.022131409496068954, 0.048626355826854706, -0.055014804005622864, 0.009219043888151646, -0.012833936139941216, 0.021475452929735184, 0.00621019909158349, 0.021418413147330284, -0.009518502280116081, 0.02571065165102482, 0.01718321442604065, 0.010181589052081108, 0.010260018520057201, 0.014288448728621006, -0.000594015175011009, -0.017140435054898262, 0.01843808777630329, 0.02405649982392788, 0.0057895309291779995, -0.0021942465100437403, 0.007443682756274939, 0.00367549667134881, -0.015258124098181725, -0.004552482161670923, -0.03727545216679573, 0.01647021807730198, -0.006381317973136902, 0.017354333773255348, 0.014509477652609348, -0.02518303319811821, -0.017996029928326607, 0.04759964346885681, -0.003639846807345748, 0.0007539937505498528, -0.012092419900000095, 0.01789621077477932, -0.008085379377007484, -0.0029571526683866978, -0.0009170916746370494, -0.027407582849264145, -0.0061781140975654125, 0.004684386774897575, -0.04101155325770378, 0.01060938648879528, -0.01131525356322527, 0.0076861013658344746, -0.002900112885981798, -0.04243754595518112, 0.04283682629466057, -0.020962094888091087, 0.038958124816417694, -0.015400722622871399, -0.025639351457357407, -0.02014927938580513, 0.027806861326098442, -0.04155343025922775, -0.004687951412051916, 0.022473648190498352, 0.019037004560232162, -0.0056718867272138596, 0.005982039961963892, 0.037959929555654526, 0.009974820539355278, 0.003914350643754005, -0.025739170610904694, -0.02174639143049717, -0.01199973002076149, -0.008185199461877346, -0.012356228195130825, 0.000986608793027699, -0.02334350347518921, 0.008106769062578678, -0.026537727564573288, -0.013996119610965252, 0.007329603191465139, -0.022687546908855438, 0.0132759939879179, 0.01605667918920517, -0.010680686682462692, -0.015158304013311863, 0.031371843069791794, 0.02749314159154892, 0.008541697636246681, -0.04457653686404228, 0.028291698545217514, -0.021532492712140083, 0.010317058302462101, -0.013710921630263329, 0.016669856384396553, -0.0023511056788265705, 0.013639621436595917, -0.004181724041700363, 0.017924729734659195, -0.029232854023575783, 0.028163358569145203, -0.0026612591464072466, 0.010153069160878658, 0.0023011958692222834, -0.034280870109796524, 0.000451638683443889, -0.02418483980000019, -0.01433835830539465, -0.025824731215834618, -0.034509025514125824, 0.017411373555660248, 0.01001046970486641, -0.0068055507726967335, 0.0033742557279765606, 0.010652166791260242, -0.0418386310338974, 0.0071941339410841465, 0.00033911893842741847, 0.03593502193689346, 0.02583899162709713, 0.0028002934996038675, 0.02583899162709713, 0.021846210584044456, -0.01694079488515854, 0.044890254735946655, 0.0016470217378810048, 0.006049774587154388, -0.04682960733771324, -0.028548376634716988, 0.025211554020643234, 0.00936877354979515, 0.00305162463337183, -0.0061781140975654125, -0.00490541523322463, 0.010973014868795872, -0.02002093940973282, -0.010894585400819778, -0.0009447202901355922, 0.005953520070761442, 0.003003497375175357, 0.03525054454803467, -0.0381595678627491, 0.017682312056422234, -0.021831950172781944, 0.00960406195372343, 0.008784116245806217, 0.01860920712351799, 0.0010160199599340558, 0.025995850563049316, 0.02358592115342617, 0.008762726560235023, 0.008577346801757812, -0.00388939562253654, -0.028491336852312088, 0.032797835767269135, -0.012848195619881153, 0.01208528969436884, 0.01955036260187626, 0.021190254017710686, 0.00478777103126049, -0.00632784329354763, 0.0210333950817585, -0.0105452174320817, 0.009012274444103241, 0.011322383768856525, 0.015899820253252983, 0.03365343064069748, 0.016142239794135094, 0.0051799193024635315, 0.02441299706697464, -0.012078159488737583, 0.04682960733771324, -0.014423917979001999, 0.0063207135535776615, 0.011186913587152958, -0.021774910390377045, 0.0077003613114356995, -0.01165036205202341, 0.017496932297945023, -0.0007508743437938392, -0.01208528969436884, -0.015015704557299614, -0.017026355490088463, 0.0017949684988707304, -0.008719946257770061, -0.002156814094632864, 0.022416608408093452, 0.0033599957823753357, 0.0021532492246478796, 0.0065666972659528255, 0.0018769630696624517, -0.0006853677914477885, 0.05455848574638367, -0.0075791520066559315, 0.00936877354979515, -0.011686011217534542, 0.00998194981366396, 0.04360686242580414, 0.015985380858182907, -0.023856861516833305, 0.0037111465353518724, 0.005105054471641779, 0.022858666256070137, 0.00450257258489728, -0.002360018203034997, -0.010987275280058384, -0.0025881770998239517, -0.015172564424574375, 0.0003259730583522469, 0.025625091046094894, -0.01736859232187271, 0.01996389962732792, 0.03217040002346039, 0.005486507434397936, -0.012135199271142483, 0.013867780566215515, 0.0005195961566641927, 0.03348231315612793, 0.030972564592957497, 0.010630777105689049, -0.0012459612917155027, 0.023086825385689735, -0.0010062161600217223, -0.011358032934367657, -0.008006949909031391, 0.005347473081201315, 0.020591337233781815, 0.012491697445511818, -0.01128673367202282, -0.003974955063313246, -0.05002383142709732, -0.03550722077488899, 0.0029535877984017134, -0.030202528461813927, -0.007522112224251032, 0.005415207706391811, -0.006049774587154388, -0.019407762214541435, -0.008805505931377411, -0.013896300457417965, 0.0036826266441494226, -0.003115794388577342, 0.00564336683601141, -0.00441701291128993, 0.004431272856891155, 0.017140435054898262, -0.027165163308382034, 0.008249368518590927, 0.0028608981519937515, -0.03562130033969879, -0.030316608026623726, 0.00019005811191163957, -0.007165614049881697, 0.0077003613114356995, 0.01247743796557188, -0.012042509391903877, -0.029888810589909554, -0.008769855834543705, -0.0011675317073240876, 0.013860650360584259, 0.013910559937357903, -0.006231588777154684, 0.011507762596011162, 0.02116173319518566, 0.011764440685510635, -0.018951445817947388, 0.029432492330670357, -0.002989237429574132, 0.04272274672985077, -0.00638488307595253, 0.015429242514073849, -0.027764081954956055, -0.00823510903865099, -0.018994225189089775, 0.01641317829489708, -0.012698466889560223, 0.007236913777887821, 0.006021254695951939, -0.007657581474632025, 0.049396391957998276, -0.01890866458415985, 0.011065704748034477, 0.010038989596068859, 0.019422022625803947, -0.02837725728750229, -0.012726985849440098, 0.02910451404750347, 0.015058484859764576, -0.01345424260944128, 0.02482653595507145, -0.007850090973079205, 0.024798015132546425, -0.026466427370905876, -0.008434747345745564, -0.02381408028304577, 0.03650541603565216, 0.012605777010321617, -0.007971299812197685, -0.01635613851249218, 0.02991732954978943, -0.03721841424703598, 0.025881770998239517, 0.007543502375483513, 0.0015917645068839192, 0.013176173903048038, 0.024626897647976875, 0.007999819703400135, -0.009653971530497074, 0.04320758208632469, -0.024370217695832253, 0.022031590342521667, 0.00623871898278594, -0.026594767346978188, -0.0010587996803224087, 0.004958890378475189, 0.021888989955186844, 0.011236824095249176, 0.024199098348617554, 0.004377798177301884, 0.06120361387729645, 0.023486101999878883, 0.027179423719644547, 0.045888449996709824, -0.022430866956710815, -0.02464115619659424, 0.0032102663535624743, -0.021290073171257973, -0.020420217886567116, 0.0008431182941421866, -0.01718321442604065, -0.04817003756761551, 0.017582492902874947, -0.00453465711325407, 0.01962166093289852, -0.044947296380996704, 0.04611660912632942, -0.00989639014005661, -0.017824910581111908, 0.013796481303870678, 0.03399566933512688, -0.006634431891143322, -0.008798375725746155, 0.03028808906674385, 0.02737906388938427, -0.007279693614691496, -0.01197121012955904, -0.01268420647829771, -0.014381137676537037, 0.0021372067276388407, 0.01618501916527748, -0.0027236463502049446, 0.03385306894779205, 0.05664043501019478, 0.03362491354346275, -0.025083214044570923, -0.019635921344161034, -0.014024639502167702, -0.021888989955186844, 0.013354423455893993, -0.007693231571465731, 0.004338583443313837, -0.01069494616240263, 0.028776535764336586, -0.03034512884914875, -0.003622021758928895, 0.03502238541841507, 0.029774731025099754, 0.018466606736183167, 0.01564314216375351, -0.03237003833055496, -0.00407477468252182, 0.01778213120996952, 0.01842382736504078, 0.024384478107094765, 0.0018306183628737926, 0.005818050820380449, 0.022430866956710815, -0.01451660692691803, 0.000941155303735286, 0.008406228385865688, -0.02352888137102127, -0.02174639143049717, 0.038958124816417694, 0.009482852183282375, 0.014302708208560944, 0.0026220444124192, -0.0035721121821552515, -0.023671481758356094, 0.0068269409239292145, -0.005076534580439329, -0.05173502117395401, -0.0059499554336071014, 0.007942779920995235, -0.017325812950730324, 0.012156588956713676, 0.029261372983455658, 0.0208622757345438, 0.029774731025099754, 0.058522745966911316, 0.010424007661640644, -0.03858736529946327, 0.02572491206228733, 0.011308123357594013, -0.001712973928079009, 0.00963258184492588, 0.004231633618474007, 0.018523646518588066, 0.0009670014260336757, -0.011072834953665733, 0.004181724041700363, -0.006096119526773691, -0.026951264590024948, 0.0028894180431962013, -0.014673466794192791, -0.007101444527506828, 0.0008520307601429522, 0.015429242514073849, 0.002005302580073476, -0.010110289789736271, 0.004684386774897575, 0.020077979192137718, 0.030259568244218826, 0.017382852733135223, -0.009539891965687275, -0.012092419900000095, 0.013019314967095852, -0.008677166886627674, -0.01926516368985176, 0.003406340489163995, 0.00844187755137682, -0.003188876435160637, -0.004951760172843933, 0.011935560032725334, -0.02583899162709713, -0.006402708124369383, 0.0036202394403517246, -0.00015997857553884387, -0.006488267332315445, 0.0063171484507620335, -0.014288448728621006, 0.015129784122109413, -0.0015748308505862951, -0.018651986494660378, -0.026808666065335274, -0.00058733084006235, 0.0037860111333429813, 0.011079964227974415, -0.0014456002973020077, 0.009454332292079926, 0.011714531108736992, -0.04466209560632706, -0.014288448728621006, -0.016028160229325294, 0.051592420786619186, -0.05524296313524246, 0.007949910126626492, 0.0003823443257715553, 0.03593502193689346, -0.0009625451639294624, 0.011222563683986664, 0.01552906259894371, 0.005454422906041145, -0.020876536145806313, 0.03699025511741638, 0.016726896166801453, 0.024855054914951324, -0.03331119194626808, -0.016555776819586754, -0.027421843260526657, 0.015400722622871399, -0.01487310603260994, 0.023243684321641922, -0.00010193620983045548, -0.020548557862639427, 0.01371805090457201, -0.03265523537993431, -0.021717870607972145, -0.010823286138474941, 0.03100108541548252, -0.0019678701646625996, 0.005978474859148264, 0.0006345668225549161, 0.002147901803255081, 0.01581426151096821, -0.022544946521520615, -0.019949641078710556, -0.029432492330670357, -0.03154296055436134, 0.0033350407611578703, -0.010053250007331371, -0.016455957666039467, 0.04968159273266792, -0.012969405390322208, -0.025981590151786804, -0.02863393723964691, 0.0030605371575802565, 0.020120758563280106, -0.006046209950000048, -0.012691336683928967, 0.004203114192932844, 0.01407455001026392, -0.0031371843069791794, 0.0020124323200434446, 0.017625272274017334, 0.016783935949206352, -0.005137139465659857, -0.01907978393137455, -0.005522157531231642, -0.005048014689236879, -0.015129784122109413, 0.02506895363330841, -0.007607671897858381, 0.005354603286832571, -0.011764440685510635, 0.013760831207036972, -0.024085018783807755, -0.004374233074486256, -0.02300126478075981, -0.022003069519996643, -0.010616516694426537, -0.015543322078883648, 0.004277978558093309, 0.008755596354603767, -0.007835830561816692, -0.005240523722022772, -0.030145488679409027, -0.013104874640703201, -0.029318412765860558, -0.014559387229382992, 0.028049279004335403, -0.022359568625688553, -0.003484769957140088, -0.0208052359521389, -0.014944405294954777, -0.02044873684644699, -0.010851806029677391, 0.01955036260187626, -0.03699025511741638, -0.014566517435014248, 0.0021069045178592205, -0.015899820253252983, -0.005097924266010523, 0.0005307366955094039, 0.009561282582581043, -0.020933575928211212, -0.017496932297945023, -0.03271227702498436, 0.00044584559509530663, -0.053845491260290146, 0.003593502100557089, 0.010017599910497665, -0.04623068869113922, 0.035592783242464066, 0.0422949492931366, 0.030031409114599228, 0.0002272676065331325, -0.02725072391331196, -0.018409566953778267, -0.004392058122903109, -0.02525433339178562, -0.02003519982099533, -0.01694079488515854, -0.03168556094169617, -0.011030054651200771, 0.018937185406684875, 0.029432492330670357, -0.025054695084691048, 0.014673466794192791, 0.028548376634716988, 0.0005877764197066426, -0.02176065184175968, 1.4273854276325437e-06, -0.030687365680933, -0.014687726274132729, 0.0038501806557178497, -0.005850135814398527, 0.0026452166493982077, 0.0019803475588560104, 0.017881950363516808, -0.03490830585360527, -0.025339893996715546, 0.00016944805975072086, -0.009917780756950378, 0.004477617796510458, -0.021789170801639557, -0.0017700135940685868, -0.05755307152867317, -0.007094314321875572, -0.016812456771731377, 0.01843808777630329, 0.002761078765615821, -0.01990685984492302, 0.014402528293430805, 0.016755416989326477, -0.03353935107588768, 0.0025988719426095486, 0.014452437870204449, -0.004709341563284397, 0.01045965775847435, -0.0022601985838264227, -0.0031960064079612494, 0.004171029198914766, 0.0028965480159968138, -0.00886254571378231, 0.0029215028043836355, -0.0024259702768176794, -0.016013899818062782, 0.0010980145307257771, 0.03776029124855995, -0.009967690333724022, -0.022958485409617424, 0.04118267446756363, -0.01487310603260994, -0.011529152281582355, -0.025853250175714493, -0.03485126420855522, 0.004295803606510162, 0.006138899363577366, -0.00735099334269762, -0.020220579579472542, -0.019236642867326736, 0.01949332281947136, 0.009960560128092766, -0.015101264230906963, 0.005130009260028601, 0.001156836748123169, 0.01629909873008728, -0.003329693339765072, -0.013297383673489094, -0.010395487770438194, -0.00311935949139297, -0.01473050657659769, 0.006737816147506237, -0.03644837811589241, -0.003910785540938377, -0.006819810718297958, 0.00453465711325407, 0.01374657079577446, -0.0033368233125656843, -0.009233303368091583, -0.002176421694457531, 0.010495307855308056, 0.010267148725688457, -0.02067689597606659, 0.023742781952023506, 0.0019393502734601498, 0.0452895350754261, 0.007900000549852848, 0.024669677019119263, -0.00820658914744854, -0.025753431022167206, 0.021846210584044456, 0.024569857865571976, 0.02407076023519039, 0.02814910002052784, 0.011058574542403221, 0.02524007298052311, 0.0026879964862018824, 0.004089034628123045, 0.021489713340997696, 0.005290433298796415, 0.01063790637999773, 0.01878032647073269, 0.013860650360584259, 0.015800001099705696, -0.0022548511624336243, -0.03696173429489136, 0.000285644200630486, -0.002083732048049569, 0.0010293886298313737, -0.01599963940680027, -0.010530957020819187, -0.012441787868738174, -0.02963213250041008, 0.01194269023835659, -0.005076534580439329, 0.032740797847509384, 0.008406228385865688, 0.02258772775530815, 0.010067509487271309, -0.02003519982099533, 0.05903610587120056, -0.01967870071530342, 0.012399007566273212, -0.011985469609498978, -0.0014554039807990193, 0.004363538231700659, -0.018937185406684875, 0.008049729280173779, -0.010081769898533821, 0.0020427347626537085, -0.007693231571465731, 0.00621019909158349, -0.006645126733928919, -0.017753610387444496, -0.019821301102638245, -0.010766246356070042, 0.0005311823333613575, -0.03194224089384079, 0.010117419064044952, -0.022730326279997826, 0.0029518052469938993, -0.004891155753284693, 0.0008925824076868594, -0.005885785445570946, 0.00966110173612833, -0.006855460815131664, 0.03382455185055733, -0.004598827101290226, -0.02435595728456974, -0.0026469992008060217, -0.006987364962697029, -0.006113944575190544, -0.005682581569999456, -0.009554152376949787, 0.03134332224726677, -0.003254828741773963, -0.006880415603518486, 0.012641427107155323, 0.005572067108005285, 0.009147744625806808, 0.003714711405336857, 0.027806861326098442, 0.0008876805659383535, 0.0419527105987072, -0.024284658953547478, 0.016627077013254166, -0.004973150324076414, -0.0011300992919132113, 0.004392058122903109, -0.028291698545217514, -0.0021639440674334764, -0.009083574637770653, -0.022316789254546165, -0.0017103002173826098, 0.004349278286099434, 0.00459169689565897, -0.0008261846378445625, 0.030887005850672722, 0.02234530821442604, -0.016313359141349792, -0.028177618980407715, -0.01748267188668251, -1.7058997400454246e-05, 0.008734206669032574, -0.006516787223517895, -0.008684296160936356, 0.0029660651925951242, 0.024284658953547478, -0.002190681640058756, 0.011137004010379314, -0.009404422715306282, -0.023657221347093582, -0.003468727692961693, 0.008014080114662647, 0.006374188233166933, 0.016327617689967155, -0.001804772182367742, -0.00812102947384119, -0.005190614145249128, 0.009461462497711182, -0.02707960456609726, 0.006570261903107166, -0.0009750226163305342, 0.006983799859881401, -0.0018751806346699595, -0.006655821576714516, 0.01849512755870819, 0.0025846119970083237, 0.009440072812139988, -0.0012112027034163475, 0.013461372815072536, -0.006976670119911432, -0.007001624908298254, -0.004064079839736223, 0.016641337424516678, 0.019635921344161034, 0.02454133704304695, -0.009967690333724022, -0.004687951412051916, 0.008883935399353504, 0.008955235593020916, 0.03314007446169853, 0.017354333773255348, -0.018295489251613617, -0.0063028885051608086, -0.002483010059222579, -0.011750181205570698, 0.0031336192041635513, 0.02168935164809227, -0.010081769898533821, 0.01795325055718422, -0.0378173291683197, 0.024855054914951324, 0.00977518130093813, -0.034451987594366074, -0.010131679475307465, 0.012776896357536316, 0.005604152102023363, -0.004830550868064165, 0.020947834476828575, -0.009055054746568203, 0.008883935399353504, -0.025682130828499794, 0.007208393886685371, -0.02974621206521988, 0.027464622631669044, 0.0004155432397965342, 0.008719946257770061, -0.0209763552993536, 0.021660830825567245, 0.027592962607741356, 0.011921300552785397, -0.038131050765514374, 0.004452662542462349, -0.005094359628856182, -0.00031238156952895224, -0.003689756616950035, 0.005258348770439625, -0.025339893996715546, -0.005411643069237471, 0.0051549640484154224, 0.025553792715072632, -0.014259928837418556, 0.02809206023812294, -0.0020605595782399178, -0.021489713340997696, -0.01342572271823883, -0.011664621531963348, 0.015115524642169476, 0.02116173319518566, 0.021618051454424858, -0.023272203281521797, -0.019479062408208847, 0.015628881752490997, 0.0065809572115540504, 0.003188876435160637, 0.003857310628518462, -0.003985649906098843, -0.00496245501562953, -0.016840975731611252, -0.000323967746226117, 0.007094314321875572, -0.004367103334516287, 0.009418683126568794, -0.017824910581111908, -0.013069224543869495, 0.001542745972983539, 0.005311823450028896, -0.040498197078704834, 0.023243684321641922, -0.012734116055071354, -0.00782870128750801, 0.008520307019352913, 0.010894585400819778, -0.01949332281947136, -0.0026434343308210373, 0.0015489847864955664, -0.028420038521289825, 0.006310018245130777, 0.004128249362111092, 0.014595037326216698, -0.0009616539464332163, -0.03901516646146774, 0.0132759939879179, -0.0036059794947504997, -0.027350543066859245, 0.0029696300625801086, -0.02429891750216484, 0.025981590151786804, 0.01342572271823883, 0.01588555984199047, -0.0009447202901355922, -0.02163231186568737, 0.028961915522813797, 0.006028384901583195, 0.0021372067276388407, 0.009703881107270718, 0.02341480366885662, 0.0024010154884308577, 0.021546751260757446, -0.010409748181700706, 0.005554242059588432, -0.0022922835778445005, 0.0036184568889439106, 0.013867780566215515, 0.028220398351550102, 0.004171029198914766, -0.04152491316199303, -0.016684116795659065, -0.007736011408269405, -0.00023796256573405117, 0.00632784329354763, 0.005461552646011114, 0.002039169892668724, 0.006185243837535381, -0.004085469525307417, 0.01885162480175495, -0.01896570436656475, -0.027036825194954872, 0.008249368518590927, 0.030259568244218826, 0.02448429726064205, -0.016726896166801453, 0.0035453748423606157, -0.031799640506505966, 0.002868028124794364, 0.008534567430615425, 0.01795325055718422, 0.02002093940973282, -0.04854079708456993, -0.02240234799683094, 0.013489892706274986, -0.003117576939985156, 0.0005302911158651114, 0.005490072537213564, -0.021432673558592796, 0.039328884333372116, 0.025140253826975822, -0.008912455290555954, 0.0050373198464512825, -0.006719991564750671, -0.003242351347580552, 0.015785740688443184, -0.01208528969436884, -0.0026434343308210373, 0.02803502045571804, 0.012128069065511227, -0.0026006544940173626, -0.007147789001464844, 0.012520217336714268, 0.0211474746465683, 0.0210904348641634, 0.041638992726802826, 0.012142329476773739, -0.013154784217476845, 0.011657491326332092, -0.003130054334178567, -0.004185289144515991, 0.005696841515600681, -0.010309928096830845, 0.0284485574811697, 0.011800090782344341, 0.010552347637712955, -0.021432673558592796, -0.032569676637649536, -0.030316608026623726, -0.007957040332257748, -0.0029838900081813335, 0.0143098384141922, -0.017496932297945023, -0.0063028885051608086, 0.019094044342637062, -0.0114079425111413, 0.012734116055071354, -0.016869494691491127, 0.007878610864281654, -0.011030054651200771, -0.018580686300992966, -0.0040177349001169205, -0.02518303319811821, 0.010509567335247993, 0.011842871084809303, 0.014267059043049812, 0.008627256378531456, -0.0034829876385629177, -0.0031603567767888308, -0.020890794694423676, 0.0028912005946040154, -0.023514622822403908, -0.033738989382982254, -0.00906931422650814, -0.0266090277582407, -0.0005075643421150744, -0.002917937934398651, -0.016812456771731377, -0.02258772775530815, -0.013661012053489685, 0.011450722813606262, 0.015785740688443184, 0.004370667971670628, 0.000809696561191231, -0.03045920841395855, -0.010801895521581173, -0.03242707625031471, -0.017996029928326607, -0.012042509391903877, 0.0034776399843394756, -0.010552347637712955, 0.05150686204433441, -0.011842871084809303, 0.025853250175714493, 0.03234151750802994, 0.011279603466391563, -0.003367125755175948, -0.03767473250627518, -0.005368863232433796, -0.0019411328248679638, -0.0005989170167595148, -0.018894406035542488, -0.030915524810552597, 0.007629062049090862, -0.010773375630378723, 0.027236463502049446, -0.021717870607972145, 0.008577346801757812, -0.011037184856832027, -0.007522112224251032, -0.003793141106143594, -0.01475902646780014, -0.0287337563931942, 0.015144044533371925, -0.035279061645269394, 0.007914260029792786, -0.0030266698449850082, -0.021660830825567245, 0.004064079839736223, -0.0036648015957325697, 0.003203136380761862, 0.0060355146415531635, 0.06251552700996399, -0.02991732954978943, 0.004609521944075823, -0.002944675274193287, -0.007500722538679838, -0.012833936139941216, -0.02370000071823597, -0.014801805838942528, 0.0059356954880058765, -0.0013377595460042357, 0.00635636318475008, -0.011415072716772556, 0.01719747483730316, -0.03208484128117561, 0.01996389962732792, 0.030116969719529152, 0.012669946998357773, -0.01356832217425108, 0.012534476816654205, -0.002370713045820594, 0.00410329457372427, -0.007636191789060831, -0.01552906259894371, -0.01789621077477932, -0.002049864735454321, 0.03870144486427307, 0.006231588777154684, 0.019935380667448044, -0.008563087321817875, 0.00986787024885416, -0.007400902919471264, 0.012456047348678112, 0.03596353903412819, -0.026708846911787987, -0.01194269023835659, -0.022744586691260338, 0.024498557671904564, -0.010766246356070042, -0.0018172496929764748, 0.005329648498445749, 0.023314982652664185, -0.0306303258985281, 0.0010445397347211838, 0.014552257023751736, -0.011992599815130234, -0.019094044342637062, 0.010324188508093357, -0.014659206382930279, -0.008071119897067547, 0.01896570436656475, 0.029717691242694855, -0.0011006882414221764, 0.034337908029556274, 0.0017530799377709627, 0.0036006320733577013, 0.035279061645269394, 0.0016122631495818496, 0.037132855504751205, -0.017682312056422234, 0.003315433394163847, 0.008584477007389069, -0.012470307759940624, 0.004741426091641188, -0.02980324998497963, -0.001928655314259231, 0.004584567155689001, -0.00823510903865099, -0.022373827174305916, -0.028163358569145203, 7.653571083210409e-05, 0.020947834476828575, -0.009340253658592701, -0.0030587546061724424, 0.009468592703342438, 0.007800180930644274, 0.007290388457477093, -0.015928341075778008, 0.006855460815131664, 0.0010766246123239398, 0.01766805164515972, -0.009197654202580452, -0.01736859232187271, 0.008477527648210526, -0.002745036268606782, -0.031086644157767296, 0.0030337998177856207, -0.01830974780023098, -0.0036683666985481977, -0.00481629092246294, -0.011807220987975597, 0.009846480563282967, 0.002636304358020425, 0.007657581474632025, 0.00623871898278594, -0.014331228099763393, -0.0003313205379527062, -0.0008609431679360569, 0.01481606625020504, 0.018124369904398918, 0.02454133704304695, 0.027835380285978317, -0.003992780111730099, 0.012648556381464005, 0.0053011286072432995, -0.013147654011845589, 0.0017798173939809203, -0.00388939562253654, 0.0012236800976097584, -0.012491697445511818, 0.009261823259294033, 0.011051444336771965, 0.0759769007563591, 0.0017361462814733386, 0.010381228290498257, -0.015414983034133911, 0.00527260871604085, -0.02263050712645054, 0.018338268622756004, 0.031200723722577095, 0.026765886694192886, 0.007151354104280472, 0.00583944097161293, -0.018053069710731506, -0.002946457825601101, 0.007586282212287188, -0.027835380285978317, 0.02270180732011795, 0.021004874259233475, 0.020605597645044327, -0.004178158938884735, 0.021076174452900887, 0.016327617689967155, 0.008620127104222775, -0.020491518080234528, 0.021432673558592796, -0.007080054376274347, 0.027878159657120705, -0.010309928096830845, 0.010766246356070042, 0.008641516789793968, 0.019821301102638245, -0.0044063180685043335, -0.007564892061054707, -0.0007998928776942194, 0.006484702695161104, 0.005878655705600977, 0.018994225189089775, -0.011949820443987846, 0.01552906259894371, -0.012755505740642548, 0.026166969910264015, -0.0017406025435775518, 0.006955279968678951, 0.019778521731495857, 0.015543322078883648, -0.008256498724222183, -0.01297653466463089, -0.0004298031562939286, 0.0027004738803952932, 0.004167464096099138, -0.012791155837476254, -0.03602058067917824, -0.008527437224984169, 0.010773375630378723, 0.005896480288356543, 0.01772509142756462, -0.013311643153429031, 0.0022548511624336243, -0.014773285947740078, -0.00527260871604085, -0.008527437224984169, -0.015101264230906963, 0.01457364670932293, -0.015144044533371925, -0.02050577662885189, 0.014374008402228355, -0.02264476753771305, -0.007850090973079205, -0.0004404981154948473, 0.006958845071494579, 0.0024010154884308577, -0.01819566823542118, 0.02176065184175968, -0.005736056249588728, -0.01992112025618553, 8.316434832522646e-05, 0.020491518080234528, 0.000285644200630486, 0.0143098384141922, 0.008848285302519798, -0.008563087321817875, 0.0013698444236069918, -0.00613176915794611, -0.01676967553794384, -0.005657626781612635, 0.018922924995422363, -0.01194269023835659, 0.02340054325759411, -0.019393503665924072, -0.01117265410721302, -0.021133214235305786, -0.017810650169849396, 0.003746796166524291, -0.006124639417976141, 0.012021119706332684, 0.002021344844251871, -0.004866200499236584, -0.01819566823542118, 0.0007780573796480894, 0.02484079636633396, -0.0059285652823746204, 0.008727076463401318, 0.018409566953778267, -0.005012365058064461, 0.00456317700445652, 0.01300505455583334, -0.021375633776187897, 0.022801626473665237, 0.007657581474632025, -0.025924550369381905, -0.001991042634472251, -0.005475812591612339, -0.007083619479089975, -0.018623467534780502, -0.0022138538770377636, -0.015871301293373108, 0.007219088729470968, 0.02341480366885662, -0.004470487590879202, -0.011807220987975597, -0.014359747990965843, -0.0028947654645889997, 0.016926534473896027, -0.01842382736504078, 0.006113944575190544, 0.0012432875810191035, -0.007322473451495171, -0.010566607117652893, -0.006990930065512657, -0.02300126478075981, -0.003162139095366001, 0.0227588452398777, 0.010124549269676208, 0.0038787005469202995, 0.00817806925624609, 0.038131050765514374, -0.0061781140975654125, 0.0026879964862018824, 0.008006949909031391, 0.01872328668832779, -0.001372518134303391, 0.006060469895601273, 0.028020760044455528, 0.002360018203034997, 0.012969405390322208, 0.006142464466392994, 0.008548826910555363, -0.016512997448444366, -0.03639133647084236, 0.002126511884853244, -9.631022112444043e-05, 0.029888810589909554, -0.02968917228281498, -0.0006818028632551432, -0.022174188867211342, 0.021304333582520485, -0.006352798081934452, -0.01984982006251812, 0.030430687591433525, -0.004716471303254366, -0.012513087131083012, 0.012013989500701427, -0.010153069160878658, -0.011600451543927193, -0.01232057809829712, 0.010031859390437603, 0.005119314417243004, 0.01303357444703579, 0.019008485600352287, 0.022259749472141266, -0.008805505931377411, 0.002308325842022896, -0.007261868566274643, -0.0024134928826242685, -0.030829966068267822, 0.004823420662432909, -0.002775338711217046, -0.006916065234690905, 0.005992734804749489, -0.028020760044455528, 0.026623286306858063, 0.00780731113627553, -0.005875090602785349, -0.0023689307272434235, 0.01294801477342844, -0.008698556572198868, -0.0064419228583574295, 0.012762635946273804, -0.006128204520791769, -0.011600451543927193, -0.011792960576713085, -0.0016078070038929582, 0.018466606736183167, -0.002360018203034997, -0.005917870439589024, -0.014095939695835114, -0.0013555844780057669, 0.0017922947881743312, 0.01907978393137455, 0.0037539261393249035, -0.0027111689560115337, 0.0010962319793179631, -0.002885853173211217, 0.00995342992246151, -0.00209620944224298, -0.00416389899328351, -0.027592962607741356, -0.025967329740524292, -0.01330451387912035, -0.01860920712351799, 0.0018787456210702658, -0.04377797991037369, -0.02749314159154892, 0.011800090782344341, 0.009832221083343029, -0.029432492330670357, -0.00022381402959581465, 0.01555758249014616, -0.00027606330695562065, 0.02116173319518566, 0.00026469992008060217, 0.00989639014005661, 0.01220649853348732, 0.013675271533429623, -0.007500722538679838, -0.016327617689967155, 0.005212003830820322, 0.004994540009647608, 0.016641337424516678, 0.024812275543808937, -0.0025079648476094007, 0.020990615710616112, -0.0013493457809090614, -0.024327438324689865, 0.004488312639296055, -0.0063207135535776615, 0.03299747407436371, 0.02489783614873886, -0.006520352326333523, 0.027450362220406532, -0.012313448823988438, -0.001652369275689125, -0.005700406618416309, -0.00814954936504364, -0.0022655462380498648, 0.013176173903048038, -0.006099684629589319, -0.002097991993650794, -0.01250595785677433, -0.009910650551319122, -2.616641177155543e-05, -0.0034972475841641426, -0.005062274634838104, -0.007614802103489637, 0.01885162480175495, 0.022131409496068954, 0.015029964968562126, 0.010559476912021637, 0.0003868005587719381, 0.001092666992917657, -0.01433835830539465, 0.0015489847864955664, 0.011636101640760899, -0.004805596079677343, -0.007358123082667589, 0.014431048184633255, 0.011329513043165207, -0.007254738826304674, 0.001509769936092198, -0.003932175226509571, -0.008648646995425224, 0.008727076463401318, -0.010038989596068859, 0.01671263575553894, 0.007365253288298845, -0.013575452379882336, -0.0019981726072728634, 0.012356228195130825, -0.0069303251802921295, 0.009333123452961445, 0.02595306932926178, -0.009404422715306282, 0.009960560128092766, 0.00823510903865099, -0.017810650169849396, 0.011529152281582355, -0.0042601535096764565, -0.008705686777830124, 0.011208304204046726, -0.001155054196715355, 0.00743655301630497, 0.011621842160820961, -0.012498827651143074, 0.011978340335190296, -0.005661191884428263, -0.006876850500702858, 0.008841156028211117, -0.009789440780878067, 0.01605667918920517, 0.014901624992489815, 0.010252888314425945, -0.01813862845301628, 0.006645126733928919, -0.0030641022603958845, -0.02418483980000019, 0.017682312056422234, 0.008477527648210526, 0.0031211418099701405, 0.007429422810673714, -0.0005980257410556078, 0.007522112224251032, 0.003142531728371978, -0.005308258347213268, -0.012021119706332684, -0.0036041969433426857, -0.009889260865747929, -0.02210288867354393, 0.0003132728161290288, 0.023257942870259285, -0.02157527208328247, -0.002871593227609992, 0.016698377206921577, 0.016755416989326477, -0.01470198668539524, 0.013254603371024132, -0.01167888194322586, 0.018951445817947388, -0.0002337291371077299, 0.01955036260187626, -0.0010463222861289978, -0.006570261903107166, 0.0011033619521185756, -0.007793051190674305, -0.009440072812139988, 0.0026594765949994326, -0.009104964323341846, 0.01736859232187271, -0.013368682935833931, -0.0031229243613779545, -0.012912365607917309, 0.009618321433663368, -0.01813862845301628, -0.0038965255953371525, 0.01137942261993885, 0.0015311598544940352, 0.024384478107094765, 0.00966110173612833, 0.008591607213020325, -0.02073393575847149, 0.003964260220527649, 0.012677076272666454, 0.005507897585630417, -0.011329513043165207, 0.017810650169849396, -0.008056859485805035, 0.007728881202638149, -0.011828610673546791, -0.008769855834543705, 0.00886254571378231, -0.03533610329031944, 0.0015320511301979423, -0.007728881202638149, 0.01736859232187271, -0.01641317829489708, -0.010923105292022228, 0.0068269409239292145, 0.016370398923754692, -0.008555957116186619, 0.015785740688443184, -0.03727545216679573, 0.013760831207036972, -0.007290388457477093, -0.015728700906038284, -0.02263050712645054, -0.003203136380761862, -0.014160108752548695, 0.0034473377745598555, -0.008484657853841782, 0.0009482852765358984, -0.02127581275999546, -0.012726985849440098, 0.03750361129641533, -0.0046309116296470165, -0.005611281841993332, -0.009112094528973103, 0.00441701291128993, -0.0013315208489075303, 0.031371843069791794, 0.006138899363577366, -0.00308014452457428, -0.01226353831589222, -0.009283213876187801, -0.010794766247272491, -0.0004556492785923183, 0.005696841515600681, 0.00015641358913853765, 0.011956949718296528, -0.023372022435069084, 0.027165163308382034, -0.008670036680996418, -0.015158304013311863, 0.017753610387444496, -0.019949641078710556, 0.016726896166801453, 0.008135288953781128, 0.02886209636926651, -0.02300126478075981, 0.008292148821055889, 0.01531516294926405, -0.004659431520849466, -0.0036790615413337946, -0.00025868401280604303, 0.005604152102023363, -0.013710921630263329, 0.012898105196654797, 0.004377798177301884, -0.002329715760424733, 0.025924550369381905, 0.01197121012955904, 0.013204693794250488, -0.007992690429091454, 0.015329423360526562, -0.00103295361623168, 0.0067057316191494465, 0.0015008575282990932, 0.002868028124794364, 0.009532762691378593, 0.02347184345126152, 0.012349097989499569, -0.008220848627388477, 0.002101557096466422, -0.010730596259236336, -0.003996345214545727, 5.4282423661788926e-05, 0.023329243063926697, -0.028163358569145203, -0.0042601535096764565, 0.02737906388938427, -0.02715090475976467, 0.0056683216243982315, 0.01199973002076149, -0.019949641078710556, -0.022145669907331467, 0.009375902824103832, 0.009504242800176144, 0.019364982843399048, 0.002839508233591914, 0.0033813854679465294, 0.019037004560232162, -0.00206590723246336, -0.012341967783868313, -0.010980145074427128, 0.019350722432136536, -0.010837545618414879, -0.0032958260271698236, -0.008014080114662647, -0.01058086659759283, -0.00023506600700784475, 0.01973574049770832, 0.02234530821442604, -0.030915524810552597, -0.007012319751083851, -0.0020730372052639723, -0.009696751832962036, 0.007621931843459606, -0.01470198668539524, 0.014067419804632664, -0.0030587546061724424, 0.025981590151786804, -0.0055649373680353165, 0.003778881160542369, -0.02448429726064205, 0.0037824460305273533, -0.01117265410721302, -0.017439892515540123, 0.012669946998357773, 0.012370487675070763, 0.007365253288298845, 0.007030144799500704, 0.014830325730144978, -0.005315388552844524, -0.012484567239880562, 0.005105054471641779, -0.008199458941817284, 0.002532919868826866, 0.027949459850788116, 0.0018430957570672035, 0.007743141148239374, 0.01990685984492302, 0.012470307759940624, 0.015229604206979275, -0.014495217241346836, -0.00010221472621196881, 0.004499007482081652, -0.015785740688443184, 0.004830550868064165, 0.008391967974603176, 0.00016510323621332645, 0.027835380285978317, 0.00033176614670082927, 0.016199279576539993, 0.001480358885601163, -0.010816155932843685, -0.0013226083246991038, 0.028006499633193016, 0.0037681860849261284, -0.017083395272493362, -0.009076444432139397, 0.020776715129613876, 0.02073393575847149, 0.011864260770380497, 0.018651986494660378, 0.007736011408269405, -0.021204514428973198, 0.013375813141465187, -0.003700451459735632, 0.017340073361992836, 0.009582672268152237, 0.028305958956480026, 0.007261868566274643, 0.004367103334516287, -0.012876715511083603, -0.006495397537946701, -0.010046119801700115, 0.00806398969143629, -0.009753791615366936, 0.014381137676537037, 0.021675091236829758, 0.01618501916527748, 0.015001445077359676, -4.3615327740553766e-05, -0.027393322438001633, 0.005454422906041145, 0.006235153879970312, 0.0028163359966129065, -0.004976714961230755, -0.0014750113477930427, 0.0003094850108027458, 0.012570126913487911, 0.03017400950193405, 0.007119269575923681, 0.006245848722755909, 0.0017664486076682806, -0.007026579696685076, 0.0019571753218770027, -0.0054045128636062145, -0.023600181564688683, -0.006395577918738127, 0.004737861454486847, 0.001387669355608523, -0.00022882729535922408, 0.0036826266441494226, -0.0044063180685043335, 0.019479062408208847, 0.008727076463401318, 0.009254693984985352, -0.028519857674837112, -0.01671263575553894, 0.016612816601991653, 0.007885740138590336, 0.01262716669589281, -0.0004683495208155364, -0.01883736625313759, -0.011557672172784805, -0.006520352326333523, -0.015087004750967026, 0.010017599910497665, 0.02974621206521988, -0.006541742477566004, -0.004377798177301884, 0.017382852733135223, -0.002021344844251871, -0.002224548952654004, -0.015229604206979275, 0.0050408849492669106, -0.00737951323390007, -0.0031211418099701405, -0.018324008211493492, -0.002333280863240361, 0.017625272274017334, -0.014438177458941936, 0.009789440780878067, -0.013796481303870678, -0.01622779853641987, -0.005593456793576479, 0.003914350643754005, 0.021418413147330284, 0.0013555844780057669, -0.004638041835278273, 0.002270893659442663, -0.02814910002052784, 0.01575722172856331, -0.021774910390377045, -0.0004875113081652671, -0.0001105701521737501, 0.009646841324865818, -0.005343908444046974, -0.0032191788777709007, 0.006516787223517895, -0.02270180732011795, -0.01348276250064373, -0.00020220133592374623, -0.00011229694064240903, -0.003023104975000024, -0.00013079028576612473, -0.012748376466333866, 0.009226174093782902, 0.01665559597313404, -0.026052890345454216, -0.0011265343055129051, -0.0038822656497359276, -0.008776986040174961, -0.011101354844868183, 0.015201084315776825, 0.00886254571378231, -0.00544016296043992, -0.020434478297829628, 0.017996029928326607, 0.003055189736187458, 0.024099279195070267, -0.03533610329031944, -0.010502437129616737, -0.028120579198002815, 0.0017201039008796215, 0.024740975350141525, 0.001155945472419262, 0.018937185406684875, -0.009247563779354095, 0.020006678998470306, 0.0010276060784235597, -0.00817806925624609, -0.0026416517794132233, -0.004295803606510162, -0.0002724983205553144, -0.0008685187785886228, 0.012163719162344933, -0.00163276179227978, -0.028534118086099625, -0.011764440685510635, 0.004113989416509867, -0.02886209636926651, -0.0037895760033279657, -0.018509387969970703, -0.007514982484281063, -0.0011907040607184172, 0.008769855834543705, 0.003023104975000024, 0.02399946004152298, 0.006188808940351009, 0.001558788469992578, 0.02565361186861992, -0.012391878291964531, 0.0010106724221259356, -0.01194269023835659, 0.01676967553794384, -0.016099458560347557, -0.018409566953778267, 0.014188628643751144, -0.026566246524453163, -0.008456137962639332, -0.018324008211493492, -0.021618051454424858, -0.052704695612192154, -0.014901624992489815, 0.01878032647073269, 0.008634386584162712, -0.02234530821442604, 0.0036344993859529495, 0.007793051190674305, -0.006363492924720049, -0.030002890154719353, -0.016840975731611252, 0.018209928646683693, -0.0035061598755419254, 0.006170983891934156, -0.008292148821055889, -0.022430866956710815, 0.0047735110856592655, -0.01552906259894371, 0.00010015371663030237, -0.03619169816374779, -0.016313359141349792, 0.018651986494660378, -0.014502347446978092, -0.007329603191465139, -1.4663773981737904e-05, 0.013318773359060287, 0.00809250958263874, -0.022787366062402725, -0.010680686682462692, -0.002005302580073476, -0.035592783242464066, -0.013703791424632072, 0.004730731248855591, -0.025553792715072632, 0.020905055105686188, 0.008826895616948605, -0.022188449278473854, -0.00014727831876371056, -0.021375633776187897, -0.010944494977593422, -0.016627077013254166, -0.010416877456009388, 0.0055292872712016106, -0.0031514442525804043, 0.009055054746568203, -0.015714440494775772, 0.01825270801782608, -0.005094359628856182, 0.0016924752853810787, 0.009860740974545479, -0.0028769406490027905, -0.0008074684883467853, 0.0152866430580616, -0.011593322269618511, -0.01297653466463089, -0.015571841970086098, 0.0306303258985281, -0.022830145433545113, -0.012220758944749832, 0.013639621436595917, 0.0033689080737531185, 0.0002493259380571544, 0.0057859658263623714, 0.01652725785970688, 0.003946435172110796, -0.013653881847858429, 0.0012325926218181849, 0.018209928646683693, -0.010181589052081108, 0.004338583443313837, 0.01205676980316639, -0.006523917429149151, -0.008584477007389069, 0.0008275214931927621, 0.002670171670615673, -0.010973014868795872, 0.0027503836899995804, -0.011122744530439377, 0.02245938777923584, 0.007921390235424042, -0.0132759939879179, -0.028277438133955002, -0.01282680593430996, 0.005475812591612339, 0.02264476753771305, 0.0058109210804104805, 0.0004193310160189867, 0.017611011862754822, -0.016484476625919342, -0.009946300648152828, -0.005354603286832571, -0.004117554519325495, 0.014274188317358494, -0.01950758323073387, 0.006477572489529848, 0.0009892825037240982, 0.024783756583929062, -0.010623646900057793, 0.010595127008855343, 0.00832779798656702, 0.008028339594602585, 0.019821301102638245, -0.023799821734428406, 0.008028339594602585, -0.0009500677697360516, 0.012570126913487911, 0.009682491421699524, -0.005843005608767271, -0.0023831906728446484, 0.0009670014260336757, 0.0143668781965971, -0.017981769517064095, -0.0025026174262166023, -0.005461552646011114, -0.017881950363516808, -0.035820942372083664, 0.0029357627499848604, 0.0007326038321480155, -0.004356408026069403, 0.029175814241170883, -0.0027218637987971306, -0.004866200499236584, -0.02405649982392788, -0.005375992972403765, -0.009554152376949787, 0.00031995715107768774, 0.029047474265098572, -0.0008649537921883166, 0.015087004750967026, 0.007743141148239374, 0.01487310603260994, 0.00336356065236032, -0.023029785603284836, 0.0004982062382623553, 0.02340054325759411, 0.002775338711217046, 0.01855216734111309, -0.0075791520066559315, -0.01300505455583334, -0.005383123178035021, 0.012883845716714859, 0.009846480563282967, 0.004399187862873077, -0.0028502033092081547, -0.011008664965629578, 0.01428131852298975, -0.017853431403636932, 0.028077799826860428, 0.016270577907562256, 0.010552347637712955, 0.006652256939560175, 0.011928430758416653, -0.01748267188668251, -0.001604242017492652, 0.012484567239880562, -0.008320668712258339, -0.003115794388577342, -0.004456227645277977, -0.006466877646744251, 0.00621019909158349, -0.021660830825567245, -0.007276128511875868, 0.01057373732328415, -0.008755596354603767, -0.029717691242694855, -0.005853700917214155, 0.009703881107270718, -0.008748466148972511, -0.004424142651259899, -0.0033992105163633823, -0.0016434567514806986, 0.009618321433663368, 0.0036059794947504997, 0.019393503665924072, -0.012933755293488503, -0.012805416248738766, -0.0062957582995295525, 0.0014313403517007828, -0.006245848722755909, 0.010823286138474941, 0.014466697350144386, -0.022559206932783127, 0.0055292872712016106, 0.012434657663106918, -0.00977518130093813, 0.002916155382990837, -0.02678014524281025, 0.02334350347518921, -0.01202824991196394, -0.0003990551922470331, -0.0038002710789442062, 0.014480957761406898, 0.0023796255700290203, 0.014103068970143795, -0.008249368518590927, 0.019764261320233345, -0.004188854247331619, -0.00212472933344543, 0.0208622757345438, -0.010858935303986073, 0.008998014964163303, 0.025696391239762306, 0.017625272274017334, -0.012805416248738766, 0.00043336814269423485, -0.006891110446304083, -0.004270848818123341, 0.018709026277065277, -0.006520352326333523, 0.011365163139998913, 0.003071232233196497, -0.007386642973870039, -0.02014927938580513, 0.024284658953547478, 0.010866065509617329, 0.014744766056537628, 0.009903520345687866, 0.0007887522806413472, -0.014381137676537037, 0.010202978737652302, -0.015671661123633385, 0.017268773168325424, 0.010538087226450443, 0.003331475891172886, -0.005354603286832571, 0.0012397225946187973, -0.0027218637987971306, -0.006869720760732889, 0.02037743851542473, 0.021888989955186844, 0.006370623130351305, -0.0005949063925072551, 0.03177111968398094, -0.030145488679409027, -0.0018101197201758623, -0.009169134311378002, 0.020063718780875206, 0.004441967699676752, -0.009860740974545479, -0.014630686491727829, 0.009325993247330189, 0.00206590723246336, -0.009939170442521572, -0.01718321442604065, -0.007372383028268814, -0.0011907040607184172, -0.030373647809028625, -0.01093736570328474, -0.007226218935102224, 0.0027682087384164333, -0.010702076368033886, -0.010053250007331371, -0.004662996623665094, -0.003301173448562622, 0.003452685195952654, -0.00367549667134881, 0.022559206932783127, -0.011771570891141891, -0.023614441975951195, -0.03182816132903099, -0.007871480658650398, 0.030687365680933, 0.008256498724222183, 0.010331318713724613, -0.013169043697416782, 0.003176399040967226, -0.006673646625131369, -0.013810740783810616, -0.0029500226955860853, -0.017553972080349922, 0.016455957666039467, -0.010623646900057793, -0.003839485812932253, 0.010388357564806938, -0.02198880910873413, -0.016641337424516678, -0.015514802187681198, 0.0006100575556047261, -0.003131836885586381, 0.010830415412783623, 0.04754260182380676, 0.009532762691378593, -0.021261554211378098, -0.008591607213020325, -0.015956860035657883, 0.013290253467857838, 0.01262716669589281, -0.006270803511142731, -0.008855415508151054, 0.001789621077477932, -0.005725361406803131, 0.007058664690703154, 0.012327708303928375, -0.0009741313988342881, 0.020306138321757317, 0.0033582132309675217, -0.009340253658592701, -0.019450543448328972, -0.016156498342752457, -0.00308014452457428, 0.005482942331582308, -0.009297473356127739, -0.0002769545535556972, -0.012306318618357182, -4.65815037387074e-06, -0.008983755484223366, 0.006834070663899183, -0.005048014689236879, -0.0034312952775508165, -0.001912612933665514, 0.00971814151853323, -0.00222276640124619, -0.006088989321142435, 0.018209928646683693, 0.017639530822634697, 0.030259568244218826, -0.0206911563873291, -0.0014999662525951862, -0.02732202410697937, 0.013981860131025314, -0.006388448178768158, -0.010202978737652302, 0.0141957588493824, 0.005454422906041145, -0.004595261998474598, 0.009860740974545479, -0.01652725785970688, -0.005771706346422434, 0.004941065330058336, 0.007921390235424042, -0.01242039818316698, -0.004488312639296055, -0.022245489060878754, -0.0014402527594938874, 0.0021924639586359262, -0.015144044533371925, 0.02773556113243103, 0.006926760543137789, -0.00112564314622432, 0.003067667130380869, 0.014381137676537037, 0.012719856575131416, -0.01552906259894371, -0.012833936139941216, -0.001295870984904468, -0.013974729925394058, -0.004709341563284397, -0.010395487770438194, -0.016099458560347557, 0.02039169706404209, 0.007372383028268814, -0.005311823450028896, -0.02820613794028759, -0.004335018340498209, -0.00017925175779964775, 0.016812456771731377, 0.002575699705630541, 0.021960290148854256, 0.015971120446920395, 0.025382673367857933, -0.003957130014896393, 0.012541607022285461, 0.007892870344221592, -0.008841156028211117, -0.007871480658650398, 0.004253023769706488, -0.0016773240640759468, -0.004784205928444862, 0.0011773353908210993, -0.02974621206521988, 0.011044315062463284, 0.004973150324076414, 0.00154007226228714, -0.01359684206545353, -0.016912275925278664, -0.011393683031201363, -0.02399946004152298, 0.024755235761404037, -0.00181814085226506, 0.010060379281640053, -0.003472292562946677, -0.007821571081876755, -0.0020462998654693365, 0.025553792715072632, -0.013760831207036972, 0.0077217514626681805, 0.013090614229440689, 0.0005173680256120861, 0.006987364962697029, 0.011429333128035069, -0.02909025363624096, -0.02121877297759056, 0.003005279926583171, 0.0020320399198681116, 0.006534612271934748, -0.004456227645277977, -0.0008952561183832586, -0.002219201298430562, 0.011415072716772556, 0.021404152736067772, 0.0023421933874487877, -0.003288696054369211, -0.0187375470995903, -0.011700271628797054, 0.004980280064046383, -0.0070764897391200066, -0.010809025727212429, -0.0009028317290358245, 0.017582492902874947, 8.015639468794689e-05, -0.014459568075835705, 0.01460216660052538, 0.010851806029677391, 0.0029981499537825584, -0.029261372983455658, -0.007657581474632025, 0.01806733012199402, 0.014495217241346836, -0.010338447988033295, 0.00918339379131794, 0.004171029198914766, -0.013012184761464596, -0.00558632705360651, 0.0027272114530205727, 0.0037254062481224537, -0.013076354749500751, 0.015514802187681198, 0.012106679379940033, -0.0037075814325362444, -0.015429242514073849, 0.004948195070028305, -0.007236913777887821, -0.0076861013658344746, 0.013910559937357903, 0.009504242800176144, 0.0006497179856523871, 0.009076444432139397, -0.0010721683502197266, -0.011208304204046726, -0.003101534442976117, -0.01647021807730198, 0.003917915280908346, -0.0016060244524851441, -0.0014990749768912792, 0.013176173903048038, -0.00035427010152488947, 0.012306318618357182, 0.0003395645471755415, -0.014160108752548695, -0.014331228099763393, -0.003561417106539011, 0.013939079828560352, -0.003992780111730099, 0.007743141148239374, 0.006905370391905308, -0.004185289144515991, -0.011586192063987255, 0.011657491326332092, 0.015443502925336361, 0.0019090479472652078, -0.01120117399841547, -0.003623804310336709, 0.02762148156762123, 0.003718276508152485, -0.013810740783810616, 0.010702076368033886, 0.0034455552231520414, -0.014088809490203857, -0.009782311506569386, -0.007821571081876755, 0.010844675824046135, -0.005265478510409594, 0.013382943347096443, 0.007083619479089975, 0.01748267188668251, 0.0061959391459822655, 0.033453792333602905, 0.009226174093782902, 0.01271272636950016, 0.0027058215346187353, 0.017824910581111908, 0.0003433523525018245, 0.001359149464406073, 0.012776896357536316, 0.0015703745884820819, -0.015300903469324112, -0.015685921534895897, 0.0030961870215833187, 0.00011597332922974601, 0.002007084898650646, -0.009525632485747337, -0.010267148725688457, -0.011928430758416653, 0.007907130755484104, 0.0008760943892411888, 0.00357745960354805, -0.024569857865571976, 0.006113944575190544, -0.009333123452961445, 0.020662637427449226, 0.0049161105416715145, -0.01853790692985058, 0.008021210320293903, 0.0060533396899700165, 0.022017329931259155, 0.03622021898627281, -0.018295489251613617, -0.007486462593078613, 0.008320668712258339, -0.007728881202638149, -0.019635921344161034, -0.01217797864228487, -0.011586192063987255, 0.0029108079615980387, 0.0032494813203811646, -0.0007767204660922289, 0.006167419254779816, 0.003376038046553731, 0.0035970669705420732, -0.03496534377336502, -0.0017076265066862106, -0.012762635946273804, -0.014259928837418556, -0.02447003684937954, 0.016798196360468864, 0.00243666535243392, -0.01926516368985176, -0.01558610238134861, 0.01279828604310751, 0.021347112953662872, 0.02388538047671318, -0.004224503878504038, -0.025211554020643234, 0.018823105841875076, -0.012912365607917309, 0.01229205820709467, -0.01111561432480812, 0.0153436828404665, 0.0073153432458639145, -0.011022924445569515, -0.01487310603260994, 0.008227978833019733, 0.01072346605360508, -0.015628881752490997, -0.035478703677654266, 0.008769855834543705, 0.014473827555775642, -0.028576897457242012, 0.002757513662800193, 0.0007575587369501591, 0.0015498759457841516, 0.000725473859347403, -0.025154514238238335, -0.017611011862754822, -0.0104311378672719, 0.012434657663106918, -0.006573827005922794, 0.00031438685255125165, 0.030858485028147697, 7.219088729470968e-05, 0.013946210034191608, 0.026937006041407585, 0.0013243908761069179, -0.006744946353137493, 0.014402528293430805, -0.0020302573684602976, -0.003224526299163699, -0.00404625479131937, -0.00521556893363595, 0.012456047348678112, 0.005500767379999161, 0.006905370391905308, -0.005258348770439625, -0.002372495597228408, -0.01612797938287258, 0.01407455001026392, -0.008998014964163303, 0.01484458614140749, -0.0011399030918255448, -0.011058574542403221, -0.023970939218997955, -0.006869720760732889, 0.00453465711325407, 0.004966020118445158, -0.01371805090457201, -0.005782401189208031, -0.013083484955132008, -0.012719856575131416, -0.001958957640454173, -0.019008485600352287, 0.02489783614873886, -0.009147744625806808, 0.00367549667134881, 0.00228158850222826, 0.05267617478966713, -0.02572491206228733, -0.0035382448695600033, -0.00576101103797555, 0.021361373364925385, 0.009682491421699524, -0.015714440494775772, 4.063522646902129e-05, 0.017810650169849396, 0.00883402582257986, -0.0015677008777856827, 0.004099729470908642, 0.004762816242873669, -0.008491787128150463, 0.009390163235366344, -0.0065595670603215694, -0.025439713150262833, 0.01765379123389721, -0.008684296160936356, -0.019650181755423546, 0.009732400998473167, -0.017525453120470047, -0.008662906475365162, 0.006498962640762329, -0.010602257214486599, 0.004841245710849762, 0.01878032647073269, -0.007479332387447357, -0.000439384049968794, -0.02204584889113903, 0.007636191789060831, 0.002916155382990837, 0.047086283564567566, 0.004605956841260195, 0.028705235570669174, -0.012605777010321617, -0.004862635862082243, -0.023557402193546295, -0.004851940553635359, 0.003267306135967374, -0.018523646518588066, -0.008128159679472446, 0.009219043888151646, -0.003917915280908346, 0.021290073171257973, 0.01078050583600998, -0.0018769630696624517, 0.0027842510025948286, -0.002780686132609844, -0.0054223379120230675, -0.006923195440322161, 0.0337960310280323, -0.006092554423958063, 0.016270577907562256, -0.009383033029735088, -0.01416723895817995, 0.019008485600352287, 0.011964079923927784, 0.010523827746510506, -0.017611011862754822, 0.007400902919471264, 0.007728881202638149, 0.013782220892608166, -0.001309239654801786, -0.021974550560116768, 0.020477257668972015, 0.022388087585568428, 0.006388448178768158, 0.008584477007389069, 0.005996299907565117, 0.003224526299163699, -0.002547179814428091, -0.03630577772855759, -0.010944494977593422, 0.003007062477990985, 0.004826985765248537, -0.02181769162416458, -0.0028876354917883873, 0.004655866883695126, 0.007179873995482922, -0.006965975277125835, 0.006595217157155275, 0.005365298129618168, -4.5314263843465596e-05, -0.02726498432457447, 0.0054223379120230675, 0.0059107402339577675, 0.004798465874046087, -0.012641427107155323, -0.008541697636246681, -0.013026445172727108, -0.008006949909031391, -0.005982039961963892, -0.0006448161439038813, 0.005386687815189362, 0.020306138321757317, -0.007286823354661465, -0.002734341425821185, -0.00812102947384119, 0.016028160229325294, -0.002390320645645261, -0.009482852183282375, 0.025625091046094894, -0.001664846669882536, -0.015058484859764576, -0.0210904348641634, -0.014095939695835114, -0.03225595876574516, -0.027478883042931557, -0.01371805090457201, -0.016256319358944893, 0.0027129515074193478, -0.0032298739533871412, 0.0016372180543839931, -0.011308123357594013, -0.015115524642169476, -0.009996210224926472, -0.0009518502629362047, -0.001495509990490973, 0.009404422715306282, 0.019350722432136536, 0.003269088687375188, -0.030801445245742798, -0.019336463883519173, 0.0041425093077123165, 0.02328646369278431, 0.013176173903048038, -0.003188876435160637, -0.007550632115453482, -0.007907130755484104, 0.014630686491727829, 0.006203068885952234, 0.013710921630263329, 0.016912275925278664, -0.016684116795659065, 0.0015792871126905084, 0.006848330609500408, -0.02412780001759529, -0.01066642627120018, -0.016341878101229668, 0.002158596646040678, 0.0008578238193877041, -0.00886254571378231, 0.01701209507882595, -0.01484458614140749, 0.019778521731495857, 0.014003249816596508, 0.01393195055425167, 0.0231010839343071, 0.008049729280173779, 0.01913682371377945, 0.005775270983576775, -0.01063790637999773, 0.008227978833019733, 0.024498557671904564, -0.009447203017771244, -0.0033510832581669092, 0.016798196360468864, 0.017810650169849396, 0.011400813236832619, -0.010131679475307465, 0.024099279195070267, 0.0015507672214880586, -0.03525054454803467, 0.004288673400878906, 0.018580686300992966, -0.0028626807034015656, -0.003190658986568451, 0.008513177745044231, -0.0007419619360007346, 0.009639712050557137, -0.0006648691487498581, -0.019364982843399048, 0.03579242154955864, 0.008292148821055889, -0.002249503741040826, 0.0014393616002053022, -0.0016256318194791675, -0.03254115581512451, 0.01034557819366455, 0.01979278028011322, -0.00041376074659638107, -0.014773285947740078, -0.025924550369381905, -0.01226353831589222, 0.014559387229382992, -0.011208304204046726, -0.0009059510775841773, -0.013582581654191017, 0.0060355146415531635, -0.009219043888151646, 0.010217239148914814, 0.003390297992154956, -0.009247563779354095, 0.014930144883692265, 0.007450812496244907, 0.01247743796557188, -0.014210019260644913, -0.004420578014105558, 0.008698556572198868, -0.020591337233781815, -0.006491832435131073, -0.01167888194322586, 0.003967825323343277, -0.007162048947066069, 0.005137139465659857, -0.007514982484281063, 0.02501191571354866, 0.002347540808841586, 0.01398899033665657, -0.005522157531231642, -0.002761078765615821, 0.0035382448695600033, 0.012049639597535133, 0.028990434482693672, 0.001773578580468893, -0.0002462065895088017, 0.013197563588619232, -0.009112094528973103, 0.0004977606586180627, 0.007821571081876755, 0.0023992329370230436, 0.006627301685512066, 0.016912275925278664, -0.012634296901524067, -0.0018751806346699595, -0.019094044342637062, 0.021233033388853073, -0.01885162480175495, -0.01778213120996952, -0.03656245768070221, -0.00272008148021996, 0.006766336038708687, 0.016327617689967155, -0.015101264230906963, 0.0046309116296470165], "acf6b4c2-7e01-429f-b754-672e90a9d718": [-0.0028745345771312714, 0.014671459794044495, -0.0028779690619558096, 0.011285210028290749, -0.014149442315101624, -0.021814867854118347, 0.04786083102226257, 0.03626653179526329, -0.02487829141318798, 0.04810810089111328, -0.0042448327876627445, 0.005000385455787182, 0.008414110168814659, 0.00356483506038785, 0.029727565124630928, 0.04698164016008377, 0.007555527146905661, -0.009107844904065132, 0.004340993706136942, -0.03448067978024483, 0.03338169306516647, -0.013373282738029957, -0.061268456280231476, 0.015564385801553726, 0.007699768990278244, 0.01330459676682949, -0.017844781279563904, 0.021169213578104973, -0.014808833599090576, -0.017844781279563904, 0.028092823922634125, 0.013634292408823967, 0.008345423266291618, -0.010041982866823673, -0.0046603865921497345, -0.001746357069350779, 0.010241174139082432, -0.03915136680006981, -0.04612992703914642, -0.005955129396170378, 0.020413661375641823, 0.018435485661029816, 0.02270779386162758, -0.02970009110867977, -0.036761075258255005, 0.018490435555577278, -0.008015727624297142, 0.010344203561544418, -0.002955241361632943, -0.01688316836953163, 0.01006258837878704, 0.006896135862916708, 0.030002310872077942, -0.010509051382541656, 0.027557067573070526, -0.029809989035129547, 0.010776929557323456, 0.021677494049072266, -0.014410451054573059, -0.06720297783613205, 0.00919713731855154, -0.015179741196334362, 0.02412273734807968, -0.02013891376554966, 0.03483784943819046, 0.024631017819046974, 0.016182566061615944, -0.0002444814017508179, -0.021677494049072266, 0.025084350258111954, 0.04456387460231781, 0.004876749590039253, -0.023875465616583824, 0.03884914889931679, 0.021073052659630775, 0.0057696751318871975, 0.014534086920320988, 0.05868583917617798, 0.019039928913116455, -0.022117089480161667, 0.000247486459556967, -0.02714494802057743, 0.06802722066640854, -0.007411285303533077, 0.07572011649608612, 0.03670612350106239, -0.0202076006680727, -0.046954166144132614, -0.007960778661072254, -0.022226987406611443, 0.017899731174111366, 0.005999775603413582, -0.02277648076415062, 0.002529384568333626, -0.01025491114705801, -0.0021086789201945066, 0.048849917948246, -0.00309948343783617, -0.00508967787027359, -0.012281166389584541, 0.022913852706551552, 0.021443959325551987, 0.004529882222414017, 0.015784183517098427, 0.014424188062548637, -0.022529209032654762, 0.007033509202301502, 0.008366028778254986, -0.040222879499197006, -0.015825394541025162, -4.537072527455166e-05, 0.0008903502020984888, 0.01726781390607357, 0.01877892017364502, -0.05255899578332901, -0.011539350263774395, -0.05082809180021286, -0.00806380808353424, -0.008812491782009602, -0.03794248402118683, 0.03637642785906792, -0.017473874613642693, -0.014589035883545876, -0.004804628435522318, -0.03747541457414627, 0.026952626183629036, 0.008997946046292782, 0.039563488215208054, 0.009451277554035187, 0.00822178740054369, -0.0006220430950634181, -0.01112036220729351, 0.017102966085076332, 0.013888432644307613, 0.0518721304833889, 0.01831185072660446, 0.005199576262384653, 0.051322635263204575, -0.004498973023146391, 0.01127834152430296, -0.07626961171627045, -0.007425022777169943, -0.015220953151583672, 0.02163628302514553, -0.004100590478628874, -0.007411285303533077, -0.003942611627280712, 0.0289582759141922, -0.013414494693279266, 0.018435485661029816, -0.09280934929847717, -0.03835460543632507, -0.032529979944229126, 0.001603832351975143, 0.025359096005558968, -0.023889202624559402, 0.000156154710566625, 0.011072281748056412, 0.0345631018280983, 0.04530568793416023, 0.018792657181620598, -0.04231095314025879, 0.002596353879198432, 0.04895981773734093, 0.0393436923623085, 0.011910258792340755, 0.0544547438621521, 0.0012500963639467955, -0.04187135770916939, 0.018600333482027054, 0.0033776641357690096, -0.027158686891198158, 0.018284376710653305, 0.018504172563552856, -0.054262422025203705, -0.00822178740054369, 0.02299627661705017, 0.04901476576924324, 0.018421748653054237, -0.006497753318399191, -0.012899345718324184, 0.01243914570659399, 0.02608717419207096, 0.006837752182036638, -0.0004893920850008726, 0.03590936213731766, 0.026952626183629036, -0.004481801297515631, 0.005687251221388578, 0.008860573172569275, -0.004917961545288563, -0.006542399525642395, -0.010124406777322292, -0.005567049607634544, -0.001552317407913506, -0.014863782562315464, -0.0021807998418807983, -0.005360989831387997, -0.00833855476230383, 0.01627872698009014, -0.002058881102129817, -0.04472872242331505, -0.011717936024069786, 0.028326358646154404, -0.01523469015955925, 0.03384876251220703, -0.032832201570272446, -0.02939786948263645, 0.009925215505063534, -0.04222852736711502, 0.03621158003807068, -0.035634614527225494, -0.008194312453269958, -0.01346257608383894, 0.012713891454041004, 0.013682372868061066, -0.013476313091814518, 0.03475542366504669, -0.017405187711119652, -0.024768391624093056, -0.007782192900776863, 0.02714494802057743, -0.0010062588844448328, -0.04409680515527725, -0.04500346630811691, -0.040305301547050476, -0.03527744486927986, 0.02322981134057045, -0.003746854607015848, -0.002685646526515484, 0.0010491879656910896, -0.018037104979157448, -0.0010989857837557793, -0.012693285942077637, -0.01342823263257742, 0.030414432287216187, 0.05549878254532814, -0.020770831033587456, -0.009938952513039112, 0.026513032615184784, 0.006497753318399191, -0.005721594672650099, -0.006202401127666235, -0.0008512847125530243, -0.007067852187901735, 0.04865759611129761, -0.013215304352343082, 0.040689948946237564, -0.008874310180544853, -0.0020846386905759573, -0.004742810502648354, 0.022886378690600395, 0.005302606150507927, 0.007644820027053356, -0.03192553669214249, 0.04563538357615471, 0.03928874060511589, -0.020399924367666245, -0.009774104692041874, -0.03173321485519409, 0.007617345079779625, 0.039398640394210815, -0.0037193798925727606, 0.028381308540701866, 0.03522249311208725, -0.003089180449023843, 0.035936836153268814, -0.006834317930042744, 0.0021842343267053366, 0.011800359934568405, 0.033656440675258636, 0.02437000907957554, 0.01033733505755663, 0.005625433288514614, 0.020496085286140442, -0.006573308724910021, 0.015715496614575386, 0.01597650535404682, 0.027859289199113846, 0.009403197094798088, -0.03288714960217476, -0.009217742830514908, 0.011450057849287987, 0.009018552489578724, 0.03552471473813057, -0.022639106959104538, -0.02812029793858528, -0.01936962455511093, -0.05929028242826462, -0.000619896687567234, 0.009884003549814224, -0.01037167850881815, 0.0051583643071353436, 0.007940172217786312, 0.0076585570350289345, 0.026677880436182022, -0.006810277700424194, 0.012123187072575092, 0.006652298383414745, 0.026485556736588478, 0.014204391278326511, -0.009767236188054085, -0.003320997580885887, -0.003963217604905367, 0.0247409176081419, -0.01417691633105278, 0.0479707308113575, 0.023339711129665375, -0.00998703297227621, 0.032612401992082596, 0.038656823337078094, -0.05258646979928017, -0.008242392912507057, -0.005312909372150898, -0.008833098225295544, 0.005426242481917143, 0.009437540546059608, -0.020413661375641823, -0.01719912700355053, -0.04253074899315834, 0.012452882714569569, 0.00798825267702341, -0.057202208787202835, 0.027282321825623512, 0.050113752484321594, -0.016855694353580475, 0.04871254414319992, -0.008551483042538166, -0.02353203296661377, -0.0044646295718848705, -0.03813480585813522, -0.04132186621427536, -0.01236359030008316, 0.015701759606599808, -0.023793041706085205, -0.01315348595380783, -0.037667736411094666, -0.037667736411094666, 0.033821288496255875, -0.025235461071133614, -0.017817307263612747, -0.009794711135327816, 0.04066247493028641, -0.006903004366904497, 0.015330852009356022, 0.006951084826141596, 0.023504558950662613, 0.011656117625534534, -0.027048787102103233, 0.0017583773005753756, 0.0007800223538652062, -0.008166838437318802, 0.003753723343834281, -0.0037262486293911934, 0.005687251221388578, -0.012768841348588467, -0.030963923782110214, 0.0007031791610643268, 0.004365033935755491, 0.0002695949515327811, 0.001153076533228159, -0.01976800709962845, -0.004979779478162527, 0.019891642034053802, -0.010433495976030827, -0.009032289497554302, -0.0008079262915998697, -0.019726794213056564, -0.007699768990278244, -0.0027199897449463606, -0.0059379576705396175, 0.01210258062928915, -0.013929644599556923, -0.010921170935034752, -0.016938118264079094, -0.02942534349858761, 0.031485941261053085, 0.009671075269579887, 0.015289640054106712, 0.016003981232643127, 0.008812491782009602, -0.03904147073626518, -0.02066093310713768, 0.042640648782253265, 0.015935294330120087, -0.009890872053802013, 0.031788162887096405, -0.02044113539159298, -0.03415098413825035, -0.007184619549661875, -0.004914526827633381, 0.00334503804333508, -0.022584157064557076, -0.01549569983035326, 0.01802336610853672, -0.026677880436182022, 0.0024349403101950884, -0.0068549239076673985, 0.0079951211810112, -0.02027628757059574, -0.0072052255272865295, -0.04096469655632973, -0.00508967787027359, -0.01240480225533247, 0.007335729897022247, -0.03959096223115921, -0.0009186834213323891, 0.0020468609873205423, 0.00916966237127781, -0.008537746034562588, -0.02761201746761799, 0.009437540546059608, -0.000992521527223289, 0.03764026239514351, 0.026719091460108757, 0.006178360898047686, -0.025991013273596764, 0.05978482589125633, -0.021100526675581932, 0.009574913419783115, 0.03590936213731766, 0.014424188062548637, 0.013393889181315899, 0.008317948319017887, 0.005330081097781658, 0.023422135040163994, -0.0018184779910370708, -0.009485621005296707, -0.0015377214876934886, -0.001715448102913797, 0.007376941852271557, 0.05220182612538338, -0.009808448143303394, 0.024823341518640518, 0.0005104274023324251, -0.007837141864001751, -0.007679163012653589, -0.03755784034729004, 0.03384876251220703, -0.000675704563036561, -0.01923225075006485, 0.01877892017364502, -0.011608037166297436, 0.02413647435605526, -0.052146874368190765, -0.02148517221212387, -0.03266735374927521, 0.015097317285835743, 0.03310694545507431, -0.036074209958314896, 0.007191488053649664, -0.001175399636849761, -0.03486532345414162, -0.004612306132912636, 0.01421812828630209, -0.011717936024069786, -0.020248813554644585, 0.02766696736216545, 0.023655669763684273, -0.055471308529376984, -0.016182566061615944, -0.016155090183019638, 0.038794197142124176, 0.002333627548068762, 0.02353203296661377, 0.009334510192275047, -0.005982603877782822, 0.006916741840541363, 0.008908653631806374, 0.026348184794187546, 0.0003524481726344675, -0.004237963818013668, 0.02722737193107605, 0.03656875342130661, 0.03700834512710571, -0.023710617795586586, -0.017515085637569427, 0.011360765434801579, -0.010055719874799252, -0.02344960905611515, 0.008317948319017887, -0.019506998360157013, 0.009210874326527119, -0.022570420056581497, 0.0036747336853295565, 0.018078316003084183, -0.01884760521352291, -0.016402361914515495, 0.04033277928829193, 0.004313519224524498, -0.007143407594412565, -0.00998703297227621, 0.004183014389127493, -0.011065413244068623, 0.0013909038389101624, -0.03453562781214714, -0.008125626482069492, -0.004838971886783838, -0.0052442229352891445, -0.017968418076634407, -0.004440589342266321, -0.012727629393339157, 0.00818744394928217, -0.0039563486352562904, -0.03505764529109001, 0.05492181330919266, -0.02104557678103447, 0.046954166144132614, -0.015207216143608093, -0.006277956068515778, -0.019273463636636734, 0.03610168397426605, -0.030716652050614357, 0.01961689628660679, 0.006446238607168198, 0.026952626183629036, -0.014067018404603004, -0.008627038449048996, 0.025743741542100906, -0.015413275919854641, -0.01232924684882164, -0.023188600316643715, -0.0419263057410717, -0.008826229721307755, -0.01142258383333683, -0.013716716319322586, -0.00663856090977788, -0.03937116637825966, 0.016086405143141747, -0.02180113084614277, 0.0017102966085076332, 0.021814867854118347, -0.017460135743021965, -0.0024658492766320705, 0.025730004534125328, -0.02450738288462162, 0.017171652987599373, 0.025070613250136375, 0.0285186804831028, -0.01010380033403635, -0.07379689812660217, 0.03780511021614075, -0.01523469015955925, 0.00516523327678442, -0.007002600003033876, 0.012301771901547909, -0.0006143158534541726, 0.0043169534765183926, -0.014630247838795185, 0.015578123740851879, -0.029233021661639214, 0.031485941261053085, 0.000970198365394026, -0.008681987412273884, -0.010357940569519997, -0.043849531561136246, 0.0026083739940077066, -0.01802336610853672, -0.024974452331662178, -0.016113879159092903, -0.008578957989811897, 0.0247409176081419, -0.00916279386729002, -0.011106625199317932, 0.021595070138573647, -0.0028762519359588623, -0.03634895384311676, 0.026664141565561295, -0.01443792600184679, 0.035854410380125046, 0.02942534349858761, -0.005467454437166452, 0.028298884630203247, 0.027653230354189873, 0.009540569968521595, 0.06319168210029602, -0.0079951211810112, -0.001529994304291904, -0.038876622915267944, -0.015619335696101189, 0.019355887547135353, 0.0033261491917073727, 0.00031681699329055846, 0.02029002457857132, -0.007610476575791836, 0.005797150079160929, -0.007583002094179392, -0.013180960901081562, -0.007528052665293217, -0.017240339890122414, -0.001933528110384941, 0.024782128632068634, -0.03143099322915077, 0.005862402264028788, -0.022749004885554314, 0.026210810989141464, 0.026265760883688927, 0.015784183517098427, 0.02942534349858761, 0.025991013273596764, 0.01651226170361042, -0.0004958314821124077, 0.0354422926902771, -0.0015102468896657228, -0.029919886961579323, 0.017405187711119652, 0.020331237465143204, -0.0003567410749383271, 0.004138368181884289, 0.004162408411502838, 0.002560293534770608, -0.013544999994337559, 0.04461882263422012, -0.021443959325551987, -0.005570484325289726, 0.0047702849842607975, -0.003216250566765666, 0.031128771603107452, 0.001309338491410017, 0.019287200644612312, 0.017020542174577713, -0.009478752501308918, 0.03379381448030472, -0.004375337157398462, 0.019177302718162537, 0.01824316382408142, -0.00844845362007618, -0.006350077223032713, 0.0003206806140951812, -0.009300166741013527, -0.012377327308058739, -0.020029015839099884, 0.0021670626010745764, 0.008537746034562588, -0.013606817461550236, -0.005498363170772791, 0.013922776095569134, 0.016237514093518257, -0.002932918258011341, -0.007177751045674086, 0.012603993527591228, 0.0034978657495230436, -0.005525837652385235, 0.06055411696434021, -0.007033509202301502, 0.0013771665981039405, -0.0037502888590097427, 0.0040044295601546764, 0.03448067978024483, -0.00046964469947852194, -0.018256900832057, -0.01666337251663208, 0.00040804140735417604, 0.01780357025563717, -0.005893311463296413, -0.029974836856126785, -0.026787778362631798, -0.01666337251663208, -0.010804403573274612, 0.02210335060954094, 0.0505533441901207, -0.010948645882308483, 0.014904994517564774, 0.010316728614270687, 0.02270779386162758, -0.001552317407913506, 0.026650404557585716, 0.0013960553333163261, 0.02714494802057743, 0.018806394189596176, 0.010234304703772068, -0.026142124086618423, 0.01976800709962845, 0.0012887325137853622, -0.014067018404603004, -0.005350687075406313, -0.011972076259553432, 0.005240788217633963, 0.011395108886063099, -0.023243548348546028, -0.004330690950155258, -0.03975581005215645, -0.022803954780101776, 0.016416100785136223, -0.020454872399568558, -0.007356335874646902, -0.010893696919083595, -0.014904994517564774, -0.002005649032071233, -0.011608037166297436, -0.016759533435106277, -0.010460970923304558, 0.007926435209810734, 0.02479586750268936, 0.01115470565855503, 0.005570484325289726, 0.03467300161719322, -0.03810733184218407, -0.01605892926454544, -0.022803954780101776, -0.03750288859009743, -0.034508153796195984, -0.005718160420656204, -0.022941328585147858, 0.006810277700424194, 0.014863782562315464, -0.018572859466075897, -0.01003511343151331, -0.00035609715268947184, 0.006459975615143776, 0.023271024227142334, 0.002113830531015992, -0.003229987807571888, 0.015797920525074005, 0.006463410332798958, 0.02072962000966072, -0.018641546368598938, 0.029672615230083466, 0.030359482392668724, 0.039700862020254135, -2.3114655050449073e-05, 0.03621158003807068, -0.007006034255027771, 0.0008036333601921797, -0.04025035351514816, 0.0017669630469754338, -0.014877519570291042, -0.01982295513153076, 0.017295287922024727, -0.0025207987055182457, 0.03862934932112694, -0.00019919117039535195, 0.009801579639315605, 0.018504172563552856, 0.013702979311347008, -0.04516831412911415, -0.026224547997117043, 0.01960315927863121, 0.014094492420554161, -0.007665426004678011, 0.014410451054573059, -0.02744716964662075, -0.0020554468501359224, -0.03214533254504204, -0.009485621005296707, -0.01733650080859661, 0.04409680515527725, 0.01667710952460766, -0.02489202842116356, -0.03832712769508362, 0.03549724072217941, -0.04503094404935837, 0.028985749930143356, -0.00927956122905016, -0.011834703385829926, 0.02072962000966072, 0.030029786750674248, 0.016113879159092903, 0.010831878520548344, 0.03722814470529556, -0.018875081092119217, 0.02948029339313507, 0.008606432005763054, 0.010385415516793728, -0.004825234413146973, -0.029123123735189438, 0.016635896638035774, 0.03750288859009743, 0.014300552196800709, 0.03121119551360607, 0.03145846724510193, 0.019424574449658394, 0.01028925459831953, 0.01921851374208927, -0.016113879159092903, -0.010996726341545582, 0.007308255415409803, -0.042201053351163864, -0.030359482392668724, -0.0037434203550219536, -0.020853254944086075, -0.02994736284017563, 0.027625754475593567, -0.0022202946711331606, 0.006518359296023846, -0.030002310872077942, 0.02623828500509262, -0.019781744107604027, -0.003935742657631636, -0.002807565266266465, 0.02375183068215847, -0.012720759958028793, -0.01666337251663208, 0.007143407594412565, 0.010234304703772068, -0.0262520220130682, -0.016567209735512733, 0.015028630383312702, 0.005862402264028788, 0.020029015839099884, 0.028298884630203247, -0.007603608071804047, 0.028216460719704628, 0.02994736284017563, 0.04442650079727173, -0.014987418428063393, -0.020715881139039993, -0.01871023327112198, -0.030881499871611595, 0.020152650773525238, -0.0032866543624550104, 0.011724804528057575, -0.02533162198960781, 0.029809989035129547, -0.033079471439123154, 0.015633072704076767, 0.02012517675757408, 0.022584157064557076, 0.02586737833917141, -0.008544614538550377, -0.016553472727537155, 0.01003511343151331, 0.02437000907957554, 0.003867056220769882, 0.0026890807785093784, 0.02155385911464691, 0.006593914702534676, 0.0021292848978191614, -0.005841796286404133, 0.0018030235078185797, -0.02857363037765026, 0.0053815958090126514, -0.01839427463710308, 0.032392606139183044, 0.003880793461576104, 0.02391667850315571, 0.00030608472297899425, -0.002656454686075449, -0.012865002267062664, 0.015207216143608093, -0.008496534079313278, -0.0445089228451252, 0.004914526827633381, 0.00558078708127141, -0.01607266627252102, 0.01138137187808752, 0.02970009110867977, 0.01861407235264778, 0.034508153796195984, 0.0885782539844513, 0.009980164468288422, -0.02857363037765026, 0.032612401992082596, 0.004711901303380728, -0.004832102917134762, 0.0179409421980381, 0.015852870419621468, 0.022831428796052933, -0.016388624906539917, 0.008558351546525955, 0.031568367034196854, 0.021306587383151054, -0.03448067978024483, 0.006865226663649082, -0.019575683400034904, -0.016938118264079094, -0.0010448950342833996, 0.0007392396801151335, 0.00618179515004158, 0.0005331798456609249, -0.01961689628660679, 0.02616959810256958, 0.012844395823776722, 0.033079471439123154, 0.005117152351886034, -0.0013007527450099587, -0.006277956068515778, 0.0076310825534164906, -0.01417691633105278, -0.005268263164907694, 0.033958662301301956, 0.005041597411036491, -0.012033894658088684, 0.03590936213731766, -0.024837078526616096, -0.02578495442867279, -0.0033244320657104254, 0.0047805882059037685, -0.014080755412578583, 0.029590191319584846, -0.0035545320715755224, 0.004007863812148571, 0.004516144748777151, -0.01975427009165287, -0.029590191319584846, 0.026114650070667267, 0.009966427460312843, 0.014231866225600243, -0.008166838437318802, -0.001489640912041068, 0.004952304530888796, -0.015001155436038971, -0.030524330213665962, -0.006504622288048267, 0.059070486575365067, -0.04404185339808464, 0.018655283376574516, 0.01217813603579998, 0.008668250404298306, 0.011580562219023705, 0.0007057549082674086, -0.004093721974641085, 0.0019884773064404726, -0.008091283030807972, 0.02879342809319496, 0.01335267722606659, 0.015056105330586433, -0.019506998360157013, 0.00818744394928217, -0.0025242329575121403, 0.0028384742327034473, -0.0006722701946273446, 0.026897676289081573, 0.0003822839062195271, -0.0008040626416914165, -0.01243914570659399, -0.037667736411094666, -0.0073906793259084225, -0.013751059770584106, 0.019039928913116455, 0.00150337815284729, -0.005412505008280277, -0.0035717037972062826, -0.0122605599462986, 0.033299267292022705, -0.011649249121546745, -0.038574401289224625, 0.009004814550280571, -0.03255745396018028, -0.002364536514505744, -0.00403190404176712, -0.006552702747285366, 0.03725561872124672, -0.007603608071804047, -0.017762357369065285, -0.017212864011526108, 0.03189806267619133, 0.018806394189596176, -0.01029612310230732, -0.028463732451200485, 0.020083965733647346, -0.004790890961885452, 0.015399537980556488, -0.007644820027053356, 0.011099756695330143, 0.013723584823310375, -0.0024950411170721054, -0.007795930374413729, -0.01622377708554268, -0.0002573601377662271, -0.011965207755565643, 0.03038695640861988, 0.011649249121546745, 0.008001990616321564, 0.006683207117021084, 0.012748234905302525, -0.004526447504758835, -0.010907433927059174, -0.030139684677124023, -0.019245987758040428, -0.009719155728816986, -0.0017317611491307616, 0.007940172217786312, 0.019410835579037666, 0.012123187072575092, -0.007294517941772938, -0.020784568041563034, -0.004189883358776569, -0.0350026972591877, -0.02563384361565113, 0.010687637142837048, -0.04305276647210121, 0.01703427918255329, -0.028065349906682968, 0.004605437163263559, -0.03906894475221634, -0.019136089831590652, 0.030936449766159058, -0.025317884981632233, -0.004952304530888796, 0.007809667848050594, -0.011134099215269089, 0.00893612764775753, 0.008324816823005676, 0.009485621005296707, -0.03159584105014801, -0.0011899955570697784, -0.009629863314330578, -0.0004284327442292124, -0.028326358646154404, -2.7099014914711006e-05, 0.0022031229455024004, -0.04420670121908188, 0.022831428796052933, 0.04258570075035095, 0.042723070830106735, 0.023394659161567688, -0.017597509548068047, -0.026197073981165886, 0.012452882714569569, -0.031183721497654915, -0.0222544614225626, -0.020688407123088837, -0.009918347001075745, -0.010090063326060772, 0.026293234899640083, -0.000992521527223289, -0.03527744486927986, 0.018820131197571754, 0.027405958622694016, 0.006408460903912783, -0.012569650076329708, -0.004804628435522318, -0.013222172856330872, -0.015619335696101189, 0.01240480225533247, -0.0048904865980148315, -0.002187668578699231, 0.012693285942077637, 0.006635126657783985, -0.032475028187036514, -0.033903710544109344, -0.00029878676286898553, -0.02066093310713768, 0.02005648985505104, -0.00915592536330223, -0.014932469464838505, -0.0713241770863533, -0.004457761067897081, -0.02375183068215847, 0.022941328585147858, 0.004289478994905949, -0.020111439749598503, 0.022803954780101776, 0.0028024136554449797, -0.03162331506609917, -0.001179692568257451, 0.009499358013272285, -0.018971242010593414, 0.024617280811071396, 0.008764411322772503, -0.003949480131268501, -0.002031406620517373, -0.012665810994803905, -0.017995892092585564, -0.00208292156457901, 0.007459365762770176, -0.006985428277403116, 0.00927269272506237, 0.027776865288615227, -0.010041982866823673, -0.02427384816110134, 0.04308024421334267, -0.010515919886529446, -0.0072052255272865295, -0.0037571575958281755, -0.023957889527082443, 0.005804018583148718, 0.005340383853763342, -0.015468224883079529, -0.020111439749598503, -0.0052339197136461735, 0.013441969640552998, 0.0012097429716959596, -0.01345570757985115, 0.0034961483906954527, 0.009746629744768143, 0.016045192256569862, -0.0012131772236898541, -0.026210810989141464, -0.004945436026901007, 0.001857972820289433, 0.0015385800506919622, 0.004838971886783838, -0.03423340618610382, -0.0018631243146955967, 0.01575670950114727, -0.006459975615143776, 0.006466844584792852, -0.029150597751140594, -0.013702979311347008, 0.0032557453960180283, 0.016003981232643127, 0.015207216143608093, -0.031650789082050323, 0.009217742830514908, 0.002247769385576248, 0.02143022231757641, -0.0001540082594146952, 0.024974452331662178, -0.007060983683913946, -0.02202092669904232, 0.01135389693081379, 0.03263987600803375, 0.03316189721226692, 0.018572859466075897, 0.007040377706289291, 0.01542701292783022, 0.007170882076025009, -0.008544614538550377, 0.002000497654080391, 0.012562781572341919, 0.002699383767321706, 0.006301996763795614, 0.015248428098857403, 0.027570806443691254, -0.008929259143769741, -0.033958662301301956, 0.012205610983073711, 0.0013170657912269235, -0.01931467466056347, -0.01327712181955576, 0.0003206806140951812, 0.003199078841134906, -0.008530877530574799, 0.006841186434030533, 0.00013898305769544095, 0.02284516766667366, 0.009739761240780354, 0.037667736411094666, 0.014204391278326511, -0.0289582759141922, 0.05830119550228119, -0.023408396169543266, 0.016951855272054672, -0.02165002003312111, -0.002730292733758688, 0.0075005777180194855, -0.03673360124230385, 0.019479522481560707, -0.00671411631628871, 0.0031321095302700996, -0.0036609964445233345, -0.0047325072810053825, -0.005069071892648935, -0.01741892471909523, -0.008201180957257748, -0.006532096769660711, -0.023284761235117912, -0.02118295058608055, 0.003104634815827012, -0.012233084999024868, -0.020331237465143204, 0.004241398070007563, 0.001469893497414887, -0.008599563501775265, 0.008276736363768578, -0.007115933112800121, 0.048904865980148315, 0.0007263608858920634, -0.009396328590810299, 0.0016510543646290898, -0.0124803576618433, -0.00025907732197083533, -0.005931088700890541, 0.005405636504292488, 0.03288714960217476, -0.02527667209506035, 0.012349852360785007, -0.010344203561544418, -0.000977067044004798, -0.0029432212468236685, 0.014190654270350933, 0.035030171275138855, -0.016787007451057434, 0.030112210661172867, -0.03085402585566044, 0.014149442315101624, 0.010646425187587738, -0.010728849098086357, 0.010900565423071384, -0.01605892926454544, 0.007967647165060043, -0.0072052255272865295, -0.015701759606599808, 9.278058860218152e-05, -0.012116318568587303, 0.008379766717553139, 0.003901399439200759, 0.031403519213199615, 0.012679548002779484, -0.01244601421058178, -0.04417922720313072, 0.0014398430939763784, 0.006257350090891123, -0.004863012116402388, -0.0014200956793501973, -0.014018937014043331, -0.005625433288514614, 0.029617667198181152, 0.01629246398806572, 0.028298884630203247, 0.011786622926592827, -0.020399924367666245, -0.018009629100561142, 0.008654513396322727, 0.015166004188358784, 0.015399537980556488, -0.026952626183629036, 0.0021378707606345415, -0.016553472727537155, 0.011243998073041439, -0.02504313923418522, 0.02314738743007183, -0.006102805491536856, 0.018751444295048714, -0.0026066568680107594, 0.007727243937551975, 0.007823404856026173, -0.01622377708554268, 0.007974515669047832, -0.016319938004016876, 0.010900565423071384, 0.00018234149320051074, 0.013050456531345844, -0.0030548369977623224, 0.011580562219023705, 0.00923834927380085, 0.03621158003807068, -0.005285434890538454, -0.002618676982820034, -0.00020004974794574082, 0.006425632629543543, 0.02081204392015934, 0.030524330213665962, -0.03379381448030472, -0.007019771728664637, -0.0014389845309779048, -0.014850045554339886, 0.0207433570176363, 0.010598343797028065, -0.015633072704076767, 0.014863782562315464, -0.02677404135465622, 0.016003981232643127, -0.00044045288814231753, -0.017102966085076332, -0.010653293691575527, -0.003990692086517811, 0.007328861393034458, 0.011882783845067024, 0.005707857199013233, -0.012693285942077637, 0.0025808995123952627, -0.004821800161153078, 0.004869880620390177, -0.02413647435605526, 0.03659622743725777, -0.008984209038317204, 0.0014570147031918168, -0.01350378803908825, 0.005742200650274754, 0.040909744799137115, 0.0048561436124145985, -0.050498396158218384, -0.01703427918255329, 0.0010895413579419255, 0.013881564140319824, 0.0021584767382591963, 0.014836307615041733, -0.009032289497554302, -0.030194634571671486, 0.0039666518568992615, 0.0395360141992569, -0.02502940036356449, 0.020152650773525238, 0.0038327130023390055, -0.010316728614270687, -0.022226987406611443, -0.02276274375617504, 0.0012672679731622338, 0.012858133763074875, 0.01997406594455242, -0.030661704018712044, -0.008517139591276646, -0.002553424797952175, 0.007370073348283768, 0.002673626411706209, -0.00503129418939352, -0.0027955451514571905, 0.00231989030726254, 0.00046406392357312143, 0.0003827132168225944, -0.007734112441539764, 4.539755536825396e-05, -0.0023095873184502125, -3.1861466140981065e-06, -0.03733804076910019, -0.004921395797282457, 0.009691680781543255, -0.04033277928829193, 0.014492874965071678, -0.02285890467464924, 0.011470664292573929, 0.004787456709891558, 0.021471435204148293, -0.018298113718628883, -0.022968802601099014, 0.002467566402629018, -0.0133458087220788, 0.0230100154876709, 0.00507250614464283, 0.017817307263612747, -0.0065114907920360565, -0.032832201570272446, 0.019809218123555183, 0.00943067204207182, -0.001197722740471363, -0.0009049461223185062, -0.0302495826035738, 0.008084414526820183, 0.010206830687820911, 0.010268648155033588, 0.00927269272506237, -0.007335729897022247, 0.02421889826655388, 0.006834317930042744, -0.0122124794870615, 0.01840801164507866, 0.012906214222311974, -0.004018166568130255, 0.03233765810728073, -0.009465014562010765, -0.008235524408519268, -0.0022718096151947975, 0.007686031982302666, -0.002781807677820325, 0.011690461076796055, 0.0001560473901918158, -0.059015534818172455, -0.010825010016560555, -0.012576518580317497, -0.00025242328410968184, 0.02292759157717228, -0.0033467551693320274, 0.012535306625068188, -0.00058211904251948, -0.0055498783476650715, 3.906551137333736e-05, -0.008001990616321564, -0.02761201746761799, -0.0020485781133174896, 0.028079086914658546, 0.020331237465143204, -0.013016113080084324, 0.0023010014556348324, -0.04327256605029106, 0.015509436838328838, 0.015880344435572624, 0.024163950234651566, 0.018531648442149162, -0.03294209763407707, -0.008826229721307755, -0.012342983856797218, -0.003867056220769882, 0.002161910990253091, 0.01527590211480856, -0.016951855272054672, 0.05989472568035126, 0.011793491430580616, 0.004457761067897081, -0.0007263608858920634, 0.0006606793613173068, 0.007170882076025009, 0.013977725058794022, -0.010680767707526684, -0.0028230196330696344, 0.031705740839242935, 0.00416584312915802, -0.003029079642146826, -0.013847220689058304, -0.0041589741595089436, -0.008647643961012363, -0.008798754774034023, 0.032777249813079834, 0.02066093310713768, -0.009114713408052921, 0.03703581914305687, 0.010357940569519997, -0.0016853976994752884, -0.0008980774437077343, -0.007761586923152208, 0.04420670121908188, 0.00795390922576189, 0.010756323114037514, -0.02616959810256958, -0.03747541457414627, -0.020482348278164864, -0.007356335874646902, 0.002306153066456318, 0.026801515370607376, 0.003925439901649952, 6.106669025029987e-05, -0.0008572947699576616, -0.006339774001389742, 0.01304358709603548, -0.029370395466685295, 0.003633521730080247, 0.002290698466822505, -0.014740146696567535, -0.001742064137943089, -0.019850431010127068, 0.011896520853042603, 0.015605597756803036, 0.015633072704076767, 0.0048904865980148315, -0.012418539263308048, 0.005893311463296413, -0.0036884709261357784, 0.01146379578858614, -0.009245217777788639, -0.02458980679512024, -0.0034738252870738506, -0.007445628754794598, 0.0028487772215157747, -0.012775709852576256, -0.005525837652385235, -0.02035871148109436, -0.030661704018712044, 0.02548273280262947, 0.023477083072066307, 0.008826229721307755, 0.0019318109843879938, -0.03566208854317665, 0.022515472024679184, -0.03552471473813057, -0.01990537904202938, 0.005618564784526825, -0.0013943382073193789, -0.007940172217786312, 0.045278213918209076, -0.017473874613642693, 0.03008473478257656, 0.003685036674141884, 0.031238671392202377, 0.004498973023146391, -0.020001541823148727, -0.02542778290808201, -0.004217357840389013, -0.0023834253661334515, -0.002393728354945779, -0.04047015309333801, 0.02133406139910221, -0.0069648222997784615, 0.016086405143141747, -0.018229426816105843, 0.01575670950114727, -0.013648029416799545, -0.009980164468288422, -0.015949031338095665, -0.01519347820430994, -0.0009118147427216172, 0.018984979018568993, -0.024768391624093056, 0.010667030699551105, -0.006034118589013815, -0.007912697270512581, 0.0051617990247905254, 0.01553691178560257, 0.008015727624297142, 0.0287384781986475, 0.05352060869336128, -0.03618410602211952, -0.0003307689621578902, -0.011903389357030392, -0.0033982701133936644, -0.002970695961266756, -0.03129361942410469, -0.01436923909932375, 0.00573189789429307, -0.020757094025611877, 0.0004209201433695853, 0.004516144748777151, 0.015591860748827457, -0.019795481115579605, 0.027323534712195396, 0.027158686891198158, 0.01651226170361042, -0.00998703297227621, 0.026567980647087097, 0.00818744394928217, 0.0036438247188925743, 0.023861728608608246, -0.013510656543076038, -0.0102617796510458, -0.012342983856797218, 0.02112800069153309, -0.0030788772273808718, 0.008352291770279408, -0.009890872053802013, 0.0029741302132606506, 0.0035545320715755224, 0.010708242654800415, 0.03318937122821808, -0.00825613085180521, -0.009884003549814224, -0.024315061047673225, -0.00012116747529944405, -0.0016965592512860894, -0.0037262486293911934, 0.005608262028545141, 0.0207433570176363, -0.03794248402118683, -0.008688855916261673, 0.0044302865862846375, -0.005872705020010471, -0.013627423904836178, 0.002433223184198141, 0.0005898462841287255, -0.002283829730004072, 0.02285890467464924, 0.018449224531650543, -0.017899731174111366, 0.018353061750531197, -0.016003981232643127, -0.012246822938323021, 0.03742046654224396, 0.00803633313626051, 0.023999102413654327, -0.01991911791265011, 0.0026890807785093784, 0.020770831033587456, -0.01436923909932375, 0.01331146527081728, -0.013799140229821205, 0.004784022457897663, 0.0001247091277036816, 0.002665040548890829, -0.02155385911464691, -0.046267300844192505, -0.008675118908286095, 0.014767621643841267, -0.009149056859314442, -0.012164399027824402, 0.016622159630060196, 0.0066969445906579494, -0.0006903004250489175, -0.011999551206827164, 0.007376941852271557, -0.006061593536287546, 0.004852708894759417, 0.00444745784625411, -0.01757003553211689, 0.017913468182086945, -0.015742970630526543, -0.006590480450540781, -0.002999887801706791, -0.01637488789856434, -0.009258954785764217, -0.004231095314025879, -0.0033364521805197, -0.0025345359463244677, 0.004059378523379564, -0.005450282711535692, 0.0034446334466338158, -0.0309089757502079, 0.005292303394526243, 0.004402811639010906, -0.005766240879893303, 0.014836307615041733, 0.010976120829582214, 0.04541558772325516, 0.007294517941772938, 0.0015866607427597046, 0.004310084972530603, -0.02050982229411602, -0.011779753491282463, 0.0004498973139561713, -0.0017094380455091596, -0.02218577452003956, 0.006988862529397011, 0.025675054639577866, 0.04953678324818611, -0.0006997448508627713, 0.008922390639781952, -0.021622546017169952, 0.01802336610853672, -0.011340159922838211, 0.008530877530574799, -0.008173706941306591, 0.012356721796095371, 0.001842518337070942, 0.008881178684532642, -0.01346257608383894, 0.003530491841956973, 0.005594524554908276, -0.02511182427406311, 0.012075106613337994, 0.012095712125301361, 0.03596431016921997, -0.010550263337790966, 0.01893002912402153, 0.007376941852271557, 0.008269867859780788, -0.007404416799545288, 0.018037104979157448, -0.006267653312534094, 0.013414494693279266, -0.0012002985458821058, -0.0024126172065734863, -0.0007890374399721622, 0.00403190404176712, -0.008716330863535404, -0.019932854920625687, -0.011450057849287987, -0.004409680608659983, -0.006119977217167616, 0.028491206467151642, -0.017075492069125175, 0.012789446860551834, -0.005986038129776716, 0.025235461071133614, -0.0038361472543329, -0.008640775457024574, 0.023037489503622055, 0.030002310872077942, -0.008242392912507057, -0.005858968012034893, 0.01349691953510046, 0.0023628193885087967, 0.0019455482251942158, -0.0202076006680727, -0.02616959810256958, -0.007321992889046669, 0.006109673995524645, 0.004368468653410673, 0.010763191618025303, 0.0029689788352698088, 0.024548593908548355, -0.019864168018102646, -0.019273463636636734, -0.009822185151278973, 0.000996814458630979, -0.004303216002881527, -0.028037874028086662, -0.013132880441844463, 0.010351072065532207, -0.021924765780568123, -0.01743266172707081, -0.004035338293761015, 0.011408845894038677, -0.006607652176171541, 0.0026684748008847237, 0.013263384811580181, 0.01011066883802414, -0.029068173840641975, 0.0003758445382118225, 0.015262165106832981, 0.019191039726138115, 0.016237514093518257, 0.017309026792645454, -0.005240788217633963, -0.011999551206827164, -0.0179409421980381, -0.0019266594899818301, -0.01127147302031517, 0.006185229402035475, -0.0010268648620694876, 0.010948645882308483, -0.016031455248594284, 0.0065836114808917046, -0.02096315287053585, -0.011216524057090282, -0.0016888320678845048, -0.006947650574147701, 0.007617345079779625, 0.00915592536330223, -0.005096546374261379, -0.011772884987294674, 0.0030410997569561005, -0.00044818012975156307, -0.01575670950114727, 0.015138529241085052, 0.009801579639315605, -0.0018339324742555618, 0.00036575619014911354, 0.009595519863069057, -0.016388624906539917, 0.006851489655673504, 0.0024589807726442814, -0.008043202571570873, -0.005045031663030386, -0.005907048471271992, -0.010825010016560555, -0.013888432644307613, 0.014341764152050018, -0.02994736284017563, -0.005446848459541798, 0.0179409421980381, -0.000615603756159544, 0.004766850732266903, -0.013991462998092175, -0.009368853643536568, -0.0021893857046961784, -0.010564000345766544, 0.0012140359031036496, 0.011738541536033154, 0.00771350646391511, -0.01338702067732811, 0.00010887900862144306, -0.0222544614225626, -0.011621774174273014, 0.022900115698575974, -0.007809667848050594, -0.0004153393383603543, -0.004440589342266321, 0.017171652987599373, -0.010275516659021378, 0.008400372229516506, -0.0025637277867645025, 0.01013814378529787, -0.0055121006444096565, 0.011820965446531773, 0.04970163106918335, 0.016525998711586, 0.0006263360264711082, -0.003454936435446143, 0.028106560930609703, -0.013757928274571896, -0.03535986691713333, 0.009863397106528282, -0.0035923097748309374, 0.01899871602654457, -0.01901245303452015, -0.011395108886063099, -0.01146379578858614, 0.018669020384550095, -0.0019232251215726137, -0.009526832960546017, 0.03258492797613144, -0.00087875931058079, 0.0021447394974529743, 0.0018390839686617255, 0.01003511343151331, -0.004468063823878765, 0.004766850732266903, -0.004330690950155258, -0.0070953271351754665, 0.011786622926592827, 0.013551868498325348, 0.018160739913582802, -0.02118295058608055, -0.0016656502848491073, 0.012095712125301361, -0.011601168662309647, -0.025221724063158035, -0.00901168305426836, -0.015028630383312702, -0.016910644248127937, 0.011731673032045364, -0.026952626183629036, 0.02382051758468151, -0.000925552099943161, -0.005488060414791107, 0.008901785127818584, 0.009835923090577126, 0.009760367684066296, -0.010481576435267925, 0.014671459794044495, -0.007397547829896212, 0.0038704904727637768, -0.0017583773005753756, 0.002105244668200612, 0.031568367034196854, -0.005185839254409075, -0.007466234732419252, -0.011511876247823238, -0.008475927636027336, -0.0005185839254409075, 0.02163628302514553, 0.011017332784831524, -0.0131260110065341, 0.0069270445965230465, -0.0066213891841471195, -0.001924942247569561, 0.0024074658285826445, -0.005735332146286964, -0.030194634571671486, -0.005251091439276934, -0.012549043633043766, -0.005051900167018175, -0.007054115179926157, -0.03599178418517113, -0.018504172563552856, 0.009513095952570438, 0.011697329580783844, -0.011807228438556194, -0.0034446334466338158, 0.024713443592190742, -0.007170882076025009, 0.017446398735046387, 0.0021773655898869038, 0.0003975237486883998, 0.008524008095264435, 0.0005739625194109976, -0.0021035275422036648, -0.03340916708111763, -0.004413114860653877, 0.010302991606295109, 0.012549043633043766, 0.017295287922024727, 0.003976954612880945, 0.020647196099162102, 0.008620169945061207, -0.01780357025563717, 0.01592155732214451, 0.0006031543016433716, 0.03505764529109001, 0.014698934741318226, -0.002455546287819743, 0.026513032615184784, -0.016938118264079094, -0.0064737130887806416, -0.013648029416799545, -0.008022596128284931, 0.0023628193885087967, 0.009341378696262836, 0.00010324456525268033, -0.0007353760302066803, -0.006061593536287546, -0.0029346353840082884, -2.359760765102692e-05, 0.008132494986057281, -0.01330459676682949, -0.005852099042385817, 0.022968802601099014, 0.018119528889656067, 0.01116157416254282, -0.007555527146905661, -0.007912697270512581, -0.007555527146905661, -0.010275516659021378, 0.001902619143947959, 0.023106176406145096, 0.0030634228605777025, -0.020097702741622925, 0.0018682758091017604, 0.004471498541533947, -0.01658094860613346, 0.005749069154262543, -0.0007156286155804992, 0.019094878807663918, 0.003983823582530022, -0.009341378696262836, -0.0009349964675493538, 0.028820902109146118, -0.012892477214336395, -0.00912158191204071, 0.00563917076215148, -0.004526447504758835, 0.0020640327129513025, 0.02548273280262947, 0.000488533522002399, 0.0002193678665207699, 0.0023267590440809727, -0.028037874028086662, -0.011848440393805504, -0.0028264541178941727, -0.009753499180078506, -0.000680426717735827, -0.0024658492766320705, -0.0021911028306931257, 0.01921851374208927, -0.015591860748827457, 0.0144791379570961, -0.018669020384550095, 0.006178360898047686, 0.002707969630137086, -0.00931390468031168, 0.008084414526820183, 0.031485941261053085, 0.02163628302514553, -0.008235524408519268, 0.01952073536813259, -0.002783524803817272, -0.010543394833803177, 0.009863397106528282, 0.018875081092119217, 0.004584831185638905, 0.0016776705160737038, -0.0029895848128944635, -0.008008859120309353, 6.729141750838608e-05, 0.010316728614270687, 0.005017556715756655, -0.01323590986430645, 0.0031527155078947544, -0.01659468561410904, 0.01667710952460766, 0.02232314832508564, -0.013167222961783409, 0.0033707953989505768, 0.006920176092535257, 0.006408460903912783, -0.0023868598509579897, 0.02314738743007183, -0.0036232187412679195, 0.028408782556653023, 0.005628868006169796, 0.00023052943288348615, -0.008901785127818584, -0.005470888689160347, 0.0002457692753523588, -0.017089229077100754, 0.013332070782780647, -0.006171491928398609, 0.004248267039656639, 0.01342823263257742, -0.014877519570291042, -0.0035270575899630785, -0.008400372229516506, 0.001242369064129889, -0.03145846724510193, 0.01542701292783022, 0.0021035275422036648, -0.0004451751010492444, 0.01817447692155838, -0.0006898711435496807, 0.00381897552870214, 0.006830883678048849, 0.00915592536330223, 0.011079150252044201, 0.015564385801553726, -0.002701100893318653, 0.007555527146905661, -0.00912158191204071, -0.0031218065414577723, -0.022130826488137245, 0.0013110557338222861, 0.01975427009165287, -0.031705740839242935, -0.002371405251324177, -0.02608717419207096, 0.01436923909932375, -0.007493709214031696, -0.025977276265621185, 0.0010337334824725986, 0.0004243544826749712, -0.011072281748056412, 0.013847220689058304, -0.03415098413825035, -0.0010028245160356164, -0.017679933458566666, -0.031568367034196854, -0.014726409688591957, 0.0004790891252923757, -0.012246822938323021, 0.010879958979785442, -0.011862177401781082, -0.0027663533110171556, -0.0009272692259401083, -0.0014647420030087233, 0.03590936213731766, 0.02255668304860592, -0.013366414234042168, -0.012761971913278103, 0.011559956707060337, -0.004574528429657221, 0.015111054293811321, 0.013819745741784573, 0.008716330863535404, -0.00825613085180521, -0.01916356384754181, -0.009423802606761456, -0.022144563496112823, 0.0047702849842607975, 0.006277956068515778, -0.010323598049581051, -0.020248813554644585, 0.02307870052754879, -0.002388576976954937, 0.005426242481917143, 0.023477083072066307, -0.002419485943391919, -0.003805238287895918, 0.011594300158321857, 0.026032226160168648, -0.02939786948263645, 0.02088072896003723, 0.018050841987133026, 0.005536140874028206, -0.009932084009051323, 0.013222172856330872, 0.0067415907979011536, -0.01713044010102749, 0.001481055049225688, 0.0015308528672903776, -0.007002600003033876, 0.02104557678103447, 0.0017652459209784865, 0.00661452068015933, -0.000651234935503453, 0.007383810821920633, 0.015248428098857403, 0.006882398389279842, -0.009142188355326653, 0.014602773822844028, -0.012693285942077637, 0.014657722786068916, 0.00991147756576538, -0.004028469789773226, -0.00556361535564065, -0.013689241372048855, -0.0008225221536122262, -0.020180126652121544, 0.014273078180849552, -0.019699320197105408, 0.0010869656689465046, 0.023655669763684273, -0.02262536995112896, 0.012116318568587303, 0.005951694678515196, -0.026032226160168648, -0.016649633646011353, 0.018504172563552856, 0.00024920361465774477, 0.01421812828630209, -0.005666645243763924, -0.00116423808503896, 0.027048787102103233, 0.0016029737889766693, -0.010282386094331741, 0.0013110557338222861, 0.0247409176081419, 0.0017652459209784865, -0.005467454437166452, 0.011243998073041439, -0.008661381900310516, -0.0015050953952595592, 0.007754718419164419, 0.035332392901182175, -0.034590575844049454, -0.001730902586132288, -0.005687251221388578, -0.0060478560626506805, 0.013737321831285954, -0.004409680608659983, -0.0205235593020916, -0.00507250614464283, 0.01436923909932375, -0.007115933112800121, 0.0006310582393780351, -0.009938952513039112, 0.0001570133026689291, -0.008716330863535404, -0.018270637840032578, 0.0184766985476017, 0.0018751444295048714, 0.00674845976755023, 0.008736937306821346, 0.01592155732214451, -0.0077890618704259396, -0.01022056769579649, 0.006264219060540199, 0.004365033935755491, 0.009334510192275047, 0.027158686891198158, 0.024232637137174606, 0.006061593536287546, 0.0035407948307693005, 0.018517909571528435, 0.0040868534706532955, 0.0017652459209784865, -0.002297567203640938, 0.0018820131663233042, -0.00011902101687155664, 0.012638336047530174, 0.0015050953952595592, -0.00024770110030658543, 0.012116318568587303, -0.009224612265825272, -0.000744820456020534, -0.008077545091509819, 0.005412505008280277, 0.012755103409290314, 0.012507831677794456, -0.004495538771152496, -0.009932084009051323, -0.009616125375032425, 0.017762357369065285, 0.01854538545012474, 0.0024074658285826445, 0.012837527319788933, 0.001683680573478341, -0.01778983138501644, 0.026375658810138702, -0.009677943773567677, 0.012576518580317497, 0.013847220689058304, -0.000887774454895407, 0.005168667528778315, -0.001866558683104813, -0.020605983212590218, -0.0021464566234499216, -0.005494928918778896, 0.0034600880462676287, -0.0024143343325704336, 0.024631017819046974, 0.02254294604063034, 0.02329849824309349, 0.011319553479552269, -0.0014106512535363436, -0.0007576991920359433, 0.0012672679731622338, -0.0032866543624550104, 0.001675094710662961, -0.00669007608667016, -0.0008122191647998989, -0.0062436130829155445, 0.010694505646824837, 0.03187058866024017, 0.007335729897022247, -0.0003515895805321634, 0.019026191905140877, -0.017528822645545006, 0.010351072065532207, -0.0023010014556348324, -0.030332008376717567, -0.007926435209810734, -0.0003329154278617352, 0.006940782070159912, 0.0005434828344732523, 0.009842791594564915, 0.006923610344529152, 0.025207987055182457, 0.02865605428814888, 0.014382976107299328, -0.023271024227142334, -0.01538580097258091, 0.012459751218557358, 0.0031767557375133038, 0.01319469790905714, 0.010742586106061935, -0.0151247913017869, -0.017363974824547768, -0.001552317407913506, -0.013854089193046093, -0.004450892563909292, 0.035936836153268814, 0.0009950973326340318, -0.01327712181955576, 0.02843625657260418, -0.015619335696101189, 0.008173706941306591, -0.00495573878288269, 0.025386571884155273, -0.0025997881311923265, -0.011903389357030392, -0.023188600316643715, 0.003178472863510251, 0.018270637840032578, -0.01036481000483036, 0.005491494666785002, -0.01967184618115425, -0.02556515671312809, 0.007947040721774101, -0.0023113044444471598, 0.010419758968055248, 0.01667710952460766, -0.008661381900310516, 0.011292078532278538, -0.015317114070057869, 0.013970856554806232, -0.021540122106671333, -0.008324816823005676, -0.004557356704026461, 0.0011049958411604166, 0.004183014389127493, -0.00559795880690217, 0.01658094860613346, -0.014740146696567535, -0.02660919353365898, 0.012555912137031555, 0.014245603233575821, -0.0004838113090954721, -0.006425632629543543, -0.005872705020010471, 0.004835537634789944, -0.0017652459209784865, -0.01142945233732462, -0.0001361926697427407, -0.015207216143608093, -0.010474707931280136, -0.01651226170361042, 0.013414494693279266, 0.006394723430275917, -0.013441969640552998, -0.02126537449657917, 0.02601848915219307, -0.0035064516123384237, 0.024685967713594437, -0.02437000907957554, -0.025468995794653893, -0.028601104393601418, -0.011656117625534534, 0.021911028772592545, 0.012665810994803905, 0.0074731032364070415, 0.0004722204466816038, 0.013799140229821205, 0.011374502442777157, -0.0007388103404082358, -0.0038842279464006424, 0.003970086108893156, 0.004066247493028641, -0.0024263544473797083, 0.007665426004678011, -0.0036884709261357784, -0.022034665569663048, -0.005257959943264723, -0.0033381693065166473, -0.025592630729079247, -0.007308255415409803, -0.006295127794146538, -0.0003943040792364627, 0.008201180957257748, 0.008620169945061207, 0.01651226170361042, 0.005470888689160347, 0.0065492684952914715, -0.0022323147859424353, 0.003508168738335371, -0.012913082726299763, -0.008860573172569275, -0.003709076903760433, 0.027639491483569145, -0.014685197733342648, -0.024383746087551117, 0.004821800161153078, -0.02156759612262249, 0.015289640054106712, -0.003008473664522171, -0.030222108587622643, -0.03816227987408638, -0.012377327308058739, 0.025881115347146988, 0.00813936349004507, -0.026870202273130417, 0.012823790311813354, 0.001407217001542449, -0.0013702978612855077, -0.025166774168610573, -0.007143407594412565, 0.028820902109146118, -0.007754718419164419, 0.02542778290808201, -0.011326421983540058, -0.0071228016167879105, 0.008997946046292782, -0.0040044295601546764, -0.005385030526667833, -0.023477083072066307, -0.003932308405637741, 0.0389040969312191, -0.0032694826368242502, -0.004440589342266321, -1.6406977010774426e-05, 0.006810277700424194, 0.008578957989811897, -0.013799140229821205, 0.002501909853890538, -0.012707022950053215, -0.03634895384311676, -0.011525613255798817, -0.00010785944323288277, -0.021389011293649673, 0.015001155436038971, 0.012555912137031555, -0.01003511343151331, -0.0018562556942924857, -0.021897291764616966, 0.0036678649485111237, -0.02351829595863819, -0.008613301441073418, 0.00256544491276145, 0.003698773914948106, 0.0033690782729536295, 0.0008791886502876878, 0.014740146696567535, -0.01421812828630209, -0.01452034991234541, -0.004849274642765522, -0.006611086428165436, 0.011168442666530609, 0.00044217007234692574, -0.030826551839709282, -0.018147002905607224, -0.03250250592827797, 0.0309089757502079, -0.01568802259862423, -0.01839427463710308, 0.020770831033587456, 0.013764796778559685, 0.013661767356097698, -0.004292913246899843, 0.0054640197195112705, 0.0007014620350673795, -0.021361535415053368, -0.003880793461576104, 0.010976120829582214, 0.0006885832990519702, -0.0029294840060174465, -0.0005885583814233541, -0.005443413741886616, -0.007016337476670742, 0.008867441676557064, 0.007067852187901735, -0.0007439618348143995, 0.009458146058022976, -0.01681448332965374, 0.008352291770279408, -2.421471435809508e-05, -0.02037244848906994, -0.016017718240618706, -0.009767236188054085, 0.005498363170772791, 0.011662986129522324, -0.0006881539593450725, -0.0015720648225396872, 0.009726024232804775, -0.02457606978714466, 0.0022271634079515934, -0.0015909536741673946, -0.006010078359395266, 0.01636115089058876, -0.020647196099162102, -0.004162408411502838, 0.0015342871192842722, 0.025455258786678314, -0.0037262486293911934, 0.011099756695330143, 0.0026976666413247585, 0.02805161289870739, 0.022281937301158905, -0.013565605506300926, 0.010309860110282898, -0.008345423266291618, 0.008750674314796925, 0.004310084972530603, 0.0012329246383160353, 0.00208292156457901, 0.016045192256569862, 0.011140968650579453, -0.023408396169543266, -0.003187058726325631, -0.012885607779026031, -0.011628643609583378, -0.03214533254504204, 0.0013256515376269817, -0.005027859937399626, 0.0002869812597054988, 0.01711670309305191, -0.006284825038164854, 0.0031544326338917017, -0.017240339890122414, 0.009629863314330578, -0.017968418076634407, 0.0007705779280513525, 0.019561946392059326, 0.012892477214336395, 0.02397162653505802, 0.017844781279563904, 0.014067018404603004, 0.0030840288382023573, -0.00904602650552988, -0.0029638272244483232, 0.02118295058608055, 0.013476313091814518, 0.005941391922533512, -0.011951470747590065, -0.008043202571570873, -0.00020681109162978828, 0.005299171898514032, 0.0018545384518802166, 0.020976891741156578, -0.0007349467487074435, 0.005199576262384653, 0.016979331150650978, 0.004340993706136942, 0.009760367684066296, 0.0224742591381073, -0.0018717101775109768, -0.004825234413146973, 0.007644820027053356, -0.026952626183629036, 0.0011178746353834867, 0.01308479905128479, -0.01839427463710308, 0.004876749590039253, -0.007033509202301502, -0.002539687557145953, 0.007960778661072254, -0.008524008095264435, 0.01322904136031866, 0.010227436199784279, -0.015028630383312702, -0.014355502091348171, 0.002395445480942726, 0.014973681420087814, -0.006425632629543543, -0.0018270638538524508, -0.017666196450591087, 0.002440091921016574, 0.010474707931280136, -0.0018184779910370708, 0.02398536540567875, 0.0017180239083245397, -0.00414867140352726, 0.002970695961266756, -0.0070953271351754665, 0.0011290361871942878, 0.009265824221074581, 0.0027491815853863955, -0.010467839427292347, 0.007644820027053356, 0.00837289821356535, -0.0020709012169390917, 0.0032918057404458523, -0.036321479827165604, 0.01323590986430645, -0.02375183068215847, -0.014863782562315464, 0.008901785127818584, 0.012707022950053215, -0.0028264541178941727, 0.01096925139427185, -0.022419309243559837, 0.018147002905607224, 0.0013754493556916714, 0.0026890807785093784, 0.019932854920625687, -0.019561946392059326, 0.0017480741953477263, 0.026485556736588478, 0.01809205301105976, 0.00610623974353075, -0.002402314217761159, -0.01138137187808752, 0.005336949601769447, 0.020551033318042755, -0.0034892798867076635, 0.003281502751633525, -0.00556361535564065, -0.010131275281310081, -0.020633457228541374, 0.019809218123555183, 0.006305431015789509, 0.022570420056581497, -0.007431891281157732, 0.006284825038164854, -0.00281958538107574, 0.002709686756134033, -0.010227436199784279, 0.023738093674182892, 0.008524008095264435, 0.009361985139548779, -0.018009629100561142, -0.005117152351886034, 0.009423802606761456, -0.0013788837241008878, 0.009533701464533806, 0.017006805166602135, -0.004320387728512287, 0.006841186434030533, 0.013290858827531338, -0.015399537980556488, 0.006906438618898392, -0.008640775457024574, 0.013737321831285954, -0.0015797920059412718, 0.006913307588547468, -0.0018098922446370125, -0.005804018583148718, 0.013744191266596317, -0.008503402583301067, -0.009808448143303394, -0.015358326025307178, -0.0076310825534164906, -0.032612401992082596, 0.006284825038164854, -0.014877519570291042, 0.006095936521887779, -0.01901245303452015, -0.004571094177663326, 0.0008336837636306882, 0.004942001774907112, 0.018737707287073135, 0.0082149188965559, 0.018380537629127502, -0.01607266627252102, -0.014740146696567535, -0.03409603238105774, -0.012535306625068188, 0.02299627661705017, 0.0037949352990835905, 0.013764796778559685, -0.00998703297227621, -0.008785017766058445, -0.0071296701207757, 0.006185229402035475, -0.007466234732419252, -0.022446785122156143, -0.002797262277454138, -0.0024297889322042465, -0.009616125375032425, 0.00763795105740428, -0.015605597756803036, -0.020564772188663483, -0.0032282706815749407, -0.00909410696476698, -0.015399537980556488, 0.00656300550326705, 0.03255745396018028, 0.01206136867403984, -0.003120089415460825, 0.004777153953909874, -0.031403519213199615, -0.00013501211651600897, 0.012700154446065426, -0.01982295513153076, -0.006466844584792852, 0.012466619722545147, -0.007321992889046669, 0.0186964962631464, 0.019259726628661156, -0.0033999872393906116, 0.011999551206827164, -0.0027783734258264303, -0.014561561867594719, -0.005961997900158167, -0.018916292116045952, 0.008565220050513744, -0.0060478560626506805, -0.019630633294582367, 0.0011814096942543983, -0.021004365757107735, 0.006449672859162092, -0.003925439901649952, 0.0007126235868781805, -0.0018871646607294679, -0.02465849369764328, -0.00563917076215148, 0.01553691178560257, -0.004193317610770464, -0.015578123740851879, 0.021155476570129395, 0.013785403221845627, 0.019644370302557945, -0.03733804076910019, -0.013098536990582943, -0.01033733505755663, 0.023408396169543266, -0.005357555579394102, -0.020564772188663483, 0.012562781572341919, -0.0006967398221604526, 0.00166822609025985, 0.006624823436141014, -0.005470888689160347, -0.0014158027479425073, 0.010090063326060772, -0.0029380698688328266, -0.008228655904531479, -0.003401704365387559, -0.004519579000771046, -0.009286429733037949, -0.003312411718070507, -0.0025431218091398478, 0.013874695636332035, 0.010694505646824837, -0.005460585467517376, 0.00656300550326705, 0.012514700181782246, 0.017089229077100754, -0.0018030235078185797, -0.00807067658752203, 0.0032420081552118063, -0.012610862031579018, -0.002500192727893591, -0.016045192256569862, -0.016182566061615944, 0.02879342809319496, 0.007157145068049431, -0.0055498783476650715, -0.024095263332128525, -0.014314290136098862, 0.01150500774383545, 0.012308640405535698, 0.024067789316177368, 0.02948029339313507, 0.013613685965538025, 0.006312299519777298, 0.005378161557018757, 0.01607266627252102, -0.002970695961266756, -0.01689690724015236, -0.004203620832413435, 0.01028925459831953, 0.0034944312646985054, -0.0037262486293911934, 0.008654513396322727, -0.021595070138573647, 0.00208292156457901, -0.006913307588547468, -0.0025843337643891573, -0.005203010980039835, -0.02970009110867977, -0.004759982228279114, -0.021759917959570885, 0.004152105655521154, 0.002273526741191745, 0.01666337251663208, 0.006178360898047686, 0.01733650080859661, 0.0016871149418875575, 0.022982539609074593, -0.009142188355326653, -0.0005383313400670886, 0.010090063326060772, 0.0015179740730673075, 0.021924765780568123, 0.02299627661705017, -0.05398767814040184, -0.020647196099162102, -0.00027581967879086733, -0.005000385455787182, 0.01605892926454544, 0.009554307907819748, -0.0207433570176363, 0.0013814594130963087, 0.027996663004159927, 0.008572089485824108, 0.009100976400077343, 0.0076585570350289345, -0.01119591761380434, -0.009478752501308918, -0.0014501460827887058, -0.003027362283319235, -0.003650693455711007, -0.01320156641304493, 0.015674283728003502, -7.421373447868973e-05, -0.0038258442655205727, 0.027241110801696777, 0.011099756695330143, 0.012555912137031555, -0.010007639415562153, -0.006545834243297577, 0.0053541213274002075, 0.023106176406145096, -0.004529882222414017, 0.01138137187808752, 0.018957505002617836, -0.016938118264079094, -0.003516754601150751, -0.006875529885292053, 0.0036403904668986797, -0.02412273734807968, 0.014781358651816845, 0.01542701292783022, 0.0024744351394474506, -0.01673205755650997, 0.011395108886063099, -0.012796315364539623, -0.012459751218557358, 0.028848376125097275, 0.004608871415257454, -0.002896857913583517, 0.0023868598509579897, 0.0144791379570961, 0.0019455482251942158, -0.0017412055749446154, -0.010124406777322292, 0.002685646526515484, 0.002575747901573777, 0.005604827310889959, 0.000295567064313218, 0.008201180957257748, 0.009801579639315605, 0.0021086789201945066, -0.009492489509284496, -0.015880344435572624, 0.004667255096137524, 0.016841957345604897, -0.009588651359081268, 0.019644370302557945, 0.011546219699084759, 0.0024572634138166904, -0.0018287809798493981, 0.012205610983073711, 0.008077545091509819, 0.007926435209810734, -0.026719091460108757, -0.001182268257252872, 0.010199962183833122, -0.006291693542152643, -0.015550648793578148, 0.004509276244789362, 0.028079086914658546, -0.0067896717227995396, -0.01228803489357233, 0.008942997083067894, 0.021073052659630775, 0.005800584331154823, 0.005257959943264723, 0.01025491114705801, 0.0076722945086658, 0.019094878807663918, 0.02677404135465622, 0.006796540226787329, 0.015523173846304417, -0.01350378803908825, 0.012088843621313572, 0.02005648985505104, 0.014190654270350933, 0.010907433927059174, 0.008723199367523193, -0.010543394833803177, -0.011766016483306885, -0.005041597411036491, 0.005402201786637306, -0.021732443943619728, -0.006212703883647919, -0.006144017446786165, 0.002984433202072978, -0.0006709823501296341, -0.007686031982302666, 0.01115470565855503, -0.011793491430580616, 0.0018287809798493981, -0.013016113080084324, 0.007589870598167181, 0.002333627548068762, -0.014589035883545876, 0.00601351261138916, -0.0018236294854432344, 0.008393503725528717, 0.01583913341164589, -0.03489279747009277, 0.0021516080014407635, -0.008578957989811897, -0.004567659460008144, -0.021237900480628014, -0.008441584184765816, -0.006291693542152643, -0.012768841348588467, 0.0026513030752539635, 4.808062658412382e-05, 0.0005014122580178082, 0.009114713408052921, 0.017377711832523346, -0.017144178971648216, -0.0026358487084507942, -0.02375183068215847, -0.014643985778093338, -0.027735654264688492, 0.01681448332965374, 0.005220182240009308, -0.02299627661705017, -0.005968866404145956, 0.013606817461550236, 0.022803954780101776, 0.008345423266291618, -0.0017326197121292353, -0.018201952800154686, 0.007170882076025009, 0.0027955451514571905, 0.024974452331662178, -0.01119591761380434, 0.00045419021626003087, -0.011889652349054813, -0.009526832960546017, -0.0019987802952528, 0.007143407594412565, 0.005275131668895483, -0.018298113718628883, -0.029095647856593132, -0.00458139693364501, 0.018531648442149162, -0.03379381448030472, 0.001708579482510686, 0.002678777789697051, 0.01432802714407444, 0.0008384059183299541, -0.03643137961626053, -0.0012552478583529592, -0.003767460584640503, 0.013792271725833416, -0.0042345295660197735, 0.0076585570350289345, 0.04667942225933075, -0.0076585570350289345, 0.0015050953952595592, 0.018050841987133026, 0.002185951452702284, 0.0007066135294735432, 0.02277648076415062, 0.0038018040359020233, -0.0029277668800204992, -0.004183014389127493, -0.0037777635734528303, 0.024397484958171844, 0.010014507919549942, 0.01523469015955925, -0.0151247913017869, 0.003904833924025297, -0.021773654967546463, 0.0063157337717711926, -0.015069842338562012, 0.011965207755565643, 0.0028401913587003946, 0.004866446368396282, -0.021361535415053368, 0.0015823678113520145, -0.00409028772264719, -0.00015626204549334943, -0.019644370302557945, 0.004653518088161945, -0.011614905670285225, -0.004258569795638323, 0.0010646424489095807, -0.0014398430939763784, 0.01946578547358513, -0.009602388367056847, 0.001280146767385304, 0.002105244668200612, 0.0369533970952034, -0.02338092215359211, -0.010667030699551105, -0.00044860944035463035, 0.01778983138501644, 0.010790666565299034, -0.026952626183629036, 0.010124406777322292, 0.01010380033403635, 0.005264828912913799, 0.00927269272506237, -0.008125626482069492, -0.016938118264079094, -0.012590255588293076, 0.0012277731439098716, -0.00916966237127781, -0.020935678854584694, 0.012246822938323021, -0.01109288726001978, -0.016841957345604897, 0.005704422947019339, -0.011573693715035915, -0.011484401300549507, -0.00044174076174385846, -0.0036094815004616976, 0.0022151432931423187, 0.015852870419621468, -0.009210874326527119, -0.0005370434373617172, -0.008702593855559826, -0.003976954612880945, 0.013022981584072113, 0.03829965367913246, 0.011972076259553432, 0.025771215558052063, -0.014382976107299328, 0.012377327308058739, -0.02405405044555664, -0.0005915634101256728, -0.011024201288819313, -0.01542701292783022, 0.015811657533049583, 0.008750674314796925, -0.013290858827531338, 0.009959558956325054, 0.011690461076796055, -0.010886827483773232, 0.005687251221388578, 0.00719835702329874, -0.006923610344529152, -0.009547439403831959, 0.026361921802163124, 0.0009487338247708976, 0.018669020384550095, -0.011711067520081997, -0.022336885333061218, 0.004365033935755491, 0.002738878596574068, 0.013654897920787334, 0.003843015991151333, 0.005917351692914963, 0.019795481115579605, 0.025400308892130852, 0.008846835233271122, -0.027186160907149315, 0.0245211198925972, 0.015646809712052345, -0.007445628754794598, 0.0019318109843879938, 0.015262165106832981, 0.015317114070057869, 0.0024057484697550535, -0.0270075760781765, -0.01229490339756012, -0.005800584331154823, 0.0011917126830667257, -0.03637642785906792, 0.009293298237025738, 0.0023387791588902473, 0.0039666518568992615, -0.016690846532583237, -0.005862402264028788, 0.0005572201334871352, -0.0004803769988939166, -0.022364361211657524, 0.014410451054573059, -0.009073501452803612, 0.007555527146905661, 0.0036541277077049017, -0.01239793375134468, -0.015591860748827457, 0.0043547311797738075, -0.0124803576618433, -0.012988638132810593, 0.01244601421058178, 0.01728155091404915, -0.019850431010127068, 0.004282610025256872, -0.013833483681082726, 0.016622159630060196, -0.0038121070247143507, 0.0027577674482017756, 0.02156759612262249, -0.002282112604007125, -0.002879686187952757, -0.02239183522760868, -0.0167457964271307, -0.03750288859009743, -0.0246447566896677, -0.009471883997321129, -0.01681448332965374, 0.0011676723370328546, -0.0032660483848303556, 0.012768841348588467, 0.01658094860613346, -0.015097317285835743, 0.007102195639163256, -0.012418539263308048, 0.005972300656139851, -0.0030857459641993046, 0.028010400012135506, -0.0020640327129513025, -0.0164298377931118, -0.0005297454772517085, -0.012006419710814953, 0.020757094025611877, 0.005625433288514614, 0.0076585570350289345, -0.0024950411170721054, -0.007679163012653589, 0.007967647165060043, 0.0006619672058150172, 0.005752503871917725, -0.0008624462643638253, -0.000983935664407909, -0.011079150252044201, -0.00463978061452508, -0.027048787102103233, -0.018888818100094795, -0.010454102419316769, -2.185361154261045e-05, 0.010660162195563316, -0.008469059132039547, 0.009698549285531044, 0.0002964256564155221, 0.007273911964148283, 0.019108615815639496, 0.017102966085076332, 0.027873026207089424, 0.011779753491282463, 0.004863012116402388, 0.0007886081584729254, -0.006944216322153807, 0.004976344760507345, 0.026430608704686165, -0.004553922452032566, -0.00250706123188138, 0.00833168625831604, 0.008791886270046234, 0.01991911791265011, -0.001489640912041068, 0.009114713408052921, -0.005096546374261379, -0.02479586750268936, -0.005309475120157003, 0.0076310825534164906, 0.00938946008682251, -0.004962607752531767, -0.0043444279581308365, -0.002343930536881089, 0.01658094860613346, -0.006322602741420269, -0.010096931830048561, 0.013661767356097698, 0.017762357369065285, 0.002723424229770899, 0.014314290136098862, 0.013792271725833416, -0.019108615815639496, 0.018641546368598938, 0.02662293054163456, 0.01413570437580347, -0.004337559454143047, -0.03016715869307518, -0.017309026792645454, -0.002694232389330864, -0.018160739913582802, 0.0005383313400670886, -0.005824624560773373, 0.012555912137031555, -0.027955450117588043, 0.01983669400215149, 0.016910644248127937, -0.006209269631654024, 0.005635736510157585, 0.007686031982302666, 0.022872641682624817, -0.009616125375032425, -0.007109064143151045, 0.004516144748777151, -0.020042752847075462, -0.0037193798925727606, -0.014314290136098862, 0.006040987558662891, -0.011189049109816551, 0.003588875522837043, -0.007404416799545288, 0.020042752847075462, 0.0035854410380125046, 0.013077930547297001, -0.021169213578104973, 0.0009530267561785877, 0.00454705348238349, 0.00915592536330223, 0.03621158003807068, -0.008929259143769741, 0.003111503552645445, 0.022075876593589783, -0.0061577544547617435, 0.015056105330586433, -0.017240339890122414, 0.01017935574054718, 0.005755938123911619, 0.005869270768016577, -0.00251564709469676, -0.01033733505755663, -0.015468224883079529, 0.021169213578104973, -0.012768841348588467, -0.0319804847240448, -0.04033277928829193, 0.005319777876138687, 0.00719835702329874, 0.0005885583814233541, -0.007844011299312115, 0.010268648155033588], "771c144d-788b-499e-b0c2-2d480b3c1010": [-0.0022372910752892494, 0.0015482569579035044, -0.0013109127758070827, -0.0020109862089157104, -0.01369604840874672, -0.002792934188619256, 0.03959416598081589, 0.03211690112948418, -0.028525460511446, 0.04568783938884735, 0.015955418348312378, 0.03099825605750084, 0.01895809732377529, -0.005957523360848427, 0.0016936073079705238, 0.029393883422017097, 0.0019337112316861749, -0.0029769218526780605, 0.029276130720973015, -0.030821628868579865, 0.043538860976696014, -0.015454971231520176, -0.03414812684059143, 0.020871570333838463, 0.02584659866988659, 0.005147977266460657, 0.004669609013944864, 0.012547965161502361, -0.03738631308078766, -0.016764964908361435, 0.027406815439462662, 0.025169525295495987, 0.02580244280397892, 0.002682541497051716, 0.020076744258403778, -0.02565525285899639, -0.00030863945721648633, 0.0004838877939619124, -0.052252523601055145, 0.018825626000761986, 0.021460331976413727, 0.006218785885721445, 0.022343473508954048, -0.024183349683880806, -0.04754243418574333, 0.02038584277033806, -0.0015942539321258664, 0.03255847096443176, -0.0054901945404708385, 0.002465436002239585, 0.021519208326935768, -0.011002467945218086, 0.017324287444353104, 0.02019449509680271, 0.01607316918671131, -0.02518424391746521, 0.011296847835183144, 0.037003617733716965, -0.0025831880047917366, -0.08484043180942535, 0.019546858966350555, -0.014822053723037243, 0.028098609298467636, -0.002929084934294224, 0.020621348172426224, 0.010833199135959148, 0.007690688129514456, 0.0051038204692304134, -0.043038416653871536, 0.019855957478284836, 0.005232611671090126, 0.012224146164953709, -0.03944697603583336, 0.01248908881098032, -0.0010220520198345184, 0.025463905185461044, 0.05787518620491028, 0.04583502933382988, 0.046335477381944656, -0.014512954279780388, 0.00016489902918692678, -0.014225932769477367, 0.06034798175096512, -0.006796507630497217, 0.07194656878709793, 0.005195814184844494, -0.011090781539678574, -0.03829888999462128, -0.012319820001721382, -0.02842242829501629, -0.01622036099433899, 0.01576407067477703, -0.018354618921875954, 0.0052657295018434525, 0.007171842735260725, 0.003458969760686159, 0.03485463932156563, -0.00942753255367279, -0.007525098975747824, -0.01329127512872219, 0.005692581180483103, 0.026862211525440216, -0.03909371793270111, 0.017029905691742897, 0.013916833326220512, -0.02672974020242691, 0.04577615112066269, -0.001425905036740005, -0.04027123749256134, 0.029599949717521667, 0.002316405763849616, -0.01906113140285015, 0.009795508347451687, 0.007639171555638313, -0.0652346983551979, -0.03173420578241348, -0.03826945275068283, -0.03379486873745918, -0.0036245586816221476, -0.020371124148368835, 0.03912315517663956, -0.056521039456129074, -0.005972242448478937, -0.027936700731515884, -0.023005828261375427, 0.0014341844944283366, 0.005129578523337841, 0.016455864533782005, 0.011112860403954983, 0.01951742172241211, -0.011164376512169838, 0.00431267311796546, 0.0264647975564003, 0.021975496783852577, 0.03815170004963875, 0.026229294016957283, -0.010627132840454578, 0.03285285457968712, -0.009390735067427158, 0.022343473508954048, -0.053076788783073425, -0.02374177984893322, -0.024683797731995583, -0.000391433946788311, 0.02961466833949089, -0.0025574297178536654, -0.015425533056259155, 0.03862271085381508, -0.025007614865899086, 0.0015344579005613923, -0.06811962276697159, -0.04886714741587639, -0.03874045982956886, -0.009508486837148666, 0.020533032715320587, -0.060230229049921036, -0.0050339046865701675, 0.01475581806153059, 0.008294167928397655, 0.04033011570572853, 0.007940911687910557, -0.05937652662396431, 0.00013028632383793592, 0.03170476853847504, 0.06623559445142746, 0.03394206240773201, 0.07436048984527588, 0.005041264463216066, -0.029850173741579056, 0.01894337870180607, 0.0012133992277085781, -0.006597800645977259, 0.033147234469652176, 0.016853278502821922, -0.02503705397248268, -0.01585238426923752, 0.011031906120479107, 0.0439804308116436, -0.01626451686024666, -0.020665504038333893, 0.00315354997292161, 0.015337219461798668, 0.010229718871414661, 0.009743991307914257, 0.010575615800917149, 0.05036848783493042, 0.012857064604759216, 0.004397307522594929, 0.018104394897818565, 0.0060053602792322636, 0.0032105862628668547, 0.01001629326492548, -0.02534615248441696, 0.026229294016957283, -0.01750091463327408, -0.022682009264826775, 0.02363874576985836, 0.002597907092422247, -0.020326966419816017, -0.007499340921640396, -0.004735844675451517, -0.04645322635769844, -0.01290122140198946, 0.05139881744980812, -0.03532565012574196, 0.019178884103894234, -0.012319820001721382, -0.05007410794496536, 0.0367681123316288, -0.02873152680695057, 0.03738631308078766, -0.03188139945268631, 0.0006922539323568344, -0.010825839824974537, 0.004805759992450476, -0.016750244423747063, -0.011775216087698936, 0.017177097499370575, 0.004989747889339924, -0.027936700731515884, 0.0026696622371673584, 0.002929084934294224, -0.02281448058784008, -0.012555324472486973, -0.0419197678565979, -0.029644107446074486, -0.009883821941912174, 0.0019576295744627714, -0.014792615547776222, 0.01663249358534813, 0.0010054931044578552, 0.019605735316872597, 0.001618172274902463, 0.004496660549193621, -0.052399713546037674, 0.014262730255723, 0.05996529012918472, -0.004331071861088276, -0.04000629857182503, 0.015006041154265404, -0.009412813000380993, 0.019281916320323944, 0.003355936612933874, -0.00673395162448287, 0.003733111545443535, 0.030497809872031212, -0.005541711114346981, 0.04362717643380165, 0.006881142035126686, -0.005147977266460657, -0.003687114454805851, 0.03217577934265137, -0.005755136720836163, 0.021710554137825966, -0.012121113017201424, 0.03017399087548256, 0.025463905185461044, -0.008485515601933002, 0.023373804986476898, -0.007157123647630215, -0.0019024333450943232, 0.03258791193366051, 0.007451504003256559, -0.00014822513912804425, 0.023167738690972328, -0.0249193012714386, 0.02965882606804371, -0.03785732015967369, 0.001027571619488299, 0.03341217711567879, 0.029938487336039543, 0.006686114706099033, -0.0188992228358984, 0.010855277068912983, -0.002402879996225238, 0.007918832823634148, 0.006803866941481829, 0.030056240037083626, 0.03647373244166374, 0.0070577701553702354, -0.030085677281022072, -0.015749352052807808, 0.00819113478064537, 0.025169525295495987, 0.005453397054225206, 0.005210533272475004, -0.030144553631544113, -0.02266729064285755, -0.05131050571799278, -0.007407346740365028, -0.017339006066322327, 0.010067809373140335, 0.012216786853969097, 0.002702780067920685, -0.004728485364466906, 0.02349155582487583, 0.012378696352243423, 0.019487982615828514, 0.014741098508238792, 0.0542837455868721, 0.0016144925029948354, -0.017177097499370575, 0.004423065576702356, 0.00776428310200572, 0.03959416598081589, -0.02590547502040863, 0.002380801597610116, 0.028760965913534164, 0.0011784415692090988, 0.04162538796663284, 0.041331008076667786, -0.02564053237438202, -0.011157017201185226, -0.011738418601453304, 0.005898647475987673, 0.006064236164093018, -0.0077348449267446995, -0.01755979098379612, -0.011377803049981594, -0.025463905185461044, 0.012113753706216812, 0.02019449509680271, -0.07224094867706299, 0.031851958483457565, 0.0340009368956089, -0.013320713303983212, 0.040035735815763474, -0.029173098504543304, -0.0305861234664917, -0.019958991557359695, -0.0549902580678463, -0.043450549244880676, -0.011333645321428776, -0.006285021547228098, -0.01570519432425499, -0.04969141259789467, -0.061466626822948456, -0.01998842880129814, 0.022107968106865883, -0.010310674086213112, 0.007565576583147049, -0.016926873475313187, 0.04006517305970192, -0.0006761549739167094, 0.002088261069729924, -0.007904114201664925, -0.016411706805229187, 0.01251852698624134, -0.04033011570572853, 0.0011821213411167264, 0.0008578429115004838, -0.012621560133993626, 0.028981750831007957, 0.00040753287612460554, 0.0010616093641147017, -0.011311567388474941, -0.017383163794875145, -0.025993790477514267, 0.02930556982755661, 0.009802867658436298, 0.022902796044945717, -0.023211894556879997, -0.004908793140202761, -0.005810333415865898, -0.02394784614443779, -0.010435785166919231, -0.0037294316571205854, -0.036385416984558105, -0.013703407719731331, -0.010671289637684822, -0.02555221877992153, 0.022946951910853386, 0.007344791200011969, -0.01040634699165821, -0.013276556506752968, -0.011274769902229309, 0.015307781286537647, 0.004897754173725843, -0.011083422228693962, 0.03444250673055649, 0.025817161425948143, -0.01454975176602602, -0.007396307773888111, 0.008691581897437572, -0.0065021272748708725, -0.006781788542866707, 0.027627600356936455, -0.034795764833688736, -0.0016936073079705238, 0.012393414974212646, -0.02091572806239128, 0.027112435549497604, -0.029599949717521667, -0.013202961534261703, -0.011473475955426693, -0.014270090498030186, 0.022888075560331345, -0.007072489243000746, 0.0063990941271185875, -0.0029898008797317743, -0.00583241181448102, -0.012533245608210564, 6.385668712027837e-06, 0.01491036731749773, 0.02246122434735298, -0.032676223665475845, -0.00875045731663704, -0.017957204952836037, 0.014358404092490673, -0.0068517038598656654, -0.008426639251410961, 0.005129578523337841, 0.01828102394938469, 0.004647530615329742, 0.02842242829501629, -0.01081112027168274, -0.035149019211530685, 0.05867001414299011, -0.029276130720973015, -0.011679542250931263, 0.00611575273796916, 0.009258263744413853, -0.0009093594853766263, 0.012474369257688522, -0.0204447191208601, 0.03965304046869278, 0.007882035337388515, 0.0019337112316861749, -0.0069547370076179504, -0.03423644229769707, 0.017883609980344772, 0.03594384714961052, 0.012746671214699745, -0.001196840312331915, -0.006310780066996813, 0.00774956401437521, -0.01446879655122757, -0.02796613797545433, 0.023344365879893303, -0.020694943144917488, -0.025876037776470184, 0.0075729358941316605, -0.006332858465611935, 0.01343846507370472, -0.052811846137046814, -0.04165482893586159, -0.027524568140506744, 0.0013513900339603424, 0.010148764587938786, -0.018251584842801094, -0.003355936612933874, 0.01240813359618187, -0.028437146916985512, -0.02862849459052086, 0.01143667846918106, -0.05036848783493042, -0.01730956695973873, 0.012422853149473667, 0.034942954778671265, -0.05501969903707504, -0.004647530615329742, -0.02883456088602543, 0.026538394391536713, 0.01434368547052145, 0.02564053237438202, 0.01226094365119934, 0.003747830633074045, 0.015410814434289932, 0.015469689853489399, -0.003659516340121627, 0.01393155287951231, -0.004382588434964418, 0.013033692725002766, 0.009824945591390133, 0.008272089064121246, -0.011892968788743019, -0.029482197016477585, 0.022829201072454453, -0.001098406850360334, -0.018884502351284027, -0.022534819319844246, -0.03007095865905285, 0.0039925342425704, -0.023167738690972328, 0.010950950905680656, -0.009876462630927563, -0.003731271717697382, -0.008433998562395573, 0.00613047182559967, -0.01145875733345747, 0.0006209586863406003, -0.010803760960698128, 0.015513847582042217, -0.009567363187670708, -0.009795508347451687, -0.017486196011304855, -0.009177309460937977, 0.007948270998895168, -0.0028922874480485916, -0.039270345121622086, 0.008411919698119164, -0.016867997124791145, 0.015587442554533482, 0.01084055844694376, -0.003527045249938965, 0.02936444617807865, -0.010362190194427967, 0.06376279890537262, -0.0022501701023429632, -0.0035141659900546074, -0.031233761459589005, 0.042155273258686066, -0.03591440990567207, 0.017942486330866814, 0.01240813359618187, 0.017648104578256607, -0.004393627401441336, -0.025154804810881615, 0.039211470633745193, -0.00014696021389681846, 0.0050596632063388824, -0.03276453912258148, -0.027068277820944786, -0.019046412780880928, -0.014917726628482342, -0.013401667587459087, 0.004386268090456724, -0.004279555287212133, -0.007094567641615868, -0.03043893352150917, 0.010141405276954174, 0.03085106611251831, -0.010266516357660294, -0.00664195790886879, 0.012842345051467419, -0.006123112514615059, -0.022740885615348816, 0.026199856773018837, 0.020076744258403778, 0.006884821690618992, -0.058640576899051666, 0.04247909411787987, -0.00821321364492178, 0.022534819319844246, -0.009118433110415936, 0.028525460511446, -0.010126685723662376, 0.022549539804458618, -0.01689743436872959, 0.010803760960698128, -0.0022078531328588724, 0.0269799642264843, 0.007712766528129578, -0.0003866042534355074, -0.0025463905185461044, -0.02574356645345688, 0.01647058315575123, -0.017118221148848534, -0.03420700132846832, -0.03641485422849655, -0.019532140344381332, 0.03647373244166374, -0.006108393426984549, -0.00839720107614994, 0.011812013573944569, 0.013821160420775414, -0.016205640509724617, 0.003348577069118619, 0.007032012101262808, 0.027642320841550827, 0.027583444491028786, -0.015454971231520176, 0.03588497266173363, 0.017191816121339798, 0.011480836197733879, 0.03332386165857315, -0.010008933953940868, 0.008102820254862309, -0.04512851685285568, -0.014836772345006466, 0.031027695164084435, 0.00037602498196065426, 0.0001268365595024079, -0.0020312247797846794, 0.004702726844698191, 0.0281722042709589, 0.00016443905769847333, -0.02271144837141037, -0.005504913628101349, 0.009383375756442547, -0.014822053723037243, 0.0329706035554409, -0.027318501845002174, 0.0269799642264843, -0.020459437742829323, 0.012702514417469501, -0.009184668771922588, 0.006951057352125645, 0.014947164803743362, 0.018825626000761986, 0.009022759273648262, 0.022417068481445312, 0.015822947025299072, -0.00028564099920913577, -0.033147234469652176, 0.01642642728984356, 0.01807495765388012, 0.011208534240722656, -0.011973923072218895, 0.017957204952836037, -0.002288807649165392, -0.01647058315575123, 0.02584659866988659, -0.0003504966734908521, 0.0020956206135451794, -0.0060053602792322636, 0.0204447191208601, 0.021813588216900826, -0.004264836199581623, -0.016867997124791145, 0.020165057852864265, -0.02982073463499546, 0.050957247614860535, 0.0075324587523937225, 0.0073263924568891525, 0.008308886550366879, -0.0025831880047917366, -0.02019449509680271, -0.008264729753136635, 0.03629710525274277, -0.010892074555158615, -0.021666398271918297, 0.005004466976970434, -0.01766282506287098, 0.025272557511925697, -0.030041519552469254, -0.003449770389124751, 0.015028120018541813, 0.01576407067477703, -0.02019449509680271, -0.02085685171186924, -0.0097881481051445, -0.016190921887755394, 0.05643272399902344, -0.013298634439706802, 0.009530565701425076, -0.019708767533302307, 0.002220732159912586, 0.027995577082037926, 0.0016282915603369474, -0.020577190443873405, -0.010237078182399273, -0.012400774285197258, 0.023609308525919914, 0.008220572955906391, -0.01885506510734558, 0.0076759690418839455, -0.006752350367605686, -0.0002502233546692878, -0.0076318117789924145, 0.04686535894870758, -0.015145871788263321, -0.001098406850360334, 0.01413761917501688, 0.014895648695528507, -0.008949164301156998, 0.021489769220352173, 0.003834304865449667, 0.034324754029512405, 0.03338273614645004, 0.001162802567705512, -0.021769430488348007, 0.020091462880373, -0.004717445932328701, -0.024345260113477707, 0.01375492475926876, -0.012062236666679382, -0.017221253365278244, 0.006020079366862774, -0.0066640363074839115, -0.01570519432425499, -0.025728847831487656, -0.0408894382417202, 0.028083890676498413, 0.007852597162127495, -0.01906113140285015, -0.014351044781506062, -0.01895809732377529, -0.005416599567979574, -0.0312926359474659, -0.018222147598862648, -0.009979495778679848, -0.007065129932016134, 0.01730956695973873, 0.004224358592182398, 0.008110180497169495, 0.015572723001241684, -0.010185562074184418, 0.0031664292328059673, -0.03476632758975029, -0.0370919294655323, -0.022475942969322205, -0.005814013071358204, -0.024786829948425293, 0.006586761679500341, 0.020430000498890877, -0.00624454440549016, -0.030615562573075294, 0.01642642728984356, -0.003929978236556053, 0.022166844457387924, 0.01190032809972763, -0.012393414974212646, 0.02384481206536293, 0.029835453256964684, 0.02332964725792408, -0.0023789615370333195, 0.018398774787783623, -0.02780422940850258, 0.03229353204369545, 0.0019061131170019507, 0.007462543435394764, -0.02112179435789585, -0.008316246792674065, -0.02023865282535553, -0.013202961534261703, 0.0004296113911550492, -0.0049124727956950665, 0.010847917757928371, -0.0028260517865419388, 0.03806338459253311, -0.008375122211873531, -0.012327179312705994, 0.006892181001603603, 0.02306470461189747, -0.011510273441672325, -0.002165535930544138, 0.004945590626448393, 0.02219628170132637, -0.017942486330866814, 0.016926873475313187, -0.03588497266173363, 0.028245799243450165, -0.03258791193366051, -0.012893862091004848, 0.009125792421400547, 0.02528727613389492, 0.017574509605765343, -0.02584659866988659, -0.03223465383052826, 0.04259684309363365, -0.02203437313437462, 0.03765125200152397, 0.0001604143180884421, -0.03753350302577019, 0.013151444494724274, 0.04041843116283417, 0.01761866733431816, -0.007355830166488886, 0.041389886289834976, -0.027848387137055397, 0.025007614865899086, -0.012224146164953709, 0.0047100866213440895, 0.0018067597411572933, -0.007190241478383541, 0.006859063636511564, 0.03326498717069626, 0.00963359884917736, 0.01529306173324585, 0.0515165701508522, 0.03426587954163551, 0.027274344116449356, 0.04966197535395622, -0.010553537867963314, 0.012143191881477833, 0.0052841282449662685, -0.02388896979391575, -0.031645894050598145, -0.011856170371174812, -0.015469689853489399, -0.030291743576526642, 0.015616880729794502, -0.010008933953940868, -0.0023476837668567896, -0.028054453432559967, 0.04200808331370354, -0.019591016694903374, -0.02677389793097973, 0.005523312371224165, 0.03632654249668121, 0.003497607074677944, -0.007193921133875847, 0.020488876849412918, 0.005913366563618183, -0.022755606099963188, -0.0013265516608953476, -0.004448824096471071, -0.003929978236556053, 0.005887608043849468, 0.029629386961460114, -0.02287335693836212, 0.03841664269566536, 0.041684266179800034, -0.0010128525318577886, -0.011164376512169838, -0.02409503608942032, -0.024595482274889946, -0.0262734517455101, 0.02235819213092327, 0.0027690157294273376, -0.014424639753997326, -0.028657931834459305, 0.033559367060661316, -0.02050359547138214, 0.006833305116742849, 0.018310461193323135, 0.028201643377542496, 0.025360871106386185, 0.0009075195994228125, -0.02502233348786831, 0.02409503608942032, 0.01396099105477333, 0.004757923074066639, -0.024963458999991417, 0.023520994931459427, 0.020694943144917488, 0.011598587967455387, 0.0006241784431040287, 0.011473475955426693, -0.0009686955017969012, -0.011539711616933346, -0.024036159738898277, 0.025257838889956474, 0.0008716419688425958, 0.021695835515856743, -0.001032171305269003, -0.013158803805708885, -0.03279397636651993, -0.006075275596231222, -0.0175156332552433, -0.0457172766327858, -0.0038379845209419727, -0.008978602476418018, -0.015675757080316544, -0.009721912443637848, 0.017574509605765343, 0.006693474482744932, 0.02070966176688671, 0.04448087885975838, -0.005600586999207735, -0.029496915638446808, 0.011679542250931263, 0.01782473362982273, -0.024065598845481873, 0.019046412780880928, 0.0021894541569054127, 0.011260050348937511, -0.005563789512962103, 0.005107500124722719, 0.020930446684360504, 0.021931340917944908, -0.019237758591771126, 0.007874676026403904, -0.019399669021368027, -0.01786889135837555, -0.005552750546485186, 0.012496448121964931, -0.006730271968990564, -0.017574509605765343, -0.005828732158988714, 0.008691581897437572, 0.007742204703390598, 0.0370919294655323, 0.0026788616087287664, -0.009324499405920506, -0.0076170931570231915, 0.006016399711370468, -0.028142767027020454, 0.014615987427532673, 0.00922146625816822, 0.007830518297851086, -0.012040158733725548, 0.01372548658400774, -0.02998264506459236, -0.005552750546485186, 0.007171842735260725, -0.0009249984286725521, -0.004754243418574333, 0.030615562573075294, -0.014638065360486507, 0.010965670458972454, -0.0008978602127172053, -0.013710767030715942, -0.028437146916985512, -0.004761603195220232, 0.011237971484661102, 0.004949270747601986, -0.004272195510566235, -0.011208534240722656, 0.006343897897750139, -0.04021236300468445, -0.03903484344482422, -0.013372229412198067, 0.03170476853847504, -0.04115438088774681, 0.009111073799431324, 0.014041945338249207, 0.01931135542690754, -0.0020293849520385265, 0.015028120018541813, 0.0033632961567491293, -0.02203437313437462, -0.007815799675881863, 0.04141932353377342, 0.018148552626371384, 0.020621348172426224, -0.028201643377542496, -0.013983068987727165, 0.001208799541927874, 0.0056962608359754086, 0.003753350116312504, 0.004636491183191538, -0.012886501848697662, 0.002467275829985738, -0.004125005565583706, -0.03567890450358391, -0.005861849989742041, 0.010516740381717682, 0.030674438923597336, -0.01329127512872219, -0.004570255987346172, -0.029070064425468445, -0.0034092930145561695, 0.03511958196759224, -0.007388947997242212, -0.020165057852864265, -0.02656783163547516, -0.03729799762368202, -0.006314459722489119, -0.02235819213092327, 0.007624452468007803, 0.041389886289834976, -0.004305313341319561, -0.012113753706216812, -0.016367550939321518, 0.010060450062155724, 0.031027695164084435, -0.012275663204491138, -0.016190921887755394, 0.00176720239687711, 0.015513847582042217, 0.007550857495516539, -0.019546858966350555, -0.007024652324616909, 0.012547965161502361, 0.01529306173324585, -0.017177097499370575, 0.005769855808466673, 0.0005059663089923561, -0.0077348449267446995, 0.019193602725863457, -0.001032171305269003, 0.0026843813247978687, 0.00014546531019732356, -0.015749352052807808, -0.030733313411474228, -0.0032105862628668547, -0.015675757080316544, -0.00875781662762165, -0.02462492138147354, 0.004345790948718786, -0.0020385843235999346, -0.004713766276836395, 0.012834985740482807, -0.010001574642956257, -0.028554899618029594, -0.0028094928711652756, -0.01947326399385929, -0.0019153124885633588, 0.016029013320803642, -0.05572621151804924, 0.0038048666901886463, -0.008838771842420101, -0.0025739886332303286, -0.018972817808389664, -0.01750091463327408, 0.03341217711567879, -0.0498386025428772, -0.011444037780165672, -0.0042979540303349495, -0.0032510636374354362, -0.012187348678708076, -0.012592121958732605, 0.02203437313437462, -0.020886288955807686, -0.010546177625656128, -0.010700727812945843, 0.00706880958750844, -0.06264414638280869, -0.00041857213363982737, 0.005825052037835121, -0.029806016013026237, 0.032676223665475845, 0.0553140789270401, 0.021313142031431198, 0.008941804990172386, -0.028613775968551636, -0.020106181502342224, 0.015219466760754585, -0.02100404165685177, -0.039329223334789276, 0.006104713771492243, -0.022181563079357147, 9.193638106808066e-05, 0.029084783047437668, 0.0005216052522882819, -0.04330335929989815, 0.020724380388855934, 0.01735372468829155, 0.00213793758302927, -0.0020459438674151897, -0.01992955431342125, -0.02219628170132637, -0.01714765839278698, 0.011782575398683548, 0.014387842267751694, -0.00023918408260215074, 0.01978236250579357, 0.010973029769957066, -0.0354139618575573, -0.03012983500957489, -0.003366975812241435, -0.007503020577132702, -0.0030505170579999685, -0.006170949432998896, -0.018428213894367218, -0.07895282655954361, -0.015631599351763725, -0.024477731436491013, 0.021813588216900826, 0.01261419989168644, -0.006531565450131893, 0.018369337543845177, -0.005655783694237471, -0.019326074048876762, -0.012010720558464527, 0.01529306173324585, -0.0329706035554409, 0.0035104863345623016, 0.011554431170225143, 0.0035123261623084545, 0.02038584277033806, 0.001976028550416231, -0.019958991557359695, 0.00963359884917736, 0.0004328311770223081, -0.0055932276882231236, 0.01269515510648489, 0.04253796860575676, -0.00816169660538435, -0.018913941457867622, 0.05063343048095703, -0.02147505059838295, -0.003133311402052641, -0.02584659866988659, -0.015175309963524342, 0.0006651157164014876, -0.0006168189574964345, 0.0050339046865701675, -0.014130259864032269, -0.0002181404852308333, 0.01532249990850687, 0.0011241651372984052, -0.019443824887275696, 0.015425533056259155, 0.005508593283593655, 0.025478623807430267, 0.009699834510684013, -0.004408346489071846, -0.0009962937328964472, -0.0100457314401865, -0.008301527239382267, -0.022284597158432007, -0.03255847096443176, 0.006616199389100075, 0.03344161435961723, 0.007407346740365028, 0.01343846507370472, -0.019649891182780266, -0.02586131915450096, -0.003826945321634412, 0.0030781151726841927, 0.0003084094787482172, -0.02895231358706951, 0.023756498470902443, -0.0003746450529433787, 0.03373599424958229, 0.00792619213461876, 0.008654783479869366, -0.011959203518927097, -0.00813961774110794, 0.0188992228358984, 0.011421959847211838, 0.02656783163547516, 0.01741260103881359, -0.003665036056190729, 0.02363874576985836, 0.0204447191208601, 0.0027782151009887457, 0.014667503535747528, 0.014512954279780388, 0.016205640509724617, 0.02085685171186924, -0.00027069199131801724, 0.029320288449525833, 0.008102820254862309, -0.044215936213731766, 0.007705407217144966, -0.0010616093641147017, -0.025213681161403656, -0.008919726125895977, -0.00998685508966446, 0.011679542250931263, -0.048749394714832306, 0.018604841083288193, 0.006899540778249502, 0.03249959647655487, -0.002905166707932949, 0.02689165063202381, 0.020871570333838463, -0.013048411346971989, 0.05778687447309494, -0.017280129715800285, 0.005707300268113613, -0.013129365630447865, -0.01086999662220478, 0.00813225843012333, -0.02122482657432556, -0.003952057100832462, 0.004857276566326618, 0.0016991269076243043, -0.00754349771887064, 0.012658357620239258, 0.003041317453607917, -0.02363874576985836, -0.017692262306809425, -0.008787254802882671, -0.023859532549977303, -0.02827523835003376, 0.010759604163467884, -0.014799974858760834, 0.004923512227833271, 0.009265623055398464, 0.005869209300726652, -0.00542027922347188, 0.015675757080316544, -0.01143667846918106, 0.03791619464755058, 0.005618985742330551, -0.03550227731466293, 0.00034681690158322453, -0.017162377014756203, 0.005755136720836163, 0.007436784915626049, -0.006995214149355888, 0.004835198167711496, -0.004842557478696108, 0.00410660682246089, -0.000881301355548203, 0.0014498234959319234, 0.0008900407701730728, 0.009258263744413853, 0.03141038864850998, -0.008176416158676147, 0.015190028585493565, -0.014858851209282875, 0.0074294256046414375, 0.012341898865997791, -0.021092355251312256, 0.01813383214175701, 0.007190241478383541, -0.004662249702960253, -0.015219466760754585, -0.013607733882963657, 0.0027782151009887457, 0.01267307624220848, -0.003076275112107396, 0.005725699011236429, 0.018398774787783623, 0.010502020828425884, -0.02065078541636467, -0.018354618921875954, -0.00755821680650115, 0.018781470134854317, 0.017677543684840202, -0.00800714734941721, -0.011789935640990734, -0.0016926872776821256, 0.026744458824396133, -0.010310674086213112, 0.026332328096032143, 0.002493034116923809, -0.023344365879893303, -0.013210320845246315, -0.007293274626135826, -0.006421172525733709, -0.0011756817111745477, 0.0012823946308344603, 0.006682435050606728, -0.01679440215229988, 0.000892800569999963, -0.035767219960689545, 0.01998842880129814, 0.001519738812930882, 0.00839720107614994, -0.005935444962233305, -0.008640064857900143, 0.0003829245106317103, -0.003030278254300356, 0.014064024202525616, 0.0071792020462453365, 0.008294167928397655, -0.012113753706216812, 0.007348470855504274, -0.02091572806239128, -0.0017515633953735232, 0.012246225029230118, 0.04259684309363365, 0.0021360977552831173, 0.010119326412677765, 0.0020312247797846794, -0.004588654730468988, 0.03373599424958229, 0.01617620326578617, -0.02384481206536293, -0.0007787281647324562, -0.014299527741968632, -0.0249193012714386, 0.0007400907343253493, 0.013335431925952435, -0.0053430041298270226, 0.028496023267507553, -0.025876037776470184, 0.01205487735569477, 0.008272089064121246, -0.021460331976413727, -0.009030118584632874, -0.0010901273926720023, 0.01496188435703516, -0.013688689097762108, 0.014064024202525616, -0.014505594037473202, -0.0010809280211105943, -0.011068703606724739, -0.013916833326220512, -0.02827523835003376, 0.023785937577486038, 0.006833305116742849, 0.005159016698598862, -0.013666610233485699, 0.012121113017201424, 0.02790726162493229, 0.01390211470425129, -0.046688731759786606, -0.010075169615447521, -0.010354830883443356, -0.011973923072218895, 0.01910528913140297, 0.0006255583721213043, 0.00161633244715631, 0.0038784618955105543, 0.00388214155100286, 0.01552856620401144, -0.03214633837342262, 0.021592803299427032, -0.0014406241243705153, -0.016132045537233353, -0.03629710525274277, -0.03815170004963875, 0.01729484833776951, 0.013924193568527699, 0.02106291800737381, -0.03997685760259628, -0.022475942969322205, 0.021239547058939934, 0.02477211132645607, 0.002730378182604909, 0.011834092438220978, -0.014851490966975689, 0.002194973872974515, -0.0018987535731866956, 0.01226094365119934, -0.008227932266891003, 0.013607733882963657, 0.014306887984275818, -0.02718603052198887, -0.030733313411474228, -0.005747777409851551, 0.0054717957973480225, -0.032823413610458374, 0.03632654249668121, -0.012938018888235092, -0.006549964193254709, 0.000394883711123839, 0.026332328096032143, -0.026744458824396133, -0.021151231601834297, -0.00036015603109262884, -0.023256052285432816, 0.0015307781286537647, 0.010332752019166946, 0.004868315998464823, -0.008058663457632065, -0.05599115416407585, 0.014792615547776222, 0.016809120774269104, -0.019502701237797737, 0.006958416663110256, -0.01745675876736641, 0.02441885508596897, 0.009088994935154915, 0.005030225031077862, -0.005710979923605919, -0.01248908881098032, 0.025198962539434433, 0.0033080996945500374, 0.012327179312705994, 0.0007032931898720562, 0.020047305151820183, -0.013202961534261703, 0.01864899881184101, -0.03261734917759895, 0.012268302962183952, 0.007267516106367111, 0.01140724029392004, 0.009088994935154915, 0.027583444491028786, -0.007918832823634148, -0.034884076565504074, -0.025213681161403656, -0.007090887986123562, -0.0003021998854819685, 0.012150551192462444, 0.005571149289608002, -0.00018605761579237878, -0.0021526566706597805, 0.009177309460937977, 0.0035380844492465258, -0.015675757080316544, -0.031645894050598145, 0.0017745618242770433, 0.021195389330387115, -0.0038122262340039015, -0.006299740634858608, -0.006325499154627323, -0.037474624812603, 0.02256425842642784, -0.010310674086213112, 0.024345260113477707, 0.004905113484710455, -0.042214151471853256, -0.015778789296746254, -0.010369549505412579, 0.0017957204254344106, -0.0005193054093979299, 0.010001574642956257, -0.03099825605750084, 0.04801344498991966, 0.015558004379272461, 0.00041857213363982737, 0.014306887984275818, -0.0005022865370847285, 0.0073227123357355595, -0.005663143005222082, -0.020076744258403778, 0.0012400774285197258, 0.04371549189090729, 0.02100404165685177, -0.01566103659570217, -0.01081847958266735, 0.00792619213461876, 0.012702514417469501, 0.0052068536169826984, 0.0236976221203804, 0.025876037776470184, -0.004978708457201719, 0.0010156123898923397, 0.014814693480730057, 0.009545284323394299, -0.013475262559950352, 0.002833411330357194, 0.02050359547138214, 0.015337219461798668, 0.02374177984893322, -0.02461020089685917, -0.02821636199951172, -0.017280129715800285, -0.019502701237797737, 0.011598587967455387, 0.039152592420578, -0.023300208151340485, -0.005777215585112572, 0.019075850024819374, -0.01226094365119934, 0.006984175182878971, -0.018575403839349747, 0.018766751512885094, 0.0068701026029884815, -0.014424639753997326, -1.7967553844755457e-07, -0.023918407037854195, 0.008154337294399738, 0.012157910503447056, 0.013534138910472393, 0.0015316980425268412, -0.00630709994584322, -0.015484409406781197, -0.0023844812531024218, 0.004544497467577457, -0.018619559705257416, -0.02121010795235634, -0.017118221148848534, -0.004496660549193621, 0.0057404180988669395, 0.005423958878964186, -0.008448717184364796, -0.013431105762720108, -0.0046070534735918045, 0.003197707235813141, -0.005192134529352188, 0.00461073312908411, -0.00898596178740263, -0.03594384714961052, 0.01627923548221588, -0.026921087875962257, -0.019443824887275696, -0.011885608546435833, -0.0031075531151145697, -0.002437837654724717, 0.04933815449476242, -0.010502020828425884, 0.01735372468829155, -0.007904114201664925, 0.011753137223422527, 0.001467302325181663, -0.021401455625891685, -0.03120432235300541, -0.0015022599836811423, 0.004378908313810825, 0.0045003402046859264, -0.01638226956129074, -0.004051410127431154, -0.006667715962976217, 0.027730634436011314, -0.019178884103894234, 0.0021250585559755564, 0.00922146625816822, -0.013990428298711777, -0.014049304649233818, -0.015925979241728783, -0.026744458824396133, 0.027774790301918983, -0.006895861122757196, 0.001538137556053698, 0.004908793140202761, -0.010656571015715599, -0.010053090751171112, -0.0005505833541974425, -0.02827523835003376, 0.002991640940308571, 0.04453975707292557, -0.029997363686561584, -0.002597907092422247, -0.0013771483208984137, 0.01931135542690754, -0.014733739197254181, -0.033500488847494125, -0.013166164048016071, 0.00883141253143549, -0.009567363187670708, 0.010641851462423801, -0.015042838640511036, 0.0124596506357193, -0.02038584277033806, 0.02481626719236374, 0.03170476853847504, 0.018369337543845177, -0.00958208180963993, 0.02543446607887745, -0.004062449559569359, 0.007451504003256559, 0.003247383749112487, -0.029673544690012932, -0.008691581897437572, -0.01101718656718731, 0.025169525295495987, -0.01367396954447031, 0.00854439102113247, -0.026494236662983894, 0.010332752019166946, -0.006638278253376484, 0.03017399087548256, 0.015690475702285767, -0.026715021580457687, -0.00027161193429492414, -0.008463436737656593, -0.006520526017993689, 0.004128685221076012, 0.007065129932016134, -0.008912366814911366, 0.019855957478284836, -0.027774790301918983, 0.00012292682367842644, -0.012768750078976154, 0.002334804506972432, -0.013938912190496922, 0.029806016013026237, -0.015587442554533482, -0.007370549254119396, 0.012216786853969097, 0.012790828943252563, -0.01570519432425499, 0.02229931578040123, -0.002914366079494357, 0.011392521671950817, 0.028348833322525024, -0.01272459328174591, 0.02874624729156494, -0.021283702924847603, 0.01626451686024666, 0.01910528913140297, -0.02157808281481266, -0.00023331947159022093, -0.00451873941347003, 0.02070966176688671, 0.00836776290088892, -0.0067670694552361965, -0.011399880982935429, -0.0415959507226944, 0.0002345843822695315, 0.0059869615361094475, -0.010796401649713516, -0.003532564966008067, 0.010722806677222252, -0.0049566300585865974, 0.0094496114179492, -0.013681328855454922, -0.0026291850954294205, -0.0014433838659897447, 0.010443144477903843, -0.007112966384738684, -0.01267307624220848, 0.00965567771345377, -0.018016081303358078, -0.005762496497482061, 0.005607946775853634, -0.02471323497593403, 0.004080848302692175, -0.0005979601992294192, 0.0022924873046576977, 0.007609733380377293, 0.0031075531151145697, 0.0007042131037451327, 0.011399880982935429, -0.03532565012574196, -0.01605845056474209, -0.0026935806963592768, 0.00800714734941721, 0.02147505059838295, 0.01287914253771305, 0.0333532989025116, -0.008787254802882671, 0.011318926699459553, 0.0057367379777133465, -0.006557323504239321, -0.012592121958732605, -0.011289488524198532, 0.014608627185225487, 0.0018417173996567726, 0.011009827256202698, 0.007815799675881863, 0.06676547229290009, 0.001007332932204008, -0.00645061070099473, -0.010524099692702293, 0.013607733882963657, -0.029070064425468445, 0.009802867658436298, 0.010759604163467884, 0.03182252123951912, 0.004478261806070805, -0.017471477389335632, -0.02100404165685177, 0.005449717398732901, 0.016308674588799477, -0.03305891901254654, -0.0008895808132365346, 0.006288701202720404, 0.030468372628092766, -0.008949164301156998, 0.020518314093351364, 0.01470430102199316, -0.009390735067427158, 0.005052303895354271, 0.02522839978337288, -0.0072822351939976215, 0.02260841429233551, 0.0004976868513040245, 0.002927245106548071, 0.00728959497064352, 0.0166766494512558, -0.009905900806188583, -0.005486514884978533, 0.0023568831384181976, 0.00021883043518755585, -0.011554431170225143, 0.022475942969322205, -0.0007258316618390381, 0.024021441116929054, -0.004827838856726885, 0.02302054688334465, 0.004618092440068722, -0.0059464843943715096, 0.025728847831487656, 0.026759179309010506, 0.0010606894502416253, -0.019914833828806877, 0.002785574644804001, -0.004136044532060623, 0.0005611626547761261, -0.009118433110415936, -0.02157808281481266, -0.010906794108450413, 0.010928872972726822, -0.0011260050814598799, 0.011164376512169838, -0.01467486284673214, -0.004717445932328701, -0.007911473512649536, -0.007403667084872723, 0.010671289637684822, -0.007712766528129578, -0.002803973387926817, 0.006156230345368385, -0.014439359307289124, 0.007020972669124603, -0.02801029570400715, -0.014939805492758751, 0.005917046219110489, -0.006844344548881054, 0.000869802082888782, -0.008272089064121246, 0.005699940491467714, 0.009560003876686096, -0.015013400465250015, -0.003008199855685234, 0.009147871285676956, 0.008470796048641205, 0.02302054688334465, 0.01730956695973873, -0.008765176869928837, 0.0036539968568831682, -0.009066916070878506, -0.009935338981449604, -0.01916416361927986, 0.016146766021847725, -0.0006885741604492068, 0.012709873728454113, -0.025066491216421127, 0.0021692155860364437, -0.019708767533302307, -0.021180670708417892, 0.0008408240391872823, 0.010060450062155724, 0.00939809437841177, 0.006016399711370468, 0.0014829413266852498, -0.012113753706216812, -0.013968350365757942, 0.015396094880998135, -0.01410818099975586, -0.008382482454180717, 0.020989323034882545, -0.00793355144560337, -0.003412972902879119, 0.024389415979385376, -0.011973923072218895, 0.028525460511446, 3.843619197141379e-05, -0.0034368911292403936, 0.0024267984554171562, -0.014424639753997326, 0.003552803536877036, -0.013328072614967823, -0.0022004935890436172, -0.028289956972002983, 0.010877355933189392, 0.011657464317977428, 0.0006365976296365261, -0.01627923548221588, -0.018207427114248276, -0.005074382293969393, -0.003337537869811058, -0.019576296210289, 0.0014893808402121067, 0.003525205422192812, -0.003996213898062706, -0.0014268250670284033, -0.014321606606245041, -0.018295742571353912, -0.004077168647199869, 0.007859956473112106, 0.016161484643816948, 0.014019866473972797, -0.004165482707321644, 0.038092825561761856, -0.0019944272935390472, -0.017397882416844368, -0.008794615045189857, 0.027333220466971397, -0.0034460905008018017, 0.011157017201185226, 0.016249798238277435, 0.016455864533782005, 0.019855957478284836, 0.009118433110415936, 0.01864899881184101, -0.010553537867963314, -0.03382430970668793, 0.0035031267907470465, -0.007911473512649536, 0.030821628868579865, -0.030115114524960518, 0.007028331980109215, -0.01869315654039383, 0.013968350365757942, -0.0009019999415613711, -0.02450716868042946, 0.03909371793270111, -0.01348998211324215, 0.0038379845209419727, 0.013254477642476559, 0.006704513914883137, -0.011311567388474941, -0.007451504003256559, 0.011834092438220978, 0.002373442053794861, 0.011260050348937511, 0.021754711866378784, 0.014667503535747528, -0.014130259864032269, -0.004960309714078903, -0.00011470486788311973, 0.014866210520267487, -0.0103989876806736, 0.007212319876998663, -0.012834985740482807, -0.007407346740365028, 0.006056876853108406, -0.03461913391947746, 0.013688689097762108, 0.0006287781288847327, -0.0036907943431288004, 0.012967457063496113, 0.01019292138516903, -0.0007184721762314439, -0.028054453432559967, 0.011686902493238449, -0.01372548658400774, 0.004776322282850742, 0.00312227220274508, -0.003999893553555012, 0.013593015260994434, -0.00645061070099473, -0.008706300519406796, -0.02596435137093067, -0.016514740884304047, 0.006822265684604645, -0.0012271982850506902, 0.005037584807723761, -0.0060899946838617325, 0.014873569831252098, -0.0021048199851065874, 0.0183840561658144, 0.0033320181537419558, -0.010546177625656128, -0.0261115413159132, -0.00646532978862524, -0.01998842880129814, -0.02065078541636467, -0.020076744258403778, -0.041743140667676926, -0.014005147852003574, 0.010803760960698128, 0.009177309460937977, -0.016367550939321518, -0.00419860053807497, 0.013350151479244232, 0.014535032212734222, 0.006340217776596546, 0.010075169615447521, 0.0027616561856120825, 0.008220572955906391, 0.0036024802830070257, -0.008073383010923862, -0.012187348678708076, -0.011885608546435833, -0.015248904936015606, 0.01605845056474209, 0.011524992994964123, -0.01446879655122757, 0.02508120983839035, -0.0007272115908563137, -0.018148552626371384, 0.007580295205116272, -0.006273982580751181, 0.04760131239891052, 0.01396099105477333, -0.00581769272685051, 0.01982652023434639, -0.0071203261613845825, 0.009008040651679039, -0.002813172759488225, 0.002084581181406975, -0.003030278254300356, 0.007433105260133743, -0.006881142035126686, 0.002270408906042576, -0.005111179780215025, -0.0019649891182780266, -2.353030868107453e-05, -0.004765282850712538, -0.0023955204524099827, -0.014976602979004383, 0.0221521258354187, 0.01488092914223671, 0.004780001938343048, -0.005155337043106556, -0.008411919698119164, -0.003666875883936882, -0.010494661517441273, 0.004640171304345131, 0.011009827256202698, 0.0018417173996567726, -0.011098140850663185, 0.012945378199219704, 0.00958208180963993, -0.02137201651930809, 0.0015951738459989429, -0.002231771359220147, -0.010862637311220169, 0.007374228909611702, -0.0021416174713522196, 0.01128212921321392, 0.0242127887904644, -0.005508593283593655, 0.0014553430955857038, -0.0018895542016252875, -0.013070490211248398, -0.00877989549189806, 0.016235079616308212, -0.0018113594269379973, 0.0007520499639213085, 0.013144085183739662, -0.0240508783608675, -0.006204066798090935, 0.0022538499906659126, 0.005791934672743082, 0.016235079616308212, 0.008456077426671982, -0.0009052197565324605, 0.018619559705257416, -0.004673289135098457, 0.016647212207317352, -0.007157123647630215, -0.00983966514468193, 0.019046412780880928, -0.011451398022472858, -0.0045960140414536, 0.023830093443393707, 0.010318033397197723, -0.008882928639650345, 0.009096354246139526, 0.01025179773569107, -0.030968818813562393, 0.019237758591771126, -0.002112179296091199, 0.0007718286360614002, 0.007837878540158272, -0.025066491216421127, -0.0036963140591979027, 0.00018536766583565623, -0.0026034268084913492, 0.00038131463224999607, -0.007370549254119396, 0.005423958878964186, -0.01679440215229988, 0.012768750078976154, 0.024036159738898277, -0.023785937577486038, -0.005935444962233305, 0.003188507864251733, 0.010928872972726822, -0.0037147128023207188, 0.0103989876806736, -0.00999421440064907, -0.0011204853653907776, -0.002401040168479085, 0.020694943144917488, -0.007823158986866474, -0.01663249358534813, 0.017442038282752037, -0.012628919444978237, -0.00020238652359694242, -0.010597694665193558, -0.0011802813969552517, 0.017751138657331467, -0.010973029769957066, -0.003952057100832462, -0.002999000484123826, 0.014321606606245041, -0.019944272935390472, 0.009280342608690262, -0.0052399709820747375, -0.0022759283892810345, 0.005372442305088043, -0.0003302580153103918, -0.006873782258480787, -0.014939805492758751, 0.014115540310740471, 0.008441357873380184, -0.0008440437959507108, 0.004367869347333908, 0.022520100697875023, 0.003554643364623189, 0.004529778379946947, -0.00397781515493989, 0.0020864210091531277, 0.010671289637684822, -0.016205640509724617, 0.0023200856521725655, -0.014763177372515202, 0.008905007503926754, -0.011554431170225143, -0.01689743436872959, 0.0074883014895021915, -0.0034957672469317913, -0.014196494594216347, 0.029496915638446808, -0.03564946725964546, 0.005331965163350105, -0.025890756398439407, -0.020268090069293976, -0.00749566126614809, -0.0109951077029109, -0.016720807179808617, -0.006969456095248461, 0.0073079937137663364, -0.00437522865831852, -0.009670396335422993, -0.004794721025973558, 0.025478623807430267, 0.012547965161502361, -0.006936338264495134, -0.014733739197254181, 0.006899540778249502, 0.0052841282449662685, 0.017574509605765343, 0.007190241478383541, 0.002586867893114686, -0.017854170873761177, -0.011973923072218895, -0.022269878536462784, -0.0025077529717236757, 0.0036355978809297085, 0.00418388145044446, -0.0011112859938293695, -0.02745097316801548, 0.02801029570400715, 0.004154443275183439, -0.007911473512649536, 0.01947326399385929, 0.004886714741587639, 0.012150551192462444, 0.0010892074787989259, 0.02915837988257408, -0.0183840561658144, 0.0009604160441085696, 0.011318926699459553, -0.010987748391926289, 0.00036314583849161863, 0.012040158733725548, -0.005618985742330551, -0.015749352052807808, 0.010516740381717682, 0.0009732951875776052, 0.004209639970213175, 0.023049985989928246, 0.01058297511190176, 0.008875569328665733, -0.009773429483175278, -0.010156123898923397, 0.0008251850958913565, 0.014564470387995243, -0.004647530615329742, 0.0012032799422740936, 0.0051185390911996365, 0.03467801213264465, 0.00213793758302927, -0.002895967336371541, 0.012091674841940403, -0.007595014292746782, -0.011348364874720573, -0.00922146625816822, 0.024183349683880806, -0.030321180820465088, 5.97385223954916e-05, 0.02085685171186924, -0.018413493409752846, 0.007837878540158272, 0.015160590410232544, -0.030556686222553253, -0.001368868863210082, -0.0038232654333114624, 0.0030928340274840593, 0.021386737003922462, -0.0016715286765247583, 0.001096567022614181, 0.024139193817973137, -0.006472689099609852, -0.011142298579216003, 0.00397781515493989, 0.026391202583909035, 0.01658833585679531, -0.009280342608690262, -0.017677543684840202, 0.001976028550416231, -0.011215893551707268, 0.020223934203386307, 0.021151231601834297, -0.04047730565071106, 0.010097247548401356, -0.0017543232534080744, -0.015042838640511036, 0.005302526988089085, -0.02770119532942772, 0.0048535969108343124, 0.0003334778011776507, 0.017545072361826897, -0.008110180497169495, 0.014586549252271652, -0.012864423915743828, -0.002419438911601901, -0.0004176521906629205, -0.010656571015715599, 0.022343473508954048, -0.017059344798326492, -0.003871102351695299, 0.0020753818098455667, 0.013541498221457005, -0.011510273441672325, -0.0038490237202495337, 0.0038674224633723497, -0.006965776439756155, 0.015896541997790337, 0.040153488516807556, 0.009685114957392216, 0.01181937288492918, 0.007624452468007803, 0.019797082990407944, 0.010001574642956257, -0.0045040203258395195, 0.014623346738517284, 0.0021636958699673414, -0.006156230345368385, 0.007683328352868557, -0.0014185456093400717, 0.002540870802477002, 0.028702089563012123, 0.0030137193389236927, 0.008735738694667816, 0.002279608277603984, -0.0077348449267446995, -0.007683328352868557, 0.01142931915819645, 0.003619039198383689, 0.0034828882198780775, -0.012798188254237175, 0.010207640938460827, 0.01998842880129814, 0.02862849459052086, 0.0008123059524223208, 0.008949164301156998, -0.006104713771492243, 0.010597694665193558, -0.009390735067427158, 0.017942486330866814, -0.0007580295205116272, 0.011598587967455387, 0.002158176386728883, -0.012135832570493221, -0.009648317471146584, -0.01663249358534813, 0.0021692155860364437, -0.01066393032670021, -0.01617620326578617, 0.0047248057089746, 0.015940699726343155, 0.01906113140285015, 0.01741260103881359, -0.004470902495086193, -0.03152814134955406, -0.008456077426671982, 0.00706880958750844, 0.004290594253689051, 0.0023403242230415344, 0.0056778620928525925, 0.020312247797846794, 0.005269409157335758, 0.014417280443012714, 0.00396309606730938, 0.009383375756442547, 0.013041052035987377, -0.002500393660739064, 0.01078904140740633, -0.004246437456458807, -0.03888764977455139, 0.0032602630089968443, 0.0006885741604492068, 0.012702514417469501, -0.004080848302692175, 0.016132045537233353, -0.0006462569581344724, 0.01791304722428322, 0.008014506660401821, 0.015145871788263321, -0.021931340917944908, -0.006899540778249502, 0.021872464567422867, 0.0014866210985928774, -0.006255583371967077, -0.009611519984900951, -0.011745777912437916, 0.006995214149355888, 0.005346684250980616, -0.029644107446074486, 0.00816169660538435, 0.04356829822063446, 0.004897754173725843, 0.0007911473512649536, 0.01648530177772045, -0.01140724029392004, -0.007771642878651619, -0.008640064857900143, -0.003900540294125676, -0.005026545375585556, -0.008102820254862309, -0.020268090069293976, -0.012238865718245506, 0.009030118584632874, -0.015719912946224213, 0.0061930278316140175, -0.030041519552469254, -0.013997788541018963, -0.010531459003686905, 0.005957523360848427, 0.013615094125270844, -0.010796401649713516, 0.0034203322138637304, 0.00499342754483223, -0.010340111330151558, 0.0166766494512558, -0.039270345121622086, 0.009214106947183609, 0.010207640938460827, 0.006207746919244528, 0.004702726844698191, 0.000810466066468507, 0.02182830683887005, -0.022372910752892494, -0.01823686622083187, -0.013247118331491947, 0.012224146164953709, -0.004051410127431154, -0.01617620326578617, -0.007837878540158272, 0.006744991056621075, 0.012864423915743828, -0.014741098508238792, -0.01343846507370472, -7.963219832163304e-05, -0.008308886550366879, -0.0017607627669349313, 0.02982073463499546, -0.0027046198956668377, -0.004283234942704439, -0.011480836197733879, -0.0034755286760628223, 0.005302526988089085, 0.021239547058939934, -0.007808440364897251, -0.02390368841588497, -0.02790726162493229, -0.011311567388474941, 0.012555324472486973, -0.018251584842801094, -0.0022078531328588724, -0.017692262306809425, 0.010906794108450413, 0.018413493409752846, -0.014682223089039326, -0.01267307624220848, -0.005663143005222082, 0.01022235956043005, 0.006866422947496176, -0.004386268090456724, 0.019958991557359695, -0.020694943144917488, 0.00030035999952815473, 0.014711660332977772, -0.047041989862918854, 0.005258370190858841, -0.011039265431463718, -0.0036797551438212395, -0.0007065129466354847, 0.016764964908361435, 0.011907687410712242, 0.005983281880617142, 0.013835879042744637, 0.002511432860046625, 0.012731952592730522, -0.014395201578736305, -0.012996895238757133, -0.011569149792194366, 0.023005828261375427, -0.024065598845481873, -0.018295742571353912, 0.009317140094935894, -0.02796613797545433, 0.004470902495086193, -0.0017865210538730025, -0.027024121955037117, -0.041272133588790894, -0.019914833828806877, 0.0072638364508748055, 0.004761603195220232, -0.026847492903470993, 0.010215000249445438, -0.0033136194106191397, 0.005523312371224165, -0.040182925760746, -0.013011613860726357, 0.013740205205976963, -0.010597694665193558, 0.0062960609793663025, 0.006682435050606728, -0.009648317471146584, 0.0051626963540911674, -0.008559110574424267, -0.0017294848803430796, -0.02730378322303295, -0.0012603161158040166, 0.010384269058704376, 0.005876568611711264, -0.009935338981449604, -1.5150241779338103e-05, -0.0009576562442816794, 0.008993321098387241, -0.015219466760754585, 0.0026770217809826136, -0.011767856776714325, -0.019502701237797737, -0.006439571268856525, 0.004058769904077053, -0.019075850024819374, 0.01343846507370472, 0.004772642161697149, -0.008257370442152023, -0.00094293721485883, -0.02122482657432556, -0.0033025802113115788, -0.014005147852003574, 0.0017451238818466663, 0.002165535930544138, -0.0032805015798658133, 0.006237184628844261, -0.012194707989692688, 0.008919726125895977, -0.013416387140750885, -0.00813961774110794, 0.004533458035439253, 0.002474635373800993, 0.006590441334992647, 0.005379802081733942, -0.009486408904194832, -0.0026291850954294205, -0.016823839396238327, 0.028025014325976372, -0.012496448121964931, -0.0249193012714386, 0.01580822840332985, 0.004941910970956087, -0.004415706265717745, -0.0035215255338698626, 0.0038306249771267176, -0.004205959849059582, -0.021136512979865074, -0.0020772216375917196, 0.014851490966975689, -0.009537925012409687, 0.018222147598862648, 0.0015206587268039584, -0.017986642196774483, -0.0010662090498954058, 0.016146766021847725, 0.0008389841532334685, -0.0006954736891202629, 0.014667503535747528, -0.0029677224811166525, 0.008522313088178635, 0.01354885846376419, -0.01396099105477333, -0.01251852698624134, -0.009199387393891811, -0.0001913472660817206, 0.012606840580701828, -0.008897648192942142, 0.0011407240526750684, -0.004824158735573292, -0.010766963474452496, 0.028819842264056206, -0.003234504722058773, -0.004739524330943823, -0.0007373309344984591, 0.0008219652809202671, 0.009295061230659485, 0.013946271501481533, 0.0388287752866745, -0.004695367533713579, 0.0077790021896362305, 0.016544178128242493, 0.010273875668644905, 0.007377909030765295, -0.025581657886505127, 0.006248224060982466, -0.014873569831252098, 0.017059344798326492, -0.005571149289608002, -0.010943591594696045, -0.008882928639650345, 0.008890287950634956, 0.017589230090379715, -0.017942486330866814, 0.0018591962289065123, -0.009008040651679039, -0.02244650572538376, -0.045187391340732574, -0.0038232654333114624, -0.012010720558464527, 0.002515112515538931, 0.007193921133875847, -0.006579401902854443, -0.0067081935703754425, -0.026229294016957283, -0.009567363187670708, -0.022520100697875023, -0.004397307522594929, 0.03141038864850998, 0.002025705063715577, 0.013018973171710968, 0.018310461193323135, 0.02584659866988659, 0.011127579025924206, -0.024889864027500153, -0.014682223089039326, 0.021592803299427032, 0.0029750820249319077, 0.005795614328235388, 0.007319032680243254, -0.017603948712348938, -0.020724380388855934, 0.009265623055398464, -0.0118488110601902, 0.011892968788743019, -0.007801080588251352, 0.005166376009583473, 0.015587442554533482, -0.0076759690418839455, 0.009773429483175278, 0.02343267947435379, -0.00305787636898458, 0.01166482362896204, 0.017545072361826897, -0.020636066794395447, 0.004033011384308338, 0.005931765306740999, -0.02070966176688671, 0.014652784913778305, -0.011370442807674408, -0.014409921132028103, 0.010141405276954174, -0.015440252609550953, 0.018310461193323135, 0.01184145174920559, -0.010340111330151558, -0.021592803299427032, -0.013821160420775414, 0.009898541495203972, -0.022740885615348816, 0.002309046220034361, -0.019855957478284836, -0.006218785885721445, 0.010531459003686905, 0.007175522390753031, 0.006078955251723528, -0.004695367533713579, -0.0004866475937888026, -0.015366656705737114, -0.003959416411817074, -0.0005078061949461699, 0.015057557262480259, -0.0007617092924192548, -0.02091572806239128, 0.007756923791021109, -0.0009861743310466409, -0.0022520101629197598, -0.002605266636237502, -0.02934972569346428, 0.020415281876921654, -0.009552644565701485, -0.010825839824974537, 0.007300633937120438, -0.00410660682246089, -0.002945643849670887, -0.0008753217407502234, -0.010597694665193558, 0.015396094880998135, -0.014005147852003574, 0.003856383264064789, 0.012636278755962849, -0.016720807179808617, 0.015366656705737114, 0.030144553631544113, 0.0207979753613472, -0.0076318117789924145, 0.022740885615348816, -0.011414600536227226, 0.010671289637684822, 0.0168385598808527, 0.010281235910952091, -0.010943591594696045, 0.0035049666184931993, -0.009618879295885563, -0.00813961774110794, 0.006377015728503466, 0.00958208180963993, 0.019605735316872597, 0.00549755385145545, 0.003874782007187605, 0.010766963474452496, 0.01652945950627327, -0.013938912190496922, 0.011289488524198532, 0.0030744352843612432, 0.01393155287951231, -0.03641485422849655, -0.015690475702285767, 0.012842345051467419, 0.0017957204254344106, 0.017810015007853508, 0.01648530177772045, 0.005906006786972284, -0.003952057100832462, 0.014189135283231735, -0.019797082990407944, -0.00916258990764618, -0.011583869345486164, 0.025773003697395325, 0.0027892543002963066, -0.01349734142422676, 0.002388161141425371, 0.018222147598862648, 0.0077348449267446995, -0.006524205673485994, -0.00981022696942091, -0.020209215581417084, -0.011341004632413387, -0.018148552626371384, 0.00027299183420836926, 0.0013670290354639292, 0.005236291326582432, -0.018001360818743706, -0.008507593534886837, -0.005372442305088043, -0.0002865609130822122, -0.004868315998464823, 0.010487302206456661, 0.012209427542984486, 0.009567363187670708, -0.01290122140198946, -0.00795563030987978, -0.014417280443012714, 0.030615562573075294, -0.008470796048641205, 0.0030431575141847134, -0.005821372382342815, 0.007882035337388515, -0.003758869832381606, -0.008875569328665733, -0.008242650888860226, -0.03002680093050003, 0.0019465903751552105, -0.008581188507378101, 0.0020753818098455667, 0.02446301095187664, -0.01998842880129814, -0.010421066544950008, 0.008853490464389324, -0.015454971231520176, -0.0012023599119856954, 0.007168163079768419, 0.02914365939795971, 0.007039371412247419, -0.008949164301156998, 0.0027708555571734905, -0.009677755646407604, 0.010479941964149475, 0.004176522139459848, -0.00564106460660696, 0.0027414176147431135, 0.01607316918671131, -0.012503807432949543, 0.004945590626448393, 0.012864423915743828, -0.003918939270079136, 0.01184145174920559, -0.004982388578355312, 0.006432211957871914, -0.01976764388382435, -0.028819842264056206, -0.006951057352125645, -0.007473582401871681, -0.013512060977518559, 0.017324287444353104, -0.012179989367723465, 0.007852597162127495, -0.021695835515856743, 0.0015620560152456164, 0.004540817812085152, -0.044215936213731766, 0.009891181252896786, 0.015035479329526424, -0.010671289637684822, -0.008824052289128304, 0.014836772345006466, 0.005151656921952963, 0.012290381826460361, -0.023624027147889137, -0.007300633937120438, -0.038858212530612946, 0.02955579198896885, -0.0038968606386333704, -0.01396099105477333, 0.015925979241728783, -0.002183934673666954, 0.016926873475313187, 0.010178202763199806, -0.004419385921210051, -0.008765176869928837, 0.019797082990407944, 0.00079206726513803, -0.017633385956287384, 0.007407346740365028, -0.014512954279780388, -0.001985227921977639, 0.0024323181714862585, -0.00821321364492178, 0.02899646945297718, 0.014181775972247124, -0.004555536899715662, 0.005320925731211901, 0.005644744262099266, 0.018398774787783623, -0.008919726125895977, -0.004434105008840561, -0.002108499640598893, -0.024757392704486847, -0.006163589656352997, 0.009412813000380993, -0.01343846507370472, 0.01817798987030983, 0.00727487588301301, -0.017221253365278244, -0.015337219461798668, 0.003319139126688242, 0.0012069597141817212, 0.0130557706579566, 0.02786310575902462, 0.035561151802539825, 0.01248908881098032, 0.01791304722428322, 0.006012719590216875, 0.025876037776470184, 0.008927085436880589, -0.0049750288017094135, 0.007756923791021109, -0.004511379636824131, 0.007171842735260725, -0.0018637959146872163, 0.0029769218526780605, -0.021813588216900826, 0.01248908881098032, 0.008220572955906391, -0.006932658609002829, -0.007333751767873764, -0.012938018888235092, -0.001288834260776639, -0.005751457065343857, 0.008330965414643288, -0.010207640938460827, 0.018560685217380524, 7.68148893257603e-05, 0.014409921132028103, -0.013718127273023129, 0.02524312026798725, -0.01854596473276615, -0.00016167924331966788, 0.010899434797465801, -0.0014268250670284033, 0.007587654981762171, -0.0006085394998081028, -0.02718603052198887, -0.025360871106386185, -0.00916258990764618, 0.002927245106548071, 0.018045518547296524, 0.012511166743934155, -0.01385059766471386, 0.011149657890200615, 0.013239759020507336, 0.028775684535503387, 0.003852703608572483, 0.004205959849059582, -0.013122006319463253, -0.027009401470422745, 0.0009240785147994757, -0.0004705486644525081, 0.006951057352125645, -0.010067809373140335, 0.008728379383683205, 0.007609733380377293, -0.0073079937137663364, 0.03332386165857315, 0.007245437707751989, -0.0028573297895491123, -0.03656204789876938, -0.010958310216665268, 0.010295954532921314, 0.019252479076385498, -0.013423746451735497, -0.001270435401238501, 0.020886288955807686, -0.009957416914403439, -0.01101718656718731, -0.003344897413626313, 0.006240864749997854, -0.008978602476418018, 0.015822947025299072, 0.009022759273648262, -0.008014506660401821, -0.02085685171186924, 0.007624452468007803, -0.011966563761234283, -0.004264836199581623, 0.027171311900019646, 0.010023652575910091, -0.006281341891735792, 0.010067809373140335, 0.018781470134854317, -0.0012511167442426085, -0.01228302251547575, -0.02034168504178524, 0.014262730255723, 0.003471848787739873, 0.0014019866939634085, 0.009685114957392216, -0.0050596632063388824, 0.005048623774200678, 0.001985227921977639, 0.0016098928172141314, -0.014248011633753777, 0.00981022696942091, -0.0038674224633723497, -0.01770698092877865, -0.0017846812261268497, 0.010479941964149475, -0.007756923791021109, 0.0024507169146090746, 0.00816169660538435, 0.000984334503300488, 0.015381376259028912, -0.014270090498030186, 0.015822947025299072, 0.010354830883443356, -0.0021544964984059334, -0.013158803805708885, 0.01823686622083187, 0.009920619428157806, -0.021769430488348007, -0.011260050348937511, -0.0019539499189704657, 0.003142510773614049, 0.002402879996225238, -0.004864636342972517, 0.009287701919674873, 0.03506070747971535, 0.008441357873380184, 0.02586131915450096, 0.007109286729246378, 0.03632654249668121, 0.0022575296461582184, 0.019134726375341415, 0.01580822840332985, 0.008676862344145775, 0.017221253365278244, 0.007602374069392681, -0.007407346740365028, -0.024992896243929863, -0.011289488524198532, 0.0016255318187177181, -0.01269515510648489, -0.012224146164953709, -0.01107606291770935, 0.00795563030987978, -0.011274769902229309, -0.001739604165777564, 0.00011499234824441373, -0.009008040651679039, 0.004320032428950071, -0.0011913207126781344, 0.008949164301156998, 0.0050780619494616985, -0.008146977983415127, 0.006958416663110256, 0.004308992996811867, 0.010708087123930454, 0.016912154853343964, -0.015160590410232544, 0.006016399711370468, 0.008794615045189857, -0.00250407331623137, -0.010273875668644905, -0.02327077090740204, -0.0219902154058218, 0.004323712084442377, -0.0013449505204334855, 0.002128738211467862, 0.000771368679124862, -0.0016742885345593095, 0.010362190194427967, -0.01148819550871849, -0.0003440571017563343, -0.01060505397617817, 0.0023127261083573103, -0.03358880430459976, 0.001714765909127891, 0.0053098867647349834, -0.028967032209038734, -0.015160590410232544, 0.021901901811361313, 0.014152337796986103, 0.015616880729794502, -0.02430110238492489, -0.025301996618509293, 0.011517633683979511, -0.002428638283163309, 0.012084315530955791, -0.008860849775373936, 0.017751138657331467, -0.011451398022472858, -0.0005551830399781466, 0.006741311401128769, 0.00916258990764618, 0.011628026142716408, 0.010178202763199806, -0.021931340917944908, -0.012194707989692688, 0.022107968106865883, -0.02307942323386669, 0.004371549002826214, 0.004967669490724802, -0.009560003876686096, 0.008522313088178635, -0.037356872111558914, -0.01962045393884182, -6.842044240329415e-05, 0.02390368841588497, -0.009869103319942951, -0.004441464319825172, 0.04100719094276428, -0.0031866678036749363, 0.005416599567979574, 0.04006517305970192, -0.0023329646792262793, -0.0166766494512558, 0.020223934203386307, -0.009560003876686096, 0.007296954281628132, 0.007002573926001787, -0.00836776290088892, 0.026332328096032143, 0.015131153166294098, 0.014395201578736305, -0.016764964908361435, -0.020047305151820183, -0.010641851462423801, 0.018634280189871788, -0.027377378195524216, 0.017427319660782814, -0.0038895010948181152, -0.009022759273648262, -0.019223039969801903, 0.012768750078976154, -0.00025091329007409513, -0.0002430938184261322, -0.00857382919639349, 0.01642642728984356, -0.014233293011784554, -0.011421959847211838, -0.015064917504787445, -0.01617620326578617, 0.013659250922501087, -0.00406980887055397, 0.008706300519406796, 0.003552803536877036, 0.0216369591653347, -0.017530353739857674, -0.014615987427532673, -0.006454290356487036, -0.004890394397079945, -0.004290594253689051, -0.02677389793097973, 0.002080901525914669, 0.012444932013750076, 0.017574509605765343, 0.017545072361826897, 0.004286914598196745, 0.012776109389960766, -0.002699100412428379, 0.0026623026933521032, -0.008478155359625816, -0.020223934203386307, 0.0037275918293744326, -0.0033780152443796396, -0.013180882669985294, 0.009883821941912174, -0.023624027147889137, -0.0016494501614943147, 0.009766070172190666, 0.005538031458854675, 0.003451610216870904, 0.0077348449267446995, -0.0013081529177725315, -0.0072638364508748055, -0.009927978739142418, 0.006248224060982466, 0.014770536683499813, 0.045599523931741714, 0.007970349863171577, 0.033088356256484985, -0.01626451686024666, -0.00898596178740263, -0.029011188074946404, -0.016985749825835228, -0.011804654262959957, -0.023830093443393707, 0.003571202279999852, 0.014181775972247124, 0.008308886550366879, 0.012754031457006931, 0.005998000968247652, 0.0002796613844111562, 0.006303420290350914, -0.009795508347451687, -0.00461073312908411, -0.008441357873380184, 0.0281722042709589, 0.0036319182254374027, 0.02971770241856575, -0.004827838856726885, -0.010229718871414661, 0.011090781539678574, -0.005479155108332634, 0.014027226716279984, -0.005493874195963144, 0.0012879142304882407, -0.007455183658748865, 0.019046412780880928, -0.003966775722801685, -0.02137201651930809, 0.025154804810881615, 0.02837827056646347, -0.004180201794952154, 0.005747777409851551, 0.01122325286269188, 0.005166376009583473, -0.00776428310200572, -0.01264363806694746, -0.00916994921863079, 0.015881823375821114, -0.006332858465611935, -0.03338273614645004, -0.007333751767873764, 0.007624452468007803, -0.003017399227246642, 0.008691581897437572, -0.011134939268231392, 0.008235291577875614, 0.013372229412198067, -0.018766751512885094, 0.0038895010948181152, -0.020739099010825157, 0.025684690102934837, 0.0010974869364872575, -0.0016025332733988762, -0.006627238821238279, -0.007653890643268824, -0.007171842735260725, -0.005567469634115696, 0.003871102351695299, 0.013556217774748802, 0.005280448589473963, 0.005475475452840328, 0.013453184626996517, 0.010104607790708542, 0.00500814663246274, 0.003563842736184597, 0.008330965414643288, -0.019487982615828514, -0.00880933366715908, -0.015558004379272461, -0.01187088992446661, -0.024227507412433624, -0.0264647975564003, -0.01605845056474209, -0.011157017201185226, 0.010987748391926289, 0.004437784664332867, -0.0038674224633723497, -0.018884502351284027, -0.013409027829766273, -0.0025298316031694412, 0.0006881142035126686, 0.007230718620121479, 4.085103137185797e-05, 0.022475942969322205, -0.008080742321908474, -0.014049304649233818, 0.00793355144560337, -0.006770749110728502, 0.012422853149473667, 0.016750244423747063, 0.006980495527386665, -0.010560897178947926, 0.00529148755595088, 0.006866422947496176, 0.012805547565221786, 0.01307784952223301, 0.015749352052807808, -0.0004503100353758782, 0.013048411346971989, -0.0057808952406048775, -0.017603948712348938, -0.005869209300726652, -0.011628026142716408, -0.0037128727417439222, 0.016029013320803642, -0.0076318117789924145, 0.021519208326935768, -0.0016890076221898198, 0.024389415979385376, 0.018707875162363052, 0.022740885615348816, 0.021592803299427032, 0.017780575901269913, 0.008868210017681122, 0.004695367533713579, -0.005464436486363411, 0.0051369378343224525, 0.02306470461189747, 0.002419438911601901, 0.005125898867845535, 0.006660356651991606, 0.005928085185587406, 0.014248011633753777, -0.0006030198419466615, 0.013570936396718025, 0.006652997341006994, -0.02137201651930809, 0.0012492768000811338, 0.020356405526399612, -0.001270435401238501, -0.005766176152974367, -0.004073488991707563, 0.0014562630094587803, 0.017015187069773674, 0.002082741353660822, -0.0034203322138637304, 0.032264091074466705, -4.0477305446984246e-05, -0.0017994001973420382, -0.0017975603695958853, 0.018398774787783623, -0.026302888989448547, 0.007388947997242212, 0.01813383214175701, -0.007433105260133743, -0.00813225843012333, -0.014034586027264595, -0.004754243418574333, 0.0141670573502779, -0.008051304146647453, -0.003749670460820198, -0.009199387393891811, 0.007889394648373127, 8.405940752709284e-05, 0.004121325444430113, -0.010524099692702293, 0.00014615527470596135, -0.001675208448432386, -0.011039265431463718, 0.009420173242688179, -0.012768750078976154, -0.014446718618273735, 0.02291751466691494, -0.015793507918715477, -0.011002467945218086, -0.015145871788263321, 0.008360403589904308, -0.009596801362931728, -0.006123112514615059, 0.0010220520198345184, 0.014321606606245041, 0.00024378376838285476, -0.00895652361214161, -0.01956157758831978, -0.009869103319942951, 0.012886501848697662, 0.008559110574424267, 0.02739209681749344, 0.012503807432949543, -0.01037690881639719, 0.022740885615348816, -0.004717445932328701, 0.0053098867647349834, 0.008971243165433407, 0.00922146625816822, 0.00194107077550143, 0.019075850024819374, -0.01161330658942461, 0.00041581233381293714, -0.008088101632893085, 0.026508955284953117, -0.018413493409752846, -0.027465691789984703, -0.0357377827167511, 0.003826945321634412, -0.003996213898062706, 0.014983962289988995, -0.01817798987030983, 0.016043731942772865], "8973f5b0-27f3-4e88-8941-d7b428473a1a": [-0.012087453156709671, -0.018490176647901535, -0.012154070660471916, 0.0231978427618742, -0.010954948142170906, -0.019630083814263344, 0.015351731330156326, 0.036151330918073654, -0.013634469360113144, 0.024811478331685066, 0.014840994030237198, 0.043612536042928696, 0.009319107979536057, -0.020370282232761383, 0.011014164425432682, 0.037187609821558, 0.004026683513075113, 0.01345682144165039, 0.01598830334842205, -0.03769094496965408, 0.04097742959856987, -0.01646202988922596, -0.02325705997645855, 0.03591446578502655, 0.007424198091030121, -0.011288038454949856, -0.002189139137044549, 0.01791282184422016, -0.030762679874897003, -0.017690761014819145, 0.025137165561318398, 0.03653623163700104, -0.013405007310211658, 0.0022890660911798477, 0.025300009176135063, -0.03890487179160118, 0.027002466842532158, 0.0006411975482478738, -0.02219117246568203, 0.01564781181514263, -0.007231746334582567, 0.0028497669845819473, 0.008342045359313488, -0.0005944725126028061, -0.029756007716059685, -0.0012842456344515085, 0.0043375673703849316, -0.0012879465939477086, -0.024441378191113472, -0.058268483728170395, 0.025936581194400787, 0.011828383430838585, -0.01711340621113777, -0.007653659675270319, 0.04923805221915245, -0.03946742042899132, 0.005866078659892082, 0.03813506290316582, 0.0022335511166602373, -0.053738463670015335, 0.008756556548178196, -0.03230229392647743, 0.017468702048063278, -0.020074201747775078, 0.027757469564676285, 0.002792401472106576, -0.005025952588766813, -0.0219839159399271, -0.017631545662879944, 0.033427394926548004, -0.010214748792350292, 0.011621127836406231, -0.06253203004598618, -0.014737366698682308, -0.003195810131728649, 0.015499771572649479, 0.020621949806809425, 0.010547839105129242, 0.0076462579891085625, -0.02672119066119194, 0.007472311146557331, -0.01105857640504837, 0.028171982616186142, 0.004085899796336889, 0.04832020401954651, 0.024219317361712456, -0.016891345381736755, -0.05012629181146622, -0.032006215304136276, -0.021154893562197685, 0.00466325506567955, 0.024071278050541878, -0.001474846969358623, -0.01800164394080639, -0.011783971451222897, 0.01545535959303379, 0.02478186972439289, -0.0005190647207200527, -0.015499771572649479, -0.039023302495479584, -0.008445672690868378, 0.0025259298272430897, -0.023908434435725212, -0.00521100265905261, 0.03544073924422264, -0.009222881868481636, -0.007638855837285519, -0.006358311045914888, -0.03037777543067932, 0.01705418899655342, -0.015781046822667122, -0.02858649380505085, 0.008904596790671349, -0.016610071063041687, -0.04604038968682289, -0.03111797571182251, -0.05299826338887215, -0.032154254615306854, -0.007994151674211025, -0.028630904853343964, 0.04245782643556595, -0.0064138262532651424, 0.009119254536926746, -0.012198482640087605, -0.009718815796077251, -0.0009395903907716274, 0.013412409462034702, 0.012879466637969017, 0.018416156992316246, 0.008837978355586529, -0.025640500709414482, -0.019245179370045662, 0.028305217623710632, 0.003175454679876566, 0.014322854578495026, 0.010607054457068443, -0.018297724425792694, 0.04310920089483261, -0.018223704770207405, 0.03191738948225975, -0.03011130355298519, -0.013301379978656769, -0.006691400893032551, 0.017957232892513275, 0.03458210825920105, 0.014167413115501404, -0.04423430562019348, 0.024485789239406586, 0.002822009613737464, 0.009504158049821854, -0.06999323517084122, -0.004233939573168755, -0.0026277073193341494, -4.921168147120625e-05, 0.02945992909371853, -0.020769989117980003, 0.007786895614117384, 0.03490779548883438, 0.04479685798287392, 0.04897157847881317, 0.021421365439891815, -0.04778726026415825, -0.01005930732935667, 0.025966187939047813, 0.020355477929115295, 0.03952663764357567, 0.05723220482468605, 0.025018732994794846, -0.03171013295650482, 0.0251963809132576, 0.0173798780888319, -0.02278333157300949, 0.01952645555138588, 0.028023941442370415, -0.022413231432437897, 0.0012296559289097786, 0.040148403495550156, 0.04790569469332695, 0.03443406894803047, -0.019467240199446678, -0.030614638701081276, 0.009659599512815475, 0.013634469360113144, 0.015440555289387703, 0.005903088953346014, 0.05755789205431938, 0.012886867858469486, 0.04284273087978363, -0.002296468010172248, -0.025137165561318398, -0.01039979886263609, 0.02232440747320652, -0.00562921492382884, 0.011828383430838585, -0.019644886255264282, -0.013471625745296478, -0.007005985360592604, 0.02626226842403412, -0.013471625745296478, 0.03239111602306366, -0.01059225108474493, -0.035944074392318726, -0.028023941442370415, 0.031946998089551926, -0.04544823244214058, 0.026810014620423317, -0.01279064267873764, -0.04207292199134827, 0.03570720925927162, -0.0034419263247400522, 0.048409029841423035, -0.03905291110277176, -0.02105126529932022, -0.014574522152543068, -0.011628529988229275, -0.014011970721185207, -0.0009201601496897638, 0.039941150695085526, -0.02639550343155861, -0.04115507751703262, -0.00038490360020659864, 0.03804624080657959, -0.00636201212182641, -0.01832733303308487, -0.06874970346689224, 0.017143012955784798, -0.002901580883190036, 0.042813122272491455, -0.040355660021305084, -0.0033327469136565924, 0.013686283491551876, -0.007920132018625736, -0.0037250525783747435, 0.008445672690868378, -0.006254683248698711, 0.03153248503804207, 0.04284273087978363, -0.011769167147576809, -0.01213186513632536, 0.011443479917943478, 0.015277711674571037, 0.012442748993635178, -0.0007642557029612362, -0.003800923004746437, 0.012620396912097931, 0.019955771043896675, -0.026173444464802742, 0.06241359934210777, 0.016817325726151466, -0.02944512479007244, -0.015233299694955349, 0.005373846273869276, 0.007927533239126205, 0.0017385429237037897, -0.012198482640087605, 0.025107556954026222, 0.01911194436252117, -0.03159170225262642, 0.005854975897818804, 0.004685461055487394, 0.012346522882580757, 0.02405647374689579, 0.03653623163700104, 0.0065137529745697975, 0.039348989725112915, -0.019778123125433922, 0.018682628870010376, -0.02379000186920166, 0.008837978355586529, 0.025744128972291946, 0.005592205096036196, 0.005888284649699926, -0.010414603166282177, 0.020148223266005516, 0.010333181358873844, -0.005769853014498949, -0.021480580791831017, -0.005403454415500164, 0.040207620710134506, 0.004082198720425367, -0.010214748792350292, 0.03212464600801468, 0.0239232387393713, 0.0021003151778131723, 0.061525359749794006, -0.01625477522611618, -0.03182856738567352, -0.0291934572160244, -0.05486356467008591, 0.0010436809388920665, -0.00633240444585681, -0.007920132018625736, 0.02379000186920166, 0.013871333561837673, 0.026217855513095856, 0.011295439675450325, 0.007727679796516895, -0.006236178334802389, -0.00471136812120676, 0.04550744593143463, 0.020473910495638847, -0.0025277803651988506, 0.007501918822526932, -0.023079412057995796, 0.04450077563524246, -0.02000018209218979, 0.01598830334842205, 0.004059992730617523, -0.031414054334163666, 0.04343488812446594, 0.029741205275058746, -0.007435301318764687, -0.005270218476653099, 0.001514632604084909, 0.005011148750782013, 0.018771452829241753, -0.006495248060673475, -0.009304303675889969, -0.0074575068429112434, -0.03952663764357567, -0.00011368997365934774, -0.018963903188705444, -0.06188065558671951, 0.015840264037251472, 0.05036315321922302, -0.058061227202415466, 0.027150508016347885, -0.021776661276817322, -0.03058503195643425, -0.010651466436684132, -0.037750158458948135, -0.01826811581850052, -0.03943781554698944, 0.016817325726151466, -0.0413031168282032, -0.043819792568683624, -0.0480833426117897, -0.03431563451886177, 0.011584118008613586, -0.040207620710134506, -0.014263639226555824, 0.006661792751401663, 0.020222242921590805, 0.0007258578552864492, 0.015107465907931328, -0.009304303675889969, 0.006935666780918837, 0.010621858760714531, -0.04464881494641304, 0.00538124842569232, 0.0009308005101047456, 0.011147400364279747, 0.04331645742058754, -0.034878186881542206, 0.033220142126083374, -0.0159290861338377, 0.004770583938807249, 0.017705565318465233, 0.00471136812120676, -0.006432331167161465, -0.009474550373852253, -0.01672850176692009, -0.019807731732726097, 0.0013231061166152358, -0.019704103469848633, -0.019837338477373123, -0.0065137529745697975, -0.030066892504692078, -0.01205784548074007, 0.025077950209379196, -0.041007038205862045, 0.005625513847917318, 0.016639677807688713, -0.004171022679656744, -0.007187334354966879, -0.041273508220911026, 0.005569999106228352, -0.00021639261103700846, -0.0410662516951561, 0.038401536643505096, 0.006972676608711481, 0.0035992185585200787, 0.017631545662879944, 0.033812299370765686, 0.01878625527024269, 0.023434707894921303, -0.019748514518141747, -0.011310243979096413, -0.01680252142250538, -0.036358583718538284, -0.009889061562716961, 0.008919400162994862, -0.051014531403779984, 0.012028236873447895, -0.03911212459206581, -0.005170291289687157, -0.012309513054788113, -0.022487252950668335, 0.008364250883460045, -0.026765603572130203, 0.006188065279275179, -0.015085260383784771, -0.01079210452735424, -0.021939504891633987, 0.013012702576816082, -0.03218386322259903, 0.005433062091469765, -0.01442648284137249, 0.04177684336900711, 0.0033679064363241196, 0.02965238131582737, 0.023745590820908546, 0.016432423144578934, 0.02404167130589485, 0.04479685798287392, 0.01179137360304594, -0.01313113421201706, 0.04624764621257782, -0.036358583718538284, -0.023567942902445793, 0.04618843272328377, 0.040148403495550156, 0.014234030619263649, 0.016965365037322044, 0.013197751715779305, 0.02558128535747528, -0.02664717100560665, 0.0033679064363241196, -0.016550853848457336, -0.010303572751581669, -0.016758110374212265, 0.04953413084149361, 0.008268024772405624, -0.007883121259510517, 0.0025980991777032614, 0.005947500467300415, -0.006221374496817589, 0.012687014415860176, -4.045073001179844e-05, 0.0105996523052454, -0.01518888771533966, 0.018075665459036827, -0.008756556548178196, -0.007209540344774723, -0.022694507613778114, -0.03576642647385597, -0.03336818143725395, 0.0252555962651968, 0.029933655634522438, -0.014308051206171513, -0.0011380562791600823, 0.02559608966112137, -0.05924554541707039, 0.018046056851744652, 0.013042310252785683, -0.006980078760534525, 0.0024963219184428453, 0.011969021521508694, 0.006199168507009745, -0.0345228910446167, -0.019230375066399574, -0.004814995918422937, 0.0331905335187912, 0.013175546191632748, 0.010769899003207684, -0.029667183756828308, 0.005288723390549421, 0.030940327793359756, 0.003684341674670577, -0.004056291654706001, 0.0083272410556674, -0.0020188933704048395, -0.024219317361712456, 0.03239111602306366, -0.001655270461924374, 0.010718084871768951, -0.02411569096148014, -0.03117719106376171, 0.019467240199446678, -0.03224307671189308, -0.021006854251027107, -0.029948459938168526, 0.016077127307653427, 0.007912729866802692, 0.023745590820908546, -0.006143653299659491, -0.0012278053909540176, -0.02359755150973797, 0.021406561136245728, -0.03712839260697365, 0.04038526862859726, -0.020370282232761383, -0.0045448229648172855, 0.0031254910863935947, 0.003776866476982832, -0.03387151658535004, -0.01542575191706419, -0.018978707492351532, -0.009770629927515984, -0.03612172231078148, 0.025374028831720352, -0.021302932873368263, 0.010858722031116486, 0.009815041907131672, -0.006561866030097008, 0.014907612465322018, -0.01591428369283676, 0.026632368564605713, -0.017542721703648567, -0.023819610476493835, -0.04290194809436798, 0.034286025911569595, -0.026040207594633102, -0.0022539065685123205, 0.01798684149980545, 0.01606232300400734, -0.023020194843411446, 0.013464223593473434, 0.03653623163700104, -0.010214748792350292, -0.006088138557970524, -0.011843187734484673, -0.006576669868081808, -0.007490816060453653, -0.03538152202963829, -0.014729964546859264, 0.012583387084305286, -0.021214108914136887, 0.023301471024751663, -0.014115598984062672, -0.007424198091030121, -0.0032605775631964207, -0.012635200284421444, 0.034286025911569595, 0.02771305851638317, -0.023153431713581085, -0.0070429956540465355, 0.023701177909970284, 0.002179886680096388, 0.0038046238478273153, -0.037217214703559875, 0.01205784548074007, -0.026499131694436073, -0.003575162263587117, 0.005825367756187916, 0.03410837799310684, -0.02506314590573311, 0.008867586962878704, -0.0036750889848917723, 0.017468702048063278, -0.015677418559789658, 0.015248103998601437, -0.01002969965338707, 0.004844604060053825, -2.5791316147660837e-05, -0.014034177176654339, 0.010148131288588047, -0.028941789641976357, -0.024693045765161514, -0.010170336812734604, -0.01779438927769661, 0.0011695147259160876, -0.00331424199976027, 0.00820140726864338, 0.003031115746125579, 0.01853458769619465, -0.005607008934020996, -0.013974960893392563, -0.011783971451222897, 0.037424471229314804, 0.03751329705119133, 0.011080781929194927, 0.03931938111782074, -0.0023260759189724922, -0.0053072283044457436, 0.05604788288474083, 0.010718084871768951, 0.020740382373332977, -0.024900302290916443, -0.00759444385766983, 0.03931938111782074, -0.007054098416119814, -0.0018403202993795276, -0.014004569500684738, -0.0006254683248698711, 0.04390861839056015, -0.016832130029797554, -0.024767065420746803, -0.0007859990582801402, 0.034019555896520615, 0.004585534334182739, 0.02000018209218979, -0.01699497364461422, 0.030066892504692078, -0.026306679472327232, 0.011887599714100361, 0.023020194843411446, 0.024767065420746803, 0.013782509602606297, 0.0022705611772835255, 0.02832002192735672, 0.016417618840932846, -0.004400484263896942, -0.01939321868121624, -0.029001004993915558, 0.043138809502124786, -0.006569268181920052, 0.023908434435725212, 0.009104450233280659, 0.03126601502299309, 0.018771452829241753, -0.004726171959191561, 0.023967649787664413, 0.0038305309135466814, 0.03345700353384018, 0.0075870417058467865, 0.02031106688082218, 0.018356939777731895, 0.0030847801826894283, 0.006550763268023729, 0.009370922110974789, -0.04598117619752884, 0.05477474257349968, -0.011998629197478294, 0.0025000227615237236, -0.013937951065599918, -0.025092752650380135, 0.0016247372841462493, -0.008549300953745842, -0.00946714822202921, 0.0011454583145678043, -0.010170336812734604, -0.012997898273169994, -0.02738737128674984, 0.003277231939136982, -0.00903043057769537, 0.0019874349236488342, 0.008223612792789936, -0.019674494862556458, 0.0007536153425462544, -0.015003837645053864, 0.011939412914216518, -0.0073834871873259544, 0.06075555086135864, -0.02179146558046341, 0.02099204994738102, -0.01445609051734209, -0.0042080325074493885, 0.04065174236893654, 0.0218654852360487, 0.005777254700660706, 0.011354655958712101, 0.00538124842569232, 0.026765603572130203, 0.015248103998601437, -0.01039979886263609, 0.0011075231013819575, -0.001935620908625424, -0.0016062322538346052, -0.011206615716218948, 0.030140912160277367, -0.025906972587108612, 0.014078589156270027, -0.0010362789034843445, 0.014322854578495026, -0.009748423472046852, 0.00976322777569294, -0.001777403405867517, 0.036210544407367706, 0.024470986798405647, 0.01378991175442934, -0.0032513251062482595, 0.015381339937448502, 0.0037454080302268267, -0.003937860019505024, 0.010362789034843445, 0.009148862212896347, 0.02757982350885868, -0.0029533947817981243, 0.005251713562756777, -0.04438234493136406, -0.03896408528089523, -0.029741205275058746, 0.013042310252785683, -0.015484967269003391, -0.009074842557311058, 0.0014794731978327036, 0.004097002558410168, -0.021776661276817322, 0.003937860019505024, -0.017631545662879944, 0.0006250056903809309, -0.009874257259070873, 0.034493282437324524, -0.010621858760714531, -0.005640318151563406, 0.0064397333189845085, -0.02413049526512623, 0.00043024079059250653, -0.0043412684462964535, -0.026439916342496872, -0.04153997823596001, 0.004156218376010656, -0.015810655429959297, 0.007142922375351191, 0.003290185471996665, -0.028068354353308678, -0.04002997279167175, 0.005022251512855291, -0.01099195796996355, 0.010725487023591995, -0.0060141184367239475, -0.005259115248918533, 0.01785360462963581, 0.012612994760274887, 0.02344951033592224, -0.01002969965338707, 0.012339120730757713, 0.003053321735933423, 0.04331645742058754, -0.011635931208729744, 0.017749976366758347, -0.026365896686911583, -0.012916476465761662, -0.020903225988149643, 0.029208261519670486, 0.002664717147126794, -0.009504158049821854, 0.0033438499085605145, -0.00859371293336153, 0.04032605141401291, -0.023686375468969345, -0.0011621128069236875, -0.0026332587003707886, -0.008445672690868378, -0.012339120730757713, -0.0017015329794958234, 0.01686173863708973, 0.01838654838502407, -0.00410070363432169, 0.011473087593913078, -0.010481220670044422, 0.029356300830841064, -0.005144384689629078, -0.006876450497657061, -0.0023371789138764143, 0.0239232387393713, 0.011243626475334167, -0.014678150415420532, -0.0029681988526135683, 0.0410662516951561, -0.009652197360992432, 0.03905291110277176, 0.015307319350540638, -0.035026226192712784, 0.003893447807058692, 0.030007675290107727, -0.007520424202084541, -0.024086082354187965, 0.050807274878025055, -0.026232659816741943, -0.0030070592183619738, 0.022872155532240868, -0.0033234944567084312, 0.005455268081277609, -0.01186539325863123, 0.013175546191632748, -0.0022465046495199203, 0.04230978712439537, 0.013271772302687168, 0.04156958684325218, -0.008623320609331131, 0.02959316410124302, 0.03757251054048538, -0.02805355004966259, -0.03203582018613815, -0.009474550373852253, -0.00539605226367712, -0.012842456810176373, -0.015218495391309261, -0.026898838579654694, -0.03410837799310684, 0.02179146558046341, -0.02039989084005356, 0.03825349360704422, -0.04749118164181709, 0.03857918456196785, -0.027372566983103752, -0.007653659675270319, 0.023360686376690865, 0.021643424406647682, 0.02146577648818493, 0.004389381501823664, 0.04023722931742668, 0.004785387776792049, -0.018949100747704506, -0.01813488081097603, -0.015322123654186726, -0.023508727550506592, 0.0037028465885668993, 0.007690669968724251, -0.021421365439891815, 0.029104633256793022, 0.043346066027879715, 0.02558128535747528, 0.006239879410713911, -0.0011861692182719707, -0.00208181026391685, -0.019541259855031967, 0.007335374131798744, -0.010570044629275799, -0.013020103797316551, -0.005725441034883261, 0.02772786282002926, -0.02066636271774769, -0.01372329331934452, 0.01666928641498089, 0.00012074499682057649, 0.007524124812334776, 0.01866782456636429, 0.002940441481769085, 0.007261354476213455, 0.020888421684503555, 0.024278534576296806, 0.02159901335835457, 0.009755825623869896, 0.005621813237667084, 0.020355477929115295, -0.015633007511496544, -0.009622589685022831, -0.005988211836665869, -0.027565019205212593, -0.025773735716938972, 0.03751329705119133, 0.0015636708121746778, 0.027905510738492012, -0.02512236125767231, -0.01125842984765768, -0.031029151752591133, 0.03203582018613815, 0.0019948368426412344, -0.046010784804821014, -0.015514575876295567, -0.003164351684972644, -0.021228913217782974, -0.0026591657660901546, 0.009348715655505657, 0.03416759520769119, 0.0219839159399271, 0.030170520767569542, 0.023538334295153618, -0.008786164224147797, 0.018741844221949577, -0.041865669190883636, -0.02339029498398304, 0.006591474171727896, 0.0021613817662000656, -0.0034030659589916468, 0.021895091980695724, 0.008142190985381603, 0.004870510660111904, 0.0219247005879879, -0.02805355004966259, 0.0001397126034134999, -0.01152490172535181, -0.02291656844317913, -0.009555972181260586, 0.01692095398902893, 1.7377333279000595e-05, 0.0033345974516123533, -0.0026480627711862326, 0.0072502512484788895, 0.010185141116380692, 0.01712821051478386, 0.0010103719541803002, -0.01552937924861908, 0.0018079365836456418, -0.004744676873087883, -0.02866051346063614, 0.017424289137125015, 0.00803116150200367, 0.00561441108584404, -0.004852005746215582, 0.008608517237007618, -0.019171159714460373, -0.005551494192332029, 0.0019004615023732185, -0.0031032850965857506, 0.008504888974130154, 0.0006448985659517348, -0.012509366497397423, -0.0012675911420956254, -0.0023649365175515413, -0.011902403086423874, 0.0013554898323491216, -0.02805355004966259, -0.013715891167521477, -0.011909805238246918, 0.00634720828384161, 0.004863108973950148, 0.00033609670936129987, -0.030303755775094032, -0.020769989117980003, 0.0002970049390569329, 0.041421547532081604, -0.05178433656692505, 0.02492990903556347, 0.012405739165842533, -0.0015747738070786, 0.012094855308532715, 0.03736525774002075, 0.022072739899158478, -0.008216211572289467, -0.020977245643734932, 0.02333107963204384, 0.03224307671189308, 0.0017616741824895144, -0.007490816060453653, -0.0016154848271980882, -0.012242894619703293, 0.011280636303126812, 0.0003962378832511604, 0.025225989520549774, -0.0015812505735084414, 0.0011075231013819575, 0.008586310781538486, -0.004611440934240818, -0.03313131630420685, -0.011110390536487103, 0.01339760608971119, 0.001604381832294166, 0.011139998212456703, 0.014966827817261219, -0.0006189916166476905, 0.03206542879343033, -0.006765421014279127, -0.025507265701889992, -0.028616102412343025, -0.025818148627877235, -0.01025916077196598, -0.01911194436252117, -0.007405693177133799, 0.0252555962651968, -0.01931919902563095, -0.020340673625469208, -0.003304989542812109, -0.004789088852703571, 0.025403637439012527, -0.005088869482278824, -0.0016608219593763351, 0.0022539065685123205, 0.018371744081377983, 0.015470163896679878, -0.002949693938717246, 0.022738920524716377, 0.0036880425177514553, 0.0054145571775734425, -0.028616102412343025, 0.013338389806449413, 0.0023852919694036245, 0.006054829340428114, 0.016417618840932846, -0.0014276591828092933, 0.012538975104689598, 0.002414899878203869, 0.0022687106393277645, -0.014907612465322018, -0.016965365037322044, -0.01564781181514263, -0.0020040892995893955, -0.009511560201644897, -0.00913405790925026, -0.015603399835526943, 0.006865347735583782, -0.019408022984862328, -0.015573791228234768, -0.013182948343455791, -0.013301379978656769, -0.03387151658535004, 0.002535182284191251, 0.005688430741429329, -0.01758713275194168, -0.030762679874897003, -0.006084437482059002, -0.01233171857893467, -0.020873617380857468, -0.006946769542992115, 0.030999543145298958, -0.022946175187826157, -0.0025370328221470118, -0.0008354998426511884, -0.023493923246860504, -0.023301471024751663, -0.0008003403781913221, -0.010821712203323841, -0.021006854251027107, -0.02485588937997818, -0.021806268021464348, 0.010555240325629711, -0.031562093645334244, -0.0009132208069786429, -0.013664077036082745, -0.031680528074502945, 0.04417508840560913, 0.033545829355716705, 0.03227268531918526, -0.007283560466021299, -0.03816467151045799, -0.016491638496518135, 0.0003955439606215805, -0.006739513948559761, -0.04192488268017769, -0.0033086903858929873, -0.01825331337749958, 0.0035918166395276785, 0.00920067634433508, 0.0158698707818985, -0.029341496527194977, 0.016447225585579872, 0.03899369388818741, -0.00633240444585681, -0.04053330793976784, -0.0002995493705384433, -0.03179895877838135, -0.016565658152103424, -0.0016145595582202077, -0.01985214278101921, -0.013730695471167564, 0.017572328448295593, 0.032006215304136276, -0.006976377684623003, -0.02278333157300949, -0.008379055187106133, 0.0052813212387263775, 0.0011297290911898017, -0.01911194436252117, 0.014678150415420532, -0.05936397612094879, -0.014048981480300426, -0.004522616975009441, 0.006243580486625433, 0.005077766720205545, 0.008971214294433594, 0.00852709449827671, 0.01289427001029253, -0.027639038860797882, 0.0005750422715209424, 0.027757469564676285, -0.02053312584757805, 0.017246641218662262, 0.0050185504369437695, -0.004922324791550636, 0.01857900060713291, -0.010303572751581669, 0.003997075837105513, 0.008268024772405624, -0.006254683248698711, -0.008075573481619358, 0.011362058110535145, 0.031621310859918594, -0.015736635774374008, -0.007109613623470068, 0.022368820384144783, -0.017513113096356392, 0.006376816425472498, 0.0007004134822636843, -0.03964506834745407, -0.0035862652584910393, 0.01893429644405842, -0.014581924304366112, -0.01706899330019951, -0.004770583938807249, 0.01526290737092495, 0.00636201212182641, -0.012265101075172424, 0.011510097421705723, -0.002429703949019313, 0.001208375208079815, 0.016950562596321106, 0.0026073516346514225, 6.355304503813386e-05, -0.016758110374212265, -0.037217214703559875, -0.0036417802330106497, -0.026158640161156654, -0.005236909259110689, 0.00556629803031683, -0.0008706593071110547, 0.014271040447056293, 0.004863108973950148, -0.018963903188705444, -0.006680297665297985, -0.0006754318019375205, 0.013175546191632748, -0.012709220871329308, 0.01726144552230835, 0.009511560201644897, 0.060992415994405746, 0.014878003858029842, 0.010540436953306198, 0.009800237603485584, -0.01960047520697117, 0.010540436953306198, 0.027431782335042953, 0.026291875168681145, 0.03783898428082466, -0.00906003825366497, 0.015588595531880856, 0.0017320661572739482, -0.016299186274409294, 0.02279813587665558, 0.005699533969163895, 0.03470053896307945, 0.007509320974349976, 0.008608517237007618, -0.004241341259330511, -0.012346522882580757, -0.03680270537734032, -0.0034807866904884577, -0.014685552567243576, -0.0063064973801374435, -0.005466371309012175, -0.023375490680336952, 0.0007096659974195063, 0.0033716075122356415, 0.008179201744496822, 0.004522616975009441, 0.04571470245718956, 0.02291656844317913, 0.022487252950668335, 0.005214703269302845, -0.021821072325110435, 0.06863126903772354, -0.00280720554292202, 0.007046696729958057, 0.003404916264116764, 0.007142922375351191, 0.0058845835737884045, -0.009970483370125294, 0.011576715856790543, -0.020562734454870224, -0.005458969157189131, 0.008364250883460045, 0.016373205929994583, -0.008675134740769863, -0.031147582456469536, -0.026025405153632164, -0.010244357399642467, -0.009711413644254208, -0.03745407983660698, 0.014071187004446983, -0.018593804910779, 0.010303572751581669, -0.024885497987270355, -0.02299058809876442, -0.022812940180301666, -0.0027887006290256977, 0.001946723903529346, 0.041421547532081604, -0.010466417297720909, -0.021806268021464348, -0.010880928486585617, 0.0022668601013720036, -0.015077858231961727, -0.0020522023551166058, -0.013493831269443035, 0.023405099287629128, 0.0037565110251307487, -0.021362150087952614, -0.004285753238946199, 0.0027350361924618483, -0.012857260182499886, 0.009304303675889969, 0.034019555896520615, -0.013908343389630318, 0.03419720381498337, -0.03271680697798729, 0.029237868264317513, 0.005951201543211937, -0.020547930151224136, 0.011924609541893005, -0.02752060629427433, 0.0038379328325390816, -0.0032235675025731325, -0.0012333568884059787, 0.0077794939279556274, -0.0008984167943708599, 0.002094763796776533, -0.017483504489064217, 0.016447225585579872, 0.02306460775434971, -0.019200768321752548, -0.010125924833118916, -0.03372347727417946, 0.001420257263816893, 0.00708000548183918, -0.02019263431429863, -0.015573791228234768, 0.010621858760714531, 0.010673672892153263, -0.015499771572649479, -0.004515215288847685, -7.916661706985906e-05, -0.011169605888426304, -0.001822740538045764, 0.01205784548074007, -0.0050444575026631355, 0.00269802613183856, 0.018889883533120155, -0.0063842181116342545, -0.01706899330019951, 0.001206524670124054, -0.010451612994074821, -0.005477474071085453, -0.0028627205174416304, 0.015070456080138683, -0.004022982902824879, 0.0032346704974770546, 0.02626226842403412, -0.0034770858474075794, 0.018963903188705444, 0.008179201744496822, -0.0011880197562277317, -0.014537512324750423, -0.009585579857230186, 0.007786895614117384, 0.008156995289027691, 0.018312528729438782, 0.017557526007294655, -0.005821666680276394, 0.004703965969383717, -0.002934889867901802, -0.0033216439187526703, 0.05681769177317619, 0.026173444464802742, -0.008941606618463993, -0.003184707136824727, -0.02059234119951725, -0.0006337955710478127, -0.006965274456888437, 0.018490176647901535, -0.001658971537835896, 0.005721739958971739, -0.04746157303452492, 0.0010344283655285835, 0.02091803029179573, -0.02057753875851631, 0.0055440920405089855, 0.0042080325074493885, 0.018697431311011314, -0.012501964345574379, 0.0029830029234290123, -0.013516037724912167, 0.017735173925757408, -0.013094124384224415, 0.018623411655426025, -0.009755825623869896, 0.043138809502124786, -0.019630083814263344, -0.011369460262358189, -0.011843187734484673, 0.014818788506090641, 0.018208900466561317, 0.016980169340968132, -0.037809375673532486, -0.0033531023655086756, 0.00859371293336153, -0.00893420446664095, 0.016210362315177917, -0.017572328448295593, -0.016358403488993645, -0.008156995289027691, -0.011643333360552788, 0.03579603508114815, -0.016165951266884804, 0.04319802671670914, 0.016373205929994583, -0.015810655429959297, -0.017202230170369148, -0.006125148385763168, 0.010436808690428734, 0.03227268531918526, 0.020903225988149643, -0.025640500709414482, -0.01435986440628767, 0.0017746275989338756, 0.010940144769847393, 0.013567851856350899, 0.001757047837600112, -0.0020299963653087616, 0.013812117278575897, 0.014234030619263649, 0.00793493539094925, -0.003871241817250848, -0.010414603166282177, 0.006169560365378857, -0.01142867561429739, -0.008290231227874756, 0.0015081559540703893, -0.009289500303566456, -0.04183606058359146, 0.031088367104530334, -0.0021576806902885437, -0.012701818719506264, -0.011843187734484673, 0.011487891897559166, -0.021376952528953552, -0.00011449956218712032, 0.019541259855031967, -0.003900849958881736, 0.024160102009773254, 0.02025184966623783, 0.01005930732935667, 0.003504843218252063, -0.01019994542002678, 0.006946769542992115, -0.02118450216948986, 0.007235447410494089, -0.004119208548218012, -0.0113250482827425, 0.024219317361712456, 0.014315452426671982, 0.013316184282302856, 0.01022955309599638, -0.012154070660471916, 0.035411130636930466, -0.010370191186666489, -0.0018116375431418419, 0.012006031349301338, 0.014759572222828865, -0.019289592280983925, 0.022709311917424202, -0.009896463714540005, 0.002453760476782918, 0.003900849958881736, 0.016950562596321106, 0.00940052978694439, 0.014663346111774445, -0.01564781181514263, -0.028423650190234184, -0.02318303845822811, 0.0006356460507959127, -0.0002724858350120485, -0.010903134010732174, 0.009955679066479206, -0.002403796883299947, -0.010022297501564026, 0.003871241817250848, -0.003210614202544093, 0.002810906618833542, -0.017365073785185814, 0.0017579731065779924, 0.013553047552704811, 0.025818148627877235, -0.019289592280983925, -0.018490176647901535, -0.05282061547040939, 0.004796491004526615, -0.009600384160876274, 0.012191081419587135, -0.0006819085101597011, -0.053679246455430984, -0.012531572952866554, 0.01119921449571848, -0.010636663064360619, 0.014959425665438175, -0.006325002294033766, -0.030288951471447945, 0.0662626326084137, 0.013819519430398941, 0.005854975897818804, -0.004455999471247196, -0.01013332698494196, 0.0005190647207200527, -0.008208809420466423, -0.012368728406727314, -0.006402723025530577, 0.010843918658792973, 0.01791282184422016, -0.0019837338477373123, -0.011939412914216518, 0.016772914677858353, -0.0002616141573525965, -0.0004917698679491878, 0.030703462660312653, 0.03250955045223236, -0.00886018481105566, -0.008379055187106133, 0.023627158254384995, 0.01772036962211132, 0.009208078496158123, 0.003551105735823512, 0.021110480651259422, 0.015277711674571037, 0.013686283491551876, -0.023893630132079124, 0.0005815189797431231, -0.023567942902445793, -0.009903865866363049, 0.009555972181260586, 0.02818678691983223, -0.016417618840932846, 0.006920862477272749, 0.021406561136245728, -0.013101526536047459, 0.026543544605374336, -0.01973371021449566, 0.006210271269083023, -0.0052813212387263775, -0.018697431311011314, 0.008889792487025261, -0.026040207594633102, -0.01022955309599638, 0.010984556749463081, 0.01193201169371605, 0.013678881339728832, -0.010984556749463081, -0.00959298200905323, 0.00839385949075222, -0.031473271548748016, -0.015499771572649479, -0.035026226192712784, 0.006561866030097008, -0.01692095398902893, 0.001881031203083694, -0.009807639755308628, -0.010214748792350292, -0.028349630534648895, -0.012265101075172424, 0.006802430842071772, 0.00793493539094925, 0.015573791228234768, 0.00521100265905261, -0.034078773111104965, 0.025625696405768394, -0.0438494011759758, -0.0009964931523427367, -0.023375490680336952, 0.007727679796516895, -0.008949008770287037, 0.029533948749303818, -0.026306679472327232, 0.019822534173727036, 0.009874257259070873, 0.03011130355298519, 0.012309513054788113, -0.04085899516940117, -0.02365676686167717, 0.014056382700800896, -0.001082541304640472, 0.0025185279082506895, -0.022975783795118332, -0.012072648853063583, -0.0022076440509408712, 0.027476195245981216, -0.003673238679766655, 0.023345883935689926, -0.016106734052300453, -0.015973499044775963, -0.018712235614657402, -0.024234121665358543, -0.022472448647022247, 0.01435986440628767, -0.016639677807688713, 0.005854975897818804, 0.0052073015831410885, -0.01613634265959263, 0.013782509602606297, 0.01880105957388878, -0.012205884791910648, 0.021243717521429062, 0.039289772510528564, -0.036151330918073654, 0.00421173358336091, -0.011191812343895435, -0.0030107602942734957, -0.019674494862556458, -0.03905291110277176, -0.004759480711072683, 0.012043041177093983, -0.008475281298160553, -0.002035547746345401, -0.00949675589799881, 0.022812940180301666, -0.019467240199446678, 0.004159919451922178, 0.019437631592154503, 0.03410837799310684, -0.021406561136245728, 0.015810655429959297, 0.007949739694595337, 0.019200768321752548, -0.007794297765940428, -0.013471625745296478, -0.001219478202983737, -0.0074575068429112434, 0.037750158458948135, -0.00037380060530267656, 0.011576715856790543, -0.016269579529762268, 0.012553778477013111, -0.014145206660032272, 0.015736635774374008, 0.028334826231002808, -0.02213195711374283, -0.0083272410556674, -0.022946175187826157, 0.011273234151303768, -0.0048372019082307816, -0.021140089258551598, -0.012383532710373402, 0.009852051734924316, -0.03233190253376961, -0.0023482819087803364, -0.008652929216623306, 0.0022890660911798477, -0.03179895877838135, 0.0211993046104908, -0.022561272606253624, -0.02204313315451145, 0.014241432771086693, 0.034404460340738297, 0.004448597319424152, 0.0042376406490802765, -0.020089006051421165, 0.015514575876295567, 0.029770812019705772, -0.006654391065239906, 0.03857918456196785, -0.014952024444937706, -0.00330684008076787, 0.02026665396988392, 0.004126610700041056, 0.0006444359314627945, -0.009000821970403194, 0.00866773258894682, 0.00043810540228150785, 0.005303527228534222, -0.015573791228234768, -0.01846056804060936, -0.0008049666648730636, 0.011783971451222897, -0.007875720039010048, 0.004948231857270002, 0.027831491082906723, 0.0038416339084506035, 0.006691400893032551, 0.0005098122055642307, 0.004426391329616308, -0.003293886547908187, 0.003288334934040904, -0.02291656844317913, -0.016950562596321106, -0.004296856466680765, -0.0027146805077791214, -0.028542080894112587, -0.004226537421345711, -0.012168874964118004, -0.009652197360992432, -0.008371653035283089, -0.006561866030097008, 0.01445609051734209, 0.008112583309412003, -0.004108105786144733, -0.021628620103001595, -0.017439093440771103, 0.003667687065899372, 0.0070133875124156475, 0.011709951795637608, 0.016106734052300453, 0.010747692547738552, -0.0016617472283542156, -0.0049704378470778465, 0.005525587126612663, -0.003395663807168603, -0.006758018862456083, 0.0018208901165053248, -0.005488577298820019, -0.0016432421980425715, -0.0013601160608232021, 0.004726171959191561, -0.005170291289687157, 0.07478972524404526, 0.010177738964557648, 0.006132550537586212, -0.013116329908370972, -0.005921593867242336, -0.036092113703489304, 0.0038453349843621254, 0.014996436424553394, 0.03144366294145584, 0.014167413115501404, -0.01579585112631321, -0.0093265101313591, 0.027017271146178246, 0.008260623551905155, -0.022279996424913406, 0.0218654852360487, 0.019245179370045662, 0.026425112038850784, -0.006295394152402878, 0.017350269481539726, 0.005951201543211937, -0.011606323532760143, -0.01699497364461422, 0.030407384037971497, 0.00017521902918815613, 0.030999543145298958, -0.029208261519670486, -0.0009164591319859028, 0.01152490172535181, 0.021702641621232033, 0.0029052819591015577, -0.017542721703648567, 0.004530019126832485, -0.0007536153425462544, 0.007091108243912458, 0.0047372751869261265, -0.001106597832404077, 0.010732888244092464, 0.00042283881339244545, -0.008253221400082111, 0.005040756426751614, 0.015707027167081833, 0.012368728406727314, 0.011517499573528767, 0.001824591076001525, -0.015588595531880856, -0.006473042070865631, 0.0030070592183619738, 0.0029052819591015577, -0.011591519229114056, -0.018016448244452477, -0.005051859654486179, -0.002068856731057167, 0.011880197562277317, 0.009452343918383121, -0.00438197935000062, 0.024308141320943832, -0.007405693177133799, 0.010214748792350292, -0.005455268081277609, -0.02272411622107029, 0.014900210313498974, -0.0049112215638160706, -0.01857900060713291, -0.016684090718626976, -0.005866078659892082, -0.008460476994514465, -0.003171753603965044, -0.005977108608931303, -0.002822009613737464, -0.01638801023364067, 0.012761034071445465, -0.01013332698494196, -0.02365676686167717, 0.004326464608311653, 0.011191812343895435, -0.01442648284137249, 0.02651393599808216, 0.01772036962211132, -0.0017533468781039119, 0.011339851655066013, 0.010710682719945908, -0.02272411622107029, -0.012242894619703293, 0.004581833258271217, 0.006188065279275179, 0.021673033013939857, -0.021747052669525146, 0.0007494516903534532, -0.02133254148066044, -0.0305258147418499, -0.0034826372284442186, 0.005107374396175146, 0.02057753875851631, -0.0023482819087803364, 0.0016487936954945326, -0.020932834595441818, -0.0027146805077791214, 0.01515928003937006, -0.008379055187106133, 0.007468610070645809, 0.01832733303308487, -0.006795028690248728, -0.005532989278435707, 0.018712235614657402, -0.014367266558110714, 0.026232659816741943, 0.004259846638888121, -0.034286025911569595, 0.004855706822127104, 0.005621813237667084, -0.027801882475614548, -0.006154756527394056, -0.006191766355186701, -0.022102348506450653, 0.020755186676979065, 0.024308141320943832, -0.019215570762753487, -0.023775199428200722, -0.009644796140491962, 0.002685072598978877, 0.01598830334842205, 0.0009742872207425535, -0.001150084543041885, 0.007683267816901207, -0.011547108180820942, -0.004770583938807249, -0.00803116150200367, -0.011828383430838585, 0.003401215421035886, -0.002427853411063552, 0.00011814273602794856, 0.006917161867022514, 0.009911267086863518, 0.027742667123675346, 0.0006990256370045245, -0.009940875694155693, -0.013878734782338142, 0.027135703712701797, -0.013871333561837673, 0.007735081948339939, -0.001758898375555873, 0.007216942496597767, 0.022946175187826157, 0.0016598966903984547, 0.017572328448295593, -0.005407155025750399, -0.01416001096367836, -0.016151146963238716, -0.00868993904441595, 0.0239824540913105, -0.0330720990896225, 0.003667687065899372, -0.017083797603845596, 0.0045781321823596954, 0.006521155126392841, -0.027801882475614548, 0.04278351366519928, -0.026425112038850784, -0.013316184282302856, 0.008837978355586529, -0.003284634090960026, -0.012538975104689598, -0.019171159714460373, 0.008194005116820335, 0.007698071654886007, 0.02544804848730564, 0.03203582018613815, -0.001450790441595018, -0.0074093942530453205, -0.010851320810616016, -0.0045448229648172855, 0.009378324262797832, -0.030140912160277367, 0.01372329331934452, 0.005029653664678335, -0.0005620887968689203, 0.0014702207408845425, -0.03171013295650482, 0.005051859654486179, 0.0073131681419909, 0.0002451909822411835, 0.014011970721185207, 0.001788506400771439, -0.010836516506969929, -0.01296088844537735, 0.006225075572729111, -0.006117746699601412, -0.0059400987811386585, 0.0034030659589916468, 0.004052590578794479, 0.01418961863964796, 0.005577401258051395, 0.008038563653826714, -0.02051832154393196, -0.011872795410454273, 0.02518157660961151, 0.020562734454870224, 0.0033308963757008314, -0.01498903427273035, 0.0058364709839224815, 0.0038601388223469257, 0.0025518368929624557, 0.010644064284861088, -0.005077766720205545, -0.009008224122226238, -0.017809193581342697, -0.00736128119751811, -0.010355386883020401, 0.006602576933801174, -0.033220142126083374, -0.04026683792471886, 0.010347984731197357, -0.003948962781578302, -0.0072761583141982555, -0.002450059400871396, 0.01486320048570633, 0.0067506167106330395, 0.01832733303308487, -0.005607008934020996, 0.016713697463274002, 0.01166553981602192, 0.041480764746665955, -0.005418258253484964, -0.022738920524716377, 0.015026044100522995, 0.0010742141166701913, 0.013138536363840103, 0.004570730030536652, 0.008808370679616928, 0.0198669470846653, -0.017439093440771103, -0.006843141745775938, 0.019837338477373123, -0.01086612418293953, 0.016772914677858353, 0.013575254008173943, 0.0017505711875855923, 0.027342958375811577, -0.02426373027265072, 0.009578177705407143, -0.00803116150200367, -0.0030255643650889397, -0.02072557806968689, 0.007390889339148998, 0.004193228669464588, 0.004278351552784443, 0.007224344182759523, 0.009289500303566456, -2.3839618734200485e-05, -0.012538975104689598, -0.005133281461894512, 0.008149593137204647, 0.02331627532839775, 0.0031162386294454336, -0.008867586962878704, -0.013804715126752853, 0.007905327714979649, 0.0025999497156590223, -0.015085260383784771, 0.0006259309593588114, 0.012620396912097931, -0.016106734052300453, -0.014137804508209229, 0.01213186513632536, 0.011191812343895435, -0.025906972587108612, 9.749811579240486e-05, -0.009874257259070873, -0.0029848532285541296, 0.018475372344255447, 0.004522616975009441, 0.018875079229474068, 0.008512291125953197, -0.0002477354137226939, -0.0009178470354527235, 0.007231746334582567, -0.021140089258551598, 0.005721739958971739, 0.019408022984862328, 0.0015618203906342387, -0.0015155578730627894, 0.02057753875851631, -0.008660330437123775, 0.009918669238686562, -0.018312528729438782, 0.002908982802182436, 0.004459700081497431, -0.0006078886217437685, 0.013005300424993038, 0.006539660040289164, -0.020089006051421165, 0.012761034071445465, -0.009341314435005188, -0.007698071654886007, 0.026958055794239044, -0.01552937924861908, 0.0036066207103431225, 0.022087544202804565, -0.003985972609370947, -0.0017376176547259092, 0.0009641094948165119, -0.005359042435884476, -0.025270400568842888, 0.00027896257233805954, 0.008082975633442402, 0.009185872040688992, 0.00896381214261055, -0.01015553344041109, 0.007179932203143835, 0.004034085664898157, -0.008208809420466423, -0.011139998212456703, -0.0064397333189845085, -0.023627158254384995, -0.012316915206611156, 0.005817965604364872, 0.013101526536047459, -0.026439916342496872, -0.0026018002536147833, -0.0019115644972771406, 0.00471136812120676, -0.018963903188705444, 0.021939504891633987, -0.006373115349560976, 0.009193274192512035, 0.012250296771526337, 0.030762679874897003, 0.004752079024910927, -0.033753085881471634, 0.020473910495638847, -0.005059261806309223, -0.017424289137125015, -0.006558164954185486, 0.007890523411333561, 0.018356939777731895, -0.0024667137768119574, -0.004093301482498646, -0.01336059533059597, 0.0082976333796978, -0.006906058639287949, 0.005891985725611448, -0.004467102233320475, 0.005344238132238388, 0.022146759554743767, 0.011391665786504745, 0.01076249685138464, -0.01299049612134695, 0.024900302290916443, 0.00896381214261055, 0.009082244709134102, -0.003053321735933423, 0.03339779004454613, 0.009111852385103703, -0.022072739899158478, -0.018564196303486824, 0.022487252950668335, 0.006584072019904852, -0.03283523768186569, 0.022339211776852608, -0.004089600872248411, 0.014737366698682308, -0.014811386354267597, -0.0015905030304566026, 0.003292036009952426, -0.009333912283182144, -0.0113250482827425, 0.025270400568842888, -0.02718011476099491, 0.004267248325049877, -0.004559627268463373, -0.028009139001369476, -0.02504834160208702, -0.008490084670484066, -0.018490176647901535, 0.006535958964377642, -0.009008224122226238, -0.007524124812334776, -0.0034400757867842913, -0.0146263362839818, 0.041954491287469864, -0.011006762273609638, -0.010510829277336597, -0.016965365037322044, 0.006554463878273964, 0.014618934132158756, 0.028690122067928314, -0.0035825641825795174, 0.0068838526494801044, -0.010451612994074821, -0.014737366698682308, -0.0049149226397275925, -0.007268756162375212, 0.002583295339718461, 0.0012111510150134563, 0.01886027678847313, -0.02331627532839775, 0.02066636271774769, -0.007120716385543346, -0.0016978319035843015, 0.015781046822667122, -0.005825367756187916, 0.01766115240752697, 0.00036223497590981424, 0.005155487451702356, -0.015707027167081833, -0.005540390964597464, 0.015692222863435745, 0.011280636303126812, -0.009245088323950768, 0.004863108973950148, 0.017202230170369148, -0.02118450216948986, 0.0041636205278337, -0.0035122453700751066, -0.024619026109576225, 0.015351731330156326, -0.022013524547219276, 0.007609247695654631, 0.0039748698472976685, 0.013604861684143543, -0.0061473543755710125, 0.005788357928395271, 0.004718769807368517, 0.0017551974160596728, -0.011754363775253296, 0.017779584974050522, 0.0072983643040061, -0.008504888974130154, 0.018475372344255447, -0.014574522152543068, -0.015410947613418102, -0.006336105056107044, 0.002072557806968689, -0.027416978031396866, -0.008660330437123775, 0.02805355004966259, -0.027283743023872375, 0.002091062720865011, 0.02285735122859478, -0.013619665056467056, -0.009319107979536057, -0.008142190985381603, 0.004844604060053825, 0.012176277115941048, -4.993453330826014e-05, 0.01079210452735424, 0.011820981279015541, 0.0019374714465811849, -0.018179291859269142, -0.0029737502336502075, 0.014833591878414154, -0.00709480931982398, -0.003293886547908187, -0.015144475735723972, -0.004633646924048662, -0.015588595531880856, 0.03064424730837345, 0.028142374008893967, -0.034611716866493225, -0.000864182598888874, -0.0032735310960561037, -0.01433025673031807, 0.006358311045914888, -0.021228913217782974, -0.00045429726014845073, 0.008460476994514465, 0.00139990181196481, 0.00021095677220728248, -0.006965274456888437, -0.011857991106808186, -0.004204331431537867, 0.011517499573528767, -0.013575254008173943, 0.018046056851744652, 0.0018588253296911716, 0.0032365210354328156, 0.0027720460202544928, 0.006968975532799959, -0.005958603695034981, -0.004859407898038626, 0.0025222287513315678, -0.008194005116820335, 0.011887599714100361, 0.033545829355716705, -0.012916476465761662, 0.019822534173727036, 0.016550853848457336, 0.0028331123758107424, 0.01693575829267502, -0.016684090718626976, -0.0018569747917354107, 0.012265101075172424, -0.014404276385903358, 0.012842456810176373, -0.000196846725884825, -0.012072648853063583, 0.018342137336730957, 0.003985972609370947, 0.019896555691957474, -0.007912729866802692, -0.012065247632563114, 0.014937220141291618, 0.019289592280983925, 0.020829206332564354, 0.00471136812120676, -0.010703280568122864, 0.029622772708535194, 0.03250955045223236, 0.021510189399123192, 0.007416795939207077, 0.02072557806968689, 0.0011917207157239318, 0.012746230699121952, 0.002666567685082555, 0.032953668385744095, -0.0020225944463163614, 0.008993420749902725, 0.0019929863046854734, 0.007124417461454868, 0.0019097139593213797, -0.011073379777371883, -0.003754660487174988, 0.0035566571168601513, 0.0014184067258611321, -0.00292378687299788, 0.026143835857510567, 0.00579946069046855, 0.022013524547219276, 0.007816503755748272, -0.021747052669525146, -0.0012990495888516307, -0.007339075207710266, 0.0166544821113348, -0.0041044047102332115, 0.014685552567243576, 0.011487891897559166, 0.018623411655426025, 0.03789820149540901, 0.0008933279314078391, 0.028097962960600853, -0.01406378485262394, 0.007516723126173019, -0.003288334934040904, -0.00734647735953331, -0.01819409616291523, -0.008008955046534538, 0.005777254700660706, -0.006972676608711481, 0.007076304405927658, -0.00032383715733885765, -0.0016608219593763351, -0.00019673106726258993, 0.004004477523267269, 0.003175454679876566, -0.010340582579374313, -0.013108927756547928, -0.01169514749199152, -0.003993374761193991, 0.021702641621232033, -0.01705418899655342, -0.03159170225262642, -0.013123732060194016, 0.0067765237763524055, -0.004555926192551851, 0.000541270652320236, 0.009600384160876274, -0.008697341196238995, 0.002165082609280944, 0.017039386555552483, -0.002305720467120409, -0.018949100747704506, -0.006132550537586212, 0.001715411664918065, -0.008475281298160553, 0.005314630456268787, -0.018046056851744652, 0.012043041177093983, 0.01433025673031807, -0.004718769807368517, 0.00846787914633751, -0.011539706028997898, -0.0012167025124654174, -0.007772091776132584, 0.01416001096367836, 0.030229736119508743, -0.009644796140491962, 0.009393127635121346, -0.0013647422892972827, -0.028675317764282227, 0.020681165158748627, -0.013886136934161186, -0.00456702895462513, 0.012820250354707241, 0.012205884791910648, -0.02145097404718399, 0.004315361380577087, 0.008334643207490444, -0.023419903591275215, -0.00895641092211008, -0.017276249825954437, -0.011739559471607208, -0.011443479917943478, -0.0008998046396300197, 0.011857991106808186, -0.010310974903404713, 0.009393127635121346, -0.012820250354707241, 0.0030237138271331787, -0.016343599185347557, -0.001206524670124054, 0.001155636040493846, 0.01598830334842205, -0.0004205256700515747, -0.007979347370564938, -0.018490176647901535, 0.0032143150456249714, 0.013034908100962639, 0.012938681989908218, -0.03425642102956772, -0.0023926938883960247, -0.009955679066479206, -0.011487891897559166, 0.014493100345134735, -0.0026314081624150276, -0.009570775553584099, 0.015011239796876907, 0.011317646130919456, 0.009518961422145367, -0.012546376325190067, 0.010000091046094894, 0.0009257116471417248, -0.0038601388223469257, -0.017157817259430885, 0.007316869217902422, 0.0062768892385065556, -0.034019555896520615, 0.0009604084771126509, 0.0022465046495199203, -0.0439678318798542, -0.009977885521948338, -0.01122882217168808, 0.0020207439083606005, 0.007712875958532095, 0.028097962960600853, -0.0015497921267524362, 0.008364250883460045, -0.006480444222688675, -0.009319107979536057, -0.0005315555608831346, -0.0259809922426939, 0.01379731297492981, -0.02031106688082218, 0.004770583938807249, -0.004681759979575872, -0.00949675589799881, 0.017483504489064217, -0.040355660021305084, -0.005651420913636684, -0.008008955046534538, -0.0178684089332819, -0.03869761526584625, -0.006924563553184271, -0.005059261806309223, 0.01752791740000248, -0.01396015752106905, -0.0037306039594113827, 0.003786118933930993, 0.002340879989787936, -0.032953668385744095, -0.0066173807717859745, 0.017291054129600525, -0.01179137360304594, 0.002675820142030716, 0.013634469360113144, -0.01545535959303379, -0.010436808690428734, -0.024204514920711517, 0.010880928486585617, -0.023493923246860504, -0.007986749522387981, 0.006857945583760738, 0.008075573481619358, -0.00689495587721467, -1.5685862308600917e-05, 0.0014119299594312906, -0.002661016071215272, -0.03470053896307945, -0.0065433611162006855, 0.0009446792537346482, -0.026765603572130203, 0.005495978984981775, 0.015440555289387703, -0.01791282184422016, 0.01760193705558777, 0.0069837793707847595, -0.016210362315177917, -0.013338389806449413, -0.028482865542173386, -0.009659599512815475, -0.008800968527793884, -0.0071762315928936005, 0.01119921449571848, -0.008090377785265446, 0.011776569299399853, -0.00556629803031683, 0.02405647374689579, 0.00045290938578546047, 0.003075527725741267, 0.0071762315928936005, 0.005359042435884476, 0.0034659828525036573, 0.0039452617056667805, -0.012080051004886627, -0.021643424406647682, -0.016491638496518135, 0.027490999549627304, -0.012361327186226845, -0.023005392402410507, 0.014641140587627888, -0.011769167147576809, -0.0025296309031546116, -0.011650735512375832, 0.01172475516796112, 0.0073797861114144325, -0.010125924833118916, -0.0004584608832374215, 0.01866782456636429, -0.011857991106808186, 0.0060437265783548355, 0.02152499370276928, 0.006184364203363657, -0.004293155390769243, 0.009000821970403194, -0.005854975897818804, -0.00686164665967226, 0.00230016908608377, -0.0016774764517322183, 0.00443009240552783, 0.012487160973250866, -0.016565658152103424, -0.03677309677004814, -0.0045781321823596954, 0.003893447807058692, 0.021436169743537903, -0.01239833701401949, -0.00903043057769537, 0.009163666516542435, -0.023671571165323257, 0.0019208169542253017, -0.011073379777371883, -0.020044595003128052, 0.004922324791550636, -0.008216211572289467, -0.002572192344814539, 0.0016090080607682467, 0.018638215959072113, -0.0070133875124156475, 0.0010742141166701913, -0.003047770354896784, 0.01115480251610279, 0.009637393988668919, -0.015558987855911255, 0.012146669439971447, -0.007942337542772293, 0.006151055451482534, -0.00512958038598299, -0.011969021521508694, -0.00410070363432169, 0.009311705827713013, 0.01591428369283676, -0.008364250883460045, -0.017957232892513275, -0.021302932873368263, -0.026884036138653755, -0.023375490680336952, 0.0018088618526235223, -5.198743019718677e-05, -0.0048668100498616695, 0.006709905806928873, 0.004418989177793264, -0.018090467900037766, -0.03363465145230293, -0.014226628467440605, -0.015736635774374008, 0.0054145571775734425, 0.036210544407367706, 0.013486430048942566, -0.003952663857489824, 0.011798775754868984, 0.010917938314378262, 0.0074834139086306095, -0.020207438617944717, -0.017439093440771103, 0.025403637439012527, 0.0023260759189724922, 0.012546376325190067, 0.004093301482498646, -0.014663346111774445, 0.0021576806902885437, 0.00039253689465112984, 0.015544183552265167, -0.005669925827533007, 0.0009011925430968404, -0.006994882598519325, 0.006336105056107044, -0.021036460995674133, 0.021628620103001595, 0.029622772708535194, -0.006284291390329599, 0.022472448647022247, -0.007661061827093363, -0.014766974374651909, -0.0005671776598319411, 0.0028793748933821917, -0.018016448244452477, 0.00279980362392962, 0.004570730030536652, -0.00776468962430954, 0.011569313704967499, -0.0186530202627182, -0.0062509821727871895, 0.014300649054348469, -0.011709951795637608, -0.02506314590573311, -0.0027331856545060873, -0.01918596401810646, -0.013382801786065102, 0.008453074842691422, -0.012390934862196445, -0.011969021521508694, 0.005984510760754347, -0.004755780100822449, 0.01305711455643177, -0.01122882217168808, 0.002677670679986477, 0.00806076917797327, -0.008194005116820335, 0.008119985461235046, 0.010066709481179714, 0.01119921449571848, -0.029341496527194977, 0.009045233950018883, 0.014959425665438175, -0.010888330638408661, 0.008837978355586529, -0.016832130029797554, 0.01149529404938221, -0.0037935208529233932, -0.01764634996652603, 0.004363474436104298, 0.00653225788846612, -0.016225166618824005, 0.010273965075612068, -0.015292515978217125, 0.008408662863075733, -0.0011343553196638823, -0.0059400987811386585, 0.018697431311011314, -0.009459746070206165, 0.00968920812010765, 0.014382070861756802, 0.0050444575026631355, 0.006502650212496519, 0.0003259189543314278, -0.004330165218561888, -0.010732888244092464, 0.01905272714793682, -0.011147400364279747, -0.010310974903404713, 0.009622589685022831, -0.006365713197737932, -0.011391665786504745, 0.017157817259430885, -0.004015580751001835, 0.019911358132958412, 0.014241432771086693, 0.0037009960506111383, -0.013656675815582275, 0.005122178699821234, -0.0066469889134168625, 0.015248103998601437, 0.0040747965686023235, -0.01672850176692009, 0.0009183096699416637, -0.008882390335202217, -0.001693205675110221, -0.009578177705407143, 0.017217034474015236, 0.031739741563797, 0.030969934538006783, -0.0048409029841423035, 0.016891345381736755, -0.012975691817700863, -0.0103257792070508, -0.023819610476493835, 0.02559608966112137, -0.01791282184422016, 0.004826098680496216, -0.012886867858469486, 0.014855798333883286, -0.004966736771166325, -0.018623411655426025, -0.0066728959791362286, -0.007331673055887222, -0.0014026775024831295, -0.018031252548098564, 0.007786895614117384, -0.0031458467710763216, 0.004674357827752829, -0.011969021521508694, -0.006787627004086971, 0.00022633903427049518, -0.004985241685062647, 0.010903134010732174, 0.010162935592234135, 0.009363519959151745, -0.005747647024691105, -0.019289592280983925, -0.02312382310628891, -0.019215570762753487, 0.0358552485704422, 0.0006777449161745608, 0.005248012486845255, 0.002079959725961089, 0.002072557806968689, -0.01911194436252117, -0.0033475509844720364, -0.0017690761014819145, -0.0019004615023732185, 0.001961527857929468, -0.011872795410454273, -0.0068542445078492165, 0.019037922844290733, -0.02125852182507515, -0.014700355939567089, -0.007631453685462475, 0.005088869482278824, 0.006591474171727896, 0.01389353908598423, 0.02911943756043911, 0.0014026775024831295, -0.010858722031116486, -0.001053858664818108, -0.011406470090150833, -0.0024685643147677183, 0.007054098416119814, -0.007735081948339939, 0.005921593867242336, 0.014515306800603867, 0.01564781181514263, -0.0027405875734984875, 0.017350269481539726, 0.009407931938767433, 0.005255414638668299, 0.010081512853503227, 0.004270949400961399, -0.02059234119951725, -0.0318581722676754, -0.021480580791831017, 0.0014766973908990622, -0.007272457238286734, 0.008482682518661022, -0.005118477623909712, 0.007091108243912458, -0.024811478331685066, 0.014729964546859264, -0.012294708751142025, -0.005932696629315615, -0.00040040150634013116, 0.0038638398982584476, 0.006902357563376427, -0.010688476264476776, 0.018830668181180954, 0.010940144769847393, 0.014618934132158756, -0.031887780874967575, 0.005743945948779583, -0.010481220670044422, 0.009755825623869896, -0.019940966740250587, -0.016684090718626976, 0.019215570762753487, 0.004167321603745222, 0.0019097139593213797, 0.01591428369283676, -0.001523885177448392, 0.009378324262797832, 0.017942428588867188, 0.005540390964597464, -0.017202230170369148, -0.011288038454949856, -0.0020522023551166058, 0.015618203207850456, -0.0016913552535697818, -0.02599579654633999, 0.02852727845311165, -0.003750959411263466, -0.0015599698526784778, 0.013471625745296478, 0.008675134740769863, 0.013730695471167564, -0.016758110374212265, -1.2425804925442208e-05, 0.0064878459088504314, 0.003911952953785658, -0.00849748682230711, 0.004515215288847685, -0.021806268021464348, 0.02251685969531536, -0.003434524405747652, -0.016476834192872047, -0.027091290801763535, 0.01658046245574951, -0.020148223266005516, 0.0272541344165802, 0.021613817662000656, 0.015558987855911255, 0.017424289137125015, 0.02413049526512623, -0.007986749522387981, 0.018371744081377983, 0.007572237867861986, -0.009430138394236565, 0.00588088296353817, 0.01732066087424755, -0.0011408320860937238, -0.007283560466021299, -0.008156995289027691, -0.02139175683259964, 0.018356939777731895, -0.0037454080302268267, -0.021140089258551598, -0.01269441656768322, -0.007550031878054142, -0.0004256145330145955, -0.009067440405488014, 0.02418971061706543, -0.007883121259510517, 0.0173798780888319, 0.003208763664588332, -0.0017274399287998676, 0.019748514518141747, 0.020621949806809425, -0.018223704770207405, -0.008253221400082111, -0.0005681028706021607, -0.012798044830560684, 0.012191081419587135, 0.005766151938587427, -0.011909805238246918, -0.014300649054348469, 0.00703189242631197, -0.0026295576244592667, -0.0007161427638493478, 0.013197751715779305, 0.00304036820307374, 0.018105272203683853, 0.010140729136765003, 0.032687198370695114, -0.00959298200905323, 0.003456730395555496, -0.007239148486405611, -0.015351731330156326, 0.01726144552230835, 0.003886045888066292, -0.010266562923789024, 0.0027553916443139315, 0.00456702895462513, 0.013878734782338142, -0.021821072325110435, 0.02219117246568203, -0.012265101075172424, -0.0014961276901885867, -0.025744128972291946, -0.00923028402030468, 0.013841724954545498, 0.007816503755748272, -0.009741021320223808, 0.00968920812010765, 0.0012657406041398644, -0.015573791228234768, -0.008379055187106133, -0.0023501324467360973, 0.002226149197667837, 0.001693205675110221, 0.008615918457508087, 0.006658092141151428, 0.012183679267764091, -0.01785360462963581, 0.019955771043896675, -0.008512291125953197, -0.006003015674650669, 0.032894451171159744, 0.011413872241973877, -0.003386411350220442, 0.01392314676195383, 0.020695969462394714, -0.005784656852483749, -0.009252490475773811, -0.0013712190557271242, 0.010658868588507175, -0.010384994558990002, -0.004977839533239603, 0.005699533969163895, -0.007653659675270319, 0.008179201744496822, 0.0014702207408845425, -0.006717307958751917, -0.012213286943733692, 0.0016904299845919013, 0.0016210363246500492, -0.0009705862030386925, 0.006865347735583782, 0.017468702048063278, -0.00129072240088135, 0.0036306772381067276, 0.008638124912977219, 0.015040848404169083, 0.0020003884565085173, -0.015351731330156326, -0.009178469888865948, 0.01886027678847313, 0.0068061319179832935, -0.00419692974537611, 0.014219227246940136, 0.000670805515255779, -0.02599579654633999, -0.005329434294253588, -0.0004704891180153936, 0.00812738761305809, 0.0009331136243417859, 0.018564196303486824, 0.01066627074033022, 0.0022205975838005543, 0.008001553826034069, 0.012901672162115574, 0.013175546191632748, 0.02145097404718399, 0.006373115349560976, 0.005666224751621485, -0.0008831502054817975, 0.010910536162555218, 0.006976377684623003, 0.0019448734819889069, -0.022146759554743767, -0.013516037724912167, -0.003408617340028286, 0.016965365037322044, 0.0010816161520779133, -0.00754633080214262, -0.009363519959151745, -0.005492278374731541, -0.013108927756547928, 0.005170291289687157, -0.0066765970550477505, -0.0030070592183619738, 0.0025166773702949286, -0.021376952528953552, 0.022013524547219276, 0.0012130014365538955, -0.006639586761593819, -0.0039415606297552586, 0.004089600872248411, 0.0010816161520779133, 0.0186530202627182, -0.02039989084005356, 0.014604130759835243, 0.02031106688082218, 0.0018458717968314886, -0.013575254008173943, -0.010821712203323841, -0.004655852913856506, -0.0093265101313591, 0.001722813700325787, 0.005695832893252373, 0.007698071654886007, -0.007102211471647024, 0.006976377684623003, -0.02965238131582737, -0.012072648853063583, -0.02438216283917427, -0.011628529988229275, -0.01893429644405842, 0.011680343188345432, 0.004093301482498646, -0.026824818924069405, -0.026232659816741943, 0.018904687836766243, 0.008445672690868378, 0.03410837799310684, 0.0018440212588757277, -0.014833591878414154, 0.008949008770287037, -0.01239833701401949, 0.012353925034403801, -0.008889792487025261, 0.0198669470846653, 0.011561911553144455, -0.020962441340088844, -0.019630083814263344, 0.012857260182499886, 0.0075426301918923855, -0.0042080325074493885, -0.022368820384144783, -0.008356848731637001, 0.021347345784306526, 0.0010964201064780354, 0.008164397440850735, 0.024604221805930138, -0.00895641092211008, 0.010466417297720909, -0.022694507613778114, 0.00658037094399333, -0.005248012486845255, 0.008845380507409573, -0.00264991307631135, -0.021169697865843773, 0.023138627409934998, -0.011184410192072392, -0.0062805903144180775, 0.006569268181920052, -0.0016284382436424494, -0.019763318821787834, 0.01732066087424755, 0.014404276385903358, 0.006661792751401663, -0.0073834871873259544, -0.004715069197118282, 0.010814310051500797, -0.006957872770726681, 0.0073797861114144325, -0.010895732790231705, -0.0073797861114144325, -0.025610892102122307, 0.016876542940735817, 0.00033840982359834015, 0.028334826231002808, -0.0006213047308847308, 0.0006347208400256932, -0.006417527329176664, -0.006698803044855595, 0.011946815066039562, 0.015203692018985748, -0.0158698707818985, -0.01711340621113777, -0.0021262222435325384, -0.012309513054788113, -0.0037046971265226603, -0.03333857282996178, 0.02418971061706543, -0.01233171857893467, -0.003038517665117979, 0.009681805968284607, 0.027239330112934113, -0.022028328850865364, -0.005025952588766813, -0.01339760608971119, 0.018371744081377983, -0.0019208169542253017, -0.008334643207490444, -0.0033401488326489925, 0.04124389961361885, 0.025092752650380135, 0.005433062091469765, 0.00985945388674736, 0.010096317157149315, -0.014041579328477383, 0.000973361951764673, -0.003175454679876566, -0.02331627532839775, 0.017291054129600525, -0.013434615917503834, -0.0021225211676210165, -0.003926756791770458, -0.021214108914136887, -0.005681029055267572, -0.0028664213605225086, 0.00842346716672182, 0.005481175146996975, 0.007823905907571316, 0.004307959228754044, -0.009393127635121346, -0.0022335511166602373, 0.017439093440771103, 0.002945992862805724, 0.04852746054530144, 0.003045919816941023, 0.025403637439012527, -0.01718742586672306, 0.005185095593333244, -0.027298547327518463, -0.00397857092320919, -0.013878734782338142, -0.007949739694595337, -0.003515946213155985, 0.015707027167081833, -0.004259846638888121, 0.02078479342162609, 0.019911358132958412, -0.0011463835835456848, 7.049240957712755e-05, 0.003967467695474625, -0.007450105156749487, -0.00010530490544624627, 0.0038157268427312374, -0.003525198670104146, 0.016832130029797554, -0.010903134010732174, -0.013686283491551876, 0.012983093969523907, 0.020222242921590805, 0.010266562923789024, -0.0061621586792171, 0.015736635774374008, 0.00037888946826569736, 0.015499771572649479, -0.015707027167081833, -0.030703462660312653, 0.0330720990896225, 0.008045965805649757, 0.0011112240608781576, 0.011554509401321411, 0.017083797603845596, 0.002068856731057167, -0.017675956711173058, -0.008726948872208595, -0.0077794939279556274, 0.00048483049613423645, 0.0033512518275529146, -0.007683267816901207, -0.0038046238478273153, 0.016299186274409294, 0.0024000960402190685, -0.009097048081457615, 0.0035733117256313562, -0.0006624782690778375, -0.009474550373852253, -0.036092113703489304, -0.013249565847218037, -0.012361327186226845, 0.01739468239247799, 0.0035825641825795174, -0.013701087795197964, -0.018046056851744652, -0.010836516506969929, -0.008342045359313488, -0.0006351834745146334, 0.006243580486625433, 0.0246486347168684, -0.00912665668874979, 0.00636201212182641, 0.0038342319894582033, 0.021909896284341812, -0.0008674209238961339, -0.0028738235123455524, 0.02125852182507515, -0.0035085442941635847, -0.023967649787664413, -0.023538334295153618, -0.016417618840932846, -0.027550214901566505, -0.024944713339209557, -0.011487891897559166, -0.006358311045914888, 0.00846787914633751, 0.010111121460795403, -0.021214108914136887, -0.01640281453728676, -0.012102257460355759, -0.009459746070206165, 0.005966005846858025, -0.0006250056903809309, 0.003762062406167388, 0.019689299166202545, -0.005803161766380072, -0.004774285014718771, -0.020873617380857468, -0.01445609051734209, 0.003069976344704628, 0.023627158254384995, -0.014204422943294048, 0.0024963219184428453, -0.015203692018985748, 0.0030052089132368565, 0.016077127307653427, 0.013205153867602348, 0.013405007310211658, -0.011976423673331738, -0.001967079471796751, 0.0013480877969413996, -0.009955679066479206, -0.019556062296032906, -0.004607740323990583, -0.0009391277562826872, 0.016047518700361252, -0.014633738435804844, 0.0035881157964468002, -0.004859407898038626, 0.025374028831720352, 0.01319034956395626, 0.019156355410814285, 0.014663346111774445, 0.0173798780888319, 0.0071466234512627125, 0.02318303845822811, -0.010799506679177284, 0.0027146805077791214, 0.04044448584318161, 0.007823905907571316, 0.0031106872484087944, 0.02019263431429863, 0.004089600872248411, 0.018282920122146606, -0.013604861684143543, -0.0031051356345415115, 0.009459746070206165, -0.033279355615377426, -0.00556629803031683, 0.021095678210258484, -0.005936397705227137, 0.010333181358873844, 0.006924563553184271, -0.006906058639287949, -0.0021613817662000656, -0.0031550992280244827, -0.008556703105568886, 0.024278534576296806, 0.031354837119579315, -0.0011343553196638823, -0.012154070660471916, 0.013145937584340572, -0.03360504284501076, 0.006876450497657061, 0.020296262577176094, 0.008652929216623306, -0.027476195245981216, -0.011917207390069962, -0.028882572427392006, 0.011443479917943478, -0.007179932203143835, 0.0064138262532651424, -0.025507265701889992, 0.007786895614117384, -0.01692095398902893, 0.0033660558983683586, -0.007527825888246298, -0.0032346704974770546, 0.012761034071445465, 0.0011630379594862461, 0.00534793920814991, -0.015677418559789658, -0.014293246902525425, 0.02025184966623783, -0.001153785502538085, -0.024012062698602676, 0.002809056080877781, 0.0041044047102332115, 0.008986018598079681, -0.004378278274089098, -0.0004963960964232683, 0.01179137360304594, -0.0031550992280244827, 0.002548135817050934, -0.005377547349780798, -0.008179201744496822, 0.017350269481539726, 0.0022816641721874475, 0.022087544202804565, 0.02358274720609188, -0.006491546984761953, 0.0060178195126354694, -0.012065247632563114, 0.014448688365519047, 0.0009724367409944534, -0.005769853014498949, 0.014833591878414154, 0.025018732994794846, -0.027032075449824333, 0.0038490358274430037, -0.023745590820908546, 0.018238509073853493, -0.01857900060713291, 0.0007489890558645129, -0.024678241461515427, -0.008371653035283089, 0.0009409782360307872, 0.01269441656768322, -0.023612355813384056, -0.005407155025750399], "807b4fcc-439e-49c0-b9d8-3ba3f605786f": [-0.01241880189627409, -0.03490074723958969, -0.0015559085877612233, 0.013030845671892166, -0.02349964715540409, -0.027840889990329742, 0.032367169857025146, 0.026104392483830452, -0.007721719332039356, 0.027214612811803818, 0.016098182648420334, 0.022489061579108238, 0.023940887302160263, -0.013642890378832817, 0.040252573788166046, 0.042985424399375916, -0.0014500463148579001, -0.000667644024360925, 0.006889054551720619, -0.02905074506998062, 0.04346936568617821, -0.018475191667675972, -0.03117154911160469, 0.043327029794454575, 0.020183222368359566, -0.008618434891104698, -0.010262413881719112, 0.025606216862797737, -0.017663877457380295, -0.015116065740585327, 0.015016430988907814, 0.030203664675354958, 0.004309217445552349, 0.01729380339384079, 0.034274470061063766, -0.018275922164320946, 0.007166609633713961, -0.017678111791610718, -0.04196060448884964, 0.011208946816623211, 0.006266335491091013, 0.01811935193836689, 0.010824640281498432, -0.0115078529343009, -0.02977665700018406, 0.028936875984072685, -0.006476280745118856, -0.0011867251014336944, -0.029833592474460602, -0.02695840783417225, 0.022745266556739807, -0.014425736851990223, 0.012582488358020782, -0.0033822553232312202, 0.05417301878333092, -0.032224833965301514, 0.008013507351279259, 0.020539062097668648, 0.0025104484520852566, -0.0688336119055748, 0.014397270046174526, -0.0010105844121426344, 0.026431765407323837, -0.013436502777040005, 0.03746279329061508, 0.0013023728970438242, 0.002506889868527651, -0.01068942155689001, -0.034786880016326904, 0.0011458034859970212, 0.013194532133638859, -0.01220529805868864, -0.0460314117372036, 0.011650187894701958, 0.015671174973249435, -0.003460539970546961, 0.03000439517199993, 0.046486884355545044, 0.009721538051962852, -0.024894537404179573, -0.004643706604838371, -0.013685590587556362, 0.03176935762166977, 0.00167689414229244, 0.07982193678617477, 0.03421753644943237, -0.016838328912854195, -0.04742630198597908, -0.008426281623542309, -0.024723734706640244, -0.009337230585515499, 0.01911570318043232, 1.7666880012257025e-05, -0.005583123303949833, -0.029662787914276123, 0.003999636974185705, 0.022574463859200478, -0.009593435563147068, -0.004935495089739561, -0.020738331601023674, 0.012112779542803764, 0.0017089196480810642, -0.007501098792999983, 0.017478840425610542, 0.030829941853880882, -0.016852563247084618, 0.014774460345506668, -0.0070918831042945385, -0.04335549473762512, 0.013827926479279995, -0.00315273879095912, -0.01945730857551098, 0.01582774519920349, -0.012518436647951603, -0.06177375465631485, -0.03433140367269516, -0.05314820259809494, -0.011223181150853634, -0.01261807233095169, -0.036608777940273285, 0.030146731063723564, -0.02059599570930004, 0.015386504121124744, -0.016112416982650757, -0.023442711681127548, 0.003917793743312359, 0.011265881359577179, 0.027285780757665634, 0.021094171330332756, 0.006757393945008516, -0.011514969170093536, -0.020396726205945015, 0.014205116778612137, 0.006618616636842489, 0.01278887502849102, 0.012945444323122501, -0.027983225882053375, 0.050045281648635864, -0.012739057652652264, 0.036523375660181046, -0.04426644742488861, -0.026431765407323837, -0.026218261569738388, 0.00970730371773243, 0.02570585161447525, 0.008269712328910828, -0.02917884662747383, 0.03700731694698334, -0.017322272062301636, 0.013813693076372147, -0.08073288947343826, -0.008696720004081726, -0.02441059611737728, -0.011906392872333527, 0.025392713025212288, -0.02583395503461361, 0.0004109947185497731, 0.01959964446723461, 0.009458216838538647, 0.06331098079681396, 0.0035708502400666475, -0.06860587745904922, -0.012867160141468048, 0.02500840649008751, 0.03763359412550926, 0.017891615629196167, 0.057902220636606216, 0.03891461715102196, -0.035043083131313324, 0.01565694250166416, 0.005892703775316477, -0.012433035299181938, 0.023442711681127548, 0.01850365847349167, -0.014005846343934536, 0.010127195157110691, 0.03510001674294472, 0.039170823991298676, 0.02831059880554676, -0.017094533890485764, -0.020382491871714592, 0.02197665348649025, 0.009173545055091381, 0.006896171253174543, 0.0008268822566606104, 0.0439533069729805, 0.016183584928512573, 0.03640950843691826, 0.005860677920281887, -0.012482852675020695, -0.014902561902999878, -0.00934434775263071, -0.02189125120639801, 0.03219636529684067, -0.027114976197481155, -0.021393075585365295, 0.003474773606285453, 0.013714058324694633, -0.013230116106569767, 0.02470950223505497, 0.005284218117594719, -0.06211536005139351, -0.020837966352701187, 0.03931315988302231, -0.03823140636086464, 0.02423979341983795, -0.01300237886607647, -0.043327029794454575, 0.022731034085154533, -0.026303661987185478, 0.0348438136279583, -0.04079345241189003, -0.022916069254279137, -0.028894174844026566, -0.0012285362463444471, -0.00193220900837332, 0.0009047221974469721, 0.04013870656490326, -0.020211689174175262, -0.041021186858415604, -0.011152013204991817, 0.029577387496829033, -0.012319167144596577, -0.03555549308657646, -0.08141610026359558, -0.00784270465373993, -0.010732121765613556, 0.028210962191224098, -0.034132134169340134, 0.0023129573091864586, 0.004750458523631096, -0.005558214616030455, -0.01332975085824728, 0.0006071513053029776, -0.013272817246615887, 0.040423378348350525, 0.06701171398162842, 0.008568617515265942, -0.008106025867164135, -0.0013931120047345757, 0.012924093753099442, 0.017621176317334175, -0.0030086238402873278, -0.010077377781271935, 0.021336141973733902, 0.022289792075753212, -0.023770084604620934, 0.04941900447010994, 0.019628111273050308, -3.5083561670035124e-05, -0.012077195569872856, 0.004003195557743311, -0.0018361322581768036, 0.0054550208151340485, -0.01733650453388691, 0.0493336021900177, 0.02214745618402958, -0.036267172545194626, 0.018475191667675972, 0.010177012532949448, 0.011265881359577179, 0.03458760678768158, 0.01994125172495842, 0.007792887277901173, 0.029833592474460602, -0.02409745752811432, 0.03100074641406536, -0.029634321108460426, 0.0012409905903041363, 0.03216790035367012, 0.026773370802402496, 0.01746460795402527, -0.033363521099090576, 0.018603293225169182, 0.005967429839074612, -0.003070895792916417, -0.0045689805410802364, -0.02293030358850956, 0.031057680025696754, 0.0033769176807254553, -0.021250739693641663, 0.013116247020661831, 0.012319167144596577, 0.02614709362387657, 0.054685428738594055, -0.008476098999381065, -0.03100074641406536, -0.018218986690044403, -0.05622265487909317, -0.004636589903384447, -0.004330568015575409, -0.0020140521228313446, 0.018105119466781616, 0.017791979014873505, 0.013301284052431583, 0.02553504891693592, -0.00017725260113365948, -0.00010185908467974514, -0.01200602762401104, 0.03882921487092972, 0.013585955835878849, -0.022489061579108238, -0.006351736839860678, -0.0026670177467167377, 0.024809136986732483, -0.018802564591169357, 0.037946734577417374, -0.004223816096782684, -0.010746356099843979, 0.04036644473671913, 0.023784318938851357, -0.03680804744362831, -0.002401917241513729, -0.0035548375453799963, 0.002820028690621257, 0.013948911800980568, -0.003835950745269656, -0.012212415225803852, -0.014703292399644852, -0.024894537404179573, 0.01661059260368347, 0.004280750174075365, -0.06575915962457657, 0.024154391139745712, 0.04213140904903412, -0.05132630467414856, 0.01985584944486618, -0.009294530376791954, -0.04936206713318825, -0.007792887277901173, -0.03430293872952461, -0.018930666148662567, -0.03547009080648422, 0.02267409861087799, -0.036779578775167465, -0.041334327310323715, -0.034359872341156006, -0.039170823991298676, 0.01854635961353779, -0.029890526086091995, -0.023684684187173843, -0.024809136986732483, 0.0369219146668911, 0.0039035603404045105, 0.009778471663594246, 0.0013975600013509393, 0.004686407279223204, 0.030289066955447197, -0.042330678552389145, 0.0066435253247618675, 0.0008789238054305315, 0.004903469700366259, 0.014169532805681229, -0.01488832850009203, 0.033619724214076996, -0.023072639480233192, -0.012354751117527485, 0.016354387626051903, 0.006721809972077608, -0.0009456436964683235, 0.012881393544375896, -0.010205479338765144, -0.0044088526628911495, -0.009301646612584591, -0.020510593429207802, -0.028723372146487236, 0.0032861786894500256, -0.020610230043530464, 0.0008927125600166619, -0.0006863255985081196, -0.008960041217505932, -0.007330295629799366, 0.01295967772603035, -0.003910677041858435, -0.01750730723142624, -0.03142775222659111, 0.019485775381326675, 0.006397996097803116, -0.01851789280772209, 0.015543073415756226, 0.02327190898358822, -0.007700368762016296, 0.0011004339903593063, 0.01837555691599846, 0.015984315425157547, 0.026018992066383362, 0.024353662505745888, -0.0039000019896775484, -0.01393467839807272, -0.017962783575057983, -0.01034069899469614, 0.025591984391212463, -0.042159873992204666, -0.004159764852374792, -0.01411259826272726, -0.015101832337677479, -0.013030845671892166, -0.017222637310624123, 0.01545767206698656, -0.022090522572398186, 0.0028075743466615677, -0.01634015329182148, 0.0015772590413689613, -0.005924729164689779, 0.022047821432352066, -0.03993943706154823, 0.003138505155220628, -0.006743160542100668, 0.025933589786291122, -0.004992429632693529, 0.014511139132082462, 0.010290880687534809, -0.0031438427977263927, 0.0335627906024456, 0.040508780628442764, 0.011280114762485027, -0.023385778069496155, 0.04819491505622864, -0.0319116935133934, -0.00735876290127635, 0.01759270951151848, 0.03490074723958969, 0.010675188153982162, 0.008326646871864796, -0.00253001949749887, 0.03820293769240379, -0.008084675297141075, -0.0017800875939428806, -0.014212233014404774, -0.0037505493964999914, 0.0029641438741236925, 0.0493336021900177, 0.01372117456048727, 0.014247816987335682, -0.020567528903484344, -0.0133724519982934, -0.02708650939166546, -0.0018058859277516603, 0.017009133473038673, 0.007180843036621809, -0.013144714757800102, 0.0025994081515818834, -0.03151315450668335, 0.00735876290127635, -0.03424600139260292, -0.04808104783296585, -0.05309126898646355, 0.013692707754671574, 0.011586137115955353, -0.031143080443143845, -0.023428479209542274, 0.008903106674551964, -0.04850805178284645, 0.011607487685978413, 0.007949456572532654, -0.00438750209286809, 0.0027453023940324783, 0.004554746672511101, 0.017322272062301636, -0.04637301713228226, -0.01629745401442051, -0.022133223712444305, 0.01881679706275463, 0.01281022559851408, 0.02284490130841732, -0.006440696772187948, 0.01281022559851408, 0.023698916658759117, 0.011949094012379646, 0.004743341822177172, 0.017720811069011688, 0.0016199597157537937, -0.004177556838840246, 0.010333581827580929, 0.006832120008766651, -3.174756420776248e-05, -0.016411321237683296, -0.0002875628706533462, 0.021691981703042984, -0.020496360957622528, -0.024325193837285042, -0.03157008811831474, 0.00994927529245615, 0.008547266945242882, 0.0037754580844193697, 0.00111911550629884, 0.003935585729777813, -0.02223285846412182, -0.005668524652719498, -0.017407672479748726, 0.012689240276813507, -0.023955121636390686, 0.01977044716477394, -0.0021510503720492125, 0.011799640953540802, -0.02263139747083187, 0.002223997376859188, -0.01811935193836689, -0.019784681499004364, -0.023812785744667053, 0.012411684729158878, -0.023556580767035484, 0.0018734955228865147, 0.011301465332508087, -0.01854635961353779, 0.02310110628604889, -0.01972774788737297, 0.01525840163230896, -0.020055118948221207, -0.003910677041858435, -0.027186144143342972, 0.039996370673179626, -0.02708650939166546, 0.02613285928964615, 0.013080663047730923, 0.024695267900824547, -0.021620813757181168, 0.0032363610807806253, 0.050870828330516815, -0.01530110277235508, -0.005095622967928648, -0.015614241361618042, -0.02952045202255249, 0.0005408761790022254, -0.03026059828698635, -0.020496360957622528, 0.00037074036663398147, -0.03293651342391968, 0.03034600056707859, -0.03447373956441879, 8.634669939056039e-05, 0.01144380122423172, -0.017806213349103928, 0.008056208491325378, 0.007127467077225447, -0.03803213685750961, 0.0018290155567228794, 0.020354025065898895, 0.012504203245043755, -0.0029570269398391247, -0.06319711357355118, 0.020667163655161858, -0.014745992608368397, -0.014105481095612049, 0.009372814558446407, 0.02960585430264473, -0.024609865620732307, 0.011173362843692303, -0.008326646871864796, 0.010440333746373653, -0.024040523916482925, 0.02341424487531185, -0.0036010968033224344, -0.0037612244486808777, -1.633248211874161e-05, -0.024211326614022255, 0.020823733881115913, -0.024396361783146858, -0.01881679706275463, -0.02878030575811863, -0.015059131197631359, 0.005882028490304947, -0.006401554215699434, -0.005245075561106205, -0.004099272191524506, 0.0176069438457489, -0.017194168642163277, 0.00638376222923398, -0.0010870900005102158, 0.02917884662747383, 0.026332130655646324, 0.0024979938752949238, 0.039256222546100616, 0.005408762022852898, -0.011109312064945698, 0.057247474789619446, -0.004825185053050518, 0.01027664728462696, -0.03749125823378563, -0.01467482466250658, 0.04036644473671913, -0.003796808421611786, -0.0008904885617084801, -0.004433761350810528, 0.009799822233617306, 0.02110840566456318, -0.0024944355245679617, -0.016567891463637352, 0.015756577253341675, 0.02969125658273697, 0.009081026539206505, 0.017108768224716187, -0.02523614466190338, 0.014646357856690884, -0.025990523397922516, 0.014632124453783035, 0.015628475695848465, 0.015343802981078625, 0.02002665214240551, 0.018802564591169357, 0.023613516241312027, 0.02618979476392269, 0.0032221274450421333, -0.006301918998360634, -0.024809136986732483, 0.02670220285654068, 0.007614967413246632, 0.0176069438457489, 0.008347996510565281, 0.020496360957622528, -0.01959964446723461, -0.014027196913957596, 0.034530673176050186, -0.009223362430930138, 0.02189125120639801, -0.0025994081515818834, 0.012525553815066814, 0.0172084029763937, 0.003675823099911213, 0.007565149571746588, 0.0230157058686018, -0.027712788432836533, 0.05613725259900093, -0.01430475153028965, -0.006693342700600624, 0.00735876290127635, -0.009522267617285252, 0.004017428960651159, -0.0071488176472485065, 0.0056044734083116055, -0.004369710106402636, -0.012077195569872856, -0.0010790835367515683, -0.01712300069630146, 0.006985131185501814, -0.017308037728071213, 0.004853651858866215, -0.00804197508841753, -0.008070441894233227, 0.0032577114179730415, -0.021706216037273407, -0.0029516895301640034, -0.007006481755524874, 0.06610076129436493, -0.012760408222675323, 0.021734682843089104, -0.0015390062471851707, 0.010048910044133663, 0.02778395637869835, 0.022987237200140953, -0.014475555159151554, 0.002126141684129834, -0.004359034821391106, 0.0209376011043787, 0.002369891619309783, -0.013322634622454643, 0.0031207131687551737, 0.008241244591772556, -0.010604020208120346, 0.005590240005403757, 0.03658030927181244, -0.04045184329152107, 0.01046880055218935, -0.01782044768333435, 0.018916433677077293, -0.007351646199822426, 0.01508759893476963, -0.004714874550700188, 0.024823369458317757, 0.019998185336589813, -0.0032950746826827526, -0.015414970926940441, 0.025022640824317932, -0.0004125515406485647, -0.006380204111337662, 0.010440333746373653, -0.022346725687384605, 0.008440515026450157, -0.003658031113445759, -0.0021457127295434475, -0.036950383335351944, -0.024524465203285217, -0.028879942372441292, 0.018361322581768036, -0.016695993021130562, -0.0018948458600789309, -0.000726802391000092, -9.407509060110897e-05, -0.013308401219546795, -0.005348268896341324, -0.02119380608201027, 0.0012997040757909417, -0.010091611184179783, 0.028196729719638824, -0.011607487685978413, -0.0037541077472269535, -0.0006680888473056257, -0.022816434502601624, 0.0024944355245679617, -0.028709137812256813, -0.05417301878333092, -0.03598250076174736, -0.004277192056179047, -0.02695840783417225, 0.007501098792999983, 0.018389789387583733, -0.022247090935707092, -0.030659139156341553, 0.0022987236734479666, -0.0004617018857970834, 0.027755487710237503, 0.019798915833234787, -0.002234672661870718, 0.021748915314674377, 0.012319167144596577, 0.028410233557224274, -0.014254934154450893, 0.016710227355360985, 0.006301918998360634, 0.0451773963868618, -0.005109856370836496, 0.0097357714548707, -0.024638334289193153, -0.01608395017683506, -0.017151469364762306, 0.01759270951151848, 0.005871353205293417, -0.015215701423585415, 0.005896261893212795, -0.008419164456427097, 0.024894537404179573, -0.014077014289796352, -0.0001559022202854976, -0.0024890978820621967, -0.004611681215465069, -0.017521541565656662, 0.005348268896341324, -0.003346671350300312, 0.02583395503461361, -0.013671357184648514, 0.020297089591622353, -0.005376736167818308, 0.018261687830090523, -0.02509380877017975, -0.006205842364579439, -0.006618616636842489, 0.043896373361349106, 0.008725186809897423, -0.0120273781940341, -0.0259193554520607, 0.039170823991298676, -0.01846095733344555, 0.019215337932109833, 0.00573257589712739, -0.03914235532283783, 0.003839509328827262, 0.036779578775167465, 0.017009133473038673, -0.01959964446723461, 0.0259193554520607, -0.008511682972311974, 0.019314972683787346, 0.009621902368962765, 0.0026723553892225027, 0.0018414699006825686, -0.008646901696920395, 0.019087236374616623, 0.02778395637869835, 0.03558395802974701, 0.01773504540324211, 0.050614625215530396, 0.015984315425157547, 0.039170823991298676, 0.03865841403603554, -0.01799125038087368, -0.026332130655646324, -0.011785407550632954, -0.02042519301176071, -0.03623870387673378, -0.01568540930747986, -0.0182474534958601, -0.03991096839308739, 0.043327029794454575, -0.002876963233575225, 0.022816434502601624, -0.0372919887304306, 0.0402241088449955, -0.03285111114382744, -0.016268985345959663, 2.4867071260814555e-05, 0.021834317594766617, 0.0031207131687551737, 0.008148727007210255, 0.02396935597062111, 0.003949819598346949, -0.013493437319993973, 0.0020460777450352907, -0.022446362301707268, -0.013678474351763725, 0.009977742098271847, 0.017222637310624123, -0.026260962709784508, 0.022133223712444305, 0.05118396878242493, 0.01994125172495842, -0.009856756776571274, -0.024211326614022255, -0.0029570269398391247, -0.027940524742007256, 0.02132190763950348, 0.013657123781740665, -0.020880667492747307, -0.0339897982776165, 0.035299286246299744, -0.017179936170578003, -0.0007801782921887934, 0.022432127967476845, 0.036523375660181046, 0.005835769232362509, -0.005102739669382572, -0.008049091324210167, 0.013927562162280083, 0.02409745752811432, 0.006163141690194607, 0.003921352326869965, 0.01642555557191372, 0.019357673823833466, 0.01868869550526142, -0.009693070314824581, 0.0010959859937429428, -0.00629480229690671, -0.00821277778595686, -0.01655365712940693, 0.03763359412550926, 0.0028040159959346056, 0.044237978756427765, -0.010796173475682735, -0.009223362430930138, -0.033448923379182816, 0.015884678810834885, -0.005508396774530411, -0.03746279329061508, -0.0013779888395220041, -0.007764420006424189, -0.0042309327982366085, -0.0006164921214804053, 0.012724824249744415, 0.020311323925852776, 0.02314380742609501, 0.042672283947467804, 0.018788330256938934, -0.020923368632793427, -0.003161634784191847, -0.006597266066819429, -0.010440333746373653, 0.013109130784869194, 0.005529747344553471, 0.0077074854634702206, 0.014987964183092117, 0.018090885132551193, 0.02483760379254818, 0.01850365847349167, -0.030659139156341553, -0.005405203439295292, -0.005668524652719498, -0.01591314747929573, 0.0034356312826275826, 0.022659866139292717, -0.0012783537385985255, 0.002236451953649521, -0.012411684729158878, 0.018389789387583733, 0.00860420148819685, 0.021862784400582314, -0.0023271909449249506, -0.01200602762401104, -0.0069032879546284676, -0.009508034214377403, -0.030203664675354958, 0.006522539537400007, 0.010981209576129913, -0.005903379060328007, -0.018133586272597313, 0.010362048633396626, -0.027186144143342972, -0.0024890978820621967, 0.0013032625429332256, -6.216073234099895e-05, 0.0023182949516922235, 0.025720085948705673, 0.002892975928261876, 0.0029214429669082165, 0.011358399875462055, -0.01612665131688118, -0.011764056980609894, -0.0030726748518645763, -0.0007223543943837285, -0.010831757448613644, 0.005038688890635967, 0.004334126133471727, 0.01200602762401104, -0.0286095030605793, -0.049219731241464615, -0.012966794893145561, 0.0576460137963295, -0.05738981068134308, 0.026716437190771103, 0.014589423313736916, 0.00951515045017004, 0.02045365981757641, 0.01014142856001854, 0.006917521823197603, -0.0159558467566967, -0.00897427462041378, 0.028723372146487236, 0.018005482852458954, 0.020966069772839546, -0.009230478666722775, 0.006938871927559376, -0.015841979533433914, 0.028538335114717484, 0.004526279866695404, 0.03060220554471016, -0.003638459835201502, 0.0008335542515851557, 0.0005777945625595748, -0.005785951856523752, -0.014788693748414516, -0.005405203439295292, 0.017151469364762306, -0.0020104937721043825, 0.0009403061121702194, -0.004177556838840246, 0.0003700731904245913, 0.0406511165201664, 0.002362774917855859, -0.0230157058686018, -0.00992792472243309, -0.0319116935133934, -0.02214745618402958, -0.02994745969772339, -0.024040523916482925, 0.027755487710237503, -0.015272635035216808, -0.02063869684934616, 0.003907118923962116, 0.012319167144596577, 0.027670087292790413, -0.020168988034129143, -0.020183222368359566, 0.008945807814598083, 0.012447268702089787, 0.014084131456911564, -0.004771809093654156, 0.007372996304184198, 0.01207007933408022, 0.005892703775316477, -0.024254025891423225, 0.002366333268582821, 5.015114220441319e-05, 0.002553149126470089, 0.01125164795666933, -0.0010684083681553602, 0.013479203917086124, -0.009621902368962765, 0.023129573091864586, -0.033790528774261475, -0.0009821172570809722, -0.020254390314221382, -0.0056614079512655735, -0.008739420212805271, 0.0004563642723951489, -0.01568540930747986, 0.0016617708606645465, -0.013770991936326027, -0.013770991936326027, -0.018603293225169182, -0.008319529704749584, -0.03174089267849922, -0.018233221024274826, 0.02328614331781864, -0.04045184329152107, -0.028025927022099495, -0.013037962839007378, -0.00821277778595686, -0.016525190323591232, -0.022645631805062294, 0.029748190194368362, -0.020795265212655067, 0.0011778291082009673, -0.0029801565688103437, -0.023158039897680283, -0.024866070598363876, 0.009878107346594334, 0.018873732537031174, -0.017962783575057983, -0.017663877457380295, -0.020168988034129143, 0.004063688218593597, -0.04600294306874275, 0.00877500418573618, -0.008589968085289001, -0.023357311263680458, 0.046800024807453156, 0.038259875029325485, 0.036181770265102386, -0.007145259063690901, -0.025065341964364052, -0.014632124453783035, 0.0031349468044936657, -0.024994174018502235, -0.03709271922707558, -0.011579019948840141, -0.02115110494196415, 0.014553839340806007, 0.03612483665347099, 0.012347633950412273, -0.029975928366184235, 0.009436866268515587, 0.034132134169340134, -0.007372996304184198, -0.040992721915245056, -0.007262686267495155, -0.022218624129891396, -0.01708030141890049, 0.011109312064945698, -0.00765055138617754, -0.02210475504398346, 0.011771174147725105, 0.018432490527629852, -0.016539424657821655, -0.031883228570222855, -0.013244349509477615, -0.0254923477768898, -0.0004581434768624604, -0.02613285928964615, -0.004166881553828716, -0.05961024761199951, -0.009508034214377403, -0.006739601958543062, 0.006376645527780056, 0.0006698680226691067, -0.00048082825378514826, 0.014916796237230301, 0.012326283380389214, -0.017137235030531883, 0.008654018864035606, 0.019443076103925705, -0.021734682843089104, 0.026218261569738388, 0.02102300338447094, -0.008198544383049011, 0.013521905057132244, -0.0033075290266424417, -0.007244894281029701, 0.006960222497582436, 0.0004419082833919674, -0.0010007988894358277, 0.02024015597999096, 0.027328480035066605, -0.0043234508484601974, -0.0176069438457489, 0.03612483665347099, -0.0186459943652153, -0.009493800811469555, -0.013052196241915226, -0.03165549039840698, -0.006604382768273354, 0.004366151988506317, -0.011963327415287495, -0.012852925807237625, -0.0027648736722767353, 0.010810406878590584, 0.00611332431435585, -0.02288760244846344, 0.021350376307964325, 0.023855486884713173, 0.01434745267033577, 0.018802564591169357, -0.009550734423100948, -0.006949547212570906, -0.015614241361618042, -0.02227555774152279, -0.010539968498051167, -0.027428116649389267, 0.014190883375704288, 0.016966432332992554, 0.013237233273684978, 0.007316062226891518, -0.003489007242023945, -0.023400012403726578, -0.015030664391815662, 0.013123364187777042, 0.018532125279307365, -0.025819720700383186, 0.016966432332992554, -0.007693252060562372, 0.06109054014086723, 0.013336868025362492, 0.0064264629036188126, 0.0027417440433055162, -0.020055118948221207, 0.01651095785200596, 0.03134234994649887, 0.024168625473976135, 0.04244454577565193, -0.021492712199687958, 0.009942158125340939, 0.01148650236427784, -0.011258765123784542, 0.011123545467853546, 0.02106570452451706, 0.03922775760293007, 0.003615330206230283, 0.018717162311077118, 0.0038822100032120943, -0.0004483578959479928, -0.03347738832235336, -0.005077830981463194, -0.009600551798939705, -0.010632487013936043, 0.0037718997336924076, -0.02453869767487049, 0.009657486341893673, -0.010781940072774887, 0.0026954850181937218, 0.007735952734947205, 0.0335627906024456, 0.010575552470982075, 0.016226286068558693, 0.015187233686447144, -0.02085220068693161, 0.0638803243637085, -0.01430475153028965, 0.018759863451123238, -0.012340516783297062, -0.010518618859350681, 0.01616935059428215, -0.013842159882187843, 0.018631761893630028, -0.01663905940949917, -0.013891978189349174, -0.005113414954394102, 0.006796536035835743, -0.013863510452210903, -0.022688332945108414, -0.03256643936038017, -0.005348268896341324, -0.01716570183634758, -0.012561137787997723, -0.0007281367434188724, -0.028068626299500465, 0.0022684773430228233, -0.01066095381975174, -0.0033947096671909094, -0.01894490048289299, -0.0009847860783338547, -0.002030064817517996, 0.045319732278585434, 0.009194894693791866, -0.036694180220365524, 0.0018645995296537876, 0.005398086737841368, -0.007365879602730274, -0.017848914489150047, 0.0023022822570055723, 0.026986874639987946, 0.0009056117851287127, -0.0023645542096346617, -0.0033217626623809338, -0.005889145191758871, -0.0012258674250915647, 0.011415334418416023, 0.036694180220365524, -0.012020261958241463, 0.02769855409860611, -0.026801837608218193, 0.019784681499004364, 0.003956936299800873, -0.019841615110635757, 0.003953377716243267, -0.01604124903678894, 0.005636499263346195, 3.9448153984267265e-05, 0.004729108419269323, 0.0015754797495901585, -0.004138414282351732, -0.006220076233148575, -0.005857119802385569, 0.025250377133488655, 0.016667526215314865, -0.02934964932501316, -0.015984315425157547, -0.03330658748745918, 0.005565331317484379, 0.004188232123851776, -0.009821172803640366, -0.01833285577595234, 0.018759863451123238, 0.02028285712003708, -0.004181115422397852, 0.020168988034129143, 0.008227011188864708, -0.021492712199687958, -0.0029410142451524734, 0.003697173437103629, 0.00012687905109487474, 0.004654381889849901, -0.010632487013936043, -0.012340516783297062, -0.026673736050724983, -0.0021243623923510313, -0.011906392872333527, -0.0005217497819103301, -0.00821277778595686, 0.009472450241446495, 0.0008638006402179599, -0.002252464648336172, 0.01777774654328823, -0.008184310980141163, 0.01411259826272726, 0.01737920567393303, 0.0024446179158985615, -0.01246150303632021, 0.005337594076991081, -0.0024695268366485834, -0.000642290455289185, 0.017678111791610718, 0.035441622138023376, -0.002688368083909154, -0.0027915616519749165, -0.005647174548357725, 0.004910586401820183, 0.03871534764766693, 0.02500840649008751, -0.03125695139169693, -0.01708030141890049, -0.01224799919873476, -0.022944537922739983, -0.00021828534954693168, 0.015372270718216896, -0.0032932953909039497, -0.001135128317400813, -0.03458760678768158, 0.0070918831042945385, 0.010262413881719112, -0.03100074641406536, 0.017450373619794846, 0.0023503205738961697, 0.02045365981757641, -0.0056898752227425575, 0.008668252266943455, -0.011828107759356499, 0.009764238260686398, 0.0015487918863072991, 0.01625475287437439, -0.02206205576658249, 0.041163522750139236, -0.006526098120957613, -0.001344184041954577, -0.02401205524802208, 0.021307675167918205, 0.019841615110635757, 0.0254923477768898, -0.03185475990176201, -0.03068760596215725, 0.017407672479748726, 0.010369165800511837, 0.012675005942583084, -0.018589060753583908, -0.024766435846686363, -0.010959859937429428, -0.0032541530672460794, 0.03714965283870697, -0.015970081090927124, 0.028168262913823128, -0.00035272599780000746, -0.019101468846201897, -0.026246728375554085, -0.01856059394776821, 0.01049015112221241, 0.03658030927181244, 0.036694180220365524, -0.03475841134786606, -0.006202284246683121, 0.0066435253247618675, 0.017877381294965744, 0.017706578597426414, 0.006020805798470974, -0.011906392872333527, 0.006725368555635214, 0.0019909224938601255, 0.002747081685811281, 0.007963689975440502, 0.007173726335167885, 0.009429749101400375, -0.014482671394944191, -0.022987237200140953, 0.008006391115486622, 0.007330295629799366, -0.04776790738105774, 0.030032861977815628, 0.0002517565153539181, -0.00382527569308877, -0.010418983176350594, 0.02670220285654068, -0.025108041241765022, -0.00914507731795311, 0.0031064797658473253, -0.016197819262742996, 0.012639421969652176, 0.024111691862344742, 0.012653656303882599, -0.007920989766716957, -0.027413882315158844, 0.032054029405117035, -0.004433761350810528, 0.0047362251207232475, -0.00029779327451251447, -0.03828833997249603, 0.016809862107038498, 0.012034495361149311, 0.016539424657821655, -0.0019855848513543606, -0.002225776668637991, 0.02423979341983795, 0.006447813473641872, 0.005568889435380697, 0.019314972683787346, 0.011023910716176033, -0.011059494689106941, 0.03433140367269516, -0.019699279218912125, 0.006810769904404879, 0.007771536707878113, 0.01568540930747986, 0.0044373199343681335, 0.016055483371019363, -0.011372633278369904, -0.04130585864186287, -0.02201935462653637, 0.007913872599601746, -0.00023907973081804812, -0.0032648283522576094, 0.0027844447176903486, 0.004277192056179047, -0.008162960410118103, -0.005519072059541941, -0.010404749773442745, 0.006750277243554592, -0.021122638136148453, 0.0036171094980090857, 0.009180661290884018, 0.022944537922739983, -0.008589968085289001, -0.01123029738664627, -0.05089929699897766, 0.010155661962926388, -0.00011309027468087152, 0.02159234695136547, 0.011002560146152973, -0.046230681240558624, -0.02367044985294342, 0.006184492260217667, -0.005369619466364384, 0.008241244591772556, 0.0017195948166772723, -0.009472450241446495, 0.06234309822320938, 0.02409745752811432, 0.015585774555802345, -0.006604382768273354, -0.006291244179010391, 0.011023910716176033, -0.006771627347916365, -0.011009677313268185, -0.007985040545463562, 0.0176069438457489, 0.026033224537968636, -0.0008549046469852328, -0.005882028490304947, 0.00772883603349328, 0.001414462341926992, -0.005967429839074612, 0.023072639480233192, 0.030459869652986526, -0.014233583584427834, -0.014027196913957596, 0.014390152879059315, 0.006063506472855806, -0.0050635975785553455, 0.0009492021054029465, 0.032964978367090225, 0.010604020208120346, 0.01612665131688118, -0.03438833728432655, -0.029321182519197464, -0.01629745401442051, -0.003174089128151536, -0.001914417021907866, 0.02570585161447525, -0.008006391115486622, 0.021990887820720673, 0.022118989378213882, -0.01066095381975174, 0.007486864924430847, -0.02960585430264473, -0.00016546540427953005, 0.003355567343533039, -0.012347633950412273, 0.0127461738884449, -0.0176069438457489, -0.00300150690600276, 0.009116610512137413, -0.0001813669950934127, 0.00988522358238697, -0.01051150169223547, -0.01851789280772209, -0.0028146912809461355, -0.0028360416181385517, -0.012454385869204998, -0.022574463859200478, -0.013735407963395119, -0.019542710855603218, 0.004010312259197235, 0.0028182496316730976, -0.0016066157259047031, -0.013052196241915226, -0.013984495773911476, 0.006543890107423067, 0.011329933069646358, 0.006323269568383694, -0.00448713731020689, -0.03655184432864189, 0.017834680154919624, -0.03490074723958969, -0.001590603031218052, -0.012760408222675323, 0.011579019948840141, -0.0026367714162915945, 0.034786880016326904, -0.022560229524970055, 0.03239563852548599, 0.008518800139427185, 0.018048183992505074, 0.00335378828458488, -0.04338396340608597, -0.03481534495949745, 0.010539968498051167, 0.00782847125083208, -0.009977742098271847, -0.03467300906777382, -0.010048910044133663, -0.005761043168604374, 0.031456220895051956, -0.01165730506181717, 0.026559866964817047, -0.015756577253341675, -0.014575189910829067, -0.016539424657821655, -0.017407672479748726, -0.027798188850283623, 0.013856394216418266, -0.011237414553761482, -0.009038325399160385, -0.00640511279925704, 0.0018396907253190875, -0.004294984042644501, 0.020581761375069618, -0.01959964446723461, 0.013856394216418266, 0.042330678552389145, -0.038857683539390564, 0.009685954079031944, -0.018190519884228706, 0.002207984682172537, -0.007038507144898176, -0.028339065611362457, -0.005967429839074612, -0.0036900565028190613, -0.011550553143024445, -0.00609197374433279, -0.0017676331335678697, 0.01755000837147236, -0.03176935762166977, 0.01086022425442934, 0.018347090110182762, 0.028111327439546585, -0.024111691862344742, 0.027855124324560165, 0.0029214429669082165, 0.010853108018636703, 0.0056614079512655735, -0.021663514897227287, -0.0027203937061131, -0.014340335503220558, 0.03974016755819321, 0.001441150321625173, 0.013514787890017033, -0.02700110897421837, 0.011365517042577267, -0.00990657415241003, 0.012632305733859539, 0.019870083779096603, -0.022346725687384605, -0.01031934842467308, -0.024695267900824547, -0.006639966741204262, 0.012532670982182026, -0.0012525554047897458, -0.024937238544225693, 0.0028591712471097708, -0.03712118789553642, -0.012368984520435333, -0.005302010104060173, 0.006547448690980673, -0.01977044716477394, 0.018930666148662567, -0.02653140015900135, -0.02223285846412182, 0.009792705997824669, 0.027143444865942, -0.01413394883275032, -0.004455111920833588, -0.022645631805062294, 0.007522448897361755, 0.041675932705402374, -0.010312231257557869, 0.025478115305304527, -0.033363521099090576, 0.008198544383049011, 0.02327190898358822, -0.004892794415354729, -0.0014037871733307838, -0.010354932397603989, 0.01873139664530754, 0.00128458091057837, 0.005874911788851023, -0.013258582912385464, -0.03433140367269516, 0.006269893608987331, 0.0019891434349119663, -0.015770811587572098, -0.0005751257413066924, 0.017521541565656662, -0.00030646685627289116, -0.008760770782828331, -0.01604124903678894, -0.002063869731500745, -0.00210834969766438, 0.010440333746373653, -0.009942158125340939, -0.014311868697404861, 0.005597356706857681, -0.011087961494922638, -0.018176287412643433, 0.005664966534823179, -0.02085220068693161, -0.008504566736519337, 0.0003816379758063704, -0.005013779737055302, 0.01300237886607647, 0.004825185053050518, -0.00602436438202858, -0.009180661290884018, -0.028751838952302933, -0.002232893370091915, 0.009116610512137413, 0.013087780214846134, 0.0076078507117927074, 0.005956755019724369, 0.01964234560728073, -0.002565603470429778, 0.012262232601642609, -0.0007445943774655461, -0.017791979014873505, -0.007252010982483625, -0.00724845239892602, 0.0007067864062264562, -0.010354932397603989, 0.00033293242449872196, 0.0031242717523127794, 0.07327448576688766, 0.019628111273050308, 0.0018823913997039199, -0.011180480010807514, -0.005970988422632217, -0.015984315425157547, 0.0018379115499556065, 0.021663514897227287, 0.031057680025696754, -0.00016424221394117922, -0.01569964364171028, -0.02280220203101635, 0.013963146135210991, 0.018532125279307365, -0.027171911671757698, 0.0022684773430228233, 0.0036224471405148506, 0.02934964932501316, -0.011066611856222153, 0.018603293225169182, 0.004383943974971771, -0.014959496445953846, -0.008703836239874363, 0.03327811881899834, 0.0022791526280343533, 0.01841825805604458, -0.005013779737055302, 0.011799640953540802, 0.0037612244486808777, 0.024951472878456116, 0.004124180879443884, -0.011764056980609894, -0.007800003979355097, 0.005405203439295292, 0.00039253555587492883, 0.009564968757331371, -0.0014562734868377447, 0.01985584944486618, 0.0008731413981877267, 0.007170167751610279, -0.006817886605858803, 0.0027648736722767353, 0.017521541565656662, 0.025108041241765022, -0.007479748222976923, -0.016667526215314865, 0.006711134687066078, -0.0019820265006273985, 0.001764964428730309, -0.012795992195606232, -0.023400012403726578, -0.02379855141043663, 0.0005511065828613937, 0.004942611791193485, 0.015244168229401112, -0.0059496378526091576, 0.022702565416693687, -0.009379931725561619, 0.012667889706790447, -0.003711407072842121, -0.017194168642163277, 0.006198725663125515, -0.01712300069630146, -0.020354025065898895, -0.006718251388520002, -0.013450737111270428, -0.017137235030531883, 0.0024375012144446373, -0.002206205390393734, -0.005020896904170513, -0.008141609840095043, 0.012141247279942036, 0.005095622967928648, -0.027257312089204788, -0.0018432490760460496, 0.014987964183092117, -0.011628838256001472, 0.03811753913760185, 0.015884678810834885, 0.001212523435242474, 0.003366242628544569, 0.0019642345141619444, -0.014247816987335682, -0.012141247279942036, -0.001516766264103353, -0.002056752797216177, 0.009842523373663425, -0.019386140629649162, 0.007486864924430847, -0.028922641649842262, -0.009828289970755577, -0.00015946061466820538, -0.0032559323590248823, 0.009194894693791866, -0.003015740541741252, 0.005736134480684996, -0.016325920820236206, -0.005736134480684996, 0.021862784400582314, -0.006198725663125515, 0.005277101416140795, 0.011265881359577179, -0.011628838256001472, -0.004330568015575409, 0.02288760244846344, 0.00019159738440066576, 0.02969125658273697, 0.003220348386093974, -0.01545767206698656, -0.0001238766562892124, -0.005882028490304947, -0.013941795565187931, -0.006931755226105452, 0.009465333074331284, -0.01911570318043232, 0.006921079941093922, 0.01146515179425478, -0.015941614285111427, -0.015002197585999966, -0.008960041217505932, -0.0018201195634901524, 0.00477892579510808, -0.001358417677693069, 0.001131569966673851, 0.0007837367011234164, 0.00804197508841753, -0.009045442566275597, -0.008120259270071983, -0.012554020620882511, -0.004028104245662689, -0.0036082135047763586, 0.0038039253558963537, 0.009308763779699802, -0.005547539331018925, 0.020168988034129143, 0.0016244077123701572, -0.0016297453548759222, -0.010127195157110691, 0.028154028579592705, -0.013557488098740578, 0.002700822427868843, 0.014226467348635197, 0.016012782230973244, 0.030203664675354958, 0.002761315321549773, 0.021336141973733902, -0.015315336175262928, -0.025862421840429306, -0.007113233674317598, -0.0037291990593075752, 0.02414015866816044, -0.0335627906024456, 0.009180661290884018, -0.014859861694276333, 0.01550037320703268, 0.0005008442094549537, -0.02618979476392269, 0.032623372972011566, -0.01300237886607647, -0.005394528154283762, 0.0005849113222211599, -0.007579383440315723, -0.005775276571512222, -0.010169895365834236, -0.0014651694800704718, -0.002078103134408593, 0.027812423184514046, 0.02154964581131935, 0.007550916168838739, -0.009935041889548302, -0.01508759893476963, -0.0017311596311628819, 0.0030904668383300304, -0.030232131481170654, 0.012489969842135906, 0.0017587371403351426, -0.014603656716644764, -0.00039409234886989, -0.03905695304274559, 0.015756577253341675, 0.009543618187308311, -0.008867522701621056, 0.01850365847349167, 0.01046880055218935, 0.010269531048834324, 0.00023663333558943123, 0.009572084993124008, -0.008006391115486622, -0.00639443751424551, 0.0011520306579768658, -0.003184764413163066, 0.017436139285564423, -0.0035761878825724125, -0.005739692598581314, -0.036352574825286865, -0.006650642026215792, 0.006323269568383694, 0.015528840012848377, -0.0007397015579044819, -0.00957920216023922, 0.00362422619946301, -0.009806939400732517, 0.0026634593959897757, 0.014397270046174526, 0.009607668966054916, -0.02233249321579933, -0.015358037315309048, -0.011244530789554119, -0.013294166885316372, -0.003174089128151536, -0.03000439517199993, -0.030032861977815628, 0.012212415225803852, 0.004394618794322014, -0.006807211320847273, -0.007177284453064203, 0.018147818744182587, 0.004483578726649284, 0.023940887302160263, 0.001917975372634828, 0.011949094012379646, 0.006718251388520002, 0.022787967696785927, -0.007422814145684242, -0.010461684316396713, 0.01070365495979786, 0.010013326071202755, 0.009130843915045261, 0.003821717342361808, -0.006070623639971018, 0.020624462515115738, -0.004220257513225079, -0.015600007958710194, 0.01881679706275463, -0.014987964183092117, 0.02263139747083187, 0.016838328912854195, 0.007098999805748463, 0.022517530247569084, -0.011109312064945698, -0.0005586681654676795, -0.0019909224938601255, -0.017364971339702606, -0.0018557035364210606, 0.010917158797383308, 0.007686135359108448, 0.012013144791126251, -0.005237958859652281, 0.0106823043897748, -2.5409171939827502e-05, -0.003017519833520055, -0.0009634356829337776, -0.0011440243106335402, 0.03393286466598511, 0.0059887804090976715, -0.0067645106464624405, -0.00817007664591074, -0.005266426131129265, -0.0013975600013509393, -0.013557488098740578, 0.001015032408758998, 0.014788693748414516, -0.009152194485068321, -0.005287776235491037, -0.0019820265006273985, 0.018404023721814156, -0.03165549039840698, 0.014048547483980656, -0.01300237886607647, 0.009258946403861046, 0.007323178928345442, -0.003672264516353607, 0.02523614466190338, 0.02167774736881256, 0.0012908080825582147, 0.0044088526628911495, -0.006817886605858803, -0.0061951675452291965, 0.002884079935029149, 0.01111642923206091, 0.008305296301841736, -0.00036429078318178654, 0.020909134298563004, -0.018802564591169357, -0.0031029211822897196, -0.022816434502601624, 0.0024375012144446373, 0.00990657415241003, 0.004611681215465069, 0.0018557035364210606, 0.010966976173222065, -0.0019553385209292173, 0.028296364471316338, -0.008098909631371498, -0.014845628291368484, 0.019969718530774117, -0.009650370106101036, 0.005323360208421946, 0.027200378477573395, 0.004120622295886278, -0.006963781081140041, -0.004305659327656031, 0.0022738149855285883, -0.028068626299500465, 0.0056898752227425575, 0.009500917047262192, 0.004579655360430479, 0.0015443438896909356, -0.009664603509008884, 0.00775018660351634, 0.0007054519956000149, -0.005262867547571659, -0.00955785159021616, -0.013322634622454643, 0.0027417440433055162, -0.02041095867753029, 0.008839055895805359, 0.021649280562996864, -0.023044172674417496, 0.004899911116808653, 0.0018521450692787766, 0.0267449039965868, -0.0014865199336782098, 0.013102013617753983, -0.004391060676425695, 0.0070349485613405704, 0.00011125547462143004, 0.019542710855603218, 0.006312594283372164, -0.034872278571128845, 0.01829015463590622, -0.013059313409030437, -0.01569964364171028, -0.005590240005403757, 0.006679109297692776, 0.02349964715540409, -0.001117336330935359, -0.00893157348036766, -0.019172636792063713, 0.010041793808341026, -0.024809136986732483, 0.004682849161326885, -0.004536954686045647, -0.0008749206317588687, 0.019585411995649338, 0.0127461738884449, 0.001889508217573166, -0.015799278393387794, 0.020923368632793427, 0.010774822905659676, 0.011685771867632866, 0.0024944355245679617, 0.019656579941511154, 0.009394165128469467, -0.002081661717966199, -0.012390335090458393, 0.027342714369297028, 0.002202647039666772, -0.025520816445350647, 0.013144714757800102, -0.014560956507921219, 0.01436880324035883, -0.014660591259598732, -0.006191608961671591, 0.015429205261170864, -0.006351736839860678, -0.014632124453783035, 0.02076679840683937, -0.02678760513663292, -0.0005604473408311605, -0.012169714085757732, -0.028581036254763603, -0.020183222368359566, -0.023086873814463615, -0.022047821432352066, 0.005746809300035238, -0.0012347634183242917, -0.008298179134726524, -0.02328614331781864, -0.007493982091546059, 0.036352574825286865, 0.001446487964130938, -0.007657668087631464, -0.012041611596941948, 0.00992792472243309, 0.017051832750439644, 0.025990523397922516, 0.005853561218827963, 0.013194532133638859, -0.02254599705338478, -0.004298542160540819, -0.00970730371773243, -0.0015425645979121327, -0.01127299852669239, 0.005771718453615904, 0.009607668966054916, -0.03455914184451103, 0.019016068428754807, -0.0014696174766868353, -0.0048287431709468365, 0.017407672479748726, 0.009942158125340939, 0.007579383440315723, 0.021450011059641838, 0.008148727007210255, -0.018147818744182587, 0.008639785461127758, 0.02154964581131935, 0.007031390443444252, -0.00017002460663206875, 0.0066435253247618675, 0.009878107346594334, -0.019485775381326675, 0.013208765536546707, 0.0030993628315627575, -0.011714239604771137, 0.008447632193565369, -0.015799278393387794, 0.010241063311696053, 0.003839509328827262, 0.01937190815806389, -0.0018539242446422577, 0.019571177661418915, -0.0010790835367515683, 0.004960403777658939, -0.010447450913488865, 0.025905122980475426, 0.0061667002737522125, 0.0037256404757499695, 0.001120894681662321, -0.014041430316865444, -0.01985584944486618, -0.011700006201863289, 0.02098030224442482, -0.02327190898358822, -0.01012007798999548, 0.020652929320931435, -0.03532775491476059, 0.005124090239405632, 0.021649280562996864, -0.02154964581131935, -0.005415878724306822, 0.009266062639653683, 0.011031027883291245, 0.01894490048289299, 0.0029178846161812544, 0.003615330206230283, 0.019144169986248016, -0.00035828599357046187, -0.018660228699445724, -0.006618616636842489, 0.02791205793619156, -0.002079882426187396, -0.00799927394837141, -0.016325920820236206, -0.007800003979355097, -0.006180933676660061, 0.025506582111120224, 0.044978123158216476, -0.028025927022099495, 0.013052196241915226, -0.012112779542803764, -0.003675823099911213, 0.008504566736519337, -0.01655365712940693, -0.011080845259130001, 0.00994927529245615, 0.017151469364762306, 0.001590603031218052, -0.007501098792999983, -0.017977016046643257, -0.008219894953072071, 0.00799927394837141, -0.013272817246615887, 0.007963689975440502, 0.00412773946300149, -0.00914507731795311, 0.0037612244486808777, 0.0027755487244576216, -0.016624825075268745, 0.002549590775743127, 0.006714693270623684, 0.00012209746637381613, 0.01029799785465002, 0.03077300824224949, -0.01092427596449852, 0.019016068428754807, 0.015927379950881004, -0.0013077105395495892, 0.020909134298563004, -0.015756577253341675, -0.0019411050016060472, 0.0027453023940324783, -0.00573257589712739, 0.013265700079500675, -0.004956845659762621, -0.011529202573001385, 0.021649280562996864, -0.005668524652719498, 0.00936569832265377, -0.022944537922739983, -0.007550916168838739, 0.020354025065898895, 0.012760408222675323, 0.007394346874207258, -0.007479748222976923, -0.0048180678859353065, 0.02011205442249775, 0.03108614683151245, 0.01690949685871601, 0.004426644649356604, 0.014425736851990223, -0.007365879602730274, 0.009842523373663425, 0.0005097402026876807, 0.022161690518260002, -0.004273633472621441, 0.00038653076626360416, 0.009721538051962852, -0.007671901490539312, -0.0028449376113712788, -0.01587044633924961, -0.00105417484883219, -0.0020158314146101475, -0.0077573033049702644, -0.0016226285370066762, 0.02553504891693592, 0.015414970926940441, 0.03185475990176201, 0.0013148273574188352, -0.023243442177772522, -0.010020443238317966, -0.010717888362705708, 0.010539968498051167, 0.004020987544208765, 0.008703836239874363, 0.005504838656634092, 0.018133586272597313, 0.0390000194311142, -0.009465333074331284, 0.0020869991276413202, 0.002220439026132226, -0.0029908318538218737, 0.0029321182519197464, -0.013244349509477615, -0.035868629813194275, -0.007743069436401129, -9.340789256384596e-05, 0.009308763779699802, -0.012176831252872944, 0.002362774917855859, -0.0011831666342914104, 0.0024641891941428185, 0.010212596505880356, 0.003800366772338748, -0.013514787890017033, -0.002232893370091915, -0.004700641147792339, -0.010184128768742085, 0.0056222653947770596, -0.009031209163367748, -0.03068760596215725, -0.00602436438202858, 0.008404931053519249, -0.010105844587087631, -0.0018859498668462038, 0.020880667492747307, -0.0005230841925367713, -0.005487046670168638, 0.019784681499004364, -0.00914507731795311, -0.010269531048834324, -0.009358581155538559, -0.0027808863669633865, -0.00707764970138669, -0.0031100381165742874, -0.005209491588175297, 0.0014518254902213812, 0.012632305733859539, -0.0053731780499219894, 0.003215010743588209, -0.030829941853880882, -0.015742342919111252, -0.013272817246615887, 0.0031224924605339766, 0.029662787914276123, -0.0040814802050590515, 0.011237414553761482, -0.00012376546510495245, -0.02470950223505497, 0.01937190815806389, -0.03327811881899834, -0.00602436438202858, 0.018916433677077293, 0.015571540221571922, -0.01452537253499031, 0.00032492601894773543, 0.013728291727602482, -0.026559866964817047, -0.01820475421845913, -0.009614786133170128, 0.006864145863801241, -0.0049141449853777885, -0.005853561218827963, -0.0034178392961621284, -0.0007588279549963772, 0.012454385869204998, -0.01915840432047844, -0.005942521151155233, -0.010418983176350594, -0.0031171548180282116, -0.004255841486155987, 0.024125924333930016, 0.005583123303949833, -0.0069032879546284676, -0.01378522627055645, 0.012112779542803764, 0.0002837820793502033, 0.023428479209542274, -0.03008979558944702, -0.017678111791610718, -0.01525840163230896, -0.004561863373965025, 0.0248803049325943, -0.007600733544677496, -0.0001596830115886405, 0.0007405911455862224, 0.014589423313736916, 0.0037220821250230074, -0.00879635475575924, 0.0021777383517473936, -0.0016217390075325966, 0.00916642788797617, -0.006084857042878866, 0.0025922914501279593, -0.0062876855954527855, -0.030488336458802223, -0.0008157622651197016, 0.00023507652804255486, -0.029463518410921097, -0.0016146221896633506, -0.015286869369447231, 0.0025175651535391808, -0.004921261686831713, 0.027627386152744293, 0.01183522492647171, 0.00893157348036766, 0.0021688423585146666, -0.0140912476927042, -4.581434768624604e-05, -0.02127920836210251, 0.01200602762401104, -0.009785588830709457, 0.00765055138617754, -0.007593616843223572, -0.02354234829545021, 0.01163595449179411, -0.030829941853880882, -0.007308945059776306, -0.007316062226891518, -0.021919719874858856, -0.04361170157790184, -0.002597629092633724, 0.00880347192287445, 0.012710589915513992, -0.021777383983135223, 0.00899562519043684, 0.015600007958710194, -0.01034069899469614, -0.027114976197481155, -0.013429386541247368, 0.019229572266340256, -0.01530110277235508, 0.01894490048289299, 0.010212596505880356, -0.02522191032767296, 0.005266426131129265, -0.014098364859819412, -0.0029196639079600573, -0.031484685838222504, -0.005010221619158983, 0.0057183424942195415, -0.0010692980140447617, -0.0024784228298813105, -1.7166479665320367e-05, 0.0022809316869825125, 0.0031011421233415604, -0.013486321084201336, -0.0016617708606645465, -0.0010105844121426344, -0.02341424487531185, -0.008006391115486622, 0.004045896232128143, -0.03265184164047241, 0.028210962191224098, -0.0014856302877888083, -0.014859861694276333, -0.012532670982182026, -0.01434745267033577, -0.0008415606571361423, -0.01488832850009203, -0.01107372809201479, 0.007049182429909706, -0.00027577567379921675, 0.01737920567393303, -0.004131297580897808, 0.016397088766098022, -0.000878034217748791, -0.007230660412460566, 0.0026278754230588675, 0.009828289970755577, 0.010404749773442745, -0.0033039706759154797, -0.006533214822411537, -0.015600007958710194, -0.026075925678014755, 0.023955121636390686, -0.013927562162280083, -0.023570815101265907, 0.015898913145065308, -0.002864508656784892, -0.0060172476805746555, -0.011764056980609894, 0.0026527841109782457, 0.0029285599011927843, -0.020667163655161858, 0.0016929068369790912, 0.012511320412158966, -0.01031934842467308, 0.0009598773322068155, 0.01565694250166416, -0.006156024988740683, -0.015813510864973068, 0.010525735095143318, -0.0004990650340914726, -0.006568798795342445, 0.0030833501368761063, -0.010013326071202755, 0.01504489779472351, 0.0095365010201931, -0.004924819804728031, -0.027926292270421982, -0.008141609840095043, 0.010112960822880268, 0.008639785461127758, -0.01816205307841301, -0.002060311147943139, 0.0033769176807254553, -0.02055329456925392, 0.00487856101244688, -0.007084766402840614, -0.027300013229250908, -0.0007961911032907665, -0.004483578726649284, 0.003665147814899683, 0.014397270046174526, 0.029634321108460426, -0.0064264629036188126, 0.00735876290127635, 0.009678836911916733, 0.025777019560337067, 0.010440333746373653, -0.01985584944486618, 0.010326464660465717, 0.005682758521288633, 0.012098546139895916, -0.00449781259521842, -0.012240882031619549, -0.007127467077225447, 0.010945625603199005, 0.008910223841667175, -0.013877743855118752, -0.008205660618841648, -0.020695630460977554, -0.0286095030605793, -0.022816434502601624, 0.0008322198409587145, -0.004003195557743311, -0.000757493544369936, 0.02036825753748417, 8.640230225864798e-05, 0.0003647355770226568, -0.01959964446723461, -0.003038870170712471, -0.013030845671892166, 0.0023307492956519127, 0.028011692687869072, 0.011728473007678986, 0.015414970926940441, 0.015358037315309048, 0.0203255582600832, 0.003974728286266327, -0.014425736851990223, -0.017934314906597137, 0.022161690518260002, 0.006067065056413412, 0.02072409726679325, -0.0026492257602512836, -0.017108768224716187, -0.009771355427801609, -0.005216608289629221, 0.009422632865607738, -0.004714874550700188, -0.00437682680785656, -0.003469435963779688, 0.011771174147725105, -0.012795992195606232, 0.013984495773911476, 0.032054029405117035, 0.0005417657666839659, -0.0036082135047763586, -0.00677518593147397, -0.014802927151322365, -0.008476098999381065, 0.005479929968714714, -0.01759270951151848, 0.00862555205821991, 0.004241608083248138, -0.002679472090676427, 0.017222637310624123, -0.012361867353320122, 0.0008891542092896998, 0.013215882703661919, -0.011970443651080132, -0.0281824953854084, -0.010041793808341026, -0.00319188111461699, -0.008846172131597996, -0.0066150580532848835, -0.012347633950412273, 0.0009420853457413614, 0.01012007798999548, -0.003537045558914542, 0.007173726335167885, -0.0035726295318454504, -0.0003258156357333064, -0.004273633472621441, -0.0018485867185518146, -0.00048082825378514826, 0.01428340096026659, 0.007444164250046015, -0.020951835438609123, 0.005543980747461319, 0.007636317517608404, -0.007422814145684242, 0.002506889868527651, -0.013827926479279995, 0.006451372057199478, -0.018959132954478264, -0.017094533890485764, 0.015116065740585327, 0.007807120680809021, -0.012368984520435333, 0.015244168229401112, -0.025905122980475426, 0.010589785873889923, 0.0009838964324444532, -0.01070365495979786, 0.0167813953012228, -0.009942158125340939, 0.018887965008616447, 0.02163504809141159, 0.01599854789674282, 0.00856150034815073, -0.007792887277901173, -0.0095365010201931, -0.008205660618841648, 0.012333400547504425, 0.0009438645211048424, -0.012105663307011127, 0.0008170966757461429, 0.0029641438741236925, -0.004821626469492912, 0.021862784400582314, 0.0006454040412791073, 0.014745992608368397, 0.017094533890485764, -0.00418467354029417, 0.002065648790448904, 0.012240882031619549, -0.01550037320703268, 0.02436789497733116, 0.0013664240250363946, -0.0035922008100897074, -0.010084494017064571, -0.011009677313268185, 0.009486683644354343, -0.012134130112826824, 0.014105481095612049, 0.028154028579592705, 0.023570815101265907, 0.004415969364345074, 0.02284490130841732, -0.015229934826493263, 0.0015345582505688071, -0.018446724861860275, 0.020951835438609123, -0.007792887277901173, 0.006462046876549721, -0.0032772826962172985, 0.013045079074800014, 0.013009496033191681, -0.026517165824770927, -0.0026954850181937218, -0.008298179134726524, 0.001675114850513637, -0.01755000837147236, 0.0037612244486808777, -0.017962783575057983, 0.013080663047730923, -0.009614786133170128, -0.005739692598581314, -0.004152648150920868, 0.0060812984593212605, 0.015329569578170776, 0.0027541983872652054, 0.014617890119552612, -0.008141609840095043, -0.022958770394325256, -0.036779578775167465, -0.028623737394809723, 0.0267449039965868, -0.006853470578789711, 0.0053340354934334755, -0.0035868631675839424, 0.006508306134492159, -0.0190730020403862, -0.0026011874433606863, -0.0072804782539606094, -0.00936569832265377, -0.0012249777792021632, 0.004088596906512976, 0.0009821172570809722, 0.01665329374372959, -0.022133223712444305, -0.01699489913880825, -0.005590240005403757, -0.003647355828434229, 0.005383852869272232, 0.00970730371773243, 0.03638103976845741, -0.007394346874207258, -0.0034142809454351664, -0.006230751518160105, -0.0294350516051054, -0.007536682765930891, 0.004262958187609911, -0.010198363102972507, -0.0037185237742960453, 0.013856394216418266, 0.0008526806486770511, 0.0008046422735787928, 0.020738331601023674, 0.0003674043691717088, 0.015970081090927124, 0.007792887277901173, 0.004262958187609911, -0.03931315988302231, -0.023129573091864586, -0.006337502971291542, -0.004213140811771154, -0.023898188024759293, 0.017720811069011688, -0.00955785159021616, 0.006992247886955738, -0.019258039072155952, 0.011906392872333527, -0.005437228828668594, -0.024723734706640244, 0.006689784582704306, 0.008291062898933887, 0.0031634140759706497, -0.004732666537165642, 0.01737920567393303, 0.017151469364762306, 0.011557670310139656, -0.024638334289193153, -0.00029823806835338473, -0.023115340620279312, 0.021336141973733902, -0.011201830580830574, -0.016240518540143967, 0.011949094012379646, 0.0006120441248640418, 0.005255750846117735, 0.003195439465343952, -0.002366333268582821, 0.007276919670403004, 0.021450011059641838, -0.0010595123749226332, -0.012625188566744328, -0.008853289298713207, -0.0019606761634349823, 0.018802564591169357, -0.0024659684859216213, -0.024780670180916786, 0.027015341445803642, 0.010753472335636616, -0.017279570922255516, 0.009173545055091381, 0.011721355840563774, 0.023485412821173668, -0.005892703775316477, -6.254992968024453e-08, 0.004526279866695404, -0.003714965423569083, -0.011977560818195343, -0.009081026539206505, -0.020866433158516884, 0.028723372146487236, 0.008049091324210167, -0.009415515698492527, -0.01877409778535366, -0.0023378662299364805, -0.014560956507921219, 0.02028285712003708, 0.017265336588025093, 0.021051470190286636, 0.010418983176350594, 0.02163504809141159, -0.008262595161795616, 0.02774125523865223, 0.007084766402840614, -0.02197665348649025, 0.0064940727315843105, 0.011514969170093536, -0.0027862240094691515, -0.015229934826493263, -0.006319710984826088, -0.021307675167918205, 0.013244349509477615, -0.006291244179010391, -0.016439789906144142, -0.014632124453783035, -0.012988145463168621, 0.0005275321891531348, -0.02505110763013363, 0.013507670722901821, -0.006579474080353975, 0.01868869550526142, 0.004942611791193485, 0.003138505155220628, 0.008056208491325378, 0.016055483371019363, -0.014062780886888504, -0.006899729836732149, 0.007856938056647778, -0.013472086749970913, 0.01493102964013815, 0.008219894953072071, -0.02085220068693161, -0.020909134298563004, -0.005248634144663811, 0.004597447346895933, 0.01829015463590622, 0.015130299143493176, 0.0007801782921887934, 0.016155118122696877, 0.02436789497733116, 0.026232494041323662, -0.008134492672979832, 0.001923313015140593, 0.001754289143718779, -0.01725110411643982, 0.0043412428349256516, -0.004665057174861431, -0.01545767206698656, -0.002060311147943139, 0.006184492260217667, 0.028339065611362457, -0.018603293225169182, 0.016567891463637352, 0.0047362251207232475, 0.002588733099400997, -0.027300013229250908, -0.007871171459555626, 0.0039320276118814945, 0.006572357378900051, 0.0016946860123425722, 0.00022340055147651583, 0.00733741233125329, -0.013457853347063065, -0.01769234426319599, -0.0013077105395495892, -0.004198907408863306, -0.005629382561892271, 0.012795992195606232, 0.014845628291368484, 0.0011422451352700591, -0.013899094425141811, 0.01651095785200596, -0.010803289711475372, -0.003964053001254797, 0.02712921053171158, 0.00875365361571312, -0.013400918804109097, 0.01278887502849102, 0.017834680154919624, 0.005195258185267448, -0.0071488176472485065, -0.02150694467127323, 0.010447450913488865, -0.004999546334147453, -0.004138414282351732, 0.0037220821250230074, 0.0011048819869756699, 0.009379931725561619, 0.005077830981463194, 0.0013477425090968609, -0.012988145463168621, 0.013493437319993973, -0.004366151988506317, -0.007437047548592091, 6.027033305144869e-05, 0.012895626947283745, 0.0016902381321415305, -0.004238049499690533, 0.002099453704431653, 0.003996078856289387, 0.019229572266340256, -0.0036010968033224344, 0.009607668966054916, 0.01181387435644865, 0.006647083442658186, -0.014077014289796352, 0.01295967772603035, 0.008262595161795616, -0.0225886981934309, 0.00046837388072162867, 0.004248724784702063, 0.006910405121743679, -0.0014811822911724448, 0.011144896037876606, 0.009287413209676743, 0.02193395234644413, 0.01846095733344555, 0.012824459001421928, 0.0031064797658473253, 0.033534321933984756, -0.003675823099911213, 0.006924638524651527, 0.014788693748414516, 0.016710227355360985, -0.0036082135047763586, 0.009621902368962765, -0.0034071640111505985, -0.02328614331781864, -0.010091611184179783, 0.013856394216418266, 0.003967611584812403, -0.003375138621777296, -0.010212596505880356, 0.009073909372091293, -0.015144533477723598, -0.005266426131129265, 0.0008962709689512849, -0.010440333746373653, 0.010134311392903328, -0.029150379821658134, 0.014660591259598732, 0.013600189238786697, -0.015514606609940529, -0.015742342919111252, -0.002099453704431653, 0.0006329496973194182, 0.019058769568800926, -0.011949094012379646, 0.00990657415241003, 0.01629745401442051, 0.000455252273241058, -0.01725110411643982, -0.011415334418416023, -0.007123908493667841, -0.005479929968714714, -0.007856938056647778, 0.01807665079832077, 0.009436866268515587, -0.006301918998360634, 0.01376387570053339, -0.026346363127231598, -0.011579019948840141, -0.025378480553627014, -0.012269348837435246, -0.012966794893145561, 0.010362048633396626, -0.0016208493616431952, -0.01964234560728073, -0.011991794221103191, 0.016368621960282326, 0.0042309327982366085, 0.01851789280772209, -0.009671719744801521, -0.027968991547822952, 0.00856150034815073, 0.00477892579510808, 0.0060812984593212605, -0.014660591259598732, 0.010169895365834236, -0.0026243170723319054, 0.0010159220546483994, -0.030573738738894463, 0.01090292539447546, 0.008639785461127758, -0.014247816987335682, -0.031484685838222504, -0.005259309429675341, 0.020539062097668648, -0.014219350181519985, -0.004657940473407507, 0.01014142856001854, -0.007145259063690901, 0.013877743855118752, -0.03185475990176201, -0.00920912902802229, -0.00667555071413517, 0.008355113677680492, -0.008106025867164135, -0.0031491804402321577, 0.03376206010580063, -0.012269348837435246, -0.0018236779142171144, 0.027186144143342972, -0.003996078856289387, -0.01868869550526142, 0.03609636798501015, -0.003928469028323889, 0.011436684988439083, -0.0007761751185171306, -0.014760226011276245, 0.014617890119552612, 0.0022951653227210045, 0.01504489779472351, -0.022304026409983635, -0.008013507351279259, -0.019998185336589813, 0.011956210248172283, -0.01746460795402527, 0.03165549039840698, -0.0010888691758736968, 0.0013228337047621608, -0.015728110447525978, -0.0011520306579768658, 0.001734717981889844, 0.006857029162347317, -0.017977016046643257, -0.0028022367041558027, -0.011685771867632866, -0.01985584944486618, -0.011016793549060822, -0.026303661987185478, 0.01608395017683506, -0.005522630643099546, -0.001604836550541222, 0.01179252378642559, 0.03766206279397011, -0.013073546811938286, -0.01302372943609953, -0.013884861022233963, 0.007899639196693897, 0.008490332402288914, -0.0221901573240757, -0.002567382762208581, 0.023086873814463615, 0.017806213349103928, 0.01493102964013815, -0.010411866940557957, 0.002038960810750723, -0.017364971339702606, 0.015144533477723598, -0.013457853347063065, -0.024823369458317757, 0.017265336588025093, -0.0071488176472485065, -0.021734682843089104, -0.012739057652652264, -0.01608395017683506, -0.006910405121743679, 0.002405475592240691, 0.0020033768378198147, 0.00836934708058834, 0.013585955835878849, -0.0029445725958794355, -0.009244713000953197, -0.014141065068542957, 0.01591314747929573, 0.00934434775263071, 0.0435262992978096, 0.0013308400521054864, 0.01504489779472351, -0.02890840917825699, 0.0011724914656952024, -0.03131388500332832, -0.011735590174794197, -0.0002957916585728526, -0.01530110277235508, 0.01051150169223547, 0.018959132954478264, -0.002067428082227707, 0.02028285712003708, 0.013920444995164871, -0.009451099671423435, 0.007664784789085388, 0.0015434542438015342, -3.819715493591502e-05, 0.0021154663991183043, 0.007714602630585432, 0.0007032279972918332, 0.013963146135210991, -0.007942339405417442, -0.014069897122681141, 0.011934859678149223, 0.006881937850266695, 0.008981391787528992, 0.0015879342099651694, 0.009415515698492527, 0.004373268689960241, 0.01283157616853714, -0.015927379950881004, -0.03524235263466835, 0.03763359412550926, 0.0056329406797885895, 0.017436139285564423, 0.00970730371773243, 0.013116247020661831, 0.007864055223762989, -0.001696465304121375, -0.004220257513225079, -0.0147175258025527, 0.004298542160540819, 0.00897427462041378, -0.01968504674732685, -0.001015032408758998, 0.01393467839807272, 0.004355476703494787, -0.0034053849522024393, 0.008881756104528904, 0.006828561890870333, -0.006401554215699434, -0.02761315181851387, -0.004810951184481382, -0.0060812984593212605, 0.02110840566456318, 0.010383399203419685, -0.01621205173432827, -0.00970730371773243, -0.006931755226105452, -0.004960403777658939, -0.00218841340392828, 0.010077377781271935, 0.02618979476392269, -0.0024837604723870754, 0.002535357140004635, -0.0029659229330718517, 0.019542710855603218, 0.002857391955330968, 0.0028307039756327868, 0.025079574435949326, -0.008198544383049011, -0.0008113142685033381, -0.034274470061063766, -0.02072409726679325, -0.029719723388552666, -0.032054029405117035, -0.0230157058686018, -0.010575552470982075, 0.002206205390393734, 0.005120531655848026, -0.020311323925852776, 0.004252283368259668, -0.009116610512137413, -0.015101832337677479, -0.005736134480684996, 0.0005795737379230559, -0.0026438881177455187, 0.020994536578655243, -0.0008251030812971294, -0.012646539136767387, 0.0090169757604599, -0.015557306818664074, 0.016795629635453224, 0.010611136443912983, -0.008283945731818676, -0.005504838656634092, -0.005921171046793461, 0.008006391115486622, 0.01621205173432827, 0.01339380256831646, 0.011144896037876606, 0.00305132451467216, -0.008376464247703552, -0.020524827763438225, -0.018019717186689377, -0.016767160966992378, -0.007764420006424189, 0.0007076759939081967, 0.029235780239105225, -0.013109130784869194, -0.004907027818262577, -0.010917158797383308, 0.016681760549545288, 0.014845628291368484, 0.016895264387130737, 0.024254025891423225, 0.01608395017683506, 0.010105844587087631, 0.023086873814463615, -0.008682485669851303, 0.003302191384136677, 0.03467300906777382, -0.00020805496023967862, 0.010668070986866951, 0.008654018864035606, 0.0018948458600789309, 0.005106298252940178, -0.0011093299835920334, -0.005679199937731028, 0.010945625603199005, -0.026887239888310432, -0.0019695721566677094, 0.0027755487244576216, -0.00020927816512994468, 0.0015808173920959234, -0.003839509328827262, 0.005383852869272232, 0.0028182496316730976, -0.008725186809897423, -0.004234491381794214, 0.022830668836832047, 0.030203664675354958, 0.010803289711475372, -0.003556616837158799, 0.010931392200291157, -0.02869490534067154, 0.0034445272758603096, 0.023955121636390686, 0.003175868419930339, -0.01807665079832077, -0.016439789906144142, -0.007565149571746588, -0.004853651858866215, -0.011678655631840229, 0.0011538098333403468, -0.008162960410118103, 0.014226467348635197, -0.0075295655988156796, 0.00997062586247921, -0.014041430316865444, -0.005746809300035238, 0.008027741685509682, 0.0018272362649440765, 0.008589968085289001, -0.014489788562059402, -0.014048547483980656, 0.020254390314221382, -0.0070456238463521, -0.01742190681397915, -0.0024535139091312885, 0.00167689414229244, 0.009422632865607738, -0.004657940473407507, 0.006501189433038235, 0.008340880274772644, -0.001937546650879085, 0.003195439465343952, -0.0018521450692787766, 0.004327009432017803, 0.008860405534505844, -0.0026136417873203754, 0.028922641649842262, 0.0026243170723319054, -0.02085220068693161, 0.012838692404329777, -0.014247816987335682, 0.0031153757590800524, -0.0026723553892225027, -0.002357437275350094, -0.00041677712579257786, 0.011892159469425678, -0.024325193837285042, -0.006543890107423067, -0.011386866681277752, 0.020183222368359566, -0.00784982182085514, -0.014987964183092117, -0.03285111114382744, 0.0053731780499219894, 4.225595330353826e-05, 0.015728110447525978, -0.02426826022565365, 0.0044088526628911495], "fa435881-3edb-41ca-acfd-f41d536ae202": [-0.02595793828368187, 0.020609820261597633, -0.0002817749045789242, 0.025680750608444214, -0.014691019430756569, -0.04105658829212189, 0.02173488214612007, 0.033686622977256775, -0.01523724477738142, 0.033849675208330154, -0.013264311477541924, 0.016598733142018318, -0.005943259224295616, -0.013239853084087372, 0.004602153319865465, 0.005788359325379133, -0.0062978980131447315, -0.01352519541978836, 0.007361814845353365, -0.05879668891429901, 0.047089528292417526, -0.013696400448679924, -0.05827492102980614, 0.011959891766309738, 0.0015663219382986426, 0.00415579741820693, -0.02649601176381111, 0.014699172228574753, -0.01566118188202381, -0.01098973024636507, 0.01715311035513878, -0.0038745321799069643, 0.027881957590579987, -0.012987121939659119, 0.0030979951843619347, -0.028664609417319298, 0.035512808710336685, 0.01504158228635788, 0.003956058528274298, -0.03349095955491066, 0.0022970004938542843, 0.016215559095144272, 0.012783306650817394, 0.0013686208985745907, -0.028028704226017, -0.012310454621911049, 0.015563350170850754, -0.0032855055760592222, -0.0029797821771353483, -0.005466331262141466, 0.017104195430874825, -0.04268711432814598, -0.006106311455368996, -0.03603457659482956, -0.0004657183599192649, -0.040763095021247864, 0.047252580523490906, 0.05886191129684448, -0.007581935729831457, -0.024457857012748718, -0.014487204141914845, -0.01928909681737423, 0.023626290261745453, -0.01269362773746252, 0.02793087251484394, 6.340572144836187e-05, -0.005894343368709087, 0.017120499163866043, -0.0331159383058548, 0.03945867717266083, 0.038219477981328964, 0.02649601176381111, -0.023936089128255844, 0.019859779626131058, 0.025338340550661087, 0.014356762170791626, 0.0011026416905224323, 0.013655637390911579, 0.01198435015976429, -0.015367686748504639, 0.0331159383058548, -0.03890429809689522, 0.05292680114507675, 0.0032508568838238716, 0.10265778005123138, 0.020821789279580116, -0.036556344479322433, -0.06822111457586288, -0.028664609417319298, -0.02665906399488449, 0.01818034052848816, 0.004989402834326029, 0.002519159344956279, -0.009986958466470242, 0.009399970062077045, -0.0020493646152317524, 0.009424427524209023, 0.0035769615788012743, 0.006986794527620077, -0.02856677770614624, -0.018832549452781677, 0.006102235522121191, 0.008861896581947803, -0.019501063972711563, 0.026936253532767296, -0.017919456586241722, -0.004312735516577959, 0.0076063936576247215, -0.009375511668622494, 0.03053971193730831, 0.014389372430741787, -0.004716290161013603, -0.04268711432814598, 0.006110387854278088, -0.02770259976387024, 0.00583319878205657, -0.03459971398115158, -0.007749064359813929, 0.0061144642531871796, -0.05374206602573395, 0.02228926122188568, -0.011275072582066059, 0.0074596465565264225, -0.002971629612147808, -0.0399804450571537, 0.03169738128781319, 0.007802056614309549, 0.03636068105697632, 0.026169907301664352, 0.005209523718804121, 0.0025048921816051006, -0.0018730642041191459, 0.010182620957493782, 0.045263342559337616, 0.017316162586212158, 0.01345182117074728, 0.021392472088336945, 0.04307843744754791, -0.003799120429903269, 0.01421001460403204, -0.06998208165168762, -0.03587152436375618, -0.012318607419729233, 0.026218822225928307, -0.011804992333054543, 0.0036992509849369526, -0.00787950586527586, 0.01984347403049469, 0.017348773777484894, 0.03032774291932583, -0.06685147434473038, -0.02556661330163479, 0.001534730545245111, -0.004618458915501833, 0.0488831028342247, -0.05279636010527611, 0.0008651966927573085, -0.0037461284082382917, 0.0153106190264225, 0.032740917056798935, 0.02450677379965782, -0.008821133524179459, 0.007145770825445652, 0.04330671206116676, 0.029023323208093643, -0.011650092899799347, 0.05736182630062103, 0.008674386888742447, -0.0480678416788578, 0.04620904475450516, 0.005918801296502352, -0.008853744715452194, 0.014552424661815166, -0.008079245686531067, -0.05667700618505478, -0.007496333215385675, 0.044317636638879776, 0.01515571866184473, 0.0019933152943849564, 0.0011943586869165301, -0.02142508327960968, 0.023936089128255844, -0.0006603621295653284, 0.013500737026333809, -0.0018047860357910395, 0.026300348341464996, 0.026773201301693916, 0.035675860941410065, 0.03236589953303337, 0.0011627672938629985, -0.009938042610883713, -0.024881793186068535, 0.0005161627195775509, -0.00884559191763401, 0.014707325026392937, -0.019664118066430092, -0.006387576926499605, -0.0026027236599475145, -0.017723793163895607, 0.00039718541665934026, -0.011079409159719944, -0.04399153217673302, -0.027735210955142975, 0.07148216664791107, -0.011853908188641071, 0.05628568306565285, 0.00014483637642115355, -0.010582099668681622, 0.006094082724303007, -0.03949128836393356, 0.016207406297326088, -0.004830427002161741, -0.005788359325379133, -0.016696562990546227, 0.019158653914928436, 0.025207897648215294, -0.022338176146149635, 0.007027557585388422, -0.01927279122173786, -0.011511498130857944, -0.021164199337363243, 0.0187184140086174, -0.003028698032721877, -0.02921898663043976, -0.034632325172424316, -0.04053482040762901, -0.0187184140086174, 0.01826186664402485, 0.01567748561501503, 0.007255830802023411, 0.014079573564231396, -0.023936089128255844, 0.011112019419670105, -0.04849177971482277, -0.011682703159749508, 0.035447586327791214, 0.03851297125220299, -0.008270831778645515, -0.015775317326188087, 0.031387582421302795, 0.009302138350903988, 0.007647156715393066, -0.010614709928631783, 0.0013482393696904182, 0.023919783532619476, 0.009147238917648792, -0.01036197878420353, 0.05172021687030792, -0.001928094425238669, 0.013565958477556705, -0.005433720536530018, -0.0132887689396739, 0.0012667131377384067, 0.01849013939499855, -0.04102398082613945, 0.01888146623969078, 0.0031897122971713543, -0.0036870220210403204, -0.004528780002146959, -0.03264308720827103, 0.01214740239083767, 0.009514106437563896, -0.04721996933221817, 0.05814447999000549, 0.03499104082584381, 0.007524867542088032, 0.0377955436706543, -0.006204143166542053, 0.0015194443985819817, 0.02586010843515396, 0.004398338031023741, 0.0026699828449636698, 0.01558780763298273, 0.009538563899695873, 0.0077001485042274, -0.032333288341760635, 0.017185721546411514, -0.005352194420993328, 0.01011740043759346, -0.01690853200852871, -0.02245231345295906, -0.023349100723862648, 0.01961520127952099, 0.028909187763929367, -0.0024580147583037615, 0.010492420755326748, -0.012212622910737991, -0.030931036919355392, -0.007802056614309549, -0.017577046528458595, 0.0013003427302464843, 0.0009829001501202583, -0.007296593859791756, 0.03841514140367508, 0.009351054206490517, -0.002097261371091008, 0.022044682875275612, -0.022599060088396072, -0.021441388875246048, 0.019109738990664482, -0.014454593881964684, -0.02189793437719345, -0.03324637934565544, -0.015506281517446041, 0.039328236132860184, 0.011560413986444473, 0.05393772944808006, 0.03208870813250542, 0.0012412362266331911, 0.02675689570605755, 0.04239361733198166, -0.027034085243940353, 0.015930216759443283, -0.023365406319499016, -0.00811593234539032, 0.016370458528399467, -0.005087234079837799, -0.019582590088248253, -0.0059351068921387196, -0.0223055649548769, 0.0062652877531945705, 0.006583239883184433, -0.0697864219546318, 0.04819828271865845, 0.025909023359417915, -0.017479214817285538, 0.013133869506418705, 0.0013706590980291367, -0.02524050883948803, -0.023039301857352257, -0.02349584735929966, -0.03192565590143204, -0.004659221973270178, 0.042654503136873245, -0.03220284357666969, -0.027262357994914055, -0.04040437936782837, -0.030099470168352127, 0.016199253499507904, -0.036393292248249054, -0.008601013571023941, -0.0007979375659488142, 0.02555030770599842, -0.01896299235522747, 0.008437960408627987, 0.020854400470852852, 0.017870541661977768, 0.022436007857322693, -0.013663789257407188, 0.004147645086050034, 0.0009090170497074723, 0.0010221345582976937, 0.019060824066400528, 0.036393292248249054, -0.0015703982207924128, -0.02046307362616062, -0.0420675128698349, 0.021082673221826553, 0.005311431363224983, 9.037942800205201e-05, -0.008075169287621975, -0.03851297125220299, -0.0169900581240654, 0.012921901419758797, 0.004618458915501833, 0.01388391014188528, 0.019060824066400528, 0.012563185766339302, 0.03039296343922615, -0.009082017466425896, -0.004361651372164488, 0.02952878549695015, -0.022729501128196716, -0.008992338553071022, -0.0467960350215435, -0.05589435622096062, 0.033621400594711304, 0.02166966162621975, -0.006950107868760824, 0.016329696401953697, 0.01046796329319477, -0.034240998327732086, -0.03469754755496979, 0.02770259976387024, 0.049078766256570816, 0.013068648055195808, 0.02507745660841465, -0.00909017026424408, -0.02165335603058338, -0.002081975108012557, -0.0361650176346302, 0.006293822079896927, -0.007863201200962067, -0.04673081263899803, 0.007414807099848986, -0.030572321265935898, -0.0014980437699705362, -0.0017456795321777463, 0.00543779693543911, -0.025615528225898743, -0.024180667474865913, -0.004810045473277569, 0.01602804847061634, 0.0021054139360785484, 0.015090498141944408, -0.022077292203903198, 0.006501713767647743, -0.038056425750255585, 0.010973425582051277, 0.024490468204021454, -0.012318607419729233, 0.011193545535206795, 0.005429644137620926, 0.019093433395028114, 0.027914566919207573, 0.030572321265935898, 0.027034085243940353, 0.04141530394554138, -0.022240344434976578, -0.0006287707365117967, 0.04148052632808685, 0.0005727214738726616, 0.009628242813050747, 0.003417985513806343, -0.0018047860357910395, 0.02864830382168293, -0.0008300385088659823, 0.012220775708556175, 0.0005824027466587722, -0.03450188413262367, -0.016036201268434525, 0.019338011741638184, 0.026463400572538376, 0.010810372419655323, 0.01563672348856926, -0.03331160172820091, 0.00014330775593407452, -0.0031285674776881933, 0.030898425728082657, -0.006081853993237019, -0.027180831879377365, 0.03192565590143204, 0.010150010697543621, 0.03261047601699829, -0.044872015714645386, -0.04604599252343178, -0.035578031092882156, -0.01266101747751236, 0.017968371510505676, -0.035447586327791214, 0.015612265095114708, 0.022012071684002876, -0.03166477382183075, -0.031045174226164818, -0.007080549839884043, -0.00852763932198286, 0.00743926502764225, 0.03577369078993797, 0.013908368535339832, -0.05967717245221138, -0.014699172228574753, 0.009913585148751736, 0.005629383493214846, 0.017120499163866043, -0.007369967643171549, -0.007838742807507515, -0.013076800853013992, 0.006518018897622824, -0.0008702920749783516, 0.01436491496860981, -0.0030878044199198484, 0.014935597777366638, 0.04483940452337265, 0.05126366764307022, -0.005286973435431719, -0.011910976842045784, -0.002820806112140417, 0.012897443026304245, -0.01606881245970726, 0.007891735062003136, -0.0034546724054962397, -0.001392059726640582, 0.020332632586359978, -0.00968531146645546, 0.003024621633812785, 0.006782979238778353, -0.028371114283800125, -0.008111855946481228, 0.03675200790166855, 0.01639491692185402, 0.008674386888742447, -0.01578347012400627, 0.005327736493200064, 0.01023153681308031, -0.003560656448826194, -0.00909017026424408, 0.011731619015336037, -0.03446927294135094, 0.0021645203232765198, -0.020968535915017128, 0.020821789279580116, -8.025234274100512e-05, 0.005009784363210201, -0.0064161112532019615, -0.038219477981328964, 0.03502365201711655, -0.009098323062062263, 0.03288766369223595, -0.020984841510653496, -0.00680743670091033, -0.01579977571964264, 0.02801239863038063, -0.0433393232524395, 0.009302138350903988, 0.011731619015336037, 0.030849510803818703, -0.010761457495391369, 0.0011739771580323577, 0.02173488214612007, 0.018033593893051147, -0.00040635711047798395, -0.018376003950834274, -0.02070765197277069, 0.006876734085381031, -0.02682211622595787, -0.012457202188670635, -0.02078917808830738, -0.033686622977256775, 0.0221262089908123, -0.02920268103480339, -0.010704388841986656, 0.033523570746183395, -0.015856843441724777, 0.006982718128710985, 0.022974081337451935, -0.0011260805185884237, -0.0004748900537379086, 0.03308332711458206, 0.03164846822619438, -0.011014188639819622, -0.05589435622096062, 0.03887168690562248, -0.015669334679841995, -0.04118703305721283, -0.042263176292181015, 0.020251106470823288, 0.01047611515969038, 0.017202027142047882, -0.0010297776898369193, 0.023544764146208763, -0.0446111299097538, 0.02413175255060196, 0.01028045266866684, 0.0031000333838164806, 0.0011637863935902715, -0.031208226457238197, 0.01293005421757698, -0.007259907200932503, -0.020136969164013863, -0.021490303799510002, -0.0017874616896733642, 0.01114463061094284, -0.013623026199638844, 0.0004532346792984754, 0.02285994403064251, -0.0212620310485363, -0.036621563136577606, 0.016941143199801445, -0.014813308604061604, 0.017756404355168343, 0.00202898308634758, -0.021783798933029175, 0.03681722655892372, 0.006591392681002617, 0.008552097715437412, 0.05739443749189377, -0.02705039083957672, -0.015767164528369904, -0.059644561260938644, -0.015644876286387444, 0.007435188628733158, -0.02667536959052086, -0.0005767978145740926, 0.005890267435461283, 0.010867441073060036, 0.005148379132151604, 0.0009533468983136117, -0.046698201447725296, -0.01754443533718586, -0.018506444990634918, -0.008625471033155918, 0.030458183959126472, -0.017087889835238457, -0.0008840496302582324, -0.0157427079975605, 0.008617318235337734, 0.01456057745963335, -0.005266591906547546, 0.029561396688222885, -0.012025113217532635, 0.003517855191603303, 0.004740748088806868, 0.04604599252343178, -0.032806139439344406, -0.03365401178598404, 0.013565958477556705, 0.029871195554733276, 0.011951739899814129, -0.006147074978798628, -0.0017599466955289245, 0.0037807771004736423, -0.01920757070183754, 0.038447752594947815, -0.003905104473233223, 0.009253222495317459, 0.004398338031023741, 0.025843802839517593, 0.022566448897123337, 0.005727214738726616, -0.010573946870863438, 0.015644876286387444, -0.016778090968728065, 0.016566121950745583, -0.019501063972711563, 0.02142508327960968, 0.013998046517372131, 0.0049282582476735115, 0.0035871523432433605, -0.006962336599826813, 0.014470898546278477, -0.02300669066607952, -0.018196646124124527, 0.017185721546411514, -0.03985000029206276, -0.017413994297385216, -0.004969021305441856, 0.00038317308644764125, 0.012000654824078083, -0.007219144143164158, -0.027881957590579987, -0.015017123892903328, -0.0022562374360859394, -0.009514106437563896, 0.03792598471045494, -0.006281592883169651, -0.016329696401953697, 0.02364259585738182, -0.003369069891050458, 0.01959889568388462, -0.0132887689396739, -0.0009339844109490514, 4.477571201277897e-05, -0.00545410206541419, 0.04007827490568161, -0.011429972015321255, -0.010459810495376587, -0.006045166868716478, 0.008193382062017918, 0.0004955263575538993, 0.018848855048418045, 0.017038973048329353, -0.009669005870819092, 0.0006160322809591889, 0.0070438627153635025, 0.020022831857204437, 0.013215395621955395, 0.04839394614100456, 0.023985005915164948, 0.01927279122173786, -0.002078917808830738, 0.018506444990634918, -0.030099470168352127, 0.0013411057880148292, 0.005759825464338064, -0.012652864679694176, -0.0003640654031187296, -0.008894507773220539, 0.008005872368812561, 0.009253222495317459, -0.024539383128285408, -0.03220284357666969, -0.04656776040792465, -0.0178542360663414, 0.026561232283711433, -0.009024949744343758, -0.001990258228033781, -0.0008820114890113473, 0.0005123411538079381, -0.00817707646638155, 0.010190773755311966, -0.003079651854932308, -0.0006364138098433614, -0.00936735887080431, 0.04911137744784355, 0.01770748943090439, -0.009163543581962585, 0.016778090968728065, -0.012228928506374359, -0.007769445888698101, -0.014144794084131718, -0.04627426713705063, -0.018946686759591103, 0.010492420755326748, -0.02103375643491745, -0.00987282209098339, 0.022876249626278877, -0.015848690643906593, -0.019028212875127792, -0.015441060066223145, 0.018506444990634918, 0.024001309648156166, 0.024620909243822098, 0.007891735062003136, 0.004789663478732109, -0.0004486488178372383, -0.0012677322374656796, -0.015856843441724777, 0.014870377257466316, -0.002417251467704773, 0.024099141359329224, 0.018278172239661217, 0.060590263456106186, -0.02109897881746292, -0.010663625784218311, -0.039328236132860184, -0.010769609361886978, -0.0058576567098498344, -0.016427528113126755, 0.010484267957508564, 0.0028330350760370493, 0.016484595835208893, -0.027001474052667618, -0.011878365650773048, 0.009864669293165207, 0.015139413997530937, -0.021327251568436623, -0.00484265573322773, -0.0010730884969234467, 0.01842491887509823, 0.02183271385729313, 0.030914731323719025, -0.022044682875275612, -0.0043371934443712234, -0.05302463471889496, -0.004508398473262787, -0.01166639756411314, 0.042491450905799866, 0.008617318235337734, -0.005233981646597385, -0.01752813160419464, 0.025256814435124397, -0.010166316293179989, 0.0374368280172348, -0.00912278052419424, 0.012767001055181026, -0.0012656941544264555, 0.023789342492818832, 0.022713197395205498, 0.010533183813095093, 0.020511990413069725, -0.005458178464323282, 0.014022504910826683, -0.008079245686531067, -0.006061472464352846, 0.020577210932970047, -0.01261210162192583, 0.003167292568832636, 0.02333279512822628, 0.028452640399336815, 0.03055601567029953, 0.032496340572834015, 0.011120172217488289, 0.014169251546263695, 0.03437144309282303, -0.006579163484275341, -0.004292353987693787, 0.0016264475416392088, -0.019060824066400528, -0.026707980781793594, -0.004655145574361086, -0.006689223926514387, -0.004879342392086983, 0.017038973048329353, 0.004887495189905167, -0.007272136397659779, -0.024947013705968857, 0.028746135532855988, 0.0037400140427052975, -0.031860433518886566, 0.043534986674785614, -0.0008091474301181734, -0.00013375389971770346, -0.027360189706087112, -0.0013176670763641596, -0.017006363719701767, -0.020691346377134323, 0.02046307362616062, -0.01619110070168972, 0.003028698032721877, 0.00740257790312171, 0.007447417359799147, -0.010500573553144932, 0.032333288341760635, 0.024099141359329224, 0.021327251568436623, -0.015278007835149765, -0.02913746051490307, -0.007569706998765469, 0.002672020811587572, -0.006261211354285479, 0.015269855968654156, -0.0005156531697139144, -0.02665906399488449, 0.0501549132168293, -0.018783634528517723, -0.008715149946510792, 0.019761947914958, 0.01674547977745533, 0.007956956513226032, -0.013843147084116936, -0.014454593881964684, 0.010891899466514587, 0.0015000818530097604, 0.009660854004323483, 0.0020473264157772064, 0.04118703305721283, 0.010867441073060036, -0.017332468181848526, 0.01943584345281124, -0.011250614188611507, -0.020202189683914185, 0.004316811915487051, -0.028941797092556953, 0.014006199315190315, 0.010769609361886978, 0.021050062030553818, 0.019109738990664482, 0.004296430386602879, -0.016166644170880318, 0.006220448296517134, -0.019973916932940483, -0.04477418214082718, -0.02064243145287037, 0.029936417937278748, 0.004989402834326029, 0.0240339208394289, 0.014658409170806408, -0.018229255452752113, 0.039947833865880966, 0.04699169471859932, 0.022077292203903198, -0.024245889857411385, 0.006909344810992479, -0.026153601706027985, -0.011560413986444473, 0.0038928755093365908, 0.020055443048477173, 0.010639168322086334, -0.04545900225639343, 0.021082673221826553, 0.016680259257555008, 0.007251754868775606, -0.011364750564098358, 0.016696562990546227, -0.0010374208213761449, -0.01937062293291092, 0.011348445899784565, -0.02173488214612007, -0.015457365661859512, 0.0029471716843545437, -0.03238220140337944, -0.010981577448546886, 0.02261536568403244, 0.015832386910915375, 0.00968531146645546, 0.0015530738746747375, -0.012587644159793854, 0.013892062939703465, -0.02214251272380352, -0.026724284514784813, 0.0025945710949599743, 0.028534166514873505, -0.010092942044138908, 0.03691506013274193, -0.03314854949712753, 0.009293985553085804, 0.01658242754638195, -0.023234963417053223, -0.024408942088484764, 0.005445949733257294, -0.019810864701867104, 0.0038826847448945045, 0.0037522430066019297, -0.024571994319558144, 0.006281592883169651, 0.03776293247938156, -0.002233817707747221, -0.008560249581933022, -0.013084953650832176, -0.03022991120815277, 0.0023092294577509165, -0.037958595901727676, -0.047513462603092194, -0.01643568091094494, 0.05553564056754112, -0.048687439411878586, 0.004475787747651339, -0.024229584261775017, 0.012074029073119164, 0.0061185406520962715, -0.0016784204635769129, 0.008853744715452194, 0.0028615694027394056, 0.022419702261686325, 0.058535803109407425, 0.029316818341612816, -0.007386272773146629, -0.003271238412708044, 0.013068648055195808, -0.008552097715437412, 0.003956058528274298, 0.0012728276196867228, 0.008984185755252838, 0.02649601176381111, 0.00424751453101635, 0.0020891085732728243, -0.017903150990605354, -0.0027657761238515377, -0.01682700589299202, 0.05093756318092346, 0.015938369557261467, 0.014267083257436752, -0.008780370466411114, -0.006734063383191824, 0.042491450905799866, -0.001535749644972384, -0.028664609417319298, 0.0008876164210960269, -0.026072075590491295, -0.004406490828841925, 0.007940650917589664, 0.013280616141855717, 0.02405022643506527, -0.019696727395057678, -0.007675691042095423, -0.010141857899725437, 0.025126371532678604, 0.015954675152897835, 0.009302138350903988, -0.02737649530172348, 0.004871190059930086, 0.030686458572745323, 0.008173000998795033, -0.009970652870833874, -0.02183271385729313, 0.020838094875216484, -0.0023907555732876062, -0.00038240879075601697, -0.0004904309753328562, -0.004687755834311247, 0.013949131593108177, 0.004406490828841925, -0.01842491887509823, 0.014258930459618568, -0.0010588214499875903, 0.0028901034966111183, -0.027343884110450745, 0.005694604478776455, -0.03145280480384827, -0.005604925565421581, -0.02586010843515396, 0.0027474325615912676, 0.025599224492907524, 0.010484267957508564, -0.011715313419699669, 0.02206098660826683, -0.0039193714037537575, -0.00996250007301569, -0.0556986927986145, -0.008144466206431389, 0.007895811460912228, -0.04164357855916023, 0.005335889291018248, -0.019892390817403793, 0.02952878549695015, -0.02643079124391079, -0.019060824066400528, 0.0231697428971529, -0.022517533972859383, -0.0003536198637448251, 0.024653520435094833, -0.0034404052421450615, 0.00467960350215435, -0.015229091979563236, -0.003623839234933257, -0.027490630745887756, -0.012807764112949371, -0.024979624897241592, -0.004826350603252649, -0.019859779626131058, -0.004728518892079592, -0.021604441106319427, -0.012375676073133945, 0.016134032979607582, 0.019778253510594368, 0.03645851090550423, 0.032105013728141785, -0.0010669740149751306, -0.005690528079867363, 0.025061151012778282, -0.01115278247743845, -0.009073864668607712, -0.0013411057880148292, -0.0033955657854676247, -0.001336010405793786, 0.019957611337304115, 0.020430464297533035, -0.037958595901727676, 0.00881298165768385, 0.006624002940952778, -0.018359698355197906, -0.009514106437563896, -0.011006035842001438, -0.023365406319499016, 0.0057027568109333515, 0.017202027142047882, 0.010736999101936817, 0.0012585605727508664, 0.02413175255060196, 0.002822844311594963, -0.03792598471045494, -0.02341432124376297, 0.012644711881875992, -0.018441224470734596, 0.008242297917604446, -0.013745315372943878, 0.004557313863188028, -0.10820156335830688, -0.024735046550631523, -0.004573619458824396, 0.03499104082584381, -0.016101421788334846, -0.017674878239631653, 0.017495520412921906, -0.002531388308852911, -0.03740421682596207, 0.009179849177598953, -0.014837766997516155, -0.009457037784159184, 0.014911140315234661, -0.0016865730285644531, -0.01166639756411314, 0.010940814390778542, -0.012514269910752773, -0.017283553257584572, -0.010451657697558403, 0.017022669315338135, -0.01663949526846409, -0.006950107868760824, 0.018310781568288803, 0.0055600861087441444, -0.026724284514784813, 0.023055607452988625, -0.0038969519082456827, -0.0026149526238441467, -0.008780370466411114, -0.02175118774175644, 0.009293985553085804, 0.009065712802112103, -0.016117727383971214, -0.01723463647067547, 0.013386600650846958, 0.011788686737418175, -0.007227296940982342, -0.01984347403049469, 0.016574274748563766, 0.010883746668696404, 0.008747760206460953, 0.010296758264303207, -0.021359862759709358, 0.016924837604165077, 0.025370949879288673, 0.0059717935509979725, 0.009905432350933552, -0.028142841532826424, 0.0025354644749313593, 0.014650256372988224, 0.0003849564818665385, -0.0008636681013740599, -0.028517860919237137, -0.02333279512822628, -0.014389372430741787, 0.019582590088248253, 0.024245889857411385, -0.011780534870922565, -0.020658737048506737, 0.014267083257436752, 0.027392800897359848, 0.016346001997590065, 0.013590415939688683, 8.509296458214521e-05, -0.02594163455069065, 0.002038154751062393, 0.019664118066430092, 0.027017779648303986, 0.027816737070679665, 0.009897279553115368, 0.020365241914987564, -0.012359370477497578, 0.005886191036552191, -0.0006644384702667594, -0.001089393743313849, -0.012025113217532635, 0.007431112229824066, 0.011429972015321255, 0.016843311488628387, 0.008796676062047482, -0.03371923416852951, 0.016305238008499146, 0.013076800853013992, -0.0074596465565264225, -0.01984347403049469, -0.023446932435035706, 0.02007174864411354, -0.002784119453281164, -0.007859124802052975, 0.005539704579859972, 0.027017779648303986, 0.0011301568010821939, 0.03759988024830818, 0.0013186861760914326, -0.010573946870863438, 0.042589280754327774, 0.004357574973255396, 0.021930545568466187, -0.03394750505685806, -0.009938042610883713, 0.027898263186216354, -0.01130768284201622, 0.004736671689897776, 0.003415947314351797, -0.007626775186508894, -0.0032997725065797567, -0.010451657697558403, 0.016712868586182594, 0.002221588743850589, -0.0046306876465678215, -0.012595796026289463, -0.01818034052848816, -0.019011907279491425, -0.0009130933322012424, -0.0035484274849295616, -0.018359698355197906, 0.011641940101981163, -0.0009609899716451764, -0.0058168936520814896, 0.017316162586212158, 0.007908040657639503, 0.011511498130857944, -0.0034444816410541534, -0.035186704248189926, -0.013313227333128452, -0.01912604458630085, 0.0024967396166175604, -0.004695908632129431, 0.012644711881875992, 0.023218659684062004, -0.026642758399248123, -0.0011546147288754582, -0.003513778792694211, -0.0037379758432507515, -0.0005798550555482507, 0.003866379614919424, 0.007936574518680573, -0.02269689179956913, 0.04046960175037384, -0.02103375643491745, 0.020903315395116806, 0.016052506864070892, -0.01512310840189457, 0.0017670801607891917, -0.015465518459677696, 0.0011464620474725962, -0.023234963417053223, -0.02150660939514637, 0.005882114637643099, -0.00860916543751955, 0.009856516495347023, 0.011291377246379852, 0.03981739282608032, -0.005005707964301109, -0.010622862726449966, -0.029104849323630333, 0.004716290161013603, 0.00347097753547132, 0.0029369809199124575, 0.013671942055225372, -0.008967881090939045, -0.0021950926166027784, 0.005022013559937477, -0.023952394723892212, 0.010092942044138908, -0.018392309546470642, 0.0028839888982474804, -0.009946195408701897, -0.024229584261775017, 0.0248491819947958, 0.030963648110628128, -0.027800431475043297, -0.011120172217488289, -0.02150660939514637, 0.02064243145287037, -0.019761947914958, 0.009033101610839367, -0.008026253432035446, 0.030816899612545967, -0.005943259224295616, -0.004565466661006212, 0.009750531986355782, -0.00257011316716671, 0.013557805679738522, -0.006534324027597904, -0.0010017530294135213, 0.003267162013798952, -0.005185065791010857, -0.005299202166497707, 0.007973261177539825, 0.0062652877531945705, 0.02189793437719345, -0.005417415406554937, 0.009856516495347023, 0.0084950290620327, 0.020740263164043427, 0.02007174864411354, 0.02595793828368187, -0.014894834719598293, -0.016941143199801445, -0.00565384142100811, -0.02610468678176403, 0.025843802839517593, 0.0013655637158080935, 0.014226320199668407, -0.016451984643936157, -0.019403234124183655, 0.03854558244347572, 0.006754444912075996, -0.00917169637978077, 0.010207079350948334, -0.01353334728628397, 0.0047448244877159595, 0.02197946049273014, -0.011511498130857944, -0.01575901173055172, -0.01464210357517004, -0.010997883044183254, 0.004675527103245258, -0.014731782488524914, 0.02706669457256794, 0.001239198143593967, 0.012807764112949371, -0.015612265095114708, 0.021604441106319427, 0.021082673221826553, -0.013101259246468544, -0.0019607048016041517, -0.013810536824166775, 0.0044839405454695225, 0.006799284368753433, 0.011340293101966381, 0.024099141359329224, -0.010052178986370564, -0.03256155923008919, 0.00765530951321125, 0.012709933333098888, 0.010777762159705162, 0.029773365706205368, -0.010785914957523346, 0.0004415152652654797, -0.01425077859312296, -0.019240181893110275, -0.017413994297385216, 0.003328306833282113, 0.005209523718804121, -0.017903150990605354, -0.004887495189905167, -0.006012556608766317, 0.00787950586527586, -0.0003457220154814422, -0.0062693641521036625, -0.00831159483641386, 0.021571829915046692, 0.0020585362799465656, -0.014454593881964684, -0.0012269691796973348, -0.009726074524223804, -0.00033196446020156145, -0.009302138350903988, -0.03978478163480759, 0.008437960408627987, 0.010598404332995415, -0.02238709107041359, 0.024555688723921776, -0.010443504899740219, -0.0015958751318976283, 0.014845918864011765, -0.010753304697573185, -0.02246861904859543, -0.009929889813065529, -0.007985490374267101, -0.008658081293106079, 0.011511498130857944, 0.016875920817255974, 0.019011907279491425, -0.0023561068810522556, -0.03851297125220299, 0.011487040668725967, -0.00168147764634341, -0.005295126233249903, -0.016810700297355652, -0.013671942055225372, 0.0045165508054196835, 0.005547857377678156, 0.015351382084190845, -0.01115278247743845, -0.025142677128314972, 0.01337029505521059, 0.004565466661006212, -0.020691346377134323, 0.008274908177554607, 0.001779309124685824, -0.004585848189890385, 0.03466493636369705, 0.010141857899725437, -0.02762107364833355, -0.01555519737303257, 0.007826514542102814, 0.010337521322071552, 0.013223548419773579, -0.0011648054933175445, -0.021881628781557083, -0.012758849188685417, -0.02928420715034008, -0.00035642230068333447, 0.0017446604324504733, -0.013150174170732498, 0.02246861904859543, -0.005107616074383259, 0.00912278052419424, 0.007744987960904837, -0.04451330006122589, -0.030099470168352127, -0.03207240253686905, 0.010769609361886978, 0.010027721524238586, 0.0015082345344126225, -0.005205447319895029, -0.022044682875275612, 0.03492581844329834, 0.0161747969686985, 0.03308332711458206, 0.015278007835149765, -0.025142677128314972, 0.0034302144777029753, -0.02093592658638954, -0.00027591519756242633, 0.006253059022128582, 0.0016560007352381945, -0.039719559252262115, 0.028208062052726746, -0.031632162630558014, -0.014780698344111443, -0.011633787304162979, 0.01959889568388462, -0.0035402749199420214, -0.006648460868746042, -0.017022669315338135, 0.0011006036074832082, 0.022745806723833084, 0.0369802787899971, 0.00013706590107176453, -0.005568238906562328, -0.006840047426521778, -0.016631342470645905, -0.019142350181937218, 0.019386928528547287, 0.02815914712846279, -0.0045980773866176605, 0.013182785362005234, -0.009065712802112103, -0.009840210899710655, -0.003519893391057849, -0.008001795969903469, 0.043763257563114166, -0.0064161112532019615, 0.016370458528399467, -0.03205609694123268, -0.027572156861424446, -0.011006035842001438, -0.0052258288487792015, -0.008519486524164677, 0.026952559128403664, -0.01404696237295866, -0.0025334262754768133, 0.006061472464352846, -0.009293985553085804, 0.004227133002132177, -0.0046632979065179825, 0.007182457484304905, -0.0026068000588566065, -0.011218003928661346, -0.002582342131063342, -0.027327578514814377, 0.01353334728628397, -0.013476279564201832, 0.012546881102025509, -0.005686451680958271, 0.0036849838215857744, -0.0022643900010734797, 0.012701780535280704, -0.03763249143958092, -0.015196481719613075, -0.014568730257451534, 0.0052217524498701096, -0.003422061912715435, 0.011087561957538128, -0.021637050434947014, -0.013133869506418705, -0.032969191670417786, -0.01889777183532715, 0.015131261199712753, 0.022419702261686325, 0.025680750608444214, -0.0038908375427126884, -0.0020931849721819162, 0.0012595796724781394, -0.033686622977256775, -0.00844611320644617, -0.011487040668725967, 0.005392957478761673, -0.012220775708556175, 0.020251106470823288, -0.01744660548865795, 0.02458829991519451, 0.01777270995080471, 0.02093592658638954, 0.004045737441629171, -0.03145280480384827, -0.020609820261597633, -0.0035321221221238375, 0.021294640377163887, -0.006244906224310398, -0.03371923416852951, 0.0248491819947958, -0.01209848653525114, 0.033050715923309326, -0.016761785373091698, 0.018702108412981033, -0.0024070607032626867, -0.0022643900010734797, -0.015563350170850754, -0.019859779626131058, -0.0046306876465678215, 0.026381874457001686, -0.015693791210651398, 0.001969876466318965, 0.014055115170776844, 0.0016488671535626054, -0.015807928517460823, 0.031469110399484634, -0.0038459980860352516, 0.022713197395205498, 0.022713197395205498, -0.022240344434976578, 0.002932904753834009, -0.010101094841957092, -0.01293005421757698, -0.007272136397659779, -0.046861253678798676, -0.015172024257481098, -0.002810615347698331, -0.0031041097827255726, 0.0022664282005280256, -0.011813145130872726, 0.0059514120221138, -0.02333279512822628, 0.011046798899769783, 0.010239689610898495, 0.015335076488554478, -0.03450188413262367, 0.010834830813109875, -0.012669170275330544, 0.027963483706116676, 0.030588626861572266, -0.009505953639745712, -0.006937878672033548, -0.006403882056474686, 0.02753954753279686, 0.016158491373062134, 0.020511990413069725, -0.007231373339891434, 0.008543944917619228, -0.0025456552393734455, -0.0017640229780226946, 0.024229584261775017, -0.024735046550631523, -0.01888146623969078, -0.022272955626249313, 0.010402741841971874, 0.010223384015262127, 0.0022908858954906464, -0.002327572787180543, 0.022338176146149635, -0.025338340550661087, -0.004830427002161741, -0.008739607408642769, -0.008380892686545849, -0.018506444990634918, 0.0023133056238293648, -0.011568566784262657, 0.004699985031038523, 0.02103375643491745, 0.01479700393974781, -0.003668678691610694, 0.02237078733742237, -0.013712705112993717, -0.01707158423960209, 0.024963319301605225, 0.018033593893051147, 0.005503017921000719, -0.024164363741874695, 0.041774019598960876, 0.016525357961654663, 0.0053725759498775005, 0.008951575495302677, -0.018587971106171608, 0.010785914957523346, -0.004936411045491695, 0.0014735858421772718, -0.007243602070957422, -0.046861253678798676, -0.004602153319865465, 0.01646013744175434, 0.003609572071582079, 0.002523235511034727, 0.01578347012400627, 0.01588130183517933, -0.0176259633153677, -0.002174711087718606, 0.003307925071567297, 0.010851136408746243, 0.003511740593239665, -0.005201370920985937, -0.005291049834340811, 0.01293820608407259, 0.00025884565548039973, -0.008462418802082539, 0.014405678026378155, 0.010761457495391369, -0.010060331784188747, 0.008344206027686596, -0.001191301504150033, 0.005201370920985937, -0.0026862879749387503, -0.012506118044257164, 0.013435516506433487, -0.014275236055254936, 0.013150174170732498, 0.0011026416905224323, -0.0187184140086174, 0.002423366066068411, 0.004541008733212948, 0.02824067324399948, 0.0043657273054122925, -0.0032773527782410383, 0.011878365650773048, -0.0003727275470737368, -0.005539704579859972, -0.005368499550968409, 0.011943587101995945, -0.014299693517386913, 0.0011862061219289899, 0.012465354986488819, 0.050122302025556564, 0.003566770814359188, 0.010525031015276909, -0.013394753448665142, 0.0059514120221138, -0.008323824033141136, 0.0032467804849147797, -0.013199090026319027, 0.028077619150280952, -0.0043005067855119705, 0.005914725363254547, -0.021082673221826553, -0.005319584161043167, 0.0068685817532241344, -0.019713032990694046, 0.01639491692185402, 0.008747760206460953, 0.029007019475102425, 0.014813308604061604, 0.00940812285989523, 0.013248005881905556, 0.0017517940141260624, -0.011959891766309738, -0.010973425582051277, 0.007276212330907583, 0.015017123892903328, -0.008022177033126354, 0.0027494707610458136, -0.005123921204358339, 0.017283553257584572, -0.019240181893110275, -0.005564162507653236, -0.030996257439255714, -0.0059351068921387196, -0.019892390817403793, 0.022713197395205498, -0.010150010697543621, 0.020365241914987564, -0.008486876264214516, 0.029887501150369644, -0.010068484582006931, -0.010337521322071552, 0.029333123937249184, 0.030767984688282013, -0.008535792119801044, -0.003106147749349475, 0.004459482617676258, -0.0008173000533133745, 0.003701288951560855, -0.014144794084131718, -0.02921898663043976, 0.001928094425238669, -0.0064161112532019615, -0.0006374329095706344, 0.00238056480884552, -0.012351217679679394, 0.013345837593078613, -0.0009263413376174867, 0.006065548397600651, -0.013867605477571487, 0.004887495189905167, 0.001834339345805347, -0.030262522399425507, -0.03269200399518013, -0.012090333737432957, -0.011038646101951599, 0.00033476692624390125, 0.003707403549924493, 0.015367686748504639, 0.007977337576448917, -0.0028839888982474804, 0.004435024689882994, 0.017886845394968987, -0.012367523275315762, -0.005690528079867363, -0.0014287465019151568, 0.019761947914958, 0.01879994012415409, 0.02372412197291851, -0.005254363175481558, -0.011315835639834404, -0.0073414333164691925, 0.013248005881905556, -0.021001147106289864, -0.012302301824092865, -0.012163707986474037, 0.009995111264288425, -0.01421001460403204, 0.00028483211644925177, -0.035447586327791214, 0.0016070849960669875, 0.00046724698040634394, -0.007708301302045584, 0.015188328921794891, 0.01464210357517004, 0.0007811228279024363, 0.00042291710269637406, -0.006668842397630215, 0.013296921737492085, -0.011731619015336037, 0.0047815111465752125, 0.020854400470852852, 0.004875265993177891, 0.007549325469881296, 0.003420023713260889, -0.012196318246424198, 0.02388717420399189, -0.0019668193999677896, -0.016003591939806938, 0.002433556830510497, 0.005531552247703075, -0.004838579334318638, -0.006840047426521778, 0.030458183959126472, -0.02706669457256794, -0.022566448897123337, 0.004435024689882994, 0.009856516495347023, -0.008731454610824585, 0.005197294522076845, -0.01579977571964264, -0.016859617084264755, -0.016875920817255974, 0.0012127021327614784, 0.002816729946061969, 0.017511826008558273, -0.019973916932940483, 0.0001317157584708184, -0.012383827939629555, 0.003982554189860821, 0.0263492651283741, -0.004793739877641201, -0.012033266015350819, -0.009448885917663574, 0.016843311488628387, -0.003664602292701602, 0.0007704225135967135, -0.016468290239572525, 0.008067016489803791, -0.0007362834294326603, 0.003668678691610694, 0.022680586203932762, 0.0038358073215931654, -0.008009947836399078, -0.012000654824078083, 0.02411544695496559, -0.02356106974184513, -0.01999022252857685, 0.0019209608435630798, 0.013084953650832176, 0.009073864668607712, -0.03453449532389641, -0.003222322789952159, -0.014772545546293259, 0.000547244562767446, -0.00012190713459858671, -0.02150660939514637, 0.025061151012778282, 0.011544108390808105, 0.007072397042065859, -0.009669005870819092, 0.013892062939703465, -0.007410730700939894, 0.01879994012415409, 0.00825045071542263, -0.003161177970468998, 0.011095714755356312, 0.025909023359417915, 0.022012071684002876, -0.007198762614279985, -0.003322192234918475, 0.004740748088806868, -0.0029145614244043827, -0.01690853200852871, 0.009783143177628517, -0.0061511509120464325, -0.013720857910811901, 0.001134233083575964, -0.012171859852969646, 0.029903806746006012, 0.006513942498713732, 0.017022669315338135, 0.02437633089721203, 0.008462418802082539, 0.026479706168174744, -0.0038459980860352516, -0.006350890267640352, -0.03746943548321724, -0.002231779508292675, 0.0018638925394043326, 0.005902496166527271, 0.02983858622610569, 0.00040279034874401987, -0.015848690643906593, -0.010353825986385345, -0.015066039748489857, 0.004581771790981293, 0.005812817253172398, 0.013639331795275211, 0.004398338031023741, -0.008633623830974102, -0.0033405355643481016, 0.01047611515969038, 0.01352519541978836, -0.008780370466411114, -0.0035891905426979065, -0.0021400623954832554, -0.018506444990634918, -0.013305074535310268, 0.00365237332880497, -0.05530736595392227, -0.01570194400846958, 0.003269200213253498, 0.0009961480973288417, -0.013231700286269188, -0.0061511509120464325, 0.020332632586359978, 0.007528943940997124, 0.013468126766383648, 0.014104031026363373, 0.0030062783043831587, 0.018000982701778412, 0.01412033662199974, -0.01596282795071602, -0.006073701195418835, -0.0006725910934619606, 0.0040355464443564415, 0.016158491373062134, 0.018506444990634918, -0.004398338031023741, -0.00219101645052433, -0.004659221973270178, -0.029333123937249184, 0.02770259976387024, 0.004541008733212948, 0.01361487340182066, 0.02696886472404003, -0.019582590088248253, 0.011087561957538128, -0.01857166551053524, -0.011853908188641071, 0.00722322054207325, -0.006946031469851732, -0.0005752691649831831, 0.025354646146297455, -0.007333280984312296, 0.017169415950775146, -0.0030633467249572277, 0.006493560969829559, -3.092263068538159e-05, 0.016060659661889076, -0.008560249581933022, -0.0040375846438109875, 0.012106639333069324, 0.023985005915164948, 0.019484760239720345, -0.011862060986459255, 0.007300670258700848, 0.003112262347713113, -0.028224367648363113, 0.010573946870863438, 0.015734555199742317, -0.004602153319865465, -0.013003427535295486, 0.020756568759679794, 0.01352519541978836, -0.03691506013274193, -0.0028452640399336815, 0.003012392669916153, 0.02007174864411354, 0.0059351068921387196, 0.006098159123212099, -0.01274254359304905, 0.01320724282413721, -0.014340456575155258, -0.018979297950863838, 0.0084950290620327, -0.00723952567204833, 0.013859452679753304, 0.010940814390778542, 0.004414643160998821, -8.197203715099022e-05, -0.005902496166527271, -0.02864830382168293, -0.023120827972888947, 0.007891735062003136, -0.011014188639819622, 0.002013696823269129, -0.004720366559922695, 0.004748900420963764, 0.02388717420399189, -0.006057396065443754, 0.010060331784188747, 0.00036151771200820804, 0.0043005067855119705, 0.012237081304192543, 0.0025639988016337156, -0.0009293985785916448, 0.01507419254630804, 0.03381706401705742, -0.014935597777366638, 0.011845755390822887, 0.0027902338188141584, -0.0018567589577287436, 0.03381706401705742, 0.023120827972888947, 0.001139328465797007, -0.0017894998891279101, 0.0007347547798417509, -0.0020116588566452265, 0.014813308604061604, -0.004573619458824396, -0.006326432339847088, -0.0011862061219289899, -0.005164684262126684, -0.012571338564157486, -0.008303442969918251, 0.01575901173055172, -0.009587479755282402, 0.008780370466411114, 0.0007108064601197839, 0.007451493758708239, 0.0006593430880457163, 0.016688412055373192, -0.007842819206416607, 0.01584053970873356, -0.0016702677821740508, -0.008552097715437412, 0.0032936581410467625, 0.004100767429918051, -0.0026862879749387503, -0.022550145164132118, 0.019060824066400528, -0.0029390191193670034, 0.002731127431616187, 0.010598404332995415, -0.02864830382168293, -0.009848363697528839, -0.026528622955083847, 0.012807764112949371, -0.03658895567059517, 0.00960378535091877, 0.0006557762972079217, -0.01420186273753643, -0.0009752570767886937, 0.002731127431616187, 0.014617646113038063, -0.012196318246424198, 0.001986181829124689, 0.00424751453101635, -0.004435024689882994, -0.008389045484364033, 0.00944073311984539, 0.004055927973240614, 0.006632155738770962, -0.018212951719760895, -0.0012106639333069324, 0.022077292203903198, -0.004659221973270178, -0.008462418802082539, -0.019713032990694046, 0.021131588146090508, -0.018946686759591103, -0.02895810268819332, 0.0032895817421376705, 0.017479214817285538, -0.006660689599812031, -0.003572885412722826, -0.046861253678798676, -0.008511334657669067, -0.005250286776572466, -0.0034791301004588604, -0.008266755379736423, -0.005902496166527271, -0.01404696237295866, 0.0028330350760370493, 0.00909017026424408, -0.0008274908177554607, 0.016794394701719284, -0.019713032990694046, 0.039002127945423126, 0.005894343368709087, -0.013786078430712223, -0.0060003274120390415, 0.03150172159075737, 0.00497717410326004, 0.021392472088336945, 0.03841514140367508, 0.007834667339920998, 0.0026129144243896008, -0.006583239883184433, 0.008103703148663044, -0.03515409305691719, -0.0014766431413590908, 0.004887495189905167, 0.0007688938640058041, 5.624829555017641e-06, 0.013859452679753304, 0.01428338885307312, 0.006407958455383778, 0.01353334728628397, -0.010223384015262127, -0.005123921204358339, 0.01594652235507965, 0.017267247661948204, -0.026006855070590973, 0.022827332839369774, 0.020691346377134323, 0.026610149070620537, -0.012277844361960888, 0.013036037795245647, 0.002329610986635089, -0.01619110070168972, -0.016843311488628387, 0.001134233083575964, 0.004320888314396143, 0.01770748943090439, 0.010044027119874954, 0.010582099668681622, -0.012946358881890774, 0.009677158668637276, 0.009326595813035965, 0.028664609417319298, -0.0019464377546682954, 0.02261536568403244, -0.0011699008755385876, 0.018751023337244987, -0.005873961839824915, -0.0144464410841465, 0.0005604925681836903, -0.0013044190127402544, -0.018865160644054413, 0.007744987960904837, -0.002576227532699704, -0.022501228377223015, -0.011438124813139439, 0.03538236767053604, -0.023740427568554878, -0.006094082724303007, 0.004667374305427074, -0.023789342492818832, 0.003815425792708993, 0.016794394701719284, -0.02093592658638954, 0.012881138361990452, 0.009326595813035965, 0.006436492782086134, 0.013598568737506866, -0.005849504377692938, -0.022093597799539566, 0.011185393668711185, 0.03968694806098938, 0.024343719705939293, 0.002040192950516939, 0.008821133524179459, -0.0023866791743785143, -0.005331812892109156, 0.027963483706116676, 0.016875920817255974, -0.03515409305691719, 0.0029675534460693598, -0.008103703148663044, 0.021718576550483704, 0.001006338861770928, -0.004553237929940224, -0.018457530066370964, 0.0056742229498922825, -0.004125225357711315, -0.011372903361916542, -0.010516878217458725, -0.014177404344081879, 0.002233817707747221, -0.0038724939804524183, -0.006734063383191824, -0.0009772952180355787, 0.01512310840189457, 0.00909017026424408, 0.026724284514784813, -0.0024050227366387844, 0.001239198143593967, -0.01715311035513878, 0.00971792172640562, 0.010981577448546886, -0.0012208546977490187, 0.01360672153532505, 0.010565794073045254, 0.007549325469881296, 0.027034085243940353, 0.018441224470734596, -0.007418883498758078, 0.0048141214065253735, 0.007973261177539825, -0.01023153681308031, 0.0008738588658161461, -0.00037247277214191854, 0.01834339275956154, -0.013468126766383648, 0.029952721670269966, -0.01582423411309719, -0.012049570679664612, -0.004066118970513344, 0.0052625155076384544, 0.011291377246379852, 0.007325128186494112, -0.008315671235322952, -0.0031509872060269117, -0.020658737048506737, 0.006037014536559582, 0.010736999101936817, -0.016451984643936157, 0.02921898663043976, 0.01928909681737423, -0.01582423411309719, 0.010255995206534863, -0.009938042610883713, 0.0043005067855119705, 0.018832549452781677, 0.0011199660366401076, 9.67486557783559e-05, 0.00960378535091877, -0.009489648975431919, -0.018033593893051147, -0.0013726971810683608, -0.013386600650846958, -0.012449049390852451, 0.01912604458630085, 0.025745971128344536, 0.013916520401835442, -0.010247842408716679, -0.003108185948804021, -0.014829614199697971, 0.0034363288432359695, -0.0002733675064519048, 0.0074596465565264225, 0.0011444238480180502, 0.007533019874244928, -0.009106475859880447, 0.017104195430874825, 0.03355618193745613, -0.02365890145301819, 0.0124245909973979, 0.006579163484275341, 0.008018100634217262, -0.006795207969844341, -0.004871190059930086, -0.012644711881875992, -0.008821133524179459, 0.02095223031938076, -0.016729174181818962, -0.015775317326188087, -4.5571865484816954e-05, 0.004757053218781948, 0.022175123915076256, 0.01961520127952099, 0.005698680877685547, -0.021082673221826553, -9.967850928660482e-05, 0.01651720702648163, 0.002276618964970112, 0.01928909681737423, 0.02277841791510582, -0.012000654824078083, -0.016370458528399467, 0.01023153681308031, 0.012375676073133945, -0.00545410206541419, 0.022436007857322693, -0.0010995845077559352, -0.013223548419773579, 0.012620254419744015, -0.011038646101951599, 0.01301158033311367, -0.0026577538810670376, 0.03040926903486252, 0.002580303931608796, -0.015139413997530937, -0.004708137363195419, -0.011976197361946106, 0.015612265095114708, 0.0013462011702358723, 0.01353334728628397, -0.010329368524253368, -0.014837766997516155, -0.0023071912582963705, 0.003022583434358239, 0.01705527864396572, 0.011560413986444473, 0.006937878672033548, 0.024245889857411385, -0.0012269691796973348, -0.010223384015262127, -0.008617318235337734, -0.006236753426492214, -0.008225992321968079, -0.01282406970858574, 0.005588620435446501, -0.00025846349308267236, -0.007325128186494112, -0.016509054228663445, -0.025680750608444214, 0.003179521532729268, 0.008592860773205757, 0.003171368734911084, 0.0038786085788160563, 0.007109083700925112, 0.01566118188202381, -0.009938042610883713, -0.01879994012415409, 0.014544272795319557, -0.0024641291238367558, -0.005335889291018248, -0.0124245909973979, 0.0132887689396739, -0.006094082724303007, 0.0032834673766046762, -0.0044798641465604305, 0.012220775708556175, 0.003460786771029234, 0.021539218723773956, 0.0002365533437114209, -0.03450188413262367, -0.018359698355197906, -0.011454429477453232, 0.0067177582532167435, -0.016223711892962456, -0.02555030770599842, -0.0017935761716216803, -0.00662807933986187, 0.01826186664402485, -0.011250614188611507, -0.0035402749199420214, 0.008592860773205757, 0.003220284590497613, -0.006228601094335318, 0.008837439119815826, -0.016590580344200134, -0.010965272784233093, 0.006632155738770962, 0.007386272773146629, -0.009342901408672333, -0.012489812448620796, -0.005873961839824915, 0.011699008755385876, 0.01824556104838848, -0.005099463276565075, -0.002784119453281164, -0.01269362773746252, -0.009726074524223804, 0.009261375293135643, 0.01173977181315422, -0.02007174864411354, 0.00015540930326096714, 0.008009947836399078, 0.0061226170510053635, -0.006244906224310398, -0.013704552315175533, -0.0015082345344126225, -0.028909187763929367, 0.020283715799450874, -0.004135415889322758, -0.022811027243733406, -0.021685967221856117, -0.01266101747751236, 0.014633950777351856, 0.004585848189890385, -0.0025517698377370834, 0.01122615672647953, 0.010573946870863438, 0.000966594903729856, -0.010622862726449966, 0.009774990379810333, 0.021359862759709358, -0.0023459161166101694, 0.012783306650817394, -0.018685802817344666, -0.00335480272769928, -0.014976360835134983, -0.013492584228515625, -0.005083158146589994, -0.027409104630351067, -0.008967881090939045, 0.015848690643906593, 0.010370131582021713, -0.027800431475043297, -1.2213005902594887e-05, 0.0027515089605003595, -0.0023540686815977097, -0.007590088527649641, 0.007052015513181686, -0.0023561068810522556, -0.008234145119786263, -0.017430299893021584, 0.006782979238778353, -0.006375348195433617, -0.0038949137087911367, 0.0019138273783028126, 0.0006629098206758499, 0.004251590929925442, -0.01499266643077135, -0.003935676999390125, -0.03236589953303337, -0.008617318235337734, -0.0036829456221312284, 0.008666234090924263, -0.004536932334303856, -0.01138920895755291, 0.020838094875216484, 0.000510303012561053, -0.018995601683855057, -0.010133705101907253, 0.010965272784233093, 0.0011658244766294956, -0.006888963282108307, -0.017511826008558273, 0.007867277599871159, -0.008380892686545849, 0.02905593439936638, -0.006281592883169651, -0.017413994297385216, 0.012506118044257164, 0.019256485626101494, 0.010027721524238586, -0.0025639988016337156, -0.0077531407587230206, -0.004740748088806868, -0.014911140315234661, 0.004512474872171879, 0.0044798641465604305, 0.01582423411309719, -0.004944563377648592, 0.009677158668637276, 0.009473343379795551, -0.010223384015262127, 0.005507094319909811, 0.010940814390778542, 0.01809881441295147, 0.029626617208123207, -0.027425410225987434, 0.011935434304177761, -0.0026434867177158594, -0.014780698344111443, -0.017870541661977768, -0.017674878239631653, -0.0013207242591306567, 0.024017615243792534, -0.02698516845703125, 0.002178787486627698, 0.020381547510623932, -0.016093270853161812, -0.00844611320644617, -0.018865160644054413, -0.0018190530827268958, 0.01234306488186121, -0.01337029505521059, 0.0012157593155279756, -0.012008807621896267, 0.00960378535091877, -0.017642267048358917, 0.018539056181907654, 0.02031632699072361, 0.027914566919207573, 0.04164357855916023, -0.017821624875068665, 0.001885293168015778, 0.004899723920971155, 0.019941305741667747, -0.004259743262082338, -0.008283060975372791, -0.005796512123197317, 0.029300512745976448, 0.025419866666197777, -0.00952225923538208, -0.016223711892962456, -0.024066532030701637, -0.02134355716407299, -0.024816572666168213, -0.0011485002469271421, -0.005144302733242512, -0.012987121939659119, 0.03179521486163139, -0.005698680877685547, -0.0013818689621984959, -0.021865325048565865, 0.00971792172640562, -0.024408942088484764, -0.011372903361916542, 0.029708143323659897, 0.021164199337363243, 0.028583083301782608, 0.014389372430741787, -0.014902987517416477, -0.007541172672063112, -0.006876734085381031, 0.009424427524209023, 0.02444155141711235, 0.016264475882053375, 0.016778090968728065, -0.01855536177754402, -0.0026068000588566065, -0.01602804847061634, -0.0018995602149516344, 0.014430135488510132, 0.016843311488628387, 0.006522095296531916, 0.0005204937770031393, 0.018212951719760895, -0.021213114261627197, 0.019810864701867104, 0.016606885939836502, 0.008601013571023941, 0.0040335082449018955, 0.009302138350903988, -0.027360189706087112, 0.0036910981871187687, -4.171848195255734e-05, -0.002138024428859353, -0.004455406218767166, -0.014813308604061604, -0.0016488671535626054, 0.012351217679679394, 0.007912117056548595, 0.006359043065458536, 0.011715313419699669, -0.01158487144857645, -0.011992502957582474, 0.01584053970873356, 0.003026659833267331, 0.0027596615254878998, 0.006791131570935249, 0.0012188164982944727, 0.008878202177584171, 0.012310454621911049, -0.0017069546738639474, 0.007887658663094044, -0.0025497316382825375, -0.0032956963405013084, 0.012514269910752773, -9.81498887995258e-05, 0.0154002970084548, -0.0128566799685359, 0.004161912016570568, -0.010296758264303207, -0.010060331784188747, 0.002665906446054578, 0.013109411112964153, 0.013402905315160751, -0.008083322085440159, 0.015791622921824455, -0.019713032990694046, -0.021213114261627197, -0.002513044746592641, 0.0114707350730896, 0.005596772767603397, 0.01744660548865795, -0.003473015734925866, 0.017316162586212158, -0.010141857899725437, 0.010720694437623024, 0.013517042621970177, -0.018995601683855057, -0.0013186861760914326, 0.01512310840189457, -0.005421491805464029, 0.013492584228515625, 0.005441873334348202, -0.012432743795216084, -0.008221915923058987, -0.00024840011610649526, -0.01087559387087822, 0.003933638799935579, -0.015481824055314064, -0.004488016944378614, -0.008254527114331722, 0.021865325048565865, -0.007031633984297514, 0.013843147084116936, 0.011356598697602749, 0.023300185799598694, -0.0016580389346927404, 0.01904451847076416, -0.01715311035513878, 0.023838257417082787, 0.0040681567043066025, -0.00027515090187080204, -0.01637861132621765, -0.005172836594283581, -0.006069624796509743, -0.007202839013189077, 0.00523805757984519, -0.00287583633325994, -0.0018975221319124103, -0.009342901408672333, 0.008633623830974102, -0.014813308604061604, -0.012204471044242382, -0.006705529056489468, 0.0240339208394289, 0.014299693517386913, 0.0043005067855119705, -0.016403069719672203, 0.010859288275241852, -0.002513044746592641, -0.004585848189890385, -0.015049735084176064, -0.021930545568466187, -0.005808740854263306, -0.022321870550513268, -0.007064244244247675, -0.0007846895605325699, 0.01209848653525114, -0.024963319301605225, 0.0009849382331594825, -0.0065995450131595135, 0.0033466501627117395, 0.011829450726509094, 0.009546716697514057, 0.02095223031938076, -0.02080548368394375, -0.011878365650773048, -0.0060003274120390415, -0.008124085143208504, 0.009163543581962585, 0.016036201268434525, 0.00900864414870739, -0.0006308088777586818, 0.0014603378949686885, -0.014136641286313534, 0.00801402423530817, -0.023870868608355522, -0.023137133568525314, 0.011796839535236359, -0.023903479799628258, 0.0007469837437383831, 0.004667374305427074, -0.020691346377134323, -0.014030657708644867, 0.0025578842032700777, -0.012563185766339302, -0.00035311031388118863, 0.023544764146208763, 0.008136313408613205, 0.00952225923538208, -0.006318280007690191, 0.008943422697484493, -0.017397688701748848, 0.0016998210921883583, 0.00817707646638155, -0.006138922180980444, -0.007178381085395813, 0.01142181921750307, -0.01959889568388462, 0.005217676050961018, 0.024783961474895477, -0.004072233103215694, -0.0025089685805141926, -0.013150174170732498, -0.009750531986355782, -0.0006073701079003513, -0.022501228377223015, 0.01715311035513878, 0.0021482151933014393, -0.01889777183532715, 0.023137133568525314, -0.01588130183517933, 0.022582754492759705, -0.006012556608766317, 0.009269528090953827, 0.009563022293150425, -0.009383664466440678, 0.0014582996955141425, 0.0021706349216401577, 0.006852276157587767, -0.017805319279432297, 0.02220773510634899, -0.004748900420963764, 0.013720857910811901, -0.04268711432814598, -0.00968531146645546, -0.014421982690691948, 0.008287137374281883, 0.009889126755297184, -0.005898419767618179, 0.027735210955142975, -0.014674714766442776, -0.0022480846382677555, 0.006228601094335318, -0.004227133002132177, -0.014267083257436752, 0.012889291159808636, -0.01425077859312296, 0.0005839313380420208, 0.008625471033155918, -0.010313062928617, -0.016680259257555008, -0.020528294146060944, -0.013998046517372131, -0.005278820637613535, -0.007064244244247675, 0.003990706987679005, 0.01404696237295866, 3.49352449120488e-05, 0.012538728304207325, -0.005470407195389271, -0.0032121320255100727, 0.004210827872157097, -0.02903962880373001, 0.005719062406569719, -0.013280616141855717, -0.03714333102107048, 0.026773201301693916, -0.00735773891210556, -0.01826186664402485, -0.018115120008587837, -0.004394261632114649, -0.0032916199415922165, 0.011160935275256634, 0.009383664466440678, 0.016492748633027077, 0.008976033888757229, 0.006558781955391169, 0.014495356939733028, 0.007374044042080641, -0.011193545535206795, 0.00045450852485373616, 0.00355250365100801, -0.01801728829741478, -0.0009248127462342381, -0.008568402379751205, -0.007280288729816675, -0.012106639333069324, -0.026724284514784813, -0.011364750564098358, 0.009938042610883713, -0.01736507937312126, -0.032105013728141785, -0.0040375846438109875, -0.023283880203962326, 0.0144464410841465, 0.00028381304582580924, 0.010679931379854679, -0.0013146097771823406, 0.004801892675459385, 0.008894507773220539, 0.008649928495287895, 0.009929889813065529, -0.012237081304192543, 0.0046266112476587296, -0.017185721546411514, 0.018930381163954735, 0.011935434304177761, -0.03913257271051407, -0.016011744737625122, -0.007484104484319687, 0.009815753437578678, 0.004602153319865465, 0.00336295529268682, -0.01754443533718586, 0.012228928506374359, 0.012799612246453762, 0.0007046920363791287, 0.015343229286372662, 0.002042231149971485, -0.014112183824181557, -0.027898263186216354, -0.0023010766599327326, -0.011185393668711185, 0.005144302733242512, -0.004178217146545649, 0.0180825088173151, 0.007630851585417986, 0.012269691564142704, 0.03024621680378914, 0.0024661673232913017, 0.03375184163451195, -0.014307846315205097, -0.015457365661859512, 0.0011535956291481853, 0.01606881245970726, -0.0025008157826960087, 0.008878202177584171, 0.018310781568288803, -0.0025110067799687386, -0.005217676050961018, -0.012709933333098888, -0.003369069891050458, -0.03182782605290413, 5.321494609233923e-05, -5.3310486691771075e-05, 0.010883746668696404, -0.019419537857174873, 0.016533510759472847, -0.01567748561501503, -0.007174304686486721, 0.03469754755496979, -0.0034342908766120672, -0.003668678691610694, -0.0013574110344052315, 0.016036201268434525, 0.006183761637657881, -0.006354966666549444, -0.0361650176346302, 0.01723463647067547, 0.018702108412981033, 0.0030062783043831587, 0.021082673221826553, 0.025990549474954605, 0.006432416383177042, 0.014152946881949902, -0.018865160644054413, -0.014030657708644867, 0.0002039428654825315, 0.015995439141988754, -0.011193545535206795, 0.03228437155485153, 0.011160935275256634, -0.025370949879288673, 0.01360672153532505, -0.005609001964330673, 0.01736507937312126, 0.024979624897241592, 0.001134233083575964, -0.007586012128740549, -0.006513942498713732, -0.00025400504819117486, -0.02579488605260849, 0.0029145614244043827, 0.006799284368753433, -0.0011026416905224323, -0.007170228287577629, 0.015098650939762592, 0.008380892686545849, 0.010590252466499805, 0.0016804586630314589, 0.017316162586212158, 0.012049570679664612, 0.02189793437719345, 0.005303278565406799, -0.0058209700509905815, 0.014894834719598293, -0.009196154773235321, 0.016085118055343628, 0.009832059033215046, 0.007802056614309549, 0.016443831846117973, 0.0013105334946885705, 0.00456139026209712, 0.01352519541978836, 0.012840375304222107, -0.01480515580624342, -0.012277844361960888, -0.020756568759679794, 0.0007260926067829132, 0.008254527114331722, 0.024017615243792534, 0.016810700297355652, 4.8820176743902266e-05, -0.004826350603252649, 0.005397033877670765, -0.024800267070531845, 0.014315999113023281, 0.011046798899769783, 0.007708301302045584, -0.002327572787180543, -0.021050062030553818, -0.004163950216025114, -0.00809555035084486, -0.01428338885307312, 0.006770750042051077, 0.003271238412708044, -0.0020564980804920197, -0.004549161531031132, -0.00366052589379251, -0.0016254284419119358, -0.017740098759531975, 0.0034404052421450615, 0.0036910981871187687, 0.005682375282049179, 0.024099141359329224, 0.010606557130813599, -0.009163543581962585, 0.0036870220210403204, -0.020251106470823288, -0.004952716175466776, -0.03538236767053604, 0.017479214817285538, -0.006505790166556835, -0.023691510781645775, 0.004049813374876976, -0.017821624875068665, 0.0020605744794011116, 0.003067422891035676, 0.0010200964752584696, -0.007227296940982342, 0.009742380119860172, 0.008380892686545849, 0.009082017466425896, -0.01643568091094494, 0.002529350109398365, 0.00015910345246084034, 5.38837157364469e-05, 0.01736507937312126, 0.0010781838791444898, 0.004202675074338913, 0.008951575495302677, -0.015294313430786133, 0.010614709928631783, -0.006852276157587767, -0.04092614725232124, -0.006872657686471939, -0.003519893391057849, 0.003933638799935579, 0.0028045009821653366, -0.01643568091094494, -0.002244008472189307, 0.011478887870907784, 0.012726237997412682, -0.00624898262321949, 0.016794394701719284, 0.030523406341671944, -0.008099626749753952, -0.0017395650502294302, 0.017870541661977768, -0.0001942616218002513, -0.029757060110569, 0.005890267435461283, 0.0004537442000582814, 0.006681071128696203, -0.010101094841957092, 0.0001607594604138285, 0.014862224459648132, -0.005103539675474167, 0.0025639988016337156, 0.001047611585818231, 0.0013614874333143234, -0.012954511679708958, 0.00045119650894775987, -0.001928094425238669, 0.0123349130153656, 0.002934942953288555, 0.0089271180331707, -0.018767328932881355, -0.006350890267640352, 0.014764392748475075, -0.0040008979849517345, -0.01912604458630085, 0.0004415152652654797, -0.01055764127522707, -0.014633950777351856, -0.016696562990546227, -0.0021482151933014393, 0.01266101747751236, -0.014764392748475075, 0.003126529511064291, 0.00868253968656063, 0.02706669457256794, -0.0002189742517657578, -0.0064161112532019615, 0.0020758607424795628, 0.022158818319439888, 0.020202189683914185, -0.023071911185979843, 0.020446768030524254, 0.007333280984312296, 0.0013156288769096136, -0.008543944917619228, -0.010940814390778542, 0.013402905315160751, -0.004610306117683649, -0.006575087085366249, -0.01046796329319477, -0.02427849918603897, 0.0015754936030134559, 0.012734390795230865, -0.011258766986429691, 0.00545410206541419, 0.0029410573188215494, -0.004088538233190775, 0.0015072154346853495, -0.020283715799450874, -0.0012646750546991825, 0.01523724477738142, -0.002184901852160692, 0.013125716708600521, -0.006954184267669916, -0.012750696390867233, 0.008348281495273113, 0.054883431643247604, 0.014813308604061604, 0.010166316293179989, -0.020251106470823288, 0.0071661523543298244, -0.031126700341701508, -0.0005824027466587722, 0.0032528950832784176, -0.011576718650758266, 0.01376977376639843, -0.0034832064993679523, -0.012685474939644337, 0.009481496177613735, 0.027506936341524124, -0.01992500014603138, 0.003931600600481033, 0.00995434820652008, 0.002036116551607847, -0.01707158423960209, 0.010207079350948334, 0.013541500084102154, 0.00523805757984519, -0.003903066273778677, -0.012131096795201302, -0.0007281308062374592, -0.0035830761771649122, 0.003110224148258567, -0.0018883503507822752, 0.015098650939762592, 0.02101745270192623, 0.01563672348856926, 0.004308659117668867, -0.041937071830034256, 0.013158326968550682, 0.021849019452929497, 0.01857166551053524, 0.012033266015350819, 0.01098973024636507, 0.005327736493200064, -0.004357574973255396, -0.009897279553115368, 0.002188978251069784, 0.0059677171520888805, 0.0011617481941357255, -0.033849675208330154, -0.0025334262754768133, 0.02158813551068306, 0.0011648054933175445, -0.018832549452781677, 0.02586010843515396, 0.006338661536574364, -0.005189142189919949, -0.03197457268834114, 0.000645075982902199, -0.00497717410326004, -0.0017721755430102348, 0.008189305663108826, -0.010166316293179989, -0.007590088527649641, 0.01320724282413721, -0.012603948824107647, -0.011128325015306473, 0.0017905189888551831, 0.022419702261686325, -0.020968535915017128, 0.02895810268819332, -0.00816892459988594, -0.00119028240442276, -0.0013543538516387343, 0.013150174170732498, 0.004740748088806868, -0.0008356434409506619, 0.011169088073074818, -0.024001309648156166, -0.002690364373847842, -0.035675860941410065, -0.029952721670269966, -0.006085929926484823, 0.002733165631070733, -0.020593516528606415, -0.01713680475950241, 0.015253550373017788, 0.027735210955142975, -0.006774826440960169, -0.006371271796524525, -0.023756731301546097, 0.0032263989560306072, 0.002515082946047187, 0.01959889568388462, -0.011381056159734726, 0.0008366625406779349, -0.004308659117668867, -0.004989402834326029, 0.031469110399484634, 0.004308659117668867, -0.0007102969102561474, -0.008254527114331722, -0.0050790817476809025, 0.0005041885306127369, -0.009383664466440678, 0.005462254863232374, 0.028289588168263435, -0.0015112917171791196, 0.0011739771580323577, -0.005364423152059317, -0.01567748561501503, -0.023381711915135384, -0.020446768030524254, -0.0073088230565190315, 0.004402414429932833, 0.002323496388271451, 0.010981577448546886, 0.010288605466485023, 0.007594164460897446, -0.003511740593239665, 0.01380238402634859, 0.033621400594711304, 0.027523241937160492, -0.0024967396166175604, -0.005013860762119293, -0.003925486002117395, -0.010141857899725437, 0.01928909681737423, -0.005123921204358339, -0.011519650928676128, 0.010761457495391369, 0.003811349393799901, 0.003328306833282113, -0.00884559191763401, 0.011038646101951599, -0.004259743262082338, -0.004667374305427074, -0.01982717029750347, 0.022794723510742188, 0.010606557130813599, 0.010940814390778542, -0.003758357372134924, -0.0020075824577361345, 0.004810045473277569, 0.0011209851363673806, -0.03420839086174965, 0.04196968302130699, 0.014413830824196339, 0.006432416383177042, 0.0006175608723424375, 0.007740912027657032, -0.014136641286313534, 0.010916356928646564, 0.021392472088336945, 0.004728518892079592, 0.007215067744255066, -0.013655637390911579, -0.014495356939733028, 0.006244906224310398, -0.01682700589299202, 0.026169907301664352, -0.015979133546352386, 0.026365570724010468, -0.028224367648363113, 0.01003587432205677, 0.010606557130813599, 0.007174304686486721, 0.010076637379825115, -0.0007857086602598429, 0.017593352124094963, 0.0015479784924536943, -0.013900215737521648, 0.013655637390911579, -0.014022504910826683, -0.004206751473248005, -0.0065954686142504215, -0.003968287259340286, -0.0019545904360711575, -0.00446355901658535, 0.0023561068810522556, 0.006191913969814777, -0.0021706349216401577, 0.002718898467719555, -0.00844611320644617, -0.003014430869370699, -0.002822844311594963, 0.023381711915135384, 0.01697375252842903, -0.009538563899695873, -0.015049735084176064, 0.011788686737418175, -0.030490795150399208, 0.014421982690691948, -0.014234472997486591, 0.0006032938254065812, -0.0033914896193891764, 0.008462418802082539, -0.019158653914928436, 0.002623105188831687, -0.015057887881994247, 0.022028377279639244, -0.004622534848749638, -0.024539383128285408, -0.04213273525238037, 0.0017487368313595653, 0.009000491350889206, 0.0064201876521110535, 0.0037359376437962055, 0.011120172217488289], "6763610a-3b1b-4443-a79a-56b39abf7aac": [-0.024301668629050255, -0.008394470438361168, -0.002953477203845978, 0.011663367040455341, -0.005967887584120035, -0.00731917517259717, 0.01784989796578884, 0.02293962799012661, 0.005204427987337112, 0.056976303458213806, -0.02562069706618786, 0.0045771729201078415, -0.009584463201463223, 0.001119202934205532, -0.02506154403090477, 0.028932606801390648, -0.017692187801003456, 0.012509265914559364, 0.0048459963873028755, -0.03770701214671135, 0.0615355521440506, -0.0238285381346941, -0.029075978323817253, 0.014631181955337524, 0.013634741306304932, 0.0026362650096416473, -0.025448650121688843, 0.009641812182962894, 0.013376670889556408, -0.007476884871721268, 0.032488249242305756, 0.025749731808900833, -0.0007016300223767757, 0.018609773367643356, 0.004849580582231283, -0.030308984220027924, 0.004681117832660675, -0.03225885331630707, -0.019226275384426117, -0.013226129114627838, -0.00934789888560772, 0.025419974699616432, 0.023728178814053535, 0.0031739126425236464, -0.04851731285452843, -0.01752014085650444, 0.011928606778383255, 0.0008777095936238766, -0.009591631591320038, 0.03438076749444008, -0.005480420775711536, -0.02025855891406536, 0.031570661813020706, 0.007086194586008787, 0.008423144929111004, -0.01299673318862915, 0.04470359906554222, 0.05732039734721184, -0.019570371136069298, -0.06308397650718689, -0.008165073581039906, -0.019470009952783585, -0.0021237076725810766, -0.026337560266256332, 0.02629454806447029, 0.016760265454649925, 0.04450288042426109, 0.012774505652487278, -0.02149156481027603, 0.015943041071295738, 0.010487711057066917, 0.009111333638429642, -0.04458890110254288, 0.03266029432415962, 0.0009883753955364227, 0.018193991854786873, 0.011140056885778904, 0.007706281263381243, 0.0208893995732069, 0.011433971114456654, 0.00634065642952919, 0.0010717107215896249, 0.04771442711353302, 0.016817614436149597, 0.055112455040216446, 0.03658870607614517, 0.006512703839689493, -0.04129133000969887, -0.013484200462698936, -0.008236760273575783, -0.0003393900115042925, 0.02563503384590149, -0.008609529584646225, 0.021993368864059448, 0.016659904271364212, -0.007799473591148853, -0.010373013094067574, -0.002553825732320547, 0.007433873135596514, -0.01686062663793564, 0.0004520719812717289, 0.009132839739322662, 0.005333463661372662, 0.0032151322811841965, -0.02443070337176323, -0.02144855260848999, 0.03664605692028999, 0.010028918273746967, -0.029534772038459778, 0.000304442917695269, -0.007498390972614288, -0.039341460913419724, 0.022495172917842865, 0.006096923258155584, -0.05726304650306702, -0.018882181495428085, -0.034323420375585556, 0.0007007339736446738, -0.018939530476927757, -0.03406534716486931, 0.0180649571120739, -0.02807237021625042, -0.03644533455371857, -0.02172096073627472, -0.024215644225478172, -0.00846615619957447, 0.0332624614238739, 0.0476570762693882, 0.005265361629426479, 0.0001919849746627733, 0.005982224829494953, 0.026036478579044342, 0.03346318379044533, -0.004150638822466135, 0.028516825288534164, 0.0035861090291291475, 0.022466497495770454, 0.04057446867227554, -0.009785185568034649, 0.0087385643273592, -0.03896869346499443, -0.012760167941451073, -0.029448747634887695, 0.04209421947598457, 0.006548547185957432, -0.023427095264196396, 0.003143445821478963, 0.05987242981791496, -0.030739102512598038, 0.017419779673218727, -0.07162898778915405, -0.04590792953968048, -0.018308691680431366, 0.0196420568972826, 0.034610163420438766, -0.026997074484825134, 0.011419633403420448, 0.009555788710713387, -0.01809363253414631, 0.012158002704381943, -0.003356712870299816, -0.02236613817512989, 0.005451745819300413, 0.033061739057302475, 0.029061641544103622, -0.01840905100107193, 0.04616600275039673, 0.009111333638429642, -0.030968498438596725, 0.01251643430441618, 0.004100458696484566, 0.0013665207661688328, 0.015627622604370117, 0.0189825426787138, -0.06899093091487885, 0.02078903838992119, 0.007469716481864452, 0.04866068810224533, 0.020100848749279976, 0.0008992155198939145, -0.024961182847619057, 0.007340680807828903, 0.01871013455092907, -0.015484249219298363, 0.017606165260076523, 0.016745928674936295, 0.032803669571876526, 0.01389281265437603, 0.01968506909906864, 0.0007056624162942171, 0.00012925942428410053, -0.03225885331630707, -0.016057739034295082, -0.024617088958621025, 0.012423242442309856, -0.003408685326576233, -0.013584560714662075, 0.01251643430441618, -0.012007461860775948, 0.006691919639706612, 0.017032673582434654, -0.03463883697986603, 0.002672108355909586, 0.023097338154911995, -0.013606066815555096, 0.04292577877640724, -0.004254584200680256, -0.051528140902519226, 0.012839023023843765, -0.04326987266540527, 0.04676816612482071, -0.029993563890457153, -0.022437823936343193, -0.004537745378911495, 0.0025287356693297625, 0.005745660047978163, -0.010487711057066917, 0.016774602234363556, -0.010666927322745323, 0.02117614448070526, 0.0005779711063951254, 0.03779303655028343, -0.011304935440421104, -0.031283918768167496, 0.004035940859466791, -0.030997171998023987, -0.02959212101995945, 0.004842412192374468, 0.014315761625766754, 0.002078903838992119, -0.013276309706270695, -0.006311981938779354, 0.010079098865389824, -0.01630147360265255, -0.04587925598025322, 0.03937013819813728, 0.07506993412971497, -0.01810796931385994, -0.005552107002586126, 0.016803277656435966, -0.0026810690760612488, 0.02146288938820362, -0.015828343108296394, -0.024014923721551895, 0.03205813094973564, 0.01602906547486782, -0.021047109737992287, 0.04685419052839279, 0.014566663652658463, 0.026681654155254364, -0.02110445871949196, -0.0012258363422006369, 0.006100507453083992, 0.010824637487530708, -0.02653828263282776, 0.017763875424861908, 0.03859592601656914, -0.020731689408421516, 0.016129426658153534, -0.008860431611537933, -0.00746254762634635, 0.019971814006567, -0.03710484877228737, 0.07185838371515274, 0.03896869346499443, -0.010100604966282845, 0.0244163665920496, -0.011742222122848034, 0.006469692103564739, 0.03982893005013466, 0.015455574728548527, 0.0031864577904343605, -0.008236760273575783, -0.0038280505686998367, 0.018667122349143028, 0.01463835034519434, 0.012265532277524471, 0.04349926859140396, 0.021964693441987038, -0.0026810690760612488, -0.03317643702030182, -0.02837345190346241, 0.023470107465982437, 0.0065521313808858395, 0.02685370296239853, 0.000423397432314232, -0.015269190073013306, -0.037620991468429565, -0.015039794147014618, -0.009283380582928658, -0.005570028442889452, 0.026523945853114128, 0.0305097047239542, 0.014867746271193027, -0.008559348993003368, 0.015211841091513634, 0.005469667725265026, 0.011799571104347706, 0.004125548992305994, 0.024072272703051567, -0.004656027536839247, -0.030939823016524315, -0.023025652393698692, -0.016229787841439247, 0.013627572916448116, 0.008107724599540234, 0.03779303655028343, 0.01660255528986454, 0.004494733177125454, 0.05525583028793335, 0.07466848939657211, -0.014796060509979725, -0.014810397289693356, -0.008215254172682762, 0.004458890296518803, 0.013391007669270039, -0.027943335473537445, 0.004254584200680256, -0.0020161783322691917, -0.027341170236468315, -0.007225982844829559, -0.00021102666505612433, -0.06767190247774124, 0.05092597380280495, 0.06159290298819542, -0.00787116028368473, -7.448658288922161e-05, -0.02144855260848999, -0.01625846140086651, -0.005114820320159197, -0.014301424846053123, -0.03558509796857834, -0.00534780090674758, 0.03945615887641907, 0.009304886683821678, 0.014853409491479397, -0.04355661943554878, -0.0319434329867363, 0.04587925598025322, 0.011269092559814453, -0.011692041531205177, -0.03134126588702202, 0.05344933271408081, -0.004114795941859484, -0.004068199545145035, -0.010509217157959938, 0.006620233412832022, 0.02510455623269081, -0.02266721986234188, 0.014150883071124554, 0.0008485870203003287, -0.030079588294029236, 0.03234487399458885, -0.0014991405187174678, -0.005810177884995937, 0.005021627992391586, -0.03991495445370674, 0.0006550339167006314, 0.005254608578979969, 0.026093827560544014, 0.005025212187319994, 0.0017751329578459263, -0.016387496143579483, 0.019570371136069298, -0.013168780133128166, 0.02509021759033203, -0.009168682619929314, -0.021649274975061417, -0.017935922369360924, -0.024531064555048943, -0.011942943558096886, 0.025577684864401817, -0.017262069508433342, 0.024043597280979156, -0.01191426906734705, -0.023039989173412323, 0.024043597280979156, 0.021018434315919876, 0.01686062663793564, 0.01311859954148531, 0.0016317602712661028, -0.019986150786280632, -0.020416269078850746, 0.040316395461559296, 0.046338047832250595, -0.025735395029187202, 0.02838779054582119, -0.04384336620569229, -0.01235155574977398, 0.01299673318862915, -0.010824637487530708, -0.004204403609037399, -0.027255145832896233, -0.026409247890114784, 0.016086414456367493, -0.0244880523532629, 0.024531064555048943, -0.02956344559788704, 0.005283283069729805, -0.010179460048675537, 0.006734931375831366, -0.05554257333278656, 0.026208525523543358, -0.005397981498390436, 0.0070539359003305435, -0.02778562530875206, -0.034581489861011505, 0.00801453273743391, 0.004526992328464985, 0.020014826208353043, -0.007021676748991013, 0.0026541866827756166, 0.03871062397956848, 0.051442116498947144, 0.02864586003124714, -0.0238285381346941, -0.02871754765510559, 0.03919808939099312, -0.011240418069064617, -0.006243879906833172, -0.00013530795695260167, 0.019197601824998856, -0.006211621221154928, 0.04438818246126175, -0.010946503840386868, 0.020330244675278664, 0.030567053705453873, -0.01690363883972168, -0.03266029432415962, 0.0014444796834141016, 0.012638301588594913, 0.028316102921962738, -0.00903247855603695, 0.004448137246072292, -0.0014534405199810863, 0.0028674534987658262, -0.0003512630646582693, -0.021792646497488022, 0.03830917924642563, 0.0029301790054887533, -0.02930537424981594, -0.022867942228913307, -0.0003107154625467956, 0.04929152503609657, -0.07312006503343582, -0.016817614436149597, -0.005010874941945076, 0.00995006412267685, 0.02028723433613777, -0.04923417791724205, 0.014724373817443848, -0.001805599662475288, -0.018824832513928413, -0.04868936166167259, -0.012050473131239414, -0.017692187801003456, -0.016717253252863884, 0.026165513321757317, 0.02445937879383564, -0.07117019593715668, 0.017133034765720367, -0.0062653860077261925, 0.02322637289762497, 0.000825288996566087, 0.0008579958812333643, -0.02506154403090477, -0.01777821220457554, -0.010824637487530708, 0.006702672690153122, 0.010487711057066917, -0.016086414456367493, -0.012903541326522827, 0.008093387819826603, 0.03567112237215042, 0.020373256877064705, -0.005602287128567696, -0.0035771483089774847, 0.009928558021783829, 0.0029713986441493034, -0.02749887853860855, 0.040889889001846313, -0.005380059592425823, 0.02233746275305748, -0.03891134262084961, 0.02470311149954796, 0.01719038374722004, -0.02233746275305748, -0.007426704745739698, 0.0459652803838253, -0.011950112879276276, 0.00535855395719409, -0.014437628909945488, 0.013591730035841465, -0.005889032501727343, -0.003992929123342037, -0.02933404967188835, 0.017577489838004112, -0.022251440212130547, 0.000692221219651401, -0.009928558021783829, 0.023326734080910683, -0.028158392757177353, 0.0008893586345948279, -0.0196420568972826, -0.030968498438596725, 0.04705491289496422, -0.0005546730244532228, 0.04748503118753433, 0.017075685784220695, -0.025176241993904114, -0.0070790257304906845, 0.016717253252863884, -0.013254803605377674, 0.011634692549705505, 0.02018687315285206, 0.02834477834403515, -0.022194091230630875, -0.007613088935613632, 0.024617088958621025, -0.009534282609820366, -0.02025855891406536, -0.03615858778357506, -0.04739900678396225, -0.024875158444046974, -0.004204403609037399, -0.024903833866119385, -0.004989369306713343, -0.02593611739575863, 0.025448650121688843, -0.03168535977602005, 0.005111236125230789, 0.020975422114133835, -0.020129524171352386, 0.004487564787268639, 0.026351897045969963, -0.001532295485958457, 0.011541500687599182, -0.00298035959713161, 0.005924875847995281, 0.005906954407691956, -0.03380727767944336, 0.02298264019191265, 0.0023979078978300095, -0.01465268712490797, -0.008315615355968475, 0.019756754860281944, -0.002553825732320547, -0.008645372465252876, -0.02686803974211216, 0.009369404055178165, -0.038481228053569794, 0.03541305288672447, -0.025520335882902145, -8.092715870589018e-05, -0.008387301117181778, -0.039943628013134, -0.01208631694316864, -0.03231620043516159, -0.04192217066884041, 0.0001612942578503862, -0.020143860951066017, 0.02715478464961052, 0.017735200002789497, -0.011677704751491547, 0.035527750849723816, 0.01162752415984869, -0.011620355769991875, 0.03922676295042038, -0.021936019882559776, 0.025276603177189827, 0.005688311066478491, 0.0004225013544782996, 0.04114795848727226, 0.016989661380648613, -0.00048746709944680333, 0.050839949399232864, 0.00573849119246006, -0.02775694988667965, -0.03931278735399246, -0.03177138417959213, 0.03300439193844795, 0.012939384207129478, -0.00489976117387414, 0.010222472250461578, -0.009584463201463223, 0.020602652803063393, -0.03644533455371857, -0.012889203615486622, -0.021362528204917908, -0.03251692280173302, 0.003921242896467447, 0.03234487399458885, -0.02748454175889492, 0.02501853182911873, -0.04068916663527489, -0.002406868850812316, 0.012193846516311169, 0.0319434329867363, -0.00786399096250534, 0.012803180143237114, 0.02050229348242283, 0.0016496818279847503, 0.01285336073487997, 0.030337657779455185, -0.022566858679056168, 0.030939823016524315, 0.028316102921962738, 0.01634448580443859, 0.017663514241576195, -0.009319224394857883, -0.02169228531420231, -0.012136496603488922, 0.029362723231315613, 0.003331622574478388, -0.003749195486307144, 0.010337170213460922, 0.005455330479890108, 0.010838974267244339, -0.011656198650598526, -0.01235155574977398, 0.025190578773617744, -0.025462986901402473, 0.01752014085650444, 0.002394323702901602, 0.01206481084227562, 0.005387228447943926, -0.013770945370197296, 0.024516727775335312, 0.0030179948080331087, -0.0003470066876616329, -0.03251692280173302, 0.03271764516830444, 0.019240614026784897, 0.003129108576104045, -0.016158100217580795, -0.00846615619957447, 0.021993368864059448, -0.026695992797613144, -0.004906930029392242, -0.019842779263854027, -0.0024731785524636507, 0.0019570370204746723, -0.007286916486918926, 0.05003706365823746, 0.0008261850452981889, -0.0068102022632956505, 0.016115088015794754, -0.0125379404053092, 0.027355507016181946, 0.0073227593675255775, -0.010100604966282845, 0.013484200462698936, 0.012416074052453041, -4.8248264647554606e-05, 0.0007881016936153173, -0.02262420766055584, -0.015068468637764454, 0.004247415345162153, 0.0033280381467193365, 0.024932509288191795, 0.04266770929098129, -0.004688286688178778, 0.00041040428914129734, 0.014079196378588676, 0.01376377698034048, -0.011519994586706161, 0.01465985644608736, -0.012315712869167328, 0.012910709716379642, 0.005846020765602589, -0.0036990151274949312, -0.014502146281301975, 0.015441237017512321, 0.008967961184680462, -0.015412562526762486, -0.003478579455986619, 0.0025018532760441303, -0.006301229353994131, 0.008208085782825947, -0.012602458707988262, 0.010774456895887852, -0.039083391427993774, -0.04292577877640724, 0.004584341309964657, -0.01756315305829048, -0.006487613543868065, -0.03937013819813728, -0.014244075864553452, -0.016674242913722992, 0.01114722527563572, -0.024660101160407066, 0.02111879549920559, 0.008172242902219296, 0.041836146265268326, 0.02229445055127144, -0.010939335450530052, 0.006720594130456448, -0.03954218327999115, 0.029764167964458466, -0.05256042256951332, -0.033950649201869965, -0.01719038374722004, -0.000944467494264245, -0.011634692549705505, -0.0038531406316906214, 0.012430410832166672, -0.011455477215349674, 0.0054338243789970875, -0.002043060725554824, 0.011598849669098854, 0.022151079028844833, 0.009878377430140972, -0.005910538602620363, 0.0032706891652196646, -0.016072077676653862, 0.019699405878782272, -0.00010836958244908601, 0.045735884457826614, -0.007491222117096186, 0.05293319374322891, 0.03045235574245453, 0.015297864563763142, -0.017405442893505096, -0.012057642452418804, -0.030968498438596725, -0.008380132727324963, -0.010365844704210758, -0.014853409491479397, 0.038137130439281464, 0.0017921584658324718, 0.009763679467141628, -0.008824587799608707, -0.00934789888560772, 0.012466254644095898, -0.005623793229460716, -0.02116180770099163, 0.013477031141519547, -0.0039893449284136295, 0.013570223934948444, 0.011534331366419792, 0.023140350356698036, -0.013104262761771679, -0.0012867697514593601, -0.04172144830226898, -0.013147274032235146, -0.011713547632098198, 0.033635228872299194, 0.03168535977602005, -0.033692579716444016, -0.0428110808134079, 0.03736291825771332, -0.028903931379318237, 0.007104116026312113, -0.018552424386143684, 0.004770725965499878, 0.020645665004849434, 0.027699600905179977, 0.01210065372288227, -0.004523408133536577, 0.031570661813020706, -0.013498537242412567, 0.033033065497875214, 0.0038280505686998367, -0.01044469978660345, -0.0009471557568758726, -0.006688335444778204, -0.002496476750820875, 0.03816580772399902, -0.0011935775401070714, 0.026179850101470947, 0.01687496341764927, 0.013405345380306244, 0.012215351685881615, 0.01693231239914894, -0.029090316966176033, -0.002575331600382924, 0.01569930836558342, -0.012903541326522827, -0.023470107465982437, -0.008846093900501728, -0.010702770203351974, -0.020989760756492615, 0.01574232056736946, 0.0015726190758869052, 0.010251146741211414, -0.03750629350543022, 0.0028638693038374186, -0.01376377698034048, -0.0007939261849969625, -0.010172291658818722, 0.01131210383027792, -0.012150834314525127, 0.022552521899342537, 0.005021627992391586, -0.01463835034519434, -0.026681654155254364, 0.006139934994280338, 0.00995006412267685, 0.010473374277353287, -0.007534234318882227, 0.037276897579431534, -0.002093241084367037, 0.024014923721551895, 0.02956344559788704, 0.03529835119843483, -0.029205014929175377, -0.018007608130574226, -0.015469911508262157, -0.03019428625702858, -0.004007266368716955, -0.002103994134813547, 0.005268945824354887, -0.018237004056572914, 0.052044279873371124, -0.022839266806840897, -0.012122159823775291, -0.006648907903581858, 0.010251146741211414, 0.014602507464587688, -0.026423584669828415, -0.010573734529316425, 0.003709767945110798, 0.010215302929282188, -0.003421230474486947, 0.006451770663261414, 0.029964888468384743, 0.028201404958963394, 0.017706526443362236, -0.006867551244795322, -0.011269092559814453, -0.03498293459415436, -0.002181056886911392, -0.032488249242305756, 0.011835413984954357, -0.006068248301744461, 0.0027240808121860027, 0.01568497158586979, 0.016774602234363556, -0.009104165248572826, 0.009706330485641956, -0.036359310150146484, -0.035785820335149765, -0.002500060945749283, -0.01164903026074171, -0.026509607210755348, -0.008724227547645569, 0.027283821254968643, -0.011261924169957638, 0.04129133000969887, 0.06635287404060364, -0.006329903844743967, -0.015211841091513634, 0.026509607210755348, 0.012258363887667656, -0.019455671310424805, 0.016129426658153534, 0.007570077199488878, 0.02263854630291462, -0.01961338147521019, 0.01961338147521019, 0.02660996839404106, 0.007792304735630751, -0.012222521007061005, -0.018323028460144997, -0.04470359906554222, 0.006960743572562933, 0.01842338964343071, -0.0023405589163303375, -0.01390714943408966, 0.00475638872012496, -0.0042725056409835815, 0.010251146741211414, 0.023943236097693443, 0.04673949256539345, -0.01719038374722004, 0.02901862934231758, -0.002188225509598851, 0.008329952135682106, 0.010788793675601482, -0.010351506993174553, -0.008860431611537933, 0.024258656427264214, -0.010745782405138016, 0.032746318727731705, 0.012982395477592945, -0.010351506993174553, -0.001217771670781076, -0.00059454859001562, -0.02410094626247883, 0.019426997750997543, 0.0012545109493657947, 0.02174963429570198, 0.019871452823281288, 0.011061201803386211, -0.01432293001562357, 0.04378601536154747, -0.007000171113759279, -0.0012885619653388858, -0.00475638872012496, -0.02562069706618786, 0.017276408150792122, -0.020344583317637444, -0.04587925598025322, -0.013391007669270039, 0.0441301092505455, -0.059929776936769485, -0.003170328214764595, -0.012466254644095898, 0.013942993246018887, -0.022423487156629562, -0.006756437476724386, 0.019728079438209534, -0.019211938604712486, -0.014122208580374718, 0.026423584669828415, -0.0034463207703083754, -0.003939164336770773, -0.0024462963920086622, -0.00018593644199427217, -0.017305081710219383, -0.02263854630291462, 0.00919735711067915, 0.029993563890457153, 0.005121988710016012, -0.0045305765233933926, -0.002182848984375596, -0.029118990525603294, -0.007154296617954969, -0.02117614448070526, 0.033663906157016754, 0.012021798640489578, -0.007985858246684074, -0.030939823016524315, -0.017907246947288513, 0.05233102664351463, -0.027083098888397217, -0.023140350356698036, 0.0009641812648624182, -0.025462986901402473, -0.023627817630767822, -0.005684726405888796, 0.002211523475125432, 0.036101240664720535, -0.003163159592077136, 0.013684921897947788, -0.022839266806840897, 0.018495075404644012, 0.012451916933059692, -0.016416171565651894, -0.016745928674936295, 0.02689671330153942, 0.0033065322786569595, 0.012179508805274963, -0.007842485792934895, -0.012050473131239414, 0.0048890081234276295, 0.000350142945535481, 0.007294084876775742, -0.01432293001562357, 0.0011649030493572354, 0.00215417449362576, 0.019140252843499184, -0.011383790522813797, 0.004182897973805666, 0.0180649571120739, 0.005172169301658869, -0.016831953078508377, 0.0017733407439664006, -0.00934072956442833, -0.02326938509941101, -0.01511147990822792, 0.004634521901607513, 0.0193122997879982, 0.0238285381346941, 0.015125817619264126, -0.01627279818058014, -0.01810796931385994, -0.013756608590483665, -0.03624461218714714, -0.016559544950723648, 0.017104361206293106, -0.027713937684893608, 0.01071710791438818, -0.034323420375585556, 0.002842363202944398, -0.020616991445422173, -0.021348191425204277, 0.02021554671227932, -0.023670827969908714, -0.007265410386025906, 0.0199001282453537, 0.0029481006786227226, 0.014810397289693356, -0.003491124603897333, -0.009584463201463223, -0.02476046048104763, 0.004849580582231283, -0.005566444247961044, 0.008057544007897377, -0.04685419052839279, 0.012487759813666344, -0.008415976539254189, -0.053277287632226944, 0.03592919185757637, 0.0508112758398056, 0.03905471786856651, 0.014710037037730217, -0.0024462963920086622, -0.0035484738182276487, -0.008810251019895077, -0.006311981938779354, 0.0016254876973107457, -0.014839071780443192, -0.01070993859320879, -0.007756461855024099, 0.03661738336086273, 0.009577294811606407, -0.04610865190625191, 0.029176339507102966, 0.035212330520153046, -0.0006380084087140858, 0.0037886230275034904, 0.003724105190485716, 0.0007858614553697407, -0.02324071153998375, 0.01658821851015091, 0.011842583306133747, 0.0132906474173069, 0.008337121456861496, -0.004566419869661331, -0.03053838014602661, -0.008215254172682762, -0.004584341309964657, -0.01511147990822792, 0.01251643430441618, -0.01628713682293892, -0.015125817619264126, -0.06629552692174911, -0.0062797232531011105, -0.025290939956903458, 0.026394909247756004, 0.01191426906734705, -0.025821419432759285, 0.010502048768103123, -0.012473423033952713, -0.03985760360956192, -0.007634595036506653, 0.005010874941945076, -0.024330344051122665, 0.010215302929282188, 0.0040753684006631374, -0.0012213559821248055, 0.006917731836438179, -0.0042868428863584995, -0.014351604506373405, -0.013541549444198608, 0.022165415808558464, -0.0015717229107394814, 0.016516532748937607, 0.02018687315285206, -0.0026255121920257807, -0.019254950806498528, 0.034524139016866684, -0.011376622132956982, 0.0008060232503339648, -0.015183166600763798, -0.036072567105293274, -0.010064762085676193, 0.016473520547151566, 0.004742051474750042, 0.0057062325067818165, 0.0014946601586416364, 0.00042899794061668217, -0.009534282609820366, 0.007921339944005013, 0.01962772011756897, -0.021018434315919876, -0.004283258691430092, 0.010867648757994175, -0.03162801265716553, 0.003315493231639266, -0.012874865904450417, -0.0034821638837456703, -0.01691797561943531, -0.037305571138858795, 0.009290548972785473, -0.012114991433918476, -0.009899883531033993, -0.0065091196447610855, -0.03713352233171463, -0.01816531829535961, -0.0048782555386424065, -0.001120098982937634, 0.0013512874720618129, -0.01968506909906864, -0.03114054538309574, -0.0030179948080331087, -0.002147005870938301, 0.0012052265228703618, 0.02745586819946766, -0.0038495564367622137, -0.022251440212130547, 0.000685500621329993, 0.03045235574245453, 0.0307677760720253, 0.021348191425204277, 0.010430362075567245, 0.004476811736822128, 0.003720520995557308, -0.01252360362559557, 0.0035359286703169346, 0.009283380582928658, 0.0020090097095817327, 0.012150834314525127, 0.013376670889556408, 0.03770701214671135, 0.009104165248572826, -0.035154979676008224, 0.005530600901693106, 0.008502000011503696, -0.0026326808147132397, -0.028473813086748123, -0.019713742658495903, -0.005315541755408049, -0.009369404055178165, 0.0014041560934856534, 0.0008588919299654663, 0.026782015338540077, 0.013813957571983337, 0.04619467630982399, -0.000678331998642534, -0.005871111061424017, 0.03174271062016487, -0.027298158034682274, -0.004455306101590395, -0.01779254898428917, -0.01314010564237833, 0.010867648757994175, -0.02268155664205551, 0.004078952595591545, -0.0205596424639225, -0.0038603092543780804, -0.00558436568826437, 0.010394519194960594, -0.01025831513106823, 0.006347825285047293, 0.00936223566532135, 0.004340607672929764, -0.026767678558826447, -0.020616991445422173, 0.007813811302185059, -0.006627401802688837, -0.009125670418143272, 0.008315615355968475, 0.010064762085676193, -0.010200966149568558, 0.023126013576984406, -0.004193650558590889, 0.016201112419366837, -0.011369452811777592, -0.03472486138343811, 0.006107675842940807, -0.017907246947288513, 0.0005403357790783048, -0.0009901674930006266, 0.017405442893505096, 0.02390022575855255, -0.019441334530711174, 0.007734955754131079, 0.004638106096535921, 0.008709889836609364, -0.007143543567508459, 0.002729457337409258, 0.010903491638600826, 0.003084304742515087, 0.018466399982571602, -0.02987886592745781, 0.018323028460144997, 0.006107675842940807, -0.01465985644608736, -0.005333463661372662, -0.008344289846718311, 0.002776053501293063, 0.00498220045119524, -0.02655261941254139, 0.013175948522984982, -0.009778016246855259, 0.007362186908721924, 0.0033119088038802147, 0.04889008402824402, 0.003745611058548093, -0.01207914762198925, -0.02539130114018917, -0.017419779673218727, 0.011548669077455997, -0.0034947090316563845, -2.8926557206432335e-05, -0.008064713329076767, 0.026050815358757973, 0.03506895527243614, 0.0017948467284440994, 0.019097240641713142, 0.025491662323474884, -0.013297815807163715, -0.022552521899342537, 0.007892665453255177, 0.0026506022550165653, -0.006724178325384855, -0.024229982867836952, -0.0073370966129004955, -0.021964693441987038, -0.008688383735716343, -0.04106193408370018, 0.01664556749165058, -0.01164903026074171, 0.017591826617717743, -0.007641763426363468, -0.00241941399872303, -0.0020735273137688637, -0.009978738613426685, 0.01628713682293892, -0.01073144469410181, 0.012752999551594257, -0.0013127560960128903, 0.0014955562073737383, -0.027914660051465034, 0.01086048036813736, 0.021950356662273407, 0.022409148514270782, -0.011390958912670612, -0.024287331849336624, 0.017663514241576195, 0.022710232064127922, 0.02930537424981594, 0.024229982867836952, -0.04134868085384369, -0.005451745819300413, -0.017362430691719055, 0.012330050580203533, 0.014150883071124554, 0.024975519627332687, 0.0008544115698896348, 0.016459183767437935, -0.011842583306133747, 0.019756754860281944, 0.010487711057066917, -0.028473813086748123, 0.01690363883972168, -0.008028869517147541, 0.0004500557843130082, 0.010480542667210102, 0.025821419432759285, -0.010451868176460266, -0.0193122997879982, -0.026982737705111504, -0.01316161174327135, 0.0011227872455492616, 0.02962079457938671, -0.010200966149568558, 0.027083098888397217, -0.021806983277201653, 0.01876748353242874, 0.040345072746276855, 0.020774701610207558, -0.044560227543115616, -0.00847332552075386, -0.016215449199080467, -0.008200917392969131, 0.021849995478987694, -0.0014812189619988203, -0.013735102489590645, 0.0016613309271633625, -0.007971520535647869, 0.006770774722099304, -0.011211743578314781, 0.018595436587929726, 0.003218716476112604, -0.004448137246072292, -0.01285336073487997, -0.010666927322745323, -0.011297767050564289, 0.0020036331843584776, 0.013011069968342781, -0.02811538241803646, 0.0054481616243720055, 0.005272530019283295, 0.019398322328925133, -0.012609627097845078, 0.007175802253186703, -0.005967887584120035, 0.013469862751662731, -0.01281034853309393, -0.0018584682838991284, -0.009355067275464535, -0.004598678555339575, 0.0034929169341921806, 0.0015358797973021865, -0.01283185463398695, -0.006430264562368393, 0.016760265454649925, -0.046710819005966187, 0.012982395477592945, 0.004254584200680256, 0.002161343116313219, 0.008989466354250908, 0.004007266368716955, 0.0010743989842012525, -0.016817614436149597, 0.010294158011674881, -0.007433873135596514, 0.004799400456249714, 0.0023172609508037567, 0.02808670699596405, 0.00936223566532135, -0.033348485827445984, 0.00938374176621437, 0.008975129574537277, -0.013950161635875702, -0.0038029602728784084, -0.02326938509941101, -0.008939286693930626, 0.009233199991285801, 1.7151516829017055e-07, 0.011032527312636375, -0.004358529578894377, 0.0073084221221506596, 0.0024319589138031006, -0.01782122440636158, 0.023097338154911995, -0.0031882498878985643, -0.008007364347577095, 0.03019428625702858, -0.0046309372410178185, -0.012559446506202221, -0.008659709244966507, 0.009620307013392448, 0.0014086365699768066, 0.02901862934231758, -0.02626587450504303, -0.03633063659071922, -0.015197503380477428, -0.026452258229255676, -0.00021774724882561713, -1.5527373761869967e-05, -0.012781674042344093, 0.016817614436149597, -0.00015121337492018938, -0.009706330485641956, 0.018337365239858627, -0.01901121623814106, -0.039341460913419724, 0.00566680496558547, 0.018480738624930382, 0.008989466354250908, -0.021548913791775703, -0.01557027269154787, -0.025219254195690155, 0.03472486138343811, -0.009140008129179478, 0.03271764516830444, -0.0040610311552882195, -0.04278240725398064, -0.010946503840386868, -0.008401638828217983, -0.003044877201318741, 0.006215205416083336, 0.014910758472979069, -0.028015021234750748, 0.030997171998023987, 0.02139120362699032, -0.013828294351696968, -0.009591631591320038, 0.014308593235909939, 0.012279869988560677, 0.014939432963728905, -0.01750580407679081, 0.0008544115698896348, 0.020344583317637444, 0.02209373004734516, 0.011398128233850002, -0.01432293001562357, -0.0032348460517823696, -0.0057205697521567345, 0.008358626626431942, 0.02149156481027603, 0.03025163523852825, -0.015828343108296394, 0.023154687136411667, -0.010380181483924389, -0.012143665924668312, 0.0018109760712832212, -0.009140008129179478, 0.020014826208353043, 0.010688433423638344, 0.005172169301658869, -0.03412269800901413, -0.03134126588702202, -0.006602311972528696, -0.004978616256266832, -0.005939213093370199, 0.009641812182962894, -0.02871754765510559, 0.0027599239256232977, 0.0021165390498936176, 0.004089705646038055, 0.015312202274799347, -0.021577587351202965, 0.013025407679378986, 0.0013898188481107354, -0.004458890296518803, 0.0035215914249420166, -0.019699405878782272, 0.012193846516311169, 0.004939188715070486, 0.007820979692041874, -0.001203434425406158, -0.017061349004507065, 0.01478172279894352, -0.032803669571876526, 0.006512703839689493, -0.00024462962755933404, -0.026968400925397873, -0.015183166600763798, -0.011964449658989906, -0.0026631474029272795, 0.011491320095956326, 0.002842363202944398, -0.02964947000145912, -0.023183362558484077, 0.01991446502506733, 0.01538388803601265, 0.025161905214190483, -0.014882083982229233, -0.012107822112739086, 0.012752999551594257, -0.033663906157016754, -0.0048173218965530396, 0.03254559636116028, -0.008523505181074142, -0.007892665453255177, 0.03584316745400429, -0.015613284893333912, 0.01688930206000805, 0.01552726048976183, 0.02567804604768753, -0.0018271055305376649, -0.046710819005966187, -0.03406534716486931, 0.01162752415984869, -0.016115088015794754, 0.003820881713181734, -0.035154979676008224, 0.024961182847619057, -0.030710427090525627, 0.01869579777121544, -0.005333463661372662, -0.0009812067728489637, -0.015183166600763798, -0.016244124621152878, -0.01374227087944746, -0.021018434315919876, -0.01569930836558342, 0.003953501582145691, -0.009620307013392448, -0.0009659734205342829, 7.650276529602706e-05, -0.016688579693436623, 0.001042140182107687, 0.007122037932276726, 0.013154443353414536, 0.01357739232480526, 0.027541890740394592, -0.03288969025015831, -0.0013557678321376443, -0.019771091639995575, -0.019484346732497215, -0.02321203611791134, -0.02412962168455124, -0.011763728223741055, -0.013168780133128166, -0.01478172279894352, -0.008681215345859528, 0.011018190532922745, 0.01552726048976183, -0.020158197730779648, -0.005996562074869871, 0.020946748554706573, 0.012279869988560677, -0.022710232064127922, -0.002609382616356015, 0.002659563207998872, -0.0015591778792440891, -0.007505559828132391, -0.017921583727002144, 0.00038576210499741137, 0.0010484126396477222, 0.009534282609820366, 0.012143665924668312, 0.03475353494286537, -0.013319321908056736, 0.005770750343799591, -0.01567063294351101, -0.0029086731374263763, 0.014839071780443192, -0.024961182847619057, -0.014939432963728905, -0.0048890081234276295, 0.01750580407679081, 0.0181366428732872, 0.020158197730779648, -0.016530869528651237, 0.010416025295853615, -0.01631581038236618, -0.01104686502367258, -0.009204525500535965, -0.0019946724642068148, 0.01899687945842743, 0.006695503834635019, -0.007957183755934238, 0.015756657347083092, 0.014186725951731205, 0.016659904271364212, -0.015082805417478085, 0.03349185734987259, -0.006122013088315725, 0.005297620315104723, 0.04378601536154747, 0.010028918273746967, 0.026337560266256332, -0.02232312597334385, 0.0027258729096502066, -0.0022617040667682886, -0.030337657779455185, 0.011018190532922745, -0.010638252831995487, -0.006591558922082186, 0.011577343568205833, -0.002560994355008006, -0.01664556749165058, -0.026208525523543358, -0.00016241436242125928, 0.021993368864059448, -0.014609675854444504, 0.0029086731374263763, 0.01991446502506733, 0.011347947642207146, -0.0015072053065523505, -0.015455574728548527, -0.002783222123980522, -0.022538185119628906, -0.002854908350855112, -0.009233199991285801, -0.004871086683124304, 0.009993075393140316, -0.012910709716379642, -0.0008494831272400916, 0.0011810323921963573, -0.012874865904450417, 0.004362113773822784, 0.01207914762198925, -0.010286989621818066, 0.010817468166351318, 0.008043207228183746, -0.007251073140650988, -0.01691797561943531, -0.014910758472979069, 0.0029068810399621725, 0.01071710791438818, -0.006602311972528696, 0.018337365239858627, 0.010602409020066261, 0.03899736702442169, 0.0131257688626647, 0.0056918952614068985, 0.0005112132057547569, -0.015398225747048855, -0.004914098419249058, 0.0029588534962385893, 0.0018297937931492925, -0.020602652803063393, 0.0038531406316906214, 0.01660255528986454, 0.030022239312529564, -0.022867942228913307, 0.00013620404934044927, -0.028889594599604607, 0.006107675842940807, -0.013928655534982681, -0.01962772011756897, 0.002686445601284504, 0.03320511057972908, -0.006720594130456448, 0.006892641540616751, -0.02326938509941101, 0.021663611754775047, 0.008401638828217983, -0.02964947000145912, 0.012953720986843109, 0.020473618060350418, 0.02749887853860855, 0.0013288854388520122, 0.006623817607760429, -0.004340607672929764, -0.0025878767482936382, 0.0013002109481021762, 0.008050375618040562, 0.004229493904858828, 0.022710232064127922, -0.006598727311939001, 0.0059499661438167095, 0.010724276304244995, -0.004677533637732267, -0.0018871428910642862, -0.02025855891406536, -0.030079588294029236, -0.008437481708824635, 0.00016868692182470113, 0.013075588271021843, -0.01627279818058014, 0.010071930475533009, 0.002399700228124857, 0.013878474943339825, -0.0026326808147132397, -0.0038101288955658674, 0.028746221214532852, 0.02480347268283367, -0.006835292559117079, -0.01509714312851429, 0.004053862299770117, 0.003143445821478963, 0.005842436570674181, -0.03661738336086273, -0.02139120362699032, -0.005638130474835634, 0.0004623768909368664, 0.01720472052693367, 0.03896869346499443, 0.009570126421749592, 0.005329879466444254, -0.0020376842003315687, -0.012645469978451729, -0.018925193697214127, -0.002107578329741955, 0.020731689408421516, -0.015512923710048199, -0.003129108576104045, 0.015226177871227264, -0.02054530382156372, -0.01069560181349516, -0.009175851009786129, 0.010229640640318394, 0.009570126421749592, 0.011276260949671268, 0.010702770203351974, 0.016530869528651237, -0.03145596385002136, -0.017276408150792122, 0.002799351466819644, 0.018910856917500496, 0.019971814006567, 0.012136496603488922, -0.013046913780272007, -0.012602458707988262, -0.005853189621120691, 0.011670535430312157, -0.02141987718641758, 0.028201404958963394, 0.011720716021955013, 0.027240809053182602, -0.031197894364595413, 0.007448210380971432, -0.011369452811777592, -0.01175655983388424, -0.01995747722685337, -0.008767238818109035, -0.00846615619957447, 0.0199001282453537, -0.007498390972614288, -0.010975178331136703, -0.011347947642207146, 0.0015081013552844524, -0.009190188720822334, -0.00039158662548288703, 0.00815790519118309, 0.01193577516824007, 0.008415976539254189, 0.014064859598875046, -0.005003706552088261, 0.003356712870299816, -0.004727714229375124, -0.005824515130370855, -0.00799302663654089, 0.013312152586877346, -0.0073980302549898624, -0.010286989621818066, 0.012330050580203533, -0.01434443611651659, -0.008917780593037605, 0.021520238369703293, -6.630986172240227e-05, 0.007028845604509115, -0.017749536782503128, -0.0056775580160319805, 0.0020968252792954445, -0.004448137246072292, -0.0037671171594411135, 0.01447347179055214, 0.005605871789157391, -0.01326914131641388, -0.002742002485319972, -0.017161710187792778, 0.012674144469201565, 0.011713547632098198, 0.006982249207794666, -0.008967961184680462, 0.0014023639960214496, 0.005695479456335306, -0.0018369624158367515, 0.005010874941945076, 0.008724227547645569, 0.0016335524851456285, 0.005294036120176315, 0.014710037037730217, 0.021262167021632195, 0.02147722616791725, 0.006444601807743311, -0.0025018532760441303, 0.03346318379044533, 3.346295852679759e-05, -0.03650268167257309, -0.005939213093370199, -0.003785038599744439, 0.027656588703393936, -0.024301668629050255, -0.012437579222023487, 0.0009982322808355093, 0.008193748071789742, -0.002793974941596389, -0.018867844715714455, 0.0238285381346941, -0.008838925510644913, -0.0001498692436143756, 0.014358773827552795, 0.02111879549920559, -0.011075539514422417, 0.004351360723376274, -0.0002856252540368587, -0.0022706647869199514, 0.007957183755934238, 0.013649079017341137, 0.013555886223912239, -0.00422590970993042, -0.006473276298493147, 0.021520238369703293, 0.013677753508090973, -0.028617186471819878, -0.00846615619957447, 0.009749341756105423, -0.019412660971283913, 0.008093387819826603, -0.019814103841781616, 0.016387496143579483, 0.007028845604509115, 0.011978787370026112, -0.0028907516971230507, 0.002534111961722374, 0.016659904271364212, -0.012466254644095898, -0.0010833598207682371, 0.0089034428820014, -0.0054481616243720055, -0.002371025737375021, -0.011799571104347706, 0.027040086686611176, -0.0025986297987401485, 0.002525151241570711, -0.010989516042172909, -0.0003234845935367048, 0.013684921897947788, 0.025448650121688843, 0.0033137009013444185, 0.015011119656264782, 0.0029588534962385893, -0.004433800000697374, 0.015799669548869133, 0.005616624373942614, -0.015555934980511665, -0.025204917415976524, -0.008021701127290726, -0.0020054252818226814, -0.00874573364853859, -0.0004843308124691248, -0.02714044786989689, -0.030997171998023987, 0.014796060509979725, 0.013383839279413223, -0.026366235688328743, 0.00028719339752569795, 0.030280308797955513, 0.006369330920279026, 0.04610865190625191, -0.0009982322808355093, 0.0029839437920600176, -0.0027025749441236258, -0.017118697986006737, 0.01720472052693367, -0.022781917825341225, -0.009111333638429642, 0.004057446960359812, 0.02018687315285206, 0.02172096073627472, -0.0013208207674324512, 0.005598702933639288, -0.012724325060844421, -0.01478172279894352, 0.022466497495770454, 0.0009623891091905534, 0.009763679467141628, 0.03108319640159607, -0.019168926402926445, 0.02110445871949196, -0.017419779673218727, 0.0002656875003594905, 0.003392555983737111, -0.0007356810383498669, 0.0021864334121346474, 0.015039794147014618, 0.002896127989515662, 0.009140008129179478, -0.0030054496601223946, 0.009462596848607063, -2.7232408683630638e-05, -0.0015986053040251136, -0.006383668631315231, 0.0065377941355109215, 0.015168828889727592, 0.010000243782997131, 0.014086365699768066, -0.01193577516824007, 5.082449206383899e-05, 0.010322832502424717, -0.013692090287804604, -0.006587974261492491, 0.022194091230630875, 0.010172291658818722, -0.007512728217989206, -0.006014483980834484, 0.0014722581254318357, -0.013641910627484322, 0.006297644693404436, -0.005544938147068024, 0.02450239099562168, -0.008989466354250908, 0.009598800912499428, 0.004570004064589739, 0.026939725503325462, -0.02296830341219902, 0.0042760903015732765, -0.004337023478001356, -0.03171403706073761, 0.00027823259006254375, 0.015312202274799347, -0.024645762518048286, -0.02024422213435173, -0.006200868170708418, -0.004516239278018475, -0.018810495734214783, 0.006527041085064411, -0.01417955756187439, 0.006484029348939657, 0.00046775335795246065, 0.0006272554746828973, 0.014380278997123241, -0.011197405867278576, 0.008573685772716999, -0.0190542284399271, 0.013563055545091629, 0.01746279187500477, -0.010838974267244339, -0.0036703404039144516, 0.016702916473150253, 0.017333757132291794, -0.028903931379318237, 0.009813860058784485, 0.005401565693318844, -0.02269589528441429, 0.012000293470919132, 0.007265410386025906, -0.0036058227997273207, -0.0073836930096149445, 0.015641959384083748, -0.01131210383027792, -0.009304886683821678, 0.004932019859552383, 0.009405247867107391, -0.02295396476984024, 0.0016389288939535618, 0.003385387361049652, 0.004440968856215477, 0.014839071780443192, -0.020645665004849434, -0.002247366588562727, 0.007426704745739698, 0.0008750213892199099, -0.020444944500923157, 0.020616991445422173, -0.00543024018406868, 0.027398519217967987, -0.01752014085650444, -0.0006106779910624027, -0.005154247861355543, -0.016387496143579483, -0.001406844356097281, -0.010480542667210102, -0.003380010835826397, 0.00687113543972373, 0.007010923698544502, 0.012401736341416836, -0.003274273592978716, 0.0003960670146625489, -0.005021627992391586, 0.022108066827058792, -0.025520335882902145, 0.00748405372723937, -0.006946406327188015, -0.014767386019229889, 0.006430264562368393, -0.011620355769991875, -0.0005394396721385419, 0.008846093900501728, 0.0034051011316478252, 0.021290842443704605, 0.015039794147014618, -0.0065091196447610855, 0.013197454623878002, 0.006190115120261908, 0.00011604226165218279, -0.0034749952610582113, -0.0056918952614068985, 0.016244124621152878, -0.024258656427264214, 0.0073980302549898624, -0.006849629804491997, 0.01341251377016306, -0.030997171998023987, -0.015326539054512978, 0.0028674534987658262, 0.00010232104978058487, -0.009233199991285801, 0.0070646884851157665, -0.04547781124711037, -0.0016819407464936376, -0.022839266806840897, -0.005613040179014206, -0.007283331826329231, 0.0046058474108576775, -0.024000586941838264, -0.0023154686205089092, -0.004641690291464329, 0.007233151700347662, 0.009498439729213715, -0.012917878106236458, 0.024387693032622337, 0.005172169301658869, -0.016100751236081123, -0.020358920097351074, 0.023642154410481453, -0.005243855528533459, 0.025319615378975868, 0.012803180143237114, -0.004132717382162809, -0.013104262761771679, -0.02870320901274681, -0.0002645673812367022, -0.027842974290251732, -0.0039893449284136295, 0.012380230240523815, -0.009907051920890808, -0.015168828889727592, 0.020416269078850746, 0.00034387040068395436, -0.011878426186740398, 0.013398176990449429, -0.007243904285132885, 0.0031309009063988924, 0.021792646497488022, 0.019513022154569626, -0.02562069706618786, 0.013405345380306244, -0.0024247902911156416, -0.0005358553607948124, 0.010681264102458954, 0.018781820312142372, -0.008516336791217327, -0.01868145912885666, -0.02354179322719574, 0.0149250952526927, -0.009247537702322006, 0.02530527673661709, 0.0004807465011253953, 0.00784965418279171, 0.006892641540616751, -0.018968205899000168, 0.006623817607760429, 0.01420106366276741, 0.019383985549211502, -0.0004811945545952767, 0.005480420775711536, 0.010989516042172909, -0.0009919597068801522, -0.014767386019229889, 0.0009892714442685246, -0.018337365239858627, -0.009828196838498116, -0.0021362528204917908, 0.007742124609649181, -0.017749536782503128, -0.002765300450846553, 0.009039646945893764, -0.0026326808147132397, 0.017763875424861908, 0.0051900907419621944, -0.02109012007713318, -0.011534331366419792, -0.006695503834635019, -0.01359889842569828, 0.020731689408421516, 0.010788793675601482, 0.00878157652914524, 0.014796060509979725, 0.00037456111749634147, -0.001980334986001253, 0.012480591423809528, 0.027412855997681618, -0.001721368171274662, 0.005458914674818516, 0.007129206322133541, 0.006161440629512072, -0.0018423389410600066, 0.016559544950723648, 0.007376524154096842, -0.02628021128475666, 0.006093338597565889, -0.013254803605377674, -0.0001708150957711041, 0.02149156481027603, -0.010595240630209446, -0.02473178692162037, -0.013254803605377674, 0.013828294351696968, -0.00362374447286129, 0.0007011819980107248, -0.01752014085650444, -0.0048925927840173244, -0.01723339594900608, -0.018538087606430054, 0.024645762518048286, -0.0010484126396477222, -0.006623817607760429, 0.029706818982958794, -0.0049176826141774654, -0.004455306101590395, -0.007265410386025906, 0.014896420761942863, 0.016158100217580795, 0.01961338147521019, 0.018968205899000168, 0.005265361629426479, -0.004494733177125454, 0.01601472869515419, 0.022595534101128578, 0.020000487565994263, 0.03220150247216225, -0.0020215546246618032, -0.00070700648939237, -0.007756461855024099, -0.0017383936792612076, 0.00031653998303227127, -0.014451965689659119, 0.01569930836558342, -0.015140154398977757, 0.010193797759711742, -0.010265483520925045, -0.0031792891677469015, -0.008795913308858871, 0.01686062663793564, -0.010451868176460266, 0.004179313313215971, -0.003154198871925473, 0.03896869346499443, 0.0036219521425664425, -0.00934789888560772, 0.0015618661418557167, 0.014867746271193027, -0.017391106113791466, 0.03650268167257309, -0.011785234324634075, 0.00617577787488699, 0.004440968856215477, 0.024746123701334, 0.0029498927760869265, -0.0038782309275120497, -0.00888910610228777, -0.007835316471755505, 0.016072077676653862, -0.0028925437945872545, -0.0008651645039208233, 0.024215644225478172, 0.009591631591320038, 0.05170018598437309, 0.022495172917842865, -0.005899785552173853, 0.0020233469549566507, 0.0005743867950513959, 0.0031380695290863514, -0.005613040179014206, 0.0019086487591266632, -0.001678356435149908, -0.004415878560394049, 0.017405442893505096, 0.010817468166351318, 0.0051757534965872765, 0.003197210608050227, 0.0073550185188651085, -0.010014581494033337, -0.008989466354250908, -0.0196420568972826, -0.01633014716207981, -0.009319224394857883, -0.001538568059913814, 0.00830844696611166, -0.011763728223741055, -0.007641763426363468, -0.0010242185089737177, 0.005000121891498566, 0.00934789888560772, 0.01628713682293892, -0.0244880523532629, -0.019556032493710518, 0.00282802595756948, -0.007706281263381243, 0.01100385282188654, 0.0009614930022507906, -0.009605969302356243, -0.016373159363865852, 0.008681215345859528, -0.004498317837715149, -0.012466254644095898, 0.02655261941254139, 0.003643458243459463, -0.010143617168068886, 0.017663514241576195, 0.0026541866827756166, 0.022179752588272095, -0.006025236565619707, 0.025462986901402473, -0.015326539054512978, -0.00527611467987299, -0.029448747634887695, -0.004942772909998894, 0.020315907895565033, -0.007613088935613632, 0.014853409491479397, -0.009476933628320694, -0.013986004516482353, 0.005559275392442942, -0.017090022563934326, 0.007899834774434566, 0.02685370296239853, -0.005168585106730461, 0.009914220310747623, -0.008122062310576439, 0.027068762108683586, -0.01131210383027792, 0.013082756660878658, -0.008329952135682106, 0.005566444247961044, 0.0018020153511315584, -8.579958375776187e-05, 0.014416122809052467, 0.0006402485887520015, -0.01871013455092907, -0.00035663953167386353, 0.017147371545433998, -0.0152548523619771, -0.013276309706270695, -0.009039646945893764, 0.003638081718236208, -0.00036336012999527156, -0.018581097945570946, -0.0007522585219703615, -0.006390837021172047, -0.003043085103854537, -0.00762742618098855, 0.024316005408763885, 0.002141629345715046, -0.005562860053032637, -0.008236760273575783, 0.0059643033891916275, -0.017864234745502472, 0.015900030732154846, 9.201613283948973e-05, -0.030739102512598038, -0.022753244265913963, -0.010100604966282845, 0.003421230474486947, -0.002768884878605604, -0.003957085777074099, 0.023670827969908714, 0.01119023747742176, 0.00446247449144721, 0.0062367115169763565, -0.0008028869633562863, 0.0032205088064074516, -0.005261777434498072, 0.00670625688508153, 0.006433848757296801, -0.020731689408421516, -0.010014581494033337, 0.01116873137652874, -0.006433848757296801, -0.021276505663990974, 0.017978932708501816, -0.001077983295544982, 0.004570004064589739, -0.006967911962419748, -0.009663318283855915, 0.0020000487565994263, 0.007200892549008131, -0.007290500681847334, -0.012767337262630463, 0.02200770564377308, -0.023126013576984406, -0.005777918733656406, 0.009878377430140972, 0.031599339097738266, -0.021563250571489334, -0.024086609482765198, 0.016373159363865852, -0.024215644225478172, 0.02924802526831627, 0.009147176519036293, -0.024330344051122665, -0.0305097047239542, -0.005344216711819172, 0.013462694361805916, -0.00021046660549473017, -0.01281034853309393, 0.0006944613996893167, 0.026022139936685562, 0.008423144929111004, -0.017935922369360924, 0.010788793675601482, 0.030079588294029236, -0.004774310160428286, 0.019211938604712486, -0.013068419881165028, 0.014724373817443848, 0.008036038838326931, -0.0015690347645431757, -0.015125817619264126, -0.02053096704185009, -0.028473813086748123, 0.021047109737992287, 0.00048253865679726005, -0.014738711528480053, -1.3203167327446863e-05, -3.710328019224107e-05, 0.007294084876775742, -0.020989760756492615, 0.0026541866827756166, 0.008659709244966507, -0.03601521626114845, -0.00043213419849053025, -0.005010874941945076, -0.010265483520925045, 0.019871452823281288, 0.001322612981311977, -0.027384180575609207, 0.005924875847995281, -0.025219254195690155, -0.00845181941986084, -0.00047178572276607156, -0.0012267325073480606, 0.0038925681728869677, 0.008967961184680462, 0.013813957571983337, 0.0056345462799072266, 0.01992880180478096, 1.5079333024914376e-05, -0.018882181495428085, -0.006276139058172703, -0.006548547185957432, -0.014279918745160103, 0.015140154398977757, -0.019426997750997543, -0.006441017612814903, -0.03676075488328934, 0.021821321919560432, -0.01901121623814106, -0.013971667736768723, 0.013075588271021843, 0.006304813548922539, 0.018466399982571602, 0.009247537702322006, -0.005731322802603245, -0.006699088495224714, -0.019068565219640732, 0.011964449658989906, 0.00950560811907053, 0.00032169243786484003, -0.0012787050800397992, 0.015469911508262157, -0.014573832973837852, -0.010502048768103123, 0.014315761625766754, 0.0012159794569015503, -0.002881790744140744, 0.004164976067841053, -0.020129524171352386, 0.022824930027127266, -0.008071881718933582, -0.021806983277201653, -0.011405296623706818, -0.0029355555307120085, 0.013104262761771679, 0.019412660971283913, -0.006846045143902302, 0.005519847851246595, 0.024086609482765198, 0.002440919866785407, -0.0033549205400049686, -0.002442711964249611, -0.007014508359134197, 0.011548669077455997, -0.000608437811024487, 0.014007510617375374, 0.0005018043448217213, 0.04774310067296028, -0.017677851021289825, 0.013548717834055424, 0.008917780593037605, 0.01724773272871971, 0.021548913791775703, -0.007734955754131079, 0.005967887584120035, 0.001034971559420228, 0.00891061220318079, -0.0004545362025965005, -0.009240369312465191, 0.0010439322795718908, 0.005251024384051561, 0.008831757120788097, -0.02025855891406536, -0.0034463207703083754, -0.0409759096801281, -0.018910856917500496, -0.02473178692162037, -0.0033190774265676737, 0.01401467900723219, 0.00888910610228777, 0.006527041085064411, -0.005846020765602589, -0.002881790744140744, -0.021663611754775047, 0.012172340415418148, -0.03435209393501282, 0.005251024384051561, 0.023613478988409042, 0.008344289846718311, 0.009613137692213058, 0.015814006328582764, 0.011928606778383255, 0.0025789160281419754, -0.011942943558096886, -0.0028602848760783672, 0.01876748353242874, 0.01899687945842743, 0.005623793229460716, -0.023986248299479485, -0.014358773827552795, 0.00343019119463861, 0.024961182847619057, 0.011584511958062649, 0.014530820772051811, 0.0033620891626924276, 0.0009579086909070611, 0.008222422562539577, -0.00625821715220809, 0.017333757132291794, 0.02027289569377899, 0.013649079017341137, -0.007469716481864452, -0.0034588659182190895, -0.027369843795895576, 0.0087385643273592, -0.0017867819406092167, -0.013111431151628494, 0.006014483980834484, -0.018939530476927757, 0.004147054627537727, 0.015269190073013306, -0.007562908809632063, 0.023312397301197052, 0.007240320090204477, -0.016760265454649925, -0.021305179223418236, -0.008795913308858871, 0.017749536782503128, 0.00026367130340076983, 0.0031506146769970655, 0.0094912713393569, 0.00921886321157217, 0.010702770203351974, -0.016688579693436623, 0.009498439729213715, -0.006362162530422211, -0.0038495564367622137, 0.002700782846659422, -0.0026273042894899845, -0.0065198722295463085, 0.012136496603488922, 0.014308593235909939, -0.014007510617375374, -0.018910856917500496, 0.0004798504232894629, -0.011061201803386211, -0.005111236125230789, -0.017290744930505753, -0.0016532661393284798, -0.004229493904858828, -0.017735200002789497, -0.004437384195625782, 0.016659904271364212, -0.011634692549705505, 0.008996635675430298, -0.01777821220457554, 0.021993368864059448, 0.009993075393140316, 0.0019498683977872133, 0.020946748554706573, 0.012301376089453697, -0.014258412644267082, 0.013491368852555752, 0.03615858778357506, -0.0015511130914092064, -0.008394470438361168, -0.019556032493710518, 0.014122208580374718, 0.022423487156629562, 0.001084255869500339, 0.009598800912499428, -0.014043353497982025, -0.014064859598875046, -0.007003755308687687, 0.007000171113759279, 0.0032527674920856953, 0.00156724255066365, 0.00876007042825222, 0.007749292999505997, -0.001869221217930317, -0.0038567250594496727, -0.015068468637764454, 0.011806739494204521, -0.007179386913776398, 0.014516483061015606, -0.024029260501265526, -0.010208134539425373, 0.011304935440421104, -0.0019642056431621313, 0.01816531829535961, 0.007928509265184402, -0.0014749463880434632, -0.007734955754131079, 0.02718346007168293, -0.017620502039790154, 0.004193650558590889, -0.006713425740599632, 0.007957183755934238, -0.01721905916929245, -0.003924827091395855, 0.007785136345773935, 0.012279869988560677, 0.010953672230243683, -0.013842632062733173, 0.004168560728430748, -0.0127028189599514, -0.0019928801339119673, -0.04017302393913269, 0.0008033350459299982, -0.012623963877558708, 0.0018459232524037361, -0.0038674778770655394, -0.006817370653152466, -0.003143445821478963, 0.0006877408013679087, 0.0029821516945958138, -0.014810397289693356, 0.0205596424639225, 0.0023154686205089092, -0.017104361206293106, -0.01252360362559557, -0.01207914762198925, 0.01568497158586979, -3.122276029898785e-05, -0.016731591895222664, -0.02144855260848999, 0.008408807218074799, -0.024645762518048286, 0.009061153046786785, -0.0035592266358435154, -0.029964888468384743, 0.0025699553079903126, -0.005028796847909689, -0.021548913791775703, 0.022251440212130547, -0.02990753948688507, -0.018652785569429398, -0.0001801119215087965, -0.009096995927393436, -0.003308324608951807, 0.005645299330353737, 0.021505901589989662, -0.014416122809052467, -0.0001636464730836451, 0.0017831976292654872, -0.01114722527563572, 0.018480738624930382, 0.005315541755408049, -0.009756511077284813, 0.013168780133128166, -0.0045735882595181465, -0.00996440090239048, 0.009742173366248608, 0.0035520580131560564, 0.025549011304974556, 0.012925046496093273, 0.0029355555307120085, -0.01042319368571043, -0.007548571564257145, -0.0011550461640581489, 0.004193650558590889, -0.004111211281269789, -0.014695699326694012, -0.007433873135596514, -0.014839071780443192, 0.01341251377016306, 0.0011317480821162462, -0.0023817785549908876, 0.013175948522984982, -0.02779996208846569, 0.0099859070032835, 0.009892714209854603, -0.00439078826457262, -0.016215449199080467, 0.008107724599540234, 0.0037671171594411135, 0.021505901589989662, -0.006168609485030174, -0.02414395846426487, 0.013935823924839497, 0.021247830241918564, 0.007907003164291382, -0.028301766142249107, 0.017133034765720367, -0.005387228447943926, 0.003745611058548093, 0.012760167941451073, -0.007448210380971432, -0.017649175599217415, 0.01027265191078186, -0.002700782846659422, -0.01299673318862915, -0.012889203615486622, -0.0040610311552882195, -0.0012491344241425395, 0.0042581683956086636, 0.004716961178928614, 0.0010260107228532434, 0.002482139505445957, -0.006921316031366587, -0.007326343562453985, 0.0036918465048074722, 0.01208631694316864, -0.014466303400695324, 0.005752828437834978, 0.0006030613440088928, -0.01574232056736946, -0.004820906091481447, -0.002750963205471635, -0.010100604966282845, 0.009856871329247952, 0.012674144469201565, 0.005326294805854559, -0.012401736341416836, 0.012401736341416836, 0.01807929389178753, 0.009211694821715355, -0.008631034754216671, 0.018480738624930382, 0.0038889837451279163, -0.0099859070032835, -0.001812768285162747, 0.012566614896059036, -0.013154443353414536, -0.0035950697492808104, 0.005035965237766504, 0.003322661854326725, -0.004025187809020281, -0.007663269527256489, 0.01311859954148531, -0.02688237652182579, -0.01783556118607521, -0.001588748418726027, -0.006996586453169584, -0.0019624135456979275, -0.01812230609357357, 0.009132839739322662, -0.010903491638600826, 0.013297815807163715, 0.016057739034295082, 0.01625846140086651, 0.012839023023843765, -0.004863917827606201, 0.004526992328464985, 0.01876748353242874, 0.009806690737605095, 0.0002930179180111736, 0.015369551256299019, -0.0020591900683939457, 0.02025855891406536, 0.001524230814538896, -0.04292577877640724, -0.003636289620772004, -0.005129157565534115, 0.008100556209683418, 0.007433873135596514, 0.012738661840558052, -0.011548669077455997, 0.0187244713306427, 0.009835365228354931, 0.020387595519423485, 0.009398078545928001, 0.012709987349808216, -0.003939164336770773, -0.02057397924363613, -0.014308593235909939, 0.0073370966129004955, -0.005000121891498566, -0.017591826617717743, 0.0020376842003315687, 0.014301424846053123, 0.012028967961668968, 0.02352745644748211, 0.007147127762436867, 0.027885986492037773, 0.010681264102458954, -0.018581097945570946, 0.016846289858222008, 0.008107724599540234, 0.0059786406345665455, 0.0089034428820014, -0.006337072234600782, -0.010021749883890152, 0.007742124609649181, -0.006914147175848484, -0.004186482168734074, -0.023771189153194427, 0.00967048667371273, 0.006018068175762892, -0.00233697472140193, -0.026194188743829727, 0.0006344240973703563, -0.0012401737039908767, -0.00755573995411396, 0.029735492542386055, -0.015885692089796066, -0.0099859070032835, -0.00612559774890542, 0.013684921897947788, 0.0021667196415364742, -0.002428374718874693, -0.006458939053118229, -0.008458987809717655, 0.003448112867772579, -0.002421206096187234, 0.006111260503530502, 0.006867551244795322, 0.0070646884851157665, 0.005996562074869871, -0.010086268186569214, -0.012000293470919132, 0.007286916486918926, 0.019527358934283257, 0.012788842432200909, 0.01405052188783884, -0.002862076973542571, -0.01628713682293892, 0.003148822346702218, 0.015269190073013306, 0.0019606214482337236, -0.0073550185188651085, 0.0005018043448217213, 0.014545158483088017, 0.007021676748991013, 0.0023979078978300095, -0.011204574257135391, 0.004340607672929764, 0.010373013094067574, -0.01025831513106823, -0.007648932281881571, 0.015011119656264782, -0.00039494692464359105, -0.012007461860775948, 0.007010923698544502, 0.006415927316993475, 0.015269190073013306, 0.0029696065466850996, 0.010451868176460266, 0.004129133187234402, 0.009770847856998444, -0.015770994126796722, 0.03512630611658096, 0.011835413984954357, -0.0007244800799526274, 0.0064911977387964725, 0.005268945824354887, 0.002107578329741955, -0.005777918733656406, 0.006358578335493803, 0.016975324600934982, -0.015154492110013962, -0.006957158911973238, -0.0033889715559780598, 0.003643458243459463, 0.003127316478639841, 0.0026004218962043524, 0.006168609485030174, -0.02143421582877636, -0.01225119549781084, -0.01664556749165058, 0.02233746275305748, 0.008064713329076767, -0.011061201803386211, 0.004193650558590889, 0.011383790522813797, 0.0012231481960043311, 0.017993271350860596, -0.010795962996780872, 0.0067779431119561195, 0.0033334146719425917, -0.013003901578485966, -0.02692538872361183, -0.0015358797973021865, -0.0020484370179474354, -0.022552521899342537, -0.005476836115121841, 0.005763581488281488, 0.0046309372410178185, 0.018796157091856003, 0.005752828437834978, -0.01658821851015091, -0.003043085103854537, -0.03644533455371857, -0.01627279818058014, -0.026366235688328743, 0.010494880378246307, 0.008638204075396061, -0.022423487156629562, 0.007294084876775742, 0.004050278104841709, 0.010236809030175209, -0.0032868185080587864, 0.0015699308132752776, -0.002206146949902177, 0.0022706647869199514, 0.016717253252863884, 0.003978591877967119, -0.018208330497145653, 0.007007339503616095, 0.0005098690744489431, -0.008602360263466835, 0.026165513321757317, -0.011276260949671268, 0.013584560714662075, -0.003349544247612357, -0.030968498438596725, 0.0032473911996930838, 0.00843031331896782, -0.029448747634887695, 0.014982444234192371, -0.014258412644267082, -0.007455379236489534, -0.0006066456553526223, -0.029032966122031212, -0.015756657347083092, 0.0024516726844012737, 0.02143421582877636, -0.010430362075567245, 0.002679276978597045, 0.05195825919508934, 0.008545011281967163, 0.0040000975131988525, 0.010193797759711742, -0.022738905623555183, 0.006326319184154272, 0.0016165269771590829, 0.004104042891412973, 0.005713401362299919, -0.007806642446666956, -0.01448780857026577, 0.022151079028844833, -0.005509095266461372, 0.013226129114627838, -0.010516385547816753, -0.011376622132956982, -0.020588316023349762, 0.010365844704210758, -0.006358578335493803, 0.017577489838004112, 0.0027957672718912363, 0.006344241090118885, -0.013391007669270039, -0.007018092554062605, -0.006154272239655256, -0.010523554868996143, -0.01388564333319664, -0.01875314675271511, -0.01717604696750641, 0.012437579222023487, -0.004548497963696718, -0.0098210284486413, 0.017276408150792122, 0.002498268848285079, 0.0019928801339119673, -0.0018226251704618335, 0.0337786041200161, -0.006785111967474222, -0.012337218970060349, -0.00012948345101904124, 0.01688930206000805, 0.011570175178349018, -0.011362284421920776, 0.005824515130370855, 0.0004538641369435936, 0.013620404526591301, -0.0038674778770655394, -0.0008163281599991024, 0.005243855528533459, -0.0090683214366436, 0.008150736801326275, 0.0015206465031951666, -0.023484444245696068, -0.004989369306713343, -0.016444845125079155, -0.024344680830836296, 0.006516288034617901, -0.013512874953448772, -0.010559397749602795, 0.0002685997460503131, -0.004204403609037399, 0.0016640190733596683, 0.023928899317979813, 0.0032832343131303787, 0.0024445040617138147, -0.008172242902219296, 0.016186775639653206, -0.0011657990980893373, 0.039427485316991806, 0.020645665004849434, 0.025893105193972588, -0.003462450113147497, 0.0014794267481192946, -0.023039989173412323, 0.007028845604509115, -0.015340876765549183, -0.0012473423266783357, 0.0013387423241510987, -0.0001733913377393037, -0.020057836547493935, 0.02170662395656109, 0.007283331826329231, -0.003978591877967119, 0.006570052821189165, 0.005498342216014862, -0.0017778212204575539, -0.002100409707054496, 0.01962772011756897, 0.00020990656048525125, 0.013921487145125866, -0.001385338488034904, -0.028459476307034492, 0.02410094626247883, 0.010674095712602139, 0.01719038374722004, 0.022194091230630875, 0.02930537424981594, 0.012860529124736786, -0.00393199548125267, 0.01571364514529705, -0.026997074484825134, 0.02117614448070526, 0.010724276304244995, 0.007089778780937195, 0.0003821777936536819, 0.013735102489590645, 0.010652589611709118, -0.0046309372410178185, -0.02804369479417801, -0.003367465687915683, 0.0068245395086705685, 0.012552278116345406, -0.02685370296239853, 0.009233199991285801, 0.002478555077686906, -0.002191809704527259, -0.0026954063214361668, 0.012745831161737442, 0.019211938604712486, 0.014695699326694012, -0.021548913791775703, -0.014939432963728905, 0.0031667440198361874, 0.009620307013392448, 0.00489976117387414, -0.005075392778962851, 0.0070360139943659306, 0.0027814300265163183, -0.0031344851013273, -0.006179362535476685, -0.007010923698544502, 0.01602906547486782, -0.022523848339915276, 0.005469667725265026, -0.005476836115121841, 0.018308691680431366, -0.005785087589174509, 0.008401638828217983, 0.007168633863329887, -0.007713450118899345, 0.0053908126428723335, -0.02202204242348671, -0.015814006328582764, -0.029792841523885727, -0.01994313858449459, -0.0020394762977957726, -0.011204574257135391, -0.005458914674818516, -0.019570371136069298, 0.0012948345392942429, -0.007294084876775742, -0.0034516972955316305, -0.009398078545928001, -0.0029696065466850996, -0.027326831594109535, -0.010050424374639988, 0.014624012634158134, -0.002541280584409833, -0.02110445871949196, 0.006243879906833172, -0.01968506909906864, 0.0386245995759964, 0.0019194016931578517, 0.012093485333025455, 0.00046058473526500165, -0.024244319647550583, 0.010322832502424717, 0.021591925993561745, -0.010616746731102467, -4.626009103958495e-05, 0.01696098782122135, -0.010100604966282845, -0.0061936997808516026, -0.021018434315919876, -0.010738613083958626, -0.011885594576597214, -0.005548522807657719, 0.012179508805274963, -0.0039750076830387115, 0.012272700667381287, -0.00034879884333349764, 0.007720618508756161, 0.0053908126428723335, 0.018509412184357643, 0.022810593247413635, -0.007297669071704149, -0.010681264102458954, -0.015512923710048199, -0.003449904965236783, 0.011598849669098854, 0.015799669548869133, 0.009369404055178165, 0.013441188260912895, 0.0050897300243377686, 0.011326441541314125, 0.02114746905863285, 0.00279755936935544, 0.00936223566532135, -0.009620307013392448, -0.02230878919363022, -0.015484249219298363, 0.01465268712490797, 0.023699503391981125, 0.008688383735716343, -0.007136375177651644, 0.009448259137570858, 0.011778065003454685, 0.011591681279242039, -0.02018687315285206, -0.011742222122848034, 0.028932606801390648, 0.01961338147521019, 0.02716912142932415, 0.006057495716959238, -0.0062367115169763565, -0.0013817541766911745, 0.018323028460144997, -0.002546657109633088, -0.01025831513106823, -0.010559397749602795, -0.017591826617717743, 0.007075441535562277, -0.008387301117181778, -0.00048791515291668475, 0.0012625756207853556, -0.014724373817443848, -0.014695699326694012, 0.008122062310576439, 0.020315907895565033, -0.005781503394246101, 0.008122062310576439, 0.004806568846106529, 0.023914562538266182, -0.014839071780443192, -0.012272700667381287, 0.002758131828159094, -0.009541451930999756, -0.010057593695819378, -0.01845206320285797, -0.009304886683821678, 0.008566517382860184, 0.003645250340923667, -0.012839023023843765, 0.010910660959780216, 0.0025143984239548445, 0.007899834774434566, -0.010795962996780872, -0.010946503840386868, 0.012588120996952057, -0.002476762980222702, 0.015857018530368805, 0.013484200462698936, -0.01225119549781084, 0.020961085334420204, -0.015140154398977757, 0.01235872507095337, -0.012050473131239414, 0.01482473500072956, 0.007942846044898033, 0.012014630250632763, 0.005759997293353081, -0.016846289858222008, -0.005874695256352425, 0.013046913780272007, 0.0009355067159049213, -0.03472486138343811, -0.026624305173754692, 0.02238047495484352, 0.008788744919002056, 0.0022706647869199514, -0.01344835665076971, 0.012265532277524471], "4112b27d-de6a-44de-bf7f-47e0a4cabf15": [-0.026045789942145348, 0.006140516605228186, -0.0059510194696486, 0.012160077691078186, -0.0031085610389709473, -0.013006767258048058, 0.025803878903388977, 0.026352209970355034, -0.02003026008605957, 0.05547833815217018, -0.010773119516670704, -0.007208958268165588, -0.01060378085821867, 0.022110698744654655, -0.02344927377998829, -0.002933175303041935, -0.01898197829723358, 0.02809397131204605, 0.006636434700340033, -0.05083363875746727, 0.0670255720615387, -0.015611345879733562, -0.05402686819434166, 0.013772820122539997, 0.0011934293434023857, 0.0014161893632262945, -0.03577062487602234, 0.012514880858361721, -0.018094969913363457, -0.014240515418350697, 0.00757988914847374, 0.007539570797234774, 0.019498055800795555, -0.0004293926467653364, 0.004680984653532505, -0.028464902192354202, 0.016143551096320152, 0.003507714718580246, -0.024723339825868607, -0.02680377848446369, -0.018578791990876198, 0.024110497906804085, 0.03235161304473877, -0.010418315418064594, -0.04825325310230255, -0.005664757452905178, 0.015361371450126171, 0.0048180678859353065, -0.016087105497717857, -0.007007365580648184, 0.009869983419775963, -0.029593823477625847, -0.009136185981333256, -0.012885811738669872, 0.0028686656150966883, -0.03293219953775406, 0.05202706903219223, 0.05773617699742317, -0.0005967146717011929, -0.04215708747506142, 0.0031831501983106136, -0.0010865852236747742, 0.02833588421344757, -0.009313587099313736, 0.04206032305955887, -0.010257041081786156, -0.0033766792621463537, 0.009942556731402874, -0.048059724271297455, 0.023529911413788795, 0.02228809893131256, 0.01753051020205021, -0.03838326781988144, 0.026481229811906815, 0.016264507547020912, -0.014361470937728882, 0.02441691979765892, 0.01682090386748314, 0.023384764790534973, -0.01799820549786091, 0.013950221240520477, -0.008305623196065426, 0.04338277131319046, 0.009474861435592175, 0.08037908375263214, 0.015958085656166077, -0.024029862135648727, -0.07379908859729767, -0.012127822265028954, 0.001100696623325348, -0.023046089336276054, 0.007692781277000904, -0.011466598138213158, -0.010087703354656696, 0.019046487286686897, -0.002564260270446539, 0.003142831614241004, 0.009942556731402874, -0.003259755438193679, -0.020449573174118996, 0.014796911738812923, 0.009861920028924942, -0.018869085237383842, 0.004144747741520405, 0.011006967164576054, -0.01814335212111473, -0.013659927994012833, -0.01707894168794155, -0.012635836377739906, 0.03175489604473114, 0.003914932254701853, -0.03273867070674896, -0.020530210807919502, 0.005733299069106579, -0.03831876069307327, 0.01812722347676754, -0.021255943924188614, -0.006047783885151148, -0.01600646786391735, -0.04399561136960983, 0.026110298931598663, -0.01825624331831932, 0.011273069307208061, -0.006334045901894569, -0.016869286075234413, -0.00043695239583030343, 0.004721303470432758, 0.057897452265024185, 0.031206564977765083, 0.009458733722567558, 0.009289395995438099, -0.0039088842459023, 0.014329216443002224, 0.049478936940431595, 0.025545839220285416, 0.02122369036078453, 0.024465302005410194, 0.06186479702591896, -0.024916870519518852, 0.016611246392130852, -0.06896086782217026, -0.00649128807708621, -0.03389984369277954, 0.041318461298942566, -0.011619809083640575, 0.015022695064544678, -0.0017619210993871093, 0.02796495333313942, -0.018336880952119827, 0.03367406129837036, -0.06512253731489182, -0.05892960727214813, -0.03399660810828209, -0.01160368137061596, 0.04067336395382881, -0.06196156144142151, -0.0019887129310518503, 0.006225185468792915, -0.0012196364114060998, 0.020417317748069763, 0.009676454588770866, -0.019756093621253967, 0.008870082907378674, 0.03102916292846203, 0.030271174386143684, -0.0013214407954365015, 0.05589764937758446, 0.01422438770532608, -0.02857779525220394, 0.027094071730971336, -0.015022695064544678, -0.0004908784758299589, 0.028481030836701393, 0.014788847416639328, -0.04302796721458435, -0.003118640510365367, 0.03222259134054184, 0.03638346865773201, 0.013200296089053154, -0.014764656312763691, -0.016490289941430092, 0.01598227769136429, 0.005068042781203985, 0.01706281490623951, 0.007124289404600859, 0.031932298094034195, 0.015845194458961487, 0.016449972987174988, 0.04467296227812767, 0.005039819981902838, -0.0032275007106363773, -0.012700346298515797, -0.03780268132686615, 0.020707612857222557, 0.008603980764746666, -0.007491188123822212, -0.031238820403814316, 0.014038922265172005, -0.012692282907664776, -0.015796812251210213, -0.02075599506497383, -0.03909287601709366, -0.02206231653690338, 0.046253450214862823, -0.0017861122032627463, 0.03057759627699852, -0.0060921343974769115, -0.022691285237669945, -0.002400970319285989, -0.027465002611279488, 0.038092974573373795, -0.02512652613222599, -0.012281033210456371, -0.018062714487314224, 0.0027940762229263783, 0.020175406709313393, -0.014329216443002224, 0.021239817142486572, -0.017740165814757347, -0.014619509689509869, -0.011232750490307808, 0.022207463160157204, -0.007055747788399458, -0.027174709364771843, -0.028593922033905983, -0.05131746083498001, -0.02430402673780918, -0.00818466767668724, 0.0037133393343538046, -0.01870781183242798, 0.006898505613207817, -0.0030924335587769747, 0.006991238333284855, -0.04228610545396805, -0.03152911365032196, 0.05512353405356407, 0.0668320432305336, -0.025884514674544334, -0.04038307070732117, 0.015611345879733562, 0.0056123435497283936, 0.02393309772014618, -0.011724636889994144, -0.01965932920575142, 0.027206964790821075, 0.03165813162922859, -0.011781083419919014, 0.032770924270153046, -0.020449573174118996, 0.014772720634937286, -0.008620108477771282, -0.01042637974023819, -0.004955151118338108, 0.010087703354656696, -0.005713139660656452, 0.0176434013992548, 0.02606191672384739, -0.02277192287147045, 0.010507016442716122, -0.006567893549799919, 0.014369534328579903, 0.02727147378027439, -0.0214656013995409, 0.0476081557571888, 0.03496425598859787, -0.02344927377998829, 0.04412463307380676, 0.010095767676830292, 0.02690054289996624, 0.01669188402593136, 0.02206231653690338, 0.015433944761753082, 0.017869185656309128, 0.02973897010087967, -0.00953130703419447, -0.0264167208224535, -0.00010886011295951903, -0.005644598510116339, 0.006438874173909426, -0.027577893808484077, -0.03506102040410042, -0.02652961201965809, 0.03531905636191368, 0.010111894458532333, 0.031238820403814316, 0.01943354494869709, -0.009499052539467812, -0.031464602798223495, -0.016449972987174988, -0.03351278603076935, 0.00509626604616642, 0.005749426782131195, 0.011869783513247967, 0.010055448859930038, 0.020675357431173325, 0.004535838030278683, 0.01601453125476837, -0.015127523802220821, -0.00941841583698988, 0.016885412856936455, -0.009611944667994976, -0.02001413330435753, -0.011006967164576054, -0.016191933304071426, 0.026400592178106308, 0.005680885165929794, 0.05299471318721771, 0.028513284400105476, -0.005672821309417486, 0.03796395659446716, 0.03889934718608856, -0.02322348952293396, -0.00818466767668724, -0.02370731346309185, 0.011587553657591343, 0.024852359667420387, -0.0003613550798036158, -0.02773916907608509, -0.02156236581504345, -0.035383567214012146, -0.00603972002863884, 0.02512652613222599, -0.06921890377998352, 0.06041333079338074, 0.03993150219321251, -0.022368736565113068, 0.0034190139267593622, -0.003215405158698559, -0.020046386867761612, -0.034190136939287186, -0.021836532279849052, -0.00836206879466772, -0.0035581127740442753, 0.018643300980329514, -0.022965451702475548, -0.030787251889705658, -0.05567186698317528, -0.026723140850663185, 0.0008270344696938992, -0.024674957618117332, -0.0012528991792351007, 0.0010754975955933332, 0.035609353333711624, -0.014079241082072258, 0.013135787099599838, 0.01965932920575142, 0.030754996463656425, 0.02251388318836689, -0.02902936190366745, 0.01586938463151455, 0.0008139309356920421, -0.021417219191789627, 0.026126425713300705, 0.010724736377596855, 0.012337478809058666, -0.042479634284973145, -0.05960695818066597, 0.0029230955988168716, -0.0008885202696546912, 0.007362168747931719, 0.00058109121164307, -0.03386759012937546, -0.017159579321742058, 0.0419958122074604, -0.006704976316541433, 0.015490390360355377, 0.010523144155740738, -0.000990324653685093, 0.011893974617123604, 0.0015794795472174883, -0.016417717561125755, 0.014732401818037033, -0.004568092990666628, 0.0013536956394091249, -0.04486649110913277, -0.012490689754486084, 0.0492854081094265, 0.004511646926403046, 0.003479491686448455, 0.02028829976916313, 0.012127822265028954, -0.04551158845424652, -0.0403185598552227, 0.034673962742090225, 0.021159179508686066, -0.008773318491876125, 0.029819605872035027, -0.01215201336890459, -0.03906061872839928, 0.01827237196266651, -0.030658232048153877, 0.0039754100143909454, -0.01930452696979046, -0.030658232048153877, -0.01237779762595892, -0.03215808421373367, -0.009797410108149052, -0.0053986553102731705, 0.010418315418064594, -0.04883383959531784, 0.013700246810913086, -0.016740266233682632, 0.02288481406867504, -0.02144947275519371, 0.023900842294096947, -0.0449955128133297, -0.013224487192928791, -0.040350813418626785, 0.0012579390313476324, 0.017465999349951744, -0.01814335212111473, 0.005414782557636499, 0.04060885310173035, 0.030722742900252342, 0.03544807806611061, 0.011474662460386753, 0.013490590266883373, 0.025884514674544334, -0.027077944949269295, -0.029690587893128395, 0.024126626551151276, 0.01635320857167244, -0.0018516298150643706, 0.015329116024076939, 0.011861720122396946, 0.028739068657159805, 0.00580184068530798, 0.02073986642062664, 0.0023122692946344614, -0.028061717748641968, -0.00408830214291811, 0.03309347480535507, 0.013071277178823948, 0.005156743805855513, 0.030609849840402603, -0.005886509548872709, 0.007003333885222673, -0.0013698230031877756, 0.025981279090046883, 0.010490888729691505, -0.030077645555138588, 0.018627174198627472, -0.0012115726713091135, -0.004217321518808603, -0.043898846954107285, -0.0509626604616642, -0.04257639870047569, -0.012522944249212742, 0.029916370287537575, -0.023965351283550262, 0.009087802842259407, 0.014240515418350697, -0.0010472745634615421, -0.024223390966653824, -0.02654573880136013, -0.03280318155884743, 0.0007358136936090887, 0.009281332604587078, 0.013643800280988216, -0.048866093158721924, -0.015700047835707664, -0.005140616558492184, 0.01268421858549118, 4.66498349851463e-05, 0.0238040778785944, -0.013853456825017929, 6.847855547675863e-05, -0.0129745127633214, 0.016256442293524742, 0.010877947323024273, 0.016853157430887222, 0.014192133210599422, 0.03457719832658768, 0.03541582077741623, 0.025271672755479813, -0.0009152312995865941, -0.007402487564831972, 0.029690587893128395, 0.004801940638571978, -0.0022517915349453688, -0.00417297100648284, -0.01659511961042881, 0.0030581627506762743, -0.004737430717796087, 0.010507016442716122, 0.007616175804287195, -0.02783593349158764, -0.01245037093758583, 0.03612542897462845, 0.019933495670557022, 0.014619509689509869, -0.009007166139781475, 0.010652163065969944, -0.012885811738669872, -0.011531108058989048, -0.02783593349158764, 0.0017720006871968508, -0.03048083186149597, 0.01191010233014822, -0.03357729688286781, 0.01741761714220047, -0.03499650955200195, -0.013885712251067162, 0.010974711738526821, -0.03896385431289673, 0.045221295207738876, -0.001199477119371295, 0.05322049930691719, -0.013547035865485668, -0.008934592828154564, -0.004810004029422998, -0.00417700270190835, -0.03151298686861992, 0.007168639916926622, 0.01969158463180065, 0.02607804350554943, 0.004987405613064766, -0.018223989754915237, 0.02794882468879223, 0.00828949548304081, -0.0022195368073880672, -0.037867192178964615, -0.03143234923481941, 0.0010296351974830031, -0.00028726973687298596, -0.020933395251631737, -0.02001413330435753, -0.02523941732943058, 0.020546337589621544, -0.02111079730093479, -0.013966348953545094, 0.029222892597317696, -0.021659130230545998, 0.02228809893131256, 0.010071576572954655, 0.012426179833710194, 0.006704976316541433, 0.025690985843539238, 0.018159478902816772, -0.013200296089053154, -0.06612243503332138, 0.031706515699625015, -0.02273966744542122, -0.010684418492019176, -0.028142355382442474, 0.01066829077899456, -0.0001275704416912049, -0.0010029241675511003, -0.008031456731259823, 0.022965451702475548, -0.024223390966653824, 0.017482127994298935, -0.004108461085706949, 0.012579390779137611, 0.002644897438585758, -0.048188742250204086, -0.009313587099313736, -0.005176903214305639, -0.009555498138070107, -0.02036893554031849, -0.009990938939154148, 0.04570511728525162, -0.016377398744225502, 0.0009832688374444842, 0.01565972901880741, 0.0004659313417505473, -0.03519003838300705, 0.01956256479024887, -0.02167525701224804, 0.0238040778785944, 0.017804676666855812, -0.01799820549786091, 0.04364080727100372, 0.0018536457791924477, 0.003072274150326848, 0.057058826088905334, 0.006579989101737738, -0.027061816304922104, -0.05360755696892738, -0.009821601212024689, 0.023529911413788795, -0.020304426550865173, -0.004346340894699097, 0.0014363486552610993, -0.01647416315972805, -0.0023949225433170795, -0.0020804377272725105, -0.03564160689711571, -0.011394024826586246, -0.010265105403959751, -0.015304924920201302, 0.04276992753148079, -0.024820106104016304, 0.010700545273721218, -0.020465699955821037, 0.009942556731402874, -0.011410152539610863, 0.01953030936419964, 0.05312373489141464, -0.0002928135509137064, 0.00912812165915966, 0.00603972002863884, 0.03889934718608856, -0.006700944621115923, -0.04622119665145874, 0.0041185407899320126, 0.026255445554852486, 0.011821401305496693, -0.01231328770518303, 0.001417197403497994, -0.0022497756872326136, -0.008531407453119755, 0.025561966001987457, -0.02538456581532955, 0.0161032322794199, 0.001393006183207035, 0.0016883396310731769, 0.022449374198913574, 0.02167525701224804, -0.00123677181545645, 0.025529712438583374, -0.02415888011455536, 0.009329714812338352, -0.021836532279849052, 0.0207237396389246, 0.03010990098118782, -0.004140716046094894, 0.005999401677399874, -0.002211472950875759, 0.0016762440791353583, -0.01565166562795639, 0.0025864355266094208, 0.006668689660727978, -0.026384465396404266, -0.008926529437303543, -0.0019433546112850308, 0.01083762850612402, 0.000411501299822703, -0.0005201094318181276, -0.01743374578654766, -0.0012468514032661915, -0.0033726475667208433, 0.00042863667476922274, 0.056704021990299225, -0.0147001463919878, -0.00858785305172205, -0.0004845786897931248, -0.013143850490450859, 0.04551158845424652, 0.00556799303740263, -0.02794882468879223, -0.007136384956538677, -0.013490590266883373, 0.022659029811620712, -0.003800024278461933, -0.03152911365032196, -0.013329315930604935, 0.019272271543741226, 0.006769486237317324, 0.022078443318605423, 0.030287301167845726, -0.013329315930604935, 0.0088217006996274, 0.014385662041604519, 0.026448974385857582, 0.02073986642062664, 0.030754996463656425, 0.016885412856936455, 0.017514381557703018, 0.008313686586916447, 0.01848202757537365, -0.037867192178964615, 0.011700445786118507, 0.0014897707151249051, -0.01315191388130188, 0.01191010233014822, 0.010845692828297615, 0.001545208739116788, 0.023675058037042618, -0.02972284145653248, -0.0008114110096357763, -0.03448043391108513, -0.015909703448414803, 0.00228001456707716, -0.00024039941490627825, -0.004467296414077282, -0.02086888626217842, -0.0010906170355156064, -0.0068864100612699986, -0.008172571659088135, -0.028884215280413628, 0.02003026008605957, -0.007600048556923866, 0.04789844900369644, 0.0018203830113634467, -0.00848302524536848, 0.010482825338840485, -0.04347953572869301, -0.010039321146905422, -0.04715658724308014, -0.04486649110913277, -0.01598227769136429, 0.010724736377596855, -0.02951318584382534, 0.009176503866910934, 0.0214656013995409, -0.019998004660010338, -0.012934193946421146, -0.008491088636219501, 0.020675357431173325, 0.016062913462519646, 0.008515279740095139, 0.013022894971072674, 0.01274872850626707, -0.001320432871580124, 0.018562665209174156, 0.005680885165929794, 0.028771324083209038, -0.01126500591635704, 0.03081950731575489, 0.0129745127633214, 0.06460645794868469, -0.011039221659302711, 0.0008043552516028285, -0.029690587893128395, -0.01812722347676754, -0.008918465115129948, 0.0009212790755555034, 0.020336681976914406, 0.0016339096473529935, 0.02348152920603752, -0.007829864509403706, -0.0032073413021862507, 0.012047185562551022, 0.003433125326409936, -0.0162403155118227, 0.006870282348245382, -0.013474462553858757, 0.0162403155118227, 0.013393825851380825, 0.030126027762889862, -0.006999301724135876, 0.006971078924834728, -0.0614132285118103, -0.020239917561411858, 0.0005619399016723037, 0.021304326131939888, 0.005709107965230942, -0.010232849977910519, -0.026836033910512924, 0.03796395659446716, -0.019836731255054474, 0.029900243505835533, -0.0001035052991937846, 4.570486635202542e-05, 0.010144149884581566, 0.036576997488737106, 0.012547135353088379, 0.011329514905810356, 0.035964153707027435, -0.01740149036049843, 0.021255943924188614, -0.009329714812338352, -0.011152113787829876, 0.018998105078935623, -0.01980447582900524, 0.0008391300216317177, 0.011990739963948727, 0.02690054289996624, 0.03389984369277954, 0.023046089336276054, 0.02335250936448574, 0.010539271868765354, 0.025207163766026497, -0.026707014068961143, -0.0037556737661361694, 0.008083871565759182, -0.041318461298942566, -0.03035181201994419, 0.011127922683954239, -0.010152213275432587, 0.002955350326374173, 0.0202560443431139, 0.016804775223135948, 0.005128520540893078, -0.023384764790534973, 0.029448674991726875, -0.0034734439104795456, -0.0015804875874891877, 0.029222892597317696, 8.838584471959621e-05, -0.010031257756054401, -0.02667475864291191, -0.0008159468416124582, -0.014329216443002224, -0.027642404660582542, -0.006168739404529333, -0.0013678071554750204, 0.02027217112481594, 0.006858186796307564, 0.03291607275605202, 0.013135787099599838, 0.03328700363636017, 0.022820305079221725, 0.022352609783411026, 0.006035688333213329, -0.03165813162922859, -0.023739567026495934, -0.015603282488882542, 0.001839534263126552, 0.0019705696031451225, 0.005293827038258314, -0.0197883490473032, 0.03699630871415138, -0.016280634328722954, -0.005910700652748346, 0.017611145973205566, 0.017320852726697922, 0.025094270706176758, 0.003814135678112507, -0.015312989242374897, 0.002350572030991316, -0.0006088102236390114, 0.010700545273721218, -0.0021005969028919935, 0.027787551283836365, 0.02678765170276165, 0.0015230335993692279, 0.014748528599739075, 0.007668590173125267, -0.018514283001422882, 0.004037903621792793, -0.012990639545023441, 0.016022594645619392, -0.007700844667851925, 0.0018002237193286419, 0.0013194248313084245, -0.005842159036546946, -0.019836731255054474, 0.014619509689509869, -0.03069048747420311, -0.0578651949763298, -0.005475260317325592, 0.008773318491876125, -0.025320054963231087, 0.016772521659731865, 0.025449074804782867, -0.0183852631598711, 0.036673761904239655, 0.06960596144199371, 0.0017115228110924363, -0.022578394040465355, 0.011394024826586246, -0.006954951677471399, -0.00764439906924963, 0.00836206879466772, 0.00982966460287571, 0.020562466233968735, -0.04541482403874397, 0.009587753564119339, -0.0019423465710133314, 0.014345343224704266, -0.03947993367910385, 0.004342308733612299, -0.015619410201907158, -0.017369234934449196, 0.0167080108076334, -0.016675755381584167, -0.004297958221286535, 0.005168839357793331, -0.012256842106580734, -0.016982177272439003, 0.02001413330435753, 0.015562963671982288, -0.010869883932173252, 0.02001413330435753, 0.0076323035173118114, 0.010184467770159245, -0.008370133116841316, -0.04325374960899353, 0.0024150817189365625, 0.034286901354789734, -0.020772121846675873, 0.035512588918209076, -0.02714245393872261, -0.008305623196065426, 0.028481030836701393, -0.005906668957322836, -0.011248878203332424, 0.013345443643629551, 0.0037738170940428972, 0.012119758874177933, 0.006007465533912182, -0.015022695064544678, -0.015030759386718273, 0.035512588918209076, 0.013111595995724201, 0.0034734439104795456, -0.028948726132512093, -0.031819406896829605, 0.009845792315900326, -0.02525554597377777, -0.05038207024335861, -0.01245037093758583, 0.048285506665706635, -0.042705416679382324, 0.009789345785975456, -0.00426167156547308, 0.0083540054038167, 0.013805074617266655, -0.008813637308776379, 0.02890034392476082, 0.01320836041122675, 0.030996909365057945, 0.05086589604616165, 0.02822299115359783, -0.003334344830363989, -0.0013859504833817482, 0.017207961529493332, 0.0021328518632799387, -0.009668390266597271, -0.007039620541036129, 0.015941958874464035, 0.012047185562551022, -0.0066122435964643955, -0.010748928412795067, -0.03409337252378464, -0.012418116442859173, -0.010748928412795067, 0.04206032305955887, -0.003648829646408558, 0.02182040363550186, -0.026852160692214966, -0.006648530252277851, 0.037254348397254944, -0.015022695064544678, -0.009289395995438099, 0.009434542618691921, -0.047575898468494415, -0.021401090547442436, -0.008757190778851509, 0.010079639963805676, 0.020546337589621544, -0.024820106104016304, 0.004108461085706949, -0.009910302236676216, 0.003560128854587674, 0.0049188644625246525, -0.017836930230259895, -0.020062515512108803, 0.016070978716015816, 0.025029761716723442, 0.008797509595751762, -6.0383343225112185e-05, -0.00426167156547308, 0.018465900793671608, -0.010563462972640991, -0.009716772474348545, 0.0013133770553395152, 0.0055639613419771194, -0.003102513263002038, 0.002308237599208951, -0.032512884587049484, 0.016296761110424995, -0.000743877433706075, 0.015812939032912254, -0.008019361644983292, 0.005822000093758106, -0.02144947275519371, -0.01320836041122675, -0.01144240703433752, 0.008724936284124851, 0.008563661947846413, 0.029093872755765915, 0.016490289941430092, 0.00848302524536848, -0.007954851724207401, -0.007958883419632912, -0.054930005222558975, -0.01920776255428791, 0.004725335165858269, -0.04264090955257416, 0.008982975035905838, -0.016199996694922447, 0.0025541807990521193, -0.021530110388994217, -0.029416421428322792, 0.0147001463919878, -0.018449772149324417, -0.012885811738669872, 0.022481629624962807, 0.003455300582572818, 0.0016661644913256168, -0.02132045477628708, 0.01066829077899456, -0.029319657012820244, 0.0021288199350237846, -0.023513784632086754, 0.002610626630485058, -0.03190004453063011, -0.010095767676830292, -0.019030360504984856, -0.03477072715759277, 0.0298679880797863, 0.037512388080358505, 0.04138296842575073, 0.031561367213726044, -0.023739567026495934, 0.0013960300711914897, 0.016901539638638496, -0.028352010995149612, -0.008902338333427906, -0.013547035865485668, -0.01788531243801117, -0.03554484248161316, 0.020546337589621544, 0.007761322893202305, -0.03670601546764374, -0.0024191136471927166, 0.012724537402391434, 0.002955350326374173, -0.01214394997805357, -0.012127822265028954, -0.030513085424900055, -0.014748528599739075, 0.0129745127633214, -0.00949098914861679, 0.026142554357647896, 0.012869684025645256, 0.012224587611854076, -0.04028630629181862, -0.027158580720424652, 0.009668390266597271, -0.0207237396389246, -0.0024654800072312355, -0.033964354544878006, -0.022320354357361794, -0.09005553275346756, -0.024320155382156372, -0.006793677341192961, 0.033480532467365265, -0.0009444622555747628, -0.02262677624821663, 0.03115818277001381, -0.0022638870868831873, -0.04476972669363022, 0.0012498752912506461, -0.010595717467367649, -0.008870082907378674, 0.010611845180392265, -0.0008663450716994703, -0.0076968129724264145, -0.0007741163135506213, -0.008547534234821796, -0.02182040363550186, 0.0025320055428892374, 0.0053381770849227905, -0.017869185656309128, 0.012264905497431755, 0.019110996276140213, -0.0052978587336838245, -0.02299770712852478, 0.03838326781988144, -0.004898705054074526, -0.0045197103172540665, -0.004447137005627155, -0.028980979695916176, 0.0214656013995409, -0.017578892409801483, -0.017595019191503525, 0.0038826772943139076, 0.015780683606863022, 0.0008350981515832245, -0.008636235259473324, 0.0025521647185087204, 0.0214656013995409, -0.007660526316612959, 0.0067130401730537415, 0.02204618789255619, -0.02404598891735077, 0.024368537589907646, 0.012789047323167324, 0.00895072054117918, 0.0035621447023004293, -0.030416321009397507, 0.007527475245296955, 0.006301790941506624, -0.005354304797947407, 0.0038363109342753887, -0.016498355194926262, -0.026739269495010376, -0.004076206590980291, 0.016433844342827797, 0.015385562554001808, -0.014780784025788307, 0.009886111132800579, 0.0007912517176009715, 0.014071177691221237, 0.012127822265028954, 0.01848202757537365, -0.0034411889500916004, -0.03377082571387291, 0.018514283001422882, 0.03731885924935341, 0.02822299115359783, 0.017320852726697922, 0.018191734328866005, 0.015804875642061234, -0.0059510194696486, -0.0049430555664002895, 0.0147001463919878, 0.02096565067768097, -0.014796911738812923, 0.003096465254202485, 0.011281132698059082, 0.024465302005410194, -0.0073823281563818455, -0.0343514122068882, 0.024368537589907646, 0.006479192525148392, 0.012022994458675385, -0.012466498650610447, -0.005467196460813284, 0.018062714487314224, -0.0151678416877985, -0.021126925945281982, 0.016417717561125755, 0.018175605684518814, 0.008099998347461224, 0.034286901354789734, 0.014845293946564198, -0.001274066511541605, 0.04041532427072525, -0.014095368795096874, 0.005309954285621643, -0.015071077272295952, 0.010716672986745834, 0.008603980764746666, -0.016216125339269638, -0.011095667257905006, -0.00889427401125431, -0.0037274507340043783, -0.019110996276140213, -0.008144348859786987, 0.016853157430887222, -0.00417700270190835, -0.012877748347818851, -0.01428889762610197, 0.002050198847427964, -0.015950022265315056, 0.007801641244441271, -0.0034714280627667904, -0.006176803261041641, 0.01754663698375225, -0.012135886587202549, -0.003729466814547777, 0.0009137193555943668, -0.0167080108076334, 0.016216125339269638, -0.014853357337415218, -0.039512187242507935, 0.011006967164576054, -0.017724039033055305, -0.0008860003435984254, 0.002352587878704071, 0.01778854802250862, 0.012958385050296783, -0.020820504054427147, 0.009394224733114243, -0.009692581370472908, 0.02003026008605957, 0.008402387611567974, 0.01611129567027092, 0.022110698744654655, -0.022094570100307465, 0.03793169930577278, -0.017949823290109634, 0.012055248953402042, 0.016643501818180084, -0.0029714778065681458, -0.0017629290232434869, -0.009087802842259407, 0.0029472867026925087, -0.009926429018378258, -0.02394922450184822, 0.01126500591635704, -0.010861819609999657, 0.010821501724421978, -0.014022794552147388, 0.0421893410384655, -0.02217520773410797, -0.008603980764746666, -0.04038307070732117, -0.005523642525076866, 0.024449175223708153, -0.012353606522083282, -0.018643300980329514, -0.010998902842402458, 0.011394024826586246, 0.031077545136213303, 0.004225384909659624, 0.018659429624676704, -0.0028908406384289265, -0.009402288123965263, -0.012248778715729713, -0.013821202330291271, 0.018449772149324417, 0.01669188402593136, -0.02582000568509102, -0.00864429958164692, -0.024916870519518852, 0.005838127341121435, -0.0098941745236516, 0.012627772986888885, -0.01398247666656971, 0.009031357243657112, 0.004301990382373333, -0.009224886074662209, 0.00041956501081585884, -0.019885113462805748, 0.008878147229552269, -0.0062977587804198265, -0.0002847498399205506, 0.006200994364917278, 0.013708310201764107, -0.005797808989882469, -0.0030863857828080654, 0.02596515230834484, 0.015369434840977192, -0.00031372878584079444, 0.0029271275270730257, 0.007023492828011513, 0.014079241082072258, 0.00586635060608387, 0.03151298686861992, -0.031593624502420425, -0.02680377848446369, -0.005205126013606787, -0.009023293852806091, 0.008426578715443611, 0.010515080764889717, 0.0041890982538461685, -0.013184169307351112, -0.015417817048728466, 0.03175489604473114, -0.00393912335857749, -0.010224786587059498, -0.010611845180392265, 0.006854155100882053, 0.006979142781347036, 0.02783593349158764, 0.019014231860637665, -0.026594121009111404, -0.030158283188939095, -0.0147001463919878, -0.0021328518632799387, -0.013651864603161812, 0.04028630629181862, 0.019885113462805748, 0.016675755381584167, -0.009482924826443195, 0.025449074804782867, 0.02535231038928032, -0.00509626604616642, -0.05215608701109886, -0.005688948556780815, 0.02206231653690338, -0.005946987308561802, 0.003334344830363989, 0.02499750629067421, 0.0036629410460591316, -0.013740564696490765, 0.00852334313094616, 0.029448674991726875, -0.004572124686092138, 0.03125494718551636, 0.002858585910871625, 0.0038302631583064795, -0.023046089336276054, -0.007975011132657528, -0.010184467770159245, -0.001225684187375009, 0.010055448859930038, -0.03328700363636017, -0.004455200862139463, 0.006741262972354889, 0.010676354169845581, -0.019998004660010338, -0.015038822777569294, -0.016046786680817604, 0.01600646786391735, 0.01166819129139185, 0.0029714778065681458, 0.004971278365701437, -0.02040119096636772, 0.007466997019946575, 0.0214656013995409, -0.028642304241657257, 0.014135686680674553, 0.021852659061551094, -0.028997108340263367, 0.017917567864060402, -0.003171054646372795, 0.008853955194354057, 0.019965751096606255, -0.0028222992550581694, 0.002856569830328226, -0.012498753145337105, -0.025900643318891525, -0.017562763765454292, 0.004898705054074526, 0.01220845989882946, 0.015538772568106651, -0.01391796674579382, -0.03660925105214119, -0.0016802760073915124, 0.023626675829291344, -0.007184767164289951, -0.008926529437303543, -0.015611345879733562, -0.00464872969314456, 0.017933694645762444, 0.02227197214961052, 0.00503175612539053, -0.00888621062040329, 0.00841851532459259, 0.0011944372672587633, -0.005547833628952503, -0.0009122074116021395, 0.015579091385006905, 0.00019919888291042298, 0.013168041594326496, -0.0007247261237353086, -0.01013608556240797, -0.009289395995438099, -0.003951218910515308, 0.004745494574308395, 0.008220953866839409, 0.0034673961345106363, -0.013603482395410538, -0.0046930802054703236, -0.014264706522226334, -0.0003802544088102877, 0.0009923405013978481, -0.007063811644911766, 0.015425880439579487, 0.0020542305428534746, -0.0006587044917978346, 0.010111894458532333, -0.02677152305841446, -0.008757190778851509, -0.029109999537467957, 0.014538872987031937, 0.011111794970929623, 0.00580587238073349, -0.008466897532343864, -0.034899745136499405, 0.03031955659389496, -0.004487455822527409, 0.04747913405299187, -0.0005931868217885494, -0.031803280115127563, -0.004624538589268923, -0.02440079301595688, 0.013329315930604935, 0.003951218910515308, 0.0031569432467222214, -0.051252953708171844, 0.03202906250953674, 0.00014338287292048335, -0.0015290813753381371, -0.011918165720999241, 0.009878046810626984, 0.004451169166713953, 0.0026287701912224293, -0.0162403155118227, 0.0029392230790108442, 0.02572324126958847, 0.0343514122068882, 0.0058179679326713085, -0.007523443084210157, -0.012281033210456371, 0.001958474051207304, -0.012789047323167324, 0.036447979509830475, 0.030851760879158974, -0.0057534584775567055, 0.007132353261113167, -0.00029104959685355425, -0.002854553982615471, -0.022352609783411026, -0.00949098914861679, 0.04222159460186958, -0.01428889762610197, 0.010724736377596855, -0.025336183607578278, -0.0022921101190149784, -0.005140616558492184, 0.011619809083640575, 0.0032617715187370777, 0.01589357666671276, -0.01060378085821867, 0.0009404303855262697, 0.0002789540449157357, -0.029448674991726875, -0.003310153726488352, 0.004934991709887981, -0.008305623196065426, 0.0038121198303997517, -0.006459033116698265, 0.010765055194497108, -0.02477172203361988, 0.005205126013606787, -0.01369218248873949, 0.016675755381584167, -0.007483124732971191, -0.020449573174118996, -0.00787824671715498, 0.006870282348245382, -0.01965932920575142, -0.013538972474634647, -0.010861819609999657, -0.0010180436074733734, 0.004745494574308395, -0.003245644038543105, -0.007862119004130363, -0.018304625526070595, -0.019110996276140213, -0.005035788286477327, 0.011289197020232677, 0.021126925945281982, 0.014167942106723785, -0.013313188217580318, -0.021594621241092682, 4.7185312723740935e-05, -0.038931600749492645, -0.010055448859930038, 0.01321642380207777, -0.0003469916118774563, -0.010184467770159245, 0.05015628784894943, -0.003552064998075366, 0.025626476854085922, 0.019159380346536636, 0.008507216349244118, -0.004801940638571978, -0.03683503717184067, -0.004902736749500036, 0.008208858780562878, 0.010998902842402458, -0.004346340894699097, -0.02277192287147045, 0.01672413758933544, -0.016079042106866837, 0.033964354544878006, -0.019159380346536636, 0.017740165814757347, -0.016772521659731865, 0.005491388030350208, 0.003531905822455883, -0.009281332604587078, -0.011482725851237774, 0.01704668626189232, -0.01767565682530403, 0.015369434840977192, 0.019820604473352432, 0.001538153039291501, -0.003935091197490692, 0.023320253938436508, 0.01920776255428791, 0.007906469516456127, 0.04180228337645531, -0.03281930834054947, -0.0006743278936482966, -0.014740465208888054, -0.012103631161153316, -0.008862019516527653, -0.0395766980946064, -0.027287600561976433, -0.006749326828867197, 0.0018103033071383834, -0.005035788286477327, 0.008253209292888641, 0.01919163390994072, -0.02691666968166828, 0.005692980717867613, 0.03757689893245697, 0.01166819129139185, -0.02809397131204605, 0.006176803261041641, -0.017272470518946648, 0.012264905497431755, 0.016433844342827797, -0.006007465533912182, -0.01321642380207777, -0.005011596716940403, 0.03209357336163521, 0.009990938939154148, 0.023288000375032425, -0.017127323895692825, 0.011781083419919014, 0.008603980764746666, 0.010160276666283607, 0.02452981099486351, -0.012305224314332008, -0.002021975815296173, -0.009289395995438099, 0.021481728181242943, 0.017111197113990784, 0.003906868398189545, -0.000494154344778508, 0.02820686437189579, -0.013740564696490765, -0.008229018189013004, -0.018804576247930527, -0.0005851230816915631, -0.026110298931598663, -0.001586535363458097, 0.003414981998503208, -0.0049188644625246525, 0.008172571659088135, 0.017820803448557854, 0.0021772021427750587, 0.028868088498711586, 0.008805572986602783, -0.006971078924834728, 0.03460945188999176, 0.0025541807990521193, 0.013538972474634647, -0.015853257849812508, 0.00959581695497036, 0.014264706522226334, -0.010039321146905422, 0.006063911132514477, -0.008991038426756859, -0.0014927947195246816, 0.011934293434023857, -0.018449772149324417, -0.022465500980615616, -0.038351014256477356, -0.0005286771338433027, 0.015014631673693657, -0.010273168794810772, 0.016425780951976776, 0.03031955659389496, 0.021352708339691162, -0.008249177597463131, 0.004108461085706949, -0.0022779987193644047, 0.006511447485536337, 0.010103831067681313, -0.0067614223808050156, -0.01824011653661728, 0.013143850490450859, 0.0014716273872181773, -0.011813337914645672, 0.01089407503604889, 0.01428889762610197, -0.009450670331716537, 0.0028686656150966883, -0.0005604279576800764, 0.003554081078618765, -0.002136883558705449, -0.009918365627527237, 0.010740864090621471, -0.010039321146905422, 0.016530608758330345, 0.005043851677328348, -0.006354204844683409, 0.007475060876458883, 0.008402387611567974, 0.02370731346309185, 0.0002169642539229244, 0.007612144108861685, -0.0019060599151998758, -0.007894373498857021, -0.010410252027213573, 0.004249576013535261, -0.00834594201296568, -0.01682090386748314, 0.0037798648700118065, 0.012531008571386337, 0.039770226925611496, -0.014401789754629135, 0.01492593064904213, -0.021868785843253136, 0.014256642200052738, -0.006797709036618471, 0.0006461049197241664, 0.006059879437088966, 0.017707910388708115, 0.0014464283594861627, 0.0037637376226484776, -0.007805672939866781, 0.006156643852591515, 0.007128321100026369, -0.03918964043259621, 0.03115818277001381, 0.015369434840977192, 0.03389984369277954, -0.0008129229536280036, 0.008684617467224598, 0.01861104741692543, 0.014748528599739075, -0.010797310620546341, 0.0030662263743579388, 0.001921179355122149, 0.02156236581504345, -0.0052978587336838245, 0.018336880952119827, 0.0021731704473495483, 0.014240515418350697, -0.010611845180392265, -0.011006967164576054, -0.026739269495010376, -0.023997606709599495, -0.007003333885222673, 0.021772021427750587, -0.009168440476059914, 0.01943354494869709, -0.014659828506410122, 0.01836913637816906, -0.009555498138070107, -0.010240914300084114, 0.029303528368473053, 0.02359442040324211, 0.006717071868479252, -0.011853656731545925, 0.010950520634651184, -0.007148480508476496, 0.003310153726488352, -0.012877748347818851, -0.020046386867761612, -0.02083663083612919, -0.002421129494905472, 0.01083762850612402, 0.015796812251210213, -0.008305623196065426, 0.006414682604372501, -0.0012801142875105143, 0.0037173712626099586, -0.0038564701098948717, -0.006350173149257898, 0.010853756219148636, -0.016853157430887222, -0.02370731346309185, -0.001067433855496347, -0.023965351283550262, -0.014659828506410122, -0.014143751002848148, 0.017095068469643593, -0.0008174587856046855, -0.00011012006871169433, -0.013264806009829044, 0.01338576152920723, -0.022788049653172493, -0.004810004029422998, 0.004721303470432758, 0.02249775640666485, 0.023433146998286247, 0.010079639963805676, 0.0061324527487158775, -0.009571625851094723, -0.010474761947989464, 0.00687834620475769, -0.01167625468224287, -0.00036689889384433627, -0.0008653370896354318, 0.014022794552147388, -0.024320155382156372, -0.0016712043434381485, -0.02203006111085415, -0.00919263157993555, -0.004592284094542265, -0.0005342208896763623, -0.0009464781614951789, 0.023497655987739563, -0.0014857389032840729, -0.007309754844754934, -0.00235460395924747, 0.011764955706894398, -0.005451069213449955, 0.004785812925547361, 0.023900842294096947, 0.008474960923194885, 0.0183852631598711, 0.007273468188941479, -0.0034512686543166637, 0.018159478902816772, -0.00029760136385448277, -0.008797509595751762, -0.008918465115129948, -0.0005160775617696345, -0.004757590126246214, -0.017917567864060402, 0.020901141688227654, -0.02406211569905281, -0.013958285562694073, 0.003914932254701853, 0.007636335212737322, -0.014684019610285759, -0.0073420098051428795, -0.00213083578273654, -0.002140915486961603, -0.006213089916855097, -0.0038060720544308424, 0.018901340663433075, 0.008281432092189789, -0.026981180533766747, -0.006059879437088966, -0.022900940850377083, -0.006172771565616131, 0.014506617560982704, 0.0021993773989379406, 0.015417817048728466, -0.0038040559738874435, -0.00028701775590889156, -0.003965330310165882, 0.014434044249355793, -0.018465900793671608, 0.005201094318181276, 0.01196654886007309, 0.017127323895692825, 0.01647416315972805, 0.014425980858504772, 0.00293519115075469, -0.0025622444227337837, 0.02512652613222599, -0.01956256479024887, -0.02902936190366745, -0.0024836233351379633, 0.004045967478305101, 0.00657595694065094, -0.032399993389844894, -0.0035722244065254927, -0.016288697719573975, -0.006059879437088966, -0.005374464206397533, -0.019143251702189445, 0.023142853751778603, -0.003747610142454505, 0.023029960691928864, 0.0029170478228479624, 0.012482626363635063, -0.010813437402248383, 0.014659828506410122, 0.0019383147591724992, -0.00888621062040329, 0.009547434747219086, 0.01559521909803152, 0.03148072957992554, -0.0027739168144762516, 0.008507216349244118, 0.006757390685379505, 0.00625340873375535, -0.018433645367622375, 0.0017216025153174996, -0.0031771024223417044, -0.02012702450156212, -0.0027033593505620956, -0.009370033629238605, 0.02807784453034401, 0.003961298614740372, -0.0005679876776412129, 0.0025320055428892374, 0.0008618091815151274, 0.007309754844754934, -0.00779760954901576, 0.004370531998574734, -0.009732900187373161, 0.00408830214291811, -0.0032859626226127148, -0.016264507547020912, 0.034899745136499405, -0.002207441022619605, -0.008136285468935966, -0.01754663698375225, -0.011410152539610863, 0.005217221565544605, 0.01137789711356163, 0.016401590779423714, 0.007059779949486256, 0.0015371451154351234, -0.0017306741792708635, 0.02203006111085415, 0.00918456818908453, 0.00018848926993086934, -0.008245144970715046, 0.011708510108292103, -0.010555398650467396, -0.017482127994298935, 0.009878046810626984, -0.049349915236234665, -0.017143450677394867, 0.008253209292888641, 0.005519610829651356, -0.017836930230259895, -0.005301890429109335, 0.007414583116769791, -0.007854055613279343, 0.015030759386718273, 0.011789146810770035, 0.006523543037474155, 0.01399054005742073, -0.0037838967982679605, -0.004495519213378429, -0.012627772986888885, -0.0025098302867263556, 0.00788227841258049, 0.022933196276426315, 0.03338376805186272, -0.0014978344552218914, 0.00418103439733386, -0.008370133116841316, -0.015675855800509453, 0.01743374578654766, 0.007289595436304808, 0.018691685050725937, 0.02546520158648491, -0.006805772893130779, 0.02382020466029644, -0.03249675780534744, -0.016312889754772186, 0.0015331131871789694, 0.008386260829865932, -0.0023021898232400417, 0.02157849259674549, 0.002286062343046069, 0.0016540689393877983, -0.0067775496281683445, -0.005826031789183617, -3.216035111108795e-05, 0.007676653563976288, -0.0012639868073165417, -0.005019660573452711, 0.02253001183271408, 0.028481030836701393, 0.019498055800795555, -0.013184169307351112, 0.006164707709103823, 0.0016651564510539174, -0.022094570100307465, 0.008837828412652016, 0.019014231860637665, -0.003920979797840118, -0.014635637402534485, 0.006515479180961847, 0.014684019610285759, -0.01883683167397976, -0.001441388507373631, 0.0020381032954901457, 0.01375669240951538, -0.00363068631850183, -0.002328396774828434, -0.004362468142062426, 0.02273966744542122, -0.02027217112481594, -0.006374364253133535, -0.010692481882870197, -0.005838127341121435, -0.000798811437562108, 0.022304227575659752, -0.006684817373752594, -0.01647416315972805, 0.0008708809036761522, -0.022820305079221725, -0.020239917561411858, 0.009563562460243702, -0.012135886587202549, 0.003219437086954713, 0.0024352408945560455, 0.018901340663433075, 0.012651964090764523, -0.014248578809201717, 0.0025561966467648745, -0.012813238427042961, 0.0047938767820596695, 0.008140317164361477, -0.0006249376456253231, -0.014530808664858341, 0.023868586868047714, 0.012587454169988632, -0.012651964090764523, 0.006309854332357645, 0.005269635934382677, -0.010547335259616375, 0.02369118481874466, 0.015506518073379993, 0.007362168747931719, -0.004052015021443367, -0.0059429556131362915, -0.001751841395162046, 0.006700944621115923, -0.0046285707503557205, 0.009821601212024689, 0.00043342451681382954, -0.0004971782327629626, -0.0015129538951441646, -0.0011712542036548257, 0.01874006725847721, -0.010507016442716122, 0.005039819981902838, 0.0010195556096732616, 0.0009973803535103798, 0.0025783719029277563, 0.028513284400105476, -0.01415181439369917, 0.021481728181242943, -0.0060921343974769115, 0.006745295133441687, -0.010644099675118923, -0.014546936377882957, 0.017869185656309128, -0.010692481882870197, 0.011764955706894398, -0.0049591828137636185, -0.005059979390352964, 0.007914532907307148, -0.021046288311481476, 0.003384743118658662, 0.000943958293646574, 0.008765255101025105, -0.032867688685655594, 0.012426179833710194, 0.011716573499143124, -0.012232651002705097, -0.0040540313348174095, -0.005080138333141804, 0.0012377797393128276, -0.00912812165915966, -0.0029876052867621183, 0.00919263157993555, -0.007140416651964188, -0.021401090547442436, 0.022223589941859245, 0.0009580697515048087, 0.004362468142062426, -0.008942656219005585, -0.014369534328579903, 0.01598227769136429, -0.009265204891562462, -0.013538972474634647, -0.022707412019371986, 0.014232451096177101, -0.01066829077899456, -0.021191434934735298, -0.020659230649471283, 0.014780784025788307, -0.020417317748069763, 0.00805564783513546, -0.031142055988311768, -0.007688749115914106, -0.019240016117691994, -0.01103115826845169, 0.0031105768866837025, -0.01089407503604889, -0.019223889335989952, 0.0009973803535103798, -0.0020018164068460464, -0.008378196507692337, 0.010845692828297615, -0.012369734235107899, 0.02320736274123192, 0.011635935865342617, -0.004511646926403046, -0.006261472124606371, 0.036673761904239655, -0.0012498752912506461, 0.015691982582211494, 0.020659230649471283, 0.007039620541036129, -0.0051486799493432045, -0.010055448859930038, -0.013288997113704681, -0.018336880952119827, -0.00929745938628912, 0.013764755800366402, 0.0048341951332986355, -0.019868986681103706, 0.01160368137061596, 0.01392603013664484, -0.007253308780491352, 0.01777242124080658, -0.006394523661583662, -0.009321650490164757, 0.0065477341413497925, 0.022723540663719177, -0.03367406129837036, 0.017272470518946648, 0.010869883932173252, 0.02012702450156212, -0.00030465712188743055, 0.00859591644257307, 0.0012972496915608644, -0.0119020389392972, -0.0035863358061760664, 0.014111495576798916, -0.011490789242088795, 0.014893676154315472, 0.011877847835421562, 0.006285663228482008, -0.006652562413364649, 0.008273368701338768, 0.019014231860637665, 0.012240714393556118, 0.010934392921626568, 0.02938416600227356, 0.012603581883013248, 0.005987306125462055, -0.020062515512108803, -0.014192133210599422, 0.012587454169988632, -0.00040898137376643717, -0.015675855800509453, -0.0035943996626883745, 0.009289395995438099, -0.013837330043315887, -0.010216723196208477, 0.030884016305208206, -0.009781282395124435, 0.012055248953402042, 0.00371535518206656, -0.027061816304922104, -0.008684617467224598, 0.021594621241092682, -0.01020059548318386, 0.010337678715586662, 0.015716174617409706, 0.006334045901894569, 0.014974312856793404, 0.006999301724135876, -0.016151614487171173, 0.003941139206290245, 0.026142554357647896, -0.0007650446495972574, -0.0030621946789324284, -0.001791152055375278, 0.010692481882870197, -0.007047684397548437, 0.023675058037042618, 0.007858087308704853, -0.02452981099486351, -0.0043302131816744804, -0.000673319969791919, 0.01707894168794155, 0.01953030936419964, 0.008966847322881222, -0.018788449466228485, -0.015498454682528973, 0.0109666483476758, -0.01197461225092411, -0.0014161893632262945, -0.00757988914847374, 0.0010296351974830031, -0.00787824671715498, -0.011773019097745419, 0.017385363578796387, 0.014982376247644424, -0.01103115826845169, 0.019885113462805748, 0.012813238427042961, -0.013127722777426243, -0.020659230649471283, 0.019643202424049377, 0.018465900793671608, 0.003531905822455883, 0.012821301817893982, 0.009611944667994976, 0.005051915533840656, 0.019110996276140213, 0.009136185981333256, 0.015272670425474644, 0.007563761901110411, 0.011119858361780643, 0.0004001616907771677, -0.005354304797947407, -0.004435041453689337, 0.01462757308036089, -0.006676753517240286, 0.03131945803761482, -0.00619293050840497, -0.030771125108003616, -0.01694992184638977, -0.00016253419744316489, 0.014869485050439835, 0.01589357666671276, -0.0030440513510257006, -0.012942257337272167, -0.008910401724278927, 0.014764656312763691, 0.017465999349951744, -0.010869883932173252, 0.03059372305870056, 0.00912812165915966, -0.01575649343430996, 0.030545340850949287, -0.018691685050725937, 0.0019947607070207596, 0.011119858361780643, 0.025207163766026497, -0.007567793596535921, -0.007358137052506208, -0.006213089916855097, -0.01788531243801117, 0.005366400349885225, -0.0039693620055913925, 0.003197261830791831, 0.008757190778851509, 0.0030440513510257006, 0.021126925945281982, -0.01624837890267372, -0.0031549271661788225, -0.023868586868047714, 0.0030138122383505106, -0.004297958221286535, -0.0015915750991553068, 0.003697211854159832, -0.00040545352385379374, 0.0003575752198230475, 0.01499850396066904, 0.0317387692630291, -0.0031851662788540125, 0.007870182394981384, 0.013434143736958504, 0.010466697625815868, -0.009039420634508133, -0.0007292619557119906, -0.01788531243801117, -0.016853157430887222, 0.013288997113704681, -0.009410351514816284, -0.010168340988457203, 0.002021975815296173, -0.0033464403823018074, 0.03519003838300705, 0.007128321100026369, 0.016417717561125755, -0.015208160504698753, 0.0019070678390562534, 0.01220039650797844, 0.01824011653661728, 0.021272072568535805, 0.018078841269016266, -0.0014796911273151636, -0.012232651002705097, 0.0056042796932160854, 0.014780784025788307, 0.00041754907579161227, 0.027110198512673378, 0.012022994458675385, -0.0006486248457804322, 0.01754663698375225, -0.013538972474634647, 0.013853456825017929, -0.005072074942290783, 0.024142753332853317, -0.0022699348628520966, -0.008974911645054817, -0.018433645367622375, -0.014127623289823532, 0.012006866745650768, -0.02204618789255619, 0.013861521147191525, -0.0026328018866479397, -0.015240415930747986, -0.014966249465942383, 0.01274872850626707, 0.01647416315972805, 0.013095468282699585, -0.0053381770849227905, 0.027352111414074898, -0.010676354169845581, 0.006652562413364649, -0.016804775223135948, 0.0018092953832820058, -0.009410351514816284, -0.012361669912934303, -0.00402782391756773, -0.011337579227983952, 0.0030682424549013376, -0.00464872969314456, -0.014530808664858341, 0.002407018095254898, 0.012369734235107899, 0.004539869725704193, -0.005846191197633743, 0.0010966648114845157, 0.0031992776785045862, 0.0006884394097141922, -0.006850123405456543, 0.0098941745236516, -0.01836913637816906, 0.006047783885151148, -0.0035379535984247923, 0.024013733491301537, 0.0005095258238725364, 0.0030117963906377554, -0.005733299069106579, 0.011289197020232677, -0.007894373498857021, 0.023255744948983192, -0.01646609976887703, -0.03651248663663864, -0.012087504379451275, 0.010265105403959751, 0.003648829646408558, -0.02073986642062664, -0.015143650583922863, 0.0004795388667844236, -0.016659628599882126, 0.006979142781347036, -0.005551865790039301, 0.004636634141206741, 0.004705175757408142, -0.006434842012822628, -0.012813238427042961, 0.0020340713672339916, -0.011797210201621056, -0.006229217629879713, -0.009982875548303127, 0.009474861435592175, -0.016643501818180084, -0.006479192525148392, -0.008845891803503036, 0.004156843293458223, 0.006180834956467152, 0.014425980858504772, -0.015264607034623623, -0.01019253209233284, -0.012111695483326912, 0.009442606940865517, 0.01191010233014822, -2.65220514847897e-05, -0.0013637752272188663, 0.0072412132285535336, 0.023755695670843124, -0.010321551002562046, -0.009216822683811188, 0.006854155100882053, -0.026755396276712418, 0.023610549047589302, 0.012587454169988632, -0.01529686152935028, -0.012539071962237358, -0.01980447582900524, 0.01545813586562872, 0.011789146810770035, -0.011361770331859589, 0.0004737430717796087, 0.012861620634794235, 0.0038564701098948717, -0.012587454169988632, 0.011394024826586246, 0.02546520158648491, -0.0011803258676081896, 0.038351014256477356, -0.01657899096608162, 0.0021328518632799387, -0.0045197103172540665, -0.009458733722567558, -0.018578791990876198, -0.03493199869990349, 0.00305009912699461, 0.020772121846675873, 0.0061324527487158775, -0.022223589941859245, -1.1843576430692337e-05, -0.009805473499000072, -0.0009001118596643209, -0.003719387110322714, 0.0038806614466011524, -0.006027624476701021, -0.011297260411083698, -0.003699227934703231, -0.0023727472871541977, -0.015716174617409706, 0.003991537261754274, -0.004495519213378429, -0.004257639870047569, -4.8539764975430444e-05, -0.01920776255428791, -0.0013547035632655025, -0.026932798326015472, -0.003795992350205779, 0.00836206879466772, 0.005475260317325592, -0.011877847835421562, -0.012031057849526405, 0.031335584819316864, 0.0005644598277285695, -0.006414682604372501, -0.012047185562551022, 0.0030077644623816013, -0.016143551096320152, -0.006523543037474155, -0.029529312625527382, -0.002880761167034507, -0.03386759012937546, 0.021546239033341408, -0.010773119516670704, -0.017578892409801483, 0.006882377900183201, 0.006676753517240286, 0.0012448355555534363, -0.002447336446493864, -0.005015628878027201, -0.0049470872618258, -0.002564260270446539, 0.004277799278497696, 0.0010946488473564386, 0.011192431673407555, -0.0035722244065254927, 0.008466897532343864, -0.005507515277713537, -0.011224687099456787, 0.00038302631583064795, 0.011168240569531918, -6.43521998426877e-05, 0.026997307315468788, -0.03198068216443062, 0.023787949234247208, -0.013361570425331593, -0.012668091803789139, -0.028706815093755722, -0.015546836890280247, -0.002380810910835862, 0.006680785212665796, -0.01368411909788847, 0.013901839032769203, 0.007825832813978195, -0.010595717467367649, 0.0013547035632655025, -0.02273966744542122, 0.0009847808396443725, 0.026400592178106308, -0.0003230524598620832, -0.004757590126246214, -0.0003366599848959595, 0.027174709364771843, -0.0006289695156738162, 0.022094570100307465, 0.016022594645619392, 0.027077944949269295, 0.019240016117691994, -0.019820604473352432, 0.0035480333026498556, -0.010466697625815868, 0.019401291385293007, -0.0003749626048374921, -0.017756294459104538, -0.0006970071117393672, 0.034673962742090225, 0.012127822265028954, -0.019352909177541733, 0.011039221659302711, -0.02096565067768097, -0.016320953145623207, -0.027094071730971336, -0.005176903214305639, 0.001126903691329062, -0.0020723738707602024, 0.022965451702475548, -0.011869783513247967, 0.007854055613279343, -0.011652063578367233, 0.004765653517097235, -0.031206564977765083, -0.008684617467224598, 0.027932697907090187, 0.03035181201994419, 0.01980447582900524, 0.02761014923453331, 0.0019413386471569538, -0.008466897532343864, -0.013595418073236942, -0.00848302524536848, 0.019046487286686897, 0.014095368795096874, 0.01446629874408245, -0.008515279740095139, -0.0018254227470606565, -0.013579290360212326, 0.004362468142062426, 0.0025078144390136003, 0.011127922683954239, -0.002495718887075782, 0.007483124732971191, 0.01492593064904213, -0.0041487799026072025, 0.014280833303928375, 0.016998304054141045, 0.002328396774828434, 0.005245444364845753, 0.010756991803646088, -0.02003026008605957, 0.005088202189654112, -0.0006798717076890171, -0.012393925338983536, -0.002066326094791293, -0.03190004453063011, -0.012014931067824364, 0.020465699955821037, -0.0016077025793492794, 0.013313188217580318, 0.01120049599558115, -0.006096166092902422, -0.021772021427750587, 0.01174076460301876, 0.0017095069633796811, 0.0015038822311908007, -6.665162072749808e-05, -0.001080537447705865, 0.006362268701195717, 0.012732600793242455, -0.011652063578367233, 0.0022396959830075502, 0.005551865790039301, -0.0017417618073523045, -0.007116225548088551, 0.0038484064862132072, 0.012942257337272167, -0.01066829077899456, 0.00864429958164692, -0.00888621062040329, -0.005838127341121435, 0.004906768910586834, -0.006350173149257898, 0.016740266233682632, -0.020772121846675873, -0.005890541709959507, -0.021901041269302368, -0.016756393015384674, 0.01042637974023819, 0.022723540663719177, 0.016675755381584167, 0.02003026008605957, -0.020804377272725105, 0.03010990098118782, 0.005265603773295879, -3.742066473932937e-05, 0.024691086262464523, 0.006051815580576658, 0.0006919672596268356, 0.023610549047589302, 0.0037334985099732876, 0.00053018907783553, -0.0016712043434381485, -0.03409337252378464, 0.0028263309504836798, 0.004031856078654528, -0.01824011653661728, 0.007011397276073694, -0.0017578891711309552, 0.0007479093037545681, 0.008313686586916447, 0.024965252727270126, -0.003263787366449833, 0.01943354494869709, 0.0039048525504767895, 0.015716174617409706, -0.0006188898696564138, 0.005011596716940403, -0.012490689754486084, 0.024094371125102043, 0.007317818701267242, 0.007313786540180445, -0.02028829976916313, 0.0013133770553395152, -0.0022699348628520966, -0.004632602445781231, -0.005580088589340448, 0.003144847694784403, 0.005128520540893078, 0.00020108881290070713, 0.020417317748069763, -0.021497856825590134, 0.01220845989882946, -0.0176434013992548, 0.008700745180249214, 0.012934193946421146, -0.0036145588383078575, 0.004555997438728809, 0.00798710621893406, -0.006967047229409218, 0.002638849662616849, -0.021046288311481476, -0.020320553332567215, 0.0038161517586559057, -0.04941442608833313, 0.00995868444442749, 0.011329514905810356, 0.007716972380876541, -0.026481229811906815, 0.01013608556240797, 0.012700346298515797, -0.0023687153588980436, -0.0009933485416695476, -0.01073280069977045, 0.013176104985177517, -0.011998803354799747, -0.01338576152920723, -0.0026267541106790304, -0.021513983607292175, 0.0032617715187370777, 0.009926429018378258, 0.005672821309417486, -0.00852334313094616, 0.012490689754486084, -0.010474761947989464, -0.02061084844172001, -0.013329315930604935, -0.01753051020205021, -0.007245244923979044, -0.017127323895692825, 0.009216822683811188, -0.004810004029422998, -0.021594621241092682, -0.011700445786118507, -0.013700246810913086, -0.009789345785975456, -0.005144648253917694, 0.015442008152604103, 0.011361770331859589, 0.014885611832141876, 0.0027275504544377327, -0.005144648253917694, -0.01883683167397976, 0.019046487286686897, 0.0009867966873571277, -0.005011596716940403, -0.009023293852806091, -0.0031609751749783754, -0.020046386867761612, -0.004132652189582586, 0.017740165814757347, -0.0023122692946344614, 0.009023293852806091, -0.0025138622149825096, -0.012337478809058666, -0.01315191388130188, -0.023191235959529877, 0.004922896157950163, 0.005023692734539509, -0.013071277178823948, 0.016643501818180084, -0.01859491877257824, 0.024223390966653824, 0.005168839357793331, 0.004459232557564974, -0.007753259036689997, -0.013288997113704681, 0.006946887820959091, 0.011797210201621056, -0.014643700793385506, -0.009990938939154148, 0.024336282163858414, -0.008059680461883545, 0.01657899096608162, -0.030787251889705658, -0.008732999674975872, -0.00290092034265399, 0.029319657012820244, 0.005253508221358061, -0.006168739404529333, 0.01066829077899456, -0.013418016955256462, -0.008515279740095139, 0.008862019516527653, -0.00773309962823987, -0.009378097020089626, 0.02098177745938301, -0.005809904541820288, -0.002110676607117057, -0.011095667257905006, -0.00811612606048584, -0.0019030360272154212, -0.01799820549786091, -0.012724537402391434, -0.015514581464231014, 0.006459033116698265, -2.2663440176984295e-05, 0.016901539638638496, 0.010684418492019176, 0.016982177272439003, -0.014006667770445347, -0.008918465115129948, -0.001705475035123527, -0.031335584819316864, 0.002106644678860903, -0.011394024826586246, -0.01351478137075901, 0.018901340663433075, 0.0041487799026072025, -0.013530908152461052, -0.02499750629067421, 0.010281233116984367, 0.010805374011397362, 0.011805274523794651, 0.006555797997862101, 0.014748528599739075, 0.0016853157430887222, 4.1578514355933294e-05, 0.022675158455967903, 0.017627274617552757, -0.0012327400036156178, -0.0065719252452254295, -0.0031771024223417044, -0.008281432092189789, 0.0002207441139034927, 0.0009590777335688472, -0.005229317117482424, -0.015192032791674137, -0.01647416315972805, 0.001670196303166449, 0.010232849977910519, -0.004068142734467983, -0.023836331441998482, -0.004729366861283779, -0.022352609783411026, 0.027787551283836365, -0.00020902653341181576, 0.02214295230805874, 0.009281332604587078, -0.010023193433880806, -0.0014262690674513578, 0.001597622875124216, -0.007374264299869537, -0.02370731346309185, 0.014966249465942383, -0.02036893554031849, 0.007591984700411558, 0.0033746634144335985, -0.05925215408205986, -0.02522329054772854, 0.004660825245082378, 0.014772720634937286, 0.008229018189013004, 0.010119958780705929, -0.01870781183242798, 0.011095667257905006, 0.01113598607480526, 0.009773219004273415, 0.006390491500496864, 0.01492593064904213, -0.014772720634937286, -0.02917451038956642, 0.0039693620055913925, 0.006031656637787819, 0.0016671724151819944, -0.007801641244441271, 0.002138899639248848, 0.010748928412795067, 0.002449352527037263, 0.02415888011455536, -0.0022941259667277336, 0.027303729206323624, -0.017595019191503525, -0.01013608556240797, -0.0017961917910724878, 0.006596116349101067, 0.002031047362834215, 0.0076323035173118114, 0.00610422994941473, -0.0043140859343111515, 0.003195245750248432, -0.0015875432873144746, -0.005616375245153904, -0.02178815007209778, 0.00595505116507411, -0.006088102702051401, 0.004987405613064766, -0.026481229811906815, 0.025868387892842293, -0.0067533585242927074, -0.013168041594326496, 0.0352868027985096, -0.0076564946211874485, 0.0020804377272725105, -0.0013254726072773337, 0.0021953454706817865, 0.015393625944852829, -0.000558916013687849, -0.024013733491301537, 0.007277499884366989, 0.011869783513247967, 0.006023592781275511, 0.021659130230545998, 0.013079340569674969, 0.0002067586174234748, 0.01475659292191267, -0.013716373592615128, -0.010329615324735641, 0.005209157709032297, 0.02251388318836689, -0.010305424220860004, 0.02394922450184822, 0.021997805684804916, -0.01944967359304428, 0.006442905869334936, 0.002477575559169054, 0.0209979061037302, 0.01598227769136429, -0.01285355631262064, -0.005430909804999828, 0.0002676144358702004, -0.004910800606012344, -0.035480331629514694, 0.0007307738997042179, 0.010797310620546341, -0.014095368795096874, -0.0029150317423045635, 0.002255823463201523, 0.008434643037617207, -0.009571625851094723, 0.0033182173501700163, 0.006684817373752594, 0.016079042106866837, 0.016199996694922447, 0.0021026129834353924, 0.005527674686163664, 0.01304708607494831, -0.004362468142062426, 0.026271574199199677, 0.008043552748858929, -0.0012266922276467085, 0.02311059832572937, 9.140973270405084e-05, 0.00888621062040329, -0.004838227294385433, 0.006112293805927038, -0.011587553657591343, -0.004249576013535261, -0.003550049150362611, -0.006479192525148392, 0.008099998347461224, 0.011224687099456787, 0.010716672986745834, -0.0031166246626526117, -0.00836206879466772, 0.009144249372184277, -0.016191933304071426, 0.014143751002848148, 0.012861620634794235, 0.001130935619585216, 0.005987306125462055, -0.005636534653604031, -0.00030339715885929763, 0.005636534653604031, -0.007305723149329424, 0.0037113234866410494, -0.010515080764889717, 0.0045439014211297035, -0.00965226348489523, -0.015111396089196205, -0.0023727472871541977, -0.015571027994155884, -0.004963214509189129, 0.0023142853751778603, 0.0029896211344748735, 0.021175308153033257, 0.019223889335989952, -0.021643003448843956, 0.003977425862103701, -0.029077745974063873, -0.00912812165915966, -0.03140009567141533, 0.015804875642061234, 0.003408934222534299, -0.016498355194926262, 0.0023445242550224066, -0.015200097113847733, 0.008724936284124851, 0.002033063443377614, -0.0048180678859353065, -0.012885811738669872, 0.001502874307334423, 0.014796911738812923, 0.0022679190151393414, -0.02038506418466568, -0.015700047835707664, -0.012256842106580734, -0.00106037815567106, 0.021659130230545998, 0.004431009758263826, 0.006676753517240286, 0.0006899513537064195, -0.02170751243829727, 0.00805564783513546, -0.009805473499000072, -0.02727147378027439, -0.004539869725704193, -0.01006351225078106, -0.003334344830363989, -0.009168440476059914, -0.015554900281131268, 6.715559720760211e-05, 0.00649128807708621, 0.011490789242088795, -0.013901839032769203, 0.011103731580078602, 0.031690388917922974, -0.013232551515102386, -0.005080138333141804, 0.02122369036078453, -0.012950321659445763, -0.008378196507692337, -0.009087802842259407, 0.0001816855074139312, 0.003997585270553827, -0.0013547035632655025, -0.003312169574201107, -0.004580188542604446, 0.011329514905810356, 0.0021449474152177572, 0.0022719507105648518, -0.009007166139781475, -0.011216622777283192, 0.00042964465683326125, -0.010023193433880806, 0.0026751363184303045, 0.007716972380876541, 0.015183969400823116, -0.018675556406378746, -0.024852359667420387, 0.004366499837487936, -0.011353706009685993, -0.026126425713300705, 0.014579190872609615, -0.013530908152461052, -0.0030138122383505106, -0.013934094458818436, -0.0027960920706391335, 0.007475060876458883, -0.021481728181242943, 0.014885611832141876, 0.0034028864465653896, 0.019578691571950912, 0.005620407406240702, -0.015256542712450027, -0.006467096973210573, 0.008902338333427906, 0.01574843004345894, -0.025997407734394073, 0.012264905497431755, -0.01956256479024887, 0.016804775223135948, 0.002735614310950041, -0.021772021427750587, 0.011861720122396946, -0.011450470425188541, -0.005035788286477327, -0.004789845086634159, -0.026013534516096115, 0.004197162110358477, 0.006648530252277851, -0.01622418873012066, 0.0009656294714659452, 0.0032758829183876514, 0.009273268282413483, 0.011958484537899494, -0.021030161529779434, 0.0015300892991945148, 0.007773418445140123, -0.0007363177137449384, -0.008313686586916447, -0.00601956108585, 0.007620207965373993, 0.004781781230121851, 0.0535753034055233, 0.023013833910226822, 0.01693379506468773, -0.0013718389673158526, -0.004741462413221598, -0.022804176434874535, 0.007358137052506208, -0.01315191388130188, -0.01576455682516098, -0.00518093490973115, -0.005201094318181276, -0.014829166233539581, 0.013611545786261559, 0.012579390779137611, -0.014377598650753498, 0.003650845494121313, 0.012474562041461468, 0.005511546973139048, 0.005559929180890322, 0.0162403155118227, 0.004580188542604446, 0.009587753564119339, -0.005656694062054157, -0.0067372312769293785, 0.0009217830374836922, 0.0026287701912224293, 0.0021509951911866665, -0.012361669912934303, 0.008386260829865932, -0.005144648253917694, 0.0378994457423687, -0.0034915872383862734, -0.02773916907608509, -0.0005946987657807767, 0.010990839451551437, 0.0060679432936012745, 0.0013970381114631891, 0.010079639963805676, 0.009071676060557365, -0.013393825851380825, -0.006184867117553949, -0.01801433227956295, -0.0071525126695632935, 0.006152612157166004, -0.027448875829577446, -0.0007368216756731272, 0.00595505116507411, -0.00417700270190835, -0.00235460395924747, 0.027110198512673378, 0.00906361173838377, -0.00664046686142683, -0.03477072715759277, -0.005769585724920034, -0.012458435259759426, 0.008942656219005585, 0.003144847694784403, -0.01174076460301876, -0.009273268282413483, 0.010523144155740738, -0.005773617886006832, -0.021868785843253136, -0.00021003450092393905, 0.02096565067768097, -0.025142652913928032, 0.011571426875889301, 0.004846290685236454, 0.012248778715729713, 0.003570208325982094, 0.023771822452545166, 0.009208759292960167, -0.013369634747505188, -0.00417700270190835, -0.017562763765454292, -0.012393925338983536, -0.03470621630549431, -0.035480331629514694, 0.001692371559329331, -0.009337778203189373, -0.006971078924834728, -0.012466498650610447, 0.013369634747505188, -0.002187281847000122, -0.00858785305172205, -0.009265204891562462, -0.012329415418207645, -0.0011843576794490218, 0.013401889242231846, 0.022691285237669945, 0.003221452934667468, -0.01469208300113678, 0.007854055613279343, 0.002350572030991316, 0.028110099956393242, -0.004334245342761278, 0.0005241413018666208, 0.012127822265028954, -0.01042637974023819, 0.00185263785533607, 0.007104129996150732, 0.005281731486320496, 0.0038786453660577536, -0.0022215526551008224, 0.0029976849909871817, -0.0013506717514246702, -0.002304205670952797, -0.01991736888885498, -0.02098177745938301, -0.002050198847427964, 0.01576455682516098, 0.0009626055834814906, 0.00595505116507411, 0.0056284707970917225, 0.011240814812481403, -0.002661024918779731, -0.004049999173730612, 0.018159478902816772, -0.0021469632629305124, -0.00039335794281214476, -4.305896072764881e-05, -0.0009489980875514448, 0.0015875432873144746, 0.022465500980615616, 0.004850322846323252, 0.001742769731208682, -0.006821900140494108, 0.0070678433403372765, 0.02299770712852478, 0.000864833127707243, -0.0018123192712664604, -0.004140716046094894, 0.0007942756055854261, -0.013256742618978024, 0.03020666539669037, 0.01126500591635704, -0.0019403307233005762, 0.004749526269733906, 0.00610019825398922, 0.006196962669491768, 0.0016953954473137856, -0.027061816304922104, 0.011579490266740322, 0.007180735468864441, -0.009095867164433002, 0.003626654390245676, -0.002421129494905472, -0.011773019097745419, 0.017562763765454292, 0.02406211569905281, 8.473197522107512e-05, 0.0003210365248378366, -0.008491088636219501, -0.02323961816728115, 0.0003066730569116771, -0.013901839032769203, 0.004213289357721806, -0.007160576060414314, 0.019046487286686897, -0.01599034108221531, 0.008458834141492844, 0.023062216117978096, 0.007293627597391605, 0.0007897397736087441, 0.010321551002562046, 0.011700445786118507, -0.005188998766243458, -0.004745494574308395, 0.007559729740023613, -0.0062977587804198265, 0.007374264299869537, -0.010160276666283607, -0.0014454203192144632, -0.003382727038115263, -0.004422945901751518, 0.0028464903589338064, 0.015772620216012, -0.003080338006839156, -0.0059590828604996204, 0.0017931679030880332, 0.00037445861380547285, -0.005003533326089382, 0.03093239851295948, 0.018159478902816772, 0.007624239660799503, -0.004249576013535261, 0.010176404379308224, -0.015361371450126171, 0.012547135353088379, -0.005507515277713537, -0.0011198479915037751, 0.007591984700411558, 0.022110698744654655, 0.004866450093686581, -0.004894672892987728, -0.01375669240951538, 0.009249077178537846, -0.0018586856313049793, -0.04151199012994766, -0.025303928181529045, -0.008684617467224598, 0.006467096973210573, 0.012627772986888885, -0.004584220238029957, 0.023562166839838028], "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91": [-0.007268833927810192, -0.005692609585821629, -0.004472173750400543, -0.007674266584217548, -0.010392322205007076, -0.010615724138915539, 0.049909625202417374, 0.0379948616027832, -0.02652690000832081, 0.05242496356368065, 0.028115535154938698, 0.0017851461889222264, 0.014198428019881248, -0.01677168533205986, 0.027387410402297974, 0.04133761301636696, -0.018203113228082657, -0.0037916256114840508, 0.018550626933574677, -0.03203747794032097, 0.020304745063185692, -0.01291593536734581, -0.034817587584257126, -0.002147139748558402, 0.0391201414167881, 0.026559995487332344, -0.037233639508485794, 0.023812981322407722, -0.04497823491692543, -0.008613381534814835, 0.008588558994233608, 0.023879174143075943, 0.009589730761945248, 0.013131063431501389, 0.029571782797574997, -0.020503323525190353, -0.008514092303812504, -0.01560503151267767, -0.04372056573629379, -0.017392246052622795, -0.01716057024896145, 0.0015451960498467088, 0.020139262080192566, -0.014554215595126152, 0.016349704936146736, 0.0021864420268684626, -0.017094377428293228, 0.03162376955151558, -0.022621504962444305, 0.0018037629779428244, -0.010963237844407558, 0.0039446973241865635, 0.00781906396150589, -0.00048533015069551766, 0.0045011332258582115, -0.024756232276558876, 0.02134728617966175, 0.04372056573629379, 0.018153468146920204, -0.06937040388584137, -0.019162911921739578, -0.03521474823355675, 0.035975970327854156, -0.008075562305748463, 0.02136383391916752, 0.04057639092206955, -0.0007162304245866835, 0.011583798564970493, -0.029869653284549713, 0.024690039455890656, -0.0021740307565778494, -0.032765600830316544, -0.018500981852412224, 0.02361440099775791, 0.0145045705139637, 0.011418315581977367, 0.033361341804265976, 0.025534002110362053, 0.024160495027899742, -0.03243463486433029, 0.002459488809108734, -0.00041267284541390836, 0.054642435163259506, -0.002815276850014925, 0.07453346997499466, 0.021727897226810455, -0.017789404839277267, -0.06486926972866058, -0.0096393758431077, -0.02012271247804165, 0.006064946297556162, -0.022356731817126274, -0.018964333459734917, -0.00512996781617403, -0.03700196370482445, -0.0038805725052952766, 0.011774104088544846, -0.013933654874563217, -0.005713295191526413, -0.01277527492493391, -0.00587464077398181, 0.028065890073776245, -0.02515339106321335, 0.01894778572022915, 0.014918277971446514, -0.010243387892842293, 0.020139262080192566, -0.0023539934772998095, -0.016937168315052986, 0.013213804922997952, -0.005585046019405127, 0.0019071897258982062, 0.016498638316988945, 0.010756384581327438, -0.06410805135965347, -0.018782302737236023, -0.06811273843050003, -0.003973656799644232, -0.008282416500151157, -0.023713691160082817, 0.01363578625023365, -0.009482166729867458, -0.02790040709078312, -0.030018586665391922, -0.0005600560107268393, 0.004803139250725508, -0.019808296114206314, 0.039980653673410416, 0.0174915362149477, 0.019675910472869873, -0.007363986223936081, -0.0165731068700552, 0.009482166729867458, -0.018616819754242897, 0.023597853258252144, 0.032136768102645874, -0.005171338561922312, 0.05695919319987297, -0.0018058314453810453, 0.01108735054731369, -0.053682632744312286, 0.01153415348380804, -0.02267114818096161, 0.02617938444018364, 0.024259785190224648, -0.006118727847933769, 0.01174928154796362, 0.05470862612128258, -0.01707782968878746, -0.013710252940654755, -0.08803687244653702, -0.01607665792107582, -0.024838974699378014, -0.01377644669264555, 0.02459074929356575, -0.004151550587266684, -0.0016103548696264625, 0.002939388854429126, 0.011840296909213066, 0.0574556402862072, 0.006060808897018433, -0.027916954830288887, -0.02790040709078312, 0.027850762009620667, 0.019196009263396263, 0.013139337301254272, 0.03974897786974907, -0.008629930205643177, -0.04511062055826187, 0.018434789031744003, 0.012940757907927036, -0.012444309890270233, 0.03925253078341484, -0.005986341740936041, -0.02568293735384941, 0.011319026350975037, 0.003502030624076724, 0.033444080501794815, 0.010549531318247318, 0.006110453978180885, -0.013710252940654755, 0.05563532933592796, 0.004559052176773548, 0.0007188160670921206, 0.015687773004174232, 0.0409073568880558, 0.016846153885126114, 0.02315104939043522, 0.032682862132787704, 0.018567174673080444, 0.007442590780556202, 0.015530564822256565, -0.010715014301240444, 0.021612059324979782, 0.0130234993994236, -0.01068191695958376, 0.004023301415145397, 0.039153240621089935, -0.01239466480910778, -0.018831947818398476, -0.0036592392716556787, -0.042462896555662155, 0.0004770559899043292, 0.02809898555278778, -0.03402327001094818, 0.016217317432165146, -0.008969170041382313, -0.03210367262363434, 0.016374526545405388, -0.013395835645496845, 0.026229029521346092, -0.03776318579912186, 0.008108658716082573, -0.009697294794023037, 0.004774179775267839, -0.011873393319547176, -0.034751396626234055, 0.025666387751698494, -0.00729779340326786, -0.013395835645496845, 0.0025794636458158493, 0.010152372531592846, -0.027023347094655037, -0.020288195461034775, -0.05451004579663277, -0.012510502710938454, -0.013511673547327518, 0.0056967465206980705, 0.012824920006096363, 0.015795337036252022, 0.022141603752970695, -0.026063546538352966, -0.007963861338794231, -0.026890961453318596, -0.05159755051136017, 0.038458213210105896, 0.05570152401924133, -0.03293108567595482, -0.024474911391735077, 0.010880496352910995, -0.020917030051350594, 0.018021080642938614, -0.006548983510583639, -0.00838584266602993, -0.015646401792764664, 0.003653033636510372, 0.023515110835433006, 0.04242980107665062, -0.013288271613419056, 0.0204536784440279, -0.02790040709078312, 0.009010540321469307, 0.01025993563234806, 0.01583670824766159, -0.02611319161951542, 0.03195473551750183, 0.02824792079627514, 0.0006934765260666609, 0.016937168315052986, -0.014670053496956825, 0.03256702423095703, -0.001401432789862156, -0.0145045705139637, 0.034552816301584244, -0.026559995487332344, -0.010731562040746212, 0.01391710713505745, 0.008063151501119137, -0.0021068034693598747, 0.032616667449474335, 0.026973702013492584, -0.0038267907220870256, -0.006052535027265549, 0.026559995487332344, 0.009837955236434937, 0.003272423055022955, 0.007285382132977247, 0.01036749966442585, 0.037432219833135605, 0.005311999004334211, -0.04276076704263687, -0.008274141699075699, 0.006921319756656885, -0.006710329093039036, 0.018964333459734917, -0.007463275920599699, -0.05103490874171257, -0.018269306048750877, -0.030895646661520004, -0.002900086808949709, -0.02617938444018364, 0.0362076461315155, 0.013073144480586052, 0.02748670056462288, 0.0257656779140234, -0.010781207121908665, 0.022406376898288727, 0.03514855355024338, 0.005171338561922312, 0.05328547582030296, 0.017243312671780586, -0.012171262875199318, -0.020023424178361893, -0.00107150140684098, 0.014074315316975117, -0.008203811943531036, 0.015001019462943077, 0.005543675273656845, -0.007488098461180925, 0.04041090980172157, 0.023399272933602333, -0.03739912062883377, 0.017822502180933952, -0.005808447487652302, 0.010954963974654675, 0.042529091238975525, 0.022902825847268105, -0.010557805188000202, -0.020370937883853912, -0.055271267890930176, -0.014545941725373268, 0.0338081456720829, -0.1072990745306015, 0.01851752959191799, 0.034254949539899826, 0.002778043271973729, 0.010781207121908665, 0.00867957528680563, -0.013387561775743961, -0.007107487879693508, -0.03918633610010147, -0.03465210646390915, 0.00743845384567976, 0.0017985915765166283, -0.020155809819698334, -0.024325978010892868, -0.03218641132116318, -0.026493802666664124, -0.009730391204357147, -0.026493802666664124, 0.008762316778302193, 0.006259388290345669, 0.050372976809740067, 0.03415565937757492, 0.021661704406142235, 0.01644071936607361, 0.022969018667936325, 0.014057767577469349, -0.03312966600060463, 0.0005698815220966935, 0.0009572147973813117, -0.03779628127813339, 0.025054102763533592, -0.019477330148220062, 0.0051175570115447044, -0.012543599121272564, -0.04365437477827072, 0.0044969962909817696, -0.005800173617899418, -0.010342677123844624, 0.03308001905679703, -0.011525879614055157, 0.006155961658805609, 0.02611319161951542, -0.012560147792100906, 0.005878777708858252, 0.02437562309205532, -0.01115354336798191, -0.025434711948037148, -0.013834365643560886, -0.05288831517100334, 0.004712123889476061, 0.0016134576871991158, -0.0018503050087019801, -0.03139209374785423, -0.027585988864302635, 0.027602538466453552, 0.0012773206690326333, 0.02391226962208748, 0.01694544218480587, 0.01990758627653122, -0.010003437288105488, -0.01157552469521761, 0.0574556402862072, 0.03408946469426155, -0.007914217188954353, 0.017441891133785248, -0.022075410932302475, -0.046533774584531784, -0.003735775128006935, -0.04669925570487976, 0.022704245522618294, 0.0023188283666968346, -0.02018890716135502, -0.025534002110362053, -0.017309505492448807, 0.018236208707094193, 0.0017903174739331007, -0.010202016681432724, -0.026609640568494797, -0.0014376321341842413, 0.004147413652390242, 0.004472173750400543, 0.004201195668429136, 0.0025732582435011864, -0.04272766783833504, -0.002463625743985176, 0.007413631305098534, 0.018004532903432846, 0.014256346970796585, -0.03369230777025223, -0.013553044758737087, 0.016407623887062073, 0.05126658454537392, 0.01590290106832981, 0.010665369220077991, 0.019924134016036987, 0.03534713387489319, -0.02190992794930935, 0.0009685917175374925, 0.00860510766506195, 0.008547188714146614, 0.028463048860430717, 0.033923983573913574, 0.010897045023739338, 0.053748827427625656, 0.0024367347359657288, 0.009589730761945248, -0.0029083609115332365, 0.006433145608752966, -0.02149622142314911, 0.017458438873291016, -0.019196009263396263, 0.016283512115478516, -0.02176099270582199, 0.006970964837819338, -0.00998688954859972, -0.03822653740644455, 0.01270908210426569, 0.013081418350338936, -0.022786986082792282, -0.013941929675638676, -0.011774104088544846, 0.0040667406283319, -0.025037553161382675, -0.059408340603113174, -0.04375366121530533, -0.020073069259524345, 0.014967923052608967, -0.03465210646390915, -0.011426590383052826, -0.0014872769825160503, -0.03165686875581741, -0.03458591178059578, -0.0039467657916247845, -0.0373329296708107, -0.023233789950609207, 0.003071775194257498, 0.03849130868911743, -0.024259785190224648, -0.006131139118224382, -0.027668731287121773, 0.03713434934616089, -0.006462105084210634, 0.010152372531592846, 0.02141347900032997, -0.024325978010892868, -0.007901805453002453, 0.024077752605080605, 0.0275528933852911, 0.018352046608924866, 0.009440796449780464, 0.0005978067638352513, 0.020470228046178818, 0.028065890073776245, -0.025120295584201813, -0.0052251205779612064, -0.004985170438885689, -0.0254843570291996, -0.01518305018544197, -0.022141603752970695, -0.0064993384294211864, 0.005088597536087036, -0.008087974041700363, -0.004823824856430292, 0.02624557912349701, -0.016209043562412262, -0.013503399677574635, 0.040808066725730896, 0.039848268032073975, 0.014024670235812664, 0.003222778206691146, 0.01122801098972559, -0.005849818233400583, -0.0028711273334920406, -0.01970900595188141, 0.020685354247689247, -0.03175615519285202, 0.010102727450430393, -0.08135136216878891, 0.01022683922201395, -0.011517605744302273, 0.01803763024508953, -0.008936073631048203, -0.024971360340714455, 0.02879401482641697, 0.006462105084210634, 0.024127397686243057, -0.010466789826750755, -0.014934826642274857, -0.02238982729613781, 0.05778660625219345, -0.037862472236156464, 0.008439624682068825, 0.012311923317611217, 0.028909852728247643, 0.0015824296278879046, 0.0033448219764977694, 0.014198428019881248, 0.015447823330760002, 0.009382876567542553, -0.030333004891872406, -0.029588332399725914, 0.007657718379050493, -0.016126303002238274, -0.015927722677588463, 0.006193195469677448, -0.018434789031744003, 0.009382876567542553, -0.049148403108119965, -0.007347438018769026, 0.021943025290966034, -0.014372184872627258, -0.002190579194575548, -0.021876830607652664, -0.01143486425280571, 0.020850837230682373, 0.02058606594800949, 0.0174915362149477, -0.01323035266250372, -0.06059981510043144, 0.04977723956108093, -0.02396191470324993, 0.026973702013492584, -0.005647101905196905, 0.032269153743982315, 0.0019578689243644476, -0.0007281245198100805, -0.028876755386590958, -0.003450317308306694, 0.004484585020691156, 0.02230708673596382, -0.0038309276569634676, 0.002898018341511488, 0.012518776580691338, -0.02589806355535984, 0.020552968606352806, -0.02171134762465954, -0.02210850827395916, -0.0278342142701149, -0.011376945301890373, 0.05427836999297142, 0.012245730496942997, 0.0055974568240344524, 0.006850989535450935, 0.009506989270448685, -0.024640394374728203, 0.02093357965350151, -0.014967923052608967, 0.013544769957661629, 0.0275528933852911, -0.016167674213647842, 0.012229181826114655, 0.02260495536029339, -0.0041308654472231865, 0.051630645990371704, 0.00392608018592, -0.012907661497592926, -0.039649687707424164, -0.013569592498242855, 0.027122637256979942, -0.007417768239974976, -0.00010898596519837156, 0.013379287905991077, -0.0010963238310068846, 0.01280837133526802, -0.01701163500547409, -0.018980881199240685, -0.019609715789556503, -0.003994341939687729, 0.01851752959191799, -0.0005585046019405127, -0.02521958388388157, 0.021926475688815117, -0.015274066478013992, 0.012543599121272564, -0.005452659446746111, 0.0127421785145998, 0.03491687774658203, 0.007107487879693508, 0.00133523961994797, 0.026295222342014313, 0.008174852468073368, -0.013279997743666172, -0.03594287112355232, 0.021943025290966034, -0.006954416166990995, -0.0033613701816648245, 0.0272715725004673, 0.012725630775094032, 0.010516434907913208, -0.010077904909849167, 0.03360956534743309, -0.027950052171945572, 0.008154166862368584, 0.009829680435359478, 0.020304745063185692, 0.002048884518444538, -0.011410041712224483, 0.011774104088544846, 0.0035951146855950356, -0.0290091410279274, 0.0326332151889801, -0.006648273207247257, 0.017028184607625008, 0.02596425823867321, 0.017739759758114815, -0.022853180766105652, -0.010152372531592846, -0.003907463513314724, -0.016738589853048325, -0.0361083559691906, -0.020155809819698334, -0.0040460554882884026, -0.016672395169734955, -0.004712123889476061, -0.002378815785050392, -0.006958553567528725, -0.016209043562412262, -0.0005398877547122538, 0.0055105783976614475, 0.008298964239656925, -0.016688944771885872, 0.05467553064227104, -0.00895262137055397, -0.009548359550535679, -0.01204715110361576, -0.001977519830688834, 0.045077525079250336, 0.024706587195396423, -0.004803139250725508, 0.012791823595762253, 0.012858016416430473, 0.02424323558807373, 0.009002266451716423, -0.01505066454410553, -0.008514092303812504, -0.010392322205007076, -0.0005890154861845076, 0.023713691160082817, 0.022621504962444305, -0.016688944771885872, 0.00839825440198183, 0.020271647721529007, 0.012899387627840042, 0.012320197187364101, 0.03389088436961174, -0.009746938943862915, 0.007186092436313629, -0.003371712751686573, 0.03283179551362991, -0.023846076801419258, 0.021297641098499298, -0.014347362332046032, -0.019526975229382515, -0.013999848626554012, -0.004029507283121347, 0.008063151501119137, 0.01762392185628414, -0.00822449754923582, -0.013619237579405308, -0.02348201535642147, -0.013677156530320644, 0.0011780309723690152, -0.0046831644140183926, 0.001047713216394186, -0.0094987154006958, 0.002314691198989749, -0.01398329995572567, 0.017028184607625008, -0.014620408415794373, 0.0022091958671808243, 0.009300136007368565, 0.0013466166565194726, 0.022406376898288727, 0.004674890078604221, 0.003421357600018382, -0.0112611074000597, -0.004898292012512684, -0.0326332151889801, -0.04103974252939224, -0.025054102763533592, -0.009705568663775921, -0.03865678980946541, 0.020768096670508385, 0.02487207017838955, -0.0052168467082083225, -0.017044732347130775, 4.896611426374875e-05, 0.008183126337826252, 0.040543295443058014, 0.025401616469025612, -0.0053244102746248245, 0.007839749567210674, 0.03574429452419281, 0.03663790225982666, -0.030564680695533752, 0.057753510773181915, 0.0054071517661213875, 0.03332824259996414, -0.009366328828036785, 0.03010132908821106, -0.023730238899588585, -0.017921792343258858, -0.01136039663106203, 0.001878230250440538, -0.0051423790864646435, 0.008104521781206131, -0.010789480991661549, -0.0001133169571403414, 0.02032129280269146, -0.004240497946739197, -0.0022195386700332165, 0.014041218906641006, 0.03435423597693443, -0.028694724664092064, -0.003913669381290674, 0.009300136007368565, 0.022820083424448967, -0.011972683481872082, 0.02831411361694336, -0.028132082894444466, 0.0009220496867783368, -0.03342753276228905, -0.01511685736477375, -0.010549531318247318, 0.038392018526792526, 0.008332060649991035, -0.02230708673596382, -0.03182234987616539, 0.020834289491176605, -0.03293108567595482, 0.02293592132627964, -0.010566079057753086, -0.014587312005460262, 0.012460857629776001, 0.023465465754270554, 0.01783904992043972, -0.0043149651028215885, 0.020205454900860786, -0.004885880742222071, 0.03703505918383598, 0.017855597659945488, 0.0007415699656121433, -0.01181547436863184, -0.012262278236448765, 0.007570839952677488, 0.012593244202435017, 0.023846076801419258, 0.045838747173547745, 0.051001809537410736, 0.037299830466508865, -0.0018316882196813822, -0.00336550734937191, -0.016846153885126114, 0.013371013104915619, 0.009482166729867458, -0.04276076704263687, -0.03607526049017906, -0.017590826377272606, -0.006007026880979538, -0.005866366438567638, 0.007190229371190071, -0.004472173750400543, -0.008530640043318272, -0.026708930730819702, 0.04573945701122284, -0.0007989718578755856, -0.014512845315039158, -0.0029952393379062414, 0.01459558680653572, -0.010921867564320564, 0.009962067008018494, 0.00797213613986969, 0.024474911391735077, -0.008580285124480724, -0.01077293325215578, 0.017690114676952362, -0.013486851006746292, -0.002461557276546955, 0.031176967546343803, -0.007426042575389147, 0.008754041977226734, 0.023432370275259018, 0.020089616999030113, -0.015075487084686756, -0.03802795708179474, -0.019196009263396263, -0.03600906580686569, 0.016200769692659378, -0.024706587195396423, -0.002006479538977146, -0.025997353717684746, 0.02005651965737343, -0.019808296114206314, -0.015547112561762333, 0.021032869815826416, 0.0035806349478662014, -0.0015420932322740555, -0.0014893455663695931, 0.0023229653015732765, 0.013122789561748505, 0.017392246052622795, 0.02396191470324993, 0.006143550388514996, 0.04623590409755707, 0.007016472518444061, 0.0174915362149477, -0.02315104939043522, -0.005969793535768986, -0.011376945301890373, -0.016738589853048325, -0.028016244992613792, 0.033510275185108185, 0.010921867564320564, 0.02143002860248089, 0.03031645528972149, 0.014727972447872162, -0.007823200896382332, 0.005080323200672865, -0.034254949539899826, -0.04772524908185005, -0.010433693416416645, 0.0031545166857540607, 0.0027614948339760303, -0.01577051542699337, 0.0162669625133276, 0.014529393054544926, 0.008034192025661469, 0.05656203627586365, 0.00891952496021986, 0.0012804234866052866, 0.03567809984087944, 0.01157552469521761, -0.008638204075396061, 0.014305991120636463, 0.008869879879057407, 0.01851752959191799, -0.006056671962141991, -0.008522366173565388, 0.028281018137931824, 0.0076659927144646645, -0.03188854455947876, 0.013337916694581509, -0.04130451753735542, -0.011683088727295399, -0.001493482617661357, -0.02038748562335968, -0.0036964728496968746, 0.0007457070169039071, -0.00463351933285594, 0.028264468535780907, 0.01812037080526352, 0.008025918155908585, 0.001205956214107573, -0.01374335028231144, 0.008344472385942936, 0.004960347898304462, 0.0009706603013910353, 0.017739759758114815, 0.010863948613405228, 0.020983224734663963, -0.008489269763231277, 0.019162911921739578, -0.0029249091167002916, -0.012924210168421268, -0.005125830881297588, 0.020983224734663963, -0.007372260559350252, 0.02369714342057705, -0.004650068003684282, 0.015489193610846996, 0.029158076271414757, -0.01132730022072792, -0.009970340877771378, 0.031590674072504044, -0.0054112887009978294, -5.00003807246685e-05, -0.00015837224782444537, 0.0013435138389468193, 0.00442666606977582, -0.017276408150792122, -0.048453375697135925, -0.024756232276558876, 0.07129000872373581, -0.06384328007698059, 0.022439472377300262, -0.01853407733142376, -0.0006309033487923443, -0.009291861206293106, -0.01030130684375763, 0.02154586650431156, -0.002428460633382201, 0.01929529942572117, 0.029091883450746536, 0.012767001055181026, 0.010979786515235901, 0.007119899149984121, 0.005080323200672865, -0.021578961983323097, 0.0028235509525984526, -0.0005843612598255277, 0.032202959060668945, 0.0026580682024359703, 0.013313094154000282, -0.001082878326997161, -0.022472569718956947, -0.0034937565214931965, -0.0225222148001194, 0.01984139159321785, 0.006358677987009287, 0.011906490661203861, -0.002544298768043518, -0.00371922692283988, 0.03763079643249512, -0.03264976292848587, 0.0027594263665378094, -0.008505817502737045, -0.03739912062883377, 0.006942004896700382, -0.02232363447546959, 0.0033944668248295784, 0.005473345052450895, -0.010243387892842293, -0.0043977065943181515, -0.021264545619487762, 0.02060261368751526, -0.0003325170837342739, -0.019444232806563377, -0.021645154803991318, 0.009085007943212986, 0.014852085150778294, 0.009962067008018494, -0.012518776580691338, 0.019609715789556503, -0.012071972712874413, -0.011732732877135277, -0.01583670824766159, 0.004068809095770121, 0.00583740696310997, -0.001147002913057804, 0.0361083559691906, -0.04180096462368965, -0.003152447985485196, 0.014421829022467136, 0.0069461422972381115, -0.0065779429860413074, 0.017541181296110153, 0.0054071517661213875, -0.014636957086622715, -0.010648820549249649, 0.006772384978830814, 0.0015141679905354977, 0.009945518337190151, 0.027106089517474174, -0.01263461448252201, -0.0391201414167881, -0.011352122761309147, -0.02720537967979908, -0.02947249449789524, 0.027850762009620667, -0.03326205164194107, -0.006602765526622534, -0.021595509722828865, 0.0011118378024548292, -0.017408793792128563, -0.029422849416732788, 0.026742026209831238, -0.054046694189310074, -0.014992745593190193, 0.017094377428293228, 0.020883934572339058, -0.009540085680782795, -0.015125131234526634, 0.00754188047721982, 0.0016868907259777188, 0.001600012183189392, -0.0022050589323043823, 0.0027139184530824423, -0.0344204306602478, -0.008468584157526493, -0.011443138122558594, -0.03177270665764809, 0.01936149224638939, 0.04520991072058678, -0.0015824296278879046, 0.012353293597698212, 0.007483961526304483, -0.004085357766598463, -0.002225744305178523, -0.026609640568494797, -0.014852085150778294, 0.004484585020691156, -0.012982129119336605, -0.03140864148736, 0.018269306048750877, 0.00707852840423584, -0.03465210646390915, 0.0210163202136755, 0.005163064692169428, -0.00792662799358368, -0.0025794636458158493, -0.025186488404870033, -0.013304820284247398, -0.01977519877254963, 0.020983224734663963, 0.004513544496148825, 0.01790524274110794, -0.0008656820864416659, -0.0067641111090779305, -0.005576771683990955, -0.04084116593003273, -0.012336745858192444, -0.03374195098876953, 0.017326053231954575, 0.0012194017181172967, 0.0006546914810314775, -0.08022607862949371, -0.0008946416201069951, -0.016564833000302315, 0.008129344321787357, 0.005365781020373106, -0.0028421678580343723, 0.03279870003461838, -0.020751548931002617, -0.03988136351108551, -0.011319026350975037, 0.01157552469521761, -0.01956007070839405, -0.00290215527638793, 0.0020375074818730354, -0.011484509333968163, -0.008729219436645508, 0.0003596666210796684, -0.003317930968478322, -0.009035362862050533, 0.014628683216869831, -0.01901397854089737, 0.00867957528680563, 0.02424323558807373, -0.00803832896053791, -0.02742050588130951, 0.02141347900032997, -0.03849130868911743, -0.008427213877439499, -0.018931236118078232, -0.04408462718129158, -0.01019374281167984, -0.01929529942572117, -0.02389572188258171, -0.01525751780718565, -0.002666342305019498, 0.015373355709016323, -0.011856845580041409, 0.0075046466663479805, 0.004414254799485207, 2.1412573914858513e-05, 0.009962067008018494, 0.023266887292265892, -0.00967247225344181, 0.012212633155286312, 0.002767700469121337, -0.003859887132421136, -0.00871267169713974, -0.024822425097227097, -0.0055933198891580105, 0.012841468676924706, 0.0014790028799325228, 0.007041294593364, -0.011840296909213066, -0.01742534339427948, 0.0010063424706459045, 0.00221333303488791, 0.009349780157208443, -0.022340184077620506, 0.032335348427295685, 0.007711500395089388, 0.020635709166526794, 1.3308116649568547e-05, 0.014860359020531178, -0.007802515756338835, -0.03162376955151558, 0.0033593017142266035, 0.05325237661600113, 0.02513684332370758, 0.016002191230654716, -0.0009804858127608895, 0.02108251303434372, -0.010930141434073448, -0.011269381269812584, 7.608332089148462e-05, -0.01009445358067751, -0.006987513042986393, 0.008203811943531036, 0.001406604191288352, 0.013271723873913288, -0.009631101042032242, -0.01990758627653122, -0.0031896817963570356, -0.0015462302835658193, -0.009920695796608925, 0.0031648592557758093, -0.021198350936174393, 0.02184373512864113, -0.03341098502278328, -0.004430803004652262, 0.0004049158305861056, 0.037299830466508865, -0.018716109916567802, 0.03121006302535534, 0.008704396896064281, -0.01845133677124977, 0.034751396626234055, -0.018087273463606834, 0.0225222148001194, -0.013867462053894997, -0.019196009263396263, 0.017309505492448807, -0.02907533571124077, 0.02306830696761608, 0.011285929940640926, 0.010839126072824001, -0.005887052044272423, -0.004935525823384523, 0.006486927159130573, -0.000988759915344417, -0.013122789561748505, -0.015588483773171902, -0.030084779486060143, -0.03422185033559799, 0.0037461176980286837, -0.020404033362865448, 0.00898571778088808, -0.0204536784440279, 0.010905318893492222, -0.003319999435916543, 0.021330738440155983, -0.0010673643555492163, 0.02646070532500744, 0.007061980199068785, 0.007802515756338835, 0.005415426101535559, -0.020768096670508385, 0.005332684610038996, 0.023035211488604546, 0.0007296758703887463, 0.03286489099264145, -0.011418315581977367, 0.018567174673080444, 0.0045838747173547745, -0.005986341740936041, 0.012212633155286312, 0.005452659446746111, 0.025054102763533592, -0.030150974169373512, 0.027569441124796867, -0.024954812601208687, 0.011302477680146694, 0.03389088436961174, -0.007330889813601971, 0.0024925852194428444, -0.00867957528680563, 0.003870229935273528, -0.008087974041700363, -0.026493802666664124, 0.011989232152700424, -0.000625214830506593, -0.000830516975838691, -0.008638204075396061, 0.03485068678855896, 0.016200769692659378, -0.022687697783112526, -0.000358632329152897, -0.006445556413382292, 0.009738665074110031, -0.0037316379602998495, 0.0025236133951693773, -0.02169479988515377, 0.011426590383052826, 0.033576469868421555, 0.0020778439939022064, 0.01514995377510786, 0.004621108062565327, -0.015977367758750916, -0.008894702419638634, 0.020006874576210976, 0.017094377428293228, 0.0050555006600916386, -0.029025690630078316, -0.004401843529194593, 0.010152372531592846, -0.012005779892206192, -0.013594415038824081, 0.020503323525190353, -0.002010616473853588, 0.011765830218791962, -0.018153468146920204, 0.019957231357693672, 0.005924285855144262, -0.0019857941661030054, 0.008993992581963539, -0.015058938413858414, 0.004786591045558453, -0.023812981322407722, 0.02982000820338726, 0.003171064890921116, 0.031011484563350677, -0.0013279997510835528, 0.0551057867705822, -0.01323035266250372, 0.011203188449144363, 0.01085567381232977, -0.0032786286901682615, 0.03700196370482445, 0.014132234267890453, -0.03958349674940109, 0.0019361492013558745, 0.00418257899582386, -0.024673491716384888, -0.0008786104735918343, 0.010326129384338856, -0.005390603560954332, -0.004468036815524101, -0.02637796476483345, 0.00214300281368196, -0.005382329225540161, -0.010499886237084866, -0.015820158645510674, -0.0011439000954851508, 0.011385219171643257, -0.00295386859215796, 0.013337916694581509, -0.02093357965350151, -0.009730391204357147, -0.03504926711320877, -0.0033117253333330154, -0.01649036444723606, 0.021297641098499298, -0.019593168050050735, 0.010938415303826332, -0.021727897226810455, 0.002765632001683116, 0.027652181684970856, 0.007202640641480684, -0.0629165768623352, 0.004124659579247236, 0.01473624724894762, 0.017524633556604385, 0.007496372796595097, 0.01429771725088358, -0.028198275715112686, -0.009076734073460102, -0.004786591045558453, 0.007157132960855961, -0.01716057024896145, 0.03988136351108551, 0.016912346705794334, 6.897273124195635e-05, -0.043356504291296005, -0.03235189616680145, 0.010326129384338856, 0.009300136007368565, 0.02707299217581749, -0.03271595761179924, -0.009217394515872002, 0.01284974254667759, 0.014380458742380142, 0.0010575387859717011, 0.01611802913248539, -0.005076186265796423, 0.010921867564320564, -0.0013569592265412211, 0.022820083424448967, 0.004269457422196865, -0.0035082362592220306, 0.005796036683022976, -0.007041294593364, -0.02493826299905777, -0.0005088597536087036, -0.0007141618989408016, -0.023597853258252144, 0.015538838692009449, -0.006135276053100824, -0.01108735054731369, -0.0024450088385492563, 0.012518776580691338, -0.015381629578769207, -0.009176023304462433, -0.004997581709176302, -0.01280837133526802, 0.01860027201473713, -0.006623450666666031, 0.02919117361307144, -0.005460933782160282, -0.04027852416038513, 0.008671300485730171, 0.017193667590618134, -0.011616894975304604, -0.0012204359518364072, -0.022687697783112526, 0.035777390003204346, 0.021231448277831078, 0.02651035040616989, 0.009697294794023037, 0.008199675008654594, 0.027734924107789993, 0.00909328181296587, -0.012336745858192444, 0.004252908751368523, 0.002827688120305538, -0.002262977883219719, 0.02485552243888378, -0.009995163418352604, 0.0009189468692056835, 0.002800797112286091, 0.005154790356755257, 0.003268286120146513, 0.02334962785243988, -0.013768171891570091, -0.042396701872348785, -0.0094987154006958, -0.004029507283121347, -0.00038190337363630533, 0.008547188714146614, -0.001115974853746593, -0.003284834325313568, -0.002804934047162533, -0.008150029927492142, 0.006213880609720945, 0.010458515025675297, -0.021876830607652664, -0.0076908147893846035, 0.01755772903561592, 0.01977519877254963, -3.1957256396708544e-06, 0.01001998595893383, -0.034254949539899826, 0.011517605744302273, 0.004732809029519558, 0.008720945566892624, 0.021314188838005066, -0.03312966600060463, -0.02574913017451763, 0.0029207721818238497, -0.0005502304411493242, -0.012791823595762253, 0.02066880650818348, -0.020486775785684586, 0.02134728617966175, 0.015894627198576927, -0.023680593818426132, -0.00940769910812378, 0.01701163500547409, 0.015712596476078033, 0.0029311147518455982, -0.002161619486287236, 0.0034834137186408043, 0.0337584987282753, -0.004360472783446312, 0.013445480726659298, -0.02189338020980358, -0.0008687849040143192, -0.0038019681815057993, 0.026394512504339218, 0.02886020764708519, 0.014570764265954494, -0.002132660010829568, -0.011451412923634052, 0.0222408939152956, 0.013768171891570091, 0.00898571778088808, -0.030465390533208847, 0.020619161427021027, -0.006342129781842232, 0.016870975494384766, -0.026775123551487923, -0.017392246052622795, -0.01929529942572117, -0.009043636731803417, 0.012692533433437347, 0.013180708512663841, -0.008402391336858273, 0.012717355974018574, 0.0006350404000841081, -0.009697294794023037, 0.020470228046178818, -0.006569668650627136, 0.0019733828958123922, -0.00044964789412915707, 0.0047493577003479, -0.0032910399604588747, -0.013222078792750835, 0.011095624417066574, 0.005986341740936041, 0.005494030192494392, 0.005684335716068745, -0.010003437288105488, -0.003957108594477177, -0.020155809819698334, -0.007210914511233568, 0.00032605291926302016, -0.020983224734663963, -0.008754041977226734, -0.020222002640366554, 0.006288347765803337, -2.7165688152308576e-05, -0.007955587469041348, -0.013064870610833168, -0.009697294794023037, 0.00774873374029994, 0.034751396626234055, 0.016548283398151398, -0.012204359285533428, -0.025914613157510757, 0.0003022647579200566, -0.029158076271414757, 0.002329170936718583, 0.006031849421560764, -0.011012882925570011, -0.019742103293538094, 0.04689783602952957, -0.00871267169713974, 0.025087198242545128, 0.003131762845441699, 0.018931236118078232, -0.008327923715114594, -0.048387181013822556, -0.03567809984087944, -0.015538838692009449, 0.00502654118463397, -0.0052168467082083225, -0.042661476880311966, 0.009730391204357147, -0.011666540056467056, 0.021744444966316223, -0.010756384581327438, 0.009415973909199238, -0.005415426101535559, -0.018683012574911118, -0.015588483773171902, -0.024226687848567963, -0.03395707905292511, 0.013114514760673046, -0.02465694397687912, 0.011592073366045952, 0.008009369485080242, -0.0007301930454559624, -0.01281664613634348, -0.005762939807027578, -0.0017282613553106785, 0.006739288568496704, 0.02761908620595932, -0.031375546008348465, 0.0021492084488272667, 0.006135276053100824, 0.0189974308013916, -0.0023560619447380304, -0.011037705466151237, -0.0024181180633604527, 0.00545679684728384, 0.014430103823542595, 0.017110925167798996, 0.019543522968888283, 0.019808296114206314, -0.01567949913442135, -0.0037006100174039602, 0.02053642086684704, 0.009598004631698132, -0.029356656596064568, 0.023184146732091904, -0.00261876592412591, 0.006482790224254131, 0.01722676306962967, -0.014686602167785168, -0.016804782673716545, 0.0017561865970492363, 0.025567099452018738, -0.0051423790864646435, -0.0003193301672581583, 0.008220359683036804, 0.010177195072174072, -0.01395020354539156, 0.019808296114206314, 0.029604880139231682, -0.03435423597693443, 0.005572634749114513, -0.02320069447159767, 0.0008936073281802237, 0.007492235396057367, -0.013048321940004826, 0.0001100202280213125, 0.01132730022072792, -0.012369842268526554, -0.023581305518746376, 0.0024057067930698395, -0.018418239429593086, -0.00031803734600543976, 0.009895874187350273, -0.002242292510345578, -0.007219188846647739, 0.017094377428293228, -0.0001918566704262048, -0.02665928564965725, 0.0035620180424302816, -0.020205454900860786, 0.00019780370348598808, 0.02829756587743759, -0.0007048534462228417, 0.015092034824192524, -0.009523537009954453, 0.012204359285533428, 0.016134576871991158, -0.02617938444018364, 0.021529316902160645, 0.0004478379269130528, -0.0006324546993710101, 0.010441967286169529, -0.0030572954565286636, -0.002904223743826151, -0.034188754856586456, -0.010590901598334312, 0.0005652272957377136, -0.015141679905354977, 0.0006045295158401132, 0.011509331874549389, 0.015828434377908707, -0.002217469969764352, -0.014082589186728, -0.00456318911164999, -0.02646070532500744, -0.0024884482845664024, -0.0017613579984754324, -0.013106240890920162, -0.00028959495830349624, -0.007554291747510433, -0.013064870610833168, 0.006470378953963518, -0.020503323525190353, 0.008927798829972744, 0.003137968247756362, -0.0012162989005446434, -0.002912498079240322, 0.014115686528384686, 0.002428460633382201, -0.002329170936718583, -0.02162860706448555, -0.010102727450430393, 0.019526975229382515, 0.00288353837095201, 0.013850913383066654, 0.02038748562335968, 0.03349372744560242, 0.007781830616295338, -6.26378387096338e-05, 0.008729219436645508, -0.023101404309272766, -0.024971360340714455, 0.012551872991025448, -0.02306830696761608, -0.009283587336540222, 0.022969018667936325, 0.009035362862050533, 0.03594287112355232, -0.0020778439939022064, 0.008894702419638634, 0.00249672238714993, 0.011277655139565468, -0.007119899149984121, 0.0009701431263238192, -0.005642964970320463, 0.021032869815826416, 0.0031400369480252266, 0.006486927159130573, -0.016018738970160484, 0.006085631437599659, 0.003911600448191166, -0.022786986082792282, 0.01886504329741001, 0.008828509598970413, 0.040808066725730896, 0.006288347765803337, 0.028132082894444466, 0.006755836773663759, 0.015240969136357307, -0.0028359622228890657, 0.019957231357693672, 0.0015214078593999147, 0.021032869815826416, 0.00626766262575984, 0.025467809289693832, 0.0075005097314715385, -0.005502304527908564, -0.006429008208215237, -0.02265460044145584, 0.004865195602178574, -0.003452385775744915, -0.006548983510583639, 0.009556634351611137, -0.0036675133742392063, 0.007761145010590553, -0.006888223346322775, 0.013577867299318314, -0.010293032974004745, -0.013006950728595257, 0.02892640046775341, 0.030002038925886154, -0.006110453978180885, -0.021661704406142235, 0.008108658716082573, 0.00019237380183767527, 0.018848495557904243, -0.022125056013464928, -0.020006874576210976, -0.017110925167798996, 0.014289443381130695, 0.0026580682024359703, 0.023333080112934113, 0.006594491191208363, -0.0037275010254234076, -0.002267114818096161, -0.02507065050303936, -0.0014221181627362967, 0.00438943225890398, 0.007521194871515036, -0.0257656779140234, -0.02258840762078762, 0.02905878610908985, -0.026212481781840324, -0.025716032832860947, 0.003131762845441699, 0.018782302737236023, 0.01810382306575775, -0.0060483976267278194, 0.026708930730819702, 0.009655923582613468, -0.013040048070251942, -0.0011604484170675278, 0.01701163500547409, -0.007115762215107679, 0.012907661497592926, 0.00563055370002985, -0.027983147650957108, -0.005345095880329609, -0.013222078792750835, -1.7340145859634504e-05, -0.008236908353865147, -0.000330448558088392, 4.8707544920034707e-05, 0.0035682236775755882, -0.01611802913248539, -0.026063546538352966, -0.024838974699378014, -0.010607450269162655, -0.002866990165784955, 0.0011966477613896132, 0.0032931084278970957, 0.03010132908821106, -0.023382725194096565, -0.02664273791015148, 0.01384263951331377, 0.015844982117414474, 0.003251737682148814, 0.0034234263002872467, 0.021926475688815117, 0.006842715200036764, 0.011972683481872082, 0.016167674213647842, -0.016779959201812744, 0.015298888087272644, -0.0046045598573982716, 0.009655923582613468, -0.00318554462864995, 0.00019832083489745855, -0.004989307839423418, -0.01091359369456768, 0.02761908620595932, -0.017474988475441933, -0.012477406300604343, 0.005047226790338755, -0.005738117266446352, -0.00024137223954312503, -0.010326129384338856, 0.01153415348380804, 0.019444232806563377, -0.014926551841199398, 0.0017365355743095279, 0.010839126072824001, 0.019047074019908905, -0.0015586414374411106, -0.009689019992947578, -0.01838514395058155, -0.00781906396150589, 0.01929529942572117, 0.011889941990375519, -0.0032476007472723722, 0.0016444857465103269, 0.0031627907883375883, -0.004960347898304462, -0.005936696659773588, -0.011045979335904121, 0.005953245330601931, -0.00018603891658131033, 0.017177117988467216, 0.02204231359064579, 0.01108735054731369, -0.0022691835183650255, 0.006218017544597387, 0.008373431861400604, -0.016060110181570053, -0.023167597129940987, 0.008013506419956684, -0.006565531715750694, 0.012609791941940784, -0.019196009263396263, -0.010781207121908665, -0.003419289132580161, 0.0039488342590630054, -0.009308409877121449, -0.007020609453320503, 0.04084116593003273, -0.010044808499515057, 0.006623450666666031, 0.0064993384294211864, -0.003917806316167116, -0.00023542519193142653, -0.00757497688755393, 0.003930217586457729, -0.010235114023089409, -0.007674266584217548, 0.010408870875835419, 0.015381629578769207, -0.017938340082764626, -0.0050555006600916386, 0.00516720162704587, -0.008083837106823921, -0.0027573578990995884, -0.024028107523918152, -0.009697294794023037, -0.006793070584535599, -0.001918566646054387, -0.026675833389163017, 0.014521119184792042, 0.005638827569782734, -0.01047506369650364, 0.001208024681545794, 0.01639935001730919, -0.0073970830999314785, -0.003913669381290674, 0.010251661762595177, -0.009391151368618011, -0.009399425238370895, -0.0096393758431077, 0.009755213744938374, 0.021032869815826416, 0.0015607100212946534, -0.010251661762595177, -0.03849130868911743, -0.002800797112286091, -0.0009525605710223317, -0.0014459063531830907, 0.007632895838469267, 0.0022216071374714375, 0.018980881199240685, -0.007372260559350252, 0.0077735562808811665, -0.003950902726501226, -0.01609320566058159, -0.026394512504339218, -0.011410041712224483, -0.006561394780874252, -0.007459138985723257, -0.02313450165092945, -0.05537055805325508, -0.034817587584257126, 0.007934901863336563, 0.008414802141487598, -0.032616667449474335, -0.015414726920425892, 0.03147483617067337, -0.007566703017801046, 0.01068191695958376, 0.0007663923897780478, 0.011393493041396141, 0.0021037005353718996, 0.01566295139491558, -0.0008356883190572262, -0.01762392185628414, -0.000696062168572098, 0.008290690369904041, 0.035512618720531464, 0.0024760370142757893, -0.0020995636004954576, 0.01803763024508953, 0.0039488342590630054, -0.013561318628489971, -0.013188982382416725, 0.005634690634906292, 0.03663790225982666, 0.01803763024508953, 0.006110453978180885, 0.013884009793400764, -0.023117952048778534, 0.009192571975290775, -0.017921792343258858, 0.014636957086622715, 0.006027712486684322, 0.020006874576210976, 0.0008429281879216433, -0.005394740495830774, -0.0006743425619788468, -0.003859887132421136, -2.8830212613684125e-05, 0.010988060384988785, -0.00898571778088808, -0.010673643089830875, -0.003810242284089327, 0.01618422195315361, 0.008960896171629429, -0.002511202124878764, 0.009771761484444141, 0.01136039663106203, -0.008497543632984161, 0.011319026350975037, 0.012063698843121529, -0.0012649093987420201, 0.0003451868542470038, 0.00846031028777361, 0.01009445358067751, -0.020420582965016365, 0.015530564822256565, -0.007744596805423498, -0.003454454243183136, -0.008547188714146614, -0.004223949275910854, -0.0012773206690326333, 0.02866162732243538, -0.008199675008654594, -0.0040501924231648445, -0.005018267314881086, -0.0069502792321145535, 0.0032641489524394274, 0.017723212018609047, -0.007537743542343378, 0.0025401616003364325, 0.014587312005460262, -0.026775123551487923, -0.010077904909849167, 0.012212633155286312, -0.02258840762078762, -0.005266491323709488, -0.006333855912089348, 0.008762316778302193, 0.012725630775094032, 0.0023953639902174473, -0.00016910277190618217, -0.01360268983989954, 0.013279997743666172, -0.0009096384746953845, -0.010698465630412102, -0.0030200618784874678, 0.018368594348430634, 0.014231524430215359, -0.00516720162704587, -0.0025380931328982115, 0.011625169776380062, -0.02106596529483795, 0.017657019197940826, 0.004468036815524101, -0.0011842366075143218, -0.0020519872196018696, -0.0025277503300458193, -0.007463275920599699, -0.0007162304245866835, 0.012113343924283981, -0.012510502710938454, -0.00811279658228159, 0.007517057936638594, 0.0020840493962168694, 0.01860027201473713, 0.010309580713510513, -0.0432572141289711, 0.0005600560107268393, 0.014984470792114735, 0.0013269655173644423, -0.015563661232590675, 0.03221951052546501, -0.009258764795958996, 0.029770363122224808, -0.010880496352910995, -0.0007426042575389147, -0.003973656799644232, -0.004621108062565327, 0.009440796449780464, 0.0003020061703864485, 0.01218781154602766, -0.0007089905557222664, 0.024342525750398636, 0.005299587734043598, -0.018567174673080444, -0.0006102179759182036, -0.013205531053245068, -0.0022071273997426033, -0.01687924936413765, 0.007355712354183197, -0.0017230900702998042, -0.01585325598716736, 0.013106240890920162, 0.011136994697153568, -0.0016817193245515227, -0.011939587071537971, 0.00940769910812378, 0.008646477945148945, 0.010417144745588303, 0.006218017544597387, 0.004476310685276985, 0.009904148057103157, 0.005601594224572182, 0.001413844060152769, -0.01681305654346943, 0.02005651965737343, -0.029853103682398796, -0.0017944545252248645, -0.044250112026929855, 0.012593244202435017, -0.02404465712606907, -0.012063698843121529, 0.002451214473694563, 0.0016393143450841308, -0.019179461523890495, 0.010135823860764503, -0.04140380769968033, -0.0036075259558856487, -0.015199598856270313, -0.017524633556604385, -0.0076908147893846035, -0.008063151501119137, -0.00463351933285594, -0.006706192158162594, -0.01132730022072792, -0.011476234532892704, -0.0018285854021087289, -0.0073970830999314785, 0.031243160367012024, 0.010135823860764503, -0.01009445358067751, -0.018070725724101067, 0.012262278236448765, 0.0040522608906030655, 0.02238982729613781, 0.022638052701950073, 0.003570292377844453, -0.002229881240054965, -0.018500981852412224, -0.015075487084686756, -0.011045979335904121, -0.0016051835846155882, 0.01831895112991333, -0.004782454110682011, -0.016060110181570053, 0.02700679935514927, 0.001493482617661357, -0.012295374646782875, 0.020205454900860786, 0.025848420336842537, -0.006735151633620262, 0.01115354336798191, 0.02569948509335518, -0.03849130868911743, 0.039020854979753494, 0.012717355974018574, 0.011881668120622635, 0.009680746123194695, 0.023465465754270554, -0.011484509333968163, -0.014678328298032284, 0.0038847096730023623, 0.008894702419638634, 0.013586141169071198, 0.02293592132627964, 0.017193667590618134, 0.0201723575592041, -0.026609640568494797, -0.009424247778952122, 0.00683444133028388, 0.014984470792114735, -0.0022733204532414675, 0.01975865103304386, -0.012659437023103237, 0.017524633556604385, 0.013288271613419056, -0.015075487084686756, 0.009283587336540222, -0.018898140639066696, -0.009796584025025368, -0.01009445358067751, 0.013222078792750835, -0.016978539526462555, -0.013941929675638676, 0.0254843570291996, -0.013892284594476223, 0.013040048070251942, 0.002078878227621317, -0.021165255457162857, -0.020966675132513046, 0.000421205535531044, 0.011285929940640926, 0.008787138387560844, 0.00803832896053791, 0.002062329789623618, 0.011145269498229027, -0.0002673582057468593, -0.013379287905991077, 0.0062262918800115585, 0.02857888676226139, 0.01263461448252201, -0.016101479530334473, 0.01174928154796362, 0.009209119714796543, -0.014032945036888123, 0.021396931260824203, 0.024259785190224648, -0.041436903178691864, -0.00783147569745779, -6.845559983048588e-05, 0.0011180434376001358, 0.01977519877254963, -0.006433145608752966, -0.010673643089830875, -0.013652333989739418, 0.009176023304462433, -0.010897045023739338, -0.0010575387859717011, -0.017094377428293228, -0.0001751790987327695, -0.013660608790814877, -0.005564360413700342, 0.035777390003204346, 0.009780035354197025, -0.01594427227973938, -0.00272839842364192, 0.01091359369456768, -0.020139262080192566, -0.01476934365928173, 0.00418257899582386, 0.0011201120214536786, 0.001517270808108151, 0.02391226962208748, -0.008687849156558514, 0.006822030059993267, -0.0005086011369712651, 0.006913045421242714, 0.021181803196668625, -0.007728048600256443, 0.001333171152509749, 0.0058580925688147545, -0.030200617387890816, 0.010044808499515057, 0.011451412923634052, -0.001576223992742598, 0.021777542307972908, 0.003171064890921116, 0.004650068003684282, -0.01812037080526352, -0.0060442606918513775, -0.002215401502326131, 0.018831947818398476, -0.004902428947389126, -0.008894702419638634, 0.0007829407113604248, 0.009349780157208443, 5.501011401065625e-05, 0.008199675008654594, 0.01294903177767992, 0.000934460898861289, -0.002730466891080141, 0.007455002050846815, 0.003332410706207156, 0.015596757642924786, 0.009506989270448685, 0.0201723575592041, -0.0071323104202747345, 0.00687167514115572, -0.004455625545233488, 0.003549607004970312, -0.005249943118542433, 0.0052416687831282616, 0.008621656335890293, 0.008993992581963539, 0.012121617794036865, 0.01239466480910778, 0.0010880496120080352, 0.01543127465993166, -0.007620484568178654, -0.001633108826354146, 0.008663026615977287, -0.000339756952598691, -0.011062528006732464, -0.016763411462306976, 0.016928894445300102, 0.017028184607625008, 0.009540085680782795, 0.014951374381780624, 0.007856298238039017, 0.011302477680146694, -0.000582809851039201, 0.008663026615977287, -0.008063151501119137, -0.016961991786956787, 0.007430179510265589, 0.006987513042986393, 0.01866646483540535, -0.016366252675652504, 0.01091359369456768, -0.010963237844407558, 0.028214823454618454, 0.008468584157526493, 0.020569516345858574, -0.0222408939152956, 0.005878777708858252, 0.019874488934874535, 0.017872147262096405, 0.0003177787584718317, 0.014314265921711922, -0.013337916694581509, -0.001298006041906774, 0.013544769957661629, -0.024954812601208687, 0.003535127267241478, 0.02260495536029339, 0.002833893522620201, -0.016374526545405388, 0.04477965459227562, -0.0009210154530592263, -0.006184921134263277, -0.0302337147295475, 0.029389752075076103, -0.0029786911327391863, -0.011964409612119198, -0.012957306578755379, 0.0028876755386590958, 0.02128109335899353, -0.01094669010490179, 0.007670129649341106, -0.020768096670508385, -0.02018890716135502, -0.01549746748059988, -0.01132730022072792, 0.025815322995185852, 0.008836783468723297, -0.011029431596398354, 0.0018327224534004927, -0.00700819818302989, 0.015580208972096443, -0.025087198242545128, -0.001005308236926794, -0.00626766262575984, 0.0039467657916247845, -0.007839749567210674, 0.00027433951618149877, 0.013329642824828625, -0.009540085680782795, -0.011136994697153568, 0.00364889670163393, 0.014843810349702835, -0.006168372929096222, -0.01366888266056776, -0.01590290106832981, 0.0051423790864646435, 0.018136918544769287, -0.00853891484439373, 0.002147139748558402, -0.022075410932302475, -0.023250339552760124, -0.011285929940640926, 0.03160722181200981, 0.0019671772606670856, 0.0010601244866847992, -0.015034115873277187, 0.008480995893478394, -0.0112611074000597, 0.017690114676952362, -0.01256842166185379, -0.008472721092402935, -0.00871267169713974, -0.0034110150299966335, 0.004885880742222071, -0.018964333459734917, 0.016432445496320724, 0.0009360123076476157, 0.011244558729231358, 0.009531811811029911, -0.006193195469677448, -0.013577867299318314, -0.015588483773171902, 0.0011035636998713017, 0.006850989535450935, 0.014885181561112404, -0.002765632001683116, -0.019378039985895157, -0.012254004366695881, 0.020023424178361893, -0.00442666606977582, -0.010168920271098614, -0.01810382306575775, 0.008369294926524162, -0.009937244467437267, 0.02136383391916752, 0.007517057936638594, -0.0035475383047014475, -0.004861058201640844, -0.021959573030471802, 0.01473624724894762, -0.0064165969379246235, -0.019162911921739578, 0.008894702419638634, 0.015538838692009449, -0.033228952437639236, -0.017524633556604385, 0.021959573030471802, -0.013561318628489971, -0.009291861206293106, 0.019874488934874535, -0.011823749169707298, -0.011335574090480804, 0.004981033504009247, 0.017739759758114815, 0.0391201414167881, -0.005816721823066473, 0.01387573592364788, 0.018931236118078232, -0.0060483976267278194, -0.014744521118700504, -0.006366952322423458, 0.020337840542197227, 0.0001513909373898059, 0.004339787643402815, -0.009366328828036785, -0.014397007413208485, -0.009589730761945248, -0.006644135806709528, -0.016407623887062073, -0.02624557912349701, -0.006520024035125971, 0.015820158645510674, 0.0003759563260246068, -0.013478577136993408, -1.4027255929249804e-05, 0.007310204207897186, 0.012138166464865208, -0.014305991120636463, 0.0023870898876339197, -0.00034208406577818096, -0.009978615678846836, -0.00098152004648, -0.0142232496291399, -0.007343301083892584, 0.012750452384352684, 0.008687849156558514, -0.013304820284247398, 0.00838584266602993, -0.005506441462785006, 0.008613381534814835, -0.00545679684728384, -0.02500445768237114, 0.002325034001842141, 0.0032744917552918196, 0.0003671650483738631, -0.019047074019908905, 0.025666387751698494, -0.016432445496320724, -0.005796036683022976, -0.005072048865258694, -0.015373355709016323, 0.02859543450176716, 0.014686602167785168, -0.021247996017336845, -0.0028380306903272867, -0.02707299217581749, 0.015166502445936203, -0.013677156530320644, -0.005183749832212925, 0.005895326379686594, 0.007570839952677488, 0.0033427532762289047, -0.006246977020055056, 0.003650965169072151, -0.0013941929209977388, -0.016374526545405388, -0.003675787476822734, 0.0007689780904911458, -0.005618142429739237, -0.0071323104202747345, 0.0014334950828924775, -0.007281244732439518, -0.007736322935670614, 0.005249943118542433, -0.002428460633382201, -0.002083015162497759, 0.025583647191524506, -0.013296546414494514, 0.0008987786713987589, -0.0142232496291399, -0.020437130704522133, -0.024954812601208687, -0.0165731068700552, 3.1771411158842966e-05, 0.009589730761945248, -0.010863948613405228, 0.008836783468723297, 0.00499344477429986, -0.018302401527762413, 0.0014428035356104374, -0.00043801238643936813, -0.007380534429103136, 0.012212633155286312, 0.005746391601860523, 0.014537667855620384, -0.006809618789702654, 0.031524479389190674, 0.0172102153301239, 0.0009199811611324549, 0.011012882925570011, 0.030018586665391922, 0.02156241424381733, -0.0049479370936751366, 0.015274066478013992, 0.008361020125448704, 0.0062262918800115585, 0.0003666479024104774, 0.009424247778952122, -0.003837133292108774, 0.013511673547327518, 0.012800097465515137, -0.01047506369650364, 0.0011449344456195831, -0.02493826299905777, -0.0017241243040189147, -0.02003997191786766, -0.009970340877771378, 0.003959177061915398, 0.0013600620441138744, 0.018170015886425972, -0.008274141699075699, 0.0023395137395709753, -0.007446727715432644, -0.018964333459734917, -0.015042389743030071, 0.0020230277441442013, 0.018219660967588425, 0.011029431596398354, 0.010111001320183277, 0.018898140639066696, 0.0062262918800115585, 0.003702678484842181, -0.022091958671808243, -0.0027718376368284225, 0.017607374116778374, 0.016995087265968323, 0.004699712619185448, -0.004521818365901709, -0.01750808395445347, -0.010417144745588303, 0.018352046608924866, 0.003626142628490925, 0.027470150962471962, -0.0016217317897826433, -0.0026022177189588547, 0.011070801876485348, 0.009970340877771378, 0.02465694397687912, 0.030912194401025772, 0.012866291217505932, 0.005709157790988684, 0.008977443911135197, -0.017441891133785248, 0.003096597734838724, 0.008311375975608826, -0.013553044758737087, 0.009341506287455559, -0.013155885972082615, -0.004226018209010363, 0.0005184267065487802, -0.012750452384352684, 0.004306690767407417, -0.006118727847933769, -0.010036534629762173, -0.025782225653529167, -0.016540009528398514, -0.0011883736588060856, -0.00644141947850585, -0.00460042292252183, -0.004534229636192322, 0.005469207651913166, 0.008977443911135197, -0.009465618059039116, 0.004168098792433739, 0.000809314486104995, -0.00403571268543601, 0.003983999136835337, -0.02025509998202324, -0.012038876302540302, 0.012866291217505932, 0.021645154803991318, -0.027255022898316383, -0.003166927956044674, -0.0071281734853982925, -0.010003437288105488, -0.0038516130298376083, -0.035711195319890976, 0.0037668030709028244, -0.010309580713510513, -0.01666412129998207, -0.0016010464169085026, 0.01570432074368, -0.0033406848087906837, 0.012254004366695881, -0.001401432789862156, 0.022472569718956947, 0.006929594092071056, -0.006780659314244986, 0.027089539915323257, -0.012667711824178696, 0.016200769692659378, 0.02361440099775791, 0.028429951518774033, -0.013627511449158192, -0.004221880808472633, -0.008828509598970413, 0.003888846840709448, 0.011004609055817127, -0.008505817502737045, 0.003808173816651106, -0.0022381553426384926, -0.005535400938242674, -0.013768171891570091, 0.010425418615341187, 0.009184297174215317, 0.021446576341986656, 0.007603936363011599, 0.006896497216075659, -0.009548359550535679, -0.005903600249439478, -0.011757555417716503, 0.01764047145843506, 0.012667711824178696, 0.006879949010908604, -0.034883782267570496, -0.01831895112991333, 0.011484509333968163, 0.010359225794672966, 0.021512769162654877, 0.01921255700290203, -0.004381158389151096, -0.0014407349517568946, 0.02417704276740551, -0.0023188283666968346, 0.020337840542197227, 0.009730391204357147, 0.007930764928460121, 0.006015301216393709, 0.009928970597684383, -0.0002691681729629636, 0.00857201125472784, 0.0064124600030481815, -0.0037171582225710154, -0.011517605744302273, -0.015456097200512886, -0.010028259828686714, -0.03471830114722252, 0.0077652824111282825, -0.033444080501794815, -0.008137618191540241, -0.027304667979478836, -0.005469207651913166, 0.011757555417716503, 0.003439974505454302, -0.001047713216394186, -0.002813208382576704, 0.023333080112934113, -0.00750878406688571, -0.019179461523890495, -0.02589806355535984, 0.006482790224254131, 0.02899259328842163, -0.01030130684375763, -0.00609390577301383, -0.006656547077000141, 0.012733904644846916, 0.00040026160422712564, -0.005531264003366232, -0.012973854318261147, -0.022538762539625168, -0.013329642824828625, 0.0028752642683684826, 0.002145071281120181, 0.013304820284247398, -0.01770666427910328, -0.001975451363250613, 0.003499962156638503, -0.00176963210105896, -0.013999848626554012, 0.013528222218155861, 0.026262126863002777, 0.011492783203721046, -0.0003025233163498342, -0.0077694193460047245, -0.014802440069615841, 0.012982129119336605, 0.010979786515235901, -0.02679167129099369, -0.010168920271098614, -0.005440248176455498, -0.01614285074174404, 0.007388808764517307, -0.005105145741254091, -0.006594491191208363, 0.018583722412586212, -0.007442590780556202, -0.00874576810747385, -0.018070725724101067, -0.018434789031744003, 0.011393493041396141, 0.00024279435456264764, 0.0017665292834863067, -0.005878777708858252, -0.009209119714796543, 0.0077694193460047245, -0.019162911921739578, -0.0025525728706270456, -0.006879949010908604, -0.02230708673596382, -0.007893531583249569, -0.007678403984755278, -0.019857941195368767, -0.016854427754878998, 0.015894627198576927, 0.017193667590618134, 0.020420582965016365, -0.014835536479949951, -0.015009293332695961, -0.01560503151267767, 0.016515187919139862, -0.0012535324785858393, -0.0040543293580412865, 0.015869803726673126, -0.006797207519412041, -0.008232771418988705, 0.0064952014945447445, 0.0008170715300366282, -0.00049076002324, 0.013826090842485428, -0.011889941990375519, -0.023448918014764786, -0.0057753510773181915, -0.01574569195508957, -0.00026684108888730407, -0.0037461176980286837, -0.020337840542197227, 0.018980881199240685, 0.01722676306962967, -0.018153468146920204, 0.026328319683670998, 0.008323786780238152, 0.017259860411286354, 0.005469207651913166, -0.00025546413962729275, 0.004906566347926855, -0.0021864420268684626, 0.00680134491994977, -0.00881196092814207, -0.04931388795375824, 0.014488022774457932, -0.0018647847464308143, -0.00981313269585371, -0.033311694860458374, 0.00214300281368196, 0.0006562428898178041, -0.0013724733144044876, 0.007310204207897186, 0.012411212548613548, 0.008377568796277046, 0.012105070054531097, 0.0029249091167002916, 0.020139262080192566, -0.01178237795829773, -0.010069631040096283, 0.003723363857716322, 0.010441967286169529, 0.0126015180721879, 0.0019547659903764725, 0.01543127465993166, -0.019526975229382515, 0.0069461422972381115, 0.007190229371190071, 0.013288271613419056, -0.006007026880979538, -0.002314691198989749, -0.01047506369650364, 0.011476234532892704, 0.013313094154000282, -0.006582079920917749, 0.007537743542343378, 0.005378192290663719, -0.011683088727295399, -0.003619937226176262, 0.02713918499648571, -0.007107487879693508, 0.0001499688223702833, 0.017822502180933952, 0.012320197187364101, 0.003053158288821578, 0.020552968606352806, -0.039020854979753494, -0.019642813131213188, 0.004331513307988644, 0.012436035089194775, 0.009945518337190151, -0.003756460500881076, -0.017044732347130775, 0.003636485431343317, 0.02182718738913536, 0.016606202349066734, -0.007409494370222092, -0.004265320021659136, -0.026063546538352966, -0.020205454900860786, 0.003990205004811287, 0.0042136069387197495, 0.00027925230097025633, -0.02156241424381733, 0.02080119214951992, -0.001333171152509749, -0.008009369485080242, 0.007095076609402895, -0.0048486473970115185, 0.007620484568178654, -0.01934494450688362, -0.004542503971606493, 0.006296622101217508, 0.010210291482508183, 0.0062345657497644424, 0.019311847165226936, 0.009109830483794212, 0.003121420042589307, -0.01977519877254963, -0.002720124088227749, 0.005154790356755257, -0.019229106605052948, 0.011103898286819458, 0.016829604282975197, -0.014860359020531178, -0.01851752959191799, 0.019659360870718956, -0.007355712354183197, -0.014678328298032284, 0.019510427489876747, 0.011840296909213066, 0.006884085945785046, -0.019328394904732704, 0.0024677629116922617, 0.002629108726978302, -0.012179536744952202, -0.0111204469576478, 0.010623998008668423, 0.004401843529194593, 0.0180541779845953, 0.0019340807339176536, -0.014719698578119278, -0.0015420932322740555, 0.007165406830608845, -0.00435633584856987, -0.02975381538271904, 0.01195613481104374, 0.03230224922299385, 0.01433081366121769, -0.008480995893478394, 0.00838584266602993, -0.00516720162704587, 0.0006707226275466383, 0.0015131337568163872, 0.006743425503373146, 0.012262278236448765, -0.014868632890284061, 0.010971512645483017, 0.006288347765803337, 0.003915737848728895, -0.02962142787873745, 0.005973930470645428, 0.002416049363091588, 0.004434939939528704, -0.015828434377908707, -0.019609715789556503, -0.0012618066975846887, -0.0005466105067171156, -0.007430179510265589, 0.00909328181296587, 0.01879885047674179, 0.011136994697153568, 0.00377094023860991, 0.02700679935514927, 0.02707299217581749, 0.0067847962491214275, 0.025054102763533592, 0.005183749832212925, 0.012378116138279438, 0.009606278501451015, 0.006590354256331921, -0.01631660759449005, -0.00449285889044404, 0.011649992316961288, -0.004430803004652262, -0.01094669010490179, -0.00757497688755393, -0.022158151492476463, -0.0159856416285038, 0.017342600971460342, 0.007256422657519579, -0.0037316379602998495, 0.005721569061279297, 0.003721295390278101, -0.004348061513155699, 0.0012535324785858393, 0.00940769910812378, -0.017375698313117027, 0.023018663749098778, 0.002015787875279784, 0.007537743542343378, 0.016349704936146736, -0.015298888087272644, 0.0024429403711110353, -0.005088597536087036, 0.004761768504977226, -0.004674890078604221, -0.005444385576993227, -0.0064993384294211864, -0.011269381269812584, -0.0013879872858524323, 0.006859263870865107, 0.002432597801089287, 0.010822577401995659, 0.009796584025025368, -0.025980805978178978, -0.005891188979148865, -0.029637977480888367, -0.001458317507058382, -0.02417704276740551, 0.0017592894146218896, -0.003979862201958895, -0.01845133677124977, 0.0019030526746064425, 0.001902018440887332, 0.013412384316325188, -0.002140934346243739, -0.0020468158181756735, -0.017127474769949913, 0.019262202084064484, -0.0021367971785366535, 0.0272715725004673, -0.01609320566058159, 0.011625169776380062, -0.015596757642924786, 0.007057843264192343, 0.027387410402297974, 0.0013279997510835528, 0.004323238972574472, -0.0034317004028707743, -0.028198275715112686, 0.004885880742222071, 0.013296546414494514, -0.022141603752970695, 0.008588558994233608, -0.0052168467082083225, 0.006726877298206091, 0.007004061248153448, -0.015058938413858414, -0.025600194931030273, 0.0005864297854714096, 0.023250339552760124, -0.02066880650818348, -0.00597806740552187, 0.02796659991145134, -1.4027255929249804e-05, 0.004137070849537849, 0.015654677525162697, -0.010425418615341187, -0.010590901598334312, 0.004931388422846794, 0.010963237844407558, 0.01026821043342352, 0.012965580448508263, -0.01390883233398199, -0.0020675011910498142, 0.01178237795829773, 0.018765753135085106, -0.0036426910664886236, 0.001600012183189392, -0.007459138985723257, 0.004799002315849066, -0.026675833389163017, 0.016821330413222313, -0.010210291482508183, 0.002879401436075568, -0.00967247225344181, -0.010706739500164986, 0.0012897318229079247, 0.0009484235197305679, -0.02012271247804165, -0.0015152022242546082, -0.015331985428929329, -0.005332684610038996, -0.011567250825464725, -0.01005308236926794, 0.012378116138279438, -0.020917030051350594, -0.001861681928858161, -0.007914217188954353, 0.03119351528584957, -0.003917806316167116, -0.0023374450393021107, -0.0031896817963570356, 0.006118727847933769, 0.0064124600030481815, -0.024028107523918152, 0.00527062825858593, 0.010408870875835419, 0.0006614142330363393, -0.003837133292108774, -0.013718527741730213, -0.0029207721818238497, -0.002962142927572131, 0.0028566475957632065, -0.015621580183506012, -0.0313589982688427, 0.00513410521671176, -0.01615939848124981, -0.006056671962141991, 0.015505742281675339, -0.008402391336858273, 0.015472645871341228, -0.0036571708042174578, 0.01459558680653572, 0.002178167924284935, 0.004699712619185448, -0.004248771816492081, 0.010557805188000202, -0.0024263921659439802, 0.02141347900032997, 0.006813755724579096, 0.05235876888036728, 0.011906490661203861, 0.011236284859478474, 9.554048301652074e-05, 0.0024532831739634275, -0.01840169169008732, 0.009358054958283901, -0.013519948348402977, -0.016308333724737167, -0.004534229636192322, 0.009258764795958996, -0.00680134491994977, 0.0038123109843581915, 0.00817898940294981, 0.014827262610197067, -0.004774179775267839, -0.023879174143075943, -0.009581455960869789, -0.01574569195508957, 0.03759770095348358, 0.00278011173941195, 0.016829604282975197, -0.011558976024389267, -0.009796584025025368, 0.007082665339112282, -0.003810242284089327, 0.02391226962208748, 0.002362267579883337, 0.016002191230654716, 0.011881668120622635, 0.015555387362837791, -0.0037150897551327944, -0.030051684007048607, 0.007202640641480684, 0.01722676306962967, -0.014405281282961369, -0.008348609320819378, 0.017789404839277267, 0.0009303238475695252, -0.004137070849537849, 0.001500722486525774, -0.008696123026311398, 0.018633367493748665, -0.0012918004067614675, -0.029836555942893028, 0.00998688954859972, 0.0017241243040189147, 0.013834365643560886, -0.0160104651004076, -0.0043191020376980305, 0.014405281282961369, -0.000358632329152897, -0.031441740691661835, -0.001298006041906774, 0.00597806740552187, 0.015406452119350433, 0.008497543632984161, -0.014852085150778294, 0.0013290341012179852, 0.009589730761945248, -0.0035682236775755882, -0.01757427677512169, 0.0014303922653198242, 0.015315436758100986, -0.02258840762078762, 0.006520024035125971, 0.001894778455607593, 0.016209043562412262, -0.006714466027915478, 0.0010601244866847992, 0.017524633556604385, -0.00576707674190402, 0.009589730761945248, -0.020718451589345932, -0.004674890078604221, -0.034619010984897614, -0.017127474769949913, 0.009159475564956665, -0.02321724221110344, -0.019609715789556503, -0.03349372744560242, 0.009821406565606594, -0.004906566347926855, -0.01607665792107582, 0.0004449936968740076, -0.0011832022573798895, -0.020470228046178818, -0.012858016416430473, 0.014818988740444183, 0.0029952393379062414, -0.014670053496956825, 0.003555812407284975, -0.0039695193991065025, 0.021115610376000404, 0.005233394913375378, -0.010011712089180946, 0.0027863173745572567, -0.002585669280961156, 0.02526922896504402, 0.008183126337826252, 0.003936422988772392, 0.010317854583263397, 0.007835612632334232, -0.016614476218819618, -0.0006153893191367388, -0.018302401527762413, -0.02644415758550167, -0.009589730761945248, 0.0019237380474805832, 0.012700808234512806, 0.016432445496320724, 0.01587807759642601, -0.02439217083156109, 0.010590901598334312, 0.004811413586139679, -0.0012400869745761156, 0.03865678980946541, 0.001045127515681088, -0.005622279364615679, 0.008613381534814835, 0.009689019992947578, 0.019642813131213188, 0.011724459007382393, 0.0019258065149188042, 0.02761908620595932, 0.00602357555180788, 0.011410041712224483, 0.016912346705794334, -0.0025587785057723522, 0.019940681755542755, -0.002763563534244895, -0.0157291442155838, -0.0006133207934908569, 0.01574569195508957, 0.007517057936638594, 0.003551675472408533, 0.006201469339430332, 0.006888223346322775, 0.018285853788256645, 0.0017706663347780704, -0.003994341939687729, 0.010921867564320564, 0.00836515799164772, 0.008969170041382313, -0.013660608790814877, 0.01377644669264555, -0.02003997191786766, 0.016548283398151398, 0.031524479389190674, -0.0009846228640526533, -0.00442666606977582, -0.020437130704522133, 0.0005424734554253519, 0.0192787516862154, -0.014579038135707378, 0.017044732347130775, -0.001231812871992588, 0.023746786639094353, -0.0026559995021671057, 0.012940757907927036, 0.002643588464707136, -0.007608073763549328, 0.007757008075714111, 0.0017489467281848192, 0.0094987154006958, -0.003305519698187709, 0.00278011173941195, 0.01845133677124977, -0.00987932551652193, 0.0035661552101373672, -0.013346190564334393, 0.007020609453320503, 0.008869879879057407, -0.0024698313791304827, -0.0020023423712700605, 0.03504926711320877, 0.010342677123844624, 0.012783549726009369, 0.0021698938217014074, -0.004257046151906252, 0.008720945566892624, 0.027983147650957108, 0.025054102763533592, -0.01005308236926794, -0.004782454110682011, 0.007703226059675217, -0.021463124081492424, 0.0062304288148880005, -0.002114043338224292, 0.017938340082764626, 0.003098666202276945, -0.0009561805054545403, -0.012411212548613548, -0.0159856416285038, -0.003572360845282674, 0.024474911391735077, -0.011898215860128403, -0.015307162888348103, -0.020768096670508385, 0.007761145010590553, 9.79322248895187e-06, 0.007537743542343378, 0.0020643984898924828, 0.014785891398787498], "89e6af8e-8503-4b1d-8405-5c284128fd3e": [-0.024024860933423042, 0.012531355954706669, -0.0070721167139709, 0.004775519482791424, -0.013625307939946651, -0.0026384571101516485, 0.02591823972761631, 0.016240974888205528, -0.017741652205586433, 0.05413658171892166, -0.03051844611763954, 0.010820304043591022, 0.012741731479763985, 0.004708901047706604, -0.021640608087182045, 0.010083990171551704, -0.011738942936062813, 0.0014375646132975817, 0.03604430332779884, -0.01943867839872837, 0.05963439121842384, -0.020658856257796288, -0.030939197167754173, 0.014333571307361126, 0.014074108563363552, 0.008674475364387035, -0.015918398275971413, 0.019284404814243317, -0.02990134432911873, 0.015483623370528221, 0.011851143091917038, 0.01807825267314911, 0.026296913623809814, -0.026914015412330627, 0.00845708791166544, -0.03472595289349556, 0.025820063427090645, -0.0008555263048037887, -0.011900230310857296, -0.009417802095413208, 0.0030311576556414366, -0.008379950188100338, 0.005112119950354099, -0.02524503879249096, -0.043365366756916046, 0.012229817919433117, 0.05085472762584686, 0.006717985030263662, -0.01924232952296734, 0.008127499371767044, 0.033912502229213715, -0.015848273411393166, 0.006700453814119101, -0.0337442010641098, 0.004750975873321295, -0.033660050481557846, 0.04100916162133217, 0.011696867644786835, -0.008800700306892395, -0.04611426964402199, -0.010820304043591022, -0.0003948920057155192, -0.006006215233355761, 0.005161207634955645, 0.04126161336898804, 0.0013989958679303527, -0.02176683209836483, 0.03245389834046364, -0.028863493353128433, 0.028106141835451126, 0.028078092262148857, 0.0053750891238451, -0.03952251002192497, 0.04243971407413483, 0.038063906133174896, -0.003934018313884735, 0.030686745420098305, 0.026661565527319908, 0.011844130232930183, -0.015147022902965546, 0.01483847200870514, -0.02847079187631607, 0.040896959602832794, 0.0014621084555983543, 0.03865295648574829, 0.023660210892558098, -0.02199123241007328, -0.050602275878190994, -0.04328121617436409, -0.03245389834046364, 0.0071317232213914394, 0.010427603498101234, -0.01802215166389942, -0.010834328830242157, 0.02548346295952797, -0.023211410269141197, 0.002475416287779808, 0.011128854006528854, -0.01124105416238308, -0.02754514105618, -0.0006561080226674676, 0.030939197167754173, -0.005536376964300871, 0.020883256569504738, -0.0007621722179464996, 0.003013626439496875, 0.01855510286986828, -0.026731690391898155, 0.00030548247741535306, 0.025525538250803947, 0.023211410269141197, 0.0009545779903419316, -0.00284006679430604, 0.0019301935099065304, -0.03865295648574829, -0.007924136705696583, -0.00880771316587925, 0.015469598583877087, -0.020686905831098557, -0.013919833116233349, 0.03144409880042076, -0.0015287272399291396, -0.00012896445696242154, -0.00120001588948071, -0.02479623816907406, -0.0068512228317558765, -0.020280180498957634, 0.026759739965200424, 0.020939355716109276, 0.03318319842219353, -0.004617738071829081, -0.0023264004848897457, 0.014782371930778027, 0.01143740490078926, 0.03680165484547615, 0.030742846429347992, 0.029789144173264503, 0.06490779668092728, -0.018442902714014053, 0.028779342770576477, -0.049452222883701324, -0.0323977991938591, -0.014417721889913082, 0.021458283066749573, -0.0039831059984862804, -0.009768427349627018, -0.013120407238602638, 0.028779342770576477, -0.014207346364855766, 0.02340776100754738, -0.0959872454404831, -0.03099529631435871, -0.006549684796482325, 0.017685551196336746, 0.028582992032170296, -0.033435650169849396, 0.004410868976265192, 0.016325123608112335, 0.012075543403625488, 0.015104947611689568, 0.0020581718999892473, -0.025848113000392914, 0.020995456725358963, 0.05164012685418129, 0.029115943238139153, -0.0003363813739269972, 0.04426296800374985, 0.011353254318237305, -0.025413338094949722, 0.03708215430378914, 0.0021265437826514244, -0.01760140061378479, 0.01942465454339981, -0.008141525089740753, -0.05940999090671539, -0.00700900424271822, 0.013863733038306236, 0.017040399834513664, 0.0005377719062380493, -0.019045978784561157, -0.002966291969642043, 0.01621292345225811, -0.012082555331289768, 0.009088213555514812, 0.02385656163096428, 0.03593210503458977, 0.03351980075240135, 0.03351980075240135, 0.029256194829940796, 0.03029404580593109, -0.010729141533374786, -0.04841437190771103, -0.008590325713157654, 0.009754402562975883, 0.02565176412463188, -0.005171726457774639, -0.026493264362215996, -0.01594644971191883, -0.010238265618681908, -0.04095306247472763, -0.00962817668914795, -0.021023506298661232, -0.03489425405859947, 0.02106558158993721, -0.012089568190276623, 0.03800780698657036, 0.005326001904904842, -0.042018964886665344, 0.0012412143405526876, -0.042916566133499146, 0.01283289398998022, -0.00676356628537178, -0.010427603498101234, -0.005532871000468731, 0.013471032492816448, 0.008849788457155228, -0.026100564748048782, 0.02387058548629284, -0.03396860137581825, -0.01227890606969595, -0.022075382992625237, 0.011290142312645912, 0.0035027489066123962, -0.04774117097258568, -0.024137061089277267, -0.042018964886665344, -0.027657341212034225, 0.0061569842509925365, 0.013407920487225056, 0.015623873099684715, 0.037138257175683975, 0.0028786356560885906, -0.0006030758959241211, -0.03500645235180855, -0.014333571307361126, 0.023730335757136345, 0.04950832575559616, -0.041317712515592575, -0.024010835215449333, 0.020224079489707947, -0.003278348594903946, -1.6599928130744956e-05, -0.011640767566859722, -0.029284244403243065, 0.020995456725358963, 0.03377225250005722, 0.0076506491750478745, 0.04914367198944092, -0.02178085781633854, 0.01617085002362728, -0.004088293761014938, -0.005294445436447859, 0.003600924275815487, -0.019761255010962486, -0.01943867839872837, 0.031836796551942825, 0.01317650731652975, 0.004249581601470709, -0.008127499371767044, -0.04468371719121933, 0.023267509415745735, 0.012573431245982647, -0.014992747455835342, 0.05363168194890022, 0.0189618282020092, -0.017250776290893555, 0.03121969662606716, 0.010932504199445248, -0.0017163119046017528, 0.017909951508045197, 0.022818708792328835, 0.03870905935764313, 0.019564904272556305, 0.0034168458078056574, 4.577306754072197e-05, -0.0042004939168691635, 0.007208860944956541, 0.009060163982212543, -0.0009387998725287616, -0.015441548079252243, -0.02457183599472046, -0.0014787631807848811, 0.03719435632228851, 0.028344567865133286, 0.01468419749289751, -0.0015716789057478309, -0.021921107545495033, -0.0263530146330595, -0.02479623816907406, -0.01493664737790823, 0.020714955404400826, 0.0037657180801033974, -0.003553589805960655, 0.003374770749360323, 0.006963422987610102, 0.004810582380741835, 0.010974578559398651, -0.0141442334279418, -0.045833770185709, 0.028134191408753395, -0.012938082218170166, -0.045244719833135605, -0.017180651426315308, 0.01052577793598175, 0.03304294869303703, 0.018597178161144257, 0.03222949802875519, 0.03999935835599899, -0.01596047356724739, 0.015595823526382446, 0.050602275878190994, -0.035258904099464417, -0.0034028207883238792, -0.019859429448843002, -0.0141442334279418, 0.024908438324928284, 0.032538048923015594, -0.007187823299318552, -0.007706749252974987, -0.03175264596939087, 0.021009482443332672, -0.012531355954706669, -0.058680687099695206, 0.055454932153224945, 0.02936839498579502, -0.022846760228276253, 0.006153477821499109, -0.003313411260023713, -0.018400827422738075, -0.020743006840348244, -0.012896006926894188, -0.026984140276908875, -0.004067256115376949, 0.01136026717722416, -0.027404891327023506, -0.028863493353128433, -0.06558100134134293, -0.008667463436722755, 0.037166304886341095, -0.028863493353128433, 0.00021793568157590926, -0.01389178354293108, 0.03842855617403984, 0.0010851860279217362, 0.01646537519991398, -0.0017119291005656123, 0.004263606388121843, 0.03635285422205925, -0.007300023455172777, -0.011227029375731945, 0.000796358217485249, -0.013758545741438866, 0.024165110662579536, 0.02314128540456295, -0.003104788949713111, 0.001727707334794104, -0.04451541602611542, -0.013919833116233349, 0.018933778628706932, 0.018190452829003334, 0.01622694917023182, -0.057502586394548416, -0.005901027470827103, 0.02359008602797985, 0.0003968642558902502, 0.016858074814081192, -0.002929476322606206, -0.020911306142807007, 0.01622694917023182, -0.007468323688954115, 0.0017014103941619396, 0.023730335757136345, 0.003905968274921179, -0.013562195003032684, -0.029059844091534615, -0.017671527341008186, 0.012924056500196457, 0.03559550270438194, -0.018625227734446526, 0.020700931549072266, 0.020785082131624222, -0.04684356972575188, -0.008611363358795643, 0.02684389054775238, -0.008365925401449203, 0.006402422208338976, 0.027853691950440407, 0.00665837898850441, -0.004091799724847078, -0.004971869755536318, -0.03410885110497475, 0.020210055634379387, -0.0006994979339651763, -0.05186452716588974, -0.010343452915549278, -0.011984380893409252, -0.011956330388784409, 0.008422025479376316, 0.008302812464535236, -0.017966052517294884, 0.01193529274314642, -0.04998517408967018, 0.017531275749206543, 0.005655589979141951, 0.01969113014638424, -0.022538209334015846, -0.005729221273213625, -0.015189098194241524, 0.008365925401449203, 0.01019619032740593, -0.01711052656173706, 0.012510319240391254, 0.021921107545495033, 0.033884450793266296, 0.05318288132548332, 0.005659095942974091, -0.01967710442841053, 0.05006932467222214, -0.028134191408753395, 0.002093234332278371, 0.048947323113679886, -0.016956251114606857, -0.011675829999148846, 0.019102077931165695, 0.012510319240391254, 0.028372617438435555, 0.00927755143493414, 0.022173557430505753, 0.026745716109871864, -0.025146862491965294, 0.0021090125665068626, 0.006034265272319317, -0.009179376065731049, 0.004372300114482641, 0.024445611983537674, 0.011514542624354362, -0.029761094599962234, -0.02244003303349018, 0.028092117980122566, 0.008358912542462349, -0.026016414165496826, 0.005641564726829529, 0.011956330388784409, 0.008323850110173225, -0.036493103951215744, -0.03696995601058006, -0.05963439121842384, -0.014754322357475758, 0.02084118127822876, -0.010743166320025921, 0.029789144173264503, 0.04025181010365486, -0.02967694401741028, -0.04684356972575188, -0.00751741137355566, -0.02503466233611107, -0.01007697731256485, 0.0033379551023244858, 0.044543467462062836, -0.03318319842219353, 0.001584827434271574, 0.024179136380553246, 0.011619729921221733, -0.00637437216937542, 0.010778228752315044, -0.012342019006609917, 0.0004505538090597838, -0.013050282374024391, 0.017895927652716637, 0.004621244501322508, 0.004884213674813509, 0.030911145731806755, 0.0343332514166832, 0.03175264596939087, 0.006265677977353334, -0.005003426223993301, 0.016269024461507797, 0.022804684937000275, 0.0048491512425243855, -0.007959199137985706, 0.00880771316587925, -0.0013534144964069128, -0.003301139222458005, -0.0059150527231395245, -0.00023754879657644778, 0.014543946832418442, -0.013022231869399548, -0.0018092277459800243, 0.023674234747886658, 0.008947963826358318, 0.0032415329478681087, -0.018232528120279312, 0.04552521929144859, -0.0066794161684811115, -0.010855366475880146, -0.020083829760551453, 0.027699416503310204, -0.0332954004406929, 0.019031953066587448, -0.05851238965988159, 0.00938273873180151, -0.019971629604697227, 0.023477885872125626, 0.003804286941885948, -0.016086699441075325, 0.029789144173264503, -0.040139611810445786, 0.04818997159600258, -0.012496293522417545, -0.013274682685732841, -0.003029404440894723, 0.01785385236144066, -0.04981687664985657, -0.00394453713670373, -0.014389671385288239, 0.014039046131074429, 0.017250776290893555, -0.011472467333078384, 0.036240655928850174, 0.012187743559479713, -0.001616383669897914, -0.03977495804429054, -0.03234170004725456, -0.0004913140437565744, -0.02270650863647461, -0.007945174351334572, -0.007475336082279682, -0.03079894557595253, 0.030939197167754173, -0.02127595618367195, -0.0038603870198130608, 0.017012350261211395, -0.03492230176925659, 0.00745429890230298, 0.009263526648283005, -0.003434377023950219, 0.0052909390069544315, 0.01778372749686241, 0.03680165484547615, -0.017040399834513664, -0.08100852370262146, 0.040588412433862686, -0.043842215090990067, -0.009859589859843254, -0.019845405593514442, -0.00694589177146554, -0.014543946832418442, 0.008625388145446777, -0.01178803015500307, 0.014571997337043285, -0.04353366419672966, 0.005010438617318869, -0.011262091808021069, 0.00010222925629932433, -0.006746035069227219, -0.021879032254219055, -0.013744520954787731, 0.005105107557028532, -0.01367439515888691, -0.02754514105618, -0.010154115036129951, 0.043842215090990067, -0.006570722442120314, -0.02133205719292164, 0.009999839588999748, -0.028344567865133286, -0.026338988915085793, 0.018933778628706932, -0.02732074074447155, 0.012299943715333939, 0.02013993076980114, -0.033239301294088364, 0.03469790145754814, 0.02224368415772915, -0.020406406372785568, 0.03332345187664032, -0.005354051943868399, -0.017755676060914993, -0.055931784212589264, -0.011255078949034214, 0.013940870761871338, 0.016114749014377594, -0.03051844611763954, 0.005108613986521959, -0.011542592197656631, -0.004530081991106272, -0.018456928431987762, -0.0266475398093462, -0.03301490098237991, -0.02942449413239956, -0.01192828081548214, 0.026338988915085793, -0.011121842078864574, 0.015637898817658424, -0.026254840195178986, 0.0015374929644167423, -0.020027730613946915, 0.02942449413239956, 0.021682683378458023, -0.01639525033533573, 0.00843605026602745, 0.0037692245095968246, 0.04650697112083435, -0.03270635008811951, -0.04574961960315704, 0.00045099208364263177, 0.028106141835451126, -0.0028260417748242617, 0.006560203619301319, -0.009088213555514812, 3.33094249072019e-05, -0.02086923085153103, 0.028807394206523895, -0.00878667552024126, -0.0033554863184690475, -0.009880627505481243, -0.0017987089231610298, 0.025609688833355904, 0.012797831557691097, -0.01471224706619978, 0.028134191408753395, -0.003927005920559168, 0.015904374420642853, -0.019564904272556305, 0.005799346137791872, 0.03236974775791168, -0.0029399951454252005, 0.016717825084924698, 0.001269264379516244, 0.02175280824303627, -0.030462345108389854, -0.028190292418003082, 0.011325204744935036, -0.03469790145754814, -0.012342019006609917, 0.0030469358898699284, 0.005529364570975304, 0.04103721305727959, 9.362797572975978e-05, -0.02845676802098751, -0.03220144659280777, -0.03032209537923336, -0.02775551751255989, 0.06602980196475983, -0.0027068289928138256, -0.021107656881213188, 0.011816080659627914, -0.021374132484197617, 0.0310513973236084, -0.005126145202666521, -0.019859429448843002, -0.017306875437498093, -0.03102334588766098, 0.016058649867773056, -0.006896804086863995, -0.03455765172839165, -0.005673121195286512, 0.02061678096652031, 0.010736153461039066, 0.01921427808701992, 0.024024860933423042, -0.011107816360890865, -0.004519563168287277, 0.00033243681536987424, 0.027390865609049797, -0.002142322016879916, 0.026956090703606606, -0.012587456032633781, 0.018793528899550438, -0.004610725678503513, 0.03862490877509117, -0.03144409880042076, 0.016297074034810066, -0.003169654868543148, 0.0068091475404798985, 0.0005027093575336039, 0.013639332726597786, 0.01758737675845623, -0.0013551677111536264, -0.011402342468500137, -0.0022860784083604813, -0.03489425405859947, -0.022608334198594093, -0.005336520727723837, -0.027965892106294632, 0.00249294750392437, -0.0006964299245737493, -0.008386963047087193, -0.018372777849435806, 0.0024298347998410463, -0.004859669599682093, -0.0014919115928933024, -0.0009808748727664351, 0.04465566575527191, 0.019340503960847855, -0.009908677078783512, 0.013253645040094852, -0.028863493353128433, -0.01807825267314911, -0.005182245280593634, -0.027278665453195572, -0.031079446896910667, 0.012966131791472435, -0.027362816035747528, -0.017699576914310455, 0.03360395133495331, -0.01560984831303358, -0.009074188768863678, -0.016815999522805214, 0.03035014495253563, 0.02987329475581646, 0.04050426185131073, 0.009880627505481243, 0.009663239121437073, -0.022327832877635956, 0.006384890992194414, 0.006525141187012196, 0.028540918603539467, -0.04440321773290634, 0.023884611204266548, 0.025777988135814667, 0.018709378316998482, -0.031135546043515205, -0.007938161492347717, -0.016745874658226967, -0.02687194012105465, -0.004175949841737747, -0.017671527341008186, 0.0189618282020092, 0.0038393496070057154, 0.018232528120279312, 0.0007293010712601244, -0.003955055959522724, 0.010154115036129951, -0.010048927739262581, -0.011844130232930183, -0.0031310860067605972, -0.0018898715497925878, 2.1119709344930016e-05, 0.002347437897697091, -9.182006033370271e-05, -0.0008195871487259865, -0.01691417582333088, -0.05326703190803528, -0.01506287232041359, -0.0035430709831416607, 0.024207185953855515, 0.022075382992625237, 0.0005469758179970086, -0.037418756633996964, 0.02776954136788845, -0.007051079533994198, 0.03730655461549759, -0.009691289626061916, 0.00653566000983119, 0.005820383783429861, 0.026942064985632896, 0.016521474346518517, 0.01991553045809269, 0.023211410269141197, -0.011886205524206161, 0.03130384534597397, -0.006041277665644884, 0.0012245596153661609, 0.006360346917062998, -0.0019056497840210795, -0.004645788110792637, 0.039213959127664566, 0.019621005281805992, 0.0270963404327631, 0.02173878252506256, 0.023898635059595108, 0.004347756505012512, 0.023968761786818504, -0.020210055634379387, -0.005304964259266853, 0.014922622591257095, -0.02244003303349018, -0.04950832575559616, -0.007839987054467201, -0.004449437838047743, -0.03293075039982796, 0.015469598583877087, 0.023772411048412323, 0.0098525770008564, -0.027937842532992363, 0.03800780698657036, -0.012839906848967075, -0.019144153222441673, 0.023688260465860367, 0.013127420097589493, -0.000509721867274493, -0.011738942936062813, 0.0024824286811053753, -0.015595823526382446, -0.01779775135219097, 0.0224680844694376, -0.024922462180256844, 0.017419075593352318, 0.020953381434082985, 0.03999935835599899, 0.024712087586522102, 0.02496453747153282, 0.021710732951760292, 0.02520296350121498, -0.012769781984388828, -0.022496134042739868, 0.01354115828871727, -0.016072673723101616, 0.02084118127822876, 0.01297314465045929, -0.0003355047956574708, -0.015090922825038433, 0.03256610035896301, -0.02152840793132782, -0.011255078949034214, 0.031079446896910667, 0.01490859780460596, 0.027923816815018654, 0.02663351595401764, -0.022608334198594093, -0.02244003303349018, 0.023954736068844795, -0.006616303697228432, 0.006346322130411863, 0.04378611594438553, 0.005248864181339741, -0.005368076730519533, 0.018611203879117966, 0.002764682285487652, -0.019719179719686508, 0.00017881901294458658, -0.01712455041706562, -0.011353254318237305, -0.0036219616886228323, 0.018653277307748795, 0.016507450491189957, -0.016128774732351303, -0.007496373727917671, 0.011086778715252876, -0.021247906610369682, -0.03865295648574829, -0.0035307989455759525, 0.014333571307361126, -0.026549365371465683, 0.0052453577518463135, 0.020672881975769997, -0.019396604970097542, 0.053603630512952805, 0.04703992232680321, 0.009333651512861252, -0.03629675507545471, 0.011290142312645912, -0.0050455015152692795, -0.005483783315867186, 0.024824287742376328, 0.007412223611027002, 0.018218502402305603, -0.02936839498579502, -0.0013113394379615784, 0.01622694917023182, 0.006837197579443455, -0.005382101982831955, -0.01054681558161974, 0.004954338539391756, -0.006840704008936882, -0.00043105025542899966, -0.014025021344423294, 0.004540600348263979, 0.004821101203560829, -0.010883416049182415, -0.00416893744841218, 0.046142321079969406, 0.01779775135219097, -0.016815999522805214, 0.0003613634326029569, -0.006507609970867634, 0.0017566338647156954, -0.004032193683087826, -0.025890188291668892, 0.007678699214011431, 0.03820415586233139, -0.007573511451482773, 0.04746067151427269, -0.014277471229434013, -0.003269582986831665, 0.014992747455835342, -0.0013788348296657205, -0.036240655928850174, 0.007573511451482773, -0.01967710442841053, -0.014389671385288239, 0.012320981360971928, -0.02897569350898266, -0.01146545447409153, 0.04516056925058365, 0.019803330302238464, 0.013562195003032684, -0.01852705329656601, -0.038063906133174896, 0.012580444104969501, -0.033211249858140945, -0.02685791626572609, -0.004772013518959284, 0.033463701605796814, -0.03497840091586113, 0.02845676802098751, -0.007776874117553234, 0.020252130925655365, 0.020420430228114128, -0.023029085248708725, -0.0030995297711342573, 0.013288707472383976, 0.006272690836340189, 0.038793209940195084, 0.028639093041419983, 0.013281694613397121, -0.01260148175060749, 0.0029645387548953295, 0.006710972636938095, -0.0159744992852211, 0.02013993076980114, 0.05051812529563904, 0.014200333505868912, 0.014978722669184208, -0.010224239900708199, -0.03725045546889305, -0.013407920487225056, 0.00416893744841218, 0.04168236255645752, -0.002589369425550103, 0.014992747455835342, -0.03820415586233139, 0.01709650084376335, 0.04056036099791527, -0.03133189678192139, -0.01101665385067463, 0.00833086296916008, -0.024024860933423042, 0.0013323769671842456, -0.009684276767075062, 0.00843605026602745, 0.030041595920920372, -0.002613913267850876, -0.017236750572919846, -0.024193162098526955, 0.028540918603539467, 0.010413577780127525, 0.0013253644574433565, -0.017895927652716637, 0.019326478242874146, -0.0005535500240512192, 0.0010992110474035144, -0.026072513312101364, 0.0033852895721793175, 0.0284427423030138, -0.00788907427340746, 0.007594549097120762, 0.00021442942670546472, 0.009817514568567276, -0.00040497249574400485, 0.01262251939624548, -0.013492070138454437, 0.0013832177501171827, -0.015189098194241524, 0.0005162960733287036, -0.025637738406658173, -0.006549684796482325, -0.014010995626449585, -0.011977368034422398, -0.011591680347919464, -0.008064387366175652, 0.013218582607805729, 0.00962116476148367, 0.0006065821507945657, -0.002440353622660041, -0.017433101311326027, -0.01758737675845623, -0.03966275975108147, -0.03057454526424408, -0.007475336082279682, -0.039270058274269104, 0.009081200696527958, -0.021444257348775864, -0.001954737352207303, -0.03262219950556755, -0.027264641597867012, 0.02178085781633854, -0.035258904099464417, 0.003429117612540722, 0.011696867644786835, 0.008260737173259258, 0.013849708251655102, -0.009445851668715477, 0.030434295535087585, -0.042720213532447815, 0.009796476922929287, -0.029003743082284927, -0.0043512629345059395, -0.04095306247472763, -0.01898987777531147, -0.011142878793179989, -0.014964697882533073, 0.011304167099297047, 0.0261987391859293, 0.026928041130304337, 0.014642122201621532, -0.00972635205835104, -0.012783806771039963, 0.013933858834207058, -0.03270635008811951, -0.01525922305881977, -0.008653437718749046, 0.0003352856729179621, -0.028653118759393692, 0.008344887755811214, 0.019747229292988777, -0.030826997011899948, 0.010434615425765514, -0.013702445663511753, -0.0015567773953080177, 0.016619650647044182, -0.013618295080959797, -0.03767120838165283, -0.013113394379615784, 0.01352012064307928, -0.01528727263212204, 0.020490555092692375, 0.0159744992852211, -0.0075454614125192165, -0.016745874658226967, -0.018008127808570862, 0.020700931549072266, -0.03363199904561043, 0.008527212776243687, -0.026956090703606606, -0.007412223611027002, -0.09621164202690125, -0.00318718608468771, -0.0023439317010343075, 0.050349824130535126, 0.0006613673758693039, -0.03220144659280777, 0.03610040247440338, -0.01317650731652975, -0.02706829085946083, -0.0030662203207612038, -0.001207904890179634, -0.013562195003032684, 0.00672149145975709, -0.015820223838090897, -0.0031065421644598246, 0.021247906610369682, -0.0045265755616128445, -0.02639508992433548, -0.010350465774536133, 0.019088054075837135, -0.00877966359257698, 0.0010667782044038177, 0.025287112221121788, -0.0032310141250491142, -0.024698061868548393, 0.016773926094174385, -0.008190612308681011, -0.011479480192065239, -0.005038488656282425, -0.015932423993945122, 0.01942465454339981, -0.0004974499461241066, 0.0017347198445349932, -0.003206470515578985, 0.012426168657839298, -0.0020949875470250845, -0.011248067021369934, -0.005669614765793085, 0.01436162181198597, 0.000554426631424576, 4.355426426627673e-05, 0.0025052193086594343, -0.020280180498957634, 0.042047012597322464, 0.01991553045809269, 0.01760140061378479, 0.021219857037067413, -0.03610040247440338, 0.0021861500572413206, 0.011872180737555027, 0.007980236783623695, 0.0034098331816494465, -0.023744361475110054, -0.013022231869399548, -0.004961351398378611, -0.017180651426315308, 0.010105027817189693, -0.007047573104500771, -0.019144153222441673, -0.0007008127868175507, 0.003080245340242982, 0.01785385236144066, 0.02781161665916443, -0.0058344085700809956, -0.01238409336656332, 0.014277471229434013, 0.013828670606017113, 0.0254554133862257, 0.021836956962943077, -0.00603075884282589, 0.01990150474011898, -0.0066548725590109825, 0.00028970433049835265, -0.01215268112719059, 0.019957605749368668, -0.02987329475581646, 0.007938161492347717, -0.007440273649990559, 0.03307100012898445, -0.0007253565709106624, -0.017292851582169533, 0.019340503960847855, -0.0006951151299290359, -0.015231172554194927, -0.011745954863727093, -0.024684038013219833, 0.012412143871188164, -0.004305681679397821, -0.0009554545395076275, 0.012959119863808155, 0.015455572865903378, 0.005683640018105507, 0.021626582369208336, 0.0025174913462251425, -0.013407920487225056, 0.03363199904561043, -0.01506287232041359, 0.0018074746476486325, -0.00901107583194971, -0.022776633501052856, 0.007030041888356209, -0.002703322796151042, -0.014186308719217777, -0.003306398633867502, -0.017503226175904274, -0.02636704035103321, 0.012117617763578892, 0.014796397648751736, 0.019536854699254036, -0.008106461726129055, -0.012615506537258625, -0.02475416287779808, -0.025623712688684464, 0.02405291050672531, 0.0005868594744242728, -0.01596047356724739, 0.020083829760551453, 0.01692819967865944, -0.0022615345660597086, -2.6831070499611087e-05, -0.004477487877011299, 0.01987345516681671, 0.002044146880507469, -0.034838151186704636, 0.0038007807452231646, -0.005652083549648523, 0.0035693678073585033, -0.013709458522498608, -0.004340744111686945, 0.04647891968488693, -0.028176266700029373, 0.019733205437660217, -0.02682986482977867, 0.008351899683475494, -0.0008301059133373201, 0.0024193162098526955, 0.012433181516826153, -0.005799346137791872, 0.03351980075240135, -0.019074028357863426, 0.017952026799321175, -0.0059606339782476425, -0.004624750930815935, 0.006553191225975752, 0.0013104629470035434, 0.01053980365395546, -0.024698061868548393, -0.032509997487068176, 0.009109251201152802, -0.003585146041586995, 0.017671527341008186, 0.0010659015970304608, 0.05298652872443199, -0.027166465297341347, -0.00050577730871737, -0.025090763345360756, 0.002354450523853302, 0.011570642702281475, -0.013534145429730415, -0.006451509892940521, -0.005108613986521959, 0.01713857613503933, 0.007475336082279682, -0.008919913321733475, -0.001863574725575745, 0.0006223603268153965, -0.012776793912053108, -0.0006289345328696072, -0.018919752910733223, 0.013590245507657528, 0.004814088344573975, -0.02687194012105465, 0.009782452136278152, -0.041990913450717926, 0.003450155258178711, -0.027012189850211143, -0.0007104550022631884, -0.0012631284771487117, 0.03408079966902733, -0.0016225195722654462, 0.004403856582939625, -0.005574945826083422, -0.015932423993945122, 0.01987345516681671, -0.015427523292601109, 0.010694078169763088, 0.0019354529213160276, -0.00010885827214224264, -0.012762769125401974, 0.02086923085153103, 0.01572204940021038, 0.02688596583902836, 0.006994979456067085, 0.004147899802774191, 0.020883256569504738, 0.019719179719686508, 0.028779342770576477, 0.02382851019501686, -0.03565160185098648, -0.023463860154151917, -0.01734895072877407, -0.007377161178737879, 0.029704995453357697, 0.014501871541142464, -0.005164714064449072, 0.008155549876391888, -0.005659095942974091, 0.0356796532869339, -0.011872180737555027, -0.003004860831424594, 0.01575009897351265, -0.003639492904767394, 0.002596382051706314, 0.03214534744620323, 0.006472547072917223, -0.0023526973091065884, -0.03035014495253563, -0.006223603151738644, -0.006002708803862333, -0.006163996644318104, 0.03500645235180855, 0.011269104667007923, 0.029340343549847603, -0.015245198272168636, 0.021486332640051842, 0.016619650647044182, 0.0026963104028254747, -0.05326703190803528, -0.0017846839036792517, -0.0016058649634942412, 0.004856163635849953, 0.014179295860230923, -0.006816160399466753, -0.005571439396589994, -0.021458283066749573, 0.01240513101220131, 0.018933778628706932, -0.0022457565646618605, 0.006588253658264875, 0.015329347923398018, -0.0028085105586797, -0.008064387366175652, -0.018597178161144257, -0.013155469670891762, 0.008225674740970135, -0.0034711926709860563, -0.02685791626572609, 0.012734719552099705, 0.0024596380535513163, 0.023505935445427895, -0.014130208641290665, -0.016717825084924698, -0.025273088365793228, 0.003388795768842101, -0.002333412878215313, 0.0002822535461746156, -0.014656146988272667, 0.013211569748818874, 0.009957765229046345, 0.016577575355768204, -0.03910175710916519, -0.014431746676564217, 0.010336440987884998, -0.04050426185131073, 0.0075244237668812275, -0.030883096158504486, 0.004957844968885183, 0.017461150884628296, -0.0259042140096426, -0.01617085002362728, -0.007980236783623695, -0.005476770922541618, -0.021907083690166473, 0.010245277546346188, 0.019284404814243317, 0.014193321578204632, -0.009508964605629444, -0.03775535523891449, -0.006917841732501984, -0.003148617222905159, 0.005189257673919201, -0.00514718284830451, -0.018569128587841988, 0.006160490680485964, -0.003429117612540722, 0.013492070138454437, -0.0005487289745360613, 0.0004523069364950061, 0.02476818673312664, 0.018120327964425087, -0.022075382992625237, 0.020532630383968353, 0.013940870761871338, -0.012349030934274197, 0.03556745499372482, 0.01283289398998022, -0.007938161492347717, 9.297054930357262e-05, 0.009207426570355892, 0.0020055780187249184, 0.006083352956920862, -0.0028944136574864388, -0.04647891968488693, 0.007636623922735453, -0.023744361475110054, -0.0002612160169519484, 0.003029404440894723, 0.0016716072568669915, 0.015118972398340702, -0.011395329609513283, -0.013134432025253773, 0.0059150527231395245, -0.02827444300055504, -0.024024860933423042, -0.01805020123720169, 0.0245578121393919, 0.018330702558159828, -0.0043512629345059395, 0.00937572680413723, -0.028611043468117714, 0.017222726717591286, 0.00711068557575345, 0.033491749316453934, 8.157522097462788e-05, -0.050826676189899445, -0.011227029375731945, -0.024473661556839943, -0.0003241094818804413, 0.010504741221666336, 0.011626742780208588, -0.03677360340952873, 0.048722922801971436, 0.009095226414501667, -0.005105107557028532, -0.03141604736447334, 0.01622694917023182, 0.0003929197264369577, -0.005553908180445433, -0.028302492573857307, 0.003374770749360323, 0.03450155258178711, 0.0014349350240081549, -0.005108613986521959, -0.01052577793598175, -0.00799426157027483, 0.0120545057579875, -0.019354529678821564, 0.011402342468500137, 0.020448479801416397, -0.0233656857162714, 0.013379869982600212, -0.004466969054192305, -0.01412319578230381, -0.01785385236144066, -5.037502705818042e-05, 0.022496134042739868, -0.003930512350052595, 0.013933858834207058, -0.011402342468500137, -0.03200509771704674, -0.026296913623809814, 0.008541237562894821, 0.008674475364387035, 0.03242584690451622, -0.004263606388121843, 0.0035115147475153208, -0.007496373727917671, -0.021879032254219055, 0.01398995891213417, -0.012938082218170166, -0.0023614629171788692, -0.001782054197974503, -0.00843605026602745, 0.01483847200870514, -0.030911145731806755, 0.015553748235106468, -0.0061359466053545475, 0.004971869755536318, -0.01471224706619978, -0.03172459825873375, -0.01639525033533573, 0.007839987054467201, 0.00915833842009306, -0.023491909727454185, -0.025974338874220848, -0.016297074034810066, -0.006858235225081444, 0.014060083776712418, -0.006016734056174755, -0.016339149326086044, -0.016297074034810066, -0.020504580810666084, 0.005399633198976517, 0.007264961022883654, 0.013863733038306236, -0.015245198272168636, -0.008422025479376316, -0.00555741460993886, -0.032762449234724045, -0.018639253452420235, -0.0029101918917149305, 0.007959199137985706, -0.011844130232930183, 0.042271412909030914, -0.021191807463765144, 0.006840704008936882, 0.03337955102324486, 0.009544027037918568, -0.004070762544870377, -0.0440385676920414, -0.016956251114606857, -0.024221211671829224, -0.018106302246451378, 0.01237708143889904, -0.02058873139321804, 0.022580284625291824, -0.0043512629345059395, 0.0323977991938591, -0.012243843637406826, -0.006360346917062998, 0.010154115036129951, -0.0009002310689538717, 0.0019161684904247522, -0.01600254885852337, -0.002168618841096759, 0.032257549464702606, -0.020953381434082985, 0.008863813243806362, 0.02733476646244526, -0.0060903653502464294, 0.0014393178280442953, 0.01969113014638424, 0.010701091028749943, 0.0189618282020092, 0.02734879031777382, -0.02197720855474472, 0.010119052603840828, -0.01848497800529003, -0.01948075369000435, 0.006269184406846762, -0.02618471346795559, -0.00015263167733792216, 0.00024346560530830175, -0.006199059542268515, -0.009908677078783512, -0.008485137484967709, 0.009522989392280579, -0.030714796856045723, 0.0024210691917687654, 0.025525538250803947, 0.015076898038387299, -0.009508964605629444, -0.0035693678073585033, -0.0009317873627878726, 0.011479480192065239, 0.014032033272087574, -0.003458920866250992, -0.003632480511441827, -0.005105107557028532, 0.008246712386608124, 0.0027155946008861065, 0.01785385236144066, -0.0008660450694151223, 0.008008287288248539, 0.0036710493732243776, 0.009782452136278152, 0.02939644455909729, -0.013940870761871338, 0.003990118391811848, -0.0059606339782476425, 0.009004063904285431, 0.0194106288254261, 0.017994102090597153, -0.0011167422635480762, 0.005252370610833168, -0.013050282374024391, -0.004039206076413393, 0.001313969143666327, -0.006903816480189562, -0.0440385676920414, -0.0025770976208150387, -0.010743166320025921, -0.000645589258056134, 0.01849900372326374, 0.013555183075368404, -0.02569383941590786, 0.024908438324928284, -0.003639492904767394, 0.00751741137355566, 0.04005546122789383, 0.006146465428173542, 0.03175264596939087, -0.02126193232834339, 0.005560921039432287, 0.004754482302814722, -0.004267112817615271, 0.008386963047087193, -0.009347676299512386, -0.0012587456731125712, 0.02151438221335411, 0.0007244800217449665, -0.009074188768863678, -0.032089248299598694, -0.012089568190276623, -0.005445214454084635, 0.00533301429823041, 0.01809227652847767, 0.022117458283901215, 0.009312613867223263, -0.009410789236426353, 0.009656227193772793, 0.003744680667296052, 0.00612893421202898, 0.0003782372805289924, -0.005876483861356974, 0.001260498771443963, 0.015553748235106468, -0.005953621584922075, -0.012306955642998219, 0.01739102602005005, 0.003993624821305275, -0.00637437216937542, 0.003495736513286829, -0.010147103108465672, 0.009614151902496815, -0.014880547299981117, -0.012320981360971928, -0.012594468891620636, -0.00021125188504811376, 0.006595266051590443, -0.010112039744853973, -0.011058729141950607, 0.016956251114606857, 0.016367198899388313, 0.02387058548629284, 0.014200333505868912, 0.018891703337430954, 0.0017548807663843036, -0.002671766560524702, -0.009466889314353466, -0.008106461726129055, 0.012447206303477287, -0.028092117980122566, 0.00046019599540159106, 0.01377257052809, 0.030826997011899948, -0.007924136705696583, -0.003783249529078603, -0.02753111720085144, 0.00855526328086853, -0.013702445663511753, 0.0005320742493495345, 0.008015299215912819, 0.02917204424738884, 0.008211649954319, 0.007896087132394314, -0.003553589805960655, 0.005855446215718985, 0.008190612308681011, -0.022594308480620384, 0.008660450577735901, -0.0036219616886228323, 0.01053980365395546, 0.008513187989592552, 0.01171089243143797, 0.005343533121049404, -0.0023071160539984703, -0.007391185965389013, 0.001366563024930656, -0.012454219162464142, 0.012236830778419971, -0.006167503073811531, 0.0011141125578433275, -0.001328870770521462, 0.0016654712380841374, -0.00868850015103817, -0.008877838030457497, -0.014768347144126892, -0.0185130275785923, -0.012412143871188164, 0.014754322357475758, -0.013134432025253773, 0.014642122201621532, -0.01215268112719059, 0.025637738406658173, -0.020434455946087837, 0.016142798587679863, 0.02617068961262703, 0.02342178486287594, -0.01354817021638155, -0.004999919794499874, -0.007384173572063446, -0.0006144712097011507, 0.005974658764898777, -0.017671527341008186, -0.04328121617436409, -0.0027594228740781546, 0.004249581601470709, 0.0014761334750801325, 0.005154195241630077, -0.015301298350095749, -0.003043429460376501, 0.006651366129517555, 0.00018637938774190843, -0.013155469670891762, 0.0014524662401527166, 0.012222805991768837, -0.011549605056643486, -0.014880547299981117, 0.006269184406846762, -0.0037622118834406137, 0.008863813243806362, -0.005031476262956858, 0.007121204398572445, 0.010848353616893291, -0.010792253538966179, 0.009873614646494389, 0.027026215568184853, -0.03517475351691246, 0.007966211996972561, 0.006388396956026554, 0.018653277307748795, 0.021865008398890495, 0.01203346811234951, -0.0015225913375616074, -0.008015299215912819, -0.005652083549648523, 0.003842855803668499, -0.0017566338647156954, 0.013106382451951504, 0.005736233666539192, 0.005157701671123505, -0.02154243178665638, -0.014852497726678848, -0.03475400060415268, 0.003192445496097207, 0.002454378642141819, -0.012839906848967075, 0.004260099958628416, 0.02408096194267273, -0.016773926094174385, 0.0013332535745576024, 0.0056380582973361015, 0.015175072476267815, -0.007664673961699009, 0.010119052603840828, 0.027278665453195572, 0.00208446872420609, 0.034136902540922165, 0.000250916404183954, 0.008625388145446777, 0.016493424773216248, -0.011738942936062813, -0.0035904054529964924, -0.0032888674177229404, 0.0010509999701753259, 0.007552473805844784, -0.023071160539984703, 0.030602596700191498, -0.025609688833355904, -0.014950672164559364, 0.011269104667007923, 0.014922622591257095, 0.00603075884282589, -0.0017846839036792517, -0.02175280824303627, 0.0028926606755703688, -0.008071399293839931, -0.011304167099297047, 0.020743006840348244, -0.0030697265174239874, -0.019747229292988777, -0.003360745729878545, -0.018120327964425087, -0.0045967004261910915, 0.017755676060914993, -0.008148537017405033, -0.0004610725736711174, -0.006833691615611315, 0.0011579408310353756, -0.0037657180801033974, 0.012896006926894188, 0.004614232107996941, 0.0031679016537964344, -0.0053715831600129604, 0.0037622118834406137, 0.01121300458908081, 0.004719419404864311, 0.0002537652326282114, 0.0057888273149728775, 0.021135706454515457, -0.014263446442782879, -0.02596031315624714, 0.011142878793179989, 0.013358832336962223, 0.021893057972192764, -0.018344728276133537, -0.013057294301688671, -0.02640911377966404, -0.0005351422005333006, 0.009228464215993881, -0.018176427111029625, 0.03102334588766098, 0.012818869203329086, 0.01064499095082283, 0.012068530544638634, -0.005224320571869612, -0.007685711607336998, 0.011514542624354362, 0.011823092587292194, 0.015848273411393166, 0.01399697083979845, 0.015203122980892658, 0.023505935445427895, -0.011205991730093956, -0.003246792359277606, -0.0006114032585173845, -0.00555741460993886, -0.01434058416634798, 0.010105027817189693, 0.007398198824375868, -0.016563549637794495, 0.004750975873321295, -0.0038253245875239372, 0.024852337315678596, 0.010245277546346188, 0.01109379157423973, 0.013330782763659954, 0.009586102329194546, 0.013337794691324234, -0.014284484088420868, 0.01715259999036789, -0.01921427808701992, 0.001510319416411221, 0.005532871000468731, -0.02287480980157852, 0.018625227734446526, 0.005427683237940073, 4.488965259952238e-06, -0.009046138264238834, -0.01111482921987772, 0.007482348941266537, 0.011409354396164417, 0.008225674740970135, -0.0035150209441781044, 0.006062315311282873, -0.012026455253362656, 0.02225770801305771, 0.013190532103180885, -0.008541237562894821, 0.00027808986487798393, -0.006647860165685415, -0.008730575442314148, -0.0038989558815956116, -0.0052909390069544315, -0.03722240775823593, -0.017433101311326027, 0.018330702558159828, 0.001434058416634798, -0.018849628046154976, -0.011921267956495285, 0.019144153222441673, -0.005897521506994963, 0.03009769506752491, 0.015553748235106468, 0.0120545057579875, 0.009635189548134804, -0.015848273411393166, 0.004789544735103846, -0.009018088690936565, 0.012075543403625488, 0.0034466488286852837, 0.023786434903740883, 0.024473661556839943, 0.0006609291303902864, 0.008849788457155228, -0.00665837898850441, -0.013919833116233349, 0.00877966359257698, 0.009593114256858826, 0.022383933886885643, 0.023099210113286972, -0.012776793912053108, 0.039718858897686005, -0.014473821967840195, -0.013849708251655102, 0.016030598431825638, -0.005410152021795511, -0.00029496371280401945, 0.016745874658226967, 0.01897585391998291, -0.0066794161684811115, -0.009123275987803936, 0.005792333744466305, -2.3845275791245513e-05, 0.01854107715189457, 0.0009387998725287616, -0.006532153580337763, 0.012573431245982647, 0.00274715106934309, 0.023057134822010994, -0.022608334198594093, -0.0002936488890554756, 0.001502430415712297, -0.02220160886645317, 0.00659877248108387, 0.0028558450285345316, 0.008499163202941418, -0.024950511753559113, 0.008492150343954563, 0.005957127548754215, -0.01782580092549324, -0.006325284484773874, 0.008379950188100338, 0.007012510672211647, 0.009936727583408356, -0.004119849763810635, -0.004112837370485067, 0.004687863402068615, -0.0013577973004430532, -0.015231172554194927, -0.014628097414970398, 0.009319626726210117, 3.448730785748921e-05, 0.0189618282020092, -0.00833086296916008, -0.005771296098828316, 0.0013350066728889942, -0.018807552754878998, -0.03354785218834877, -0.00024346560530830175, -0.008653437718749046, 0.006563710048794746, -0.006514622364193201, 0.015693997964262962, 0.01779775135219097, -0.007033547852188349, -0.011072753928601742, -0.005855446215718985, 0.005908040329813957, 0.009025100618600845, 0.0034782052971422672, -0.016563549637794495, -0.0007275479729287326, 0.022622359916567802, -0.01594644971191883, 0.015118972398340702, 0.002485934877768159, -0.011956330388784409, 0.009936727583408356, 0.014039046131074429, 0.006230615545064211, -0.006178021896630526, 0.010595903731882572, -0.013576220721006393, -0.001888118451461196, -0.003951549530029297, 0.005038488656282425, 0.010062952525913715, -0.0008594708051532507, -0.010834328830242157, -0.009200413711369038, 0.012327993288636208, -0.0180642269551754, 0.006276196800172329, 0.005357557907700539, 0.017685551196336746, -0.003807793138548732, 0.01560984831303358, -0.01711052656173706, 0.023898635059595108, -0.0052663953974843025, 0.009565064683556557, -0.011086778715252876, -0.017517251893877983, 0.006542672403156757, -0.0206027552485466, 0.017489200457930565, 0.01032241526991129, 0.0027541634626686573, 0.011745954863727093, -0.01755932718515396, 0.003183679888024926, -0.018919752910733223, -0.00202135625295341, -0.03817610815167427, 0.021865008398890495, 0.00758052384480834, -0.01942465454339981, 0.0027085822075605392, 0.00020226709602866322, 0.012938082218170166, 0.003518527140840888, -0.00021519641450140625, -0.0011351500870659947, 0.0011667064391076565, -0.020686905831098557, 0.01283289398998022, -0.0016260258853435516, 0.02011187933385372, -0.006781097501516342, 0.004509044345468283, 0.007713761646300554, -0.01646537519991398, -0.014291496016085148, -0.020462505519390106, 0.005059526301920414, -0.025763964280486107, -0.016717825084924698, -0.029256194829940796, 0.013407920487225056, -0.027965892106294632, -0.0007192206103354692, -0.042692165821790695, -0.010027890093624592, -0.022299783304333687, -0.020785082131624222, -0.013968921266496181, 0.007236910983920097, -0.010273328050971031, -0.010848353616893291, -0.0032117299269884825, -0.0034448958467692137, -0.006384890992194414, -0.01967710442841053, 0.024866363033652306, 0.012517331168055534, -0.010876404121518135, -0.008716550655663013, 0.026563389226794243, -0.01666172593832016, 0.024698061868548393, 0.0242632869631052, -0.005084069911390543, -0.004544106777757406, -0.003006613813340664, -0.006121921818703413, -0.013856721110641956, -0.010469677858054638, 0.005641564726829529, -0.004929794929921627, -0.018709378316998482, 0.011612717062234879, 0.0120545057579875, -0.017629452049732208, 0.010476690717041492, -0.009438838809728622, 0.008197625167667866, 0.015413498505949974, 0.023449834436178207, -0.043449513614177704, 0.012783806771039963, 0.004982388578355312, 0.012208781205117702, -0.003427364630624652, 0.008730575442314148, -0.005315483082085848, -0.000691170571371913, -0.011514542624354362, 0.020518606528639793, -0.00318718608468771, 0.008218662813305855, 0.021808907389640808, 0.014642122201621532, -0.0013551677111536264, 0.012264881283044815, 0.0028698700480163097, 0.008660450577735901, 0.0009563311468809843, 0.005297951865941286, 0.021205831319093704, 0.0043968441896140575, -0.002364969113841653, -0.03551135212182999, 0.00962116476148367, 0.0036640367470681667, -0.005192764103412628, -0.020448479801416397, -0.0043968441896140575, -0.0049192761071026325, -0.005974658764898777, 0.009389751590788364, -0.011724917218089104, 0.01228591799736023, -0.010287352837622166, -0.016717825084924698, -0.00347294588573277, 0.003807793138548732, -0.02242600917816162, 0.017082475125789642, -0.007832974195480347, 0.004284644033759832, 0.013393894769251347, 0.003429117612540722, -0.021682683378458023, 0.005357557907700539, 0.04190676286816597, 0.013975933194160461, 0.001995059195905924, 0.004765001125633717, -0.01039955299347639, -0.01645134948194027, 0.023772411048412323, 0.016591599211096764, -0.028597017750144005, -0.009025100618600845, -0.008821737952530384, 0.008969000540673733, 0.021247906610369682, -0.011577654629945755, -0.011893217451870441, -0.0047229258343577385, -0.006844210438430309, -0.015413498505949974, -0.01646537519991398, -0.023225434124469757, -0.013464020565152168, -0.00915833842009306, -0.011731930077075958, 0.019621005281805992, 0.019088054075837135, -0.009445851668715477, 0.030041595920920372, 0.01272770669311285, -0.00962116476148367, -0.02155645750463009, -0.0018355246866121888, 0.022790659219026566, 0.011058729141950607, 0.020728981122374535, 0.028751293197274208, 0.010673041455447674, 0.017517251893877983, 0.003912980668246746, -0.0028821418527513742, 0.011290142312645912, 0.015581798739731312, 0.008604350499808788, -0.0033397080842405558, -0.01170388050377369, 0.005378595553338528, 0.0011640767334029078, 0.005262888967990875, 0.0028137697372585535, -0.015006772242486477, -0.016058649867773056, 0.005259383004158735, 0.01413722150027752, 0.011535580269992352, -0.002911945106461644, -0.0038323369808495045, -0.01917220465838909, 0.014740297570824623, 0.00983153935521841, -0.006560203619301319, 0.01991553045809269, 0.0194106288254261, -0.01854107715189457, 0.028611043468117714, 0.0019354529213160276, 0.0019792811945080757, 0.01803617738187313, 0.014740297570824623, -8.524583245161921e-05, -0.004719419404864311, -0.006812653969973326, -0.021640608087182045, 0.010757191106677055, 0.001124631380662322, -0.010238265618681908, 0.004537094384431839, 0.02084118127822876, 0.01855510286986828, -0.004274125210940838, -0.005041995085775852, -0.01481042243540287, 0.003336201887577772, -0.007058091927319765, -0.00984556507319212, -0.0008279145113192499, -0.005673121195286512, -0.00268754456192255, 0.0046773445792496204, 0.04243971407413483, -0.00521029531955719, 0.004151406232267618, 0.02870921790599823, -0.0034448958467692137, -0.005406645592302084, 0.005469758063554764, -0.008365925401449203, -0.013877758756279945, 0.008632400073111057, 0.0008564028539694846, -0.01573607325553894, 0.0053926208056509495, -0.0020792093127965927, 0.033912502229213715, 0.02220160886645317, 0.018246551975607872, -0.011724917218089104, -0.01101665385067463, 0.0011053469497710466, 0.0002517929533496499, 0.009915689937770367, -0.006819666363298893, -0.006746035069227219, -0.01639525033533573, -0.0010808032238855958, 0.016100723296403885, 0.0011877439683303237, 0.024389510974287987, -0.007271973416209221, 0.00023009799770079553, 0.028568968176841736, -0.0007095783948898315, 0.02131803147494793, -0.009081200696527958, 0.02475416287779808, -0.01712455041706562, -0.006574228405952454, 0.006560203619301319, -0.009901665151119232, 0.016269024461507797, -0.0064620282500982285, 0.007825961336493492, -0.010560841299593449, -0.017447127029299736, -0.007468323688954115, -0.0036745555698871613, 0.03382835164666176, 0.013478045351803303, 0.006879272870719433, 0.012264881283044815, 0.00039774083415977657, 0.017952026799321175, 0.0029014262836426497, -0.007797911763191223, -0.00022023665951564908, -0.00527340779080987, 0.006353334523737431, -0.002641963306814432, 0.007163279689848423, -0.017222726717591286, -0.012566419318318367, 0.002219459507614374, 0.021458283066749573, -0.001405131770297885, 0.011037691496312618, -0.010616941377520561, 0.0038393496070057154, -0.01434058416634798, -0.003018885850906372, 0.001895130961202085, 0.0024561318568885326, 0.002484181895852089, -0.00602725287899375, 0.013372858054935932, 0.00422854395583272, 0.009733364917337894, -0.01739102602005005, 0.019045978784561157, -0.008709537796676159, 0.023309584707021713, 0.006879272870719433, -0.014642122201621532, -0.016535500064492226, -0.004344250075519085, 0.021794883534312248, -0.00159446953330189, -0.011766992509365082, -0.0027769540902227163, -0.005750258453190327, 0.014445771463215351, -0.009733364917337894, -0.0069564105942845345, -0.010455653071403503, -0.0017943261191248894, -0.004884213674813509, -0.0007192206103354692, -0.013751532882452011, -0.016044624149799347, -0.009663239121437073, 0.008422025479376316, -0.00268754456192255, -0.004961351398378611, 0.0005333891022019088, -0.0003990556870121509, 0.008274762891232967, -0.018176427111029625, 0.003388795768842101, -0.0047474694438278675, -0.015020797960460186, 0.004568650387227535, 0.011535580269992352, 0.004288149997591972, -0.011535580269992352, -0.00722989859059453, 0.017082475125789642, -0.007608573883771896, -0.01307132001966238, -0.002440353622660041, -0.02106558158993721, 0.017180651426315308, -0.005753764882683754, -0.037643156945705414, -0.013183520175516605, -0.022510157898068428, 0.01262953132390976, 0.008246712386608124, -0.011577654629945755, 0.0013560442021116614, 0.018120327964425087, -0.0013551677111536264, -0.003255557967349887, 0.01737700030207634, 0.017671527341008186, -0.006907322909682989, 0.031359948217868805, -0.015862299129366875, -0.0036745555698871613, -0.0016023586504161358, 0.000951071735471487, -0.0023667223285883665, -0.03618455305695534, -0.0017881902167573571, 0.011774005368351936, 0.01448784675449133, -0.0030995297711342573, -1.5175511180132162e-05, 0.007128216791898012, 6.853633385617286e-05, -0.003962068352848291, 0.01213865540921688, -0.020266154780983925, -0.0011544345179572701, -0.013716470450162888, -0.012173717841506004, -0.016128774732351303, 0.0010886922245845199, -0.0035202803555876017, -0.01621292345225811, -0.002876882441341877, -0.016381224617362022, -0.0022632877808064222, -0.030883096158504486, 0.00893393810838461, 0.0025560599751770496, 0.009656227193772793, 0.0090321134775877, -0.013800621032714844, 0.022397957742214203, 0.0005965016898699105, -0.006977447774261236, -0.009670251980423927, -0.009522989392280579, -0.022075382992625237, 0.0008590325596742332, -0.022846760228276253, 0.0015278507489711046, -0.01206151768565178, 0.031079446896910667, -0.019088054075837135, -0.0201539546251297, 0.003267830004915595, 0.04112136363983154, -0.004505537915974855, 0.011184954084455967, 0.0009466889314353466, -0.005858952645212412, 0.0003543509228620678, 0.003912980668246746, 0.009635189548134804, -0.0047474694438278675, -0.015932423993945122, 0.014543946832418442, 0.004565144423395395, -0.011023666709661484, 0.0023719817399978638, 0.004112837370485067, 0.00035566577571444213, 0.03035014495253563, -0.02636704035103321, 0.013926845975220203, -0.01737700030207634, -0.0027769540902227163, -0.02733476646244526, -0.02936839498579502, 0.0035763804335147142, 0.010245277546346188, -0.025399312376976013, 0.004161925055086613, 0.01618487387895584, -0.014417721889913082, 0.0015278507489711046, -0.03273439779877663, -0.004298668820410967, 0.018583152443170547, 0.0008594708051532507, 0.00246139126829803, -0.01711052656173706, 0.008716550655663013, 0.009551038965582848, 0.008344887755811214, 0.00618854071944952, 0.02265040948987007, 0.03581990301609039, -0.02314128540456295, 0.008828750811517239, 0.008674475364387035, 0.02897569350898266, 0.0075033861212432384, -0.008386963047087193, -0.01109379157423973, 0.031864847987890244, 0.03430519998073578, 0.00010348931391490623, -0.010280340909957886, -0.01307833194732666, -0.019761255010962486, -0.016353175044059753, -0.012306955642998219, 0.005662602372467518, -0.003895449684932828, 0.006707466207444668, -0.012215793132781982, 0.01448784675449133, -0.005129651632159948, 0.012236830778419971, -0.03029404580593109, 0.006002708803862333, 0.007552473805844784, 0.00480006355792284, 0.01709650084376335, 0.02405291050672531, 0.006013227626681328, -0.0002997848205268383, -0.004961351398378611, -0.006051796488463879, 0.012412143871188164, 0.015006772242486477, 0.024179136380553246, -0.002296597231179476, -0.007044066675007343, -0.023449834436178207, 0.008947963826358318, -0.0018162402557209134, 0.031107496470212936, 0.0008826997363939881, 0.003804286941885948, 0.01781177707016468, 0.003059207694604993, 0.022804684937000275, 0.016731850802898407, 0.0068266792222857475, 0.010266315191984177, 0.007531436160206795, -0.02942449413239956, 0.013695432804524899, -0.008506175130605698, 0.01471224706619978, 0.0061324406415224075, -0.02128998190164566, -0.0031416048295795918, 0.013562195003032684, 0.017222726717591286, -0.007475336082279682, 0.008674475364387035, -0.0035378115717321634, -0.014600046910345554, -0.005034982692450285, 0.0015769383171573281, -0.0022387439385056496, 0.007573511451482773, -0.009866602718830109, 0.008898875676095486, 0.005136664025485516, -0.014992747455835342, 0.007713761646300554, -0.00877966359257698, -0.0061359466053545475, 0.00416893744841218, -0.008751613087952137, -7.954816828714684e-05, -0.014880547299981117, 0.0017101760022342205, -0.010609928518533707, -0.011738942936062813, 0.008863813243806362, 0.006542672403156757, 0.025371262803673744, -0.01158466748893261, 0.003976093605160713, -0.02155645750463009, -0.007931149564683437, 0.003080245340242982, 0.015455572865903378, 0.023015059530735016, 0.02478221245110035, -0.03197704628109932, 0.01619889959692955, -0.014431746676564217, 0.01618487387895584, 0.018120327964425087, -0.0035658616106957197, -0.010595903731882572, 0.02408096194267273, 0.008828750811517239, 0.004621244501322508, -0.005701171234250069, -0.02199123241007328, 0.009670251980423927, -0.004466969054192305, -0.005469758063554764, 0.017685551196336746, -0.009396764449775219, -0.015357398428022861, -0.0004389393434394151, 0.030462345108389854, 0.0027015695814043283, -0.0014550959458574653, 0.00788907427340746, 0.01852705329656601, 0.012412143871188164, 0.010006852447986603, -0.006469041109085083, 0.01646537519991398, -0.008400987833738327, 0.0003405450552236289, -0.011781017296016216, 0.0011430392041802406, 0.0001280878932448104, 0.00808542501181364, 0.0011596939293667674, 0.0012210534187033772, -0.0013718223199248314, -0.021107656881213188, 0.01918622851371765, -0.020476531237363815, -0.009642202407121658, 0.0023614629171788692, 0.011065742000937462, 0.012959119863808155, 0.002787472913041711, -0.010203203186392784, 0.006595266051590443, -0.00997179001569748, 0.0003131524135824293, -0.012313968501985073, -0.02218758314847946, 0.0035465771798044443, -0.047544822096824646, 0.010848353616893291, 0.004263606388121843, 0.007208860944956541, -0.004761494696140289, 0.0023211410734802485, 0.005427683237940073, 0.002068690722808242, 0.002364969113841653, -0.002303609624505043, 0.010673041455447674, -0.016521474346518517, 0.00041110842721536756, -0.018120327964425087, 0.0007788269431330264, 8.497190719936043e-05, 0.012040480971336365, 0.008295799605548382, 0.00010474937880644575, -0.002529763150960207, 0.0017110526096075773, -0.014726271852850914, -0.011367280036211014, -0.03164044767618179, 0.0008217785507440567, -0.010413577780127525, 0.0044213877990841866, 0.00913028884679079, -0.016086699441075325, -0.01272770669311285, -0.0062832096591591835, -0.020406406372785568, -0.007924136705696583, 0.03492230176925659, 0.013569207862019539, 0.000913379481062293, 0.0008581559523008764, -0.0021019999403506517, -0.015301298350095749, 0.015904374420642853, 0.003678061766549945, -0.00017936687800101936, -0.01854107715189457, 0.0009431826765649021, -0.01331675797700882, -0.004340744111686945, 0.011451429687440395, -0.00404271250590682, 0.01445979718118906, 0.0009870108915492892, -0.00788907427340746, 0.001382341142743826, -0.020672881975769997, 0.005715196020901203, -0.001601482043042779, -0.01712455041706562, 0.004761494696140289, -0.033912502229213715, 0.022117458283901215, 0.00011011832975782454, -0.0013577973004430532, -0.0070230294950306416, -0.007285998668521643, 0.0075033861212432384, 0.007552473805844784, -0.0021247908007353544, 0.00012348592281341553, 0.024137061089277267, -0.00457566324621439, 0.004298668820410967, -0.03079894557595253, -0.015441548079252243, 0.00445294426754117, 0.029536694288253784, 0.012874969281256199, -0.02082715556025505, 0.013155469670891762, -0.004870188422501087, 0.01099561620503664, 0.003194198478013277, -0.008506175130605698, -0.01376555860042572, 0.0045721568167209625, -0.01005593966692686, -0.019971629604697227, -0.006395409815013409, -0.014852497726678848, -0.007875049486756325, 0.0009624670492485166, 0.0020739499013870955, -0.010392541065812111, -0.0006131564150564373, -0.005105107557028532, 0.013625307939946651, 0.002724360441789031, 0.011570642702281475, -0.025118812918663025, -0.000951948284637183, -0.0185130275785923, -0.03696995601058006, -0.00901107583194971, -0.004652800969779491, -0.026942064985632896, 0.0035816398449242115, -0.005406645592302084, 0.007412223611027002, -0.011107816360890865, 0.006991473026573658, 0.005501314532011747, 0.00236847554333508, 0.006640847306698561, 0.026268864050507545, -0.0023509440943598747, -0.0011009641457349062, 0.020462505519390106, 0.0040286872535943985, 0.00970531441271305, -0.0026542353443801403, -0.001503306906670332, -0.021612556651234627, 0.005389114376157522, 0.006213084328919649, -0.0026244320906698704, -0.013625307939946651, -0.027685390785336494, -0.0002842258254531771, -0.002726113423705101, 0.0024298347998410463, -0.0068301851861178875, 0.01398995891213417, -0.033660050481557846, 0.010392541065812111, -0.0037867557257413864, 0.009901665151119232, 0.00170579319819808, -0.004428400192409754, 0.0026174194645136595, 0.009431826882064342, 0.012643556110560894, -0.012699656188488007, 0.016044624149799347, -0.022608334198594093, 0.01576412282884121, 0.00641644699499011, -0.045917920768260956, 0.0016873853746801615, -0.0197051540017128, 0.019396604970097542, -0.009172364138066769, 0.01468419749289751, -0.010785241611301899, 0.02056068181991577, -0.0030557014979422092, -0.0018144871573895216, 0.0011763486545532942, 0.0027769540902227163, -0.015651922672986984, -0.02849884331226349, -0.0027979917358607054, 0.0002172782551497221, 0.0019459716277197003, -0.007342098746448755, 0.003874412039294839, -0.001058012479916215, 0.015595823526382446, 0.027418917044997215, 0.0049262885004282, 0.027446966618299484, -0.005897521506994963, -0.02521698735654354, 0.018232528120279312, 0.025525538250803947, -0.013036256656050682, 0.008407999761402607, 0.029256194829940796, -0.009887639433145523, -0.007657661568373442, 0.0020879749208688736, -0.0020248624496161938, -0.012917044572532177, 0.008267750032246113, -0.001646186807192862, 0.0043512629345059395, -0.03189289942383766, -0.009999839588999748, 0.0006320024840533733, -0.0116828428581357, 0.028863493353128433, -0.017503226175904274, -0.012349030934274197, 0.0002292214339831844, 0.011416367255151272, 0.01099561620503664, -0.005227826535701752, -0.026759739965200424, 0.009656227193772793, 0.002694557188078761, 0.000690294022206217, 0.009200413711369038, 0.006840704008936882, 0.012187743559479713, 0.026310939341783524, -0.012180730700492859, -0.006574228405952454, 0.01227890606969595, 0.004407363012433052, -0.03214534744620323, 0.02126193232834339, 0.005687145981937647, -0.022145507857203484, 0.00543469563126564, 0.0005027093575336039, 0.016423299908638, 0.021836956962943077, -0.0066092913039028645, 0.008127499371767044, 0.0019617497455328703, 0.002641963306814432, -0.01877950318157673, 0.017755676060914993, 0.03009769506752491, -0.009403776377439499, 0.007882061414420605, 0.010210215114057064, 0.02197720855474472, 0.003804286941885948, 0.0030521953012794256, 0.009242489002645016, 0.019284404814243317, 0.01617085002362728, 0.011325204744935036, 0.009361702017486095, 0.02057470567524433, -0.004035699646919966, 0.014543946832418442, 0.007208860944956541, 0.008190612308681011, 0.02133205719292164, 0.01225786842405796, -0.01191425509750843, 0.002499959897249937, 0.009642202407121658, -0.019088054075837135, -0.01577814854681492, -0.0006622439832426608, -0.005361064337193966, 0.001601482043042779, 0.006160490680485964, -0.0073491111397743225, 0.012545381672680378, -0.0008664833148941398, 0.015076898038387299, -0.02269248478114605, 0.02316933497786522, 0.01248226873576641, 0.00729301106184721, 0.021822933107614517, -0.009305601939558983, -0.0034834647085517645, 0.005336520727723837, -0.018162401393055916, 0.0013174754567444324, -0.010616941377520561, 0.0037516930606216192, -0.007818949408829212, -0.00514718284830451, -0.00688277930021286, -0.01354115828871727, 0.0009475654806010425, -0.008407999761402607, 0.0068091475404798985, 0.027937842532992363, 0.022327832877635956, -0.003406326984986663, 0.012643556110560894, -0.01711052656173706, -0.010680053383111954, -0.033239301294088364, 0.01354817021638155, 0.009340664371848106, -0.023730335757136345, -0.007335085887461901, -0.014992747455835342, 0.001132520497776568, -0.004326718859374523, -0.007601561490446329, -0.022327832877635956, 0.010757191106677055, 0.016858074814081192, 0.009235476143658161, -0.023786434903740883, -0.007727786432951689, -0.011633754707872868, -0.005059526301920414, 0.014529922045767307, 0.003050442086532712, 0.008358912542462349, 0.009081200696527958, -0.014053070917725563, -0.006448003463447094, -0.006230615545064211, -0.015918398275971413, 0.001995059195905924, -0.011886205524206161, -0.005455733276903629, 0.004540600348263979, -0.016773926094174385, -0.009803489781916142, 0.007114192005246878, 0.011654792353510857, 0.0008677981677465141, -0.0038148057647049427, 0.03444545343518257, -0.006486572325229645, -0.00694939773529768, 0.02290285937488079, -0.0015445054741576314, -0.017952026799321175, -0.01111482921987772, 0.00240178476087749, 0.006963422987610102, -0.0008673599222674966, -0.004933301359415054, 0.008506175130605698, 0.0031363454181700945, 0.002485934877768159, 0.012517331168055534, -0.023674234747886658, -0.007559486199170351, -0.0012368315365165472, 0.005066538695245981, 0.0018583153141662478, 0.01215969305485487, 0.01483847200870514, -0.012440193444490433, -0.01809227652847767, -0.0007595425704494119, -0.012818869203329086, -0.02497856318950653, 0.006907322909682989, -0.008702525869011879, -0.0028295479714870453, -0.0070019918493926525, 0.003481711493805051, 0.023309584707021713, -0.008274762891232967, 0.013625307939946651, -0.0018004621379077435, 0.013758545741438866, 0.008015299215912819, -0.019312454387545586, 0.004887719638645649, 0.03447350114583969, 0.003607936669141054, -0.02451573684811592, 0.011163916438817978, 0.004323212895542383, 0.010245277546346188, 0.011542592197656631, -0.011121842078864574, 0.005034982692450285, -0.005757271312177181, -0.004123356193304062, -0.010154115036129951, -0.01921427808701992, 3.002231096616015e-05, 0.0047474694438278675, -0.015455572865903378, 0.017657501623034477, 0.004708901047706604, 0.015651922672986984, -0.00451605673879385, -0.010588890872895718, 0.0059395963326096535, 0.00035478919744491577, 0.008001274429261684, -0.006770579144358635, -0.015441548079252243, 0.00021103273320477456, -0.005340026691555977, 0.03955055773258209, 0.005564427003264427, 0.02942449413239956, -0.013428958132863045, -0.0017794244922697544, -0.033912502229213715, -9.675072942627594e-05, -0.007531436160206795, 0.01111482921987772, 0.007447286043316126, 0.0030381702817976475, -0.01575009897351265, 0.00995075237005949, 0.019635029137134552, -0.009263526648283005, 0.003255557967349887, -0.00016873853746801615, 0.0031293327920138836, -0.01918622851371765, 0.016605624929070473, 0.0027839667163789272, 0.013246632181107998, -0.008492150343954563, -0.004470475483685732, 0.006433978211134672, 0.016844050958752632, 0.028330542147159576, -0.0034168458078056574, 0.011823092587292194, -0.007783886510878801, 0.03382835164666176, 0.0023737347219139338, -0.03192094713449478, 0.01639525033533573, 0.019775278866291046, 0.01785385236144066, 0.0063287909142673016, 0.013744520954787731, 0.002123037585988641, -0.010203203186392784, -0.005459239240735769, 0.011696867644786835, 0.006577734835445881, -0.0016575821209698915, -0.01411618385463953, 0.01180906780064106, 0.014179295860230923, -0.00647605350241065, -0.010441628284752369, 0.016535500064492226, -0.003628974314779043, 0.000751653453335166, -0.021444257348775864, -0.01376555860042572, -0.018891703337430954, 0.00118423777166754, 0.0011859908699989319, -0.003593911649659276, -0.008099449798464775, 0.03579185530543327, -0.023239459842443466, -0.00970531441271305, -0.0027822135016322136, 0.019396604970097542, -0.01006996538490057, 0.025525538250803947, 0.011121842078864574, 0.010371503420174122, 0.007952187210321426, 0.024866363033652306, 0.010105027817189693, -0.004480994306504726, 0.00984556507319212, -0.006998485419899225, -0.00271734781563282, -0.02824639156460762, -0.03032209537923336, 0.005185751710087061, -0.008674475364387035, -0.004999919794499874, -0.01399697083979845, 0.020434455946087837, 0.01666172593832016, -0.010820304043591022, 0.00211427197791636, -0.014992747455835342, -0.0025332693476229906, 0.009677264839410782, 0.008947963826358318, 0.0025858632288873196, -0.008120487444102764, -0.0032801018096506596, -0.004011156037449837, 0.029733045026659966, 0.0029733043629676104, -0.0054627456702291965, -0.008793688379228115, -0.005318989045917988, 0.01239811908453703, -0.012517331168055534, 0.02152840793132782, 0.01830265298485756, -0.010497728362679482, -0.00808542501181364, 0.004032193683087826, -0.012594468891620636, -0.03130384534597397, -0.015203122980892658, -0.0005877360235899687, 0.010511753149330616, 0.01619889959692955, 0.0029627857729792595, -0.003976093605160713, 0.0009668499114923179, 0.016773926094174385, 0.014375646598637104, 0.003937524743378162, 0.014228384010493755, 0.012888994067907333, -0.004765001125633717, 0.007601561490446329, -0.0052909390069544315, 0.025301137939095497, -0.004509044345468283, -0.007510398980230093, 0.004056737292557955, 0.011451429687440395, 0.032762449234724045, -0.005136664025485516, 0.014088133350014687, 0.007051079533994198, -0.0009493186371400952, 0.0015716789057478309, 0.03640895336866379, 0.012461231090128422, 0.0018390308832749724, 0.01917220465838909, 0.00318893906660378, 0.011037691496312618, 0.00341158639639616, -0.030237944796681404, 0.00983153935521841, 0.0014840225921943784, -0.006444497033953667, 0.0006942385225556791, -0.00031775436946190894, -0.02056068181991577, -0.004775519482791424, 0.02917204424738884, -0.007910111919045448, 0.0042250375263392925, -0.006682922597974539, -0.01158466748893261, 0.020013704895973206, -0.006977447774261236, 0.00596764637157321, -0.019060004502534866, 0.01755932718515396, -0.002989082597196102, 0.017938001081347466, 0.01873742789030075, -0.004684356972575188, -0.0037797430995851755, 0.0030714794993400574, 0.017082475125789642, 0.0155256986618042, -0.012110605835914612, 0.006854729261249304, -0.020476531237363815, 0.00751741137355566, -0.009179376065731049, -0.009270538575947285, -0.027460990473628044, -0.003828830784186721, -0.0020721969194710255, 0.009522989392280579, 0.0015953461406752467, 0.00026494142366573215, -0.004779025912284851, 0.00473695108667016, -0.0007507769041694701, 0.02684389054775238, 0.005869471468031406, 0.011745954863727093, -0.0010325921466574073, 0.006202565506100655, -0.023758385330438614, 0.004884213674813509, 0.004000637214630842, 0.01734895072877407, 0.012888994067907333, 0.015792174264788628, -0.0019880468025803566, -0.00665837898850441, -0.003376523731276393, -0.005301457829773426, -0.01144441682845354, -0.011030678637325764, -0.01039955299347639, 0.0045476132072508335, 0.007271973416209221, 0.005133157595992088, 0.0015243444358929992, 0.01225786842405796]}, "text_id_to_ref_doc_id": {"37e35979-0d3e-4318-95db-6500b6c1ab6c": "09cba188-ceee-4056-8a92-de844661956a", "ce5416cd-156d-439e-ad33-04d2eda3d05f": "449c8982-fb23-4b3b-9681-751ea59bb2ef", "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4", "5fc110a9-5b33-4c68-a179-5896b8fc210a": "69beef59-0178-41eb-8e57-52ccdde86122", "7c03ecbd-a9c6-446b-8a8e-2cad41690d20": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc", "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e", "27fa039b-fe69-4713-98d1-a3c64b165183": "c24b38c9-894b-4216-8b1a-fe5fd15934fb", "23df7c2f-a610-4aa5-9772-c60b136c4718": "28764aff-36df-4485-870a-cfac824afee1", "35615553-1e95-4ed8-8173-ccebfd5ebbdb": "c6b1e57f-77b1-497b-9874-90299e01ccd5", "67baf74b-8983-4047-a9a6-5bcfb3347273": "7b483c59-04ae-4352-b811-dd69cd19b494", "0367b4dc-58bc-45e6-8bbf-4770fcb2829b": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c", "d802fbb6-1c8b-4540-b126-543f1cb58877": "bc634b57-3daf-4592-965d-12d8393abab9", "8b853460-a294-4741-b13f-57e59580de1c": "254a5442-b132-44db-84ab-b6bcb087dcf8", "f8f00cd2-7871-47b0-a1f5-9b380df20766": "abc08179-04a0-4568-b866-f54c8a658e48", "4850fc27-b132-4064-a67a-3f61df294b5b": "c9ce5806-ae57-4637-b33a-c20fc502fd13", "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c", "de927a9a-e05d-431c-91f7-a4603741e016": "b5be87b0-8eff-4406-8a71-e2abe07e82d3", "8421e4dd-a2ca-470e-90cf-b80e1736f364": "6667925f-23c9-4290-80a7-1e8bd16eb65f", "9a6c4417-5268-4d4b-88ea-6c1482255021": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "0741252a-1649-4132-820d-aada866d9dff": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "a044525e-a899-4a11-8033-1865e1803fc9": "8ab749d2-d917-43f0-8d28-71379d61d6e4", "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3": "a5852ce2-2220-465e-a945-c13a45057bf6", "3c9d167e-f7bf-45db-a795-bcc4b941cb4c": "02f878f0-725a-4de5-9f2c-2a0672c3ac52", "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459", "c6556b88-8149-40ed-895d-dc611533cba5": "3ec800f4-7df8-4008-8b04-a61332e6aa42", "75c34353-c6bd-4fcb-90ec-d02aa625ab46": "ab40a505-36f4-43e6-a150-cd85db235e67", "8fac4829-a6e7-4159-8bb2-10e1859025b0": "833dfd3f-1aea-4752-9f16-81636b443cd7", "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa", "194206af-b2e8-42f9-8424-2174f55f3f2c": "87768311-dda0-4891-892c-f70a3d6d74df", "35fdfb36-0f18-44d3-a476-1c281c5b4d67": "1932d374-b325-488f-88ac-9b6c15ed46ce", "1982d6a8-22c4-4beb-a9bc-96e81ac08261": "f7151b5c-15a6-483c-a65f-1a273be9cf45", "5daeebb9-1856-41ae-a528-c28d9f2e3099": "5544be45-71a1-4200-891e-f3c0589ad98a", "0b965522-311f-4ed4-9b89-44bdd2409aff": "ab11c7e5-042d-4dae-93ad-922ffd496201", "8d8dadf8-3f5d-4388-8d63-acca8868c074": "ee844663-0f37-46bc-8e6e-04d87d9974b3", "991c8f71-96f2-4ce7-97fb-e2adfd81fa49": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee", "3f708918-9bcb-4c0a-bd9c-c987901f8659": "2a765986-cb5c-483c-b423-2953f033b681", "1278ad97-268a-4707-9066-09d44fb74832": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851", "532e020b-af47-4631-9116-743d24b89552": "e186910d-316a-4d76-8b72-0297597744ee", "9e212d39-504d-4779-83f0-355636b0de25": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06", "062f22d5-6e38-4cd6-a3f1-cf5700f9821f": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064", "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1": "56da6737-1dee-46bc-b3d0-90e13a697962", "926c9e8c-0a25-4512-88ba-697deb7cd1d6": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a", "46cea481-4853-4b34-a148-91f2281b5148": "002b7e66-87f2-48b2-a83c-dad60727f3bc", "5428fbdd-f596-42e9-b75e-2e7e1e153e90": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3", "32a50608-96b5-4eda-bd89-6ad80ad73f62": "a4e9e8ce-b526-4687-86c7-aa46c892e55f", "ae360743-3475-4f15-95b3-7c96f8878dbe": "929822da-fa3e-4d25-b523-db06a02797f4", "179c2192-96a1-4557-8891-c408aa29e6ac": "98da37bf-9477-4f50-acd0-8018c43a06bc", "692705ab-306d-4be0-9fed-d651401eaadc": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3", "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac": "6f343a13-6d93-4a4f-a07d-17234e8972a2", "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac": "86d6342d-b6c6-44b1-abd6-09e10f17b87d", "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e": "925a779b-d812-49fb-9d86-727b98ed7f66", "3a27b605-45a0-4bef-902f-c9b3c7171ebc": "1517bbfa-266e-4d8d-a792-78af433ef831", "058bc3c5-2029-4b92-847c-c3f57e1b328c": "e163b8cb-7027-49c4-9910-0266381e904d", "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d": "9d22a53f-ec69-4924-b375-81f49499c45d", "2cd9ecff-8914-42b5-802a-5b28162a87aa": "3550a897-ae49-4ce5-a053-1a0433f522ad", "30959e4d-8ce8-4b68-9863-a25703b0bf21": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac", "23fac348-3556-4651-936d-955a32b4defa": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e", "36bac6f0-91af-4538-83f6-35a0f61e115f": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3", "34869ab7-7f4a-4116-b78c-8912e9ac80ca": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c", "655c55fe-0cc5-482b-9854-4c0d26faa928": "4db0cd75-c068-4b1b-9568-55edcc23e1d1", "1c302ce2-13eb-4f5c-8197-be35d64921e4": "db5bd995-4fd6-4f90-81d8-15d132492d89", "f8eee05a-466d-4169-85ef-032419f8c5db": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e", "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd": "94ad5bad-5d79-4900-b224-fcb536f546dc", "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec": "9e84d06d-f07c-4287-9eee-91b4347ab105", "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2": "30086c6a-3f81-4256-90c9-76e799e54220", "d95791c3-d879-4147-aeb6-a448e2e56a23": "994280d0-881b-4da9-81e8-1b218ece448d", "6c2e3648-7641-41c1-83cf-2ef654b3e3c4": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791", "47cdf033-1dfa-4a68-b87b-c3dfae5533f8": "585e7a5f-6ee0-42b5-ae41-d7b682789472", "9feb8655-b758-44b2-a591-e72e6e041b9e": "2f5f5e86-fef9-40f5-be31-b997cebc89fd", "92b6dc3c-4165-4d1c-94c8-c1f6f072408e": "3694702a-f07c-4cfe-977d-b63c4305e7aa", "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0": "ee649dc0-00cd-45b1-86d4-e364661a165a", "c8e2752f-412f-40b8-ac12-0c82676020a0": "45f0751f-e74b-409e-92b3-56a5077e7b84", "1a7de58f-df68-474a-b536-a5204aea831b": "96147a63-462b-47b6-8b94-ba31bfba59f2", "cd1d59b9-b560-4f69-b868-c136d63e29b0": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab", "7eb61bf6-a6fb-406f-9b98-866c97063e09": "971eddd0-7c7e-4cbf-9768-2b203a024361", "864076b7-ed58-4051-b8b8-ae83d361d1ff": "0c3c8db0-1c9b-462e-8794-9e80ef607487", "9de99182-6404-45f5-9277-1bca0948ae98": "b9cce625-c085-46ca-94c2-f459b33950a0", "15df1912-ef86-400e-8613-63812935df4c": "4065963f-dd8e-4c2d-a224-53e172f185cb", "68d47fad-bb4a-44a7-8c63-58050f005f87": "7d1a37d4-2f81-46f8-a045-c3eea542e072", "6162dc0c-8118-4b94-93ed-b8b693e3f908": "29d0e92e-2f07-41ff-85a7-366097435880", "05c70ffb-3451-4aac-9fff-dca65871b819": "200dbd2c-4feb-430b-a45e-e8815de81a0e", "89fbf4b9-69e8-4842-9a4f-b22c18d93601": "0a572fee-480b-453e-b39b-d52c1860abf3", "12b52d4e-62a9-485c-9295-ac3c7b7712e4": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d", "0e310153-ee47-45f3-913e-57ba9f58ad5d": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1", "83762a91-2b61-4ed1-a937-20c8d4fe6cae": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e", "7932423f-0047-496c-86f0-5c4a705fc98a": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d", "49e57753-554b-4cf6-9f91-eef9976e20a8": "8eea9f35-5942-4a12-8b0a-afc11c521132", "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c": "350795e8-f3c0-48bc-be44-dc2db7790d6e", "1f364fe1-4df5-46a1-95b2-00ea557d74ca": "aaf37c8c-f9d2-450a-8463-82cedd958758", "2e4d3c45-624f-4149-9374-fca2ed641f58": "a3f95be5-00a8-496a-9716-cfaabad3af83", "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b": "f23264c4-1c2a-4b5c-ad26-329db3f6e926", "74d3384a-7128-4168-9f8d-47d5cb6dee60": "98a14f91-efc1-484c-bd1c-168e4f107a8a", "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8": "1767df8a-429c-4ceb-a2c0-519f13a4207a", "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e": "4647e943-9fc8-4934-a54a-74c2ec98ed91", "e9f07882-5921-41b1-883c-0396aaaef7ac": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5", "df618784-f3bd-49f9-b3b9-88ac69087dc2": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d", "fc6d620d-8967-4097-ba4b-5b8379b30435": "56237d75-1153-4f73-a1e1-26b49b72701d", "88d8279d-e0e5-4c63-8c40-03d0daf7cab7": "38bb20f8-99e1-45f1-847c-7043f83b26df", "ad557b52-361c-4391-ac61-5bb82b32a98c": "1a73fed3-dc5d-4114-a921-be2d877d0e20", "06721709-3201-4bf4-ae18-7081ae33a6b8": "77b77dce-8938-4eed-8764-5f733b2cdb71", "3c193164-9ac6-4c33-84eb-4f619cfc6d78": "a11b618f-9240-4a14-9c60-1cf964a8cdbf", "41fe424f-5356-4081-b566-ba0af32bead2": "a4e25329-5188-4bf9-8563-22b56735c8a0", "8fe81af3-bafb-49cb-ba50-d5f3bc347131": "4a196e24-5646-402a-9474-530fd0866c44", "21ea6e25-467c-4f15-b2a4-6135d6ec3e60": "a13c0e51-2e14-4ff8-b6a6-415120d62b33", "c11bd073-d374-4e7a-8539-38569a04d1ad": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814", "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368": "f5420126-9745-42ea-a08b-bdf16577dff4", "7e244ca2-5e29-43b7-8a3c-98549e4d97ed": "043cf0bf-373b-4e4e-862d-62dea1de594b", "39292e60-4e04-403d-9efb-39addde4ee28": "7a59eff3-3aa9-4fac-9d19-e29491007fbb", "5003f6bb-5355-4147-8dc7-b40d9500e93c": "a0a807b9-4301-429c-bce9-46250c0647a5", "2b3514d3-df70-4353-a430-c9f44780a089": "819670e0-6c9a-4836-8666-cd45980f05e7", "6931ad56-a9f8-4e1f-8686-8d827b8c28d3": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df", "9df6f9ed-1a20-4d07-b419-3a232c53067e": "93bb53c8-930d-46cb-82b2-662c0f732327", "a7f8239c-e6f1-467a-ac29-2e5636515606": "2f42a9cc-2e68-40eb-8472-1449ace5af03", "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7": "52040a53-e5ce-452f-9de2-1600f47352df", "4a6a49bc-91e8-4059-82b4-a5731f18fb81": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14", "06c8f1be-09ed-4762-9739-a090b78e3bc0": "33252fd8-1d83-4357-aed8-a15f4322e07b", "e517b8e1-15d2-4458-87f4-4dfeb1811716": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6", "ff111f55-ae10-45e2-92da-a096318840f2": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49", "46852915-14f3-4c56-b364-ffec623d1110": "3021f7c1-9ebe-43b0-9452-6db7e6d49216", "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64": "2bfca846-68e1-40ac-9716-7d8d551ae833", "25063585-9f14-4c7e-836a-a2956319e633": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca", "604f912d-6dba-41cf-ae04-4146618412f1": "a78142c8-9f68-434a-8f7d-64459282a32e", "b27f419a-1eb1-4044-a004-2181c718d9db": "ce1a83e1-ee20-4579-bb8f-b9ecae516863", "2e7b7a46-2077-4163-8fc6-ea5e0116eff7": "8356bd9b-ef43-4463-9571-a521a944e9cb", "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19", "94932e90-bca7-4993-bc81-8c86542dccd1": "dc9394c0-64bd-49c6-944a-3e8d172218e1", "692966a7-e54c-4abf-bc2f-c59557e551e7": "70f399f2-2ff6-4259-92cb-bfde88121616", "e5157153-76fb-435d-b2c0-9ecdf6ce1241": "17bf3916-9433-4a71-b068-b422aa99263c", "c2e2df9f-8609-44e2-8986-dec7ba509115": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa", "c02f556c-e845-4383-aa94-fe08bcb664e3": "439904d7-435f-44df-bea3-fcd9d8bae6aa", "2407ed10-0410-4965-996e-0daf93ba18a9": "0db2233a-5a0f-438d-b198-cf1cc962ad14", "ce755bb8-eb14-4a1c-897e-1fddeeaef178": "25e3aeda-b157-4ee8-8db8-f05c116ef821", "a96fc25a-3f3e-46aa-84dd-82f6c3847183": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040", "5593171c-b3d2-4d7c-85de-7e23b9578622": "7512abb7-f21b-4ccb-9146-67085b74b414", "b16eb01f-efdb-4a30-8dba-5369d9780275": "bca153c1-f76a-4f5c-a384-063b344a6fdf", "f56de84c-1275-43ef-8612-2b179d6f6374": "81171af4-919d-4cc6-94eb-db878b7afce7", "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2": "bf2cb67e-6274-470f-93a7-e92a81c9d921", "c1f1e583-eb55-4df4-8f4b-f567d260900b": "4345b23a-d8e4-4600-977a-9364161fe6ba", "82829188-ab31-45aa-91e9-7d523c175c66": "d39cf93a-f881-4804-8922-023f2bd8514a", "36a400d2-2290-477c-837b-02475c4b2fbf": "03e098c5-6137-4b66-8a3c-94af492101ad", "c8623e15-c59c-401d-8078-8912707394c5": "dc825136-ae1e-4706-becc-2e3088e4be4a", "8d40faef-053e-4772-aa32-67f33f070223": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53", "e1c93542-3556-41e1-a259-89aec374e6ab": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe", "5a4eece9-67b5-43df-a81c-2f3c91b9fbce": "00267259-f81e-4f0d-986b-ae00e970af85", "033405c9-8636-4dfa-8ee3-4ce39b433530": "e98d606d-7464-4ade-844e-da68623e56b0", "539d2ce9-35c7-434d-825b-fd7c0df52057": "82661f84-1ac9-47bd-a521-68a220f2133a", "facc74ad-88ab-4424-8c73-5238bb1dbad7": "95860c68-a20e-4c62-8a75-5d56d1a21209", "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121": "8881a89f-17ba-4098-be8c-9a52ea9634ac", "250e7d39-44bb-46ee-b0e8-16ae0d439d8e": "ea255be4-579d-4684-bc02-342cc391567f", "33975052-fe24-499e-a051-aa9a7d5a83e5": "ae3b191b-a196-497f-92c4-234c181cdf11", "3660adda-30c8-457f-b96d-c7d302555cb0": "18b66f27-4739-4350-9276-847c3ecacd5f", "3a76b360-9b3b-44fc-b257-8c654892e217": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0", "1e7e0852-9143-4d50-ad65-62c25c4d9a09": "773b3e28-5c02-473f-8ce9-7e73f7a8b373", "6af18d53-c5b3-4f1b-b368-c570bddf9677": "940cc22b-6433-4369-890e-3450e2d8c7f2", "6a666477-1bfa-452f-bad1-682e5993dab0": "81ce1f78-d944-4136-b7d1-453b9768922c", "a07fd493-ee5f-4964-88e0-bb56a446eb61": "ada64a07-acc0-4647-9c86-f31e156b6ea1", "8ed46f10-7f86-45c1-bef1-178a05b08468": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4", "64a43dd8-c4af-47f0-9faa-86d752cceb8f": "89703fb4-6bdf-414c-8013-73a164077950", "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9", "7e203c21-d2d0-443a-8ed1-f316aac108c5": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec", "a77e394f-eda1-4b8c-9199-7d2247c9d872": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea", "0eed630c-d594-4360-8a84-1ea74e62f0f5": "ed780a4d-0a72-475c-bca6-5d65e9a568aa", "829f1387-308e-421c-95ba-caff21e34bd6": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a", "0c72e829-7c9a-47a6-af31-9fe3543bd78c": "a1447816-0a63-4617-baec-c158bc7a73e0", "3473e066-8864-4ea6-b7bf-17c42665b599": "3c57573a-4c54-4c29-998f-ccf231b85e67", "4f305c42-d33f-4b8e-bf77-2ea69ace07c8": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c", "7c42db89-d590-4f93-9be4-b85a62312c04": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1", "270348f2-a166-4b96-b28a-2d3bb355e69d": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34", "5179c470-17ef-44b7-bf30-d724ca8e6a1f": "11d304bd-8210-4438-946c-abb419be8050", "52ee1b52-84d7-4379-b769-db8143089438": "f0e095c9-538f-4504-b5c5-f2b9998d9e63", "a1e179c3-b165-44f2-8a8d-4ee950a281ae": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9", "cad669ae-bc96-48f6-86be-a7411388ef8e": "052284ab-4468-410b-a097-37780fb983a3", "b3493286-134f-4c81-a543-24c1f94dee97": "d8396d01-1bbd-4fec-951b-b547a4c01d4d", "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e", "0969b5a3-21bb-47da-ae53-9e00bdb2279c": "d26d608d-bbca-4822-b7e7-58ad8d907718", "433c4723-5242-4c38-8142-e9763b695dd5": "3093d9eb-9b8e-4d32-92ad-674e99b34a35", "702aa6c4-d709-4041-97ee-4c6a5c57bce3": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e", "9f2b3683-b974-4b5b-b968-6e44eb6bb66b": "9390e5ef-048c-4731-b84c-d2a3beabc7e4", "05636a71-c471-4479-9045-250d59b4d199": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3", "c94bb528-4956-46d5-a4df-e650f74f362b": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8", "3082a394-1cd7-49c3-b83e-c91ddfda982e": "eaffce81-f1f5-4959-8d60-57953a8e0c10", "447a6e0c-677f-4539-85ca-5c72307a10ff": "b17a26e9-b2b6-47a3-bde0-995ce61663c5", "9d43bf2f-9b6d-4c9b-a597-06f9ca591520": "261c2441-4165-45c2-a10a-3cd23dac57ba", "2505f174-98d2-49b4-93f6-9c62039cb6b5": "04d71240-fcf2-4072-9d74-694f4bec8996", "a88df31e-35ea-45b1-b79f-9a4ec0846da3": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb", "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8": "5528953a-e1a8-4009-b345-c4876ad330b8", "903c910e-a6de-4f76-817c-0dec155e870a": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926", "5866a289-b3da-4d3c-a001-59a4006b5bf9": "89b86a7c-90a7-4d81-80d7-411815e888c7", "87f2d885-6a0d-4836-b824-ecdb1829b746": "9e841c0b-7318-4c90-ad4c-24737d861c6c", "c0af9c06-941b-4a98-a980-1dcec14868c8": "2e5295ae-4d3a-419c-860f-80f5629a27b5", "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25": "bc47c26b-5a4a-4652-a406-7606309d4f59", "e4eb8e3c-4116-4d81-890a-a1934ed06eb0": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d", "78e994e5-dbda-4960-9a58-8a398eec44ef": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32", "7dc088d8-125c-41e5-bd34-8ebbf828e918": "820d78fb-3334-4b41-b8eb-1717ee427bb7", "4a936b4a-b9fb-455e-9162-319f1b8112be": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "7549afef-c458-4c82-8149-e115c99cd800": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "2c71e182-997d-4d7e-834f-b7dc138e7830": "3ecf90ab-94be-44d6-9343-605105ac497e", "6901c4f7-aa1c-4fd9-94e9-085fab8deae4": "e29a0a17-0ea8-4972-a9a4-c569e6365701", "c78e873b-ee41-49a4-90f5-b0d8887422c3": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa", "797a48ee-2ac2-4e05-9bb0-8e4c54754eac": "abb61571-5049-463c-b4d9-e8a6cdf330eb", "c676458f-04d8-4041-9ea1-c947010dff53": "3b959379-13d3-4c66-820e-ef6ae5e54595", "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c": "18a09b06-e824-4435-93db-f2259404c708", "5631ea16-89c4-4cd1-a971-2e1bd07dee2d": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2", "f16298e7-2f76-42f7-9d44-c1fab304825b": "26c7eb2c-6ac1-4f87-af66-939fa469d08b", "372e09b4-a41b-491f-a954-717248f64974": "b22c7013-5aeb-4343-861e-30e36c76d314", "ca3e349b-fcaa-4872-9016-4f32585cd66c": "58f2d3ed-b7f1-4c04-843c-70a0e6384767", "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2": "f5146bfd-dd6d-48c9-9108-5d654c5aa181", "c01cad1e-baf0-4514-b6ab-3df8dc973827": "d547d570-592d-4cb0-a51f-c504d544c191", "870c3230-bcd3-49bb-a774-c3c265fad517": "aac2e449-4cee-4fbd-9697-f93360b76e19", "2c315702-c74a-425f-95cf-aa7f21ba6275": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378", "9698d911-4ec1-4061-8ec4-c9de86f0ec0b": "7a9ee7fb-d475-48d4-8862-cafba70d52f6", "2c94d49d-17af-41e4-9621-7b5e6450b367": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120", "6dd6e451-5c6d-4da8-91e6-5b809cbb2260": "1b44faef-8bcd-4009-b5b8-dcdccb43b671", "0d614f08-4ea9-4e7f-9251-b35cf32549e5": "fd7af22f-541c-4da0-be81-fac44d754150", "b8fe2fb5-e262-498e-a07d-05ad188e6b6e": "6126b206-1c15-44f6-8d50-00b6ccccb844", "d9f10a91-8e5f-4f4d-8f87-2af269a66b92": "94f7738b-dbba-4421-b9f8-e30b407d68c4", "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd": "d380bb2c-5c9c-4fae-8701-85992edebf36", "bef3b984-31fd-42b0-b39d-8f2fe64fb443": "2a7bde72-319e-4edc-8264-af5c78526b40", "befeab50-a804-46f1-8722-bc31dc6d52e4": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac", "b67796a6-a9cf-4173-a287-4adff8df6d4b": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53", "67b7b9b7-4890-40cc-8c10-e546a2826cba": "5c7600e2-0aaa-476d-b0a9-287364ac394f", "2375910a-0684-4ff8-955d-d8b8b43535d1": "116ab9b4-3b96-4b46-a6e0-881bb74204b2", "5ee4322d-3a2d-4bc5-9108-537d571eccc6": "17a7f0db-4838-4fe7-ac91-84a8a186aa47", "59c4c9ed-f963-4760-93b6-dd7c3a97bb54": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8", "67cfb681-888c-4ffc-82f5-f02734835b54": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a", "8698b735-ee66-4b51-8f50-cdb723ee0c48": "b5109216-4f8b-483d-bc75-09ee3d9a3d67", "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58": "bbd22630-8de7-4267-adf3-b6aa5c88fab2", "d2f6bd59-18bb-493f-9220-a47f52e372fe": "aef4bcc2-7867-4303-8aad-2e2a449d5adc", "778d0172-21c2-42ce-9fd0-d50ddecb9b57": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7", "63186939-9531-4e5d-82d5-3fcf84655976": "578c62b5-566e-4b6a-9aba-2a47bc4d940b", "23fda1f4-7289-49ec-a59f-37a7a607cba0": "9b4076de-f213-4e18-8c5d-fd15e2b33525", "3fb2305d-b12e-48c4-a356-1600c347320c": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992", "f56976c9-3bd6-444b-9dca-3bf42084a562": "4581fd35-6736-41bc-a784-30ec63c244de", "95828a01-1119-4b71-946a-c8883f2c5504": "0234af90-0173-4e66-91a9-2619cf5419fe", "27e555a1-e899-4710-b03c-4fb670054999": "c4871e12-b268-4e58-8beb-c71f7240f4d8", "772005e7-7276-43a5-b3ba-42c7290f0c36": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1", "f69522d9-1b62-4924-a6ec-c4aa281058da": "6255259a-15ae-46af-9cff-b8c237f91979", "ddef57cf-090c-4585-aa1d-49e2a1e6748b": "51358090-0de4-472b-8270-27418c9f50f1", "50c21c11-745d-4649-9456-0b291bf29d19": "24a26843-fa30-4ebf-b858-3a378bde9613", "23b7a614-0705-4541-905b-6ef766812a2a": "3117244e-bff6-4c32-b6d3-b8c25474aa23", "fec6b74a-2339-487b-bd6f-71fdec66b791": "fce78388-527a-4613-b394-acf00394ed64", "bead822c-bd11-4d9e-a811-2e377bf32cc0": "02f8ebfe-5498-4788-add6-913a59d7f92b", "7ac58128-4d5a-455e-a473-58d1e7958af6": "61379e76-3b4f-46ca-aa98-5fff36e5049a", "0314465c-4399-4d05-87d5-4cedf3250956": "c0934b85-61ce-4bfb-807d-d698d29af649", "80067795-fb75-46ce-bf5a-61015161aa5e": "b772fbd8-ea12-4ef4-8cad-a1f31386851f", "16606eae-35ef-4e6f-97a5-f80ad56958ee": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89", "da93de1b-e8c4-4faf-9df5-0304aa74c9c0": "db065740-e8df-4964-8479-19a07336f6a6", "5472cd78-c030-4815-a2f1-33245f14f018": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "40fa34fe-7285-477b-a1c6-5cb2550a84fc": "6f93e1d4-5464-4054-8830-2ac07c97ef87", "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb", "b69caf6b-5590-4518-a963-d1998db8440a": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1", "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830": "6b7a9e53-5661-441a-832b-75efd2b7b287", "f1790d38-4768-4282-acf3-32ea03ee760f": "47229daf-7ed7-4391-a744-ad1691bc03a9", "4663c078-0471-4f17-b704-37a847b3578a": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1", "ee00678d-0531-43a6-b4ee-24d47f7b854c": "c134065a-14f0-482b-a69d-91baacb5d494", "40002650-dc78-4ca1-a842-1d2820a2c9bc": "de3d45e9-9ea1-4f75-949e-e30b0052d539", "9687aeb0-7763-4074-a0a8-c49058fb0ffb": "e42c5557-69f6-40e3-8c11-66ae89fd0456", "2abc0d0b-6666-4b3e-983e-36e820323e08": "f087d8d5-c0f0-4662-b436-3ad78cd14624", "c914503e-2bc4-431a-941b-5ecf283e5a35": "9562c403-41d1-416a-9246-94e21f9337bf", "283ad8c4-c5d4-4113-9c45-6e42828c2bd6": "30a8e840-ff81-4b29-a293-91a421431712", "12fc93de-6a8b-45de-ae87-9e824744e5ac": "863a67ad-1fbe-4efb-9174-0e58326f16f8", "fe6d77c4-5744-4c45-bfff-03e9475499a4": "a0321fdb-df92-44b3-bb11-95a8a7f699fb", "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58": "e3af0884-3e2a-4ed5-be90-99c0249959de", "4431616b-6726-4488-a27a-09e0aad7a27a": "2856558a-faed-4f27-885c-73094f210748", "5795a666-d615-463a-82d5-56ceeac30476": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5", "85527e92-eb41-458f-91a6-751735c62a23": "4cf5cf0a-71e7-492e-839c-fe733e123ca6", "129acce9-c3ca-4527-a94c-a1bd7bd08e33": "f7f383d3-70de-4969-ab49-14d84a7275a5", "b051c646-22dc-44c8-823f-dea41902b9e0": "b393549d-e6ae-4799-acb2-1b3d290b4de9", "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4": "57ee30fb-db22-4b07-be22-1d6760eaed09", "1e846a4d-efb9-4bb0-a805-b24da1fd6101": "5b716c2d-7dee-48d8-8294-bf942bde1c5a", "c5de2a2e-604d-44d7-9122-f1e00ef9720b": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e", "cd36e93f-1652-488b-8342-eb7c92b5ce6e": "f0ba834a-0f18-4a90-844b-b459fee5f3ef", "d3f390f8-3dbb-458e-8d82-9c370e27ebca": "e53792bc-88da-4a55-931e-697331331fa0", "dcd995cc-58e9-4129-b3c8-9a603995d898": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e", "9fc08083-9edc-4125-8b2c-7bd929dd5715": "256ee66a-bf3e-46c1-8433-1230e80c4df6", "8bd35713-c665-4e9f-9747-a0e1b9042d52": "62db627e-707b-42ee-8ed1-bc3b95a5226b", "be5507b1-4d59-4284-84de-5e0ba0888c5e": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d", "24ee9238-b514-455f-a71e-f5eedaef6996": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4", "70541635-e91b-4d03-ad84-9cd710d8d48e": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159", "1331adc2-e36c-4df6-8b61-c8f12fedbf36": "477228f3-473d-497a-8bcf-8fe22f733d3d", "c85152fe-d901-4aea-9c99-3feb491c997a": "ee2f96ea-ae01-491e-aa4b-1df5caee714b", "be39d582-2687-4dc2-ab1a-811fd8a7f64e": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502", "6de89262-d55e-4917-ba9b-944c56f0494a": "19b2f7c6-149e-4008-9ca2-4d21443b7491", "cf1beb93-e72c-4e87-9196-8a06ca2540ab": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e", "53b5eeef-535d-450e-a8d3-6b96ae833a9d": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a", "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f": "961c6b2e-0554-4794-9539-48df93aeeef2", "20b1648d-1010-4845-982a-f3aeb7cb9df9": "072db9fa-5f01-4a27-a171-020fe76f3b37", "66619eac-0a60-42a9-b2c5-f7e4d638dc44": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1", "1c786628-34fb-42fe-9f8b-5f20c447803b": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a", "e67e559b-ac83-4048-aa23-7fb4cf7634fd": "0c956911-fdd3-4a8c-9660-127fbf17afa6", "8deac4ba-b6d2-4fdf-9a0c-3193562a049c": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4", "82e247ec-c751-43cf-856c-4b9305678284": "d4d759c8-7b5d-4493-9d65-0cd70589639f", "10e5d866-558a-499d-ad57-57208363e8bb": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe", "e666b745-fe5b-4470-ba64-7ecd573acbb6": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70", "6a0a74b4-f508-4b7b-ae58-3336e57e9c16": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb", "9215469c-3a99-45c3-8979-b22e4d10d0d3": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b", "9e067826-57fa-43bb-8dea-4f30569f03a6": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d", "ecd31646-bf80-42af-99f3-2788fe59ea15": "93099d44-6852-4806-85ab-84d654489dbd", "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f": "ced7c12d-3792-403e-9d14-2a51a9448fc0", "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe", "a643d7bb-5024-4ccd-8e46-623292978454": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93", "86a1c76e-c2ee-4953-a619-dfbbfd9beb39": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f", "e36834c7-2a8f-4483-8ec0-413205b1dea5": "e508df84-9264-40c2-aa82-82315bc442e7", "532697b7-ec72-41ad-9dbe-e1ed57b7917b": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd", "e963a28d-552a-45f4-9ec2-76023245927a": "36d2a341-899f-4f94-95cd-a952609cd2fd", "9ce827fd-a136-4195-b8df-3d30e7dc210f": "ac141999-281a-4017-85b2-b11e038c1dea", "fe29e92a-4453-400e-ada7-86ec463cda92": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f", "a884050d-6aec-46e2-a38e-6bfda8af1a07": "02b98683-ef2d-4966-97be-17ff4f2b7b69", "9bbca8e2-87bb-4617-8884-95f1278f1c91": "c9d33a04-b771-4d2c-85cd-362cb664dee1", "acf6b4c2-7e01-429f-b754-672e90a9d718": "549786b0-3e20-4282-bed8-c66faacfbd49", "771c144d-788b-499e-b0c2-2d480b3c1010": "fa485721-feeb-4f9f-ab71-d875f2ff3697", "8973f5b0-27f3-4e88-8941-d7b428473a1a": "4e039f46-7ab6-421a-9f50-e53e055f829e", "807b4fcc-439e-49c0-b9d8-3ba3f605786f": "fc223eae-d408-4c09-965d-c425ba47b8d3", "fa435881-3edb-41ca-acfd-f41d536ae202": "7441cec3-8b9b-479e-9148-647085f97e6b", "6763610a-3b1b-4443-a79a-56b39abf7aac": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f", "4112b27d-de6a-44de-bf7f-47e0a4cabf15": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07", "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91": "7630527c-681c-4aea-8cb1-80301045f7ce", "89e6af8e-8503-4b1d-8405-5c284128fd3e": "7d7982d9-15e8-48c8-be68-6432be3c9679"}, "metadata_dict": {"37e35979-0d3e-4318-95db-6500b6c1ab6c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "09cba188-ceee-4056-8a92-de844661956a", "doc_id": "09cba188-ceee-4056-8a92-de844661956a", "ref_doc_id": "09cba188-ceee-4056-8a92-de844661956a"}, "ce5416cd-156d-439e-ad33-04d2eda3d05f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "449c8982-fb23-4b3b-9681-751ea59bb2ef", "doc_id": "449c8982-fb23-4b3b-9681-751ea59bb2ef", "ref_doc_id": "449c8982-fb23-4b3b-9681-751ea59bb2ef"}, "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4", "doc_id": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4", "ref_doc_id": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4"}, "5fc110a9-5b33-4c68-a179-5896b8fc210a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "69beef59-0178-41eb-8e57-52ccdde86122", "doc_id": "69beef59-0178-41eb-8e57-52ccdde86122", "ref_doc_id": "69beef59-0178-41eb-8e57-52ccdde86122"}, "7c03ecbd-a9c6-446b-8a8e-2cad41690d20": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc", "doc_id": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc", "ref_doc_id": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc"}, "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e", "doc_id": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e", "ref_doc_id": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e"}, "27fa039b-fe69-4713-98d1-a3c64b165183": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c24b38c9-894b-4216-8b1a-fe5fd15934fb", "doc_id": "c24b38c9-894b-4216-8b1a-fe5fd15934fb", "ref_doc_id": "c24b38c9-894b-4216-8b1a-fe5fd15934fb"}, "23df7c2f-a610-4aa5-9772-c60b136c4718": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "28764aff-36df-4485-870a-cfac824afee1", "doc_id": "28764aff-36df-4485-870a-cfac824afee1", "ref_doc_id": "28764aff-36df-4485-870a-cfac824afee1"}, "35615553-1e95-4ed8-8173-ccebfd5ebbdb": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c6b1e57f-77b1-497b-9874-90299e01ccd5", "doc_id": "c6b1e57f-77b1-497b-9874-90299e01ccd5", "ref_doc_id": "c6b1e57f-77b1-497b-9874-90299e01ccd5"}, "67baf74b-8983-4047-a9a6-5bcfb3347273": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7b483c59-04ae-4352-b811-dd69cd19b494", "doc_id": "7b483c59-04ae-4352-b811-dd69cd19b494", "ref_doc_id": "7b483c59-04ae-4352-b811-dd69cd19b494"}, "0367b4dc-58bc-45e6-8bbf-4770fcb2829b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c", "doc_id": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c", "ref_doc_id": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c"}, "d802fbb6-1c8b-4540-b126-543f1cb58877": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bc634b57-3daf-4592-965d-12d8393abab9", "doc_id": "bc634b57-3daf-4592-965d-12d8393abab9", "ref_doc_id": "bc634b57-3daf-4592-965d-12d8393abab9"}, "8b853460-a294-4741-b13f-57e59580de1c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "254a5442-b132-44db-84ab-b6bcb087dcf8", "doc_id": "254a5442-b132-44db-84ab-b6bcb087dcf8", "ref_doc_id": "254a5442-b132-44db-84ab-b6bcb087dcf8"}, "f8f00cd2-7871-47b0-a1f5-9b380df20766": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "abc08179-04a0-4568-b866-f54c8a658e48", "doc_id": "abc08179-04a0-4568-b866-f54c8a658e48", "ref_doc_id": "abc08179-04a0-4568-b866-f54c8a658e48"}, "4850fc27-b132-4064-a67a-3f61df294b5b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c9ce5806-ae57-4637-b33a-c20fc502fd13", "doc_id": "c9ce5806-ae57-4637-b33a-c20fc502fd13", "ref_doc_id": "c9ce5806-ae57-4637-b33a-c20fc502fd13"}, "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c", "doc_id": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c", "ref_doc_id": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c"}, "de927a9a-e05d-431c-91f7-a4603741e016": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b5be87b0-8eff-4406-8a71-e2abe07e82d3", "doc_id": "b5be87b0-8eff-4406-8a71-e2abe07e82d3", "ref_doc_id": "b5be87b0-8eff-4406-8a71-e2abe07e82d3"}, "8421e4dd-a2ca-470e-90cf-b80e1736f364": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6667925f-23c9-4290-80a7-1e8bd16eb65f", "doc_id": "6667925f-23c9-4290-80a7-1e8bd16eb65f", "ref_doc_id": "6667925f-23c9-4290-80a7-1e8bd16eb65f"}, "9a6c4417-5268-4d4b-88ea-6c1482255021": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "ref_doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6"}, "0741252a-1649-4132-820d-aada866d9dff": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "ref_doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6"}, "a044525e-a899-4a11-8033-1865e1803fc9": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8ab749d2-d917-43f0-8d28-71379d61d6e4", "doc_id": "8ab749d2-d917-43f0-8d28-71379d61d6e4", "ref_doc_id": "8ab749d2-d917-43f0-8d28-71379d61d6e4"}, "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a5852ce2-2220-465e-a945-c13a45057bf6", "doc_id": "a5852ce2-2220-465e-a945-c13a45057bf6", "ref_doc_id": "a5852ce2-2220-465e-a945-c13a45057bf6"}, "3c9d167e-f7bf-45db-a795-bcc4b941cb4c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "02f878f0-725a-4de5-9f2c-2a0672c3ac52", "doc_id": "02f878f0-725a-4de5-9f2c-2a0672c3ac52", "ref_doc_id": "02f878f0-725a-4de5-9f2c-2a0672c3ac52"}, "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459", "doc_id": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459", "ref_doc_id": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459"}, "c6556b88-8149-40ed-895d-dc611533cba5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3ec800f4-7df8-4008-8b04-a61332e6aa42", "doc_id": "3ec800f4-7df8-4008-8b04-a61332e6aa42", "ref_doc_id": "3ec800f4-7df8-4008-8b04-a61332e6aa42"}, "75c34353-c6bd-4fcb-90ec-d02aa625ab46": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ab40a505-36f4-43e6-a150-cd85db235e67", "doc_id": "ab40a505-36f4-43e6-a150-cd85db235e67", "ref_doc_id": "ab40a505-36f4-43e6-a150-cd85db235e67"}, "8fac4829-a6e7-4159-8bb2-10e1859025b0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "833dfd3f-1aea-4752-9f16-81636b443cd7", "doc_id": "833dfd3f-1aea-4752-9f16-81636b443cd7", "ref_doc_id": "833dfd3f-1aea-4752-9f16-81636b443cd7"}, "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa", "doc_id": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa", "ref_doc_id": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa"}, "194206af-b2e8-42f9-8424-2174f55f3f2c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "87768311-dda0-4891-892c-f70a3d6d74df", "doc_id": "87768311-dda0-4891-892c-f70a3d6d74df", "ref_doc_id": "87768311-dda0-4891-892c-f70a3d6d74df"}, "35fdfb36-0f18-44d3-a476-1c281c5b4d67": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1932d374-b325-488f-88ac-9b6c15ed46ce", "doc_id": "1932d374-b325-488f-88ac-9b6c15ed46ce", "ref_doc_id": "1932d374-b325-488f-88ac-9b6c15ed46ce"}, "1982d6a8-22c4-4beb-a9bc-96e81ac08261": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f7151b5c-15a6-483c-a65f-1a273be9cf45", "doc_id": "f7151b5c-15a6-483c-a65f-1a273be9cf45", "ref_doc_id": "f7151b5c-15a6-483c-a65f-1a273be9cf45"}, "5daeebb9-1856-41ae-a528-c28d9f2e3099": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5544be45-71a1-4200-891e-f3c0589ad98a", "doc_id": "5544be45-71a1-4200-891e-f3c0589ad98a", "ref_doc_id": "5544be45-71a1-4200-891e-f3c0589ad98a"}, "0b965522-311f-4ed4-9b89-44bdd2409aff": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ab11c7e5-042d-4dae-93ad-922ffd496201", "doc_id": "ab11c7e5-042d-4dae-93ad-922ffd496201", "ref_doc_id": "ab11c7e5-042d-4dae-93ad-922ffd496201"}, "8d8dadf8-3f5d-4388-8d63-acca8868c074": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ee844663-0f37-46bc-8e6e-04d87d9974b3", "doc_id": "ee844663-0f37-46bc-8e6e-04d87d9974b3", "ref_doc_id": "ee844663-0f37-46bc-8e6e-04d87d9974b3"}, "991c8f71-96f2-4ce7-97fb-e2adfd81fa49": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee", "doc_id": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee", "ref_doc_id": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee"}, "3f708918-9bcb-4c0a-bd9c-c987901f8659": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2a765986-cb5c-483c-b423-2953f033b681", "doc_id": "2a765986-cb5c-483c-b423-2953f033b681", "ref_doc_id": "2a765986-cb5c-483c-b423-2953f033b681"}, "1278ad97-268a-4707-9066-09d44fb74832": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851", "doc_id": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851", "ref_doc_id": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851"}, "532e020b-af47-4631-9116-743d24b89552": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e186910d-316a-4d76-8b72-0297597744ee", "doc_id": "e186910d-316a-4d76-8b72-0297597744ee", "ref_doc_id": "e186910d-316a-4d76-8b72-0297597744ee"}, "9e212d39-504d-4779-83f0-355636b0de25": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06", "doc_id": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06", "ref_doc_id": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06"}, "062f22d5-6e38-4cd6-a3f1-cf5700f9821f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064", "doc_id": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064", "ref_doc_id": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064"}, "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "56da6737-1dee-46bc-b3d0-90e13a697962", "doc_id": "56da6737-1dee-46bc-b3d0-90e13a697962", "ref_doc_id": "56da6737-1dee-46bc-b3d0-90e13a697962"}, "926c9e8c-0a25-4512-88ba-697deb7cd1d6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a", "doc_id": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a", "ref_doc_id": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a"}, "46cea481-4853-4b34-a148-91f2281b5148": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "002b7e66-87f2-48b2-a83c-dad60727f3bc", "doc_id": "002b7e66-87f2-48b2-a83c-dad60727f3bc", "ref_doc_id": "002b7e66-87f2-48b2-a83c-dad60727f3bc"}, "5428fbdd-f596-42e9-b75e-2e7e1e153e90": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3", "doc_id": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3", "ref_doc_id": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3"}, "32a50608-96b5-4eda-bd89-6ad80ad73f62": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a4e9e8ce-b526-4687-86c7-aa46c892e55f", "doc_id": "a4e9e8ce-b526-4687-86c7-aa46c892e55f", "ref_doc_id": "a4e9e8ce-b526-4687-86c7-aa46c892e55f"}, "ae360743-3475-4f15-95b3-7c96f8878dbe": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "929822da-fa3e-4d25-b523-db06a02797f4", "doc_id": "929822da-fa3e-4d25-b523-db06a02797f4", "ref_doc_id": "929822da-fa3e-4d25-b523-db06a02797f4"}, "179c2192-96a1-4557-8891-c408aa29e6ac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "98da37bf-9477-4f50-acd0-8018c43a06bc", "doc_id": "98da37bf-9477-4f50-acd0-8018c43a06bc", "ref_doc_id": "98da37bf-9477-4f50-acd0-8018c43a06bc"}, "692705ab-306d-4be0-9fed-d651401eaadc": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3", "doc_id": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3", "ref_doc_id": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3"}, "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6f343a13-6d93-4a4f-a07d-17234e8972a2", "doc_id": "6f343a13-6d93-4a4f-a07d-17234e8972a2", "ref_doc_id": "6f343a13-6d93-4a4f-a07d-17234e8972a2"}, "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "86d6342d-b6c6-44b1-abd6-09e10f17b87d", "doc_id": "86d6342d-b6c6-44b1-abd6-09e10f17b87d", "ref_doc_id": "86d6342d-b6c6-44b1-abd6-09e10f17b87d"}, "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "925a779b-d812-49fb-9d86-727b98ed7f66", "doc_id": "925a779b-d812-49fb-9d86-727b98ed7f66", "ref_doc_id": "925a779b-d812-49fb-9d86-727b98ed7f66"}, "3a27b605-45a0-4bef-902f-c9b3c7171ebc": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1517bbfa-266e-4d8d-a792-78af433ef831", "doc_id": "1517bbfa-266e-4d8d-a792-78af433ef831", "ref_doc_id": "1517bbfa-266e-4d8d-a792-78af433ef831"}, "058bc3c5-2029-4b92-847c-c3f57e1b328c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e163b8cb-7027-49c4-9910-0266381e904d", "doc_id": "e163b8cb-7027-49c4-9910-0266381e904d", "ref_doc_id": "e163b8cb-7027-49c4-9910-0266381e904d"}, "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9d22a53f-ec69-4924-b375-81f49499c45d", "doc_id": "9d22a53f-ec69-4924-b375-81f49499c45d", "ref_doc_id": "9d22a53f-ec69-4924-b375-81f49499c45d"}, "2cd9ecff-8914-42b5-802a-5b28162a87aa": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3550a897-ae49-4ce5-a053-1a0433f522ad", "doc_id": "3550a897-ae49-4ce5-a053-1a0433f522ad", "ref_doc_id": "3550a897-ae49-4ce5-a053-1a0433f522ad"}, "30959e4d-8ce8-4b68-9863-a25703b0bf21": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac", "doc_id": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac", "ref_doc_id": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac"}, "23fac348-3556-4651-936d-955a32b4defa": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e", "doc_id": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e", "ref_doc_id": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e"}, "36bac6f0-91af-4538-83f6-35a0f61e115f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3", "doc_id": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3", "ref_doc_id": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3"}, "34869ab7-7f4a-4116-b78c-8912e9ac80ca": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c", "doc_id": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c", "ref_doc_id": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c"}, "655c55fe-0cc5-482b-9854-4c0d26faa928": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4db0cd75-c068-4b1b-9568-55edcc23e1d1", "doc_id": "4db0cd75-c068-4b1b-9568-55edcc23e1d1", "ref_doc_id": "4db0cd75-c068-4b1b-9568-55edcc23e1d1"}, "1c302ce2-13eb-4f5c-8197-be35d64921e4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "db5bd995-4fd6-4f90-81d8-15d132492d89", "doc_id": "db5bd995-4fd6-4f90-81d8-15d132492d89", "ref_doc_id": "db5bd995-4fd6-4f90-81d8-15d132492d89"}, "f8eee05a-466d-4169-85ef-032419f8c5db": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e", "doc_id": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e", "ref_doc_id": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e"}, "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "94ad5bad-5d79-4900-b224-fcb536f546dc", "doc_id": "94ad5bad-5d79-4900-b224-fcb536f546dc", "ref_doc_id": "94ad5bad-5d79-4900-b224-fcb536f546dc"}, "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9e84d06d-f07c-4287-9eee-91b4347ab105", "doc_id": "9e84d06d-f07c-4287-9eee-91b4347ab105", "ref_doc_id": "9e84d06d-f07c-4287-9eee-91b4347ab105"}, "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "30086c6a-3f81-4256-90c9-76e799e54220", "doc_id": "30086c6a-3f81-4256-90c9-76e799e54220", "ref_doc_id": "30086c6a-3f81-4256-90c9-76e799e54220"}, "d95791c3-d879-4147-aeb6-a448e2e56a23": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "994280d0-881b-4da9-81e8-1b218ece448d", "doc_id": "994280d0-881b-4da9-81e8-1b218ece448d", "ref_doc_id": "994280d0-881b-4da9-81e8-1b218ece448d"}, "6c2e3648-7641-41c1-83cf-2ef654b3e3c4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791", "doc_id": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791", "ref_doc_id": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791"}, "47cdf033-1dfa-4a68-b87b-c3dfae5533f8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "585e7a5f-6ee0-42b5-ae41-d7b682789472", "doc_id": "585e7a5f-6ee0-42b5-ae41-d7b682789472", "ref_doc_id": "585e7a5f-6ee0-42b5-ae41-d7b682789472"}, "9feb8655-b758-44b2-a591-e72e6e041b9e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2f5f5e86-fef9-40f5-be31-b997cebc89fd", "doc_id": "2f5f5e86-fef9-40f5-be31-b997cebc89fd", "ref_doc_id": "2f5f5e86-fef9-40f5-be31-b997cebc89fd"}, "92b6dc3c-4165-4d1c-94c8-c1f6f072408e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3694702a-f07c-4cfe-977d-b63c4305e7aa", "doc_id": "3694702a-f07c-4cfe-977d-b63c4305e7aa", "ref_doc_id": "3694702a-f07c-4cfe-977d-b63c4305e7aa"}, "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ee649dc0-00cd-45b1-86d4-e364661a165a", "doc_id": "ee649dc0-00cd-45b1-86d4-e364661a165a", "ref_doc_id": "ee649dc0-00cd-45b1-86d4-e364661a165a"}, "c8e2752f-412f-40b8-ac12-0c82676020a0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "45f0751f-e74b-409e-92b3-56a5077e7b84", "doc_id": "45f0751f-e74b-409e-92b3-56a5077e7b84", "ref_doc_id": "45f0751f-e74b-409e-92b3-56a5077e7b84"}, "1a7de58f-df68-474a-b536-a5204aea831b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "96147a63-462b-47b6-8b94-ba31bfba59f2", "doc_id": "96147a63-462b-47b6-8b94-ba31bfba59f2", "ref_doc_id": "96147a63-462b-47b6-8b94-ba31bfba59f2"}, "cd1d59b9-b560-4f69-b868-c136d63e29b0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab", "doc_id": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab", "ref_doc_id": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab"}, "7eb61bf6-a6fb-406f-9b98-866c97063e09": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "971eddd0-7c7e-4cbf-9768-2b203a024361", "doc_id": "971eddd0-7c7e-4cbf-9768-2b203a024361", "ref_doc_id": "971eddd0-7c7e-4cbf-9768-2b203a024361"}, "864076b7-ed58-4051-b8b8-ae83d361d1ff": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0c3c8db0-1c9b-462e-8794-9e80ef607487", "doc_id": "0c3c8db0-1c9b-462e-8794-9e80ef607487", "ref_doc_id": "0c3c8db0-1c9b-462e-8794-9e80ef607487"}, "9de99182-6404-45f5-9277-1bca0948ae98": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b9cce625-c085-46ca-94c2-f459b33950a0", "doc_id": "b9cce625-c085-46ca-94c2-f459b33950a0", "ref_doc_id": "b9cce625-c085-46ca-94c2-f459b33950a0"}, "15df1912-ef86-400e-8613-63812935df4c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4065963f-dd8e-4c2d-a224-53e172f185cb", "doc_id": "4065963f-dd8e-4c2d-a224-53e172f185cb", "ref_doc_id": "4065963f-dd8e-4c2d-a224-53e172f185cb"}, "68d47fad-bb4a-44a7-8c63-58050f005f87": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7d1a37d4-2f81-46f8-a045-c3eea542e072", "doc_id": "7d1a37d4-2f81-46f8-a045-c3eea542e072", "ref_doc_id": "7d1a37d4-2f81-46f8-a045-c3eea542e072"}, "6162dc0c-8118-4b94-93ed-b8b693e3f908": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "29d0e92e-2f07-41ff-85a7-366097435880", "doc_id": "29d0e92e-2f07-41ff-85a7-366097435880", "ref_doc_id": "29d0e92e-2f07-41ff-85a7-366097435880"}, "05c70ffb-3451-4aac-9fff-dca65871b819": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "200dbd2c-4feb-430b-a45e-e8815de81a0e", "doc_id": "200dbd2c-4feb-430b-a45e-e8815de81a0e", "ref_doc_id": "200dbd2c-4feb-430b-a45e-e8815de81a0e"}, "89fbf4b9-69e8-4842-9a4f-b22c18d93601": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0a572fee-480b-453e-b39b-d52c1860abf3", "doc_id": "0a572fee-480b-453e-b39b-d52c1860abf3", "ref_doc_id": "0a572fee-480b-453e-b39b-d52c1860abf3"}, "12b52d4e-62a9-485c-9295-ac3c7b7712e4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d", "doc_id": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d", "ref_doc_id": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d"}, "0e310153-ee47-45f3-913e-57ba9f58ad5d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1", "doc_id": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1", "ref_doc_id": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1"}, "83762a91-2b61-4ed1-a937-20c8d4fe6cae": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e", "doc_id": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e", "ref_doc_id": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e"}, "7932423f-0047-496c-86f0-5c4a705fc98a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d", "doc_id": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d", "ref_doc_id": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d"}, "49e57753-554b-4cf6-9f91-eef9976e20a8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8eea9f35-5942-4a12-8b0a-afc11c521132", "doc_id": "8eea9f35-5942-4a12-8b0a-afc11c521132", "ref_doc_id": "8eea9f35-5942-4a12-8b0a-afc11c521132"}, "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "350795e8-f3c0-48bc-be44-dc2db7790d6e", "doc_id": "350795e8-f3c0-48bc-be44-dc2db7790d6e", "ref_doc_id": "350795e8-f3c0-48bc-be44-dc2db7790d6e"}, "1f364fe1-4df5-46a1-95b2-00ea557d74ca": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "aaf37c8c-f9d2-450a-8463-82cedd958758", "doc_id": "aaf37c8c-f9d2-450a-8463-82cedd958758", "ref_doc_id": "aaf37c8c-f9d2-450a-8463-82cedd958758"}, "2e4d3c45-624f-4149-9374-fca2ed641f58": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a3f95be5-00a8-496a-9716-cfaabad3af83", "doc_id": "a3f95be5-00a8-496a-9716-cfaabad3af83", "ref_doc_id": "a3f95be5-00a8-496a-9716-cfaabad3af83"}, "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f23264c4-1c2a-4b5c-ad26-329db3f6e926", "doc_id": "f23264c4-1c2a-4b5c-ad26-329db3f6e926", "ref_doc_id": "f23264c4-1c2a-4b5c-ad26-329db3f6e926"}, "74d3384a-7128-4168-9f8d-47d5cb6dee60": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "98a14f91-efc1-484c-bd1c-168e4f107a8a", "doc_id": "98a14f91-efc1-484c-bd1c-168e4f107a8a", "ref_doc_id": "98a14f91-efc1-484c-bd1c-168e4f107a8a"}, "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1767df8a-429c-4ceb-a2c0-519f13a4207a", "doc_id": "1767df8a-429c-4ceb-a2c0-519f13a4207a", "ref_doc_id": "1767df8a-429c-4ceb-a2c0-519f13a4207a"}, "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4647e943-9fc8-4934-a54a-74c2ec98ed91", "doc_id": "4647e943-9fc8-4934-a54a-74c2ec98ed91", "ref_doc_id": "4647e943-9fc8-4934-a54a-74c2ec98ed91"}, "e9f07882-5921-41b1-883c-0396aaaef7ac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5", "doc_id": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5", "ref_doc_id": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5"}, "df618784-f3bd-49f9-b3b9-88ac69087dc2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d", "doc_id": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d", "ref_doc_id": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d"}, "fc6d620d-8967-4097-ba4b-5b8379b30435": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "56237d75-1153-4f73-a1e1-26b49b72701d", "doc_id": "56237d75-1153-4f73-a1e1-26b49b72701d", "ref_doc_id": "56237d75-1153-4f73-a1e1-26b49b72701d"}, "88d8279d-e0e5-4c63-8c40-03d0daf7cab7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "38bb20f8-99e1-45f1-847c-7043f83b26df", "doc_id": "38bb20f8-99e1-45f1-847c-7043f83b26df", "ref_doc_id": "38bb20f8-99e1-45f1-847c-7043f83b26df"}, "ad557b52-361c-4391-ac61-5bb82b32a98c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1a73fed3-dc5d-4114-a921-be2d877d0e20", "doc_id": "1a73fed3-dc5d-4114-a921-be2d877d0e20", "ref_doc_id": "1a73fed3-dc5d-4114-a921-be2d877d0e20"}, "06721709-3201-4bf4-ae18-7081ae33a6b8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "77b77dce-8938-4eed-8764-5f733b2cdb71", "doc_id": "77b77dce-8938-4eed-8764-5f733b2cdb71", "ref_doc_id": "77b77dce-8938-4eed-8764-5f733b2cdb71"}, "3c193164-9ac6-4c33-84eb-4f619cfc6d78": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a11b618f-9240-4a14-9c60-1cf964a8cdbf", "doc_id": "a11b618f-9240-4a14-9c60-1cf964a8cdbf", "ref_doc_id": "a11b618f-9240-4a14-9c60-1cf964a8cdbf"}, "41fe424f-5356-4081-b566-ba0af32bead2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a4e25329-5188-4bf9-8563-22b56735c8a0", "doc_id": "a4e25329-5188-4bf9-8563-22b56735c8a0", "ref_doc_id": "a4e25329-5188-4bf9-8563-22b56735c8a0"}, "8fe81af3-bafb-49cb-ba50-d5f3bc347131": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4a196e24-5646-402a-9474-530fd0866c44", "doc_id": "4a196e24-5646-402a-9474-530fd0866c44", "ref_doc_id": "4a196e24-5646-402a-9474-530fd0866c44"}, "21ea6e25-467c-4f15-b2a4-6135d6ec3e60": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a13c0e51-2e14-4ff8-b6a6-415120d62b33", "doc_id": "a13c0e51-2e14-4ff8-b6a6-415120d62b33", "ref_doc_id": "a13c0e51-2e14-4ff8-b6a6-415120d62b33"}, "c11bd073-d374-4e7a-8539-38569a04d1ad": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814", "doc_id": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814", "ref_doc_id": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814"}, "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f5420126-9745-42ea-a08b-bdf16577dff4", "doc_id": "f5420126-9745-42ea-a08b-bdf16577dff4", "ref_doc_id": "f5420126-9745-42ea-a08b-bdf16577dff4"}, "7e244ca2-5e29-43b7-8a3c-98549e4d97ed": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "043cf0bf-373b-4e4e-862d-62dea1de594b", "doc_id": "043cf0bf-373b-4e4e-862d-62dea1de594b", "ref_doc_id": "043cf0bf-373b-4e4e-862d-62dea1de594b"}, "39292e60-4e04-403d-9efb-39addde4ee28": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7a59eff3-3aa9-4fac-9d19-e29491007fbb", "doc_id": "7a59eff3-3aa9-4fac-9d19-e29491007fbb", "ref_doc_id": "7a59eff3-3aa9-4fac-9d19-e29491007fbb"}, "5003f6bb-5355-4147-8dc7-b40d9500e93c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a0a807b9-4301-429c-bce9-46250c0647a5", "doc_id": "a0a807b9-4301-429c-bce9-46250c0647a5", "ref_doc_id": "a0a807b9-4301-429c-bce9-46250c0647a5"}, "2b3514d3-df70-4353-a430-c9f44780a089": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "819670e0-6c9a-4836-8666-cd45980f05e7", "doc_id": "819670e0-6c9a-4836-8666-cd45980f05e7", "ref_doc_id": "819670e0-6c9a-4836-8666-cd45980f05e7"}, "6931ad56-a9f8-4e1f-8686-8d827b8c28d3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df", "doc_id": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df", "ref_doc_id": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df"}, "9df6f9ed-1a20-4d07-b419-3a232c53067e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "93bb53c8-930d-46cb-82b2-662c0f732327", "doc_id": "93bb53c8-930d-46cb-82b2-662c0f732327", "ref_doc_id": "93bb53c8-930d-46cb-82b2-662c0f732327"}, "a7f8239c-e6f1-467a-ac29-2e5636515606": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2f42a9cc-2e68-40eb-8472-1449ace5af03", "doc_id": "2f42a9cc-2e68-40eb-8472-1449ace5af03", "ref_doc_id": "2f42a9cc-2e68-40eb-8472-1449ace5af03"}, "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "52040a53-e5ce-452f-9de2-1600f47352df", "doc_id": "52040a53-e5ce-452f-9de2-1600f47352df", "ref_doc_id": "52040a53-e5ce-452f-9de2-1600f47352df"}, "4a6a49bc-91e8-4059-82b4-a5731f18fb81": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14", "doc_id": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14", "ref_doc_id": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14"}, "06c8f1be-09ed-4762-9739-a090b78e3bc0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "33252fd8-1d83-4357-aed8-a15f4322e07b", "doc_id": "33252fd8-1d83-4357-aed8-a15f4322e07b", "ref_doc_id": "33252fd8-1d83-4357-aed8-a15f4322e07b"}, "e517b8e1-15d2-4458-87f4-4dfeb1811716": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6", "doc_id": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6", "ref_doc_id": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6"}, "ff111f55-ae10-45e2-92da-a096318840f2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49", "doc_id": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49", "ref_doc_id": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49"}, "46852915-14f3-4c56-b364-ffec623d1110": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3021f7c1-9ebe-43b0-9452-6db7e6d49216", "doc_id": "3021f7c1-9ebe-43b0-9452-6db7e6d49216", "ref_doc_id": "3021f7c1-9ebe-43b0-9452-6db7e6d49216"}, "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2bfca846-68e1-40ac-9716-7d8d551ae833", "doc_id": "2bfca846-68e1-40ac-9716-7d8d551ae833", "ref_doc_id": "2bfca846-68e1-40ac-9716-7d8d551ae833"}, "25063585-9f14-4c7e-836a-a2956319e633": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca", "doc_id": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca", "ref_doc_id": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca"}, "604f912d-6dba-41cf-ae04-4146618412f1": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a78142c8-9f68-434a-8f7d-64459282a32e", "doc_id": "a78142c8-9f68-434a-8f7d-64459282a32e", "ref_doc_id": "a78142c8-9f68-434a-8f7d-64459282a32e"}, "b27f419a-1eb1-4044-a004-2181c718d9db": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ce1a83e1-ee20-4579-bb8f-b9ecae516863", "doc_id": "ce1a83e1-ee20-4579-bb8f-b9ecae516863", "ref_doc_id": "ce1a83e1-ee20-4579-bb8f-b9ecae516863"}, "2e7b7a46-2077-4163-8fc6-ea5e0116eff7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8356bd9b-ef43-4463-9571-a521a944e9cb", "doc_id": "8356bd9b-ef43-4463-9571-a521a944e9cb", "ref_doc_id": "8356bd9b-ef43-4463-9571-a521a944e9cb"}, "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19", "doc_id": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19", "ref_doc_id": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19"}, "94932e90-bca7-4993-bc81-8c86542dccd1": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "dc9394c0-64bd-49c6-944a-3e8d172218e1", "doc_id": "dc9394c0-64bd-49c6-944a-3e8d172218e1", "ref_doc_id": "dc9394c0-64bd-49c6-944a-3e8d172218e1"}, "692966a7-e54c-4abf-bc2f-c59557e551e7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "70f399f2-2ff6-4259-92cb-bfde88121616", "doc_id": "70f399f2-2ff6-4259-92cb-bfde88121616", "ref_doc_id": "70f399f2-2ff6-4259-92cb-bfde88121616"}, "e5157153-76fb-435d-b2c0-9ecdf6ce1241": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "17bf3916-9433-4a71-b068-b422aa99263c", "doc_id": "17bf3916-9433-4a71-b068-b422aa99263c", "ref_doc_id": "17bf3916-9433-4a71-b068-b422aa99263c"}, "c2e2df9f-8609-44e2-8986-dec7ba509115": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa", "doc_id": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa", "ref_doc_id": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa"}, "c02f556c-e845-4383-aa94-fe08bcb664e3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "439904d7-435f-44df-bea3-fcd9d8bae6aa", "doc_id": "439904d7-435f-44df-bea3-fcd9d8bae6aa", "ref_doc_id": "439904d7-435f-44df-bea3-fcd9d8bae6aa"}, "2407ed10-0410-4965-996e-0daf93ba18a9": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0db2233a-5a0f-438d-b198-cf1cc962ad14", "doc_id": "0db2233a-5a0f-438d-b198-cf1cc962ad14", "ref_doc_id": "0db2233a-5a0f-438d-b198-cf1cc962ad14"}, "ce755bb8-eb14-4a1c-897e-1fddeeaef178": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "25e3aeda-b157-4ee8-8db8-f05c116ef821", "doc_id": "25e3aeda-b157-4ee8-8db8-f05c116ef821", "ref_doc_id": "25e3aeda-b157-4ee8-8db8-f05c116ef821"}, "a96fc25a-3f3e-46aa-84dd-82f6c3847183": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040", "doc_id": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040", "ref_doc_id": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040"}, "5593171c-b3d2-4d7c-85de-7e23b9578622": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7512abb7-f21b-4ccb-9146-67085b74b414", "doc_id": "7512abb7-f21b-4ccb-9146-67085b74b414", "ref_doc_id": "7512abb7-f21b-4ccb-9146-67085b74b414"}, "b16eb01f-efdb-4a30-8dba-5369d9780275": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bca153c1-f76a-4f5c-a384-063b344a6fdf", "doc_id": "bca153c1-f76a-4f5c-a384-063b344a6fdf", "ref_doc_id": "bca153c1-f76a-4f5c-a384-063b344a6fdf"}, "f56de84c-1275-43ef-8612-2b179d6f6374": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "81171af4-919d-4cc6-94eb-db878b7afce7", "doc_id": "81171af4-919d-4cc6-94eb-db878b7afce7", "ref_doc_id": "81171af4-919d-4cc6-94eb-db878b7afce7"}, "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bf2cb67e-6274-470f-93a7-e92a81c9d921", "doc_id": "bf2cb67e-6274-470f-93a7-e92a81c9d921", "ref_doc_id": "bf2cb67e-6274-470f-93a7-e92a81c9d921"}, "c1f1e583-eb55-4df4-8f4b-f567d260900b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4345b23a-d8e4-4600-977a-9364161fe6ba", "doc_id": "4345b23a-d8e4-4600-977a-9364161fe6ba", "ref_doc_id": "4345b23a-d8e4-4600-977a-9364161fe6ba"}, "82829188-ab31-45aa-91e9-7d523c175c66": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d39cf93a-f881-4804-8922-023f2bd8514a", "doc_id": "d39cf93a-f881-4804-8922-023f2bd8514a", "ref_doc_id": "d39cf93a-f881-4804-8922-023f2bd8514a"}, "36a400d2-2290-477c-837b-02475c4b2fbf": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "03e098c5-6137-4b66-8a3c-94af492101ad", "doc_id": "03e098c5-6137-4b66-8a3c-94af492101ad", "ref_doc_id": "03e098c5-6137-4b66-8a3c-94af492101ad"}, "c8623e15-c59c-401d-8078-8912707394c5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "dc825136-ae1e-4706-becc-2e3088e4be4a", "doc_id": "dc825136-ae1e-4706-becc-2e3088e4be4a", "ref_doc_id": "dc825136-ae1e-4706-becc-2e3088e4be4a"}, "8d40faef-053e-4772-aa32-67f33f070223": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53", "doc_id": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53", "ref_doc_id": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53"}, "e1c93542-3556-41e1-a259-89aec374e6ab": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe", "doc_id": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe", "ref_doc_id": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe"}, "5a4eece9-67b5-43df-a81c-2f3c91b9fbce": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "00267259-f81e-4f0d-986b-ae00e970af85", "doc_id": "00267259-f81e-4f0d-986b-ae00e970af85", "ref_doc_id": "00267259-f81e-4f0d-986b-ae00e970af85"}, "033405c9-8636-4dfa-8ee3-4ce39b433530": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e98d606d-7464-4ade-844e-da68623e56b0", "doc_id": "e98d606d-7464-4ade-844e-da68623e56b0", "ref_doc_id": "e98d606d-7464-4ade-844e-da68623e56b0"}, "539d2ce9-35c7-434d-825b-fd7c0df52057": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "82661f84-1ac9-47bd-a521-68a220f2133a", "doc_id": "82661f84-1ac9-47bd-a521-68a220f2133a", "ref_doc_id": "82661f84-1ac9-47bd-a521-68a220f2133a"}, "facc74ad-88ab-4424-8c73-5238bb1dbad7": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "95860c68-a20e-4c62-8a75-5d56d1a21209", "doc_id": "95860c68-a20e-4c62-8a75-5d56d1a21209", "ref_doc_id": "95860c68-a20e-4c62-8a75-5d56d1a21209"}, "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8881a89f-17ba-4098-be8c-9a52ea9634ac", "doc_id": "8881a89f-17ba-4098-be8c-9a52ea9634ac", "ref_doc_id": "8881a89f-17ba-4098-be8c-9a52ea9634ac"}, "250e7d39-44bb-46ee-b0e8-16ae0d439d8e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ea255be4-579d-4684-bc02-342cc391567f", "doc_id": "ea255be4-579d-4684-bc02-342cc391567f", "ref_doc_id": "ea255be4-579d-4684-bc02-342cc391567f"}, "33975052-fe24-499e-a051-aa9a7d5a83e5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ae3b191b-a196-497f-92c4-234c181cdf11", "doc_id": "ae3b191b-a196-497f-92c4-234c181cdf11", "ref_doc_id": "ae3b191b-a196-497f-92c4-234c181cdf11"}, "3660adda-30c8-457f-b96d-c7d302555cb0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "18b66f27-4739-4350-9276-847c3ecacd5f", "doc_id": "18b66f27-4739-4350-9276-847c3ecacd5f", "ref_doc_id": "18b66f27-4739-4350-9276-847c3ecacd5f"}, "3a76b360-9b3b-44fc-b257-8c654892e217": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0", "doc_id": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0", "ref_doc_id": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0"}, "1e7e0852-9143-4d50-ad65-62c25c4d9a09": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "773b3e28-5c02-473f-8ce9-7e73f7a8b373", "doc_id": "773b3e28-5c02-473f-8ce9-7e73f7a8b373", "ref_doc_id": "773b3e28-5c02-473f-8ce9-7e73f7a8b373"}, "6af18d53-c5b3-4f1b-b368-c570bddf9677": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "940cc22b-6433-4369-890e-3450e2d8c7f2", "doc_id": "940cc22b-6433-4369-890e-3450e2d8c7f2", "ref_doc_id": "940cc22b-6433-4369-890e-3450e2d8c7f2"}, "6a666477-1bfa-452f-bad1-682e5993dab0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "81ce1f78-d944-4136-b7d1-453b9768922c", "doc_id": "81ce1f78-d944-4136-b7d1-453b9768922c", "ref_doc_id": "81ce1f78-d944-4136-b7d1-453b9768922c"}, "a07fd493-ee5f-4964-88e0-bb56a446eb61": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ada64a07-acc0-4647-9c86-f31e156b6ea1", "doc_id": "ada64a07-acc0-4647-9c86-f31e156b6ea1", "ref_doc_id": "ada64a07-acc0-4647-9c86-f31e156b6ea1"}, "8ed46f10-7f86-45c1-bef1-178a05b08468": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4", "doc_id": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4", "ref_doc_id": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4"}, "64a43dd8-c4af-47f0-9faa-86d752cceb8f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "89703fb4-6bdf-414c-8013-73a164077950", "doc_id": "89703fb4-6bdf-414c-8013-73a164077950", "ref_doc_id": "89703fb4-6bdf-414c-8013-73a164077950"}, "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9", "doc_id": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9", "ref_doc_id": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9"}, "7e203c21-d2d0-443a-8ed1-f316aac108c5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec", "doc_id": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec", "ref_doc_id": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec"}, "a77e394f-eda1-4b8c-9199-7d2247c9d872": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea", "doc_id": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea", "ref_doc_id": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea"}, "0eed630c-d594-4360-8a84-1ea74e62f0f5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ed780a4d-0a72-475c-bca6-5d65e9a568aa", "doc_id": "ed780a4d-0a72-475c-bca6-5d65e9a568aa", "ref_doc_id": "ed780a4d-0a72-475c-bca6-5d65e9a568aa"}, "829f1387-308e-421c-95ba-caff21e34bd6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a", "doc_id": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a", "ref_doc_id": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a"}, "0c72e829-7c9a-47a6-af31-9fe3543bd78c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a1447816-0a63-4617-baec-c158bc7a73e0", "doc_id": "a1447816-0a63-4617-baec-c158bc7a73e0", "ref_doc_id": "a1447816-0a63-4617-baec-c158bc7a73e0"}, "3473e066-8864-4ea6-b7bf-17c42665b599": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3c57573a-4c54-4c29-998f-ccf231b85e67", "doc_id": "3c57573a-4c54-4c29-998f-ccf231b85e67", "ref_doc_id": "3c57573a-4c54-4c29-998f-ccf231b85e67"}, "4f305c42-d33f-4b8e-bf77-2ea69ace07c8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c", "doc_id": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c", "ref_doc_id": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c"}, "7c42db89-d590-4f93-9be4-b85a62312c04": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1", "doc_id": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1", "ref_doc_id": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1"}, "270348f2-a166-4b96-b28a-2d3bb355e69d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34", "doc_id": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34", "ref_doc_id": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34"}, "5179c470-17ef-44b7-bf30-d724ca8e6a1f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "11d304bd-8210-4438-946c-abb419be8050", "doc_id": "11d304bd-8210-4438-946c-abb419be8050", "ref_doc_id": "11d304bd-8210-4438-946c-abb419be8050"}, "52ee1b52-84d7-4379-b769-db8143089438": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f0e095c9-538f-4504-b5c5-f2b9998d9e63", "doc_id": "f0e095c9-538f-4504-b5c5-f2b9998d9e63", "ref_doc_id": "f0e095c9-538f-4504-b5c5-f2b9998d9e63"}, "a1e179c3-b165-44f2-8a8d-4ee950a281ae": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9", "doc_id": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9", "ref_doc_id": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9"}, "cad669ae-bc96-48f6-86be-a7411388ef8e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "052284ab-4468-410b-a097-37780fb983a3", "doc_id": "052284ab-4468-410b-a097-37780fb983a3", "ref_doc_id": "052284ab-4468-410b-a097-37780fb983a3"}, "b3493286-134f-4c81-a543-24c1f94dee97": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d8396d01-1bbd-4fec-951b-b547a4c01d4d", "doc_id": "d8396d01-1bbd-4fec-951b-b547a4c01d4d", "ref_doc_id": "d8396d01-1bbd-4fec-951b-b547a4c01d4d"}, "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e", "doc_id": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e", "ref_doc_id": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e"}, "0969b5a3-21bb-47da-ae53-9e00bdb2279c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d26d608d-bbca-4822-b7e7-58ad8d907718", "doc_id": "d26d608d-bbca-4822-b7e7-58ad8d907718", "ref_doc_id": "d26d608d-bbca-4822-b7e7-58ad8d907718"}, "433c4723-5242-4c38-8142-e9763b695dd5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3093d9eb-9b8e-4d32-92ad-674e99b34a35", "doc_id": "3093d9eb-9b8e-4d32-92ad-674e99b34a35", "ref_doc_id": "3093d9eb-9b8e-4d32-92ad-674e99b34a35"}, "702aa6c4-d709-4041-97ee-4c6a5c57bce3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e", "doc_id": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e", "ref_doc_id": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e"}, "9f2b3683-b974-4b5b-b968-6e44eb6bb66b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9390e5ef-048c-4731-b84c-d2a3beabc7e4", "doc_id": "9390e5ef-048c-4731-b84c-d2a3beabc7e4", "ref_doc_id": "9390e5ef-048c-4731-b84c-d2a3beabc7e4"}, "05636a71-c471-4479-9045-250d59b4d199": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3", "doc_id": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3", "ref_doc_id": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3"}, "c94bb528-4956-46d5-a4df-e650f74f362b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8", "doc_id": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8", "ref_doc_id": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8"}, "3082a394-1cd7-49c3-b83e-c91ddfda982e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "eaffce81-f1f5-4959-8d60-57953a8e0c10", "doc_id": "eaffce81-f1f5-4959-8d60-57953a8e0c10", "ref_doc_id": "eaffce81-f1f5-4959-8d60-57953a8e0c10"}, "447a6e0c-677f-4539-85ca-5c72307a10ff": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b17a26e9-b2b6-47a3-bde0-995ce61663c5", "doc_id": "b17a26e9-b2b6-47a3-bde0-995ce61663c5", "ref_doc_id": "b17a26e9-b2b6-47a3-bde0-995ce61663c5"}, "9d43bf2f-9b6d-4c9b-a597-06f9ca591520": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "261c2441-4165-45c2-a10a-3cd23dac57ba", "doc_id": "261c2441-4165-45c2-a10a-3cd23dac57ba", "ref_doc_id": "261c2441-4165-45c2-a10a-3cd23dac57ba"}, "2505f174-98d2-49b4-93f6-9c62039cb6b5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "04d71240-fcf2-4072-9d74-694f4bec8996", "doc_id": "04d71240-fcf2-4072-9d74-694f4bec8996", "ref_doc_id": "04d71240-fcf2-4072-9d74-694f4bec8996"}, "a88df31e-35ea-45b1-b79f-9a4ec0846da3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb", "doc_id": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb", "ref_doc_id": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb"}, "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5528953a-e1a8-4009-b345-c4876ad330b8", "doc_id": "5528953a-e1a8-4009-b345-c4876ad330b8", "ref_doc_id": "5528953a-e1a8-4009-b345-c4876ad330b8"}, "903c910e-a6de-4f76-817c-0dec155e870a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926", "doc_id": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926", "ref_doc_id": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926"}, "5866a289-b3da-4d3c-a001-59a4006b5bf9": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "89b86a7c-90a7-4d81-80d7-411815e888c7", "doc_id": "89b86a7c-90a7-4d81-80d7-411815e888c7", "ref_doc_id": "89b86a7c-90a7-4d81-80d7-411815e888c7"}, "87f2d885-6a0d-4836-b824-ecdb1829b746": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9e841c0b-7318-4c90-ad4c-24737d861c6c", "doc_id": "9e841c0b-7318-4c90-ad4c-24737d861c6c", "ref_doc_id": "9e841c0b-7318-4c90-ad4c-24737d861c6c"}, "c0af9c06-941b-4a98-a980-1dcec14868c8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2e5295ae-4d3a-419c-860f-80f5629a27b5", "doc_id": "2e5295ae-4d3a-419c-860f-80f5629a27b5", "ref_doc_id": "2e5295ae-4d3a-419c-860f-80f5629a27b5"}, "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bc47c26b-5a4a-4652-a406-7606309d4f59", "doc_id": "bc47c26b-5a4a-4652-a406-7606309d4f59", "ref_doc_id": "bc47c26b-5a4a-4652-a406-7606309d4f59"}, "e4eb8e3c-4116-4d81-890a-a1934ed06eb0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d", "doc_id": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d", "ref_doc_id": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d"}, "78e994e5-dbda-4960-9a58-8a398eec44ef": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32", "doc_id": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32", "ref_doc_id": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32"}, "7dc088d8-125c-41e5-bd34-8ebbf828e918": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "820d78fb-3334-4b41-b8eb-1717ee427bb7", "doc_id": "820d78fb-3334-4b41-b8eb-1717ee427bb7", "ref_doc_id": "820d78fb-3334-4b41-b8eb-1717ee427bb7"}, "4a936b4a-b9fb-455e-9162-319f1b8112be": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "ref_doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123"}, "7549afef-c458-4c82-8149-e115c99cd800": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "ref_doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123"}, "2c71e182-997d-4d7e-834f-b7dc138e7830": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3ecf90ab-94be-44d6-9343-605105ac497e", "doc_id": "3ecf90ab-94be-44d6-9343-605105ac497e", "ref_doc_id": "3ecf90ab-94be-44d6-9343-605105ac497e"}, "6901c4f7-aa1c-4fd9-94e9-085fab8deae4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e29a0a17-0ea8-4972-a9a4-c569e6365701", "doc_id": "e29a0a17-0ea8-4972-a9a4-c569e6365701", "ref_doc_id": "e29a0a17-0ea8-4972-a9a4-c569e6365701"}, "c78e873b-ee41-49a4-90f5-b0d8887422c3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa", "doc_id": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa", "ref_doc_id": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa"}, "797a48ee-2ac2-4e05-9bb0-8e4c54754eac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "abb61571-5049-463c-b4d9-e8a6cdf330eb", "doc_id": "abb61571-5049-463c-b4d9-e8a6cdf330eb", "ref_doc_id": "abb61571-5049-463c-b4d9-e8a6cdf330eb"}, "c676458f-04d8-4041-9ea1-c947010dff53": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3b959379-13d3-4c66-820e-ef6ae5e54595", "doc_id": "3b959379-13d3-4c66-820e-ef6ae5e54595", "ref_doc_id": "3b959379-13d3-4c66-820e-ef6ae5e54595"}, "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "18a09b06-e824-4435-93db-f2259404c708", "doc_id": "18a09b06-e824-4435-93db-f2259404c708", "ref_doc_id": "18a09b06-e824-4435-93db-f2259404c708"}, "5631ea16-89c4-4cd1-a971-2e1bd07dee2d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2", "doc_id": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2", "ref_doc_id": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2"}, "f16298e7-2f76-42f7-9d44-c1fab304825b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "26c7eb2c-6ac1-4f87-af66-939fa469d08b", "doc_id": "26c7eb2c-6ac1-4f87-af66-939fa469d08b", "ref_doc_id": "26c7eb2c-6ac1-4f87-af66-939fa469d08b"}, "372e09b4-a41b-491f-a954-717248f64974": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b22c7013-5aeb-4343-861e-30e36c76d314", "doc_id": "b22c7013-5aeb-4343-861e-30e36c76d314", "ref_doc_id": "b22c7013-5aeb-4343-861e-30e36c76d314"}, "ca3e349b-fcaa-4872-9016-4f32585cd66c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "58f2d3ed-b7f1-4c04-843c-70a0e6384767", "doc_id": "58f2d3ed-b7f1-4c04-843c-70a0e6384767", "ref_doc_id": "58f2d3ed-b7f1-4c04-843c-70a0e6384767"}, "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f5146bfd-dd6d-48c9-9108-5d654c5aa181", "doc_id": "f5146bfd-dd6d-48c9-9108-5d654c5aa181", "ref_doc_id": "f5146bfd-dd6d-48c9-9108-5d654c5aa181"}, "c01cad1e-baf0-4514-b6ab-3df8dc973827": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d547d570-592d-4cb0-a51f-c504d544c191", "doc_id": "d547d570-592d-4cb0-a51f-c504d544c191", "ref_doc_id": "d547d570-592d-4cb0-a51f-c504d544c191"}, "870c3230-bcd3-49bb-a774-c3c265fad517": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "aac2e449-4cee-4fbd-9697-f93360b76e19", "doc_id": "aac2e449-4cee-4fbd-9697-f93360b76e19", "ref_doc_id": "aac2e449-4cee-4fbd-9697-f93360b76e19"}, "2c315702-c74a-425f-95cf-aa7f21ba6275": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378", "doc_id": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378", "ref_doc_id": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378"}, "9698d911-4ec1-4061-8ec4-c9de86f0ec0b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7a9ee7fb-d475-48d4-8862-cafba70d52f6", "doc_id": "7a9ee7fb-d475-48d4-8862-cafba70d52f6", "ref_doc_id": "7a9ee7fb-d475-48d4-8862-cafba70d52f6"}, "2c94d49d-17af-41e4-9621-7b5e6450b367": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120", "doc_id": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120", "ref_doc_id": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120"}, "6dd6e451-5c6d-4da8-91e6-5b809cbb2260": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "1b44faef-8bcd-4009-b5b8-dcdccb43b671", "doc_id": "1b44faef-8bcd-4009-b5b8-dcdccb43b671", "ref_doc_id": "1b44faef-8bcd-4009-b5b8-dcdccb43b671"}, "0d614f08-4ea9-4e7f-9251-b35cf32549e5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fd7af22f-541c-4da0-be81-fac44d754150", "doc_id": "fd7af22f-541c-4da0-be81-fac44d754150", "ref_doc_id": "fd7af22f-541c-4da0-be81-fac44d754150"}, "b8fe2fb5-e262-498e-a07d-05ad188e6b6e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6126b206-1c15-44f6-8d50-00b6ccccb844", "doc_id": "6126b206-1c15-44f6-8d50-00b6ccccb844", "ref_doc_id": "6126b206-1c15-44f6-8d50-00b6ccccb844"}, "d9f10a91-8e5f-4f4d-8f87-2af269a66b92": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "94f7738b-dbba-4421-b9f8-e30b407d68c4", "doc_id": "94f7738b-dbba-4421-b9f8-e30b407d68c4", "ref_doc_id": "94f7738b-dbba-4421-b9f8-e30b407d68c4"}, "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d380bb2c-5c9c-4fae-8701-85992edebf36", "doc_id": "d380bb2c-5c9c-4fae-8701-85992edebf36", "ref_doc_id": "d380bb2c-5c9c-4fae-8701-85992edebf36"}, "bef3b984-31fd-42b0-b39d-8f2fe64fb443": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2a7bde72-319e-4edc-8264-af5c78526b40", "doc_id": "2a7bde72-319e-4edc-8264-af5c78526b40", "ref_doc_id": "2a7bde72-319e-4edc-8264-af5c78526b40"}, "befeab50-a804-46f1-8722-bc31dc6d52e4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac", "doc_id": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac", "ref_doc_id": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac"}, "b67796a6-a9cf-4173-a287-4adff8df6d4b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53", "doc_id": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53", "ref_doc_id": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53"}, "67b7b9b7-4890-40cc-8c10-e546a2826cba": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5c7600e2-0aaa-476d-b0a9-287364ac394f", "doc_id": "5c7600e2-0aaa-476d-b0a9-287364ac394f", "ref_doc_id": "5c7600e2-0aaa-476d-b0a9-287364ac394f"}, "2375910a-0684-4ff8-955d-d8b8b43535d1": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "116ab9b4-3b96-4b46-a6e0-881bb74204b2", "doc_id": "116ab9b4-3b96-4b46-a6e0-881bb74204b2", "ref_doc_id": "116ab9b4-3b96-4b46-a6e0-881bb74204b2"}, "5ee4322d-3a2d-4bc5-9108-537d571eccc6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "17a7f0db-4838-4fe7-ac91-84a8a186aa47", "doc_id": "17a7f0db-4838-4fe7-ac91-84a8a186aa47", "ref_doc_id": "17a7f0db-4838-4fe7-ac91-84a8a186aa47"}, "59c4c9ed-f963-4760-93b6-dd7c3a97bb54": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8", "doc_id": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8", "ref_doc_id": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8"}, "67cfb681-888c-4ffc-82f5-f02734835b54": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a", "doc_id": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a", "ref_doc_id": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a"}, "8698b735-ee66-4b51-8f50-cdb723ee0c48": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b5109216-4f8b-483d-bc75-09ee3d9a3d67", "doc_id": "b5109216-4f8b-483d-bc75-09ee3d9a3d67", "ref_doc_id": "b5109216-4f8b-483d-bc75-09ee3d9a3d67"}, "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bbd22630-8de7-4267-adf3-b6aa5c88fab2", "doc_id": "bbd22630-8de7-4267-adf3-b6aa5c88fab2", "ref_doc_id": "bbd22630-8de7-4267-adf3-b6aa5c88fab2"}, "d2f6bd59-18bb-493f-9220-a47f52e372fe": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "aef4bcc2-7867-4303-8aad-2e2a449d5adc", "doc_id": "aef4bcc2-7867-4303-8aad-2e2a449d5adc", "ref_doc_id": "aef4bcc2-7867-4303-8aad-2e2a449d5adc"}, "778d0172-21c2-42ce-9fd0-d50ddecb9b57": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7", "doc_id": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7", "ref_doc_id": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7"}, "63186939-9531-4e5d-82d5-3fcf84655976": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "578c62b5-566e-4b6a-9aba-2a47bc4d940b", "doc_id": "578c62b5-566e-4b6a-9aba-2a47bc4d940b", "ref_doc_id": "578c62b5-566e-4b6a-9aba-2a47bc4d940b"}, "23fda1f4-7289-49ec-a59f-37a7a607cba0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9b4076de-f213-4e18-8c5d-fd15e2b33525", "doc_id": "9b4076de-f213-4e18-8c5d-fd15e2b33525", "ref_doc_id": "9b4076de-f213-4e18-8c5d-fd15e2b33525"}, "3fb2305d-b12e-48c4-a356-1600c347320c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992", "doc_id": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992", "ref_doc_id": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992"}, "f56976c9-3bd6-444b-9dca-3bf42084a562": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4581fd35-6736-41bc-a784-30ec63c244de", "doc_id": "4581fd35-6736-41bc-a784-30ec63c244de", "ref_doc_id": "4581fd35-6736-41bc-a784-30ec63c244de"}, "95828a01-1119-4b71-946a-c8883f2c5504": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0234af90-0173-4e66-91a9-2619cf5419fe", "doc_id": "0234af90-0173-4e66-91a9-2619cf5419fe", "ref_doc_id": "0234af90-0173-4e66-91a9-2619cf5419fe"}, "27e555a1-e899-4710-b03c-4fb670054999": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c4871e12-b268-4e58-8beb-c71f7240f4d8", "doc_id": "c4871e12-b268-4e58-8beb-c71f7240f4d8", "ref_doc_id": "c4871e12-b268-4e58-8beb-c71f7240f4d8"}, "772005e7-7276-43a5-b3ba-42c7290f0c36": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1", "doc_id": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1", "ref_doc_id": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1"}, "f69522d9-1b62-4924-a6ec-c4aa281058da": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6255259a-15ae-46af-9cff-b8c237f91979", "doc_id": "6255259a-15ae-46af-9cff-b8c237f91979", "ref_doc_id": "6255259a-15ae-46af-9cff-b8c237f91979"}, "ddef57cf-090c-4585-aa1d-49e2a1e6748b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "51358090-0de4-472b-8270-27418c9f50f1", "doc_id": "51358090-0de4-472b-8270-27418c9f50f1", "ref_doc_id": "51358090-0de4-472b-8270-27418c9f50f1"}, "50c21c11-745d-4649-9456-0b291bf29d19": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "24a26843-fa30-4ebf-b858-3a378bde9613", "doc_id": "24a26843-fa30-4ebf-b858-3a378bde9613", "ref_doc_id": "24a26843-fa30-4ebf-b858-3a378bde9613"}, "23b7a614-0705-4541-905b-6ef766812a2a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3117244e-bff6-4c32-b6d3-b8c25474aa23", "doc_id": "3117244e-bff6-4c32-b6d3-b8c25474aa23", "ref_doc_id": "3117244e-bff6-4c32-b6d3-b8c25474aa23"}, "fec6b74a-2339-487b-bd6f-71fdec66b791": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fce78388-527a-4613-b394-acf00394ed64", "doc_id": "fce78388-527a-4613-b394-acf00394ed64", "ref_doc_id": "fce78388-527a-4613-b394-acf00394ed64"}, "bead822c-bd11-4d9e-a811-2e377bf32cc0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "02f8ebfe-5498-4788-add6-913a59d7f92b", "doc_id": "02f8ebfe-5498-4788-add6-913a59d7f92b", "ref_doc_id": "02f8ebfe-5498-4788-add6-913a59d7f92b"}, "7ac58128-4d5a-455e-a473-58d1e7958af6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "61379e76-3b4f-46ca-aa98-5fff36e5049a", "doc_id": "61379e76-3b4f-46ca-aa98-5fff36e5049a", "ref_doc_id": "61379e76-3b4f-46ca-aa98-5fff36e5049a"}, "0314465c-4399-4d05-87d5-4cedf3250956": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c0934b85-61ce-4bfb-807d-d698d29af649", "doc_id": "c0934b85-61ce-4bfb-807d-d698d29af649", "ref_doc_id": "c0934b85-61ce-4bfb-807d-d698d29af649"}, "80067795-fb75-46ce-bf5a-61015161aa5e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b772fbd8-ea12-4ef4-8cad-a1f31386851f", "doc_id": "b772fbd8-ea12-4ef4-8cad-a1f31386851f", "ref_doc_id": "b772fbd8-ea12-4ef4-8cad-a1f31386851f"}, "16606eae-35ef-4e6f-97a5-f80ad56958ee": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89", "doc_id": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89", "ref_doc_id": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89"}, "da93de1b-e8c4-4faf-9df5-0304aa74c9c0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "db065740-e8df-4964-8479-19a07336f6a6", "doc_id": "db065740-e8df-4964-8479-19a07336f6a6", "ref_doc_id": "db065740-e8df-4964-8479-19a07336f6a6"}, "5472cd78-c030-4815-a2f1-33245f14f018": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "ref_doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244"}, "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "ref_doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244"}, "40fa34fe-7285-477b-a1c6-5cb2550a84fc": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6f93e1d4-5464-4054-8830-2ac07c97ef87", "doc_id": "6f93e1d4-5464-4054-8830-2ac07c97ef87", "ref_doc_id": "6f93e1d4-5464-4054-8830-2ac07c97ef87"}, "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb", "doc_id": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb", "ref_doc_id": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb"}, "b69caf6b-5590-4518-a963-d1998db8440a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1", "doc_id": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1", "ref_doc_id": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1"}, "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6b7a9e53-5661-441a-832b-75efd2b7b287", "doc_id": "6b7a9e53-5661-441a-832b-75efd2b7b287", "ref_doc_id": "6b7a9e53-5661-441a-832b-75efd2b7b287"}, "f1790d38-4768-4282-acf3-32ea03ee760f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "47229daf-7ed7-4391-a744-ad1691bc03a9", "doc_id": "47229daf-7ed7-4391-a744-ad1691bc03a9", "ref_doc_id": "47229daf-7ed7-4391-a744-ad1691bc03a9"}, "4663c078-0471-4f17-b704-37a847b3578a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1", "doc_id": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1", "ref_doc_id": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1"}, "ee00678d-0531-43a6-b4ee-24d47f7b854c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c134065a-14f0-482b-a69d-91baacb5d494", "doc_id": "c134065a-14f0-482b-a69d-91baacb5d494", "ref_doc_id": "c134065a-14f0-482b-a69d-91baacb5d494"}, "40002650-dc78-4ca1-a842-1d2820a2c9bc": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "de3d45e9-9ea1-4f75-949e-e30b0052d539", "doc_id": "de3d45e9-9ea1-4f75-949e-e30b0052d539", "ref_doc_id": "de3d45e9-9ea1-4f75-949e-e30b0052d539"}, "9687aeb0-7763-4074-a0a8-c49058fb0ffb": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e42c5557-69f6-40e3-8c11-66ae89fd0456", "doc_id": "e42c5557-69f6-40e3-8c11-66ae89fd0456", "ref_doc_id": "e42c5557-69f6-40e3-8c11-66ae89fd0456"}, "2abc0d0b-6666-4b3e-983e-36e820323e08": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f087d8d5-c0f0-4662-b436-3ad78cd14624", "doc_id": "f087d8d5-c0f0-4662-b436-3ad78cd14624", "ref_doc_id": "f087d8d5-c0f0-4662-b436-3ad78cd14624"}, "c914503e-2bc4-431a-941b-5ecf283e5a35": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9562c403-41d1-416a-9246-94e21f9337bf", "doc_id": "9562c403-41d1-416a-9246-94e21f9337bf", "ref_doc_id": "9562c403-41d1-416a-9246-94e21f9337bf"}, "283ad8c4-c5d4-4113-9c45-6e42828c2bd6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "30a8e840-ff81-4b29-a293-91a421431712", "doc_id": "30a8e840-ff81-4b29-a293-91a421431712", "ref_doc_id": "30a8e840-ff81-4b29-a293-91a421431712"}, "12fc93de-6a8b-45de-ae87-9e824744e5ac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "863a67ad-1fbe-4efb-9174-0e58326f16f8", "doc_id": "863a67ad-1fbe-4efb-9174-0e58326f16f8", "ref_doc_id": "863a67ad-1fbe-4efb-9174-0e58326f16f8"}, "fe6d77c4-5744-4c45-bfff-03e9475499a4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "a0321fdb-df92-44b3-bb11-95a8a7f699fb", "doc_id": "a0321fdb-df92-44b3-bb11-95a8a7f699fb", "ref_doc_id": "a0321fdb-df92-44b3-bb11-95a8a7f699fb"}, "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e3af0884-3e2a-4ed5-be90-99c0249959de", "doc_id": "e3af0884-3e2a-4ed5-be90-99c0249959de", "ref_doc_id": "e3af0884-3e2a-4ed5-be90-99c0249959de"}, "4431616b-6726-4488-a27a-09e0aad7a27a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2856558a-faed-4f27-885c-73094f210748", "doc_id": "2856558a-faed-4f27-885c-73094f210748", "ref_doc_id": "2856558a-faed-4f27-885c-73094f210748"}, "5795a666-d615-463a-82d5-56ceeac30476": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5", "doc_id": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5", "ref_doc_id": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5"}, "85527e92-eb41-458f-91a6-751735c62a23": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4cf5cf0a-71e7-492e-839c-fe733e123ca6", "doc_id": "4cf5cf0a-71e7-492e-839c-fe733e123ca6", "ref_doc_id": "4cf5cf0a-71e7-492e-839c-fe733e123ca6"}, "129acce9-c3ca-4527-a94c-a1bd7bd08e33": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f7f383d3-70de-4969-ab49-14d84a7275a5", "doc_id": "f7f383d3-70de-4969-ab49-14d84a7275a5", "ref_doc_id": "f7f383d3-70de-4969-ab49-14d84a7275a5"}, "b051c646-22dc-44c8-823f-dea41902b9e0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b393549d-e6ae-4799-acb2-1b3d290b4de9", "doc_id": "b393549d-e6ae-4799-acb2-1b3d290b4de9", "ref_doc_id": "b393549d-e6ae-4799-acb2-1b3d290b4de9"}, "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "57ee30fb-db22-4b07-be22-1d6760eaed09", "doc_id": "57ee30fb-db22-4b07-be22-1d6760eaed09", "ref_doc_id": "57ee30fb-db22-4b07-be22-1d6760eaed09"}, "1e846a4d-efb9-4bb0-a805-b24da1fd6101": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5b716c2d-7dee-48d8-8294-bf942bde1c5a", "doc_id": "5b716c2d-7dee-48d8-8294-bf942bde1c5a", "ref_doc_id": "5b716c2d-7dee-48d8-8294-bf942bde1c5a"}, "c5de2a2e-604d-44d7-9122-f1e00ef9720b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e", "doc_id": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e", "ref_doc_id": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e"}, "cd36e93f-1652-488b-8342-eb7c92b5ce6e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "f0ba834a-0f18-4a90-844b-b459fee5f3ef", "doc_id": "f0ba834a-0f18-4a90-844b-b459fee5f3ef", "ref_doc_id": "f0ba834a-0f18-4a90-844b-b459fee5f3ef"}, "d3f390f8-3dbb-458e-8d82-9c370e27ebca": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e53792bc-88da-4a55-931e-697331331fa0", "doc_id": "e53792bc-88da-4a55-931e-697331331fa0", "ref_doc_id": "e53792bc-88da-4a55-931e-697331331fa0"}, "dcd995cc-58e9-4129-b3c8-9a603995d898": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e", "doc_id": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e", "ref_doc_id": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e"}, "9fc08083-9edc-4125-8b2c-7bd929dd5715": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "256ee66a-bf3e-46c1-8433-1230e80c4df6", "doc_id": "256ee66a-bf3e-46c1-8433-1230e80c4df6", "ref_doc_id": "256ee66a-bf3e-46c1-8433-1230e80c4df6"}, "8bd35713-c665-4e9f-9747-a0e1b9042d52": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "62db627e-707b-42ee-8ed1-bc3b95a5226b", "doc_id": "62db627e-707b-42ee-8ed1-bc3b95a5226b", "ref_doc_id": "62db627e-707b-42ee-8ed1-bc3b95a5226b"}, "be5507b1-4d59-4284-84de-5e0ba0888c5e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d", "doc_id": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d", "ref_doc_id": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d"}, "24ee9238-b514-455f-a71e-f5eedaef6996": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4", "doc_id": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4", "ref_doc_id": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4"}, "70541635-e91b-4d03-ad84-9cd710d8d48e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159", "doc_id": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159", "ref_doc_id": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159"}, "1331adc2-e36c-4df6-8b61-c8f12fedbf36": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "477228f3-473d-497a-8bcf-8fe22f733d3d", "doc_id": "477228f3-473d-497a-8bcf-8fe22f733d3d", "ref_doc_id": "477228f3-473d-497a-8bcf-8fe22f733d3d"}, "c85152fe-d901-4aea-9c99-3feb491c997a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ee2f96ea-ae01-491e-aa4b-1df5caee714b", "doc_id": "ee2f96ea-ae01-491e-aa4b-1df5caee714b", "ref_doc_id": "ee2f96ea-ae01-491e-aa4b-1df5caee714b"}, "be39d582-2687-4dc2-ab1a-811fd8a7f64e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502", "doc_id": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502", "ref_doc_id": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502"}, "6de89262-d55e-4917-ba9b-944c56f0494a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "19b2f7c6-149e-4008-9ca2-4d21443b7491", "doc_id": "19b2f7c6-149e-4008-9ca2-4d21443b7491", "ref_doc_id": "19b2f7c6-149e-4008-9ca2-4d21443b7491"}, "cf1beb93-e72c-4e87-9196-8a06ca2540ab": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e", "doc_id": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e", "ref_doc_id": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e"}, "53b5eeef-535d-450e-a8d3-6b96ae833a9d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a", "doc_id": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a", "ref_doc_id": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a"}, "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "961c6b2e-0554-4794-9539-48df93aeeef2", "doc_id": "961c6b2e-0554-4794-9539-48df93aeeef2", "ref_doc_id": "961c6b2e-0554-4794-9539-48df93aeeef2"}, "20b1648d-1010-4845-982a-f3aeb7cb9df9": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "072db9fa-5f01-4a27-a171-020fe76f3b37", "doc_id": "072db9fa-5f01-4a27-a171-020fe76f3b37", "ref_doc_id": "072db9fa-5f01-4a27-a171-020fe76f3b37"}, "66619eac-0a60-42a9-b2c5-f7e4d638dc44": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1", "doc_id": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1", "ref_doc_id": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1"}, "1c786628-34fb-42fe-9f8b-5f20c447803b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a", "doc_id": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a", "ref_doc_id": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a"}, "e67e559b-ac83-4048-aa23-7fb4cf7634fd": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "0c956911-fdd3-4a8c-9660-127fbf17afa6", "doc_id": "0c956911-fdd3-4a8c-9660-127fbf17afa6", "ref_doc_id": "0c956911-fdd3-4a8c-9660-127fbf17afa6"}, "8deac4ba-b6d2-4fdf-9a0c-3193562a049c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4", "doc_id": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4", "ref_doc_id": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4"}, "82e247ec-c751-43cf-856c-4b9305678284": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "d4d759c8-7b5d-4493-9d65-0cd70589639f", "doc_id": "d4d759c8-7b5d-4493-9d65-0cd70589639f", "ref_doc_id": "d4d759c8-7b5d-4493-9d65-0cd70589639f"}, "10e5d866-558a-499d-ad57-57208363e8bb": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe", "doc_id": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe", "ref_doc_id": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe"}, "e666b745-fe5b-4470-ba64-7ecd573acbb6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70", "doc_id": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70", "ref_doc_id": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70"}, "6a0a74b4-f508-4b7b-ae58-3336e57e9c16": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb", "doc_id": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb", "ref_doc_id": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb"}, "9215469c-3a99-45c3-8979-b22e4d10d0d3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b", "doc_id": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b", "ref_doc_id": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b"}, "9e067826-57fa-43bb-8dea-4f30569f03a6": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d", "doc_id": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d", "ref_doc_id": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d"}, "ecd31646-bf80-42af-99f3-2788fe59ea15": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "93099d44-6852-4806-85ab-84d654489dbd", "doc_id": "93099d44-6852-4806-85ab-84d654489dbd", "ref_doc_id": "93099d44-6852-4806-85ab-84d654489dbd"}, "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ced7c12d-3792-403e-9d14-2a51a9448fc0", "doc_id": "ced7c12d-3792-403e-9d14-2a51a9448fc0", "ref_doc_id": "ced7c12d-3792-403e-9d14-2a51a9448fc0"}, "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe", "doc_id": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe", "ref_doc_id": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe"}, "a643d7bb-5024-4ccd-8e46-623292978454": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93", "doc_id": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93", "ref_doc_id": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93"}, "86a1c76e-c2ee-4953-a619-dfbbfd9beb39": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f", "doc_id": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f", "ref_doc_id": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f"}, "e36834c7-2a8f-4483-8ec0-413205b1dea5": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "e508df84-9264-40c2-aa82-82315bc442e7", "doc_id": "e508df84-9264-40c2-aa82-82315bc442e7", "ref_doc_id": "e508df84-9264-40c2-aa82-82315bc442e7"}, "532697b7-ec72-41ad-9dbe-e1ed57b7917b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd", "doc_id": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd", "ref_doc_id": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd"}, "e963a28d-552a-45f4-9ec2-76023245927a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "36d2a341-899f-4f94-95cd-a952609cd2fd", "doc_id": "36d2a341-899f-4f94-95cd-a952609cd2fd", "ref_doc_id": "36d2a341-899f-4f94-95cd-a952609cd2fd"}, "9ce827fd-a136-4195-b8df-3d30e7dc210f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "ac141999-281a-4017-85b2-b11e038c1dea", "doc_id": "ac141999-281a-4017-85b2-b11e038c1dea", "ref_doc_id": "ac141999-281a-4017-85b2-b11e038c1dea"}, "fe29e92a-4453-400e-ada7-86ec463cda92": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f", "doc_id": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f", "ref_doc_id": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f"}, "a884050d-6aec-46e2-a38e-6bfda8af1a07": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "02b98683-ef2d-4966-97be-17ff4f2b7b69", "doc_id": "02b98683-ef2d-4966-97be-17ff4f2b7b69", "ref_doc_id": "02b98683-ef2d-4966-97be-17ff4f2b7b69"}, "9bbca8e2-87bb-4617-8884-95f1278f1c91": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "c9d33a04-b771-4d2c-85cd-362cb664dee1", "doc_id": "c9d33a04-b771-4d2c-85cd-362cb664dee1", "ref_doc_id": "c9d33a04-b771-4d2c-85cd-362cb664dee1"}, "acf6b4c2-7e01-429f-b754-672e90a9d718": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "549786b0-3e20-4282-bed8-c66faacfbd49", "doc_id": "549786b0-3e20-4282-bed8-c66faacfbd49", "ref_doc_id": "549786b0-3e20-4282-bed8-c66faacfbd49"}, "771c144d-788b-499e-b0c2-2d480b3c1010": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fa485721-feeb-4f9f-ab71-d875f2ff3697", "doc_id": "fa485721-feeb-4f9f-ab71-d875f2ff3697", "ref_doc_id": "fa485721-feeb-4f9f-ab71-d875f2ff3697"}, "8973f5b0-27f3-4e88-8941-d7b428473a1a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "4e039f46-7ab6-421a-9f50-e53e055f829e", "doc_id": "4e039f46-7ab6-421a-9f50-e53e055f829e", "ref_doc_id": "4e039f46-7ab6-421a-9f50-e53e055f829e"}, "807b4fcc-439e-49c0-b9d8-3ba3f605786f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "fc223eae-d408-4c09-965d-c425ba47b8d3", "doc_id": "fc223eae-d408-4c09-965d-c425ba47b8d3", "ref_doc_id": "fc223eae-d408-4c09-965d-c425ba47b8d3"}, "fa435881-3edb-41ca-acfd-f41d536ae202": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7441cec3-8b9b-479e-9148-647085f97e6b", "doc_id": "7441cec3-8b9b-479e-9148-647085f97e6b", "ref_doc_id": "7441cec3-8b9b-479e-9148-647085f97e6b"}, "6763610a-3b1b-4443-a79a-56b39abf7aac": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f", "doc_id": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f", "ref_doc_id": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f"}, "4112b27d-de6a-44de-bf7f-47e0a4cabf15": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07", "doc_id": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07", "ref_doc_id": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07"}, "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7630527c-681c-4aea-8cb1-80301045f7ce", "doc_id": "7630527c-681c-4aea-8cb1-80301045f7ce", "ref_doc_id": "7630527c-681c-4aea-8cb1-80301045f7ce"}, "89e6af8e-8503-4b1d-8405-5c284128fd3e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "7d7982d9-15e8-48c8-be68-6432be3c9679", "doc_id": "7d7982d9-15e8-48c8-be68-6432be3c9679", "ref_doc_id": "7d7982d9-15e8-48c8-be68-6432be3c9679"}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219/docstore.json b/opentrons-ai-server/api/storage/index/v219/docstore.json new file mode 100644 index 00000000000..eaf3a954cdc --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"09cba188-ceee-4056-8a92-de844661956a": {"doc_hash": "ce0ce91d874683490e8606d4a8786aa59a5aac5a640940d845edfe2dc757d1ad"}, "449c8982-fb23-4b3b-9681-751ea59bb2ef": {"doc_hash": "d40a6e2fe7e8a1ef4021599f6738d172e41335b9a38ef8b95f098f64059f2a60"}, "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4": {"doc_hash": "f0a92518531a2e1ac14b5eaa3ff634a62cf7aeb0e23138efa795da45a599dd85"}, "69beef59-0178-41eb-8e57-52ccdde86122": {"doc_hash": "c211ad0a1e57d978c29cfeef5372e607a1be92134d91c1a788519d94b02c403e"}, "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc": {"doc_hash": "2cbc83b59bb470ec34dab026906198c2f12c1a96db9a8c39f512609be92d1eeb"}, "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e": {"doc_hash": "fa1b0394703a350aba22359f3581e818c6f9ef4a25ddfbc0767508c35c36d88e"}, "c24b38c9-894b-4216-8b1a-fe5fd15934fb": {"doc_hash": "e2918c80b4d5776957aa69b325b7e20bea288b4634c13ffcae2cca4758001a8d"}, "28764aff-36df-4485-870a-cfac824afee1": {"doc_hash": "35b525ff038f30eb3d938b62de5030ae3495a169b5d3de9cfc8b2a5aaf49c671"}, "c6b1e57f-77b1-497b-9874-90299e01ccd5": {"doc_hash": "4426906adefd16e8dccdba7f010a3a204ab45e0e2eb59b0d5360cc7ed01bb887"}, "7b483c59-04ae-4352-b811-dd69cd19b494": {"doc_hash": "e2ac1681764360b4a2ac7d610c0cea2deba50c1cfeb75d853df01c9be00557d1"}, "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c": {"doc_hash": "931b4c13289c6ad03b3bfc1bdd4641c789cfd32a68238828a01f134fdbc82c7f"}, "bc634b57-3daf-4592-965d-12d8393abab9": {"doc_hash": "5b7e46a46d3974e259879ca65c69f70271e6841692173c3ea3c749c93938a8a9"}, "254a5442-b132-44db-84ab-b6bcb087dcf8": {"doc_hash": "73993a4fda38234bd9684123b8b2671725fb2a7d52f80ea3dcb4dcd807ed0d3f"}, "abc08179-04a0-4568-b866-f54c8a658e48": {"doc_hash": "5862c845be23e2e0a7b8eb934475021f4133066b849e48e9abd048d7a0406290"}, "c9ce5806-ae57-4637-b33a-c20fc502fd13": {"doc_hash": "f54a129073d4f6899cbeb2a60e5987154c43f31e1710773942a31effdfcd40ec"}, "fe58e97c-e0eb-4e79-bdb6-74824af9b86c": {"doc_hash": "c14c9f75e5eb82da61b4f8eb7316b88e552753df9759e0b4e8c1af32b6ce2664"}, "b5be87b0-8eff-4406-8a71-e2abe07e82d3": {"doc_hash": "98d27faee3f986a752aad0b873ea1c585cfe32e9d66a086476fa4356f192da88"}, "6667925f-23c9-4290-80a7-1e8bd16eb65f": {"doc_hash": "e99951937760b0fe894270ad5c4ec4d5a8025c22cc754ee086377c051e08abb5"}, "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6": {"doc_hash": "1ef83e8e0cf8b0f3e25db8b922112d0758e9bb41471e8f56a2bd38aba4dcfdc3"}, "8ab749d2-d917-43f0-8d28-71379d61d6e4": {"doc_hash": "b03046c1a3f1a7e220b67080f8fd03cf2ed0e5d305d89f5247a2d725d60bc863"}, "a5852ce2-2220-465e-a945-c13a45057bf6": {"doc_hash": "a88835ed0b96ab0f2d97b269cbc45a5bc8a7256568eef1c8aed63c26c4487eeb"}, "02f878f0-725a-4de5-9f2c-2a0672c3ac52": {"doc_hash": "7ce0029822df7ee5a71322de1fdbebe2937376495d4f7e0200026f836785d256"}, "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459": {"doc_hash": "8e6bc3e644aa2be170dd0c08d7e302dadeff26170a5e8d23f5ae9668e6c4848b"}, "3ec800f4-7df8-4008-8b04-a61332e6aa42": {"doc_hash": "12be9f79ec647a2b1ea0a848ae39214e476afb0d45273390b02d453e036b7590"}, "ab40a505-36f4-43e6-a150-cd85db235e67": {"doc_hash": "22fcf985ed6f63eaee0cc33bc3e63c245ecabd0ef072a906a44f164d8bcb9294"}, "833dfd3f-1aea-4752-9f16-81636b443cd7": {"doc_hash": "65c5b204ba5cda40bc1e5bd6f49e4b06ecfcabb5e1efe0fa27b01a391c058280"}, "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa": {"doc_hash": "1fe3364c7b9010c61597fb2cfcd384da5f4c566f89a22f86869c5c5017d79ed8"}, "87768311-dda0-4891-892c-f70a3d6d74df": {"doc_hash": "c26524945a15c1f51e7f286413b7327a55547e0dcaa6b2bc441535cf065ab368"}, "1932d374-b325-488f-88ac-9b6c15ed46ce": {"doc_hash": "31e847e26fa0ca51328e3beba466e45dd7a0fdfdf5d3367585f6244ba49cdabd"}, "f7151b5c-15a6-483c-a65f-1a273be9cf45": {"doc_hash": "2747cccd2a8fe3d128dfadcc20aee6e6749966c6c3891b64926ed3f5868bad67"}, "5544be45-71a1-4200-891e-f3c0589ad98a": {"doc_hash": "1123a18705ea907c51641eb62489e8ab669088226f699e25608ab9a666871370"}, "ab11c7e5-042d-4dae-93ad-922ffd496201": {"doc_hash": "bbf1666bd383024342bcb19356ed7c9da676ff08d756511085b12b3c287c35dd"}, "ee844663-0f37-46bc-8e6e-04d87d9974b3": {"doc_hash": "19deb2343a7b27803b006dd0f4e8fbd466a269fc94544f7a0038d372f9d09c34"}, "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee": {"doc_hash": "199280ae1c3718552fa4366ea4e22c8d36fab6500b67963112d958e0c1a60897"}, "2a765986-cb5c-483c-b423-2953f033b681": {"doc_hash": "593cf857e5b8ec57313fe4a65fa8d599a4f5862c0f7ce9d740a33dd384a360e5"}, "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851": {"doc_hash": "79c03319a16ba1ab8e61d2e75c1329f0c2f19e4274ed8cdc1c71a54031118204"}, "e186910d-316a-4d76-8b72-0297597744ee": {"doc_hash": "d6834cf2401d2d3b771035059ee2b8208b309e1589db8858d85b5ac5abc8176c"}, "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06": {"doc_hash": "62376d76e0f3957cbec1a99e1d32d127f89a7c853194d1808c39aafbc5200ff9"}, "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064": {"doc_hash": "a7d01001a0b9d6a3202a7438a7037983600945cfac8bd91659f66ad368bde55c"}, "56da6737-1dee-46bc-b3d0-90e13a697962": {"doc_hash": "0d5c2cef3a5c88fd6261ed1fe2eb272a394ba41b5a9c9e12b7754d14eb329853"}, "bcb6f3dd-3022-4d6a-8264-1dd9321e710a": {"doc_hash": "b6a4e0c761808e5e26c9d0094a8ea18579cb4d35cc89355f68f35971dcec447c"}, "002b7e66-87f2-48b2-a83c-dad60727f3bc": {"doc_hash": "15e5a60726baeb3fe413d4d21ef0061fc232b993f5efaf358a2231c5a1793eb4"}, "b30154d4-ed08-4bbf-b471-ae13a0be4ed3": {"doc_hash": "b38854abaa0e478f5ffe1516e924c5856fa88574480f10af86de00c08b23322a"}, "a4e9e8ce-b526-4687-86c7-aa46c892e55f": {"doc_hash": "bb1f20afe77869174c935c33739ee562c5c055f3c7993f074aef0d8453e53dea"}, "929822da-fa3e-4d25-b523-db06a02797f4": {"doc_hash": "62c038c45868013d56827fb920c0d4f3b72f7a8ffaf802c11f2313ef0a5a0dc0"}, "98da37bf-9477-4f50-acd0-8018c43a06bc": {"doc_hash": "0f71bf6eaaaee2982b4dabaa837fca099ec61818f54d35d87c382255ef3ad4e8"}, "a0144f9d-4c3f-43e2-8a2c-51239d365bb3": {"doc_hash": "09c3741d54d36b653852f727b954a39eccb5afb1b393859d83d480bbc0a16e00"}, "6f343a13-6d93-4a4f-a07d-17234e8972a2": {"doc_hash": "35dd88536824971cd85fe318f8722b662cfb7261211d46c544de2cd8797f111e"}, "86d6342d-b6c6-44b1-abd6-09e10f17b87d": {"doc_hash": "9cbe4c6aec18aec6615ffd91a160c243e83fa37bf564cfe12b3bef4a42033c5e"}, "925a779b-d812-49fb-9d86-727b98ed7f66": {"doc_hash": "6aea4a71cb1243db4fe44697c6f810f4e0a297ed99582d968167bd74018a0d25"}, "1517bbfa-266e-4d8d-a792-78af433ef831": {"doc_hash": "3045daf9f0f45665010e1010ce1dd771f921f63541f8aaa5686bf02eada9ce62"}, "e163b8cb-7027-49c4-9910-0266381e904d": {"doc_hash": "d5e5e8e6c88483ae0a261caf04d40f1e0ac0db7ad88234d596b6a1b77e0c15ba"}, "9d22a53f-ec69-4924-b375-81f49499c45d": {"doc_hash": "63f71589e365732265a7cb2f413388f09296956d3a2355f229c0c5305e1fcab8"}, "3550a897-ae49-4ce5-a053-1a0433f522ad": {"doc_hash": "83626f7e68c07c796d74eaa07cb48a23e171daf7b9bb06019d078a0d82c24b60"}, "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac": {"doc_hash": "1bdeef6b8af642a50c7451f80cadb60150b89c6011bcb454b1b0586e04f92762"}, "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e": {"doc_hash": "043ff2853c2aa686ede47d6695058b2a985cd458e665542401a45bc59c6f0c87"}, "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3": {"doc_hash": "5c915b062bdd2614172272973ee13237479b22dcc5a05f76142fd91f10feb15b"}, "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c": {"doc_hash": "b7eb6afee4557ffefdeaa176eeedf1eabcdf412fb1717740d021ea56863bf105"}, "4db0cd75-c068-4b1b-9568-55edcc23e1d1": {"doc_hash": "1e5d2f1b6245d4ab214eb8d4faf5b20f90712816daab17e61acc95a876f3c861"}, "db5bd995-4fd6-4f90-81d8-15d132492d89": {"doc_hash": "2e9e84e3aef1b98ef3fc35c626186163322ec16085cc9633a3d64842735ddb73"}, "3c5a26f3-84fa-4d50-ac01-1ad780986f5e": {"doc_hash": "389903c20f6d702e3dfd883cde3e39407876d3d7f8c60d6b33e6a55b7b3f7f50"}, "94ad5bad-5d79-4900-b224-fcb536f546dc": {"doc_hash": "72486ce21315df7050bdefdcea46e312148a8cb7867e0b912e918cfbc7b54ae1"}, "9e84d06d-f07c-4287-9eee-91b4347ab105": {"doc_hash": "60c90f9f7266332912a35c7b69234c0b47ab776517eb3ac4664f23aa42fbbce4"}, "30086c6a-3f81-4256-90c9-76e799e54220": {"doc_hash": "87aaba39f0a509bb6d121aecb3e6c1cc0d4fb8d4de253827fc2eea7bfc495113"}, "994280d0-881b-4da9-81e8-1b218ece448d": {"doc_hash": "3398bba65edcf85f7683d91d89728705658445969d10673bfe2f56868b45ac4c"}, "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791": {"doc_hash": "479056b59ebf75b56d5c5cfa5fa2c3386de699adddd0eb1545a76bac61f7a8b6"}, "585e7a5f-6ee0-42b5-ae41-d7b682789472": {"doc_hash": "f97243f25015101f6661dea6344e8cd1d557623e7a8d3dbd575d2e8cc2dff2d5"}, "2f5f5e86-fef9-40f5-be31-b997cebc89fd": {"doc_hash": "6cdfb6400a6982c9725f415f5c46a1c038b5fe0ab2ce1fbe2d9767488228e1aa"}, "3694702a-f07c-4cfe-977d-b63c4305e7aa": {"doc_hash": "9185daf03957eab227291157ccd8ad6f1d87088002280375d1ab1cc661b9cb76"}, "ee649dc0-00cd-45b1-86d4-e364661a165a": {"doc_hash": "4eaf5128b51a1889d1d7cf13625b8d2d6460db0abf6c9aaf0a3c264e5a32c15d"}, "45f0751f-e74b-409e-92b3-56a5077e7b84": {"doc_hash": "35f1348528a62d675ec9a7ba71b2b72a912ed4af7d546b7391e04b158014c5ad"}, "96147a63-462b-47b6-8b94-ba31bfba59f2": {"doc_hash": "a64a4a1f309fe2547e246a895139d4a1dfda3a6ba0bce0de55344d0214c1b9b9"}, "510d409f-a6fd-4c3c-8e37-7a70347ea8ab": {"doc_hash": "6b0e8654bc834513db011863168c95fc4127f5b4fa69013acab3b5312f32cf91"}, "971eddd0-7c7e-4cbf-9768-2b203a024361": {"doc_hash": "15443386df975c54ccee3095123a57432515f6318f75dae82769b30bef7955ba"}, "0c3c8db0-1c9b-462e-8794-9e80ef607487": {"doc_hash": "f3d7c7d905a00cd26dc8583af72bdeb47fbccfd7e1fe9305e60a21b724627770"}, "b9cce625-c085-46ca-94c2-f459b33950a0": {"doc_hash": "c135ec09c21ea7d8286d148b55aa7af5127d2db66bc274adc5e6d6d35220d5ab"}, "4065963f-dd8e-4c2d-a224-53e172f185cb": {"doc_hash": "58874fa0aa74e6c0a9b7822ba24302d086be185b96132d7c7bbd8352fb161923"}, "7d1a37d4-2f81-46f8-a045-c3eea542e072": {"doc_hash": "f4aedc750c66e7c296cf2880a6c50056afcf5cc5e92dba42115578df95677dc1"}, "29d0e92e-2f07-41ff-85a7-366097435880": {"doc_hash": "9582fbdec3949d3413c39a2497daf8d86aa0ca4fe7f98a7498ad0f81e33e4fec"}, "200dbd2c-4feb-430b-a45e-e8815de81a0e": {"doc_hash": "a20e93244ea18385bbdcf409f597d8b8492c2effdfc34218c1498b600f50063a"}, "0a572fee-480b-453e-b39b-d52c1860abf3": {"doc_hash": "6341a686c16a2489f84831dc2e72f74453c204e5878210e0aecebd0b1224dfe5"}, "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d": {"doc_hash": "4b745bcad616c9c35797d1179e173bfd7d8e991da9d7db35f64d5c3edde1118f"}, "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1": {"doc_hash": "cf88bb859d868a125b3b3ab2735bbe52ab818b178f63bad3240510b9e8b911c3"}, "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e": {"doc_hash": "fb584b0a406fa683a75a032ebc932873bbe80b1ed0abbe3db9e61d4aabfed3b5"}, "69ce5701-aef9-4dca-8308-a1f0d8dfb17d": {"doc_hash": "bbebd830e826048162b3bccc5539c5586a96dd9cdf2992a7908868a549f18214"}, "8eea9f35-5942-4a12-8b0a-afc11c521132": {"doc_hash": "7e3e2a03e381eddc727b66d03508b4a5786116403ae6430ba841671a6d14376c"}, "350795e8-f3c0-48bc-be44-dc2db7790d6e": {"doc_hash": "880974f08e03f9e16d18942c04740b50add26857ff9fc43d07f4a01ce6046f01"}, "aaf37c8c-f9d2-450a-8463-82cedd958758": {"doc_hash": "5e4c80dd6aabfbbd7ecb2c45e70688e5f1b9c15fd59615ef592a0b3b7e7f05d2"}, "a3f95be5-00a8-496a-9716-cfaabad3af83": {"doc_hash": "a1b231993928f0ea0ffb61c158debd741f2a3206d85391f29c4a32696adb0018"}, "f23264c4-1c2a-4b5c-ad26-329db3f6e926": {"doc_hash": "8a2f80363cfdfd9f4d053e27fe88109173b61311bf37570185de5eee62a0e2b7"}, "98a14f91-efc1-484c-bd1c-168e4f107a8a": {"doc_hash": "5db158f0595964986d8d15e86963a3fbb45619cbd8f4283f448a0989835414c0"}, "1767df8a-429c-4ceb-a2c0-519f13a4207a": {"doc_hash": "a66df8d679379368e33ac72b7eb4e9add8f8da95ca669948ae3be88b4735c226"}, "4647e943-9fc8-4934-a54a-74c2ec98ed91": {"doc_hash": "71a123ec41e7ee3cea76eb2536d2f2f33414744e7a6e9f91756c0c9fdfc2e9be"}, "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5": {"doc_hash": "7b96fe3ef8f1d367c711efbc84c76c078263f7c9bbc1ef0dd375d8b2fc351568"}, "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d": {"doc_hash": "dbfcc543e6a37cc3a033715e1d41fad2314a3a9a6cfde6b143aa86fcdfd64302"}, "56237d75-1153-4f73-a1e1-26b49b72701d": {"doc_hash": "5396210009090198b108e1bd793ddb17f1d90bc3a79acb4c83cb9b0152317bda"}, "38bb20f8-99e1-45f1-847c-7043f83b26df": {"doc_hash": "8f5961548944655e639ea9e08524f6070b589e8501d6679be2a7c46c8efb651b"}, "1a73fed3-dc5d-4114-a921-be2d877d0e20": {"doc_hash": "d020d7aa2f44602684362c5b33bacdca2ef1792a1c4b8309663274483516f177"}, "77b77dce-8938-4eed-8764-5f733b2cdb71": {"doc_hash": "5cfcebc387678bcd3c609a9b8a863f84ef62616e8e56e6591015c8de48527034"}, "a11b618f-9240-4a14-9c60-1cf964a8cdbf": {"doc_hash": "e86b65d040a2b689507713f25143f14c89d26bf87f33a0d82ef9298530f9c8d8"}, "a4e25329-5188-4bf9-8563-22b56735c8a0": {"doc_hash": "91408bcb2452f7edd92a40be02b91d0a3635c5006ec50c24cdc011ab1a85431c"}, "4a196e24-5646-402a-9474-530fd0866c44": {"doc_hash": "50095c1062d4959a70ee51e612fe3241dfee43d43e2252de46e1456be8f744c1"}, "a13c0e51-2e14-4ff8-b6a6-415120d62b33": {"doc_hash": "e4ada5ed3ba494669cb3ce0d9170d40c0b81df4529ad150329f2b80b9cb23370"}, "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814": {"doc_hash": "0332e6cc358b4f28c6da1bcfd2c11611619ad63fe770d3dcbc135f28b17e8edb"}, "f5420126-9745-42ea-a08b-bdf16577dff4": {"doc_hash": "342a4674eec7d69614dfa9f2077a023a347f1ac052100f20bd3e9b63a6b898a1"}, "043cf0bf-373b-4e4e-862d-62dea1de594b": {"doc_hash": "3a925b5c62db6686028e9fd2f1f747251438ff854d8ac438dd02a368e423f095"}, "7a59eff3-3aa9-4fac-9d19-e29491007fbb": {"doc_hash": "4acfee3a8a6410e1c372b9a03d6aeab20bbd8c5db5137f6350a17d59b452ecdd"}, "a0a807b9-4301-429c-bce9-46250c0647a5": {"doc_hash": "419a5de63206a8fbba015f16e70cb1828d3fb75a510e6e413ed8e2cfa835ab9c"}, "819670e0-6c9a-4836-8666-cd45980f05e7": {"doc_hash": "7e1c1709ac29f58ea1092a7d247cc51ba6830d6def8f963c7727885d334666f2"}, "5dda650a-ff1a-426c-ae7d-a62ff7cb64df": {"doc_hash": "d7a35be43eddeea5e42f48b0ed4793bfcba477d9130e388fafde7a45b2d2dc4e"}, "93bb53c8-930d-46cb-82b2-662c0f732327": {"doc_hash": "1d58a4e3b7973b184526fa17e9bd38f29738dd1f48cdd2d5401501ef596399e2"}, "2f42a9cc-2e68-40eb-8472-1449ace5af03": {"doc_hash": "5a86823b909c8c5355df25b6c1ad71e817c7d4a97c3a70b126d7ea0018335671"}, "52040a53-e5ce-452f-9de2-1600f47352df": {"doc_hash": "3af614a584003647d31bc33ccc24679f4ecfa3506a11f42b34b5f30c6129f001"}, "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14": {"doc_hash": "f2ee7c4c76a909aacc4e148391b5e8fde28617ff3752649ec25591e401e2dcca"}, "33252fd8-1d83-4357-aed8-a15f4322e07b": {"doc_hash": "138412707e4268cd8a913d6aa5492c05e035dd8a357f1bc4e97c8d5028fdd9e6"}, "c6c5aeb9-2930-4daa-9468-dc09ca99beb6": {"doc_hash": "c3b13a382da28f4d69b05d0e9febcf76aee676f062028f22ea6a1155805dfb39"}, "13d4320a-ce49-44a3-acf9-6e6c5f67ae49": {"doc_hash": "d8922bb9ce97a7b4c49612a35823fae064f5103e2725cf901c90037cd1791e34"}, "3021f7c1-9ebe-43b0-9452-6db7e6d49216": {"doc_hash": "09b60e3767dffa4a8ef6960aa2370430bddb9a1c781db1dfe5fc1040ddd754be"}, "2bfca846-68e1-40ac-9716-7d8d551ae833": {"doc_hash": "9a9f2fe394dccc623fe4fe06713637df1420eb00cafaecc1b423a87e9dcce502"}, "0e4922f2-517b-4c9c-b1a8-7ca10adadaca": {"doc_hash": "9c46be85b0258e61997481b8bc9bef57b32fd1d290fc559d717ea17111db446d"}, "a78142c8-9f68-434a-8f7d-64459282a32e": {"doc_hash": "6d93ecc84b3e460feb9721ca86bf3145b5ada9e2ed742f984d79bdebe9dd3bf9"}, "ce1a83e1-ee20-4579-bb8f-b9ecae516863": {"doc_hash": "c771c56244431816d2120650e0db2b0e65871139d4cb00ad469d2c650808a773"}, "8356bd9b-ef43-4463-9571-a521a944e9cb": {"doc_hash": "291cd8cab6878f4e0e9a1708654388dd2a22c17b603fd49ee8f62aa724f1d4ca"}, "da1e6936-4451-4b4e-bdce-d4b96f7dfb19": {"doc_hash": "dd3f6678850be941f27068d6bd6c30ff0acac707148e3d9340ba8bf3aabe3a8b"}, "dc9394c0-64bd-49c6-944a-3e8d172218e1": {"doc_hash": "cf034ec8e3ea4e1a2030997499999ad1af2b89586479eeb4ea37251f62458474"}, "70f399f2-2ff6-4259-92cb-bfde88121616": {"doc_hash": "9c74d57aa294120a59bb8e2cd0d0680035906d235744f3fc4c004a9bfeb89cbc"}, "17bf3916-9433-4a71-b068-b422aa99263c": {"doc_hash": "1cb9af02affb3a8a943aaebec7bf67b26bde604d6f0ffc1646fe1d66bd7171e0"}, "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa": {"doc_hash": "df2a00ac20eb3dbcd278aaf7eef281b1b73c3622a300a6451748131494c70dea"}, "439904d7-435f-44df-bea3-fcd9d8bae6aa": {"doc_hash": "065a584ca41ca0ad71d3092e91638977ef66c739adf49b4fbc43715fc515e0d2"}, "0db2233a-5a0f-438d-b198-cf1cc962ad14": {"doc_hash": "ffffa0fab48f16ec4f516b84c01f893738e07f4d65b9c8c78dcbd24881d37377"}, "25e3aeda-b157-4ee8-8db8-f05c116ef821": {"doc_hash": "0c375b145b9ca88af03fe9edfb5abec2712cf25fb2ca77a2860237003296825e"}, "07de5e2f-27b5-4fce-9875-ad2fe9ca8040": {"doc_hash": "9e4357cc69eefe5e9e47be4bc221704c681f4cd24c327bbc6b1d2a81c9284596"}, "7512abb7-f21b-4ccb-9146-67085b74b414": {"doc_hash": "39dcee15b80282fe1ad74b8285207e728e10007f2945ecf7d13350cfac7127df"}, "bca153c1-f76a-4f5c-a384-063b344a6fdf": {"doc_hash": "1ce61db871904f9a14a1eac402520846e564668b0aea64e667af4d9d29b1183a"}, "81171af4-919d-4cc6-94eb-db878b7afce7": {"doc_hash": "f99c8b398a264b2fb8a4d07b5b45c04c5cd74354ed251b43f6ffd0888a37899c"}, "bf2cb67e-6274-470f-93a7-e92a81c9d921": {"doc_hash": "c666cff1d81db6bd7ac4b8f92460255921eef0aa3dc83417da9ee1fd9b8445b6"}, "4345b23a-d8e4-4600-977a-9364161fe6ba": {"doc_hash": "a95f13c5eb84646eab899e1522fac0bd608d3d17ce672a148696798a5a3ae743"}, "d39cf93a-f881-4804-8922-023f2bd8514a": {"doc_hash": "33fa8634a8d8c5802bc56d5899c6368f1ea79ed642816e82faaf4104f0b90a6c"}, "03e098c5-6137-4b66-8a3c-94af492101ad": {"doc_hash": "d2e2cf4401c80159c8b57ec6f09f04ff8ae0cad69613328193ea78ed7aab46a1"}, "dc825136-ae1e-4706-becc-2e3088e4be4a": {"doc_hash": "b3511f10852655aeb4a71348c25515eb485e979854f73d17afecb155d602baee"}, "4fe7801c-ffcf-4b4d-a934-cb8e73926d53": {"doc_hash": "bbb51d87f4b7f1dc6adea80da6151bc28f2ed9b528dc35e6dedfb7271890876a"}, "b894252c-f3b8-405c-bf4d-3dc5cbb999fe": {"doc_hash": "e587af23f7d992a8b2f9cda9d2cb4d035c4f5412724122a38d96491caad8bd7f"}, "00267259-f81e-4f0d-986b-ae00e970af85": {"doc_hash": "464e7cdd81b94e1b69e111b7be652adcadc8c111360393a3d375284acc16458d"}, "e98d606d-7464-4ade-844e-da68623e56b0": {"doc_hash": "877dbd39188fa7357cecb1226c76efa549d75e3056b9ede21f2ce67d740c13da"}, "82661f84-1ac9-47bd-a521-68a220f2133a": {"doc_hash": "b66470805ee91a48084fdc9a284c63ee591ad80b3b8d24cfd0049954fe3ea9c4"}, "95860c68-a20e-4c62-8a75-5d56d1a21209": {"doc_hash": "8287ef948c736e5d74c4cf92754297783e0324a28fce122754c51fee1a9c0d13"}, "8881a89f-17ba-4098-be8c-9a52ea9634ac": {"doc_hash": "e01e02515da807e74f74b2e9409693fe8b6af6cc84c91dbd40c644ba512d56d1"}, "ea255be4-579d-4684-bc02-342cc391567f": {"doc_hash": "07117289c1683e763aa3679837e5e451f58bc0f386b2c4fd4d2aab77c7eb77a2"}, "ae3b191b-a196-497f-92c4-234c181cdf11": {"doc_hash": "74249c5ae4d42408b86d5bbe219ebf90feb737d2740fc9788044bfa1960bc6ae"}, "18b66f27-4739-4350-9276-847c3ecacd5f": {"doc_hash": "426f10d6f08b70d978ce114215c7c160ac1f5bf81892b0041f69b909a82058ae"}, "a1927e7a-1095-4bce-9cd7-0fd7fe294de0": {"doc_hash": "5fc51dea206b6558b6a97401ff6fddf2b552852b95b3dba11d0d5513b7e38768"}, "773b3e28-5c02-473f-8ce9-7e73f7a8b373": {"doc_hash": "69a2305db9e0b29972bfb694d440dae103258f05c80c8deeb53bc58834e7593d"}, "940cc22b-6433-4369-890e-3450e2d8c7f2": {"doc_hash": "33d039305df78235f8a232838dc57349c196b1993cd9b758330d7560e9ffa27b"}, "81ce1f78-d944-4136-b7d1-453b9768922c": {"doc_hash": "a3e636ad8fffe6ea3de58f1a529f618b20f6d941bbe489c3660ca9aa87b232f3"}, "ada64a07-acc0-4647-9c86-f31e156b6ea1": {"doc_hash": "a0a8f6a95bae571266d3795804652aa189dedbf3cdb3b25365601bcfac2ace03"}, "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4": {"doc_hash": "e74fd6704e43dc5ee7083931645c769c8b92ddfd1e12051cd7c74ce1aaebed52"}, "89703fb4-6bdf-414c-8013-73a164077950": {"doc_hash": "befa4c45768ecc7be9cffedf6de31642040267c5f99a8a5f8a8ec5371e825429"}, "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9": {"doc_hash": "d23286d2bd414eaf84d6eafb6fe1ad31fa264e92f9484b4fda760cfdd2afc99d"}, "c403f04e-4ba6-4d1b-9214-fa6e66e333ec": {"doc_hash": "1c31aaf0aee1f768adf226039f02780bee27f8fb786b396d47e4488c12dc2157"}, "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea": {"doc_hash": "c7143f2c29e363907ddba36c8c3e94010450d615e2a092a17a0fdf457ab4f661"}, "ed780a4d-0a72-475c-bca6-5d65e9a568aa": {"doc_hash": "0c8463d4ade31ec112086fcd077b6fda7272a31baf3263b71eb49673b724903a"}, "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a": {"doc_hash": "c513d4b4a4f4b86f83e5f398e14813d4573e27c0642f6643a1971ffccdbd985b"}, "a1447816-0a63-4617-baec-c158bc7a73e0": {"doc_hash": "4e304754dee0adccce803ad21fc959cfedccfae6fa22609a1297a26411715d3b"}, "3c57573a-4c54-4c29-998f-ccf231b85e67": {"doc_hash": "bab509493a86437db32e61923509441570c29010fa2f6ddcc85c872cc3cd8ee3"}, "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c": {"doc_hash": "9e52a64662722c901f70f0a1ce3acab559c3f806b3fc12bfd6aca0e54571cd41"}, "b18ae7df-672a-4908-b9b8-f40dc4fce3e1": {"doc_hash": "0047cf4952cd107a34d1263953ea52f57adfa77dd1625f7af2362c8acd69a7fa"}, "72b26e51-20f6-4f10-9d3f-ab26c95a7d34": {"doc_hash": "f4cfb3180de47d5b28d89009942c6382a3c555e6729a9acfc50c49e2539c5335"}, "11d304bd-8210-4438-946c-abb419be8050": {"doc_hash": "9360fd99be43376200a12f219b379d7e9f738dcdf98036d0fa9e587344cbfe53"}, "f0e095c9-538f-4504-b5c5-f2b9998d9e63": {"doc_hash": "a9cbf37f022a514ad1d0defa86926871fe2588e23e79b307d51f480bad1754a3"}, "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9": {"doc_hash": "ca19f2aea1c1aa4ea86aa679e313e617fdd9fb551bf9a7d77a223dd58735e9fe"}, "052284ab-4468-410b-a097-37780fb983a3": {"doc_hash": "345d9f26b354568268a2ef632da71ce4170e7b8ea534b2f6353dfffd5561c563"}, "d8396d01-1bbd-4fec-951b-b547a4c01d4d": {"doc_hash": "e82b8718e9f5e5c7721f5731e1c32be94b16fc28adb1a5023f34ad5f948aa88d"}, "f9a70f5b-3de7-4eda-8061-709ec79a9a8e": {"doc_hash": "bd1e7b15202fac804c8eab7c737ba968871224c2a1e68dcd34fd847e5b9622e6"}, "d26d608d-bbca-4822-b7e7-58ad8d907718": {"doc_hash": "515e86ae5b0176c1f15d3101b078e147c6efefdaee0121c9e5ffea4367207cc1"}, "3093d9eb-9b8e-4d32-92ad-674e99b34a35": {"doc_hash": "5294015ea2566c801130c1a8300add5265bfa9e2fa99837e9fc049cb147a7b56"}, "e20ab5cb-398d-4e61-86f1-d54f0268ad4e": {"doc_hash": "83faafd1304e6bd3ea59a8e076f5eeff930b91f574e55a69379cb685ba460b12"}, "9390e5ef-048c-4731-b84c-d2a3beabc7e4": {"doc_hash": "e20f0d84819b89b41f8232811a08e68bfb3fdeedda74f375b9c04b15ea7b2076"}, "ffdc5973-3a35-4f93-a241-fd70a1aaaac3": {"doc_hash": "845ae382f444be8a2c66aa181159ace9a09a5de685724c9991a46c67428ea261"}, "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8": {"doc_hash": "f758a645f34d3b5bb33885df5d3b0583c6f190e9db1b75e70f5bc6c8bb6a32a8"}, "eaffce81-f1f5-4959-8d60-57953a8e0c10": {"doc_hash": "c0c18b1651cefa89a8abdcbc8e0da3e7dec7e4ec01e9dbbae1399d34cbec41cc"}, "b17a26e9-b2b6-47a3-bde0-995ce61663c5": {"doc_hash": "31446b7bdab3fbbcf160cbc8b32a5f9f0fe9d82cb3c099d126a28c147127bca7"}, "261c2441-4165-45c2-a10a-3cd23dac57ba": {"doc_hash": "034959cd06d759faa16ad613c69e918e2d5dca5d04eee8ae1fcb35d4b327a4dc"}, "04d71240-fcf2-4072-9d74-694f4bec8996": {"doc_hash": "9c1412e57a5e45810656f5a02ae79ba82b957a68f7dff436305bab7ed184bda4"}, "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb": {"doc_hash": "13e71b6847b4bfc0e3ff48cb80a2b76509f68fb966a9a287165e00cec0f8d19d"}, "5528953a-e1a8-4009-b345-c4876ad330b8": {"doc_hash": "07e766e37a2c0198deab56116578e6fdf4f829d89488101a348241d7e2ab010a"}, "07a7c1c7-e2f3-4eb6-854c-1eae21b78926": {"doc_hash": "9f7e3afb525497ec77eff904ccab8c295b5af26a2cd7eaff61aef9c59659fc50"}, "89b86a7c-90a7-4d81-80d7-411815e888c7": {"doc_hash": "d7c54d25cb042c1fd541dca7ed7642c9d8ac12cd012a311859169c6f7efcc02b"}, "9e841c0b-7318-4c90-ad4c-24737d861c6c": {"doc_hash": "9a0fdd25319428583d388453802e338683afb20dd691d91b793929afe24dde71"}, "2e5295ae-4d3a-419c-860f-80f5629a27b5": {"doc_hash": "02c02fe1d918274a391c4b43bb839a8e6c26cc8843e2cc187c63d61b46d82a1e"}, "bc47c26b-5a4a-4652-a406-7606309d4f59": {"doc_hash": "27890aee1d12a1dbb025fcd210ab1085e0712f00999dd72a6f06b65fbc2016d0"}, "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d": {"doc_hash": "f30635f636342bdce5323b7e4c17dfa185ef255b086b2c8d5ecdbea218b595d9"}, "cf47c818-12ee-44d4-a5aa-d5e525c1fa32": {"doc_hash": "a28ed691a6f7eecaead7491d0524396561622c8c568e71e26e4345ad5d0a8d8e"}, "820d78fb-3334-4b41-b8eb-1717ee427bb7": {"doc_hash": "feb25191ddd218c4426abb7d74ad466fa13054d98386692b6abf2b12dc74190b"}, "f60cee55-6027-4d81-bbf0-34ef4d9a1123": {"doc_hash": "7a9e18f77ad5b0c3dce1eabfa861436f78ae6c8fc3b459e99cf0131ab0f55ca7"}, "3ecf90ab-94be-44d6-9343-605105ac497e": {"doc_hash": "9f577e29ebd9ea2b41a2a0995ccb868aeb7565498aff1a78ca1bda15ef1e70a0"}, "e29a0a17-0ea8-4972-a9a4-c569e6365701": {"doc_hash": "850780d67e67456d25741a728e88cb9b7bb27e8af8b02a188943ce37ccf2ce24"}, "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa": {"doc_hash": "72fa11ed3702e30b06009f6d5d874910f212e3ba092b4aaf122e2ec2120afcc6"}, "abb61571-5049-463c-b4d9-e8a6cdf330eb": {"doc_hash": "c4f394172440c6981646ac1f5b96d386630b58286c51e4fd45fc3ff2c92980ff"}, "3b959379-13d3-4c66-820e-ef6ae5e54595": {"doc_hash": "e164cf38deefa81306ae67bce579411585e5cdc970f48d62f01db20570b4d355"}, "18a09b06-e824-4435-93db-f2259404c708": {"doc_hash": "9eb7da3affe02c95da86da0beceff81cad2e85601594d5a0d088c2bc04fbe8e2"}, "d0501e05-225c-439b-b9e7-e1ee48e6bbf2": {"doc_hash": "d87cc3616a6ea092650cdc323a8e442aac19965f8faa1f2d690e51dfd6c2c357"}, "26c7eb2c-6ac1-4f87-af66-939fa469d08b": {"doc_hash": "dc5944fa421da48fdd19e86b15d9f870d7e913f1928063cb3129583b96a1827d"}, "b22c7013-5aeb-4343-861e-30e36c76d314": {"doc_hash": "e379c5834e4b5ac9f1bcd4f194c48ab53b2eb5f44da5c730e94cf2baf41a45dc"}, "58f2d3ed-b7f1-4c04-843c-70a0e6384767": {"doc_hash": "7b0f6933839f8c37aca391fdae52a50727c2526da36901a45c0142dbef941a42"}, "f5146bfd-dd6d-48c9-9108-5d654c5aa181": {"doc_hash": "1240c057d371f8e773738cabca5220deb4f7c7e744e8f43a427c1c623cf20b73"}, "d547d570-592d-4cb0-a51f-c504d544c191": {"doc_hash": "011d23685c6dbb14736981db17ad8330160bee2ba20ccf8faf3d0bb82e65b946"}, "aac2e449-4cee-4fbd-9697-f93360b76e19": {"doc_hash": "6eef9a0ba6ad11a4bdd791c7e66b8ec1c2240c524322f91077b32573a8eb17a6"}, "0a17f09a-4878-4fb4-8d8f-d96f1ef94378": {"doc_hash": "c5102e5beb603bcba5d0b656e51d83eba758b1f8aa296c6410432f72b9d13478"}, "7a9ee7fb-d475-48d4-8862-cafba70d52f6": {"doc_hash": "ee26019a7207879f356fcfede9b22847d8575f913c41683677a5555c4b088812"}, "55d1ed2a-0317-4b59-8e86-bf9f3a56c120": {"doc_hash": "27c672c090be0b95fbbbbc7728fca24fbfbb7886d5f7651b293d41460d582ad2"}, "1b44faef-8bcd-4009-b5b8-dcdccb43b671": {"doc_hash": "b5561ee08335f2be9675d9a7db000a6319596fe3582cffdda93943eb4cf7e837"}, "fd7af22f-541c-4da0-be81-fac44d754150": {"doc_hash": "ebfbfdf0e9469345ffb2dd7cd69a306e8d2a2ec891a41769e8fb2a40f8c1802f"}, "6126b206-1c15-44f6-8d50-00b6ccccb844": {"doc_hash": "9e2349b801e0a7e64b937e93bc4db328d6eea24941c4b83e7a40c4f6bcc99ad8"}, "94f7738b-dbba-4421-b9f8-e30b407d68c4": {"doc_hash": "95d65a2086feae047e3e6961a04971d937a683c4012bc0fbb14c82384d7a9d91"}, "d380bb2c-5c9c-4fae-8701-85992edebf36": {"doc_hash": "bbba310d92066362bb572f3f29cb7226e00eea4329fa59f84e85091c21627981"}, "2a7bde72-319e-4edc-8264-af5c78526b40": {"doc_hash": "a6ba75d3bb7cbcea0eb0d846b731b95be64eb0b670182ccbe6e2911032d99487"}, "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac": {"doc_hash": "2834ac84028886176089117388037b52617282ece41ca0e417c6d767e3ac3744"}, "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53": {"doc_hash": "dd93519248a9faa876b9b1eb45a06a8e0c7ba0f3362669a916bddbfa2f01306d"}, "5c7600e2-0aaa-476d-b0a9-287364ac394f": {"doc_hash": "64e698c83740bcff42b5a5b5a2d306f0ca67e03750fe1d33f24538038eb92fe2"}, "116ab9b4-3b96-4b46-a6e0-881bb74204b2": {"doc_hash": "a1e162fbdade25f437c21801edeffc23ac1df921bc2dc209be5c4738984198fa"}, "17a7f0db-4838-4fe7-ac91-84a8a186aa47": {"doc_hash": "bc783fbdda83355910339a1e46481366e0db4df2603e5359a46efa8ee9527cea"}, "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8": {"doc_hash": "ca591e43f4a7d9c48ea48e7d0ee03809081cec6c5c8f0fdbd1c7ca04c4ec43c8"}, "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a": {"doc_hash": "18a653a209e47ca1b7f0767a77281380dc562179b73cfb1aa3b527078157f3d4"}, "b5109216-4f8b-483d-bc75-09ee3d9a3d67": {"doc_hash": "f631faca96fac2a407fdd5131cc9e2022dc150ab64400c181b813d83809aa5a0"}, "bbd22630-8de7-4267-adf3-b6aa5c88fab2": {"doc_hash": "6324d1c70e6291cf68b8d8775bb8ae7ce8e8a92ef025b3bf36ef788db9005d81"}, "aef4bcc2-7867-4303-8aad-2e2a449d5adc": {"doc_hash": "92b5d72e30d038e98b8e801205d690f89b697886a9fce82f53f240518f422c56"}, "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7": {"doc_hash": "d2f565a622415767e0415ef8752726b190d2b0ec89784e1ac5e31286e6adf2e8"}, "578c62b5-566e-4b6a-9aba-2a47bc4d940b": {"doc_hash": "9d7e8ae84b61e8beb093d69da155b470ec258ce1c015d5574f943669827f512f"}, "9b4076de-f213-4e18-8c5d-fd15e2b33525": {"doc_hash": "053e04142a570a5e6a9d45e02f51c66b0627d061f90a8e35c42203179d290c6b"}, "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992": {"doc_hash": "a39bab78ae52d013590390371c4deacf04314aa7d84aafd3488b0ae25610fb3e"}, "4581fd35-6736-41bc-a784-30ec63c244de": {"doc_hash": "252ffbdcb6bea17fde1ec4a2b01857b7222540f73741e01e079b399f517cb2d6"}, "0234af90-0173-4e66-91a9-2619cf5419fe": {"doc_hash": "22196c17b8d91923ff949bb21838c0524910efa25a3d8a7c402001e43899df1a"}, "c4871e12-b268-4e58-8beb-c71f7240f4d8": {"doc_hash": "2b954ed9407856bbb0f8c40f42c2a69a96e11342f67d692095b39238130cd60c"}, "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1": {"doc_hash": "30a1d203e62ebba8450bd56f1d035c927cc719dc32e2ef0fc62c4edd1dbdd260"}, "6255259a-15ae-46af-9cff-b8c237f91979": {"doc_hash": "eb5b073ea65bc1c98bf4d12a9a03c802aa163b8eaee43e8619cc03236f1612b0"}, "51358090-0de4-472b-8270-27418c9f50f1": {"doc_hash": "3d2d9b2685b5ef7f9242be6b23c96be2436016ed5576f173f2dd540e702dae5e"}, "24a26843-fa30-4ebf-b858-3a378bde9613": {"doc_hash": "bc9996f551d45850b061f877cb170a884981da8cdc50d2c47f7892cd60b02526"}, "3117244e-bff6-4c32-b6d3-b8c25474aa23": {"doc_hash": "7b79f080d946f684480bf0b36ed04d7b72fcd560d8235618200d08e96498c5af"}, "fce78388-527a-4613-b394-acf00394ed64": {"doc_hash": "01bb3648ae7dc32b6c652678415e5ddfb6e0eba2d768d1a8716dd033f2adc459"}, "02f8ebfe-5498-4788-add6-913a59d7f92b": {"doc_hash": "3a942fcc3ca80b4e5820a9bdf6cfc477ccee48976cecb7c782b1cee468de97db"}, "61379e76-3b4f-46ca-aa98-5fff36e5049a": {"doc_hash": "f4e4396fef22f3b186a23673dd8b7026477ba7240e1372e9338c2a46414f1f45"}, "c0934b85-61ce-4bfb-807d-d698d29af649": {"doc_hash": "456307ecc2c8b2db4bc5ca47d0865c18189eec403e2c9cde697311cd6e0b7a50"}, "b772fbd8-ea12-4ef4-8cad-a1f31386851f": {"doc_hash": "209727c34deb7c55be6b69f0b50b49f6ee76ea9e9f870de6cc99e76ab2e68a7b"}, "ea62f547-cf29-43cc-81b7-f2b7fc01dc89": {"doc_hash": "8561992a821dbc0e5db8faeae5fe0017df742598cf36362b227f7f8457555f5b"}, "db065740-e8df-4964-8479-19a07336f6a6": {"doc_hash": "520d10e7541586364d50acc80b221504910112e14fc69383bcc9e81178d55b2e"}, "ac4b8d89-3ebd-45c6-8a42-38db55090244": {"doc_hash": "a706ed189e3a01f96edf950c2bc3c562a747760e7a89db743fb9ca6730f2f311"}, "6f93e1d4-5464-4054-8830-2ac07c97ef87": {"doc_hash": "49bd312603e37158f63050bc1d681c6e5bd984303f1f95ccbfd321fb850e3ce5"}, "ac9c4050-8ae6-4110-b0cd-29a61aec89eb": {"doc_hash": "a9d6f451cd0250a63f8bc2867ebea7836ff727ed9a5dc5e1652f392e6db6291e"}, "281ee50b-5a60-45d4-8a7a-aa7193e18dc1": {"doc_hash": "f57d65998563fc3c0df1cb1058c7d3b9aeff28840732ecbaf4e9fa96ae7cc1d7"}, "6b7a9e53-5661-441a-832b-75efd2b7b287": {"doc_hash": "dee414bb57193b2bb00898de92579db679eb64fc0a2cf59ed8279abca8482226"}, "47229daf-7ed7-4391-a744-ad1691bc03a9": {"doc_hash": "e1072536d03b095a12561676301f26619d99fe3a88abc4bcd0244cda4cc23d9c"}, "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1": {"doc_hash": "5e1a60814a153add9b4c192202f62db51346808a7f89047f09e8775db55cf0d9"}, "c134065a-14f0-482b-a69d-91baacb5d494": {"doc_hash": "42bb0f112473640541412e136dc814a5dffae13a29bf313aea06786e6b884340"}, "de3d45e9-9ea1-4f75-949e-e30b0052d539": {"doc_hash": "9982e5d0c5a815504e5e9db075d49ed1dc69f18d26304b9b50676d0a562e0a8d"}, "e42c5557-69f6-40e3-8c11-66ae89fd0456": {"doc_hash": "0c99935cdc45fa971579a27446a41a4346e4002b3ce192de34348b6418d4c15d"}, "f087d8d5-c0f0-4662-b436-3ad78cd14624": {"doc_hash": "187440551ae13b274020b35921f044a6508b99d8c87c884a4310214b7b52411e"}, "9562c403-41d1-416a-9246-94e21f9337bf": {"doc_hash": "8bb5d97c4bfbde91bd1e508be86b7d2a7f945366b07858008b9913f3143b4910"}, "30a8e840-ff81-4b29-a293-91a421431712": {"doc_hash": "e18b9f313bc3e2d03f85323b1768e7884c41f3926d85bce058f32398b046fe97"}, "863a67ad-1fbe-4efb-9174-0e58326f16f8": {"doc_hash": "35aef449bcd1f34b3905cd2775b9a442212d8a93b5dfa49b8e207ced9fc0808f"}, "a0321fdb-df92-44b3-bb11-95a8a7f699fb": {"doc_hash": "1e3a228ded1ce32360b6928fd6076f309037c4d2fee3233a2d292a36ca813b8e"}, "e3af0884-3e2a-4ed5-be90-99c0249959de": {"doc_hash": "5cd73d2b052f89f3b61750a0d0a608e65f5fafac92002633aadaae12d3a92d3f"}, "2856558a-faed-4f27-885c-73094f210748": {"doc_hash": "85bcf33649c7529d7a1d3a84673797e61e20dc32a6109a5aaea0ea721587f3f3"}, "6edce869-c74d-4d53-a8c4-8a0d4f8754d5": {"doc_hash": "e2433578aef9b5c24871d823c98f7913fac5ab7718e930f2dcca0f9bbeb2688a"}, "4cf5cf0a-71e7-492e-839c-fe733e123ca6": {"doc_hash": "66f0fa6f0fca20bc1a1e89e6e859bb4963dafd6bdd368cf45ddf116439314fc7"}, "f7f383d3-70de-4969-ab49-14d84a7275a5": {"doc_hash": "aa802c1b68451d1a6caa94a766f770d8fbd74dd6eaa10787228db4f3e723cf54"}, "b393549d-e6ae-4799-acb2-1b3d290b4de9": {"doc_hash": "230ab64d6fc34cb09695da9e71789e445c68e9fad77bc4b5fa6c5b8052b8f18f"}, "57ee30fb-db22-4b07-be22-1d6760eaed09": {"doc_hash": "9b9dce11360b1b09c11e8eefc214ca6a8358901c36d9859e064da920416a7079"}, "5b716c2d-7dee-48d8-8294-bf942bde1c5a": {"doc_hash": "4bba79b2852eff67ddd1e96a73fac2598fbc976b547b8397b81e125cdddd9371"}, "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e": {"doc_hash": "faa13f57dba93bbcf8e862350f347ecdfdfe75316bed3bbda946b2b6b077d0ba"}, "f0ba834a-0f18-4a90-844b-b459fee5f3ef": {"doc_hash": "da171c5f861783a2515d0d3dc771d71665db919b60832c47412b35d0243f3c85"}, "e53792bc-88da-4a55-931e-697331331fa0": {"doc_hash": "0cbe982f904f40254e5b8dc2e5cb9a821e6dc13a1273d796ca847ac6418fb000"}, "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e": {"doc_hash": "c0be95ed779442c20a2d2fe56c135ff61ab3b8791aea01332859d49ef0c9c4c3"}, "256ee66a-bf3e-46c1-8433-1230e80c4df6": {"doc_hash": "2a0c7ce96f25bc386a416546ce4d3c1f659a2a24bab06a40266834c0adc1620e"}, "62db627e-707b-42ee-8ed1-bc3b95a5226b": {"doc_hash": "bd09391264a81676cafcc11000db53e093227ef2e013f24a60821c7ac4d5c2ac"}, "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d": {"doc_hash": "ac9f2a2d737612f4e66658d67c68e05699229f2af94c94b784ad7d5261a0ea57"}, "d482ea10-3517-45c2-8fd9-2da2ed47e0c4": {"doc_hash": "1445536b4df98ab8fd9bd48156947091f5ffd82584d1b6b5872bf1ac8483aa04"}, "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159": {"doc_hash": "fdabe9eccd0f968fad51af6ba4caee68d6a329d90105331ac6364168a7d101b4"}, "477228f3-473d-497a-8bcf-8fe22f733d3d": {"doc_hash": "e6870b8c88dcb266be22c7d0fa0a5f80dbadaa711545f33c57550aa9be239806"}, "ee2f96ea-ae01-491e-aa4b-1df5caee714b": {"doc_hash": "3a2277fe80f33b68ddf6dc992d839a9a447b4b5e0b49ae1bf4d179b723993957"}, "6e24fcfd-feef-44d4-83fb-d8c0ca66a502": {"doc_hash": "2ecf0345a46746ce3bda8e0265df908ff7618d73247d74e8fea7f9fcdc94240d"}, "19b2f7c6-149e-4008-9ca2-4d21443b7491": {"doc_hash": "9e5e2e28935605b293b95301d1c367badbdec542c040bafce87bf6862a2af62c"}, "8dd2ae1f-77fb-4751-bb3a-a12722544b0e": {"doc_hash": "24deb54c2bb192d1ef7860dc4d37b02589a96f9873b17a6595d9acd912ed181f"}, "ca041e39-9cbf-4183-bacb-9da0fab1ce2a": {"doc_hash": "8dd7ac41af995b5eaeee17ca109513ebaa07b7bf9e7492cff7ce4729685e9c87"}, "961c6b2e-0554-4794-9539-48df93aeeef2": {"doc_hash": "c5aeb10408dd03fd8d673ebae08056c8f5b59892503912337de8b5bc51e1523c"}, "072db9fa-5f01-4a27-a171-020fe76f3b37": {"doc_hash": "7b07a6a79d72ec634e60a2368cd4046d4e65eb01be3654d41541867c0c16d7bd"}, "3c511f34-48a5-44a5-83a0-86b71b9f0ed1": {"doc_hash": "ce91c285f6f4730299e3fbf2c165dedf99a1a378564c310d7c55af2344dd9256"}, "bfcb54d8-e737-441b-9ce5-ce7137f10c3a": {"doc_hash": "3c7bec6720596eb6cb05e215210c7acce0621084ca9002d64f368f944a18f678"}, "0c956911-fdd3-4a8c-9660-127fbf17afa6": {"doc_hash": "5d89382e580756d10103dc2739c96ef9e53de0829579b00040ee1e3fccc9d436"}, "9dd98e85-62b3-4092-b586-cfea3d4cc3b4": {"doc_hash": "a81e6831df634c02a3dfe07258b679c926c2283ada7fbd07b6999adf77ed9afd"}, "d4d759c8-7b5d-4493-9d65-0cd70589639f": {"doc_hash": "2d5fe4f4470592781b46033b51b0b3395bd003ff903d40af2ad97f40c942aeed"}, "e85728a8-9eb5-4e9c-859f-2cb3459d0efe": {"doc_hash": "0325694c1f0712f026b49975d4244131a8ddf531967c6f7a4f08c94507183cfb"}, "8b6c6ca8-b652-45ee-9b60-ada61dd90b70": {"doc_hash": "629ab42b94a202151004cb0da7adacd582285671db2bcdc3a87b86cf5b0fdd23"}, "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb": {"doc_hash": "3782edc6c0fc53436f5a6fe96d908ad3bda4c802762f770113e072dc0a4d0ca4"}, "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b": {"doc_hash": "eb09b3039aac48da8db9f70640377f35e1ea40ee089c546a2f2de04385e66a8b"}, "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d": {"doc_hash": "69a81ef20efe404eee5b7ffeca48683c6957dfd549922da91fa0c7497ba7039a"}, "93099d44-6852-4806-85ab-84d654489dbd": {"doc_hash": "79832144449b7b61730a0a88bc3252302935757989d5ba46280d3245f2cffcaf"}, "ced7c12d-3792-403e-9d14-2a51a9448fc0": {"doc_hash": "364e63a802a3ae5dcae15301da37cebcada54b033e2e13d2b1c554b3234b2db9"}, "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe": {"doc_hash": "0e872a82a73fac2e0648bee56b8a851d7bdb1520bdff42bf3adba65d8c04d27c"}, "31f6ff5b-ead6-436f-a961-dc7d8d29fa93": {"doc_hash": "b68a648f965a9e8d838d109b758e8a2dc7d4d2d2b4ea4526d559e65a421e5821"}, "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f": {"doc_hash": "c97cb1caa04f6b06efefc30e0828f30e3130a9676858bcf0197e78d683029d24"}, "e508df84-9264-40c2-aa82-82315bc442e7": {"doc_hash": "17747b7ea77ecf1be567ff9caa7b125375a16dc3b311b1c83ae5e9ae0fc2e5c2"}, "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd": {"doc_hash": "1b339f1f0d896116007b9e9c764dc8aea033b0f320be989b4f1187fd25d0ffe3"}, "36d2a341-899f-4f94-95cd-a952609cd2fd": {"doc_hash": "8f29ca2e5d994b43e240efe4e084e1595ca305013fe42c99102eff001a6d01f5"}, "ac141999-281a-4017-85b2-b11e038c1dea": {"doc_hash": "fc4186fcd79362ccc97ff03b0d4210d20c38cb23f6d6d35f61e7f43119445a48"}, "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f": {"doc_hash": "a45566f761f2bf068ffffbcbfb5507b648991ac5cb2dcdb5c263bd91d393d6d2"}, "02b98683-ef2d-4966-97be-17ff4f2b7b69": {"doc_hash": "05f64d100254bcafd4362ec941e91e9fd4a03ceae13597099f0ca538a0eeffcb"}, "c9d33a04-b771-4d2c-85cd-362cb664dee1": {"doc_hash": "e9dfb3ca0325c172eae6bc68b4a1ddd03fdb759a4dc9f82a1bb928435189de86"}, "549786b0-3e20-4282-bed8-c66faacfbd49": {"doc_hash": "2713b6465700c0808e4c2356de901ef089e728748752dea07f753b7afd8c187a"}, "fa485721-feeb-4f9f-ab71-d875f2ff3697": {"doc_hash": "90e366179a6eadc840789e61aaef207f3624fdb37443362728e334b8c42c3767"}, "4e039f46-7ab6-421a-9f50-e53e055f829e": {"doc_hash": "f61d96f4e1a1c68485c13c8838e6ccec2c48f786275488202703977a848ae2a7"}, "fc223eae-d408-4c09-965d-c425ba47b8d3": {"doc_hash": "69c853bfda236a16d8cfe0bf90f68b62bcdfbe136cbbe522fbf48201e30f55f4"}, "7441cec3-8b9b-479e-9148-647085f97e6b": {"doc_hash": "c0d65b76c49b230149bc5f1c0d29e5fabf3026481879db68f3283e868708e7e4"}, "9fffbffa-6cdc-4a18-a423-63b90a8ef09f": {"doc_hash": "bfdd8f206645412b1298e29fe85609263267d3d93e08ed694f09cefa018466be"}, "6d273b5c-df54-4bcf-a76f-a34ab90c7e07": {"doc_hash": "70adfc11c9c3530eb1b45c352ff93082e9bce95f99da432b1c8a6fbd901c6fc7"}, "7630527c-681c-4aea-8cb1-80301045f7ce": {"doc_hash": "b881e9937e6276dd712becd6f0caeb3dfedf98e337b78c4d1e807e54f89e118d"}, "7d7982d9-15e8-48c8-be68-6432be3c9679": {"doc_hash": "df451cc11f545ab0d53c6435593b58a402fb354bdbb5f6ff74c6ac074fb30c30"}, "37e35979-0d3e-4318-95db-6500b6c1ab6c": {"doc_hash": "7bc68e5ac00d49312457904b62f3e1d245081de8662a05825c6fd6ae7a9a05de", "ref_doc_id": "09cba188-ceee-4056-8a92-de844661956a"}, "ce5416cd-156d-439e-ad33-04d2eda3d05f": {"doc_hash": "e8beec4ab751c5bdf10014427d99cdfdd305da1af8998e64d5a9758fb6b1cf95", "ref_doc_id": "449c8982-fb23-4b3b-9681-751ea59bb2ef"}, "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99": {"doc_hash": "85a60acaf6675c5c00e8fce8077de10c7124c13809ac23130a1547b4a2ccee86", "ref_doc_id": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4"}, "5fc110a9-5b33-4c68-a179-5896b8fc210a": {"doc_hash": "9fa7e161eb41a1ff59c595fccdd56392dd84cce412ec74f44c1ebf8dcbee888e", "ref_doc_id": "69beef59-0178-41eb-8e57-52ccdde86122"}, "7c03ecbd-a9c6-446b-8a8e-2cad41690d20": {"doc_hash": "6294486604b55bf858f573414cdeb45038723973a748302a3538668fa6d118a0", "ref_doc_id": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc"}, "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999": {"doc_hash": "83ecfcbfb3479cb4f55c0eccc45b9d367878dcbc59aa037962250ce54bdddae6", "ref_doc_id": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e"}, "27fa039b-fe69-4713-98d1-a3c64b165183": {"doc_hash": "a2f8de87a994f9d442d58ca4972b5c930dbbc91e1a457c9afc29ae1dbb54651a", "ref_doc_id": "c24b38c9-894b-4216-8b1a-fe5fd15934fb"}, "23df7c2f-a610-4aa5-9772-c60b136c4718": {"doc_hash": "cea219e57a8ca74f2a491399d754827074045b969067225024a5e2d9dee77b85", "ref_doc_id": "28764aff-36df-4485-870a-cfac824afee1"}, "35615553-1e95-4ed8-8173-ccebfd5ebbdb": {"doc_hash": "50352de478e8619d208050b998c375314c94531ec4a9e42547648ea0a916a617", "ref_doc_id": "c6b1e57f-77b1-497b-9874-90299e01ccd5"}, "67baf74b-8983-4047-a9a6-5bcfb3347273": {"doc_hash": "523beff6fd457f0436a081c972ad6532cd8a655a8139c25ee4cb748637145934", "ref_doc_id": "7b483c59-04ae-4352-b811-dd69cd19b494"}, "0367b4dc-58bc-45e6-8bbf-4770fcb2829b": {"doc_hash": "72523ce08c71d05f72e533891a89f1e42f244f6b1144c882675d9a7c0c9f62ed", "ref_doc_id": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c"}, "d802fbb6-1c8b-4540-b126-543f1cb58877": {"doc_hash": "594053b44eeec8c3068b92035eb0bbc18cc7e69db94b419b616046c019f70e53", "ref_doc_id": "bc634b57-3daf-4592-965d-12d8393abab9"}, "8b853460-a294-4741-b13f-57e59580de1c": {"doc_hash": "f9dd755c3e41219585bf452f78e362f0427836b75e7ef6d3da134fb4729a2b54", "ref_doc_id": "254a5442-b132-44db-84ab-b6bcb087dcf8"}, "f8f00cd2-7871-47b0-a1f5-9b380df20766": {"doc_hash": "2e70524711b36a8c21a55f4cab1612a03ca8da2349b8d2c944a54212ee372668", "ref_doc_id": "abc08179-04a0-4568-b866-f54c8a658e48"}, "4850fc27-b132-4064-a67a-3f61df294b5b": {"doc_hash": "61afa9ba035e303a0a4198e1afeb1ea80a759b36f464ddaeaea73d53cb4e28c7", "ref_doc_id": "c9ce5806-ae57-4637-b33a-c20fc502fd13"}, "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7": {"doc_hash": "6de5b47e4b4809cc185a68b237f449ba2698adb4482a0a8580cb5cb4b648f646", "ref_doc_id": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c"}, "de927a9a-e05d-431c-91f7-a4603741e016": {"doc_hash": "0b0b151d2a458291fba4f2b3fc9873ca8ff4cf4aac48073132421a3dfea60148", "ref_doc_id": "b5be87b0-8eff-4406-8a71-e2abe07e82d3"}, "8421e4dd-a2ca-470e-90cf-b80e1736f364": {"doc_hash": "64b4393507a81085e631cecd740468778fac8cbd3928ef41ef79cf62d1960a22", "ref_doc_id": "6667925f-23c9-4290-80a7-1e8bd16eb65f"}, "9a6c4417-5268-4d4b-88ea-6c1482255021": {"doc_hash": "09c12116afeb7fa2939573114ccc8252801182bc9129fdee1b3beafa08611561", "ref_doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6"}, "0741252a-1649-4132-820d-aada866d9dff": {"doc_hash": "133cd5fa47960ba73fdd54cb8facca3518271e338672e5f6f26c40e240dab1ef", "ref_doc_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6"}, "a044525e-a899-4a11-8033-1865e1803fc9": {"doc_hash": "a44683d534772609d550ad2048dee1163896fd3e07bd29f8790a949193c3f64b", "ref_doc_id": "8ab749d2-d917-43f0-8d28-71379d61d6e4"}, "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3": {"doc_hash": "af069e456723afc54501af919de1e27841b48169623399d149107e8588828383", "ref_doc_id": "a5852ce2-2220-465e-a945-c13a45057bf6"}, "3c9d167e-f7bf-45db-a795-bcc4b941cb4c": {"doc_hash": "a971a59d357d8667958e738b26acfe24f3a1f9730fa4e6243c38c14c04a77e6c", "ref_doc_id": "02f878f0-725a-4de5-9f2c-2a0672c3ac52"}, "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde": {"doc_hash": "5fcae2daf010b90562bce567cf0eb2c180cfa008ff3c5d23ffec02159b3f0880", "ref_doc_id": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459"}, "c6556b88-8149-40ed-895d-dc611533cba5": {"doc_hash": "05cca7a282e6a17d75f1f8507320f63f449eb1e879faa09629666508f7b2fa31", "ref_doc_id": "3ec800f4-7df8-4008-8b04-a61332e6aa42"}, "75c34353-c6bd-4fcb-90ec-d02aa625ab46": {"doc_hash": "c27c4709b093561a8c9ef745a61af44d99c883ad88c87f7e09d1de40f84a13ff", "ref_doc_id": "ab40a505-36f4-43e6-a150-cd85db235e67"}, "8fac4829-a6e7-4159-8bb2-10e1859025b0": {"doc_hash": "85ee67d410fe9e42df9b2cde405fcb16b88663c80402c31af83f7d93224df3ed", "ref_doc_id": "833dfd3f-1aea-4752-9f16-81636b443cd7"}, "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed": {"doc_hash": "25047940af95b05bd7af091842820583302ec073a944a49ca23461fafb2d6b66", "ref_doc_id": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa"}, "194206af-b2e8-42f9-8424-2174f55f3f2c": {"doc_hash": "27f04d8f2c868a34a245638e287a4df448ed896410a27c42f06d2007f4ab0386", "ref_doc_id": "87768311-dda0-4891-892c-f70a3d6d74df"}, "35fdfb36-0f18-44d3-a476-1c281c5b4d67": {"doc_hash": "cf42177e73ccd56c40f70364ee78fd78523ee2584950e0644a83518c73a79f5c", "ref_doc_id": "1932d374-b325-488f-88ac-9b6c15ed46ce"}, "1982d6a8-22c4-4beb-a9bc-96e81ac08261": {"doc_hash": "71b2162e106c19d3d274c2912a0bfe7197b34f0f21d259ebe2e81090e109725e", "ref_doc_id": "f7151b5c-15a6-483c-a65f-1a273be9cf45"}, "5daeebb9-1856-41ae-a528-c28d9f2e3099": {"doc_hash": "471968968b53cfd216385d867f8014a29c1a6615d1256fdde74702c9ad1e2f4b", "ref_doc_id": "5544be45-71a1-4200-891e-f3c0589ad98a"}, "0b965522-311f-4ed4-9b89-44bdd2409aff": {"doc_hash": "8456271d8b440f57bc2d87b7117b69240469ce5edfafe58d2d733d90abc0ee3b", "ref_doc_id": "ab11c7e5-042d-4dae-93ad-922ffd496201"}, "8d8dadf8-3f5d-4388-8d63-acca8868c074": {"doc_hash": "87a4268c6de4d1a578b8467b1b989fd62a4f65723ba9ecd611f7763740df607b", "ref_doc_id": "ee844663-0f37-46bc-8e6e-04d87d9974b3"}, "991c8f71-96f2-4ce7-97fb-e2adfd81fa49": {"doc_hash": "e12020ec4ae9893b0ea566af9ad4958c59b60dc31b9193f9cb830794fd906179", "ref_doc_id": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee"}, "3f708918-9bcb-4c0a-bd9c-c987901f8659": {"doc_hash": "abcc5b10057080883bdc7f13207e91138d553d7a803b47fb27a193f7192867b2", "ref_doc_id": "2a765986-cb5c-483c-b423-2953f033b681"}, "1278ad97-268a-4707-9066-09d44fb74832": {"doc_hash": "16cf0f8c40245754d431a5ebb5bfa387e369e75b9b4c7c35ed28cb1178c870aa", "ref_doc_id": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851"}, "532e020b-af47-4631-9116-743d24b89552": {"doc_hash": "0af975991882e167ccaaae246983508488d017b5b5520ccdc0a169839141acff", "ref_doc_id": "e186910d-316a-4d76-8b72-0297597744ee"}, "9e212d39-504d-4779-83f0-355636b0de25": {"doc_hash": "bf4e22842671e844c3841438e75355ce04ea9df6e19c8c6930b5e6f86d0396c0", "ref_doc_id": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06"}, "062f22d5-6e38-4cd6-a3f1-cf5700f9821f": {"doc_hash": "618b76cfa27da0e38e79e3460341dead0d409f4f9a5d9647f0646a41fe193435", "ref_doc_id": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064"}, "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1": {"doc_hash": "fcc25bbf2c5395446dc61ffcb9e8d6d96d83cc92cac78de1ea91c1d70e862059", "ref_doc_id": "56da6737-1dee-46bc-b3d0-90e13a697962"}, "926c9e8c-0a25-4512-88ba-697deb7cd1d6": {"doc_hash": "ab141ed1b369f8d263fcb186f8fcf338d9b4f2f2503ff3131e81de506ee03a69", "ref_doc_id": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a"}, "46cea481-4853-4b34-a148-91f2281b5148": {"doc_hash": "deda5de94c2fa3d050d56ed7089b190e3eb89300a23866315b2034c69e56265a", "ref_doc_id": "002b7e66-87f2-48b2-a83c-dad60727f3bc"}, "5428fbdd-f596-42e9-b75e-2e7e1e153e90": {"doc_hash": "87288eeee469348ce74e94e1cd87074ba57dc6e98df4612fba63120822f92202", "ref_doc_id": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3"}, "32a50608-96b5-4eda-bd89-6ad80ad73f62": {"doc_hash": "076ccf20e0dbd81025ca1da45e52f7989f8bfc91cb6d27bae8e6409b56d82d33", "ref_doc_id": "a4e9e8ce-b526-4687-86c7-aa46c892e55f"}, "ae360743-3475-4f15-95b3-7c96f8878dbe": {"doc_hash": "179b6537139b93c8223f9900b4a6cebd65550ba04892bd049ad88b31f36bb9db", "ref_doc_id": "929822da-fa3e-4d25-b523-db06a02797f4"}, "179c2192-96a1-4557-8891-c408aa29e6ac": {"doc_hash": "ec5a020727e7a846352aed955a71a87e19e54c3e92aa3beb069f0268b373fa10", "ref_doc_id": "98da37bf-9477-4f50-acd0-8018c43a06bc"}, "692705ab-306d-4be0-9fed-d651401eaadc": {"doc_hash": "8cac0704e0006c1d3dd6f6564a8beff6a789bb76254066dd2ee4bae610ed684f", "ref_doc_id": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3"}, "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac": {"doc_hash": "057cdc1a7e561ce9c8815803b6e6ddd9594b00679a666d13e030c6e9a8948c86", "ref_doc_id": "6f343a13-6d93-4a4f-a07d-17234e8972a2"}, "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac": {"doc_hash": "1060c363d4223f900d4fd56cf69485b563390a7429b2fb80770e661e7a5ad67e", "ref_doc_id": "86d6342d-b6c6-44b1-abd6-09e10f17b87d"}, "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e": {"doc_hash": "723e889c7f441155a85bdb8954c50c667a3dbbf627d55edaf00502efa761c353", "ref_doc_id": "925a779b-d812-49fb-9d86-727b98ed7f66"}, "3a27b605-45a0-4bef-902f-c9b3c7171ebc": {"doc_hash": "d3659d6ef3bce194861c0348ef4244c12c3c4787498ea1f576e802774603b576", "ref_doc_id": "1517bbfa-266e-4d8d-a792-78af433ef831"}, "058bc3c5-2029-4b92-847c-c3f57e1b328c": {"doc_hash": "834f56e31480191475674bc08d9743d64d4d1e9109099e46a23534a7b0e41617", "ref_doc_id": "e163b8cb-7027-49c4-9910-0266381e904d"}, "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d": {"doc_hash": "22616ddb12203a3f81290fef7a1c0204a84b4daab83c6f77b4bedff52317ab01", "ref_doc_id": "9d22a53f-ec69-4924-b375-81f49499c45d"}, "2cd9ecff-8914-42b5-802a-5b28162a87aa": {"doc_hash": "7f67f330fe19cf020184c6001748c1122ebcb8f3ce0b44e0fefbff40b93d7568", "ref_doc_id": "3550a897-ae49-4ce5-a053-1a0433f522ad"}, "30959e4d-8ce8-4b68-9863-a25703b0bf21": {"doc_hash": "de9eff3d51c33dcba419b8ed51de68686eea0ab56bd8c3781fa4434fc001ee8b", "ref_doc_id": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac"}, "23fac348-3556-4651-936d-955a32b4defa": {"doc_hash": "95e8096c7058a7918fbcce68325be56d6d01bdd0113039577abe1db06fef6b78", "ref_doc_id": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e"}, "36bac6f0-91af-4538-83f6-35a0f61e115f": {"doc_hash": "67c742d821dc402bef742bfeff676f3d89cb3dc3c227071c35e8546e929d3772", "ref_doc_id": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3"}, "34869ab7-7f4a-4116-b78c-8912e9ac80ca": {"doc_hash": "02b525d48e0f2438eea72717d74b9ba59aea1535de1eeed2e335848d86b9714e", "ref_doc_id": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c"}, "655c55fe-0cc5-482b-9854-4c0d26faa928": {"doc_hash": "edcfd446f0f300a33d1c02757c7684745514d49cfdc8fa67930e31963f06aada", "ref_doc_id": "4db0cd75-c068-4b1b-9568-55edcc23e1d1"}, "1c302ce2-13eb-4f5c-8197-be35d64921e4": {"doc_hash": "39b08e48982cd84c302abcba234e2bbb658f630413359580b271c0186ecb71c7", "ref_doc_id": "db5bd995-4fd6-4f90-81d8-15d132492d89"}, "f8eee05a-466d-4169-85ef-032419f8c5db": {"doc_hash": "52956f16285406e67ebcc34d6b0bd92c20c1a7149acef766a714f5a034b7a07f", "ref_doc_id": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e"}, "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd": {"doc_hash": "38ac48d0f83858ba42051204565faa849b32b7d1f4c76f928648ccfdddc8a929", "ref_doc_id": "94ad5bad-5d79-4900-b224-fcb536f546dc"}, "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec": {"doc_hash": "d6f505b4196a0e91842a5b7e25e417f6883a356f62feb730fbba74e1b07a9f94", "ref_doc_id": "9e84d06d-f07c-4287-9eee-91b4347ab105"}, "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2": {"doc_hash": "ebb22c0e2e6375422d894ec8dca55f920f3b0444c12a84240c9fcf92236fbea5", "ref_doc_id": "30086c6a-3f81-4256-90c9-76e799e54220"}, "d95791c3-d879-4147-aeb6-a448e2e56a23": {"doc_hash": "685560e27a59be29764bc068fc755bcad902f3be4395a0cb7895f6ec54ad8ecc", "ref_doc_id": "994280d0-881b-4da9-81e8-1b218ece448d"}, "6c2e3648-7641-41c1-83cf-2ef654b3e3c4": {"doc_hash": "afb6aa6475fa45dc639ab903fae68dd6f1659b54292815e1cf4f5efdbbd2ccdc", "ref_doc_id": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791"}, "47cdf033-1dfa-4a68-b87b-c3dfae5533f8": {"doc_hash": "e9b549083e53b845d02f622954df607110d458ca98ce98db35cbaa8c011a3443", "ref_doc_id": "585e7a5f-6ee0-42b5-ae41-d7b682789472"}, "9feb8655-b758-44b2-a591-e72e6e041b9e": {"doc_hash": "89a6179ed0a7b4699eec14907843068e04f3c033f70568c7ee3fc8a47e3cedf3", "ref_doc_id": "2f5f5e86-fef9-40f5-be31-b997cebc89fd"}, "92b6dc3c-4165-4d1c-94c8-c1f6f072408e": {"doc_hash": "39265ff027ce59e83e9827c3b399c3a1e762b229477ef4a5cdcfdb2bc9605e82", "ref_doc_id": "3694702a-f07c-4cfe-977d-b63c4305e7aa"}, "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0": {"doc_hash": "b632a9f6b396341da3a1246df6a71c083070b30a21ffe9fd9a3be2369a182129", "ref_doc_id": "ee649dc0-00cd-45b1-86d4-e364661a165a"}, "c8e2752f-412f-40b8-ac12-0c82676020a0": {"doc_hash": "0179d11aa650da9c88115e7b95da7befb09743b753d642cf3a83387fa7f611df", "ref_doc_id": "45f0751f-e74b-409e-92b3-56a5077e7b84"}, "1a7de58f-df68-474a-b536-a5204aea831b": {"doc_hash": "143596349026b95ea8dd8c879dc56136ef0ea6805039e7804cf50bc301a4779a", "ref_doc_id": "96147a63-462b-47b6-8b94-ba31bfba59f2"}, "cd1d59b9-b560-4f69-b868-c136d63e29b0": {"doc_hash": "bde6125ac3ae6ebc8157cd70601d9f369e607d6b02d0a868fa5262eacf0ff6a4", "ref_doc_id": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab"}, "7eb61bf6-a6fb-406f-9b98-866c97063e09": {"doc_hash": "3c4180fe9f202815c757c4407a488d599a0601a3cb90eef02a15cd44cdd03a8d", "ref_doc_id": "971eddd0-7c7e-4cbf-9768-2b203a024361"}, "864076b7-ed58-4051-b8b8-ae83d361d1ff": {"doc_hash": "8a067ba7732074379af0388223efd45d7a0f078beeebc7736b4bae1751ebb09f", "ref_doc_id": "0c3c8db0-1c9b-462e-8794-9e80ef607487"}, "9de99182-6404-45f5-9277-1bca0948ae98": {"doc_hash": "26a509fdc1c89e13992745c56a65c7f121043532096e5c19f822ec7d846262e3", "ref_doc_id": "b9cce625-c085-46ca-94c2-f459b33950a0"}, "15df1912-ef86-400e-8613-63812935df4c": {"doc_hash": "fdf536f6e9b8c284b5a8458f76bf1e9829754f1582200a2c339ac02d0dd67424", "ref_doc_id": "4065963f-dd8e-4c2d-a224-53e172f185cb"}, "68d47fad-bb4a-44a7-8c63-58050f005f87": {"doc_hash": "d754720da641a97ec090ffded85ec85c04221040d6e0a00d9c642ede513b85bd", "ref_doc_id": "7d1a37d4-2f81-46f8-a045-c3eea542e072"}, "6162dc0c-8118-4b94-93ed-b8b693e3f908": {"doc_hash": "7c2202cced90ea02b9fb9b4d1b391b445d3969eb3c7776a7ebdf1812ea52b7e7", "ref_doc_id": "29d0e92e-2f07-41ff-85a7-366097435880"}, "05c70ffb-3451-4aac-9fff-dca65871b819": {"doc_hash": "6960e05951097d4b0ef0a6e66526719bb4a7a0a1b00f59bde7cb09f8d238c81e", "ref_doc_id": "200dbd2c-4feb-430b-a45e-e8815de81a0e"}, "89fbf4b9-69e8-4842-9a4f-b22c18d93601": {"doc_hash": "babd827045c49867476a9b61b1142ce4e947d6363ff1216eab00a5de56a2e4c5", "ref_doc_id": "0a572fee-480b-453e-b39b-d52c1860abf3"}, "12b52d4e-62a9-485c-9295-ac3c7b7712e4": {"doc_hash": "c3027502e1a3b7ed03bdee43c423db15760d538c1bd80be28242f8d07994c9ae", "ref_doc_id": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d"}, "0e310153-ee47-45f3-913e-57ba9f58ad5d": {"doc_hash": "acd2dbe88b26568e858d28f037ac80981bae8bb6e39f4dadfee4e93a02981836", "ref_doc_id": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1"}, "83762a91-2b61-4ed1-a937-20c8d4fe6cae": {"doc_hash": "e327172ce01a648dec4761443d372327ce1ef2274c2056203f221ddd0eddf6c6", "ref_doc_id": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e"}, "7932423f-0047-496c-86f0-5c4a705fc98a": {"doc_hash": "0cd96bc1a05245bf3c7bcf9d441153dc6045d15db334c3e5347e47b9acbdaa1d", "ref_doc_id": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d"}, "49e57753-554b-4cf6-9f91-eef9976e20a8": {"doc_hash": "1e5cdb68bc71997d143a7bb91659a7a5c4ebdca89475056de21c4150b24f67a6", "ref_doc_id": "8eea9f35-5942-4a12-8b0a-afc11c521132"}, "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c": {"doc_hash": "57698d820fb07daae4329e639aaff6de907a75ef41b9b7d07edfabe284fffcd2", "ref_doc_id": "350795e8-f3c0-48bc-be44-dc2db7790d6e"}, "1f364fe1-4df5-46a1-95b2-00ea557d74ca": {"doc_hash": "9ca3ad2f02bd5a94f839e82caeb7b5ab5928002591e0248ee1aab95f1a586bf5", "ref_doc_id": "aaf37c8c-f9d2-450a-8463-82cedd958758"}, "2e4d3c45-624f-4149-9374-fca2ed641f58": {"doc_hash": "3a28ef08b2fc9050a40d898ecd2f4ab73bc7bef867b4097e3248f4315e20082b", "ref_doc_id": "a3f95be5-00a8-496a-9716-cfaabad3af83"}, "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b": {"doc_hash": "91cb76a5cc3fbc9b48b2218544bb0d1a6decbdb1e74e37e7493a8eff22b9bb66", "ref_doc_id": "f23264c4-1c2a-4b5c-ad26-329db3f6e926"}, "74d3384a-7128-4168-9f8d-47d5cb6dee60": {"doc_hash": "5f7ab157838a5d4c5e904adbd7471d782ba7a0e7da2169dafeb99f5984372cb0", "ref_doc_id": "98a14f91-efc1-484c-bd1c-168e4f107a8a"}, "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8": {"doc_hash": "1910c09946b3b4c6063874918feb61485bb4737937ab35b17d155059ac3540e2", "ref_doc_id": "1767df8a-429c-4ceb-a2c0-519f13a4207a"}, "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e": {"doc_hash": "2d22763914bdcb5079acc4effb7fd230e076136b751cee4e9f60cf3998875946", "ref_doc_id": "4647e943-9fc8-4934-a54a-74c2ec98ed91"}, "e9f07882-5921-41b1-883c-0396aaaef7ac": {"doc_hash": "6348481d398498ae1698737e8773ea81ae1184d6dcd0b8bc516bdaa00b1d0e1c", "ref_doc_id": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5"}, "df618784-f3bd-49f9-b3b9-88ac69087dc2": {"doc_hash": "ab1180bba7282a6ba0462c6a4811385f6452f4de6177cfaa33b14c750730ff66", "ref_doc_id": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d"}, "fc6d620d-8967-4097-ba4b-5b8379b30435": {"doc_hash": "a41e1815185c0947527052c679b516b032603562b5af5b34d2018c721b8e7f04", "ref_doc_id": "56237d75-1153-4f73-a1e1-26b49b72701d"}, "88d8279d-e0e5-4c63-8c40-03d0daf7cab7": {"doc_hash": "50ab969c8b08bab08c3c16091343fae76c0c3a1968fc1a99576a1647897edeac", "ref_doc_id": "38bb20f8-99e1-45f1-847c-7043f83b26df"}, "ad557b52-361c-4391-ac61-5bb82b32a98c": {"doc_hash": "b0b04f5fe8555acf7702333dd2cd28182fb2e251bf97b4d3b3d07da2014ca34b", "ref_doc_id": "1a73fed3-dc5d-4114-a921-be2d877d0e20"}, "06721709-3201-4bf4-ae18-7081ae33a6b8": {"doc_hash": "1fcd6f194be2fcc6e2502ad505329c9b554cc1f544a066695bfbfaf0c653e660", "ref_doc_id": "77b77dce-8938-4eed-8764-5f733b2cdb71"}, "3c193164-9ac6-4c33-84eb-4f619cfc6d78": {"doc_hash": "e6c0b6e5f30470b01a0c214f2dd10791c4bdd7947adb1c7da84aa21c2779412b", "ref_doc_id": "a11b618f-9240-4a14-9c60-1cf964a8cdbf"}, "41fe424f-5356-4081-b566-ba0af32bead2": {"doc_hash": "819ff88cb57799fe4e3e5b904bc8b3b470d9eae7236a0d5108fe7c9eb9b4c9fd", "ref_doc_id": "a4e25329-5188-4bf9-8563-22b56735c8a0"}, "8fe81af3-bafb-49cb-ba50-d5f3bc347131": {"doc_hash": "b53e1c86b675b122e4210241a6d82fa0ae5f41809daaad29f6300c6843f92e7f", "ref_doc_id": "4a196e24-5646-402a-9474-530fd0866c44"}, "21ea6e25-467c-4f15-b2a4-6135d6ec3e60": {"doc_hash": "f1ea8beaf94ab085649daa95957cf2875ba96b1fbbdf5b24004556c7dc59003c", "ref_doc_id": "a13c0e51-2e14-4ff8-b6a6-415120d62b33"}, "c11bd073-d374-4e7a-8539-38569a04d1ad": {"doc_hash": "d3dfa4db58c3eb46acaf13da409e25ca34ded88f28a5f77fa0e74346d2cf4679", "ref_doc_id": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814"}, "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368": {"doc_hash": "ed6336695e3e01e03396d5dc804ad092548e3b38469df0431bee31e42dc32dba", "ref_doc_id": "f5420126-9745-42ea-a08b-bdf16577dff4"}, "7e244ca2-5e29-43b7-8a3c-98549e4d97ed": {"doc_hash": "7334b0e3a76669273d5d501901245f01462c2abdf32a0fdf1c1916e466352d10", "ref_doc_id": "043cf0bf-373b-4e4e-862d-62dea1de594b"}, "39292e60-4e04-403d-9efb-39addde4ee28": {"doc_hash": "f233f3aa86b70f2f219162d8125a521c01ec4c8f0192332f2e4818be4e42ce09", "ref_doc_id": "7a59eff3-3aa9-4fac-9d19-e29491007fbb"}, "5003f6bb-5355-4147-8dc7-b40d9500e93c": {"doc_hash": "d752adf8104e852f2c173dd9f886a9c532def41e68f233eb50b247c2a50d5e08", "ref_doc_id": "a0a807b9-4301-429c-bce9-46250c0647a5"}, "2b3514d3-df70-4353-a430-c9f44780a089": {"doc_hash": "d3dcb302d232d55855e7e0b1870c3006a8b500602f184a83443d2ab37424df25", "ref_doc_id": "819670e0-6c9a-4836-8666-cd45980f05e7"}, "6931ad56-a9f8-4e1f-8686-8d827b8c28d3": {"doc_hash": "fa4c808cd928c7a7e616f96399c485ecef73a4bc198b511ebcd3306a05957399", "ref_doc_id": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df"}, "9df6f9ed-1a20-4d07-b419-3a232c53067e": {"doc_hash": "e94f676c59e3c4a08f7978650ebfa55b1212b0b50997791d3324eb2dc617b855", "ref_doc_id": "93bb53c8-930d-46cb-82b2-662c0f732327"}, "a7f8239c-e6f1-467a-ac29-2e5636515606": {"doc_hash": "84ded3cac7a527eef5c370d1e4173f8f8159a0c5d675032231dff64f16576669", "ref_doc_id": "2f42a9cc-2e68-40eb-8472-1449ace5af03"}, "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7": {"doc_hash": "b623618cac7f9486aaaf81792fe95446c1317a5030b81f230e3c3d18eb0f06cf", "ref_doc_id": "52040a53-e5ce-452f-9de2-1600f47352df"}, "4a6a49bc-91e8-4059-82b4-a5731f18fb81": {"doc_hash": "0f1b0c7a61c9bfc9479a158cdb3298513bb645eca49c3721879d81c6eb3b2595", "ref_doc_id": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14"}, "06c8f1be-09ed-4762-9739-a090b78e3bc0": {"doc_hash": "94595993e6b19f0d75edee112433aa469723bf89af0d90576002e6214f7083e1", "ref_doc_id": "33252fd8-1d83-4357-aed8-a15f4322e07b"}, "e517b8e1-15d2-4458-87f4-4dfeb1811716": {"doc_hash": "aee389487088c794b33b12f2a3a828f36c69784974a795ff3c0eeeb8bd4b01a2", "ref_doc_id": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6"}, "ff111f55-ae10-45e2-92da-a096318840f2": {"doc_hash": "d2c6184a7283cfa4aaaee792f639912cd847a5e76a724a151ca15b5569343de2", "ref_doc_id": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49"}, "46852915-14f3-4c56-b364-ffec623d1110": {"doc_hash": "ccea774ee7dda2db13d331ca4d15774e24eb3f277578a546e7edcc0b92681d62", "ref_doc_id": "3021f7c1-9ebe-43b0-9452-6db7e6d49216"}, "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64": {"doc_hash": "f955998a2e11a246b551ebd67a1c7692ea07c78873d3efd2120156fe78c2b495", "ref_doc_id": "2bfca846-68e1-40ac-9716-7d8d551ae833"}, "25063585-9f14-4c7e-836a-a2956319e633": {"doc_hash": "94f79c5d4548409e2367f899267df75991b3772a735f31b18cf9effee27f2895", "ref_doc_id": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca"}, "604f912d-6dba-41cf-ae04-4146618412f1": {"doc_hash": "8b1450dcab1e918d2f4200a9245c82c6f03609d13b3cb9b0eec3661b003c616e", "ref_doc_id": "a78142c8-9f68-434a-8f7d-64459282a32e"}, "b27f419a-1eb1-4044-a004-2181c718d9db": {"doc_hash": "5a5db165e65daa6dc85155338f59ac3699ec78518e47655f0a5bbe3ca0a2e190", "ref_doc_id": "ce1a83e1-ee20-4579-bb8f-b9ecae516863"}, "2e7b7a46-2077-4163-8fc6-ea5e0116eff7": {"doc_hash": "1685997b6749b66155373a218e34631bf227f1299ff92240847e551d80d298a8", "ref_doc_id": "8356bd9b-ef43-4463-9571-a521a944e9cb"}, "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530": {"doc_hash": "01e7d77004786e2658ac9ea1cc2ba75a3accf28542ce8d91c4bedeed287e4088", "ref_doc_id": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19"}, "94932e90-bca7-4993-bc81-8c86542dccd1": {"doc_hash": "3623252f32d41e1939fd0bc405a824a509bbb83d8fc59ad52e8526e0f9a9dbf3", "ref_doc_id": "dc9394c0-64bd-49c6-944a-3e8d172218e1"}, "692966a7-e54c-4abf-bc2f-c59557e551e7": {"doc_hash": "82d9e3ca7011f1aac4c70f93a7257b7011d6bf53a9d1bb5e162a83784e6901ca", "ref_doc_id": "70f399f2-2ff6-4259-92cb-bfde88121616"}, "e5157153-76fb-435d-b2c0-9ecdf6ce1241": {"doc_hash": "03bb903a44e634831d4cf3b82bec518dd34aba9e46a8aa0f0abdc0daaadd42e2", "ref_doc_id": "17bf3916-9433-4a71-b068-b422aa99263c"}, "c2e2df9f-8609-44e2-8986-dec7ba509115": {"doc_hash": "4ae2601827c777462f9ca57e1149cae985c7021e077b4628697117ce821e46a8", "ref_doc_id": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa"}, "c02f556c-e845-4383-aa94-fe08bcb664e3": {"doc_hash": "9de80798d1a146a3610e6244ab0274e8bf4265a4355402506fd93d52d5604003", "ref_doc_id": "439904d7-435f-44df-bea3-fcd9d8bae6aa"}, "2407ed10-0410-4965-996e-0daf93ba18a9": {"doc_hash": "18d7820d5510c937c4b61c3d22c38fe16f160ad51918ead56be01fc9db726a8c", "ref_doc_id": "0db2233a-5a0f-438d-b198-cf1cc962ad14"}, "ce755bb8-eb14-4a1c-897e-1fddeeaef178": {"doc_hash": "4c9db1d2395ad878e20a77a1d4355bac45fb033e416639cde7953d174d24cd9a", "ref_doc_id": "25e3aeda-b157-4ee8-8db8-f05c116ef821"}, "a96fc25a-3f3e-46aa-84dd-82f6c3847183": {"doc_hash": "073e46462b8bb3cd3c1d3c146b31067f08e87433d4976b4bd076429aae5de200", "ref_doc_id": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040"}, "5593171c-b3d2-4d7c-85de-7e23b9578622": {"doc_hash": "226f566a1e1472d407d8be167b83b695ce1a7cf9b762faece2d081985b1ef4ac", "ref_doc_id": "7512abb7-f21b-4ccb-9146-67085b74b414"}, "b16eb01f-efdb-4a30-8dba-5369d9780275": {"doc_hash": "6f4daa928ced2c985cba761386ee7117fe485ae3e2e259c29cb393d9016361d2", "ref_doc_id": "bca153c1-f76a-4f5c-a384-063b344a6fdf"}, "f56de84c-1275-43ef-8612-2b179d6f6374": {"doc_hash": "f69b6ec09abd24b36030ca20d9d48bceb12a27533e8ec846beef544b2393d3ea", "ref_doc_id": "81171af4-919d-4cc6-94eb-db878b7afce7"}, "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2": {"doc_hash": "2fab079d5f40799af7293c9ca44f736e8656f5ccfc2b82486fd09224d3fc2f5e", "ref_doc_id": "bf2cb67e-6274-470f-93a7-e92a81c9d921"}, "c1f1e583-eb55-4df4-8f4b-f567d260900b": {"doc_hash": "01d48c525d516cac4abdd995457fd86c9b3aa1ff17ecc54256741e81c8aee0cd", "ref_doc_id": "4345b23a-d8e4-4600-977a-9364161fe6ba"}, "82829188-ab31-45aa-91e9-7d523c175c66": {"doc_hash": "69d6f64bc721ab81fabc90a41c8739700f5ccf4f15a8459bf629532661fb3074", "ref_doc_id": "d39cf93a-f881-4804-8922-023f2bd8514a"}, "36a400d2-2290-477c-837b-02475c4b2fbf": {"doc_hash": "cfe51e7d800746e7d255e738b4808292352d461df0580ff4f20a213f9a8deeef", "ref_doc_id": "03e098c5-6137-4b66-8a3c-94af492101ad"}, "c8623e15-c59c-401d-8078-8912707394c5": {"doc_hash": "634901b4510b1def7c1a01ae6005210ad4e4e88d71ec9a0456054128c40c16c5", "ref_doc_id": "dc825136-ae1e-4706-becc-2e3088e4be4a"}, "8d40faef-053e-4772-aa32-67f33f070223": {"doc_hash": "f8782c0c7a201b269a60813a8b7399bda06638997f25d02fd329f41515bfa782", "ref_doc_id": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53"}, "e1c93542-3556-41e1-a259-89aec374e6ab": {"doc_hash": "e5201011d49874af088a6eed87d5c6625ab0fe87d04029b896f2b7b85add999d", "ref_doc_id": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe"}, "5a4eece9-67b5-43df-a81c-2f3c91b9fbce": {"doc_hash": "f008b45104594712dc4cf4f6dc12ca11b0c288d24d307b24b88d939389688c67", "ref_doc_id": "00267259-f81e-4f0d-986b-ae00e970af85"}, "033405c9-8636-4dfa-8ee3-4ce39b433530": {"doc_hash": "22a31dad8bf6cbea51eeee991983b90871cd876f8feef25265de3a93ede6a63f", "ref_doc_id": "e98d606d-7464-4ade-844e-da68623e56b0"}, "539d2ce9-35c7-434d-825b-fd7c0df52057": {"doc_hash": "d0db3a4d7dcc3cd62f5b13565221038f5047c9dfbe68861ca6e958e04c34623e", "ref_doc_id": "82661f84-1ac9-47bd-a521-68a220f2133a"}, "facc74ad-88ab-4424-8c73-5238bb1dbad7": {"doc_hash": "4aa42afbf5ff6ff58a7a60cc52b31f10af5066d403ed451d82981dbdfa6e7ba9", "ref_doc_id": "95860c68-a20e-4c62-8a75-5d56d1a21209"}, "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121": {"doc_hash": "cf69329df541ebeddc5d897cde536b257cf1704abfd594a82a8761d09969f17f", "ref_doc_id": "8881a89f-17ba-4098-be8c-9a52ea9634ac"}, "250e7d39-44bb-46ee-b0e8-16ae0d439d8e": {"doc_hash": "f1e743986bad2f718177ffed814195aa60f47d0112ea15dc296e317353c6385f", "ref_doc_id": "ea255be4-579d-4684-bc02-342cc391567f"}, "33975052-fe24-499e-a051-aa9a7d5a83e5": {"doc_hash": "0b90b53536a58e5a486aeb0083339ea36e47d125b23190a1238853eb0eb49b42", "ref_doc_id": "ae3b191b-a196-497f-92c4-234c181cdf11"}, "3660adda-30c8-457f-b96d-c7d302555cb0": {"doc_hash": "4fe830e7d31f0fdec276c88f86afa18ab531881ae39bc153a6ae68ff53df8490", "ref_doc_id": "18b66f27-4739-4350-9276-847c3ecacd5f"}, "3a76b360-9b3b-44fc-b257-8c654892e217": {"doc_hash": "38621651dd9f737062e105b7c2d17840906c4470cec1b109e94604715d676ea4", "ref_doc_id": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0"}, "1e7e0852-9143-4d50-ad65-62c25c4d9a09": {"doc_hash": "926b746828ee92374c6b3931136d29fda2e0c0321ce9518c06556ccae57c4d13", "ref_doc_id": "773b3e28-5c02-473f-8ce9-7e73f7a8b373"}, "6af18d53-c5b3-4f1b-b368-c570bddf9677": {"doc_hash": "d38cc497054ce40fc4c4060e7cdf1eed6e85c801b1a0a98119618dda4122267b", "ref_doc_id": "940cc22b-6433-4369-890e-3450e2d8c7f2"}, "6a666477-1bfa-452f-bad1-682e5993dab0": {"doc_hash": "f2838724a8a3e81581528558afda89a0b094c7cb287a4a915c97c524e2a2f5d7", "ref_doc_id": "81ce1f78-d944-4136-b7d1-453b9768922c"}, "a07fd493-ee5f-4964-88e0-bb56a446eb61": {"doc_hash": "e1477690d7fe9df5caf9fefffa425da53116db5e7dcc14ddfab1d024ac95e0c8", "ref_doc_id": "ada64a07-acc0-4647-9c86-f31e156b6ea1"}, "8ed46f10-7f86-45c1-bef1-178a05b08468": {"doc_hash": "ca6f39938716f4ecb6721c6deae97576bd1cfd6fc344df6e4a65fe7e97e45116", "ref_doc_id": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4"}, "64a43dd8-c4af-47f0-9faa-86d752cceb8f": {"doc_hash": "27f2c2a5484857bf22fb51de3a48414561194a120768844102c25899bb40960d", "ref_doc_id": "89703fb4-6bdf-414c-8013-73a164077950"}, "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1": {"doc_hash": "ed63e81cc5dadfcb020976a8efa3b2d135b4716b9d2a6da53f6fc9386456d046", "ref_doc_id": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9"}, "7e203c21-d2d0-443a-8ed1-f316aac108c5": {"doc_hash": "81b936971c5e79a70ef1c8e29458751c17a904d3aca05a5b9c805da6c13145ea", "ref_doc_id": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec"}, "a77e394f-eda1-4b8c-9199-7d2247c9d872": {"doc_hash": "e32e1b566f57ade04fd2f0d0d85a9533a4e0b9a893b1740b2758ca87536d88b7", "ref_doc_id": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea"}, "0eed630c-d594-4360-8a84-1ea74e62f0f5": {"doc_hash": "233bcb8c4fed91a841577ea3ad3cbdc68ad5d5cd763718e9bbc567b7c59d520d", "ref_doc_id": "ed780a4d-0a72-475c-bca6-5d65e9a568aa"}, "829f1387-308e-421c-95ba-caff21e34bd6": {"doc_hash": "4dbe776ec3bba7051f76ad881ad202c79482b4253491ee82f2ca95274bfc1d9e", "ref_doc_id": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a"}, "0c72e829-7c9a-47a6-af31-9fe3543bd78c": {"doc_hash": "3540b404d09452eed66869ff959dbb54acdd9cdfcef3ed73c738eefa302ce3a8", "ref_doc_id": "a1447816-0a63-4617-baec-c158bc7a73e0"}, "3473e066-8864-4ea6-b7bf-17c42665b599": {"doc_hash": "9680122e1c675780af4bea78feed94234199aed38e2b41e7fc2549359df4a025", "ref_doc_id": "3c57573a-4c54-4c29-998f-ccf231b85e67"}, "4f305c42-d33f-4b8e-bf77-2ea69ace07c8": {"doc_hash": "9b7f3fd3d7e148f3d79abeaca10cdc49a931c980dfd1e85865cd764a79fdf872", "ref_doc_id": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c"}, "7c42db89-d590-4f93-9be4-b85a62312c04": {"doc_hash": "35aa2ef518ed1d370a386159a410d7b155c66933972d4bd9f0c9e58fb71e52b6", "ref_doc_id": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1"}, "270348f2-a166-4b96-b28a-2d3bb355e69d": {"doc_hash": "45a8dbb3cc85dd36786c49d7ad10c6b445c0377cf6bbed9b2a3586f05ad8839b", "ref_doc_id": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34"}, "5179c470-17ef-44b7-bf30-d724ca8e6a1f": {"doc_hash": "ebd0f704b310d2bdad4a7290b726cf474dbc615c7eba45567fd2cdf616c0ec5c", "ref_doc_id": "11d304bd-8210-4438-946c-abb419be8050"}, "52ee1b52-84d7-4379-b769-db8143089438": {"doc_hash": "2d87192662aecad005e29cd8fe8b4120931ef91dfc48534757c092bfe314031a", "ref_doc_id": "f0e095c9-538f-4504-b5c5-f2b9998d9e63"}, "a1e179c3-b165-44f2-8a8d-4ee950a281ae": {"doc_hash": "df9010b3309d57c29d4d344ef915fbe191552440e29499e2da2730741a421470", "ref_doc_id": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9"}, "cad669ae-bc96-48f6-86be-a7411388ef8e": {"doc_hash": "b4a7d7eeb4c95384e31e349b583f2c42d06620468f0d27761218f4904b770f19", "ref_doc_id": "052284ab-4468-410b-a097-37780fb983a3"}, "b3493286-134f-4c81-a543-24c1f94dee97": {"doc_hash": "8e3d72341d877bf0c71e698baddef91cdc145ac53127177c9ed75645a41d51bd", "ref_doc_id": "d8396d01-1bbd-4fec-951b-b547a4c01d4d"}, "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef": {"doc_hash": "343cfabfa88307ae56cd5db6d69c5e87eec046829695b7a67a1a9f318b47d5dd", "ref_doc_id": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e"}, "0969b5a3-21bb-47da-ae53-9e00bdb2279c": {"doc_hash": "43b8459eb90210999f3b2a24894900968cb3cf9b50f35ce581d7eaae554e8f57", "ref_doc_id": "d26d608d-bbca-4822-b7e7-58ad8d907718"}, "433c4723-5242-4c38-8142-e9763b695dd5": {"doc_hash": "26352300f20a78dcb6fa9d552c29cafeee51b1e8b432a9049253f09fd11d3390", "ref_doc_id": "3093d9eb-9b8e-4d32-92ad-674e99b34a35"}, "702aa6c4-d709-4041-97ee-4c6a5c57bce3": {"doc_hash": "08ac168a162630d8ba7b6a49f40d0a4dea60406a9a850bc5dfa23607fd326147", "ref_doc_id": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e"}, "9f2b3683-b974-4b5b-b968-6e44eb6bb66b": {"doc_hash": "1de7f9a05ff5b3b24177e463dd7568f9e021b2812633e69cd25882495e0f972d", "ref_doc_id": "9390e5ef-048c-4731-b84c-d2a3beabc7e4"}, "05636a71-c471-4479-9045-250d59b4d199": {"doc_hash": "9573004c6c24d4662652ae24289048b25216295996c7e008e68d84a730dc6a94", "ref_doc_id": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3"}, "c94bb528-4956-46d5-a4df-e650f74f362b": {"doc_hash": "a1ad1af794d927b3274cc6dcd1af96dba07d52145fdbed29d2dd8cd241fac42e", "ref_doc_id": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8"}, "3082a394-1cd7-49c3-b83e-c91ddfda982e": {"doc_hash": "920854b9c64a678ac36ccdde2c4e4f1d17a52209f2c70b97e021e5773340d7a2", "ref_doc_id": "eaffce81-f1f5-4959-8d60-57953a8e0c10"}, "447a6e0c-677f-4539-85ca-5c72307a10ff": {"doc_hash": "1e0ceb7b5e51b6c198b9581e71a08f98d5762ee61300bd0b717865f896cf828d", "ref_doc_id": "b17a26e9-b2b6-47a3-bde0-995ce61663c5"}, "9d43bf2f-9b6d-4c9b-a597-06f9ca591520": {"doc_hash": "59f910cc2cb0322d531c21b0509a30915bcfa51d7c179153fb3a2479f18e9f44", "ref_doc_id": "261c2441-4165-45c2-a10a-3cd23dac57ba"}, "2505f174-98d2-49b4-93f6-9c62039cb6b5": {"doc_hash": "007156c54526d34e2456c0f01192b3d694143bc1eb0d8f6071abff49fc9435e3", "ref_doc_id": "04d71240-fcf2-4072-9d74-694f4bec8996"}, "a88df31e-35ea-45b1-b79f-9a4ec0846da3": {"doc_hash": "a4eb889f090033513d63bba4e3131e75be144395c055baa7f542e697138b8905", "ref_doc_id": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb"}, "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8": {"doc_hash": "c00b00c7a19cbdbb3e1a3a5d6af4a8ed51c43f8f2b249673a1af8f34b8b045c7", "ref_doc_id": "5528953a-e1a8-4009-b345-c4876ad330b8"}, "903c910e-a6de-4f76-817c-0dec155e870a": {"doc_hash": "5e1ec4d7ee7ef1000ee5ee8cbc7587f60366952dc4d0008e32c434aa95713467", "ref_doc_id": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926"}, "5866a289-b3da-4d3c-a001-59a4006b5bf9": {"doc_hash": "d7deb2a25898123a0f2ead4f8b3047bfdfea5715900d9f32a7e13a1fcd3d4e0d", "ref_doc_id": "89b86a7c-90a7-4d81-80d7-411815e888c7"}, "87f2d885-6a0d-4836-b824-ecdb1829b746": {"doc_hash": "df7b3cc3b2f135b8fdb63a668172c7506850bf542fd89672216f0c91e5e650b2", "ref_doc_id": "9e841c0b-7318-4c90-ad4c-24737d861c6c"}, "c0af9c06-941b-4a98-a980-1dcec14868c8": {"doc_hash": "b61ec6b769d964a3fa42c38b84e82acc1379fc777107e3a764ad44e08ccaf671", "ref_doc_id": "2e5295ae-4d3a-419c-860f-80f5629a27b5"}, "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25": {"doc_hash": "a5613cde183fa2e44bb7f1ef9fcbca87046885009ac29b135bceecdd4bbccd0c", "ref_doc_id": "bc47c26b-5a4a-4652-a406-7606309d4f59"}, "e4eb8e3c-4116-4d81-890a-a1934ed06eb0": {"doc_hash": "eda9992d131e17c267d4c7a257c8aa5d35420eb7b1f3afefd4fc29d04e0b1dd7", "ref_doc_id": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d"}, "78e994e5-dbda-4960-9a58-8a398eec44ef": {"doc_hash": "bab9529c61c45f88236f70600fbb0daa0b7eb9b731ae23ac5f1faef344400a75", "ref_doc_id": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32"}, "7dc088d8-125c-41e5-bd34-8ebbf828e918": {"doc_hash": "03bb3b7ea99cdd1b612735f1b4ce35262ca5f72293b41f6074fb1974bb96aced", "ref_doc_id": "820d78fb-3334-4b41-b8eb-1717ee427bb7"}, "4a936b4a-b9fb-455e-9162-319f1b8112be": {"doc_hash": "8474d34dd919ad8c9657df169511921c7a60276a74aaa14e4526e3a8da8b3ced", "ref_doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123"}, "7549afef-c458-4c82-8149-e115c99cd800": {"doc_hash": "6f90d55d18294d75ae1f84b02d0d7195f50fdf623c93b96a99c8641a03ad1f6a", "ref_doc_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123"}, "2c71e182-997d-4d7e-834f-b7dc138e7830": {"doc_hash": "8dcb0f4bc325d8710509b2458c69bf3bd174750f7074fb8c537673cbe39aaa21", "ref_doc_id": "3ecf90ab-94be-44d6-9343-605105ac497e"}, "6901c4f7-aa1c-4fd9-94e9-085fab8deae4": {"doc_hash": "f030586aa61f0d7ccd36119f5b9630fc927af4931951c4dcc07e7db93b7ecac9", "ref_doc_id": "e29a0a17-0ea8-4972-a9a4-c569e6365701"}, "c78e873b-ee41-49a4-90f5-b0d8887422c3": {"doc_hash": "584fbf18041b6b7594335b4a088eac3aad40edf6b5a4b707c70b7dfa62de0650", "ref_doc_id": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa"}, "797a48ee-2ac2-4e05-9bb0-8e4c54754eac": {"doc_hash": "f8954db07c740720fc2a083fac19f7c6f6d10cb1f5e8ef8d0cc6254bba8261c9", "ref_doc_id": "abb61571-5049-463c-b4d9-e8a6cdf330eb"}, "c676458f-04d8-4041-9ea1-c947010dff53": {"doc_hash": "364f1823ac9a4d8ab473958516e846d067796e53ad76b91dbefa96ba82c79d59", "ref_doc_id": "3b959379-13d3-4c66-820e-ef6ae5e54595"}, "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c": {"doc_hash": "4837530b8491de651ee2cbe9aa57f18d50e3f019c43791f5f23301de92ed4d5f", "ref_doc_id": "18a09b06-e824-4435-93db-f2259404c708"}, "5631ea16-89c4-4cd1-a971-2e1bd07dee2d": {"doc_hash": "5cc3316a6e85914228d750d8428f230931d21ee31facbddbd250a286edbc40aa", "ref_doc_id": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2"}, "f16298e7-2f76-42f7-9d44-c1fab304825b": {"doc_hash": "b3e34e14e214c30ab48981fb073d75d1674ed11107cc181f81fd5504ba4dd164", "ref_doc_id": "26c7eb2c-6ac1-4f87-af66-939fa469d08b"}, "372e09b4-a41b-491f-a954-717248f64974": {"doc_hash": "8cfbef72baf539aad6054d2d76dbe1328a07831c852bbc06bdf09038fb85f1b2", "ref_doc_id": "b22c7013-5aeb-4343-861e-30e36c76d314"}, "ca3e349b-fcaa-4872-9016-4f32585cd66c": {"doc_hash": "e6f7d1ed8756d4b323fb332eb32114aec0eede1ec8b1035d3d2355b0f92db78a", "ref_doc_id": "58f2d3ed-b7f1-4c04-843c-70a0e6384767"}, "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2": {"doc_hash": "fb3f8f222775aea33083baf94a9ebbab60cf2068595ba47f97da5ca94d04490a", "ref_doc_id": "f5146bfd-dd6d-48c9-9108-5d654c5aa181"}, "c01cad1e-baf0-4514-b6ab-3df8dc973827": {"doc_hash": "f1f2fff37cb8490b82d38e485d6c03dc23d69fd43fbca9d283a50abbc582c628", "ref_doc_id": "d547d570-592d-4cb0-a51f-c504d544c191"}, "870c3230-bcd3-49bb-a774-c3c265fad517": {"doc_hash": "263b4fa1bb71ebe06a924d02351aab9d85ecc92909fb5f6724faedd529a52af8", "ref_doc_id": "aac2e449-4cee-4fbd-9697-f93360b76e19"}, "2c315702-c74a-425f-95cf-aa7f21ba6275": {"doc_hash": "05711e166bcdb31eee157664023704c2bba907b4e5d0867a1080d158907ec118", "ref_doc_id": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378"}, "9698d911-4ec1-4061-8ec4-c9de86f0ec0b": {"doc_hash": "3fa4e6d3ed9152a19a96a4370e25fa4ef0583c14c895bb9a3eb439691cba4ed0", "ref_doc_id": "7a9ee7fb-d475-48d4-8862-cafba70d52f6"}, "2c94d49d-17af-41e4-9621-7b5e6450b367": {"doc_hash": "c5c088909bb48b647bdb7114da96765c0342712864cd074f868a068bb50aad24", "ref_doc_id": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120"}, "6dd6e451-5c6d-4da8-91e6-5b809cbb2260": {"doc_hash": "3a3587bba35b866e5a6833f2ed96e23518e362a3f02d4da0ccd1867956b0b4f7", "ref_doc_id": "1b44faef-8bcd-4009-b5b8-dcdccb43b671"}, "0d614f08-4ea9-4e7f-9251-b35cf32549e5": {"doc_hash": "e822a2b318bdb8ccc16a7eea1840da006c819c17395133827e5fa5e1bfe10a8b", "ref_doc_id": "fd7af22f-541c-4da0-be81-fac44d754150"}, "b8fe2fb5-e262-498e-a07d-05ad188e6b6e": {"doc_hash": "7de27328d4bd5b59f08120af4bfd17b2949b768e98db8ce9c72bcfdbaa79f850", "ref_doc_id": "6126b206-1c15-44f6-8d50-00b6ccccb844"}, "d9f10a91-8e5f-4f4d-8f87-2af269a66b92": {"doc_hash": "59a1d9cbb82d324d22c26ca3484eb5fe85f4e3850f624c0480587929f1b317db", "ref_doc_id": "94f7738b-dbba-4421-b9f8-e30b407d68c4"}, "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd": {"doc_hash": "4258c0a12666453b13c129c17a06508d30f89cc356aaf27af014bf1a45ec703d", "ref_doc_id": "d380bb2c-5c9c-4fae-8701-85992edebf36"}, "bef3b984-31fd-42b0-b39d-8f2fe64fb443": {"doc_hash": "f7b5ac2e331e5d2f8da60e56c5e960b86eba134590baf421aaf7e60b7fd0c278", "ref_doc_id": "2a7bde72-319e-4edc-8264-af5c78526b40"}, "befeab50-a804-46f1-8722-bc31dc6d52e4": {"doc_hash": "3efa7f9fb7a93aeedd0d1f70402924e755ca05ff24e35326737c95b626a8f462", "ref_doc_id": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac"}, "b67796a6-a9cf-4173-a287-4adff8df6d4b": {"doc_hash": "2b6a5eac351c331927bb18165bc3163a19f0622df8e1f71d23264d26995115cf", "ref_doc_id": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53"}, "67b7b9b7-4890-40cc-8c10-e546a2826cba": {"doc_hash": "b794c652e2897e5867936f61132ab2905d05d95a89eec5fb29f290a180d563f4", "ref_doc_id": "5c7600e2-0aaa-476d-b0a9-287364ac394f"}, "2375910a-0684-4ff8-955d-d8b8b43535d1": {"doc_hash": "b8eb7f1ed81e94062653eed97a95bc1538f642a0faaff42cae192bba0a018e06", "ref_doc_id": "116ab9b4-3b96-4b46-a6e0-881bb74204b2"}, "5ee4322d-3a2d-4bc5-9108-537d571eccc6": {"doc_hash": "e008240a06699c6450b1d028e39997cefb11f7b73fe33ce88f2c43704b1acebc", "ref_doc_id": "17a7f0db-4838-4fe7-ac91-84a8a186aa47"}, "59c4c9ed-f963-4760-93b6-dd7c3a97bb54": {"doc_hash": "a71969128d6cd18964647805f9054462b827e554503f460d70dab6bcdf2d12a7", "ref_doc_id": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8"}, "67cfb681-888c-4ffc-82f5-f02734835b54": {"doc_hash": "00e7cf6f57414c6fc1e5b5348334297b86125aa08529d07358b64444434695cf", "ref_doc_id": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a"}, "8698b735-ee66-4b51-8f50-cdb723ee0c48": {"doc_hash": "61ce6d80e1c205402b940d993fd87cf15ffe8b4fe15923933df45d788e01d321", "ref_doc_id": "b5109216-4f8b-483d-bc75-09ee3d9a3d67"}, "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58": {"doc_hash": "982f5980866027c780a55388d793e98bf72d0916119a11a9ff590de27aa08fb6", "ref_doc_id": "bbd22630-8de7-4267-adf3-b6aa5c88fab2"}, "d2f6bd59-18bb-493f-9220-a47f52e372fe": {"doc_hash": "26284636ba62a522aac0f1f9d8efd19002553688b3ae3b85176bb2a4b2bfc867", "ref_doc_id": "aef4bcc2-7867-4303-8aad-2e2a449d5adc"}, "778d0172-21c2-42ce-9fd0-d50ddecb9b57": {"doc_hash": "922217b5923b970e40f329f1bf0ec288abfab67b3ce3a7524bd848d312e32ead", "ref_doc_id": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7"}, "63186939-9531-4e5d-82d5-3fcf84655976": {"doc_hash": "453984734ea385f45031f33e6a8f60439dda4fe071df539c1dde709fada0a3f7", "ref_doc_id": "578c62b5-566e-4b6a-9aba-2a47bc4d940b"}, "23fda1f4-7289-49ec-a59f-37a7a607cba0": {"doc_hash": "fc70a334eac013e5b32e55484bfe9f5fccb44276c760c1ad9aef5438153afe95", "ref_doc_id": "9b4076de-f213-4e18-8c5d-fd15e2b33525"}, "3fb2305d-b12e-48c4-a356-1600c347320c": {"doc_hash": "ade04bdf0c26ed579848589a1916f275f48e6c67f355820d04ecfe1b6d9db311", "ref_doc_id": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992"}, "f56976c9-3bd6-444b-9dca-3bf42084a562": {"doc_hash": "6316f3ef9fe116e7de6c60251c40b502504f91be69498a0622411296c7ca6c35", "ref_doc_id": "4581fd35-6736-41bc-a784-30ec63c244de"}, "95828a01-1119-4b71-946a-c8883f2c5504": {"doc_hash": "377748687233f6019e3690e8e3c5ab013ca198e533630bd6437325512e7da663", "ref_doc_id": "0234af90-0173-4e66-91a9-2619cf5419fe"}, "27e555a1-e899-4710-b03c-4fb670054999": {"doc_hash": "4e9510152f77b3ed239c0536dc631744f7b8ecd64ab994d24cc3e8ff0566f5d7", "ref_doc_id": "c4871e12-b268-4e58-8beb-c71f7240f4d8"}, "772005e7-7276-43a5-b3ba-42c7290f0c36": {"doc_hash": "ea9bfffc42f65c719240013dacc334005c6b8ebc236d4f7116b95c1c1701c33f", "ref_doc_id": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1"}, "f69522d9-1b62-4924-a6ec-c4aa281058da": {"doc_hash": "d87a4c224425fa60bf44f2af18d7ca7e0f63c3e0829f7f77d7ba00ca66142126", "ref_doc_id": "6255259a-15ae-46af-9cff-b8c237f91979"}, "ddef57cf-090c-4585-aa1d-49e2a1e6748b": {"doc_hash": "8f911b9a5704ea686a61fd5b02c7702188f7cbcaa1fd4d24b22c89a7a0a6d03f", "ref_doc_id": "51358090-0de4-472b-8270-27418c9f50f1"}, "50c21c11-745d-4649-9456-0b291bf29d19": {"doc_hash": "cd1f30d7de06d199a004805023a3249e8bd5445767243eab03d40340f12255d5", "ref_doc_id": "24a26843-fa30-4ebf-b858-3a378bde9613"}, "23b7a614-0705-4541-905b-6ef766812a2a": {"doc_hash": "6e4dca0edfeede9e4cbe9c0cf905d8428cdf31727d829d19cc580262c52534f6", "ref_doc_id": "3117244e-bff6-4c32-b6d3-b8c25474aa23"}, "fec6b74a-2339-487b-bd6f-71fdec66b791": {"doc_hash": "88f17f5a8a2324318656b51a781f0c9791f78b56bad52b747651acd6f94e10f0", "ref_doc_id": "fce78388-527a-4613-b394-acf00394ed64"}, "bead822c-bd11-4d9e-a811-2e377bf32cc0": {"doc_hash": "2e6bf9daf260bfe8d513b02ef1537db647ee4578a73c075b14ce7f425c79b5ba", "ref_doc_id": "02f8ebfe-5498-4788-add6-913a59d7f92b"}, "7ac58128-4d5a-455e-a473-58d1e7958af6": {"doc_hash": "71b29dc2d21aa770d1da3a757add00d11ab747c334fb648e695488da4d325bf6", "ref_doc_id": "61379e76-3b4f-46ca-aa98-5fff36e5049a"}, "0314465c-4399-4d05-87d5-4cedf3250956": {"doc_hash": "039f519bbaf3eba77ea4e625408dc3cc549c7bd12c3b8b8edf7de3b16c66bc52", "ref_doc_id": "c0934b85-61ce-4bfb-807d-d698d29af649"}, "80067795-fb75-46ce-bf5a-61015161aa5e": {"doc_hash": "555d724670867b58194f0e35706b2a5085290ed355aa0da8cc6b241881055cac", "ref_doc_id": "b772fbd8-ea12-4ef4-8cad-a1f31386851f"}, "16606eae-35ef-4e6f-97a5-f80ad56958ee": {"doc_hash": "031878063ebfbf15e134809665a6581b56e36f80dab76ae4cb8544404fe4c1e2", "ref_doc_id": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89"}, "da93de1b-e8c4-4faf-9df5-0304aa74c9c0": {"doc_hash": "b1ff4315dcf1a70d018084610cd22f6dce6bab882aea61eafe6ba69dc9979d0d", "ref_doc_id": "db065740-e8df-4964-8479-19a07336f6a6"}, "5472cd78-c030-4815-a2f1-33245f14f018": {"doc_hash": "e555720f586428f53874e6d54e81a20ca8b02bcb5e89a82e87520470573cf24c", "ref_doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244"}, "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f": {"doc_hash": "49e4c9de9876da78867edf2b866f37b1bd56ff1fd8ea42e06aa2530272e284c3", "ref_doc_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244"}, "40fa34fe-7285-477b-a1c6-5cb2550a84fc": {"doc_hash": "f752f0786618f98102c45740f1d471434a0f578a91d22ab518cc1cefb9ab5615", "ref_doc_id": "6f93e1d4-5464-4054-8830-2ac07c97ef87"}, "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f": {"doc_hash": "5f5f2f100e6a71ca765716e39819823859b93763d32c5f71759f791ef041e9aa", "ref_doc_id": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb"}, "b69caf6b-5590-4518-a963-d1998db8440a": {"doc_hash": "28bfb498913589fa6887544ed3fdf6dcd473a5c0fcb794779587b9ce6abedb35", "ref_doc_id": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1"}, "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830": {"doc_hash": "41dc260e70d3280c3be9be154c2a623f03ec0f68de6c5ee7be025291885c14e0", "ref_doc_id": "6b7a9e53-5661-441a-832b-75efd2b7b287"}, "f1790d38-4768-4282-acf3-32ea03ee760f": {"doc_hash": "6179af6a953662ae5e5c0403f07f59368f55fdf780fef7bf120f13da2b822bed", "ref_doc_id": "47229daf-7ed7-4391-a744-ad1691bc03a9"}, "4663c078-0471-4f17-b704-37a847b3578a": {"doc_hash": "87cb65956b6dea74664de882834e9ab720720aeac4432e5caa25c8e20a769367", "ref_doc_id": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1"}, "ee00678d-0531-43a6-b4ee-24d47f7b854c": {"doc_hash": "92a4d96d3bd018ec38b3adc3fbf6e03d860f25b4e180afcc1b4139d8fddbce2e", "ref_doc_id": "c134065a-14f0-482b-a69d-91baacb5d494"}, "40002650-dc78-4ca1-a842-1d2820a2c9bc": {"doc_hash": "6bfd8f5edf9145b6239260748b318c28faa1948fc1716ebfef4bca00af3b5b0d", "ref_doc_id": "de3d45e9-9ea1-4f75-949e-e30b0052d539"}, "9687aeb0-7763-4074-a0a8-c49058fb0ffb": {"doc_hash": "966fd093cceda5b036ceadfca46c778e30cac9bdb8d4e51e227f24742671fa44", "ref_doc_id": "e42c5557-69f6-40e3-8c11-66ae89fd0456"}, "2abc0d0b-6666-4b3e-983e-36e820323e08": {"doc_hash": "564f1fff499bf2e2a30c755faddffed4d92d119ad2de89778b999ac8814cb3ff", "ref_doc_id": "f087d8d5-c0f0-4662-b436-3ad78cd14624"}, "c914503e-2bc4-431a-941b-5ecf283e5a35": {"doc_hash": "18756a2b756117aa968710a5290a2b45dae291877835f4a90b282b06a78fad0d", "ref_doc_id": "9562c403-41d1-416a-9246-94e21f9337bf"}, "283ad8c4-c5d4-4113-9c45-6e42828c2bd6": {"doc_hash": "fbf34d8d84e5a0d5a30defe6516a20f4faf2f543b6b03b953ae679589de1d3aa", "ref_doc_id": "30a8e840-ff81-4b29-a293-91a421431712"}, "12fc93de-6a8b-45de-ae87-9e824744e5ac": {"doc_hash": "b4a184095061500038654206ac813accb8bb3e2a60a2da321e6e6b3f8b250c16", "ref_doc_id": "863a67ad-1fbe-4efb-9174-0e58326f16f8"}, "fe6d77c4-5744-4c45-bfff-03e9475499a4": {"doc_hash": "6883b01d78beb0347bd160e4d80da8e601644cb0283fb3fc692cb826fd9fb693", "ref_doc_id": "a0321fdb-df92-44b3-bb11-95a8a7f699fb"}, "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58": {"doc_hash": "e1c7e2a800ff69dfb90027c00dba24bd27b9e5c7549532c7574f46585440fc10", "ref_doc_id": "e3af0884-3e2a-4ed5-be90-99c0249959de"}, "4431616b-6726-4488-a27a-09e0aad7a27a": {"doc_hash": "383c98b3f17a976ff31ed76ee7070e5fbf515c97c0a857af78472201b6eabc28", "ref_doc_id": "2856558a-faed-4f27-885c-73094f210748"}, "5795a666-d615-463a-82d5-56ceeac30476": {"doc_hash": "d5aad40debd8f9ed966b5b8438aadf330d7d159b03424fa0fd4b1e8595990690", "ref_doc_id": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5"}, "85527e92-eb41-458f-91a6-751735c62a23": {"doc_hash": "cc61df99328d32a82da5fe0652fad544826ff1aa59ba108031c1fa8694e3a090", "ref_doc_id": "4cf5cf0a-71e7-492e-839c-fe733e123ca6"}, "129acce9-c3ca-4527-a94c-a1bd7bd08e33": {"doc_hash": "dd5f7a7480d9a6e0f31f885c462ec586878983c3b5d7781c9668236991c91a4d", "ref_doc_id": "f7f383d3-70de-4969-ab49-14d84a7275a5"}, "b051c646-22dc-44c8-823f-dea41902b9e0": {"doc_hash": "88436accb5d502e5937bfae33e8affa8aceaf68f2864f5a961b0311373215328", "ref_doc_id": "b393549d-e6ae-4799-acb2-1b3d290b4de9"}, "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4": {"doc_hash": "786d4ffb1197ad83a95b15ca031ba8060f0ae32f333a7b66c46cc4a0373cf111", "ref_doc_id": "57ee30fb-db22-4b07-be22-1d6760eaed09"}, "1e846a4d-efb9-4bb0-a805-b24da1fd6101": {"doc_hash": "bd2d0b2d7e7441fbd24bb4bf648e29ba35cfd6fe535f721968968c3f536fd97e", "ref_doc_id": "5b716c2d-7dee-48d8-8294-bf942bde1c5a"}, "c5de2a2e-604d-44d7-9122-f1e00ef9720b": {"doc_hash": "6ecbe561af376734126ad80eeda298021a61413c1675c14008986df0966e34a4", "ref_doc_id": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e"}, "cd36e93f-1652-488b-8342-eb7c92b5ce6e": {"doc_hash": "9450378b67b256738869d8d6dcb501503aaf69a9cd424c71193323885746b718", "ref_doc_id": "f0ba834a-0f18-4a90-844b-b459fee5f3ef"}, "d3f390f8-3dbb-458e-8d82-9c370e27ebca": {"doc_hash": "006467a2877053acdee89dc94975d364d3239b58826599654dc9b39a2f7a6a63", "ref_doc_id": "e53792bc-88da-4a55-931e-697331331fa0"}, "dcd995cc-58e9-4129-b3c8-9a603995d898": {"doc_hash": "a5bd1863ffa92070719f09bf87904a536472598d5f904a80b29fdd5f444e7479", "ref_doc_id": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e"}, "9fc08083-9edc-4125-8b2c-7bd929dd5715": {"doc_hash": "3beca8e4412b00dddf46c04983e337611e9d3d1f50d6a9502e48f8a213ad1489", "ref_doc_id": "256ee66a-bf3e-46c1-8433-1230e80c4df6"}, "8bd35713-c665-4e9f-9747-a0e1b9042d52": {"doc_hash": "49cb8e6491d15d28ffe730b3cc200529db285f765c19ed53a303dab30ded79fb", "ref_doc_id": "62db627e-707b-42ee-8ed1-bc3b95a5226b"}, "be5507b1-4d59-4284-84de-5e0ba0888c5e": {"doc_hash": "c846e45251a54ebcb2643c8783edd0881fec170deddec0144b7b4c4bc96152dd", "ref_doc_id": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d"}, "24ee9238-b514-455f-a71e-f5eedaef6996": {"doc_hash": "66008a087d92874668ba6f06a08e620246d177b1c2b78d63383036abc73ef0f0", "ref_doc_id": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4"}, "70541635-e91b-4d03-ad84-9cd710d8d48e": {"doc_hash": "4e11f0607959d76f975f4edec9849cf8b5af4af3dbdfe4e3b10e65e9ed20b1de", "ref_doc_id": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159"}, "1331adc2-e36c-4df6-8b61-c8f12fedbf36": {"doc_hash": "62e6ac71454a12cd0d5297e7313d40ab5507dd1795d907945b4b18a27015a130", "ref_doc_id": "477228f3-473d-497a-8bcf-8fe22f733d3d"}, "c85152fe-d901-4aea-9c99-3feb491c997a": {"doc_hash": "cda9d3f1f61f91a354635773efc2694617d1f61d5ba49044910bf461c5fd5e2a", "ref_doc_id": "ee2f96ea-ae01-491e-aa4b-1df5caee714b"}, "be39d582-2687-4dc2-ab1a-811fd8a7f64e": {"doc_hash": "a7a67f18f758ea250308cb8bf967d6dccf25919da8062b8a4b11ed108769b520", "ref_doc_id": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502"}, "6de89262-d55e-4917-ba9b-944c56f0494a": {"doc_hash": "f21950ea4a0c380be5e5faf80ec89bc1e8e0574d8b3b94eef603c24209a8c43a", "ref_doc_id": "19b2f7c6-149e-4008-9ca2-4d21443b7491"}, "cf1beb93-e72c-4e87-9196-8a06ca2540ab": {"doc_hash": "793194bc6716fd1309daa1a741c9f77a9f5faefe2dfd8b81c4dd1244031b2e05", "ref_doc_id": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e"}, "53b5eeef-535d-450e-a8d3-6b96ae833a9d": {"doc_hash": "c7bf2286ca06ffc153f64f3e0c88185864a095d65191d86ab7b12ee9a43ece81", "ref_doc_id": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a"}, "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f": {"doc_hash": "6f1b0e5962a33c634e92bb1a42dac5b99af1e934811dc4e2ec5672e524c31a49", "ref_doc_id": "961c6b2e-0554-4794-9539-48df93aeeef2"}, "20b1648d-1010-4845-982a-f3aeb7cb9df9": {"doc_hash": "57f23285cabdd9ceb73b45f78b6ccae0f4be5a7fbe7e89ef1726c9b6f4cb049e", "ref_doc_id": "072db9fa-5f01-4a27-a171-020fe76f3b37"}, "66619eac-0a60-42a9-b2c5-f7e4d638dc44": {"doc_hash": "fbf98fdf601a8cbfa9421cc0c390b5eb7eef7cad7cb78a88c55aad8a57fe701b", "ref_doc_id": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1"}, "1c786628-34fb-42fe-9f8b-5f20c447803b": {"doc_hash": "196ba71250606895f6c53fe6dc37fb2e924724904f485bfa9e22293ea3291025", "ref_doc_id": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a"}, "e67e559b-ac83-4048-aa23-7fb4cf7634fd": {"doc_hash": "560afe0d40eb021f35c6371012c960fe0fae675454781d1cc76bbc3907b10c2a", "ref_doc_id": "0c956911-fdd3-4a8c-9660-127fbf17afa6"}, "8deac4ba-b6d2-4fdf-9a0c-3193562a049c": {"doc_hash": "e756d1fa543b8a300ad1f4a84f727cdd255188d8210c982fd32ee1f566dee298", "ref_doc_id": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4"}, "82e247ec-c751-43cf-856c-4b9305678284": {"doc_hash": "15903a45761036e48385132ef76f4319b6b994baf2d9d1b77768222bd1e2607a", "ref_doc_id": "d4d759c8-7b5d-4493-9d65-0cd70589639f"}, "10e5d866-558a-499d-ad57-57208363e8bb": {"doc_hash": "84470eb4bf7be700d4690637566547e8c13c39858ed90872e092590d1537068c", "ref_doc_id": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe"}, "e666b745-fe5b-4470-ba64-7ecd573acbb6": {"doc_hash": "8d92f0ce0259dc94c22b1bdf5665ac9aac6d8a0a25695e635eee255bd69c9f7f", "ref_doc_id": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70"}, "6a0a74b4-f508-4b7b-ae58-3336e57e9c16": {"doc_hash": "ec5f21eb124c69bf981ff7b3f3669c6cc0c3ef3199d0551d89d1ab1efb61411e", "ref_doc_id": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb"}, "9215469c-3a99-45c3-8979-b22e4d10d0d3": {"doc_hash": "6f21de8ad84eff01c3ad7d6a8b6218bfa598afa6f6d8864721b95ca3ec2fa6e9", "ref_doc_id": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b"}, "9e067826-57fa-43bb-8dea-4f30569f03a6": {"doc_hash": "d0a238d451f557023ef08656b10c0f8e0b4cfc3d1413b2e87b7b01bbadf46004", "ref_doc_id": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d"}, "ecd31646-bf80-42af-99f3-2788fe59ea15": {"doc_hash": "c0064eb6a4694f3e4352a30556f13d6ab1e26d466ef98529785df6990abb17ab", "ref_doc_id": "93099d44-6852-4806-85ab-84d654489dbd"}, "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f": {"doc_hash": "1567b5a4be1f159b24087c7bd807b391ae2c0f73e772b0515e3d976d562fe672", "ref_doc_id": "ced7c12d-3792-403e-9d14-2a51a9448fc0"}, "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94": {"doc_hash": "97d195a2d853797c0a7a5bba38f72d4f66dc3e18ec22796cfc71f152aa029ca7", "ref_doc_id": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe"}, "a643d7bb-5024-4ccd-8e46-623292978454": {"doc_hash": "66dcd1a68f466e80bab3fde2cd3095f687aa11c381a672cbf772616fb7354323", "ref_doc_id": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93"}, "86a1c76e-c2ee-4953-a619-dfbbfd9beb39": {"doc_hash": "976934d95992b53f9e92306d8d285f0ea0d890a3894c27ff93b7ffd79bee54fd", "ref_doc_id": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f"}, "e36834c7-2a8f-4483-8ec0-413205b1dea5": {"doc_hash": "c9c4af20b28154efd695289e0ab577c3749b35e15628401ed5c7d13145cbca38", "ref_doc_id": "e508df84-9264-40c2-aa82-82315bc442e7"}, "532697b7-ec72-41ad-9dbe-e1ed57b7917b": {"doc_hash": "9f4db4943c792846db33018ea3a7b2aae5de65fd03f1808c56eff0e520abdde5", "ref_doc_id": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd"}, "e963a28d-552a-45f4-9ec2-76023245927a": {"doc_hash": "7d8380588dfaefbfe929b156fcb43f8071e6c362d5f18aab3822e35613edf108", "ref_doc_id": "36d2a341-899f-4f94-95cd-a952609cd2fd"}, "9ce827fd-a136-4195-b8df-3d30e7dc210f": {"doc_hash": "b35d762349427ab115c473473d92d6a53cac3d47518768589fdc72427c3a8961", "ref_doc_id": "ac141999-281a-4017-85b2-b11e038c1dea"}, "fe29e92a-4453-400e-ada7-86ec463cda92": {"doc_hash": "2f079a6bfdbc38b541b50cdebc1f8a1e50354df39f0e08458571273f7b94d28e", "ref_doc_id": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f"}, "a884050d-6aec-46e2-a38e-6bfda8af1a07": {"doc_hash": "b50aed6d959b442238e337af2a214d3b3e014a66b97806c3dcb9cc1fa68d785a", "ref_doc_id": "02b98683-ef2d-4966-97be-17ff4f2b7b69"}, "9bbca8e2-87bb-4617-8884-95f1278f1c91": {"doc_hash": "a5d5c3b9b6c5d07a4cff4fc7eab31a1bd403e3e3c957b783162d9e51e97f2cff", "ref_doc_id": "c9d33a04-b771-4d2c-85cd-362cb664dee1"}, "acf6b4c2-7e01-429f-b754-672e90a9d718": {"doc_hash": "34a4969667beb6e246a507dea92ec796732d5b4b835714c72c6ae5cbcf9c57cf", "ref_doc_id": "549786b0-3e20-4282-bed8-c66faacfbd49"}, "771c144d-788b-499e-b0c2-2d480b3c1010": {"doc_hash": "e05d788a4d68bca0219c0282e450df8bc3282be5f96bb52e2e4d9b6813cc05e8", "ref_doc_id": "fa485721-feeb-4f9f-ab71-d875f2ff3697"}, "8973f5b0-27f3-4e88-8941-d7b428473a1a": {"doc_hash": "4d4ad613cdba9921d238fb09fbb723499009c7411a18d1439ebf51edcaaa464e", "ref_doc_id": "4e039f46-7ab6-421a-9f50-e53e055f829e"}, "807b4fcc-439e-49c0-b9d8-3ba3f605786f": {"doc_hash": "39c6d48dcf60697c151f662e672450f33221eea0f1fe4ddb2d70641bfc80f090", "ref_doc_id": "fc223eae-d408-4c09-965d-c425ba47b8d3"}, "fa435881-3edb-41ca-acfd-f41d536ae202": {"doc_hash": "e93c96c10507cec2481afabae5c3c1e9829968c29783240507e55a6c04add0be", "ref_doc_id": "7441cec3-8b9b-479e-9148-647085f97e6b"}, "6763610a-3b1b-4443-a79a-56b39abf7aac": {"doc_hash": "f0626104f37f148f42a8b971e199c4072c38b982bf3d07ffc4018f20677cd764", "ref_doc_id": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f"}, "4112b27d-de6a-44de-bf7f-47e0a4cabf15": {"doc_hash": "676e68b1f626cb59f1ebce6d927a15ff92a2bd09010621d620c6b146a27ec089", "ref_doc_id": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07"}, "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91": {"doc_hash": "5f7650f962c635a00c306081f04463433577c2a936f2e62a328a3ee0786df52c", "ref_doc_id": "7630527c-681c-4aea-8cb1-80301045f7ce"}, "89e6af8e-8503-4b1d-8405-5c284128fd3e": {"doc_hash": "ac5643ca39c92fd97e387f2a0b2ac5c093e77dd19f193676bc1390b0d1770673", "ref_doc_id": "7d7982d9-15e8-48c8-be68-6432be3c9679"}}, "docstore/data": {"37e35979-0d3e-4318-95db-6500b6c1ab6c": {"__data__": {"id_": "37e35979-0d3e-4318-95db-6500b6c1ab6c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "09cba188-ceee-4056-8a92-de844661956a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ce0ce91d874683490e8606d4a8786aa59a5aac5a640940d845edfe2dc757d1ad", "class_name": "RelatedNodeInfo"}}, "text": "Python Protocol API v2\n\nPython Protocol API", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 45, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce5416cd-156d-439e-ad33-04d2eda3d05f": {"__data__": {"id_": "ce5416cd-156d-439e-ad33-04d2eda3d05f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "449c8982-fb23-4b3b-9681-751ea59bb2ef", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d40a6e2fe7e8a1ef4021599f6738d172e41335b9a38ef8b95f098f64059f2a60", "class_name": "RelatedNodeInfo"}}, "text": "Table of Contents\n\n- Welcome\n- Tutorial\n- Versioning\n- Labware\n- Moving Labware\n- Hardware Modules\n- Deck Slots\n- Pipettes\n- Building Block Commands\n- Complex Commands\n- Labware and Deck Positions\n- Runtime Parameters\n- Advanced Control\n- Protocol Examples\n- Adapting OT\\-2 Protocols for Flex\n- API Version 2 Reference\n\n---\n\n- OT\\-2 Python API v1", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 348, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99": {"__data__": {"id_": "eb9fe0c2-2525-49c0-96d1-3bcbcc815e99", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f0a92518531a2e1ac14b5eaa3ff634a62cf7aeb0e23138efa795da45a599dd85", "class_name": "RelatedNodeInfo"}}, "text": "Related Topics\n\n- Documentation overview", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 42, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5fc110a9-5b33-4c68-a179-5896b8fc210a": {"__data__": {"id_": "5fc110a9-5b33-4c68-a179-5896b8fc210a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "69beef59-0178-41eb-8e57-52ccdde86122", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c211ad0a1e57d978c29cfeef5372e607a1be92134d91c1a788519d94b02c403e", "class_name": "RelatedNodeInfo"}}, "text": "Welcome", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 9, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c03ecbd-a9c6-446b-8a8e-2cad41690d20": {"__data__": {"id_": "7c03ecbd-a9c6-446b-8a8e-2cad41690d20", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2cbc83b59bb470ec34dab026906198c2f12c1a96db9a8c39f512609be92d1eeb", "class_name": "RelatedNodeInfo"}}, "text": "Tutorial", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 10, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999": {"__data__": {"id_": "09b7e1ff-c1dc-418c-a7b9-b1685b8ce999", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "fa1b0394703a350aba22359f3581e818c6f9ef4a25ddfbc0767508c35c36d88e", "class_name": "RelatedNodeInfo"}}, "text": "Introduction\n\nThis tutorial will guide you through creating a Python protocol file from scratch. At the end of this process you\u2019ll have a complete protocol that can run on a Flex or an OT\\-2 robot. If you don\u2019t have a Flex or an OT\\-2 (or if you\u2019re away from your lab, or if your robot is in use), you can use the same file to simulate the protocol on your computer instead.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 376, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27fa039b-fe69-4713-98d1-a3c64b165183": {"__data__": {"id_": "27fa039b-fe69-4713-98d1-a3c64b165183", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c24b38c9-894b-4216-8b1a-fe5fd15934fb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e2918c80b4d5776957aa69b325b7e20bea288b4634c13ffcae2cca4758001a8d", "class_name": "RelatedNodeInfo"}}, "text": "What You\u2019ll Automate\n\nThe lab task that you\u2019ll automate in this tutorial is serial dilution: taking a solution and progressively diluting it by transferring it stepwise across a plate from column 1 to column 12\\. With just a dozen or so lines of code, you can instruct your robot to perform the hundreds of individual pipetting actions necessary to fill an entire 96\\-well plate. And all of those liquid transfers will be done automatically, so you\u2019ll have more time to do other work in your lab.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 498, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23df7c2f-a610-4aa5-9772-c60b136c4718": {"__data__": {"id_": "23df7c2f-a610-4aa5-9772-c60b136c4718", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "28764aff-36df-4485-870a-cfac824afee1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "35b525ff038f30eb3d938b62de5030ae3495a169b5d3de9cfc8b2a5aaf49c671", "class_name": "RelatedNodeInfo"}}, "text": "Before You Begin\n\nYou\u2019re going to write some Python code, but you don\u2019t need to be a Python expert to get started writing Opentrons protocols. You should know some basic Python syntax, like how it uses indentation to group blocks of code, dot notation for calling methods, and the format of lists and dictionaries. You\u2019ll also be using common control structures like `if` statements and `for` loops.\n\nYou should write your code in your favorite plaintext editor or development environment and save it in a file with a `.py` extension, like `dilution-tutorial.py`.\n\nTo simulate your code, you\u2019ll need Python 3\\.10 and the pip package installer. Newer versions of Python aren\u2019t yet supported by the Python Protocol API. If you don\u2019t use Python 3\\.10 as your system Python, we recommend using pyenv to manage multiple Python versions.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 833, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35615553-1e95-4ed8-8173-ccebfd5ebbdb": {"__data__": {"id_": "35615553-1e95-4ed8-8173-ccebfd5ebbdb", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6b1e57f-77b1-497b-9874-90299e01ccd5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4426906adefd16e8dccdba7f010a3a204ab45e0e2eb59b0d5360cc7ed01bb887", "class_name": "RelatedNodeInfo"}}, "text": "Hardware and Labware\n\nBefore running a protocol, you\u2019ll want to have the right kind of hardware and labware ready for your Flex or OT\\-2\\.\n\n- **Flex users** should review Chapter 2: Installation and Relocation in the instruction manual. Specifically, see the pipette information in the \u201cInstrument Installation and Calibration\u201d section. You can use either a 1\\-channel or 8\\-channel pipette for this tutorial. Most Flex code examples will use a Flex 1\\-Channel 1000 \u03bcL pipette.\n- **OT\\-2 users** should review the robot setup and pipette information on the Get Started page. Specifically, see attaching pipettes and initial calibration. You can use either a single\\-channel or 8\\-channel pipette for this tutorial. Most OT\\-2 code examples will use a P300 Single\\-Channel GEN2 pipette.\n\nThe Flex and OT\\-2 use similar labware for serial dilution. The tutorial code will use the labware listed in the table below, but as long as you have labware of each type you can modify the code to run with your labware.\n\n| Labware type | Labware name | API load name |\n| -------------- | ----------------------------------------------------------------------------------------------- | --------------------------------- |\n| Reservoir | NEST 12 Well Reservoir 15 mL | `nest_12_reservoir_15ml` |\n| Well plate | NEST 96 Well Plate 200 \u00b5L Flat | `nest_96_wellplate_200ul_flat` |\n| Flex tip rack | Opentrons Flex Tips, 200 \u00b5L | `opentrons_flex_96_tiprack_200ul` |\n| OT\\-2 tip rack | Opentrons 96 Tip Rack | `opentrons_96_tiprack_300ul` |\n\nFor the liquids, you can use plain water as the diluent and water dyed with food coloring as the solution.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1787, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "67baf74b-8983-4047-a9a6-5bcfb3347273": {"__data__": {"id_": "67baf74b-8983-4047-a9a6-5bcfb3347273", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7b483c59-04ae-4352-b811-dd69cd19b494", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e2ac1681764360b4a2ac7d610c0cea2deba50c1cfeb75d853df01c9be00557d1", "class_name": "RelatedNodeInfo"}}, "text": "Create a Protocol File\n\nLet\u2019s start from scratch to create your serial dilution protocol. Open up a new file in your editor and start with the line:\n\n```\nfrom opentrons import protocol_api\n\n```\n\nThroughout this documentation, you\u2019ll see protocols that begin with the `import` statement shown above. It identifies your code as an Opentrons protocol. This statement is not required, but including it is a good practice and allows most code editors to provide helpful autocomplete suggestions.\n\nEverything else in the protocol file is required. Next, you\u2019ll specify the version of the API you\u2019re using. Then comes the core of the protocol: defining a single `run()` function that provides the locations of your labware, states which kind of pipettes you\u2019ll use, and finally issues the commands that the robot will perform.\n\nFor this tutorial, you\u2019ll write very little Python outside of the `run()` function. But for more complex applications it\u2019s worth remembering that your protocol file _is_ a Python script, so any Python code that can run on your robot can be a part of a protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1084, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0367b4dc-58bc-45e6-8bbf-4770fcb2829b": {"__data__": {"id_": "0367b4dc-58bc-45e6-8bbf-4770fcb2829b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "931b4c13289c6ad03b3bfc1bdd4641c789cfd32a68238828a01f134fdbc82c7f", "class_name": "RelatedNodeInfo"}}, "text": "Metadata\n\nEvery protocol needs to have a metadata dictionary with information about the protocol. At minimum, you need to specify what version of the API the protocol requires. The scripts for this tutorial were validated against API version 2\\.16, so specify:\n\n```\nmetadata = {\"apiLevel\": \"2.16\"}\n\n```\n\nYou can include any other information you like in the metadata dictionary. The fields `protocolName`, `description`, and `author` are all displayed in the Opentrons App, so it\u2019s a good idea to expand the dictionary to include them:\n\n```\nmetadata = {\n \"apiLevel\": \"2.16\",\n \"protocolName\": \"Serial Dilution Tutorial\",\n \"description\": \"\"\"This protocol is the outcome of following the\n Python Protocol API Tutorial located at\n https://docs.opentrons.com/v2/tutorial.html. It takes a\n solution and progressively dilutes it by transferring it\n stepwise across a plate.\"\"\",\n \"author\": \"New API User\"\n }\n\n```\n\nNote, if you have a Flex, or are using an OT\\-2 with API v2\\.15 (or higher), we recommend adding a `requirements` section to your code. See the Requirements section below.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1166, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d802fbb6-1c8b-4540-b126-543f1cb58877": {"__data__": {"id_": "d802fbb6-1c8b-4540-b126-543f1cb58877", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bc634b57-3daf-4592-965d-12d8393abab9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5b7e46a46d3974e259879ca65c69f70271e6841692173c3ea3c749c93938a8a9", "class_name": "RelatedNodeInfo"}}, "text": "Requirements\n\nThe `requirements` code block can appear before _or_ after the `metadata` code block in a Python protocol. It uses the following syntax and accepts two arguments: `robotType` and `apiLevel`.\n\nWhether you need a `requirements` block depends on your robot model and API version.\n\n- **Flex:** The `requirements` block is always required. And, the API version does not go in the `metadata` section. The API version belongs in the `requirements`. For example:\n\n```\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.16\"}\n\n```\n\n- **OT\\-2:** The `requirements` block is optional, but including it is a recommended best practice, particularly if you\u2019re using API version 2\\.15 or greater. If you do use it, remember to remove the API version from the `metadata`. For example:\n\n```\nrequirements = {\"robotType\": \"OT-2\", \"apiLevel\": \"2.16\"}\n\n```\n\nWith the metadata and requirements defined, you can move on to creating the `run()` function for your protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 964, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8b853460-a294-4741-b13f-57e59580de1c": {"__data__": {"id_": "8b853460-a294-4741-b13f-57e59580de1c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "254a5442-b132-44db-84ab-b6bcb087dcf8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "73993a4fda38234bd9684123b8b2671725fb2a7d52f80ea3dcb4dcd807ed0d3f", "class_name": "RelatedNodeInfo"}}, "text": "The `run()` function\n\nNow it\u2019s time to actually instruct the Flex or OT\\-2 how to perform serial dilution. All of this information is contained in a single Python function, which has to be named `run`. This function takes one argument, which is the _protocol context_. Many examples in these docs use the argument name `protocol`, and sometimes they specify the argument\u2019s type:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n\n```\n\nWith the protocol context argument named and typed, you can start calling methods on `protocol` to add labware and hardware.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 565, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8f00cd2-7871-47b0-a1f5-9b380df20766": {"__data__": {"id_": "f8f00cd2-7871-47b0-a1f5-9b380df20766", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "abc08179-04a0-4568-b866-f54c8a658e48", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5862c845be23e2e0a7b8eb934475021f4133066b849e48e9abd048d7a0406290", "class_name": "RelatedNodeInfo"}}, "text": "Labware\n\nFor serial dilution, you need to load a tip rack, reservoir, and 96\\-well plate on the deck of your Flex or OT\\-2\\. Loading labware is done with the `load_labware()` method of the protocol context, which takes two arguments: the standard labware name as defined in the Opentrons Labware Library, and the position where you\u2019ll place the labware on the robot\u2019s deck.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 375, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4850fc27-b132-4064-a67a-3f61df294b5b": {"__data__": {"id_": "4850fc27-b132-4064-a67a-3f61df294b5b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c9ce5806-ae57-4637-b33a-c20fc502fd13", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f54a129073d4f6899cbeb2a60e5987154c43f31e1710773942a31effdfcd40ec", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\nHere\u2019s how to load the labware on a Flex in slots D1, D2, and D3 (repeating the `def` statement from above to show proper indenting):\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tips = protocol.load_labware(\"opentrons_flex_96_tiprack_200ul\", \"D1\")\n reservoir = protocol.load_labware(\"nest_12_reservoir_15ml\", \"D2\")\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"D3\")\n\n```\n\nIf you\u2019re using a different model of labware, find its name in the Labware Library and replace it in your code.\n\nNow the robot will expect to find labware in a configuration that looks like this:", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 613, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7": {"__data__": {"id_": "4ccac28b-594c-4c6f-95b8-e58dc8ad48f7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fe58e97c-e0eb-4e79-bdb6-74824af9b86c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c14c9f75e5eb82da61b4f8eb7316b88e552753df9759e0b4e8c1af32b6ce2664", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\nHere\u2019s how to load the labware on an OT\\-2 in slots 1, 2, and 3 (repeating the `def` statement from above to show proper indenting):\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tips = protocol.load_labware(\"opentrons_96_tiprack_300ul\", 1)\n reservoir = protocol.load_labware(\"nest_12_reservoir_15ml\", 2)\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", 3)\n\n```\n\nIf you\u2019re using a different model of labware, find its name in the Labware Library and replace it in your code.\n\nNow the robot will expect to find labware in a configuration that looks like this:\n\nYou may notice that these deck maps don\u2019t show where the liquids will be at the start of the protocol. Liquid definitions aren\u2019t required in Python protocols, unlike protocols made in Protocol Designer. If you want to identify liquids, see Labeling Liquids in Wells. (Sneak peek: you\u2019ll put the diluent in column 1 of the reservoir and the solution in column 2 of the reservoir.)", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 979, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "de927a9a-e05d-431c-91f7-a4603741e016": {"__data__": {"id_": "de927a9a-e05d-431c-91f7-a4603741e016", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b5be87b0-8eff-4406-8a71-e2abe07e82d3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "98d27faee3f986a752aad0b873ea1c585cfe32e9d66a086476fa4356f192da88", "class_name": "RelatedNodeInfo"}}, "text": "Trash Bin\n\nFlex and OT\\-2 both come with a trash bin for disposing used tips.\n\nThe OT\\-2 trash bin is fixed in slot 12\\. Since it can\u2019t go anywhere else on the deck, you don\u2019t need to write any code to tell the API where it is. Skip ahead to the Pipettes section below.\n\nFlex lets you put a trash bin in multiple locations on the deck. You can even have more than one trash bin, or none at all (if you use the waste chute instead, or if your protocol never trashes any tips). For serial dilution, you\u2019ll need to dispose used tips, so you also need to tell the API where the trash container is located on your robot. Loading a trash bin on Flex is done with the `load_trash_bin()` method, which takes one argument: its location. Here\u2019s how to load the trash in slot A3:\n\n```\ntrash = protocol.load_trash_bin(\"A3\")\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8421e4dd-a2ca-470e-90cf-b80e1736f364": {"__data__": {"id_": "8421e4dd-a2ca-470e-90cf-b80e1736f364", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6667925f-23c9-4290-80a7-1e8bd16eb65f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e99951937760b0fe894270ad5c4ec4d5a8025c22cc754ee086377c051e08abb5", "class_name": "RelatedNodeInfo"}}, "text": "Pipettes\n\nNext you\u2019ll specify what pipette to use in the protocol. Loading a pipette is done with the `load_instrument()` method, which takes three arguments: the name of the pipette, the mount it\u2019s installed in, and the tip racks it should use when performing transfers. Load whatever pipette you have installed in your robot by using its standard pipette name. Here\u2019s how to load the pipette in the left mount and instantiate it as a variable named `left_pipette`:\n\n```\n# Flex\nleft_pipette = protocol.load_instrument(\"flex_1channel_1000\", \"left\", tip_racks=[tips])\n\n```\n\n```\n# OT-2\nleft_pipette = protocol.load_instrument(\"p300_single_gen2\", \"left\", tip_racks=[tips])\n\n```\n\nSince the pipette is so fundamental to the protocol, it might seem like you should have specified it first. But there\u2019s a good reason why pipettes are loaded after labware: you need to have already loaded `tips` in order to tell the pipette to use it. And now you won\u2019t have to reference `tips` again in your code \u2014 it\u2019s assigned to the `left_pipette` and the robot will know to use it when commanded to pick up tips.\n\nNote\n\nYou may notice that the value of `tip_racks` is in brackets, indicating that it\u2019s a list. This serial dilution protocol only uses one tip rack, but some protocols require more tips, so you can assign them to a pipette all at once, like `tip_racks=[tips1, tips2]`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1366, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9a6c4417-5268-4d4b-88ea-6c1482255021": {"__data__": {"id_": "9a6c4417-5268-4d4b-88ea-6c1482255021", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1ef83e8e0cf8b0f3e25db8b922112d0758e9bb41471e8f56a2bd38aba4dcfdc3", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0741252a-1649-4132-820d-aada866d9dff", "node_type": "1", "metadata": {}, "hash": "2cd7886af845c152ce7f7d27ec53609164866ddd66c6fbf2ebbed877372bcd8e", "class_name": "RelatedNodeInfo"}}, "text": "Commands\n\nFinally, all of your labware and hardware is in place, so it\u2019s time to give the robot pipetting commands. The required steps of the serial dilution process break down into three main phases:\n\n1. Measure out equal amounts of diluent from the reservoir to every well on the plate.\n2. Measure out equal amounts of solution from the reservoir into wells in the first column of the plate.\n3. Move a portion of the combined liquid from column 1 to 2, then from column 2 to 3, and so on all the way to column 12\\.\n\nThanks to the flexibility of the API\u2019s `transfer()` method, which combines many building block commands into one call, each of these phases can be accomplished with a single line of code! You\u2019ll just have to write a few more lines of code to repeat the process for as many rows as you want to fill.\n\nLet\u2019s start with the diluent. This phase takes a larger quantity of liquid and spreads it equally to many wells. `transfer()` can handle this all at once, because it accepts either a single well or a list of wells for its source and destination:\n\n```\nleft_pipette.transfer(100, reservoir[\"A1\"], plate.wells())\n\n```\n\nBreaking down these single lines of code shows the power of complex commands. The first argument is the amount to transfer to each destination, 100 \u00b5L. The second argument is the source, column 1 of the reservoir (which is still specified with grid\\-style coordinates as `A1` \u2014 a reservoir only has an A row). The third argument is the destination. Here, calling the `wells()` method of `plate` returns a list of _every well_, and the command will apply to all of them.\n\nIn plain English, you\u2019ve instructed the robot, \u201cFor every well on the plate, aspirate 100 \u00b5L of fluid from column 1 of the reservoir and dispense it in the well.\u201d That\u2019s how we understand this line of code as scientists, yet the robot will understand and execute it as nearly 200 discrete actions.\n\nNow it\u2019s time to start mixing in the solution. To do this row by row, nest the commands in a `for` loop:\n\n```\nfor i in range(8):\n row = plate.rows()[i]\n\n```\n\nUsing Python\u2019s built\\-in `range`') class is an easy way to repeat this block 8 times, once for each row. This also lets you use the repeat index `i` with `plate.rows()` to keep track of the current row.\n\nIn each row, you first need to add solution. This will be similar to what you did with the diluent, but putting it only in column 1 of the plate. It\u2019s best to mix the combined solution and diluent thoroughly, so add the optional `mix_after` argument to `transfer()`:\n\n```\nleft_pipette.transfer(100, reservoir[\"A2\"], row[0], mix_after=(3, 50))\n\n```\n\nAs before, the first argument specifies to transfer 100 \u00b5L. The second argument is the source, column 2 of the reservoir. The third argument is the destination, the element at index 0 of the current `row`. Since Python lists are zero\\-indexed, but columns on labware start numbering at 1, this will be well A1 on the first time through the loop, B1 the second time, and so on. The fourth argument specifies to mix 3 times with 50 \u00b5L of fluid each time.\n\nFinally, it\u2019s time to dilute the solution down the row. One approach would be to nest another `for` loop here, but instead let\u2019s use another feature of the `transfer()` method, taking lists as the source and destination arguments:\n\n```\nleft_pipette.transfer(100, row[:11], row[1:], mix_after=(3, 50))\n\n```\n\nThere\u2019s some Python shorthand here, so let\u2019s unpack it. You can get a range of indices from a list using the colon `:` operator, and omitting it at either end means \u201cfrom the beginning\u201d or \u201cuntil the end\u201d of the list. So the source is `row[:11]`, from the beginning of the row until its 11th item. And the destination is `row[1:]`, from index 1 (column 2!) until the end. Since both of these lists have 11 items, `transfer()` will _step through them in parallel_, and they\u2019re constructed so when the source is 0, the destination is 1; when the source is 1, the destination is 2; and so on.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3970, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0741252a-1649-4132-820d-aada866d9dff": {"__data__": {"id_": "0741252a-1649-4132-820d-aada866d9dff", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1ef83e8e0cf8b0f3e25db8b922112d0758e9bb41471e8f56a2bd38aba4dcfdc3", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9a6c4417-5268-4d4b-88ea-6c1482255021", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "09c12116afeb7fa2939573114ccc8252801182bc9129fdee1b3beafa08611561", "class_name": "RelatedNodeInfo"}}, "text": "You can get a range of indices from a list using the colon `:` operator, and omitting it at either end means \u201cfrom the beginning\u201d or \u201cuntil the end\u201d of the list. So the source is `row[:11]`, from the beginning of the row until its 11th item. And the destination is `row[1:]`, from index 1 (column 2!) until the end. Since both of these lists have 11 items, `transfer()` will _step through them in parallel_, and they\u2019re constructed so when the source is 0, the destination is 1; when the source is 1, the destination is 2; and so on. This condenses all of the subsequent transfers down the row into a single line of code.\n\nAll that remains is for the loop to repeat these steps, filling each row down the plate.\n\nThat\u2019s it! If you\u2019re using a single\\-channel pipette, you\u2019re ready to try out your protocol.", "mimetype": "text/plain", "start_char_idx": 3437, "end_char_idx": 4242, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a044525e-a899-4a11-8033-1865e1803fc9": {"__data__": {"id_": "a044525e-a899-4a11-8033-1865e1803fc9", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8ab749d2-d917-43f0-8d28-71379d61d6e4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b03046c1a3f1a7e220b67080f8fd03cf2ed0e5d305d89f5247a2d725d60bc863", "class_name": "RelatedNodeInfo"}}, "text": "8\\-Channel Pipette\n\nIf you\u2019re using an 8\\-channel pipette, you\u2019ll need to make a couple tweaks to the single\\-channel code from above. Most importantly, whenever you target a well in row A of a plate with an 8\\-channel pipette, it will move its topmost tip to row A, lining itself up over the entire column.\n\nThus, when adding the diluent, instead of targeting every well on the plate, you should only target the top row:\n\n```\nleft_pipette.transfer(100, reservoir[\"A1\"], plate.rows()[0])\n\n```\n\nAnd by accessing an entire column at once, the 8\\-channel pipette effectively implements the `for` loop in hardware, so you\u2019ll need to remove it:\n\n```\nrow = plate.rows()[0]\nleft_pipette.transfer(100, reservoir[\"A2\"], row[0], mix_after=(3, 50))\nleft_pipette.transfer(100, row[:11], row[1:], mix_after=(3, 50))\n\n```\n\nInstead of tracking the current row in the `row` variable, this code sets it to always be row A (index 0\\).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 918, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3": {"__data__": {"id_": "dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a5852ce2-2220-465e-a945-c13a45057bf6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a88835ed0b96ab0f2d97b269cbc45a5bc8a7256568eef1c8aed63c26c4487eeb", "class_name": "RelatedNodeInfo"}}, "text": "Try Your Protocol\n\nThere are two ways to try out your protocol: simulation on your computer, or a live run on a Flex or OT\\-2\\. Even if you plan to run your protocol on a robot, it\u2019s a good idea to check the simulation output first.\n\nIf you get any errors in simulation, or you don\u2019t get the outcome you expected when running your protocol, you can check your code against these reference protocols on GitHub:\n\n- Flex: Single\\-channel serial dilution\n- Flex: 8\\-channel serial dilution\n- OT\\-2: Single\\-channel serial dilution\n- OT\\-2: 8\\-channel serial dilution", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 564, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3c9d167e-f7bf-45db-a795-bcc4b941cb4c": {"__data__": {"id_": "3c9d167e-f7bf-45db-a795-bcc4b941cb4c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "02f878f0-725a-4de5-9f2c-2a0672c3ac52", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7ce0029822df7ee5a71322de1fdbebe2937376495d4f7e0200026f836785d256", "class_name": "RelatedNodeInfo"}}, "text": "In Simulation\n\nSimulation doesn\u2019t require having a robot connected to your computer. You just need to install the Opentrons Python module using pip (`pip install opentrons`). This will give you access to the `opentrons_simulate` command\\-line utility (`opentrons_simulate.exe` on Windows).\n\nTo see a text preview of the steps your Flex or OT\\-2 will take, use the change directory (`cd`) command to navigate to the location of your saved protocol file and run:\n\n```\nopentrons_simulate dilution-tutorial.py\n\n```\n\nThis should generate a lot of output! As written, the protocol has about 1000 steps. In fact, using a single\\-channel pipette for serial dilution across the whole plate will take about half an hour \u2014 plenty of time to grab a coffee while your robot pipettes for you! \u2615\ufe0f\n\nIf that\u2019s too long, you can always cancel your run partway through or modify `for i in range(8)` to loop through fewer rows.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 909, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde": {"__data__": {"id_": "313ab6ca-b3c0-47ed-bb86-4ef9d3750bde", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8e6bc3e644aa2be170dd0c08d7e302dadeff26170a5e8d23f5ae9668e6c4848b", "class_name": "RelatedNodeInfo"}}, "text": "On a Robot\n\nThe simplest way to run your protocol on a Flex or OT\\-2 is to use the Opentrons App. When you first launch the Opentrons App, you will see the Protocols screen. (Click **Protocols** in the left sidebar to access it at any other time.) Click **Import** in the top right corner to reveal the Import a Protocol pane. Then click **Choose File** and find your protocol in the system file picker, or drag and drop your protocol file into the well.\n\nYou should see \u201cProtocol \\- Serial Dilution Tutorial\u201d (or whatever `protocolName` you entered in the metadata) in the list of protocols. Click the three\\-dot menu (\u22ee) for your protocol and choose **Start setup**.\n\nIf you have any remaining calibration tasks to do, you can finish them up here. Below the calibration section is a preview of the initial deck state. Optionally you can run Labware Position Check, or you can go ahead and click **Proceed to Run**.\n\nOn the Run tab, you can double\\-check the Run Preview, which is similar to the command\\-line simulation output. Make sure all your labware and liquids are in the right place, and then click **Start run**. The run log will update in real time as your robot proceeds through the steps.\n\nWhen it\u2019s all done, check the results of your serial dilution procedure \u2014 you should have a beautiful dye gradient running across the plate!", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1345, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c6556b88-8149-40ed-895d-dc611533cba5": {"__data__": {"id_": "c6556b88-8149-40ed-895d-dc611533cba5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3ec800f4-7df8-4008-8b04-a61332e6aa42", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "12be9f79ec647a2b1ea0a848ae39214e476afb0d45273390b02d453e036b7590", "class_name": "RelatedNodeInfo"}}, "text": "Next Steps\n\nThis tutorial has relied heavily on the `transfer()` method, but there\u2019s much more that the Python Protocol API can do. Many advanced applications use building block commands for finer control over the robot. These commands let you aspirate and dispense separately, add air gaps, blow out excess liquid, move the pipette to any location, and more. For protocols that use Opentrons hardware modules, there are methods to control their behavior. And all of the API\u2019s classes and methods are catalogued in the API Reference.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 535, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "75c34353-c6bd-4fcb-90ec-d02aa625ab46": {"__data__": {"id_": "75c34353-c6bd-4fcb-90ec-d02aa625ab46", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ab40a505-36f4-43e6-a150-cd85db235e67", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "22fcf985ed6f63eaee0cc33bc3e63c245ecabd0ef072a906a44f164d8bcb9294", "class_name": "RelatedNodeInfo"}}, "text": "Versioning\n\nThe Python Protocol API has its own versioning system, which is separate from the versioning system used for the robot software and the Opentrons App. This allows protocols to run on newer robot software versions without modification.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 248, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8fac4829-a6e7-4159-8bb2-10e1859025b0": {"__data__": {"id_": "8fac4829-a6e7-4159-8bb2-10e1859025b0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "833dfd3f-1aea-4752-9f16-81636b443cd7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "65c5b204ba5cda40bc1e5bd6f49e4b06ecfcabb5e1efe0fa27b01a391c058280", "class_name": "RelatedNodeInfo"}}, "text": "Major and Minor Versions\n\nThe API uses a major and minor version number and does not use patch version numbers. For instance, major version 2 and minor version 0 is written as `2.0`. Versions are not decimal numbers, so `2.10` indicates major version 2 and minor version 10\\. The Python Protocol API version will only increase based on changes that affect protocol behavior.\n\nThe major version of the API increases whenever there are significant structural or behavioral changes to protocols. For instance, major version 2 of the API was introduced because it required protocols to have a `run` function that takes a `protocol` argument rather than importing the `robot`, `instruments`, and `labware` modules. Protocols written with major version 1 of the API will not run without modification in major version 2\\. A similar level of structural change would require a major version 3\\. This documentation only deals with features found in major version 2 of the API; see the archived version 1 documentation for information on older protocols.\n\nThe minor version of the API increases whenever there is new functionality that might change the way a protocol is written, or when a behavior changes in one aspect of the API but does not affect all protocols. For instance, adding support for a new hardware module, adding new parameters for a function, or deprecating a feature would increase the minor version of the API.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1421, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed": {"__data__": {"id_": "9fca083f-9a6f-4f71-89b5-3ca5c98b1bed", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1fe3364c7b9010c61597fb2cfcd384da5f4c566f89a22f86869c5c5017d79ed8", "class_name": "RelatedNodeInfo"}}, "text": "Specifying Versions\n\nYou must specify the API version you are targeting in your Python protocol. In all minor versions, you can do this with the `apiLevel` key in the `metadata` dictionary, alongside any other metadata elements:\n\n```\n from opentrons import protocol_api\n\n metadata = {\n \"apiLevel\": \"2.19\",\n \"author\": \"A. Biologist\"}\n\n def run(protocol: protocol_api.ProtocolContext):\n protocol.comment(\"Hello, world!\")\n\n```\n\nFrom version 2\\.15 onward, you can specify `apiLevel` in the `requirements` dictionary instead:\n\n```\n from opentrons import protocol_api\n\n metadata = {\"author\": \"A. Biologist\"}\n requirements = {\"apiLevel\": \"2.19\", \"robotType\": \"Flex\"}\n\n def run(protocol: protocol_api.ProtocolContext):\n protocol.comment(\"Hello, Flex!\")\n\n```\n\nChoose only one of these places to specify `apiLevel`. If you put it in neither or both places, you will not be able to simulate or run your protocol.\n\nThe version you specify determines the features and behaviors available to your protocol. For example, support for the Heater\\-Shaker Module was added in version 2\\.13, so you can\u2019t specify a lower version and then call `HeaterShakerContext` methods without causing an error. This protects you from accidentally using features not present in your specified API version, and keeps your protocol portable between API versions.\n\nWhen choosing an API level, consider what features you need and how widely you plan to share your protocol. Throughout the Python Protocol API documentation, there are version statements indicating when elements (features, function calls, available properties, etc.) were introduced. Keep these in mind when specifying your protocol\u2019s API version. Version statements look like this:\n\nNew in version 2\\.0\\.\n\nOn the one hand, using the highest available version will give your protocol access to all the latest features and fixes. On the other hand, using the lowest possible version lets the protocol work on a wider range of robot software versions. For example, a protocol that uses the Heater\\-Shaker and specifies version 2\\.13 of the API should work equally well on a robot running version 6\\.1\\.0 or 6\\.2\\.0 of the robot software. Specifying version 2\\.14 would limit the protocol to robots running 6\\.2\\.0 or higher.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2269, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "194206af-b2e8-42f9-8424-2174f55f3f2c": {"__data__": {"id_": "194206af-b2e8-42f9-8424-2174f55f3f2c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "87768311-dda0-4891-892c-f70a3d6d74df", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c26524945a15c1f51e7f286413b7327a55547e0dcaa6b2bc441535cf065ab368", "class_name": "RelatedNodeInfo"}}, "text": "Maximum Supported Versions\n\nThe maximum supported API version for your robot is listed in the Opentrons App under **Robots** \\> your robot \\> **Robot Settings** \\> **Advanced**. Before version 6\\.0\\.0 of the app, the same information was listed on your robot\u2019s **Information** card.\n\nIf you upload a protocol that specifies a higher API level than the maximum supported, your robot won\u2019t be able to analyze or run your protocol. You can increase the maximum supported version by updating your robot software and Opentrons App.\n\nOpentrons robots running the latest software (7\\.3\\.0\\) support the following version ranges:\n\n> - **Flex:** version 2\\.15\u20132\\.19\\.\n> - **OT\\-2:** versions 2\\.0\u20132\\.19\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 697, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "35fdfb36-0f18-44d3-a476-1c281c5b4d67": {"__data__": {"id_": "35fdfb36-0f18-44d3-a476-1c281c5b4d67", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1932d374-b325-488f-88ac-9b6c15ed46ce", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "31e847e26fa0ca51328e3beba466e45dd7a0fdfdf5d3367585f6244ba49cdabd", "class_name": "RelatedNodeInfo"}}, "text": "API and Robot Software Versions\n\nThis table lists the correspondence between Protocol API versions and robot software versions.\n\n| API Version | Introduced in Robot Software |\n| ----------- | ---------------------------- |\n| 2\\.19 | 7\\.3\\.1 |\n| 2\\.18 | 7\\.3\\.0 |\n| 2\\.17 | 7\\.2\\.0 |\n| 2\\.16 | 7\\.1\\.0 |\n| 2\\.15 | 7\\.0\\.0 |\n| 2\\.14 | 6\\.3\\.0 |\n| 2\\.13 | 6\\.1\\.0 |\n| 2\\.12 | 5\\.0\\.0 |\n| 2\\.11 | 4\\.4\\.0 |\n| 2\\.10 | 4\\.3\\.0 |\n| 2\\.9 | 4\\.1\\.0 |\n| 2\\.8 | 4\\.0\\.0 |\n| 2\\.7 | 3\\.21\\.0 |\n| 2\\.6 | 3\\.20\\.0 |\n| 2\\.5 | 3\\.19\\.0 |\n| 2\\.4 | 3\\.17\\.1 |\n| 2\\.3 | 3\\.17\\.0 |\n| 2\\.2 | 3\\.16\\.0 |\n| 2\\.1 | 3\\.15\\.2 |\n| 2\\.0 | 3\\.14\\.0 |\n| 1\\.0 | 3\\.0\\.0 |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1211, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1982d6a8-22c4-4beb-a9bc-96e81ac08261": {"__data__": {"id_": "1982d6a8-22c4-4beb-a9bc-96e81ac08261", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f7151b5c-15a6-483c-a65f-1a273be9cf45", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2747cccd2a8fe3d128dfadcc20aee6e6749966c6c3891b64926ed3f5868bad67", "class_name": "RelatedNodeInfo"}}, "text": "Changes in API Versions", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 25, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5daeebb9-1856-41ae-a528-c28d9f2e3099": {"__data__": {"id_": "5daeebb9-1856-41ae-a528-c28d9f2e3099", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5544be45-71a1-4200-891e-f3c0589ad98a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1123a18705ea907c51641eb62489e8ab669088226f699e25608ab9a666871370", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.19\n\nOpentrons recommends updating protocols from `apiLevel` 2\\.18 to 2\\.19 to take advantage of improved pipetting behavior.\n\n- This version uses new values for how much a tip overlaps with the pipette nozzle when the pipette picks up tips. This can correct errors caused by the robot positioning the tip slightly lower than intended, potentially making contact with labware. See `pick_up_tip()` for additional details.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 432, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0b965522-311f-4ed4-9b89-44bdd2409aff": {"__data__": {"id_": "0b965522-311f-4ed4-9b89-44bdd2409aff", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ab11c7e5-042d-4dae-93ad-922ffd496201", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bbf1666bd383024342bcb19356ed7c9da676ff08d756511085b12b3c287c35dd", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.18\n\n- Define customizable parameters with the new `add_parameters()` function, and access their values on the `ProtocolContext.params` object during a protocol run. See Runtime Parameters and related pages for more information.\n- Move the pipette to positions relative to the top of a trash container. See Position Relative to Trash Containers. The default behavior of `drop_tip()` also accounts for this new possibility.\n- `set_offset()` has been restored to the API with new behavior that applies to labware type\u2013location pairs.\n- Automatic tip tracking is now available for all nozzle configurations.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 616, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d8dadf8-3f5d-4388-8d63-acca8868c074": {"__data__": {"id_": "8d8dadf8-3f5d-4388-8d63-acca8868c074", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee844663-0f37-46bc-8e6e-04d87d9974b3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "19deb2343a7b27803b006dd0f4e8fbd466a269fc94544f7a0038d372f9d09c34", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.17\n\n- `dispense()` now raises an error if you try to dispense more than `InstrumentContext.current_volume`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 120, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "991c8f71-96f2-4ce7-97fb-e2adfd81fa49": {"__data__": {"id_": "991c8f71-96f2-4ce7-97fb-e2adfd81fa49", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "199280ae1c3718552fa4366ea4e22c8d36fab6500b67963112d958e0c1a60897", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.16\n\nThis version introduces new features for Flex and adds and improves methods for aspirating and dispensing. Note that when updating Flex protocols to version 2\\.16, you _must_ load a trash container before dropping tips.\n\n- New features\n\n - Use `configure_nozzle_layout()` to pick up a single column of tips with the 96\\-channel pipette. See Partial Tip Pickup.\n - Specify the trash containers attached to your Flex with `load_waste_chute()` and `load_trash_bin()`.\n - Dispense, blow out, drop tips, and dispose labware in the waste chute. Disposing labware requires the gripper and calling `move_labware()` with `use_gripper=True`.\n - Perform actions in staging area slots by referencing slots A4 through D4\\. See Deck Slots.\n - Explicitly command a pipette to `prepare_to_aspirate()`. The API usually prepares pipettes to aspirate automatically, but this is useful for certain applications, like pre\\-wetting routines.\n\n- Improved features\n\n - `aspirate()`, `dispense()`, and `mix()` will not move any liquid when called with `volume=0`.\n\n- Other changes\n\n - `ProtocolContext.fixed_trash` and `InstrumentContext.trash_container` now return `TrashBin` objects instead of `Labware` objects.\n - Flex will no longer automatically drop tips in the trash at the end of a protocol. You can add a `drop_tip()` command to your protocol or use the Opentrons App to drop the tips.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1395, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3f708918-9bcb-4c0a-bd9c-c987901f8659": {"__data__": {"id_": "3f708918-9bcb-4c0a-bd9c-c987901f8659", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2a765986-cb5c-483c-b423-2953f033b681", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "593cf857e5b8ec57313fe4a65fa8d599a4f5862c0f7ce9d740a33dd384a360e5", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.15\n\nThis version introduces support for the Opentrons Flex robot, instruments, modules, and labware.\n\n- Flex features\n\n - Write protocols for Opentrons Flex by declaring `\"robotType\": \"Flex\"` in the new `requirements` dictionary. See the examples in the Tutorial.\n - `load_instrument()` supports loading Flex 1\\-, 8\\-, and 96\\-channel pipettes. See Loading Pipettes.\n - The new `move_labware()` method can move labware automatically using the Flex Gripper. You can also move labware manually on Flex.\n - `load_module()` supports loading the Magnetic Block.\n - The API does not enforce placement restrictions for the Heater\\-Shaker module on Flex, because it is installed below\\-deck in a module caddy. Pipetting restrictions are still in place when the Heater\\-Shaker is shaking or its labware latch is open.\n - The new `configure_for_volume()` method can place Flex 50 \u00b5L pipettes in a low\\-volume mode for dispensing very small volumes of liquid. See Volume Modes.\n\n- Flex and OT\\-2 features\n\n - Optionally specify `apiLevel` in the new `requirements` dictionary (otherwise, specify it in `metadata`).\n - Optionally specify `\"robotType\": \"OT-2\"` in `requirements`.\n - Use coordinates or numbers to specify deck slots. These formats match physical labels on Flex and OT\\-2, but you can use either system, regardless of `robotType`.\n - The new module context `load_adapter()` methods let you load adapters and labware separately on modules, and `ProtocolContext.load_adapter()` lets you load adapters directly in deck slots. See Loading Labware on Adapters.\n - Move labware manually using `move_labware()`, without having to stop your protocol.\n - Manual labware moves support moving to or from the new `OFF_DECK` location (outside of the robot).\n - `ProtocolContext.load_labware()` also accepts `OFF_DECK` as a location. This lets you prepare labware to be moved onto the deck later in a protocol.\n - The new `push_out` parameter of the `dispense()` method helps ensure that the pipette dispenses all of its liquid when working with very small volumes.\n - By default, repeated calls to `drop_tip()` cycle through multiple locations above the trash bin to prevent tips from stacking up.\n\n- Bug fixes\n\n - `InstrumentContext.starting_tip` is now respected on the second and subsequent calls to `InstrumentContext.pick_up_tip()` with no argument.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2372, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1278ad97-268a-4707-9066-09d44fb74832": {"__data__": {"id_": "1278ad97-268a-4707-9066-09d44fb74832", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "79c03319a16ba1ab8e61d2e75c1329f0c2f19e4274ed8cdc1c71a54031118204", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.14\n\nThis version introduces a new protocol runtime that offers more reliable run control\nand builds a strong foundation for future Protocol API improvements.\n\nSeveral older parts of the Protocol API were deprecated as part of this switchover.\nIf you specify an API version of `2.13` or lower, your protocols will continue to execute on the old runtime.\n\n- Feature additions\n\n - `ProtocolContext.define_liquid()` and `Well.load_liquid()` added\n to define different liquid types and add them to wells, respectively.\n\n- Bug fixes\n\n - `Labware` and `Well` now adhere to the protocol\u2019s API level setting.\n Prior to this version, they incorrectly ignored the setting.\n - `InstrumentContext.touch_tip()` will end with the pipette tip in the center of the well\n instead of on the edge closest to the front of the machine.\n - `ProtocolContext.load_labware()` now prefers loading user\\-provided labware definitions\n rather than built\\-in definitions if no explicit `namespace` is specified.\n - `ProtocolContext.pause()` will now properly wait until you resume the protocol before moving on.\n In previous versions, the run will not pause until the first call to a different `ProtocolContext` method.\n - Motion planning has been improved to avoid certain erroneous downward movements,\n especially when using `InstrumentContext.aspirate()`.\n - `Labware.reset()` and `Labware.tip_length` will raise useful errors if called on labware that is not a tip rack.\n\n- Removals\n\n - The `presses` and `increment` arguments of `InstrumentContext.pick_up_tip()` were deprecated.\n Configure your pipette pick\\-up settings with the Opentrons App, instead.\n - `InstrumentContext.speed` property was removed.\n This property tried to allow setting a pipette\u2019s **plunger** speed in mm/s.\n However, it could only approximately set the plunger speed,\n because the plunger\u2019s speed is a stepwise function of the volume.\n Use `InstrumentContext.flow_rate` to set the flow rate in \u00b5L/s, instead.\n - `load_labware_object()` was removed from module contexts as an unnecessary internal method.\n - `geometry` was removed from module contexts in favor of\n `model` and `type` attributes.\n - `Well.geometry` was removed as unnecessary.\n - `MagneticModuleContext.calibrate` was removed since it was never needed nor implemented.\n - The `height` parameter of `MagneticModuleContext.engage()` was removed.\n Use `offset` or `height_from_base` instead.\n - `Labware.separate_calibration` and `Labware.set_calibration()` were removed,\n since they were holdovers from a calibration system that no longer exists.\n - Various methods and setters were removed that could modify tip state outside of\n calls to `InstrumentContext.pick_up_tip()` and `InstrumentContext.drop_tip()`.\n This change allows the robot to track tip usage more completely and reliably.\n You may still use `Labware.reset()` and `InstrumentContext.reset_tipracks()`\n to reset your tip racks\u2019 state.\n\n > - The `Well.has_tip` **setter** was removed. **The getter is still supported.**\n > - Internal methods `Labware.use_tips`, `Labware.previous_tip`, and `Labware.return_tips`\n > were removed.\n\n - The `configuration` argument of `ProtocolContext.load_module()` was removed\n because it made unsafe modifications to the protocol\u2019s geometry system,\n and the Thermocycler\u2019s \u201csemi\u201d configuration is not officially supported.\n\n- Known limitations\n\n - `Labware.set_offset()` is not yet supported on this API version.\n Run protocols via the Opentrons App, instead.\n - `ProtocolContext.max_speeds` is not yet supported on the API version.\n Use `InstrumentContext.default_speed` or the per\\-method speed argument, instead.\n - `InstrumentContext.starting_tip` is not respected on the second and subsequent calls to `InstrumentContext.pick_up_tip()` with no argument.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3876, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "532e020b-af47-4631-9116-743d24b89552": {"__data__": {"id_": "532e020b-af47-4631-9116-743d24b89552", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e186910d-316a-4d76-8b72-0297597744ee", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d6834cf2401d2d3b771035059ee2b8208b309e1589db8858d85b5ac5abc8176c", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.13\n\n- Adds `HeaterShakerContext` to support the Heater\\-Shaker Module. You can use the load name `heaterShakerModuleV1` with `ProtocolContext.load_module()` to add a Heater\\-Shaker to a protocol.\n- `InstrumentContext.drop_tip()` now has a `prep_after` parameter.\n- `InstrumentContext.home()` may home _both_ pipettes as needed to avoid collision risks.\n- `InstrumentContext.aspirate()` and `InstrumentContext.dispense()` will avoid interacting directly with modules.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 479, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e212d39-504d-4779-83f0-355636b0de25": {"__data__": {"id_": "9e212d39-504d-4779-83f0-355636b0de25", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "62376d76e0f3957cbec1a99e1d32d127f89a7c853194d1808c39aafbc5200ff9", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.12\n\n- `ProtocolContext.resume()` has been deprecated.\n- `Labware.set_offset()` has been added to apply labware offsets to protocols run (exclusively) outside of the Opentrons App (Jupyter Notebook and SSH).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 219, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "062f22d5-6e38-4cd6-a3f1-cf5700f9821f": {"__data__": {"id_": "062f22d5-6e38-4cd6-a3f1-cf5700f9821f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7d01001a0b9d6a3202a7438a7037983600945cfac8bd91659f66ad368bde55c", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.11\n\n- Attempting to aspirate from or dispense to tip racks will raise an error.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 92, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1": {"__data__": {"id_": "953ae347-eb9d-424e-b1d4-1d2cc5fd68a1", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "56da6737-1dee-46bc-b3d0-90e13a697962", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0d5c2cef3a5c88fd6261ed1fe2eb272a394ba41b5a9c9e12b7754d14eb329853", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.10\n\n- Moving to the same well twice in a row with different pipettes no longer results in strange diagonal movements.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 130, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "926c9e8c-0a25-4512-88ba-697deb7cd1d6": {"__data__": {"id_": "926c9e8c-0a25-4512-88ba-697deb7cd1d6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bcb6f3dd-3022-4d6a-8264-1dd9321e710a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b6a4e0c761808e5e26c9d0094a8ea18579cb4d35cc89355f68f35971dcec447c", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.9\n\n- You can now access certain geometry data regarding a labware\u2019s well via a Well Object. See Well Dimensions for more information.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 146, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "46cea481-4853-4b34-a148-91f2281b5148": {"__data__": {"id_": "46cea481-4853-4b34-a148-91f2281b5148", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "002b7e66-87f2-48b2-a83c-dad60727f3bc", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "15e5a60726baeb3fe413d4d21ef0061fc232b993f5efaf358a2231c5a1793eb4", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.8\n\n- You can now pass in a list of volumes to distribute and consolidate. See List of Volumes for more information.\n\n - Passing in a zero volume to any complex command will result in no actions taken for aspirate or dispense\n\n- `Well.from_center_cartesian()` can be used to find a point within a well using normalized distance from the center in each axis.\n\n - Note that you will need to create a location object to use this function in a protocol. See Labware for more information.\n\n- You can now pass in a blowout location to transfer, distribute, and consolidate\n with the `blowout_location` parameter. See `InstrumentContext.transfer()` for more detail!", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 673, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5428fbdd-f596-42e9-b75e-2e7e1e153e90": {"__data__": {"id_": "5428fbdd-f596-42e9-b75e-2e7e1e153e90", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b30154d4-ed08-4bbf-b471-ae13a0be4ed3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b38854abaa0e478f5ffe1516e924c5856fa88574480f10af86de00c08b23322a", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.7\n\n- Added `InstrumentContext.pair_with()`, an experimental feature for moving both pipettes simultaneously.\n\nNote\n\nThis feature has been removed from the Python Protocol API.\n\n- Calling `InstrumentContext.has_tip()` will return whether a particular instrument\n has a tip attached or not.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 302, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "32a50608-96b5-4eda-bd89-6ad80ad73f62": {"__data__": {"id_": "32a50608-96b5-4eda-bd89-6ad80ad73f62", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a4e9e8ce-b526-4687-86c7-aa46c892e55f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bb1f20afe77869174c935c33739ee562c5c055f3c7993f074aef0d8453e53dea", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.6\n\n- GEN2 Single pipettes now default to flow rates equivalent to 10 mm/s plunger\n speeds\n\n + Protocols that manually configure pipette flow rates will be unaffected\n + For a comparison between API Versions, see OT\\-2 Pipette Flow Rates", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 260, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ae360743-3475-4f15-95b3-7c96f8878dbe": {"__data__": {"id_": "ae360743-3475-4f15-95b3-7c96f8878dbe", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "929822da-fa3e-4d25-b523-db06a02797f4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "62c038c45868013d56827fb920c0d4f3b72f7a8ffaf802c11f2313ef0a5a0dc0", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.5\n\n- New utility commands were added:\n\n - `ProtocolContext.set_rail_lights()`: turns robot rail lights on or off\n - `ProtocolContext.rail_lights_on`: describes whether or not the rail lights are on\n - `ProtocolContext.door_closed`: describes whether the robot door is closed", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 290, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "179c2192-96a1-4557-8891-c408aa29e6ac": {"__data__": {"id_": "179c2192-96a1-4557-8891-c408aa29e6ac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "98da37bf-9477-4f50-acd0-8018c43a06bc", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0f71bf6eaaaee2982b4dabaa837fca099ec61818f54d35d87c382255ef3ad4e8", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.4\n\n- The following improvements were made to the `touch_tip` command:\n\n - The speed for `touch_tip` can now be lowered down to 1 mm/s\n - `touch_tip` no longer moves diagonally from the X direction \\-\\> Y direction\n - Takes into account geometry of the deck and modules", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 284, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "692705ab-306d-4be0-9fed-d651401eaadc": {"__data__": {"id_": "692705ab-306d-4be0-9fed-d651401eaadc", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a0144f9d-4c3f-43e2-8a2c-51239d365bb3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "09c3741d54d36b653852f727b954a39eccb5afb1b393859d83d480bbc0a16e00", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.3\n\n- Magnetic Module GEN2 and Temperature Module GEN2 are now supported; you can load them with the names `\"magnetic module gen2\"` and `\"temperature module gen2\"`, respectively.\n- All pipettes will return tips to tip racks from a higher position to avoid\n possible collisions.\n- During a `mix()`, the pipette will no longer move up to clear the liquid in\n between every dispense and following aspirate.\n- You can now access the Temperature Module\u2019s status via `TemperatureModuleContext.status`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 509, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac": {"__data__": {"id_": "f19d7e30-35c4-4be0-a9af-eecba6d7e8ac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6f343a13-6d93-4a4f-a07d-17234e8972a2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "35dd88536824971cd85fe318f8722b662cfb7261211d46c544de2cd8797f111e", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.2\n\n- You should now specify Magnetic Module engage height using the\n `height_from_base` parameter, which specifies the height of the top of the\n magnet from the base of the labware. For more, see Engaging and Disengaging.\n- Return tip will now use pre\\-defined heights from hardware testing. For more information, see Returning a Tip.\n- When using the return tip function, tips are no longer added back into the tip tracker. For more information, see Returning a Tip.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 482, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac": {"__data__": {"id_": "8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "86d6342d-b6c6-44b1-abd6-09e10f17b87d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9cbe4c6aec18aec6615ffd91a160c243e83fa37bf564cfe12b3bef4a42033c5e", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.1\n\n- When loading labware onto a module, you can now specify a label with the `label` parameter of\n `MagneticModuleContext.load_labware()`,\n `TemperatureModuleContext.load_labware()`, or\n `ThermocyclerContext.load_labware()`,\n just like you can when loading labware onto the deck with `ProtocolContext.load_labware()`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 335, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e": {"__data__": {"id_": "831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "925a779b-d812-49fb-9d86-727b98ed7f66", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6aea4a71cb1243db4fe44697c6f810f4e0a297ed99582d968167bd74018a0d25", "class_name": "RelatedNodeInfo"}}, "text": "Version 2\\.0\n\nVersion 2 of the API is a new way to write Python protocols, with support for new modules like the Thermocycler. To transition your protocols from version 1 to version 2 of the API, follow this migration guide.\n\nWe\u2019ve also published a more in\\-depth discussion of why we developed version 2 of the API and how it differs from version 1\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 353, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a27b605-45a0-4bef-902f-c9b3c7171ebc": {"__data__": {"id_": "3a27b605-45a0-4bef-902f-c9b3c7171ebc", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1517bbfa-266e-4d8d-a792-78af433ef831", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3045daf9f0f45665010e1010ce1dd771f921f63541f8aaa5686bf02eada9ce62", "class_name": "RelatedNodeInfo"}}, "text": "Labware\n\nLabware are the durable or consumable items that you work with, reuse, or discard while running a protocol on a Flex or OT\\-2\\. Items such as pipette tips, well plates, tubes, and reservoirs are all examples of labware. This section provides a brief overview of default labware, custom labware, and how to use basic labware API methods when creating a protocol for your robot.\n\nNote\n\nCode snippets use coordinate deck slot locations (e.g. `\"D1\"`, `\"D2\"`), like those found on Flex. If you have an OT\\-2 and are using API version 2\\.14 or earlier, replace the coordinate with its numeric OT\\-2 equivalent. For example, slot D1 on Flex corresponds to slot 1 on an OT\\-2\\. See Deck Slots for more information.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 717, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "058bc3c5-2029-4b92-847c-c3f57e1b328c": {"__data__": {"id_": "058bc3c5-2029-4b92-847c-c3f57e1b328c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e163b8cb-7027-49c4-9910-0266381e904d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d5e5e8e6c88483ae0a261caf04d40f1e0ac0db7ad88234d596b6a1b77e0c15ba", "class_name": "RelatedNodeInfo"}}, "text": "Labware Types", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 15, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d": {"__data__": {"id_": "cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9d22a53f-ec69-4924-b375-81f49499c45d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "63f71589e365732265a7cb2f413388f09296956d3a2355f229c0c5305e1fcab8", "class_name": "RelatedNodeInfo"}}, "text": "Default Labware\n\nDefault labware is everything listed in the Opentrons Labware Library. When used in a protocol, your Flex or OT\\-2 knows how to work with default labware. However, you must first inform the API about the labware you will place on the robot\u2019s deck. Search the library when you\u2019re looking for the API load names of the labware you want to use. You can copy the load names from the library and pass them to the `load_labware()` method in your protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 468, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2cd9ecff-8914-42b5-802a-5b28162a87aa": {"__data__": {"id_": "2cd9ecff-8914-42b5-802a-5b28162a87aa", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3550a897-ae49-4ce5-a053-1a0433f522ad", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "83626f7e68c07c796d74eaa07cb48a23e171daf7b9bb06019d078a0d82c24b60", "class_name": "RelatedNodeInfo"}}, "text": "Custom Labware\n\nCustom labware is labware that is not listed the Labware Library. If your protocol needs something that\u2019s not in the library, you can create it with the Opentrons Labware Creator. However, before using the Labware Creator, you should take a moment to review the support article Creating Custom Labware Definitions.\n\nAfter you\u2019ve created your labware, save it as a `.json` file and add it to the Opentrons App. See Using Labware in Your Protocols for instructions.\n\nIf other people need to use your custom labware definition, they must also add it to their Opentrons App.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 588, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "30959e4d-8ce8-4b68-9863-a25703b0bf21": {"__data__": {"id_": "30959e4d-8ce8-4b68-9863-a25703b0bf21", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1bdeef6b8af642a50c7451f80cadb60150b89c6011bcb454b1b0586e04f92762", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware\n\nThroughout this section, we\u2019ll use the labware listed in the following table.\n\n| Labware type | Labware name | API load name |\n| -------------- | --------------------------------------------------------------------------------------------------- | --------------------------------- |\n| Well plate | Corning 96 Well Plate 360 \u00b5L Flat | `corning_96_wellplate_360ul_flat` |\n| Flex tip rack | Opentrons Flex 96 Tips 200 \u00b5L | `opentrons_flex_96_tiprack_200ul` |\n| OT\\-2 tip rack | Opentrons 96 Tip Rack 300 \u00b5L | `opentrons_96_tiprack_300ul` |\n\nSimilar to the code sample in How the API Works, here\u2019s how you use the `ProtocolContext.load_labware()` method to load labware on either Flex or OT\\-2\\.\n\n```\n#Flex\ntiprack = protocol.load_labware(\"opentrons_flex_96_tiprack_200ul\", \"D1\")\nplate = protocol.load_labware(\"corning_96_wellplate_360ul_flat\", \"D2\")\n\n```\n\n```\n#OT-2\ntiprack = protocol.load_labware(\"opentrons_96_tiprack_300ul\", \"1\")\nplate = protocol.load_labware(\"corning_96_wellplate_360ul_flat\", \"2\")\n\n```\n\nNew in version 2\\.0\\.\n\nWhen the `load_labware` method loads labware into your protocol, it returns a `Labware` object.\n\nTip\n\nThe `load_labware` method includes an optional `label` argument. You can use it to identify labware with a descriptive name. If used, the label value is displayed in the Opentrons App. For example:\n\n```\ntiprack = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\",\n label=\"any-name-you-want\")\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1633, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23fac348-3556-4651-936d-955a32b4defa": {"__data__": {"id_": "23fac348-3556-4651-936d-955a32b4defa", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "043ff2853c2aa686ede47d6695058b2a985cd458e665542401a45bc59c6f0c87", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware on Adapters\n\nThe previous section demonstrates loading labware directly into a deck slot. But you can also load labware on top of an adapter that either fits on a module or goes directly on the deck. The ability to combine labware with adapters adds functionality and flexibility to your robot and protocols.\n\nYou can either load the adapter first and the labware second, or load both the adapter and labware all at once.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 439, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36bac6f0-91af-4538-83f6-35a0f61e115f": {"__data__": {"id_": "36bac6f0-91af-4538-83f6-35a0f61e115f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5c915b062bdd2614172272973ee13237479b22dcc5a05f76142fd91f10feb15b", "class_name": "RelatedNodeInfo"}}, "text": "Loading Separately\n\nThe `load_adapter()` method is available on `ProtocolContext` and module contexts. It behaves similarly to `load_labware()`, requiring the load name and location for the desired adapter. Load a module, adapter, and labware with separate calls to specify each layer of the physical stack of components individually:\n\n```\nhs_mod = protocol.load_module(\"heaterShakerModuleV1\", \"D1\")\nhs_adapter = hs_mod.load_adapter(\"opentrons_96_flat_bottom_adapter\")\nhs_plate = hs_adapter.load_labware(\"nest_96_wellplate_200ul_flat\")\n\n```\n\nNew in version 2\\.15: The `load_adapter()` method.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 594, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "34869ab7-7f4a-4116-b78c-8912e9ac80ca": {"__data__": {"id_": "34869ab7-7f4a-4116-b78c-8912e9ac80ca", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b7eb6afee4557ffefdeaa176eeedf1eabcdf412fb1717740d021ea56863bf105", "class_name": "RelatedNodeInfo"}}, "text": "Loading Together\n\nUse the `adapter` argument of `load_labware()` to load an adapter at the same time as labware. For example, to load the same 96\\-well plate and adapter from the previous section at once:\n\n```\nhs_plate = hs_mod.load_labware(\n name=\"nest_96_wellplate_200ul_flat\",\n adapter=\"opentrons_96_flat_bottom_adapter\"\n)\n\n```\n\nNew in version 2\\.15: The `adapter` parameter.\n\nThe API also has some \u201ccombination\u201d labware definitions, which treat the adapter and labware as a unit:\n\n```\nhs_combo = hs_mod.load_labware(\n \"opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat\"\n)\n\n```\n\nLoading labware this way prevents you from moving the labware onto or off of the adapter, so it\u2019s less flexible than loading the two separately. Avoid using combination definitions unless your protocol specifies an `apiLevel` of 2\\.14 or lower.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 846, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "655c55fe-0cc5-482b-9854-4c0d26faa928": {"__data__": {"id_": "655c55fe-0cc5-482b-9854-4c0d26faa928", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4db0cd75-c068-4b1b-9568-55edcc23e1d1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1e5d2f1b6245d4ab214eb8d4faf5b20f90712816daab17e61acc95a876f3c861", "class_name": "RelatedNodeInfo"}}, "text": "Accessing Wells in Labware", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 28, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1c302ce2-13eb-4f5c-8197-be35d64921e4": {"__data__": {"id_": "1c302ce2-13eb-4f5c-8197-be35d64921e4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "db5bd995-4fd6-4f90-81d8-15d132492d89", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2e9e84e3aef1b98ef3fc35c626186163322ec16085cc9633a3d64842735ddb73", "class_name": "RelatedNodeInfo"}}, "text": "Well Ordering\n\nYou need to select which wells to transfer liquids to and from over the course of a protocol.\n\nRows of wells on a labware have labels that are capital letters starting with A. For instance, an 96\\-well plate has 8 rows, labeled `\"A\"` through `\"H\"`.\n\nColumns of wells on a labware have labels that are numbers starting with 1\\. For instance, a 96\\-well plate has columns `\"1\"` through `\"12\"`.\n\nAll well\\-accessing functions start with the well at the top left corner of the labware. The ending well is in the bottom right. The order of travel from top left to bottom right depends on which function you use.\n\nThe code in this section assumes that `plate` is a 24\\-well plate. For example:\n\n```\nplate = protocol.load_labware(\"corning_24_wellplate_3.4ml_flat\", location=\"D1\")\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 794, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f8eee05a-466d-4169-85ef-032419f8c5db": {"__data__": {"id_": "f8eee05a-466d-4169-85ef-032419f8c5db", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3c5a26f3-84fa-4d50-ac01-1ad780986f5e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "389903c20f6d702e3dfd883cde3e39407876d3d7f8c60d6b33e6a55b7b3f7f50", "class_name": "RelatedNodeInfo"}}, "text": "Accessor Methods\n\nThe API provides many different ways to access wells inside labware. Different methods are useful in different contexts. The table below lists out the methods available to access wells and their differences.\n\n| Method | Returns | Example |\n| ----------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------- | ---------------------------------------------------------------------- |\n| `Labware.wells()` | List of all wells. | `[labware:A1, labware:B1, labware:C1...]` |\n| `Labware.rows()` | List of lists grouped by row. | `[[labware:A1, labware:A2...], [labware:B1, labware:B2...]]` |\n| `Labware.columns()` | List of lists grouped by column. | `[[labware:A1, labware:B1...], [labware:A2, labware:B2...]]` |\n| `Labware.wells_by_name()` | Dictionary with well names as keys. | `{\"A1\": labware:A1, \"B1\": labware:B1}` |\n| `Labware.rows_by_name()` | Dictionary with row names as keys. | `{\"A\": [labware:A1, labware:A2...], \"B\": [labware:B1, labware:B2...]}` |\n| `Labware.columns_by_name()` | Dictionary with column names as keys. | `{\"1\": [labware:A1, labware:B1...], \"2\": [labware:A2, labware:B2...]}` |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1676, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd": {"__data__": {"id_": "4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "94ad5bad-5d79-4900-b224-fcb536f546dc", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "72486ce21315df7050bdefdcea46e312148a8cb7867e0b912e918cfbc7b54ae1", "class_name": "RelatedNodeInfo"}}, "text": "Accessing Individual Wells", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 28, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec": {"__data__": {"id_": "e37ac22e-a4f8-449b-a4f4-f1944e2bcfec", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9e84d06d-f07c-4287-9eee-91b4347ab105", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "60c90f9f7266332912a35c7b69234c0b47ab776517eb3ac4664f23aa42fbbce4", "class_name": "RelatedNodeInfo"}}, "text": "Dictionary Access\n\nThe simplest way to refer to a single well is by its `well_name`, like A1 or D6\\. Referencing a particular key in the result of `Labware.wells_by_name()` accomplishes this. This is such a common task that the API also has an equivalent shortcut: dictionary indexing.\n\n```\na1 = plate.wells_by_name()[\"A1\"]\nd6 = plate[\"D6\"] # dictionary indexing\n\n```\n\nIf a well does not exist in the labware, such as `plate[\"H12\"]` on a 24\\-well plate, the API will raise a `KeyError`. In contrast, it would be a valid reference on a standard 96\\-well plate.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 585, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2": {"__data__": {"id_": "47f78fc9-8cc9-4c02-94b0-cd16ff593dc2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "30086c6a-3f81-4256-90c9-76e799e54220", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "87aaba39f0a509bb6d121aecb3e6c1cc0d4fb8d4de253827fc2eea7bfc495113", "class_name": "RelatedNodeInfo"}}, "text": "List Access From `wells`\n\nIn addition to referencing wells by name, you can also reference them with zero\\-indexing. The first well in a labware is at position 0\\.\n\n```\nplate.wells()[0] # well A1\nplate.wells()[23] # well D6\n\n```\n\nTip\n\nYou may find coordinate well names like `\"B3\"` easier to reason with, especially when working with irregular labware, e.g.\n`opentrons_10_tuberack_falcon_4x50ml_6x15ml_conical` (see the Opentrons 10 Tube Rack in the Labware Library). Whichever well access method you use, your protocol will be most maintainable if you use only one access method consistently.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 621, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d95791c3-d879-4147-aeb6-a448e2e56a23": {"__data__": {"id_": "d95791c3-d879-4147-aeb6-a448e2e56a23", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "994280d0-881b-4da9-81e8-1b218ece448d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3398bba65edcf85f7683d91d89728705658445969d10673bfe2f56868b45ac4c", "class_name": "RelatedNodeInfo"}}, "text": "Accessing Groups of Wells\n\nWhen handling liquid, you can provide a group of wells as the source or destination. Alternatively, you can take a group of wells and loop (or iterate) through them, with each liquid\\-handling command inside the loop accessing the loop index.\n\nUse `Labware.rows_by_name()` to access a specific row of wells or `Labware.columns_by_name()` to access a specific column of wells on a labware. These methods both return a dictionary with the row or column name as the keys:\n\n```\nrow_dict = plate.rows_by_name()[\"A\"]\nrow_list = plate.rows()[0] # equivalent to the line above\ncolumn_dict = plate.columns_by_name()[\"1\"]\ncolumn_list = plate.columns()[0] # equivalent to the line above\n\nprint('Column \"1\" has', len(column_dict), 'wells') # Column \"1\" has 4 wells\nprint('Row \"A\" has', len(row_dict), 'wells') # Row \"A\" has 6 wells\n\n```\n\nSince these methods return either lists or dictionaries, you can iterate through them as you would regular Python data structures.\n\nFor example, to transfer 50 \u00b5L of liquid from the first well of a reservoir to each of the wells of row `\"A\"` on a plate:\n\n```\nfor well in plate.rows()[0]:\n pipette.transfer(reservoir[\"A1\"], well, 50)\n\n```\n\nEquivalently, using `rows_by_name`:\n\n```\nfor well in plate.rows_by_name()[\"A\"].values():\n pipette.transfer(reservoir[\"A1\"], well, 50)\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1365, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6c2e3648-7641-41c1-83cf-2ef654b3e3c4": {"__data__": {"id_": "6c2e3648-7641-41c1-83cf-2ef654b3e3c4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "479056b59ebf75b56d5c5cfa5fa2c3386de699adddd0eb1545a76bac61f7a8b6", "class_name": "RelatedNodeInfo"}}, "text": "Labeling Liquids in Wells\n\nOptionally, you can specify the liquids that should be in various wells at the beginning of your protocol. Doing so helps you identify well contents by name and volume, and adds corresponding labels to a single well, or group of wells, in well plates and reservoirs. You can view the initial liquid setup:\n\n- For Flex protocols, on the touchscreen.\n- For Flex or OT\\-2 protocols, in the Opentrons App (v6\\.3\\.0 or higher).\n\nTo use these optional methods, first create a liquid object with `ProtocolContext.define_liquid()` and then label individual wells by calling `Well.load_liquid()`.\n\nLet\u2019s examine how these two methods work. The following examples demonstrate how to define colored water samples for a well plate and reservoir.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 762, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "47cdf033-1dfa-4a68-b87b-c3dfae5533f8": {"__data__": {"id_": "47cdf033-1dfa-4a68-b87b-c3dfae5533f8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "585e7a5f-6ee0-42b5-ae41-d7b682789472", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f97243f25015101f6661dea6344e8cd1d557623e7a8d3dbd575d2e8cc2dff2d5", "class_name": "RelatedNodeInfo"}}, "text": "Defining Liquids\n\nThis example uses `define_liquid` to create two liquid objects and instantiates them with the variables `greenWater` and `blueWater`, respectively. The arguments for `define_liquid` are all required, and let you name the liquid, describe it, and assign it a color:\n\n```\ngreenWater = protocol.define_liquid(\n name=\"Green water\",\n description=\"Green colored water for demo\",\n display_color=\"#00FF00\",\n)\nblueWater = protocol.define_liquid(\n name=\"Blue water\",\n description=\"Blue colored water for demo\",\n display_color=\"#0000FF\",\n)\n\n```\n\nNew in version 2\\.14\\.\n\nThe `display_color` parameter accepts a hex color code, which adds a color to that liquid\u2019s label when you import your protocol into the Opentrons App. The `define_liquid` method accepts standard 3\\-, 4\\-, 6\\-, and 8\\-character hex color codes.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 841, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9feb8655-b758-44b2-a591-e72e6e041b9e": {"__data__": {"id_": "9feb8655-b758-44b2-a591-e72e6e041b9e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2f5f5e86-fef9-40f5-be31-b997cebc89fd", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6cdfb6400a6982c9725f415f5c46a1c038b5fe0ab2ce1fbe2d9767488228e1aa", "class_name": "RelatedNodeInfo"}}, "text": "Labeling Wells and Reservoirs\n\nThis example uses `load_liquid` to label the initial well location, contents, and volume (in \u00b5L) for the liquid objects created by `define_liquid`. Notice how values of the `liquid` argument use the variable names `greenWater` and `blueWater` (defined above) to associate each well with a particular liquid:\n\n```\nwell_plate[\"A1\"].load_liquid(liquid=greenWater, volume=50)\nwell_plate[\"A2\"].load_liquid(liquid=greenWater, volume=50)\nwell_plate[\"B1\"].load_liquid(liquid=blueWater, volume=50)\nwell_plate[\"B2\"].load_liquid(liquid=blueWater, volume=50)\nreservoir[\"A1\"].load_liquid(liquid=greenWater, volume=200)\nreservoir[\"A2\"].load_liquid(liquid=blueWater, volume=200)\n\n```\n\nNew in version 2\\.14\\.\n\nThis information is available after you import your protocol to the app or send it to Flex. A summary of liquids appears on the protocol detail page, and well\\-by\\-well detail is available on the run setup page (under Initial Liquid Setup in the app, or under Liquids on Flex).\n\nNote\n\n`load_liquid` does not validate volume for your labware nor does it prevent you from adding multiple liquids to each well. For example, you could label a 40 \u00b5L well with `greenWater`, `volume=50`, and then also add blue water to the well. The API won\u2019t stop you. It\u2019s your responsibility to ensure the labels you use accurately reflect the amounts and types of liquid you plan to place into wells and reservoirs.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1424, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "92b6dc3c-4165-4d1c-94c8-c1f6f072408e": {"__data__": {"id_": "92b6dc3c-4165-4d1c-94c8-c1f6f072408e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3694702a-f07c-4cfe-977d-b63c4305e7aa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9185daf03957eab227291157ccd8ad6f1d87088002280375d1ab1cc661b9cb76", "class_name": "RelatedNodeInfo"}}, "text": "Labeling vs Handling Liquids\n\nThe `load_liquid` arguments include a volume amount (`volume=n` in \u00b5L). This amount is just a label. It isn\u2019t a command or function that manipulates liquids. It only tells you how much liquid should be in a well at the start of the protocol. You need to use a method like `transfer()` to physically move liquids from a source to a destination.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 375, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0": {"__data__": {"id_": "263729a2-acb5-4d1a-8f8f-dbcd41fc56e0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee649dc0-00cd-45b1-86d4-e364661a165a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4eaf5128b51a1889d1d7cf13625b8d2d6460db0abf6c9aaf0a3c264e5a32c15d", "class_name": "RelatedNodeInfo"}}, "text": "Well Dimensions\n\nThe functions in the Accessing Wells in Labware section above return a single `Well` object or a larger object representing many wells. `Well` objects have attributes that provide information about their physical shape, such as the depth or diameter, as specified in their corresponding labware definition. These properties can be used for different applications, such as calculating the volume of a well or a position relative to the well.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 459, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8e2752f-412f-40b8-ac12-0c82676020a0": {"__data__": {"id_": "c8e2752f-412f-40b8-ac12-0c82676020a0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "45f0751f-e74b-409e-92b3-56a5077e7b84", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "35f1348528a62d675ec9a7ba71b2b72a912ed4af7d546b7391e04b158014c5ad", "class_name": "RelatedNodeInfo"}}, "text": "Depth\n\nUse `Well.depth` to get the distance in mm between the very top of the well and the very bottom. For example, a conical well\u2019s depth is measured from the top center to the bottom center of the well.\n\n```\nplate = protocol.load_labware(\"corning_96_wellplate_360ul_flat\", \"D1\")\ndepth = plate[\"A1\"].depth # 10.67\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 323, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1a7de58f-df68-474a-b536-a5204aea831b": {"__data__": {"id_": "1a7de58f-df68-474a-b536-a5204aea831b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "96147a63-462b-47b6-8b94-ba31bfba59f2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a64a4a1f309fe2547e246a895139d4a1dfda3a6ba0bce0de55344d0214c1b9b9", "class_name": "RelatedNodeInfo"}}, "text": "Diameter\n\nUse `Well.diameter` to get the diameter of a given well in mm. Since diameter is a circular measurement, this attribute is only present on labware with circular wells. If the well is not circular, the value will be `None`. Use length and width (see below) for non\\-circular wells.\n\n```\nplate = protocol.load_labware(\"corning_96_wellplate_360ul_flat\", \"D1\")\ndiameter = plate[\"A1\"].diameter # 6.86\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 417, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cd1d59b9-b560-4f69-b868-c136d63e29b0": {"__data__": {"id_": "cd1d59b9-b560-4f69-b868-c136d63e29b0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "510d409f-a6fd-4c3c-8e37-7a70347ea8ab", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6b0e8654bc834513db011863168c95fc4127f5b4fa69013acab3b5312f32cf91", "class_name": "RelatedNodeInfo"}}, "text": "Length\n\nUse `Well.length` to get the length of a given well in mm. Length is defined as the distance along the robot\u2019s x\\-axis (left to right). This attribute is only present on rectangular wells. If the well is not rectangular, the value will be `None`. Use diameter (see above) for circular wells.\n\n```\nplate = protocol.load_labware(\"nest_12_reservoir_15ml\", \"D1\")\nlength = plate[\"A1\"].length # 8.2\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 408, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7eb61bf6-a6fb-406f-9b98-866c97063e09": {"__data__": {"id_": "7eb61bf6-a6fb-406f-9b98-866c97063e09", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "971eddd0-7c7e-4cbf-9768-2b203a024361", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "15443386df975c54ccee3095123a57432515f6318f75dae82769b30bef7955ba", "class_name": "RelatedNodeInfo"}}, "text": "Width\n\nUse `Well.width` to get the width of a given well in mm. Width is defined as the distance along the y\\-axis (front to back). This attribute is only present on rectangular wells. If the well is not rectangular, the value will be `None`. Use diameter (see above) for circular wells.\n\n```\nplate = protocol.load_labware(\"nest_12_reservoir_15ml\", \"D1\")\nwidth = plate[\"A1\"].width # 71.2\n\n```\n\nNew in version 2\\.9\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 418, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "864076b7-ed58-4051-b8b8-ae83d361d1ff": {"__data__": {"id_": "864076b7-ed58-4051-b8b8-ae83d361d1ff", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0c3c8db0-1c9b-462e-8794-9e80ef607487", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f3d7c7d905a00cd26dc8583af72bdeb47fbccfd7e1fe9305e60a21b724627770", "class_name": "RelatedNodeInfo"}}, "text": "Moving Labware\n\nYou can move an entire labware (and all of its contents) from one deck slot to another at any point during your protocol. On Flex, you can either use the gripper or move the labware manually. On OT\\-2, you can can only move labware manually, since it doesn\u2019t have a gripper instrument.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 303, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9de99182-6404-45f5-9277-1bca0948ae98": {"__data__": {"id_": "9de99182-6404-45f5-9277-1bca0948ae98", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b9cce625-c085-46ca-94c2-f459b33950a0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c135ec09c21ea7d8286d148b55aa7af5127d2db66bc274adc5e6d6d35220d5ab", "class_name": "RelatedNodeInfo"}}, "text": "Basic Movement\n\nUse the `ProtocolContext.move_labware()` method to initiate a move, regardless of whether it uses the gripper.\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"D1\")\n protocol.move_labware(labware=plate, new_location=\"D2\")\n\n```\n\nNew in version 2\\.15\\.\n\nThe required arguments of `move_labware()` are the `labware` you want to move and its `new_location`. You don\u2019t need to specify where the move begins, since that information is already stored in the `Labware` object \u2014 `plate` in this example. The destination of the move can be any empty deck slot, or a module that\u2019s ready to have labware added to it (see Movement with Modules below). Movement to an occupied location, including the labware\u2019s current location, will raise an error.\n\nWhen the move step is complete, the API updates the labware\u2019s location, so you can move the plate multiple times:\n\n```\nprotocol.move_labware(labware=plate, new_location=\"D2\")\nprotocol.move_labware(labware=plate, new_location=\"D3\")\n\n```\n\nFor the first move, the API knows to find the plate in its initial load location, slot D1\\. For the second move, the API knows to find the plate in D2\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1219, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "15df1912-ef86-400e-8613-63812935df4c": {"__data__": {"id_": "15df1912-ef86-400e-8613-63812935df4c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4065963f-dd8e-4c2d-a224-53e172f185cb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "58874fa0aa74e6c0a9b7822ba24302d086be185b96132d7c7bbd8352fb161923", "class_name": "RelatedNodeInfo"}}, "text": "Automatic vs Manual Moves\n\nThere are two ways to move labware:\n\n- Automatically, with the Opentrons Flex Gripper.\n- Manually, by pausing the protocol until a user confirms that they\u2019ve moved the labware.\n\nThe `use_gripper` parameter of `move_labware()` determines whether a movement is automatic or manual. Set its value to `True` for an automatic move. The default value is `False`, so if you don\u2019t specify a value, the protocol will pause for a manual move.\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"D1\")\n\n # have the gripper move the plate from D1 to D2\n protocol.move_labware(labware=plate, new_location=\"D2\", use_gripper=True)\n\n # pause to move the plate manually from D2 to D3\n protocol.move_labware(labware=plate, new_location=\"D3\", use_gripper=False)\n\n # pause to move the plate manually from D3 to C1\n protocol.move_labware(labware=plate, new_location=\"C1\")\n\n```\n\nNew in version 2\\.15\\.\n\nNote\n\nDon\u2019t add a `pause()` command before `move_labware()`. When `use_gripper` is unset or `False`, the protocol pauses when it reaches the movement step. The Opentrons App or the touchscreen on Flex shows an animation of the labware movement that you need to perform manually. The protocol only resumes when you press **Confirm and resume**.\n\nThe above example is a complete and valid `run()` function. You don\u2019t have to load the gripper as an instrument, and there is no `InstrumentContext` for the gripper. All you have to do to specify that a protocol requires the gripper is to include at least one `move_labware()` command with `use_gripper=True`.\n\nIf you attempt to use the gripper to move labware in an OT\\-2 protocol, the API will raise an error.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1752, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "68d47fad-bb4a-44a7-8c63-58050f005f87": {"__data__": {"id_": "68d47fad-bb4a-44a7-8c63-58050f005f87", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7d1a37d4-2f81-46f8-a045-c3eea542e072", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f4aedc750c66e7c296cf2880a6c50056afcf5cc5e92dba42115578df95677dc1", "class_name": "RelatedNodeInfo"}}, "text": "Supported Labware\n\nYou can manually move any standard or custom labware. Using the gripper to move the following labware is fully supported by Opentrons:\n\n| Labware Type | API Load Names |\n| --------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Full\\-skirt PCR plates | _ `armadillo_96_wellplate_200ul_pcr_full_skirt` _ `opentrons_96_wellplate_200ul_pcr_full_skirt` |\n| NEST well plates | _ `nest_96_wellplate_200ul_flat` _ `nest_96_wellplate_2ml_deep` |\n| Opentrons Flex 96 Tip Racks | _ `opentrons_flex_96_tiprack_50ul` _ `opentrons_flex_96_tiprack_200ul` _ `opentrons_flex_96_tiprack_1000ul` _ `opentrons_flex_96_filtertiprack_50ul` _ `opentrons_flex_96_filtertiprack_200ul` _ `opentrons_flex_96_filtertiprack_1000ul` |\n\nThe gripper may work with other ANSI/SLAS standard labware, but this is not recommended.\n\nNote\n\nThe labware definitions listed above include information about the position and force that the gripper uses to pick up the labware. The gripper uses default values for labware definitions that don\u2019t include position and force information. The Python Protocol API won\u2019t raise a warning or error if you try to grip and move other types of labware.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1939, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6162dc0c-8118-4b94-93ed-b8b693e3f908": {"__data__": {"id_": "6162dc0c-8118-4b94-93ed-b8b693e3f908", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "29d0e92e-2f07-41ff-85a7-366097435880", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9582fbdec3949d3413c39a2497daf8d86aa0ca4fe7f98a7498ad0f81e33e4fec", "class_name": "RelatedNodeInfo"}}, "text": "Movement with Modules\n\nMoving labware on and off of modules lets you precisely control when the labware is in contact with the hot, cold, or magnetic surfaces of the modules \u2014\u00a0all within a single protocol.\n\nWhen moving labware anywhere that isn\u2019t an empty deck slot, consider what physical object the labware will rest on following the move. That object should be the value of `new_location`, and you need to make sure it\u2019s already loaded before the move. For example, if you want to move a 96\\-well flat plate onto a Heater\\-Shaker module, you actually want to have it rest on top of the Heater\\-Shaker\u2019s 96 Flat Bottom Adapter. Pass the adapter, not the module or the slot, as the value of `new_location`:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"D1\")\n hs_mod = protocol.load_module(\"heaterShakerModuleV1\", \"C1\")\n hs_adapter = hs_mod.load_adapter(\"opentrons_96_flat_bottom_adapter\")\n hs_mod.open_labware_latch()\n protocol.move_labware(\n labware=plate, new_location=hs_adapter, use_gripper=True\n )\n\n```\n\nNew in version 2\\.15\\.\n\nIf you try to move the plate to slot C1 or the Heater\\-Shaker module, the API will raise an error, because C1 is occupied by the Heater\\-Shaker, and the Heater\\-Shaker is occupied by the adapter. Only the adapter, as the topmost item in that stack, is unoccupied.\n\nAlso note the `hs_mod.open_labware_latch()` command in the above example. To move labware onto or off of a module, you have to make sure that it\u2019s physically accessible:\n\n> - For the Heater\\-Shaker, use `open_labware_latch()`.\n> - For the Thermocycler, use `open_lid()`.\n\nIf the labware is inaccessible, the API will raise an error.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1730, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05c70ffb-3451-4aac-9fff-dca65871b819": {"__data__": {"id_": "05c70ffb-3451-4aac-9fff-dca65871b819", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "200dbd2c-4feb-430b-a45e-e8815de81a0e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a20e93244ea18385bbdcf409f597d8b8492c2effdfc34218c1498b600f50063a", "class_name": "RelatedNodeInfo"}}, "text": "Movement into the Waste Chute\n\nMove used tip racks and well plates to the waste chute to dispose of them. This requires you to first configure the waste chute in your protocol. Then use the loaded `WasteChute` object as the value of `new_location`:\n\n```\nchute = protocol.load_waste_chute()\nprotocol.move_labware(\n labware=plate, new_location=chute, use_gripper=True\n)\n\n```\n\nNew in version 2\\.16\\.\n\nThis will pick up `plate` from its current location and drop it into the chute.\n\nAlways specify `use_gripper=True` when moving labware into the waste chute. The chute is not designed for manual movement. You can still manually move labware to other locations, including off\\-deck, with the chute installed.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 709, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "89fbf4b9-69e8-4842-9a4f-b22c18d93601": {"__data__": {"id_": "89fbf4b9-69e8-4842-9a4f-b22c18d93601", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0a572fee-480b-453e-b39b-d52c1860abf3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6341a686c16a2489f84831dc2e72f74453c204e5878210e0aecebd0b1224dfe5", "class_name": "RelatedNodeInfo"}}, "text": "The Off\\-Deck Location\n\nIn addition to moving labware around the deck, `move_labware()` can also prompt you to move labware off of or onto the deck.\n\nRemove labware from the deck to perform tasks like retrieving samples or discarding a spent tip rack. The destination location for such moves is the special constant `OFF_DECK`:\n\n```\nprotocol.move_labware(labware=plate, new_location=protocol_api.OFF_DECK)\n\n```\n\nNew in version 2\\.15\\.\n\nMoving labware off\\-deck always requires user intervention, because the gripper can\u2019t reach outside of the robot. Omit the `use_gripper` parameter or explicitly set it to `False`. If you try to move labware off\\-deck with `use_gripper=True`, the API will raise an error.\n\nYou can also load labware off\\-deck, in preparation for a `move_labware()` command that brings it _onto_ the deck. For example, you could assign two tip racks to a pipette \u2014 one on\\-deck, and one off\\-deck \u2014 and then swap out the first rack for the second one:\n\n> ```\n> from opentrons import protocol_api\n>\n> metadata = {\"apiLevel\": \"2.19\", \"protocolName\": \"Tip rack replacement\"}\n> requirements = {\"robotType\": \"OT-2\"}\n>\n>\n> def run(protocol: protocol_api.ProtocolContext):\n> tips1 = protocol.load_labware(\"opentrons_96_tiprack_1000ul\", 1)\n> # load another tip rack but don't put it in a slot yet\n> tips2 = protocol.load_labware(\n> \"opentrons_96_tiprack_1000ul\", protocol_api.OFF_DECK\n> )\n> pipette = protocol.load_instrument(\n> \"p1000_single_gen2\", \"left\", tip_racks=[tips1, tips2]\n> )\n> # use all the on-deck tips\n> for i in range(96):\n> pipette.pick_up_tip()\n> pipette.drop_tip()\n> # pause to move the spent tip rack off-deck\n> protocol.move_labware(labware=tips1, new_location=protocol_api.OFF_DECK)\n> # pause to move the fresh tip rack on-deck\n> protocol.move_labware(labware=tips2, new_location=1)\n> pipette.pick_up_tip()\n>\n> ```\n\nUsing the off\\-deck location to remove or replace labware lets you continue your workflow in a single protocol, rather than needing to end a protocol, reset the deck, and start a new protocol run.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2128, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "12b52d4e-62a9-485c-9295-ac3c7b7712e4": {"__data__": {"id_": "12b52d4e-62a9-485c-9295-ac3c7b7712e4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4b745bcad616c9c35797d1179e173bfd7d8e991da9d7db35f64d5c3edde1118f", "class_name": "RelatedNodeInfo"}}, "text": "Hardware Modules", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 18, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0e310153-ee47-45f3-913e-57ba9f58ad5d": {"__data__": {"id_": "0e310153-ee47-45f3-913e-57ba9f58ad5d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "cf88bb859d868a125b3b3ab2735bbe52ab818b178f63bad3240510b9e8b911c3", "class_name": "RelatedNodeInfo"}}, "text": "Module Setup", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 14, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "83762a91-2b61-4ed1-a937-20c8d4fe6cae": {"__data__": {"id_": "83762a91-2b61-4ed1-a937-20c8d4fe6cae", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "fb584b0a406fa683a75a032ebc932873bbe80b1ed0abbe3db9e61d4aabfed3b5", "class_name": "RelatedNodeInfo"}}, "text": "Loading Modules onto the Deck\n\nSimilar to labware and pipettes, you must inform the API about the modules you want to use in your protocol. Even if you don\u2019t use the module anywhere else in your protocol, the Opentrons App and the robot won\u2019t let you start the protocol run until all loaded modules that use power are connected via USB and turned on.\n\nUse `ProtocolContext.load_module()` to load a module.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 407, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7932423f-0047-496c-86f0-5c4a705fc98a": {"__data__": {"id_": "7932423f-0047-496c-86f0-5c4a705fc98a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "69ce5701-aef9-4dca-8308-a1f0d8dfb17d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bbebd830e826048162b3bccc5539c5586a96dd9cdf2992a7908868a549f18214", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # Load a Heater-Shaker Module GEN1 in deck slot D1.\n heater_shaker = protocol.load_module(\n module_name=\"heaterShakerModuleV1\", location=\"D1\")\n\n # Load a Temperature Module GEN2 in deck slot D3.\n temperature_module = protocol.load_module(\n module_name=\"temperature module gen2\", location=\"D3\")\n\n```\n\nAfter the `load_module()` method loads the modules into your protocol, it returns the `HeaterShakerContext` and `TemperatureModuleContext` objects.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 625, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "49e57753-554b-4cf6-9f91-eef9976e20a8": {"__data__": {"id_": "49e57753-554b-4cf6-9f91-eef9976e20a8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8eea9f35-5942-4a12-8b0a-afc11c521132", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7e3e2a03e381eddc727b66d03508b4a5786116403ae6430ba841671a6d14376c", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # Load a Magnetic Module GEN2 in deck slot 1.\n magnetic_module = protocol.load_module(\n module_name=\"magnetic module gen2\", location=1)\n\n # Load a Temperature Module GEN1 in deck slot 3.\n temperature_module = protocol.load_module(\n module_name=\"temperature module\", location=3)\n\n```\n\nAfter the `load_module()` method loads the modules into your protocol, it returns the `MagneticModuleContext` and `TemperatureModuleContext` objects.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 609, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c": {"__data__": {"id_": "e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "350795e8-f3c0-48bc-be44-dc2db7790d6e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "880974f08e03f9e16d18942c04740b50add26857ff9fc43d07f4a01ce6046f01", "class_name": "RelatedNodeInfo"}}, "text": "Available Modules\n\nThe first parameter of `ProtocolContext.load_module()` is the module\u2019s _API load name_. The load name tells your robot which module you\u2019re going to use in a protocol. The table below lists the API load names for the currently available modules.\n\n| Module | API Load Name | Introduced in API Version |\n| -------------------------- | ---------------------------------------------------- | ------------------------- |\n| Temperature Module GEN1 | `temperature module` or `tempdeck` | 2\\.0 |\n| Temperature Module GEN2 | `temperature module gen2` | 2\\.3 |\n| Magnetic Module GEN1 | `magnetic module` or `magdeck` | 2\\.0 |\n| Magnetic Module GEN2 | `magnetic module gen2` | 2\\.3 |\n| Thermocycler Module GEN1 | `thermocycler module` or `thermocycler` | 2\\.0 |\n| Thermocycler Module GEN2 | `thermocycler module gen2` or `thermocyclerModuleV2` | 2\\.13 |\n| Heater\\-Shaker Module GEN1 | `heaterShakerModuleV1` | 2\\.13 |\n| Magnetic Block GEN1 | `magneticBlockV1` | 2\\.15 |\n\nSome modules were added to our Python API later than others, and others span multiple hardware generations. When writing a protocol that requires a module, make sure your `requirements` or `metadata` code block specifies an API version high enough to support all the module generations you want to use.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1710, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1f364fe1-4df5-46a1-95b2-00ea557d74ca": {"__data__": {"id_": "1f364fe1-4df5-46a1-95b2-00ea557d74ca", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "aaf37c8c-f9d2-450a-8463-82cedd958758", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5e4c80dd6aabfbbd7ecb2c45e70688e5f1b9c15fd59615ef592a0b3b7e7f05d2", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware onto a Module\n\nUse the `load_labware()` method on the module context to load labware on a module. For example, to load the Opentrons 24 Well Aluminum Block on top of a Temperature Module:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n temp_mod = protocol.load_module(\n module_name=\"temperature module gen2\",\n location=\"D1\")\n temp_labware = temp_mod.load_labware(\n name=\"opentrons_24_aluminumblock_generic_2ml_screwcap\",\n label=\"Temperature-Controlled Tubes\")\n\n```\n\nNew in version 2\\.0\\.\n\nWhen you load labware on a module, you don\u2019t need to specify the deck slot. In the above example, the `load_module()` method already specifies where the module is on the deck: `location= \"D1\"`.\n\nAny custom labware added to your Opentrons App is also accessible when loading labware onto a module. You can find and copy its load name by going to its card on the Labware page.\n\nNew in version 2\\.1\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 941, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e4d3c45-624f-4149-9374-fca2ed641f58": {"__data__": {"id_": "2e4d3c45-624f-4149-9374-fca2ed641f58", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a3f95be5-00a8-496a-9716-cfaabad3af83", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a1b231993928f0ea0ffb61c158debd741f2a3206d85391f29c4a32696adb0018", "class_name": "RelatedNodeInfo"}}, "text": "Module and Labware Compatibility\n\nIt\u2019s your responsibility to ensure the labware and module combinations you load together work together. The Protocol API won\u2019t raise a warning or error if you load an unusual combination, like placing a tube rack on a Thermocycler. See What labware can I use with my modules? for more information about labware/module combinations.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 367, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b": {"__data__": {"id_": "8aead8e6-2401-4dc1-8ce7-aa8d17625c6b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f23264c4-1c2a-4b5c-ad26-329db3f6e926", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8a2f80363cfdfd9f4d053e27fe88109173b61311bf37570185de5eee62a0e2b7", "class_name": "RelatedNodeInfo"}}, "text": "Additional Labware Parameters\n\nIn addition to the mandatory `load_name` argument, you can also specify additional parameters. For example, if you specify a `label`, this name will appear in the Opentrons App and the run log instead of the load name. For labware that has multiple definitions, you can specify `version` and `namespace` (though most of the time you won\u2019t have to). The `load_labware()` methods of all module contexts accept these additional parameters.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 469, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "74d3384a-7128-4168-9f8d-47d5cb6dee60": {"__data__": {"id_": "74d3384a-7128-4168-9f8d-47d5cb6dee60", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "98a14f91-efc1-484c-bd1c-168e4f107a8a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5db158f0595964986d8d15e86963a3fbb45619cbd8f4283f448a0989835414c0", "class_name": "RelatedNodeInfo"}}, "text": "Heater\\-Shaker Module\n\nThe Heater\\-Shaker Module provides on\\-deck heating and orbital shaking. The module can heat from 37 to 95 \u00b0C, and can shake samples from 200 to 3000 rpm.\n\nThe Heater\\-Shaker Module is represented in code by a `HeaterShakerContext` object. For example:\n\n```\nhs_mod = protocol.load_module(\n module_name=\"heaterShakerModuleV1\", location=\"D1\"\n)\n\n```\n\nNew in version 2\\.13\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 398, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8": {"__data__": {"id_": "770165d2-d4d9-42ea-aa3b-0451a0bb8cd8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1767df8a-429c-4ceb-a2c0-519f13a4207a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a66df8d679379368e33ac72b7eb4e9add8f8da95ca669948ae3be88b4735c226", "class_name": "RelatedNodeInfo"}}, "text": "Deck Slots\n\nThe supported deck slot positions for the Heater\\-Shaker depend on the robot you\u2019re using.\n\n| Robot Model | Heater\\-Shaker Deck Placement |\n| ----------- | ----------------------------------------------------------------------------------------------------------- |\n| Flex | In any deck slot in column 1 or 3\\. The module can go in slot A3, but you need to move the trash bin first. |\n| OT\\-2 | In deck slot 1, 3, 4, 6, 7, or 10\\. |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 609, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e": {"__data__": {"id_": "3a3f4731-d358-48fb-8b0e-152ad5a2bc3e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4647e943-9fc8-4934-a54a-74c2ec98ed91", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "71a123ec41e7ee3cea76eb2536d2f2f33414744e7a6e9f91756c0c9fdfc2e9be", "class_name": "RelatedNodeInfo"}}, "text": "OT\\-2 Placement Restrictions\n\nOn OT\\-2, you need to restrict placement of other modules and labware around the Heater\\-Shaker. On Flex, the module is installed below\\-deck in a caddy and there is more space between deck slots, so these restrictions don\u2019t apply.\n\nIn general, it\u2019s best to leave all slots adjacent to the Heater\\-Shaker empty. If your protocol requires filling those slots, observe the following restrictions to avoid physical crashes involving the Heater\\-Shaker.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 481, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e9f07882-5921-41b1-883c-0396aaaef7ac": {"__data__": {"id_": "e9f07882-5921-41b1-883c-0396aaaef7ac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7b96fe3ef8f1d367c711efbc84c76c078263f7c9bbc1ef0dd375d8b2fc351568", "class_name": "RelatedNodeInfo"}}, "text": "Adjacent Modules\n\nDo not place other modules next to the Heater\\-Shaker. Keeping adjacent deck slots clear helps prevents collisions during shaking and while opening the labware latch. Loading a module next to the Heater\\-Shaker on OT\\-2 will raise a `DeckConflictError`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 273, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "df618784-f3bd-49f9-b3b9-88ac69087dc2": {"__data__": {"id_": "df618784-f3bd-49f9-b3b9-88ac69087dc2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "dbfcc543e6a37cc3a033715e1d41fad2314a3a9a6cfde6b143aa86fcdfd64302", "class_name": "RelatedNodeInfo"}}, "text": "Tall Labware\n\nDo not place labware taller than 53 mm to the left or right of the Heater\\-Shaker. This prevents the Heater\\-Shaker\u2019s latch from colliding with the adjacent labware. Common labware that exceed the height limit include Opentrons tube racks and Opentrons 1000 \u00b5L tip racks. Loading tall labware to the right or left of the Heater\\-Shaker on OT\\-2 will raise a `DeckConflictError`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 394, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc6d620d-8967-4097-ba4b-5b8379b30435": {"__data__": {"id_": "fc6d620d-8967-4097-ba4b-5b8379b30435", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "56237d75-1153-4f73-a1e1-26b49b72701d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5396210009090198b108e1bd793ddb17f1d90bc3a79acb4c83cb9b0152317bda", "class_name": "RelatedNodeInfo"}}, "text": "8\\-Channel Pipettes\n\nYou can\u2019t perform pipetting actions in any slots adjacent to the Heater\\-Shaker if you\u2019re using a GEN2 or GEN1 8\\-channel pipette. This prevents the pipette ejector from crashing on the module housing or labware latch. Using an 8\\-channel pipette will raise a `PipetteMovementRestrictedByHeaterShakerError`.\n\nThere is one exception: to the front or back of the Heater\\-Shaker, an 8\\-channel pipette can access tip racks only. Attempting to pipette to non\\-tip\\-rack labware will also raise a `PipetteMovementRestrictedByHeaterShakerError`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 562, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "88d8279d-e0e5-4c63-8c40-03d0daf7cab7": {"__data__": {"id_": "88d8279d-e0e5-4c63-8c40-03d0daf7cab7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "38bb20f8-99e1-45f1-847c-7043f83b26df", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8f5961548944655e639ea9e08524f6070b589e8501d6679be2a7c46c8efb651b", "class_name": "RelatedNodeInfo"}}, "text": "Latch Control\n\nTo add and remove labware from the Heater\\-Shaker, control the module\u2019s labware latch from your protocol using `open_labware_latch()` and `close_labware_latch()`. Shaking requires the labware latch to be closed, so you may want to issue a close command before the first shake command in your protocol:\n\n```\nhs_mod.close_labware_latch()\nhs_mod.set_and_wait_for_shake_speed(500)\n\n```\n\nIf the labware latch is already closed, `close_labware_latch()` will succeed immediately; you don\u2019t have to check the status of the latch before opening or closing it.\n\nTo prepare the deck before running a protocol, use the labware latch controls in the Opentrons App or run these methods in Jupyter notebook.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 709, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ad557b52-361c-4391-ac61-5bb82b32a98c": {"__data__": {"id_": "ad557b52-361c-4391-ac61-5bb82b32a98c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1a73fed3-dc5d-4114-a921-be2d877d0e20", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d020d7aa2f44602684362c5b33bacdca2ef1792a1c4b8309663274483516f177", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware\n\nUse the Heater\\-Shaker\u2019s `load_adapter()` and `load_labware()` methods to specify what you will place on the module. For the Heater\\-Shaker, use one of the thermal adapters listed below and labware that fits on the adapter. See Loading Labware on Adapters for examples of loading labware on modules.\n\nThe Opentrons Labware Library includes definitions for both standalone adapters and adapter\u2013labware combinations. These labware definitions help make the Heater\\-Shaker ready to use right out of the box.\n\nNote\n\nIf you plan to move labware onto or off of the Heater\\-Shaker during your protocol, you must use a standalone adapter definition, not an adapter\u2013labware combination definiton.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 706, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06721709-3201-4bf4-ae18-7081ae33a6b8": {"__data__": {"id_": "06721709-3201-4bf4-ae18-7081ae33a6b8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "77b77dce-8938-4eed-8764-5f733b2cdb71", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5cfcebc387678bcd3c609a9b8a863f84ef62616e8e56e6591015c8de48527034", "class_name": "RelatedNodeInfo"}}, "text": "Standalone Adapters\n\nYou can use these standalone adapter definitions to load Opentrons verified or custom labware on top of the Heater\\-Shaker.\n\n| Adapter Type | API Load Name |\n| ----------------------------------------------- | ---------------------------------- |\n| Opentrons Universal Flat Heater\\-Shaker Adapter | `opentrons_universal_flat_adapter` |\n| Opentrons 96 PCR Heater\\-Shaker Adapter | `opentrons_96_pcr_adapter` |\n| Opentrons 96 Deep Well Heater\\-Shaker Adapter | `opentrons_96_deep_well_adapter` |\n| Opentrons 96 Flat Bottom Heater\\-Shaker Adapter | `opentrons_96_flat_bottom_adapter` |\n\nFor example, these commands load a well plate on top of the flat bottom adapter:\n\n```\nhs_adapter = hs_mod.load_adapter(\"opentrons_96_flat_bottom_adapter\")\nhs_plate = hs_adapter.load_labware(\"nest_96_wellplate_200ul_flat\")\n\n```\n\nNew in version 2\\.15: The `load_adapter()` method.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 961, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3c193164-9ac6-4c33-84eb-4f619cfc6d78": {"__data__": {"id_": "3c193164-9ac6-4c33-84eb-4f619cfc6d78", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a11b618f-9240-4a14-9c60-1cf964a8cdbf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e86b65d040a2b689507713f25143f14c89d26bf87f33a0d82ef9298530f9c8d8", "class_name": "RelatedNodeInfo"}}, "text": "Pre\\-configured Combinations\n\nThe Heater\\-Shaker supports these thermal adapter and labware combinations for backwards compatibility. If your protocol specifies an `apiLevel` of 2\\.15 or higher, you should use the standalone adapter definitions instead.\n\n| Adapter/Labware Combination | API Load Name |\n| ------------------------------------------------------------------------ | ------------------------------------------------------------------- |\n| Opentrons 96 Deep Well Adapter with NEST Deep Well Plate 2 mL | `opentrons_96_deep_well_adapter_nest_wellplate_2ml_deep` |\n| Opentrons 96 Flat Bottom Adapter with NEST 96 Well Plate 200 \u00b5L Flat | `opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat` |\n| Opentrons 96 PCR Adapter with Armadillo Well Plate 200 \u00b5L | `opentrons_96_pcr_adapter_armadillo_wellplate_200ul` |\n| Opentrons 96 PCR Adapter with NEST Well Plate 100 \u00b5L | `opentrons_96_pcr_adapter_nest_wellplate_100ul_pcr_full_skirt` |\n| Opentrons Universal Flat Adapter with Corning 384 Well Plate 112 \u00b5L Flat | `opentrons_universal_flat_adapter_corning_384_wellplate_112ul_flat` |\n\nThis command loads the same physical adapter and labware as the example in the previous section, but it is also compatible with API versions 2\\.13 and 2\\.14:\n\n```\nhs_combo = hs_mod.load_labware(\n \"opentrons_96_flat_bottom_adapter_nest_wellplate_200ul_flat\"\n)\n\n```\n\nNew in version 2\\.13\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1577, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "41fe424f-5356-4081-b566-ba0af32bead2": {"__data__": {"id_": "41fe424f-5356-4081-b566-ba0af32bead2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a4e25329-5188-4bf9-8563-22b56735c8a0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "91408bcb2452f7edd92a40be02b91d0a3635c5006ec50c24cdc011ab1a85431c", "class_name": "RelatedNodeInfo"}}, "text": "Custom Flat\\-Bottom Labware\n\nCustom flat\\-bottom labware can be used with the Universal Flat Adapter. See the support article Requesting a Custom Labware Definition if you need assistance creating custom labware definitions for the Heater\\-Shaker.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 249, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8fe81af3-bafb-49cb-ba50-d5f3bc347131": {"__data__": {"id_": "8fe81af3-bafb-49cb-ba50-d5f3bc347131", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4a196e24-5646-402a-9474-530fd0866c44", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "50095c1062d4959a70ee51e612fe3241dfee43d43e2252de46e1456be8f744c1", "class_name": "RelatedNodeInfo"}}, "text": "Heating and Shaking\n\nThe API treats heating and shaking as separate, independent activities due to the amount of time they take.\n\nIncreasing or reducing shaking speed takes a few seconds, so the API treats these actions as _blocking_ commands. All other commands cannot run until the module reaches the required speed.\n\nHeating the module, or letting it passively cool, takes more time than changing the shaking speed. As a result, the API gives you the flexibility to perform other pipetting actions while waiting for the module to reach a target temperature. When holding at temperature, you can design your protocol to run in a blocking or non\\-blocking manner.\n\nNote\n\nSince API version 2\\.13, only the Heater\\-Shaker Module supports non\\-blocking command execution. All other modules\u2019 methods are blocking commands.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 821, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "21ea6e25-467c-4f15-b2a4-6135d6ec3e60": {"__data__": {"id_": "21ea6e25-467c-4f15-b2a4-6135d6ec3e60", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a13c0e51-2e14-4ff8-b6a6-415120d62b33", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e4ada5ed3ba494669cb3ce0d9170d40c0b81df4529ad150329f2b80b9cb23370", "class_name": "RelatedNodeInfo"}}, "text": "Blocking commands\n\nThis example uses a blocking command and shakes a sample for one minute. No other commands will execute until a minute has elapsed. The three commands in this example start the shake, wait for one minute, and then stop the shake:\n\n```\nhs_mod.set_and_wait_for_shake_speed(500)\nprotocol.delay(minutes=1)\nhs_mod.deactivate_shaker()\n\n```\n\nThese actions will take about 65 seconds total. Compare this with similar\\-looking commands for holding a sample at a temperature for one minute:\n\n```\nhs_mod.set_and_wait_for_temperature(75)\nprotocol.delay(minutes=1)\nhs_mod.deactivate_heater()\n\n```\n\nThis may take much longer, depending on the thermal block used, the volume and type of liquid contained in the labware, and the initial temperature of the module.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 768, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c11bd073-d374-4e7a-8539-38569a04d1ad": {"__data__": {"id_": "c11bd073-d374-4e7a-8539-38569a04d1ad", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0332e6cc358b4f28c6da1bcfd2c11611619ad63fe770d3dcbc135f28b17e8edb", "class_name": "RelatedNodeInfo"}}, "text": "Non\\-blocking commands\n\nTo pipette while the Heater\\-Shaker is heating, use `set_target_temperature()` and `wait_for_temperature()` instead of `set_and_wait_for_temperature()`:\n\n```\nhs_mod.set_target_temperature(75)\npipette.pick_up_tip()\npipette.aspirate(50, plate[\"A1\"])\npipette.dispense(50, plate[\"B1\"])\npipette.drop_tip()\nhs_mod.wait_for_temperature()\nprotocol.delay(minutes=1)\nhs_mod.deactivate_heater()\n\n```\n\nThis example would likely take just as long as the blocking version above; it\u2019s unlikely that one aspirate and one dispense action would take longer than the time for the module to heat. However, be careful when putting a lot of commands between a `set_target_temperature()` call and a `delay()` call. In this situation, you\u2019re relying on `wait_for_temperature()` to resume execution of commands once heating is complete. But if the temperature has already been reached, the delay will begin later than expected and the Heater\\-Shaker will hold at its target temperature longer than intended.\n\nAdditionally, if you want to pipette while the module holds a temperature for a certain length of time, you need to track the holding time yourself. One of the simplest ways to do this is with Python\u2019s `time` module. First, add `import time` at the start of your protocol. Then, use `time.monotonic()`') to set a reference time when the target is reached. Finally, add a delay that calculates how much holding time is remaining after the pipetting actions:\n\n```\nhs_mod.set_and_wait_for_temperature(75)\nstart_time = time.monotonic() # set reference time\npipette.pick_up_tip()\npipette.aspirate(50, plate[\"A1\"])\npipette.dispense(50, plate[\"B1\"])\npipette.drop_tip()\n# delay for the difference between now and 60 seconds after the reference time\nprotocol.delay(max(0, start_time+60 - time.monotonic()))\nhs_mod.deactivate_heater()\n\n```\n\nProvided that the parallel pipetting actions don\u2019t take more than one minute, this code will deactivate the heater one minute after its target was reached. If more than one minute has elapsed, the value passed to `protocol.delay()` will equal 0, and the protocol will continue immediately.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2131, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368": {"__data__": {"id_": "fc2d5b78-43e7-4d5f-9d15-ca5fa841d368", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f5420126-9745-42ea-a08b-bdf16577dff4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "342a4674eec7d69614dfa9f2077a023a347f1ac052100f20bd3e9b63a6b898a1", "class_name": "RelatedNodeInfo"}}, "text": "Deactivating\n\nDeactivating the heater and shaker are done separately using the `deactivate_heater()` and `deactivate_shaker()` methods, respectively. There is no method to deactivate both simultaneously. Call the two methods in sequence if you need to stop both heating and shaking.\n\nNote\n\nThe robot will not automatically deactivate the Heater\\-Shaker at the end of a protocol. If you need to deactivate the module after a protocol is completed or canceled, use the Heater\\-Shaker module controls on the device detail page in the Opentrons App or run these methods in Jupyter notebook.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 588, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e244ca2-5e29-43b7-8a3c-98549e4d97ed": {"__data__": {"id_": "7e244ca2-5e29-43b7-8a3c-98549e4d97ed", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "043cf0bf-373b-4e4e-862d-62dea1de594b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3a925b5c62db6686028e9fd2f1f747251438ff854d8ac438dd02a368e423f095", "class_name": "RelatedNodeInfo"}}, "text": "Magnetic Block\n\nNote\n\nThe Magnetic Block is compatible with Opentrons Flex only. If you have an OT\\-2, use the Magnetic Module.\n\nThe Magnetic Block is an unpowered, 96\\-well plate that holds labware close to its high\\-strength neodymium magnets. This module is suitable for many magnetic bead\\-based protocols, but does not move beads up or down in solution.\n\nBecause the Magnetic Block is unpowered, neither your robot nor the Opentrons App aware of this module. You \u201ccontrol\u201d it via protocols to load labware onto the module and use the Opentrons Flex Gripper to move labware on and off the module. See Moving Labware for more information.\n\nThe Magnetic Block is represented by a `MagneticBlockContext` object which lets you load labware on top of the module.\n\n```\n# Load the Magnetic Block in deck slot D1\nmagnetic_block = protocol.load_module(\n module_name=\"magneticBlockV1\", location=\"D1\"\n)\n\n# Load a 96-well plate on the magnetic block\nmag_plate = magnetic_block.load_labware(\n name=\"biorad_96_wellplate_200ul_pcr\"\n)\n\n# Use the Gripper to move labware\nprotocol.move_labware(mag_plate, new_location=\"B2\", use_gripper=True)\n\n```\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1164, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "39292e60-4e04-403d-9efb-39addde4ee28": {"__data__": {"id_": "39292e60-4e04-403d-9efb-39addde4ee28", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7a59eff3-3aa9-4fac-9d19-e29491007fbb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4acfee3a8a6410e1c372b9a03d6aeab20bbd8c5db5137f6350a17d59b452ecdd", "class_name": "RelatedNodeInfo"}}, "text": "Magnetic Module\n\nNote\n\nThe Magnetic Module is compatible with the OT\\-2 only. If you have a Flex, use the Magnetic Block.\n\nThe Magnetic Module controls a set of permanent magnets which can move vertically to induce a magnetic field in the labware loaded on the module.\n\nThe Magnetic Module is represented by a `MagneticModuleContext` object, which has methods for engaging (raising) and disengaging (lowering) its magnets.\n\nThe examples in this section apply to an OT\\-2 with a Magnetic Module GEN2 loaded in slot 6:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n mag_mod = protocol.load_module(\n module_name=\"magnetic module gen2\",\n location=\"6\")\n plate = mag_mod.load_labware(\n name=\"nest_96_wellplate_100ul_pcr_full_skirt\")\n\n```\n\nNew in version 2\\.3\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 785, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5003f6bb-5355-4147-8dc7-b40d9500e93c": {"__data__": {"id_": "5003f6bb-5355-4147-8dc7-b40d9500e93c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a0a807b9-4301-429c-bce9-46250c0647a5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "419a5de63206a8fbba015f16e70cb1828d3fb75a510e6e413ed8e2cfa835ab9c", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware\n\nLike with all modules, use the Magnetic Module\u2019s `load_labware()` method to specify what you will place on the module. The Magnetic Module supports 96\\-well PCR plates and deep well plates. For the best compatibility, use a labware definition that specifies how far the magnets should move when engaging with the labware. The following plates in the Opentrons Labware Library include this measurement:\n\n| Labware Name | API Load Name |\n| -------------------------------------------- | ------------------------------------------ |\n| Bio\\-Rad 96 Well Plate 200 \u00b5L PCR | `biorad_96_wellplate_200ul_pcr` |\n| NEST 96 Well Plate 100 \u00b5L PCR Full Skirt | `nest_96_wellplate_100ul_pcr_full_skirt` |\n| NEST 96 Deep Well Plate 2mL | `nest_96_wellplate_2ml_deep` |\n| Thermo Scientific Nunc 96 Well Plate 1300 \u00b5L | `thermoscientificnunc_96_wellplate_1300ul` |\n| Thermo Scientific Nunc 96 Well Plate 2000 \u00b5L | `thermoscientificnunc_96_wellplate_2000ul` |\n| USA Scientific 96 Deep Well Plate 2\\.4 mL | `usascientific_96_wellplate_2.4ml_deep` |\n\nTo check whether a custom labware definition specifies this measurement, load the labware and query its `magdeck_engage_height` property. If has a numerical value, the labware is ready for use with the Magnetic Module.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1393, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2b3514d3-df70-4353-a430-c9f44780a089": {"__data__": {"id_": "2b3514d3-df70-4353-a430-c9f44780a089", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "819670e0-6c9a-4836-8666-cd45980f05e7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7e1c1709ac29f58ea1092a7d247cc51ba6830d6def8f963c7727885d334666f2", "class_name": "RelatedNodeInfo"}}, "text": "Engaging and Disengaging\n\nRaise and lower the module\u2019s magnets with the `engage()` and `disengage()` functions, respectively.\n\nIf your loaded labware is fully compatible with the Magnetic Module, you can call `engage()` with no argument:\n\n> ```\n> mag_mod.engage()\n>\n> ```\n>\n> New in version 2\\.0\\.\n\nThis will move the magnets upward to the default height for the labware, which should be close to the bottom of the labware\u2019s wells. If your loaded labware doesn\u2019t specify a default height, this will raise an `ExceptionInProtocolError`.\n\nFor certain applications, you may want to move the magnets to a different height. The recommended way is to use the `height_from_base` parameter, which represents the distance above the base of the labware (its lowest point, where it rests on the module). Setting `height_from_base=0` should move the tops of the magnets level with the base of the labware. Alternatively, you can use the `offset` parameter, which represents the distance above _or below_ the labware\u2019s default position (close to the bottom of its wells). Like using `engage()` with no argument, this will raise an error if there is no default height for the loaded labware.\n\nNote\n\nThere is up to 1 mm of manufacturing variance across Magnetic Module units, so observe the exact position and adjust as necessary before running your protocol.\n\nHere are some examples of where the magnets will move when using the different parameters in combination with the loaded NEST PCR plate, which specifies a default height of 20 mm:\n\n> ```\n> mag_mod.engage(height_from_base=13.5) # 13.5 mm\n> mag_mod.engage(offset=-2) # 15.5 mm\n>\n> ```\n\nNote that `offset` takes into account the fact that the magnets\u2019 home position is measured as \u22122\\.5 mm for GEN2 modules.\n\n> New in version 2\\.0\\.\n>\n> Changed in version 2\\.2: Added the `height_from_base` parameter.\n\nWhen you need to retract the magnets back to their home position, call `disengage()`.\n\n> ```\n> mag_mod.disengage() # -2.5 mm\n>\n> ```\n\nNew in version 2\\.0\\.\n\nIf at any point you need to check whether the magnets are engaged or not, use the `status` property. This will return either the string `engaged` or `disengaged`, not the exact height of the magnets.\n\nNote\n\nThe OT\\-2 will not automatically deactivate the Magnetic Module at the end of a protocol. If you need to deactivate the module after a protocol is completed or canceled, use the Magnetic Module controls on the device detail page in the Opentrons App or run `deactivate()` in Jupyter notebook.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2519, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6931ad56-a9f8-4e1f-8686-8d827b8c28d3": {"__data__": {"id_": "6931ad56-a9f8-4e1f-8686-8d827b8c28d3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5dda650a-ff1a-426c-ae7d-a62ff7cb64df", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d7a35be43eddeea5e42f48b0ed4793bfcba477d9130e388fafde7a45b2d2dc4e", "class_name": "RelatedNodeInfo"}}, "text": "Changes with the GEN2 Magnetic Module\n\nThe GEN2 Magnetic Module uses smaller magnets than the GEN1 version. This change helps mitigate an issue with the magnets attracting beads from their retracted position, but it also takes longer for the GEN2 module to attract beads. The recommended attraction time is 5 minutes for liquid volumes up to 50 \u00b5L and 7 minutes for volumes greater than 50 \u00b5L. If your application needs additional magnetic strength to attract beads within these timeframes, use the available Adapter Magnets.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 527, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9df6f9ed-1a20-4d07-b419-3a232c53067e": {"__data__": {"id_": "9df6f9ed-1a20-4d07-b419-3a232c53067e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "93bb53c8-930d-46cb-82b2-662c0f732327", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1d58a4e3b7973b184526fa17e9bd38f29738dd1f48cdd2d5401501ef596399e2", "class_name": "RelatedNodeInfo"}}, "text": "Temperature Module\n\nThe Temperature Module acts as both a cooling and heating device. It can control the temperature of its deck between 4 \u00b0C and 95 \u00b0C with a resolution of 1 \u00b0C.\n\nThe Temperature Module is represented in code by a `TemperatureModuleContext` object, which has methods for setting target temperatures and reading the module\u2019s status. This example demonstrates loading a Temperature Module GEN2 and loading a well plate on top of it.\n\n```\ntemp_mod = protocol.load_module(\n module_name=\"temperature module gen2\", location=\"D3\"\n)\n\n```\n\nNew in version 2\\.3\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 574, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a7f8239c-e6f1-467a-ac29-2e5636515606": {"__data__": {"id_": "a7f8239c-e6f1-467a-ac29-2e5636515606", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2f42a9cc-2e68-40eb-8472-1449ace5af03", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5a86823b909c8c5355df25b6c1ad71e817c7d4a97c3a70b126d7ea0018335671", "class_name": "RelatedNodeInfo"}}, "text": "Loading Labware\n\nUse the Temperature Module\u2019s `load_adapter()` and `load_labware()` methods to specify what you will place on the module. You may use one or both of the methods, depending on the labware you\u2019re using. See Loading Labware on Adapters for examples of loading labware on modules.\n\nThe Opentrons Labware Library includes definitions for both standalone adapters and adapter\u2013labware combinations. These labware definitions help make the Temperature Module ready to use right out of the box.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 503, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7": {"__data__": {"id_": "6e672ef2-1d00-4b1c-845b-7bd6d8912ad7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "52040a53-e5ce-452f-9de2-1600f47352df", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3af614a584003647d31bc33ccc24679f4ecfa3506a11f42b34b5f30c6129f001", "class_name": "RelatedNodeInfo"}}, "text": "Standalone Adapters\n\nYou can use these standalone adapter definitions to load Opentrons verified or custom labware on top of the Temperature Module.\n\n| Adapter Type | API Load Name |\n| ------------------------------------ | -------------------------------------- |\n| Opentrons Aluminum Flat Bottom Plate | `opentrons_aluminum_flat_bottom_plate` |\n| Opentrons 96 Well Aluminum Block | `opentrons_96_well_aluminum_block` |\n\nFor example, these commands load a PCR plate on top of the 96\\-well block:\n\n```\ntemp_adapter = temp_mod.load_adapter(\n \"opentrons_96_well_aluminum_block\"\n)\ntemp_plate = temp_adapter.load_labware(\n \"nest_96_wellplate_100ul_pcr_full_skirt\"\n)\n\n```\n\nNew in version 2\\.15: The `load_adapter()` method.\n\nNote\n\nYou can also load labware directly onto the Temperature Module. In API version 2\\.14 and earlier, this was the correct way to load labware on top of the flat bottom plate. In API version 2\\.15 and later, you should load both the adapter and the labware with separate commands.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1067, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a6a49bc-91e8-4059-82b4-a5731f18fb81": {"__data__": {"id_": "4a6a49bc-91e8-4059-82b4-a5731f18fb81", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f2ee7c4c76a909aacc4e148391b5e8fde28617ff3752649ec25591e401e2dcca", "class_name": "RelatedNodeInfo"}}, "text": "Block\\-and\\-tube combinations\n\nYou can use these combination labware definitions to load various types of tubes into the 24\\-well thermal block on top of the Temperature Module. There is no standalone definition for the 24\\-well block.\n\n| Tube Type | API Load Name |\n| ---------------------- | ------------------------------------------------- |\n| Generic 2 mL screw cap | `opentrons_24_aluminumblock_generic_2ml_screwcap` |\n| NEST 0\\.5 mL screw cap | `opentrons_24_aluminumblock_nest_0.5ml_screwcap` |\n| NEST 1\\.5 mL screw cap | `opentrons_24_aluminumblock_nest_1.5ml_screwcap` |\n| NEST 1\\.5 mL snap cap | `opentrons_24_aluminumblock_nest_1.5ml_snapcap` |\n| NEST 2 mL screw cap | `opentrons_24_aluminumblock_nest_2ml_screwcap` |\n| NEST 2 mL snap cap | `opentrons_24_aluminumblock_nest_2ml_snapcap` |\n\nFor example, this command loads the 24\\-well block with generic 2 mL tubes:\n\n```\ntemp_tubes = temp_mod.load_labware(\n \"opentrons_24_aluminumblock_generic_2ml_screwcap\"\n)\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1072, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "06c8f1be-09ed-4762-9739-a090b78e3bc0": {"__data__": {"id_": "06c8f1be-09ed-4762-9739-a090b78e3bc0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "33252fd8-1d83-4357-aed8-a15f4322e07b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "138412707e4268cd8a913d6aa5492c05e035dd8a357f1bc4e97c8d5028fdd9e6", "class_name": "RelatedNodeInfo"}}, "text": "Block\\-and\\-plate combinations\n\nThe Temperature Module supports these 96\\-well block and labware combinations for backwards compatibility. If your protocol specifies an `apiLevel` of 2\\.15 or higher, you should use the standalone 96\\-well block definition instead.\n\n| 96\\-well block contents | API Load Name |\n| -------------------------- | ---------------------------------------------------- |\n| Bio\\-Rad well plate 200 \u03bcL | `opentrons_96_aluminumblock_biorad_wellplate_200uL` |\n| Generic PCR strip 200 \u03bcL | `opentrons_96_aluminumblock_generic_pcr_strip_200uL` |\n| NEST well plate 100 \u03bcL | `opentrons_96_aluminumblock_nest_wellplate_100uL` |\n\nThis command loads the same physical adapter and labware as the example in the Standalone Adapters section above, but it is also compatible with earlier API versions:\n\n```\ntemp_combo = temp_mod.load_labware(\n \"opentrons_96_aluminumblock_nest_wellplate_100uL\"\n)\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 990, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e517b8e1-15d2-4458-87f4-4dfeb1811716": {"__data__": {"id_": "e517b8e1-15d2-4458-87f4-4dfeb1811716", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c6c5aeb9-2930-4daa-9468-dc09ca99beb6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c3b13a382da28f4d69b05d0e9febcf76aee676f062028f22ea6a1155805dfb39", "class_name": "RelatedNodeInfo"}}, "text": "Temperature Control\n\nThe primary function of the module is to control the temperature of its deck, using `set_temperature()`, which takes one parameter: `celsius`. For example, to set the Temperature Module to 4 \u00b0C:\n\n```\ntemp_mod.set_temperature(celsius=4)\n\n```\n\nWhen using `set_temperature()`, your protocol will wait until the target temperature is reached before proceeding to further commands. In other words, you can pipette to or from the Temperature Module when it is holding at a temperature or idle, but not while it is actively changing temperature. Whenever the module reaches its target temperature, it will hold the temperature until you set a different target or call `deactivate()`, which will stop heating or cooling and will turn off the fan.\n\nNote\n\nYour robot will not automatically deactivate the Temperature Module at the end of a protocol. If you need to deactivate the module after a protocol is completed or canceled, use the Temperature Module controls on the device detail page in the Opentrons App or run `deactivate()` in Jupyter notebook.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1091, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ff111f55-ae10-45e2-92da-a096318840f2": {"__data__": {"id_": "ff111f55-ae10-45e2-92da-a096318840f2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "13d4320a-ce49-44a3-acf9-6e6c5f67ae49", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d8922bb9ce97a7b4c49612a35823fae064f5103e2725cf901c90037cd1791e34", "class_name": "RelatedNodeInfo"}}, "text": "Temperature Status\n\nIf you need to confirm in software whether the Temperature Module is holding at a temperature or is idle, use the `status` property:\n\n```\ntemp_mod.set_temperature(celsius=90)\ntemp_mod.status # \"holding at target\"\ntemp_mod.deactivate()\ntemp_mod.status # \"idle\"\n\n```\n\nIf you don\u2019t need to use the status value in your code, and you have physical access to the module, you can read its status and temperature from the LED and display on the module.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 492, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "46852915-14f3-4c56-b364-ffec623d1110": {"__data__": {"id_": "46852915-14f3-4c56-b364-ffec623d1110", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3021f7c1-9ebe-43b0-9452-6db7e6d49216", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "09b60e3767dffa4a8ef6960aa2370430bddb9a1c781db1dfe5fc1040ddd754be", "class_name": "RelatedNodeInfo"}}, "text": "Changes with the GEN2 Temperature Module\n\nAll methods of `TemperatureModuleContext` work with both the GEN1 and GEN2 Temperature Module. Physically, the GEN2 module has a plastic insulating rim around the plate, and plastic insulating shrouds designed to fit over Opentrons aluminum blocks. This mitigates an issue where the GEN1 module would have trouble cooling to very low temperatures, especially if it shared the deck with a running Thermocycler.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 453, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64": {"__data__": {"id_": "e0e3a3b2-1b4b-4a25-a497-8b630a09ba64", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2bfca846-68e1-40ac-9716-7d8d551ae833", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9a9f2fe394dccc623fe4fe06713637df1420eb00cafaecc1b423a87e9dcce502", "class_name": "RelatedNodeInfo"}}, "text": "Thermocycler Module\n\nThe Thermocycler Module provides on\\-deck, fully automated thermocycling, and can heat and cool very quickly during operation. The module\u2019s block can reach and maintain temperatures between 4 and 99 \u00b0C. The module\u2019s lid can heat up to 110 \u00b0C.\n\nThe Thermocycler is represented in code by a `ThermocyclerContext` object, which has methods for controlling the lid, controlling the block, and setting _profiles_ \u2014 timed heating and cooling routines that can be repeated automatically.\n\nThe examples in this section will use a Thermocycler Module GEN2 loaded as follows:\n\n```\ntc_mod = protocol.load_module(module_name=\"thermocyclerModuleV2\")\nplate = tc_mod.load_labware(name=\"nest_96_wellplate_100ul_pcr_full_skirt\")\n\n```\n\nNew in version 2\\.13\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 763, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "25063585-9f14-4c7e-836a-a2956319e633": {"__data__": {"id_": "25063585-9f14-4c7e-836a-a2956319e633", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0e4922f2-517b-4c9c-b1a8-7ca10adadaca", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9c46be85b0258e61997481b8bc9bef57b32fd1d290fc559d717ea17111db446d", "class_name": "RelatedNodeInfo"}}, "text": "Lid Control\n\nThe Thermocycler can control the position and temperature of its lid.\n\nTo change the lid position, use `open_lid()` and `close_lid()`. When the lid is open, the pipettes can access the loaded labware.\n\nYou can also control the temperature of the lid. Acceptable target temperatures are between 37 and 110 \u00b0C. Use `set_lid_temperature()`, which takes one parameter: the target `temperature` (in degrees Celsius) as an integer. For example, to set the lid to 50 \u00b0C:\n\n```\ntc_mod.set_lid_temperature(temperature=50)\n\n```\n\nThe protocol will only proceed once the lid temperature reaches 50 \u00b0C. This is the case whether the previous temperature was lower than 50 \u00b0C (in which case the lid will actively heat) or higher than 50 \u00b0C (in which case the lid will passively cool).\n\nYou can turn off the lid heater at any time with `deactivate_lid()`.\n\nNote\n\nLid temperature is not affected by Thermocycler profiles. Therefore you should set an appropriate lid temperature to hold during your profile _before_ executing it. See Thermocycler Profiles for more information on defining and executing profiles.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1131, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "604f912d-6dba-41cf-ae04-4146618412f1": {"__data__": {"id_": "604f912d-6dba-41cf-ae04-4146618412f1", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a78142c8-9f68-434a-8f7d-64459282a32e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6d93ecc84b3e460feb9721ca86bf3145b5ada9e2ed742f984d79bdebe9dd3bf9", "class_name": "RelatedNodeInfo"}}, "text": "Block Control\n\nThe Thermocycler can control its block temperature, including holding at a temperature and adjusting for the volume of liquid held in its loaded plate.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 168, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b27f419a-1eb1-4044-a004-2181c718d9db": {"__data__": {"id_": "b27f419a-1eb1-4044-a004-2181c718d9db", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ce1a83e1-ee20-4579-bb8f-b9ecae516863", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c771c56244431816d2120650e0db2b0e65871139d4cb00ad469d2c650808a773", "class_name": "RelatedNodeInfo"}}, "text": "Temperature\n\nTo set the block temperature inside the Thermocycler, use `set_block_temperature()`. At minimum you have to specify a `temperature` in degrees Celsius:\n\n```\ntc_mod.set_block_temperature(temperature=4)\n\n```\n\nIf you don\u2019t specify any other parameters, the Thermocycler will hold this temperature until a new temperature is set, `deactivate_block()` is called, or the module is powered off.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 425, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2e7b7a46-2077-4163-8fc6-ea5e0116eff7": {"__data__": {"id_": "2e7b7a46-2077-4163-8fc6-ea5e0116eff7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8356bd9b-ef43-4463-9571-a521a944e9cb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "291cd8cab6878f4e0e9a1708654388dd2a22c17b603fd49ee8f62aa724f1d4ca", "class_name": "RelatedNodeInfo"}}, "text": "Hold Time\n\nYou can optionally instruct the Thermocycler to hold its block temperature for a specific amount of time. You can specify `hold_time_minutes`, `hold_time_seconds`, or both (in which case they will be added together). For example, this will set the block to 4 \u00b0C for 4 minutes and 15 seconds:\n\n```\ntc_mod.set_block_temperature(\n temperature=4,\n hold_time_minutes=4,\n hold_time_seconds=15)\n\n```\n\nNote\n\nYour protocol will not proceed to further commands while holding at a temperature. If you don\u2019t specify a hold time, the protocol will proceed as soon as the target temperature is reached.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 633, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530": {"__data__": {"id_": "8dd3147f-9a7d-4a38-ab0a-bbaad8da0530", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "da1e6936-4451-4b4e-bdce-d4b96f7dfb19", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "dd3f6678850be941f27068d6bd6c30ff0acac707148e3d9340ba8bf3aabe3a8b", "class_name": "RelatedNodeInfo"}}, "text": "Block Max Volume\n\nThe Thermocycler\u2019s block temperature controller varies its behavior based on the amount of liquid in the wells of its labware. Accurately specifying the liquid volume allows the Thermocycler to more precisely control the temperature of the samples. You should set the `block_max_volume` parameter to the amount of liquid in the _fullest_ well, measured in \u00b5L. If not specified, the Thermocycler will assume samples of 25 \u00b5L.\n\nIt is especially important to specify `block_max_volume` when holding at a temperature. For example, say you want to hold larger samples at a temperature for a short time:\n\n```\ntc_mod.set_block_temperature(\n temperature=4,\n hold_time_seconds=20,\n block_max_volume=80)\n\n```\n\nIf the Thermocycler assumes these samples are 25 \u00b5L, it may not cool them to 4 \u00b0C before starting the 20\\-second timer. In fact, with such a short hold time they may not reach 4 \u00b0C at all!\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 940, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "94932e90-bca7-4993-bc81-8c86542dccd1": {"__data__": {"id_": "94932e90-bca7-4993-bc81-8c86542dccd1", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dc9394c0-64bd-49c6-944a-3e8d172218e1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "cf034ec8e3ea4e1a2030997499999ad1af2b89586479eeb4ea37251f62458474", "class_name": "RelatedNodeInfo"}}, "text": "Thermocycler Profiles\n\nIn addition to executing individual temperature commands, the Thermocycler can automatically cycle through a sequence of block temperatures to perform heat\\-sensitive reactions. These sequences are called _profiles_, which are defined in the Protocol API as lists of dictionaries. Each dictionary within the profile should have a `temperature` key, which specifies the temperature of the step, and either or both of `hold_time_seconds` and `hold_time_minutes`, which specify the duration of the step.\n\nFor example, this profile commands the Thermocycler to reach 10 \u00b0C and hold for 30 seconds, and then to reach 60 \u00b0C and hold for 45 seconds:\n\n```\nprofile = [\n {\"temperature\":10, \"hold_time_seconds\":30},\n {\"temperature\":60, \"hold_time_seconds\":45}\n]\n\n```\n\nOnce you have written the steps of your profile, execute it with `execute_profile()`. This function executes your profile steps multiple times depending on the `repetitions` parameter. It also takes a `block_max_volume` parameter, which is the same as that of the `set_block_temperature()` function.\n\nFor instance, a PCR prep protocol might define and execute a profile like this:\n\n```\nprofile = [\n {\"temperature\":95, \"hold_time_seconds\":30},\n {\"temperature\":57, \"hold_time_seconds\":30},\n {\"temperature\":72, \"hold_time_seconds\":60}\n]\ntc_mod.execute_profile(steps=profile, repetitions=20, block_max_volume=32)\n\n```\n\nIn terms of the actions that the Thermocycler performs, this would be equivalent to nesting `set_block_temperature` commands in a `for` loop:\n\n```\nfor i in range(20):\n tc_mod.set_block_temperature(95, hold_time_seconds=30, block_max_volume=32)\n tc_mod.set_block_temperature(57, hold_time_seconds=30, block_max_volume=32)\n tc_mod.set_block_temperature(72, hold_time_seconds=60, block_max_volume=32)\n\n```\n\nHowever, this code would generate 60 lines in the protocol\u2019s run log, while executing a profile is summarized in a single line. Additionally, you can set a profile once and execute it multiple times (with different numbers of repetitions and maximum volumes, if needed).\n\nNote\n\nTemperature profiles only control the temperature of the block in the Thermocycler. You should set a lid temperature before executing the profile using `set_lid_temperature()`.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2302, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "692966a7-e54c-4abf-bc2f-c59557e551e7": {"__data__": {"id_": "692966a7-e54c-4abf-bc2f-c59557e551e7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "70f399f2-2ff6-4259-92cb-bfde88121616", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9c74d57aa294120a59bb8e2cd0d0680035906d235744f3fc4c004a9bfeb89cbc", "class_name": "RelatedNodeInfo"}}, "text": "Changes with the GEN2 Thermocycler Module\n\nAll methods of `ThermocyclerContext` work with both the GEN1 and GEN2 Thermocycler. One practical difference is that the GEN2 module has a plate lift feature to make it easier to remove the plate manually or with the Opentrons Flex Gripper. To activate the plate lift, press the button on the Thermocycler for three seconds while the lid is open. If you need to do this in the middle of a run, call `pause()`, lift and move the plate, and then resume the run.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 504, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e5157153-76fb-435d-b2c0-9ecdf6ce1241": {"__data__": {"id_": "e5157153-76fb-435d-b2c0-9ecdf6ce1241", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "17bf3916-9433-4a71-b068-b422aa99263c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1cb9af02affb3a8a943aaebec7bf67b26bde604d6f0ffc1646fe1d66bd7171e0", "class_name": "RelatedNodeInfo"}}, "text": "Multiple Modules of the Same Type\n\nYou can use multiple modules of the same type within a single protocol. The exception is the Thermocycler Module, which has only one supported deck location because of its size. Running protocols with multiple modules of the same type requires version 4\\.3 or newer of the Opentrons App and robot server.\n\nWhen working with multiple modules of the same type, load them in your protocol according to their USB port number. Deck coordinates are required by the `load_labware()` method, but location does not determine which module loads first. Your robot will use the module with the lowest USB port number _before_ using a module of the same type that\u2019s connected to higher numbered USB port. The USB port number (not deck location) determines module load sequence, starting with the lowest port number first.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 845, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c2e2df9f-8609-44e2-8986-dec7ba509115": {"__data__": {"id_": "c2e2df9f-8609-44e2-8986-dec7ba509115", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "df2a00ac20eb3dbcd278aaf7eef281b1b73c3622a300a6451748131494c70dea", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\nIn this example, `temperature_module_1` loads first because it\u2019s connected to USB port 2\\. `temperature_module_2` loads next because it\u2019s connected to USB port 6\\.\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # Load Temperature Module 1 in deck slot D1 on USB port 2\n temperature_module_1 = protocol.load_module(\n module_name=\"temperature module gen2\",\n location=\"D1\")\n\n # Load Temperature Module 2 in deck slot C1 on USB port 6\n temperature_module_2 = protocol.load_module(\n module_name=\"temperature module gen2\",\n location=\"C1\")\n\n```\n\nThe Temperature Modules are connected as shown here:", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 717, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c02f556c-e845-4383-aa94-fe08bcb664e3": {"__data__": {"id_": "c02f556c-e845-4383-aa94-fe08bcb664e3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "439904d7-435f-44df-bea3-fcd9d8bae6aa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "065a584ca41ca0ad71d3092e91638977ef66c739adf49b4fbc43715fc515e0d2", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\nIn this example, `temperature_module_1` loads first because it\u2019s connected to USB port 1\\. `temperature_module_2` loads next because it\u2019s connected to USB port 3\\.\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\n\ndef run(protocol: protocol_api.ProtocolContext):\n # Load Temperature Module 1 in deck slot C1 on USB port 1\n temperature_module_1 = protocol.load_module(\n load_name=\"temperature module gen2\", location=\"1\"\n )\n\n # Load Temperature Module 2 in deck slot D3 on USB port 2\n temperature_module_2 = protocol.load_module(\n load_name=\"temperature module gen2\", location=\"3\"\n )\n\n```\n\nThe Temperature Modules are connected as shown here:\n\nBefore running your protocol, it\u2019s a good idea to use the module controls in the Opentrons App to check that commands are being sent where you expect.\n\nSee the support article Using Modules of the Same Type for more information.\n\nHardware modules are powered and unpowered deck\\-mounted peripherals. The Flex and OT\\-2 are aware of deck\\-mounted powered modules when they\u2019re attached via a USB connection and used in an uploaded protocol. The robots do not know about unpowered modules until you use one in a protocol and upload it to the Opentrons App.\n\nPowered modules include the Heater\\-Shaker Module, Magnetic Module, Temperature Module, and Thermocycler Module. The 96\\-well Magnetic Block is an unpowered module.\n\nPages in this section of the documentation cover:\n\n> - Setting up modules and their labware.\n> - Working with the module contexts for each type of module.\n>\n> > - Heater\\-Shaker Module\n> > - Magnetic Block\n> > - Magnetic Module\n> > - Temperature Module\n> > - Thermocycler Module\n>\n> - Working with multiple modules of the same type in a single protocol.\n\nNote\n\nThroughout these pages, most code examples use coordinate deck slot locations (e.g. `\"D1\"`, `\"D2\"`), like those found on Flex. If you have an OT\\-2 and are using API version 2\\.14 or earlier, replace the coordinate with its numeric OT\\-2 equivalent. For example, slot D1 on Flex corresponds to slot 1 on an OT\\-2\\. See Deck Slots for more information.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2148, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2407ed10-0410-4965-996e-0daf93ba18a9": {"__data__": {"id_": "2407ed10-0410-4965-996e-0daf93ba18a9", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0db2233a-5a0f-438d-b198-cf1cc962ad14", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ffffa0fab48f16ec4f516b84c01f893738e07f4d65b9c8c78dcbd24881d37377", "class_name": "RelatedNodeInfo"}}, "text": "Deck Slots\n\nDeck slots are where you place hardware items on the deck surface of your Opentrons robot. In the API, you load the corresponding items into your protocol with methods like `ProtocolContext.load_labware`, `ProtocolContext.load_module`, or `ProtocolContext.load_trash_bin`. When you call these methods, you need to specify which slot to load the item in.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 367, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ce755bb8-eb14-4a1c-897e-1fddeeaef178": {"__data__": {"id_": "ce755bb8-eb14-4a1c-897e-1fddeeaef178", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "25e3aeda-b157-4ee8-8db8-f05c116ef821", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0c375b145b9ca88af03fe9edfb5abec2712cf25fb2ca77a2860237003296825e", "class_name": "RelatedNodeInfo"}}, "text": "Physical Deck Labels\n\nFlex uses a coordinate labeling system for slots A1 (back left) through D4 (front right). Columns 1 through 3 are in the _working area_ and are accessible by pipettes and the gripper. Column 4 is in the _staging area_ and is only accessible by the gripper. For more information on staging area slots, see Deck Configuration below.\n\nOT\\-2 uses a numeric labeling system for slots 1 (front left) through 11 (back center). The back right slot is occupied by the fixed trash.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 495, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a96fc25a-3f3e-46aa-84dd-82f6c3847183": {"__data__": {"id_": "a96fc25a-3f3e-46aa-84dd-82f6c3847183", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "07de5e2f-27b5-4fce-9875-ad2fe9ca8040", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9e4357cc69eefe5e9e47be4bc221704c681f4cd24c327bbc6b1d2a81c9284596", "class_name": "RelatedNodeInfo"}}, "text": "API Deck Labels\n\nThe API accepts values that correspond to the physical deck slot labels on a Flex or OT\\-2 robot. Specify a slot in either format:\n\n- A coordinate like `\"A1\"`. This format must be a string.\n- A number like `\"10\"` or `10`. This format can be a string or an integer.\n\nAs of API version 2\\.15, the Flex and OT\\-2 formats are interchangeable. You can use either format, regardless of which robot your protocol is for. You could even mix and match formats within a protocol, although this is not recommended.\n\nFor example, these two `load_labware()` commands are equivalent:\n\n```\nprotocol.load_labware(\"nest_96_wellplate_200ul_flat\", \"A1\")\n\n```\n\nNew in version 2\\.15\\.\n\n```\nprotocol.load_labware(\"nest_96_wellplate_200ul_flat\", 10)\n\n```\n\nNew in version 2\\.0\\.\n\nBoth of these commands would require you to load the well plate in the back left slot of the robot.\n\nThe correspondence between deck labels is based on the relative locations of the slots. The full list of slot equivalencies is as follows:\n\n| Flex | A1 | A2 | A3 | B1 | B2 | B3 | C1 | C2 | C3 | D1 | D2 | D3 |\n| ----- | --- | --- | ----- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| OT\\-2 | 10 | 11 | Trash | 7 | 8 | 9 | 4 | 5 | 6 | 1 | 2 | 3 |\n\nSlots A4, B4, C4, and D4 on Flex have no equivalent on OT\\-2\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1331, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5593171c-b3d2-4d7c-85de-7e23b9578622": {"__data__": {"id_": "5593171c-b3d2-4d7c-85de-7e23b9578622", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7512abb7-f21b-4ccb-9146-67085b74b414", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "39dcee15b80282fe1ad74b8285207e728e10007f2945ecf7d13350cfac7127df", "class_name": "RelatedNodeInfo"}}, "text": "Deck Configuration\n\nA Flex running robot system version 7\\.1\\.0 or higher lets you specify its deck configuration on the touchscreen or in the Opentrons App. This tells the robot the positions of unpowered _deck fixtures_: items that replace standard deck slots. The following table lists currently supported deck fixtures and their allowed deck locations.\n\n| Fixture | Slots |\n| ------------------ | ------------- |\n| Staging area slots | A3\u2013D3 |\n| Trash bin | A1\u2013D1, A3\\-D3 |\n| Waste chute | D3 |\n\nWhich fixtures you need to configure depend on both load methods and the effects of other methods called in your protocol. The following sections explain how to configure each type of fixture.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 748, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b16eb01f-efdb-4a30-8dba-5369d9780275": {"__data__": {"id_": "b16eb01f-efdb-4a30-8dba-5369d9780275", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bca153c1-f76a-4f5c-a384-063b344a6fdf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1ce61db871904f9a14a1eac402520846e564668b0aea64e667af4d9d29b1183a", "class_name": "RelatedNodeInfo"}}, "text": "Staging Area Slots\n\nSlots A4 through D4 are the staging area slots. Pipettes can\u2019t reach the staging area, but these slots are always available in the API for loading and moving labware. Using a slot in column 4 as the `location` argument of `load_labware()` or the `new_location` argument of `move_labware()` will require the corresponding staging area slot in the robot\u2019s deck configuration:\n\n```\nplate_1 = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"C3\"\n) # no staging slots required\nplate_2 = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"D4\"\n) # one staging slot required\nprotocol.move_labware(\n labware=plate_1, new_location=\"C4\"\n) # two staging slots required\n\n```\n\nNew in version 2\\.16\\.\n\nSince staging area slots also include a standard deck slot in column 3, they are physically incompatible with powered modules in the same row of column 3\\. For example, if you try to load a module in C3 and labware in C4, the API will raise an error:\n\n```\ntemp_mod = protocol.load_module(\n module_name=\"temperature module gen2\",\n location=\"C3\"\n)\nstaging_plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"C4\"\n) # deck conflict error\n\n```\n\nIt is possible to use slot D4 along with the waste chute. See the Waste Chute section below for details.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1368, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f56de84c-1275-43ef-8612-2b179d6f6374": {"__data__": {"id_": "f56de84c-1275-43ef-8612-2b179d6f6374", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "81171af4-919d-4cc6-94eb-db878b7afce7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f99c8b398a264b2fb8a4d07b5b45c04c5cd74354ed251b43f6ffd0888a37899c", "class_name": "RelatedNodeInfo"}}, "text": "Trash Bin\n\nIn version 2\\.15 of the API, Flex can only have a single trash bin in slot A3\\. You do not have to (and cannot) load the trash in version 2\\.15 protocols.\n\nStarting in API version 2\\.16, you must load trash bin fixtures in your protocol in order to use them. Use `load_trash_bin()` to load a movable trash bin. This example loads a single bin in the default location:\n\n```\ndefault_trash = protocol.load_trash_bin(location = \"A3\")\n\n```\n\nNew in version 2\\.16\\.\n\nCall `load_trash_bin()` multiple times to add more than one bin. See Adding Trash Containers for more information on using pipettes with multiple trash bins.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 630, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2": {"__data__": {"id_": "c31b4d45-5ecb-4464-a5d8-823cd7ccccb2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bf2cb67e-6274-470f-93a7-e92a81c9d921", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c666cff1d81db6bd7ac4b8f92460255921eef0aa3dc83417da9ee1fd9b8445b6", "class_name": "RelatedNodeInfo"}}, "text": "Waste Chute\n\nThe waste chute accepts various materials from Flex pipettes or the Flex Gripper and uses gravity to transport them outside of the robot for disposal. Pipettes can dispose of liquid or drop tips into the chute. The gripper can drop tip racks and other labware into the chute.\n\nTo use the waste chute, first use `load_waste_chute()` to load it in slot D3:\n\n```\nchute = protocol.load_waste_chute()\n\n```\n\nNew in version 2\\.16\\.\n\nThe `load_waste_chute()` method takes no arguments, since D3 is the only valid location for the chute. However, there are multiple variant configurations of the waste chute, depending on how other methods in your protocol use it.\n\nThe waste chute is installed either on a standard deck plate adapter or on a deck plate adapter with a staging area. If any `load_labware()` or `move_labware()` calls in your protocol reference slot D4, you have to use the deck plate adapter with staging area.\n\nThe waste chute has a removable cover with a narrow opening which helps prevent aerosols and droplets from contaminating the working area. 1\\- and 8\\-channel pipettes can dispense liquid, blow out, or drop tips through the opening in the cover. Any of the following require you to remove the cover.\n\n> - `dispense()`, `blow_out()`, or `drop_tip()` with a 96\\-channel pipette.\n> - `move_labware()` with the chute as `new_location` and `use_gripper=True`.\n\nIf your protocol _does not_ call any of these methods, your deck configuration should include the cover.\n\nIn total, there are four possible deck configurations for the waste chute.\\* Waste chute only\n\n- Waste chute with cover\n- Waste chute with staging area slot\n- Waste chute with staging area slot and cover", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1698, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c1f1e583-eb55-4df4-8f4b-f567d260900b": {"__data__": {"id_": "c1f1e583-eb55-4df4-8f4b-f567d260900b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4345b23a-d8e4-4600-977a-9364161fe6ba", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a95f13c5eb84646eab899e1522fac0bd608d3d17ce672a148696798a5a3ae743", "class_name": "RelatedNodeInfo"}}, "text": "Deck Conflicts\n\nA deck conflict check occurs when preparing to run a Python protocol on a Flex running robot system version 7\\.1\\.0 or higher. The Opentrons App and touchscreen will prevent you from starting the protocol run until any conflicts are resolved. You can resolve them one of two ways:\n\n> - Physically move hardware around the deck, and update the deck configuration.\n> - Alter your protocol to work with the current deck configuration, and resend the protocol to your Flex.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 487, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82829188-ab31-45aa-91e9-7d523c175c66": {"__data__": {"id_": "82829188-ab31-45aa-91e9-7d523c175c66", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d39cf93a-f881-4804-8922-023f2bd8514a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "33fa8634a8d8c5802bc56d5899c6368f1ea79ed642816e82faaf4104f0b90a6c", "class_name": "RelatedNodeInfo"}}, "text": "Pipettes", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 10, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "36a400d2-2290-477c-837b-02475c4b2fbf": {"__data__": {"id_": "36a400d2-2290-477c-837b-02475c4b2fbf", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "03e098c5-6137-4b66-8a3c-94af492101ad", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d2e2cf4401c80159c8b57ec6f09f04ff8ae0cad69613328193ea78ed7aab46a1", "class_name": "RelatedNodeInfo"}}, "text": "Loading Pipettes\n\nWhen writing a protocol, you must inform the Protocol API about the pipettes you will be using on your robot. The `ProtocolContext.load_instrument()` function provides this information and returns an `InstrumentContext` object.\n\nAs noted above, you call the `load_instrument()` method to load a pipette. This method also requires the pipette\u2019s API load name, its left or right mount position, and (optionally) a list of associated tip racks. Even if you don\u2019t use the pipette anywhere else in your protocol, the Opentrons App and the robot won\u2019t let you start the protocol run until all pipettes loaded by `load_instrument()` are attached properly.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 668, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c8623e15-c59c-401d-8078-8912707394c5": {"__data__": {"id_": "c8623e15-c59c-401d-8078-8912707394c5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "dc825136-ae1e-4706-becc-2e3088e4be4a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b3511f10852655aeb4a71348c25515eb485e979854f73d17afecb155d602baee", "class_name": "RelatedNodeInfo"}}, "text": "API Load Names\n\nThe pipette\u2019s API load name (`instrument_name`) is the first parameter of the `load_instrument()` method. It tells your robot which attached pipette you\u2019re going to use in a protocol. The tables below list the API load names for the currently available Flex and OT\\-2 pipettes.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 295, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8d40faef-053e-4772-aa32-67f33f070223": {"__data__": {"id_": "8d40faef-053e-4772-aa32-67f33f070223", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4fe7801c-ffcf-4b4d-a934-cb8e73926d53", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bbb51d87f4b7f1dc6adea80da6151bc28f2ed9b528dc35e6dedfb7271890876a", "class_name": "RelatedNodeInfo"}}, "text": "Flex Pipettes\n\n| Pipette Model | Volume (\u00b5L) | API Load Name | |\n| ------------------------ | -------------------- | --------------------- | --- |\n| Flex 1\\-Channel Pipette | 1\u201350 | `flex_1channel_50` | |\n| 5\u20131000 | `flex_1channel_1000` | |\n| Flex 8\\-Channel Pipette | 1\u201350 | `flex_8channel_50` | |\n| 5\u20131000 | `flex_8channel_1000` | |\n| Flex 96\\-Channel Pipette | 5\u20131000 | `flex_96channel_1000` | |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 578, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e1c93542-3556-41e1-a259-89aec374e6ab": {"__data__": {"id_": "e1c93542-3556-41e1-a259-89aec374e6ab", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b894252c-f3b8-405c-bf4d-3dc5cbb999fe", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e587af23f7d992a8b2f9cda9d2cb4d035c4f5412724122a38d96491caad8bd7f", "class_name": "RelatedNodeInfo"}}, "text": "OT-2 Pipettes\n\n| Pipette Model | Volume (\u00b5L) | API Load Name |\n| -------------------------- | ----------------- | ------------------- |\n| P20 Single\\-Channel GEN2 | 1\\-20 | `p20_single_gen2` |\n| P20 Multi\\-Channel GEN2 | `p20_multi_gen2` |\n| P300 Single\\-Channel GEN2 | 20\\-300 | `p300_single_gen2` |\n| P300 Multi\\-Channel GEN2 | `p300_multi_gen2` |\n| P1000 Single\\-Channel GEN2 | 100\\-1000 | `p1000_single_gen2` |\n\nSee the OT\\-2 Pipette Generations section if you\u2019re using GEN1 pipettes on an OT\\-2\\. The GEN1 family includes the P10, P50, and P300 single\\- and multi\\-channel pipettes, along with the P1000 single\\-channel model.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 700, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5a4eece9-67b5-43df-a81c-2f3c91b9fbce": {"__data__": {"id_": "5a4eece9-67b5-43df-a81c-2f3c91b9fbce", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "00267259-f81e-4f0d-986b-ae00e970af85", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "464e7cdd81b94e1b69e111b7be652adcadc8c111360393a3d375284acc16458d", "class_name": "RelatedNodeInfo"}}, "text": "Loading Flex 1\\- and 8\\-Channel Pipettes\n\nThis code sample loads a Flex 1\\-Channel Pipette in the left mount and a Flex 8\\-Channel Pipette in the right mount. Both pipettes are 1000 \u00b5L. Each pipette uses its own 1000 \u00b5L tip rack.\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\":\"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n tiprack1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"D1\")\n tiprack2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"C1\")\n left = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack1])\n right = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\",\n mount=\"right\",\n tip_racks=[tiprack2])\n\n```\n\nIf you\u2019re writing a protocol that uses the Flex Gripper, you might think that this would be the place in your protocol to declare that. However, the gripper doesn\u2019t require `load_instrument`! Whether your gripper requires a protocol is determined by the presence of `ProtocolContext.move_labware()` commands. See Moving Labware for more details.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1216, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "033405c9-8636-4dfa-8ee3-4ce39b433530": {"__data__": {"id_": "033405c9-8636-4dfa-8ee3-4ce39b433530", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e98d606d-7464-4ade-844e-da68623e56b0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "877dbd39188fa7357cecb1226c76efa549d75e3056b9ede21f2ce67d740c13da", "class_name": "RelatedNodeInfo"}}, "text": "Loading a Flex 96\\-Channel Pipette\n\nThis code sample loads the Flex 96\\-Channel Pipette. Because of its size, the Flex 96\\-Channel Pipette requires the left _and_ right pipette mounts. You cannot use this pipette with 1\\- or 8\\-Channel Pipette in the same protocol or when these instruments are attached to the robot. Load the 96\\-channel pipette as follows:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n pipette = protocol.load_instrument(\n instrument_name=\"flex_96channel_1000\"\n )\n\n```\n\nIn protocols specifying API version 2\\.15, also include `mount=\"left\"` as a parameter of `load_instrument()`.\n\nNew in version 2\\.15\\.\n\nChanged in version 2\\.16: The `mount` parameter is optional.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 708, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "539d2ce9-35c7-434d-825b-fd7c0df52057": {"__data__": {"id_": "539d2ce9-35c7-434d-825b-fd7c0df52057", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "82661f84-1ac9-47bd-a521-68a220f2133a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b66470805ee91a48084fdc9a284c63ee591ad80b3b8d24cfd0049954fe3ea9c4", "class_name": "RelatedNodeInfo"}}, "text": "Loading OT\\-2 Pipettes\n\nThis code sample loads a P1000 Single\\-Channel GEN2 pipette in the left mount and a P300 Single\\-Channel GEN2 pipette in the right mount. Each pipette uses its own 1000 \u00b5L tip rack.\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n tiprack1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_1000ul\", location=1)\n tiprack2 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_1000ul\", location=2)\n left = protocol.load_instrument(\n instrument_name=\"p1000_single_gen2\",\n mount=\"left\",\n tip_racks=[tiprack1])\n right = protocol.load_instrument(\n instrument_name=\"p300_multi_gen2\",\n mount=\"right\",\n tip_racks=[tiprack1])\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 824, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "facc74ad-88ab-4424-8c73-5238bb1dbad7": {"__data__": {"id_": "facc74ad-88ab-4424-8c73-5238bb1dbad7", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "95860c68-a20e-4c62-8a75-5d56d1a21209", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8287ef948c736e5d74c4cf92754297783e0324a28fce122754c51fee1a9c0d13", "class_name": "RelatedNodeInfo"}}, "text": "Adding Tip Racks\n\nThe `load_instrument()` method includes the optional argument `tip_racks`. This parameter accepts a list of tip rack labware objects, which lets you to specify as many tip racks as you want. You can also edit a pipette\u2019s tip racks after loading it by setting its `InstrumentContext.tip_racks` property.\n\nNote\n\nSome methods, like `configure_nozzle_layout()`, reset a pipette\u2019s tip racks. See Partial Tip Pickup for more information.\n\nThe advantage of using `tip_racks` is twofold. First, associating tip racks with your pipette allows for automatic tip tracking throughout your protocol. Second, it removes the need to specify tip locations in the `InstrumentContext.pick_up_tip()` method. For example, let\u2019s start by loading loading some labware and instruments like this:\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tiprack_left = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\", location=\"D1\")\n tiprack_right = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\", location=\"D2\")\n left_pipette = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\", mount=\"left\")\n right_pipette = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\",\n mount=\"right\",\n tip_racks=[tiprack_right])\n\n```\n\nLet\u2019s pick up a tip with the left pipette. We need to specify the location as an argument of `pick_up_tip()`, since we loaded the left pipette without a `tip_racks` argument.\n\n```\nleft_pipette.pick_up_tip(tiprack_left[\"A1\"])\nleft_pipette.drop_tip()\n\n```\n\nBut now you have to specify `tiprack_left` every time you call `pick_up_tip`, which means you\u2019re doing all your own tip tracking:\n\n```\nleft_pipette.pick_up_tip(tiprack_left[\"A2\"])\nleft_pipette.drop_tip()\nleft_pipette.pick_up_tip(tiprack_left[\"A3\"])\nleft_pipette.drop_tip()\n\n```\n\nHowever, because you specified a tip rack location for the right pipette, the robot will automatically pick up from location `A1` of its associated tiprack:\n\n```\nright_pipette.pick_up_tip()\nright_pipette.drop_tip()\n\n```\n\nAdditional calls to `pick_up_tip` will automatically progress through the tips in the right rack:\n\n```\nright_pipette.pick_up_tip() # picks up from A2\nright_pipette.drop_tip()\nright_pipette.pick_up_tip() # picks up from A3\nright_pipette.drop_tip()\n\n```\n\nNew in version 2\\.0\\.\n\nSee also Building Block Commands and Complex Commands.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2416, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121": {"__data__": {"id_": "9bb7cacc-36ec-4e2d-aa2b-ae1f66268121", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8881a89f-17ba-4098-be8c-9a52ea9634ac", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e01e02515da807e74f74b2e9409693fe8b6af6cc84c91dbd40c644ba512d56d1", "class_name": "RelatedNodeInfo"}}, "text": "Adding Trash Containers\n\nThe API automatically assigns a `trash_container` to pipettes, if one is available in your protocol. The `trash_container` is where the pipette will dispose tips when you call `drop_tip()` with no arguments. You can change the trash container, if you don\u2019t want to use the default.\n\nOne example of when you might want to change the trash container is a Flex protocol that goes through a lot of tips. In a case where the protocol uses two pipettes, you could load two trash bins and assign one to each pipette:\n\n```\nleft_pipette = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\", mount=\"left\"\n)\nright_pipette = protocol.load_instrument(\n instrument_name=\"flex_8channel_50\", mount=\"right\"\n)\nleft_trash = load_trash_bin(\"A3\")\nright_trash = load_trash_bin(\"B3\")\nleft_pipette.trash_container = left_trash\nright_pipette.trash_container = right_trash\n\n```\n\nAnother example is a Flex protocol that uses a waste chute. Say you want to only dispose labware in the chute, and you want the pipette to drop tips in a trash bin. You can implicitly get the trash bin to be the pipette\u2019s `trash_container` based on load order, or you can ensure it by setting it after all the load commands:\n\n```\npipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\"\n)\nchute = protocol.load_waste_chute() # default because loaded first\ntrash = protocol.load_trash_bin(\"A3\")\npipette.trash_container = trash # overrides default\n\n```\n\nNew in version 2\\.0\\.\n\nChanged in version 2\\.16: Added support for `TrashBin` and `WasteChute` objects.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1594, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "250e7d39-44bb-46ee-b0e8-16ae0d439d8e": {"__data__": {"id_": "250e7d39-44bb-46ee-b0e8-16ae0d439d8e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ea255be4-579d-4684-bc02-342cc391567f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "07117289c1683e763aa3679837e5e451f58bc0f386b2c4fd4d2aab77c7eb77a2", "class_name": "RelatedNodeInfo"}}, "text": "Pipette Characteristics\n\nEach Opentrons pipette has different capabilities, which you\u2019ll want to take advantage of in your protocols. This page covers some fundamental pipette characteristics.\n\nMulti\\-Channel Movement gives examples of how multi\\-channel pipettes move around the deck by using just one of their channels as a reference point. Taking this into account is important for commanding your pipettes to perform actions in the correct locations.\n\nPipette Flow Rates discusses how quickly each type of pipette can handle liquids. The defaults are designed to operate quickly, based on the pipette\u2019s hardware and assuming that you\u2019re handling aqueous liquids. You can speed up or slow down a pipette\u2019s flow rate to suit your protocol\u2019s needs.\n\nFinally, the volume ranges of pipettes affect what you can do with them. The volume ranges for current pipettes are listed on the Loading Pipettes page. The OT\\-2 Pipette Generations section of this page describes how the API behaves when running protocols that specify older OT\\-2 pipettes.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1044, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "33975052-fe24-499e-a051-aa9a7d5a83e5": {"__data__": {"id_": "33975052-fe24-499e-a051-aa9a7d5a83e5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ae3b191b-a196-497f-92c4-234c181cdf11", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "74249c5ae4d42408b86d5bbe219ebf90feb737d2740fc9788044bfa1960bc6ae", "class_name": "RelatedNodeInfo"}}, "text": "Multi\\-Channel Movement\n\nAll building block and complex commands work with single\\- and multi\\-channel pipettes.\n\nTo keep the protocol API consistent when using single\\- and multi\\-channel pipettes, commands treat the back left channel of a multi\\-channel pipette as its _primary channel_. Location arguments of pipetting commands use the primary channel. The `InstrumentContext.configure_nozzle_layout()` method can change the pipette\u2019s primary channel, using its `start` parameter. See Partial Tip Pickup for more information.\n\nWith a pipette\u2019s default settings, you can generally access the wells indicated in the table below. Moving to any other well may cause the pipette to crash.\n\n| Channels | 96\\-well plate | 384\\-well plate |\n| -------- | ---------------- | ---------------- |\n| 1 | Any well, A1\u2013H12 | Any well, A1\u2013P24 |\n| 8 | A1\u2013A12 | A1\u2013B24 |\n| 96 | A1 only | A1\u2013B2 |\n\nAlso, you should apply any location offset, such as `Well.top()` or `Well.bottom()`, to the well accessed by the primary channel. Since all of the pipette\u2019s channels move together, each channel will have the same offset relative to the well that it is over.\n\nFinally, because each multi\\-channel pipette has only one motor, they always aspirate and dispense on all channels simultaneously.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1335, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3660adda-30c8-457f-b96d-c7d302555cb0": {"__data__": {"id_": "3660adda-30c8-457f-b96d-c7d302555cb0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "18b66f27-4739-4350-9276-847c3ecacd5f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "426f10d6f08b70d978ce114215c7c160ac1f5bf81892b0041f69b909a82058ae", "class_name": "RelatedNodeInfo"}}, "text": "8\\-Channel, 96\\-Well Plate Example\n\nTo demonstrate these concepts, let\u2019s write a protocol that uses a Flex 8\\-Channel Pipette and a 96\\-well plate. We\u2019ll then aspirate and dispense a liquid to different locations on the same well plate. To start, let\u2019s load a pipette in the right mount and add our labware.\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\":\"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # Load a tiprack for 1000 \u00b5L tips\n tiprack1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"D1\")\n # Load a 96-well plate\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"C1\")\n # Load an 8-channel pipette on the right mount\n right = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\",\n mount=\"right\",\n tip_racks=[tiprack1])\n\n```\n\nAfter loading our instruments and labware, let\u2019s tell the robot to pick up a pipette tip from location `A1` in `tiprack1`:\n\n```\nright.pick_up_tip()\n\n```\n\nWith the backmost pipette channel above location A1 on the tip rack, all eight channels are above the eight tip rack wells in column 1\\.\n\nAfter picking up a tip, let\u2019s tell the robot to aspirate 300 \u00b5L from the well plate at location `A2`:\n\n```\nright.aspirate(volume=300, location=plate[\"A2\"])\n\n```\n\nWith the backmost pipette tip above location A2 on the well plate, all eight channels are above the eight wells in column 2\\.\n\nFinally, let\u2019s tell the robot to dispense 300 \u00b5L into the well plate at location `A3`:\n\n```\nright.dispense(volume=300, location=plate[\"A3\"].top())\n\n```\n\nWith the backmost pipette tip above location A3, all eight channels are above the eight wells in column 3\\. The pipette will dispense liquid into all the wells simultaneously.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1835, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3a76b360-9b3b-44fc-b257-8c654892e217": {"__data__": {"id_": "3a76b360-9b3b-44fc-b257-8c654892e217", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a1927e7a-1095-4bce-9cd7-0fd7fe294de0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5fc51dea206b6558b6a97401ff6fddf2b552852b95b3dba11d0d5513b7e38768", "class_name": "RelatedNodeInfo"}}, "text": "8\\-Channel, 384\\-Well Plate Example\n\nIn general, you should specify wells in the first row of a well plate when using multi\\-channel pipettes. An exception to this rule is when using 384\\-well plates. The greater well density means the nozzles of a multi\\-channel pipette can only access every other well in a column. Specifying well A1 accesses every other well starting with the first (rows A, C, E, G, I, K, M, and O). Similarly, specifying well B1 also accesses every other well, but starts with the second (rows B, D, F, H, J, L, N, and P).\n\nTo demonstrate these concepts, let\u2019s write a protocol that uses a Flex 8\\-Channel Pipette and a 384\\-well plate. We\u2019ll then aspirate and dispense a liquid to different locations on the same well plate. To start, let\u2019s load a pipette in the right mount and add our labware.\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n # Load a tiprack for 200 \u00b5L tips\n tiprack1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\", location=\"D1\")\n # Load a well plate\n plate = protocol.load_labware(\n load_name=\"corning_384_wellplate_112ul_flat\", location=\"D2\")\n # Load an 8-channel pipette on the right mount\n right = protocol.load_instrument(\n instrument_name=\"flex_8channel_1000\",\n mount=\"right\",\n tip_racks=[tiprack1])\n\n```\n\nAfter loading our instruments and labware, let\u2019s tell the robot to pick up a pipette tip from location `A1` in `tiprack1`:\n\n```\nright.pick_up_tip()\n\n```\n\nWith the backmost pipette channel above location A1 on the tip rack, all eight channels are above the eight tip rack wells in column 1\\.\n\nAfter picking up a tip, let\u2019s tell the robot to aspirate 100 \u00b5L from the well plate at location `A1`:\n\n```\nright.aspirate(volume=100, location=plate[\"A1\"])\n\n```\n\nThe eight pipette channels will only aspirate from every other well in the column: A1, C1, E1, G1, I1, K1, M1, and O1\\.\n\nFinally, let\u2019s tell the robot to dispense 100 \u00b5L into the well plate at location `B1`:\n\n```\nright.dispense(volume=100, location=plate[\"B1\"])\n\n```\n\nThe eight pipette channels will only dispense into every other well in the column: B1, D1, F1, H1, J1, L1, N1, and P1\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2182, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e7e0852-9143-4d50-ad65-62c25c4d9a09": {"__data__": {"id_": "1e7e0852-9143-4d50-ad65-62c25c4d9a09", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "773b3e28-5c02-473f-8ce9-7e73f7a8b373", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "69a2305db9e0b29972bfb694d440dae103258f05c80c8deeb53bc58834e7593d", "class_name": "RelatedNodeInfo"}}, "text": "Pipette Flow Rates\n\nMeasured in \u00b5L/s, the flow rate determines how much liquid a pipette can aspirate, dispense, and blow out. Opentrons pipettes have their own default flow rates. The API lets you change the flow rate on a loaded `InstrumentContext` by altering the `InstrumentContext.flow_rate` properties listed below.\n\n- Aspirate: `InstrumentContext.flow_rate.aspirate`\n- Dispense: `InstrumentContext.flow_rate.dispense`\n- Blow out: `InstrumentContext.flow_rate.blow_out`\n\nThese flow rate properties operate independently. This means you can specify different flow rates for each property within the same protocol. For example, let\u2019s load a simple protocol and set different flow rates for the attached pipette.\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tiprack1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"D1\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack1])\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"D3\")\n pipette.pick_up_tip()\n\n```\n\nLet\u2019s tell the robot to aspirate, dispense, and blow out the liquid using default flow rates. Notice how you don\u2019t need to specify a `flow_rate` attribute to use the defaults:\n\n```\npipette.aspirate(200, plate[\"A1\"]) # 160 \u00b5L/s\npipette.dispense(200, plate[\"A2\"]) # 160 \u00b5L/s\npipette.blow_out() # 80 \u00b5L/s\n\n```\n\nNow let\u2019s change the flow rates for each action:\n\n```\npipette.flow_rate.aspirate = 50\npipette.flow_rate.dispense = 100\npipette.flow_rate.blow_out = 75\npipette.aspirate(200, plate[\"A1\"]) # 50 \u00b5L/s\npipette.dispense(200, plate[\"A2\"]) # 100 \u00b5L/s\npipette.blow_out() # 75 \u00b5L/s\n\n```\n\nThese flow rates will remain in effect until you change the `flow_rate` attribute again _or_ call `configure_for_volume()`. Calling `configure_for_volume()` always resets all pipette flow rates to the defaults for the mode that it sets.\n\nNote\n\nIn API version 2\\.13 and earlier, `InstrumentContext.speed` offered similar functionality to `.flow_rate`. It attempted to set the plunger speed in mm/s. Due to technical limitations, that speed could only be approximate. You must use `.flow_rate` in version 2\\.14 and later, and you should consider replacing older code that sets `.speed`.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2385, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6af18d53-c5b3-4f1b-b368-c570bddf9677": {"__data__": {"id_": "6af18d53-c5b3-4f1b-b368-c570bddf9677", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "940cc22b-6433-4369-890e-3450e2d8c7f2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "33d039305df78235f8a232838dc57349c196b1993cd9b758330d7560e9ffa27b", "class_name": "RelatedNodeInfo"}}, "text": "Flex Pipette Flow Rates\n\nThe default flow rates for Flex pipettes depend on the maximum volume of the pipette and the capacity of the currently attached tip. For each pipette\u2013tip configuration, the default flow rate is the same for aspirate, dispense, and blowout actions.\n\n| Pipette Model | Tip Capacity (\u00b5L) | Flow Rate (\u00b5L/s) |\n| ----------------------------------- | ----------------- | ---------------- |\n| 50 \u00b5L (1\\- and 8\\-channel) | All capacities | 57 |\n| 1000 \u00b5L (1\\-, 8\\-, and 96\\-channel) | 50 | 478 |\n| 1000 \u00b5L (1\\-, 8\\-, and 96\\-channel) | 200 | 716 |\n| 1000 \u00b5L (1\\-, 8\\-, and 96\\-channel) | 1000 | 716 |\n\nAdditionally, all Flex pipettes have a well bottom clearance of 1 mm for aspirate and dispense actions.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 854, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a666477-1bfa-452f-bad1-682e5993dab0": {"__data__": {"id_": "6a666477-1bfa-452f-bad1-682e5993dab0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "81ce1f78-d944-4136-b7d1-453b9768922c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a3e636ad8fffe6ea3de58f1a529f618b20f6d941bbe489c3660ca9aa87b232f3", "class_name": "RelatedNodeInfo"}}, "text": "OT\\-2 Pipette Flow Rates\n\nThe following table provides data on the default aspirate, dispense, and blowout flow rates (in \u00b5L/s) for OT\\-2 GEN2 pipettes. Default flow rates are the same across all three actions.\n\n| Pipette Model | Volume (\u00b5L) | Flow Rates (\u00b5L/s) |\n| -------------------------- | ----------- | ----------------------------------------------------------- |\n| P20 Single\\-Channel GEN2 | 1\u201320 | _ API v2\\.6 or higher: 7\\.56 _ API v2\\.5 or lower: 3\\.78 |\n| P300 Single\\-Channel GEN2 | 20\u2013300 | _ API v2\\.6 or higher: 92\\.86 _ API v2\\.5 or lower: 46\\.43 |\n| P1000 Single\\-Channel GEN2 | 100\u20131000 | _ API v2\\.6 or higher: 274\\.7 _ API v2\\.5 or lower: 137\\.35 |\n| P20 Multi\\-Channel GEN2 | 1\u201320 | 7\\.6 |\n| P300 Multi\\-Channel GEN2 | 20\u2013300 | 94 |\n\nAdditionally, all OT\\-2 GEN2 pipettes have a default head speed of 400 mm/s and a well bottom clearance of 1 mm for aspirate and dispense actions.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1110, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a07fd493-ee5f-4964-88e0-bb56a446eb61": {"__data__": {"id_": "a07fd493-ee5f-4964-88e0-bb56a446eb61", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ada64a07-acc0-4647-9c86-f31e156b6ea1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a0a8f6a95bae571266d3795804652aa189dedbf3cdb3b25365601bcfac2ace03", "class_name": "RelatedNodeInfo"}}, "text": "OT\\-2 Pipette Generations\n\nThe OT\\-2 works with the GEN1 and GEN2 pipette models. The newer GEN2 pipettes have different volume ranges than the older GEN1 pipettes. With some exceptions, the volume ranges for GEN2 pipettes overlap those used by the GEN1 models. If your protocol specifies a GEN1 pipette, but you have a GEN2 pipette with a compatible volume range, you can still run your protocol. The OT\\-2 will consider the GEN2 pipette to have the same minimum volume as the GEN1 pipette. The following table lists the volume compatibility between the GEN2 and GEN1 pipettes.\n\n| GEN2 Pipette | GEN1 Pipette | GEN1 Volume |\n| -------------------------- | -------------------------- | ------------ |\n| P20 Single\\-Channel GEN2 | P10 Single\\-Channel GEN1 | 1\\-10 \u00b5L |\n| P20 Multi\\-Channel GEN2 | P10 Multi\\-Channel GEN1 | 1\\-10 \u00b5L |\n| P300 Single\\-Channel GEN2 | P300 Single\\-Channel GEN1 | 30\\-300 \u00b5L |\n| P300 Multi\\-Channel GEN2 | P300 Multi\\-Channel GEN1 | 20\\-200 \u00b5L |\n| P1000 Single\\-Channel GEN2 | P1000 Single\\-Channel GEN1 | 100\\-1000 \u00b5L |\n\nThe single\\- and multi\\-channel P50 GEN1 pipettes are the exceptions here. If your protocol uses a P50 GEN1 pipette, there is no backward compatibility with a related GEN2 pipette. To replace a P50 GEN1 with a corresponding GEN2 pipette, edit your protocol to load a P20 Single\\-Channel GEN2 (for volumes below 20 \u00b5L) or a P300 Single\\-Channel GEN2 (for volumes between 20 and 50 \u00b5L).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1492, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8ed46f10-7f86-45c1-bef1-178a05b08468": {"__data__": {"id_": "8ed46f10-7f86-45c1-bef1-178a05b08468", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e74fd6704e43dc5ee7083931645c769c8b92ddfd1e12051cd7c74ce1aaebed52", "class_name": "RelatedNodeInfo"}}, "text": "Partial Tip Pickup\n\nThe 96\\-channel pipette occupies both pipette mounts on Flex, so it\u2019s not possible to attach another pipette at the same time. Partial tip pickup lets you perform some of the same actions that you would be able to perform with a second pipette. As of version 2\\.16 of the API, you can configure the 96\\-channel pipette to pick up a single column of tips, similar to the behavior of an 8\\-channel pipette.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 426, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "64a43dd8-c4af-47f0-9faa-86d752cceb8f": {"__data__": {"id_": "64a43dd8-c4af-47f0-9faa-86d752cceb8f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "89703fb4-6bdf-414c-8013-73a164077950", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "befa4c45768ecc7be9cffedf6de31642040267c5f99a8a5f8a8ec5371e825429", "class_name": "RelatedNodeInfo"}}, "text": "Nozzle Layout\n\nUse the `configure_nozzle_layout()` method to choose how many tips the 96\\-channel pipette will pick up. The method\u2019s `style` parameter accepts special layout constants. You must import these constants at the top of your protocol, or you won\u2019t be able to configure the pipette for partial tip pickup.\n\nAt minimum, import the API from the `opentrons` package:\n\n```\nfrom opentrons import protocol_api\n\n```\n\nThen when you call `configure_nozzle_layout` later in your protocol, you can set `style=protocol_api.COLUMN`.\n\nFor greater convenience, also import the individual layout constants that you plan to use in your protocol:\n\n```\nfrom opentrons.protocol_api import COLUMN, ALL\n\n```\n\nThen when you call `configure_nozzle_layout` later in your protocol, you can set `style=COLUMN`.\n\nHere is the start of a protocol that performs both imports, loads a 96\\-channel pipette, and sets it to pick up a single column of tips.\n\n```\nfrom opentrons import protocol_api\nfrom opentrons.protocol_api import COLUMN, ALL\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n column_rack = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\",\n location=\"D3\"\n )\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\"flex_96channel_1000\")\n pipette.configure_nozzle_layout(\n style=COLUMN,\n start=\"A12\",\n tip_racks=[column_rack]\n )\n\n```\n\nNew in version 2\\.16\\.\n\nLet\u2019s unpack some of the details of this code.\n\nFirst, we\u2019ve given a special name to the tip rack, `column_rack`. You can name your tip racks whatever you like, but if you\u2019re performing full pickup and partial pickup in the same protocol, you\u2019ll need to keep them separate. See Tip Rack Adapters below.\n\nNext, we load the 96\\-channel pipette. Note that `load_instrument()` only has a single argument. The 96\\-channel pipette occupies both mounts, so `mount` is omissible. The `tip_racks` argument is always optional. But it would have no effect to declare it here, because every call to `configure_nozzle_layout()` resets the pipette\u2019s `InstrumentContext.tip_racks` property.\n\nFinally, we configure the nozzle layout, with three arguments.\n\n> - The `style` parameter directly accepts the `COLUMN` constant, since we imported it at the top of the protocol.\n> - The `start` parameter accepts a nozzle name, representing the back\\-left nozzle in the layout, as a string. `\"A12\"` tells the pipette to use its rightmost column of nozzles for pipetting.\n> - The `tip_racks` parameter tells the pipette which racks to use for tip tracking, just like adding tip racks when loading a pipette.\n\nIn this configuration, pipetting actions will use a single column:\n\n```\n# configured in COLUMN mode\npipette.pick_up_tip() # picks up A1-H1 from tip rack\npipette.drop_tip()\npipette.pick_up_tip() # picks up A2-H2 from tip rack\n\n```\n\nWarning\n\n`InstrumentContext.pick_up_tip()` always accepts a `location` argument, regardless of nozzle configuration. Do not pass a value that would lead the pipette to line up over more unused tips than specified by the current layout. For example, setting `COLUMN` layout and then calling `pipette.pick_up_tip(tip_rack[\"A2\"])` on a full tip rack will lead to unexpected pipetting behavior and potential crashes.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3334, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1": {"__data__": {"id_": "4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d23286d2bd414eaf84d6eafb6fe1ad31fa264e92f9484b4fda760cfdd2afc99d", "class_name": "RelatedNodeInfo"}}, "text": "Tip Rack Adapters\n\nYou can use both partial and full tip pickup in the same protocol. This requires having some tip racks directly on the deck, and some tip racks in the tip rack adapter.\n\nDo not use a tip rack adapter when performing partial tip pickup. Instead, place the tip rack on the deck. During partial tip pickup, the 96\\-channel pipette lowers onto the tip rack in a horizontally offset position. If the tip rack were in its adapter, the pipette would collide with the adapter\u2019s posts, which protrude above the top of the tip rack. If you configure the pipette for partial pickup and then call `pick_up_tip()` on a tip rack that\u2019s loaded onto an adapter, the API will raise an error.\n\nOn the other hand, you must use the tip rack adapter for full tip pickup. If the 96\\-channel pipette is in a full layout, either by default or by configuring `style=ALL`, and you then call `pick_up_tip()` on a tip rack that\u2019s not in an adapter, the API will raise an error.\n\nWhen switching between full and partial pickup, you may want to organize your tip racks into lists, depending on whether they\u2019re loaded on adapters or not.\n\n```\ntips_1 = protocol.load_labware(\n \"opentrons_flex_96_tiprack_1000ul\", \"C1\"\n)\ntips_2 = protocol.load_labware(\n \"opentrons_flex_96_tiprack_1000ul\", \"D1\"\n)\ntips_3 = protocol.load_labware(\n \"opentrons_flex_96_tiprack_1000ul\", \"C3\",\n adapter=\"opentrons_flex_96_tiprack_adapter\"\n)\ntips_4 = protocol.load_labware(\n \"opentrons_flex_96_tiprack_1000ul\", \"D3\",\n adapter=\"opentrons_flex_96_tiprack_adapter\"\n)\n\npartial_tip_racks = [tips_1, tips_2]\nfull_tip_racks = [tips_3, tips_4]\n\n```\n\nTip\n\nIt\u2019s also good practice to keep separate lists of tip racks when using multiple partial tip pickup configurations (i.e., using both column 1 and column 12 in the same protocol). This improves positional accuracy when picking up tips. Additionally, use Labware Position Check in the Opentrons App to ensure that the partial configuration is well\\-aligned to the rack.\n\nNow, when you configure the nozzle layout, you can reference the appropriate list as the value of `tip_racks`:\n\n```\npipette.configure_nozzle_layout(\n style=COLUMN,\n start=\"A12\",\n tip_racks=partial_tip_racks\n)\n# partial pipetting commands go here\n\npipette.configure_nozzle_layout(\n style=ALL,\n tip_racks=full_tip_racks\n)\npipette.pick_up_tip() # picks up full rack in C1\n\n```\n\nThis keeps tip tracking consistent across each type of pickup. And it reduces the risk of errors due to the incorrect presence or absence of a tip rack adapter.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2549, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7e203c21-d2d0-443a-8ed1-f316aac108c5": {"__data__": {"id_": "7e203c21-d2d0-443a-8ed1-f316aac108c5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c403f04e-4ba6-4d1b-9214-fa6e66e333ec", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1c31aaf0aee1f768adf226039f02780bee27f8fb786b396d47e4488c12dc2157", "class_name": "RelatedNodeInfo"}}, "text": "Tip Pickup and Conflicts\n\nDuring partial tip pickup, 96\\-channel pipette moves into spaces above adjacent slots. To avoid crashes, the API prevents you from performing partial tip pickup when there is tall labware in these spaces. The current nozzle layout determines which labware can safely occupy adjacent slots.\n\nThe API will raise errors for potential labware crashes when using a column nozzle configuration. Nevertheless, it\u2019s a good idea to do the following when working with partial tip pickup:\n\n> - Plan your deck layout carefully. Make a diagram and visualize everywhere the pipette will travel.\n> - Simulate your protocol and compare the run preview to your expectations of where the pipette will travel.\n> - Perform a dry run with only tip racks on the deck. Have the Emergency Stop Pendant handy in case you see an impending crash.\n\nFor column pickup, Opentrons recommends using the nozzles in column 12 of the pipette:\n\n```\npipette.configure_nozzle_layout(\n style=COLUMN,\n start=\"A12\",\n)\n\n```\n\nWhen using column 12, the pipette overhangs space to the left of wherever it is picking up tips or pipetting. For this reason, it\u2019s a good idea to organize tip racks front to back on the deck. If you place them side by side, the rack to the right will be inaccessible. For example, let\u2019s load three tip racks in the front left corner of the deck:\n\n```\ntips_C1 = protocol.load_labware(\"opentrons_flex_96_tiprack_1000ul\", \"C1\")\ntips_D1 = protocol.load_labware(\"opentrons_flex_96_tiprack_1000ul\", \"D1\")\ntips_D2 = protocol.load_labware(\"opentrons_flex_96_tiprack_1000ul\", \"D2\")\n\n```\n\nNow the pipette will be able to access the racks in column 1 only. `pick_up_tip(tips_D2[\"A1\"])` will raise an error due to the tip rack immediately to its left, in slot D1\\. There a couple of ways to avoid this error:\n\n> - Load the tip rack in a different slot, with no tall labware to its left.\n> - Use all the tips in slot D1 first, and then use `move_labware()` to make space for the pipette before picking up tips from D2\\.\n\nYou would get a similar error trying to aspirate from or dispense into a well plate in slot D3, since there is a tip rack to the left.\n\nTip\n\nWhen using column 12 for partial tip pickup and pipetting, generally organize your deck with the shortest labware on the left side of the deck, and the tallest labware on the right side.\n\nIf your application can\u2019t accommodate a deck layout that works well with column 12, you can configure the 96\\-channel pipette to pick up tips with column 1:\n\n```\npipette.configure_nozzle_layout(\n style=COLUMN,\n start=\"A1\",\n)\n\n```\n\nNote\n\nWhen using a column 1 layout, the pipette can\u2019t reach the rightmost portion of labware in slots A3\u2013D3\\. Any well that is within 29 mm of the right edge of the slot may be inaccessible. Use a column 12 layout if you need to pipette in that area.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2842, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a77e394f-eda1-4b8c-9199-7d2247c9d872": {"__data__": {"id_": "a77e394f-eda1-4b8c-9199-7d2247c9d872", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c7143f2c29e363907ddba36c8c3e94010450d615e2a092a17a0fdf457ab4f661", "class_name": "RelatedNodeInfo"}}, "text": "Volume Modes\n\nThe Flex 1\\-Channel 50 \u00b5L and Flex 8\\-Channel 50 \u00b5L pipettes must operate in a low\\-volume mode to accurately dispense very small volumes of liquid. Set the volume mode by calling `InstrumentContext.configure_for_volume()` with the amount of liquid you plan to aspirate, in \u00b5L:\n\n```\npipette50.configure_for_volume(1)\npipette50.pick_up_tip()\npipette50.aspirate(1, plate[\"A1\"])\n\n```\n\nNew in version 2\\.15\\.\n\nPassing different values to `configure_for_volume()` changes the minimum and maximum volume of Flex 50 \u00b5L pipettes as follows:\n\n| Value | Minimum Volume (\u00b5L) | Maximum Volume (\u00b5L) |\n| ------ | ------------------- | ------------------- |\n| 1\u20134\\.9 | 1 | 30 |\n| 5\u201350 | 5 | 50 |\n\nNote\n\nThe pipette must not contain liquid when you call `configure_for_volume()`, or the API will raise an error.\n\nAlso, if the pipette is in a well location that may contain liquid, it will move upward to ensure it is not immersed in liquid before changing its mode. Calling `configure_for_volume()` _before_ `pick_up_tip()` helps to avoid this situation.\n\nIn a protocol that handles many different volumes, it\u2019s a good practice to call `configure_for_volume()` once for each `transfer()` or `aspirate()`, specifying the volume that you are about to handle. When operating with a list of volumes, nest `configure_for_volume()` inside a `for` loop to ensure that the pipette is properly configured for each volume:\n\n```\nvolumes = [1, 2, 3, 4, 1, 5, 2, 8]\nsources = plate.columns()[0]\ndestinations = plate.columns()[1]\nfor i in range(8):\n pipette50.configure_for_volume(volumes[i])\n pipette50.pick_up_tip()\n pipette50.aspirate(volume=volumes[i], location=sources[i])\n pipette50.dispense(location=destinations[i])\n pipette50.drop_tip()\n\n```\n\nIf you know that all your liquid handling will take place in a specific mode, then you can call `configure_for_volume()` just once with a representative volume. Or if all the volumes correspond to the pipette\u2019s default mode, you don\u2019t have to call `configure_for_volume()` at all.\n\nOpentrons pipettes are configurable devices used to move liquids throughout the working area during the execution of protocols. Flex and OT\\-2 each have their own pipettes, which are available for use in the Python API.\n\nPages in this section of the documentation cover:\n\n> - Loading pipettes into your protocol.\n> - Pipette characteristics, such as how fast they can move liquid and how they move around the deck.\n> - The partial tip pickup configuration for the Flex 96\\-Channel Pipette, which uses only 8 channels for pipetting. Full and partial tip pickup can be combined in a single protocol.\n> - The volume modes of Flex 50 \u00b5L pipettes, which must operate in low\\-volume mode to accurately dispense very small volumes of liquid.\n\nFor information about liquid handling, see Building Block Commands and Complex Commands.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2932, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0eed630c-d594-4360-8a84-1ea74e62f0f5": {"__data__": {"id_": "0eed630c-d594-4360-8a84-1ea74e62f0f5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ed780a4d-0a72-475c-bca6-5d65e9a568aa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0c8463d4ade31ec112086fcd077b6fda7272a31baf3263b71eb49673b724903a", "class_name": "RelatedNodeInfo"}}, "text": "Building Block Commands", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 25, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "829f1387-308e-421c-95ba-caff21e34bd6": {"__data__": {"id_": "829f1387-308e-421c-95ba-caff21e34bd6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c513d4b4a4f4b86f83e5f398e14813d4573e27c0642f6643a1971ffccdbd985b", "class_name": "RelatedNodeInfo"}}, "text": "Manipulating Pipette Tips\n\nYour robot needs to attach a disposable tip to the pipette before it can aspirate or dispense liquids. The API provides three basic functions that help the robot attach and manage pipette tips during a protocol run. These methods are `InstrumentContext.pick_up_tip()`, `InstrumentContext.drop_tip()`, and `InstrumentContext.return_tip()`. Respectively, these methods tell the robot to pick up a tip from a tip rack, drop a tip into the trash (or another location), and return a tip to its location in the tip rack.\n\nThe following sections demonstrate how to use each method and include sample code. The examples used here assume that you\u2019ve loaded the pipettes and labware from the basic protocol template.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 735, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0c72e829-7c9a-47a6-af31-9fe3543bd78c": {"__data__": {"id_": "0c72e829-7c9a-47a6-af31-9fe3543bd78c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a1447816-0a63-4617-baec-c158bc7a73e0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4e304754dee0adccce803ad21fc959cfedccfae6fa22609a1297a26411715d3b", "class_name": "RelatedNodeInfo"}}, "text": "Picking Up a Tip\n\nTo pick up a tip, call the `pick_up_tip()` method without any arguments:\n\n```\npipette.pick_up_tip()\n\n```\n\nWhen added to the protocol template, this simple statement works because the API knows which tip rack is associated with `pipette`, as indicated by `tip_racks=tiprack_1]` in the [`load_instrument()` call. And it knows the on\\-deck location of the tip rack (slot D3 on Flex, slot 3 on OT\\-2\\) from the `location` argument of `load_labware()`. Given this information, the robot moves to the tip rack and picks up a tip from position A1 in the rack. On subsequent calls to `pick_up_tip()`, the robot will use the next available tip. For example:\n\n```\npipette.pick_up_tip() # picks up tip from rack location A1\npipette.drop_tip() # drops tip in trash bin\npipette.pick_up_tip() # picks up tip from rack location B1\npipette.drop_tip() # drops tip in trash bin\n\n```\n\nIf you omit the `tip_rack` argument from the `pipette` variable, the API will raise an error. In that case, you must pass the tip rack\u2019s location to `pick_up_tip` like this:\n\n```\npipette.pick_up_tip(tiprack_1[\"A1\"])\npipette.drop_tip()\npipette.pick_up_tip(tiprack_1[\"B1\"])\n\n```\n\nIn most cases, it\u2019s best to associate tip racks with a pipette and let the API automatically track pickup location for you. This also makes it easy to pick up tips when iterating over a loop, as shown in the next section.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1418, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3473e066-8864-4ea6-b7bf-17c42665b599": {"__data__": {"id_": "3473e066-8864-4ea6-b7bf-17c42665b599", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3c57573a-4c54-4c29-998f-ccf231b85e67", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bab509493a86437db32e61923509441570c29010fa2f6ddcc85c872cc3cd8ee3", "class_name": "RelatedNodeInfo"}}, "text": "Automating Tip Pick Up\n\nWhen used with Python\u2019s `range`') class, a `for` loop brings automation to the tip pickup and tracking process. It also eliminates the need to call `pick_up_tip()` multiple times. For example, this snippet tells the robot to sequentially use all the tips in a 96\\-tip rack:\n\n```\nfor i in range(96):\n pipette.pick_up_tip()\n # liquid handling commands\n pipette.drop_tip()\n\n```\n\nIf your protocol requires a lot of tips, add a second tip rack to the protocol. Then, associate it with your pipette and increase the number of repetitions in the loop. The robot will work through both racks.\n\nFirst, add another tip rack to the sample protocol:\n\n```\ntiprack_2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\",\n location=\"C3\"\n)\n\n```\n\nNext, change the pipette\u2019s `tip_rack` property to include the additional rack:\n\n```\npipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1, tiprack_2],\n)\n\n```\n\nFinally, iterate over a larger range:\n\n```\nfor i in range(192):\n pipette.pick_up_tip()\n # liquid handling commands\n pipette.drop_tip()\n\n```\n\nFor a more advanced \u201creal\\-world\u201d example, review the off\\-deck location protocol on the Moving Labware page. This example also uses a `for` loop to iterate through a tip rack, but it includes other commands that pause the protocol and let you replace an on\\-deck tip rack with another rack stored in an off\\-deck location.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1488, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4f305c42-d33f-4b8e-bf77-2ea69ace07c8": {"__data__": {"id_": "4f305c42-d33f-4b8e-bf77-2ea69ace07c8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9e52a64662722c901f70f0a1ce3acab559c3f806b3fc12bfd6aca0e54571cd41", "class_name": "RelatedNodeInfo"}}, "text": "Dropping a Tip\n\nTo drop a tip in the pipette\u2019s trash container, call the `drop_tip()` method with no arguments:\n\n```\npipette.pick_up_tip()\n\n```\n\nYou can specify where to drop the tip by passing in a location. For example, this code drops a tip in the trash bin and returns another tip to to a previously used well in a tip rack:\n\n```\npipette.pick_up_tip() # picks up tip from rack location A1\npipette.drop_tip() # drops tip in default trash container\npipette.pick_up_tip() # picks up tip from rack location B1\npipette.drop_tip(tiprack[\"A1\"]) # drops tip in rack location A1\n\n```\n\nNew in version 2\\.0\\.\n\nAnother use of the `location` parameter is to drop a tip in a specific trash container. For example, calling `pipette.drop_tip(chute)` will dispose tips in the waste chute, even if the pipette\u2019s default trash container is a trash bin:\n\n```\npipette.pick_up_tip() # picks up tip from rack location A1\npipette.drop_tip() # drops tip in default trash container\npipette.pick_up_tip() # picks up tip from rack location B1\npipette.drop_tip(chute) # drops tip in waste chute\n\n```\n\nNew in version 2\\.16\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1150, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7c42db89-d590-4f93-9be4-b85a62312c04": {"__data__": {"id_": "7c42db89-d590-4f93-9be4-b85a62312c04", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b18ae7df-672a-4908-b9b8-f40dc4fce3e1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0047cf4952cd107a34d1263953ea52f57adfa77dd1625f7af2362c8acd69a7fa", "class_name": "RelatedNodeInfo"}}, "text": "Returning a Tip\n\nTo return a tip to its original location, call the `return_tip()` method with no arguments:\n\n```\npipette.return_tip()\n\n```\n\nNew in version 2\\.0\\.\n\nNote\n\nYou can\u2019t return tips with a pipette that\u2019s configured to use partial tip pickup. This restriction ensures that the pipette has clear access to unused tips. For example, a 96\\-channel pipette in column configuration can\u2019t reach column 2 unless column 1 is empty.\n\nIf you call `return_tip()` while using partial tip pickup, the API will raise an error. Use `drop_tip()` to dispose the tips instead.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 569, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "270348f2-a166-4b96-b28a-2d3bb355e69d": {"__data__": {"id_": "270348f2-a166-4b96-b28a-2d3bb355e69d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "72b26e51-20f6-4f10-9d3f-ab26c95a7d34", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f4cfb3180de47d5b28d89009942c6382a3c555e6729a9acfc50c49e2539c5335", "class_name": "RelatedNodeInfo"}}, "text": "Working With Used Tips\n\nCurrently, the API considers tips as \u201cused\u201d after being picked up. For example, if the robot picked up a tip from rack location A1 and then returned it to the same location, it will not attempt to pick up this tip again, unless explicitly specified. Instead, the robot will pick up a tip starting from rack location B1\\. For example:\n\n```\npipette.pick_up_tip() # picks up tip from rack location A1\npipette.return_tip() # drops tip in rack location A1\npipette.pick_up_tip() # picks up tip from rack location B1\npipette.drop_tip() # drops tip in trash bin\npipette.pick_up_tip(tiprack_1[\"A1\"]) # picks up tip from rack location A1\n\n```\n\nEarly API versions treated returned tips as unused items. They could be picked up again without an explicit argument. For example:\n\n```\npipette.pick_up_tip() # picks up tip from rack location A1\npipette.return_tip() # drops tip in rack location A1\npipette.pick_up_tip() # picks up tip from rack location A1\n\n```\n\nChanged in version 2\\.2\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1066, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5179c470-17ef-44b7-bf30-d724ca8e6a1f": {"__data__": {"id_": "5179c470-17ef-44b7-bf30-d724ca8e6a1f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "11d304bd-8210-4438-946c-abb419be8050", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9360fd99be43376200a12f219b379d7e9f738dcdf98036d0fa9e587344cbfe53", "class_name": "RelatedNodeInfo"}}, "text": "Liquid Control\n\nAfter attaching a tip, your robot is ready to aspirate, dispense, and perform other liquid handling tasks. The API includes methods that help you perform these actions and the following sections show how to use them. The examples used here assume that you\u2019ve loaded the pipettes and labware from the basic protocol template.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 342, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "52ee1b52-84d7-4379-b769-db8143089438": {"__data__": {"id_": "52ee1b52-84d7-4379-b769-db8143089438", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f0e095c9-538f-4504-b5c5-f2b9998d9e63", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a9cbf37f022a514ad1d0defa86926871fe2588e23e79b307d51f480bad1754a3", "class_name": "RelatedNodeInfo"}}, "text": "Aspirate\n\nTo draw liquid up into a pipette tip, call the `InstrumentContext.aspirate()` method. Using this method, you can specify the aspiration volume in \u00b5L, the well location, and pipette flow rate. Other parameters let you position the pipette within a well. For example, this snippet tells the robot to aspirate 200 \u00b5L from well location A1\\.\n\n```\npipette.pick_up_tip()\npipette.aspirate(200, plate[\"A1\"])\n\n```\n\nIf the pipette doesn\u2019t move, you can specify an additional aspiration action without including a location. To demonstrate, this code snippet pauses the protocol, automatically resumes it, and aspirates a second time from `plate[\"A1\"]`).\n\n```\npipette.pick_up_tip()\npipette.aspirate(200, plate[\"A1\"])\nprotocol.delay(seconds=5) # pause for 5 seconds\npipette.aspirate(100) # aspirate 100 \u00b5L at current position\n\n```\n\nNow our pipette holds 300 \u00b5L.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 864, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a1e179c3-b165-44f2-8a8d-4ee950a281ae": {"__data__": {"id_": "a1e179c3-b165-44f2-8a8d-4ee950a281ae", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ca19f2aea1c1aa4ea86aa679e313e617fdd9fb551bf9a7d77a223dd58735e9fe", "class_name": "RelatedNodeInfo"}}, "text": "Aspirate by Well or Location\n\nThe `aspirate()` method includes a `location` parameter that accepts either a `Well` or a `Location`.\n\nIf you specify a well, like `plate\"A1\"]`, the pipette will aspirate from a default position 1 mm above the bottom center of that well. To change the default clearance, first set the `aspirate` attribute of [`well_bottom_clearance`:\n\n```\npipette.pick_up_tip\npipette.well_bottom_clearance.aspirate = 2 # tip is 2 mm above well bottom\npipette.aspirate(200, plate[\"A1\"])\n\n```\n\nYou can also aspirate from a location along the center vertical axis within a well using the `Well.top()` and `Well.bottom()` methods. These methods move the pipette to a specified distance relative to the top or bottom center of a well:\n\n```\npipette.pick_up_tip()\ndepth = plate[\"A1\"].bottom(z=2) # tip is 2 mm above well bottom\npipette.aspirate(200, depth)\n\n```\n\nSee also:\n\n- Default Positions for information about controlling pipette height for a particular pipette.\n- Position Relative to Labware for information about controlling pipette height from within a well.\n- Move To for information about moving a pipette to any reachable deck location.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1159, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cad669ae-bc96-48f6-86be-a7411388ef8e": {"__data__": {"id_": "cad669ae-bc96-48f6-86be-a7411388ef8e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "052284ab-4468-410b-a097-37780fb983a3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "345d9f26b354568268a2ef632da71ce4170e7b8ea534b2f6353dfffd5561c563", "class_name": "RelatedNodeInfo"}}, "text": "Aspiration Flow Rates\n\nFlex and OT\\-2 pipettes aspirate at default flow rates measured in \u00b5L/s. Specifying the `rate` parameter multiplies the flow rate by that value. As a best practice, don\u2019t set the flow rate higher than 3x the default. For example, this code causes the pipette to aspirate at twice its normal rate:\n\n```\npipette.aspirate(200, plate[\"A1\"], rate=2.0)\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 399, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b3493286-134f-4c81-a543-24c1f94dee97": {"__data__": {"id_": "b3493286-134f-4c81-a543-24c1f94dee97", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d8396d01-1bbd-4fec-951b-b547a4c01d4d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e82b8718e9f5e5c7721f5731e1c32be94b16fc28adb1a5023f34ad5f948aa88d", "class_name": "RelatedNodeInfo"}}, "text": "Dispense\n\nTo dispense liquid from a pipette tip, call the `InstrumentContext.dispense()` method. Using this method, you can specify the dispense volume in \u00b5L, the well location, and pipette flow rate. Other parameters let you position the pipette within a well. For example, this snippet tells the robot to dispense 200 \u00b5L into well location B1\\.\n\n```\npipette.dispense(200, plate[\"B1\"])\n\n```\n\nNote\n\nIn API version 2\\.16 and earlier, you could pass a `volume` argument to `dispense()` greater than what was aspirated into the pipette. In this case, the API would ignore `volume` and dispense the pipette\u2019s `current_volume`. The robot _would not_ move the plunger lower as a result.\n\nIn version 2\\.17 and later, passing such values raises an error.\n\nTo move the plunger a small extra amount, add a push out. Or to move it a large amount, use blow out.\n\nIf the pipette doesn\u2019t move, you can specify an additional dispense action without including a location. To demonstrate, this code snippet pauses the protocol, automatically resumes it, and dispense a second time from location B1\\.\n\n```\npipette.dispense(100, plate[\"B1\"])\nprotocol.delay(seconds=5) # pause for 5 seconds\npipette.dispense(100) # dispense 100 \u00b5L at current position\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1241, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef": {"__data__": {"id_": "5976df2c-2edb-4c93-8d0e-ffbb0c0435ef", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f9a70f5b-3de7-4eda-8061-709ec79a9a8e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd1e7b15202fac804c8eab7c737ba968871224c2a1e68dcd34fd847e5b9622e6", "class_name": "RelatedNodeInfo"}}, "text": "Dispense by Well or Location\n\nThe `dispense()` method includes a `location` parameter that accepts either a `Well` or a `Location`.\n\nIf you specify a well, like `plate\"B1\"]`, the pipette will dispense from a default position 1 mm above the bottom center of that well. To change the default clearance, you would call [`well_bottom_clearance`:\n\n```\npipette.well_bottom_clearance.dispense=2 # tip is 2 mm above well bottom\npipette.dispense(200, plate[\"B1\"])\n\n```\n\nYou can also dispense from a location along the center vertical axis within a well using the `Well.top()` and `Well.bottom()` methods. These methods move the pipette to a specified distance relative to the top or bottom center of a well:\n\n```\ndepth = plate[\"B1\"].bottom(z=2) # tip is 2 mm above well bottom\npipette.dispense(200, depth)\n\n```\n\nSee also:\n\n- Default Positions for information about controlling pipette height for a particular pipette.\n- Position Relative to Labware for formation about controlling pipette height from within a well.\n- Move To for information about moving a pipette to any reachable deck location.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1089, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0969b5a3-21bb-47da-ae53-9e00bdb2279c": {"__data__": {"id_": "0969b5a3-21bb-47da-ae53-9e00bdb2279c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d26d608d-bbca-4822-b7e7-58ad8d907718", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "515e86ae5b0176c1f15d3101b078e147c6efefdaee0121c9e5ffea4367207cc1", "class_name": "RelatedNodeInfo"}}, "text": "Dispense Flow Rates\n\nFlex and OT\\-2 pipettes dispense at default flow rates measured in \u00b5L/s. Adding a number to the `rate` parameter multiplies the flow rate by that value. As a best practice, don\u2019t set the flow rate higher than 3x the default. For example, this code causes the pipette to dispense at twice its normal rate:\n\n```\npipette.dispense(200, plate[\"B1\"], rate=2.0)\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 405, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "433c4723-5242-4c38-8142-e9763b695dd5": {"__data__": {"id_": "433c4723-5242-4c38-8142-e9763b695dd5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3093d9eb-9b8e-4d32-92ad-674e99b34a35", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5294015ea2566c801130c1a8300add5265bfa9e2fa99837e9fc049cb147a7b56", "class_name": "RelatedNodeInfo"}}, "text": "Push Out After Dispense\n\nThe optional `push_out` parameter of `dispense()` helps ensure all liquid leaves the tip. Use `push_out` for applications that require moving the pipette plunger lower than the default, without performing a full blow out.\n\nFor example, this dispense action moves the plunger the equivalent of an additional 5 \u00b5L beyond where it would stop if `push_out` was set to zero or omitted:\n\n```\npipette.pick_up_tip()\npipette.aspirate(100, plate[\"A1\"])\npipette.dispense(100, plate[\"B1\"], push_out=5)\npipette.drop_tip()\n\n```\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 564, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "702aa6c4-d709-4041-97ee-4c6a5c57bce3": {"__data__": {"id_": "702aa6c4-d709-4041-97ee-4c6a5c57bce3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e20ab5cb-398d-4e61-86f1-d54f0268ad4e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "83faafd1304e6bd3ea59a8e076f5eeff930b91f574e55a69379cb685ba460b12", "class_name": "RelatedNodeInfo"}}, "text": "Blow Out\n\nTo blow an extra amount of air through the pipette\u2019s tip, call the `InstrumentContext.blow_out()` method. You can use a specific well in a well plate or reservoir as the blowout location. If no location is specified, the pipette will blowout from its current well position:\n\n```\npipette.blow_out()\n\n```\n\nYou can also specify a particular well as the blowout location:\n\n```\npipette.blow_out(plate[\"B1\"])\n\n```\n\nMany protocols use a trash container for blowing out the pipette. You can specify the pipette\u2019s current trash container as the blowout location by using the `InstrumentContext.trash_container` property:\n\n```\npipette.blow_out(pipette.trash_container)\n\n```\n\nNew in version 2\\.0\\.\n\nChanged in version 2\\.16: Added support for `TrashBin` and `WasteChute` locations.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 782, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9f2b3683-b974-4b5b-b968-6e44eb6bb66b": {"__data__": {"id_": "9f2b3683-b974-4b5b-b968-6e44eb6bb66b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9390e5ef-048c-4731-b84c-d2a3beabc7e4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e20f0d84819b89b41f8232811a08e68bfb3fdeedda74f375b9c04b15ea7b2076", "class_name": "RelatedNodeInfo"}}, "text": "Touch Tip\n\nThe `InstrumentContext.touch_tip()` method moves the pipette so the tip touches each wall of a well. A touch tip procedure helps knock off any droplets that might cling to the pipette\u2019s tip. This method includes optional arguments that allow you to control where the tip will touch the inner walls of a well and the touch speed. Calling `touch_tip()` without arguments causes the pipette to touch the well walls from its current location:\n\n```\npipette.touch_tip()\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 481, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "05636a71-c471-4479-9045-250d59b4d199": {"__data__": {"id_": "05636a71-c471-4479-9045-250d59b4d199", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ffdc5973-3a35-4f93-a241-fd70a1aaaac3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "845ae382f444be8a2c66aa181159ace9a09a5de685724c9991a46c67428ea261", "class_name": "RelatedNodeInfo"}}, "text": "Touch Location\n\nThese optional location arguments give you control over where the tip will touch the side of a well.\n\nThis example demonstrates touching the tip in a specific well:\n\n```\npipette.touch_tip(plate[\"B1\"])\n\n```\n\nThis example uses an offset to set the touch tip location 2mm below the top of the current well:\n\n```\npipette.touch_tip(v_offset=-2)\n\n```\n\nThis example moves the pipette 75% of well\u2019s total radius and 2 mm below the top of well:\n\n```\npipette.touch_tip(plate[\"B1\"],\n radius=0.75,\n v_offset=-2)\n\n```\n\nThe `touch_tip` feature allows the pipette to touch the edges of a well gently instead of crashing into them. It includes the `radius` argument. When `radius=1` the robot moves the centerline of the pipette\u2019s plunger axis to the edge of a well. This means a pipette tip may sometimes touch the well wall too early, causing it to bend inwards. A smaller radius helps avoid premature wall collisions and a lower speed produces gentler motion. Different liquid droplets behave differently, so test out these parameters in a single well before performing a full protocol run.\n\nWarning\n\n_Do not_ set the `radius` value greater than `1.0`. When `radius` is \\> `1.0`, the robot will forcibly move the pipette tip across a well wall or edge. This type of aggressive movement can damage the pipette tip and the pipette.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1368, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c94bb528-4956-46d5-a4df-e650f74f362b": {"__data__": {"id_": "c94bb528-4956-46d5-a4df-e650f74f362b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f758a645f34d3b5bb33885df5d3b0583c6f190e9db1b75e70f5bc6c8bb6a32a8", "class_name": "RelatedNodeInfo"}}, "text": "Touch Speed\n\nTouch speed controls how fast the pipette moves in mm/s during a touch tip step. The default movement speed is 60 mm/s, the minimum is 1 mm/s, and the maximum is 80 mm/s. Calling `touch_tip` without any arguments moves a tip at the default speed in the current well:\n\n```\npipette.touch_tip()\n\n```\n\nThis example specifies a well location and sets the speed to 20 mm/s:\n\n```\npipette.touch_tip(plate[\"B1\"], speed=20)\n\n```\n\nThis example uses the current well and sets the speed to 80 mm/s:\n\n```\npipette.touch_tip(speed=80)\n\n```\n\nNew in version 2\\.0\\.\n\nChanged in version 2\\.4: Lowered minimum speed to 1 mm/s.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 620, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3082a394-1cd7-49c3-b83e-c91ddfda982e": {"__data__": {"id_": "3082a394-1cd7-49c3-b83e-c91ddfda982e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "eaffce81-f1f5-4959-8d60-57953a8e0c10", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c0c18b1651cefa89a8abdcbc8e0da3e7dec7e4ec01e9dbbae1399d34cbec41cc", "class_name": "RelatedNodeInfo"}}, "text": "Mix\n\nThe `mix()` method aspirates and dispenses repeatedly in a single location. It\u2019s designed to mix the contents of a well together using a single command rather than using multiple `aspirate()` and `dispense()` calls. This method includes arguments that let you specify the number of times to mix, the volume (in \u00b5L) of liquid, and the well that contains the liquid you want to mix.\n\nThis example draws 100 \u00b5L from the current well and mixes it three times:\n\n```\npipette.mix(repetitions=3, volume=100)\n\n```\n\nThis example draws 100 \u00b5L from well B1 and mixes it three times:\n\n```\npipette.mix(3, 100, plate[\"B1\"])\n\n```\n\nThis example draws an amount equal to the pipette\u2019s maximum rated volume and mixes it three times:\n\n```\npipette.mix(repetitions=3)\n\n```\n\nNote\n\nIn API versions 2\\.2 and earlier, during a mix, the pipette moves up and out of the target well. In API versions 2\\.3 and later, the pipette does not move while mixing.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 956, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "447a6e0c-677f-4539-85ca-5c72307a10ff": {"__data__": {"id_": "447a6e0c-677f-4539-85ca-5c72307a10ff", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b17a26e9-b2b6-47a3-bde0-995ce61663c5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "31446b7bdab3fbbcf160cbc8b32a5f9f0fe9d82cb3c099d126a28c147127bca7", "class_name": "RelatedNodeInfo"}}, "text": "Air Gap\n\nThe `InstrumentContext.air_gap()` method tells the pipette to draw in air before or after a liquid. Creating an air gap helps keep liquids from seeping out of a pipette after drawing it from a well. This method includes arguments that give you control over the amount of air to aspirate and the pipette\u2019s height (in mm) above the well. By default, the pipette moves 5 mm above a well before aspirating air. Calling `air_gap()` with no arguments uses the entire remaining volume in the pipette.\n\nThis example aspirates 200 \u00b5L of air 5 mm above the current well:\n\n```\npipette.air_gap(volume=200)\n\n```\n\nThis example aspirates 200 \u00b5L of air 20 mm above the the current well:\n\n```\npipette.air_gap(volume=200, height=20)\n\n```\n\nThis example aspirates enough air to fill the remaining volume in a pipette:\n\n```\npipette.air_gap()\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 859, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9d43bf2f-9b6d-4c9b-a597-06f9ca591520": {"__data__": {"id_": "9d43bf2f-9b6d-4c9b-a597-06f9ca591520", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "261c2441-4165-45c2-a10a-3cd23dac57ba", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "034959cd06d759faa16ad613c69e918e2d5dca5d04eee8ae1fcb35d4b327a4dc", "class_name": "RelatedNodeInfo"}}, "text": "Utility Commands\n\nWith utility commands, you can control various robot functions such as pausing or delaying a protocol, checking the robot\u2019s door, turning robot lights on/off, and more. The following sections show you how to these utility commands and include sample code. The examples used here assume that you\u2019ve loaded the pipettes and labware from the basic protocol template.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 383, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2505f174-98d2-49b4-93f6-9c62039cb6b5": {"__data__": {"id_": "2505f174-98d2-49b4-93f6-9c62039cb6b5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "04d71240-fcf2-4072-9d74-694f4bec8996", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9c1412e57a5e45810656f5a02ae79ba82b957a68f7dff436305bab7ed184bda4", "class_name": "RelatedNodeInfo"}}, "text": "Delay and Resume\n\nCall the `ProtocolContext.delay()` method to insert a timed delay into your protocol. This method accepts time increments in seconds, minutes, or combinations of both. Your protocol resumes automatically after the specified time expires.\n\nThis example delays a protocol for 10 seconds:\n\n```\nprotocol.delay(seconds=10)\n\n```\n\nThis example delays a protocol for 5 minutes:\n\n```\nprotocol.delay(minutes=5)\n\n```\n\nThis example delays a protocol for 5 minutes and 10 seconds:\n\n```\nprotocol.delay(minutes=5, seconds=10)\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 535, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a88df31e-35ea-45b1-b79f-9a4ec0846da3": {"__data__": {"id_": "a88df31e-35ea-45b1-b79f-9a4ec0846da3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "13e71b6847b4bfc0e3ff48cb80a2b76509f68fb966a9a287165e00cec0f8d19d", "class_name": "RelatedNodeInfo"}}, "text": "Pause Until Resumed\n\nCall the `ProtocolContext.pause()` method to stop a protocol at a specific step. Unlike a delay, `pause()` does not restart your protocol automatically. To resume, you\u2019ll respond to a prompt on the touchscreen or in the Opentrons App. This method also lets you specify an optional message that provides on\\-screen or in\\-app instructions on how to proceed. This example inserts a pause and includes a brief message:\n\n```\nprotocol.pause(\"Remember to get more pipette tips\")\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 523, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8": {"__data__": {"id_": "28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5528953a-e1a8-4009-b345-c4876ad330b8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "07e766e37a2c0198deab56116578e6fdf4f829d89488101a348241d7e2ab010a", "class_name": "RelatedNodeInfo"}}, "text": "Homing\n\nHoming commands the robot to move the gantry, a pipette, or a pipette plunger to a defined position. For example, homing the gantry moves it to the back right of the working area. With the available homing methods you can home the gantry, home the mounted pipette and plunger, and home the pipette plunger. These functions take no arguments.\n\nTo home the gantry, call `ProtocolContext.home()`:\n\n```\nprotocol.home()\n\n```\n\nTo home a specific pipette\u2019s Z axis and plunger, call `InstrumentContext.home()`:\n\n```\npipette = protocol.load_instrument(\"flex_1channel_1000\", \"right\")\npipette.home()\n\n```\n\nTo home a specific pipette\u2019s plunger only, you can call `InstrumentContext.home_plunger()`:\n\n```\npipette = protocol.load_instrument(\"flex_1channel_1000\", \"right\")\npipette.home_plunger()\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "903c910e-a6de-4f76-817c-0dec155e870a": {"__data__": {"id_": "903c910e-a6de-4f76-817c-0dec155e870a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "07a7c1c7-e2f3-4eb6-854c-1eae21b78926", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9f7e3afb525497ec77eff904ccab8c295b5af26a2cd7eaff61aef9c59659fc50", "class_name": "RelatedNodeInfo"}}, "text": "Comment\n\nCall the `ProtocolContext.comment()` method if you want to write and display a brief message in the Opentrons App during a protocol run:\n\n```\nprotocol.comment(\"Hello, world!\")\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 214, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5866a289-b3da-4d3c-a001-59a4006b5bf9": {"__data__": {"id_": "5866a289-b3da-4d3c-a001-59a4006b5bf9", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "89b86a7c-90a7-4d81-80d7-411815e888c7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d7c54d25cb042c1fd541dca7ed7642c9d8ac12cd012a311859169c6f7efcc02b", "class_name": "RelatedNodeInfo"}}, "text": "Control and Monitor Robot Rail Lights\n\nCall the `ProtocolContext.set_rail_lights()` method to turn the robot\u2019s rail lights on or off during a protocol. This method accepts Boolean `True` (lights on) or `False` (lights off) arguments. Rail lights are off by default.\n\nThis example turns the rail lights on:\n\n```\nprotocol.set_rail_lights(True)\n\n```\n\nThis example turns the rail lights off:\n\n```\nprotocol.set_rail_lights(False)\n\n```\n\nNew in version 2\\.5\\.\n\nYou can also check whether the rail lights are on or off in the protocol by using `ProtocolContext.rail_lights_on`. This method returns `True` when lights are on and `False` when the lights are off.\n\nNew in version 2\\.5\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 677, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "87f2d885-6a0d-4836-b824-ecdb1829b746": {"__data__": {"id_": "87f2d885-6a0d-4836-b824-ecdb1829b746", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9e841c0b-7318-4c90-ad4c-24737d861c6c", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9a0fdd25319428583d388453802e338683afb20dd691d91b793929afe24dde71", "class_name": "RelatedNodeInfo"}}, "text": "OT\\-2 Door Safety Switch\n\nIntroduced with robot software version 3\\.19, the safety switch feature prevents the OT\\-2, and your protocol, from running if the door is open. To operate properly, the front door and top window of your OT\\-2 must be closed. You can toggle the door safety switch on or off from **Robot Settings \\> Advanced \\> Usage Settings**.\n\nTo check if the robot\u2019s door is closed at a specific point during a protocol run, call `ProtocolContext.door_closed`. It returns a Boolean `True` (door closed) or `False` (door open) response.\n\n```\nprotocol.door_closed\n\n```\n\nWarning\n\n`door_closed` is a status check only. It does not control the robot\u2019s behavior. If you wish to implement a custom method to pause or resume a protocol using `door_closed`, disable the door safety feature first (not recommended).\n\nNew in version 2\\.5\\.\n\nBuilding block commands execute some of the most basic actions that your robot can complete. But basic doesn\u2019t mean these commands lack capabilities. They perform important tasks in your protocols. They\u2019re also foundational to the complex commands that help you combine multiple actions into fewer lines of code.\n\nPages in this section of the documentation cover:\n\n- Manipulating Pipette Tips: Get started with commands for picking up pipette tips, dropping tips, returning tips, and working with used tips.\n- Liquid Control: Learn about aspirating and dispensing liquids, blow out and touch tip procedures, mixing, and creating air gaps.\n- Utility Commands: Control various robot functions such as pausing or delaying a protocol, checking the robot\u2019s door, turning robot lights on/off, and more.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1641, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c0af9c06-941b-4a98-a980-1dcec14868c8": {"__data__": {"id_": "c0af9c06-941b-4a98-a980-1dcec14868c8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2e5295ae-4d3a-419c-860f-80f5629a27b5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "02c02fe1d918274a391c4b43bb839a8e6c26cc8843e2cc187c63d61b46d82a1e", "class_name": "RelatedNodeInfo"}}, "text": "Complex Commands", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 18, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25": {"__data__": {"id_": "a3e79b45-f8b0-4dfa-999d-d5f7e54dee25", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bc47c26b-5a4a-4652-a406-7606309d4f59", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "27890aee1d12a1dbb025fcd210ab1085e0712f00999dd72a6f06b65fbc2016d0", "class_name": "RelatedNodeInfo"}}, "text": "Sources and Destinations\n\nThe `InstrumentContext.transfer()`, `InstrumentContext.distribute()`, and `InstrumentContext.consolidate()` methods form the family of complex liquid handling commands. These methods require `source` and `dest` (destination) arguments to move liquid from one well, or group of wells, to another. In contrast, the building block commands `aspirate()` and `dispense()` only operate in a single location.\n\nFor example, this command performs a simple transfer between two wells on a plate:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"A2\"],\n)\n\n```\n\nNew in version 2\\.0\\.\n\nThis page covers the restrictions on sources and destinations for complex commands, their different patterns of aspirating and dispensing, and how to optimize them for different use cases.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 818, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e4eb8e3c-4116-4d81-890a-a1934ed06eb0": {"__data__": {"id_": "e4eb8e3c-4116-4d81-890a-a1934ed06eb0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f30635f636342bdce5323b7e4c17dfa185ef255b086b2c8d5ecdbea218b595d9", "class_name": "RelatedNodeInfo"}}, "text": "Source and Destination Arguments\n\nAs noted above, the `transfer()`, `distribute()`, and `consolidate()` methods require `source` and `dest` (destination) arguments to aspirate and dispense liquid. However, each method handles liquid sources and destinations differently. Understanding how complex commands work with source and destination wells is essential to using these methods effectively.\n\n`transfer()` is the most versatile complex liquid handling function, because it has the fewest restrictions on what wells it can operate on. You will likely use transfer commands in many of your protocols.\n\nCertain liquid handling cases focus on moving liquid to or from a single well. `distribute()` limits its source to a single well, while `consolidate()` limits its destination to a single well. Distribute commands also make changes to liquid\\-handling behavior to improve the accuracy of dispensing.\n\nThe following table summarizes the source and destination restrictions for each method.\n\n| Method | Accepted wells |\n| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| `transfer()` | _ **Source:** Any number of wells. _ **Destination:** Any number of wells. \\* The larger group of wells must be evenly divisible by the smaller group. |\n| `distribute()` | _ **Source:** Exactly one well. _ **Destination:** Any number of wells. |\n| `consolidate()` | _ **Source:** Any number of wells. _ **Destination:** Exactly one well. |\n\nA single well can be passed by itself or as a list with one item: `source=plate[\"A1\"]` and `source=[plate[\"A1\"]]` are equivalent.\n\nThe section on many\\-to\\-many transfers below covers how `transfer()` works when specifying sources and destinations of different sizes. However, if they don\u2019t meet the even divisibility requirement, the API will raise an error. You can work around such situations by making multiple calls to `transfer()` in sequence or by using a list of volumes to skip certain wells.\n\nFor distributing and consolidating, the API will not raise an error if you use a list of wells as the argument that is limited to exactly one well. Instead, the API will ignore everything except the first well in the list. For example, the following command will only aspirate from well A1:\n\n```\npipette.distribute(\n volume=100,\n source=[plate[\"A1\"], plate[\"A2\"]], # A2 ignored\n dest=plate.columns()[1],\n)\n\n```\n\nOn the other hand, a transfer command with the same arguments would aspirate from both A1 and A2\\. The next section examines the exact order of aspiration and dispensing for all three methods.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2976, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "78e994e5-dbda-4960-9a58-8a398eec44ef": {"__data__": {"id_": "78e994e5-dbda-4960-9a58-8a398eec44ef", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "cf47c818-12ee-44d4-a5aa-d5e525c1fa32", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a28ed691a6f7eecaead7491d0524396561622c8c568e71e26e4345ad5d0a8d8e", "class_name": "RelatedNodeInfo"}}, "text": "Transfer Patterns\n\nEach complex command uses a different pattern of aspiration and dispensing. In addition, when you provide multiple wells as both the source and destination for `transfer()`, it maps the source list onto the destination list in a certain way.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 262, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7dc088d8-125c-41e5-bd34-8ebbf828e918": {"__data__": {"id_": "7dc088d8-125c-41e5-bd34-8ebbf828e918", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "820d78fb-3334-4b41-b8eb-1717ee427bb7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "feb25191ddd218c4426abb7d74ad466fa13054d98386692b6abf2b12dc74190b", "class_name": "RelatedNodeInfo"}}, "text": "Aspirating and Dispensing\n\n`transfer()` always alternates between aspirating and dispensing, regardless of how many wells are in the source and destination. Its default behavior is:\n\n> 1. Pick up a tip.\n> 2. Aspirate from the first source well.\n> 3. Dispense in the first destination well.\n> 4. Repeat the pattern of aspirating and dispensing, as needed.\n> 5. Drop the tip in the trash.\n\nThis transfer aspirates six times and dispenses six times.\n\n`distribute()` always fills the tip with as few aspirations as possible, and then dispenses to the destination wells in order. Its default behavior is:\n\n> 1. Pick up a tip.\n> 2. Aspirate enough to dispense in all the destination wells. This aspirate includes a disposal volume.\n> 3. Dispense in the first destination well.\n> 4. Continue to dispense in destination wells.\n> 5. Drop the tip in the trash.\n\nSee Tip Refilling below for cases where the total amount to be dispensed is greater than the capacity of the tip.\n\nThis distribute aspirates one time and dispenses three times.\n\n`consolidate()` aspirates multiple times in a row, and then dispenses as few times as possible in the destination well. Its default behavior is:\n\n> 1. Pick up a tip.\n> 2. Aspirate from the first source well.\n> 3. Continue aspirating from source wells.\n> 4. Dispense in the destination well.\n> 5. Drop the tip in the trash.\n\nSee Tip Refilling below for cases where the total amount to be aspirated is greater than the capacity of the tip.\n\nThis consolidate aspirates three times and dispenses one time.\n\nNote\n\nBy default, all three commands begin by picking up a tip and conclude by dropping a tip. In general, don\u2019t call `pick_up_tip()` just before a complex command, or the API will raise an error. You can override this behavior with the tip handling complex parameter, by setting `new_tip=\"never\"`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1833, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4a936b4a-b9fb-455e-9162-319f1b8112be": {"__data__": {"id_": "4a936b4a-b9fb-455e-9162-319f1b8112be", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7a9e18f77ad5b0c3dce1eabfa861436f78ae6c8fc3b459e99cf0131ab0f55ca7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "7549afef-c458-4c82-8149-e115c99cd800", "node_type": "1", "metadata": {}, "hash": "54837e5549dc16a6a45b7fcfc3f5985ca6774fa0f4495bffc6810da7bb6499a2", "class_name": "RelatedNodeInfo"}}, "text": "Many\\-to\\-Many\n\n`transfer()` lets you specify both `source` and `dest` arguments that contain multiple wells. This section covers how the method determines which wells to aspirate from and dispense to in these cases.\n\nWhen the source and destination both contain the same number of wells, the mapping between wells is straightforward. You can imagine writing out the two lists one above each other, with each unique well in the source list paired to a unique well in the destination list. For example, here is the code for using one row as the source and another row as the destination, and the resulting correspondence between wells:\n\n```\npipette.transfer(\n volume=50,\n source=plate.rows()[0],\n dest=plate.rows()[1],\n)\n\n```\n\n| Source | A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 |\n| ----------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| Destination | B1 | B2 | B3 | B4 | B5 | B6 | B7 | B8 | B9 | B10 | B11 | B12 |\n\nThere\u2019s no requirement that the source and destination lists be mutually exclusive. In fact, this command adapted from the tutorial deliberately uses slices of the same list, saved to the variable `row`, with the effect that each aspiration happens in the same location as the previous dispense:\n\n```\nrow = plate.rows()[0]\npipette.transfer(\n volume=50,\n source=row[:11],\n dest=row[1:],\n)\n\n```\n\n| Source | A1 | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 |\n| ----------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| Destination | A2 | A3 | A4 | A5 | A6 | A7 | A8 | A9 | A10 | A11 | A12 |\n\nWhen the source and destination lists contain different numbers of wells, `transfer()` will always aspirate and dispense as many times as there are wells in the _longer_ list. The shorter list will be \u201cstretched\u201d to cover the length of the longer list. Here is an example of transferring from 3 wells to a full row of 12 wells:\n\n```\npipette.transfer(\n volume=50,\n source=[plate[\"A1\"], plate[\"A2\"], plate[\"A3\"]],\n dest=plate.rows()[1],\n)\n\n```\n\n| Source | A1 | A1 | A1 | A1 | A2 | A2 | A2 | A2 | A3 | A3 | A3 | A3 |\n| ----------- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- | --- |\n| Destination | B1 | B2 | B3 | B4 | B5 | B6 | B7 | B8 | B9 | B10 | B11 | B12 |\n\nThis is why the longer list must be evenly divisible by the shorter list. Changing the destination in this example to a column instead of a row will cause the API to raise an error, because 8 is not evenly divisible by 3:\n\n```\npipette.transfer(\n volume=50,\n source=[plate[\"A1\"], plate[\"A2\"], plate[\"A3\"]],\n dest=plate.columns()[3], # labware column 4\n)\n# error: source and destination lists must be divisible\n\n```\n\nThe API raises this error rather than presuming which wells to aspirate from three times and which only two times. If you want to aspirate three times from A1, three times from A2, and two times from A3, use multiple `transfer()` commands in sequence:\n\n```\npipette.transfer(50, plate[\"A1\"], plate.columns()[3][:3])\npipette.transfer(50, plate[\"A2\"], plate.columns()[3][3:6])\npipette.transfer(50, plate[\"A3\"], plate.columns()[3][6:])\n\n```\n\nFinally, be aware of the ordering of source and destination lists when constructing them with well accessor methods.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3348, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7549afef-c458-4c82-8149-e115c99cd800": {"__data__": {"id_": "7549afef-c458-4c82-8149-e115c99cd800", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f60cee55-6027-4d81-bbf0-34ef4d9a1123", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7a9e18f77ad5b0c3dce1eabfa861436f78ae6c8fc3b459e99cf0131ab0f55ca7", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4a936b4a-b9fb-455e-9162-319f1b8112be", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8474d34dd919ad8c9657df169511921c7a60276a74aaa14e4526e3a8da8b3ced", "class_name": "RelatedNodeInfo"}}, "text": "If you want to aspirate three times from A1, three times from A2, and two times from A3, use multiple `transfer()` commands in sequence:\n\n```\npipette.transfer(50, plate[\"A1\"], plate.columns()[3][:3])\npipette.transfer(50, plate[\"A2\"], plate.columns()[3][3:6])\npipette.transfer(50, plate[\"A3\"], plate.columns()[3][6:])\n\n```\n\nFinally, be aware of the ordering of source and destination lists when constructing them with well accessor methods. For example, at first glance this code may appear to take liquid from each well in the first row of a plate and move it to each of the other wells in the same column:\n\n```\npipette.transfer(\n volume=20,\n source=plate.rows()[0],\n dest=plate.rows()[1:],\n)\n\n```\n\nHowever, because the well ordering of `Labware.rows()` goes _across_ the plate instead of _down_ the plate, liquid from A1 will be dispensed in B1\u2013B7, liquid from A2 will be dispensed in B8\u2013C2, etc. The intended task is probably better accomplished by repeating transfers in a `for` loop:\n\n```\nfor i in range(12):\n pipette.transfer(\n volume=20,\n source=plate.rows()[0][i],\n dest=plate.columns()[i][1:],\n )\n\n```\n\nHere the repeat index `i` picks out:\n\n> - The individual well in the first row, for the source.\n> - The corresponding column, which is sliced to form the destination.", "mimetype": "text/plain", "start_char_idx": 2909, "end_char_idx": 4222, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c71e182-997d-4d7e-834f-b7dc138e7830": {"__data__": {"id_": "2c71e182-997d-4d7e-834f-b7dc138e7830", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3ecf90ab-94be-44d6-9343-605105ac497e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9f577e29ebd9ea2b41a2a0995ccb868aeb7565498aff1a78ca1bda15ef1e70a0", "class_name": "RelatedNodeInfo"}}, "text": "Optimizing Patterns\n\nChoosing the right complex command optimizes gantry movement and helps save time in your protocol. For example, say you want to take liquid from a reservoir and put 50 \u00b5L in each well of the first row of a plate. You could use `transfer()`, like this:\n\n```\npipette.transfer(\n volume=50,\n source=reservoir[\"A1\"],\n destination=plate.rows()[0],\n)\n\n```\n\nThis will produce 12 aspirate steps and 12 dispense steps. The steps alternate, with the pipette moving back and forth between the reservoir and plate each time. Using `distribute()` with the same arguments is more optimal in this scenario:\n\n```\npipette.distribute(\n volume=50,\n source=reservoir[\"A1\"],\n destination=plate.rows()[0],\n)\n\n```\n\nThis will produce _just 1_ aspirate step and 12 dispense steps (when using a 1000 \u00b5L pipette). The pipette will aspirate enough liquid to fill all the wells, plus a disposal volume. Then it will move to A1 of the plate, dispense, move the short distance to A2, dispense, and so on. This greatly reduces gantry movement and the time to perform this action. And even if you\u2019re using a smaller pipette, `distribute()` will fill the pipette, dispense as many times as possible, and only then return to the reservoir to refill (see Tip Refilling for more information).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1295, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6901c4f7-aa1c-4fd9-94e9-085fab8deae4": {"__data__": {"id_": "6901c4f7-aa1c-4fd9-94e9-085fab8deae4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e29a0a17-0ea8-4972-a9a4-c569e6365701", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "850780d67e67456d25741a728e88cb9b7bb27e8af8b02a188943ce37ccf2ce24", "class_name": "RelatedNodeInfo"}}, "text": "Order of Operations\n\nComplex commands perform a series of building block commands in order. In fact, the run preview for your protocol in the Opentrons App lists all of these commands as separate steps. This lets you examine what effect your complex commands will have before running them.\n\nThis page describes what steps you should expect the robot to perform when using different complex commands with different required and optional parameters.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 449, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c78e873b-ee41-49a4-90f5-b0d8887422c3": {"__data__": {"id_": "c78e873b-ee41-49a4-90f5-b0d8887422c3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "72fa11ed3702e30b06009f6d5d874910f212e3ba092b4aaf122e2ec2120afcc6", "class_name": "RelatedNodeInfo"}}, "text": "Step Sequence\n\nThe order of steps is fixed within complex commands. Aspiration and dispensing are the only required actions. You can enable or disable all of the other actions with complex liquid handling parameters. A complex command designed to perform every possible action will proceed in this order:\n\n> 1. Pick up tip\n> 2. Mix at source\n> 3. Aspirate from source\n> 4. Touch tip at source\n> 5. Air gap\n> 6. Dispense into destination\n> 7. Mix at destination\n> 8. Touch tip at destination\n> 9. Blow out\n> 10. Drop tip\n\nThe command may repeat some or all of these steps in order to move liquid as requested. `transfer()` repeats as many times as there are wells in the longer of its `source` or `dest` argument. `distribute()` and `consolidate()` try to repeat as few times as possible. See Tip Refilling below for how they behave when they do need to repeat.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 862, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "797a48ee-2ac2-4e05-9bb0-8e4c54754eac": {"__data__": {"id_": "797a48ee-2ac2-4e05-9bb0-8e4c54754eac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "abb61571-5049-463c-b4d9-e8a6cdf330eb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c4f394172440c6981646ac1f5b96d386630b58286c51e4fd45fc3ff2c92980ff", "class_name": "RelatedNodeInfo"}}, "text": "Example Orders\n\nThe smallest possible number of steps in a complex command is just two: aspirating and dispensing. This is possible by omitting the tip pickup and drop steps:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n new_tip=\"never\",\n)\n\n```\n\nHere\u2019s another example, a distribute command that adds touch tip steps (and does not turn off tip handling). The code for this command is:\n\n```\npipette.distribute(\n volume=100,\n source=[plate[\"A1\"]],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n touch_tip=True,\n)\n\n```\n\nCompared to the list of all possible actions, this code will only perform the following:\n\n> 1. Pick up tip\n> 2. Aspirate from source\n> 3. Touch tip at source\n> 4. Dispense into destination\n> 5. Touch tip at destination\n> 6. Blow out\n> 7. Drop tip\n\nLet\u2019s unpack this. Picking up and dropping tips is default behavior for `distribute()`. Specifying `touch_tip=True` adds two steps, as it is performed at both the source and destination. And it\u2019s also default behavior for `distribute()` to aspirate a disposal volume, which is blown out before dropping the tip. The exact order of steps in the run preview should look similar to this:\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nTouching tip\nDispensing 100.0 uL into B1 of well plate on 2 at 92.86 uL/sec\nTouching tip\nDispensing 100.0 uL into B2 of well plate on 2 at 92.86 uL/sec\nTouching tip\nBlowing out at A1 of Opentrons Fixed Trash on 12\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```\n\nSince dispensing and touching the tip are both associated with the destination wells, those steps are performed at each of the two destination wells.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1724, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c676458f-04d8-4041-9ea1-c947010dff53": {"__data__": {"id_": "c676458f-04d8-4041-9ea1-c947010dff53", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3b959379-13d3-4c66-820e-ef6ae5e54595", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e164cf38deefa81306ae67bce579411585e5cdc970f48d62f01db20570b4d355", "class_name": "RelatedNodeInfo"}}, "text": "Tip Refilling\n\nOne factor that affects the exact order of steps for a complex command is whether the amount of liquid being moved can fit in the tip at once. If it won\u2019t fit, you don\u2019t have to adjust your command. The API will handle it for you by including additional steps to refill the tip when needed.\n\nFor example, say you need to move 100 \u00b5L of liquid from one well to another, but you only have a 50 \u00b5L pipette attached to your robot. To accomplish this with building block commands, you\u2019d need multiple aspirates and dispenses. `aspirate(volume=100)` would raise an error, since it exceeds the tip\u2019s volume. But you can accomplish this with a single transfer command:\n\n```\npipette50.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n)\n\n```\n\nTo effect the transfer, the API will aspirate and dispense the maximum volume of the pipette (50 \u00b5L) twice:\n\n```\nPicking up tip from A1 of tip rack on D3\nAspirating 50.0 uL from A1 of well plate on D2 at 57 uL/sec\nDispensing 50.0 uL into B1 of well plate on D2 at 57 uL/sec\nAspirating 50.0 uL from A1 of well plate on D2 at 57 uL/sec\nDispensing 50.0 uL into B1 of well plate on D2 at 57 uL/sec\nDropping tip into A1 of Opentrons Fixed Trash on A3\n\n```\n\nYou can change `volume` to any value (above the minimum volume of the pipette) and the API will automatically calculate how many times the pipette needs to aspirate and dispense. `volume=50` would require just one repetition. `volume=75` would require two, split into 50 \u00b5L and 25 \u00b5L. `volume=1000` would repeat 20 times \u2014 not very efficient, but perhaps more useful than having to swap to a different pipette!\n\nRemember that `distribute()` includes a disposal volume by default, and this can affect the number of times the pipette refills its tip. Say you want to distribute 80 \u00b5L to each of the 12 wells in row A of a plate. That\u2019s 960 \u00b5L total \u2014 less than the capacity of the pipette \u2014 but the 100 \u00b5L disposal volume will cause the pipette to refill.\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 980.0 uL from A1 of well plate on 2 at 274.7 uL/sec\nDispensing 80.0 uL into B1 of well plate on 2 at 274.7 uL/sec\nDispensing 80.0 uL into B2 of well plate on 2 at 274.7 uL/sec\n...\nDispensing 80.0 uL into B11 of well plate on 2 at 274.7 uL/sec\nBlowing out at A1 of Opentrons Fixed Trash on 12\nAspirating 180.0 uL from A1 of well plate on 2 at 274.7 uL/sec\nDispensing 80.0 uL into B12 of well plate on 2 at 274.7 uL/sec\nBlowing out at A1 of Opentrons Fixed Trash on 12\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```\n\nThis command will blow out 200 total \u00b5L of liquid in the trash. If you need to conserve liquid, use complex liquid handling parameters to reduce or eliminate the disposal volume, or to blow out in a location other than the trash.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2789, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c": {"__data__": {"id_": "e827f3f2-8e1c-44ff-8395-1f03ae9bd72c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "18a09b06-e824-4435-93db-f2259404c708", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9eb7da3affe02c95da86da0beceff81cad2e85601594d5a0d088c2bc04fbe8e2", "class_name": "RelatedNodeInfo"}}, "text": "List of Volumes\n\nComplex commands can aspirate or dispense different amounts for different wells, rather than the same amount across all wells. To do this, set the `volume` parameter to a list of volumes instead of a single number. The list must be the same length as the longer of `source` or `dest`, or the API will raise an error. For example, this command transfers a different amount of liquid into each of wells B1, B2, and B3:\n\n```\npipette.transfer(\n volume=[20, 40, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n)\n\n```\n\nSetting any item in the list to `0` will skip aspirating and dispensing for the corresponding well. This example takes the command from above and skips B2:\n\n```\npipette.transfer(\n volume=[20, 0, 60],\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n)\n\n```\n\nThe pipette dispenses in B1 and B3, and does not move to B2 at all.\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 20.0 uL from A1 of well plate on 2 at 274.7 uL/sec\nDispensing 20.0 uL into B1 of well plate on 2 at 274.7 uL/sec\nAspirating 60.0 uL from A1 of well plate on 2 at 274.7 uL/sec\nDispensing 60.0 uL into B3 of well plate on 2 at 274.7 uL/sec\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```\n\nThis is such a simple example that you might prefer to use two `transfer()` commands instead. Lists of volumes become more useful when they are longer than a couple elements. For example, you can specify `volume` as a list with 96 items and `dest=plate.wells()` to individually control amounts to dispense (and wells to skip) across an entire plate.\n\nNote\n\nWhen the optional `new_tip` parameter is set to `\"always\"`, the pipette will pick up and drop a tip even for skipped wells. If you don\u2019t want to waste tips, pre\\-process your list of sources or destinations and use the result as the argument of your complex command.\n\nNew in version 2\\.0: Skip wells for `transfer()` and `distribute()`.\n\nNew in version 2\\.8: Skip wells for `consolidate()`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2017, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5631ea16-89c4-4cd1-a971-2e1bd07dee2d": {"__data__": {"id_": "5631ea16-89c4-4cd1-a971-2e1bd07dee2d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d0501e05-225c-439b-b9e7-e1ee48e6bbf2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d87cc3616a6ea092650cdc323a8e442aac19965f8faa1f2d690e51dfd6c2c357", "class_name": "RelatedNodeInfo"}}, "text": "Complex Liquid Handling Parameters\n\nComplex commands accept a number of optional parameters that give you greater control over the exact steps they perform.\n\nThis page describes the accepted values and behavior of each parameter. The parameters are organized in the order that they first add a step. Some parameters, such as `touch_tip`, add multiple steps. See Order of Operations for more details on the sequence of steps performed by complex commands.\n\nThe API reference entry for `InstrumentContext.transfer()` also lists the parameters and has more information on their implementation as keyword arguments.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 613, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f16298e7-2f76-42f7-9d44-c1fab304825b": {"__data__": {"id_": "f16298e7-2f76-42f7-9d44-c1fab304825b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "26c7eb2c-6ac1-4f87-af66-939fa469d08b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "dc5944fa421da48fdd19e86b15d9f870d7e913f1928063cb3129583b96a1827d", "class_name": "RelatedNodeInfo"}}, "text": "Tip Handling\n\nThe `new_tip` parameter controls if and when complex commands pick up new tips from the pipette\u2019s tip racks. It has three possible values:\n\n| Value | Behavior |\n| ---------- | ------------------------------------------------------------------------------------------------------------------------------ |\n| `\"once\"` | _ Pick up a tip at the start of the command. _ Use the tip for all liquid handling. \\* Drop the tip at the end of the command. |\n| `\"always\"` | Pick up and drop a tip for each set of aspirate and dispense steps. |\n| `\"never\"` | Do not pick up or drop tips at all. |\n\n`\"once\"` is the default behavior for all complex commands.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 958, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "372e09b4-a41b-491f-a954-717248f64974": {"__data__": {"id_": "372e09b4-a41b-491f-a954-717248f64974", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b22c7013-5aeb-4343-861e-30e36c76d314", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e379c5834e4b5ac9f1bcd4f194c48ab53b2eb5f44da5c730e94cf2baf41a45dc", "class_name": "RelatedNodeInfo"}}, "text": "Tip Handling Requirements\n\n`\"once\"` and `\"always\"` require that the pipette has an associated tip rack, or the API will raise an error (because it doesn\u2019t know where to pick up a tip from). If the pipette already has a tip attached, the API will also raise an error when it tries to pick up a tip.\n\n```\npipette.pick_up_tip()\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"], plate[\"B3\"]],\n new_tip=\"never\", # \"once\", \"always\", or None will error\n)\n\n```\n\nConversely, `\"never\"` requires that the pipette has picked up a tip, or the API will raise an error (because it will attempt to aspirate without a tip attached).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 665, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ca3e349b-fcaa-4872-9016-4f32585cd66c": {"__data__": {"id_": "ca3e349b-fcaa-4872-9016-4f32585cd66c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "58f2d3ed-b7f1-4c04-843c-70a0e6384767", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7b0f6933839f8c37aca391fdae52a50727c2526da36901a45c0142dbef941a42", "class_name": "RelatedNodeInfo"}}, "text": "Avoiding Cross\\-Contamination\n\nOne reason to set `new_tip=\"always\"` is to avoid cross\\-contamination between wells. However, you should always do a dry run of your protocol to test that the pipette is picking up and dropping tips in the way that your application requires.\n\n`transfer()` will pick up a new tip before _every_ aspirate when `new_tip=\"always\"`. This includes when tip refilling requires multiple aspirations from a single source well.\n\n`distribute()` and `consolidate()` only pick up one tip, even when `new_tip=\"always\"`. For example, this distribute command returns to the source well a second time, because the amount to be distributed (400 \u00b5L total plus disposal volume) exceeds the pipette capacity (300 \u03bcL):\n\n```\npipette.distribute(\n volume=200,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n new_tip=\"always\",\n)\n\n```\n\nBut it _does not_ pick up a new tip after dispensing into B1:\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nDispensing 200.0 uL into B1 of well plate on 2 at 92.86 uL/sec\nBlowing out at A1 of Opentrons Fixed Trash on 12\nAspirating 220.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nDispensing 200.0 uL into B2 of well plate on 2 at 92.86 uL/sec\nBlowing out at A1 of Opentrons Fixed Trash on 12\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```\n\nIf this poses a contamination risk, you can work around it in a few ways:\n\n> - Use `transfer()` with `new_tip=\"always\"` instead.\n> - Set `well_bottom_clearance` high enough that the tip doesn\u2019t contact liquid in the destination well.\n> - Use building block commands instead of complex commands.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1671, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2": {"__data__": {"id_": "4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f5146bfd-dd6d-48c9-9108-5d654c5aa181", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1240c057d371f8e773738cabca5220deb4f7c7e744e8f43a427c1c623cf20b73", "class_name": "RelatedNodeInfo"}}, "text": "Mix Before\n\nThe `mix_before` parameter controls mixing in source wells before each aspiration. Its value must be a `tuple`') with two numeric values. The first value is the number of repetitions, and the second value is the amount of liquid to mix in \u00b5L.\n\nFor example, this transfer command will mix 50 \u00b5L of liquid 3 times before each of its aspirations:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n mix_before=(3, 50),\n)\n\n```\n\nNew in version 2\\.0\\.\n\nMixing occurs before every aspiration, including when tip refilling is required.\n\nNote\n\n`consolidate()` ignores any value of `mix_before`. Mixing on the second and subsequent aspirations of a consolidate command would defeat its purpose: to aspirate multiple times in a row, from different wells, _before_ dispensing.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 830, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c01cad1e-baf0-4514-b6ab-3df8dc973827": {"__data__": {"id_": "c01cad1e-baf0-4514-b6ab-3df8dc973827", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d547d570-592d-4cb0-a51f-c504d544c191", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "011d23685c6dbb14736981db17ad8330160bee2ba20ccf8faf3d0bb82e65b946", "class_name": "RelatedNodeInfo"}}, "text": "Disposal Volume\n\nThe `disposal_volume` parameter controls how much extra liquid is aspirated as part of a `distribute()` command. Including a disposal volume can improve the accuracy of each dispense. The pipette blows out the disposal volume of liquid after dispensing. To skip aspirating and blowing out extra liquid, set `disposal_volume=0`.\n\nBy default, `disposal_volume` is the minimum volume of the pipette, but you can set it to any amount:\n\n```\npipette.distribute(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n disposal_volume=10, # reduce from default 20 \u00b5L to 10 \u00b5L\n)\n\n```\n\nNew in version 2\\.0\\.\n\nIf the amount to aspirate plus the disposal volume exceeds the tip\u2019s capacity, `distribute()` will use a tip refilling strategy. In such cases, the pipette will aspirate and blow out the disposal volume _for each aspiration_. For example, this command will require tip refilling with a 1000 \u00b5L pipette:\n\n```\npipette.distribute(\n volume=120,\n source=reservoir[\"A1\"],\n dest=[plate.columns()[0]],\n disposal_volume=50,\n)\n\n```\n\nThe amount to dispense in the destination is 960 \u00b5L (120 \u00b5L for each of 8 wells in the column). Adding the 50 \u00b5L disposal volume exceeds the 1000 \u00b5L capacity of the tip. The command will be split across two aspirations, each with the full disposal volume of 50 \u00b5L. The pipette will dispose _a total of 100 \u00b5L_ during the command.\n\nNote\n\n`transfer()` will not aspirate additional liquid if you set `disposal_volume`. However, it will perform a very small blow out after each dispense.\n\n`consolidate()` ignores `disposal_volume` completely.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1618, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "870c3230-bcd3-49bb-a774-c3c265fad517": {"__data__": {"id_": "870c3230-bcd3-49bb-a774-c3c265fad517", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "aac2e449-4cee-4fbd-9697-f93360b76e19", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6eef9a0ba6ad11a4bdd791c7e66b8ec1c2240c524322f91077b32573a8eb17a6", "class_name": "RelatedNodeInfo"}}, "text": "Touch Tip\n\nThe `touch_tip` parameter accepts a Boolean value. When `True`, a touch tip step occurs after every aspirate and dispense.\n\nFor example, this transfer command aspirates, touches the tip at the source, dispenses, and touches the tip at the destination:\n\n```\npipette.transfer(\n volume=100,\n dest=plate[\"A1\"],\n source=plate[\"B1\"],\n touch_tip=True,\n)\n\n```\n\nNew in version 2\\.0\\.\n\nTouch tip occurs after every aspiration, including when tip refilling is required.\n\nThis parameter always uses default motion behavior for touch tip. Use the touch tip building block command if you need to:\n\n> - Only touch the tip after aspirating or dispensing, but not both.\n> - Control the speed, radius, or height of the touch tip motion.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 743, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c315702-c74a-425f-95cf-aa7f21ba6275": {"__data__": {"id_": "2c315702-c74a-425f-95cf-aa7f21ba6275", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0a17f09a-4878-4fb4-8d8f-d96f1ef94378", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c5102e5beb603bcba5d0b656e51d83eba758b1f8aa296c6410432f72b9d13478", "class_name": "RelatedNodeInfo"}}, "text": "Air Gap\n\nThe `air_gap` parameter controls how much air to aspirate and hold in the bottom of the tip when it contains liquid. The parameter\u2019s value is the amount of air to aspirate in \u00b5L.\n\nAir\\-gapping behavior is different for each complex command. The different behaviors all serve the same purpose, which is to never leave the pipette holding liquid at the very bottom of the tip. This helps keep liquids from seeping out of the pipette.\n\n| Method | Air\\-gapping behavior |\n| --------------- | ----------------------------------------------------------------------------------------------------------------------- |\n| `transfer()` | _ Air gap after each aspiration. _ Pipette is empty after dispensing. |\n| `distribute()` | _ Air gap after each aspiration. _ Air gap after dispensing if the pipette isn\u2019t empty. |\n| `consolidate()` | _ Air gap after each aspiration. This may create multiple air gaps within the tip. _ Pipette is empty after dispensing. |\n\nFor example, this transfer command will create a 20 \u00b5L air gap after each of its aspirations. When dispensing, it will clear the air gap and dispense the full 100 \u00b5L of liquid:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n air_gap=20,\n)\n\n```\n\nNew in version 2\\.0\\.\n\nWhen consolidating, air gaps still occur after every aspiration. In this example, the tip will use 210 \u00b5L of its capacity (50 \u00b5L of liquid followed by 20 \u00b5L of air, repeated three times):\n\n```\npipette.consolidate(\n volume=50,\n source=[plate[\"A1\"], plate[\"A2\"], plate[\"A3\"]],\n dest=plate[\"B1\"],\n air_gap=20,\n)\n\n```\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 50.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nAir gap\n Aspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nAspirating 50.0 uL from A2 of well plate on 2 at 92.86 uL/sec\nAir gap\n Aspirating 20.0 uL from A2 of well plate on 2 at 92.86 uL/sec\nAspirating 50.0 uL from A3 of well plate on 2 at 92.86 uL/sec\nAir gap\n Aspirating 20.0 uL from A3 of well plate on 2 at 92.86 uL/sec\nDispensing 210.0 uL into B1 of well plate on 2 at 92.86 uL/sec\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```\n\nIf adding an air gap would exceed the pipette\u2019s maximum volume, the complex command will use a tip refilling strategy. For example, this command uses a 300 \u00b5L pipette to transfer 300 \u00b5L of liquid plus an air gap:\n\n```\npipette.transfer(\n volume=300,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n air_gap=20,\n)\n\n```\n\nAs a result, the transfer is split into two aspirates of 150 \u00b5L, each with their own 20 \u00b5L air gap:\n\n```\nPicking up tip from A1 of tip rack on 3\nAspirating 150.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nAir gap\n Aspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nDispensing 170.0 uL into B1 of well plate on 2 at 92.86 uL/sec\nAspirating 150.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nAir gap\n Aspirating 20.0 uL from A1 of well plate on 2 at 92.86 uL/sec\nDispensing 170.0 uL into B1 of well plate on 2 at 92.86 uL/sec\nDropping tip into A1 of Opentrons Fixed Trash on 12\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3295, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9698d911-4ec1-4061-8ec4-c9de86f0ec0b": {"__data__": {"id_": "9698d911-4ec1-4061-8ec4-c9de86f0ec0b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7a9ee7fb-d475-48d4-8862-cafba70d52f6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ee26019a7207879f356fcfede9b22847d8575f913c41683677a5555c4b088812", "class_name": "RelatedNodeInfo"}}, "text": "Mix After\n\nThe `mix_after` parameter controls mixing in source wells after each dispense. Its value must be a `tuple`') with two numeric values. The first value is the number of repetitions, and the second value is the amount of liquid to mix in \u00b5L.\n\nFor example, this transfer command will mix 50 \u00b5L of liquid 3 times after each of its dispenses:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n mix_after=(3, 50),\n)\n\n```\n\nNew in version 2\\.0\\.\n\nNote\n\n`distribute()` ignores any value of `mix_after`. Mixing after dispensing would combine (and potentially contaminate) the remaining source liquid with liquid present at the destination.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 694, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2c94d49d-17af-41e4-9621-7b5e6450b367": {"__data__": {"id_": "2c94d49d-17af-41e4-9621-7b5e6450b367", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "55d1ed2a-0317-4b59-8e86-bf9f3a56c120", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "27c672c090be0b95fbbbbc7728fca24fbfbb7886d5f7651b293d41460d582ad2", "class_name": "RelatedNodeInfo"}}, "text": "Blow Out\n\nThere are two parameters that control whether and where the pipette blows out liquid. The `blow_out` parameter accepts a Boolean value. When `True`, the pipette blows out remaining liquid when the tip is empty or only contains the disposal volume. The `blowout_location` parameter controls in which of three locations these blowout actions occur. The default blowout location is the trash. Blowout behavior is different for each complex command.\n\n| Method | Blowout behavior and location |\n| --------------- | --------------------------------------------------------------------------------------------------- |\n| `transfer()` | _ Blow out after each dispense. _ Valid locations: `\"trash\"`, `\"source well\"`, `\"destination well\"` |\n| `distribute()` | _ Blow out after the final dispense. _ Valid locations: `\"trash\"`, `\"source well\"` |\n| `consolidate()` | _ Blow out after the only dispense. _ Valid locations: `\"trash\"`, `\"destination well\"` |\n\nFor example, this transfer command will blow out liquid in the trash twice, once after each dispense into a destination well:\n\n```\npipette.transfer(\n volume=100,\n source=[plate[\"A1\"], plate[\"A2\"]],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n blow_out=True,\n)\n\n```\n\nNew in version 2\\.0\\.\n\nSet `blowout_location` when you don\u2019t want to waste any liquid by blowing it out into the trash. For example, you may want to make sure that every last bit of a sample is moved into a destination well. Or you may want to return every last bit of an expensive reagent to the source for use in later pipetting.\n\nIf you need to blow out in a different well, or at a specific location within a well, use the blow out building block command instead.\n\nWhen setting a blowout location, you _must_ also set `blow_out=True`, or the location will be ignored:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n blow_out=True, # required to set location\n blowout_location=\"destination well\",\n)\n\n```\n\nNew in version 2\\.8\\.\n\nWith `transfer()`, the pipette will not blow out at all if you only set `blowout_location`.\n\n`blow_out=True` is also required for distribute commands that blow out by virtue of having a disposal volume:\n\n```\npipette.distribute(\n volume=100,\n source=plate[\"A1\"],\n dest=[plate[\"B1\"], plate[\"B2\"]],\n disposal_volume=50, # causes blow out\n blow_out=True, # still required to set location!\n blowout_location=\"source well\",\n)\n\n```\n\nWith `distribute()`, the pipette will still blow out if you only set `blowout_location`, but in the default location of the trash.\n\nNote\n\nIf the tip already contains liquid before the complex command, the default blowout location will shift away from the trash. `transfer()` and `distribute()` shift to the source well, and `consolidate()` shifts to the destination well. For example, this transfer command will blow out in well B1 because it\u2019s the source:\n\n```\npipette.pick_up_tip()\npipette.aspirate(100, plate[\"A1\"])\npipette.transfer(\n volume=100,\n source=plate[\"B1\"],\n dest=plate[\"C1\"],\n new_tip=\"never\",\n blow_out=True,\n # no blowout_location\n)\npipette.drop_tip()\n\n```\n\nThis only occurs when you aspirate and then perform a complex command with `new_tip=\"never\"` and `blow_out=True`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3370, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6dd6e451-5c6d-4da8-91e6-5b809cbb2260": {"__data__": {"id_": "6dd6e451-5c6d-4da8-91e6-5b809cbb2260", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "1b44faef-8bcd-4009-b5b8-dcdccb43b671", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b5561ee08335f2be9675d9a7db000a6319596fe3582cffdda93943eb4cf7e837", "class_name": "RelatedNodeInfo"}}, "text": "Trash Tips\n\nThe `trash` parameter controls what the pipette does with tips at the end of complex commands. When `True`, the pipette drops tips into the trash. When `False`, the pipette returns tips to their original locations in their tip rack.\n\nThe default is `True`, so you only have to set `trash` when you want the tip\\-returning behavior:\n\n```\npipette.transfer(\n volume=100,\n source=plate[\"A1\"],\n dest=plate[\"B1\"],\n trash=False,\n)\n\n```\n\nNew in version 2\\.0\\.\n\nComplex liquid handling commands combine multiple building block commands into a single method call. These commands make it easier to handle larger groups of wells and repeat actions without having to write your own control flow code. They integrate tip\\-handling behavior and can pick up, use, and drop multiple tips depending on how you want to handle your liquids. They can optionally perform other actions, like adding air gaps, knocking droplets off the tip, mixing, and blowing out excess liquid from the tip.\n\nThere are three complex liquid handling commands, each optimized for a different liquid handling scenario:\n\n> - `InstrumentContext.transfer()`\n> - `InstrumentContext.distribute()`\n> - `InstrumentContext.consolidate()`\n\nPages in this section of the documentation cover:\n\n> - Sources and Destinations: Which wells complex commands aspirate from and dispense to.\n> - Order of Operations: The order of basic commands that are part of a complex commmand.\n> - Complex Liquid Handling Parameters: Additional keyword arguments that affect complex command behavior.\n\nCode samples throughout these pages assume that you\u2019ve loaded the pipettes and labware from the basic protocol template.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1674, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0d614f08-4ea9-4e7f-9251-b35cf32549e5": {"__data__": {"id_": "0d614f08-4ea9-4e7f-9251-b35cf32549e5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fd7af22f-541c-4da0-be81-fac44d754150", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ebfbfdf0e9469345ffb2dd7cd69a306e8d2a2ec891a41769e8fb2a40f8c1802f", "class_name": "RelatedNodeInfo"}}, "text": "Labware and Deck Positions\n\nThe API automatically determines how the robot needs to move when working with the instruments and labware in your protocol. But sometimes you need direct control over these activities. The API lets you do just that. Specifically, you can control movements relative to labware and deck locations. You can also manage the gantry\u2019s speed and trajectory as it traverses the working area. This document explains how to use API commands to take direct control of the robot and position it exactly where you need it.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 540, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b8fe2fb5-e262-498e-a07d-05ad188e6b6e": {"__data__": {"id_": "b8fe2fb5-e262-498e-a07d-05ad188e6b6e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6126b206-1c15-44f6-8d50-00b6ccccb844", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9e2349b801e0a7e64b937e93bc4db328d6eea24941c4b83e7a40c4f6bcc99ad8", "class_name": "RelatedNodeInfo"}}, "text": "Position Relative to Labware\n\nWhen the robot positions itself relative to a piece of labware, where it moves is determined by the labware definition, the actions you want it to perform, and the labware offsets for a specific deck slot. This section describes how these positional components are calculated and how to change them.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 331, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d9f10a91-8e5f-4f4d-8f87-2af269a66b92": {"__data__": {"id_": "d9f10a91-8e5f-4f4d-8f87-2af269a66b92", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "94f7738b-dbba-4421-b9f8-e30b407d68c4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "95d65a2086feae047e3e6961a04971d937a683c4012bc0fbb14c82384d7a9d91", "class_name": "RelatedNodeInfo"}}, "text": "Top, Bottom, and Center\n\nEvery well on every piece of labware has three addressable positions: top, bottom, and center. The position is determined by the labware definition and what the labware is loaded on top of. You can use these positions as\\-is or calculate other positions relative to them.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 298, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd": {"__data__": {"id_": "425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d380bb2c-5c9c-4fae-8701-85992edebf36", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bbba310d92066362bb572f3f29cb7226e00eea4329fa59f84e85091c21627981", "class_name": "RelatedNodeInfo"}}, "text": "Top\n\nLet\u2019s look at the `Well.top()` method. It returns a position level with the top of the well, centered in both horizontal directions.\n\n```\nplate[\"A1\"].top() # the top center of the well\n\n```\n\nThis is a good position to use for a blow out operation or an activity where you don\u2019t want the tip to contact the liquid. In addition, you can adjust the height of this position with the optional argument `z`, which is measured in mm. Positive `z` numbers move the position up, negative `z` numbers move it down.\n\n```\nplate[\"A1\"].top(z=1) # 1 mm above the top center of the well\nplate[\"A1\"].top(z=-1) # 1 mm below the top center of the well\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 669, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bef3b984-31fd-42b0-b39d-8f2fe64fb443": {"__data__": {"id_": "bef3b984-31fd-42b0-b39d-8f2fe64fb443", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2a7bde72-319e-4edc-8264-af5c78526b40", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a6ba75d3bb7cbcea0eb0d846b731b95be64eb0b670182ccbe6e2911032d99487", "class_name": "RelatedNodeInfo"}}, "text": "Bottom\n\nLet\u2019s look at the `Well.bottom()` method. It returns a position level with the bottom of the well, centered in both horizontal directions.\n\n```\nplate[\"A1\"].bottom() # the bottom center of the well\n\n```\n\nThis is a good position for aspirating liquid or an activity where you want the tip to contact the liquid. Similar to the `Well.top()` method, you can adjust the height of this position with the optional argument `z`, which is measured in mm. Positive `z` numbers move the position up, negative `z` numbers move it down.\n\n```\nplate[\"A1\"].bottom(z=1) # 1 mm above the bottom center of the well\nplate[\"A1\"].bottom(z=-1) # 1 mm below the bottom center of the well\n # this may be dangerous!\n\n```\n\nWarning\n\nNegative `z` arguments to `Well.bottom()` will cause the pipette tip to collide with the bottom of the well. Collisions may bend the tip (affecting liquid handling) and the pipette may be higher than expected on the z\\-axis until it picks up another tip.\n\nFlex can detect collisions, and even gentle contact may trigger an overpressure error and cause the protocol to fail. Avoid `z` values less than 1, if possible.\n\nThe OT\\-2 has no sensors to detect contact with a well bottom. The protocol will continue even after a collision.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1295, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "befeab50-a804-46f1-8722-bc31dc6d52e4": {"__data__": {"id_": "befeab50-a804-46f1-8722-bc31dc6d52e4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2834ac84028886176089117388037b52617282ece41ca0e417c6d767e3ac3744", "class_name": "RelatedNodeInfo"}}, "text": "Center\n\nLet\u2019s look at the `Well.center()` method. It returns a position centered in the well both vertically and horizontally. This can be a good place to start for precise control of positions within the well for unusual or custom labware.\n\n```\nplate[\"A1\"].center() # the vertical and horizontal center of the well\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 345, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b67796a6-a9cf-4173-a287-4adff8df6d4b": {"__data__": {"id_": "b67796a6-a9cf-4173-a287-4adff8df6d4b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "dd93519248a9faa876b9b1eb45a06a8e0c7ba0f3362669a916bddbfa2f01306d", "class_name": "RelatedNodeInfo"}}, "text": "Default Positions\n\nBy default, your robot will aspirate and dispense 1 mm above the bottom of wells. This default clearance may not be suitable for some labware geometries, liquids, or protocols. You can change this value by using the `Well.bottom()` method with the `z` argument, though it can be cumbersome to do so repeatedly.\n\nIf you need to change the aspiration or dispensing height for multiple operations, specify the distance in mm from the well bottom with the `InstrumentContext.well_bottom_clearance` object. It has two attributes: `well_bottom_clearance.aspirate` and `well_bottom_clearance.dispense`. These change the aspiration height and dispense height, respectively.\n\nModifying these attributes will affect all subsequent aspirate and dispense actions performed by the attached pipette, even those executed as part of a `transfer()` operation. This snippet from a sample protocol demonstrates how to work with and change the default clearance:\n\n```\n# aspirate 1 mm above the bottom of the well (default)\npipette.aspirate(50, plate[\"A1\"])\n# dispense 1 mm above the bottom of the well (default)\npipette.dispense(50, plate[\"A1\"])\n\n# change clearance for aspiration to 2 mm\npipette.well_bottom_clearance.aspirate = 2\n# aspirate 2 mm above the bottom of the well\npipette.aspirate(50, plate[\"A1\"])\n# still dispensing 1 mm above the bottom\npipette.dispense(50, plate[\"A1\"])\n\npipette.aspirate(50, plate[\"A1\"])\n# change clearance for dispensing to 10 mm\npipette.well_bottom_clearance.dispense = 10\n# dispense high above the well\npipette.dispense(50, plate[\"A1\"])\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1601, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "67b7b9b7-4890-40cc-8c10-e546a2826cba": {"__data__": {"id_": "67b7b9b7-4890-40cc-8c10-e546a2826cba", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5c7600e2-0aaa-476d-b0a9-287364ac394f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "64e698c83740bcff42b5a5b5a2d306f0ca67e03750fe1d33f24538038eb92fe2", "class_name": "RelatedNodeInfo"}}, "text": "Using Labware Position Check\n\nAll positions relative to labware are adjusted automatically based on labware offset data. Calculate labware offsets by running Labware Position Check during protocol setup, either in the Opentrons App or on the Flex touchscreen. Version 6\\.0\\.0 and later of the robot software can apply previously calculated offsets on the same robot for the same labware type and deck slot, even across different protocols.\n\nYou should only adjust labware offsets in your Python code if you plan to run your protocol in Jupyter Notebook or from the command line. See Setting Labware Offsets in the Advanced Control article for information.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 657, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2375910a-0684-4ff8-955d-d8b8b43535d1": {"__data__": {"id_": "2375910a-0684-4ff8-955d-d8b8b43535d1", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "116ab9b4-3b96-4b46-a6e0-881bb74204b2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a1e162fbdade25f437c21801edeffc23ac1df921bc2dc209be5c4738984198fa", "class_name": "RelatedNodeInfo"}}, "text": "Position Relative to Trash Containers\n\nMovement to `TrashBin` or `WasteChute` objects is based on the horizontal _center_ of the pipette. This is different than movement to labware, which is based on the primary channel (the back channel on 8\\-channel pipettes, and the back\\-left channel on 96\\-channel pipettes in default configuration). Using the center of the pipette ensures that all attached tips are over the trash container for blowing out, dropping tips, or other disposal operations.\n\nNote\n\nIn API version 2\\.15 and earlier, trash containers are `Labware` objects that have a single well. See `fixed_trash` and Position Relative to Labware above.\n\nYou can adjust the position of the pipette center with the `TrashBin.top()` and `WasteChute.top()` methods. These methods allow adjustments along the x\\-, y\\-, and z\\-axes. In contrast, `Well.top()`, covered above, only allows z\\-axis adjustment. With no adjustments, the \u201ctop\u201d position is centered on the x\\- and y\\-axes and is just below the opening of the trash container.\n\n```\ntrash = protocol.load_trash_bin(\"A3\")\n\ntrash # pipette center just below trash top center\ntrash.top() # same position\ntrash.top(z=10) # 10 mm higher\ntrash.top(y=10) # 10 mm towards back, default height\n\n```\n\nNew in version 2\\.18\\.\n\nAnother difference between the trash container `top()` methods and `Well.top()` is that they return an object of the same type, not a `Location`. This helps prevent performing undesired actions in trash containers. For example, you can `aspirate()` at a location or from a well, but not from a trash container. On the other hand, you can `blow_out()` at a location, well, trash bin, or waste chute.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1675, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5ee4322d-3a2d-4bc5-9108-537d571eccc6": {"__data__": {"id_": "5ee4322d-3a2d-4bc5-9108-537d571eccc6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "17a7f0db-4838-4fe7-ac91-84a8a186aa47", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bc783fbdda83355910339a1e46481366e0db4df2603e5359a46efa8ee9527cea", "class_name": "RelatedNodeInfo"}}, "text": "Position Relative to the Deck\n\nThe robot\u2019s base coordinate system is known as _deck coordinates_. Many API functions use this coordinate system, and you can also reference it directly. It is a right\\-handed coordinate system always specified in mm, with the origin `(0, 0, 0)` at the front left of the robot. The positive `x` direction is to the right, the positive `y` direction is to the back, and the positive `z` direction is up.\n\nYou can identify a point in this coordinate system with a `types.Location` object, either as a standard Python `tuple`') of three floats, or as an instance of the `namedtuple`') `types.Point`.\n\nNote\n\nThere are technically multiple vertical axes. For example, `z` is the axis of the left pipette mount and `a` is the axis of the right pipette mount. There are also pipette plunger axes: `b` (left) and `c` (right). You usually don\u2019t have to refer to these axes directly, since most motion commands are issued to a particular pipette and the robot automatically selects the correct axis to move. Similarly, `types.Location` only deals with `x`, `y`, and `z` values.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1100, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "59c4c9ed-f963-4760-93b6-dd7c3a97bb54": {"__data__": {"id_": "59c4c9ed-f963-4760-93b6-dd7c3a97bb54", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ca591e43f4a7d9c48ea48e7d0ee03809081cec6c5c8f0fdbd1c7ca04c4ec43c8", "class_name": "RelatedNodeInfo"}}, "text": "Independent Movement\n\nFor convenience, many methods have location arguments and incorporate movement automatically. This section will focus on moving the pipette independently, without performing other actions like `aspirate()` or `dispense()`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 246, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "67cfb681-888c-4ffc-82f5-f02734835b54": {"__data__": {"id_": "67cfb681-888c-4ffc-82f5-f02734835b54", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "18a653a209e47ca1b7f0767a77281380dc562179b73cfb1aa3b527078157f3d4", "class_name": "RelatedNodeInfo"}}, "text": "Move To\n\nThe `InstrumentContext.move_to()` method moves a pipette to any reachable location on the deck. If the pipette has picked up a tip, it will move the end of the tip to that position; if it hasn\u2019t, it will move the pipette nozzle to that position.\n\nThe `move_to()` method requires the `Location` argument. The location can be automatically generated by methods like `Well.top()` and `Well.bottom()` or one you\u2019ve created yourself, but you can\u2019t move a pipette to a well directly:\n\n```\npipette.move_to(plate[\"A1\"]) # error; can't move to a well itself\npipette.move_to(plate[\"A1\"].bottom()) # move to the bottom of well A1\npipette.move_to(plate[\"A1\"].top()) # move to the top of well A1\npipette.move_to(plate[\"A1\"].bottom(z=2)) # move to 2 mm above the bottom of well A1\npipette.move_to(plate[\"A1\"].top(z=-2)) # move to 2 mm below the top of well A1\n\n```\n\nWhen using `move_to()`, by default the pipette will move in an arc: first upwards, then laterally to a position above the target location, and finally downwards to the target location. If you have a reason for doing so, you can force the pipette to move in a straight line to the target location:\n\n```\npipette.move_to(plate[\"A1\"].top(), force_direct=True)\n\n```\n\nWarning\n\nMoving without an arc runs the risk of the pipette colliding with objects on the deck. Be very careful when using this option, especially when moving longer distances.\n\nSmall, direct movements can be useful for working inside of a well, without having the tip exit and re\\-enter the well. This code sample demonstrates how to move the pipette to a well, make direct movements inside that well, and then move on to a different well:\n\n```\npipette.move_to(plate[\"A1\"].top())\npipette.move_to(plate[\"A1\"].bottom(1), force_direct=True)\npipette.move_to(plate[\"A1\"].top(-2), force_direct=True)\npipette.move_to(plate[\"A2\"].top())\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1910, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8698b735-ee66-4b51-8f50-cdb723ee0c48": {"__data__": {"id_": "8698b735-ee66-4b51-8f50-cdb723ee0c48", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b5109216-4f8b-483d-bc75-09ee3d9a3d67", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f631faca96fac2a407fdd5131cc9e2022dc150ab64400c181b813d83809aa5a0", "class_name": "RelatedNodeInfo"}}, "text": "Points and Locations\n\nWhen instructing the robot to move, it\u2019s important to consider the difference between the `Point` and `Location` types.\n\n- Points are ordered tuples or named tuples: `Point(10, 20, 30)`, `Point(x=10, y=20, z=30)`, and `Point(z=30, y=20, x=10)` are all equivalent.\n- Locations are a higher\\-order tuple that combines a point with a reference object: a well, a piece of labware, or `None` (the deck).\n\nThis distinction is important for the `Location.move()` method, which operates on a location, takes a point as an argument, and outputs an updated location. To use this method, include `from opentrons import types` at the start of your protocol. The `move()` method does not mutate the location it is called on, so to perform an action at the updated location, use it as an argument of another method or save it to a variable. For example:\n\n```\n# get the location at the center of well A1\ncenter_location = plate[\"A1\"].center()\n\n# get a location 1 mm right, 1 mm back, and 1 mm up from the center of well A1\nadjusted_location = center_location.move(types.Point(x=1, y=1, z=1))\n\n# aspirate 1 mm right, 1 mm back, and 1 mm up from the center of well A1\npipette.aspirate(50, adjusted_location)\n\n# dispense at the same location\npipette.dispense(50, center_location.move(types.Point(x=1, y=1, z=1)))\n\n```\n\nNote\n\nThe additional `z` arguments of the `top()` and `bottom()` methods (see Position Relative to Labware above) are shorthand for adjusting the top and bottom locations with `move()`. You still need to use `move()` to adjust these positions along the x\\- or y\\-axis:\n\n```\n# the following are equivalent\npipette.move_to(plate[\"A1\"].bottom(z=2))\npipette.move_to(plate[\"A1\"].bottom().move(types.Point(z=2)))\n\n# adjust along the y-axis\npipette.move_to(plate[\"A1\"].bottom().move(types.Point(y=2)))\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1847, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58": {"__data__": {"id_": "e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bbd22630-8de7-4267-adf3-b6aa5c88fab2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6324d1c70e6291cf68b8d8775bb8ae7ce8e8a92ef025b3bf36ef788db9005d81", "class_name": "RelatedNodeInfo"}}, "text": "Movement Speeds\n\nIn addition to instructing the robot where to move a pipette, you can also control the speed at which it moves. Speed controls can be applied either to all pipette motions or to movement along a particular axis.\n\nNote\n\nLike all mechanical systems, Opentrons robots have resonant frequencies that depend on their construction and current configuration. It\u2019s possible to set a speed that causes your robot to resonate, producing louder sounds than typical operation. This is safe, but if you find it annoying, increase or decrease the speed slightly.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 567, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d2f6bd59-18bb-493f-9220-a47f52e372fe": {"__data__": {"id_": "d2f6bd59-18bb-493f-9220-a47f52e372fe", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "aef4bcc2-7867-4303-8aad-2e2a449d5adc", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "92b5d72e30d038e98b8e801205d690f89b697886a9fce82f53f240518f422c56", "class_name": "RelatedNodeInfo"}}, "text": "Gantry Speed\n\nThe robot\u2019s gantry usually moves as fast as it can given its construction. The default speed for Flex varies between 300 and 350 mm/s. The OT\\-2 default is 400 mm/s. However, some experiments or liquids may require slower movements. In this case, you can reduce the gantry speed for a specific pipette by setting `InstrumentContext.default_speed` like this:\n\n```\npipette.move_to(plate[\"A1\"].top()) # move to the first well at default speed\npipette.default_speed = 100 # reduce pipette speed\npipette.move_to(plate[\"D6\"].top()) # move to the last well at the slower speed\n\n```\n\nWarning\n\nThese default speeds were chosen because they\u2019re the maximum speeds that Opentrons knows will work with the gantry. Your robot may be able to move faster, but you shouldn\u2019t increase this value unless instructed by Opentrons Support.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 866, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "778d0172-21c2-42ce-9fd0-d50ddecb9b57": {"__data__": {"id_": "778d0172-21c2-42ce-9fd0-d50ddecb9b57", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d2f565a622415767e0415ef8752726b190d2b0ec89784e1ac5e31286e6adf2e8", "class_name": "RelatedNodeInfo"}}, "text": "Axis Speed Limits\n\nIn addition to controlling the overall gantry speed, you can set speed limits for each of the individual axes: `x` (gantry left/right motion), `y` (gantry forward/back motion), `z` (left pipette up/down motion), and `a` (right pipette up/down motion). Unlike `default_speed`, which is a pipette property, axis speed limits are stored in a protocol property `ProtocolContext.max_speeds`; therefore the `x` and `y` values affect all movements by both pipettes. This property works like a dictionary, where the keys are axes, assigning a value to a key sets a max speed, and deleting a key or setting it to `None` resets that axis\u2019s limit to the default:\n\n```\n protocol.max_speeds[\"x\"] = 50 # limit x-axis to 50 mm/s\n del protocol.max_speeds[\"x\"] # reset x-axis limit\n protocol.max_speeds[\"a\"] = 10 # limit a-axis to 10 mm/s\n protocol.max_speeds[\"a\"] = None # reset a-axis limit\n\n```\n\nNote that `max_speeds` can\u2019t set limits for the pipette plunger axes (`b` and `c`); instead, set the flow rates or plunger speeds as described in Pipette Flow Rates.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1114, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "63186939-9531-4e5d-82d5-3fcf84655976": {"__data__": {"id_": "63186939-9531-4e5d-82d5-3fcf84655976", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "578c62b5-566e-4b6a-9aba-2a47bc4d940b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9d7e8ae84b61e8beb093d69da155b470ec258ce1c015d5574f943669827f512f", "class_name": "RelatedNodeInfo"}}, "text": "Runtime Parameters", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 20, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23fda1f4-7289-49ec-a59f-37a7a607cba0": {"__data__": {"id_": "23fda1f4-7289-49ec-a59f-37a7a607cba0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9b4076de-f213-4e18-8c5d-fd15e2b33525", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "053e04142a570a5e6a9d45e02f51c66b0627d061f90a8e35c42203179d290c6b", "class_name": "RelatedNodeInfo"}}, "text": "Choosing Good Parameters\n\nThe first decision you need to make when adding parameters to your protocol is \u201cWhat should be parameterized?\u201d Your goals in adding parameters should be the following:\n\n1. **Add flexibility.** Accommodate changes from run to run or from lab to lab.\n2. **Work efficiently.** Don\u2019t burden run setup with too many choices or confusing options.\n3. **Avoid errors.** Ensure that every combination of parameters produces an analyzable, runnable protocol.\n\nThe trick to choosing good parameters is reasoning through the choices the protocol\u2019s users may make. If any of them lead to nonsensical outcomes or errors, adjust the parameters \u2014 or how your protocol uses parameter values \u2014 to avoid those situations.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 730, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3fb2305d-b12e-48c4-a356-1600c347320c": {"__data__": {"id_": "3fb2305d-b12e-48c4-a356-1600c347320c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a39bab78ae52d013590390371c4deacf04314aa7d84aafd3488b0ae25610fb3e", "class_name": "RelatedNodeInfo"}}, "text": "Build on a Task\n\nConsider what scientific task is at the heart of your protocol, and build parameters that contribute to, rather than diverge from it.\n\nFor example, it makes sense to add a parameter for number of samples to a DNA prep protocol that uses a particular reagent kit. But it wouldn\u2019t make sense to add a parameter for _which reagent kit_ to use for DNA prep. That kind of parameter would affect so many aspects of the protocol that it would make more sense to maintain a separate protocol for each kit.\n\nAlso consider how a small number of parameters can combine to produce many useful outputs. Take the serial dilution task from the Tutorial as an example. We could add just three parameters to it: number of dilutions, dilution factor, and number of rows. Now that single protocol can produce a whole plate that gradually dilutes, a 2\u00d74 grid that rapidly dilutes, and _thousands_ of other combinations.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 918, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f56976c9-3bd6-444b-9dca-3bf42084a562": {"__data__": {"id_": "f56976c9-3bd6-444b-9dca-3bf42084a562", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4581fd35-6736-41bc-a784-30ec63c244de", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "252ffbdcb6bea17fde1ec4a2b01857b7222540f73741e01e079b399f517cb2d6", "class_name": "RelatedNodeInfo"}}, "text": "Consider Contradictions\n\nHere\u2019s a common time\\-saving use of parameters: your protocol requires a 1\\-channel pipette and an 8\\-channel pipette, but it doesn\u2019t matter which mount they\u2019re attached to. Without parameters, you would have to assign the mounts in your protocol. Then if the robot is set up in the reverse configuration, you\u2019d have to either physically swap the pipettes or modify your protocol.\n\nOne way to get this information is to ask which mount the 1\\-channel pipette is on, and which mount the 8\\-channel pipette is on. But if a technician answers \u201cleft\u201d to both questions \u2014 even by accident \u2014 the API will raise an error, because you can\u2019t load two pipettes on a single mount. It\u2019s no better to flip things around by asking which pipette is on the left mount, and which pipette is on the right mount. Now the technician can say that both mounts have a 1\\-channel pipette. This is even more dangerous, because it _might not_ raise any errors in analysis. The protocol could run \u201csuccessfully\u201d on a robot with two 1\\-channel pipettes, but produce completely unintended results.\n\nThe best way to avoid these contradictions is to collapse the two questions into one, with limited choices. Where are the pipettes mounted? Either the 1\\-channel is on the left and the 8\\-channel on the right, or the 8\\-channel is on the left and the 1\\-channel is on the right. This approach is best for several reasons:\n\n- It avoids analysis errors.\n- It avoids potentially dangerous execution errors.\n- It only requires answering one question instead of two.\n- The phrasing of the question and answer makes it clear that the protocol requires exactly one of each pipette type.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1676, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "95828a01-1119-4b71-946a-c8883f2c5504": {"__data__": {"id_": "95828a01-1119-4b71-946a-c8883f2c5504", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0234af90-0173-4e66-91a9-2619cf5419fe", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "22196c17b8d91923ff949bb21838c0524910efa25a3d8a7c402001e43899df1a", "class_name": "RelatedNodeInfo"}}, "text": "Set Boundaries\n\nNumerical parameters support minimum and maximum values, which you should set to avoid incorrect inputs that are outside of your protocol\u2019s possibile actions.\n\nConsider our earlier example of parameterizing serial dilution. Each of the three numerical parameters have logical upper and lower bounds, which we need to enforce to get sensible results.\n\n- _Number of dilutions_ must be between 0 and 11 on a 96\\-well plate. And it may make sense to require at least 1 dilution.\n- _Dilution factor_ is a ratio, which we can express as a decimal number that must be between 0 and 1\\.\n- _Number of rows_ must be between 1 and 8 on a 96\\-well plate.\n\nWhat if you wanted to perform a dilution with 20 repetitions? It\u2019s possible with two 96\\-well plates, or with a 384\\-well plate. You could set the maximum for the number of dilutions to 24 and allow for these possibilities \u2014 either switching the plate type or loading an additional plate based on the provided value.\n\nBut what if the technician wanted to do just 8 repetitions on a 384\\-well plate? That would require an additional parameter, an additional choice by the technician, and additional logic in your protocol code. It\u2019s up to you as the protocol author to decide if adding more parameters will make protocol setup overly difficult. Sometimes it\u2019s more efficient to work with two or three simple protocols rather than one that\u2019s long and complex.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "27e555a1-e899-4710-b03c-4fb670054999": {"__data__": {"id_": "27e555a1-e899-4710-b03c-4fb670054999", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c4871e12-b268-4e58-8beb-c71f7240f4d8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2b954ed9407856bbb0f8c40f42c2a69a96e11342f67d692095b39238130cd60c", "class_name": "RelatedNodeInfo"}}, "text": "Defining Parameters\n\nTo use parameters, you need to define them in a separate function within your protocol. Each parameter definition has two main purposes: to specify acceptable values, and to inform the protocol user what the parameter does.\n\nDepending on the type of parameter, you\u2019ll need to specify some or all of the following.\n\n| Attribute | Details |\n| ----------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |\n| `variable_name` | _ A unique name for referencing the parameter value elsewhere in the protocol. _ Must meet the usual requirements for naming objects in Python. |\n| `display_name` | _ A label for the parameter shown in the Opentrons App or on the touchscreen. _ Maximum 30 characters. |\n| `description` | _ An optional longer explanation of what the parameter does, or how its values will affect the execution of the protocol. _ Maximum 100 characters. |\n| `default` | \\* The value the parameter will have if the technician makes no changes to it during run setup. |\n| `minimum` and `maximum` | _ For numeric parameters only. _ Allows free entry of any value within the range (inclusive). _ Both values are required. _ Can\u2019t be used at the same time as `choices`. |\n| `choices` | _ For numeric or string parameters. _ Provides a fixed list of values to choose from. _ Each choice has its own display name and value. _ Can\u2019t be used at the same time as `minimum` and `maximum`. |\n| `units` | _ Optional, for numeric parameters with `minimum` and `maximum` only. _ Displays after the number during run setup. _ Does not affect the parameter\u2019s value or protocol execution. _ Maximum 10 characters. |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2679, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "772005e7-7276-43a5-b3ba-42c7290f0c36": {"__data__": {"id_": "772005e7-7276-43a5-b3ba-42c7290f0c36", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "30a1d203e62ebba8450bd56f1d035c927cc719dc32e2ef0fc62c4edd1dbdd260", "class_name": "RelatedNodeInfo"}}, "text": "The `add_parameters()` Function\n\nAll parameter definitions are contained in a Python function, which must be named `add_parameters` and takes a single argument. Define `add_parameters()` before the `run()` function that contains protocol commands.\n\nThe examples on this page assume the following definition, which uses the argument name `parameters`. The type specification of the argument is optional.\n\n```\ndef add_parameters(parameters: protocol_api.Parameters):\n\n```\n\nWithin this function definition, call methods on `parameters` to define parameters. The next section demonstrates how each type of parameter has its own method.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 633, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f69522d9-1b62-4924-a6ec-c4aa281058da": {"__data__": {"id_": "f69522d9-1b62-4924-a6ec-c4aa281058da", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6255259a-15ae-46af-9cff-b8c237f91979", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "eb5b073ea65bc1c98bf4d12a9a03c802aa163b8eaee43e8619cc03236f1612b0", "class_name": "RelatedNodeInfo"}}, "text": "Types of Parameters\n\nThe API supports four types of parameters: Boolean (`bool`')), integer (`int`')), floating point number (`float`')), and string (`str`')). It is not possible to mix types within a single parameter.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 220, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ddef57cf-090c-4585-aa1d-49e2a1e6748b": {"__data__": {"id_": "ddef57cf-090c-4585-aa1d-49e2a1e6748b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "51358090-0de4-472b-8270-27418c9f50f1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3d2d9b2685b5ef7f9242be6b23c96be2436016ed5576f173f2dd540e702dae5e", "class_name": "RelatedNodeInfo"}}, "text": "Boolean Parameters\n\nBoolean parameters are `True` or `False` only.\n\n```\nparameters.add_bool(\n variable_name=\"dry_run\",\n display_name=\"Dry Run\",\n description=\"Skip incubation delays and shorten mix steps.\",\n default=False\n)\n\n```\n\nDuring run setup, the technician can toggle between the two values. In the Opentrons App, Boolean parameters appear as a toggle switch. On the touchscreen, they appear as _On_ or _Off_, for `True` and `False` respectively.\n\nNew in version 2\\.18\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 489, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "50c21c11-745d-4649-9456-0b291bf29d19": {"__data__": {"id_": "50c21c11-745d-4649-9456-0b291bf29d19", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "24a26843-fa30-4ebf-b858-3a378bde9613", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bc9996f551d45850b061f877cb170a884981da8cdc50d2c47f7892cd60b02526", "class_name": "RelatedNodeInfo"}}, "text": "Integer Parameters\n\nInteger parameters either accept a range of numbers or a list of numbers. You must specify one or the other; you can\u2019t create an open\\-ended prompt that accepts any integer.\n\nTo specify a range, include `minimum` and `maximum`.\n\n```\nparameters.add_int(\n variable_name=\"volume\",\n display_name=\"Aspirate volume\",\n description=\"How much to aspirate from each sample.\",\n default=20,\n minimum=10,\n maximum=100,\n unit=\"\u00b5L\"\n)\n\n```\n\nDuring run setup, the technician can enter any integer value from the minimum up to the maximum. Entering a value outside of the range will show an error. At that point, they can correct their custom value or restore the default value.\n\nTo specify a list of numbers, include `choices`. Each choice is a dictionary with entries for display name and value. The display names let you briefly explain the effect each choice will have.\n\n```\nparameters.add_int(\n variable_name=\"volume\",\n display_name=\"Aspirate volume\",\n description=\"How much to aspirate from each sample.\",\n default=20,\n choices=[\n {\"display_name\": \"Low (10 \u00b5L)\", \"value\": 10},\n {\"display_name\": \"Medium (20 \u00b5L)\", \"value\": 20},\n {\"display_name\": \"High (50 \u00b5L)\", \"value\": 50},\n ]\n)\n\n```\n\nDuring run setup, the technician can choose from a menu of the provided choices.\n\nNew in version 2\\.18\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1360, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "23b7a614-0705-4541-905b-6ef766812a2a": {"__data__": {"id_": "23b7a614-0705-4541-905b-6ef766812a2a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3117244e-bff6-4c32-b6d3-b8c25474aa23", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7b79f080d946f684480bf0b36ed04d7b72fcd560d8235618200d08e96498c5af", "class_name": "RelatedNodeInfo"}}, "text": "Float Parameters\n\nFloat parameters either accept a range of numbers or a list of numbers. You must specify one or the other; you can\u2019t create an open\\-ended prompt that accepts any floating point number.\n\nSpecifying a range or list is done exactly the same as in the integer examples above. The only difference is that all values must be floating point numbers.\n\n```\nparameters.add_float(\n variable_name=\"volume\",\n display_name=\"Aspirate volume\",\n description=\"How much to aspirate from each sample.\",\n default=5.0,\n choices=[\n {\"display_name\": \"Low (2.5 \u00b5L)\", \"value\": 2.5},\n {\"display_name\": \"Medium (5 \u00b5L)\", \"value\": 5.0},\n {\"display_name\": \"High (10 \u00b5L)\", \"value\": 10.0},\n ]\n)\n\n```\n\nNew in version 2\\.18\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 750, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fec6b74a-2339-487b-bd6f-71fdec66b791": {"__data__": {"id_": "fec6b74a-2339-487b-bd6f-71fdec66b791", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fce78388-527a-4613-b394-acf00394ed64", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "01bb3648ae7dc32b6c652678415e5ddfb6e0eba2d768d1a8716dd033f2adc459", "class_name": "RelatedNodeInfo"}}, "text": "String Parameters\n\nString parameters only accept a list of values. You can\u2019t currently prompt for free text entry of a string value.\n\nTo specify a list of strings, include `choices`. Each choice is a dictionary with entries for display name and value. Only the display name will appear during run setup.\n\nA common use for string display names is to provide an easy\\-to\\-read version of an API load name. You can also use them to briefly explain the effect each choice will have.\n\n```\nparameters.add_str(\n variable_name=\"pipette\",\n display_name=\"Pipette type\",\n choices=[\n {\"display_name\": \"1-Channel 50 \u00b5L\", \"value\": \"flex_1channel_50\"},\n {\"display_name\": \"8-Channel 50 \u00b5L\", \"value\": \"flex_8channel_50\"},\n ],\n default=\"flex_1channel_50\",\n)\n\n```\n\nDuring run setup, the technician can choose from a menu of the provided choices.\n\nNew in version 2\\.18\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 881, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "bead822c-bd11-4d9e-a811-2e377bf32cc0": {"__data__": {"id_": "bead822c-bd11-4d9e-a811-2e377bf32cc0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "02f8ebfe-5498-4788-add6-913a59d7f92b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3a942fcc3ca80b4e5820a9bdf6cfc477ccee48976cecb7c782b1cee468de97db", "class_name": "RelatedNodeInfo"}}, "text": "Using Parameters\n\nOnce you\u2019ve defined parameters, their values are accessible anywhere within the `run()` function of your protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 134, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "7ac58128-4d5a-455e-a473-58d1e7958af6": {"__data__": {"id_": "7ac58128-4d5a-455e-a473-58d1e7958af6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "61379e76-3b4f-46ca-aa98-5fff36e5049a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f4e4396fef22f3b186a23673dd8b7026477ba7240e1372e9338c2a46414f1f45", "class_name": "RelatedNodeInfo"}}, "text": "The `params` Object\n\nProtocols with parameters have a `ProtocolContext.params` object, which contains the values of all parameters as set during run setup. Each attribute of `params` corresponds to the `variable_name` of a parameter.\n\nFor example, consider a protocol that defines the following three parameters:\n\n- `add_bool` with `variable_name=\"dry_run\"`\n- `add_int` with `variable_name=\"sample_count\"`\n- `add_float` with `variable_name=\"volume\"`\n\nThen `params` will gain three attributes: `params.dry_run`, `params.sample_count`, and `params.volume`. You can use these attributes anywhere you want to access their values, including directly as arguments of methods.\n\n```\nif protocol.params.dry_run is False:\n pipette.mix(repetitions=10, volume=protocol.params.volume)\n\n```\n\nYou can also save parameter values to variables with names of your choosing.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 859, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0314465c-4399-4d05-87d5-4cedf3250956": {"__data__": {"id_": "0314465c-4399-4d05-87d5-4cedf3250956", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c0934b85-61ce-4bfb-807d-d698d29af649", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "456307ecc2c8b2db4bc5ca47d0865c18189eec403e2c9cde697311cd6e0b7a50", "class_name": "RelatedNodeInfo"}}, "text": "Parameter Types\n\nEach attribute of `params` has the type corresponding to its parameter definition. Keep in mind the parameter\u2019s type when using its value in different contexts.\n\nSay you wanted to add a comment to the run log, stating how many samples the protocol will process. Since `sample_count` is an `int`, you\u2019ll need to cast it to a `str` or the API will raise an error.\n\n```\nprotocol.comment(\n \"Processing \" + str(protocol.params.sample_count) + \" samples.\"\n)\n\n```\n\nAlso be careful with `int` types when performing calculations: dividing an `int` by an `int` with the `/` operator always produces a `float`, even if there is no remainder. The sample count use case converts a sample count to a column count by dividing by 8 \u2014 but it uses the `//` integer division operator, so the result can be used for creating ranges, slicing lists, and as `int` argument values without having to cast it in those contexts.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 923, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "80067795-fb75-46ce-bf5a-61015161aa5e": {"__data__": {"id_": "80067795-fb75-46ce-bf5a-61015161aa5e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b772fbd8-ea12-4ef4-8cad-a1f31386851f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "209727c34deb7c55be6b69f0b50b49f6ee76ea9e9f870de6cc99e76ab2e68a7b", "class_name": "RelatedNodeInfo"}}, "text": "Limitations\n\nSince `params` is only available within the `run()` function, there are certain aspects of a protocol that parameter values can\u2019t affect. These include, but are not limited to the following:\n\n| Information | Location |\n| -------------------------------- | ----------------------------------------------- |\n| `import` statements | At the beginning of the protocol. |\n| Robot type (Flex or OT\\-2\\) | In the `requirements` dictionary. |\n| API version | In the `requirements` or `metadata` dictionary. |\n| Protocol name | In the `metadata` dictionary. |\n| Protocol description | In the `metadata` dictionary. |\n| Protocol author | In the `metadata` dictionary. |\n| Other runtime parameters | In the `add_parameters()` function. |\n| Non\\-nested function definitions | Anywhere outside of `run()`. |\n\nAdditionally, keep in mind that updated parameter values are applied by reanalyzing the protocol. This means you can\u2019t depend on updated values for any action that takes place _prior to reanalysis_.\n\nAn example of such an action is applying labware offset data. Say you have a parameter that changes the type of well plate you load in a particular slot:\n\n```\n# within add_parameters()\nparameters.add_str(\n variable_name=\"plate_type\",\n display_name=\"Well plate type\",\n choices=[\n {\"display_name\": \"Corning\", \"value\": \"corning_96_wellplate_360ul_flat\"},\n {\"display_name\": \"NEST\", \"value\": \"nest_96_wellplate_200ul_flat\"},\n ],\n default=\"corning_96_wellplate_360ul_flat\",\n)\n\n# within run()\nplate = protocol.load_labware(\n load_name=protocol.params.plate_type, location=\"D2\"\n)\n\n```\n\nWhen performing run setup, you\u2019re prompted to apply offsets before selecting parameter values. This is your only opportunity to apply offsets, so they\u2019re applied for the default parameter values \u2014 in this case, the Corning plate. If you then change the \u201cWell plate type\u201d parameter to the NEST plate, the NEST plate will have default offset values (0\\.0 on all axes). You can fix this by running Labware Position Check, since it takes place after reanalysis, or by using `Labware.set_offset()` in your protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2398, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "16606eae-35ef-4e6f-97a5-f80ad56958ee": {"__data__": {"id_": "16606eae-35ef-4e6f-97a5-f80ad56958ee", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ea62f547-cf29-43cc-81b7-f2b7fc01dc89", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8561992a821dbc0e5db8faeae5fe0017df742598cf36362b227f7f8457555f5b", "class_name": "RelatedNodeInfo"}}, "text": "Parameter Use Case \u2013 Sample Count\n\nChoosing how many samples to process is important for efficient automation. This use case explores how a single parameter for sample count can have pervasive effects throughout a protocol. The examples are adapted from an actual parameterized protocol for DNA prep. The sample code will use 8\\-channel pipettes to process 8, 16, 24, or 32 samples.\n\nAt first glance, it might seem like sample count would primarily affect liquid transfers to and from sample wells. But when using the Python API\u2019s full range of capabilities, it affects:\n\n- How many tip racks to load.\n- The initial volume and placement of reagents.\n- Pipetting to and from samples.\n- If and when tip racks need to be replaced.\n\nTo keep things as simple as possible, this use case only focuses on setting up and using the value of the sample count parameter, which is just one of several parameters present in the full protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 930, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "da93de1b-e8c4-4faf-9df5-0304aa74c9c0": {"__data__": {"id_": "da93de1b-e8c4-4faf-9df5-0304aa74c9c0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "db065740-e8df-4964-8479-19a07336f6a6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "520d10e7541586364d50acc80b221504910112e14fc69383bcc9e81178d55b2e", "class_name": "RelatedNodeInfo"}}, "text": "From Samples to Columns\n\nFirst of all, we need to set up the sample count parameter so it\u2019s both easy for technicians to understand during protocol setup and easy for us to use in the protocol\u2019s `run()` function.\n\nWe want to limit the number of samples to 8, 16, 24, or 32, so we\u2019ll use an integer parameter with choices:\n\n```\ndef add_parameters(parameters):\n\n parameters.add_int(\n variable_name=\"sample_count\",\n display_name=\"Sample count\",\n description=\"Number of input DNA samples.\",\n default=24,\n choices=[\n {\"display_name\": \"8\", \"value\": 8},\n {\"display_name\": \"16\", \"value\": 16},\n {\"display_name\": \"24\", \"value\": 24},\n {\"display_name\": \"32\", \"value\": 32},\n ]\n )\n\n```\n\nAll of the possible values are multiples of 8, because the protocol will use an 8\\-channel pipette to process an entire column of samples at once. Considering how 8\\-channel pipettes access wells, it may be more useful to operate with a _column count_ in code. We can set a `column_count` very early in the `run()` function by accessing the value of `params.sample_count` and dividing it by 8:\n\n```\ndef run(protocol):\n\n column_count = protocol.params.sample_count // 8\n\n```\n\nMost examples below will use `column_count`, rather than redoing (and retyping!) this calculation multiple times.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1358, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5472cd78-c030-4815-a2f1-33245f14f018": {"__data__": {"id_": "5472cd78-c030-4815-a2f1-33245f14f018", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a706ed189e3a01f96edf950c2bc3c562a747760e7a89db743fb9ca6730f2f311", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f", "node_type": "1", "metadata": {}, "hash": "deb12c640da1fdba9044eb7f6c39ecd8f36eba61ca880b796292419fc3b8dffc", "class_name": "RelatedNodeInfo"}}, "text": "Loading Tip Racks\n\nTip racks come first in most protocols. To ensure that the protocol runs to completion, we need to load enough tip racks to avoid running out of tips.\n\nWe could load as many tip racks as are needed for our maximum number of samples, but that would be suboptimal. Run setup is faster when the technician doesn\u2019t have to load extra items onto the deck. So it\u2019s best to examine the protocol\u2019s steps and determine how many racks are needed for each value of `sample_count`.\n\nIn the case of this DNA prep protocol, we can create formulas for the number of 200 \u00b5L and 50 \u00b5L tip racks needed. The following factors go into these computations:\n\n- 50 \u00b5L tips\n - 1 fixed action that picks up once per protocol.\n - 7 variable actions that pick up once per sample column.\n- 200 \u00b5L tips\n - 2 fixed actions that pick up once per protocol.\n - 11 variable actions that pick up once per sample column.\n\nSince each tip rack has 12 columns, divide the number of pickup actions by 12 to get the number of racks needed. And we always need to round up \u2014 performing 13 pickups requires 2 racks. The `math.ceil()`') method rounds up to the nearest integer. We\u2019ll add `from math import ceil` at the top of the protocol and then calculate the number of tip racks as follows:\n\n```\ntip_rack_50_count = ceil((1 + 7 * column_count) / 12)\ntip_rack_200_count = ceil((2 + 13 * column_count) / 12)\n\n```\n\nRunning the numbers shows that the maximum combined number of tip racks is 7\\. Now we have to decide where to load up to 7 racks, working around the modules and other labware on the deck. Assuming we\u2019re running this protocol on a Flex with staging area slots, they\u2019ll all fit! (If you don\u2019t have staging area slots, you can load labware off\\-deck instead.) We\u2019ll reserve these slots for the different size racks:\n\n```\ntip_rack_50_slots = [\"B3\", \"C3\", \"B4\"]\ntip_rack_200_slots = [\"A2\", \"B2\", \"A3\", \"A4\"]\n\n```\n\nFinally, we can combine this information to call `load_labware()`. Depending on the number of racks needed, we\u2019ll slice that number of elements from the slot list and use a list comprehension to gather up the loaded tip racks. For the 50 \u00b5L tips, this would look like:\n\n```\ntip_racks_50 = [\n protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_50ul\",\n location=slot\n )\n for slot in tip_rack_50_slots[:tip_rack_50_count]\n]\n\n```\n\nThen we can associate those lists of tip racks directly with each pipette as we load them.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2454, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f": {"__data__": {"id_": "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ac4b8d89-3ebd-45c6-8a42-38db55090244", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a706ed189e3a01f96edf950c2bc3c562a747760e7a89db743fb9ca6730f2f311", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "5472cd78-c030-4815-a2f1-33245f14f018", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e555720f586428f53874e6d54e81a20ca8b02bcb5e89a82e87520470573cf24c", "class_name": "RelatedNodeInfo"}}, "text": "We\u2019ll reserve these slots for the different size racks:\n\n```\ntip_rack_50_slots = [\"B3\", \"C3\", \"B4\"]\ntip_rack_200_slots = [\"A2\", \"B2\", \"A3\", \"A4\"]\n\n```\n\nFinally, we can combine this information to call `load_labware()`. Depending on the number of racks needed, we\u2019ll slice that number of elements from the slot list and use a list comprehension to gather up the loaded tip racks. For the 50 \u00b5L tips, this would look like:\n\n```\ntip_racks_50 = [\n protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_50ul\",\n location=slot\n )\n for slot in tip_rack_50_slots[:tip_rack_50_count]\n]\n\n```\n\nThen we can associate those lists of tip racks directly with each pipette as we load them. All together, the start of our `run()` function looks like this:\n\n```\n# calculate column count from sample count\ncolumn_count = protocol.params.sample_count // 8\n\n# calculate number of required tip racks\ntip_rack_50_count = ceil((1 + 7 * column_count) / 12)\ntip_rack_200_count = ceil((2 + 13 * column_count) / 12)\n\n# assign tip rack locations (maximal case)\ntip_rack_50_slots = [\"B3\", \"C3\", \"B4\"]\ntip_rack_200_slots = [\"A2\", \"B2\", \"A3\", \"A4\"]\n\n# create lists of loaded tip racks\n# limit to number of needed racks for each type\ntip_racks_50 = [\n protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_50ul\",\n location=slot\n )\n for slot in tip_rack_50_slots[:tip_rack_50_count]\n]\ntip_racks_200 = [\n protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=slot\n )\n for slot in tip_rack_200_slots[:tip_rack_200_count]\n]\n\npipette_50 = protocol.load_instrument(\n instrument_name=\"flex_8channel_50\",\n mount=\"right\",\n tip_racks=tip_racks_50\n)\npipette_1000 = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=tip_racks_200\n)\n\n```\n\nThis code will load as few as 3 tip racks and as many as 7, and associate them with the correct pipettes \u2014 all based on a single choice from a dropdown menu at run setup.", "mimetype": "text/plain", "start_char_idx": 1752, "end_char_idx": 3781, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "40fa34fe-7285-477b-a1c6-5cb2550a84fc": {"__data__": {"id_": "40fa34fe-7285-477b-a1c6-5cb2550a84fc", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6f93e1d4-5464-4054-8830-2ac07c97ef87", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "49bd312603e37158f63050bc1d681c6e5bd984303f1f95ccbfd321fb850e3ce5", "class_name": "RelatedNodeInfo"}}, "text": "Loading Liquids\n\nNext come the reagents, samples, and the labware that holds them.\n\nThe required volume of each reagent is dependent on the sample count. While the full protocol defines more than ten liquids, we\u2019ll show three reagents plus the samples here.\n\nFirst, let\u2019s load a reservoir and define the three example liquids. Definitions only specify the name, description, and display color, so our sample count parameter doesn\u2019t come into play yet:\n\n```\n# labware to hold reagents\nreservoir = protocol.load_labware(\n load_name=\"nest_12_reservoir_15ml\", location=\"C2\"\n)\n\n# reagent liquid definitions\nampure_liquid = protocol.define_liquid(\n name=\"AMPure\", description=\"AMPure Beads\", display_color=\"#704848\"\n)\ntagstop_liquid = protocol.define_liquid(\n name=\"TAGSTOP\", description=\"Tagmentation Stop\", display_color=\"#FF0000\"\n)\ntwb_liquid = protocol.define_liquid(\n name=\"TWB\", description=\"Tagmentation Wash Buffer\", display_color=\"#FFA000\"\n)\n\n```\n\nNow we\u2019ll bring sample count into consideration as we load the liquids. The application requires the following volumes for each column of samples:\n\n| Liquid | Volume (\u00b5L per column) |\n| ------------------------ | ---------------------- |\n| AMPure Beads | 180 |\n| Tagmentation Stop | 10 |\n| Tagmentation Wash Buffer | 900 |\n\nTo calculate the total volume for each liquid, we\u2019ll multiply these numbers by `column_count` and by 1\\.1 (to ensure that the pipette can aspirate the required volume without drawing in air at the bottom of the well). This calculation can be done inline as the `volume` value of `load_liquid()`:\n\n```\nreservoir[\"A1\"].load_liquid(\n liquid=ampure_liquid, volume=180 * column_count * 1.1\n)\nreservoir[\"A2\"].load_liquid(\n liquid=tagstop_liquid, volume=10 * column_count * 1.1\n)\nreservoir[\"A4\"].load_liquid(\n liquid=twb_liquid, volume=900 * column_count * 1.1\n)\n\n```\n\nNow, for example, the volume of AMPure beads to load will vary from 198 \u00b5L for a single sample column up to 792 \u00b5L for four columns.\n\nTip\n\nDoes telling a technician to load 792 \u00b5L of a liquid seem overly precise? Remember that you can perform any calculation you like to set the value of `volume`! For example, you could round the AMPure volume up to the nearest 10 \u00b5L:\n\n```\nvolume=ceil((180 * column_count * 1.1) / 10) * 10\n\n```\n\nFinally, it\u2019s good practice to label the wells where the samples reside. The sample plate starts out atop the Heater\\-Shaker Module:\n\n```\nhs_mod = protocol.load_module(\n module_name=\"heaterShakerModuleV1\", location=\"D1\"\n)\nhs_adapter = hs_mod.load_adapter(name=\"opentrons_96_pcr_adapter\")\nsample_plate = hs_adapter.load_labware(\n name=\"opentrons_96_wellplate_200ul_pcr_full_skirt\",\n label=\"Sample Plate\",\n)\n\n```\n\nNow we can construct a `for` loop to label each sample well with `load_liquid()`. The simplest way to do this is to combine our original _sample count_ with the fact that the `Labware.wells()` accessor returns wells top\\-to\\-bottom, left\\-to\\-right:\n\n```\n# define sample liquid\nsample_liquid = protocol.define_liquid(\n name=\"Samples\", description=None, display_color=\"#52AAFF\"\n)\n\n# load 40 \u00b5L in each sample well\nfor w in range(protocol.params.sample_count):\n sample_plate.wells()[w].load_liquid(liquid=sample_liquid, volume=40)\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3346, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f": {"__data__": {"id_": "2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ac9c4050-8ae6-4110-b0cd-29a61aec89eb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a9d6f451cd0250a63f8bc2867ebea7836ff727ed9a5dc5e1652f392e6db6291e", "class_name": "RelatedNodeInfo"}}, "text": "Processing Samples\n\nWhen it comes time to process the samples, we\u2019ll return to working by column, since the protocol uses an 8\\-channel pipette. There are many pipetting stages in the full protocol, but this section will examine just the stage for adding the Tagmentation Stop liquid. The same techniques would apply to similar stages.\n\nFor pipetting in the original sample locations, we\u2019ll command the 50 \u00b5L pipette to move to some or all of A1\u2013A4 on the sample plate. Similar to when we loaded tip racks earlier, we can use `column_count` to slice a list containing these well names, and then iterate over that list with a `for` loop:\n\n```\nfor w in [\"A1\", \"A2\", \"A3\", \"A4\"][:column_count]:\n pipette_50.pick_up_tip()\n pipette_50.aspirate(volume=13, location=reservoir[\"A2\"].bottom())\n pipette_50.dispense(volume=3, location=reservoir[\"A2\"].bottom())\n pipette_50.dispense(volume=10, location=sample_plate[w].bottom())\n pipette_50.move_to(location=sample_plate[w].bottom())\n pipette_50.mix(repetitions=10, volume=20)\n pipette_50.blow_out(location=sample_plate[w].top(z=-2))\n pipette_50.drop_tip()\n\n```\n\nEach time through the loop, the pipette will fill from the same well of the reservoir and then dispense (and mix and blow out) in a different column of the sample plate.\n\nLater steps of the protocol will move intermediate samples to the middle of the plate (columns 5\u20138\\) and final samples to the right side of the plate (columns 9\u201312\\). When moving directly from one set of columns to another, we have to track _both lists_ with the `for` loop. The `zip()`') function lets us pair up the lists of well names and step through them in parallel:\n\n```\nfor initial, intermediate in zip(\n [\"A1\", \"A2\", \"A3\", \"A4\"][:column_count],\n [\"A5\", \"A6\", \"A7\", \"A8\"][:column_count],\n):\n pipette_50.pick_up_tip()\n pipette_50.aspirate(volume=13, location=sample_plate[initial])\n pipette_50.dispense(volume=13, location=sample_plate[intermediate])\n pipette_50.drop_tip()\n\n```\n\nThis will transfer from column 1 to 5, 2 to 6, and so on \u2014 depending on the number of samples chosen during run setup.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2122, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b69caf6b-5590-4518-a963-d1998db8440a": {"__data__": {"id_": "b69caf6b-5590-4518-a963-d1998db8440a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "281ee50b-5a60-45d4-8a7a-aa7193e18dc1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f57d65998563fc3c0df1cb1058c7d3b9aeff28840732ecbaf4e9fa96ae7cc1d7", "class_name": "RelatedNodeInfo"}}, "text": "Replenishing Tips\n\nFor the higher values of `protocol.params.sample_count`, the protocol will load tip racks in the staging area slots (column 4\\). Since pipettes can\u2019t reach these slots, we need to move these tip racks into the working area (columns 1\u20133\\) before issuing a pipetting command that targets them, or the API will raise an error.\n\nA protocol without parameters will always run out of tips at the same time \u2014 just add a `move_labware()` command when that happens. But as we saw in the Processing Samples section above, our parameterized protocol will go through tips at a different rate depending on the sample count.\n\nIn our simplified example, we know that when the sample count is 32, the first 200 \u00b5L tip rack will be exhausted after three stages of pipetting using the 1000 \u00b5L pipette. So, after that step, we could add:\n\n```\nif protocol.params.sample_count == 32:\n protocol.move_labware(\n labware=tip_racks_200[0],\n new_location=chute,\n use_gripper=True,\n )\n protocol.move_labware(\n labware=tip_racks_200[-1],\n new_location=\"A2\",\n use_gripper=True,\n )\n\n```\n\nThis will replace the first 200 \u00b5L tip rack (in slot A2\\) with the last 200 \u00b5L tip rack (in the staging area).\n\nHowever, in the full protocol, sample count is not the only parameter that affects the rate of tip use. It would be unwieldy to calculate in advance all the permutations of when tip replenishment is necessary. Instead, before each stage of the protocol, we could use `Well.has_tip()` to check whether the first tip rack is empty. If the _last well_ of the rack is empty, we can assume that the entire rack is empty and needs to be replaced:\n\n```\nif tip_racks_200[0].wells()[-1].has_tip is False:\n # same move_labware() steps as above\n\n```\n\nFor a protocol that uses tips at a faster rate than this one \u2014 such that it might exhaust a tip rack in a single `for` loop of pipetting steps \u2014 you may have to perform such checks even more frequently. You can even define a function that counts tips or performs `has_tip` checks in combination with picking up a tip, and use that instead of `pick_up_tip()` every time you pipette. The built\\-in capabilities of Python and the methods of the Python Protocol API give you the flexibility to add this kind of smart behavior to your protocols.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2327, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830": {"__data__": {"id_": "0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6b7a9e53-5661-441a-832b-75efd2b7b287", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "dee414bb57193b2bb00898de92579db679eb64fc0a2cf59ed8279abca8482226", "class_name": "RelatedNodeInfo"}}, "text": "Parameter Use Case \u2013 Dry Run\n\nWhen testing out a new protocol, it\u2019s common to perform a dry run to watch your robot go through all the steps without actually handling samples or reagents. This use case explores how to add a single Boolean parameter for whether you\u2019re performing a dry run.\n\nThe code examples will show how this single value can control:\n\n- Skipping module actions and long delays.\n- Reducing mix repetitions to save time.\n- Returning tips (that never touched any liquid) to their racks.\n\nTo keep things as simple as possible, this use case only focuses on setting up and using the value of the dry run parameter, which could be just one of many parameters in a complete protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 698, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f1790d38-4768-4282-acf3-32ea03ee760f": {"__data__": {"id_": "f1790d38-4768-4282-acf3-32ea03ee760f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "47229daf-7ed7-4391-a744-ad1691bc03a9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e1072536d03b095a12561676301f26619d99fe3a88abc4bcd0244cda4cc23d9c", "class_name": "RelatedNodeInfo"}}, "text": "Dry Run Definition\n\nFirst, we need to set up the dry run parameter. We want to set up a simple yes/no choice for the technician running the protocol, so we\u2019ll use a Boolean parameter:\n\n```\ndef add_parameters(parameters):\n\n parameters.add_bool(\n variable_name=\"dry_run\",\n display_name=\"Dry Run\",\n description=(\n \"Skip delays,\"\n \" shorten mix steps,\"\n \" and return tips to their racks.\"\n ),\n default=False\n )\n\n```\n\nThis parameter is set to `False` by default, assuming that most runs will be live runs. In other words, during run setup the technician will have to change the parameter setting to perform a dry run. If they leave it as is, the robot will perform a live run.\n\nAdditionally, since \u201cdry run\u201d can have different meanings in different contexts, it\u2019s important to include a `description` that indicates exactly what the parameter will control \u2014 in this case, three things. The following sections will show how to accomplish each of those when the dry run parameter is set to `True`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1066, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4663c078-0471-4f17-b704-37a847b3578a": {"__data__": {"id_": "4663c078-0471-4f17-b704-37a847b3578a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5e1a60814a153add9b4c192202f62db51346808a7f89047f09e8775db55cf0d9", "class_name": "RelatedNodeInfo"}}, "text": "Skipping Delays\n\nMany protocols have built\\-in delays, either for a module to work or to let a reaction happen passively. Lengthy delays just get in the way when verifying a protocol with a dry run. So wherever the protocol calls for a delay, we can check the value of `protocol.params.dry_run` and make the protocol behave accordingly.\n\nTo start, let\u2019s consider a simple `delay()` command. We can wrap it in an `if` statement such that the delay will only execute when the run is _not_ a dry run:\n\n```\nif protocol.params.dry_run is False:\n protocol.delay(minutes=5)\n\n```\n\nYou can extend this approach to more complex situations, like module interactions. For example, in a protocol that moves a plate to the Thermocycler for an incubation, you\u2019ll want to perform all the movement steps \u2014 opening and closing the module lid, and moving the plate to and from the block \u2014 but skip the heating and cooling time. The simplest way to do this is, like in the delay example above, to wrap each skippable command:\n\n```\nprotocol.move_labware(labware=plate, new_location=tc_mod, use_gripper=True)\nif protocol.params.dry_run is False:\n tc_mod.set_block_temperature(4)\n tc_mod.set_lid_temperature(100)\ntc_mod.close_lid()\npcr_profile = [\n {\"temperature\": 68, \"hold_time_seconds\": 180},\n {\"temperature\": 98, \"hold_time_seconds\": 180},\n]\nif protocol.params.dry_run is False:\n tc_mod.execute_profile(\n steps=pcr_profile, repetitions=1, block_max_volume=50\n )\ntc_mod.open_lid()\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1495, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ee00678d-0531-43a6-b4ee-24d47f7b854c": {"__data__": {"id_": "ee00678d-0531-43a6-b4ee-24d47f7b854c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c134065a-14f0-482b-a69d-91baacb5d494", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "42bb0f112473640541412e136dc814a5dffae13a29bf313aea06786e6b884340", "class_name": "RelatedNodeInfo"}}, "text": "Shortening Mix Steps\n\nSimilar to delays, mix steps can take a long time because they are inherently repetitive actions. Mixing ten times takes ten times as long as mixing once! To save time, set a mix repetitions variable based on the value of `protocol.params.dry_run` and pass that to `mix()`:\n\n```\nif protocol.params.dry_run is True:\n mix_reps = 1\nelse:\n mix_reps = 10\npipette.mix(repetitions=mix_reps, volume=50, location=plate[\"A1\"].bottom())\n\n```\n\nNote that this checks whether the dry run parameter is `True`. If you prefer to set up all your `if` statements to check whether it\u2019s `False`, you can reverse the logic:\n\n```\nif protocol.params.dry_run is False:\n mix_reps = 10\nelse:\n mix_reps = 1\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 719, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "40002650-dc78-4ca1-a842-1d2820a2c9bc": {"__data__": {"id_": "40002650-dc78-4ca1-a842-1d2820a2c9bc", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "de3d45e9-9ea1-4f75-949e-e30b0052d539", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9982e5d0c5a815504e5e9db075d49ed1dc69f18d26304b9b50676d0a562e0a8d", "class_name": "RelatedNodeInfo"}}, "text": "Returning Tips\n\nTips used in a dry run should be reusable \u2014 for another dry run, if nothing else. It doesn\u2019t make sense to dispose of them in a trash container, unless you specifically need to test movement to the trash. You can choose whether to use `drop_tip()` or `return_tip()` based on the value of `protocol.params.dry_run`. If the protocol doesn\u2019t have too many tip drop actions, you can use an `if` statement each time:\n\n```\nif protocol.params.dry_run is True:\n pipette.return_tip()\nelse:\n pipette.drop_tip()\n\n```\n\nHowever, repeating this block every time you handle tips could significantly clutter your code. Instead, you could define it as a function:\n\n```\ndef return_or_drop(pipette):\n if protocol.params.dry_run is True:\n pipette.return_tip()\n else:\n pipette.drop_tip()\n\n```\n\nThen call that function throughout your protocol:\n\n```\npipette.pick_up_tip()\nreturn_or_drop(pipette)\n\n```\n\nNote\n\nIt\u2019s generally better to define a standalone function, rather than adding a method to the `InstrumentContext` class. This makes your custom, parameterized commands stand out from API methods in your code.\n\nAdditionally, if your protocol uses enough tips that you have to replenish tip racks, you\u2019ll need separate behavior for dry runs and live runs. In a live run, once you\u2019ve used all the tips, the rack is empty, because the tips are in the trash. In a dry run, once you\u2019ve used all the tips in a rack, the rack is _full_, because you returned the tips.\n\nThe API has methods to handle both of these situations. To continue using the same tip rack without physically replacing it, call `reset_tipracks()`. In the live run, move the empty tip rack off the deck and move a full one into place:\n\n```\nif protocol.params.dry_run is True:\n pipette.reset_tipracks()\nelse:\n protocol.move_labware(\n labware=tips_1, new_location=chute, use_gripper=True\n )\n protocol.move_labware(\n labware=tips_2, new_location=\"C3\", use_gripper=True\n )\n\n```\n\nYou can modify this code for similar cases. You may be moving tip racks by hand, rather than with the gripper. Or you could even mix the two, moving the used (but full) rack off\\-deck by hand \u2014 instead of dropping it down the chute, spilling all the tips \u2014 and have the gripper move a new rack into place. Ultimately, it\u2019s up to you to fine\\-tune your dry run behavior, and communicate it to your protocol\u2019s users with your parameter descriptions.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2439, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9687aeb0-7763-4074-a0a8-c49058fb0ffb": {"__data__": {"id_": "9687aeb0-7763-4074-a0a8-c49058fb0ffb", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e42c5557-69f6-40e3-8c11-66ae89fd0456", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0c99935cdc45fa971579a27446a41a4346e4002b3ce192de34348b6418d4c15d", "class_name": "RelatedNodeInfo"}}, "text": "Parameter Style Guide\n\nIt\u2019s important to write clear names and descriptions when you define parameters in your protocols. Clarity improves the user experience for the technicians who run your protocols. They rely on your parameter names and descriptions to understand how the robot will function when running your protocol.\n\nAdopting the advice of this guide will help make your protocols clear, consistent, and ultimately easy to use. It also aligns them with protocols in the Opentrons Protocol Library, which can help others access and replicate your science.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 564, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "2abc0d0b-6666-4b3e-983e-36e820323e08": {"__data__": {"id_": "2abc0d0b-6666-4b3e-983e-36e820323e08", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f087d8d5-c0f0-4662-b436-3ad78cd14624", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "187440551ae13b274020b35921f044a6508b99d8c87c884a4310214b7b52411e", "class_name": "RelatedNodeInfo"}}, "text": "General Guidance\n\n**Parameter names are nouns.** Parameters should be discrete enough that you can describe them in a single word or short noun phrase. `display_name` is limited to 30 characters, and you can add more context in the description.\n\nDon\u2019t ask questions or put other sentence punctuation in parameter names. For example:\n\n| \u2705 Dry run | \u274c Dry run? |\n| -------------------- | -------------------------------- |\n| \u2705 Sample count | \u274c How many samples? |\n| \u2705 Number of samples | \u274c Number of samples to process. |\n\n**Parameter descriptions explain actions.** In one or two clauses or sentences, state when and how the parameter value is used in the protocol. Don\u2019t merely restate the parameter name.\n\nPunctuate descriptions as sentences, even if they aren\u2019t complete sentences. For example:\n\n| Parameter name | Parameter description |\n| --------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |\n| Dry run | _ \u2705 Skip incubation delays and shorten mix steps. _ \u274c Whether to do a dry run. |\n| Aspirate volume | _ \u2705 How much to aspirate from each sample. _ \u274c Volume that the pipette will aspirate |\n| Dilution factor | _ \u2705 Each step uses this ratio of total liquid to original solution. Express the ratio as a decimal. _ \u274c total/diluent ratio for the process |\n\nNot every parameter requires a description! For example, in a protocol that uses only one pipette, it would be difficult to explain a parameter named \u201cPipette type\u201d without repeating yourself. In a protocol that offers parameters for two different pipettes, it may be useful to summarize what steps each pipette performs.\n\n**Use sentence case for readability**. Sentence case means adding a capital letter to _only_ the first word of the name and description. This gives your parameters a professional appearance. Keep proper names capitalized as they would be elsewhere in a sentence. For example:\n\n| \u2705 Number of samples | \u274c number of samples |\n| -------------------------- | -------------------------- |\n| \u2705 Temperature Module slot | \u274c Temperature module slot |\n| \u2705 Dilution factor | \u274c Dilution Factor |\n\n**Use numerals for all numbers.** In a scientific context, this includes single\\-digit numbers. Additionally, punctuate numbers according to the needs of your protocol\u2019s users. If you plan to share your protocol widely, consider using American English number punctuation (comma for thousands separator; period for decimal separator).\n\n**Order choices logically.** Place items within the `choices` attribute in the order that makes sense for your application.\n\nNumeric choices should either ascend or descend. Consider an offset parameter with choices. Sorting according to value is easy to use in either direction, but sorting by absolute value is difficult:\n\n| \u2705 \\-3, \\-2, \\-1, 0, 1, 2, 3 | \u274c 0, 1, \\-1, 2, \\-2, 3, \\-3 |\n| ---------------------------- | ---------------------------- |\n| \u2705 3, 2, 1, 0, \\-1, \\-2, \\-3 | |\n\nString choices may have an intrinsic ordering. If they don\u2019t, fall back to alphabetical order.\n\n| Parameter name | Parameter description |\n| -------------- | ------------------------------------------------------------------------------------------- |\n| Liquid color | _ \u2705 Red, Orange, Yellow, Green, Blue, Violet _ \u274c Blue, Green, Orange, Red, Violet, Yellow |\n| Tube brand | _ \u2705 Eppendorf, Falcon, Generic, NEST _ \u274c Falcon, NEST, Eppendorf, Generic |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3891, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c914503e-2bc4-431a-941b-5ecf283e5a35": {"__data__": {"id_": "c914503e-2bc4-431a-941b-5ecf283e5a35", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9562c403-41d1-416a-9246-94e21f9337bf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8bb5d97c4bfbde91bd1e508be86b7d2a7f945366b07858008b9913f3143b4910", "class_name": "RelatedNodeInfo"}}, "text": "Type\\-Specific Guidance", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 25, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "283ad8c4-c5d4-4113-9c45-6e42828c2bd6": {"__data__": {"id_": "283ad8c4-c5d4-4113-9c45-6e42828c2bd6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "30a8e840-ff81-4b29-a293-91a421431712", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e18b9f313bc3e2d03f85323b1768e7884c41f3926d85bce058f32398b046fe97", "class_name": "RelatedNodeInfo"}}, "text": "Booleans\n\nThe `True` value of a Boolean corresponds to the word _On_ and the `False` value corresponds to the word _Off_.\n\n**Avoid double negatives.** These are difficult to understand and may lead to a technician making an incorrect choice. Remember that negation can be part of a word\u2019s meaning! For example, it\u2019s difficult to reason about what will happen when a parameter named \u201cDeactivate module\u201d is set to \u201cOff\u201d.\n\n**When in doubt, clarify in the description.** If you feel like you need to add extra clarity to your Boolean choices, use the phrase \u201cWhen on\u201d or \u201cWhen off\u201d at the beginning of your description. For example, a parameter named \u201cDry run\u201d could have the description \u201cWhen on, skip protocol delays and return tips instead of trashing them.\u201d", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 759, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "12fc93de-6a8b-45de-ae87-9e824744e5ac": {"__data__": {"id_": "12fc93de-6a8b-45de-ae87-9e824744e5ac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "863a67ad-1fbe-4efb-9174-0e58326f16f8", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "35aef449bcd1f34b3905cd2775b9a442212d8a93b5dfa49b8e207ced9fc0808f", "class_name": "RelatedNodeInfo"}}, "text": "Number Choices\n\n**Don\u2019t repeat text in choices.** Rely on the name and description to indicate what the number refers to. It\u2019s OK to add units to the display names of numeric choices, because the `unit` attribute is ignored when you specify `choices`.\n\n| Parameter name | Parameter description |\n| ----------------- | -------------------------------------------------------------------------------------------------------------------- |\n| Number of columns | _ \u2705 1, 2, 3 _ \u274c 1 column, 2 columns, 3 columns |\n| Aspirate volume | _ \u2705 10 \u00b5L, 20 \u00b5L, 50 \u00b5L _ \u2705 Low (10 \u00b5L), Medium (20 \u00b5L), High (50 \u00b5L) \\* \u274c Low volume, Medium volume, High volume |\n\n**Use a range instead of choices when all values are acceptable.** It\u2019s faster and easier to enter a numeric value than to choose from a long list. For example, a \u201cNumber of columns\u201d parameter that accepts any number 1 through 12 should specify a `minimum` and `maximum`, rather than `choices`. However, if the application requires that the parameter only accepts even numbers, you need to specify choices (2, 4, 6, 8, 10, 12\\).", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1243, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe6d77c4-5744-4c45-bfff-03e9475499a4": {"__data__": {"id_": "fe6d77c4-5744-4c45-bfff-03e9475499a4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "a0321fdb-df92-44b3-bb11-95a8a7f699fb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1e3a228ded1ce32360b6928fd6076f309037c4d2fee3233a2d292a36ca813b8e", "class_name": "RelatedNodeInfo"}}, "text": "Strings\n\n**Avoid strings that are synonymous with \u201cyes\u201d and \u201cno\u201d.** When presenting exactly two string choices, consider their meaning. Can they be rephrased in terms of \u201cyes/no\u201d, \u201ctrue/false\u201d, or \u201con/off\u201d? If no, then a string parameter is appropriate. If yes, it\u2019s better to use a Boolean, which appears in run setup as a toggle rather than a dropdown menu.\n\n> - \u2705 Blue, Red\n> - \u2705 Left\\-to\\-right, Right\\-to\\-left\n> - \u274c Include, Exclude\n> - \u274c Yes, No\n\nRuntime parameters let you define user\\-customizable variables in your Python protocols. This gives you greater flexibility and puts extra control in the hands of the technician running the protocol \u2014 without forcing them to switch between lots of protocol files or write code themselves.\n\nThis section begins with the fundamentals of runtime parameters:\n\n- Preliminary advice on how to choose good parameters, before you start writing code.\n- The syntax for defining parameters with boolean, numeric, and string values.\n- How to use parameter values in your protocol, building logic and API calls that implement the technician\u2019s choices.\n\nIt continues with a selection of use cases and some overall style guidance. When adding parameters, you are in charge of the user experience when it comes time to set up the protocol! These pages outline best practices for making your protocols reliable and easy to use.\n\n- Use case \u2013 sample count: Change behavior throughout a protocol based on how many samples you plan to process. Setting sample count exactly saves time, tips, and reagents.\n- Use case \u2013 dry run: Test your protocol, rather than perform a live run, just by flipping a toggle.\n- Style and usage: When you\u2019re a protocol author, you write code. When you\u2019re a parameter author, you write words. Follow this advice to make things as clear as possible for the technicians who will run your protocol.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1859, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58": {"__data__": {"id_": "b7e4ca92-12ea-41c6-bbfa-4f2f74222d58", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e3af0884-3e2a-4ed5-be90-99c0249959de", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5cd73d2b052f89f3b61750a0d0a608e65f5fafac92002633aadaae12d3a92d3f", "class_name": "RelatedNodeInfo"}}, "text": "Advanced Control\n\nAs its name implies, the Python Protocol API is primarily designed for creating protocols that you upload via the Opentrons App and execute on the robot as a unit. But sometimes it\u2019s more convenient to control the robot outside of the app. For example, you might want to have variables in your code that change based on user input or the contents of a CSV file. Or you might want to only execute part of your protocol at a time, especially when developing or debugging a new protocol.\n\nThe Python API offers two ways of issuing commands to the robot outside of the app: through Jupyter Notebook or on the command line with `opentrons_execute`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 663, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4431616b-6726-4488-a27a-09e0aad7a27a": {"__data__": {"id_": "4431616b-6726-4488-a27a-09e0aad7a27a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2856558a-faed-4f27-885c-73094f210748", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "85bcf33649c7529d7a1d3a84673797e61e20dc32a6109a5aaea0ea721587f3f3", "class_name": "RelatedNodeInfo"}}, "text": "Jupyter Notebook\n\nThe Flex and OT\\-2 run Jupyter Notebook servers on port 48888, which you can connect to with your web browser. This is a convenient environment for writing and debugging protocols, since you can define different parts of your protocol in different notebook cells and run a single cell at a time.\n\nAccess your robot\u2019s Jupyter Notebook by either:\n\n- Going to the **Advanced** tab of Robot Settings and clicking **Launch Jupyter Notebook**.\n- Going directly to `http://:48888` in your web browser (if you know your robot\u2019s IP address).\n\nOnce you\u2019ve launched Jupyter Notebook, you can create a notebook file or edit an existing one. These notebook files are stored on the the robot. If you want to save code from a notebook to your computer, go to **File \\> Download As** in the notebook interface.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 814, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5795a666-d615-463a-82d5-56ceeac30476": {"__data__": {"id_": "5795a666-d615-463a-82d5-56ceeac30476", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6edce869-c74d-4d53-a8c4-8a0d4f8754d5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e2433578aef9b5c24871d823c98f7913fac5ab7718e930f2dcca0f9bbeb2688a", "class_name": "RelatedNodeInfo"}}, "text": "Protocol Structure\n\nJupyter Notebook is structured around cells: discrete chunks of code that can be run individually. This is nearly the opposite of Opentrons protocols, which bundle all commands into a single `run` function. Therefore, to take full advantage of Jupyter Notebook, you have to restructure your protocol.\n\nRather than writing a `run` function and embedding commands within it, start your notebook by importing `opentrons.execute` and calling `opentrons.execute.get_protocol_api()`. This function also replaces the `metadata` block of a standalone protocol by taking the minimum API version as its argument. Then you can call `ProtocolContext` methods in subsequent lines or cells:\n\n```\nimport opentrons.execute\nprotocol = opentrons.execute.get_protocol_api(\"2.19\")\nprotocol.home()\n\n```\n\nThe first command you execute should always be `home()`. If you try to execute other commands first, you will get a `MustHomeError`. (When running protocols through the Opentrons App, the robot homes automatically.)\n\nYou should use the same `ProtocolContext` throughout your notebook, unless you need to start over from the beginning of your protocol logic. In that case, call `get_protocol_api()` again to get a new `ProtocolContext`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1240, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "85527e92-eb41-458f-91a6-751735c62a23": {"__data__": {"id_": "85527e92-eb41-458f-91a6-751735c62a23", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4cf5cf0a-71e7-492e-839c-fe733e123ca6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "66f0fa6f0fca20bc1a1e89e6e859bb4963dafd6bdd368cf45ddf116439314fc7", "class_name": "RelatedNodeInfo"}}, "text": "Running a Previously Written Protocol\n\nYou can also use Jupyter to run a protocol that you have already written. To do so, first copy the entire text of the protocol into a cell and run that cell:\n\n```\nimport opentrons.execute\nfrom opentrons import protocol_api\ndef run(protocol: protocol_api.ProtocolContext):\n # the contents of your previously written protocol go here\n\n```\n\nSince a typical protocol only defines the `run` function but doesn\u2019t call it, this won\u2019t immediately cause the robot to move. To begin the run, instantiate a `ProtocolContext` and pass it to the `run` function you just defined:\n\n```\nprotocol = opentrons.execute.get_protocol_api(\"2.19\")\nrun(protocol) # your protocol will now run\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 717, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "129acce9-c3ca-4527-a94c-a1bd7bd08e33": {"__data__": {"id_": "129acce9-c3ca-4527-a94c-a1bd7bd08e33", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f7f383d3-70de-4969-ab49-14d84a7275a5", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "aa802c1b68451d1a6caa94a766f770d8fbd74dd6eaa10787228db4f3e723cf54", "class_name": "RelatedNodeInfo"}}, "text": "Setting Labware Offsets\n\nAll positions relative to labware are adjusted automatically based on labware offset data. When you\u2019re running your code in Jupyter Notebook or with `opentrons_execute`, you need to set your own offsets because you can\u2019t perform run setup and Labware Position Check in the Opentrons App or on the Flex touchscreen.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 341, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "b051c646-22dc-44c8-823f-dea41902b9e0": {"__data__": {"id_": "b051c646-22dc-44c8-823f-dea41902b9e0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b393549d-e6ae-4799-acb2-1b3d290b4de9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "230ab64d6fc34cb09695da9e71789e445c68e9fad77bc4b5fa6c5b8052b8f18f", "class_name": "RelatedNodeInfo"}}, "text": "Creating a Dummy Protocol\n\nFor advanced control applications, do the following to calculate and apply labware offsets:\n\n> 1. Create a \u201cdummy\u201d protocol that loads your labware and has each used pipette pick up a tip from a tip rack.\n> 2. Import the dummy protocol to the Opentrons App.\n> 3. Run Labware Position Check from the app or touchscreen.\n> 4. Add the offsets to your code with `set_offset()`.\n\nCreating the dummy protocol requires you to:\n\n> 1. Use the `metadata` or `requirements` dictionary to specify the API version. (See Versioning for details.) Use the same API version as you did in `opentrons.execute.get_protocol_api()`.\n> 2. Define a `run()` function.\n> 3. Load all of your labware in their initial locations.\n> 4. Load your smallest capacity pipette and specify its `tip_racks`.\n> 5. Call `pick_up_tip()`. Labware Position Check can\u2019t run if you don\u2019t pick up a tip.\n\nFor example, the following dummy protocol will use a P300 Single\\-Channel GEN2 pipette to enable Labware Position Check for an OT\\-2 tip rack, NEST reservoir, and NEST flat well plate.\n\n```\nmetadata = {\"apiLevel\": \"2.13\"}\n\n def run(protocol):\n tiprack = protocol.load_labware(\"opentrons_96_tiprack_300ul\", 1)\n reservoir = protocol.load_labware(\"nest_12_reservoir_15ml\", 2)\n plate = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", 3)\n p300 = protocol.load_instrument(\"p300_single_gen2\", \"left\", tip_racks=[tiprack])\n p300.pick_up_tip()\n p300.return_tip()\n\n```\n\nAfter importing this protocol to the Opentrons App, run Labware Position Check to get the x, y, and z offsets for the tip rack and labware. When complete, you can click **Get Labware Offset Data** to view automatically generated code that uses `set_offset()` to apply the offsets to each piece of labware.\n\n```\nlabware_1 = protocol.load_labware(\"opentrons_96_tiprack_300ul\", location=\"1\")\nlabware_1.set_offset(x=0.00, y=0.00, z=0.00)\n\nlabware_2 = protocol.load_labware(\"nest_12_reservoir_15ml\", location=\"2\")\nlabware_2.set_offset(x=0.10, y=0.20, z=0.30)\n\nlabware_3 = protocol.load_labware(\"nest_96_wellplate_200ul_flat\", location=\"3\")\nlabware_3.set_offset(x=0.10, y=0.20, z=0.30)\n\n```\n\nThis automatically generated code uses generic names for the loaded labware. If you want to match the labware names already in your protocol, change the labware names to match your original code:\n\n```\nreservoir = protocol.load_labware(\"nest_12_reservoir_15ml\", \"2\")\nreservoir.set_offset(x=0.10, y=0.20, z=0.30)\n\n```\n\nNew in version 2\\.12\\.\n\nOnce you\u2019ve executed this code in Jupyter Notebook, all subsequent positional calculations for this reservoir in slot 2 will be adjusted 0\\.1 mm to the right, 0\\.2 mm to the back, and 0\\.3 mm up.\n\nKeep in mind that `set_offset()` commands will override any labware offsets set by running Labware Position Check in the Opentrons App. And you should follow the behavior of Labware Position Check, i.e., _do not_ reuse offset measurements unless they apply to the _same labware type_ in the _same deck slot_ on the _same robot_.\n\nWarning\n\nImproperly reusing offset data may cause your robot to move to an unexpected position or crash against labware, which can lead to incorrect protocol execution or damage your equipment. When in doubt: run Labware Position Check again and update your code!", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3296, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4": {"__data__": {"id_": "e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "57ee30fb-db22-4b07-be22-1d6760eaed09", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9b9dce11360b1b09c11e8eefc214ca6a8358901c36d9859e064da920416a7079", "class_name": "RelatedNodeInfo"}}, "text": "Labware Offset Behavior\n\nHow the API applies labware offsets varies depending on the API level of your protocol. This section describes the latest behavior. For details on how offsets work in earlier API versions, see the API reference entry for `set_offset()`.\n\nIn the latest API version, offsets apply to labware type\u2013location combinations. For example, if you use `set_offset()` on a tip rack, use all the tips, and replace the rack with a fresh one of the same type in the same location, the offsets will apply to the fresh tip rack:\n\n```\ntiprack = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"D3\"\n)\ntiprack2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\",\n location=protocol_api.OFF_DECK,\n)\ntiprack.set_offset(x=0.1, y=0.1, z=0.1)\nprotocol.move_labware(\n labware=tiprack, new_location=protocol_api.OFF_DECK\n) # tiprack has no offset while off-deck\nprotocol.move_labware(\n labware=tiprack2, new_location=\"D3\"\n) # tiprack2 now has offset 0.1, 0.1, 0.1\n\n```\n\nBecause offsets apply to combinations of labware type and location, if you want an offset to apply to a piece of labware as it moves around the deck, call `set_offset()` again after each movement:\n\n```\nplate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"D2\"\n)\nplate.set_offset(\n x=-0.1, y=-0.2, z=-0.3\n) # plate now has offset -0.1, -0.2, -0.3\nprotocol.move_labware(\n labware=plate, new_location=\"D3\"\n) # plate now has offset 0, 0, 0\nplate.set_offset(\n x=-0.1, y=-0.2, z=-0.3\n) # plate again has offset -0.1, -0.2, -0.3\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1613, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1e846a4d-efb9-4bb0-a805-b24da1fd6101": {"__data__": {"id_": "1e846a4d-efb9-4bb0-a805-b24da1fd6101", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5b716c2d-7dee-48d8-8294-bf942bde1c5a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "4bba79b2852eff67ddd1e96a73fac2598fbc976b547b8397b81e125cdddd9371", "class_name": "RelatedNodeInfo"}}, "text": "Using Custom Labware\n\nIf you have custom labware definitions you want to use with Jupyter, make a new directory called `labware` in Jupyter and put the definitions there. These definitions will be available when you call `load_labware()`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 240, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c5de2a2e-604d-44d7-9122-f1e00ef9720b": {"__data__": {"id_": "c5de2a2e-604d-44d7-9122-f1e00ef9720b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "faa13f57dba93bbcf8e862350f347ecdfdfe75316bed3bbda946b2b6b077d0ba", "class_name": "RelatedNodeInfo"}}, "text": "Using Modules\n\nIf your protocol uses modules, you need to take additional steps to make sure that Jupyter Notebook doesn\u2019t send commands that conflict with the robot server. Sending commands to modules while the robot server is running will likely cause errors, and the module commands may not execute as expected.\n\nTo disable the robot server, open a Jupyter terminal session by going to **New \\> Terminal** and run `systemctl stop opentrons-robot-server`. Then you can run code from cells in your notebook as usual. When you are done using Jupyter Notebook, you should restart the robot server with `systemctl start opentrons-robot-server`.\n\nNote\n\nWhile the robot server is stopped, the robot will display as unavailable in the Opentrons App. If you need to control the robot or its attached modules through the app, you need to restart the robot server and wait for the robot to appear as available in the app.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 915, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cd36e93f-1652-488b-8342-eb7c92b5ce6e": {"__data__": {"id_": "cd36e93f-1652-488b-8342-eb7c92b5ce6e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "f0ba834a-0f18-4a90-844b-b459fee5f3ef", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "da171c5f861783a2515d0d3dc771d71665db919b60832c47412b35d0243f3c85", "class_name": "RelatedNodeInfo"}}, "text": "Command Line\n\nThe robot\u2019s command line is accessible either by going to **New \\> Terminal** in Jupyter or via SSH.\n\nTo execute a protocol from the robot\u2019s command line, copy the protocol file to the robot with `scp` and then run the protocol with `opentrons_execute`:\n\n```\nopentrons_execute /data/my_protocol.py\n\n```\n\nBy default, `opentrons_execute` will print out the same run log shown in the Opentrons App, as the protocol executes. It also prints out internal logs at the level `warning` or above. Both of these behaviors can be changed. Run `opentrons_execute --help` for more information.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 596, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d3f390f8-3dbb-458e-8d82-9c370e27ebca": {"__data__": {"id_": "d3f390f8-3dbb-458e-8d82-9c370e27ebca", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e53792bc-88da-4a55-931e-697331331fa0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0cbe982f904f40254e5b8dc2e5cb9a821e6dc13a1273d796ca847ac6418fb000", "class_name": "RelatedNodeInfo"}}, "text": "Protocol Examples\n\nThis page provides simple, ready\\-made protocols for Flex and OT\\-2\\. Feel free to copy and modify these examples to create unique protocols that help automate your laboratory workflows. Also, experimenting with these protocols is another way to build upon the skills you\u2019ve learned from working through the tutorial. Try adding different hardware, labware, and commands to a sample protocol and test its validity after importing it into the Opentrons App.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 477, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "dcd995cc-58e9-4129-b3c8-9a603995d898": {"__data__": {"id_": "dcd995cc-58e9-4129-b3c8-9a603995d898", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c0be95ed779442c20a2d2fe56c135ff61ab3b8791aea01332859d49ef0c9c4c3", "class_name": "RelatedNodeInfo"}}, "text": "Using These Protocols\n\nThese sample protocols are designed for anyone using an Opentrons Flex or OT\\-2 liquid handling robot. For our users with little to no Python experience, we\u2019ve taken some liberties with the syntax and structure of the code to make it easier to understand. For example, we\u2019ve formatted the samples with line breaks to show method arguments clearly and to avoid horizontal scrolling. Additionally, the methods use named arguments instead of positional arguments. For example:\n\n```\n# This code uses named arguments\ntiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n\n# This code uses positional arguments\ntiprack_1 = protocol.load_labware(\"opentrons_flex_96_tiprack_200ul\", \"D2\")\n\n```\n\nBoth examples instantiate the variable `tiprack_1` with a Flex tip rack, but the former is more explicit. It shows the parameter name and its value together (e.g. `location=\"D2\"`), which may be helpful when you\u2019re unsure about what\u2019s going on in a protocol code sample.\n\nPython developers with more experience should feel free to ignore the code styling used here and work with these examples as you like.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1165, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9fc08083-9edc-4125-8b2c-7bd929dd5715": {"__data__": {"id_": "9fc08083-9edc-4125-8b2c-7bd929dd5715", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "256ee66a-bf3e-46c1-8433-1230e80c4df6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2a0c7ce96f25bc386a416546ce4d3c1f659a2a24bab06a40266834c0adc1620e", "class_name": "RelatedNodeInfo"}}, "text": "Instruments and Labware\n\nThe sample protocols all use the following pipettes:\n\n- Flex 1\\-Channel Pipette (5\u20131000 \u00b5L). The API load name for this pipette is `flex_1channel_1000`.\n- P300 Single\\-Channel GEN2 pipette for the OT\\-2\\. The API load name for this pipette is `p300_single_gen2`.\n\nThey also use the labware listed below:\n\n| Labware type | Labware name | API load name |\n| -------------- | --------------------------------------- | --------------------------------- |\n| Reservoir | USA Scientific 12\\-Well Reservoir 22 mL | `usascientific_12_reservoir_22ml` |\n| Well plate | Corning 96\\-Well Plate 360 \u00b5L Flat | `corning_96_wellplate_360ul_flat` |\n| Flex tip rack | Opentrons Flex 96 Tip Rack 200 \u00b5L | `opentrons_flex_96_tiprack_200ul` |\n| OT\\-2 tip rack | Opentrons 96 Tip Rack 300 \u00b5L | `opentrons_96_tiprack_300ul` |", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 913, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8bd35713-c665-4e9f-9747-a0e1b9042d52": {"__data__": {"id_": "8bd35713-c665-4e9f-9747-a0e1b9042d52", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "62db627e-707b-42ee-8ed1-bc3b95a5226b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd09391264a81676cafcc11000db53e093227ef2e013f24a60821c7ac4d5c2ac", "class_name": "RelatedNodeInfo"}}, "text": "Protocol Template\n\nThis code only loads the instruments and labware listed above, and performs no other actions. Many code snippets from elsewhere in the documentation will run without modification when added at the bottom of this template. You can also use it to start writing and testing your own code.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 306, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "be5507b1-4d59-4284-84de-5e0ba0888c5e": {"__data__": {"id_": "be5507b1-4d59-4284-84de-5e0ba0888c5e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ac9f2a2d737612f4e66658d67c68e05699229f2af94c94b784ad7d5261a0ea57", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # load tip rack in deck slot D3\n tiprack = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\", location=\"D3\"\n )\n # attach pipette to left mount\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack]\n )\n # load well plate in deck slot D2\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=\"D2\"\n )\n # load reservoir in deck slot D1\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\", location=\"D1\"\n )\n # load trash bin in deck slot A3\n trash = protocol.load_trash_bin(location=\"A3\")\n # Put protocol commands here\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 899, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "24ee9238-b514-455f-a71e-f5eedaef6996": {"__data__": {"id_": "24ee9238-b514-455f-a71e-f5eedaef6996", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d482ea10-3517-45c2-8fd9-2da2ed47e0c4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1445536b4df98ab8fd9bd48156947091f5ffd82584d1b6b5872bf1ac8483aa04", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n # load tip rack in deck slot 3\n tiprack = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\", location=3\n )\n # attach pipette to left mount\n pipette = protocol.load_instrument(\n instrument_name=\"p300_single_gen2\",\n mount=\"left\",\n tip_racks=[tiprack]\n )\n # load well plate in deck slot 2\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\", location=2\n )\n # load reservoir in deck slot 1\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\", location=1\n )\n # Put protocol commands here\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 766, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "70541635-e91b-4d03-ad84-9cd710d8d48e": {"__data__": {"id_": "70541635-e91b-4d03-ad84-9cd710d8d48e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "fdabe9eccd0f968fad51af6ba4caee68d6a329d90105331ac6364168a7d101b4", "class_name": "RelatedNodeInfo"}}, "text": "Transferring Liquids\n\nThese protocols demonstrate how to move 100 \u00b5L of liquid from one well to another.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 106, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1331adc2-e36c-4df6-8b61-c8f12fedbf36": {"__data__": {"id_": "1331adc2-e36c-4df6-8b61-c8f12fedbf36", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "477228f3-473d-497a-8bcf-8fe22f733d3d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e6870b8c88dcb266be22c7d0fa0a5f80dbadaa711545f33c57550aa9be239806", "class_name": "RelatedNodeInfo"}}, "text": "Basic Method\n\nThis protocol uses some building block commands to tell the robot, explicitly, where to go to aspirate and dispense liquid. These commands include the `pick_up_tip()`, `aspirate()`, and `dispense()` methods.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 223, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c85152fe-d901-4aea-9c99-3feb491c997a": {"__data__": {"id_": "c85152fe-d901-4aea-9c99-3feb491c997a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ee2f96ea-ae01-491e-aa4b-1df5caee714b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3a2277fe80f33b68ddf6dc992d839a9a447b4b5e0b49ae1bf4d179b723993957", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\":\"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n\n pipette.pick_up_tip()\n pipette.aspirate(100, plate[\"A1\"])\n pipette.dispense(100, plate[\"B1\"])\n pipette.drop_tip()\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 689, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "be39d582-2687-4dc2-ab1a-811fd8a7f64e": {"__data__": {"id_": "be39d582-2687-4dc2-ab1a-811fd8a7f64e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e24fcfd-feef-44d4-83fb-d8c0ca66a502", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2ecf0345a46746ce3bda8e0265df908ff7618d73247d74e8fea7f9fcdc94240d", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n\n p300.pick_up_tip()\n p300.aspirate(100, plate[\"A1\"])\n p300.dispense(100, plate[\"B1\"])\n p300.drop_tip()\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 614, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6de89262-d55e-4917-ba9b-944c56f0494a": {"__data__": {"id_": "6de89262-d55e-4917-ba9b-944c56f0494a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "19b2f7c6-149e-4008-9ca2-4d21443b7491", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "9e5e2e28935605b293b95301d1c367badbdec542c040bafce87bf6862a2af62c", "class_name": "RelatedNodeInfo"}}, "text": "Advanced Method\n\nThis protocol accomplishes the same thing as the previous example, but does it a little more efficiently. Notice how it uses the `InstrumentContext.transfer()` method to move liquid between well plates. The source and destination well arguments (e.g., `plate[\"A1\"], plate[\"B1\"]`) are part of `transfer()` method parameters. You don\u2019t need separate calls to `aspirate` or `dispense` here.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 406, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cf1beb93-e72c-4e87-9196-8a06ca2540ab": {"__data__": {"id_": "cf1beb93-e72c-4e87-9196-8a06ca2540ab", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8dd2ae1f-77fb-4751-bb3a-a12722544b0e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "24deb54c2bb192d1ef7860dc4d37b02589a96f9873b17a6595d9acd912ed181f", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n # transfer 100 \u00b5L from well A1 to well B1\n pipette.transfer(100, plate[\"A1\"], plate[\"B1\"])\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 664, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "53b5eeef-535d-450e-a8d3-6b96ae833a9d": {"__data__": {"id_": "53b5eeef-535d-450e-a8d3-6b96ae833a9d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ca041e39-9cbf-4183-bacb-9da0fab1ce2a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8dd7ac41af995b5eaeee17ca109513ebaa07b7bf9e7492cff7ce4729685e9c87", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n # transfer 100 \u00b5L from well A1 to well B1\n p300.transfer(100, plate[\"A1\"], plate[\"B1\"])\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 581, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f": {"__data__": {"id_": "5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "961c6b2e-0554-4794-9539-48df93aeeef2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c5aeb10408dd03fd8d673ebae08056c8f5b59892503912337de8b5bc51e1523c", "class_name": "RelatedNodeInfo"}}, "text": "Loops\n\nIn Python, a loop is an instruction that keeps repeating an action until a specific condition is met.\n\nWhen used in a protocol, loops automate repetitive steps such as aspirating and dispensing liquids from a reservoir to a a range of wells, or all the wells, in a well plate. For example, this code sample loops through the numbers 0 to 7, and uses the loop\u2019s current value to transfer liquid from all the wells in a reservoir to all the wells in a 96\\-well plate.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20b1648d-1010-4845-982a-f3aeb7cb9df9": {"__data__": {"id_": "20b1648d-1010-4845-982a-f3aeb7cb9df9", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "072db9fa-5f01-4a27-a171-020fe76f3b37", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7b07a6a79d72ec634e60a2368cd4046d4e65eb01be3654d41541867c0c16d7bd", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\":\"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=\"D3\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n\n # distribute 20 \u00b5L from reservoir:A1 -> plate:row:1\n # distribute 20 \u00b5L from reservoir:A2 -> plate:row:2\n # etc...\n # range() starts at 0 and stops before 8, creating a range of 0-7\n for i in range(8):\n pipette.distribute(200, reservoir.wells()[i], plate.rows()[i])\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 970, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "66619eac-0a60-42a9-b2c5-f7e4d638dc44": {"__data__": {"id_": "66619eac-0a60-42a9-b2c5-f7e4d638dc44", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3c511f34-48a5-44a5-83a0-86b71b9f0ed1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ce91c285f6f4730299e3fbf2c165dedf99a1a378564c310d7c55af2344dd9256", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=4)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n\n # distribute 20 \u00b5L from reservoir:A1 -> plate:row:1\n # distribute 20 \u00b5L from reservoir:A2 -> plate:row:2\n # etc...\n # range() starts at 0 and stops before 8, creating a range of 0-7\n for i in range(8):\n p300.distribute(200, reservoir.wells()[i], plate.rows()[i])\n\n```\n\nNotice here how Python\u2019s `range`') class (e.g., `range(8)`) determines how many times the code loops. Also, in Python, a range of numbers is _exclusive_ of the end value and counting starts at 0, not 1\\. For the Corning 96\\-well plate used here, this means well A1\\=0, B1\\=1, C1\\=2, and so on to the last well in the row, which is H1\\=7\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1217, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1c786628-34fb-42fe-9f8b-5f20c447803b": {"__data__": {"id_": "1c786628-34fb-42fe-9f8b-5f20c447803b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "bfcb54d8-e737-441b-9ce5-ce7137f10c3a", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3c7bec6720596eb6cb05e215210c7acce0621084ca9002d64f368f944a18f678", "class_name": "RelatedNodeInfo"}}, "text": "Multiple Air Gaps\n\nOpentrons electronic pipettes can do some things that a human cannot do with a pipette, like accurately alternate between liquid and air aspirations that create gaps within the same tip. The protocol shown below shows you how to aspirate from the first five wells in the reservoir and create an air gap between each sample.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 344, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e67e559b-ac83-4048-aa23-7fb4cf7634fd": {"__data__": {"id_": "e67e559b-ac83-4048-aa23-7fb4cf7634fd", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "0c956911-fdd3-4a8c-9660-127fbf17afa6", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5d89382e580756d10103dc2739c96ef9e53de0829579b00040ee1e3fccc9d436", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\":\"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_1000ul\",\n location=\"D2\")\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=\"D3\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1])\n\n pipette.pick_up_tip()\n\n # aspirate from the first 5 wells\n for well in reservoir.wells()[:5]:\n pipette.aspirate(volume=35, location=well)\n pipette.air_gap(10)\n\n pipette.dispense(225, plate[\"A1\"])\n\n pipette.return_tip()\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 931, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8deac4ba-b6d2-4fdf-9a0c-3193562a049c": {"__data__": {"id_": "8deac4ba-b6d2-4fdf-9a0c-3193562a049c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9dd98e85-62b3-4092-b586-cfea3d4cc3b4", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a81e6831df634c02a3dfe07258b679c926c2283ada7fbd07b6999adf77ed9afd", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=3)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"right\",\n tip_racks=[tiprack_1])\n\n p300.pick_up_tip()\n\n # aspirate from the first 5 wells\n for well in reservoir.wells()[:5]:\n p300.aspirate(volume=35, location=well)\n p300.air_gap(10)\n\n p300.dispense(225, plate[\"A1\"])\n\n p300.return_tip()\n\n```\n\nNotice here how Python\u2019s `slice`') functionality (in the code sample as `:5]`) lets us select the first five wells of the well plate only. Also, in Python, a range of numbers is _exclusive_ of the end value and counting starts at 0, not 1\\. For the USA Scientific 12\\-well reservoir used here, this means well A1\\=0, A2\\=1, A3\\=2, and so on to the last well used, which is A5\\=4\\. See also, the [Commands section of the Tutorial.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1257, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "82e247ec-c751-43cf-856c-4b9305678284": {"__data__": {"id_": "82e247ec-c751-43cf-856c-4b9305678284", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "d4d759c8-7b5d-4493-9d65-0cd70589639f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2d5fe4f4470592781b46033b51b0b3395bd003ff903d40af2ad97f40c942aeed", "class_name": "RelatedNodeInfo"}}, "text": "Dilution\n\nThis protocol dispenses diluent to all wells of a Corning 96\\-well plate. Next, it dilutes 8 samples from the reservoir across all 8 columns of the plate.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 166, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "10e5d866-558a-499d-ad57-57208363e8bb": {"__data__": {"id_": "10e5d866-558a-499d-ad57-57208363e8bb", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e85728a8-9eb5-4e9c-859f-2cb3459d0efe", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0325694c1f0712f026b49975d4244131a8ddf531967c6f7a4f08c94507183cfb", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n tiprack_2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D3\")\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=\"C1\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"left\",\n tip_racks=[tiprack_1, tiprack_2])\n # Dispense diluent\n pipette.distribute(50, reservoir[\"A12\"], plate.wells())\n\n # loop through each row\n for i in range(8):\n # save the source well and destination column to variables\n source = reservoir.wells()[i]\n row = plate.rows()[i]\n\n # transfer 30 \u00b5L of source to first well in column\n pipette.transfer(30, source, row[0], mix_after=(3, 25))\n\n # dilute the sample down the column\n pipette.transfer(\n 30, row[:11], row[1:],\n mix_after=(3, 25))\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1314, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e666b745-fe5b-4470-ba64-7ecd573acbb6": {"__data__": {"id_": "e666b745-fe5b-4470-ba64-7ecd573acbb6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "8b6c6ca8-b652-45ee-9b60-ada61dd90b70", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "629ab42b94a202151004cb0da7adacd582285671db2bcdc3a87b86cf5b0fdd23", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n tiprack_2 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=3)\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=4)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"right\",\n tip_racks=[tiprack_1, tiprack_2])\n # Dispense diluent\n p300.distribute(50, reservoir[\"A12\"], plate.wells())\n\n # loop through each row\n for i in range(8):\n # save the source well and destination column to variables\n source = reservoir.wells()[i]\n source = reservoir.wells()[i]\n row = plate.rows()[i]\n\n # transfer 30 \u00b5L of source to first well in column\n p300.transfer(30, source, row[0], mix_after=(3, 25))\n\n # dilute the sample down the column\n p300.transfer(\n 30, row[:11], row[1:],\n mix_after=(3, 25))\n\n```\n\nNotice here how the code sample loops through the rows and uses slicing to distribute the diluent. For information about these features, see the Loops and Air Gaps examples above. See also, the Commands section of the Tutorial.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1474, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6a0a74b4-f508-4b7b-ae58-3336e57e9c16": {"__data__": {"id_": "6a0a74b4-f508-4b7b-ae58-3336e57e9c16", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3782edc6c0fc53436f5a6fe96d908ad3bda4c802762f770113e072dc0a4d0ca4", "class_name": "RelatedNodeInfo"}}, "text": "Plate Mapping\n\nThis protocol dispenses different volumes of liquids to a well plate and automatically refills the pipette when empty.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 135, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9215469c-3a99-45c3-8979-b22e4d10d0d3": {"__data__": {"id_": "9215469c-3a99-45c3-8979-b22e4d10d0d3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "eb09b3039aac48da8db9f70640377f35e1ea40ee089c546a2f2de04385e66a8b", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=\"D1\")\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D2\")\n tiprack_2 = protocol.load_labware(\n load_name=\"opentrons_flex_96_tiprack_200ul\",\n location=\"D3\")\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=\"C1\")\n trash = protocol.load_trash_bin(\"A3\")\n pipette = protocol.load_instrument(\n instrument_name=\"flex_1channel_1000\",\n mount=\"right\",\n tip_racks=[tiprack_1, tiprack_2])\n\n # Volume amounts are for demonstration purposes only\n water_volumes = [\n 1, 2, 3, 4, 5, 6, 7, 8,\n 9, 10, 11, 12, 13, 14, 15, 16,\n 17, 18, 19, 20, 21, 22, 23, 24,\n 25, 26, 27, 28, 29, 30, 31, 32,\n 33, 34, 35, 36, 37, 38, 39, 40,\n 41, 42, 43, 44, 45, 46, 47, 48,\n 49, 50, 51, 52, 53, 54, 55, 56,\n 57, 58, 59, 60, 61, 62, 63, 64,\n 65, 66, 67, 68, 69, 70, 71, 72,\n 73, 74, 75, 76, 77, 78, 79, 80,\n 81, 82, 83, 84, 85, 86, 87, 88,\n 89, 90, 91, 92, 93, 94, 95, 96\n ]\n\n pipette.distribute(water_volumes, reservoir[\"A12\"], plate.wells())\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1444, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9e067826-57fa-43bb-8dea-4f30569f03a6": {"__data__": {"id_": "9e067826-57fa-43bb-8dea-4f30569f03a6", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "69a81ef20efe404eee5b7ffeca48683c6957dfd549922da91fa0c7497ba7039a", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\nmetadata = {\"apiLevel\": \"2.19\"}\n\ndef run(protocol: protocol_api.ProtocolContext):\n plate = protocol.load_labware(\n load_name=\"corning_96_wellplate_360ul_flat\",\n location=1)\n tiprack_1 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=2)\n tiprack_2 = protocol.load_labware(\n load_name=\"opentrons_96_tiprack_300ul\",\n location=3)\n reservoir = protocol.load_labware(\n load_name=\"usascientific_12_reservoir_22ml\",\n location=4)\n p300 = protocol.load_instrument(\n instrument_name=\"p300_single\",\n mount=\"right\",\n tip_racks=[tiprack_1, tiprack_2])\n\n # Volume amounts are for demonstration purposes only\n water_volumes = [\n 1, 2, 3, 4, 5, 6, 7, 8,\n 9, 10, 11, 12, 13, 14, 15, 16,\n 17, 18, 19, 20, 21, 22, 23, 24,\n 25, 26, 27, 28, 29, 30, 31, 32,\n 33, 34, 35, 36, 37, 38, 39, 40,\n 41, 42, 43, 44, 45, 46, 47, 48,\n 49, 50, 51, 52, 53, 54, 55, 56,\n 57, 58, 59, 60, 61, 62, 63, 64,\n 65, 66, 67, 68, 69, 70, 71, 72,\n 73, 74, 75, 76, 77, 78, 79, 80,\n 81, 82, 83, 84, 85, 86, 87, 88,\n 89, 90, 91, 92, 93, 94, 95, 96\n ]\n\n p300.distribute(water_volumes, reservoir[\"A12\"], plate.wells())\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1345, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ecd31646-bf80-42af-99f3-2788fe59ea15": {"__data__": {"id_": "ecd31646-bf80-42af-99f3-2788fe59ea15", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "93099d44-6852-4806-85ab-84d654489dbd", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "79832144449b7b61730a0a88bc3252302935757989d5ba46280d3245f2cffcaf", "class_name": "RelatedNodeInfo"}}, "text": "Adapting OT\\-2 Protocols for Flex\n\nPython protocols designed to run on the OT\\-2 can\u2019t be directly run on Flex without some modifications. This page describes the minimal steps that you need to take to get OT\\-2 protocols analyzing and running on Flex.\n\nAdapting a protocol for Flex lets you have parity across different Opentrons robots in your lab, or you can extend older protocols to take advantage of new features only available on Flex. Depending on your application, you may need to do additional verification of your adapted protocol.\n\nExamples on this page are in tabs so you can quickly move back and forth to see the differences between OT\\-2 and Flex code.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 670, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f": {"__data__": {"id_": "4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ced7c12d-3792-403e-9d14-2a51a9448fc0", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "364e63a802a3ae5dcae15301da37cebcada54b033e2e13d2b1c554b3234b2db9", "class_name": "RelatedNodeInfo"}}, "text": "Metadata and Requirements\n\nFlex requires you to specify an `apiLevel` of 2\\.15 or higher. If your OT\\-2 protocol specified `apiLevel` in the `metadata` dictionary, it\u2019s best to move it to the `requirements` dictionary. You can\u2019t specify it in both places, or the API will raise an error.\n\nNote\n\nConsult the list of changes in API versions to see what effect raising the `apiLevel` will have. If you increased it by multiple minor versions to get your protocol running on Flex, make sure that your protocol isn\u2019t using removed commands or commands whose behavior has changed in a way that may affect your scientific results.\n\nYou also need to specify `\"robotType\": \"Flex\"`. If you omit `robotType` in the `requirements` dictionary, the API will assume the protocol is designed for the OT\\-2\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 793, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94": {"__data__": {"id_": "96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0e872a82a73fac2e0648bee56b8a851d7bdb1520bdff42bf3adba65d8c04d27c", "class_name": "RelatedNodeInfo"}}, "text": "Original OT-2 code\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the OT-2\",\n \"apiLevel\": \"2.19\"\n}\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 189, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a643d7bb-5024-4ccd-8e46-623292978454": {"__data__": {"id_": "a643d7bb-5024-4ccd-8e46-623292978454", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "31f6ff5b-ead6-436f-a961-dc7d8d29fa93", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b68a648f965a9e8d838d109b758e8a2dc7d4d2d2b4ea4526d559e65a421e5821", "class_name": "RelatedNodeInfo"}}, "text": "Updated Flex code\n\n```\nfrom opentrons import protocol_api\n\nmetadata = {\n \"protocolName\": \"My Protocol\",\n \"description\": \"This protocol uses the Flex\",\n}\n\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 223, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "86a1c76e-c2ee-4953-a619-dfbbfd9beb39": {"__data__": {"id_": "86a1c76e-c2ee-4953-a619-dfbbfd9beb39", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c97cb1caa04f6b06efefc30e0828f30e3130a9676858bcf0197e78d683029d24", "class_name": "RelatedNodeInfo"}}, "text": "Pipettes and Tip\\-rack Load Names\n\nFlex uses different types of pipettes and tip racks than OT\\-2, which have their own load names in the API. If possible, load Flex pipettes of the same capacity or larger than the OT\\-2 pipettes. See the list of pipette API load names for the valid values of `instrument_name` in Flex protocols. And check Labware Library or the Opentrons App for the load names of Flex tip racks.\n\nNote\n\nIf you use smaller capacity tips than in the OT\\-2 protocol, you may need to make further adjustments to avoid running out of tips. Also, the protocol may have more steps and take longer to execute.\n\nThis example converts OT\\-2 code that uses a P300 Single\\-Channel GEN2 pipette and 300 \u00b5L tips to Flex code that uses a Flex 1\\-Channel 1000 \u00b5L pipette and 1000 \u00b5L tips.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 794, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e36834c7-2a8f-4483-8ec0-413205b1dea5": {"__data__": {"id_": "e36834c7-2a8f-4483-8ec0-413205b1dea5", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "e508df84-9264-40c2-aa82-82315bc442e7", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "17747b7ea77ecf1be567ff9caa7b125375a16dc3b311b1c83ae5e9ae0fc2e5c2", "class_name": "RelatedNodeInfo"}}, "text": "Original OT-2 code\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tips = protocol.load_labware(\"opentrons_96_tiprack_300ul\", 1)\n left_pipette = protocol.load_instrument(\n \"p300_single_gen2\", \"left\", tip_racks=[tips]\n )\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 249, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "532697b7-ec72-41ad-9dbe-e1ed57b7917b": {"__data__": {"id_": "532697b7-ec72-41ad-9dbe-e1ed57b7917b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1b339f1f0d896116007b9e9c764dc8aea033b0f320be989b4f1187fd25d0ffe3", "class_name": "RelatedNodeInfo"}}, "text": "Updated Flex code\n\n```\ndef run(protocol: protocol_api.ProtocolContext):\n tips = protocol.load_labware(\"opentrons_flex_96_tiprack_1000ul\", \"D1\")\n left_pipette = protocol.load_instrument(\n \"flex_1channel_1000\", \"left\", tip_racks[tips]\n )\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 258, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e963a28d-552a-45f4-9ec2-76023245927a": {"__data__": {"id_": "e963a28d-552a-45f4-9ec2-76023245927a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "36d2a341-899f-4f94-95cd-a952609cd2fd", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "8f29ca2e5d994b43e240efe4e084e1595ca305013fe42c99102eff001a6d01f5", "class_name": "RelatedNodeInfo"}}, "text": "Trash Container\n\nOT\\-2 protocols always have a `fixed_trash` in slot 12\\. In Flex protocols specifying API version 2\\.16 or later, you need to load a trash bin. Put it in slot A3 to match the physical position of the OT\\-2 fixed trash:\n\n```\ntrash = protocol.load_trash_bin(\"A3\")\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 285, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9ce827fd-a136-4195-b8df-3d30e7dc210f": {"__data__": {"id_": "9ce827fd-a136-4195-b8df-3d30e7dc210f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "ac141999-281a-4017-85b2-b11e038c1dea", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "fc4186fcd79362ccc97ff03b0d4210d20c38cb23f6d6d35f61e7f43119445a48", "class_name": "RelatedNodeInfo"}}, "text": "Deck Slot Labels\n\nIt\u2019s good practice to update numeric labels for deck slots (which match the labels on an OT\\-2\\) to coordinate ones (which match the labels on Flex). This is an optional step, since the two formats are interchangeable.\n\nFor example, the code in the previous section changed the location of the tip rack from `1` to `\"D1\"`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 342, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe29e92a-4453-400e-ada7-86ec463cda92": {"__data__": {"id_": "fe29e92a-4453-400e-ada7-86ec463cda92", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a45566f761f2bf068ffffbcbfb5507b648991ac5cb2dcdb5c263bd91d393d6d2", "class_name": "RelatedNodeInfo"}}, "text": "Module Load Names\n\nIf your OT\\-2 protocol uses older generations of the Temperature Module or Thermocycler Module, update the load names you pass to `load_module()` to ones compatible with Flex:\n\n> - `temperature module gen2`\n> - `thermocycler module gen2` or `thermocyclerModuleV2`\n\nThe Heater\\-Shaker Module only has one generation, `heaterShakerModuleV1`, which is compatible with Flex and OT\\-2\\.\n\nThe Magnetic Module is not compatible with Flex. For protocols that load `magnetic module`, `magdeck`, or `magnetic module gen2`, you will need to make further modifications to use the Magnetic Block and Flex Gripper instead. This will require reworking some of your protocol steps, and you should verify that your new protocol design achieves similar results.\n\nThis simplified example, taken from a DNA extraction protocol, shows how using the Flex Gripper and the Magnetic Block can save time. Instead of pipetting an entire plate\u2019s worth of liquid from the Heater\\-Shaker to the Magnetic Module and then engaging the module, the gripper moves the plate to the Magnetic Block in one step.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1094, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a884050d-6aec-46e2-a38e-6bfda8af1a07": {"__data__": {"id_": "a884050d-6aec-46e2-a38e-6bfda8af1a07", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "02b98683-ef2d-4966-97be-17ff4f2b7b69", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "05f64d100254bcafd4362ec941e91e9fd4a03ceae13597099f0ca538a0eeffcb", "class_name": "RelatedNodeInfo"}}, "text": "Original OT-2 code\n\n```\nhs_mod.set_and_wait_for_shake_speed(2000)\nprotocol.delay(minutes=5)\nhs_mod.deactivate_shaker()\n\nfor i in sample_plate.wells():\n # mix, transfer, and blow-out all samples\n pipette.pick_up_tip()\n pipette.aspirate(100,hs_plate[i])\n pipette.dispense(100,hs_plate[i])\n pipette.aspirate(100,hs_plate[i])\n pipette.air_gap(10)\n pipette.dispense(pipette.current_volume,mag_plate[i])\n pipette.aspirate(50,hs_plate[i])\n pipette.air_gap(10)\n pipette.dispense(pipette.current_volume,mag_plate[i])\n pipette.blow_out(mag_plate[i].bottom(0.5))\n pipette.drop_tip()\n\nmag_mod.engage()\n\n# perform elution steps\n\n```", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 657, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9bbca8e2-87bb-4617-8884-95f1278f1c91": {"__data__": {"id_": "9bbca8e2-87bb-4617-8884-95f1278f1c91", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "c9d33a04-b771-4d2c-85cd-362cb664dee1", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e9dfb3ca0325c172eae6bc68b4a1ddd03fdb759a4dc9f82a1bb928435189de86", "class_name": "RelatedNodeInfo"}}, "text": "Updated Flex code\n\n```\nhs_mod.set_and_wait_for_shake_speed(2000)\nprotocol.delay(minutes=5)\nhs_mod.deactivate_shaker()\n\n# move entire plate\n# no pipetting from Heater-Shaker needed\nhs_mod.open_labware_latch()\nprotocol.move_labware(sample_plate, mag_block, use_gripper=True)\n\n# perform elution steps\n\n```\n\nThe Opentrons Python Protocol API is a Python framework designed to make it easy to write automated biology lab protocols. Python protocols can control Opentrons Flex and OT\\-2 robots, their pipettes, and optional hardware modules. We\u2019ve designed the API to be accessible to anyone with basic Python and wet\\-lab skills.\n\nAs a bench scientist, you should be able to code your protocols in a way that reads like a lab notebook. You can write a fully functional protocol just by listing the equipment you\u2019ll use (modules, labware, and pipettes) and the exact sequence of movements the robot should make.\n\nAs a programmer, you can leverage the full power of Python for advanced automation in your protocols. Perform calculations, manage external data, use built\\-in and imported Python modules, and more to implement your custom lab workflow.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1145, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "acf6b4c2-7e01-429f-b754-672e90a9d718": {"__data__": {"id_": "acf6b4c2-7e01-429f-b754-672e90a9d718", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "549786b0-3e20-4282-bed8-c66faacfbd49", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2713b6465700c0808e4c2356de901ef089e728748752dea07f753b7afd8c187a", "class_name": "RelatedNodeInfo"}}, "text": "Getting Started\n\n**New to Python protocols?** Check out the Tutorial to learn about the different parts of a protocol file and build a working protocol from scratch.\n\nIf you want to **dive right into code**, take a look at our Protocol Examples and the comprehensive API Version 2 Reference.\n\nWhen you\u2019re ready to **try out a protocol**, download the Opentrons App, import the protocol file, and run it on your robot.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 419, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "771c144d-788b-499e-b0c2-2d480b3c1010": {"__data__": {"id_": "771c144d-788b-499e-b0c2-2d480b3c1010", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fa485721-feeb-4f9f-ab71-d875f2ff3697", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "90e366179a6eadc840789e61aaef207f3624fdb37443362728e334b8c42c3767", "class_name": "RelatedNodeInfo"}}, "text": "How the API Works\n\nThe design goal of this API is to make code readable and easy to understand. A protocol, in its most basic form:\n\n1. Provides some information about who made the protocol and what it is for.\n2. Specifies which type of robot the protocol should run on.\n3. Tells the robot where to find labware, pipettes, and (optionally) hardware modules.\n4. Commands the robot to manipulate its attached hardware.\n\nFor example, if we wanted to transfer liquid from well A1 to well B1 on a plate, our protocol would look like:", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 530, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "8973f5b0-27f3-4e88-8941-d7b428473a1a": {"__data__": {"id_": "8973f5b0-27f3-4e88-8941-d7b428473a1a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "4e039f46-7ab6-421a-9f50-e53e055f829e", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "f61d96f4e1a1c68485c13c8838e6ccec2c48f786275488202703977a848ae2a7", "class_name": "RelatedNodeInfo"}}, "text": "Flex\n\n```\nfrom opentrons import protocol_api\n\n# metadata\nmetadata = {\n \"protocolName\": \"My Protocol\",\n \"author\": \"Name \",\n \"description\": \"Simple protocol to get started using the Flex\",\n}\n\n# requirements\nrequirements = {\"robotType\": \"Flex\", \"apiLevel\": \"2.19\"}\n\n# protocol run function\ndef run(protocol: protocol_api.ProtocolContext):\n # labware\n plate = protocol.load_labware(\n \"corning_96_wellplate_360ul_flat\", location=\"D1\"\n )\n tiprack = protocol.load_labware(\n \"opentrons_flex_96_tiprack_200ul\", location=\"D2\"\n )\n trash = protocol.load_trash_bin(location=\"A3\")\n\n # pipettes\n left_pipette = protocol.load_instrument(\n \"flex_1channel_1000\", mount=\"left\", tip_racks=[tiprack]\n )\n\n # commands\n left_pipette.pick_up_tip()\n left_pipette.aspirate(100, plate[\"A1\"])\n left_pipette.dispense(100, plate[\"B2\"])\n left_pipette.drop_tip()\n\n```\n\nThis example proceeds completely linearly. Following it line\\-by\\-line, you can see that it has the following effects:\n\n1. Gives the name, contact information, and a brief description for the protocol.\n2. Indicates the protocol should run on a Flex robot, using API version 2\\.19\\.\n3. Tells the robot that there is:\n 1. A 96\\-well flat plate in slot D1\\.\n 2. A rack of 300 \u00b5L tips in slot D2\\.\n 3. A 1\\-channel 1000 \u00b5L pipette attached to the left mount, which should pick up tips from the aforementioned rack.\n4. Tells the robot to act by:\n 1. Picking up the first tip from the tip rack.\n 2. Aspirating 100 \u00b5L of liquid from well A1 of the plate.\n 3. Dispensing 100 \u00b5L of liquid into well B1 of the plate.\n 4. Dropping the tip in the trash.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1665, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "807b4fcc-439e-49c0-b9d8-3ba3f605786f": {"__data__": {"id_": "807b4fcc-439e-49c0-b9d8-3ba3f605786f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "fc223eae-d408-4c09-965d-c425ba47b8d3", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "69c853bfda236a16d8cfe0bf90f68b62bcdfbe136cbbe522fbf48201e30f55f4", "class_name": "RelatedNodeInfo"}}, "text": "OT-2\n\n```\nfrom opentrons import protocol_api\n\n# metadata\nmetadata = {\n \"protocolName\": \"My Protocol\",\n \"author\": \"Name \",\n \"description\": \"Simple protocol to get started using the OT-2\",\n}\n\n# requirements\nrequirements = {\"robotType\": \"OT-2\", \"apiLevel\": \"2.19\"}\n\n# protocol run function\ndef run(protocol: protocol_api.ProtocolContext):\n # labware\n plate = protocol.load_labware(\n \"corning_96_wellplate_360ul_flat\", location=\"1\"\n )\n tiprack = protocol.load_labware(\n \"opentrons_96_tiprack_300ul\", location=\"2\"\n )\n\n # pipettes\n left_pipette = protocol.load_instrument(\n \"p300_single\", mount=\"left\", tip_racks=[tiprack]\n )\n\n # commands\n left_pipette.pick_up_tip()\n left_pipette.aspirate(100, plate[\"A1\"])\n left_pipette.dispense(100, plate[\"B2\"])\n left_pipette.drop_tip()\n\n```\n\nThis example proceeds completely linearly. Following it line\\-by\\-line, you can see that it has the following effects:\n\n1. Gives the name, contact information, and a brief description for the protocol.\n2. Indicates the protocol should run on an OT\\-2 robot, using API version 2\\.19\\.\n3. Tells the robot that there is:\n 1. A 96\\-well flat plate in slot 1\\.\n 2. A rack of 300 \u00b5L tips in slot 2\\.\n 3. A single\\-channel 300 \u00b5L pipette attached to the left mount, which should pick up tips from the aforementioned rack.\n4. Tells the robot to act by:\n 1. Picking up the first tip from the tip rack.\n 2. Aspirating 100 \u00b5L of liquid from well A1 of the plate.\n 3. Dispensing 100 \u00b5L of liquid into well B1 of the plate.\n 4. Dropping the tip in the trash.\n\nThere is much more that Opentrons robots and the API can do! The Building Block Commands, Complex Commands, and Hardware Modules pages cover many of these functions.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 1771, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fa435881-3edb-41ca-acfd-f41d536ae202": {"__data__": {"id_": "fa435881-3edb-41ca-acfd-f41d536ae202", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7441cec3-8b9b-479e-9148-647085f97e6b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c0d65b76c49b230149bc5f1c0d29e5fabf3026481879db68f3283e868708e7e4", "class_name": "RelatedNodeInfo"}}, "text": "More Resources", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 16, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6763610a-3b1b-4443-a79a-56b39abf7aac": {"__data__": {"id_": "6763610a-3b1b-4443-a79a-56b39abf7aac", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "9fffbffa-6cdc-4a18-a423-63b90a8ef09f", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bfdd8f206645412b1298e29fe85609263267d3d93e08ed694f09cefa018466be", "class_name": "RelatedNodeInfo"}}, "text": "Opentrons App\n\nThe Opentrons App is the easiest way to run your Python protocols. The app runs on the latest versions of macOS, Windows, and Ubuntu.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 150, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4112b27d-de6a-44de-bf7f-47e0a4cabf15": {"__data__": {"id_": "4112b27d-de6a-44de-bf7f-47e0a4cabf15", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6d273b5c-df54-4bcf-a76f-a34ab90c7e07", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "70adfc11c9c3530eb1b45c352ff93082e9bce95f99da432b1c8a6fbd901c6fc7", "class_name": "RelatedNodeInfo"}}, "text": "Support\n\nQuestions about setting up your robot, using Opentrons software, or troubleshooting? Check out our support articles or contact Opentrons Support directly.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 165, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91": {"__data__": {"id_": "d33b5915-e8d2-4b09-b8b3-f145bfbdfd91", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7630527c-681c-4aea-8cb1-80301045f7ce", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b881e9937e6276dd712becd6f0caeb3dfedf98e337b78c4d1e807e54f89e118d", "class_name": "RelatedNodeInfo"}}, "text": "Custom Protocol Service\n\nDon\u2019t have the time or resources to write your own protocols? Our custom protocol development service can get you set up in two weeks.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 161, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "89e6af8e-8503-4b1d-8405-5c284128fd3e": {"__data__": {"id_": "89e6af8e-8503-4b1d-8405-5c284128fd3e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "7d7982d9-15e8-48c8-be68-6432be3c9679", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "df451cc11f545ab0d53c6435593b58a402fb354bdbb5f6ff74c6ac074fb30c30", "class_name": "RelatedNodeInfo"}}, "text": "Contributing\n\nOpentrons software, including the Python API and this documentation, is open source. If you have an improvement or an interesting idea, you can create an issue on GitHub by following our guidelines.\n\nThat guide also includes more information on how to directly contribute code.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 293, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"09cba188-ceee-4056-8a92-de844661956a": {"node_ids": ["37e35979-0d3e-4318-95db-6500b6c1ab6c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "449c8982-fb23-4b3b-9681-751ea59bb2ef": {"node_ids": ["ce5416cd-156d-439e-ad33-04d2eda3d05f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2521aaa6-827c-4ab9-82c6-c3819cfd5dd4": {"node_ids": ["eb9fe0c2-2525-49c0-96d1-3bcbcc815e99"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "69beef59-0178-41eb-8e57-52ccdde86122": {"node_ids": ["5fc110a9-5b33-4c68-a179-5896b8fc210a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4a4cde6f-e9bf-4950-9eac-25fdfb0fc4fc": {"node_ids": ["7c03ecbd-a9c6-446b-8a8e-2cad41690d20"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ae968c2f-3d1b-4ece-8006-fc03f4c3f74e": {"node_ids": ["09b7e1ff-c1dc-418c-a7b9-b1685b8ce999"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c24b38c9-894b-4216-8b1a-fe5fd15934fb": {"node_ids": ["27fa039b-fe69-4713-98d1-a3c64b165183"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "28764aff-36df-4485-870a-cfac824afee1": {"node_ids": ["23df7c2f-a610-4aa5-9772-c60b136c4718"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c6b1e57f-77b1-497b-9874-90299e01ccd5": {"node_ids": ["35615553-1e95-4ed8-8173-ccebfd5ebbdb"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7b483c59-04ae-4352-b811-dd69cd19b494": {"node_ids": ["67baf74b-8983-4047-a9a6-5bcfb3347273"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3fc4a9fd-d57e-4ed8-9c92-777afa11e43c": {"node_ids": ["0367b4dc-58bc-45e6-8bbf-4770fcb2829b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bc634b57-3daf-4592-965d-12d8393abab9": {"node_ids": ["d802fbb6-1c8b-4540-b126-543f1cb58877"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "254a5442-b132-44db-84ab-b6bcb087dcf8": {"node_ids": ["8b853460-a294-4741-b13f-57e59580de1c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "abc08179-04a0-4568-b866-f54c8a658e48": {"node_ids": ["f8f00cd2-7871-47b0-a1f5-9b380df20766"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c9ce5806-ae57-4637-b33a-c20fc502fd13": {"node_ids": ["4850fc27-b132-4064-a67a-3f61df294b5b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fe58e97c-e0eb-4e79-bdb6-74824af9b86c": {"node_ids": ["4ccac28b-594c-4c6f-95b8-e58dc8ad48f7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b5be87b0-8eff-4406-8a71-e2abe07e82d3": {"node_ids": ["de927a9a-e05d-431c-91f7-a4603741e016"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6667925f-23c9-4290-80a7-1e8bd16eb65f": {"node_ids": ["8421e4dd-a2ca-470e-90cf-b80e1736f364"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0f4664ee-c0ad-4da5-bf7d-7b2ea0cfb5b6": {"node_ids": ["9a6c4417-5268-4d4b-88ea-6c1482255021", "0741252a-1649-4132-820d-aada866d9dff"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8ab749d2-d917-43f0-8d28-71379d61d6e4": {"node_ids": ["a044525e-a899-4a11-8033-1865e1803fc9"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a5852ce2-2220-465e-a945-c13a45057bf6": {"node_ids": ["dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "02f878f0-725a-4de5-9f2c-2a0672c3ac52": {"node_ids": ["3c9d167e-f7bf-45db-a795-bcc4b941cb4c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4eb7e094-b52a-44fa-9dbb-ffd9dcc18459": {"node_ids": ["313ab6ca-b3c0-47ed-bb86-4ef9d3750bde"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3ec800f4-7df8-4008-8b04-a61332e6aa42": {"node_ids": ["c6556b88-8149-40ed-895d-dc611533cba5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ab40a505-36f4-43e6-a150-cd85db235e67": {"node_ids": ["75c34353-c6bd-4fcb-90ec-d02aa625ab46"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "833dfd3f-1aea-4752-9f16-81636b443cd7": {"node_ids": ["8fac4829-a6e7-4159-8bb2-10e1859025b0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ac27b3c0-db2a-4cca-97b4-1027dadb6bfa": {"node_ids": ["9fca083f-9a6f-4f71-89b5-3ca5c98b1bed"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "87768311-dda0-4891-892c-f70a3d6d74df": {"node_ids": ["194206af-b2e8-42f9-8424-2174f55f3f2c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1932d374-b325-488f-88ac-9b6c15ed46ce": {"node_ids": ["35fdfb36-0f18-44d3-a476-1c281c5b4d67"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f7151b5c-15a6-483c-a65f-1a273be9cf45": {"node_ids": ["1982d6a8-22c4-4beb-a9bc-96e81ac08261"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5544be45-71a1-4200-891e-f3c0589ad98a": {"node_ids": ["5daeebb9-1856-41ae-a528-c28d9f2e3099"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ab11c7e5-042d-4dae-93ad-922ffd496201": {"node_ids": ["0b965522-311f-4ed4-9b89-44bdd2409aff"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ee844663-0f37-46bc-8e6e-04d87d9974b3": {"node_ids": ["8d8dadf8-3f5d-4388-8d63-acca8868c074"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a5b91ea5-97fb-46b2-8f16-1c1b5deb77ee": {"node_ids": ["991c8f71-96f2-4ce7-97fb-e2adfd81fa49"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2a765986-cb5c-483c-b423-2953f033b681": {"node_ids": ["3f708918-9bcb-4c0a-bd9c-c987901f8659"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "cc31f7c6-2e2a-4e80-8900-2fc7d64c7851": {"node_ids": ["1278ad97-268a-4707-9066-09d44fb74832"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e186910d-316a-4d76-8b72-0297597744ee": {"node_ids": ["532e020b-af47-4631-9116-743d24b89552"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7c5c740d-dbc4-4de1-b4f9-7e7d862c3f06": {"node_ids": ["9e212d39-504d-4779-83f0-355636b0de25"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8df44a2a-0e11-48d4-afd7-8f1f0ef5c064": {"node_ids": ["062f22d5-6e38-4cd6-a3f1-cf5700f9821f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "56da6737-1dee-46bc-b3d0-90e13a697962": {"node_ids": ["953ae347-eb9d-424e-b1d4-1d2cc5fd68a1"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bcb6f3dd-3022-4d6a-8264-1dd9321e710a": {"node_ids": ["926c9e8c-0a25-4512-88ba-697deb7cd1d6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "002b7e66-87f2-48b2-a83c-dad60727f3bc": {"node_ids": ["46cea481-4853-4b34-a148-91f2281b5148"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b30154d4-ed08-4bbf-b471-ae13a0be4ed3": {"node_ids": ["5428fbdd-f596-42e9-b75e-2e7e1e153e90"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a4e9e8ce-b526-4687-86c7-aa46c892e55f": {"node_ids": ["32a50608-96b5-4eda-bd89-6ad80ad73f62"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "929822da-fa3e-4d25-b523-db06a02797f4": {"node_ids": ["ae360743-3475-4f15-95b3-7c96f8878dbe"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "98da37bf-9477-4f50-acd0-8018c43a06bc": {"node_ids": ["179c2192-96a1-4557-8891-c408aa29e6ac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a0144f9d-4c3f-43e2-8a2c-51239d365bb3": {"node_ids": ["692705ab-306d-4be0-9fed-d651401eaadc"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6f343a13-6d93-4a4f-a07d-17234e8972a2": {"node_ids": ["f19d7e30-35c4-4be0-a9af-eecba6d7e8ac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "86d6342d-b6c6-44b1-abd6-09e10f17b87d": {"node_ids": ["8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "925a779b-d812-49fb-9d86-727b98ed7f66": {"node_ids": ["831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1517bbfa-266e-4d8d-a792-78af433ef831": {"node_ids": ["3a27b605-45a0-4bef-902f-c9b3c7171ebc"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e163b8cb-7027-49c4-9910-0266381e904d": {"node_ids": ["058bc3c5-2029-4b92-847c-c3f57e1b328c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9d22a53f-ec69-4924-b375-81f49499c45d": {"node_ids": ["cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3550a897-ae49-4ce5-a053-1a0433f522ad": {"node_ids": ["2cd9ecff-8914-42b5-802a-5b28162a87aa"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8c2b804e-74ce-427b-9fb4-c5f0ea5214ac": {"node_ids": ["30959e4d-8ce8-4b68-9863-a25703b0bf21"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9b65f6fb-3a51-4f67-9d91-7ca922db7c4e": {"node_ids": ["23fac348-3556-4651-936d-955a32b4defa"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7c4b3b23-4c7f-4ea4-a343-e59195ecffa3": {"node_ids": ["36bac6f0-91af-4538-83f6-35a0f61e115f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "52c5ad0b-89f7-4861-bdd2-4a8fce7ec57c": {"node_ids": ["34869ab7-7f4a-4116-b78c-8912e9ac80ca"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4db0cd75-c068-4b1b-9568-55edcc23e1d1": {"node_ids": ["655c55fe-0cc5-482b-9854-4c0d26faa928"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "db5bd995-4fd6-4f90-81d8-15d132492d89": {"node_ids": ["1c302ce2-13eb-4f5c-8197-be35d64921e4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3c5a26f3-84fa-4d50-ac01-1ad780986f5e": {"node_ids": ["f8eee05a-466d-4169-85ef-032419f8c5db"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "94ad5bad-5d79-4900-b224-fcb536f546dc": {"node_ids": ["4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9e84d06d-f07c-4287-9eee-91b4347ab105": {"node_ids": ["e37ac22e-a4f8-449b-a4f4-f1944e2bcfec"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "30086c6a-3f81-4256-90c9-76e799e54220": {"node_ids": ["47f78fc9-8cc9-4c02-94b0-cd16ff593dc2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "994280d0-881b-4da9-81e8-1b218ece448d": {"node_ids": ["d95791c3-d879-4147-aeb6-a448e2e56a23"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c88e5d1d-5caa-4a9c-a00d-3c92f6dff791": {"node_ids": ["6c2e3648-7641-41c1-83cf-2ef654b3e3c4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "585e7a5f-6ee0-42b5-ae41-d7b682789472": {"node_ids": ["47cdf033-1dfa-4a68-b87b-c3dfae5533f8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2f5f5e86-fef9-40f5-be31-b997cebc89fd": {"node_ids": ["9feb8655-b758-44b2-a591-e72e6e041b9e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3694702a-f07c-4cfe-977d-b63c4305e7aa": {"node_ids": ["92b6dc3c-4165-4d1c-94c8-c1f6f072408e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ee649dc0-00cd-45b1-86d4-e364661a165a": {"node_ids": ["263729a2-acb5-4d1a-8f8f-dbcd41fc56e0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "45f0751f-e74b-409e-92b3-56a5077e7b84": {"node_ids": ["c8e2752f-412f-40b8-ac12-0c82676020a0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "96147a63-462b-47b6-8b94-ba31bfba59f2": {"node_ids": ["1a7de58f-df68-474a-b536-a5204aea831b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "510d409f-a6fd-4c3c-8e37-7a70347ea8ab": {"node_ids": ["cd1d59b9-b560-4f69-b868-c136d63e29b0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "971eddd0-7c7e-4cbf-9768-2b203a024361": {"node_ids": ["7eb61bf6-a6fb-406f-9b98-866c97063e09"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0c3c8db0-1c9b-462e-8794-9e80ef607487": {"node_ids": ["864076b7-ed58-4051-b8b8-ae83d361d1ff"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b9cce625-c085-46ca-94c2-f459b33950a0": {"node_ids": ["9de99182-6404-45f5-9277-1bca0948ae98"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4065963f-dd8e-4c2d-a224-53e172f185cb": {"node_ids": ["15df1912-ef86-400e-8613-63812935df4c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7d1a37d4-2f81-46f8-a045-c3eea542e072": {"node_ids": ["68d47fad-bb4a-44a7-8c63-58050f005f87"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "29d0e92e-2f07-41ff-85a7-366097435880": {"node_ids": ["6162dc0c-8118-4b94-93ed-b8b693e3f908"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "200dbd2c-4feb-430b-a45e-e8815de81a0e": {"node_ids": ["05c70ffb-3451-4aac-9fff-dca65871b819"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0a572fee-480b-453e-b39b-d52c1860abf3": {"node_ids": ["89fbf4b9-69e8-4842-9a4f-b22c18d93601"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "066367a6-2ac8-4c3c-a99c-b3f6de5ee40d": {"node_ids": ["12b52d4e-62a9-485c-9295-ac3c7b7712e4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fa62c6c0-376a-4c4f-8ee7-ba0c39625ae1": {"node_ids": ["0e310153-ee47-45f3-913e-57ba9f58ad5d"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7e1e7ad6-59ea-4f7d-835b-42d53fb9449e": {"node_ids": ["83762a91-2b61-4ed1-a937-20c8d4fe6cae"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "69ce5701-aef9-4dca-8308-a1f0d8dfb17d": {"node_ids": ["7932423f-0047-496c-86f0-5c4a705fc98a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8eea9f35-5942-4a12-8b0a-afc11c521132": {"node_ids": ["49e57753-554b-4cf6-9f91-eef9976e20a8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "350795e8-f3c0-48bc-be44-dc2db7790d6e": {"node_ids": ["e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "aaf37c8c-f9d2-450a-8463-82cedd958758": {"node_ids": ["1f364fe1-4df5-46a1-95b2-00ea557d74ca"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a3f95be5-00a8-496a-9716-cfaabad3af83": {"node_ids": ["2e4d3c45-624f-4149-9374-fca2ed641f58"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f23264c4-1c2a-4b5c-ad26-329db3f6e926": {"node_ids": ["8aead8e6-2401-4dc1-8ce7-aa8d17625c6b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "98a14f91-efc1-484c-bd1c-168e4f107a8a": {"node_ids": ["74d3384a-7128-4168-9f8d-47d5cb6dee60"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1767df8a-429c-4ceb-a2c0-519f13a4207a": {"node_ids": ["770165d2-d4d9-42ea-aa3b-0451a0bb8cd8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4647e943-9fc8-4934-a54a-74c2ec98ed91": {"node_ids": ["3a3f4731-d358-48fb-8b0e-152ad5a2bc3e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4fe1e407-ad46-44b2-ad31-f2d6bf5179d5": {"node_ids": ["e9f07882-5921-41b1-883c-0396aaaef7ac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1d7e1f16-c8e8-491a-95ab-f9c8e1f15a0d": {"node_ids": ["df618784-f3bd-49f9-b3b9-88ac69087dc2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "56237d75-1153-4f73-a1e1-26b49b72701d": {"node_ids": ["fc6d620d-8967-4097-ba4b-5b8379b30435"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "38bb20f8-99e1-45f1-847c-7043f83b26df": {"node_ids": ["88d8279d-e0e5-4c63-8c40-03d0daf7cab7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1a73fed3-dc5d-4114-a921-be2d877d0e20": {"node_ids": ["ad557b52-361c-4391-ac61-5bb82b32a98c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "77b77dce-8938-4eed-8764-5f733b2cdb71": {"node_ids": ["06721709-3201-4bf4-ae18-7081ae33a6b8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a11b618f-9240-4a14-9c60-1cf964a8cdbf": {"node_ids": ["3c193164-9ac6-4c33-84eb-4f619cfc6d78"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a4e25329-5188-4bf9-8563-22b56735c8a0": {"node_ids": ["41fe424f-5356-4081-b566-ba0af32bead2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4a196e24-5646-402a-9474-530fd0866c44": {"node_ids": ["8fe81af3-bafb-49cb-ba50-d5f3bc347131"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a13c0e51-2e14-4ff8-b6a6-415120d62b33": {"node_ids": ["21ea6e25-467c-4f15-b2a4-6135d6ec3e60"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "76cdf8d3-70b0-4f11-bc92-00f3a6f9f814": {"node_ids": ["c11bd073-d374-4e7a-8539-38569a04d1ad"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f5420126-9745-42ea-a08b-bdf16577dff4": {"node_ids": ["fc2d5b78-43e7-4d5f-9d15-ca5fa841d368"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "043cf0bf-373b-4e4e-862d-62dea1de594b": {"node_ids": ["7e244ca2-5e29-43b7-8a3c-98549e4d97ed"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7a59eff3-3aa9-4fac-9d19-e29491007fbb": {"node_ids": ["39292e60-4e04-403d-9efb-39addde4ee28"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a0a807b9-4301-429c-bce9-46250c0647a5": {"node_ids": ["5003f6bb-5355-4147-8dc7-b40d9500e93c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "819670e0-6c9a-4836-8666-cd45980f05e7": {"node_ids": ["2b3514d3-df70-4353-a430-c9f44780a089"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5dda650a-ff1a-426c-ae7d-a62ff7cb64df": {"node_ids": ["6931ad56-a9f8-4e1f-8686-8d827b8c28d3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "93bb53c8-930d-46cb-82b2-662c0f732327": {"node_ids": ["9df6f9ed-1a20-4d07-b419-3a232c53067e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2f42a9cc-2e68-40eb-8472-1449ace5af03": {"node_ids": ["a7f8239c-e6f1-467a-ac29-2e5636515606"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "52040a53-e5ce-452f-9de2-1600f47352df": {"node_ids": ["6e672ef2-1d00-4b1c-845b-7bd6d8912ad7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "81c184ec-d6fa-40b5-9cf9-dbd5ac3d8e14": {"node_ids": ["4a6a49bc-91e8-4059-82b4-a5731f18fb81"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "33252fd8-1d83-4357-aed8-a15f4322e07b": {"node_ids": ["06c8f1be-09ed-4762-9739-a090b78e3bc0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c6c5aeb9-2930-4daa-9468-dc09ca99beb6": {"node_ids": ["e517b8e1-15d2-4458-87f4-4dfeb1811716"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "13d4320a-ce49-44a3-acf9-6e6c5f67ae49": {"node_ids": ["ff111f55-ae10-45e2-92da-a096318840f2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3021f7c1-9ebe-43b0-9452-6db7e6d49216": {"node_ids": ["46852915-14f3-4c56-b364-ffec623d1110"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2bfca846-68e1-40ac-9716-7d8d551ae833": {"node_ids": ["e0e3a3b2-1b4b-4a25-a497-8b630a09ba64"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0e4922f2-517b-4c9c-b1a8-7ca10adadaca": {"node_ids": ["25063585-9f14-4c7e-836a-a2956319e633"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a78142c8-9f68-434a-8f7d-64459282a32e": {"node_ids": ["604f912d-6dba-41cf-ae04-4146618412f1"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ce1a83e1-ee20-4579-bb8f-b9ecae516863": {"node_ids": ["b27f419a-1eb1-4044-a004-2181c718d9db"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8356bd9b-ef43-4463-9571-a521a944e9cb": {"node_ids": ["2e7b7a46-2077-4163-8fc6-ea5e0116eff7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "da1e6936-4451-4b4e-bdce-d4b96f7dfb19": {"node_ids": ["8dd3147f-9a7d-4a38-ab0a-bbaad8da0530"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "dc9394c0-64bd-49c6-944a-3e8d172218e1": {"node_ids": ["94932e90-bca7-4993-bc81-8c86542dccd1"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "70f399f2-2ff6-4259-92cb-bfde88121616": {"node_ids": ["692966a7-e54c-4abf-bc2f-c59557e551e7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "17bf3916-9433-4a71-b068-b422aa99263c": {"node_ids": ["e5157153-76fb-435d-b2c0-9ecdf6ce1241"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "63aca4cc-b3f7-4d8e-97e7-b0ecff1f9afa": {"node_ids": ["c2e2df9f-8609-44e2-8986-dec7ba509115"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "439904d7-435f-44df-bea3-fcd9d8bae6aa": {"node_ids": ["c02f556c-e845-4383-aa94-fe08bcb664e3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0db2233a-5a0f-438d-b198-cf1cc962ad14": {"node_ids": ["2407ed10-0410-4965-996e-0daf93ba18a9"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "25e3aeda-b157-4ee8-8db8-f05c116ef821": {"node_ids": ["ce755bb8-eb14-4a1c-897e-1fddeeaef178"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "07de5e2f-27b5-4fce-9875-ad2fe9ca8040": {"node_ids": ["a96fc25a-3f3e-46aa-84dd-82f6c3847183"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7512abb7-f21b-4ccb-9146-67085b74b414": {"node_ids": ["5593171c-b3d2-4d7c-85de-7e23b9578622"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bca153c1-f76a-4f5c-a384-063b344a6fdf": {"node_ids": ["b16eb01f-efdb-4a30-8dba-5369d9780275"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "81171af4-919d-4cc6-94eb-db878b7afce7": {"node_ids": ["f56de84c-1275-43ef-8612-2b179d6f6374"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bf2cb67e-6274-470f-93a7-e92a81c9d921": {"node_ids": ["c31b4d45-5ecb-4464-a5d8-823cd7ccccb2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4345b23a-d8e4-4600-977a-9364161fe6ba": {"node_ids": ["c1f1e583-eb55-4df4-8f4b-f567d260900b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d39cf93a-f881-4804-8922-023f2bd8514a": {"node_ids": ["82829188-ab31-45aa-91e9-7d523c175c66"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "03e098c5-6137-4b66-8a3c-94af492101ad": {"node_ids": ["36a400d2-2290-477c-837b-02475c4b2fbf"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "dc825136-ae1e-4706-becc-2e3088e4be4a": {"node_ids": ["c8623e15-c59c-401d-8078-8912707394c5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4fe7801c-ffcf-4b4d-a934-cb8e73926d53": {"node_ids": ["8d40faef-053e-4772-aa32-67f33f070223"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b894252c-f3b8-405c-bf4d-3dc5cbb999fe": {"node_ids": ["e1c93542-3556-41e1-a259-89aec374e6ab"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "00267259-f81e-4f0d-986b-ae00e970af85": {"node_ids": ["5a4eece9-67b5-43df-a81c-2f3c91b9fbce"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e98d606d-7464-4ade-844e-da68623e56b0": {"node_ids": ["033405c9-8636-4dfa-8ee3-4ce39b433530"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "82661f84-1ac9-47bd-a521-68a220f2133a": {"node_ids": ["539d2ce9-35c7-434d-825b-fd7c0df52057"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "95860c68-a20e-4c62-8a75-5d56d1a21209": {"node_ids": ["facc74ad-88ab-4424-8c73-5238bb1dbad7"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8881a89f-17ba-4098-be8c-9a52ea9634ac": {"node_ids": ["9bb7cacc-36ec-4e2d-aa2b-ae1f66268121"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ea255be4-579d-4684-bc02-342cc391567f": {"node_ids": ["250e7d39-44bb-46ee-b0e8-16ae0d439d8e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ae3b191b-a196-497f-92c4-234c181cdf11": {"node_ids": ["33975052-fe24-499e-a051-aa9a7d5a83e5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "18b66f27-4739-4350-9276-847c3ecacd5f": {"node_ids": ["3660adda-30c8-457f-b96d-c7d302555cb0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a1927e7a-1095-4bce-9cd7-0fd7fe294de0": {"node_ids": ["3a76b360-9b3b-44fc-b257-8c654892e217"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "773b3e28-5c02-473f-8ce9-7e73f7a8b373": {"node_ids": ["1e7e0852-9143-4d50-ad65-62c25c4d9a09"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "940cc22b-6433-4369-890e-3450e2d8c7f2": {"node_ids": ["6af18d53-c5b3-4f1b-b368-c570bddf9677"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "81ce1f78-d944-4136-b7d1-453b9768922c": {"node_ids": ["6a666477-1bfa-452f-bad1-682e5993dab0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ada64a07-acc0-4647-9c86-f31e156b6ea1": {"node_ids": ["a07fd493-ee5f-4964-88e0-bb56a446eb61"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e0f2df41-e1af-4e3a-b7e7-c55adf2eeac4": {"node_ids": ["8ed46f10-7f86-45c1-bef1-178a05b08468"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "89703fb4-6bdf-414c-8013-73a164077950": {"node_ids": ["64a43dd8-c4af-47f0-9faa-86d752cceb8f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fb5e8cd7-bd1c-4aae-ab84-3665fa11d5c9": {"node_ids": ["4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c403f04e-4ba6-4d1b-9214-fa6e66e333ec": {"node_ids": ["7e203c21-d2d0-443a-8ed1-f316aac108c5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d3fe8fe0-2614-4e57-bef2-4022c3fa3bea": {"node_ids": ["a77e394f-eda1-4b8c-9199-7d2247c9d872"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ed780a4d-0a72-475c-bca6-5d65e9a568aa": {"node_ids": ["0eed630c-d594-4360-8a84-1ea74e62f0f5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "85bf6a1a-1e62-4fe4-aed3-4a6d4b7ebd9a": {"node_ids": ["829f1387-308e-421c-95ba-caff21e34bd6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a1447816-0a63-4617-baec-c158bc7a73e0": {"node_ids": ["0c72e829-7c9a-47a6-af31-9fe3543bd78c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3c57573a-4c54-4c29-998f-ccf231b85e67": {"node_ids": ["3473e066-8864-4ea6-b7bf-17c42665b599"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3d9c4af1-b7df-4a34-8f0c-cedbd3ccf44c": {"node_ids": ["4f305c42-d33f-4b8e-bf77-2ea69ace07c8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b18ae7df-672a-4908-b9b8-f40dc4fce3e1": {"node_ids": ["7c42db89-d590-4f93-9be4-b85a62312c04"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "72b26e51-20f6-4f10-9d3f-ab26c95a7d34": {"node_ids": ["270348f2-a166-4b96-b28a-2d3bb355e69d"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "11d304bd-8210-4438-946c-abb419be8050": {"node_ids": ["5179c470-17ef-44b7-bf30-d724ca8e6a1f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f0e095c9-538f-4504-b5c5-f2b9998d9e63": {"node_ids": ["52ee1b52-84d7-4379-b769-db8143089438"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "91137d3c-54e9-4f5f-af29-a7bf0c9f1be9": {"node_ids": ["a1e179c3-b165-44f2-8a8d-4ee950a281ae"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "052284ab-4468-410b-a097-37780fb983a3": {"node_ids": ["cad669ae-bc96-48f6-86be-a7411388ef8e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d8396d01-1bbd-4fec-951b-b547a4c01d4d": {"node_ids": ["b3493286-134f-4c81-a543-24c1f94dee97"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f9a70f5b-3de7-4eda-8061-709ec79a9a8e": {"node_ids": ["5976df2c-2edb-4c93-8d0e-ffbb0c0435ef"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d26d608d-bbca-4822-b7e7-58ad8d907718": {"node_ids": ["0969b5a3-21bb-47da-ae53-9e00bdb2279c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3093d9eb-9b8e-4d32-92ad-674e99b34a35": {"node_ids": ["433c4723-5242-4c38-8142-e9763b695dd5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e20ab5cb-398d-4e61-86f1-d54f0268ad4e": {"node_ids": ["702aa6c4-d709-4041-97ee-4c6a5c57bce3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9390e5ef-048c-4731-b84c-d2a3beabc7e4": {"node_ids": ["9f2b3683-b974-4b5b-b968-6e44eb6bb66b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ffdc5973-3a35-4f93-a241-fd70a1aaaac3": {"node_ids": ["05636a71-c471-4479-9045-250d59b4d199"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3132d0f7-dd7c-4538-bcb5-43d3127d5bd8": {"node_ids": ["c94bb528-4956-46d5-a4df-e650f74f362b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "eaffce81-f1f5-4959-8d60-57953a8e0c10": {"node_ids": ["3082a394-1cd7-49c3-b83e-c91ddfda982e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b17a26e9-b2b6-47a3-bde0-995ce61663c5": {"node_ids": ["447a6e0c-677f-4539-85ca-5c72307a10ff"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "261c2441-4165-45c2-a10a-3cd23dac57ba": {"node_ids": ["9d43bf2f-9b6d-4c9b-a597-06f9ca591520"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "04d71240-fcf2-4072-9d74-694f4bec8996": {"node_ids": ["2505f174-98d2-49b4-93f6-9c62039cb6b5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "eca02d79-3b00-46d0-b1ef-4de8a2b4dedb": {"node_ids": ["a88df31e-35ea-45b1-b79f-9a4ec0846da3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5528953a-e1a8-4009-b345-c4876ad330b8": {"node_ids": ["28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "07a7c1c7-e2f3-4eb6-854c-1eae21b78926": {"node_ids": ["903c910e-a6de-4f76-817c-0dec155e870a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "89b86a7c-90a7-4d81-80d7-411815e888c7": {"node_ids": ["5866a289-b3da-4d3c-a001-59a4006b5bf9"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9e841c0b-7318-4c90-ad4c-24737d861c6c": {"node_ids": ["87f2d885-6a0d-4836-b824-ecdb1829b746"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2e5295ae-4d3a-419c-860f-80f5629a27b5": {"node_ids": ["c0af9c06-941b-4a98-a980-1dcec14868c8"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bc47c26b-5a4a-4652-a406-7606309d4f59": {"node_ids": ["a3e79b45-f8b0-4dfa-999d-d5f7e54dee25"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e1f2f0c9-bdda-43be-bdbc-c5c709a6217d": {"node_ids": ["e4eb8e3c-4116-4d81-890a-a1934ed06eb0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "cf47c818-12ee-44d4-a5aa-d5e525c1fa32": {"node_ids": ["78e994e5-dbda-4960-9a58-8a398eec44ef"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "820d78fb-3334-4b41-b8eb-1717ee427bb7": {"node_ids": ["7dc088d8-125c-41e5-bd34-8ebbf828e918"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f60cee55-6027-4d81-bbf0-34ef4d9a1123": {"node_ids": ["4a936b4a-b9fb-455e-9162-319f1b8112be", "7549afef-c458-4c82-8149-e115c99cd800"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3ecf90ab-94be-44d6-9343-605105ac497e": {"node_ids": ["2c71e182-997d-4d7e-834f-b7dc138e7830"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e29a0a17-0ea8-4972-a9a4-c569e6365701": {"node_ids": ["6901c4f7-aa1c-4fd9-94e9-085fab8deae4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a607feeb-849e-4eff-b35e-c4c5c2ed2dfa": {"node_ids": ["c78e873b-ee41-49a4-90f5-b0d8887422c3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "abb61571-5049-463c-b4d9-e8a6cdf330eb": {"node_ids": ["797a48ee-2ac2-4e05-9bb0-8e4c54754eac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3b959379-13d3-4c66-820e-ef6ae5e54595": {"node_ids": ["c676458f-04d8-4041-9ea1-c947010dff53"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "18a09b06-e824-4435-93db-f2259404c708": {"node_ids": ["e827f3f2-8e1c-44ff-8395-1f03ae9bd72c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d0501e05-225c-439b-b9e7-e1ee48e6bbf2": {"node_ids": ["5631ea16-89c4-4cd1-a971-2e1bd07dee2d"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "26c7eb2c-6ac1-4f87-af66-939fa469d08b": {"node_ids": ["f16298e7-2f76-42f7-9d44-c1fab304825b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b22c7013-5aeb-4343-861e-30e36c76d314": {"node_ids": ["372e09b4-a41b-491f-a954-717248f64974"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "58f2d3ed-b7f1-4c04-843c-70a0e6384767": {"node_ids": ["ca3e349b-fcaa-4872-9016-4f32585cd66c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f5146bfd-dd6d-48c9-9108-5d654c5aa181": {"node_ids": ["4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d547d570-592d-4cb0-a51f-c504d544c191": {"node_ids": ["c01cad1e-baf0-4514-b6ab-3df8dc973827"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "aac2e449-4cee-4fbd-9697-f93360b76e19": {"node_ids": ["870c3230-bcd3-49bb-a774-c3c265fad517"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0a17f09a-4878-4fb4-8d8f-d96f1ef94378": {"node_ids": ["2c315702-c74a-425f-95cf-aa7f21ba6275"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7a9ee7fb-d475-48d4-8862-cafba70d52f6": {"node_ids": ["9698d911-4ec1-4061-8ec4-c9de86f0ec0b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "55d1ed2a-0317-4b59-8e86-bf9f3a56c120": {"node_ids": ["2c94d49d-17af-41e4-9621-7b5e6450b367"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "1b44faef-8bcd-4009-b5b8-dcdccb43b671": {"node_ids": ["6dd6e451-5c6d-4da8-91e6-5b809cbb2260"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fd7af22f-541c-4da0-be81-fac44d754150": {"node_ids": ["0d614f08-4ea9-4e7f-9251-b35cf32549e5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6126b206-1c15-44f6-8d50-00b6ccccb844": {"node_ids": ["b8fe2fb5-e262-498e-a07d-05ad188e6b6e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "94f7738b-dbba-4421-b9f8-e30b407d68c4": {"node_ids": ["d9f10a91-8e5f-4f4d-8f87-2af269a66b92"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d380bb2c-5c9c-4fae-8701-85992edebf36": {"node_ids": ["425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2a7bde72-319e-4edc-8264-af5c78526b40": {"node_ids": ["bef3b984-31fd-42b0-b39d-8f2fe64fb443"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2c7732cd-282e-4d2a-a4ff-2b93be2fd5ac": {"node_ids": ["befeab50-a804-46f1-8722-bc31dc6d52e4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f818a16b-4e4f-4c9a-b7f2-4d55a50f2a53": {"node_ids": ["b67796a6-a9cf-4173-a287-4adff8df6d4b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5c7600e2-0aaa-476d-b0a9-287364ac394f": {"node_ids": ["67b7b9b7-4890-40cc-8c10-e546a2826cba"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "116ab9b4-3b96-4b46-a6e0-881bb74204b2": {"node_ids": ["2375910a-0684-4ff8-955d-d8b8b43535d1"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "17a7f0db-4838-4fe7-ac91-84a8a186aa47": {"node_ids": ["5ee4322d-3a2d-4bc5-9108-537d571eccc6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "81f36c6e-7ea2-47f6-aed1-f6bcdfcad4e8": {"node_ids": ["59c4c9ed-f963-4760-93b6-dd7c3a97bb54"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6bb4b22c-ceb1-4de3-b65f-9a21c9601d8a": {"node_ids": ["67cfb681-888c-4ffc-82f5-f02734835b54"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b5109216-4f8b-483d-bc75-09ee3d9a3d67": {"node_ids": ["8698b735-ee66-4b51-8f50-cdb723ee0c48"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bbd22630-8de7-4267-adf3-b6aa5c88fab2": {"node_ids": ["e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "aef4bcc2-7867-4303-8aad-2e2a449d5adc": {"node_ids": ["d2f6bd59-18bb-493f-9220-a47f52e372fe"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "723f8d66-e2e8-47d9-b105-d22b0ba0b4e7": {"node_ids": ["778d0172-21c2-42ce-9fd0-d50ddecb9b57"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "578c62b5-566e-4b6a-9aba-2a47bc4d940b": {"node_ids": ["63186939-9531-4e5d-82d5-3fcf84655976"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9b4076de-f213-4e18-8c5d-fd15e2b33525": {"node_ids": ["23fda1f4-7289-49ec-a59f-37a7a607cba0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2b5e9d7c-2bb3-4cf2-80e9-2cfbfc655992": {"node_ids": ["3fb2305d-b12e-48c4-a356-1600c347320c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4581fd35-6736-41bc-a784-30ec63c244de": {"node_ids": ["f56976c9-3bd6-444b-9dca-3bf42084a562"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0234af90-0173-4e66-91a9-2619cf5419fe": {"node_ids": ["95828a01-1119-4b71-946a-c8883f2c5504"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c4871e12-b268-4e58-8beb-c71f7240f4d8": {"node_ids": ["27e555a1-e899-4710-b03c-4fb670054999"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3c9e32bd-90f7-4b7f-b162-9346c2ed6fb1": {"node_ids": ["772005e7-7276-43a5-b3ba-42c7290f0c36"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6255259a-15ae-46af-9cff-b8c237f91979": {"node_ids": ["f69522d9-1b62-4924-a6ec-c4aa281058da"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "51358090-0de4-472b-8270-27418c9f50f1": {"node_ids": ["ddef57cf-090c-4585-aa1d-49e2a1e6748b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "24a26843-fa30-4ebf-b858-3a378bde9613": {"node_ids": ["50c21c11-745d-4649-9456-0b291bf29d19"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3117244e-bff6-4c32-b6d3-b8c25474aa23": {"node_ids": ["23b7a614-0705-4541-905b-6ef766812a2a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fce78388-527a-4613-b394-acf00394ed64": {"node_ids": ["fec6b74a-2339-487b-bd6f-71fdec66b791"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "02f8ebfe-5498-4788-add6-913a59d7f92b": {"node_ids": ["bead822c-bd11-4d9e-a811-2e377bf32cc0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "61379e76-3b4f-46ca-aa98-5fff36e5049a": {"node_ids": ["7ac58128-4d5a-455e-a473-58d1e7958af6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c0934b85-61ce-4bfb-807d-d698d29af649": {"node_ids": ["0314465c-4399-4d05-87d5-4cedf3250956"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b772fbd8-ea12-4ef4-8cad-a1f31386851f": {"node_ids": ["80067795-fb75-46ce-bf5a-61015161aa5e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ea62f547-cf29-43cc-81b7-f2b7fc01dc89": {"node_ids": ["16606eae-35ef-4e6f-97a5-f80ad56958ee"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "db065740-e8df-4964-8479-19a07336f6a6": {"node_ids": ["da93de1b-e8c4-4faf-9df5-0304aa74c9c0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ac4b8d89-3ebd-45c6-8a42-38db55090244": {"node_ids": ["5472cd78-c030-4815-a2f1-33245f14f018", "4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6f93e1d4-5464-4054-8830-2ac07c97ef87": {"node_ids": ["40fa34fe-7285-477b-a1c6-5cb2550a84fc"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ac9c4050-8ae6-4110-b0cd-29a61aec89eb": {"node_ids": ["2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "281ee50b-5a60-45d4-8a7a-aa7193e18dc1": {"node_ids": ["b69caf6b-5590-4518-a963-d1998db8440a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6b7a9e53-5661-441a-832b-75efd2b7b287": {"node_ids": ["0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "47229daf-7ed7-4391-a744-ad1691bc03a9": {"node_ids": ["f1790d38-4768-4282-acf3-32ea03ee760f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a91ce4e8-4bbf-42a0-ad76-1cea58f821d1": {"node_ids": ["4663c078-0471-4f17-b704-37a847b3578a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c134065a-14f0-482b-a69d-91baacb5d494": {"node_ids": ["ee00678d-0531-43a6-b4ee-24d47f7b854c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "de3d45e9-9ea1-4f75-949e-e30b0052d539": {"node_ids": ["40002650-dc78-4ca1-a842-1d2820a2c9bc"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e42c5557-69f6-40e3-8c11-66ae89fd0456": {"node_ids": ["9687aeb0-7763-4074-a0a8-c49058fb0ffb"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f087d8d5-c0f0-4662-b436-3ad78cd14624": {"node_ids": ["2abc0d0b-6666-4b3e-983e-36e820323e08"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9562c403-41d1-416a-9246-94e21f9337bf": {"node_ids": ["c914503e-2bc4-431a-941b-5ecf283e5a35"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "30a8e840-ff81-4b29-a293-91a421431712": {"node_ids": ["283ad8c4-c5d4-4113-9c45-6e42828c2bd6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "863a67ad-1fbe-4efb-9174-0e58326f16f8": {"node_ids": ["12fc93de-6a8b-45de-ae87-9e824744e5ac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "a0321fdb-df92-44b3-bb11-95a8a7f699fb": {"node_ids": ["fe6d77c4-5744-4c45-bfff-03e9475499a4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e3af0884-3e2a-4ed5-be90-99c0249959de": {"node_ids": ["b7e4ca92-12ea-41c6-bbfa-4f2f74222d58"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2856558a-faed-4f27-885c-73094f210748": {"node_ids": ["4431616b-6726-4488-a27a-09e0aad7a27a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6edce869-c74d-4d53-a8c4-8a0d4f8754d5": {"node_ids": ["5795a666-d615-463a-82d5-56ceeac30476"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4cf5cf0a-71e7-492e-839c-fe733e123ca6": {"node_ids": ["85527e92-eb41-458f-91a6-751735c62a23"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f7f383d3-70de-4969-ab49-14d84a7275a5": {"node_ids": ["129acce9-c3ca-4527-a94c-a1bd7bd08e33"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b393549d-e6ae-4799-acb2-1b3d290b4de9": {"node_ids": ["b051c646-22dc-44c8-823f-dea41902b9e0"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "57ee30fb-db22-4b07-be22-1d6760eaed09": {"node_ids": ["e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5b716c2d-7dee-48d8-8294-bf942bde1c5a": {"node_ids": ["1e846a4d-efb9-4bb0-a805-b24da1fd6101"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3aec12a8-ff5c-4f79-8c87-fe9d62a7503e": {"node_ids": ["c5de2a2e-604d-44d7-9122-f1e00ef9720b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "f0ba834a-0f18-4a90-844b-b459fee5f3ef": {"node_ids": ["cd36e93f-1652-488b-8342-eb7c92b5ce6e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e53792bc-88da-4a55-931e-697331331fa0": {"node_ids": ["d3f390f8-3dbb-458e-8d82-9c370e27ebca"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6e88adb5-1c7e-4bb2-8c7c-7bb8bef3c75e": {"node_ids": ["dcd995cc-58e9-4129-b3c8-9a603995d898"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "256ee66a-bf3e-46c1-8433-1230e80c4df6": {"node_ids": ["9fc08083-9edc-4125-8b2c-7bd929dd5715"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "62db627e-707b-42ee-8ed1-bc3b95a5226b": {"node_ids": ["8bd35713-c665-4e9f-9747-a0e1b9042d52"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8e96e73f-0db8-45e8-b6f3-7f4e0409ca8d": {"node_ids": ["be5507b1-4d59-4284-84de-5e0ba0888c5e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d482ea10-3517-45c2-8fd9-2da2ed47e0c4": {"node_ids": ["24ee9238-b514-455f-a71e-f5eedaef6996"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "23c61c5b-c91d-4ab1-ad50-f6bf9aec7159": {"node_ids": ["70541635-e91b-4d03-ad84-9cd710d8d48e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "477228f3-473d-497a-8bcf-8fe22f733d3d": {"node_ids": ["1331adc2-e36c-4df6-8b61-c8f12fedbf36"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ee2f96ea-ae01-491e-aa4b-1df5caee714b": {"node_ids": ["c85152fe-d901-4aea-9c99-3feb491c997a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6e24fcfd-feef-44d4-83fb-d8c0ca66a502": {"node_ids": ["be39d582-2687-4dc2-ab1a-811fd8a7f64e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "19b2f7c6-149e-4008-9ca2-4d21443b7491": {"node_ids": ["6de89262-d55e-4917-ba9b-944c56f0494a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8dd2ae1f-77fb-4751-bb3a-a12722544b0e": {"node_ids": ["cf1beb93-e72c-4e87-9196-8a06ca2540ab"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ca041e39-9cbf-4183-bacb-9da0fab1ce2a": {"node_ids": ["53b5eeef-535d-450e-a8d3-6b96ae833a9d"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "961c6b2e-0554-4794-9539-48df93aeeef2": {"node_ids": ["5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "072db9fa-5f01-4a27-a171-020fe76f3b37": {"node_ids": ["20b1648d-1010-4845-982a-f3aeb7cb9df9"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3c511f34-48a5-44a5-83a0-86b71b9f0ed1": {"node_ids": ["66619eac-0a60-42a9-b2c5-f7e4d638dc44"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "bfcb54d8-e737-441b-9ce5-ce7137f10c3a": {"node_ids": ["1c786628-34fb-42fe-9f8b-5f20c447803b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "0c956911-fdd3-4a8c-9660-127fbf17afa6": {"node_ids": ["e67e559b-ac83-4048-aa23-7fb4cf7634fd"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9dd98e85-62b3-4092-b586-cfea3d4cc3b4": {"node_ids": ["8deac4ba-b6d2-4fdf-9a0c-3193562a049c"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "d4d759c8-7b5d-4493-9d65-0cd70589639f": {"node_ids": ["82e247ec-c751-43cf-856c-4b9305678284"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e85728a8-9eb5-4e9c-859f-2cb3459d0efe": {"node_ids": ["10e5d866-558a-499d-ad57-57208363e8bb"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "8b6c6ca8-b652-45ee-9b60-ada61dd90b70": {"node_ids": ["e666b745-fe5b-4470-ba64-7ecd573acbb6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9653c0f4-9b86-4c7d-aaf5-174e1013ddfb": {"node_ids": ["6a0a74b4-f508-4b7b-ae58-3336e57e9c16"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6e6a800b-bf6b-4854-a3d3-dae4cf7adb6b": {"node_ids": ["9215469c-3a99-45c3-8979-b22e4d10d0d3"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9eb37a65-cbca-4d0e-aeae-dca0eef79e6d": {"node_ids": ["9e067826-57fa-43bb-8dea-4f30569f03a6"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "93099d44-6852-4806-85ab-84d654489dbd": {"node_ids": ["ecd31646-bf80-42af-99f3-2788fe59ea15"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ced7c12d-3792-403e-9d14-2a51a9448fc0": {"node_ids": ["4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5fe49b21-0ce1-4b5d-8c39-0711c0f2babe": {"node_ids": ["96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "31f6ff5b-ead6-436f-a961-dc7d8d29fa93": {"node_ids": ["a643d7bb-5024-4ccd-8e46-623292978454"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "2ddd3117-607a-4cbb-82cd-1d339e9f1e6f": {"node_ids": ["86a1c76e-c2ee-4953-a619-dfbbfd9beb39"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "e508df84-9264-40c2-aa82-82315bc442e7": {"node_ids": ["e36834c7-2a8f-4483-8ec0-413205b1dea5"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ff4c7599-791d-4f71-b2bd-1bb00f98dfdd": {"node_ids": ["532697b7-ec72-41ad-9dbe-e1ed57b7917b"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "36d2a341-899f-4f94-95cd-a952609cd2fd": {"node_ids": ["e963a28d-552a-45f4-9ec2-76023245927a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "ac141999-281a-4017-85b2-b11e038c1dea": {"node_ids": ["9ce827fd-a136-4195-b8df-3d30e7dc210f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7bd4bde9-d1e4-48d5-881e-1cc1d8af604f": {"node_ids": ["fe29e92a-4453-400e-ada7-86ec463cda92"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "02b98683-ef2d-4966-97be-17ff4f2b7b69": {"node_ids": ["a884050d-6aec-46e2-a38e-6bfda8af1a07"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "c9d33a04-b771-4d2c-85cd-362cb664dee1": {"node_ids": ["9bbca8e2-87bb-4617-8884-95f1278f1c91"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "549786b0-3e20-4282-bed8-c66faacfbd49": {"node_ids": ["acf6b4c2-7e01-429f-b754-672e90a9d718"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fa485721-feeb-4f9f-ab71-d875f2ff3697": {"node_ids": ["771c144d-788b-499e-b0c2-2d480b3c1010"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "4e039f46-7ab6-421a-9f50-e53e055f829e": {"node_ids": ["8973f5b0-27f3-4e88-8941-d7b428473a1a"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "fc223eae-d408-4c09-965d-c425ba47b8d3": {"node_ids": ["807b4fcc-439e-49c0-b9d8-3ba3f605786f"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7441cec3-8b9b-479e-9148-647085f97e6b": {"node_ids": ["fa435881-3edb-41ca-acfd-f41d536ae202"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "9fffbffa-6cdc-4a18-a423-63b90a8ef09f": {"node_ids": ["6763610a-3b1b-4443-a79a-56b39abf7aac"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6d273b5c-df54-4bcf-a76f-a34ab90c7e07": {"node_ids": ["4112b27d-de6a-44de-bf7f-47e0a4cabf15"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7630527c-681c-4aea-8cb1-80301045f7ce": {"node_ids": ["d33b5915-e8d2-4b09-b8b3-f145bfbdfd91"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "7d7982d9-15e8-48c8-be68-6432be3c9679": {"node_ids": ["89e6af8e-8503-4b1d-8405-5c284128fd3e"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_docs.md", "file_name": "python_api_219_docs.md", "file_size": 353834, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219/graph_store.json b/opentrons-ai-server/api/storage/index/v219/graph_store.json new file mode 100644 index 00000000000..9aab8ead445 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219/image__vector_store.json b/opentrons-ai-server/api/storage/index/v219/image__vector_store.json new file mode 100644 index 00000000000..8534c56d469 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219/image__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219/index_store.json b/opentrons-ai-server/api/storage/index/v219/index_store.json new file mode 100644 index 00000000000..d1179edb62a --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"29742b73-5af2-4dbd-80c0-687b8a8fa76f": {"__type__": "vector_store", "__data__": "{\"index_id\": \"29742b73-5af2-4dbd-80c0-687b8a8fa76f\", \"summary\": null, \"nodes_dict\": {\"37e35979-0d3e-4318-95db-6500b6c1ab6c\": \"37e35979-0d3e-4318-95db-6500b6c1ab6c\", \"ce5416cd-156d-439e-ad33-04d2eda3d05f\": \"ce5416cd-156d-439e-ad33-04d2eda3d05f\", \"eb9fe0c2-2525-49c0-96d1-3bcbcc815e99\": \"eb9fe0c2-2525-49c0-96d1-3bcbcc815e99\", \"5fc110a9-5b33-4c68-a179-5896b8fc210a\": \"5fc110a9-5b33-4c68-a179-5896b8fc210a\", \"7c03ecbd-a9c6-446b-8a8e-2cad41690d20\": \"7c03ecbd-a9c6-446b-8a8e-2cad41690d20\", \"09b7e1ff-c1dc-418c-a7b9-b1685b8ce999\": \"09b7e1ff-c1dc-418c-a7b9-b1685b8ce999\", \"27fa039b-fe69-4713-98d1-a3c64b165183\": \"27fa039b-fe69-4713-98d1-a3c64b165183\", \"23df7c2f-a610-4aa5-9772-c60b136c4718\": \"23df7c2f-a610-4aa5-9772-c60b136c4718\", \"35615553-1e95-4ed8-8173-ccebfd5ebbdb\": \"35615553-1e95-4ed8-8173-ccebfd5ebbdb\", \"67baf74b-8983-4047-a9a6-5bcfb3347273\": \"67baf74b-8983-4047-a9a6-5bcfb3347273\", \"0367b4dc-58bc-45e6-8bbf-4770fcb2829b\": \"0367b4dc-58bc-45e6-8bbf-4770fcb2829b\", \"d802fbb6-1c8b-4540-b126-543f1cb58877\": \"d802fbb6-1c8b-4540-b126-543f1cb58877\", \"8b853460-a294-4741-b13f-57e59580de1c\": \"8b853460-a294-4741-b13f-57e59580de1c\", \"f8f00cd2-7871-47b0-a1f5-9b380df20766\": \"f8f00cd2-7871-47b0-a1f5-9b380df20766\", \"4850fc27-b132-4064-a67a-3f61df294b5b\": \"4850fc27-b132-4064-a67a-3f61df294b5b\", \"4ccac28b-594c-4c6f-95b8-e58dc8ad48f7\": \"4ccac28b-594c-4c6f-95b8-e58dc8ad48f7\", \"de927a9a-e05d-431c-91f7-a4603741e016\": \"de927a9a-e05d-431c-91f7-a4603741e016\", \"8421e4dd-a2ca-470e-90cf-b80e1736f364\": \"8421e4dd-a2ca-470e-90cf-b80e1736f364\", \"9a6c4417-5268-4d4b-88ea-6c1482255021\": \"9a6c4417-5268-4d4b-88ea-6c1482255021\", \"0741252a-1649-4132-820d-aada866d9dff\": \"0741252a-1649-4132-820d-aada866d9dff\", \"a044525e-a899-4a11-8033-1865e1803fc9\": \"a044525e-a899-4a11-8033-1865e1803fc9\", \"dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3\": \"dcbc5aba-62d2-431b-83b9-b0d7a8ebb9d3\", \"3c9d167e-f7bf-45db-a795-bcc4b941cb4c\": \"3c9d167e-f7bf-45db-a795-bcc4b941cb4c\", \"313ab6ca-b3c0-47ed-bb86-4ef9d3750bde\": \"313ab6ca-b3c0-47ed-bb86-4ef9d3750bde\", \"c6556b88-8149-40ed-895d-dc611533cba5\": \"c6556b88-8149-40ed-895d-dc611533cba5\", \"75c34353-c6bd-4fcb-90ec-d02aa625ab46\": \"75c34353-c6bd-4fcb-90ec-d02aa625ab46\", \"8fac4829-a6e7-4159-8bb2-10e1859025b0\": \"8fac4829-a6e7-4159-8bb2-10e1859025b0\", \"9fca083f-9a6f-4f71-89b5-3ca5c98b1bed\": \"9fca083f-9a6f-4f71-89b5-3ca5c98b1bed\", \"194206af-b2e8-42f9-8424-2174f55f3f2c\": \"194206af-b2e8-42f9-8424-2174f55f3f2c\", \"35fdfb36-0f18-44d3-a476-1c281c5b4d67\": \"35fdfb36-0f18-44d3-a476-1c281c5b4d67\", \"1982d6a8-22c4-4beb-a9bc-96e81ac08261\": \"1982d6a8-22c4-4beb-a9bc-96e81ac08261\", \"5daeebb9-1856-41ae-a528-c28d9f2e3099\": \"5daeebb9-1856-41ae-a528-c28d9f2e3099\", \"0b965522-311f-4ed4-9b89-44bdd2409aff\": \"0b965522-311f-4ed4-9b89-44bdd2409aff\", \"8d8dadf8-3f5d-4388-8d63-acca8868c074\": \"8d8dadf8-3f5d-4388-8d63-acca8868c074\", \"991c8f71-96f2-4ce7-97fb-e2adfd81fa49\": \"991c8f71-96f2-4ce7-97fb-e2adfd81fa49\", \"3f708918-9bcb-4c0a-bd9c-c987901f8659\": \"3f708918-9bcb-4c0a-bd9c-c987901f8659\", \"1278ad97-268a-4707-9066-09d44fb74832\": \"1278ad97-268a-4707-9066-09d44fb74832\", \"532e020b-af47-4631-9116-743d24b89552\": \"532e020b-af47-4631-9116-743d24b89552\", \"9e212d39-504d-4779-83f0-355636b0de25\": \"9e212d39-504d-4779-83f0-355636b0de25\", \"062f22d5-6e38-4cd6-a3f1-cf5700f9821f\": \"062f22d5-6e38-4cd6-a3f1-cf5700f9821f\", \"953ae347-eb9d-424e-b1d4-1d2cc5fd68a1\": \"953ae347-eb9d-424e-b1d4-1d2cc5fd68a1\", \"926c9e8c-0a25-4512-88ba-697deb7cd1d6\": \"926c9e8c-0a25-4512-88ba-697deb7cd1d6\", \"46cea481-4853-4b34-a148-91f2281b5148\": \"46cea481-4853-4b34-a148-91f2281b5148\", \"5428fbdd-f596-42e9-b75e-2e7e1e153e90\": \"5428fbdd-f596-42e9-b75e-2e7e1e153e90\", \"32a50608-96b5-4eda-bd89-6ad80ad73f62\": \"32a50608-96b5-4eda-bd89-6ad80ad73f62\", \"ae360743-3475-4f15-95b3-7c96f8878dbe\": \"ae360743-3475-4f15-95b3-7c96f8878dbe\", \"179c2192-96a1-4557-8891-c408aa29e6ac\": \"179c2192-96a1-4557-8891-c408aa29e6ac\", \"692705ab-306d-4be0-9fed-d651401eaadc\": \"692705ab-306d-4be0-9fed-d651401eaadc\", \"f19d7e30-35c4-4be0-a9af-eecba6d7e8ac\": \"f19d7e30-35c4-4be0-a9af-eecba6d7e8ac\", \"8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac\": \"8bcd7d2d-7f2a-4f13-a08c-9f0dc4e1fbac\", \"831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e\": \"831c9bc6-164f-4d5c-8c3e-8f9a4862ff6e\", \"3a27b605-45a0-4bef-902f-c9b3c7171ebc\": \"3a27b605-45a0-4bef-902f-c9b3c7171ebc\", \"058bc3c5-2029-4b92-847c-c3f57e1b328c\": \"058bc3c5-2029-4b92-847c-c3f57e1b328c\", \"cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d\": \"cf3e5842-a9ac-4bf7-b652-ba9bb8e3e93d\", \"2cd9ecff-8914-42b5-802a-5b28162a87aa\": \"2cd9ecff-8914-42b5-802a-5b28162a87aa\", \"30959e4d-8ce8-4b68-9863-a25703b0bf21\": \"30959e4d-8ce8-4b68-9863-a25703b0bf21\", \"23fac348-3556-4651-936d-955a32b4defa\": \"23fac348-3556-4651-936d-955a32b4defa\", \"36bac6f0-91af-4538-83f6-35a0f61e115f\": \"36bac6f0-91af-4538-83f6-35a0f61e115f\", \"34869ab7-7f4a-4116-b78c-8912e9ac80ca\": \"34869ab7-7f4a-4116-b78c-8912e9ac80ca\", \"655c55fe-0cc5-482b-9854-4c0d26faa928\": \"655c55fe-0cc5-482b-9854-4c0d26faa928\", \"1c302ce2-13eb-4f5c-8197-be35d64921e4\": \"1c302ce2-13eb-4f5c-8197-be35d64921e4\", \"f8eee05a-466d-4169-85ef-032419f8c5db\": \"f8eee05a-466d-4169-85ef-032419f8c5db\", \"4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd\": \"4b1033a5-6b1a-4964-a5a9-41a5c88ab4fd\", \"e37ac22e-a4f8-449b-a4f4-f1944e2bcfec\": \"e37ac22e-a4f8-449b-a4f4-f1944e2bcfec\", \"47f78fc9-8cc9-4c02-94b0-cd16ff593dc2\": \"47f78fc9-8cc9-4c02-94b0-cd16ff593dc2\", \"d95791c3-d879-4147-aeb6-a448e2e56a23\": \"d95791c3-d879-4147-aeb6-a448e2e56a23\", \"6c2e3648-7641-41c1-83cf-2ef654b3e3c4\": \"6c2e3648-7641-41c1-83cf-2ef654b3e3c4\", \"47cdf033-1dfa-4a68-b87b-c3dfae5533f8\": \"47cdf033-1dfa-4a68-b87b-c3dfae5533f8\", \"9feb8655-b758-44b2-a591-e72e6e041b9e\": \"9feb8655-b758-44b2-a591-e72e6e041b9e\", \"92b6dc3c-4165-4d1c-94c8-c1f6f072408e\": \"92b6dc3c-4165-4d1c-94c8-c1f6f072408e\", \"263729a2-acb5-4d1a-8f8f-dbcd41fc56e0\": \"263729a2-acb5-4d1a-8f8f-dbcd41fc56e0\", \"c8e2752f-412f-40b8-ac12-0c82676020a0\": \"c8e2752f-412f-40b8-ac12-0c82676020a0\", \"1a7de58f-df68-474a-b536-a5204aea831b\": \"1a7de58f-df68-474a-b536-a5204aea831b\", \"cd1d59b9-b560-4f69-b868-c136d63e29b0\": \"cd1d59b9-b560-4f69-b868-c136d63e29b0\", \"7eb61bf6-a6fb-406f-9b98-866c97063e09\": \"7eb61bf6-a6fb-406f-9b98-866c97063e09\", \"864076b7-ed58-4051-b8b8-ae83d361d1ff\": \"864076b7-ed58-4051-b8b8-ae83d361d1ff\", \"9de99182-6404-45f5-9277-1bca0948ae98\": \"9de99182-6404-45f5-9277-1bca0948ae98\", \"15df1912-ef86-400e-8613-63812935df4c\": \"15df1912-ef86-400e-8613-63812935df4c\", \"68d47fad-bb4a-44a7-8c63-58050f005f87\": \"68d47fad-bb4a-44a7-8c63-58050f005f87\", \"6162dc0c-8118-4b94-93ed-b8b693e3f908\": \"6162dc0c-8118-4b94-93ed-b8b693e3f908\", \"05c70ffb-3451-4aac-9fff-dca65871b819\": \"05c70ffb-3451-4aac-9fff-dca65871b819\", \"89fbf4b9-69e8-4842-9a4f-b22c18d93601\": \"89fbf4b9-69e8-4842-9a4f-b22c18d93601\", \"12b52d4e-62a9-485c-9295-ac3c7b7712e4\": \"12b52d4e-62a9-485c-9295-ac3c7b7712e4\", \"0e310153-ee47-45f3-913e-57ba9f58ad5d\": \"0e310153-ee47-45f3-913e-57ba9f58ad5d\", \"83762a91-2b61-4ed1-a937-20c8d4fe6cae\": \"83762a91-2b61-4ed1-a937-20c8d4fe6cae\", \"7932423f-0047-496c-86f0-5c4a705fc98a\": \"7932423f-0047-496c-86f0-5c4a705fc98a\", \"49e57753-554b-4cf6-9f91-eef9976e20a8\": \"49e57753-554b-4cf6-9f91-eef9976e20a8\", \"e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c\": \"e7a52a17-d3c2-4ace-9c6e-476dbcbe1d3c\", \"1f364fe1-4df5-46a1-95b2-00ea557d74ca\": \"1f364fe1-4df5-46a1-95b2-00ea557d74ca\", \"2e4d3c45-624f-4149-9374-fca2ed641f58\": \"2e4d3c45-624f-4149-9374-fca2ed641f58\", \"8aead8e6-2401-4dc1-8ce7-aa8d17625c6b\": \"8aead8e6-2401-4dc1-8ce7-aa8d17625c6b\", \"74d3384a-7128-4168-9f8d-47d5cb6dee60\": \"74d3384a-7128-4168-9f8d-47d5cb6dee60\", \"770165d2-d4d9-42ea-aa3b-0451a0bb8cd8\": \"770165d2-d4d9-42ea-aa3b-0451a0bb8cd8\", \"3a3f4731-d358-48fb-8b0e-152ad5a2bc3e\": \"3a3f4731-d358-48fb-8b0e-152ad5a2bc3e\", \"e9f07882-5921-41b1-883c-0396aaaef7ac\": \"e9f07882-5921-41b1-883c-0396aaaef7ac\", \"df618784-f3bd-49f9-b3b9-88ac69087dc2\": \"df618784-f3bd-49f9-b3b9-88ac69087dc2\", \"fc6d620d-8967-4097-ba4b-5b8379b30435\": \"fc6d620d-8967-4097-ba4b-5b8379b30435\", \"88d8279d-e0e5-4c63-8c40-03d0daf7cab7\": \"88d8279d-e0e5-4c63-8c40-03d0daf7cab7\", \"ad557b52-361c-4391-ac61-5bb82b32a98c\": \"ad557b52-361c-4391-ac61-5bb82b32a98c\", \"06721709-3201-4bf4-ae18-7081ae33a6b8\": \"06721709-3201-4bf4-ae18-7081ae33a6b8\", \"3c193164-9ac6-4c33-84eb-4f619cfc6d78\": \"3c193164-9ac6-4c33-84eb-4f619cfc6d78\", \"41fe424f-5356-4081-b566-ba0af32bead2\": \"41fe424f-5356-4081-b566-ba0af32bead2\", \"8fe81af3-bafb-49cb-ba50-d5f3bc347131\": \"8fe81af3-bafb-49cb-ba50-d5f3bc347131\", \"21ea6e25-467c-4f15-b2a4-6135d6ec3e60\": \"21ea6e25-467c-4f15-b2a4-6135d6ec3e60\", \"c11bd073-d374-4e7a-8539-38569a04d1ad\": \"c11bd073-d374-4e7a-8539-38569a04d1ad\", \"fc2d5b78-43e7-4d5f-9d15-ca5fa841d368\": \"fc2d5b78-43e7-4d5f-9d15-ca5fa841d368\", \"7e244ca2-5e29-43b7-8a3c-98549e4d97ed\": \"7e244ca2-5e29-43b7-8a3c-98549e4d97ed\", \"39292e60-4e04-403d-9efb-39addde4ee28\": \"39292e60-4e04-403d-9efb-39addde4ee28\", \"5003f6bb-5355-4147-8dc7-b40d9500e93c\": \"5003f6bb-5355-4147-8dc7-b40d9500e93c\", \"2b3514d3-df70-4353-a430-c9f44780a089\": \"2b3514d3-df70-4353-a430-c9f44780a089\", \"6931ad56-a9f8-4e1f-8686-8d827b8c28d3\": \"6931ad56-a9f8-4e1f-8686-8d827b8c28d3\", \"9df6f9ed-1a20-4d07-b419-3a232c53067e\": \"9df6f9ed-1a20-4d07-b419-3a232c53067e\", \"a7f8239c-e6f1-467a-ac29-2e5636515606\": \"a7f8239c-e6f1-467a-ac29-2e5636515606\", \"6e672ef2-1d00-4b1c-845b-7bd6d8912ad7\": \"6e672ef2-1d00-4b1c-845b-7bd6d8912ad7\", \"4a6a49bc-91e8-4059-82b4-a5731f18fb81\": \"4a6a49bc-91e8-4059-82b4-a5731f18fb81\", \"06c8f1be-09ed-4762-9739-a090b78e3bc0\": \"06c8f1be-09ed-4762-9739-a090b78e3bc0\", \"e517b8e1-15d2-4458-87f4-4dfeb1811716\": \"e517b8e1-15d2-4458-87f4-4dfeb1811716\", \"ff111f55-ae10-45e2-92da-a096318840f2\": \"ff111f55-ae10-45e2-92da-a096318840f2\", \"46852915-14f3-4c56-b364-ffec623d1110\": \"46852915-14f3-4c56-b364-ffec623d1110\", \"e0e3a3b2-1b4b-4a25-a497-8b630a09ba64\": \"e0e3a3b2-1b4b-4a25-a497-8b630a09ba64\", \"25063585-9f14-4c7e-836a-a2956319e633\": \"25063585-9f14-4c7e-836a-a2956319e633\", \"604f912d-6dba-41cf-ae04-4146618412f1\": \"604f912d-6dba-41cf-ae04-4146618412f1\", \"b27f419a-1eb1-4044-a004-2181c718d9db\": \"b27f419a-1eb1-4044-a004-2181c718d9db\", \"2e7b7a46-2077-4163-8fc6-ea5e0116eff7\": \"2e7b7a46-2077-4163-8fc6-ea5e0116eff7\", \"8dd3147f-9a7d-4a38-ab0a-bbaad8da0530\": \"8dd3147f-9a7d-4a38-ab0a-bbaad8da0530\", \"94932e90-bca7-4993-bc81-8c86542dccd1\": \"94932e90-bca7-4993-bc81-8c86542dccd1\", \"692966a7-e54c-4abf-bc2f-c59557e551e7\": \"692966a7-e54c-4abf-bc2f-c59557e551e7\", \"e5157153-76fb-435d-b2c0-9ecdf6ce1241\": \"e5157153-76fb-435d-b2c0-9ecdf6ce1241\", \"c2e2df9f-8609-44e2-8986-dec7ba509115\": \"c2e2df9f-8609-44e2-8986-dec7ba509115\", \"c02f556c-e845-4383-aa94-fe08bcb664e3\": \"c02f556c-e845-4383-aa94-fe08bcb664e3\", \"2407ed10-0410-4965-996e-0daf93ba18a9\": \"2407ed10-0410-4965-996e-0daf93ba18a9\", \"ce755bb8-eb14-4a1c-897e-1fddeeaef178\": \"ce755bb8-eb14-4a1c-897e-1fddeeaef178\", \"a96fc25a-3f3e-46aa-84dd-82f6c3847183\": \"a96fc25a-3f3e-46aa-84dd-82f6c3847183\", \"5593171c-b3d2-4d7c-85de-7e23b9578622\": \"5593171c-b3d2-4d7c-85de-7e23b9578622\", \"b16eb01f-efdb-4a30-8dba-5369d9780275\": \"b16eb01f-efdb-4a30-8dba-5369d9780275\", \"f56de84c-1275-43ef-8612-2b179d6f6374\": \"f56de84c-1275-43ef-8612-2b179d6f6374\", \"c31b4d45-5ecb-4464-a5d8-823cd7ccccb2\": \"c31b4d45-5ecb-4464-a5d8-823cd7ccccb2\", \"c1f1e583-eb55-4df4-8f4b-f567d260900b\": \"c1f1e583-eb55-4df4-8f4b-f567d260900b\", \"82829188-ab31-45aa-91e9-7d523c175c66\": \"82829188-ab31-45aa-91e9-7d523c175c66\", \"36a400d2-2290-477c-837b-02475c4b2fbf\": \"36a400d2-2290-477c-837b-02475c4b2fbf\", \"c8623e15-c59c-401d-8078-8912707394c5\": \"c8623e15-c59c-401d-8078-8912707394c5\", \"8d40faef-053e-4772-aa32-67f33f070223\": \"8d40faef-053e-4772-aa32-67f33f070223\", \"e1c93542-3556-41e1-a259-89aec374e6ab\": \"e1c93542-3556-41e1-a259-89aec374e6ab\", \"5a4eece9-67b5-43df-a81c-2f3c91b9fbce\": \"5a4eece9-67b5-43df-a81c-2f3c91b9fbce\", \"033405c9-8636-4dfa-8ee3-4ce39b433530\": \"033405c9-8636-4dfa-8ee3-4ce39b433530\", \"539d2ce9-35c7-434d-825b-fd7c0df52057\": \"539d2ce9-35c7-434d-825b-fd7c0df52057\", \"facc74ad-88ab-4424-8c73-5238bb1dbad7\": \"facc74ad-88ab-4424-8c73-5238bb1dbad7\", \"9bb7cacc-36ec-4e2d-aa2b-ae1f66268121\": \"9bb7cacc-36ec-4e2d-aa2b-ae1f66268121\", \"250e7d39-44bb-46ee-b0e8-16ae0d439d8e\": \"250e7d39-44bb-46ee-b0e8-16ae0d439d8e\", \"33975052-fe24-499e-a051-aa9a7d5a83e5\": \"33975052-fe24-499e-a051-aa9a7d5a83e5\", \"3660adda-30c8-457f-b96d-c7d302555cb0\": \"3660adda-30c8-457f-b96d-c7d302555cb0\", \"3a76b360-9b3b-44fc-b257-8c654892e217\": \"3a76b360-9b3b-44fc-b257-8c654892e217\", \"1e7e0852-9143-4d50-ad65-62c25c4d9a09\": \"1e7e0852-9143-4d50-ad65-62c25c4d9a09\", \"6af18d53-c5b3-4f1b-b368-c570bddf9677\": \"6af18d53-c5b3-4f1b-b368-c570bddf9677\", \"6a666477-1bfa-452f-bad1-682e5993dab0\": \"6a666477-1bfa-452f-bad1-682e5993dab0\", \"a07fd493-ee5f-4964-88e0-bb56a446eb61\": \"a07fd493-ee5f-4964-88e0-bb56a446eb61\", \"8ed46f10-7f86-45c1-bef1-178a05b08468\": \"8ed46f10-7f86-45c1-bef1-178a05b08468\", \"64a43dd8-c4af-47f0-9faa-86d752cceb8f\": \"64a43dd8-c4af-47f0-9faa-86d752cceb8f\", \"4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1\": \"4387e8d5-80b8-43fe-b7c0-ed8a0e1a60d1\", \"7e203c21-d2d0-443a-8ed1-f316aac108c5\": \"7e203c21-d2d0-443a-8ed1-f316aac108c5\", \"a77e394f-eda1-4b8c-9199-7d2247c9d872\": \"a77e394f-eda1-4b8c-9199-7d2247c9d872\", \"0eed630c-d594-4360-8a84-1ea74e62f0f5\": \"0eed630c-d594-4360-8a84-1ea74e62f0f5\", \"829f1387-308e-421c-95ba-caff21e34bd6\": \"829f1387-308e-421c-95ba-caff21e34bd6\", \"0c72e829-7c9a-47a6-af31-9fe3543bd78c\": \"0c72e829-7c9a-47a6-af31-9fe3543bd78c\", \"3473e066-8864-4ea6-b7bf-17c42665b599\": \"3473e066-8864-4ea6-b7bf-17c42665b599\", \"4f305c42-d33f-4b8e-bf77-2ea69ace07c8\": \"4f305c42-d33f-4b8e-bf77-2ea69ace07c8\", \"7c42db89-d590-4f93-9be4-b85a62312c04\": \"7c42db89-d590-4f93-9be4-b85a62312c04\", \"270348f2-a166-4b96-b28a-2d3bb355e69d\": \"270348f2-a166-4b96-b28a-2d3bb355e69d\", \"5179c470-17ef-44b7-bf30-d724ca8e6a1f\": \"5179c470-17ef-44b7-bf30-d724ca8e6a1f\", \"52ee1b52-84d7-4379-b769-db8143089438\": \"52ee1b52-84d7-4379-b769-db8143089438\", \"a1e179c3-b165-44f2-8a8d-4ee950a281ae\": \"a1e179c3-b165-44f2-8a8d-4ee950a281ae\", \"cad669ae-bc96-48f6-86be-a7411388ef8e\": \"cad669ae-bc96-48f6-86be-a7411388ef8e\", \"b3493286-134f-4c81-a543-24c1f94dee97\": \"b3493286-134f-4c81-a543-24c1f94dee97\", \"5976df2c-2edb-4c93-8d0e-ffbb0c0435ef\": \"5976df2c-2edb-4c93-8d0e-ffbb0c0435ef\", \"0969b5a3-21bb-47da-ae53-9e00bdb2279c\": \"0969b5a3-21bb-47da-ae53-9e00bdb2279c\", \"433c4723-5242-4c38-8142-e9763b695dd5\": \"433c4723-5242-4c38-8142-e9763b695dd5\", \"702aa6c4-d709-4041-97ee-4c6a5c57bce3\": \"702aa6c4-d709-4041-97ee-4c6a5c57bce3\", \"9f2b3683-b974-4b5b-b968-6e44eb6bb66b\": \"9f2b3683-b974-4b5b-b968-6e44eb6bb66b\", \"05636a71-c471-4479-9045-250d59b4d199\": \"05636a71-c471-4479-9045-250d59b4d199\", \"c94bb528-4956-46d5-a4df-e650f74f362b\": \"c94bb528-4956-46d5-a4df-e650f74f362b\", \"3082a394-1cd7-49c3-b83e-c91ddfda982e\": \"3082a394-1cd7-49c3-b83e-c91ddfda982e\", \"447a6e0c-677f-4539-85ca-5c72307a10ff\": \"447a6e0c-677f-4539-85ca-5c72307a10ff\", \"9d43bf2f-9b6d-4c9b-a597-06f9ca591520\": \"9d43bf2f-9b6d-4c9b-a597-06f9ca591520\", \"2505f174-98d2-49b4-93f6-9c62039cb6b5\": \"2505f174-98d2-49b4-93f6-9c62039cb6b5\", \"a88df31e-35ea-45b1-b79f-9a4ec0846da3\": \"a88df31e-35ea-45b1-b79f-9a4ec0846da3\", \"28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8\": \"28b7fba8-e6c5-41d7-99ad-ab2e5e27bdf8\", \"903c910e-a6de-4f76-817c-0dec155e870a\": \"903c910e-a6de-4f76-817c-0dec155e870a\", \"5866a289-b3da-4d3c-a001-59a4006b5bf9\": \"5866a289-b3da-4d3c-a001-59a4006b5bf9\", \"87f2d885-6a0d-4836-b824-ecdb1829b746\": \"87f2d885-6a0d-4836-b824-ecdb1829b746\", \"c0af9c06-941b-4a98-a980-1dcec14868c8\": \"c0af9c06-941b-4a98-a980-1dcec14868c8\", \"a3e79b45-f8b0-4dfa-999d-d5f7e54dee25\": \"a3e79b45-f8b0-4dfa-999d-d5f7e54dee25\", \"e4eb8e3c-4116-4d81-890a-a1934ed06eb0\": \"e4eb8e3c-4116-4d81-890a-a1934ed06eb0\", \"78e994e5-dbda-4960-9a58-8a398eec44ef\": \"78e994e5-dbda-4960-9a58-8a398eec44ef\", \"7dc088d8-125c-41e5-bd34-8ebbf828e918\": \"7dc088d8-125c-41e5-bd34-8ebbf828e918\", \"4a936b4a-b9fb-455e-9162-319f1b8112be\": \"4a936b4a-b9fb-455e-9162-319f1b8112be\", \"7549afef-c458-4c82-8149-e115c99cd800\": \"7549afef-c458-4c82-8149-e115c99cd800\", \"2c71e182-997d-4d7e-834f-b7dc138e7830\": \"2c71e182-997d-4d7e-834f-b7dc138e7830\", \"6901c4f7-aa1c-4fd9-94e9-085fab8deae4\": \"6901c4f7-aa1c-4fd9-94e9-085fab8deae4\", \"c78e873b-ee41-49a4-90f5-b0d8887422c3\": \"c78e873b-ee41-49a4-90f5-b0d8887422c3\", \"797a48ee-2ac2-4e05-9bb0-8e4c54754eac\": \"797a48ee-2ac2-4e05-9bb0-8e4c54754eac\", \"c676458f-04d8-4041-9ea1-c947010dff53\": \"c676458f-04d8-4041-9ea1-c947010dff53\", \"e827f3f2-8e1c-44ff-8395-1f03ae9bd72c\": \"e827f3f2-8e1c-44ff-8395-1f03ae9bd72c\", \"5631ea16-89c4-4cd1-a971-2e1bd07dee2d\": \"5631ea16-89c4-4cd1-a971-2e1bd07dee2d\", \"f16298e7-2f76-42f7-9d44-c1fab304825b\": \"f16298e7-2f76-42f7-9d44-c1fab304825b\", \"372e09b4-a41b-491f-a954-717248f64974\": \"372e09b4-a41b-491f-a954-717248f64974\", \"ca3e349b-fcaa-4872-9016-4f32585cd66c\": \"ca3e349b-fcaa-4872-9016-4f32585cd66c\", \"4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2\": \"4cc098db-b5cc-4082-9ba4-8b8c19dfa6d2\", \"c01cad1e-baf0-4514-b6ab-3df8dc973827\": \"c01cad1e-baf0-4514-b6ab-3df8dc973827\", \"870c3230-bcd3-49bb-a774-c3c265fad517\": \"870c3230-bcd3-49bb-a774-c3c265fad517\", \"2c315702-c74a-425f-95cf-aa7f21ba6275\": \"2c315702-c74a-425f-95cf-aa7f21ba6275\", \"9698d911-4ec1-4061-8ec4-c9de86f0ec0b\": \"9698d911-4ec1-4061-8ec4-c9de86f0ec0b\", \"2c94d49d-17af-41e4-9621-7b5e6450b367\": \"2c94d49d-17af-41e4-9621-7b5e6450b367\", \"6dd6e451-5c6d-4da8-91e6-5b809cbb2260\": \"6dd6e451-5c6d-4da8-91e6-5b809cbb2260\", \"0d614f08-4ea9-4e7f-9251-b35cf32549e5\": \"0d614f08-4ea9-4e7f-9251-b35cf32549e5\", \"b8fe2fb5-e262-498e-a07d-05ad188e6b6e\": \"b8fe2fb5-e262-498e-a07d-05ad188e6b6e\", \"d9f10a91-8e5f-4f4d-8f87-2af269a66b92\": \"d9f10a91-8e5f-4f4d-8f87-2af269a66b92\", \"425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd\": \"425fd1d2-c4e8-4e81-97e4-0c4dd14d65fd\", \"bef3b984-31fd-42b0-b39d-8f2fe64fb443\": \"bef3b984-31fd-42b0-b39d-8f2fe64fb443\", \"befeab50-a804-46f1-8722-bc31dc6d52e4\": \"befeab50-a804-46f1-8722-bc31dc6d52e4\", \"b67796a6-a9cf-4173-a287-4adff8df6d4b\": \"b67796a6-a9cf-4173-a287-4adff8df6d4b\", \"67b7b9b7-4890-40cc-8c10-e546a2826cba\": \"67b7b9b7-4890-40cc-8c10-e546a2826cba\", \"2375910a-0684-4ff8-955d-d8b8b43535d1\": \"2375910a-0684-4ff8-955d-d8b8b43535d1\", \"5ee4322d-3a2d-4bc5-9108-537d571eccc6\": \"5ee4322d-3a2d-4bc5-9108-537d571eccc6\", \"59c4c9ed-f963-4760-93b6-dd7c3a97bb54\": \"59c4c9ed-f963-4760-93b6-dd7c3a97bb54\", \"67cfb681-888c-4ffc-82f5-f02734835b54\": \"67cfb681-888c-4ffc-82f5-f02734835b54\", \"8698b735-ee66-4b51-8f50-cdb723ee0c48\": \"8698b735-ee66-4b51-8f50-cdb723ee0c48\", \"e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58\": \"e956fc02-0ed7-48dd-9bdc-bdf67e6c5c58\", \"d2f6bd59-18bb-493f-9220-a47f52e372fe\": \"d2f6bd59-18bb-493f-9220-a47f52e372fe\", \"778d0172-21c2-42ce-9fd0-d50ddecb9b57\": \"778d0172-21c2-42ce-9fd0-d50ddecb9b57\", \"63186939-9531-4e5d-82d5-3fcf84655976\": \"63186939-9531-4e5d-82d5-3fcf84655976\", \"23fda1f4-7289-49ec-a59f-37a7a607cba0\": \"23fda1f4-7289-49ec-a59f-37a7a607cba0\", \"3fb2305d-b12e-48c4-a356-1600c347320c\": \"3fb2305d-b12e-48c4-a356-1600c347320c\", \"f56976c9-3bd6-444b-9dca-3bf42084a562\": \"f56976c9-3bd6-444b-9dca-3bf42084a562\", \"95828a01-1119-4b71-946a-c8883f2c5504\": \"95828a01-1119-4b71-946a-c8883f2c5504\", \"27e555a1-e899-4710-b03c-4fb670054999\": \"27e555a1-e899-4710-b03c-4fb670054999\", \"772005e7-7276-43a5-b3ba-42c7290f0c36\": \"772005e7-7276-43a5-b3ba-42c7290f0c36\", \"f69522d9-1b62-4924-a6ec-c4aa281058da\": \"f69522d9-1b62-4924-a6ec-c4aa281058da\", \"ddef57cf-090c-4585-aa1d-49e2a1e6748b\": \"ddef57cf-090c-4585-aa1d-49e2a1e6748b\", \"50c21c11-745d-4649-9456-0b291bf29d19\": \"50c21c11-745d-4649-9456-0b291bf29d19\", \"23b7a614-0705-4541-905b-6ef766812a2a\": \"23b7a614-0705-4541-905b-6ef766812a2a\", \"fec6b74a-2339-487b-bd6f-71fdec66b791\": \"fec6b74a-2339-487b-bd6f-71fdec66b791\", \"bead822c-bd11-4d9e-a811-2e377bf32cc0\": \"bead822c-bd11-4d9e-a811-2e377bf32cc0\", \"7ac58128-4d5a-455e-a473-58d1e7958af6\": \"7ac58128-4d5a-455e-a473-58d1e7958af6\", \"0314465c-4399-4d05-87d5-4cedf3250956\": \"0314465c-4399-4d05-87d5-4cedf3250956\", \"80067795-fb75-46ce-bf5a-61015161aa5e\": \"80067795-fb75-46ce-bf5a-61015161aa5e\", \"16606eae-35ef-4e6f-97a5-f80ad56958ee\": \"16606eae-35ef-4e6f-97a5-f80ad56958ee\", \"da93de1b-e8c4-4faf-9df5-0304aa74c9c0\": \"da93de1b-e8c4-4faf-9df5-0304aa74c9c0\", \"5472cd78-c030-4815-a2f1-33245f14f018\": \"5472cd78-c030-4815-a2f1-33245f14f018\", \"4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f\": \"4ff9da1e-a1aa-4d31-a0e0-dc9d7ded708f\", \"40fa34fe-7285-477b-a1c6-5cb2550a84fc\": \"40fa34fe-7285-477b-a1c6-5cb2550a84fc\", \"2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f\": \"2db19c27-3df8-4e44-bc9a-6d3bbcc2aa2f\", \"b69caf6b-5590-4518-a963-d1998db8440a\": \"b69caf6b-5590-4518-a963-d1998db8440a\", \"0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830\": \"0d8d2e43-0b4d-40bf-b414-ca8c1ae8b830\", \"f1790d38-4768-4282-acf3-32ea03ee760f\": \"f1790d38-4768-4282-acf3-32ea03ee760f\", \"4663c078-0471-4f17-b704-37a847b3578a\": \"4663c078-0471-4f17-b704-37a847b3578a\", \"ee00678d-0531-43a6-b4ee-24d47f7b854c\": \"ee00678d-0531-43a6-b4ee-24d47f7b854c\", \"40002650-dc78-4ca1-a842-1d2820a2c9bc\": \"40002650-dc78-4ca1-a842-1d2820a2c9bc\", \"9687aeb0-7763-4074-a0a8-c49058fb0ffb\": \"9687aeb0-7763-4074-a0a8-c49058fb0ffb\", \"2abc0d0b-6666-4b3e-983e-36e820323e08\": \"2abc0d0b-6666-4b3e-983e-36e820323e08\", \"c914503e-2bc4-431a-941b-5ecf283e5a35\": \"c914503e-2bc4-431a-941b-5ecf283e5a35\", \"283ad8c4-c5d4-4113-9c45-6e42828c2bd6\": \"283ad8c4-c5d4-4113-9c45-6e42828c2bd6\", \"12fc93de-6a8b-45de-ae87-9e824744e5ac\": \"12fc93de-6a8b-45de-ae87-9e824744e5ac\", \"fe6d77c4-5744-4c45-bfff-03e9475499a4\": \"fe6d77c4-5744-4c45-bfff-03e9475499a4\", \"b7e4ca92-12ea-41c6-bbfa-4f2f74222d58\": \"b7e4ca92-12ea-41c6-bbfa-4f2f74222d58\", \"4431616b-6726-4488-a27a-09e0aad7a27a\": \"4431616b-6726-4488-a27a-09e0aad7a27a\", \"5795a666-d615-463a-82d5-56ceeac30476\": \"5795a666-d615-463a-82d5-56ceeac30476\", \"85527e92-eb41-458f-91a6-751735c62a23\": \"85527e92-eb41-458f-91a6-751735c62a23\", \"129acce9-c3ca-4527-a94c-a1bd7bd08e33\": \"129acce9-c3ca-4527-a94c-a1bd7bd08e33\", \"b051c646-22dc-44c8-823f-dea41902b9e0\": \"b051c646-22dc-44c8-823f-dea41902b9e0\", \"e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4\": \"e7c8edfb-2e68-4a3e-8d80-6f5083e9a4c4\", \"1e846a4d-efb9-4bb0-a805-b24da1fd6101\": \"1e846a4d-efb9-4bb0-a805-b24da1fd6101\", \"c5de2a2e-604d-44d7-9122-f1e00ef9720b\": \"c5de2a2e-604d-44d7-9122-f1e00ef9720b\", \"cd36e93f-1652-488b-8342-eb7c92b5ce6e\": \"cd36e93f-1652-488b-8342-eb7c92b5ce6e\", \"d3f390f8-3dbb-458e-8d82-9c370e27ebca\": \"d3f390f8-3dbb-458e-8d82-9c370e27ebca\", \"dcd995cc-58e9-4129-b3c8-9a603995d898\": \"dcd995cc-58e9-4129-b3c8-9a603995d898\", \"9fc08083-9edc-4125-8b2c-7bd929dd5715\": \"9fc08083-9edc-4125-8b2c-7bd929dd5715\", \"8bd35713-c665-4e9f-9747-a0e1b9042d52\": \"8bd35713-c665-4e9f-9747-a0e1b9042d52\", \"be5507b1-4d59-4284-84de-5e0ba0888c5e\": \"be5507b1-4d59-4284-84de-5e0ba0888c5e\", \"24ee9238-b514-455f-a71e-f5eedaef6996\": \"24ee9238-b514-455f-a71e-f5eedaef6996\", \"70541635-e91b-4d03-ad84-9cd710d8d48e\": \"70541635-e91b-4d03-ad84-9cd710d8d48e\", \"1331adc2-e36c-4df6-8b61-c8f12fedbf36\": \"1331adc2-e36c-4df6-8b61-c8f12fedbf36\", \"c85152fe-d901-4aea-9c99-3feb491c997a\": \"c85152fe-d901-4aea-9c99-3feb491c997a\", \"be39d582-2687-4dc2-ab1a-811fd8a7f64e\": \"be39d582-2687-4dc2-ab1a-811fd8a7f64e\", \"6de89262-d55e-4917-ba9b-944c56f0494a\": \"6de89262-d55e-4917-ba9b-944c56f0494a\", \"cf1beb93-e72c-4e87-9196-8a06ca2540ab\": \"cf1beb93-e72c-4e87-9196-8a06ca2540ab\", \"53b5eeef-535d-450e-a8d3-6b96ae833a9d\": \"53b5eeef-535d-450e-a8d3-6b96ae833a9d\", \"5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f\": \"5b3ee3c3-f1c3-4aa6-b9c0-e92e28a0003f\", \"20b1648d-1010-4845-982a-f3aeb7cb9df9\": \"20b1648d-1010-4845-982a-f3aeb7cb9df9\", \"66619eac-0a60-42a9-b2c5-f7e4d638dc44\": \"66619eac-0a60-42a9-b2c5-f7e4d638dc44\", \"1c786628-34fb-42fe-9f8b-5f20c447803b\": \"1c786628-34fb-42fe-9f8b-5f20c447803b\", \"e67e559b-ac83-4048-aa23-7fb4cf7634fd\": \"e67e559b-ac83-4048-aa23-7fb4cf7634fd\", \"8deac4ba-b6d2-4fdf-9a0c-3193562a049c\": \"8deac4ba-b6d2-4fdf-9a0c-3193562a049c\", \"82e247ec-c751-43cf-856c-4b9305678284\": \"82e247ec-c751-43cf-856c-4b9305678284\", \"10e5d866-558a-499d-ad57-57208363e8bb\": \"10e5d866-558a-499d-ad57-57208363e8bb\", \"e666b745-fe5b-4470-ba64-7ecd573acbb6\": \"e666b745-fe5b-4470-ba64-7ecd573acbb6\", \"6a0a74b4-f508-4b7b-ae58-3336e57e9c16\": \"6a0a74b4-f508-4b7b-ae58-3336e57e9c16\", \"9215469c-3a99-45c3-8979-b22e4d10d0d3\": \"9215469c-3a99-45c3-8979-b22e4d10d0d3\", \"9e067826-57fa-43bb-8dea-4f30569f03a6\": \"9e067826-57fa-43bb-8dea-4f30569f03a6\", \"ecd31646-bf80-42af-99f3-2788fe59ea15\": \"ecd31646-bf80-42af-99f3-2788fe59ea15\", \"4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f\": \"4bf1407c-09f3-4aa1-af1b-62be9fbd1c1f\", \"96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94\": \"96cd5bc6-cb81-4d12-a9aa-5c1645cb6e94\", \"a643d7bb-5024-4ccd-8e46-623292978454\": \"a643d7bb-5024-4ccd-8e46-623292978454\", \"86a1c76e-c2ee-4953-a619-dfbbfd9beb39\": \"86a1c76e-c2ee-4953-a619-dfbbfd9beb39\", \"e36834c7-2a8f-4483-8ec0-413205b1dea5\": \"e36834c7-2a8f-4483-8ec0-413205b1dea5\", \"532697b7-ec72-41ad-9dbe-e1ed57b7917b\": \"532697b7-ec72-41ad-9dbe-e1ed57b7917b\", \"e963a28d-552a-45f4-9ec2-76023245927a\": \"e963a28d-552a-45f4-9ec2-76023245927a\", \"9ce827fd-a136-4195-b8df-3d30e7dc210f\": \"9ce827fd-a136-4195-b8df-3d30e7dc210f\", \"fe29e92a-4453-400e-ada7-86ec463cda92\": \"fe29e92a-4453-400e-ada7-86ec463cda92\", \"a884050d-6aec-46e2-a38e-6bfda8af1a07\": \"a884050d-6aec-46e2-a38e-6bfda8af1a07\", \"9bbca8e2-87bb-4617-8884-95f1278f1c91\": \"9bbca8e2-87bb-4617-8884-95f1278f1c91\", \"acf6b4c2-7e01-429f-b754-672e90a9d718\": \"acf6b4c2-7e01-429f-b754-672e90a9d718\", \"771c144d-788b-499e-b0c2-2d480b3c1010\": \"771c144d-788b-499e-b0c2-2d480b3c1010\", \"8973f5b0-27f3-4e88-8941-d7b428473a1a\": \"8973f5b0-27f3-4e88-8941-d7b428473a1a\", \"807b4fcc-439e-49c0-b9d8-3ba3f605786f\": \"807b4fcc-439e-49c0-b9d8-3ba3f605786f\", \"fa435881-3edb-41ca-acfd-f41d536ae202\": \"fa435881-3edb-41ca-acfd-f41d536ae202\", \"6763610a-3b1b-4443-a79a-56b39abf7aac\": \"6763610a-3b1b-4443-a79a-56b39abf7aac\", \"4112b27d-de6a-44de-bf7f-47e0a4cabf15\": \"4112b27d-de6a-44de-bf7f-47e0a4cabf15\", \"d33b5915-e8d2-4b09-b8b3-f145bfbdfd91\": \"d33b5915-e8d2-4b09-b8b3-f145bfbdfd91\", \"89e6af8e-8503-4b1d-8405-5c284128fd3e\": \"89e6af8e-8503-4b1d-8405-5c284128fd3e\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219_ref/default__vector_store.json b/opentrons-ai-server/api/storage/index/v219_ref/default__vector_store.json new file mode 100644 index 00000000000..aaf6f9c35e6 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219_ref/default__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {"54d007e0-a439-4299-a911-d7d93df8f0ad": [-0.0034158017951995134, 0.03035944141447544, -0.0029911049641668797, 0.01448708213865757, -0.022776871919631958, -0.03823364898562431, 0.0077940067276358604, 0.03665880858898163, -0.04572872817516327, 0.007021167781203985, 0.004214158747345209, 0.026786884292960167, -0.0009915668051689863, 0.016404597088694572, 0.02413298562169075, 0.015529685653746128, -0.027720123529434204, 0.005038034170866013, 0.020822903141379356, -0.05220307409763336, 0.04287068173289299, -0.002819768153131008, -0.04622451215982437, -0.008421027101576328, -0.014909956604242325, -0.0033392468467354774, -0.03009696863591671, 0.015077647753059864, -0.016083795577287674, 0.0013807202922180295, 0.025489099323749542, -0.02134784869849682, 0.04692443832755089, 0.0025882809422910213, 0.015719249844551086, -0.009682358242571354, 0.01821274869143963, 0.01991882734000683, -0.0029455365147441626, -0.040450092405080795, 0.015106811188161373, 0.04462050646543503, -0.005668699741363525, 0.002034170087426901, -0.01789194718003273, 0.005595790687948465, 0.006117091979831457, 0.027690960094332695, -0.010717670433223248, 0.008318953216075897, 0.020808320492506027, -0.04657447338104248, -0.015165138989686966, -0.008902228437364101, 0.0024770942982286215, -0.037329573184251785, 0.026232773438096046, 0.06351859867572784, -0.018562713637948036, -0.030155295506119728, 0.004250613506883383, -0.019933408126235008, 0.017673220485448837, -0.01962718926370144, 0.012941405177116394, 0.005285925697535276, 0.007779424544423819, 0.014778719283640385, -0.037067100405693054, 0.021231194958090782, 0.037592045962810516, 0.040158454328775406, -0.006959194783121347, 0.02266021817922592, 0.029309548437595367, 0.0238850936293602, 0.017192017287015915, 0.021362431347370148, 0.018650203943252563, -0.01733783632516861, 0.03327581286430359, -0.03353828936815262, 0.047245241701602936, 0.006131674163043499, 0.10773081332445145, 0.01816900260746479, -0.010863489471375942, -0.05870658531785011, -0.020866647362709045, -0.009879212826490402, 0.030155295506119728, -0.005588499363511801, -0.019831335172057152, -0.019364716485142708, 0.009354266338050365, 0.01335698738694191, 0.028332563117146492, 0.00864704605191946, 0.007137822452932596, -0.027428487315773964, -0.009332393296062946, -0.00037092616548761725, 0.0069154491648077965, -0.0066857850179076195, 0.023433055728673935, -0.029644930735230446, 0.009901085868477821, 0.005409871693700552, -0.011694655753672123, 0.03245922923088074, 0.027340995147824287, -0.021391594782471657, -0.04380391910672188, 0.005169271025806665, -0.02153741382062435, -0.027355577796697617, -0.04476632550358772, 0.018518967553973198, -0.010316669009625912, -0.05529443174600601, 0.04164580628275871, -0.029207473620772362, 0.009616740047931671, -0.0083699906244874, -0.018373148515820503, -0.011118671856820583, -0.010178141295909882, 0.04450384899973869, 0.01180401910096407, -0.005336962174624205, 0.00035588862374424934, -0.0173086728900671, 0.028886673972010612, 0.03861277550458908, 0.011235326528549194, 0.01815442182123661, 0.03237174078822136, 0.037650372833013535, -0.013437188230454922, 0.021960288286209106, -0.0799669474363327, -0.028172161430120468, 0.006106155924499035, 0.009259483776986599, -0.016317106783390045, -0.023476801812648773, -0.00868349988013506, 0.015325539745390415, 0.010564561001956463, 0.02219359762966633, -0.07174277305603027, -0.053807079792022705, -0.03977932780981064, -0.018373148515820503, 0.05290300399065018, -0.06544340401887894, 0.018023183569312096, -0.011038471013307571, 0.008012734353542328, 0.02580990083515644, 0.02583906427025795, -0.0023713756818324327, 0.0040209488943219185, 0.04182078689336777, 0.044970471411943436, 0.019831335172057152, 0.05027826875448227, 0.008574136532843113, -0.029863659292459488, 0.031088534742593765, 0.012985150329768658, -0.029747003689408302, 0.012365421280264854, -0.009711521677672863, -0.029717840254306793, 0.016535833477973938, 0.05062823370099068, 0.017819037660956383, 0.0075169513002038, 0.018329404294490814, -0.011483218520879745, 0.01561717689037323, -0.007670060731470585, -0.009135537780821323, 0.004276131745427847, 0.027705542743206024, 0.022995600476861, 0.04409555718302727, 0.028026344254612923, 0.006117091979831457, -0.01644834317266941, 0.0002841185196302831, -0.009747976437211037, -0.01840231381356716, 0.0013843657216057181, -0.027968015521764755, 0.0014545409940183163, 0.005490072071552277, -0.01420273631811142, 0.011687364429235458, 0.014297517947852612, -0.05485697463154793, -0.006106155924499035, 0.009973995387554169, -0.0199042446911335, 0.027428487315773964, -0.02324349246919155, -0.011351981200277805, -0.004316231701523066, -0.025416189804673195, 0.033392470329999924, -0.032225921750068665, -0.0037074389401823282, -0.001915692468173802, 0.01872311346232891, 0.0069118039682507515, -0.00923761073499918, 0.010141686536371708, -0.022324834018945694, -0.02245607040822506, -0.02441004104912281, 0.030476097017526627, 0.03173013776540756, -0.03318832442164421, -0.026232773438096046, -0.014137117192149162, -0.03805866464972496, 0.009179283864796162, -0.027938852086663246, -0.02643692120909691, 0.0014335796004161239, -0.02613070048391819, -0.0037220208905637264, -0.04709942266345024, -0.011578000150620937, 0.029703257605433464, 0.03581305965781212, -0.03808782994747162, -0.025037061423063278, 0.010141686536371708, 0.017104526981711388, 0.008566845208406448, 0.02153741382062435, 0.01517972070723772, 0.043891411274671555, 0.03890441358089447, -0.006558193359524012, 0.041062530130147934, -0.005814518313854933, 0.011432182043790817, 0.013167423196136951, -0.018868932500481606, -0.018796022981405258, -0.003991785459220409, -0.025343280285596848, 0.02134784869849682, 0.009828176349401474, 0.011067635379731655, 0.020093809813261032, -0.04088754951953888, 0.00624832883477211, 0.03012613207101822, -0.023768439888954163, 0.039575181901454926, 0.03773786500096321, 0.0048338882625103, 0.019233480095863342, -0.005019806791096926, 0.009609448723495007, 0.012387294322252274, 0.010455196723341942, 0.03890441358089447, 0.008588718250393867, 0.00603689206764102, 0.026349429041147232, -0.014611028134822845, -0.0027778451330959797, 0.010659342631697655, 0.017716964706778526, -0.017702383920550346, -0.017789874225854874, -0.01348822470754385, 0.020852066576480865, 0.0064160204492509365, -0.0017899238737300038, 0.01761489175260067, -0.021114539355039597, -0.041441660374403, -0.015165138989686966, -0.017381582409143448, 0.005522881168872118, 0.011680073104798794, -0.030563587322831154, 0.018650203943252563, -0.015762995928525925, -0.008581426925957203, 0.03409240022301674, -0.0036035431548953056, -0.01902933232486248, 0.026786884292960167, -0.005260407458990812, -0.006616521161049604, -0.02780761569738388, -0.01703161746263504, 0.02471625991165638, -0.035900551825761795, 0.07524242252111435, 0.023141419515013695, 0.008421027101576328, 0.022864364087581635, 0.02296643704175949, -0.0454954169690609, 0.01022188737988472, -0.03318832442164421, 0.004892215598374605, 0.02585364505648613, -0.007232604548335075, -0.0074403961189091206, -0.014275644905865192, -0.024585023522377014, 0.0004816572181880474, -0.003412156365811825, -0.04514545202255249, 0.046137019991874695, -0.007990861311554909, -0.020560428500175476, -0.008151262067258358, 0.0013971248408779502, -0.019204314798116684, -0.027399323880672455, -0.04007096216082573, -0.02843463607132435, 0.007290932349860668, 0.02242690697312355, -0.04966583102941513, -0.006817021407186985, -0.04354144632816315, -0.05966898798942566, 0.012525822035968304, -0.03202177584171295, 0.00143995916005224, -0.009726103395223618, 0.014873501844704151, 0.0036163022741675377, 0.0003561164776328951, 0.01365591585636139, 0.014231899753212929, 0.019656352698802948, 0.0017306850058957934, 0.004688069224357605, 0.0007773956749588251, -0.010652052238583565, -0.012380002997815609, 0.02757430635392666, 0.00012440152931958437, -0.02441004104912281, -0.04438719525933266, 0.025941137224435806, 0.007742970250546932, -0.0016678007086738944, -0.024570440873503685, -0.02783677913248539, -0.0003324209537822753, 0.019189734011888504, 0.016535833477973938, -0.0056504723615944386, 0.03601720556616783, 0.007925243116915226, 0.005712445359677076, 0.0025627627037465572, 0.0024005393497645855, 0.02898874692618847, -0.021377013996243477, -0.009449047967791557, -0.032517556101083755, -0.034529853612184525, 0.060602229088544846, -0.014552700333297253, 0.026276519522070885, 0.02156657725572586, -0.0009359734249301255, -0.04765353351831436, -0.054069552570581436, 0.019816754385828972, 0.016623325645923615, -0.0025080807972699404, 0.029921986162662506, 0.008202298544347286, -0.030563587322831154, -0.012547694146633148, -0.033363305032253265, 0.015238048508763313, -0.022091524675488472, -0.04747854918241501, -0.004057403653860092, -0.0212895218282938, -0.007374777924269438, -0.011906092055141926, 0.00967506691813469, -0.03520062193274498, -0.0007983570685610175, -0.005293217021971941, -0.0027140495367348194, -0.007779424544423819, 0.022601889446377754, -0.02553284540772438, -0.00319342827424407, 0.0014107953757047653, 0.004793787840753794, 0.03712542727589607, -0.0029236639384180307, 0.013830898329615593, -0.0063030109740793705, 0.017162853851914406, 0.01490266527980566, 0.02133326791226864, -0.01080516166985035, 0.018300238996744156, -0.035638075321912766, -0.00446205073967576, 0.039633508771657944, 0.010892652906477451, 0.02042919211089611, 0.002899968298152089, 0.001577575458213687, 0.019729262217879295, 0.011847765184938908, 0.019743844866752625, 0.01475684717297554, -0.020370865240693092, -0.021668650209903717, 0.02807008847594261, 0.011512381955981255, 0.013276787474751472, -0.00038573588244616985, -0.01262789499014616, -0.021391594782471657, -0.026597321033477783, 0.04432886838912964, -0.01531095802783966, -0.008588718250393867, 0.047245241701602936, -0.014122535474598408, 0.020283373072743416, -0.03327581286430359, -0.023403892293572426, -0.052086420357227325, -0.023505965247750282, 0.017469072714447975, -0.0031205189879983664, 0.033392470329999924, 0.020560428500175476, 0.013094514608383179, -0.010076068341732025, 0.0014554522931575775, 0.0190147515386343, 0.01844605803489685, 0.013553842902183533, 0.02446836791932583, -0.05928986147046089, -0.019685516133904457, 0.006292074453085661, 0.008136680349707603, 0.007845043204724789, 0.0066639119759202, -0.0023932484909892082, 6.652975571341813e-05, -0.01293411385267973, 0.0035525066778063774, 0.004093858413398266, 0.00609886460006237, 0.009332393296062946, 0.049520011991262436, 0.030534423887729645, 0.031176026910543442, 0.004844824317842722, -0.01334969699382782, 0.009193865582346916, -0.014261063188314438, 0.03012613207101822, -0.0045568328350782394, -0.027880525216460228, 0.013160132803022861, -0.039371032267808914, 0.006160837598145008, 0.012890367768704891, -0.03178846463561058, 0.0035142293199896812, 0.016842054203152657, 0.016885798424482346, -0.0032590467017143965, -0.017498238012194633, 0.006222810596227646, 0.019714681431651115, -0.01179672870784998, -0.030213622376322746, 0.0037366028409451246, -0.03578389436006546, 0.011599873192608356, -0.02468709647655487, 0.024307968094944954, -0.007152404636144638, 0.004801078699529171, 0.005439035594463348, -0.022368580102920532, 0.037883684039115906, -0.01192067377269268, 0.03528811037540436, -0.008187716826796532, -0.012693513184785843, -0.023214329034090042, 0.03490898385643959, -0.035900551825761795, -0.006744112353771925, -0.010739543475210667, 0.017746128141880035, 0.001421731780283153, -0.039050232619047165, 0.012941405177116394, -0.024264222010970116, -0.0007341057644225657, -0.02239774353802204, -0.01988966390490532, 0.00952924881130457, -0.01902933232486248, -0.02104162983596325, -0.0159233957529068, -0.03907939791679382, 0.010827034711837769, -0.01760031096637249, 0.008165843784809113, 0.016696235164999962, -0.02074999362230301, 0.018008602783083916, 0.003984494600445032, 0.007123240735381842, -0.021172868087887764, 0.009150119498372078, 0.030855225399136543, -7.889016706030816e-05, -0.0578608363866806, 0.022762291133403778, -0.027020195499062538, -0.017119109630584717, -0.01707536354660988, 0.03129268065094948, -0.011701946146786213, 0.012285220436751842, -0.010192723013460636, 0.03155515342950821, -0.030884388834238052, 0.011038471013307571, 0.0006894487887620926, 0.00532238045707345, -0.00793982483446598, -0.016973290592432022, 0.0181252583861351, -0.01348822470754385, -0.02637859247624874, -0.026509828865528107, -0.01614212431013584, 0.03175929933786392, -0.018562713637948036, -0.013262205757200718, 0.02041460946202278, -0.0027322769165039062, -0.022908108308911324, 0.020779157057404518, -0.006820667069405317, 0.02273312583565712, 0.0033793470356613398, -0.029397038742899895, 0.028492962941527367, -0.016375433653593063, 0.00980630423873663, 0.03855444863438606, -0.029309548437595367, -0.00018534917035140097, -0.04406639561057091, -0.011592581868171692, 0.023374728858470917, -0.012533112429082394, 0.022835200652480125, 0.01675456203520298, 0.0037293117493391037, -0.004338104743510485, 0.004148540552705526, -0.0266556479036808, -0.02671397477388382, 0.005008870270103216, 0.0010344010079279542, 0.014720392413437366, -0.025649499148130417, -0.010717670433223248, -0.019933408126235008, 0.022543562576174736, 0.0008712664130143821, -0.006310301832854748, 0.0510365255177021, 0.0036217705346643925, 0.020312536507844925, -0.00040578594780527055, 0.036775462329387665, -0.03213842958211899, -0.04219991713762283, 0.010754125192761421, 0.03858361393213272, 0.018037766218185425, -0.012401876039803028, 0.010484360158443451, -0.0017179258866235614, 0.005435389932245016, 0.04036260023713112, 0.0054681990295648575, -0.003530633868649602, 0.00652538426220417, 0.01620045118033886, 0.01620045118033886, 0.02669939398765564, -0.0016240552067756653, 0.030592750757932663, -0.022033197805285454, 0.020516682416200638, -0.016404597088694572, -0.0031278098467737436, 0.00920115690678358, -0.003475951962172985, -0.014261063188314438, -0.0013315065298229456, 0.002610153751447797, -0.029178310185670853, -0.020093809813261032, -0.0009851872455328703, -0.03750455379486084, -0.009011591784656048, -0.017162853851914406, 0.009908377192914486, -0.0036910343915224075, 0.00839915405958891, -0.00037548301042988896, -0.014377718791365623, -0.01348822470754385, 0.009696939960122108, 0.0119425468146801, -0.015267211943864822, -0.01676914468407631, 0.022572726011276245, -0.02158115990459919, -0.002586458111181855, -0.009157410822808743, -0.0003697869833558798, 0.0030093323439359665, -0.0026976449880748987, 0.02474542334675789, -0.024293385446071625, -0.0034230926539748907, -0.013736116699874401, -0.01178214605897665, 0.008318953216075897, 0.03473399952054024, 0.028201326727867126, -0.0247016791254282, 0.018796022981405258, 0.019393879920244217, 0.012598730623722076, 0.0066639119759202, 0.011235326528549194, 0.001321481424383819, 0.020895812660455704, 0.004607869312167168, 0.018518967553973198, -0.03823364898562431, 0.0073711322620511055, 0.013036186806857586, -0.005417162552475929, 0.005548399407416582, -0.019233480095863342, 0.0005130993667989969, 0.0035105838906019926, -0.03948768973350525, -0.040683403611183167, -0.033888254314661026, -0.037329573184251785, 0.027720123529434204, -0.017250346019864082, -0.002447930397465825, -0.0009970349492505193, -0.0004912265576422215, -0.015135975554585457, -0.0035926068667322397, -0.02529953420162201, 0.00837728101760149, -0.019423043355345726, 0.0448538139462471, 0.007218022830784321, -0.0015821323031559587, 0.01926264353096485, -0.002633849158883095, -0.037883684039115906, -0.004852115176618099, -0.02468709647655487, -0.007389359641820192, 0.01589423231780529, -0.028842927888035774, -0.020385446026921272, -0.0010426032822579145, -0.01647750660777092, -0.021814469248056412, 0.0016623325645923615, 0.0054208082146942616, 0.0025190170854330063, 0.030767733231186867, -0.0022000388707965612, 0.016360851004719734, 0.01094368938356638, 0.011009307578206062, -0.008588718250393867, 0.042987335473299026, 0.01732325553894043, 0.02099788561463356, 0.015106811188161373, 0.05161980167031288, -0.012853913940489292, -0.007148758973926306, -0.03887525200843811, -0.01564634032547474, -0.010440615005791187, -0.004104794934391975, 0.01818358525633812, 0.012810167856514454, 0.02639317512512207, -0.023914257064461708, 0.0031405689660459757, -0.0006479815929196775, 0.022849781438708305, -0.02379760332405567, -0.0028671592008322477, -0.03269254043698311, 0.02239774353802204, -0.0003531545225996524, 0.015325539745390415, -0.030505260452628136, -0.020589591935276985, -0.035317275673151016, -0.0042032222263514996, 0.0059165917336940765, 0.045291271060705185, 0.00823875330388546, -0.026830630376935005, -0.028609618544578552, 0.008741827681660652, -0.01617128774523735, 0.015427612699568272, -0.010892652906477451, 0.002183634089305997, 0.0016012709820643067, 0.021770723164081573, 0.010025031864643097, 0.011045762337744236, 0.030330277979373932, -0.004101149272173643, 0.015471357852220535, 0.028040925040841103, -0.011563418433070183, 0.008559554815292358, -0.011176998727023602, 0.006368629168719053, 0.013612170703709126, 0.01531095802783966, 0.027020195499062538, 0.0408000573515892, -0.0005914768553338945, 0.015223466791212559, 0.041062530130147934, -0.004801078699529171, 0.0015629936242476106, 0.00920844729989767, -0.030563587322831154, -0.010302087292075157, -0.012584148906171322, -0.011986292898654938, 0.01506306603550911, 0.03636717051267624, 0.017250346019864082, -0.007538823876529932, -0.023345565423369408, 0.030155295506119728, 0.007859624922275543, -0.02952827513217926, 0.02750139683485031, 0.013991299085319042, -0.00951466616243124, -0.03767953813076019, -0.02672855742275715, -0.03890441358089447, -0.0053077987395226955, 0.016914961859583855, -0.013291369192302227, 0.007502369116991758, 0.0124747846275568, 0.004159476608037949, 0.003062191652134061, 0.039895981550216675, 0.021114539355039597, 0.009004301391541958, -0.014508955180644989, 0.00489586079493165, -0.006222810596227646, 0.012708094902336597, 0.006598293781280518, -0.000964225793723017, -0.0054244534112513065, -0.04680778458714485, 0.040216781198978424, -0.038466960191726685, -0.0023057572543621063, 0.009026174433529377, -0.0008507606689818203, 0.006273847073316574, -0.021406177431344986, -0.009492794051766396, 0.009995868429541588, -0.0026466085109859705, 0.012839331291615963, -0.00923032034188509, 0.02783677913248539, 0.011104090139269829, -0.0040173036977648735, 0.0005235800636000931, -0.007465914823114872, 0.0017707851948216558, -0.02382676675915718, -0.0017197486013174057, 0.012256057001650333, 0.003335601417347789, 0.011833183467388153, 0.013313242234289646, 0.009587575681507587, -0.030242787674069405, 0.016929544508457184, 0.004691714886575937, -0.020385446026921272, -0.02499331533908844, 0.024205895140767097, 0.014837047085165977, 0.01904391497373581, 0.026057790964841843, -0.005865554790943861, 0.03919605165719986, 0.053807079792022705, 0.016244197264313698, -0.017658637836575508, 0.012205020524561405, -0.017410745844244957, 0.0008498493116348982, 0.007837751880288124, 0.02385593019425869, -0.0018992878030985594, -0.021726978942751884, 0.0007249920745380223, 0.03038860484957695, 0.018898095935583115, -0.042724862694740295, -0.005296862218528986, -0.007090431638062, -0.027209758758544922, 0.018314821645617485, -0.018927259370684624, -0.00042743090307340026, -0.0033155514393001795, -0.02212068811058998, 0.0011592581868171692, 0.03633800521492958, 0.019423043355345726, 0.023622620850801468, 0.01446520909667015, -0.021697813645005226, 0.013677788898348808, -0.005672345403581858, -0.03009696863591671, -0.00909179262816906, 0.012547694146633148, -0.019437626004219055, 0.04604952782392502, -0.03668797016143799, -0.009828176349401474, 0.02863878197968006, -0.009594867005944252, -0.0016322574811056256, 0.02155199646949768, -0.0032845649402588606, -0.012248766608536243, -0.011264489963650703, -0.018621040508151054, -0.006762339733541012, 0.010287505574524403, 0.024541277438402176, 0.03610469773411751, -0.020968720316886902, -0.01406420860439539, 0.008472063578665257, -0.030738569796085358, -0.029921986162662506, -0.001646839315071702, 0.04377475753426552, -0.022558145225048065, 0.021508250385522842, 0.007352905347943306, 0.028317980468273163, 0.002309402683749795, 0.005205725785344839, 4.912835356662981e-05, 0.005165625363588333, 0.017789874225854874, 0.035346440970897675, 0.014239191077649593, 0.008749119006097317, -0.017629474401474, 0.0216103233397007, -0.022762291133403778, 0.016652489081025124, -0.00070813181810081, 0.03499647602438927, 0.013561134226620197, -0.010323960334062576, -0.00379493017680943, -0.011104090139269829, -0.0016577757196500897, -0.0013497337931767106, 0.050394922494888306, -0.004345395602285862, -0.0014764138031750917, -0.013736116699874401, -0.0031879600137472153, 0.023141419515013695, -0.012533112429082394, -0.02099788561463356, 0.0010371351381763816, -0.01345906127244234, 0.004841179121285677, -0.0009879213757812977, -0.007192504592239857, 0.02268938161432743, -0.039808489382267, 0.008311662822961807, -0.021187448874115944, 0.020808320492506027, 0.009048046544194221, -0.010856198146939278, -0.007910661399364471, 0.007126886397600174, 0.03129268065094948, -0.00432352302595973, -0.017541982233524323, -0.026816049590706825, -0.0004151274624746293, 0.014574573375284672, 0.0016559530049562454, 0.007276350166648626, 0.00624832883477211, 0.011096798814833164, -0.014946411363780499, -0.004538605455309153, 0.015704667195677757, -0.0017835443140938878, 0.013291369192302227, -0.04231657087802887, 0.01119887176901102, -0.034471526741981506, -0.01590881496667862, -0.012175857089459896, 0.005479135550558567, 0.03520062193274498, 0.021916542202234268, 0.0014308454701676965, 0.016244197264313698, -0.025066224858164787, -0.009193865582346916, -0.04365810379385948, -0.01277371309697628, 0.019466789439320564, -0.028201326727867126, 0.021143702790141106, -0.0032718058209866285, 0.03919605165719986, -0.014530828222632408, -0.028317980468273163, 0.020064646378159523, -0.004578705411404371, 0.0034413200337439775, 0.025051644071936607, 0.0006370451883412898, -0.0024880305863916874, -0.023768439888954163, 0.00461880536749959, -0.033654943108558655, 0.0009040755685418844, -0.02048751898109913, 0.0006124383071437478, -0.016900381073355675, -0.0031533280853182077, -0.021770723164081573, -0.016944127157330513, 0.023053927347064018, 0.01784820295870304, 0.01263518538326025, 0.035083964467048645, -0.0008361787768080831, -0.026072373613715172, 0.026014046743512154, -0.02531411685049534, 0.014800592325627804, 0.0018619218608364463, -0.013028895482420921, -0.021391594782471657, 0.026830630376935005, 0.02268938161432743, -0.054944466799497604, 0.01846064068377018, 0.02898874692618847, -0.02353512868285179, 0.00765547901391983, -0.03893357887864113, -0.03409240022301674, -0.0023932484909892082, 0.026626484468579292, 0.0031861374154686928, 0.006547257304191589, 0.010462488047778606, 0.02333098277449608, -0.04424137622117996, -0.033421631902456284, 0.0042907134629786015, -0.004250613506883383, 0.012569567188620567, 0.0013351519592106342, -0.006230101455003023, -0.06701824814081192, -0.003813157556578517, -0.013284078799188137, 0.03173013776540756, -0.010134396143257618, -0.028799181804060936, 0.01564634032547474, -0.00036933127557858825, -0.012569567188620567, -0.006066055502742529, 0.002630203729495406, -0.00533331697806716, 0.006445183884352446, -0.005442680791020393, -0.005661408882588148, -0.000904531276319176, -0.01304347813129425, -0.02074999362230301, -0.010608306154608727, -0.004042821936309338, -0.018271075561642647, -0.0034030426759272814, 0.024526696652173996, 0.006044182926416397, -0.02467251382768154, 0.019933408126235008, -0.005417162552475929, -0.010404160246253014, -0.0070722042582929134, -0.029047073796391487, 0.0036363524850457907, 0.0031587963458150625, -0.023433055728673935, -0.017119109630584717, 0.01321116928011179, 0.007250831928104162, -0.015208885073661804, -0.022776871919631958, 0.014035044237971306, 0.013575715944170952, 0.0042032222263514996, 0.0021635841112583876, -0.010134396143257618, 0.0037092617712914944, 0.019714681431651115, -0.00496147945523262, 0.0010763239115476608, -0.032225921750068665, 0.003532456699758768, 0.0032608695328235626, 0.009901085868477821, 0.014858920127153397, -0.018854349851608276, -0.024862078949809074, -0.006474347785115242, 0.0226747989654541, 0.025707827880978584, -0.010695797391235828, -0.022937273606657982, 0.00133332924451679, 0.021697813645005226, 0.010455196723341942, 0.0038204484153538942, -0.01848980411887169, -0.011578000150620937, 0.014931829646229744, 0.028347143903374672, 0.024774588644504547, 0.014158990234136581, 0.0028452863916754723, 0.009543830528855324, -0.011315526440739632, 0.017746128141880035, 0.009711521677672863, 0.012234183959662914, 0.0022565436083823442, 0.005136461928486824, 0.01593797840178013, 0.0027377449441701174, 0.015792159363627434, -0.03041777014732361, 0.01614212431013584, -0.0008803800446912646, -0.012875786051154137, -0.024016330018639565, -0.020327119156718254, -0.0036837435327470303, -0.008559554815292358, -0.014851628802716732, 0.01362675242125988, 0.025139134377241135, 0.0022638344671577215, 0.03540476784110069, 0.012175857089459896, -0.016637906432151794, 0.06136048585176468, -0.020968720316886902, 0.021508250385522842, -0.007699224632233381, -0.012030038051307201, 0.021989451721310616, -0.0036290616262704134, 0.004206867888569832, -0.007495078258216381, -0.0025317762047052383, 0.013692370615899563, -0.004914088174700737, -0.00315697374753654, -0.016390016302466393, -0.00403553107753396, -0.02015213668346405, -0.019466789439320564, -0.03353828936815262, 0.006693075876682997, -0.01618587039411068, -0.005745254456996918, 0.014494373463094234, 0.009704230353236198, 0.008333535864949226, 0.01205920148640871, -0.004746397025883198, 0.024322550743818283, -0.004997934214770794, -0.019773008301854134, -0.009142829105257988, -0.0136486254632473, -0.003999076317995787, 0.0005814518663100898, 0.0025828126817941666, 0.02273312583565712, -0.014406882226467133, -0.002874450059607625, 0.0009614916634745896, -0.003043964272364974, 0.012146692723035812, 0.008340826258063316, 0.018504386767745018, -0.017439909279346466, 0.044416360557079315, -0.026466084644198418, 0.011373854242265224, -8.304827497340739e-05, -0.025736991316080093, -0.013378860428929329, -0.006273847073316574, 0.01066663395613432, -0.008333535864949226, -0.0357547327876091, -0.005274989642202854, 0.00854497216641903, 0.0019685516599565744, 0.0006689430447295308, 0.04149998724460602, 0.0009245813707821071, -0.030534423887729645, -0.0323425754904747, 0.013568424619734287, 0.01163632795214653, 0.0014199090655893087, -0.012955986894667149, -0.0029218411073088646, 0.006321238353848457, 0.012285220436751842, -0.0021070793736726046, -0.0007427637465298176, 0.0181252583861351, -0.009616740047931671, -0.012540403753519058, -0.012285220436751842, 0.0150339026004076, 0.015500522218644619, -0.024891242384910583, -0.018621040508151054, -0.023462219163775444, 0.02898874692618847, -0.009500084444880486, 0.006795148830860853, -0.010681215673685074, 0.012168565765023232, 0.004917733836919069, -0.024089239537715912, 0.0042433226481080055, -0.00379493017680943, 0.013036186806857586, -0.0013542906381189823, 0.014611028134822845, -0.0015684617683291435, 0.010119813494384289, -0.009609448723495007, 0.004793787840753794, 0.008523100055754185, 0.02583906427025795, -0.004640678409487009, 0.01191338337957859, 0.0065764207392930984, 0.010156268253922462, 0.027705542743206024, 0.017498238012194633, -0.02754514105618, -0.020297955721616745, -0.00035885057877749205, -0.02241232618689537, 0.022835200652480125, -0.006412374787032604, -0.009113665670156479, -0.008814737200737, -0.031409334391355515, 0.015325539745390415, -0.009303229860961437, -0.013670497573912144, 0.0032335284631699324, -0.011556128039956093, 0.013101805001497269, 0.015485940501093864, -0.015442194417119026, -0.015135975554585457, -0.007538823876529932, -0.01249665766954422, 0.00964590348303318, -0.031321845948696136, 0.03149682655930519, 0.0005208459915593266, 0.00993024930357933, -0.0009760735556483269, 0.000957846234086901, 0.014173571951687336, -0.010972852818667889, -0.039866816252470016, -0.009973995387554169, 0.01318929623812437, -0.0020706248469650745, 0.0004632020427379757, 0.006044182926416397, -0.002436994109302759, -0.03797117620706558, -0.0018272899324074388, 0.022587308660149574, 0.0028343498706817627, 0.029863659292459488, -0.007170632015913725, -0.0027322769165039062, -0.029951149597764015, -0.002611976582556963, -0.02416214905679226, 0.024774588644504547, 0.024555860087275505, -0.01067392434924841, -0.01620045118033886, 0.014567282982170582, 0.016667071729898453, 0.000669854402076453, -0.020356282591819763, 0.006412374787032604, -0.0025153716560453176, 0.010127104818820953, 0.0007801297469995916, -0.00454589631408453, -0.033975742757320404, 0.001596714137122035, -0.004236031789332628, -0.043278973549604416, 0.021916542202234268, 0.027486814185976982, -0.031351007521152496, 0.020239626988768578, -0.019379297271370888, 0.003348360536620021, 0.01935013383626938, -0.0004370002425275743, -0.014093372039496899, -0.017775293439626694, 0.0070977224968373775, -0.015369284898042679, -0.009973995387554169, 0.00936884805560112, 0.003718375461176038, -0.006208228878676891, -0.027472233399748802, 0.004188640508800745, -0.006503511685878038, 0.010272923856973648, -0.019218897446990013, -0.006138965021818876, 0.004542250651866198, 0.012992441654205322, 0.015821322798728943, -0.015427612699568272, -0.02445378713309765, 0.004093858413398266, 0.0010407805675640702, -0.0058509730733931065, 0.008596008643507957, 0.009733394719660282, -0.0017953920178115368, 0.02611611969769001, 0.009696939960122108, -0.016973290592432022, -0.006230101455003023, 0.007691933307796717, -0.0024898534175008535, -0.004181349650025368, 0.013094514608383179, -0.02105621248483658, -0.014581864699721336, -0.024512114003300667, -0.00030690268613398075, 0.01704620011150837, -0.027151431888341904, 0.022266507148742676, 0.0032207693438977003, 0.003802221268415451, 0.004024594556540251, -0.030826061964035034, -0.012525822035968304, -0.018314821645617485, 0.025897391140460968, 0.006102510262280703, 0.01617128774523735, 0.0026083309203386307, -0.017731547355651855, 0.01207378413528204, 0.0003148771356791258, 0.029921986162662506, 0.011176998727023602, -0.03584222123026848, -0.010148977860808372, -0.022514399141073227, 0.01106034405529499, 0.008005443960428238, 0.003412156365811825, -0.03604636713862419, 0.029163729399442673, -0.026057790964841843, 0.008887646719813347, 0.012554985471069813, 0.005176561884582043, 0.008479353971779346, -0.015690086409449577, -0.007713806349784136, -0.004509441554546356, 0.01621503382921219, 0.03502563759684563, -0.010797870345413685, 0.014837047085165977, -0.01708994433283806, 0.011257199570536613, -0.015223466791212559, 0.00993024930357933, 0.02812841720879078, -0.006179064977914095, 0.014960993081331253, -0.0010070600546896458, -0.002252897946164012, -0.006492575164884329, -0.018562713637948036, 0.04855760931968689, -0.006864412687718868, 0.016856634989380836, -0.024555860087275505, -0.024570440873503685, -0.010542687959969044, 0.001979488180950284, 0.006226456258445978, 0.018927259370684624, -0.004039176274091005, -0.00467348750680685, 0.012321675196290016, -0.025751572102308273, -0.0013579361839219928, -0.003169732866808772, 0.005902009550482035, 0.013750698417425156, -0.0076408968307077885, 0.001941210706718266, -0.01764405518770218, 0.006335820071399212, 0.01904391497373581, 0.014297517947852612, -0.0016422824701294303, 0.012992441654205322, -0.0025955718010663986, 0.023505965247750282, -0.042491551488637924, -0.014231899753212929, -0.01618587039411068, -0.007619024254381657, -0.003299146890640259, 0.014290227554738522, -0.03312999755144119, -0.0329841785132885, 0.008559554815292358, -0.0018400490516796708, 0.025664081797003746, 0.00923761073499918, 0.008909518830478191, -0.0075169513002038, -0.018518967553973198, 0.01094368938356638, -0.05450700968503952, 0.002511726226657629, -0.0005541108548641205, 0.008260626345872879, -0.006226456258445978, 0.021741559728980064, -0.01593797840178013, 0.04260820895433426, 0.014946411363780499, 0.011424890719354153, -0.007356550544500351, -0.02247065305709839, -0.030796898528933525, -0.00992295891046524, 0.016244197264313698, -0.0020250563975423574, -0.038729432970285416, 0.015573430806398392, -0.0212895218282938, 0.020808320492506027, -0.004950542934238911, 0.013896516524255276, -0.019758425652980804, -0.006142610218375921, -0.003962621558457613, -0.004123022314161062, -0.01708994433283806, 0.03861277550458908, -0.026903539896011353, -0.0017990375636145473, -0.007079495117068291, -0.010003158822655678, -0.03097188100218773, 0.028172161430120468, -0.003783993888646364, 0.015704667195677757, 0.034442365169525146, -0.03467567265033722, -0.018329404294490814, 0.0026575447991490364, -0.01875227689743042, -0.004385495558381081, -0.046457819640636444, -0.009594867005944252, -0.008486645296216011, -0.017104526981711388, 0.012569567188620567, -0.01876685954630375, 0.012846622616052628, -0.016944127157330513, 0.023083090782165527, 0.009390721097588539, 0.01091452594846487, -0.016929544508457184, 0.01307264156639576, -0.0027541497256606817, 0.027997178956866264, 0.0430748276412487, -0.0193355530500412, -0.002296643564477563, -0.008384572342038155, 0.01904391497373581, 0.023433055728673935, 0.0014818819472566247, 0.011432182043790817, 0.010717670433223248, -0.015106811188161373, 0.017658637836575508, 0.026028627529740334, 0.0002597394632175565, -0.002617444610223174, -0.009215738624334335, 0.015821322798728943, 0.015296375378966331, 0.010520814917981625, 0.004101149272173643, 0.02751597762107849, -0.018081512302160263, 0.0037730573676526546, -0.016054632142186165, 0.010280214250087738, -0.033392470329999924, -0.0034522563219070435, 0.0015265389811247587, 0.0051255254074931145, 0.008049189113080502, 0.005719736218452454, 0.0008963290019892156, 0.006310301832854748, -0.013721534051001072, -0.003049432300031185, 0.03315915912389755, 0.005377062596380711, 0.020268792286515236, -0.01757114753127098, 0.014815174043178558, 0.027968015521764755, 0.003911585081368685, -0.000532238045707345, -0.005646827165037394, 0.013196587562561035, -0.0036800981033593416, 0.002568230964243412, -0.010185432620346546, -0.028784601017832756, -0.0033902835566550493, 0.007808588445186615, -0.004181349650025368, -0.01119887176901102, 0.02133326791226864, 0.016112960875034332, -0.01932097040116787, -0.016856634989380836, 0.017192017287015915, 0.009193865582346916, -0.007764842826873064, -0.010878071188926697, -0.01219043880701065, 0.02021046355366707, -0.006273847073316574, -0.012963277287781239, 0.0040173036977648735, 0.004622451029717922, -0.0030220914632081985, -0.002759617753326893, 0.001979488180950284, -0.003182491986081004, 0.013881934806704521, -0.013313242234289646, 0.02669939398765564, -0.015777576714754105, 0.0047391061671078205, 0.001935742562636733, -0.0173086728900671, -0.0073128049261868, -0.007546114735305309, 0.02324349246919155, 0.005912946071475744, 0.007382068783044815, 0.0011592581868171692, -0.0011328286491334438, -0.014231899753212929, 0.0021963934414088726, 0.000766914919950068, -0.015515103936195374, -0.009412593208253384, 0.00596033688634634, 0.06351859867572784, 0.004750042222440243, 0.014734974130988121, -0.020808320492506027, 0.007017522118985653, -0.0064160204492509365, 0.0017990375636145473, -0.008260626345872879, 0.01506306603550911, -0.01133010908961296, 0.003630884224548936, -0.017979439347982407, -0.0026848858688026667, -0.0110530536621809, -0.028274234384298325, 0.014888083562254906, 0.024585023522377014, 0.014516246505081654, 0.014778719283640385, 0.02041460946202278, 0.011475927196443081, -0.01151967328041792, -0.01348822470754385, -0.00039234329597093165, -0.0017106350278481841, -0.002553649013862014, -0.0054645538330078125, 3.491673123789951e-05, -0.0034394972026348114, 0.005457262974232435, -0.0005445415154099464, -0.009171992540359497, -0.022018615156412125, 0.003922521602362394, -0.03149682655930519, 0.020822903141379356, -0.007976279594004154, 0.02266021817922592, 0.007053976878523827, 0.019991736859083176, -0.01191338337957859, 0.0035361021291464567, 0.027166012674570084, 0.035375602543354034, -0.007134177256375551, -0.00765547901391983, 0.011096798814833164, -0.005315089598298073, -0.0007646364974789321, 0.0012804699363186955, -0.031380172818899155, -0.014363136142492294, -0.016112960875034332, -0.006838894449174404, 0.009033464826643467, 0.0007509660208597779, 0.018300238996744156, -0.003663693554699421, 0.013444478623569012, -0.0036290616262704134, 0.008902228437364101, 0.006288429256528616, -0.02613070048391819, -0.03610469773411751, -0.003249933011829853, -0.016535833477973938, 0.008267916738986969, -0.007721097208559513, 0.011811310425400734, 0.008938683196902275, -0.0066420393995940685, 0.01108221709728241, 0.01926264353096485, -0.015719249844551086, -0.01679830811917782, -0.0031405689660459757, 0.009179283864796162, 0.020225046202540398, 0.022237343713641167, 0.008129389025270939, -0.013203877955675125, -0.007276350166648626, 0.008136680349707603, 0.008348117582499981, -0.006215519737452269, -0.0005964894080534577, 0.002579167252406478, -0.012263348326086998, -0.005402580834925175, -0.038437794893980026, -0.0018628331599757075, 0.009543830528855324, 0.00379493017680943, 0.026597321033477783, 0.021639486774802208, -0.0028343498706817627, 0.010418741963803768, -0.012088365852832794, 0.020516682416200638, -0.0041303131729364395, 0.00953653920441866, -0.0019557925406843424, -0.006514447741210461, 0.007112304214388132, 0.012263348326086998, -0.0069154491648077965, 0.017498238012194633, 0.004305295646190643, -0.008297081105411053, 0.014654774218797684, 0.0024205895606428385, -0.0022091525606811047, 0.000996123650111258, 0.015252630226314068, -0.02158115990459919, 0.006168128456920385, -0.0048120152205228806, 0.008625173009932041, -0.002593749202787876, -0.005705154500901699, 0.002755972323939204, -0.031700972467660904, -0.01595255918800831, 0.010717670433223248, -0.006160837598145008, 0.010870779864490032, -0.012263348326086998, 0.0022091525606811047, 2.8302201826591045e-06, -0.01164361834526062, 0.013313242234289646, 0.0006046916823834181, 0.001396213541738689, -0.005643181502819061, 0.005107298027724028, -0.007786715403199196, 0.01276642270386219, -0.03552142158150673, 0.014144408516585827, 0.0026466085109859705, 0.01679830811917782, 0.026232773438096046, 0.011104090139269829, 0.003918875940144062, 0.0038751305546611547, 0.011322817765176296, -0.011140544898808002, -0.02751597762107849, 0.01900016888976097, 0.01020730473101139, -0.0022911755368113518, -0.02643692120909691, -0.00017600765568204224, -0.013757988810539246, 0.002524485345929861, -0.0037037935107946396, 0.0009022528538480401, 0.039575181901454926, -0.00867620948702097, 0.006007728166878223, -0.00013157854846213013, 0.016390016302466393, -0.0055338176898658276, 0.018387731164693832, -0.007546114735305309, 0.00672953063622117, 0.0037402482703328133, 0.008902228437364101, 0.01790652982890606, -0.01955427974462509, 0.0024698032066226006, 0.003643643343821168, -0.015602595172822475, -0.0002877639781218022, 0.00978443119674921, -0.009288647212088108, -0.01221231184899807, 0.01760031096637249, -0.012030038051307201, 0.024599606171250343, 0.004706296604126692, 0.015135975554585457, 0.024803752079606056, 0.019802171736955643, -0.004126667510718107, -0.004345395602285862, -0.00023991723719518632, -0.019233480095863342, 0.00923761073499918, 0.003182491986081004, 0.0031715554650872946, 0.023083090782165527, -0.016812888905405998, 0.00030189016251824796, -0.010265632532536983, -0.012992441654205322, -0.0019102242076769471, 0.00582180917263031, 0.009354266338050365, 0.006379565689712763, -0.01151967328041792, 0.010717670433223248, 7.814967830199748e-05, 0.023433055728673935, 0.006423311308026314, -0.004312586504966021, -0.0025335990358144045, -0.02069166488945484, -0.00909179262816906, -0.019816754385828972, -0.044153884053230286, -0.02410382218658924, 0.004921379033476114, 0.0012048265198245645, -0.010046904906630516, -0.007243541069328785, 0.025999464094638824, 0.006124383304268122, 0.026057790964841843, -0.01192067377269268, -0.013940262608230114, 0.0042032222263514996, 0.006251974496990442, -0.0035926068667322397, -0.003131455508992076, -0.007925243116915226, -0.0065764207392930984, 0.028828345239162445, 0.01932097040116787, 0.0017562032444402575, -0.00021690523135475814, 0.005428099073469639, -0.024482950568199158, 0.02586822770535946, 0.012926822528243065, 0.01136656291782856, 0.017177436500787735, -0.006959194783121347, 0.01930638775229454, -0.019116824492812157, 0.010374996811151505, 0.008880355395376682, 0.015165138989686966, -0.002498967107385397, 0.013291369192302227, -0.0026830630376935005, -0.0008120276033878326, 0.001221231184899807, 0.006492575164884329, -2.2841124518890865e-05, 0.003783993888646364, -0.008909518830478191, -0.005030743312090635, 0.013101805001497269, 0.013860061764717102, 0.014975574798882008, -0.0007527887355536222, 0.002704935846850276, -0.002316693775355816, -0.026247356086969376, -0.0007509660208597779, 0.016287943348288536, 0.0041740587912499905, -0.017177436500787735, 0.012897659093141556, 0.02042919211089611, -0.02213527075946331, 0.023724693804979324, 0.004002721980214119, 0.017964856699109077, 0.003373878775164485, 0.002227379707619548, -0.011752982623875141, 0.0006065143970772624, -0.003929812461137772, -0.01478601060807705, -0.006321238353848457, 0.007808588445186615, 0.010236469097435474, 0.015427612699568272, 0.005391644313931465, -0.0006930942181497812, 0.005369771737605333, -0.041937440633773804, -0.026553574949502945, 0.00603689206764102, -0.01517972070723772, 0.015267211943864822, -0.00410844013094902, 0.010046904906630516, 0.008421027101576328, -0.0021325976122170687, 0.027355577796697617, 0.006091573741286993, -0.007225313689559698, 0.012941405177116394, 0.003211655654013157, 0.0008708107052370906, 0.032196756452322006, 0.012401876039803028, -0.0038751305546611547, 0.006215519737452269, -0.008260626345872879, 0.004170413129031658, 0.027136849239468575, 0.017789874225854874, -0.0028252361807972193, -0.00624832883477211, 0.0065727755427360535, -0.0016486620297655463, 0.007338323164731264, -0.0008945062290877104, -0.003218946512788534, -0.0007145113777369261, 0.0018300239462405443, -0.013240332715213299, 0.017250346019864082, 0.011038471013307571, -0.013743407092988491, 0.03485065698623657, -0.007845043204724789, 0.008472063578665257, -0.010404160246253014, 0.021420758217573166, -0.008340826258063316, 0.016929544508457184, 0.005880136974155903, -0.00046274636406451464, -0.0031205189879983664, -0.006226456258445978, -0.009587575681507587, -0.019204314798116684, 0.014559991657733917, -0.003557974938303232, -0.002918195677921176, -0.011541545391082764, -0.017498238012194633, -0.012445621192455292, -0.014815174043178558, 0.0056942179799079895, -0.027399323880672455, 0.010141686536371708, -0.0006657532649114728, -0.01755656488239765, 0.00953653920441866, 0.005457262974232435, 0.009004301391541958, -0.0051255254074931145, 0.0077940067276358604, 0.014472500421106815, 0.014056917279958725, -0.020297955721616745, 0.006948258262127638, 0.0022073297295719385, 0.005479135550558567, -0.01790652982890606, -0.010163559578359127, 0.018096093088388443, -0.0015885118627920747, -0.00453495979309082, -0.03595887869596481, 0.012642476707696915, -0.018023183569312096, -0.019481370225548744, 0.00040236831409856677, 0.014698519371449947, -0.020866647362709045, -0.0002984725288115442, -0.03429654613137245, -0.010717670433223248, -0.0015101343160495162, -0.015208885073661804, 0.006612875498831272, -0.0019029333489015698, -0.02133326791226864, 0.00765547901391983, 0.006324883550405502, -0.025372443720698357, 0.00617541978135705, -0.025124551728367805, 0.04686611145734787, 0.013058059848845005, -0.023680947721004486, -0.0026210900396108627, 0.027734706178307533, 0.00245339865796268, 0.017425328493118286, 0.023199746385216713, -0.005023452453315258, -0.010549979284405708, -0.020575011149048805, 0.013400733470916748, -0.03485065698623657, -0.005151043646037579, 0.020239626988768578, -0.004319877363741398, -0.006007728166878223, 0.005063552409410477, 0.017221182584762573, -0.01844605803489685, 0.026611901819705963, 0.005449971649795771, -0.0030895324889570475, 0.009609448723495007, 0.013918389566242695, -0.0035907840356230736, 0.012102947570383549, 0.03473399952054024, 0.012314384803175926, -0.010272923856973648, -0.0015730186132714152, 0.0020560428965836763, -0.01786278374493122, -0.0034085107035934925, 0.005154689308255911, -0.009463629685342312, 0.01563175953924656, -0.008027316071093082, 0.008027316071093082, -0.0037220208905637264, 0.014917246997356415, 4.488480044528842e-05, 0.02105621248483658, -0.01033854205161333, 0.03823364898562431, -0.006827957928180695, 0.028317980468273163, 0.006714948453009129, -0.0048557608388364315, 0.005027097649872303, -0.0014299340546131134, -0.01277371309697628, -0.003574379486963153, 0.006219165399670601, -0.0238850936293602, 0.002158115850761533, 0.01586506888270378, -0.03657131642103195, 0.00454589631408453, -0.005132816266268492, -0.019204314798116684, 0.00379493017680943, 0.008457480929791927, -0.014450627379119396, 0.000857595878187567, 0.005719736218452454, 0.007013876922428608, 0.018096093088388443, -0.010148977860808372, -0.027676379308104515, 0.009492794051766396, 0.031700972467660904, 0.03613385930657387, -0.003995430655777454, 0.0025973946321755648, -0.014421463944017887, -0.022558145225048065, 0.0033046151511371136, 0.023476801812648773, -0.027151431888341904, 0.00390793988481164, -0.011074925772845745, 0.007166986353695393, 0.0012567744124680758, -0.001961260801181197, -0.032809194177389145, 0.020035481080412865, 0.011242617852985859, -0.011344690807163715, -0.0024825623258948326, -0.01133739948272705, 0.00820958986878395, -0.0009487325442023575, -0.0012667995179072022, -0.006711303256452084, 0.01708994433283806, 0.007385714445263147, 0.016608742997050285, -0.011767564341425896, -0.0070284586399793625, -0.009543830528855324, 0.007425814401358366, 0.007662769872695208, 0.009048046544194221, 0.008698082529008389, 0.01445791870355606, 0.0032772740814834833, 0.01787736639380455, 0.02891583740711212, 0.009660485200583935, 0.0037092617712914944, 0.007021167781203985, -0.005362480878829956, -0.003042141441255808, 0.004232386127114296, 0.01404233556240797, -0.018548130989074707, 0.020560428500175476, -0.0026757721789181232, -0.010615597479045391, -0.0007915218593552709, 0.014363136142492294, 0.012234183959662914, -0.0038787759840488434, -0.0066857850179076195, -0.0005112765938974917, -0.006587357260286808, 0.0036345296539366245, 0.011125962249934673, -0.01178214605897665, 0.02417673170566559, 0.01478601060807705, -0.008472063578665257, 0.016244197264313698, -0.016302524134516716, -0.005752545315772295, 0.017746128141880035, 0.007123240735381842, -0.0033957515843212605, 0.008814737200737, 0.005165625363588333, -0.028492962941527367, -0.0015821323031559587, -0.004385495558381081, -0.02104162983596325, 0.007108659017831087, 0.019525116309523582, 0.002353148302063346, -0.012861204333603382, -0.01378715317696333, -0.020589591935276985, 0.0032535784412175417, -0.005705154500901699, -0.008333535864949226, 0.009777139872312546, 0.014035044237971306, 0.005945755168795586, 0.007626315113157034, 0.03417988866567612, -0.004483923316001892, -0.015777576714754105, -0.007648187689483166, -0.0199042446911335, -0.004826596938073635, -0.014749555848538876, -0.01704620011150837, -0.008763700723648071, 0.012409166432917118, -0.011811310425400734, 0.0020086518488824368, -0.006948258262127638, 0.005657763220369816, 0.035054802894592285, 0.029630348086357117, 0.008027316071093082, -0.031030207872390747, -0.014377718791365623, 0.005559335928410292, 0.0025445353239774704, 0.013123678043484688, 0.016871217638254166, -0.008523100055754185, -0.014734974130988121, 0.010703088715672493, 0.01221231184899807, -0.004483923316001892, 0.012161275371909142, 0.008464772254228592, 0.00045158210559748113, 0.01789194718003273, -0.01615670509636402, 0.004611514508724213, -0.005778064019978046, 0.021945705637335777, 0.025212043896317482, -0.009339684620499611, 0.020064646378159523, -0.011738400906324387, 0.023185163736343384, -0.010396868921816349, 0.014858920127153397, -0.0025992172304540873, -0.013218460604548454, 0.003988139797002077, 0.0053114439360797405, 0.011957128532230854, 0.01332053355872631, 0.01207378413528204, 0.027705542743206024, -0.009434466250240803, 0.009747976437211037, -0.011534254997968674, -0.008668918162584305, 0.0020396383479237556, -0.0016787371132522821, 0.00273045408539474, -0.0023640848230570555, -0.000556844926904887, -0.017119109630584717, -0.009755267761647701, 0.002360439393669367, 0.016623325645923615, 0.011672782711684704, 0.004793787840753794, 0.003824093844741583, 0.00212895218282938, -0.011548836715519428, -0.040712565183639526, -0.005136461928486824, -0.014538118615746498, 0.003751184558495879, 0.001402593101374805, 0.005927527789026499, -0.005727027077227831, 0.0032572238706052303, -0.015077647753059864, 0.015427612699568272, 0.0119425468146801, 0.02524120733141899, -0.006780567113310099, -0.04269569739699364, -0.0077502611093223095, -0.003293678630143404, 0.02153741382062435, -0.007247186731547117, -0.029761584475636482, -0.002436994109302759, 0.006835248786956072, 0.02467251382768154, 0.003661870723590255, -0.007363841403275728, 0.0036673389840871096, 0.0048120152205228806, -0.013123678043484688, 0.0049687703140079975, -0.025387026369571686, 0.0037730573676526546, -0.0031788465566933155, 0.011446763761341572, -0.0186939500272274, 0.00821688026189804, -0.020079227164387703, 0.0029510047752410173, 0.010265632532536983, 0.004155831411480904, 0.0030038640834391117, -0.003601720556616783, -0.003213478485122323, 0.0190147515386343, 0.003638175083324313, -0.017396165058016777, -0.004006367176771164, -0.013743407092988491, 0.0003761665429919958, 0.015135975554585457, -0.012963277287781239, -0.0019211606122553349, -0.0363963320851326, 0.01490266527980566, -0.0008042809786275029, -0.02296643704175949, -0.019423043355345726, -0.010404160246253014, 0.022339416667819023, 0.0014363136142492294, -0.018314821645617485, 0.02952827513217926, 0.008727245964109898, -0.005570272449404001, -0.014990156516432762, 0.0020104744471609592, 0.012387294322252274, 0.0009049869840964675, 0.016885798424482346, -0.01986049860715866, -0.0004039632040075958, -0.015967141836881638, -0.005705154500901699, -0.002856222679838538, -0.024876661598682404, -0.000957846234086901, 0.008734536357223988, 0.0011355626629665494, -0.015194302424788475, -1.1534482837305404e-05, -0.012175857089459896, 0.0007122329552657902, -0.018810605630278587, 0.011403017677366734, -0.011607164517045021, -0.020779157057404518, -0.021522831171751022, -0.004483923316001892, -0.011847765184938908, -0.0016495734453201294, 0.00892410147935152, 0.0002674860879778862, -0.005486426409333944, -0.010878071188926697, -0.00273045408539474, -0.035900551825761795, -0.010907234624028206, -0.013400733470916748, 0.003023914061486721, -0.0038751305546611547, 0.005038034170866013, 0.017541982233524323, 0.0015639049233868718, -0.01622961461544037, -0.0190147515386343, 0.010331250727176666, -0.0068680583499372005, 0.002214620588347316, -0.010520814917981625, -0.0024132984690368176, -0.024832915514707565, 0.03569640591740608, -0.018329404294490814, -0.01962718926370144, -0.0010936398757621646, 0.016608742997050285, 0.0015438549453392625, -0.016244197264313698, -0.018256494775414467, -0.005741609260439873, -0.019758425652980804, -0.005646827165037394, 0.002504435135051608, 0.002323984634131193, 0.0021271295845508575, 0.012802877463400364, 0.004782851319760084, 0.01900016888976097, 0.006084282882511616, 0.00823146291077137, 0.006040537264198065, 0.021654069423675537, -0.03715458884835243, 0.010054195299744606, -0.0075169513002038, -0.0133278239518404, -0.05016161501407623, -0.010097941383719444, -0.009616740047931671, -0.000766914919950068, -0.029455365613102913, -0.006135319359600544, 0.008967846632003784, -0.01926264353096485, 0.001308722305111587, -0.037883684039115906, 0.0009587575914338231, 0.016914961859583855, -0.01193525642156601, -0.009303229860961437, -0.005942109972238541, 0.01955427974462509, -0.0003832296351902187, 0.020633338019251823, 0.01732325553894043, 0.0278659425675869, 0.026305682957172394, -0.01053539663553238, 0.011279072612524033, -0.004524023272097111, 0.00659100292250514, 0.004950542934238911, -0.002340389182791114, 0.009215738624334335, 0.0226747989654541, 0.01407149899750948, -0.013028895482420921, -0.009901085868477821, -0.01036041509360075, -0.01617128774523735, -0.02531411685049534, 0.011096798814833164, 0.018023183569312096, -0.003864194033667445, 0.032517556101083755, -0.010396868921816349, 0.009332393296062946, -0.024541277438402176, 0.01163632795214653, -0.02099788561463356, 0.007903371006250381, 0.026538994163274765, 0.024803752079606056, 0.025955718010663986, 0.013867353089153767, -0.0026447856798768044, -0.004873988218605518, -0.014414172619581223, 0.0011738401371985674, 0.0295720212161541, 0.015135975554585457, -0.0029273093678057194, -0.00853768177330494, 0.004633387550711632, 0.003519697580486536, 0.00030394073110073805, 0.016273360699415207, 0.013553842902183533, -0.005635890644043684, -0.002336743753403425, 0.014545409940183163, -0.0020833839662373066, 0.014822465367615223, 0.010418741963803768, -0.0008521276758983731, -0.005001579411327839, 0.028580455109477043, -0.01434855442494154, 0.009857340715825558, 0.006069701164960861, -0.0005974007654003799, 0.009733394719660282, -0.025343280285596848, -0.003098646178841591, 0.02411840297281742, -0.0024953214451670647, 0.0027450360357761383, 0.016594162210822105, 0.0021781660616397858, -0.01930638775229454, -0.0017607600893825293, 0.01332053355872631, -0.004483923316001892, -9.63200509431772e-05, 0.017162853851914406, 0.022616472095251083, 0.004057403653860092, -0.0024953214451670647, 0.012518530711531639, -0.005187498405575752, 1.0352554454584606e-05, 0.0008653425029478967, 0.0035962522961199284, 0.007772133685648441, 0.005293217021971941, -0.0011446763528510928, -0.020779157057404518, -0.009580285288393497, 0.00475733308121562, 0.018343985080718994, 0.0037912847474217415, -0.018066929653286934, 0.017206599935889244, -0.019364716485142708, -0.003506938461214304, 0.020020900294184685, 0.01492453832179308, -0.001708812196739018, 0.019641771912574768, -0.0016577757196500897, 0.02758888714015484, -0.01404962595552206, 0.009777139872312546, 0.022076942026615143, -0.0041849953122437, 0.018387731164693832, 0.011140544898808002, -0.008997010067105293, 0.010542687959969044, -0.012897659093141556, -0.012955986894667149, 0.0019867790397256613, 0.012992441654205322, -0.015485940501093864, 0.01703161746263504, -0.011118671856820583, -0.016842054203152657, -0.004349041264504194, 0.031409334391355515, -0.003269983222708106, -0.0033902835566550493, -0.0021016111131757498, 0.03041777014732361, -0.012030038051307201, -0.002455221489071846, -0.015296375378966331, 0.01988966390490532, -0.003958976361900568, 0.02018130011856556, -0.027632633224129677, -0.013612170703709126, -0.002141711302101612, -0.007866916246712208, 0.0048120152205228806, 0.008982428349554539, 0.0017644056351855397, 0.001915692468173802, 0.011869637295603752, -0.00251719425432384, 0.005030743312090635, -0.013998589478433132, 0.015602595172822475, -0.003348360536620021, -0.0018400490516796708, -0.011351981200277805, -0.006135319359600544, 0.0021818114910274744, 0.003424915485084057, -0.01757114753127098, -0.021960288286209106, 0.0009040755685418844, -0.023053927347064018, -0.006222810596227646, -0.008063770830631256, 0.022616472095251083, -0.018664786592125893, -0.012751840054988861, 0.0035361021291464567, -0.006244683638215065, 0.02528495341539383, 0.004188640508800745, 0.005858263932168484, -0.022353997454047203, -0.009871922433376312, 0.0005477312952280045, -0.013101805001497269, 0.013743407092988491, 0.017410745844244957, -0.00014297061716206372, 0.0031205189879983664, -0.003025736892595887, -0.024760005995631218, 0.027093105018138885, -0.008997010067105293, -0.03228424862027168, 0.003530633868649602, -0.007808588445186615, 0.00965319387614727, 0.0055812085047364235, -0.008195008151233196, -0.0181981660425663, 0.0023440346121788025, -0.016987871378660202, -0.010426033288240433, 0.031321845948696136, 0.01305076852440834, -0.0011118671391159296, 0.008625173009932041, -0.008807445876300335, -0.022908108308911324, -0.007214377634227276, 0.007199795451015234, -0.013240332715213299, -0.0040173036977648735, 0.028828345239162445, -0.017716964706778526, -0.009026174433529377, 0.014399590902030468, 0.007090431638062, 0.011009307578206062, -0.01421002671122551, -0.02416214905679226, -0.008581426925957203, -0.0097917215898633, 0.005369771737605333, -0.01135927252471447, -0.020662501454353333, 0.009893795475363731, -0.013984007760882378, 0.01844605803489685, -0.005552045069634914, -0.002774199703708291, 0.008421027101576328, 0.0021271295845508575, 0.01563175953924656, -0.002511726226657629, 0.006937322206795216, -0.01391109824180603, 0.0186939500272274, 0.020662501454353333, 0.027997178956866264, -0.04791600629687309, -0.016914961859583855, -0.024628769606351852, -0.00411937665194273, 0.003211655654013157, -0.01464748289436102, 0.01847522146999836, -0.009106374345719814, -0.0018309353617951274, 0.013641334138810635, -0.0034960019402205944, -0.006040537264198065, 0.010681215673685074, -0.01900016888976097, -0.022514399141073227, 0.005096361506730318, -0.012810167856514454, -0.027136849239468575, -0.028215907514095306, -0.004881279077380896, -0.004298004321753979, 0.00025518261827528477, -0.012649767100811005, 0.00037730575422756374, 0.011578000150620937, 0.016652489081025124, -0.02353512868285179, 0.002028701826930046, -0.0012030038051307201, -0.02586822770535946, 0.005362480878829956, -0.018533550202846527, -0.028522126376628876, 0.024555860087275505, 0.002704935846850276, -0.012744549661874771, -0.02640775591135025, 0.0025828126817941666, -0.017658637836575508, 0.02016671933233738, 0.0066456845961511135, 0.014581864699721336, -0.0009250370203517377, 0.007662769872695208, 0.009325101971626282, 0.005515590310096741, 0.0024570440873503685, -0.005541108548641205, 0.0014426931738853455, -0.02127494104206562, 0.006926385685801506, -0.004050112795084715, 0.003036673180758953, -0.0022055068984627724, -0.01363404281437397, 0.011023889295756817, 0.007017522118985653, -0.004192286171019077, -0.030301114544272423, 0.0016122073866426945, -0.04511629045009613, 0.0035725568886846304, 0.000889493734575808, 0.021099958568811417, -0.008858482353389263, 0.005785354878753424, -0.021785305812954903, 0.004728169646114111, 0.0038860668428242207, -0.01672539860010147, 0.003911585081368685, -0.01703161746263504, 0.008705372922122478, 0.01813983917236328, -0.03499647602438927, -0.007032104302197695, -0.0019266288727521896, 0.004483923316001892, 0.005344253499060869, 0.017760710790753365, -0.02667023055255413, 0.006583711598068476, 0.030271951109170914, 0.0005459085223264992, 0.0048995064571499825, 0.006379565689712763, -0.005114588886499405, 0.00017874175682663918, 2.0320625480962917e-05, 0.004392786882817745, -0.0075169513002038, 0.008275208063423634, 0.012824749574065208, 0.004877633880823851, 0.004115731455385685, 0.04205409809947014, 0.006058764643967152, 0.021172868087887764, -0.013386151753365993, -0.01276642270386219, 0.007170632015913725, 0.01078328862786293, -3.409080454730429e-05, 0.005271343979984522, 0.011351981200277805, -0.013451769948005676, -0.004986997693777084, -0.0031733782961964607, -0.0010635647922754288, -0.035638075321912766, 0.010010450147092342, -0.008085643872618675, -0.007374777924269438, -0.01792111061513424, 0.035608913749456406, -0.005858263932168484, -0.02585364505648613, 0.03012613207101822, 0.0032535784412175417, 0.004381850361824036, 0.001645927899517119, 0.006179064977914095, -0.003824093844741583, -0.004071985837072134, -0.02779303304851055, 0.015442194417119026, 0.01650667004287243, 0.015588013455271721, 0.004928670357912779, 0.011534254997968674, -0.009886504150927067, 0.021377013996243477, -0.012102947570383549, -0.009164702147245407, 0.004327168222516775, -0.0005582119920291007, -0.015048484317958355, 0.02162490412592888, 0.009915667586028576, -0.0064597660675644875, 0.011898801662027836, -0.012234183959662914, 0.02614528313279152, 0.009551120921969414, -0.021522831171751022, -0.020268792286515236, 0.017104526981711388, 0.0018737695645540953, -0.016623325645923615, -0.002548180753365159, 0.014990156516432762, -0.0014299340546131134, 0.0007318273419514298, 0.022004034370183945, -0.0008954175864346325, 0.0043563321232795715, -0.002373198512941599, 0.0025645853020250797, 0.011833183467388153, 0.02640775591135025, 0.018606459721922874, -0.01094368938356638, 0.018796022981405258, -0.015573430806398392, 0.020647920668125153, 0.020954139530658722, 0.0003328766324557364, -0.0015238048508763313, 0.0024278804194182158, 0.004553187172859907, 0.008625173009932041, 0.00807835254818201, -0.005756190977990627, -0.020297955721616745, -0.008282499387860298, -0.005114588886499405, 0.020852066576480865, 0.023185163736343384, 0.0005103652365505695, -0.006084282882511616, -0.010141686536371708, 0.012183147482573986, -0.016871217638254166, 0.009973995387554169, 0.00807835254818201, -0.013874644413590431, -0.002637494821101427, -0.010622887872159481, 0.0045859962701797485, -0.01133739948272705, 0.0005377062479965389, 0.009551120921969414, -0.005151043646037579, -6.390957423718646e-05, 0.002158115850761533, -0.021231194958090782, 0.012941405177116394, -0.009485502727329731, 0.0014335796004161239, -0.00012052822421537712, 0.0030020412523299456, 0.008938683196902275, 0.01675456203520298, -0.018533550202846527, -0.008763700723648071, -0.023156000301241875, 0.011709237471222878, -0.03896274045109749, 0.011169708333909512, 0.008049189113080502, -0.02809925191104412, 0.0002019816020037979, -0.0040865675546228886, 0.00716334069147706, 0.009463629685342312, 0.002969232155010104, 0.00241694413125515, 0.012941405177116394, 0.026611901819705963, 0.0026283811312168837, -0.004771915264427662, 0.013408024795353413, 0.001227610744535923, 0.013386151753365993, 0.006678493693470955, 0.01348822470754385, 0.005657763220369816, -0.0031897828448563814, -0.021712396293878555, 0.011672782711684704, 0.004002721980214119, -0.029761584475636482, -0.0041849953122437, -0.026757720857858658, -0.009004301391541958, -0.00732374144718051, -0.00038049553404562175, -0.011249908246099949, 0.015588013455271721, 0.025474516674876213, -0.014093372039496899, 0.018008602783083916, 0.03318832442164421, -0.01219772920012474, -0.004254259169101715, 0.017804456874728203, 0.0073128049261868, -0.016360851004719734, -0.004421950317919254, 0.01406420860439539, 0.01177485566586256, -0.002524485345929861, -0.004571414552628994, 0.012890367768704891, -0.002723163226619363, 0.01151967328041792, -0.02553284540772438, -0.0038350303657352924, -0.02242690697312355, 0.004308940842747688, 0.0046260966919362545, 0.006102510262280703, 0.0011173353996127844, 0.0007136000203900039, -0.018941842019557953, -0.0026648356579244137, -0.0004301650042179972, 0.0020104744471609592, -0.026743140071630478, 0.005672345403581858, -0.01758572831749916, -0.0010553624015301466, -0.01984591782093048, 0.004509441554546356, 0.012598730623722076, -0.00807106215506792, 0.02303934656083584, 0.009463629685342312, 0.009026174433529377, -0.00597127340734005, 0.0010198191739618778, 0.004706296604126692, 0.01136656291782856, 0.017221182584762573, -0.03773786500096321, -0.00157848687376827, -0.005880136974155903, 0.0010872603161260486, -0.00010953486344078556, -0.018591877073049545, -0.0010243760189041495, -0.008143971674144268, 0.0014417818747460842, -0.011483218520879745, -0.030242787674069405, 0.008202298544347286, 0.00019195656932424754, -0.008887646719813347, 0.015529685653746128, -9.330114698968828e-05, -0.0046698423102498055, 0.009893795475363731, -0.023433055728673935, -0.004709942266345024, 0.017410745844244957, -0.00896055530756712, 0.012576858513057232, -0.004024594556540251, 0.002303934656083584, 0.011650909669697285, 0.04380391910672188, 0.0036217705346643925, 0.013342405669391155, -0.015515103936195374, -0.006817021407186985, -0.027968015521764755, -0.004717233125120401, -0.0044693415984511375, -0.005059906747192144, 0.007075849920511246, -0.0009223029483109713, -0.009995868429541588, 0.008041897788643837, 0.019525116309523582, -0.005865554790943861, 0.002041460946202278, -0.001533829839900136, 0.011125962249934673, -0.01517972070723772, 0.012941405177116394, 0.024322550743818283, 0.014552700333297253, -0.019481370225548744, -0.015500522218644619, -0.013291369192302227, 0.006292074453085661, 0.010192723013460636, -0.0004488480044528842, 0.01649208925664425, 0.006496220827102661, 0.0032353512942790985, 0.0146256098523736, -0.02694728597998619, 0.02104162983596325, 0.025970300659537315, -0.00030690268613398075, 0.0037366028409451246, 0.012387294322252274, 0.012482075951993465, 0.00980630423873663, -0.009879212826490402, -0.00823875330388546, 0.009361556731164455, 0.014443336986005306, -0.023739274591207504, 0.004837533459067345, 0.01590881496667862, -0.0008220525924116373, -0.020837483927607536, 0.01870853267610073, 0.006040537264198065, -0.007560696918517351, -0.01563175953924656, -0.012066492810845375, -0.003499647369608283, 0.012729967944324017, 0.016054632142186165, -1.723052264424041e-05, -0.017148273065686226, 0.011074925772845745, -0.014858920127153397, -0.0020633337553590536, 0.0010416919831186533, 0.012102947570383549, -0.02101246640086174, 0.020356282591819763, 0.0029838141053915024, 0.011993583291769028, 0.003200719365850091, 0.024001749232411385, 0.013852771371603012, 0.008034607395529747, 0.02013755403459072, -0.02360803820192814, -0.017192017287015915, -0.02130410447716713, -0.02897416427731514, 0.008187716826796532, -0.0014381363289430737, -0.005840036552399397, -0.01036770548671484, 0.009325101971626282, 0.023083090782165527, -0.0030202686320990324, -0.005402580834925175, -0.03528811037540436, 0.016929544508457184, 0.006069701164960861, 0.006959194783121347, 0.0008717220625840127, -0.005446326453238726, 0.00439643207937479, -0.007279995828866959, 0.022995600476861, 5.1691571570700034e-05, 0.01649208925664425, -0.009689648635685444, 0.019947990775108337, -0.003882421413436532, -0.018956424668431282, 0.011818600818514824, 0.006128028500825167, -0.007218022830784321, 0.0063066561706364155, 0.00772838806733489, -0.021785305812954903, -0.023374728858470917, -0.014392300508916378, -0.004024594556540251, 0.00426884088665247, 0.0013141905656084418, 0.0006981067708693445, 0.015558849088847637, 0.0159233957529068, -0.007604442536830902, 0.01615670509636402, 0.022514399141073227, 0.02442462369799614, 0.006383211351931095, 0.0017753420397639275, 0.002116193063557148, 0.001101842150092125, 0.017264926806092262, 0.00554475374519825, -0.01475684717297554, 0.0008179514552466571, 4.656513192458078e-05, 0.006857121828943491, -0.018533550202846527, 0.018343985080718994, -0.009427174925804138, -0.003519697580486536, 0.0046297418884932995, 0.030009476467967033, 0.007852333597838879, 0.009084501303732395, -0.0027687314432114363, -0.0017580260755494237, 0.008945973590016365, 0.002941891085356474, -0.011716527864336967, 0.01848980411887169, 0.012438330799341202, 0.005584854166954756, 0.016010887920856476, 0.01407149899750948, -0.009281356818974018, 0.016550416126847267, 0.02725350484251976, 0.014421463944017887, 0.009558412246406078, -0.007433105260133743, -0.026320265606045723, 0.0005796290934085846, -0.023651784285902977, -0.004272486083209515, -0.00823146291077137, 0.014005880802869797, -0.025357862934470177, 0.0062373923137784, 0.009864631108939648, 0.010681215673685074, 0.016652489081025124, -0.01962718926370144, 0.005446326453238726, 0.0050125159323215485, -0.01876685954630375, 0.01506306603550911, -0.030534423887729645, -0.00609886460006237, -0.005431744735687971, -0.00823875330388546, -0.01621503382921219, -0.010127104818820953, 0.015238048508763313, 0.015106811188161373, 0.0038350303657352924, 0.0017853670287877321, -0.02134784869849682, -0.0028507544193416834, 0.011752982623875141, 0.005770772695541382, 0.0425790436565876, -0.0023148709442466497, -0.001284115482121706, 0.012948695570230484, -0.01650667004287243, 0.012387294322252274, 0.00029551060288213193, 0.005118234548717737, -0.008318953216075897, 0.0014290227554738522, -0.01621503382921219, -0.007976279594004154, -0.012445621192455292, 0.022806035354733467, -0.01790652982890606, -0.00854497216641903, -0.04348311945796013, -0.008756409399211407, 0.005293217021971941, 0.019204314798116684, 0.0007678262772969902, 0.02074999362230301], "995cafc5-6e39-43bb-a23b-48d135fc5687": [0.003580331802368164, 0.004143764264881611, -0.0020629388745874166, 0.02723556198179722, -0.006731381174176931, -0.03305472061038017, 0.008979150094091892, 0.017529018223285675, -0.0009099885355681181, 0.01829218678176403, 0.014357100240886211, -0.005416704807430506, 0.04793649911880493, -0.02666318602859974, 0.028642654418945312, 0.049462832510471344, -0.010296807624399662, 0.036536674946546555, 0.013939742930233479, -0.024922208860516548, 0.0005619421717710793, -0.01605037972331047, -0.02985895238816738, 0.006773116998374462, 0.002080825623124838, -0.0325300395488739, -0.008657188154757023, -0.004486593883484602, -0.04574238881468773, -0.02014048397541046, 0.015466079115867615, 0.018244488164782524, -0.022298818454146385, 0.030192838981747627, 0.028881143778562546, 0.02587616816163063, -0.035010337829589844, -0.028499558568000793, 0.01192450150847435, -0.01854260079562664, -0.007703228387981653, 0.03021668829023838, 0.0027515788096934557, -0.031695324927568436, -0.02768869325518608, 0.017099736258387566, -0.013677403330802917, 0.007303757593035698, 0.0031987475231289864, -0.008549868129193783, 0.0075899455696344376, -0.026066960766911507, -0.004829423036426306, 0.023193156346678734, 0.04951053112745285, -0.001026997691951692, -0.012675745412707329, 0.0005302677163854241, 0.0019422032637521625, -0.030240537598729134, 0.0321723073720932, -0.025566132739186287, -0.026329299435019493, 0.012663820758461952, 0.03343630209565163, 0.015096419490873814, -0.006403457373380661, -0.002273108111694455, -0.010863221250474453, 0.008090774528682232, 0.002477315254509449, 0.00898511242121458, -0.03121834620833397, 0.02616235800087452, 0.06515547633171082, -0.025256095454096794, 0.011501181870698929, 0.03679901361465454, 0.025542283430695534, -0.035153429955244064, 0.009956958703696728, -0.006993720307946205, 0.01997354067862034, 0.0032434645108878613, 0.0379437655210495, 0.024540625512599945, 0.023193156346678734, -0.048890456557273865, 0.012258388102054596, -0.032053060829639435, 0.0002902871055994183, 0.013176574371755123, -0.000586909067351371, -0.017743658274412155, -0.016539284959435463, -0.018411431461572647, -0.004886064678430557, -0.023145457729697227, 0.01470291055738926, -0.027164015918970108, 0.0196873527020216, -0.025852320715785027, 0.02573307417333126, 0.019031504169106483, 0.022644629701972008, -0.04133032262325287, 0.00480557419359684, 0.0020629388745874166, -0.01832795888185501, 0.029835103079676628, -0.016539284959435463, -0.015239513479173183, 0.01347468700259924, 0.014440571889281273, -0.055615875869989395, -0.020760558545589447, -0.03815840557217598, 0.020879803225398064, -0.007279908284544945, -0.014738684520125389, -0.028380313888192177, -0.030550573021173477, 0.023038137704133987, -0.01492947619408369, -0.0015263361856341362, 0.011978162452578545, -0.012401482090353966, 0.002533956663683057, 0.02182183787226677, 0.015585323795676231, -0.0014749118126928806, -0.0006852862425148487, -0.005109649151563644, 0.01579996570944786, -0.027497900649905205, 0.0004046877729706466, -0.004629687871783972, 0.08246985822916031, -0.0027798993978649378, 0.02010471001267433, -0.0285472571849823, -0.002547371666878462, -0.0198662206530571, 0.017672112211585045, 0.02004508674144745, -0.019663503393530846, 0.002914050128310919, 0.04242737591266632, -0.019389240071177483, -0.014214006252586842, -0.018816864117980003, 0.012794990092515945, -0.03455720469355583, -0.007685341406613588, 0.025566132739186287, -0.0314568355679512, 0.011399824172258377, 0.020116634666919708, 0.021309085190296173, 0.043977562338113785, 0.025399189442396164, -0.00961114838719368, -0.005255724303424358, 0.02171451784670353, 0.0736934244632721, 0.022942742332816124, 0.034437961876392365, -0.01196027547121048, -0.027998730540275574, 0.011292503215372562, 0.023193156346678734, -0.009867525659501553, 0.010296807624399662, 0.0044299522414803505, 0.020200105383992195, -0.011894690804183483, 0.02566152811050415, -0.004784706514328718, -0.007142776623368263, 0.0033060682471841574, 0.0006670268485322595, -0.005354101303964853, 0.028094125911593437, -0.01167408749461174, -0.0035684071481227875, 0.048318080604076385, 0.015895361080765724, 0.018137168139219284, -0.019341541454195976, -0.02623390406370163, -0.021476028487086296, -0.012282236479222775, 0.023324325680732727, 0.002666616812348366, -0.03644127771258354, -0.048818912357091904, 0.029739707708358765, 0.04106798395514488, -0.03904081881046295, 0.005008290987461805, 0.0003418978303670883, -0.02021203003823757, 0.005687987431883812, 0.03780066967010498, -0.02039089798927307, 0.0350341871380806, -0.01965157873928547, -0.02242998778820038, -0.004632669035345316, 0.002608484821394086, 0.013510460965335369, -0.03000204637646675, 0.009223601780831814, -0.0067075323313474655, 0.007446851581335068, -0.007709190249443054, -0.010934768244624138, 0.018995732069015503, 0.008078849874436855, -0.05213392153382301, 0.02399209700524807, -0.011131522245705128, -0.027736391872167587, -0.014667137525975704, -0.07140392065048218, 0.05976560339331627, -0.016062304377555847, -0.014440571889281273, -0.033126264810562134, -0.012830764055252075, 0.017111660912632942, -0.01046374998986721, 0.011835068464279175, 0.01261612307280302, 0.04526541009545326, 0.041091833263635635, 0.006546551361680031, 0.015179891139268875, -0.013140801340341568, 0.012663820758461952, 0.007578020915389061, 0.01872146874666214, -0.01662275567650795, -0.031766872853040695, 0.0090387724339962, 0.00791786890476942, 0.009658846072852612, 0.030765214934945107, 0.04075794667005539, -0.009396507404744625, -0.017147433012723923, 0.011143446899950504, 4.895566962659359e-05, 0.0028380313888192177, -0.014524043537676334, 0.02146410383284092, 0.04020942002534866, -0.027807937934994698, 0.003443199908360839, 0.013760874979197979, 0.03663206845521927, -0.0037591992877423763, 0.009694620035588741, -0.0024236550088971853, 0.018053695559501648, -0.0031182572711259127, 0.02733095921576023, -0.03930315747857094, -0.021476028487086296, 0.022263044491410255, 0.01804177090525627, 0.004042406100779772, -0.030049744993448257, 0.0556635744869709, 0.010672429576516151, 0.040376365184783936, 0.005190139636397362, 0.006564438343048096, 0.015573399141430855, 0.020259728655219078, -1.566255377838388e-05, -0.02876189909875393, 0.0042093489319086075, -0.005094743333756924, 0.006242476869374514, 0.02067708596587181, -0.00489500816911459, -0.03326936066150665, -0.015120268799364567, 0.023932475596666336, 0.00970058236271143, -0.01347468700259924, 0.004826442338526249, 0.009819827042520046, -0.021809913218021393, 0.009348809719085693, -0.02904808707535267, 0.028380313888192177, -0.010219298303127289, 0.003195766592398286, -0.005118592642247677, -0.01308117900043726, 0.0019272975623607635, -0.01035642996430397, 0.06730189174413681, -0.015048721805214882, 0.03887387737631798, 0.024337908253073692, -0.025256095454096794, 0.034938789904117584, -0.005437572952359915, -0.03775297477841377, 0.001173818134702742, -0.020343199372291565, 0.008078849874436855, 0.04259432107210159, -0.030741365626454353, -0.0274740532040596, -0.016897018998861313, -0.034223321825265884, 0.0015337890945374966, -0.03474799916148186, -0.05795307829976082, 0.014261703938245773, 0.013260046020150185, -0.03334090858697891, 0.019425014033913612, 0.018316034227609634, -0.017040112987160683, 0.030908308923244476, -0.05480501055717468, -0.007876133546233177, 0.0021628064569085836, 0.012532651424407959, -0.0001480315113440156, -0.04054330661892891, -0.027307109907269478, -0.038492292165756226, 0.02046244591474533, -0.019675428047776222, -0.010350467637181282, -0.033507850021123886, 0.020510142669081688, -0.03377018868923187, 0.007005644962191582, -0.012258388102054596, -0.00014309401740320027, 0.0026904656551778316, -0.002390862675383687, 0.0012595255393534899, 0.0007259040721692145, 0.017111660912632942, -0.00036574681871570647, 0.013069254346191883, 0.028213370591402054, -0.010261033661663532, -0.024540625512599945, 0.01304540503770113, 0.006630023010075092, -0.010904956609010696, -0.008657188154757023, -0.02993050031363964, 0.0026785412337630987, 0.009193791076540947, -0.027450203895568848, -0.0071010407991707325, 0.003824783954769373, -0.007810548879206181, -0.0060934205539524555, 0.022155724465847015, -0.008025189861655235, -0.022835420444607735, -0.027020921930670738, -0.03481954708695412, 0.015633022412657738, -0.01492947619408369, 0.0029572765342891216, -0.008639301173388958, -0.03806300833821297, 0.020665161311626434, 0.008859904482960701, 0.010976503603160381, 0.010535296984016895, 0.013784724287688732, -0.013784724287688732, 0.0173382256180048, 0.0157284177839756, -0.03391328454017639, -0.008114623837172985, -0.029882801696658134, -0.024731416255235672, 0.0047250837087631226, -0.02516069822013378, 0.0015963927144184709, -0.025494584813714027, -0.012318010441958904, 0.01147733349353075, -0.018196789547801018, 0.023622438311576843, -0.006946022156625986, -0.03384173661470413, 0.011465408839285374, 0.015633022412657738, -0.019341541454195976, 0.034294866025447845, -0.03474799916148186, 0.034223321825265884, 0.043333638459444046, 0.009855601005256176, 0.011024202220141888, 0.057857684791088104, 0.009116281755268574, -0.001964561641216278, -0.001435411861166358, 0.03563041239976883, 0.011459446512162685, -0.023300476372241974, 0.026973223313689232, 0.016384266316890717, 0.034652601927518845, 0.024540625512599945, 0.007911906577646732, 0.045933179557323456, 0.018196789547801018, 0.001772279036231339, 0.003222596598789096, -0.035821203142404556, 0.0074885874055325985, -0.007160663604736328, 0.013033480383455753, 0.01587151177227497, 0.04028096795082092, 0.0033478038385510445, -0.010195448994636536, 0.001715637743473053, -0.008299453184008598, -0.05375565588474274, -0.03391328454017639, 0.004957611672580242, 0.010612806305289268, -0.005822137929499149, -0.02985895238816738, -0.01304540503770113, -0.016455812379717827, 0.0063855708576738834, 0.0053123654797673225, -0.03658437356352806, -0.00630806153640151, 0.006791003979742527, -0.01708781160414219, 0.0012297142529860139, 0.012425331398844719, -0.020975198596715927, -0.008245793171226978, -0.002173240529373288, 0.003955953288823366, 0.016861245036125183, -0.014404797926545143, 0.062341295182704926, -0.03825380280613899, -0.009342847391963005, 0.026543941348791122, 0.030407479032874107, 0.029000388458371162, 0.014464421197772026, 0.0007855265866965055, 0.005351120140403509, -0.003592256223782897, 0.009533639065921307, 0.019126901403069496, 0.02883344516158104, -0.0031152761075645685, -0.024373682215809822, 0.02501760423183441, -0.008752584457397461, -0.012258388102054596, 0.012449179776012897, -0.0032315400894731283, 0.021225612610578537, 0.00894933845847845, 0.04705408588051796, -0.007333568762987852, 0.001919844769872725, 0.010481636971235275, -0.00421829242259264, 0.014857929199934006, -0.01879301480948925, -0.02178606577217579, 0.02359858900308609, -0.037991464138031006, -0.011954313144087791, -0.0001357343717245385, -0.0010031487327069044, 0.014941400848329067, 0.03908851742744446, 0.01601460576057434, 0.011858916841447353, 0.0034044452477246523, 0.0068804374895989895, 0.008776433765888214, 0.0386592335999012, -0.029215030372142792, 0.03267313539981842, 0.012639972381293774, -0.00019470475672278553, 0.019806597381830215, -0.0008324792725034058, 0.03207691013813019, -0.012168954126536846, 0.0013005159562453628, -0.053469467908144, 0.06816045194864273, -0.025256095454096794, 0.017421696335077286, -0.00870488677173853, 0.004486593883484602, -0.03491494059562683, 0.013271970674395561, 0.054900407791137695, -0.007035456132143736, 0.0035564827267080545, -0.018948033452033997, 0.003741312539204955, -0.004728064872324467, -0.004212330095469952, 0.011942388489842415, -0.029525065794587135, -0.009432281367480755, 0.013200423680245876, -0.05304018408060074, -0.00937862042337656, 0.009348809719085693, -0.012341859750449657, -0.00047437159810215235, 0.015227588824927807, -0.014261703938245773, 0.02153564989566803, 0.009354772046208382, 0.004173575434833765, 0.0009576865704730153, -0.019269995391368866, 0.03419947251677513, 0.0016500529600307345, -0.00800730288028717, -0.004313688725233078, 0.03343630209565163, -0.010350467637181282, 0.029811253771185875, -0.04171190783381462, 0.012914235703647137, -0.023896701633930206, 0.010046392679214478, -0.03295932337641716, 0.005711836274713278, 0.005118592642247677, -0.04691099002957344, 0.043762922286987305, 0.003985764924436808, 0.0028380313888192177, -0.04679174721240997, -0.015322985127568245, 0.04266586899757385, 0.00909243244677782, 0.020009314641356468, -0.012961933389306068, 0.016133850440382957, -0.00673734350129962, -0.0016500529600307345, 0.00950382836163044, 0.03954164683818817, 0.026424696668982506, 0.014738684520125389, 0.03713290020823479, 0.0021941084414720535, -0.01694471761584282, 0.03362709656357765, 0.02954891510307789, -0.009921185672283173, -0.029381971806287766, -0.013152725994586945, 0.03608354181051254, 0.010749938897788525, 0.02164297178387642, -0.02008086070418358, 0.05160924419760704, 0.012306085787713528, 0.005205044988542795, 0.007911906577646732, -0.021440254524350166, 0.012043747119605541, 0.026901675388216972, 0.007136814296245575, 0.007840359583497047, -0.03272083401679993, -0.021189840510487556, 0.018351808190345764, 0.02245383709669113, -0.006048703566193581, 0.015048721805214882, 0.027640994638204575, 0.06901901960372925, 0.003821802791208029, 0.014345175586640835, -0.023789381608366966, -0.04078179597854614, -0.001954127801582217, -0.003312030341476202, 0.045933179557323456, 0.03028823435306549, 0.025685377418994904, 0.006850626319646835, 0.010284882970154285, 0.008967225439846516, -0.025923866778612137, 0.009420356713235378, 0.004579008556902409, 0.013415064662694931, 0.021595273166894913, 0.01961580477654934, -0.013391215354204178, 0.026830129325389862, -0.027807937934994698, 0.03734754025936127, -0.007518398575484753, 0.01797022484242916, 0.01597883179783821, -0.021130217239260674, -0.02196493186056614, -0.022465761750936508, 0.013915893621742725, -0.012544576078653336, 0.021547574549913406, -0.03958934545516968, 0.006856588646769524, -0.002902125706896186, -0.034724149852991104, -0.00955748837441206, -0.011686012148857117, 0.0072739459574222565, -0.01975889876484871, 0.01579996570944786, 0.0016262040007859468, 0.003529652487486601, 0.0357973538339138, -0.007560134399682283, 0.041378021240234375, -0.010326618328690529, -0.01001658197492361, -0.002918521873652935, 0.011328277178108692, -0.014524043537676334, -0.004513423889875412, -0.012568425387144089, 0.020367048680782318, 0.010272958315908909, 0.0014562797732651234, -0.019317692145705223, 0.01612192578613758, 0.01112555991858244, 0.00466248020529747, 0.001467459020204842, -0.03961319476366043, 0.008573716506361961, -0.028237219899892807, 0.013450837694108486, -0.002991559449583292, -0.004915875848382711, 0.03200536221265793, 0.0023699947632849216, 0.03121834620833397, -2.7668571419781074e-05, -0.01427362859249115, -0.003842670703306794, -0.012180878780782223, -0.006510777864605188, 0.001098544686101377, -0.004271952901035547, 0.018017921596765518, -0.027640994638204575, -0.022477686405181885, -0.02256115712225437, -0.06172122061252594, -0.0325300395488739, 0.023431645706295967, -0.03460490331053734, 0.006036778911948204, 0.019770823419094086, -0.03837304562330246, -0.01719513162970543, 0.010708202607929707, -0.030979854986071587, -0.019711202010512352, 0.0015263361856341362, 0.012735367752611637, -0.0171593576669693, 0.014202081598341465, -0.0010791674721986055, -0.021368706598877907, 0.011513106524944305, 0.0037621804513037205, -0.014225930906832218, -0.014762532897293568, -0.01078571192920208, 0.00654058950021863, 0.016670454293489456, 0.029668159782886505, -0.0077628507278859615, -0.03310241550207138, 0.020414747297763824, -0.001304242410697043, -0.00823983084410429, 0.013069254346191883, -0.018101394176483154, -0.011179220862686634, 0.011179220862686634, 0.011030164547264576, -0.0044508203864097595, 0.028356464579701424, 0.0042570470832288265, 0.02537534013390541, 0.018053695559501648, 0.006129194051027298, -0.021654894575476646, -0.016968566924333572, -0.024445228278636932, 0.026830129325389862, 0.01872146874666214, 0.007989415898919106, -0.0016455812146887183, -0.007798624224960804, 0.033937133848667145, -0.0037591992877423763, 0.03851614147424698, -0.00016675671213306487, 0.003356747329235077, 0.017505168914794922, 0.0007899982738308609, -0.0034074264112859964, 0.039422404021024704, -0.0010486108949407935, 0.010827447287738323, -0.022895043715834618, 0.009581337682902813, -0.03734754025936127, 0.016527360305190086, -0.024516776204109192, 0.045790087431669235, 0.004909913521260023, -0.00950382836163044, -0.024922208860516548, 0.03143298625946045, -0.002785861724987626, 0.01890033483505249, 0.018781090155243874, -0.003941047936677933, 0.0021747311111539602, 0.02103482186794281, 0.006719456985592842, -0.02349126897752285, 0.03763372823596001, 0.01135212555527687, 0.026758581399917603, -0.003270294750109315, -0.004146745428442955, -0.029620463028550148, 0.002112127374857664, 0.023765532299876213, 0.018769165500998497, 0.03896927088499069, 0.016563132405281067, -0.0005332488217391074, 0.012830764055252075, -0.002326768357306719, 0.028714200481772423, -0.02031935192644596, -0.01875724084675312, 0.02085595391690731, 0.0057058739475905895, -0.005765496753156185, -0.004942705854773521, -0.03994708135724068, -0.017469394952058792, 0.012365708127617836, -0.01144155953079462, 0.016968566924333572, -0.03281622752547264, 0.04862811788916588, -0.029238877817988396, -0.02652009204030037, -0.012699594721198082, 0.004510442726314068, -0.03260158747434616, 0.016491586342453957, 0.03093215823173523, 0.013796648941934109, 0.001642600167542696, -0.024445228278636932, 0.013713177293539047, -0.02790333516895771, 0.004078179597854614, 0.009116281755268574, -0.01829218678176403, 0.050416793674230576, 0.01110767386853695, -0.004158670082688332, -0.01525143813341856, -0.01619347371160984, -0.026830129325389862, -0.02926272712647915, 0.022298818454146385, 0.02008086070418358, 0.015454154461622238, -0.011846992187201977, 0.016312718391418457, -0.03157608211040497, -0.03236309811472893, -0.007190474774688482, -0.035606563091278076, 0.026925524696707726, -0.004286858253180981, -0.024015946313738823, -0.014154383912682533, 0.01875724084675312, 0.003979802597314119, -0.00044493298628367484, -0.006457117851823568, 0.028881143778562546, -0.004480631556361914, -0.014726759865880013, 0.013963591307401657, -0.018602222204208374, -0.023228930309414864, -0.0429997555911541, 0.017421696335077286, -0.04416835680603981, 0.026997072622179985, 0.00843658484518528, 0.005407761782407761, -0.04016172140836716, 0.0052855354733765125, -0.03706135228276253, -0.03749063238501549, 0.01413053460419178, -0.029954349622130394, 0.007911906577646732, 0.00898511242121458, 0.0036608220543712378, 0.02284734509885311, -0.007476662751287222, 0.032124608755111694, 0.00823983084410429, -0.012353784404695034, 0.021022897213697433, 0.0008764509111642838, -0.016312718391418457, -0.012830764055252075, -0.00595330772921443, 0.009301111102104187, -0.0015785059658810496, 0.006272288039326668, 0.032553888857364655, -0.016575057059526443, -0.022966589778661728, 0.026782430708408356, -0.02508915215730667, 0.019198447465896606, 0.009891374036669731, 0.02189338579773903, -0.018304109573364258, 0.014345175586640835, 0.0007262767176143825, 0.012604198418557644, 0.04791264981031418, -0.027497900649905205, -0.0131884990260005, -0.005193120799958706, 0.019842371344566345, 0.001086620264686644, -0.029620463028550148, 0.008323302492499352, 0.0029706915374845266, -0.014082836918532848, 0.004620744381099939, -0.015167966485023499, 0.007655530236661434, -0.004722102545201778, 0.001056808978319168, -0.009718469344079494, 0.02723556198179722, 0.021440254524350166, 0.007250097114592791, 0.03298317268490791, 0.009444205090403557, -0.018876487389206886, -0.024969907477498055, 0.002434088848531246, 0.025709226727485657, -0.01605037972331047, 0.004602857865393162, 0.008013265207409859, 0.02399209700524807, -0.0004646829329431057, 0.000718451221473515, -0.01779135689139366, 0.010314693674445152, -0.04648170992732048, 0.015561474487185478, -0.00480557419359684, 0.0016530341235920787, -0.010648580268025398, 0.012234538793563843, -0.02449292689561844, -0.008311377838253975, 0.004388216882944107, 0.035511165857315063, 5.2076535212108865e-05, 0.0059205153957009315, -0.020152408629655838, 0.017111660912632942, -0.008764509111642838, 0.033507850021123886, -0.019246146082878113, 0.020438596606254578, -0.034437961876392365, 0.002854427555575967, 0.0016962604131549597, -0.024755265563726425, -0.017815206199884415, -0.003148068441078067, 0.033221662044525146, -0.02085595391690731, -0.0058519490994513035, -0.009974845685064793, -0.009515752084553242, 0.0009032810339704156, 0.003195766592398286, -0.040734097361564636, -0.032410796731710434, 0.00852601882070303, 0.002182183787226677, 0.02053399197757244, -0.025995414704084396, -0.009044734761118889, -0.010827447287738323, -0.017505168914794922, 0.03057442232966423, 0.003955953288823366, 0.026353148743510246, 0.0033358794171363115, -0.008055000565946102, -0.010988428257405758, 0.010600882582366467, 0.029835103079676628, 0.004707197193056345, 0.016062304377555847, -0.023538967594504356, 0.005905609577894211, -0.011131522245705128, -0.0011387899285182357, -0.009396507404744625, 0.001581487013027072, -0.02833261713385582, -0.0005984609597362578, -0.0016932792495936155, 0.00834715086966753, 0.03100370429456234, 0.014893703162670135, 0.017218980938196182, -0.023372024297714233, -0.013462762348353863, 0.02263270504772663, -0.01484600454568863, -0.021869536489248276, 0.021487953141331673, 0.010797636583447456, -0.012353784404695034, -0.028237219899892807, -0.015847662463784218, -0.03057442232966423, -0.022751949727535248, 0.010207373648881912, -0.017397848889231682, 0.0054793087765574455, -0.023837078362703323, -0.02149987779557705, 0.01413053460419178, 0.0066598341800272465, 0.020438596606254578, -0.006349797360599041, 0.025136850774288177, 0.008609490469098091, -0.0068267774768173695, -0.016968566924333572, 0.0350818857550621, -0.005041083320975304, -0.006153042893856764, -0.006111307069659233, -0.010111977346241474, 0.020188182592391968, -0.051132265478372574, 0.009020885452628136, -0.0018289204454049468, -0.008931451477110386, 0.007876133546233177, -0.009652884677052498, 0.021010972559452057, -0.014380949549376965, 0.027378655970096588, -0.0016753925010561943, 0.01583573780953884, -0.0310752522200346, -0.03832535073161125, 0.020808255299925804, -0.018888410180807114, 0.017385924234986305, 0.029381971806287766, 0.022775799036026, -0.01854260079562664, -0.005345157813280821, 0.014500194229185581, -0.03601199388504028, 0.0013824969064444304, -0.0025771830696612597, 0.00407519843429327, -0.013486611656844616, 0.03858768939971924, 0.021332934498786926, -0.028213370591402054, -0.02149987779557705, -0.0030332952737808228, -0.004340518731623888, -0.04247507452964783, -0.01897188276052475, -0.013438913971185684, 0.011948350816965103, 0.0033925208263099194, 0.019520409405231476, -0.0506075844168663, -0.013355442322790623, -0.02056976594030857, 0.0007404370117001235, 0.0009785544825717807, -0.0009658846538513899, -0.010994390584528446, 0.00541968597099185, -0.006904286798089743, 0.00861545279622078, -1.1237445505685173e-05, -0.00036034354707226157, 0.017457470297813416, 0.001100035267882049, 0.007363379932940006, -0.005219950806349516, 0.003693614387884736, 0.002697918564081192, 0.004674404859542847, -0.002875295467674732, 0.024123268201947212, -0.008955300785601139, 0.03529652580618858, -0.0040364437736570835, -0.029143482446670532, 0.01882878877222538, -0.013784724287688732, -0.008818169124424458, -0.01726667955517769, -0.009396507404744625, -0.03093215823173523, 0.011680049821734428, 0.007691303733736277, -0.05089377239346504, -0.023085836321115494, 0.010577033273875713, 0.02940582111477852, -0.028714200481772423, 0.010034468024969101, 0.0007229229086078703, 0.004298782907426357, -0.0067611923441290855, 0.0035654259845614433, -0.011113636195659637, -0.010237185284495354, -0.006063609384000301, -0.0063676838763058186, 0.0037770860362797976, -0.0006387061439454556, 0.020987123250961304, -0.007941718213260174, 0.004298782907426357, 0.006337872706353664, -0.01637234166264534, -0.01719513162970543, 0.013665479607880116, 0.014738684520125389, -0.01035642996430397, 0.017421696335077286, 0.025828471407294273, 0.04185499995946884, -0.007423002272844315, 0.012854613363742828, 0.013140801340341568, -0.010672429576516151, 0.016789698973298073, 0.014357100240886211, 0.017910601571202278, 0.03412792459130287, -0.03737138956785202, 0.005711836274713278, -0.015919210389256477, -0.02171451784670353, 0.028022579848766327, -0.009945034980773926, 0.01748131960630417, -0.010934768244624138, 0.03608354181051254, -0.028523407876491547, 0.0020137501414865255, -0.021905310451984406, -0.023646287620067596, -0.023264702409505844, 0.008686999790370464, -0.0032434645108878613, 0.005780402105301619, 0.004030481446534395, -0.024540625512599945, 0.021058671176433563, 0.003595237387344241, -0.0008302434580400586, 0.016992414370179176, -0.011381937190890312, 0.022978514432907104, -0.01445249654352665, 0.028165673837065697, -0.041378021240234375, 7.294441456906497e-05, 0.004722102545201778, 0.0135581586509943, 0.015418380498886108, -0.020414747297763824, 0.01768403686583042, -0.01308117900043726, -0.017004339024424553, 0.012639972381293774, -0.00598013773560524, -0.010833409614861012, -0.027378655970096588, -0.010988428257405758, -0.014834079891443253, 0.0069817956537008286, -0.011948350816965103, 0.032410796731710434, 0.0005019470117986202, 0.02594771608710289, 0.016276944428682327, -0.0029065972194075584, -0.01737399958074093, 0.006999682635068893, -0.004841347690671682, 0.014893703162670135, -0.00019246891315560788, -0.03846844285726547, 0.0052110073156654835, 0.0026189186610281467, -0.02135678194463253, 0.008114623837172985, 0.018518751487135887, 0.028523407876491547, 0.012282236479222775, 0.012055671773850918, -0.01954425871372223, -0.011519068852066994, -0.007423002272844315, 0.010916881263256073, -0.011554841883480549, -0.018888410180807114, 0.007059304974973202, -0.018745316192507744, 0.011542918160557747, -0.017075886949896812, 0.014798306860029697, -0.005765496753156185, 0.0020450521260499954, 0.0005455459468066692, -0.004453801549971104, 0.006001005414873362, -0.00937862042337656, 0.01565687172114849, -0.015776116400957108, 0.032410796731710434, 0.036751314997673035, 0.0506075844168663, -0.017862902954220772, 0.0046505555510520935, -0.0009755733190104365, 0.019317692145705223, 0.01748131960630417, 0.013057329691946507, 0.00416463240981102, 0.020581690594553947, 0.013760874979197979, 0.0034908978268504143, -0.036178939044475555, -0.005082819145172834, -0.016575057059526443, -0.006618098355829716, -0.026353148743510246, 0.0064869290217757225, -0.011364050209522247, 0.001684335875324905, 0.0002293603465659544, -0.00932496041059494, -0.023658212274312973, -0.0073216441087424755, -0.02687782794237137, -0.00178867531940341, 0.009730393998324871, -0.012007973156869411, -0.038563840091228485, 0.00980790238827467, -0.010004657320678234, 0.01416630856692791, 0.0007352200918830931, 0.04750721529126167, 0.006129194051027298, 0.0008563282899558544, 0.0030973893590271473, 0.011650238186120987, -0.014345175586640835, 0.00720836129039526, 0.006570400670170784, 0.010624730959534645, -0.0053839124739170074, 0.011077862232923508, 0.02969200909137726, -0.014881778508424759, -0.0018825806910172105, -0.011238843202590942, -0.026543941348791122, -0.007357417605817318, 0.015132192522287369, 0.005401799455285072, -0.003979802597314119, -0.004760857205837965, -0.013796648941934109, -0.005273610819131136, 0.025637678802013397, -0.0072739459574222565, -0.01149521954357624, -0.01333159301429987, 0.02004508674144745, 0.016920868307352066, -0.011054012924432755, 0.027784088626503944, -0.013748950324952602, -0.01347468700259924, 0.025327641516923904, -0.045003071427345276, 0.026615487411618233, -0.0002947587927337736, -0.00035549921449273825, -0.009122244082391262, 0.005097724497318268, 0.015489927493035793, 0.01597883179783821, -0.04140187054872513, 0.0037800671998411417, -0.020915577188134193, -0.012687670066952705, -0.02217957377433777, -0.030741365626454353, -0.02281157299876213, -0.002568239578977227, -0.01694471761584282, 0.0036011994816362858, -0.010994390584528446, 0.016682378947734833, 0.010547221638262272, -0.005187158472836018, -0.02573307417333126, -0.023682061582803726, 0.013379290699958801, 0.03419947251677513, 0.03391328454017639, -0.01993776671588421, -0.01290231104940176, 0.0026442583184689283, 0.0433574877679348, -0.0005951071507297456, 0.0229546669870615, -0.015287211164832115, 0.005553836934268475, -0.03694210574030876, -0.023157382383942604, 0.015084494836628437, -0.004409084562212229, 0.027307109907269478, -0.009044734761118889, -0.018137168139219284, -0.01455981656908989, 0.007876133546233177, -0.023121608421206474, 0.04178345575928688, -0.000821300083771348, 0.0036429353058338165, 0.001581487013027072, 0.023717833682894707, -0.012544576078653336, 0.014512118883430958, 0.021941082552075386, 0.00017355740419588983, 0.01478638220578432, 0.013915893621742725, 0.002331240102648735, 0.020939424633979797, -0.018840713426470757, -0.017982149496674538, -3.8475151086458936e-05, -0.026138508692383766, 0.010111977346241474, -0.005613459274172783, 0.028165673837065697, 0.022048404440283775, 0.014583665877580643, 0.0013511951547116041, 0.008549868129193783, 0.037323690950870514, -0.013260046020150185, 0.008144434541463852, -0.006999682635068893, -0.014249779284000397, 0.004137801937758923, 0.0021523726172745228, -0.007232210598886013, 0.007005644962191582, 0.01445249654352665, -0.005172252655029297, 0.010612806305289268, -0.002170259365811944, 0.014881778508424759, -0.023073911666870117, -0.022501535713672638, 0.003941047936677933, -6.008831041981466e-05, 0.0023834097664803267, 0.01999738998711109, 0.02099904790520668, 0.00047027255641296506, -0.009945034980773926, -0.0035743694752454758, -0.004391198046505451, -0.015573399141430855, 0.004808555357158184, 0.026257753372192383, 0.022358441725373268, -0.015156041830778122, -0.010505486279726028, -0.03489109128713608, -0.0038516141939908266, -0.022620780393481255, 0.029238877817988396, 0.001509194727987051, -0.026758581399917603, -0.052753996104002, -0.007756888400763273, 0.01402321457862854, 0.013379290699958801, -0.009593261405825615, -0.008371000178158283, 0.0412110798060894, 0.03975629061460495, -0.016777774319052696, 0.012484953738749027, -0.009122244082391262, 0.0009435262181796134, 0.0058251190930604935, -0.027712542563676834, -0.006665796507149935, -0.00383968953974545, 0.04610012471675873, -0.020844029262661934, -0.009056659415364265, 0.01766018755733967, 0.011614465154707432, 0.004757876042276621, 0.009062621742486954, -0.018029846251010895, 0.00030705591780133545, 0.003151049604639411, 0.001304987701587379, 0.015561474487185478, -0.016324643045663834, 0.027807937934994698, 0.007798624224960804, 0.04135417193174362, -0.014285553246736526, -0.028928842395544052, -0.030168989673256874, -0.019031504169106483, 0.0092176403850317, 0.01496525015681982, -0.002405768260359764, -0.026186205446720123, 0.014214006252586842, -0.008019227534532547, -0.0173382256180048, 0.03138528764247894, -0.008520056493580341, -0.003741312539204955, 0.018888410180807114, -0.0220364797860384, 0.028881143778562546, -0.0034253131598234177, 0.012127218768000603, -0.010314693674445152, 0.03453335911035538, 0.002417692681774497, -0.013462762348353863, 0.000395371753256768, 0.013450837694108486, -0.010559146292507648, -0.014225930906832218, -0.006695607677102089, -0.0013541762018576264, -0.007279908284544945, 0.002124051796272397, 0.0025712207425385714, -0.010624730959534645, -0.0056313457898795605, -0.025327641516923904, -0.01897188276052475, 0.043405186384916306, -0.020450521260499954, 0.008770471438765526, -0.0021493914537131786, -0.018852638080716133, -0.03832535073161125, 0.03405637666583061, -0.005512101110070944, 0.014225930906832218, -0.011220956221222878, 0.01347468700259924, -0.021237537264823914, 0.04624321684241295, -0.011948350816965103, 0.023002363741397858, -0.00033220916520804167, -0.040948741137981415, -0.002533956663683057, 0.02035512402653694, -0.0003972349804826081, -0.01388012059032917, -0.02501760423183441, -0.02178606577217579, 0.0019526372198015451, 0.03164762631058693, 0.02064131200313568, -0.01961580477654934, -0.03250619396567345, -0.0318145714700222, -0.004859234672039747, -0.010547221638262272, -0.00616496754810214, 0.025208396837115288, 0.0021493914537131786, -0.008031152188777924, 0.012806914746761322, -0.01001658197492361, -0.010469712316989899, -0.0024221644271165133, -0.010845334269106388, -0.003428294323384762, 0.036107391119003296, -0.027378655970096588, 0.018459128215909004, -0.012198765762150288, -0.012950008735060692, -0.002025674795731902, -0.022859269753098488, -0.00909243244677782, -0.030741365626454353, -0.014643288217484951, 0.00494866818189621, -0.03367479145526886, 0.012747292406857014, -0.011006315238773823, 0.006296136882156134, 0.015788041055202484, 0.001509940018877387, -0.012198765762150288, 0.0016232228372246027, 0.007333568762987852, -0.009491903707385063, 0.0071487389504909515, 0.006588287185877562, -0.0052587054669857025, -0.02110636793076992, 0.05151384696364403, 0.0035833127330988646, -0.011375974863767624, 0.0009547054069116712, 0.011417710222303867, -0.018065620213747025, 0.006427306681871414, 0.04595702886581421, -0.017457470297813416, -0.020724784582853317, 0.011650238186120987, 0.014285553246736526, 0.0033299170900136232, -0.012604198418557644, -0.01662275567650795, 0.015024872496724129, -0.01737399958074093, 0.024588322266936302, 0.0007109984289854765, 0.01797022484242916, -0.027307109907269478, 0.022728100419044495, -0.03961319476366043, -0.006582324858754873, 0.012168954126536846, 0.004185500089079142, 0.0008846489945426583, 0.009527676738798618, -0.033579397946596146, -0.00572077976539731, 0.012318010441958904, -0.02969200909137726, 0.018590297549962997, -0.016610831022262573, 0.0204266719520092, -0.020975198596715927, 0.015120268799364567, -0.009974845685064793, -0.017385924234986305, -0.011179220862686634, -0.0044776503928005695, 0.0080430768430233, -0.02103482186794281, -0.002562277251854539, 0.02847571112215519, 0.0042838770896196365, 0.0034223319962620735, -0.0060665905475616455, 0.006975833792239428, -0.006624060682952404, 0.00701160728931427, -0.019031504169106483, -0.0001151459728134796, -0.0271163173019886, -0.015573399141430855, 0.0017618451965972781, -0.013748950324952602, -0.0014905626885592937, -0.020021239295601845, -0.018816864117980003, 0.012604198418557644, -0.01907920278608799, -0.011280578561127186, -0.011429634876549244, 0.0010605354327708483, -0.006504816003143787, -0.00017840172222349793, 0.003923160955309868, 0.004379273392260075, -0.016074229031801224, -0.007417039945721626, -0.006528664845973253, -0.006391533184796572, 0.023193156346678734, -0.00210914621129632, 0.010237185284495354, 0.0062663257122039795, 0.031981512904167175, 0.01275921706110239, -0.003168936353176832, -0.003768142545595765, 0.011006315238773823, 0.01989006996154785, -0.012270312756299973, -0.005962250754237175, -0.015370682813227177, 0.009778091683983803, 0.017183206975460052, 0.00015101263124961406, -0.002636805409565568, -0.0054584406316280365, -0.011823143810033798, 0.002563767833635211, 0.023217005655169487, 0.010010619647800922, 0.0061470805667340755, 0.0007393191335722804, -0.020545916631817818, -0.025494584813714027, -0.007184512447565794, -0.011262691579759121, 0.01782713085412979, -0.010767824947834015, 0.0018050714861601591, -0.011614465154707432, 0.03417562320828438, 0.010368354618549347, 0.007411078084260225, -0.018089469522237778, 0.018745316192507744, -0.005822137929499149, -0.0014003836549818516, -0.0041288589127361774, 0.011519068852066994, 0.013927818275988102, 0.01868569478392601, -0.0077628507278859615, 0.019281920045614243, -0.010618768632411957, 0.007858246564865112, 0.008794319815933704, 0.01012390200048685, 0.004573046695441008, 0.003416369901970029, 0.0037264067213982344, 0.019281920045614243, -0.01890033483505249, 0.013892044313251972, 0.02733095921576023, 0.03100370429456234, -0.02551843412220478, -0.010565108619630337, 0.01078571192920208, -0.012747292406857014, 0.0060188923962414265, 0.009497866034507751, -0.021762216463685036, -0.01594305969774723, 0.004862215835601091, -0.00857967883348465, -0.018089469522237778, -0.020724784582853317, 0.01459559053182602, 0.000542192196007818, 0.008210019208490849, -0.007124889642000198, -0.007792661897838116, 0.015346833504736423, -0.009772129356861115, 0.009980808012187481, 0.008657188154757023, -0.016575057059526443, -0.006009948905557394, 0.0021777120418846607, -0.012258388102054596, -0.013748950324952602, 0.011525031179189682, 0.008639301173388958, -0.0011380446376278996, -0.023610513657331467, -0.02160719782114029, -0.0033179926685988903, 0.0003912727115675807, 0.019627729430794716, 0.012950008735060692, 0.023288551717996597, 0.005783383268862963, -0.0020897688809782267, -0.006492891348898411, -0.00231782509945333, 0.014011289924383163, 0.005795307923108339, -0.004265990573912859, -0.005580666940659285, 0.02381323091685772, -0.011536955833435059, -0.017529018223285675, 0.010749938897788525, 0.008001340553164482, 0.006170929875224829, 0.012532651424407959, 0.0005369752179831266, -0.004116934258490801, -0.00477874418720603, 0.031552232801914215, 0.004406103398650885, -0.011364050209522247, 0.0027426353190094233, -0.013355442322790623, -0.00522293196991086, 0.01665852963924408, 0.007309719454497099, 0.026472393423318863, 0.024397531524300575, -0.03050287626683712, 0.013355442322790623, 0.00381285953335464, -0.009658846072852612, -0.005989081226289272, -0.0019705239683389664, -0.0022254101932048798, 0.010893032886087894, 0.023181231692433357, -0.004626706708222628, -0.006182854063808918, 0.00583704374730587, -0.013295819982886314, 0.007315681781619787, 0.004760857205837965, 0.020331276580691338, -0.0034670489840209484, -0.004704216029495001, -4.194536813884042e-05, -0.0074885874055325985, -0.0002103556616930291, 0.018172940239310265, 0.0014801288489252329, -0.019103052094578743, -0.02341972105205059, 0.006791003979742527, -0.019138826057314873, 0.004668442532420158, 0.0006085222121328115, 0.0014607515186071396, 0.01800599694252014, -0.018304109573364258, -0.01943693868815899, -0.00961114838719368, 0.002033127471804619, 0.02046244591474533, 0.030693667009472847, 0.03427101671695709, -0.008478321135044098, -0.032911624759435654, 0.007345492951571941, 0.020617464557290077, 0.014011289924383163, -0.00843658484518528, 0.012037784792482853, -0.0036727464757859707, 0.0008011774625629187, 0.003487916896119714, -0.009313035756349564, -0.007739001885056496, -0.014225930906832218, -0.009837714023888111, 0.0028156728949397802, -0.02544688619673252, 0.009158017113804817, -0.042904358357191086, 0.002092750044539571, 0.009402469731867313, 0.01470291055738926, 0.014690985903143883, 0.0060457224026322365, 0.006856588646769524, 5.715376391890459e-05, 0.013713177293539047, 0.008591603487730026, -0.003690633224323392, 0.0009658846538513899, -0.010433939285576344, 0.00011076743976445869, 0.010290845297276974, -0.010451826266944408, 4.043151420773938e-05, 0.006355759687721729, 0.00027370458701625466, 0.0016247134190052748, 0.0037591992877423763, -0.006963909137994051, 0.0008451490430161357, -0.007112965453416109, 0.011256730183959007, -0.017207056283950806, 0.025542283430695534, -0.008132509887218475, 0.00894933845847845, 0.018065620213747025, -0.008901640772819519, -0.008132509887218475, 0.005780402105301619, 0.014857929199934006, 0.019878145307302475, -0.008406774140894413, 0.003955953288823366, 0.001199902966618538, -0.00748262507840991, -0.009491903707385063, 0.005187158472836018, 0.018423356115818024, -0.026567790657281876, -0.007965567521750927, -0.01698049157857895, -0.007184512447565794, -0.0027500882279127836, -0.027712542563676834, -0.012115294113755226, 0.022716175764799118, -0.008716810494661331, -0.011387899518013, 0.031170647591352463, 0.01754094287753105, -0.015179891139268875, 0.024445228278636932, -0.009861563332378864, -0.015966907143592834, 0.011471371166408062, 0.008013265207409859, -0.02580462209880352, -0.006689645349979401, -0.0018214676529169083, -0.0028678427916020155, 0.02039089798927307, -0.017147433012723923, -0.02644854597747326, 0.015549550764262676, -0.014011289924383163, -0.00036462891148403287, 0.007160663604736328, -0.002112127374857664, 0.018280262127518654, 0.005005309823900461, 0.0044299522414803505, 0.008114623837172985, -0.011566766537725925, 0.0003564308281056583, 0.003121238434687257, 0.00979001633822918, 0.00603379774838686, -0.0017961281118914485, 0.019639654085040092, 0.008567754179239273, 0.009921185672283173, -0.008341189473867416, -1.64544144354295e-05, 0.011423672549426556, 0.009402469731867313, -0.014178232289850712, 0.010910918936133385, -0.009116281755268574, -0.001803580904379487, -0.0013571573654189706, -0.0055061387829482555, 0.012747292406857014, 0.002466881414875388, -0.011644275858998299, 0.008078849874436855, -0.011602540500462055, 0.013415064662694931, 0.024850662797689438, -0.0012632518773898482, -0.01441672258079052, 0.014285553246736526, 0.00475191418081522, 0.001964561641216278, 0.012282236479222775, 0.014118609949946404, 0.014011289924383163, -0.0009740827372297645, -0.007816511206328869, 0.007476662751287222, 0.005965231917798519, -0.00889567844569683, 0.008174246177077293, 0.011560804210603237, -0.008305415511131287, 0.01748131960630417, -0.004945687018334866, -0.006814852822571993, -0.004525348544120789, -0.010183524340391159, 0.004632669035345316, 0.009110319428145885, -0.00556277995929122, -0.025279944762587547, -0.009998694993555546, -0.010004657320678234, 0.02950121834874153, -0.002620409242808819, -0.020987123250961304, -0.016241172328591347, -0.0011261200997978449, 0.005196101497858763, 0.016396190971136093, 0.0026785412337630987, 0.017183206975460052, -0.008973187766969204, -0.0016649585450068116, -0.016897018998861313, 0.024218663573265076, -0.00018669298151507974, -0.012914235703647137, -0.0062663257122039795, -0.012544576078653336, 0.0038724818732589483, 0.006528664845973253, -0.01811331883072853, -0.00043487167567946017, 0.010523373261094093, 0.0033030870836228132, -0.02395632490515709, 0.02085595391690731, 0.026114659383893013, -0.017755582928657532, 0.007780737243592739, 7.527341949753463e-05, 0.011852954514324665, 0.011632351204752922, -0.0019735051319003105, 0.005696930922567844, -0.003854595124721527, 0.011954313144087791, 0.019031504169106483, 0.002334221266210079, -0.028928842395544052, 0.006940060295164585, 0.005655195098370314, -0.010296807624399662, -0.016396190971136093, 0.02935812436044216, 0.030264385044574738, -0.012353784404695034, -0.0153587581589818, -0.010630693286657333, 0.015084494836628437, -0.02537534013390541, -0.004909913521260023, -0.0022105046082288027, 0.009962921030819416, 0.007649567909538746, 0.03498648852109909, 0.01605037972331047, -0.006296136882156134, 0.008621415123343468, -0.010541259311139584, 0.011841030791401863, 0.00970058236271143, 0.016467737033963203, 0.005109649151563644, 0.009801940992474556, -0.019377315416932106, 0.015883436426520348, 0.0016709208721295, -0.024182889610528946, -0.008144434541463852, -0.013355442322790623, 0.002244787523522973, -0.012830764055252075, 0.007941718213260174, 0.018673770129680634, 0.0033328982535749674, -0.0040841419249773026, 0.0243856068700552, 0.0076793790794909, -0.0019362409366294742, 0.010404127649962902, -0.02465987019240856, -0.006856588646769524, -0.025971565395593643, -0.009134168736636639, -0.004295801743865013, -0.0015226098475977778, 0.007959605194628239, 0.0019287881441414356, -0.026329299435019493, 0.0444306954741478, -0.010225260630249977, -0.010803598910570145, -0.009318998083472252, 0.015096419490873814, 0.0014629872748628259, 0.025780772790312767, -0.00489500816911459, 0.0018855618545785546, -0.006343835033476353, -0.012914235703647137, -0.008275603875517845, 0.005351120140403509, -0.004194443579763174, 0.028571106493473053, -0.015704568475484848, -0.010934768244624138, 0.021809913218021393, -0.005470365285873413, -0.006564438343048096, 0.00034804639290086925, 0.010416052304208279, 0.0019004674395546317, 0.012496878392994404, 0.005058969836682081, 0.007124889642000198, 0.02200070582330227, 0.01854260079562664, 0.01158465351909399, 0.013260046020150185, -0.0038724818732589483, 0.010147751308977604, -0.009187828749418259, -0.008460434153676033, -0.010970541276037693, -0.009831751696765423, 0.00129008200019598, -0.018375657498836517, 0.01204970944672823, -0.006838701665401459, 0.026830129325389862, -0.009050697088241577, 0.007446851581335068, -0.014667137525975704, -0.008078849874436855, -0.01402321457862854, 0.019591957330703735, -0.0011961766285821795, -0.006975833792239428, 0.01832795888185501, -0.005014252848923206, -0.0015017419354990125, -0.014249779284000397, 0.0013966573169454932, -0.011489257216453552, -0.018411431461572647, 0.018566450104117393, -0.003142106346786022, -0.010129864327609539, 0.022167649120092392, -0.009241488762199879, -0.012544576078653336, 0.02833261713385582, 0.02392055094242096, -0.004015576094388962, 0.030455177649855614, -0.0009472526144236326, -0.006963909137994051, -0.01587151177227497, -0.023372024297714233, 0.00369659555144608, 0.019806597381830215, 0.000271282420726493, 0.006618098355829716, -0.007178550120443106, -0.030097443610429764, -0.001954127801582217, 0.02537534013390541, 0.024325983598828316, 0.002988578286021948, 0.0020420709624886513, 0.004176556598395109, -0.0068267774768173695, -0.009032810106873512, -0.009813864715397358, 0.0038188216276466846, 0.018602222204208374, -0.007095078472048044, 0.006463080178946257, -0.013200423680245876, -0.0019094108138233423, -0.013116952031850815, 0.011614465154707432, -0.019126901403069496, 0.006588287185877562, 0.007935755886137486, -0.025327641516923904, -0.010135826654732227, -0.008740659803152084, -0.00018408449250273407, 0.004581989720463753, -0.013403140008449554, 0.0013698271941393614, 0.017314376309514046, 0.0350818857550621, -0.0027500882279127836, 0.014714835211634636, 0.007023531477898359, 0.020581690594553947, 0.005023196339607239, 0.0017856941558420658, -0.01238955743610859, 0.004799611866474152, -0.010738014243543148, 0.0274740532040596, 0.006820815149694681, -0.0025816545821726322, 0.013200423680245876, 0.006808890495449305, 0.02196493186056614, -0.01989006996154785, 0.003094408195465803, 0.0325300395488739, 0.018017921596765518, -0.0005992061924189329, 0.007941718213260174, -0.016634680330753326, 0.021809913218021393, -0.024218663573265076, -0.002606994239613414, -8.412363240495324e-05, 0.0022090140264481306, 0.012568425387144089, -0.013486611656844616, 0.004587952047586441, 0.005676062777638435, 0.00043300847755745053, -0.0031719175167381763, 0.00861545279622078, 0.013212348334491253, -0.0035117657389491796, -0.007041418459266424, -0.005884741898626089, 0.009014923125505447, 0.003991726785898209, 0.010541259311139584, 0.019341541454195976, -0.0015874493401497602, 0.025494584813714027, -0.005187158472836018, -0.02164297178387642, 0.016420038416981697, -0.01044586393982172, 0.01116133388131857, -0.0238490030169487, -0.0058251190930604935, -0.019019581377506256, 0.005035120993852615, 0.04280896112322807, -0.018029846251010895, 0.007434926927089691, 0.009330922737717628, 0.0075422474183142185, 0.00480557419359684, -0.01550185214728117, -0.004850291181355715, -0.015036797150969505, -0.005076856818050146, 0.007190474774688482, -0.00980790238827467, 0.01569264382123947, 0.004027500282973051, 0.017278602346777916, 0.00016107394185382873, 0.024731416255235672, -0.00980790238827467, 0.004734027199447155, -0.008192133158445358, -0.01768403686583042, 0.001348959282040596, -0.009760204702615738, -0.022656554356217384, 0.009158017113804817, 0.020557841286063194, -0.020092785358428955, 0.005574704613536596, -0.008233868516981602, 0.0027202770579606295, -0.00475191418081522, -0.0076793790794909, -0.00010173090413445607, 1.311229425482452e-05, 0.0060665905475616455, -0.00856179278343916, 0.019162675365805626, 0.006036778911948204, -0.005166290327906609, 0.0004277914995327592, 0.011453484185039997, -0.0052855354733765125, 0.0038903686217963696, -0.02049821801483631, -0.00715470127761364, -0.007810548879206181, -0.0034700301475822926, 0.020617464557290077, 0.024290209636092186, 0.019961616024374962, -0.018554525449872017, -0.00555085577070713, -0.0024251455906778574, -0.02465987019240856, -0.00030575168784707785, 0.014762532897293568, 0.011042089201509953, -0.004444858059287071, 0.0031599930953234434, 0.0052110073156654835, -0.005843006074428558, -0.0285472571849823, -0.009694620035588741, 0.01275921706110239, -0.022871194407343864, 0.0038307462818920612, -0.009509790688753128, -0.003690633224323392, 0.01875724084675312, -0.020522067323327065, 0.006671758834272623, -0.05137075483798981, -0.010767824947834015, 0.013403140008449554, 0.016062304377555847, -0.0045491973869502544, -0.01847105287015438, -0.001261761412024498, 0.026687035337090492, -0.009086470119655132, 0.010833409614861012, -0.011590615846216679, -0.01605037972331047, -0.016527360305190086, -0.012806914746761322, 0.012282236479222775, 0.0002684876089915633, -0.013856271281838417, 0.013629705645143986, 0.0067075323313474655, 0.014631363563239574, -0.004227235913276672, 0.0032673135865479708, 0.003970859106630087, 0.02594771608710289, -0.01637234166264534, 0.017183206975460052, -0.009205715730786324, -0.01864992082118988, 0.005166290327906609, -0.007238172460347414, -0.004245122894644737, -0.008955300785601139, -0.04035251587629318, -0.005801270250231028, -0.013582007959485054, 0.006260363385081291, -0.013510460965335369, 0.026925524696707726, 0.004459763877093792, -0.02239421382546425, -0.011370012536644936, -0.017815206199884415, 0.009116281755268574, 0.004063274245709181, -0.004564103204756975, -0.007894020527601242, -0.014464421197772026, 0.013748950324952602, -0.034867241978645325, 0.0007028003456071019, -0.029071936383843422, 0.012306085787713528, -0.017672112211585045, -0.020879803225398064, 0.01601460576057434, 0.015966907143592834, -0.009563450701534748, 0.009336885064840317, 0.027211712673306465, -0.006677721161395311, -0.01708781160414219, -0.013832421973347664, -0.018053695559501648, -0.006081495899707079, 0.023360099643468857, 0.010898994281888008, -0.02818952314555645, -0.017552867531776428, -0.0028216352220624685, 0.003076521446928382, -0.023550890386104584, 0.0054047806188464165, -0.0025920886546373367, -0.006528664845973253, -0.006838701665401459, -1.1679956514853984e-05, 0.0220364797860384, 0.013307743705809116, -0.005386893637478352, -0.00522293196991086, -0.004611800890415907, -0.02480296418070793, -0.010052355006337166, 0.002405768260359764, -0.0038068972062319517, 0.0009636487811803818, 0.0008779414347372949, -0.03236309811472893, -0.02424251288175583, -0.012842688709497452, -0.008394849486649036, -0.00975424237549305, -0.013105027377605438, -0.015585323795676231, 0.004713159520179033, 0.010296807624399662, -0.005374969448894262, 0.025279944762587547, 0.014178232289850712, -0.01510834414511919, 0.0029990121256560087, 0.0016038455069065094, 0.01847105287015438, 0.0031868231017142534, -0.01478638220578432, 0.003142106346786022, -0.03264928609132767, 0.029978197067975998, -0.015823813155293465, -0.014202081598341465, -0.006480966694653034, -0.01492947619408369, -0.01153099350631237, -0.036178939044475555, 0.01550185214728117, 0.028380313888192177, 0.011793332174420357, -0.00645115552470088, -0.005714817438274622, -0.011513106524944305, 0.007989415898919106, 0.022274969145655632, 0.006564438343048096, -0.015084494836628437, -0.00031301818671636283, -0.008782396093010902, -0.020164333283901215, 0.016241172328591347, -0.0025115981698036194, -0.007232210598886013, 0.013033480383455753, -0.008192133158445358, -0.03138528764247894, -0.011399824172258377, -0.0016917886678129435, 0.005816175602376461, 0.0004382254555821419, -0.012401482090353966, -0.018280262127518654, -0.008782396093010902, 0.020200105383992195, 0.029978197067975998, -0.017207056283950806, -0.0043762922286987305, -0.00692217331379652, -0.016968566924333572, 0.003154030768200755, 0.022155724465847015, 0.008931451477110386, 0.015776116400957108, 0.013832421973347664, 0.029238877817988396, 0.022787723690271378, -0.01922229677438736, -0.014571741223335266, -0.011858916841447353, 0.023217005655169487, -0.02210802584886551, -0.004978479351848364, -0.01467906218022108, 0.006820815149694681, 0.010416052304208279, -0.0073693422600626945, 0.0018065620679408312, -0.006242476869374514, -0.023658212274312973, -0.01232993509620428, 0.01694471761584282, 0.016682378947734833, -0.01496525015681982, 0.030455177649855614, 0.0042570470832288265, 0.0002684876089915633, -0.009020885452628136, -0.0029632386285811663, -0.020164333283901215, 0.01441672258079052, 0.014726759865880013, 0.012055671773850918, 0.016062304377555847, 0.011560804210603237, 0.014369024895131588, -0.005082819145172834, -0.030240537598729134, -0.007232210598886013, 0.027068618685007095, 0.007190474774688482, 0.030741365626454353, 0.0075422474183142185, 0.011614465154707432, 0.0033328982535749674, 2.3732553017907776e-05, 0.004438895732164383, -0.010863221250474453, -0.006647909991443157, -0.0017469394952058792, 0.011238843202590942, -0.017278602346777916, 0.009784054011106491, -0.0011812709271907806, -0.016670454293489456, 0.014154383912682533, 0.020021239295601845, -0.0016485623782500625, -0.0020152407232671976, 0.0026621450670063496, 0.013713177293539047, 0.02056976594030857, 0.01839950680732727, -0.012222614139318466, 0.01890033483505249, -0.026901675388216972, -0.001904939184896648, 0.018959958106279373, -0.012639972381293774, -0.0196873527020216, -0.028237219899892807, -0.006975833792239428, 0.0024370700120925903, 0.0007121163653209805, -0.02110636793076992, 0.007423002272844315, 0.026424696668982506, 0.003222596598789096, 0.015716493129730225, -0.014047062955796719, -0.013486611656844616, -0.008853943087160587, 0.0022969571873545647, -0.014750609174370766, 0.02149987779557705, 0.025852320715785027, -0.023407796397805214, 0.00010471203131601214, 0.011918539181351662, -0.01388012059032917, 0.012914235703647137, -0.006785041652619839, 0.023050062358379364, 0.002593579236418009, -0.026329299435019493, 0.016348492354154587, 0.010034468024969101, -0.006069571245461702, 0.00023960796534083784, -0.013271970674395561, 0.015299135819077492, 0.006630023010075092, 5.487133967108093e-05, 0.029024237766861916, 0.008317340165376663, 0.009623073041439056, 0.013796648941934109, 0.018196789547801018, -0.00015557747974526137, 0.008901640772819519, -0.0020614482928067446, 0.022513460367918015, 0.028809595853090286, -0.0053391954861581326, -0.008549868129193783, -0.000542937486898154, -0.00886586681008339, -0.010749938897788525, 0.019269995391368866, 0.0015546568902209401, -0.004784706514328718, 0.01470291055738926, -0.007816511206328869, -0.005386893637478352, 0.00034245679853484035, -0.022513460367918015, 0.006463080178946257, 0.009295148774981499, -0.005714817438274622, -0.014607515186071396, -0.02804642915725708, 0.01811331883072853, 0.006105344742536545, 0.017290527001023293, 0.02544688619673252, 0.00044679618440568447, 0.019091127440333366, 0.01484600454568863, -0.0064869290217757225, 0.008919527754187584, -0.013391215354204178, 0.0008824131218716502, 0.002978144446387887, -0.012854613363742828, 0.0025265037547796965, 0.009098394773900509, -0.0038605574518442154, -0.011996048502624035, -0.017099736258387566, -0.005986100062727928, 0.007244134787470102, -0.02477911487221718, -0.011006315238773823, -0.008013265207409859, 0.020235879346728325, 0.012449179776012897, 0.0018140148604288697, -5.314787631505169e-05, 0.006015911232680082, 0.006349797360599041, -0.007548209745436907, 0.02178606577217579, -0.006582324858754873, -0.028952689841389656, -0.004510442726314068, -0.028666501864790916, 0.025542283430695534, -0.00040543306386098266, 0.003741312539204955, -0.0017066943692043424, 0.0010597901418805122, -0.013498536311089993, 0.01430940255522728, 0.007107003126293421, -0.003455124329775572, 0.01482215616852045, -0.0033388605806976557, -0.018161015585064888, 0.015788041055202484, -0.024922208860516548, -0.01787482760846615, -0.004265990573912859, -0.014237855561077595, 0.0015278267674148083, 0.0013571573654189706, 0.04302360117435455, -0.020653236657381058, 0.004426971543580294, -0.019782748073339462, -0.026853978633880615, 0.010755900293588638, -0.0005734940059483051, 0.007828435860574245, 0.006498853676021099, 0.018494902178645134, 0.011286540888249874, 0.009068584069609642, -0.003431275486946106, -0.004728064872324467, 0.03021668829023838, 0.0021359764505177736, 0.006886399816721678, -0.029525065794587135, 0.0028052390553057194, 0.02268040180206299, -0.002053995383903384, -0.025852320715785027, 0.015823813155293465, -0.0042302170768380165, 0.008448509499430656, -0.02200070582330227, 0.03398482874035835, 0.011805256828665733, -0.01662275567650795, 0.0014048554003238678, 0.001568072009831667, -0.028881143778562546, -0.012306085787713528, 0.020736709237098694, 0.03222000226378441, 0.015430305153131485, -0.039422404021024704, -0.011471371166408062, -0.017600564286112785, 0.015549550764262676, -0.014285553246736526, -0.02266847714781761, 0.019413089379668236, 0.000822045374661684, -0.0026159374974668026, -0.00366976554505527, 0.00460882019251585, -0.0034640678204596043, 0.019126901403069496, -0.022644629701972008, 0.006516740191727877, -0.023145457729697227, 0.005959269590675831, 0.02021203003823757, 0.010058317333459854, -0.005881760735064745, 0.02680628001689911, 0.014357100240886211, -0.005261686630547047, -0.0016515435418114066, 0.013951667584478855, 0.016324643045663834, -0.00884201843291521, 0.020009314641356468, 0.025423038750886917, -0.016885094344615936, -0.028738049790263176, -0.0011753087164834142, -0.0222153477370739, 0.025828471407294273, 0.01698049157857895, 0.004564103204756975, -0.03734754025936127, -0.0022075234446674585, -0.00989733636379242, 0.02225111983716488, -0.005035120993852615, -0.0009688657592050731, 0.005216969642788172, 0.028356464579701424, -0.014428647235035896, 0.004692291375249624, -0.004331575240939856, -0.004537272732704878, -0.0011753087164834142, 0.010660504922270775, -0.007631681393831968, -0.007470700424164534, -0.0063140238635241985, -0.016813548281788826, 0.012544576078653336, -0.0365128256380558, -0.004856253508478403, 0.009020885452628136, 0.004686329048126936, -0.004653536714613438, 0.005437572952359915, 0.009044734761118889, 0.0027649938128888607, 0.004543235059827566, 0.02985895238816738, 0.009879449382424355, -0.011137484572827816, 0.012687670066952705, -0.009348809719085693, -0.0025876169092953205, -0.011775445193052292, -0.004158670082688332, 0.0017469394952058792, -0.008770471438765526, -0.002832069294527173, -0.016145775094628334, -0.007828435860574245, 0.016861245036125183, 0.02630545198917389, 0.012484953738749027, -0.006987757980823517, 0.004665461368858814, 0.037252143025398254, 0.00941439438611269, 0.005231874994933605, 0.001452553435228765, -0.019460787996649742, 0.0025578057393431664, 0.0008742150384932756, 0.0035415771417319775, -0.024731416255235672, 0.015704568475484848, 0.01026699598878622, -0.015275286510586739, -0.03136143833398819, 0.0031719175167381763, 0.009915223345160484, 0.013641630299389362, -0.013903968967497349, -0.009289187379181385, 0.0023118627723306417, 0.009563450701534748, 0.00184829777572304, -0.007995378226041794, 0.01370125263929367, 0.0018184864893555641, -0.02103482186794281, -0.01764826290309429, -0.007595907896757126, -0.005330252461135387, 0.025184547528624535, 0.024469077587127686, -0.005491232965141535, -0.016288869082927704, -0.0072679840959608555, -0.023431645706295967, -0.012735367752611637, 0.022751949727535248, 0.009342847391963005, 0.005938401911407709, 0.020259728655219078, 0.011280578561127186, 0.007524360902607441, -0.010219298303127289, -0.015012947842478752, -0.007035456132143736, -0.007476662751287222, 0.015442229807376862, 0.0048651969991624355, 0.0033478038385510445, 0.03057442232966423, 0.0010165637359023094, -0.0005403289687819779, -0.007458775769919157, 0.002273108111694455, -0.003473011078312993, -0.02074863389134407, -0.006695607677102089, -0.016646604984998703, -0.011596578173339367, 0.00477874418720603, -0.019377315416932106, 0.017350150272250175, 0.010517410933971405, -0.015084494836628437, -0.00016684985894244164, -0.008353113196790218, -0.006153042893856764, -0.007935755886137486, 0.012151067145168781, -0.0053123654797673225, -0.005929458420723677, 0.006057647056877613, -0.01049952395260334, 0.015644947066903114, 0.015668796375393867, 0.018769165500998497, -0.0042033870704472065, 0.009795978665351868, 0.018304109573364258, 0.020009314641356468, -0.01615769974887371, 0.01975889876484871, 0.027164015918970108, 0.012282236479222775, 0.0182564128190279, 0.013426989316940308, -0.00410202844068408, -0.007965567521750927, 0.00357735063880682, -0.010493561625480652, 0.014047062955796719, 0.00834715086966753, 0.013319668360054493, -0.011381937190890312, -0.00927130039781332, -0.023050062358379364, -0.00818617083132267, -0.008806244470179081, 0.0029841065406799316, -0.019281920045614243, -0.005342176649719477, -0.00800730288028717, 0.020188182592391968, 0.024337908253073692, -0.0035743694752454758, 0.006785041652619839, -0.0025026549119502306, 0.027784088626503944, 0.007929793559014797, -0.004325612913817167, 0.003902293276041746, 0.013021555729210377, -0.0002595442347228527, -0.003154030768200755, -0.014643288217484951, -0.023431645706295967, -0.040519457310438156, -0.006319986190646887, 0.005300441291183233, 0.007780737243592739, -0.03694210574030876, 0.02064131200313568, -0.02811797522008419, -0.030622120946645737, -0.01384434662759304, -0.0030273329466581345, -0.015179891139268875, -0.01694471761584282, 0.005521044600754976, -0.03014514036476612, 0.00041996606159955263, 0.013856271281838417, 0.004862215835601091, 0.04054330661892891, 0.0015024872263893485, -0.0102133359760046, -0.01041008997708559, 0.01496525015681982, -0.006236514542251825, -0.01041008997708559, 0.003911236766725779, 0.019556183367967606, 0.003091427031904459, -0.053660258650779724, -0.0016828452935442328, 0.021511800587177277, -0.042522773146629333, -0.015132192522287369, 0.031838420778512955, 0.013486611656844616, -0.002240315778180957, -0.021046746522188187, 0.016455812379717827, -0.0038188216276466846, -0.003607161808758974, -0.01723090559244156, -0.012532651424407959, 0.00936073437333107, 0.01907920278608799, -0.019949691370129585, -0.010976503603160381, 0.029882801696658134, 0.0012222614604979753, -0.004116934258490801, 0.021201765164732933, -0.0022760892752557993, -0.003222596598789096, 0.028165673837065697, 0.0047906688414514065, 0.014094761572778225, -0.020259728655219078, 0.00022693818027619272, 0.019913917407393456, 0.026639336720108986, 0.0064869290217757225, 0.002301428932696581, -0.01872146874666214, -0.0070473807863891125, 0.0020003351382911205, -0.00762571906670928, -0.01737399958074093, -0.02797488123178482, -0.001451062853448093, -0.014404797926545143, 0.024993756785988808, 0.0024698623456060886, -0.008698924444615841, -0.025613829493522644, -0.011596578173339367, 0.00715470127761364, -0.005848968401551247, 0.001687317038886249, 0.008227906189858913, 0.013415064662694931, -0.02028357796370983, 0.004033462610095739, 0.013975515961647034, 0.025900017470121384, 0.022096101194620132, -0.004945687018334866, -0.006618098355829716, 0.010767824947834015, 0.009426319040358067, -0.017171282321214676, 0.024015946313738823, 0.01687316969037056, 0.017362074926495552, 0.01694471761584282, 0.002095731208100915, 0.010565108619630337, 0.004328594077378511, 0.013927818275988102, -0.0042033870704472065, -0.007226248271763325, 0.019281920045614243, 0.0020733727142214775, -0.003234521020203829, 0.004701234865933657, -0.008359075523912907, -0.0062663257122039795, -0.008788357488811016, 0.010195448994636536, 0.007703228387981653, 0.007756888400763273, -0.004146745428442955, -0.019675428047776222, -0.0003461831947788596, 0.0020599577110260725, 0.007959605194628239, 0.023395873606204987, -0.000344506319379434, -0.006206703372299671, -0.01017756201326847, -0.0155376261100173, -0.023944400250911713, 0.020772483199834824, 0.0017454489134252071, -0.02804642915725708, 0.026281602680683136, 0.0014726759400218725, 0.027426354587078094, -0.012520726770162582, 0.008537943474948406, 0.007387228775769472, 0.014941400848329067, -0.019067278131842613, -0.01594305969774723, 0.008215981535613537, 0.024039795622229576, -0.0024266361724585295, -0.0002593579120002687, -0.016002681106328964, -0.008114623837172985, 0.016253096982836723, 0.010237185284495354, 0.017350150272250175, -0.007959605194628239, -0.007315681781619787, 0.012127218768000603, 0.014357100240886211, -0.019103052094578743, -0.0070533426478505135, 0.007929793559014797, 0.008597565814852715, 0.015001023188233376, 0.0011790351709350944, 0.0006465315818786621, -0.00548228994011879, 0.005369007121771574, -0.03243464604020119, -0.015883436426520348, -0.000139460782520473, 0.018494902178645134, -0.011143446899950504, 0.0225969310849905, 0.004245122894644737, 0.02132100984454155, -0.02883344516158104, 0.016575057059526443, -0.010386241599917412, 0.016813548281788826, -0.0057982890866696835, -0.014619438908994198, 0.024850662797689438, 0.017612488940358162, 0.011459446512162685, -0.010153713636100292, -0.009891374036669731, -0.015084494836628437, 0.015573399141430855, -0.0044508203864097595, 0.014607515186071396, -0.000820554792881012, 0.006695607677102089, 0.0006405693129636347, 0.017815206199884415, 0.020915577188134193, 0.0027038808912038803, 0.005374969448894262, 0.012771141715347767, 0.017290527001023293, 0.0024832775816321373, -0.011686012148857117, 0.008907603099942207, 0.0009338375530205667, -0.0180775448679924, 0.008663150481879711, -0.00946805439889431, 0.005354101303964853, -0.00038754631532356143, -0.011095749214291573, -0.009432281367480755, -0.00980790238827467, -0.00980790238827467, -0.003970859106630087, -0.0045968955382704735, -0.006290174555033445, 0.009974845685064793, -0.008734697476029396, 0.02313353307545185, -0.017576714977622032, -0.01687316969037056, -0.0030556535348296165, 0.008633339777588844, 0.00856179278343916, -0.014392874203622341, 0.0034402187447994947, 0.011608502827584743, 0.018208714202046394, -0.020057011395692825, -0.0017514112405478954, -0.022930817678570747, -0.01087514590471983, -0.0013437423622235656, -0.00941439438611269, -0.0032196154352277517, -0.004471688065677881, -0.009307073429226875, -0.008836056105792522, -0.027879485860466957, 0.0001435598242096603, -0.006898324470967054, 0.02200070582330227, 0.01055318396538496, 0.013927818275988102, 0.012961933389306068, 0.03517727926373482, -0.008710848167538643, -0.010743976570665836, 0.002155353780835867, 0.004680367186665535, 0.021917235106229782, 0.00553594995290041, -0.004042406100779772, 0.023789381608366966, 0.00037245434941723943, 0.006102364044636488, -0.009831751696765423, -0.01275921706110239, 0.0007952151936478913, -0.025685377418994904, 0.003979802597314119, 0.004179537761956453, -0.0243856068700552, -0.014285553246736526, 0.00149503443390131, 0.006427306681871414, -0.0013347988715395331, -0.0007523615495301783, 0.005941383074969053, 0.005932439584285021, 0.018161015585064888, 0.005568742286413908, 0.013295819982886314, 0.0033656905870884657, -0.0193296167999506, -0.016777774319052696, 0.010386241599917412, 0.014643288217484951, -0.005124554503709078, -0.013546233996748924, -0.019854295998811722, 0.006463080178946257, -0.0137370266020298, -0.015179891139268875, -0.017457470297813416, -0.005893684923648834, 0.0056522139348089695, -0.004125877749174833, -0.013212348334491253, -0.0014272137777879834, 0.013808573596179485, 0.004856253508478403, -0.008979150094091892, -0.011948350816965103, -0.006516740191727877, 0.010272958315908909, -0.00013182163820602, -0.014476344920694828, 0.009104357101023197, 0.005279573146253824, 0.022930817678570747, -0.012306085787713528, 0.009158017113804817, 0.0022895042784512043, 0.0036131241358816624, -0.004006632603704929, -0.005377950146794319, 0.003952972590923309, 0.006272288039326668, -0.02324085496366024, 0.018852638080716133, 0.0044239903800189495, 0.010761862620711327, 0.0220364797860384, -0.0009733374463394284, 0.014714835211634636, 0.00809673685580492, -0.007023531477898359, 0.00952171441167593, -0.013796648941934109, -0.002917031291872263, -0.0028186540585011244, -0.016670454293489456, 0.0412110798060894, -0.004787687677890062, 0.01605037972331047, -0.035105735063552856, 0.004525348544120789, 0.009020885452628136, 0.007190474774688482, -0.021869536489248276, -0.02754559926688671], "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0": [-0.009004893712699413, 0.003398691536858678, -0.002464324701577425, 0.03330936282873154, -0.05309681594371796, -0.004287524148821831, 0.004498803988099098, 0.012276088818907738, -0.003937819506973028, 0.04347993806004524, 0.040216028690338135, 0.01754351332783699, 0.007056018803268671, -0.012210519053041935, -0.007977636530995369, 0.027422668412327766, -0.016421545296907425, 0.03339678794145584, 0.030570009723305702, -0.024289898574352264, 0.028369786217808723, -0.017645511776208878, -0.05627330020070076, -0.002624605782330036, -0.0072381566278636456, -0.012203233316540718, 0.01458559650927782, 0.011962811462581158, -0.042576536536216736, -0.00605061836540699, -0.007362010423094034, -0.009391025640070438, 0.009806299582123756, 0.042518250644207, 0.028865201398730278, -0.009128747507929802, -0.006112544797360897, 0.03147341310977936, 0.005770125892013311, -0.014920729212462902, -0.033979631960392, 0.008400196209549904, -0.046219293028116226, -0.009514879435300827, -0.007467650342732668, 0.014221320860087872, -0.02710210718214512, -0.008706187829375267, 0.01602812670171261, 0.006553318351507187, 0.024304470047354698, -0.017674652859568596, 0.026460980996489525, 0.019058899953961372, 0.044150207191705704, -0.02140483632683754, 0.011984667740762234, 0.018519772216677666, -0.027684947475790977, -0.07209743559360504, -0.0028832415118813515, -0.043567363172769547, 0.0010900947963818908, 0.012093950994312763, 0.011664105579257011, 0.010265287011861801, 0.009493023157119751, -0.017558084800839424, -0.015576425939798355, 0.02574700117111206, 0.015649281442165375, 0.04193541035056114, -0.08678502589464188, 0.02350306324660778, 0.03601957485079765, -0.001646525808610022, -7.871768320910633e-05, 0.012815216556191444, 0.025178730487823486, -0.003956033382564783, 0.0030489868950098753, -0.004072601441293955, 0.023546775802969933, -0.005934049841016531, 0.044004496186971664, 0.0439753532409668, 0.03371735289692879, -0.06469535082578659, 0.0017749329563230276, -0.04155656322836876, -0.005030646454542875, -0.01717923767864704, 0.006600674241781235, -0.008247200399637222, -0.03281394764780998, 6.004856186336838e-05, -0.006615245249122381, 0.018184639513492584, 0.03616528585553169, 0.009966581128537655, 0.0017785757081583142, -0.011649534106254578, 0.0028486354276537895, 0.01351462583988905, -0.006495034322142601, -0.016946101561188698, -0.012450940907001495, 0.021433977410197258, -0.025237014517188072, 0.033600784838199615, -0.012917214073240757, -0.0363401360809803, 0.016421545296907425, -0.003405977040529251, -0.04493704065680504, -0.03339678794145584, -0.06790097802877426, 0.012538366951048374, 0.02931690216064453, -0.0039706043899059296, 0.002874134574085474, -0.050736308097839355, 0.018038928508758545, -0.010673276148736477, -0.0031874116975814104, 0.023532206192612648, -0.035145312547683716, 0.007183515466749668, 0.038933780044317245, 0.006950378883630037, 0.0030927001498639584, 0.006753670051693916, 0.0041673132218420506, 0.001539064571261406, -0.012283374555408955, 0.024843597784638405, -0.010512994602322578, 0.06317996233701706, -0.030511725693941116, 0.04939577355980873, -0.032755665481090546, 0.00902674999088049, -0.0011319865006953478, 0.02765580639243126, 0.023328211158514023, -0.012975498102605343, -0.02669411711394787, 0.04957062751054764, -0.010134147480130196, 0.004258382134139538, -0.03680640831589699, -0.003185590263456106, -0.04811352491378784, 0.021710827946662903, 0.05912921950221062, 0.008261770941317081, 0.010797129943966866, 0.02685439959168434, 0.02173996903002262, 0.04219768941402435, 0.024173330515623093, -0.042897097766399384, 0.0008323697838932276, 0.008545906282961369, 0.02864663489162922, 0.06475363671779633, 0.037972092628479004, 0.029739461839199066, -0.0029069194570183754, 0.013973613269627094, 0.014949871227145195, -0.0006315628415904939, -0.0007854693103581667, -0.011379970237612724, 0.03610699996352196, -0.035873863846063614, 0.026242416352033615, -0.012480082921683788, 0.03284309059381485, -0.058050964027643204, -0.01650897227227688, -0.013704049400985241, 0.012676792219281197, -0.03523273766040802, -0.0007567825959995389, 0.015051868744194508, -0.01732494868338108, 0.01340534258633852, 0.013857045210897923, -0.0007795498240739107, 0.0010236145462840796, -0.02203138917684555, -0.028559209778904915, 0.004542517010122538, 0.00024429234326817095, -0.015241292305290699, 0.017237521708011627, -0.003681005211547017, -0.02173996903002262, 0.009689731523394585, 0.022716227918863297, -0.029812317341566086, 0.015110152773559093, 0.03983718156814575, -0.03601957485079765, 0.004221954382956028, -0.017354091629385948, -0.016800392419099808, 0.028879771009087563, -0.005562488920986652, 0.037942949682474136, -0.03645670413970947, -0.012458226643502712, -0.01280064508318901, 0.0023768984246999025, -0.012494654394686222, -0.006097973790019751, 0.01802435889840126, 0.006378466263413429, -0.040041178464889526, 0.03115285187959671, 0.0004366754146758467, -0.02780151553452015, -0.03357164189219475, -0.03517445549368858, 0.02879234589636326, -0.016829533502459526, 0.03762238845229149, -0.05504933372139931, -0.0016146517591550946, 0.014993584714829922, -0.026825256645679474, 0.025688717141747475, 0.005059788469225168, 0.026562979444861412, 0.029142050072550774, 0.02434818260371685, 0.0002210697712143883, 0.004531588871032, -0.010614992119371891, -0.0009293581824749708, 0.0401577465236187, 0.0026792471762746572, 0.0022530448623001575, 0.0010645955335348845, 0.01809721253812313, 0.02405676245689392, 0.027830658480525017, 0.03400877118110657, 0.01182438712567091, -0.03534930571913719, 0.0031090923584997654, -0.0014771376736462116, -0.01889861933887005, -0.029710320755839348, 0.01935032196342945, 0.03508702665567398, 0.005886693950742483, 0.0029961669351905584, -0.005154500249773264, 0.022089673206210136, 0.002557214815169573, 0.01860719919204712, -0.01857805624604225, 0.004473304841667414, -0.007056018803268671, 0.034329336136579514, -0.022410236299037933, -0.02273079939186573, 0.022206241264939308, 0.013121208176016808, -0.0007613360648974776, -0.016931531950831413, 0.06020747497677803, 0.00697952089831233, 0.017922360450029373, -0.002056335797533393, 0.022847367450594902, 0.025178730487823486, -0.006564246956259012, -0.007897495292127132, -0.011226974427700043, -0.008815470151603222, 0.0033604425843805075, 0.035436734557151794, -0.004189169500023127, -0.015183008275926113, -0.006578817963600159, -0.027612091973423958, 0.03747667744755745, 0.0223956648260355, 0.0009808121249079704, 0.010156004689633846, 0.011940955184400082, 0.025368154048919678, 0.02162340097129345, -0.03505788743495941, 0.0074749356135725975, 0.005952263716608286, 0.01263307873159647, -0.001486244611442089, 0.014906158670783043, -0.004593515768647194, -0.021710827946662903, 0.025237014517188072, -0.04785124585032463, 0.053679656237363815, 0.03601957485079765, -0.050036899745464325, 0.05000775679945946, 0.014694878831505775, -0.02121541276574135, -0.034620754420757294, -0.01535786036401987, -0.004837580490857363, -0.00869890209287405, -0.024916453287005424, -0.030278589576482773, 0.0014306925004348159, -0.017528943717479706, 0.011642249301075935, 0.004644514061510563, -0.03619442507624626, -0.024464750662446022, 0.030220305547118187, -0.0316191241145134, 0.021827396005392075, -0.0026938181836158037, -0.024479322135448456, -0.004637228790670633, -0.08760100603103638, -0.006374823395162821, -0.016785820946097374, 0.011117692105472088, -0.040070317685604095, -0.01725209318101406, -0.028879771009087563, -0.019612599164247513, 0.014214035123586655, -0.028311502188444138, -0.026213273406028748, -0.02331363968551159, 0.04152742028236389, -0.024187901988625526, -0.004739225842058659, -0.015401573851704597, -0.011496538296341896, 0.022410236299037933, 0.0008519496186636388, -0.011321686208248138, 0.0008970287162810564, -0.014439885504543781, 0.004739225842058659, -0.016800392419099808, 0.048084381967782974, -0.029010910540819168, -0.03931262716650963, -0.022220812737941742, 0.00834919698536396, -0.010134147480130196, 0.006604317110031843, -0.03255166858434677, 0.029710320755839348, -0.040915437042713165, -0.00971158780157566, 0.014469027519226074, 0.017237521708011627, -0.010396426543593407, -0.007154373452067375, -0.0033185509964823723, -0.0009284475236199796, 0.0020071587059646845, -0.030948856845498085, -0.05921664461493492, 0.013580195605754852, -0.010440139099955559, 0.013507340103387833, -0.031385987997055054, -0.01368219219148159, 0.02560129016637802, -0.008618760854005814, 0.008356482721865177, 0.01002486515790224, 0.009609591215848923, 0.004611729644238949, -0.020545145496726036, 0.00214740470983088, -0.05274711176753044, 0.004170956090092659, 0.002267615869641304, -0.026431839913129807, -0.016727536916732788, -0.044703904539346695, -0.006017833482474089, -0.003322193631902337, 0.004316666163504124, 0.013653050176799297, -0.04213940352201462, -0.013449056074023247, -0.03520359471440315, -0.02000601775944233, 0.005970477592200041, -0.010068578645586967, -0.012684077024459839, 0.004083529580384493, -0.02640269696712494, 0.01344177033752203, -0.0002886884321924299, 0.010986552573740482, 0.00862604659050703, 0.028384357690811157, -0.015270434319972992, 0.0070596616715192795, 0.006393037270754576, 0.022453948855400085, 0.024625033140182495, -0.022701656445860863, 0.031648267060518265, 0.010170575231313705, 0.013842473737895489, 0.04377136006951332, 0.043713074177503586, 0.006924879737198353, 0.027597520500421524, 0.015605567954480648, -0.004269310273230076, 0.005551560316234827, -0.014053753577172756, -0.005285639315843582, -0.031240276992321014, 0.017499800771474838, 0.059857770800590515, -0.006586103234440088, -0.02159425988793373, -0.0340670570731163, -0.03843836486339569, -0.00921617355197668, 0.0015399751719087362, -0.012931784614920616, 0.017893219366669655, 0.0019798381254076958, -0.012939070351421833, -0.002970667788758874, -0.020064301788806915, 0.0011283437488600612, 0.029724890366196632, -0.02478531375527382, -0.019029758870601654, 0.05000775679945946, -0.010950125753879547, -0.010585850104689598, -0.014680307358503342, -0.046539854258298874, -0.014061039313673973, 0.02504759281873703, -0.01868005469441414, 0.00893932394683361, -0.021244553849101067, -6.505734927486628e-05, -0.020603429526090622, 0.0001226015156134963, 0.03721439838409424, 0.0432468019425869, 0.006742741912603378, 0.039633188396692276, 0.007780927233397961, -0.026417268440127373, -0.02118626981973648, 0.0007440329645760357, 0.023415638133883476, 0.011445540003478527, -0.0076497881673276424, -0.05318424105644226, 0.02343020774424076, 0.017849504947662354, 0.002814029110595584, -0.033192794770002365, 0.014541883021593094, 0.005628058221191168, -0.011897241696715355, -0.0018086284399032593, -0.0008096025558188558, -0.005314781330525875, 0.0005751001299358904, 0.01323777623474598, 0.019044330343604088, -0.005238283425569534, -0.03497045859694481, 0.005828409921377897, -0.019904019311070442, 0.010848128236830235, 0.022526804357767105, -0.03421276807785034, -0.003005273872986436, 0.024523034691810608, 0.004619014915078878, -0.020865708589553833, -0.029520897194743156, 0.0023823624942451715, -0.0053475662134587765, 0.05770125985145569, -0.011904527433216572, 0.02420247346162796, 0.02004973031580448, -0.01665468141436577, 0.035436734557151794, -0.022002248093485832, 0.015285004861652851, -0.008575048297643661, -0.015838705003261566, -0.05499104782938957, 0.023546775802969933, -0.0516979955136776, 0.02920033410191536, 0.015401573851704597, 0.018913190811872482, -0.021871108561754227, -0.02324078418314457, 0.025105876848101616, 0.013944471254944801, -0.01901518739759922, -0.0018741980893537402, 0.006764598190784454, -0.011591250076889992, -0.02541186846792698, 0.008538620546460152, -0.013317916542291641, -0.01937946304678917, -0.02835521474480629, -0.01908804289996624, -0.011124977841973305, -0.004269310273230076, -0.008473050780594349, 0.026635833084583282, 0.019058899953961372, 0.0015490821097046137, -0.011948240920901299, 0.028005510568618774, 0.011256116442382336, -0.0034642613027244806, 0.009238029830157757, 0.01696067303419113, 0.022308239713311195, 0.004313023295253515, 0.0013250525807961822, 0.02136112190783024, 0.016042698174715042, 0.0012977318838238716, -0.024289898574352264, 0.02581985667347908, 0.0033440501429140568, 0.010797129943966866, -0.021200841292738914, 0.009667875245213509, 0.0053475662134587765, -0.05091116204857826, -0.001009043538942933, 0.022133387625217438, -0.002242116490378976, -0.025645004585385323, -0.019874878227710724, 0.01691696047782898, 0.04068230092525482, 0.02982688881456852, -0.017630940303206444, -0.014716735109686852, -0.03575729578733444, 0.006385751534253359, 0.007547791115939617, 0.010753416456282139, 0.019831165671348572, -0.017791220918297768, 0.05181456357240677, -0.01865091174840927, 0.00983544159680605, 0.05402936041355133, 0.008327340707182884, -0.026096705347299576, -0.009187031537294388, -0.026271557435393333, 0.03100714087486267, -0.0025918211322277784, 0.003036237321794033, -0.007759070955216885, -0.009952009655535221, 0.010410997085273266, -0.007795498240739107, 0.004134528338909149, 0.0017867719288915396, 0.02890891395509243, 0.040361739695072174, 0.02949175424873829, -0.0019033401040360332, 0.0034387619234621525, -0.009412881918251514, 0.03071572072803974, 0.0023350068368017673, -0.006910308729857206, 0.011372685432434082, 0.010826271958649158, 0.050299178808927536, 0.010163290426135063, -0.006841096095740795, 0.0017266664654016495, -0.0317065492272377, 0.024042190983891487, 0.0005801089573651552, 0.061955999583005905, 0.004076244309544563, 0.007933923043310642, 0.00206362153403461, 0.008691616356372833, 0.013485483825206757, -0.040624018758535385, 0.018592627719044685, 0.009901011362671852, 0.014818732626736164, 0.04983290657401085, 0.001843234640546143, 0.019627170637249947, 0.0024898238480091095, -0.02982688881456852, 0.05210598558187485, -0.017528943717479706, -0.008079633116722107, 0.007678930182009935, -0.03196882829070091, -0.02258508838713169, -0.021171700209379196, 0.007270941510796547, 0.01439617294818163, -0.0347956083714962, -0.04476219043135643, -0.01872376725077629, 0.02497473731637001, -0.026067564263939857, 0.003912320360541344, 0.022133387625217438, -0.020880278199911118, -0.03954576328396797, 0.004036174155771732, 0.023226214572787285, 0.026344412937760353, 0.03805951774120331, -0.014119323343038559, 0.03832179680466652, -0.027233246713876724, 0.02133198082447052, 0.018257495015859604, 0.03864235803484917, -0.006600674241781235, 0.02890891395509243, 0.02210424467921257, 0.014979014173150063, -0.001097380300052464, -0.013070209883153439, 0.005252854432910681, 0.009850013069808483, 0.01175153162330389, 0.004320309031754732, 0.01725209318101406, -0.011401827447116375, 0.00013956309703644365, 0.004313023295253515, 0.018913190811872482, 0.007230871357023716, 0.014578310772776604, 0.023663343861699104, 0.0005404939875006676, 0.0356115847826004, -0.000512717931997031, -0.034183625131845474, -0.004200098104774952, -0.00653874734416604, 0.011503824032843113, -0.024071333929896355, 0.00923074409365654, 0.010199717245995998, -0.012531081214547157, -0.028078366070985794, -0.025805285200476646, -0.04703526943922043, -0.014935300685465336, 0.0281657911837101, -0.013915329240262508, 0.0007831925759091973, 0.019991446286439896, 0.018403204157948494, -0.011358113959431648, 0.00039114095852710307, 0.007139802444726229, 0.003974247258156538, -0.009565877728164196, 0.008961180225014687, -0.00529656745493412, 0.008363768458366394, -0.005118072498589754, -0.021754540503025055, 0.003345871577039361, -0.01515386626124382, -0.015416144393384457, 0.0019343035528436303, -0.005402207374572754, 0.012975498102605343, 0.024260757490992546, 0.008684330619871616, -0.007121588569134474, -0.029622893780469894, 0.02106970176100731, -0.0025317156687378883, 0.008473050780594349, 0.00790478102862835, 0.008050491102039814, -0.015183008275926113, 0.02335735224187374, 0.03188140317797661, 0.0058939796872437, 0.0022749013733118773, -0.004149099346250296, 0.0189423318952322, -0.016756678000092506, 0.015488999895751476, -0.012902642600238323, -0.017703795805573463, -6.574036888196133e-06, 0.028340643271803856, -0.0018213781295344234, 0.004513374995440245, -0.009660589508712292, -0.0013532839948311448, 0.03610699996352196, -0.005322067067027092, 0.042867954820394516, -0.004968719556927681, -0.02063257060945034, -0.015751278027892113, -0.010141433216631413, 4.049720519105904e-05, 0.037942949682474136, -0.019962305203080177, 0.007150730583816767, 0.004531588871032, -0.0018996973522007465, 0.00516907125711441, 0.017368661239743233, -0.022599659860134125, 0.034883033484220505, 0.02022458240389824, -0.009041321463882923, -0.010746130719780922, 0.013973613269627094, -0.010636848397552967, 0.02034115046262741, -0.004101743455976248, -0.011817101389169693, 0.0011310757836326957, 0.016523541882634163, -0.003941462375223637, -0.01563470996916294, 0.057205844670534134, 0.02280365489423275, 0.005223712418228388, -0.020137157291173935, -0.01427231915295124, -0.022279096767306328, 0.00838562473654747, 0.015285004861652851, -0.007307369261980057, 0.02570328861474991, 0.007234513759613037, 0.041177716106176376, 0.03692297637462616, 0.022147957235574722, 0.022701656445860863, -0.02987060137093067, -0.023124216124415398, 0.008611476048827171, 0.011605821549892426, -0.004469661973416805, -0.012203233316540718, -0.024654174223542213, 0.00029756766161881387, -0.0009653304005041718, 0.0007194443605840206, 0.0017995216185227036, -0.014665736816823483, 0.04065316170454025, 0.01665468141436577, -0.03523273766040802, 0.00433123717084527, 0.021565116941928864, -0.026708688586950302, -0.005810196045786142, 0.014826018363237381, 0.016523541882634163, -0.011518395505845547, -0.04517017677426338, -0.007984921336174011, -0.010505708865821362, 0.014418029226362705, 0.0006579728215001523, -0.0053475662134587765, 0.045694734901189804, 0.013143064454197884, 0.014039183035492897, 0.007555076386779547, 0.030570009723305702, -0.027961796149611473, -0.018374063074588776, 0.022089673206210136, 0.0026227845810353756, 0.018009787425398827, -0.014665736816823483, 0.008793613873422146, -0.034300193190574646, -0.02526615746319294, -0.02106970176100731, -0.012035666964948177, 0.02850092574954033, 0.018986046314239502, -0.010440139099955559, 0.0005628058570437133, 0.006072474643588066, 0.02526615746319294, 0.0196708831936121, -0.0008432980976067483, 0.02552843652665615, -0.004837580490857363, 0.0007631574408151209, -0.012647649273276329, -0.01182438712567091, -0.016086410731077194, -0.014993584714829922, 0.015212150290608406, -0.0036409348249435425, 0.013929899781942368, 0.028078366070985794, 0.004517017863690853, -0.02224995568394661, 0.023328211158514023, -0.022555947303771973, -0.055923592299222946, -0.010760702192783356, -0.016115553677082062, -6.386206950992346e-05, -0.0026737831067293882, 0.0023696129210293293, 0.015620138496160507, 0.001950695994310081, 0.04645242914557457, 0.021506832912564278, -0.016115553677082062, -0.0007085161050781608, 0.011984667740762234, -0.011642249301075935, 0.026825256645679474, 0.0016055448213592172, 0.05056145787239075, -0.0034205480478703976, 0.0006766419974155724, 0.03392134606838226, -0.017703795805573463, -0.017222952097654343, 0.0012986426008865237, -0.006218184716999531, 0.013835188001394272, 0.006130758672952652, 0.0037228967994451523, 0.017703795805573463, 0.023663343861699104, -0.026752401143312454, -0.02688354067504406, 0.0036409348249435425, -0.02074914053082466, -0.01242908462882042, -0.014250462874770164, 0.011073978617787361, -0.013711334206163883, -0.04056573286652565, 0.014818732626736164, 0.01007586345076561, 0.010826271958649158, 0.006964949890971184, -0.026825256645679474, -0.02048686146736145, 0.019117183983325958, 0.0022931150160729885, -0.002420611446723342, 0.0216671135276556, -0.0010818985756486654, -0.01937946304678917, 0.018490631133317947, -0.024654174223542213, -0.014505455270409584, -0.013296060264110565, 0.0036718982737511396, 0.013019210658967495, -0.0003018934221472591, -0.007678930182009935, 0.010658704675734043, 0.00873532984405756, -0.007158015854656696, -0.028122078627347946, -0.03695211932063103, 0.006819239817559719, -0.013208634220063686, 0.014760448597371578, -0.015474428422749043, 0.03392134606838226, -0.014964442700147629, -0.018884047865867615, -0.01732494868338108, -0.01720838062465191, 0.0027958154678344727, 0.037272680550813675, -0.011999239213764668, 0.016275834292173386, -0.016931531950831413, 0.022381095215678215, -0.007700786925852299, -0.00429480941966176, 0.012960926629602909, 0.016465257853269577, -0.01754351332783699, -0.020719997584819794, 0.020618000999093056, -0.009296313859522343, 0.005001504439860582, 0.0009890083456411958, 0.02482902631163597, -0.004724654834717512, 0.001848698826506734, -0.002517144661396742, -0.02294936403632164, -0.007810069248080254, -0.0019434104906395078, -0.030540868639945984, 0.00577376876026392, -0.003901391988620162, -0.00246796733699739, 0.019612599164247513, 0.0015345111023634672, 0.010476566851139069, 0.0026027492713183165, -0.022075103595852852, -0.0034369404893368483, 0.006254612468183041, 0.008480336517095566, 0.010964696295559406, -0.01993316225707531, -0.011001124046742916, 0.0263007003813982, 0.004517017863690853, 0.015416144393384457, 0.011358113959431648, -0.03744753450155258, -0.0036609701346606016, -0.0006930343806743622, -0.0150810107588768, -0.013871615752577782, 0.008837326429784298, -0.025295298546552658, 0.007329225540161133, 0.002837707055732608, -0.015008156187832355, 0.022526804357767105, -0.002994345733895898, 0.010505708865821362, -0.015328718349337578, -0.033746495842933655, 0.01427231915295124, -0.01978745125234127, -0.005686342716217041, 0.059508066624403, -0.012021095491945744, -0.01230523083359003, -0.016873247921466827, -0.040041178464889526, -0.022002248093485832, -0.007933923043310642, 0.026504695415496826, -0.022891080006957054, -0.026242416352033615, -0.024843597784638405, -0.009456595405936241, 0.023197071626782417, -0.010250716470181942, -0.013208634220063686, 0.014410743489861488, 0.011532966047525406, -0.004629943054169416, -0.017091812565922737, 0.0012904463801532984, 0.006199971307069063, 0.015751278027892113, 0.009799014776945114, 0.009689731523394585, -0.030074596405029297, 0.0037247182335704565, -0.03269737958908081, -0.0019889448303729296, 0.010818986222147942, -0.03805951774120331, 0.03435847535729408, -0.002469788771122694, -0.012407227419316769, -0.016523541882634163, 0.0012066629715263844, -0.0038139657117426395, 0.015270434319972992, -0.01710638403892517, -0.011409112252295017, -0.011212403886020184, -0.026766972616314888, 0.0076425024308264256, 0.018767479807138443, 0.02581985667347908, -0.005405850242823362, -0.009646018967032433, 0.03660241514444351, -0.020326580852270126, 0.007117945700883865, -0.030249448493123055, -0.023809054866433144, -0.013208634220063686, 0.017718367278575897, 0.02869034744799137, 0.005158142652362585, -0.0037957520689815283, 0.0061052595265209675, -0.015197578817605972, -0.007671644911170006, -0.026781544089317322, 0.001431603217497468, -0.02229366824030876, 0.011532966047525406, 0.008465765975415707, -0.04531588777899742, -0.007664359174668789, -0.007482221350073814, 0.010986552573740482, -0.011175976134836674, -0.0037483961787074804, 0.024042190983891487, 0.0006174471927806735, -0.002786708530038595, 0.00925260130316019, -0.017849504947662354, -0.013747761957347393, -0.0004945041728205979, -0.007394795306026936, 0.004371307324618101, -0.00670267129316926, 0.0002488457830622792, 0.0026209631469100714, 0.00536942295730114, 0.0008036831277422607, 0.0037447535432875156, -0.014651165343821049, 0.02842807024717331, -0.003203804139047861, -0.015051868744194508, 0.04126514121890068, 0.0015609210822731256, -0.005755554884672165, -0.035465873777866364, -0.021244553849101067, 0.007270941510796547, -0.0035207238979637623, 0.004149099346250296, -0.029404329136013985, -0.0024479322601109743, 0.015183008275926113, 0.02287650853395462, 0.0016692930366843939, 0.020428577437996864, 0.024697886779904366, 0.013842473737895489, 0.010563992895185947, 0.009493023157119751, -0.03616528585553169, -0.014221320860087872, -0.01011229120194912, 0.010862698778510094, -0.004597158171236515, -0.0001738277787808329, 0.0033786564599722624, 0.003937819506973028, -0.00781735498458147, 0.016814962029457092, -0.02461046166718006, 0.005311138462275267, 0.014461742714047432, 0.0024187902454286814, -0.007198086474090815, 0.012545652687549591, 0.024523034691810608, 0.05589445307850838, 0.01095741055905819, 0.03144427388906479, 0.004189169500023127, -0.022993076592683792, 0.013529196381568909, 0.008123346604406834, 0.012217804789543152, 0.020428577437996864, -0.03590300679206848, 0.027204103767871857, -0.024115046486258507, -0.02258508838713169, 0.018126355484128, -0.02360505983233452, 0.018636340275406837, 0.007041447795927525, 0.01776207983493805, -0.024668745696544647, -0.006644387263804674, -0.02099684625864029, -0.011132263578474522, -0.018986046314239502, 0.006935807876288891, -0.013208634220063686, -0.012618507258594036, -0.0009070463129319251, -0.0370686873793602, -0.0028194934129714966, 0.004640871658921242, 0.00404710229486227, 0.02545558102428913, -0.0015417966060340405, 0.022963935509324074, -0.01658182591199875, 0.03301794454455376, 0.009959295392036438, -0.025615861639380455, 0.01696067303419113, 0.01959802955389023, 0.0041964552365243435, -0.028967197984457016, -0.017674652859568596, -0.019321179017424583, -0.017120953649282455, 0.008298198692500591, 0.02019544132053852, -0.013602051883935928, -0.012727790512144566, -0.01062956266105175, -0.01009772066026926, 0.003101806854829192, -0.044412482529878616, -0.009777157567441463, 0.001968909753486514, 0.019802022725343704, 0.01643611676990986, -0.002950632479041815, 0.006597031373530626, 0.01838863268494606, -0.002786708530038595, -0.0008269056561402977, -0.018986046314239502, -0.03441676124930382, -0.007482221350073814, -0.03511616960167885, -0.00433123717084527, -0.009565877728164196, -0.017164668068289757, 0.01798064447939396, 0.0023969337344169617, 0.009369169361889362, -0.006138044409453869, 0.0011911812471225858, -0.023517634719610214, 0.01766008324921131, -0.007402080576866865, -0.020734569057822227, 0.0109938383102417, -0.02273079939186573, 0.018665483221411705, -0.011132263578474522, 0.014920729212462902, -0.0018605377990752459, -0.0009635090245865285, 0.0016929709818214178, -0.02468331716954708, -0.0004849419347010553, 0.004218311980366707, 0.01713552512228489, -0.021637972444295883, -0.010454710572957993, 0.014578310772776604, 0.03287223353981972, -0.004852151498198509, -0.003835822455585003, 0.0017148274928331375, 0.005424064118415117, 0.011620392091572285, 0.02096770517528057, -0.011416397988796234, 0.0058794086799025536, 0.007001377642154694, -0.009289028123021126, -0.011430969461798668, -0.012997354380786419, 0.0006866595358587801, -0.026096705347299576, -0.020865708589553833, 0.0005036110524088144, 0.0009680624934844673, 0.011277973651885986, -0.0016319548012688756, 0.02408590354025364, 0.004509732127189636, 0.0025681431870907545, -0.019146326929330826, -0.009514879435300827, 0.003041701391339302, -0.014010041020810604, -0.019219182431697845, 0.03532016649842262, 8.95321209100075e-05, 0.022978506982326508, 0.02118626981973648, 0.016829533502459526, 0.023925622925162315, -0.026358984410762787, -0.012764218263328075, 0.031764835119247437, -0.018344920128583908, 0.011467396281659603, -0.0074457935988903046, -0.011838957667350769, -0.018476059660315514, 0.006232756190001965, -0.004666370805352926, 0.02890891395509243, -0.008290912955999374, 0.016887817531824112, -0.017383232712745667, -0.025062162429094315, 0.010862698778510094, 0.006793740205466747, -0.012414513155817986, 0.019627170637249947, -0.015095582231879234, 0.0026792471762746572, 0.014760448597371578, -0.013558338396251202, -0.007296440657228231, -0.007343796547502279, 0.02449389360845089, -0.005081645213067532, 0.02133198082447052, -0.008596904575824738, 0.01031628530472517, -0.01901518739759922, 0.015969842672348022, -0.03494131937623024, 0.01703352853655815, -0.001520850695669651, 0.025907281786203384, -0.011263402178883553, -0.006032404489815235, 0.0030489868950098753, 0.019219182431697845, -0.027495523914694786, 0.019816594198346138, -0.0005445920396596193, 0.011503824032843113, -0.01798064447939396, -0.0018022536532953382, -0.03196882829070091, -0.00461537204682827, -0.007194443605840206, 0.0010427390225231647, -0.02360505983233452, 0.0123562291264534, -0.0027411740738898516, -0.019612599164247513, -0.022089673206210136, -0.030570009723305702, 0.009201602078974247, 0.029287761077284813, 0.014884302392601967, -0.012108521535992622, -0.017776651307940483, 0.018344920128583908, -0.000596956699155271, 0.005413135979324579, 0.002018087077885866, -0.005719127133488655, 0.0003376379609107971, -0.008123346604406834, 0.0010655062505975366, 0.03476646542549133, -0.027743231505155563, 0.01647982932627201, 0.018286636099219322, -0.0081087751314044, 0.015037298202514648, 0.008079633116722107, -0.03511616960167885, 0.023663343861699104, -0.021856537088751793, -0.0047792959958314896, -0.0011146834585815668, 0.011576679535210133, -0.012822502292692661, 0.009398311376571655, -0.009208887815475464, -0.025149589404463768, 0.004083529580384493, -0.010476566851139069, -0.005591630935668945, 0.031123708933591843, 0.006728170905262232, 0.004192812368273735, 0.02879234589636326, -0.01158396527171135, -0.005566131789237261, 0.00477201072499156, 0.03284309059381485, 0.026388125494122505, 0.008203486911952496, 0.008247200399637222, 0.0066553158685564995, 0.03115285187959671, 0.0001039893104461953, 0.008808184415102005, 0.003256624098867178, -0.0030435228254646063, 0.013820617459714413, 0.0031710192561149597, 0.005118072498589754, 0.0034733680076897144, 0.030103737488389015, -0.0016483472427353263, -0.006567889358848333, -0.0027721375226974487, 0.018359491601586342, -0.022016819566488266, -0.0258927121758461, 0.020399434491991997, -0.00010148491128347814, 0.023197071626782417, -0.008502192795276642, -0.012531081214547157, 0.01942317560315132, -0.007737214211374521, 0.0031837690621614456, 0.004327594302594662, -0.022337380796670914, 0.008312770165503025, 0.012742361053824425, 0.009391025640070438, -0.027670376002788544, 0.0013796939747408032, -0.04700612649321556, 0.0001404737849952653, -0.01662554033100605, 0.00011827574053313583, 0.02412961795926094, -0.032347675412893295, -0.02019544132053852, -0.02067628502845764, -0.012232375331223011, -0.00016688376490492374, -0.00033126314519904554, -0.012108521535992622, -0.0002488457830622792, 0.025776144117116928, -0.018956903368234634, -0.003644577693194151, -0.0015700279036536813, -0.012953640893101692, -0.022118816152215004, -0.014935300685465336, 0.005580702796578407, 0.016100982204079628, 0.010571278631687164, -0.006782812066376209, 0.012472797185182571, 0.017849504947662354, 0.03631099313497543, 0.029841458424925804, 0.011489253491163254, -0.002504394855350256, -0.005391279235482216, 0.0026045707054436207, 0.007482221350073814, -0.006505962461233139, 0.007063304539769888, 0.007190800737589598, 0.01805349998176098, 0.009354597888886929, 0.0011611285153776407, -0.013121208176016808, -0.014126609079539776, -0.02729153074324131, 0.01544528640806675, 0.031764835119247437, 0.0007431223057210445, -0.015212150290608406, -0.009959295392036438, 0.009332741610705853, -0.011977382935583591, -0.00653874734416604, -0.02118626981973648, 0.011263402178883553, -0.005781054031103849, -0.024304470047354698, 0.02545558102428913, -0.003083593212068081, 0.009143318049609661, -0.0003756592341233045, 0.023488491773605347, 0.015488999895751476, -0.015474428422749043, 0.020574286580085754, 0.019058899953961372, -0.04068230092525482, -0.021463120356202126, 0.0022293669171631336, -0.02383819781243801, -0.014352459460496902, -0.004662727937102318, 0.015576425939798355, -0.018694624304771423, -0.0033677280880510807, -0.0051107872277498245, -0.021929392591118813, 0.036573272198438644, 0.007613360416144133, 0.00901217944920063, -0.0378846637904644, -0.00758421840146184, -0.0308905728161335, 0.005682699847966433, -0.01427231915295124, -0.0021018702536821365, -0.009638733230531216, -0.005770125892013311, -0.01643611676990986, 0.03424190729856491, 0.008021349087357521, 0.016115553677082062, 0.012640364468097687, -0.028078366070985794, 0.0008514942601323128, 0.009485737420618534, -0.005832052789628506, -0.018636340275406837, -0.034737322479486465, -0.022453948855400085, 0.005205498542636633, 0.026023849844932556, 0.005660843104124069, -0.03424190729856491, -0.04435420036315918, 0.003298515686765313, 0.010046721436083317, -0.009981152601540089, -0.0019525173120200634, 0.02019544132053852, -0.013762333430349827, 0.0021273696329444647, 0.0158095620572567, -0.00901217944920063, -0.006345681380480528, 0.02067628502845764, -0.008232628926634789, 0.00958044920116663, 0.05388364940881729, -0.029987169429659843, 0.002158333081752062, -0.00590126495808363, 0.0020618000999093056, -0.001956160180270672, -0.0010864520445466042, 0.011999239213764668, -0.008611476048827171, -0.0030380587559193373, -0.008174344897270203, -0.0502408929169178, 0.012276088818907738, -0.00421102624386549, 0.030977999791502953, 0.022861938923597336, -0.023750770837068558, 0.0012358051026239991, 0.0011975561501458287, -5.387295095715672e-05, -0.009063177742064, -0.00436766492202878, -0.011685961857438087, -0.004345808178186417, -0.015212150290608406, 0.052397407591342926, 0.021317409351468086, -0.004072601441293955, -0.0036955762188881636, 0.010928268544375896, 0.0034733680076897144, 0.006662601139396429, 0.058021821081638336, -0.019729167222976685, -0.02309507504105568, -0.0008004956762306392, 0.003901391988620162, 0.020035158842802048, -0.020282866433262825, -0.02169625647366047, 0.027189532294869423, -0.044703904539346695, -0.018709195777773857, -0.01633411832153797, 0.025295298546552658, -0.01259665098041296, 0.022235384210944176, 0.019262894988059998, -0.02461046166718006, 0.010432854294776917, -0.002327721333131194, -0.007249084766954184, 0.022089673206210136, -0.016727536916732788, -0.002433361252769828, 0.039079487323760986, -0.0356115847826004, 0.01889861933887005, 0.001418853527866304, 0.03409620001912117, 0.009646018967032433, 0.0009111444232985377, -0.007168944459408522, -0.005449563264846802, -0.0015135651919990778, -0.019408605992794037, 0.00565355783328414, -0.018068071454763412, -0.016727536916732788, 0.013354344293475151, 0.007533220108598471, -5.381603114074096e-05, -0.004731940571218729, -0.01640697382390499, 0.005981405731290579, 0.011569393798708916, -0.023226214572787285, 0.009762587025761604, -0.010410997085273266, -0.009485737420618534, -0.026198703795671463, 0.010134147480130196, -0.007008662912994623, 0.0018304850673303008, -0.017966073006391525, 0.0007413008715957403, 0.0035498659126460552, -0.009558591991662979, 0.0028777774423360825, -0.014556453563272953, -0.005398564971983433, -0.008225343190133572, 0.013660335913300514, 0.005562488920986652, -0.020938562229275703, -0.008604190312325954, -0.005354851484298706, -0.008560476824641228, 0.00902674999088049, -0.0037119686603546143, 2.419017801003065e-05, 0.0005382172530516982, 0.008086918853223324, -0.0013760512229055166, 0.01094284001737833, -0.0025790713261812925, -0.006444036029279232, 0.021929392591118813, -0.0013815152924507856, -0.012123093008995056, -0.029229477047920227, 0.056040164083242416, -0.018374063074588776, 0.000799585017375648, -0.007708072196692228, 0.004546159878373146, -0.02401304990053177, 0.011562108062207699, 0.028034651651978493, 0.014753162860870361, -0.007416651584208012, 0.0029597394168376923, -0.014906158670783043, -0.014461742714047432, -0.020690854638814926, -0.02051600255072117, 0.023182500153779984, 0.029812317341566086, 0.0012412691721692681, 0.010403712280094624, 0.017936931923031807, 7.313971582334489e-05, 0.023444779217243195, -0.020530574023723602, 0.0046008010394871235, -0.00978444330394268, 0.02121541276574135, -0.0005696360021829605, 0.02121541276574135, -0.008764471858739853, 0.01408289559185505, -0.009485737420618534, 0.03284309059381485, -0.01658182591199875, -0.00813063234090805, 0.003615435678511858, 0.002160154515877366, -0.006797383073717356, 0.01307749468833208, -0.008167059160768986, 0.011263402178883553, -0.009106890298426151, -0.005205498542636633, 0.025790713727474213, 0.004214669112116098, -0.01776207983493805, -0.009915582835674286, 0.008800898678600788, -0.009405597113072872, -0.0006233666790649295, 0.004480590112507343, -0.013543767854571342, -0.02570328861474991, 0.019219182431697845, -0.004582587163895369, 0.011613107286393642, -0.013980898074805737, 0.00230404338799417, -0.02104056067764759, -0.0038613216020166874, 0.004535231739282608, -0.010498423129320145, 0.0013924435479566455, -0.023590490221977234, -0.0007244531298056245, 0.018709195777773857, -0.021506832912564278, -0.008997607976198196, -0.010622276924550533, -0.010192432440817356, -0.003974247258156538, 0.009274457581341267, 0.027903512120246887, 0.01427231915295124, -0.015022726729512215, -0.017936931923031807, -0.00013762788148596883, -0.0002816306077875197, 0.007194443605840206, 0.02104056067764759, -0.0008997608092613518, -0.014578310772776604, 0.003817608579993248, -0.006331110373139381, -0.022381095215678215, 0.01435974519699812, 0.008152488619089127, -0.005638986825942993, -0.013521911576390266, 0.020457718521356583, -0.03785552456974983, -0.013784189708530903, 0.01011229120194912, -0.0011665927013382316, 0.009609591215848923, 0.0066953860223293304, 0.003364085452631116, -0.0047465115785598755, 0.002773958956822753, 0.01798064447939396, -0.0022876509465277195, -0.0030489868950098753, 0.008341912180185318, -0.007281869649887085, 0.007132516708225012, -0.0035152598284184933, -0.013704049400985241, 0.01070241816341877, 0.01544528640806675, -0.024173330515623093, 0.003054451197385788, -0.004677298944443464, -0.025863569229841232, -0.003644577693194151, 0.008174344897270203, -0.007332868408411741, 0.01908804289996624, 0.012144949287176132, -0.024464750662446022, -0.014993584714829922, -0.017456088215112686, 0.00825448613613844, 0.0009252600721083581, 0.007569647394120693, -0.00629832549020648, -0.005689985118806362, -0.0066261738538742065, 0.013711334206163883, -0.004972362425178289, -0.01802435889840126, -0.019000615924596786, -0.005934049841016531, -0.011052122339606285, -0.0008278163732029498, 0.0007959422655403614, -0.019991446286439896, -0.0011720567708835006, -0.0020053372718393803, 0.005037931725382805, 0.030803147703409195, -0.032784804701805115, 0.018038928508758545, -0.0061271158047020435, -0.0029961669351905584, 0.013988183811306953, 0.005420421250164509, 0.018592627719044685, -0.013653050176799297, -0.023707058280706406, -0.025863569229841232, 0.013565624132752419, 0.018257495015859604, -0.0021692614536732435, -0.001001757918857038, -0.014935300685465336, -0.006484106183052063, -0.01146011147648096, -0.009587734937667847, 0.004648156929761171, -0.01059313490986824, -0.008531334809958935, 0.012436369433999062, -0.005886693950742483, 0.0017967894673347473, -0.0034096199087798595, 0.002225724048912525, -0.01817006804049015, 0.01706266961991787, 0.04056573286652565, 0.015459857881069183, -0.0035498659126460552, 0.0022621515672653913, -0.003915962763130665, 0.006881166715174913, -0.01850520260632038, 0.015692993998527527, -0.0270292516797781, 0.004298452287912369, 0.007296440657228231, -0.01655268482863903, 0.003395048901438713, 0.00417459849268198, 0.0094711659476161, 0.019073471426963806, 0.002475252840667963, -0.022075103595852852, 0.006017833482474089, -0.012815216556191444, 0.006750027183443308, -0.0011920919641852379, 0.006476820446550846, -0.011256116442382336, 0.00561713008210063, 0.009318170137703419, 0.009624161757528782, 0.003023487748578191, -0.012443655170500278, 0.02007887326180935, 0.008298198692500591, -0.02427532710134983, -0.014316031709313393, -0.015940701588988304, 0.00168295344337821, -0.004309380427002907, -0.008276342414319515, -0.010950125753879547, -0.022672515362501144, -0.02169625647366047, -0.00601419061422348, -0.010250716470181942, 0.02118626981973648, -0.02596556581556797, -0.010469281114637852, 0.017004385590553284, 0.0006825614254921675, -0.02500387839972973, 0.01831577904522419, 0.0146730225533247, -0.01379147544503212, 0.03019116446375847, 0.0008027724106796086, 0.013354344293475151, 0.0057009137235581875, -0.0002964292943943292, -0.010228859260678291, 0.004695512820035219, -0.0008382892701774836, -0.010709702968597412, 0.022089673206210136, -0.001587331062182784, -0.01618840917944908, 0.026358984410762787, 0.003620899748057127, -0.024100475013256073, -0.002600928070023656, 0.013398057781159878, 0.019991446286439896, 0.011977382935583591, -0.012458226643502712, 0.0053366380743682384, -0.025732429698109627, 0.007340153679251671, 0.0009589556138962507, -0.008618760854005814, 0.001598259317688644, -0.012851644307374954, 0.0068338108249008656, 0.005744626745581627, -0.0039706043899059296, -0.03033687360584736, -3.520382597343996e-05, -0.005715484730899334, 1.1902990991075058e-05, 0.004670013673603535, 0.009901011362671852, 0.018082642927765846, 0.005631701089441776, -0.011117692105472088, -0.011365399695932865, 0.01665468141436577, -0.024362754076719284, -0.014702164568006992, -0.0053074960596859455, -0.00842205248773098, 0.004480590112507343, 0.007955779321491718, 0.02217710018157959, -0.007212657481431961, 0.01758722774684429, -0.0029633822850883007, 0.008079633116722107, 0.014447171241044998, 0.006207256577908993, 0.03045344166457653, -0.005467777140438557, 0.001175699639134109, -0.002640998223796487, 0.011328971944749355, -0.03467904031276703, 0.030628293752670288, 0.013361630029976368, -0.02596556581556797, 0.005926764570176601, -0.0006005994509905577, -0.029331473633646965, 0.013521911576390266, -0.020807424560189247, 0.0023240784648805857, 0.007110660430043936, -0.0009799014078453183, 0.0017184702446684241, -0.0019397677388042212, -0.020647142082452774, 0.01423589140176773, 0.0035516873467713594, -0.013281489722430706, -0.005624415818601847, -0.018111784011125565, -0.0009635090245865285, 0.023182500153779984, 0.010330856777727604, 0.01009772066026926, -0.0030526297632604837, -0.013915329240262508, -0.01127068791538477, -0.002349577844142914, -0.007547791115939617, 0.006010547745972872, 0.0033440501429140568, -0.005598916206508875, 0.006407608278095722, 0.009536735713481903, -0.019394034519791603, 0.0009534914279356599, -0.01316492073237896, 0.011423683725297451, -0.01846148818731308, 0.0012849823106080294, 0.019845735281705856, 0.011540251784026623, 0.010971982032060623, 0.00489222165197134, 0.0036664342042058706, 0.00601419061422348, 0.019554315134882927, -0.012217804789543152, 0.010899126529693604, 0.005668128840625286, 0.019554315134882927, -0.010884555988013744, -0.014476313255727291, -0.0019179112277925014, 0.004425948951393366, -0.009361883625388145, -0.010971982032060623, 0.00018156862643081695, 0.022745370864868164, 0.0007982189417816699, -0.01986030675470829, -0.01717923767864704, 0.004342165309935808, -0.01263307873159647, -0.006841096095740795, -0.0008432980976067483, 0.021506832912564278, 0.013798760250210762, 0.02405676245689392, 0.013580195605754852, 0.0017184702446684241, 0.020865708589553833, 0.014461742714047432, 0.00657517509534955, 0.009099605493247509, 0.011948240920901299, 0.009223459288477898, -0.003065379336476326, -0.01993316225707531, 0.0018150033429265022, -0.01850520260632038, -0.023182500153779984, -0.0062837544828653336, -0.011139548383653164, 0.007766356226056814, -0.011066693812608719, 0.006673529278486967, 0.015765849500894547, 0.01046199630945921, 0.0015354218194261193, 0.027408098801970482, -0.01710638403892517, 0.0012931784149259329, -0.011365399695932865, -0.01033814251422882, -0.01234165858477354, -0.01068056095391512, -0.007351082284003496, 0.011277973651885986, 0.011962811462581158, -0.005715484730899334, -0.00697952089831233, -0.015328718349337578, 0.0439753532409668, -0.023896481841802597, -0.014833303168416023, -0.0019306608010083437, 0.008655188605189323, 0.008538620546460152, 0.03298880159854889, 0.011081264354288578, 0.0005937692476436496, -0.01204295177012682, -0.017266664654016495, -0.006192685570567846, -0.002917847828939557, 0.0047465115785598755, 0.005118072498589754, -0.004192812368273735, -0.005853909533470869, 0.024799885228276253, 0.011226974427700043, 0.001240358455106616, 0.012771503068506718, -0.007671644911170006, 0.013368915766477585, 0.01868005469441414, -0.01578042097389698, -0.018636340275406837, 0.0016009913524612784, 0.03147341310977936, 0.035291023552417755, 0.0008159774006344378, -0.011277973651885986, 0.0029196690302342176, -0.03196882829070091, 0.0019780166912823915, -0.026562979444861412, -0.007795498240739107, 0.004557088017463684, -0.01986030675470829, 0.003615435678511858, -0.011372685432434082, 0.023065932095050812, 0.0005227355286478996, 0.017601797357201576, -0.005755554884672165, 0.005551560316234827, -0.02427532710134983, 0.016057269647717476, 0.0031418772414326668, -0.0042073833756148815, 0.01713552512228489, -0.01210123673081398, 0.0034915818832814693, -0.011103120632469654, -0.011321686208248138, -0.010571278631687164, 0.001914268359541893, 0.02956460975110531, -0.014374315738677979, 0.008400196209549904, -0.008553192019462585, -0.011022980324923992, 0.006691743154078722, 0.026315271854400635, 0.03129856288433075, 0.006163543555885553, 0.04196455329656601, 0.005777411628514528, 0.004837580490857363, -0.010345427319407463, -0.012210519053041935, -0.017237521708011627, 0.014745877124369144, 0.01395904179662466, 0.00733651127666235, -0.006607959978282452, -0.02096770517528057, -0.001240358455106616, 0.0005436813808046281, 0.008575048297643661, -0.017266664654016495, 0.003571722423657775, 0.0032402316574007273, 0.00433123717084527, -0.012684077024459839, -0.0045607308857142925, 0.001723934430629015, 0.018038928508758545, 0.014709449373185635, 0.004036174155771732, 0.00035812848364003, -0.01167867612093687, 0.003799394704401493, 0.00866247434169054, -0.015882417559623718, -0.018403204157948494, -0.013776903972029686, -0.001908804289996624, -0.008749900385737419, 0.00043439868022687733, 0.0024552177637815475, -0.010986552573740482, -0.012997354380786419, -0.008917467668652534, 0.008086918853223324, 0.020384864881634712, -0.009383739903569221, -0.008567762561142445, 0.008232628926634789, 0.015955273061990738, -0.011846243403851986, 0.005449563264846802, -0.010622276924550533, 0.006844738963991404, -0.02507673390209675, 0.010156004689633846, 0.0021674400195479393, -0.0022566874977201223, 0.026417268440127373, 0.01758722774684429, 0.026752401143312454, -0.005201856140047312, 0.008567762561142445, -0.0018450560746714473, -0.002786708530038595, -0.0006065189372748137, -0.003471546806395054, -0.015576425939798355, 0.034475043416023254, 0.009310885332524776, 0.003651863196864724, 0.024187901988625526, -0.005482348147779703, 0.00047629038454033434, 0.026344412937760353, -0.005373065359890461, 0.02379448339343071, 0.011940955184400082, 0.016902389004826546, -0.002677425742149353, 0.005420421250164509, 0.016727536916732788, -0.023736199364066124, -0.016829533502459526, 0.015095582231879234, -0.004527946002781391, 0.008043205365538597, 0.02133198082447052, -0.009959295392036438, 0.003919605631381273, -0.010265287011861801, -0.01351462583988905, 0.02611127682030201, -0.01210123673081398, 0.005322067067027092, -0.012516510672867298, 0.011445540003478527, 0.0015663851518183947, 0.005376708228141069, 0.02229366824030876, -0.0013405343051999807, 0.0014762269565835595, -0.021783681586384773, -0.00035516874049790204, 0.014177607372403145, -0.011882671155035496, 0.004972362425178289, -0.019539743661880493, -0.014053753577172756, -0.006451321300119162, 0.018228352069854736, -0.008159774355590343, -0.005027003586292267, 0.015590996481478214, 0.006393037270754576, 0.011875385418534279, -0.02456674911081791, -9.465474431635812e-05, -0.0012631256831809878, -0.007230871357023716, 0.013623908162117004, -0.00670267129316926, -0.00813063234090805, 0.003487939015030861, 0.00645496416836977, -0.031094567850232124, 0.017077241092920303, 0.005934049841016531, -0.0012849823106080294, -0.011838957667350769, -0.004513374995440245, 0.019991446286439896, -0.016596397385001183, -0.01491344440728426, -0.00460808677598834, 0.03272652253508568, 0.00661888811737299, -0.0025317156687378883, 0.00026022939709946513, 0.009478451684117317, 0.003673719707876444, 0.004276596009731293, 0.0017621833831071854, -0.0301620215177536, -0.002617320278659463, 0.004968719556927681, 0.018519772216677666, 0.01543071586638689, 0.0021729040890932083, 0.0005974119994789362, -0.022002248093485832, -0.015372431837022305, -0.02273079939186573, 0.01802435889840126, 0.021273696795105934, 0.005107144359499216, -0.015226720832288265, -0.0038066802080720663, 0.017237521708011627, -0.00813063234090805, -0.016975244507193565, -0.017091812565922737, 0.016640109941363335, -0.01805349998176098, 0.014694878831505775, -0.013973613269627094, -0.000775451713707298, 0.005143571645021439, -0.009638733230531216, -0.004265667404979467, -0.027714090421795845, -0.024727029725909233, 0.001497172866947949, 0.016596397385001183, -0.0076206461526453495, 0.001055488595739007, -0.016246693208813667, 0.02968117780983448, -0.0016738465055823326, 0.03494131937623024, -0.01827206462621689, 0.00926717184484005, -0.008771756663918495, 0.0005536989774554968, 0.022497663274407387, 0.008924752473831177, -0.018403204157948494, 0.0037702526897192, 0.012654935009777546, 0.019991446286439896, -0.007970350794494152, 0.018665483221411705, 0.02343020774424076, -0.004597158171236515, -0.02647555246949196, -0.0021765469573438168, -0.010913698002696037, -0.031502556055784225, 0.011409112252295017, 0.018038928508758545, 0.0047792959958314896, 0.013529196381568909, -0.010877270251512527, -0.01230523083359003, -0.014993584714829922, -0.007627931423485279, 0.0021820110268890858, 0.03199797123670578, -0.010644134134054184, -0.013019210658967495, 0.0026792471762746572, -0.009085034020245075, 0.0030143808107823133, -0.011343543417751789, 0.021463120356202126, 0.0029743104241788387, 3.50330701621715e-05, 0.0293460451066494, 0.0011046658037230372, -0.0037556816823780537, 0.0023058648221194744, 0.02482902631163597, -0.02111341618001461, 0.0017649154178798199, 0.008997607976198196, 0.01706266961991787, -0.019976874813437462, 0.020647142082452774, 0.011401827447116375, -0.015911558642983437, 0.005872122943401337, -0.026533836498856544, 0.00923074409365654, -0.02273079939186573, -0.0030489868950098753, 0.00934002734720707, -0.013849759474396706, -0.01563470996916294, -0.003996103536337614, 0.002344113541767001, -0.03045344166457653, 0.009842727333307266, 0.01768922433257103, -0.02787437103688717, -0.007678930182009935, -9.306103493145201e-06, 0.015692993998527527, 0.001998051768168807, 0.016013557091355324, -0.008560476824641228, 0.012611222453415394, -0.01809721253812313, -0.0146730225533247, -0.021390264853835106, 0.006192685570567846, 0.003948747646063566, 0.0074749356135725975, -0.03004545345902443, 0.0017430589068681002, -0.0074749356135725975, -0.0012285195989534259, -0.0024552177637815475, -0.012997354380786419, -0.01629040576517582, 0.010709702968597412, 0.01578042097389698, -0.012152235023677349, 0.020035158842802048, 0.01677124947309494, -0.015765849500894547, -0.0030708436388522387, 0.017849504947662354, 0.015095582231879234, 0.012480082921683788, -0.006003262475132942, 0.003054451197385788, -0.0356115847826004, 0.00934002734720707, -0.0026100347749888897, 0.012523796409368515, 0.009660589508712292, 0.0010992017341777682, 0.0010518458439037204, -0.00417459849268198, 0.019612599164247513, 0.0019798381254076958, 0.0013378022704273462, -0.013259632512927055, 0.012093950994312763, -0.013434485532343388, 0.008174344897270203, -0.0011165047762915492, 0.00974801555275917, 0.004320309031754732, 0.024377325549721718, -0.0031637337524443865, -0.010010294616222382, 0.021929392591118813, -0.004731940571218729, 0.016946101561188698, 0.0029688463546335697, -0.006924879737198353, -0.005598916206508875, 0.014053753577172756, 0.010877270251512527, 0.004200098104774952, 0.011387255974113941, -0.013813331723213196, 0.0022293669171631336, 3.631372601375915e-05, 0.01535786036401987, 0.0057519120164215565, -0.013893472030758858, -0.004812080878764391, -0.008065062575042248, 0.010614992119371891, -0.027393527328968048, 0.002642819657921791, 0.009879155084490776, 0.01408289559185505, 0.028005510568618774, 0.01754351332783699, 0.008320054970681667, -0.012888072058558464, 0.014767734333872795, -0.021375693380832672, 0.01242908462882042, 0.0053293523378670216, -0.016800392419099808, 0.0004642237618099898, 0.012880786322057247, 0.023269927129149437, -0.014512741006910801, -0.0043931640684604645, 0.003752039046958089, -0.01231980137526989, -0.010134147480130196, 0.006877523846924305, 0.00689573772251606, -0.020020589232444763, 0.03875892609357834, -0.01231980137526989, -0.020064301788806915, -0.016946101561188698, -0.0045898729003965855, -0.01838863268494606, -0.01171510387212038, 0.008808184415102005, -0.013536482118070126, 0.024799885228276253, 0.020836565643548965, 0.012217804789543152, 0.014425314962863922, -0.0014980834675952792, 0.008116060867905617, 0.018286636099219322, 0.00505614560097456, 0.01776207983493805, 0.017295807600021362, -0.01993316225707531, 0.014112037606537342, 0.004691869951784611, 0.0034751894418150187, 0.0016765785403549671, 0.005926764570176601, -0.009551307186484337, 0.012144949287176132, -0.029477182775735855, 0.007376581430435181, 0.0059085506945848465, 0.021084273234009743, 0.016814962029457092, 0.011569393798708916, -0.017893219366669655, -0.0074530793353915215, 0.00605790363624692, -0.001103755203075707, 0.008677045814692974, 0.008451194502413273, -0.013062924146652222, 0.0013268740149214864, -0.005963191855698824, 0.004178241360932589, 0.014388887211680412, 0.011613107286393642, 0.0023841839283704758, -0.0051508573815226555, 0.008873754180967808, -0.006724528037011623, 0.010199717245995998, -0.00012510591477621347, 0.016275834292173386, 0.022045960649847984, 0.015197578817605972, 0.00757693313062191, -0.003227482084184885, -0.006954021751880646, 0.0051617855206131935, 0.0032529812306165695, -0.0055442750453948975, 0.029287761077284813, 0.02526615746319294, -0.028879771009087563, 0.006349324248731136, -0.003500688821077347, -0.004710083827376366, 0.01033814251422882, 0.003679183777421713, 0.022235384210944176, -0.005606201943010092, 0.002742995508015156, -0.006229113321751356, 0.011634963564574718, -0.004724654834717512, 0.0030271303839981556, -0.004899507388472557, -0.003495224518701434, -0.011372685432434082, -0.00729279825463891, 0.01119783241301775, 0.03287223353981972, 0.010818986222147942, 0.0316191241145134, 0.01602812670171261, 0.006717242766171694, 0.018228352069854736, -0.00641853641718626, 0.0325225293636322, 0.026898112148046494, -0.018374063074588776, 0.00461537204682827, -0.010345427319407463, 0.015503570437431335, -0.026431839913129807, 0.015590996481478214, 0.013208634220063686, 0.004906792659312487, -0.0029123835265636444, -0.0047683678567409515, -0.017747508361935616, 0.01066599041223526, -0.0201225858181715, -0.02140483632683754, 0.004316666163504124, 0.0009161531925201416, 0.003699219087138772, -0.008473050780594349, 0.01399546954780817, 0.007321940269321203, -0.008545906282961369, 0.00825448613613844, 0.012625792995095253, 0.013011924922466278, 0.017776651307940483, 0.004498803988099098, 0.00034560650237835944, 0.006382109131664038, 0.015255862846970558, -0.0131503501906991, 0.005518775898963213, -0.00713615957647562, -0.013419914059340954, 0.006815596949309111, -0.010746130719780922, -0.01259665098041296, -0.028078366070985794, -0.012443655170500278, -0.04814266785979271, -0.012611222453415394, -0.00866247434169054, 0.02685439959168434, -0.00017223406757693738, -0.00573005573824048, -0.00658246036618948, -0.019262894988059998, 0.018811194226145744, 0.004214669112116098, 0.016421545296907425, -0.034737322479486465, -0.02152140438556671, 0.0053366380743682384, -0.030482584610581398, 0.014716735109686852, 0.02463960275053978, -0.0029907028656452894, -0.019991446286439896, -0.0013523732777684927, -0.010789844207465649, 0.003835822455585003, -0.0008360125357285142, 0.0022931150160729885, 0.023634202778339386, -0.01831577904522419, -0.0014871552120894194, 0.0173978041857481, -0.02408590354025364, -0.018884047865867615, -0.011358113959431648, -0.016159266233444214, -0.004710083827376366, 0.023707058280706406, 0.02463960275053978, -0.006811954081058502, -0.01640697382390499, -0.01742694526910782, -0.014884302392601967, -0.006629816256463528, -0.012093950994312763, -0.002451574895530939, 0.007912066765129566, 0.0027375314384698868, 0.013434485532343388, -0.0012722326209768653, 0.0016720250714570284, -0.0010645955335348845, 0.025572149083018303, 0.0016474365256726742, -0.008677045814692974, -0.01875290833413601, -0.007165301591157913, 0.016173837706446648, -0.0031582696828991175, -0.025251585990190506, 0.0031509841792285442, -0.02092399261891842, 0.0064622494392097, -0.013762333430349827, 0.029666606336832047, 0.007606075145304203, -0.005449563264846802, -0.001396086299791932, 0.0008360125357285142, -0.010585850104689598, -0.015226720832288265, 0.03590300679206848, 0.04094457998871803, 0.03969147056341171, -0.03680640831589699, -0.025295298546552658, -0.020792853087186813, 0.0014652987010776997, -0.013674907386302948, -0.0051727136597037315, 0.004939577542245388, 0.002750281011685729, 0.004844865761697292, -0.004568016156554222, 0.010309000499546528, 0.008815470151603222, 0.0030435228254646063, -0.007052375935018063, 0.0009999366011470556, -0.005023360718041658, 0.005034289322793484, 0.008210772648453712, -0.014112037606537342, -0.0017967894673347473, 0.031502556055784225, 0.017120953649282455, -0.01095741055905819, 0.008465765975415707, 0.027830658480525017, -0.009733445011079311, -0.02791808359324932, 0.005405850242823362, 0.03371735289692879, 0.003708325792104006, -0.008247200399637222, -0.0036955762188881636, -0.01860719919204712, 0.008028634823858738, 0.026023849844932556, -0.00901217944920063, -0.02077828161418438, 0.007150730583816767, 0.0006953111151233315, 0.03829265385866165, 0.008167059160768986, 0.015416144393384457, 0.001067327568307519, 0.013762333430349827, 0.001759451231919229, 0.017222952097654343, -0.01720838062465191, -0.0003925069759134203, -0.014753162860870361, 0.010345427319407463, -0.00048812932800501585, -0.0030489868950098753, -0.011066693812608719, 0.0010746130719780922, 0.012458226643502712, 0.0008014063932932913, -0.002100049052387476, -0.006837453693151474, 0.000835557235404849, -0.008283628150820732, -0.029666606336832047, 0.003948747646063566, 0.00016073661390691996, -0.011168690398335457, 0.012611222453415394, -0.005660843104124069, -0.007442151196300983, 0.00404710229486227, -0.020093442872166634, -0.02173996903002262, -0.010265287011861801, 0.0024370038881897926, 0.017018957063555717, 0.0044040922075510025, -0.011525681242346764, -0.0251204464584589, 0.013689477927982807, -0.006327467504888773, 0.034300193190574646, 0.01665468141436577, -0.012727790512144566, -0.005041574593633413, 0.04135257005691528, 0.001604634104296565, 0.00899032223969698, 0.006742741912603378, -0.013602051883935928, -0.01633411832153797, 0.0016747572226449847, 0.006662601139396429, -0.027888942509889603, 0.016669252887368202, 0.027349814772605896, 0.006986806634813547, -0.018927762284874916, 0.01831577904522419, 0.015678422525525093, -0.0019652671180665493, -0.021273696795105934, -0.013245061971247196, 0.004007031675428152, 0.0019306608010083437, 0.002928775968030095, -0.011846243403851986, 0.015722136944532394, 0.005464134272187948, 0.008137917146086693, -0.01242908462882042, 0.0008387446287088096, -0.012123093008995056, 0.02275994047522545, 0.00412724306806922, -0.00521278427913785, -0.01167867612093687, 0.005726412869989872, -0.02717496082186699, 0.007598789408802986, -0.00930359959602356, 0.0270292516797781, 0.003864964470267296, -0.0030034524388611317, 0.03158998116850853, 0.0049250065349042416, -0.030424300581216812, -0.009238029830157757, -0.00858961883932352, -0.011846243403851986, 0.01544528640806675, -0.0012695005862042308, 0.007525934372097254, 0.02500387839972973, 0.001223055412992835, -0.005890336818993092, -0.01865091174840927, -0.006513248197734356, -0.010578564368188381, -0.007606075145304203, -0.011205118149518967, 0.0016210265457630157, -0.015255862846970558, -0.007001377642154694, 0.005704556126147509, 0.030249448493123055, 0.012203233316540718, -0.01633411832153797, 0.01175153162330389, 0.007482221350073814, 0.005810196045786142, -0.007613360416144133, -0.000560529122594744, 0.016173837706446648, -0.020719997584819794, 0.001449816976673901, -0.032901372760534286, 0.021025989204645157, -0.00701594864949584, 0.004058030433952808, -0.003981532528996468, -0.0021492261439561844, 0.04187712445855141, 0.025368154048919678, -0.00781735498458147, -0.008261770941317081, 0.014374315738677979, 0.01094284001737833, 0.015212150290608406, 0.015576425939798355, -0.0006693564355373383, 0.004812080878764391, 0.012509224936366081, 0.0009015821851789951, -0.008283628150820732, 0.027539236471056938, 0.02625698782503605, -0.0038868209812790155, -0.0018760195234790444, -0.0020854780450463295, 0.012698648497462273, -0.010986552573740482, 0.017456088215112686, -0.014024611562490463, 0.005569774191826582, -0.018155496567487717, 0.01566385105252266, 0.006720885168761015, -0.008866468444466591, -0.006254612468183041, 0.015022726729512215, 0.023692486807703972, 0.015343289822340012, -0.009769871830940247, -0.0030708436388522387, -0.0009234386961907148, -0.012567508965730667, -0.0018049856880679727, -0.03622356802225113, -0.004680941812694073, -0.001651989994570613, -0.0030708436388522387, 0.00206362153403461, 0.00047446900862269104, -0.012013809755444527, 0.032784804701805115, -0.02493102476000786, -0.015255862846970558, -0.018913190811872482, 0.005143571645021439, -0.014891587197780609, -0.0009147871751338243, -0.01118326187133789, -0.0034642613027244806, 0.003114556660875678, 0.00230404338799417, 0.003686469281092286, 0.02567414566874504, -0.0014152107760310173, -0.011693247593939304, 0.00726365577429533, -0.01346362754702568, 0.012370800599455833, -0.004440519958734512, 0.005285639315843582, 0.017514372244477272, 0.007482221350073814, -0.04391707107424736, -0.0006866595358587801, 0.021681685000658035, -0.03313451260328293, -0.007933923043310642, 0.035873863846063614, -0.008210772648453712, -0.02114255726337433, 0.0027903513982892036, 0.015139294788241386, -0.008888325653970242, -0.007241799496114254, -0.012917214073240757, -0.019408605992794037, -0.006236398592591286, 0.019904019311070442, -0.017747508361935616, -0.013973613269627094, 0.05149400234222412, -0.011926383711397648, 0.014665736816823483, 0.020603429526090622, 0.005657200701534748, -0.013988183811306953, 0.038671500980854034, 0.009077748283743858, 0.001288625062443316, -0.013361630029976368, -0.005052502732723951, 0.0003383209987077862, 0.02070542611181736, -0.016086410731077194, 0.0066771721467375755, -0.0038795354776084423, -0.0009735266212373972, 0.011394541710615158, -0.0062618982046842575, -0.005883051548153162, -0.02265794388949871, -0.008888325653970242, -0.018184639513492584, 0.011962811462581158, 0.0008560477290302515, 0.017936931923031807, -0.02106970176100731, -0.021710827946662903, -0.0063238246366381645, -0.015969842672348022, 0.0009880976285785437, -0.016873247921466827, 0.03747667744755745, -0.006717242766171694, -0.0063019683584570885, -0.005478705279529095, 0.016465257853269577, 0.010345427319407463, -0.015037298202514648, -0.010840842500329018, -0.0029142049606889486, 0.004072601441293955, -0.02331363968551159, 0.005595273803919554, -0.003555330215021968, 0.005005147308111191, 0.0005491455085575581, -0.006764598190784454, 0.019190039485692978, -0.014753162860870361, 0.01130711566656828, -0.019146326929330826, -0.02188568003475666, 0.015124724246561527, 0.01696067303419113, -0.0025098591577261686, -0.0047173695638775826, -0.017368661239743233, -0.0005395832704380155, -0.015722136944532394, -0.0013514625607058406, 0.010367284528911114, 0.04111943393945694, -0.006345681380480528, -0.0212591253221035, 0.0009525807690806687, 0.03604871779680252, -0.002868670504540205, 0.04502446576952934, -0.002617320278659463, -0.003937819506973028, -0.008232628926634789, 0.003398691536858678, -0.009019464254379272, 0.014906158670783043, 0.0017521657282486558, -0.025324441492557526, 0.0094711659476161, -0.002100049052387476, -0.01256022322922945, 4.8778783821035177e-05, -0.003322193631902337, 8.615972546976991e-06, 0.023619631305336952, -0.0068738809786736965, -0.014184893108904362, -0.02152140438556671, 0.01761636883020401, -0.0010390962706878781, -0.015183008275926113, -0.009376454167068005, -0.029069194570183754, 0.02004973031580448, 0.003937819506973028, 0.036427561193704605, 0.004542517010122538, -0.01677124947309494, 0.0004544338444247842, -0.007001377642154694, 0.007802783977240324, -0.0035771867260336876, 0.003702861722558737, 0.016319548711180687, 0.011576679535210133, -0.00858961883932352, 0.0032730165403336287, 0.011926383711397648, -0.0045898729003965855, -0.0317065492272377, -0.009019464254379272, -0.011933669447898865, 0.015095582231879234, 0.00742029445245862, 0.00790478102862835, 0.014075609855353832, 0.004557088017463684, -0.018286636099219322, -0.009099605493247509, 0.008378339000046253, 0.010578564368188381, -0.004793867468833923, 0.0011438254732638597, 0.02654840797185898, 0.015678422525525093, 0.011175976134836674, -0.012778788805007935, -0.027276959270238876, 0.007132516708225012, 0.008932038210332394, 0.010294429026544094, 0.011343543417751789, 0.006866595707833767, -0.006349324248731136, 0.00019761951989494264, 0.026679547503590584, 0.019117183983325958, 0.026621263474225998, -0.005216427147388458, 0.01927746646106243, 0.0016374189872294664, -0.012123093008995056, 0.0026045707054436207, 0.008043205365538597, 6.500042945845053e-05, -0.012472797185182571, 0.015882417559623718, -0.0178057923913002, -0.003478832310065627, 0.0150810107588768, -0.008524050004780293, -0.0029907028656452894, 0.006294682621955872, -0.013500054366886616, -0.0072272284887731075, 0.00982087105512619, 0.007992207072675228, 0.004378593061119318, 0.017120953649282455, 0.0002161748125217855, -0.012137663550674915, -0.015940701588988304, -0.014133893884718418, 0.01720838062465191, 0.022934792563319206, -0.015343289822340012, -0.00282677891664207, 0.014796876348555088, 0.012086665257811546, -0.004181884229183197, -0.005584345199167728, -0.004611729644238949, -0.0002647828368935734, 0.0045607308857142925, -0.0055333469063043594, -0.019831165671348572, -0.015969842672348022, 0.0009972045663744211, -0.0026519265957176685, 2.1002766516176052e-05, 0.020982276648283005, -0.015692993998527527, 0.013966327533125877, 0.02022458240389824, 0.017864076420664787, 0.016130125150084496, 0.0019160897936671972, -0.0001950012956513092, 0.006527819205075502, -0.02162340097129345, 0.007063304539769888, 0.006524176336824894, 0.0021911179646849632, 0.0025754286907613277, 0.01857805624604225, 0.02074914053082466, -0.017368661239743233, -0.013776903972029686, 0.004972362425178289, 0.01002486515790224, -0.021229984238743782, 0.006356609519571066, 0.002331363968551159, -0.028865201398730278, 0.003948747646063566, 0.00813063234090805, 0.007984921336174011, 0.009995723143219948, -0.007343796547502279, -0.01037457026541233, 0.024668745696544647, 0.00814520288258791, -0.0027703160885721445, 0.00280492240563035, 0.010636848397552967, -0.002517144661396742, -0.009165174327790737, -0.014257747679948807, 0.015226720832288265, -0.010928268544375896, 0.0076206461526453495, -0.011030266061425209, 0.01636326126754284, 0.00024383699928876013, 0.000924349413253367, -0.006108902394771576, 0.007467650342732668, 0.0069030229933559895, 0.0041964552365243435, -0.006090688519179821, -0.015328718349337578, 0.003382299095392227, 0.002131012501195073, -0.004298452287912369, 0.009667875245213509, -0.01382790319621563, 0.020443148910999298, -0.013456341810524464, 0.00866247434169054, -0.008261770941317081, 0.01068056095391512, -0.010563992895185947, 8.640162559458986e-05, -0.007482221350073814, 0.014206749387085438, 0.013776903972029686, 0.005114429630339146, -0.008436623960733414, -0.00034128071274608374, 0.018884047865867615, 0.01544528640806675, 0.01202838122844696, -0.004229240119457245, 0.02184196561574936, 0.007802783977240324, 0.012997354380786419, 0.01351462583988905, -0.009274457581341267, -0.009281743317842484, 0.003418726846575737, -0.00893932394683361, -0.006374823395162821, -0.024625033140182495, -0.014447171241044998, 0.02350306324660778, 0.0036172568798065186, 0.0027684946544468403, -0.03287223353981972, -0.00645496416836977, 0.009092319756746292, -0.019889449700713158, -0.027714090421795845, -0.015095582231879234], "507eee74-04d1-421e-8f63-8a7ad4dede7a": [-0.035232096910476685, -0.0010327694471925497, -0.007743244059383869, 0.026983419433236122, -0.07531635463237762, -0.0038648827467113733, -0.004417490214109421, 0.015055184252560139, 0.0012256766203790903, 0.029112979769706726, 0.011288018897175789, 0.010944323614239693, 0.02870863303542137, -0.01225845143198967, 0.006115747615695, 0.010405194945633411, 0.0008878784719854593, 0.02412603422999382, 0.013437796384096146, -0.03946426138281822, 0.027172114700078964, -0.02148430049419403, -0.04318425431847572, 0.00022639216331299394, 0.006621181033551693, 0.00016616132052149624, -0.013653448782861233, 0.012797581031918526, -0.051352061331272125, -0.008834980428218842, 0.013700622133910656, -0.011719321832060814, 0.0017108930042013526, 0.02242777682840824, 0.02378907799720764, -0.044289469718933105, -0.009428022429347038, 0.0034942314960062504, -0.03817035257816315, -0.029086023569107056, -0.0400303453207016, 0.01909865438938141, -0.014354316517710686, 0.017723875120282173, -0.024314729496836662, -0.0027815699577331543, -0.005515966098755598, -0.008140851743519306, 0.011699104681611061, 0.018909959122538567, 0.030676454305648804, -0.013525404967367649, -0.007190636359155178, -0.0071434625424444675, 0.07353723049163818, -0.01959734782576561, 0.0009409490157850087, 0.04118947312235832, -0.011719321832060814, -0.06350942701101303, -0.015311270952224731, -0.016295181587338448, 0.010189542546868324, -0.01424649078398943, 0.010587151162326336, 0.02957123890519142, 0.002202006056904793, 0.0058731394819915295, 0.001569371554069221, 0.006075312849134207, 0.018087785691022873, 0.047793809324502945, -0.060166824609041214, 0.01740039698779583, 0.018465176224708557, -0.007938678376376629, -0.029166892170906067, 0.017858656123280525, 0.04264512285590172, -0.00820150412619114, 0.014502576552331448, -0.010358020663261414, 0.04639207199215889, 0.01029736828058958, 0.03474688157439232, 0.04005730524659157, 0.016281703487038612, -0.04884510859847069, 0.006048356182873249, -0.03463905304670334, -6.517988367704675e-05, 0.020918214693665504, -0.018923437222838402, -0.015499966219067574, -0.02946341410279274, -0.001542415120638907, -0.02362733893096447, 0.011469975113868713, 0.030595585703849792, 0.013511926867067814, 0.0038042308297008276, 0.006604333408176899, 0.0024799946695566177, 0.016281703487038612, -0.0001983827241929248, -0.02443603426218033, -0.0045960769057273865, 0.019920825958251953, -0.03407296910881996, 0.03741557151079178, 0.01637605018913746, -0.03666079044342041, 0.008626068010926247, 0.011779974214732647, -0.01831691712141037, -0.019947782158851624, -0.06496507674455643, -0.0014657576102763414, 0.017723875120282173, -0.007150201592594385, 0.019381696358323097, -0.03048775903880596, 0.027199070900678635, -0.019004305824637413, -0.00393227394670248, 0.03560948744416237, -0.028789501637220383, -0.01366018783301115, 0.0186538714915514, 0.012878449633717537, 0.015904312953352928, -0.01622779108583927, 0.001817876473069191, -0.008700198493897915, 0.006907593458890915, 0.03245558217167854, -0.0038446655962616205, 0.07919808477163315, -0.011618235148489475, 0.032482538372278214, -0.027980808168649673, -0.0010352965909987688, -0.017993438988924026, 0.011678887531161308, 0.01784517802298069, -0.021646039560437202, -0.019422130659222603, 0.040596432983875275, -0.0231016892939806, -0.00759498355910182, -0.057740744203329086, 0.0017218440771102905, -0.04404686018824577, 0.021888647228479385, 0.06232334300875664, -0.016025617718696594, 0.017521699890494347, 0.03776600584387779, -5.357070676836884e-06, 0.07601722329854965, 0.03116167150437832, -0.027846025303006172, -0.0008963024010881782, 0.006718898192048073, 0.05078597739338875, 0.04563729092478752, 0.018505612388253212, 0.011456497013568878, 0.020554302260279655, 0.021255170926451683, 0.019772564992308617, -0.0018279851647093892, 0.029975585639476776, -0.01567518338561058, 0.03811643645167351, -0.04021904245018959, 0.04100077971816063, 0.002399125136435032, 0.04625729098916054, -0.025581683963537216, -0.008417155593633652, -0.017777787521481514, 0.028762545436620712, -0.024732554331421852, -0.01153736561536789, 0.03027210757136345, -0.01926039345562458, 0.01709039695560932, -0.002006571739912033, -0.0010386662324890494, -0.010317586362361908, -0.032482538372278214, -0.010169325396418571, 0.007749983109533787, 0.0019947781693190336, -0.030541671440005302, 0.01684778928756714, 0.017912568524479866, 0.007163680158555508, 0.022158212959766388, 0.014071273617446423, -0.037172961980104446, 0.0005627161590382457, 0.05377814173698425, -0.015567357651889324, 0.014772141352295876, -0.036094702780246735, -0.04906076192855835, 0.009286501444876194, -0.00890911091119051, 0.04393903538584709, -0.02843906730413437, 0.02857385016977787, -0.009636935777962208, -0.003371242666617036, -0.008733893744647503, -0.015055184252560139, 0.03221297264099121, 0.004744337406009436, -0.03415383771061897, -0.007217593025416136, 0.008356503210961819, -0.0072782449424266815, -0.013613013550639153, -0.03501644358038902, 0.0215112566947937, -0.02603994309902191, 0.03118862770497799, -0.03922165185213089, -0.016389530152082443, 0.023977773264050484, -0.015055184252560139, 0.05596161633729935, -0.00913150142878294, 0.0014211110537871718, 0.026188204064965248, 0.007473679259419441, -0.008444111794233322, -0.003165699541568756, -0.01661865971982479, 0.019880391657352448, 0.018640393391251564, -0.005856291390955448, 0.0044781421311199665, -0.022859079763293266, -0.016281703487038612, 0.020810389891266823, 0.05089380219578743, -0.0026383637450635433, -0.0020975498482584953, -0.017858656123280525, 0.04385816305875778, -0.018532568588852882, -0.00779041787609458, -0.023303862661123276, 0.019772564992308617, 0.008767589926719666, -0.02281864546239376, -0.004178251605480909, 0.004831945989280939, 0.010937584564089775, -0.027455156669020653, 0.007291723042726517, -0.0014842902310192585, 0.020945170894265175, -0.017292570322752, 0.04838684946298599, -0.027926895767450333, 0.0038210786879062653, 0.020756475627422333, 0.01614692062139511, 0.0007985851843841374, -0.02626907266676426, 0.05461379513144493, -0.006995202042162418, 0.006206725724041462, -0.0033965143375098705, 0.010600629262626171, 0.02865472063422203, -0.001996462931856513, -0.010910628363490105, 0.0021548322401940823, -0.0045387945137917995, 0.01907169818878174, 0.02946341410279274, -0.006789659149944782, -0.025312118232250214, 0.005809117574244738, -0.031539060175418854, 0.030137324705719948, 0.014947358518838882, 0.004407381638884544, -0.0021059736609458923, 0.027819069102406502, 0.037873830646276474, 0.01653778925538063, -0.010364759713411331, -0.002503581577911973, -0.027468634769320488, 0.004815098363906145, 0.026808202266693115, 0.006304442882537842, 0.027953851968050003, -0.00012899088324047625, 0.049599889665842056, -0.02093169279396534, 0.042456429451704025, 0.032482538372278214, -0.02037908509373665, 0.031781669706106186, 0.02289951592683792, -0.03776600584387779, -0.053023360669612885, -0.03135036677122116, 0.004602815955877304, 0.025500813499093056, -0.03922165185213089, -0.01709039695560932, -0.004508468322455883, -0.02779211290180683, -0.011746278963983059, -0.01332997065037489, -0.021942561492323875, -0.013073883950710297, 0.026336463168263435, -0.03598687797784805, 0.04652685299515724, -0.009704326279461384, -0.029220806434750557, -0.011618235148489475, -0.054883357137441635, -0.0069143325090408325, 0.015971703454852104, 0.011665409430861473, -0.029166892170906067, -0.01967821829020977, -0.026093855500221252, -0.024328207597136497, -0.00017290044343098998, -0.022859079763293266, -0.027050809934735298, -0.0440199039876461, 0.03229384124279022, -0.023425165563821793, -0.004083903972059488, 0.010721933096647263, -0.018721263855695724, -0.002454722998663783, -0.013121058233082294, -0.0062134647741913795, 0.0008099574479274452, -0.016807354986667633, 0.015742573887109756, -0.015823444351553917, 0.037011224776506424, -0.03660687804222107, -0.029059067368507385, -0.013963447883725166, 0.021686473861336708, -0.024328207597136497, -0.009893021546304226, -0.04094686731696129, 0.011901278048753738, -0.018829088658094406, -0.028115591034293175, 7.686804019613191e-05, 0.029193848371505737, 0.004535424988716841, 0.004589337855577469, -0.0005745096132159233, -0.018640393391251564, -0.005182379856705666, -0.02184821292757988, -0.04388512298464775, -0.028223415836691856, -0.031053844839334488, 0.020082565024495125, -0.02174038626253605, -0.019664740189909935, 0.01558083575218916, 0.016753440722823143, -0.000580827530939132, -0.012662798166275024, 0.004457924980670214, 0.021632561460137367, -0.014367794618010521, 0.015082140453159809, -0.022966906428337097, 0.0019644522108137608, 0.00043214578181505203, 0.0075815049931406975, -0.02843906730413437, -0.022643428295850754, -0.001996462931856513, -0.029759934172034264, -0.010236716829240322, -0.014354316517710686, -0.08097721636295319, 0.012440407648682594, -0.022171691060066223, -0.013693883083760738, -0.029139935970306396, -0.006755963433533907, 0.002161571290344, 0.029786890372633934, -0.02090473659336567, 9.050421795109287e-05, 0.007588244043290615, 0.001069834572263062, 0.020055608823895454, 0.02174038626253605, -0.007433244492858648, 0.0286816768348217, 0.048602502793073654, 0.025419944897294044, 0.026161247864365578, -0.029679065570235252, 0.07175810635089874, 0.02862776257097721, -0.011321714147925377, 0.036229487508535385, 0.03393818810582161, 0.02109343186020851, 0.02062169462442398, 0.002474940149113536, 0.01157780084758997, -0.004377055447548628, 0.014502576552331448, -0.008484547026455402, -0.002045321511104703, 0.0011549158953130245, 0.0553685761988163, 0.0002621937310323119, 0.02365429513156414, -0.03283297270536423, -0.01818213425576687, 0.018087785691022873, -0.011389105580747128, 0.009138240478932858, -0.020702563226222992, -0.013323231600224972, 0.007803895976394415, -0.004818467888981104, 0.011759757064282894, -0.02129560522735119, 0.0008289112010970712, -0.00987954344600439, -0.013437796384096146, 0.045933812856674194, 0.008585633710026741, 0.009158458560705185, -0.013437796384096146, -0.04876423999667168, 0.002798417815938592, 0.011018454097211361, 0.013100841082632542, 0.022697340697050095, -0.015082140453159809, 0.007325418759137392, -0.010978019796311855, -0.02420690283179283, 0.017750831320881844, 0.023937338963150978, 0.004737598355859518, 0.02593211643397808, -0.0075478097423911095, -0.002185158198699355, -0.04369642585515976, -0.000348538625985384, 0.01789909042418003, 0.019745608791708946, -0.003568361746147275, -0.017602570354938507, 0.04455903172492981, 0.03563644364476204, -0.022697340697050095, -0.016686050221323967, 0.013087362982332706, -0.007426505442708731, -0.021888647228479385, 0.002454722998663783, -0.021861691027879715, -0.018519090488553047, -0.030703410506248474, -0.012204538099467754, 0.004313034005463123, -0.038008611649274826, -0.017521699890494347, 0.036040790379047394, -0.02849298156797886, -0.0029972216580063105, 0.01466431561857462, -0.008578894659876823, 0.034450359642505646, -0.009663891978561878, -0.002493472769856453, -0.02420690283179283, -0.027064288035035133, -0.0028051568660885096, -0.002447983715683222, 0.026093855500221252, -0.019058218225836754, -0.0009139925823546946, -0.001374779618345201, -0.02376212179660797, 0.030083412304520607, -0.03733469918370247, 0.011941713280975819, 0.002409233944490552, -0.0034571662545204163, -0.05531466007232666, 0.010789324529469013, -0.03366862237453461, 0.015567357651889324, -0.0006604333175346255, 0.03393818810582161, -0.023829512298107147, -0.007163680158555508, 0.04655380919575691, 0.0028405373450368643, -0.007763461209833622, -0.006563898641616106, -0.010748889297246933, -0.014030838385224342, -0.0021817886736243963, 0.016780398786067963, -0.021133866161108017, -0.021497778594493866, 0.015432574786245823, -0.03143123537302017, -0.008774328976869583, 0.008309329859912395, -0.025056032463908195, 0.018532568588852882, 0.028978196904063225, 0.01115997601300478, -0.0052228146232664585, 0.023222992196679115, 0.001105214934796095, 0.014098229818046093, -0.010209760628640652, 0.009401066228747368, 0.05172945186495781, -0.005428357515484095, 0.01135541032999754, 0.03207819163799286, 0.01070171594619751, 0.007628678809851408, -0.013801708817481995, 0.030110368505120277, -0.03639122471213341, 0.026862114667892456, -0.030676454305648804, 0.013491709716618061, 0.007493896409869194, -0.024719076231122017, -0.009731283411383629, -0.00874063279479742, -0.0036795572377741337, -0.015971703454852104, -0.00890911091119051, 0.008437372744083405, 0.022643428295850754, 0.02281864546239376, -0.011678887531161308, -0.016362572088837624, -0.029948629438877106, 0.0014901868999004364, -0.002923091407865286, 0.019799521192908287, 0.034396447241306305, 0.00045657510054297745, 0.031754713505506516, -0.0006309496820904315, 0.023816034197807312, 0.041674692183732986, 0.006867158692330122, -0.008390199393033981, -0.012858232483267784, -0.019139088690280914, 0.033587753772735596, -0.013923012651503086, -0.0015592628624290228, 0.01912561058998108, 0.009906499646604061, 0.0023182558361440897, -0.027279939502477646, -0.01011541299521923, 0.008733893744647503, 0.01642996445298195, 0.031754713505506516, 0.009690848179161549, -0.008929328061640263, -0.0073186797089874744, -0.02870863303542137, 0.031700801104307175, 0.008134112693369389, 0.0018920067232102156, 0.007217593025416136, 0.017198223620653152, 0.05418248847126961, -0.007163680158555508, 0.006702050566673279, -0.0018161917105317116, -0.052187711000442505, 0.02262995019555092, 0.009872804395854473, 0.028331242501735687, -0.002744504949077964, 0.02682168036699295, 0.003810969879850745, 0.03215906023979187, 0.018357351422309875, -0.033533841371536255, 0.030676454305648804, 0.015136053785681725, 0.011294757947325706, 0.025756899267435074, 0.007015419192612171, 0.025231249630451202, 0.022859079763293266, -0.034450359642505646, 0.042510341852903366, -0.03215906023979187, 0.0017319527687504888, 0.0038311872631311417, -0.0118001913651824, 0.003179177874699235, -0.013518665917217731, 0.0058495523408055305, -0.0067627024836838245, -0.02184821292757988, -0.003730100579559803, -0.012042799964547157, 0.030919061973690987, 0.0032162428833544254, -0.014529533684253693, 0.009967152029275894, -0.0021076584234833717, -0.015634749084711075, 0.01219105999916792, 0.03226688504219055, 0.0031370583456009626, 0.04277990758419037, -0.0052059669978916645, 0.037873830646276474, -0.008208243176341057, -0.0009628511616028845, 0.019826477393507957, 0.0228725578635931, -0.03450427204370499, 0.023640817031264305, -0.0021379843819886446, 0.007103027775883675, -0.0039289044216275215, -0.0072782449424266815, -0.022077342495322227, 0.0034268402960151434, 0.017198223620653152, 0.015459530986845493, 0.04542164131999016, -0.031673844903707504, 0.03639122471213341, 0.005155423656105995, 0.020918214693665504, 0.017548657953739166, 0.005199227947741747, 0.02637689933180809, 0.004124338738620281, 0.029706021770834923, 0.017804743722081184, -0.01695561595261097, -0.03108080103993416, -0.012312364764511585, 0.001444697962142527, -0.00832280796021223, 0.011530626565217972, -0.0011835572076961398, -0.0069547672756016254, -0.03949121758341789, -0.03245558217167854, -0.04849467799067497, -0.021389953792095184, 0.011038671247661114, -0.0015550509560853243, -0.015877356752753258, 0.0031909712124615908, 0.03450427204370499, -0.022077342495322227, -0.006961506325751543, -0.03137732297182083, -0.002198636531829834, 0.005785530898720026, 0.010876933112740517, -0.0055867270566523075, 0.001477551064454019, 0.005276727490127087, -0.022050386294722557, 0.010634324513375759, -0.004151295404881239, -0.014772141352295876, 0.020756475627422333, 0.011106062680482864, -0.01560779195278883, 0.03118862770497799, 0.016672572121024132, -0.009077589027583599, -0.03946426138281822, 0.011038671247661114, -0.005371075123548508, -0.011288018897175789, -0.003996295388787985, 0.009738022461533546, 0.013458013534545898, 0.0008006911957636476, 0.019381696358323097, -0.007325418759137392, 0.016686050221323967, 0.015567357651889324, 0.01931430585682392, -0.007925200276076794, 0.02674081176519394, -0.00217168009839952, -0.03504339978098869, -0.0051453146152198315, 0.03781991824507713, -0.0003066297504119575, 0.0028321132995188236, -0.018748220056295395, -0.008073460310697556, 0.013073883950710297, -0.019786043092608452, 0.027980808168649673, -0.0035582531709223986, 0.008437372744083405, 0.012501060031354427, 0.005448575131595135, 0.00022702396381646395, 0.012123669497668743, -0.016969094052910805, -0.010135630145668983, 0.012319103814661503, 0.009994108229875565, -0.007568026892840862, 0.02174038626253605, 0.0029180371202528477, 0.03493557497859001, 0.00868672039359808, -0.019786043092608452, 0.007655635476112366, 0.038979046046733856, -0.011584539897739887, 0.007258027791976929, 0.016025617718696594, -0.02009604312479496, -0.01661865971982479, 0.03366862237453461, -0.002001517452299595, -0.005842813290655613, 0.07105723768472672, 0.005135206039994955, -0.0001285696926061064, -0.020810389891266823, -0.009933456778526306, -0.03232079744338989, -9.782247798284516e-05, 0.003676187712699175, 0.0007328788051381707, 0.0390329584479332, 0.026565594598650932, 0.023371253162622452, 0.04294164478778839, 0.02846602536737919, 0.02707776613533497, -0.005748465657234192, -0.004784772172570229, 0.015055184252560139, -0.016416486352682114, -0.024692120030522346, -0.0012231494765728712, -0.015459530986845493, -0.019489523023366928, 0.012015842832624912, -0.016079530119895935, 0.0009628511616028845, -0.010331064462661743, 0.039814695715904236, -0.005253140814602375, -0.02245473302900791, -0.014745185151696205, 0.0074467225931584835, 0.0016266540624201298, 0.0001350982056465, 0.005633900873363018, 0.0019560283981263638, -0.023721687495708466, -0.006250530015677214, -0.01787213422358036, -0.015863878652453423, 0.00609552999958396, -0.006432485766708851, -0.011934974230825901, 0.03145819157361984, 0.013949969783425331, 0.012022582814097404, -0.0024024946615099907, 0.03307557851076126, -0.015917791053652763, -0.03048775903880596, -0.004346729721873999, -0.0009299979428760707, 0.0024564077612012625, -0.028924284502863884, 0.007635417860001326, -0.009225849062204361, -0.03283297270536423, -0.016739962622523308, -0.025837769731879234, 0.03024515137076378, 0.002399125136435032, -0.023816034197807312, 0.012514538131654263, 0.013990404084324837, 0.02276473306119442, 0.003972708713263273, -0.007022158708423376, 0.02417994663119316, -0.017912568524479866, 0.0037065136712044477, -0.01957039162516594, -0.011112801730632782, -0.0124808419495821, -0.0069749848917126656, 0.013343448750674725, -0.011220627464354038, 0.02862776257097721, 0.012399972416460514, 0.011402583681046963, -0.038736436516046524, 0.037146005779504776, -0.025190813466906548, -0.036094702780246735, 0.0023923860862851143, -0.018694307655096054, 0.009967152029275894, 0.0012399973347783089, 0.03024515137076378, 0.0023789077531546354, 0.006570637691766024, 0.05350857973098755, 0.018128221854567528, -0.01734648458659649, 0.016739962622523308, 0.009488674812018871, -0.002914667595177889, 0.03808948025107384, -0.03587905317544937, 0.011611496098339558, -0.015270835720002651, 0.01469127181917429, 0.039572086185216904, 0.02843906730413437, -0.03593296557664871, 0.0036728179547935724, -0.02862776257097721, 0.013896056450903416, 0.028223415836691856, 0.010438890196383, 0.022616472095251083, 0.0321321040391922, -0.008403677493333817, -0.028331242501735687, 0.001677197404205799, -0.01050628162920475, -0.01837082952260971, 0.0032263516914099455, 0.030541671440005302, 0.013417579233646393, -0.030568629503250122, 0.006870528217405081, -0.00018753694894257933, 0.025136901065707207, 0.010668019764125347, -0.02093169279396534, -0.03113471530377865, 0.016713006421923637, 0.006392051000148058, -0.007763461209833622, 0.012332581914961338, 0.007527592126280069, 0.013222144916653633, 0.006685202941298485, -0.021942561492323875, 0.002104288898408413, -0.011193671263754368, 0.02779211290180683, 0.0008811393636278808, -0.02378907799720764, -0.005307053681463003, 0.007776939310133457, 0.011624974198639393, -0.015499966219067574, -0.04623033478856087, -0.006105638574808836, 0.008349764160811901, -0.03275210037827492, 0.03552861884236336, -0.01572909578680992, 0.014125186018645763, -0.003918795846402645, -0.00516890175640583, 0.00482857646420598, -0.012898667715489864, -0.013518665917217731, 0.05426336079835892, 0.008673242293298244, -0.0057383570820093155, -0.020689085125923157, -0.0033931448124349117, 0.00682335440069437, 0.03191645070910454, 0.010688237845897675, 0.007972373627126217, -0.009987369179725647, -0.03647209331393242, 0.004589337855577469, -0.021915603429079056, -0.003187601687386632, -0.009192153811454773, 0.016214312985539436, -0.027037331834435463, -0.009225849062204361, -0.0014303772477433085, -0.015203445218503475, -0.007985851727426052, 0.025217771530151367, -0.011079106479883194, 0.0025288532488048077, -0.00913150142878294, 0.0030157542787492275, -0.014179099351167679, -0.014367794618010521, 0.009111284278333187, -0.000653694209177047, -0.029786890372633934, -0.02276473306119442, -0.014475620351731777, -0.00035822612699121237, 0.014044317416846752, -0.029166892170906067, -0.021228214725852013, 0.016605181619524956, 0.012736928649246693, -0.000802375958301127, 0.0018279851647093892, -0.011739539913833141, 0.009609978646039963, -0.012790841981768608, -0.0111195407807827, 0.009010197594761848, -0.0040636868216097355, -0.026754289865493774, 0.005411509890109301, 0.009481935761868954, -0.010479324497282505, 0.0499233677983284, -0.02682168036699295, 0.02048691175878048, 0.00825541652739048, -0.0068031372502446175, 0.014435186050832272, -0.012083234265446663, -0.014003882184624672, 0.05801030620932579, 0.02554124779999256, -0.020689085125923157, -0.021201258525252342, -0.0358520969748497, -0.037172961980104446, -0.0005538710975088179, 0.037981655448675156, -0.0008946175803430378, -0.012824537232518196, -0.03237470984458923, 0.004427598789334297, 0.0457451157271862, 0.003564992221072316, 0.00502401078119874, -0.011988886632025242, 0.03574426844716072, 0.010903889313340187, -0.012116929516196251, 0.022670384496450424, 0.005408140365034342, 0.0062471600249409676, 0.00117766042239964, -0.0014211110537871718, -0.021888647228479385, -0.009111284278333187, -0.027037331834435463, -0.007669113576412201, -0.03124254010617733, -0.021672995761036873, 0.006830093916505575, -0.004451185930520296, -5.5913598771439865e-05, 0.0021969517692923546, 0.016308659687638283, 0.004889228381216526, 0.018586480990052223, -0.0331294909119606, -0.01225845143198967, -0.004771294072270393, -0.004087273497134447, 0.012709972448647022, 0.02634994313120842, 0.010863454081118107, -0.027482112869620323, -0.014543011784553528, 0.029706021770834923, -0.024813424795866013, -0.012420190498232841, 0.010250194929540157, -0.006688572466373444, -0.017211701720952988, 0.013532144017517567, 0.015473010018467903, 0.007224332075566053, 0.019219957292079926, 0.0007825798238627613, -0.028358198702335358, -0.006237051449716091, -0.027899939566850662, -0.025972552597522736, -0.008659763261675835, -0.01131497509777546, -8.234356937464327e-05, -0.05547640100121498, -0.009232588112354279, -0.014489098452031612, 0.022643428295850754, 0.011557583697140217, -0.006375203374773264, 0.009946934878826141, 0.015688661485910416, -0.02048691175878048, 0.015230401419103146, -0.021201258525252342, -0.026444289833307266, 0.038925133645534515, 0.008444111794233322, -0.0008802969823591411, 0.01580996625125408, -0.016861267387866974, -0.007723026443272829, 0.002941624028608203, -0.004090643022209406, -0.0024294510949403048, -0.0013469806872308254, 0.023923860862851143, -0.011651931330561638, -0.016753440722823143, 0.04299555718898773, -0.028385154902935028, 0.010553454980254173, -0.020298216491937637, -0.0228725578635931, 0.007116506341844797, 0.023748643696308136, 0.014219533652067184, 0.012433668598532677, -0.008147590793669224, 0.016551267355680466, 0.015553878620266914, -0.009043892845511436, 0.02037908509373665, 0.016861267387866974, -0.00854519847780466, 0.021228214725852013, 0.016497354954481125, -0.025190813466906548, -0.02862776257097721, -0.010674758814275265, 0.002360375365242362, -0.0018566263606771827, -0.003992925863713026, 0.009609978646039963, 0.008989980444312096, 0.005108249839395285, 0.00393227394670248, -0.024853859096765518, -0.0078106350265443325, 0.018869522958993912, -0.0014548065373674035, -0.013195188716053963, 0.009508891962468624, 0.01121388841420412, 0.04089295491576195, 0.009219110012054443, -0.00832280796021223, 0.008241938427090645, 0.007170419208705425, 0.03372253477573395, 0.014394750818610191, -0.002311516785994172, 0.006462811958044767, -0.03043384663760662, 0.006752593908458948, -0.009380849078297615, -0.017252136021852493, 0.01907169818878174, -0.01085671503096819, 0.011820408515632153, 0.01837082952260971, 0.008895632810890675, -0.021214736625552177, -0.019772564992308617, -0.03409992530941963, -0.014502576552331448, 0.018047351390123367, -0.01839778572320938, -0.003209503833204508, 0.000280936888884753, 0.0008963024010881782, -0.03272514417767525, 0.012790841981768608, 0.01189453899860382, -0.006149442866444588, 0.006371833849698305, 0.012278668582439423, 0.02045995555818081, -0.013747796416282654, 0.02351951412856579, 0.01293910201638937, -0.011328453198075294, 0.018936915323138237, 0.0186538714915514, 0.025150379166007042, -0.02949037030339241, 0.006927811075001955, -0.01617387682199478, -0.001942550064995885, 0.0018818980315700173, 0.007466940209269524, 0.020702563226222992, -0.037172961980104446, -0.02134951762855053, 0.003074721433222294, 0.004966728389263153, -0.02665994130074978, 0.007514114025980234, 0.00900345854461193, 0.0014783934457227588, 0.00961671769618988, -0.017279092222452164, -0.019812999293208122, 0.01881561055779457, -0.009744761511683464, -0.005283466540277004, -0.024786466732621193, -0.04706598445773125, -0.002667004941031337, -0.028331242501735687, 0.005347488448023796, -0.004980206489562988, -0.004067056346684694, 0.023667775094509125, 0.005731618031859398, 0.012858232483267784, -0.01634909398853779, 0.01029736828058958, -0.0007686803583055735, 0.036310356110334396, -0.0009990738471969962, -0.03393818810582161, 0.002719233278185129, -0.015944747254252434, -0.0010841552866622806, -0.007231071125715971, -0.005977595690637827, -0.004134447313845158, -0.006907593458890915, 0.0007771042874082923, -0.025244727730751038, 0.013599535450339317, 9.018832497531548e-05, 0.011685626581311226, -0.018155178055167198, -0.005731618031859398, 0.010344542562961578, 0.026592550799250603, 0.00655379006639123, -0.01967821829020977, -0.016322137787938118, 0.011847365647554398, 0.001461545703932643, 0.0023064622655510902, -0.011045410297811031, -0.005199227947741747, 0.00043067161459475756, 0.007925200276076794, -0.0022912994027137756, -0.028762545436620712, -0.015001271851360798, -0.023169079795479774, -0.011665409430861473, -0.0012677961494773626, -0.002565918257459998, 0.014192577451467514, -0.02265690639615059, 0.012575189583003521, 0.004077164921909571, -0.00917193666100502, -0.03763122111558914, -0.00786454789340496, 0.011591278947889805, -0.005596835631877184, -0.02537950873374939, 0.021699951961636543, -0.025002120062708855, 0.023532992228865623, 0.015001271851360798, 0.0228725578635931, 0.003531296504661441, 0.006681833416223526, 0.002319940598681569, 0.005424987990409136, -0.010182803496718407, 0.013383883982896805, -0.009448240511119366, 0.00022533918672706932, -0.014920402318239212, 0.024341685697436333, 0.0062707471661269665, 0.026942985132336617, 0.0035784703213721514, 0.0075478097423911095, -0.015877356752753258, -0.014219533652067184, 0.023249948397278786, -0.010061499662697315, -0.023586904630064964, 0.017306048423051834, -0.014367794618010521, -0.010641063563525677, 0.019664740189909935, -0.01970517449080944, -0.0033206993248313665, -0.01920647919178009, 0.03318340703845024, -0.008208243176341057, 0.023115167394280434, 0.006061834748834372, 0.012622363865375519, -0.022306472063064575, 0.02098560705780983, -0.008019547909498215, 0.02957123890519142, -0.00790498312562704, 0.017643004655838013, -0.017386918887495995, -0.007763461209833622, 0.0030191238038241863, 0.029086023569107056, -0.03310253471136093, -0.005081293173134327, 0.01818213425576687, -0.014677793718874454, 0.0002771461440715939, 0.006341507658362389, -0.022602993994951248, -0.027455156669020653, -0.00965715292841196, -0.004073795396834612, -0.0036862962879240513, 0.012447146698832512, -0.010418673045933247, -0.022387342527508736, -0.012049539014697075, -0.01466431561857462, 0.02546037919819355, 0.032590363174676895, 0.022468211129307747, -0.00512172793969512, -0.0026838527992367744, 0.008605850860476494, 0.010162586346268654, 0.021888647228479385, -0.0022542341612279415, -0.019327783957123756, -0.009380849078297615, -0.015446052886545658, 0.012305624783039093, 0.00985258724540472, -0.03843991458415985, 0.020716041326522827, -0.018384307622909546, -0.015324749052524567, 0.013013232499361038, 0.029193848371505737, -0.022077342495322227, 0.03636426851153374, -0.013707361184060574, -0.002712493995204568, -0.005785530898720026, -0.0033375469502061605, 0.0008760850178077817, -0.0026114073116332293, 0.008221721276640892, -0.026107333600521088, -0.00024724131799302995, -0.00015331487520597875, -0.016214312985539436, 0.04097382351756096, -0.016780398786067963, -0.00325162336230278, 0.03024515137076378, -0.00038792035775259137, -0.01653778925538063, -0.00733215780928731, 0.01998821645975113, 0.03768513351678848, 0.01053323782980442, 0.011476714164018631, -0.009374110028147697, 0.021241692826151848, -0.008639546111226082, -0.0052800970152020454, -0.0004662625724449754, 0.021201258525252342, 0.004794880747795105, 0.014259968884289265, 0.0023064622655510902, -0.0023519513197243214, 0.01998821645975113, 0.017858656123280525, -0.014286925084888935, 0.0079656345769763, 0.02326342649757862, -0.015419096685945988, -0.017252136021852493, 0.00020943908020853996, -8.813499880488962e-05, 0.009744761511683464, -0.0032971124164760113, -0.013437796384096146, 0.011227366514503956, -0.017440831288695335, 0.018155178055167198, -0.01267627626657486, -0.0015946432249620557, 0.00805998221039772, 0.009111284278333187, 0.027522549033164978, -0.011079106479883194, -0.02093169279396534, -0.029193848371505737, 0.007520853076130152, -0.008801285177469254, 0.012083234265446663, 0.007857808843255043, -0.03118862770497799, -0.023303862661123276, -0.007756722159683704, -0.024584293365478516, 0.016052573919296265, 0.0028270590119063854, -0.0018869524355977774, 0.018640393391251564, 0.0075073749758303165, -0.01135541032999754, 0.00555977039039135, -0.008659763261675835, -0.013350187800824642, -0.014125186018645763, -0.02676776796579361, 5.701923510059714e-05, -0.0034099924378097057, 0.02037908509373665, 0.003632383421063423, 0.01784517802298069, 0.02634994313120842, -0.011753018014132977, 0.011908017098903656, 0.008268894627690315, 0.003367873141542077, -0.005684444215148687, 0.009037153795361519, 0.001450594631023705, 0.013114319182932377, -0.011766496114432812, 0.013909534551203251, 0.030972976237535477, 0.0019088544650003314, -0.006304442882537842, -0.01695561595261097, -0.034288618713617325, -0.011375627480447292, 0.011321714147925377, 0.005974226165562868, -0.0015120890457183123, -0.016632137820124626, -0.009232588112354279, 0.029652109369635582, -0.011591278947889805, -0.004720750730484724, -0.0013688828330487013, -0.008376720361411572, 0.01164519228041172, 0.0007484630332328379, 0.018977349624037743, -0.011685626581311226, 0.018909959122538567, -0.01634909398853779, 0.006695311516523361, 0.02043299935758114, -0.0020217346027493477, 0.020136477425694466, 0.016106486320495605, -0.04342686012387276, -0.014933880418539047, -0.0024243968073278666, -0.023398209363222122, -0.020608216524124146, -0.011544105596840382, 0.0016460289480164647, -0.004542164038866758, -0.0018818980315700173, -0.010593890212476254, -0.011975408531725407, 0.005829335190355778, -0.005950639024376869, 0.025136901065707207, -0.025581683963537216, 0.002447983715683222, -0.028789501637220383, -0.013484970666468143, -0.0038076003547757864, -0.0015213553560897708, -0.00953584909439087, 0.0012998069869354367, -0.018532568588852882, 0.034288618713617325, -0.0009544272325001657, 0.004798250272870064, 0.015877356752753258, -0.036040790379047394, -0.004767924547195435, 0.014569967985153198, -0.019556913524866104, -0.01957039162516594, -0.02056778036057949, -0.015877356752753258, -0.008774328976869583, 0.03552861884236336, 0.00961671769618988, -0.03291384130716324, -0.04852163419127464, -0.0008339655469171703, 0.009124762378633022, -0.010236716829240322, -0.010324325412511826, 0.02668689750134945, -0.012568450532853603, -0.0038480351213365793, 0.004589337855577469, -0.007008680142462254, 0.008235199376940727, 0.007520853076130152, 0.006813245825469494, 0.004087273497134447, 0.04539468139410019, -0.024530380964279175, -0.008747371844947338, -0.011469975113868713, -0.007204114459455013, -0.018936915323138237, -0.01345127448439598, -0.01962430402636528, -0.01868082955479622, -0.011571061797440052, -0.007129984442144632, -0.023384731262922287, 0.013195188716053963, 0.01027041207998991, 0.020001694560050964, 0.02093169279396534, -0.0129121458157897, 0.0032212974037975073, 0.019853435456752777, 0.02037908509373665, 0.007365853525698185, 0.01079606357961893, -0.003784013446420431, -0.024557337164878845, -0.02279168926179409, 0.03372253477573395, 0.02776515670120716, 0.004437707830220461, -0.0061359647661447525, 0.006779550574719906, -0.001088367193005979, 0.00829585175961256, 0.0430225133895874, -0.03121558390557766, -0.013377144932746887, 0.020635172724723816, -0.003089884528890252, 0.004360207822173834, -0.026066899299621582, -0.009609978646039963, 0.020810389891266823, -0.016659094020724297, -0.025716464966535568, -0.016699528321623802, 0.010209760628640652, -0.008558676578104496, 0.015917791053652763, -0.0020924953278154135, 0.0013402416370809078, 0.03280601650476456, 0.005916943773627281, -0.012447146698832512, 0.03539383411407471, -0.01709039695560932, -0.02559516206383705, 0.03649904951453209, -0.028034720569849014, 0.025864725932478905, -0.023249948397278786, 0.02640385553240776, 0.006830093916505575, 0.007035636808723211, -0.0015752683393657207, -0.001148176845163107, 0.018869522958993912, -0.021336039528250694, 0.021079953759908676, -0.016308659687638283, -0.03555557504296303, 0.011375627480447292, 0.010492803528904915, -0.0008259628666564822, 0.00028641242533922195, -0.009286501444876194, -0.0007935308967716992, 0.009124762378633022, -0.009583022445440292, 0.015392140485346317, -0.017669960856437683, -0.0035346662625670433, -0.010775845497846603, -0.020244304090738297, 0.0024597772862762213, -0.0009864380117505789, -0.005987704265862703, 0.00410075206309557, 0.008221721276640892, -0.011274540796875954, -0.019799521192908287, -0.008834980428218842, -0.013781491667032242, -0.021079953759908676, -0.0037739048711955547, 0.015055184252560139, -0.007797156926244497, -0.015904312953352928, -0.025366030633449554, 0.0025490703992545605, -8.252784027718008e-06, 0.015688661485910416, 0.005067815072834492, 0.006772811058908701, 0.009050631895661354, -0.0020116260275244713, -0.0004310928052291274, -0.016969094052910805, 0.007150201592594385, -0.007648896425962448, -0.009246067143976688, -0.003035971662029624, -0.024786466732621193, 0.05245727673172951, -0.012514538131654263, -0.0013436111621558666, -0.02190212532877922, -0.00434336019679904, -0.022751254960894585, -0.007386070676147938, 0.02240082062780857, 0.006948028225451708, -0.006489768158644438, -0.0033594490960240364, 0.00012193587463116273, -0.008437372744083405, 0.003976078238338232, -0.015297792851924896, 0.014543011784553528, 0.015513444319367409, 0.02023082599043846, 0.004430968780070543, 0.03463905304670334, 0.013249101117253304, 0.00448825117200613, -0.01870778575539589, 0.004633142147213221, -0.017279092222452164, 0.025608640164136887, 0.019273871555924416, 0.026255594566464424, 0.007116506341844797, 0.010647802613675594, 0.013794969767332077, 0.020419521257281303, -0.018936915323138237, -0.0007893189322203398, -0.01837082952260971, 0.005812487099319696, -0.018451698124408722, 0.007635417860001326, 0.00162581168115139, 0.01046584639698267, -0.004815098363906145, -0.014650837518274784, 0.021026041358709335, 0.023721687495708466, -0.005101510789245367, 0.008578894659876823, -0.0063482471741735935, -0.00987954344600439, 0.0024614620488137007, 0.0011330138659104705, -0.013026710599660873, -0.002506951102986932, 0.005185749381780624, -0.005091401748359203, 0.010668019764125347, -0.010324325412511826, 0.023694731295108795, -0.017211701720952988, -0.002136299619451165, -0.009387588128447533, -0.018546046689152718, -0.003959230612963438, -0.026606028899550438, -0.010937584564089775, -0.01085671503096819, -0.01095106266438961, -0.01478561945259571, -0.015567357651889324, -0.004986945539712906, -0.0009468457428738475, 0.0066346595995128155, 0.021780822426080704, 0.005236292723566294, -0.013801708817481995, -0.01776430942118168, 0.010809541679918766, 0.004946510773152113, 0.010566933080554008, 0.014650837518274784, 0.011247583664953709, -0.015526922419667244, 0.002736080903559923, -0.0050711845979094505, -0.014098229818046093, 0.007453462108969688, -0.006638029124587774, 0.006981723941862583, -0.017252136021852493, 0.009185414761304855, -0.03388427197933197, -0.011928235180675983, 0.005216075573116541, -0.006691941991448402, 0.011591278947889805, 0.003814339404925704, 0.0019863543566316366, -0.004626403097063303, -0.0022862448822706938, 0.016187354922294617, -0.0035919486545026302, 0.003666078904643655, 0.004922924097627401, -0.00965715292841196, 0.019085176289081573, 0.016820833086967468, -0.015405618585646152, 0.01121388841420412, 0.029166892170906067, -0.029220806434750557, 0.007763461209833622, 0.002131245331838727, -0.033560797572135925, 1.0490381100680679e-05, -0.012831276282668114, -0.02025778219103813, 0.02849298156797886, 0.018411263823509216, -0.005377814173698425, -0.001974560786038637, -0.025419944897294044, 0.006755963433533907, -0.0043669468723237514, 0.01322888396680355, 0.009764978662133217, -0.0016418170416727662, 0.0027815699577331543, 0.018936915323138237, -0.006007921416312456, -0.014826054684817791, -0.00379749177955091, 0.005654118023812771, -0.0285468939691782, -0.006216834299266338, -0.003285318845883012, -0.008275633677840233, -0.0025996139738708735, -0.007210853975266218, -0.0014413283206522465, 0.012298885732889175, -0.022198647260665894, 0.0038581436965614557, -0.00919889286160469, -0.0009898076532408595, 0.022117776796221733, 0.0028995044995099306, 0.004666837397962809, -0.028034720569849014, -0.02262995019555092, -0.004784772172570229, -0.009684109129011631, 0.00799259077757597, -0.0250964667648077, -0.0006949712987989187, -0.003022493328899145, -0.0041748820804059505, -0.0002520850393921137, -0.021443866193294525, 0.0006111535476520658, -0.0060247695073485374, -0.005104880314320326, 0.01554040051996708, 0.00152893690392375, -0.005199227947741747, -0.0033998838625848293, -0.010654541663825512, 0.00035822612699121237, 0.01787213422358036, 0.017723875120282173, 0.03374949097633362, -0.0058731394819915295, -0.012581928633153439, 0.005084662698209286, -0.01862691529095173, -0.029247762635350227, 0.011133018881082535, -0.008760849945247173, 0.002843906870111823, 0.0043871644884347916, -0.013276058249175549, 0.011624974198639393, 0.014152143150568008, -0.005734987556934357, 0.007035636808723211, 0.00684357201680541, 0.0005433412152342498, -0.018168656155467033, -0.005960747599601746, 0.0023620601277798414, -0.019826477393507957, 0.022481689229607582, -0.029059067368507385, 0.0059674871154129505, 0.004377055447548628, 0.015270835720002651, 0.0005761943757534027, -0.006146073341369629, 0.009401066228747368, 0.010762367397546768, -0.00799259077757597, -0.008343025110661983, -0.014772141352295876, 0.0040805344469845295, -0.0017723874188959599, -0.0011793451849371195, -0.0006903381436131895, -0.0285468939691782, -0.009077589027583599, -0.007399548776447773, -0.021497778594493866, 0.004508468322455883, -0.03639122471213341, -0.015028228051960468, 0.009070849977433681, 0.0001567897415952757, -0.02145734429359436, 0.02067560702562332, 0.009064110927283764, -0.00799259077757597, 0.02946341410279274, 0.0008701882907189429, 0.008080199360847473, 0.012467363849282265, 0.010344542562961578, -0.004794880747795105, -0.013714100234210491, -0.0013983665267005563, -0.01114649698138237, 0.023613860830664635, 0.01706344075500965, -0.024894293397665024, 0.013545622117817402, 0.0075815049931406975, -0.019112132489681244, -0.005815856624394655, 0.0187886543571949, 0.029005153104662895, 0.010870193131268024, -0.015095619484782219, -0.0006389524205587804, -0.008471067994832993, 0.009643674828112125, 0.017696917057037354, -0.02140343189239502, -0.002660265890881419, -0.00779041787609458, -0.005836074240505695, 0.01512257568538189, 0.002234016777947545, -0.02103951945900917, -3.03523447655607e-05, 0.010560194030404091, -0.0067963982000947, 0.008942806161940098, 0.022441254928708076, 0.017076918855309486, 0.008174546994268894, -0.007487157359719276, -0.0036997743882238865, 0.018667349591851234, -0.007520853076130152, 0.004279338289052248, 0.017575614154338837, -0.005064445547759533, 0.0037637960631400347, 0.017885612323880196, 0.0031404278706759214, -0.01225845143198967, 0.004056947771459818, 0.008248677477240562, 0.02192908152937889, -0.003263416700065136, 0.016214312985539436, 0.031808625906705856, 0.0075410702265799046, -0.007224332075566053, 0.013026710599660873, 0.024274295195937157, -0.03550166264176369, 0.028870372101664543, 0.02200995199382305, -0.0011220627930015326, 0.006028139032423496, 0.002095865085721016, -0.03226688504219055, 0.009690848179161549, -0.03027210757136345, -0.008888893760740757, 0.00034516907180659473, -0.006590855307877064, -0.00650324672460556, -0.008774328976869583, 0.0036795572377741337, 0.025676030665636063, 0.007534331176429987, -0.021780822426080704, -0.014718228951096535, -0.025446901097893715, 0.0038648827467113733, -0.0011271170806139708, 0.0037772743962705135, -0.008147590793669224, 0.003206134308129549, -0.016214312985539436, -0.005610313732177019, 0.004778033122420311, -0.011496931314468384, 0.011779974214732647, 0.007170419208705425, -0.008214982226490974, 0.015661705285310745, 0.010317586362361908, -0.023950817063450813, -0.004269229713827372, -0.012501060031354427, 0.015850400552153587, -0.019327783957123756, 0.007258027791976929, 0.012123669497668743, -0.004026621580123901, 0.03043384663760662, 0.012763884849846363, 0.005883248057216406, -0.0013511927099898458, 0.013484970666468143, 0.009690848179161549, 0.021753866225481033, 0.016672572121024132, 0.026053421199321747, 0.01823604665696621, -0.002431136090308428, -0.00207396293990314, 0.01134193129837513, -0.00958976149559021, -0.005617052782326937, 0.011705843731760979, -0.004501729272305965, -0.01004802156239748, -0.021632561460137367, 0.003049449762329459, -0.0041984692215919495, -0.02626907266676426, -0.0196512620896101, -0.01177323516458273, 0.001453121774829924, 0.012292146682739258, 0.018478654325008392, 0.007082810625433922, 0.0033813512418419123, 0.02760341763496399, 0.02865472063422203, 0.01703648455440998, 0.008585633710026741, 0.024274295195937157, 0.007972373627126217, -0.016726484522223473, -0.012528016231954098, 0.007891504094004631, -0.0036593398544937372, -0.0019324413733556867, 0.0066683548502624035, -0.013377144932746887, 0.02779211290180683, -0.01745430938899517, -0.006557159591466188, -0.002136299619451165, 0.021470822393894196, 0.004040099680423737, 0.015001271851360798, 0.0014952413039281964, -0.018519090488553047, -0.01745430938899517, -0.03407296910881996, -0.01004802156239748, -0.018869522958993912, -0.011793452315032482, 0.006934550125151873, -0.0028220047242939472, -0.005435096565634012, -0.0018953762482851744, -0.002538961824029684, 0.05067814886569977, 0.0017858656356111169, -0.013909534551203251, 0.005027380306273699, 0.01771039515733719, 0.0033341774251312017, 0.020999085158109665, 0.006705420091748238, 0.0005820911028422415, -0.0010521444492042065, -0.023452121764421463, -0.006034878082573414, 0.0013267634203657508, -0.00952237006276846, 0.010903889313340187, -0.0018246155232191086, -0.02465168572962284, 0.03404601290822029, 0.016861267387866974, -0.005381183698773384, 0.00684357201680541, 0.004110860638320446, -0.009279762394726276, 0.01572909578680992, -0.016322137787938118, -0.0314042791724205, -0.01934126205742359, 0.01611996442079544, 0.023142123594880104, -0.004151295404881239, 0.0018599958857521415, 0.013734317384660244, -0.02682168036699295, -0.0037806439213454723, -0.0009038838907144964, -0.0023890165612101555, 0.027819069102406502, -0.028951240703463554, 0.014394750818610191, -0.0053744446486234665, 0.03035297617316246, 0.01792604848742485, 0.012339320965111256, -0.015041706152260303, 0.013141275383532047, -0.010573672130703926, 0.00952237006276846, 0.005542922765016556, 0.008390199393033981, 0.03226688504219055, 0.0025945594534277916, 0.004491620697081089, -0.010964540764689445, 0.003814339404925704, -0.024193424731492996, -0.005630531348288059, 0.020729519426822662, -0.008181286044418812, -0.0016224420396611094, 0.006173030007630587, -0.010694976896047592, 0.0026198311243206263, 0.019839957356452942, 0.009461718611419201, 0.023115167394280434, 0.03633731231093407, 0.010641063563525677, 0.013525404967367649, -0.011934974230825901, -0.015971703454852104, -0.010223238728940487, 0.009926717728376389, 0.018303439021110535, 0.012763884849846363, -0.015338227152824402, -0.011719321832060814, -0.00026977522065863013, 0.0006722267717123032, 0.02734733186662197, -0.023923860862851143, 0.002704070182517171, -0.00026977522065863013, -0.0030376564245671034, -0.003760426538065076, 0.0016333931125700474, 0.004494990222156048, 0.012170842848718166, 0.008194765076041222, -0.005617052782326937, -0.0029854283202439547, -0.0005799851496703923, 0.01264932006597519, 0.022576037794351578, -0.023721687495708466, -0.0036829267628490925, 0.001461545703932643, -0.026174725964665413, 0.004700533114373684, 0.004838685039430857, -0.0030511345248669386, -0.008464328944683075, -0.003649231046438217, -0.009178675711154938, 0.02148430049419403, 0.028007764369249344, -0.010742150247097015, -0.021659517660737038, 0.009549327194690704, 0.02023082599043846, -0.003955861087888479, 0.014408228918910027, -0.00842389464378357, 0.018478654325008392, -0.010998236946761608, 0.006321290507912636, -0.0014345892705023289, -0.012629102915525436, 0.03450427204370499, 0.008457589894533157, 0.005788900423794985, 0.0007707863696850836, -0.00017700708121992648, 0.0001419426262145862, 0.013869100250303745, 0.0031589604914188385, -0.000994019559584558, -0.0048993369564414024, 0.008093677461147308, 0.009724544361233711, 0.010088455863296986, 0.007001941092312336, -0.010573672130703926, -0.010398455895483494, 0.020190389826893806, -0.0018094525439664721, 0.014030838385224342, -0.0011321714846417308, 0.022953428328037262, 0.005536183714866638, 0.015890834853053093, 0.006014660932123661, -0.013525404967367649, 0.004397273063659668, 0.013343448750674725, 0.006173030007630587, -0.0020318434108048677, 0.014192577451467514, -0.006846941541880369, 0.004195099696516991, -0.008241938427090645, -0.010802802629768848, 0.03148514777421951, -0.007952156476676464, 0.001293910201638937, 0.002009941264986992, 0.01466431561857462, 0.0037806439213454723, -0.00378738297149539, 0.02579733543097973, -0.017831699922680855, 0.0038042308297008276, -0.01768343895673752, 0.010863454081118107, 0.00013520350330509245, -0.0165647454559803, -0.0012138831662014127, -0.01611996442079544, -0.024301251396536827, -0.03126949816942215, 0.018909959122538567, -0.006604333408176899, -0.005189118906855583, 0.023007340729236603, 0.0024462989531457424, 0.000969590269960463, -0.009468457661569118, -0.007001941092312336, -0.002311516785994172, 0.006317920982837677, 0.013720839284360409, -0.010061499662697315, -0.007055853959172964, -0.009084328077733517, 0.008989980444312096, -0.027468634769320488, -0.003474014112725854, 0.015553878620266914, 0.01339736208319664, -0.009771717712283134, 0.0038345567882061005, 0.019637783989310265, -0.01768343895673752, -0.010849975980818272, -0.0006983408820815384, 0.01915256679058075, 0.018559524789452553, 0.0015466270269826055, -0.021228214725852013, 0.026417333632707596, 0.01031084731221199, -0.000314632459776476, -0.002082386752590537, -0.024772988632321358, 0.0018515720730647445, 0.0019408653024584055, 0.022333430126309395, 0.011968669481575489, 0.011732799932360649, 0.0003666499978862703, -0.03040689043700695, 0.00196613697335124, -0.030164280906319618, -2.4297671188833192e-05, 0.007284983992576599, 0.0017976590897887945, -0.013633230701088905, -0.003922165371477604, 0.03377644717693329, -0.017602570354938507, -0.024139512330293655, -0.003260047174990177, 0.004181621130555868, -0.009576283395290375, -0.0010706769535318017, 0.0006814930820837617, -0.007709548342972994, 0.0021548322401940823, -0.021214736625552177, -0.004986945539712906, -0.01664561592042446, -0.004373685922473669, 0.012952580116689205, 0.014408228918910027, -0.004922924097627401, -0.0016089638229459524, -0.021106909960508347, 0.029706021770834923, -0.010223238728940487, 0.03636426851153374, 0.00010414039570605382, -0.005175640806555748, -0.01706344075500965, 0.004114230163395405, -0.0010900519555434585, 0.00799259077757597, -0.018640393391251564, 0.006654876749962568, 0.030972976237535477, 0.012467363849282265, -0.008868676610291004, 0.004306294955313206, 0.020284738391637802, 0.0027866242453455925, -0.02771124430000782, 0.02663298510015011, -0.007736505009233952, -0.02370820939540863, 0.008026286959648132, 0.0017302680062130094, -0.018990827724337578, 0.0006440067663788795, -0.03237470984458923, -0.009886282496154308, -0.018492134287953377, 0.00956280529499054, -0.011261062696576118, 0.02331734076142311, -0.000476792425615713, 0.003340916708111763, -0.0009603239595890045, -0.015553878620266914, -0.0007691015489399433, -0.016726484522223473, 0.00779041787609458, 0.0027478744741529226, -0.0076758526265621185, 0.02674081176519394, -0.012945841066539288, 0.022576037794351578, 0.005411509890109301, 0.02378907799720764, -0.021309083327651024, 0.0029618414118885994, -0.0015163010684773326, 0.015365183353424072, -0.020352128893136978, 0.03188949450850487, 0.0008853513281792402, -0.00956280529499054, 0.006850311066955328, -0.0077162873931229115, 0.014448664151132107, -0.032617319375276566, 0.011362149380147457, -0.009569544345140457, -0.01823604665696621, -0.02109343186020851, -0.00832280796021223, 0.014960836619138718, -0.03817035257816315, 0.008963024243712425, 0.008767589926719666, -0.003635752946138382, -0.013100841082632542, -1.1023455954273231e-05, 0.0026619506534188986, -0.0003735997306648642, -0.0040636868216097355, 0.003103362862020731, 0.000799427623860538, -0.035339921712875366, 0.0005125940078869462, -0.029652109369635582, 0.0018145069479942322, 0.0016889908583834767, 0.010876933112740517, -0.027023853734135628, 0.002892765449360013, -0.01514953188598156, 0.0037065136712044477, -0.02457081526517868, -0.025635596364736557, -0.013013232499361038, 0.01287171058356762, 0.009387588128447533, -0.010304108262062073, 0.025756899267435074, -1.6031724953791127e-05, -0.009185414761304855, -0.00398281728848815, 0.021470822393894196, 0.014637359417974949, -0.012056278064846992, -0.005991073790937662, -0.0028135806787759066, -0.02768428809940815, 0.04350773245096207, -0.00808693841099739, 0.009158458560705185, 0.020877780392766, 0.008444111794233322, -0.0036189050879329443, 4.1382383642485365e-05, 0.013336709700524807, 0.006196616683155298, -0.0051116193644702435, 0.0072782449424266815, 0.029112979769706726, -0.007022158708423376, 0.006877267733216286, 0.014408228918910027, 0.01293910201638937, 0.0011566007742658257, 0.010607368312776089, -0.007797156926244497, -0.027360809966921806, 0.020136477425694466, -0.004205208271741867, 0.00626063859090209, 0.0006890745717100799, -0.02554124779999256, -0.01131497509777546, -0.004562381189316511, 0.003175808349624276, 0.008316068910062313, 0.006735746283084154, -0.014610403217375278, 0.0009822261054068804, -0.006371833849698305, 0.015998661518096924, -0.0023165710736066103, -0.017440831288695335, 0.004636511672288179, 0.009778456762433052, 0.0034908619709312916, -0.02454385906457901, 0.012413451448082924, 0.02412603422999382, 0.01368714403361082, 0.005859660916030407, 0.025581683963537216, -0.0064998771995306015, 0.0009923347970470786, 0.009738022461533546, -0.00851824227720499, 0.02218516916036606, 0.0019189631566405296, -0.013949969783425331, -0.0008503921562805772, 0.005563139915466309, 0.026363421231508255, -0.008774328976869583, -0.021228214725852013, 0.0011667093494907022, -0.016497354954481125, -0.01138236653059721, 0.004087273497134447, -0.0065740072168409824, -0.01771039515733719, 0.028115591034293175, -0.0010336118284612894, -0.0002449247404001653, -0.012541494332253933, 0.0005420776433311403, -0.028331242501735687, -0.0038379263132810593, 0.01973213069140911, -0.011726060882210732, 0.04091991111636162, 0.022805167362093925, 0.010984758846461773, 0.011133018881082535, -0.00978519581258297, 0.012467363849282265, 0.008949545212090015, -0.004279338289052248, 0.01095106266438961, 0.01300649344921112, -0.004986945539712906, 0.0004788984078913927, 0.017238657921552658, -0.009057371877133846, -0.0033105905167758465, 0.01199562568217516, -0.013538883067667484, 0.018357351422309875, -0.006749224383383989, 0.01337040588259697, -0.004026621580123901, 0.011220627464354038, 0.02176734432578087, 0.013121058233082294, -0.014529533684253693, -0.0034369491040706635, 0.014219533652067184, 0.01637605018913746, 0.01800691708922386, -0.005249771289527416, 0.006509985774755478, 0.01640300825238228, -0.03579818084836006, 0.014125186018645763, 0.014192577451467514, -0.010425412096083164, -0.02245473302900791, -0.0007198217790573835, 0.014381272718310356, -0.011011715047061443, -0.013316492550075054, 0.009468457661569118, -0.005081293173134327, 0.008639546111226082, -0.012056278064846992, -0.006705420091748238, 0.005772052798420191, -0.007938678376376629, -0.016241269186139107, 0.008410416543483734, 0.015001271851360798, 0.018505612388253212, 0.021551690995693207, -0.04043469578027725, 0.005007163155823946, 0.009684109129011631, -0.0008449166198261082, -0.006301073357462883, -0.001515458687208593, 0.007514114025980234, -0.0006743327830918133, -0.007783678825944662, -0.023330818861722946, 0.01842474192380905, -0.011335192248225212, 0.009239327162504196, -0.011746278963983059, 0.005863030441105366, -0.015513444319367409, -0.00122651900164783, 0.017413875088095665, 0.003376296954229474, -0.0023654296528548002, 0.03838600218296051, 0.022360386326909065, -0.00241428823210299, 0.027252983301877975, -0.005323901306837797, 0.026862114667892456, 0.012507799081504345, -0.011806930415332317, -0.0037536874879151583, -0.0017673331312835217, -0.01862691529095173, 0.007615200709551573, 0.007170419208705425, 0.013255840167403221, 0.0053407493978738785, -0.0008487073937430978, 0.0005420776433311403, -0.02943645790219307, 0.013154753483831882, -0.003955861087888479, -0.018990827724337578, 0.014853010885417461, 0.012009103782474995, -0.01692865788936615, -0.0017942895647138357, 0.008275633677840233, -0.0038480351213365793, 0.012629102915525436, 0.010957801714539528, -0.002538961824029684, 0.0060011823661625385, 0.026201682165265083, 0.01748126558959484, 0.016308659687638283, 0.0022087451070547104, 0.01567518338561058, 0.001925702323205769, -0.0017336375312879682, -0.002717548282817006, -0.008194765076041222, 0.006419007666409016, -0.021160822361707687, -0.018478654325008392, -0.027509070932865143, 0.008235199376940727, -0.058603350073099136, -0.014367794618010521, -0.008996719494462013, 0.01687474548816681, 0.010256933979690075, 0.00667846342548728, -0.009751500561833382, -0.011126279830932617, 0.004238903988152742, -0.014138665050268173, 0.010944323614239693, -0.01926039345562458, -0.017885612323880196, -0.0028843414038419724, -0.018384307622909546, 0.002341842744499445, 0.005674335174262524, 0.014165621250867844, -0.013572579249739647, 0.0062707471661269665, -0.012811059132218361, -0.012972797267138958, 0.007736505009233952, -0.009010197594761848, 0.01998821645975113, -0.009987369179725647, 0.01792604848742485, 0.007298462092876434, -0.025500813499093056, -0.009495413862168789, -0.015378662385046482, -0.02195603959262371, 0.0024799946695566177, 0.015405618585646152, 0.011759757064282894, 0.000437621318269521, 0.010762367397546768, -0.030056456103920937, -0.013404101133346558, 0.0025490703992545605, -0.011180193163454533, -0.022468211129307747, 0.005536183714866638, 0.008268894627690315, 0.00888215471059084, 0.01603909581899643, -0.0025002118200063705, 0.006833463441580534, 0.00934041477739811, 0.011934974230825901, 0.0026130920741707087, -0.00849128607660532, 0.0012113560223951936, 0.011975408531725407, 0.00222053867764771, -0.013869100250303745, 0.026188204064965248, -0.024867337197065353, 0.007116506341844797, -0.030784280970692635, 0.030568629503250122, 0.02200995199382305, -0.014745185151696205, 0.002045321511104703, 0.004077164921909571, -0.00849128607660532, -0.012622363865375519, 0.02451690286397934, 0.04110860452055931, 0.03372253477573395, -0.02954428270459175, 0.011490192264318466, -0.027050809934735298, 0.0018161917105317116, -0.0097582396119833, -0.005886617582291365, 0.0142734469845891, 0.001453121774829924, 0.01378823071718216, -0.007958895526826382, 0.01518996711820364, -0.0052632493898272514, 0.0006789658800698817, -0.014017360284924507, -0.013114319182932377, -0.0033729274291545153, 0.00536433607339859, 0.007783678825944662, -0.005310423206537962, -0.00010319270950276405, 0.03245558217167854, 0.009320196695625782, 0.0024429294280707836, 0.005515966098755598, 0.01524387951940298, -0.0035481443628668785, -0.014219533652067184, -0.011591278947889805, 0.020352128893136978, 0.0003268471045885235, 0.0032718407455831766, -0.009414544329047203, -0.031646888703107834, -0.007776939310133457, 0.016780398786067963, -0.013491709716618061, -0.04186338558793068, 0.009778456762433052, -0.009872804395854473, 0.049653805792331696, 0.010688237845897675, 0.015136053785681725, -0.0027209180407226086, 0.017602570354938507, 0.0003217927587684244, 0.01831691712141037, -0.02865472063422203, -0.00016984676767606288, -0.004848793614655733, 0.02148430049419403, 0.003598687704652548, -0.020581258460879326, -0.01909865438938141, -0.0023182558361440897, 0.0023536360822618008, 0.0009906500345095992, -0.0033476557582616806, 0.0036391224712133408, -0.008915849961340427, 0.00737933162599802, -0.010843236930668354, 0.027118202298879623, 0.006644768174737692, 0.002530538011342287, -0.0013646709267050028, -0.007129984442144632, 0.005118358414620161, -0.004639881197363138, -0.01027041207998991, -0.0010462476639077067, -0.00822846032679081, 0.0034605360124260187, -0.0006549577810801566, 0.004521946422755718, -0.009549327194690704, -0.016820833086967468, 0.011732799932360649, -0.008390199393033981, 0.02763037383556366, 0.007204114459455013, 0.013444535434246063, -5.696658627130091e-05, 0.031566016376018524, 0.014367794618010521, 0.005040858406573534, 0.020217347890138626, -0.02098560705780983, -0.012447146698832512, -0.003541405312716961, 0.03310253471136093, -0.015904312953352928, 0.017333004623651505, 0.005633900873363018, -0.006496507674455643, -0.018909959122538567, 0.013936490751802921, 0.002523798728361726, 0.004107491113245487, -0.02176734432578087, -0.025177335366606712, -0.017359962686896324, 0.0174273531883955, 0.0018347242148593068, 0.006654876749962568, 0.019637783989310265, -0.00557998800650239, 0.00832280796021223, 0.0039053175132721663, -0.013168231584131718, -0.02543342299759388, 0.012413451448082924, 0.007884765043854713, -0.0052059669978916645, -0.015904312953352928, 0.005141945090144873, -0.018411263823509216, 0.006779550574719906, 0.00650324672460556, 0.017643004655838013, 0.008120634593069553, 0.0006549577810801566, 0.005236292723566294, 0.004238903988152742, -0.020635172724723816, 0.020284738391637802, -0.011887799948453903, -0.009185414761304855, 0.014556489884853363, -0.006122486665844917, -0.007291723042726517, 0.017589092254638672, -0.007824113592505455, -0.0005218602600507438, -0.020500389859080315, -0.0029214066453278065, -0.01138236653059721, -0.014138665050268173, -0.01469127181917429, 0.007190636359155178, -0.014354316517710686, 0.001706681097857654, -0.004336621146649122, 0.02326342649757862, 0.008154329843819141, -0.019893869757652283, 0.007844330742955208, 0.0072782449424266815, 0.0081004174426198, 0.0065740072168409824, 0.0017454309854656458, 0.022576037794351578, -0.007884765043854713, 0.017575614154338837, -0.023020818829536438, 0.03496253117918968, 0.002757983049377799, -0.002579396590590477, -0.017225179821252823, 0.00368966581299901, 0.030730366706848145, 0.010890411213040352, 0.004040099680423737, 0.010142369195818901, 0.009798673912882805, 0.008134112693369389, 0.024220380932092667, 0.012757145799696445, 0.01572909578680992, 0.012346060015261173, 0.006816615350544453, -0.002965210936963558, -0.0015660020289942622, -0.0027916787657886744, 0.021807778626680374, -0.01345127448439598, 0.007284983992576599, 0.003959230612963438, 0.012622363865375519, -0.01648387685418129, 0.0023485817946493626, -0.015863878652453423, -0.0012475787661969662, -0.0024345056153833866, 0.027037331834435463, 0.01959734782576561, -0.0003666499978862703, -0.015998661518096924, 0.00735237542539835, 0.026026464998722076, 0.025339074432849884, -0.002987113082781434, 0.011813669465482235, 0.011294757947325706, -0.017157789319753647, -0.004882489331066608, -0.036256443709135056, -0.007392809726297855, -0.001988039119169116, 0.0033072209917008877, 0.0013528774725273252, 0.006921072024852037, -0.014233012683689594, 0.025635596364736557, -0.020823867991566658, -0.013235623016953468, -0.030029499903321266, 0.013114319182932377, -0.0013579317601397634, 0.013781491667032242, -0.010802802629768848, -0.03242862597107887, 0.016308659687638283, 0.003017439041286707, 0.007648896425962448, 0.024031685665249825, 0.010789324529469013, -0.00439053401350975, 0.0010226607555523515, -0.030568629503250122, -0.004373685922473669, -0.014313881285488605, 0.014394750818610191, 0.004060317296534777, -0.008039765059947968, -0.04000338912010193, -0.011651931330561638, 0.02331734076142311, -0.010890411213040352, -0.01031084731221199, 0.023007340729236603, 0.0010395086137577891, -0.008693459443747997, -0.007830852642655373, 0.013896056450903416, 0.0017386918189004064, 0.0032886883709579706, -0.019449088722467422, -0.018101263791322708, -0.009502152912318707, 0.030730366706848145, -0.016281703487038612, -0.010122152045369148, 0.052133798599243164, -0.010263673029839993, -0.007129984442144632, 0.01839778572320938, -0.0052632493898272514, 0.003276895033195615, 0.016807354986667633, 0.0006031508673913777, -0.006280855741351843, -0.0023671144153922796, -0.0050543369725346565, 0.010782585479319096, 0.016281703487038612, 0.005745096132159233, -0.00516890175640583, -0.003443688154220581, 0.00601803045719862, 0.008983241394162178, -0.013491709716618061, 0.004252382088452578, -0.02351951412856579, -0.0035245574545115232, -0.009205631911754608, 0.013869100250303745, 0.001258529839105904, 0.007345635909587145, -0.022036908194422722, -0.015998661518096924, 0.002077332464978099, -0.007150201592594385, 0.006280855741351843, -0.013350187800824642, 0.022225603461265564, -0.009663891978561878, 0.00478140264749527, 0.0019004306523129344, 0.03021819517016411, 0.015499966219067574, -0.023357775062322617, -0.01085671503096819, 0.0018835827941074967, 0.00917193666100502, -0.004778033122420311, 0.00958976149559021, 0.023667775094509125, 0.012804320082068443, -0.010546715930104256, -0.007082810625433922, 0.021416909992694855, -0.014233012683689594, -0.006607702933251858, -0.0034420033916831017, -0.009347153827548027, 0.012197799049317837, 0.009798673912882805, 0.0004159297968726605, 0.003881730604916811, -0.0023064622655510902, 0.024314729496836662, -0.016025617718696594, 0.0024833641946315765, 0.012386494316160679, 0.006968245375901461, -0.006988462992012501, -0.009839109145104885, -0.00017605940229259431, -0.0027630373369902372, -0.004791511222720146, 0.04094686731696129, -0.00022407560027204454, -0.02004213072359562, -0.008484547026455402, -0.0014034208143129945, -0.014610403217375278, 0.00013499290798790753, 0.0003910793166141957, -0.009488674812018871, 0.004676946438848972, 0.004862272180616856, -0.01466431561857462, -0.004885858856141567, -0.006860419642180204, 0.004491620697081089, 0.029679065570235252, -0.00818802509456873, -0.015661705285310745, -0.00942128337919712, 0.019395174458622932, -0.0067963982000947, -0.0020402672234922647, -0.014057795517146587, -0.012979536317288876, 0.0006595909362658858, 0.0040502087213099, 0.03649904951453209, 0.012959319166839123, -0.014475620351731777, -0.0025052663404494524, 0.008538459427654743, 0.0007547809509560466, -0.01787213422358036, 0.0032196124084293842, 0.017211701720952988, 0.012656059116125107, 0.0011650245869532228, 0.012878449633717537, 0.006267377641052008, 0.000580827530939132, -0.016268225386738777, -0.016389530152082443, 0.011058888398110867, 0.0015348335728049278, -0.013040188699960709, 0.008161068893969059, 0.0020975498482584953, 0.009818891994655132, -0.011598017998039722, 0.0021076584234833717, 0.00689411535859108, -0.0006528518279083073, -0.013282797299325466, -0.006644768174737692, 0.008666502311825752, 0.010573672130703926, 0.011746278963983059, -0.020877780392766, -0.019691696390509605, 0.005745096132159233, 0.006927811075001955, 0.017602570354938507, 0.015163009986281395, 0.00934041477739811, -0.005529444199055433, 0.003939012996852398, 0.015109097585082054, 0.021416909992694855, 0.013154753483831882, 0.003693035338073969, 0.013431057333946228, -0.005020641256123781, -0.0010150793241336942, -0.004562381189316511, -0.013377144932746887, -0.007177158258855343, -0.029112979769706726, 0.014960836619138718, -0.018869522958993912, -0.002663635415956378, -0.0015516814310103655, -0.012918884865939617, 0.005478900857269764, -0.007399548776447773, -0.014475620351731777, 0.003281949320808053, 0.022993862628936768, -0.016254747286438942, 0.0033864055294543505, -0.0015213553560897708, 0.017130831256508827, -0.02020386792719364, -0.028169503435492516, -0.012817798182368279, 0.012298885732889175, 0.005424987990409136, 0.0006136807496659458, -0.00456575071439147, 0.005391292739659548, 0.011759757064282894, -0.0004675261443480849, -0.006412268616259098, -0.008794546127319336, 0.018519090488553047, -0.018465176224708557, -0.029112979769706726, -0.0015398879768326879, -0.01912561058998108, -0.02048691175878048, 0.0030679823830723763, -0.010459107346832752, 0.01797996088862419, -0.018492134287953377, 0.016470398753881454, 0.004697163589298725, 0.022724298760294914, 0.0032162428833544254, 0.029193848371505737, -0.004811728373169899, -0.0022222234401851892, -0.019449088722467422, 0.009448240511119366, 0.012366277165710926, -0.0009738022345118225, -0.00014604927855543792, 0.009097806178033352, -0.005691183265298605, -0.0045556421391665936, -0.02734733186662197, -0.017440831288695335, 0.002757983049377799, -0.0249616838991642, -0.0050543369725346565, 0.002798417815938592, -0.008814763277769089, -0.0017193169333040714, 0.0071434625424444675, -0.00044014849117957056, 0.010452368296682835, -0.02593211643397808, -0.022171691060066223, 0.022912994027137756, 0.02182125672698021, -0.0027377656660974026, 0.01131497509777546, 0.0034672750625759363, 0.009764978662133217, -0.00851824227720499, -0.003014069516211748, 0.01740039698779583, -0.008403677493333817, -0.0036526008043438196, -0.013666926883161068, -0.006766072008758783, 0.0013217090163379908, 0.01138236653059721, -0.018101263791322708, 0.0008137482218444347, -0.017723875120282173, 0.0004986945423297584, 0.001126274699345231, -0.002941624028608203, 0.01095106266438961, -0.012730189599096775, -0.0013604590203613043, -0.005182379856705666, -0.00963019672781229, 0.01228540763258934, -0.01300649344921112, -0.010203021578490734, -0.015041706152260303, 0.011833887547254562, -0.01066128071397543, 0.006415638141334057, 0.005465422756969929, 0.014933880418539047, 0.0002798838831949979, 0.006536941975355148, -0.02357342652976513, -0.0030612433329224586, 0.010479324497282505, 0.02276473306119442, 0.017831699922680855, -0.0037098831962794065, -0.010384976863861084, 0.025810813531279564, 0.01518996711820364, 0.02846602536737919, 0.01199562568217516, -0.011368888430297375, -0.000510487996507436, 0.008558676578104496, -0.0009847532492130995, -0.007520853076130152, -0.006098899524658918, 0.01521692331880331, -0.007884765043854713, 0.005590096581727266, -0.03466600924730301, 0.009872804395854473, 0.01648387685418129, -0.013222144916653633, -0.04345381632447243, -0.003196025500074029], "9cd46042-f358-4a40-81c6-18aee50f8df3": [-0.013212641701102257, -0.010646115057170391, -0.008611601777374744, 0.01693088933825493, -0.07862105965614319, -0.02553664520382881, -0.012604625895619392, 0.010377185419201851, 0.007682040333747864, 0.03860897570848465, 0.028225943446159363, 0.010289490222930908, 0.017597367987036705, 0.014288361184298992, 0.02177162654697895, -0.020333437249064445, 0.02363075129687786, 0.00975747685879469, 0.025396334007382393, -0.015434236265718937, 0.044198039919137955, -0.017363514751195908, -0.010435648262500763, 0.0048348912969231606, 0.0003089405072387308, -0.044104497879743576, -0.0061444626189768314, 0.016802269965410233, -0.03400208801031113, -0.010184257291257381, 0.012850170955061913, -0.01831061579287052, -0.009389160200953484, 0.021783318370580673, 0.02088298834860325, -0.028249328956007957, -0.03383839130401611, -0.00556275574490428, -0.009886096231639385, 0.0006222657393664122, -0.0262615866959095, 0.03596644476056099, -0.018123535439372063, 0.012943711131811142, -0.01380896382033825, -0.009383314289152622, 0.008395289070904255, -0.009055920876562595, 0.01717643439769745, -0.0003858559066429734, 0.022145789116621017, -0.005340596195310354, -0.01966695860028267, -0.018029993399977684, 0.06248527020215988, -0.02411014772951603, 0.0024832165800035, 0.049810487776994705, -0.02255503088235855, -0.06314005702733994, -0.006319852080196142, -0.0016968890558928251, -0.023198124021291733, -0.005133052822202444, 0.027313919737935066, 0.007325415965169668, 0.02401660569012165, 0.011236591264605522, -0.014966531656682491, -0.012932018376886845, 0.0036744005046784878, 0.04076041281223297, -0.03500765189528465, 0.0300733745098114, 0.02729053609073162, -0.00034840303123928607, -0.004089487716555595, 0.005422444548457861, 0.022122405469417572, 0.006483548320829868, 0.03610675781965256, -0.0021295154001563787, 0.018392464146018028, 0.024086762219667435, 0.02612127549946308, 0.022227637469768524, 0.02020481787621975, -0.045133449137210846, -0.0076703475788235664, -0.04134504497051239, 0.01640472188591957, 0.025489874184131622, -0.015738243237137794, -0.011330132372677326, 0.00029578630346804857, -0.006635552272200584, -0.035264890640974045, 0.014966531656682491, 0.028670262545347214, 0.007676193956285715, 0.02612127549946308, 0.006653090938925743, 0.004191798157989979, -0.005141822155565023, -0.005317211151123047, -0.013925890438258648, -0.010155025869607925, 0.04101765155792236, -0.03423594310879707, -0.010745502077043056, 0.03201434761285782, -0.04679379612207413, -0.0008111743372865021, 0.0063256979919970036, -0.017877990379929543, 0.014335131272673607, -0.011897223070263863, 0.01181537564843893, 0.014066201634705067, -0.021830089390277863, -0.00844205915927887, -0.029652440920472145, 0.027267150580883026, -0.00424733804538846, 0.0024539849255234003, 0.02724376507103443, -0.035709209740161896, -0.024624621495604515, 0.029114581644535065, 0.03241189569234848, 0.004323340021073818, -0.01544592808932066, 0.005302595440298319, -0.0345633327960968, 7.476871542166919e-05, 0.006243850104510784, 0.02186516672372818, 0.06856542080640793, 0.0007033831207081676, 0.024835089221596718, -0.025115711614489555, -0.010412262752652168, -0.04454881697893143, 0.020812833681702614, 0.01339972298592329, -0.02191193774342537, -0.012113536708056927, 0.027688084170222282, -0.014580675400793552, -0.0039024061989039183, -0.033417459577322006, 0.021514389663934708, -0.019900809973478317, 0.0285065658390522, 0.07249414175748825, 0.00910269096493721, 0.0026059888768941164, 0.019982658326625824, -0.005121360067278147, 0.07735826075077057, 0.03622368350625038, -0.06636721640825272, -0.031944192945957184, -0.01105535589158535, 0.07132487744092941, 0.01123074535280466, 0.038375124335289, 0.02011127769947052, 0.03444640710949898, 0.004387649241834879, 0.013259411789476871, 0.01078642625361681, 0.01537577249109745, -0.004902123939245939, 0.028225943446159363, -0.04052656143903732, 0.03881944343447685, -0.010675346478819847, 0.039708077907562256, -0.01712966337800026, -0.026074504479765892, -0.027220379561185837, 0.03245866671204567, -0.03874928504228592, -0.044735897332429886, 0.02792193554341793, -0.02586403675377369, 0.031172478571534157, 0.008728528395295143, 0.0072552599012851715, -0.054440759122371674, -0.0026439898647367954, 0.014966531656682491, 0.019947580993175507, -0.010745502077043056, -0.024484310299158096, 0.03439963608980179, 0.015551161952316761, 0.009289773181080818, 0.05154099315404892, 0.002698068041354418, -0.03996531665325165, 0.00810297392308712, 0.01835738681256771, -0.028927499428391457, 0.011183974333107471, -0.02738407626748085, -0.03669138625264168, -0.007237721234560013, -0.009997175075113773, 0.035896290093660355, 0.004434419795870781, 0.012709859758615494, 0.0016661959234625101, -0.01742197759449482, 0.016194254159927368, -0.008237439207732677, 0.022473182529211044, 0.011137204244732857, -0.03512457758188248, -0.0199709665030241, 0.020953144878149033, 0.009336543269455433, 0.0029889217112213373, -0.05584387108683586, 0.03446979448199272, -0.012008302845060825, 0.014943146146833897, -0.03206111863255501, -0.05944519490003586, 0.028155788779258728, -0.027898550033569336, 0.059912897646427155, -0.01517699845135212, 0.011458750814199448, 0.0034083938226103783, 0.005147668533027172, -0.009289773181080818, -0.023712599650025368, -0.03245866671204567, 0.004221029579639435, 0.012160306796431541, -0.014112971723079681, -0.0035954753402620554, -0.0336746945977211, -0.0236775204539299, 0.017386900261044502, 0.05635834485292435, 0.011827067472040653, 0.014802834950387478, -0.03982500731945038, 0.022671956568956375, -0.0034931651316583157, -0.003265159437432885, -0.02040359191596508, -0.0015960403252393007, 0.01786629669368267, 0.0004812236875295639, 0.012148614041507244, 0.041999828070402145, -0.018392464146018028, -0.036831699311733246, -0.03498426824808121, 0.02161962352693081, 0.031990960240364075, -0.03542858734726906, 0.022134097293019295, -0.011698449030518532, 0.00927223451435566, 0.017094586044549942, -0.0111079728230834, -0.020438669249415398, -0.03779049217700958, 0.06136278063058853, -0.014615753665566444, -0.016369644552469254, 0.016369644552469254, -0.004525037482380867, 0.019491568207740784, 0.0032973140478134155, 0.0008769452106207609, 0.021876860409975052, 0.0023896757047623396, 0.007524190004914999, 0.001148798270151019, 0.01510684285312891, -0.011335978284478188, -0.012709859758615494, -0.0007826735964044929, 0.02967582643032074, 0.005328903906047344, 0.007442341651767492, 0.011943994089961052, 0.023315049707889557, 0.01620594784617424, 0.005042435135692358, -0.009839325211942196, -0.00363055313937366, -0.033955320715904236, 0.005299672484397888, 0.01631118170917034, 0.010195950046181679, 0.02225102297961712, -0.02240302786231041, 0.024835089221596718, -0.007939277216792107, 0.03250543773174286, 0.043169088661670685, -0.015118535608053207, 0.03285621479153633, 0.012850170955061913, -0.028717033565044403, -0.05369243398308754, -0.031008783727884293, 0.005723529029637575, 0.04012901335954666, -0.028857344761490822, 0.007886660285294056, 0.0005294556613080204, -1.5985981008270755e-05, -0.016147485002875328, -0.015013301745057106, -0.03400208801031113, 0.005021973047405481, -0.00861744862049818, -0.04471251368522644, 0.043169088661670685, -0.02810901775956154, -0.007015561684966087, -0.0067115542478859425, -0.042982008308172226, 0.0071675656363368034, 0.012312310747802258, -0.026191430166363716, -0.018918631598353386, 0.018146919086575508, -0.05935165286064148, -0.022344565019011497, -0.015235461294651031, -0.006951252464205027, -0.022099019959568977, -0.011943994089961052, 0.017609059810638428, -0.03711232170462608, -0.003765018191188574, 0.005507215857505798, -0.004907969851046801, -0.01490806881338358, -0.02733730524778366, -0.008535600267350674, 0.0007413841085508466, 0.005378597415983677, 0.036972008645534515, -0.012183692306280136, 0.03765018284320831, -0.03147648647427559, -0.04403434321284294, -0.013563419692218304, 0.004571807570755482, 0.009734092280268669, -0.017445363104343414, -0.058696866035461426, -0.01151721365749836, -0.04162566736340523, -0.006553703919053078, 0.012417544610798359, 0.020462054759263992, -0.004902123939245939, -0.013586804270744324, -0.0019073558505624533, -0.009529471397399902, 0.0025475258007645607, -0.0023487515281885862, -0.04340294376015663, -0.035709209740161896, -0.03786064684391022, 0.027641313150525093, -0.016474878415465355, 0.005495523568242788, 0.00661216676235199, -0.006097692530602217, 0.0012284540571272373, -0.03762679547071457, -0.0031306943856179714, 0.018965402618050575, 0.01703612320125103, -0.022999349981546402, 0.0003445663896854967, 0.009184539318084717, -0.006261388771235943, -0.023735983297228813, -0.02386460267007351, -0.03470364585518837, 0.012125229462981224, -0.046934109181165695, -0.026916371658444405, -0.011312593705952168, -0.05378597229719162, 0.02157285250723362, -0.026144661009311676, -0.03573259338736534, 0.013317874632775784, 0.012043381109833717, 0.019292794167995453, 0.00881037674844265, 0.004297031555324793, 0.02787516452372074, 0.005594910588115454, -0.004153797402977943, 0.014381901361048222, -0.004323340021073818, 0.0023502132389694452, 0.019351257011294365, 0.03287959843873978, 0.034680258482694626, 0.013411415740847588, -0.024905243888497353, 0.043215859681367874, 0.002993306377902627, 0.00900915078818798, 0.022040557116270065, 0.021023299545049667, -0.005065820179879665, 0.046489790081977844, -0.03940407186746597, 0.009628858417272568, 0.030868472531437874, 0.007851582951843739, 0.0021032069344073534, -0.015247154049575329, 0.009903634898364544, 0.03645753487944603, 0.028833959251642227, 0.020999914035201073, -0.032037731260061264, -0.004460727795958519, 0.04525037482380867, 0.023443669080734253, -0.0017758141038939357, -0.031219249591231346, -0.004943048115819693, -0.0052324398420751095, 0.004326262976974249, -0.0381646566092968, -0.05126037076115608, 0.009254694916307926, -0.023011041805148125, -0.01400773786008358, 0.006021690554916859, 0.013563419692218304, -0.0009485624032095075, -0.006009997799992561, -0.04728488624095917, 0.0009361390257254243, -0.0006726900464855134, 0.023759368807077408, 0.02499878592789173, -0.00947100855410099, -0.005606602877378464, -0.030868472531437874, -0.0043174936436116695, 0.014814527705311775, 0.02845979481935501, -0.017258282750844955, 0.004487036261707544, -0.01098520029336214, -0.006588781718164682, -0.03933391720056534, 0.003449317766353488, 0.014545598067343235, 0.002266903407871723, 0.02269534207880497, -0.0006080153398215771, 0.05589064210653305, 0.009219617582857609, -0.04099426418542862, -0.00594276562333107, -0.014826220460236073, -0.02415691688656807, -0.01364526804536581, 0.01103197131305933, -0.011604908853769302, -0.008038664236664772, -0.029956448823213577, -0.023420283570885658, -0.01005563884973526, -0.04496975243091583, -0.015223769471049309, 0.022227637469768524, -0.00015894632088020444, 0.01951495371758938, 0.020029429346323013, -0.019199253991246223, 0.038632359355688095, 0.006518626119941473, -0.004238568712025881, -0.00803281832486391, -0.04700426384806633, -0.018813397735357285, -0.03528827428817749, 0.010920891538262367, -0.008699296973645687, -0.004399341996759176, 0.01645149290561676, -0.026472052559256554, 0.0368083156645298, -0.012055073864758015, 0.015633009374141693, -0.0036510152276605368, -0.012265540659427643, -0.042982008308172226, 0.02909119613468647, -0.024671392515301704, 0.027313919737935066, 0.01000302191823721, 0.01971372775733471, -0.008465444669127464, -0.0031014629639685154, 0.026284972205758095, 0.0017275820719078183, -0.011593216098845005, 0.007606038358062506, 0.019947580993175507, -0.015691472217440605, -0.02323320135474205, 0.008167283609509468, -0.01972542144358158, -0.021070070564746857, 0.026027733460068703, -0.01972542144358158, -0.019737113267183304, 0.0078574288636446, -0.027173608541488647, 0.018719857558608055, 0.012359080836176872, 0.020087892189621925, 0.0057498374953866005, 0.0039024061989039183, 0.0047735050320625305, 0.0012050688965246081, 0.0002413426263956353, -0.0008710988913662732, 0.03475041687488556, -0.009307311847805977, 0.03287959843873978, 0.02450769580900669, 0.00910269096493721, -0.01364526804536581, -0.015539469197392464, 0.011797836050391197, -0.028342869132757187, 0.010651960968971252, -0.04382387548685074, 0.009126076474785805, 0.005401982460170984, 0.007945124059915543, -0.0019789731595665216, -0.0008199437870644033, -0.02372429147362709, -0.020473748445510864, 0.009143615141510963, 0.01220707781612873, 0.019491568207740784, 0.015258846804499626, -0.026729289442300797, -0.030985398218035698, -0.030868472531437874, 0.0323183536529541, -0.0003628360864240676, 0.011511367745697498, 0.03397870436310768, 0.0010479495394974947, 0.05359889194369316, 0.007027254439890385, 0.0023502132389694452, 0.024437539279460907, 0.02743084728717804, 0.009383314289152622, -0.0014089586911723018, -0.005437060259282589, 0.02553664520382881, -0.00726110627874732, -0.0025241407565772533, 0.013259411789476871, 0.015749936923384666, -0.010646115057170391, 0.0015331925824284554, -0.004922586027532816, 0.019210945814847946, 0.024952014908194542, 0.010383031331002712, 0.01620594784617424, 0.014381901361048222, -0.0009580626501701772, -0.010616883635520935, 0.03035399690270424, 0.04178936406970024, 0.005545217078179121, -0.0008206745842471719, -0.010266105644404888, 0.025443103164434433, -0.009365774691104889, 0.0026586055755615234, -0.01459236815571785, -0.021549466997385025, 0.022332871332764626, -0.009851017966866493, 0.041321657598018646, -0.0036042449064552784, 0.03587290644645691, 0.013610189780592918, 0.01665026694536209, 0.0018138149753212929, -0.020321743562817574, -0.0038293274119496346, -0.007892507128417492, -0.01000302191823721, 0.027313919737935066, 0.0019322026055306196, 0.06267235428094864, 0.01742197759449482, -0.02450769580900669, 0.023946451023221016, -0.01889524608850479, 0.012592933140695095, 0.012791707180440426, 0.0003917021967936307, -0.004931355360895395, -0.010295337066054344, -0.011376902461051941, -0.013925890438258648, -0.036925241351127625, 0.011201513931155205, -0.002800378482788801, 0.0206491369754076, -0.024273844435811043, -0.007570960558950901, 0.007559267804026604, 0.02084791101515293, -0.017001044005155563, -0.0011392979649826884, 0.02352551743388176, 0.007623577024787664, 0.042841698974370956, -0.009699014015495777, 0.048547688871622086, 0.0008564831805415452, 0.02752438746392727, -0.008512214757502079, 0.030237071216106415, -0.024577850475907326, 0.02612127549946308, 0.01306063774973154, 0.012709859758615494, 0.002955305390059948, -0.01227723341435194, 0.008588217198848724, 0.01103197131305933, 0.03573259338736534, 0.006097692530602217, 0.0332069918513298, -0.019351257011294365, 0.018380772322416306, -0.01132428552955389, 0.03830496594309807, 0.011318439617753029, 0.0057673766277730465, 0.04267800226807594, -0.0022698265966027975, 0.03945084288716316, 0.029325047507882118, -0.02078944817185402, 0.006951252464205027, -0.022145789116621017, 0.0067407856695353985, -0.0058404551818966866, 0.02577049657702446, -0.026963142678141594, -0.012171999551355839, -0.020812833681702614, -0.022145789116621017, -0.03835173696279526, -0.031219249591231346, 0.021549466997385025, -0.030915241688489914, 0.008582370355725288, -0.027898550033569336, 0.028132403269410133, -0.039170220494270325, -0.016615189611911774, -0.028529951348900795, 0.0019190484890714288, -0.0031482332851737738, 0.01894201710820198, 0.0077755809761583805, -0.009336543269455433, 0.001898586400784552, -0.02874041721224785, 0.023127969354391098, -0.015013301745057106, -0.027267150580883026, 0.0018576623406261206, 0.0062964665703475475, -0.036293838173151016, 0.047565508633852005, 0.015633009374141693, -0.016615189611911774, -0.026565594598650932, -0.011137204244732857, 0.002768223639577627, -0.008062049746513367, -0.007342954631894827, -0.00196435721591115, 0.02581726759672165, -0.007974355481564999, -0.0002771512372419238, -0.020473748445510864, 0.020672522485256195, -0.012405851855874062, 0.011628293432295322, 0.01937464252114296, -0.0034610105212777853, 0.02644866704940796, -0.044689130038022995, -0.011306746862828732, 0.051961928606033325, 0.005325980484485626, 0.012756629846990108, -0.011809528805315495, -0.006103538908064365, 0.02206394262611866, -0.018521083518862724, 0.022707035765051842, 0.00038622127613052726, 0.01580839976668358, 0.0011268745874986053, 0.01615917682647705, -0.016521647572517395, 0.016872426494956017, -0.03802434355020523, -0.012288925237953663, 0.020345129072666168, 0.01339972298592329, -0.028155788779258728, 0.026472052559256554, 0.013996046036481857, 0.031757108867168427, -0.009465161710977554, -0.011429519392549992, 0.005396136082708836, 0.0664607584476471, -0.012253847904503345, 0.025302791967988014, 0.02953551523387432, -0.007354647386819124, 0.00568552827462554, 0.023560594767332077, -0.01393758226186037, 0.0026878369972109795, 0.044291578233242035, 0.00581999309360981, 0.014919761568307877, -0.029208121821284294, -0.010084870271384716, -0.012324003502726555, -0.005974920000880957, 0.0066472445614635944, -0.023642443120479584, 0.027711469680070877, 0.017702599987387657, 0.014685909263789654, 0.021748241037130356, 0.02201717160642147, 0.028342869132757187, 0.019807269796729088, -0.036574460566043854, 0.012288925237953663, -0.004107026848942041, -0.00484366063028574, -0.010727963410317898, 0.0010435647564008832, -0.027547772973775864, 0.01801830157637596, -0.0036568616051226854, 0.0024422924034297466, -0.00016890330880414695, 0.0035165504086762667, -0.0006657475605607033, -0.010488265193998814, 0.012078458443284035, -0.002481754869222641, -0.008868839591741562, -0.00033415266079828143, 0.02109345607459545, 0.0314297154545784, -0.012265540659427643, -0.004063179716467857, -0.013540034182369709, -0.020052814856171608, 0.003908252343535423, 0.0042707230895757675, -0.02733730524778366, 0.03765018284320831, 0.0001942068338394165, 0.011154742911458015, 0.002964074956253171, 0.04952986538410187, -0.01654503308236599, -0.0056884512305259705, -0.003721170825883746, 0.022812267765402794, 0.025606799870729446, -0.03128940612077713, 0.022321179509162903, -0.00817312952131033, -0.038047730922698975, -0.03542858734726906, -0.012429237365722656, 0.049670178443193436, -0.03304329514503479, -0.015878554433584213, 0.011581523343920708, 0.017492134124040604, 0.008284209296107292, -0.0103245684877038, -0.0062204645946621895, 0.018135227262973785, -0.0025636032223701477, 0.011014431715011597, -0.0022698265966027975, -0.014615753665566444, -0.008447906002402306, 0.007185104303061962, -0.004627347458153963, -0.020181432366371155, 0.0021631314884871244, -0.00278137787245214, 0.014019430615007877, -0.03280944377183914, 0.04515683278441429, -0.007962662726640701, -0.056592199951410294, 0.010605190880596638, -0.025653570890426636, 0.021806703880429268, 0.0026892987079918385, 0.017316745594143867, 0.019012171775102615, 0.00548967719078064, 0.03685508295893669, 0.030049988999962807, -0.004817352630198002, -0.0031979267951101065, 0.013621882535517216, -0.0015112688997760415, 0.019596802070736885, -0.045811619609594345, 0.0034230095334351063, -0.014756064862012863, 0.010611036792397499, 0.04700426384806633, 0.009038382209837437, -0.03664461895823479, 0.019655264914035797, -0.022999349981546402, 0.008120512589812279, 0.008114666678011417, 0.004621501080691814, 0.03168695420026779, 0.01659180410206318, -0.0007687886245548725, -0.046489790081977844, 0.007185104303061962, -0.016463184729218483, -0.03914683312177658, -0.0036568616051226854, 0.00783404428511858, 0.03446979448199272, -0.02836625464260578, -0.0004001062479801476, -0.020029429346323013, 0.03266913443803787, 0.03491411358118057, -0.02684621699154377, -0.033113449811935425, 0.011411980725824833, 0.007734656799584627, 0.002705375896766782, 0.03898313641548157, 0.005574448499828577, 0.01130090095102787, -0.02499878592789173, -0.033066682517528534, -0.003922868054360151, -0.014112971723079681, 0.01183876022696495, -0.0002826321288011968, -0.010991047136485577, -0.008974072523415089, 0.01767921634018421, 0.019842347130179405, -0.007915892638266087, -0.04111119359731674, -0.006004151422530413, -0.0002879303356166929, -0.03779049217700958, 0.03407224640250206, -0.01831061579287052, -0.0011604907922446728, 0.0172816663980484, -0.002766762161627412, 0.013388030230998993, -0.018100149929523468, 0.0018883553566411138, 0.04655994474887848, 0.004925508983433247, 0.003262236248701811, -0.01889524608850479, -0.011733527295291424, 0.012592933140695095, 0.0047442736104130745, -0.004627347458153963, 0.024577850475907326, -0.011932301335036755, -0.019468184560537338, 0.007448188029229641, -0.029067810624837875, -0.019199253991246223, -0.017854604870080948, 0.01766752265393734, -0.009962097741663456, -0.012078458443284035, -0.0034376252442598343, -0.024671392515301704, -0.022379642352461815, 0.012242155149579048, -0.024437539279460907, -0.010599344968795776, 0.015972096472978592, -0.0073020304553210735, -0.01261631865054369, -0.019585110247135162, 0.010885813273489475, 0.009207924827933311, -0.016030559316277504, -0.0076528084464371204, -0.009114383719861507, 0.0035983985289931297, 0.00323885097168386, -0.008523907512426376, 0.01112551148980856, 0.002619143109768629, -0.007880814373493195, 0.01712966337800026, 0.01938633620738983, -0.005828762426972389, 0.011704295873641968, -0.02133900113403797, -0.005381520371884108, 0.00451334472745657, 0.012628011405467987, -0.04562453553080559, -0.00251975585706532, 0.009161154739558697, 0.005857993848621845, 0.03685508295893669, -0.010061484761536121, 0.010868274606764317, 0.01669703610241413, -0.020730985328555107, 0.013598497025668621, -0.0214325413107872, -0.011242438107728958, 0.04807998239994049, 0.023011041805148125, -0.024881858378648758, -0.01490806881338358, -0.018766628578305244, -0.02738407626748085, -0.0047910441644489765, 0.02743084728717804, 0.0047588893212378025, -0.037018779665231705, -0.02112853340804577, -0.009576241485774517, 0.03159341216087341, 0.0015711935702711344, -0.008588217198848724, -0.012639704160392284, 0.0314297154545784, 0.025513259693980217, -0.014720987528562546, 0.012861862778663635, 0.0012328388402238488, 0.002917304402217269, 0.01220707781612873, -0.0015419620322063565, -0.03512457758188248, -0.007524190004914999, -0.01732843741774559, -0.026635749265551567, 0.001657426473684609, -0.009430084377527237, 0.036831699311733246, -0.008570677600800991, 0.0025679878890514374, 0.005752760451287031, -0.0016661959234625101, -0.003963792230933905, 0.009061767719686031, -0.027781624346971512, -0.016124099493026733, 0.004618578124791384, 0.015878554433584213, -0.011347671039402485, 0.022473182529211044, 0.03161679953336716, 0.0019862810149788857, -0.006056768354028463, -0.0019979735370725393, -0.010955968871712685, -0.01483791321516037, 0.017457056790590286, -0.006004151422530413, -0.018661394715309143, 0.007600191980600357, 0.023759368807077408, 0.019994350150227547, 0.02509232610464096, -0.009453469887375832, -0.01952664740383625, -0.016089022159576416, -0.018509389832615852, -0.005723529029637575, 0.006021690554916859, 0.0002866514550987631, -0.000125238744658418, -0.04534391313791275, -0.016474878415465355, -0.012043381109833717, -0.0026352202985435724, 0.012943711131811142, 0.004484113305807114, 0.01615917682647705, 0.028576722368597984, -0.02332674339413643, 0.031453102827072144, -0.017644137144088745, -0.0018401234410703182, 0.029325047507882118, 0.014089586213231087, 0.013504956848919392, 0.021058378741145134, -0.010482418350875378, 0.001446959562599659, 0.02201717160642147, -0.012557855807244778, 0.013820656575262547, -0.0035750132519751787, 0.018181998282670975, 0.0016340413130819798, -0.004799813497811556, 0.028927499428391457, -0.023899680003523827, 0.008985765278339386, 0.004662425257265568, -0.040105629712343216, 0.018392464146018028, 0.022122405469417572, 0.0023297511506825686, 0.0010530650615692139, -0.0038819441106170416, 0.023548902943730354, 0.0016998121282085776, -0.013002174906432629, 0.023315049707889557, 0.011289208196103573, 0.001688119606114924, 0.026004349812865257, 0.008582370355725288, -0.03084508702158928, -0.021491004154086113, -0.027898550033569336, -0.008243285119533539, -0.008056203834712505, 0.0164982620626688, -0.002107591601088643, 0.016568418592214584, 0.01123074535280466, -0.014136357232928276, -0.01591363176703453, 0.006454316899180412, 0.012932018376886845, 0.003396701067686081, 0.0038819441106170416, 0.0017012737225741148, 0.0003895098343491554, 0.019304487854242325, 0.015773320570588112, -0.007418956607580185, -0.0134698785841465, 0.002376521471887827, 0.030494308099150658, -0.003797172801569104, -0.007442341651767492, 0.0022157481871545315, -0.0015258847270160913, 0.02230948582291603, -0.014802834950387478, -0.012511084787547588, 0.0221107117831707, -0.023174738511443138, 0.012628011405467987, 0.04328601434826851, 0.004659502301365137, -0.0172816663980484, -0.008167283609509468, -0.012218769639730453, -0.012183692306280136, 0.01780783385038376, -0.012464314699172974, -0.013656959868967533, -0.0003686823765747249, -0.019023865461349487, -0.02499878592789173, -0.010967661626636982, 0.005714759696274996, -0.00015711935702711344, -0.0036860930267721415, 0.01124828401952982, 0.01005563884973526, -0.013341260142624378, 0.020333437249064445, -0.006641398649662733, -0.046443019062280655, 0.00581999309360981, 0.027805009856820107, 0.021397463977336884, -0.03070477582514286, -1.4387382179847918e-05, -0.010453186929225922, -0.010295337066054344, -0.006045075599104166, 0.004489959683269262, 0.015586239285767078, -0.030821701511740685, -0.009114383719861507, -0.00673493929207325, 0.026097889989614487, -0.011710141785442829, 0.00831928662955761, 0.008974072523415089, 0.0024247535038739443, -0.005244132596999407, -0.02553664520382881, -0.017246589064598083, 0.02415691688656807, -0.01771429367363453, -0.0078048123978078365, -0.008149744011461735, -0.04503990709781647, -0.01834569312632084, -0.012113536708056927, 0.0011349132983013988, -0.018965402618050575, -0.0062380037270486355, 0.0041245655156672, -0.012499392963945866, 0.021023299545049667, -0.02757115848362446, 0.0031716185621917248, 0.009406698867678642, 0.017106277868151665, -0.014861298725008965, -0.025068940594792366, 0.003276851959526539, -0.006518626119941473, 0.006360775791108608, 0.007734656799584627, 0.022099019959568977, -0.012055073864758015, -0.003317776136100292, 0.0001562058605486527, -0.013107407838106155, -0.002290288684889674, 0.006471855565905571, -0.0027784546837210655, -0.026659134775400162, 0.021070070564746857, 0.023303357884287834, 0.014674216508865356, 0.02411014772951603, -0.01308402232825756, -0.01962018758058548, 0.015083457343280315, -0.01863800920546055, -0.008114666678011417, 0.0017991992644965649, 0.003539935452863574, 0.0005988805205561221, 0.0034405484329909086, -0.01854446902871132, -0.02000604383647442, 0.0018035840475931764, -0.01586686260998249, -0.028038861230015755, -0.014791143126785755, -0.01456898357719183, 0.0023955220822244883, -0.012709859758615494, 0.04480605572462082, 0.009161154739558697, -0.02411014772951603, -0.03528827428817749, -0.008482983335852623, 0.0008206745842471719, 0.018708163872361183, -0.01234738901257515, 0.023396898061037064, -0.03556889668107033, 0.009336543269455433, 0.028389640152454376, 0.009769169613718987, 0.023689214140176773, -0.01748044230043888, 0.02743084728717804, 0.017889682203531265, -0.008868839591741562, -0.009389160200953484, -0.005127206444740295, -0.0051622842438519, -0.012218769639730453, -0.0015989633975550532, 0.002318058628588915, 0.013294489122927189, 0.003984254319220781, 0.017457056790590286, -0.004846584051847458, -0.010248566046357155, 0.030587850138545036, -0.011189821176230907, -0.0018795859068632126, 0.005875532981008291, -0.018065070733428, -0.008728528395295143, 0.028787188231945038, -0.015738243237137794, -0.011026124469935894, -0.02670590579509735, 0.01723489724099636, 0.0005579564021900296, 0.015048380009829998, -0.005138899199664593, 0.018334001302719116, -0.025396334007382393, 0.008330979384481907, -0.008465444669127464, 0.019842347130179405, -0.008582370355725288, 0.018860168755054474, 0.0012752244947478175, -0.020438669249415398, -0.011195667088031769, 0.00615030899643898, 0.010751347988843918, -0.01210184395313263, 2.6468216674402356e-05, -0.009167000651359558, 0.013844042085111141, 0.0015010378556326032, -0.007535882759839296, -0.021876860409975052, -0.005533524323254824, -0.0003482203173916787, 0.000825790106318891, -0.007956815883517265, -0.01991250365972519, -0.02621481567621231, -0.019105713814496994, 0.005340596195310354, 0.0024466770701110363, 0.02904442511498928, 0.04389403015375137, -0.01103197131305933, -0.008237439207732677, -0.012324003502726555, -0.0006726900464855134, 0.017655830830335617, 0.0018883553566411138, -0.023607365787029266, -0.004171336069703102, -0.01942141354084015, -0.001898586400784552, 0.02743084728717804, -0.018918631598353386, 0.009991329163312912, -0.020929759368300438, 0.0005963227595202625, 0.011739373207092285, 0.0368083156645298, -0.0073488010093569756, 0.03026045672595501, -0.02635512687265873, 0.0009894865797832608, 0.018661394715309143, 0.01694258116185665, 0.016919195652008057, 0.007079870905727148, 0.011932301335036755, -0.02738407626748085, -0.0057498374953866005, 0.015925325453281403, -0.004033947829157114, 0.03035399690270424, 0.002543141134083271, 0.002871995558962226, 0.022052248939871788, 0.0014089586911723018, -0.022625187411904335, 0.013107407838106155, 0.0019292795332148671, 0.024180302396416664, -0.002611835254356265, 0.020929759368300438, -0.011710141785442829, 0.035264890640974045, -0.03552212938666344, -0.002698068041354418, -0.0002806224802043289, 0.0066472445614635944, 0.003195003839209676, -0.006366622168570757, -0.0150366872549057, 0.00030181530746631324, 0.001199953374452889, 0.02450769580900669, -0.026542209088802338, 0.010476572439074516, 0.011686756275594234, -0.009044228121638298, -0.02294088713824749, 0.008728528395295143, -1.1030326277250424e-05, 0.028132403269410133, 0.001147336675785482, 0.0024466770701110363, 0.02572372555732727, -0.002414522459730506, 0.02518586628139019, -0.012780015356838703, -0.00805035699158907, 0.010388877242803574, -0.0020578980911523104, -0.0026776061858981848, 0.008219899609684944, -0.0220054779201746, -0.03563905507326126, -0.016533341258764267, -0.0067700170911848545, 0.013376337476074696, -0.023163046687841415, -0.020660828799009323, -0.027992092072963715, -0.02186516672372818, -0.004785197786986828, 0.03079831600189209, 0.020193126052618027, -0.014662523753941059, 0.005875532981008291, -0.008436213247478008, -0.04001208767294884, 0.0067232465371489525, -0.0019263563444837928, -0.015726551413536072, -0.021759934723377228, -0.020578980445861816, -0.009435930289328098, -0.009424237534403801, 0.006676476448774338, 0.009430084377527237, 0.020193126052618027, 0.029301663860678673, -0.0014257667353376746, 0.0047705820761621, 0.013890812173485756, -0.010996893048286438, 0.007956815883517265, 0.013540034182369709, 0.004016409162431955, 0.00085867551388219, -0.013575112447142601, 0.017983222380280495, 0.02909119613468647, 0.008681757375597954, 0.0034171631559729576, -0.039801619946956635, -0.02450769580900669, -0.019491568207740784, 0.002753607928752899, 0.012253847904503345, -0.015773320570588112, 0.004910893272608519, -0.009120230562984943, 0.019877424463629723, -0.007623577024787664, -0.003689016215503216, 0.006430931389331818, -0.024039991199970245, 0.03196757659316063, -0.0026819908525794744, 0.005869686603546143, -0.003870251588523388, 0.03227158263325691, -0.021502695977687836, 0.03318360820412636, 0.0047705820761621, -0.007582652848213911, -0.0076995790004730225, 0.01995927281677723, -0.02074267715215683, 0.006658937316387892, 0.0004625885921996087, -0.006261388771235943, -0.009728245437145233, -0.007676193956285715, -5.6499022321077064e-05, 0.001905894256196916, -0.006372468546032906, 0.004767658654600382, -0.016369644552469254, 0.026518823578953743, -0.015270539559423923, 0.00685771182179451, -0.01748044230043888, -0.008827915415167809, -0.031008783727884293, -0.006606320850551128, -0.024250458925962448, 0.0028617645148187876, -0.002736069029197097, -0.02363075129687786, -0.021046685054898262, 0.03337068855762482, -0.023455360904335976, 0.0001879951305454597, -0.0009376006200909615, -0.03149987384676933, 0.010412262752652168, 0.013563419692218304, -0.0175155196338892, -0.005928149912506342, -0.025372948497533798, -0.02123376727104187, -0.006594628095626831, 0.024718161672353745, 0.0007921738433651626, -0.03411901369690895, -0.03124263510107994, -0.0019921271596103907, 0.011049509979784489, -0.02499878592789173, 0.0007512497249990702, 0.01914079114794731, -0.0013037251774221659, 0.00013318605488166213, -0.006577088963240385, -0.017059506848454475, 0.014112971723079681, 0.003159926040098071, -0.0008316363673657179, 0.01196153275668621, 0.031406331807374954, -0.02509232610464096, -0.018965402618050575, -0.02133900113403797, -0.006746632046997547, -0.025372948497533798, -0.01025441288948059, -0.005638757720589638, -0.0024700623471289873, -0.002092975890263915, -0.0036802468821406364, -0.017386900261044502, 0.01912909932434559, 0.009055920876562595, 0.01188553124666214, 0.04228045046329498, -0.03273928910493851, -0.013820656575262547, 0.009903634898364544, 0.03330053389072418, -0.006933713331818581, 0.0061620017513632774, 0.010213488712906837, -0.009400852955877781, -0.025419719517230988, 0.03577936440706253, 0.01665026694536209, 0.0004947432898916304, 0.011634140275418758, 0.008044511079788208, -0.007880814373493195, 0.009529471397399902, 0.02254333905875683, -0.03636399656534195, -0.016018865630030632, 0.01786629669368267, -0.006962945219129324, -0.00981009379029274, -0.018754934892058372, -0.01708289235830307, 0.02049713209271431, -0.024671392515301704, -0.026051118969917297, -0.007635269779711962, 0.0047910441644489765, -0.013048944994807243, 0.019596802070736885, 0.0034697798546403646, 0.01380896382033825, 0.01281509269028902, 0.017492134124040604, -0.00024682353250682354, 0.03790741786360741, -0.014662523753941059, -0.02323320135474205, 0.011914762668311596, -0.030447538942098618, 0.003624706994742155, -0.0166034959256649, 0.015504391863942146, 0.0030049988999962807, -0.0007797504658810794, 0.001965818926692009, -0.006360775791108608, 0.03577936440706253, -0.006886943243443966, -0.0011276054428890347, -0.020076198503375053, -0.037603411823511124, 0.012253847904503345, -0.010850735940039158, 0.009085152298212051, 0.01971372775733471, 0.00463611725717783, 0.0010457572061568499, 0.0052178241312503815, -0.013680345378816128, 0.0019336641998961568, -0.027992092072963715, -0.01025441288948059, -0.009289773181080818, 0.004206413868814707, 0.021350692957639694, -0.008792837150394917, -0.017983222380280495, 0.006805094890296459, -0.005933995824307203, 0.0026892987079918385, -0.029325047507882118, -0.02133900113403797, -0.02114022523164749, -0.026238201186060905, 0.0012708398280665278, 0.0018620470073074102, -0.006793402135372162, -0.01805337890982628, -0.010494111105799675, 0.002933381823822856, -0.013458185829222202, -0.0011429518926888704, -0.005612449254840612, -0.005837532225996256, -0.0015507314819842577, 0.004995664581656456, 0.0013643805868923664, -0.008342672139406204, -0.010295337066054344, 0.0028778419364243746, 0.011739373207092285, -0.010774733498692513, -0.03442302346229553, 0.037556640803813934, 0.004188875202089548, -0.0012328388402238488, -0.011189821176230907, -0.0026352202985435724, 0.002753607928752899, -0.00261768139898777, -0.0013029944384470582, 0.0004826852527912706, -0.01620594784617424, -0.0022391334641724825, 0.004416880663484335, 0.005577371455729008, -0.019631879404187202, 0.0005356673500500619, 0.01805337890982628, 0.009061767719686031, 0.004422727040946484, -0.0027492232620716095, 0.0012620703782886267, 0.02381783165037632, 0.006354929879307747, -0.0007391917170025408, 0.01449882797896862, -0.013271104544401169, 0.017971530556678772, -0.00271560694091022, 0.021853474900126457, -0.023151353001594543, 0.007471573073416948, 0.0052032084204256535, 0.014580675400793552, -0.043028779327869415, 0.01086242776364088, -0.010090716183185577, 0.01620594784617424, -0.007378032431006432, 0.006179540418088436, -0.008436213247478008, 0.007173412013798952, -0.016264410689473152, -0.02836625464260578, 0.01288524828851223, 0.02923150733113289, -0.007763888221234083, 0.0052792103961110115, -0.006775863468647003, -0.007898353040218353, -0.014580675400793552, -0.0036714773159474134, 0.005708913318812847, -0.0025109865237027407, -0.0012569548562169075, 0.000698998395819217, 0.010599344968795776, 0.006360775791108608, 0.021058378741145134, -0.004799813497811556, -0.01288524828851223, 0.005089205224066973, -0.00424733804538846, -0.017632445320487022, -0.030049988999962807, -0.014580675400793552, -0.0052645946852862835, -0.002917304402217269, 0.00307515449821949, -0.022379642352461815, 0.019550032913684845, -0.017164740711450577, 0.019947580993175507, 0.037556640803813934, 0.01937464252114296, -0.021596238017082214, -0.024531081318855286, 0.018181998282670975, 0.0007271337672136724, 0.012967096641659737, 0.00026856447220779955, 0.018462620675563812, -0.024227073416113853, 0.00464780954644084, -0.0051885927096009254, -0.008816222660243511, 0.013703730888664722, 0.010640268214046955, -0.0043321093544363976, -0.0029450743459165096, 0.029979834333062172, -0.036293838173151016, -0.019292794167995453, -0.007606038358062506, -0.0008418674115091562, 0.01777275651693344, -0.008184822276234627, 0.007606038358062506, -0.0014995763776823878, -0.008541446179151535, 0.00959378108382225, 0.004539653193205595, -0.003233004594221711, 0.00023440015502274036, -0.018778320401906967, -0.003706555115059018, 0.00020918797235935926, -0.03786064684391022, 0.009260541759431362, 0.030962012708187103, -0.03514796495437622, 0.017784448340535164, 0.01124828401952982, -0.025980964303016663, 0.007337108254432678, -0.010564266704022884, -0.020239895209670067, 0.03313683718442917, 0.0077171181328594685, -0.003925791475921869, 0.019398028030991554, -0.026238201186060905, 0.021070070564746857, -0.00502781942486763, 0.011388595215976238, -0.0038234812673181295, -0.0027711468283087015, 0.012908633798360825, -0.015340695157647133, -0.009628858417272568, -0.005694297607988119, 0.008862992748618126, 0.006471855565905571, -0.01610071398317814, -0.007378032431006432, 0.020052814856171608, -0.015703165903687477, -0.0025036786682903767, 0.004118719603866339, 0.00029103620909154415, -0.00016369644436053932, -0.016170870512723923, -0.0023560593836009502, -0.002807686338201165, -0.010353799909353256, 0.02586403675377369, -0.004919662605971098, 0.0067115542478859425, -0.0006840172572992742, -0.003846866311505437, 0.007945124059915543, -0.006454316899180412, 0.016755500808358192, -0.025396334007382393, -0.0031336175743490458, 0.0024276766926050186, -0.009395006112754345, 0.01234738901257515, -0.02441415563225746, -0.0086408331990242, -0.003960869275033474, -0.013306181877851486, 0.007085717283189297, -0.002775531727820635, -0.010961814783513546, 0.008506368845701218, -0.020485440269112587, -0.0036714773159474134, 0.01144705805927515, 0.013013866730034351, 0.026097889989614487, 0.00450457539409399, -0.018766628578305244, 0.02644866704940796, -0.0072552599012851715, -0.020532211288809776, 0.016135791316628456, -0.010184257291257381, 0.004916739650070667, -0.00010806522914208472, -0.0004925508983433247, 0.01483791321516037, 0.017316745594143867, -0.0020198971033096313, 0.0006723246769979596, 0.0002837283245753497, -0.007763888221234083, -0.027407461777329445, -0.013013866730034351, -0.0009142154012806714, 0.00016661958943586797, 0.02352551743388176, -0.030049988999962807, 0.008529753424227238, -0.003893636865541339, 0.0037913264241069555, -0.012288925237953663, -0.0038731747772544622, -0.0011772989528253675, 0.020918067544698715, 0.009067613631486893, -0.00929561909288168, -0.004560115281492472, 0.009798401035368443, 0.0020973605569452047, 0.0026016042102128267, 0.0016691191121935844, -0.010739656165242195, -0.008991611190140247, -0.010809811763465405, 0.0013497648760676384, 0.0246947780251503, -0.049623407423496246, -0.01405450887978077, 0.007354647386819124, 0.0022873654961586, -0.016229333356022835, 0.026682520285248756, 0.008845454081892967, -0.0034463948104530573, 0.02675267495214939, 0.0013592650648206472, 0.005971997044980526, 0.003420086344704032, 0.01849769800901413, -0.005574448499828577, -0.002931920113041997, -0.007565114181488752, -0.007056485861539841, 0.028436411172151566, 0.013516648672521114, -0.02308119833469391, 0.02333843521773815, -0.00444318912923336, 0.0035077808424830437, -0.0006785363657400012, 0.030400767922401428, 0.003689016215503216, 0.012908633798360825, -0.012791707180440426, 0.0005634372937493026, 0.009558702819049358, -0.012440929189324379, -0.004750119987875223, -0.006501087453216314, 0.008944841101765633, -0.0015916555421426892, -0.00550136948004365, 0.014194820076227188, 0.005285056307911873, -0.020777754485607147, -2.1980722522130236e-05, 0.010768887586891651, -0.014639139175415039, 0.012721551582217216, 0.0020988222677260637, 0.012932018376886845, 0.013294489122927189, 0.004723811522126198, -0.0038585590664297342, 0.01712966337800026, -0.01776106469333172, 0.001575578236952424, 0.010283644311130047, -0.013621882535517216, 0.020087892189621925, 0.007132487837225199, -0.011552291922271252, -0.012078458443284035, -0.012394159100949764, 0.0013000712497159839, 0.005299672484397888, 0.009815939702093601, -0.0012174922740086913, 0.026191430166363716, 0.009307311847805977, -0.01190891582518816, 0.0029041501693427563, 0.015481006354093552, -0.006495241075754166, 0.02474154718220234, 0.015679780393838882, -0.005057050846517086, 0.014849605970084667, -0.009827632457017899, -0.01586686260998249, -0.0017787371762096882, -0.04394080117344856, -0.0033996242564171553, -0.011628293432295322, -0.0021865167655050755, -0.017211511731147766, -0.005445829592645168, -0.003089770209044218, 0.014124664478003979, 0.01418312732130289, -0.02078944817185402, -0.020087892189621925, -0.010160871781408787, 0.00881037674844265, -0.017141355201601982, 3.7652694118150976e-06, 0.006261388771235943, 0.0008528292528353631, -0.0017758141038939357, -0.0046858107671141624, -0.008523907512426376, -0.0020885912235826254, -0.00034621066879481077, -0.0022698265966027975, -0.004796890541911125, 0.013902504928410053, 0.005741068162024021, -0.008114666678011417, 0.0066472445614635944, -0.013247719034552574, 0.011938147246837616, -0.009827632457017899, -0.005828762426972389, 0.013844042085111141, -0.009301465936005116, 0.020929759368300438, -0.005007357336580753, -0.006232157349586487, 0.00968732126057148, 0.017012737691402435, 0.013621882535517216, 0.006951252464205027, 0.026939757168293, 0.025256022810935974, 0.01640472188591957, -0.0035223965533077717, 0.008377750404179096, 0.009482701309025288, -0.0107162706553936, -0.012066766619682312, 0.013247719034552574, -0.0019833578262478113, 0.003396701067686081, -0.009073459543287754, -0.0034376252442598343, -0.021584544330835342, -0.0066940151154994965, -0.022367948666214943, -0.021210381761193275, -0.008968226611614227, 0.006401699967682362, 0.03783726319670677, 0.02406337670981884, 0.007810658775269985, 0.019631879404187202, 0.019292794167995453, 0.015200383961200714, 0.0227888822555542, 0.02181839756667614, -0.0077288104221224785, -0.01195568684488535, 0.0043496484868228436, -0.010195950046181679, -0.009406698867678642, 0.005019049625843763, 0.009868556633591652, -0.009675628505647182, 0.012171999551355839, -0.00297722895629704, 0.00037927881930954754, -0.009927019476890564, 0.012932018376886845, 0.010347953997552395, 0.040737029165029526, 0.0028763802256435156, -0.008143898099660873, 0.0020301281474530697, -0.03323037922382355, -0.005384443793445826, -0.00920207891613245, 0.004966433160007, -0.0030810008756816387, 0.011464596726000309, 0.009453469887375832, -0.00673493929207325, 0.007506650872528553, 0.02513909712433815, 0.0007497881888411939, -0.00078413519077003, 0.028342869132757187, 0.01845092698931694, 0.003955022897571325, -0.015925325453281403, 0.003721170825883746, -0.0037328635808080435, -0.00278137787245214, -0.00019895694276783615, 0.015434236265718937, 0.021947015076875687, -0.008366057649254799, -0.0019234331557527184, -0.013423108495771885, -0.030049988999962807, 0.027407461777329445, 0.00653031887486577, -0.007278645411133766, 0.008693450130522251, 0.0012006841134279966, -0.019316179677844048, 0.011616600677371025, -0.02181839756667614, -0.0027346075512468815, 0.001428689924068749, 0.020976530387997627, 0.024086762219667435, -0.005574448499828577, 0.009482701309025288, 0.006080153398215771, -0.007635269779711962, -0.002993306377902627, -0.0005130129284225404, 0.0047588893212378025, 0.02972259745001793, -0.017492134124040604, 0.01000886783003807, 0.011710141785442829, 0.03641076385974884, 0.021806703880429268, -0.0019234331557527184, -0.006167848128825426, 0.009050074964761734, -0.018486004322767258, 0.01879001222550869, -0.0034902419429272413, -0.01398435328155756, 0.02616804465651512, -0.006331544369459152, -0.006103538908064365, 0.0005897456430830061, -0.007553421426564455, -0.021537775173783302, -0.011482136324048042, 0.017550596967339516, -0.020193126052618027, -0.025583414360880852, 0.019924195483326912, -0.0020958990789949894, 0.00913192331790924, 0.012932018376886845, 0.030026603490114212, 0.005586141254752874, 0.011160589754581451, 0.008523907512426376, 0.01801830157637596, -0.012312310747802258, -0.01732843741774559, -0.019339565187692642, 0.001446959562599659, -0.0012708398280665278, 0.02577049657702446, -0.031850650906562805, -0.0004753773973789066, 0.005860917270183563, -0.006132770329713821, 0.019830655306577682, -0.01027195155620575, 0.013048944994807243, -0.004723811522126198, 0.0024846780579537153, -0.0017261204775422812, 0.0009989867685362697, -0.0014608445344492793, 0.012604625895619392, 0.006103538908064365, 0.015901939943432808, 0.0015697319759055972, -0.0013095715548843145, -0.01051749661564827, 0.031266018748283386, -0.031406331807374954, -0.01600717380642891, -0.009909480810165405, -0.0172816663980484, -0.009500239975750446, -0.009699014015495777, -0.004481189884245396, 0.009728245437145233, 0.0057206060737371445, -0.019409721717238426, 0.01654503308236599, 0.007962662726640701, -0.018848475068807602, -0.01805337890982628, 0.0067992485128343105, 0.0028983040247112513, -0.007477419450879097, 0.015457620844244957, -0.005150591488927603, 0.0015989633975550532, -0.01144705805927515, 0.009786708280444145, -0.011698449030518532, -0.0018664317904040217, 0.04665348678827286, -0.005241209175437689, -0.009529471397399902, 0.007044793106615543, 0.0020798216573894024, -0.008383596315979958, 0.005799531005322933, 0.011487982235848904, 0.00015026821347419173, 0.002803301438689232, 0.015212076716125011, -0.0034142399672418833, 0.0017655830597504973, -0.0006913251709192991, -0.01151721365749836, 0.007471573073416948, 0.014580675400793552, 0.00011034894123440608, 0.001560962526127696, 0.0010669500334188342, 0.015235461294651031, 0.008675911463797092, 0.015071765519678593, -0.0007216528174467385, -8.390356379095465e-05, 0.0052792103961110115, 0.009903634898364544, 0.0017231974052265286, -0.004142104648053646, 0.0019175868947058916, -0.015130228362977505, -0.013434800319373608, -0.009243002161383629, -0.0013643805868923664, 0.026635749265551567, -0.013411415740847588, -0.01086242776364088, 0.0019935888703912497, 0.015387465246021748, -0.0035048576537519693, 0.004592269659042358, 0.02504555508494377, -0.03217804431915283, -0.012429237365722656, 0.0017363515216857195, 0.021257152780890465, -0.03016691468656063, -0.016194254159927368, -0.013680345378816128, -0.020134661346673965, -0.022087326273322105, -0.01124828401952982, 0.03245866671204567, -0.002339982194826007, 0.0030546924099326134, 0.021607929840683937, 0.007915892638266087, -0.003083924064412713, 0.0014148049522191286, -0.0010954507160931826, -0.023689214140176773, -0.009090999141335487, 0.012090151198208332, -0.026238201186060905, -0.017690908163785934, -0.00451334472745657, 0.005682604853063822, -0.027547772973775864, -0.0087577598169446, 0.02001773566007614, 0.014872990548610687, -0.003817634889855981, -0.004206413868814707, 0.0076703475788235664, -0.021175304427742958, -0.004109949804842472, -0.0073195695877075195, 0.010669500567018986, 0.008746067062020302, 0.0026016042102128267, -0.011563984677195549, 0.010833196341991425, 0.005504292901605368, -0.0041654896922409534, -0.012651395983994007, -0.021116841584444046, 0.015703165903687477, -0.011008585803210735, 0.027992092072963715, 0.016241025179624557, 0.007231874857097864, -0.0062672351486980915, -0.03362792730331421, 0.0053376732394099236, -0.016428107395768166, -0.005013203714042902, -0.004595193080604076, -0.0017845835536718369, -0.004998587537556887, -0.008594063110649586, 0.0191875621676445, -0.005665066186338663, -0.03835173696279526, -0.011084587313234806, 0.0057966080494225025, -0.01883678324520588, 0.001695427461527288, 0.014639139175415039, -0.011996611021459103, 0.007664501201361418, -0.021444233134388924, -0.011189821176230907, -0.02083621919155121, -0.007296184077858925, 0.007038947194814682, 0.004028101917356253, -0.021689778193831444, -0.013528341427445412, -0.010704577900469303, 0.036130141466856, -0.01261631865054369, 0.009804247878491879, 0.02133900113403797, -0.01669703610241413, -0.0019687421154230833, 0.004136258270591497, 0.01188553124666214, -0.0007402879418805242, -0.02909119613468647, -0.0030196146108210087, 0.03070477582514286, 0.014358516782522202, -0.014627446420490742, 0.0026615287642925978, 0.006436777766793966, 0.004489959683269262, -0.04288846626877785, 0.025349562987685204, -0.0068167876452207565, -0.01459236815571785, 0.017702599987387657, -0.01562131755053997, -0.014709294773638248, -0.0071967970579862595, -0.023806139826774597, -0.0067232465371489525, -0.013423108495771885, 0.011903069913387299, -0.013540034182369709, 0.016556724905967712, -0.025957578793168068, 0.005960304290056229, 0.019655264914035797, -0.0020768987014889717, 0.011733527295291424, -0.02396983653306961, 0.0004589346644934267, 0.008968226611614227, 0.0007790196686983109, 0.013773886486887932, -0.0213273074477911, 0.035709209740161896, 0.008430366404354572, 0.015995480120182037, -0.007097410038113594, -0.008822068572044373, -0.018170304596424103, 0.0003610091225709766, -0.03026045672595501, 0.021350692957639694, -0.006571243051439524, 0.012382466346025467, 0.017877990379929543, -0.011657524853944778, 0.009213770739734173, -0.03280944377183914, 0.0006116692675277591, 0.018076764419674873, -0.01517699845135212, -0.032786060124635696, -0.007874968461692333, -0.0017290436662733555, -0.018754934892058372, 0.007565114181488752, -0.005925226490944624, -0.01456898357719183, -0.012171999551355839, -1.5666260878788307e-05, 0.004925508983433247, -9.125711221713573e-05, -0.005255824886262417, -0.006699861492961645, 0.02338520623743534, -0.028670262545347214, -0.008436213247478008, -0.022169174626469612, 0.016381336376070976, 0.005863840226083994, 0.006109384819865227, -0.027851780876517296, -0.0019322026055306196, -0.0068460190668702126, 0.005173976998776197, -0.03332391753792763, -0.01746874861419201, -0.01093258336186409, 0.0023604442831128836, -0.005524754989892244, -0.005413675215095282, 0.03451656550168991, 0.012429237365722656, 0.004168413113802671, -0.011131358332931995, 0.00915530789643526, 0.008529753424227238, -0.002933381823822856, -0.0047618127427995205, -0.003329468658193946, -0.023127969354391098, 0.017316745594143867, 0.004402264952659607, 0.014370208606123924, 0.008097127079963684, 0.010727963410317898, 0.002714145462960005, -0.0047004264779388905, 0.010833196341991425, 0.012055073864758015, 0.008599909022450447, 0.014627446420490742, 0.011213205754756927, 0.0028997655026614666, -0.011996611021459103, 0.013551726937294006, 0.02675267495214939, -0.006109384819865227, 0.008734374307096004, -0.017001044005155563, -0.02630835585296154, 0.011914762668311596, -0.01380896382033825, -0.008471290580928326, 0.007062332239001989, -0.011698449030518532, -0.004428573418408632, -4.763822289532982e-05, 0.002752146450802684, 0.00581999309360981, -0.003329468658193946, -0.015597932040691376, -0.010225181467831135, -0.00975747685879469, 0.0026761444751173258, 0.0006840172572992742, -0.011634140275418758, 0.015317309647798538, 0.0021353615447878838, -0.011856299825012684, -0.018334001302719116, 0.003107309341430664, 0.005086282268166542, 0.009447623044252396, 0.018065070733428, 0.008056203834712505, -0.004191798157989979, -0.02806224673986435, 0.013423108495771885, -0.015703165903687477, 0.034773800522089005, -0.003314852947369218, -0.013142486102879047, -0.016287796199321747, 0.006045075599104166, 0.02729053609073162, -0.007009715307503939, 0.00022234214702621102, 0.015551161952316761, 0.006951252464205027, -0.0068460190668702126, 0.008453751914203167, 0.0034990115091204643, -0.013352952897548676, 0.026939757168293, 0.008851299993693829, 0.017386900261044502, -0.013072330504655838, -0.0020520517136901617, -0.023163046687841415, -0.00549260014668107, 0.027851780876517296, 0.003159926040098071, 0.031055552884936333, 0.009827632457017899, 0.014159741811454296, 0.022578416392207146, -0.01826384663581848, 0.003107309341430664, -0.004089487716555595, -0.010464879684150219, -0.0037620950024574995, 0.00815559085458517, -0.016241025179624557, 0.004215183202177286, 0.04005885869264603, 0.0033265454694628716, 0.004817352630198002, 0.009558702819049358, -0.01542254351079464, 0.016509955748915672, -0.012639704160392284, 0.002880765125155449, -0.022531645372509956, 0.024858474731445312, 0.011534753255546093, 0.01693088933825493, 0.0034785494208335876, -0.005463368725031614, -0.0025372947566211224, 0.014978224411606789, 0.007664501201361418, -0.004887508228421211, 0.002459831302985549, 0.01820538192987442, -0.011353517882525921, -0.0034463948104530573, 0.01663857325911522, -0.02083621919155121, -0.003960869275033474, -0.003127771196886897, -0.013820656575262547, -0.017796142026782036, -0.014779450371861458, 0.014732679352164268, -0.02161962352693081, 0.006471855565905571, -0.010318721644580364, 0.0006270158337429166, 0.0007074024761095643, -0.020485440269112587, -0.02031005173921585, 0.0015390388434752822, 0.020029429346323013, 0.016042251139879227, 0.02109345607459545, -0.02060236595571041, -0.0025329100899398327, -0.02006450667977333, -0.0022552108857780695, 0.008009432815015316, 0.001410420285537839, -0.0061912331730127335, -0.028623491525650024, 0.001882509095594287, -0.018170304596424103, 0.020999914035201073, -0.01625271886587143, 0.004633193835616112, -0.017269974574446678, -0.005399059504270554, -0.02972259745001793, -0.00041764514753594995, 0.001406766241416335, 0.008746067062020302, 0.019783884286880493, 0.0158200915902853, 0.01845092698931694, -0.003060538787394762, 0.029956448823213577, -0.012686474248766899, 0.021935323253273964, 0.003759171813726425, 0.004001793451607227, -0.011353517882525921, -0.005048281513154507, -0.0043174936436116695, -0.011797836050391197, 0.004402264952659607, 0.011581523343920708, 0.006980483885854483, 0.003449317766353488, -0.0006997291930019855, -0.02836625464260578, -0.010476572439074516, -0.008921455591917038, -0.006916174665093422, 0.019304487854242325, 0.008056203834712505, -0.015258846804499626, 0.0008594063110649586, 0.003428855910897255, -0.0017348899273201823, 0.0068167876452207565, 0.028296099975705147, -0.0024656776804476976, 0.007436495274305344, 0.008342672139406204, 0.003563320729881525, 0.010973507538437843, 0.0005188592476770282, -0.004215183202177286, 0.010014714673161507, 0.01854446902871132, 0.0053698280826210976, -0.004004716407507658, 0.006705707870423794, -0.02358398027718067, -0.008646680042147636, -0.022040557116270065, -0.0002572372613940388, -0.048781540244817734, -0.005182746332138777, 0.004156720358878374, 0.027313919737935066, 0.0033470075577497482, 0.0011297977762296796, -0.0067992485128343105, -0.005054127424955368, 0.00035954752820543945, -0.0034522409550845623, 0.00047610816545784473, -0.019023865461349487, 0.003703631926327944, -0.00045783849782310426, 0.0012328388402238488, -0.002797455294057727, -0.007465727161616087, 0.028342869132757187, -0.004869969096034765, -0.00913192331790924, -0.014136357232928276, 0.002056436613202095, 0.007360493764281273, 0.0010537958005443215, 0.015633009374141693, -0.0018942016176879406, 0.017269974574446678, 0.0005926688318140805, -0.011143050156533718, -0.019047250971198082, -0.017503825947642326, -0.023291664198040962, 0.0004465112870093435, 0.01459236815571785, 0.0026322973426431417, -0.010453186929225922, 0.004077795427292585, -0.022578416392207146, -0.012780015356838703, 0.018100149929523468, -0.011645832099020481, -0.01378557924181223, 0.00712664145976305, 0.016474878415465355, 0.00019018749298993498, 0.015726551413536072, 0.005890148691833019, 0.0019073558505624533, 0.01371542364358902, 0.013364644721150398, -0.0006445547332987189, 0.0011246822541579604, -0.00888637825846672, -0.0006767094018869102, 0.00988024938851595, -0.01371542364358902, 0.011131358332931995, 0.006939559709280729, 0.002624989254400134, -0.027150224894285202, 0.025068940594792366, 0.021607929840683937, 0.003045923076570034, 0.007290337700396776, 5.0652721256483346e-05, 0.004563038237392902, 0.006863557733595371, 0.01937464252114296, 0.024811703711748123, 0.028483180329203606, -0.03655107691884041, 0.016334567219018936, -0.028155788779258728, 0.0006445547332987189, -0.011008585803210735, 0.006167848128825426, -0.006489394698292017, 0.0005279941251501441, 0.014370208606123924, -0.001905894256196916, 0.0017348899273201823, -0.010312875732779503, 0.009839325211942196, -0.0042707230895757675, -0.020812833681702614, -0.004036871250718832, 0.0061444626189768314, -0.006302312947809696, -0.012686474248766899, 0.009085152298212051, 0.024764932692050934, 0.006425085477530956, -0.0016851964173838496, 0.018532775342464447, 0.007541728671640158, -0.0025533721782267094, 0.0061912331730127335, 0.0026366820093244314, 0.010429801419377327, 0.010365492664277554, 0.0023341358173638582, 0.0051856692880392075, -0.01820538192987442, -0.006021690554916859, 0.012382466346025467, -0.004808582831174135, -0.04499313607811928, 0.0067407856695353985, -0.013832349330186844, 0.045905157923698425, 0.02396983653306961, 0.021549466997385025, -0.00726110627874732, 0.004036871250718832, -0.008547293022274971, 0.018369078636169434, -0.007430649362504482, 0.005407828837633133, -0.00556275574490428, -0.00399010069668293, 0.003212542738765478, -0.026004349812865257, -0.03348761424422264, -0.004785197786986828, -0.005173976998776197, 0.006840172689408064, 0.024250458925962448, -0.00025833345716819167, -0.010166718624532223, -0.0007205566507764161, -0.0006248234421946108, 0.00966393668204546, 0.007769734598696232, -0.0076995790004730225, 0.006559550296515226, 0.0001714610552880913, 0.0035223965533077717, 0.0164982620626688, -0.009447623044252396, -0.01665026694536209, 0.02670590579509735, 0.006922021042555571, 0.010640268214046955, 0.019982658326625824, -0.015937017276883125, -0.016264410689473152, 0.016264410689473152, 0.019690344110131264, 0.03128940612077713, 0.009587934240698814, 0.0028968423139303923, -0.008097127079963684, 0.01869647204875946, 0.011265822686254978, 0.005130129400640726, 0.0214325413107872, -0.0005232439725659788, -0.016778884455561638, 0.0017115047667175531, 0.027407461777329445, -0.018088456243276596, 0.01510684285312891, 0.012698167003691196, 0.009979636408388615, 0.002819378860294819, -0.0007943662349134684, 0.015013301745057106, -0.002699529752135277, -0.03881944343447685, -0.0009156769956462085, -0.004323340021073818, -0.01483791321516037, 0.018801705911755562, 0.015749936923384666, 0.025489874184131622, -0.008792837150394917, -0.004612731747329235, 0.012908633798360825, -0.011043663136661053, -0.029862908646464348, 0.00047172344056889415, -0.006834326311945915, 0.0037620950024574995, -0.01874324306845665, 0.014872990548610687, -0.02298765815794468, 0.013996046036481857, -0.0067232465371489525, 0.012920326553285122, 0.00888637825846672, 0.006910328287631273, -0.00876360572874546, 0.019152482971549034, -0.004893354140222073, 0.014194820076227188, 0.0019395104609429836, -0.014066201634705067, 0.013107407838106155, -0.0020359745249152184, -0.00124160829000175, 0.01364526804536581, -0.006699861492961645, -0.00458642328158021, 0.007091563660651445, 0.005515985656529665, -0.008202360942959785, -0.0036042449064552784, 0.00569722056388855, -0.001724658883176744, -0.026963142678141594, 0.007038947194814682, -0.0012174922740086913, 0.03601321578025818, 0.016849040985107422, -0.010809811763465405, 0.015785014256834984, 0.00712664145976305, 0.012838478200137615, 0.012791707180440426, -0.021116841584444046, 0.013680345378816128, -0.014370208606123924, 0.0222159456461668, -0.01640472188591957, 0.038188040256500244, 0.005863840226083994, -0.0028515334706753492, -0.00012971481191925704, -0.004323340021073818, 0.015972096472978592, 0.0053084418177604675, 0.0013278411934152246, 0.013727115467190742, 0.017316745594143867, -0.002220133086666465, 0.024952014908194542, 0.018135227262973785, 0.028529951348900795, -0.0010874121217057109, 0.008360210806131363, 0.011201513931155205, -0.006384161300957203, -0.010137487202882767, 0.01654503308236599, 0.0061620017513632774, 0.03500765189528465, -0.0052149007096886635, 0.007945124059915543, -0.016194254159927368, 0.0008959457045421004, -0.023887988179922104, 0.005521831568330526, 0.006506933365017176, 0.01826384663581848, 0.006080153398215771, -0.008120512589812279, -0.005773222539573908, -0.004329186398535967, 0.02392306551337242, 0.024881858378648758, -0.009161154739558697, -0.0023151354398578405, 0.0018401234410703182, -0.004384726285934448, 0.00890391692519188, -0.034142401069402695, -0.0002517563698347658, -0.009465161710977554, 0.008634987287223339, -0.004162566736340523, 0.004115796182304621, -0.022777190431952477, 0.03608337417244911, -0.017644137144088745, -0.011552291922271252, -0.011780297383666039, -0.011721834540367126, 0.008553138934075832, 0.006337390746921301, -0.011774451471865177, -0.026939757168293, -0.0002261787885800004, -0.0024569081142544746, 0.001844508107751608, 0.01977219246327877, 0.0008411366143263876, -0.00595445791259408, 0.007079870905727148, -0.00043408788042142987, 0.006050921976566315, 0.00032666209153831005, 0.01679057814180851, 0.03070477582514286, -0.004522114060819149, -0.05280379578471184, -0.00043701104004867375, 0.029114581644535065, -0.010523342527449131, -0.007489112205803394, 0.01288524828851223, -0.0007527113193646073, 0.014931454323232174, -0.01005563884973526, -0.003519473597407341, 0.008547293022274971, 0.004361340776085854, -0.017889682203531265, -0.006448470521718264, -0.0006018036510795355, 0.02220425382256508, -0.023841217160224915, -0.02874041721224785, 0.02635512687265873, 0.012511084787547588, 0.010026407428085804, 0.006699861492961645, -0.0008900993852876127, -8.002125105122104e-05, 0.014791143126785755, 0.007208489812910557, 0.010482418350875378, -0.004095334094017744, -0.009921173565089703, 0.01767921634018421, 0.02527940832078457, -0.0015565777430310845, -0.015364080667495728, -0.0008900993852876127, 0.016077328473329544, 0.0019234331557527184, -0.00251975585706532, 0.005168130621314049, -0.009704860858619213, -0.016615189611911774, -0.013423108495771885, 0.008523907512426376, 0.000776827335357666, 0.0024349845480173826, -0.02948874421417713, -0.005574448499828577, -0.009833479300141335, -0.010915044695138931, -0.010587652213871479, -0.013329567387700081, 0.005933995824307203, -0.005846301559358835, 0.0063140057027339935, 0.002316596917808056, 0.026331741362810135, 0.01210184395313263, -0.01103197131305933, 0.005594910588115454, 0.007079870905727148, 0.0025256022345274687, -0.004343802109360695, -0.0032446973491460085, -0.000776827335357666, 0.006863557733595371, -0.0024247535038739443, -0.02167808637022972, 0.0029991527553647757, -0.018719857558608055, 0.002747761784121394, -0.0052909026853740215, -0.007635269779711962, 0.020122969523072243, 0.010435648262500763, 0.00023038081417325884, 0.007483265828341246, 0.007524190004914999, 0.04012901335954666, -0.007828197441995144, 0.0034376252442598343, 0.007682040333747864, 0.014685909263789654, 0.004975202493369579, -0.015983788296580315, -0.0017670446541160345, 0.00037854802212677896, 0.00934823602437973, 0.023595672100782394, 0.018439235165715218, 0.003615937428548932, -0.016977660357952118, -0.008523907512426376, -0.022087326273322105, -0.0028296099044382572, 0.0008367518894374371, 0.008389442227780819, 0.006074307020753622, -0.007524190004914999, -0.00458642328158021, 0.003276851959526539, 0.0027404536958783865, 0.004560115281492472, 0.0197604987770319, -0.00218943995423615, 0.003314852947369218, -0.00011436827480792999, 0.008518061600625515, -0.015796706080436707, -2.7724257961381227e-05, -0.03323037922382355, -0.004618578124791384, -0.007266952656209469, 0.007097410038113594, 0.016521647572517395, 0.005036588758230209, -0.01373880822211504, -0.0014111510245129466, 0.02246149070560932, -0.0016296565299853683, -0.02020481787621975, -0.013972660526633263, 0.013575112447142601, 0.014744372107088566, 0.011669217608869076, 0.0033996242564171553, 0.005182746332138777, -7.933613960631192e-05, -0.00021576505969278514, -0.010260258801281452, 0.002699529752135277, -0.006670630071312189, 0.0007943662349134684, -0.0007468650001101196, 0.0016486570239067078, 0.02327997237443924, -0.03645753487944603, -0.005147668533027172, 0.010283644311130047, 0.007155872881412506, 0.0028661491815000772, -0.012171999551355839, 0.011353517882525921, 0.007103256415575743, 0.012078458443284035, -0.027009913697838783, -0.012744937092065811, -0.0030810008756816387, 0.0026761444751173258, 0.02084791101515293, 0.008629141375422478, 0.010488265193998814, 0.0020345128141343594, 0.006606320850551128, 0.026939757168293, -0.0026512977201491594, 0.018217075616121292, -0.02254333905875683, 0.017585674300789833, -0.016428107395768166, 0.006460163276642561, 0.0033703928347676992, 0.0016340413130819798, -0.011318439617753029, -0.03374485298991203, 0.024227073416113853, -0.01105535589158535, -0.005539370700716972, -0.012090151198208332, -0.01183291431516409, 0.01405450887978077, 0.016849040985107422, -0.017948145046830177, 0.008360210806131363, 0.00700386893004179, -0.00594276562333107, 0.010090716183185577, 0.009669782593846321, 0.011201513931155205, -0.006699861492961645, -0.02532617747783661, -0.003428855910897255, 0.011616600677371025, 0.02729053609073162, -0.005112590733915567, 0.0020520517136901617, 0.0041654896922409534, 0.002917304402217269, -0.00029194969101808965, -0.013119100593030453, -0.013411415740847588, 0.02372429147362709, -0.013212641701102257, -0.022905809804797173, -0.0024042914155870676, -0.002759454306215048, -0.012744937092065811, 0.013434800319373608, -0.015937017276883125, 0.013586804270744324, -0.012628011405467987, 0.02103499323129654, -0.0009346774313598871, 0.0035370124969631433, -0.010166718624532223, 0.0012043381575495005, -0.004177182447165251, -0.0006124000647105277, -0.012721551582217216, 0.002918766112998128, 0.013259411789476871, 0.0018781243124976754, -0.027454230934381485, -0.01611240766942501, -0.008219899609684944, 0.0030576155986636877, -0.019690344110131264, -0.014452056959271431, -0.0006324967253021896, -0.015235461294651031, 0.00025961233768612146, 0.021011607721447945, -0.0056767589412629604, -0.0031540796626359224, 0.006775863468647003, -0.011599062010645866, 0.012826785445213318, -0.019631879404187202, -0.022519953548908234, -0.016486570239067078, 0.011698449030518532, 0.003893636865541339, 0.010558420792222023, 0.004396418575197458, 0.0235722865909338, 0.0042882622219622135, 0.015691472217440605, 0.007325415965169668, -0.007570960558950901, -0.007027254439890385, -0.01183291431516409, -0.008962379768490791, 0.0020812833681702614, 0.02455446682870388, -0.01452221255749464, -0.010634422302246094, -0.006886943243443966, 0.00927223451435566, -0.0012116460129618645, 0.004177182447165251, 0.014089586213231087, -0.004539653193205595, -0.002347290050238371, 0.002793070627376437, -0.010096563026309013, 0.017690908163785934, -0.021736549213528633, 0.003262236248701811, -0.02249656803905964, -0.013107407838106155, 2.2494557924801484e-05, -0.009032535366714, 0.012721551582217216, 0.010435648262500763, 0.02166639268398285, -0.01952664740383625, -0.026425283402204514, 0.025793882086873055, -0.004013485740870237, -0.016802269965410233, 0.02743084728717804, 0.01059349812567234, -0.02240302786231041, 0.02944197505712509, 0.014814527705311775, 0.04125150293111801, 0.005866763647645712, -0.010482418350875378, 0.005133052822202444, -0.0034551641438156366, 0.004028101917356253, 0.000470992672489956, -0.010669500567018986, 0.013025559484958649, 0.014463749714195728, 0.0002133899979526177, -0.022777190431952477, -0.013586804270744324, 0.02513909712433815, -0.005381520371884108, -0.03914683312177658, -0.007839890196919441], "c808470e-fa8e-4aa1-9392-29e5e6d56841": [-0.011260541155934334, -0.004295258317142725, -0.0075351702980697155, 0.030731674283742905, -0.060745712369680405, -0.028684303164482117, -0.01120777428150177, 0.005300475284457207, -0.02950747311115265, 0.042952582240104675, 0.008553579449653625, 0.007213289849460125, 0.009925528429448605, 0.016685020178556442, 0.00645871739834547, -0.03140709549188614, 0.013402894139289856, 0.0019194105407223105, -0.014901485294103622, 0.004799185786396265, 0.024906164035201073, -0.002722792560234666, 0.005311028566211462, -0.012347548268735409, 0.008500811643898487, -0.032863471657037735, -0.006601189263164997, 0.008047012612223625, -0.0453798770904541, -0.011756554245948792, 0.021550165489315987, -0.010827849619090557, 0.020769208669662476, 0.02338646724820137, 0.01157714519649744, -0.028135523200035095, -0.004854591563344002, -0.007266057189553976, 0.0210224911570549, 0.0016951494617387652, -0.008353062905371189, 0.04090521112084389, -0.009223723784089088, 0.025877082720398903, -0.005904660560190678, -0.0018006840255111456, -0.02663693204522133, -0.008120886981487274, 0.02222558669745922, 0.004553817678242922, 0.02160293236374855, -0.01772981323301792, -0.023639749735593796, -0.0014484623679891229, 0.054582495242357254, -0.028557661920785904, 0.008521919138729572, 0.06441831588745117, -0.003669965546578169, -0.062054343521595, 0.003598729846999049, -0.021581824868917465, 0.018721837550401688, 0.00707609485834837, 0.021581824868917465, 0.02769227884709835, -0.00559333385899663, 0.03714817762374878, -0.0027491762302815914, -0.012558616697788239, -0.007408528588712215, 0.03229358792304993, -0.06526259332895279, 0.04014535993337631, 0.008738264441490173, -0.008363616652786732, -0.013255145400762558, 0.00790981762111187, 0.01085950993001461, 0.003545962506905198, 0.04018757492303848, -0.029254190623760223, 0.0400187186896801, 0.01566133461892605, 0.025855977088212967, 0.027713384479284286, -0.012326440773904324, -0.03579733520746231, -0.006469270680099726, -0.036198366433382034, 0.003545962506905198, 0.011408289894461632, -0.005519459489732981, -0.0025394263211637735, 0.016853874549269676, 0.007862327620387077, -0.05196523666381836, 0.011756554245948792, 0.03463645651936531, 0.004229298792779446, 0.01787756010890007, 0.06040800362825394, 0.02163459174335003, 0.02714349888265133, 0.0015869764611124992, -0.011682679876685143, -0.004390239249914885, 0.047363925725221634, -0.025919297710061073, 0.014532114379107952, 0.02486395090818405, -0.06057685986161232, 0.0015724655240774155, 0.004321641754359007, -0.010463755577802658, -0.006147390231490135, -0.03366553783416748, -0.0041976384818553925, 0.008980994112789631, -0.03459424152970314, 0.010532353073358536, -0.03944883123040199, 0.020019913092255592, -0.011292201466858387, -0.021223006770014763, 0.014943699352443218, -0.004799185786396265, 0.030436178669333458, 0.04580201581120491, 0.03280015289783478, 0.003224081825464964, -0.018880140036344528, 0.027396781370043755, -0.02830437943339348, -0.005395456217229366, 0.008965164422988892, 0.007624874822795391, 0.09371472150087357, -0.00831612665206194, 0.020252089947462082, -0.014743182808160782, 0.0036857957020401955, -0.018373573198914528, -0.004804462660104036, 0.005751635413616896, -0.008221144787967205, -0.02496948651969433, 0.042446013540029526, -0.017550403252243996, -0.0001615998480701819, -0.03828795254230499, 0.0011556037934496999, -0.026151472702622414, 0.011281648650765419, 0.07429635524749756, 0.0026818979531526566, 0.006537868175655603, 0.02950747311115265, 0.021824555471539497, 0.06188548728823662, 0.045464303344488144, -0.029887398704886436, 0.004917912185192108, -0.0032821260392665863, 0.04660407826304436, 0.024167422205209732, 0.05154309794306755, 0.025539372116327286, 0.01514421496540308, 0.004780717194080353, 0.0342143177986145, 0.0014233979163691401, 0.05247180163860321, -0.001305990619584918, 0.034256529062986374, -0.04386017844080925, 0.040968529880046844, -0.01767704449594021, 0.05255622789263725, -0.030436178669333458, -0.0029022013768553734, -0.036156151443719864, 0.04293147474527359, -0.007841220125555992, -0.027481209486722946, 0.02583486959338188, -0.02070588804781437, 0.03995539993047714, 0.003886311547830701, 0.021075259894132614, -0.03773917257785797, -0.017613723874092102, -0.00994663592427969, 0.023703070357441902, -0.021085811778903008, -0.03368664160370827, 0.01004689373075962, 0.00018353125778958201, -0.01640007644891739, 0.05141645669937134, 0.018394680693745613, -0.03292679414153099, 0.022310012951493263, 0.04732171446084976, -0.018816819414496422, 0.013603409752249718, -0.00034265764406882226, -0.03609283268451691, 0.025855977088212967, 0.0027438995894044638, 0.03423542156815529, 0.0016450205584987998, 0.026848001405596733, -0.014489900320768356, -0.0046830978244543076, -0.006194880697876215, -0.011007258668541908, 0.02691132202744484, 0.0018679624190554023, -0.030816102400422096, -0.008896566927433014, -0.002188523765653372, 0.009265937842428684, -0.013941120356321335, -0.019787736237049103, 0.013856692239642143, -0.018215270712971687, 0.0172549057751894, -0.03685268014669418, -0.04107406362891197, 0.019534453749656677, -0.03370774909853935, 0.048968054354190826, -0.029760755598545074, 0.009725012816488743, 0.027544530108571053, 0.02935972437262535, 0.015365837141871452, -0.027080178260803223, -0.03208251670002937, 0.009044314734637737, -0.010701208375394344, -0.003015651134774089, -0.0260248314589262, -0.013276251964271069, -0.021275775507092476, -0.011408289894461632, 0.04394460469484329, -0.020568693056702614, 0.01211537141352892, -0.02070588804781437, 0.025032807141542435, 0.0007149968878366053, 0.007857050746679306, -0.037718065083026886, -0.031385987997055054, 0.006173774134367704, 0.007403252180665731, -0.0012307972647249699, 0.028937585651874542, -0.0288531593978405, -0.019597774371504784, -0.04033532366156578, 0.030605033040046692, 0.03919554874300957, -0.039765436202287674, 0.03991318494081497, -0.020294303074479103, 0.006643402855843306, 0.04206608980894089, 0.008347786962985992, -0.0159462783485651, -0.027270140126347542, 0.05918380245566368, -0.016431735828518867, -0.017814239487051964, 0.013793371617794037, 0.021761232987046242, 0.03427763655781746, 0.00735048484057188, -0.0058360630646348, -0.00967752281576395, 0.002883732784539461, 0.0028019435703754425, 0.01581963524222374, 0.02366085723042488, -0.02811441756784916, -0.023280931636691093, 0.014848717488348484, 0.009645862504839897, -0.00367524242028594, 0.020368177443742752, -0.00709720142185688, 0.020114894956350327, 0.023597536608576775, -0.00027010260964743793, 0.002786113414913416, -0.0016582123935222626, -0.002751814667135477, -0.0074612959288060665, 0.018880140036344528, 0.010975598357617855, 0.0014629733050242066, -0.011471610516309738, 0.039765436202287674, -0.013909460045397282, 0.03921665623784065, 0.053189437836408615, 0.0057938494719564915, 0.05399150028824806, 0.009703906252980232, -0.018278591334819794, -0.044113460928201675, -0.013191824778914452, -0.016157347708940506, 0.045548733323812485, -0.061041209846735, -0.01190430298447609, -0.005809679627418518, -0.011133899912238121, -0.021349649876356125, -0.00859051663428545, -0.04164395108819008, 0.01947113312780857, 0.021930089220404625, -0.0411796011030674, 0.02950747311115265, -0.04854591563344002, -0.004005038179457188, 0.008062843233346939, -0.043564680963754654, 0.012727471999824047, -0.00011072887718910351, 0.006638125982135534, -0.0029180315323174, 0.014711522497236729, -0.054582495242357254, -0.023703070357441902, 0.007519340142607689, -0.017276013270020485, -0.014859271235764027, -0.02746010199189186, 0.010178811848163605, -0.031385987997055054, -0.032990116626024246, -0.02811441756784916, -0.02496948651969433, 0.00749295623973012, 0.013561195693910122, -0.019418366253376007, 0.0005273431888781488, 0.0014985912712290883, 0.021223006770014763, -0.0017888114089146256, 0.015091447159647942, -0.015545246191322803, -0.041242919862270355, -0.008659114129841328, 0.018447447568178177, 0.01574576273560524, -0.026510290801525116, -0.03307454288005829, -0.008638006635010242, -0.05348493531346321, 0.005656654480844736, 0.011408289894461632, 0.04516880586743355, 0.0018785158172249794, -0.010162982158362865, -0.005698868073523045, -0.0021172878332436085, 0.02342868037521839, -0.01958722062408924, -0.028789838775992393, -0.02264772541821003, -0.016822215169668198, 0.0490102656185627, -0.007186905946582556, 0.0099677424877882, 0.0014629733050242066, -0.02098027803003788, -0.0035670693032443523, -0.04373353719711304, 0.02959190122783184, 0.019914379343390465, 0.006960006896406412, -0.003506386885419488, 0.01973496936261654, -0.009914975613355637, 0.0013890991685912013, -0.01780368573963642, -0.01854242943227291, 0.009239554405212402, -0.006173774134367704, -0.023492000997066498, -0.0204420518130064, -0.0034114059526473284, -0.05677761137485504, 0.020579246804118156, -0.02551826648414135, -0.013022969476878643, -0.0008119568228721619, 0.029211975634098053, 0.0042583211325109005, 0.003081610193476081, -0.016072919592261314, 0.035269662737846375, 0.015481925569474697, -9.399175178259611e-05, 0.04343803972005844, -0.004221383947879076, -0.009334535337984562, 0.014088869094848633, 0.029106441885232925, 0.01970330998301506, 0.01772981323301792, -0.012284226715564728, 0.03944883123040199, -0.004820292815566063, 0.010806743055582047, 0.03098495677113533, 0.017191585153341293, 0.015281409956514835, 0.02089584991335869, -0.017983095720410347, 0.002086946740746498, 0.004413984715938568, -0.003757031634449959, -0.017655938863754272, -0.007482402957975864, 0.04065192863345146, 0.040546391159296036, 0.009450622834265232, 0.024462919682264328, -0.021571271121501923, -0.02676357328891754, 0.03254687041044235, 0.02773449197411537, 0.024019673466682434, -0.021455183625221252, 0.0025869167875498533, 0.014416025951504707, 0.030119573697447777, -0.019639989361166954, -0.053358294069767, 0.012885774485766888, -0.04048307240009308, 0.02315429039299488, 0.016305094584822655, 0.010194642469286919, 0.003960185684263706, 0.00601019524037838, -0.06728886067867279, -0.0012090307427570224, -0.002838880755007267, 0.019207296893000603, -0.0015658695483580232, -0.012463635765016079, -0.005390179343521595, -0.043564680963754654, -0.0021159686148166656, 0.004295258317142725, 0.0288531593978405, -0.013001861982047558, -0.003601368051022291, -0.022985436022281647, -0.008928227238357067, -0.05010782554745674, 0.0018771965987980366, 0.013160164467990398, -0.001191881368868053, 0.008484981954097748, 0.0009867484914138913, 0.03729592636227608, 0.013286805711686611, -0.028789838775992393, -0.013888352550566196, -0.010479585267603397, -0.014732629992067814, -0.012284226715564728, 0.012463635765016079, -0.002122564474120736, -0.013170717284083366, -0.019070101901888847, -0.02222558669745922, -0.005519459489732981, -0.037443675100803375, 0.007118308451026678, 0.0024009121116250753, -0.0058360630646348, 0.0007618278614245355, 0.0058360630646348, -0.007962585426867008, 0.016421183943748474, 0.02570822834968567, -0.005535289645195007, 0.008289742283523083, -0.032251372933387756, -0.014468792825937271, -0.02249997667968273, 0.01407831534743309, 0.02598261833190918, 0.004886251874268055, 0.013751157559454441, -0.0305206049233675, 0.005909937433898449, -0.029254190623760223, 0.025771548971533775, 0.00246819038875401, 0.00228746235370636, -0.02055813930928707, 0.018056970089673996, -0.027016857638955116, 0.03223026543855667, 0.009635308757424355, 0.007213289849460125, -0.024758417159318924, -0.018257485702633858, 0.025602692738175392, 0.009529774077236652, -0.00824225228279829, -0.009651138447225094, -0.0033243398647755384, 0.007682918570935726, -0.013318466022610664, -0.004297896288335323, -0.005983811803162098, -0.019450025632977486, 0.015481925569474697, -0.023977460339665413, -0.01974552311003208, 0.011534931138157845, -0.023238718509674072, 0.013972780667245388, 0.0016476588789373636, 0.014605987817049026, -0.00816310103982687, 0.008062843233346939, 0.02195119671523571, 0.017159925773739815, 0.0023217611014842987, 0.002799305133521557, 0.02784002758562565, -0.02245776169002056, 0.026510290801525116, 0.01923895627260208, 0.022394441068172455, -0.001916772103868425, -0.020146554335951805, 0.023492000997066498, -0.042868152260780334, 0.020568693056702614, -0.04381796345114708, -0.007007497362792492, 0.01012076810002327, 0.00306841847486794, -0.002502489136531949, 0.0002989597269333899, -0.013666730374097824, -0.04098963737487793, -0.0046830978244543076, 0.009688075631856918, 0.0177614726126194, 0.008854352869093418, -0.021149132400751114, -0.025919297710061073, -0.02866319566965103, 0.022288907319307327, 0.005305751692503691, 0.027080178260803223, 0.015545246191322803, 0.011608805507421494, 0.04867255687713623, 0.023175397887825966, 0.010257963091135025, 0.016072919592261314, 0.009081251919269562, -0.004020868334919214, 0.010669548064470291, -0.033560000360012054, 0.016421183943748474, -0.013603409752249718, 0.019608328118920326, -0.017054390162229538, 0.0011252625845372677, -0.034995272755622864, -0.020484264940023422, 0.0010104937246069312, 0.015228642150759697, 0.01593572460114956, 0.024652881547808647, 0.008136717602610588, -0.0018996227299794555, 0.0020183492451906204, -0.0015935724368318915, 0.03626168891787529, -0.014753736555576324, -0.020726995542645454, 0.028515448793768883, -0.0010969002032652497, 0.037169285118579865, -0.016262881457805634, 0.013329019770026207, -0.007134138606488705, -0.03752810135483742, 0.006706723477691412, -0.008326679468154907, 0.03955436870455742, -0.028135523200035095, 0.010648440569639206, -0.03362332284450531, 0.023703070357441902, -0.009002100676298141, -0.03655718266963959, 0.005588056985288858, -0.018130844458937645, -0.023534215986728668, 0.028262164443731308, 0.011155006475746632, 0.05829731002449989, 0.0027702832594513893, -0.019186189398169518, 0.023829711601138115, -0.04242490977048874, 0.017824793234467506, 0.0171810332685709, 0.002187204547226429, -0.021465737372636795, -0.0056408243253827095, -0.009487560018897057, -0.00018798350356519222, -0.02583486959338188, 0.017402654513716698, 0.01845800131559372, 0.012094264850020409, -0.03446760028600693, -0.010653717443346977, 0.005894107278436422, 0.009065422229468822, -0.026848001405596733, 0.0013521619839593768, 0.014120529405772686, 0.003841459285467863, 0.05386485904455185, -0.00886490661650896, 0.041475094854831696, -0.015724655240774155, 0.006896685808897018, 0.0024325724225491285, 0.016959410160779953, -0.02663693204522133, 0.01122888084501028, -0.014500454068183899, 0.012748579494655132, -0.014247170649468899, -0.013202378526329994, -0.010658994317054749, 0.02676357328891754, 0.02973964996635914, 0.018130844458937645, 0.01923895627260208, -0.009360918775200844, 0.018088629469275475, 0.00111998594366014, 0.018056970089673996, 0.004733226727694273, 0.004785994067788124, 0.03347557410597801, -0.006221264600753784, 0.020019913092255592, 0.0411796011030674, -0.03292679414153099, -0.002172693610191345, 0.00040729757165536284, 0.005693591665476561, 0.014046655036509037, 0.021001385524868965, -0.013951674103736877, -0.015175875276327133, -0.030225109308958054, -0.03645164892077446, -0.023829711601138115, -0.03195587545633316, 0.006110453046858311, -0.03662050515413284, -0.011513824574649334, -0.0042635975405573845, 0.020621459931135178, -0.04280483350157738, 0.0005250346148386598, -0.01426827721297741, 0.012463635765016079, 0.0027808365412056446, 0.02264772541821003, 0.012854114174842834, -0.01636841520667076, 0.0014590157661587, -0.010057447478175163, 0.016315648332238197, -0.012073158286511898, -0.0022228225134313107, 0.003994484432041645, 0.0065167611464858055, -0.0390055887401104, 0.02032596431672573, 0.0022135882172733545, -0.013635070063173771, -0.00987276155501604, -0.009756673127412796, -0.001916772103868425, -0.004382323939353228, -0.016062365844845772, 0.0016014875145629048, 0.00979361031204462, 0.002685855608433485, 0.011102239601314068, -0.001185945002362132, 0.021244114264845848, -0.009661692194640636, 0.0017479168018326163, -0.004297896288335323, 0.008342510089278221, 0.024188529700040817, -0.020220428705215454, -0.005107874516397715, 0.032356906682252884, -0.018932906910777092, 0.005308390129357576, -0.00942423939704895, 0.0019418365554884076, 0.00950339064002037, -0.015439711511135101, 0.044071245938539505, -0.0032161667477339506, -0.014088869094848633, -0.009661692194640636, 0.017508190125226974, 0.0012096903519704938, -0.00727133359760046, -0.018246931955218315, -0.010300176218152046, 0.01815195009112358, 0.012875220738351345, -0.027206819504499435, 0.002329676179215312, 0.023871926590800285, 0.019418366253376007, 0.005830786656588316, -0.026826893910765648, 0.02000935934484005, 0.03556516021490097, -0.014500454068183899, 0.0025552564766258, 0.009123465977609158, 0.019048994407057762, -0.002886371221393347, 0.00739797530695796, -0.00787288136780262, -0.008490257896482944, 0.03974432870745659, -0.0017597894184291363, 0.002133117988705635, -0.01989327184855938, 0.0017940881662070751, -0.020758654922246933, 0.0005204174667596817, 0.002340229693800211, -0.009466453455388546, 0.03621947392821312, 0.016157347708940506, 0.04149620234966278, 0.04470445588231087, 0.01977718435227871, 0.013413446955382824, 0.00668034004047513, -0.043184757232666016, 0.0017927689477801323, -0.004646160639822483, -0.011028365232050419, 0.015840742737054825, 0.0021489481441676617, -0.04584423080086708, 0.03632500767707825, -0.013054629787802696, 0.01219979953020811, -0.013540089130401611, 0.027797812595963478, 0.011777660809457302, -0.010015233419835567, 0.009798887185752392, -0.008717157877981663, -0.042171623557806015, -0.012336994521319866, -0.006126283202320337, 0.025644907727837563, -0.001893026870675385, -0.007392698433250189, -0.005105236079543829, -0.03750699758529663, 0.009218446910381317, -0.005693591665476561, -0.0343620665371418, 0.023639749735593796, 0.00922900065779686, 0.014067761600017548, -0.010104937478899956, 0.03385549783706665, -0.014363259077072144, 0.0024906164035201073, -0.004144871141761541, 0.03047839179635048, 0.028747623786330223, -0.018985673785209656, 0.015386944636702538, -0.01814139634370804, -0.027628958225250244, -0.013719497248530388, -2.399263030383736e-05, 0.0342143177986145, -0.01651616394519806, 0.0019655819050967693, 0.01093338429927826, 0.012759133242070675, 0.014574327506124973, -0.0032188051845878363, -0.011323862709105015, 0.012315887026488781, -0.014342151582241058, 0.008817415684461594, -0.0007209331961348653, -0.012801346369087696, -0.007466572802513838, 0.003110632300376892, -0.0045432643964886665, -0.02676357328891754, 0.02093806490302086, 0.008875459432601929, 0.005994365084916353, -0.02079031616449356, 0.025855977088212967, -0.005920490715652704, -0.031069384887814522, 0.0195766668766737, -0.03187144920229912, 0.023639749735593796, 0.017782580107450485, 0.023639749735593796, -0.0031159089412540197, 0.008769924752414227, 0.02473730966448784, 0.024462919682264328, -0.00987276155501604, 0.0051342579536139965, 0.006791151128709316, 0.0019734969828277826, 0.014352705329656601, -0.03816131129860878, 0.03307454288005829, -0.010680100880563259, 0.026003723964095116, 0.042593762278556824, 0.010479585267603397, 0.00559333385899663, 0.0070233275182545185, -0.0193550456315279, 0.013782818801701069, 0.011387183330953121, 0.005020808428525925, 0.04402903467416763, 0.034889739006757736, 0.0024985314812511206, -0.025032807141542435, 0.03529077023267746, -0.005258261226117611, -0.02866319566965103, 0.026045938953757286, 0.023534215986728668, 0.03974432870745659, -0.0026146196760237217, 0.006427057087421417, -0.03894226625561714, 0.014605987817049026, 0.006833365187048912, -0.031280454248189926, -0.01741320826113224, 0.0054350318387150764, 0.01947113312780857, 0.012706365436315536, 0.0283465925604105, 0.000930683221668005, -0.0058360630646348, -0.017961988225579262, -0.023470893502235413, -0.002155544236302376, -0.030309535562992096, 0.020885296165943146, -0.005994365084916353, -0.016357863321900368, -0.022542189806699753, 0.03493195027112961, 0.01636841520667076, -0.0036171982064843178, -0.050234466791152954, -0.027333460748195648, 0.016104578971862793, -0.018721837550401688, 0.03001403994858265, -0.010447924956679344, 0.0007473168661817908, 0.014922591857612133, 0.007730409037321806, -0.0009755354258231819, -0.02741788886487484, 0.007007497362792492, 0.0780111774802208, 0.012453082017600536, 0.013656176626682281, -0.028219951316714287, 0.0003746478178072721, -0.01093338429927826, -0.003590814769268036, 0.013371233828365803, 0.022310012951493263, 0.0023864011745899916, -0.027037963271141052, 0.042446013540029526, -0.028747623786330223, -0.015228642150759697, -0.0305206049233675, 0.024188529700040817, -0.0037200944498181343, -0.013613962568342686, -0.008954610675573349, -0.03370774909853935, -0.017402654513716698, -0.009012654423713684, -0.01958722062408924, -0.007825390435755253, 0.009170956909656525, -0.012569170445203781, -0.016811661422252655, -0.020178215578198433, 0.011851535178720951, 0.0038915881887078285, -0.03514302149415016, -0.004899443592876196, 0.005888830404728651, 0.004878336563706398, 0.01706494390964508, -0.011988730169832706, 0.009767226874828339, 0.0233442522585392, -0.01122888084501028, 0.01523919589817524, 0.001612040912732482, -0.0014840802177786827, 0.014954252168536186, -0.024652881547808647, -0.00709720142185688, 0.013930566608905792, 0.021782340481877327, -0.029233083128929138, 0.004854591563344002, 0.012843560427427292, -0.008126163855195045, 0.041010744869709015, -0.02760785073041916, 0.031976982951164246, -0.013972780667245388, -0.002546022180467844, 0.01931283064186573, -0.01880626566708088, 0.003822990693151951, 0.03847791254520416, -0.00228746235370636, -0.012358101084828377, 0.008379447273910046, -0.02509612776339054, -0.021159686148166656, -0.028958693146705627, 0.024104101583361626, 0.005514182616025209, -0.043606895953416824, -0.04109517112374306, -0.008347786962985992, 0.048925839364528656, -0.0020064765121787786, -0.010104937478899956, -0.007044434547424316, 0.02311207726597786, 0.014278830960392952, 0.0029866290278732777, 0.03951215371489525, -0.018099183216691017, -0.004559094551950693, -0.022858792915940285, -0.0019075378077104688, -0.039807651191949844, -0.01516532152891159, 0.0044773053377866745, -0.02672136016190052, -0.0006708042928948998, 0.0011747319949790835, 0.016801107674837112, -0.005078852642327547, -0.013993887230753899, 0.008379447273910046, -0.009107635356485844, 0.007239673286676407, 0.006147390231490135, -0.030225109308958054, 0.00018913779058493674, -0.01407831534743309, 0.014204956591129303, -0.014046655036509037, 0.007719855755567551, 0.04191834107041359, -0.0051342579536139965, -0.011788214556872845, 0.005508905742317438, -0.019998805597424507, -0.0070497109554708, 0.011534931138157845, -0.007487679831683636, -0.008711881004273891, 0.017265459522604942, 0.018711283802986145, -0.007635428104549646, 0.05112095922231674, -0.014563774690032005, -0.009756673127412796, -0.024462919682264328, -0.021613486111164093, -0.004590754862874746, -0.001212988281622529, -0.0008422979735769331, 0.017402654513716698, -0.05686204135417938, -0.013044076040387154, -0.0017162563744932413, -0.0132656991481781, -0.0069494531489908695, 0.004139594733715057, 0.0036251135170459747, 0.01310739666223526, -0.010474308393895626, 0.03182923421263695, -0.011735446751117706, -0.0007037838222458959, 0.023407572880387306, 0.0003121515619568527, 0.001556635252200067, -0.0009623435907997191, -0.017191585153341293, -0.009941359050571918, 0.018880140036344528, 0.0026436415500938892, -0.01085950993001461, 0.0009056187700480223, 0.0281988438218832, 0.003448342904448509, 0.005039277020841837, 0.025349410250782967, -0.011682679876685143, -0.000918810605071485, 0.004321641754359007, -0.029444152489304543, 0.031111599877476692, 0.009904421865940094, 0.010622057132422924, 0.0015869764611124992, -0.02163459174335003, 0.023090969771146774, -0.000740061339456588, -0.014278830960392952, 0.021455183625221252, 0.014468792825937271, -0.0023481447715312243, 0.01183042861521244, 0.011060025542974472, -0.0266791470348835, -0.012157585471868515, 0.0017017453210428357, -0.0048361229710280895, -0.011492718011140823, 0.01757151074707508, 0.0067436606623232365, 0.007118308451026678, -0.005825509782880545, -0.023914139717817307, -0.009962465614080429, 0.0024088271893560886, 0.019766630604863167, 0.007524616550654173, 0.004461475182324648, -0.008812138810753822, 0.0088807363063097, 0.008732987567782402, 0.003590814769268036, 0.003741201478987932, 0.007086648140102625, 0.0116721261292696, 0.00363566679880023, -0.00870660413056612, -0.019513346254825592, 0.005693591665476561, -0.0016793193062767386, 0.015439711511135101, -0.0037491165567189455, -0.019988251850008965, 0.01621011458337307, 0.003427236108109355, 0.00574108213186264, 0.011682679876685143, 0.005508905742317438, -0.009698629379272461, 0.007361038122326136, -0.026320328935980797, -0.018246931955218315, 0.02031541056931019, 0.0013501832727342844, -0.017012177035212517, -0.007788453251123428, 0.0037148178089410067, -0.019872164353728294, -0.016685020178556442, 0.0165267176926136, -0.014605987817049026, 0.010611503385007381, 0.00789398793131113, 0.00907597504556179, -0.00045775630860589445, 0.02214115858078003, 0.009835824370384216, -0.029887398704886436, 0.019566114991903305, 0.028557661920785904, 0.00478863250464201, -0.028051095083355904, -0.011545484885573387, -0.009292321279644966, 0.009023208171129227, 5.16593900101725e-06, -0.0026185770984739065, 0.014489900320768356, -0.010157705284655094, -0.01355064194649458, -0.016727233305573463, 0.022436656057834625, 0.003472088137641549, 0.0013521619839593768, 0.006068239454180002, 0.00861162319779396, 0.0017663852777332067, 0.000601217383518815, -0.007128862198442221, 0.02260551042854786, -0.008448044769465923, 0.006996943615376949, 0.005841339938342571, -0.05293615534901619, -0.00546669214963913, 0.010310729965567589, 0.004698927979916334, -0.0063584595918655396, -0.021782340481877327, -0.002233375795185566, -0.000794147839769721, 0.020420944318175316, -0.01609402522444725, 0.00037233924376778305, 0.016378968954086304, 0.022436656057834625, -0.01405720878392458, -0.01066427119076252, 0.0033902989234775305, -0.00019326023175381124, 7.993420877028257e-05, 0.008743541315197945, -0.006416503340005875, -0.025075020268559456, 0.0007598490919917822, 0.019450025632977486, -0.031153813004493713, 0.014289384707808495, -0.0014959529507905245, -0.005239792633801699, -0.021391863003373146, -0.0030182895716279745, 0.025391623377799988, 0.025391623377799988, -0.0006417822442017496, -0.04373353719711304, 0.0006760809919796884, 0.006279308348894119, -0.006532591767609119, -0.004606585018336773, -0.01479595061391592, -0.00781483668833971, 0.017983095720410347, 0.0031291008926928043, 0.017307674512267113, -0.013666730374097824, -0.0024246573448181152, -0.015112554654479027, -0.005020808428525925, -0.00859051663428545, -0.0055669499561190605, 0.014215510338544846, -0.01961888186633587, 0.028473233804106712, 0.012769686058163643, -0.026510290801525116, -0.02691132202744484, -0.006754214409738779, 0.0022887815721333027, -0.011999283917248249, -0.035227447748184204, 0.010342390276491642, -0.015344730578362942, 0.0040446133352816105, 0.002622534753754735, 0.00393644068390131, 0.03822463005781174, 0.004419261123985052, 0.00309216370806098, 0.0036198366433382034, -0.013751157559454441, -0.009007377550005913, -0.0010652398923411965, -0.006828088313341141, -0.014004440978169441, 0.01444768626242876, -0.02431517094373703, 0.009197340346872807, 0.0032504654955118895, 0.021223006770014763, -0.022098945453763008, -0.026594718918204308, 0.013962226919829845, 0.0013092885492369533, -0.007656535133719444, 0.016378968954086304, -0.013276251964271069, 0.015038680285215378, 0.03575512021780014, -0.027861133217811584, -0.011260541155934334, -0.01343455445021391, 0.017392100766301155, -0.008553579449653625, 0.002852072473615408, 0.001071835751645267, 0.021972302347421646, -0.017550403252243996, 0.01628398895263672, -0.012970201671123505, 0.01574576273560524, -0.01308629009872675, 0.018626855686306953, 0.012104818597435951, -0.006115729920566082, -0.009925528429448605, -8.640644955448806e-05, -0.0057199751026928425, -0.017444869503378868, 0.00559333385899663, -0.02330203913152218, -0.0018745582783594728, 0.003163399640470743, 0.007424358744174242, -0.01702273078262806, -0.020969724282622337, 0.0072291200049221516, -0.008717157877981663, 0.0046303304843604565, -0.0189962275326252, -0.030921636149287224, -0.021655699238181114, -0.006194880697876215, 0.0014233979163691401, 0.036979321390390396, 0.024167422205209732, -0.015249749645590782, 0.005237154196947813, -0.003669965546578169, -0.01308629009872675, 0.013529535382986069, 0.0014748460380360484, -0.006274031940847635, -0.005089405924081802, -0.015439711511135101, -0.006142113357782364, 0.017634831368923187, -0.014648201875388622, 0.0032715725246816874, -0.023681962862610817, -0.016780000180006027, 0.00025278833345510066, 0.03136488050222397, -0.008996824733912945, 0.023597536608576775, -0.004210830200463533, -0.012970201671123505, 0.014806504361331463, 0.02477952279150486, -0.0031291008926928043, -0.002762368181720376, -0.001229478046298027, -0.03009846620261669, -0.03946993872523308, 0.005234516225755215, 0.004395516123622656, 0.04529545083642006, 0.006527314893901348, -0.004540625959634781, 0.00022755897953175008, -0.015682440251111984, -0.019228404387831688, 0.015070340596139431, 0.005989088211208582, 0.02982407622039318, 0.0015408050967380404, 0.008310849778354168, -0.017824793234467506, 0.036198366433382034, -0.010695931501686573, 0.005909937433898449, -0.00444036815315485, 0.02714349888265133, -0.0052688149735331535, 0.012421421706676483, -0.004970679525285959, 0.007730409037321806, 0.011608805507421494, 0.03412988781929016, -0.019988251850008965, 0.03949104622006416, 0.0047042048536241055, -0.00044324531336314976, -0.02287990041077137, -0.0013350126100704074, 1.61084553838009e-05, 0.014553220942616463, 4.037419785163365e-06, 0.002775559900328517, 0.011608805507421494, -0.01452156063169241, 0.017086051404476166, -0.01194651611149311, -0.02520166151225567, 0.014827610924839973, 0.013202378526329994, 0.01264304481446743, 0.008279189467430115, -0.006432333495467901, -0.033412251621484756, -0.01093338429927826, 0.015534692443907261, 0.0105851199477911, -0.014922591857612133, -0.00797313917428255, -0.031111599877476692, -0.03556516021490097, 0.011735446751117706, 0.022626617923378944, 0.021782340481877327, -0.0014497814700007439, 0.014827610924839973, -0.0013983334647491574, -0.03738035261631012, -0.001751874340698123, -0.0032847642432898283, -0.019059548154473305, -0.01877460442483425, -0.02853655442595482, -0.006859748624265194, -0.004968041088432074, 0.02710128389298916, 0.011513824574649334, 0.014489900320768356, 0.006907239556312561, 0.008521919138729572, -0.008922950364649296, 0.008933503180742264, 0.0051210662350058556, -0.01526030246168375, 0.022288907319307327, 0.0071763526648283005, 0.00022261204139795154, -0.016579484567046165, 0.0031185473781079054, 0.03273683041334152, 0.004078912083059549, -0.01336068008095026, -0.018014755100011826, -0.017983095720410347, -0.027861133217811584, 0.00814199447631836, -0.0036937110126018524, 0.012347548268735409, -0.0004069677961524576, -0.020990831777453423, 0.022943221032619476, -0.015080894343554974, 0.014036101289093494, -0.004189723636955023, -0.015196981839835644, -0.00143527053296566, 0.010458478704094887, -0.01165101956576109, -0.002143671503290534, 0.019091209396719933, -0.022267799824476242, 0.010458478704094887, 0.006263478193432093, -0.009999402798712254, -0.009049591608345509, 0.0019866887014359236, -0.02357642911374569, 0.010094384662806988, 0.006469270680099726, -0.021296881139278412, -0.013613962568342686, -0.00033243399229831994, -0.004722673445940018, 0.01238976139575243, 0.0024325724225491285, -0.0052160476334393024, -0.022056730464100838, 0.027671171352267265, -0.007904541678726673, 0.01927061751484871, -0.019143976271152496, 3.551486588548869e-05, -0.026848001405596733, -0.01345566101372242, -0.0063584595918655396, 0.007302993908524513, 0.004126402549445629, -0.0018956651911139488, -0.02889537252485752, 0.0345098115503788, -0.011756554245948792, 0.0027175159193575382, 0.0004541285743471235, -0.017054390162229538, 0.0024879781994968653, 0.0024615945294499397, -0.0177614726126194, 0.01347676757723093, -0.028958693146705627, -0.010996704921126366, -0.011450503952801228, 0.03932218998670578, 0.012379208579659462, -0.05061439424753189, -0.011883195489645004, -0.012980755418539047, 0.0008864906267262995, -0.017961988225579262, -0.0014985912712290883, 0.017814239487051964, -0.022246692329645157, 0.005530012771487236, -0.008543025702238083, -0.020526479929685593, -0.018711283802986145, 0.013635070063173771, 0.020389284938573837, 0.008743541315197945, 0.023217611014842987, -0.02009378746151924, -0.0233442522585392, -0.006896685808897018, 0.0054403082467615604, -0.03579733520746231, -0.020800869911909103, -0.017867006361484528, -0.009593094699084759, -0.0023903585970401764, -0.009118189103901386, -0.02016766183078289, -0.0013033522991463542, 0.0015843381406739354, 0.02287990041077137, 0.03206140920519829, -0.01120777428150177, -0.002751814667135477, -0.009450622834265232, 0.01903844065964222, -0.005318943876773119, 0.003458896419033408, 0.0031185473781079054, -0.012579724192619324, -0.01877460442483425, 0.0388578400015831, 0.023513108491897583, -0.004553817678242922, 0.002796666929498315, 0.010073277167975903, -0.01628398895263672, -0.0033005946315824986, 0.031934767961502075, -0.041242919862270355, -0.0076143210753798485, 0.009725012816488743, 0.006595912389457226, 0.0005108534242026508, -0.007878157310187817, -0.014004440978169441, 0.024652881547808647, -0.017476528882980347, -0.011028365232050419, 0.009566711261868477, 0.003506386885419488, -0.02279547229409218, 0.016642805188894272, 0.014722076244652271, 0.014532114379107952, 0.011017811484634876, -0.00013900885824114084, -0.020062126219272614, 0.029992932453751564, -0.006347905844449997, -0.019450025632977486, 0.0059996419586241245, -0.024842843413352966, -0.006938899867236614, -0.01738154888153076, 0.007192182820290327, 0.003994484432041645, -0.0063795666210353374, -0.011746000498533249, -0.002862625988200307, 0.015397497452795506, 0.01516532152891159, 0.016273435205221176, -0.021296881139278412, -0.04181280732154846, 0.01787756010890007, -0.017233800143003464, 0.00300509762018919, 0.010579843074083328, 0.0065114847384393215, -0.0116721261292696, 0.01985105685889721, -0.012875220738351345, 0.0011450503952801228, -0.016801107674837112, -0.009012654423713684, -0.029845183715224266, 0.0008231698302552104, 0.035311877727508545, -0.01046903245151043, -0.0049812328070402145, 0.01266415137797594, -0.006289862096309662, 0.0008548302575945854, -0.014933145605027676, 0.0023098886013031006, -0.014595435000956059, -0.02477952279150486, -0.003582899458706379, 0.0041923620738089085, -0.01838412694633007, -0.028093310073018074, -0.019903825595974922, -0.003047311445698142, 0.009582540951669216, -0.008775201626121998, 0.00010380316962255165, 0.0004152126784902066, 0.010632610879838467, 0.006279308348894119, 0.007878157310187817, -0.0024958932772278786, -0.020990831777453423, -0.006712000351399183, 0.004260959569364786, 0.005603887140750885, -0.024652881547808647, 0.03704264387488365, -0.0049284654669463634, -0.004115849267691374, -0.009265937842428684, 0.0034984718076884747, -0.005179110448807478, 0.014722076244652271, 0.03157595172524452, -0.006390119902789593, -0.0132656991481781, 0.0003309499006718397, -0.009382025338709354, -0.0034562579821795225, -0.011693233624100685, -0.03075278177857399, 0.012685258872807026, 0.0076090446673333645, 0.0031739529222249985, -0.016146793961524963, 0.01602015271782875, 0.03343335911631584, 0.019070101901888847, 0.0007149968878366053, 0.008922950364649296, -0.005390179343521595, 0.00187323905993253, -0.006822811905294657, 0.03493195027112961, -0.025729333981871605, 0.004334833472967148, 0.0094981137663126, 0.019333938136696815, -0.031428202986717224, -0.0013277571415528655, -0.010009956546127796, 0.0132656991481781, -0.01831025257706642, 0.03005625307559967, 0.0010038978653028607, 0.015545246191322803, -0.022035622969269753, -0.012094264850020409, 0.014511006884276867, 0.01722324639558792, -0.01085950993001461, 0.0009234277531504631, 0.0034008524380624294, -0.009281767532229424, -0.005514182616025209, 0.000580110470764339, 0.0021938004065304995, -0.00890184286981821, 0.006416503340005875, 0.002267674542963505, 0.019217850640416145, -0.01498591247946024, 0.03611394017934799, -0.0009003420127555728, -0.014226064085960388, 0.0001619296526769176, -0.004429814871400595, -0.021033044904470444, -0.02676357328891754, -0.025264982134103775, 0.013022969476878643, -0.00470156641677022, 0.006648679729551077, -0.016421183943748474, 0.019302276894450188, -0.004413984715938568, 0.008827969431877136, 0.026109259575605392, 0.011439950205385685, -0.0140994219109416, -0.02012544684112072, 0.015386944636702538, 0.005105236079543829, 0.009181509725749493, -0.006532591767609119, 0.023681962862610817, -0.022985436022281647, -0.010020510293543339, -0.000248830794589594, -0.00650620786473155, 0.0166744664311409, 0.004421899560838938, -0.0018758774967864156, -0.006163220386952162, 0.016505610197782516, -0.024568453431129456, -0.02296432852745056, 0.007962585426867008, -0.007551000453531742, 0.0072343964129686356, 0.0005500990664586425, -0.002728069433942437, 0.0072502270340919495, -0.022901007905602455, 0.009450622834265232, 0.008638006635010242, -0.008838522247970104, -0.005200217477977276, -0.0040525286458432674, 0.000701145501807332, 0.0001285378384636715, -0.030499499291181564, 0.0054403082467615604, 0.018837925046682358, -0.015692993998527527, -0.0010032382560893893, 0.0036251135170459747, -0.018869586288928986, -0.01229478046298027, -0.028747623786330223, -0.03765474259853363, 0.033412251621484756, 0.008791032247245312, 0.003593452973291278, 0.007983691990375519, -0.025919297710061073, 0.015956830233335495, -0.02043149806559086, 0.011661573313176632, -0.0024431259371340275, 0.002328356960788369, 0.021085811778903008, -0.0072343964129686356, -8.887991862138733e-05, 0.0004960126243531704, 0.0034879185259342194, 0.01845800131559372, -0.016315648332238197, -0.010801466181874275, 0.01076452899724245, -0.02190898172557354, -0.0039575472474098206, 0.0020315409637987614, 0.002123883692547679, -0.001077772118151188, -0.011798768304288387, -0.008247529156506062, 0.010405710898339748, -0.012178692035377026, 0.03529077023267746, -6.595912418561056e-05, -0.004142232704907656, -0.004706842824816704, -0.0030948021449148655, 0.017898667603731155, -0.001655573956668377, 0.01590406335890293, -0.028135523200035095, 0.008126163855195045, 0.0027702832594513893, -0.00114373117685318, -0.008769924752414227, -0.027586743235588074, 0.0015737846260890365, 0.005989088211208582, -0.014352705329656601, 0.022077837958931923, 0.016463397070765495, -0.011313308961689472, 0.0026185770984739065, -0.028874265030026436, -0.006669786758720875, 0.005841339938342571, 0.007070817984640598, 0.017824793234467506, 0.011534931138157845, -0.021360201761126518, 0.012210353277623653, 0.0002633417898323387, -0.01854242943227291, 0.015059786848723888, -0.0005151407676748931, -0.0076143210753798485, 0.014458240009844303, -0.018552981317043304, 0.01974552311003208, 0.018795711919665337, 0.002402231330052018, 0.011767107993364334, 0.009302875027060509, 0.004163339734077454, -0.02019932121038437, -0.01139773614704609, -0.0037781386636197567, -0.008131440728902817, 0.02128632739186287, -0.02292211540043354, 0.021275775507092476, -0.005477245431393385, 0.010289623402059078, -0.010996704921126366, 0.008057566359639168, -0.0027781983371824026, 0.01139773614704609, 0.00220039626583457, -0.0010685378219932318, -0.003828267566859722, 0.01202039048075676, 0.004126402549445629, 0.012315887026488781, -0.01006272342056036, -0.011323862709105015, -0.008696050383150578, -0.023681962862610817, 0.004738503601402044, 0.019059548154473305, -0.056017763912677765, -0.011767107993364334, 0.014067761600017548, 0.008638006635010242, -0.013329019770026207, 0.03079499490559101, -0.0018363019917160273, 0.004804462660104036, 0.02625700831413269, 0.012790793552994728, 0.0013402893673628569, 0.012695811688899994, 0.004342748783528805, -0.007339931093156338, 0.004189723636955023, 0.003677880624309182, 0.004962764214724302, 0.025180554017424583, 0.026320328935980797, -0.02520166151225567, 0.027122391387820244, 0.0003203964442946017, 0.002841518959030509, -0.003828267566859722, 0.0420449823141098, 0.019903825595974922, 0.01877460442483425, -0.006886132527142763, 0.0017940881662070751, -0.007408528588712215, 0.0005444925627671182, 0.013793371617794037, -0.01076452899724245, 0.018046416342258453, 0.004437729716300964, 0.0011457100044935942, 0.024526240304112434, 0.0036910725757479668, -0.02672136016190052, -2.219936686742585e-05, 0.013139056973159313, -0.007930925115942955, -0.0023112075868993998, -0.005358519032597542, 0.008933503180742264, 0.013761711306869984, -0.006463994272053242, 0.011840981431305408, 0.018595196306705475, -0.008379447273910046, -0.006205434445291758, 0.009244830347597599, -0.0032926793210208416, 0.0102210259065032, 0.011967623606324196, 1.4016313798492774e-05, -0.0031502076890319586, 0.000713018118403852, -0.013666730374097824, 0.012052050791680813, 0.008806861937046051, 0.0031264624558389187, 0.02151850424706936, -0.0030605033971369267, -0.004342748783528805, 0.004857230000197887, 0.0077620698139071465, -0.000530641118530184, 0.026784680783748627, 0.02431517094373703, -0.001261138473637402, 0.013022969476878643, -0.00870660413056612, -0.014954252168536186, 0.0007572107133455575, -0.03562847897410393, -0.009614202193915844, -0.017043838277459145, -0.01702273078262806, -0.026848001405596733, -0.0006708042928948998, 0.00709720142185688, 0.01338178664445877, 0.017497636377811432, -0.007498233113437891, -0.014131082221865654, 0.0038968650624156, 0.009239554405212402, -0.00031314094667322934, -0.005899384152144194, -0.009645862504839897, -0.0023811243008822203, -0.0008324041264131665, 0.001631828723475337, -0.002838880755007267, -0.002565809991210699, 0.00034859395236708224, -0.006131560076028109, -0.004873060155659914, 0.01892235316336155, 0.0007948074489831924, -0.007471849676221609, -0.00735048484057188, 0.002569767413660884, 0.016505610197782516, -0.011366075836122036, 0.0025631715543568134, 0.009202617220580578, 0.003311147913336754, 0.020178215578198433, 0.006627572700381279, 0.012305334210395813, 0.00470156641677022, 0.018584642559289932, 0.013297359459102154, -0.0009287044522352517, 0.021845661103725433, 0.024420706555247307, 0.008236975409090519, 0.0159462783485651, -0.006215987727046013, 0.0001968879805644974, -0.022626617923378944, -0.0063795666210353374, -0.003166037844493985, -0.008664390072226524, 0.001403610105626285, -0.0028547109104692936, -0.0032504654955118895, -0.016959410160779953, -0.02019932121038437, -0.01444768626242876, -0.005400733090937138, -0.010658994317054749, -0.008632729761302471, 0.023175397887825966, 0.0116721261292696, 0.0032557423692196608, 0.020252089947462082, 0.01756095699965954, 0.009387302212417126, 0.012695811688899994, 0.02132854238152504, 0.001870600739493966, -0.010162982158362865, 0.0025090849958360195, -0.00546669214963913, -0.019882718101143837, -0.0028124970849603415, 0.0004854591388721019, -0.014764290302991867, 0.026468077674508095, -0.00890184286981821, -0.0059257675893604755, 0.013402894139289856, 0.004355940502136946, -0.005778019316494465, 0.0288531593978405, -0.0021186070516705513, 0.003166037844493985, -0.000870660413056612, -0.023323146626353264, 0.009382025338709354, -0.023048756644129753, -0.004055167082697153, 0.0003799245459958911, 0.0037675851490348577, -0.006601189263164997, 0.0009260660735890269, 0.02137075550854206, 0.028452128171920776, -0.00021073939569760114, 0.002565809991210699, 0.01970330998301506, 0.009925528429448605, -0.0051289815455675125, 0.004329557064920664, -0.004691012669354677, -0.016463397070765495, -0.016695573925971985, -0.003015651134774089, 0.00027867729659192264, 0.009936082176864147, -0.018932906910777092, 0.010564013384282589, -0.0065906355157494545, -0.022626617923378944, 0.043226972222328186, -0.0018072800012305379, -0.012315887026488781, 0.01853187568485737, -0.0026924514677375555, -0.006073515862226486, 0.023703070357441902, -0.011070579290390015, -0.00798896886408329, -0.0012908200733363628, 0.035734012722969055, 0.020758654922246933, -0.019376151263713837, 0.01567188836634159, 0.01989327184855938, -0.013276251964271069, 0.01398333441466093, 0.01985105685889721, 0.004445645026862621, 0.03231469541788101, -0.03250465542078018, -5.9857902670046315e-05, 0.0061526671051979065, 0.02853655442595482, 0.024631774052977562, 0.011819874867796898, -0.015967383980751038, -0.004675182513892651, 0.0016410630196332932, 0.015914617106318474, 0.0024510410148650408, 0.0033718303311616182, 0.028747623786330223, 0.002071116352453828, -0.012906881049275398, -0.00372273288667202, 0.0057199751026928425, -0.005709421820938587, -0.008711881004273891, 0.007645981386303902, -0.007070817984640598, -0.005450861994177103, 0.019207296893000603, 0.006933622993528843, 0.004638245329260826, 0.02093806490302086, 0.016621699556708336, 0.01479595061391592, 0.035227447748184204, 0.0054403082467615604, 0.01892235316336155, -0.01640007644891739, -0.02361864224076271, -0.021972302347421646, 0.01347676757723093, -0.011840981431305408, 0.02477952279150486, -0.025032807141542435, -0.007672365289181471, -0.010553459636867046, -0.005624994169920683, 0.014584881253540516, 0.0011140495771542192, 0.020030466839671135, 0.00046995875891298056, 0.011608805507421494, -0.004638245329260826, 0.007086648140102625, -0.014363259077072144, 0.017793133854866028, 0.011935963295400143, 0.001220243750140071, -0.0035512391477823257, 0.011366075836122036, -0.0003469449875410646, 0.033370040357112885, -0.018795711919665337, -0.02954968810081482, -0.01074342243373394, -0.014605987817049026, -0.004880975000560284, -0.011081133037805557, -0.005239792633801699, 0.0008211910608224571, -0.0088807363063097, -0.02807220257818699, 0.01624177396297455, 0.01562967337667942, -0.017983095720410347, -0.026130367070436478, 0.014637649059295654, 0.02067422680556774, -0.003464173059910536, 0.016642805188894272, -0.0077673462219536304, -7.281268608494429e-06, 7.173054473241791e-05, -0.004944296088069677, 0.0017769387923181057, 0.0011727531673386693, 0.05922601744532585, -0.005746359005570412, -0.01593572460114956, -0.0012420102721080184, 0.0012492657406255603, -0.006960006896406412, -0.0038572894409298897, 0.012569170445203781, -0.004648799076676369, -0.003200336592271924, 0.004691012669354677, 0.002038136823102832, 0.009197340346872807, 0.011513824574649334, -0.0021357564255595207, 0.002210949780419469, 0.017191585153341293, -0.0007697429391555488, 0.0016423821216449142, 0.008215867914259434, 0.018373573198914528, 0.01370894443243742, 0.023365359753370285, -5.054117718827911e-05, -0.015545246191322803, 0.009957189671695232, -0.01624177396297455, -0.006121006794273853, -0.0015619120094925165, 0.012949095107614994, -0.0013917374890297651, -0.01838412694633007, -0.014648201875388622, -0.012431975454092026, 0.026784680783748627, -0.007624874822795391, -0.008944056928157806, -0.014975359663367271, 0.020146554335951805, -0.02016766183078289, -0.006026025395840406, 0.013497875072062016, -0.03199809044599533, -0.005630270577967167, -0.013318466022610664, 0.02644697017967701, -0.005772742442786694, -0.012326440773904324, -0.005363795906305313, -0.013677284121513367, -0.009582540951669216, -0.015914617106318474, 0.012189245782792568, 0.0058730002492666245, 0.0016911919228732586, 0.019165081903338432, 0.006226541008800268, 0.011798768304288387, -0.005065660458058119, -0.0010005999356508255, -0.015492478385567665, 0.006696170195937157, 0.002751814667135477, -0.0077937301248312, -0.016041258350014687, -0.002904839813709259, 0.009809440933167934, -0.0216768067330122, -0.0048493146896362305, -0.003598729846999049, 0.014004440978169441, -0.019724415615200996, -0.0059996419586241245, -0.00503136171028018, 0.0029417769983410835, -0.013909460045397282, -0.008152547292411327, -0.00925010722130537, 0.004142232704907656, 0.0032372737769037485, -0.01541860494762659, 0.01911231502890587, -0.0008713200222700834, -0.0068914094008505344, 0.0011971581261605024, -0.026151472702622414, 0.013740604743361473, -0.005324220284819603, 0.01641063019633293, 0.030267322435975075, 0.0013350126100704074, -0.009936082176864147, -0.021613486111164093, -0.013286805711686611, -0.014479346573352814, 0.011883195489645004, -0.008516642265021801, 0.0010335794650018215, -0.00685447221621871, -0.008564132265746593, 0.00744546577334404, 0.004076273646205664, -0.031048279255628586, -0.013212931342422962, 0.0006163879879750311, -0.010769805870950222, -0.005936320871114731, 0.008527195081114769, -0.013392340391874313, 0.008120886981487274, -0.029929611831903458, -0.007846496999263763, -0.000590663927141577, -0.012569170445203781, 0.008052289485931396, -0.001708341296762228, -0.019872164353728294, -0.009123465977609158, -0.009888592176139355, 0.02672136016190052, -0.011788214556872845, 0.015840742737054825, 0.02629922144114971, -0.003669965546578169, -0.0044904970563948154, 0.004841399844735861, -0.007709302473813295, 0.012073158286511898, -0.017318228259682655, 0.005519459489732981, 0.024568453431129456, 0.002209630561992526, -0.018363019451498985, 0.0050551071763038635, 0.009587817825376987, 0.006706723477691412, -0.0320403054356575, 0.019808843731880188, -0.009408409707248211, -0.03368664160370827, 0.013001861982047558, 0.001621275208890438, -0.008390000090003014, 0.0166744664311409, -0.0189962275326252, -0.009883315302431583, -0.015408051200211048, 0.007313547655940056, -0.0159462783485651, 0.018447447568178177, -0.01996714621782303, 0.013022969476878643, 0.020157108083367348, 0.010537629947066307, 0.00781483668833971, -0.00951922032982111, 0.006463994272053242, -7.539951911894605e-05, -0.005115789361298084, -0.003973377402871847, -0.01752929575741291, 0.009582540951669216, 0.008289742283523083, 0.01373005099594593, -0.01977718435227871, -0.007450742647051811, -0.0003449662181083113, 0.005704144947230816, -0.02881094440817833, 0.047997135668992996, -0.0026410033460706472, 0.014964805915951729, 0.018679624423384666, -0.0031185473781079054, 0.015914617106318474, -0.02570822834968567, 0.0024510410148650408, 0.00035782824852503836, -0.012790793552994728, -0.03311675786972046, -0.01012076810002327, -0.007540447171777487, -0.03393992781639099, 0.006770044565200806, 0.006791151128709316, -0.024019673466682434, -0.001337651046924293, -1.498508845543256e-05, 0.004387600813060999, 0.007862327620387077, 0.001966901123523712, -0.01783534698188305, 0.014975359663367271, -0.01655837893486023, -0.022668831050395966, -0.011081133037805557, 0.015017572790384293, 0.01783534698188305, 0.009698629379272461, -0.020041020587086678, 0.0014867186546325684, 0.004880975000560284, 0.0014445048291236162, -0.044197890907526016, -0.029950719326734543, -0.0024114656262099743, 0.004316364880651236, 0.009740843437612057, -0.021233560517430305, 0.017286567017436028, -0.01514421496540308, -0.0016133601311594248, -0.01238976139575243, 0.017772026360034943, 0.01074342243373394, -0.009418962523341179, 0.0008502131095156074, 0.00663284957408905, -0.018078075721859932, 0.024758417159318924, 0.0012842240976169705, -0.007466572802513838, 0.01122888084501028, 0.013751157559454441, 0.004828207660466433, 0.0006859748973511159, 0.007054987829178572, -0.010310729965567589, 0.004751695320010185, 0.014479346573352814, 0.021930089220404625, -0.006015472114086151, 0.013951674103736877, 0.02338646724820137, 0.009239554405212402, -0.006912515964359045, 0.023196503520011902, -0.007730409037321806, -0.01093338429927826, 0.008426937274634838, -0.01004689373075962, 0.003962824121117592, 0.0048361229710280895, -0.01783534698188305, -0.0030314812902361155, 0.01165101956576109, 0.006495654582977295, 0.01597793772816658, -0.018605750054121017, -0.008574686013162136, -0.002005157293751836, -0.0010454520815983415, 0.011344969272613525, -0.008833245374262333, -0.013877799734473228, 0.011313308961689472, 0.015840742737054825, -0.008247529156506062, -0.016822215169668198, -0.005783295724540949, -0.0016094025922939181, 0.0056408243253827095, 0.008157824166119099, 0.016769448295235634, 0.012252566404640675, -0.010690654627978802, 0.01398333441466093, -0.014363259077072144, 0.015692993998527527, 0.0034562579821795225, -0.0182680394500494, -0.01722324639558792, 0.02128632739186287, 0.018257485702633858, -0.012431975454092026, 0.0001593737251823768, 0.021391863003373146, 0.01738154888153076, -0.011767107993364334, 0.006944176275283098, 0.008136717602610588, -0.013445107266306877, 0.02520166151225567, -0.008194761350750923, 0.028642090037465096, -0.018700730055570602, 0.003999761305749416, -0.008052289485931396, -0.022711046040058136, 0.026067044585943222, -0.012505849823355675, 0.039343297481536865, 0.0018297061324119568, 0.02404078096151352, 0.008659114129841328, -0.01722324639558792, 0.008047012612223625, 0.007054987829178572, -0.01489093154668808, -0.0039575472474098206, 0.012516403570771217, -0.020948616787791252, 0.010848956182599068, 0.03446760028600693, 0.012843560427427292, 0.002580320928245783, 0.006463994272053242, -0.027037963271141052, 0.02676357328891754, -0.019808843731880188, 0.010426818393170834, -0.011323862709105015, 0.030605033040046692, 0.007777899969369173, 0.020948616787791252, -0.008543025702238083, -0.0005336093017831445, 0.011260541155934334, 0.015038680285215378, 0.014331597834825516, -0.008838522247970104, -0.022077837958931923, -0.0013772264355793595, -0.014247170649468899, -0.0023547406308352947, 0.0010962405940517783, 0.003187144873663783, -0.016727233305573463, -0.0035090253222733736, 0.011017811484634876, -0.0102210259065032, -0.01155603863298893, 0.033327825367450714, -0.008342510089278221, -0.00591521430760622, -0.004012953024357557, 0.00825808197259903, 0.001796726486645639, -0.026067044585943222, -0.013424000702798367, -0.0011292202398180962, 0.007799006532877684, 0.008073396980762482, 0.008411107584834099, -0.035227447748184204, 0.002679259516298771, -0.021106919273734093, 0.0017624277388677, 0.0017136180540546775, -0.007936201989650726, 0.0016832768451422453, -0.017497636377811432, 0.0047094812616705894, -0.020769208669662476, 0.010817295871675014, -0.017909221351146698, 0.006073515862226486, -0.026045938953757286, 0.008173654787242413, -0.04373353719711304, -0.0033560001756995916, -0.0008033821359276772, 0.00184949382673949, 0.016917195171117783, 0.021824555471539497, 0.026848001405596733, -0.005329497158527374, 0.032441336661577225, -0.008521919138729572, 0.0043242801912128925, 0.004485220182687044, -0.01264304481446743, -0.011619359254837036, -0.009091805666685104, -0.003960185684263706, 0.020758654922246933, 0.013613962568342686, 0.019175635650753975, 0.0014814418973401189, -0.005184386856853962, -0.005218685604631901, -0.013793371617794037, -0.008659114129841328, -0.006522038020193577, -0.023470893502235413, 0.029022013768553734, 0.014753736555576324, -0.0032557423692196608, 0.0047042048536241055, -0.0007611682522110641, -0.00235078320838511, 0.00519757904112339, 0.020695334300398827, 0.006411226931959391, 0.014964805915951729, 0.008136717602610588, -0.0016832768451422453, 0.021391863003373146, -0.00885962974280119, -0.01266415137797594, -0.0003733286284841597, 0.00470156641677022, -0.01004689373075962, 0.005524736363440752, 0.006400673184543848, -0.018859032541513443, -0.005276729818433523, -0.031132705509662628, -0.007930925115942955, -0.058846089988946915, -0.014933145605027676, 0.002786113414913416, 0.010173534974455833, 0.0013396297581493855, 0.0001017419490381144, -0.004276789724826813, 0.005461415275931358, 0.022542189806699753, -0.013424000702798367, 0.003590814769268036, -0.01663225330412388, -0.013603409752249718, -0.007128862198442221, 0.00578857259824872, 0.0025301920250058174, -0.0021502673625946045, 0.00979361031204462, -0.011323862709105015, -0.005300475284457207, -0.005688314791768789, 0.006643402855843306, 0.010115491226315498, 0.0024879781994968653, 0.02106470614671707, 0.006321522407233715, 0.013835585676133633, 0.0036303901579231024, -0.0030948021449148655, -0.01477484405040741, -0.011376629583537579, -0.027671171352267265, 0.0025842783506959677, 0.008954610675573349, 0.00757210748270154, -0.01954500749707222, -0.003163399640470743, -0.01336068008095026, -0.005144811701029539, 0.021845661103725433, 0.002166097518056631, -0.02644697017967701, 0.009983573108911514, 0.00950339064002037, -0.007519340142607689, 0.008891290053725243, -0.010083830915391445, -0.00478863250464201, 0.00932925846427679, 0.0038731195963919163, -0.009603648446500301, 0.0018534513656049967, 0.00601019524037838, -0.002685855608433485, 0.017170479521155357, 0.0012123286724090576, 0.021761232987046242, -0.009941359050571918, 0.0031739529222249985, -0.012358101084828377, 0.03168148547410965, 0.013846139423549175, 0.008279189467430115, 0.011587698943912983, -0.00300509762018919, -0.012790793552994728, -0.010310729965567589, 0.01118666771799326, 0.01345566101372242, 0.03431985154747963, -0.044535599648952484, -0.006453440524637699, -0.02296432852745056, 0.01338178664445877, -0.009529774077236652, 0.00561444042250514, -0.0007328058709390461, 0.01130275521427393, 0.0009761950350366533, 0.0038467361591756344, -0.02118079364299774, 0.0016674466896802187, 0.01783534698188305, -1.2460091056709643e-05, -0.014204956591129303, 0.007920371368527412, 0.00559333385899663, -0.006638125982135534, -0.011872641742229462, 0.01632620207965374, 0.039997611194849014, 0.025961510837078094, 0.006933622993528843, 0.021265221759676933, 0.01202039048075676, -0.010695931501686573, -0.0027676448225975037, -0.0021621400956064463, 0.011862088926136494, 0.01842634007334709, -0.0005342689109966159, -0.014859271235764027, -0.021740127354860306, 0.004725311417132616, 0.013170717284083366, -0.011155006475746632, -0.032441336661577225, -0.00461450032889843, -0.020684780552983284, 0.04563315957784653, 0.021265221759676933, 0.014658755622804165, -0.019344491884112358, 0.0048361229710280895, -0.010458478704094887, 0.006880855653434992, -0.013181271031498909, 0.003928525373339653, -0.012801346369087696, 0.012210353277623653, -0.010184088721871376, -0.028008881956338882, -0.02074810117483139, -0.005735805258154869, 0.000983450561761856, -0.002338910475373268, 0.011545484885573387, 0.0074612959288060665, -0.01632620207965374, 0.0047042048536241055, -0.024484027177095413, 0.009207893162965775, -0.003110632300376892, 0.010796189308166504, 0.006432333495467901, 0.013941120356321335, -0.01760317012667656, 0.015302516520023346, -0.010975598357617855, -0.018373573198914528, 0.019365599378943443, 0.010548182763159275, 0.027628958225250244, 0.012242013588547707, -0.008226421661674976, -0.020505372434854507, 0.014532114379107952, 0.008812138810753822, 0.03187144920229912, 0.01291743479669094, -0.0036277517210692167, -0.010901723988354206, 0.030077360570430756, 0.018700730055570602, -0.0052081323228776455, 0.03672603890299797, -0.0020750740077346563, -0.022985436022281647, 0.007835944183170795, 0.013202378526329994, -0.005155364982783794, 0.013856692239642143, 0.016220668330788612, 0.02556047961115837, -0.013603409752249718, 0.004759610164910555, 0.0010480905184522271, 0.005189663730561733, -0.031470417976379395, -0.0205898005515337, -0.0036514969542622566, 0.012674705125391483, 0.02148684486746788, 0.010162982158362865, 0.011038918979465961, -0.004553817678242922, 0.006168497260659933, 0.018363019451498985, -0.020136000588536263, -0.03993429243564606, 0.004659352358430624, -0.004675182513892651, 0.0025407455395907164, -0.025623800233006477, 0.010801466181874275, -0.028135523200035095, 0.013592856004834175, -0.0019405174534767866, 0.012801346369087696, 0.02171901986002922, 0.010648440569639206, -0.006347905844449997, 0.016621699556708336, -0.018046416342258453, 0.020610906183719635, -0.006395396776497364, -0.008601069450378418, 0.0036594122648239136, 0.010352944023907185, 0.0026291306130588055, 0.002480063121765852, -0.00824225228279829, -0.0006315585924312472, -0.009777780622243881, -0.0034219592344015837, -0.018637409433722496, -0.01095449086278677, 0.006068239454180002, 0.0005916533409617841, -0.016568930819630623, -0.006886132527142763, 0.005123704671859741, 0.01648450456559658, 0.022288907319307327, -0.0065114847384393215, 0.0256660133600235, -8.232523396145552e-05, 0.007345207966864109, 0.017318228259682655, -0.01419440284371376, 0.01927061751484871, -0.016938302665948868, 0.023470893502235413, -0.00922900065779686, 0.011999283917248249, -0.000617707206401974, -0.007878157310187817, -0.005276729818433523, 0.001180008752271533, 0.015175875276327133, 0.0022795472759753466, -0.0023916778154671192, -0.002473467029631138, 0.0306683536618948, -0.0033269780687987804, 0.017539849504828453, 0.012484743259847164, 0.020220428705215454, 0.009044314734637737, 0.014183850027620792, -0.0039786542765796185, -0.016072919592261314, -0.011376629583537579, 0.02241554856300354, 8.075869845924899e-05, 0.011218328028917313, -0.006738383788615465, 0.007107755169272423, -0.0211702398955822, -0.01551358588039875, -0.02963411435484886, 0.018869586288928986, -0.008469151332974434, 0.03056281991302967, -0.0037174562457948923, -0.0054350318387150764, -0.016083473339676857, -0.009339812211692333, 0.03024621494114399, 0.03326450660824776, 0.007519340142607689, 0.005020808428525925, 0.004878336563706398, -0.006274031940847635, 0.00835833977907896, -0.037401460111141205, 0.006121006794273853, -0.0027491762302815914, 0.008126163855195045, -0.0076143210753798485, 0.005289921537041664, 0.0023085693828761578, 0.02807220257818699, -0.03569180145859718, -0.020389284938573837, -0.02186676859855652, 0.006142113357782364, 0.00808394979685545, 0.006880855653434992, 0.0025209577288478613, -0.01760317012667656, 0.005337412469089031, -0.0072555034421384335, 0.0006500271847471595, 0.020832529291510582, -0.003838821081444621, -0.01698051579296589, 0.0008112972136586905, -0.012685258872807026, 0.018837925046682358, -0.0027386227156966925, 0.012326440773904324, 0.023323146626353264, -0.007640704978257418, -0.04580201581120491, -0.011967623606324196, 0.03242022916674614, -0.01227367389947176, -0.010173534974455833, -0.0024510410148650408, -0.003013012697920203, -0.013635070063173771, -0.014658755622804165, 0.001513102324679494, 0.00853247195482254, 0.004102657549083233, -0.016505610197782516, -0.027206819504499435, -0.0020843083038926125, 0.012041497975587845, -0.020568693056702614, -0.014479346573352814, 0.02997182495892048, 0.008321402594447136, 0.03472088277339935, 0.02843102067708969, -0.005303113721311092, -0.009709183126688004, 0.010965044610202312, 0.017856454476714134, 0.013371233828365803, -0.022077837958931923, -0.008986270986497402, 0.030267322435975075, 0.017772026360034943, 0.014226064085960388, -0.013687836937606335, 0.009656415320932865, 0.021159686148166656, 0.007107755169272423, -0.003514302195981145, 0.01486982498317957, -0.0022241417318582535, -0.00631096912547946, -0.007018050644546747, 0.006981113459914923, -0.004508965648710728, 0.006970560178160667, -0.020230982452630997, -0.017518743872642517, -0.006659233011305332, -0.011366075836122036, -0.007260780315846205, 0.009202617220580578, 0.002526234369724989, -0.004041974898427725, 0.008886013180017471, 0.001763746957294643, 0.028409913182258606, -0.007091925013810396, -0.011007258668541908, -0.014278830960392952, 0.010305453091859818, 0.015735208988189697, -0.02043149806559086, 0.003242550417780876, -0.006801704876124859, 0.006611742544919252, -0.0001437084429198876, -0.0016582123935222626, 0.009165680035948753, -0.007387422025203705, 0.008200038224458694, -0.010147151537239552, -0.00478863250464201, 0.0233442522585392, 0.013022969476878643, 0.0027702832594513893, -0.0025275535881519318, -0.0028336038812994957, 0.022204479202628136, 0.002741261152550578, -0.011682679876685143, 0.008659114129841328, 0.020304856821894646, -0.00447994377464056, -0.01663225330412388, -0.015355284325778484, -0.005693591665476561, 0.0119254095479846, 0.019523900002241135, 0.020114894956350327, -0.0008277869783341885, -0.03168148547410965, -0.00922900065779686, -0.01760317012667656, -0.009904421865940094, -0.00409210380166769, -0.008368893526494503, 0.02908533439040184, 0.0005715357838198543, -0.016262881457805634, 0.005814956501126289, 0.011239434592425823, 0.010564013384282589, 0.02380860596895218, 0.005231877788901329, 0.0073082707822322845, -0.008025906048715115, 0.013635070063173771, -0.013972780667245388, -0.004485220182687044, -0.029887398704886436, 0.003764946712180972, 0.0005448223673738539, -0.005237154196947813, 0.022901007905602455, 0.010447924956679344, -0.006247648037970066, 0.005400733090937138, 0.012062604539096355, 0.008321402594447136, -0.014616541564464569, 0.00280722021125257, 0.012083711102604866, 0.02594040334224701, 0.02881094440817833, 0.0009544285130687058, -0.0031528461258858442, -0.0035723461769521236, -0.0061526671051979065, -0.009767226874828339, -0.001088325516320765, -0.005857170093804598, -0.009287044405937195, 0.01498591247946024, -0.01605181209743023, 0.019175635650753975, -0.03079499490559101, 0.0032372737769037485, 0.012242013588547707, 0.011344969272613525, -0.004807101096957922, -0.01628398895263672, 0.026468077674508095, 0.013993887230753899, 0.012706365436315536, -0.01625232771039009, -0.029444152489304543, 0.008057566359639168, -0.005152726545929909, 0.012189245782792568, 0.018954014405608177, 0.004899443592876196, 0.0032715725246816874, 0.003949632402509451, 0.016421183943748474, 0.005308390129357576, 0.012252566404640675, -0.00650620786473155, 0.014711522497236729, -0.002392997033894062, -0.001273011090233922, -0.01227367389947176, 0.005456138867884874, 0.013751157559454441, -0.026742467656731606, 0.019165081903338432, -0.01927061751484871, -0.023871926590800285, 0.001968220341950655, -0.014352705329656601, 0.027861133217811584, 0.019059548154473305, -0.012885774485766888, 0.016262881457805634, 0.01663225330412388, -0.013117950409650803, -0.002904839813709259, 0.00443245330825448, 0.013276251964271069, -0.0015751038445159793, -0.003986569587141275, -0.013529535382986069, 0.011851535178720951, 0.015640227124094963, 0.006015472114086151, -0.004123764578253031, 0.0064376103691756725, 0.005677761510014534, 0.003472088137641549, -0.004865144845098257, -0.012315887026488781, 0.019808843731880188, -0.009535050950944424, -0.02714349888265133, 0.0018534513656049967, -0.018721837550401688, -0.009440070018172264, 0.000642441853415221, -0.005656654480844736, 0.020610906183719635, -0.018289145082235336, 0.031132705509662628, 0.0020513287745416164, 0.005556396674364805, -0.007899264805018902, 0.00032138582901097834, 0.0057199751026928425, -0.005105236079543829, 0.006289862096309662, 0.012505849823355675, 0.023238718509674072, 0.0037939688190817833, -0.022436656057834625, -0.019249510020017624, -0.011102239601314068, -0.003287402680143714, -0.015766868367791176, 0.002177970251068473, -0.006791151128709316, -0.02598261833190918, 0.005535289645195007, 0.01624177396297455, -0.0073293778114020824, -0.011344969272613525, 0.005052468739449978, -0.01850021444261074, 0.002166097518056631, -0.01373005099594593, -0.02125466801226139, -0.014394919387996197, 0.01818361133337021, -0.010194642469286919, 0.0015856573591008782, 0.010790912434458733, 0.010326560586690903, -0.009408409707248211, -0.0008475747308693826, 0.0205898005515337, 0.0065167611464858055, -0.008711881004273891, -0.013719497248530388, 0.011819874867796898, -0.0017492359038442373, 0.013582302257418633, -0.009297598153352737, -0.004524795804172754, -0.012094264850020409, 0.0016740425489842892, -0.0013383106561377645, 0.00613683694973588, -0.004010314587503672, -0.018985673785209656, -0.007429635617882013, 0.004134317860007286, -0.008152547292411327, 0.006806981284171343, -0.015576906502246857, -0.022310012951493263, -0.013001861982047558, -0.024885058403015137, -0.01857408881187439, 0.01767704449594021, 0.0054930755868554115, 0.020811421796679497, 0.024209637194871902, -0.012083711102604866, -0.017782580107450485, 0.023871926590800285, 0.00503136171028018, -0.014563774690032005, 0.012558616697788239, 0.006221264600753784, -0.01974552311003208, 0.031660377979278564, 0.017043838277459145, 0.028937585651874542, 0.007682918570935726, 0.003231997136026621, -0.003545962506905198, -0.00065068673575297, -0.001966901123523712, 0.007577383890748024, -0.013856692239642143, 0.013898906297981739, 0.011450503952801228, 0.006353182718157768, -0.03514302149415016, -0.005036638583987951, 0.007134138606488705, -0.004268874414265156, -0.025117233395576477, 0.004735865164548159], "20d7b474-fffe-481a-a28d-3393a60f7c3d": [-0.010882989503443241, -0.0067863259464502335, -0.00768287992104888, 0.042694300413131714, -0.04782494530081749, -0.002643852960318327, -0.02005140110850334, 0.011144757270812988, 0.006105729844421148, 0.03015563078224659, 0.02079743891954422, -0.013742800801992416, 0.004639831371605396, 0.0004507311386987567, 0.022119365632534027, -0.012820069678127766, 0.001380824251100421, 0.017643138766288757, 0.008985173888504505, -0.011341082863509655, 0.026713386178016663, -0.011177477426826954, -0.030207984149456024, -0.02732854150235653, 0.010071509517729282, -0.03062681294977665, -0.019763456657528877, -0.011040049605071545, -0.0249071903526783, -0.011485055088996887, 0.007879205979406834, 0.0008662872714921832, -0.018454618752002716, 0.047327589243650436, 0.015941647812724113, -0.024854836985468864, -0.02160891704261303, -0.0010143495164811611, 0.0010078053455799818, -0.007885749451816082, -0.013467944227159023, 0.013912949711084366, -0.020012134686112404, 0.002321551786735654, -0.0282709039747715, -0.02231569029390812, -0.024514539167284966, -0.01790490560233593, 0.03248536214232445, -0.008782303892076015, 0.02315334603190422, -0.002836906583979726, -0.02601970173418522, -0.0208628810942173, 0.055075909942388535, -0.009953713975846767, 0.014999285340309143, 0.04874113202095032, 0.002247929573059082, -0.04910760745406151, -0.014645898714661598, -0.051908522844314575, 0.0002595180703792721, -0.02433130145072937, 0.006105729844421148, 0.0060271997936069965, -0.02083670347929001, 0.018323734402656555, 0.01918756775557995, 0.01904359459877014, 0.00046095644938759506, 0.045076385140419006, -0.049552612006664276, 0.03659511357545853, 0.03761600703001022, 0.017315927892923355, 0.0009832646464928985, -0.0024017179384827614, 0.03154299780726433, -0.014423396438360214, 0.01526105310767889, 0.015339583158493042, 0.009502165019512177, 0.024723952636122704, 0.011975869536399841, 0.0444219671189785, -0.017315927892923355, -0.05690828338265419, -0.010313645005226135, -0.018991241231560707, -0.0016802209429442883, 0.017656227573752403, -0.017459901049733162, -0.0031968371476978064, -0.007879205979406834, -0.002753468230366707, -0.0080755315721035, 0.01077173836529255, 0.046961113810539246, -0.001809468725696206, -0.013369781896471977, 0.008854290470480919, -0.008324210532009602, -0.0031886568758636713, 0.007035004906356335, -0.02255128137767315, -0.009849007241427898, 0.020535670220851898, -0.0021072293166071177, -0.0038807052187621593, 0.00349132576957345, -0.029265621677041054, 0.022119365632534027, 0.01850697211921215, -0.027747368440032005, 0.00040349026676267385, -0.036228641867637634, 0.027145303785800934, 0.012447050772607327, -0.002264290116727352, 0.010693207383155823, -0.02092832140624523, 0.04062633588910103, 0.0015918744029477239, -0.009803197346627712, 0.043558135628700256, -0.006832135375589132, -0.019095947965979576, 0.02351982146501541, 0.02507733926177025, 0.016988718882203102, 0.0014299056492745876, 0.007165888790041208, -0.01293786522001028, -0.0220408346503973, 0.015378848649561405, 0.016713863238692284, 0.08685450255870819, -0.022158630192279816, 0.010071509517729282, -0.022642899304628372, 0.011105491779744625, -0.021046116948127747, 0.015051638707518578, -0.0033326291013509035, -0.03062681294977665, -0.0427466556429863, 0.041280753910541534, -0.012538669630885124, -0.0009669041610322893, -0.013337060809135437, 0.02816619724035263, -0.04939555376768112, 0.025627050548791885, 0.06811194121837616, 0.01454119198024273, -0.012433962896466255, 0.0270929504185915, 0.002094140974804759, 0.05101851001381874, 0.0349983312189579, -0.035993050783872604, -0.010006067343056202, 0.0009579058969393373, 0.07559849321842194, 0.01460663415491581, 0.04512874037027359, 0.014645898714661598, 0.018127407878637314, 0.002817274071276188, 0.027511777356266975, -0.021281708031892776, 0.0212031789124012, 0.005824329797178507, 0.05185616761445999, -0.03285183757543564, 0.030783873051404953, -0.008383108302950859, 0.012375065125524998, -0.036464229226112366, -0.017577696591615677, -0.01773475669324398, 0.04525962471961975, -0.018362998962402344, -0.008468182757496834, 0.05198705196380615, -0.025129692628979683, 0.017721667885780334, -0.011275640688836575, 0.013886773027479649, -0.014933843165636063, -0.020182283595204353, 0.025247488170862198, 0.021883774548768997, -0.0009881728328764439, -0.022197894752025604, -0.013297795318067074, 0.012172195129096508, -0.007879205979406834, 0.025051161646842957, 0.005493848118931055, -0.024881012737751007, 0.003772726049646735, 0.04821759834885597, -0.01122328732162714, 0.034684211015701294, -0.006989195942878723, -0.03897720202803612, 0.0069695631973445415, -0.002926889341324568, 0.029893863946199417, -0.011504687368869781, 0.02968444861471653, -0.00042291832505725324, -0.0186771210283041, 0.011491598561406136, -0.0051895431242883205, 0.028087666258215904, 0.007270595990121365, -0.037982482463121414, 0.012761171907186508, -0.007604349870234728, -0.007970823906362057, -0.002632400719448924, -0.02503807470202446, 0.029658272862434387, -0.021765979006886482, 0.021962303668260574, -0.02645161934196949, -0.04416019842028618, 0.03379420191049576, -0.024488361552357674, 0.041647229343652725, -0.01324544195085764, 0.009122601710259914, 0.027354717254638672, 0.0016098709311336279, -0.007473465986549854, -0.030574459582567215, -0.004708545282483101, -0.006498381495475769, 0.03219741955399513, -0.02126861922442913, -0.004450049716979265, -0.010307100601494312, 0.008023178204894066, 0.007106991019099951, 0.04963114112615585, 0.014043833129107952, 0.03416067734360695, 0.0032655512914061546, 0.01692327670753002, 0.028768261894583702, -0.008729950524866581, -0.010830636136233807, 0.03863690048456192, 0.05444766581058502, -0.045076385140419006, -0.00484597310423851, -0.019698014482855797, 0.0026307646185159683, -0.02382085472345352, -0.011969325132668018, -0.003936330787837505, 0.04714434966444969, -0.024187328293919563, 0.050809096544981, -0.005840690340846777, -0.017315927892923355, 0.021425681188702583, 0.027721192687749863, -0.03005092404782772, -0.029134737327694893, 0.058845363557338715, -0.03758983314037323, 0.010464160703122616, 0.0014519923133775592, 0.0012368520256131887, -0.006298783700913191, 0.010765193961560726, -0.0036058491095900536, -0.026137497276067734, 0.018153585493564606, -0.017224309965968132, -0.009502165019512177, 0.04256341606378555, 0.006357681471854448, -0.031988006085157394, -0.0014192713424563408, 0.02439674362540245, 0.01591547206044197, -0.007460377644747496, -0.018389176577329636, 0.026399265974760056, 0.009868639521300793, 0.010156583972275257, -0.024815570563077927, -0.006521285977214575, -0.014109275303781033, 0.007473465986549854, 0.02173980139195919, 0.029370328411459923, -0.011072770692408085, -0.025718670338392258, 0.02850649505853653, -0.029187090694904327, 0.02375541254878044, 0.04434343799948692, -0.04421255365014076, 0.03240683302283287, 0.012950953096151352, -0.0400504469871521, -0.03389890864491463, -0.03382037952542305, 0.010797915048897266, 0.04465755820274353, -0.04431726038455963, -0.008324210532009602, 0.000777122681029141, 0.003546951338648796, -0.021190090104937553, -0.011570129543542862, -0.034815095365047455, 0.0018078327411785722, 0.012296534143388271, -0.03180476650595665, 0.05717005208134651, 0.00842891726642847, 9.708920697448775e-05, -0.00751273101195693, -0.044238731265068054, 0.028558848425745964, 0.007898838259279728, -0.002908892696723342, -0.016700774431228638, -0.015326494351029396, -0.02581028826534748, -0.04324401170015335, -0.0020139748230576515, -0.027982959523797035, -0.024409832432866096, -0.008173693902790546, 0.024684688076376915, -0.020012134686112404, -0.014122364111244678, -0.003226286033168435, -0.013121102936565876, 0.007859572768211365, 0.000785711919888854, -0.02332349680364132, 0.0008458366501145065, 0.01908286102116108, 0.018860356882214546, 0.016098709776997566, 0.051175571978092194, -0.0206927303224802, -0.04863642528653145, 0.005147005897015333, 0.019567130133509636, -0.02113773673772812, -0.027014419436454773, -0.04792965203523636, 0.018088143318891525, -0.021661272272467613, -0.027276186272501945, 0.02248583920300007, 0.013860596343874931, -0.014632810838520527, -1.6654454157105647e-05, 0.0145542798563838, -0.001498619676567614, -0.0036058491095900536, -0.038479842245578766, -0.04840083420276642, -0.012957497499883175, -0.04520726948976517, 0.027407070621848106, -0.007434200495481491, -0.019868163391947746, 0.010411807335913181, 0.002321551786735654, -3.55584743374493e-05, -0.043898433446884155, -0.0024082621093839407, 0.009672313928604126, 0.012159106321632862, 0.0011182385496795177, -0.040835749357938766, -0.0058439625427126884, -0.009417090564966202, -0.02231569029390812, -0.022472750395536423, -0.034003615379333496, 0.004865605849772692, -0.03251153975725174, -0.027380894869565964, 0.0064460281282663345, -0.03238065540790558, 0.008455094881355762, -0.025901906192302704, -0.034710388630628586, 0.006567095406353474, -0.010202393867075443, -0.020810525864362717, -0.003116670763120055, -0.023742323741316795, 0.02696206606924534, 0.023951739072799683, 0.02227642573416233, 0.0208628810942173, 0.018061965703964233, -0.002706022933125496, 0.013016395270824432, 0.04018133133649826, 0.033296842128038406, 0.019436245784163475, -0.017407547682523727, 0.04714434966444969, -0.008193327113986015, -0.0012213096488267183, 0.03146446868777275, 0.031647708266973495, -0.0019223560811951756, 0.04287753626704216, -0.022996285930275917, 0.01039871945977211, 0.000758717127609998, -0.012126385234296322, -0.00754545209929347, -0.005349875893443823, 0.016033267602324486, 0.06716957688331604, 0.012767716310918331, 0.033637139946222305, -0.007035004906356335, -0.023847030475735664, 0.017145778983831406, -0.0014675348065793514, -0.0021432223729789257, 0.003704011905938387, -0.005438222549855709, 0.010477249510586262, 0.0008859198424033821, -0.017342105507850647, -0.020941410213708878, 0.011013872921466827, -0.021752890199422836, 0.010182760655879974, 0.007074270397424698, -0.0045547569170594215, 0.008160606026649475, 0.0017652955139055848, -0.06334776431322098, 0.001709669828414917, 0.022433485835790634, 0.009875183925032616, 0.050259385257959366, -0.014187805354595184, -0.0014618085697293282, -0.023480556905269623, -0.007695968262851238, 0.015064727514982224, 0.025064250454306602, -0.00217430735938251, 0.019540954381227493, -0.023703059181571007, -0.021085383370518684, -0.02484174817800522, 0.0024818843230605125, 0.01115784514695406, 0.01585002988576889, -0.0257448460906744, -0.014240158721804619, 0.04910760745406151, 0.02658250369131565, -0.020234636962413788, -0.01629503443837166, -0.006223525386303663, -0.0223811324685812, -0.00674706045538187, 0.007342582102864981, -0.02062729001045227, -0.011033505201339722, -0.007205153815448284, -0.004099935293197632, -0.001296567847020924, -0.04067869111895561, -0.02863737940788269, 0.013834419660270214, 0.0019436246948316693, -0.006593272089958191, 0.01320617739111185, -0.012414329685270786, 0.022590545937418938, 0.023716147989034653, -0.0027927334886044264, -0.01874256320297718, -0.04054780676960945, -0.01685783453285694, -0.011858073994517326, 0.041882820427417755, -0.039762504398822784, 0.018114320933818817, 0.025928083807229996, -0.047065820544958115, 0.02587573044002056, -0.005176454782485962, 0.019999047741293907, -0.011236375197768211, 0.0006519650341942906, -0.03850601986050606, 0.029265621677041054, -0.027852075174450874, 0.006442755926400423, -0.002670029876753688, 0.024998808279633522, -0.004433689173310995, -0.017446812242269516, 0.02527366392314434, -0.008114796131849289, 0.004901598673313856, 0.01204785518348217, -0.002368997083976865, -0.0045024030841887, -0.028244728222489357, 0.028820615261793137, -0.026163674890995026, -0.017211221158504486, 0.010935342870652676, -0.01706724986433983, -0.01895197667181492, 0.00363856996409595, -0.011249464005231857, 0.0282709039747715, 0.014148540794849396, 0.029187090694904327, 0.00868414156138897, -0.012132929638028145, -0.012532125227153301, -0.002295374870300293, 0.03313978388905525, 0.033506255596876144, 0.04193517565727234, -0.0008004363626241684, 0.011210198514163494, 0.031071817502379417, 0.026464708149433136, 0.010379086248576641, -0.04190899804234505, -0.0044762264005839825, -0.02587573044002056, 0.011066226288676262, -0.05371471866965294, 0.006904121488332748, 0.00047486284165643156, -0.020378610119223595, -0.007224786560982466, -0.00022475204605143517, -0.007021916564553976, -0.029789157211780548, -0.017512254416942596, 0.010627766139805317, 0.010850268416106701, 0.03628099337220192, -0.02028699219226837, -0.005634548142552376, -0.03580981120467186, 0.02325805462896824, 0.0018307373393326998, 0.018899623304605484, 0.04850554093718529, -0.004934319760650396, 0.040704865008592606, 0.019069772213697433, -0.014096186496317387, 0.03384655341506004, 0.019305363297462463, -0.03313978388905525, -0.009940626099705696, -0.007329493761062622, 0.027433248236775398, 0.0011918607633560896, 0.024422919377684593, -0.02372923493385315, 0.024449096992611885, 0.003170660464093089, 0.00038815231528133154, 0.006910665426403284, -0.01632121205329895, 0.03484127297997475, 0.037171002477407455, 0.028899146243929863, 0.011792631819844246, -0.017852552235126495, -0.030600635334849358, 0.017551518976688385, 0.02944885939359665, -0.01685783453285694, 0.017329016700387, -0.0068975770846009254, 0.06711722165346146, -0.009822830557823181, -0.007283684331923723, -0.029239444062113762, -0.054133545607328415, 0.0026569415349513292, -0.01560135092586279, 0.03879396244883537, -0.002355908742174506, 0.015208699740469456, 0.0329827219247818, 0.02386011928319931, 0.019540954381227493, -0.024593068286776543, 0.00407048687338829, 0.005565834231674671, 0.004129384178668261, 0.01783946342766285, 0.013186544179916382, 0.022629812359809875, 0.0050226664170622826, -0.020823614671826363, 0.031647708266973495, -0.012774260714650154, -0.009705035015940666, 0.019056683406233788, -0.03261624649167061, -0.0029579743277281523, -0.011203655041754246, -0.011197110638022423, -0.004544940311461687, -0.027485601603984833, -0.020012134686112404, -0.010876445099711418, 0.03437009081244469, -0.022826137021183968, 0.007035004906356335, 0.02295702137053013, -0.0024982448667287827, -0.01739445887506008, 0.01403074525296688, 0.01925300993025303, 0.013284707441926003, 0.03675217553973198, -0.003982140216976404, 0.04523344710469246, -0.0019027234520763159, -0.0010887897806242108, 0.012676097452640533, 0.03722335770726204, -0.010235114023089409, 0.025653228163719177, 0.007709056604653597, 0.012263813056051731, -0.010123862884938717, -0.010019156150519848, -0.01726357452571392, -0.007669791579246521, 0.03489362448453903, -0.0008630151860415936, 0.015051638707518578, -0.033270664513111115, 0.033977437764406204, -0.01783946342766285, 0.03379420191049576, 0.018899623304605484, -0.004826340824365616, 0.01807505451142788, -0.01625576987862587, 0.034239206463098526, 0.01891271211206913, -0.014096186496317387, -0.015941647812724113, -0.008743039332330227, -8.573912782594562e-05, -0.02420041710138321, 0.03659511357545853, 0.00623334152624011, -0.0336633175611496, -0.03217124193906784, -0.03607157990336418, -0.050730567425489426, -0.007453833241015673, 0.0232187882065773, -0.04049545153975487, 0.006845223717391491, -0.00402140524238348, 0.028663555160164833, -0.022132452577352524, 0.010640854015946388, -0.0353386290371418, -0.003419339656829834, -0.001115784514695406, 0.011903882957994938, -0.008494359441101551, -0.012852790765464306, 0.00019775726832449436, -0.004312621895223856, 0.024750130251049995, -0.008520536124706268, -0.026503972709178925, 0.009469443932175636, 0.005526569206267595, -0.01108585949987173, 0.024004092440009117, 0.021111559122800827, -0.006488565355539322, -0.02139950357377529, 0.02066655457019806, -0.0055592902936041355, -0.02066655457019806, -0.013232354074716568, 0.004083575215190649, 0.0053138830699026585, 0.011766455136239529, -0.003736732993274927, -0.013559563085436821, -0.0010356182465329766, -0.0019092676229774952, 0.0026912984903901815, -0.011314906179904938, 0.00027465150924399495, -0.0015477010747417808, -0.04714434966444969, -0.006963018793612719, 0.038584548979997635, -0.002313371514901519, -0.01730284094810486, 0.004819796420633793, -0.006180988159030676, 0.030574459582567215, -0.0336633175611496, 0.02662176825106144, 0.005156822502613068, 0.008468182757496834, 0.0078268526121974, 0.01679239422082901, -0.002670029876753688, 0.004908143077045679, -0.006010839249938726, 0.018323734402656555, 0.01612488552927971, 0.007918470539152622, -0.03282565996050835, 0.027145303785800934, 0.004221003036946058, 0.028113843873143196, 0.00972466729581356, 0.016334300860762596, 0.04062633588910103, 0.0376945398747921, -0.018598590046167374, 0.024815570563077927, 0.022027745842933655, -0.003664746880531311, 0.013939126394689083, 0.01730284094810486, -0.012793892994523048, 0.00460056634619832, 0.06146303936839104, -0.0012229456333443522, 0.012433962896466255, -0.010575411841273308, -0.01513016875833273, -0.01797034777700901, 0.020509494468569756, 0.008873922750353813, -0.03251153975725174, 0.028218550607562065, 0.037537477910518646, 0.010051877237856388, 0.006442755926400423, 0.010634309612214565, 0.03311360627412796, 0.0019272641511633992, -0.04285136237740517, 0.011066226288676262, 0.014344866387546062, 0.009174955077469349, 0.0008106616442091763, 0.0033342652022838593, -0.01297058630734682, 0.030914757400751114, -0.008422373794019222, -0.0015697877388447523, -0.004201370291411877, 0.041987527161836624, -0.0006994103896431625, -0.024684688076376915, 0.01225072517991066, -0.002450799336656928, -0.020588023588061333, -0.015103992074728012, 0.008016633801162243, 0.004695456940680742, -0.008160606026649475, -0.0018749106675386429, -0.016674598678946495, -0.021517299115657806, -0.01502546202391386, 0.0002826272393576801, -0.028427964076399803, 0.03290419280529022, 0.018061965703964233, 0.018114320933818817, -0.004960496444255114, 0.046359047293663025, -0.028558848425745964, -0.014907666482031345, 0.016975630074739456, 0.01975036785006523, 0.03790395334362984, -0.01978963240981102, 0.0069826515391469, -0.01372971199452877, -0.012237636372447014, -0.010176216252148151, -0.014449573121964931, 0.03243301063776016, -0.019396981224417686, 0.01549664419144392, -0.028218550607562065, 0.01820593886077404, 0.013441767543554306, 0.009292750619351864, -0.015548997558653355, 0.014004568569362164, -0.0066619860008358955, 0.005366236437112093, -0.023781590163707733, -0.026399265974760056, -0.01995978131890297, -0.010791370645165443, -0.001463444670662284, -0.01561443880200386, 0.02581028826534748, 0.015378848649561405, 0.00506520364433527, -0.03641187772154808, 0.04361048713326454, -0.008068987168371677, -0.05806006118655205, 0.009547973982989788, -0.01925300993025303, 0.009495620615780354, 0.03133358433842659, 0.02066655457019806, 0.004306077491492033, 0.007833396084606647, 0.033872731029987335, 0.030810050666332245, 0.02567940391600132, 0.031752415001392365, 0.02931797504425049, -0.01874256320297718, -0.0012916596606373787, -0.011504687368869781, 0.012892056256532669, -0.006697979290038347, 0.031176524236798286, 0.042223118245601654, -0.021622005850076675, -0.010418351739645004, -0.0006752786575816572, -0.011733734048902988, 0.023441290482878685, 0.02679191716015339, 0.016844747588038445, 0.015810765326023102, 0.031071817502379417, -0.0014454481424763799, -0.016975630074739456, 0.024318212643265724, -0.024187328293919563, -0.02043096348643303, -0.026661032810807228, 0.022695252671837807, 0.02863737940788269, -0.037537477910518646, 0.013134190812706947, 0.0021972120739519596, -0.005824329797178507, 0.024920279160141945, -0.03217124193906784, -0.02156965248286724, 0.019226832315325737, 0.009096425026655197, -0.01591547206044197, 0.02550925500690937, -0.001883090939372778, -0.004620198626071215, 0.011197110638022423, -0.04934319853782654, -0.0015648796688765287, -0.027171479538083076, 0.007159344851970673, 0.014462661929428577, -0.03209271281957626, -0.0021415865048766136, 0.042720478028059006, 0.01880800351500511, 0.0006208801059983671, -0.030652988702058792, -0.01666150987148285, 0.0022446573711931705, -0.016478272154927254, 0.016870923340320587, -0.02685735933482647, 0.013952214270830154, -0.007074270397424698, 0.003975595813244581, 0.020444052293896675, -0.01625576987862587, -0.007368758786469698, 0.04434343799948692, -0.013323972001671791, 0.010739017277956009, -0.03154299780726433, -0.009482532739639282, -0.018873445689678192, 0.028349434956908226, -0.0028843521140515804, 0.03193565085530281, -0.017643138766288757, -0.02107229456305504, 0.021726712584495544, -0.01857241429388523, -0.021360239014029503, -0.0440816693007946, 0.0015804220456629992, -0.013782065361738205, -0.015836941078305244, -0.010693207383155823, -0.009417090564966202, -0.010902621783316135, 0.0008466547005809844, -0.015771498903632164, -0.022328779101371765, 0.002661849604919553, 0.0021808515302836895, 0.016334300860762596, -0.01349412091076374, 0.008782303892076015, 0.01780019886791706, -0.05565179884433746, -0.009325471706688404, -0.0008834657492116094, 0.008343842811882496, 0.011229831725358963, -0.012865878641605377, -0.015640616416931152, 0.025116603821516037, -0.006252974271774292, 0.036699820309877396, 0.01850697211921215, -0.00771560100838542, -0.0031935651786625385, -0.0024197145830839872, -0.02837561070919037, -0.011727189645171165, 0.002822182374075055, -0.04562609642744064, 0.006226797588169575, 0.007165888790041208, 0.010935342870652676, 0.03900337591767311, -0.014279424212872982, 0.019841985777020454, 0.005124101415276527, -0.018415352329611778, 0.0006895940750837326, -0.027878252789378166, -0.012303078547120094, 0.03876778483390808, -0.004351886920630932, -0.024946454912424088, -0.013415590859949589, -0.017813287675380707, -0.024305123835802078, -0.017708580940961838, 0.03334919735789299, -0.013153823092579842, -0.027302363887429237, -0.03170005977153778, -0.002018882893025875, 0.03641187772154808, 0.00403776578605175, -0.005304066464304924, 0.007578172720968723, 0.042458709329366684, 0.02874208614230156, -0.024344390258193016, 0.027354717254638672, 0.007381847128272057, -0.0009358192910440266, -0.002521149581298232, 0.007453833241015673, -0.023650705814361572, 0.0018618223257362843, -0.029239444062113762, -0.019161390140652657, -0.005405501462519169, 0.000758308102376759, 0.04020750895142555, -0.010261290706694126, -0.004927775822579861, 0.008566346019506454, 0.013356693089008331, 0.014161628670990467, 0.02611132152378559, -0.02210627682507038, -0.020679643377661705, -0.012322710826992989, 0.010235114023089409, -0.010019156150519848, 0.02405644580721855, 0.03808718919754028, -0.016164151951670647, -0.013690447434782982, 0.02782589942216873, -0.012617199681699276, -0.011681380681693554, 0.003919970244169235, 0.007035004906356335, -0.011871161870658398, 0.006184260360896587, 0.037066295742988586, -0.013507209718227386, 0.02601970173418522, -0.003061045194044709, -0.03149064630270004, -0.010660487227141857, -0.014802959747612476, 0.011825352907180786, -0.0027583763003349304, -0.004325710237026215, 0.008409284986555576, -0.046489931643009186, -0.027250010520219803, -0.020614201202988625, -0.0090048061683774, 0.008893555030226707, -0.016268858686089516, 0.024579981341958046, 0.025823377072811127, -0.015771498903632164, 0.01810123212635517, -0.010470705106854439, 0.000593885313719511, 0.022799961268901825, 0.00701537262648344, 0.009423634968698025, -0.01317345630377531, 0.0013718260452151299, 0.00202706316486001, 0.03041739948093891, -0.012204916216433048, -0.005811241455376148, -0.0005681175389327109, 0.027668839320540428, -0.0012041310546919703, -0.012878967449069023, 0.03719718009233475, 0.005212448071688414, 0.00972466729581356, -0.02056184783577919, -0.02473704144358635, -0.0020090665202587843, 0.010948430746793747, 0.009698490612208843, -0.000548076000995934, -0.02345437929034233, 0.023179523646831512, 0.023179523646831512, -0.0198550745844841, 0.02403026819229126, 0.03224977105855942, -0.0003466375928837806, 0.009462899528443813, 0.01824520342051983, -0.030888579785823822, 0.00033702582004480064, 0.003766181878745556, 0.006017383188009262, -0.02022155001759529, 0.0065899998880922794, 0.016818569973111153, 0.0023739051539450884, 0.005274617578834295, 0.00665544206276536, -0.012545214034616947, 0.004292989149689674, 0.011753366328775883, -0.01638665422797203, 0.0069826515391469, 0.005686901975423098, 0.0064394837245345116, 0.04586168751120567, -0.004993217531591654, -0.014187805354595184, -0.007918470539152622, -0.002315007383003831, 0.016975630074739456, 0.006799414288252592, -0.008527080528438091, 0.012577935121953487, 0.000622107123490423, 0.01803578995168209, -0.010856812819838524, -0.011818808503448963, 0.012021678499877453, -0.01689710095524788, -0.018559325486421585, 0.025535432621836662, 0.01679239422082901, -0.041647229343652725, -0.025391459465026855, -0.005634548142552376, -0.017289752140641212, 0.012021678499877453, -0.004440233577042818, -0.017917994409799576, 0.00617444422096014, -0.015941647812724113, -0.030810050666332245, -0.013428679667413235, 0.013219265267252922, -0.007741777691990137, 0.02615058608353138, -8.236477879108861e-05, 0.02045714110136032, -0.004796891938894987, 0.021896861493587494, -0.008003544993698597, -0.029998570680618286, 0.0057261670008301735, 0.022263336926698685, 0.006040288135409355, -0.02420041710138321, -0.006213709246367216, -0.01844152994453907, -0.0026831182185560465, 0.006904121488332748, 0.005304066464304924, -0.003316268790513277, -0.020993763580918312, -0.00986209511756897, -0.016517536714673042, 0.026569414883852005, -0.009449811652302742, -0.010451072826981544, 0.00526807364076376, 0.0022070284467190504, -0.009076792746782303, -0.015876207500696182, -0.00040798939880914986, 0.011373803950846195, -0.004145744722336531, -0.02056184783577919, -0.018258292227983475, -0.03450097516179085, -0.01164211519062519, 0.0008364293607883155, -0.008193327113986015, -0.002403354039415717, 0.00482961256057024, -0.002192304003983736, -0.003106854623183608, 0.0006875490653328598, -0.02002522349357605, -0.002905620727688074, 0.0024998809676617384, 0.02829708158969879, -0.021595830097794533, -0.03664746880531311, 0.011164389550685883, -0.014698252081871033, -0.011432701721787453, 0.004106479696929455, 0.0057752481661736965, -0.004345342516899109, -0.020038312301039696, 0.0023379120975732803, -0.026058968156576157, -0.004980129189789295, 0.006239885929971933, -0.013873684220016003, -0.02934415079653263, 0.013926037587225437, 0.012918232940137386, 0.048610247671604156, -0.0025375098921358585, -0.013690447434782982, 0.00844855047762394, 0.007172433193773031, -0.0004462320066522807, 0.009482532739639282, -0.009011350572109222, -0.007453833241015673, -0.007303317077457905, 0.009194588288664818, -0.008926276117563248, -0.021229354664683342, 0.004060670267790556, -0.01908286102116108, -0.03520774468779564, -0.006148267071694136, 0.023938650265336037, 0.015182523056864738, -0.005012850277125835, 0.02349364571273327, 0.018637854605913162, -0.0050226664170622826, -0.0264123547822237, -0.008585978299379349, 0.011504687368869781, -0.004047581925988197, -0.02406953275203705, 0.021425681188702583, -0.02060111239552498, 0.014148540794849396, 0.006554007064551115, 0.019200656563043594, 0.02921326830983162, -0.01372971199452877, 0.0033964349422603846, 0.0032328302040696144, -0.012924776412546635, -0.021478034555912018, -0.007676335982978344, -0.0008859198424033821, -0.0279306061565876, 0.0022446573711931705, -0.0001803742634365335, 0.007159344851970673, 0.010202393867075443, 0.0027125671040266752, -0.01878182776272297, -0.0043649752624332905, 0.008671052753925323, 0.001708033843897283, -0.004279900807887316, -0.003137939376756549, -0.011792631819844246, 0.006341320928186178, 0.020378610119223595, -0.004633286967873573, -0.02231569029390812, -0.016530625522136688, 0.007990457117557526, 0.0002989877248182893, 0.009109513834118843, 0.001755479141138494, 0.003821807447820902, -0.019396981224417686, 0.0270929504185915, -0.03156917542219162, 0.01914830133318901, -0.02745942398905754, 0.02319261245429516, -0.011530864052474499, -0.00787266157567501, -0.004345342516899109, 0.0006192440632730722, -0.03219741955399513, 0.003308088518679142, 0.013703535310924053, -0.023166434839367867, -0.006760149262845516, 0.008841201663017273, -0.0021644909866154194, -0.005150278098881245, -0.017957258969545364, 0.01975036785006523, 0.0041359285824000835, 0.00662272097542882, -0.015405025333166122, -0.027171479538083076, -0.010235114023089409, -0.002056512050330639, 0.011884250678122044, 0.039291322231292725, 0.02460615709424019, -0.005297522526234388, -0.009966802783310413, -0.008566346019506454, -0.0021154095884412527, 0.0027567404322326183, -0.004165377467870712, -0.013029484078288078, -0.00347496522590518, -0.014292513020336628, -0.01810123212635517, 0.042825184762477875, -0.017211221158504486, 0.007650158833712339, -0.006910665426403284, -0.01574532315135002, 0.012237636372447014, 0.012159106321632862, -0.025116603821516037, 0.025247488170862198, -0.030443575233221054, 0.0074996426701545715, 0.02944885939359665, 0.02816619724035263, 0.0212031789124012, 0.005353148095309734, 0.0031772046349942684, -0.012204916216433048, 0.00037240536767058074, 0.011452334001660347, -0.014946931973099709, 0.0376945398747921, 0.01136071514338255, -0.010294011794030666, 0.011026961728930473, -0.0282709039747715, -0.0008491087355650961, 0.009286207146942616, 0.015836941078305244, 0.015405025333166122, 0.006812502630054951, 0.010791370645165443, -0.022027745842933655, 0.02197539247572422, -0.03889866918325424, 0.012499404139816761, -0.010614677332341671, 0.009011350572109222, 0.014580457471311092, -0.007473465986549854, -0.004446777515113354, 0.004819796420633793, 0.009260029532015324, 0.011936604045331478, -0.01320617739111185, 0.0058995881117880344, 0.011341082863509655, -0.013323972001671791, -0.019331539049744606, 0.008625243790447712, -6.656668847426772e-05, 0.009129146113991737, -0.0023362759966403246, 0.010045332834124565, 0.019658749923110008, -0.002769828774034977, 0.027956783771514893, -0.030679166316986084, 0.001865094411186874, 0.003435700200498104, 0.008599067106842995, 0.006095913704484701, -0.007663247175514698, -0.007106991019099951, -0.031621530652046204, -0.0145542798563838, -0.004201370291411877, 0.015994003042578697, 0.00024704320821911097, -0.02032625675201416, -0.026805005967617035, -0.015810765326023102, -0.01598091423511505, 0.023244965821504593, -0.0022250248584896326, 0.00013149733422324061, -0.0013718260452151299, 0.010202393867075443, -0.03994574025273323, 0.00035338630550540984, 0.010640854015946388, -0.014213982038199902, -0.02507733926177025, -0.030338868498802185, -7.239510887302458e-05, 0.009600328281521797, 0.030234161764383316, 0.004924503620713949, 0.02274760790169239, 0.014685164205729961, 0.0034978699404746294, 0.011373803950846195, 0.01595473662018776, 0.002247929573059082, -0.002761648502200842, 0.0027796451468020678, -0.011825352907180786, -0.01348103303462267, -0.018415352329611778, 0.005768704228103161, 0.028820615261793137, 0.0002550189383327961, -0.013991479761898518, -0.027380894869565964, -0.016648421064019203, -0.02180524356663227, 0.014907666482031345, 0.026713386178016663, -0.013926037587225437, -0.01608562096953392, -0.004283173009753227, 0.018088143318891525, -0.01713269203901291, 0.0046660080552101135, 0.019161390140652657, -0.00814097374677658, 0.007460377644747496, -0.01837608776986599, 0.016072532162070274, -0.010097686201334, 0.012525580823421478, -0.019396981224417686, 0.0195147767663002, 0.01756460778415203, -0.01773475669324398, 0.0037269166205078363, 0.022472750395536423, -0.023977914825081825, 0.002908892696723342, -0.004999761935323477, -0.007741777691990137, -0.020470228046178818, -0.0037694538477808237, -0.005902859847992659, -0.004093391355127096, -0.003978868015110493, 0.000849926786031574, -0.013428679667413235, 0.039317499846220016, -0.005120829213410616, 0.01824520342051983, -0.0035960327368229628, -0.00617444422096014, -0.038584548979997635, -0.014174717478454113, -0.01608562096953392, 0.0004004226648248732, -0.00827840156853199, -0.005879955366253853, -0.01636047661304474, 0.03827042877674103, -0.010837179608643055, 0.01978963240981102, 0.0008294761646538973, -0.040469273924827576, 0.009318927302956581, 0.0030021474231034517, -0.014685164205729961, -0.010699751786887646, -0.02863737940788269, -0.013625005260109901, 0.008860833942890167, 0.03607157990336418, 0.004751082509756088, -0.05185616761445999, -0.043427251279354095, 0.0016417738515883684, -0.003052864922210574, -0.01022857055068016, -0.007846484892070293, 0.01403074525296688, -0.0009161867201328278, 2.0373907318571582e-05, 0.0037596377078443766, -0.02345437929034233, 0.00028733088402077556, 0.010464160703122616, -0.00011718191672116518, 0.014279424212872982, 0.03437009081244469, -0.017891816794872284, -0.013265075162053108, -0.00748000992462039, -0.014357954263687134, -0.0180096123367548, -0.017145778983831406, -0.020077576860785484, -0.006432939320802689, 0.012708818539977074, -0.0023444562684744596, -0.027511777356266975, 0.00011125124001409858, -0.008520536124706268, 0.01921374350786209, 0.0397101491689682, -0.007224786560982466, -0.004149016924202442, -0.015182523056864738, 0.029422681778669357, -0.01181226409971714, 0.009763932786881924, 0.0061417231336236, 0.003772726049646735, -0.020640376955270767, 0.04133310914039612, 0.025024985894560814, 0.0013914585579186678, -0.004204642493277788, 0.0012548485537990928, -0.023847030475735664, 0.01513016875833273, 0.04960496723651886, -0.030234161764383316, -0.00024029451014939696, 0.012159106321632862, 0.010739017277956009, -0.0051960875280201435, -0.026883535087108612, -0.006956474855542183, 0.020705819129943848, -0.031385939568281174, -0.02187068574130535, 0.001699853572063148, 0.01485531311482191, -0.009534886106848717, 0.021412592381238937, 0.0006699615041725338, 0.015509732067584991, 0.015810765326023102, 0.01760387234389782, -0.012931320816278458, 0.02604587934911251, -0.007355670444667339, -0.029501212760806084, 0.031045641750097275, -0.01895197667181492, 0.008644876070320606, 0.0034258838277310133, 0.022669076919555664, 0.0030315963085740805, 0.006203892640769482, -0.02651706151664257, -0.009770477190613747, 0.008226048201322556, 0.0027943693567067385, 0.01290514413267374, -0.004747810307890177, -0.011851529590785503, 0.029501212760806084, 0.007781042717397213, 0.0011067863088101149, 0.018219027668237686, 0.00824568048119545, 0.013127646408975124, 0.01372971199452877, -0.031647708266973495, -0.005827601999044418, -0.02217171899974346, -0.007983912713825703, -0.02446218580007553, -0.0053695086389780045, 0.0050619314424693584, -0.002732199616730213, -0.012329255230724812, 0.011766455136239529, 0.014213982038199902, -0.002584955422207713, -0.011301817372441292, -0.020182283595204353, -0.014083098620176315, -0.012505948543548584, 0.0008761035278439522, 0.0020041584502905607, -0.00718552153557539, -0.01931845024228096, -0.015182523056864738, -0.0024557076394557953, 0.013716624118387699, 0.012329255230724812, -3.5481785744195804e-05, 0.00020624426542781293, 0.008625243790447712, 0.014501926489174366, 0.006413307040929794, -0.003402979113161564, -0.0005104469018988311, -0.004106479696929455, -0.005241896957159042, -0.0014781691133975983, -0.023310407996177673, 0.04607110470533371, -0.016753127798438072, -0.007879205979406834, -0.00831112265586853, -0.007296772673726082, -0.002933433512225747, -0.004237363580614328, 0.023585263639688492, 0.0006920481682755053, -0.002328095957636833, 0.007362214848399162, -0.008605610579252243, -0.01561443880200386, -0.026595590636134148, -0.010457617230713367, 0.014750606380403042, 0.005785064771771431, -0.003893793560564518, 0.011707557365298271, 0.011040049605071545, 0.026098232716321945, 0.012990218587219715, -0.019239921122789383, 0.015732234343886375, -0.004842701368033886, 0.017931083217263222, 0.0010846996447071433, 0.017119603231549263, -0.020771261304616928, 0.012335799634456635, -0.00018712296150624752, 0.0235590860247612, -0.04426490515470505, -0.005768704228103161, -0.01054923515766859, 0.010758649557828903, -0.001224581734277308, 0.011962780728936195, 7.167933654272929e-05, 0.00965922512114048, -0.004983401391655207, -0.01619032770395279, 0.026072056964039803, 0.011000785045325756, -0.005281161982566118, 0.005935580935329199, -0.0007914380985312164, -0.011478510685265064, -0.011655203998088837, -0.001910903723910451, -0.0026733018457889557, -0.008036266081035137, -0.0029219812713563442, -0.00016779714496806264, 0.004407512489706278, -0.0013186543947085738, 0.011007328517735004, -0.02096758782863617, -0.007918470539152622, -0.006995739880949259, -0.017355194315314293, 0.0013333788374438882, -0.02325805462896824, -0.02005140110850334, -7.684311276534572e-05, -0.014907666482031345, -0.00268802628852427, -0.01389986090362072, 0.0030594090931117535, 0.002295374870300293, 0.012990218587219715, 0.03248536214232445, 0.007597805466502905, -0.005506936460733414, -0.020077576860785484, 0.0023068273440003395, -0.0021415865048766136, -0.0030234160367399454, 0.012270357459783554, 0.01797034777700901, -0.01659606769680977, 0.0012761171674355865, 0.009528341703116894, -0.015575174242258072, 0.008788848295807838, 0.0008859198424033821, -0.010143496096134186, -0.004145744722336531, 0.018219027668237686, -0.018755650147795677, -0.014816047623753548, -0.0006433757371269166, 0.010765193961560726, 0.003609121311455965, -0.0023068273440003395, 0.0021235898602753878, -0.008101708255708218, 0.007381847128272057, 0.017826376482844353, -0.006701251491904259, -0.005549473688006401, -0.0010364361805841327, 0.0037498213350772858, 0.002321551786735654, -0.00821295939385891, -0.013690447434782982, 0.008991718292236328, 0.025928083807229996, -0.03510303795337677, 0.0036582027096301317, 0.010575411841273308, -0.01268918626010418, 0.0005452128825709224, -0.013251986354589462, -0.026883535087108612, 0.015836941078305244, 0.011766455136239529, 0.0007264051819220185, -0.012172195129096508, -0.01198241300880909, 0.015666792169213295, -0.0014503563288599253, 0.016242681071162224, 0.01420089416205883, -0.015326494351029396, -0.020208461210131645, 0.005317154806107283, -0.004093391355127096, -0.0067863259464502335, 0.008821569383144379, -0.011131668463349342, -0.023545999079942703, -0.008082075975835323, 0.018323734402656555, -0.022498928010463715, 0.001837281510233879, 0.005657453089952469, 0.00290725682862103, 0.008671052753925323, -0.013121102936565876, -0.012885511852800846, -0.012643376365303993, -0.007931559346616268, 0.01878182776272297, -0.00581451365724206, 0.004754354711622, -0.009345103986561298, -0.0038708888459950686, 0.012538669630885124, 0.007434200495481491, 0.004718361422419548, -0.008317666128277779, 0.001837281510233879, -0.006426395382732153, -0.009397458285093307, 0.006580183748155832, -0.012564846314489841, -0.009633048437535763, 0.0077286893501877785, -0.009547973982989788, 0.003847984131425619, -0.012931320816278458, -0.0013317428529262543, -0.021386414766311646, -0.012126385234296322, 0.0053073386661708355, 0.029187090694904327, 0.004486043006181717, 0.012741539627313614, -0.0045547569170594215, -0.008095163851976395, 0.01918756775557995, -0.011471966281533241, -0.01897815242409706, 0.009436722844839096, -0.008945908397436142, 0.006753604859113693, 0.0030724976677447557, -0.013441767543554306, 0.005451310891658068, 0.015771498903632164, -0.003380074631422758, 0.0073164054192602634, -0.0036909235641360283, -0.00402140524238348, -0.011177477426826954, -0.0238993838429451, -0.002753468230366707, -0.0018879990093410015, 0.022525103762745857, -0.01736828312277794, 0.0007255871314555407, -0.002203756244853139, -0.000530488439835608, 0.005182999186217785, 0.0022348412312567234, 0.012957497499883175, 0.019763456657528877, -0.004093391355127096, -0.005981390364468098, -0.01824520342051983, 0.013454856351017952, 0.0021072293166071177, -0.0034258838277310133, 0.004162105266004801, -0.019239921122789383, -0.020195372402668, -0.02372923493385315, -0.002769828774034977, 0.02096758782863617, -0.04156870022416115, 0.0026389448903501034, 0.0017571152420714498, -0.002586591290310025, -0.0021906679030507803, 0.02994621731340885, -0.0002852858160622418, -0.012564846314489841, 0.031281232833862305, -0.007774498779326677, 0.010110775008797646, 0.014279424212872982, 0.014227070845663548, -0.027040597051382065, -0.010051877237856388, 0.003740004962310195, -0.000703909492585808, 0.040390744805336, -0.0007169978925958276, 0.0006904121255502105, 0.038113366812467575, -0.007931559346616268, -0.01659606769680977, -0.01662224531173706, 0.026124410331249237, -0.0007681244169361889, 0.020038312301039696, -0.016203416511416435, 0.008298033848404884, -0.014946931973099709, -0.0011280549224466085, 0.00407048687338829, -0.014318689703941345, 0.007551996037364006, -0.0013685538433492184, 0.0039134263060987, 0.004754354711622, -0.005353148095309734, -0.03418685123324394, -2.6381268980912864e-05, 0.01642591878771782, -0.0005366236437112093, -0.015143257565796375, 0.004027949646115303, 0.017787110060453415, -8.75796758919023e-05, -0.0008613790851086378, -0.013533386401832104, 0.023402025923132896, -0.010555779561400414, -0.007172433193773031, -0.0020123387221246958, -0.009835918433964252, 0.018467705696821213, 0.018520059064030647, -0.0008990081842057407, -0.012833158485591412, -0.0025375098921358585, -0.0068910326808691025, -0.002980878809466958, 0.012610655277967453, 0.007885749451816082, 0.03405597060918808, 0.017813287675380707, -0.005706534255295992, 0.017551518976688385, 0.026137497276067734, -0.011419612914323807, 0.02840178832411766, 0.02338893711566925, -0.01797034777700901, 0.004999761935323477, -0.005942125339061022, -0.029841510578989983, 0.007532363757491112, -0.036830704659223557, -0.006357681471854448, -0.009515253826975822, -0.010424896143376827, -0.017512254416942596, 0.0033031802158802748, -0.020810525864362717, 0.021464945748448372, 0.014907666482031345, -0.012597567401826382, -0.019501687958836555, -0.012734995223581791, 0.012231092900037766, -0.012924776412546635, 0.005454583093523979, 0.005412045866250992, 0.008553257212042809, -0.017276663333177567, 0.0034782374277710915, 0.0038152632769197226, -0.0076174382120370865, -0.0030594090931117535, 0.001571423839777708, -0.007303317077457905, 0.026294559240341187, -2.7915064492844976e-05, -0.0220408346503973, 0.0030005115550011396, 0.0009235489415004849, 0.006318415980786085, -0.021046116948127747, -0.003200109349563718, 0.010968063957989216, -0.003700739936903119, 0.024514539167284966, -0.0021334062330424786, 0.005650908686220646, 0.010621221736073494, 0.013834419660270214, 0.011419612914323807, 0.017329016700387, 0.03143829107284546, 0.01961948350071907, 0.0156537052243948, 0.009227309376001358, 0.002861447399482131, 0.008625243790447712, -0.004891782533377409, -0.014802959747612476, 0.024946454912424088, -0.007898838259279728, 0.004472954198718071, -0.024004092440009117, -0.006812502630054951, -0.011655203998088837, -0.004083575215190649, -0.01921374350786209, -0.0016965814866125584, -0.006838679313659668, 0.010863356292247772, 0.037171002477407455, 0.015038550831377506, -0.003335901303216815, 0.022996285930275917, 0.01102041732519865, 0.016988718882203102, 0.008815024979412556, 0.018755650147795677, -0.005696718115359545, -0.00024479362764395773, -0.0037236446514725685, -0.01814049668610096, -0.017119603231549263, -0.017381370067596436, -0.00040839839493855834, -0.026307646185159683, 0.007296772673726082, -0.013317428529262543, -0.0046103824861347675, 0.010941887274384499, 0.011380347423255444, 0.006518014241009951, 0.032223597168922424, -0.0015411569038406014, 0.01659606769680977, -0.004953952506184578, -0.02632073499262333, 0.00042005523573607206, -0.01998595893383026, 0.004217730835080147, -0.0012712090974673629, 0.012204916216433048, 0.005271345842629671, 0.004345342516899109, 0.012002046220004559, 0.037066295742988586, -0.01831064559519291, -0.012931320816278458, 0.024043356999754906, 0.023650705814361572, 0.009030982851982117, 0.02281304821372032, 0.0050619314424693584, -0.0032508268486708403, 0.017446812242269516, -0.009253486059606075, 0.011557040736079216, 0.017342105507850647, -0.0014299056492745876, -0.002231569029390812, -0.008847746066749096, -0.019266096875071526, 0.01030055619776249, 0.008507448248565197, -0.009783565066754818, 0.015143257565796375, 0.004541668575257063, -0.010287468321621418, 0.009076792746782303, -0.025326019152998924, -0.008304578252136707, 0.0003805855812970549, 0.024187328293919563, 0.04052162915468216, 0.009816286154091358, 0.019004330039024353, 0.0018029245547950268, -0.012833158485591412, 0.007303317077457905, -0.011884250678122044, -0.004872150253504515, 0.022970110177993774, -0.008965541608631611, -0.0014601725852116942, 0.005326971411705017, 0.02829708158969879, 0.013939126394689083, -0.003137939376756549, 0.0013407410588115454, 0.0090048061683774, -0.0019452606793493032, 0.02066655457019806, 0.0017113059293478727, 0.006508197635412216, 0.023716147989034653, -0.005801425315439701, 0.0074996426701545715, 0.01109240297228098, -0.01591547206044197, -0.013572651892900467, -0.0014413580065593123, 0.03628099337220192, -0.03167388215661049, -0.013121102936565876, 0.025417637079954147, -0.009456356056034565, 0.0025031529366970062, 0.029972393065690994, 0.017289752140641212, 0.009469443932175636, 0.029632095247507095, -0.0012213096488267183, 0.006239885929971933, -0.01857241429388523, -0.017577696591615677, -0.011943148449063301, 0.011347626335918903, 0.005382596980780363, 0.03698776662349701, -0.029056206345558167, -0.019907427951693535, 0.006976107135415077, 0.013094925321638584, 0.012355431914329529, -0.003214833792299032, 0.015627527609467506, 0.010202393867075443, -0.0014585364842787385, -0.005412045866250992, -0.00506520364433527, 0.006465660408139229, 0.008972086012363434, 0.0006045196205377579, 0.022237161174416542, -0.012335799634456635, -0.0012016770197078586, 0.0014217254938557744, 0.02994621731340885, -0.02298319712281227, -0.006455844268202782, -0.0006904121255502105, -0.0215434767305851, -0.006321688182651997, 0.014567368663847446, 0.0018209210829809308, -0.002760012401267886, 0.0010405263165012002, -0.012447050772607327, 0.013507209718227386, 0.019972870126366615, 0.001069975201971829, -0.029789157211780548, 0.00031023554038256407, 0.019122125580906868, -0.01142615731805563, 0.002858175430446863, -0.00694993045181036, 0.0002503152936697006, -0.01797034777700901, -0.00024929275969043374, -0.0063118720427155495, -0.0011820445070043206, 0.03714482858777046, -0.00010358227154938504, 0.007774498779326677, 0.022354954853653908, -0.003435700200498104, 0.003438972169533372, 0.010352909564971924, 0.004404240287840366, 0.0023526365403085947, 0.0034487885423004627, 0.01327816303819418, 0.004538396373391151, -0.017656227573752403, 0.022655988112092018, -0.010797915048897266, 0.005143734160810709, 0.019567130133509636, 0.0005554381641559303, 0.01331088412553072, 0.011229831725358963, 0.02133406139910221, 0.004492586944252253, 0.016203416511416435, 0.011033505201339722, -0.002742015989497304, -0.004034493584185839, -0.007735233288258314, 0.0024360751267522573, -0.00014642627502325922, 0.015103992074728012, -0.005402229260653257, -0.011727189645171165, -0.003353897714987397, -0.008566346019506454, 0.024776306003332138, -0.011314906179904938, -0.0018323734402656555, -0.010614677332341671, 0.017407547682523727, -0.0049441359005868435, -0.007709056604653597, 0.03662129119038582, -0.01509090419858694, 0.005487304180860519, -0.008978629484772682, 0.003785814391449094, -0.00458420580253005, -0.005699990317225456, 0.009593783877789974, -0.015378848649561405, 0.004181738011538982, -0.010058421641588211, 0.03617628663778305, -0.0011247828369960189, -0.003062681294977665, 0.02030007913708687, 0.013062205165624619, -0.0003501142200548202, -0.018323734402656555, 0.006838679313659668, -0.008873922750353813, -0.0017063977429643273, 0.009122601710259914, -0.004440233577042818, -0.012728450819849968, -0.0005329425330273807, 0.025653228163719177, -0.027433248236775398, 0.0009153686696663499, 0.009934081695973873, 0.007126623764634132, -0.01030055619776249, -0.010673575103282928, 0.0010994240874424577, -0.012381608597934246, -0.009148778393864632, -0.022708341479301453, 0.010136951692402363, 0.014083098620176315, 0.010071509517729282, -0.0007730325451120734, 0.012211459688842297, -0.008507448248565197, 0.003471693256869912, -0.005513480864465237, -0.015077815391123295, 0.006877944339066744, 0.012034766376018524, 0.012119841761887074, 0.008559801615774632, 0.004571117460727692, -0.0015877842670306563, -0.02685735933482647, 0.0009399094269610941, -0.007067725993692875, 0.0031886568758636713, 0.008533624932169914, -0.007538907695561647, -0.010627766139805317, -0.002679846016690135, 0.009318927302956581, -0.014109275303781033, -0.04358430951833725, -0.003602576907724142, -0.0008000273373909295, -0.009083337150514126, 0.004957224708050489, 0.004993217531591654, -0.008703773841261864, -0.00033702582004480064, -0.01679239422082901, -0.012433962896466255, -0.020012134686112404, -0.0047281780280172825, 0.015627527609467506, 0.006308599840849638, 0.0002711749111767858, -0.0006335594807751477, -0.014776783064007759, 0.04436961188912392, 0.00028487679082900286, 0.031071817502379417, 0.004155561327934265, -0.004924503620713949, -0.017342105507850647, 0.018415352329611778, 0.0002445891441311687, 0.005510208662599325, -0.03028651513159275, 0.014043833129107952, 0.012447050772607327, 0.02328423038125038, -0.003214833792299032, 0.002761648502200842, 0.015352671965956688, 0.00473799416795373, -0.04219694063067436, 0.022053923457860947, -0.019396981224417686, -0.016334300860762596, 0.015117080882191658, -0.009312383830547333, -0.009351648390293121, -0.003345717443153262, -0.016910189762711525, -0.015234876424074173, -0.00774832209572196, 0.002879444044083357, -0.018467705696821213, 0.01632121205329895, -0.011419612914323807, -0.011118580587208271, 0.0071920654736459255, -0.006370769813656807, 0.016766216605901718, -0.027668839320540428, 0.008343842811882496, -0.0034258838277310133, 0.009194588288664818, 0.008068987168371677, -0.012303078547120094, 0.02745942398905754, -0.0010086233960464597, 0.028349434956908226, -0.002954702125862241, -0.015522820875048637, -0.008729950524866581, 0.0031837488058954477, -0.0254045482724905, 0.03235447779297829, 0.004859061446040869, 0.0059486692771315575, 0.017891816794872284, -0.016805481165647507, 0.006573639810085297, -0.01612488552927971, -0.004440233577042818, 0.01184498518705368, -0.031281232833862305, -0.019462423399090767, -0.020849792286753654, 0.00387416104786098, -0.029396504163742065, 0.007126623764634132, -0.00019438291201367974, -0.028715908527374268, -0.027433248236775398, -1.2494036127463914e-05, 0.01942315883934498, -0.007957736030220985, 0.0091684116050601, -0.008736494928598404, 0.022590545937418938, -0.02934415079653263, -0.012132929638028145, 0.002596407663077116, 0.013121102936565876, -0.0048885103315114975, 0.008919731713831425, -0.033506255596876144, 0.005323699209839106, -0.01108585949987173, 0.013081837445497513, -0.012211459688842297, -0.013036028482019901, -0.017957258969545364, 0.000613108859397471, 0.009148778393864632, -0.024475272744894028, 0.032223597168922424, 0.002018882893025875, 0.0018569141393527389, -0.006020655389875174, 0.004041037987917662, 0.00927311833947897, -0.019868163391947746, -0.007028460968285799, 0.01218528300523758, -0.026883535087108612, 0.013755888678133488, -0.006046832073479891, -0.0015673337038606405, -0.0031804766040295362, 0.006347864866256714, 0.008455094881355762, -0.02201465703547001, 0.001114148530177772, 0.02184450812637806, 0.0008155697723850608, -0.004901598673313856, 0.030810050666332245, -0.007578172720968723, 0.001991070108488202, 0.011040049605071545, 0.022158630192279816, -0.0055592902936041355, 0.01608562096953392, -0.016137974336743355, -0.024828659370541573, 0.0064231231808662415, -0.005101196933537722, -0.003668018849566579, 0.016582978889346123, 0.003108490724116564, -0.006318415980786085, -0.005039026960730553, 0.013991479761898518, 0.007571628782898188, 0.01092225406318903, -0.00851399265229702, 0.0004298715211916715, 0.0040246774442493916, 0.0033489896450191736, 0.007447289302945137, -0.008095163851976395, 0.009364737197756767, -0.008815024979412556, -0.01756460778415203, -0.016033267602324486, -0.016268858686089516, 0.009456356056034565, 0.013886773027479649, 0.018794916570186615, 0.010012611746788025, -0.011046594008803368, -0.0022168445866554976, 0.00920113269239664, -0.013991479761898518, 0.006819046568125486, -0.00846163835376501, -0.004469682462513447, -0.011413068510591984, 0.008592522703111172, 0.024305123835802078, -0.00451876362785697, -0.020103754475712776, 0.019946694374084473, -0.007656703237444162, -0.013219265267252922, 0.006370769813656807, 0.004103207495063543, -0.015758411958813667, 0.027485601603984833, -0.004904870875179768, 0.010621221736073494, -0.007002284284681082, -0.0006343774730339646, -0.015313406474888325, -0.009312383830547333, 0.03512921556830406, 0.00387416104786098, 0.03214506432414055, 0.005860322620719671, 0.02345437929034233, 0.010595045052468777, -0.01543120201677084, -0.004908143077045679, 0.00869722943753004, -0.01145887840539217, 0.008520536124706268, 0.01763004995882511, -0.003280275734141469, 0.0076108938083052635, 0.01803578995168209, 0.021451856940984726, -0.006014111451804638, 0.009050616063177586, -0.0018945431802421808, 0.02116391249001026, -0.009436722844839096, 0.012813525274395943, -0.006917209830135107, 0.014384130947291851, 0.02567940391600132, 0.01820593886077404, -0.011341082863509655, 0.0031232149340212345, 0.0034324279986321926, 0.012721906416118145, -0.005166638642549515, 0.01251903735101223, -0.000895736098755151, 0.029762979596853256, -0.026595590636134148, 0.01198241300880909, 0.009600328281521797, 0.0010936978505924344, -0.007637070491909981, 0.008193327113986015, -0.014410307630896568, -0.012892056256532669, -0.004446777515113354, 0.0018209210829809308, -0.004708545282483101, -0.008703773841261864, -0.011701012961566448, 0.00827840156853199, -0.0028107299003750086, -0.023977914825081825, -0.0013840963365510106, 0.014816047623753548, 0.010385630652308464, 0.005965029820799828, 0.016753127798438072, -0.031647708266973495, 0.00294488575309515, 0.007113535422831774, -0.008710318244993687, 0.012911688536405563, 0.001290023559704423, 0.00937128160148859, -0.013101469725370407, -0.005212448071688414, -0.023415114730596542, 0.010758649557828903, -0.013847507536411285, -0.00794464722275734, 0.0070873587392270565, -0.0034455163404345512, -0.01526105310767889, -0.006714339833706617, 0.006190804298967123, 0.016635332256555557, 0.004708545282483101, 0.006164627615362406, 0.017747845500707626, 0.007604349870234728, 0.010758649557828903, -0.004875421989709139, 0.023362761363387108, -0.008114796131849289, -0.006629265379160643, -0.01125600840896368, -0.0018225571839138865, -0.02126861922442913, -0.0037825421895831823, 0.008729950524866581, 0.015967825427651405, -0.001051978673785925, 0.013114558532834053, 0.0032606429886072874, -0.04512874037027359, 0.0053073386661708355, -0.021896861493587494, -0.017983436584472656, 0.011007328517735004, 0.0006441937875933945, 0.001955077052116394, -0.00721824262291193, 0.000776713655795902, -0.00506520364433527, 0.00012791847984772176, 0.023402025923132896, 0.001051978673785925, 0.01816667430102825, 0.014685164205729961, 0.004633286967873573, 0.020247725769877434, 0.004283173009753227, 0.003632025793194771, -0.011197110638022423, -6.155629671411589e-05, -0.0005227172514423728, 0.0034422443713992834, 0.010097686201334, -0.012322710826992989, -0.01549664419144392, -0.034108322113752365, -0.0018356455257162452, -0.05795535445213318, -0.011707557365298271, 0.007381847128272057, 0.01689710095524788, 0.01679239422082901, 0.008160606026649475, -0.0012597567401826382, -0.00924039725214243, -0.00041882821824401617, -0.0028319985140115023, 0.009089880622923374, -0.013847507536411285, -0.019266096875071526, -0.002292102901265025, -0.014973108656704426, -0.006871400400996208, 0.011838440783321857, 0.01914830133318901, -0.016949454322457314, -0.0074930982664227486, -0.020941410213708878, 0.004466410260647535, 0.002404990140348673, -0.0074996426701545715, 0.015732234343886375, -0.004472954198718071, 0.0006180169875733554, -0.0021268620621412992, -0.029056206345558167, -0.015234876424074173, -0.008880467154085636, -0.028663555160164833, 0.0005713896825909615, 0.004119568038731813, 0.01578458771109581, -0.017211221158504486, 0.007237874902784824, -0.0206927303224802, -0.006760149262845516, 0.0030937662813812494, -0.004927775822579861, -0.010974608361721039, 0.014187805354595184, 0.015038550831377506, 0.0313074104487896, 0.003402979113161564, -0.01139343623071909, -0.010647398419678211, 0.014187805354595184, 0.014907666482031345, 0.004773986991494894, -0.009705035015940666, -0.006252974271774292, -0.003681107424199581, 0.001719486084766686, -0.011118580587208271, 0.018755650147795677, -0.0012172195129096508, -0.016137974336743355, -0.004790347535163164, 0.03973632678389549, 0.0016196871874853969, 0.002678210148587823, 0.002676574047654867, -0.004525308031588793, -0.0030675893649458885, 0.0005628003855235875, 0.034474797546863556, 0.03889866918325424, 0.024422919377684593, -0.03096711076796055, -0.00972466729581356, -0.02012993022799492, 0.013186544179916382, -0.008612154982984066, -0.0019354444229975343, 0.006648897659033537, 0.005039026960730553, 0.010313645005226135, -0.005788336507976055, 0.011413068510591984, 0.0014871673192828894, 0.006115546450018883, -0.019776543602347374, 0.0006360135157592595, -0.002156310947611928, 0.01157667301595211, 0.0011386892292648554, -0.011858073994517326, -0.014711340889334679, 0.032694775611162186, 0.01293786522001028, 0.003537135198712349, 0.011033505201339722, 0.018323734402656555, 0.0022053923457860947, -0.010542691685259342, 0.007466921582818031, 0.019828898832201958, 0.0022806504275649786, -0.008657963946461678, 0.01349412091076374, -0.019698014482855797, -0.001042980351485312, 0.010117318481206894, -0.0026536693330854177, -0.05209175869822502, -0.003263915190473199, -0.018637854605913162, 0.030836226418614388, 0.005451310891658068, 0.0084158293902874, 0.00226756208576262, 0.01560135092586279, 0.003926514647901058, 0.0016434099525213242, -0.02083670347929001, -0.002112137619405985, -0.03219741955399513, 0.001690037315711379, -0.009567607194185257, -0.021320974454283714, -0.010176216252148151, -0.019828898832201958, -0.002220116788521409, -0.003923242446035147, 0.0012941136956214905, -0.005713078659027815, -0.011727189645171165, 0.004931047558784485, -0.009652681648731232, 0.013873684220016003, -0.0012499404838308692, 0.0008564709569327533, 0.013912949711084366, -0.0022103004157543182, -0.007591261528432369, 0.004908143077045679, -0.0028663554694503546, -0.011916971765458584, -0.005965029820799828, -0.0008167967898771167, 0.012276901863515377, 0.005192815326154232, -0.007460377644747496, -0.011465421877801418, 0.012800437398254871, 0.019540954381227493, 0.04143781587481499, -0.0047150892205536366, 0.00025890456163324416, -0.010490337386727333, 0.030940933153033257, 0.008068987168371677, 0.0238993838429451, 0.016543714329600334, -0.005729439202696085, -0.0036974677350372076, 0.00045277620665729046, 0.021923039108514786, -0.04028603807091713, 0.0264123547822237, 0.00814751721918583, -0.014776783064007759, -0.013297795318067074, -0.004103207495063543, 0.000630287395324558, 0.007604349870234728, -0.013755888678133488, -0.0025293296203017235, -0.00048386110574938357, -0.006871400400996208, 0.013939126394689083, -0.005650908686220646, 0.011537408456206322, -0.0026471251621842384, -0.008625243790447712, -0.004446777515113354, -0.006792869884520769, -0.0111905662342906, 0.018258292227983475, 0.0037989027332514524, -0.0020156106911599636, -0.016137974336743355, 0.0007963462267071009, -0.020771261304616928, 0.01122328732162714, 0.005637820344418287, 0.01938389241695404, 0.010110775008797646, 0.006917209830135107, -0.005641092546284199, 0.02139950357377529, -0.014384130947291851, -0.004181738011538982, -0.01181226409971714, -0.012885511852800846, 0.0013669178588315845, 0.000539077736902982, 0.013834419660270214, 0.026373088359832764, -0.01715886779129505, -0.0005615733680315316, -8.302942296722904e-05, 0.004453321918845177, -0.008808480575680733, 0.0007219060207717121, -0.0016016906592994928, -0.0054251342080533504, -0.013768977485597134, -0.0045318519696593285, -0.002038515405729413, 0.02248583920300007, 0.031385939568281174, -0.004391151946038008, -0.003452060744166374, 0.00453512417152524, -0.029762979596853256, 0.0133763263002038, -0.017551518976688385, 0.01749916560947895, -0.008082075975835323, 0.019226832315325737, -0.02486792579293251, 0.027537954971194267, 0.01621650531888008, -0.0073098610155284405, -0.005601827520877123, -0.012643376365303993, 0.006017383188009262, -0.0011476874351501465, -0.002905620727688074, 0.001955077052116394, 0.02201465703547001, -0.00554620148614049, 0.006851767655462027, 0.019632572308182716, 0.01485531311482191, -0.015208699740469456, 0.016399741172790527, 0.00031309862970374525, 0.0015591534320265055, -0.009665769524872303, 0.0208628810942173, -0.009495620615780354, -0.0026307646185159683, -3.681107409647666e-05, 0.009829374961555004, -0.03251153975725174, 0.004486043006181717, -0.02615058608353138, -0.0019452606793493032, -0.022525103762745857, 0.026503972709178925, 0.013251986354589462, -0.006825590971857309, 0.0020041584502905607, 0.01561443880200386, 0.019135214388370514, 0.014645898714661598, -0.005634548142552376, -0.00385780050419271, 0.004780531395226717, -0.0015485191252082586, -0.008854290470480919, -0.03484127297997475, -0.004328981973230839, -0.004580933600664139, 0.00818023830652237, 0.010725928470492363, 0.009449811652302742, -0.010712840594351292, 0.03745894879102707, -0.023532910272479057, -0.013939126394689083, -0.015797676518559456, 0.00014540374104399234, 0.00954143051058054, 0.003046320751309395, -4.0492181142326444e-05, -0.014187805354595184, -0.009332016110420227, -0.003910154104232788, -0.008775759488344193, 0.02527366392314434, -0.0012319439556449652, -0.009462899528443813, -0.011543952859938145, -0.00015695832553319633, -0.000612290867138654, -0.012708818539977074, 0.008756127208471298, 0.025600874796509743, 0.0009881728328764439, -0.05198705196380615, 0.0030970382504165173, 0.03015563078224659, -0.02096758782863617, -0.0071920654736459255, 0.013415590859949589, -0.004139200784265995, 0.01574532315135002, -0.0022070284467190504, 0.0028565393295139074, 0.0047150892205536366, -0.0017325745429843664, -0.014711340889334679, -0.013952214270830154, 0.004407512489706278, 0.020875968039035797, -0.025469990447163582, -0.010169672779738903, 0.021831421181559563, 0.0016933094011619687, 0.004855789709836245, 0.010850268416106701, -0.001316200359724462, -0.013350149616599083, 0.022027745842933655, 0.007257507648319006, 0.009292750619351864, -0.012721906416118145, -0.003811991075053811, 0.009947169572114944, 0.03497215732932091, 0.0045318519696593285, -0.0034226118586957455, -0.0009660861687734723, -0.009920992888510227, -0.003172296565026045, -0.004855789709836245, -0.004211186897009611, -0.027956783771514893, -0.006871400400996208, -0.01184498518705368, 0.02319261245429516, 0.005683629773557186, 0.0027747368440032005, -0.025024985894560814, -0.011059682816267014, -0.004279900807887316, -0.011557040736079216, 0.00886737834662199, -0.011439245194196701, 0.012388153001666069, -0.016975630074739456, 0.0041359285824000835, -0.005461127031594515, 0.024684688076376915, -0.006596544291824102, 0.0026389448903501034, -0.005205903667956591, 0.020509494468569756, 0.012663009576499462, -0.013886773027479649, 0.009770477190613747, 0.001206585206091404, 0.01320617739111185, -0.0016573163447901607, -0.0063609532080590725, 0.01666150987148285, -0.015994003042578697, -0.0038610724732279778, -0.004967040847986937, -0.013160367496311665, 0.025221310555934906, 0.00827840156853199, 0.015378848649561405, 0.012002046220004559, -0.006766693200916052, 0.02971062622964382, -0.01191042736172676, -0.0029285254422575235, 0.011746822856366634, 0.018232114613056183, -0.01115784514695406, -0.013219265267252922, -0.015012373216450214, -0.005863594822585583, 0.004989945329725742, 0.0363595224916935, -0.005120829213410616, -0.002833634614944458, -0.01605944335460663, -0.009554518386721611, -0.02193612791597843, 0.015771498903632164, -0.005713078659027815, -0.019462423399090767, 0.025352194905281067, -0.01679239422082901, -0.018127407878637314, -0.0007268142071552575, 0.00535969203338027, 0.006629265379160643, 0.01645209640264511, -0.016229592263698578, -0.008023178204894066, -0.006354409269988537, 0.008271857164800167, 0.00554620148614049, -0.001865094411186874, -0.023650705814361572, -0.009528341703116894, 0.005261529237031937, 0.0064394837245345116, 0.013716624118387699, 0.006547462660819292, 0.0063609532080590725, -0.0025178773794323206, 0.016504449769854546, -0.006573639810085297, -0.014017656445503235, -0.02621602825820446, 0.006099185906350613, 0.029501212760806084, 0.006410034839063883, -0.0011288728564977646, -0.0015288866125047207, 0.0017603873275220394, -0.020012134686112404, -0.015208699740469456, -0.0034880535677075386, 0.011432701721787453, -0.012021678499877453, 0.005771976429969072, 0.0004805890202987939, 0.013952214270830154, -0.03934367373585701, -0.002488428493961692, 0.008068987168371677, -0.006825590971857309, -0.006220253184437752, -0.0020237909629940987, 0.025993525981903076, -0.004813252482563257, 0.010451072826981544, -0.0069695631973445415, -0.01709342561662197, 0.007623982150107622, 0.004698729142546654, 0.018637854605913162, 0.00947598833590746, -0.0044762264005839825, -0.0015648796688765287, 0.001087153679691255, 0.02994621731340885, -0.006269334815442562, 0.018860356882214546, -0.001645045937038958, 0.019645661115646362, 0.004558028653264046, 0.0007746685878373682, 0.0015951464883983135, -0.0007169978925958276, -6.431712245102972e-05, -0.025116603821516037, 0.028427964076399803, -0.02231569029390812, -0.021687448024749756, -0.007538907695561647, -0.008114796131849289, -0.012604111805558205, 0.013062205165624619, -0.0034684210550040007, -0.004973584786057472, 0.018219027668237686, -0.004688912536948919, 0.0031052185222506523, 0.013507209718227386, 0.016399741172790527, -0.02137332782149315, -0.026477795094251633, -0.008291489444673061, 0.017747845500707626, 0.01214601844549179, -0.01780019886791706, -0.009299295023083687, 0.011615938507020473, 0.012361976318061352, -0.00243116682395339, 0.00017250077507924289, -0.0010339821456000209, -0.0042537241242825985, 0.00384143996052444, -0.00011125124001409858, -0.004692184738814831, -0.012663009576499462, -0.015326494351029396, 0.0022070284467190504, -0.01942315883934498, 0.026503972709178925, -0.02201465703547001, 0.023781590163707733, 0.0041359285824000835, 0.005467671435326338, 0.008370020426809788, 0.003537135198712349, -0.004780531395226717, -0.005025938618928194, -0.00848127156496048, 0.010392175056040287, 0.019828898832201958, -0.006210437044501305, -0.02601970173418522, -0.0026094960048794746, 0.0010846996447071433, -0.00013241761189419776, -0.012643376365303993, -0.012224548496305943, -0.0013464672956615686, -0.005202631466090679, 0.01895197667181492, -0.0026667576748877764, -0.030365046113729477, -0.0016237773234024644, -0.0015288866125047207, -0.005340059753507376, 0.0057261670008301735, -0.020810525864362717, -0.022027745842933655, 0.02668721042573452, 0.005120829213410616, -0.00554620148614049, 0.018389176577329636, -0.008389652706682682, 0.016975630074739456, 0.00783994048833847, -0.01709342561662197, 0.003883977187797427, 0.01140652410686016, -0.003959235269576311, -0.013147279620170593, -0.006396946497261524, -0.004544940311461687, 0.033741846680641174, -0.015823854133486748, -0.007244419306516647, -0.008723406121134758, 0.00032475547050125897, -0.00804281048476696, -3.5481785744195804e-05, 0.001096969936043024, 3.5353968996787444e-05, 0.010136951692402363, -0.014580457471311092, -0.006246429868042469, 0.004911415278911591, -0.01208057627081871, 0.01513016875833273, -0.011026961728930473, -0.011465421877801418, 0.00029489758890122175, -0.00043641572119668126, 0.009417090564966202, 0.012512492947280407, 0.010444528423249722, 0.00456784525886178, -0.012800437398254871, 0.01407000981271267, 0.005713078659027815, -0.0103463651612401, 0.01078482624143362, -0.005147005897015333, -0.009325471706688404, 0.013232354074716568, 0.0055592902936041355, 0.022224072366952896, 0.0010012611746788025, -0.01848079450428486, -0.005202631466090679, 0.011386891826987267, -0.0006589182303287089, 0.010994240641593933, -0.010725928470492363, 0.017250487580895424, -0.0010675211669877172, 0.015562085434794426, -0.026700299233198166, -0.008520536124706268, 0.0356789268553257, -0.0032393743749707937, -0.03238065540790558, -0.009593783877789974], "0c611f55-b589-4106-a22b-8cc7087cd72c": [-0.02109001949429512, 0.00243369466625154, 0.002984351944178343, 0.06131350249052048, -0.027919968590140343, -0.026767641305923462, -0.02179822139441967, 0.021438119933009148, 0.0043272352777421474, 0.039059147238731384, 0.016288649290800095, 0.03267332538962364, 0.04155586287379265, 0.00424621207639575, 0.032001134008169174, 0.005314516834914684, -0.012351525947451591, 0.03471390902996063, 0.0069559854455292225, -0.004147183615714312, 0.028904249891638756, -0.03382565453648567, -0.032769352197647095, -0.002022577216848731, 0.006082736421376467, -0.023058582097291946, -0.014500139281153679, 0.009560729376971722, -0.03843497112393379, -0.0032529286108911037, 0.0047203474678099155, 0.004849384073168039, -0.005809658206999302, 0.012459556572139263, 0.03264931961894035, 0.0068779634311795235, -0.02008173242211342, -0.008378391154110432, 0.02232637256383896, 0.017500994727015495, -0.009566730819642544, 0.03113688714802265, -0.03370562195777893, -0.01615661196410656, -0.030176613479852676, 0.011655326932668686, -0.03192911297082901, -0.0005521575803868473, 0.03156901150941849, -0.014752211049199104, 0.01775306649506092, -0.004222205374389887, -0.013383820652961731, -0.0019310511415824294, 0.06054528057575226, -0.019193477928638458, 0.0008694981806911528, 0.02321462705731392, -0.015028289519250393, -0.07552555948495865, 0.005380535963922739, -0.039659321308135986, -0.013155755586922169, -0.00037341908318921924, 0.0136478953063488, 0.007412115577608347, -0.016756782308220863, -0.008762501180171967, -0.007280077785253525, -0.007124033290892839, -0.004399255849421024, 0.003601027885451913, -0.04189195856451988, 0.05228692293167114, 0.04153185337781906, -0.020801937207579613, 0.009116602130234241, 0.01609659381210804, 0.029432401061058044, -0.029672469943761826, 0.023346664384007454, 0.0017735061701387167, 0.02501513995230198, -0.00878650788217783, 0.03677849844098091, 0.0022386389318853617, 0.029696475714445114, -0.04350041598081589, 0.01159530971199274, -0.01499227900058031, -0.012411543168127537, 0.009674761444330215, -0.0019895678851753473, 0.012735635042190552, -0.027775928378105164, -0.007076019886881113, -0.011571303009986877, 0.017585018649697304, 0.050174321979284286, 0.012045438401401043, 0.015388392843306065, 0.00014244690828491002, 0.01574849523603916, 0.0065658739767968655, 0.003231922397390008, -0.0055425819009542465, 0.0006823197472840548, 0.015160327777266502, 0.0015334377530962229, 0.030704764649271965, 0.001161331543698907, -0.039923395961523056, 0.04767761006951332, -0.020273786038160324, -0.058144595474004745, -0.04374048486351967, -0.04398055374622345, 0.010460985824465752, -0.013827946968376637, -0.01448813546448946, 0.015676474198698997, -0.016936834901571274, 0.004318232648074627, 0.009710771963000298, 0.005068446509540081, 0.038266923278570175, -0.009518717415630817, 0.014980276115238667, 0.009884821251034737, -0.01085709873586893, -0.006799940951168537, 0.013827946968376637, 0.0019520572386682034, -0.014776217751204967, -0.004411259200423956, 0.00856444425880909, -0.005716631654649973, 0.061073433607816696, -0.008864530362188816, 0.006991995964199305, -0.028880244120955467, 0.012891680002212524, -0.0018185190856456757, -0.03449784591794014, 0.02705572359263897, -0.004363245330750942, -0.020801937207579613, 0.030224626883864403, -0.010845095850527287, 0.03015260584652424, -0.05708829686045647, -0.023238632827997208, -0.04551699385046959, 0.009566730819642544, 0.04169990122318268, -0.014872245490550995, -0.0027922969311475754, 0.02389882132411003, 0.007448126096278429, 0.061985693871974945, 0.028376098722219467, -0.04875791817903519, -0.0038050860166549683, 0.038771066814661026, 0.06078534945845604, 0.03149699047207832, 0.038266923278570175, 0.0181971937417984, -0.011631320230662823, 0.010118888691067696, 0.01801714301109314, -0.020573873072862625, 0.009710771963000298, -0.0002925835142377764, 0.03231322392821312, -0.01417604647576809, 0.02159416303038597, 0.03291339427232742, 0.015496423467993736, -0.028784215450286865, -0.008882535621523857, -0.0069559854455292225, 0.006775934249162674, -0.035074010491371155, -0.01499227900058031, 0.025231201201677322, -0.007352098356932402, 0.01979365013539791, 0.008318373933434486, -0.007430120836943388, -0.005842667538672686, -0.015412399545311928, -0.002423191675916314, -0.010052869096398354, -0.03164103254675865, -0.014056012034416199, -0.006235779728740454, 0.03149699047207832, -0.003201914019882679, -9.52303089434281e-05, 0.009620745666325092, -0.03999541699886322, 0.007130035199224949, 0.042636170983314514, -0.03908315673470497, 0.0006230528233572841, -0.014140035957098007, -0.03024863451719284, 0.026335516944527626, -0.00024663290241733193, 0.043524421751499176, -0.07466131448745728, 0.013743923045694828, -0.006595882587134838, 0.01176935900002718, 0.00578865222632885, -0.02088596113026142, 0.02197827398777008, 0.005767646245658398, -0.05012630671262741, -0.00423120753839612, -0.0023901823442429304, -0.025447264313697815, -0.009740780107676983, -0.05977706238627434, 0.00980679877102375, -0.033009421080350876, 0.03951527923345566, -0.031088873744010925, -0.005779649596661329, 0.009992851875722408, 0.0017239920562133193, 0.018413254991173744, 0.0037120594643056393, 0.018881389871239662, 0.05502370744943619, -0.0045492984354496, 0.024583017453551292, -0.029408393427729607, -0.011727347038686275, 0.01150528434664011, 0.008288365788757801, 0.005545583087950945, 0.007970275357365608, 0.03202513977885246, 0.01067704800516367, 0.006373819429427385, 0.038290929049253464, 0.03925120458006859, 0.010899110697209835, -0.03975534811615944, 0.014908255077898502, 0.008558442816138268, -0.029192332178354263, -0.004594311583787203, 0.006643896456807852, 0.019457554444670677, -0.018113169819116592, -0.005038438364863396, 0.025663325563073158, 0.029144318774342537, -0.01876135542988777, -0.0022956551983952522, -0.014668187126517296, 0.045084867626428604, -0.005740638822317123, 0.03476192057132721, 0.0036580441519618034, -7.699072739342228e-05, 0.027919968590140343, 0.010376961901783943, 0.02008173242211342, -0.003709058742970228, 0.04102770984172821, -0.008996567688882351, 0.018557297065854073, -0.0070520127192139626, 0.010226919315755367, 0.03644240275025368, -0.005326520185917616, -0.019925687462091446, -0.007844239473342896, -0.009344667196273804, 0.021258067339658737, 0.020105738192796707, 0.02475106529891491, 0.0010187907610088587, -0.03524205833673477, -0.00775421317666769, 0.028808223083615303, 0.01692483015358448, 0.004615317564457655, 0.007016002666205168, 0.01589253544807434, 0.004321233369410038, 0.021017998456954956, -0.04561302065849304, 0.003129893448203802, -0.02643154375255108, 0.014740207232534885, 0.018977416679263115, 0.03550613299012184, 0.005290510132908821, -0.04304428771138191, 0.04882993921637535, -0.04412459582090378, 0.04395654797554016, 0.04292425140738487, -0.04666932299733162, 0.04767761006951332, 0.024438975378870964, -0.04806171730160713, -0.03577021136879921, -0.011097167618572712, 0.023622741922736168, 0.029432401061058044, -0.057904526591300964, -0.0058216615580022335, -0.01377993356436491, -0.026455551385879517, -0.0007033257279545069, -0.002003071829676628, -0.03435380756855011, -0.022086303681135178, 0.011487279087305069, -0.057760488241910934, 0.022578444331884384, 0.0036850518081337214, 0.01902543008327484, 0.011223203502595425, -0.07086823135614395, -0.007940266281366348, -0.015208341181278229, 0.008036294020712376, -0.0198176559060812, -0.01480022445321083, -0.04093168303370476, -0.03665846213698387, 0.016348667442798615, -0.027103736996650696, -0.025471270084381104, -0.027727914974093437, 0.032529283314943314, -0.02667161263525486, -0.000534152495674789, 0.00015932672249618918, -0.000578039966057986, 0.027703907340765, 0.0070520127192139626, -0.00981880258768797, 0.0007119532092474401, 0.00039048647158779204, 0.034689903259277344, -0.0005322769284248352, 0.04462873935699463, -0.00984881166368723, -0.0343778133392334, 0.00485838670283556, 0.0032409250270575285, -0.0066919103264808655, 0.02167818695306778, -0.040811650454998016, 0.006667903158813715, -0.02602342888712883, -0.011463272385299206, -0.002660259371623397, 0.010851097293198109, 0.0017179903807118535, 0.0038711049128323793, -0.007574161980301142, 0.009566730819642544, 0.003348955884575844, -0.01969762332737446, -0.035722196102142334, -0.01846127025783062, -0.030584730207920074, 0.0315450057387352, -0.013299795798957348, -0.025735346600413322, -0.0018050152575597167, -0.01742897555232048, -0.010995138436555862, 0.004810372833162546, 0.03348955884575844, 0.01293969340622425, -0.0018980418099090457, -0.014284077100455761, -0.05286308750510216, -0.021930260583758354, -0.01666075550019741, -0.021198051050305367, -0.020069729536771774, -0.014128033071756363, -0.0023616740945726633, -0.015784505754709244, -0.004324234090745449, 0.005626605823636055, -0.04090767726302147, -0.012795652262866497, -0.029552435502409935, -0.02232637256383896, -0.001033795066177845, -0.018029145896434784, -0.006871961522847414, 0.02129407785832882, -0.019505567848682404, 0.02614346146583557, 0.009314659051597118, 0.008408400230109692, -0.010400968603789806, 0.03677849844098091, -0.015040293335914612, -0.017585018649697304, 0.013935977593064308, 0.01645669713616371, 0.035314079374074936, -0.01674477942287922, 0.029312366619706154, -0.02525520883500576, 0.010172903537750244, 0.03632236644625664, 0.037498705089092255, 0.02062188647687435, 0.018245207145810127, 0.011169187724590302, 0.001466668676584959, -0.026359524577856064, -0.014260070398449898, 0.00015801384870428592, -0.005488566588610411, 0.0067879376001656055, 0.037234626710414886, -0.0009775289800018072, 0.0040331510826945305, -0.0027382816188037395, -0.01769305020570755, -0.003964131698012352, 0.007412115577608347, 0.003396969521418214, 0.006559872534126043, -0.010400968603789806, -0.0030233629513531923, 0.003670047502964735, 0.0032649319618940353, -0.01666075550019741, 0.030584730207920074, -0.026623599231243134, 0.01231551542878151, -0.004558301065117121, -0.002096098382025957, 0.01281965896487236, 0.02643154375255108, -0.02442697249352932, -0.01607258804142475, 0.025735346600413322, 0.008912543766200542, -0.003201914019882679, -0.014848237857222557, 0.001968561904504895, -0.04141182079911232, 0.004387252498418093, 0.00942268967628479, 0.04695740342140198, -0.006811944302171469, 0.026191476732492447, 0.011859385296702385, 0.004393253941088915, 0.003643039846792817, 0.008654470555484295, 0.028280071914196014, 0.00029783500940538943, -0.00599571131169796, -0.013743923045694828, 0.02655157819390297, 0.019193477928638458, 0.0005757893668487668, -0.020393820479512215, 0.012543580494821072, -0.0014966771705076098, 0.011907398700714111, 0.0030278642661869526, -0.022518428042531013, 0.001368390629068017, 0.018425259739160538, -0.017416970804333687, 0.003976135049015284, -0.017921116203069687, -0.024703051894903183, -0.01199142262339592, 0.002247641561552882, -0.006289795506745577, 0.030608735978603363, -0.00310888746753335, 0.005989709869027138, 0.05497569218277931, 0.01409202255308628, -0.002484709257259965, -0.019301509484648705, -0.016528718173503876, -0.02307058498263359, 0.06678706407546997, -0.017500994727015495, -0.002556729828938842, 0.017500994727015495, -0.03358558565378189, 0.03675449267029762, -0.0046843369491398335, 0.006499855313450098, -0.03440181910991669, -0.008948554284870625, -0.05444754287600517, 0.05579192563891411, -0.044028569012880325, 0.014224059879779816, 0.015256354585289955, 0.014956269413232803, -0.0036040288396179676, -0.004249212797731161, 0.033009421080350876, 0.008126319386065006, -0.008498425595462322, 0.005926691927015781, -0.005053442437201738, 0.007034007925540209, -0.05118260905146599, 0.004372247960418463, -0.039179183542728424, -0.03310544788837433, -0.009086593985557556, -0.02909630537033081, -0.01615661196410656, 0.024090876802802086, 0.005503571126610041, 0.021426115185022354, -0.004168189596384764, 0.0014306583907455206, -0.008480420336127281, 0.0073280916549265385, 0.02475106529891491, 0.0018650323618203402, -0.015016286633908749, 0.02377878688275814, 0.010304941795766354, 0.005404542665928602, -0.00549456849694252, 0.02353871800005436, -0.00660788593813777, -0.006667903158813715, -0.04254014417529106, 0.001668476266786456, -0.0014711698750033975, 0.0009707771241664886, -0.03512202575802803, 0.012555583380162716, -0.006055728532373905, -0.05243096500635147, 0.013503854162991047, 0.022638462483882904, -0.001937052933499217, -0.046861376613378525, -0.003985137678682804, 0.01609659381210804, 0.005314516834914684, 0.003907115198671818, -0.02404286339879036, 0.009782792069017887, -0.035962264984846115, 0.017801081761717796, 0.008840523660182953, 0.005455557256937027, 0.011589308269321918, 0.007742209825664759, 0.05540781468153, 0.01595255360007286, -0.0045342943631112576, 0.01781308464705944, -0.004288224037736654, -0.03279336169362068, -0.03168904408812523, -0.010539008304476738, 0.027487846091389656, 0.010106884874403477, 0.009290652349591255, -0.010208914056420326, 0.02974449098110199, 0.009878819808363914, -0.0272957906126976, 0.004765360150486231, -0.024318940937519073, 0.011121174320578575, 0.03752271085977554, 0.01872534491121769, 0.0015034291427582502, -0.015256354585289955, 0.01736895740032196, 0.030344661325216293, 0.029312366619706154, -0.0138519536703825, -0.008114316500723362, 0.033681612461805344, 0.05151870474219322, 0.042108017951250076, 0.009584736078977585, -0.0020600880961865187, -0.05636809021234512, 0.02832808531820774, -0.0038410963024944067, 0.041987985372543335, -0.019397536292672157, 0.012639608234167099, 0.016468700021505356, 0.012807656079530716, 0.022638462483882904, -0.036610450595617294, 0.02575935237109661, 0.002508716192096472, 0.029432401061058044, 0.012099453248083591, -0.0033999704755842686, 0.03677849844098091, 0.015820516273379326, -0.021378101781010628, 0.05089452862739563, -0.0034389817155897617, 0.00022356380941346288, 0.029072297737002373, -0.0296244565397501, -0.0349779836833477, 0.0026587590109556913, 0.013011714443564415, -0.008774504996836185, -0.010899110697209835, -0.02301056869328022, -0.010569016449153423, 0.022074300795793533, -0.029720483347773552, -0.004726348910480738, 0.008510429412126541, -0.014128033071756363, -0.0199136845767498, -0.016576731577515602, 0.008744495920836926, -0.004711344838142395, 0.056992266327142715, -0.004465274512767792, 0.018173187971115112, -0.012171474285423756, 0.017885105684399605, -0.0026782643981277943, 0.02454700693488121, -0.01724892295897007, 0.012081448920071125, 0.014980276115238667, 0.016852810978889465, 0.003916117828339338, -0.006883964873850346, -0.023058582097291946, 0.0203218013048172, 0.011433263309299946, -0.007088023237884045, 0.008240352384746075, -0.014248066581785679, 0.010244924575090408, 0.0033939688000828028, 0.02537524327635765, 0.0136478953063488, -0.018737347796559334, 0.03701856732368469, -0.01191940251737833, 0.058000557124614716, -0.0031238917727023363, -0.024462983012199402, 0.015604454092681408, -0.0008109814953058958, 0.014152039773762226, 0.0004636323428712785, 0.0032139173708856106, -0.01680479757487774, -0.0034989987034350634, -0.011133178137242794, -0.0024456980172544718, -0.051086582243442535, -0.03560216352343559, 0.02256644144654274, -0.03140096366405487, -0.0009565229993313551, -0.017260927706956863, 0.010418973863124847, -0.029528427869081497, -0.0017735061701387167, -0.03651442378759384, -0.01109116617590189, -0.026215482503175735, 0.00954272411763668, -0.006745925638824701, 0.006373819429427385, -0.007508143316954374, -0.008954555727541447, -0.0017149895429611206, -0.02167818695306778, -0.029840517789125443, -0.01931351236999035, 0.011715344153344631, -0.02820805087685585, 0.02424692176282406, 0.005551584530621767, -0.01202143169939518, -0.024270927533507347, 0.009986850433051586, -0.0036640458274632692, 0.01365989912301302, 0.007850240916013718, -0.006619889754801989, 0.01754900999367237, 0.00830036960542202, 0.017525002360343933, -0.007598168682307005, -0.016468700021505356, -0.00839039497077465, 0.03567418456077576, -0.0006703163380734622, 0.0036970553919672966, -0.020693907514214516, -0.033969696611166, -0.007298083044588566, 0.015940550714731216, -0.015256354585289955, -0.0049064005725085735, -0.009788794443011284, -8.86659327079542e-05, 0.04412459582090378, -0.0060407244600355625, 0.03615431860089302, 0.01109116617590189, -0.004708344116806984, 0.012591593898832798, 0.0031659037340432405, -0.009812801145017147, 0.03317746892571449, -0.01807715930044651, 0.0198176559060812, 0.017969129607081413, 0.026383530348539352, -0.04681336134672165, 0.004510287195444107, -0.01700885407626629, 0.03730664774775505, -0.00035053756437264383, -0.004486280493438244, 0.015052296221256256, 0.004951413255184889, -0.006337808910757303, 0.03320147842168808, 0.006571875885128975, 0.0013473846483975649, -0.014248066581785679, 0.01203943695873022, -0.010671045631170273, -0.021834231913089752, 0.05896082893013954, 0.005251498892903328, 0.02238639071583748, -0.006649897899478674, -0.02129407785832882, -0.013755926862359047, 0.004168189596384764, 0.03209716081619263, -0.0009797796374186873, 0.024498993530869484, 0.012891680002212524, 0.02357472851872444, 0.010166902095079422, 0.010394967161118984, 0.039563294500112534, 0.0037720766849815845, -0.02117404341697693, -0.008264359086751938, -0.008678477257490158, -0.0007430870900861919, 0.006085737142711878, -0.025807365775108337, -0.0037960836198180914, 0.023610739037394524, 0.007454127538949251, 0.014668187126517296, -0.023430688306689262, 0.037762779742479324, 0.0013038722099736333, -0.027391819283366203, 0.010244924575090408, 0.03444983437657356, -0.044796787202358246, 0.004828378092497587, 0.015268358401954174, 0.013347810134291649, -0.017056869342923164, -0.01603657752275467, -0.012531576678156853, 0.0013443836942315102, -0.003210916416719556, 0.01884537935256958, -0.00044525208068080246, 0.048277780413627625, 0.02489510551095009, 0.02218233235180378, -0.010671045631170273, 0.03310544788837433, -0.015064300037920475, -0.05603199452161789, 0.016252638772130013, -0.0033609592355787754, 0.02489510551095009, -0.010581020265817642, 0.01574849523603916, -0.048253774642944336, -0.029000278562307358, 0.00744212418794632, -0.0065838792361319065, 0.0115773044526577, -0.0026242490857839584, -0.01512431725859642, -0.019445549696683884, 0.021486133337020874, 0.030728770419955254, -0.003694054437801242, 0.0021906252950429916, 0.015304367989301682, 0.0012873674277216196, 0.008240352384746075, -0.006076734513044357, -0.025807365775108337, -0.006187766324728727, -0.01736895740032196, 0.02808801829814911, -0.010112886317074299, 0.02667161263525486, 0.0047023422084748745, 0.0002441946999169886, -0.04100370407104492, 1.9019100818695733e-06, -0.02286652661859989, -0.03752271085977554, -0.012459556572139263, -0.017657039687037468, 0.021558154374361038, 0.010833092033863068, 0.024150893092155457, 0.009950839914381504, 0.02398284524679184, 0.024703051894903183, 0.01250756997615099, -0.014020001515746117, 0.02667161263525486, 0.010298939421772957, -0.017392965033650398, 0.0138999680057168, 0.0003968632663600147, 0.02703171595931053, 0.0033279499039053917, -0.0015559440944343805, 0.020033719018101692, -0.013083734549582005, -0.02286652661859989, -0.00039536284748464823, -0.02499113418161869, 0.014944265596568584, 0.0006943232147023082, -0.0037300647236406803, 0.013791936449706554, 0.022158324718475342, -0.0023391677532345057, 0.013731919229030609, 0.03951527923345566, -0.005941695999354124, -0.027247777208685875, -0.006943982094526291, 0.00692597683519125, 0.0031508994288742542, -0.03591424971818924, 0.03653842955827713, 0.005131464917212725, -0.018413254991173744, -0.018821371719241142, -0.02652757242321968, -0.04270819202065468, 0.01199142262339592, 0.016024574637413025, -0.0016204625135287642, 0.018797365948557854, 0.01595255360007286, 0.016552723944187164, -0.00816833134740591, -0.005044439807534218, -0.005611601751297712, -0.015472416765987873, 0.014224059879779816, 0.02377878688275814, 0.003069876227527857, 0.020369814708828926, 0.011295224539935589, 0.011169187724590302, -0.0036100305151194334, -0.018497278913855553, -0.04335637390613556, 0.011055155657231808, -0.024510996416211128, 0.013683905825018883, -9.129168029176071e-05, 0.025999421253800392, -0.004417260643094778, 0.010148896835744381, -0.006034722551703453, -0.026599591597914696, 0.010731062851846218, 0.06131350249052048, 0.003616032190620899, -0.006235779728740454, -0.007808228954672813, 0.00868447870016098, 0.004489281214773655, 0.02161817066371441, -0.026767641305923462, 0.02046584151685238, -0.011511285789310932, -0.01064703892916441, 0.04657329246401787, -0.013491851277649403, -0.019517570734024048, -0.003550013294443488, 0.04066760838031769, -0.0031689044553786516, -0.010070874355733395, -0.004504285752773285, -0.001767504494637251, -0.014548152685165405, -0.014788221567869186, -0.04611716419458389, -0.04157986864447594, -0.009548725560307503, 0.021462125703692436, 0.013047724030911922, -0.03845897689461708, 0.014260070398449898, -0.00537453405559063, -0.03116089478135109, 0.0020075731445103884, -0.001636967295780778, 0.024354951456189156, 0.009650754742324352, -0.013731919229030609, -0.010605026967823505, 0.017296936362981796, 0.019781647250056267, 0.007502141408622265, -0.0004628821334335953, -0.027343804016709328, 0.003387967124581337, 0.004744354169815779, -0.004486280493438244, -0.027607880532741547, -0.004996425937861204, -0.016552723944187164, 0.021966269239783287, 0.00217862194404006, -0.009578733704984188, 0.010833092033863068, -0.009032578207552433, 0.022194335237145424, 0.0023511711042374372, -0.02667161263525486, 0.007226062472909689, -0.037138599902391434, 0.03101685270667076, 0.023490704596042633, 0.0038861092180013657, -0.014020001515746117, -0.021005995571613312, -0.023442691192030907, -0.021282074972987175, -0.025711338967084885, 0.02475106529891491, -0.01187138818204403, -0.027367811650037766, -0.052767060697078705, -0.011175190098583698, 0.0006061730091460049, -0.003501999657601118, 0.013671902008354664, 0.01834123581647873, 0.016384676098823547, 0.010533006861805916, -0.015388392843306065, 0.011133178137242794, 0.010310943238437176, 0.00186053104698658, 0.000754715409129858, 0.022074300795793533, -0.03910716250538826, 0.016204625368118286, -0.02575935237109661, -0.0031899104360491037, -0.03164103254675865, -0.0272957906126976, 0.042900245636701584, 0.029072297737002373, -0.008972560986876488, 0.004414259921759367, 0.024522999301552773, 0.020669899880886078, 0.019601594656705856, -0.04061959311366081, 0.0003724813286680728, 0.017152896150946617, -0.01742897555232048, 0.0032409250270575285, 0.029696475714445114, 0.04323634132742882, -0.010629033669829369, -0.022050293162465096, 0.025183187797665596, -0.028664181008934975, -0.01969762332737446, -0.006031721830368042, -0.009980848990380764, -0.010448982939124107, 0.022374385967850685, 0.021258067339658737, -0.014524145983159542, -0.0038200903218239546, 0.019265498965978622, -0.026863668113946915, -0.014524145983159542, -0.010154898278415203, -0.014440122060477734, -0.00018661576905287802, 0.0060917385853827, 0.004510287195444107, -0.052623022347688675, -0.0020345808006823063, -0.005317518021911383, 0.01793311908841133, -0.010761071927845478, -0.002598741790279746, 0.01892940327525139, 0.022314369678497314, 0.0011590808862820268, 0.0028418111614882946, -0.008570446632802486, 0.0022731488570570946, 0.005377534776926041, -0.010064872913062572, 0.0292163398116827, 0.008324376307427883, -0.026575585827231407, 0.0035620166454464197, 0.005044439807534218, 0.00186053104698658, 0.0014089021133258939, -0.004615317564457655, 0.02109001949429512, -0.009536721743643284, -0.020897965878248215, 0.03771476447582245, -0.013731919229030609, -0.0023826800752431154, -0.026863668113946915, -0.008588451892137527, 0.020513854920864105, -0.0007997282664291561, 0.004030150361359119, -0.015784505754709244, -0.014896252192556858, 0.019181475043296814, 0.011967415921390057, -0.01456015557050705, 0.008930549025535583, 0.030848804861307144, 0.02212231419980526, 0.01621662825345993, 0.006046725902706385, -0.003715060418471694, -0.013551868498325348, -0.0022731488570570946, -0.012771645560860634, -0.015280361287295818, -0.016564728692173958, 0.009752783924341202, -0.006817946210503578, 0.0002680140023585409, 0.015376389026641846, -0.013155755586922169, -0.003102885792031884, 0.029072297737002373, 0.0029183330480009317, -0.0006151755806058645, 0.003829092951491475, 0.02643154375255108, 0.03939524665474892, 0.0016339663416147232, 0.017440978437662125, -0.015232347883284092, -0.026383530348539352, 0.02034580707550049, 0.014524145983159542, 0.005179478321224451, 0.01140325516462326, -0.02489510551095009, 0.01456015557050705, -0.023022571578621864, -0.005131464917212725, 0.016552723944187164, -0.0010217917151749134, 0.021246064454317093, -0.0037180613726377487, 0.03807486966252327, -0.027703907340765, -0.006931978743523359, -0.013635892421007156, -0.0045162891037762165, -0.0038380955811589956, 0.0017690049717202783, -0.012375532649457455, -0.006589881144464016, -0.025591304525732994, -0.00859445333480835, -0.004480279050767422, 0.009272647090256214, -0.008252355270087719, 0.006931978743523359, 0.011367244645953178, 0.0184012521058321, -0.001390146790072322, 0.0315450057387352, -0.013131747953593731, -0.010785078629851341, 0.008090308867394924, 0.013359813019633293, 0.02115003764629364, -0.03641839697957039, 0.009050583466887474, -0.011421260423958302, -0.0020495851058512926, 0.005755642894655466, 0.006475848611444235, -0.018821371719241142, -0.00951271504163742, -0.00040624095709063113, -0.031112881377339363, 0.024522999301552773, -0.012411543168127537, 0.015844522044062614, 0.008456413634121418, 0.01321577187627554, -0.00887653324753046, -0.0015266857808455825, 0.0009490209049545228, 0.005680621601641178, -0.0008867530850693583, -0.004561301786452532, -0.020093735307455063, -0.029936544597148895, -0.0009137607994489372, 0.009434692561626434, -0.0012228490086272359, -0.011337236501276493, 0.013791936449706554, 0.006175762973725796, 0.02936038002371788, 0.014764213934540749, -0.005404542665928602, -0.0026182474102824926, -0.0017179903807118535, 0.026575585827231407, 0.005755642894655466, -0.004393253941088915, 0.024126887321472168, -0.012639608234167099, -0.013599881902337074, -0.014872245490550995, 0.021834231913089752, 0.004558301065117121, -0.005245497450232506, 0.0030008566100150347, -0.012459556572139263, -0.009602741338312626, -0.003550013294443488, 0.01066504418849945, -0.034545861184597015, 0.022194335237145424, 0.021606167778372765, 0.035722196102142334, -0.010022860951721668, -0.016696766018867493, -0.0077182031236588955, 0.0014704196946695447, 0.016000567004084587, 0.004372247960418463, -0.006439838092774153, 0.020681902766227722, 0.014872245490550995, 0.0014359098859131336, 0.0026062438264489174, -0.01488424837589264, -0.0015859527047723532, -0.009914830327033997, -0.03372962772846222, 0.007172047160565853, -0.0008867530850693583, -0.009170617908239365, 0.0010487993713468313, 0.017116885632276535, 0.0184012521058321, -0.011295224539935589, -0.03805086016654968, 0.008990566246211529, 0.018437262624502182, 0.014116029255092144, -0.02005772478878498, 0.017500994727015495, 0.0028478128369897604, 0.02489510551095009, 0.013239779509603977, 0.015388392843306065, 0.01326378621160984, 0.005509572569280863, 0.011469273827970028, 0.0382189080119133, 0.01187138818204403, 0.011175190098583698, -0.0036400388926267624, -0.011313228867948055, 0.0008995067328214645, 0.00952471885830164, 0.03192911297082901, 0.017152896150946617, -0.011985421180725098, -0.0018560297321528196, -0.0023211624938994646, -0.006913973484188318, 0.015544436872005463, 0.029720483347773552, -0.0031268924940377474, 0.02460702322423458, -0.0005596597329713404, 0.002856815466657281, 0.025351235643029213, -0.0064878519624471664, -0.012603597715497017, -0.012891680002212524, 0.019829660654067993, -0.006181764416396618, 0.01777707412838936, -0.00413518026471138, 0.0017269928939640522, -0.011547296307981014, -0.0038921108935028315, -0.032889388501644135, 0.02460702322423458, -0.003550013294443488, 0.0038801075424999, -0.011211199685931206, 0.005752642173320055, 0.0031989130657166243, 0.005428549367934465, -0.030440688133239746, 0.024318940937519073, 0.010220917873084545, 0.0010345452465116978, -0.018245207145810127, -0.00888853706419468, -0.025999421253800392, -0.0006583129288628697, -0.006403828039765358, 0.010539008304476738, -0.008354384452104568, 0.032481271773576736, -0.003029364626854658, -0.020297793671488762, -0.015412399545311928, -0.016612742096185684, 0.016972845420241356, 0.04011544957756996, 0.03291339427232742, -0.018269214779138565, -0.01813717745244503, 0.006064731162041426, -0.003177907085046172, 0.014836234971880913, 0.008528434671461582, -0.017945121973752975, 0.003417975502088666, -0.02463103085756302, -0.022134317085146904, 0.02428293041884899, -0.011667330749332905, 0.018425259739160538, 0.012771645560860634, -0.02539924904704094, 0.021894250065088272, 0.01896541379392147, -0.020573873072862625, 0.02703171595931053, -0.002081094076856971, 0.009650754742324352, 0.0063798208720982075, 0.02410287968814373, -0.0008072304190136492, 0.028304079547524452, 0.0184012521058321, -0.02424692176282406, -0.0031208908185362816, -0.009290652349591255, -0.009566730819642544, 0.006811944302171469, -0.00881651695817709, -0.007400112226605415, 0.014908255077898502, -0.032121170312166214, 0.00897856242954731, -0.014272074215114117, 0.011133178137242794, 0.024823086336255074, 0.03500198945403099, 0.003273934591561556, -0.011757356114685535, 0.03156901150941849, -0.018593307584524155, 0.007706199772655964, 0.007094024680554867, -0.005971704609692097, 0.008588451892137527, 0.012495567090809345, -0.004900398664176464, -0.00839039497077465, 0.018389249220490456, 0.0018455267418175936, -0.012471559457480907, 0.005359529983252287, 0.015088306739926338, -0.014452124945819378, -0.021522143855690956, 0.023730773478746414, -2.9375572921708226e-05, -0.009218631312251091, -0.009572732262313366, 0.011175190098583698, 0.027271784842014313, -0.0003833594382740557, 0.0010743066668510437, -0.022110311314463615, -0.024030858650803566, 0.00983680784702301, 0.013167758472263813, -0.0029663466848433018, -0.010641037486493587, -0.010088879615068436, -0.021510139107704163, -0.008768502622842789, -0.002654257696121931, 0.0074241189286112785, 0.0027592875994741917, -0.036466408520936966, -0.026959694921970367, 0.00682994956150651, -0.0034329798072576523, 0.020153753459453583, -0.006289795506745577, -0.00797627680003643, -0.004267218057066202, 0.017705053091049194, -0.023730773478746414, 0.012639608234167099, 0.009212629869580269, 0.0027037716936320066, -0.02094597928225994, -0.03913116827607155, -0.003907115198671818, -0.0017855096375569701, 0.03845897689461708, -0.01816118322312832, 0.017404967918992043, 0.01852128654718399, 0.013563871383666992, 0.014452124945819378, 0.01618061773478985, 0.0034479841124266386, -0.02203829027712345, 0.01460816990584135, -0.01866532862186432, 0.02525520883500576, -0.00017601899162400514, 0.01293969340622425, 0.001968561904504895, 0.012567587196826935, -0.0068239476531744, -0.015028289519250393, -0.02717575617134571, -0.02758387289941311, 0.000519523280672729, 0.039803359657526016, -0.0011440765811130404, -0.013767929747700691, -0.004090167582035065, 0.025063153356313705, -0.009218631312251091, 0.006613887846469879, -0.010304941795766354, -0.019205482676625252, -0.0009835307719185948, -0.03233722969889641, 0.0036790501326322556, -0.016288649290800095, 0.014788221567869186, 0.006241781637072563, 0.008960558101534843, -0.0005810408620163798, -0.010346953757107258, 0.020189762115478516, 0.011931405402719975, -0.04446069151163101, -0.0024351950269192457, -0.00455530034378171, -0.0075141447596251965, -0.011961414478719234, -0.004285223316401243, 0.01436810102313757, 0.0010653040371835232, -0.0023826800752431154, -0.023670757189393044, -0.008030292578041553, 0.012903682887554169, -0.008678477257490158, 0.00881651695817709, -0.02681565470993519, -0.004855385981500149, -0.046861376613378525, 0.005302513483911753, 0.006223776377737522, 0.017296936362981796, -0.006157757714390755, 0.014980276115238667, -0.021078016608953476, 0.028304079547524452, -0.028424113988876343, 0.0277999360114336, 0.004573305603116751, -0.03387366980314255, -0.012543580494821072, 0.0021726200357079506, 5.2890096412738785e-05, -0.012423546053469181, -0.043668463826179504, -0.014284077100455761, 0.013047724030911922, 0.01837724633514881, -0.011955412104725838, -0.020633889362215996, -0.03260130435228348, -0.00023612989753019065, 0.01896541379392147, -0.023406680673360825, -0.01054500974714756, 0.025327229872345924, -0.030848804861307144, 0.00247720698826015, -0.004162188153713942, -0.030584730207920074, -0.010346953757107258, 0.013863957487046719, 0.008324376307427883, 0.001647470286116004, 0.044940829277038574, -0.029576443135738373, 0.01293969340622425, -0.025447264313697815, 0.010316944681107998, 0.008894538506865501, -0.02141411229968071, -0.013311799615621567, 0.010184907354414463, -0.003018861636519432, -0.011073160916566849, -0.023466698825359344, 0.01651671528816223, -0.025927400216460228, 0.033273495733737946, 0.032001134008169174, -0.004060158971697092, -0.002367675770074129, -0.010094881057739258, -0.003084880532696843, -0.005515574477612972, 0.015268358401954174, 0.007850240916013718, 0.011241208761930466, -0.02652757242321968, 0.043164320290088654, 0.01896541379392147, -0.005413545295596123, 0.022614454850554466, 0.005290510132908821, -0.0026797649916261435, 0.003985137678682804, 0.0584326796233654, -0.03240925073623657, -0.0034389817155897617, 0.02014174871146679, -0.005503571126610041, 0.005041439086198807, -0.023766783997416496, -0.01097113173455, 0.01937353052198887, -0.03797883912920952, -0.004996425937861204, -0.00908059161156416, 0.021930260583758354, -0.007934264838695526, 0.03320147842168808, -0.016372673213481903, 0.0005802906234748662, 0.008726490661501884, 0.008510429412126541, -0.020165756344795227, 0.0068659596145153046, -0.009194624610245228, 0.005071447696536779, 0.03144897520542145, -0.0368025042116642, 0.01064703892916441, -0.0009400183334946632, 0.016792792826890945, 0.021366098895668983, -0.001791511313058436, -0.022110311314463615, -0.01607258804142475, -0.005194482859224081, -0.004894397221505642, -0.01128322072327137, -0.008558442816138268, -0.01169733889400959, 0.01524435169994831, 0.009788794443011284, -0.013911970891058445, 0.007322090212255716, -0.0015154326101765037, 0.00601071584969759, -0.003931121900677681, -0.024679044261574745, 0.01852128654718399, -0.002396184019744396, -7.941719559312332e-06, -6.0017129726475105e-05, -0.0023166611790657043, 0.012771645560860634, 0.0038170896004885435, -0.008258357644081116, 0.0115773044526577, -0.007640180643647909, -0.0014051510952413082, 0.009344667196273804, -0.026887673884630203, -0.01416404265910387, -0.030104592442512512, 0.0018905396573245525, -0.0016789792571216822, -0.01550842635333538, -0.011523289605975151, -0.01429608091711998, -0.0013863957719877362, 0.0007277076947502792, 0.004324234090745449, 0.01591654308140278, -0.0022011282853782177, 0.016120601445436478, 0.020957982167601585, 0.018593307584524155, -0.001039046561345458, -0.007940266281366348, 0.007802227046340704, -0.015400395728647709, 0.0016594736371189356, -0.012543580494821072, 0.03512202575802803, -0.0032409250270575285, 0.00984881166368723, -0.008948554284870625, 0.0015529432566836476, -0.02307058498263359, -0.010599025525152683, 0.03188110142946243, 0.01668476313352585, 0.0037330654449760914, 0.002078093122690916, -0.010593024082481861, -0.006055728532373905, -0.01828121766448021, -0.01973363198339939, 0.021954266354441643, 0.017705053091049194, -0.005173476878553629, -0.001775006647221744, 0.02705572359263897, 0.01212346088141203, 0.021726202219724655, -0.021378101781010628, 0.01499227900058031, -0.00026107451412826777, -0.0008109814953058958, 0.013863957487046719, 0.032529283314943314, -0.008318373933434486, 0.007490138057619333, -0.00486738933250308, 0.007154041901230812, -0.011829376220703125, 0.0006598133477382362, -0.0034659893717616796, 0.002073591807857156, -0.002925835084170103, 0.006619889754801989, -0.004465274512767792, 0.011337236501276493, -0.017116885632276535, -0.008066302165389061, 0.032529283314943314, 0.01706887222826481, -0.020753923803567886, -0.002753285923972726, 0.00011140679998788983, -0.009356671012938023, -0.012903682887554169, 0.006805942859500647, -0.015268358401954174, -0.015604454092681408, -0.0032349233515560627, -0.002657258417457342, 0.003643039846792817, -0.01710488274693489, -0.002264146227389574, -0.03473791480064392, -0.013623888604342937, 0.0033129455987364054, -0.025855379179120064, 0.009458700194954872, -0.030200621113181114, -0.003459987696260214, 0.021042006090283394, -0.023298650979995728, -0.01211145706474781, -0.016636747866868973, -0.004807372111827135, -0.0065058572217822075, 0.008330377750098705, 0.02664760686457157, 0.008510429412126541, -0.028400106355547905, -0.010244924575090408, 0.0101609006524086, 0.01999770849943161, 0.009242638014256954, 0.024030858650803566, 0.026383530348539352, -0.0060917385853827, -0.009182620793581009, -0.009278648532927036, -0.0028373098466545343, 0.01281965896487236, 0.0022866528015583754, 0.0038921108935028315, -0.015448409132659435, 0.019457554444670677, -0.023238632827997208, -0.012447552755475044, 0.025663325563073158, 0.011451268568634987, 0.014944265596568584, 0.0014013999607414007, -0.004936409182846546, 0.0020150751806795597, 0.006103742402046919, 0.022170327603816986, -0.01097113173455, 0.014044009149074554, 0.014320087619125843, -0.004750356078147888, 0.002160616684705019, 0.004291224759072065, 0.0018455267418175936, 0.01854529418051243, 0.016828803345561028, -0.010394967161118984, 0.002670762361958623, 0.0014486635336652398, -0.02731979824602604, -0.006112745031714439, 0.0009002569713629782, -0.023622741922736168, 0.009602741338312626, 0.006841952912509441, 0.0015604454092681408, -0.007088023237884045, -0.011457270011305809, 0.0041261776350438595, -0.010701054707169533, 0.011625317856669426, 0.007574161980301142, -0.01910945400595665, -0.016588734462857246, 0.003318947274237871, -0.0026902679819613695, -0.016132604330778122, 0.003459987696260214, -0.0010810585226863623, -0.019205482676625252, -0.007112029939889908, 0.024234917014837265, -0.007982278242707253, 0.0001567947620060295, 0.0015589449321851134, -0.005941695999354124, 0.008672475814819336, -0.0196135975420475, 0.007814230397343636, -0.0004189946048427373, -0.002760787960141897, 0.026767641305923462, -0.007766216993331909, 0.01398399192839861, -0.0031719054095447063, -0.021402109414339066, -0.01595255360007286, 0.017200909554958344, 0.009308656677603722, -0.011493280529975891, 0.025543291121721268, 0.000389361142879352, 0.0004640074330382049, -0.005911687389016151, -0.02501513995230198, -0.012081448920071125, -0.011955412104725838, -0.025855379179120064, -0.0003771701594814658, -0.014224059879779816, -0.02380279451608658, -0.0107670733705163, -0.006739923730492592, -0.0013541365042328835, 0.01763303391635418, 0.025591304525732994, 0.013311799615621567, 0.007358100265264511, -0.004069161601364613, 0.011553297750651836, -0.0025477271992713213, -0.008948554284870625, 0.008600454777479172, -0.010737065225839615, -0.0008837522473186255, 0.005062445066869259, -0.01987767405807972, 0.007712201215326786, 0.011337236501276493, -0.01274763885885477, -0.009458700194954872, 0.008810514584183693, -0.012867673300206661, -0.004147183615714312, -0.008126319386065006, -0.0017359955236315727, -0.010821089148521423, 0.013947981409728527, -0.011079162359237671, 0.014908255077898502, 0.00798828061670065, -0.005683622322976589, -0.02244640700519085, -0.0006361815612763166, 0.009968845173716545, 0.020165756344795227, -0.009632749482989311, -0.007322090212255716, -0.02135409601032734, 0.014872245490550995, -0.0026242490857839584, 0.010551011189818382, 0.010893109254539013, -0.0198176559060812, -0.02936038002371788, -0.009590737521648407, -0.007640180643647909, 0.0029198334086686373, -0.022782502695918083, -0.003979135770350695, 0.019601594656705856, -0.01724892295897007, -0.024703051894903183, 0.042492128908634186, 0.010815086774528027, -0.03440181910991669, 0.02434294857084751, -0.014944265596568584, 0.0029633459635078907, 0.009242638014256954, 0.012267502024769783, -0.018557297065854073, 0.008162329904735088, 0.013623888604342937, -0.00486738933250308, 0.02248241752386093, -0.0039551290683448315, -0.015292365103960037, 0.03399370238184929, -0.013995994813740253, -0.015052296221256256, -0.012555583380162716, 0.010484992526471615, 0.0012416044482961297, 0.014656183309853077, 0.005896683316677809, 0.018593307584524155, -0.0258793868124485, -0.01668476313352585, 0.009152612648904324, -0.006289795506745577, 0.013539864681661129, -0.00830036960542202, 0.012807656079530716, -0.002916832687333226, 0.0015634462470188737, -0.035050004720687866, -2.5249393729609437e-05, -0.0010900611523538828, -0.005503571126610041, -0.00599571131169796, -0.0072380658239126205, 0.017464986070990562, -0.006775934249162674, 0.0055575864389538765, -0.012759641744196415, 0.02014174871146679, -0.019769642502069473, 0.0010427976958453655, -0.00021118528093211353, -0.006112745031714439, -0.0004763859906233847, 0.00039161177119240165, 0.004366246517747641, -0.01519633736461401, 0.022542433813214302, -0.010773074813187122, 0.009404684416949749, 0.014500139281153679, -0.0062177749350667, 0.033273495733737946, 0.0124355498701334, 0.01250756997615099, -0.0011703340569511056, 0.013167758472263813, -0.012495567090809345, 0.020045721903443336, 0.015676474198698997, -0.015292365103960037, 0.018209198489785194, 0.004504285752773285, -0.01816118322312832, 0.00032971909968182445, -0.02767990157008171, -0.006835951004177332, 0.002195126609876752, 0.006559872534126043, 0.0016774787800386548, -0.002147112973034382, -0.03517003729939461, 0.03432979807257652, 0.00023387925466522574, -0.00714804045855999, -0.002532722894102335, -0.0054825651459395885, 0.01955358125269413, 0.022530430927872658, 0.024943118914961815, 0.00900857150554657, -0.01828121766448021, -0.0063198041170835495, -0.019709626212716103, -0.006841952912509441, -0.012237492948770523, 0.0073641021735966206, 0.015700481832027435, -0.01083909347653389, 0.01949356496334076, 0.009500712156295776, -0.020213769748806953, 0.0030038573313504457, 0.0020000708755105734, 0.004912402015179396, -0.01908544823527336, 0.010617030784487724, 0.02489510551095009, 0.0015116814756765962, 0.014776217751204967, 0.0036970553919672966, 0.012177475728094578, 0.01500428281724453, 0.004417260643094778, 0.007508143316954374, -0.005773648153990507, 0.025831373408436775, 0.0037030570674687624, 0.0011005641426891088, -0.020297793671488762, -0.0034689900930970907, -0.006289795506745577, -0.020693907514214516, -0.008486422710120678, 0.003369961865246296, 0.013395823538303375, 0.0034659893717616796, -0.01668476313352585, -0.014392107725143433, 0.02179822139441967, -0.011667330749332905, -0.00868447870016098, -0.004600313026458025, 0.0012033435050398111, 0.008528434671461582, 0.03144897520542145, 0.013671902008354664, -0.008774504996836185, 0.003715060418471694, 0.01890539564192295, 0.00756215862929821, 0.004381250590085983, 0.016468700021505356, -0.008930549025535583, 0.0037180613726377487, -0.02808801829814911, -0.011637321673333645, -0.00859445333480835, -0.021282074972987175, -0.009206627495586872, -0.020009711384773254, 0.008156328462064266, -0.012069445103406906, -0.002043583430349827, 0.01642068661749363, 0.007166045252233744, -0.004120176192373037, 0.02885623648762703, -0.002436695620417595, 0.0015469415811821818, -0.0013293795054778457, -0.006151755806058645, -0.007502141408622265, -0.028280071914196014, -0.020597878843545914, 0.004432265181094408, 0.0026212481316179037, -0.0028268068563193083, 0.003276935312896967, -0.015844522044062614, 0.04664531350135803, -0.00816833134740591, 0.0020375815220177174, 0.015208341181278229, 0.00923063512891531, -0.005986708682030439, 0.03447384014725685, 0.011457270011305809, 0.0031989130657166243, -0.005377534776926041, -0.012807656079530716, 0.002105100778862834, 0.004849384073168039, -0.007106028497219086, 0.002729278989136219, 0.003583022626116872, -0.004783365409821272, 0.02103000320494175, 0.010653040371835232, -0.00804829690605402, 0.016576731577515602, 0.01138524990528822, -0.00201957649551332, 0.02499113418161869, -0.001926549943163991, -0.009104599244892597, 0.0029138317331671715, 0.03329750522971153, 0.02463103085756302, 0.0015589449321851134, 0.014428118243813515, 0.007904255762696266, -0.016816800460219383, -0.006103742402046919, -0.010551011189818382, -0.009974847547709942, 0.016816800460219383, -0.02197827398777008, -0.0013796437997370958, -0.013563871383666992, 0.0378107912838459, 0.002828307216987014, 0.017080875113606453, 0.003508001333102584, 0.001916046952828765, -0.002942339750006795, 0.03529007360339165, 0.00890654232352972, 0.0019595592748373747, 0.009560729376971722, -0.014620172791182995, -0.016972845420241356, -0.016024574637413025, -0.0004546297714114189, -0.02489510551095009, 0.011523289605975151, 0.0034989987034350634, -0.017200909554958344, -0.0009025076287798584, 0.012831662781536579, 0.0027232773136347532, 0.006589881144464016, 0.03113688714802265, 0.02256644144654274, 0.014116029255092144, 0.02614346146583557, 0.0024697049520909786, 0.0074361227452754974, -0.017537005245685577, -0.0231546089053154, -0.02602342888712883, 0.0262875035405159, 0.008762501180171967, 0.015784505754709244, -0.0136478953063488, -0.010875103995203972, -0.009014572948217392, 0.005317518021911383, 0.02106601372361183, -0.013395823538303375, 0.01088710781186819, 0.0014434120384976268, 0.009314659051597118, -0.01524435169994831, -0.010563015006482601, -0.003676049178466201, 0.02096998505294323, 0.01662474498152733, 0.007994282059371471, -0.00815032608807087, -0.008096311241388321, 0.01147527527064085, 0.01231551542878151, -0.03281736746430397, -0.010875103995203972, -0.00019599344523157924, -0.006481850054115057, -0.004714345559477806, -0.003784080035984516, -0.0029033287428319454, 0.0027007709722965956, 0.0058546713553369045, -0.009776790626347065, 0.012225490063428879, 0.0068239476531744, 0.00352300563827157, 0.0005664116470143199, 0.014740207232534885, 0.019529573619365692, 0.005437551997601986, 0.00517647759988904, -4.163688572589308e-05, 0.0009647753904573619, -0.001750999828800559, -0.012771645560860634, 0.00372106209397316, 0.009632749482989311, 0.04028349742293358, 0.004108172841370106, -0.0013593879994004965, -0.0009745281422510743, -0.005593596491962671, 0.003021862590685487, 0.018329231068491936, -0.009914830327033997, -0.01314375177025795, -0.014140035957098007, 0.031328942626714706, 0.008246353827416897, -0.011535292491316795, 0.019889676943421364, 0.0005712880520150065, -0.0019115456379950047, 0.016168614849448204, -0.006439838092774153, 0.010515001602470875, 0.0029663466848433018, 0.009548725560307503, 0.010022860951721668, 0.015664471313357353, 0.016828803345561028, -0.031328942626714706, -0.011841380037367344, -0.02460702322423458, -0.01002886239439249, 0.008234350010752678, 0.011439264751970768, 0.0007884750375524163, 0.007994282059371471, -0.010220917873084545, -0.006649897899478674, 0.019037434831261635, -0.020753923803567886, 0.0073641021735966206, -0.015340378507971764, -0.011673332192003727, -0.010418973863124847, -0.002856815466657281, 0.04386052116751671, -0.00393712380900979, -0.006745925638824701, -0.014212056994438171, 0.009914830327033997, 0.009092595428228378, -0.014716200530529022, -0.016288649290800095, -0.01674477942287922, -0.018389249220490456, -0.004624319728463888, 0.00765818590298295, 0.0015079304575920105, 0.008480420336127281, 0.016768787056207657, 6.292421312537044e-05, 0.01480022445321083, -0.01512431725859642, 0.023022571578621864, 0.009314659051597118, 0.0013848952949047089, 0.018089164048433304, -0.004177192226052284, -0.01633666269481182, 0.0036250348202884197, 0.013803940266370773, -0.021834231913089752, 0.001588953542523086, 0.0021201050840318203, 0.012201482430100441, -0.014404111541807652, -0.00021231059508863837, -0.012735635042190552, 0.004495283123105764, -0.007520146667957306, -0.00044637740938924253, 0.021318085491657257, -0.006385822780430317, -0.019301509484648705, -0.011325232684612274, 0.02159416303038597, -0.007274076342582703, 0.000734834757167846, -0.02871219627559185, -0.011721345596015453, 0.001823020400479436, -0.006625891197472811, 0.020609883591532707, 0.01852128654718399, -0.0038230912759900093, 0.0001748936774674803, -0.018449265509843826, 0.007430120836943388, -0.01409202255308628, 0.015436406247317791, 0.007070017978549004, 0.006073733791708946, -0.01615661196410656, -0.004792368039488792, 0.011079162359237671, -0.008636465296149254, -0.03874706104397774, -0.017464986070990562, 0.006541867274791002, -0.020105738192796707, 0.013323803432285786, -0.0024532002862542868, -0.006289795506745577, 0.021005995571613312, -0.021810226142406464, 8.468041778542101e-05, -0.014104025438427925, 0.0010765573242679238, -0.014200053177773952, 0.018389249220490456, -0.013119745068252087, -0.007184050511568785, 0.01321577187627554, 0.01550842635333538, 0.003505000378936529, 0.015616457909345627, -0.007730206474661827, -0.013107741251587868, -0.014080018736422062, 0.002909330418333411, 0.02209830842912197, 0.011013143695890903, -0.015604454092681408, -0.005527577828615904, 0.015820516273379326, 0.0048133740201592445, -0.0014336592284962535, 0.012867673300206661, 0.029168326407670975, 0.002622748725116253, -0.00692597683519125, 0.011451268568634987, -0.013995994813740253, -0.009680762887001038, 0.013191765174269676, 0.011127175763249397, 0.004582307767122984, 0.0010397967416793108, -0.02871219627559185, -0.013539864681661129, 0.0012926189228892326, -0.013527861796319485, -0.010082878172397614, 0.027631886303424835, -0.0101609006524086, -0.01191940251737833, 0.009278648532927036, -0.020801937207579613, 0.010334949940443039, -0.01314375177025795, 0.014044009149074554, -0.006181764416396618, -0.01583251915872097, 0.015556440688669682, -0.010436979122459888, 0.0050804503262043, -0.023886818438768387, -0.0073641021735966206, -0.02655157819390297, -0.010587021708488464, 0.0031989130657166243, 0.013839950785040855, -0.016612742096185684, 0.02936038002371788, 0.012735635042190552, -0.0003839220735244453, 0.0033339515794068575, -0.029912538826465607, 0.005488566588610411, -0.00443826662376523, -0.0046093156561255455, 0.01870133727788925, -0.015400395728647709, -0.03360959514975548, -0.017921116203069687, -0.005059444345533848, -0.02859216183423996, 0.00911060068756342, 0.015856526792049408, -0.03092082589864731, 0.004504285752773285, -1.3175636013329495e-05, 0.01067704800516367, 0.016312656924128532, 0.004948412533849478, -0.016288649290800095, 0.010623032227158546, -0.01751299947500229, -0.004528292454779148, -0.00672792037948966, 0.003390967845916748, 0.01140325516462326, 0.005629607010632753, -0.021078016608953476, -0.0038050860166549683, -0.017537005245685577, -0.010929119773209095, -0.022698478773236275, -0.02232637256383896, -0.004921404644846916, 0.011331234127283096, 0.0028583158273249865, -0.015940550714731216, 0.019157467409968376, 0.007310086395591497, -0.01636067032814026, -0.005917689297348261, -0.0068779634311795235, 0.012651611119508743, -0.0026722627226263285, -0.001507180160842836, 0.002364675048738718, -0.03178507089614868, 0.01692483015358448, 0.0005757893668487668, 0.001937052933499217, -0.019841663539409637, 0.0021801223047077656, -0.00673392228782177, -0.010256927460432053, 0.0229505505412817, 0.011679333634674549, -0.002529722172766924, -0.014440122060477734, 0.006967988796532154, -0.006451841443777084, 0.020045721903443336, -0.00798828061670065, 0.02280651032924652, -0.0003676049236673862, 0.0217382051050663, -0.015016286633908749, -0.003847098210826516, 0.008156328462064266, -0.01074906811118126, 0.02693568915128708, 0.010346953757107258, 0.0019175473134964705, -0.010695052333176136, 0.007370103616267443, 0.0066919103264808655, -0.010563015006482601, 0.0030203622300177813, -7.436497980961576e-05, -0.0048883953131735325, 0.0019790648948401213, 0.00933266431093216, -0.011379248462617397, -0.008216345682740211, -0.011265215463936329, 0.0017269928939640522, -0.011049154214560986, -0.006169761065393686, 0.010977133177220821, -0.0001329754595644772, 0.035050004720687866, 0.0171889066696167, 0.0008800011710263789, 0.006067731883376837, -0.016132604330778122, 0.012831662781536579, -0.023526715114712715, 0.007850240916013718, -5.776649049948901e-05, -0.020225772634148598, -0.009974847547709942, 0.023790791630744934, 0.004924405831843615, -0.02046584151685238, -0.0009085093042813241, 0.002828307216987014, -0.015868529677391052, -0.013395823538303375, 0.01512431725859642, 0.02008173242211342, -0.01700885407626629, 0.025327229872345924, -0.0016504711238667369, -0.011205198243260384, -0.0016729775816202164, 0.0060917385853827, -0.023646749556064606, -0.007448126096278429, 0.020549865439534187, 0.0031058865133672953, 0.01199142262339592, 0.017909111455082893, 0.019385533407330513, -0.015100310556590557, -0.011805369518697262, 0.007028006017208099, 0.023142606019973755, -0.01106115709990263, 0.03027264028787613, 0.015676474198698997, -0.011601311154663563, -0.004021147731691599, -0.009440694935619831, 0.0068659596145153046, -0.01603657752275467, -0.0019340520957484841, -0.0138519536703825, 0.024799078702926636, -0.019217485561966896, 0.010917115956544876, -0.008648468181490898, 0.004759358707815409, 0.0069739907048642635, 0.022758496925234795, -0.002160616684705019, -0.010136893019080162, 0.016444694250822067, -0.013227775692939758, 0.0016384676564484835, 0.003814088646322489, 0.0009430191712453961, 0.019529573619365692, 0.002774291904643178, -0.0049634166061878204, 0.014536148868501186, 0.0006215524044819176, -0.023466698825359344, -0.031208908185362816, 0.011529291048645973, 0.007826234214007854, 0.007934264838695526, -0.024535004049539566, 0.0200217142701149, 0.023166611790657043, 0.011235207319259644, 0.007742209825664759, 0.0007967274286784232, -0.0025462268386036158, -0.005035437177866697, 0.004699341487139463, 0.016060585156083107, 0.019889676943421364, 0.0022566441912204027, -0.020921971648931503, 0.01615661196410656, 0.010370960459113121, -0.0024276929907500744, -0.009248639456927776, -0.007802227046340704, 0.016228633001446724, -0.008486422710120678, -0.008534436114132404, -0.01674477942287922, 0.022398393601179123, -0.013611885719001293, -0.005917689297348261, -0.00974678248167038, 0.0022416398860514164, -0.005128463730216026, 0.00868447870016098, 0.01187138818204403, 0.011547296307981014, 0.011907398700714111, 0.021990276873111725, 0.02590339444577694, 0.0010247925529256463, 0.0050774491392076015, 0.003090882208198309, 0.026359524577856064, 0.0003983637143392116, -0.008486422710120678, -0.008006284944713116, -0.005122462287545204, 0.005800655577331781, -0.006931978743523359, 0.013671902008354664, 0.016876816749572754, 0.0013571373419836164, -0.007814230397343636, -0.0040511563420295715, -0.014308083802461624, 0.0037030570674687624, -0.02345469407737255, -0.0008912543999031186, 0.016288649290800095, 0.0052605015225708485, -0.0008484922000207007, -0.0014126532478258014, 0.007034007925540209, 0.004054157063364983, 0.003949127160012722, 0.03577021136879921, 0.023970842361450195, 0.013599881902337074, 0.018209198489785194, 0.0007877248572185636, 0.01135524082928896, 0.011133178137242794, 0.0063198041170835495, -0.006697911769151688, 0.0030008566100150347, -0.004744354169815779, 0.0036100305151194334, 0.019661612808704376, -0.003014360321685672, -0.017537005245685577, -0.028160037472844124, -0.021762210875749588, -0.051086582243442535, -0.014740207232534885, -0.0007018253090791404, 0.04037952423095703, 0.0017284933710470796, -0.0038410963024944067, 0.0012663614470511675, -0.0069559854455292225, 0.017392965033650398, 0.00744212418794632, 0.01854529418051243, -0.021042006090283394, -0.02442697249352932, -0.015376389026641846, -0.01825721189379692, 0.016048580408096313, 0.010521003045141697, 0.021378101781010628, -0.024114882573485374, 0.009764786809682846, -0.009452697820961475, 0.007388108875602484, 0.0036640458274632692, -0.003195912344381213, 0.0272957906126976, -0.008990566246211529, 0.004966417793184519, 0.006469846703112125, -0.034569866955280304, -0.024174900725483894, 0.0028808224014937878, -0.0200217142701149, 0.006901970133185387, 0.007490138057619333, 0.03848298266530037, 0.007994282059371471, -0.01333580631762743, -0.03843497112393379, -0.009086593985557556, 0.005869675427675247, 0.000802729104179889, -0.007466130889952183, 0.008438408374786377, 0.008420403115451336, 0.010466987267136574, 0.009434692561626434, -0.012483563274145126, -0.0022836518473923206, 0.0217382051050663, 0.02321462705731392, 0.0038410963024944067, -0.030440688133239746, -0.0038831084966659546, -0.01044298056513071, 0.008186336606740952, -0.015256354585289955, 0.001926549943163991, -0.02575935237109661, 0.008570446632802486, -0.007982278242707253, 0.018509283661842346, 0.018005140125751495, -0.004087166860699654, -0.007262072991579771, 0.00011853383330162615, -0.00403915299102664, 0.00290182838216424, 0.019649608060717583, 0.03128092736005783, 0.04486880823969841, -0.027895962819457054, -0.010046867653727531, -0.02578336000442505, 0.0155204301699996, -0.00880451314151287, 0.0008987565524876118, 0.03152099624276161, 0.002001571236178279, 0.0054495553486049175, -0.009992851875722408, -0.000455755100119859, 0.013419830240309238, 0.004930407274514437, -0.009890823625028133, 0.007178049068897963, -0.014464128762483597, -0.004939409904181957, 0.014944265596568584, -0.012339522130787373, -0.007934264838695526, 0.020105738192796707, 0.034041717648506165, -0.0013908969704061747, 0.011667330749332905, 0.02383880503475666, 0.01946955733001232, -0.010725061409175396, 0.008708485402166843, 0.03077678568661213, -0.0041441828943789005, -0.02008173242211342, -0.002219133311882615, -0.017380960285663605, 0.012423546053469181, 0.018185190856456757, -0.0031208908185362816, -0.036610450595617294, -0.0011898396769538522, -0.006439838092774153, 0.025687331333756447, -0.0037750776391476393, 0.014200053177773952, 0.0015154326101765037, 0.014524145983159542, 0.02924034558236599, 0.008084307424724102, -0.005971704609692097, -0.005977706052362919, -0.02454700693488121, 0.017585018649697304, -0.014056012034416199, -0.0004887644900009036, 0.002556729828938842, -0.004132179543375969, 0.018509283661842346, -0.019973700866103172, -0.003601027885451913, -0.01748899184167385, -0.01202143169939518, -0.011943409219384193, -0.021834231913089752, 0.006817946210503578, -0.006295796949416399, -0.0006170511478558183, 0.024090876802802086, 0.006745925638824701, -0.015556440688669682, 0.033777642995119095, -0.013683905825018883, -0.008138323202729225, -0.0008890037424862385, -0.011217202059924603, 0.021582160145044327, 0.020657896995544434, 0.00047976194764487445, -0.022902537137269974, 0.011823374778032303, 0.002336166799068451, 0.02551928348839283, 0.009284649975597858, -0.0042342087253928185, -0.003417975502088666, 0.041075725108385086, 0.01934952288866043, 0.014548152685165405, 0.013611885719001293, -0.0070520127192139626, -0.00403915299102664, 0.004360244609415531, -0.005404542665928602, -0.009572732262313366, 0.015868529677391052, 0.01876135542988777, 0.003676049178466201, -0.007076019886881113, 0.012567587196826935, 0.022914540022611618, 0.015064300037920475, -0.019961697980761528, -0.0027787932194769382, 0.0063017988577485085, -0.016492707654833794, -0.007028006017208099, -0.014428118243813515, -0.0026077444199472666, -0.0038200903218239546, -0.0060407244600355625, -0.004600313026458025, -0.011559299193322659, -0.0396353118121624, 0.018269214779138565, 0.004492282401770353, -0.009464701637625694, -0.012759641744196415, -0.001950556761585176, -0.017885105684399605, 0.008822518400847912, 0.00952471885830164, 0.024318940937519073, -0.011559299193322659, 0.012807656079530716, -0.004522291012108326, 0.008834521286189556, -0.02265046536922455, -0.0003043993783649057, -0.0008724990184418857, -0.006187766324728727, -0.001299370895139873, 0.01262760441750288, 0.025111166760325432, 0.015616457909345627, -0.009866815991699696, 0.005665617063641548, -2.240092544525396e-05, 0.0049994271248579025, -0.023322656750679016, 0.0003527881926856935, -0.01202143169939518, -0.00815032608807087, -0.010190908797085285, -0.010172903537750244, -0.006427834741771221, 0.01783709228038788, 0.01595255360007286, -0.015472416765987873, 0.00496941851451993, -0.005779649596661329, 0.007382106967270374, -0.004588309675455093, -0.005332522094249725, 0.0037000561133027077, -0.017500994727015495, 0.013227775692939758, -0.006763930898159742, 0.007580163888633251, -0.0030113596003502607, -0.002205629600211978, 0.0006980742327868938, -0.001078807981684804, 0.024378959089517593, 0.025447264313697815, -0.002646755427122116, 0.0065838792361319065, 0.009170617908239365, 0.0067699323408305645, 0.010551011189818382, 0.027487846091389656, 0.00233316607773304, 0.002154615009203553, 0.012639608234167099, -0.005485565867275, 0.007832235656678677, 0.014452124945819378, 0.009308656677603722, -0.0049544139765203, -0.004990424495190382, -0.008162329904735088, 0.01118119154125452, -0.022470414638519287, -0.004600313026458025, -0.028015997260808945, 0.01035295519977808, -0.02058587595820427, 0.018629318103194237, 0.002303157467395067, -0.009170617908239365, -0.012891680002212524, 0.004837380722165108, 0.0321451760828495, 0.02424692176282406, -0.010881105437874794, -0.001871034037321806, -0.015208341181278229, -0.016852810978889465, -0.005041439086198807, -0.04443668574094772, 0.00254022516310215, -0.0007652183994650841, 0.0014674188569188118, 0.01110917143523693, 0.007010000757873058, -0.016288649290800095, 0.008756499737501144, -0.02044183574616909, -0.021870242431759834, -0.03257729858160019, 0.008426405489444733, -0.004699341487139463, 0.005809658206999302, 0.005305514205247164, -0.01789710856974125, -0.0006883214809931815, 0.003916117828339338, 0.0008619960281066597, 0.017152896150946617, 0.003342954209074378, -0.0036970553919672966, 0.0009490209049545228, 0.0031869097147136927, 0.006835951004177332, 0.0020765927620232105, 0.008792509324848652, 0.008696482516825199, -0.0027892962098121643, -0.045324936509132385, -0.00787424761801958, 0.030320655554533005, -0.033969696611166, -0.013839950785040855, 0.0124355498701334, 0.0069379801861941814, -0.02475106529891491, 0.0032829369883984327, -0.005422547925263643, -0.004090167582035065, -0.011235207319259644, -0.010370960459113121, -0.01346784457564354, -0.0002578861021902412, 0.0036580441519618034, -0.020213769748806953, -0.019805653020739555, 0.03178507089614868, -0.003369961865246296, 0.012387535534799099, 0.018425259739160538, 0.01706887222826481, -0.005047440528869629, 0.017152896150946617, 0.003015860915184021, -0.007688194513320923, -0.034809935837984085, -0.003895111847668886, 0.01095912791788578, 0.01005887147039175, 0.017645036801695824, -0.012219487689435482, -0.005056443158537149, -0.006175762973725796, -0.009722774848341942, -0.019829660654067993, -0.00010981259401887655, -0.011847381480038166, -0.016912827268242836, -0.02044183574616909, 0.0056686182506382465, -0.0014591665240004659, 0.004579307045787573, -0.027151750400662422, -0.023358667269349098, -0.009104599244892597, -0.006127749104052782, 0.015016286633908749, 0.005752642173320055, 0.008738494478166103, -0.007502141408622265, 0.001414153608493507, 0.006034722551703453, 0.03423377126455307, -0.012045438401401043, -0.0068659596145153046, -0.0062117730267345905, 0.012531576678156853, 0.015904540196061134, -0.0021696193143725395, 0.003090882208198309, -0.01777707412838936, 0.002649756381288171, 0.00900857150554657, -0.011631320230662823, 0.002850813791155815, -0.004816374741494656, 0.014536148868501186, -0.017080875113606453, -0.032769352197647095, 0.021582160145044327, 0.003646040800958872, 0.006151755806058645, 0.011793366633355618, 0.00045537998084910214, 0.006283793598413467, -0.01128322072327137, -0.004075163044035435, 0.009830806404352188, 0.021318085491657257, -0.013287792913615704, 0.004375248681753874, -0.028496133163571358, 0.02058587595820427, 0.012471559457480907, 0.028664181008934975, 0.003646040800958872, 0.008294367231428623, -0.020273786038160324, -0.021426115185022354, -0.0063978261314332485, 0.014908255077898502, 0.004468275234103203, -0.03279336169362068, 0.015460412949323654, -0.011649325489997864, -0.0006999498000368476, -0.014692193828523159, -0.01066504418849945, -0.00024231916177086532, 0.01098913699388504, -0.00981880258768797, -0.025855379179120064, -0.011985421180725098, 0.020393820479512215, -0.0034659893717616796, -0.007982278242707253, -0.00559659767895937, -0.013395823538303375, 0.0027697905898094177, 0.003922119736671448, 0.00861245859414339, -0.01603657752275467, -0.004597312305122614, 0.009398682974278927, 0.00818033516407013, 0.004399255849421024, -0.0201177429407835, 0.01943354681134224, 0.013719916343688965, 0.02129407785832882, 0.000794476771261543, 0.004093168303370476, 0.014860241673886776, 0.014620172791182995, -0.015052296221256256, 0.007352098356932402, -0.0020900967065244913, 0.01481222826987505, 0.0010135392658412457, 0.012963700108230114, -0.0073460969142615795, 0.014224059879779816, -0.03036866895854473, -0.014464128762483597, -0.011103169061243534, 0.008456413634121418, -0.0042372094467282295, -0.002526721218600869, 0.02755986712872982, 0.011463272385299206, 0.00765818590298295, -0.005125463008880615, -0.021630173549056053, -0.004861387424170971, 0.0018590306863188744, 0.009188623167574406, 0.008054299280047417, 0.0057256342843174934, -0.008252355270087719, 0.004159186966717243, 0.01668476313352585, -0.0028448121156543493, 0.013095738366246223, 0.00016101471555884928, 0.011967415921390057, -0.007358100265264511, 0.003952127881348133, -0.006967988796532154, 0.009134607389569283, -0.01088710781186819, -0.04052356630563736, 0.006553870625793934, -0.01627664640545845, -0.003408973105251789, 0.005662616342306137, -0.004414259921759367, 0.007292081601917744, 0.006034722551703453, -0.0012716129422187805, -0.016408683732151985, 0.0029753493145108223, 0.002553728874772787, -0.008720489218831062, -0.0024547006469219923, 0.005602599121630192, -0.006034722551703453, -0.012603597715497017, -0.018497278913855553, 0.0003197787737008184, 0.01574849523603916, -0.024522999301552773, 0.0062177749350667, 0.006883964873850346, 0.012327518314123154, -0.014104025438427925, 0.01864132098853588, -0.0035200046841055155, -0.01032294612377882, -0.009152612648904324, -0.00830036960542202, -0.016912827268242836, -0.015028289519250393, -0.0002946465974673629, 0.0010457985335960984, -0.021162040531635284, 0.024679044261574745, -0.025279216468334198, 0.009236636571586132, -0.0007427119999192655, 0.026599591597914696, 0.03332151100039482, 0.011493280529975891, 0.009350668638944626, -0.016936834901571274, 0.009434692561626434, 0.012975703924894333, 0.011841380037367344, -0.003676049178466201, 0.004309230018407106, 0.012141465209424496, 0.018953410908579826, -0.017561012879014015, 0.0057616448029875755, 0.013611885719001293, 0.005188480950891972, -0.012363528832793236, 0.021342091262340546, 0.023310653865337372, -0.014404111541807652, -0.006703913677483797, 0.016552723944187164, -0.008552441373467445, 0.008348383009433746, -0.007634179200977087, -0.012591593898832798, 0.02614346146583557, 0.024919113144278526, 0.001551442896015942, 0.009452697820961475, 0.003982136491686106, -0.015424402430653572, 0.009290652349591255, 0.0022146322298794985, 0.03065675124526024, 0.005410544574260712, 0.022230345755815506, -0.007640180643647909, 0.005866674706339836, -0.004657329525798559, -0.0005701627233065665, -0.00017198659770656377, -0.0031058865133672953, 0.0031478984747081995, -0.0052785067819058895, 0.003781079314649105, 0.002187624340876937, 0.002798298839479685, 0.0167807899415493, -0.002931836759671569, -0.009308656677603722, -0.032769352197647095, 0.011763357557356358, -0.013827946968376637, 0.0056326077319681644, -0.010761071927845478, 0.008384393528103828, 0.0016174616757780313, -0.004318232648074627, -0.0050924536772072315, 0.010094881057739258, 0.009536721743643284, -0.002543225884437561, -0.011745352298021317, 0.0028027999214828014, 0.0021186047233641148, -0.009176619350910187, 0.03245726600289345, -0.0029378386680036783, 0.0008042295812629163, 0.01642068661749363, -9.078763469005935e-06, 0.002604743465781212, 0.011793366633355618, -0.026455551385879517, 0.0013623888371512294, 0.0021351093892008066, -0.026983702555298805, -0.015160327777266502, -0.019133461639285088, 0.023706767708063126, 0.001974563580006361, 0.006421832833439112, -0.028040003031492233, 0.0262875035405159, 0.011379248462617397, -0.012195480987429619, -0.0200217142701149, -0.019193477928638458], "aaae4fe6-132e-47cf-8ebf-f923ede94684": [-0.03493448346853256, -0.012348873540759087, 0.0041432869620621204, 0.04555995762348175, 0.024490419775247574, -0.007042615674436092, -0.008144036866724491, 0.012251689098775387, -0.0027486933395266533, -0.025540011003613472, -0.011273368261754513, 0.03913284093141556, 0.014448052272200584, -0.006151760462671518, 0.031228525564074516, 0.020706715062260628, -0.021432356908917427, 0.01790780946612358, 0.04776280000805855, -0.004797660280019045, 0.04659659042954445, -0.005779221188277006, -0.07385999709367752, 0.00039278616895899177, 0.0007620861870236695, 0.01460354682058096, 0.005659360438585281, 0.03941791504621506, -0.023389000445604324, -0.019916284829378128, 0.006997263059020042, 0.005652881693094969, 0.016702726483345032, 0.0013743466697633266, 0.0021024183370172977, 0.00117268948815763, 0.01724695786833763, -0.00969250500202179, 0.0017169209895655513, 0.007761778775602579, -0.024697747081518173, 0.00924545805901289, -0.02708199992775917, -0.051235515624284744, -0.03638576716184616, 0.015432852320373058, -0.010942941531538963, 0.016093704849481583, 0.005986547097563744, -0.0016715683741495013, 0.014953410252928734, -0.03791479766368866, -0.00675754202529788, 0.012977330945432186, 0.02824820950627327, -0.009213062934577465, -0.0046939970925450325, 0.020356852561235428, -0.034260671585798264, -0.060435619205236435, -0.005743586923927069, -0.012212815694510937, -0.03729281947016716, -0.007087968289852142, -0.0032848261762410402, -0.003919763024896383, 0.015290315262973309, -0.04589686170220375, -0.02640818990767002, -0.021872926503419876, 0.011759289540350437, 0.007450789213180542, -0.03369052708148956, 0.03677450492978096, 0.049421411007642746, -0.041335683315992355, 0.022468989714980125, 0.010379273444414139, 0.015666093677282333, -0.021924758329987526, 0.033457282930612564, -0.005468231625854969, 0.03996214643120766, 0.006210071034729481, 0.04517121985554695, -0.004178920760750771, 0.033146295696496964, -0.04447149485349655, 0.024723662063479424, -0.015730883926153183, -0.015886379405856133, 0.024529295042157173, -0.0025478459428995848, 0.0018934723921120167, -0.025462262332439423, 0.020667841657996178, -0.0016424130881205201, 0.024166474118828773, 0.04623376950621605, 0.02677101083099842, -0.005915279034525156, -0.024425631389021873, 0.03664492443203926, 0.012420142069458961, 0.023376042023301125, -0.0005701473564840853, 0.024140557274222374, 0.014409178867936134, -0.015329189598560333, 0.04752955585718155, -0.008766015991568565, -0.030606547370553017, 0.0004502868396230042, -0.0016237861709669232, -0.06504862755537033, -0.013994526118040085, -0.007586847059428692, -0.005837531294673681, -0.0046486444771289825, 0.00040047994116321206, 0.01732470467686653, 0.0030661618802696466, 0.008195868693292141, -0.0046972366981208324, -0.004613010678440332, 0.003139049978926778, -0.014538757503032684, -0.0025510855484753847, 0.011001252569258213, -0.015795674175024033, 0.015432852320373058, 0.02646001987159252, -0.021808136254549026, -0.00045190658420324326, -0.023065052926540375, 7.253383955685422e-05, 0.0010163848055526614, 0.01897035725414753, 0.00025753816589713097, 0.008156994357705116, -0.05400850623846054, 0.00964715238660574, 0.013631705194711685, -0.02874061092734337, 0.025954661890864372, -0.004787941928952932, 0.011882388964295387, 0.01716921105980873, 0.01807626336812973, 0.007846005260944366, -0.04480839893221855, -0.04457515850663185, -0.05732572451233864, 0.009038131684064865, 0.04439374804496765, -0.0012585355434566736, -0.04003989323973656, 0.01723399944603443, 0.020719673484563828, 0.05317920073866844, 0.02687467262148857, -0.007515578996390104, -0.003754549892619252, 0.07987245917320251, 0.03887368366122246, 0.002713059075176716, 0.033016715198755264, 0.008131078444421291, -0.03695591539144516, 0.008312488906085491, 0.008934468030929565, -0.040532294660806656, 0.012452536262571812, -0.001477199955843389, -0.025099441409111023, 0.024425631389021873, 0.021561937406659126, 0.07075010240077972, 0.00032030296279117465, 0.016132578253746033, -0.003987791948020458, 0.01939796842634678, -0.030969368293881416, 0.0013314236421138048, 0.030088230967521667, 0.007645157631486654, 0.005847250111401081, 0.041257936507463455, 0.024075768887996674, -0.005957392044365406, 0.012614510022103786, 0.004386247135698795, -0.00450286827981472, 0.01836133748292923, -0.01720808446407318, -0.020421640947461128, -0.008027415722608566, 0.0016148776048794389, -0.00896038394421339, -0.0027794684283435345, 0.00968602579087019, -0.040247220546007156, 0.006686273496598005, 0.007567410357296467, -0.03762972727417946, -0.021432356908917427, -0.031695008277893066, -0.014810873195528984, 0.02788538858294487, -0.021237989887595177, 0.029725410044193268, -0.06629259139299393, 0.013942694291472435, -0.025306768715381622, 0.009582363069057465, -0.00883728452026844, 0.0067964158952236176, 0.02796313725411892, 0.021989546716213226, -0.05271271616220474, -0.010372794233262539, -0.00653077894821763, 0.024386757984757423, -0.004405684303492308, -0.04066187143325806, 0.01418889407068491, -0.010120115242898464, 0.031047115102410316, -0.03965115547180176, 0.006203591823577881, -0.009362079203128815, -0.008714184165000916, -0.00914827361702919, -0.003994271159172058, -0.011785205453634262, 0.04369401931762695, 0.008571647107601166, 0.015562430955469608, 0.0006819092086516321, -0.023466747254133224, 0.007671073544770479, 0.021536020562052727, 0.04309795796871185, -0.0036929999478161335, 0.049680568277835846, -0.002418267074972391, 0.00869474746286869, 0.029854988679289818, 0.04395317658782005, -0.01777823083102703, -0.04480839893221855, -0.00048632596735842526, -0.022196874022483826, -0.012005489319562912, -0.020564178004860878, 0.012569157406687737, -0.0028474973514676094, -0.011584357358515263, 0.00487216841429472, 0.015588346868753433, 0.022624483332037926, 0.025643672794103622, 0.02003290504217148, -0.00883728452026844, 0.016871178522706032, 0.020875168964266777, 0.007671073544770479, 0.0051183681935071945, 0.003615252673625946, -0.012867189012467861, 0.01990332640707493, 0.016417652368545532, -0.015432852320373058, 0.021017704159021378, -0.0020700236782431602, 0.004833294544368982, -0.005092452745884657, -0.01903514750301838, 0.01786893606185913, -0.030736126005649567, -0.03573787212371826, -0.030243726447224617, -0.006997263059020042, -0.022818852216005325, 0.006776978727430105, 0.003446799935773015, 0.007833046838641167, -0.03457166254520416, -0.022261662408709526, 0.025177188217639923, 0.020603051409125328, 0.01929430477321148, 0.04558587446808815, -0.0027341158129274845, 0.008403195068240166, -0.0035083498805761337, -0.01973487250506878, -0.022430116310715675, -0.02616198919713497, 0.030191894620656967, 0.02723749354481697, 0.005701473448425531, -0.015679052099585533, -0.01736357808113098, 0.02811863087117672, -0.020434599369764328, 0.03394968435168266, 0.020810378715395927, -0.010722657665610313, 0.05180566385388374, 0.040247220546007156, -0.039910316467285156, -0.030606547370553017, -0.013093952089548111, 0.010709700174629688, 0.024697747081518173, -0.04944732412695885, -0.01801147311925888, -0.03454574570059776, -0.016158495098352432, 0.007178673520684242, 0.009362079203128815, -0.024905072525143623, 0.01324944756925106, 0.0010244835866615176, -0.03464940935373306, -0.010133073665201664, 0.005241468548774719, 0.022404199466109276, -0.021639684215188026, -0.06380467116832733, -0.01374832633882761, -0.031798671931028366, -0.0031309511978179216, -0.02907751500606537, -0.04327936843037605, -0.031824588775634766, -0.03840719908475876, 0.016236241906881332, -0.029362589120864868, -0.03350911661982536, -0.05328286066651344, 0.01418889407068491, -0.015031157992780209, 0.022002505138516426, 0.02658960036933422, 0.007904315367341042, 0.008746578358113766, -0.007405436597764492, 0.04022130370140076, 0.0007430542609654367, 0.011480694636702538, 0.012096194550395012, 0.007100926246494055, 0.02824820950627327, -0.013217052444815636, 0.0019485433585941792, -0.009452784433960915, -0.004101173486560583, -0.0017233999678865075, 0.016184410080313683, -0.02801496721804142, -0.0001830302644520998, -0.01894444227218628, -0.00973785761743784, -0.016365820541977882, 0.011999010108411312, 0.01469425205141306, -0.012407183647155762, -0.001708822324872017, 0.01947571523487568, 0.009310247376561165, -0.02804088406264782, -0.015057073906064034, -0.0023615763057023287, -0.011947179213166237, 0.008455025963485241, 0.0012755427742376924, -0.03970298916101456, -0.0018853736110031605, -0.005941194482147694, -0.006867683958262205, 0.031176693737506866, 0.03576378896832466, -0.0009232499869540334, 0.007625720929354429, 0.013210573233664036, -0.021419400349259377, -0.005707952659577131, -0.01950163207948208, 0.016443567350506783, -0.007858962751924992, 0.010217299684882164, -0.012718173675239086, -0.012206336483359337, -0.016819346696138382, -0.003945678938180208, -0.04848844185471535, 0.01680639013648033, -0.015990041196346283, -0.00436357082799077, 0.016443567350506783, -0.04309795796871185, -0.010942941531538963, 0.04714082181453705, -0.022533778101205826, -0.00920010544359684, -0.012219294905662537, 0.025371557101607323, -0.015562430955469608, 0.03760381042957306, 0.003919763024896383, -0.03692999854683876, 0.004480191972106695, 0.02648593671619892, 0.011396468617022038, -0.01810217835009098, 0.03431250527501106, 0.001874035457149148, -0.002013332908973098, 0.02804088406264782, 0.01696188375353813, 0.01925543136894703, 0.006310494616627693, 0.02684875763952732, -0.015938209369778633, -0.011318720877170563, -0.01418889407068491, 0.0004124254919588566, 0.0007965055992826819, -0.0037610288709402084, 0.01920359954237938, 0.015419894829392433, 0.012497888877987862, 0.004755547270178795, 0.01779118925333023, 0.02765214629471302, 0.030036399140954018, 0.010197862982749939, -0.00482357619330287, -0.042864713817834854, 0.008940947242081165, 0.0007580368546769023, 0.03462349250912666, 0.01867232657968998, 0.01387790497392416, -0.01886669360101223, 0.015134820714592934, 0.010035889223217964, 0.01746724173426628, 0.0010471598943695426, -0.041413430124521255, -0.008040373213589191, -0.01783006265759468, 0.025203105062246323, 0.0013476210879161954, 0.006585849914699793, 0.013579873368144035, -0.029414420947432518, -0.05380117893218994, -0.008571647107601166, 0.01872415840625763, 0.02594170533120632, 0.0016618500230833888, 0.03612660989165306, 0.011351116001605988, -0.0013225150760263205, -0.01338550541549921, 0.025591840967535973, 0.01846499927341938, 0.014318473637104034, -0.026110157370567322, 0.01750611513853073, 0.015212568454444408, 0.0015419895062223077, -0.012471973896026611, -0.032161492854356766, -0.004165963269770145, 0.01965712569653988, -0.006465989165008068, 0.01771344244480133, -0.04449741169810295, 0.01333367358893156, 0.012446057982742786, -0.0050341421738266945, 0.0069259945303201675, 0.0068612052127718925, -0.014642421156167984, -0.02840370498597622, 0.011027168482542038, -0.03692999854683876, 0.012284084223210812, -0.004603291861712933, 0.00360877369530499, 0.01715625263750553, 0.007826568558812141, -0.0006746203871443868, -0.012141547165811062, -0.0022660118993371725, -0.03444208204746246, 0.02861103042960167, -0.015821589156985283, -0.020382767543196678, -0.020577136427164078, -0.007982063107192516, 0.024827325716614723, 0.010606036521494389, 0.020590094849467278, -0.06655174493789673, -0.03889960050582886, -0.030010484158992767, 0.04439374804496765, -0.05390484258532524, 0.021963631734251976, 0.008273615501821041, 0.03475307300686836, -0.008014458231627941, -0.01837429404258728, 0.021393483504652977, 0.011189142242074013, -0.023505620658397675, -0.023013221099972725, 0.006559934001415968, 0.008856721222400665, -0.03410517796874046, -0.009491657838225365, -0.02692650444805622, -0.02739298902451992, 0.0008365940884687006, -0.04273513704538345, -0.010787446983158588, 0.03470124304294586, -0.00906404759734869, 0.012251689098775387, -0.03521955758333206, -0.014538757503032684, -0.015899335965514183, 0.02625269442796707, 0.03680042177438736, 0.0007867871318012476, -0.04369401931762695, 0.022987304255366325, 0.0035537024959921837, -0.023751821368932724, -0.02001994661986828, 0.02620086260139942, -0.01856866292655468, -0.0033463763538748026, -0.042087242007255554, 0.011513089761137962, -0.007049094419926405, -0.011156747117638588, 0.006854726001620293, 0.00899925734847784, -0.02687467262148857, -0.06323452293872833, 0.008565167896449566, 0.031824588775634766, 0.016404693946242332, -0.024036893621087074, -0.02630452625453472, -0.00464540533721447, -0.0022822092287242413, 0.00482357619330287, -0.00937503669410944, -1.4931948498997372e-05, -0.004114131443202496, -0.007619242183864117, -0.009582363069057465, 0.006333170924335718, 0.0010390611132606864, 0.01771344244480133, 0.049421411007642746, -0.001454523648135364, -0.011869431473314762, 0.00956940557807684, -0.03638576716184616, -0.022261662408709526, -0.041050609201192856, 0.006410918198525906, 0.03856269270181656, 0.0017768512479960918, -0.01748020015656948, 0.02718566358089447, 0.007522057741880417, -0.006106407847255468, -0.04890309274196625, 0.007664594799280167, 0.0005292490241117775, -0.020525304600596428, 0.01960529386997223, 0.020253188908100128, 0.010074762627482414, -0.0011637809220701456, 0.023246463388204575, 0.04768505319952965, -0.016106663271784782, 0.0037221552338451147, 0.022339411079883575, 0.052375808358192444, 0.00684824725612998, 0.03648943081498146, 0.010353357531130314, 0.01881486363708973, -0.02915526181459427, 0.03708549588918686, 0.01400748360902071, 0.025695504620671272, -0.0077553000301122665, 0.001992276171222329, 0.0038776500150561333, 0.008895594626665115, 0.008655873127281666, -0.032757557928562164, 0.029854988679289818, 0.00975081603974104, 0.020214315503835678, 0.014279600232839584, -0.030891621485352516, 0.03591928258538246, 0.00974433682858944, 0.004062300082296133, 0.03765564039349556, -0.0015776236541569233, -0.023453788831830025, -0.003955397289246321, -0.014759042300283909, -0.009122357703745365, 0.002061924897134304, 0.031435851007699966, -0.003683281596750021, -0.010178426280617714, -0.00025672829360701144, -0.004016947466880083, 0.039832569658756256, -0.01867232657968998, -0.00986743625253439, 0.032342903316020966, -0.00730177341029048, -0.011124352924525738, -0.0055233025923371315, -0.03864044323563576, 0.005986547097563744, 0.021950673311948776, -0.01824471540749073, -0.01820584200322628, -0.005367808043956757, -0.0011613513343036175, -0.010204342193901539, 0.00460005272179842, -0.0009175809100270271, 0.0013897342141717672, -0.0028685538563877344, 0.032005999237298965, 0.008532773703336716, 0.01433143112808466, -0.033224042505025864, 0.0026855235919356346, -0.0003348805767018348, 0.00973137840628624, 0.005931476131081581, 0.02631748467683792, -0.01780414767563343, -0.00900573655962944, -0.006550215650349855, 0.032602064311504364, 0.016106663271784782, 0.02853328362107277, -0.0037383525632321835, 0.032213326543569565, 0.006109647452831268, -0.04602644219994545, -0.0026385511737316847, -0.005406681448221207, 0.013450294733047485, 0.022326452657580376, -0.022417157888412476, -0.01710442081093788, 0.009349120780825615, -0.0033463763538748026, 0.01775231584906578, -0.061057597398757935, -0.04247597977519035, 0.0022805894259363413, -0.031073031947016716, -0.01005532592535019, -0.01854274794459343, -0.0026579881086945534, -0.010586599819362164, -0.008629958145320415, -0.034079261124134064, 0.008144036866724491, -0.005811615847051144, 0.0012974091805517673, 0.00121885200496763, -0.001966360490769148, -0.012277605012059212, -0.005912039428949356, -0.01415002066642046, -0.021315736696124077, -0.023220546543598175, -0.01843908429145813, 0.0005251996917650104, -0.021989546716213226, -0.007476705126464367, 0.005345131270587444, -0.015679052099585533, -0.041050609201192856, 0.006381763145327568, 0.009407431818544865, -0.0010876532178372145, 0.004237231332808733, -0.00707501033321023, 0.009180668741464615, 0.011500131338834763, 0.04752955585718155, 0.012517326511442661, -0.000655588461086154, 0.02907751500606537, 0.03366461023688316, 0.031643178313970566, -0.011636189185082912, -0.020849252119660378, -0.008299531415104866, 0.010249694809317589, 0.015588346868753433, 0.008163473568856716, 0.01696188375353813, 0.02915526181459427, -0.004107652697712183, -0.005021184217184782, -0.003929481375962496, 0.022935472428798676, 0.013994526118040085, 0.005409921053797007, 0.025773251429200172, 0.005539499688893557, -0.0016286453464999795, 0.04789237678050995, -0.016067789867520332, -0.00978321023285389, 0.033275872468948364, 0.03379419073462486, -0.013813115656375885, -0.02762623131275177, -0.007995020598173141, 0.030580630525946617, 0.01731174625456333, -0.025021694600582123, -0.01926838979125023, 0.00666035758331418, -0.0008957144455052912, 0.01941092684864998, 0.002692002570256591, -0.002329181646928191, 0.0013921638019382954, 0.011228015646338463, -0.02793722040951252, -0.030969368293881416, 0.05789587274193764, 0.005358089227229357, 0.040998779237270355, -0.02811863087117672, -0.005659360438585281, 0.003537505166605115, -0.012037884443998337, -0.00721106817945838, 0.020045863464474678, 0.01938501000404358, -0.004068778827786446, 0.0069259945303201675, -0.01005532592535019, 0.016948925331234932, 0.012808878906071186, -0.0022352368105202913, 0.021212073042988777, -0.011914784088730812, -0.023855483159422874, -0.010664347559213638, 0.01837429404258728, -0.041620757430791855, -0.009809126146137714, 0.00168938550632447, 0.022054336965084076, 0.006511341780424118, -0.02749665267765522, 0.023337168619036674, -0.012530284002423286, -0.03493448346853256, -0.012459015473723412, 0.04517121985554695, -0.01981262117624283, 0.013813115656375885, 0.010942941531538963, -0.01899627409875393, -0.026239736005663872, -0.03503814712166786, 0.005578373558819294, 0.02713383175432682, -0.00978321023285389, 0.022183915600180626, 0.01709146238863468, 0.052012987434864044, 0.007904315367341042, 0.04737406224012375, -0.0007997450302354991, 0.005996265914291143, -0.032835304737091064, -0.061161261051893234, 0.002721157856285572, -0.022287579253315926, 0.00487540801987052, -0.025203105062246323, 0.022235747426748276, -0.04817745089530945, -0.02861103042960167, 0.0046745603904128075, -0.002907427493482828, 0.006232747342437506, -0.01720808446407318, -0.015627220273017883, -0.01382607314735651, 0.00954996794462204, 0.025229020044207573, -0.02700425311923027, 0.012711694464087486, 0.009031652472913265, 0.016106663271784782, -0.015406936407089233, -0.00675754202529788, -0.01992924138903618, 0.040895115584135056, -0.01855570450425148, 0.05566711351275444, -0.014940452761948109, -0.00992574729025364, 0.01347621064633131, 0.001387304626405239, -0.01741540990769863, 0.015264399349689484, -0.020616009831428528, -0.023298295214772224, -0.025786209851503372, 0.014175936579704285, 0.00477822357788682, 0.013851989060640335, 0.01328184176236391, 0.014992283657193184, 0.01821880042552948, 0.042242735624313354, 0.014551715925335884, -0.00973785761743784, 0.021250946447253227, -0.012070278637111187, 0.011960136704146862, 0.03503814712166786, -0.009446305222809315, 0.021043621003627777, -0.032964885234832764, -0.01728583127260208, 0.010372794233262539, 0.022417157888412476, -0.032679811120033264, -0.007956147193908691, -0.02620086260139942, -0.0017314986325800419, 0.013217052444815636, -0.005753305274993181, -0.00243446440435946, -0.003971594851464033, -0.01961825229227543, 0.01745428331196308, 0.02653776854276657, 0.011603794991970062, 0.002011713106185198, -0.00966011080890894, 0.006381763145327568, -0.019955158233642578, -0.023609284311532974, 0.01776527427136898, 0.02881835773587227, -0.007107404991984367, -0.025488179177045822, -0.0025429867673665285, -0.03913284093141556, 0.01983853615820408, 0.015679052099585533, 0.009984057396650314, 0.0035051105078309774, 0.006443312857300043, 0.013761283829808235, -0.006375283934175968, 0.030476968735456467, 0.029336674138903618, 0.01860753633081913, 0.016650894656777382, 0.02840370498597622, 0.005371047183871269, 0.024490419775247574, -0.029984567314386368, 0.003492152551189065, -0.003978073596954346, -0.042709220200777054, -0.040532294660806656, 0.029751325026154518, -0.03695591539144516, -0.0069713471457362175, 0.01996811479330063, 0.006261902395635843, -0.01921655796468258, -0.003394968342036009, -0.010022931732237339, -0.024697747081518173, 0.011066041886806488, 0.02938850410282612, 0.011539004743099213, 0.007593326270580292, 0.004804139491170645, 0.01859457790851593, 0.016288073733448982, -0.0069065578281879425, -0.031720925122499466, 0.023350125178694725, 0.020564178004860878, -0.02809271588921547, 0.032368820160627365, 0.01434438955038786, -0.01418889407068491, -0.006582610309123993, 0.030995283275842667, -0.012096194550395012, -0.012808878906071186, -0.01847795769572258, 0.013955652713775635, 0.005377526395022869, -0.016650894656777382, -0.02658960036933422, -0.039832569658756256, -0.033068545162677765, 0.012484931387007236, 0.010146031156182289, -0.04605235904455185, 0.024270135909318924, 0.007761778775602579, -0.001924247364513576, -0.010651389136910439, -0.014888620935380459, 0.021082494407892227, -0.0021234750747680664, -0.02011065185070038, -0.007476705126464367, 0.016780473291873932, 0.01943684183061123, -0.022300535812973976, 0.007366563193500042, -0.016689768061041832, -0.00012937647989019752, -0.01724695786833763, 0.012672821059823036, -0.01863345317542553, 0.005769502371549606, 0.015031157992780209, -0.0005883693811483681, 0.007774736732244492, -0.032031916081905365, 0.014318473637104034, -0.004081736784428358, -0.0008738480391912162, -0.01897035725414753, -0.012828315608203411, 0.007087968289852142, -0.01764865219593048, 0.007457268424332142, -0.0017638934077695012, 0.005244707688689232, -0.01755794696509838, -0.009180668741464615, -0.01770048402249813, -0.022183915600180626, -0.01987740956246853, 0.04636334627866745, -0.00929081067442894, 0.012206336483359337, -0.033535029739141464, -0.01374832633882761, -0.004311739467084408, -0.010942941531538963, 0.023609284311532974, -0.01409818883985281, -0.009977579116821289, 0.001898331567645073, -0.01433143112808466, 0.01314578391611576, 0.00726290000602603, 0.0010852236300706863, 0.001337092719040811, 0.025151273235678673, -0.024516336619853973, 0.023181673139333725, -0.042035408318042755, 0.005286821164190769, -0.04364218935370445, -0.03623027354478836, 0.024853242561221123, 0.06287170201539993, -0.02736707404255867, 0.013307757675647736, -0.011849994771182537, 0.022728146985173225, 0.014979326166212559, -0.040817368775606155, 0.008267136290669441, 0.031280357390642166, -0.015536515973508358, 0.021898841485381126, 0.02752256765961647, 0.00964067317545414, -0.03392376750707626, -0.010476457886397839, 0.03923650458455086, -0.02925892546772957, -0.023090967908501625, -0.00864939484745264, -0.003770747222006321, -0.00021947434288449585, 0.02840370498597622, -0.004269626457244158, -0.01442213635891676, -0.007826568558812141, 0.024736620485782623, -0.020965874195098877, -0.02007177844643593, -0.00500822626054287, -0.01725991629064083, 0.009977579116821289, -0.010327441617846489, -0.00505033927038312, -0.02824820950627327, -0.010171947069466114, -0.00220932113006711, 0.030658379197120667, -0.006287818308919668, 0.005277102347463369, 0.004878647159785032, -0.007405436597764492, 0.008409673348069191, -0.007586847059428692, 0.004985549952834845, 0.009070525877177715, 0.022183915600180626, -0.015873420983552933, -0.005487668327987194, 0.0008608901407569647, -0.040765535086393356, 0.0032167972531169653, -0.00881784688681364, 0.0020797420293092728, -0.0069713471457362175, 0.015070031397044659, 0.013800157234072685, 0.001618926995433867, -0.00469075795263052, 0.040869198739528656, -0.014862705022096634, -0.010826321318745613, -0.01764865219593048, -0.007625720929354429, 0.012374789454042912, 0.00942038930952549, 0.0018173446878790855, -0.02687467262148857, 0.01897035725414753, -0.007586847059428692, 0.0011281466577202082, -0.01760977879166603, -0.022663356736302376, -0.011539004743099213, 0.01894444227218628, 0.01768752560019493, -0.014499884098768234, 0.025967620313167572, -0.012640425935387611, -0.010029410012066364, -0.0013905441155657172, -0.015614262782037258, -0.00684824725612998, 0.0035958157386630774, -0.00670571019873023, 0.0022109407000243664, 0.0012010348727926612, -0.011843515560030937, -0.022883642464876175, 0.02780764177441597, 0.003075880231335759, 0.023142799735069275, -0.005128086544573307, 0.021652642637491226, 0.03742239996790886, -0.007794173434376717, 0.0032524315174669027, 0.002677425043657422, -0.022533778101205826, 0.00423075258731842, 0.01942388340830803, 0.01846499927341938, 0.006770499981939793, -0.030502883717417717, 0.02785947360098362, -0.008902073837816715, -0.005733868107199669, 0.013618746772408485, 0.007982063107192516, 0.012504368089139462, 0.0046745603904128075, 0.029699495062232018, -0.012452536262571812, 0.0060124630108475685, -0.03125444054603577, 0.0015865322202444077, -0.023816609755158424, 0.02656368352472782, 0.0010196242947131395, 0.032446566969156265, -0.007709947414696217, -0.010638431645929813, 0.05281637981534004, 0.008526294492185116, -0.0064400737173855305, -0.0034565182868391275, 0.020745588466525078, 0.009763773530721664, -0.005818094592541456, 0.03879593685269356, -0.029362589120864868, 0.00964715238660574, -0.010806883685290813, -0.0013994525652378798, 0.005899081472307444, -0.01707850582897663, 0.032005999237298965, -0.0037610288709402084, 0.013489168137311935, -0.008189389482140541, 0.005231749732047319, -0.023440830409526825, -0.01005532592535019, 0.011759289540350437, -0.01433143112808466, 0.003160106483846903, 0.00693895248696208, 0.014448052272200584, 0.00954996794462204, 0.002442563185468316, 0.0033625736832618713, 0.005584852769970894, 0.00868178904056549, 0.01902218908071518, 0.00220608152449131, -0.003816099837422371, -0.009394473396241665, -0.01886669360101223, 0.005626965779811144, -0.006508102640509605, 0.004930478986352682, 0.015225525945425034, 0.0026628472842276096, -0.01465537864714861, 0.013540999963879585, 0.012076757848262787, 0.01837429404258728, -0.0002970192290376872, 0.014707210473716259, 0.023829568177461624, 0.005494147073477507, 0.002815102692693472, 0.02879244089126587, -0.020006990060210228, -0.014810873195528984, -0.01852978952229023, 0.021484188735485077, 0.013670578598976135, -0.005646402481943369, 0.024075768887996674, 0.022481946274638176, 0.005795418284833431, 0.0011840276420116425, 0.01825767382979393, -0.020253188908100128, 0.015795674175024033, -0.0017444565892219543, 0.01974783092737198, -0.010929984040558338, -0.01744132675230503, -0.005746826063841581, -0.0074183945544064045, 0.0068612052127718925, 0.0029819353949278593, 0.03620435670018196, 0.01994219981133938, 0.024114642292261124, 0.020823337137699127, 0.010832799598574638, -0.01919064112007618, 0.0027276368346065283, 0.004901323467493057, -0.005856968462467194, 0.0028944697696715593, -0.0013257545651867986, -0.004846252501010895, -0.01391677837818861, 0.001898331567645073, -0.010372794233262539, -0.015290315262973309, -0.021082494407892227, 0.007632199674844742, 0.006640920881181955, 0.023427873849868774, -0.016715683043003082, 0.001407551346346736, -0.005105410236865282, 0.031669095158576965, 0.004266386851668358, 0.013994526118040085, -0.007003741804510355, 0.015445810742676258, 0.012044362723827362, 0.020460516214370728, 0.0002909452305175364, 0.03786296769976616, 0.016599062830209732, -0.01378719974309206, 0.01947571523487568, -0.0020716434810310602, 0.033068545162677765, 0.009077005088329315, -0.015264399349689484, -0.02861103042960167, 0.0034500393085181713, -0.02811863087117672, 0.030373305082321167, 0.00437005003914237, -0.0016553710447624326, 0.025164231657981873, -0.008532773703336716, -0.013864947482943535, -0.0055427392944693565, 0.015692010521888733, 0.007988542318344116, -0.014266641810536385, 0.04467882215976715, 0.0014035019557923079, 0.01784302107989788, -0.012795920483767986, -0.004042862914502621, 0.004428360611200333, -0.01867232657968998, -0.012906063348054886, 0.024620000272989273, 0.01935909502208233, -0.002909047296270728, -0.002455520909279585, 0.00879193190485239, 0.00437005003914237, -0.01725991629064083, -0.02708199992775917, 0.01666385307908058, 0.008092205040156841, -0.005694994702935219, -0.0034662368707358837, 0.0036929999478161335, -0.029621746391057968, -0.01963121071457863, -0.0009451164514757693, 0.010139552876353264, -0.02621382102370262, 0.021108409389853477, 0.015381020493805408, -0.010936463251709938, -0.021652642637491226, -0.01882782019674778, -1.5741818060632795e-05, 0.014862705022096634, 0.030114147812128067, -0.03695591539144516, 0.0015298414509743452, 0.031591348350048065, 0.02697833627462387, 0.00919362623244524, 0.021134326234459877, -0.006692752707749605, 0.013171699829399586, -0.03848494589328766, 0.00703613692894578, 0.011675062589347363, 0.0012706834822893143, 0.004360331688076258, 0.012154504656791687, -0.04514530301094055, 0.013942694291472435, 0.023466747254133224, 0.007962626405060291, 0.024918030947446823, -0.012815358117222786, 0.0014707209775224328, -0.00211699609644711, 0.01697484217584133, 0.016547231003642082, 0.021030662581324577, 0.002530028810724616, -0.001009905943647027, 0.00034176447661593556, -0.009847999550402164, -0.01337254699319601, 0.015717925503849983, 0.003777226200327277, -0.01987740956246853, 0.021069535985589027, -0.008746578358113766, 0.00947222113609314, -0.021121367812156677, -0.002131573623046279, 0.039910316467285156, 0.05556345358490944, 0.024620000272989273, -0.014590589329600334, -0.0014958269894123077, -0.00015589967370033264, 0.024373799562454224, 0.0035958157386630774, -0.024814367294311523, -0.0037642684765160084, -0.0003589741827454418, -0.004797660280019045, -0.030269641429185867, 0.02708199992775917, -0.012562679126858711, -0.0037901841569691896, -0.0020311500411480665, 0.005912039428949356, -0.01929430477321148, -0.0077553000301122665, 0.0034824342001229525, -0.00019882270134985447, -0.011662105098366737, -0.03648943081498146, 0.01855570450425148, 0.004862450063228607, -0.006323452573269606, -0.0019274868536740541, -0.023648157715797424, -0.00991278886795044, -0.004603291861712933, 0.03558237850666046, 0.00027980952290818095, -0.0011767387622967362, -0.003030527615919709, -0.02590283192694187, 0.002934963209554553, -0.012692257761955261, -0.0037318735849112272, 0.00022089161211624742, -0.041828084737062454, -0.023479705676436424, -0.01824471540749073, -0.006151760462671518, 0.02630452625453472, -0.0021947433706372976, -0.01834837906062603, 0.010295047424733639, 0.023090967908501625, -0.008189389482140541, 0.0033156012650579214, -0.005322454962879419, 0.01456467341631651, -0.012484931387007236, -0.04369401931762695, -0.00897334236651659, -0.02866286225616932, 0.022157998755574226, -0.006880641914904118, 0.00730177341029048, -0.009038131684064865, -0.010081241838634014, -0.0015282216481864452, 0.003582857782021165, 0.0032734880223870277, 0.020473472774028778, 0.010094200260937214, -0.01696188375353813, 0.033379536122083664, -0.007424873765558004, 0.009355599991977215, 0.0060124630108475685, 0.024412672966718674, -0.01823175698518753, -0.002700101351365447, -0.022313494235277176, -0.002575381426140666, -0.00047255822573788464, 0.02715974673628807, 0.003069401253014803, -0.030528798699378967, 0.006407679058611393, -0.010631952434778214, -0.01722104102373123, 0.005844010505825281, -0.02853328362107277, -0.0028005249332636595, -0.01938501000404358, -0.023803651332855225, 0.021134326234459877, -0.026136072352528572, 0.006229507736861706, 0.009524052031338215, -0.0015889618080109358, 0.010340400040149689, -0.007632199674844742, -0.020641926676034927, 0.00739247864112258, -0.02726341038942337, 0.015730883926153183, -0.007191631477326155, -0.004933718126267195, -0.007820089347660542, -0.004483431577682495, -0.004794421140104532, 0.014538757503032684, -0.015147779136896133, -0.032368820160627365, 0.006453031674027443, 0.007878399454057217, -0.013437336310744286, -0.0054552736692130566, -0.04504164308309555, -0.005296539515256882, -0.031695008277893066, -0.01828358881175518, 0.007820089347660542, -0.00933616328984499, -0.008325447328388691, 0.021043621003627777, -0.042631473392248154, 0.024788452312350273, -0.014992283657193184, 0.01771344244480133, 0.015108904801309109, -0.020253188908100128, -0.006333170924335718, -0.002557564526796341, 0.014875662513077259, 0.002672565635293722, -0.041517093777656555, 0.015199610032141209, 0.0016254058573395014, 0.02708199992775917, -0.02695242129266262, -0.001571954577229917, -0.022754061967134476, 0.004881886765360832, 0.007846005260944366, -0.023246463388204575, 0.0018805144354701042, 0.01424072589725256, -0.03895143046975136, -0.012400705367326736, -0.0006053766119293869, -0.042190905660390854, -0.010800405405461788, 0.023414915427565575, 0.010424626059830189, 0.01889261044561863, 0.030917536467313766, -0.022067293524742126, 0.01689709536731243, -0.006556694861501455, 0.00491752102971077, 0.01843908429145813, -0.020732631906867027, -0.031098946928977966, -0.00016703535220585763, -0.006550215650349855, -0.003770747222006321, -0.014175936579704285, 0.02897385135293007, -0.049058590084314346, 0.007878399454057217, 0.033353619277477264, 0.016650894656777382, -0.010994773358106613, -0.009342641569674015, -0.004214555025100708, 0.00351482885889709, 0.024231262505054474, -0.0029867948032915592, -0.0016124480171129107, -0.024736620485782623, 0.04571545124053955, 0.008215305395424366, -0.001856218441389501, 0.002604536712169647, 0.0016270256601274014, 0.003205459099262953, 0.006491905078291893, 0.014914536848664284, -0.02762623131275177, 0.00694543169811368, 0.016288073733448982, -0.005494147073477507, 0.0010941321961581707, 0.0004510967119131237, 0.008720663376152515, 0.022132083773612976, -0.03978073596954346, -0.01878894679248333, -0.008040373213589191, 0.001293359906412661, -0.032653894275426865, 0.009452784433960915, -0.005445555318146944, -0.011286325752735138, -0.002606156514957547, 0.001848119660280645, -0.00666035758331418, -0.0036929999478161335, -0.0046518840827047825, 0.010223778896033764, 0.05463048443198204, -0.01460354682058096, 0.03392376750707626, -0.032446566969156265, 0.00946574192494154, 0.016184410080313683, -0.03397560119628906, -0.01843908429145813, -0.024153515696525574, -0.00011884819105034694, -0.012582115828990936, -0.01976078934967518, 0.0032540513202548027, -0.016002999618649483, 0.015847504138946533, 0.020006990060210228, -0.022624483332037926, 0.0013945933897048235, -0.006725147366523743, -0.006167958024889231, -0.00328644597902894, -0.011221536435186863, 0.0019615013152360916, 0.011150267906486988, -0.016080746427178383, 0.004804139491170645, -0.01946275681257248, -0.010424626059830189, -0.002534888219088316, -0.02020135708153248, 0.01693596877157688, 0.0026434105820953846, -0.0001734130783006549, -0.004402444697916508, -0.01937205158174038, -0.006067533977329731, -0.024982821196317673, -0.01391677837818861, -0.023220546543598175, -0.02708199992775917, 0.009303768165409565, -0.00694543169811368, -0.01711737923324108, 0.016171451658010483, 0.01759682036936283, 0.021782221272587776, 0.003168205264955759, 0.01783006265759468, 0.011027168482542038, 0.021250946447253227, -0.006540497299283743, 0.003913284279406071, -0.00850685779005289, -0.030839789658784866, 0.005364568438380957, -0.0020295302383601665, 0.024205347523093224, 0.0014358967309817672, 0.008364320732653141, -0.00920010544359684, 0.0005114318919368088, -0.02944033592939377, -0.00918714702129364, 0.01929430477321148, 0.012167463079094887, 0.006465989165008068, -0.006320212967693806, -0.012925500050187111, -0.011616752482950687, -0.008526294492185116, -0.019955158233642578, 0.01967008411884308, 0.013048599474132061, 0.0016748078633099794, -0.008798410184681416, 0.02715974673628807, 0.00854573119431734, 0.021160241216421127, -0.00975081603974104, 0.009038131684064865, 0.010450541973114014, 0.01772639900445938, 0.009316726587712765, 0.02811863087117672, 0.013579873368144035, 0.00918714702129364, -0.011986052617430687, -0.0012974091805517673, -0.005649642087519169, -0.010107157751917839, 0.00043368453043513, 0.031980082392692566, -0.011364073492586613, 0.005746826063841581, -0.01333367358893156, 0.01933317817747593, 0.003910044673830271, -0.0013630085159093142, 0.009770252741873264, 0.011934220790863037, -0.011402946896851063, -0.007515578996390104, -0.004771744832396507, -0.002832919592037797, -0.006193873472511768, 0.0013549098512157798, -0.01880190521478653, -0.011467736214399338, -0.0005782460211776197, -0.011914784088730812, -0.005124847404658794, -0.010308004915714264, 0.004389486741274595, -0.011273368261754513, -0.001971219666302204, 0.00046122007188387215, -0.02956991456449032, 0.00337877101264894, -0.03864044323563576, 0.010061805136501789, -0.0030337669886648655, -0.042890630662441254, -0.00888263713568449, -0.008947426453232765, -0.010217299684882164, 0.004298781510442495, 0.0023550973273813725, 0.0027033407241106033, 0.022779978811740875, -0.025721421465277672, -0.01821880042552948, -0.0012731131864711642, 0.012141547165811062, 0.01907402090728283, 0.02796313725411892, 0.02594170533120632, 0.005173439625650644, 0.0024911551736295223, -0.002905807923525572, 0.004535262938588858, -0.005102171096950769, -0.004985549952834845, -0.008202346973121166, 0.00455146050080657, 0.004198357928544283, -0.032861221581697464, -0.01314578391611576, -0.0024085487239062786, 0.01666385307908058, 0.022663356736302376, 0.005727389361709356, 0.011130831204354763, 0.011422383598983288, 0.005727389361709356, 0.014538757503032684, -0.007107404991984367, 0.008299531415104866, 0.010716178454458714, -0.004156244453042746, 0.00495963403955102, 0.0035504631232470274, 0.011117873713374138, 0.011189142242074013, 0.015873420983552933, 0.0022935473825782537, -0.0002403284452157095, -0.00725642079487443, -0.026110157370567322, 0.006103168241679668, 0.00492076063528657, -0.01917768456041813, -0.010884631425142288, -0.016443567350506783, 0.014992283657193184, 0.008675310760736465, -0.0050114658661186695, -0.020045863464474678, -0.016637936234474182, -0.0036994789261370897, 0.01741540990769863, -0.021471232175827026, -0.008195868693292141, -0.011176183819770813, -0.0031811632215976715, -0.016573147848248482, -0.01860753633081913, 0.024645915254950523, -0.024607041850686073, 0.005889363121241331, 0.04029905050992966, -0.012096194550395012, -0.007995020598173141, -0.009478699415922165, -0.00657289195805788, 0.02861103042960167, -0.006566413212567568, 0.01933317817747593, 0.03361278027296066, 0.007431352511048317, 0.01933317817747593, -0.006177676375955343, 0.02938850410282612, 0.005299778655171394, -0.00846798438578844, -0.022248705849051476, 0.007962626405060291, 0.0023048855364322662, -0.01010067854076624, 0.004327936563640833, -0.0015889618080109358, -0.0011524427682161331, 0.0007296914118342102, -0.025345642119646072, 0.0007580368546769023, -0.007904315367341042, -0.0016545611433684826, -0.006051336880773306, 0.006261902395635843, -0.012990289367735386, 0.008455025963485241, -0.012011968530714512, -0.011428862810134888, 0.015964126214385033, 0.040324967354536057, 0.016612021252512932, 0.0038128604646772146, -0.016288073733448982, 0.013048599474132061, -0.020045863464474678, -0.016171451658010483, 0.004985549952834845, -0.01710442081093788, -0.025008736178278923, 0.012899584136903286, -0.02682284079492092, -0.0021250946447253227, 0.015769757330417633, -0.00892151053994894, 0.015653137117624283, 0.01976078934967518, -0.01805034652352333, 0.007625720929354429, 0.020097695291042328, -0.005396963097155094, -0.015303273685276508, 0.011662105098366737, -0.014746083877980709, 0.015847504138946533, 0.007878399454057217, -0.014590589329600334, -0.029829073697328568, -0.00873362086713314, 0.0032945447601377964, 0.01964416727423668, -0.005808376241475344, -0.012141547165811062, 0.005594571121037006, 0.005247947294265032, -0.0003607963735703379, 0.01828358881175518, 0.0069259945303201675, -0.024179430678486824, -0.021250946447253227, 0.014642421156167984, -0.0055038658902049065, -0.003735113190487027, -0.03635985031723976, -0.01469425205141306, 0.015886379405856133, -0.004434839356690645, -0.012452536262571812, 0.01732470467686653, 0.007133320905268192, -0.03941791504621506, -0.008532773703336716, -0.02713383175432682, 0.012770005501806736, 0.011895347386598587, 0.021924758329987526, -0.02020135708153248, 0.032342903316020966, 0.012368310242891312, 0.004169202409684658, 0.004133568145334721, 0.001124097383581102, -0.01763569377362728, 0.015173694118857384, -0.010236736387014389, -0.02005882002413273, 0.010677305050194263, 0.001311986823566258, -0.0017169209895655513, -0.006074013188481331, 0.0005709571996703744, 0.01992924138903618, -0.01732470467686653, -0.020603051409125328, 0.01402044203132391, 0.001877274946309626, 0.002110517118126154, 0.00956940557807684, 0.013670578598976135, -0.01967008411884308, -0.006874163169413805, -0.02925892546772957, -2.0309980754973367e-05, -0.0073730419389903545, -0.01793372631072998, 0.015925252810120583, 0.02767806313931942, 0.021315736696124077, -0.010463499464094639, 0.005886123515665531, -0.013055078685283661, -0.0031309511978179216, -0.0011184283066540956, 0.001593820983543992, 0.006602047476917505, 0.005179918371140957, -0.003887368366122246, 0.010431105270981789, 0.003845255123451352, -0.004512586630880833, 0.023155758157372475, -0.008014458231627941, 0.00016470698756165802, -0.0006964868516661227, 3.381200440344401e-05, 0.0012585355434566736, -0.00025895543512888253, -0.0078006526455283165, 0.005892602726817131, 0.015303273685276508, -0.013093952089548111, 0.006339649669826031, 0.01732470467686653, -0.00486568920314312, 0.0015209328848868608, -0.00721754739060998, -0.020836293697357178, -0.0025186906568706036, 0.0022854486014693975, 0.005889363121241331, 0.016741599887609482, 0.021302778273820877, 0.016080746427178383, 0.014396220445632935, -0.025578884407877922, 0.03568604215979576, -0.014499884098768234, 0.012685778550803661, 0.005678797140717506, -0.014175936579704285, 0.021600810810923576, -0.00229840655811131, 0.025164231657981873, 0.008318968117237091, -0.013307757675647736, -0.01753203198313713, -0.01766161061823368, 0.029673578217625618, -0.00988687388598919, 0.004532023798674345, 0.012452536262571812, -0.013165220618247986, 0.0020295302383601665, 0.01469425205141306, -0.01391677837818861, 0.005445555318146944, -0.009271373972296715, -0.00022534588060807437, -0.011046605184674263, -0.00048430130118504167, 0.010282089002430439, -0.01830950565636158, 0.006235986948013306, 0.0038290577940642834, -0.012167463079094887, 0.0061452812515199184, 0.00877249427139759, 0.007988542318344116, 0.0031520079355686903, 0.010359836742281914, -0.0033237000461667776, -4.251809059496736e-06, -0.031306274235248566, -0.002484676195308566, 0.00020641520677600056, -0.01840021088719368, 0.005876405164599419, -0.00666035758331418, -0.015964126214385033, -0.0003733493504114449, 0.002902568317949772, -0.005581613164395094, 0.021458273753523827, -0.01698780059814453, -0.0011346256360411644, -0.004706955049186945, 0.000515886174980551, -0.002863694680854678, 0.02608424238860607, 0.006197113078087568, -0.007541494444012642, -0.01005532592535019, -0.00033467813045717776, 0.01389086339622736, -0.007943189702928066, 0.02760031446814537, -0.001196985482238233, -0.010003495030105114, -0.030995283275842667, 0.009161231108009815, 0.005808376241475344, -0.01793372631072998, -0.025760294869542122, -0.023712946102023125, 0.03770747408270836, -0.014461010694503784, 0.015964126214385033, 0.011681541800498962, -0.001316036214120686, 0.0021979829762130976, 0.015471725724637508, -0.004046102520078421, -0.003728634212166071, 0.0031471485272049904, 0.005795418284833431, -0.010359836742281914, -0.012620989233255386, -0.033198125660419464, -0.00031746842432767153, 0.01365762110799551, 0.016145536676049232, 0.010146031156182289, -0.020693758502602577, 0.032161492854356766, -0.007198110222816467, -0.010282089002430439, -0.003582857782021165, -0.0015517078572884202, -0.0050794947892427444, 0.015808630734682083, 0.005549218505620956, 0.005581613164395094, -0.004765265621244907, 0.004768505226820707, 0.004946676082909107, -0.015717925503849983, -0.0003259720397181809, 0.0025138314813375473, -0.011351116001605988, -0.012115631252527237, 0.041309766471385956, 0.013132826425135136, 0.008059810847043991, 0.02651185169816017, 0.014629462733864784, 0.014733126387000084, 0.011493652127683163, 0.016702726483345032, -0.02679692581295967, 0.009258415549993515, 0.01737653650343418, 0.0077553000301122665, 0.003845255123451352, 0.011493652127683163, 0.006339649669826031, -0.03866635635495186, -0.006167958024889231, -0.008007979020476341, -0.016093704849481583, 0.008701225742697716, -0.012050841934978962, 0.001267444109544158, -0.00882432609796524, 0.021665599197149277, 0.004337655380368233, 0.02011065185070038, 0.00243284460157156, 0.02723749354481697, -0.012329436838626862, 0.03599702939391136, -0.0011564920423552394, -0.005756544880568981, 0.00440892344340682, -0.00942038930952549, -0.029906820505857468, -0.02634339965879917, 0.011739852838218212, -0.029777241870760918, 0.01411114726215601, -0.002531648613512516, -0.011163226328790188, 0.011189142242074013, -0.0029446815606206656, -0.014914536848664284, -0.012446057982742786, 0.014577630907297134, 0.00734712602570653, 0.024801410734653473, 0.03921058773994446, 0.006686273496598005, 0.021626725792884827, -0.005840770900249481, -0.014357347041368484, -0.0028442577458918095, 0.020823337137699127, -0.0032167972531169653, 0.01785597950220108, 0.0018691762816160917, -0.0013022683560848236, -0.021393483504652977, 0.011811120435595512, -0.0033820103853940964, 0.0040946947410702705, -0.00432145781815052, 0.019916284829378128, -0.015134820714592934, -0.0047166734002530575, -0.014085231348872185, -0.02713383175432682, 0.024321967735886574, 0.010670825839042664, -0.005912039428949356, -0.0016537512419745326, 0.005549218505620956, 0.004149765707552433, -0.007275857962667942, -0.01415002066642046, 0.004269626457244158, -0.004923999775201082, -0.003978073596954346, -0.01829654723405838, 0.002486295998096466, -0.00951109454035759, 0.0005980878486298025, 0.017130335792899132, 0.01333367358893156, 0.01297085266560316, 0.004943436942994595, 0.001477199955843389, -0.00914827361702919, 0.01666385307908058, 0.025462262332439423, 0.01963121071457863, 0.01992924138903618, -0.008111641742289066, 0.00469075795263052, -0.007897837087512016, -0.015627220273017883, -0.006605286616832018, -0.0034273630008101463, 0.030062315985560417, 0.01420185249298811, -0.003401447320356965, -0.01955346204340458, 0.007651636842638254, 0.002486295998096466, 0.022378284484148026, -0.01903514750301838, -0.003984552342444658, -0.030062315985560417, 0.01956642046570778, -0.00356018147431314, -0.006310494616627693, 0.01777823083102703, 0.025980578735470772, -0.007930231280624866, 0.006268381606787443, 0.00022129654826130718, 0.016326947137713432, 0.006913036573678255, 0.01772639900445938, 0.015264399349689484, 0.011804642155766487, 0.015277357771992683, -0.01859457790851593, -0.0028960893396288157, -0.01771344244480133, -0.0023308012168854475, 0.008228262886404991, 0.0024441827554255724, 0.009847999550402164, 0.020926998928189278, -0.01847795769572258, -0.007761778775602579, 0.003968355245888233, -0.0030596829019486904, 0.0027292566373944283, 0.0004389486857689917, -0.011772247031331062, -0.0014375164173543453, 0.006815852597355843, 0.024114642292261124, 0.002649889327585697, 0.0040525817312300205, -0.01952754706144333, -0.01416297908872366, 0.020382767543196678, -0.014642421156167984, -0.014461010694503784, -0.0028248210437595844, -0.022767020389437675, -0.00234213937073946, 0.00486892880871892, 0.005533020943403244, 0.004817097447812557, 0.004421881400048733, 0.014966367743909359, 0.001687765819951892, -0.0007677552639506757, 0.004191878717392683, 0.013994526118040085, 0.0014018822694197297, 0.012497888877987862, 0.006177676375955343, 0.002934963209554553, -0.004561178851872683, 0.007042615674436092, -0.024905072525143623, 0.013774242252111435, -0.010165467858314514, 0.022430116310715675, -0.020875168964266777, 0.010061805136501789, 0.0005831052549183369, 0.01924247294664383, 0.009128836914896965, 0.015977084636688232, 0.009355599991977215, -0.009433346800506115, -0.029362589120864868, -0.008804889395833015, 0.031902335584163666, -0.01904810406267643, 0.010295047424733639, -0.008247699588537216, -0.010657868348062038, 0.0046097710728645325, -0.008889115415513515, 0.016819346696138382, 0.011487173847854137, -0.01806330494582653, -0.001453713746741414, -0.01913881115615368, 0.011396468617022038, -0.020486431196331978, 0.0016561809461563826, -0.0021461513824760914, -0.0019258670508861542, -0.00670571019873023, -0.011519568040966988, 0.014966367743909359, -0.01941092684864998, -0.029958652332425117, 0.003582857782021165, 0.007833046838641167, -0.021704472601413727, -0.006294297054409981, 0.00671218940988183, 0.0005535450764000416, 0.023583367466926575, -0.007716426160186529, 0.0019517828477546573, -0.008169952780008316, -0.01836133748292923, -0.00883728452026844, -0.007716426160186529, -0.00933616328984499, 0.00927785225212574, 0.020460516214370728, 0.004535262938588858, 0.013009726069867611, 0.011837036348879337, -0.01731174625456333, -0.0051183681935071945, -0.033716440200805664, -0.012381268665194511, 0.010942941531538963, 0.010657868348062038, 0.010061805136501789, -0.0015841026324778795, 6.210678111528978e-05, 0.00955644715577364, -0.014836789108812809, 0.0016602302202954888, 0.009174189530313015, 0.01420185249298811, 0.014746083877980709, 0.01789485290646553, -0.00982208363711834, -0.003326939418911934, -0.0064821867272257805, 0.006151760462671518, 0.002368055284023285, 0.01328184176236391, -0.0036249710246920586, -0.009627715684473515, 0.003705957904458046, 0.0007811180548742414, -0.009977579116821289, 0.02644706331193447, 0.010508852079510689, 0.0037383525632321835, -0.002129953820258379, -0.022831810638308525, 0.015186652541160583, -0.013184657320380211, 0.006631202530115843, -0.020356852561235428, -0.020123610273003578, 0.022417157888412476, -0.006252184044569731, 0.00450934749096632, -0.01707850582897663, -0.024373799562454224, -0.02695242129266262, -0.032990798354148865, 0.0027713696472346783, 0.011700978502631187, -0.005484428722411394, 0.01884077861905098, -0.001995515776798129, -0.01736357808113098, -0.022145042195916176, -0.032446566969156265, 0.010398710146546364, 0.006809373386204243, 0.011785205453634262, -0.009478699415922165, 0.0006078062579035759, -0.005225270986557007, -0.01684526354074478, 0.0007936710608191788, -0.008079247549176216, 0.00220446172170341, 0.014590589329600334, -0.0054811895824968815, 0.0011111394269391894, -1.6032863641157746e-05, 0.002818342065438628, 0.023661116138100624, -0.010936463251709938, -0.006854726001620293, -0.00955644715577364, -0.0022854486014693975, 0.006456270813941956, 0.01328184176236391, -0.013994526118040085, -0.00032637696131132543, -0.0009086723439395428, -0.01947571523487568, 0.0017768512479960918, -0.025293810293078423, -0.003074260428547859, -0.024840284138917923, -0.005085973534733057, 0.005092452745884657, 0.00445751566439867, -0.002580240834504366, -0.01365762110799551, 0.019916284829378128, -0.0004450226842891425, -0.01829654723405838, 0.004470473621040583, -0.014279600232839584, 0.014914536848664284, -0.002364815678447485, -0.006964868400245905, -0.006822331342846155, -0.025825083255767822, 0.03573787212371826, 0.0005555697134695947, -0.001196985482238233, 0.006268381606787443, 0.005471470765769482, 0.006589089520275593, -0.022287579253315926, 0.016301032155752182, -0.002230377634987235, -0.01351508405059576, 0.00247819721698761, 0.007152757607400417, -0.021795177832245827, 0.0024247460532933474, 0.007528536953032017, 0.0012714933836832643, 0.01729878969490528, 0.02626565285027027, 0.010988294146955013, -0.013528041541576385, -0.010295047424733639, -0.003589336760342121, 0.009394473396241665, 0.0016699486877769232, 0.021652642637491226, -0.02827412635087967, 0.006174436770379543, -0.005630205385386944, 0.010709700174629688, 0.00703613692894578, 0.01420185249298811, -0.003615252673625946, 0.013540999963879585, 0.0008244460332207382, -0.022922515869140625, -0.014318473637104034, -0.011182663030922413, 0.01365762110799551, -0.01741540990769863, 0.013761283829808235, 0.029803156852722168, 0.005432597361505032, 0.006148520857095718, 0.000773829291574657, -0.006061055231839418, -0.00126258481759578, -0.015679052099585533, -0.012193378992378712, -0.02652481012046337, -0.006219789385795593, -0.01373536791652441, -0.011072521097958088, 0.0046713207848370075, 0.012692257761955261, 0.021004747599363327, -0.033405452966690063, -0.009990536607801914, -0.0035051105078309774, -0.021289819851517677, -0.025021694600582123, 0.010178426280617714, 0.009847999550402164, -0.008571647107601166, 0.019994031637907028, 0.0019841776229441166, -0.029414420947432518, 0.012588594108819962, -0.004039623774588108, -0.021250946447253227, 0.010955899953842163, -2.051244882750325e-05, 0.00178171053994447, 0.00024903452140279114, 0.012413662858307362, 0.014396220445632935, -0.01903514750301838, -0.011027168482542038, -0.007696989458054304, 0.01893148384988308, 0.0009985677897930145, 0.020875168964266777, 0.0004693187365774065, -0.015057073906064034, -0.022391241043806076, 0.00216072890907526, -0.0009175809100270271, 0.00978968944400549, 0.01324944756925106, -0.002646649954840541, -0.003210318274796009, 0.00010376438876846805, 0.033301789313554764, 0.003838776145130396, -0.0024539013393223286, -0.016262156888842583, 0.019955158233642578, -0.01758386380970478, -0.01961825229227543, 0.021730389446020126, -0.005374286789447069, 0.001311176922172308, -0.006673315539956093, 0.0013557197526097298, 0.014823831617832184, 0.010994773358106613, 0.024749578908085823, 0.008526294492185116, 0.011700978502631187, -0.012348873540759087, -0.01754498854279518, 0.01957937888801098, 0.003932720981538296, 0.00472963135689497, -0.02648593671619892, 0.014266641810536385, 0.031746841967105865, 0.010463499464094639, -0.011616752482950687, -0.02853328362107277, 0.009083484299480915, -0.00877249427139759, 0.0013427617959678173, 0.011240973137319088, 0.010547726415097713, 0.01688413694500923, -0.01906106248497963, 0.005490907933562994, 0.011409426108002663, 0.005124847404658794, -0.011772247031331062, -0.00942686852067709, 0.016676809638738632, -0.003728634212166071, -0.008189389482140541, 0.008286573924124241, 0.0037642684765160084, -0.014642421156167984, 0.015808630734682083, -0.00984152127057314, 0.013540999963879585, -0.010768010281026363, 0.000585534842684865, 0.00702965771779418, -0.012724652886390686, 0.008383757434785366, 0.022546736523509026, 0.01760977879166603, -0.016612021252512932, 0.0010520190699025989, 0.006320212967693806, 0.005115129053592682, 0.016093704849481583, -0.02705608308315277, 0.015251441858708858, 0.006427115760743618, -0.01790780946612358, -0.012316478416323662, 0.0047620260156691074, 0.01750611513853073, 0.011396468617022038, 0.012368310242891312, 0.013864947482943535, -0.006239226087927818, 0.024723662063479424, -0.00897334236651659, 0.024477463215589523, -0.005876405164599419, -0.0027940459549427032, -0.01894444227218628, 0.010411668568849564, -0.0030159498564898968, -0.0013889243127778172, 3.2521278626518324e-05, 0.00955644715577364, 0.00487540801987052, 0.025177188217639923, 0.01902218908071518, -0.004486671183258295, 0.007515578996390104, -0.01387790497392416, -7.147088763304055e-05, 0.0037837051786482334, 0.014266641810536385, 0.004386247135698795, 0.0030888381879776716, 0.016534272581338882, 0.01342437881976366, -0.031487684696912766, -0.009025173261761665, -0.021445315331220627, -0.03350911661982536, 0.0020797420293092728, 0.009025173261761665, 0.03711140900850296, -0.015238484367728233, -0.006595568265765905, -0.015549473464488983, -0.0023340408224612474, 0.003948918543756008, 0.014875662513077259, 0.004000749904662371, -0.01742836833000183, -0.02020135708153248, -0.010897588916122913, -0.024412672966718674, 0.021328695118427277, 0.01735062152147293, 0.00464540533721447, -0.01847795769572258, 0.01840021088719368, -0.004894844722002745, -0.01996811479330063, 0.007243462838232517, -0.0013484308728948236, 0.016715683043003082, -0.007023178972303867, 0.007962626405060291, 0.011694500222802162, -0.01810217835009098, -0.0074378312565386295, 0.002764890668913722, -0.011662105098366737, -0.005303018260747194, 0.00908996257930994, 0.01903514750301838, 0.02817046269774437, -0.006718668155372143, -0.01786893606185913, -0.00864939484745264, 0.0012293802574276924, -0.0002812267921399325, -0.003660605289041996, 0.007282336708158255, 0.009297288954257965, -0.0029851750005036592, -0.002811863087117672, -0.00020469423907343298, 0.0069713471457362175, 0.004169202409684658, -0.005921757780015469, 0.0003494582197163254, -0.02710791490972042, -0.014616505242884159, -0.002290307777002454, 0.008986299857497215, -0.005659360438585281, 0.012569157406687737, -0.02638227306306362, 0.025241978466510773, -0.01311338972300291, 0.013851989060640335, 0.02692650444805622, -0.016508357599377632, -0.016223283484578133, 0.032265156507492065, -0.00973785761743784, -0.0009329683962278068, 0.0008062240085564554, 0.01773935742676258, 0.026136072352528572, -0.012491410598158836, 0.006061055231839418, -0.01801147311925888, 0.012614510022103786, 0.00964715238660574, -0.015886379405856133, 0.025306768715381622, -0.00854573119431734, 0.0024490421637892723, -0.00904460996389389, -0.007049094419926405, 0.003096936736255884, 0.012400705367326736, 0.0074831838719546795, -0.016326947137713432, -0.008351363241672516, 0.0017671328969299793, 0.017130335792899132, -0.00038833191501908004, -0.00734712602570653, -0.0010503993835300207, 0.015795674175024033, 0.009718420915305614, 0.020797420293092728, 0.021069535985589027, 0.021147284656763077, 0.0013743466697633266, 0.00879193190485239, 0.016534272581338882, -0.011577879078686237, -0.0010220538824796677, -0.001452903961762786, -0.02736707404255867, 0.009809126146137714, 0.005299778655171394, -0.00881784688681364, -0.01387790497392416, 0.004198357928544283, -0.0022870684042572975, 0.004522304981946945, -0.004392726346850395, 0.016819346696138382, -0.0004984739935025573, 0.032187409698963165, 0.016534272581338882, 0.009627715684473515, 0.012057321146130562, 0.011364073492586613, -0.01753203198313713, 0.014810873195528984, -0.0010228637838736176, -0.007956147193908691, 0.0036184920463711023, 0.0013249446637928486, 0.011286325752735138, -0.024179430678486824, -0.000772614439483732, -0.01907402090728283, 0.002157489536330104, -0.010444062761962414, -0.01792076788842678, -0.002530028810724616, -0.013450294733047485, 0.023479705676436424, 0.01705258898437023, 0.01832246221601963, -0.01724695786833763, 0.014590589329600334, -0.03332770615816116, -0.0008787072147242725, 0.012238731607794762, -0.005840770900249481, 0.007982063107192516, 0.010748573578894138, -0.007522057741880417, -0.03711140900850296, -0.0005689325626008213, 0.007275857962667942, 0.023000262677669525, 0.00112733687274158, -0.016469484195113182, 0.005468231625854969, 0.01727287285029888, 0.01909993588924408, 0.005824573803693056, 0.004972591996192932, -0.023803651332855225, -0.0016132579185068607, 0.004360331688076258, -0.012802399694919586, 0.003048344748094678, 0.0031050355173647404, 0.004133568145334721, 0.010742094367742538, -0.020732631906867027, 0.032057832926511765, 0.004013707861304283, 0.01333367358893156, -0.01882782019674778, -0.004476952366530895, 0.0015557572478428483, -0.024995777755975723, -0.002904188120737672, 0.002604536712169647, 0.0069519104436039925, -0.00454822089523077, 0.025384515523910522, -0.007476705126464367, -0.012154504656791687, -0.04537854716181755, 0.032757557928562164, 0.007476705126464367, -0.014318473637104034, -0.015782715752720833, 0.02866286225616932, -0.021004747599363327, 0.005928236525505781, 0.010405189357697964, 0.009077005088329315, -0.01990332640707493, -0.0035310261882841587, -0.0045870947651565075, 0.0013273743679746985, -0.02677101083099842, 0.002133193425834179, -0.0023048855364322662, 0.004101173486560583, 0.022145042195916176, 0.005827812943607569, 0.01351508405059576, -0.008429110050201416, -0.009407431818544865, -0.004101173486560583, -0.01315226312726736, 0.0008284953655675054, -0.0073730419389903545, 0.002016572281718254, -0.007632199674844742, 0.020253188908100128, -0.002248194767162204, 0.00689359987154603, -0.012737610377371311, 0.006679794751107693, 0.0026417907793074846, -0.021212073042988777, 0.0010455400915816426, -0.00437005003914237, 0.022481946274638176, -0.011448299512267113, 0.006255423650145531, -0.004078497178852558, -0.023531535640358925, 0.0012982190819457173, 0.020382767543196678, 0.012588594108819962, -0.01900923065841198, 0.011804642155766487, 0.007321210578083992, -0.002810243284329772, 0.032291073352098465, 0.02692650444805622, 0.003210318274796009, 0.029284842312335968, -0.003978073596954346, 0.03446799889206886, -0.0030370065942406654, 0.022728146985173225, 0.0020360092166811228, -0.00924545805901289, -0.005160481669008732, -0.012251689098775387, 0.010295047424733639, 0.00356018147431314, 0.011914784088730812, -0.01884077861905098, -0.00445427605882287, 0.00043975855805911124, 0.015692010521888733, -0.009070525877177715, -0.015730883926153183, -0.02757439948618412, 0.011895347386598587, -0.02850736863911152, 0.008370799943804741, 0.010061805136501789, 0.003589336760342121, -0.02590283192694187, 0.008701225742697716, 0.01854274794459343, 0.009452784433960915, 0.0025948183611035347, -0.003871171036735177, -0.023583367466926575, -0.031772758811712265, -0.0038096210919320583, -0.01829654723405838, -0.012173942290246487, -0.026278609409928322, -0.012860710732638836, 0.0031341908033937216, 0.007295294664800167, -0.02783355675637722, 0.005179918371140957, 0.0015857223188504577, 0.00041789209353737533, -0.02778172679245472, -0.006534018088132143, -0.009938704781234264, -0.0073730419389903545, 0.015523557551205158, -0.01858162134885788, -0.0032977841328829527, -0.010340400040149689, 0.0003958231827709824, 0.033405452966690063, 0.015536515973508358, 0.015173694118857384, 0.004308499861508608, 0.0073341685347259045, 0.005338652525097132, -0.010029410012066364, 0.01908697932958603, -0.008409673348069191, -0.0011419143993407488, -0.012808878906071186, -0.015523557551205158, 0.007379521150141954, -0.023168714717030525, -0.005189636722207069, 0.015432852320373058, 0.010742094367742538, -0.03807029500603676, -0.010612515732645988, -0.0040946947410702705, -0.025436347350478172, 0.006900078617036343, -0.00932320486754179, -0.0026644670870155096, 0.0030791196040809155, 0.016145536676049232, -0.021924758329987526, -0.010178426280617714, 0.021847009658813477, -0.0016075888415798545, 0.004444557707756758, 0.008571647107601166, 0.006679794751107693, -0.0005332983564585447, -7.126841956051067e-05, -0.007709947414696217, -0.02863694727420807, -0.030191894620656967, 0.0015055453404784203, 0.005555697251111269, 0.00982856284826994, 0.012517326511442661, -0.009433346800506115, -0.001757414429448545, 0.006835289299488068, 0.006410918198525906, -0.020447557792067528, 0.01916472613811493, -0.0034111656714230776, 0.002714678877964616, -0.021652642637491226, -0.004817097447812557, -0.0023826328106224537, -0.00491752102971077, -0.005785699933767319, -0.002862074878066778, -0.003417644649744034, -0.01407227385789156, -0.01666385307908058, 0.0073536052368581295, 0.016443567350506783, 0.0007005361840128899, -0.01425368431955576, 0.012880147434771061, 0.02822229452431202, -0.012562679126858711, -0.015147779136896133, -0.00661500496789813, 0.01714329421520233, 0.010865194723010063, -0.01716921105980873, 0.011558442376554012, -0.003926242236047983, 0.021561937406659126, 0.002201222348958254, -0.01328184176236391, 0.008202346973121166, 0.014033399522304535, 0.00031706347363069654, -0.005367808043956757, -0.01957937888801098, 0.007638678885996342, 0.0014618125278502703, -0.008072768338024616, -0.001005046651698649, -0.005652881693094969, -0.012206336483359337, -0.008390236645936966, -0.011927741579711437, -0.003582857782021165, 0.0011411046143621206, 0.002108897315338254, 0.0019420644966885448, -0.02848145179450512, 0.033224042505025864, 0.029647663235664368, 0.033016715198755264, 0.0012868809280917048, 0.010703220963478088, -0.012303520925343037, -0.033301789313554764, -0.01776527427136898, -0.0046292077749967575, 0.016404693946242332, -0.016262156888842583, -0.007794173434376717, -0.041154272854328156, 0.003842015750706196, -0.0054779499769210815, -0.010457021184265614, -0.01852978952229023, 0.0007203779532574117, -0.012782962992787361, -0.01797259971499443, -0.0005827003042213619, 0.02739298902451992, 0.011986052617430687, -0.016158495098352432, -0.0009985677897930145, -0.0009329683962278068, 0.00211699609644711, 0.01010067854076624, -0.0051216077990829945, 0.0007823329069651663, 0.01987740956246853, -0.00837727915495634, 0.014642421156167984, 0.0022935473825782537, -0.007645157631486654, 0.024140557274222374, -0.008474462665617466, -0.00702965771779418, -0.024723662063479424, 0.011169705539941788, 0.022792937234044075, 0.006142042111605406, 0.005639923736453056, -0.008429110050201416, -0.005853728856891394, -0.00478470278903842, -0.010962379164993763, -0.00436357082799077, -0.014085231348872185, 0.005536260548979044, -0.0078006526455283165, -0.016728641465306282, 0.0006381762796081603, 0.00026138502289541066, -0.0032670090440660715, 0.022235747426748276, 0.0014674816047772765, 0.011066041886806488, 0.005688515491783619, -0.010476457886397839, -0.010787446983158588, 0.011409426108002663, 0.00211537629365921, -0.0020279104355722666, 0.0021056579425930977, 0.008629958145320415, -0.00915475282818079, -0.010716178454458714, 0.014279600232839584, 0.01342437881976366, -0.0049887895584106445, 0.005367808043956757, 0.012990289367735386, -0.023479705676436424, 0.0037901841569691896, 0.005831052549183369, -0.0032961643300950527, -0.013398462906479836, -0.01990332640707493, -0.008532773703336716, -0.00909644179046154, -0.002032769611105323, -0.010780968703329563, 0.015562430955469608, 0.008059810847043991, 0.005756544880568981, -0.006647400092333555, -0.01688413694500923, 0.005325694568455219, 0.0064400737173855305, 0.0024215064477175474, -0.0032265158370137215, 0.007709947414696217, -0.002555944724008441, -0.0012326197465881705, -0.006783457938581705, 0.0019760788418352604, 0.00946574192494154, 0.0032670090440660715, -0.011020689271390438, -0.0033237000461667776, 0.016728641465306282, -0.008720663376152515, 0.03604886308312416, 0.004221034236252308, -0.00877249427139759, 0.005296539515256882, -0.012148026376962662, -0.01843908429145813, -0.010314484126865864, 0.0005069776088930666, -0.008079247549176216, -0.016132578253746033, 0.021406441926956177, -0.021354610100388527, 0.00473611056804657, -0.016676809638738632, 0.01797259971499443, 0.041750337928533554, 0.014746083877980709, -0.0016270256601274014, -0.015238484367728233, 0.005270623601973057, -0.005199355073273182, 0.016521316021680832, -0.007651636842638254, 0.006475707981735468, 0.006874163169413805, 0.026097198948264122, 0.006235986948013306, 0.010444062761962414, 0.00986743625253439, 0.01297085266560316, -0.015406936407089233, 0.008655873127281666, 0.03418292477726936, -0.011014210060238838, -0.01850387267768383, 0.015666093677282333, -0.0029220052529126406, 0.007858962751924992, -0.003137430176138878, -0.00039116645348258317, -0.014577630907297134, 0.024632956832647324, 0.004979071207344532, 0.01301620528101921, 0.007580368313938379, -0.00855868961662054, 0.007910794578492641, 0.0050794947892427444, 0.02705608308315277, -0.01919064112007618, -0.0005839150981046259, -0.021380525082349777, 0.021950673311948776, -0.011040125973522663, 0.003612013068050146, 0.015484684146940708, 0.0068612052127718925, -0.015147779136896133, -0.006783457938581705, -0.00024700985522940755, -0.01795964129269123, 0.012484931387007236, 0.026006493717432022, 0.004042862914502621, -0.01781710423529148, -0.020123610273003578, -0.0003229350259061903, -0.0013719170819967985, 0.010476457886397839, 0.002790806582197547, 0.011623231694102287, 0.0024717184714972973, -0.0014755802694708109, -0.0028944697696715593, 0.004810618236660957, -0.00037598141352646053, -0.015627220273017883, -0.016586104407906532, 0.0031698248349130154, 0.006404439453035593, -0.005393723491579294, 0.04452332481741905, -0.002201222348958254, 0.015368063002824783, 0.012795920483767986, -0.003417644649744034, -0.0017007236601784825, 0.005675558000802994, -0.00969898421317339, 0.0012974091805517673, 0.01845204271376133, -0.015873420983552933, -0.008655873127281666, -0.005189636722207069, 0.011992531828582287, -0.00039238124736584723, 0.010755052790045738, -0.02007177844643593, 0.00910292100161314, 0.003923002630472183, 0.00436681043356657, 0.005426118150353432, 0.011746331118047237], "4812c02a-deae-4617-a631-3d1d2681ef6d": [-0.022026436403393745, -0.026788247749209404, -0.00013306747132446617, -0.006745900958776474, -0.0374595932662487, -0.04493197426199913, -0.01745997928082943, 0.01142835058271885, 0.0010607242584228516, -0.0001554838672745973, -0.01584828831255436, -0.007142718881368637, 0.007637214846909046, -0.024859104305505753, -0.011348986998200417, 0.03338152542710304, -0.006819159723818302, 0.025030041113495827, 0.02379685267806053, -0.03211171180009842, 0.060072097927331924, 0.01682507060468197, -0.02918136492371559, -0.00687410356476903, -0.007142718881368637, -0.027935966849327087, -0.020085081458091736, 0.011660335585474968, -0.0519159659743309, -0.007600585464388132, 0.019560061395168304, 0.00644065672531724, -0.014029032550752163, 0.032380323857069016, 0.030475599691271782, -0.007747102528810501, -0.03379666060209274, -0.010408833622932434, -0.017533237114548683, -0.027398737147450447, -0.03069537691771984, 0.042172566056251526, -0.0018543596379458904, -0.020976394414901733, -0.04449242353439331, -0.0028250368777662516, 0.016996007412672043, -0.016361098736524582, 0.029596496373414993, -0.009071863256394863, 0.012313558720052242, -0.020634520798921585, 0.004142166581004858, 0.007863095961511135, 0.04761812463402748, -0.001866569509729743, 0.013296445831656456, 0.027520835399627686, 0.004236792214214802, -0.025884725153446198, 0.02993836998939514, 0.009151226840913296, -0.014578471891582012, 0.00383692211471498, -0.02318636327981949, -0.029254622757434845, -0.0014163339510560036, -0.03037792257964611, -0.05098802223801613, 0.01045156829059124, 0.011062056757509708, 0.031940773129463196, -0.018827473744750023, 0.018803054466843605, 0.03145238384604454, 0.0014293069252744317, 0.021196171641349792, 0.03191635385155678, 0.010726287961006165, 0.0004925881512463093, -0.02661731094121933, 0.017728595063090324, 0.027862709015607834, 0.019584480673074722, 0.041855111718177795, 0.03369897976517677, 0.031086089089512825, -0.032722197473049164, 0.0009889918146654963, -0.03785030543804169, 0.021098492667078972, 0.021635722368955612, -0.027862709015607834, -0.020549053326249123, -0.02703244425356388, -0.025176556780934334, 0.01830245368182659, -0.003781978040933609, 0.0327710397541523, -0.02252703718841076, 0.013345285318791866, 0.013919143937528133, 0.004664134234189987, 0.01995077356696129, -0.0074601732194423676, 0.001680370420217514, -0.00873609445989132, -0.018290244042873383, 0.0016910539707168937, 0.06065816432237625, -0.004252054262906313, -0.023955579847097397, 0.012460076250135899, 0.014456374570727348, -0.03931547701358795, -0.002455691108480096, -0.015457576140761375, 0.03128144517540932, -0.001781100989319384, -0.003118071472272277, 0.014297647401690483, -0.00450235465541482, 0.0038613416254520416, 0.025616109371185303, 0.02349160797894001, -0.001366731827147305, 0.007154928520321846, -0.02295437827706337, 0.00873609445989132, 0.01325981691479683, -0.014468584209680557, -0.01034167967736721, 0.005308200139552355, 0.028644133359193802, -0.003211171133443713, -0.014297647401690483, 0.010207372717559338, 0.08502887934446335, -0.009132912382483482, 0.039266638457775116, -0.03299081325531006, -0.0351153165102005, 0.002782302675768733, 0.0071121943183243275, 0.02756967395544052, 0.00619951356202364, -0.03299081325531006, 0.02058568224310875, -0.010756812058389187, -0.012423446401953697, -0.02522539719939232, -0.0071976627223193645, 0.0032996919471770525, 0.023540448397397995, 0.01228303462266922, 0.022893330082297325, -0.002509108977392316, 0.02015833929181099, 0.01379704661667347, 0.05777665972709656, 0.0067886351607739925, -0.04080507159233093, -0.030548859387636185, -0.0041971104219555855, 0.050694987177848816, 0.029987208545207977, -0.004777074791491032, 0.005051794927567244, -0.019657738506793976, 0.026373116299510002, 0.02566494792699814, 0.0054241931065917015, -0.01930365525186062, 0.00274719949811697, 0.021403737366199493, -0.022465987130999565, 0.036800265312194824, -0.006355188321322203, 0.007447963114827871, 0.02788712829351425, 0.02004845254123211, 0.013967983424663544, -0.010946064256131649, -0.012185356579720974, -0.03931547701358795, 0.045957595109939575, 0.0038033451419323683, 0.008327066898345947, -0.026861507445573807, -0.018803054466843605, -0.03953525424003601, -0.030426761135458946, 0.003168436698615551, 0.017411140725016594, -0.017814062535762787, -0.018155936151742935, 0.04060971364378929, -0.00039185749483294785, 0.0017902583349496126, -0.008162234909832478, -0.01341854315251112, -0.059632543474435806, -0.03103725053369999, 0.03904686123132706, -0.03860731050372124, 0.025494011119008064, -0.0031241762917488813, 0.0018711481243371964, -0.014456374570727348, 0.002513687591999769, 0.00767384422942996, -0.04214814677834511, 0.0022282840218394995, -0.011794643476605415, -0.00778983673080802, -0.0045481412671506405, 0.0015994806308299303, 0.040780652314424515, 0.013333074748516083, -0.04786232113838196, -0.01937691494822502, -0.0028036697767674923, -0.014456374570727348, -0.018717586994171143, -0.02261250466108322, 0.01689833030104637, -0.02069557085633278, 0.0007348758517764509, -0.046616923063993454, 0.0066543277353048325, 0.027301058173179626, 0.011861797422170639, 0.013687158934772015, -0.0009126807563006878, 0.01103763747960329, 0.041635334491729736, -0.041659753769636154, 0.03198961168527603, 0.010762917809188366, -0.01940133422613144, 0.019889725372195244, 0.018717586994171143, 0.002933398587629199, -0.03912012279033661, 0.009413736872375011, -0.023967789486050606, 0.006636013276875019, 0.017191363498568535, 0.05128105729818344, -0.0070023066364228725, -0.015433156862854958, 0.004832018632441759, 0.00965182762593031, -0.014187759719789028, -0.030744215473532677, 0.026788247749209404, 0.01594596728682518, -0.02167235128581524, 0.017423350363969803, 0.019584480673074722, 0.02876623161137104, -0.04622621089220047, 0.029498817399144173, -0.002597629791125655, 0.01352843176573515, -0.02866855263710022, 0.02605566196143627, -0.03540835157036781, -0.03968176990747452, 0.006587174255400896, -0.026592891663312912, -0.0034492616541683674, -0.007185453083366156, 0.010964378714561462, -0.02930346131324768, 0.03489553928375244, 0.006046891678124666, -0.012637117877602577, 0.01405345182865858, 0.012576068751513958, 0.007582270540297031, 0.003916285466402769, 0.022881120443344116, -0.0024968991056084633, -0.0027502519078552723, 0.027935966849327087, -0.010640819557011127, -0.013125509023666382, -0.016641924157738686, 0.033869918435811996, 0.0007795178680680692, -0.022685762494802475, 0.028302259743213654, 0.027398737147450447, 0.01745997928082943, -0.006010262295603752, 0.002510635182261467, -0.024602698162198067, -0.048961199820041656, -0.015970386564731598, 0.011251308023929596, 0.0011812958400696516, 0.02144036628305912, -0.02683708630502224, 0.06046281009912491, -0.006929047871381044, 0.032258227467536926, 0.02573820762336254, 0.021269429475069046, 0.036140937358140945, 0.0396573506295681, -0.03833869472146034, -0.0476425439119339, -0.011232993565499783, 0.019352493807673454, 0.044883135706186295, -0.023149734362959862, -0.028790650889277458, -0.01691053993999958, -0.014004613272845745, 0.010353890247642994, -0.004404676612466574, -0.04752044752240181, 0.01919376663863659, -0.001578113529831171, -0.01756986789405346, 0.05709291249513626, 0.0060987831093370914, 0.0042825788259506226, -0.005357039161026478, -0.0495716892182827, 0.016092484816908836, -0.01949901133775711, -0.006880208849906921, -0.00926111452281475, -0.03719097748398781, -0.012289139442145824, -0.010274526663124561, -0.017093686386942863, -0.023772433400154114, -0.02993836998939514, -0.036385130137205124, -0.025469591841101646, -0.035164155066013336, 0.03526183217763901, 0.01649540662765503, -0.0030402340926229954, -0.011019323021173477, -0.02350381761789322, 0.014273228123784065, 0.0005688992678187788, 0.002135184593498707, 0.0270568635314703, 0.007563956081867218, 0.027130121365189552, -0.014126710593700409, -0.01023789681494236, -0.011654230765998363, 0.016641924157738686, -0.022563666105270386, 0.03816775977611542, -0.03316175192594528, -0.010445463471114635, -0.006599383894354105, -0.020744409412145615, 0.03274662047624588, -0.007844780571758747, -0.030084887519478798, -0.006636013276875019, 0.04835071042180061, -0.012808054685592651, 0.010976588353514671, -0.007466278038918972, -0.02854645624756813, -0.027008023113012314, -0.028595294803380966, 0.007478487677872181, -0.017435560002923012, -0.023674754425883293, 0.023418350145220757, 0.014627311378717422, 0.01228303462266922, 0.02813132293522358, -0.01013411395251751, 0.04329586401581764, 0.03865614905953407, -0.0028067221865057945, -0.003959019668400288, 0.021684560924768448, 0.01811930723488331, -0.02026822790503502, -0.016519825905561447, -0.010762917809188366, -0.02316194400191307, -0.041098106652498245, -0.01971878856420517, 0.012539439834654331, -0.02605566196143627, 0.024968991056084633, -0.011568762362003326, -0.036385130137205124, 0.0023839587811380625, 0.011300147511065006, 0.015225590206682682, 0.025152137503027916, -0.029791852459311485, -0.005497451405972242, 0.00207260949537158, 0.001008069608360529, -0.007936353795230389, 0.031965192407369614, -0.003751453710719943, 0.008339276537299156, 0.002846403978765011, 0.04720299318432808, -0.017716385424137115, 0.027105702087283134, 0.0020237702410668135, -0.007038935553282499, -0.009328268468379974, 0.04607969522476196, 0.06529787927865982, 0.040023643523454666, 0.03489553928375244, -0.01239902712404728, 0.009889918379485607, 0.01594596728682518, 0.036702584475278854, -0.009944862686097622, -0.004789284430444241, -0.014248807914555073, 0.008357591927051544, 0.01308887917548418, 0.006477286107838154, -0.018387923017144203, -0.0274719949811697, -0.015396527014672756, 0.00937100313603878, -0.004719078540802002, -0.03176983818411827, 0.0022633871994912624, -0.019340284168720245, -0.01842455193400383, -0.005671440623700619, 0.03015814535319805, -0.01244786661118269, -0.007240396924316883, -0.004722130950540304, 0.017936160787940025, 0.010817861184477806, -0.01736230030655861, 0.028839491307735443, -0.03941315785050392, 0.037044458091259, -0.0035744118504226208, 0.027716191485524178, 0.015604093670845032, 0.0032142235431820154, 0.008394220843911171, -0.037337493151426315, -0.008479689247906208, -0.003919337876141071, -0.012466181069612503, 0.011629811488091946, -0.0023122262209653854, -0.015188961289823055, 0.02446839027106762, 0.025567270815372467, 0.010732392780482769, 0.019853094592690468, 0.024639327079057693, -0.011397825554013252, -0.023198574781417847, 0.02122059091925621, 0.0012568437959998846, -0.01886410266160965, -0.012563859112560749, 0.018046049401164055, 0.023357301950454712, -0.016519825905561447, 0.026983603835105896, -0.009499205276370049, -0.0022298102267086506, 0.0106041906401515, -0.017850691452622414, -0.003885761136189103, -0.018937362357974052, -0.02156246453523636, 0.010372204706072807, -0.025933563709259033, 0.043369121849536896, 0.011190259829163551, 0.017716385424137115, 0.008919240906834602, 0.01756986789405346, -0.013699368573725224, -0.011300147511065006, -0.0491565577685833, -0.02586030587553978, -0.02835110016167164, 0.02318636327981949, -0.011812957935035229, -0.0325024239718914, 0.03128144517540932, 0.005335671827197075, 0.007502907421439886, -0.03672700375318527, -0.005183049943298101, -0.012295244261622429, 0.01013411395251751, -0.03892476484179497, -0.0026403639931231737, -0.024004418402910233, -0.013369704596698284, 0.002629680559039116, 0.016544247046113014, -0.003087547142058611, -0.010244001634418964, 0.01832687295973301, -0.0305000189691782, 0.002440428826957941, -0.03933989629149437, 0.01991414465010166, 0.02608008123934269, 0.00383692211471498, 0.010854491032660007, -0.02349160797894001, -0.005408930592238903, 0.008613997139036655, -0.017398931086063385, 0.0014651730889454484, -0.02078103832900524, -0.0005452428013086319, 0.002641890197992325, 0.022881120443344116, -0.014859297312796116, -0.0016864752396941185, 0.02100081369280815, 0.01503023412078619, 0.028302259743213654, -0.011171944439411163, 0.021281639114022255, 0.03726423531770706, 0.01093385461717844, -0.02500561997294426, 0.029596496373414993, -0.003409579861909151, 0.030304662883281708, -0.024395132437348366, 0.020341485738754272, -0.041220203042030334, 0.002698360476642847, -0.028082484379410744, -0.006465076468884945, 0.00110345846042037, -0.04752044752240181, 0.025078879669308662, -0.01234408374875784, -0.03240474313497543, -0.03164773806929588, -0.015127912163734436, 0.016568666324019432, 0.0347001813352108, 0.010762917809188366, -0.03325942903757095, -0.0018909890204668045, 0.014944765716791153, -0.00014623114839196205, 0.009761715307831764, 0.03672700375318527, 0.022465987130999565, 0.030744215473532677, 0.05484631285071373, -0.0017582076834514737, 0.009584673680365086, 0.02100081369280815, 0.011452769860625267, -0.015213380567729473, -0.01671518385410309, 0.010488197207450867, 0.02174561098217964, -0.019669948145747185, 0.016214583069086075, 0.01755765825510025, 0.03575022518634796, 0.02015833929181099, 0.01681286096572876, -0.0117396991699934, 0.0067520057782530785, -0.013504011556506157, 0.026470793411135674, 0.024981200695037842, 0.0211351215839386, -0.01534768845885992, -0.028253421187400818, 0.024846892803907394, 0.011080371215939522, 0.00044222280848771334, -0.01572619192302227, 0.0025167400017380714, 0.042953990399837494, -0.00689241848886013, 0.01930365525186062, -0.011971685104072094, -0.03565254434943199, 0.031940773129463196, -0.0024709533900022507, 0.024480599910020828, 0.023210784420371056, 0.027325477451086044, 0.01470057014375925, 0.033357106149196625, 0.013186558149755001, -0.02026822790503502, 0.02661731094121933, -0.019352493807673454, 0.005289885215461254, 0.028204582631587982, -0.019352493807673454, 0.012124307453632355, 0.015372107736766338, -0.03374782204627991, 0.052404358983039856, -0.009346582926809788, -0.006727586500346661, -0.0016757916891947389, -0.012966781854629517, 0.009999806061387062, -0.03308849409222603, 0.0015659037744626403, -0.00630634929984808, 0.015982596203684807, 0.0025548955891281366, -0.021061863750219345, 0.06197682023048401, -0.015811659395694733, -0.004053645767271519, 0.046812281012535095, -0.020756619051098824, -0.036800265312194824, -0.007173243444412947, 0.0060499440878629684, -0.01438311580568552, 0.0067886351607739925, -0.01747218891978264, 0.022136323153972626, -0.03059769794344902, 0.0016010068356990814, 0.006562754511833191, 0.00218402361497283, -0.035066474229097366, 0.01971878856420517, -0.0033180066384375095, 0.013589480891823769, 0.006837474647909403, 0.005683650728315115, 0.011947265826165676, 0.020671149715781212, 0.003910180646926165, 0.012276929803192616, 0.027203381061553955, -0.034333888441324234, 0.016544247046113014, -0.016116904094815254, 0.012276929803192616, 0.053283460438251495, 0.0065566496923565865, -0.03289313614368439, 0.00786920078098774, 0.03951083496212959, 0.0018131517572328448, -0.006715376861393452, -0.002779250266030431, 0.012685957364737988, -0.009706771932542324, -0.022868910804390907, 0.013992402702569962, 0.0029242413584142923, -0.026763828471302986, 0.005363143980503082, -0.00812560599297285, -0.028741812333464622, -0.0426853746175766, 0.0070633552968502045, 0.007374704349786043, -0.023406140506267548, -0.015994805842638016, 0.02380906231701374, 0.00045748503180220723, -0.027447575703263283, -0.0058729019947350025, 0.0070999846793711185, -0.022234002128243446, 0.004697711206972599, -0.00191846105735749, 0.023027637973427773, -0.009798345156013966, 0.006208670791238546, 0.04190395027399063, -0.00883987732231617, -0.034309469163417816, -0.005918688606470823, -0.0018803054699674249, 0.005103686358779669, 0.008656730875372887, 0.03640955314040184, -0.01930365525186062, -0.027178961783647537, 0.017069267109036446, 0.0034858910366892815, 0.013174348510801792, 0.013345285318791866, -0.003559149568900466, 0.027862709015607834, 0.0008325540693476796, 0.0012179251061752439, -0.01992635428905487, 0.015188961289823055, 0.0200362429022789, 0.014956975355744362, 0.004087222274392843, -0.002411430701613426, 0.009554149582982063, -0.05279507115483284, -0.01498139463365078, 0.036580488085746765, 0.026421954855322838, 0.04329586401581764, 0.002052768599241972, -0.0032447478733956814, 0.010750707238912582, 0.0006081994506530464, 0.02339393086731434, -0.009560254402458668, -0.00183146633207798, 0.033112913370132446, -0.009621303528547287, -0.006318558938801289, 0.047789063304662704, -0.03804565966129303, -0.011110896244645119, 0.0071488237008452415, 0.02551843225955963, -0.004340575076639652, 0.02059789188206196, 0.0004555772466119379, 0.020121710374951363, 0.004480987787246704, -0.006031629163771868, -0.012417341582477093, 0.026861507445573807, -0.04395519196987152, 0.04861932620406151, 0.02391895093023777, 0.018387923017144203, -0.0006887076888233423, 0.01820477657020092, 0.0014964606380090117, -0.018192565068602562, 0.01962110958993435, 0.021696772426366806, 0.004630557261407375, -0.006721481680870056, -0.02671498991549015, -0.014480793848633766, 0.006684852298349142, 0.020866507664322853, 0.011788538657128811, 0.03509089723229408, -0.016934959217905998, 0.005274623166769743, 0.01288131345063448, 0.01756986789405346, 0.028277840465307236, 0.017643125727772713, -0.006483390927314758, 0.044028449803590775, 0.00904133915901184, -0.022771231830120087, -0.020951975136995316, -0.029254622757434845, 0.003397370222955942, 0.028717393055558205, -0.028204582631587982, 0.012673746794462204, -0.008168339729309082, 0.016934959217905998, -0.01313771866261959, -0.028033645823597908, -0.004792336840182543, 0.008449165150523186, -2.890282848966308e-05, 0.017215784639120102, 0.0018955676350742579, -0.0242364052683115, -0.023516027256846428, 0.002727358601987362, -0.04427264630794525, -0.0014735673321411014, 0.011226888746023178, -0.01433427631855011, -0.025884725153446198, 0.041537657380104065, 0.03533509001135826, 0.0007875305600464344, -0.013125509023666382, 0.029547657817602158, 0.0023290147073566914, -0.0017688912339508533, 0.007850885391235352, -0.0005189154762774706, -0.0006982465274631977, -0.020878717303276062, 0.004728235770016909, -0.02338172122836113, -0.02532307431101799, -0.04437032341957092, 0.004297840874642134, 0.03973061218857765, -0.05509050935506821, -0.06026745215058327, 0.010805651545524597, 0.011501608416438103, -0.01659308560192585, -0.013613900169730186, -0.01722799427807331, 0.02468816749751568, -0.013345285318791866, 0.009816659614443779, -0.007032830733805895, -0.018986200913786888, -0.014456374570727348, -0.0009874656097963452, 0.026324275881052017, -0.007496802136301994, 0.009548044763505459, -0.025396334007382393, -0.014480793848633766, -0.06769099831581116, 0.002866244874894619, -0.02993836998939514, -0.033576883375644684, 0.00722208246588707, -0.014419745653867722, 0.023088686168193817, -0.014505214057862759, 0.025616109371185303, 0.003391265170648694, 0.01583607867360115, 0.02532307431101799, 0.009328268468379974, -0.04156207665801048, 0.0066909571178257465, 0.0019123561214655638, 0.005708070006221533, 0.02013392001390457, -0.03640955314040184, 0.003035655478015542, 0.013955773785710335, -0.005860692355781794, 0.0037575585301965475, 0.029498817399144173, 0.0023839587811380625, -0.015372107736766338, -0.007802046835422516, 0.017484398558735847, -0.007496802136301994, -0.0010950642172247171, -0.012331873178482056, -0.006251404993236065, -0.004886962939053774, 0.00091573316603899, 0.033552464097738266, -0.015054653398692608, -0.04429706558585167, 3.7797839468112215e-05, 0.0076555293053388596, 0.024321872740983963, -0.04793557897210121, 0.0032355906441807747, -0.007295341230928898, 0.017276832833886147, 0.01959669031202793, -0.00303260306827724, -0.04495639353990555, 0.014480793848633766, 0.03081747330725193, -0.005534080788493156, 0.017179153859615326, 0.026251018047332764, 0.03435830771923065, 0.005445559974759817, 0.00028921905322931707, -0.02178223989903927, -0.00050136394565925, -0.03526183217763901, 0.024932362139225006, -0.012215880677103996, 0.023149734362959862, -0.007118299137800932, 0.010665238834917545, -0.01013411395251751, -0.008632311597466469, 0.018400132656097412, -0.03665374591946602, -0.028082484379410744, 0.021684560924768448, -0.002052768599241972, -0.02725221961736679, -0.01615353301167488, 0.010079169645905495, 0.013967983424663544, -0.007881410419940948, -0.004600033164024353, 0.029254622757434845, 0.006477286107838154, 0.00543640274554491, 0.00431005097925663, 0.00829043798148632, 0.007173243444412947, 0.05396720767021179, -0.007692158687859774, -0.023027637973427773, 0.010274526663124561, -0.010628609918057919, -0.016861699521541595, 0.0005173892714083195, 0.00541808782145381, 0.017093686386942863, 0.024932362139225006, -0.014077871106564999, 0.013210977427661419, -0.0005547816981561482, 0.008394220843911171, -0.005674493499100208, 0.002968501765280962, -0.02004845254123211, -0.017728595063090324, 0.015689561143517494, 0.0026861506048589945, -0.011074266396462917, -0.023540448397397995, -0.009139017201960087, 0.0010301998117938638, -0.0120144197717309, -0.006867998745292425, -0.03123260661959648, 0.005970580503344536, 0.0012034260435029864, -0.005213574040681124, -0.009242800064384937, 0.004719078540802002, 0.027178961783647537, 0.01605585590004921, 0.0015170646365731955, 0.00829043798148632, 0.014517423696815968, -0.020939765498042107, 0.0022343890741467476, -0.02382127195596695, 0.011983894743025303, -0.02456606924533844, -0.007966878823935986, -0.008778829127550125, 0.003495048265904188, 0.006391817703843117, -0.03413853421807289, 0.014529633335769176, 2.6708885343396105e-05, 0.01286910381168127, 0.005561552941799164, -0.02554285153746605, -0.01556746382266283, 0.0192792359739542, 0.028692973777651787, -0.01811930723488331, -0.0016345836920663714, -0.021208381280303, -0.028790650889277458, -0.007173243444412947, 0.025884725153446198, 0.03213613107800484, -0.0027517781127244234, -0.016092484816908836, -0.005265465937554836, 0.02380906231701374, 0.029034847393631935, 0.0032630625646561384, -0.018876314163208008, 0.028619714081287384, 0.013491801917552948, -0.01929144561290741, -0.0454447865486145, 0.022759022191166878, -0.014187759719789028, 0.006727586500346661, -0.017826272174715996, 0.011996104381978512, -0.025591690093278885, -0.04432148486375809, -0.0038094499614089727, -0.006056048907339573, -0.019035041332244873, 0.030670957639813423, -0.031940773129463196, 0.03575022518634796, 0.006867998745292425, 0.02198980562388897, 0.0022008121013641357, 0.023418350145220757, -0.016226792708039284, -0.03472460061311722, 0.02415093593299389, 0.009309954009950161, 0.006996201351284981, -0.0001088387070922181, -0.009761715307831764, -0.044248227030038834, -0.04825303331017494, 0.008955870755016804, -0.0396573506295681, -0.009523625485599041, 0.009175646118819714, -0.01498139463365078, -0.013101089745759964, 0.006236142944544554, 0.013455173000693321, -0.006226985715329647, 0.004621400032192469, -8.694695861777291e-05, -0.019437963142991066, -0.011880111880600452, -0.0020985552109777927, -0.03640955314040184, -0.00021462496079038829, -0.01065913401544094, 0.012661537155508995, -0.031183768063783646, -0.011886216700077057, -0.0059431083500385284, 0.027960386127233505, 0.011983894743025303, 0.01308887917548418, -0.008369801566004753, -0.000984413200058043, -0.003050917759537697, 0.010537036694586277, -0.003577464260160923, 0.0006333821220323443, 0.008943661116063595, 0.007142718881368637, -0.01109868660569191, 0.005656178575009108, -0.0024312715977430344, -0.0020985552109777927, -0.013369704596698284, -0.008595681749284267, 0.016434358432888985, 0.016348889097571373, 0.009761715307831764, 0.0020481899846345186, 0.0026922556571662426, 0.029156943783164024, -0.04212372750043869, 0.012661537155508995, -0.015530834905803204, -0.003256957745179534, -0.0036354607436805964, 0.024309663102030754, 0.024492809548974037, -0.015311058610677719, -0.005927846301347017, 0.008296542800962925, 0.0017093686619773507, -0.0019016725709661841, -0.022710183635354042, -0.03726423531770706, 0.014786038547754288, 0.013992402702569962, -0.014724989421665668, -0.011538238264620304, -0.023149734362959862, -0.011806853115558624, -0.004206267651170492, -0.013858095742762089, -0.001962721347808838, -0.002187076024711132, 0.023552658036351204, -0.017105896025896072, 0.01498139463365078, -0.01864432729780674, 0.005509661510586739, 0.013101089745759964, 0.005518818739801645, -0.0046549770049750805, -0.00829043798148632, 0.003437051782384515, 0.041098106652498245, 0.015237799845635891, 0.02144036628305912, 0.005561552941799164, -0.015689561143517494, 0.010750707238912582, -0.012942362576723099, 0.017276832833886147, 0.00033920284477062523, -0.022905539721250534, 0.008119501173496246, -0.009444261901080608, 0.02426082454621792, 0.05006008222699165, -0.01078123226761818, 0.010323365218937397, 0.013992402702569962, 0.008479689247906208, -0.023772433400154114, -0.001152297598309815, -0.004560351371765137, -0.024163145571947098, 0.026446374133229256, -0.011208574287593365, -0.017008217051625252, -0.024187566712498665, -0.005744699388742447, -0.019035041332244873, 0.031086089089512825, -0.01142224483191967, 0.004542036447674036, 0.016544247046113014, 0.002240493893623352, 0.014126710593700409, 0.005192207172513008, -0.01496918499469757, -0.017301252111792564, -0.03213613107800484, 0.0021290795411914587, 0.002443481469526887, 0.02401662804186344, -0.0035499923396855593, 0.004416886251419783, -0.016666343435645103, -0.011464979499578476, 0.0039315479807555676, -0.0011568762129172683, 0.002475532004609704, -0.020231598988175392, -0.00782036129385233, -0.0342850498855114, 0.007032830733805895, 0.0005463874549604952, 0.036263033747673035, -0.007130509242415428, 0.011727489531040192, 0.015469785779714584, -0.013540641404688358, -0.020500212907791138, -0.00959077849984169, -0.008852087892591953, 0.01239902712404728, -0.0036751425359398127, -0.03477344289422035, -0.015543044544756413, 0.001866569509729743, 0.008711675181984901, -0.0037422962486743927, -0.002475532004609704, 0.02369917556643486, -0.016934959217905998, 0.019999612122774124, -0.022331679239869118, 0.0077043683268129826, 0.016202371567487717, 0.0039437576197087765, 0.007264816667884588, -0.010353890247642994, 0.022588085383176804, -0.030866313725709915, -0.01691053993999958, -0.0015674299793317914, 0.019022829830646515, 0.016043646261096, -0.011220783926546574, -0.017801852896809578, 0.014322066679596901, 0.0011065109865739942, 0.008131710812449455, -0.009248904883861542, -0.0016910539707168937, -0.01250280998647213, 0.023516027256846428, 0.009456471540033817, -0.0018711481243371964, 0.007649424485862255, -0.026861507445573807, 0.00910238828510046, 0.027960386127233505, 0.014309857040643692, -0.005100633949041367, 0.008809353224933147, 0.019877515733242035, 0.011397825554013252, -0.024981200695037842, -0.009328268468379974, -0.036263033747673035, -0.008644521236419678, -0.010329470038414001, -0.0010477514006197453, -0.01374820712953806, 0.019755417481064796, -0.026104500517249107, 0.007814256474375725, 0.010549246333539486, -0.020451374351978302, -0.024700377136468887, 0.009499205276370049, 0.029816271737217903, -0.0026830981951206923, -0.012197566218674183, 0.020817667245864868, -0.012783635407686234, 0.038192179054021835, -0.011239098384976387, 0.030744215473532677, 0.02284448966383934, -0.004093327559530735, -0.005259361118078232, 0.003708719275891781, 0.012191461399197578, -0.007997402921319008, -0.020622311159968376, -0.00444435840472579, 0.01325981691479683, 0.003644617972895503, 0.01811930723488331, 0.02305205725133419, 0.019218187779188156, -0.008412535302340984, -0.028302259743213654, 0.0022084431257098913, 0.01937691494822502, -0.019047250971198082, -0.011855692602694035, 0.010976588353514671, -0.00406890781596303, 0.0004216188099235296, 0.013357494957745075, -0.02661731094121933, 0.01190453115850687, -0.019560061395168304, 0.014187759719789028, 0.014126710593700409, 0.011745803989470005, -0.0027517781127244234, -0.005817958153784275, -0.015042443759739399, -0.0008722358616068959, -0.040121324360370636, 0.03472460061311722, -0.007258711848407984, 0.008766618557274342, -0.030646536499261856, -0.0030738110654056072, 0.005445559974759817, -0.008534633554518223, -0.021586883813142776, -0.018363501876592636, -0.0022008121013641357, -0.006904628127813339, -0.0021962334867566824, -0.022246211767196655, -0.03267335891723633, -0.01444416493177414, -0.025811465457081795, 0.030793054029345512, -0.013809256255626678, 0.001484250882640481, -0.001962721347808838, -0.009694562293589115, -0.0030921257566660643, 0.004154376219958067, 0.025616109371185303, 0.028058065101504326, 0.021159540861845016, -0.03093957155942917, 0.003437051782384515, -0.00020966473675798625, 0.029547657817602158, 0.014847087673842907, -0.01830245368182659, -0.03406527265906334, 0.008498003706336021, -0.0232718326151371, 0.013882515020668507, -0.004154376219958067, -0.01313771866261959, 0.02272239327430725, 0.0007810440729372203, 0.0010027278913185, -0.004795389249920845, 0.014773828908801079, -0.026690570637583733, 0.03943757712841034, -0.015176751650869846, -0.010689659044146538, -0.01755765825510025, 0.013357494957745075, -0.00016549968859180808, 0.015677351504564285, 0.025591690093278885, -0.007154928520321846, -0.002362591680139303, 0.01756986789405346, -0.018168145790696144, 0.020707780495285988, -0.012673746794462204, -0.006776425521820784, 0.02078103832900524, -0.001307972241193056, -0.020182758569717407, -0.006825264543294907, 0.0033668456599116325, -0.00021348029258660972, 0.0105675607919693, 0.008638416416943073, 0.016080275177955627, 0.037337493151426315, -0.00965182762593031, 0.025567270815372467, -0.0005776750040240586, 0.018473390489816666, -0.0003506494977045804, 0.020842086523771286, -0.01471277978271246, -0.02564052864909172, 0.004917487036436796, 0.014529633335769176, -0.004496249835938215, 0.007185453083366156, 0.005314304959028959, -0.028277840465307236, -0.008809353224933147, -0.000924127409234643, -6.391054193954915e-05, 0.012734795920550823, 0.019205978140234947, -0.0006898523424752057, -0.016788441687822342, -0.029230203479528427, 0.017606496810913086, -0.0027609355747699738, -0.011300147511065006, 0.004084169864654541, -0.021599093452095985, -0.011477189138531685, -0.009902128018438816, -0.01777743361890316, -0.020121710374951363, -0.01798499934375286, -0.022710183635354042, 0.016641924157738686, -0.01308887917548418, -0.02727663889527321, -0.038631729781627655, 0.008174444548785686, 0.014126710593700409, 0.021183960139751434, -0.020671149715781212, -0.014248807914555073, 0.01754544861614704, 0.02325962297618389, -0.019682157784700394, 0.031623318791389465, -0.018400132656097412, -0.004661081824451685, 0.022038646042346954, 0.01175190880894661, -0.006953467149287462, -0.0013682580320164561, 0.022331679239869118, 0.01169696543365717, 0.04478545859456062, 0.016129113733768463, -0.015237799845635891, 0.004975483752787113, 0.0022633871994912624, 0.002562526613473892, -0.0009867025073617697, -0.019157137721776962, -0.01234408374875784, 0.023870112374424934, -0.014920346438884735, 0.04017016291618347, 0.012478390708565712, 0.0028555612079799175, 0.0020680308807641268, -0.006062153726816177, -0.03059769794344902, 0.012411236763000488, -0.011159734800457954, -0.005094529129564762, -0.016764022409915924, -0.007295341230928898, 0.013186558149755001, 0.011678650975227356, -0.017838481813669205, -0.008473584428429604, -0.006193408742547035, 0.0009317584917880595, 0.018876314163208008, -0.00905354879796505, 0.028815070167183876, -0.008107291534543037, 0.01681286096572876, -0.002109238877892494, 0.017166944220662117, 0.01158707682043314, -0.004358890000730753, -0.006269719917327166, 0.012759216129779816, -0.06505368649959564, -0.02349160797894001, 0.016507616266608238, -0.005033480003476143, 0.0022176005877554417, 0.0024663747753947973, 0.008015717379748821, -0.009352688677608967, -0.00016111180593725294, -0.017850691452622414, -0.028155742213129997, 0.0046549770049750805, -0.021293848752975464, 0.03372339904308319, -0.009822764433920383, 0.02037811651825905, -0.03264893963932991, 0.02272239327430725, -0.0117396991699934, 0.0032844296656548977, -0.009670142084360123, 0.005753856617957354, -0.006587174255400896, 0.030841894447803497, -0.0005753856967203319, 0.0024327978026121855, 0.00450235465541482, -0.03328384831547737, 0.01352843176573515, 0.036775846034288406, 0.00992044247686863, -0.03018256649374962, 0.011141420342028141, -0.010152428410947323, 0.005457769613713026, 0.048643745481967926, -0.0058698495849967, 0.01952343061566353, -0.02499341033399105, -0.0036873521748930216, 0.0017902583349496126, -0.019645528867840767, -0.02756967395544052, 0.015005814842879772, -0.00616898899897933, -0.019962983205914497, 0.009139017201960087, -0.0031775941606611013, 0.00732586532831192, 0.01556746382266283, 0.004935801960527897, 0.0022313364315778017, 0.018021628260612488, -0.0019413543632254004, 0.015225590206682682, -0.023552658036351204, -0.018180355429649353, -0.02349160797894001, -0.015225590206682682, -0.002699886681511998, 0.015481995418667793, -0.01787511259317398, -0.02488352358341217, -0.03142796456813812, 0.012356293387711048, -0.00020508607849478722, -0.011617601849138737, 0.015775030478835106, -0.014285437762737274, -0.013162137940526009, 0.025127718225121498, 0.012563859112560749, -0.04395519196987152, 0.01992635428905487, 0.02240493893623352, 0.031940773129463196, -0.013284236192703247, 0.037044458091259, 0.030451180413365364, -0.0021077124401926994, 0.012441761791706085, 0.014261018484830856, -0.016996007412672043, 0.0007928723352961242, 0.024199776351451874, -0.034016434103250504, -0.014749408699572086, 0.023003216832876205, -0.0015308005968108773, -0.012368503026664257, -0.0274719949811697, -0.015518625266849995, -0.0024022734723985195, -0.004111642017960548, 0.007667739409953356, 0.0008394221076741815, 0.018693165853619576, -0.017728595063090324, 0.012466181069612503, -0.03543277084827423, -0.010060855187475681, 0.013272026553750038, 0.01180074829608202, 0.017264623194932938, -0.0005116659449413419, -0.009242800064384937, -0.023662544786930084, 0.016641924157738686, 0.002100081415846944, 0.02598240226507187, -0.005021270364522934, 0.013442963361740112, -0.013284236192703247, -0.009493100456893444, 0.0001677890249993652, -0.01811930723488331, 0.008833772502839565, -0.020671149715781212, 0.002457217313349247, -0.016532035544514656, -0.01175190880894661, 0.010482092387974262, -0.009816659614443779, -0.011935056187212467, 0.019120508804917336, 0.001747524132952094, 0.008809353224933147, 0.005381458904594183, -0.0070145162753760815, 0.003998701460659504, -0.008156130090355873, -0.010878910310566425, 0.00938321277499199, -0.013076669536530972, -0.0056683882139623165, -0.02218516170978546, 0.0003701088426169008, -0.0042947884649038315, 0.007698263507336378, -0.014724989421665668, -0.009602989070117474, -0.01471277978271246, -0.023088686168193817, -0.007399124093353748, 0.0010454620933160186, 0.0018787792650982738, 0.001526221982203424, -0.01417555008083582, -0.008266017772257328, -0.00996928196400404, -0.00616898899897933, 0.025371914729475975, -0.001264474936760962, 0.013760417699813843, 0.012527230195701122, -0.00812560599297285, -0.015274429693818092, 0.014126710593700409, 0.021208381280303, -0.002542685717344284, 0.001397256157360971, 0.015054653398692608, -0.04891236126422882, 0.008308752439916134, 0.00689241848886013, 0.011355091817677021, -0.0002884559507947415, -0.008565157651901245, -0.019108299165964127, -0.0007108378922566772, -0.004545088857412338, 0.0016925801755860448, 0.00762500474229455, -0.0057263849303126335, 0.0019367756322026253, 0.0024801106192171574, 0.009212275967001915, -0.03264893963932991, 0.006929047871381044, 0.004844228737056255, 0.0010538562200963497, -0.011190259829163551, 0.006715376861393452, 0.02974301390349865, -0.014199969358742237, -0.015787240117788315, 0.005897321738302708, -0.017044847831130028, 0.006471181288361549, 0.027765030041337013, 0.014285437762737274, 0.024834683164954185, 0.02164793200790882, -0.0037789256311953068, -0.0008226336212828755, -0.01658087596297264, 0.008534633554518223, 0.012844684533774853, -0.002090924186632037, 0.005152525380253792, 0.0028906643856316805, -0.0031318075489252806, -0.00035713595570996404, 0.01034778542816639, 0.009621303528547287, 0.020402535796165466, 0.015140121802687645, -0.017093686386942863, 0.015994805842638016, 0.008400325663387775, -0.009181750938296318, 0.0202438086271286, 0.03426063060760498, -0.01562851294875145, -0.009889918379485607, -0.0024831632617861032, -0.0059919473715126514, 0.001987141091376543, -0.013552851043641567, 0.014248807914555073, 0.0005986605538055301, -0.003379055531695485, 0.00157658732496202, 0.0008172918460331857, -0.0031653842888772488, -0.010494302026927471, -0.00920617114752531, -0.02242935821413994, -0.01255164947360754, 0.004407729022204876, 0.0070145162753760815, -0.0019398281583562493, -0.025127718225121498, -0.011147525161504745, 0.003168436698615551, -4.385503416415304e-05, -0.023222994059324265, -0.011721384711563587, 0.014602892100811005, 0.004407729022204876, 0.017166944220662117, 0.019157137721776962, 0.030011629685759544, -0.011666440404951572, 0.016861699521541595, -0.0034889434464275837, 0.00546692730858922, 0.010549246333539486, -0.013699368573725224, -0.03176983818411827, 0.013381914235651493, 0.020426955074071884, -0.04581107944250107, -0.006672642659395933, 0.0026525738649070263, 0.004249001853168011, 0.016422148793935776, 0.012747005559504032, 0.0018223089864477515, -0.0012652380391955376, -0.015884919092059135, 0.007667739409953356, 0.02178223989903927, 0.006770320702344179, -0.0004094090545549989, -0.0244439709931612, 0.00273346365429461, 0.019987402483820915, 0.014847087673842907, 0.011806853115558624, 0.014639521017670631, -0.017166944220662117, 0.019694367423653603, -0.008369801566004753, -0.020121710374951363, 0.013052250258624554, 0.0026357853785157204, -0.014187759719789028, 0.01255164947360754, 0.01131846196949482, -0.007918039336800575, 0.015897128731012344, -2.3048336515785195e-05, -0.01206936314702034, 0.006929047871381044, -0.01406566146761179, 0.00220691692084074, 0.0034004226326942444, -0.007545641623437405, -0.00947478599846363, -0.014407535083591938, 0.003250852692872286, -0.0026479950174689293, 0.00797298364341259, -0.015543044544756413, 0.002828089287504554, -0.01830245368182659, -0.018607698380947113, 0.010427148081362247, -0.002005455782637, 0.004648872185498476, 0.01260048896074295, -0.03501763567328453, -0.006898523308336735, 0.013540641404688358, 0.0028784547466784716, 0.0270568635314703, 0.01561630330979824, 0.01660529524087906, -0.009169541299343109, -0.026373116299510002, 0.03164773806929588, -0.011275728233158588, 0.001205715350806713, -0.01509128324687481, -0.002649521455168724, 0.004911382216960192, -0.02605566196143627, -0.0011225362541154027, -0.01083617564290762, -0.0045572989620268345, -0.03211171180009842, 0.0003828909248113632, 0.0033515833783894777, -0.0173500906676054, -0.007795942015945911, -0.024712586775422096, -0.010707973502576351, -0.0018436760874465108, 0.009963177144527435, 0.033357106149196625, 0.012276929803192616, -0.02576262690126896, -0.005759961903095245, 0.004590875469148159, -0.0013331548543646932, -0.0070511456578969955, -0.005097581539303064, -0.020072871819138527, 0.007753207813948393, 0.003305796766653657, -0.006983991712331772, -0.004007858689874411, 0.024395132437348366, -0.006312454119324684, 0.021306058391928673, -0.009413736872375011, -0.03350362554192543, -0.004355837590992451, 0.009822764433920383, -0.026251018047332764, -0.018571069464087486, 0.01534768845885992, -0.013565060682594776, -0.014822667464613914, 0.008357591927051544, -0.01195337064564228, -0.009896023198962212, -0.01971878856420517, 0.006800845265388489, 0.02693476527929306, 0.009670142084360123, -0.013589480891823769, -0.028497615829110146, -0.0076555293053388596, -0.006495600566267967, -0.01374820712953806, 0.02102523297071457, -0.016629714518785477, -0.008046242408454418, -0.012893523089587688, -0.01373599749058485, -0.0025640528183430433, -0.0141145009547472, -0.02661731094121933, 0.004361942410469055, 0.0013171295868232846, 0.006342978682368994, 0.013430753722786903, -0.004890015348792076, -0.006178146693855524, -0.007692158687859774, -0.013980193063616753, -0.007368599530309439, 0.0012431078357622027, 0.009822764433920383, 0.009493100456893444, -0.024370713159441948, -0.015481995418667793, 0.014908135868608952, 0.022478196769952774, 0.0013842832995578647, -0.011110896244645119, 0.02350381761789322, 0.009725086390972137, 0.002970027970150113, -0.007185453083366156, -9.276567652705126e-06, 0.014578471891582012, 0.014322066679596901, -0.011397825554013252, 0.0019642477855086327, 0.010128009133040905, -0.01180074829608202, 0.01233797799795866, -0.011220783926546574, -0.014407535083591938, -0.01039051916450262, -0.026812667027115822, -0.018375713378190994, -0.007643319666385651, 0.007173243444412947, -2.6541954866843298e-05, -0.015054653398692608, 0.006416236981749535, -0.010225687175989151, 0.003629355924203992, 0.012624908238649368, -0.007679949048906565, -0.0005257834563963115, -0.010891119949519634, 0.011831272393465042, -0.016397729516029358, -0.002054294804111123, 0.015787240117788315, -0.02866855263710022, 0.004728235770016909, 0.017740804702043533, -0.00011694675777107477, -0.022673552855849266, 0.014016822911798954, 0.03059769794344902, 8.170057117240503e-05, 0.0011263517662882805, 0.007185453083366156, 0.02649521268904209, 0.02037811651825905, -0.008150025270879269, 0.002356486627832055, 0.012698167003691196, -0.019315864890813828, 0.0171425249427557, 0.012252509593963623, 0.008864297531545162, 0.011068161576986313, 0.0020207178313285112, -0.007380809634923935, 0.00767384422942996, -0.03631187230348587, 0.002374801319092512, 0.009847183711826801, -0.0017643126193434, -0.005476084537804127, -0.0032661149743944407, 0.01250280998647213, 0.021061863750219345, -0.007069460116326809, -0.015262220054864883, -0.010695763863623142, -0.009163436479866505, 0.007637214846909046, 0.01800941862165928, -0.004169638268649578, 0.02371138520538807, -0.0009935705456882715, -0.016959378495812416, -0.00590037414804101, 0.00872388482093811, -0.0019642477855086327, 0.011745803989470005, 0.021489204838871956, -0.009584673680365086, 0.03824101760983467, -0.011452769860625267, -0.025933563709259033, 0.01886410266160965, 0.0054241931065917015, -0.006898523308336735, -0.01034167967736721, 0.014016822911798954, 0.011495503596961498, -0.01190453115850687, 0.017862901091575623, -9.433959348825738e-05, 0.0011362722143530846, 0.01158707682043314, 0.0018650433048605919, 0.015469785779714584, -0.0003123031638097018, 0.02727663889527321, 0.004270369186997414, 0.012783635407686234, -0.022539246827363968, 0.0060499440878629684, 0.021098492667078972, -0.002876928308978677, -0.007228187285363674, 0.02412651665508747, 0.006636013276875019, -0.009316058829426765, -0.006935152690857649, 0.006117097567766905, 0.005937003530561924, -0.02123280055820942, -0.019572271034121513, -0.0031653842888772488, -0.001269816653802991, -0.007771522272378206, 0.03369897976517677, -0.0025518431793898344, -0.0011912162881344557, 0.004087222274392843, -0.0077043683268129826, 0.015555254183709621, 0.004835071042180061, 0.022881120443344116, -0.016007015481591225, -0.013113299384713173, -0.014810457825660706, 0.016654133796691895, 0.010469882749021053, -0.008339276537299156, 0.007142718881368637, -0.02187991887331009, 0.007234292104840279, -0.003275272436439991, 0.006046891678124666, 0.020866507664322853, 0.003156227059662342, -0.005885112099349499, 0.01586049795150757, 0.005827115382999182, -0.0024968991056084633, -0.0075700609013438225, -0.013174348510801792, -0.00436804722994566, -0.011013218201696873, 0.014834877103567123, 0.007295341230928898, 0.015775030478835106, 0.02112291194498539, -0.0058454303070902824, -0.004993798211216927, 0.05020659789443016, -0.0001450864801881835, -0.017154734581708908, 0.009438157081604004, 0.018693165853619576, 0.007600585464388132, 0.01076902262866497, 0.010463777929544449, -0.005274623166769743, 0.020341485738754272, -0.0040902746841311455, -0.007393019273877144, 0.02844877727329731, -0.020060662180185318, 0.0020924503915011883, -0.024370713159441948, -0.01586049795150757, 0.026031242683529854, 0.008498003706336021, -0.005918688606470823, -0.012905732728540897, 0.007277026306837797, 0.004334470257163048, -0.010463777929544449, -0.020414745435118675, -0.02478584460914135, 0.011971685104072094, -0.00268004578538239, 0.010396623983979225, 0.0020222440361976624, 0.008516318164765835, 0.0029395034071058035, -0.0183146633207798, -0.027935966849327087, 0.0185222290456295, 0.008687255904078484, -0.015811659395694733, -0.011996104381978512, 0.0003605699457693845, 0.012191461399197578, 0.04302724823355675, -0.0115321334451437, 0.006446761544793844, -0.004807599354535341, 0.008729989640414715, -0.028424357995390892, 0.026592891663312912, 0.00708777504041791, -0.004917487036436796, 0.0012766846921294928, 0.001338496687822044, 0.015176751650869846, -0.025616109371185303, -0.0018543596379458904, -0.012160936370491982, -0.007362494710832834, 0.024627117440104485, -0.0016330574871972203, 0.021586883813142776, 0.017154734581708908, -0.013650529086589813, -0.014920346438884735, 0.016617504879832268, -0.0005826352280564606, 0.006214776076376438, 0.03616535663604736, 0.010543141514062881, 0.008308752439916134, -0.013394123874604702, -0.023943370208144188, -0.02100081369280815, -0.0017704174388200045, -0.01854665018618107, 0.006916837766766548, -0.010610295459628105, -0.02532307431101799, 0.010775127448141575, -0.008308752439916134, 0.005024322774261236, -0.016568666324019432, -0.006904628127813339, -0.007075564935803413, -0.0056409165263175964, -0.001076749642379582, 0.0008043189882300794, 0.021733401343226433, 0.03706888109445572, 0.0011149051133543253, 0.005518818739801645, 0.011294042691588402, -0.00824159849435091, 0.014199969358742237, 0.03347920626401901, -0.009822764433920383, -0.0010859069880098104, 0.013955773785710335, -0.02349160797894001, -0.007759312633424997, -0.008363696746528149, -0.00641013216227293, 0.021892128512263298, -0.003339373739436269, -0.009694562293589115, 0.014285437762737274, 0.05132989585399628, -0.018619908019900322, -0.005933951120823622, 0.009108493104577065, -0.0024160093162208796, 0.008095080964267254, 0.00878493394702673, 0.004395519383251667, -0.0006352898781187832, -0.002290859119966626, -0.001281263306736946, 0.007844780571758747, 0.0013560482766479254, 0.037679366767406464, -0.006404027342796326, -0.01373599749058485, 0.0038704988546669483, 0.016190161928534508, 0.00038079239311628044, -0.00438636215403676, 0.009346582926809788, 0.011776329018175602, -0.002643416402861476, 0.00393460039049387, 0.008015717379748821, 0.001536142430268228, 0.001527748187072575, 0.01286910381168127, -0.010414938442409039, 0.007722683250904083, 0.002426692983135581, 0.016641924157738686, -0.012673746794462204, 0.0023778537288308144, -0.004062802996486425, 0.016409939154982567, -0.009059653617441654, 0.004764865152537823, 0.0005917925736866891, 0.010079169645905495, -0.008760513737797737, -0.026324275881052017, 0.014590682461857796, -0.01465173065662384, -0.00041017215698957443, -0.007264816667884588, -0.01443195529282093, 0.008064556866884232, -0.009438157081604004, 0.0025533693842589855, 0.002783828880637884, 0.025371914729475975, 0.001449147704988718, 0.012484495528042316, 0.03450482711195946, -0.015518625266849995, 0.01379704661667347, 0.023882322013378143, 0.00298834266141057, -0.00046015591942705214, 0.00947478599846363, 0.007740997709333897, -0.009889918379485607, -0.004490145016461611, -0.004459620453417301, 0.02477363497018814, -0.0002567868505138904, 0.014456374570727348, -0.01223419513553381, -0.002188602229580283, 0.022038646042346954, -0.0021336583886295557, 0.005595129914581776, 0.009932653047144413, 0.009694562293589115, 0.005555448122322559, -0.01637331023812294, -0.010109694674611092, -0.0017872059252113104, -0.0003250852751079947, -0.005012113135308027, 0.0033119015861302614, -0.006599383894354105, 0.024321872740983963, 0.0033119015861302614, -0.009871603921055794, -0.017411140725016594, -0.033039651811122894, -0.0028418253641575575, 0.0038704988546669483, 0.02725221961736679, 0.009511414915323257, -0.03147680312395096, -0.006745900958776474, 0.03101283125579357, -0.010323365218937397, -0.001578113529831171, 0.00014060319517739117, -0.037777047604322433, -0.006648222915828228, 0.005073161795735359, 0.003357688430696726, 0.021611303091049194, 0.011477189138531685, 0.01217314600944519, -0.005482189357280731, 0.007826466113328934, -0.013626109808683395, -0.017753014340996742, 0.003763663349673152, -0.005656178575009108, 0.004416886251419783, 0.009963177144527435, 0.01799720898270607, -0.03201403096318245, -0.028204582631587982, -0.028155742213129997, 0.022099694237113, -0.008119501173496246, 0.003211171133443713, 0.012038839049637318, -0.014212178997695446, -0.0012934731785207987, -0.01373599749058485, -0.004545088857412338, -0.029816271737217903, 0.019144928082823753, 0.03181867673993111, -0.0002293148572789505, -0.005863744765520096, 0.012020524591207504, -0.008925345726311207, 0.010726287961006165, -0.015188961289823055, 8.098515536403283e-05, 0.004215424880385399, -0.005998052190989256, 0.02810690365731716, -0.008601786568760872, 0.02057347260415554, -0.02273460291326046, -0.012240299955010414, 0.014517423696815968, 0.007771522272378206, 0.013015621341764927, -0.009200066328048706, -0.010054750367999077, 0.016617504879832268, 0.0007344943005591631, -0.006532229948788881, 0.016544247046113014, 0.0005357039044611156, -0.01767975464463234, 0.01040272880345583, -0.015811659395694733, -0.005827115382999182, -0.004169638268649578, -0.010170742869377136, -0.005094529129564762, -0.015140121802687645, 0.020939765498042107, -0.008217179216444492, 0.0071121943183243275, -0.010915539227426052, 0.01100100763142109, -0.0027243061922490597, -0.0173500906676054, 0.024321872740983963, -0.005888164509087801, -0.006223933305591345, 0.009419841691851616, -0.007637214846909046, 0.018571069464087486, -0.03697120025753975, 0.047911159694194794, -0.005909531377255917, 0.009309954009950161, -0.008363696746528149, -0.01894957199692726, -0.0011461926624178886, 0.004621400032192469, 0.007661634124815464, 0.02627543732523918, 0.020610101521015167, 0.005701965186744928, -0.00782036129385233, 0.0030295506585389376, -0.010512616485357285, -0.016666343435645103, 0.024517230689525604, 0.01658087596297264, -0.001646793563850224, -0.011178049258887768, -0.008107291534543037, 0.019474592059850693, -0.005518818739801645, -0.011159734800457954, -0.00536009157076478, 0.002629680559039116, -0.005879006814211607, -6.593755642825272e-06, -0.0033180066384375095, 0.010280631482601166, -0.02068335935473442, -0.00016378269356209785, -0.015506415627896786, 0.0014834877802059054, 0.0063307685777544975, -0.03706888109445572, -0.015469785779714584, -0.0029120314866304398, -0.009645722806453705, -0.025347493588924408, -0.027618512511253357, -0.027130121365189552, 0.014944765716791153, -0.012112097814679146, 0.005595129914581776, -0.00926111452281475, 0.0024617959279567003, -0.009963177144527435, -0.0008890242897905409, 0.04126904159784317, 0.03618977591395378, 0.001076749642379582, 0.00020794774172827601, 0.01800941862165928, -4.1613398025219794e-06, 0.008754408918321133, -0.0178995318710804, 0.00855905283242464, -0.01082396600395441, 0.026788247749209404, -0.02101302333176136, -0.0022817018907517195, -0.003995649050921202, 0.007008411455899477, -0.004026173613965511, -0.017496608197689056, 0.008552948012948036, 0.012966781854629517, -0.013540641404688358, 0.005482189357280731, 0.013333074748516083, -0.017960580065846443, -0.0019581427332013845, 0.036897942423820496, -0.006562754511833191, -0.012167041189968586, 0.018253615126013756, -0.01325981691479683, -0.01754544861614704, 0.010591980069875717, 0.004767917562276125, -0.013003410771489143, 0.006144569721072912, -0.008644521236419678, -0.025371914729475975, -0.023210784420371056, 0.011007112450897694, 0.012917942367494106, 0.0018925152253359556, -0.007649424485862255, -0.009670142084360123, -0.02413872629404068, 0.02303984761238098, 0.018363501876592636, -0.017301252111792564, -0.00722208246588707, 0.0024297453928738832, 0.0009164962684735656, -0.013589480891823769, -0.004694658797234297, -0.0014934082282707095, 0.0025854199193418026, 0.00441383384168148, 0.03186751529574394, -0.004554246552288532, -0.013613900169730186, 0.007380809634923935, 0.01001812145113945, 0.026666149497032166, -0.0005219678860157728, -0.014956975355744362, -0.02368696592748165, 0.0016895277658477426, 0.014908135868608952, 0.008968080393970013, -0.018278034403920174, -0.01529884897172451, -0.030109306797385216, -0.02369917556643486, 0.007496802136301994, 0.001933723222464323, -0.01283247396349907, 0.030036048963665962, 0.014773828908801079, 0.005146420560777187, 0.0027700928039848804, -0.004948011599481106, -0.018290244042873383, 0.020842086523771286, 0.013626109808683395, -0.007740997709333897, 0.01319876778870821, 0.02167235128581524, 0.038509633392095566, 0.018925152719020844, -0.03181867673993111, -0.009548044763505459, 0.0060285767540335655, -0.003458418883383274, 0.013980193063616753, -0.000994333648122847, 0.0018177303718402982, -0.012270824983716011, -0.008015717379748821, 0.013247606344521046, -0.0055218711495399475, 0.003592726541683078, -0.014285437762737274, 0.017044847831130028, -0.008058452047407627, 0.004215424880385399, -0.006861893925815821, -0.012759216129779816, 0.016434358432888985, -0.0062941391952335835, 0.0034492616541683674, 0.011208574287593365, -0.004435201175510883, 0.004252054262906313, 0.01702042669057846, -0.003171489341184497, 0.003650723025202751, 0.033039651811122894, -0.028375519439578056, 0.009938757866621017, 0.02500561997294426, -0.020817667245864868, -0.030646536499261856, -0.011184155009686947, -0.0033668456599116325, -0.019010620191693306, -0.013015621341764927, -0.010475987568497658, -0.0032172759529203176, 0.01217925176024437, -0.005753856617957354, -0.008082871325314045, 0.01121467910706997, -0.014224388636648655, -0.01962110958993435, -0.0003842263831757009, 0.04639714956283569, 0.02056126296520233, 0.01952343061566353, -0.017936160787940025, 0.003717876737937331, -0.003614093642681837, 0.00417269067838788, 0.007447963114827871, 0.008613997139036655, -0.0007085485267452896, -0.01319876778870821, -0.010854491032660007, 0.0029746065847575665, 0.01535989809781313, -0.009834974072873592, 0.017484398558735847, -0.010152428410947323, 0.01658087596297264, -0.007368599530309439, -0.01379704661667347, 0.004911382216960192, -0.0063307685777544975, 0.004917487036436796, 0.008259912952780724, 0.00213976320810616, 0.0002081385173369199, 0.0173500906676054, 0.003949862439185381, 0.03748401254415512, 0.0016132165910676122, -0.03015814535319805, -0.028399938717484474, -0.013577270321547985, -0.011141420342028141, -0.0015857446705922484, 0.0011225362541154027, 0.002521318616345525, -0.0016147427959367633, 0.005747751798480749, -0.0017108948668465018, 0.002829615492373705, 0.005460822023451328, -0.014688360504806042, -0.011666440404951572, 0.0011194838443771005, 0.02089092694222927, -0.004554246552288532, 0.00888871680945158, 0.02566494792699814, -0.01283247396349907, 0.009145122021436691, 0.007264816667884588, 0.004123851656913757, 0.019254816696047783, 0.017740804702043533, 0.006068258546292782, 0.013980193063616753, -0.0026907294522970915, 0.004276474006474018, 0.016348889097571373, -0.0023335933219641447, 0.015420947223901749, -0.0007615847862325609, 0.00702672591432929, -0.005634811706840992, -0.010494302026927471, 0.011593181639909744, 0.013052250258624554, -0.038631729781627655, -0.002916610101237893, -0.011819062754511833, 0.03692236170172691, 0.010024226270616055, 0.00735638989135623, 0.0045847706496715546, 0.012374607846140862, -0.020622311159968376, 0.013626109808683395, 0.024114307016134262, -0.009328268468379974, -0.012405131943523884, 0.004206267651170492, -0.023577077314257622, 0.02608008123934269, 0.011019323021173477, 0.007936353795230389, 0.032600101083517075, 0.0091573316603899, -0.01659308560192585, -0.021513624116778374, -0.010738497599959373, -0.011526028625667095, 0.0020405587274581194, -0.013015621341764927, 0.014163339510560036, -0.018339082598686218, -0.011941161006689072, 0.014468584209680557, -0.002898295409977436, -0.014309857040643692, 0.007301446050405502, -0.00012848881306126714, 0.03706888109445572, 0.0002087108587147668, 0.01659308560192585, -0.03338152542710304, -0.013394123874604702, 0.0033698980696499348, -0.01184958778321743, 0.007045040838420391, -0.014126710593700409, 0.007454067934304476, 0.008064556866884232, 0.01206936314702034, 0.014737199060618877, 0.00044870926649309695, 0.02382127195596695, 0.0131499283015728, 0.007844780571758747, -0.025616109371185303, -0.018912943080067635, -0.020756619051098824, 0.007350285071879625, -0.022807860746979713, 0.025054460391402245, -0.0274719949811697, 0.0026861506048589945, -0.017435560002923012, 0.013003410771489143, -0.0014934082282707095, -0.0024801106192171574, 0.006404027342796326, 0.013113299384713173, -0.004429096356034279, 0.011007112450897694, 0.011379511095583439, 0.055871933698654175, 0.008040137588977814, -0.020732199773192406, -0.01034778542816639, 0.010848386213183403, -0.0075212218798696995, -0.012252509593963623, -0.0091573316603899, 0.004276474006474018, -0.00735638989135623, 0.009120702743530273, 0.010128009133040905, 0.0036934572272002697, 7.111240847734734e-05, -0.00579353841021657, -0.00511894840747118, -0.00888871680945158, -0.017069267109036446, -0.000989754917100072, 0.01905946061015129, 0.002155025489628315, 0.008485794067382812, 0.013345285318791866, 0.008522423915565014, -0.007899724878370762, -0.014541842974722385, 0.004777074791491032, 0.007594480644911528, 0.00780815165489912, -0.010952169075608253, 0.04224582388997078, -0.013699368573725224, -0.0028876119758933783, 0.013760417699813843, -0.0325024239718914, 0.01007306482642889, 0.004639714956283569, 0.003034129273146391, -0.034846700727939606, -0.006257510278373957, -0.0373130738735199, 0.017850691452622414, 0.022343888878822327, 0.0016132165910676122, -0.0042947884649038315, 0.030841894447803497, -0.027301058173179626, 0.021183960139751434, 0.0030280244536697865, 0.00441383384168148, -0.005488294176757336, -0.010860595852136612, 0.007478487677872181, -0.02791154757142067, -0.027740610763430595, 0.0065078106708824635, -0.006849684286862612, -0.010421043261885643, 0.006037733983248472, 0.002171813976019621, -0.00990823283791542, 0.005811853334307671, 0.017704175785183907, 0.005918688606470823, 0.0190716702491045, 0.0003748782619368285, 0.013406333513557911, 0.005094529129564762, 0.016739603132009506, -0.014834877103567123, 0.0010859069880098104, 0.0071488237008452415, 0.001086670090444386, 0.006373502779752016, 0.001950511708855629, -0.022343888878822327, -0.004648872185498476, -0.006236142944544554, -0.00255947420373559, 0.01067134365439415, 0.024834683164954185, 0.004728235770016909, -0.0033821079414337873, 0.006001104600727558, 0.018448971211910248, 0.020988604053854942, 0.002753304550424218, -0.004838123451918364, -0.013943564146757126, -0.003491995856165886, -0.007045040838420391, 0.018668746575713158, -0.029987208545207977, -0.0020924503915011883, -0.0025884725619107485, -0.01158707682043314, -0.0061476221308112144, 0.0060285767540335655, -0.003409579861909151, 0.00519525958225131, -0.02791154757142067, -0.0036720901262015104, -0.017484398558735847, 0.005558500532060862, -0.01949901133775711, -0.007429648656398058, 0.015384317375719547, 0.0015506414929404855, -0.019022829830646515, -0.014004613272845745, -0.010280631482601166, -0.0012270824518054724, 0.01843676157295704, 0.003546939929947257, 0.006904628127813339, -0.010524827055633068, 0.013821465894579887, -0.015481995418667793, -0.012624908238649368, 0.008754408918321133, -0.0032844296656548977, 0.0040902746841311455, 0.018070468679070473, -0.017521027475595474, -0.015555254183709621, -0.003455366473644972, 0.020622311159968376, -0.016873911023139954, -0.009602989070117474, 0.01352843176573515, -0.006312454119324684, 4.688362969318405e-05, 0.02240493893623352, 0.00017522936104796827, 0.0005059425602667034, 0.0016880014445632696, -0.0067886351607739925, -0.005146420560777187, -0.015408736653625965, -0.015286639332771301, 0.003189804032444954, -0.011080371215939522, -0.004651924595236778, -0.013760417699813843, 0.01244786661118269, 0.002524371026083827, -0.012978991493582726, 0.00590037414804101, -0.017276832833886147, -0.001059961155988276, 0.014493003487586975, 0.017215784639120102, 0.010231791995465755, -0.014261018484830856, 0.013430753722786903, -0.006666537374258041, 0.01346738263964653, 0.01671518385410309, 0.018033837899565697, -0.0008630785159766674, 0.01120246946811676, 0.026470793411135674, 0.004914434626698494, -0.01072018314152956, 0.023247413337230682, 0.015433156862854958, 0.003681247355416417, -0.012685957364737988, 0.02993836998939514, -0.000571951677557081, -0.003928495571017265, -0.006046891678124666, 0.0038888135459274054, -0.007374704349786043, 0.0029242413584142923, 0.02220958285033703, -0.0171425249427557, 0.0004342101456131786, -0.013003410771489143, -0.004322260618209839, -0.006367397960275412, -0.000721139891538769, -0.024590488523244858, -0.008491898886859417, 0.014016822911798954, 0.019267026335000992, 0.015750611200928688, 0.009731191210448742, -0.013699368573725224, 0.010817861184477806, 0.004621400032192469, 0.012160936370491982, -0.0035011533182114363, 0.002828089287504554, -0.006342978682368994, -0.005759961903095245, -0.005839325487613678, -0.02361370623111725, -0.017264623194932938, -0.006165936589241028, 0.0006581832421943545, 0.004459620453417301, 0.017826272174715996, -0.01313771866261959, 0.016458777710795403, -0.006861893925815821, -0.010146323591470718, -0.016019225120544434, 0.011232993565499783, -0.015445366501808167, 0.012289139442145824, 0.00019859963504131883, -0.04285631328821182, 0.028058065101504326, -0.00335463578812778, -0.00689241848886013, 0.04871700704097748, 0.010915539227426052, -0.03037792257964611, -0.017069267109036446, -0.0041757430881261826, -0.007075564935803413, -0.005692807957530022, -0.013760417699813843, -0.0010065434034913778, 0.0004437490424606949, -0.04798441752791405, -0.02369917556643486, 0.022490406408905983, -0.0066421180963516235, -0.0044748829677701, 0.0037606109399348497, -0.0028387729544192553, 0.028522036969661713, -0.01992635428905487, 0.010433253832161427, -0.0017398929921910167, 0.025127718225121498, -0.002290859119966626, 0.010622505098581314, -0.005372301209717989, -0.0070999846793711185, -0.01535989809781313, -0.032478004693984985, 0.027227800339460373, 0.002150446642190218, -0.011379511095583439, 0.019584480673074722, 0.0002884559507947415, 0.004774022381752729, 0.012051048688590527, -0.008235493674874306, 0.0004910619463771582, -0.007429648656398058, 0.010054750367999077, 0.007545641623437405, 0.009236695244908333, -0.014346486888825893, -0.022465987130999565, -0.006898523308336735, 0.00046626082621514797, -0.015079072676599026, 0.011513818986713886, 0.008626206777989864, -0.022551456466317177, -0.002168761333450675, -0.025347493588924408, 0.015897128731012344, 0.009493100456893444, -0.012087677605450153, -0.02759409323334694, -0.000488009478431195, 0.014419745653867722, -0.0049663265235722065, 0.008504108525812626, 0.008375906385481358, 0.008833772502839565, -0.04009690508246422, 0.012978991493582726, 0.016446568071842194, 0.027105702087283134, 0.022710183635354042, -0.00305549637414515, -0.008327066898345947, -0.00492664473131299, -0.004679396748542786, -0.011165839619934559, -0.01702042669057846, 0.0031592794694006443, 0.016324469819664955, 0.003211171133443713, -0.01854665018618107, 0.008430849760770798, -0.01148329395800829, 0.0056287064217031, -0.003189804032444954, -0.002034453907981515, 0.00029360695043578744, 0.01702042669057846, 0.0006913785473443568, 0.016788441687822342, 0.009859394282102585, 0.014004613272845745, -0.02467595599591732, 0.019364705309271812, 0.008540738373994827, 0.0024053258821368217, -0.003250852692872286, -0.012637117877602577, -0.013381914235651493, -0.014346486888825893, -0.0030478653497993946, 0.03240474313497543, 0.023894531652331352, -0.017728595063090324, -0.0010210424661636353, -0.00487780524417758, -0.03628745302557945, 0.02781386859714985, -0.002440428826957941, -0.014041242189705372, 0.009432051330804825, 0.0035683070309460163, 0.004511512350291014, 0.00018972846737597138, 0.0002733845030888915, -0.005408930592238903, 0.004618347622454166, -0.0023015427868813276, -0.01981646567583084, 0.0008516318630427122, 0.029059266671538353, -0.0008729989640414715, -0.007832570932805538, -0.007032830733805895, 0.0070572504773736, 0.006062153726816177, 0.013589480891823769, 0.003650723025202751, -0.0026220493018627167, -0.004636662546545267, -0.003977334592491388, 0.015164541080594063, -0.030670957639813423, -0.014786038547754288, -0.008943661116063595, -0.02198980562388897, 0.01691053993999958, -0.0012247931445017457, -0.009389317594468594, -0.015420947223901749, 0.012966781854629517, -0.024175355210900307, -0.010469882749021053, 0.011892321519553661, 0.0018223089864477515, -0.01433427631855011, 0.0021947072818875313, 0.008809353224933147, 0.006144569721072912, -0.02693476527929306, 0.00024534016847610474, -0.001338496687822044, 0.006211723200976849, -0.0019108299165964127, -0.017325671389698982, -0.010561455972492695, 0.019547851756215096, 0.006165936589241028, -0.025249816477298737, -0.01346738263964653, -0.005756909493356943, -0.013858095742762089, -0.001086670090444386, 0.014517423696815968, 0.018986200913786888, 0.005552395712584257, 0.022710183635354042, 0.008095080964267254, -0.009694562293589115, -0.004511512350291014, -0.0031775941606611013, 0.00893755629658699, -0.01034778542816639, 0.009273325093090534, -0.004392466973513365, 7.864812505431473e-05, -0.012942362576723099, -0.032380323857069016, 0.009468681178987026, 0.0013239975087344646, 0.017093686386942863, 0.013162137940526009, -0.0032539053354412317, -0.0005807274719700217, -0.009084072895348072, -0.02068335935473442, 0.011733594350516796, -0.00034721550764515996, -0.022759022191166878, 0.0037117719184607267, -0.0005021270480938256, 0.018339082598686218, -0.018937362357974052, -0.024370713159441948, -0.005140315741300583, 0.019755417481064796, -0.01885189302265644, -0.011898426339030266, 0.01638551987707615, -0.005335671827197075, -0.0021168699022382498, -0.004493197426199913, -0.011855692602694035, -0.017264623194932938, -0.011922845616936684, -0.014370906166732311, -0.030573278665542603, 0.007032830733805895, 0.008284333162009716, -0.009328268468379974, 0.007441858295351267, -0.036897942423820496, 0.009896023198962212, 0.008168339729309082, 0.008552948012948036, -0.0010759865399450064, 0.002547264564782381, -0.002493846695870161, 0.022649133577942848, -0.006501705385744572, -0.020451374351978302, -0.008852087892591953, -0.001916934852488339, -0.0033180066384375095, 0.005201364401727915, -0.004545088857412338, 0.0028265630826354027, 0.00791193451732397, 0.006837474647909403, -0.016226792708039284, -0.014993604272603989, 0.002767040394246578, -0.0023183312732726336, -7.340173760894686e-05, 0.0025884725619107485, -0.005863744765520096, 0.0012270824518054724, -0.0006879445281811059, 0.007533431518822908, -0.008638416416943073, -0.019682157784700394, -0.007734892889857292, 0.002309173811227083, 0.0422702431678772, -0.0036842997651547194, 0.021183960139751434, 0.003388212760910392, -0.00043497324804775417, -0.014285437762737274, 0.017606496810913086, -0.015909338369965553, 0.005167787428945303, 0.00042505282908678055, -0.014346486888825893, 0.005686703138053417, 0.002641890197992325, 0.015506415627896786, -0.01843676157295704, 0.0061354124918580055, -0.01919376663863659, -0.0213426873087883, 0.003192856442183256, -0.005396720953285694, 0.01799720898270607, 0.021196171641349792, -0.01628784090280533, 0.0028631924651563168, -0.006288034375756979, -0.010414938442409039, -0.01406566146761179, 0.01018295343965292, -0.008589576929807663, 0.014395325444638729, -0.003171489341184497, -0.0054638744331896305, -0.0005830167792737484, -0.01973099820315838, -0.0035164153669029474, 0.0025701578706502914, -0.012978991493582726, 0.017508817836642265, -0.004306998569518328, 0.016007015481591225, 0.023967789486050606, -0.002393116010352969, -0.013357494957745075, 0.015152331441640854, -0.0003279469383414835, 0.021147331222891808, 0.02142815664410591, -0.003510310547426343, 0.01606806553900242, 0.0047038160264492035, 0.017496608197689056, 0.007740997709333897, -0.0017261570319533348, 0.03191635385155678, 0.008601786568760872, 0.013113299384713173, -0.030451180413365364, 0.0059431083500385284, 0.004618347622454166, 0.002643416402861476, -0.02942555956542492, -0.019230397418141365], "cfcb4e69-2296-491c-b649-15e9377ac385": [-0.01108857337385416, -0.009038738906383514, -0.007627576123923063, 0.005665938835591078, -0.005395263433456421, -0.009142142720520496, -0.008527800440788269, 0.02409924753010273, -0.022907059639692307, -0.0034518735483288765, 4.155649003223516e-05, 0.008089853450655937, -0.013016756623983383, -0.025157619267702103, -0.022250138223171234, 0.006265074480324984, -0.0028101596981287003, 0.034159861505031586, 0.02231096476316452, -0.02374645695090294, 0.06403757631778717, -0.0009838599944487214, -0.025546906515955925, -0.00470792967826128, -0.01704343594610691, -0.01985359564423561, -0.01495102234184742, 0.011508272960782051, -0.03484111279249191, 0.016191871836781502, 0.02405058778822422, 0.004127041902393103, -0.022347459569573402, 0.0417509451508522, 0.0029743898194283247, -0.01620403677225113, -0.01202529389411211, -0.0021060991566628218, 0.01008494570851326, -0.012663966044783592, -0.049196042120456696, 0.037152498960494995, 0.002513633109629154, -0.004412923939526081, -0.047371264547109604, -0.01766386069357395, 0.021654045209288597, -0.012329423800110817, 0.01744488812983036, 0.013381713069975376, 0.006252909544855356, -0.02240828610956669, -0.019075023010373116, 0.009853806346654892, 0.001335129956714809, -0.017371896654367447, -0.012061789631843567, 0.042772818356752396, 0.01173332892358303, -0.03968286141753197, 0.009501015767455101, 0.0016711934003978968, -0.001033281092531979, 0.005705475807189941, -0.03819870576262474, -0.02476833388209343, 0.008497387170791626, -0.012116532772779465, -0.0631130263209343, 0.0034214607439935207, 0.018551919609308243, 0.051969707012176514, -0.011009500361979008, 0.01843026839196682, 0.03958553820848465, 0.012615305371582508, 0.009999789297580719, -0.009671328589320183, 0.005112422630190849, 0.013661512173712254, -0.03926924616098404, 0.020814646035432816, 0.03070494905114174, 0.0021866934839636087, 0.06681124120950699, 0.028977490961551666, 0.04827148839831352, -0.03433017432689667, 0.013284390792250633, -0.04289447143673897, 0.010462066158652306, 0.01812613755464554, 0.02021855115890503, -0.01785850338637829, -0.029464097693562508, -0.010979087091982365, 0.0027873499784618616, -5.720254648622358e-06, 0.04875809699296951, -0.011678585782647133, 0.004689682275056839, 0.013539860025048256, 0.02615516632795334, 0.031215885654091835, -0.032237764447927475, 0.02226230315864086, -0.0072200424037873745, -0.017773346975445747, 0.01334521733224392, 0.03338129073381424, 0.012244267389178276, -0.02851521410048008, 0.005212785210460424, 0.024610185995697975, -0.02712838165462017, -0.02535226382315159, -0.019245335832238197, 0.023308509960770607, 0.0015503017930313945, 0.0016255739610642195, 0.0047565908171236515, -0.010334331542253494, 0.005872746929526329, 0.03369758650660515, 0.004151372238993645, -0.010066697373986244, -0.0008888194570317864, -0.00679426034912467, 0.018977701663970947, -0.0007618452655151486, -0.034962765872478485, -0.029464097693562508, -0.0013701049610972404, 0.027347354218363762, -0.015960734337568283, -0.047273941338062286, 0.010030201636254787, 0.06126391515135765, -0.009379364550113678, 0.032237764447927475, -0.004951233509927988, 0.0036586818750947714, -0.005188454873859882, 0.007840467616915703, 0.017432721331715584, 0.005288817919790745, -0.013758833520114422, 0.01722591370344162, 0.008564296178519726, 0.0029561419505625963, -0.03124021738767624, -0.022104157134890556, -0.002598789520561695, 0.04231054335832596, 0.019075023010373116, 0.009634832851588726, -0.0011321232886984944, 0.016727140173316002, 0.0005424916162155569, 0.019038528203964233, -0.0013731461949646473, -0.03445182740688324, -0.011587346903979778, 0.008181092329323292, 0.04291880130767822, 0.02160538360476494, -0.004814375191926956, 0.023053040727972984, 0.01785850338637829, 0.021617548540234566, 0.04430563375353813, -0.020997123792767525, -0.012724792584776878, -0.022371791303157806, 0.041653621941804886, -0.02450069971382618, 0.027104051783680916, 0.019804934039711952, 0.0013579396763816476, 0.009397611953318119, 0.007445098366588354, 0.0016909618861973286, -0.009920715354382992, -0.01901419647037983, -0.01153260376304388, 0.04557081311941147, 0.0011853460455313325, 0.012566644698381424, -0.026082174852490425, -0.026179496198892593, -0.01794365979731083, -0.006538791581988335, 0.005148917902261019, 0.03162950277328491, -0.007031481713056564, -0.008898839354515076, 0.02441554330289364, 0.008564296178519726, 0.043259426951408386, 0.01385615486651659, -0.021812191233038902, -0.04167795181274414, -0.03182414546608925, 0.020911967381834984, -0.05201836675405502, 0.030826600268483162, -0.017566539347171783, 0.01633785478770733, -0.02195817418396473, -0.025984853506088257, 0.02503596805036068, -0.03513307869434357, -0.017773346975445747, -0.023016545921564102, -0.026836417615413666, -0.006100844591856003, -0.01864924095571041, 0.02013339474797249, -0.0005284256185404956, -0.03654424101114273, -0.008089853450655937, -0.008771104738116264, -0.01687312312424183, -0.013941311277449131, -0.03919625282287598, -0.02110661007463932, 0.007031481713056564, 0.004978605546057224, -0.04664135351777077, -0.02319902367889881, 0.030291331931948662, 0.031921468675136566, 0.027274364605545998, -0.031215885654091835, 0.023539649322628975, 0.02302871085703373, -0.03172682598233223, 0.027906954288482666, 0.021410740911960602, -0.03885562717914581, 0.0029409355483949184, 0.010121440514922142, 0.0063745612278580666, -0.003117330837994814, 0.0033210976980626583, -0.01833294704556465, 0.0067030214704573154, 0.012420662678778172, 0.03214044123888016, -0.01530381292104721, 0.0070801423862576485, -0.0050759268924593925, 0.004324726294726133, -0.024293892085552216, -0.03114289604127407, 0.03552236407995224, 0.012213854119181633, -0.02195817418396473, -0.010462066158652306, 0.0036313103046268225, 0.025400923565030098, -0.026885077357292175, 0.04958532750606537, 0.008740691468119621, 0.027420345693826675, -0.02588753215968609, 0.00047140123206190765, -0.040412772446870804, -0.04345406964421272, -0.011210225522518158, -0.02508462965488434, 0.01789500005543232, 0.006477965507656336, 0.018843885511159897, -0.022602928802371025, 0.01789500005543232, -0.0101701021194458, -0.002268808661028743, -0.004817416425794363, -0.006782095413655043, 0.011459612287580967, 0.0050242249853909016, 0.017688190564513206, 0.008418314158916473, 0.013819660060107708, 0.009385447017848492, -0.036081962287425995, -0.010480314493179321, -0.02361264079809189, -0.004336891230195761, 0.022481277585029602, -0.021398575976490974, 0.007548502646386623, 0.01776118203997612, 0.01749354787170887, -0.013746668584644794, -0.03155651316046715, -0.017554374411702156, -0.04209157079458237, -0.00679426034912467, 0.01180023793131113, 0.006043059751391411, 0.017031271010637283, -0.01958596147596836, 0.060485340654850006, -0.02905048243701458, 0.05761435627937317, 0.01222601905465126, 0.0011815443867817521, 0.02588753215968609, 0.021812191233038902, -0.011435281485319138, -0.036568570882081985, -0.017067765817046165, 0.017651695758104324, 0.031483519822359085, -0.0025349222123622894, -0.023223353549838066, -0.016410846263170242, -0.009665246121585369, 0.012274679727852345, -0.0018749604932963848, -0.04238353297114372, 0.021130941808223724, 0.017834173515439034, -0.029464097693562508, 0.04199424758553505, -0.008752856403589249, 0.023186858743429184, -0.011404869146645069, -0.04145897924900055, 0.020242881029844284, -0.01891687512397766, -0.0014286498771980405, -0.0028877127915620804, -0.020182056352496147, 0.007803971413522959, -0.029610080644488335, -0.01610671542584896, -0.023989761248230934, -0.013211400248110294, -0.036471251398324966, -0.013953477144241333, -0.016216203570365906, 0.03440316766500473, 0.017967991530895233, -0.006532708648592234, -0.014099459163844585, -0.007043647114187479, 0.0027691021095961332, 0.0006420941208489239, -0.031532179564237595, 0.013527695089578629, 0.004856953397393227, 0.02744467556476593, 0.0020513557828962803, -0.025108959525823593, 0.005358767695724964, -0.009865972213447094, -0.043843358755111694, 0.04323509708046913, -0.006769930012524128, -0.0035431126598268747, -0.0063502308912575245, -0.0016134087927639484, 0.016994774341583252, 0.020765984430909157, -0.009336786344647408, 0.012505819089710712, 0.02083897590637207, -0.013600686565041542, 0.012822113931179047, 8.948070171754807e-05, -0.01883171871304512, -0.006246826611459255, -0.03401388227939606, 0.013807494193315506, -0.02695806883275509, -0.04664135351777077, 0.019938752055168152, -0.010833105072379112, 0.021082280203700066, 0.029950706288218498, -0.025376593694090843, 0.032554056495428085, 0.011642090044915676, 0.002455848501995206, -0.029780393466353416, -0.004932986106723547, 0.04394067823886871, -0.007718815468251705, -0.033892229199409485, -0.009056986309587955, -0.010711452923715115, -0.03841768205165863, 0.014318432658910751, 0.0009473644313402474, -0.027955614030361176, 0.003783375257626176, -0.026617443189024925, 0.006021770648658276, 0.017238078638911247, -0.005252322182059288, -0.003892862005159259, 0.03739580512046814, -0.037639107555150986, -0.008539965376257896, -0.005507791414856911, 0.014160284772515297, 0.00113820587284863, 0.01479287538677454, -0.004221322014927864, -0.000663763377815485, 0.00021137023577466607, 0.03323530778288841, 0.010912178084254265, 0.017238078638911247, -0.008479139767587185, -0.020911967381834984, -0.011836733669042587, 0.07921973615884781, 0.06179918348789215, -0.013004591688513756, 0.024464204907417297, 0.004415965173393488, 0.006788177881389856, 0.03467079997062683, 0.026885077357292175, -0.01597289927303791, 0.023284180089831352, -0.026763426139950752, 0.010559387505054474, 0.028855839744210243, 0.003394088940694928, -0.007651906460523605, -0.04182393476366997, 0.009038738906383514, 0.004948192276060581, 0.016666315495967865, -0.009355033747851849, -0.0068672518245875835, -0.0011663378681987524, 0.008795434609055519, -0.014135954901576042, 0.019221005961298943, -0.010139688849449158, -0.00349141051992774, 0.0030717113986611366, -0.008874508552253246, 0.024914316833019257, 0.00037331937346607447, 0.01794365979731083, -0.035279061645269394, 0.01592423766851425, 0.003713425248861313, 0.02426956035196781, 0.0025257982779294252, 0.0013214441714808345, -0.007402520161122084, -0.042237550020217896, -0.010687122121453285, 0.005574699956923723, 0.005583823658525944, 0.011970550753176212, -0.0010370827512815595, -0.03700651973485947, 0.019123684614896774, 0.012426745146512985, 0.012402414344251156, -0.008831930346786976, 0.0075728329829871655, 0.01687312312424183, -0.03722549229860306, 0.02239612117409706, -0.0074633462354540825, -0.017615200951695442, -0.017201583832502365, 0.004117918200790882, 0.02147156558930874, -0.019379153847694397, 0.014440084807574749, -0.01968328282237053, -0.015912072733044624, 0.017834173515439034, -0.030850930139422417, -0.01398997288197279, -0.024245230481028557, -0.01923317089676857, 0.028052935376763344, -0.03012101911008358, 0.023624805733561516, 0.017700357362627983, 0.037420134991407394, 0.0013944352976977825, -0.020559176802635193, -0.024707507342100143, -0.00698282103985548, -0.017955824732780457, -0.029439767822623253, -0.03316231817007065, 0.009202969260513783, -0.003835077164694667, -0.04481657221913338, 0.029658742249011993, -0.0028907540254294872, -0.006441469769924879, -0.03428151458501816, -0.0064840479753911495, 0.01843026839196682, 0.01583908125758171, -0.03712816908955574, 0.011775907129049301, -0.019744109362363815, -0.012402414344251156, -0.01334521733224392, 0.011708999052643776, -0.010814856737852097, -0.025595566257834435, 0.022286634892225266, -0.026982398703694344, 0.007134885992854834, -0.004005389753729105, 0.004963398911058903, 0.0067273518070578575, -0.005553410854190588, 0.0017365813255310059, -0.0318484753370285, -0.03033999167382717, 0.025984853506088257, -0.011045996099710464, 0.009111729450523853, -0.022274469956755638, 0.0006295487401075661, -0.013710172846913338, 0.027614988386631012, 0.02048618532717228, -0.0036586818750947714, 0.007317363750189543, 0.003932398743927479, 0.03936656564474106, -0.0035613602958619595, 0.009221216663718224, 0.02293138951063156, -0.003357593435794115, -0.024695342406630516, 0.041385989636182785, -0.017031271010637283, 0.024160074070096016, -0.011191978119313717, 0.01532814372330904, -0.020559176802635193, -0.0043216850608587265, -0.027833962813019753, 0.014586066827178001, 0.024780498817563057, -0.042772818356752396, 0.038977280259132385, 0.0004755830450449139, -0.02334500662982464, -0.013552025891840458, -0.0372011624276638, 0.01385615486651659, 0.02145940065383911, 0.017481382936239243, -0.025644227862358093, -0.02088763751089573, -0.006782095413655043, 0.002930290997028351, 0.01138053834438324, 0.027590658515691757, 0.01731107011437416, 0.03226209431886673, 0.05503533408045769, -0.012116532772779465, -0.009756485000252724, 0.030267002061009407, 0.002293138997629285, -0.007293033413589001, -0.008095935918390751, 0.005474336910992861, 0.017165087163448334, -0.008606874383985996, 0.0061069270595908165, 0.008254083804786205, 0.014671223238110542, 0.025984853506088257, -0.011781989596784115, -0.010528975166380405, 0.020461855456233025, 0.0003083116316702217, 0.004805251490324736, 0.050315238535404205, 0.023527484387159348, -0.02520628087222576, 0.0019312244839966297, 0.02003607340157032, 0.0009481247398070991, 0.01605805568397045, 0.003959770314395428, -0.0009633312583900988, 0.020279377698898315, -0.02324768528342247, 0.027517667040228844, -0.007025399245321751, -0.024379048496484756, 0.015169995836913586, -0.019427813589572906, 0.013977807015180588, 0.007670154329389334, 0.028052935376763344, 0.006477965507656336, 0.02948842942714691, 0.023150363937020302, -0.022566433995962143, 0.02212848700582981, 0.0009678932256065309, -0.01647167280316353, 0.03883129730820656, 0.0063806441612541676, -0.00803511030972004, 0.013552025891840458, -0.020242881029844284, 0.06029069796204567, -0.01434276346117258, 0.006921994965523481, -0.006386726628988981, -0.008734609000384808, 0.0009663725504651666, -0.023770788684487343, 0.00671518687158823, 0.0009785377187654376, 0.016277028247714043, 0.00201333942823112, -0.02186085283756256, 0.05450006574392319, -0.01575392484664917, -0.006134298630058765, 0.04021812975406647, -0.04583844915032387, -0.05717640742659569, -0.03832035884261131, -0.0010325207840651274, -0.007743145804852247, 0.014391424134373665, -0.0028527379035949707, 0.013892650604248047, -0.025181951001286507, 0.0007983408286236227, 0.013722337782382965, 0.0012165193911641836, -0.031094234436750412, -0.002492344006896019, 0.017566539347171783, 0.02690940722823143, -0.01923317089676857, -0.006319818086922169, -0.0002088991750497371, -0.0029941583052277565, 0.009288124740123749, -0.013418208807706833, 0.01905069313943386, -0.004829581826925278, 0.016544662415981293, 0.003686053678393364, 0.004120959434658289, 0.04087505117058754, -0.0031811981461942196, -0.004425089340656996, 0.005304024554789066, 0.03909893333911896, 0.0038137880619615316, -0.001961637521162629, -0.003978018183261156, -0.0044555021449923515, 0.005215826909989119, -0.014464414678514004, -0.022907059639692307, -0.014330597594380379, -0.04793086275458336, 0.010900013148784637, -0.0017806801479309797, 0.0006257471395656466, -0.030364323407411575, -0.000384154001949355, 0.002501467941328883, -0.012347671203315258, -0.00543175870552659, 0.042188890278339386, -0.01727457530796528, -0.017724687233567238, 0.010340414009988308, 0.004029720555990934, -0.046835996210575104, -0.00012868494377471507, -0.003552236594259739, 0.028077267110347748, -0.008704195730388165, -0.011751577258110046, 0.03408687189221382, -0.02953708916902542, -0.04605742171406746, -0.01905069313943386, -0.005869705695658922, -0.013150573708117008, 0.009227299131453037, 0.030948251485824585, -0.022456947714090347, -0.007627576123923063, -0.012438910081982613, 0.006319818086922169, 0.005936614237725735, 0.024962976574897766, 0.019792769104242325, 0.017347564920783043, 0.005380056798458099, 0.005124587565660477, -0.011526520363986492, 0.007919540628790855, 0.01886821538209915, -0.009093482047319412, -0.0019692406058311462, -0.01583908125758171, 0.005924449302256107, -0.04819849506020546, -0.025108959525823593, 0.04318643733859062, 0.03160517290234566, 0.05231033265590668, 0.00527665251865983, -0.0055686174891889095, 0.014075128361582756, 0.003771209856495261, 0.01812613755464554, -0.0047565908171236515, 0.004379469435662031, 0.03119155578315258, -0.01146569475531578, -0.012134780175983906, 0.018588416278362274, -0.019537299871444702, -0.003819870762526989, -0.0003543112543411553, 0.021617548540234566, 0.0008477619267068803, 0.012980261817574501, -0.0019479516195133328, 0.010115358047187328, 0.005726764909923077, -0.0020194221287965775, 0.014221111312508583, 0.037687771022319794, -0.03754178807139397, 0.01305325236171484, 0.025230610743165016, 0.005179331172257662, -0.010151853784918785, -0.004656227771192789, 0.008217588067054749, -0.004625814966857433, 0.030729278922080994, -0.0034853278193622828, 0.00743901589885354, -0.007074059918522835, -0.014196780510246754, -0.01722591370344162, 0.011350125074386597, 0.001091826125048101, 0.009586172178387642, 0.033673256635665894, -0.010541140101850033, -0.004790044855326414, 0.023454492911696434, 0.013016756623983383, 0.033356960862874985, 0.013028922490775585, -0.0014385341200977564, 0.02958575077354908, 0.016970444470643997, -0.017870668321847916, -0.007104473188519478, -0.03695785626769066, 0.008211505599319935, 0.01829645037651062, -0.0014529803302139044, -0.0016818379517644644, 0.0037772925570607185, 0.03671455383300781, 0.013637182302772999, -0.02503596805036068, -0.004266941454261541, 0.015997229143977165, -0.0013845510547980666, -0.010979087091982365, -0.025425253435969353, -0.009282042272388935, -0.00243151793256402, 0.0027417305391281843, -0.06286972016096115, -0.009476685896515846, 0.02110661007463932, -0.027469007298350334, -0.014014302752912045, 0.037371475249528885, 0.029610080644488335, 0.015632273629307747, -0.007335611619055271, 0.027055390179157257, 0.01628919318318367, -0.004358180332928896, 0.001444616704247892, 0.007980367168784142, -0.011058161035180092, -0.001928183133713901, 0.025011638179421425, -0.032286424189805984, -0.03406254202127457, -0.024038422852754593, 0.016362184658646584, 0.014671223238110542, -0.04420831426978111, -0.012420662678778172, -0.002361568156629801, 0.023320676758885384, -0.02480482868850231, -0.012201689183712006, -0.047590237110853195, 0.041483309119939804, -0.024841325357556343, 0.014294101856648922, 0.026179496198892593, 0.01142311654984951, -0.022383956238627434, -0.005316189490258694, 0.031702492386102676, 0.013260060921311378, -0.005367891397327185, 0.0068672518245875835, -0.02239612117409706, -0.056787122040987015, 0.01812613755464554, -0.03579000011086464, -0.033989548683166504, 0.026495791971683502, -0.011623842641711235, 0.01334521733224392, -0.007980367168784142, 0.004035803023725748, 0.007773558609187603, 0.025692889466881752, 0.007116638123989105, 0.010194431990385056, -0.05172640085220337, 0.002927249763160944, -0.014987518079578876, -0.007718815468251705, 0.02373429201543331, -0.03695785626769066, -0.004464625846594572, 0.007183546666055918, -0.0011731808772310615, -0.006684773601591587, 0.019537299871444702, -0.01647167280316353, -0.0022034207358956337, -0.010936508886516094, -0.00979298073798418, -0.010626296512782574, 0.006064348854124546, 0.011483942158520222, -0.0030017613898962736, -0.02525494247674942, 0.006116051226854324, 0.03834468871355057, -0.02040102891623974, -0.03209178149700165, 0.004041885491460562, 0.018953371793031693, 0.006769930012524128, -0.010279588401317596, 0.011045996099710464, -0.010176184587180614, 0.04423264414072037, 0.01776118203997612, 0.0040722982957959175, -0.07245589047670364, 0.01945214346051216, 0.029391108080744743, 0.004029720555990934, -0.008442644029855728, 0.00751808937638998, 0.001145048881880939, 0.005522998049855232, 0.021082280203700066, -0.01008494570851326, -0.007670154329389334, -0.021179601550102234, 0.024172239005565643, -0.009209051728248596, 0.019306162372231483, -0.03610629588365555, 0.012329423800110817, -0.01086351741105318, 0.0010735783725976944, 0.03209178149700165, -0.043843358755111694, -0.016313524916768074, 0.020291542634367943, 0.009428025223314762, -0.018016651272773743, -0.0017031270544975996, 0.011295381933450699, 0.00025109719717875123, -0.013187069445848465, -0.02164187841117382, 0.017517877742648125, 0.016118882223963737, 0.0011374455643817782, 0.027371685951948166, 0.0016346978954970837, 0.01789500005543232, 0.028807178139686584, 0.010145771317183971, -0.02739601582288742, 0.019123684614896774, -0.0068429214879870415, 0.01001803670078516, -0.019780604168772697, 0.00587882986292243, -0.006186001002788544, 0.02012122981250286, -0.02150806225836277, 0.0040479679591953754, 0.002874027006328106, -0.002756936941295862, -0.006855086423456669, -0.02204333059489727, -0.005188454873859882, -0.00899007823318243, 0.015133501030504704, -0.002791911829262972, -0.00610388582572341, -0.031069904565811157, 0.009239464066922665, -0.007761393208056688, -0.00021612226555589586, -0.015534952282905579, -0.047541577368974686, 0.021313419565558434, -0.009209051728248596, -0.0061312573961913586, -0.03413553163409233, 0.026130834594368935, 0.05605721101164818, 0.016143212094902992, 0.019829265773296356, 0.029147803783416748, 0.0015115252463147044, -0.010370827279984951, 0.029658742249011993, -0.020449690520763397, 0.0013875924050807953, -0.022821903228759766, -0.020547011867165565, -0.0039688944816589355, -0.01985359564423561, 0.006806425750255585, -0.03060762584209442, 0.021702704951167107, -0.014975353144109249, 0.01144744735211134, 0.010924343951046467, -0.03756611794233322, -0.008424396626651287, -0.0004710210778284818, -0.0022064619697630405, -0.02160538360476494, -0.017238078638911247, -0.017298905178904533, -0.022639425471425056, -0.004841746762394905, 0.017189418897032738, 0.029245125129818916, 0.005547328386455774, -0.020182056352496147, -0.018320782110095024, 0.022809738293290138, 0.02369779720902443, -0.015547117218375206, 0.0038594077341258526, 0.03221343085169792, 0.007974284701049328, -0.016313524916768074, -0.032286424189805984, -0.030729278922080994, 0.007633659057319164, -0.022955719381570816, -0.007074059918522835, -0.007876962423324585, 0.016179706901311874, -0.02088763751089573, 0.02722570300102234, -0.017457053065299988, -0.02481699548661709, 0.02209199219942093, -0.0009253150201402605, -0.014476580545306206, 0.011027747765183449, -0.0157904215157032, 0.0270067285746336, -0.0063745612278580666, -0.04055875539779663, -0.007998614571988583, -0.013929146341979504, -0.0002518575347494334, 0.00970782432705164, 0.005979192443192005, 0.008740691468119621, -0.056300513446331024, -0.05751703307032585, 0.020230716094374657, -0.018807388842105865, -0.005063761956989765, -0.0021851728670299053, -0.03885562717914581, -0.011623842641711235, 0.013953477144241333, -0.009780815802514553, -0.00044897166662849486, 0.018357276916503906, 0.002439121250063181, -0.02164187841117382, -0.021581053733825684, 0.001928183133713901, -0.030461644753813744, -0.006362396292388439, -0.01575392484664917, 0.0064840479753911495, -0.039828844368457794, -0.009196885861456394, -0.017238078638911247, 0.04540050029754639, 0.018101807683706284, 0.009056986309587955, -0.0012119574239477515, -0.0007667873287573457, 0.0004512526502367109, -0.00834532268345356, -0.004689682275056839, -0.013260060921311378, 0.004972522612661123, -0.004063174594193697, -0.024172239005565643, -0.01051072683185339, -0.01954946666955948, -0.019221005961298943, -0.03428151458501816, -0.016678480431437492, 0.012615305371582508, -0.004452460911124945, 0.0009808187605813146, 0.005094174761325121, 0.006788177881389856, 0.016228368505835533, -0.04484090209007263, 0.018223458901047707, -0.02673909440636635, 0.007633659057319164, 0.02249344252049923, 0.02615516632795334, 0.005900118965655565, 0.0014438563957810402, -0.002350923605263233, 0.023320676758885384, 0.0034275432117283344, -0.0045072040520608425, -0.03622794523835182, -0.016763636842370033, 0.016277028247714043, 0.022104157134890556, -0.009379364550113678, 0.010176184587180614, -0.010674957185983658, -0.013649347238242626, 0.019646788015961647, -0.025133289396762848, -0.00892316922545433, -0.00857037864625454, 0.031069904565811157, 0.014732048846781254, 0.02426956035196781, -0.015267318114638329, 0.021629713475704193, 0.025960523635149002, 0.019111519679427147, 0.0029895962215960026, 0.00444029550999403, -0.0014621041482314467, 0.056154534220695496, -0.005559493321925402, 0.01677580177783966, 0.006265074480324984, -0.016970444470643997, 0.011344042606651783, 0.008089853450655937, 0.012615305371582508, -0.0006865730974823236, -0.016167541965842247, 0.00587882986292243, -0.022469112649559975, 0.027833962813019753, 0.05761435627937317, -0.013673677109181881, -0.008795434609055519, 0.02266375534236431, 0.016812296584248543, -0.014476580545306206, -0.007061894983053207, -0.0018886462785303593, -0.015899907797574997, 0.033989548683166504, -0.010182267054915428, -0.024464204907417297, -0.015948569402098656, 0.0049998946487903595, -0.0012750643072649837, 0.03316231817007065, -0.0007447379175573587, -0.008734609000384808, 0.004577153827995062, -0.0022338335402309895, 0.03583865985274315, 0.007609328720718622, 0.015948569402098656, -0.010097110643982887, -0.02110661007463932, -0.017992321401834488, 0.008175009861588478, 3.0745624826522544e-05, -0.006636112928390503, -0.010918261483311653, 0.004951233509927988, -0.0026626568287611008, 0.019379153847694397, -0.0018962494796141982, 0.008381818421185017, 0.005726764909923077, -0.02388027496635914, -0.04162929207086563, 0.030412983149290085, -0.01580258645117283, 0.011818485334515572, -0.011909724213182926, 0.011301464401185513, -0.010912178084254265, -0.028223248198628426, -0.010255258530378342, -0.009202969260513783, -0.01343037374317646, 0.007457263767719269, 0.00888059101998806, -0.02493864670395851, -0.014744214713573456, 0.009945045225322247, -0.00997545849531889, -0.003041298361495137, -0.0069524082355201244, 0.0024102290626615286, -0.0038776553701609373, 0.0022672880440950394, -0.0040783812291920185, 0.007694484665989876, 0.005900118965655565, -2.421158569632098e-05, 0.028393561020493507, -0.009391529485583305, 0.025181951001286507, -0.028709856793284416, -0.01709209755063057, -0.01024309266358614, 0.009847723878920078, 0.011496108025312424, -0.014853700995445251, -0.02119176648557186, -0.0013678239192813635, 0.0012362877605482936, 0.006812508217990398, -0.03919625282287598, 0.015461960807442665, -0.00326331309042871, 0.011867146007716656, 0.01332088652998209, -0.009561842307448387, 0.005808880086988211, -0.018685737624764442, -0.002232312923297286, 0.023636970669031143, -0.019488640129566193, 0.020583506673574448, 0.0022429574746638536, 0.008284497074782848, 0.006605700124055147, -0.02980472333729267, -0.005924449302256107, -0.017335399985313416, -0.00451632821932435, -0.007524172309786081, -0.003109727520495653, -0.010608049109578133, 0.001313080545514822, -0.028442222625017166, -0.013710172846913338, 0.013649347238242626, -0.017432721331715584, -0.03347861394286156, -0.0021699664648622274, 0.02771230973303318, 0.010985169559717178, -0.015364639461040497, 0.007834384217858315, -0.004607567097991705, 0.050850506871938705, 0.014987518079578876, 0.02173919975757599, 0.013406042940914631, -0.0036830122116953135, 0.002220147754997015, -0.008375735953450203, 0.004644062370061874, 0.00512154633179307, -0.012578809633851051, 0.004419006407260895, 0.003822911996394396, 0.006116051226854324, 0.019488640129566193, 0.021301254630088806, 0.009093482047319412, -0.005741971079260111, -0.03727415204048157, 0.014865865930914879, 0.010036285035312176, -0.004081422463059425, -0.009288124740123749, 0.027858292683959007, -0.026982398703694344, -0.011836733669042587, 0.022505607455968857, -0.025498244911432266, 0.022773241624236107, -0.009738237597048283, 0.009628750383853912, -0.01233550626784563, 0.01316273957490921, 0.005300982855260372, -0.004805251490324736, -0.02766364999115467, -0.0017685149796307087, -0.023308509960770607, 0.03450048714876175, 0.007469428703188896, -0.005462171975523233, 0.002244478091597557, -0.031970128417015076, -0.011763742193579674, -0.01754220947623253, -0.0036769297439604998, -0.02669043466448784, 0.012323341332376003, -0.01461039762943983, 0.003710384014993906, -0.00933070294559002, -0.0008933813660405576, -0.005638567265123129, -0.034208524972200394, 0.03043731488287449, -0.0009983062045648694, 0.021167436614632607, 0.012341588735580444, -0.024780498817563057, -0.009099564515054226, 0.019342657178640366, 0.021313419565558434, 0.027809632942080498, 0.010188349522650242, -0.014902361668646336, -0.012688296847045422, 0.009561842307448387, 0.010796609334647655, 0.012676131911575794, -0.012773453257977962, -0.02493864670395851, 0.0008538445108570158, 0.009452355094254017, 0.005869705695658922, 0.005930531769990921, -0.025425253435969353, 0.005848416592925787, -0.009251629933714867, -0.011295381933450699, -0.005471295677125454, 0.006818591151386499, -0.017724687233567238, 0.04350273311138153, -0.02931811660528183, -0.003959770314395428, 0.012846444733440876, -0.01441575400531292, 0.0022916183806955814, 0.03707950934767723, 0.0030914798844605684, -0.03145918995141983, -0.004829581826925278, 0.020242881029844284, -0.019671117886900902, 0.020474020391702652, -0.0017654737457633018, 0.0009428024641238153, 0.0019494722364470363, 0.0012583371717482805, -0.02414790913462639, -0.002154759829863906, 0.01012752391397953, -0.013539860025048256, 0.0008424396510235965, 0.03070494905114174, 0.014318432658910751, 0.034111201763153076, 0.011125069111585617, 0.015571448020637035, -0.003260271856561303, -0.003649557940661907, -0.0021380328107625246, 0.03187280520796776, 0.0028603412210941315, -0.02695806883275509, 0.011246721260249615, 0.027590658515691757, -0.029707401990890503, -0.023357171565294266, 0.021009288728237152, -0.015388969331979752, -0.010273505933582783, -0.004735301714390516, -2.415218659734819e-05, 0.0029454973991960287, 0.016009394079446793, 0.010711452923715115, 0.00019340756989549845, -0.019330492243170738, 0.027687979862093925, -0.009963293559849262, -0.010480314493179321, 0.006015688180923462, -0.026447130367159843, -0.008533882908523083, -0.012013128958642483, -0.01771252229809761, -0.004175702575594187, -0.01633785478770733, -0.00489649036899209, -0.002245998941361904, 0.0016575076151639223, -0.02471967227756977, -0.016143212094902992, 0.01226859726011753, 0.012007045559585094, 0.025327932089567184, -0.02057134173810482, -0.020729489624500275, 0.005401345901191235, 0.03114289604127407, -0.027469007298350334, 0.02267592027783394, -0.004075339995324612, -0.011417034082114697, 0.01080269180238247, 0.0033636759035289288, -0.001135164638981223, -0.02083897590637207, -0.0022034207358956337, -0.008552131243050098, 0.04321076720952988, 0.02878284826874733, -0.0066178650595247746, -0.004035803023725748, -0.009391529485583305, 0.01896553672850132, 0.009087399579584599, -0.014318432658910751, -0.007737062871456146, 0.014586066827178001, -0.008333157747983932, 0.03289468213915825, 0.023138197138905525, -0.005735888611525297, 0.01039515808224678, -0.0007808533264324069, -0.021495897322893143, -0.005662897601723671, -0.018843885511159897, 0.003956729080528021, -0.019306162372231483, -0.005881871096789837, 0.015084839425981045, 0.00917255599051714, -0.007949953898787498, 0.011100739240646362, -0.002610954688861966, 0.0018856049282476306, 0.022371791303157806, -0.003722549183294177, 0.014598231762647629, -0.005130670499056578, -0.007335611619055271, -0.009786898270249367, -0.010237010195851326, 0.01532814372330904, 0.0038959032390266657, 0.012213854119181633, 0.005063761956989765, -0.06977955251932144, -0.02664177305996418, 0.01461039762943983, 0.0030549841467291117, 0.011994880624115467, -0.00033853453351184726, 0.009288124740123749, -0.01633785478770733, -0.0033150152303278446, -0.013065417297184467, -0.0012332465266808867, -0.0017244161572307348, -0.019062858074903488, 0.03537638112902641, -0.015267318114638329, 0.006140381563454866, -0.029561420902609825, 0.020096899941563606, -0.020498350262641907, 0.001624053344130516, -0.00326331309042871, 0.006855086423456669, 0.004108794033527374, 0.04367304593324661, -0.020997123792767525, -0.002411749679595232, 0.00888059101998806, -0.01280994899570942, -0.016216203570365906, 0.010024119168519974, -0.002054397016763687, -0.02579021081328392, 0.012688296847045422, -0.013260060921311378, -0.009823394007980824, 0.039074599742889404, -0.007980367168784142, 0.005273611284792423, -0.03060762584209442, 0.0031751154456287622, 0.013101913034915924, -0.0043733869679272175, -0.00022562632511835545, 0.013722337782382965, -0.017919329926371574, -0.01461039762943983, 0.013199235312640667, 0.01119806058704853, 0.017201583832502365, 0.021678375080227852, 0.001339691923931241, -0.0028344900347292423, 0.017870668321847916, -0.02075381949543953, 0.011392703279852867, -0.02963441051542759, 0.007025399245321751, -0.01995091699063778, -0.01794365979731083, -0.005605112761259079, -0.0009534470154903829, 0.004449419677257538, -0.02557123638689518, -0.03695785626769066, 0.007615411188453436, 0.00432776752859354, -0.0015168475219979882, 0.018466763198375702, 0.000909348193090409, -0.02673909440636635, 0.028004275634884834, 0.019342657178640366, -0.006073473021388054, 0.017420556396245956, 0.027906954288482666, 0.013028922490775585, -0.022590763866901398, 0.02025504782795906, 0.027347354218363762, -0.00975040253251791, -0.01195838488638401, 0.005954862106591463, -0.006265074480324984, -0.01195838488638401, 0.030850930139422417, -0.023977596312761307, 0.0023068247828632593, 0.035449374467134476, -0.012749122455716133, -0.0070801423862576485, -0.023454492911696434, -0.031069904565811157, 0.0022307923063635826, -0.015048344619572163, -0.022773241624236107, -0.004218280781060457, 0.017019106075167656, -0.03467079997062683, 0.0005557972472161055, -0.02574154920876026, -0.02574154920876026, 0.014987518079578876, 0.011988798156380653, -0.0014773106668144464, 0.025668557733297348, 0.016191871836781502, -0.004510245285928249, 0.015851246193051338, 0.0004603765264619142, 0.045497823506593704, 0.005717640742659569, -0.0069706556387245655, -0.008935334160923958, -0.004449419677257538, -0.024062752723693848, -0.014829371124505997, 0.015401135198771954, -0.003835077164694667, 0.008813682943582535, -0.008795434609055519, -0.01950080506503582, 0.017152922227978706, 0.0049421098083257675, -0.004193950444459915, 0.009421942755579948, 0.015048344619572163, -0.0030869178008288145, 0.010151853784918785, -0.009294208139181137, 0.018758729100227356, 0.024707507342100143, -0.006198165938258171, 0.005875788629055023, -0.008783269673585892, -0.00012127176887588575, 0.0022566434927284718, 0.0016909618861973286, -0.0037043013144284487, 0.018089642748236656, -0.008515635505318642, 0.005608153995126486, -0.023417998105287552, -0.023576144129037857, -0.016301359981298447, -0.021447235718369484, 0.0037681686226278543, -0.003162950277328491, -0.009744320064783096, -0.016702810302376747, 0.005745012778788805, -0.019269665703177452, 0.011417034082114697, -0.011118986643850803, 0.01149002555757761, 0.01051072683185339, -0.008819765411317348, -0.016350019723176956, 0.011052078567445278, 0.012353753671050072, -0.0024877821560949087, -0.012968095950782299, 0.01659332402050495, -0.04347839951515198, 0.02895316109061241, -0.0017639530124142766, 0.014841536059975624, -0.025692889466881752, 0.007402520161122084, -0.011544768698513508, -0.006319818086922169, 0.00046988058602437377, -0.011076408438384533, 0.0036708470433950424, 0.0011366852559149265, 0.010176184587180614, 0.0036525994073599577, 0.0031599090434610844, -0.02110661007463932, 0.0010135127231478691, -0.00892316922545433, -0.01119806058704853, 0.0010979087091982365, 0.023770788684487343, 0.03092392161488533, -0.0021213055588304996, -0.017384061589837074, -0.005681145470589399, -0.020547011867165565, 0.03440316766500473, 0.01940348371863365, 0.019075023010373116, 0.03240807354450226, 0.021970339119434357, -0.01559577789157629, 0.007311281282454729, -0.0031933633144944906, 0.002249040175229311, 0.005632484331727028, -0.012639636173844337, 0.001317642512731254, 0.013004591688513756, -0.01035257987678051, -0.004422047641128302, 0.00890492182224989, -0.003953687846660614, 0.017432721331715584, 0.03561968728899956, -0.004677516873925924, 0.010565470904111862, 0.01441575400531292, -0.007213959936052561, 0.004644062370061874, 0.032286424189805984, -0.00712880352512002, -0.0036678058095276356, -0.004358180332928896, 0.011350125074386597, -0.004692723508924246, -0.018150469288229942, 0.00625899201259017, -0.001461343839764595, -0.010711452923715115, 0.004084463696926832, -0.009902467019855976, -0.009117812849581242, 0.0033393455669283867, -0.007548502646386623, -0.019646788015961647, -0.006800343282520771, 0.011453529819846153, -0.02673909440636635, 0.0031903220806270838, -0.0071105556562542915, -0.0037742513231933117, -0.008424396626651287, -0.004342974163591862, -0.026666104793548584, -0.021933844313025475, 0.002489302773028612, 0.009221216663718224, 0.012122615240514278, 0.019525134935975075, 0.04829581826925278, -0.0007253496441990137, 0.007548502646386623, -0.007147050928324461, 0.011307546868920326, 0.01476854458451271, -0.021252593025565147, -0.00985988974571228, 0.003950646612793207, 0.021349914371967316, -0.02458585612475872, -0.02873418666422367, 0.0045893192291259766, 0.011210225522518158, 0.025814540684223175, -0.0011724205687642097, -0.0011921889381483197, -0.006532708648592234, -0.010711452923715115, 0.011812402866780758, -0.0004987729480490088, 0.028125926852226257, 0.010376909747719765, -0.03226209431886673, -0.005887953564524651, 0.017152922227978706, 0.01838160678744316, 0.011058161035180092, 0.006265074480324984, -0.013819660060107708, -0.004236528649926186, -0.02503596805036068, -0.017116427421569824, 0.010973004624247551, 0.012797783128917217, -0.025498244911432266, 0.025814540684223175, 0.022809738293290138, 0.02003607340157032, 0.00869811326265335, -0.0047505078837275505, -0.0006702261161990464, 0.013381713069975376, -0.018624911084771156, 0.01441575400531292, 0.0026337644085288048, -0.013904816471040249, -0.003178156679496169, -0.0022536020260304213, 0.00872244406491518, -0.0022140652872622013, 0.0008781749056652188, -0.010711452923715115, 0.021520227193832397, -0.014853700995445251, -0.017201583832502365, 0.006563121918588877, -0.011514355428516865, 1.5242131667037029e-05, 0.020109064877033234, -0.01744488812983036, 0.013564190827310085, 0.0059457384049892426, 0.022250138223171234, 0.0026565741281956434, 0.00921513419598341, -0.007694484665989876, -0.020814646035432816, -0.028150256723165512, 0.011946219950914383, -0.007390355225652456, 0.03218910098075867, -0.015644438564777374, 0.0015206491807475686, -0.018284285441040993, -0.009549676440656185, 0.007627576123923063, -0.009428025223314762, 0.009312455542385578, -0.028320569545030594, 0.002037669997662306, 0.032992005348205566, -0.01986576057970524, -0.009294208139181137, -0.005757177714258432, -0.007773558609187603, -0.004826540593057871, 0.010097110643982887, 0.026617443189024925, 0.010827022604644299, -0.027274364605545998, -0.004093587398529053, 0.012329423800110817, 0.0014887155266478658, -0.003807705594226718, -0.016179706901311874, -0.010827022604644299, 0.02347882278263569, 0.010103193111717701, 0.0007470189011655748, 0.012968095950782299, 0.01593640260398388, 0.005434799939393997, -0.0023630887735635042, -0.013126243837177753, -0.025960523635149002, -0.0047322604805231094, 0.017870668321847916, -0.014354928396642208, -0.006630030460655689, -0.0023889399599283934, -0.015401135198771954, -0.005082009360194206, 0.00720787700265646, -0.00968349352478981, -0.019269665703177452, -0.014890196733176708, 0.0078283017501235, 0.04391634836792946, 0.005988316610455513, -0.025814540684223175, -0.017420556396245956, 0.008424396626651287, 0.012080037035048008, -0.0059457384049892426, -0.01785850338637829, -0.013564190827310085, -0.02356397919356823, -0.020595671609044075, -0.004093587398529053, -0.006182959768921137, -0.006210331339389086, -0.018624911084771156, 0.005504750180989504, -0.002963745268061757, -0.013296556659042835, 0.02722570300102234, -0.020315872505307198, -0.006988903507590294, -0.00573284737765789, -0.012171275913715363, -0.001818696386180818, -0.006642195396125317, 0.018454598262906075, 0.02093629725277424, -0.009628750383853912, -0.00391415087506175, 0.02423306554555893, 0.02298005111515522, 0.0035826493985950947, 0.00803511030972004, 0.01580258645117283, 0.003746879519894719, -0.0023767745587974787, -0.0020772067364305258, 0.009123895317316055, -0.0012507339706644416, 0.0011032309848815203, -0.02953708916902542, 0.005313148256391287, -0.016094550490379333, -0.017457053065299988, -0.005626401863992214, -0.003029133193194866, -0.013649347238242626, 0.005714599508792162, -0.016350019723176956, -0.01740839146077633, 0.0027903912123292685, 0.00470792967826128, -2.5898556486936286e-05, -0.014391424134373665, -0.007998614571988583, 0.0056963516399264336, 0.011514355428516865, 0.014476580545306206, 0.008643370121717453, -0.007864797487854958, -0.012384166941046715, -0.010638461448252201, -0.0048326230607926846, -0.004637979902327061, 0.0061312573961913586, -0.024525029584765434, -0.0010979087091982365, 0.01532814372330904, 0.008813682943582535, -0.0310212429612875, 0.010516809299588203, 0.02190951257944107, 0.007414685562252998, 0.009634832851588726, 0.0007185067515820265, 0.03257838636636734, 0.0038837380707263947, -0.012663966044783592, 0.0023691714741289616, 0.01425760705024004, -0.0011883872793987393, 0.028442222625017166, 0.010991252027451992, -0.007639741525053978, -0.0032906848937273026, -0.01607022061944008, -0.015413300134241581, 0.016848793253302574, -0.022882729768753052, 0.015340308658778667, 0.0032785197254270315, 0.007104473188519478, 0.005033348686993122, 0.004768755752593279, 0.0033636759035289288, 0.012031376361846924, -0.0030063234735280275, -0.010711452923715115, 3.1434668926522136e-05, -0.004568030126392841, 0.0035309474915266037, 0.010030201636254787, -0.0014674264239147305, 0.014902361668646336, -0.005559493321925402, -0.02615516632795334, 0.0047261775471270084, -0.001242370344698429, -0.0055382042191922665, 0.015449795871973038, 0.015315978787839413, -0.008491304703056812, 0.02712838165462017, -0.010164018720388412, -0.03165383264422417, 0.018941206857562065, 0.016447341069579124, -0.00816284492611885, -0.0006059787119738758, 0.009646998718380928, 0.018819553777575493, -0.009209051728248596, 0.025376593694090843, -0.0028512172866612673, -0.00739643769338727, 0.005979192443192005, 0.009470603428781033, 0.005246239714324474, 0.0015799545217305422, 0.020048238337039948, -0.0022779323626309633, -0.006544874049723148, -0.02615516632795334, 0.0020772067364305258, 0.03887995705008507, -0.014890196733176708, -0.00011737510794773698, 0.004342974163591862, 0.006325900554656982, -0.025060297921299934, 0.0002301882632309571, 0.005854499526321888, -0.0073538594879209995, -0.003588732099160552, -0.008503470569849014, -0.007566750515252352, -0.022992216050624847, -0.011642090044915676, 0.009355033747851849, 0.027323024347424507, -0.009896384552121162, 0.001043165335431695, -0.0026155165396630764, 0.012359836138784885, -0.008211505599319935, 0.018004486337304115, -0.011988798156380653, -0.019038528203964233, -0.016410846263170242, -0.0006987383239902556, 0.01714075729250908, 0.007803971413522959, -0.004549782257527113, -0.01398997288197279, -0.004160495940595865, 0.006289404816925526, -0.0023250726517289877, 0.011788072064518929, 0.017955824732780457, 0.005842334125190973, 0.02060783840715885, 0.0010880244662985206, -0.0006584411021322012, -0.004032761789858341, -0.010376909747719765, -0.012907270342111588, -0.024391213431954384, -0.0011268010130152106, -0.002232312923297286, 0.00033492298098281026, 0.004282148089259863, -0.021398575976490974, -0.002317469334229827, 0.039828844368457794, -0.0020650415681302547, -0.010455983690917492, 0.014646893367171288, 0.007627576123923063, 0.00417266134172678, 0.02378295361995697, 0.018551919609308243, -0.00010597024083836004, 0.028223248198628426, -0.013600686565041542, 0.003600897267460823, 0.010303919203579426, -0.001957075437530875, 0.002825366100296378, -0.0030215298756957054, -0.016727140173316002, 0.022955719381570816, 0.02172703482210636, -0.01117981318384409, -0.016179706901311874, -0.00474138418212533, 0.0047322604805231094, -0.006660443264991045, -0.014440084807574749, -0.032018788158893585, -0.00694024283438921, 0.014707718975841999, 0.013807494193315506, 0.006928077433258295, 0.002098495839163661, 0.0036525994073599577, -0.026982398703694344, -0.019829265773296356, 0.02226230315864086, 0.0029029191937297583, 0.002439121250063181, -0.02319902367889881, -0.00694024283438921, 0.004452460911124945, 0.02856387384235859, -0.003058025613427162, 0.007785724010318518, -0.019269665703177452, 0.007043647114187479, -0.010443818755447865, 0.027833962813019753, 0.009336786344647408, 0.0001494988246122375, 0.015072674490511417, 0.0020346285309642553, 0.011763742193579674, -0.03433017432689667, -0.007791806478053331, -0.00834532268345356, -0.012919435277581215, 0.024062752723693848, -0.017189418897032738, 0.01673930697143078, 0.00921513419598341, -0.004367304500192404, -0.005644649732857943, 0.01280994899570942, -0.0015769131714478135, 0.0013769478537142277, 0.029780393466353416, 0.001077379914931953, 0.019804934039711952, -0.013977807015180588, -0.018710067495703697, -0.027614988386631012, -0.026714764535427094, -0.02177569642663002, 0.016921784728765488, -0.027882622554898262, -0.0014552612556144595, 0.007025399245321751, -0.0041544134728610516, 0.007530254777520895, -0.015048344619572163, 0.01506050955504179, -0.005513873882591724, -0.011587346903979778, 0.014513075351715088, -0.00016442019841633737, 0.01468338817358017, 0.05162908136844635, 0.0011473298072814941, -0.014732048846781254, 0.018405938521027565, -0.0030139267910271883, 0.011404869146645069, 0.015230822376906872, 0.00276758149266243, -0.003284602193161845, 0.013101913034915924, -0.018624911084771156, -0.01990225724875927, -0.011185895651578903, 0.000424261117586866, 0.022456947714090347, 0.004543699789792299, -0.008710278198122978, 0.006575286854058504, 0.03681187704205513, -0.02557123638689518, -0.005224950611591339, 0.01722591370344162, 0.003816829528659582, 0.0016286153113469481, 0.025376593694090843, 0.005912283901125193, 0.011003417894244194, -0.0017624323954805732, -0.010182267054915428, 0.009038738906383514, 0.009434107691049576, 0.030583295971155167, 0.021070115268230438, -0.01647167280316353, 0.005097215995192528, 0.005884912330657244, 0.014999683946371078, 0.004114876501262188, 0.026812085881829262, 0.01506050955504179, -0.005608153995126486, 0.017505712807178497, 0.005279693752527237, -0.010151853784918785, 0.007378189824521542, 0.02605784498155117, -0.004230446182191372, 0.009342868812382221, 0.012724792584776878, 0.005526039283722639, -0.009987623430788517, 0.003165991511195898, -0.027201373130083084, 0.01425760705024004, -0.00944019015878439, -0.008205423131585121, -0.010036285035312176, -0.0101701021194458, -0.0008059440879151225, -0.02530360221862793, 0.0029409355483949184, -0.009756485000252724, -0.0036191451363265514, -0.022213643416762352, 0.011763742193579674, 0.011015582829713821, -0.003698218846693635, 0.000707482045982033, -0.005541245453059673, 0.007007151376456022, 0.007256537675857544, 0.008339240215718746, 0.02931811660528183, -0.011496108025312424, 0.009841641411185265, 0.012469323351979256, 0.01551062148064375, -0.011903641745448112, 0.020328037440776825, 0.023527484387159348, 0.014038633555173874, 0.0168609581887722, -0.013126243837177753, 0.029415437951683998, -0.002480178838595748, 0.007512006908655167, -0.009355033747851849, 0.018053147941827774, 0.012177358381450176, -0.017517877742648125, 0.019269665703177452, 0.018369441851973534, 0.007907375693321228, 0.007743145804852247, -0.02409924753010273, -0.017152922227978706, 0.0001528252469142899, 0.002280973829329014, -0.002118264324963093, -0.010249175131320953, -0.005072885658591986, 0.01133796013891697, 0.0010606527794152498, 9.371000487590209e-05, -0.0011731808772310615, -0.01717725396156311, 0.0037438382860273123, 0.0061069270595908165, 0.007037564180791378, -0.0017046477878466249, -0.022055495530366898, -0.008527800440788269, 0.02361264079809189, -0.021836522966623306, -0.00827841367572546, 0.028344901278614998, -0.028807178139686584, -0.01869790256023407, -0.015109170228242874, 0.008716360665857792, 0.026836417615413666, 0.016714975237846375, 0.03133753687143326, -0.01918450929224491, 0.007140968460589647, -0.02240828610956669, -0.023855945095419884, 0.012882939539849758, -0.008996160700917244, -0.009202969260513783, 0.017250243574380875, 0.01687312312424183, -0.02217714674770832, -0.033892229199409485, -0.0034245019778609276, 0.017152922227978706, -0.014841536059975624, 0.005407428368926048, 0.006605700124055147, -0.015024013817310333, 0.005717640742659569, -0.008953582495450974, 0.002925728913396597, -0.016568994149565697, 0.008022945374250412, 0.02686074748635292, -0.004677516873925924, -0.00970782432705164, 0.011520437896251678, -0.005814962554723024, 0.01032824907451868, -0.006265074480324984, 0.004920820705592632, 0.011204143054783344, -0.005018142517656088, 0.02476833388209343, -0.0038502837996929884, 0.021666210144758224, -0.018588416278362274, -0.03391655907034874, 0.001274303998798132, 0.0069767385721206665, 0.01559577789157629, -0.0044311718083918095, -0.009227299131453037, 0.01218344084918499, -0.011271052062511444, -0.017554374411702156, 0.022250138223171234, -0.0015905990730971098, -0.020851140841841698, 0.0016529456479474902, -0.017834173515439034, -0.01305325236171484, -0.023040875792503357, -0.010206596925854683, -0.017919329926371574, 0.00888059101998806, 0.00766407186165452, -0.005434799939393997, 0.012469323351979256, -0.003597856033593416, 0.016350019723176956, 0.009178638458251953, 0.0036830122116953135, 0.040364112704992294, -0.011587346903979778, 0.00300024077296257, -0.00857037864625454, -0.023454492911696434, 0.01642301119863987, -0.04695764556527138, 0.057711679488420486, -0.011842816136777401, -0.0024528070352971554, -0.0101701021194458, -0.029464097693562508, 0.006721269339323044, -0.006745599675923586, -0.01153260376304388, 0.03574133664369583, 0.027055390179157257, -0.028004275634884834, 0.00941585935652256, -0.012305092997848988, -0.00944019015878439, -0.033624593168497086, 0.004683599341660738, 0.009239464066922665, -0.00026953505584970117, -0.00034233613405376673, -0.009604420512914658, 0.03943955898284912, -0.021848687902092934, -0.00656920438632369, -0.0034184192772954702, -0.004978605546057224, -0.0005820284713990986, -7.834907592041418e-06, 0.002948538865894079, 0.01816263422369957, -0.014829371124505997, -0.015522786416113377, -0.005772384349256754, 0.00576630188152194, 0.019938752055168152, -0.025498244911432266, -0.013466869480907917, 0.007037564180791378, 0.004057092126458883, -0.02013339474797249, -0.028369231149554253, -0.010674957185983658, 0.008953582495450974, -0.03136187046766281, 0.009981540963053703, -0.02600918337702751, 0.0018521506572142243, -0.0006557799642905593, -0.019938752055168152, 0.023369336500763893, 0.026082174852490425, -0.013795329257845879, -0.010492479428648949, 0.02841789275407791, 0.00011043714766856283, 0.020559176802635193, -0.018320782110095024, 0.008996160700917244, -0.013442538678646088, 0.006776012945920229, 0.009768649935722351, 0.003384965006262064, -0.005018142517656088, -0.008102018386125565, -0.005066803190857172, -0.004111835267394781, 0.006043059751391411, -0.010772278532385826, -0.02164187841117382, -0.014902361668646336, 0.007962118834257126, -0.016568994149565697, 0.02088763751089573, 0.027420345693826675, -0.010407323017716408, 0.019245335832238197, 0.015218657441437244, -0.019561631605029106, -0.003920233808457851, 0.012420662678778172, 0.010571553371846676, -0.0025911862030625343, 0.008327075280249119, 0.0035613602958619595, -0.03632526844739914, -0.023661300539970398, 0.004005389753729105, 0.009640916250646114, -0.008801517076790333, -0.0026079134549945593, -0.0009374802466481924, -0.013929146341979504, 0.017639530822634697, 0.007019316777586937, -0.014318432658910751, -0.019391318783164024, -0.005714599508792162, -0.016763636842370033, -0.003926316276192665, -0.012992426753044128, -0.013284390792250633, 0.0017122509889304638, 0.000717366230674088, 0.033575933426618576, -0.01191580668091774, -0.007743145804852247, 0.005380056798458099, 0.02793128415942192, 0.022164981812238693, -0.00458627799525857, -0.013916981406509876, -0.03221343085169792, 0.010705370455980301, -0.001818696386180818, -0.003085397183895111, -0.018551919609308243, -0.008856261149048805, -0.022602928802371025, -0.009756485000252724, 0.013406042940914631, -0.006192083470523357, -0.034111201763153076, 0.025936191901564598, 0.012171275913715363, -0.005799755919724703, -0.012305092997848988, -0.000870571646373719, -0.012530148960649967, 0.015097005292773247, 0.02240828610956669, 0.025108959525823593, 0.004686640575528145, 0.011988798156380653, 0.011052078567445278, 0.012639636173844337, -0.02016989141702652, -0.012943766079843044, 0.01592423766851425, -0.010723617859184742, 0.013868320733308792, -0.013649347238242626, 0.00610388582572341, 0.0028481758199632168, 0.0077066500671207905, 0.0011952302884310484, 0.006097803357988596, -0.002151718595996499, -0.020364534109830856, 0.01423327624797821, -0.012444992549717426, 0.012372002005577087, -0.011228473857045174, -0.00603393604978919, 0.016885288059711456, -0.007280868478119373, 0.010918261483311653, 0.013308721594512463, 0.002881630090996623, -0.0063502308912575245, -0.004388593602925539, -0.011307546868920326, -0.0016286153113469481, 0.019841430708765984, -0.019658952951431274, 0.008552131243050098, 0.033624593168497086, -0.007779641076922417, -0.0326513797044754, -0.0060552251525223255, -0.001444616704247892, -0.016982609406113625, -0.016800131648778915, -0.015741759911179543, -0.012426745146512985, 0.010869599878787994, -0.008126349188387394, -0.004346015397459269, 0.004193950444459915, -0.009738237597048283, 0.005894036032259464, 0.0073295291513204575, 0.03681187704205513, 0.018186964094638824, -0.0019099353812634945, -0.027420345693826675, 0.004032761789858341, -0.00157539255451411, 0.016398681327700615, 0.0036799709778279066, 0.0006869532517157495, 0.004087504930794239, -0.017055600881576538, -0.011058161035180092, 0.01195838488638401, 0.0037560034543275833, -0.021435070782899857, 0.0032085697166621685, 0.004820458125323057, 0.004166578873991966, -0.010547222569584846, -0.010291753336787224, 0.005249280948191881, -0.01647167280316353, 0.013223565183579922, 0.020680828019976616, 0.002983513753861189, -0.001035562134347856, 0.03087526187300682, 0.006149505265057087, 0.019062858074903488, -0.0014522200217470527, -0.026763426139950752, -0.006812508217990398, -0.016848793253302574, 0.0027691021095961332, -0.0002615516714286059, -0.0012841882416978478, 0.004029720555990934, -0.004412923939526081, -0.0036799709778279066, 0.0023311551194638014, -0.008327075280249119, 0.0037164664827287197, -0.004501121584326029, -0.0026474501937627792, -0.008485222235321999, 0.02075381949543953, 0.011325795203447342, -0.004057092126458883, 0.01757870428264141, -0.008418314158916473, 0.0025516492314636707, 0.00751808937638998, 0.008935334160923958, 0.008631205186247826, 0.014050798490643501, 0.006307652685791254, 0.009117812849581242, -0.018308615311980247, 0.01726241037249565, 0.018710067495703697, 0.005982233677059412, 0.006605700124055147, 0.007639741525053978, 0.004428130574524403, -0.01575392484664917, -0.0005394503241404891, -0.013065417297184467, 0.0067516821436584, -0.057273730635643005, -0.02222580835223198, -0.0005770863499492407, 0.028174588456749916, 0.0004470708663575351, 0.006508378311991692, 0.022469112649559975, 0.007913458161056042, 0.001035562134347856, 0.007639741525053978, 0.023417998105287552, -0.015547117218375206, 0.002244478091597557, 0.004193950444459915, -0.018089642748236656, 0.02338150143623352, 0.013904816471040249, 0.01776118203997612, 0.022967884317040443, 0.010693204589188099, -0.031313207000494, -0.023089537397027016, -0.009640916250646114, -0.01532814372330904, 0.013418208807706833, -0.03649558126926422, 0.009634832851588726, -0.02627681754529476, -0.004111835267394781, 0.020194221287965775, -0.004066215828061104, -0.004306478425860405, -0.010942591354250908, 0.010334331542253494, 0.025011638179421425, -0.008083770982921124, 0.010565470904111862, -0.02583887055516243, -0.010364744812250137, -0.007907375693321228, -0.004485914949327707, -0.014744214713573456, -0.0069524082355201244, -0.0004805251373909414, -0.0011625363258644938, -0.013892650604248047, 0.01971977949142456, 0.01981710083782673, 0.016714975237846375, 0.009507098235189915, -0.007445098366588354, -0.02797994576394558, -0.01754220947623253, -0.03503575548529625, 0.006776012945920229, -0.0014818726340308785, 0.021033618599176407, -0.030194010585546494, 0.019306162372231483, -0.021617548540234566, 0.01615537703037262, -0.008381818421185017, 0.008911004289984703, -0.0007907375693321228, 0.0061069270595908165, 0.008436561562120914, 0.01592423766851425, 0.02615516632795334, 0.04883108660578728, 0.004644062370061874, -0.03462214022874832, 0.00035488151479512453, 0.00026611360954120755, -0.002322031185030937, -0.0026215992402285337, -0.00017962668789550662, 0.0057875909842550755, -0.009963293559849262, 0.023272015154361725, -0.007603245787322521, 0.0001510194706497714, -0.00747551117092371, -0.0005417312495410442, -0.015388969331979752, -0.00816284492611885, -0.015376804396510124, -0.009209051728248596, 0.007262620609253645, -0.0009640915668569505, 0.026812085881829262, 0.008673782460391521, 0.007195712067186832, 0.005860581994056702, -0.016751471906900406, 0.00979298073798418, 0.02583887055516243, -0.012420662678778172, -0.021629713475704193, 0.040899381041526794, -0.007311281282454729, 0.00032427842961624265, 0.009987623430788517, -0.014135954901576042, -0.0017198541900143027, 0.011520437896251678, 0.002329634502530098, -0.029877714812755585, -0.006179918069392443, -0.016143212094902992, 0.033989548683166504, 0.016970444470643997, 0.0012796262744814157, -0.006170794367790222, 0.03418419510126114, -0.01607022061944008, 0.04398933798074722, -0.0013936749892309308, 0.008844095282256603, -0.0036830122116953135, 0.010145771317183971, 0.0015966816572472453, -0.022919224575161934, -0.03459781035780907, 0.005659856367856264, -0.009811228141188622, -0.0029333322308957577, 0.002740209922194481, 0.008071606047451496, 0.0013754272367805243, 0.002078727353364229, -0.007670154329389334, -0.011946219950914383, -0.006094762124121189, 0.01251798402518034, 0.022079825401306152, -0.009014408104121685, 0.004443336743861437, -0.016459506005048752, -0.0040722982957959175, -0.006085637956857681, -0.001089545083232224, 0.0031842393800616264, 0.02093629725277424, -0.021435070782899857, -0.010255258530378342, 0.010340414009988308, -0.004279106855392456, 0.015534952282905579, 0.008150679990649223, -0.013661512173712254, 0.022164981812238693, 0.00671518687158823, 0.009251629933714867, 0.011642090044915676, -0.0020346285309642553, 0.0026094340719282627, -0.0010659750550985336, 0.01024309266358614, -0.0007816136931069195, 0.024561526253819466, -0.02664177305996418, -0.009811228141188622, 0.0069767385721206665, -0.00068315165117383, 0.00979298073798418, 0.021946009248495102, -0.005711558274924755, 0.020547011867165565, -0.027687979862093925, -0.011374455876648426, -0.01543763093650341, -0.006210331339389086, -0.009713906794786453, -0.021495897322893143, 0.02547391504049301, 0.0024208733811974525, -0.014756379649043083, -0.005796714685857296, -0.019427813589572906, -0.0009709345176815987, 0.01615537703037262, -0.009902467019855976, 0.020680828019976616, -0.0029622246511280537, 0.023892439901828766, 0.015534952282905579, -0.00383203593082726, -0.0051854136399924755, -0.010139688849449158, 0.008308826945722103, 0.024744004011154175, -0.025108959525823593, -0.017189418897032738, -0.0005588385974988341, -0.0031933633144944906, -0.005176289938390255, -0.005848416592925787, 0.015729594975709915, -0.018892545253038406, 0.0028481758199632168, 0.0074633462354540825, 0.003807705594226718, -0.002925728913396597, -0.00725045520812273, -0.007092307787388563, -0.01779767870903015, -0.012043541297316551, -0.01660548895597458, 0.010255258530378342, 0.0031234133057296276, -0.019160179421305656, -0.0021532392129302025, 0.03355160355567932, 0.013722337782382965, -0.01981710083782673, -0.012530148960649967, -0.010674957185983658, 0.0029166052117943764, 0.009811228141188622, 0.010078862309455872, 0.011842816136777401, -0.0002691549016162753, 0.021848687902092934, 0.0013298076810315251, 0.006067390087991953, -0.000539830478373915, 0.013016756623983383, -0.0027173999696969986, -0.002329634502530098, 0.017992321401834488, -0.012311175465583801, -0.02605784498155117, 0.007286950945854187, 0.003470121417194605, 0.014902361668646336, 0.00805335771292448, 0.024610185995697975, 0.005967027507722378, 0.003467080183327198, -0.01812613755464554, 0.018527589738368988, -0.004644062370061874, 0.0008196299313567579, 0.002195817418396473, -0.0019692406058311462, -0.003701260080561042, -0.015607942827045918, -0.010066697373986244, -0.007238290272653103, 0.0038533250335603952, -0.013515530154109001, -0.006690856534987688, 0.018418103456497192, 0.026933738961815834, 0.010954756289720535, 0.006879416760057211, -0.006170794367790222, 0.016848793253302574, 0.010401240549981594, 0.006295487750321627, -0.0032906848937273026, -0.002817763015627861, -0.00857037864625454, -0.009914632886648178, -0.0013769478537142277, -0.01941564865410328, -0.012530148960649967, -0.01086351741105318, 0.0006398131372407079, 0.013174904510378838, 0.01971977949142456, -0.021678375080227852, 0.013515530154109001, -0.00573284737765789, -0.01077836100012064, -0.034743793308734894, 0.006331983022391796, -0.02267592027783394, 0.013795329257845879, -0.01633785478770733, -0.02851521410048008, 0.01874656230211258, 0.003941522445529699, -0.002495385240763426, 0.04055875539779663, 0.0020072569604963064, -0.02065649814903736, 0.0037043013144284487, -0.017736852169036865, -0.010650627315044403, -0.005933573003858328, -0.00625899201259017, 0.00970782432705164, -0.010747948661446571, -0.03819870576262474, -0.02895316109061241, 0.011502190493047237, -0.003369758604094386, -0.0018719191430136561, 0.006064348854124546, -0.0004919299972243607, 0.014549571089446545, -0.01008494570851326, 0.007962118834257126, -0.005717640742659569, 0.016763636842370033, -0.01046814862638712, 0.013004591688513756, 0.006277239881455898, 0.0025562113150954247, 0.01583908125758171, -0.019877925515174866, 0.004443336743861437, 0.0025927068199962378, -0.022481277585029602, 0.041483309119939804, 0.005681145470589399, -0.006003522779792547, 0.011368373408913612, -0.010121440514922142, -0.0018658365588635206, -0.019975246861577034, -0.005453047808259726, 0.001461343839764595, 0.018929041922092438, -0.0015252111479640007, -0.016301359981298447, -0.0020969752222299576, 0.004452460911124945, -0.01343037374317646, 0.019111519679427147, 0.011295381933450699, -0.031264547258615494, -0.008588626980781555, -0.010973004624247551, 0.010443818755447865, 0.01396564207971096, -0.01039515808224678, -0.03467079997062683, -0.00781005434691906, 0.006502295844256878, -0.023527484387159348, 0.02257859893143177, 0.017639530822634697, 0.0022946596145629883, -0.016666315495967865, 0.018101807683706284, 0.012055707164108753, 0.017189418897032738, 0.01940348371863365, -0.019975246861577034, -0.01434276346117258, 0.005602071527391672, 0.016143212094902992, 0.004352097865194082, -0.010303919203579426, 0.01535247452557087, 0.03673888370394707, -0.002273370511829853, -0.023259850218892097, 0.02155672200024128, -0.022834068164229393, 0.0048660775646567345, -0.014269771985709667, -0.018624911084771156, 0.006532708648592234, 0.0015982022741809487, -0.0020848100539296865, 0.020741654559969902, -0.00011794535384979099, 0.02530360221862793, -0.019512970000505447, 0.013381713069975376, 0.010784444399178028, -0.007761393208056688, 0.011903641745448112, -0.014987518079578876, -0.005227991845458746, 0.003266354324296117, 0.004972522612661123, 0.03150784969329834, 0.026568781584501266, -0.014598231762647629, 0.00242695608176291, 0.0010028681717813015, -0.02690940722823143, 0.04075339809060097, -0.011027747765183449, -0.010808774270117283, 0.011082490906119347, 0.010954756289720535, -0.0066239479929208755, -0.01012752391397953, 0.0074876765720546246, -0.010839187540113926, 0.01669064536690712, -0.0037316731177270412, -0.01046814862638712, -0.0040722982957959175, 0.0037438382860273123, -0.001992050325497985, -0.012414580211043358, -0.0186005812138319, 0.0001400898036081344, 0.013479034416377544, -0.006009605713188648, 0.0010363224428147078, 0.012341588735580444, -0.010900013148784637, 0.014537406153976917, 0.017469218000769615, -0.01874656230211258, -0.014646893367171288, -0.002402625745162368, -0.02712838165462017, 0.022335294634103775, 0.0008591667865402997, -0.009829476475715637, -0.008193258196115494, 0.012736957520246506, -0.025863200426101685, -0.013539860025048256, 0.015218657441437244, 0.0013115599285811186, -0.011818485334515572, 0.001911455998197198, 0.0065935347229242325, 0.004364263266324997, -0.02673909440636635, -0.004300395958125591, 0.0020315872970968485, 0.014099459163844585, -0.008503470569849014, -0.015498456545174122, -0.01450091041624546, 0.0036830122116953135, 0.009239464066922665, -0.025376593694090843, -0.011508272960782051, -0.020802481099963188, -0.015680935233831406, 0.009154307655990124, 0.01495102234184742, 0.034427497535943985, -0.005443924106657505, 0.027687979862093925, 0.0059974403120577335, 0.0014902361435815692, 0.00432776752859354, -0.00952534656971693, -0.002764540258795023, -0.019427813589572906, 0.015607942827045918, 0.0023752539418637753, 0.005395263433456421, -0.004443336743861437, -0.023186858743429184, 0.0072200424037873745, 0.019671117886900902, 0.025498244911432266, 0.010407323017716408, 0.01647167280316353, -0.0018293409375473857, -0.01001803670078516, -0.0029500594828277826, 0.02744467556476593, 0.007189629133790731, 0.004236528649926186, 0.0006318297237157822, -0.017651695758104324, 0.0026717805303633213, -0.019208841025829315, -0.011106821708381176, -0.01655682735145092, 0.025814540684223175, -0.014634727500379086, 0.0011275613214820623, 0.019476475194096565, -0.005632484331727028, -0.006776012945920229, 0.006824673619121313, -0.02187301777303219, -0.012651801109313965, -0.00865553505718708, -0.00899007823318243, -0.027687979862093925, 0.008953582495450974, 0.002229271689429879, -0.018235625699162483, 0.0037985816597938538, -0.03493843600153923, 0.02468317747116089, 0.011623842641711235, -0.0020407112315297127, -0.01180023793131113, 0.00717138173058629, 0.0067091044038534164, 0.011289299465715885, 0.010918261483311653, -0.0008424396510235965, -0.005988316610455513, -0.0007952995365485549, 0.017457053065299988, 0.014172450639307499, -0.0060248118825256824, 0.0007542420062236488, 0.014999683946371078, 0.004452460911124945, -0.026033513247966766, -0.008175009861588478, -0.009628750383853912, -0.009963293559849262, 0.006988903507590294, -0.014038633555173874, -0.014379258267581463, 0.00861295685172081, 0.004817416425794363, -0.031970128417015076, 0.009233381599187851, -0.01779767870903015, 0.012043541297316551, 0.02552257664501667, 0.03780942037701607, -0.009598338045179844, 0.011015582829713821, -0.017104262486100197, 0.016568994149565697, -0.007749228272587061, 0.011167647317051888, -0.012110450305044651, 0.0018217377364635468, -0.008971829898655415, -0.015011848881840706, 0.009945045225322247, -0.0008682906627655029, 0.014476580545306206, -0.0019418690353631973, 0.005373974330723286, -0.009221216663718224, -0.014075128361582756, 0.025546906515955925, 0.007323446683585644, 0.021787861362099648, 0.013442538678646088, -0.00034803859307430685, -0.011514355428516865, -0.03038865327835083, -0.01605805568397045, 0.0006021770532242954, 0.006429304834455252, -0.01167250331491232, 0.0191358495503664, -0.0028679443057626486, 0.0063745612278580666, -0.002180611016228795, -0.01086351741105318, 0.004881283733993769, 0.0068672518245875835, -0.00834532268345356, 0.002448245184496045, -0.0006052183452993631, 0.009938962757587433, 0.01012752391397953, 0.009507098235189915, -0.0066239479929208755, 0.029123473912477493, 0.011356208473443985, 0.015899907797574997, 0.02453719452023506, 0.0028709855396300554, -0.004467667080461979, 0.026933738961815834, 0.01398997288197279, -0.0065935347229242325, 0.0022672880440950394, 0.02468317747116089, 0.003926316276192665, 0.013673677109181881, -0.03445182740688324, -0.004352097865194082, 0.0035096583887934685, -0.009689576923847198, -0.03182414546608925, -0.027031060308218002], "c94276a9-98a1-4349-84d0-b78b5e8d1b7e": [-0.0179319828748703, -0.029967470094561577, -0.007785416208207607, 0.01132076047360897, -0.027338296175003052, -0.010235907509922981, -0.02202889882028103, 0.022756388410925865, -0.031856391578912735, 0.025525953620672226, 0.00967433676123619, 0.01627279631793499, -0.032086122781038284, 0.002815831918269396, -0.011786608956754208, 0.00717279314994812, -0.011339904740452766, 0.03172875940799713, 0.03775288537144661, -0.026904355734586716, 0.07964097708463669, -0.006362344138324261, -0.020356949418783188, 0.01434558629989624, -0.014970972202718258, -0.01294165849685669, 0.013324548490345478, 0.004218163900077343, -0.021633246913552284, 0.022960595786571503, 0.006662274245172739, 0.013439415022730827, -0.0063814884051680565, 0.020305896177887917, 0.023305196315050125, -0.008576720952987671, -0.022411787882447243, 0.042015720158815384, 0.005583802703768015, -0.005912449210882187, -0.04467042163014412, 0.02264152094721794, 0.006036888342350721, 0.0007055533351376653, -0.027414875105023384, -0.0034204779658466578, 0.0033407092560082674, -0.012928895652294159, 0.01199081726372242, 0.004304314032196999, 0.0004191840416751802, 0.0006074379198253155, -0.00139754603151232, 0.013630859553813934, -0.0015116151189431548, -0.025155827403068542, -0.01629832200706005, 0.04770800843834877, 0.010012555867433548, -0.053349245339632034, 0.013898882083594799, -0.0029626060277223587, 0.000200717753614299, 0.011888713575899601, -0.016655685380101204, -0.002404225757345557, 0.029125113040208817, -0.0068664816208183765, -0.02922721765935421, -0.0016256842063739896, 0.021007860079407692, 0.0563102550804615, -0.025462139397859573, 0.017740538343787193, 0.009336117655038834, -0.011907857842743397, 0.017855405807495117, -0.023305196315050125, -0.008908557705581188, 0.0024058211129158735, -0.04653381556272507, 0.0031253339257091284, 0.0014430141309276223, -0.007038781885057688, 0.06789904087781906, 0.029329322278499603, -0.012635347433388233, -0.03338794782757759, 0.004865885246545076, -0.04464489594101906, -0.008615009486675262, -0.02451767958700657, 0.00027201094781048596, -0.02065049670636654, -0.006250667851418257, 0.0017533139325678349, 0.023024410009384155, 0.010669848881661892, 0.03862076997756958, -0.022513892501592636, -0.006592077668756247, 0.028742223978042603, 0.006260240450501442, 0.034306883811950684, 0.013605333864688873, 0.03328584507107735, -0.0006716516800224781, -0.020892994478344917, -0.027491452172398567, 0.026342784985899925, 0.022705337032675743, -0.033464524894952774, -0.007759890053421259, 0.01814895309507847, -0.03086087852716446, -0.03969286009669304, -0.039565227925777435, -0.003179576713591814, -0.002854120684787631, -0.024734649807214737, 0.04081600159406662, -0.0204462893307209, -0.02093128301203251, 0.01959116943180561, -0.013030999340116978, -0.022156529128551483, -0.02401992306113243, -0.01737041212618351, 0.019757088273763657, 0.00910000316798687, -0.03583844006061554, -0.030171677470207214, -0.004256452899426222, 0.0209695715457201, -0.005325352307409048, -0.02398163452744484, 0.04058626666665077, 0.05314503610134125, -0.025232406333088875, 0.03553212806582451, 0.012731069698929787, -0.028231704607605934, -0.009533943608403206, 0.004269215743988752, 0.012105683796107769, 0.001605742028914392, -0.03114166483283043, 0.05605499446392059, -0.011531350202858448, -0.004400036297738552, -0.0425262413918972, -0.0148943942040205, 0.02922721765935421, 0.032137177884578705, 0.002512711100280285, 0.0056220912374556065, -0.005551895126700401, 0.03451108932495117, -0.007810941897332668, 0.013554281555116177, 0.0211993046104908, -0.03614475205540657, -0.00303599308244884, 0.0014007367426529527, 0.06708221137523651, 0.028614595532417297, 0.028869854286313057, 0.060802824795246124, -0.005242392886430025, 0.019157228991389275, 0.035991594195365906, -0.007479104679077864, 0.003532154019922018, -0.015532542951405048, 0.04587014019489288, -0.03560870513319969, 0.04931614547967911, 0.013222443871200085, 0.026904355734586716, 0.004945653490722179, 0.00827040895819664, -0.03726789355278015, -0.001056136330589652, -0.00854481291025877, 0.008653298951685429, 0.057739708572626114, -0.020216556265950203, 0.03668079525232315, -0.017255544662475586, 0.010637941770255566, 0.004154349211603403, -0.007632260210812092, -0.029354847967624664, 0.02099509723484516, -0.004339412320405245, -0.019221043214201927, 0.0044702328741550446, 0.035761862993240356, -0.0005763281951658428, 0.013554281555116177, -0.0011039975797757506, -0.04472147300839424, -0.033796362578868866, 0.0346897728741169, -0.016323847696185112, 0.005334924440830946, -0.006636748090386391, -0.021850217133760452, -0.0031365016475319862, -0.03609370067715645, 0.014077563770115376, -0.0212631206959486, 0.019514592364430428, -0.00016362535825464875, -0.01984643004834652, -0.010918727144598961, -0.03356663137674332, 0.019131703302264214, -0.00031149640562944114, -0.0206760223954916, -0.010995305143296719, -0.008378894068300724, -0.015634646639227867, -0.031090611591935158, -0.05125611647963524, -0.03588949143886566, 0.004897792357951403, 0.014626371674239635, -0.04296018183231354, 0.016362136229872704, 0.03371978551149368, 0.006324055138975382, 0.02864012122154236, -0.02456873096525669, -0.009182961657643318, 0.019374199211597443, -0.01432006061077118, -0.003548107575625181, 0.03035035915672779, -0.015621883794665337, 0.008640535175800323, 0.008717113174498081, 0.0029115541838109493, 0.011461153626441956, 0.014115852303802967, 0.009329736232757568, 0.018748814240098, 0.022539418190717697, 0.002118654316291213, -0.027516977861523628, -0.015149653889238834, 0.00289240968413651, -0.015022024512290955, -0.023241382092237473, -0.02677672542631626, 0.03336242213845253, -0.0029354847501963377, -0.015851616859436035, -0.021926794201135635, -0.0033151833340525627, -0.02260323241353035, -0.025577006861567497, 0.02866564691066742, 0.01336283702403307, 0.03234138339757919, -0.015507017262279987, 0.006324055138975382, -0.018276583403348923, -0.014243482612073421, 0.012092920951545238, -0.034026097506284714, 0.009833874180912971, -0.010516692884266376, 0.014562556520104408, 0.00185860856436193, -0.0014095113147050142, 0.023241382092237473, -0.0033853796776384115, -0.0010880437912419438, -0.013120340183377266, 0.008825598284602165, 0.010823004879057407, 0.02981431409716606, -0.0035385354422032833, -0.009782821871340275, 0.023815715685486794, -0.034306883811950684, -0.01679607853293419, -0.02313927747309208, -0.012329036369919777, 0.01985919289290905, -0.0037555061280727386, 0.016936469823122025, -0.005577420815825462, 0.02339453622698784, -0.016617396846413612, -0.0010800668969750404, 0.006512308958917856, -0.03885050117969513, 0.007523775100708008, 0.010018937289714813, -0.002327647991478443, 0.03754867985844612, -0.019463540986180305, 0.0267511997371912, -0.024632545188069344, 0.032111652195453644, 0.019501829519867897, -0.026598043739795685, 0.02148009091615677, 0.014664661139249802, -0.03195849433541298, -0.03172875940799713, -0.02616410329937935, -0.010069988667964935, 0.048677995800971985, -0.001578620751388371, -0.00210110517218709, -0.009929596446454525, -0.027236193418502808, 0.026049235835671425, 0.005341305863112211, -0.05508501082658768, 0.00620280671864748, 0.02011445164680481, -0.019157228991389275, 0.05209847167134285, 0.010121040977537632, -0.003669355995953083, 0.002094723517075181, -0.029788788408041, 0.014651897363364697, -0.010018937289714813, -0.0035385354422032833, -0.011103790253400803, -0.007249371148645878, -0.022016135975718498, -0.03614475205540657, -0.014919919893145561, -0.02368808537721634, -0.032366909086704254, -0.017434226348996162, -0.013962697237730026, -0.019948532804846764, 0.02403268590569496, -0.014728475362062454, -0.017025811597704887, -0.017868168652057648, 0.019221043214201927, -0.010018937289714813, 0.0008040675893425941, -0.04364938288927078, 0.018034087494015694, 0.021109964698553085, 0.02641936205327511, -0.04551277682185173, -0.026623569428920746, -0.003267322201281786, 0.004719110671430826, -0.024951620027422905, 0.014281771145761013, -0.023266907781362534, -0.014626371674239635, -0.007606734521687031, -0.0075812083669006824, 0.059424422681331635, 0.0049360813573002815, -0.0025238788221031427, 0.028538016602396965, 0.018863679841160774, -0.005689097102731466, 0.012329036369919777, 0.006968585308641195, -0.008927702903747559, 0.002000596607103944, -0.027414875105023384, 0.041785988956689835, -0.03389846906065941, -0.03139692544937134, 0.021952319890260696, 0.0019942151848226786, 0.02641936205327511, 0.027389349415898323, -0.021135490387678146, 0.05066901817917824, 0.027108563110232353, -0.030120626091957092, -0.010389063507318497, -0.02094404585659504, 0.014600845985114574, -0.018353160470724106, -0.011933383531868458, -0.0067388517782092094, -0.00839165784418583, -0.04543619975447655, 0.015251757577061653, 0.014103089459240437, -0.009265921078622341, 0.009323354810476303, 0.01392440777271986, 0.01280126627534628, -0.00030511492514051497, 0.014371111989021301, -0.016170691698789597, 0.04939272254705429, -0.023828478530049324, -0.02541108801960945, 0.01679607853293419, -0.007574826944619417, 0.004042672924697399, 0.017306597903370857, 0.015609120950102806, -0.013732963241636753, 0.017153441905975342, 0.053400296717882156, 0.014281771145761013, -0.0023579599801450968, -0.012239695526659489, -0.035966068506240845, -0.011039975099265575, 0.07050268352031708, 0.05712708458304405, 0.006442112848162651, 0.05130716785788536, -0.0004658486577682197, 0.018097901716828346, 0.040969155728816986, 0.02649594098329544, -0.0018713715253397822, 0.0021441802382469177, 0.017204493284225464, 0.008066201582551003, -0.000599461083766073, -0.010752808302640915, 0.015647409483790398, -0.020356949418783188, -0.002265428425744176, 0.005941166076809168, 0.026598043739795685, -0.013847829774022102, 0.005117953754961491, -0.016043061390519142, 0.003024825593456626, 0.002022931817919016, 0.011958909220993519, -0.021403511986136436, -0.02864012122154236, -0.005650808103382587, 0.0052998261526227, -0.009048950858414173, -0.0035130095202475786, 0.011493060737848282, -0.04132651910185814, 0.027363823726773262, -0.001936781802214682, 0.020293133333325386, 0.007459959946572781, 0.003436431521549821, 0.015136891044676304, -0.017523568123579025, -0.0034396222326904535, 0.017983034253120422, -0.006892007775604725, 0.004719110671430826, -0.0020165503956377506, -0.05222610384225845, 0.011199512518942356, -0.004374510608613491, -0.003793794894590974, -0.008468234911561012, -0.020510103553533554, 0.01652805507183075, -0.005066901911050081, 0.009916833601891994, -0.022233106195926666, -0.035149239003658295, 0.013062907382845879, -0.022730862721800804, 0.019910244271159172, -0.013062907382845879, -0.0031109757255762815, -0.00935526192188263, -0.013975460082292557, 0.027950920164585114, -0.021339697763323784, -0.020267607644200325, -0.025691872462630272, -0.016106877475976944, 0.03780393674969673, -0.0040394822135567665, 0.0425262413918972, 0.0133755998685956, 0.020573919638991356, 0.027134088799357414, 0.005650808103382587, -0.00772160105407238, 0.031320344656705856, -0.030707722529768944, -0.029890893027186394, -0.031830865889787674, 0.015532542951405048, 5.6236869568238035e-05, -0.034051623195409775, 0.03139692544937134, -0.005650808103382587, -0.023828478530049324, -0.02787434123456478, 0.007096215151250362, 0.034026097506284714, 0.003602350363507867, -0.023369010537862778, 0.022794676944613457, -0.03287743031978607, -0.019489066675305367, -0.000561172142624855, 0.006834574043750763, 0.013030999340116978, -0.009380788542330265, 0.010363537818193436, -0.031218241900205612, 0.00896599143743515, -0.020471815019845963, 0.0036278762854635715, 0.009323354810476303, -0.014434927143156528, -0.03091192990541458, -0.032979533076286316, -0.005679524969309568, 0.033541105687618256, -0.01823829486966133, 0.004355365876108408, 0.009744533337652683, 0.008972372859716415, -3.975966592406621e-06, 0.029023010283708572, -0.0029179356060922146, -0.004518094006925821, 0.001368829282000661, 0.009859399870038033, 0.02812960185110569, -0.010299722664058208, 0.03415372595191002, -0.013988222926855087, 0.003013657871633768, -0.009731770493090153, 0.04515541344881058, -0.022730862721800804, 0.04982666298747063, 0.0005655594286508858, 0.021377986297011375, -0.025525953620672226, 0.006442112848162651, -0.031550079584121704, -0.010452878661453724, 0.015226231887936592, -0.053400296717882156, 0.05768865719437599, -0.014843342825770378, -0.005909258499741554, -0.018531842157244682, -0.005555085837841034, 0.026598043739795685, 0.023905055597424507, 0.03280084952712059, -0.03280084952712059, -0.02313927747309208, -0.014409401454031467, 0.006726088933646679, 0.002062816172838211, 0.010963397100567818, 0.02759355679154396, 0.011225038208067417, 0.04413437470793724, -0.006974967196583748, 0.019182754680514336, 0.008206594735383987, 0.0029849412385374308, 0.014154141768813133, -0.01823829486966133, -0.0018458456033840775, 0.029941944405436516, -0.005519987549632788, 0.015813328325748444, 0.010963397100567818, 0.022973358631134033, 0.017000285908579826, -0.022220343351364136, -0.0036438300739973783, 0.013133103027939796, 0.005957119632512331, 0.020344184711575508, 0.011780227534472942, 0.02925274334847927, -0.01629832200706005, -0.0011534540681168437, 0.004361747298389673, -0.0030375886708498, 0.023215854540467262, -0.009597758762538433, -0.015928195789456367, -0.001567453145980835, -0.008480998687446117, 0.011850424110889435, -0.01073366403579712, -0.027440400794148445, 0.03382188826799393, -0.019080650061368942, 0.0013568639988079667, -0.00413520447909832, 0.024428337812423706, 0.034638721495866776, 0.009821111336350441, 0.010529455728828907, -0.015583595260977745, 0.026036472991108894, 0.008512905798852444, -0.03701263293623924, 0.03826340660452843, 0.03670632094144821, 0.005960310343652964, 0.006668655667454004, -0.05605499446392059, 0.04936719685792923, -0.017434226348996162, 0.005468935705721378, 0.011276090517640114, -0.005599756259471178, 0.009616903029382229, -0.03058009408414364, 0.018021324649453163, 0.017166204750537872, 0.002809450263157487, 0.01931038498878479, -0.019374199211597443, 0.047554854303598404, -0.0342303030192852, -0.019986821338534355, 0.0435728058218956, -0.03412820026278496, -0.03882497549057007, -0.022143766283988953, 0.011901476420462132, 0.0022510699927806854, 0.021594956517219543, -0.011116553097963333, 0.03282637894153595, -0.0407649502158165, -0.012871462851762772, 0.03356663137674332, 0.00648040184751153, -0.04387911409139633, -0.0010130612645298243, 0.028895379975438118, 0.04267939552664757, -0.009533943608403206, -0.02726171910762787, -0.019361436367034912, 0.029303794726729393, 0.0020484577398747206, 0.011914239265024662, 0.048371683806180954, 0.0047254920937120914, 0.004374510608613491, 0.009967884980142117, 0.0007601948454976082, 0.03315821290016174, -0.003959713503718376, 0.0017198111163452268, -0.012916132807731628, 0.040918104350566864, 0.010280578397214413, 0.01201634295284748, 0.010727282613515854, -0.004080961924046278, 0.020854704082012177, -0.010931489989161491, -0.01980813965201378, 0.00015195918967947364, -0.0023451971355825663, -0.0074727232567965984, -0.03479187563061714, 0.0088192168623209, -0.022488364949822426, 0.03785499185323715, -0.01929762214422226, -0.002424965612590313, -0.025002671405673027, 0.027491452172398567, -0.011875949800014496, -0.016438715159893036, 0.0059985993430018425, 0.023037172853946686, -0.05237925797700882, 0.030222730711102486, -0.02013997733592987, 0.019629457965493202, 3.8189220504136756e-05, -0.00856395810842514, 0.038748398423194885, -0.012009961530566216, -0.044542789459228516, -0.014498742297291756, 0.006553788669407368, -0.01983366720378399, 0.00964881107211113, 0.042883604764938354, -0.025257932022213936, -0.016732262447476387, -0.005800772923976183, 0.021901268512010574, -0.008251264691352844, 0.00764502352103591, 0.0005559871788136661, 0.010165710933506489, 0.00853205006569624, 0.009967884980142117, -0.0201527401804924, 0.0008351773140020669, 0.005765675101429224, -0.014664661139249802, 0.0017230019439011812, -0.00216651544906199, -0.003449194598942995, -0.057178135961294174, -0.03338794782757759, 0.03494502976536751, 0.0584033839404583, 0.020318659022450447, -0.02925274334847927, -0.004837168380618095, 0.032366909086704254, -0.005028612911701202, 0.0179319828748703, 0.008500142954289913, 0.01543043926358223, -0.0030455654487013817, 0.007810941897332668, -0.014383874833583832, 0.008825598284602165, -0.0046903942711651325, -0.01447321567684412, 0.0035576799418777227, 0.04170940816402435, -0.001517198863439262, 0.021965084597468376, 0.0050732833333313465, 0.008480998687446117, 0.011397338472306728, 0.01905512437224388, 0.025270694866776466, 0.05488080158829689, -0.02703198604285717, -0.0019128512358292937, 0.027721187099814415, -0.007179174572229385, 0.003541726153343916, -0.0088192168623209, 0.014843342825770378, -0.016732262447476387, 0.012201406061649323, 0.0006273800972849131, 0.005890113767236471, -0.014575320295989513, -0.03739552199840546, -0.008583102375268936, 0.0032481777016073465, -0.015111365355551243, 0.013669148087501526, 0.04027995467185974, -0.00038647890323773026, 0.013745726086199284, 0.022220343351364136, 0.027159614488482475, 0.034868452697992325, 0.01657910645008087, -0.01650252938270569, 0.021901268512010574, 0.02368808537721634, -0.040407586842775345, 0.004728682804852724, -0.02455596812069416, -0.009999793022871017, 0.006512308958917856, -0.022973358631134033, -0.024198604747653008, -0.0019160419469699264, 0.019667748361825943, 0.02450491674244404, -0.00880645401775837, 0.005689097102731466, -0.00509242806583643, 0.012731069698929787, -0.016208980232477188, -0.009457365609705448, -0.0042596436105668545, -0.02173534967005253, -0.02237349934875965, -0.04163283109664917, -0.011639835312962532, -0.014996497891843319, -0.0032433916348963976, -0.045946717262268066, 0.02292230725288391, 0.026138577610254288, 0.012756595388054848, -0.018327634781599045, 0.03313268721103668, -0.026853304356336594, 0.0016894991276785731, 0.019974058493971825, -0.01960393227636814, -0.004948844201862812, -0.0024488961789757013, 0.03397504612803459, -0.02043352648615837, -0.03839103505015373, -0.028767749667167664, -0.0008830385049805045, 0.014128616079688072, -0.002799878129735589, -0.024198604747653008, 0.018123427405953407, 0.011231419630348682, -0.014792290516197681, -0.017306597903370857, -0.03234138339757919, 0.022131001576781273, -0.024402812123298645, 0.009833874180912971, 0.016910944133996964, -0.018378688022494316, -0.011627072468400002, -0.021952319890260696, 0.012271602638065815, 0.0031157617922872305, -0.0016751406947150826, -0.004597862716764212, -0.01393717061728239, -0.04472147300839424, 0.02228415757417679, -0.04349622502923012, -0.03285190463066101, 0.023356247693300247, 0.013094814494252205, 0.02644488774240017, -0.0118568055331707, 0.006046460475772619, 0.01500926073640585, 0.03798262029886246, -0.0121503546833992, 0.006183662451803684, -0.06703115254640579, 0.011939764954149723, -0.026393836364150047, -0.010644323192536831, 0.013720200397074223, -0.03578738868236542, 0.021888505667448044, -0.013656385242938995, 0.019450776278972626, 0.011850424110889435, 0.0037044540513306856, -0.009042569436132908, -0.01201634295284748, -0.01294165849685669, 0.01488163135945797, -0.0030104671604931355, 0.022245869040489197, -0.004629769828170538, 0.012226931750774384, -0.0046712495386600494, 0.004020337946712971, 0.05324713885784149, 0.0009101597825065255, -0.056106045842170715, -0.01624727062880993, 0.020561156794428825, 0.0034396222326904535, -0.016183454543352127, 0.0009269111906178296, -0.01434558629989624, 0.02396887168288231, 0.010101896710693836, -0.007281278260052204, -0.06417224556207657, -0.0018490363145247102, 0.02511753886938095, -0.0033758075442165136, 0.004684012848883867, -0.006263431161642075, 0.002539832377806306, 0.0027520169969648123, -0.01627279631793499, -0.0037363616283982992, -0.025538716465234756, -0.016400424763560295, 0.023330722004175186, -0.006770759355276823, 0.005823108367621899, -0.03522581607103348, -0.0025781213771551847, -0.037906043231487274, -0.017995797097682953, -0.006994111463427544, -0.015940958634018898, -0.03744657337665558, 0.03116719052195549, -0.005634854547679424, -0.018914731219410896, 0.02177363820374012, -0.004891410935670137, 0.005526368971914053, -0.01825105771422386, -0.01532833557575941, 0.0306056197732687, 0.02424965612590313, -0.013975460082292557, 0.018378688022494316, -0.011665361002087593, -0.0032737036235630512, 0.016400424763560295, -0.0076003530994057655, -0.009916833601891994, 0.006789903622120619, -0.004189447034150362, 0.005551895126700401, -0.0012356156948953867, -0.005669952370226383, 0.011888713575899601, 0.02761908248066902, -0.01573675125837326, 0.008876650594174862, 0.021365223452448845, -0.02761908248066902, 0.011403719894587994, -0.018429739400744438, -0.0023946536239236593, -0.009419077076017857, 0.004173493478447199, -0.01488163135945797, -0.013962697237730026, -0.03892708197236061, 0.02202889882028103, -0.01680884137749672, 0.021850217133760452, -0.02094404585659504, -0.03647658973932266, 0.022692574188113213, -0.008334224112331867, -0.010976159945130348, -0.014371111989021301, 0.043138861656188965, 0.03221375495195389, 0.00880645401775837, 0.030503515154123306, 0.011588783003389835, 0.005306207574903965, -0.0053764041513204575, -0.0005184959736652672, 0.0043138861656188965, -0.005325352307409048, -0.028282757848501205, 0.007102596573531628, -0.007274896837770939, -0.029635632410645485, 0.02287125587463379, -0.036272380501031876, 0.011173986829817295, 0.019399724900722504, 0.024607019498944283, 0.019169991835951805, -0.024441100656986237, 0.0037108357064425945, -0.0002046064764726907, -0.01682160422205925, -0.0034619574435055256, -0.021850217133760452, -0.010682611726224422, -0.004199019633233547, -0.006764377932995558, 0.029635632410645485, -0.012737451121211052, 0.004779735114425421, -0.027465926483273506, 0.005535941570997238, 0.027338296175003052, 0.0035991596523672342, -0.008997898548841476, -0.0016591870225965977, 0.005551895126700401, 0.015570832416415215, -0.007842849008738995, 0.003240200923755765, 0.008098108693957329, 0.012660873122513294, 0.009119147434830666, 0.007925808429718018, -0.01544320210814476, 0.015570832416415215, -0.01955288089811802, -0.017038574442267418, -0.003141287714242935, -0.023088226094841957, 0.019361436367034912, 0.006770759355276823, -0.017013048753142357, -0.004358556587249041, -0.022692574188113213, 0.027465926483273506, 0.025219643488526344, -0.051996368914842606, 0.0076003530994057655, -0.006694181356579065, -0.011952527798712254, -0.001880943775177002, 0.0030391840264201164, -0.003206697991117835, -0.04270492121577263, -0.04058626666665077, 0.006148564163595438, -0.01901683583855629, -0.006936678197234869, -0.00026543004787527025, -0.034638721495866776, -0.0014613608364015818, 0.014039275236427784, -0.008615009486675262, 0.018263820558786392, 0.014639134518802166, -0.007804560475051403, -0.036910530179739, -0.02206718735396862, -0.01684712991118431, -0.004256452899426222, 0.005950738210231066, -0.014447689987719059, 0.028512490913271904, -0.044313058257102966, -0.024338997900485992, -0.013222443871200085, 0.020037874579429626, 0.012794884853065014, 0.00825764611363411, -0.003784222761169076, -0.004508521873503923, 0.008047057315707207, -0.004888220224529505, -0.027134088799357414, -0.004467042163014412, 0.01879986561834812, 0.010420970618724823, -0.01035715639591217, 0.004224545322358608, -0.01626003347337246, 0.00203569489531219, -0.008723494596779346, -0.02127588354051113, 0.008997898548841476, -0.007925808429718018, 0.017727775499224663, 0.012297128327190876, 0.011984435841441154, 0.021594956517219543, -0.03280084952712059, 0.016719499602913857, -0.01488163135945797, -0.006004980765283108, 0.036808427423238754, 0.028180653229355812, -0.005657189525663853, -0.009591377340257168, -0.004929699935019016, -0.002799878129735589, 0.01631108485162258, -0.003359853755682707, -0.00544340955093503, -0.017025811597704887, 0.0004973572795279324, 0.022450076416134834, -0.001077673863619566, -0.012571532279253006, -0.022156529128551483, 0.003289657412096858, 0.010740045458078384, -0.0057050506584346294, -0.013439415022730827, 0.0005400334484875202, 0.015226231887936592, -0.004412799142301083, 0.02513030171394348, -0.02454320527613163, 0.006566551513969898, 0.02538556233048439, 0.01104635652154684, 0.004888220224529505, -0.010121040977537632, -0.009329736232757568, 0.03640001267194748, 0.020229319110512733, 0.01338836271315813, 0.0036597836297005415, -0.009565851651132107, 0.004301123321056366, 0.0025430230889469385, 0.005251965019851923, 0.03063114546239376, -0.011863186955451965, 0.0010433733696117997, -0.006821811199188232, 0.018621183931827545, 0.05385976284742355, 0.0077088382095098495, -0.016170691698789597, 0.025832265615463257, 0.013962697237730026, -0.013299021869897842, -0.026904355734586716, 0.003487483598291874, -0.016362136229872704, 0.029712211340665817, -0.009144673123955727, -0.020331421867012978, -0.01791922003030777, 0.008710731752216816, -0.014422164298593998, -0.011588783003389835, -0.0013672339264303446, -0.001375210820697248, 0.012258839793503284, 0.010446497239172459, 0.02148009091615677, -0.0043426030315458775, 0.028257232159376144, -0.014205193147063255, -0.018889205530285835, -0.027414875105023384, 0.004428753163665533, -0.004224545322358608, -0.016094114631414413, 0.004297932609915733, -0.0024792084004729986, 0.002699369564652443, 0.018570132553577423, 0.0031492647249251604, -0.005280681885778904, -0.014537030830979347, -0.02922721765935421, -0.02285849116742611, 0.0033407092560082674, -0.02146732807159424, -0.00018007763719651848, -0.01789369434118271, -0.0025063296779990196, -0.013094814494252205, -0.03997364267706871, 0.006317673716694117, 0.0012794884387403727, -0.011965290643274784, 0.01659187115728855, 0.007313185837119818, -0.037369996309280396, -0.0032306285575032234, 0.010740045458078384, -0.03287743031978607, -0.006604840513318777, -0.013643622398376465, -0.01544320210814476, -0.013464940711855888, 0.0031157617922872305, -0.010516692884266376, 0.003042374737560749, 0.006681418512016535, 0.010803860612213612, 0.018327634781599045, -0.017000285908579826, 0.022730862721800804, -0.005385976284742355, -0.015889907255768776, -0.017536330968141556, 0.013669148087501526, 0.016157928854227066, -0.016987523064017296, -0.026087526232004166, -0.014549793675541878, 0.002282977569848299, 0.006027315743267536, -0.03908023610711098, 0.00950203649699688, 0.008717113174498081, 0.019527355208992958, 0.003548107575625181, -0.018429739400744438, -0.010191237553954124, -0.022552181035280228, 9.517392027191818e-05, 0.027721187099814415, -0.003465148387476802, -0.00813001673668623, 0.008736257441341877, 0.017740538343787193, -0.016132403165102005, -0.014537030830979347, -0.002188850659877062, -0.0028078549075871706, -0.014256245456635952, 0.007970479317009449, -0.016106877475976944, -0.006847337353974581, 0.01087405625730753, -0.0037331709172576666, -0.009036188013851643, 0.008002386428415775, -0.007989623583853245, -0.018059613183140755, 0.01712791621685028, 0.017242781817913055, 0.02810407616198063, -0.039590753614902496, -0.011269709095358849, -0.01005084440112114, 0.04546172544360161, 0.025845028460025787, 0.02892090566456318, 0.00951479934155941, -0.0018953020917251706, -0.005583802703768015, 0.008697968907654285, 0.01818724162876606, -0.005153052043169737, -0.021977847442030907, 0.00592840276658535, 0.011154841631650925, 0.007702456787228584, 0.01129523478448391, 0.0038320838939398527, 0.02038247510790825, -0.00870435032993555, -0.029431425034999847, -0.0005184959736652672, -0.01266725454479456, -0.00420221034437418, -0.006046460475772619, 0.005644426681101322, -0.0017182157607749104, -0.005752911791205406, 0.03328584507107735, -0.02237349934875965, 0.003975667525082827, 0.009495655074715614, -0.007377000991255045, -0.018850916996598244, 0.01739593781530857, -0.005542322993278503, 0.007759890053421259, -0.019476303830742836, 0.009412695653736591, -0.031575605273246765, 0.024402812123298645, -0.00100109598133713, -0.005740148946642876, -0.023649796843528748, -0.012067395262420177, -0.004406417720019817, -0.000324658234603703, -0.022730862721800804, -0.03029930777847767, 0.015915432944893837, -0.014741238206624985, -0.006167708896100521, -0.02950800396502018, -0.014000985771417618, -0.012922514230012894, -0.03221375495195389, 0.01283955480903387, 0.0269809328019619, 0.018570132553577423, 0.00964881107211113, -0.011301616206765175, -0.025589769706130028, 0.009489273652434349, 0.022182054817676544, 0.03009510040283203, 0.008672443218529224, -0.025206880643963814, -0.027925394475460052, -0.011327141895890236, 0.011218656785786152, 0.031881917268037796, -0.026929881423711777, 0.009955122135579586, 0.01061241514980793, 0.019986821338534355, 0.0019431632244959474, -0.003493865020573139, -0.007345093414187431, 0.008059820160269737, -0.027236193418502808, -0.005519987549632788, 0.013732963241636753, -0.006193234585225582, -0.03244348615407944, 0.04270492121577263, -0.03280084952712059, 0.00025127112166956067, 0.011282471939921379, -0.010708137415349483, -0.0012276389170438051, 0.037369996309280396, 0.003219461068511009, -0.04747827351093292, -0.006014552898705006, 0.013503230176866055, -0.009763677604496479, 0.016132403165102005, -0.020561156794428825, -0.007300422992557287, 4.0432711102766916e-05, -0.00579758221283555, -0.01214397232979536, -0.006872863043099642, 0.01531557273119688, 0.017013048753142357, -0.0058071548119187355, 0.02536003477871418, 0.005334924440830946, 0.050388235598802567, 0.00044949608854949474, 0.012865081429481506, -0.001100009074434638, -0.009061713702976704, 0.015366624109447002, 0.032392434775829315, 0.003994811791926622, -0.014715712517499924, 0.008251264691352844, 0.0033630444668233395, -0.007319567259401083, -0.008646916598081589, 0.011480297893285751, 0.009221251122653484, 0.005488079972565174, 0.011837661266326904, -5.165017137187533e-05, 0.013962697237730026, 0.026368310675024986, 0.011997198686003685, -0.011327141895890236, -0.002386676613241434, 0.004393654875457287, 0.004712729249149561, -0.0040394822135567665, -0.009495655074715614, -0.020573919638991356, 0.008780928328633308, 0.0022893589921295643, -0.00938716996461153, -0.01766396127641201, -0.02098233439028263, -0.022462839260697365, -0.005711432080715895, -0.0033758075442165136, -0.023024410009384155, -0.023075463250279427, 0.02431347221136093, 0.011914239265024662, 0.009495655074715614, -0.017153441905975342, -0.01323520764708519, 0.03665526956319809, 0.017230018973350525, -0.014434927143156528, 0.01568569801747799, -0.0009165413212031126, -0.0212631206959486, -0.003007276449352503, 0.01794474571943283, -0.000297138059977442, 3.165816451655701e-05, 0.0021250357385724783, -0.01795750856399536, 0.033515576273202896, 0.031014034524559975, 0.0009947145590558648, 0.0021537523716688156, 0.0007402526680380106, 0.0012802861165255308, 0.003047160804271698, -0.01568569801747799, 0.010535838082432747, -0.014817816205322742, 0.0008072583004832268, 0.013732963241636753, 0.01280126627534628, -0.009368025697767735, 0.021850217133760452, -0.010950634256005287, -0.02506648749113083, -0.008480998687446117, -0.029176166281104088, 0.0036980726290494204, -0.007504630368202925, -0.0002068001194857061, 0.007798179052770138, 0.008181068114936352, -0.014677423983812332, 0.0023515785578638315, -0.00841718353331089, 0.007810941897332668, 0.013030999340116978, 0.0035991596523672342, 0.019744325429201126, -0.01116760540753603, -0.003806557971984148, -0.008385276421904564, -0.006802666932344437, 0.007179174572229385, 0.0035895872861146927, -0.0036502114962786436, 0.007185555994510651, -0.06412119418382645, -0.021952319890260696, 0.008455472066998482, 0.015149653889238834, -0.008398039266467094, -6.635751196881756e-05, 0.012903369963169098, -0.006796285510063171, 0.0024217749014496803, -0.010529455728828907, 0.014243482612073421, -0.008353368379175663, -0.019182754680514336, 0.0265214666724205, -0.016132403165102005, 0.020203793421387672, -0.03198402002453804, 0.018110664561390877, -0.02068878524005413, 0.017715012654662132, -0.007019637618213892, 0.014128616079688072, -0.004253262188285589, 0.037650782614946365, -0.019399724900722504, -0.0031923395581543446, -0.010714519768953323, -0.00399162108078599, -0.02398163452744484, -0.001193338306620717, 0.019080650061368942, -0.0265214666724205, 0.020254844799637794, 0.002745635574683547, 0.0014222742756828666, 0.03277532383799553, -0.014026511460542679, -0.0017517185769975185, -0.03313268721103668, 0.00012483786849770695, 0.016387661918997765, -0.009151054546236992, 0.011984435841441154, 0.01982090435922146, -0.021875742822885513, -0.009444602765142918, 0.00394056923687458, 0.00524877430871129, 0.00938716996461153, 0.021365223452448845, 0.00688562635332346, 0.002040480962023139, 0.03446003794670105, -0.011710031889379025, 0.028869854286313057, -0.02313927747309208, 0.014651897363364697, 8.914141653804109e-05, -0.0013058121548965573, -0.024645308032631874, -0.01392440777271986, -0.00011696072033373639, -0.021365223452448845, -0.03640001267194748, 0.010931489989161491, 0.005149861332029104, 0.021314172074198723, 0.012577913701534271, -0.008602246642112732, -0.015889907255768776, 0.007785416208207607, 0.020025111734867096, -0.008353368379175663, 0.009521180763840675, 0.006553788669407368, 0.0014398233033716679, -0.009725388139486313, 0.017791589722037315, 0.010644323192536831, -0.015838854014873505, -0.004106488078832626, 0.00786837562918663, -0.013286259025335312, 0.007121741306036711, 0.028742223978042603, -0.017983034253120422, 0.005692287813872099, -0.005985836498439312, -0.009712625294923782, -0.01488163135945797, -0.026674622669816017, -0.02541108801960945, -0.0025653582997620106, -0.010688993148505688, -0.02428794465959072, -0.0065186903811991215, 0.006770759355276823, -0.017319360747933388, -0.0023451971355825663, -0.014677423983812332, -0.021633246913552284, -0.009074476547539234, 0.018570132553577423, 0.01225245837122202, 0.00688562635332346, 0.014639134518802166, -0.0055678486824035645, 0.009406314231455326, -0.01871052384376526, 0.016081351786851883, -0.005050948355346918, 0.007964097894728184, -0.01654081791639328, -0.016910944133996964, -0.02478570118546486, -0.019654985517263412, 0.036859478801488876, -0.008289553225040436, 0.0057050506584346294, -0.01421795692294836, -0.017268307507038116, 0.015775039792060852, 0.017983034253120422, -0.0027711614966392517, 0.018914731219410896, 0.008774546906352043, -0.005417883861809969, -0.005966691765934229, -0.008659680373966694, 0.02118654176592827, 0.00039784592809155583, -0.018161715939641, -0.011078264564275742, 0.00013580605445895344, -0.00240741646848619, -0.01795750856399536, -0.0008311888668686152, -0.00880645401775837, 0.014843342825770378, -0.014409401454031467, 0.0009085644269362092, -0.03147350251674652, -0.004199019633233547, -0.010644323192536831, -0.012437521480023861, 0.00261800573207438, -0.016655685380101204, -0.021122727543115616, -0.020280370488762856, 0.014064800925552845, -0.010765571147203445, 0.025781214237213135, -0.005303016863763332, 0.009993410669267178, 0.01336283702403307, -0.0039565227925777435, -0.009017043747007847, -0.001452586380764842, 0.0330561101436615, 0.0105996523052454, -0.023866767063736916, 0.0066558923572301865, -0.029125113040208817, 0.042041245847940445, -0.007696075364947319, 0.006397442426532507, -0.020459052175283432, -0.006110275164246559, 0.002397844335064292, 0.007906664162874222, 0.0016480194171890616, -0.0019926198292523623, 0.014651897363364697, 0.008398039266467094, -0.004492567852139473, 0.006789903622120619, -0.016770552843809128, -0.01435834914445877, 0.009974266402423382, 0.012112065218389034, 0.01005084440112114, -0.0005488080205395818, 0.020242081955075264, 0.019718799740076065, -0.0010409803362563252, -0.01074642688035965, -0.0033407092560082674, -0.009744533337652683, 0.024364523589611053, -0.0048531219363212585, 0.010267815552651882, 0.021365223452448845, 0.019246568903326988, -0.029329322278499603, 0.0020117643289268017, -0.008634153753519058, 0.008985135704278946, 0.004227736033499241, -0.0014055228093639016, -0.0024393240455538034, 0.004141585901379585, -0.009808347560465336, -0.006040079053491354, 0.01734488643705845, 0.002992918249219656, 0.014128616079688072, 0.01543043926358223, -0.006662274245172739, 0.008902176283299923, 0.007428052835166454, -0.009865781292319298, 0.008289553225040436, 0.009329736232757568, 0.006700562778860331, -0.010408207774162292, 0.006030506920069456, 0.02237349934875965, 0.01169726811349392, -0.01735764928162098, -0.0018219150369986892, 0.017995797097682953, -0.0013217658270150423, 0.006566551513969898, -0.0068664816208183765, -0.0027472309302538633, 0.005287063308060169, -0.012507718056440353, 0.002150561660528183, -0.01624727062880993, -0.0064835925586521626, 0.0037204078398644924, -0.015468728728592396, -0.006170899607241154, -0.0306056197732687, 0.0040937247686088085, 0.01929762214422226, -0.03611922636628151, -0.016094114631414413, 0.0038639912381768227, -0.00579758221283555, 0.022501129657030106, 0.007740745786577463, 0.02376466430723667, 0.001528366468846798, 0.014741238206624985, -0.013669148087501526, 0.00146295630838722, 0.013630859553813934, -0.006177281029522419, 0.005124335177242756, 0.00716003030538559, 0.013184155337512493, -0.023573217913508415, -0.015162416733801365, 0.01090596430003643, 0.03341347351670265, 0.005465744994580746, 0.014575320295989513, -0.009393551386892796, -0.013873356394469738, -0.010695374570786953, 0.01432006061077118, -0.004668058827519417, 0.03035035915672779, -0.002255856292322278, -0.015047550201416016, 0.0031779813580214977, -0.006040079053491354, 0.00640063313767314, 0.01377125270664692, 0.005644426681101322, -0.0331837423145771, 0.0088192168623209, -0.0018107474315911531, -0.020012348890304565, -0.0012348180171102285, 0.006611221935600042, -0.025015436112880707, 0.03088640421628952, 0.013184155337512493, 0.01596648432314396, -0.006250667851418257, -0.006343199871480465, 0.0008044664282351732, 0.015111365355551243, -0.0013951529981568456, -0.0013153842883184552, 0.011761083267629147, -0.004119250923395157, -5.45916409464553e-05, -0.005063711199909449, 0.011818516999483109, -0.006553788669407368, -0.006467638537287712, 0.002817427273839712, 0.008212976157665253, -0.00023890698503237218, -0.002271809848025441, 0.014039275236427784, -0.019425250589847565, -0.0024839944671839476, 0.02099509723484516, -0.029584581032395363, 0.004856312647461891, -0.0035002464428544044, 0.015417676419019699, 0.015111365355551243, 0.009470129385590553, -0.018136190250515938, -0.010784715414047241, -0.02477293834090233, 0.014562556520104408, -0.004074580501765013, 0.020267607644200325, -0.009221251122653484, -0.010823004879057407, -0.010708137415349483, -0.007613115943968296, 0.0038416560273617506, -0.016719499602913857, 0.01706410013139248, -0.021046148613095284, -0.007153648883104324, 0.02761908248066902, -0.021926794201135635, -0.009750914759933949, -0.02010168880224228, 0.002322861924767494, 0.019731562584638596, 0.019757088273763657, 0.01227798406034708, 0.009942359291017056, -0.01959116943180561, 0.002013359684497118, 0.010267815552651882, 0.006011362187564373, -0.018110664561390877, -0.005743339657783508, -0.014945446513593197, 0.009361643344163895, 0.018416976556181908, -0.00358639657497406, 0.004301123321056366, -0.01600477285683155, 0.002255856292322278, 0.005689097102731466, -0.009048950858414173, -0.005826299078762531, -0.014179667457938194, 0.01651529222726822, -0.00489460164681077, -0.010714519768953323, 0.003564061364158988, -0.029661158099770546, -0.0133755998685956, 0.020765364170074463, -0.024492153897881508, -0.013988222926855087, -0.016732262447476387, 0.016655685380101204, 0.03147350251674652, 0.013835066929459572, -0.032417960464954376, -0.020293133333325386, 0.0019718799740076065, 0.021607721224427223, 0.0018825391307473183, -0.018557369709014893, -0.014396638609468937, -0.0003563662467058748, -0.027338296175003052, -0.01529004704207182, -0.0005216866848058999, -0.017293833196163177, -0.02838486060500145, -0.0022861682809889317, -0.002627577865496278, -0.016910944133996964, 0.010676230303943157, -0.0022287347819656134, 0.02232244797050953, 0.005877350922673941, -0.01928485929965973, 0.008455472066998482, 0.011639835312962532, 0.02641936205327511, 0.00723660783842206, -0.016323847696185112, -0.011288853362202644, 0.0011406911071389914, 0.01761290803551674, -0.008059820160269737, -0.0029514385387301445, 0.013720200397074223, -0.004502139985561371, 0.002083556028082967, 0.008232120424509048, -0.005634854547679424, 0.01795750856399536, -0.0049903239123523235, 0.0016591870225965977, 0.004352175164967775, -0.0012284365948289633, -0.0023579599801450968, -0.013324548490345478, -0.01119313109666109, -0.022233106195926666, 0.004186256323009729, -0.019693274050951004, -0.00572100467979908, 0.006592077668756247, -0.012635347433388233, -2.497754576324951e-05, -0.019463540986180305, -0.001072887796908617, -0.003118952503427863, 0.019131703302264214, 0.019935769960284233, 0.011722794733941555, -0.012303509749472141, -0.0044159903191030025, -0.005548704415559769, -0.018531842157244682, 0.0078556127846241, 0.0070324004627764225, -0.02511753886938095, 0.003844846971333027, 0.014090326614677906, 0.00814277958124876, -0.042628344148397446, 0.0002953432558570057, 0.014524267986416817, -0.0011335118906572461, 0.026342784985899925, -0.006751615088433027, 0.023279670625925064, 0.010395444929599762, -0.009591377340257168, -0.01679607853293419, 1.9281567801954225e-05, -0.004840359091758728, 0.014434927143156528, 0.004502139985561371, -0.0020644115284085274, 0.01035077404230833, -0.010191237553954124, -0.006713326089084148, 0.020063400268554688, -0.02866564691066742, 0.016489766538143158, 0.014856105670332909, 0.006225142162293196, 0.00185860856436193, 0.02347111515700817, 0.0009747723815962672, 0.01818724162876606, -0.009655192494392395, 0.0011127720354124904, 0.003969286102801561, -0.0024664453230798244, 0.005143479909747839, 0.02897195890545845, 0.010414589196443558, -0.0017788399709388614, -0.01035715639591217, -0.019425250589847565, -0.007459959946572781, -0.001253962516784668, -0.003975667525082827, 0.021007860079407692, 0.006432540714740753, -0.0013129912549629807, 0.023011647164821625, -0.0018330826424062252, -0.03137139603495598, 0.0023420064244419336, -0.0005037387600168586, -0.008755402639508247, -0.0012029105564579368, 0.008232120424509048, 0.017817115411162376, -0.018161715939641, 0.0243007093667984, -0.0105996523052454, -0.004680821672081947, 0.0036821188405156136, -0.01049754861742258, 0.02181192860007286, -0.0033981427550315857, 0.024326235055923462, 0.00261800573207438, -0.0067579965107142925, -0.026853304356336594, 0.006422968115657568, 0.04477252438664436, -0.02562805823981762, 9.407709876541048e-05, -0.006694181356579065, 0.01569846272468567, -0.019221043214201927, 0.006119847763329744, -0.00043753080535680056, -0.010433733463287354, -0.00559018412604928, -0.02065049670636654, -0.001160633284598589, -0.024670835584402084, -0.009131910279393196, 0.015545305795967579, 0.02150561660528183, -0.015392150729894638, 0.002710537286475301, 0.004179874900728464, 0.01849355362355709, 0.0012252457672730088, 0.007370619103312492, 0.0063814884051680565, -0.0324690155684948, -0.00866606179624796, -0.0034523853100836277, 0.01821276918053627, 0.0029992996715009212, 0.0017373602604493499, 0.0011837661731988192, 0.0006628771079704165, 0.0030615192372351885, -0.0009588186512701213, 0.007096215151250362, -0.004339412320405245, 0.004757399670779705, 0.0031380970031023026, -0.008442709222435951, -0.002056434750556946, 0.016872655600309372, -0.0214928537607193, -0.0029354847501963377, -0.014485979452729225, 0.006183662451803684, 0.003436431521549821, 0.001820319565013051, -0.013050144538283348, -0.002905172761529684, 0.00469996640458703, 0.02897195890545845, 0.00599540863186121, -0.003576824441552162, 0.004163921345025301, -0.012571532279253006, -1.90198279597098e-05, 0.020293133333325386, 0.01600477285683155, 0.009840255603194237, 0.019361436367034912, -0.008589483797550201, 0.017498042434453964, 0.012501335702836514, 0.009361643344163895, -0.001797984354197979, 0.016438715159893036, -0.014805053360760212, 0.006167708896100521, -0.00029175367671996355, -0.007006874307990074, -0.0007470329874195158, -0.00510519091039896, 0.007281278260052204, 0.01005084440112114, -0.011116553097963333, -0.030784301459789276, -0.012597058899700642, 0.027414875105023384, 0.022437313571572304, -0.009770059026777744, -2.011664582823869e-05, -0.004090534057468176, -0.012335417792201042, -0.010829386301338673, 0.01142286416143179, -0.010657086037099361, 0.010720901191234589, -0.026674622669816017, -0.005472126416862011, 0.010204000398516655, 0.012762976810336113, -0.019118940457701683, 0.04107126221060753, -0.0016528054839000106, 0.0043681287206709385, -0.018825391307473183, 0.01985919289290905, -0.0038958988152444363, 0.003548107575625181, 0.00510519091039896, 0.011416482739150524, 0.00764502352103591, -0.035736337304115295, -0.015187942422926426, -0.00496160751208663, -0.01088681910187006, 0.03055456653237343, 0.000365539628546685, 0.0242368932813406, 0.01421795692294836, -0.01572398841381073, -0.010976159945130348, 0.0004598660161718726, 0.0017947936430573463, 0.003157241502776742, 0.005816726945340633, -0.0025238788221031427, 0.002842953195795417, -0.009846637025475502, -0.017536330968141556, -0.012877844274044037, -0.014396638609468937, -0.022794676944613457, 0.016170691698789597, -0.028206178918480873, -0.0022813822142779827, 0.0066558923572301865, -0.009087239392101765, 0.021990610286593437, -0.004080961924046278, 0.01934867352247238, -0.01532833557575941, 0.0011638239957392216, 0.0070324004627764225, -0.006263431161642075, 0.015634646639227867, 0.037114739418029785, 0.003551298286765814, -0.0077088382095098495, -0.003602350363507867, -0.021109964698553085, 0.016681211069226265, 0.013707437552511692, -0.006336817983537912, -0.016132403165102005, 0.018901968374848366, -0.012226931750774384, -0.0019591168966144323, -0.0019591168966144323, -0.0007570040761493146, -0.0032800850458443165, 0.010957015678286552, 0.00428197905421257, 0.02894643135368824, 0.044849101454019547, -0.024900568649172783, -0.011761083267629147, 0.01849355362355709, -0.023317959159612656, 0.0005073283682577312, 0.022462839260697365, 0.01933591067790985, 0.00139754603151232, -0.02700646035373211, 0.002992918249219656, -0.003844846971333027, 0.015507017262279987, 0.03177981451153755, -0.004173493478447199, -0.02422413043677807, 0.0060751773416996, -0.00039644999196752906, -0.008098108693957329, 0.0030056810937821865, 0.021416274830698967, 0.011505823582410812, -0.008959610015153885, 0.009521180763840675, 0.011754701845347881, 0.002161729149520397, 0.0066750370897352695, 0.014077563770115376, -0.0269809328019619, 0.002300526713952422, 0.009712625294923782, 0.013120340183377266, -0.0007246977766044438, 0.01432006061077118, -0.013579807244241238, 0.007874757051467896, -0.006751615088433027, -0.029048535972833633, -0.007242989726364613, 0.022539418190717697, -0.0019335910910740495, -0.000709541782271117, -0.0007171197794377804, -0.009138291701674461, 0.004878648091107607, -0.03114166483283043, -0.0023132895585149527, 0.015200706198811531, 0.0012451879447326064, -0.0014693377306684852, -0.008487380109727383, 0.025270694866776466, -0.002348387846723199, 0.018008559942245483, 0.03537897393107414, -0.01871052384376526, 0.013171392492949963, 0.010318866930902004, 0.009757296182215214, -0.015621883794665337, 0.008927702903747559, 0.007051544729620218, -0.0013560663210228086, 0.016387661918997765, -0.006847337353974581, 0.004065008368343115, -0.020752601325511932, -0.0011813730234280229, 0.012092920951545238, 0.01928485929965973, 0.01683436706662178, -0.01595372147858143, 0.020229319110512733, 0.0032354146242141724, -0.002882837550714612, 0.011473916471004486, 0.0013552686432376504, -0.016438715159893036, -0.007798179052770138, -0.014485979452729225, -0.0006373511860147119, 0.0023308387026190758, -0.0028349761851131916, 0.00018546200590208173, 0.006611221935600042, 0.00599540863186121, 6.0075733927078545e-05, -0.00783646758645773, -0.004929699935019016, 0.0006441315053962171, 0.007651404943317175, 0.005468935705721378, -0.003982048947364092, -0.002898791106417775, 0.03668079525232315, -0.010803860612213612, 0.0030838544480502605, 0.0029833458829671144, -0.028538016602396965, 0.005909258499741554, 0.002700965153053403, -0.0028509299736469984, 0.019233806058764458, 0.028793277218937874, 0.01980813965201378, -0.016732262447476387, 0.002410607412457466, -0.011607927270233631, -0.0049360813573002815, 0.0077088382095098495, -0.00950203649699688, -0.0016528054839000106, 0.017868168652057648, 0.007274896837770939, -0.029941944405436516, -0.026368310675024986, -0.0157112255692482, 0.012992710806429386, 0.005532750394195318, -0.004955226089805365, 0.011429245583713055, 0.008059820160269737, 0.007051544729620218, -0.012648110277950764, 0.00967433676123619, -0.0162345077842474, 0.004119250923395157, 0.027389349415898323, -0.004967988934367895, 0.002140989527106285, -0.0023116942029446363, -0.020561156794428825, 0.01475400198251009, -0.0024441101122647524, 9.976061119232327e-05, 0.004285169765353203, 0.007204700727015734, 0.0047254920937120914, -0.00022634342894889414, 0.020331421867012978, -0.022258631885051727, -0.027772238478064537, -0.0017692677211016417, 0.0021441802382469177, 0.02731277048587799, -0.003982048947364092, -0.007798179052770138, 0.016770552843809128, -0.02206718735396862, -0.026674622669816017, 0.02566634677350521, -0.00991045217961073, -0.015928195789456367, -0.0001404924551025033, -0.007485486101359129, -0.023509403690695763, -0.014932683669030666, -0.0023116942029446363, -0.016362136229872704, -0.0011981244897469878, -0.0049073644913733006, -0.011371812783181667, 0.02621515467762947, 0.00788113847374916, 0.008136398158967495, 0.0038544191047549248, 0.001941567868925631, 0.013107577338814735, -0.015940958634018898, 0.013286259025335312, -0.007925808429718018, -0.0043138861656188965, 0.010006174445152283, -0.031830865889787674, 0.057739708572626114, -0.008825598284602165, -0.027670133858919144, -0.019374199211597443, -0.010918727144598961, 0.008053438737988472, -0.02181192860007286, -0.009265921078622341, 0.022182054817676544, 0.01954011805355549, -0.028180653229355812, -0.007562064100056887, -0.014026511460542679, 0.0007510214345529675, -0.01392440777271986, 0.006419777404516935, 0.014651897363364697, 0.01377125270664692, 0.0030535422265529633, -0.03670632094144821, 0.026700148358941078, -0.010012555867433548, -0.011097408831119537, -0.009987029246985912, -0.003449194598942995, 0.005204103887081146, -1.2476309166231658e-05, 0.012852317653596401, 0.018378688022494316, -0.018161715939641, -0.010695374570786953, 0.016055826097726822, 0.0022686191368848085, 0.014651897363364697, -0.028512490913271904, -0.017791589722037315, 0.010216763243079185, 0.004939272068440914, -0.04199019446969032, -0.01242475863546133, 0.005532750394195318, -0.0201527401804924, -0.011556875891983509, 0.005711432080715895, -0.018940258771181107, 0.004537238273769617, 0.00016222940757870674, -0.021901268512010574, 0.024913331493735313, 0.0401778519153595, 0.01103359367698431, 0.0017198111163452268, 0.01959116943180561, 0.013605333864688873, 0.009942359291017056, -0.012648110277950764, -0.014192430302500725, -0.03591501712799072, -0.001379996887408197, -0.0030264209490269423, 0.005542322993278503, -0.015775039792060852, -0.00392780639231205, -0.016477003693580627, -0.013184155337512493, 0.012507718056440353, -0.015621883794665337, -0.02202889882028103, -0.00825764611363411, 0.0012124828062951565, -0.008787309750914574, 0.013018236495554447, 0.023343484848737717, -0.002932294039055705, 0.0031636229250580072, 0.02205442450940609, -0.021046148613095284, -0.004256452899426222, 0.021556667983531952, -0.00015235804312396795, -0.009967884980142117, 0.002595670521259308, -0.012169498950242996, -0.02234797365963459, -0.011084645986557007, 0.005736958235502243, 0.01326073333621025, -0.01712791621685028, -0.004147967789322138, -0.006815429776906967, -0.01954011805355549, 0.02616410329937935, -0.0032481777016073465, -0.001132714212872088, -0.013413889333605766, 0.0024552778340876102, -0.005842252634465694, 0.002667462220415473, -0.01486886851489544, -0.0209695715457201, 0.008015149272978306, -0.01791922003030777, 0.02513030171394348, 0.010433733463287354, -0.00496160751208663, -0.008436327800154686, 0.008474617265164852, 0.03226480633020401, 0.003978858236223459, -0.011850424110889435, -0.016923706978559494, 0.013069288805127144, 0.021046148613095284, 0.012463047169148922, -0.013630859553813934, -0.015264520421624184, -0.00841718353331089, -0.019131703302264214, -0.007964097894728184, -0.018557369709014893, -0.011927002109587193, 0.023930581286549568, -0.00448937714099884, -0.017880931496620178, -0.019667748361825943, -0.006097512319684029, -0.017038574442267418, 0.01186956837773323, 0.021556667983531952, 0.009265921078622341, 0.010216763243079185, 0.007951335050165653, 0.010299722664058208, 0.012411994859576225, -0.013720200397074223, 0.005794391501694918, 0.012080158106982708, -0.014958209358155727, 0.002464849967509508, -0.01074642688035965, 0.005421074572950602, 0.0030439700931310654, 0.010861293412744999, -2.060273618553765e-05, -0.00019922209321521223, -0.0007829288952052593, -0.02202889882028103, 0.016094114631414413, -0.01380954124033451, 0.011365431360900402, -0.008436327800154686, 0.009457365609705448, 0.010038081556558609, -0.003950141370296478, -0.004237308632582426, 0.01576227694749832, 0.009540325030684471, -0.012577913701534271, 0.009170198813080788, -0.02238626219332218, -0.010267815552651882, -0.012201406061649323, -0.018672235310077667, 0.023892292752861977, 0.03780393674969673, 0.008327842690050602, -0.021697061136364937, -0.009584995917975903, -0.0005667559453286231, -0.023611508309841156, -0.009444602765142918, -0.0024393240455538034, -0.0035895872861146927, 0.012520480901002884, -0.014205193147063255, -0.004818023648113012, 0.003064709948375821, -0.01104635652154684, 0.011116553097963333, 0.005823108367621899, 0.03507266193628311, 0.0118568055331707, 0.0013648408930748701, -0.04211782291531563, -0.008327842690050602, -0.00306949601508677, 0.003305610967800021, 0.011371812783181667, -0.0030232302378863096, -0.019693274050951004, -0.029890893027186394, -0.006336817983537912, -0.014588083140552044, 0.01929762214422226, -0.012360943481326103, -0.01018485613167286, 0.009495655074715614, 0.0018570132087916136, -0.013286259025335312, -0.013860593549907207, 0.0013496847823262215, 0.0021218450274318457, 0.022118238732218742, 0.037063684314489365, -0.012628966011106968, -0.007351474836468697, 0.03229033201932907, -0.005768865812569857, 0.010644323192536831, -0.002452086890116334, -0.005775247234851122, -0.00040721872937865555, -0.019412487745285034, -0.003768268972635269, -0.0016041466733440757, -0.024045448750257492, 0.00696220388635993, 0.0014478001976385713, -0.004885029513388872, -0.005468935705721378, -0.002905172761529684, 0.012877844274044037, -0.004575527273118496, -0.01377125270664692, -0.014856105670332909, 0.019425250589847565, -0.004221354611217976, -0.017766064032912254, 0.03862076997756958, 0.011314379051327705, 0.006719707511365414, 0.030146151781082153, 0.003921424504369497, -0.004971179645508528, 0.018289346247911453, -0.0016528054839000106, -0.009521180763840675, -0.01378401555120945, 0.014498742297291756, 0.009967884980142117, 0.0012124828062951565, 0.0054306467063724995, 0.014613608829677105, -0.000280386651866138, -0.010912345722317696, -0.006936678197234869, -0.010835767723619938, 0.0201527401804924, -0.053910814225673676, -0.01960393227636814, 0.004186256323009729, 0.04653381556272507, -0.006221951451152563, -0.01475400198251009, 0.0022765961475670338, 9.362840501125902e-05, 0.004824405536055565, 0.005232820753008127, 0.007804560475051403, -0.010778333991765976, 0.028078550472855568, 0.0062442864291369915, -0.020280370488762856, 0.01142286416143179, 0.005973073188215494, 0.011103790253400803, 0.009833874180912971, -0.012820410542190075, -0.0209695715457201, -0.02016550302505493, 0.00022554573661182076, 0.005730576813220978, 0.010510311461985111, -0.03629790619015694, -0.0016352564562112093, -0.014013748615980148, -0.021033385768532753, 0.00688562635332346, 0.006643129512667656, -0.01349046640098095, -0.0013265518937259912, 0.017983034253120422, 0.004872266668826342, 0.004632960539311171, 0.019527355208992958, -0.041479676961898804, -0.017880931496620178, -0.00788113847374916, 0.003436431521549821, -0.002249474637210369, -0.013707437552511692, 0.0007781427702866495, 0.0038799450267106295, 0.006116656586527824, 0.019169991835951805, 0.0038352746050804853, 0.023649796843528748, 0.01446045283228159, -0.010178474709391594, -0.0133755998685956, -0.027159614488482475, -0.016081351786851883, -0.009616903029382229, -0.013822304084897041, 0.031039560213685036, -0.02864012122154236, 8.500341937178746e-05, -0.0016416378784924746, 0.008072583004832268, 0.01005084440112114, 0.0013448987156152725, -0.008876650594174862, 0.017191730439662933, 0.013050144538283348, -0.011518586426973343, 0.006579314824193716, 0.018302109092473984, 0.00029394731973297894, -0.02705751173198223, 0.010797478258609772, -0.004999896511435509, 0.01184404268860817, -0.0179319828748703, 0.0015044359024614096, -0.007530156522989273, -0.01766396127641201, 0.011403719894587994, -0.0013441010378301144, 0.014307297766208649, -0.002139393938705325, 0.008136398158967495, -0.01377125270664692, 0.0011534540681168437, -0.018008559942245483, -0.011212275363504887, 0.0057784379459917545, -0.0008040675893425941, 0.021556667983531952, 0.0034460038878023624, 0.006279384717345238, 0.002997704315930605, -0.015545305795967579, 0.012865081429481506, 0.03152455389499664, -0.024096500128507614, -0.01678331568837166, 0.017970271408557892, -0.012456665746867657, -0.011882332153618336, 1.5006468856881838e-05, -0.007785416208207607, 0.014103089459240437, 0.00897875428199768, 0.0009269111906178296, -0.040637318044900894, 0.006764377932995558, -0.021046148613095284, 0.036221329122781754, 0.03606817498803139, 0.009636047296226025, -0.00866606179624796, 0.01960393227636814, -2.039084938587621e-05, 0.025257932022213936, 0.003024825593456626, 0.011256946250796318, 0.00310140335932374, 0.016362136229872704, 0.007013255730271339, -0.04492567852139473, -0.031575605273246765, 0.016157928854227066, 0.008672443218529224, 0.002305312780663371, 0.006451684981584549, 0.009891306981444359, -0.0006225939723663032, -0.0037810320500284433, 0.004380892030894756, -0.0012475809780880809, -0.0035704427864402533, -0.00717279314994812, 0.014256245456635952, -0.0047701625153422356, -0.012660873122513294, -0.01904236152768135, -0.009546706452965736, -6.541025504702702e-05, 0.013847829774022102, 0.004090534057468176, 0.039258915930986404, -0.008825598284602165, -0.00264991307631135, 0.015277283266186714, 0.005909258499741554, -0.00016222940757870674, 0.009272302500903606, -0.00798324216157198, 0.0021585384383797646, -0.007632260210812092, 0.012871462851762772, 0.011288853362202644, 0.006049651186913252, 0.0051849596202373505, -0.007511012256145477, 0.008870269171893597, -0.0033758075442165136, 0.022143766283988953, -0.019221043214201927, -0.006706944666802883, 0.002117058727890253, 0.016961997374892235, -0.0031604322139173746, 0.014166904613375664, -0.023330722004175186, 0.018123427405953407, -0.04244966059923172, -0.023024410009384155, 0.0013616501819342375, -0.0007434434373863041, -0.013720200397074223, -0.0006951834075152874, 0.03093745745718479, 0.004390464164316654, -0.0072238449938595295, -0.003519390942528844, -0.010503930039703846, -0.011933383531868458, 0.008889413438737392, -0.00313490629196167, 0.01075918972492218, -0.002000596607103944, 0.03497055917978287, 0.006065604742616415, 0.012584295123815536, 0.0012188643449917436, -0.00042556552216410637, 0.010682611726224422, 0.011237801052629948, -0.018519079312682152, -0.013835066929459572, -0.011410101316869259, -0.014715712517499924, -0.017434226348996162, 0.01021038182079792, 0.013107577338814735, -0.004234117455780506, -0.007345093414187431, 0.004993514623492956, 0.015609120950102806, 0.012201406061649323, 0.0007306804182007909, 0.001997405895963311, -0.004144776612520218, -0.027695659548044205, -0.014549793675541878, 0.006770759355276823, 0.009176580235362053, -0.019795376807451248, -0.01679607853293419, 0.03315821290016174, 0.027950920164585114, 0.0050732833333313465, 0.017166204750537872, -0.013656385242938995, 0.0025318555999547243, 0.006815429776906967, -0.0029514385387301445, 0.005216866731643677, -0.01871052384376526, 0.011027212254703045, 0.015877144411206245, 0.005542322993278503, -0.00883836206048727, 0.005781628657132387, -0.006879244465380907, -0.011652598157525063, 0.015787802636623383, -0.005701859947293997, -0.013949934393167496, 0.016043061390519142, 0.00842994637787342, 0.027134088799357414, 0.0035672520752996206, 0.001705452799797058, -0.0018251057481393218, 0.0008758592884987593, -0.0007227035821415484, 0.009087239392101765, -0.00895322859287262, 0.014447689987719059, 0.008659680373966694, -0.004945653490722179, -0.008800072595477104, -0.00813001673668623, -0.015634646639227867, 0.007491867523640394, -4.217764944769442e-05, -0.014639134518802166, 0.01045926008373499, 0.008308698423206806, 0.03759973123669624, 0.005478507839143276, -0.011410101316869259, -0.01446045283228159, 0.004658486694097519, 0.007849231362342834, -0.007038781885057688, -0.005197722464799881, 0.007804560475051403, 0.00016861088806763291, 0.0008790500578470528, 0.006560170091688633, -0.025308983400464058, 0.006796285510063171, 0.007511012256145477, -0.002976964460685849, 0.023088226094841957, 0.0162345077842474, -0.013503230176866055, -7.872164133004844e-05, -0.014856105670332909, -0.010491167195141315, -0.023075463250279427, -0.0091127660125494, -0.005411502439528704, 0.024198604747653008, -0.025755688548088074, -0.04005022346973419, 0.026074761524796486, 0.02399439737200737, 0.006853718776255846, 0.03716579079627991, -0.004572336561977863, -0.01931038498878479, 0.0024457054678350687, -0.0005878946394659579, 7.283870945684612e-05, 9.866379696177319e-05, -0.005200913175940514, 0.01601753570139408, 0.003998002503067255, -0.05156242847442627, -0.02973773702979088, 0.0058869230560958385, 0.003876754315569997, -0.004668058827519417, 0.009476510807871819, -0.013541518710553646, 0.024083737283945084, -0.006419777404516935, 0.03313268721103668, -0.00744719710201025, 0.01712791621685028, -0.008398039266467094, 0.01791922003030777, -0.0028285947628319263, 0.012833173386752605, 0.00813001673668623, -0.026113051921129227, -0.01821276918053627, -0.007428052835166454, -0.011244182474911213, 0.044313058257102966, 0.005877350922673941, 0.005545513704419136, 0.005271109752357006, -0.00992321502417326, 0.017485279589891434, 0.008583102375268936, -0.016094114631414413, -0.00626981258392334, 0.009208488278090954, -0.014856105670332909, -0.01821276918053627, 0.006129419896751642, 0.018659472465515137, -0.00303599308244884, 0.00814277958124876, 0.004885029513388872, -0.032417960464954376, 0.0034300500992685556, 0.003573633497580886, 0.01490715704858303, 0.0041766841895878315, 0.00994874071329832, -0.020790889859199524, 0.005922021344304085, 0.0018984928028658032, -0.03923339024186134, 0.015277283266186714, 0.0006800273549742997, 0.023560455068945885, -0.010567745193839073, 0.0133755998685956, 0.0033375185448676348, 0.011888713575899601, 0.005130716599524021, -0.02455596812069416, -0.02121206745505333, -0.012922514230012894, 0.014103089459240437, 0.011301616206765175, -0.03203507140278816, 0.01432006061077118, 0.03491950407624245, 0.008040675893425941, -0.02782328985631466, 0.020586682483553886, -0.03180534020066261, 0.0024935666006058455, 0.0001767871726769954, -0.007089833728969097, 0.011244182474911213, 0.01961669512093067, -0.03277532383799553, 0.00022554573661182076, 0.0035991596523672342, 0.026138577610254288, -0.015928195789456367, 0.015800565481185913, 0.013975460082292557, 0.005421074572950602, 0.024045448750257492, -0.028461439535021782, -0.007281278260052204, -0.01021038182079792, -0.001044968725182116, 0.03338794782757759, 0.013413889333605766, -0.020548393949866295, -0.004585099406540394, 0.012048250064253807, -0.026623569428920746, 0.027363823726773262, -0.003982048947364092, -0.004422371741384268, -0.015621883794665337, 0.015532542951405048, -0.01710238866508007, -0.015494254417717457, 0.003911852370947599, -0.02484951727092266, 0.012884225696325302, -0.00599540863186121, 0.009297829121351242, 0.006170899607241154, -0.001892111380584538, -0.002409011824056506, -0.00786837562918663, -0.0176384337246418, 0.012922514230012894, 0.012514099478721619, -0.0016017536399886012, -0.008078964427113533, 0.005216866731643677, -0.01925933174788952, 0.016745025292038918, 0.023649796843528748, -0.00978920329362154, -0.009942359291017056, -0.004422371741384268, -0.0060528418980538845, 0.015047550201416016, -0.018582895398139954, 0.0014166904147714376, -0.012903369963169098, -0.000277594750514254, -0.027925394475460052, -0.012303509749472141, 0.007932189851999283, -0.011901476420462132, -0.011914239265024662, 0.011397338472306728, -0.00524877430871129, 0.016936469823122025, -0.014447689987719059, -0.0018713715253397822, 0.009425458498299122, 0.021339697763323784, -0.016668448224663734, -0.008353368379175663, -0.004674440249800682, 0.01338836271315813, 0.005133907776325941, -0.018416976556181908, -0.012597058899700642, -0.021914031356573105, -0.014115852303802967, 0.0070324004627764225, 0.02099509723484516, 0.0265214666724205, -0.00012703151151072234, 0.038467612117528915, 0.01434558629989624, -0.016183454543352127, 0.005280681885778904, -0.007798179052770138, -0.00045069263433106244, -0.021594956517219543, -0.00024249656416941434, -0.004473423585295677, -0.011646216735243797, -0.02010168880224228, -0.018557369709014893, 0.02065049670636654, -0.008181068114936352, 0.021671535447239876, -0.0035130095202475786, 0.017153441905975342, 0.01049754861742258, -0.0020915328059345484, 0.004208591766655445, 0.01169726811349392, 0.010108278132975101, 0.019208280369639397, -0.004157539922744036, -0.009036188013851643, -0.005213676020503044, -0.0068409559316933155, -0.009291447699069977, -0.033515576273202896, 0.032111652195453644, 0.009540325030684471, -0.01200358010828495, 0.014741238206624985, 0.0006588887190446258, 0.016872655600309372, 0.009419077076017857, -0.006343199871480465, -0.006713326089084148, 0.013860593549907207, -0.008200212381780148, -0.014230719767510891, 0.022769151255488396, -0.001258748583495617, -0.011384575627744198, 0.011952527798712254, -0.01252686232328415, 0.018672235310077667, -0.0033438999671489, 0.013541518710553646, 0.004234117455780506, 0.023534929379820824, 0.0012404018780216575, 0.012820410542190075, 0.01567293517291546, 0.0024457054678350687, -0.01739593781530857, 0.012214168906211853, 8.565153984818608e-05, 0.001419083564542234, -0.004530856851488352, 0.012648110277950764, 0.0012252457672730088, 0.006892007775604725, -0.026878830045461655, 0.004604244139045477, 0.00320031656883657, -0.008104490116238594, -0.014000985771417618, -0.016693973913788795, -0.01825105771422386, 0.002050053095445037, 0.008831980638206005, -0.026368310675024986, -0.004371319897472858, -0.01767672412097454, -0.012641728855669498, -0.00010748819477157667, 0.02063773386180401, -0.012297128327190876, -0.0013560663210228086, -0.013656385242938995, 0.015162416733801365, 0.0027264910750091076, 0.015826091170310974, -0.009036188013851643, -0.008053438737988472, -0.012590676546096802, -0.014000985771417618, 0.008627772331237793, -0.006445303559303284, 0.013222443871200085, 0.005207294598221779, 0.013209681026637554, -0.0015156035078689456, -0.013209681026637554, 0.007900282740592957, 0.0075812083669006824, 0.019731562584638596, 0.02127588354051113, 0.006994111463427544, 0.0090808579698205, -0.006014552898705006, -0.00286050233989954, 0.01421795692294836, 0.007319567259401083, -0.017880931496620178, -0.0010744831524789333, 0.002606838010251522, 0.010580508038401604, -0.005615709815174341, 0.0010298127308487892, 0.0007294839015230536, -0.011997198686003685, -0.030503515154123306, -0.004109678789973259, 0.015532542951405048, 0.018365923315286636, 0.005717813968658447, 0.0031253339257091284, 0.01435834914445877, 0.015175179578363895, -0.01296080369502306, 0.01282679196447134, 0.02618962898850441, -0.004074580501765013, 0.005532750394195318, -0.0009995006257668138, 0.013426652178168297, 0.0036119224969297647, -0.010101896710693836, 0.02010168880224228, 0.008219357579946518, 0.008595865219831467, -0.024160316213965416, 0.006359153427183628, 0.009731770493090153, 0.0006696574855595827, -0.011403719894587994, -0.04377701133489609], "59145c5f-26e2-4613-8df5-e10874e81f20": [-0.019350089132785797, -0.014170058071613312, -0.0015478113200515509, 0.019676286727190018, -0.05433160439133644, -0.046137500554323196, -0.021529093384742737, 0.018541116267442703, -0.018684644252061844, 0.007372083608061075, 0.008598589338362217, 0.027478951960802078, -0.001684814691543579, -0.020837552845478058, -0.010170865803956985, 0.020276492461562157, -0.021763956174254417, 0.023747242987155914, 0.04843393713235855, -0.026957035064697266, 0.07520829886198044, 0.013752523809671402, -0.029514430090785027, 0.005118052940815687, -0.014835502952337265, -0.03003634698688984, -0.00634782062843442, 0.005310509819537401, -0.022077107802033424, 0.006080337800085545, 0.016649166122078896, 0.015461803413927555, -7.105008990038186e-05, 0.00990990735590458, 0.04177948832511902, -0.01111684087663889, -0.01796700805425644, 0.007665662094950676, -0.010405728593468666, -0.00868340115994215, -0.030949702486395836, 0.03924819082021713, -0.015918482095003128, 0.009068314917385578, -0.057045575231313705, -0.013648140244185925, 0.030584361404180527, -0.04026592895388603, 0.030532170087099075, -0.013674236834049225, 0.010327440686523914, -0.04284942150115967, -0.01662307046353817, -0.012689117342233658, 0.028966417536139488, -0.006093386095017195, 0.001321103423833847, 0.052348315715789795, -0.005300723947584629, -0.02475193329155445, 0.015957625582814217, 0.0036566839553415775, -0.023368852213025093, -0.0031380285508930683, -0.011553946882486343, -0.010966789908707142, 0.03332442790269852, 0.0009949051309376955, -0.04112709313631058, -0.021620430052280426, 0.013074031099677086, 0.05005187913775444, -0.030949702486395836, 0.014117865823209286, 0.01834539696574211, -0.01978067122399807, 0.02511727623641491, -0.01936313696205616, 0.00571173382923007, 0.003276662901043892, -0.004919071681797504, 0.0055714682675898075, 0.03465531766414642, -0.020263444632291794, 0.06430022418498993, 0.02580881677567959, 0.01698841154575348, -0.03760414943099022, -0.010138246230781078, -0.038700178265571594, 0.009714188054203987, -0.011319084092974663, -0.00884649995714426, -0.032254498451948166, -0.0067718783393502235, -0.0004897053586319089, 0.008898692205548286, 0.013726428151130676, 0.05354872718453407, -0.0020632047671824694, 0.0044689178466796875, 0.02186834067106247, -0.0102622015401721, 0.02763552777469158, 0.0011816537007689476, 0.0398222990334034, -0.015670571476221085, -0.0033957252744585276, -0.016401255503296852, 0.04438907653093338, 0.027270184829831123, -0.03812606632709503, 0.0021904222667217255, 0.006034670397639275, -0.046215787529945374, -0.01165180653333664, -0.023342756554484367, -0.0012354763457551599, -0.011051601730287075, -0.032985180616378784, 0.02479107677936554, -0.004149243701249361, 0.011162509210407734, 0.0335070975124836, 0.006263009272515774, -0.002890117699280381, -0.021659573540091515, -0.02967100590467453, 0.00047176441876217723, 0.013687284663319588, -0.009825095534324646, -0.004860355984419584, 0.02646121382713318, 0.02395601011812687, 0.019676286727190018, -0.005395321175456047, 0.013361086137592793, 0.0673273503780365, -0.02195967547595501, 0.06424803286790848, -0.02056354656815529, -0.038047779351472855, -0.01727546751499176, 0.00826586689800024, 0.011410419829189777, -0.015096461400389671, -0.04425859823822975, 0.04089222848415375, -0.01181490533053875, -0.012845692224800587, -0.030819224193692207, -0.006494610104709864, 0.01042530033737421, 0.038752369582653046, 0.006318463012576103, -0.0033223305363208055, -0.023616762831807137, 0.020876696333289146, 0.006148839835077524, 0.03695175424218178, 0.024869365617632866, -0.03541209548711777, -0.02344714105129242, 0.016701357439160347, 0.0630476251244545, 0.034577030688524246, 0.0142352981492877, 0.013387181796133518, -0.0007865458610467613, 0.01754947379231453, 0.028809841722249985, -0.011364751495420933, -0.007809189613908529, -0.018488924950361252, 0.026017583906650543, -0.03235888108611107, 0.04778153821825981, 0.011482182890176773, 0.046346265822649, 0.004175339359790087, 0.0012542328331619501, -0.024699741974473, -0.016401255503296852, -0.02257292903959751, -0.018580259755253792, 0.04986920952796936, 0.002477476838976145, 0.031262852251529694, -0.013021839782595634, -0.006484823767095804, -0.01791481487452984, -0.001983286114409566, -0.0030956226401031017, 0.030584361404180527, -0.013504613190889359, -0.04973873123526573, 0.03705613687634468, 0.019793719053268433, -0.01950666308403015, 0.025065084919333458, 0.00197839317843318, -0.04457174614071846, -0.0035490384325385094, 0.0189977940171957, -0.021998818963766098, 0.007672186009585857, -0.005173506680876017, -0.015383516438305378, 0.003271769732236862, -0.018358444795012474, 0.021529093384742737, -0.027035322040319443, 0.016283823177218437, 0.020511355251073837, -0.03374196216464043, -0.0013414908898994327, -0.019102178514003754, 0.02145080640912056, -0.009942526929080486, -0.04141414910554886, -0.026957035064697266, 6.707454303978011e-05, 0.00031009234953671694, -0.026017583906650543, -0.0548013299703598, -0.0055714682675898075, -0.023147037252783775, 0.024438783526420593, -0.05294852331280708, -0.01894560270011425, 0.025091180577874184, -0.009003075771033764, 0.021150704473257065, -0.028105253353714943, 0.00034678966039791703, 0.017810432240366936, -0.024347446858882904, 0.02150299772620201, -0.01513560488820076, -0.025874055922031403, 0.0183845404535532, 0.01582714542746544, 0.01409177016466856, -0.013869955204427242, -0.006298890803009272, -0.006765354424715042, 0.026957035064697266, 0.016884028911590576, 0.039535243064165115, -0.017614712938666344, -0.007606946397572756, 0.01450930442661047, 0.003315806621685624, -0.035359904170036316, -0.01432663295418024, 0.02687874808907509, -0.013087078928947449, -0.004194911103695631, 0.01825406216084957, -0.0025133586023002863, -0.0019669763278216124, -0.014952934347093105, 0.009394513443112373, 0.018071390688419342, 0.010810215026140213, -0.012519494630396366, 0.03170648217201233, -0.01805834285914898, -0.017901767045259476, 0.026030631735920906, -0.026630835607647896, 0.00431886687874794, -0.01638820767402649, 0.019023889675736427, -0.006941501516848803, -0.008552921935915947, 0.012219391763210297, -0.007861381396651268, 0.0015347633743658662, -0.0071046007797122, -0.00750908674672246, -0.01077107060700655, 0.019350089132785797, 0.012154151685535908, 0.0030727889388799667, 0.017562521621584892, -0.022951317951083183, -0.019950293004512787, -0.005600826349109411, 0.017497282475233078, 0.008689925074577332, -0.009283605962991714, 0.021150704473257065, 0.027870390564203262, 0.02972319722175598, -0.0014899111120030284, -0.016492590308189392, -0.02763552777469158, -0.04433688521385193, -0.0011033660266548395, 0.00349358469247818, 0.017719095572829247, 0.03311565890908241, -0.029096895828843117, 0.02424306422472, -0.026161110028624535, 0.016414303332567215, 0.04467613250017166, -0.03032340295612812, 0.007828760892152786, 0.02925347164273262, -0.03872627392411232, -0.048538319766521454, -0.007822236977517605, 0.007372083608061075, 0.03969182074069977, -0.009042219258844852, -0.017653856426477432, -0.013015315867960453, -0.016414303332567215, 0.023133989423513412, 0.005878095049411058, -0.06231693923473358, 0.006067289970815182, 0.0034381309524178505, -0.04151853173971176, 0.062108173966407776, -0.023969057947397232, -0.008892168290913105, -0.01773214526474476, -0.04540681466460228, 0.013008791953325272, -0.03598620742559433, -0.024034297093749046, -0.019023889675736427, -0.017614712938666344, -0.0142092015594244, -0.05200907215476036, -0.006993693299591541, -0.021763956174254417, -0.00408726604655385, -0.013909099623560905, -0.0163490641862154, -0.025874055922031403, 0.029357854276895523, -0.009805523790419102, -0.008631209842860699, -0.006442418321967125, -0.03395072743296623, -0.006732734851539135, 0.0007266069296747446, -0.038465313613414764, 0.007646090351045132, 0.018188823014497757, 0.03823045268654823, -0.029931964352726936, -0.031001895666122437, -0.014431016519665718, 0.022272825241088867, -0.01861940324306488, 0.02609587088227272, -0.0305060725659132, 0.003953524399548769, -0.02163347788155079, -0.025378234684467316, 0.05553201213479042, 0.013263226486742496, -0.010549255646765232, 0.0030695267487317324, 0.04699866473674774, -0.00768523383885622, 0.028862033039331436, 0.004328652750700712, -0.021985771134495735, -0.013021839782595634, -0.054488178342580795, 0.03478579595685005, -0.03590792044997215, -0.045850444585084915, 0.01385690737515688, 0.0001133539408328943, 0.019258752465248108, 0.008161483332514763, -0.008070148527622223, 0.05417502671480179, 0.03718661516904831, 0.0037153996527194977, -0.005688900128006935, -0.00704588508233428, -0.001574722700752318, -0.032567646354436874, -0.00752213504165411, -0.026161110028624535, -0.007619994226843119, -0.052452702075242996, 0.004126409534364939, -0.011743142269551754, -0.03525552153587341, 0.015148653648793697, -0.013321942649781704, -0.014026531018316746, 0.0021659573540091515, 0.015618379227817059, -0.016544781625270844, 0.057358723133802414, -0.023068750277161598, -0.001055251806974411, 0.014874646440148354, 0.017497282475233078, 0.006902358029037714, 0.01539656426757574, 0.012408587150275707, 0.012141103856265545, 0.0022002081386744976, 0.0505216047167778, -0.005271365866065025, 0.008559445850551128, 0.002293174620717764, -0.022807791829109192, -0.031367238610982895, 0.057045575231313705, 0.069675974547863, 0.003591444343328476, 0.07087638229131699, -0.004504799842834473, 0.030819224193692207, 0.008689925074577332, 0.030297307297587395, -0.017797384411096573, 0.0007445478113368154, -0.01611419953405857, 0.023655906319618225, 0.014222249388694763, -0.0030613718554377556, 0.0012216129107400775, -0.015618379227817059, -0.0006744151469320059, 0.019350089132785797, 0.02206405997276306, 0.010634067468345165, 0.00034699353273026645, -0.012995744124054909, 0.002673195907846093, -0.013648140244185925, 0.029357854276895523, -0.0015861396677792072, -0.031315043568611145, -0.013595948927104473, 0.0029243684839457273, 0.012056292034685612, 0.012082388624548912, 0.028914224356412888, -0.0314716212451458, 0.028340116143226624, -0.0025100966449826956, 0.03355928882956505, 0.009596756659448147, -0.018045295029878616, -0.001188177615404129, -0.027792103588581085, 0.005463823210448027, 0.006099910009652376, -0.014874646440148354, 0.019976388663053513, -0.0021414924412965775, -0.03593401610851288, 0.01574885845184326, 0.020446114242076874, 0.007959241047501564, 0.013765571638941765, 0.012343347072601318, 0.0018071390222758055, 0.002182267140597105, 0.047259621322155, 0.004990835208445787, -0.014522352255880833, -0.0028477120213210583, -0.008122339844703674, 0.008990027941763401, -0.009883810766041279, 0.027270184829831123, -0.022833887487649918, -0.011560470797121525, 0.0056203980930149555, -0.018867315724492073, -0.027974773198366165, -0.013289322145283222, -0.026226351037621498, 0.02967100590467453, -0.018501972779631615, 0.038700178265571594, 0.005212650168687105, -0.0032097920775413513, 0.03710832819342613, -0.0021170275285840034, -0.02729628048837185, 0.005091956816613674, -0.018580259755253792, -0.03421168774366379, -0.03217620775103569, 0.03541209548711777, -0.013778620399534702, -0.034342166036367416, 0.028079157695174217, -0.016962315887212753, 0.0027335425838828087, -0.03765634074807167, 0.0025622884277254343, -0.008709496818482876, 0.0033663674257695675, -0.025091180577874184, -0.00018644276133272797, -0.027139706537127495, -0.016140297055244446, -0.006824070122092962, 0.01662307046353817, -0.009290129877626896, -0.0006833856459707022, 0.008194103837013245, -0.02609587088227272, 0.007300320081412792, -0.018319301307201385, 0.0041786013171076775, 0.005636708345264196, -0.00037512814742513, 0.0016994936158880591, -0.04284942150115967, -0.02112460695207119, 0.016818789765238762, -0.023890769109129906, 0.0005622844910249114, 0.015187797136604786, 0.002735173562541604, 0.013269750401377678, 0.01992419734597206, -0.0157358106225729, -0.004951691720634699, 0.019206561148166656, 0.013569853268563747, 0.031367238610982895, -0.01218677219003439, -0.008050575852394104, 0.011058125644922256, -0.01065363921225071, 0.0023404734674841166, 0.026200255379080772, -0.0012305834097787738, 0.03319394960999489, -0.009374941699206829, 0.008572493679821491, -0.044780515134334564, 0.0021463853772729635, -0.04214483126997948, -0.0110776973888278, 0.00861163716763258, -0.04911242797970772, 0.030245114117860794, -0.005907452665269375, -0.019023889675736427, -0.02553481049835682, -0.015083413571119308, 0.018658548593521118, 0.013400229625403881, 0.025195563212037086, -0.03165429085493088, -0.00945322960615158, -0.0015143760247156024, 0.003963310271501541, 0.007619994226843119, 0.008833452127873898, 0.036194972693920135, -0.00026931753382086754, 0.04010935500264168, -0.012382490560412407, 0.014835502952337265, 0.03217620775103569, 0.00449175201356411, -0.01644039899110794, -0.024295255541801453, -0.016179440543055534, 0.04164901003241539, -0.017536425963044167, 0.0089639313519001, -0.0042503648437559605, 0.036377646028995514, 0.01880207471549511, -0.002888486720621586, -0.01193233672529459, 0.02805306203663349, 0.015474851243197918, 0.03152381256222725, 0.015944577753543854, 0.0163490641862154, -0.014613687992095947, -0.02549566701054573, 0.010118674486875534, 0.005431203171610832, 0.010125198401510715, 0.0022491379640996456, -0.0040807416662573814, 0.038882847875356674, 0.0022377208806574345, 0.016596974804997444, -0.0157358106225729, -0.046685513108968735, 0.024830222129821777, -0.011018981225788593, 0.021985771134495735, 0.0024954176042228937, 0.031001895666122437, 0.02057659439742565, 0.029044704511761665, 0.006569635588675737, -0.01616639271378517, 0.021098511293530464, -0.00769828213378787, -0.0024856317322701216, 0.01722327433526516, 0.01474416721612215, 0.021790051832795143, 0.007991860620677471, -0.045067571103572845, 0.04684208706021309, -0.025743577629327774, 0.0019098916091024876, 0.012956599704921246, -0.0007009187829680741, -0.0025688123423606157, -0.034342166036367416, 0.0034087731037288904, 0.004309080541133881, 0.008579017594456673, 0.008409394882619381, -0.005610612221062183, 0.04128366708755493, -0.0173668023198843, 0.009296653792262077, 0.0451197624206543, -0.028966417536139488, -0.024477927014231682, -0.0025818601716309786, 0.01731461100280285, -0.008905216120183468, 0.029383951798081398, -0.013263226486742496, 0.03593401610851288, -0.015657521784305573, -0.0007323153549805284, 0.02419087290763855, 0.006559849716722965, -0.024530118331313133, 0.013361086137592793, 0.02353847585618496, 0.028757650405168533, -0.0060705519281327724, -0.004266675096005201, -0.005264841951429844, 0.015448755584657192, 0.0023241634480655193, 0.01002733875066042, 0.02349933236837387, -0.02065488137304783, 0.0037056137807667255, 0.0008138649864122272, -0.008370250463485718, 0.037499766796827316, -0.006520705763250589, 0.011221224442124367, 0.016727453097701073, 0.04324086010456085, 0.015083413571119308, -0.00629236688837409, 0.0011669747764244676, 0.000799593806732446, -0.007907048799097538, -0.011717045679688454, -0.010627543553709984, 0.005317033734172583, -0.025052037090063095, -0.01921960897743702, -0.0036762559320777655, -0.02455621398985386, -0.031001895666122437, 0.01501817349344492, -0.04110099747776985, -0.002850973978638649, -0.010320916771888733, 0.04874708876013756, -0.009322750382125378, -0.011110316962003708, -0.016884028911590576, -0.004097051918506622, -0.028444498777389526, -0.00038267148192971945, -0.009407561272382736, 0.004974525421857834, -0.004028549883514643, -0.001877271686680615, 0.02297741360962391, 0.0007058117771521211, -0.0348379872739315, -0.015944577753543854, 0.01274130865931511, -0.013008791953325272, 0.011299512349069118, 0.016923172399401665, -0.028026966378092766, -0.03658641129732132, 0.0012232440058141947, 0.012173723429441452, 0.009237938560545444, 0.0017794122686609626, -0.004729876760393381, 0.017679952085018158, 0.001980024157091975, 0.00014332341379486024, -0.00375454337336123, -0.009642424061894417, 0.016505638137459755, -0.00750908674672246, 0.004462393932044506, 0.019467519596219063, -0.010105625726282597, -0.059550777077674866, -0.02135946974158287, 0.039587438106536865, 0.030245114117860794, 0.021998818963766098, -0.015448755584657192, 0.002236089901998639, 0.024647550657391548, -0.016309918835759163, 0.017627760767936707, 0.004416726063936949, -0.001766364322975278, 0.011906241066753864, 0.017849575728178024, 0.00711764907464385, 0.03622106835246086, -0.01602286472916603, -0.016362112015485764, -0.008298487402498722, 0.040135450661182404, 0.006961073726415634, 0.017353754490613937, 0.006054242141544819, 0.021946627646684647, -0.013113175518810749, 0.012297679670155048, 0.019480567425489426, 0.0629432424902916, -0.032567646354436874, 0.031602099537849426, 0.026200255379080772, 0.0009043850586749613, 0.004488490056246519, 0.019845910370349884, 0.00046401721192523837, -0.024203920736908913, 0.028574978932738304, 0.01193233672529459, 0.006331510841846466, 0.014183105900883675, -0.03979620337486267, -0.014496256597340107, -0.0004680946876760572, -0.008311535231769085, 0.008742116391658783, 0.03867408260703087, 0.005274627823382616, 0.02442573569715023, 0.026121966540813446, 0.04295380413532257, 0.0368734672665596, 0.005261579994112253, -0.02293827012181282, 0.03650812432169914, 0.015540091320872307, -0.04052688926458359, 0.005026717204600573, -0.008363726548850536, -0.005855260882526636, 0.01666221395134926, -0.02419087290763855, 0.0015804312424734235, -0.0009182484936900437, 0.01385690737515688, 0.027661623433232307, -0.019650191068649292, 0.0015828777104616165, 0.0038654508534818888, 0.002864021807909012, 0.007359035778790712, 0.004224269185215235, -0.015814097598195076, -0.026800459250807762, -0.015096461400389671, -0.037160519510507584, -0.01987200602889061, -0.002934154588729143, -0.011593090370297432, -0.030662648379802704, 0.04198825731873512, 0.026108918711543083, 0.02312094159424305, -0.009616328403353691, 0.023421043530106544, -0.008905216120183468, 0.012956599704921246, 0.0031086707022041082, 0.001193070551380515, -0.005851998925209045, -0.020537450909614563, 0.03856969624757767, -0.01745813712477684, -0.02590015158057213, -0.024308303371071815, 0.002002858091145754, 0.024999843910336494, -0.02497374825179577, -0.028444498777389526, 0.007039361167699099, 0.0017777811735868454, 0.009061791002750397, -0.03927428647875786, -0.018358444795012474, 0.034994564950466156, -0.029958060011267662, 0.005408369470387697, -0.004279722925275564, -0.007208984345197678, -0.0044950139708817005, -0.011821429245173931, 0.027009226381778717, -0.02043306641280651, 0.020968033000826836, 0.004625493194907904, -0.007835285738110542, -0.04937338829040527, 0.03306346759200096, -0.020537450909614563, -0.04177948832511902, -0.007691758219152689, -0.017197178676724434, 0.01644039899110794, -0.006380440667271614, 0.014065674506127834, -0.002743328455835581, 0.04402373358607292, 0.012591257691383362, 0.004870141856372356, -0.048825375735759735, -0.010014290921390057, -0.016466494649648666, -0.023668956011533737, 0.026395972818136215, -0.03807387501001358, 0.018723787739872932, 0.011625710874795914, 0.0167535487562418, 0.014143962413072586, 0.012023672461509705, -0.02353847585618496, -0.015814097598195076, -0.00500062108039856, 0.017445089295506477, 0.00577044952660799, -0.004485227633267641, 0.001001429045572877, -0.002221411094069481, -0.02005467750132084, -0.004729876760393381, 0.022677311673760414, -0.0019294634694233537, -0.04527633637189865, -0.014705023728311062, 0.005728043615818024, 0.02424306422472, -0.032985180616378784, -0.001055251806974411, -0.024960700422525406, 0.030375594273209572, 0.005212650168687105, -0.00430581858381629, -0.05892447754740715, 0.00034250831231474876, 0.014431016519665718, -0.00704588508233428, 0.021020224317908287, 0.0018691167933866382, 0.016218584030866623, 0.004821212030947208, -0.030819224193692207, -0.012865264900028706, -0.01689707674086094, -0.020811457186937332, 0.021855292841792107, -0.0004774729022756219, 0.01088850200176239, -0.02265121601521969, 0.013739475980401039, -0.0336114838719368, -0.02312094159424305, 0.012786976993083954, -0.007235080469399691, -0.024060392752289772, 0.01740594580769539, 0.015892386436462402, 0.003195113269612193, 0.004876665771007538, 0.003415297018364072, 0.01647954247891903, 0.005052812863141298, -0.0199111495167017, 0.0356469601392746, 0.0215421412140131, 0.011664854362607002, -0.003141290508210659, 0.009936003014445305, -0.005529062822461128, 0.02163347788155079, -0.014757215045392513, -0.005199602339416742, 0.017353754490613937, -0.002720494521781802, -0.01195843331515789, 0.003301127813756466, -0.005871571134775877, 0.0035033707972615957, 0.008213675580918789, -0.025508714839816093, 0.005773711483925581, -0.0003847102343570441, 0.006158625707030296, 0.017392897978425026, -0.0025476093869656324, -0.00886607263237238, -0.00033537272247485816, -0.006158625707030296, -0.021242039278149605, -0.027661623433232307, -0.02330361306667328, 0.012082388624548912, -0.008820404298603535, 0.018880363553762436, -0.003175541292876005, -0.034890178591012955, 0.03449873998761177, -0.011279940605163574, -0.011521327309310436, -0.018880363553762436, 0.026852650567889214, 0.016035912558436394, 0.005799807142466307, 0.009675044566392899, 0.009668520651757717, 0.005467085167765617, -0.01251296978443861, 0.01685793325304985, -0.005542110651731491, 0.01713193953037262, -0.011625710874795914, -0.015944577753543854, -0.004811426158994436, -0.01662307046353817, 0.027217993512749672, -0.037160519510507584, 0.019167417660355568, 0.01564447395503521, 0.004977787379175425, 0.007717853877693415, -0.04397154226899147, -0.00968156848102808, 0.01885426603257656, -2.068046887870878e-05, -0.011880145408213139, -0.0031445524655282497, -0.014770262874662876, -0.008885644376277924, -0.012591257691383362, 0.040657367557287216, 0.00559430243447423, -0.025234706699848175, -0.016362112015485764, 0.012937027961015701, 0.02275560051202774, 0.02065488137304783, -0.015540091320872307, -0.014000434428453445, 0.025560906156897545, 0.025939295068383217, -0.012956599704921246, -0.011860573664307594, 0.005750877782702446, 0.01501817349344492, -0.007815713062882423, -0.00763956643640995, -0.015905434265732765, 0.005835689138621092, -0.023903818801045418, -0.003402249189093709, -0.012969647534191608, -0.025613097473978996, 0.04081394150853157, 0.00466789910569787, 0.0027955202385783195, 0.01281307265162468, 0.005069123115390539, 0.016231631860136986, 0.029749292880296707, -0.021790051832795143, -0.016362112015485764, 0.00791357271373272, -0.01941532827913761, 0.012010624632239342, 0.006713162641972303, 0.00291295163333416, -0.048955854028463364, -0.044780515134334564, 0.011149461381137371, -0.025926247239112854, -0.0113060362637043, 0.018175773322582245, -0.015187797136604786, -0.00588461896404624, 0.01432663295418024, 0.0042503648437559605, -0.009094411507248878, 0.034159496426582336, 0.005199602339416742, -0.01801919937133789, -0.017353754490613937, -0.0049288575537502766, -0.009342322126030922, -0.0032750319223850965, -0.02135946974158287, 0.014404920861124992, -0.04822516813874245, -0.011482182890176773, -0.020602690055966377, 0.0066511849872767925, -0.007359035778790712, 0.006220603361725807, -0.00026646332116797566, 0.006967597641050816, -0.0007416935986839235, 0.010516636073589325, -0.03546429052948952, 0.0067001148127019405, 0.010392680764198303, 0.008181056007742882, -0.026774363592267036, 0.011325608007609844, -0.01397433876991272, 0.014313585124909878, -0.005222436040639877, -0.011638758704066277, 0.012754357419908047, 0.005675851833075285, 0.004821212030947208, 0.010549255646765232, 0.02800086885690689, 0.028522787615656853, -0.04123147577047348, 0.036612506955862045, -0.003591444343328476, -0.03045388124883175, 0.0005402661045081913, 0.008879120461642742, -0.0028819628059864044, -0.0073916553519666195, 0.01049706432968378, -0.00349358469247818, 0.008839976042509079, -0.0067001148127019405, 0.0013268119655549526, 0.007946193218231201, 0.01796700805425644, 0.021698717027902603, 0.004707042593508959, -0.014365777373313904, -0.015057317912578583, -0.01718413084745407, -0.010829786770045757, -0.0017386374529451132, -0.026265494525432587, 0.003774115350097418, 0.015500947833061218, -0.007600422482937574, 0.011978005059063435, -0.014718071557581425, 0.0032505670096725225, 0.01814967766404152, 0.016636118292808533, 0.005264841951429844, -0.0019001056207343936, 0.007430799305438995, 0.034942369908094406, 0.012010624632239342, 0.009851191192865372, 0.002598170191049576, 0.009061791002750397, 0.02511727623641491, 0.0017924600979313254, 0.012082388624548912, 0.01543570775538683, -0.012173723429441452, 0.0012199819320812821, -0.007965764962136745, 0.012447730638086796, 0.041622914373874664, 0.0017337444005534053, -0.004406940191984177, 0.023068750277161598, 0.006103171966969967, -0.01620553620159626, -0.012760881334543228, 0.002090931637212634, -0.003989406395703554, 0.019976388663053513, -0.007430799305438995, -0.021659573540091515, -0.01978067122399807, -0.008748641237616539, -0.019611047580838203, -0.012486874125897884, -0.0069806454703211784, 0.010249153710901737, 0.013830811716616154, -0.001901736599393189, 0.024399640038609505, -0.0013961291406303644, -0.007593898568302393, -0.0005011222674511373, -0.017171083018183708, 0.023199228569865227, 0.005959644448012114, 0.006784926634281874, -0.013543756678700447, -0.004994097165763378, -0.013674236834049225, -0.008820404298603535, 0.0025590264704078436, -0.007111124694347382, 0.0018658548360690475, -0.02265121601521969, -0.017614712938666344, -0.010875454172492027, 0.012415111064910889, -0.0152530362829566, 0.014757215045392513, -0.019350089132785797, 0.018267109990119934, -0.00849420577287674, -0.034107305109500885, -0.01981981471180916, -0.00898350402712822, -0.012219391763210297, 0.006876261904835701, 0.002169219311326742, -0.06231693923473358, -0.017797384411096573, 0.005261579994112253, -0.004152505658566952, -0.01030786894261837, -0.008826928213238716, 0.017053652554750443, -0.005685637705028057, 0.015774954110383987, -0.0183845404535532, 0.009577184915542603, 0.0007559647783637047, 0.02424306422472, 0.039483051747083664, -0.020159060135483742, 0.015200844965875149, -0.036560315638780594, -0.005467085167765617, 0.0005227329093031585, 0.021150704473257065, 0.011136412620544434, 0.0019474043510854244, 0.001577169168740511, 0.007274223957210779, -0.014548447914421558, -0.007267700042575598, -0.023525428026914597, -0.0044460841454565525, 0.004198173061013222, 0.022833887487649918, -0.004563515540212393, -0.0057410914450883865, -0.007443847134709358, -0.013034887611865997, 0.0026454690378159285, 0.0188934113830328, -0.003141290508210659, -0.0011474027996882796, -0.0006515812710858881, 0.00711764907464385, -0.011475658975541592, -0.018606355413794518, 0.0011596352560445666, -0.016192488372325897, -0.008415918797254562, -0.01165833044797182, -0.0142352981492877, -0.009296653792262077, 0.020459162071347237, -0.011097269132733345, -0.013008791953325272, 0.016101151704788208, -0.023668956011533737, -0.034707508981227875, -0.0036371119786053896, 0.024477927014231682, 0.017079748213291168, -0.014979030005633831, 0.004671161063015461, -0.003751281416043639, 0.04986920952796936, 0.008200627751648426, 0.023016558960080147, 0.014104817993938923, -0.010360061191022396, 0.008879120461642742, 0.02005467750132084, 0.010099101811647415, -0.0010144769912585616, -0.015096461400389671, -0.006501134019345045, -0.0005382273229770362, 0.01574885845184326, 0.008657305501401424, 0.013661188073456287, 0.00746341934427619, -0.013113175518810749, -0.026852650567889214, -0.0031918513122946024, 0.005617136135697365, -0.021333374083042145, -0.005904190707951784, 0.005623660050332546, -0.009701140224933624, -0.016401255503296852, 0.03306346759200096, -0.027270184829831123, -0.004269937053322792, 0.010014290921390057, 0.0074895150028169155, -0.010223057121038437, 0.00787442922592163, -0.0022295659873634577, -0.012291155755519867, -0.016936220228672028, -0.001333335880190134, -0.027270184829831123, 0.0430842824280262, 0.010431824252009392, -0.011325608007609844, -0.04616359621286392, -0.0023323185741901398, 0.006139053497463465, 6.568565368070267e-06, -0.04347572103142738, -0.00996209867298603, 0.02553481049835682, -0.015500947833061218, -0.01042530033737421, -0.0010201854165643454, -0.03008854016661644, -0.007372083608061075, -0.027661623433232307, 0.013334990479052067, -0.002408975036814809, 0.019467519596219063, 0.004984311293810606, -0.02484326995909214, -0.028627170249819756, 0.005369225516915321, 0.014522352255880833, 0.031262852251529694, 0.029984155669808388, -0.028809841722249985, -0.01200410071760416, -0.022690359503030777, -0.0029945012647658587, 0.015005125664174557, -0.02270340733230114, -0.0252608023583889, 0.015814097598195076, 0.0034772749058902264, 0.02321227826178074, 0.013400229625403881, -0.018501972779631615, 0.012969647534191608, -0.015657521784305573, 0.0023078536614775658, 0.017484232783317566, 0.013132747262716293, -0.0336114838719368, 0.031132373958826065, -0.031419429928064346, -0.006112957838922739, -0.01000124216079712, -0.0009378203540109098, -0.0033223305363208055, 0.027217993512749672, 0.009851191192865372, -0.011860573664307594, 0.004645064938813448, 0.021098511293530464, -0.020968033000826836, 0.023251421749591827, -0.018593307584524155, -0.006223865319043398, 0.018867315724492073, 0.003907856531441212, 0.002046894980594516, 0.0015380254480987787, -0.002231196966022253, 0.026591692119836807, 0.0017125415615737438, 0.033272236585617065, 0.003901332849636674, 0.04050079360604286, -0.001980024157091975, 0.023290565237402916, -0.0010267094476148486, 0.0070785051211714745, 0.01658392697572708, 0.01996334083378315, -0.006576159503310919, -0.016075056046247482, 0.008839976042509079, 0.006122743710875511, -0.012604305520653725, 0.002118658507242799, -0.017484232783317566, 0.0009647317347116768, -0.004981049336493015, -0.0010422038612887263, -7.828761590644717e-05, 0.013178414665162563, -0.0014002065872773528, 0.00437758257612586, 0.0017826742259785533, -0.01100593339651823, 0.014952934347093105, -0.024451831355690956, 0.008487681858241558, 0.0016636117361485958, -0.02573052980005741, 0.012663021683692932, -0.009922955185174942, -0.02079840935766697, -0.012956599704921246, -0.00849420577287674, -0.028340116143226624, 0.016596974804997444, -0.003604492172598839, -0.028496691957116127, -0.014639783650636673, 0.015814097598195076, -0.002619373146444559, 0.03444654867053032, -0.01480940729379654, -0.009622852317988873, 0.031054086983203888, 0.009316225536167622, -0.031367238610982895, 0.026852650567889214, -0.014143962413072586, -0.012017148546874523, 0.011129888705909252, 0.011058125644922256, -0.002314377576112747, -0.004361272323876619, 0.03021901845932007, -0.003976358566433191, 0.015918482095003128, 0.010594923980534077, 0.008226723410189152, 0.01251296978443861, 0.010464444756507874, 0.012604305520653725, 0.009342322126030922, -0.020746218040585518, 0.002932523610070348, -0.0016546413535252213, -0.0010544363176450133, 0.013843859545886517, 0.029566621407866478, -0.001175945159047842, 0.01764080859720707, -0.03308956325054169, -0.021476902067661285, -0.003943738527595997, -0.013752523809671402, 0.011175557039678097, -0.012904408387839794, -0.010007767006754875, 0.0010413883719593287, 0.012506445869803429, -0.03389853611588478, -0.0015380254480987787, -0.009296653792262077, -0.005923762917518616, 0.02548261731863022, 0.006272795144468546, 0.019245704635977745, -0.0018740097293630242, -0.004716828931123018, 0.0004644249565899372, 0.022729502990841866, 0.018684644252061844, 0.012238963507115841, -0.004048122093081474, 0.02279474399983883, -0.05751530081033707, -0.01195843331515789, 0.008833452127873898, 0.006246699020266533, 0.007359035778790712, -0.00177615019492805, 0.012943551875650883, -0.0188934113830328, 0.025234706699848175, -0.0168057419359684, -0.005460561253130436, -0.005920500960201025, -0.029540525749325752, 0.02985367737710476, -0.03752586245536804, 0.026630835607647896, -0.04211873561143875, 0.015513995662331581, -0.013661188073456287, 0.025991488248109818, 0.0007600422250106931, 0.012101960368454456, -0.004067693836987019, 0.02800086885690689, -0.0226120725274086, 0.015461803413927555, 0.0041296714916825294, -0.03815216198563576, -0.007000217214226723, 0.01504427008330822, 0.020824505016207695, 0.007332939654588699, 0.018919507041573524, -0.00045178475556895137, 0.005444251000881195, 0.028809841722249985, -0.001444243360310793, -0.00910093542188406, -0.02883593738079071, -0.0035881823860108852, 0.0210854634642601, -0.005545372609049082, -0.0017027555732056499, 0.017353754490613937, -0.036012303084135056, -0.010881978087127209, 0.007991860620677471, -0.005127838812768459, 0.002260554814711213, 0.014248345978558064, 0.01912827417254448, -0.0028248780872672796, 0.04744229465723038, -0.005232222378253937, 0.033402714878320694, -0.025417378172278404, -0.006517443805932999, -0.01492683868855238, -0.017236322164535522, -0.008716020733118057, -0.009113983251154423, -0.015305228531360626, -0.0142092015594244, -0.027896486222743988, 0.011403895914554596, 0.009316225536167622, 0.01103202998638153, 0.034159496426582336, -0.0162968710064888, -0.002554133301600814, 0.03222839906811714, 0.027035322040319443, -0.011521327309310436, 0.033272236585617065, 0.007600422482937574, 0.008181056007742882, -0.013517661020159721, 0.0336114838719368, 0.02763552777469158, -0.021281182765960693, 0.010895025916397572, 0.011195128783583641, -0.002503572730347514, 0.0008701342158019543, 0.024778028950095177, -0.028888128697872162, -0.012747833505272865, 0.010347013361752033, -0.014026531018316746, -0.025560906156897545, -0.021281182765960693, -0.016035912558436394, 0.004341700579971075, -0.001825080020353198, 0.015187797136604786, -0.003247305052354932, 0.00239103427156806, -0.02312094159424305, 0.0110776973888278, -0.0173668023198843, -0.011971481144428253, 0.003774115350097418, 0.024778028950095177, 0.0067001148127019405, 0.01671440526843071, -0.00408726604655385, -0.014691975899040699, 0.013869955204427242, -0.005431203171610832, 0.018541116267442703, -0.00582916522398591, 0.02967100590467453, -0.011860573664307594, -0.01165833044797182, -0.00756780244410038, -0.011358227580785751, 0.028079157695174217, -0.01555313915014267, 0.0066283512860536575, -0.021372517570853233, -0.017053652554750443, 0.0030907297041267157, 0.014979030005633831, -0.01932399347424507, 0.02335580438375473, 0.008892168290913105, 0.0020648357458412647, -0.00372518552467227, -0.008357202634215355, 0.02014601230621338, -0.0189977940171957, -0.017432041466236115, -0.005783497355878353, -0.0010634067002683878, 0.0035490384325385094, -0.014757215045392513, -0.00047217216342687607, -0.0022491379640996456, 0.00023445508850272745, -0.018267109990119934, 0.004485227633267641, -0.0205244030803442, -0.014365777373313904, 0.0006340481340885162, -0.010470968671143055, 0.0009712557075545192, 0.007502562832087278, -0.01548789907246828, -0.013374133966863155, 0.00559430243447423, -0.010921122506260872, 0.02520861104130745, -0.007430799305438995, 0.021946627646684647, -0.004915809724479914, -0.009250986389815807, -0.004990835208445787, 0.0017484233248978853, 0.007019789423793554, 0.0009345583966933191, -0.01251296978443861, 0.007496038917452097, -0.03335052356123924, 0.042979899793863297, 0.003731709672138095, 0.018423685804009438, -0.00745037104934454, -0.006537015549838543, -0.00449175201356411, -0.0026177421677857637, 0.012793500907719135, 0.00426015118137002, 0.00436453428119421, -0.01676659658551216, -7.900117452663835e-06, 0.008826928213238716, -0.0025916462764143944, -0.015918482095003128, 0.011312560178339481, 0.02103327214717865, 0.0023029607255011797, 0.004729876760393381, 0.024490974843502045, 0.01852806843817234, -0.017940910533070564, -0.016179440543055534, 0.00271070864982903, -0.013093603774905205, 0.011854049749672413, 0.0005724781658500433, 0.0038295690901577473, 0.019532758742570877, 0.017340706661343575, -0.009994718246161938, 0.007437323220074177, -0.006608779542148113, 0.015057317912578583, 0.0038393549621105194, 0.0070524089969694614, 0.00826586689800024, 0.018084438517689705, 0.0003298681112937629, 0.004641802981495857, 0.00926403421908617, -0.0031151946168392897, 0.02437354438006878, 0.009949050843715668, -0.02609587088227272, 0.01263040117919445, -0.005679113790392876, -0.009883810766041279, 0.027452856302261353, 0.023642858490347862, -0.00769828213378787, -0.017210226505994797, 0.001825080020353198, 0.01824101433157921, 0.0016367004718631506, -0.013804716058075428, -0.004123147577047348, -0.017862623557448387, 0.0014801252400502563, -0.0006450572982430458, -0.018554164096713066, -0.0022132559679448605, -0.015122557058930397, -0.02591319940984249, 0.0015486268093809485, -0.010660163126885891, 0.0008024480193853378, 0.006475037895143032, -0.0008065255242399871, -0.01195843331515789, -0.01787567138671875, -0.0029977632220834494, 0.013060983270406723, -0.024738885462284088, -0.01978067122399807, 0.007091552950441837, 0.004028549883514643, 0.021489949896931648, 0.014652831479907036, 0.01852806843817234, 0.005222436040639877, 0.0005647309590131044, -0.015761906281113625, -0.0031135636381804943, 0.014913789927959442, -0.029566621407866478, -0.005953120533376932, 0.003601230215281248, 0.00822019949555397, -0.031967442482709885, -0.013413277454674244, -0.008605113252997398, 0.019845910370349884, 0.0056203980930149555, 0.031027991324663162, 0.015318276360630989, -0.014770262874662876, -0.019193513318896294, 0.02549566701054573, -0.0050397650338709354, 0.008200627751648426, -0.00852030236274004, -0.020224299281835556, -0.00038246760959737003, 0.0039698341861367226, -0.00640653632581234, 0.013354562222957611, 0.008670353330671787, -0.017079748213291168, 0.014691975899040699, -0.005274627823382616, -0.03074093535542488, 0.006889310199767351, 0.01285874005407095, -0.022820839658379555, 0.012565162032842636, 0.005173506680876017, 0.014470160938799381, 0.00996209867298603, -0.018867315724492073, 0.0033467954490333796, 0.012676069512963295, -0.007039361167699099, -0.010901549831032753, 0.0067001148127019405, 0.005326819606125355, -0.005613874178379774, -0.014848550781607628, 0.018319301307201385, -0.006563111674040556, -0.004622231237590313, -0.008996551856398582, 0.007998384535312653, -0.01084283459931612, -0.014170058071613312, 0.011782285757362843, -0.00692845368757844, 0.014574543572962284, 0.014522352255880833, -0.01968933455646038, 0.017536425963044167, 0.0013855276629328728, 0.006171673536300659, 0.007613470312207937, 0.012969647534191608, -0.005591040477156639, -0.008298487402498722, -0.021437758579850197, 0.012023672461509705, -0.010086053982377052, -0.002671564696356654, -0.023016558960080147, -0.002647100016474724, -0.011273416690528393, -0.026161110028624535, 0.009903383441269398, -0.004876665771007538, 0.018580259755253792, -0.03110627830028534, 0.008507253602147102, 0.003077681874856353, -0.016610022634267807, -0.011084221303462982, -0.004974525421857834, 0.0026829817797988653, 0.0036599459126591682, 0.009401037357747555, 0.014770262874662876, 0.01805834285914898, -0.018280157819390297, 0.010516636073589325, -0.011906241066753864, 0.007202460430562496, -0.014026531018316746, 0.003770853392779827, 0.001635884866118431, 0.007646090351045132, 0.006674019154161215, -0.013726428151130676, 0.002575336256995797, 0.007528658956289291, 0.01149523165076971, 0.017301563173532486, -0.006598993204534054, -0.009414085187017918, -0.006908881943672895, 0.005930286832153797, -0.013869955204427242, -0.014170058071613312, 0.006625089328736067, -0.013243654742836952, 0.006837118417024612, 0.014757215045392513, -0.006497872062027454, -0.01030786894261837, -0.014222249388694763, 0.022638168185949326, 0.025573953986167908, 0.008298487402498722, -0.022259777411818504, -0.020824505016207695, 0.012141103856265545, 0.013595948927104473, -0.012362918816506863, 0.02034173160791397, -0.012708689086139202, -0.014848550781607628, -0.018319301307201385, -0.01876293122768402, 0.022899126634001732, -0.02618720754981041, -0.03264593333005905, -0.0047853305004537106, 0.008115815930068493, -0.016009816899895668, 0.0178234800696373, -0.014600640162825584, 0.012682593427598476, 0.006625089328736067, -0.013948243111371994, -0.003025490092113614, -0.0005720704211853445, 0.01385690737515688, -0.012473826296627522, -0.007300320081412792, -0.010679734870791435, -0.002086038701236248, 0.025547858327627182, 0.009120507165789604, -0.01791481487452984, 0.019010841846466064, -0.01160613913089037, 0.01227810699492693, 0.013739475980401039, 0.005284413695335388, 0.017484232783317566, 0.0081484355032444, -0.012258535251021385, 0.011743142269551754, 0.010484016500413418, -0.00704588508233428, 2.790525286400225e-05, -0.011788809671998024, -0.021568236872553825, -0.002759638475254178, -0.026500357314944267, -0.00044322205940261483, 0.004410202149301767, -0.0036175402346998453, -2.920494989666622e-05, -0.014026531018316746, 0.018488924950361252, -0.008298487402498722, 0.00663813715800643, 0.023486284539103508, -0.003907856531441212, 0.002152909291908145, 0.004906023852527142, -0.010170865803956985, -0.0399266816675663, -0.002939047524705529, 0.0067718783393502235, -0.018841218203306198, 0.008305011317133904, 0.00763956643640995, 0.010914597660303116, -0.026904843747615814, 0.009577184915542603, 0.019767621532082558, -0.004524371586740017, 0.011129888705909252, 0.0006254854379221797, 0.030636552721261978, 0.013315417803823948, -0.005225697997957468, -0.0009663627133704722, -0.0020207990892231464, -0.003005918115377426, 0.02299046330153942, 0.008324583061039448, 0.006178197450935841, 0.011319084092974663, 0.00215943343937397, -0.015200844965875149, 0.014535400085151196, -0.041492436081171036, -0.006830594036728144, 0.0023257944267243147, 0.0070785051211714745, 0.018280157819390297, 0.015305228531360626, -0.013211035169661045, 0.0399266816675663, -0.006670757196843624, -0.0188934113830328, -0.006811022292822599, -0.011436515487730503, 0.015200844965875149, -0.0070524089969694614, 0.004690732806921005, 0.007593898568302393, -0.016701357439160347, -0.01450930442661047, 0.0007041807984933257, -0.011984528973698616, -0.0007180441753007472, 0.0072220321744680405, 0.01060797180980444, -0.00698716938495636, 0.02729628048837185, 0.0049288575537502766, -0.02758333645761013, 0.01731461100280285, -0.0004880743508692831, -0.012173723429441452, -0.009896859526634216, 0.01718413084745407, 0.021620430052280426, -0.01718413084745407, 0.018515020608901978, -0.00238614110276103, 0.0026046941056847572, 0.026226351037621498, 0.0014002065872773528, 0.017614712938666344, -0.008526826277375221, 0.00995557475835085, 0.0009206949616782367, 0.002839556895196438, -0.020733170211315155, 0.009981670416891575, 0.032854702323675156, -0.019350089132785797, -0.020928889513015747, 0.008252819068729877, 0.007267700042575598, -0.006615303456783295, -0.009877286851406097, -0.002759638475254178, 0.005082170944660902, -0.023068750277161598, -0.020928889513015747, -0.004733138717710972, 0.0063119386322796345, 0.000811826263088733, 0.03682127594947815, 0.004984311293810606, -0.019337041303515434, 0.028261829167604446, 0.0042275311425328255, 0.009394513443112373, -0.0007025497616268694, 0.017679952085018158, 0.004645064938813448, -0.015122557058930397, -0.012284630909562111, 0.005434465128928423, 0.01265649776905775, -0.0012460778234526515, 0.0042046974413096905, -0.006908881943672895, 0.017679952085018158, -0.0045178476721048355, 0.0036697317846119404, 0.010392680764198303, 0.0008994920644909143, 0.0017940911930054426, 0.016870981082320213, -0.013034887611865997, 0.002304591704159975, 0.0055714682675898075, -0.020354779437184334, -0.003509894711896777, -0.009949050843715668, 0.007469943258911371, 0.008676877245306969, 0.01658392697572708, -0.008487681858241558, -0.004175339359790087, -0.0019914412405341864, 0.05059989541769028, 0.011195128783583641, -0.00886607263237238, 0.0063608684577047825, -0.005212650168687105, 0.0003382269642315805, 0.01574885845184326, 0.009557613171637058, 4.485227691475302e-05, 0.007195936515927315, -0.013387181796133518, 0.013041411526501179, 0.016792692244052887, -0.01486159861087799, -0.00021447543986141682, 0.0038784989155828953, -0.020237348973751068, 0.03170648217201233, 0.0232253260910511, -0.0091922702267766, 0.005199602339416742, -0.010953742079436779, 0.005310509819537401, 0.00968156848102808, -0.011619186960160732, -0.024112584069371223, 0.005193078424781561, 0.02763552777469158, 0.015500947833061218, -0.005633446387946606, -0.011397371999919415, 0.003111932659521699, -0.023708099499344826, -0.005043026991188526, 0.018697692081332207, 0.0013790037482976913, -0.0010609602322801948, -0.0305582657456398, -0.00798533670604229, -0.0033957252744585276, 0.02711361087858677, -0.02535213902592659, 0.008350678719580173, 0.004331914708018303, 0.014979030005633831, -0.024921556934714317, 0.02972319722175598, -0.002686243737116456, -0.004472179803997278, 0.005206126254051924, 0.015853241086006165, -0.006654446944594383, -0.029122991487383842, -0.010229581035673618, -0.028496691957116127, -0.013413277454674244, 0.015566186979413033, -0.015122557058930397, 0.0011155984830111265, 0.018397588282823563, -0.013504613190889359, -0.005979216657578945, 0.003679517889395356, 0.003389201359823346, 0.012408587150275707, 0.013883003033697605, -0.0024611668195575476, 0.013074031099677086, -0.015031221322715282, -0.016048960387706757, -0.0188934113830328, -0.005865047220140696, -0.0079200966283679, 0.019937245175242424, -0.02302960678935051, -0.0188934113830328, 0.015853241086006165, -0.011971481144428253, 0.02177700400352478, -0.01258473377674818, 0.0055714682675898075, -0.006370654329657555, 0.0065565877594053745, -0.011155985295772552, -0.0042764609679579735, 0.012786976993083954, 0.03841312229633331, 0.01169747393578291, -0.00553558673709631, 0.008839976042509079, -0.005721519701182842, 0.00849420577287674, 0.040657367557287216, -0.008670353330671787, -0.004599397070705891, 0.023068750277161598, -0.020746218040585518, -0.0021121345926076174, -0.0077569978311657906, 0.004263413138687611, -0.00466789910569787, 0.003532728645950556, -0.007332939654588699, 0.01754947379231453, 0.03718661516904831, -0.024086488410830498, 0.0022475069854408503, 0.007424275390803814, -0.005219174083322287, -0.015187797136604786, 0.017536425963044167, 0.0284705962985754, 0.022259777411818504, -0.013158842921257019, -0.002981453202664852, 0.0024986795615404844, 0.013569853268563747, 0.030897511169314384, -0.0010128460125997663, -0.011482182890176773, 0.004870141856372356, 0.012238963507115841, -0.00026381295174360275, 0.0026846127584576607, 0.010810215026140213, 0.016923172399401665, -0.007665662094950676, 0.011332131922245026, 0.0167535487562418, -0.004113361705094576, 0.007254652213305235, 0.009779428131878376, -0.01385690737515688, 0.01698841154575348, 0.006693590898066759, -0.0013855276629328728, -0.001109074568375945, 0.00926403421908617, 0.0007359851151704788, 0.02150299772620201, -0.005763925611972809, -0.02150299772620201, 0.006484823767095804, 0.01949361525475979, 0.009511944837868214, -0.01564447395503521, 0.003014073008671403, -0.011286464519798756, -0.00465485081076622, -0.026161110028624535, -0.0042503648437559605, 0.023421043530106544, -0.0007270146743394434, -0.016088103875517845, -0.0074177514761686325, 0.009766379371285439, -0.0007188597228378057, 0.008585541509091854, 0.04718133434653282, -0.023251421749591827, 0.02099412865936756, -0.0012452623341232538, 0.010288297198712826, -0.006602255627512932, -0.003335378598421812, 0.013648140244185925, -0.000651989015750587, 0.002839556895196438, -0.004948429763317108, 0.008200627751648426, -0.014170058071613312, 0.004752710461616516, 0.009629376232624054, 0.01543570775538683, 0.015866288915276527, -0.01207586470991373, 0.014483208768069744, 0.011619186960160732, -0.009237938560545444, 0.00990990735590458, -0.002947202417999506, -0.018045295029878616, -0.013093603774905205, 0.003198375226929784, -0.009224890731275082, 0.004775544628500938, 0.0007608577143400908, 0.0012558638118207455, 0.010986361652612686, 0.008539874106645584, 0.0031429214868694544, -0.011090745218098164, -0.006201031152158976, -0.011384324170649052, 0.026343781501054764, 0.00752213504165411, -0.012747833505272865, -0.015148653648793697, 0.03439435735344887, -0.0035392525605857372, -0.0011702367337420583, 0.0131653668358922, -0.030062442645430565, 0.0017973531503230333, 0.008044051937758923, 0.005219174083322287, 0.016923172399401665, 0.0184367336332798, 0.017901767045259476, -0.021516045555472374, 0.018084438517689705, -0.02428220771253109, -0.00914660282433033, 0.015448755584657192, -0.013478517532348633, -0.005842213053256273, 0.0029113206546753645, 0.0071763647720217705, -0.026017583906650543, -0.03491627424955368, -0.03175867348909378, 0.01778433658182621, -0.011299512349069118, -0.008037528023123741, 0.005336605478078127, -0.006439156364649534, 0.0033027587924152613, -0.01709279604256153, -0.00768523383885622, -0.02284693531692028, 0.010079530067741871, 0.01847587712109089, 0.00500062108039856, -0.003989406395703554, 0.00933579821139574, -0.011690950021147728, 0.017653856426477432, -0.007887477055191994, 0.011991052888333797, -0.00015504617476835847, -0.00027196790324524045, 0.017118891701102257, -0.0008138649864122272, 0.024647550657391548, -0.023942962288856506, -0.010568827390670776, 0.01002733875066042, 0.007359035778790712, 0.031001895666122437, -0.013739475980401039, -0.005989002529531717, 0.013308893889188766, -0.013054459355771542, -0.03794339671730995, 0.03008854016661644, -0.009257510304450989, -0.014757215045392513, 0.00507238507270813, -0.006598993204534054, -0.01861940324306488, -0.003770853392779827, -0.00833110697567463, -0.013491565361618996, -0.013987386599183083, 0.015500947833061218, -0.008526826277375221, 0.022403305396437645, -0.008709496818482876, 0.019754573702812195, 0.009675044566392899, -0.00408726604655385, 0.02014601230621338, -0.0231731329113245, 0.010294821113348007, -0.004181863274425268, -0.0046646371483802795, 0.019676286727190018, -0.022090155631303787, 0.0632563903927803, -0.0019049985567107797, -0.022298922762274742, -0.01054273173213005, -0.012989220209419727, 0.001911522587761283, -0.021098511293530464, -0.00907483883202076, 0.0231731329113245, -0.0027563762851059437, -0.01760166510939598, 0.01861940324306488, -0.00698716938495636, -0.012212867848575115, -0.02028954029083252, 0.01030786894261837, 0.0059759547002613544, 0.018971698358654976, -0.010281773284077644, -0.017197178676724434, 0.021489949896931648, -0.01963714323937893, -0.0031429214868694544, -0.001476047676987946, 0.001684814691543579, 0.0038099971134215593, -9.722240974952001e-06, 0.011266892775893211, 0.013217559084296227, -0.010966789908707142, -0.013217559084296227, 0.006305414717644453, -0.012389014475047588, 0.011867097578942776, -0.03862188756465912, -0.0015812467318028212, -0.012291155755519867, 0.0032065301202237606, -0.031236758455634117, -0.011860573664307594, -0.008807356469333172, -0.0013512768782675266, -0.0284184031188488, -0.004263413138687611, -0.013556805439293385, 0.0031673863995820284, -0.007939668372273445, -0.026683028787374496, 0.028705459088087082, 0.039535243064165115, 0.00822019949555397, -0.007085029035806656, 0.022220633924007416, 0.01492683868855238, 0.01876293122768402, -0.013726428151130676, -0.00852030236274004, -0.04128366708755493, 0.014052626676857471, -0.002673195907846093, 0.010784118436276913, -0.01037963293492794, 0.010301345027983189, -0.016048960387706757, -0.020185155794024467, 0.008526826277375221, 0.009864239022135735, -0.010836310684680939, -0.003299496602267027, 0.008422442711889744, -0.014157010242342949, 0.008787784725427628, 0.028392307460308075, 0.00041631070780567825, 0.005721519701182842, 0.02805306203663349, -0.02386467345058918, -0.017980055883526802, 0.01439187303185463, -0.004971263464540243, -0.005904190707951784, 0.02139861509203911, -0.005365963559597731, -0.031262852251529694, -0.01722327433526516, -0.009616328403353691, -0.007430799305438995, -0.013204511255025864, -0.0020893006585538387, -0.008859547786414623, -0.012734784744679928, 0.01740594580769539, 0.013426325283944607, 0.0028134610038250685, -0.008631209842860699, -0.0010462813079357147, -0.013302369974553585, -0.009753331542015076, -0.0008627947536297143, 0.003881760872900486, 0.011384324170649052, -0.003917642869055271, 0.025613097473978996, 0.0018071390222758055, -0.008572493679821491, -0.004286246839910746, -0.0027743172831833363, 0.03311565890908241, -0.004919071681797504, -0.02302960678935051, -0.01462673582136631, 0.028444498777389526, 0.025691384449601173, 0.01501817349344492, -0.008794308640062809, -0.018775979056954384, -0.011710521765053272, -0.023055702447891235, 0.022037962451577187, -0.011371275410056114, -0.024817174300551414, 0.013439374044537544, 0.006993693299591541, -0.0027253874577581882, -0.026161110028624535, -0.0006511735264211893, -0.014222249388694763, 0.004207959398627281, 0.010836310684680939, -0.007013265509158373, 0.01269564125686884, 0.013400229625403881, 0.023851625621318817, 0.016492590308189392, -0.027426760643720627, -0.0037284474819898605, 0.018032247200608253, -0.006488086190074682, 0.012382490560412407, -0.010229581035673618, 0.0016897076275199652, -0.003943738527595997, 0.0015673832967877388, -0.009864239022135735, 0.003751281416043639, -0.0016342538874596357, -0.030375594273209572, 0.012526018545031548, -0.010353537276387215, 0.017758240923285484, -0.014574543572962284, 0.0007372083491645753, 0.006432632450014353, 0.017210226505994797, 0.007385131437331438, 0.01030786894261837, 0.012499921955168247, -0.0061455778777599335, 0.01118860486894846, -0.004165553487837315, -0.0008448538137599826, 0.015083413571119308, -0.026683028787374496, 0.0005300723714753985, 0.029357854276895523, -0.014444064348936081, -0.027974773198366165, 0.005369225516915321, -0.0057410914450883865, -0.021098511293530464, -0.004788592457771301, 0.004485227633267641, -0.0123498709872365, 0.005972692277282476, -0.011097269132733345, 0.005675851833075285, 0.011051601730287075, -0.010399204678833485, 0.0027270184364169836, 0.018501972779631615, 0.045198049396276474, 0.023786386474967003, 0.009374941699206829, -0.026852650567889214, -0.0021072416566312313, 0.007848333567380905, -0.007482991088181734, 0.014718071557581425, -0.007013265509158373, -0.0018413899233564734, -0.01212153211236, -0.013739475980401039, -0.006073813885450363, 0.024347446858882904, -0.014104817993938923, -0.0005712549318559468, 0.004172077402472496, 0.016610022634267807, -0.01242163497954607, -0.003894808702170849, 0.013595948927104473, 0.0059759547002613544, 0.014705023728311062, 0.01751033030450344, 0.0023306875955313444, -0.005447512958198786, 0.023969057947397232, -0.015122557058930397, 0.01666221395134926, 0.007717853877693415, -0.014665879309177399, -0.03389853611588478, -0.009250986389815807, -0.0007310921209864318, 6.809391197748482e-05, 0.0006650369614362717, 0.014548447914421558, -0.0018316039349883795, 0.005861785262823105, 0.0015575973084196448, 0.007593898568302393, 0.02446487918496132, -0.01662307046353817, -0.013504613190889359, 0.008787784725427628, 0.017379850149154663, -0.002381248166784644, -0.018371492624282837, 0.01972847804427147, -0.010927646420896053, 0.023486284539103508, 0.01513560488820076, 0.005069123115390539, 0.007972288876771927, 0.016283823177218437, 0.0006095832213759422, -0.005874833092093468, -0.014117865823209286, 0.019519710913300514, 0.006850166246294975, 0.008474634028971195, 0.004217745270580053, 0.0006234466563910246, 0.004289508797228336, -0.014117865823209286, -0.0065565877594053745, -0.015031221322715282, 0.026722172275185585, -0.04681599140167236, -0.0158401932567358, -0.008161483332514763, 0.04558948799967766, 0.004051384050399065, 0.0033337476197630167, -0.001983286114409566, 0.012989220209419727, -0.0011694212444126606, 0.006791450548917055, 0.02061573788523674, -0.011358227580785751, 0.01602286472916603, 0.007711329963058233, -0.010764546692371368, 0.012682593427598476, -0.0020061200484633446, 0.012747833505272865, 0.016884028911590576, 0.0022475069854408503, -0.012362918816506863, -0.02623939886689186, -0.007776569575071335, -0.01137780025601387, 0.01270216517150402, -0.01829320564866066, 0.01676659658551216, -0.02711361087858677, -0.02693093940615654, 0.007430799305438995, -0.006915405858308077, -0.005046288948506117, -0.00442324997857213, 0.014261393807828426, 0.016414303332567215, 0.0002017333172261715, 0.016505638137459755, -0.04592873156070709, -0.022181490436196327, 0.004556991625577211, -0.009042219258844852, -0.0006695222109556198, -0.010079530067741871, 0.01370033249258995, 0.02604367956519127, 0.010438348166644573, 0.02734847366809845, 0.008324583061039448, 0.02297741360962391, 0.009733759798109531, 0.009342322126030922, -0.023969057947397232, -0.03335052356123924, -0.010634067468345165, 0.001756578334607184, -0.01764080859720707, 0.022181490436196327, -0.023799434304237366, 0.0022915436420589685, -0.006934977602213621, 0.012017148546874523, 0.011390848085284233, -0.0005211019306443632, 0.009949050843715668, 0.02279474399983883, 0.002497048582881689, 0.008950883522629738, 0.011462611146271229, 0.03329833224415779, 0.010360061191022396, -0.021555189043283463, -0.006037932354956865, -0.015474851243197918, -0.002699291566386819, -0.021281182765960693, -0.008017956279218197, -0.0007045885431580245, -0.007000217214226723, 0.013132747262716293, 0.0057671875692903996, 0.00548013299703598, -0.009616328403353691, 0.001945773372426629, -0.013635092414915562, 0.01072540320456028, -0.010908073745667934, 0.0021626953966915607, 0.009675044566392899, -0.018410637974739075, 0.01564447395503521, 0.01829320564866066, 0.002245876006782055, -0.015083413571119308, 0.004273199010640383, 0.01103202998638153, 0.02164652571082115, -0.0031103016808629036, -0.006882785819470882, 0.025847960263490677, -0.008990027941763401, -0.003995930310338736, 0.010816738940775394, -0.03306346759200096, -0.0014385349350050092, 0.003849141066893935, 0.0033223305363208055, -0.04188387468457222, 0.01211500819772482, -0.01745813712477684, 0.009812047705054283, 0.022951317951083183, -0.0047233528457582, -0.015318276360630989, 0.03267202898859978, -0.009368417784571648, 0.03896113485097885, -0.00791357271373272, 0.007300320081412792, 0.006732734851539135, -0.003663207869976759, 0.009785952046513557, -0.02099412865936756, -0.034420453011989594, 0.009081362746655941, -0.006585945375263691, -0.0015363944694399834, 0.011919288896024227, -0.0032848177943378687, -0.020694026723504066, -0.008572493679821491, -0.008154959417879581, 0.00872906856238842, 0.020224299281835556, -0.0007062195218168199, 0.013935195282101631, -0.002632420975714922, 0.005238746292889118, -0.004501537885516882, -0.011136412620544434, -0.011384324170649052, 0.00926403421908617, -0.022533785551786423, 0.03212401643395424, -0.0007180441753007472, -0.0031722793355584145, 0.0025182515382766724, -0.0009704402182251215, -0.0022034700959920883, 0.009668520651757717, 0.006461990065872669, 0.0020778838079422712, 0.0003537213779054582, 0.01698841154575348, 0.0188934113830328, 0.007776569575071335, -0.0006438340642489493, 0.004830998368561268, 0.005776973441243172, 0.0032505670096725225, 0.01931094378232956, -0.05036503076553345, 0.0016562723321840167, -0.004576563369482756, 0.009277082048356533, -0.01548789907246828, 0.016649166122078896, -0.006961073726415634, 0.014835502952337265, -0.0284705962985754, -0.002961881458759308, -0.017484232783317566, 0.006041194312274456, -0.013517661020159721, -0.00489949993789196, 0.00179082911927253, -0.013295846059918404, 0.0016318074194714427, -0.012773929163813591, -0.011880145408213139, -0.0039698341861367226, 0.01169747393578291, -0.009857715107500553, 0.012486874125897884, -0.009172698482871056, 0.02177700400352478, 0.008455062285065651, 0.009003075771033764, 0.010366585105657578, 0.005796545185148716, 0.0005455667851492763, 0.008990027941763401, -0.026317685842514038, -0.0023682003375142813, -0.0022083630319684744, -0.0015045900363475084, -0.011795333586633205, -0.007496038917452097, 0.00891174003481865, 0.002952095353975892, 0.014287489466369152, 0.008650781586766243, 0.009466277435421944, -0.004922333639115095, -0.006739258766174316, 0.010816738940775394, -0.003973096609115601, -0.03194134682416916, -0.017719095572829247, 0.006758830510079861, -0.0019588214345276356, -0.0055486345663666725, -0.012258535251021385, 0.029827579855918884, 0.027191897854208946, 0.0029879773501306772, 0.012506445869803429, 0.0005843028775416315, -0.00352294254116714, -0.0009908275678753853, 0.0072220321744680405, 0.010764546692371368, -0.006122743710875511, 0.017262419685721397, 0.00047176441876217723, 0.006993693299591541, -0.0035294664558023214, 0.004237317014485598, -0.0011816537007689476, -0.0017255895072594285, 0.025365186855196953, 0.008011432364583015, -0.020902791991829872, 0.0315760038793087, 0.01644039899110794, 0.027374569326639175, -0.0012452623341232538, 0.01118860486894846, 0.007332939654588699, -0.0067718783393502235, -0.008859547786414623, 0.0014205939369276166, 0.002624266082420945, 0.013608996756374836, 0.01149523165076971, -0.010621019639074802, -0.009968622587621212, -0.011671378277242184, 0.009661996737122536, 0.0009182484936900437, 0.006308676674962044, -0.018789026886224747, 0.008579017594456673, 0.007848333567380905, 0.023342756554484367, 0.00914660282433033, 0.001466261805035174, -0.021750908344984055, 0.0010087685659527779, 0.008370250463485718, 0.012493398040533066, -0.0002197761641582474, 0.005150672513991594, 0.001173498691059649, -0.0162968710064888, 0.0007147822179831564, -0.025104228407144547, -0.010621019639074802, -0.002384510124102235, -0.010627543553709984, 0.009590232744812965, 0.019676286727190018, -0.027478951960802078, 0.0003082574694417417, -0.031419429928064346, -0.011084221303462982, -0.010875454172492027, -0.013608996756374836, -0.010692783631384373, 0.017392897978425026, -0.014848550781607628, -0.026774363592267036, 0.022768648341298103, 0.011221224442124367, 0.00036717706825584173, 0.04112709313631058, 0.00524853216484189, -0.027035322040319443, 0.001052805338986218, 0.004286246839910746, 0.00017533163190819323, -0.010699307546019554, 0.0015461803413927555, 0.0017777811735868454, 0.013595948927104473, -0.036742985248565674, -0.027009226381778717, 0.009838143363595009, -0.006948025897145271, -0.007737425621598959, 0.002627528039738536, -0.014822455123066902, 0.01676659658551216, -0.01704060472548008, 0.005754139740020037, -0.007600422482937574, 0.009511944837868214, -0.013113175518810749, 0.011142936535179615, -0.011880145408213139, 0.003074419917538762, -0.010823262855410576, -0.03191525116562843, 0.019193513318896294, -0.004527633544057608, -0.008135387673974037, 0.02210320346057415, 0.00763956643640995, 0.005134362727403641, 0.012636926025152206, -0.015174749307334423, 0.012904408387839794, 9.291557216783985e-05, -0.0045961351133883, 0.00791357271373272, 0.0042503648437559605, 0.0009345583966933191, -0.006559849716722965, -0.01206934079527855, 0.004139457363635302, -0.0067262109369039536, 0.012056292034685612, -0.004472179803997278, -0.024060392752289772, 0.0036077541299164295, -0.010555779561400414, 0.027087513357400894, 0.009061791002750397, 0.007208984345197678, -0.025834912434220314, -0.009590232744812965, 0.017588617280125618, -0.022546833381056786, 0.01160613913089037, 0.004110099747776985, 0.007613470312207937, -0.023147037252783775, 0.015409612096846104, 0.006739258766174316, 0.0232253260910511, 0.01328279823064804, -0.01825406216084957, -0.010275249369442463, -0.01555313915014267, 0.016492590308189392, 0.008278914727270603, -0.005026717204600573, 0.03421168774366379, 0.020602690055966377, 0.009922955185174942, -0.029697101563215256, 0.024999843910336494, -0.01713193953037262, 0.0075612785294651985, 0.01606200821697712, -0.0035783962812274694, 0.016035912558436394, 0.019232656806707382, -0.023982105776667595, 0.013765571638941765, 0.00012599413457792252, 0.017288515344262123, -0.01346546970307827, 0.006263009272515774, 0.010979837737977505, 0.0013904205989092588, -0.0020338469184935093, -0.021607382223010063, -0.0037284474819898605, -0.012786976993083954, 0.0022279350087046623, 0.03606449440121651, 0.016009816899895668, -0.009949050843715668, 0.003067895770072937, 0.0012795132352039218, -0.031184565275907516, 0.02075926586985588, 0.011645282618701458, -0.01921960897743702, 0.014130914583802223, 0.012910932302474976, -0.01796700805425644, 0.0064358944073319435, -0.0034087731037288904, -0.025639193132519722, 0.004674423020333052, -0.008696448989212513, -0.0015217154286801815, 0.006099910009652376, 0.01903693750500679, 0.008063624612987041, -0.00972723588347435, -0.012434682808816433, 0.005819379352033138, -0.004586349241435528, 0.013883003033697605, 0.0058389510959386826, -0.0014988816110417247, -0.017197178676724434, 0.0013830811949446797, 0.01676659658551216, -0.006687066983431578, -0.017993103712797165, 0.002898272592574358, -0.004661375191062689, 0.02168566919863224, 0.0017631022492423654, 0.004498275928199291, 0.0014173319796100259, 0.008109292015433311, -0.026121966540813446, -0.0026927676517516375, -0.0005765556707046926, -0.005352915730327368, -0.0076265181414783, 0.015409612096846104, 0.003382677212357521, -0.0001730890217004344, -0.031027991324663162, -0.0058389510959386826, 0.008533350192010403, 0.008168007247149944, -0.00758085073903203, -0.013948243111371994, -0.00740470364689827, 0.011834478005766869, 0.0017206964548677206, -0.01694926805794239, -0.008187579922378063, -0.00880083255469799, -0.0034903227351605892, 0.008944359607994556, 0.00849420577287674, 0.012454254552721977, 0.0018462828593328595, 0.028209635987877846, 0.014444064348936081, 0.010399204678833485, 0.007717853877693415, -0.013171890750527382, 0.021255087107419968, -0.022964365780353546, 0.0007082582451403141, -0.0033043897710740566, -0.009211842902004719, -0.010953742079436779, -0.0324893593788147, 0.013804716058075428, -0.01381776388734579, 0.020276492461562157, -0.0033092827070504427, 0.004077479708939791, 0.01311969943344593, -0.011286464519798756, -0.0057671875692903996, 0.011997576802968979, 0.003976358566433191, -0.007991860620677471, 0.006024884060025215, -0.011475658975541592, 0.013093603774905205, -0.015527043491601944, -0.025704432278871536, -0.025782721117138863, 0.03502066060900688, 0.0006201846990734339, -0.007085029035806656, 0.0026634098030626774, 0.005290938075631857, 0.0074895150028169155, -0.007202460430562496, -0.008735592477023602, -0.011090745218098164, 0.0012542328331619501, -0.005454036872833967, -0.039535243064165115, 0.007770045660436153, 0.001025893958285451, -0.013608996756374836, 0.013935195282101631, -0.020093820989131927, 0.02121594361960888, 0.00024444490554742515, 0.011097269132733345, -0.0018479138379916549, 0.008357202634215355, -0.00018491371884010732, 0.01334803830832243, 0.013622044585645199, -0.009903383441269398, -0.01149523165076971, 0.0050397650338709354, 0.012271583080291748, -0.0009361893753521144, -0.014222249388694763, 0.007854857482016087, 0.016231631860136986, -0.005242008250206709, -0.028731554746627808, -0.01049706432968378, 0.004302556626498699, -0.00513110077008605, -0.003252197988331318, 0.004746186546981335, -0.0017745192162692547, 0.002433439949527383, 0.006693590898066759, -0.017562521621584892, 0.007691758219152689, -0.005865047220140696, -0.008089720271527767, 0.01054273173213005, 0.030610457062721252, -0.008735592477023602, 0.003571872366592288, -0.013869955204427242, -0.008070148527622223, 0.004974525421857834, 0.017079748213291168, 0.006615303456783295, -0.004234055057168007, -0.0020974555518478155, -0.007293796166777611, 0.0221553947776556, 0.007359035778790712, 0.00956413708627224, -0.012519494630396366, 0.016231631860136986, 8.761484787100926e-05, -0.01207586470991373, 0.0076591381803154945, 0.00232742540538311, 0.021529093384742737, 0.025430426001548767, -0.00833110697567463, 0.002673195907846093, -0.013961290940642357, 0.009250986389815807, -0.007606946397572756, 0.013426325283944607, -0.006572897545993328, -0.010268725454807281, -0.002981453202664852, 0.0029651434160768986, 0.00455046771094203, -0.01170399785041809, -0.006732734851539135, -0.006974121555685997, -0.034759700298309326, 0.011501755565404892, 0.027087513357400894, -0.0018316039349883795, 0.016610022634267807, 0.009701140224933624, -0.00518981646746397, 0.0052452702075243, -0.004077479708939791, 0.01620553620159626, 0.01704060472548008, -0.018032247200608253, 0.0007832839037291706, 0.01490074209868908, 0.0042014354839921, 0.0007967395940795541, -0.009831619448959827, 0.01778433658182621, 0.0020583118312060833, 0.012852216139435768, -0.029514430090785027, -7.670759077882394e-05, 0.006830594036728144, -0.01462673582136631, -0.02214234694838524, -0.03282860666513443], "99a604e4-a110-4600-b68b-b11b0ad3538f": [-0.020291607826948166, -0.028840281069278717, -0.005851359572261572, 0.006744719110429287, -0.03040294162929058, -0.029529688879847527, -0.002886900445446372, 0.013638809323310852, -0.015339352190494537, 0.0032574578654021025, -0.0035389666445553303, 0.013236654922366142, -0.015155510045588017, -0.036515701562166214, -0.0258298609405756, -0.014454610645771027, -0.010134313255548477, 0.045179273933172226, 0.04876420274376869, -0.023210106417536736, 0.057818442583084106, 0.0030851056799292564, -0.012604695744812489, 0.019131101667881012, -0.0015324989799410105, -0.038262203335762024, -0.013512417674064636, 0.002667151391506195, -0.015580645762383938, 0.008858907036483288, 0.02385355532169342, 0.010421567596495152, -0.004983853083103895, 0.007238795515149832, 0.019027691334486008, 0.0023109568282961845, -0.01724671758711338, 0.010789251886308193, -0.0005274697905406356, 0.0012789975153282285, -0.034539394080638885, 0.010680096223950386, -0.010186019353568554, -0.00011409361468395218, -0.05028090253472328, 0.002056737197563052, 0.07013588398694992, -0.05653154477477074, 0.04207693412899971, 0.007480088621377945, 0.014397160150110722, -0.03493006154894829, -0.008416536264121532, -0.009410434402525425, 0.003268948057666421, 0.005021196324378252, 0.013110263273119926, 0.03270097076892853, 0.01644240692257881, -0.03612503781914711, -0.0008789965650066733, 0.023003283888101578, 0.013190694153308868, 0.0005849205190315843, -0.02934584766626358, 0.010180274024605751, 0.029139023274183273, -0.019487297162413597, -0.03584927320480347, -0.043777476996183395, 0.02865643799304962, 0.048902083188295364, -0.032425206154584885, 0.0030851056799292564, 0.001334293861873448, 0.0034757708199322224, 0.005831251852214336, -0.0034413004759699106, 0.005245253909379244, -0.005905937869101763, 0.0021400407422333956, -0.010737546719610691, 0.034884098917245865, -0.032677989453077316, 0.05110819265246391, 0.01868298649787903, 0.029759492725133896, -0.04060619696974754, -0.005285469815135002, -0.03440151363611221, 0.005512400064617395, 0.01770632341504097, 0.006474700290709734, -0.04118070378899574, -0.023095203563570976, -0.0004165179852861911, -0.008519947528839111, 0.03270097076892853, 0.05749671906232834, 0.012868969701230526, 0.021521054208278656, 0.06149528920650482, -0.0430191271007061, 0.025737939402461052, -0.05648558586835861, 0.036745503544807434, -0.006348308641463518, -0.028104910627007484, -0.006727483589202166, 0.029598630964756012, 0.028564516454935074, -0.015454254113137722, -0.002736092312261462, -0.00394686684012413, -0.02838067337870598, -0.0366765633225441, -0.0032086248975247145, -0.017602911219000816, -0.01513252966105938, -0.04099686071276665, 0.02133721113204956, -0.02628946676850319, 0.02454296313226223, 0.03309163451194763, 0.0179591067135334, -0.004788520745933056, -0.00030502761364914477, -0.01905067078769207, 0.01684456132352352, -0.016396446153521538, -0.0073939124122262, -0.016281545162200928, -0.012351912446320057, 0.02665715105831623, -0.022876892238855362, -0.018947260454297066, 0.013466457836329937, 0.06733229011297226, -0.04145646467804909, 0.04159434884786606, -0.0118578365072608, -0.017522480338811874, -0.007261775899678469, 0.0031454290729016066, 0.009456394240260124, -0.013409006409347057, -0.031391095370054245, 0.0182463601231575, -0.015327862463891506, -0.0033091637305915356, -0.03798644244670868, 0.0030563801992684603, 0.007727127056568861, 0.027369540184736252, 0.0079224593937397, 0.004932147450745106, -0.008634848520159721, 0.022647088393568993, -0.013294105418026447, 0.005443459376692772, 0.021475093439221382, -0.027185698971152306, -0.004610423464328051, -0.015327862463891506, 0.04265144094824791, 0.052992578595876694, 0.029414787888526917, -0.0012739705853164196, -0.012685127556324005, 0.011317798867821693, 0.03486112132668495, -0.03384998440742493, -0.012294461950659752, -0.0038434555754065514, 0.033137597143650055, -0.020601840689778328, 0.026243505999445915, 0.010674350894987583, 0.04278932511806488, -0.005107372533529997, -0.0004315988044254482, -0.012317442335188389, -0.023233085870742798, -0.03136811405420303, -0.02139466255903244, 0.03626291826367378, 0.001103772665373981, 0.02254367806017399, -0.02348586916923523, -0.01302983146160841, -0.0253472737967968, -0.027852127328515053, -0.0137307308614254, -7.473086952813901e-06, -0.0026499161031097174, -0.022727519273757935, 0.03598715364933014, 0.025623038411140442, 0.016086211428046227, 0.017579931765794754, -0.0009357291855849326, -0.07059548795223236, -0.018579574301838875, 0.03506794199347496, -0.029253926128149033, 0.007244540378451347, -0.014707393944263458, -0.031483013182878494, -0.010191764682531357, -0.020257137715816498, 0.027622323483228683, -0.021095918491482735, -0.012811519205570221, 0.012237011454999447, -0.024106338620185852, -0.010266450233757496, -0.010013666935265064, 0.025324294343590736, -0.03378104418516159, -0.027070796117186546, -0.030219098553061485, 0.009921745397150517, -0.024611905217170715, -0.034884098917245865, -0.043892379850149155, -0.0038721810560673475, -0.00210557016544044, 0.04005466774106026, -0.06167913228273392, -0.030081216245889664, 0.035251785069704056, 0.011765914969146252, 0.008146516978740692, -0.03451641649007797, 0.0017881548264995217, 0.03800942003726959, -0.021417642012238503, 0.025278333574533463, -0.012903439812362194, -0.027438482269644737, 0.0030219098553061485, 0.024979589506983757, 0.02748444303870201, 0.007997145876288414, 0.0067332289181649685, -0.009014023467898369, 0.018809378147125244, 0.00024111365200951695, 0.018085498362779617, -0.01038135215640068, -0.009186375886201859, -0.0020581732969731092, 0.01847616396844387, -0.03681444376707077, -0.0009098763694055378, 0.004432325717061758, -0.005607193801552057, -0.013604339212179184, 0.03837710618972778, -0.03299971669912338, -0.0074456180445849895, -0.015626605600118637, 0.03692934662103653, -0.020785683766007423, 0.030678704380989075, -0.005730713251978159, 0.008692299947142601, -0.023991435766220093, -0.010789251886308193, 0.02331351675093174, -0.033367399126291275, 0.0018312429310753942, -0.014845275320112705, 0.015638096258044243, -0.01905067078769207, 0.010806487873196602, 0.011892306618392467, -0.006687268149107695, 0.01905067078769207, -0.01250128448009491, 0.008031615987420082, 0.0016789983492344618, 0.005805398803204298, 0.030356980860233307, -0.014351199381053448, -0.021463602781295776, -0.010806487873196602, 0.0153163718059659, 0.0035705645568668842, 0.02442806214094162, -0.004340404644608498, -0.014339708723127842, 0.04180116951465607, 0.012512775138020515, 0.07036568969488144, -0.00999643187969923, -0.0372510701417923, -0.009169140830636024, -0.045179273933172226, -0.009841314516961575, -0.004323169589042664, 0.012340422719717026, 0.0359182134270668, -0.006434484850615263, 0.04000870883464813, -0.01724671758711338, 0.05579617619514465, 0.036423780024051666, -0.03249415010213852, 0.007324971724301577, 0.01728118769824505, -0.009312767535448074, -0.035366687923669815, -0.024703824892640114, 0.006032329518347979, 0.04299614578485489, 0.016924992203712463, -0.016603268682956696, -0.019085140898823738, -0.017154796048998833, 0.02345139905810356, 0.011358014307916164, -0.03203454241156578, -0.004222630523145199, -0.009031259454786777, -0.04451284557580948, 0.057818442583084106, -0.025990722700953484, -0.018981730565428734, -0.033022694289684296, -0.03538966551423073, -0.0015324989799410105, -0.011593562550842762, -0.0067504639737308025, 0.002161584794521332, -0.020670782774686813, -0.010237724520266056, -0.06462061405181885, 0.0274614617228508, -0.003424065187573433, -0.004127836786210537, -0.02068227343261242, -0.00789373368024826, -0.02108442783355713, 0.04683385789394379, 0.011696973815560341, -0.006273622624576092, 0.006400014273822308, -0.016970952972769737, -0.0011540420819073915, 0.0007134666084311903, -0.027783187106251717, 0.0024703824892640114, 0.0033091637305915356, 0.042835284024477005, -0.010450292378664017, -0.0005899474490433931, -0.009174886159598827, 0.005690497346222401, -0.01049625314772129, 0.05708307400345802, 0.0008086194284260273, -0.03869882971048355, -0.02759934403002262, -0.020463960245251656, 0.021498072892427444, 0.0139720244333148, 0.006882600951939821, 0.011335034854710102, 0.045294176787137985, -0.026588210836052895, -0.00022603281831834465, -0.009921745397150517, -0.021302741020917892, -0.019544746726751328, -0.01962517946958542, 0.0005396780325099826, -0.014879746362566948, -0.07100913673639297, 0.025852840393781662, 0.006089780479669571, 0.007376677356660366, 0.008847416378557682, -0.010122823528945446, 0.036056093871593475, 0.022727519273757935, 0.029184984043240547, -0.008330360054969788, 0.009565550833940506, -0.004317424260079861, -0.028587495908141136, 0.007462853565812111, -0.03391892835497856, -0.014776335097849369, -0.04088195785880089, 0.025691978633403778, -0.0030851056799292564, -0.02030309848487377, 0.006727483589202166, -0.028081929311156273, -0.008669319562613964, -0.015534684993326664, -0.007531794253736734, 0.0015971310203894973, 0.04899400472640991, -0.051935482770204544, 0.010277940891683102, 0.012202540412545204, 0.020521409809589386, -0.013834142126142979, 0.028035970404744148, 0.01922302320599556, 0.01807400770485401, 0.03152897581458092, 0.032218385487794876, -0.02385355532169342, 0.050097059458494186, -0.01593684032559395, -0.013673280365765095, -0.02227940410375595, 0.07877647876739502, 0.07404253631830215, -0.013742221519351006, 0.03669954463839531, 0.0077788326889276505, 0.010329646058380604, 0.03835412487387657, -0.004535737447440624, -0.010749036446213722, -0.012351912446320057, -0.0005996422842144966, 0.005951898638159037, 0.009594276547431946, 0.014454610645771027, -0.016833072528243065, -0.026795033365488052, 0.00452711945399642, 0.0150291183963418, 0.013834142126142979, 0.008353340439498425, 0.0057278405874967575, 0.004797138273715973, 0.008387810550630093, 0.019027691334486008, 0.0035159862600266933, 0.00017854617908596992, -0.005854232236742973, 0.006922816392034292, -0.003665358293801546, 0.015867898240685463, 0.0033723595552146435, 0.051705680787563324, -0.01239787321537733, 0.020268626511096954, 0.014489080756902695, 0.023554811254143715, -0.021923208609223366, -0.0145005714148283, -0.010921388864517212, -0.01045603770762682, 0.0006718147778883576, 0.01077201683074236, -0.016718169674277306, 0.011622288264334202, -0.004340404644608498, -0.017637383192777634, 0.024037396535277367, 0.019671138375997543, 0.00911169033497572, 0.006038074381649494, 0.015890879556536674, 0.02608264423906803, -0.05248701199889183, 0.02210705168545246, 0.030104197561740875, 0.0064057596027851105, -0.00975513830780983, 0.012156580574810505, -0.017465030774474144, 0.008353340439498425, 0.018717456609010696, -0.016718169674277306, -0.014569511637091637, 0.003829092951491475, -0.013052811846137047, -0.008617613464593887, -0.0031712818890810013, -0.03444747254252434, 0.010266450233757496, -0.032310307025909424, 0.04908592626452446, -0.002379897516220808, 0.008927847258746624, 0.013075792230665684, -0.0011166990734636784, -0.019832001999020576, -0.011358014307916164, -0.015718527138233185, -0.0306327436119318, -0.021095918491482735, 0.02488766796886921, -0.008899122476577759, -0.013661789707839489, 0.03364316374063492, -0.018487654626369476, -0.02325606718659401, -0.05754267796874046, -0.013328575529158115, -0.02254367806017399, 0.02219897322356701, -0.011248858645558357, -0.0007633769419044256, -0.02792106755077839, -0.005724967923015356, -0.017947616055607796, 0.001967688323929906, -0.04648915305733681, 0.017143305391073227, 0.01705138385295868, -0.007095168344676495, 0.010180274024605751, -0.0009393198997713625, 0.00200646766461432, 0.01910812221467495, -0.02874835953116417, 0.006434484850615263, -0.03754981607198715, -0.027852127328515053, 0.02087760530412197, -0.011719954200088978, 0.004958000499755144, -0.0035763096529990435, 0.011811875738203526, 0.012202540412545204, 0.009990686550736427, -0.014052455313503742, -0.013811161741614342, 0.01616664230823517, 0.020004354417324066, 0.05000513792037964, -0.000776303349994123, -0.0071181487292051315, 0.044466886669397354, 0.009450649842619896, 0.006560876499861479, 0.037917498499155045, -0.023095203563570976, 0.035596489906311035, -0.028242792934179306, 0.010272195562720299, -0.023784613236784935, 0.011386740021407604, -0.049269769340753555, -0.005411861464381218, 0.01285747904330492, -0.03810134157538414, 0.011518876999616623, -0.026220526546239853, -0.007956929504871368, -0.0006254951003938913, -0.027254639193415642, 0.00013797158317174762, 0.022382814437150955, 0.004472541622817516, -0.014592492021620274, -0.015913859009742737, -0.011266093701124191, 0.003964102361351252, 0.0153163718059659, 0.03214944526553154, 0.029299886897206306, -0.0015770233003422618, 0.04766114801168442, -0.021957678720355034, 0.015741506591439247, 0.02769126556813717, -0.02442806214094162, -0.019349414855241776, -0.021291250362992287, -0.020257137715816498, 0.015258921310305595, -0.006049564573913813, -0.02030309848487377, -0.004558717366307974, 0.03224136680364609, 0.00205242820084095, 0.001786718494258821, 0.0016646357253193855, 0.027185698971152306, 0.02041799947619438, 0.02500256896018982, 0.02631244622170925, 0.03842306509613991, -0.0300582367926836, -0.0145005714148283, 0.001251708366908133, 0.032425206154584885, 0.009513845667243004, 0.0067504639737308025, -0.00654938630759716, 0.037940479815006256, -0.0014851021114736795, -0.006210426799952984, -0.018579574301838875, -0.05092434957623482, 0.0020639183931052685, -0.010369861498475075, -0.0025235244538635015, 0.01112821139395237, 0.005630174186080694, -0.007899479009211063, 0.04046831279993057, 0.015798958018422127, -0.02838067337870598, 0.03306865692138672, -0.016040250658988953, -0.01968262903392315, 0.025577077642083168, 0.009215101599693298, 0.0009888712083920836, -0.0011633778922259808, -0.019717099145054817, 0.03876776993274689, -0.03833114355802536, 0.0008624795009382069, -0.0008158007403835654, 0.016741150990128517, -0.007411147467792034, -0.037802599370479584, 0.014121396467089653, 0.02333649806678295, 0.032540109008550644, -0.007439873181283474, -0.0038348380476236343, 0.04699471965432167, -0.012731087394058704, 0.03964102268218994, 0.04733942449092865, -0.024956608191132545, -0.02456594444811344, -0.007043462712317705, 0.0024373484775424004, -0.02456594444811344, 0.04028446972370148, -0.006744719110429287, 0.010898408479988575, -0.008330360054969788, 0.011110976338386536, 0.025439195334911346, 0.0014362689107656479, -0.03318355605006218, 0.020613331347703934, 0.021670425310730934, 0.021003996953368187, -0.0021788200829178095, -0.018637025728821754, -0.00616446603089571, 0.003926759120076895, 0.015684057027101517, -0.004265718627721071, 0.018085498362779617, -0.01710883527994156, -0.01695946417748928, 0.000598565093241632, 0.002098388969898224, 0.023669712245464325, -0.009048494510352612, 0.011139702051877975, 0.018556594848632812, 0.01856808550655842, 0.0015425528399646282, -0.009071474894881248, -0.006802169606089592, 0.03189666196703911, 0.00489767687395215, -0.004943637643009424, -0.007480088621377945, -0.01833828166127205, -0.02525535225868225, -0.0029113171622157097, 0.006945796776562929, -0.03603311628103256, -0.019257493317127228, 0.021957678720355034, -0.01573001779615879, -0.005380263552069664, 0.017568441107869148, 0.03299971669912338, -0.016718169674277306, -0.006618327461183071, 0.007457108236849308, -0.017982086166739464, -0.018924279138445854, -0.005894447676837444, -0.03003525547683239, -0.0050097061321139336, 0.0021184966899454594, -0.0011210079537704587, 0.009335747919976711, -0.01601727120578289, -0.016097702085971832, 0.0038176027592271566, 0.013213674537837505, -0.005980623885989189, 0.0029443514067679644, 0.016890522092580795, -0.02394547499716282, -0.021003996953368187, 0.013868613168597221, -0.015569155104458332, 0.014362689107656479, 0.01847616396844387, 0.022003639489412308, 0.019923923537135124, -0.006009349133819342, 0.026450328528881073, 0.0026815140154212713, -0.0022333981469273567, 0.0023899516090750694, -0.01028368528932333, 0.0024545835331082344, 0.012168070301413536, 0.0044179633259773254, -0.04145646467804909, -0.027300599962472916, 0.024611905217170715, 0.02028011716902256, 0.028311733156442642, 0.0035705645568668842, -0.005842742044478655, 0.021555524319410324, 0.0017105962615460157, -0.003297673538327217, -0.009249571710824966, -0.012443833984434605, 0.01893576979637146, 0.006084035150706768, -0.017062874510884285, 0.031827718019485474, -0.03966400399804115, -0.0038635635282844305, -0.0024833090137690306, 0.023922495543956757, 0.008031615987420082, 0.01695946417748928, 0.0017019787337630987, 0.020153725519776344, -0.00765818590298295, 0.011501641944050789, 0.028909221291542053, 0.028081929311156273, -0.03060976415872574, 0.05368198826909065, 0.019406866282224655, -0.003837710479274392, -0.004710962064564228, -0.008985298685729504, 0.019211532548069954, -0.013845632784068584, 0.02050992101430893, 0.014776335097849369, 0.0016545818652957678, -0.0038032401353120804, -0.04170924797654152, -0.03352826088666916, -0.0013436295557767153, -0.02440508082509041, 0.04373151808977127, 0.025209391489624977, 0.025737939402461052, 0.021980660036206245, 0.016338994726538658, 0.01136950496584177, 0.036883387714624405, 0.013857122510671616, -0.0038405831437557936, 0.04632829129695892, 0.016683699563145638, -0.036768484860658646, -0.01031241100281477, -0.023014772683382034, 0.006319583393633366, 0.0019317817641422153, -0.022578148171305656, 0.015810448676347733, 0.015775978565216064, 0.031988583505153656, 0.04164030775427818, -0.019406866282224655, 0.004564462695270777, -0.019016200676560402, 0.010398587211966515, -0.006043819710612297, 0.01077201683074236, -0.0071813445538282394, 0.007520304061472416, -0.00013770228542853147, -0.040261492133140564, -0.010358371771872044, 0.019602198153734207, -0.012191050685942173, -0.03152897581458092, 0.03906651586294174, 0.02500256896018982, 0.030678704380989075, 0.024474022909998894, 0.02826577238738537, 0.0007475779857486486, 0.03083956614136696, -0.010501998476684093, 0.011719954200088978, -0.01034113671630621, -0.039457179605960846, 0.03697530925273895, -0.011984228156507015, -0.02076270431280136, -0.03440151363611221, 0.00838206522166729, 0.01228297222405672, -0.03247116878628731, -0.004492649342864752, 0.003814730327576399, 0.005541125312447548, 0.044489867985248566, -0.0372510701417923, -0.014362689107656479, 0.027668284252285957, -0.04276634380221367, 0.017694832757115364, 0.019383884966373444, -0.00011642755271168426, 0.0005622992757707834, 0.00900827907025814, 0.012259991839528084, -0.02233685366809368, -0.00669301301240921, 0.008646339178085327, -0.024336140602827072, -0.04170924797654152, 0.01836126111447811, -0.012535755522549152, -0.028817299753427505, 0.011668249033391476, -0.014914216473698616, 0.01684456132352352, -0.04145646467804909, 0.006951541639864445, 0.002800724469125271, 0.04265144094824791, 0.012616186402738094, 0.0037113188300281763, -0.03166685625910759, -0.014535041525959969, -0.013581358827650547, -0.008772730827331543, 0.03497602045536041, -0.02502555027604103, 0.005661772098392248, 0.0345623753964901, 0.009847059845924377, -0.009261062368750572, 0.013650299981236458, -0.03644676133990288, -0.024267200380563736, 0.022187482565641403, 0.029713531956076622, -0.004122091922909021, 0.002339682076126337, -0.005782418884336948, 0.0015339351957663894, -0.00932425819337368, 0.027967028319835663, -0.0006825868040323257, 0.0053687733598053455, -0.02863345667719841, -0.0018053899984806776, -0.011949757114052773, 0.006572366692125797, -0.005182058084756136, -0.014856765978038311, -0.010272195562720299, 0.024841707199811935, 0.00905423890799284, 0.0017105962615460157, -0.058140166103839874, 0.01524743065237999, 0.011461426503956318, -0.00893933791667223, -0.008726770058274269, -0.010731801390647888, 0.010817977599799633, 0.01069733127951622, -0.0021730749867856503, -0.016384955495595932, -0.014822294935584068, -0.014017985202372074, 0.0067504639737308025, -0.014420140534639359, -0.00438349274918437, -0.017028404399752617, 0.016293033957481384, -0.012064659036695957, -0.025416215881705284, 0.02608264423906803, -0.01570703648030758, -0.01567256636917591, 0.04991321638226509, 0.047523267567157745, 0.009094455279409885, 0.01716628670692444, 0.006354053970426321, -0.012662147171795368, -0.007646695710718632, -0.01805102825164795, 0.02268155850470066, 0.021406151354312897, 0.020084785297513008, 0.01899322122335434, -0.0024043142329901457, -0.017740793526172638, 0.013156223110854626, -0.0074283829890191555, -0.013179203495383263, 0.00575656583532691, -0.006784934550523758, 0.0015899497084319592, 0.010300920344889164, 0.002448838436976075, 0.004837353713810444, 0.012156580574810505, -0.0026412985753268003, -0.007750106975436211, -0.020521409809589386, -0.0040761311538517475, 0.029506709426641464, -0.012317442335188389, -0.00480575580149889, 0.01250128448009491, -0.026909934356808662, -0.021245289593935013, -0.02456594444811344, -0.01197273749858141, -0.00521365599706769, -0.007991400547325611, 0.01186932623386383, -0.012581716291606426, -0.03856094926595688, 0.04940764978528023, 0.0026168820913881063, -0.016522837802767754, -0.01520147081464529, 0.024519983679056168, 0.02096952684223652, -0.009347238577902317, 0.004650638904422522, 0.013707750476896763, 0.00619319174438715, 0.012237011454999447, 0.004610423464328051, -0.015281901694834232, 0.02654225006699562, -0.007324971724301577, 0.0038405831437557936, -0.002737528644502163, -0.004234120715409517, 0.019004710018634796, -0.05037282407283783, 0.0021500946022570133, -0.005564105696976185, 0.014040964655578136, 0.0035791820846498013, -0.03051784262061119, 0.00050161691615358, 0.0035820547491312027, 0.002198927802965045, -0.009128925390541553, 0.003501623636111617, -0.030311020091176033, -0.018142949789762497, -0.008146516978740692, 0.030816586688160896, 0.027415500953793526, -0.011599307879805565, -0.0158449187874794, -0.027737226337194443, 0.030448900535702705, -0.0014125704765319824, -0.017373109236359596, 0.034539394080638885, 0.010737546719610691, 0.022325364872813225, -0.018315302208065987, -0.019774550572037697, -0.005604321602731943, 0.0037773873191326857, -0.015994291752576828, -0.003929631784558296, -0.01951027661561966, -0.0031454290729016066, -0.00505566643550992, 0.009778118692338467, -0.02651926875114441, -0.017465030774474144, 0.021245289593935013, 0.0016545818652957678, -0.018579574301838875, 0.015155510045588017, -0.018924279138445854, 0.040950898081064224, 0.012237011454999447, -0.008347595110535622, -0.0009077219874598086, -0.010944369249045849, -0.029368827119469643, 0.019291963428258896, 0.024749785661697388, -0.013684770092368126, -0.05083243176341057, -0.058369968086481094, 0.017947616055607796, -0.017798244953155518, -0.012294461950659752, 0.003165536792948842, -0.01250128448009491, -0.0034671532921493053, 0.018499143421649933, -2.758085247478448e-05, -0.029667571187019348, 0.0264043677598238, 0.019154082983732224, -0.03212646394968033, -0.006233407184481621, 0.0038750534877181053, -0.023187125101685524, -0.02619754523038864, -0.016293033957481384, 0.0030276549514383078, -0.02748444303870201, 0.012926420196890831, 0.0014721757033839822, 0.009789609350264072, -0.009984941221773624, 0.0014570947969332337, -0.0006290858145803213, -0.012271481566131115, 0.0010894100414589047, 0.02125678025186062, -0.01042731199413538, -0.0038348380476236343, 0.0067504639737308025, -0.007899479009211063, -0.017729302868247032, 0.008491221815347672, -0.010048137046396732, 0.0001631062914384529, -0.008744005113840103, 0.007434127852320671, 0.014868255704641342, -0.019521767273545265, 0.01432821899652481, -0.001010415144264698, 0.01947580650448799, 0.025898801162838936, -0.024359121918678284, 0.033597201108932495, -0.0026642789598554373, -0.0029041357338428497, 0.000324776308843866, 0.015511704608798027, -0.011277583427727222, 0.011892306618392467, -0.021773837506771088, 0.006319583393633366, 0.0018384242430329323, 0.0043633850291371346, 0.010186019353568554, 0.019234513863921165, 0.002036629244685173, 0.02085462398827076, 0.007870753295719624, 0.008359084837138653, -0.004937892779707909, -0.003943994641304016, -0.00018779216043185443, -0.005733585450798273, -0.027530403807759285, 0.009508100338280201, 0.016970952972769737, -0.025554096326231956, 0.003765897126868367, -0.0077960677444934845, -0.0023368096444755793, 0.013213674537837505, 0.02488766796886921, -0.008502712473273277, -0.00047325060586445034, 0.0006276495405472815, 0.044742651283741, 0.007261775899678469, -0.007905224338173866, -0.00607254495844245, 0.00602083932608366, 0.0161321721971035, -0.016637738794088364, 0.01695946417748928, 0.0064057596027851105, -0.01049625314772129, 0.009421924129128456, -0.009663217701017857, 0.015615115873515606, 0.05924322083592415, 0.008876142092049122, 0.006784934550523758, -0.000633753661531955, -0.004162307363003492, -0.011495896615087986, -0.012639166787266731, -0.001957634463906288, -0.02308371476829052, 0.019544746726751328, -0.012007208541035652, -0.012823008932173252, -0.02514045126736164, 0.01239787321537733, -0.013489438220858574, -0.013489438220858574, -0.0018671496072784066, 0.006963031832128763, 0.0018685858231037855, -0.0037946226075291634, 0.02468084543943405, -0.0009551188559271395, 0.001763738226145506, 0.030816586688160896, -0.009048494510352612, 0.014891236089169979, 0.028334712609648705, 0.010536468587815762, -0.011800386011600494, 0.000705926155205816, -0.011536112055182457, -0.00439785560593009, 0.015546174719929695, 0.008175242692232132, -0.008571652695536613, -0.017315657809376717, -0.018694477155804634, -0.013719241134822369, -0.0030161647591739893, -0.013868613168597221, 0.008473986759781837, -0.01999286375939846, 0.016752641648054123, -0.005796781275421381, -0.03368912264704704, -0.018717456609010696, 0.017488010227680206, -0.026473309844732285, 0.003688338678330183, 0.003912396728992462, -0.04407621920108795, -0.03049486130475998, 0.0013938989723101258, 0.01118566282093525, 0.009714922867715359, -0.018372751772403717, -0.007031972520053387, 0.01102480012923479, 0.008922102861106396, -0.024106338620185852, 0.010800742544233799, 0.006032329518347979, 0.0010628390591591597, 0.03224136680364609, -0.01158207282423973, 0.0007138256332837045, -0.015867898240685463, -0.006302347872406244, -0.01391457300633192, -0.007382422219961882, 0.011880816891789436, -0.00173932162579149, -0.007382422219961882, 0.004650638904422522, 0.0017666107742115855, 0.0015655331080779433, -0.03483814001083374, 0.018326791003346443, -0.002494799206033349, 0.004587443079799414, -0.011610797606408596, 0.0002028729795711115, -0.002135731978341937, 0.003033400047570467, 0.012845989316701889, 0.027622323483228683, 0.010944369249045849, 0.0185336135327816, -0.002690131776034832, 0.005923172924667597, 0.0016775621334090829, -0.00802587065845728, -0.009513845667243004, -0.021498072892427444, 0.0013795363483950496, -0.02537025511264801, -0.013604339212179184, 0.007043462712317705, 0.013328575529158115, -0.01864851638674736, -0.004323169589042664, 0.011317798867821693, -0.019694119691848755, -0.039319299161434174, -0.006566621363162994, 0.01461547240614891, 0.004728197120130062, -0.0064632100984454155, -0.0001595156209077686, -0.0316898375749588, 0.046810876578092575, 0.018372751772403717, 0.012788538821041584, 0.0035849271807819605, -0.00153537152800709, -0.0019791785161942244, -0.0038807985838502645, 0.00893933791667223, 0.0035360942129045725, -0.027162717655301094, -0.009157651104032993, -0.001443450222723186, 0.0005012578330934048, 0.0185336135327816, -0.012133600190281868, -0.014512061141431332, -0.011651013977825642, -0.018384242430329323, -0.006658542901277542, 0.019257493317127228, -0.008376320824027061, -0.0025407597422599792, 0.016511347144842148, -0.007738616783171892, -0.0029759493190795183, 0.007617970462888479, -0.0185336135327816, 0.007382422219961882, -0.01175442524254322, 0.0054808021523058414, -0.012248501181602478, 0.015661075711250305, -0.006704503204673529, -0.00830737967044115, -0.011283328756690025, 0.0006524251657538116, -0.020211176946759224, 0.03532072529196739, 0.006434484850615263, -0.01052497886121273, -0.03679146617650986, -0.006670033093541861, 0.011432700790464878, -0.007434127852320671, 0.01045603770762682, 0.01066860556602478, 0.023060733452439308, -0.02826577238738537, 0.005446331575512886, 0.0013156223576515913, -0.005836996715515852, 0.0026341171469539404, -0.020314587280154228, 0.008100557141005993, -0.023347986862063408, 0.011518876999616623, -0.01856808550655842, -0.029552670195698738, -0.009381708689033985, 0.0067332289181649685, 0.0163275059312582, 0.006974522024393082, 0.017327148467302322, -0.006675777956843376, -0.01687903329730034, -0.005615811329334974, -0.0011985664023086429, 0.010651370510458946, -0.03295375406742096, -0.026335427537560463, -0.001926036668010056, 0.005569851025938988, 0.01605174131691456, -0.024726806208491325, -0.026703111827373505, 0.020326077938079834, 0.002714548259973526, -0.0006484754267148674, 0.01338602602481842, -0.0016244201688095927, -0.01239787321537733, 0.01460398267954588, -0.03596417233347893, -0.0020380655769258738, -0.015155510045588017, -0.006934306584298611, -0.00806608609855175, 0.01722373627126217, 0.000885459769051522, -0.02828875370323658, -0.024933628737926483, 0.019636668264865875, 0.0011877943761646748, 0.036998286843299866, 0.008847416378557682, 0.0006829458870925009, -0.019085140898823738, 0.011174172163009644, -0.015752997249364853, -0.004659256432205439, 0.014512061141431332, 0.016970952972769737, -0.002145785838365555, 0.010306665673851967, 0.012122109532356262, 0.03015015833079815, 0.017499500885605812, 0.025531116873025894, 0.004300189204514027, 0.006043819710612297, -0.0002228012162959203, 0.017488010227680206, -0.010157293640077114, -0.02348586916923523, 0.01055370457470417, 0.0009228027774952352, -0.005127480253577232, -0.005900193005800247, 0.0027174209244549274, 0.005656027235090733, -0.014753354713320732, 0.005836996715515852, 2.962304643006064e-05, -0.006612582132220268, 0.009048494510352612, -0.007169854361563921, -0.005888702813535929, -0.013351555913686752, 0.01841871254146099, -0.00642873952165246, -0.01524743065237999, 0.0005852796020917594, -0.031046388670802116, 0.03224136680364609, -0.008203968405723572, -0.021785326302051544, -0.020084785297513008, -0.021003996953368187, -0.0028811555821448565, 0.0012100565945729613, -0.007612225133925676, -0.039549101144075394, 0.0015296264318749309, -0.008560162968933582, 0.0057996539399027824, 0.02456594444811344, -0.03249415010213852, -0.005460694432258606, 0.004693727008998394, 0.013500927947461605, -0.020463960245251656, 0.023784613236784935, -0.008606123737990856, -0.01084095798432827, 0.003105213399976492, 0.02045246958732605, 0.0012086202623322606, -0.0097953537479043, 0.0015870771603658795, -0.01730416901409626, 0.02319861575961113, 0.01701691374182701, 0.006101270206272602, 0.005934663116931915, -0.004145072307437658, 0.02700185589492321, -0.0022506334353238344, -0.018062518909573555, 0.006451719906181097, 0.012202540412545204, 0.02897816151380539, 0.01887831836938858, 0.031827718019485474, 0.00047253246884793043, 0.00765818590298295, -0.025186412036418915, 0.005262489430606365, 0.0036768484860658646, -0.016235584393143654, 0.012868969701230526, -0.019981373101472855, 0.0020710998214781284, 0.027047816663980484, 0.01924600452184677, -0.01239787321537733, -0.0019605071283876896, -0.008876142092049122, 0.003656740766018629, 0.004656383767724037, 0.005572723690420389, 0.006348308641463518, 0.00654938630759716, 0.0026010831352323294, -0.004860334098339081, 0.007692656479775906, 0.01461547240614891, 0.02030309848487377, -0.0006010785582475364, 0.005380263552069664, -0.04982129856944084, -0.024864688515663147, -0.0064057596027851105, -0.0132021838799119, 0.0025465048383921385, 0.004550099838525057, 0.017683343961834908, -0.023692691698670387, 0.014948686584830284, 0.0014908472076058388, -0.005974878557026386, -0.011765914969146252, -0.010289430618286133, 0.0316898375749588, -0.04196203127503395, 0.02677205204963684, -0.04182415083050728, 0.037572793662548065, 0.006537896115332842, 0.013661789707839489, 0.014902726747095585, -0.00021813334024045616, -0.0019791785161942244, 0.037228092551231384, -0.023784613236784935, 0.019441336393356323, 0.011834856122732162, -0.02674907259643078, -0.019521767273545265, 0.015948330983519554, 0.013213674537837505, 0.01016878429800272, 0.005199293605983257, -0.018326791003346443, -0.005296960007399321, 0.009772373363375664, -0.016109192743897438, -0.00116553227417171, -0.01624707505106926, -0.0005084392032586038, 0.0077156368643045425, -0.028311733156442642, -9.98094674287131e-06, 0.008290144614875317, -0.01879788748919964, -0.017430560663342476, 0.005342920310795307, 0.01845318265259266, -0.0008509893668815494, 0.041893091052770615, 0.009542570449411869, 0.00507002929225564, 0.044237084686756134, -0.015890879556536674, 0.031253211200237274, -0.027139738202095032, -0.018614046275615692, -0.0073939124122262, -0.015431273728609085, 0.015258921310305595, -0.002147221937775612, -0.016407936811447144, -0.031827718019485474, -0.03754981607198715, -0.004392110276967287, -0.007020482327789068, 0.00019102376245427877, 0.03345932066440582, 0.024060377851128578, 0.0006732510519213974, 0.02686397358775139, 0.016143662855029106, -1.4923732123861555e-05, 0.03026505932211876, 0.0077730873599648476, 0.00254219607450068, -0.01011133287101984, 0.01250128448009491, 0.03143705427646637, -0.0016287289327010512, -0.005865722429007292, 0.009990686550736427, 0.00259533803910017, -0.01670668087899685, 0.030586782842874527, -0.03086254745721817, -0.01245532464236021, 0.017338639125227928, -0.025439195334911346, -0.0013457839377224445, -0.02408335730433464, -0.020440978929400444, -0.007342206779867411, 0.00587721262127161, 0.010059627704322338, -0.029368827119469643, 0.011059271171689034, -0.018728947266936302, 0.004650638904422522, -0.02748444303870201, -0.027070796117186546, 0.007819048129022121, 0.007640950847417116, 0.0017077237134799361, 0.022899871692061424, 0.006578111555427313, -0.008203968405723572, 0.023577790707349777, 0.0005095163942314684, 0.013546888716518879, -0.005276852287352085, 0.03293077275156975, -0.003633760381489992, -0.00586284976452589, -0.01776377484202385, 0.021475093439221382, 0.02840365469455719, 0.00015188544057309628, -0.0007669675978831947, -0.018372751772403717, -0.010392841883003712, 0.005196420941501856, 0.010530724190175533, 0.006526405923068523, 0.022417286410927773, 0.016741150990128517, -0.008048851042985916, 0.007646695710718632, -0.006744719110429287, 0.015500213950872421, -0.0014865383272990584, 0.009197866544127464, -0.018694477155804634, -0.00905423890799284, 0.009232336655259132, -0.017867185175418854, 0.011047780513763428, 0.0037716422230005264, 0.012122109532356262, -0.016235584393143654, -0.0035044963005930185, -0.025646017864346504, -0.023106694221496582, -0.011467170901596546, -0.0018901298753917217, 0.0011080814292654395, 0.012800028547644615, -0.013891593553125858, -0.019383884966373444, 0.0013055684976279736, 0.0019619434606283903, 0.0022377069108188152, -0.0033522516023367643, 0.02116485871374607, -0.005170568358153105, -0.010915643535554409, -0.0015655331080779433, -0.008106301538646221, 0.002138604409992695, 0.011105231009423733, 0.002644171006977558, 0.0035475841723382473, -0.0393652580678463, 0.034907080233097076, -0.01764887198805809, 0.009180630557239056, -0.01520147081464529, -0.005291214678436518, -0.014948686584830284, -0.018751926720142365, 0.011605053208768368, -0.006675777956843376, 0.008364830166101456, -0.007721381727606058, 0.027139738202095032, 0.008135027252137661, -0.0013895902084186673, -0.02199215069413185, 0.0011526058660820127, 0.011742934584617615, -0.0060553099028766155, 0.015121039003133774, 0.022750500589609146, 0.026496289297938347, -0.015867898240685463, -0.016672208905220032, -0.0002723525103647262, -0.011823365464806557, 0.020326077938079834, -0.009163395501673222, 3.855484465020709e-05, 0.02500256896018982, 0.012765558436512947, -0.0046822368167340755, 0.016063231974840164, -0.00507002929225564, -0.012777048163115978, 0.013592849485576153, -0.0028883367776870728, -0.00838206522166729, 0.024933628737926483, 0.008043105714023113, -0.002167329890653491, -0.0001894079614430666, 0.005380263552069664, 0.026335427537560463, 0.020383529365062714, -0.02154403366148472, 0.019889451563358307, -0.0050729019567370415, -0.004380620084702969, 0.009042749181389809, 0.01705138385295868, 0.005210783798247576, -0.02028011716902256, 0.009726413525640965, -0.002035193145275116, 0.014408649876713753, -0.016488367691636086, 0.012340422719717026, -0.005233764182776213, -0.009743648581206799, -0.007146873977035284, -0.022647088393568993, -0.014810805208981037, -0.008571652695536613, -0.013213674537837505, -0.00908296462148428, 0.0033522516023367643, 0.005656027235090733, 0.004863206762820482, 0.0092668067663908, -0.02068227343261242, -0.018694477155804634, -0.013018341735005379, 0.007761597167700529, -0.012294461950659752, -0.013546888716518879, 0.002987439278513193, 0.003378104418516159, 0.031620897352695465, 0.010076862759888172, 0.02142913267016411, 0.001568405656144023, -0.007646695710718632, 0.0014161611907184124, -0.012237011454999447, 0.02005031518638134, -0.01922302320599556, 0.009479374624788761, -0.012777048163115978, 0.015867898240685463, -0.03095446713268757, 0.004130709450691938, -0.010737546719610691, 0.012880459427833557, 0.010973094962537289, 0.007606480270624161, 0.0030621252954006195, -0.0031167035922408104, -0.012076148763298988, 0.019786041229963303, -0.015500213950872421, 0.01716628670692444, 0.00375727959908545, -0.018315302208065987, -0.004693727008998394, 0.001049194484949112, -0.018832357600331306, 0.029047103598713875, 0.018062518909573555, -0.03702126815915108, 0.001457812963053584, -0.0121450899168849, -0.014626963064074516, 0.015867898240685463, 0.0006728919688612223, -0.0008222639444284141, 0.011748679913580418, 0.005641664378345013, 0.016982443630695343, -0.007152619305998087, -0.0068308948539197445, 0.0023123929277062416, 0.017625892534852028, -0.01836126111447811, -0.00550665520131588, 0.02050992101430893, 0.007606480270624161, -0.0040761311538517475, -0.004469668958336115, 0.021475093439221382, -0.0015798958484083414, -0.01148440595716238, -0.0002827654534485191, 0.019142592325806618, -0.012076148763298988, -0.010266450233757496, 0.009146160446107388, -0.004831608850508928, 0.010013666935265064, 0.006934306584298611, -0.023876534774899483, 0.0036222701892256737, 0.0013479384360834956, 0.008519947528839111, 0.02150956355035305, 0.01419033668935299, -0.0070779332891106606, -0.023129675537347794, -0.029989294707775116, 0.001325676217675209, -0.028081929311156273, -0.005503782536834478, -0.018372751772403717, -0.0047368151135742664, -0.026909934356808662, -0.009778118692338467, -0.0036481230054050684, -0.009766628965735435, -0.009806844405829906, -0.027323579415678978, 0.01682158187031746, 0.03736597299575806, -0.007554774638265371, 0.013535398058593273, 0.008657828904688358, -0.014558021910488605, 0.0010585301788523793, 0.02826577238738537, -0.0019432718399912119, 0.006802169606089592, -0.017775263637304306, 0.002918498357757926, -0.010967349633574486, 0.01576448790729046, -0.020578861236572266, -0.001910237711854279, 0.0047310697846114635, 0.0047626676969230175, 0.014339708723127842, -0.016143662855029106, 0.016316015273332596, -0.005951898638159037, 0.01390308327972889, 0.0069860122166574, -0.012374892830848694, 0.00549229234457016, -0.005831251852214336, 0.0061127603985369205, -0.00602083932608366, -0.008129281923174858, 0.006796424742788076, -0.012168070301413536, 0.020636312663555145, 0.010358371771872044, -0.006951541639864445, -0.007491578813642263, -0.022267913445830345, 0.025898801162838936, 0.027185698971152306, 0.023531829938292503, -0.024933628737926483, -0.0247727669775486, 0.007572009693831205, 0.01882086880505085, -0.002727474784478545, 0.005354410503059626, -0.01879788748919964, -0.01144419051706791, 0.001941835624165833, -0.0068653654307127, 0.00021526080672629178, 0.004702344536781311, -0.01467292383313179, -0.014983157627284527, -0.00022172401077114046, -0.013500927947461605, 0.006296603009104729, -0.018602555617690086, 0.0005522454157471657, -0.0024129317607730627, -0.01035262644290924, 0.012443833984434605, -0.008485476486384869, -0.015603626146912575, -0.0009192121215164661, 0.015040608122944832, -0.01916557177901268, 0.004719579592347145, 0.020463960245251656, 0.01014005858451128, -0.015971310436725616, 0.01274257805198431, -0.001115980907343328, 0.0037745146546512842, 0.010513488203287125, 0.009186375886201859, 0.021716386079788208, -1.1882881153724156e-05, -0.016775621101260185, 0.005521017592400312, 0.0010980275692418218, -0.015603626146912575, -0.0014326783129945397, -0.021957678720355034, -0.012811519205570221, -0.0029199346899986267, -0.019728589802980423, -0.00521365599706769, 0.012271481566131115, -2.005166061280761e-05, -2.202653013227973e-05, 0.0010951550211757421, 0.01101331040263176, -0.0030563801992684603, 0.017694832757115364, 0.012294461950659752, -0.016028761863708496, -0.013822652399539948, 0.005610066466033459, -0.010634135454893112, -0.019923923537135124, -0.01893576979637146, -0.00975513830780983, -0.005463567096740007, -0.004087621346116066, 0.016293033957481384, 0.00482011865824461, -0.03451641649007797, 0.01496017724275589, 0.005268234293907881, 0.007962674833834171, 0.023474378511309624, 0.011984228156507015, 0.034884098917245865, 0.017729302868247032, -0.017407579347491264, -0.012581716291606426, 0.0032775658182799816, -0.013581358827650547, 0.0023037753999233246, 0.00027037764084525406, 0.014155866578221321, 0.0026728964876383543, 0.0005001806421205401, -0.028012989088892937, 0.0071411291137337685, -0.026335427537560463, 0.02608264423906803, -0.0001721727312542498, 0.0040588960982859135, 0.009479374624788761, 0.008646339178085327, -0.017453540116548538, 0.02442806214094162, -0.013431986793875694, 0.016028761863708496, 0.00210557016544044, -0.016212603077292442, 0.005667517427355051, 0.0011662503238767385, -0.014213317073881626, 0.008399300277233124, -0.007031972520053387, -0.02456594444811344, -0.010703075677156448, 0.011610797606408596, -0.0044036004692316055, 0.015741506591439247, 0.013397516682744026, -0.0016344740288332105, 0.002869665389880538, -0.0008833053871057928, -0.04042235389351845, 0.004268591292202473, -0.007324971724301577, -0.015695547685027122, -0.017683343961834908, 0.02277348004281521, 0.011087995953857899, -0.0073881675489246845, 0.028357693925499916, 0.006796424742788076, 0.00505566643550992, 0.02296881191432476, 0.00027881571440957487, 0.021635955199599266, -0.005026941187679768, 0.01764887198805809, -0.006290858145803213, -0.006928561255335808, -0.02934584766626358, 0.0047368151135742664, 0.023106694221496582, -0.027438482269644737, -0.003860690863803029, 0.006537896115332842, -0.006664287764579058, -0.012845989316701889, -0.01059966441243887, -0.005578468553721905, -0.003688338678330183, -0.021693406626582146, -0.029713531956076622, -0.01134077925235033, -0.004248483572155237, -0.0050901370123028755, 0.002677205251529813, 0.004937892779707909, -0.00827865395694971, 0.012064659036695957, 8.61312510096468e-05, 0.010680096223950386, -0.006043819710612297, 0.026611190289258957, 0.006543641444295645, -0.017453540116548538, 0.008324614726006985, 0.012972380965948105, 0.013018341735005379, -0.01095585897564888, -0.004848843906074762, 0.01471888367086649, 0.011358014307916164, -0.012259991839528084, 0.00838206522166729, 0.02440508082509041, 0.015684057027101517, -0.0017421941738575697, 0.004165180027484894, -0.009318512864410877, 0.00789373368024826, 0.005782418884336948, -0.018096989020705223, -0.019786041229963303, -0.009473630227148533, -0.006043819710612297, 0.01461547240614891, -0.0031798994168639183, 0.015293391421437263, -0.024014417082071304, -0.02030309848487377, 0.02628946676850319, 0.0027131119277328253, -0.008336104452610016, -0.0035217313561588526, -0.011472916230559349, 0.0028524301014840603, 0.011059271171689034, 0.015856409445405006, 0.011059271171689034, 0.015948330983519554, -0.013259634375572205, 0.005285469815135002, 0.006767699029296637, -0.009686198085546494, -0.005788163747638464, 0.008031615987420082, -0.017832715064287186, 0.01805102825164795, 0.022876892238855362, 0.011151191778481007, -0.001841296791099012, -0.005946153309196234, 0.004423708189278841, 0.007370932027697563, -0.014764844439923763, -0.03074764460325241, -0.003142556408420205, 0.011938267387449741, 0.02302626334130764, 0.004644893575459719, -0.001832679146900773, 0.017430560663342476, -0.030104197561740875, -0.017212247475981712, 0.027070796117186546, 0.0009113126434385777, -0.0027447098400443792, -0.034677278250455856, -0.0014226243365556002, -0.008112046867609024, 0.024037396535277367, -0.021923208609223366, -0.0004614013887476176, -0.0030678703915327787, 0.00616446603089571, -0.040146589279174805, 0.03996274620294571, 0.01520147081464529, 0.019200043752789497, 0.0038664359599351883, -0.01605174131691456, 0.0002982053265441209, -0.027047816663980484, -0.014914216473698616, -0.018924279138445854, -0.020923566073179245, 0.025278333574533463, -0.0011569146299734712, -0.00855441763997078, 0.024749785661697388, -0.005569851025938988, -0.005624429322779179, -0.0025939017068594694, -0.0014499134849756956, 0.0174765195697546, 0.013926063664257526, -0.010289430618286133, 0.015327862463891506, -0.0150291183963418, -0.012995361350476742, -0.026978876441717148, -0.0008258546586148441, 0.0021974914707243443, 0.01887831836938858, -0.030908508226275444, -0.012374892830848694, 0.008037361316382885, -0.020889095962047577, 0.009197866544127464, -0.022647088393568993, 0.0057594384998083115, -0.010731801390647888, 0.010433057323098183, -0.01968262903392315, -0.013627319596707821, 0.013868613168597221, 0.026588210836052895, -0.00408187648281455, -0.010289430618286133, 0.00756626483052969, -0.0030621252954006195, 0.013144733384251595, 0.04577676206827164, -0.00436912989243865, 0.0010542214149609208, 0.02911604382097721, -0.005437714047729969, 0.00421114033088088, -0.006871110759675503, 0.008744005113840103, -0.002204672899097204, 0.014592492021620274, -0.015523194335401058, -0.0036998288705945015, 0.02651926875114441, -0.032448187470436096, 0.022003639489412308, 0.008140772581100464, 0.010714566335082054, -0.012099129147827625, 0.012443833984434605, 0.031230231747031212, 0.023325007408857346, -0.007014737464487553, -0.008703789673745632, -0.009450649842619896, 0.017097344622015953, 0.021176349371671677, -0.001220110454596579, -0.01799357682466507, 0.01739608868956566, 0.02002733387053013, 0.023302027955651283, -0.0029615864623337984, 0.018843848258256912, 0.013477947562932968, 0.0017852822784334421, 0.02168191596865654, 0.013213674537837505, -0.01655730791389942, -0.006066800095140934, 0.004610423464328051, -0.026909934356808662, 0.002559431130066514, 0.015063588507473469, -0.003495878539979458, 0.007767342496663332, 0.0075145591981709, -0.012420853599905968, 0.024841707199811935, -0.0016603268450126052, -0.022417286410927773, 0.005905937869101763, 0.011145447380840778, 0.009634491987526417, -0.01607472263276577, 0.016453897580504417, 0.0020581732969731092, -0.0036079075653105974, -0.032677989453077316, 0.018062518909573555, 0.021153368055820465, -0.0075490293093025684, -0.015994291752576828, -0.01059966441243887, 0.0075145591981709, 0.009192121215164661, -0.0011080814292654395, 0.029047103598713875, -0.011467170901596546, 0.028679417446255684, -0.007014737464487553, 0.017177775502204895, -0.02874835953116417, 0.008669319562613964, 0.013213674537837505, 0.004420835990458727, 0.012650656513869762, -0.0150291183963418, -0.01582193933427334, 0.0003780977858696133, 0.006664287764579058, -0.0047052172012627125, 0.005026941187679768, 0.025737939402461052, -0.02537025511264801, 0.01987796276807785, 0.002598210470750928, -0.014546532183885574, 0.010117078199982643, -0.0031770269852131605, -0.014523551799356937, -0.013880102895200253, 0.0021558396983891726, 0.0008495530928485096, -0.008031615987420082, 0.012237011454999447, 0.0039009065367281437, 0.010019412264227867, -0.011530366726219654, 0.012593206018209457, -0.010197509080171585, -0.0081637529656291, -0.0016114937607198954, 0.001075765467248857, 0.00574220297858119, -0.004564462695270777, -0.018039537593722343, 0.022750500589609146, -0.010611155070364475, 0.00017926431610248983, 0.00852569192647934, -0.027438482269644737, -0.005331430118530989, -0.008577398024499416, -0.001380254398100078, 0.01443163026124239, 0.0038434555754065514, 0.02059035189449787, -0.026703111827373505, 0.0009292659815400839, -0.009858549572527409, -0.009594276547431946, 0.01887831836938858, 0.007480088621377945, 0.005681879818439484, 0.017683343961834908, 0.008996788412332535, -0.01856808550655842, -0.02162446454167366, -0.006871110759675503, 0.015327862463891506, -0.02199215069413185, -0.0021328593138605356, 0.013041322119534016, -0.006595347076654434, 0.00045745164970867336, -6.710068555548787e-05, 0.002308084163814783, -0.019751571118831635, 0.010467528365552425, 0.00985280517488718, 0.026680132374167442, -0.013661789707839489, 0.03883671015501022, -0.0028955182060599327, 0.0071813445538282394, 0.0022190355230122805, 0.003429810283705592, 0.018326791003346443, 0.013546888716518879, 0.024841707199811935, -0.006934306584298611, 0.020073294639587402, -0.017200756818056107, -0.017062874510884285, 0.004458178766071796, 0.005986368749290705, 0.023267555981874466, -0.02154403366148472, -0.00949661061167717, 0.0036165250930935144, -0.008922102861106396, -0.01338602602481842, 0.01787867583334446, 0.00476841302588582, -0.006968776695430279, 0.00047181433183141053, -0.005216528661549091, -0.025990722700953484, -0.014132886193692684, 0.0012265737168490887, -0.017683343961834908, -0.009657472372055054, 0.011737189255654812, -0.018096989020705223, 0.020383529365062714, -0.01833828166127205, 0.019441336393356323, 0.005842742044478655, -0.0030621252954006195, 0.03713617101311684, -0.02302626334130764, -0.006658542901277542, 0.01705138385295868, -0.013236654922366142, 0.013845632784068584, -0.018947260454297066, 0.03925035893917084, 0.005187803413718939, -0.011478661559522152, -0.011438446119427681, -0.014397160150110722, 0.0013982078526169062, -0.022210462018847466, -0.016097702085971832, 0.021727876737713814, -0.004702344536781311, -0.004498394206166267, 0.038285184651613235, 0.00173932162579149, -0.011076506227254868, -0.02854153700172901, 0.007192834746092558, 0.01034113671630621, 0.024956608191132545, -0.005150460172444582, -0.015385312959551811, 0.024841707199811935, -0.00558421341702342, 0.0003694801707752049, -0.011059271171689034, 0.013995004817843437, 0.0145005714148283, -1.2903979040856939e-05, -0.0017795371823012829, 0.012191050685942173, -0.003266075626015663, -0.003409702330827713, -0.018751926720142365, -0.008732515387237072, 0.01987796276807785, -0.030770625919103622, -0.012420853599905968, -0.0035791820846498013, -0.001239500124938786, -0.006756208837032318, -0.018005067482590675, -0.013397516682744026, 0.004056023433804512, -0.028196832165122032, 0.012880459427833557, -0.01391457300633192, 0.0026944405399262905, -0.0007012583082541823, -0.0064402297139167786, 0.01576448790729046, 0.009364473633468151, -0.0029271161183714867, 0.00016005421639420092, 0.02325606718659401, -0.004550099838525057, 0.016522837802767754, -0.029552670195698738, 0.010053882375359535, -0.025163432583212852, 0.012937910854816437, 0.013213674537837505, 0.005325685255229473, -0.00843951664865017, 0.011915287002921104, -0.017901655286550522, -0.01443163026124239, -0.005974878557026386, 0.001142551889643073, -0.02465786412358284, -0.010927134193480015, 0.010611155070364475, 0.004288699012249708, 0.006876855622977018, 0.026909934356808662, -0.016683699563145638, 0.016603268682956696, 0.02711675688624382, -0.005299832206219435, -0.02127975970506668, -0.0025235244538635015, 0.004087621346116066, 0.009979196824133396, 0.02268155850470066, -0.0028495576698333025, -0.018441693857312202, -0.014305238611996174, 0.004165180027484894, -0.014385669492185116, -0.03444747254252434, -0.0064229946583509445, 0.004130709450691938, -0.010915643535554409, 0.028334712609648705, 0.00031597915221937, 0.010777762159705162, -0.018441693857312202, 0.024611905217170715, -0.010300920344889164, -0.01710883527994156, 0.0031483015045523643, -0.00559857627376914, 0.007474343292415142, 0.0034901334438472986, 0.029047103598713875, -0.009071474894881248, -0.004621913656592369, 0.009352982975542545, 0.001434832694940269, 0.0024861814454197884, -0.004392110276967287, -0.014466100372374058, -0.01390308327972889, 0.02233685366809368, 0.0044438159093260765, 0.01647687703371048, -0.017097344622015953, -0.007210070267319679, -0.00791096966713667, -0.009870040230453014, 0.02033756859600544, -0.02096952684223652, -0.014971666969358921, 0.030678704380989075, 0.010479018092155457, 0.004343277309089899, -0.018637025728821754, -0.0036998288705945015, -0.016235584393143654, -0.004024425521492958, 0.01664922945201397, 0.0015885134926065803, 0.017097344622015953, 0.012604695744812489, 0.030311020091176033, 0.0011942576384171844, 0.0015396802918985486, -0.00105996651109308, 0.018028046935796738, -0.013133242726325989, 0.007652441039681435, -0.022095561027526855, -0.0018053899984806776, -0.0013170585734769702, 0.0028897731099277735, -0.018326791003346443, -0.010088353417813778, -0.008399300277233124, -0.027369540184736252, 0.0237156730145216, -0.01570703648030758, 0.01647687703371048, 0.0035705645568668842, -0.009134670719504356, -0.0009465012117289007, -0.0011569146299734712, 0.016407936811447144, 0.00968045275658369, 0.014247788116335869, -0.0007454236038029194, 0.011478661559522152, -0.010737546719610691, -0.005986368749290705, 0.009663217701017857, -0.02165893465280533, 0.008807200938463211, 0.011984228156507015, -0.004073258489370346, -0.018326791003346443, 0.0002910239854827523, 0.008640593849122524, -0.019923923537135124, -0.024152297526597977, 0.009709177538752556, -0.014109905809164047, 0.00953682605177164, -0.003527476452291012, 0.008617613464593887, 0.0022578148636966944, -0.01245532464236021, 0.002622626954689622, 0.019062161445617676, 0.03460833802819252, 0.021704895421862602, 0.028909221291542053, -0.021647445857524872, -0.013684770092368126, 0.027875106781721115, 0.009938981384038925, -0.0016545818652957678, -0.003883671248331666, -0.020774193108081818, 0.0009371654596179724, -0.010703075677156448, 0.020946545526385307, 0.013075792230665684, -0.007916714064776897, 0.0047368151135742664, 0.009490865282714367, -0.004693727008998394, -0.014213317073881626, -0.010714566335082054, 0.009002533741295338, 0.011191407218575478, 0.009806844405829906, 0.026726093143224716, -0.0001359967136522755, -0.0043145520612597466, 0.035366687923669815, -0.007813302800059319, 0.004831608850508928, 0.00765818590298295, -0.006997502408921719, -0.013650299981236458, -0.011587818153202534, 0.004254228435456753, 0.007836283184587955, 0.014994647353887558, -0.006468955427408218, 0.009617256931960583, -0.00823843851685524, -0.004759795032441616, 0.00995621643960476, 0.016511347144842148, -0.008812946267426014, -0.017717814072966576, -0.003541839076206088, 0.015775978565216064, 0.012731087394058704, -0.003791749943047762, 0.01924600452184677, -0.0022333981469273567, 6.867160846013576e-05, 0.010134313255548477, 0.011651013977825642, 0.008537182584404945, 0.011208643205463886, -0.0002879719249904156, -0.001142551889643073, -0.00672173872590065, 0.017005424946546555, 0.01524743065237999, 0.004432325717061758, -0.01154185738414526, 0.01407543569803238, 0.002591029042378068, -0.017809735611081123, 0.004087621346116066, -0.01770632341504097, 0.014925707131624222, -0.038859691470861435, -0.017327148467302322, -0.008801455609500408, 0.026978876441717148, -0.011323544196784496, 0.0019044926157221198, 0.00035655376268550754, 0.009645981714129448, -0.003952612169086933, 0.00047755942796356976, 0.014109905809164047, 0.00033931853249669075, 0.0137307308614254, 0.001895874971523881, -0.007480088621377945, 0.022922853007912636, 0.015523194335401058, 0.011823365464806557, 0.007089423481374979, -0.00041077291825786233, -0.013064302504062653, -0.016982443630695343, -0.002645607339218259, -0.013581358827650547, 0.027783187106251717, -0.011880816891789436, 0.014546532183885574, -0.021923208609223366, -0.013409006409347057, 0.00958278588950634, -0.017212247475981712, -0.013317085802555084, -0.01805102825164795, 0.00019551211153157055, 0.012880459427833557, -0.013110263273119926, 0.005167695693671703, -0.03621695563197136, -0.013719241134822369, 0.0005515272496268153, -0.014822294935584068, 0.0015080823795869946, -0.015281901694834232, 0.007899479009211063, 0.020693762227892876, -0.0023899516090750694, 0.008261418901383877, 0.016201114282011986, 0.001459249178878963, 0.004955127835273743, 0.0001865354279289022, -0.010973094962537289, -0.012363403104245663, -0.020578861236572266, 0.0061759562231600285, -0.009623002260923386, 0.005475057289004326, -0.016752641648054123, 0.004168052226305008, -0.019096631556749344, 0.021486584097146988, 0.005282597150653601, -0.009031259454786777, 0.010467528365552425, 0.015454254113137722, 0.0002506289165467024, 0.00211993302218616, 0.013179203495383263, 0.0424446202814579, 0.010415822267532349, -0.027139738202095032, -0.005420478992164135, -0.01590237021446228, -0.0017493756022304296, -0.02337096817791462, 0.0075088138692080975, 0.007261775899678469, -0.00014973102952353656, 0.014776335097849369, 0.005900193005800247, -0.0020323204807937145, -0.005595703609287739, -0.007830537855625153, -0.024175278842449188, 0.0012208286207169294, -0.011593562550842762, 0.0015813320642337203, -0.008732515387237072, -0.004564462695270777, 0.0026168820913881063, 0.01444311998784542, 0.01390308327972889, -0.0029113171622157097, 0.0014556585811078548, 0.023003283888101578, 0.01647687703371048, -0.02030309848487377, 0.0054176063276827335, 0.03329845890402794, -0.004159434698522091, -0.003556201932951808, 0.004547227639704943, -0.03463131561875343, 0.0007432691636495292, 0.013236654922366142, -0.010961604304611683, -0.00929553247988224, 0.0028969545383006334, -0.016752641648054123, 0.005676134955137968, 0.008496967144310474, -0.007675420958548784, -0.009157651104032993, 0.030242078006267548, -0.012754067778587341, 0.052762776613235474, 0.0003441659500822425, 0.015465743839740753, -0.002104134066030383, 0.013673280365765095, -0.003964102361351252, -0.016143662855029106, -0.041778191924095154, 0.011984228156507015, -0.0032632029615342617, -0.005179185885936022, -0.010691585950553417, -0.004679364152252674, -0.02137168124318123, 0.011892306618392467, -0.005940408445894718, -0.014994647353887558, 0.015925349667668343, 0.007744362112134695, 0.020349057391285896, -0.011915287002921104, 0.019257493317127228, 0.0028639202937483788, -0.01918855309486389, -0.01116842683404684, 0.006514915730804205, -0.015270411036908627, 0.02686397358775139, -0.022865401580929756, 0.002216162858530879, 0.007043462712317705, 0.002309520496055484, 0.0005666080978699028, -0.0061127603985369205, 0.003949739504605532, 0.0009098763694055378, 0.011903797276318073, 0.025163432583212852, 0.022589636966586113, 0.006411504466086626, 0.00695728650316596, 0.012202540412545204, -0.0047138347290456295, 0.0008280090405605733, 0.02619754523038864, -0.030908508226275444, 0.002784925512969494, -0.005219401326030493, 0.016913503408432007, -0.000262298621237278, 0.014845275320112705, -0.0084510063752532, 0.004535737447440624, -0.024497002363204956, -0.008370575495064259, -0.030885526910424232, 0.004429453518241644, 0.0040675136260688305, -0.01953325793147087, -0.0008481168188154697, -0.00712963892146945, -0.0014484772691503167, -0.019027691334486008, -0.016338994726538658, -0.014638452790677547, 0.023014772683382034, -0.014558021910488605, 0.016752641648054123, 6.997322634560987e-05, 0.02362375147640705, 0.006043819710612297, 0.004303061868995428, 0.013294105418026447, 0.0029673315584659576, 0.0033034186344593763, 0.003300545969977975, -0.02193469926714897, -0.01122587826102972, -0.001387435826472938, -0.006325328256934881, 0.004547227639704943, 0.001700542401522398, 0.006911326199769974, -0.0010147240245714784, 0.014523551799356937, 0.0037630246952176094, 0.005205038469284773, 0.005078646820038557, -0.013075792230665684, 0.00838206522166729, -0.017005424946546555, -0.032264344394207, -0.025439195334911346, 0.00438349274918437, 0.013075792230665684, -0.0226585790514946, 0.010237724520266056, 0.02877133898437023, 0.007801813073456287, 0.0004003599751740694, 0.0026858230121433735, 0.00018070059013552964, -0.0025450685061514378, -0.006187446415424347, -0.008835926651954651, -0.002129986882209778, 0.007686911150813103, 0.03458535671234131, 0.0029141895938664675, 0.0013400389580056071, -0.0065034255385398865, -0.0054176063276827335, -0.003593544941395521, -0.006267877761274576, 0.024106338620185852, -0.007026227656751871, -0.03702126815915108, 0.029047103598713875, 0.008680809289216995, 0.021038467064499855, -0.009657472372055054, 0.016545817255973816, 0.0025206520222127438, -0.0032948008738458157, -0.008318869397044182, 0.014420140534639359, -0.005509527400135994, 0.01953325793147087, 0.006509170867502689, -0.016086211428046227, -0.010703075677156448, -0.016982443630695343, -0.0011763043003156781, 0.017947616055607796, 0.010030901990830898, -0.007480088621377945, 0.004038788378238678, 0.0012007207842543721, 0.025668999180197716, -0.0011978482361882925, 0.0028998269699513912, -0.01467292383313179, 0.02383057400584221, -0.0018269340507686138, 0.012007208541035652, -0.004687981680035591, 0.001934654195792973, 0.008226948790252209, -0.02909306436777115, -0.0006998220342211425, -0.02070525288581848, 0.01285747904330492, 0.016913503408432007, -0.013604339212179184, 0.01541978307068348, 0.0226585790514946, -0.020601840689778328, 0.006968776695430279, -0.015534684993326664, -0.0025939017068594694, -0.017005424946546555, 0.006514915730804205, -0.02285391092300415, 0.010978839360177517, -0.005466439761221409, -0.024749785661697388, 0.008180988021194935, -0.0029084444977343082, -0.005443459376692772, 0.04508735612034798, 2.982502155646216e-05, -0.02863345667719841, 0.013305595144629478, 0.013569869101047516, -0.005371646024286747, -0.010369861498475075, -0.001980614848434925, -0.0018628408433869481, 0.0006226226105354726, -0.04584570601582527, -0.012788538821041584, -0.00026032375171780586, -0.002575230086222291, -0.015017627738416195, -0.004535737447440624, 0.012018698267638683, 0.028449615463614464, -0.0179591067135334, 0.015592135488986969, -0.015017627738416195, 0.022118542343378067, -0.015327862463891506, 0.002526397118344903, 0.0054176063276827335, 0.0026470436714589596, 0.009691942483186722, 0.0020179578568786383, 0.019268983975052834, -0.004667873959988356, -0.005087264347821474, 0.014810805208981037, 0.018326791003346443, -0.008117792196571827, 0.01805102825164795, -0.019016200676560402, 0.01799357682466507, -0.008089066483080387, -0.0018614045111462474, 0.017545461654663086, 0.011696973815560341, -0.010157293640077114, -0.005236636381596327, -0.010714566335082054, 0.002040938241407275, -0.010231980122625828, 0.007526049390435219, -0.0004703780869022012, -0.01541978307068348, -0.0004545791307464242, -0.010852447710931301, 0.002198927802965045, 0.011461426503956318, 0.007612225133925676, -0.029253926128149033, -0.028840281069278717, -0.0035906722769141197, -0.025278333574533463, 0.008318869397044182, -0.005532507784664631, -0.002107006497681141, -0.018211890012025833, 0.003633760381489992, 0.003765897126868367, 0.023520339280366898, 0.015281901694834232, -0.022095561027526855, -0.0038176027592271566, 0.0014764844672754407, 0.004265718627721071, 0.013477947562932968, -0.00982407946139574, 0.03692934662103653, 0.02231387421488762, -0.002214726759120822, -0.0057364581152796745, 0.025508135557174683, -0.0071009136736392975, 0.008548672311007977, 0.017637383192777634, 0.008634848520159721, 0.009760883636772633, 0.025508135557174683, -0.012995361350476742, 0.001248117652721703, -0.005024068523198366, 0.0038319656159728765, -0.019326435402035713, 0.003941121976822615, 0.00929553247988224, 0.00347864325158298, 0.010277940891683102, -0.004073258489370346, -0.010542213916778564, -0.011823365464806557, 0.01134077925235033, 0.024152297526597977, 0.017625892534852028, -0.02548515610396862, -0.008462496101856232, 0.008146516978740692, -0.03915843740105629, 0.014546532183885574, -0.009881529957056046, -0.023761633783578873, 0.006532151252031326, 0.011375250294804573, -0.017465030774474144, -0.01049625314772129, 0.01257022563368082, -0.023118184879422188, 0.006089780479669571, -0.007830537855625153, 0.006802169606089592, -0.0003621193172875792, 0.015718527138233185, 0.01524743065237999, -0.011800386011600494, -0.015982801094651222, 0.011530366726219654, 0.021268270909786224, 0.006377033889293671, 0.005581341218203306, -0.0006517069996334612, -0.020245647057890892, 0.005701987538486719, 0.0036395054776221514, -0.007491578813642263, -0.020406508818268776, 0.0010513488668948412, 0.0037429167423397303, 0.02116485871374607, 0.002596774138510227, -0.0035303491167724133, 0.0079224593937397, 0.012443833984434605, -0.0032172424253076315, -0.017338639125227928, 0.0002718138857744634, -0.011639523319900036, -0.020130746066570282, 0.006928561255335808, 0.01391457300633192, 0.008801455609500408, -0.024634884670376778, -0.008106301538646221, -2.7782827601186e-05, 0.002760508796200156, -0.016982443630695343, -0.016580289229750633, -0.013466457836329937, 0.019751571118831635, 0.015052098780870438, 0.0016344740288332105, -0.001878639799542725, -0.014879746362566948, -0.008468241430819035, 0.014684413559734821, 0.014374179765582085, 0.03318355605006218, 0.002458892296999693, 0.02619754523038864, 0.016833072528243065, 0.020153725519776344, 0.019728589802980423, 0.002299466636031866, 0.010863938368856907, -0.023761633783578873, 0.00826716423034668, 0.0017120325937867165, -0.008215458132326603, 0.014512061141431332, -0.02488766796886921, 0.0015382440760731697, -0.015752997249364853, 0.03564244881272316, 0.005101627204567194, 0.005871467292308807, 0.02254367806017399, -0.014224807731807232, -0.01647687703371048, 0.01616664230823517, 0.0030937232077121735, -0.004340404644608498, -0.006756208837032318, -0.023118184879422188, 0.007531794253736734, 0.007135384250432253, -0.024152297526597977, -0.028840281069278717, 0.01461547240614891, 0.009772373363375664, -0.0004628376627806574, 0.006250642240047455, -0.003332143882289529, 0.00852569192647934, -0.007279010955244303, -0.007790322881191969, -0.007974165491759777, 0.007135384250432253, -0.02296881191432476, -0.0399397648870945, 0.005558360833674669, -0.001346502103842795, -0.0067332289181649685, 0.012305952608585358, -0.022945832461118698, 0.033344417810440063, 0.009594276547431946, 0.002769126556813717, -0.003981337416917086, 0.012110619805753231, -0.002332500647753477, 0.009657472372055054, 0.012110619805753231, -0.004285826347768307, 0.012099129147827625, 0.013144733384251595, 0.01338602602481842, 0.0020179578568786383, 0.007342206779867411, -0.014592492021620274, -0.006210426799952984, 0.0016675082733854651, -0.02316414564847946, -7.230716437334195e-05, 0.01864851638674736, -0.00454148231074214, -0.008904867805540562, 0.005342920310795307, 0.005791036412119865, 0.01257022563368082, 0.008893377147614956, -0.02268155850470066, 0.0009831261122599244, -0.009387454017996788, -0.012845989316701889, 0.01576448790729046, 0.029874393716454506, -0.015477233566343784, 0.016890522092580795, -0.013880102895200253, -0.011432700790464878, 0.0032718207221478224, 0.004788520745933056, -0.0018915662076324224, 0.0013335756957530975, -0.0008789965650066733, -0.0013443477218970656, 0.01119715254753828, 0.008077576756477356, 0.00427720881998539, -0.023784613236784935, 0.025646017864346504, -0.011283328756690025, -0.013960533775389194, 0.021210819482803345, -0.007474343292415142, 0.01933792419731617, 0.012604695744812489, 0.006842385046184063, -0.008617613464593887, -0.011363759636878967, -0.012087639421224594, -0.016338994726538658, 0.0008754059090279043, -0.014891236089169979, 0.004222630523145199, -0.01805102825164795, -0.0050326865166425705, 0.005859977100044489, -0.0016703808214515448, -0.0007238795515149832, -0.009944725781679153, -0.02085462398827076, 0.010421567596495152, 0.015546174719929695, 0.0005163386813364923, 0.001714905141852796, 0.01098458468914032, 0.0084510063752532, -0.002471818821504712, 0.010898408479988575, 0.016063231974840164, 0.010588174685835838, -0.005138970445841551, -0.01672966033220291, 0.016281545162200928, -0.0024531474336981773, -0.010254960507154465, -0.0005561951547861099, 0.012443833984434605, -0.005184930749237537, 0.013248144648969173, -0.04747730493545532, -0.009623002260923386, -0.011495896615087986, -0.019016200676560402, -0.01996988244354725, -0.03646973893046379], "433118a8-4031-4aaf-bbdc-e0965f79997e": [-0.03033451922237873, -0.0064126732759177685, -0.00011418359645176679, 0.013095095753669739, -0.04230157285928726, -0.011059715412557125, 0.007381318137049675, 0.0052938275039196014, -0.0013104291865602136, -0.0031603567767888308, 0.020709378644824028, 0.005385787226259708, 7.131684833439067e-05, -0.04239966347813606, 0.004086086992174387, -0.040364284068346024, -0.0077614192850887775, 0.02186194434762001, 0.02501310408115387, -0.03636709228157997, 0.04784369096159935, -0.033865779638290405, -0.02045189030468464, 0.016246257349848747, 0.013671377673745155, -0.035950206220149994, -0.025503557175397873, 0.012046752497553825, -0.010667352937161922, 0.002452265238389373, 0.025331899523735046, 0.0014023891417309642, 0.0041044787503778934, 0.00966192502528429, 0.025552602484822273, -0.002335782628506422, -0.014468364417552948, 0.0037059856113046408, 0.00979066826403141, -0.02601853385567665, -0.02562617138028145, 0.0011862833052873611, -0.008405138738453388, 0.017926057800650597, -0.0409773513674736, -0.036808498203754425, 0.049903593957424164, -0.010501825250685215, 0.016295302659273148, 0.023762449622154236, 0.018551385030150414, -0.009226647205650806, -0.008435792289674282, -0.03707825019955635, -0.0031189746223390102, -0.00603870302438736, 0.03222276270389557, 0.06621115654706955, 0.01942194066941738, -0.03881935775279999, -0.0023342499043792486, 0.011378509923815727, -0.006676291581243277, -0.013634594157338142, -0.03241894394159317, -0.007074784953147173, 0.013524241745471954, -0.03747061267495155, -0.02176385372877121, -0.03170778974890709, 0.03207562863826752, 0.05277274549007416, -0.01181991770863533, 0.012702733278274536, 0.01704324223101139, -0.004827897064387798, 0.00036745661054737866, 0.015510576777160168, 0.030064770951867104, -0.013413890264928341, 0.003954277373850346, 0.009122426621615887, 0.03651422634720802, -0.00660885451361537, 0.0293781366199255, 0.01781570538878441, 0.01719037815928459, -0.039432425051927567, 0.02677873522043228, -0.016050076112151146, -0.013757207430899143, 0.04129614308476448, 0.018882442265748978, -0.014443841762840748, -0.04477836191654205, 0.007185136899352074, -0.020145358517766, 0.0367349311709404, 0.05056570842862129, 0.018784351646900177, 0.008681018836796284, 0.025380944833159447, -0.03810819983482361, 0.048530325293540955, -0.033767689019441605, 0.019090883433818817, 0.020120834931731224, -0.014541932381689548, -0.007792072370648384, 0.022254306823015213, 0.0404868982732296, -0.0297214537858963, -0.012629165314137936, 0.0015924397157505155, -0.005548249930143356, 0.004220961127430201, -0.014823942445218563, 0.02851984277367592, -0.010943233035504818, -0.04239966347813606, -0.004460057243704796, -0.008104735985398293, 0.02714657410979271, 0.025405466556549072, 0.013082834891974926, 0.012837608344852924, -0.00027338924701325595, 0.001972540747374296, 0.027023961767554283, -0.006878603715449572, 0.014872987754642963, -0.011875093914568424, 0.005269304849207401, 0.02343139238655567, -0.042644891887903214, -0.0014598640846088529, 0.015510576777160168, 0.060963310301303864, -0.04580831155180931, 0.02095460519194603, -0.01644243858754635, -0.03585211560130119, -0.005361264571547508, 0.014235398732125759, 0.02643541805446148, -0.03406196087598801, -0.013033789582550526, 0.016614096239209175, 0.002728144871070981, 0.015841633081436157, -0.04980550333857536, -0.008270264603197575, -0.020831992849707603, 0.044459566473960876, 0.024314207956194878, -0.014897510409355164, -0.010311774909496307, 0.028127480298280716, -0.03612186387181282, 0.01473811361938715, 0.00961287971585989, -0.05767727643251419, 0.013671377673745155, 0.004358901176601648, 0.022965462878346443, 0.03084949590265751, 0.01174634974449873, -0.0026101297698915005, 0.0101707698777318, 0.001180152641609311, 0.03374316915869713, -0.0016752035589888692, -0.0032799046020954847, -0.009851975366473198, 0.04318438842892647, 0.007424232549965382, 0.019188974052667618, 0.013279015198349953, 0.029844066128134727, -0.008515490218997002, 0.0167367085814476, 0.0014544997829943895, -0.025846874341368675, -0.03896649181842804, -0.02525833062827587, 0.034111008048057556, -0.003908297512680292, 0.038279857486486435, -0.018759828060865402, -0.02045189030468464, -0.041320666670799255, -0.028421752154827118, 0.005683124531060457, 0.019311588257551193, 0.04678921774029732, -0.010152377188205719, 0.0292800460010767, 0.016675403341650963, 0.017742138355970383, 0.010195292532444, -0.008503229357302189, -0.0437484085559845, -0.009999111294746399, 0.030506178736686707, -0.03246799111366272, 0.00664563849568367, -0.026214715093374252, -0.017423342913389206, -0.006939910352230072, -0.01710454933345318, 0.030972108244895935, -0.000709241081494838, -0.008264133706688881, 0.008251871913671494, -0.009956195950508118, 0.016724448651075363, -0.02399541437625885, 0.012488160282373428, -0.029500748962163925, -0.025846874341368675, -0.005609556566923857, 0.013818513602018356, -0.02166576310992241, -0.009992980398237705, -0.04531785845756531, 0.026410896331071854, -0.004273071885108948, 0.010648961178958416, -0.04956027865409851, -0.012714995071291924, 0.023934107273817062, 0.023271996527910233, 0.024780139327049255, -0.021776113659143448, 0.0016016357112675905, 0.04931505024433136, -0.03874579071998596, 0.022192999720573425, -0.0013042985228821635, -0.03418457508087158, 0.01725168526172638, 0.020893298089504242, 0.003748900257050991, 0.02562617138028145, -0.005416440777480602, -0.019152190536260605, -0.0040247803553938866, -0.005140560679137707, 0.024743355810642242, 0.0064126732759177685, -0.010587655007839203, 0.005882370751351118, 0.03607282042503357, -0.0295252725481987, -0.004334378521889448, 0.0048248316161334515, -0.009796799160540104, -0.01882113516330719, -0.011531776748597622, -0.018637215718626976, 0.005989657714962959, -0.01329127699136734, 0.044729314744472504, 0.025650693103671074, 0.07145900279283524, 0.0018391988705843687, -0.005422571208328009, 0.002214701846241951, -0.0041320668533444405, 0.021187569946050644, -0.011433686129748821, 0.015228566713631153, 0.014922033064067364, 0.029083864763379097, -0.009195994585752487, 0.0029519142117351294, -0.01618495024740696, -0.013070573098957539, 0.0018959074513986707, -0.007510061841458082, 0.029402658343315125, -0.007969861850142479, 0.00038489067810587585, 0.015657713636755943, -0.014566455036401749, -0.015596406534314156, -0.000712306413333863, 0.004242418799549341, -0.00308219064027071, 0.019765257835388184, 0.0045152329839766026, 0.018882442265748978, 0.029966680333018303, 0.0006031039520166814, 0.05316510796546936, -0.0061184014193713665, -0.049486711621284485, -0.014186353422701359, -0.0585600920021534, -0.036808498203754425, 0.0102443378418684, 0.007277096621692181, 0.014823942445218563, -0.006743729114532471, 0.04266941174864769, -0.010477302595973015, 0.044165294617414474, 0.0205377209931612, -0.032492514699697495, 0.00258100894279778, 0.014235398732125759, -0.01638113148510456, -0.00305766798555851, -0.02663159929215908, 0.019103145226836205, 0.024473605677485466, 0.015326657332479954, -0.012837608344852924, -0.016246257349848747, -0.015743542462587357, 0.0073997098952531815, 0.008325439877808094, -0.015056908130645752, -0.015437008813023567, -0.009851975366473198, -0.019090883433818817, 0.02805391326546669, -0.03572950139641762, -0.001897440175525844, -0.03565593436360359, -0.02592044323682785, -0.014897510409355164, -0.012862130999565125, -0.010029763914644718, 0.018808873370289803, -0.00559422979131341, 0.005094580817967653, -0.056990642100572586, 0.012813085690140724, 0.009300215169787407, -0.0035619151312857866, -0.04651946946978569, -0.018637215718626976, -0.006988955661654472, 0.05458742007613182, 0.03148708492517471, 0.004594931844621897, 0.008681018836796284, -0.010642830282449722, 0.01932385005056858, 0.0006912322132848203, -0.01998596079647541, 0.007767549715936184, 0.006565940100699663, 0.04830962419509888, -0.005355134140700102, 0.001190114882774651, -0.014370273798704147, 0.0018453295342624187, -0.025282854214310646, 0.0739603191614151, -0.0033442764542996883, -0.04409172758460045, -0.006639507599174976, -0.013610071502625942, 0.0329829677939415, 0.004751263651996851, -0.010636700317263603, 0.014100524596869946, 0.04183564335107803, -0.017484650015830994, -0.00961287971585989, -0.03435623273253441, -0.025037627667188644, -0.0184165108948946, -0.029844066128134727, -0.02577330730855465, 0.004947444889694452, -0.045881882309913635, 0.020047267898917198, 0.01338936761021614, 0.01917671412229538, 0.003877644194290042, 0.001578645664267242, 0.02115078642964363, 0.006020310800522566, 0.017080025747418404, -0.01891922578215599, -0.0051344302482903, -0.0033810604363679886, -0.018931487575173378, -0.009140818379819393, -0.023149382323026657, -0.004478449001908302, -0.0410754419863224, 0.04254680126905441, -0.005355134140700102, -0.03133994713425636, 0.007424232549965382, -0.021592194214463234, -0.004981163423508406, 0.002013922668993473, -0.013879820704460144, 0.00100849405862391, 0.04176207631826401, -0.04919243976473808, 0.00400945357978344, 0.012543336488306522, 0.01464002300053835, -0.0076939817517995834, 0.03587663918733597, 0.0012644492089748383, 0.03136447072029114, 0.02734275534749031, 0.0050240783020854, -0.024436822161078453, 0.03442980349063873, 0.0042086998000741005, -0.017214901745319366, -0.029402658343315125, 0.06670161336660385, 0.055323101580142975, -0.022413702681660652, 0.020120834931731224, -0.003445432521402836, 0.012751778587698936, 0.005465486086905003, 0.012911176308989525, 0.008478706702589989, 0.0049443794414401054, -0.012947959825396538, 0.007289357949048281, 0.007626544684171677, 0.030211906880140305, -0.026288282126188278, -0.03582759201526642, 0.00047780852764844894, 0.010213684290647507, 0.006461718585342169, 0.0036661364138126373, -0.015706758946180344, 0.011611475609242916, -0.00048585503827780485, 0.04475383833050728, 0.01034855842590332, 0.011029062792658806, 0.0036661364138126373, -0.0065598092041909695, -0.007583629805594683, 0.0294271819293499, 0.0082947863265872, 0.04105091840028763, 0.0035343270283192396, 0.000714222202077508, -0.004153524059802294, 0.02140827476978302, -0.018539125099778175, -0.014149569906294346, 0.0036385483108460903, -0.015988769009709358, -0.020513197407126427, 0.014443841762840748, -0.018808873370289803, -0.0025411597453057766, -0.005624883342534304, -0.037715837359428406, 0.020733902230858803, 0.01063056942075491, 0.007424232549965382, 0.02013309672474861, 0.025528080761432648, 0.001421547494828701, -0.07503931224346161, 0.03119281306862831, 0.03854960948228836, -0.02187420427799225, -0.0026545769069343805, -0.015571883879601955, -0.019409678876399994, 0.0014859193470329046, 0.01922575943171978, -0.008527752012014389, -0.018943747505545616, 0.00809247512370348, -0.012052883394062519, -0.006461718585342169, -0.005698451306670904, -0.04865293949842453, 0.019802041351795197, -0.03393935039639473, 0.03379221260547638, 0.03033451922237873, 0.02866697870194912, 0.020145358517766, -0.006541417445987463, 0.0038807096425443888, -0.010091071017086506, -0.023468177765607834, -0.012291979044675827, -0.03805915638804436, 0.03332628309726715, -0.009569964371621609, -0.015902940183877945, 0.0071606142446398735, -0.003883774857968092, 0.0014361077919602394, -0.03749513253569603, -0.036931112408638, -0.008227349258959293, 0.0043558357283473015, -0.03788749501109123, -0.012947959825396538, -0.020819731056690216, -0.0010705669410526752, -0.028495321050286293, 0.005683124531060457, -0.019605860114097595, -0.0017426408594474196, 0.03180588036775589, -0.006504633463919163, 0.022045863792300224, 0.0002741555799730122, 0.0022821391467005014, 0.004282267764210701, -0.02876506932079792, 0.009355391375720501, -0.03210015222430229, -0.040413327515125275, 3.017435665242374e-05, -0.01126202754676342, -0.0013732684310525656, 0.005349003244191408, 0.0036538750864565372, 0.004129001405090094, 0.026459941640496254, 0.002584074391052127, 0.0013610071036964655, -0.00662111584097147, 0.015584144741296768, 0.03560689091682434, -0.003960408270359039, 0.012739517726004124, 0.033105578273534775, -0.018183546140789986, 0.014210876077413559, 0.031585175544023514, 0.009858106262981892, 0.021334705874323845, -0.024718832224607468, 0.004643977154046297, -0.023210689425468445, -0.002916662720963359, -0.046396855264902115, 0.010930972173810005, 0.020378323271870613, -0.01319318637251854, -0.005946742836385965, -0.015387963503599167, -0.018085455521941185, 0.009104033932089806, -0.041982777416706085, -0.003053070046007633, -0.002662240294739604, -0.015424747951328754, -0.0013111955486238003, -0.026361851021647453, 0.0006690085865557194, 0.00024484333698637784, 0.0003375696251168847, 0.016319824382662773, 0.03465050458908081, -0.0036753322929143906, 0.019814303144812584, -0.03246799111366272, 0.016013290733098984, 0.022965462878346443, -0.018894702196121216, -0.025944964960217476, -0.022891895845532417, -0.0008981421124190092, 0.006394281517714262, -0.0007027272367849946, -0.017889274284243584, -0.006351366639137268, 0.035533320158720016, 0.006406542845070362, -0.006256341468542814, -0.0007157548679970205, 0.0007490903371945024, -0.015988769009709358, 0.023860540241003036, 0.03580307215452194, 0.025037627667188644, -0.031879447400569916, -0.015069168992340565, 0.010183030739426613, 0.0026101297698915005, 0.020770685747265816, -0.012727255932986736, 0.010771574452519417, 0.04124709963798523, -0.013229970820248127, -0.005931416060775518, -0.0077062430791556835, -0.04004548862576485, 0.005744431167840958, -0.005775084253400564, 0.0028982709627598524, 0.004895334132015705, 0.0036630709655582905, -0.019360633566975594, 0.05139947682619095, 0.031585175544023514, -0.02876506932079792, 0.041320666670799255, -0.003209402086213231, 0.009030465967953205, 0.025797829031944275, -0.010287252254784107, -0.00510071124881506, 0.018857918679714203, -0.0165895726531744, 0.047770123928785324, -0.015596406534314156, -0.0061459895223379135, -0.012009968049824238, 0.0091837327927351, 0.012316501699388027, -0.013757207430899143, 0.008907852694392204, 0.00968644767999649, 0.01227971725165844, 0.005241716746240854, -0.006578201428055763, 0.033669598400592804, 0.010084940120577812, 0.018306158483028412, 0.014922033064067364, -0.025601647794246674, -0.04392006993293762, -0.0029488487634807825, 0.0008966094464994967, 0.0006456354167312384, 0.03008929267525673, -0.009275692515075207, 0.007461016532033682, 0.012997005134820938, 0.026043055579066277, 0.023271996527910233, 0.004597997292876244, -0.03678397834300995, 0.0006651768926531076, 0.018453294411301613, 0.006504633463919163, 0.007522323168814182, -0.007172875571995974, -0.01223067194223404, -0.019556814804673195, 0.022548578679561615, -0.009833583608269691, 0.04698539897799492, -0.0068540810607373714, 0.0009901020675897598, 0.012555597350001335, 0.004073825664818287, 0.01471359096467495, -0.028470797464251518, 0.0102688604965806, 0.0019066361710429192, 0.01607459783554077, -0.003417844418436289, -0.0102688604965806, -0.004947444889694452, 0.02069711685180664, -0.00306226615794003, -0.0011104162549600005, -0.0083193089812994, -0.015608667396008968, -0.01438253466039896, 0.00015805615112185478, 0.01445610262453556, -0.021727068349719048, -0.03516548126935959, 0.02155541069805622, -6.5258032009296585e-06, -0.005379656795412302, 0.017975103110074997, 0.05066379904747009, -0.0062502105720341206, -0.02105269581079483, -0.010569262318313122, -0.021015912294387817, -0.018146762624382973, -0.025380944833159447, -0.013708162121474743, 0.019201235845685005, -0.009606748819351196, -0.0051037766970694065, 0.010152377188205719, -0.020464152097702026, -0.02287963405251503, 0.020218925550580025, -0.0002967623877339065, 0.010667352937161922, 0.017742138355970383, 0.011660520918667316, -0.014627761207520962, -0.02257310040295124, 0.044165294617414474, -0.0032860352657735348, 0.01932385005056858, 0.012947959825396538, 0.038377948105335236, 0.01857590861618519, -0.012592381797730923, 0.02333330176770687, -0.009845844469964504, 0.00305153732188046, 0.02648446336388588, -0.0015334320487454534, -0.0015893743839114904, 0.012947959825396538, 0.026459941640496254, -0.030015725642442703, -0.04357675090432167, 0.037617746740579605, 0.015424747951328754, 0.02150636538863182, -0.006909256801009178, 0.0006835688836872578, 0.01948324590921402, -0.011599213816225529, 0.01891922578215599, -0.011470470577478409, -0.0006759055540896952, 0.027710596099495888, 0.016883844509720802, -0.03869674354791641, 0.02825009450316429, -0.016577312722802162, -0.00303161283954978, -0.019826563075184822, 0.014223137870430946, -0.0092818234115839, -0.006639507599174976, 0.01790153607726097, 0.019912391901016235, -0.013156402856111526, 0.03133994713425636, 0.01744786649942398, 0.01232876256108284, -0.014946555718779564, 0.05502882972359657, 0.015007862821221352, -0.008055690675973892, 0.0027542002499103546, -0.005759757943451405, -0.002602466382086277, -0.0002630437375046313, 0.019875608384609222, 0.013107357546687126, 0.0019127668347209692, -0.018588170409202576, -0.023504961282014847, -0.0595409981906414, 0.003748900257050991, -0.029844066128134727, 0.03783845156431198, 0.028397230431437492, 0.018036410212516785, 0.0029718386940658092, 0.015032385475933552, 0.008730064146220684, 0.02328425645828247, 0.011078108102083206, 0.003770357696339488, 0.026656121015548706, 0.012555597350001335, -0.03104567714035511, 0.008503229357302189, -0.024007676169276237, 0.02562617138028145, 0.018134500831365585, -0.02165350131690502, 0.015706758946180344, 0.011353987269103527, 0.03563141077756882, 0.019164452329277992, -0.007933077402412891, -0.007313880603760481, -0.009882628917694092, -0.027171097695827484, 0.003215532749891281, 0.02384827844798565, -0.006375889293849468, 0.008288656361401081, 0.020267970860004425, -0.03531261906027794, 0.013928866013884544, 0.0028952055145055056, -0.002323521301150322, 0.015424747951328754, 0.029500748962163925, 0.02050093561410904, 0.006737598218023777, 0.025895919650793076, 0.03764227032661438, 0.0074671474285423756, -0.023627573624253273, -0.004230157472193241, 0.004162719938904047, -0.018342943862080574, -0.03129090368747711, 0.021126264706254005, 0.005894632078707218, -0.045881882309913635, -0.01245137583464384, 0.002113546011969447, 0.020464152097702026, -0.04232609644532204, -0.020672595128417015, -0.011654390022158623, 0.01988787017762661, 0.01799962669610977, -0.008497098460793495, -0.0025411597453057766, 0.008129258640110493, -0.02866697870194912, 0.015473793260753155, 0.005269304849207401, -0.01215097401291132, -0.021114002913236618, -0.0016399523010477424, 0.00357724167406559, 0.0068111661821603775, -0.005906893406063318, -0.0014506680890917778, -0.011642128229141235, -0.05851104483008385, 0.027367278933525085, -0.022744759917259216, -0.02064807154238224, 0.019188974052667618, -0.01077770534902811, 0.009428959339857101, -0.007326141931116581, 0.00717900600284338, -0.003411713754758239, 0.032541558146476746, 0.026410896331071854, 0.031634218990802765, -0.020047267898917198, -0.011960922740399837, 0.004720610566437244, 0.010722529143095016, 0.002740406198427081, -0.0370292030274868, -0.003138899337500334, 0.026876825839281082, -0.009367653168737888, -0.004696087911725044, 0.0044386000372469425, -0.03099663183093071, -0.01464002300053835, 0.020427368581295013, 0.027882253751158714, -0.0065598092041909695, 0.016577312722802162, 0.0024859837722033262, 0.0014552660286426544, -0.023652097210288048, 0.011090368963778019, 0.003184879431501031, -0.009888758882880211, -0.024780139327049255, -9.809060429688543e-05, 0.002533496357500553, 0.026361851021647453, -0.015069168992340565, -0.017729876562952995, 0.0091346874833107, 0.050712842494249344, 0.018551385030150414, 0.01326675433665514, -0.06429839134216309, 0.010415996424853802, 0.019924653694033623, -0.02999120205640793, -0.013695900328457355, -0.003469955176115036, 0.010127854533493519, 0.006995086092501879, -0.01464002300053835, -0.008938506245613098, -0.0018146762158721685, 0.012898914515972137, -0.006952171679586172, -0.027514414861798286, 0.010961624793708324, -0.029010295867919922, 0.018735306337475777, -0.022769281640648842, -0.01719037815928459, 0.029917635023593903, -0.02186194434762001, -0.03281130641698837, 0.03474859520792961, 0.02008405141532421, 0.00254269246943295, 0.013450673781335354, 0.017619524151086807, -0.005563576705753803, -0.0200963132083416, -0.01425992138683796, 0.02186194434762001, 0.02192324958741665, 0.002272943267598748, 0.008791370317339897, -0.008000515401363373, 0.007258704863488674, 0.03953051567077637, -0.0082947863265872, -0.03438075631856918, 0.00016246255836449564, -0.009821321815252304, 0.018551385030150414, -0.0053704604506492615, 0.024056721478700638, 0.00031093956204131246, 0.007877902127802372, -0.014799419790506363, -0.004849354270845652, -0.011813786812126637, 0.018134500831365585, -0.007724635303020477, 0.01428444404155016, 0.017227161675691605, 0.006504633463919163, -0.0011947129387408495, -0.0050486009567976, 0.00030614997376687825, -0.012132581323385239, -0.009907151572406292, -0.019005054607987404, -0.010949363932013512, -0.031119244173169136, -0.02699943818151951, 0.027563460171222687, 0.0033933217637240887, -0.02790677733719349, 0.0030132208485156298, 0.037519656121730804, 0.03570498153567314, 0.00020250346278771758, -0.01998596079647541, 0.020255709066987038, 0.005588099360466003, 0.00664563849568367, 0.001879048184491694, -0.00466543436050415, -0.005793476477265358, 0.011862832121551037, 0.00722805131226778, -0.008711671456694603, -0.0028293009381741285, 0.04186016693711281, -0.06469075381755829, 0.00956383440643549, 0.013977911323308945, -0.005361264571547508, 0.0023465112317353487, -0.030481655150651932, 0.0010261196875944734, 0.022389180958271027, 0.015902940183877945, -0.02013309672474861, 0.002953446703031659, -0.03322819247841835, -0.020218925550580025, -0.004266941454261541, 0.047966305166482925, 0.013671377673745155, -0.0005004153354093432, -0.011991576291620731, -0.021518627181649208, 0.034675028175115585, -0.019311588257551193, -0.015056908130645752, 0.021494103595614433, 0.018490079790353775, 0.016209471970796585, -0.012009968049824238, 0.010103331878781319, -0.01709228754043579, 0.0027005570009350777, -0.029819544404745102, -0.006676291581243277, -0.014235398732125759, -0.016981935128569603, -0.007920816540718079, 0.02064807154238224, -0.029353613033890724, -0.018146762624382973, -0.011255896650254726, -0.008049560710787773, -0.02302676998078823, 0.018097717314958572, 0.019998222589492798, 0.01786475069820881, -0.021040434017777443, -0.010796097107231617, -0.0009594487491995096, -0.0008713204297237098, -0.004401816055178642, 0.01974073424935341, 0.017435604706406593, -0.014627761207520962, -0.03737252205610275, -0.042129915207624435, 0.017717614769935608, -0.006878603715449572, -0.017423342913389206, 0.0004115207411814481, -0.023149382323026657, -0.00662111584097147, 0.010912579484283924, 0.011121022514998913, -0.015915200114250183, -0.00018075876869261265, 0.01582937128841877, -0.02338234707713127, -0.00011389621795387939, -0.015694497153162956, -0.031879447400569916, -0.01237780787050724, 0.003488347167149186, 0.007356795482337475, -0.022560838609933853, 0.022094909101724625, -0.006461718585342169, 0.033816736191511154, 0.0006065524648874998, -0.01684706099331379, -0.009061119519174099, 0.0010989212896674871, -0.007369056809693575, 0.004334378521889448, -0.01428444404155016, -0.02820104919373989, 0.015253089368343353, -0.004815635737031698, -0.026876825839281082, -0.0042516146786510944, -0.007608152460306883, -0.013867558911442757, -0.021776113659143448, -0.0012989342212677002, -0.002360305283218622, -0.021089479327201843, -0.0020307821687310934, -0.008693279698491096, -0.0026453810278326273, 0.011090368963778019, -0.024731094017624855, 0.0058394563384354115, -0.007871771231293678, -0.004895334132015705, -0.006332974880933762, 0.007050262298434973, -0.01425992138683796, 0.006198100280016661, 0.001553356647491455, 0.007804333698004484, 0.012641427107155323, -0.01179539505392313, -0.0009448883938603103, 0.010127854533493519, -0.0018637215252965689, 0.02866697870194912, -0.01901731640100479, 0.002633119700476527, -0.007185136899352074, -0.008448053151369095, 0.00976614560931921, -0.015412486158311367, -0.009324737824499607, 0.008178303949534893, 0.030824972316622734, -0.025846874341368675, 0.004552016966044903, -0.010943233035504818, 0.0047972435131669044, 0.007718504406511784, 0.032639648765325546, -0.004006388131529093, -0.009189863689243793, 0.006400411948561668, 0.05851104483008385, -0.0029059341177344322, -0.012549466453492641, -0.005511465948075056, 0.011292681097984314, -0.0028231702744960785, -0.0016889976104721427, -0.004680761136114597, 0.013561026193201542, -0.021628977730870247, 0.011678912676870823, -0.016932889819145203, 0.011133283376693726, 0.049437664449214935, -0.006847950164228678, -0.008981420658528805, 0.0018744501285254955, 0.022511793300509453, -0.023480437695980072, -0.025282854214310646, 0.0009893357055261731, -0.012482029385864735, 0.012383938767015934, -0.02181289903819561, 0.007669459097087383, -0.011084238067269325, 0.016883844509720802, -0.014799419790506363, 0.005888501647859812, -0.0005107608740217984, -0.009827452711760998, 0.006786643527448177, 0.004037041682749987, 0.01786475069820881, 0.0035588496830314398, 0.009441221132874489, 0.024534912779927254, -0.01699419692158699, -0.010311774909496307, 0.012641427107155323, 0.02231561206281185, -0.023296518251299858, 0.010066548362374306, 0.0013740347931161523, 0.013205448165535927, 0.027073007076978683, 0.001196245546452701, 0.01755821891129017, 0.025135718286037445, -0.021751591935753822, -0.01942194066941738, 0.00362015631981194, -0.032639648765325546, 0.013879820704460144, -0.0038010110147297382, 0.007773680612444878, -0.006443326827138662, -0.02080746926367283, -0.004168850835412741, -0.00023909585434012115, -0.014223137870430946, -0.017827967181801796, -0.011948661878705025, -0.039653126150369644, -0.03362055495381355, -0.012629165314137936, 0.01488524954766035, -0.009146949276328087, -0.0012062079040333629, 0.009238908998668194, 0.031168289482593536, 0.009943935088813305, -0.01321770902723074, 0.0033841258846223354, 0.012046752497553825, 0.016307562589645386, 0.02131018415093422, -0.023419132456183434, -0.018195807933807373, -0.018146762624382973, -0.009557703509926796, -0.018134500831365585, -0.017116811126470566, 0.018195807933807373, 0.00020461087115108967, -0.03202658146619797, -0.0012828412000089884, -0.000487004523165524, -0.010342428460717201, -0.0004256978863850236, 0.0027296775951981544, -0.022180737927556038, 0.013401628471910954, -0.0202434491366148, -0.00610000966116786, -0.003598699113354087, -0.00407076021656394, 0.011268158443272114, 0.010550870560109615, 0.010495694354176521, 0.0045857359655201435, 0.010930972173810005, -0.00153189932461828, -0.008123128674924374, 0.011145545169711113, -0.03960408270359039, -0.02211943082511425, -0.007172875571995974, -0.022965462878346443, -0.010005241259932518, -0.006339105311781168, 0.007007347419857979, -0.030972108244895935, -0.007608152460306883, 0.007528454065322876, -0.014443841762840748, -0.03430718928575516, -0.013720422983169556, 0.016209471970796585, -0.004745133221149445, -0.033767689019441605, 0.018735306337475777, -0.02520928531885147, 0.05718682333827019, 0.011991576291620731, 0.010078809224069118, -0.005477747414261103, -0.01042212639003992, 0.004717545118182898, -0.006296190898865461, -0.009324737824499607, 0.005830260459333658, 0.0050118169747292995, -0.038623176515102386, -0.01229810994118452, 0.0052509126253426075, 0.029083864763379097, 0.009447351098060608, 0.003871513530611992, 0.005652470979839563, -0.024927275255322456, 0.0067192064598202705, 0.017055504024028778, 0.01486072689294815, -0.009165341034531593, 0.021739330142736435, -0.0032400554046034813, -0.02115078642964363, 0.0038010110147297382, -0.016209471970796585, 0.003712116274982691, -0.024387776851654053, 0.007810464594513178, 0.00180394749622792, 0.04651946946978569, 0.004643977154046297, 0.0032369899563491344, -0.017742138355970383, -0.006400411948561668, -0.025895919650793076, 0.02359079010784626, 0.0035465883556753397, -0.006369758863002062, -0.04002096503973007, -0.003473020391538739, 0.015694497153162956, 0.004935183562338352, 0.012997005134820938, -0.005401114001870155, 0.031168289482593536, -0.017889274284243584, 0.0022284958977252245, 0.03013833798468113, -0.0026101297698915005, 0.008490967564284801, -0.0296724084764719, 0.006805035751312971, -0.018747566267848015, 0.02313712239265442, -0.004981163423508406, -0.027931299060583115, 0.01324223168194294, 0.009005943313241005, 0.018183546140789986, -0.016001030802726746, 0.027073007076978683, -0.0025288984179496765, -0.007963730953633785, 0.00558196846395731, 0.008687148801982403, 0.015657713636755943, -0.034576937556266785, -0.035435229539871216, 0.010213684290647507, -0.01755821891129017, 0.011366249062120914, -0.007736896630376577, -0.03406196087598801, 0.007503931410610676, 0.003883774857968092, -0.003758096368983388, 0.005796541925519705, 0.018355203792452812, -0.007632675115019083, 0.016920629888772964, -0.015118214301764965, -0.010133985430002213, -0.019998222589492798, -0.013610071502625942, -0.001183984219096601, 0.036808498203754425, 0.01623399555683136, -0.021175310015678406, -0.01037308108061552, 0.0293290913105011, 0.0032461860682815313, 0.04323343560099602, 0.021800637245178223, -0.003948146943002939, -0.02465752512216568, -0.004778851754963398, -0.01710454933345318, -0.0035619151312857866, 0.015645451843738556, 0.03126638010144234, 0.015571883879601955, 0.00045673438580706716, 0.000532601319719106, 0.023100337013602257, 0.022793805226683617, 0.02435099333524704, -0.0066640302538871765, 0.01179539505392313, -0.015964245423674583, 0.013744945637881756, -0.00047895804163999856, -0.026214715093374252, 0.0050118169747292995, 0.015547361224889755, -0.015289872884750366, -0.011194590479135513, 0.005784280598163605, -0.0005061628762632608, -0.0050240783020854, -0.0009341597324237227, -7.969861326273531e-05, -0.014137308113276958, 0.01488524954766035, 0.0018376661464571953, 0.0082947863265872, -0.02121209353208542, 0.003604829777032137, -0.009527049958705902, -0.007381318137049675, 0.007185136899352074, -0.03286035358905792, 0.01937289535999298, -0.010379211977124214, -0.029868589714169502, -0.01862495392560959, -0.006780513096600771, 0.002371033886447549, 0.0072648352943360806, 0.023149382323026657, -0.04315986484289169, -0.003908297512680292, 0.011219113133847713, 0.007381318137049675, 0.027023961767554283, -0.02126113884150982, -0.019520031288266182, -0.010011372156441212, 0.015608667396008968, -0.013279015198349953, 0.012923437170684338, -0.0202924944460392, -0.02200908027589321, 0.0005697684828191996, 0.006590462755411863, -0.005312219262123108, -0.019716212525963783, 0.015265350230038166, -0.002890607574954629, 0.036440659314394, 0.022548578679561615, 0.004165785387158394, 0.016001030802726746, -0.018404249101877213, 0.02699943818151951, -0.0011663585901260376, -0.0075468458235263824, 0.006774382200092077, 0.019605860114097595, 0.005658601876348257, 0.036146387457847595, 0.01943420059978962, 0.0033657338935881853, -0.016601834446191788, -0.02748989127576351, -0.018747566267848015, 0.006835688836872578, -0.002173319924622774, 0.023370087146759033, -0.019593598321080208, -0.02267119102180004, 0.030260952189564705, 0.019139928743243217, -0.017521433532238007, 0.0020736965816468, 0.012800823897123337, -0.007136091589927673, 0.00611227098852396, 0.016221733763813972, 0.010685745626688004, -0.017791183665394783, 0.029231000691652298, -0.009833583608269691, -0.014112785458564758, 0.00017549021868035197, 0.005336741916835308, 0.01597650721669197, 0.0036722670774906874, -0.06331748515367508, -0.005437897983938456, -0.004524429328739643, -0.014983340166509151, 0.0032185979653149843, 0.0025764110032469034, -0.014676806516945362, -0.03617091104388237, -0.0009602150530554354, 0.006547547876834869, -0.008687148801982403, -0.01613590493798256, -0.008006645366549492, 0.02100365050137043, -0.01942194066941738, 0.0042638760060071945, -0.022291090339422226, -0.0020185208413749933, 0.023566268384456635, -0.010189161635935307, 0.0058241295628249645, -0.007503931410610676, 0.0019985961262136698, 0.053704604506492615, -0.006302321329712868, -0.01027499046176672, -0.0012598511530086398, -0.03352246433496475, -0.008208957500755787, 0.005309153813868761, -0.009600617922842503, -0.003423975082114339, -0.007007347419857979, -0.023222951218485832, -0.017742138355970383, -0.0001619836111785844, 0.0018422642024233937, -0.015951985493302345, -0.039653126150369644, 0.010017503052949905, 0.028691502287983894, -0.02648446336388588, -0.0032339247409254313, 0.02205812558531761, 0.00561875244602561, -0.016981935128569603, 0.004043172113597393, 0.030726881697773933, 0.029059341177344322, 0.027465369552373886, 0.021678023040294647, -0.011347857303917408, 0.027735117822885513, -9.104992204811424e-05, 0.0185146015137434, -0.038476038724184036, -0.02003500610589981, 0.0020752293057739735, -0.01029951311647892, -0.0035220657009631395, 0.005916089750826359, -0.009557703509926796, -0.02572426199913025, -0.03214919567108154, -0.0074671474285423756, -0.005821064114570618, -0.013744945637881756, 0.030775927007198334, -0.0020507066510617733, -0.010458910837769508, 0.009576095268130302, -0.0007425765506923199, 0.010379211977124214, 0.03271321579813957, 0.01578032597899437, -0.001431509735994041, -0.030506178736686707, 0.03369412198662758, 0.05149756744503975, 0.008662626147270203, -0.02344365417957306, 0.002896738238632679, 0.010011372156441212, -0.002715883543714881, 0.019458724185824394, -0.03236990049481392, -0.019973699003458023, 0.041320666670799255, -0.011954792775213718, 0.007136091589927673, -0.02121209353208542, -0.011997707188129425, 0.008221219293773174, -0.005793476477265358, 0.0025702803395688534, -0.0372253842651844, 0.03192849084734917, -0.009471873752772808, 0.013009266927838326, -0.020010482519865036, -0.03033451922237873, 0.0181712843477726, 0.02131018415093422, -0.022940941154956818, 0.03825533762574196, 0.004000257700681686, -0.020366061478853226, 0.0480889193713665, -0.00563101377338171, 0.02648446336388588, -0.01017689984291792, 0.015265350230038166, -0.0018116108840331435, 0.013597809709608555, -0.005790411029011011, 0.001597037655301392, 0.01633208617568016, -0.020513197407126427, 0.01443157996982336, -0.014909772202372551, -0.02119983173906803, 0.010354689322412014, 0.007221920881420374, -0.007080915383994579, 0.024068981409072876, 0.011458208784461021, 0.001590906991623342, 0.008595189079642296, -0.006841819733381271, 0.02344365417957306, 0.011206851340830326, -0.007865640334784985, -0.013058312237262726, -0.015571883879601955, 0.001121144974604249, -0.021530887112021446, 0.010164638981223106, 0.016626358032226562, 0.012751778587698936, -0.008656496182084084, -0.010937102138996124, -0.021077219396829605, -0.021322445943951607, -0.021690284833312035, -0.0076020220294594765, -0.006872472818940878, 0.008963028900325298, -0.03038356453180313, -0.026607075706124306, 0.009698708541691303, -0.00961287971585989, 0.01072866003960371, -0.0020660334266722202, 0.022989986464381218, -0.0037795535754412413, -0.0077491579577326775, 0.0016706056194379926, -0.010648961178958416, 0.0005142093286849558, -0.0021166112273931503, 0.01476263627409935, 0.010256598703563213, -0.03008929267525673, 0.01765630953013897, -0.0036783977411687374, 0.018600430339574814, -0.030113816261291504, -0.010544739663600922, -0.005483877845108509, -0.014345751143991947, -0.0023909586016088724, -0.005833325441926718, -0.006363627966493368, -0.005814933683723211, 0.019262542948126793, -0.0014292107662186027, 0.014627761207520962, -0.030874017626047134, 0.0030270146671682596, -0.004239353351294994, -0.0008153781527653337, 0.0025120391510427, 0.019593598321080208, 0.02719561941921711, -0.016883844509720802, -0.01466454565525055, 0.007871771231293678, -0.006896995473653078, 0.01963038183748722, 0.015032385475933552, 0.014848465099930763, 0.03232085332274437, 0.01230423990637064, -0.011145545169711113, 0.009061119519174099, -0.026361851021647453, -0.016454698517918587, 0.012690472416579723, 0.00665789982303977, -0.004812570288777351, 0.012923437170684338, 0.007068654056638479, 0.0036385483108460903, 0.005165083333849907, -0.006792774423956871, 0.03406196087598801, 0.022940941154956818, -0.015032385475933552, 0.005750561598688364, 0.0050608622841537, -0.00963740237057209, 0.018195807933807373, 0.025454511865973473, -0.004374227952212095, -0.010771574452519417, -0.0032400554046034813, -0.008202826604247093, 0.006841819733381271, -0.005787345580756664, 0.021518627181649208, -0.019667167216539383, 0.003991061355918646, 0.004588800948113203, -0.021187569946050644, -0.018036410212516785, -0.008399007841944695, -0.0074119712226092815, -0.021469581872224808, 0.0014943490969017148, -0.0006142157944850624, -0.0082947863265872, -0.006798904854804277, -0.025699738413095474, 0.0019158321665599942, -0.0015771130565553904, 0.004079956095665693, -0.02343139238655567, -0.007669459097087383, 0.004634781274944544, -0.0020844254177063704, 0.029500748962163925, 0.01993691548705101, 0.03496930003166199, -0.003325884463265538, 0.004858550149947405, 0.0024093505926430225, -0.005520661827176809, 0.010011372156441212, -0.006302321329712868, 0.0020123901776969433, -0.015964245423674583, 0.010232076048851013, -0.021898727864027023, -0.004101413302123547, -0.0082947863265872, -0.0004532858729362488, 0.008399007841944695, -0.00016102568770293146, 0.0054256366565823555, -0.0036722670774906874, -0.007700112648308277, 0.01151951588690281, -0.010814488865435123, 0.0294762272387743, 0.012592381797730923, -0.021064957603812218, 0.011047454550862312, 0.010557001456618309, -0.006008049473166466, 0.023664359003305435, 0.0041044787503778934, -0.02520928531885147, -0.005689254961907864, -0.015069168992340565, -0.014198615215718746, 0.011029062792658806, 0.0036262869834899902, 0.002458395902067423, 0.008760716766119003, 0.0050363396294415, -9.971906547434628e-05, -0.005710712634027004, 0.0030208840034902096, -0.0027572656981647015, -0.0021779178641736507, -0.0068111661821603775, 0.018379727378487587, -0.0012092732358723879, 0.004760459531098604, 0.005477747414261103, 0.004233222454786301, 0.019495507702231407, -0.0020721640903502703, -0.007136091589927673, -0.013082834891974926, 0.03501834720373154, -0.01478715892881155, -0.01643017679452896, 0.0021150787360966206, 0.004322117194533348, 0.01481168158352375, -0.006351366639137268, -0.016871584579348564, -0.00516201788559556, -0.01785249076783657, 0.017018720507621765, 0.03541070967912674, -0.0075591071508824825, -0.00804342981427908, -0.020623549818992615, -0.014934294857084751, -0.0009763080743141472, -0.040462374687194824, 0.014909772202372551, -0.019703950732946396, -0.0017426408594474196, -0.01210192870348692, 0.004113674629479647, 0.0020399780478328466, -0.0018499274738132954, -0.006835688836872578, -0.014223137870430946, 0.01473811361938715, 0.03290939703583717, -0.010060417465865612, 0.010661222971975803, -0.009036596864461899, -0.019912391901016235, 0.0018606561934575438, 0.02567521668970585, 0.002821637550368905, 0.008264133706688881, -0.015265350230038166, -0.017619524151086807, 0.008926245383918285, 0.01563319005072117, -0.031070198863744736, -0.004772720858454704, -0.0009992980631068349, -0.006207296159118414, 0.01468906830996275, -0.00203538010828197, 0.008055690675973892, -0.011353987269103527, 0.006995086092501879, 0.012138712219893932, -0.0005360498325899243, 0.011010670103132725, -0.0016292236978188157, 0.007810464594513178, -0.013573287054896355, -0.0021978425793349743, 0.024792401120066643, -0.017729876562952995, 0.015498315915465355, -0.00048087385948747396, 0.0014575651148334146, 0.0013893614523112774, -0.009300215169787407, 0.02166576310992241, 0.013511980883777142, 0.015020123682916164, -0.004683826584368944, -0.021690284833312035, 0.015179521404206753, -0.002220832509920001, 0.012616904452443123, -0.009091773070394993, -0.01679801568388939, -0.008895591832697392, 0.010599915869534016, -0.0014598640846088529, 0.0026469137519598007, 0.0017058568773791194, -0.010017503052949905, -0.0166386179625988, -0.00036075120442546904, -0.007485539186745882, 0.004815635737031698, -0.02435099333524704, -0.01184444036334753, 0.0021871139761060476, -0.009361522272229195, -6.183348159538582e-05, -0.002780255628749728, -0.015768064185976982, 0.0050731236115098, 0.012316501699388027, -0.01440705731511116, 0.0017579675186425447, 0.025454511865973473, 0.015792587772011757, -0.0026545769069343805, 0.021224355325102806, 0.01445610262453556, -0.017018720507621765, -0.011967053636908531, -0.0017211835365742445, 0.0037029203958809376, -0.004987294320017099, -0.02121209353208542, -0.002849225653335452, 0.0025733457878232002, -0.02744084596633911, 0.0006437195697799325, -0.01435801200568676, -0.007841117680072784, 0.0002657259174156934, -0.012898914515972137, -0.008399007841944695, 0.008779109455645084, -0.019912391901016235, -2.349289206904359e-05, 0.0002557635889388621, -0.003482216503471136, 0.00201698811724782, 0.02202134020626545, -0.005937546957284212, 0.01217549666762352, 0.008760716766119003, -0.010832881554961205, 0.010924841277301311, -0.011458208784461021, -0.0013495121384039521, 0.003445432521402836, -0.014198615215718746, -0.007755288388580084, 0.015571883879601955, 0.010127854533493519, -0.018428772687911987, 0.024645265191793442, 0.006234884262084961, 0.009925543330609798, 0.015240827575325966, -0.0016031683189794421, 0.03945694491267204, 0.019900131970643997, -0.004622519947588444, -0.0018300028750672936, 0.006890865042805672, -0.034822165966033936, 0.0203415397554636, 0.007963730953633785, 0.002965708030387759, -0.0041167400777339935, -0.0009893357055261731, -0.00783498678356409, -0.004404881037771702, -0.026190191507339478, 0.019238019362092018, -0.0015073766699060798, 0.010575393214821815, 0.007975992746651173, 0.013119618408381939, -0.015020123682916164, 0.0202434491366148, -0.007461016532033682, 0.006283929571509361, -0.006133728194981813, -0.012947959825396538, 0.00981519091874361, -0.009649663232266903, -0.00953931175172329, 0.012862130999565125, 0.003194075310602784, -0.02724466472864151, 0.001578645664267242, 0.023578528314828873, -0.012690472416579723, 0.022536316886544228, 0.008270264603197575, -0.013720422983169556, 0.00025959525373764336, 0.00102688604965806, -0.03568045794963837, 0.012800823897123337, 0.01906636171042919, -0.0027817883528769016, -0.020218925550580025, 0.005281566176563501, 0.015118214301764965, -0.007718504406511784, 0.028936728835105896, 0.005336741916835308, 0.0014422384556382895, 0.010538609698414803, 0.011231373995542526, 0.017018720507621765, 0.003163421992212534, 0.01478715892881155, -0.002803245559334755, 0.01172182708978653, -0.013462935574352741, 0.007657197769731283, 0.015179521404206753, -0.009833583608269691, -0.0012613838771358132, 0.0018560581374913454, -0.017460128292441368, -0.012108058668673038, -0.029010295867919922, -0.000709241081494838, -0.0016322890296578407, -0.0067192064598202705, -0.026607075706124306, -0.018453294411301613, -0.002731210319325328, -0.01998596079647541, 0.008313179016113281, 0.020206663757562637, 0.0015955050475895405, 0.02211943082511425, -0.0035465883556753397, 0.020378323271870613, -0.016810277476906776, 0.018232591450214386, -0.009263431653380394, -0.015204044058918953, 0.00606322567909956, 0.0022499533370137215, 0.017631785944104195, -0.005726038943976164, -0.00464091170579195, 0.00462865037843585, 0.017129071056842804, -0.004723675549030304, -0.018330682069063187, 0.0006965965731069446, 0.04134519025683403, -0.0008153781527653337, 0.0041473931632936, -0.006553678773343563, -0.02501310408115387, -0.0005065459990873933, -0.023774709552526474, -0.02520928531885147, -0.004962771665304899, -0.018845656886696815, 0.013475196436047554, 0.004346639849245548, 0.013781730085611343, -0.02378697134554386, -0.01638113148510456, 0.03038356453180313, 0.002302063861861825, -0.014419319108128548, -0.003191010095179081, -0.004315986763685942, -0.0038163375575095415, 0.02378697134554386, 0.008540012873709202, -0.012034490704536438, 0.02856888808310032, -0.014468364417552948, -0.025797829031944275, -0.00016725214663892984, -0.004282267764210701, -0.0032063366379588842, 0.00012970183161087334, -0.0371272936463356, 0.015400225296616554, 0.005765888374298811, 0.010992278344929218, -0.01215097401291132, -0.009343130514025688, 0.00046363138244487345, 0.0038745789788663387, -0.018906963989138603, -0.03563141077756882, -0.013659116812050343, 0.010593784973025322, 0.014063740149140358, -0.009018205106258392, 0.00510071124881506, -0.0012521878816187382, -0.01969168893992901, -0.017987364903092384, 0.019544553011655807, 0.0072648352943360806, 0.004061564337462187, -0.02465752512216568, 0.005796541925519705, 0.0030898540280759335, 0.03597472980618477, -0.006841819733381271, -0.0006368226022459567, -0.0005165083566680551, 0.0017702288459986448, -0.018244853243231773, 0.042178958654403687, 0.028691502287983894, 0.006473979912698269, 0.015289872884750366, 0.000720352865755558, 0.01471359096467495, -0.02451038919389248, -0.005909958854317665, -0.024056721478700638, -0.009674185886979103, 0.025233808904886246, -0.006256341468542814, 0.006041768006980419, 0.02196003496646881, -0.0015985703794285655, 0.016148166730999947, 0.008963028900325298, 0.003053070046007633, 0.011200721375644207, 0.0295252725481987, 0.007785941939800978, 0.015130476094782352, -0.006259406916797161, -0.0051589529030025005, -0.012788563035428524, -0.010514087043702602, 0.0007253340445458889, 0.026925871148705482, -0.011341726407408714, 0.00405849888920784, -0.00201085745356977, -0.02481692284345627, 0.015743542462587357, -0.029034819453954697, 0.010924841277301311, -0.008687148801982403, 0.004273071885108948, 0.005741365719586611, 0.0008360691135749221, 0.01245137583464384, 0.030604269355535507, -0.002689828397706151, -0.013131880201399326, 0.014051479287445545, -0.006516894791275263, 0.01674897037446499, 0.03165874257683754, -0.004358901176601648, 0.00976614560931921, 0.036097344011068344, -0.004919856786727905, 0.00258713960647583, 0.004138197284191847, 0.0024384711869060993, 0.000651382899377495, 0.0012629164848476648, -0.006762120872735977, 0.0054532247595489025, 0.031021153554320335, -0.008074083365499973, 0.015817109495401382, 0.026312805712223053, 0.017263947054743767, -0.02373792603611946, 0.0059988535940647125, 0.013058312237262726, 0.023112598806619644, 0.004478449001908302, -0.01017689984291792, -0.01448062527924776, -0.001741108251735568, 0.026214715093374252, -0.011513384990394115, -0.007479408755898476, 0.009796799160540104, 0.012120320461690426, 0.02278154343366623, 0.013610071502625942, -0.007994384504854679, 0.0038102068938314915, 0.004938249010592699, 0.015118214301764965, 0.007062523625791073, 0.009999111294746399, 0.000147614860907197, 0.012653687968850136, -0.025454511865973473, 0.022744759917259216, 0.011427555233240128, -0.003945081494748592, -0.004506037104874849, 0.005701516289263964, -0.025895919650793076, 0.0202924944460392, -0.013720422983169556, -0.02119983173906803, -0.014137308113276958, 0.022842850536108017, 0.015191782265901566, -0.007344534154981375, 0.00410754419863224, 0.001750304247252643, -0.016209471970796585, -0.014137308113276958, -0.00963740237057209, 0.01896827109158039, -0.018183546140789986, -0.00664563849568367, 0.009784538298845291, 0.022597623988986015, 0.004475384019315243, -0.004904530476778746, 0.013548764400184155, -7.725592877250165e-05, 0.019949177280068398, 0.004524429328739643, 0.025454511865973473, -0.018637215718626976, 0.015007862821221352, -0.0008061821572482586, -0.00024810025934129953, -0.0008406671113334596, -0.013953388668596745, 0.01240233052521944, 0.004910660907626152, 0.0021595258731395006, -0.0060141803696751595, 0.008202826604247093, 0.009226647205650806, -0.007785941939800978, 0.010207553394138813, -0.0037795535754412413, 0.0075591071508824825, 0.010158508084714413, -0.01942194066941738, -0.014321228489279747, -0.015277612023055553, 0.014946555718779564, -0.0001593014458194375, -0.017668569460511208, -0.001553356647491455, 0.02449812926352024, 0.003966538701206446, 0.007289357949048281, 0.008582928217947483, -0.012947959825396538, -0.011409163475036621, 0.0074119712226092815, 0.004794178530573845, 0.008975290693342686, 0.0033534725662320852, -0.03126638010144234, 0.023002246394753456, -0.01448062527924776, -0.006952171679586172, 0.010471171699464321, -0.015302134677767754, -0.01207740604877472, -0.012322632595896721, 0.013695900328457355, 0.025479035452008247, 0.019765257835388184, 0.02891220524907112, -0.031536128371953964, 0.008613580837845802, -0.01077770534902811, -0.024081243202090263, 0.011537907645106316, 0.0005605724873021245, 0.00014253791596274823, 0.01568223536014557, 0.006081617437303066, -0.026901347562670708, -0.037764884531497955, -0.008975290693342686, 0.009392175823450089, -0.018404249101877213, -0.013879820704460144, 0.015535099431872368, -0.024216117337346077, -0.008999813348054886, -0.014198615215718746, 0.011531776748597622, -0.017055504024028778, 0.013095095753669739, 0.018293898552656174, 0.019262542948126793, -0.015498315915465355, 0.026950392872095108, -0.011875093914568424, 0.009484135545790195, -0.0016905302181839943, 0.015964245423674583, 0.022904155775904655, 0.010078809224069118, 0.0183184202760458, -0.002631586976349354, 0.01654052920639515, 0.009907151572406292, -0.02672968991100788, -0.01445610262453556, 0.019458724185824394, 0.01448062527924776, -0.015584144741296768, 0.011396902613341808, 0.015768064185976982, -0.0029932961333543062, -0.001362539827823639, 0.01810997724533081, 0.01445610262453556, -0.015841633081436157, 0.0007306983461603522, -0.01435801200568676, -0.026656121015548706, -0.010354689322412014, -0.017312992364168167, -0.005781215149909258, -0.0023511091712862253, 0.013438412919640541, 0.005505335051566362, 0.029745975509285927, -0.001782490173354745, 0.007651067338883877, 0.0041596544906497, -0.00724031263962388, 0.03440527990460396, -0.008264133706688881, 0.007865640334784985, 0.008711671456694603, -0.015620929189026356, 0.02252405509352684, -0.015387963503599167, 0.035386186093091965, 0.004030910786241293, 0.020182142034173012, -0.02202134020626545, -0.01223067194223404, 0.0032400554046034813, -0.005900762975215912, -0.011219113133847713, 0.031830400228500366, 0.013511980883777142, 0.004037041682749987, 0.03151160851120949, 0.011372379958629608, 0.010158508084714413, -0.027563460171222687, 0.008858807384967804, 0.0165895726531744, 0.005646340548992157, -0.012751778587698936, -0.02587139792740345, 0.019115407019853592, 0.0083193089812994, -0.01220614928752184, -0.008478706702589989, 0.010520217008888721, -0.003028547391295433, -1.2087702998542227e-05, -0.012034490704536438, 0.004512168001383543, -0.004460057243704796, 0.018845656886696815, -0.013941126875579357, -0.0007877901662141085, 0.022548578679561615, -0.028397230431437492, -0.012218411080539227, -0.02165350131690502, 0.0012092732358723879, -0.004358901176601648, -0.021727068349719048, -0.011635998263955116, 0.0034914123825728893, -0.01907862350344658, 0.013499719090759754, -0.008950768038630486, 0.0073077501729130745, -0.005713777616620064, 6.470723019447178e-05, 0.02013309672474861, 0.010140116326510906, -0.0075468458235263824, -0.00804342981427908, 0.022156216204166412, -0.01998596079647541, -0.01065509207546711, -0.023161644116044044, 0.018833396956324577, -0.03599925339221954, 0.022192999720573425, 0.020378323271870613, 0.011727957986295223, -0.01573128066956997, 0.007975992746651173, -0.012788563035428524, -0.011182328686118126, -0.0030132208485156298, 0.015105953440070152, -0.02425290271639824, -0.004524429328739643, 0.013610071502625942, -0.0002542309230193496, -0.0021089480724185705, 0.013548764400184155, 0.0010613709455356002, 0.006363627966493368, 0.022916417568922043, 0.01435801200568676, -0.013941126875579357, 0.009245039895176888, 0.00404623756185174, 0.008809762075543404, 0.013462935574352741, 0.005456289742141962, -0.0101462472230196, -0.016258517280220985, 0.00407076021656394, 0.008993682451546192, -0.0022913352586328983, -0.022707974538207054, -0.011170067824423313, 0.002878346247598529, 0.02050093561410904, -0.012629165314137936, 0.0001517339114798233, -0.011194590479135513, 0.02155541069805622, -0.005376591347157955, -0.015559622086584568, 0.011170067824423313, 0.009024336002767086, 0.007485539186745882, -0.0015326656866818666, 0.028323661535978317, -0.016810277476906776, 0.008766847662627697, 0.009980718605220318, 0.014566455036401749, 0.0024507325142621994, 0.00958835706114769, 0.0016951282741501927, -0.01882113516330719, 0.010937102138996124, 0.00862584263086319, -0.012512682937085629, -0.027931299060583115, -0.006207296159118414, -0.014223137870430946, -0.018404249101877213, 0.0014966480666771531, -0.011550168506801128, -0.02592044323682785, 0.006627246737480164, 0.0029672407545149326, -0.005459355190396309, -0.008540012873709202, -0.00203538010828197, -0.03222276270389557, -0.0033626684453338385, 0.020427368581295013, 0.018391989171504974, 0.018453294411301613, 0.017533695325255394, 0.008233480155467987, 0.0021472645457834005, -0.0009671120787970722, 0.004919856786727905, 0.007957600057125092, -0.0027327430434525013, 0.01796284131705761, -0.008754586800932884, 0.030824972316622734, -0.004049303010106087, 0.00010010223195422441, -0.008307048119604588, -0.009520919062197208, -0.01628304086625576, -0.01582937128841877, 0.0058241295628249645, -0.015424747951328754, 0.015510576777160168, -0.0049443794414401054, -0.0083683542907238, 0.003436236409470439, 0.005477747414261103, 0.011243635788559914, 0.014492887072265148, 0.010477302595973015, 0.010072679258883, 0.0021809833124279976, -0.006066290661692619, -0.003978800028562546, 0.022156216204166412, -0.04387102276086807, -3.652054874692112e-05, 0.02653350867331028, -0.015093691647052765, -0.007381318137049675, 0.006872472818940878, 0.01229810994118452, -0.016172688454389572, -0.01775440014898777, -0.018906963989138603, -0.008803632110357285, 0.0016920629423111677, -0.0005088450270704925, -0.002677567070350051, 0.01476263627409935, -0.0010881926864385605, -0.001431509735994041, 0.014554193243384361, 0.029598839581012726, 0.01720263995230198, 0.027686072513461113, -0.022965462878346443, -0.024633003398776054, 0.02187420427799225, 0.022045863792300224, -0.013941126875579357, 0.007424232549965382, -0.02592044323682785, -0.004113674629479647, -0.004941314458847046, 0.023615313693881035, 0.012457506731152534, -0.008883330039680004, 0.011862832121551037, 0.006792774423956871, -0.005925285629928112, -0.0001595888170413673, -0.012960221618413925, -0.0027572656981647015, -0.011059715412557125, -0.005707647185772657, 0.017778921872377396, 0.006072421558201313, -0.014210876077413559, 0.017178116366267204, 0.009594487026333809, 0.011133283376693726, -0.014578715898096561, -0.014186353422701359, -0.0008659561281092465, -0.007491670083254576, -0.011494993232190609, -0.00018957158317789435, 0.015755804255604744, 0.014137308113276958, 0.013941126875579357, 0.013732684776186943, 0.0038194030057638884, -0.0026469137519598007, 0.01326675433665514, -0.00044179087853990495, -0.010440519079566002, -0.0018391988705843687, 0.01669992506504059, 0.036857545375823975, -0.0008805164252407849, 0.023455915972590446, -0.002718948991969228, 0.00613985862582922, 0.0044110119342803955, 0.0014667611103504896, 0.008791370317339897, 0.009355391375720501, 0.010550870560109615, 0.017582740634679794, -0.001981736859306693, 0.00867488794028759, 0.032247286289930344, -0.0034914123825728893, 0.001443771063350141, 0.0029611100908368826, 0.006274733226746321, -0.016761232167482376, 0.005716843064874411, -0.015915200114250183, 0.016160426661372185, -0.051007114350795746, -0.019238019362092018, -0.007393579464405775, 0.04033976048231125, -0.013303537853062153, 0.003592568449676037, 0.009594487026333809, 0.0026882956735789776, -0.008184434846043587, -0.004803374409675598, 0.016675403341650963, -0.01704324223101139, 0.007571368478238583, -0.01131107285618782, -0.02658255398273468, 0.02124887704849243, 0.018355203792452812, 0.01898053288459778, 0.014100524596869946, 0.005814933683723211, -0.019875608384609222, -0.015081430785357952, -0.008877200074493885, -0.004196438472718, 0.03133994713425636, -0.019311588257551193, 0.007479408755898476, -0.028838638216257095, -0.006835688836872578, 0.010740920901298523, -0.01336484495550394, -0.008681018836796284, -0.011084238067269325, -0.00179168616887182, 0.018551385030150414, -0.0037029203958809376, 0.006768251769244671, -0.02231561206281185, -0.01759500242769718, 0.010955494828522205, -0.03474859520792961, -0.014934294857084751, -0.016270779073238373, 0.0032461860682815313, 0.006713075563311577, -0.010526347905397415, -0.004441665019840002, 0.01867399923503399, 0.003920558840036392, 0.024583958089351654, 0.0029932961333543062, -0.008950768038630486, -0.00043451072997413576, -0.02699943818151951, 0.011905747465789318, -0.015191782265901566, 0.019703950732946396, -0.02871602401137352, 0.027367278933525085, -0.03080045059323311, 0.017889274284243584, 0.012604642659425735, -0.011176198720932007, 0.01113941427320242, 0.016001030802726746, 0.01478715892881155, 0.005940612405538559, 0.015314395539462566, 0.053753651678562164, 0.02079520747065544, -0.026092100888490677, -0.003755030920729041, -0.015412486158311367, -0.0016031683189794421, -0.014725851826369762, 0.004861615598201752, 0.00044140772661194205, -0.004726740997284651, 0.028470797464251518, -0.010060417465865612, 0.009435090236365795, -0.012616904452443123, -0.009600617922842503, -0.014725851826369762, 0.003466889727860689, -0.018735306337475777, 0.009195994585752487, 0.0011249766685068607, 0.008233480155467987, -0.004524429328739643, 0.019090883433818817, -0.00304387416690588, -0.012616904452443123, -0.004696087911725044, 0.0010720996651798487, 0.02292867936193943, -0.023370087146759033, -0.006044833455234766, 0.025380944833159447, -0.011127153411507607, -0.0029963613487780094, 0.013867558911442757, -0.016871584579348564, -0.017668569460511208, 0.004361966624855995, 0.0072525739669799805, -0.0035803071223199368, -0.0019066361710429192, -0.004435534588992596, 0.021702546626329422, -0.0011732556158676744, -0.010526347905397415, -0.011875093914568424, 0.028985774144530296, -0.013082834891974926, 0.03734799847006798, -0.00973549298942089, 0.016319824382662773, -0.010734790936112404, 0.005787345580756664, 0.0019173647742718458, -0.0008268731762655079, -0.04063403233885765, 0.005539054051041603, -0.013744945637881756, -0.021236615255475044, -0.014652283862233162, -0.003138899337500334, -0.022757019847631454, 0.02399541437625885, 0.004015584010630846, -0.007779811043292284, -0.008061821572482586, 0.005750561598688364, 0.024019936099648476, -0.019458724185824394, 0.026656121015548706, 0.0043558357283473015, -0.00514975655823946, -0.01425992138683796, -0.0015066104242578149, -0.008386746980249882, 0.0028047782834619284, -0.023051291704177856, 0.01336484495550394, 0.011801525950431824, 0.008840415626764297, 0.0100481566041708, -0.015461531467735767, -0.003187944646924734, -0.00020978361135348678, 0.02567521668970585, 0.028127480298280716, 0.012488160282373428, -0.0057474966160953045, 0.030604269355535507, 0.0011793862795457244, -0.010716398246586323, -0.014076001942157745, 0.015571883879601955, -0.02373792603611946, 0.014934294857084751, -0.003718246938660741, 0.007945339195430279, 0.002921260893344879, 0.004582670517265797, -0.026141146197915077, -0.0003446582122705877, -0.002383295213803649, -0.02119983173906803, -0.026165669783949852, -0.014492887072265148, 0.007362925913184881, -0.020280232653021812, 0.002484451048076153, -0.0064678494818508625, 0.004030910786241293, -0.0102688604965806, -0.019090883433818817, -0.005505335051566362, 0.012163234874606133, 0.0037151817232370377, 0.010557001456618309, -0.0013816981809213758, 0.010967755690217018, 0.013426151126623154, -0.020120834931731224, 0.0022254306823015213, 0.01810997724533081, -0.0019204301061108708, -9.943168697645888e-05, -0.020280232653021812, -0.016393393278121948, 0.0036967897322028875, 0.0035557844676077366, 0.0029135975055396557, -0.003103648079559207, -0.011200721375644207, -0.002170254709199071, 0.004361966624855995, 0.011458208784461021, 0.005949808284640312, 0.011433686129748821, -0.0334734171628952, -0.011016800999641418, -0.014149569906294346, -0.04092830419540405, -0.015743542462587357, -0.010863534174859524, 0.012144843116402626, -0.01181991770863533, 0.003871513530611992, 0.026852302253246307, 0.000289673829684034, -0.015449270606040955, 0.0065598092041909695, -0.017472388222813606, -0.012874391861259937, 0.006565940100699663, 0.00665789982303977, 0.022695714607834816, 0.0007835753494873643, 0.03960408270359039, 0.0021120132878422737, 0.014983340166509151, 0.008349962532520294, -0.018097717314958572, -0.0013916604220867157, -0.0027542002499103546, 0.010789966210722923, -0.005756692495197058, -0.026263760402798653, 0.014137308113276958, -0.0026423155795782804, 0.0006563640781678259, -0.011777003295719624, 0.02155541069805622, -0.006302321329712868, -0.002496712375432253, -0.019164452329277992, 0.0035619151312857866, 0.0012008436024188995, 0.0017089222092181444, 0.0204396303743124, -0.011531776748597622, -0.007982122711837292, 0.001481321407482028, -0.00665789982303977, 0.00869941059499979, 0.0025656824000179768, -0.0045152329839766026, -0.010906449519097805, 0.017619524151086807, 0.012862130999565125, 0.011151676066219807, 0.0046899570152163506, -0.020942343398928642, 0.024326469749212265, -0.007552976720035076, 0.00510071124881506, 0.0074548861011862755, 0.004827897064387798, 0.0023664359468966722, -0.03384125977754593, -0.017766660079360008, -0.03126638010144234, -0.0002272176934638992, 0.035140957683324814, 0.007755288388580084, 0.008503229357302189, 0.009453481994569302, -0.015167259611189365, 0.0050731236115098, -0.009980718605220318, -0.0059712654910981655, -0.023578528314828873, 0.010103331878781319, -0.014321228489279747, 0.020182142034173012, -0.0020568373147398233, -0.019765257835388184, 0.01744786649942398, -0.005030208732932806, -0.015424747951328754, 0.03408648446202278, 0.0047972435131669044, -0.0200963132083416, 0.008754586800932884, -0.0022254306823015213, -0.021236615255475044, -0.0293781366199255, -0.02090555988252163, -0.0032369899563491344, -0.009594487026333809, -0.04033976048231125, -0.018759828060865402, -0.003945081494748592, -0.008730064146220684, -0.013830775395035744, -0.002182516036555171, -0.0004617155354935676, 0.02611662447452545, -0.010256598703563213, 0.006829558406025171, -0.009441221132874489, 0.021077219396829605, -0.026876825839281082, -0.008754586800932884, -0.0008812827873043716, 0.0042792027816176414, 0.009827452711760998, -0.012034490704536438, 0.0202924944460392, -0.010465041734278202, -0.013438412919640541, 0.01607459783554077, 0.011660520918667316, -0.006314582657068968, 0.0184165108948946, -0.011016800999641418, 0.002893672790378332, 0.011550168506801128, -0.005790411029011011, 0.016160426661372185, 0.013536503538489342, -0.004962771665304899, -0.01872304454445839, -0.005903828423470259, -0.004778851754963398, -0.01438253466039896, 0.0021273400634527206, 0.018293898552656174, -0.014100524596869946, -0.0008628907962702215, -0.006602724082767963, -0.009576095268130302, 0.023872800171375275, 0.007080915383994579, -0.03541070967912674, -0.016099121421575546, -0.006167446728795767, -0.034675028175115585, 0.012665949761867523, -0.018845656886696815, -0.008055690675973892, -0.015351179987192154, 0.010213684290647507, 0.01476263627409935, 0.021040434017777443, 0.02084425278007984, -0.03043260984122753, -0.00722805131226778, 0.009606748819351196, 0.017055504024028778, 0.00874845590442419, -0.0018131434917449951, 0.03190397098660469, 0.022855110466480255, -0.009104033932089806, -0.004634781274944544, 0.01795058138668537, -0.013708162121474743, 0.020513197407126427, 0.0013533438323065639, -0.016773493960499763, 0.009778407402336597, 0.012972482480108738, -0.007982122711837292, 0.011384640820324421, -0.013585548847913742, 0.010961624793708324, -0.013499719090759754, 0.007148352917283773, 0.009753884747624397, 0.009036596864461899, 0.000562105153221637, -0.0083683542907238, -0.0023756318259984255, -0.00659659318625927, 0.003935885615646839, 0.02815200388431549, 0.016503743827342987, -0.0367349311709404, -0.0035312618128955364, 0.006008049473166466, -0.028348185122013092, 0.008276394568383694, -0.008405138738453388, -0.02232787385582924, 0.00034312554635107517, 0.010759313590824604, -0.017791183665394783, -0.01336484495550394, 0.005480812396854162, -0.015069168992340565, 0.00986423622816801, -0.011985445395112038, 0.0008314711158163846, 0.007381318137049675, 0.01582937128841877, -0.008877200074493885, -0.021040434017777443, -0.012261325493454933, 0.013426151126623154, 0.009680316783487797, -0.002527365693822503, 0.005287696607410908, 0.006486241240054369, -0.007969861850142479, -0.006486241240054369, 0.0006751392502337694, -0.001747238915413618, -0.02375018782913685, 0.0027174162678420544, -0.004027845337986946, 0.01638113148510456, -0.01215097401291132, 0.0011426022974774241, 0.016001030802726746, 0.013254493474960327, -0.0004188008897472173, -0.019409678876399994, -0.003788749687373638, 0.00659659318625927, -0.010771574452519417, -0.00979066826403141, 0.01744786649942398, 0.005814933683723211, -0.007785941939800978, -0.021371491253376007, -0.019397417083382607, -0.013180925510823727, -0.01329127699136734, -0.023762449622154236, -0.01445610262453556, 0.009858106262981892, 0.02744084596633911, -0.013070573098957539, -0.011317203752696514, -0.002928924048319459, -0.011433686129748821, 0.016859322786331177, 0.013659116812050343, 0.020255709066987038, -0.00015614031872246414, 0.008589058183133602, 0.012800823897123337, 0.02313712239265442, 0.01116393692791462, 0.022646669298410416, -0.002715883543714881, -0.029500748962163925, 0.020317016169428825, 0.01810997724533081, 0.004463122691959143, 0.014296705834567547, -0.029598839581012726, 0.012665949761867523, 0.004475384019315243, 0.024951796978712082, 0.005741365719586611, 0.004398750606924295, 0.008356093429028988, -0.006473979912698269, -0.022180737927556038, 0.0061459895223379135, 0.003923624288290739, -0.008540012873709202, -0.019005054607987404, -0.0016660075634717941, 0.016172688454389572, -0.007945339195430279, -0.02116304822266102, -0.017239423468708992, 0.0016031683189794421, 0.0015579547034576535, -0.01319318637251854, 0.002890607574954629, 0.0012054415419697762, 0.00560649111866951, -0.0038377949967980385, -0.012592381797730923, 0.013548764400184155, -0.009870367124676704, -0.025479035452008247, -0.021702546626329422, 0.013855298049747944, 0.0009165341034531593, -0.009104033932089806, 0.0035741764586418867, -0.02530737593770027, 0.020231187343597412, 0.006066290661692619, 0.0051589529030025005, -0.008913983590900898, 0.019041838124394417, 0.010317905806005001, -0.005002620629966259, 0.015951985493302345, -0.011936400085687637, 0.007375187240540981, 0.008104735985398293, 0.0015058440621942282, 0.0010437453165650368, 0.0049719675444066525, -0.010716398246586323, -0.0023786972742527723, 0.00804342981427908, -0.018600430339574814, -0.006964433006942272, 0.020378323271870613, -0.005848652217537165, 0.0027511350344866514, -0.003991061355918646, -0.00712996069341898, 0.02567521668970585, -0.002840029541403055, -0.021297922357916832, 0.014100524596869946, -0.010698006488382816, -0.00508844992145896, 0.03830438107252121, 0.04183564335107803, -0.005689254961907864, 0.024939537048339844, -0.023455915972590446, 0.01654052920639515, 0.008399007841944695, 0.011065846309065819, -0.007148352917283773, 0.002452265238389373, 0.014603238552808762, -0.01623399555683136, 0.011924139223992825, 0.00559422979131341, 0.008766847662627697, -0.029598839581012726, 0.014529670588672161, -0.027637027204036713, -0.010207553394138813, 0.011642128229141235, -0.002577943727374077, 0.0101462472230196, -0.008331570774316788, 0.006035637576133013, -0.015204044058918953, -0.026459941640496254, -0.01759500242769718, -0.0294762272387743, 0.001578645664267242, -0.01734977588057518, 0.024792401120066643, -0.01679801568388939, -0.004883072804659605, 0.0045029716566205025, 0.012285848148167133, 0.0014590977225452662, -0.011353987269103527, -0.0183184202760458, 0.016650879755616188, -0.009097903966903687, 0.018600430339574814, 0.013610071502625942, 0.014701329171657562, 0.007577499374747276, 0.019716212525963783, 0.015743542462587357, 0.009876498021185398, 0.011605344712734222, -0.007859509438276291, -0.020169880241155624, 0.023921845480799675, 0.007111568935215473, -0.0205377209931612, -0.0024384711869060993, 0.011648259125649929, -0.0033841258846223354, 0.004138197284191847, -0.02454717457294464, -0.002461461117491126, -0.0002076762029901147, -0.015571883879601955, -0.025233808904886246, -0.016859322786331177], "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4": [-0.031736087054014206, -0.009808200411498547, 0.0005036854417994618, 0.03785840421915054, -0.04365586116909981, -0.03323543071746826, -0.02555129863321781, 0.034609828144311905, -0.008308857679367065, 0.013244193978607655, -0.001549320761114359, 0.018217014148831367, -0.007259317673742771, -0.03136125206947327, -0.020690929144620895, 0.011120124720036983, -0.012756907381117344, 0.027962742373347282, 0.014706052839756012, -0.007353026419878006, 0.0313112735748291, -0.0112388227134943, -0.03675888478755951, 0.02275252528488636, -0.010120563209056854, -0.038932934403419495, -0.0034422408789396286, 0.006287868600338697, -0.04722929745912552, 0.01037670113146305, 0.04330601543188095, 0.002917471108958125, 0.005616288166493177, 0.017779706045985222, 0.014893471263349056, -0.0005142277223058045, 0.0007898880867287517, -0.014531129971146584, -0.004179417621344328, -0.01213842909783125, -0.0349096953868866, 0.030311711132526398, -0.0006395633681677282, -0.0006696283235214651, -0.04860369488596916, 0.011932268738746643, 0.036633942276239395, -0.009595793671905994, 0.014631086029112339, 0.0216904915869236, -0.0038857965264469385, -0.019928764551877975, -0.011869796551764011, -0.024339329451322556, -0.009452106431126595, -0.00026004225946962833, 0.00839631911367178, 0.04755415394902229, 0.009958134964108467, -0.05162736773490906, 0.013556556776165962, -0.006306610535830259, -0.013644019141793251, -0.006447173655033112, -0.021940382197499275, -0.0034266228321939707, 0.022515129297971725, -0.002178732305765152, -0.04140684753656387, -0.019816312938928604, 0.02698816917836666, 0.05302675440907478, -0.020003730431199074, 0.02246515266597271, 0.03338536620140076, -0.00040490063838660717, 0.00189604377374053, -0.0078653022646904, 0.008621220476925373, 1.1231648386456072e-05, -0.011457477696239948, 0.013044281862676144, 0.024164406582713127, -0.01775471679866314, 0.054276205599308014, 0.01218840666115284, 0.0013322284212335944, -0.04473039135336876, 0.002205283148214221, -0.011095136404037476, 0.01511837262660265, -0.020665939897298813, -0.0019647637382149696, -0.0037296151276677847, -0.0059755053371191025, 0.007784087676554918, 0.01300679799169302, 0.025938628241419792, 0.04655459150671959, -0.013656512834131718, 0.040757134556770325, 0.03338536620140076, 0.01185105461627245, 0.02388952672481537, -0.0009581737103872001, 0.011688626371324062, -0.00839631911367178, -0.005585051607340574, -0.010620344430208206, 0.026163529604673386, 0.023202328011393547, -0.02036607265472412, 0.02466418780386448, -0.028837358579039574, -0.02101578749716282, -0.020790886133909225, -0.017030034214258194, 0.0191041249781847, -0.0016883224016055465, -0.0364840067923069, 0.021927887573838234, 0.003589051542803645, -0.00941462256014347, 0.022152788937091827, 0.008465039543807507, 0.010401690378785133, -0.005228957626968622, -0.020116182044148445, 0.022790009155869484, -0.002022550906985998, 1.8516052477934863e-06, 0.0036171642132103443, 0.02286497689783573, 0.02160302922129631, -0.020116182044148445, -0.0007403004565276206, -0.01511837262660265, 0.06647086143493652, -0.037983350455760956, 0.04020737484097481, -0.015443230047821999, -0.03695879876613617, -0.010876482352614403, -0.012656951323151588, 0.02573871612548828, 0.0006325352005660534, -0.017154980450868607, 0.03495967388153076, 0.0024598592426627874, 0.014543624594807625, -0.0507027730345726, -0.01911661960184574, 0.009127249009907246, 0.03813328221440315, 0.012219643220305443, 0.006540882401168346, -0.005266441497951746, 0.03121131844818592, -0.009926898404955864, 0.01909163035452366, 0.010963943786919117, -0.06422184407711029, 0.013768963515758514, 0.005244575906544924, 0.05712495744228363, 0.02458922006189823, 0.007028168998658657, 0.030661558732390404, 0.02177795208990574, 0.014031348749995232, 0.042856212705373764, -0.01976633444428444, -0.008633715100586414, -0.02026611566543579, 0.02371460385620594, -0.0397825613617897, 0.02821263298392296, 0.019816312938928604, 0.018854234367609024, -0.005516331642866135, 0.00041192880598828197, -0.0009316228679381311, -0.035259541124105453, -0.03625910356640816, -0.019566422328352928, 0.037308644503355026, -0.007746604271233082, 0.025463836267590523, 0.0016352206002920866, -0.01643029786646366, -0.006053596269339323, -0.004735424183309078, 0.003810829482972622, -0.017404869198799133, -0.030886460095643997, -0.013281677849590778, 0.03743359073996544, 0.02159053459763527, 0.0017679749289527535, 0.016642704606056213, -0.019029157236218452, -0.04365586116909981, -0.020878346636891365, 0.012931831181049347, -0.0376335009932518, 0.01281938049942255, -0.028962302953004837, -0.019716355949640274, -0.01919158734381199, -0.009252194315195084, 0.020978303626179695, -0.018391937017440796, -0.010601602494716644, 0.012538253329694271, 0.01959141157567501, -0.003236081451177597, -0.04038229584693909, 0.0067595369182527065, 0.011588669382035732, -0.02303989976644516, -0.02776283025741577, 0.006103574298322201, -0.04355590417981148, -0.029637007042765617, -0.08401317149400711, -0.011013921350240707, -0.02275252528488636, 0.0019881909247487783, -0.07906533777713776, -0.01233209390193224, 0.03560939058661461, 0.0004642496060114354, 0.012157170102000237, -0.010270497761666775, -0.0019616400822997093, 0.05657519772648811, -0.011020168662071228, 0.025488825514912605, 0.011551186442375183, -0.014768525958061218, 0.01104515790939331, 0.01640530861914158, 0.00468232249841094, 0.020615963265299797, 0.01957891695201397, -0.04652960225939751, 0.01872928999364376, 0.015380757860839367, 0.019916269928216934, -0.00988316722214222, -0.017679749056696892, 0.019179092720150948, 0.01430622860789299, -0.02706313692033291, -0.02946208417415619, 0.017142485827207565, -0.017742222175002098, 0.006009865552186966, -0.0029034146573394537, 0.010101821273565292, -0.007409251760691404, -5.720148692489602e-05, 0.030586590990424156, 0.01755480468273163, 0.04318106919527054, -0.012944325804710388, 0.0420815534889698, -0.05192723497748375, -0.01776721142232418, 0.02621350809931755, -0.04470540210604668, 0.0050540342926979065, -0.0025395117700099945, 0.02390202134847641, -0.009733233600854874, 0.0016867605736479163, 0.007403004448860884, 0.007284306921064854, -0.0010768716456368566, -0.03396011143922806, 0.015093383379280567, 0.0022365194745361805, -0.00859623122960329, 0.0416567400097847, 0.014606096781790257, -0.008315104991197586, -0.01017678901553154, -0.029212193563580513, -0.039707593619823456, 0.006484657060354948, -0.004426184576004744, 0.008796144276857376, 0.008083956316113472, -0.0032735648564994335, 0.03765849024057388, -0.017717232927680016, -0.03243578225374222, -0.0032392051070928574, -0.036808863282203674, 0.001037826295942068, 0.002561377128586173, 0.006615849677473307, 0.015243317931890488, -0.027113113552331924, 0.047079361975193024, -0.02591364085674286, 0.06667077541351318, 0.024789132177829742, -0.014918460510671139, 0.0035765571519732475, 0.0210407767444849, -0.03483472764492035, -0.03660895302891731, -0.022052831947803497, 0.011157608591020107, 0.01498093269765377, 0.011451230384409428, -0.017529815435409546, -0.01643029786646366, -0.011594916693866253, 0.020990798249840736, -0.01469355821609497, -0.039207812398672104, -0.01401885412633419, -0.007265564985573292, -0.04140684753656387, 0.03273564949631691, -0.020178653299808502, -0.0014642018359154463, -0.01104515790939331, -0.045180194079875946, -0.0007945735706016421, -0.019816312938928604, 0.004013865254819393, -0.0057974583469331264, -0.016280362382531166, -0.00903354026377201, -0.04590487480163574, -0.005819323938339949, -0.00834634155035019, -0.009252194315195084, -0.01708001270890236, 0.002144372556358576, 0.013394128531217575, 0.024139417335391045, 0.0017086259322240949, -0.004838503897190094, 0.002172485226765275, -0.00016623572446405888, -0.004850998520851135, 0.0007457667961716652, -0.035384487360715866, 0.006422184873372316, 0.0003133392019663006, 0.04692942649126053, 0.0173798818141222, -0.014418679289519787, -0.006119192577898502, 0.010382948443293571, -0.012275868095457554, 0.027288038283586502, -0.022327711805701256, 0.011776087805628777, -0.018666816875338554, -0.010757784359157085, 0.035759322345256805, -0.004994685295969248, -0.009289677254855633, 0.006397195626050234, 0.026463398709893227, 0.005631905980408192, 0.010401690378785133, -0.007959011010825634, -0.008427555672824383, -0.03975757211446762, -0.030836481600999832, 0.012075955979526043, -0.01003934908658266, -0.02437681332230568, 0.027962742373347282, -0.014818503521382809, 0.015493208542466164, 0.02362714149057865, 0.002072528935968876, 0.026263486593961716, 0.05397633835673332, 0.014743536710739136, -0.027687862515449524, -0.0008449421147815883, 0.02177795208990574, -0.03675888478755951, -0.020990798249840736, -0.026338454335927963, -0.006690816953778267, -0.0399324931204319, 0.024701671674847603, 0.008471285924315453, -0.041631750762462616, 0.008440050296485424, -0.01118259783834219, -0.007159361615777016, -0.015355768613517284, 0.016180407255887985, 0.015443230047821999, 0.041231926530599594, -0.03216090053319931, 0.013094259425997734, 0.02005370892584324, 0.001861683907918632, -0.026088563725352287, 0.002775345928966999, -0.011488713324069977, 0.02641342021524906, -0.00920846313238144, 0.009008551016449928, -0.0136815020814538, 0.011688626371324062, 0.006665827706456184, -0.03388514369726181, -0.034334946423769, 0.05847436562180519, 0.0604734905064106, 0.008371329866349697, 0.03213591128587723, -0.0410819910466671, 0.03803332522511482, 0.018504388630390167, 0.03945770114660263, -0.016817627474665642, -0.027238059788942337, 0.0014243755722418427, 0.004241890273988247, 0.02851250022649765, -0.005991123616695404, -0.0022474522702395916, -0.020466027781367302, 0.021078260615468025, -0.015180844813585281, 0.012107192538678646, -0.02082837000489235, -0.006809514947235584, -0.004591736942529678, 0.023777076974511147, -0.004588613286614418, -0.016667693853378296, 0.0035859281197190285, 0.005075899884104729, -0.020778391510248184, -0.011163855902850628, 0.007359273731708527, 0.008490027859807014, 0.033260419964790344, -0.0295870304107666, 0.030211756005883217, 0.0029471456073224545, 0.019566422328352928, 0.0026550861075520515, -0.015630647540092468, 0.015480713918805122, -0.033160462975502014, -0.014181283302605152, 0.01700504496693611, -0.0157306045293808, -0.009102259762585163, -0.007590422406792641, -0.0432310476899147, 0.015580669976770878, 0.02813766524195671, 0.011819818057119846, 0.01248202845454216, 0.010295487008988857, 0.00921471044421196, -0.020516006276011467, 0.03733363375067711, 0.024751650169491768, -0.0318860225379467, -0.014855987392365932, -0.00390141480602324, 0.004760412964969873, 0.0018569984240457416, 0.008452544920146465, -0.010814009234309196, -0.03196099027991295, 0.016942571848630905, -0.027387993410229683, -0.0020334834698587656, -0.015243317931890488, -0.031736087054014206, 0.00275035691447556, -0.013868920505046844, 0.022290227934718132, 0.005238328594714403, 0.039407722651958466, 0.022877471521496773, 0.001817953074350953, -0.005463229957967997, 0.005175855942070484, -0.0069594490341842175, -0.02851250022649765, -0.020953314378857613, 0.027238059788942337, 0.014343712478876114, -0.019716355949640274, 0.03411004692316055, -0.004726053215563297, 0.019716355949640274, -0.07536695897579193, -0.03843315318226814, 0.014581107534468174, 0.014218767173588276, -0.03206094354391098, 0.0046229735016822815, -0.020990798249840736, -0.013144237920641899, -0.013069271109998226, 0.015180844813585281, -0.009258441627025604, -0.007353026419878006, 0.03540947660803795, -0.028062697499990463, 0.0011471533216536045, -0.019541433081030846, -0.004135686904191971, 0.012119687162339687, -0.026663310825824738, -0.015955505892634392, -0.03063656948506832, -0.04158177226781845, 0.017892155796289444, -0.013544062152504921, -0.014568613842129707, 0.0011315351584926248, 0.033560287207365036, -0.002606669906526804, 0.009483342990279198, 0.013394128531217575, 0.0023161722347140312, -0.009820695035159588, 0.01920408196747303, 0.02658834494650364, -0.003670266130939126, 0.0012510140659287572, 0.0139688765630126, -0.018304476514458656, -0.010670321993529797, 0.03673389554023743, -0.012575737200677395, 0.030386678874492645, -0.0035515681374818087, 0.004894729238003492, -0.02110324800014496, 0.016442792490124702, -0.03523455560207367, 0.00446679163724184, 0.024526748806238174, -0.050627805292606354, 0.021003292873501778, -0.01511837262660265, -0.002986190840601921, -0.03543446585536003, -0.015918022021651268, 0.006996932905167341, 0.010233013890683651, 0.022427668794989586, -0.030211756005883217, -0.011963505297899246, -0.013918898068368435, -0.008090203627943993, 0.023951999843120575, 0.004479286260902882, 0.02476414479315281, 0.02813766524195671, 0.0693695917725563, -0.008440050296485424, 0.0078090764582157135, 0.010195530951023102, 0.005538197234272957, -0.03321044147014618, -0.02986190840601921, -0.011913527734577656, 0.014118810184299946, 0.00035062755341641605, 0.01708001270890236, -0.0064659155905246735, 0.029886897653341293, 0.019354015588760376, -0.030586590990424156, -0.017429858446121216, -0.007153114303946495, 0.0006173074943944812, 0.02706313692033291, 0.04245638847351074, 0.024226879701018333, -0.03695879876613617, -0.010501646436750889, 0.011557433754205704, 0.017417363822460175, 0.006790773011744022, 0.024339329451322556, 0.01085149310529232, 0.0295870304107666, 0.012425802648067474, 0.002606669906526804, 0.0016367824282497168, -0.05892416834831238, 0.04193161800503731, 0.000695398251991719, 0.02573871612548828, -0.005541320890188217, 0.017142485827207565, -0.007559186313301325, 0.038832977414131165, 0.011876043863594532, -0.009620781987905502, 0.027188081294298172, 0.004754165653139353, 0.008871111087501049, 0.049103472381830215, 0.003217339515686035, -0.006903223693370819, 0.00855250097811222, -0.020815875381231308, 0.047104351222515106, -0.03465980663895607, 0.011057652533054352, 0.023302285000681877, -0.006753289606422186, 0.013419117778539658, -0.03248576074838638, 0.006000494584441185, 0.006665827706456184, 0.014368700794875622, -0.010395443066954613, -0.022115305066108704, 0.06312233209609985, 0.011975999921560287, 0.006044225301593542, 0.028837358579039574, -0.06532136350870132, -0.02651337720453739, -0.026938190683722496, -0.002111574402078986, 0.0056693898513913155, 0.03715870901942253, -0.009945640340447426, 0.010239261202514172, -0.018554365262389183, 0.026763267815113068, 0.018304476514458656, 0.02811267599463463, -0.03790838271379471, 0.019229071214795113, 0.01133253239095211, 0.032585714012384415, 0.005288306623697281, -0.011532444506883621, -0.023652130737900734, 0.00820890162140131, 0.026813246309757233, -0.004757289309054613, 0.02678825706243515, -0.014181283302605152, 0.00772786233574152, 0.014581107534468174, -0.011801077052950859, 0.035659369081258774, -0.00903354026377201, 5.3394560382002965e-05, -0.01251951139420271, 0.043630871921777725, 0.018954191356897354, 0.009258441627025604, 0.005694378633052111, 0.007009427063167095, 0.009495837613940239, -0.0014157856348901987, -0.0010503208031877875, -0.005094641819596291, -0.0320359542965889, -0.013356644660234451, 0.003801458515226841, -0.026563355699181557, -0.029412105679512024, 0.006181665230542421, -0.0060910796746611595, -0.005569433327764273, 0.016967561095952988, 0.029137227684259415, -0.001090147066861391, 0.0071281250566244125, 0.0037514804862439632, -0.013743975199759007, -0.017317408695816994, 0.002986190840601921, 0.013456600718200207, 0.0040169889107346535, -0.011151361279189587, 0.015105878002941608, 0.025176463648676872, -0.02275252528488636, -0.016917584463953972, 0.009670760482549667, -0.015630647540092468, -0.0005665484932251275, -0.0013806447386741638, 0.016767648980021477, -0.02255261316895485, -0.02045353315770626, 0.01469355821609497, -0.01383143663406372, 0.018279487267136574, 0.01979132369160652, 0.013406623154878616, 0.023439723998308182, 0.031061382964253426, -0.00950208492577076, -0.021665502339601517, 0.008265126496553421, 0.0014727918896824121, 0.00275035691447556, 0.0002778079069685191, 0.028012719005346298, -0.00042051877244375646, -0.05297677591443062, -0.04240640997886658, 0.038258228451013565, 0.02698816917836666, 0.0227650199085474, -0.02908724918961525, 0.00022177778009790927, 0.021465590223670006, 0.006447173655033112, 0.025276418775320053, 0.0067595369182527065, 0.020003730431199074, 0.014993427321314812, 0.011082641780376434, -0.010682816617190838, 0.04400571063160896, -0.028012719005346298, 0.0012884977040812373, -0.013144237920641899, 0.02823762036859989, -0.008608725853264332, 0.0023271047975867987, 0.026813246309757233, 0.013868920505046844, -0.003967010881751776, 0.02101578749716282, 0.03348531946539879, 0.0478290319442749, -0.01786716654896736, 0.028462521731853485, -0.006778278388082981, -0.0006563529022969306, -0.020890841260552406, 0.017779706045985222, 0.018404431641101837, 0.00467919884249568, 0.03958264738321304, 0.007546691689640284, 0.017342397943139076, -0.0012892785016447306, -0.016442792490124702, -0.029037270694971085, 0.009133496321737766, -0.013619029894471169, 0.015043404884636402, 0.022677559405565262, 0.016455287113785744, 0.006290992256253958, 0.01729241944849491, 0.025663750246167183, 0.03371022269129753, -0.01017054170370102, -0.0007957448833622038, 0.04183166101574898, -0.005856807343661785, -0.050627805292606354, -0.0029893144965171814, -0.015018416568636894, -0.0031501816119998693, 0.02763788402080536, -0.011057652533054352, 0.00787779688835144, 0.0029736964497715235, 0.009477095678448677, 0.020590974017977715, -0.03063656948506832, -0.02688821218907833, 0.0020694052800536156, -0.012831875123083591, 4.5365854020928964e-05, -0.023602154105901718, 0.016155418008565903, 0.019229071214795113, -0.00664708623662591, -0.04990312457084656, 0.03053661249577999, 0.02131565473973751, -0.017154980450868607, -0.016755154356360435, 0.04178168252110481, 0.008196406997740269, 0.017117496579885483, 0.00048142956802621484, 0.04015739634633064, 0.013094259425997734, -0.009577051736414433, 0.020503511652350426, -0.0033454084768891335, -0.014318723231554031, -0.029012281447649002, 0.022889966145157814, -0.03271066024899483, -0.02256510779261589, -0.004166923463344574, 0.007046910934150219, 0.01218840666115284, -0.008902347646653652, -0.02091583050787449, 0.005266441497951746, 0.012319599278271198, 0.017342397943139076, -0.025988606736063957, -0.018217014148831367, 0.024789132177829742, -0.02476414479315281, 0.027113113552331924, 0.019316531717777252, 0.0036671424750238657, -0.022627580910921097, -0.0016867605736479163, 0.01977882906794548, -0.005769345909357071, 0.004588613286614418, 0.0010175226489081979, -0.009958134964108467, -0.06782026588916779, 0.008365082554519176, -0.03378519043326378, -0.034984663128852844, 0.016167912632226944, -0.008627467788755894, 0.01415629405528307, -0.018641827628016472, 0.026463398709893227, 0.005572556983679533, 0.04722929745912552, 0.006996932905167341, 0.014143799431622028, -0.024551736190915108, 0.02102828212082386, 0.013394128531217575, 0.013094259425997734, 0.009133496321737766, -0.016655199229717255, 0.010451667942106724, 0.02206532657146454, -0.019528938457369804, -0.004135686904191971, -0.012494523078203201, -0.010295487008988857, -0.02898729220032692, -0.00017853501776698977, 0.022302722558379173, -0.021290667355060577, -0.022590097039937973, -0.00040958606405183673, -0.024901583790779114, -0.034709785133600235, 0.003635906148701906, 0.012569489888846874, 0.0001870273845270276, -0.040557220578193665, 0.003957639914005995, -0.016067955642938614, 0.028562478721141815, -0.017417363822460175, -0.0077965823002159595, -0.003073652507737279, 0.03061158023774624, 0.013981371186673641, -0.0005782621446996927, -0.06797020137310028, 0.01300679799169302, 0.02082837000489235, 0.008808638900518417, 0.006062967237085104, 0.009295924566686153, 0.015218328684568405, 0.009477095678448677, -0.01755480468273163, -0.00650339899584651, -0.01604296639561653, -0.012725671753287315, 0.023189833387732506, 0.003632782492786646, 0.014131304807960987, -0.023102372884750366, 0.01726743020117283, -0.0168051328510046, -0.03428497165441513, 0.00873367115855217, -0.018704300746321678, -0.018092067912220955, 0.014618591405451298, 0.02303989976644516, -0.0033485321328043938, 0.02888733707368374, 0.017442353069782257, 0.005747480317950249, -0.005741233006119728, -0.005338284652680159, 0.02976195327937603, 0.0013775210827589035, -0.0015079326694831252, -0.003951392602175474, -0.004026359878480434, -0.0014321847120299935, -0.00691571831703186, -0.012113439850509167, -0.012069708667695522, 0.0053507792763412, -0.005888043902814388, -0.0010167417349293828, -0.01165738981217146, 0.010414185002446175, 0.015968000516295433, 0.0054194992408156395, -0.030386678874492645, 0.007234328426420689, -0.004629220813512802, -0.02236519567668438, 0.01251951139420271, -0.009345903061330318, 0.005678760353475809, -0.022252744063735008, -0.01444366853684187, 0.0006368302274495363, -0.005825571250170469, -0.030261734500527382, 0.008290115743875504, -0.014031348749995232, -0.0035921751987189054, -0.01841692626476288, -0.02928716130554676, 0.029337139800190926, 0.00806521438062191, -0.006815762259066105, -0.005197721533477306, 0.017154980450868607, 0.03598422557115555, -0.001452488242648542, 0.013356644660234451, 0.025863662362098694, 0.008302610367536545, -0.001365026575513184, 0.014918460510671139, -0.016092944890260696, 0.013768963515758514, -0.0207534022629261, -0.002055349061265588, -0.00550071382895112, -0.03158615157008171, 0.011701120063662529, -0.026363443583250046, 0.0157306045293808, -0.013306667096912861, 0.007090641651302576, 0.012350835837423801, -0.049103472381830215, 0.010863987728953362, 0.03111136145889759, 0.008265126496553421, -0.029736964032053947, 0.0027847166638821363, -0.024226879701018333, 0.004432431887835264, -0.013943887315690517, 0.04830382391810417, 0.03216090053319931, -0.00427312683314085, -0.017617277801036835, -0.00724682305008173, 0.028537489473819733, 0.0024864100851118565, -0.018704300746321678, 0.013381633907556534, 0.030486635863780975, 0.0256387609988451, -0.0196788739413023, -0.0004252042272128165, -0.010151799768209457, -0.008621220476925373, -0.004822885617613792, -0.007902785204350948, -0.02908724918961525, 0.006109821610152721, -0.04038229584693909, -0.017829684540629387, -0.02581368386745453, -0.047854021191596985, 0.024939067661762238, 0.017904650419950485, -0.0005868521402589977, -0.012681940570473671, -0.006087956018745899, 0.03321044147014618, 0.030661558732390404, -0.035259541124105453, -0.005288306623697281, -8.602186198913842e-07, -0.0016773897223174572, 0.015530691482126713, 0.01137626264244318, 0.0006235547480173409, -0.028562478721141815, -0.035559412091970444, 0.01641780324280262, -0.002872178331017494, -0.002633220748975873, 0.014343712478876114, -0.027113113552331924, -0.0031033270061016083, 0.012719424441456795, -0.00691571831703186, -0.020178653299808502, -0.0012689749710261822, 0.017742222175002098, -0.02286497689783573, -0.021478084847331047, -0.00014124668086878955, -0.02696317993104458, 0.00382957118563354, -0.015205834060907364, 0.0032985538709908724, -0.05100264027714729, -0.002277126768603921, -0.034984663128852844, 0.0313112735748291, 0.0023427230771631002, -0.003270441200584173, -0.004866616800427437, 0.007602917030453682, -0.002242766786366701, -0.0016289734048768878, -0.026188518851995468, 0.0012244632234796882, 0.0018148294184356928, -0.0008761783828958869, 0.0059755053371191025, 0.008233890868723392, -0.019516443833708763, -0.007409251760691404, 0.012088450603187084, 0.010070585645735264, -0.009046033956110477, 0.001905414741486311, 0.012600726447999477, 0.002878425642848015, 0.020690929144620895, 0.028737401589751244, -0.026263486593961716, 0.012257127091288567, -0.032210879027843475, -0.0034172518644481897, 0.007371768355369568, 0.019828807562589645, -0.00970199704170227, 0.011582422070205212, 0.010595355182886124, 0.008427555672824383, 0.010114315897226334, -0.013406623154878616, 0.011076394468545914, 0.0035640625283122063, 0.016967561095952988, 0.008914842270314693, 0.014531129971146584, -0.026238497346639633, 0.014756031334400177, -0.009670760482549667, 0.003929527476429939, -0.010045596398413181, -0.044105663895606995, -0.0009511455427855253, 0.03505963087081909, 0.010239261202514172, 0.033635254949331284, -0.021827930584549904, 0.02150307409465313, 0.006828256417065859, 0.012494523078203201, 0.002598860766738653, -0.011551186442375183, -0.006934460252523422, 0.02821263298392296, 0.016355330124497414, 0.0014048528391867876, -0.0070843943394720554, 0.002776907756924629, 0.0019616400822997093, 0.011819818057119846, 0.005716244224458933, 0.0033172958064824343, -0.011626153253018856, -0.005029045511037111, -0.01564314216375351, 0.029686985537409782, 0.03958264738321304, -0.008452544920146465, -0.010689063929021358, 0.005153990816324949, 0.00650339899584651, -0.014281239360570908, -0.02170298621058464, 0.017042528837919235, 0.00461047887802124, 0.027113113552331924, -0.01415629405528307, -0.04390575364232063, -0.0210407767444849, -0.005510084331035614, -0.010064338333904743, 0.03006182238459587, 0.005160237662494183, -0.00018546557112131268, 0.006722053047269583, 0.0050446633249521255, 0.025001540780067444, -0.009970628656446934, 0.008858616463840008, -0.0017586040776222944, -0.02476414479315281, -0.006250385195016861, 0.01785467378795147, 0.0022380813024938107, -0.00014720109174959362, 0.019803818315267563, 0.004885358270257711, -0.010476657189428806, -0.0019460219191387296, 0.01698005571961403, 0.0022365194745361805, -0.0001724829780869186, -0.03198597952723503, -0.022602591663599014, -0.0013579984661191702, -0.020690929144620895, 0.029736964032053947, -0.0032454521860927343, 0.01560565922409296, -0.00872742384672165, -0.028337577357888222, -0.01987878605723381, 0.0021865414455533028, -0.02072841301560402, 0.004829132929444313, -0.008602478541433811, -0.03550943359732628, -0.03870803117752075, 0.006384701002389193, -0.012019731104373932, -0.022690054029226303, 0.008371329866349697, 0.025788694620132446, 0.010695311240851879, 0.002480162773281336, -0.012931831181049347, 0.011644895188510418, 0.02044103853404522, 0.007677884306758642, 0.01036420650780201, -0.02888733707368374, 0.020491017028689384, -0.017792200669646263, -0.01660522073507309, -0.002969010965898633, -0.0053507792763412, 0.021827930584549904, 0.002427061088383198, -0.017792200669646263, -0.018304476514458656, 0.006281621288508177, -0.004597984254360199, -0.01200098916888237, -0.003910785540938377, 0.0031064506620168686, -0.0016477152239531279, -0.023339768871665, -0.013256688602268696, -0.00034516118466854095, -0.015005921944975853, 0.003376644803211093, 0.016055461019277573, -0.0068407510407269, 0.013843931257724762, 0.015530691482126713, -0.0020272363908588886, 0.008083956316113472, -0.0116698844358325, -0.012894347310066223, -0.014731042087078094, -0.006031730677932501, -0.015018416568636894, 0.008227643556892872, -0.006184788886457682, 0.0025551298167556524, -0.006347217597067356, -0.013856425881385803, 0.020953314378857613, -0.03783341497182846, -0.04128190129995346, -0.0214031171053648, 0.035859279334545135, 0.01132628507912159, -0.02456423081457615, -0.011170103214681149, 0.007221834268420935, 0.0497032105922699, 0.010464162565767765, 0.0191041249781847, 0.003945145756006241, -0.010432926006615162, 0.0014431173913180828, 0.007665389683097601, -0.0009464601171202958, 0.0013954819878563285, -0.005613164510577917, -0.012581984512507915, -0.0018648075638338923, 0.0032548231538385153, 0.008771155029535294, 0.023664625361561775, 0.006490904372185469, 0.004226272460073233, -0.014893471263349056, 0.0034266228321939707, 0.009314666502177715, -0.02189040370285511, -0.01430622860789299, -0.006266003008931875, -0.01583055965602398, 0.003648400539532304, 0.027587905526161194, -0.014593602158129215, -0.0009284992120228708, -0.0039545162580907345, 0.014568613842129707, -0.016767648980021477, 0.016005484387278557, -0.023339768871665, 0.0015399499097838998, -0.016755154356360435, 0.004957201890647411, -0.019129114225506783, 0.039007898420095444, 0.001178389647975564, 0.013219204731285572, -0.02638843096792698, -0.0006977409939281642, -0.010789019986987114, -0.016917584463953972, -0.03560939058661461, -0.015868043527007103, 0.018079575151205063, -0.007815323770046234, -0.004404319450259209, -0.0029393364675343037, -0.006134810857474804, -0.013693996705114841, -0.02513897977769375, 0.011751098558306694, 0.004182541277259588, 0.020715918391942978, 0.0012478904100134969, -0.024414297193288803, -0.006415937561541796, -0.007602917030453682, 0.0237021092325449, 0.021390622481703758, 0.03715870901942253, -0.03658396378159523, -0.017417363822460175, -0.024239374324679375, 0.021528063341975212, 0.010495399124920368, -0.0234147347509861, -0.013031787239015102, 0.004304362926632166, 0.00308302347548306, 0.016667693853378296, -0.018092067912220955, -0.03291057422757149, -0.0018726165872067213, -0.015480713918805122, 0.002940898295491934, 0.01851688325405121, 0.01832946389913559, -0.0047479188069701195, 0.033635254949331284, -0.024114428088068962, 0.009820695035159588, 0.011738603934645653, 0.0022115304600447416, -0.001850751112215221, 0.04058220982551575, 0.020378567278385162, -0.0170925073325634, 0.004988437984138727, 0.007009427063167095, -0.017629770562052727, 0.03570934757590294, 0.0019350892398506403, -0.007221834268420935, 0.004769783932715654, -0.00805896706879139, -0.0037952112033963203, -0.00988941453397274, 0.01295682042837143, -0.0064659155905246735, 0.007240575738251209, 0.00501967454329133, 0.01977882906794548, 0.035259541124105453, -0.009851930662989616, 0.015793075785040855, 0.004410566296428442, -0.003111136145889759, 0.007096888963133097, 0.018841739743947983, 0.011738603934645653, -0.025988606736063957, -0.011426241137087345, 0.00940837524831295, -0.011201339773833752, 0.006522140931338072, 0.016080450266599655, -0.01445616316050291, 0.007265564985573292, -0.0029377746395766735, 2.1810506041219924e-06, 0.015343273989856243, -0.0011120125418528914, -0.010689063929021358, 8.736404561204836e-05, -0.008989809080958366, 0.007140619680285454, -0.019354015588760376, -0.0008347902912646532, 0.005344531964510679, -0.012119687162339687, 0.0016930077690631151, -0.0013314476236701012, -0.017992112785577774, -0.01815454103052616, -0.01329417247325182, 0.0008199530420824885, 0.008015235885977745, -0.004416813608258963, -0.029062259942293167, -0.012719424441456795, 0.023364758118987083, -0.011557433754205704, 0.03091144934296608, -0.015693120658397675, -0.00765289505943656, 0.006384701002389193, 0.016830122098326683, -0.021540557965636253, 0.0428062342107296, -0.0022287105675786734, -0.013219204731285572, 0.004754165653139353, 0.01949145458638668, 0.001842942088842392, 0.012182159349322319, 0.020778391510248184, -0.01603047177195549, 0.0324607715010643, 0.018404431641101837, 0.009533320553600788, 0.009102259762585163, 0.005553815513849258, 0.0250640120357275, 1.7607027984922752e-05, -0.0059661343693733215, -0.012906841933727264, 0.010282992385327816, -0.010589107871055603, 0.03053661249577999, 0.038458142429590225, -0.017055023461580276, 0.0038483128882944584, -0.008477533236145973, 0.00308302347548306, 0.005869301967322826, -0.018854234367609024, 0.021540557965636253, -0.023552175611257553, -0.010108068585395813, 0.002214654115960002, 0.0078653022646904, -0.025588782504200935, 0.0029190329369157553, 0.00026746088406071067, -0.00013080202916171402, 0.011419993825256824, 0.019816312938928604, 0.005388262681663036, -0.005394509993493557, 0.01900416985154152, -0.011401251889765263, 0.0003998247266281396, 0.002516084583476186, 0.005456982646137476, 0.003695255145430565, 0.024939067661762238, -0.07241825014352798, -0.014431173913180828, 0.005038416478782892, 0.013644019141793251, 0.00029967332375235856, 0.0002688274544198066, 0.014893471263349056, -0.01862933300435543, 0.010757784359157085, -0.008002742193639278, -0.015230823308229446, 0.004832256585359573, -0.03368523344397545, 0.0077341096475720406, -0.01003310177475214, 0.01575559377670288, -0.039607636630535126, 0.027412982657551765, -0.007409251760691404, 0.0034797245170921087, -0.001088585238903761, 0.01469355821609497, -0.00010532492160564288, 0.03635906055569649, -0.027213070541620255, 0.003467230126261711, 0.003351655788719654, -0.03138624131679535, -0.024426791816949844, -0.0113825099542737, 0.01814204640686512, -0.02362714149057865, 0.025588782504200935, -0.027587905526161194, 0.00036409820313565433, 0.012844369746744633, -0.014868482016026974, 0.004897852893918753, -0.01929154247045517, -0.0022177777718752623, 0.007546691689640284, -0.018704300746321678, -0.01022676657885313, 0.01661771535873413, -0.013918898068368435, -0.022290227934718132, -5.7835972256725654e-05, -0.005185226909816265, 0.000655962445307523, 0.010133057832717896, 0.014681064523756504, -0.010620344430208206, 0.02698816917836666, -0.020978303626179695, 0.030411668121814728, -0.028062697499990463, -0.01882924512028694, -0.017154980450868607, -0.01186354923993349, 0.007421746384352446, -0.0014993427321314812, -0.02401447296142578, -0.01969136856496334, -0.026563355699181557, 0.012357083149254322, -0.0061004506424069405, 0.02015366591513157, 0.027188081294298172, -0.008021483197808266, -0.007159361615777016, 0.037408601492643356, 0.009864425286650658, -0.013619029894471169, 0.009483342990279198, 0.010357959195971489, 0.012538253329694271, -0.02190289832651615, 0.021278172731399536, 0.036059193313121796, -0.010495399124920368, 0.013131743296980858, 0.005188350565731525, 0.009602040983736515, -0.004716682247817516, 0.0295870304107666, -0.027587905526161194, -0.003820200217887759, 0.018566859886050224, -0.016567736864089966, -0.020978303626179695, -0.03216090053319931, -0.02295243740081787, 0.002781593007966876, -0.015105878002941608, 0.010070585645735264, 0.0030096182599663734, 0.01611793413758278, -0.016630209982395172, 0.0028877966105937958, -0.011732356622815132, -0.0015204271767288446, 0.009295924566686153, 0.018092067912220955, 0.0019225947326049209, 0.03401008993387222, -0.0017148732440546155, -0.006715805735439062, 0.03151118755340576, 0.010657827369868755, 0.024051956832408905, -0.0053570265881717205, 0.016880100592970848, -0.0057224915362894535, -0.00989566184580326, -0.010801514610648155, 0.003445364534854889, 0.029811931774020195, 0.003589051542803645, 0.0034703537821769714, -0.01689259521663189, -0.02871241234242916, 0.008483780547976494, 0.015693120658397675, -0.0011799514759331942, 0.011451230384409428, 0.011613658629357815, 0.004585489630699158, -0.00494158361107111, -0.01137001533061266, 0.03293556347489357, 0.001621164265088737, -0.0028877966105937958, -0.014855987392365932, -0.0021068889182060957, 0.011251317337155342, 0.008664951659739017, 0.012500770390033722, 0.009583299048244953, 0.018279487267136574, -0.008771155029535294, 0.0011299734469503164, -0.0027972112875431776, -0.01100142765790224, -0.008777402341365814, -0.0015212080907076597, 0.007096888963133097, 0.000514618179295212, -0.012038473039865494, -0.019441477954387665, -0.00033871870255097747, -0.028337577357888222, 0.020466027781367302, -0.006797020323574543, 0.012906841933727264, 0.010632839053869247, -0.0165177583694458, -0.0014509264146909118, -0.006453420966863632, -0.0026707041542977095, 0.006478410214185715, -0.009870672598481178, 0.014681064523756504, -0.018954191356897354, 0.05977379530668259, -0.0010065899696201086, 0.03291057422757149, -0.0173798818141222, -0.014081327244639397, -0.01564314216375351, -0.007484219036996365, -0.004116945434361696, 0.013219204731285572, -0.007840313017368317, -0.008321352303028107, 0.0061441813595592976, -0.00382957118563354, -0.002933089155703783, -0.019129114225506783, 0.006459668278694153, 0.0170925073325634, -0.01055162400007248, 0.013419117778539658, 0.0078090764582157135, 0.025488825514912605, -0.023477207869291306, -0.006012989208102226, -0.0004935336182825267, -0.016367824748158455, 0.00765289505943656, -0.0023255429696291685, 0.018754279240965843, 0.029137227684259415, 0.03760851174592972, -0.004816638305783272, -0.0075654336251318455, 0.011132619343698025, -0.01090147066861391, 0.009983123280107975, -0.005541320890188217, 0.012944325804710388, -0.0008121439605019987, 0.004563624504953623, -0.005313295871019363, -0.001958516426384449, -0.007134372368454933, 0.013756469823420048, 0.029711974784731865, -0.012100945226848125, 0.00308614713139832, 0.019241563975811005, -0.012394566088914871, 0.004726053215563297, 0.029362129047513008, -0.016292857006192207, -0.022702546790242195, 9.536834841128439e-05, 0.012282115407288074, -0.002958078170195222, -0.012419555336236954, 0.0002688274544198066, -0.006350341252982616, 0.022602591663599014, 0.0004982191021554172, -0.0086899409070611, 0.002170923398807645, -0.02285248227417469, -0.018654322251677513, -0.020041214302182198, -0.006347217597067356, -0.002516084583476186, -0.007984000258147717, -0.005625658668577671, -0.014868482016026974, -0.003058034460991621, 0.018754279240965843, 0.0082588791847229, -0.02938711643218994, 0.002250575926154852, 0.018504388630390167, 0.0026894460897892714, 0.026913201436400414, 0.022327711805701256, 0.02841254509985447, -0.002203721320256591, -0.0022099686320871115, 0.009377139620482922, -0.0036796368658542633, 0.02151556871831417, -0.012225890532135963, -0.003801458515226841, -0.01650526374578476, 0.01920408196747303, -0.03033670037984848, -0.006809514947235584, 0.00758417509496212, 0.003704625880345702, 0.009983123280107975, 0.023502197116613388, 0.008246384561061859, -0.005397633649408817, -0.014593602158129215, 0.029037270694971085, 0.000992533634416759, 0.03790838271379471, 0.012250879779458046, -0.019466467201709747, 0.003535949857905507, 0.017979618161916733, 0.008383824490010738, 0.02084086462855339, 0.006003618240356445, -0.018204519525170326, 0.008702434599399567, -0.006328475661575794, -0.027188081294298172, 0.0025832424871623516, 0.01679263822734356, -0.014056337997317314, 0.015780583024024963, 0.005956763867288828, 0.006928212940692902, 0.0040700905956327915, -0.006622096989303827, 0.0002842503890860826, 0.007409251760691404, -0.0050540342926979065, 0.009039787575602531, 0.007540444377809763, 0.00855250097811222, -0.00936464499682188, -0.004776031244546175, 0.0068220095708966255, -0.010920212604105473, -0.0022755649406462908, -0.016542747616767883, 0.0157306045293808, -0.024351824074983597, -0.02361464872956276, -0.006066090893000364, 0.00022782980522606522, 0.02418939583003521, -0.012619467452168465, -0.003988876473158598, 0.005931774619966745, -0.010282992385327816, 0.020378567278385162, 0.005578804295510054, -0.003723367815837264, 0.006181665230542421, -0.0054288702085614204, -0.021815435960888863, 0.0035297025460749865, 0.00461047887802124, 0.01671767048537731, -0.015630647540092468, 0.01862933300435543, -0.0086899409070611, -0.022340206429362297, 0.010814009234309196, -0.0086899409070611, 0.004213777836412191, -0.03248576074838638, 0.010401690378785133, 0.02072841301560402, -0.001958516426384449, 0.006472162902355194, -0.007153114303946495, -0.0003355950757395476, -0.022877471521496773, 0.035584401339292526, 0.018954191356897354, 0.0084025664255023, -0.0027097496204078197, 0.005069652572274208, -0.0041950359009206295, -0.003710873192176223, -0.011882291175425053, -0.01824200339615345, -0.009951887652277946, 0.0171674732118845, 0.0013947010738775134, -0.003757727798074484, 0.01989128068089485, -0.006797020323574543, 0.0009074147092178464, 0.0036140407901257277, -0.013556556776165962, -0.01383143663406372, -0.0059130326844751835, 0.007309295702725649, -0.01281938049942255, -0.013843931257724762, -0.002879987470805645, -0.013444106094539165, 0.017304914072155952, 0.015955505892634392, -0.013768963515758514, -0.019179092720150948, -0.010945201851427555, 0.006722053047269583, 0.02209031581878662, 0.013731480576097965, -0.013244193978607655, -0.022252744063735008, 0.008658704347908497, 0.010445420630276203, 0.001160428742878139, 0.006147305015474558, -0.021140731871128082, -0.004054472781717777, -0.020678434520959854, -0.01700504496693611, 0.012569489888846874, -0.004644838627427816, -0.02497655153274536, -0.008533759042620659, -0.0020772144198417664, -0.02091583050787449, 0.03435993567109108, -0.022677559405565262, -0.0072530703619122505, 0.004254384897649288, -0.02161552384495735, 0.0013462848728522658, 0.0061441813595592976, -0.005772469565272331, 0.002611355157569051, -0.005335160996764898, -0.001869492931291461, -0.0022349576465785503, 0.03228584676980972, 0.012207148596644402, -0.013594040647149086, 0.006325352005660534, 0.009851930662989616, -0.011320037767291069, 0.01248202845454216, 0.009283429943025112, 0.020765896886587143, 0.0010261127026751637, -0.023927010595798492, 0.020603468641638756, 0.010457915253937244, -0.020953314378857613, -0.015255812555551529, -0.009495837613940239, -0.005069652572274208, 0.007884044200181961, -0.010320475324988365, -0.014318723231554031, -0.004054472781717777, 0.0033204194623976946, -2.7234154913458042e-05, 0.001303334953263402, 0.004213777836412191, -0.02783779613673687, 0.011257564648985863, 0.006019236519932747, -0.005513207986950874, -0.007790334988385439, -0.0023802064824849367, -0.01757979393005371, -0.018766773864626884, -0.007477971725165844, -0.0054101282730698586, -0.03301052749156952, -0.006047348957508802, 0.007234328426420689, 0.010332969948649406, -0.008627467788755894, 0.012638209387660027, 0.01679263822734356, 0.00501342723146081, 0.01986629143357277, 0.0031533052679151297, 0.027787817642092705, 0.007934021763503551, 0.018366947770118713, -0.001983505440875888, 0.001223682309500873, 0.006472162902355194, 0.02286497689783573, 0.002358341123908758, -0.010695311240851879, 0.016092944890260696, -0.022702546790242195, -0.022327711805701256, 0.010938954539597034, -0.03685884177684784, 0.00902729295194149, -0.0008839874644763768, 0.013244193978607655, 0.01842942088842392, 0.004957201890647411, -0.012450791895389557, 0.0326107032597065, -0.006740794982761145, 0.0009683255339041352, 0.0086899409070611, -0.0069594490341842175, 0.014768525958061218, 0.017529815435409546, 0.0012517949799075723, 0.005594422575086355, -0.0031158216297626495, -0.02487659454345703, -0.004797896835952997, 0.002612916985526681, 0.014168788678944111, 0.022102810442447662, 0.002914347453042865, -0.007590422406792641, 0.01363152451813221, 0.00528205931186676, -0.020690929144620895, 0.029162215068936348, 0.000553273072000593, -0.0029002910014241934, -0.008614973165094852, -0.002205283148214221, 0.021840425208210945, -0.012894347310066223, 0.019916269928216934, -0.005531949922442436, 0.01805458590388298, 0.016655199229717255, -0.008115192875266075, 0.008471285924315453, 0.0037827168125659227, 0.01349408458918333, -0.00820265430957079, 0.00460735522210598, -0.02638843096792698, 0.022252744063735008, 0.033460330218076706, -0.008789896965026855, -0.010920212604105473, 0.014506140723824501, -0.00043574647861532867, -0.013181721791625023, -0.011020168662071228, 2.984531420224812e-05, 0.011688626371324062, -0.004669827874749899, -0.013219204731285572, -0.010276745073497295, -0.011757345870137215, 0.00020069327729288489, 0.013506579212844372, 0.0018835492664948106, 0.0069594490341842175, 0.012307104654610157, 0.02227773331105709, 0.00835258886218071, -0.025688739493489265, 0.009826942346990108, -0.015430735424160957, -0.008283868432044983, -0.02187790907919407, 0.007946516387164593, 0.0239894837141037, -0.011170103214681149, -0.005947392899543047, -0.020091192796826363, 0.006515893619507551, -0.0035671861842274666, 0.006409690249711275, -0.0024864100851118565, 0.027088124305009842, 0.006797020323574543, 0.0062160249799489975, -0.004804144147783518, -0.01266944594681263, 0.0009269373840652406, -0.017317408695816994, -0.011295048519968987, -0.012588231824338436, -0.00046737323282286525, -0.00650339899584651, -0.00131895300000906, 0.009102259762585163, -0.0019632019102573395, -0.02207782119512558, 0.042106542736291885, -0.005538197234272957, 0.0006657238118350506, 0.021653007715940475, 0.010664074681699276, 0.0033641501795500517, 0.0108452457934618, 0.010445420630276203, -0.0030642817728221416, 0.028387555852532387, -0.017492331564426422, 0.008814885281026363, 0.003261070465669036, -0.002780031180009246, 0.02217777818441391, -0.003289183136075735, -0.01841692626476288, 0.024789132177829742, 0.00873991847038269, 0.0032329577952623367, -0.0015907089691609144, -0.0019116619369015098, 0.005172732286155224, -0.00024461932480335236, -0.0014642018359154463, -0.03156116604804993, -0.00954581517726183, 0.006041101645678282, 0.015443230047821999, 0.0002647276851348579, -0.0075029609724879265, -0.005375768523663282, -0.013469095341861248, -0.024339329451322556, 0.021165721118450165, -0.005560062360018492, 0.004963449202477932, -0.024051956832408905, -0.00263946782797575, 0.0031048888340592384, 0.028587467968463898, -0.0011721424525603652, -0.004148181527853012, 0.003920156508684158, 0.017729727551341057, -0.02523893490433693, 0.03833319619297981, -0.005547568202018738, -0.005444488022476435, -0.0038857965264469385, -0.00805896706879139, 0.01430622860789299, -0.02237769030034542, -0.006397195626050234, -0.008027730509638786, -0.01103266328573227, 0.026563355699181557, -0.021240688860416412, 0.00820890162140131, -0.0028050204273313284, -0.0025801188312470913, -0.012725671753287315, 0.003701502224430442, 0.00855250097811222, 0.018679311498999596, 0.009133496321737766, 0.00508839450776577, 0.015005921944975853, -0.0054194992408156395, -0.012881852686405182, -0.007209339644759893, 0.0062066540122032166, -0.009483342990279198, 0.0168051328510046, -0.01729241944849491, 0.0021396870724856853, 0.005631905980408192, -0.021165721118450165, 0.01435620617121458, -0.033060505986213684, -0.01661771535873413, -0.012581984512507915, -0.012906841933727264, -0.004385577514767647, 0.008340094238519669, 0.025126485154032707, 0.02803770825266838, 0.0014571737265214324, -0.01824200339615345, 0.016205396503210068, -0.01496843807399273, 0.022302722558379173, 0.02236519567668438, -0.002625411609187722, 0.0068345037288963795, 0.038932934403419495, -0.009858177974820137, 0.005100888665765524, 0.001960078254342079, -0.009345903061330318, 0.01215092372149229, 0.01401885412633419, -0.012350835837423801, 0.027238059788942337, 0.036533985286951065, -0.01736738719046116, 0.021390622481703758, 0.01708001270890236, 0.009139743633568287, 0.0006770469481125474, 0.019903775304555893, 0.018841739743947983, 0.018891718238592148, 0.0017929640598595142, 0.0015524444170296192, 0.018167035654187202, 0.0035234554670751095, 0.03128628432750702, 0.00806521438062191, -0.010657827369868755, 0.006490904372185469, 0.0042481375858187675, 0.007228081580251455, 0.00036800274392589927, 0.01315673254430294, 0.007671636994928122, 0.009177226573228836, 0.016167912632226944, 0.014631086029112339, 0.0014556118985638022, -0.0027612894773483276, 0.016642704606056213, -0.0084025664255023, 0.01117635052651167, 0.013069271109998226, -0.014481151476502419, 0.00940212793648243, 0.025226442143321037, -0.021640513092279434, 0.016567736864089966, -0.008246384561061859, -0.023502197116613388, -0.020903335884213448, 0.012550747953355312, 0.0037889638915657997, -0.015905527397990227, 0.008927336893975735, -0.02016615867614746, -0.005538197234272957, -0.022427668794989586, 0.0053507792763412, 0.026638321578502655, -0.011882291175425053, -0.005803705658763647, -0.01117635052651167, 0.0062160249799489975, -0.006300363223999739, -0.005916156340390444, 0.038458142429590225, -0.02342722937464714, 0.014118810184299946, 0.010951449163258076, 0.002881549298763275, 0.0016492769354954362, 0.012788143940269947, 0.002864369424059987, -0.006209777668118477, 0.005197721533477306, -0.021465590223670006, 0.029612017795443535, 0.014043843373656273, 0.0014298419700935483, 0.013693996705114841, -0.011163855902850628, 0.008271373808383942, -0.006659580394625664, 0.00690947100520134, 0.0055975462310016155, 0.005069652572274208, 0.0035421971697360277, -0.010164294391870499, -0.026738278567790985, 0.005338284652680159, -0.014905965887010098, -0.008096450939774513, -0.012013483792543411, 0.005925527308136225, 0.0015391689958050847, 0.0028940439224243164, 0.010807761922478676, -0.0075654336251318455, -0.020403554663062096, -0.0036046698223799467, 0.011288801208138466, 0.011626153253018856, -0.003098641522228718, -0.012157170102000237, 0.004476162604987621, 0.030211756005883217, 0.0058380658738315105, -0.006069214548915625, 0.005897414870560169, -0.032685671001672745, -0.0029299654997885227, -0.01909163035452366, 0.013431611470878124, 0.016917584463953972, 0.01900416985154152, 0.03610917180776596, -0.022227756679058075, 0.02312736213207245, -0.02621350809931755, -0.01755480468273163, 0.0016805132618173957, 0.01986629143357277, 0.011163855902850628, 0.0037171205040067434, 0.0011666760547086596, -0.022802503779530525, -0.02555129863321781, -0.017517320811748505, 0.01199474185705185, -0.008408813737332821, 0.015680626034736633, 0.006865740288048983, -0.00792777445167303, -0.011013921350240707, -0.009951887652277946, -0.014418679289519787, -0.009945640340447426, 0.01320671010762453, 0.00839631911367178, 0.008571242913603783, -0.018779268488287926, 0.010951449163258076, -0.009577051736414433, 0.013506579212844372, -0.01729241944849491, 0.011207587085664272, 0.006034854333847761, -0.0020038089714944363, 0.01891670748591423, 0.007284306921064854, 0.013094259425997734, -0.01100142765790224, -0.02062845602631569, 0.00312050711363554, 0.012307104654610157, 0.014431173913180828, -0.0045605008490383625, -0.0033079248387366533, 0.018566859886050224, -0.004666704218834639, -0.019703861325979233, 0.02428935281932354, 0.021727975457906723, -0.019254058599472046, 0.004004494287073612, -0.008958572521805763, 0.004922842141240835, -0.024076946079730988, -0.008327599614858627, -0.01530579011887312, 0.010208024643361568, 0.00467919884249568, -0.015143361873924732, 0.01430622860789299, -0.006540882401168346, 0.01822950877249241, 0.015768088400363922, -0.02467668242752552, 0.022040337324142456, -0.011088889092206955, -0.0009097574511542916, -0.0022115304600447416, -0.01641780324280262, 0.014993427321314812, -0.016292857006192207, 0.051227543503046036, -0.015405746176838875, -0.009627029299736023, -0.015668131411075592, -0.026638321578502655, 0.0014626400079578161, -0.003757727798074484, -0.026538366451859474, 0.015493208542466164, 0.016942571848630905, -0.020003730431199074, 0.011607411317527294, -0.0006305829156190157, -0.013893908821046352, -0.024889089167118073, 0.0009940954623743892, 0.0019897527527064085, 0.013981371186673641, -0.006050472613424063, -0.010476657189428806, 0.025963617488741875, -0.013531568460166454, -0.011894785799086094, 0.0013868920505046844, 0.015105878002941608, -0.0010464162332937121, -8.419160621997435e-06, 0.01560565922409296, 0.02382705546915531, 0.007909032516181469, 0.004145057871937752, -0.010139305144548416, -0.005110259633511305, 0.0002420813834760338, -0.0250640120357275, -0.014056337997317314, -0.009677007794380188, 0.005956763867288828, -0.012069708667695522, -0.009202215820550919, -0.0008004303672350943, -0.0067595369182527065, -0.026638321578502655, -0.017704738304018974, -0.021927887573838234, 0.0007918403716757894, -0.010126810520887375, -0.010532882995903492, 0.01851688325405121, 0.001037826295942068, 0.010970191098749638, -0.011544939130544662, 0.01659272611141205, -0.006659580394625664, -0.0005384358228184283, -0.0174548476934433, 0.008008988574147224, -0.044580455869436264, 0.004769783932715654, 0.004594860598444939, 0.006684569641947746, -0.00988941453397274, 0.000566938950214535, -0.0025473209097981453, -0.011132619343698025, 0.0076279062777757645, 0.015992989763617516, -0.021628018468618393, -0.00855250097811222, 0.02545134350657463, -0.001461859093979001, 0.007646647747606039, 0.023389745503664017, 0.00012904498726129532, 0.0021912269294261932, 0.012282115407288074, -0.011476218700408936, -0.00025652817566879094, 0.020615963265299797, -0.00196788739413023, 0.0028737401589751244, 0.002010056283324957, -0.006072338204830885, -0.03613416105508804, -0.018966685980558395, -0.005322666838765144, 0.01065158098936081, -0.024701671674847603, 0.0002625802007969469, -0.0038701784797012806, -0.005513207986950874, 0.020790886133909225, -0.006191036198288202, -0.014818503521382809, -0.009933145716786385, 0.006128563545644283, 0.004526140633970499, -0.009627029299736023, -0.0012299296213313937, -0.0048759873025119305, 0.002753480337560177, 0.016867605969309807, 0.024526748806238174, 0.007371768355369568, -0.011201339773833752, 0.008852369152009487, -0.007521702442318201, 0.0196788739413023, 0.005803705658763647, -0.03006182238459587, -0.024739155545830727, 0.034334946423769, -0.0028081440832465887, -0.00806521438062191, -0.013931392692029476, -0.03141123056411743, -0.021665502339601517, -0.013893908821046352, 0.026563355699181557, -0.026663310825824738, -0.018691806122660637, 0.020291104912757874, 0.010476657189428806, -0.0003650743456091732, -0.012550747953355312, 0.0035047135315835476, -0.026063574478030205, 0.0006344874855130911, 0.026438409462571144, 0.00873367115855217, 0.02094081975519657, 0.011013921350240707, 0.01286935806274414, -0.005438241176307201, -0.017804695293307304, -0.0020428544376045465, 0.010339217260479927, -0.016180407255887985, 0.019703861325979233, -0.01727992482483387, 0.0038857965264469385, -0.00501342723146081, -0.00739675760269165, -0.03156116604804993, -0.0016976932529360056, -0.015218328684568405, -0.01601797714829445, 0.020815875381231308, -0.01247578114271164, 0.016680188477039337, -0.0073155430145561695, -0.0002016694052144885, 0.006034854333847761, 0.008896100334823132, 0.005906785372644663, 0.02611355297267437, 0.01055162400007248, -0.00821514893323183, 0.0036452768836170435, -0.0016695805825293064, 0.01166363712400198, 0.016630209982395172, -0.024114428088068962, -0.0012072832323610783, 0.03271066024899483, -0.008102698251605034, -0.023077383637428284, -0.011163855902850628, -0.006156675983220339, -0.015630647540092468, -0.017842179164290428, -0.011676131747663021, 0.007790334988385439, 0.02302740514278412, -0.0006251165759749711, 0.004726053215563297, -0.0007953544845804572, -0.007427993696182966, 0.006290992256253958, 0.018204519525170326, 0.0415068045258522, -0.0027081877924501896, 0.00855250097811222, 0.0011760469060391188, 0.015555680729448795, 0.02007869817316532, -0.006047348957508802, -0.008165170438587666, -0.00012787363084498793, -0.004854122176766396, -0.01594301126897335, -0.01624288037419319, 0.01614292338490486, 0.017529815435409546, 0.005594422575086355, 0.005478848237544298, -0.008852369152009487, 0.007765345741063356, -0.016380319371819496, -0.0033485321328043938, 0.001400948385708034, -0.006803267635405064, 0.009058528579771519, 0.022927450016140938, 0.014318723231554031, -0.01708001270890236, 0.022115305066108704, -0.015155855566263199, 0.01022051926702261, -0.011020168662071228, 0.004232519771903753, 0.0010792143875733018, -0.01623038575053215, 0.007490466348826885, -0.010189283639192581, 0.018029596656560898, 0.0011627714848145843, 0.004957201890647411, -0.005894291214644909, 0.006553377024829388, -0.007771593052893877, 0.021178215742111206, -0.018004607409238815, -0.004082585219293833, -0.006184788886457682, 0.018491894006729126, 0.013469095341861248, 0.0010870235273614526, 0.02773784101009369, 0.018741784617304802, 0.0353345088660717, 0.03071153722703457, 0.007446735631674528, -0.004404319450259209, 0.01862933300435543, 0.000993314548395574, 0.008477533236145973, -0.008902347646653652, 0.00010561776434769854, 0.007821571081876755, 0.002295868471264839, 0.015780583024024963, -0.0034110047854483128, 0.004516770131886005, -0.009920651093125343, 0.005132125224918127, -0.03823323920369148, 0.0013533129822462797, -0.0581744983792305, -0.015268306247889996, -0.002170923398807645, 0.06702061742544174, -0.01300679799169302, -0.0069594490341842175, 0.012369577772915363, 0.00834634155035019, -0.004713558591902256, -0.0009019483695738018, 0.017129991203546524, -0.020103687420487404, 0.01435620617121458, 0.005675636697560549, -0.012594479136168957, 0.02583867311477661, 0.0112388227134943, 0.018891718238592148, 0.01022676657885313, 0.004113821778446436, -0.018941696733236313, -0.026163529604673386, -0.011551186442375183, -0.005431993864476681, 0.010532882995903492, -0.006134810857474804, 0.026088563725352287, -0.014718547463417053, -0.0196788739413023, 0.02094081975519657, -0.005335160996764898, -0.008958572521805763, -0.005029045511037111, -0.004963449202477932, 0.02898729220032692, -0.004457421135157347, 0.003676513209939003, -0.048328813165426254, -0.012594479136168957, 0.00624101422727108, -0.008977314457297325, -0.0031782942824065685, -0.0007980876252986491, -0.007059405092149973, 0.016830122098326683, -0.0112388227134943, 5.5053991673048586e-05, 0.01785467378795147, 0.010214271955192089, 0.020878346636891365, 0.009345903061330318, -0.013119248673319817, -0.008608725853264332, -0.023877032101154327, 0.0048135146498680115, -0.011913527734577656, 0.003211092436686158, -0.016180407255887985, 0.022777514532208443, -0.020091192796826363, 0.011588669382035732, -0.003926403820514679, 0.008777402341365814, 0.0033547794446349144, 0.01410631649196148, -0.004913471173495054, 0.012032225728034973, 0.013519073836505413, 0.04155678302049637, 0.02303989976644516, -0.04635467752814293, 0.012244632467627525, -0.02581368386745453, 0.006628344301134348, -0.017055023461580276, 0.004644838627427816, 0.0037358622066676617, 0.004910347517579794, 0.009352150373160839, 0.009252194315195084, 5.0954226026078686e-05, -0.008952325209975243, -0.013993865810334682, -0.015468219295144081, 0.0016805132618173957, -0.019066641107201576, 0.0028034585993736982, 0.010426679626107216, -0.005100888665765524, 0.02179044671356678, 0.010976438410580158, 0.026813246309757233, -0.000815267616417259, -0.010913965292274952, 0.007677884306758642, 0.010301734320819378, -0.011057652533054352, -0.0036015461664646864, 0.018291981890797615, -0.017204957082867622, 0.0026988168247044086, -0.004279374144971371, -0.037183698266744614, -0.0014189091743901372, 0.010776525363326073, -0.0014735728036612272, -0.040182385593652725, -0.0030018091201782227, -0.0073155430145561695, 0.008946077898144722, 0.0050634052604436874, 0.0004962668172083795, -0.006009865552186966, 0.011926021426916122, -0.002420813776552677, 0.04253135621547699, 0.007271812297403812, 0.02776283025741577, -0.008664951659739017, 0.01786716654896736, -0.0004806486831512302, -0.0019382127793505788, -0.016542747616767883, -0.001550101675093174, -0.0025270171463489532, -0.006116068921983242, 0.001268194057047367, -0.013906403444707394, -0.014843492768704891, 0.005210216157138348, -0.008846121840178967, -0.012238385155797005, 0.002056910889223218, 0.006087956018745899, 0.028537489473819733, 0.0006438583950512111, 0.0036046698223799467, 0.004729176871478558, -0.010089326649904251, -0.00542574655264616, 0.007271812297403812, -0.00907102320343256, 0.014993427321314812, -0.0045073991641402245, -0.009389634244143963, 0.003723367815837264, 0.019329026341438293, -0.007121877744793892, 0.005878672935068607, 0.01545572467148304, 0.0031564286909997463, 0.007271812297403812, 0.02219027280807495, 0.00013997769565321505, 0.018179530277848244, 0.004966572858393192, 0.0003746404545381665, -0.0018710547592490911, 0.012650704011321068, 0.022402679547667503, -0.04348094016313553, 0.0010026853997260332, 0.0068345037288963795, 0.02227773331105709, 0.002687884261831641, 0.00820890162140131, 0.002625411609187722, -0.00038772064726799726, -0.03248576074838638, 0.0002863978734239936, -0.013406623154878616, -0.0068969763815402985, -0.01624288037419319, -0.0214031171053648, 0.0020006855484098196, -0.021253183484077454, -0.009945640340447426, -0.01056411862373352, -0.014131304807960987, -0.025089001283049583, 0.023277295753359795, -0.009908156469464302, -0.014556119218468666, 0.0070219216868281364, 0.01671767048537731, 0.01166363712400198, -0.006547129712998867, 0.015880538150668144, -0.0018835492664948106, -0.005185226909816265, 0.00858373660594225, -0.027238059788942337, 0.008946077898144722, 0.00135643663816154, -0.006609602365642786, 0.007409251760691404, 0.004963449202477932, -0.004376206547021866, -0.019166598096489906, 7.27708320482634e-05, -0.0014017292996868491, 0.011157608591020107, 0.00042832785402424634, -0.009046033956110477, -0.004491780884563923, -0.019416488707065582, -0.018941696733236313, -0.01469355821609497, 0.0057849641889333725, 0.0009292801260016859, 0.00487286364659667, -0.01170736737549305, 0.0364840067923069, 0.018691806122660637, -0.010664074681699276, 0.010539130307734013, -0.004176294431090355, 0.0015992989065125585, 0.003242328530177474, 0.007415499072521925, -0.0006762660341337323, 0.007884044200181961, 0.026088563725352287, 0.006553377024829388, -0.00873991847038269, -0.019641390070319176, 0.009876919910311699, -0.010920212604105473, -0.009252194315195084, 0.017242440953850746, -0.009508331306278706, -0.023102372884750366, 0.012719424441456795, 0.01252575870603323, 0.008664951659739017, -0.0020678434520959854, 0.02823762036859989, -0.008602478541433811, 0.005435117520391941, -0.007527949754148722, 0.020391061902046204, 0.008821132592856884, 0.015880538150668144, 0.01854187250137329, -0.01613042876124382, 0.011738603934645653, 0.002783154835924506, -0.0031798561103641987, -0.00787154957652092, 0.004669827874749899, -0.018666816875338554, 0.004251261241734028, 0.014331217855215073, 0.015093383379280567, 0.0066345916129648685, -0.01430622860789299, -0.015818065032362938, 0.010095573961734772, -0.0063315993174910545, 0.014056337997317314, 0.009014798328280449, -0.003323543118312955, -0.00907102320343256, -0.021865414455533028, -0.019828807562589645, -0.038932934403419495, 0.011307543143630028, 0.012706929817795753, 0.005025921855121851, 0.018566859886050224, 0.0139688765630126, -0.020191147923469543, 0.004379330202937126, -0.02420189045369625, -0.010826503857970238, -0.037283655256032944, 0.009801953099668026, -0.016567736864089966, 0.003276688512414694, 0.0013252003118395805, -0.012663198634982109, 0.010114315897226334, 0.013544062152504921, -0.015780583024024963, 0.025001540780067444, 0.010857740417122841, -0.025076506659388542, -0.00035355595173314214, -0.0034141282085329294, 0.00034711346961557865, -0.0070843943394720554, -0.006069214548915625, -5.559086275752634e-05, -0.002456735586747527, -0.0489785298705101, -0.011138866655528545, 0.003651524195447564, -0.00820265430957079, -0.007028168998658657, -0.00642843171954155, -0.0013181720860302448, 0.04225647449493408, 0.005253946874290705, 0.0011588670313358307, -0.02283998765051365, 0.021540557965636253, -0.026563355699181557, -0.010164294391870499, -0.007346779108047485, 0.0018101439345628023, -0.004566748160868883, -0.020953314378857613, 0.025301408022642136, 0.0016227260930463672, -0.01670517772436142, 0.03111136145889759, 0.005150867160409689, -0.011919775046408176, 0.01624288037419319, 0.0008839874644763768, 0.008046472445130348, -0.0019382127793505788, 0.013219204731285572, 0.014518635347485542, -0.001956954598426819, -0.0025801188312470913, -0.0033204194623976946, -0.004663580562919378, -0.00643467903137207, 0.000983943697065115, 0.0032392051070928574, 0.00382644752971828, -0.014118810184299946, -0.001532921800389886, -0.005075899884104729, 0.00657836627215147, 0.011813570745289326, -3.8130256143631414e-06, -0.04130689054727554, -0.028362566605210304, -0.0034266228321939707, -0.03301052749156952, 0.01483099814504385, 0.013669007457792759, 0.007427993696182966, -0.012157170102000237, 0.011126372031867504, 0.012119687162339687, 0.015068394131958485, 0.02141561172902584, -0.006472162902355194, -0.01118259783834219, -0.009083517827093601, 0.010945201851427555, 0.010595355182886124, -0.018504388630390167, 0.022340206429362297, 0.013594040647149086, 0.007590422406792641, -0.025326397269964218, 0.022490140050649643, -0.009914403781294823, 0.01623038575053215, -0.00902104564011097, -0.02285248227417469, 0.005372644867748022, 0.02151556871831417, 0.002533264458179474, 0.01719246245920658, -0.0029362128116190434, 0.01786716654896736, -0.011732356622815132, 0.007815323770046234, 0.012294610030949116, -0.0026816369500011206, 0.019054146483540535, -0.010495399124920368, -0.013756469823420048, -0.0036577715072780848, -0.0031782942824065685, 0.031161339953541756, 0.018379442393779755, 1.2433513802534435e-05, -0.007671636994928122, -0.007346779108047485, -0.017717232927680016, 0.01613042876124382, -0.004975943826138973, -0.026738278567790985, 0.011982247233390808, 0.011170103214681149, -0.0030361691024154425, -0.0018132675904780626, 0.01603047177195549, -0.014843492768704891, 0.015255812555551529, -0.0037952112033963203, 0.011757345870137215, -0.004594860598444939, 0.009614535607397556, -0.0018757402431219816, -0.021115742623806, -0.023639636114239693, 0.0068345037288963795, 0.0076903789304196835, -0.0032485758420079947, -0.0027597276493906975, -0.01929154247045517, -0.022690054029226303, -0.007965258322656155, 0.031036393716931343, 0.004782278556376696, -0.011969752609729767, 0.0005216463468968868, 0.0018741784151643515, 0.0174548476934433, 0.002447364619001746, 0.00859623122960329, -0.003098641522228718, 0.010195530951023102, 0.00460423156619072, -0.019179092720150948, -0.0024942189920693636, 0.006522140931338072, -0.00420128321275115, -0.0006914937403053045, 0.008083956316113472, 0.015180844813585281, -0.03485971689224243, -0.01929154247045517, -0.0004822104820050299, 0.00039338224451057613, -0.013531568460166454, -0.012969314120709896, -0.004925965331494808, 0.01929154247045517, 0.0174548476934433, -0.006359712220728397, -0.015405746176838875, -0.012550747953355312, -0.0029533926863223314, 0.01511837262660265, 0.02496405690908432, 0.03703376650810242, -0.0022615084890276194, 0.011819818057119846, 0.002470791805535555, -0.005510084331035614, 0.0032985538709908724, 0.008746165782213211, 0.007515455596148968, -0.023852042853832245, 0.017042528837919235, 0.0018804256105795503, -0.004476162604987621, -0.01185105461627245, -0.03628409281373024, 0.001365026575513184, 0.0023489701561629772, 0.023352263495326042, -0.0055444445461034775, 0.00765289505943656, 0.003223586827516556, -0.005175855942070484, -0.021528063341975212, 0.008465039543807507, 0.0032985538709908724, 0.003223586827516556, -0.007096888963133097, -0.013606535270810127, 0.007028168998658657, -0.0230523943901062, -0.030161777511239052, -0.01050789374858141, 0.01444366853684187, -0.020528500899672508, -0.013931392692029476, 0.01545572467148304, 0.0001585242571309209, -0.008527511730790138, -0.003926403820514679, -0.023302285000681877, -0.00616604695096612, 0.0010136181954294443, -0.010720300488173962, -0.02871241234242916, 0.01090147066861391, 0.02274003066122532, -0.015480713918805122, 0.008233890868723392, -0.02928716130554676, 0.02763788402080536, 0.0019647637382149696, -0.005922403652220964, -0.0024395554792135954, 0.0064659155905246735, 0.01444366853684187, 0.005328913684934378, 0.0017820312641561031, 0.003517208155244589, -0.00427625048905611, 0.026438409462571144, 0.015705615282058716, 0.008746165782213211, 0.004191912245005369, -0.018179530277848244, 0.006784525699913502, 0.008415061049163342, -0.012494523078203201, -0.012569489888846874, 0.01832946389913559, -0.0086899409070611, 0.0002696083683986217, -0.004588613286614418, -0.020041214302182198, 0.014556119218468666, 0.02400197833776474, -0.009751974605023861, 0.0040794615633785725, -0.00390141480602324, -0.018604343757033348, 0.012113439850509167, 0.03455984964966774, 0.0037358622066676617, 0.0013275430537760258, -0.004026359878480434, 0.007996494881808758, 0.002085023559629917, -0.006125439889729023, -0.004120068624615669, 0.02036607265472412, -0.005104012321680784, 0.007309295702725649, 0.007446735631674528, 0.0016274115769192576, 0.009683255106210709, -0.015218328684568405, 0.00954581517726183, -0.010270497761666775, 0.0038951674941927195, 0.03948269039392471, 0.003704625880345702, 0.021827930584549904, 0.01671767048537731, -0.012806885875761509, -0.011601164005696774, -0.0023489701561629772, -0.0068407510407269, -0.009964382275938988, 0.00393889844417572, -0.0070031797513365746, 0.0030689670238643885, -0.005378892179578543, -0.0064659155905246735, -0.004704187624156475, -0.006809514947235584, 0.0004747918574139476, 0.0052320812828838825, -0.011613658629357815, -0.0022490140981972218, 0.0062784976325929165, 0.00349221914075315, 0.020990798249840736, 0.002606669906526804, 0.02523893490433693, 0.01613042876124382, 0.007602917030453682, 0.0210407767444849, 0.015355768613517284, -0.02274003066122532, 0.0019335274118930101, 0.009795705787837505, -0.013269183225929737, -0.013793952763080597, 0.00047635368537157774, 0.015468219295144081, 0.0031595523469150066, 0.004454297479242086, -0.016580231487751007, -0.001586023485288024, 0.007340532261878252, -0.00887735839933157, -0.022927450016140938, -0.008240137249231339], "ee7b7752-6013-4fc6-90c6-cb1559acf82a": [-0.018675601109862328, 0.0008034537313506007, -0.0008703455678187311, 0.009668502025306225, -0.04336395487189293, -0.015284410677850246, 0.002564437920227647, 0.021140828728675842, -0.012566647492349148, -0.016583165153861046, 0.001991723431274295, 0.014875543303787708, 0.03590814396739006, -0.0267687626183033, -0.009139380417764187, 0.020347146317362785, 0.015176180750131607, 0.00969255343079567, 0.0020353158470243216, -0.034825846552848816, 0.030689075589179993, -0.024892784655094147, -0.0401892215013504, 0.019890177994966507, 0.006096928380429745, -0.04151202738285065, -0.012975514866411686, 0.015657201409339905, -0.014851492829620838, 0.010600478388369083, 0.011177701875567436, 0.01157454401254654, 0.009969139471650124, 0.00022867240477353334, 0.024111127480864525, 0.007149159908294678, -0.017352797091007233, 0.005892495159059763, -0.007984932512044907, -0.04360446333885193, -0.03576383739709854, 0.02014271169900894, -0.005342328455299139, -0.005778252612799406, -0.05714517459273338, 0.00879665371030569, 0.039611998945474625, -0.018795857205986977, 0.005333309061825275, 0.008063097484409809, 0.003565560793504119, -0.005011626984924078, -0.016234425827860832, 0.003064999356865883, 0.03393596038222313, -0.0059526227414608, 0.0004426887317094952, 0.034873951226472855, -0.004695957992225885, -0.04038162901997566, 0.000382749130949378, 0.0028019414748996496, -0.0023013800382614136, -0.020226890221238136, 0.00045471423072740436, -0.006078890059143305, 0.01186916884034872, -0.029871342703700066, -0.012043538503348827, -0.0076842946000397205, -0.0038301218301057816, 0.020443350076675415, -0.04127151519060135, 0.006812445819377899, 0.032709360122680664, -0.006277311127632856, 0.023305419832468033, -0.0033070126082748175, 0.016847725957632065, -0.0003547522646840662, -0.0002527234028093517, 0.008081136271357536, 0.04384497180581093, -0.009902999736368656, 0.06873776018619537, 0.020046507939696312, 0.021706027910113335, -0.03126630187034607, 0.006950738839805126, -0.016066068783402443, -0.019180672243237495, -0.007672268897294998, -0.025325702503323555, 0.0002320545754628256, -0.008898870088160038, -0.0015452767256647348, -0.011267893947660923, 0.01215778011828661, 0.04533613473176956, 0.007443784736096859, 0.020226890221238136, -0.010901115834712982, -0.012518545612692833, 0.013877427205443382, 0.011063460260629654, -0.006157055962830782, -0.021489568054676056, -0.0005204787012189627, -0.016066068783402443, 0.018278760835528374, -0.012590698897838593, -0.04379687085747719, 0.029847290366888046, -0.0078105623833835125, -0.044831063598394394, 0.00022153226018417627, -0.00778049835935235, -0.0014693657867610455, 0.013853375799953938, -0.04528803378343582, 0.03177137300372124, 0.01070269476622343, 0.002194653730839491, 0.008195377886295319, 0.025325702503323555, 0.011093523353338242, 0.0026937120128422976, -0.020443350076675415, 0.02857258729636669, 0.00038312491960823536, 0.02269211784005165, 0.0014002191601321101, 0.002746323589235544, 0.04625007510185242, -0.009746667928993702, -0.00018921372247859836, 0.018747754395008087, 0.047115910798311234, -0.044037383049726486, 0.04283482953906059, -0.015200232155621052, -0.02614343725144863, -0.026937119662761688, 0.02917386405169964, 0.03629295900464058, 0.018711678683757782, -0.032516952604055405, 0.023040859028697014, 0.005228086374700069, 0.0025719539262354374, -0.05555780977010727, -0.004846276715397835, 0.00015961972530931234, 0.027827007696032524, 0.006361489649862051, 0.008580193854868412, 0.011027383618056774, 0.034873951226472855, -0.007840625941753387, 0.05286409705877304, 0.017316719517111778, -0.04822225496172905, -0.009415966458618641, -0.011117574758827686, 0.06690987944602966, 0.010245726443827152, 0.0189762394875288, 0.021537670865654945, 0.020912345498800278, 0.00951217021793127, 0.027490293607115746, 0.006920675281435251, 0.01807432621717453, -0.030352361500263214, 0.022102870047092438, 0.00044682249426841736, 0.04841466248035431, 0.0075760651379823685, 0.025830773636698723, 0.0028320052661001682, 0.0023539916146546602, -0.006457693409174681, -0.004398326855152845, -0.03557142987847328, -0.021994639188051224, 0.024796580895781517, -0.027177629992365837, 0.034849900752305984, 0.015019849874079227, -0.016270501539111137, -0.022920602932572365, -0.00852607935667038, 0.021898435428738594, 0.018206607550382614, -0.005892495159059763, -0.009367864578962326, 0.04134367033839226, 0.02126108482480049, 0.0109071284532547, 0.04341205582022667, -0.0006550139514729381, -0.07883917540311813, -0.039443641901016235, 0.04502347111701965, -0.0288852509111166, 0.006265285424888134, -0.022427557036280632, -0.03655752167105675, 0.0076842946000397205, -0.0016384744085371494, 0.034537237137556076, -0.029630832374095917, 0.018651550635695457, 0.013648943044245243, -0.004996595438569784, 0.0049875760450959206, -0.017521154135465622, 0.02059968188405037, -0.001982704270631075, -0.03203593194484711, -0.03174731880426407, 0.02207881771028042, -0.00859823264181614, -0.018988264724612236, -0.05762619525194168, 0.006331425625830889, -0.03321443125605583, 0.03877021372318268, -0.0759049579501152, 0.0028605659026652575, 0.042401913553476334, -0.020419299602508545, -0.016474934294819832, 0.004338199272751808, -0.002723775804042816, 0.044758912175893784, -0.012163793668150902, 0.02907765842974186, -0.010438133962452412, -0.016342654824256897, 0.03383975848555565, -0.0032348595559597015, 0.014466676861047745, 0.03169921785593033, 0.010203637182712555, 0.013853375799953938, -0.006848522461950779, 0.004479498602449894, 0.004924442153424025, 0.004377282224595547, -0.019252825528383255, 0.024844683706760406, -0.003827115288004279, -0.003061993047595024, -0.006319400388747454, -0.028067518025636673, -0.03311822563409805, -0.01948131062090397, 0.01838698983192444, 0.028019415214657784, 0.008844755589962006, -0.018326861783862114, 0.04531208425760269, 0.012674877420067787, 0.06464909017086029, -0.010209649801254272, 0.025951029732823372, -0.04293103516101837, -0.013468559831380844, 0.05983888730406761, -0.03903477266430855, 0.013432483188807964, 0.02016676403582096, 0.017040133476257324, -0.0155609967187047, 0.012819183059036732, 0.032709360122680664, 0.00426303967833519, -0.000565950118470937, 0.012518545612692833, -0.010426108725368977, 0.012482468970119953, 0.011153651401400566, 0.037206895649433136, 0.0014731237897649407, 0.00025103232474066317, -0.02140538953244686, -0.000710256106685847, -0.01328817754983902, 0.00729346601292491, 0.005799297243356705, 0.016390755772590637, 0.02672066166996956, 0.013624891638755798, 0.02648015134036541, 0.0005967654287815094, -0.03227644041180611, -0.011863156221807003, -0.041993048042058945, 0.013264126144349575, 0.006710228975862265, 0.006457693409174681, -0.009536221623420715, -0.022607939317822456, 0.06469719111919403, -0.010654592886567116, 0.023161113262176514, 0.019469285383820534, -0.027345987036824226, 0.007167198229581118, 0.04348420724272728, -0.02912576124072075, -0.042185455560684204, -0.008658359758555889, 0.010263764299452305, 0.03102578967809677, -0.011803028173744678, 0.012506520375609398, -0.017256593331694603, -0.044422198086977005, 0.015152130275964737, -0.025421906262636185, -0.016162272542715073, -0.03157896175980568, 0.02900550700724125, -0.0354752242565155, 0.04379687085747719, -0.013107795268297195, 0.0200946107506752, -0.0009808298200368881, -0.020960446447134018, -0.03848160058259964, -0.03679803013801575, -0.005546761676669121, -0.009163430891931057, 0.016210373491048813, -0.04360446333885193, -0.030208056792616844, -0.013023616746068, 0.010853013955056667, -0.010113445110619068, -0.024748479947447777, -0.025157345458865166, -0.028043465688824654, 0.04062213748693466, 0.02645610086619854, 0.00668016541749239, -0.000645994849037379, -0.025349754840135574, 0.021212982013821602, 0.0006813197396695614, -0.015308461152017117, 0.027971312403678894, -0.007876702584326267, 0.0570489726960659, 0.004834251012653112, -0.04257027059793472, -0.021020574495196342, -0.0001474063319619745, -0.000731676525902003, 0.018735729157924652, -0.024532020092010498, -0.027177629992365837, -0.013973630964756012, -0.015007823705673218, 0.007960881106555462, 0.008315633051097393, 0.005892495159059763, 0.004527600947767496, 0.01724456623196602, -0.044638656079769135, 0.000765498261898756, 0.006373514886945486, -0.027490293607115746, -0.010660605505108833, -0.06666937470436096, 0.025109244510531425, 0.0010236706584692001, -0.03191567584872246, 0.02317313849925995, -0.000321870029438287, 0.012855259701609612, 0.022968705743551254, 0.020864242687821388, 0.024868734180927277, 0.03886641561985016, 0.02842828258872032, -0.01724456623196602, -0.004819219000637531, -0.010648580268025398, -0.03836134448647499, -0.008075123652815819, -0.013456534594297409, 0.005465589929372072, -0.05700087174773216, -0.01890408620238304, 0.0047410535626113415, -0.04023732244968414, -0.008087148889899254, -0.0062292092479765415, -0.017942046746611595, -0.020130686461925507, 0.02249971032142639, 0.012566647492349148, 0.05772240087389946, -0.029534628614783287, 0.010269776917994022, -0.002086424268782139, -0.013672993518412113, -0.012674877420067787, 0.042329758405685425, 0.00662605045363307, 0.02910171076655388, 0.010353955440223217, 0.015428716316819191, -0.015272385440766811, 0.03576383739709854, 0.049593161791563034, -0.0019045385997742414, -0.030568821355700493, 0.0719124898314476, 0.05324891582131386, 0.011953347362577915, 0.011303969658911228, -0.018230658024549484, 0.011670747771859169, -0.0045516518875956535, 0.02917386405169964, 0.0013175439089536667, 0.01311982050538063, -0.0029657890554517508, 0.0005178481223993003, 0.011718849651515484, 0.015921762213110924, -0.0024682339280843735, -0.0393955372273922, 0.014959721826016903, -0.0074618225917220116, -0.012530570849776268, -0.02910171076655388, -0.003385178279131651, -0.009271660819649696, -0.0033521081786602736, -0.004043574444949627, 0.01824268326163292, 0.00046711551840417087, 0.003294986905530095, 0.0019857108127325773, 0.0035595479421317577, 0.008886844851076603, 0.018723703920841217, 0.0458652563393116, -0.009403941221535206, 0.02910171076655388, 0.013901477679610252, 0.012975514866411686, -0.01700405776500702, -0.012614749372005463, 0.0034272675402462482, -0.04978556931018829, -0.023137062788009644, -0.00958432350307703, -0.0021931505762040615, -0.006926687899976969, 0.0012468940112739801, -0.037351202219724655, 0.025782672688364983, 0.012410315684974194, 0.019805999472737312, 0.01795407198369503, 0.018110403791069984, -0.007004853803664446, -0.014286293648183346, 0.01902434043586254, 0.03398406505584717, -0.032348595559597015, -0.02681686542928219, 0.0033791654277592897, 0.0004347969952505082, 0.0019842074252665043, -0.0035415098536759615, -0.03790437802672386, -0.01458693202584982, 0.013131845742464066, -0.01183309219777584, -0.029799189418554306, -0.012566647492349148, -0.032781511545181274, 0.024772530421614647, -0.017509128898382187, 0.044518399983644485, 0.011231817305088043, 0.0048793465830385685, 0.019962329417467117, 0.0027207694947719574, -0.011947334744036198, 0.007317516952753067, -0.02385859191417694, -0.01028781570494175, -0.049039989709854126, 0.03999681398272514, -0.008051072247326374, -0.030448565259575844, 0.03436888009309769, -0.008664372377097607, 0.019842075183987617, -0.014707186259329319, 0.003646733006462455, -0.012951463460922241, -0.004738047253340483, -0.0267687626183033, -0.002096946584060788, -0.041824690997600555, 0.01819458231329918, -0.004163829609751701, 0.023750362917780876, 0.012434367090463638, 0.03227644041180611, 0.017942046746611595, -0.016198348253965378, 0.00729346601292491, -0.008183352649211884, 0.015079976990818977, 0.016354680061340332, -0.03424862399697304, -0.021657925099134445, -0.03388785943388939, -0.037255000323057175, 0.0114663140848279, 0.02200666442513466, -0.025205448269844055, 0.0008011989411897957, -0.012578672729432583, -0.0030229100957512856, 0.030208056792616844, 0.005351347383111715, -0.009139380417764187, -0.012374239973723888, 0.011628658510744572, 0.0458652563393116, -0.017280643805861473, 0.005047703627496958, 0.012434367090463638, -0.01693190447986126, 0.010726746171712875, 0.030737178400158882, -0.023161113262176514, 0.017412923276424408, -0.004798174370080233, 0.01455085538327694, -0.07061373442411423, 0.015067951753735542, -0.04047783464193344, 0.00238104909658432, 0.015657201409339905, -0.03578788787126541, 0.013877427205443382, -0.012139742262661457, -0.016739496961236, -0.0031206172425299883, -0.019914228469133377, 0.02171805314719677, -0.01838698983192444, 0.0043802885338664055, -0.0017046146094799042, 0.005333309061825275, -0.006277311127632856, 0.0033791654277592897, 0.01342045795172453, 0.0357157364487648, 0.03578788787126541, 0.028091568499803543, 0.04180063679814339, -0.025109244510531425, 0.010077369399368763, 0.014466676861047745, -0.014226166531443596, -0.019649667665362358, -0.03672587871551514, -0.008051072247326374, 0.015128078870475292, 0.009866923093795776, 0.025325702503323555, -0.010822949931025505, 0.04536018520593643, 0.013901477679610252, -0.012554622255265713, -0.028163721784949303, 0.006457693409174681, 0.0017286656657233834, 0.02854853682219982, 0.015873659402132034, 0.012139742262661457, -0.011394161731004715, -0.029414372518658638, 0.022463634610176086, -0.0027027311734855175, 0.016138220205903053, -0.019805999472737312, 0.0028485404327511787, 0.02050347812473774, 0.02914981171488762, -0.0028650753665715456, 0.00723935104906559, -0.029558679088950157, 0.025710519403219223, -0.018495218828320503, 0.0033460953272879124, -0.019012315198779106, 0.030400464311242104, -0.004004491493105888, 0.03653346747159958, 0.015945812687277794, -0.018591422587633133, 0.018531296402215958, 0.001052982872352004, -0.00029575213557109237, 0.04382092133164406, 0.0012258493807166815, 0.004251014441251755, 0.006319400388747454, -0.037375252693891525, 0.054403360933065414, -0.01841104030609131, 0.019108518958091736, 0.006205157842487097, -0.006559910252690315, -0.005047703627496958, -0.03201188147068024, -0.0037519559264183044, -0.005627933889627457, 0.007744422182440758, 0.034585338085889816, -0.017797740176320076, 0.025614315643906593, 0.0034543247893452644, 0.02264401689171791, 0.015031875111162663, -0.03080933168530464, 0.01437047217041254, 0.004888365976512432, 0.01688380166888237, -0.01895218901336193, 0.046899449080228806, -0.025710519403219223, 0.030592871829867363, 0.019012315198779106, 0.030135903507471085, 0.03600434586405754, -0.004106708336621523, -0.04329179972410202, -0.018892060965299606, 0.009896986186504364, 0.020707910880446434, -0.00794284325093031, -0.01311982050538063, -0.014779339544475079, 0.016246451064944267, 0.00452459417283535, -0.0012296073837205768, 0.05555780977010727, -0.01710026152431965, -0.009824833832681179, 0.010991306975483894, -0.0017902962863445282, 0.024700377136468887, 0.009067227132618427, 0.029366271570324898, 0.010510287247598171, 0.049400754272937775, 0.02007056027650833, -0.003520465223118663, 0.010798899456858635, 0.004272059071809053, -0.00591654609888792, 0.0029312155675143003, -0.024038974195718765, -0.024964937940239906, -0.024375688284635544, 0.0068665603175759315, 0.000919950776733458, -0.036990437656641006, -0.015368589200079441, 0.003340082708746195, -0.054162852466106415, -0.0006174342706799507, -0.0017196465050801635, 0.03121819905936718, -0.020178789272904396, -0.007822588086128235, -0.019661692902445793, -0.0018068313365802169, 0.0004968034918420017, -0.005456570535898209, -0.003959395922720432, 0.020840192213654518, -0.0031085917726159096, -0.012205882929265499, 0.0021991634275764227, -0.0216940026730299, -0.03576383739709854, -0.008688423782587051, 0.008014995604753494, 0.003147674724459648, 0.007972906343638897, 0.01133403368294239, -0.03352709487080574, -0.0261674877256155, 0.024616198614239693, -0.01676354743540287, 0.029895393177866936, -0.0036136626731604338, -0.003917306661605835, 0.02895740419626236, 0.012903361581265926, 0.026937119662761688, -0.02164589986205101, -0.000294812663923949, 0.04057403653860092, 0.011881194077432156, 0.005621921271085739, 0.029486525803804398, -0.016294552013278008, -0.02648015134036541, -0.029294118285179138, 0.04735641926527023, 0.007527963258326054, 0.010618516243994236, -0.010263764299452305, 0.000757606525439769, 0.058973051607608795, -0.011496378108859062, 0.027225732803344727, -0.00396540854126215, -0.00012391901691444218, 0.013697044923901558, 0.000861326465383172, -0.013564764522016048, 0.056567952036857605, -0.049400754272937775, 0.003655751934275031, 0.011520429514348507, 0.012819183059036732, -0.008051072247326374, 0.0036978411953896284, 0.011851130053400993, 0.017316719517111778, 0.013143871910870075, 0.018855983391404152, 0.02278832346200943, 0.04098290577530861, -0.034994203597307205, 0.029630832374095917, 0.021706027910113335, -0.0205756314098835, -0.00945204310119152, 0.0075760651379823685, -0.0037940451875329018, -0.006710228975862265, 0.02657635509967804, 0.00019315959070809186, 0.004187880549579859, 0.0037760070990771055, -0.020347146317362785, -0.04014112055301666, 0.0014595950488001108, -0.00608490314334631, 0.029991596937179565, 0.04257027059793472, 0.01309577003121376, -0.0037068603560328484, -0.0038782237097620964, 0.014719212427735329, 0.047019705176353455, 0.0007617402588948607, -0.025085194036364555, 0.06262880563735962, 0.005814329255372286, -0.042161405086517334, -0.0069627645425498486, -0.03184352442622185, -0.016017965972423553, 0.013961605727672577, -0.030616922304034233, 0.01702810823917389, -0.01342045795172453, 0.029438424855470657, 0.021104753017425537, -0.02076803892850876, -0.014779339544475079, -0.0034092292189598083, 0.007473848294466734, 0.009464068338274956, 0.029342221096158028, -0.009530209004878998, 0.007269414607435465, 0.013973630964756012, -0.051661547273397446, 0.01553694624453783, 0.023329470306634903, 0.004888365976512432, -0.016703419387340546, 0.04083859920501709, 0.03417647257447243, 0.00820139143615961, -0.018639525398612022, 0.04396522790193558, 0.00952419638633728, -0.01137011032551527, -0.00398344686254859, -0.012506520375609398, 0.004178861156105995, -0.017412923276424408, 0.022271225228905678, -0.02679281495511532, -0.016198348253965378, -0.025470009073615074, -0.010606491006910801, 0.030616922304034233, -0.024616198614239693, -0.013035641983151436, 0.020635757595300674, 0.020780064165592194, 0.047164011746644974, -0.025445958599448204, 0.014947696588933468, 0.010125471279025078, -0.029847290366888046, 0.007858664728701115, -0.012590698897838593, -0.005480621475726366, -0.007696319837123156, 0.0016670349286869168, 0.009902999736368656, -0.013817299157381058, -0.0018008186016231775, -0.04136772081255913, -0.01328817754983902, -0.06705418974161148, 0.022259199991822243, -0.032492902129888535, -0.03282961621880531, -0.022367430850863457, -0.020984496921300888, 0.013071718625724316, 0.000406988023314625, 0.029678933322429657, 0.022559838369488716, 0.04269052669405937, 0.02302883192896843, 0.012843234464526176, -0.029967546463012695, 0.011887206695973873, -0.004599753767251968, 0.01021566241979599, 0.010432121343910694, -0.030328311026096344, 0.01550086960196495, 0.015019849874079227, -0.00561891496181488, 0.018278760835528374, 0.017701536417007446, -0.04745262488722801, -0.0048673213459551334, -0.015260359272360802, 0.014851492829620838, 8.803042146610096e-05, -0.0014904104173183441, 0.006235221866518259, 0.032781511545181274, -0.017136337235569954, -0.0005760965868830681, 0.016967980191111565, 0.0010612503392621875, -0.02672066166996956, -0.006505795754492283, 0.013973630964756012, 0.01546479295939207, -0.039924658834934235, -0.0005576825933530927, 0.013612866401672363, 0.009079252369701862, 0.03189162537455559, -0.012259997427463531, -0.046610839664936066, 0.010877064429223537, 0.029342221096158028, -0.003565560793504119, -0.004653868731111288, -0.0026365909725427628, 0.0006241986411623657, -0.011418212205171585, -0.021008549258112907, -0.006914662662893534, -0.01826673373579979, -0.03889046609401703, 0.002054857322946191, -0.004497536923736334, -0.000747459998819977, -0.008977035991847515, 0.014454650692641735, -0.015921762213110924, -0.023678209632635117, 0.00789474043995142, 0.004686938598752022, -0.03670182451605797, 0.030304260551929474, 0.012308099307119846, -0.012518545612692833, 0.014971747994422913, 0.029799189418554306, 0.012735004536807537, -0.008568168617784977, -0.022199073806405067, 0.03925123065710068, 0.006036801263689995, -0.017400898039340973, -0.005856418516486883, -0.009163430891931057, 0.015548971481621265, 0.008183352649211884, 0.0026561322156339884, 0.012783106416463852, 0.01710026152431965, -0.011015358380973339, 0.018639525398612022, -0.004323167260736227, 0.013240075670182705, -0.004885359201580286, 0.0037669879384338856, -0.019685743376612663, 0.0027974320109933615, 0.007443784736096859, 0.017641408368945122, 0.01826673373579979, 0.0014393019955605268, -0.012578672729432583, -0.025229498744010925, -0.0004133765760343522, 0.01421414129436016, -0.021176906302571297, -0.03797652944922447, -0.015308461152017117, -0.017641408368945122, 0.02207881771028042, 0.0004652365460060537, -0.024868734180927277, 0.021345263347029686, 0.012109678238630295, -0.013961605727672577, 0.00822544191032648, -0.0017917995573952794, 0.025494059547781944, 0.006956751924008131, 0.018687626346945763, 0.009969139471650124, 0.01659519039094448, -0.005053716246038675, 0.009632425382733345, -0.007443784736096859, -0.005143907852470875, 0.012013474479317665, -0.002537380438297987, -0.001064256764948368, -0.010185598395764828, 0.02893335372209549, -0.03679803013801575, 0.018771804869174957, -0.01207360252737999, 0.008189365267753601, 0.005811322946101427, -0.018591422587633133, -0.0023374566808342934, 0.034777745604515076, 0.03186757490038872, -0.033478993922472, 0.015873659402132034, -0.017292669042944908, -0.023822516202926636, -0.004010504111647606, 0.03376760333776474, 0.025686468929052353, -0.005688061472028494, -0.0200946107506752, -0.010931179858744144, 0.018579397350549698, -0.013865401968359947, 0.019493335857987404, 0.005387424025684595, 0.023353520780801773, 0.005844392813742161, -0.014009707607328892, 0.007954868488013744, 0.018687626346945763, 0.012302086688578129, -0.005519704427570105, -0.020659809932112694, -0.00909729115664959, -0.005513691809028387, -0.029702985659241676, -0.0168597511947155, -0.01438249833881855, -0.013300202786922455, 0.03545117378234863, 0.008670385926961899, 0.013853375799953938, -0.0016114170430228114, 0.022126920521259308, 0.012602724134922028, 0.012566647492349148, -0.022800348699092865, -0.012831208296120167, 0.010095407254993916, -0.015945812687277794, 0.024183280766010284, 0.0240509994328022, -0.005065741948783398, -0.05132483318448067, -0.019757896661758423, 0.007329542189836502, -0.02259591408073902, -0.0023073928896337748, 0.030713127925992012, -0.02602318301796913, -0.015585048124194145, 0.016150247305631638, -0.002191647421568632, -0.01707620918750763, 0.015452767722308636, 0.03189162537455559, -0.023221241310238838, -0.02045537531375885, 0.007726383861154318, -0.013011591508984566, -0.004993589129298925, -0.0022277238313108683, 0.009945088997483253, -0.039491742849349976, 0.0189762394875288, -0.018399015069007874, 0.0426664724946022, -0.017557229846715927, 0.007900753989815712, -0.0009470081422477961, 0.011135612614452839, -0.008045059628784657, 0.008784627541899681, -0.01950536109507084, -0.004226963501423597, -0.0033070126082748175, -0.0009349826141260564, -0.021321211010217667, 0.02179020643234253, -0.0017091241898015141, -0.0038391409907490015, -0.011586569249629974, -0.0004911665455438197, 0.01569327712059021, -0.02426745928823948, -0.013973630964756012, 0.006734279915690422, 0.011069472879171371, 0.030496668070554733, -0.04528803378343582, 0.008862793445587158, -0.015849608927965164, -0.029390322044491768, 0.0038571790792047977, 0.0119052454829216, 0.0069808028638362885, 0.01455085538327694, 0.0027297884225845337, 0.023594031110405922, -0.0017346784006804228, 0.008706461638212204, 0.007918791845440865, -0.005480621475726366, 0.007660243660211563, 0.02679281495511532, 0.006926687899976969, -0.03434482961893082, 0.011664735153317451, -0.005225079599767923, 0.002537380438297987, -0.009205520153045654, -0.01717241480946541, 0.013600840233266354, 0.008766589686274529, 0.0018895067041739821, 0.02881309762597084, -0.01928890123963356, 0.0018639524932950735, 0.01802622526884079, 0.008351709693670273, 0.0042840843088924885, 0.005763221066445112, 0.009001086466014385, 0.03872210904955864, -0.007425746414810419, -0.015380614437162876, -0.025830773636698723, 0.0021570741664618254, 0.0050386846996843815, -0.0021660930942744017, -0.001143174129538238, 0.011069472879171371, 2.0516161384875886e-05, 0.009494132362306118, -0.009001086466014385, 0.014141988009214401, 0.04983367398381233, -0.007425746414810419, -0.0038962620310485363, 0.012211895547807217, 0.02045537531375885, -0.04119936376810074, -0.004353230819106102, -0.008237467147409916, -0.013240075670182705, 0.004356237594038248, 0.005955629050731659, -0.017304694280028343, -0.021513620391488075, -0.015320487320423126, -0.009776731953024864, 0.012891336344182491, 0.011881194077432156, 0.0042209504172205925, 0.01654708757996559, 0.019204722717404366, 0.011358085088431835, -0.015224282629787922, 0.002235239837318659, -0.0013355821138247848, -0.024507969617843628, 0.009289698675274849, 0.011610620655119419, 0.015825558453798294, -0.004305128939449787, -0.001546779996715486, -0.0317232683300972, 0.004470479674637318, -0.009379889816045761, 0.005312264431267977, 0.010582439601421356, -0.01593378745019436, -0.019890177994966507, -0.002523851813748479, 0.012205882929265499, -0.02412315271794796, 0.024111127480864525, -0.007022892124950886, 0.001573837362229824, -0.004641843028366566, -0.01581353321671486, -0.004933461546897888, -0.017665458843111992, -0.019818024709820747, -0.003646733006462455, 0.0015633150469511747, -0.04591336101293564, -0.03427267447113991, 0.007317516952753067, 0.00839379895478487, -0.022018691524863243, -0.0007335555274039507, 0.01664329133927822, 0.009782744571566582, 0.005122863221913576, -0.006217183545231819, 0.006015756633132696, -0.0008733519352972507, 0.0218142569065094, 0.023702260106801987, -0.042065199464559555, 0.003382171969860792, -0.013504636473953724, 0.005219066981226206, -0.01077484805136919, 0.020250942558050156, 0.008508041501045227, 0.004521587863564491, -0.019757896661758423, 0.009542234241962433, 0.002541890135034919, -0.023654159158468246, -0.006968777161091566, -0.006325413007289171, -0.0013679006369784474, -0.004599753767251968, -0.01434642169624567, -0.0004269052587915212, 0.0012596711749210954, -0.007840625941753387, 0.005318277515470982, 0.018988264724612236, -0.009001086466014385, 0.018615474924445152, 0.013685018755495548, 0.009506157599389553, -0.012278035283088684, 0.0011612123344093561, -0.03838539496064186, 0.008471964858472347, 0.003382171969860792, -0.037495508790016174, -0.004100695718079805, -0.007924804463982582, 0.010780860669910908, -0.027971312403678894, -0.02269211784005165, -0.0064637064933776855, -0.014057809486985207, -0.04093480110168457, -0.01192929595708847, 0.02329339273273945, 0.013624891638755798, 0.003069508820772171, 0.006614025216549635, -0.014671110548079014, 0.054162852466106415, 0.023750362917780876, 0.019709793850779533, 0.004091676324605942, -0.010792885906994343, 0.013937554322183132, 0.017040133476257324, 0.021369313821196556, 0.027923211455345154, -0.005997718311846256, -0.017473051324486732, 0.002271316247060895, 0.003210808616131544, 0.02385859191417694, 0.023714285343885422, 0.013240075670182705, 0.004389307461678982, -0.004389307461678982, 0.005029665306210518, 0.02619154006242752, 0.0011807538103312254, -0.004915423225611448, 0.024507969617843628, -0.014779339544475079, -0.0055377427488565445, 0.020804114639759064, -0.017412923276424408, 0.011394161731004715, -0.008063097484409809, 0.009421979077160358, 0.001249148859642446, 0.00779853668063879, -0.019180672243237495, -0.002108972053974867, -0.025494059547781944, 0.012722979299724102, -0.025638366118073463, 0.03302202373743057, -0.013023616746068, -0.016871776431798935, -0.012879310175776482, 0.0037699942477047443, 0.004813206382095814, -0.005700087174773216, -0.013300202786922455, -0.015067951753735542, 0.03679803013801575, -0.01688380166888237, 0.003508439753204584, -0.009235584177076817, -0.011628658510744572, 0.013829325325787067, -0.014502753503620625, 0.03848160058259964, 0.01067864429205656, 0.020058535039424896, -0.0012483972823247313, -0.03340683877468109, 0.009307737462222576, 0.010353955440223217, 0.021561721339821815, 0.020804114639759064, 0.047164011746644974, -0.019649667665362358, -0.012590698897838593, -0.02686496637761593, 0.015380614437162876, 0.024868734180927277, -0.010570414364337921, -0.0228123739361763, 0.020659809932112694, -0.015224282629787922, 0.01841104030609131, -0.0038661982398480177, -0.022607939317822456, -0.00037805165629833937, 0.004593741148710251, -0.009415966458618641, 0.008165314793586731, 0.007648217957466841, 0.007395682390779257, 0.037230949848890305, -0.009409953840076923, -0.009031150490045547, -0.01458693202584982, 0.015777455642819405, 0.006151043344289064, 0.03335873782634735, 0.032396696507930756, -0.014562880620360374, -0.01427426841109991, -0.003929332364350557, -0.012266010046005249, 0.029342221096158028, 0.011424224823713303, -0.013660968281328678, -0.007052955683320761, -0.013648943044245243, -0.008995073847472668, -0.02259591408073902, 0.01457490585744381, 0.007077006623148918, 0.028404230251908302, 0.018579397350549698, -0.0030514707323163748, 0.03436888009309769, -0.0042089251801371574, 0.011340046301484108, 0.019878150895237923, 0.01768951117992401, -0.0178578682243824, 0.034898001700639725, -0.02643204852938652, -0.013697044923901558, 0.00039608991937711835, -0.0026846928521990776, -0.009626412764191628, 0.0050687482580542564, 0.006283323746174574, -0.009409953840076923, -0.02050347812473774, -0.002108972053974867, -0.00011471199832158163, 0.013588814996182919, 0.004034555051475763, 0.00658997381106019, 0.018771804869174957, -0.014875543303787708, 0.01814647950232029, -0.022211099043488503, -0.0005328799597918987, -0.0017933027120307088, -0.018916111439466476, 0.015825558453798294, 0.0029417378827929497, -0.023064909502863884, -0.021417414769530296, -0.0066200378350913525, 0.012386265210807323, 0.020323095843195915, -0.01578948087990284, -0.04401332885026932, -0.04026137292385101, 0.009734642691910267, -0.016462909057736397, 0.022102870047092438, -0.023702260106801987, -0.015657201409339905, 0.0288852509111166, 0.010480223223567009, -0.018374964594841003, 0.041896842420101166, -0.027321936562657356, -0.009704578667879105, 0.008983048610389233, -0.014947696588933468, 0.0005644469056278467, 0.008345697075128555, 0.0431474931538105, -0.006553897634148598, 0.04745262488722801, 0.014971747994422913, 0.004629817325621843, -0.00794284325093031, 0.005841386504471302, 0.03165111690759659, 0.0028545530512928963, -0.013492611236870289, 0.011484352871775627, 0.016799623146653175, -0.0020443350076675415, 0.012494494207203388, 0.019818024709820747, 0.018843958154320717, 0.004533613566309214, -0.03655752167105675, -0.0431474931538105, 0.0009582820348441601, -0.025494059547781944, -0.010961242951452732, -0.01559707336127758, 0.018278760835528374, 0.005351347383111715, 0.009686539880931377, -0.021345263347029686, 0.0037850262597203255, -0.001010142033919692, -0.014959721826016903, -0.003177738282829523, 0.0288852509111166, 0.012722979299724102, -0.01640278287231922, 0.023594031110405922, 0.00906121451407671, 0.009349826723337173, -0.003258910495787859, 0.010414083488285542, 0.007666256278753281, 0.02890930138528347, -0.026889018714427948, -0.018447117879986763, 0.011027383618056774, -0.0010274286614730954, 0.008880832232534885, 0.000329761765897274, -0.001271696644835174, -0.017352797091007233, -0.013817299157381058, -0.00034498152672313154, -0.01581353321671486, 0.004287090618163347, -0.018519269302487373, 0.025445958599448204, -0.028476383537054062, 0.008387786336243153, -0.03780817240476608, 0.016703419387340546, 0.0010116451885551214, 0.01011945866048336, 0.006033794488757849, 0.004948493093252182, -0.0028635722119361162, 0.03925123065710068, 0.003078527981415391, 0.010041292756795883, -0.0006230712169781327, -0.04079049453139305, 0.0039022748824208975, 0.027297886088490486, -0.015488844364881516, -0.009115329012274742, -0.0094881197437644, -0.015476818196475506, 0.0023870617151260376, 0.025445958599448204, -0.02071993611752987, 0.00951217021793127, -0.03826514258980751, 0.0013265629531815648, 0.012951463460922241, -0.0288852509111166, -0.013889452442526817, 0.0031085917726159096, -0.024820631369948387, -0.004756085108965635, 0.01067864429205656, 0.0030394450295716524, 0.016390755772590637, 0.019565489143133163, 0.0228123739361763, -0.011177701875567436, 0.010438133962452412, -0.010137496516108513, 0.010528325103223324, -0.03824108839035034, 0.008135250769555569, -0.008231454528868198, -0.00889285746961832, -0.00725738937035203, -0.0029958526138216257, -0.01588568650186062, -0.023401623591780663, -0.02171805314719677, 0.007052955683320761, -0.0058654374442994595, -0.022583888843655586, 0.03917907923460007, -0.015356563962996006, -0.020864242687821388, 0.010456172749400139, -0.007984932512044907, -0.008754564449191093, 0.020058535039424896, 0.0361967533826828, 0.004960518795996904, -0.03441698104143143, 0.0200946107506752, 0.0019075449090451002, -0.006211170926690102, 0.009043175727128983, 0.009199507534503937, -0.01440654881298542, -0.0018248696578666568, 0.01693190447986126, -0.05517299473285675, -0.02259591408073902, 0.033719502389431, -0.009800782427191734, -0.0036226818338036537, -0.012722979299724102, -0.017473051324486732, 0.015729354694485664, -0.030665025115013123, 0.024556070566177368, -0.009001086466014385, 0.0089289341121912, 0.0019361055456101894, 0.024916836991906166, -0.0021871377248317003, -0.02179020643234253, -0.008754564449191093, 0.0060247755609452724, 0.0006726764258928597, 0.024868734180927277, -0.005243117921054363, -0.02657635509967804, 0.04629817605018616, -0.0001708936324575916, -0.0010830465471372008, -0.020443350076675415, 0.008111199364066124, -0.008694436401128769, 0.005354353692382574, 0.0007741415756754577, -0.01308374386280775, 0.004783142823725939, -0.015452767722308636, -0.0010018744505941868, -0.012686902657151222, -0.025975080206990242, 0.0005325041711330414, 0.011778977699577808, -0.0038571790792047977, 0.012398290447890759, 0.008135250769555569, 0.0009815813973546028, -0.01328817754983902, 0.0002465227444190532, 0.016270501539111137, -0.01461098250001669, -0.000890638621058315, -0.013240075670182705, -0.006039807572960854, 0.005591857712715864, -0.005360366776585579, -0.009554259479045868, -0.00031379039864987135, -0.017533179372549057, -0.009854896925389767, -0.005793284624814987, -0.008640321902930737, -0.013504636473953724, 0.002358501311391592, -0.009482107125222683, -0.0021104752086102962, -0.005976673681288958, -0.006265285424888134, -0.004335192963480949, 0.0010604987619444728, -0.014105911366641521, 0.01838698983192444, -0.004214937798678875, 0.017376847565174103, -0.014647059142589569, -0.00835772231221199, -0.005913539789617062, 0.00021645899687428027, -0.021321211010217667, -0.00998717825859785, 0.002555418759584427, 0.003319038078188896, -0.02326934225857258, 0.01771356165409088, 0.022331353276968002, 0.02400289848446846, -0.021465517580509186, -0.025590263307094574, -0.014190089888870716, -0.015476818196475506, 0.008129238151013851, 0.006926687899976969, 0.005152926780283451, -0.0026260686572641134, 0.021068675443530083, -0.0001694843958830461, 0.004584721755236387, -0.029654882848262787, 0.012999565340578556, 0.005152926780283451, 0.015116053633391857, -0.013829325325787067, 0.013865401968359947, 0.017449000850319862, -0.01334830466657877, -0.0023224246688187122, 0.014154013246297836, -0.004891372285783291, 0.00998717825859785, 0.008207404054701328, 0.0006677910569123924, 0.014995798468589783, 0.023582005873322487, -0.007383657153695822, -0.011658722534775734, -0.005651984829455614, 0.017701536417007446, -0.016258476302027702, -0.0045065563172101974, 0.010967256501317024, 0.02261996641755104, -0.0031266300939023495, -0.0022187046706676483, 0.0025403869803994894, 0.006093922071158886, -0.0019781948067247868, 0.014647059142589569, -0.029486525803804398, -0.00038218541885726154, -0.0016700413543730974, -0.014707186259329319, 0.015176180750131607, 0.024772530421614647, -0.008339684456586838, -0.032180238515138626, 0.004798174370080233, 0.006181106902658939, 0.009379889816045761, -0.00193009281065315, 0.016126194968819618, -0.028476383537054062, 0.015657201409339905, -0.003754962468519807, -0.007443784736096859, -0.012891336344182491, -0.021585771813988686, -0.010017241351306438, -0.004175854846835136, 0.0014310345286503434, 0.003061993047595024, -0.01714836247265339, -0.011195740662515163, -0.02445986680686474, -0.007287452928721905, 0.025782672688364983, 0.004326173570007086, -0.021537670865654945, 0.0071190958842635155, 0.027851058170199394, -0.0035445161629468203, 0.027273833751678467, 0.024940887466073036, 0.015212257392704487, -0.0017587293405085802, 0.004557664506137371, -0.011436250992119312, 0.00829759519547224, 0.018423065543174744, -0.015200232155621052, 0.008838742971420288, -0.0004415613366290927, 0.01999840699136257, -0.03333468735218048, -0.021537670865654945, 0.0013994675828143954, 0.009470080956816673, 0.0056339469738304615, 0.009596348740160465, -0.005432519596070051, -0.004515575245022774, -0.0025494059082120657, 0.012259997427463531, 0.003132642712444067, 0.018134454265236855, -0.005083780270069838, -0.020419299602508545, -0.002286348259076476, 0.016138220205903053, 0.006776369176805019, 0.022583888843655586, 0.0008710971451364458, -0.024844683706760406, 0.00573315704241395, 0.0002829750592354685, -0.032685309648513794, 0.006650101393461227, 0.004109714645892382, -0.006968777161091566, 0.020371196791529655, 0.00394737021997571, -0.020323095843195915, -0.0034002100583165884, -0.002686196006834507, -0.005074760876595974, 0.022920602932572365, -0.00177676766179502, 0.003625688375905156, 0.014202115125954151, 0.016462909057736397, -0.014707186259329319, -0.0021570741664618254, 0.0042209504172205925, -0.009181469678878784, 0.0030003623105585575, -0.01100333221256733, 0.021585771813988686, -0.007443784736096859, -0.008784627541899681, -0.009175456129014492, 0.009830846451222897, 0.0200946107506752, -0.008021008223295212, -0.006517820991575718, 0.008550130762159824, 0.02028701826930046, 0.00889285746961832, 0.030616922304034233, 0.018855983391404152, 0.004882352892309427, -0.0018278759671375155, -0.02145349234342575, -0.007377644069492817, -0.017088236287236214, -0.0007673772051930428, -0.008616270497441292, 0.029366271570324898, -0.012482468970119953, -0.012386265210807323, -0.007131121587008238, -0.013745146803557873, 0.010973269119858742, -0.030232107266783714, 0.0144426254555583, 0.01836293935775757, -0.012115691788494587, -0.004238988738507032, -0.008417850360274315, -0.0039052811916917562, -0.010732758790254593, 0.012187844142317772, 0.02852448634803295, 0.012927412986755371, -0.004936467856168747, -0.008099174126982689, -0.0015542958863079548, -0.009927050210535526, -0.028187772259116173, 0.01540466584265232, -0.013817299157381058, 0.0011709830723702908, -0.0052100480534136295, -0.009440017864108086, -0.0035144523717463017, 0.002191647421568632, 0.0027839031536132097, 0.024087077006697655, -0.0038782237097620964, 0.005585844628512859, -0.01073877140879631, -0.005766227375715971, -0.0011529448674991727, -0.027706751599907875, 0.022487685084342957, -0.022535787895321846, 0.007954868488013744, 0.014069834724068642, -0.005035677924752235, -0.010245726443827152, -0.01605404168367386, 0.010534337721765041, 0.02912576124072075, 0.01440654881298542, 0.0024877754040062428, -0.010341930203139782, 0.015657201409339905, 0.0004753830435220152, 0.005778252612799406, 0.008111199364066124, -0.013240075670182705, -0.0010785370832309127, -0.01902434043586254, -0.0012048047501593828, 0.004626811016350985, 0.00047801362234167755, -0.019204722717404366, 0.001812844187952578, 0.005793284624814987, -0.01540466584265232, 0.015092002227902412, -0.007582077756524086, -0.009367864578962326, -0.0015317481011152267, -0.006890611723065376, 0.007101057562977076, -0.012470443733036518, 0.008556143380701542, 0.011983410455286503, -0.012410315684974194, -0.00048515378148294985, 0.007804549764841795, 0.007515937555581331, 0.01955346390604973, -0.007161185145378113, 0.03359924629330635, -0.008850768208503723, -0.006710228975862265, 0.0038571790792047977, 0.0031025789212435484, 0.019060418009757996, 0.0035685671027749777, -0.0010650083422660828, -0.004491524305194616, 0.003908287733793259, -0.018771804869174957, 0.0013633910566568375, -0.0030634962022304535, -0.0025118263438344, 0.006872573401778936, -0.019108518958091736, -0.0020097617525607347, -0.006199145223945379, -0.0008042053086683154, -2.1408677639556117e-05, -0.014166039414703846, 0.001425021793693304, 0.0011536964448168874, 0.01719646528363228, 0.0031837511342018843, -0.006752318236976862, 0.003616669215261936, 0.012223920784890652, -0.00025479026953689754, -0.009728629142045975, 0.000651631795335561, 0.005745182745158672, -0.020419299602508545, -0.012314111925661564, -1.2553964552353136e-05, 0.0021119783632457256, 0.003944363910704851, 0.0009455049294047058, 0.030520718544721603, -0.000688835687469691, 0.014093886129558086, -0.0016159266233444214, 0.02878904715180397, 0.016511011868715286, 0.01593378745019436, -0.009728629142045975, 0.02317313849925995, -0.02252376079559326, 0.009854896925389767, 0.008580193854868412, 0.014911619946360588, 0.005432519596070051, 0.0029011517763137817, -0.002308896044269204, 0.006920675281435251, -0.02684091590344906, -0.0023675202392041683, 0.006193132605403662, 0.002758349059149623, 0.005657997913658619, 0.016486961394548416, -0.011195740662515163, 0.014911619946360588, 0.000154170673340559, 0.011069472879171371, -0.006403578910976648, 0.0034633439499884844, -0.009145393036305904, -0.0030680056661367416, -0.0018429078627377748, 0.01812242902815342, -0.027009272947907448, -0.02628774382174015, -0.00652984669432044, -0.0024682339280843735, 0.0019616596400737762, 0.0329979732632637, 0.020852217450737953, -0.004293103702366352, 0.019469285383820534, -0.0036527456250041723, -0.02640799805521965, 0.007972906343638897, -0.0055708130821585655, 0.003061993047595024, -0.004226963501423597, 0.011382135562598705, 0.027009272947907448, 0.0025945017114281654, 0.014021732844412327, -0.007738409098237753, 0.011754926294088364, 0.018182555213570595, -0.000167417514603585, 0.022138945758342743, 0.012939438223838806, 0.00444642873480916, 0.0034062229096889496, 0.00839379895478487, -0.02011866122484207, 0.01654708757996559, 0.011352072469890118, -0.014995798468589783, -0.0038211026694625616, 0.00565499160438776, -0.02369023486971855, -0.00969255343079567, -0.007984932512044907, 0.008171327412128448, 0.00561891496181488, -0.01595783792436123, -0.01819458231329918, -0.008147276006639004, -0.008802666328847408, 0.010750796645879745, 0.019565489143133163, 0.009373877197504044, 0.0029853302985429764, 0.017208490520715714, 0.017064183950424194, 0.015344537794589996, 0.01010743249207735, 0.021609824150800705, -0.023473776876926422, -0.02016676403582096, -0.028259925544261932, 0.012999565340578556, 0.008477977477014065, -0.01458693202584982, 0.010323891416192055, -0.015320487320423126, 0.018158504739403725, -0.005844392813742161, 0.0031536873430013657, -0.022776296362280846, 0.008363734930753708, 0.005441538989543915, 0.021104753017425537, -0.006614025216549635, -0.0014287796802818775, 0.012259997427463531, -0.018916111439466476, -0.022728195413947105, -0.020780064165592194, -0.002979317680001259, -0.009440017864108086, 0.001253658439964056, 0.014995798468589783, -0.005381411407142878, -0.009824833832681179, 0.03280556574463844, 0.006656114477664232, -0.012458418495953083, -0.00908526498824358, 0.0018414047081023455, 0.010125471279025078, -0.010209649801254272, -0.008682411164045334, -0.009325775317847729, 0.014154013246297836, -0.01434642169624567, 0.002555418759584427, 0.00915741827338934, -0.025470009073615074, -0.000861326465383172, 0.013588814996182919, -0.034922052174806595, 0.014671110548079014, 0.0035264778416603804, 0.003204795764759183, 0.009896986186504364, 0.006271298509091139, 0.003210808616131544, 0.00954824686050415, -0.00658997381106019, -0.03848160058259964, 0.005423500668257475, 0.0012318621156737208, 0.023714285343885422, 0.00043291799374856055, -0.0009605368250049651, -0.005576825700700283, -0.015043900348246098, -0.01783381588757038, 0.02395479567348957, -0.00826151855289936, 0.0009718107176013291, -0.014995798468589783, -0.001319047063589096, 0.003445305861532688, 0.03687018156051636, 0.0036587584763765335, 0.015368589200079441, 0.015308461152017117, 0.0036407201550900936, -0.0045516518875956535, 0.029606781899929047, -0.0020698891021311283, -0.003628694685176015, -0.003836134448647499, -0.007365618832409382, -0.006595986895263195, -0.017725586891174316, 0.0072273253463208675, -0.025085194036364555, -0.009403941221535206, -0.006000724621117115, -0.005483628250658512, -0.005465589929372072, 0.02254781313240528, -0.004713995847851038, 0.002154067624360323, 0.0079308170825243, 0.006764343939721584, 0.006111960392445326, 0.005008620675653219, 0.01569327712059021, 0.0069808028638362885, 0.007774485740810633, -0.0007530969451181591, -0.020010432228446007, 0.0019947297405451536, 0.0006899630534462631, 0.022187046706676483, -0.028235875070095062, -0.019637642428278923, 0.010919153690338135, -0.005282200872898102, 0.007437771651893854, -0.03429672494530678, -0.005817335564643145, 0.0010138999205082655, 0.012891336344182491, -0.012698927894234657, 0.00833367183804512, 0.005564799997955561, 0.023485802114009857, 0.010822949931025505, -0.020695885643363, 0.025662416592240334, -0.015344537794589996, 0.027562446892261505, 0.022367430850863457, -0.029606781899929047, 0.0010725242318585515, 0.027514344081282616, 2.5906496375682764e-05, -0.008327659219503403, -0.005856418516486883, -0.002417125506326556, 0.022175021469593048, 0.013564764522016048, -0.022920602932572365, 0.02378643862903118, 0.03398406505584717, -0.019252825528383255, 0.014069834724068642, 0.010672631673514843, 0.021465517580509186, 0.0021706027910113335, -0.006433642469346523, 0.008363734930753708, 0.012434367090463638, -0.0012453908566385508, 0.000500561436638236, 0.0022111888974905014, 0.016306577250361443, 0.016751522198319435, -0.0012574163265526295, -0.006391553208231926, 0.0061330050230026245, 0.007618154399096966, 0.00355353532359004, 0.0018925131298601627, 0.007558026816695929, -0.0019436214352026582, 0.008303607814013958, 0.011394161731004715, 0.02886120043694973, -0.0018549333326518536, -0.008784627541899681, 0.016438858583569527, -0.0018203600775450468, -0.0037519559264183044, -0.01077484805136919, 0.00800297036767006, 0.009139380417764187, -0.004163829609751701, -0.0011010848684236407, 0.013480585999786854, -0.019300928339362144, -0.024556070566177368, 0.0049755508080124855, 0.015621124766767025, 0.011947334744036198, -0.003475369419902563, 0.014935671351850033, -0.008754564449191093, 0.005534736439585686, -0.017461026087403297, 0.003962402231991291, 0.01955346390604973, -0.019276876002550125, 0.0009748170850798488, 0.0037850262597203255, -0.0006501285824924707, 0.016017965972423553, 0.013456534594297409, 0.029390322044491768, -0.022150970995426178, 0.00951217021793127, 0.0038601856213063, 0.01778571493923664, -0.020491452887654305, 0.006890611723065376, -0.0032438787166029215, 0.005661004222929478, -0.016535062342882156, -0.01186916884034872, 0.014033759012818336, -0.012674877420067787, 0.001991723431274295, 0.004834251012653112, -0.007263401988893747, 0.005973667372018099, 0.006559910252690315, 5.853036418557167e-05, -0.017376847565174103, -0.003992466256022453, 0.016078094020485878, -0.010077369399368763, -0.017845842987298965, -0.004647855646908283, 0.007028904743492603, -0.003394197439774871, -0.011189728043973446, 0.0056459722109138966, -0.0032528978772461414, 0.022187046706676483, 0.004837257321923971, -0.011207765899598598, -0.015488844364881516, -0.022247174754738808, -0.00519200973212719, 0.01802622526884079, 0.0038241089787334204, -0.009902999736368656, -0.011171689257025719, 0.025614315643906593, 0.012247972190380096, -0.0075760651379823685, -0.005561793688684702, -0.021561721339821815, -0.012241958640515804, -0.01087105181068182, 0.030159953981637955, 0.014779339544475079, 0.013829325325787067, 0.0020217872224748135, -0.028163721784949303, 0.024399738758802414, -0.016607215628027916, -0.003773000556975603, 0.00026080303359776735, 0.006686178036034107, 0.02028701826930046, 0.01133403368294239, -0.0017331752460449934, -0.022066792473196983, -0.018603447824716568, -0.019445233047008514, -0.002235239837318659, -0.005279194563627243, 0.007690307218581438, 0.0036437264643609524, -0.022018691524863243, -0.0038782237097620964, -0.004861308261752129, -0.002442679600790143, -0.011706824414432049, 0.009734642691910267, 0.00018038249982055277, 0.005330302752554417, -0.0069627645425498486, 0.00954824686050415, 0.0010582440299913287, 0.004945486783981323, 0.005170965101569891, 0.023678209632635117, 0.0033340698573738337, -0.00895298458635807, 0.013047667220234871, -0.015092002227902412, 0.0028996486216783524, 0.008411837741732597, -0.022631991654634476, 0.008435888215899467, 0.004353230819106102, 0.0073535931296646595, -0.013107795268297195, 0.00662605045363307, 0.015116053633391857, -0.005495653487741947, -0.006217183545231819, 0.03687018156051636, 0.0042089251801371574, -0.01640278287231922, 0.00045659320312552154, -0.019938278943300247, -0.006457693409174681, -0.0019376087002456188, -0.02271617017686367, -0.02033512108027935, -0.009890973567962646, 0.024519994854927063, -0.006902636960148811, 0.015224282629787922, 0.007912779226899147, 0.010997319594025612, 0.011496378108859062, -0.012939438223838806, 0.027009272947907448, -0.01802622526884079, -0.005492647178471088, -0.002875597681850195, -0.007768473122268915, 0.02635989524424076, -0.04088670015335083, 0.03804868087172508, -0.01437047217041254, 0.006601999513804913, -0.01461098250001669, -0.008748550899326801, 0.01805027574300766, 0.002438170136883855, -0.029847290366888046, 0.030496668070554733, 0.014647059142589569, -0.0037248986773192883, -0.01661924086511135, -0.002145048463717103, -0.002163086785003543, -0.028139669448137283, 0.006093922071158886, 0.016222398728132248, 0.008243480697274208, -0.017340771853923798, -0.019757896661758423, 0.008117212913930416, -0.0022743227891623974, -0.015140105038881302, -0.00563695328310132, 0.010504274629056454, 0.009614387527108192, -1.6030086044338532e-05, -0.010967256501317024, -0.001924079959280789, 0.0010387025540694594, 0.005396442953497171, -0.0032078020740300417, -0.03121819905936718, 0.008904882706701756, -0.024507969617843628, -0.011989424005150795, -0.010125471279025078, 0.0017286656657233834, -0.009632425382733345, -0.025253551080822945, -0.00042991162627004087, -0.0017587293405085802, -0.02154969610273838, -0.011340046301484108, 0.007672268897294998, -0.004461460746824741, -0.012308099307119846, -0.011718849651515484, 0.04521587863564491, 0.010853013955056667, 0.004296110011637211, 0.004476492293179035, 0.013528687879443169, 0.014959721826016903, -0.0012701934901997447, -0.025253551080822945, -0.005089792888611555, -0.04591336101293564, 0.025301652029156685, 0.0009620399796403944, 0.008093161508440971, -0.0020578636322170496, 0.011219791136682034, 0.0009312246693298221, -0.008171327412128448, 0.00945204310119152, 0.018326861783862114, -0.027249783277511597, 0.004680925980210304, 0.009770718403160572, -0.004266045987606049, 5.876523573533632e-05, 0.01322805043309927, -8.286321099149063e-05, 0.0012033015955239534, 0.019565489143133163, -0.01334830466657877, -0.005047703627496958, 0.0094881197437644, -0.009073239751160145, -0.004214937798678875, -0.005510685499757528, -0.013817299157381058, -0.029486525803804398, -0.01560909952968359, -0.0074618225917220116, 0.0025629347655922174, 0.002086424268782139, 0.0001443999499315396, -0.011033396236598492, -0.01317994762212038, 0.019793972373008728, -0.0010762822348624468, -0.006818458437919617, -0.019036367535591125, 0.005131882149726152, 0.018735729157924652, -0.011748913675546646, 0.015320487320423126, 0.0055257175117731094, 0.010197623632848263, 0.009205520153045654, 0.0158616341650486, 0.008550130762159824, 0.016583165153861046, 0.014081860892474651, -0.006872573401778936, 0.02257186360657215, 0.006036801263689995, -0.01841104030609131, -0.025397855788469315, 0.03448913246393204, 0.009536221623420715, -0.002239749301224947, -0.04059808701276779, -0.01661924086511135, -0.016282526776194572, -0.013733120635151863, 0.01948131062090397, 0.005450557917356491, -0.008123225532472134, -0.0018368951277807355, 0.008014995604753494, 0.008417850360274315, -0.021128803491592407, -0.0070890323258936405, -0.024014923721551895, 0.013841350562870502, 0.024087077006697655, -0.0027628587558865547, 0.0196977686136961, 0.006559910252690315, 0.01441857498139143, -0.0020217872224748135, -0.015633150935173035, 0.008898870088160038, 0.009806795045733452, -0.01451477874070406, 0.013588814996182919, -0.012338163331151009, -0.007876702584326267, -0.008514054119586945, -0.003064999356865883, -0.010630542412400246, 0.006169081665575504, -0.01207360252737999, -0.019878150895237923, 0.005922558717429638, -0.012518545612692833, -0.0019812011159956455, -0.015548971481621265, 0.00909729115664959, 0.008556143380701542, 0.0035054332111030817, -0.003150681033730507, 0.004653868731111288, 0.0058023035526275635, -0.0037218923680484295, 0.006752318236976862, -0.0001362263719784096, 0.001503939158283174, -0.0012867285404354334, -0.03424862399697304, -0.005555781070142984, 0.015320487320423126, -0.007888727821409702, -0.03852970153093338, -0.009319762699306011, -0.006764343939721584, -0.007696319837123156, -0.001287480117753148, -0.0154407424852252, -0.008718487806618214, 0.020912345498800278, -0.01038401946425438, -0.010005216114223003, 0.007389669772237539, -0.007570052519440651, -0.018182555213570595, 0.015548971481621265, 0.03138655424118042, 0.013937554322183132, 0.01017958577722311, -0.017773689702153206, -0.008063097484409809, 0.00394737021997571, 0.0035685671027749777, -0.010137496516108513, -0.007509924937039614, 0.0015753405168652534, 0.002744820434600115, -0.005450557917356491, -0.0013641426339745522, 0.019541436806321144, -0.007263401988893747, 0.0012468940112739801, -0.019818024709820747, 0.00102818023879081, -0.019950304180383682, -0.006247247103601694, 0.021225007250905037, -0.006746305618435144, 0.003818096360191703, 0.009590336121618748, 0.005065741948783398, -0.014069834724068642, 0.014466676861047745, 0.008471964858472347, 0.013492611236870289, -0.002117991214618087, -0.009884960949420929, -0.010690669529139996, -0.0065238336101174355, -0.008736525662243366, -0.0026681579183787107, 0.0009657979826442897, 0.0012671870645135641, 0.012927412986755371, 0.002541890135034919, -0.000622319639660418, 0.0027207694947719574, 0.011658722534775734, -0.004202912095934153, 0.0199743565171957, -9.921037417370826e-05, 0.02871689386665821, 0.008610257878899574, 0.019276876002550125, 0.030737178400158882, -0.023449724540114403, 0.02409910224378109, 0.022319328039884567, 0.007383657153695822, 0.0003389687917660922, 0.013697044923901558, -0.0027568459045141935, 0.0023359532933682203, -0.014887569472193718, 0.00548964086920023, 0.012951463460922241, 0.0016084106173366308, 0.017436975613236427, -0.0010499764466658235, 0.013660968281328678, -0.01143023744225502, 0.0051769777201116085, -0.02128513529896736, -0.000247462245170027, -0.040044914931058884, -0.004205918870866299, -0.019914228469133377, 0.04605766385793686, -0.01150239072740078, -0.0014182573650032282, 0.005237105302512646, 0.013841350562870502, 0.0013746649492532015, 0.005083780270069838, 0.02878904715180397, -0.007804549764841795, 0.005778252612799406, -0.02660040557384491, -0.008014995604753494, 0.027345987036824226, 0.008820704184472561, 0.009963126853108406, 0.0046448493376374245, -0.0004975550691597164, -0.0013874421129003167, -0.003974427934736013, 0.009842871688306332, -0.002023290377110243, 0.003195776604115963, -0.024820631369948387, 0.02871689386665821, -0.014178064651787281, -0.032685309648513794, 0.004936467856168747, -0.01083497516810894, -0.004076644312590361, -0.007732396479696035, 0.0015858628321439028, 0.03521066531538963, 0.0026305781211704016, -0.0015768436715006828, -0.020395247265696526, -0.019517386332154274, -0.0018098377622663975, -0.003367139957845211, -0.002271316247060895, -0.019445233047008514, 0.010660605505108833, 0.013107795268297195, -0.0012559131719172, -0.006565922871232033, -0.0015437735710293055, 0.021212982013821602, 0.012530570849776268, 0.011556505225598812, -0.01888003572821617, -0.0011236326536163688, -0.02373833768069744, 0.006042813882231712, -0.015043900348246098, 0.017773689702153206, -0.013276152312755585, 0.014202115125954151, -0.01790596917271614, 0.01829078607261181, 0.001377671374939382, 0.0001801946054911241, 0.0036527456250041723, 0.01129795704036951, -0.0054746088571846485, 0.009674514643847942, 0.0013453528517857194, 0.03682208061218262, 0.025710519403219223, -0.03850565105676651, -0.0033340698573738337, -0.015128078870475292, -0.014815416187047958, -0.021633874624967575, 4.3193154851906e-05, 0.020491452887654305, -0.0033430890180170536, 0.011508403345942497, 0.008099174126982689, 0.004774123430252075, -0.008165314793586731, -0.006343451328575611, -0.01780976541340351, 0.01031186617910862, -0.01717241480946541, -0.017533179372549057, 0.016967980191111565, -0.02298073098063469, 0.006391553208231926, 0.01461098250001669, 0.004819219000637531, 0.004837257321923971, 0.002105965744704008, 0.008033034391701221, 0.0006463706376962364, -0.006457693409174681, -0.004386301152408123, 0.01960156485438347, -0.002537380438297987, 0.0039052811916917562, -0.008664372377097607, -0.0314827598631382, -0.004533613566309214, 0.00010465943341841921, -0.010889090597629547, -0.01311982050538063, 0.004235982429236174, -0.008508041501045227, 0.014490727335214615, 0.015729354694485664, 0.008093161508440971, -0.02290857769548893, 0.021417414769530296, -0.030208056792616844, 0.02917386405169964, -0.008417850360274315, 0.00770233292132616, 0.003646733006462455, 0.00729346601292491, 0.012975514866411686, 0.0003680930531118065, -0.02859663963317871, -0.0053363158367574215, -0.0013611363247036934, -0.024820631369948387, -0.01919269748032093, -0.0043291798792779446, -0.020840192213654518, 0.008189365267753601, 0.009945088997483253, 0.007678281981498003, 0.016895826905965805, -0.002086424268782139, 0.023654159158468246, 0.00022228385205380619, 0.02188641019165516, 0.0034693568013608456, -0.013540713116526604, -0.0017271623946726322, 0.01066661812365055, -0.03369545191526413, 0.008021008223295212, 0.007515937555581331, 0.0011161167640239, 0.0006407336913980544, 0.006938713602721691, -0.017569255083799362, -0.0036527456250041723, 0.012302086688578129, -0.013372356072068214, 0.009578310884535313, 0.03357519581913948, 0.010510287247598171, 0.00896501075476408, 0.011604607105255127, 0.010630542412400246, -0.018014200031757355, -0.008267531171441078, 0.01083497516810894, -0.01133403368294239, -0.008435888215899467, 0.004223956726491451, 0.006051832810044289, -0.00505972933024168, 0.018254708498716354, -0.004515575245022774, 0.0016685380833223462, -0.02900550700724125, 0.0011995435925200582, -0.01209765300154686, -0.004121740348637104, -0.012542597018182278, -0.008315633051097393, 0.00666212709620595, -0.0287649966776371, -0.008255505934357643, -0.012458418495953083, -0.011616633273661137, -0.02286047488451004, 0.002713253488764167, -0.009361851960420609, -0.005095805507153273, -0.008291582576930523, 0.013817299157381058, 0.006704216357320547, -0.0044644670560956, 0.014791364781558514, 0.015729354694485664, -0.004287090618163347, 0.00601274985820055, -0.017557229846715927, -0.0018203600775450468, 0.00045546580804511905, 0.021080702543258667, 0.009295711293816566, -0.002755342749878764, -0.015801507979631424, 0.004413358401507139, 0.018567372113466263, 0.010582439601421356, 0.008045059628784657, 0.011045421473681927, -0.014021732844412327, -0.004801180679351091, -0.012939438223838806, -0.03521066531538963, -0.012151767499744892, -0.01021566241979599, 0.014178064651787281, -0.013432483188807964, 0.0029808208346366882, 0.016535062342882156, 0.003132642712444067, -0.01087105181068182, 0.008886844851076603, -0.0056970808655023575, -0.001127390656620264, 0.012999565340578556, -0.010095407254993916, 0.006517820991575718, -0.011460301466286182, 0.01657113991677761, -0.0009575304575264454, 0.004674913361668587, -0.006487757433205843, -0.0038661982398480177, -0.009957114234566689, -0.0014393019955605268, 0.006181106902658939, 0.0012747029541060328, -0.019541436806321144, 0.02193451300263405, 0.0019466278608888388, -0.00296729221008718, -0.003064999356865883, 0.02266806736588478, 0.015272385440766811, 0.011784990318119526, 0.002574960235506296, -0.003340082708746195, 0.009247609414160252, 0.0009485112968832254, 0.015007823705673218, -0.002014271216467023, -0.001988717122003436, 0.0007854154682718217, -0.0006024023750796914, -0.011586569249629974, -0.00022641761461272836, -0.011201753281056881, -0.0013318241108208895, -0.009277673438191414, 0.02035917155444622, -0.0024952911771833897, 0.0005775997997261584, -0.027129529044032097, 0.013721095398068428, 0.01807432621717453, 0.016799623146653175, 0.003195776604115963, 0.005606889259070158, -0.01559707336127758, -0.016703419387340546, -0.012091640383005142, -0.018711678683757782, -0.0028169734869152308, 0.004662887658923864, 0.01311982050538063, 0.009169443510472775, 0.009055201895534992, -0.03121819905936718, 0.01676354743540287, -0.022728195413947105, -0.0157413799315691, -0.015176180750131607, 0.010768835432827473, 0.002394577721133828, 0.011219791136682034, -0.007269414607435465, -0.029486525803804398, 0.009686539880931377, 0.00036565036862157285, 0.004169842228293419, 0.028380179777741432, -0.0011724862270057201, -0.014731237664818764, 0.0013686522142961621, 0.0005775997997261584, -0.006343451328575611, -0.015332512557506561, -0.005261156242340803, -0.006241234485059977, -0.003168719355016947, -0.05243118107318878, -0.010660605505108833, 0.0025539156049489975, -0.018014200031757355, -0.033478993922472, -0.020707910880446434, 0.017112286761403084, 0.022295277565717697, -0.013997682370245457, 0.012831208296120167, -0.00476209819316864, 0.024868734180927277, -0.006373514886945486, -0.0053032455034554005, -0.000890638621058315, 0.008387786336243153, -0.003727904986590147, -0.01759330742061138, 0.02842828258872032, 0.006373514886945486, 0.0055708130821585655, 0.004278071690350771, -0.0013911999994888902, -0.019914228469133377, -0.0023645139299333096, -0.010209649801254272, 0.005477615166455507, -0.014057809486985207, 0.021609824150800705, 0.0020849211141467094, -0.012338163331151009, -0.0005892494809813797, -0.02310098521411419, -0.00835772231221199, -0.007846638560295105, -0.002169099636375904, -0.0025313678197562695, 0.01153846736997366, -0.003042451571673155, -0.00267868023365736, -0.006734279915690422, -0.00958432350307703, 0.03386380895972252, 0.018627500161528587, -0.025951029732823372, -0.024868734180927277, 0.0012078111758455634, -0.024159230291843414, 0.0032318532466888428, -0.014899594709277153, 0.007209287490695715, -0.013552738353610039, 0.004383294843137264, 0.01067864429205656, 0.016739496961236, 0.013913503848016262, -0.01605404168367386, 0.0008981545106507838, -0.008820704184472561, -0.003430273849517107, 0.012807157821953297, -0.011797015555202961, 0.019661692902445793, 0.0032919805962592363, -0.008441900834441185, -0.00896501075476408, 0.01087105181068182, -0.00958432350307703, 0.011670747771859169, -0.01654708757996559, -0.0013648942112922668, 0.01776166446506977, 0.015633150935173035, -0.01700405776500702, 0.008646334521472454, 0.009632425382733345, 0.017268618568778038, -0.013468559831380844, 0.002140538999810815, 0.0024396732915192842, 0.003276948817074299, 0.007281440310180187, -0.008405824191868305, -0.0015257353661581874, 0.0029492538888007402, 0.0014828945277258754, 0.022126920521259308, 0.0213332362473011, -0.012326137162744999, 0.0005317525938153267, -0.004515575245022774, -0.019084468483924866, 0.007473848294466734, 0.006764343939721584, -0.030232107266783714, -0.0039864531718194485, 0.00832164566963911, -0.004344211891293526, -0.004617792088538408, 0.008231454528868198, -0.012987540103495121, -0.0027388075832277536, 0.010113445110619068, 0.0014144994784146547, -0.02200666442513466, 0.01773761212825775, -0.0012686902191489935, 0.010925167240202427, -0.018326861783862114, 0.016535062342882156, -0.0029733048286288977, 0.009289698675274849, -0.014093886129558086, -0.013035641983151436, -0.027875108644366264, -0.011201753281056881, 0.025590263307094574, -0.002907164627686143, -0.01902434043586254, 0.017821790650486946, -0.005700087174773216, -6.421429134206846e-05, -0.004422377794981003, 0.0062292092479765415, 0.001296499278396368, -0.003385178279131651, 0.006015756633132696, -0.011400174349546432, -0.0003472363168839365, -0.0045065563172101974, -0.014767314307391644, 0.009313750080764294, 0.011520429514348507, -0.011189728043973446, -0.019769921898841858, -0.0011687283404171467, -0.003394197439774871, -0.007311503868550062, -0.014983773231506348, -0.018447117879986763, -0.016066068783402443, 0.018771804869174957, 0.02257186360657215, -0.019673718139529228, -0.006553897634148598, -0.0027974320109933615, -0.02011866122484207, 0.014683135785162449, 0.015332512557506561, 0.010095407254993916, -0.009301723912358284, 0.012674877420067787, 0.013612866401672363, 0.002181125106289983, -0.006722254678606987, 0.007984932512044907, 0.0008177339914254844, -0.013071718625724316, 0.0033551144879311323, 0.003340082708746195, -0.0028966423124074936, -0.016330629587173462, -0.029775138944387436, 0.010035280138254166, -0.005185997113585472, 0.016138220205903053, 0.012903361581265926, -0.00969255343079567, 0.01671544462442398, -0.0068845986388623714, -0.02672066166996956, 0.021092727780342102, -0.012031513266265392, -0.011243842542171478, -0.0034904014319181442, 0.0014919135719537735, 0.008033034391701221, -0.028187772259116173, -0.022535787895321846, -0.01437047217041254, 0.007431759033352137, -0.0011446772841736674, -0.02157374657690525, 0.014755288138985634, 0.004187880549579859, 0.008303607814013958, -0.005757207982242107, 0.009902999736368656, -0.0026215589605271816, 0.005826354958117008, -0.008718487806618214, -0.03141060471534729, 0.021946538239717484, 0.01783381588757038, -0.00511985644698143, 0.004936467856168747, -0.02900550700724125, 0.0026892025489360094, -0.00576923368498683, 0.009421979077160358, -0.007419733330607414, 0.025878876447677612, 0.01836293935775757, 0.0074798609130084515, 0.017461026087403297, -0.014815416187047958, 0.009518183767795563, 0.020587656646966934, 0.019445233047008514, 0.007852651178836823, 0.0037760070990771055, 0.015043900348246098, -0.001323556643910706, -0.0020804114174097776, -0.010895103216171265, -0.006553897634148598, 0.017304694280028343, -0.0011191230732947588, -0.012674877420067787, 0.011586569249629974, -0.010594465769827366, -0.005558787379413843, 0.017845842987298965, -0.03333468735218048, -0.007539988495409489, -0.0019000290194526315, -0.0006365998997353017, -0.0014242702163755894, 0.03535497188568115, 0.007726383861154318, 0.007431759033352137, 0.0040946826338768005, 0.009169443510472775, -6.816015957156196e-05, 0.01431034505367279, -0.005513691809028387, 0.009884960949420929, -0.002574960235506296, -0.007990945130586624, 0.005216060671955347, 0.009734642691910267, 0.012410315684974194, -0.032949868589639664, 0.007738409098237753, -0.004704976920038462, -0.005219066981226206, 0.018423065543174744, 0.01084700133651495, 0.009115329012274742, 0.020659809932112694, -0.007010866422206163, 0.006908649578690529, -0.012235946021974087, 0.003797051729634404, -0.028283976018428802, -0.004891372285783291, 0.007738409098237753, 0.006427629850804806, -0.008634309284389019, 0.001982704270631075, -0.005071754567325115, 0.002862069057300687, 0.004205918870866299, -0.01100333221256733, -0.027514344081282616, 0.009764705784618855, 0.008766589686274529, 0.005035677924752235, 0.01705215871334076, 0.01315589714795351, -0.013504636473953724, 0.019818024709820747, 0.006782382261008024, 0.017473051324486732, 0.006451680790632963, -0.029630832374095917, 0.01207360252737999, 0.01014350913465023, 0.007022892124950886, -0.011484352871775627, -0.004662887658923864, 0.012819183059036732, -9.357342059956864e-05, -0.009337800554931164, -0.025518111884593964, 0.024988988414406776, -0.00103719939943403, -0.004777129739522934, -0.04584120586514473, -0.00842987559735775], "a4c2e637-bf95-40cb-b4de-78de8b49b6b9": [-0.03777313604950905, -0.019252929836511612, 0.005340666975826025, 0.012342593632638454, -0.01170461904257536, 0.009443284012377262, 0.009708580560982227, 0.007756758015602827, -0.00870424509048462, 0.010921363718807697, -0.0008108907495625317, 0.021059472113847733, 0.014477597549557686, -0.02895519509911537, -0.007800973951816559, 0.015816712751984596, -0.004901664797216654, 0.021741662174463272, 0.03302307054400444, -0.049142979085445404, 0.0531097911298275, -0.022739682346582413, -0.05230126902461052, 0.011628820560872555, 0.007782024331390858, -0.01868443749845028, -0.023775599896907806, 0.019455060362815857, -0.017206359654664993, -0.0020055135246366262, -0.0002084470761474222, 0.004096300806850195, 0.0067650554701685905, 0.0036099243443459272, 0.006468175910413265, 0.017686419188976288, 0.008085220120847225, -0.008887425996363163, -0.009203254245221615, -0.03896065428853035, -0.04828392341732979, 0.011281408369541168, 0.008066270500421524, 0.009455917403101921, -0.049951501190662384, -0.026731759309768677, 0.035499170422554016, -0.018090680241584778, -0.014288099482655525, 0.00822418462485075, 0.009620148688554764, 0.0011267196387052536, -0.005618596449494362, 0.010365504771471024, 0.013568010181188583, -0.0014836062910035253, -0.002307130256667733, 0.01152143906801939, -0.029157325625419617, -0.04755119979381561, 0.009986510500311852, 0.009121138602495193, 0.008394732140004635, -0.015450350008904934, -0.01229837816208601, -0.034286387264728546, 0.02923312410712242, -0.00900112371891737, -0.0554848238825798, -0.001166198286227882, 0.039718642830848694, 0.01220362912863493, -0.02431882545351982, 0.05005256459116936, 0.02381349913775921, -0.009866495616734028, 0.024862051010131836, 0.004137358628213406, 0.031203895807266235, 0.003464643144980073, -0.017054760828614235, -0.004996413365006447, 0.05106321722269058, -0.021463733166456223, 0.06554081290960312, 0.04125988855957985, 0.02387666516005993, -0.03974391147494316, 0.009910711087286472, -0.017395855858922005, -0.01632203720510006, 0.008281034417450428, -0.0038973288610577583, -0.0012593677965924144, -0.021564798429608345, 0.01996038667857647, -2.2737214749213308e-05, 0.014035437256097794, 0.02994058094918728, -0.014982923865318298, 0.022246988490223885, -0.004146833438426256, -0.019391894340515137, 0.018570739775896072, -0.0335283987224102, 0.0369393490254879, -0.0033793693874031305, -0.00713773351162672, -0.021590065211057663, 0.0245335903018713, -0.008047320879995823, -0.035246506333351135, 0.01375750731676817, -0.01918976381421089, -0.04891557991504669, -0.04649001732468605, -0.012020448222756386, 0.025784272700548172, -0.008476847782731056, -0.021653229370713234, 0.02359873615205288, 0.038632191717624664, 0.01170461904257536, 0.03721727803349495, -0.011079277843236923, 0.012134146876633167, 0.021059472113847733, 0.029460521414875984, 0.031052298843860626, 0.005258551333099604, 0.01223521213978529, -0.008432632312178612, 0.004348963964730501, 0.021526899188756943, -0.002321342471987009, 0.03221454843878746, 0.022373320534825325, 0.05588908493518829, -0.023586103692650795, 0.05027996376156807, -0.05583855137228966, -0.02855093404650688, 0.03100176528096199, -0.002046571345999837, 0.024773620069026947, 0.025354744866490364, -0.02549370937049389, 0.04729853942990303, 0.010390771552920341, 0.031608156859874725, -0.05942636728286743, -0.05005256459116936, 0.0009545928915031254, 0.0025408435612916946, -0.009803329594433308, 0.007346180267632008, -0.007371446583420038, 0.03342733159661293, -0.006155505310744047, 0.052250735461711884, 0.008047320879995823, -0.030016379430890083, -0.010776082053780556, -0.008312616497278214, 0.009613832458853722, 0.05050735920667648, 0.014869225211441517, 0.01872233860194683, 0.019568759948015213, 0.015804078429937363, 0.02802034094929695, 0.004080509301275015, 0.0025218939408659935, -0.031203895807266235, 0.022246988490223885, 0.013568010181188583, 0.02698442153632641, 0.009291686117649078, 0.018520208075642586, 0.010157058015465736, 0.02270178124308586, 0.011660403572022915, -0.037924736738204956, -0.026630694046616554, -0.007314597722142935, 0.03155762329697609, 0.013947004452347755, 0.020819442346692085, -0.018393876031041145, 0.004667951259762049, -0.002229752019047737, -0.02627696469426155, -0.024950483813881874, 0.021716395393013954, 0.014073336496949196, -0.03587816283106804, 0.0432811938226223, -0.004933247808367014, -0.0029561587143689394, 0.03759627416729927, -0.008078903891146183, -0.05204860493540764, -0.051998071372509, 0.039718642830848694, -0.01625887304544449, 0.018747603520751, -0.009639098308980465, -0.02083207480609417, 0.017699051648378372, -0.019050799310207367, 0.03554970398545265, -0.06695573031902313, 0.014300732873380184, -0.0009419597336091101, -0.007150366436690092, 0.0019960387144237757, -0.030370108783245087, 0.0007552258903160691, -0.003448851639404893, -0.014919757843017578, -0.045630961656570435, -0.025405278429389, -0.018848668783903122, -0.009519083425402641, -0.028222471475601196, -0.022625982761383057, -0.03595396503806114, -0.0029324714560061693, -0.05432257428765297, 0.0026403297670185566, 0.03830372914671898, 0.021994326263666153, -0.0008985332679003477, -0.027464482933282852, 0.015349284745752811, 0.038859590888023376, -0.012974251993000507, 0.03522124141454697, -0.008521064184606075, -0.009973877109587193, 0.0029324714560061693, 0.01251314114779234, 0.019379261881113052, 0.008179969154298306, 0.02095840685069561, 0.014123869128525257, -0.009076923131942749, 0.004652159754186869, 0.0268328245729208, -0.014325999654829502, 0.004450029227882624, 0.012778437696397305, -0.019922487437725067, -0.005767035763710737, -0.018393876031041145, -0.013580643571913242, -0.035650767385959625, -0.02978898212313652, -0.009676997549831867, -0.013050050474703312, 0.028070874512195587, -0.010232856497168541, 0.0444687120616436, 0.02627696469426155, 0.04477190598845482, 0.0034141105134040117, 0.026858091354370117, -0.016839997842907906, -0.026201166212558746, 0.04300326481461525, 0.000510853249579668, -0.0028345645405352116, 0.018482306972146034, -0.0006142872152850032, -0.0015175578882917762, 0.0032372463028877974, -0.006067073438316584, -0.0074346126057207584, -0.0019202397670596838, 0.0022550183348357677, 0.014048069715499878, -0.011211926117539406, 0.031355492770671844, 0.010416037403047085, -0.002195010893046856, 0.003197767771780491, -0.02680755779147148, -6.380731065291911e-05, -0.0024066162295639515, 0.016562068834900856, 0.017838016152381897, 0.020036187022924423, 0.02617589943110943, 0.0003071436076425016, 0.04262426868081093, 0.0334525965154171, -0.021324768662452698, 0.008003104478120804, -0.03438745066523552, 0.012462608516216278, -0.024609388783574104, 0.0020781541243195534, 0.02953631989657879, -0.004295273218303919, 0.020655211061239243, -0.004042610060423613, 0.021691130474209785, 0.008817942813038826, -0.010592902079224586, 0.03183555603027344, 0.008356832899153233, -0.05755665898323059, -0.03097650036215782, -0.023699801415205002, -0.004898506216704845, 0.007996788248419762, 7.426914089592174e-05, -0.021880626678466797, -0.0013391146203503013, -0.049951501190662384, -0.004364755470305681, -0.014515496790409088, -0.020010920241475105, 0.020250950008630753, 0.053867779672145844, -0.02080680802464485, 0.0308754350990057, 0.0033067287877202034, -0.002466623904183507, -0.006161822006106377, -0.009007440879940987, -0.008742144331336021, -0.05563642084598541, -0.000975911330897361, 0.0006794269429519773, -0.02462202124297619, -0.037823669612407684, -0.04287693277001381, 0.0012830549385398626, -0.006029173731803894, -0.042548470199108124, -0.02711075358092785, -0.018823403865098953, -0.0369393490254879, 0.03936491534113884, 0.009152721613645554, 0.012311010621488094, 0.0008132594521157444, -0.02630223147571087, -0.010390771552920341, 0.0007647007587365806, -0.04027450084686279, -0.008249451406300068, -0.015778811648488045, 0.050482094287872314, 0.013504844158887863, -0.028677264228463173, -0.008811626583337784, -0.005410149227827787, -0.007188266143202782, 0.028298269957304, -0.008489481173455715, 0.011060328222811222, 0.0023308172821998596, 0.019518226385116577, 0.002954579424113035, 0.013972271233797073, -0.004244740586727858, 0.017762217670679092, 0.033351533114910126, -0.013542743399739265, 0.01347957830876112, 0.016839997842907906, -0.02642856352031231, -0.008546330034732819, -0.04866291955113411, 0.03006691299378872, -0.0010319709545001388, -0.047399602830410004, 0.029334189370274544, -0.017029494047164917, 0.008963224478065968, 0.02323237434029579, 0.01340377889573574, 0.029081525281071663, -0.004803757648915052, 0.02842460200190544, -0.015993576496839523, -0.011174026876688004, 0.008590546436607838, -0.040097638964653015, -0.02994058094918728, -0.007238798774778843, 3.718391963047907e-05, -0.027186552062630653, 0.00044373961281962693, 0.0016628392040729523, -0.03696461394429207, -0.009070605970919132, 0.006979818921536207, -0.019909854978322983, -0.0006419222336262465, -0.018949734047055244, 0.00872319471091032, 0.03656035289168358, -0.051037952303886414, -0.01563984714448452, 0.0005001940298825502, 0.036585621535778046, -0.017244258895516396, 0.031052298843860626, -0.010479203425347805, 0.011230875737965107, 0.026504362002015114, 0.03223981335759163, 0.0009119559545069933, 0.027287617325782776, 0.01212782971560955, -0.0236619021743536, -0.015943042933940887, 0.0536656491458416, 0.053311921656131744, -0.0023339756298810244, 0.009803329594433308, -0.007352496962994337, -0.003136181039735675, 0.007971521466970444, 0.015387184917926788, 0.010510786436498165, -0.0027082329615950584, 0.01629677228629589, -0.02002355270087719, 0.007674642372876406, -0.005065895617008209, -0.00838209968060255, -0.05957796424627304, -0.0025566350668668747, -0.0040394519455730915, -0.011603553779423237, -0.00950013380497694, -0.022903911769390106, -0.01666313409805298, -0.008148386143147945, 0.02751501463353634, 0.025102082639932632, -0.00177653762511909, -0.0039194365963339806, 0.00754199456423521, 0.026605427265167236, 0.015879876911640167, 0.0190634336322546, 0.038733258843421936, -0.013782774098217487, 0.031178630888462067, 0.010921363718807697, -0.00014784741506446153, -0.026125367730855942, -0.00934221874922514, -0.0017670626984909177, -0.04583309218287468, -0.04406445100903511, -0.004146833438426256, 0.010750816203653812, 0.013391145505011082, -0.008274717256426811, -0.025380011647939682, 0.010662384331226349, 0.017838016152381897, 0.02444515749812126, 0.0024255660828202963, -0.0014157030964270234, -0.010896097868680954, -0.018431775271892548, 0.03332626819610596, 0.041992612183094025, -0.027312884107232094, -0.05518162623047829, 0.024546222761273384, -0.02123633585870266, 0.01579144597053528, 0.0023718751035630703, -0.039289116859436035, -0.01672629825770855, 0.04661634564399719, -0.03410952165722847, -0.002351346192881465, -0.011312991380691528, -0.02963738515973091, 0.022866012528538704, 0.005258551333099604, 0.00434580584987998, -0.006986135616898537, 0.006057598628103733, 0.02070574276149273, 0.012658422812819481, -0.025203147903084755, 0.006108131259679794, -0.009152721613645554, -0.007472511846572161, -0.034160055220127106, 0.036181360483169556, 0.0037741553969681263, -0.039415448904037476, 0.023927198722958565, -0.01744638942182064, -0.0017212675884366035, -0.03595396503806114, -0.002575584687292576, 0.009190620854496956, -0.003373052692040801, -0.019909854978322983, -0.012304694391787052, -0.037116214632987976, 0.013719608075916767, -0.011578287929296494, -0.0017560087144374847, -0.015172421000897884, 0.0037109896074980497, 0.031052298843860626, -0.01229837816208601, 0.004014185629785061, -0.01388383936136961, 0.011110860854387283, -0.00045795191545039415, -0.039693377912044525, -0.030269043520092964, -0.03181028738617897, -0.02263861708343029, 0.014477597549557686, 0.01409860234707594, -0.013113216497004032, 0.003808896755799651, 0.004705850966274738, 0.0001426164963049814, 0.02393983118236065, 0.004292115103453398, -0.007712542079389095, 0.009992826730012894, -0.008521064184606075, 0.035246506333351135, -0.01011915784329176, 0.005776510573923588, 0.030546972528100014, -0.01293635182082653, -0.011957282200455666, 0.02549370937049389, -0.004794282838702202, 0.03587816283106804, 0.0012633156729862094, 0.0227902140468359, -0.05275605991482735, -0.008824259974062443, -0.03398318961262703, 0.0013359562726691365, 0.017964348196983337, -0.04343279078602791, 0.032543011009693146, -0.011369841173291206, -0.0358276329934597, -0.01974562369287014, -0.036307692527770996, 0.01543771754950285, 0.0006190246785990894, -0.004544777795672417, -0.0045542530715465546, -0.013770140707492828, 0.01130035798996687, 0.02291654609143734, -0.007087200880050659, 0.01591777801513672, -0.006600824184715748, 0.035372838377952576, 0.039693377912044525, -0.028677264228463173, -0.0010359188308939338, 0.031481824815273285, -0.004244740586727858, -0.008464214392006397, -0.023118676617741585, -0.016839997842907906, 0.016119906678795815, -0.020263582468032837, 0.009689630940556526, -0.0057259779423475266, 0.02272704802453518, -0.002343450440093875, -0.007782024331390858, -0.03370526060461998, 0.011571971699595451, -0.016650499776005745, 0.03016797825694084, 0.020629944279789925, 0.03615609183907509, -0.008767410181462765, -0.01791381649672985, 0.0277424119412899, 0.0022613350301980972, 0.01100979559123516, 0.002790348371490836, 0.01462919544428587, -0.004099459387362003, 0.003151972545310855, 0.03279567509889603, 0.019328730180859566, -0.014932391233742237, 0.027312884107232094, 0.008647395297884941, 0.007996788248419762, 0.019644558429718018, 0.01940452866256237, -0.010194957256317139, 0.03544863685965538, 0.017231624573469162, -0.048991382122039795, 0.04232107475399971, -0.001543613849207759, -0.013896471820771694, 0.04163888469338417, -0.029612118378281593, 0.005710186902433634, 0.02391456440091133, -0.030420640483498573, 0.06493442505598068, -0.014667094685137272, -0.015715647488832474, 0.013568010181188583, -0.003054065629839897, -0.02751501463353634, -0.025165246799588203, -0.0001022496071527712, -0.0034393768291920424, -0.010782399214804173, 0.02114790305495262, -0.009879128076136112, 0.043735988438129425, 0.02832353673875332, 0.020111985504627228, 0.03317466750741005, -0.028096139430999756, -0.003673090133816004, -0.01388383936136961, -0.007504094857722521, -0.027312884107232094, 0.04608575627207756, -0.017926448956131935, 0.008577913045883179, 0.006891387049108744, 0.022550184279680252, 0.04366018995642662, -0.04512563347816467, -0.05351405218243599, -0.021274235099554062, 0.02640329673886299, 0.025973768904805183, -0.000113402318675071, -0.023762967437505722, 0.007175632752478123, 0.036838285624980927, -0.004181574564427137, 0.02832353673875332, 0.04823338985443115, 0.0070619345642626286, -0.00333831156603992, 0.015513516031205654, 0.004326856229454279, 0.04206841066479683, -0.01629677228629589, 0.01921503059566021, 0.012405759654939175, 0.025139981880784035, 0.014768159948289394, -0.0070619345642626286, -0.003849954344332218, 0.02151426486670971, 0.009695947170257568, -0.018242277204990387, -0.021286869421601295, -0.025405278429389, 0.002420828677713871, 0.005751244258135557, 0.011774102225899696, -0.020781543105840683, 0.0022581766825169325, 0.014515496790409088, -0.028525667265057564, 0.009260104037821293, -0.0016975804464891553, 0.046995341777801514, -0.017901182174682617, -0.000712588953319937, 0.014818692579865456, 0.010024409741163254, 0.00294194626621902, 0.003556233597919345, -9.558759484207258e-05, 0.016827363520860672, -0.000285825168248266, -0.00022897595772519708, 0.008855842985212803, -0.03367999568581581, -0.02923312410712242, -0.011527755297720432, -0.008925325237214565, -0.005353299900889397, -0.0031882929615676403, 0.01579144597053528, -0.015564048662781715, -0.018494941294193268, 0.03398318961262703, -0.0029972163029015064, 0.0034141105134040117, 0.02855093404650688, -0.0029308923985809088, 0.021729029715061188, 0.03951651230454445, 0.023548204451799393, -0.009999142959713936, 0.019859321415424347, 0.0010832931147888303, 0.00017528505122754723, 0.011647770181298256, 0.014313366264104843, -0.005220652092248201, -0.03827846422791481, -0.045630961656570435, 0.03299780562520027, -0.0007023245561867952, 0.04287693277001381, -0.0015625635860487819, -0.005056420806795359, 0.03476644679903984, 0.015854611992836, 0.004497403744608164, 0.009310636669397354, -0.013593276031315327, 0.01999828591942787, -0.01223521213978529, -0.0025945345405489206, 0.023889299482107162, -0.022335421293973923, 0.026782291010022163, 0.016877897083759308, 0.0052396017126739025, -0.0004299221036490053, 0.010416037403047085, -0.006022857502102852, -0.005072212312370539, 0.011919382959604263, 0.023800866678357124, 0.030925966799259186, 0.03855639323592186, -0.029687916859984398, 0.02306814305484295, 0.04057769849896431, -0.0340842567384243, -0.013845939189195633, 0.010327605530619621, -0.009525399655103683, -0.009165355004370213, 0.02465992048382759, 0.014742893166840076, -0.010599218308925629, -0.024457789957523346, -0.041992612183094025, -0.03021850995719433, 0.0038025800604373217, -0.01408596895635128, 0.05568695440888405, 0.02923312410712242, -0.004775333218276501, 0.0052396017126739025, 0.012070980854332447, 0.034160055220127106, 0.03855639323592186, -0.004475295543670654, 0.0011796209728345275, 0.041588351130485535, -0.0026403297670185566, -0.021261602640151978, 0.009133771993219852, -0.025139981880784035, -0.01744638942182064, 0.00025325530441477895, -0.01868443749845028, 0.024672554805874825, -0.013226915150880814, 0.011003479361534119, 0.030698569491505623, -0.011028745211660862, -0.0070303515531122684, 0.005204860586673021, 0.014603928662836552, 0.007579893805086613, 0.0181917455047369, -0.017054760828614235, 0.005293292459100485, 0.010087575763463974, -0.04419077932834625, 0.002405037172138691, 0.01387120597064495, 0.00046979551552794874, -0.015854611992836, 0.03855639323592186, 0.02008671872317791, 0.0006814008811488748, 0.009676997549831867, 0.029612118378281593, 0.014780793339014053, -0.02412932924926281, -0.005103795323520899, -0.00478164991363883, -0.014667094685137272, -0.036863550543785095, 0.03183555603027344, -0.023800866678357124, -0.021817460656166077, -1.2392583812470548e-05, 0.015172421000897884, -0.00397312780842185, -0.023270273581147194, -0.007390396669507027, 0.004175258334726095, -0.004266848787665367, 0.006998768541961908, -0.022310154512524605, -0.01757272146642208, 0.002806139877066016, -0.027818210422992706, -0.0026308547239750624, 0.02055414579808712, 0.0032198757398873568, -0.014149134978652, 0.0011946228332817554, 0.024091430008411407, 0.018494941294193268, -0.013580643571913242, -0.03855639323592186, 0.016145173460245132, -0.05447417125105858, 0.01887393556535244, -0.031734488904476166, -0.02148899994790554, -0.01542508415877819, -0.016284137964248657, 0.026630694046616554, -0.013542743399739265, 0.014288099482655525, -0.0008780043572187424, 0.04881451651453972, 0.050633691251277924, 0.017749585211277008, -0.02658016048371792, 0.00012149543181294575, 0.0020671002566814423, -0.01785065047442913, 0.03102703206241131, -0.023282907903194427, 0.022739682346582413, -0.011957282200455666, -0.0024634655565023422, 0.0021902734879404306, 0.030698569491505623, -0.0181917455047369, -0.003033536719158292, -0.008167335763573647, 0.01181831769645214, 0.0007094306638464332, 0.009462234564125538, 0.00751041155308485, -0.0003130654222331941, 0.0038941705133765936, -0.006695572752505541, 0.020541511476039886, -0.011502488516271114, -0.018583372235298157, 0.0038436378818005323, 0.008849525824189186, 0.0028077189344912767, -0.038227930665016174, -0.020794175565242767, 0.009260104037821293, 0.006651356816291809, 0.029991112649440765, 0.0199351217597723, -0.04141148552298546, 0.010289706289768219, 0.03115336410701275, -0.012039397843182087, -0.004592152312397957, -0.015071355737745762, 0.024394625797867775, 0.004945880733430386, -0.01016969047486782, 0.0031235478818416595, -0.03572656586766243, -0.034842245280742645, 0.00791467260569334, 0.006581874564290047, -0.021059472113847733, -0.02272704802453518, -0.010675016790628433, -0.015273486264050007, -0.021729029715061188, 0.010896097868680954, 0.010845565237104893, -0.013302713632583618, 0.021817460656166077, 0.025733739137649536, -0.004099459387362003, -0.002992478897795081, 0.005694395396858454, 0.006284995470196009, -0.013492210768163204, -0.027818210422992706, 0.02935945615172386, 0.04681847617030144, -0.0016170439776033163, 0.01812857948243618, -0.0008065481088124216, -0.0067334724590182304, 0.02176692895591259, 0.019480327144265175, -0.011319308541715145, 0.007131416816264391, -0.010416037403047085, 0.02229752019047737, -0.015058722347021103, 6.138924800325185e-05, 0.014338632114231586, 0.012810020707547665, -0.03744467720389366, 0.012197312898933887, -0.0035151757765561342, -0.012456292286515236, -0.024773620069026947, -0.009304319508373737, -0.0027650820557028055, 0.0015309806913137436, -0.0030161661561578512, -0.0039320699870586395, -0.010081258602440357, -0.03625715896487236, -0.018179111182689667, -0.009929660707712173, 0.011237192898988724, -0.009083239361643791, -0.047096408903598785, 0.034842245280742645, -0.014945023693144321, -0.012974251993000507, -0.011123494245111942, 0.008186285383999348, 0.011565654538571835, -0.012178362347185612, -0.007301964331418276, 0.022272255271673203, 0.014325999654829502, -0.01900026760995388, 0.032896738499403, -0.025973768904805183, -0.0052553932182490826, 0.0048195491544902325, -0.005252234637737274, -0.0065187085419893265, -0.028222471475601196, 0.01576617918908596, -0.051012687385082245, 0.002217118861153722, -0.020781543105840683, 0.018608639016747475, 0.011976232752203941, -0.0017291633412241936, 0.030092177912592888, 0.0031582890078425407, 0.036181360483169556, -0.010131791234016418, 0.0058617847971618176, -0.03021850995719433, -0.017231624573469162, 0.007939938455820084, 0.014591295272111893, 0.013365879654884338, 0.008647395297884941, -0.027969809249043465, 0.0023497671354562044, 0.014704993925988674, -0.00667030643671751, 0.00831893365830183, 0.009039022959768772, 0.003448851639404893, -0.00822418462485075, -0.010750816203653812, -0.006215512752532959, -0.002867726609110832, 0.007289331406354904, 0.016069374978542328, -0.0076241097413003445, -0.0032498794607818127, 0.005580696742981672, -0.006689256522804499, -0.005697553511708975, 0.02285338006913662, -0.01380803994834423, 0.015071355737745762, -0.01210888009518385, -0.005220652092248201, 0.006300786975771189, -0.00833156704902649, -0.004844815470278263, -0.005994432605803013, -0.021274235099554062, 0.011843584477901459, 0.002858251566067338, -0.024356724694371223, 0.026251699775457382, 0.02589797042310238, 0.010580268688499928, -0.07003822177648544, -0.029435254633426666, 0.02951105311512947, -0.032820940017700195, 0.0026134841609746218, 0.018747603520751, -0.030673304572701454, -0.0039194365963339806, 0.008950591087341309, 0.009651731699705124, -0.00434580584987998, 0.009601199068129063, 0.010479203425347805, -0.027843477204442024, -0.019985653460025787, 0.01186253409832716, -0.022209089249372482, -0.015273486264050007, -0.02204485796391964, 0.006916653364896774, -0.01959402486681938, 0.013997537083923817, -0.022310154512524605, 0.037015147507190704, -0.010902414098381996, -0.012146780267357826, 0.0034520099870860577, -0.010643434710800648, -0.006411327049136162, 0.0018649697303771973, 0.0029087841976433992, -0.03423585370182991, -0.011950965970754623, 0.007036668248474598, 0.00314881419762969, 0.0033856858499348164, -0.005264868028461933, 0.008148386143147945, -0.00627236207947135, 0.005568063817918301, -0.022474385797977448, -0.010693967342376709, -0.011793051846325397, 0.006695572752505541, 0.0013675391674041748, 0.008874792605638504, -0.03206295147538185, 0.013252181001007557, -0.023295540362596512, -0.005252234637737274, -0.005365933291614056, -0.0002050914044957608, -0.0010122316889464855, 0.01601884327828884, 0.008464214392006397, 0.008836893364787102, -0.011534071527421474, 0.01064975094050169, -0.0059249503538012505, 0.0015199265908449888, 0.008817942813038826, 0.011849900707602501, -0.02642856352031231, 0.0022439644671976566, -0.005561747122555971, -0.0076241097413003445, 0.01299951784312725, -0.02415459416806698, 0.013429045677185059, 0.0009964401833713055, -0.000564149406272918, -0.008375782519578934, 0.026731759309768677, -0.013062683865427971, 0.0022929178085178137, 0.010858197696506977, 0.03534757345914841, -0.017218992114067078, 0.01462919544428587, -0.0020718376617878675, 0.03274514153599739, -0.01108559500426054, 0.010832931846380234, 0.023093409836292267, -0.01021390687674284, 0.006493442226201296, -0.013226915150880814, -0.004033135250210762, 0.006594507489353418, -0.010826614685356617, 0.008142068982124329, -0.005814410280436277, 0.013782774098217487, 0.041057758033275604, -0.00869161169975996, -0.0006715312483720481, 0.008413681760430336, 0.031203895807266235, -0.030370108783245087, 0.001429915428161621, 0.01027707289904356, -0.027464482933282852, 0.0021776403300464153, 0.00588389253243804, 0.0002984583261422813, -0.009948610328137875, 0.01179936807602644, -0.008167335763573647, 0.01706739515066147, -0.002763502998277545, -0.010567635297775269, 0.02751501463353634, 0.024457789957523346, 0.023434504866600037, -0.009335902519524097, 0.00664504012092948, 0.005836518481373787, -0.004503720439970493, -0.003218296682462096, 0.0250894483178854, 0.019252929836511612, -0.008375782519578934, 0.025506343692541122, -0.01738322339951992, -0.0016912638675421476, 0.009506450034677982, 0.01617044024169445, 0.005173277575522661, -0.0044310796074569225, -0.03572656586766243, -0.0011496172519400716, 0.007068250793963671, -0.01999828591942787, 0.020819442346692085, -0.01996038667857647, -0.009917028248310089, -0.010359188541769981, -0.01548825018107891, 0.012708955444395542, 0.0020197259727865458, -0.011262458749115467, 0.025923237204551697, 0.009215887635946274, -0.037672072649002075, -0.023030243813991547, 0.0022581766825169325, -0.0004903243971057236, -0.008432632312178612, 0.0003128680109512061, 0.03314940258860588, -0.009057973511517048, 0.005707028321921825, 0.005596488248556852, 0.003189872018992901, 0.01189411710947752, 0.003008270403370261, 0.02721181884407997, -0.04583309218287468, -0.0026355923619121313, -0.02055414579808712, -0.0245335903018713, -0.0164483692497015, -0.0009616990573704243, 0.004418446682393551, -0.0051322197541594505, -0.012254161760210991, 0.013972271233797073, -0.03246721252799034, 0.004033135250210762, 0.002575584687292576, 0.0025787430349737406, -0.01685263030230999, -0.005994432605803013, -0.017080027610063553, -0.008211551234126091, -0.002725603524595499, -0.013568010181188583, 0.0019344520987942815, 0.020503612235188484, -0.011622504331171513, 0.011559338308870792, 0.0029908998403698206, 0.003723622765392065, 0.0065313419327139854, 0.000796678417827934, -0.005681762006133795, 0.012765804305672646, -0.016183072701096535, -0.010826614685356617, -0.006960869301110506, -0.01955612562596798, -0.009348535910248756, -0.03784893825650215, 0.0002321342471987009, -0.003426743671298027, -0.02819720469415188, -0.046439483761787415, -0.0065629249438643456, 0.014755526557564735, 0.015968309715390205, -0.0001263315643882379, 0.003884695703163743, 0.00800942163914442, 0.04664161428809166, 0.014313366264104843, 0.015159787610173225, 0.00708088418468833, -0.021602697670459747, -0.014477597549557686, -0.024950483813881874, 0.0397944413125515, 0.003875220660120249, -0.01959402486681938, -0.03453905135393143, 0.009083239361643791, 0.015096621587872505, 0.005476473364979029, 0.02708548679947853, -0.005422782618552446, -0.00315670995041728, -0.007371446583420038, -0.00510063674300909, 0.018697071820497513, -0.008236818015575409, -0.014692360535264015, 0.04570676013827324, 0.005280659534037113, -0.0026687541976571083, 0.02217119000852108, -0.030925966799259186, 0.01102242898195982, 0.0050374711863696575, 0.02142583392560482, -0.005350141786038876, 0.023270273581147194, 0.018330710008740425, -0.002240806119516492, -0.03489277884364128, 0.010933997109532356, -0.03370526060461998, 0.022411219775676727, -0.004873239900916815, -0.019227664917707443, -0.01846967451274395, -0.021185804158449173, 0.0034741179551929235, -0.024584122002124786, -0.031102830544114113, 0.001410176046192646, 0.01016969047486782, -0.02036464773118496, 0.004099459387362003, -0.017749585211277008, -0.032290346920490265, -0.0005230916431173682, -0.02232278697192669, 0.037520475685596466, 0.0014757105382159352, 0.019391894340515137, -0.0039289118722081184, -0.011698302812874317, 0.005624912679195404, -0.021905893459916115, -0.006910336669534445, 0.021160537376999855, 0.014717627316713333, -0.012209945358335972, -0.009335902519524097, 0.009020073339343071, 0.021880626678466797, 0.012835286557674408, -0.024116694927215576, -0.02306814305484295, -0.0002613484102766961, -0.0018854986410588026, 0.022550184279680252, -0.007087200880050659, -0.030673304572701454, 0.010352871380746365, 0.00509116193279624, -0.03421058878302574, 0.011932016350328922, -0.0011654086410999298, -0.026529628783464432, 0.040906161069869995, -0.006000749301165342, -0.015614581294357777, -0.01461656205356121, 0.00041649938793852925, -0.013391145505011082, 0.02642856352031231, 0.01139510702341795, -0.006986135616898537, -0.009298003278672695, -0.0017133718356490135, -0.0245335903018713, 0.008394732140004635, 0.02080680802464485, -0.011597237549722195, -0.0066260905005037785, -0.01787591725587845, -0.027565548196434975, -0.032441943883895874, 0.020137250423431396, 0.015399817377328873, 0.013530110940337181, 0.015526149421930313, 0.013176382519304752, 0.017825383692979813, 0.015210320241749287, 0.008678978309035301, 0.015690380707383156, -0.0029245757032185793, -0.010839248076081276, 0.02534211240708828, -0.009443284012377262, -0.02102157287299633, 0.007131416816264391, 0.00800942163914442, -0.03231561556458473, -0.004983780439943075, 0.00254558096639812, -0.007289331406354904, 0.01170461904257536, 0.009348535910248756, -0.00010205221769865602, 0.012664739042520523, 0.024647288024425507, 0.0015680905198678374, -0.004029976669698954, 0.002867726609110832, 0.006506075616925955, -0.015816712751984596, -0.011603553779423237, 0.012588940560817719, -0.01791381649672985, 0.023333439603447914, 0.008091536350548267, -0.0150208231061697, -0.009879128076136112, -0.012146780267357826, -0.014995556324720383, 0.006619773805141449, -0.008868475444614887, -0.052250735461711884, -0.024862051010131836, 0.017496921122074127, -0.009310636669397354, 0.027464482933282852, -0.04325592890381813, -0.0023624002933502197, 0.014022803865373135, 0.004456345923244953, 0.012690005823969841, 0.03474118188023567, -0.0010501311626285315, 0.015172421000897884, 0.005397516302764416, -0.008666344918310642, -0.00710615050047636, 0.01537455152720213, 0.008697927929461002, -0.009550666436553001, 0.041310422122478485, 0.010668700560927391, -0.008798993192613125, -0.005410149227827787, -0.0005191437667235732, 0.0219185259193182, -0.002359241945669055, -0.0317850224673748, 0.009354852139949799, 0.0036225575022399426, 0.012449976056814194, 0.017926448956131935, 0.015260852873325348, 0.003739414270967245, -0.0038625875022262335, -0.011963599361479282, -0.029334189370274544, -0.001665997551754117, -0.011319308541715145, 0.008836893364787102, 0.00831893365830183, 0.008097853511571884, 0.007011401932686567, 0.008540013805031776, -0.02372506819665432, -0.016284137964248657, -0.00838209968060255, 0.004611101932823658, -0.010971896350383759, 0.021185804158449173, -0.005621754564344883, -0.014667094685137272, 0.0007196951191872358, 0.013782774098217487, -0.009190620854496956, 0.013732241466641426, 0.007554627489298582, 0.003884695703163743, -0.0015767758013680577, -0.026908623054623604, -0.03355366364121437, -0.005602804943919182, -0.0164483692497015, 0.00912745576351881, -0.008483164943754673, -0.0005748086259700358, -0.015564048662781715, -3.456846025073901e-05, 0.008123119361698627, 0.0011883062543347478, -0.0013422728516161442, -0.012923719361424446, 0.009083239361643791, -0.04947144165635109, 0.007093517109751701, -0.03479171171784401, 0.004127883818000555, 0.011932016350328922, 0.015286119654774666, 0.013732241466641426, 0.0046205767430365086, -0.011913066729903221, 0.017016861587762833, -0.015450350008904934, -0.006202879827469587, 0.013037417083978653, -0.01955612562596798, -0.013568010181188583, 0.020945772528648376, 0.0007943097152747214, -0.028677264228463173, 0.0005459892563521862, 0.011129810474812984, -0.006022857502102852, 0.03501911088824272, -0.026782291010022163, -0.004304748028516769, -0.02761607989668846, 0.019631925970315933, 0.03476644679903984, 0.0005029575549997389, 0.007617793511599302, 0.0025866387877613306, -0.01989722065627575, 0.006401852238923311, 0.01186253409832716, 0.018646538257598877, 0.025759005919098854, 0.021653229370713234, 0.009670681320130825, -0.0042131575755774975, 0.03709094598889351, 0.0011693565174937248, 0.031608156859874725, -0.028929928317666054, 0.001650206046178937, -0.007276698015630245, 0.002375033451244235, -0.010719233192503452, 0.002817193977534771, -0.007737808395177126, -0.016776831820607185, -0.006512392312288284, 0.007131416816264391, 0.008963224478065968, -0.012778437696397305, 0.023548204451799393, -0.008792676962912083, -0.016751565039157867, 0.01872233860194683, -0.008116803131997585, -0.02061731182038784, 0.036484554409980774, 0.020061451941728592, 0.004945880733430386, -0.020010920241475105, 0.005729136522859335, 0.022436486557126045, -0.00294984201900661, -0.0021855360828340054, 0.008805310353636742, -0.0018839194672182202, -0.0010540790390223265, 0.022398585453629494, -0.0427253358066082, -0.01229837816208601, 0.015905143693089485, -0.02291654609143734, 0.02204485796391964, -0.029561586678028107, -0.0009380118572153151, -0.014932391233742237, -0.012860553339123726, 0.011035062372684479, -0.004001552239060402, 0.005438573658466339, -0.006771371699869633, -0.025228412821888924, -0.0038973288610577583, -0.0273886825889349, 0.012525774538516998, 0.012367860414087772, -0.00630394509062171, 0.002711391309276223, -0.0003304359852336347, -0.0018160162726417184, 0.046717412769794464, 0.011035062372684479, 0.03426111862063408, -0.011717252433300018, 0.016498902812600136, 0.02779294364154339, -0.00037978426553308964, -0.010251806117594242, 0.0006900861626490951, 0.014401798136532307, -0.03016797825694084, 0.013984904624521732, -0.013277447782456875, -0.0196192916482687, 0.009184304624795914, 0.011439323425292969, -0.02021305076777935, 0.006294470280408859, -0.0017386381514370441, -0.0013280605198815465, -0.008123119361698627, -0.009455917403101921, 0.00020094614592380822, -0.002111316192895174, 0.02378823421895504, -0.00040268184966407716, -0.022411219775676727, -0.01215941272675991, 0.004623735323548317, -0.015930410474538803, -0.014414431527256966, 0.0037741553969681263, -0.02872779779136181, -0.0017512713093310595, -0.014730260707437992, -0.009102188982069492, -0.005050104111433029, -0.022221721708774567, 0.0027082329615950584, -0.0010848722886294127, -0.011957282200455666, -0.007782024331390858, -0.007459878921508789, 0.0037488890811800957, 0.022954445332288742, -0.012601573951542377, 0.014464964158833027, -0.010434987023472786, 0.0033793693874031305, -0.016132541000843048, 0.008502114564180374, -0.003770997282117605, -0.0038657458499073982, 0.0065313419327139854, 0.017989614978432655, -0.02553160861134529, 0.02640329673886299, -0.00828735064715147, 0.02412932924926281, -0.020667843520641327, -0.010194957256317139, -0.007567260880023241, -0.01619570702314377, 0.020604677498340607, -0.012279427610337734, -0.0038436378818005323, 0.003404635703191161, 0.013921738602221012, -0.015475616790354252, 0.004838498774915934, -0.020971039310097694, 0.00157045922242105, 0.011723569594323635, -0.021653229370713234, -0.014932391233742237, 0.0036099243443459272, 0.008426315151154995, -0.020111985504627228, -0.016220971941947937, 0.004863765090703964, -0.01192570012062788, 0.01375750731676817, -0.001295688096433878, 0.01834334246814251, 0.045100368559360504, 0.03006691299378872, -0.011136127635836601, -0.0017575878882780671, -0.005672287195920944, -0.012273111380636692, -0.008767410181462765, 0.004623735323548317, 0.006187088321894407, 0.0014504442224279046, 0.021350033581256866, 0.00594705855473876, 0.002352925483137369, 0.005261709447950125, 0.012873186729848385, 0.02711075358092785, -0.034690648317337036, -0.0033035704400390387, 0.004288956522941589, -0.01142669003456831, 0.0432811938226223, 0.029890047386288643, -0.025695839896798134, -0.024571489542722702, -0.012367860414087772, 0.008647395297884941, 0.01619570702314377, -0.010643434710800648, 0.017686419188976288, -0.024495691061019897, 0.009898077696561813, -0.0037899469025433064, -0.010611851699650288, -0.008919008076190948, -0.004339489154517651, 0.012721588835120201, -0.007718858774751425, -0.004904822912067175, 0.010125475004315376, -0.011900433339178562, -0.015134521760046482, -0.0291320588439703, -0.016827363520860672, 0.005669129081070423, 0.020175151526927948, -0.01576617918908596, -0.007371446583420038, 0.0219564251601696, -0.0067334724590182304, 0.02304287813603878, 0.017155826091766357, 0.027312884107232094, 0.012273111380636692, 0.014187034219503403, -0.0079462556168437, 0.019379261881113052, 0.008078903891146183, -0.006487125996500254, -0.00517011946067214, -0.004266848787665367, 0.026757026091217995, -0.019353995099663734, -0.017522187903523445, -0.0019755098037421703, 0.007295647636055946, -0.007990471087396145, -0.0038025800604373217, -0.006891387049108744, -0.0012183099752292037, -0.004721642006188631, 0.014325999654829502, 0.0057228198274970055, 0.013795406557619572, 0.0026166425086557865, 0.000449661398306489, 0.00038511387538164854, 0.004576360806822777, 0.027540281414985657, 0.013845939189195633, -0.0058302017860114574, 0.006878753658384085, -0.005397516302764416, -0.014010170474648476, -0.023093409836292267, 0.0028377226553857327, 0.006038648542016745, -0.009999142959713936, -0.00034741181298159063, 0.007712542079389095, -0.0042289490811526775, 0.0213626679033041, -0.004677426069974899, -0.004661634564399719, 0.0032530378084629774, -0.018330710008740425, -0.0013312188675627112, 0.005454365164041519, 0.017395855858922005, 0.0013588538859039545, -0.004506878554821014, 0.004472137428820133, -0.010757132433354855, 0.0009443284361623228, -0.00751041155308485, 0.021248968318104744, -0.013504844158887863, -0.011262458749115467, 0.0003385291201993823, 0.013176382519304752, 0.008792676962912083, 0.005754402838647366, -0.007472511846572161, 0.009051656350493431, 0.013327980414032936, 0.025417910888791084, 0.021716395393013954, 0.029586851596832275, 0.005018521565943956, -0.01713055931031704, -0.047248005867004395, -0.0019233981147408485, -0.01753482036292553, 0.00751041155308485, -0.005460681859403849, 0.010176007635891438, -0.0259990356862545, -0.029283655807375908, -0.0027998231817036867, -0.008521064184606075, 0.019113965332508087, -0.044418178498744965, 0.012866869568824768, 0.011565654538571835, -0.017585353925824165, -0.0037457309663295746, -0.007188266143202782, -0.02338397316634655, -0.009076923131942749, 0.0024571488611400127, 0.033225201070308685, 0.02779294364154339, -0.020996306091547012, -0.008843209594488144, 0.016713665798306465, -0.009462234564125538, -0.020693110302090645, 0.003982602618634701, 9.395910456078127e-05, 0.0023039719089865685, 0.008887425996363163, -0.007655692752450705, 0.0053185587748885155, -0.001287792343646288, -0.00713773351162672, 0.004412129987031221, -0.00043781782733276486, 0.0010019672336056828, 0.0010461832862347364, -0.0002996426774188876, 0.008584230206906796, -0.01663786731660366, 0.019480327144265175, -0.011559338308870792, -0.0002816799096763134, 0.006619773805141449, 0.008931641466915607, -0.00507537042722106, -0.017433755099773407, 0.01307531725615263, -0.0013154273619875312, 0.012134146876633167, -0.004355280660092831, -0.023522937670350075, 0.023459771648049355, 0.012058347463607788, 0.018924469128251076, 0.004115250892937183, -0.009076923131942749, -0.008919008076190948, -0.01421230100095272, -0.0043236976489424706, 0.007200899068266153, 0.008742144331336021, -0.024975750595331192, 0.009190620854496956, 0.006436593364924192, -0.011603553779423237, 0.006821904331445694, -0.0054290988482534885, -0.00869161169975996, -0.008104169741272926, -0.007908356375992298, 0.011123494245111942, -0.009695947170257568, -0.01598094217479229, 0.02562004141509533, -0.008085220120847225, -0.01968245767056942, 0.010839248076081276, 0.0035278089344501495, 0.0305975042283535, 0.006897703278809786, 0.026504362002015114, 0.010599218308925629, -0.011729885824024677, 0.020225683227181435, -0.009885445237159729, 0.025708474218845367, 0.0013785931514576077, -0.001623360556550324, -0.020528879016637802, -0.0005519110127352178, -0.03342733159661293, -0.010491836816072464, -0.028096139430999756, -0.000522302056197077, 0.00217290292493999, -0.03898591920733452, 0.005185910500586033, -0.013984904624521732, 0.004456345923244953, -2.393390968791209e-05, -0.03554970398545265, -0.01229837816208601, 0.01840650849044323, 0.034463249146938324, 0.004184733144938946, -0.009215887635946274, -0.013125849887728691, 2.5019571694429033e-05, -0.019177131354808807, -0.014111235737800598, 0.0004792703839484602, 0.011691986583173275, -0.004829023964703083, -0.0051227449439466, 0.006651356816291809, 0.023548204451799393, -0.017711685970425606, 0.015450350008904934, 0.023308172821998596, 0.007213532458990812, 0.005792302079498768, 0.0007307491614483297, 0.019038166850805283, 0.011969915591180325, 0.00822418462485075, 0.004674267955124378, 0.013719608075916767, -0.01881076954305172, 0.0014843959361314774, 0.028500400483608246, 0.015121888369321823, -0.004674267955124378, -0.006044965237379074, -0.021590065211057663, 0.007611476816236973, -0.016498902812600136, 0.008085220120847225, 0.021072104573249817, 0.029030993580818176, 0.005937583744525909, 0.0007911514258012176, 0.00397312780842185, 0.02440725825726986, -0.01710529439151287, 0.01691579632461071, -0.0007714121020399034, -0.008243134245276451, -0.003041432471945882, 0.002987741492688656, 0.014325999654829502, 0.02260071597993374, -0.024912584573030472, -0.024773620069026947, -0.006853487342596054, 0.0032530378084629774, -0.008925325237214565, 0.042093675583601, 0.004579519387334585, -0.006354477722197771, 0.02397773042321205, 0.001170146162621677, -0.024710454046726227, 0.013062683865427971, 0.02145109884440899, 0.006338686216622591, 0.008394732140004635, 0.006682939827442169, 0.03517070785164833, 0.007390396669507027, 0.0034330603666603565, -0.011123494245111942, 0.003068277845159173, 0.017370590940117836, -0.0027508698403835297, 0.020819442346692085, 0.0020828917622566223, 0.027590813115239143, -0.012487875297665596, -0.0018854986410588026, -0.0300416462123394, 0.003331995103508234, 0.014022803865373135, -0.039668112993240356, 0.0026624377351254225, -0.009177988395094872, -0.02089524082839489, -0.007996788248419762, -0.0013635912910103798, -0.005078529007732868, 0.02210802398622036, -0.018558107316493988, -0.03246721252799034, -0.01248155813664198, -0.004115250892937183, -0.005896525923162699, 0.02412932924926281, 0.0012712113093584776, -0.00252978946082294, -0.006998768541961908, 0.019707724452018738, 0.022689148783683777, 0.011654086410999298, 0.022941812872886658, -0.014048069715499878, -0.013125849887728691, -0.020162517204880714, 0.018393876031041145, 0.009196938015520573, -0.005176435690373182, -0.009241153486073017, -0.02925839088857174, 0.010157058015465736, -0.01747165620326996, -0.006262887269258499, 0.010832931846380234, 0.00037405986222438514, 0.0042257909663021564, 0.019240297377109528, -0.01061816792935133, 0.006392376963049173, 0.0024682029616087675, -0.02164059691131115, -0.007295647636055946, 0.010220223106443882, -0.019947754219174385, 0.004301589913666248, 0.002054467098787427, 0.011559338308870792, -0.015576682053506374, -0.0031093356665223837, 0.025721106678247452, -0.003982602618634701, 0.001520716235972941, 0.004342647735029459, 0.003982602618634701, 0.0010280230781063437, 0.002343450440093875, 0.003969969227910042, -0.013845939189195633, 0.0026308547239750624, 0.00593126704916358, 0.0109782125800848, -0.004295273218303919, -0.014881858602166176, -0.009885445237159729, 0.009108506143093109, -0.03441271930932999, 0.01840650849044323, 0.00747882854193449, -0.003704673144966364, 0.009929660707712173, -0.0034520099870860577, 0.006389218848198652, -0.004980621859431267, -0.0009230099967680871, -0.03153235837817192, -0.0045542530715465546, 0.0025945345405489206, 0.008780043572187424, 0.005959691479802132, -0.008697927929461002, -0.004235265776515007, -0.0012633156729862094, -0.011534071527421474, 0.009556982666254044, -0.0008772148285061121, -0.0049300892278552055, -0.03436218574643135, -0.014250200241804123, 0.005943899974226952, 0.02229752019047737, -0.008306300267577171, 0.013845939189195633, 0.011635136790573597, -0.004889031406491995, -0.00547963147982955, 0.026226432994008064, 0.002725603524595499, 0.0037078314926475286, -0.018014881759881973, -0.008533697575330734, -0.010858197696506977, -0.03211348503828049, 0.01421230100095272, -0.011590921320021152, -0.013277447782456875, 0.013113216497004032, -0.026352765038609505, 0.01959402486681938, 0.023712433874607086, -0.015324018895626068, 0.002855093451216817, 0.01253209076821804, -0.0065313419327139854, 0.009057973511517048, 0.013151115737855434, 0.005324875470250845, 0.0074661956168711185, 0.001997617771849036, 0.003875220660120249, -0.020693110302090645, -0.012020448222756386, 0.006777688395231962, 0.017888549715280533, -0.018747603520751, -0.024243026971817017, 0.006651356816291809, -0.006885070353746414, -0.0021286867558956146, -0.021729029715061188, -0.00147097313310951, -0.0026671751402318478, 0.0007856244337745011, -0.01387120597064495, 0.010517102666199207, 0.009354852139949799, 0.03453905135393143, 0.008748460561037064, -0.009196938015520573, 0.009847545064985752, -0.019177131354808807, 0.02976371720433235, -0.009165355004370213, -0.00670188944786787, -0.0027240244671702385, 0.018747603520751, 0.0059407418593764305, -0.011256142519414425, 0.007352496962994337, -0.006224988028407097, 0.0054891062900424, 0.0196192916482687, -0.014262833632528782, 0.023965097963809967, 0.052503399550914764, -0.03373052924871445, 0.004889031406491995, 0.024268293753266335, 0.024634655565023422, 0.007655692752450705, 0.005972324870526791, 0.020061451941728592, 0.009443284012377262, 0.01408596895635128, -0.009588565677404404, 0.01299951784312725, 0.0006095498101785779, 0.026226432994008064, 0.0017212675884366035, -0.006338686216622591, -0.012367860414087772, 0.0032498794607818127, -0.00017390328866895288, 0.019417161121964455, 0.012014131993055344, 0.00990439485758543, -0.0011535651283338666, 0.001283844467252493, 0.01288581918925047, 0.012557357549667358, 0.00036122932215221226, 0.022929178550839424, -0.014338632114231586, -0.0012143622152507305, -0.009917028248310089, 0.004235265776515007, 0.009045340120792389, 0.005072212312370539, -0.010472886264324188, 0.013782774098217487, -0.01503345649689436, -0.02080680802464485, -0.008956908248364925, 0.012791071087121964, 0.02761607989668846, 0.0035088593140244484, 0.010327605530619621, -0.014464964158833027, 0.006086023058742285, -0.01797698251903057, 0.005959691479802132, 0.008590546436607838, -0.017711685970425606, -0.0023008135613054037, 0.013492210768163204, 0.003496226156130433, 0.01623360626399517, 0.009929660707712173, 0.022815480828285217, -0.01893710158765316, -0.007649376057088375, 0.003480434650555253, 0.03251774609088898, -0.010826614685356617, 0.014806059189140797, 0.0009964401833713055, 0.012393126264214516, -0.003998394124209881, -0.019783522933721542, -0.0035278089344501495, -0.02300497703254223, 0.006224988028407097, 0.014035437256097794, 0.007409346289932728, 0.023990364745259285, -0.0017196884145960212, -0.005268026143312454, 0.006284995470196009, -0.01220362912863493, 0.013947004452347755, -0.007920988835394382, -0.0011890958994626999, -0.01450286339968443, 0.010719233192503452, -0.012803704477846622, -0.0013833306729793549, -0.006367110647261143, -0.005324875470250845, 0.014818692579865456, 0.004743750207126141, -0.012854237109422684, -0.004560569301247597, -0.015551415272057056, 0.014654461294412613, 0.0199351217597723, -0.001879182062111795, -0.018798137083649635, -0.019480327144265175, 0.024306192994117737, -0.009550666436553001, -0.010889780707657337, -0.005388041026890278, -0.01887393556535244, -0.011066645383834839, 0.004055242985486984, 0.027186552062630653, 0.018229644745588303, 0.0004078140773344785, 0.02640329673886299, -0.036585621535778046, 0.013580643571913242, -0.008041003718972206, -0.005163802765309811, 0.018393876031041145, 0.016082007437944412, 0.01222257874906063, 0.013555376790463924, 0.018381241708993912, -0.033503130078315735, -0.024697821587324142, 0.010302338749170303, -0.0009782800916582346, 0.013315347023308277, -0.003181976266205311, 0.018760237842798233, -0.0025187355931848288, 0.0030888067558407784, -0.00467110937461257, -0.0021776403300464153, 0.011047694832086563, -0.002024463377892971, 0.008116803131997585, 0.017888549715280533, 0.003335153218358755, 0.01666313409805298, 0.012443658895790577, 0.0012040977599099278, 0.0044437129981815815, 0.021817460656166077, 0.011603553779423237, 0.009493816643953323, -8.0487021477893e-05, -0.019227664917707443, 0.0006131028640083969, 0.002130266046151519, -0.008641079068183899, 0.0030398531816899776, 0.011142443865537643, 0.01543771754950285, -0.003518334124237299, 0.0024682029616087675, 0.023737700656056404, -0.019227664917707443, -0.0008298404864035547, 0.023586103692650795, 0.019164498895406723, -0.01657470129430294, -0.00355307525023818, -0.024015629664063454, -0.009039022959768772, 0.008824259974062443, -0.016498902812600136, -0.01576617918908596, 0.010510786436498165, 0.019770890474319458, 0.0026813873555511236, 0.01908869855105877, -0.006417643278837204, 0.01670103333890438, -0.006632407195866108, -0.013365879654884338, 0.025405278429389, -0.0025139981880784035, 0.013770140707492828, 0.006262887269258499, -0.007207215763628483, 0.027717145159840584, -0.030092177912592888, 0.022373320534825325, 0.0031961884815245867, -0.01387120597064495, -0.004649001639336348, -0.01548825018107891, 0.018229644745588303, -0.018482306972146034, -0.02061731182038784, 0.03479171171784401, 0.005770194344222546, -0.014313366264104843, -0.01685263030230999, 0.0010959262726828456, 0.024925217032432556, -0.012961618602275848, 0.005647020880132914, 0.004472137428820133, 0.004971147049218416, 0.0017481130780652165, -0.02145109884440899, 0.0063165780156850815, -0.015109254978597164, 0.0005629650549963117, 0.012355227023363113, 0.007283014710992575, 0.013896471820771694, -1.5100569726200774e-05, -0.00042321073124185205, 0.0024160912726074457, -0.0034835929982364178, -0.00109829509165138, -0.019012900069355965, -0.007643059827387333, 0.014022803865373135, -0.01787591725587845, -0.02723708562552929, -0.019442427903413773, 0.004048926755785942, 0.00010195351933361962, -0.02860146574676037, 0.003256196156144142, 0.015968309715390205, -0.028500400483608246, -0.008059953339397907, -0.00024220129125751555, -0.006057598628103733, -0.01678946428000927, -0.0079462556168437, 0.032846204936504364, 0.008243134245276451, -0.0044310796074569225, -0.014250200241804123, 0.030395373702049255, 0.010719233192503452, -0.005394357722252607, -0.0067082061432302, 0.008615812286734581, -0.02963738515973091, -0.0004540040681604296, 0.003350944723933935, 0.009626464918255806, 0.015248219482600689, 0.02842460200190544, 0.0005937583628110588, -0.020819442346692085, 0.01422493439167738, 0.01757272146642208, -0.016372570767998695, -0.0014946602750569582, 0.007459878921508789, -0.0009735426283441484, 0.015324018895626068, 0.02789400890469551, 0.014401798136532307, 0.009196938015520573, 0.022057490423321724, -0.008407365530729294, -0.005959691479802132, 0.011155077256262302, -0.018242277204990387, -0.002450832398608327, -0.004544777795672417, -0.006885070353746414, -0.02814667299389839, -0.025455810129642487, -0.0062502543441951275, 0.017117926850914955, -0.012121513485908508, -0.004074193071573973, 0.004560569301247597, 0.005444890353828669, 0.007725175004452467, 0.012178362347185612, -0.006414485163986683, -0.02940998785197735, 0.01738322339951992, 0.026504362002015114, 0.007415662985295057, 0.007990471087396145, 0.015854611992836, 0.01450286339968443, 0.012765804305672646, 0.010536052286624908, 0.0058459932915866375, -0.004769016522914171, 0.006493442226201296, 0.020933140069246292, 0.022158555686473846, -0.007162999827414751, -0.016562068834900856, -0.01148985605686903, 0.027691878378391266, 0.00946855079382658, 0.004172099754214287, -0.018747603520751, -0.00631973659619689, -0.021905893459916115, -0.007314597722142935, 0.011534071527421474, 0.0001885103847598657, -0.01912659965455532, 0.0036572988610714674, 0.00797783862799406, 0.01793908141553402, -0.0030730152502655983, -0.009645414538681507, -0.013732241466641426, 0.013580643571913242, 0.02316920831799507, 0.009493816643953323, 0.025670573115348816, 0.016031475737690926, 0.013706974685192108, 0.012500508688390255, -0.013466944918036461, 0.023219741880893707, 0.02860146574676037, -0.02555687539279461, 0.013327980414032936, -0.026782291010022163, 9.262669482268393e-05, -0.009247470647096634, -0.018558107316493988, -0.013189014978706837, 0.012045715004205704, -0.0029861624352633953, -0.011559338308870792, -0.00023726647486910224, -0.003294095629826188, 0.003316203597933054, -0.00017133718938566744, 0.0029530003666877747, -0.007308281026780605, 0.009184304624795914, 0.012311010621488094, 0.009519083425402641, 0.0006569241522811353, -0.006499758921563625, 0.008495797403156757, -0.00711246719583869, 0.008230501785874367, 0.01294898521155119, -0.03155762329697609, 0.010567635297775269, 0.02123633585870266, -0.011016112752258778, -0.03239141404628754, -0.008097853511571884, 0.023624002933502197, -0.01772431842982769, -0.02515261434018612, 0.0035846580285578966, -0.0026324340142309666, 0.02695915661752224, 0.0077630747109651566, 0.006269203964620829, -0.009639098308980465, -0.0034551683347672224, -0.03433692082762718, 0.021160537376999855, 0.030142711475491524, 0.015589315444231033, 0.007251431699842215, -0.014338632114231586, -0.02061731182038784, -0.012096247635781765, 0.013315347023308277, -0.01105401199311018, -0.006600824184715748, 0.00667030643671751, 0.02378823421895504, -0.011205609887838364, 0.0011030324967578053, 0.022032225504517555, -0.010971896350383759, 0.009506450034677982, 0.009215887635946274, 0.001609148341231048, 0.0054891062900424, -0.0036699320189654827, 0.012431025505065918, -0.009569616056978703, 0.018848668783903122, 0.007409346289932728, 0.0021902734879404306, 0.010068625211715698, 0.017218992114067078, 0.012386810034513474, 0.021286869421601295, 0.009714897722005844, -6.296838546404615e-05, 8.611272642156109e-05, -0.006550291553139687, -0.005176435690373182, 0.007554627489298582, -0.00507537042722106, -0.004089984577149153, -0.0014701836043968797, 0.009260104037821293, -0.014250200241804123, 0.011098227463662624, 0.01651153527200222, -0.0024524114560335875, -0.0065629249438643456, 0.0005854678456671536, 0.02855093404650688, 0.014325999654829502, 0.016309404745697975, 0.030395373702049255, -0.021463733166456223, 0.006556608248502016, 0.0070303515531122684, 0.013934371992945671, 0.004860606975853443, 0.015349284745752811, 0.011155077256262302, 0.010378138162195683, -0.01666313409805298, 0.025518976151943207, 0.021564798429608345, 0.0021681655198335648, 0.0030856484081596136, -0.011028745211660862, -0.00014153083611745387, -0.005485948175191879, -0.022373320534825325, -0.0052238102070987225, -0.001665997551754117, -0.04527723416686058, -0.011268775910139084, -0.0072640650905668736, 0.02565794065594673, -0.004181574564427137, 0.0064397514797747135, 0.002305550966411829, 0.009803329594433308, 0.008666344918310642, -0.0006806112942285836, 0.020010920241475105, -0.02577163837850094, 0.011066645383834839, -0.004301589913666248, -0.015387184917926788, 0.01927819661796093, 0.013315347023308277, 0.009310636669397354, 0.01135089062154293, 0.01872233860194683, -0.00956329982727766, -0.015728279948234558, 0.002690862398594618, 0.002645067172124982, 0.01872233860194683, -0.018646538257598877, 0.01579144597053528, -0.006177613511681557, -0.022840747609734535, -0.0008566859178245068, -0.0015104517806321383, -0.004642684943974018, -0.008053637109696865, 0.01537455152720213, 0.0291320588439703, 0.006307103205472231, -0.005448048934340477, -0.03143129497766495, -0.01772431842982769, -0.018368609249591827, -0.013378513045608997, -0.023560836911201477, -0.035777099430561066, 0.0024839944671839476, 0.008457898162305355, -0.0035878163762390614, 0.01959402486681938, 0.008470531553030014, 0.02814667299389839, 0.006499758921563625, -0.005839676596224308, -0.01176778506487608, -0.007636743132025003, -0.03047117404639721, -0.00513853644952178, -0.02229752019047737, 0.006840854417532682, -0.029334189370274544, 0.015513516031205654, -0.010055992752313614, 0.0187855027616024, -0.007251431699842215, -0.010889780707657337, -0.0028708847239613533, 0.012898452579975128, 0.013555376790463924, -0.00015070960216689855, 0.02225962094962597, 0.03168395534157753, 0.019884588196873665, -0.009007440879940987, 0.009449601173400879, -0.003060382092371583, -0.025632673874497414, -0.015185054391622543, -0.0009206412942148745, 0.03249247744679451, -0.01912659965455532, 0.03570130094885826, -0.0016486268723383546, 0.004901664797216654, 0.004156308248639107, 0.007996788248419762, -0.01340377889573574, 0.017395855858922005, -0.019543493166565895, -0.005776510573923588, 0.012633156031370163, -0.00630394509062171, 0.013062683865427971, 0.01793908141553402, 0.007188266143202782, 0.016284137964248657, -0.01141405664384365, 0.01604410819709301, -0.008558963425457478, -0.016751565039157867, -0.01536191813647747, 0.02338397316634655, -0.013062683865427971, 0.018393876031041145, -0.013782774098217487, -0.011628820560872555, -0.002016567625105381, -0.0008266821969300508, 0.004222632385790348, -0.0025897971354424953, 0.007213532458990812, 0.004080509301275015, 0.012828970327973366, 0.003068277845159173, 0.004652159754186869, -0.018078045919537544, 0.021994326263666153, -0.012393126264214516, 0.03898591920733452, -0.008666344918310642, 0.0014970290940254927, 0.0018507573986425996, 0.003644665703177452, 0.0060481238178908825, 0.0009103768388740718, -0.02695915661752224, -0.010832931846380234, 0.011407740414142609, -0.0009932819521054626, 0.00033556821290403605, -0.008716877549886703, -0.0049142977222800255, 0.008243134245276451, -0.0035088593140244484, 0.005887051112949848, 0.015121888369321823, 0.0043079061433672905, 0.0323408804833889, 0.0015491407830268145, 0.01691579632461071, 0.004257373511791229, -0.021400567144155502, -0.0019060274353250861, 0.005286975763738155, -0.009234837256371975, 0.0033130452502518892, -0.010270755738019943, -0.006758738774806261, 0.007175632752478123, 0.0037646805867552757, -0.0026624377351254225, -0.005561747122555971, 0.02994058094918728, -0.0025408435612916946, 0.03115336410701275, 0.024230394512414932, 0.016334671527147293, 0.0021318451035767794, 0.001986563904210925, 0.0005507266614586115, -0.016208339482545853, -0.002550318371504545, 0.022651249542832375, -0.014199667610228062, -0.009234837256371975, 0.0010927680414170027, 0.014427064917981625, 0.005261709447950125, 0.016751565039157867, -0.012519458308815956, -0.0047405920922756195, -0.018646538257598877, -0.009999142959713936, -0.009594881907105446, -0.006935602985322475, -0.016953695565462112, -0.0047248005867004395, 0.0067650554701685905, -0.008243134245276451, -0.004434237722307444, -0.014427064917981625, -0.03837952762842178, -0.013858572579920292, 0.01347957830876112, -0.008533697575330734, -0.0005167750641703606, -0.00019275433442089707, 0.019770890474319458, -0.008135752752423286, 0.004996413365006447, 0.013631176203489304, -0.0037109896074980497, -0.016549434512853622, 0.011843584477901459, -0.024735720828175545, -0.005716503132134676, -0.0009324848651885986, 0.020781543105840683, 0.0002429908636258915, -0.009771746583282948, 0.007415662985295057, -0.004528986755758524, 0.02170376293361187, 0.00856527965515852, 0.004468979313969612, 0.012866869568824768, -0.01456602942198515, -0.007845190353691578, -0.010675016790628433, -0.04499930143356323, -0.016890529543161392, -0.008325249888002872, 0.009070605970919132, -0.025733739137649536, -0.012014131993055344, 0.018292810767889023, -0.015576682053506374, 0.002622959204018116, 0.005801776889711618, -0.013201648369431496, 0.0009151142439804971, 0.012361543253064156, 0.007497778162360191, 0.012254161760210991, -0.0011812001466751099, 0.006341844331473112, 0.002992478897795081, 0.0006131028640083969, -0.0017686418723315, 0.003144076792523265, -0.008369466289877892, 0.009361169300973415, 0.02260071597993374, -0.002987741492688656, -0.01908869855105877, 0.027186552062630653, 0.0030967025086283684, -0.0019265563460066915, -0.010630801320075989, 0.01793908141553402, 0.0031661847606301308, -0.00375836412422359, -0.002195010893046856, 0.01697896234691143, -0.003076173597946763, 0.0068598040379583836, 0.00831893365830183, -0.013959637843072414, -0.004033135250210762, 0.002199748298153281, -0.0024492531083524227, -0.010725549422204494, 0.0034930678084492683, -0.0015949360094964504, -0.008464214392006397, -0.01685263030230999, 0.033629462122917175, -0.004645843058824539, 0.0011006637942045927, -0.028753064572811127, 0.019669825211167336, 0.00711246719583869, 0.012468925677239895, 0.005912317428737879, 0.008249451406300068, -0.013151115737855434, -0.0036004495341330767, 0.0027208661194890738, -0.022398585453629494, 0.0028535141609609127, 0.0009917027782648802, 0.01260789018124342, 0.00356886675581336, 0.015905143693089485, -0.020288849249482155, 0.01785065047442913, -0.004418446682393551, -0.005580696742981672, -0.021564798429608345, 0.00822418462485075, -0.021008938550949097, 0.01632203720510006, -0.009228521026670933, -0.035903431475162506, 0.017484288662672043, -0.0016928429249674082, -0.0024603072088211775, 0.032265082001686096, -0.014515496790409088, -0.02306814305484295, -0.00016610627062618732, -0.004194207955151796, 0.00950013380497694, -0.015147154219448566, 0.0009190621203742921, -0.013858572579920292, 0.00635131960734725, -0.05689973756670952, -0.021350033581256866, 0.01034023892134428, -0.009676997549831867, -0.005283817648887634, 0.005609121639281511, 0.02306814305484295, -0.0050216796807944775, -0.030092177912592888, 0.024078795686364174, 0.00032865945831872523, 0.009803329594433308, -0.004112092312425375, 0.0023608210030943155, 0.002904046792536974, 0.021526899188756943, -0.008078903891146183, -0.004794282838702202, 0.012930035591125488, 0.0027887693140655756, -0.0004871661076322198, 0.01576617918908596, 0.006493442226201296, -0.004892189987003803, 0.012664739042520523, 9.450193465454504e-05, 0.006777688395231962, -0.019417161121964455, 0.021602697670459747, 0.005700711626559496, 0.004709009081125259, -0.00878636073321104, -0.017496921122074127, -0.009639098308980465, -0.013151115737855434, -0.00906428974121809, 0.004374230280518532, 0.013378513045608997, -0.009506450034677982, 0.012898452579975128, -0.013365879654884338, -0.01253209076821804, 0.02036464773118496, 0.006310261785984039, -0.014313366264104843, -0.029738450422883034, 0.007226165384054184, -0.02779294364154339, -0.0010888201650232077, 0.0020260424353182316, 0.008325249888002872, -0.025203147903084755, 0.02236068621277809, 0.0051227449439466, -0.00016196101205423474, 0.01659996807575226, -0.025177881121635437, 0.0020718376617878675, -0.0015396659728139639, -0.006638723891228437, 0.012184679508209229, -0.003030378371477127, 0.0033288367558270693, 0.027287617325782776, 0.0068598040379583836, -0.003044590586796403, 0.017155826091766357, -0.014667094685137272, 0.01716846041381359, -0.008205235004425049, -0.009222203865647316, 0.005182752385735512, 0.022335421293973923, -0.02323237434029579, 0.012759488075971603, -0.009544349275529385, 0.00510695343837142, 0.0011938333045691252, 0.006979818921536207, 0.006941919680684805, -0.001924977172166109, 0.0011638295836746693, -0.00023667428467888385, -0.008994807489216328, 0.008805310353636742, 0.011679353192448616, 0.031759753823280334, 0.01461656205356121, -0.013997537083923817, -0.0022076440509408712, -0.003995235543698072, -0.01456602942198515, 0.018179111182689667, 9.012227565108333e-06, -0.03840479627251625, -0.0016707349568605423, 0.015197686851024628, -0.003404635703191161, -0.001585461082868278, -0.002488731872290373, -0.018772870302200317, -0.0014922915725037456, 0.008849525824189186, -0.009607515297830105, -0.01536191813647747, 0.026201166212558746, -0.012058347463607788, -0.000785229611210525, -0.01467972807586193, 0.011742519214749336, -0.008552647195756435, 0.010662384331226349, -0.008464214392006397, -0.013441678136587143, -0.012247845530509949, 0.010352871380746365, 0.0017481130780652165, 0.005384882912039757, -0.01329008024185896, 0.030142711475491524, -0.012096247635781765, -0.0034362184815108776, -0.008805310353636742, 0.0040110270492732525, 0.005005888175219297, 0.0039162784814834595, -0.019391894340515137, -0.0026545419823378325, -0.009455917403101921, -0.016145173460245132, 0.0024839944671839476, 0.004503720439970493, -0.003407794050872326, -0.03360419720411301, -0.0032072425819933414, -0.006840854417532682, 0.005902842152863741, -0.001341483322903514, -0.014818692579865456, -0.013542743399739265, -0.011963599361479282, 0.020794175565242767, 0.0027666613459587097, -0.032846204936504364, -0.010769765824079514, -0.019657190889120102, -0.02083207480609417, -0.005621754564344883, 0.009076923131942749, 0.015172421000897884, -0.005827043205499649, -0.01450286339968443, 0.0008329987758770585, 0.011609870940446854, -0.004380546975880861, -0.00027931120712310076, -0.0033193619456142187, -0.012677372433245182, 0.0006703468388877809, -0.006117606069892645, -0.0037520474288612604, -0.01369434129446745, -0.012690005823969841, -0.0008243134361691773, -0.0014836062910035253, 0.019038166850805283, 0.026883356273174286, 0.014818692579865456, 0.016498902812600136, 0.005517531186342239, -0.023093409836292267, 0.002100262325257063, -0.0027508698403835297, 0.008167335763573647, 0.004071034491062164, -0.015943042933940887, -0.0002724024234339595, -0.016751565039157867, -0.02574637345969677, -0.008577913045883179, 0.008369466289877892, -0.0013312188675627112, -0.0002526631287764758, 0.00984122883528471, 0.0034235853236168623, 0.0077314916998147964, 0.002158690709620714, -0.004933247808367014, 0.0011077699018642306, 0.013631176203489304, -0.0046332101337611675, -0.023952465504407883, 0.006051281932741404, -0.003906803671270609, -0.0025029440876096487, 0.024584122002124786, -0.011180343106389046, 0.004923772532492876, 0.0190634336322546, -0.020389914512634277, -0.01638520322740078, 0.021387934684753418, 0.01678946428000927, 0.0006675833719782531, 0.026378029957413673, -0.0037173063028603792, -0.0016186231514438987, 0.008179969154298306, 0.014288099482655525, 0.002599271945655346, 0.0173200573772192, 0.005763877648860216, 0.007181949447840452, 0.013984904624521732, -0.0213626679033041, 0.011047694832086563, 0.011174026876688004, 0.0022139607463032007, 0.001276738359592855, -0.005208018701523542, 0.0020070928148925304, -0.006891387049108744, 0.0006292890757322311, -0.020655211061239243, -0.009354852139949799, -0.010542369447648525, 0.0213626679033041, 0.019113965332508087, 0.025228412821888924, -0.007687275763601065, 0.02615063451230526, -0.011887799948453903, 0.006885070353746414, -0.010883464477956295, 0.011717252433300018, -0.010106525383889675, -0.0004413709102664143, 0.014250200241804123, -0.014667094685137272, 0.011881483718752861, 0.00473427539691329, 0.007226165384054184, -0.012052031233906746, 0.007649376057088375, -0.02617589943110943, -0.01223521213978529, -0.01497029047459364, 0.004829023964703083, 0.019922487437725067, 0.0167641993612051, 0.0025218939408659935, -0.0027461324352771044, -0.005770194344222546, -0.002747711492702365, 0.0004682163707911968, -0.005751244258135557, -0.011142443865537643, 0.01666313409805298, -0.013454311527311802, 0.02225962094962597, 0.001604410819709301, 9.1491689090617e-05, 0.00781992357224226, 0.0067208390682935715, -0.02263861708343029, 0.014300732873380184, 0.00509116193279624, 0.007782024331390858, 0.02189326100051403, 0.002599271945655346, -0.009961243718862534, 0.027540281414985657, 0.009114822372794151, -0.005618596449494362, 0.028298269957304, -0.006847170647233725, 0.006010224111378193, 0.008041003718972206, 0.0070303515531122684, -0.0074219792149960995, -0.005842834711074829, 0.01461656205356121, -0.004598469007760286, -0.01223521213978529, -0.03628242388367653, 0.028222471475601196, -0.0025597934145480394, -0.01248155813664198, -0.03410952165722847, 0.0038973288610577583], "ebe419bd-5a6e-41f3-8c29-1522cbb5495b": [-0.03014632873237133, -0.02539069764316082, -0.0007917510811239481, 0.005292006302624941, -0.033754050731658936, -0.01607075333595276, -0.010741166770458221, 0.0044310730881989, -0.008438512682914734, 0.010734334588050842, 0.01389792189002037, 0.05069940164685249, 0.02235693298280239, -0.04383926838636398, -0.01272951252758503, 0.006197352893650532, 0.010269703343510628, 0.015155158005654812, 0.024051468819379807, -0.02105870097875595, 0.07406759262084961, 0.0038092879112809896, -0.049278177320957184, 0.00867766048759222, -0.00100015162024647, -0.03132157027721405, -0.020908378064632416, 0.010461022146046162, -0.04323798045516014, -0.015319145284593105, 0.0005807882989756763, -0.003932278603315353, 0.017806285992264748, 0.024420440196990967, 0.025746002793312073, -0.014663196168839931, -0.01742364838719368, -0.005753220524638891, -0.017819952219724655, -0.02379182167351246, -0.027659188956022263, 0.0223705992102623, 0.010051053948700428, 0.0035667233169078827, -0.04542447626590729, -0.018270917236804962, 0.019254840910434723, -0.023190535604953766, 0.03410935401916504, 0.022889891639351845, 0.022958219051361084, -0.024174459278583527, -0.005107520613819361, -0.012893499806523323, 0.04137945920228958, -0.01753297448158264, 0.017505642026662827, 0.025049056857824326, -0.00044840271584689617, -0.02791883423924446, 0.004390076268464327, 0.012797840870916843, -0.02593732252717018, -0.0193914957344532, 4.582782639772631e-05, -0.004089432768523693, 0.028943754732608795, -0.03533925861120224, -0.05356917902827263, -0.029545042663812637, 0.00865032896399498, 0.036323182284832, -0.023573171347379684, 0.019323168322443962, 0.026347290724515915, -0.02297188527882099, 0.019008859992027283, 0.003021807409822941, 0.010747999884188175, -0.012832004576921463, -0.010276536457240582, -0.0050323596224188805, 0.030037004500627518, -0.023928478360176086, 0.03957559913396835, 0.026210634037852287, 0.022015292197465897, -0.04042286425828934, 0.012531361542642117, -0.0013964541722089052, 0.008670827373862267, 0.016467057168483734, -0.00199347035959363, -0.006371589377522469, -0.019733136519789696, -0.004714634269475937, -0.004451571498066187, 0.017587635666131973, 0.029982341453433037, 0.01290716603398323, 0.036049872636795044, -0.011561103165149689, -0.038700997829437256, 0.03495662286877632, -0.018940530717372894, 0.017150336876511574, 0.004666804801672697, 0.011287791654467583, -0.006979708559811115, 0.0501801073551178, -0.001988345757126808, -0.058051496744155884, 0.018421238288283348, -0.021851304918527603, -0.04479585960507393, 0.0010061303619295359, -0.01303015649318695, 0.011198964901268482, -0.022015292197465897, -0.03812704235315323, 0.011137469671666622, 0.012189721688628197, -0.0016637876396998763, 0.047528982162475586, 0.016754034906625748, 0.02323153242468834, 0.01642606034874916, 0.009463433176279068, 0.013938918709754944, -0.003734127152711153, 0.030610959976911545, -0.007058286108076572, -0.0024017305113375187, 0.04236338287591934, 0.006549241952598095, 0.010925652459263802, -0.005971870385110378, 0.07417691498994827, -0.017327990382909775, 0.05641162395477295, -0.03238748759031296, -0.05304988473653793, 0.017396317794919014, 0.036487169563770294, 0.018052266910672188, -0.001957598142325878, -0.03763508051633835, 0.01909085363149643, -0.005773718934506178, 0.01563345454633236, -0.041980743408203125, -0.03902897238731384, 0.000834456121083349, 0.02272590436041355, 0.014827183447778225, -0.00107360421679914, -0.018639888614416122, 0.02965436689555645, -0.0027502034790813923, 0.05646628886461258, 0.020963041111826897, -0.06532160192728043, -0.008165200240910053, -0.00040420301957055926, 0.0393022857606411, 0.02935372292995453, 0.0004761609889101237, 0.007932884618639946, -0.00901930034160614, 0.014471877366304398, 0.0254453606903553, 0.020279761403799057, -0.001865355297923088, -0.027208223938941956, 0.03033764660358429, -0.00461555877700448, 0.02619696781039238, 0.0028031575493514538, 0.026975907385349274, -0.0012196553871035576, 0.01220338698476553, 0.014690527692437172, -0.031348902732133865, -0.05788750946521759, -0.02847912535071373, 0.01988345757126808, 0.006057280115783215, 0.04009488970041275, -0.013207809068262577, -0.018735546618700027, -0.03829102963209152, -0.019418828189373016, 0.010133047588169575, 0.008165200240910053, -0.007652739994227886, -0.051737986505031586, 0.02847912535071373, 0.026347290724515915, -0.0017141795251518488, 0.005326170474290848, -0.016043422743678093, -0.05288589745759964, -0.013303468003869057, 0.04307399317622185, -0.02651127800345421, 0.005121186375617981, -0.041543446481227875, -0.020416416227817535, -0.011198964901268482, -0.000540218548849225, 0.023764491081237793, -0.04867689311504364, 0.00892364140599966, 0.017368987202644348, -0.02032075822353363, 0.0033480736892670393, -0.02291722223162651, 0.02556835114955902, -0.01865355297923088, -0.0254453606903553, -0.024980729445815086, -0.03039230965077877, -0.02304021269083023, -0.02681192010641098, -0.0459711030125618, -0.0013025031657889485, -0.023368187248706818, 0.011793418787419796, -0.050125446170568466, -0.0029124824795871973, 0.03547591716051102, 0.030501633882522583, 0.021714650094509125, -0.018680885434150696, -0.0027262885123491287, 0.0529952235519886, -0.010461022146046162, 0.0345739871263504, -0.01765596494078636, -0.037963055074214935, 0.018885869532823563, 0.011397115886211395, -0.002849278971552849, -0.004420823883265257, 0.009101293981075287, -0.03225083276629448, -0.008479509502649307, 0.024242786690592766, 0.04192608222365379, -0.00883481465280056, -0.004465237259864807, 0.0020447163842618465, 0.025472691282629967, -0.015893101692199707, 0.0016022924100980163, 0.009135458618402481, -0.01984246075153351, -0.025909990072250366, 0.01266801729798317, -0.015127826482057571, 0.0032968276645988226, -0.02793250046670437, 0.02798716351389885, 0.0015997301088646054, 0.04468653351068497, -0.005100687965750694, 0.01982879638671875, -0.03181353211402893, -0.004328581038862467, 0.03044697269797325, 0.020771723240613937, -0.003604303812608123, -0.004451571498066187, 0.02681192010641098, -0.017109340056777, 0.005749803967773914, -0.03236015886068344, -0.014868180267512798, 0.00017017951176967472, -0.024119796231389046, 0.03145822882652283, 0.0035393922589719296, 0.020115774124860764, 0.017573971301317215, 0.012463033199310303, 0.03216883912682533, -0.026552274823188782, -0.005729305557906628, -0.015332810580730438, 0.012394705787301064, -0.004625807981938124, -0.0011778045445680618, 0.009176455438137054, 0.030282985419034958, 0.043155986815690994, -0.004659972153604031, -0.00849317479878664, -0.01691802218556404, -0.06390038132667542, -0.031540222465991974, 0.010317533276975155, 0.01244936790317297, 0.019295837730169296, -0.017942942678928375, 0.028506455942988396, 0.0003089708334300667, 0.04665438085794449, 0.015729114413261414, -0.009593255817890167, 0.013918420299887657, 0.010918820276856422, -0.01853056252002716, -0.014663196168839931, -0.025664009153842926, 0.027659188956022263, 0.019077187404036522, -0.01272951252758503, -0.027631856501102448, -0.007153945043683052, -0.03033764660358429, -0.014950173906981945, -0.0037238779477775097, -0.039876241236925125, -0.014485543593764305, 0.03014632873237133, -0.0387829914689064, 0.04714634269475937, -0.024502433836460114, 0.008964638225734234, -0.04922351613640785, -0.01870821602642536, -0.014348886907100677, -0.0405321903526783, -0.005292006302624941, -8.679795428179204e-05, -0.015729114413261414, -0.030474303290247917, -0.05602898821234703, -0.0031652962788939476, 0.017273327335715294, -0.023573171347379684, -0.03700646385550499, -0.012825172394514084, -0.020252428948879242, 0.03799038752913475, 0.0042226724326610565, 0.018557894974946976, -0.003079886082559824, -0.022261273115873337, -0.001736386213451624, 0.0009062005556188524, -0.0027143312618136406, 0.02440677396953106, -0.02019776776432991, 0.05072673410177231, 0.004752214998006821, -0.022288605570793152, -0.005455993581563234, 0.004099681973457336, 0.005719056352972984, 0.04118813946843147, -0.022534586489200592, -0.02094937488436699, -0.006269097328186035, -0.045069172978401184, 0.007331598084419966, 0.004335413686931133, 0.0001068159326678142, -0.0031670043244957924, 0.062369830906391144, -0.029982341453433037, -0.006088027730584145, -0.007071951404213905, -0.02507638931274414, 0.001399016473442316, -0.03831836208701134, 0.025404363870620728, -0.016262073069810867, -0.05313187837600708, 0.019172847270965576, -0.021209022030234337, 0.014444546774029732, 0.024078799411654472, 0.016139082610607147, 0.03408202528953552, 0.02625163085758686, 0.0017158878035843372, -0.025062723085284233, 0.005110937170684338, 0.016330400481820107, -0.04739232361316681, -0.0158794354647398, -0.006815721280872822, -0.0039015307556837797, -0.01791561022400856, 0.011882245540618896, -0.013276137411594391, -0.0359678789973259, -0.00013398700684774667, 0.01630306988954544, -0.03181353211402893, -0.016644708812236786, 0.007680071052163839, 0.007051452994346619, 0.055509693920612335, -0.02254825085401535, -0.011936907656490803, -0.007584411650896072, 0.025664009153842926, -0.018298247829079628, 0.043893929570913315, -0.011520106345415115, 0.018639888614416122, -0.008971471339464188, 0.02700323984026909, -0.010543015785515308, 0.03214150667190552, 0.015414804220199585, -0.010071552358567715, -0.04168010130524635, 0.05318654328584671, 0.07505151629447937, -0.014239562675356865, 0.02193329855799675, -0.02051207609474659, 0.030037004500627518, -0.005449160933494568, 0.033453404903411865, -0.011540604755282402, -0.009647918865084648, 0.016043422743678093, 0.011581601575016975, 0.03328941762447357, 0.00035872217267751694, -0.01594776287674904, -0.03342607617378235, 0.0013272720389068127, -0.0015852104406803846, -0.0023846484255045652, -0.006545825861394405, -0.01284567080438137, 0.0014861347153782845, -0.013132648542523384, 0.010980315506458282, 0.03460131585597992, -0.008547836914658546, -0.006706396583467722, -0.00837018433958292, 0.012469866313040257, 0.021345678716897964, 0.02872510626912117, 0.06062063202261925, 0.004250003956258297, 0.019938120618462563, -0.01355628203600645, -0.013235140591859818, -0.016262073069810867, -0.01279100775718689, -0.011540604755282402, -0.03952093422412872, -0.01315314695239067, -0.0050323596224188805, -0.009053464978933334, -0.006832803599536419, -0.015127826482057571, -0.023026548326015472, 0.005947955418378115, 0.021345678716897964, 0.02286256104707718, 0.021659987047314644, 0.013132648542523384, -0.00839751586318016, -0.027727516368031502, 0.057231560349464417, 0.020156770944595337, -0.034382667392492294, -0.021700983867049217, -0.00019622957915998995, -0.011403948999941349, -0.0091696223244071, 0.022575583308935165, -0.005005028564482927, -0.01765596494078636, 0.038646336644887924, -0.016262073069810867, -0.0043183318339288235, 0.008950972929596901, -0.04490518569946289, 0.0011667012004181743, -0.028151150792837143, 0.030228322371840477, 0.026087643578648567, -0.018680885434150696, 0.010119382292032242, -0.004697552416473627, -0.01740998402237892, -0.0006401482969522476, -0.03566723316907883, -0.0013981624506413937, -0.011328788474202156, 0.049770139157772064, 0.012428869493305683, -0.024379443377256393, 0.027098897844552994, -0.010481520555913448, 0.01161576621234417, -0.030802277848124504, -0.025732338428497314, -0.0010052762227132916, 0.00447890255600214, -0.007796228863298893, -0.02724922075867653, -0.038400355726480484, 0.011930074542760849, 0.0025230126921087503, 0.002767285332083702, -0.01989712379872799, 0.008226695470511913, 0.03911096602678299, -0.013542616739869118, 0.002979102311655879, -0.016234740614891052, -0.0025076388847082853, 0.0021027952898293734, -0.01217605546116829, -0.00929261278361082, -0.04416724294424057, -0.025117386132478714, -0.021523330360651016, -0.024680085480213165, -0.011909576132893562, -0.01810692995786667, -0.007864557206630707, 0.009053464978933334, 0.021086031571030617, -0.001761155086569488, -0.0052510094828903675, -0.005985535681247711, -0.0078508909791708, 0.007215440273284912, -0.010782163590192795, 0.008315522223711014, 0.02191963419318199, -0.019569149240851402, -0.004219256341457367, 0.04045019671320915, 0.008445344865322113, 0.03656916320323944, -0.030255652964115143, 0.014827183447778225, -0.04870422184467316, 0.02328619360923767, -0.043702609837055206, 0.010502018965780735, 0.034683309495449066, -0.056247636675834656, 0.015073164366185665, 0.006907964125275612, -0.02459809184074402, -0.0083360206335783, -0.030556296929717064, 0.005343252327293158, 0.005736138671636581, -0.0023265695199370384, -0.01290716603398323, -0.014130237512290478, 0.00467705400660634, -0.0007323911413550377, 0.005462826229631901, 0.00472488347440958, 0.037033796310424805, 0.017587635666131973, 0.03976691514253616, -0.019541818648576736, 0.020170435309410095, 0.0371977835893631, -0.01594776287674904, -0.030610959976911545, -0.023983139544725418, -0.005445744376629591, 0.014594867825508118, -0.02965436689555645, 0.00963425263762474, -0.0038400355260819197, 0.024570761248469353, 0.013815928250551224, -0.00981873832643032, -0.011397115886211395, 0.021837640553712845, -0.01915918104350567, 0.02409246563911438, 0.029025748372077942, 0.022876225411891937, -0.005493573844432831, -0.030255652964115143, 0.01426689326763153, 0.005985535681247711, -0.00988023355603218, -0.01309848390519619, 0.007604910060763359, 0.035557910799980164, 0.021099697798490524, 0.02651127800345421, 0.008568335324525833, -0.03779906779527664, 0.010816328227519989, -0.012592856772243977, -0.000613671145401895, 0.01223071850836277, 0.023996805772185326, -0.008780152536928654, 0.037471093237400055, 0.014991170726716518, -0.031977519392967224, 0.030037004500627518, -0.005524321459233761, 0.006381838582456112, 0.026962243020534515, -0.0037751239724457264, -0.014376218430697918, 0.007010456174612045, -0.03886498510837555, 0.03897431120276451, -0.03063829056918621, -0.017642298713326454, 0.016152746975421906, -0.0037990387063473463, 0.0060606966726481915, -0.009565925225615501, -0.00791238620877266, 0.020416416227817535, -0.002789492020383477, 5.119264460518025e-05, -0.008513673208653927, 0.028369799256324768, 0.019008859992027283, -0.00219162181019783, 0.036979131400585175, -0.01765596494078636, -0.003781956620514393, 0.0067610591650009155, 0.016508053988218307, -0.008691325783729553, 0.032578807324171066, -0.011021312326192856, 0.01933683454990387, -0.010153545998036861, 0.04534248262643814, 0.024994395673274994, -0.007666405290365219, -0.024857738986611366, -0.005927457008510828, -0.000308330258121714, 0.02155066281557083, 0.016412394121289253, 0.00867766048759222, 0.003368572099134326, 0.013945751823484898, 0.005223678424954414, 0.008233528584241867, 0.033644724637269974, -0.009470265358686447, -0.004659972153604031, 0.0035974709317088127, 0.009552258998155594, 0.020553072914481163, -0.0082471938803792, 0.012524528428912163, 0.006173437926918268, 0.058543458580970764, 0.0045369816944003105, -0.0041919248178601265, -0.006484330631792545, 0.009162789210677147, 0.005097271408885717, -0.006316926795989275, -0.013180477544665337, -0.012005235999822617, -0.009668417274951935, 0.004239754751324654, -0.002864652778953314, -0.03465598076581955, -0.013481121510267258, 0.0013306884793564677, -0.008534171618521214, -0.003421526402235031, -0.00452331593260169, 0.04280067980289459, 0.004608726128935814, -0.01361777726560831, -0.005842046812176704, -0.015086829662322998, -0.004984530154615641, -0.019746802747249603, 0.0012153849238529801, 0.011513274163007736, -0.011807084083557129, -0.0029620202258229256, 0.014307890087366104, -0.00026028710999526083, -0.04854023456573486, 0.003781956620514393, 0.022958219051361084, -0.011356119066476822, 0.02619696781039238, 0.026360955089330673, -0.02409246563911438, -0.033945366740226746, 0.021714650094509125, 0.007229106035083532, 0.010262871161103249, 0.009729912504553795, 0.012497197836637497, 0.005886460188776255, 0.005558485630899668, 0.006989957764744759, -0.008165200240910053, -0.009565925225615501, 0.0025418028235435486, 0.0074135917238891125, 0.005302255507558584, 0.03686980903148651, 0.0018141092732548714, -0.047228336334228516, -0.047173675149679184, 0.051054708659648895, -0.0017714042915031314, 0.027522532269358635, -0.010221874341368675, 0.0020173853263258934, 0.03558523952960968, -0.010816328227519989, 0.025500021874904633, -0.007003623526543379, -0.019008859992027283, 0.024174459278583527, -0.00401768833398819, -0.007365762256085873, 0.03454665467143059, -0.020785387605428696, -0.0001735959085635841, 0.01340596005320549, 0.023053878918290138, 0.011287791654467583, 0.003163588000461459, -0.012886667624115944, 0.014854514971375465, -0.0187765434384346, 0.015674451366066933, 0.013884256593883038, 0.041543446481227875, -0.03932961821556091, 0.017396317794919014, 0.016398727893829346, -0.014635864645242691, 0.002589632524177432, 0.02379182167351246, -0.006829387042671442, -0.024133462458848953, 0.01872188225388527, 0.016084419563412666, -0.010843658819794655, -0.022397929802536964, -0.03397269919514656, -0.027727516368031502, 0.00035146233858540654, -0.007953383028507233, 0.0275498628616333, 0.03741643205285072, -0.0076322415843605995, 0.003202876541763544, 0.015524129383265972, 0.023053878918290138, 0.02798716351389885, -0.011793418787419796, 0.002678459044545889, 0.02828780561685562, 0.02366883121430874, -0.03219617158174515, -0.02186497114598751, -0.009777741506695747, -0.015209820121526718, 0.0087733194231987, -0.005602899007499218, 0.018557894974946976, 0.006214434746652842, 0.01217605546116829, 0.015715448185801506, -0.013501619920134544, 0.0013546033296734095, 0.010372195392847061, -0.006590238772332668, 0.022561917081475258, 0.009750410914421082, -0.012531361542642117, 0.015988759696483612, -0.00892364140599966, -0.04378460347652435, 0.017000015825033188, 0.015428470447659492, 2.4835639123921283e-05, -0.02130468189716339, 0.03566723316907883, 0.026716262102127075, 0.0091696223244071, 0.0019285588059574366, 0.04004022851586342, 0.0024563928600400686, -0.024488767609000206, -0.013399127870798111, -0.02791883423924446, 0.024803075939416885, -0.019295837730169296, 0.018858537077903748, -0.027071567252278328, -0.00011871995957335457, 0.0004488297854550183, 0.017095673829317093, 0.021659987047314644, -0.02396947517991066, -0.01779261976480484, 0.0046736374497413635, 0.0032626637257635593, 0.006132441107183695, -0.00818569865077734, -0.019541818648576736, 0.050016120076179504, -0.028014494106173515, 0.01914551481604576, 0.007283768616616726, 0.027030570432543755, 0.009278947487473488, -0.009852902963757515, 0.03274279460310936, -0.017314324155449867, -0.011328788474202156, -0.013105317018926144, -0.006685898173600435, -0.057668861001729965, 0.013809096068143845, -0.018366575241088867, -0.02817848138511181, -0.002574258716776967, -0.012654352001845837, 0.02235693298280239, -0.014198565855622292, 0.018257251009345055, 0.006504829041659832, 0.029135074466466904, 0.03009166568517685, 0.01686335913836956, -0.03200485184788704, 0.004902536515146494, 0.012797840870916843, -0.011513274163007736, 0.029818354174494743, -0.026784589514136314, 0.021236352622509003, 0.025773335248231888, -0.017327990382909775, 0.0035667233169078827, 0.011930074542760849, -0.03372671827673912, -0.004936700686812401, -0.009852902963757515, 0.010037388652563095, -0.012463033199310303, 0.004058685153722763, 0.009285779669880867, 0.009395104832947254, -0.011041810736060143, 0.00815153494477272, 0.003025223733857274, -0.017082009464502335, -0.0326334685087204, 0.003322450676932931, -0.030419640243053436, 0.018366575241088867, -0.04553380236029625, -0.015018502250313759, 0.010741166770458221, 0.02735854499042034, 0.011383450590074062, 0.0034505657386034727, -0.05515439063310623, -0.0036179693415760994, 0.025868993252515793, -0.007782563101500273, -0.004700968973338604, -0.026524942368268967, 0.013446956872940063, 0.0006311802426353097, -0.021209022030234337, -0.017068343237042427, -0.02130468189716339, -0.027645522728562355, 0.008602499961853027, -0.011137469671666622, 0.013781764544546604, -0.012893499806523323, 0.005039192736148834, -0.015455801039934158, -0.01821625418961048, -0.003291703062132001, -0.006675648968666792, -0.022807897999882698, 0.015729114413261414, 0.03768974542617798, 0.007290601264685392, 0.02724922075867653, 0.017013680189847946, 0.016152746975421906, -0.01426689326763153, -0.007659572642296553, 0.029873017221689224, 0.004144095350056887, -0.010870990343391895, 0.02142767235636711, 0.00470780162140727, -0.0029346891678869724, 0.02267124131321907, 0.00200713612139225, -0.025295037776231766, 0.017833616584539413, -0.014827183447778225, 0.015114161185920238, 0.005708807148039341, -0.0015980219468474388, 0.007174443453550339, 0.003064512275159359, -0.03156755119562149, 0.016754034906625748, -0.0033361162059009075, 0.003206293098628521, -0.011075974442064762, 0.0006939566228538752, -0.001183783169835806, 0.014895511791110039, -0.010016890242695808, -0.010215041227638721, -0.012053065001964569, -0.0393022857606411, -0.0234228502959013, -0.02316320315003395, 0.0021950381342321634, -0.0003471918171271682, -0.027905169874429703, 0.03427334129810333, -0.02891642414033413, -0.025500021874904633, 0.0037717074155807495, 0.015114161185920238, 0.02793250046670437, -0.003498395439237356, 0.0009138874593190849, 0.012442534789443016, -0.00395277701318264, -0.016467057168483734, -0.03167687729001045, -0.0075365821830928326, 0.01568811759352684, 0.006200768984854221, -0.0028663610573858023, -0.00994172878563404, -0.043647948652505875, 0.0396575927734375, -0.06450166553258896, -0.003472772426903248, 0.016699371859431267, 0.010795829817652702, 0.014075575396418571, -0.00837018433958292, 0.008131036534905434, 0.016344066709280014, 0.01340596005320549, -0.009442934766411781, -0.019364165142178535, -0.02428378351032734, -0.02886176109313965, -0.0025144717656075954, 0.037225112318992615, -0.0055755674839019775, -0.014184899628162384, -0.037279777228832245, -0.005059691146016121, 0.02446143701672554, 0.010467855259776115, -0.002801449503749609, 0.013870591297745705, 0.026729926466941833, 0.01266118511557579, -0.008759654127061367, -0.014171234332025051, 0.003160171676427126, 0.007686903700232506, -0.006241765804588795, 0.005626813508570194, -0.015319145284593105, -0.014239562675356865, -0.031977519392967224, 0.00036043039290234447, -0.027631856501102448, -0.026046646758913994, 0.03244215250015259, 0.0076937368139624596, -0.006129024550318718, -0.013911588117480278, 0.02291722223162651, 0.014649530872702599, -0.002145500387996435, -0.015223486348986626, -0.016699371859431267, 0.007153945043683052, -0.027577195316553116, 0.015852104872465134, 0.010420025326311588, 0.0032626637257635593, -0.07346630096435547, -0.03905630484223366, 0.019992783665657043, -0.03670582175254822, -0.01263385359197855, 0.010256038047373295, -0.02021143212914467, -0.001211968483403325, 0.013364963233470917, -0.011130636557936668, -0.015455801039934158, 0.0028458626475185156, 0.013522118330001831, -0.010310700163245201, -0.018926866352558136, -0.0006550950347445905, -0.040805503726005554, 0.003645300632342696, -0.009921230375766754, 0.02619696781039238, -0.02723555453121662, 0.007427257485687733, 0.0031738372053951025, 0.032086845487356186, -0.020307091996073723, 0.0009284071857109666, 0.008547836914658546, 0.03162221610546112, -0.027877837419509888, -0.003583805402740836, -0.015250816941261292, -0.021168025210499763, -0.006778141018003225, 0.006012867204844952, -0.005319337360560894, -0.010911987163126469, -0.010515684261918068, 0.008500007912516594, -0.014758855104446411, 0.011998402886092663, 0.010741166770458221, -0.0005261258920654655, -0.0009591548005118966, -0.001221363665536046, -0.011561103165149689, 0.02582799643278122, -0.034136686474084854, 0.004499400965869427, -0.015975095331668854, -0.0035393922589719296, -0.0029893515165895224, 0.0068054720759391785, 0.004888870753347874, 0.009477098472416401, 0.01285250298678875, 0.00882798247039318, 0.011889077723026276, 0.0046428898349404335, 0.014991170726716518, -0.012873001396656036, 0.00429100077599287, 0.028151150792837143, -0.0081583671271801, -0.010823160409927368, -0.015168823301792145, -0.013979915529489517, 0.0017833616584539413, -0.00436957785859704, -0.016344066709280014, 0.012702181935310364, 0.025923656299710274, -0.014868180267512798, 0.0223705992102623, -0.017929276451468468, -0.006528743542730808, 0.014403549954295158, 0.020402751863002777, -0.017341654747724533, -0.009039798751473427, -0.004157761111855507, 0.056247636675834656, -0.0027262885123491287, 0.024516098201274872, -0.007618575822561979, 0.010037388652563095, 0.010303867980837822, -0.007454588543623686, 0.004772713407874107, 0.020785387605428696, -0.015496797859668732, -0.004759047646075487, -0.016221076250076294, -0.014977505430579185, 0.04690036177635193, 0.0013938918709754944, -5.466242873808369e-05, 0.0010556681081652641, 0.019938120618462563, -0.028096487745642662, -0.009702580980956554, -0.006972875911742449, -0.013945751823484898, 0.0043798270635306835, 0.01248353160917759, -0.004297833424061537, -0.00876648724079132, -0.0061221919022500515, -0.010057887062430382, 0.00012213636364322156, -0.015059499070048332, 0.00413726270198822, 0.020047444850206375, 0.01730065792798996, 0.017396317794919014, 0.0050016120076179504, 0.004745381884276867, -0.00446182070299983, -0.02063506655395031, 0.011807084083557129, -0.0008545274613425136, 0.01821625418961048, -0.030911602079868317, 0.03957559913396835, -0.02328619360923767, -0.0022650742903351784, 0.016904355958104134, 0.005613148212432861, -0.006009450647979975, -0.013194143772125244, -0.012866169214248657, -0.025541018694639206, 0.0010377319995313883, -0.018926866352558136, 0.009934896603226662, -0.002567425835877657, 0.006139273755252361, -0.004472069907933474, -0.025103719905018806, 0.0023334024008363485, -0.004936700686812401, -0.02107236534357071, 0.0064467499032616615, -0.013645108789205551, -0.03741643205285072, -0.012059898115694523, 0.0016928270924836397, -0.0017039303202182055, -0.020908378064632416, -0.005801049992442131, 0.0166720412671566, 0.01740998402237892, 0.014212231151759624, 0.00011124658340122551, 0.0010360238375142217, -0.008192531764507294, 0.0005325316451489925, 0.044768527150154114, -0.023614168167114258, 0.0018124011112377048, -0.019856126978993416, -0.02470741793513298, -0.01618007943034172, 0.009477098472416401, 0.02484407275915146, 0.0004071923904120922, -0.024762079119682312, 0.01563345454633236, -0.015373807400465012, 0.00019281316781416535, -0.005842046812176704, 0.0006849885685369372, 0.012374207377433777, 0.00871182419359684, 0.012961828149855137, -0.00837018433958292, -0.0026408785488456488, -0.025431694462895393, 0.0017227205680683255, 0.02056673914194107, 0.0050631072372198105, 0.007352096494287252, 0.012394705787301064, -0.0014263477642089128, -0.003635051427409053, 0.00040206778794527054, -0.025117386132478714, -0.020293425768613815, -0.014717858284711838, -0.03405469283461571, -0.00417142640799284, 0.003368572099134326, 0.0029278562869876623, -0.04342930018901825, -0.018817540258169174, 0.020553072914481163, -0.01173875667154789, -0.034874629229307175, -0.007721067871898413, 0.0172869935631752, 0.0008271962869912386, -0.024051468819379807, 0.017505642026662827, -0.009586423635482788, 0.0454518087208271, 0.013515285216271877, 0.030228322371840477, 0.01766962930560112, -0.0014212231617420912, -0.008363351225852966, 0.006740560755133629, 0.00898513663560152, 0.004174842964857817, -0.010413192212581635, -0.011513274163007736, 0.0012726096902042627, 0.012155557051301003, 0.004516483284533024, 0.03058362752199173, 0.0006708959117531776, -0.020252428948879242, -0.027139894664287567, 0.0030884272418916225, 0.01984246075153351, -0.010686504654586315, -0.01371343620121479, 0.0177242923527956, 0.00390836363658309, -0.014184899628162384, 0.018557894974946976, 0.0034351919312030077, 0.010911987163126469, 0.004372994415462017, -0.00410651508718729, 0.0010659173130989075, 0.019186511635780334, 0.0015817940002307296, 0.0021096281707286835, -0.018817540258169174, 0.00460189301520586, -0.034628648310899734, 0.01902252435684204, 0.005807883106172085, -0.02675725892186165, -0.06329908967018127, -0.011253627017140388, 0.004629224538803101, -0.020102107897400856, -0.019227508455514908, -0.011424447409808636, 0.024639088660478592, -0.02137300930917263, -0.002181372605264187, 0.002528137294575572, -0.03255147486925125, -0.004967448301613331, -0.02662060223519802, 0.04143412038683891, -0.004953782539814711, 0.027768513187766075, -0.007714235223829746, -0.020922044292092323, -0.010618176311254501, 0.013733934611082077, 0.008288190700113773, 0.0163167342543602, 0.019992783665657043, -0.013733934611082077, -0.009811906144022942, 0.010993980802595615, 0.010467855259776115, 0.0007879076292738318, -0.019309502094984055, -0.03517527133226395, 0.01619374379515648, -0.010133047588169575, 0.006474081426858902, -0.003163588000461459, -0.028615780174732208, 0.012811506167054176, 0.009627420455217361, -0.011233128607273102, 0.004543814342468977, 0.0019336834084242582, -0.02286256104707718, 0.046736374497413635, -0.002398313954472542, -0.0020447163842618465, -0.020990371704101562, -0.004335413686931133, 0.0024034385569393635, 0.03872833028435707, 0.009155957028269768, -0.012709014117717743, -1.3078412848699372e-05, 0.0055755674839019775, -0.014335221610963345, 0.007639074232429266, 0.000521428300999105, -0.010119382292032242, 0.012517696246504784, -0.013706604018807411, -0.01600242592394352, -0.02804182469844818, 0.041297465562820435, 0.02995501086115837, 0.010925652459263802, 0.014663196168839931, 0.009682082571089268, 0.02946304902434349, 0.021482333540916443, 0.01828458160161972, -0.001668912242166698, 0.009900731965899467, -0.011656763032078743, 0.005913791246712208, -0.029927678406238556, -0.025909990072250366, 0.005814715754240751, 0.008691325783729553, -0.01220338698476553, -0.024051468819379807, -0.004796627908945084, -0.00901930034160614, 0.004113347735255957, -0.007700569462031126, -5.9253216022625566e-05, 0.010980315506458282, 0.003233624156564474, 0.005893292836844921, -0.007919219322502613, -0.013016490265727043, 0.00834285281598568, -0.01642606034874916, 0.005380832590162754, 0.0078508909791708, -0.015018502250313759, 0.01296866126358509, -0.010180877521634102, -0.01853056252002716, -0.004393492825329304, 0.00426366925239563, -0.01915918104350567, 0.015018502250313759, 0.0018414405640214682, -0.04066884517669678, -0.02705790102481842, 0.023696161806583405, 0.01312581542879343, 0.016713038086891174, -0.03132157027721405, -0.006033365614712238, 0.008178865537047386, 0.01374076772481203, 0.0037170450668781996, 0.03435533493757248, -0.01287983451038599, 0.0005141684669069946, 0.0013956001494079828, 0.007625408470630646, -0.001957598142325878, -0.01204623281955719, 0.016344066709280014, 0.008978303521871567, 0.028697773814201355, 0.021577993407845497, -0.011499607935547829, -0.003117466578260064, -0.009770909324288368, 0.010085217654705048, -0.011670428328216076, -0.010064719244837761, 0.001543359481729567, 0.01100081391632557, -0.007215440273284912, 0.041543446481227875, 0.010420025326311588, 0.012777342461049557, 0.0011573061347007751, -0.025254040956497192, -0.03837302327156067, -0.019309502094984055, -0.01426689326763153, 0.01753297448158264, 0.010939318686723709, -0.0037990387063473463, 0.024680085480213165, 0.020293425768613815, -0.032469481229782104, -0.009928063489496708, -0.0025418028235435486, -0.002651127753779292, 0.00410993117839098, -0.000843851245008409, 0.03361739218235016, -0.009989558719098568, 0.007454588543623686, -0.0193914957344532, 0.00861616525799036, -0.015988759696483612, -0.017710626125335693, 0.007249604444950819, 0.007133446633815765, -0.05695825070142746, -0.02340918406844139, -0.004188508726656437, 0.000994172878563404, 0.016016092151403427, -0.013809096068143845, -0.0006025678594596684, -0.026702595874667168, -0.010283369570970535, 0.0054525770246982574, -0.002181372605264187, 0.005524321459233761, -0.03435533493757248, 0.02428378351032734, -0.04127013310790062, 0.02323153242468834, -0.05925407260656357, 0.019295837730169296, 0.00042406085412949324, 0.011130636557936668, 0.002678459044545889, -0.005206596106290817, -0.0046428898349404335, 0.0248304083943367, -0.021769311279058456, -0.0021215854212641716, 0.0010326073970645666, -0.044768527150154114, -0.007885055616497993, 0.011854914017021656, 0.0011086224112659693, -0.0091696223244071, -0.01619374379515648, -0.014102905988693237, 0.0031550470739603043, 0.028998417779803276, -0.014417215250432491, -0.01630306988954544, -0.048020943999290466, -0.0005449160817079246, 0.026647932827472687, -0.018858537077903748, -0.003206293098628521, 0.010372195392847061, -0.008445344865322113, -0.002709206659346819, 0.0014596576802432537, 0.015920432284474373, 0.010003224015235901, 0.021700983867049217, 0.013303468003869057, -0.01192324236035347, 0.03736177086830139, 0.008069541305303574, 0.04064151644706726, -0.04028620943427086, 0.010092050768435001, -0.00932677648961544, 0.009121792390942574, -0.013904755003750324, 0.0012649227865040302, -0.010023722425103188, -0.009060297161340714, -0.010966649278998375, 0.008916808292269707, 0.0011948865139856935, -0.009600088931620121, 0.02198796160519123, -0.02014310471713543, -0.007058286108076572, 0.015606123022735119, 0.005626813508570194, -0.017027346417307854, 0.03249681368470192, 0.01136978529393673, 0.010727501474320889, -0.029299061745405197, 0.02946304902434349, 0.029736360535025597, -0.015305479988455772, 0.010139880701899529, 0.016029756516218185, 0.0010300450958311558, -0.016057088971138, 0.03583122044801712, -0.03976691514253616, -0.031184915453195572, 0.04157077521085739, 0.0024341861717402935, 0.006351090967655182, -0.019869793206453323, -0.010379028506577015, -0.00435591209679842, -0.009217452257871628, 0.02477574534714222, -0.011342453770339489, 0.02230226993560791, -0.014157569035887718, -0.0026032980531454086, -0.015961429104208946, -0.028889093548059464, 0.004174842964857817, 0.027754846960306168, 0.0019029357936233282, 0.00883481465280056, -0.0009992974810302258, -0.011130636557936668, 0.024420440196990967, -0.028014494106173515, 0.010338031686842442, -0.007133446633815765, 0.031157582998275757, 0.00461555877700448, 0.001730407471768558, -0.022657576948404312, -0.010317533276975155, 0.002236034953966737, -0.02756352908909321, -0.005975286476314068, -0.028643112629652023, -0.020430082455277443, 0.00865032896399498, 0.019241174682974815, -0.021905967965722084, 0.02249358966946602, -0.0008570897625759244, 0.0015057791024446487, -0.009770909324288368, -0.006959210149943829, 0.004690719768404961, -0.0183392446488142, -0.006491163279861212, -0.010461022146046162, -0.01352895051240921, -0.0007861994672566652, -0.014690527692437172, -0.007201774977147579, 0.01668570563197136, 0.013399127870798111, -0.020115774124860764, -0.0067303115501999855, -0.015100495889782906, -0.017109340056777, -0.013084818609058857, -0.005958204623311758, -0.0004219256225042045, 0.006378422025591135, -0.01903619058430195, -0.003406152594834566, -0.0065424093045294285, -0.013180477544665337, 0.02730388194322586, 0.010003224015235901, 0.015920432284474373, -0.0004979405784979463, -0.008479509502649307, -0.009374606423079967, 0.006255431566387415, -0.0018585225334390998, 0.0009437809931114316, -0.0037102121859788895, 0.004376410506665707, -0.026224300265312195, 0.03566723316907883, 0.003826369997113943, 0.027167227119207382, -0.007030954584479332, -0.009285779669880867, -0.012025734409689903, -0.00010873765859287232, 0.0061836871318519115, -0.006463832221925259, -0.003442024812102318, -0.006873800419270992, 0.007741566281765699, -0.006275929976254702, 0.0005901834229007363, -0.018325578421354294, 0.013877423480153084, 0.006921629887074232, 0.002642586827278137, -0.01223755069077015, 0.012066731229424477, 0.005650728475302458, -0.011998402886092663, -0.021017704159021378, 0.006255431566387415, -0.005937706213444471, 0.017696961760520935, 0.015975095331668854, 0.014977505430579185, 0.03886498510837555, 0.02193329855799675, 0.008438512682914734, 0.009716246277093887, -0.0065731569193303585, -0.004721467383205891, -0.0011180174769833684, 0.0044754864647984505, 0.008684493601322174, 0.0023863567039370537, 0.01324880588799715, -0.001730407471768558, 0.0016953893937170506, -0.006135857664048672, 0.027631856501102448, 0.019596479833126068, -0.030118998140096664, 0.004776129499077797, 0.007994379848241806, -0.013761266134679317, 0.02749520167708397, 0.021714650094509125, -0.0070241219364106655, -0.009463433176279068, 0.0030850106850266457, 0.016631044447422028, 0.005196346901357174, -0.004745381884276867, 0.005650728475302458, -0.016330400481820107, -5.084566510049626e-05, -0.0033207423985004425, -0.008971471339464188, -0.00487862154841423, -0.014430880546569824, -0.025226710364222527, -0.023272529244422913, -0.008732322603464127, 0.0001201078703161329, 0.0013093359302729368, -0.016207410022616386, -0.030993595719337463, 0.0028544035740196705, -0.008595666848123074, 0.020184101536870003, -0.022657576948404312, -0.012005235999822617, 0.0175466388463974, 0.011260460130870342, 0.01879020966589451, 0.017396317794919014, 0.01753297448158264, 0.01223755069077015, 0.005350084975361824, 0.0018926865886896849, -0.0011265585198998451, 0.015715448185801506, -0.0007955945329740644, -0.012832004576921463, -0.000166442827321589, 0.020840050652623177, -0.014991170726716518, -0.0072564370930194855, -0.0024529765360057354, -0.004434489645063877, 0.006788390222936869, 0.013453789986670017, 0.007017289288341999, -0.0015066331252455711, -0.011034977622330189, 0.015237151645123959, 0.0063545070588588715, 0.007987547665834427, 0.006720062345266342, -0.0016825778875499964, 0.00040292186895385385, 0.0014724691864103079, 0.013419626280665398, 0.01928217150270939, -0.0018995193531736732, -0.012989159673452377, 0.009716246277093887, -0.01269534882158041, -0.02484407275915146, 0.007529749535024166, 0.003071345156058669, -0.005787384696304798, 0.005148517433553934, 0.003812704235315323, -0.009627420455217361, 0.0042534200474619865, -0.004195341374725103, -0.0029158988036215305, 0.011581601575016975, -0.022698573768138885, -0.0005163036985322833, 0.007946550846099854, 0.0030576796270906925, 0.003310493193566799, -0.013610944151878357, 0.01242203637957573, -0.006706396583467722, -0.004636057186871767, -0.005138268228620291, 0.018298247829079628, -0.019063521176576614, -0.020238764584064484, 0.0010402943007647991, 0.009934896603226662, -0.004892287310212851, 0.004984530154615641, -0.018981527537107468, 0.005954788066446781, -0.0032882867380976677, 0.015073164366185665, 0.016111750155687332, 0.018298247829079628, -0.006088027730584145, -0.017491977661848068, -0.033754050731658936, 0.013610944151878357, -0.017888279631733894, 0.016221076250076294, -0.018257251009345055, -0.0006119629833847284, -0.0033190343528985977, -0.011397115886211395, 0.010269703343510628, -0.0045984769240021706, -0.001065063290297985, -0.025718672201037407, 0.010461022146046162, 0.00951126217842102, -0.015182489529252052, -0.0064467499032616615, -0.009067130275070667, -0.02125001884996891, -0.009620587341487408, 0.014157569035887718, 0.01723233051598072, 0.0158794354647398, -0.0172869935631752, 0.0029346891678869724, 0.009518095292150974, -0.003522310173138976, -0.02656593918800354, -0.0005598628195002675, -0.006422835402190685, -0.009518095292150974, 0.006682481616735458, -0.011704592034220695, 0.01367927249521017, 0.002905649598687887, -0.005466242786496878, 0.029873017221689224, -0.010064719244837761, -0.012435702607035637, 0.004219256341457367, 0.004649722948670387, -0.015332810580730438, -0.017888279631733894, 0.015660785138607025, 0.005090438760817051, 0.007563913241028786, 0.004239754751324654, 0.002135251183062792, -0.017136670649051666, -0.01612541638314724, 0.018257251009345055, 0.024871405214071274, 0.0006162334466353059, -0.006135857664048672, -0.02853378653526306, 0.004796627908945084, -0.0034505657386034727, -0.0005974432569928467, 0.001183783169835806, -0.013050654903054237, -0.01149277575314045, -0.008971471339464188, -0.010666006244719028, 0.011629431508481503, 0.006265680771321058, -0.026265297085046768, -0.0037238779477775097, 0.009921230375766754, -0.00852050632238388, 0.02200162783265114, -0.014253227971494198, -0.009490763768553734, 0.001988345757126808, -0.01238787267357111, 0.006129024550318718, -0.012210220098495483, 0.0006264826515689492, 0.010119382292032242, 0.0025930488482117653, -0.015168823301792145, -1.3358664546103682e-05, 0.03143089637160301, 0.0027621607296168804, -0.019787799566984177, 0.02558201551437378, 0.007215440273284912, 0.0025178880896419287, 0.004748798441141844, 0.004530148580670357, 0.021782977506518364, -0.002381232101470232, -0.008629830554127693, -0.008028544485569, 0.010556681081652641, -0.03465598076581955, 0.006255431566387415, -0.02452976442873478, -0.0045677293092012405, -0.009087628684937954, -0.01853056252002716, -0.013077985495328903, -0.00441740732640028, -0.004359328653663397, -3.0107039492577314e-05, -0.0023334024008363485, 0.009600088931620121, -0.00470780162140727, 0.01821625418961048, -0.013077985495328903, -0.015592457726597786, 0.0026613769587129354, 0.005373999942094088, 0.0007563059334643185, -0.01870821602642536, -0.000394167349440977, 0.004096265882253647, 0.002864652778953314, 0.002258241642266512, 0.016480721533298492, 0.00901930034160614, -0.02427011728286743, 0.012053065001964569, 0.014061909168958664, 0.006197352893650532, 0.018817540258169174, -0.003843451850116253, 0.02970902994275093, 0.012579191476106644, 0.008301855996251106, 0.006467248313128948, 0.019104517996311188, -0.020047444850206375, 0.014854514971375465, 0.006942128296941519, 0.00867766048759222, 0.0008348831906914711, -0.010105716064572334, -0.010262871161103249, 0.008930474519729614, -0.036979131400585175, -0.0009574465802870691, 0.012647518888115883, 0.013829594478011131, 0.007379427552223206, 0.0033941951114684343, -0.01118529960513115, 0.020771723240613937, -0.019596479833126068, 3.1628405849915e-05, -0.004748798441141844, -0.0008968054316937923, -7.622846169397235e-05, 0.003218250349164009, 0.010392693802714348, 0.01705467700958252, -0.02193329855799675, -0.012189721688628197, -0.00433883024379611, -0.00227703177370131, -0.013385461643338203, 0.026524942368268967, 0.013515285216271877, -0.008131036534905434, 0.012032566592097282, 0.002458101138472557, -0.01742364838719368, 0.005039192736148834, 0.01278417557477951, -0.013993581756949425, -0.012025734409689903, 0.015127826482057571, 0.004605309572070837, -0.0027262885123491287, 0.016781365498900414, 0.006579989567399025, -0.0028834431432187557, 0.014130237512290478, 0.009518095292150974, 0.0091696223244071, -0.008786985650658607, 0.027823176234960556, -0.014663196168839931, 0.014225896447896957, -0.03274279460310936, 0.01340596005320549, 0.015770111232995987, -0.027331214398145676, -0.013323966413736343, -0.000653386814519763, -0.0042875842191278934, -0.015647120773792267, -0.008841647766530514, 0.004946949891746044, 0.0011222879402339458, -0.017327990382909775, -0.023750824853777885, -0.006802055984735489, -0.002847570925951004, -0.005681476090103388, 0.021591659635305405, 0.00469413585960865, -0.003887865226715803, 0.022261273115873337, 0.014922842383384705, 0.006125608459115028, 0.006685898173600435, 0.01945982500910759, -0.0023556090891361237, -0.0033634474966675043, -0.010365363210439682, 0.006299844942986965, 0.008745988830924034, 0.005059691146016121, 0.00781672727316618, -0.018188923597335815, 0.01130829006433487, -0.007796228863298893, -0.00020338266040198505, 0.0035633069928735495, 0.029053080826997757, -0.008055875077843666, 0.02379182167351246, -0.0029927678406238556, -0.024926066398620605, 0.00880065094679594, -0.02260291390120983, -0.023559506982564926, -0.0013494787272065878, -0.010816328227519989, 0.007133446633815765, 0.011602099984884262, 0.023491177707910538, -0.0024068551138043404, -0.006819137837737799, 0.03539392352104187, -0.0002101087011396885, 0.00024811617913655937, -0.0017799453344196081, 0.010030555538833141, -0.004916202276945114, -0.0072564370930194855, 0.000365127925761044, -0.022069955244660378, 0.02396947517991066, -0.010092050768435001, 0.01630306988954544, 0.013016490265727043, -0.0011513273930177093, 0.0010531058069318533, 0.01984246075153351, -0.03318009525537491, 0.02321786619722843, 0.018981527537107468, 0.00030021631391718984, -0.007762064691632986, -0.013330799527466297, -0.00016804426559247077, -0.004984530154615641, -0.008691325783729553, -0.035803891718387604, 0.0033173260744661093, -0.0036179693415760994, 0.010201375931501389, 0.0014801560901105404, -0.007140279747545719, -0.005025526974350214, -0.01866721920669079, -0.01940516196191311, 0.023805487900972366, 0.00929261278361082, -0.006053864024579525, -0.023327190428972244, -0.017082009464502335, 0.0025759669952094555, 0.024762079119682312, -0.007160778157413006, -0.009798239916563034, 0.010276536457240582, -0.0008024273556657135, -0.015059499070048332, 0.033453404903411865, 0.009490763768553734, 0.003132840385660529, -0.002236034953966737, -0.001610833453014493, -0.003202876541763544, -0.031840864568948746, 0.0015937513671815395, -0.0246527548879385, -0.014663196168839931, 0.010167211294174194, -0.024926066398620605, 0.012886667624115944, 0.016972683370113373, -0.015114161185920238, -0.010686504654586315, 0.011151134967803955, -0.007263270206749439, 0.00812420342117548, 0.03872833028435707, 0.0005564464372582734, 0.015537794679403305, -0.010604511015117168, 0.002844154369086027, -0.01266801729798317, -0.011916409246623516, -0.0008848480647429824, 0.008206197060644627, -0.006006034091114998, 0.0006089736125431955, 0.0048957038670778275, -0.01735532097518444, 0.015387473627924919, -0.01223755069077015, -0.0084658432751894, -0.003529143054038286, 0.010331198573112488, -0.00043452359386719763, -0.003607720136642456, 0.010269703343510628, 0.04498717933893204, -0.00018138957966584712, -0.0013460622867569327, 0.005619980860501528, -0.01847590133547783, 0.023873815312981606, 0.025718672201037407, -0.005162183195352554, -0.012087229639291763, 0.02965436689555645, 0.008356519043445587, -0.014827183447778225, -0.0074750869534909725, -0.0034864379558712244, 0.0028526955284178257, 0.011608933098614216, -0.01945982500910759, 0.014567537233233452, 0.045315153896808624, -0.010262871161103249, 0.0012555276043713093, 0.006706396583467722, 0.012094061821699142, -0.023313526064157486, 0.0041304295882582664, 0.015155158005654812, 0.02730388194322586, 0.0034778970293700695, -0.0010010057594627142, 0.0019285588059574366, 0.011485942639410496, 0.03307076916098595, 0.01242203637957573, -0.010946150869131088, 0.006795222871005535, 0.008841647766530514, 0.006938711740076542, 0.01691802218556404, -2.3247546778293326e-05, 0.017341654747724533, -0.0029466464184224606, 0.007727900519967079, 0.007454588543623686, 0.016221076250076294, 0.018803875893354416, 0.010932485572993755, -0.006084611639380455, 0.013932086527347565, -0.007891887798905373, 0.009094461798667908, 0.0028236559592187405, 0.005114353261888027, -0.010720668360590935, 0.02582799643278122, -0.006426251493394375, -0.01784728281199932, 0.001408411655575037, 0.028014494106173515, 0.015674451366066933, -0.0032421653158962727, 0.018257251009345055, -0.0019405161729082465, -0.0018773127812892199, -0.028943754732608795, -0.0028509872499853373, 0.009962227195501328, -0.013303468003869057, -0.005623397417366505, 0.00775523204356432, 0.015455801039934158, 0.02304021269083023, 0.014294224791228771, 0.03583122044801712, -0.01112380437552929, 0.009080795571208, 0.0010556681081652641, 0.017368987202644348, -0.0070856171660125256, -0.0042329216375947, 0.009866568259894848, 0.0002957322867587209, -0.007857724092900753, -0.013727102428674698, 0.0025759669952094555, -0.011021312326192856, 0.00039502145955339074, 0.015319145284593105, 0.0030593876726925373, 0.023012882098555565, -0.00830868910998106, 0.0010377319995313883, 0.006515078246593475, 0.007311099674552679, 0.002176248002797365, -0.002451268257573247, -0.026798255741596222, -0.018243584781885147, 0.021209022030234337, -0.010474687442183495, -0.0035120609682053328, 0.004810293670743704, 0.005818132311105728, 0.007352096494287252, 0.0046121422201395035, -0.004065518267452717, -0.009224284440279007, -0.012579191476106644, -0.004331997595727444, 0.025418028235435486, 0.019008859992027283, -0.007010456174612045, -0.012217052280902863, 0.02019776776432991, 0.0034778970293700695, -0.007891887798905373, -0.0027228721883147955, -0.029080411419272423, -0.007980714552104473, -0.004181675612926483, 0.017068343237042427, 0.018954196944832802, 0.005397914908826351, 0.005117769818753004, -0.02558201551437378, 0.01951448619365692, -0.021154358983039856, -0.010645507834851742, 0.008534171618521214, 0.00449256831780076, 0.0015792316989973187, 0.005134851671755314, 0.010098883882164955, -0.04788428544998169, -0.03686980903148651, -0.01259968988597393, 0.018872203305363655, 0.0011017895303666592, -0.0009514678968116641, 0.005380832590162754, -0.017642298713326454, 0.004314915277063847, -0.0017953191418200731, 0.005121186375617981, -0.011943740770220757, 0.005807883106172085, 0.021837640553712845, 0.021632656455039978, -0.010338031686842442, 0.025923656299710274, -0.010037388652563095, 0.005206596106290817, 0.0052202618680894375, 0.007065118756145239, -0.009490763768553734, 0.007017289288341999, 0.0163167342543602, -0.009798239916563034, 0.01870821602642536, -0.0020720476750284433, -0.02168731763958931, -0.0026152555365115404, -0.0026032980531454086, 0.023395519703626633, -0.015032167546451092, 0.009764076210558414, 0.018954196944832802, -0.0011726799421012402, -0.01581110805273056, 0.02284889481961727, 0.006713229231536388, -0.006146106868982315, -6.437781848944724e-05, -0.007235938683152199, -0.004133846145123243, 0.007584411650896072, -0.01786094903945923, -0.015223486348986626, -0.005069940350949764, 0.02075805701315403, -0.0025144717656075954, 0.03033764660358429, -0.004051852505654097, 0.00876648724079132, 0.017341654747724533, -0.007297433912754059, 0.031048258766531944, -0.005585816688835621, 0.010590845718979836, 0.006108526140451431, -0.014198565855622292, 0.02384648472070694, -0.015496797859668732, 0.02582799643278122, 0.0076322415843605995, -0.004871788900345564, -0.0093882717192173, -0.0078508909791708, 0.015305479988455772, -0.0018773127812892199, -0.0031208829022943974, 0.025158382952213287, 0.0017816534964367747, -0.00920378603041172, 0.006234933156520128, -0.0013597279321402311, 0.006535576656460762, -0.03872833028435707, 0.013426458463072777, 0.02595098689198494, 0.009798239916563034, -0.006265680771321058, -0.02045741304755211, 0.008903142996132374, -0.0022292020730674267, -0.010085217654705048, 0.0036282185465097427, -0.0010855617001652718, 0.006088027730584145, -1.2444510502973571e-05, 0.0010744583560153842, 0.016289403662085533, 0.0011427863501012325, -0.006815721280872822, -0.01247669942677021, -0.010857325047254562, 0.014813518151640892, -0.03093893453478813, -0.01903619058430195, -0.027290217578411102, -0.012319544330239296, 0.00019964597595389932, -0.017191333696246147, -0.006996790878474712, 0.014936508610844612, -0.03328941762447357, -0.004923034925013781, -0.0037682910915464163, -0.006767891813069582, -0.020785387605428696, -0.01995178684592247, 0.029381055384874344, 0.025431694462895393, -0.0030593876726925373, -0.007960216142237186, 0.019118184223771095, 0.016535384580492973, 0.009381439536809921, -0.016972683370113373, 0.0022804480977356434, -0.04408524930477142, 0.02872510626912117, 0.013446956872940063, 0.008882644586265087, -0.02204262465238571, 0.021714650094509125, -0.011253627017140388, -0.021045034751296043, 0.0055140722543001175, 0.026019316166639328, -0.014512874186038971, -0.009907565079629421, 0.005264675244688988, 0.006733727641403675, -0.006200768984854221, 0.0035940546076744795, -0.010829993523657322, 0.0029381054919213057, 0.012155557051301003, -0.014102905988693237, -0.005404747556895018, 0.008602499961853027, 0.0009583006612956524, -0.008042209781706333, 0.0037785402964800596, -0.002755328081548214, -0.029982341453433037, -0.021168025210499763, -0.0018243584781885147, 0.006238349713385105, -0.008117370307445526, -0.0061836871318519115, -0.016521718353033066, -0.004396908916532993, 0.007147112395614386, 0.00422950554639101, 0.0042875842191278934, -0.0164943877607584, 0.01257235836237669, -0.0008143847808241844, -0.007092449814081192, 0.002859528176486492, 0.008267692290246487, 0.024803075939416885, 0.020771723240613937, 0.012811506167054176, 0.00010809708328451961, -0.002212120220065117, 0.0010078385239467025, 0.015004836022853851, 0.017956607043743134, 0.013843259774148464, -0.0036931303329765797, -0.015906766057014465, 0.032715462148189545, 0.013166812248528004, 0.011144302785396576, -0.011438112705945969, -0.015264483168721199, -0.023518510162830353, -0.003283162135630846, 0.018147926777601242, -0.007700569462031126, -0.006176854483783245, 0.016111750155687332, 0.004530148580670357, 0.0019900540355592966, -0.017929276451468468, -0.0004052706644870341, -0.035749226808547974, -0.0023487762082368135, 0.010051053948700428, -0.005883043631911278, 0.013166812248528004, 0.02217927947640419, 0.012811506167054176, 0.006105110049247742, -0.022684907540678978, 0.0030440138652920723, 0.020102107897400856, -0.01593409851193428, 0.01717766746878624, -0.023450180888175964, 0.002353900810703635, 0.007864557206630707, 0.002712622983381152, -0.006064113229513168, -0.00029872162849642336, -0.014991170726716518, -0.01269534882158041, 0.0065424093045294285, -0.018147926777601242, 0.016480721533298492, -0.004690719768404961, -0.00030576795688830316, -0.0007396509754471481, 0.012674850411713123, 0.016508053988218307, 0.010016890242695808, 0.004981113597750664, -0.0035564741119742393, 0.016412394121289253, -0.010098883882164955, -0.0010932486038655043, 0.027467869222164154, -0.023204199969768524, 0.007215440273284912, 0.015278148464858532, -0.007721067871898413, -0.03162221610546112, -0.0018978111911565065, 0.011971071362495422, -0.007304267026484013, -0.015742778778076172, -0.003214834025129676, 0.00023573171347379684, 0.020853716880083084, -0.0023692746181041002, 0.002705790102481842, 0.00398694071918726, -0.00935410801321268, -0.013993581756949425, 0.01921384409070015, 0.02916240505874157, 0.028014494106173515, 0.0070856171660125256, -0.02100403793156147, -0.019787799566984177, 0.006583406124264002, 0.010543015785515308, 0.012989159673452377, -0.0010701878927648067, 0.006907964125275612, 0.00436957785859704, -0.020252428948879242, -0.004697552416473627, 0.013877423480153084, -0.006747393403202295, 0.0177242923527956, -0.012285380624234676, 0.016262073069810867, -0.003549641463905573, -0.01582477241754532, 0.019500821828842163, -0.00914229080080986, 0.00797388143837452, -0.00475563108921051, 0.002994476119056344, -0.0028612364549189806, 0.009401937946677208, 0.0007682633586227894, 0.01248353160917759, -0.006176854483783245, -0.020430082455277443, 0.001282858895137906, -0.012128226459026337, -0.009470265358686447, 0.0056404792703688145, -8.428903674939647e-05, 0.018981527537107468, 0.011192131787538528, 0.006067529320716858, -0.011116971261799335, 0.015975095331668854, 0.008534171618521214, -0.002482015872374177, -0.00883481465280056, 0.01705467700958252, 0.017013680189847946, 0.004530148580670357, -0.00421583978459239, 0.021400339901447296, -0.015742778778076172, 0.0029688531067222357, 0.0027297050692141056, 0.002521304413676262, 0.01568811759352684, 0.01705467700958252, 0.01377493143081665, 0.007522916421294212, 0.00407918356359005, 0.014526540413498878, 0.034683309495449066, -0.0010659173130989075, 0.0039254454895854, -0.01291399821639061, 0.008049042895436287, -0.009839236736297607, 0.0001588626764714718, -0.013508452102541924, 0.018885869532823563, -0.032770127058029175, -0.011260460130870342, -0.014225896447896957, 0.033890705555677414, 0.0035667233169078827, 0.0032626637257635593, -0.004239754751324654, 0.0005022110417485237, -0.010064719244837761, -0.00048299378249794245, 0.03107558935880661, -0.006344257853925228, 0.013276137411594391, -0.007263270206749439, -0.018243584781885147, 0.034191347658634186, 0.009087628684937954, 0.003758041886612773, 0.01965114288032055, 0.0011333912843838334, -0.020840050652623177, -0.016467057168483734, 0.00245468458160758, -0.005760053172707558, 0.010249204933643341, -0.010884655639529228, 0.01324880588799715, -0.017696961760520935, -0.03640517592430115, 0.012312712147831917, -0.01656271517276764, -0.013733934611082077, -0.010119382292032242, 0.008363351225852966, 0.01963747665286064, 0.008636663667857647, -0.010344864800572395, -0.03522993624210358, -0.01716400310397148, 0.01359044574201107, -0.01661737821996212, -0.005052858032286167, -0.015196154825389385, 0.018639888614416122, 0.019227508455514908, -0.00435591209679842, 0.013364963233470917, 0.0008754529408179224, 0.013952584937214851, 0.028643112629652023, -0.005292006302624941, -0.012435702607035637, -0.010016890242695808, -0.014280559495091438, 0.009914398193359375, -0.02242526039481163, 0.012859336100518703, -0.017491977661848068, 0.006275929976254702, -0.015237151645123959, 0.011506441049277782, 0.013112150132656097, -0.015264483168721199, 0.0004513920866884291, 0.015291813760995865, -0.0024495599791407585, 0.008131036534905434, 0.003233624156564474, 0.059144746512174606, 0.02340918406844139, -0.02130468189716339, -0.007809894159436226, -0.005131435580551624, -0.008568335324525833, -0.009183287620544434, 0.00034398894058540463, 0.009668417274951935, -0.008254026994109154, 0.019350498914718628, 0.0026852916926145554, 0.01367927249521017, -0.006497995927929878, -0.003638467751443386, -0.015114161185920238, 0.023819152265787125, -0.024816742166876793, -0.004051852505654097, 0.011670428328216076, -0.011164801195263863, 0.013399127870798111, 0.0084658432751894, -0.005999201443046331, -0.008698158897459507, -0.008165200240910053, 0.017068343237042427, 0.002605006331577897, -0.006453583016991615, -0.002442727331072092, 0.015865769237279892, -0.011964239180088043, 0.009005635045468807, -0.0084658432751894, -0.023313526064157486, -0.005134851671755314, 0.007468254305422306, 0.015032167546451092, -0.01965114288032055, 0.00797388143837452, -0.006303261034190655, 0.029435716569423676, 0.008240360766649246, -0.007700569462031126, -0.01740998402237892, 0.02329985983669758, 0.0003264799015596509, 0.028561118990182877, -0.01889953389763832, 0.006610737182199955, -0.0050631072372198105, 0.011595267802476883, 0.004981113597750664, 0.008103705011308193, -0.01984246075153351, -0.008479509502649307, -0.013399127870798111, -0.012005235999822617, 0.008636663667857647, 0.0009412186918780208, -0.009272114373743534, 0.007639074232429266, -0.007058286108076572, 0.017000015825033188, 0.00957275740802288, -0.0015775235369801521, 0.02446143701672554, -0.0079397177323699, 0.019008859992027283, -0.00781672727316618, -0.009565925225615501, -0.0012358833337202668, 0.00452331593260169, -0.0166720412671566, 0.02058040350675583, -0.006911380682140589, 0.005678059533238411, 0.005015277769416571, 0.0012666309485211968, 8.290112600661814e-05, -0.00796704925596714, 0.003887865226715803, -0.003518893849104643, 0.019063521176576614, 0.023504843935370445, 0.025349700823426247, -0.0014767396496608853, 0.013460623100399971, 0.0038537010550498962, -0.008083206601440907, -0.013863758184015751, 0.019077187404036522, -0.019719470292329788, -0.0011026436695829034, 0.0027297050692141056, 0.006299844942986965, -0.020033780485391617, 0.01257235836237669, -0.0074135917238891125, 0.021974295377731323, -0.01686335913836956, -0.010502018965780735, -0.014102905988693237, 3.6993224057368934e-05, -0.0045062340795993805, -0.01180025190114975, -0.000785345328040421, -0.01686335913836956, -0.014376218430697918, -0.011889077723026276, -0.00867766048759222, -0.002844154369086027, 0.01340596005320549, -0.0065116616897284985, 0.0026562523562461138, -0.009251615963876247, -0.006959210149943829, 0.0019746802281588316, -0.005333003122359514, 0.02100403793156147, 0.0007358075235970318, -0.00420217402279377, 0.007420424371957779, -0.02656593918800354, -0.006757642608135939, 0.003009849926456809, 0.006641484797000885, -0.00025025143986567855, 0.00422950554639101, 0.010993980802595615, -0.0019439326133579016, 0.014048243872821331, 0.014950173906981945, 0.013460623100399971, 0.00926528126001358, -0.011021312326192856, -0.00849317479878664, 0.0018124011112377048, -0.04621708393096924, -0.020908378064632416, -0.005596065893769264, -0.005257842130959034, -0.016726702451705933, -0.011608933098614216, 0.01723233051598072, -0.006781557574868202, 0.013973083347082138, 0.013016490265727043, -0.010481520555913448, -0.003132840385660529, 0.005917207803577185, 0.011479109525680542, 0.021536996588110924, -0.005117769818753004, 0.018448568880558014, -0.0035974709317088127, 0.021154358983039856, 0.01216922327876091, -0.007700569462031126, -0.002323153195902705, 0.0076322415843605995, 0.03307076916098595, 0.007324765436351299, -0.04023154824972153, 0.02329985983669758, 0.0010437107412144542, 0.008752821013331413, -0.01674036867916584, 0.023860149085521698, 0.006036781705915928, -0.021605324000120163, 0.009606922045350075, 0.01328296959400177, 0.007577579002827406, 0.0069318790920078754, 0.01809326373040676, -0.01130829006433487, -0.006494579836726189, -0.010686504654586315, 0.018024936318397522, -0.003055971348658204, -0.004902536515146494, 0.006525327451527119, -0.002015677047893405, -0.00019633633201010525, 0.028834430500864983, -0.0012956704013049603, 0.006238349713385105, -0.014581202529370785, 0.012210220098495483, 0.0007020705379545689, 0.011287791654467583, 0.005466242786496878, -0.0003866939805448055, -0.01581110805273056, -0.011089639738202095, -0.009873401373624802, -0.027344878762960434, -0.014594867825508118, -0.00030939787393435836, 0.0015877727419137955, 0.0008780152420513332, 0.019432492554187775, -0.011629431508481503, -0.0006209310377016664, -0.01306432019919157, -0.008657162077724934, -0.03164954483509064, 0.008349685929715633, -0.02211095206439495, 0.010003224015235901, -0.026401951909065247, -0.014294224791228771, 0.012135058641433716, -0.015742778778076172, -0.008780152536928654, 0.033016107976436615, -0.00821303017437458, -0.01821625418961048, 0.00424658739939332, -0.008759654127061367, 0.0012170930858701468, -0.02414712682366371, -0.002135251183062792, -0.005835214164108038, 0.007017289288341999, -0.05042608827352524, -0.025677675381302834, 0.014581202529370785, -0.019446158781647682, -0.003199460217729211, 0.007502418011426926, 0.00429100077599287, 0.02273957058787346, -0.03547591716051102, 0.012551859952509403, 0.0007755231927148998, 0.016658375039696693, -0.01242203637957573, 0.023122206330299377, -0.011144302785396576, 0.004533565137535334, -0.011397115886211395, -0.02730388194322586, 0.03304343670606613, 0.010952983982861042, -0.016289403662085533, 0.023942142724990845, -0.003641884308308363, -0.007030954584479332, 0.0067610591650009155, -0.01287983451038599, 0.011526939459145069, -0.02056673914194107, 0.010911987163126469, 0.007789395749568939, -0.006193936336785555, -0.01229221373796463, -0.005517488811165094, -0.015742778778076172, -0.012305879034101963, -0.00227703177370131, 0.010802662000060081, 0.0050323596224188805, -0.011848080903291702, 0.006986541673541069, -0.003904947079718113, 0.0039937738329172134, 0.028889093548059464, -0.005947955418378115, -0.04416724294424057, -0.00797388143837452, 0.01100081391632557, -0.02058040350675583, 0.01201890129595995, 0.01377493143081665, 0.001561295590363443, -0.02842446230351925, 0.008725490421056747, 0.01220338698476553, 0.01889953389763832, 0.02435211092233658, -0.010809495113790035, -0.01661737821996212, 0.002567425835877657, 0.0025845079217106104, 0.008363351225852966, -0.001248694839887321, 0.016412394121289253, 0.011731923557817936, -0.00910812709480524, -0.021700983867049217, 0.021536996588110924, -0.020375419408082962, 0.024502433836460114, -0.005104104056954384, 8.807910489849746e-05, 0.01303015649318695, 0.011745588853955269, -0.010030555538833141, 0.011342453770339489, -0.0008395807235501707, 0.011130636557936668, -0.009613754227757454, 0.0005440620006993413, 0.007741566281765699, 0.0019422243349254131, -0.009367773309350014, 0.006180270574986935, -0.0257050059735775, -0.005473075434565544, 0.009244782850146294, 0.03916563093662262, 0.014348886907100677, -0.037908393889665604, 0.003945943899452686, 0.005681476090103388, -0.03957559913396835, 0.025978319346904755, 0.0016637876396998763, -0.02390114590525627, -0.0029586039017885923, 0.01656271517276764, -0.0008605062030255795, -0.0026101309340447187, -0.006911380682140589, -0.010877823457121849, 0.002840738045051694, -0.008049042895436287, -0.013829594478011131, 0.003426651004701853, 0.028834430500864983, -0.0035667233169078827, -0.0031191748566925526, -0.0034488574601709843, 0.006846468895673752, -0.00104285660199821, 0.010631842538714409, -0.013296635821461678, -0.012469866313040257, -0.01691802218556404, -0.00944976694881916, 0.015715448185801506, -0.00787822250276804, -0.024816742166876793, 0.021236352622509003, 0.0018636471359059215, 0.009210619144141674, -0.007796228863298893, 0.0030354729387909174, 0.007365762256085873, 0.017888279631733894, -0.018571559339761734, -0.0023795238230377436, -0.0040245214477181435, 0.004482319112867117, -2.866574504878372e-05, 0.005992368794977665, 0.005900125950574875, -0.017204999923706055, -0.021536996588110924, -0.004133846145123243, -0.016084419563412666, -0.0044413222931325436, -0.008233528584241867, -0.02593732252717018, 0.0005987244076095521, 0.028807099908590317, 0.0014024329138919711, -0.018421238288283348, 0.002039591781795025, -0.013891089707612991, -0.010652340948581696, 0.005052858032286167, 0.015319145284593105, 0.01582477241754532, 0.0029825186356902122, 0.010201375931501389, 0.015127826482057571, 0.011410782113671303, 0.005121186375617981, 0.008759654127061367, -0.011171633377671242, -0.015442135743796825, -0.0017474894411861897, -0.0017782370559871197, -0.006286179181188345, -0.009948561899363995, -0.014007247053086758, 0.0032729129306972027, -2.1726180420955643e-05, 0.02558201551437378, 0.012859336100518703, 0.004776129499077797, 0.0067610591650009155, -0.0088621461763978, -0.020771723240613937, -0.00429100077599287, -0.003963026218116283, -0.010898321866989136, -0.0030815943609923124, -0.0013033573050051928, 0.01155427098274231, -0.024242786690592766, -0.026278961449861526, -0.017888279631733894, 0.013966250233352184, -0.008937306702136993, 0.0071812765672802925, 0.012059898115694523, 0.0046736374497413635, 0.011465444229543209, -0.006538992747664452, -0.004683886654675007, 0.010139880701899529, 0.008055875077843666, -0.019446158781647682, -0.030993595719337463, 0.010666006244719028, -0.013720269314944744, -0.009149123914539814, 0.006470664869993925, -0.02798716351389885, 0.0087733194231987, -0.0031704208813607693, 0.00401768833398819, -0.003114050254225731, 0.007700569462031126, 0.014348886907100677, 0.006234933156520128, 0.028561118990182877, -0.011882245540618896, 0.006293011829257011, 0.021113362163305283, 0.019623812288045883, 0.0033788213040679693, -0.006221267394721508, -0.0016159580554813147, 0.00951126217842102, 0.012463033199310303, -0.03517527133226395, -0.012305879034101963, 0.02068972960114479, 0.005524321459233761, 0.012715847231447697, 0.006907964125275612, -0.008260859176516533, 0.008547836914658546, -0.001849981490522623, -0.00021907675545662642, 0.007591244764626026, 0.0006456999108195305, -0.004427656531333923, 0.025909990072250366, 0.02916240505874157, 0.003915196284651756, 0.009770909324288368, 0.000788334698881954, 0.004051852505654097, 0.009866568259894848, 0.013884256593883038, 0.011533772572875023, 0.0007494731107726693, 0.012961828149855137, -0.01226488221436739, 0.02921706810593605, 0.011807084083557129, 0.010078385472297668, -0.031239576637744904, 0.011274125427007675, -0.01236054114997387, -0.0039288620464503765, 0.010139880701899529, -0.006422835402190685, 0.020963041111826897, 0.02514471672475338, -0.005360334180295467, -0.006327176000922918, -0.0013503327500075102, 0.004649722948670387, -0.01189591083675623, 0.00011626441846601665, -0.005247592926025391, 0.002049840986728668, -0.009736744686961174, 0.006282762624323368, 0.007563913241028786, 0.006579989567399025, -0.0023214449174702168, 0.0026613769587129354, -0.020922044292092323, 0.004311499185860157, 0.0007930322317406535, -0.00025751127395778894, 0.026169637218117714, 0.008691325783729553, 0.012333210557699203, 0.012859336100518703, -0.0067747244611382484, -0.00929261278361082, 0.019787799566984177, -0.02002011425793171, -0.003764874767512083, 0.014403549954295158, 0.003976691514253616, -0.002536678221076727, -0.008991969749331474, 0.002104503568261862, 0.0059342896565794945, -0.00109239446464926, -0.028342468664050102, 0.00957275740802288, -0.0003401454887352884, -0.005954788066446781, -0.026101309806108475, -0.01275684405118227], "1abdb350-e5f4-4c81-942a-1105d3053d74": [-0.03972528874874115, -0.009605200961232185, -0.002328999573364854, -0.00532562518492341, -0.04518936201930046, -0.02106867916882038, -0.024514490738511086, 0.01391861867159605, -0.030569273978471756, 0.0022474692668765783, 0.01909964345395565, 0.014189361594617367, -0.01322945673018694, -0.02271774597465992, 0.028009528294205666, 0.005762504879385233, -0.020551806315779686, 0.021585550159215927, 0.00029747048392891884, -0.015641525387763977, 0.06000635400414467, -0.002596665406599641, -0.04230964928865433, 0.0010914301965385675, -0.02643430046737194, -0.04728146269917488, -0.022791584953665733, 0.01897657848894596, -0.03507344424724579, 0.00649166340008378, 0.023825328797101974, 4.428647116583306e-06, -0.01772131770849228, 0.03620563820004463, 0.0587264783680439, -0.009549821726977825, -0.04208813235163689, 0.03470424935221672, -0.02305001951754093, -0.008854505605995655, -0.03379356861114502, 0.012595673091709614, -0.009383684024214745, -0.020231839269399643, -0.03376895561814308, -0.008245335891842842, 0.0013383287005126476, -0.004722608253359795, 0.05296705290675163, 0.0005991713260300457, 0.015506153926253319, -0.045484717935323715, 0.023554585874080658, 0.018201271072030067, 0.010706629604101181, 0.04553394392132759, 0.029757047072052956, 0.026138944551348686, 0.013340214267373085, -0.01095275953412056, -0.0042518856935203075, -0.005768658127635717, 0.0028443331830203533, 0.005319471936672926, 0.0029104803688824177, -0.01852123811841011, 0.036870189011096954, 0.000994516653008759, -0.06044938787817955, -0.014017070643603802, 0.02479754015803337, 0.029387852177023888, -0.01839817501604557, 0.01700754277408123, -0.0010929685086011887, -0.009475982747972012, 0.021265581250190735, -0.01978880539536476, -0.0004088055866304785, 0.012601826339960098, -0.02259468100965023, 0.04080825671553612, 0.026729654520750046, -0.02586820162832737, 0.05577292665839195, 0.05995712801814079, 0.00477183423936367, -0.035467248409986496, -0.0021459409035742283, -0.029043272137641907, 0.013844779692590237, -0.02424374781548977, -0.013980151154100895, -0.017992060631513596, -0.03595950827002525, 0.015456927940249443, 0.03399047255516052, 0.023468440398573875, 0.009045256301760674, -0.04290035739541054, 0.02948630414903164, 0.010023620910942554, -0.022865423932671547, 0.006707026623189449, -0.02877252921462059, 0.00978364422917366, -0.001952113932929933, -0.024760620668530464, 0.011789599433541298, 0.039331480860710144, 0.03298134356737137, -0.02467447519302368, 0.013438666239380836, 0.0005022578407078981, -0.007217745296657085, -0.05040730535984039, -0.007236205041408539, -0.0032519849482923746, -0.023677650839090347, -0.03544263541698456, 0.018607383593916893, 0.026138944551348686, 0.015912266448140144, -0.005221020430326462, 0.03143072873353958, -0.008983723819255829, -0.013254069723188877, -0.011451171711087227, 0.006199385039508343, 0.033621277660131454, -0.014620088040828705, 0.010097459889948368, -0.0175736416131258, 0.019874950870871544, -0.03263676166534424, 0.005116415210068226, 0.011851131916046143, 0.049201272428035736, -0.023320762440562248, 0.04787217453122139, 0.004854903090745211, -0.0009737495565786958, 0.006528582889586687, 0.012029575183987617, 0.013844779692590237, 0.005870186723768711, -0.026729654520750046, 0.02503136172890663, 0.025794362649321556, 0.0011406560661271214, -0.02958475612103939, 0.007673084735870361, -0.003664251882582903, 0.01652759127318859, 0.019899563863873482, 0.008491464890539646, -0.008983723819255829, 0.019764192402362823, 0.0001060471695382148, 0.012651052325963974, 0.019505755975842476, -0.043983329087495804, 0.015530766919255257, -0.011081976816058159, 0.05897260829806328, 0.02724652737379074, 0.037337832152843475, 0.000556867802515626, -0.018262803554534912, 0.019641127437353134, 0.016109170392155647, 0.013241763226687908, 0.013118698261678219, -0.014693926088511944, 0.00028843292966485023, -0.011574235744774342, 0.026385074481368065, -0.0005807115812785923, 0.008017665706574917, -0.01724136620759964, 0.011851131916046143, -0.01922270841896534, -0.024846764281392097, -0.006559349130839109, -0.008952957578003407, 0.03763318806886673, 0.017425963655114174, 0.04617387801408768, -0.0164045263081789, -0.010798928327858448, 0.022680826485157013, 0.008885271847248077, 0.003055081469938159, 0.026483526453375816, 0.0016706034075468779, 0.0065347361378371716, 0.04597697779536247, 0.013672489672899246, 0.01549384742975235, 0.008522231131792068, 0.007531560491770506, -0.051785629242658615, 0.004350337665528059, 0.006571655627340078, -0.046789202839136124, -0.025548234581947327, -0.04425407201051712, -0.032562922686338425, -0.019148869439959526, -0.038371577858924866, 0.009088329039514065, -0.012041881680488586, 0.0001233531511388719, -0.013414053246378899, -0.00879912730306387, -0.027812624350190163, -0.014115522615611553, 0.03527034446597099, 0.0072054388001561165, -0.029510917142033577, -0.03714092820882797, 0.005925565958023071, -0.015752283856272697, -0.018570464104413986, -0.05862803012132645, 0.023960698395967484, -0.022053197026252747, -0.00046610759454779327, -0.06512584537267685, -0.017610561102628708, 0.022520842030644417, 0.024834459647536278, 0.022213179618120193, -0.024514490738511086, -0.0270250104367733, 0.04078364372253418, -5.25428622495383e-05, -0.010442040860652924, 0.0002918941027019173, -0.04255577549338341, -0.001393707818351686, 0.025597460567951202, 0.02037951536476612, -0.006842398084700108, 0.015420008450746536, -0.009045256301760674, 0.02867407724261284, 0.05301627889275551, -0.004368797410279512, -0.028821755200624466, -0.021634776145219803, 0.009808257222175598, 0.0072854310274124146, -0.03795315697789192, -0.0324152447283268, 0.0542469248175621, -0.02586820162832737, -0.013684796169400215, 0.014657007530331612, -0.03130766376852989, 0.007476181257516146, -0.06335370987653732, 0.028034141287207603, -0.00425496231764555, 0.05301627889275551, 0.016847558319568634, 0.024046843871474266, -0.039552997797727585, -0.019899563863873482, -0.0052702464163303375, -0.04472171515226364, -0.0038611553609371185, -0.023345375433564186, 3.4395627153571695e-05, -0.0051256450824439526, 0.008226876147091389, 0.005239480175077915, -0.002815105253830552, 0.03822389990091324, 0.014767765067517757, 0.01281103678047657, 0.01710599474608898, 0.012417229823768139, -0.0006084011401981115, -0.009635967202484608, -0.025671299546957016, -0.00820226315408945, 0.0008199186413548887, -0.0389130599796772, -0.02131480723619461, 0.00037553964648395777, -0.004159587435424328, 0.01722905971109867, -0.011174275539815426, 0.05626518651843071, -0.029658595100045204, -0.0009560589678585529, -0.006430131383240223, -0.03817467391490936, -0.000449955346994102, -0.008596070110797882, -0.005039500072598457, 0.04686304181814194, -0.013697102665901184, 0.03679635003209114, 0.012946407310664654, 0.041891228407621384, 0.011014292016625404, -0.03111075982451439, 0.021487098187208176, 0.012201866135001183, -0.013487892225384712, -0.01955498196184635, 0.0007095449836924672, 0.026385074481368065, 0.027049623429775238, 0.0032027591951191425, -0.010060540400445461, 0.0029181719291955233, -0.020367208868265152, 0.0002590127696748823, -0.0025320565328001976, -0.04371258616447449, -0.005537911783903837, -0.007156212814152241, -0.05252401903271675, 0.05537911877036095, -0.005104108713567257, -0.007949979975819588, -0.004101131577044725, -0.03842080384492874, 0.012263398617506027, -0.02983088605105877, -0.01710599474608898, -0.0031027691438794136, 0.029633982107043266, -0.029141724109649658, -0.0589233823120594, 0.000643397681415081, -0.014829297550022602, -0.02852639928460121, 0.024428345263004303, -0.027911076322197914, -0.018115125596523285, 0.04447558522224426, 0.014238586649298668, 0.010571259073913097, 0.0021197895985096693, -0.03426121547818184, 0.008626836352050304, 0.0007045454694889486, -0.028452562168240547, 0.008712981827557087, 0.005547141656279564, 0.04137435555458069, -0.025769749656319618, -0.001661373651586473, -0.016355300322175026, 0.005454843398183584, 0.009537515230476856, 0.04563239589333534, -0.009131401777267456, -0.009482135996222496, -0.02083485573530197, -0.023616118356585503, 0.00463338615372777, -0.015530766919255257, 0.023443827405571938, 0.014706232585012913, 0.01404168363660574, -0.013266376219689846, 0.010694323107600212, 0.006787018850445747, -0.03192298486828804, -0.024969829246401787, -0.02271774597465992, 0.00722389854490757, -0.04452481120824814, -0.0396268367767334, 0.02537594363093376, -0.0014467794680967927, 0.0013529426651075482, 0.019481142982840538, -0.01699523627758026, 0.037559349089860916, 0.042826518416404724, 0.005057959817349911, -0.024379119277000427, -0.008596070110797882, 0.0021997818257659674, -0.01854585111141205, -0.0070700678043067455, -0.03669789806008339, -0.03770702704787254, -0.04322032630443573, 0.022656213492155075, 0.018607383593916893, -0.03810083493590355, -0.00996208842843771, -0.005165641196072102, -0.013832473196089268, -0.010675863362848759, -0.004673382267355919, -0.017450576648116112, 0.03194759786128998, -0.02970782108604908, -0.01455855555832386, 0.024908296763896942, 0.012023421935737133, 0.00046303097042255104, 0.022693132981657982, 0.02003493532538414, -0.0016444522188976407, -0.02830488421022892, 0.035590313374996185, -0.0445001982152462, 0.02188090607523918, -1.456586232961854e-05, -0.03369511663913727, -0.01433703862130642, 0.054443828761577606, 0.04833981767296791, -0.007949979975819588, 0.048856690526008606, -0.014767765067517757, 0.020465660840272903, 0.03950377181172371, -0.0035165741574019194, -0.006020940840244293, 0.0018059746362268925, 0.009660580195486546, -0.014484716579318047, -0.004408793058246374, 0.00809150468558073, 0.0067624058574438095, -0.017635172232985497, 0.0011545008746907115, -0.013241763226687908, -0.006663953885436058, -0.008380706422030926, 0.015690751373767853, -0.006700873374938965, 0.01433703862130642, 0.002433604560792446, 0.020059548318386078, -0.003439658787101507, 0.015432314947247505, 4.6822275180602446e-05, 0.020231839269399643, 0.0018690453143790364, 0.023923780769109726, 0.04737991467118263, -0.0175736416131258, 0.03832235187292099, -0.007937673479318619, 0.018496626988053322, -0.016281461343169212, -0.017610561102628708, -0.02456371672451496, -0.0030073937959969044, 0.028723303228616714, -0.013758635148406029, -0.01538308896124363, 0.004614926874637604, -0.025302104651927948, -0.015567686408758163, 0.009106788784265518, -0.004931818228214979, 0.007586939260363579, -0.010374355129897594, 0.0066701071336865425, 0.02095792070031166, -0.014644701033830643, 0.047798335552215576, 0.0026797340251505375, -0.02178245410323143, -0.01572767086327076, 0.0026458913926035166, -0.0031258435919880867, -3.1727620807942e-05, 0.017044462263584137, -0.025252878665924072, 0.004741067998111248, 0.025818975642323494, 0.003181222826242447, 0.012786423787474632, 0.008466851897537708, -0.038371577858924866, 0.009863636456429958, -0.026286622509360313, 0.030077015981078148, 0.009592894464731216, 0.003713477635756135, 0.03655022010207176, 0.0010291286744177341, -0.034999605268239975, -0.012971020303666592, -0.010331282392144203, -0.030101628974080086, -0.028698690235614777, 0.033005956560373306, -0.0209825336933136, 0.0034796546678990126, -0.002293618628755212, 0.00039649911923334, -0.002890482312068343, -0.04939817637205124, -0.010817388072609901, 0.004581084009259939, 0.0018598154420033097, -0.023677650839090347, -0.019874950870871544, -0.01959190145134926, 0.01018975768238306, -0.026581978425383568, 0.02852639928460121, -0.025228265672922134, 0.0037842397578060627, 0.00742695527151227, -0.04435252025723457, 0.00785152893513441, -0.015026201494038105, 0.005279476288706064, 0.0006880086730234325, 0.006254763808101416, -0.0018321259412914515, -0.01816435158252716, -0.0003490038216114044, 0.0024612941779196262, -0.017389044165611267, -0.000773769395891577, -0.005830190610140562, 0.020367208868265152, 0.009925168938934803, 0.010872767306864262, 0.011161969043314457, 0.024059150367975235, -0.01084200106561184, 0.004094978328794241, 0.03445811942219734, 0.0009445216855965555, 0.009119095280766487, 0.0019982631783932447, 0.0022613140754401684, 0.002295156940817833, 0.022643906995654106, -0.016564510762691498, 0.03359666466712952, -0.018435094505548477, -0.007303890772163868, -0.025449782609939575, 0.019751885905861855, -0.03603334724903107, 0.013094085268676281, 0.023493053391575813, -0.02060103230178356, 0.009635967202484608, -0.006528582889586687, -0.041546646505594254, -0.02154863066971302, -0.024859070777893066, 0.0038088527508080006, 0.022397777065634727, 0.007765383459627628, -0.042801905423402786, 0.00275203469209373, 0.008233029395341873, -0.0190011914819479, 0.01794283464550972, 0.017438270151615143, 0.022533148527145386, 0.005839420482516289, 0.03152918070554733, -0.010503573343157768, 0.011297340504825115, 0.04578007385134697, -0.008331481367349625, -0.0015752282924950123, -0.016601430252194405, 0.00804843194782734, 0.030569273978471756, -0.007894601672887802, -0.008756054565310478, -0.0005384081159718335, 0.022225486114621162, 0.0018152045086026192, -0.020317984744906425, -0.007026995066553354, 0.014607781544327736, 0.006676260381937027, 0.01507542748004198, 0.005356391426175833, 0.03224295377731323, -0.024059150367975235, -0.0010598947992548347, -0.01688447780907154, 0.011045058257877827, -0.013340214267373085, -0.00018017442198470235, -0.0085099246352911, 0.019973402842879295, 0.022040890529751778, -0.002556669292971492, -0.0029058654326945543, -0.040488291531801224, 0.038740772753953934, -0.02003493532538414, -0.007445415016263723, 2.100753044942394e-05, -0.0075131007470190525, 0.0018921198789030313, 0.027640333399176598, 0.003510420909151435, -0.02095792070031166, 0.03556570038199425, 0.00017334817675873637, 0.0097282649949193, 0.037337832152843475, 0.02120405063033104, -0.0005380235379561782, 0.004233425948768854, -0.03207066282629967, 0.03317824751138687, 0.0018736602505668998, 0.0007056992035359144, -0.01281103678047657, 0.009814410470426083, -0.016872171312570572, -0.04262961447238922, 0.018816594034433365, 0.019739579409360886, 0.01816435158252716, 0.025597460567951202, -0.0071931323036551476, 0.03950377181172371, -0.010411274619400501, 0.03052004799246788, 0.022791584953665733, -0.030790790915489197, 0.005931719206273556, -0.0206256452947855, 0.014189361594617367, -0.008423779159784317, 0.0278372373431921, -0.010485113598406315, 0.002755111316218972, -0.028575625270605087, 0.004682612139731646, 0.0020321060437709093, 0.031135372817516327, -0.07876141369342804, -0.0017890532035380602, 0.006393211893737316, 0.02771417237818241, -0.015826120972633362, -0.0007156982319429517, -0.020108774304389954, 0.012749504297971725, 0.014632394537329674, -0.0052179438062012196, 0.02073640376329422, 0.001381401438266039, -0.004091901704668999, 0.011851131916046143, 0.00025978192570619285, 0.02167169563472271, 0.0043441844172775745, 0.004070365335792303, -0.004461095668375492, 0.01992417685687542, 0.007931520231068134, -0.0016059945337474346, -0.0018459706334397197, 0.041891228407621384, -0.005950178951025009, -0.021019453182816505, 0.0032396784517914057, -0.0254005566239357, -0.009291385300457478, -0.01363557018339634, -0.0006034016842022538, -0.026877332478761673, -0.0302739180624485, 0.025449782609939575, 0.024748314172029495, -0.01071893610060215, 0.00681778509169817, 0.017684398218989372, 0.0074331085197627544, 0.010706629604101181, -0.005064113065600395, -0.0008899116655811667, -0.029387852177023888, -0.007580786012113094, -0.026286622509360313, -0.005168717820197344, -0.017782850190997124, 0.0036827113945037127, 0.028575625270605087, -0.010669710114598274, -0.015567686408758163, -0.006220920942723751, 0.013992457650601864, -0.0008122270810417831, 0.0018305876292288303, 0.03305518254637718, -0.006756252609193325, -0.043392617255449295, 0.0190011914819479, 0.009814410470426083, 0.003987296484410763, 0.00279818382114172, 0.01270027831196785, -0.000224977673497051, -0.034088924527168274, -0.016256848350167274, -0.013204843737185001, 0.004522628150880337, 0.006497816648334265, 0.00527332304045558, -0.011457324959337711, 0.04134974256157875, 0.003525804029777646, -0.012429535388946533, -0.04686304181814194, 0.03736244514584541, 0.029781660065054893, 0.0201703067868948, -0.006731639616191387, -0.004867209121584892, 0.028969433158636093, 0.0015436930116266012, 0.020810242742300034, -0.007217745296657085, 0.00041495883488096297, 0.012860262766480446, 0.00550406938418746, -0.027664946392178535, 0.03738705813884735, -0.04201429337263107, -0.028747916221618652, 0.015555379912257195, 0.018718142062425613, 0.010983525775372982, 0.015555379912257195, -0.004667229019105434, -0.0020890235900878906, 0.005454843398183584, 0.02121635712683201, 0.01112504955381155, 0.04482016712427139, -0.048635173588991165, 0.021154824644327164, 0.011118896305561066, 0.01922270841896534, -0.005390234291553497, -0.018582770600914955, 0.010392814874649048, -0.01885351352393627, 0.0007591554312966764, 0.008756054565310478, 0.00020651797240134329, 0.001964420545846224, -0.016121476888656616, -0.026606591418385506, -0.010706629604101181, -0.010497420094907284, 0.01921040192246437, 0.041078999638557434, -0.002525903284549713, 0.009592894464731216, 0.014829297550022602, 0.0027043470181524754, 0.027984915301203728, 0.026360461488366127, 0.008694522082805634, 0.04078364372253418, 0.028797142207622528, -0.028231045231223106, -0.005574831273406744, -0.02258237451314926, -0.0011037365766242146, 0.014349345117807388, -0.022877730429172516, 0.006467050407081842, 0.03327669948339462, 0.04132512956857681, 0.008719135075807571, -0.042801905423402786, -0.02003493532538414, -0.0011791137512773275, -0.009309845045208931, 0.01338944025337696, 0.012774117290973663, -0.03391663357615471, 0.005113338585942984, -0.015198491513729095, -0.03610718622803688, -0.003830389119684696, -0.022336244583129883, -0.01841048151254654, -0.03152918070554733, 0.011038905009627342, -0.004476478789001703, 0.027935689315199852, 0.019493449479341507, 0.03613179922103882, 0.003044313285499811, -0.013955538161098957, 0.01642913930118084, -0.02432989329099655, 0.013463279232382774, -0.022336244583129883, 0.025203652679920197, -0.01415244210511446, -0.005857880227267742, -0.012761810794472694, -0.03061849996447563, 0.02447757124900818, -0.02375148981809616, -0.009383684024214745, 0.01497697550803423, 0.004867209121584892, 0.0294616911560297, -0.05158872529864311, -0.01854585111141205, 0.04425407201051712, -0.018607383593916893, 0.028747916221618652, 0.014472410082817078, -0.01722905971109867, -0.009162168018519878, -0.005113338585942984, 0.006503969896584749, -0.0006783942226320505, 0.009143708273768425, 0.0021890136413276196, -0.04240810126066208, -0.07039301842451096, 0.034433506429195404, -0.02120405063033104, -0.03359666466712952, 0.015641525387763977, 0.002612048527225852, 0.01298332680016756, -0.020994840189814568, 0.03551647439599037, 0.02855101227760315, 0.034531958401203156, -0.005371774546802044, -0.008528384380042553, -0.02249622903764248, 0.003910381346940994, 0.002295156940817833, 0.007679237984120846, 0.024391425773501396, -0.031873758882284164, 0.033005956560373306, 0.04354029521346092, -0.005036423448473215, 0.009765184484422207, 0.031381502747535706, -0.0033812029287219048, -0.015112346969544888, -0.013906312175095081, 0.022311631590127945, -0.005860956851392984, -9.537515143165365e-05, 0.009968241676688194, -0.012571060098707676, -0.00879912730306387, 0.011838825419545174, 0.01724136620759964, -0.0029643212910741568, -0.025228265672922134, -0.011974195949733257, 0.023320762440562248, 0.015936879441142082, -0.01909964345395565, -0.014632394537329674, -0.004205736331641674, 0.012035728432238102, 0.000957597279921174, -0.0075254072435200214, -0.06266455352306366, 0.003421199042350054, 0.005907106213271618, -0.003627332393079996, 0.016515284776687622, -0.0013167924480512738, 0.02072409726679325, 0.018262803554534912, -0.026360461488366127, -0.03133227676153183, -0.0040888250805437565, -0.04437713325023651, 0.02586820162832737, -0.009925168938934803, -0.002410530112683773, -0.022077810019254684, 0.0025166734121739864, -0.010349742136895657, -0.02435450628399849, 0.005636363755911589, -0.027591107413172722, -0.02820643223822117, 0.01497697550803423, 0.02352997288107872, 0.0026966554578393698, 0.017032155767083168, -0.00588249322026968, 0.024760620668530464, -0.02386224828660488, -0.022213179618120193, 0.001197573496028781, 0.0037473205011337996, 0.006953156087547541, -0.002484368858858943, -0.0038057761266827583, 0.013315602205693722, 0.018484320491552353, -0.006387058645486832, -0.0035965661518275738, 0.011334259994328022, 0.01980111189186573, 0.010177451185882092, -0.001762902014888823, 0.021954745054244995, 0.027935689315199852, -0.007445415016263723, -0.02574513852596283, 0.008368399925529957, 0.006805478595197201, -0.015789203345775604, 0.037805479019880295, -0.018102819100022316, 0.022348551079630852, 0.00038476951885968447, -0.038371577858924866, -0.011241961270570755, -0.01642913930118084, -0.05488686263561249, -0.01148193795233965, 0.008768361061811447, 0.00989440269768238, -0.004138051066547632, -0.04368797317147255, 0.015579992905259132, -0.016256848350167274, -0.032784439623355865, -0.006608575116842985, 0.02354227937757969, 0.03194759786128998, -0.012478761374950409, -0.009802103973925114, 0.0068547045812010765, -0.004091901704668999, -0.01677371934056282, -0.006350139155983925, 0.008233029395341873, -0.004298035055398941, -0.01182036567479372, -0.0389130599796772, -0.0033350535668432713, -0.026852719485759735, 0.016576817259192467, -0.057495832443237305, 0.017524415627121925, 0.0011245037894695997, 0.018447401002049446, 0.01679833233356476, -0.02692655846476555, -0.004833366721868515, -0.0013906311942264438, 0.003987296484410763, -0.016712188720703125, -0.005196407437324524, -0.045952364802360535, -0.0217947605997324, -0.0186443030834198, 0.022520842030644417, -0.0005868648295290768, 0.012091107666492462, -0.03342437744140625, 0.0066393413580954075, 0.043269552290439606, -0.0007672315696254373, -0.009168321266770363, 0.0006595499580726027, -0.0031596864573657513, 0.02375148981809616, -0.006793172098696232, -0.009506748989224434, 0.008540690876543522, -0.00014844680845271796, -0.007814609445631504, -0.014287812635302544, -0.0019844183698296547, -0.01443549059331417, -0.0164045263081789, -0.0211794376373291, -0.02261929400265217, -0.019653433933854103, 0.015998411923646927, -0.00742695527151227, -0.008909884840250015, 0.0050025805830955505, 0.0010368202347308397, 0.03482731431722641, 0.001451394404284656, -0.02142556570470333, 0.007666931487619877, 0.007882295176386833, -0.02329614944756031, 0.0070700678043067455, 0.01922270841896534, -0.0026351232081651688, -0.06369829177856445, -0.02818181924521923, 0.009943628683686256, -0.026606591418385506, -0.001045280834659934, 0.01736443117260933, 0.010374355129897594, 0.0019736504182219505, 0.01443549059331417, 8.02804934210144e-05, -0.006565502379089594, 0.0028474098071455956, 0.03147995471954346, -0.025302104651927948, 0.0020751787815243006, -0.0008968340698629618, -0.04226042330265045, 0.008233029395341873, -0.012361850589513779, 0.011334259994328022, -0.023000795394182205, 0.013364827260375023, -0.005347161553800106, 0.030200080946087837, 9.249082359019667e-05, -0.000428034458309412, -0.006768559105694294, 0.008251489140093327, 0.0032027591951191425, -0.001836740761063993, -0.015801509842276573, 0.03354743868112564, 0.018607383593916893, 0.005642517004162073, -0.023566892370581627, 0.007931520231068134, 0.00023593813239131123, 0.012097260914742947, -0.0028197201900184155, 0.01118042878806591, 0.013303295709192753, -0.0033165940549224615, 0.009814410470426083, -0.002179783768951893, 0.03866693377494812, 0.040365226566791534, -0.05867725610733032, 0.022447003051638603, -0.0186443030834198, -0.004331877920776606, 0.004331877920776606, 0.00144293368794024, -0.005011810455471277, 0.0012375694932416081, 0.00661472836509347, 1.867603168648202e-05, -0.005805577617138624, -0.0104912668466568, 0.007383882533758879, 0.006571655627340078, 0.014361651614308357, 0.028329497203230858, 0.018127432093024254, -0.008909884840250015, -0.014115522615611553, 0.006300913169980049, -0.001115273917093873, 0.0030643113423138857, -0.021991664543747902, 0.016958316788077354, 0.020662564784288406, -0.02072409726679325, 0.020588725805282593, -0.017733624204993248, -0.021720921620726585, 0.007457721512764692, 0.023788409307599068, 0.007051608059555292, -0.016736799851059914, 0.002662812592461705, 0.04302342236042023, 0.00459646712988615, -0.008596070110797882, -0.004193429835140705, 0.02586820162832737, 0.0038211592473089695, -0.004082671832293272, 0.024785233661532402, 0.02120405063033104, 0.0066393413580954075, -0.00145677849650383, -0.011217348277568817, 0.0010029773693531752, 0.030347757041454315, 0.0014306273078545928, 0.007888448424637318, 0.025548234581947327, 0.019764192402362823, -0.029658595100045204, 0.000703776313457638, 0.005488686263561249, -0.022225486114621162, 0.02714807540178299, 0.002582820598036051, -0.025302104651927948, -0.026065105572342873, -0.00530101265758276, -0.00028362570446915925, -0.011131202802062035, -0.008073044940829277, 0.005528682377189398, 0.014312425628304482, -0.0015236949548125267, 0.020588725805282593, 0.014460103586316109, 0.020121080800890923, -0.0015483079478144646, -0.022865423932671547, -0.005131798330694437, 0.0061440058052539825, 0.0001749826333252713, -0.0005949409678578377, 0.01351250521838665, -0.0071931323036551476, 0.008540690876543522, 0.002559745917096734, 0.011672687716782093, -0.016502978280186653, 0.002395146992057562, -0.015678444877266884, -0.0050856489688158035, 0.013943231664597988, 0.01141425222158432, 0.012288011610507965, -0.008343787863850594, -0.009315998293459415, -0.03669789806008339, -0.027394205331802368, -0.046641524881124496, -0.00908217579126358, -0.022656213492155075, 0.007014688570052385, -0.004374950658529997, -0.013561731204390526, -0.004901051986962557, 0.023702263832092285, 0.0032119890674948692, -0.0028597163036465645, -0.0012406461173668504, -0.008977570571005344, -0.005064113065600395, 0.028009528294205666, -0.0008860659436322749, -0.002218241337686777, 0.002012107986956835, 0.03357205167412758, 0.01747518964111805, -0.025425169616937637, 0.0009229853167198598, -0.014177055098116398, 0.004288805183023214, -0.0015621526399627328, 0.004907205235213041, 0.0021859370172023773, -0.0012514143018051982, 0.0017721318872645497, 0.012515680864453316, 0.01652759127318859, 0.010349742136895657, -0.005384081043303013, 0.006916236598044634, -0.015530766919255257, -0.0042118895798921585, 0.010380508378148079, 0.01852123811841011, -0.011924970895051956, -0.019394999369978905, 0.0014960054541006684, 0.01466931402683258, -0.012035728432238102, -0.0054856096394360065, -0.008189956657588482, -0.002522826660424471, 0.007845375686883926, -0.005990174598991871, -0.019271934404969215, -0.01770901121199131, 0.0027920305728912354, -0.008343787863850594, 0.01246645487844944, 0.0016936780884861946, -0.009648273698985577, -0.037337832152843475, -0.0121157206594944, 0.014570862054824829, -0.01746288314461708, -0.03391663357615471, -0.021044066175818443, 0.02319769747555256, 0.024649862200021744, -0.026975784450769424, -0.00696546258404851, -0.001482929801568389, 0.03563953936100006, 0.007906907238066196, 0.038740772753953934, 0.004418022930622101, 0.010755855590105057, -0.011229654774069786, 0.006848551332950592, 0.0033196706790477037, -0.0066824136301875114, -0.010035927407443523, -0.015924572944641113, 0.006294759921729565, -0.010485113598406315, 0.012072647921741009, -0.0017213677056133747, 0.004528781399130821, -0.026729654520750046, 0.013894005678594112, 0.00022151648590806872, 0.009217547252774239, -0.0014406262198463082, -0.019431916996836662, 0.0014621625887230039, 0.0162076223641634, 0.0007606937433592975, 0.010343588888645172, -0.012601826339960098, 0.020071854814887047, -0.01473084557801485, 0.02072409726679325, -0.0010268212063238025, 0.01991187036037445, -0.004258038941770792, 0.015678444877266884, -0.017856689170002937, 0.007002382073551416, -0.023911474272608757, 0.029437078163027763, 0.005962485447525978, -0.006362445652484894, -0.04115283861756325, -0.014595475047826767, 0.006645494606345892, -0.029067885130643845, 0.022090116515755653, 0.0012268013088032603, 0.007211592048406601, -0.022557761520147324, 0.005187177564948797, -0.019358079880475998, -0.007765383459627628, -0.005488686263561249, -0.017167527228593826, 0.03211988881230354, -0.014078603126108646, 0.027320366352796555, 0.012921794317662716, -0.014275506138801575, -0.017868995666503906, 0.020305678248405457, -0.001999801490455866, -0.001026052050292492, 0.03878999873995781, -0.01573997735977173, -0.003790393006056547, -0.023246923461556435, -0.017438270151615143, 0.012663358822464943, -0.024034537374973297, -0.024206828325986862, 0.009119095280766487, -0.007463874761015177, 0.002202858217060566, -0.006522429641336203, -0.014657007530331612, 0.0040365224704146385, -0.030913855880498886, 0.017315205186605453, -0.0066393413580954075, 0.006417824886739254, -0.014866217039525509, 0.017733624204993248, -0.035811830312013626, -0.004193429835140705, -0.014078603126108646, 0.014053990133106709, 0.01607225090265274, 0.016392219811677933, 0.014103216119110584, -0.006122469436377287, 0.012921794317662716, 0.01770901121199131, -0.023136164993047714, 0.04043906554579735, -0.004965661093592644, -0.000583019049372524, 0.007962286472320557, -0.008768361061811447, -0.03760857507586479, 0.006725486367940903, -0.02249622903764248, 0.019419612362980843, 0.008208416402339935, 0.03167685493826866, 0.022213179618120193, 0.023246923461556435, 0.036968640983104706, 0.0028612546157091856, -0.0016459905309602618, 0.00826994888484478, -0.0003017008421011269, 0.01816435158252716, -0.027320366352796555, -0.02842794917523861, 0.01199265569448471, 0.0031750695779919624, -1.1837767488032114e-05, -0.0194565299898386, -0.014866217039525509, 0.007734617218375206, -0.02398531138896942, -0.009519055485725403, -0.0001144117268268019, -0.0020459508523344994, -0.002244392642751336, 0.006307066418230534, -0.026852719485759735, -0.018484320491552353, 0.023136164993047714, -0.008343787863850594, 0.004384180530905724, 0.02343152090907097, -9.26350403460674e-05, 0.021647082641720772, 0.0026658892165869474, -0.026852719485759735, -0.009857483208179474, 0.003233525203540921, -0.01956728845834732, 0.005860956851392984, -0.0017167527694255114, -0.022077810019254684, -0.009383684024214745, 0.009088329039514065, -0.011746526695787907, 0.008029972203075886, -0.02494521625339985, -0.006405518390238285, 0.020896388217806816, 0.007353116292506456, -0.012798730283975601, 0.018139738589525223, -0.023333068937063217, -0.009285232052206993, 0.005304089281708002, 0.02840333618223667, -0.005196407437324524, 0.0019936482422053814, 0.009802103973925114, -0.002039797604084015, 0.023739183321595192, 0.019308853894472122, -0.0056209806352853775, -0.005584061145782471, -0.010921993292868137, 0.015604604966938496, -0.007943826727569103, -0.009131401777267456, 0.02040412835776806, 0.02238547056913376, 0.00040572896250523627, 0.0063193729147315025, 0.015875346958637238, 0.01030051615089178, 0.04019293561577797, -0.01514926552772522, -0.026262009516358376, 0.0009076022543013096, -0.014300119131803513, 0.0037965462543070316, -0.014706232585012913, 0.013094085268676281, 0.004341107793152332, 0.01665065623819828, -0.0006791633786633611, 0.005824037361890078, -0.014484716579318047, 0.0040365224704146385, -0.0035442637745290995, 6.258994108065963e-05, 0.039429932832717896, 0.0033627431839704514, -0.008337634615600109, 0.022988488897681236, 0.022766971960663795, -0.003685788018628955, 0.009328304789960384, -0.010392814874649048, 0.010632790625095367, -0.045607782900333405, -0.0012452610535547137, -0.010097459889948368, -0.012214172631502151, -0.013672489672899246, 0.010571259073913097, 0.01850893348455429, 0.0046549225226044655, -0.016478365287184715, -0.002412068424746394, 0.0091929342597723, -0.010226677171885967, -0.01572767086327076, 0.004534934647381306, -0.01794283464550972, 0.03327669948339462, -0.03915918990969658, 0.022163953632116318, 0.0085099246352911, 0.017401350662112236, 0.005057959817349911, 0.009648273698985577, -0.02271774597465992, 0.04792139679193497, -0.025769749656319618, 0.0017305974615737796, 0.005587137769907713, -0.018422788009047508, -0.014866217039525509, 0.00016315688844770193, 0.021979358047246933, -0.017868995666503906, 0.002967397915199399, -0.0024412961211055517, 0.0013367903884500265, 0.027935689315199852, 0.004501091782003641, -0.002939708298072219, -0.0018567388178780675, 0.002828950062394142, 0.015752283856272697, -0.02097022719681263, -0.009260619059205055, -0.003971913363784552, -0.01608455739915371, -0.010220523923635483, -0.004371874034404755, 0.0060240174643695354, -0.023271536454558372, 0.04201429337263107, -0.005371774546802044, -0.0002130557841155678, 0.04452481120824814, -0.021376339718699455, 0.03997141867876053, -0.02341921441257, -0.008054585196077824, -0.030470822006464005, -0.01583842746913433, -0.0011983426520600915, -0.012958713807165623, -0.01182036567479372, -0.016121476888656616, -0.021757841110229492, 0.0005337931797839701, 0.0014029376907274127, 0.014903136529028416, 0.034310441464185715, -0.004236502572894096, 0.016478365287184715, 0.03485192731022835, 0.011949583888053894, -0.0211794376373291, 0.010522033087909222, -0.0025782056618481874, 0.006577808875590563, -0.011660381220281124, 0.020527193322777748, 0.02786185033619404, -0.01338944025337696, 0.009863636456429958, 0.0074331085197627544, 0.006559349130839109, -0.007796149235218763, 0.016502978280186653, -0.03460579738020897, 0.007396189030259848, 0.04533703997731209, -0.022213179618120193, -0.014681619592010975, -0.015887653455138206, -0.01699523627758026, -0.026163557544350624, 0.0037965462543070316, 0.0001268143387278542, 0.008306868374347687, 0.0068547045812010765, -0.005036423448473215, -0.0074208020232617855, -0.02690194547176361, -0.023333068937063217, -0.009974394924938679, 0.0017413656460121274, 0.02572052553296089, -0.009223700501024723, -8.013627666514367e-05, 0.01829972304403782, 0.019776498898863792, -0.013561731204390526, 0.023936087265610695, -0.005682513117790222, 0.02074871025979519, 0.001950575620867312, -0.012847956269979477, -0.006417824886739254, 0.005414847284555435, 0.008349941112101078, -0.012324931100010872, 0.0024905221071094275, -0.01193112414330244, 0.0029350933618843555, 0.01129118725657463, 0.01217109989374876, -0.011611155234277248, 0.02668042853474617, 0.02247161604464054, -0.004765680991113186, 0.0031212286558002234, -0.003790393006056547, 0.022077810019254684, 0.003408892545849085, -0.0016152242897078395, -0.01747518964111805, 0.005774811375886202, 0.016982929781079292, -0.016478365287184715, -0.010731242597103119, 0.02677888050675392, 0.01747518964111805, -0.0008383783278986812, -0.00047995237400755286, -0.03448273241519928, -0.0001595995418028906, -0.01031282264739275, 0.008017665706574917, 0.005144104827195406, 0.0037227075081318617, -0.013524811714887619, -0.03770702704787254, -0.0019936482422053814, 0.0026674275286495686, 0.014423184096813202, -0.003790393006056547, 0.015100040473043919, -0.0017090612091124058, -0.013574037700891495, -0.015235411003232002, 0.007666931487619877, -0.0042118895798921585, 0.012374157086014748, -0.01596149243414402, 0.0032242953311651945, -0.032661374658346176, 0.034064311534166336, -0.021807067096233368, 0.012355697341263294, -0.013586344197392464, -0.0061963084153831005, 0.0013037167955189943, -0.007230051793158054, -0.018090512603521347, 0.007722310721874237, 0.005722509231418371, -0.014066296629607677, 0.006583962123841047, 0.006823938339948654, -0.015592298470437527, -0.038839224725961685, -0.0017567487666383386, 0.004876438993960619, -0.0066393413580954075, 0.007353116292506456, -0.003575029782950878, 0.023271536454558372, -0.019013497978448868, 0.0007022380013950169, -0.002698193769901991, -0.00838685967028141, 0.013832473196089268, 0.009229853749275208, 0.006903930101543665, 0.027566494420170784, 0.016392219811677933, 0.00018815440125763416, 0.004184199962764978, 0.0014183208113536239, -0.013660183176398277, 0.012257245369255543, -0.013352520763874054, -0.0072977375239133835, 0.006417824886739254, 0.016835251823067665, 0.005774811375886202, -0.0023136166855692863, -0.01497697550803423, 0.010921993292868137, 0.008589916862547398, -0.0286494642496109, 0.015333862975239754, -0.0005122568691149354, -0.007623858749866486, 0.017499802634119987, 0.027984915301203728, 0.0072854310274124146, -0.0031350734643638134, -0.0030520048458129168, -0.0029966256115585566, 0.00844223890453577, -0.0012275704648345709, 0.026951171457767487, -0.002342844381928444, -0.0060517070814967155, 0.0061163161881268024, -0.01932116039097309, -0.003741167252883315, -0.00019824955961667, -0.0042518856935203075, -0.00477183423936367, 0.0013821705942973495, 0.0014106292510405183, 0.011014292016625404, 0.0035965661518275738, -0.020884081721305847, -0.004104208201169968, -0.022434696555137634, 0.0053133186884224415, -0.026951171457767487, -0.014546249061822891, 0.021265581250190735, 0.01631838083267212, 0.029855499044060707, 0.026655815541744232, 0.013869392685592175, -0.0022597757633775473, -0.0005768658593297005, 0.004101131577044725, 0.009162168018519878, 0.024612942710518837, -0.00016075327584985644, 0.008153037168085575, -0.006799325346946716, 0.009414450265467167, -0.03354743868112564, -0.025425169616937637, -0.008282255381345749, 0.00019209632591810077, 0.002956629730761051, 0.01322945673018694, 0.005251786671578884, 0.00596556207165122, -0.002456679241731763, 0.01642913930118084, 0.009709806181490421, -0.004402640275657177, 0.004288805183023214, -0.008725288324058056, -0.001185266999527812, 0.02330845594406128, -0.00966673344373703, 0.0342366024851799, 0.012884874828159809, -0.021573243662714958, 0.008762207813560963, 0.002801260445266962, -0.016958316788077354, 0.00040457522845827043, -0.00422727270051837, -0.01497697550803423, -0.009389837272465229, 0.006467050407081842, 0.01060202531516552, -0.014275506138801575, -0.002545901108533144, 0.011605001986026764, 0.017302898690104485, -0.008073044940829277, -0.002902788808569312, 0.008189956657588482, 0.01609686389565468, -0.00022805429762229323, 0.005630210507661104, 0.012091107666492462, 0.0032519849482923746, 0.007857682183384895, -0.01433703862130642, 0.029166337102651596, -0.009426756761968136, -0.010971219278872013, 0.0009891325607895851, -0.01340174674987793, 0.023369988426566124, -0.015161572024226189, -0.01850893348455429, 0.003145841648802161, -0.0065347361378371716, 0.0016136859776452184, 0.007113140542060137, 0.009248313494026661, -0.009408297017216682, -0.0026935788337141275, -0.02867407724261284, 0.020084161311388016, -0.0254005566239357, -0.0018982731271535158, -0.015223104506731033, 0.002775109140202403, -0.015309249982237816, -0.013475585728883743, 0.00908217579126358, -0.03246447071433067, 0.01338944025337696, -0.04228503629565239, 0.0001936346379807219, 0.014398571103811264, -0.006211691070348024, -0.011635768227279186, 0.006350139155983925, -0.02446526475250721, 0.0025320565328001976, 0.006842398084700108, 0.017561335116624832, -0.0013414053246378899, -0.03204604983329773, -0.011463478207588196, -0.005537911783903837, -0.0023274612613022327, -0.025917427614331245, -0.01338944025337696, 0.007974592968821526, 0.014780071564018726, 0.0028750994242727757, -0.011168122291564941, 0.0028581779915839434, 0.006528582889586687, -0.017179833725094795, 0.01784438267350197, -0.011057364754378796, -0.018028980121016502, 0.01922270841896534, 0.005144104827195406, -0.01841048151254654, -0.006910083349794149, 0.01338944025337696, -0.004390333779156208, 0.031258437782526016, 0.016675269231200218, 0.0013114083558321, -0.007562326733022928, 0.008694522082805634, 0.01854585111141205, 0.018004367128014565, 0.03039698302745819, -0.007033148314803839, -0.01393092516809702, 0.0019782651215791702, 0.0007741539739072323, 0.0018321259412914515, 0.0089160380885005, -0.009340611286461353, -0.017425963655114174, -0.008952957578003407, -0.007026995066553354, 0.019136562943458557, -0.007666931487619877, -0.010626637376844883, 0.004937971476465464, -0.0018598154420033097, -0.010466653853654861, -0.014693926088511944, -0.011580388993024826, -0.008645296096801758, 0.00039957574335858226, -0.026040492579340935, -0.007359269540756941, -0.0002209396188845858, 0.0031658397056162357, 0.006014787591993809, 0.006460897158831358, -0.003258138196542859, 0.013007939793169498, 0.012275705114006996, 0.0016506054671481252, -0.011518856510519981, 0.014090909622609615, -0.005777888000011444, 0.005427153781056404, 0.00041534341289661825, 0.0164045263081789, 0.003910381346940994, 0.007833069190382957, -0.028329497203230858, 0.007248511537909508, 0.006811631843447685, -0.029855499044060707, 0.010029774159193039, -0.012724891304969788, -0.004894898738712072, -0.0018675070023164153, -0.008879118598997593, -0.015395395457744598, 0.005900952965021133, -0.016023024916648865, -2.1512289094971493e-05, -0.0051256450824439526, 0.007162366062402725, -0.008097657933831215, 0.005820960737764835, -0.0060117109678685665, -0.00748233450576663, 0.0017582870787009597, 0.0020105696748942137, 0.0027428048197180033, -0.024957522749900818, 0.0006787788006477058, 0.0026412764564156532, -0.04093132168054581, 0.004657999146729708, 0.007131599821150303, -0.02562207356095314, -0.03042159602046013, 0.0017429039580747485, -0.016946010291576385, -0.0028258734382689, 0.02655736543238163, 0.0054579200223088264, 0.029781660065054893, 0.01609686389565468, -0.006380905397236347, 0.010626637376844883, 0.0023674573749303818, -0.009519055485725403, 0.02586820162832737, -0.007857682183384895, 0.0020228761713951826, 0.004153434187173843, 0.005879416596144438, -0.013094085268676281, 0.0008660678868182003, -0.02386224828660488, 0.02503136172890663, -0.004073441959917545, 0.005694819614291191, -0.0021474792156368494, 0.013524811714887619, 0.0006372444331645966, 0.01886582002043724, -0.021868599578738213, 0.01060202531516552, 0.022693132981657982, -0.004630309529602528, 0.0016536820912733674, 0.011592695489525795, -0.023160777986049652, -0.011340413242578506, -0.018016673624515533, -0.01850893348455429, -0.024440651759505272, -0.004368797410279512, 0.0039842198602855206, 0.021228663623332977, 0.006307066418230534, 0.001197573496028781, 0.011334259994328022, -0.00025093663134612143, -0.028600238263607025, 0.002447449369356036, -0.01084200106561184, -0.008122270926833153, -0.021019453182816505, 0.0019736504182219505, 0.014767765067517757, -0.002116712974384427, 0.01889043301343918, 0.005091802217066288, 0.013167924247682095, 0.03455657139420509, -0.007543866988271475, 0.011278880760073662, 0.005719432607293129, 0.017782850190997124, -0.0020382592920213938, 0.0006253225728869438, -0.021696308627724648, 0.029289402067661285, 0.0250436682254076, -0.014570862054824829, 0.004676458891481161, 0.0011045057326555252, 0.00413497444242239, -0.012374157086014748, -0.007346963044255972, -0.0020705638453364372, -0.004618003498762846, 0.00045303197111934423, -0.016269154846668243, -0.01537078246474266, -0.01188805140554905, 0.015604604966938496, 0.021400952711701393, 0.008965264074504375, 0.00862068310379982, 0.0085099246352911, -0.0013390978565439582, 0.016367606818675995, -0.011574235744774342, 0.026015879586338997, 0.0072054388001561165, -0.015826120972633362, -0.004442635923624039, 0.030790790915489197, 0.033719729632139206, -0.010768162086606026, -0.00459646712988615, -0.0009306768770329654, 0.018779674544930458, -0.008313021622598171, 0.00466107577085495, 0.010577412322163582, 0.014213974587619305, 0.004630309529602528, 0.015013894997537136, -0.009802103973925114, -0.01497697550803423, 0.00040957474266178906, -0.021056372672319412, 0.004061135463416576, 0.002029029419645667, 0.0012467993656173348, -0.005174871068447828, -0.002772032516077161, 0.004353414289653301, -0.008577610366046429, -0.018705835565924644, 0.05217943713068962, 0.0038580787368118763, -0.013955538161098957, 0.006743946112692356, -0.019838031381368637, 0.009617507457733154, 0.01571536436676979, 0.011451171711087227, 0.014816991053521633, 0.020822549238801003, -0.01154346950352192, 0.004808753728866577, 0.01153116300702095, 0.011260421015322208, -0.009832870215177536, 0.014287812635302544, -0.019493449479341507, -0.00661472836509347, 0.016921397298574448, 0.0190011914819479, -0.004759527742862701, 0.01100813876837492, 0.008885271847248077, -0.0010891227284446359, -0.010325129143893719, -0.03817467391490936, -0.017672091722488403, 0.012509527616202831, 0.012921794317662716, 0.007199285551905632, -0.011309647001326084, -0.006608575116842985, -0.030077015981078148, -0.009629813954234123, 0.03029853105545044, -0.01908733695745468, -0.008423779159784317, -0.022545455023646355, 0.029535530135035515, -0.008153037168085575, 0.022902343422174454, -0.010780468583106995, -0.003938070964068174, 0.005017963703721762, 0.015592298470437527, -0.015456927940249443, 0.041645098477602005, 0.017992060631513596, -0.006205538287758827, -0.0013137158239260316, -0.007377729285508394, 0.00832532811909914, -0.015235411003232002, -0.0006487817736342549, -0.02552362158894539, -0.012035728432238102, 0.03172608092427254, 0.006362445652484894, 0.010515879839658737, 0.011100436560809612, -0.0043041883036494255, -0.021696308627724648, -0.009156014770269394, -0.007248511537909508, 0.02085946872830391, 0.0027166535146534443, -0.010325129143893719, 0.009469829499721527, -0.009648273698985577, -0.03359666466712952, -0.0038642319850623608, -0.009180627763271332, -0.020539499819278717, 0.00798074621707201, -0.01321715023368597, -0.007796149235218763, -0.0006049399962648749, -0.017561335116624832, 0.009832870215177536, -0.023689957335591316, 0.005587137769907713, -0.003498114412650466, -0.001899811439216137, -0.0067747123539447784, -0.007346963044255972, 0.017093688249588013, 0.025474395602941513, 0.0045318580232560635, -0.01514926552772522, 0.0113034937530756, -0.0085099246352911, 0.024982135742902756, 0.014004764147102833, -0.010866614058613777, 0.005030270200222731, 0.024403732270002365, -0.01991187036037445, -0.020477967336773872, -0.0005399464280344546, 0.011377332732081413, 0.010386661626398563, -0.009106788784265518, -0.010060540400445461, 0.018927352502942085, 0.021462485194206238, -0.024059150367975235, -0.0035473403986543417, 0.004008832853287458, 0.002698193769901991, 0.0034273522906005383, 0.027689559385180473, 0.026188170537352562, 0.012263398617506027, -0.005904029589146376, -0.0017429039580747485, -0.0018244343809783459, 0.014410877600312233, 0.013278682716190815, 0.0035350339021533728, -0.022225486114621162, 0.010103613138198853, 0.0027212684508413076, 0.010755855590105057, -0.002041335916146636, 0.01714291423559189, -0.0007080066716298461, 0.005162564571946859, 0.011297340504825115, 0.013697102665901184, 0.001362172537483275, 0.011389639228582382, 0.004817983601242304, -0.012460301630198956, 0.0262127835303545, 0.008263795636594296, -0.017868995666503906, -0.008085351437330246, 0.0072854310274124146, -0.015543073415756226, 0.03445811942219734, 0.01415244210511446, -0.0183858685195446, -0.010318975895643234, 0.021388646215200424, -0.007783843204379082, -0.0181889645755291, 0.007254664786159992, 0.006017864216119051, 0.0036057960242033005, -0.013894005678594112, 0.005491762887686491, 0.03342437744140625, -0.015210798010230064, -0.009315998293459415, -0.011315800249576569, 0.019148869439959526, 0.007722310721874237, 0.003153533209115267, 0.038248512893915176, -0.013857086189091206, 0.03354743868112564, 0.0031196903437376022, -0.0023736106231808662, -0.011346566490828991, -0.0024366811849176884, 0.002468985738232732, 0.0006176310125738382, 0.014632394537329674, -0.01865660957992077, -0.0018951965030282736, -0.0004999503726139665, 0.004510321654379368, -0.01001746766269207, 0.010755855590105057, 0.028255658224225044, -0.006380905397236347, 0.017204446718096733, -0.01608455739915371, 0.015358475968241692, 0.0076484717428684235, 0.0017736701993271708, -0.006134775932878256, 0.011795752681791782, 0.00844223890453577, -0.022077810019254684, -0.0019321159925311804, 0.007033148314803839, -0.012749504297971725, 0.009525208733975887, 0.003473501419648528, -0.0026335848961025476, -0.005934795830398798, 0.004538011271506548, -0.007057761307805777, 0.023037713021039963, -0.005642517004162073, -0.012208019383251667, -0.010325129143893719, 0.04208813235163689, -0.0023382294457405806, -0.012140333652496338, -0.0017336740856990218, -0.006633188109844923, -0.009635967202484608, -0.011463478207588196, 0.01573997735977173, 0.026262009516358376, 0.009605200961232185, 0.01106351800262928, -0.01594918593764305, 0.015998411923646927, -0.024169908836483955, -0.030913855880498886, 0.010638943873345852, -0.011635768227279186, 0.017733624204993248, 0.004421099554747343, 0.0002636276767589152, -0.030569273978471756, -0.021708615124225616, -0.009642120450735092, 0.006811631843447685, -0.0211794376373291, 0.008965264074504375, -0.009709806181490421, -0.0050856489688158035, -0.007463874761015177, 0.011278880760073662, 0.008251489140093327, -0.044672489166259766, 0.01234954409301281, 0.0054056174121797085, 0.003728860756382346, -0.007642318494617939, 0.012269551865756512, 0.00023728414089418948, 0.017069075256586075, -0.009826716966927052, 0.021105598658323288, 0.009186781011521816, -0.01193112414330244, -0.0009660579962655902, -0.017265979200601578, 0.005999404471367598, -0.03620563820004463, -0.021942438557744026, 0.017155220732092857, 0.0012906411429867148, 0.015050814487040043, 0.005550218280404806, -0.001735212397761643, 0.01537078246474266, -0.005257939919829369, -0.01909964345395565, 0.03039698302745819, -0.003439658787101507, 0.0016552204033359885, 0.011057364754378796, 0.00716851931065321, -0.012072647921741009, -0.007488487754017115, 0.014177055098116398, -0.022422390058636665, -0.020108774304389954, 0.006220920942723751, 0.01058971881866455, 0.013561731204390526, -0.005430230405181646, 0.018607383593916893, 0.013007939793169498, -0.0076484717428684235, 0.017672091722488403, -0.01676141284406185, 0.0007003151113167405, 0.004627233371138573, -0.002599742030724883, -0.005953255575150251, -0.01841048151254654, 0.016601430252194405, -0.007611552253365517, -0.027443431317806244, -0.006737792864441872, 0.008473005145788193, 0.013044859282672405, -0.01106351800262928, -0.015198491513729095, 0.013894005678594112, 0.0061563123017549515, -0.012515680864453316, 0.0013075625756755471, -0.005639440380036831, 0.003156609833240509, -0.02574513852596283, 0.001649067155085504, 0.009475982747972012, 0.029141724109649658, -0.007716157473623753, -0.012023421935737133, 0.03401508554816246, -0.013820166699588299, 0.0016798332799226046, -0.014693926088511944, 0.008233029395341873, 0.01923501491546631, -1.466200683353236e-05, 0.005565601401031017, 0.02852639928460121, 0.00020651797240134329, -0.006448590662330389, 0.0067747123539447784, -0.011371179483830929, -0.0016521437792107463, -0.0209825336933136, 0.013044859282672405, -0.013315602205693722, 0.012884874828159809, -0.013906312175095081, -0.016970623284578323, -0.011020445264875889, 0.014189361594617367, -0.02936323918402195, -0.0005591752706095576, -0.00023843787494115531, -0.003738090628758073, -0.008226876147091389, -0.02424374781548977, 0.023677650839090347, 0.023788409307599068, 0.0003711170284077525, 0.004350337665528059, 0.02063795179128647, -0.0010283595183864236, 0.006676260381937027, -0.006171695422381163, 0.010614331811666489, -0.03531957045197487, 0.004073441959917545, -0.006430131383240223, 0.007353116292506456, -0.01199265569448471, 0.015936879441142082, -0.013955538161098957, -0.02867407724261284, 0.01060202531516552, -0.004436482675373554, -0.014127829112112522, -0.018238190561532974, 0.019013497978448868, 0.014103216119110584, -0.008060738444328308, 0.04181738942861557, 0.01123580802232027, 0.005017963703721762, 0.01959190145134926, -0.01363557018339634, -0.01967804692685604, -0.0037934696301817894, -0.0030750795267522335, -0.0016552204033359885, 0.012263398617506027, 0.005064113065600395, -0.026508139446377754, -0.02631123550236225, 0.009660580195486546, -0.003421199042350054, -0.024723701179027557, -0.02247161604464054, 0.00815919041633606, -0.004156510811299086, 0.02247161604464054, 0.002753573004156351, -0.0025012902915477753, -0.008245335891842842, 0.0008145345491357148, 0.005033346824347973, -0.009131401777267456, -0.0035688765347003937, -0.011198888532817364, 0.009648273698985577, -0.0018321259412914515, 0.004002679605036974, 0.022102423012256622, 0.0007741539739072323, -0.00926677230745554, -0.0015629217959940434, 0.010921993292868137, -0.01608455739915371, -0.013967844657599926, -0.01666296273469925, 0.023825328797101974, 0.006503969896584749, 0.019862644374370575, -0.013463279232382774, -0.008300715126097202, -0.008540690876543522, -0.01154346950352192, 0.025252878665924072, -0.02724652737379074, -0.007691544480621815, 0.028797142207622528, 0.00029804735095240176, 0.01146963145583868, -0.004122667945921421, 0.0030258535407483578, -0.01897657848894596, 0.014361651614308357, 0.030790790915489197, -0.00024497570120729506, 0.010928146541118622, 0.024317586794495583, 0.01619531586766243, 0.0009922091849148273, -0.01666296273469925, 0.018607383593916893, -3.5212851798860356e-05, -0.01234954409301281, -0.01036820188164711, -0.022520842030644417, -0.009845176711678505, 0.002170553896576166, 0.009506748989224434, -0.021400952711701393, 0.005919412709772587, 0.0010183604899793863, -0.025203652679920197, -0.004845673218369484, 0.002472062362357974, 0.014226281084120274, 0.0017459805821999907, 0.01112504955381155, 0.004888745490461588, 0.006565502379089594, 0.027517270296812057, 0.0020505657885223627, 0.0013890928821638227, 0.0018044363241642714, 0.016244541853666306, -0.005879416596144438, -0.017745930701494217, 0.010485113598406315, -0.020921001210808754, 0.007882295176386833, 0.028969433158636093, -0.01432473212480545, -0.021031759679317474, -0.014927749522030354, -0.0045718541368842125, -0.006565502379089594, -0.024403732270002365, -0.003310440806671977, -0.015469234436750412, 0.012749504297971725, 0.010251290164887905, 0.0015183108625933528, 0.020010322332382202, -0.008639142848551273, -0.0030996925197541714, 0.018225884065032005, 0.05011194944381714, 0.030495434999465942, 0.010675863362848759, -0.031750693917274475, -0.01839817501604557, 0.022976182401180267, 0.008780667558312416, -0.0033042875584214926, 0.010528186336159706, 0.0009429833735339344, 0.0019474991131573915, -0.004405716434121132, 0.008257642388343811, 0.02085946872830391, 0.0022397777065634727, 0.0018444323213770986, -0.010762008838355541, -0.0013652491616085172, -0.023948391899466515, -0.028723303228616714, 0.024046843871474266, 0.00046803048462606966, 0.012509527616202831, 0.029978564009070396, -0.004261115565896034, -0.018139738589525223, 0.014595475047826767, -0.023837635293602943, 0.011272727511823177, 0.001563690952025354, 0.005233326926827431, 0.0005691742990165949, 0.001635222346521914, -0.005891723092645407, 0.003498114412650466, -0.01724136620759964, -2.3723607228021137e-05, -0.006799325346946716, 0.00436572078615427, 0.002538209781050682, 0.017733624204993248, 0.016613736748695374, -0.01084200106561184, -0.008774514310061932, 0.0018444323213770986, 0.0036611752584576607, 0.029633982107043266, -0.0038642319850623608, 0.018004367128014565, -0.0017552104545757174, 0.0005630210507661104, 0.027344979345798492, -0.0077407704666256905, 0.0068977768532931805, 0.01959190145134926, 0.007777689956128597, 0.021634776145219803, -0.010079000145196915, -0.009642120450735092, 0.019542675465345383, -0.0036457921378314495, 0.012675665318965912, 0.00020690255041699857, 0.01889043301343918, -0.014644701033830643, 0.0010629714233800769, -0.005239480175077915, 0.014090909622609615, -0.0491766594350338, -0.004122667945921421, -0.03214450180530548, 0.034408893436193466, -0.01432473212480545, -0.0003840003628283739, -0.001034512766636908, 0.024256054311990738, -0.010620484128594398, 0.004110361449420452, 0.009875942952930927, -0.009100635536015034, 0.012934100814163685, 0.0061440058052539825, -0.016859864816069603, 0.013992457650601864, 0.016146089881658554, 0.008331481367349625, 0.02293926291167736, 0.01106351800262928, -0.0022351627703756094, -0.013992457650601864, -0.022176260128617287, -0.008983723819255829, 0.004101131577044725, 0.0015875347889959812, 0.004347261041402817, -0.012724891304969788, -0.01897657848894596, 0.026532752439379692, -0.025006748735904694, -0.005845573730766773, -0.030716951936483383, 0.0066824136301875114, -0.0013560192892327905, -0.01391861867159605, 0.019616514444351196, -0.01897657848894596, -0.014275506138801575, -0.0011768062831833959, -0.024514490738511086, -0.0065347361378371716, 0.0016398372827097774, -0.0037473205011337996, 0.021474791690707207, 0.0032181423157453537, -0.01630607433617115, 0.017155220732092857, 0.009685193188488483, 0.011574235744774342, 0.0016429139068350196, -0.02537594363093376, -0.015690751373767853, 0.005897876340895891, 0.019776498898863792, -0.016982929781079292, 0.025203652679920197, -0.016355300322175026, 0.01065125036984682, -0.016736799851059914, 0.010460500605404377, -0.0026797340251505375, 0.01100813876837492, 0.012269551865756512, 0.008097657933831215, 0.004270345438271761, 0.003999602980911732, 0.02599126659333706, 0.016121476888656616, 0.006033247336745262, -0.05070266127586365, 0.0038057761266827583, -0.0072854310274124146, -0.019124256446957588, -0.018250497058033943, 0.00616861879825592, 0.009955935180187225, -0.010091306641697884, 0.002181322081014514, 0.011389639228582382, 0.003141226712614298, -0.013783247210085392, -0.003615025896579027, -0.013020246289670467, -0.028255658224225044, -0.01322945673018694, 0.004885668866336346, 0.0025674374774098396, -0.0075131007470190525, 0.010195910930633545, 0.007088527549058199, 0.00494720134884119, -0.009365224279463291, -0.0058486503548920155, 0.005851726979017258, 0.012041881680488586, -0.018791981041431427, 0.001306024263612926, 0.027664946392178535, -0.008516077883541584, 0.01153116300702095, -0.015506153926253319, -0.03433505445718765, 0.007556173484772444, 0.00567943649366498, -0.00702084181830287, -0.036993253976106644, -0.013438666239380836, -0.012724891304969788, 0.01088507380336523, 0.009162168018519878, -0.014927749522030354, -0.007445415016263723, 0.024083763360977173, -0.013500198721885681, 0.01583842746913433, -0.0007795380079187453, 0.0019367309287190437, -0.012312624603509903, 0.011100436560809612, -0.00018901970179285854, -0.024292973801493645, -0.029633982107043266, 0.025092894211411476, -0.013340214267373085, -0.00989440269768238, -0.019665740430355072, -0.01733981817960739, 0.0038580787368118763, -0.000251705787377432, 0.017832076177001, -4.290439756005071e-05, 0.018668916076421738, 0.019025804474949837, 0.021007146686315536, -0.006750099360942841, -0.0027597262524068356, 0.00035496478085406125, -0.008073044940829277, 0.009685193188488483, -0.00468876538798213, -0.004507245030254126, 0.008097657933831215, -0.0013660183176398277, -0.014066296629607677, 0.008313021622598171, 0.009032949805259705, -0.004525704775005579, 0.0007741539739072323, -0.010158992372453213, -0.009685193188488483, -0.003044313285499811, 0.031381502747535706, 0.018730448558926582, 0.013020246289670467, -0.0023013101890683174, 0.00405190559104085, -0.012263398617506027, -0.014090909622609615, 0.016872171312570572, -0.031652241945266724, 0.0007076220936141908, -0.011506550945341587, 0.030692338943481445, 0.00045610859524458647, 0.0007814608979970217, 0.01223878562450409, 0.0186443030834198, -0.012651052325963974, -0.01690909080207348, -0.026163557544350624, 0.005808654241263866, -0.016133783385157585, 0.003599642775952816, 0.0068977768532931805, -0.0018321259412914515, -0.012971020303666592, -0.021622469648718834, 0.004784140735864639, -0.017032155767083168, 0.024489877745509148, -0.011001985520124435, 0.010995832271873951, -0.0009322151890955865, 0.027566494420170784, 0.0222500991076231, -0.004156510811299086, 0.016478365287184715, 0.002801260445266962, 0.003039698349311948, 0.015899959951639175, -0.013672489672899246, -0.018582770600914955, -0.02447757124900818, 0.005974791944026947, 0.004510321654379368, 0.007808455731719732, -0.028452562168240547, -0.01804128661751747, 0.014103216119110584, 0.00809150468558073, -0.015050814487040043, -0.001433703931979835, -0.004916435107588768, 0.0025043669156730175, -0.0017259825253859162, -0.033719729632139206, -0.003004317171871662, -0.0016059945337474346, 0.006916236598044634, -0.023136164993047714, 0.0038334657438099384, 0.02398531138896942, 0.006737792864441872, -0.006996228825300932, 0.009494442492723465, -0.010645097121596336, -0.007057761307805777, -0.012072647921741009, 0.0018875050591304898, 0.012835649773478508, -0.0003236217307858169, 0.023025408387184143, 0.01644144579768181, -0.00926677230745554, 0.0054456135258078575, 0.014386264607310295, -0.0029227868653833866, -0.01338944025337696, 0.029314015060663223, -0.00433803116902709, -0.016256848350167274, 0.0245883297175169, 0.012823343276977539, 0.014657007530331612, -0.005390234291553497, 0.014878523536026478, -0.005857880227267742, -0.020588725805282593, -0.0012983327032998204, -0.01024513691663742, -0.0021520941518247128, 0.015813814476132393, 0.01714291423559189, -0.02039182186126709, -0.03214450180530548, 0.01047896035015583, -0.011205041781067848, 0.01571536436676979, 0.0036088726483285427, -0.025892814621329308, 0.021807067096233368, -0.002456679241731763, 0.013721715658903122, 0.01322945673018694, 0.014373958110809326, -0.01618300937116146, 0.013894005678594112, 0.002890482312068343, 0.005251786671578884, 0.00026035879272967577, 0.009765184484422207, -0.021856293082237244, -0.02259468100965023, -0.013500198721885681, -0.016453752294182777, 0.0005361006478779018, -0.001248337677679956, -0.010977372527122498, 0.010558952577412128, 0.024551410228013992, -0.013955538161098957, -0.009168321266770363, -0.04115283861756325, -0.014300119131803513, -0.003787316381931305, 0.02400992438197136, -0.017512109130620956, 0.0175736416131258, -0.010645097121596336, -0.002244392642751336, 0.01993648335337639, -0.004002679605036974, 0.0012575675500556827, 0.016133783385157585, -0.008073044940829277, -0.024502184242010117, 0.012152640148997307, 0.00849761813879013, -0.0019367309287190437, 0.0005945563898421824, -0.014521636068820953, -0.007186979055404663, 0.007310044020414352, -0.04543549194931984, -0.025548234581947327, 0.0009229853167198598, -0.002556669292971492, -0.013278682716190815, 0.0007753077079541981, -0.002495137043297291, 0.02631123550236225, -0.011795752681791782, -0.0009975932771340013, 0.0005903260316699743, 0.021597856655716896, 0.003230448579415679, 0.007162366062402725, -0.0027951071970164776, -0.0005826344713568687, 0.01258951984345913, -0.011377332732081413, 0.013057165779173374, 0.017069075256586075, -0.0030366217251867056, 0.024022230878472328, -0.003894998226314783, 0.004454942420125008, 0.0011791137512773275, -0.00944521650671959, 0.0007841529441066086, -0.007869988679885864, 0.013906312175095081, 0.01206034142524004, 0.003688864642754197, 0.0006630111602135003, 0.008189956657588482, -0.007913060486316681, -0.000999900745227933, -0.018336642533540726, 0.021499404683709145, 0.017512109130620956, -0.022434696555137634, -0.0041288211941719055, -0.018447401002049446, 0.001699831336736679, 0.018225884065032005, 0.007359269540756941, -0.023726876825094223, -0.0035411871504038572, 0.001451394404284656, -0.03354743868112564, 0.005664053373038769, -0.01607225090265274, 0.007014688570052385, -0.01444779708981514, 0.0023243846371769905, -0.004676458891481161, 0.02153632417321205, 0.004538011271506548, -0.008663755841553211, -0.0008329942356795073, 0.01200496219098568, -0.010688169859349728, 0.0034950377885252237, -0.018102819100022316, 0.018816594034433365, 0.03248908370733261, -0.02132711373269558, -0.023825328797101974, 0.030544660985469818, -0.020207226276397705, 0.009580587968230247, -0.001329098828136921, 0.0038765384815633297, 0.018693529069423676, 0.021474791690707207, -0.00661472836509347, 0.009919015690684319, 0.006137852557003498, 0.01281103678047657, -0.019616514444351196, 0.010011314414441586, 0.011014292016625404, -0.018496626988053322, 0.0009076022543013096, -0.012558753602206707, -0.0222500991076231, 0.013992457650601864, 0.02202858403325081, 0.02365303784608841, 0.0100851533934474, -0.02432989329099655, -0.012558753602206707, 0.004054982215166092, -0.027984915301203728, 0.014706232585012913, -0.017672091722488403, -0.0049102818593382835, 0.0008591455407440662, 0.007716157473623753, -0.0025889738462865353, 0.00034496578155085444, 0.01007284689694643, -0.01391861867159605, 0.012158793397247791, -0.01934577338397503, 0.0048825922422111034, 0.010989679023623466, 0.02457602322101593, -0.006067090202122927, -0.01338944025337696, -0.022988488897681236, 0.0012398769613355398, 0.015986105427145958, 0.011137356050312519, 0.010540492832660675, -0.006190155167132616, -0.02690194547176361, -0.006153235677629709, 0.03152918070554733, 0.0029950872994959354, -0.011752679944038391, 0.00431034155189991, -0.00849761813879013, 0.0009037564741447568, 0.01970265991985798, -0.000810688768979162, 0.003153533209115267, 0.004968737717717886, -0.0012791038025170565, -0.02121635712683201, 0.0051779476925730705, -0.014484716579318047, -0.017044462263584137, 0.02549900859594345, -0.006885470822453499, -0.01054664608091116, -0.01897657848894596, 0.006131699308753014, -0.007580786012113094, 0.014140135608613491, 0.01806589961051941, -0.02599126659333706, -0.009512902237474918, 0.017425963655114174, 0.011168122291564941, -0.024908296763896942, -0.02167169563472271, 0.005350238177925348, 0.007654624991118908, 0.004885668866336346, 0.032095275819301605, 0.03140611574053764, 0.003196605946868658, 0.018791981041431427, 0.009309845045208931, 0.002142864279448986, 0.0029858576599508524, -0.0038088527508080006, 0.01688447780907154, -0.017868995666503906, -0.008996030315756798, -0.01769670471549034, -0.007586939260363579, -0.0029597063548862934, -0.014878523536026478, 0.01898888498544693, -0.015518460422754288, 0.016170702874660492, -0.012675665318965912, 0.01700754277408123, 0.015444621443748474, 0.00623322743922472, -0.023702263832092285, 0.018238190561532974, -0.0007526176050305367, -0.01229416485875845, -0.019382692873477936, -0.006842398084700108, 0.004159587435424328, -0.011260421015322208, -0.033719729632139206, -0.014004764147102833, 0.019271934404969215, -0.021585550159215927, 5.35043072886765e-05, -0.006223997566848993, 0.0028720228001475334, 0.013500198721885681, -0.018373562023043633, -0.009642120450735092, -0.006559349130839109, 0.027763398364186287, -0.012749504297971725, -0.014373958110809326, -0.0014052451588213444, 0.00768539123237133, -0.013167924247682095, 0.009106788784265518, -0.02387455478310585, 0.017610561102628708, -0.0002895866346079856, -0.0066701071336865425, -0.004701071884483099, 0.008473005145788193, 0.009272925555706024, 0.009439063258469105, 0.02388686127960682, -0.0027443431317806244, -0.007500794250518084, 0.008374553173780441, 0.011715760454535484, -0.004322648048400879, 0.005747122224420309, -0.014780071564018726, 0.007599245756864548, 0.01084200106561184, -0.016736799851059914, -0.0050148870795965195, 0.021733228117227554, -0.0091929342597723, 0.00803612545132637, -0.008380706422030926, -0.0025320565328001976, 0.015161572024226189, 0.012558753602206707, -0.012091107666492462, -0.01158654224127531, -0.016515284776687622, -0.010848154313862324, 0.011808059178292751, 0.03448273241519928, -0.010029774159193039, -0.004371874034404755, 0.0066393413580954075, 0.009900555945932865, 0.0033196706790477037, 0.01065125036984682, -0.004131897818297148, -0.0024382194969803095, -0.0335228256881237, -0.02188090607523918, 0.0032519849482923746, 0.005790194496512413, 0.012251092121005058, -0.014915443025529385, 0.02808336727321148, -0.004014986101537943, -0.01508773397654295, 0.03394124656915665, -0.003839618992060423, 0.01770901121199131, 0.023210003972053528, -0.0007945365505293012, 0.010343588888645172, -0.009125248529016972, -0.015038507990539074, -0.00820226315408945, 0.005288706161081791, -0.0027228067629039288, 0.015986105427145958, 0.009352917782962322, -0.019382692873477936, -0.0054856096394360065, -0.02028106525540352, -0.007993052713572979, -0.015899959951639175, -0.004602620378136635, 0.014226281084120274, 0.0068977768532931805, 0.020416434854269028, 0.03177530691027641, 0.00742695527151227, 0.01118042878806591, 0.012017268687486649, 0.0018675070023164153, 0.025105200707912445, 0.008023818954825401, -0.004061135463416576, -0.011555776000022888, -0.004291881807148457, -0.005984021816402674, 0.009869789704680443, -0.004405716434121132, 0.018348949030041695, 0.009586741216480732, 0.017561335116624832, -0.023369988426566124, 0.002447449369356036, 0.00043149563134647906, -0.016699882224202156, -0.017376737669110298, -0.02410837635397911], "f3b48282-6282-4419-9b67-287f8516f532": [-0.026876211166381836, 0.0009892542148008943, 0.00457351841032505, 0.029309628531336784, -0.02353026531636715, -0.013764009810984135, 0.026094041764736176, -0.0029005450196564198, 0.0025909363757818937, -0.00211701774969697, 0.0037044414784759283, -0.023226087912917137, 0.005708750803023577, -0.03261212259531021, -0.023204360157251358, 0.003997754771262407, -0.01640383154153824, 0.016425559297204018, 0.005005341488867998, -0.011471819132566452, 0.05292680114507675, -0.005926019977778196, -0.04184606671333313, -0.013829190284013748, -0.006501783616840839, -0.010456085205078125, -0.007387156132608652, 0.009538121521472931, -0.007702196482568979, 0.009472941048443317, 0.011613043956458569, 0.014817765913903713, 0.010298564098775387, 0.02911408618092537, 0.01569770649075508, -0.010265974327921867, -0.0016675418009981513, 0.0039488691836595535, 0.03595806658267975, -0.004185149911791086, -0.036436062306165695, 0.015045898966491222, -0.007968351244926453, 0.01193894725292921, -0.0066375769674777985, -0.0223135557025671, 0.019413011148571968, -0.0018739476799964905, 0.007962919771671295, 0.04078144580125809, 0.0049048541113734245, -0.019380420446395874, -0.01875033974647522, -0.014165958389639854, 0.004790788050740957, 0.01835925504565239, 0.02227010205388069, 0.0658760517835617, -0.004608824849128723, -0.050058845430612564, -0.013057884760200977, 0.007550107780843973, -0.009576143696904182, -0.011113324202597141, -0.037218231707811356, 1.135147158493055e-05, 0.01831580139696598, 0.003337799571454525, -0.05062374472618103, -0.023638898506760597, 0.03265557438135147, 0.045192014425992966, 0.0107331033796072, 0.04178088530898094, 0.00859300047159195, 0.034502364695072174, 0.010613605380058289, -0.011754268780350685, 0.015589071437716484, -0.00187123182695359, -0.027701834216713905, 0.028983723372220993, 0.09003639221191406, 0.0007556897471658885, 0.037283409386873245, 0.05383932963013649, 0.01697959564626217, -0.036501239985227585, 0.02307399921119213, -0.028961997479200363, -0.0036501241847872734, 0.03787003830075264, 0.0037913492415100336, -0.018696023151278496, -0.021107712760567665, 0.020206043496727943, 0.014513588510453701, 0.0226829145103693, 0.04514855891466141, -0.03152577579021454, 0.021889882162213326, 0.04627836123108864, -0.014079050160944462, 0.028114646673202515, -0.03030906617641449, 0.009489236399531364, 0.0018698738422244787, -0.004546360112726688, 0.004296500235795975, 0.018446162343025208, 0.008663613349199295, -0.014307183213531971, -0.004983614198863506, 0.024051710963249207, -0.023030545562505722, -0.022791549563407898, -0.01592583954334259, 0.020629718899726868, -0.0085006607696414, -0.05140591412782669, 0.02272636815905571, 0.0007916750037111342, 0.028179828077554703, -0.044844381511211395, 0.020238634198904037, -0.004500190261751413, -0.00022999991779215634, -0.012579891830682755, 0.01990186795592308, 0.0029168403707444668, -0.007995509542524815, -0.016056200489401817, 0.00589342974126339, 0.003962448798120022, -0.04423602670431137, 0.006968912668526173, -0.016903551295399666, 0.03954301029443741, -0.04653908312320709, 0.04060763120651245, -0.03561043739318848, -0.023226087912917137, 0.01714254729449749, -0.008478933945298195, 0.02437761425971985, -0.009261103346943855, -0.008332277648150921, 0.021379297599196434, 0.01714254729449749, 0.02219405770301819, -0.03382882848381996, -0.03239485248923302, -0.00756640313193202, 0.024029983207583427, 0.013872643932700157, -0.021227210760116577, -0.0047120279632508755, 0.027680108323693275, -0.014980717562139034, 0.032503485679626465, -0.013155655935406685, -0.05105828493833542, -0.005480617750436068, 0.007560971193015575, 0.04134634509682655, 0.018250619992613792, 0.004133548121899366, 0.0007618004456162453, 0.0011596748372539878, 0.005439879838377237, 0.059618692845106125, -0.02173779346048832, -0.0007156307110562921, -0.02711520716547966, 0.019521646201610565, -0.02952689677476883, 0.03700096160173416, 0.018000761047005653, 0.003302493365481496, -0.006344263441860676, 0.022237511351704597, 0.01776176504790783, -0.02227010205388069, 0.00097295903833583, -0.0186634324491024, 0.02072749100625515, 0.029592078179121017, 0.0373268648982048, -0.01679491624236107, -0.02435588836669922, -0.012970976531505585, -0.01535007543861866, -0.02052108384668827, -0.004562654998153448, -0.012232260778546333, -0.010271405801177025, 0.018782930448651314, 0.0031150984577834606, 0.006659303791821003, 0.015817204490303993, 0.011602180078625679, -0.0756097137928009, -0.03361155837774277, 0.036892324686050415, -0.015447846613824368, 0.0035605004522949457, -0.03456754609942436, 0.018739476799964905, 0.022639460861682892, -0.04421430081129074, 0.03713132068514824, -0.05166663974523544, 0.013514149934053421, -0.015328348614275455, -0.017109956592321396, -0.004635983612388372, -0.022443918511271477, -0.008174757473170757, 0.0016322355950251222, -0.02943998947739601, -0.03495863080024719, -0.022835003212094307, -0.013503286987543106, 0.007430609781295061, -0.0487552285194397, -0.011363184079527855, 0.0028788181953132153, 0.02665894292294979, -0.045626550912857056, 0.01638210378587246, 0.03895638510584831, 0.026115769520401955, 0.0029412831645458937, -0.04858141392469406, 0.013166518881917, 0.06309500336647034, -0.037696223706007004, 0.038022127002477646, 0.008636454120278358, -0.03389400988817215, 0.00973366480320692, 0.028418824076652527, -0.0014719994505867362, 0.009749959222972393, 0.029135812073946, -0.018326664343476295, 0.0023397186305373907, 0.0042856368236243725, 0.009304557926952839, -0.00046509207459166646, 0.008326845243573189, 0.017272908240556717, 0.030048342421650887, -0.04588727653026581, 0.004111821297556162, -0.0251163300126791, -0.008712498471140862, -0.03458927199244499, 0.02748456597328186, -0.020282087847590446, 0.021824700757861137, -0.021846426650881767, 0.05861925706267357, 0.029396535828709602, 0.03932574391365051, -0.028418824076652527, 0.012677663005888462, -0.02054281160235405, -0.031634408980607986, 0.026441672816872597, -0.018967609852552414, 0.01971718855202198, 0.014806902036070824, 0.023247813805937767, -0.02429070696234703, 0.012319169007241726, -0.013698829337954521, 0.00019011062977369875, -0.020282087847590446, 0.003902699565514922, 0.007539244368672371, -0.00925024040043354, 0.006599554792046547, 0.019130561500787735, -0.0042421831749379635, -0.0071970452554523945, 0.0013932393630966544, -0.0075935618951916695, -0.014459271915256977, -0.008245369419455528, 0.0060781086795032024, 0.0184787530452013, 0.0025855046696960926, -0.004994478076696396, 0.014459271915256977, 0.00272537162527442, -0.016240879893302917, -0.017294635996222496, -0.03674023598432541, 0.011113324202597141, 0.009266535751521587, -0.012091035954654217, 0.001425829716026783, -0.011080733500421047, 0.053578607738018036, -0.010619036853313446, 0.05375242233276367, 0.03978200629353523, -0.01217794418334961, 0.015426119789481163, 0.022074559703469276, 0.0024347740691155195, -0.012808024883270264, -0.012612482532858849, 0.029222719371318817, 0.02178124710917473, -0.011895493604242802, -0.025051148608326912, -0.017055639997124672, -0.01776176504790783, -0.021661749109625816, 0.029157539829611778, -0.01891329139471054, 0.035653889179229736, 0.01377487275749445, -0.020119136199355125, 0.04273686930537224, -0.01654505729675293, 0.013546740636229515, -0.027028299868106842, -0.04267168790102005, 0.003563216421753168, -0.02865782007575035, -0.014220274984836578, 0.01675146259367466, -0.03311184048652649, -0.018207166343927383, -0.048451051115989685, -0.005018920637667179, 0.006789665203541517, -0.014198548160493374, -0.02594195306301117, -0.021444479003548622, -0.0033269361592829227, 0.046408720314502716, 0.01177599560469389, -0.024464521557092667, -0.025768138468265533, -0.004052072297781706, 0.02313918061554432, 0.0005784794921055436, -0.018989335745573044, 0.000678287586197257, 0.035262804478406906, 0.0401296392083168, 0.011308866553008556, 0.008223642595112324, -0.01790298894047737, 0.018446162343025208, -0.0226829145103693, 0.04434466361999512, -0.01536093931645155, 0.011254549026489258, 0.008299686945974827, -0.008788542822003365, 0.0323079451918602, 0.01373141910880804, -0.0024239106569439173, 0.01156959030777216, 0.029374808073043823, -0.012645073235034943, -0.02196592465043068, -0.022574279457330704, -0.021477069705724716, -0.016349514946341515, -0.029135812073946, 0.034067824482917786, 0.0029304195195436478, -0.01474172156304121, 0.018044214695692062, -0.02033640630543232, -0.00516557740047574, -0.007647878956049681, -0.008218211121857166, 0.021411888301372528, 0.014415817335247993, 0.05940142646431923, 0.003492603776976466, 0.01064076367765665, 0.016555920243263245, -0.040890082716941833, -0.008207347244024277, -0.002316633937880397, -0.04097699001431465, -0.024507977068424225, 0.0066375769674777985, 0.016447285190224648, -0.03502380847930908, 0.004940160550177097, -0.02316090650856495, -0.007778240833431482, 0.022596007212996483, -0.010016114450991154, -0.014600496739149094, 0.02387789450585842, -0.0799551010131836, 0.008609295822679996, 0.01712081953883171, 0.02874472737312317, -0.014633086510002613, 0.02307399921119213, -0.013459832407534122, 0.021640021353960037, 0.003316072514280677, 0.018391845747828484, -0.022596007212996483, 0.023399902507662773, 0.006827687378972769, -0.011754268780350685, -0.03278593719005585, 0.07009107619524002, 0.036066703498363495, -0.02676757611334324, -0.001153564197011292, -0.019011063501238823, 0.000210140147828497, -0.0029304195195436478, 0.02907063066959381, -0.027723561972379684, 0.010716808028519154, -0.0023736669681966305, 0.028549185022711754, 0.02472524531185627, 0.003970596473664045, 0.012970976531505585, -0.020607993006706238, -0.001172575168311596, -0.025377053767442703, 0.023725807666778564, 0.001571128610521555, -0.0014448408037424088, 0.006518078967928886, 0.018804658204317093, 0.04347558692097664, 0.03617533668875694, -0.0010299922432750463, -0.00959243904799223, -0.024116892367601395, -0.008913472294807434, 0.04260651022195816, 0.03026561252772808, 0.0494939461350441, -0.015860658138990402, 0.013286016881465912, -0.0343720018863678, 0.014589632861316204, 0.02385616861283779, -0.005670728627592325, 0.022530825808644295, -0.029200993478298187, -0.06457243114709854, 0.00047833193093538284, 0.0031667000148445368, 0.026159223169088364, -0.004521917086094618, -0.011026416905224323, 0.003278050571680069, 0.015436983667314053, 0.024095164611935616, 0.025246690958738327, 0.010912350378930569, -0.010749398730695248, -0.014274592511355877, 0.04104216769337654, 0.009011244401335716, -0.022943638265132904, -0.014643950387835503, 0.0267023965716362, -0.020825261250138283, 0.010119317099452019, -0.005507776513695717, -0.02996143512427807, -0.01590411178767681, 0.008663613349199295, -0.002021962311118841, -0.013427242636680603, -0.03235139697790146, -0.04391012340784073, 0.02833191677927971, -0.035284534096717834, 0.013481559231877327, -0.008142166770994663, 0.03272075578570366, 0.008440911769866943, -0.00464141508564353, 0.010917781852185726, 0.01417682133615017, 0.0072296359576284885, -0.006322536617517471, -0.020053956657648087, 0.03632742539048195, 0.003006463870406151, -0.02789737656712532, 0.004043924622237682, 0.007224204018712044, -0.001491010538302362, -0.040824901312589645, 0.011895493604242802, -0.008723362348973751, 0.019543372094631195, -0.046365268528461456, 0.010874328203499317, 0.004997193813323975, -0.00837573129683733, -0.014937263913452625, -0.0033513789530843496, -0.03745722770690918, 0.0004752765817102045, 0.017957307398319244, -0.0005441916873678565, 0.009722800925374031, -0.0093860337510705, -0.014296319335699081, 0.02833191677927971, -0.005119407549500465, -0.015154533088207245, -0.05470840632915497, -0.04975466802716255, 0.002085785148665309, 0.0023940359242260456, -0.011928084306418896, -0.00558382086455822, 0.0007699480629526079, 0.014285456389188766, 0.017131684347987175, 0.006490920204669237, -0.00739258760586381, 0.00516557740047574, 0.009119878523051739, 0.03739204630255699, 0.00534210866317153, 0.009451214224100113, 0.04156361520290375, -0.029722439125180244, 0.012308305129408836, 0.030461154878139496, 0.01815284974873066, 0.026854485273361206, -0.018370117992162704, 0.007240499369800091, -0.02752801962196827, -0.004945592489093542, -0.04175915941596031, 0.004049356561154127, 0.03789176419377327, -0.046408720314502716, 0.010119317099452019, 0.002402183599770069, -0.009885752573609352, -0.01599101908504963, -0.027354203164577484, 0.028158100321888924, -0.018044214695692062, -0.01412250380963087, 0.0024103312753140926, -0.02274809591472149, 0.00275796209461987, 0.012210533954203129, 0.008527819998562336, 0.021911608055233955, -0.0038701093290001154, 0.0075772665441036224, 0.023334722965955734, 0.004953739698976278, 0.02515978366136551, 0.010830874554812908, -0.020607993006706238, -0.00697434414178133, -0.017403271049261093, 0.0026601909194141626, 0.0034165596589446068, 0.0015684127574786544, 1.2242615412105806e-05, -0.001239113975316286, 0.002176766749471426, 0.022530825808644295, -0.02744111232459545, 0.0043155113235116005, 0.023747533559799194, -0.01580634154379368, 0.019597690552473068, 0.037239957600831985, 0.03161268308758736, -0.034046098589897156, -0.008315982297062874, 0.015752023085951805, -0.012286578305065632, -0.015969293192029, -0.02266118675470352, 0.023399902507662773, 0.03191686049103737, 0.01672973483800888, 0.013926961459219456, -0.0018956746207550168, -0.045192014425992966, -0.0015955714043229818, -0.003272618632763624, 0.02715866081416607, 0.009005811996757984, -0.004090094473212957, -0.02983107417821884, 0.03176477178931236, 0.024160346016287804, -0.015252304263412952, 0.042497873306274414, -0.0058336807414889336, 0.0005282359779812396, 0.015045898966491222, 0.009728232398629189, -0.026615489274263382, 0.02424725331366062, -0.029374808073043823, 0.05987941846251488, -0.010396335273981094, 0.021129438653588295, -0.0062410603277385235, -0.005065090488642454, -0.012536438181996346, -0.02431243471801281, 0.01601274684071541, 0.014839492738246918, 0.030504608526825905, 0.0077130598947405815, -0.025029422715306282, 0.04732125252485275, -0.011830313131213188, 0.01749017834663391, 0.021976789459586143, -0.034806542098522186, -0.02555086836218834, -0.01095037255436182, -0.01792471669614315, -0.010358313098549843, 0.010830874554812908, -0.004396987147629261, 0.011634770780801773, 0.0029494306072592735, 0.02628958411514759, 0.008614727295935154, -0.010792852379381657, -0.04984157532453537, 0.0003124943468719721, 0.01317738275974989, 0.01599101908504963, -0.0023329290561378, -0.028896816074848175, -0.009869457222521305, 0.0038809727411717176, 0.02672412246465683, -0.01801162399351597, 0.016067063435912132, -0.014491861686110497, 0.009119878523051739, 0.017826944589614868, -0.01391609851270914, 0.03669678419828415, -0.011482682079076767, 0.016621101647615433, 0.0043019321747124195, 0.0020450472366064787, 0.00497546698898077, -0.0009138889727182686, 0.00737629272043705, 0.015339212492108345, 0.003707157215103507, -0.00510039646178484, -0.0012920732842758298, -0.0016770473448559642, -0.006002064328640699, -0.008332277648150921, 0.011830313131213188, -0.009380601346492767, -0.03239485248923302, 0.005160145927220583, 0.025659503415226936, -0.016186561435461044, 0.026984846219420433, 0.030091797932982445, -0.011613043956458569, 0.014035596512258053, -0.009717369452118874, -0.019315240904688835, -0.0023044124245643616, -0.03261212259531021, -0.029287900775671005, 0.007598993368446827, -0.010863464325666428, -0.001127763418480754, 0.007609856780618429, -0.04075971990823746, -0.014882946386933327, -0.003758758772164583, 0.005616411101073027, -0.009478372521698475, 0.037261683493852615, -0.0013891655253246427, -0.003237312426790595, -0.02035813219845295, 0.02187901735305786, 0.002685991581529379, 0.009521827101707458, 0.011439228430390358, 0.011243686079978943, 0.005953178741037846, 0.02907063066959381, 0.009907479397952557, -0.0021808405872434378, 0.0027240137569606304, 0.031178142875432968, -0.009831435978412628, 0.013622784987092018, 0.010119317099452019, -0.007571835070848465, -0.0343720018863678, -0.038500119000673294, 0.031178142875432968, -0.0015398961259052157, 0.05179699882864952, -0.004915717989206314, 0.004122684709727764, 0.033633287996053696, 0.004087378736585379, 0.002551556332036853, 0.003671851009130478, 0.006838550791144371, 0.054838769137859344, 0.01134145725518465, -0.016631964594125748, 0.04154188930988312, -0.02585504576563835, 0.018848111853003502, -0.01512194238603115, 0.023052271455526352, 0.0015643389197066426, -0.004627835936844349, 0.004467600025236607, 0.019434738904237747, 0.003652839921414852, 0.020640583708882332, 0.02550741471350193, 0.02787565067410469, -0.03393746539950371, 0.04945049062371254, 0.024029983207583427, -0.007539244368672371, -0.0067570749670267105, 0.004630551673471928, 0.003962448798120022, 0.0038402348291128874, 0.0006667451234534383, 0.012145353481173515, 0.0008459922973997891, -0.014057323336601257, -0.01034201867878437, -0.025051148608326912, 0.009440350346267223, -0.008153030648827553, 0.020097410306334496, 0.017609676346182823, -0.017044775187969208, 0.004551791585981846, 0.0365881472826004, 0.0212815273553133, 0.014318046160042286, 0.01312306523323059, 0.02307399921119213, 0.040498998016119, 0.015513027086853981, -0.0390215665102005, -0.0075935618951916695, -0.0238996222615242, 0.01992359384894371, 0.006463761441409588, -0.015056761913001537, 0.008495229296386242, 0.016947004944086075, 0.031721316277980804, 0.0223135557025671, -0.04095526039600372, -0.02713693492114544, 0.02470351941883564, 0.0018943166360259056, -0.00807698629796505, -0.012503847479820251, -0.01709909364581108, 0.005065090488642454, -0.0010557930218055844, -0.026528580114245415, 0.01951078325510025, 0.0323079451918602, -0.003837518859654665, -0.024942515417933464, 0.04593072831630707, 0.029179265722632408, -0.009054698050022125, 0.01893501915037632, 0.020510220900177956, -0.01992359384894371, -0.007403451018035412, -0.010162770748138428, 0.0010279553243890405, -0.03139541298151016, -0.04058590531349182, 0.018533071503043175, -0.045626550912857056, -0.010347450152039528, -0.011504408903419971, -0.007349133957177401, 0.008419184945523739, -0.02874472737312317, 0.010005250573158264, 0.01417682133615017, -0.004356249235570431, 0.006382285617291927, -0.05370897054672241, 0.008576705120503902, 0.034545816481113434, -0.03708786889910698, 0.005035215988755226, 0.017620539292693138, 0.004223172087222338, 0.0025895782746374607, -0.005103112664073706, 0.023334722965955734, -0.015828067436814308, 0.00995093397796154, 0.014502725563943386, -0.029592078179121017, -0.04060763120651245, 0.01691441424190998, -0.02272636815905571, -0.016251742839813232, -0.019250059500336647, -0.010037841275334358, -0.0013294165255501866, -0.03161268308758736, 0.019076243042945862, 0.01334033440798521, 0.035306259989738464, 0.01695786789059639, -0.018641704693436623, -0.019434738904237747, 0.0005282359779812396, 0.01854393444955349, -0.011634770780801773, 0.008913472294807434, -0.028961997479200363, -0.0013538593193516135, 0.0011141840368509293, 0.008218211121857166, 0.0038565299473702908, 0.03582770749926567, -0.019499918445944786, 0.0068765729665756226, -0.016697145998477936, 0.007626152131706476, -0.020162589848041534, -0.0184027086943388, -0.010369176976382732, -0.017663992941379547, -0.028505731374025345, 0.007598993368446827, 0.01897847279906273, 0.012156217359006405, -0.019478192552924156, 0.018804658204317093, -0.0021808405872434378, 0.01990186795592308, -0.01417682133615017, 0.001356575172394514, 0.010629899799823761, 0.016186561435461044, 0.015013308264315128, -0.002106154104694724, -0.05449113994836807, 0.004549075849354267, 0.03474136069417, -0.00427477341145277, -0.009163332171738148, 0.015382666140794754, 0.017816081643104553, 0.03899983689188957, -0.019054517149925232, -0.020944759249687195, -0.024507977068424225, -0.012808024883270264, 0.01238434948027134, -0.024464521557092667, 0.009956365451216698, -0.021835563704371452, 0.01395955216139555, -0.01808766834437847, -0.030917420983314514, 0.03504553809762001, -0.0010849885875359178, -0.006034654565155506, 0.021401025354862213, 0.03350292518734932, 0.0026656226254999638, 0.001000796677544713, 0.0021387445740401745, 0.007979215122759342, -0.004535496700555086, -0.03276420757174492, 0.03269902989268303, 0.02996143512427807, 0.011352320201694965, 0.00418243370950222, -0.0007726639159955084, -0.004502905998378992, 0.007560971193015575, 0.010542992502450943, -0.02546396106481552, 0.002821784932166338, 0.006751643493771553, 0.00829425547271967, -0.0085006607696414, 0.016990458592772484, 0.00825080182403326, 0.014546179212629795, -0.026897938922047615, 0.014643950387835503, -0.017609676346182823, 0.023312995210289955, 0.00011262357293162495, 0.0025040286127477884, 0.01395955216139555, 0.007169886492192745, -0.006507215555757284, -0.008359435945749283, -0.019706325605511665, -0.021107712760567665, -0.01278629805892706, -0.003112382721155882, -0.01689268834888935, -0.026637215167284012, -0.023617172613739967, 0.023226087912917137, -0.016306061297655106, -0.011287139728665352, -0.02996143512427807, 0.015556481666862965, 0.03906501829624176, -0.00915790069848299, -0.0079846465960145, 0.022574279457330704, 0.009119878523051739, -0.0021509660873562098, 0.01631692424416542, -0.002886965638026595, 0.012710253708064556, 0.018609115853905678, -0.028549185022711754, -0.0009152468992397189, -0.04393184930086136, 0.03832630440592766, -0.05336133763194084, 0.013579330407083035, -0.021455341950058937, -0.010961235500872135, 0.019869277253746986, -0.017424996942281723, 0.02274809591472149, 0.022878456860780716, 0.04147670790553093, -0.011037279851734638, 0.009353443048894405, -0.02274809591472149, -0.014480998739600182, -0.011254549026489258, 0.04119425639510155, 0.022813275456428528, 0.013698829337954521, -0.006914595142006874, -0.02509460411965847, 0.0198801402002573, -0.0057413410395383835, 0.016675418242812157, -0.000943084538448602, 0.018467890098690987, 0.0005136381951160729, -0.03667505830526352, -0.018228894099593163, -0.028484003618359566, 0.013166518881917, -0.01233003195375204, -0.031938586384058, -0.009717369452118874, 0.004049356561154127, -0.025398779660463333, 0.0059205880388617516, -0.013329471461474895, -0.00945664569735527, 0.02546396106481552, 0.010928645730018616, -0.002662906888872385, 0.01064076367765665, 0.002053194912150502, 0.00968477874994278, 0.006800529081374407, -0.01916315220296383, 0.007202477194368839, -0.011232822202146053, 0.006985207553952932, 0.03641433268785477, 0.010961235500872135, -0.02031467854976654, -0.050406474620103836, -0.04017309099435806, 0.008929767645895481, -0.03639260679483414, 0.008522387593984604, 0.014698267914354801, -0.013025294058024883, -0.0011250475654378533, 0.0093317162245512, -0.0024456374812871218, -0.008652749471366405, -0.006735348142683506, 0.01116764172911644, -0.011064439080655575, -0.0017653129762038589, 0.01155872642993927, -0.04662599042057991, 0.004320943262428045, -0.008853723295032978, 0.00072309939423576, -0.045192014425992966, -0.004318227060139179, -0.052014268934726715, 0.05110173672437668, -0.0011997339315712452, -0.008576705120503902, -0.003612102009356022, -0.0024836596567183733, 0.0037506110966205597, -0.02276982180774212, -0.009500100277364254, -0.004062935709953308, -0.001245224615558982, -0.007837989367544651, -0.04104216769337654, -0.008256233297288418, -0.009299125522375107, 0.0018101248424500227, -0.018782930448651314, -0.007685901131480932, -0.007267657667398453, 0.0008534609223715961, 0.005054227076470852, 0.014926400035619736, 0.007870580069720745, 0.026050588116049767, -0.028375370427966118, 0.03419818729162216, -0.017566222697496414, -0.008962358348071575, -0.0022487372625619173, 0.02175951935350895, -0.008000941947102547, 0.010244247503578663, 0.005548514425754547, 0.013840054161846638, 0.01177599560469389, -0.013155655935406685, 0.004486611112952232, 0.009462078101933002, 0.012471257708966732, 0.015589071437716484, -0.008174757473170757, 0.0025447665248066187, -0.0068331193178892136, -0.013633647933602333, 0.0037886332720518112, -0.010135612450540066, -0.015197986736893654, 0.003677282715216279, 0.021640021353960037, -0.018239757046103477, 0.025420507416129112, -0.01495899073779583, 0.0049211494624614716, 0.006420307792723179, 0.015045898966491222, -0.002446995349600911, -0.011450091376900673, 0.004081946797668934, 0.05735909193754196, -0.0035767958033829927, 0.022041969001293182, 0.003587659215554595, -0.01138491090387106, -0.01037460844963789, 0.00875595211982727, -0.010988394729793072, 0.009739096276462078, -0.0086853401735425, -0.008196484297513962, -0.01621915213763714, 0.02357371896505356, 0.044062212109565735, -0.005806521978229284, 0.0147525854408741, 0.018207166343927383, 0.012590755708515644, -0.011298003606498241, -0.011613043956458569, 0.01178685948252678, -0.01819630339741707, 0.00945664569735527, 0.005659865215420723, -0.01115677785128355, -0.001058508874848485, 0.004777208436280489, -0.02515978366136551, 0.002466006437316537, 0.001421755994670093, -0.01006499957293272, 0.008962358348071575, 0.004644131287932396, 0.027658380568027496, 0.013926961459219456, 0.007897738367319107, 0.00890260934829712, -0.014198548160493374, 0.001826419960707426, 0.02237873710691929, 0.010662490501999855, -0.005708750803023577, 0.0027294454630464315, -0.006007495801895857, 0.008631022647023201, 0.018055077642202377, 0.027767015621066093, 0.025616049766540527, 0.017012186348438263, -0.0226829145103693, -0.013796600513160229, 0.008218211121857166, -0.0161539725959301, 0.018163712695240974, -0.022596007212996483, 0.016653690487146378, -0.0016756894765421748, -0.01373141910880804, -0.00022966043616179377, 0.008033531717956066, -0.010396335273981094, 0.00837573129683733, -0.006909163668751717, -0.021933335810899734, -0.026180949062108994, -0.003731600008904934, 0.007414314430207014, 0.004011334385722876, 0.00823993794620037, 0.004201444797217846, 0.024051710963249207, 0.021335843950510025, -0.021031668409705162, -0.008913472294807434, 0.014068186283111572, 0.016870960593223572, 0.02552914246916771, -0.019456464797258377, -0.01178685948252678, -0.048059966415166855, -0.019543372094631195, -0.010217088274657726, 0.004470315761864185, 0.03265557438135147, -0.008131302893161774, -0.02001050114631653, 0.005350256338715553, 0.01893501915037632, -0.008478933945298195, -0.007142728194594383, 0.011428364552557468, -0.028570912778377533, -0.009407760575413704, -0.0063768536783754826, -0.009907479397952557, -0.00036392605397850275, -0.011221959255635738, 0.0182940736413002, 0.018218031153082848, -0.0008317340398207307, 0.014861219562590122, -0.01138491090387106, -0.0025311873760074377, 0.018055077642202377, 0.003647408215329051, -0.012243124656379223, -0.0063334000296890736, -0.006442034617066383, -0.01801162399351597, -0.010320291854441166, -0.0014869367005303502, -0.00899494905024767, -0.022118013352155685, -0.009934638626873493, -0.000391424197005108, -0.021976789459586143, -0.029635531827807426, -0.015610798262059689, 0.013264290057122707, -0.010944941081106663, -0.03150404617190361, 0.006952617317438126, -0.01513280626386404, 0.043649401515722275, -0.004798935726284981, 0.03439372777938843, 0.013307744637131691, -0.025616049766540527, -0.00211701774969697, -0.015154533088207245, 0.009543553926050663, 0.017848672345280647, 0.00689286831766367, 0.002772899344563484, 0.0006287230062298477, 0.022943638265132904, 0.019000200554728508, -0.001977150561287999, -0.009787981398403645, -0.0002678523014765233, -0.02946171537041664, 0.005844544153660536, 0.0037370319478213787, 0.013992142863571644, -0.006311672739684582, 0.028505731374025345, -0.02555086836218834, -0.019250059500336647, 0.007343702018260956, -0.008516956120729446, 0.028788181021809578, -0.030960874632000923, 0.00566529668867588, -0.0018630841514095664, 0.011493545956909657, -0.009711937047541142, -0.0076533108949661255, -0.01695786789059639, -0.026398219168186188, -0.012112762778997421, 0.02396480366587639, 0.01034201867878437, -0.007099274080246687, -0.04141152650117874, -0.003402980277314782, -0.007311111781746149, -0.026115769520401955, -0.017848672345280647, -0.007452336605638266, 0.02074921689927578, -0.023790987208485603, 0.0001336715358775109, 0.019130561500787735, -0.016870960593223572, -0.0006331363110803068, -0.03254694119095802, 0.03676196560263634, -0.01580634154379368, 0.03517589718103409, 0.0052280426025390625, -0.019891003146767616, -0.008761384524405003, 0.015404392965137959, 0.03278593719005585, 0.02744111232459545, 0.009429487399756908, -0.03219930827617645, -0.013926961459219456, 0.03148232027888298, -0.002081711310893297, 0.00695804925635457, -0.019260922446846962, -0.02948344312608242, 0.004997193813323975, -0.010678785853087902, 0.01134145725518465, -0.015252304263412952, -0.04317140951752663, -0.0004735791590064764, -0.008956926874816418, -0.014068186283111572, -0.010820010676980019, 0.022791549563407898, -0.0035550687462091446, 0.03228621557354927, -0.026984846219420433, -0.01693614199757576, 0.031351957470178604, -0.019250059500336647, -0.0018698738422244787, 0.025246690958738327, -0.004320943262428045, -0.009141605347394943, 0.0011467745061963797, 0.010803715325891972, -0.007159023080021143, 0.039629917591810226, 0.026137495413422585, -0.012199671007692814, -0.013166518881917, -0.015795476734638214, 0.00442414591088891, -0.01356846746057272, 0.009874889627099037, -0.003321504220366478, 0.01098296232521534, 0.006729916203767061, 0.005094964988529682, 0.018435299396514893, 0.016827506944537163, 0.019912730902433395, -0.0012234976748004556, 0.005010772962123156, 0.010852601379156113, 0.01810939610004425, -0.030156977474689484, -0.028961997479200363, 0.015654252842068672, 0.0202494990080595, -0.022921910509467125, -0.0212815273553133, -0.0008792616426944733, -0.003093371633440256, 0.0038483822718262672, -0.01895674504339695, -6.806639430578798e-05, -0.024008257314562798, 0.012851478531956673, 0.015599935315549374, -0.006985207553952932, -0.010271405801177025, 0.024442795664072037, -0.029722439125180244, -0.006387717090547085, 0.021824700757861137, -0.009103583171963692, 0.026333037763834, 0.008185620419681072, -0.026615489274263382, -0.005510492250323296, -0.008451775647699833, -0.006871141493320465, 0.014231138862669468, 0.008576705120503902, -0.04093353450298309, -0.011211095377802849, 0.006034654565155506, 0.006751643493771553, 0.01621915213763714, -0.019836686551570892, -0.006735348142683506, 0.003938005771487951, 0.027419384568929672, -0.0038646776229143143, 0.04710398241877556, 0.006132425740361214, -0.01513280626386404, 0.00046135776210576296, -0.004885843023657799, -0.005190020427107811, 0.014220274984836578, 0.014242001809179783, 0.007794535718858242, 0.010722239501774311, 0.00739258760586381, -0.006094403564929962, 0.010314859449863434, -0.00035136518999934196, 0.031351957470178604, 0.008516956120729446, -0.006610418204218149, 0.004138980060815811, 0.01038547232747078, -0.014198548160493374, 0.028418824076652527, 0.019934456795454025, 0.004372544586658478, -0.019032789394259453, -0.006469193380326033, -0.011417501606047153, 0.02229182980954647, -0.02148793265223503, 0.03943437710404396, -0.0017055639764294028, -0.004386123735457659, 0.0058336807414889336, 0.009614165872335434, -0.00488312728703022, 0.0021984935738146305, 0.017609676346182823, 0.010363745503127575, 0.00014945751172490418, 0.002426626393571496, -0.0028136372566223145, 0.008625591173768044, 0.0035007514525204897, 0.004953739698976278, -0.017294635996222496, 0.000958021788392216, 0.001364043797366321, 0.018000761047005653, -0.001846789033152163, -0.040868353098630905, -0.008663613349199295, -0.0005346861435100436, 0.001776176504790783, 0.020097410306334496, 0.010961235500872135, 0.00022881172480992973, -0.012460393831133842, 0.004415998235344887, 0.005942315328866243, -0.004850537050515413, -0.011080733500421047, -0.012699389830231667, -0.0036365448031574488, -0.030482882633805275, 0.009326284751296043, -0.01780521869659424, 0.013036157935857773, 0.0044214301742613316, 0.008924336172640324, 0.01193894725292921, 0.0021143017802387476, 0.011352320201694965, 0.02787565067410469, -0.03311184048652649, -0.009657620452344418, 0.008234506472945213, -0.018804658204317093, -0.0147525854408741, -0.004462168086320162, -0.010608172975480556, -0.01291665993630886, 0.006002064328640699, -0.004888559225946665, -0.009804276749491692, 0.030613243579864502, -0.004288352560251951, -0.024160346016287804, 0.0015236008912324905, -0.005358404014259577, 0.02350853756070137, -0.03558871150016785, -0.005304086487740278, 0.0184027086943388, -0.00820191577076912, -0.01774003729224205, 0.0013090474531054497, 0.02355199120938778, 0.03274248167872429, 0.027223842218518257, 0.008348572999238968, -0.0038266554474830627, 0.02870127372443676, -0.01356846746057272, 0.021477069705724716, -0.0431496798992157, -0.018044214695692062, 0.003959733061492443, -0.024507977068424225, -0.015936702489852905, -0.011841176077723503, -0.0013355271657928824, 0.007245930843055248, -0.014307183213531971, 0.010097590275108814, -0.010108454152941704, 0.005904293153434992, 0.01658851094543934, 0.010781988501548767, -0.018945882096886635, 0.0210968479514122, 0.010673354379832745, -0.013611921109259129, 0.021661749109625816, 0.024790426716208458, 0.017826944589614868, -0.02008654549717903, 0.023378176614642143, 0.016425559297204018, -0.005926019977778196, -0.010412630625069141, 0.0011189368087798357, 0.009532690048217773, -0.004092810209840536, 0.043692853301763535, -0.03263384848833084, 0.0027891944628208876, 0.04069453850388527, -0.027680108323693275, 0.00019265674927737564, -0.014904673211276531, 0.0002827895514201373, 0.0009648114792071283, -0.013003567233681679, 0.013003567233681679, 0.008560409769415855, 0.023312995210289955, -0.009815140627324581, 0.0004776529676746577, -0.01833752915263176, -0.026506854221224785, 0.019130561500787735, 0.0019690028857439756, -0.00272537162527442, 0.033633287996053696, -0.005931451916694641, -0.008022668771445751, 0.022639460861682892, 0.006452898029237986, 0.03913019970059395, -0.00928283017128706, 0.03915192559361458, 0.0006599554908461869, 0.001440766965970397, -0.038391485810279846, -0.003943437710404396, 0.018055077642202377, -0.011200232431292534, 0.015491300262510777, -0.004676721524447203, -0.031721316277980804, 0.0238996222615242, 0.014155094511806965, -0.011754268780350685, 0.012199671007692814, 0.02070576325058937, 0.012710253708064556, 0.015795476734638214, -0.01709909364581108, 0.015665115788578987, -0.0037804855965077877, 0.015393529087305069, -0.01116764172911644, -0.00999438762664795, 0.0071970452554523945, -0.0034111279528588057, 0.020716626197099686, -0.003231880720704794, 0.012666800059378147, -0.01193894725292921, 0.004731039050966501, 0.0027661097701638937, -0.022900182753801346, -0.00011347228428348899, -0.020629718899726868, 0.012025855481624603, -0.001319232047535479, -0.022900182753801346, -0.017033912241458893, 0.0042258878238499165, 0.011243686079978943, 0.01571943424642086, 8.64833637024276e-05, 0.013296880759298801, -0.0009315420757047832, 0.009087287820875645, -0.01517625991255045, -0.026007134467363358, 0.0038864044472575188, 0.001017770846374333, 0.0032155856024473906, 0.012721117585897446, -0.03826112300157547, 0.02676757611334324, -0.0005458890809677541, 0.009402329102158546, -0.01601274684071541, -0.006208470091223717, -0.017359817400574684, -0.021433616057038307, 0.004410566762089729, 0.005127555225044489, 0.001820988254621625, -0.001811482710763812, -0.0039189946837723255, -0.002036899561062455, -0.007452336605638266, -0.022574279457330704, -0.01654505729675293, 0.008392026647925377, 0.011254549026489258, -0.00837573129683733, 0.03300320729613304, 0.023421630263328552, -0.012036718428134918, -0.015936702489852905, -0.010727670975029469, -0.00784885324537754, 0.020282087847590446, 0.015871521085500717, 0.019260922446846962, 0.028527459129691124, 0.015197986736893654, -0.0065778279677033424, 0.0015154533321037889, 0.00015633204020559788, -0.019977912306785583, 0.003777769859880209, 0.005075953900814056, 0.004005902446806431, 0.02008654549717903, -0.001921475282870233, 0.017066502943634987, 0.01312306523323059, 0.0068765729665756226, 0.02066230960190296, 0.04849450662732124, -0.014991581439971924, -0.009277398698031902, 0.016555920243263245, -0.012406076304614544, 0.011439228430390358, 0.018228894099593163, -0.006490920204669237, -0.004663142375648022, 0.00836486741900444, -0.008098713122308254, 0.004459452349692583, -0.021031668409705162, -0.00484238937497139, -0.017381543293595314, -0.009630461223423481, 0.0036908620968461037, -0.00889174547046423, 0.0024551430251449347, -0.012503847479820251, -0.004608824849128723, -0.009337147697806358, -0.00985859427601099, 0.011118755675852299, -0.016436422243714333, 0.0007095200126059353, -0.013514149934053421, -0.01099382620304823, -0.011536999605596066, 0.0030797922518104315, -0.020434176549315453, -0.010358313098549843, 0.005103112664073706, -0.0032101538963615894, 0.008598431944847107, 0.02167261205613613, 0.03343774378299713, 0.008620158769190311, -0.0027185820508748293, 0.019228331744670868, -0.00636599026620388, 0.017685720697045326, -0.021314118057489395, -0.01233003195375204, -0.023660626262426376, 0.002676486037671566, -0.02996143512427807, -0.006626713555306196, 0.001686552888713777, 0.0012621987843886018, -0.0025950102135539055, 0.008332277648150921, 0.009646756574511528, 0.002957578282803297, 0.004511053673923016, 0.020836126059293747, -0.013503286987543106, 0.02707175351679325, 0.03348119929432869, -0.018576525151729584, 0.012753707356750965, 0.007262226194143295, 0.0012479404686018825, 0.015078488737344742, -0.004475747235119343, -0.009478372521698475, 1.739851722959429e-05, -0.016838369891047478, -0.002905976725742221, 0.03309011459350586, 0.009880321100354195, -0.015849795192480087, 0.00569245545193553, 0.013003567233681679, 0.010608172975480556, -0.003297061426565051, 0.0033894008956849575, -0.01020079292356968, 0.003728884272277355, -0.01496985461562872, 0.01436150074005127, -0.007832557894289494, 0.01015733927488327, -0.01117850560694933, -0.0061215623281896114, 0.0019527077674865723, 0.009413192048668861, -0.020694900304079056, -0.009635892696678638, 0.028158100321888924, -0.00656696455553174, -0.015056761913001537, -0.0025189658626914024, -0.015436983667314053, 0.014719994738698006, -0.004247614648193121, -0.019445601850748062, 0.007354565430432558, -0.0008677192381583154, 0.009755391627550125, 0.013242563232779503, 0.0202494990080595, 0.019597690552473068, -0.01650160364806652, -0.03502380847930908, 0.011308866553008556, -0.0005204278277233243, 0.03113468922674656, -0.02394307591021061, 0.014774312265217304, -0.021009940654039383, 0.005572957452386618, -0.0030743605457246304, -0.003837518859654665, -0.0046658581122756, -0.02904890477657318, 0.014589632861316204, 0.016230016946792603, -0.0012221398064866662, -0.0019296229584142566, -0.006056381389498711, -0.0009274682961404324, -0.03626224398612976, 0.007734786719083786, 0.024486249312758446, 0.012188807129859924, -0.01769658364355564, -0.00011101103154942393, -0.0016172983450815082, 0.02350853756070137, -0.0019540656358003616, -0.00946750957518816, -0.006105266977101564, 0.0005828927969560027, 0.013818327337503433, -0.009907479397952557, 0.016577647998929024, 0.003498035715892911, 0.0002483320131432265, 0.015665115788578987, 0.005429016426205635, -0.01133059337735176, -0.012069309130311012, 0.004133548121899366, -0.0068765729665756226, -0.010206225328147411, 0.008707066997885704, -0.01093950867652893, 0.029353082180023193, 0.00995093397796154, -0.01296011358499527, -0.013079611584544182, 0.0006181990611366928, 0.021563977003097534, -0.001876663533039391, 0.003153120633214712, -0.01417682133615017, -0.00823993794620037, 0.014850356616079807, -0.002486375393345952, -0.0025311873760074377, 0.004228603560477495, -0.01234089583158493, -0.005486049689352512, -0.01274284441024065, -0.009223081171512604, -0.0010021546622738242, -0.022856729105114937, -0.026572033762931824, -0.0015847078757360578, 0.006963480729609728, -0.009896616451442242, -0.004758197348564863, -0.021911608055233955, -0.010081294924020767, -0.014546179212629795, -0.0021238073240965605, 0.004081946797668934, -0.0052877916023135185, -0.01312306523323059, -0.009793413802981377, -0.006213901564478874, -0.024399342015385628, 0.0003160589258186519, 0.03313356637954712, 0.01796817034482956, -0.010820010676980019, 0.028440549969673157, 0.0008358078193850815, -0.004630551673471928, -0.008430048823356628, 0.0009614166337996721, 0.008652749471366405, 0.001250656321644783, -0.019011063501238823, 0.000958021788392216, -0.01196067500859499, -0.00438340799883008, 0.005206315312534571, -0.00925024040043354, -0.006425739265978336, 0.001626803888939321, -0.014209412038326263, -0.010727670975029469, 0.003508899128064513, -0.007039525080472231, -1.613606400496792e-05, -0.01778349094092846, -0.019749779254198074, -0.0186634324491024, 0.009842298924922943, -0.0048749796114861965, 0.011428364552557468, -0.0071372962556779385, -0.0009396896930411458, -0.01513280626386404, -0.021911608055233955, 0.0062573556788265705, -0.008636454120278358, -0.04069453850388527, 0.0033486629836261272, 0.009706505574285984, 0.013579330407083035, -0.0185873880982399, 0.031308505684137344, 0.02274809591472149, 0.005828248802572489, -0.006496351677924395, 0.013014431111514568, 0.024920787662267685, 0.007990078069269657, 0.012297442182898521, 0.0358494333922863, 0.006952617317438126, -0.02068403735756874, 0.010695081204175949, -0.004133548121899366, -0.004562654998153448, -0.006414875853806734, -0.009060129523277283, -0.02270464040338993, -0.008115008473396301, -0.0238996222615242, 0.013112202286720276, 0.009793413802981377, 0.007441473193466663, 0.014003005810081959, 0.0043290904723107815, -0.0033513789530843496, 0.02215060405433178, -0.019108833745121956, 0.0026832758449018, -0.0009037044947035611, -0.005393709987401962, -0.006170447915792465, -0.010689648799598217, 0.0038782567717134953, 0.009081856347620487, -0.006322536617517471, -0.018533071503043175, 0.005529503338038921, 0.007110137492418289, -0.005469754338264465, 0.01294924970716238, 0.014003005810081959, -0.004945592489093542, 0.011667361482977867, 0.0005506418528966606, -0.026876211166381836, 0.016099654138088226, -0.0013396010035648942, -0.017044775187969208, 0.005323097575455904, 0.0015385381411761045, 0.015871521085500717, -0.01730549894273281, 0.010081294924020767, -0.0029195561073720455, 0.02272636815905571, 0.021422753110527992, 0.0011019626399502158, 0.026137495413422585, 0.00023254603729583323, 0.008973222225904465, -0.019336966797709465, -0.016392968595027924, -0.0196954607963562, 0.012427803128957748, 0.016870960593223572, -0.020597128197550774, -0.0022229363676160574, 0.00794119294732809, -0.00608354015275836, -0.012612482532858849, 0.0018386413576081395, 0.014198548160493374, 0.009755391627550125, -0.010358313098549843, -0.017077365890145302, -0.010608172975480556, -0.032090675085783005, -0.001755807432346046, 0.0007346417987719178, -0.007691333070397377, 0.00388368871062994, 0.011884630657732487, 0.0010123391402885318, 0.012416940182447433, -0.013850917108356953, 0.03593634068965912, -0.009625029750168324, -0.0015154533321037889, -0.009706505574285984, 0.02589849941432476, 0.020999077707529068, -0.01932610385119915, -0.006132425740361214, -0.018098531290888786, 0.0033486629836261272, -0.00048444262938573956, -0.002495880937203765, 0.01767485775053501, 0.022530825808644295, 0.0010843095369637012, 0.0037207365967333317, -0.009472941048443317, 0.00011830992298200727, -0.01103184837847948, -0.019836686551570892, -0.000958021788392216, -0.017729174345731735, -0.016784053295850754, -0.0032508918084204197, 0.002540692687034607, 0.01617569848895073, -0.01819630339741707, -0.028092918917536736, 0.041737429797649384, 0.00667559914290905, -0.016034474596381187, 0.002277253894135356, 0.007207908667623997, 0.0199887752532959, 0.026941392570734024, 0.021998515352606773, 0.0020735638681799173, 0.024182071909308434, -0.028462277725338936, -0.016990458592772484, -0.003345947014167905, 0.004486611112952232, 0.022443918511271477, -0.006425739265978336, -0.03143886849284172, 0.027202116325497627, 0.01661023683845997, 0.013372925110161304, -0.005996632389724255, 0.007126432843506336, 0.01238434948027134, -0.0036609875969588757, -0.003707157215103507, -0.024507977068424225, -0.00469301687553525, 0.005206315312534571, 0.008826564997434616, 0.00706668384373188, 0.001401386922225356, -0.005333960987627506, -0.013622784987092018, -0.009141605347394943, 0.017653129994869232, -0.01007586345076561, 0.003916278947144747, -0.0354800745844841, -0.007169886492192745, -0.006322536617517471, 0.03217758238315582, 0.0019146855920553207, 0.006849414668977261, -0.009782549925148487, 0.014013869687914848, -0.006594122853130102, 0.0438883975148201, 0.007881443947553635, 0.00586627097800374, 0.01294924970716238, 0.011428364552557468, 0.011417501606047153, -0.021520523354411125, 0.005578388925641775, -0.018696023151278496, 0.0031694157514721155, 0.009934638626873493, -0.0056815920397639275, 0.005173725076019764, 0.011504408903419971, 0.003286198014393449, -0.02194419875741005, 0.018044214695692062, -0.003449150128290057, 0.00954898539930582, 0.02031467854976654, 0.011536999605596066, 0.015480437316000462, -0.01196067500859499, -0.002525755437090993, -0.012416940182447433, -0.00534210866317153, -0.004220455884933472, 0.011439228430390358, -0.012373486533761024, -0.014502725563943386, -0.006626713555306196, -0.012427803128957748, -0.002092574955895543, -0.023421630263328552, -0.003402980277314782, 0.005350256338715553, 0.004782640375196934, -0.009663051925599575, -0.00586627097800374, 0.012449530884623528, 0.025811592116951942, 0.002186272293329239, -0.006480056792497635, 0.015675978735089302, -0.003552353009581566, 0.014633086510002613, 0.02180297300219536, 0.007468631956726313, -0.0007068041595630348, 0.020216908305883408, -0.0006148042157292366, -0.001781608210876584, -0.017587948590517044, -0.01098296232521534, -0.009668483398854733, 0.001776176504790783, -0.014850356616079807, 0.015458710491657257, 0.0362187922000885, 0.0017272909171879292, 0.005969473626464605, 0.029613804072141647, 0.014654814265668392, -0.014763448387384415, 0.005985768977552652, 0.014557043090462685, 0.03198203817009926, 0.01749017834663391, -0.012677663005888462, -0.005437164101749659, 0.007131864782422781, 0.03104778192937374, 0.0200648196041584, -0.004983614198863506, -0.0012852837098762393, 0.0075772665441036224, -0.0002318670740351081, -0.005477902013808489, 0.006599554792046547, 0.007598993368446827, -0.00058323226403445, -0.0013015788281336427, 0.004804367199540138, 0.001030671177431941, 0.010309427976608276, 0.015035035088658333, 0.009141605347394943, 0.005477902013808489, 0.006936321966350079, -0.008185620419681072, 0.006398580502718687, 0.023747533559799194, -0.0047690607607364655, 0.022215785458683968, -0.0058771343901753426, -0.013850917108356953, -0.013101338408887386, -0.000497682485729456, 0.0036446924787014723, -0.008853723295032978, 0.0009607376414351165, -0.01177599560469389, -0.006012927740812302, -0.017153410241007805, 0.002698213094845414, 0.017088230699300766, -0.008028100244700909, 0.0010632616467773914, 0.011298003606498241, 0.019977912306785583, 0.016784053295850754, 0.011645633727312088, 0.025203237310051918, -0.0007909960113465786, 0.0035496370401233435, -0.004616972524672747, 0.009668483398854733, 0.006452898029237986, 0.010700512677431107, 0.009695642627775669, 0.01656678318977356, 0.020445041358470917, -0.011841176077723503, 0.022204922512173653, 0.004587098024785519, -0.0072567942552268505, -0.001461136038415134, 0.0107331033796072, 0.008381162770092487, -0.00807698629796505, 0.010999257676303387, 0.02987452782690525, -0.014991581439971924, 0.009054698050022125, -0.013492423109710217, -0.0072893849574029446, 0.00825080182403326, 0.013481559231877327, -0.004964603576809168, -0.006143289152532816, 0.004796219523996115, 0.0012370770564302802, 0.015632525086402893, 0.0018332096515223384, 0.010043272748589516, -0.011471819132566452, 0.019315240904688835, 0.026919664815068245, 0.03619706258177757, -0.01024967897683382, -0.011982401832938194, -0.026919664815068245, 0.030960874632000923, -0.008044395595788956, 0.005179156549274921, 0.02357371896505356, -0.009869457222521305, -0.016599373891949654, -0.014003005810081959, 0.005649001803249121, 0.01994532160460949, -0.0013687965692952275, 0.014013869687914848, -0.016001883894205093, 0.014111640863120556, -0.02628958411514759, -0.0024402057752013206, 0.008908040821552277, 0.006518078967928886, 0.004174286499619484, 0.014100776985287666, 0.009532690048217773, -0.009874889627099037, -0.030548062175512314, -0.004565371200442314, 0.001088383374735713, -0.01090148650109768, -0.011580453254282475, 0.023052271455526352, -0.01006499957293272, 0.007408882956951857, -0.0018087668577209115, -0.011232822202146053, 0.012894932180643082, 0.017816081643104553, 0.005507776513695717, 0.01695786789059639, -0.020466767251491547, 0.02987452782690525, 0.0016621100949123502, 0.013416378758847713, -0.00967391487210989, 0.01588238589465618, 0.012047582305967808, 0.0012153501156717539, 0.006306241266429424, -0.007430609781295061, 0.011010121554136276, -0.0020301099866628647, -0.017772627994418144, 0.003511614864692092, 0.022813275456428528, 0.01990186795592308, -0.008842860348522663, 0.008185620419681072, 0.02313918061554432, 0.004380692262202501, -0.006800529081374407, -0.0021197334863245487, 0.016718871891498566, -0.0016526045510545373, 0.008989516645669937, -0.02116202935576439, -0.012525574304163456, 0.007506654132157564, -0.006338831502944231, -0.008397458121180534, 0.010955804027616978, -0.0015032319352030754, -0.00794119294732809, -0.005116691812872887, 0.007995509542524815, 0.0046957326121628284, -0.0026452536694705486, -0.007088410668075085, 0.018511343747377396, -0.0035985226277261972, 0.01356846746057272, -0.0022691062185913324, -0.029309628531336784, 0.012677663005888462, -0.01299270335584879, 0.046799805015325546, -0.012840615585446358, -0.010336586274206638, -0.006338831502944231, -0.027028299868106842, 0.0016743314918130636, -0.02911408618092537, -0.008587568998336792, 0.030939146876335144, 0.008321413770318031, -0.013818327337503433, 0.004000470973551273, -0.007398019544780254, -0.014611359685659409, -0.011113324202597141, 0.0002522360591683537, 0.0076533108949661255, 0.002038257662206888, -0.008897177875041962, -0.011971537955105305, 0.024812152609229088, -0.0047120279632508755, -0.007528380956500769, 0.01879379339516163, 0.01217794418334961, -0.0002846567367669195, -1.60405852511758e-05, 0.0023505822755396366, 0.01932610385119915, 0.012710253708064556, -0.003989607561379671, -0.015295757912099361, -7.137635839171708e-05, 0.01897847279906273, -0.009244807995855808, -0.008424616418778896, -0.03691405430436134, 0.0014896525535732508, -0.018391845747828484, -0.013036157935857773, -0.01356846746057272, 0.0035958068910986185, -0.019869277253746986, 0.013394651934504509, -0.01831580139696598, 0.0009233945165760815, -0.0026045157574117184, -0.016034474596381187, 0.026963118463754654, -0.002070847898721695, -0.00923937652260065, -0.0030444860458374023, 0.01675146259367466, 0.02392135001718998, -0.004445872735232115, 0.0057413410395383835, 0.004144411999732256, -0.020510220900177956, 0.024051710963249207, 0.01134145725518465, 0.001121652778238058, -0.0028951133135706186, 0.0019445602083578706, -0.008288823999464512, -0.025290146470069885, 0.012634209357202053, 0.0171860009431839, -0.028961997479200363, -0.0039217108860611916, 0.008006373420357704, -0.01173254195600748, 0.017707446590065956, 0.02309572510421276, -0.014796039089560509, 0.0185873880982399, 0.01212362665683031, -0.025637777522206306, -0.007751082070171833, 0.0032508918084204197, 0.011097028851509094, -0.01478517521172762, 0.014861219562590122, 0.0024239106569439173, -0.020879579707980156, -0.01889156550168991, -0.0038212237413972616, 0.018674295395612717, -0.011841176077723503, -0.010705944150686264, -0.004913001786917448, -0.002316633937880397, 0.023812714964151382, 0.00578479515388608, -0.005328529514372349, -0.014252865687012672, 0.014296319335699081, -0.0014597780536860228, -0.012221397832036018, 0.005385562777519226, 0.005268780514597893, 0.0034138436894863844, 0.02093389630317688, 0.0198040958493948, 0.0033568106591701508, -0.008587568998336792, -0.00825080182403326, 0.02116202935576439, 0.015165396966040134, -0.01154786255210638, -0.00304177007637918, -0.027658380568027496, 0.02787565067410469, -0.0066212816163897514, -0.012471257708966732, -0.015252304263412952, -0.00819105189293623, -0.024616610258817673, -0.009554416872560978, 0.01619742624461651, -0.007430609781295061, -0.01774003729224205, 0.017414133995771408, -0.0031096667516976595, -0.004144411999732256, -0.02587677352130413, -0.008908040821552277, -0.020488495007157326, 0.019315240904688835, 0.029200993478298187, 0.004562654998153448, 0.005078669637441635, 0.004508337937295437, 0.021031668409705162, -0.001736796461045742, -0.00656696455553174, -0.0058173853904008865, 0.014491861686110497, -0.01872861385345459, 0.014882946386933327, -0.01255816500633955, -0.0012907154159620404, -0.0037370319478213787, -0.010363745503127575, -0.003307925071567297, -0.0014326194068416953, -0.00037071574479341507, -0.01394868828356266, 0.006746211554855108, -0.011232822202146053, 0.02031467854976654, -0.007408882956951857, -0.0010686933528631926, -0.0006134462892077863, 0.006854846142232418, 0.0198040958493948, 0.009614165872335434, 0.013840054161846638, -0.0011447375873103738, 0.008788542822003365, -0.00756640313193202, -0.01352501381188631, 0.010184498503804207, -0.03784831240773201, 0.013231700286269188, 0.030613243579864502, -0.009999819099903107, -0.024073436856269836, -0.009793413802981377, 0.0024252685252577066, 0.0017354384763166308, -0.013807463459670544, -0.014763448387384415, -0.003910847473889589, 0.021998515352606773, 0.0015494016697630286, 0.0008446343708783388, -0.014643950387835503, -0.0017327226232737303, -0.008180188946425915, 0.018782930448651314, 0.024833880364894867, 0.01617569848895073, -0.0107331033796072, -0.0010503611993044615, -0.016849232837557793, 0.014459271915256977, 0.01133059337735176, -0.008033531717956066, -0.009195922873914242, -0.0061976066790521145, 0.005572957452386618, -0.01273198053240776, 0.015545617789030075, 0.010434357449412346, 5.898521703784354e-05, 0.019434738904237747, 0.014676541090011597, -0.02550741471350193, -0.01693614199757576, -0.004128116648644209, 0.00283264834433794, -0.005589252803474665, 0.0037913492415100336, 0.02350853756070137, -0.0027837627567350864, -0.00789230689406395, 0.021216345950961113, 0.0056978873908519745, 0.019195742905139923, -0.017457587644457817, -0.03106950968503952, -0.005236189812421799, 0.005746772978454828, -0.005431732162833214, -0.007914033718407154, 0.014872083440423012, 0.018348392099142075, 0.0009342579869553447, -0.011819449253380299, -0.013296880759298801, -0.016577647998929024, 0.02037985995411873, -0.02010827325284481, -0.00838659517467022, -0.011906357482075691, 0.024095164611935616, -0.008060690946877003, 0.028049465268850327, 0.012036718428134918, 0.0028706705197691917, 0.00945664569735527, 0.008272528648376465, -0.002586862538009882, 0.010314859449863434, 0.006061813328415155, -0.00015955713752191514, 0.025420507416129112, -0.031178142875432968, 0.01819630339741707, 0.029722439125180244, -0.010325723327696323, 0.011906357482075691, 0.0034084119834005833, 0.013514149934053421, -0.00412540091201663, -0.008609295822679996, -0.0060781086795032024, -0.0032481758389621973, -0.04299759492278099, -0.009945501573383808, -0.007452336605638266, 0.022987091913819313, -0.008603864349424839, 0.0058010900393128395, 0.022596007212996483, 0.01313392911106348, 0.012503847479820251, -0.01085803285241127, 0.030091797932982445, -0.023421630263328552, -0.0012234976748004556, -0.005013489164412022, -0.028875088319182396, 0.013709692284464836, 0.00890260934829712, 0.019662871956825256, 0.010472379624843597, 0.022791549563407898, -0.012449530884623528, -0.020162589848041534, -0.01115677785128355, -0.023247813805937767, 0.044800929725170135, -0.01496985461562872, 0.017750902101397514, -0.008652749471366405, -0.003897267859429121, 0.0009865383617579937, -0.0005981695139780641, 5.2450166549533606e-05, -0.01435063686221838, 0.005127555225044489, 0.023638898506760597, -0.0037967809475958347, 0.014817765913903713, -0.020738353952765465, -0.009478372521698475, 0.0018535786075517535, -0.026333037763834, -0.023226087912917137, -0.003492603776976466, 0.01317738275974989, 0.012308305129408836, -0.004263909999281168, 0.004592529498040676, 0.017435859888792038, 0.008652749471366405, -0.005643569864332676, 0.020988212898373604, -0.039260562509298325, -0.01576288789510727, -0.025594322010874748, 0.010977530851960182, -0.00015904790780041367, 0.0016987742856144905, -0.022226648405194283, 0.034046098589897156, -0.03111296333372593, 0.017859535291790962, -0.008538682945072651, -0.0057250456884503365, 0.0039054155349731445, 0.00946750957518816, -0.013872643932700157, 0.013698829337954521, 0.018619978800415993, 0.03660987690091133, 0.007403451018035412, -0.03189513087272644, -0.00577393127605319, -0.009380601346492767, -0.012894932180643082, 0.0009308631415478885, 0.007321975193917751, 0.004980898462235928, -0.004443156998604536, 0.021976789459586143, -0.011819449253380299, 0.012970976531505585, -0.014046459458768368, -0.010803715325891972, -0.009022107347846031, -0.01948905549943447, -0.017479315400123596, 0.006322536617517471, -0.0032345966901630163, -2.2087629986344837e-05, 0.007240499369800091, 0.010407199151813984, 0.017012186348438263, -0.013057884760200977, -0.015980156138539314, 0.006154152564704418, 0.007685901131480932, -0.015208850614726543, -0.0036609875969588757, 0.032481759786605835, -0.028397096320986748, 0.021031668409705162, 0.00903297122567892, -0.02476869896054268, -0.0016947004478424788, 0.02828846126794815, -0.004676721524447203, -0.02396480366587639, -0.004698448348790407, 0.002556988038122654, 0.016762325540184975, 0.018207166343927383, -0.002946714870631695, -0.006148721091449261, 0.03713132068514824, -0.026398219168186188, 0.026137495413422585, -0.0023329290561378, 0.011059006676077843, -0.022552553564310074, 0.0034708769526332617, -0.008598431944847107, 0.004961887374520302, -0.03945610299706459, 0.0043589649721980095, -0.011037279851734638, -0.006398580502718687, 0.010966667905449867, 0.001276457100175321, -0.005822816863656044, 0.002270464086905122, 0.0001884132216218859, -0.00778367230668664, -0.013937825337052345, 0.015480437316000462, 0.031265050172805786, -0.0053909942507743835, 0.026333037763834, -0.008028100244700909, -0.02552914246916771, -0.004627835936844349, -0.007555539719760418, -0.0009186417446471751, 0.00899494905024767, -0.017729174345731735, 0.006496351677924395, 0.002490449231117964, -0.010624468326568604, 0.013633647933602333, 0.0053909942507743835, -0.003995039034634829, 0.009782549925148487, 0.018163712695240974, 0.011428364552557468, 0.017772627994418144, 0.016990458592772484, 0.013003567233681679, 0.005065090488642454, -0.002275895792990923, -0.006040086504071951, 0.02709348127245903, -0.02429070696234703, 0.007028661668300629, 0.005108544137328863, 0.005162861663848162, -0.0015371802728623152, 0.020760081708431244, 0.0018074089894071221, 0.012677663005888462, -0.020901305601000786, -0.013394651934504509, -0.02313918061554432, -0.0028136372566223145, -0.014187685213983059, -0.017598813399672508, 0.00039244265644811094, -0.014589632861316204, -0.01099382620304823, -0.015241441316902637, -0.018630841746926308, -0.015980156138539314, 0.03139541298151016, -0.010988394729793072, 0.0005591289373114705, -0.00244156364351511, 0.0307218786329031, 0.019032789394259453, -0.010678785853087902, 0.015480437316000462, 0.0037696221843361855, -0.008223642595112324, 0.020575402304530144, -0.017501041293144226, -0.016631964594125748, 0.0006935643032193184, -0.0020572685170918703, 0.003427423071116209, -0.0027240137569606304, -0.02056453935801983, -0.0026547592133283615, 0.021520523354411125, 0.0023655195254832506, 0.007012366317212582, 0.007897738367319107, -0.01556734461337328, -0.0028543754015117884, -0.02550741471350193, -0.026419946923851967, -0.013633647933602333, -0.006344263441860676, 0.005931451916694641, -0.015621662139892578, 0.00619217474013567, 0.001062582596205175, 0.014252865687012672, -0.012655936181545258, 0.007837989367544651, -0.005980337504297495, -0.008337709121406078, 0.0031395412515848875, 0.019956184551119804, 0.01948905549943447, 0.008098713122308254, 0.01574116013944149, 0.0062736510299146175, 0.019891003146767616, -0.0013973132008686662, 2.089943791361293e-06, -0.002072205999866128, 0.013535876758396626, 0.02996143512427807, -0.00854954682290554, -0.027636654675006866, 0.03741377219557762, -0.008326845243573189, 0.008163893595337868, -0.002626242581754923, 0.01819630339741707, 0.0049347286112606525, -0.003938005771487951, -0.007517517544329166, 0.021270664408802986, 0.004581666085869074, -0.003212869632989168, 0.009619598276913166, -0.017631402239203453, -0.00205047894269228, -0.0034355707466602325, -0.0006898299907334149, -0.0070938426069915295, 0.011797722429037094, 0.0026846337132155895, -0.007680469658225775, 0.008886313997209072, 0.013448969461023808, 0.008419184945523739, 0.007544676307588816, -0.009972660802304745, 0.015458710491657257, 0.007408882956951857, 0.0009722801041789353, 0.005572957452386618, 0.0026656226254999638, -0.00977711845189333, -0.018641704693436623, 0.00041043528472073376, -0.039217106997966766, -0.013633647933602333, 0.02311745285987854, 0.0038185077719390392, 0.015274031087756157, 0.014665677212178707, -0.01936955749988556, -0.006827687378972769, -0.003131393576040864, -0.010629899799823761, -0.028853362426161766, -0.0037098731845617294, -0.004986330401152372, 0.01571943424642086, -0.021053394302725792, -0.008821133524179459, 0.024529702961444855, -0.007245930843055248, -0.00697434414178133, 0.05066720023751259, 0.011928084306418896, -0.00838659517467022, 0.004540928173810244, -0.00636599026620388, -0.022791549563407898, -0.0023790986742824316, 0.002952146576717496, 0.002857091138139367, -0.008745089173316956, -0.05214463174343109, -0.016697145998477936, 0.003647408215329051, -0.012503847479820251, 0.006322536617517471, -0.0053611197508871555, 0.007148159667849541, 0.019499918445944786, -0.01452445238828659, -0.0008738299366086721, -0.005567525513470173, 0.016653690487146378, -0.018815521150827408, -0.0014136083191260695, -0.0010856675216928124, -0.009000380523502827, 0.005882566329091787, -0.0008425974519923329, 0.034545816481113434, 0.006219333503395319, -0.018218031153082848, 0.03817421570420265, 0.011689088307321072, -0.016925277188420296, 0.013861780986189842, 0.001481504994444549, 0.0036664193030446768, -0.018674295395612717, -0.005442595575004816, 0.019891003146767616, 0.01769658364355564, -0.005513208452612162, 0.010260541923344135, -0.0007407524972222745, 0.0015344644198194146, 0.0023044124245643616, 0.010483243502676487, 0.005703318864107132, -0.006702757906168699, -0.0015303905820474029, -0.011656497605144978, -0.011308866553008556, 0.020531948655843735, 0.0035387736279517412, -0.020846989005804062, -0.005437164101749659, -0.01115677785128355, -0.03697923198342323, 0.013861780986189842, 0.009206786751747131, 0.005779363214969635, 0.0018820952391251922, 0.006556101143360138, -0.001077519846148789, 0.0251163300126791, 0.00717531843110919, -0.015675978735089302, -0.009510963223874569, -0.003723452566191554, 0.026963118463754654, 0.0022446634247899055, -0.001386449672281742, 0.015665115788578987, 0.030135251581668854, -0.00442414591088891, -0.001410892466083169, 0.018348392099142075, 0.006251923739910126, 0.0030988033395260572, 0.009092720225453377, -0.01553475484251976, -0.002661548787727952, 0.00033744637039490044, -0.0026493275072425604, 0.005790226627141237, -0.021650884300470352, 0.009853162802755833, 0.000928147288504988, 0.007810831069946289, 0.008261664770543575, 0.0015806341543793678, 0.0007054462330415845, 0.009798845276236534, -0.008049827069044113, -0.009136173874139786, 0.009521827101707458, 0.018619978800415993, 0.02589849941432476, -0.011591317132115364, 0.009342579171061516, 0.008022668771445751, -0.026224404573440552, 0.01394868828356266, -0.0058608390390872955, -0.026463400572538376, 0.03337256237864494, -0.0006409444031305611, 0.004133548121899366, -0.01436150074005127, 0.006610418204218149, -0.01238434948027134, 0.012036718428134918, -0.016762325540184975, -0.011091597378253937, -0.021411888301372528, 0.02637649141252041, -0.005513208452612162, -0.009233945049345493, -0.013470696285367012, 0.003813076065853238, 0.00686570955440402, -0.008967789821326733, 0.007512085605412722, 0.007441473193466663, -0.01838098280131817, 0.00578479515388608, 0.015838932245969772, -0.004111821297556162, -0.018804658204317093, 0.005206315312534571, -0.00678423373028636, 0.005670728627592325, -0.003297061426565051, -0.0022229363676160574, 0.012145353481173515, 0.0008914830978028476, -0.015393529087305069, -0.012862342409789562, 0.0015426119789481163, 0.004546360112726688, -0.011015553027391434, -0.01948905549943447, 0.015339212492108345, -0.012112762778997421, -0.014165958389639854, -0.007571835070848465, -0.005439879838377237, 0.001981224399060011, -0.025007694959640503, -0.02348680980503559, -0.004606109112501144, 0.004318227060139179, 0.01234089583158493, -0.01193894725292921, -0.020303815603256226, 0.0072567942552268505, -0.01689268834888935, 0.010863464325666428, 0.009798845276236534, 0.028918543830513954, 7.723244198132306e-05, 0.01037460844963789, 0.014535315334796906, 0.0034084119834005833, 0.00547518627718091, 0.009364306926727295, -0.0004457415489014238, -0.02190074510872364, 0.018945882096886635, 0.002596368081867695, 0.011482682079076767, 0.00828339159488678, -0.03215585649013519, -0.014687404036521912, 0.007914033718407154, 0.016143107786774635, 0.006735348142683506, 0.02169433981180191, 0.012873205356299877, 0.0034111279528588057, -0.014383227564394474, 0.015817204490303993, 0.006941753905266523, 0.007044957019388676, -0.007044957019388676, -0.03393746539950371, 0.03026561252772808, -0.024985969066619873, -0.023704079911112785, -0.006518078967928886, 0.006615850143134594, -0.009635892696678638, -0.017109956592321396, 0.007615288719534874, 0.004079231061041355, 0.024442795664072037, 0.000870435091201216, -0.02192247100174427, -0.01709909364581108, 0.01661023683845997, -0.01012474950402975, -0.03534971550107002, -0.010195361450314522, -0.010879759676754475, -0.014578769914805889, 0.009521827101707458, -0.01934782974421978, 0.017892125993967056, 0.012373486533761024, -0.002005667192861438, -0.02235701121389866, 0.02557259611785412, 0.026180949062108994, 0.013818327337503433, 0.009103583171963692, -0.014535315334796906, 0.003929858561605215, 0.0031585523393005133, 0.00706668384373188, 0.009728232398629189, 0.020944759249687195, -0.0004644131113309413, 0.0035251942463219166, 0.003337799571454525, -0.01712081953883171, -0.013307744637131691, 0.005991200916469097, 0.0017639551078900695, 0.009510963223874569, -0.00819105189293623, -0.009532690048217773, -0.0006501104799099267, 0.01312306523323059, -0.0024089731741696596, 0.006018359214067459, -0.00378320156596601, 0.008696203120052814, 0.004880411550402641, 0.03660987690091133, -0.016045337542891502, 0.00695804925635457, -0.007321975193917751, 0.007604425307363272, 0.005431732162833214, 0.003932574298232794, -0.009304557926952839, 0.010836306028068066, 0.011982401832938194, -0.0199887752532959, 0.007805399131029844, -0.001378981047309935, -0.0032454601023346186, -0.039238832890987396, 0.0029494306072592735, -0.011667361482977867, -0.0093860337510705, 0.010738534852862358, -0.004717459436506033, 0.015274031087756157, 0.009233945049345493, -0.004478463437408209, -0.014144230633974075, -0.020694900304079056, -0.008598431944847107, -0.020206043496727943, 0.014491861686110497, -0.0037913492415100336, 0.003421991365030408, -0.012590755708515644, -0.0015589072136208415, 0.00029195559909567237, 0.00829425547271967, -0.0031667000148445368, -0.008935200050473213, -0.004869548138231039, 0.023812714964151382, 0.005442595575004816, 0.0009804277215152979, 0.016621101647615433, -0.002756604226306081, 0.0073328386060893536, 0.014100776985287666, 0.00955984927713871, 0.0010890623088926077, 0.024051710963249207, -0.011200232431292534, -0.007278521545231342, 0.024899061769247055, 0.0031884268391877413, -0.004429577849805355, 0.004790788050740957, 0.019847549498081207, 0.004994478076696396, 0.0063334000296890736, -0.03552353009581566, 0.004456736147403717, -0.0035306259524077177, -0.013872643932700157, -0.032068949192762375, -0.011667361482977867], "55820e72-350c-4d01-97be-cdc60036974a": [-0.026626218110322952, -0.014422534964978695, -0.007259737700223923, 0.02903895080089569, -0.055148154497146606, -0.03666490688920021, -0.009968675673007965, -0.001390821416862309, 0.019991206005215645, 0.031817901879549026, 0.029857555404305458, 0.0026523892302066088, 0.02688472531735897, 0.004604655783623457, 0.017923150211572647, -0.010566473007202148, 0.008902333676815033, 0.026755472645163536, 0.009828650392591953, -0.010760352946817875, 0.036040183156728745, -0.023028664290905, -0.0021542247850447893, 0.0031290114857256413, 0.008482260629534721, -0.02004506252706051, 0.0037268090527504683, -0.008756923489272594, -0.030913125723600388, -0.022188516333699226, 0.009656312875449657, -0.006354963406920433, 0.006812735926359892, 0.013485447503626347, 0.029275914654135704, -0.029383625835180283, -0.018063174560666084, -0.018472477793693542, 0.03772047534584999, 0.006139540579169989, -0.01616745814681053, 0.04713444039225578, -0.00751285906881094, 0.023502591997385025, 0.007663654629141092, -0.019377252086997032, -0.03672953322529793, -0.030374569818377495, 0.019194142892956734, -0.006408818997442722, 0.004558878485113382, 0.015499647706747055, -0.001400246168486774, -0.0053370920941233635, 0.04743603244423866, 0.0026900882367044687, 0.0015025718603283167, 0.08466103672981262, 0.0010333546670153737, -0.06350655108690262, -0.005811021663248539, -0.02337333932518959, -0.0008973692893050611, 0.0017274190904572606, 0.013862436637282372, 0.012731468304991722, -0.003554471069946885, 0.0169968344271183, -0.01721225678920746, -0.00862767081707716, 0.011891321279108524, 0.022382395341992378, -0.03688032925128937, 0.04129648953676224, 0.029017409309744835, -0.013000747188925743, -0.022339312359690666, 0.0017153015360236168, 0.01918337121605873, -0.009020816534757614, 0.009677855297923088, -0.005442110355943441, 0.050882790237665176, 0.031731732189655304, 0.02979292906820774, 0.008369163610041142, 0.00843917578458786, -0.03354128077626228, -0.006123383995145559, -0.05402795970439911, -0.0019401487661525607, 0.03828057646751404, -0.01982964016497135, -0.01929108239710331, -0.0264323391020298, 0.007243581116199493, -0.024256572127342224, -0.00932240765541792, 0.023696472868323326, 0.025807613506913185, 0.011341993696987629, 0.019000263884663582, 0.003955695312470198, 0.03532928600907326, 0.00010973082680720836, -0.026109205558896065, -0.0001401929184794426, 0.03862525150179863, -0.005213223863393068, 0.017696956172585487, 0.02106831967830658, -0.061481576412916183, -0.02242548018693924, -0.012386792339384556, -0.03526465967297554, 0.0015146892983466387, -0.04388155788183212, 0.009010045789182186, -0.0053424774669110775, -0.019474191591143608, 0.0071627977304160595, -0.03110700659453869, 0.021962322294712067, -0.016824495047330856, 0.005735623650252819, 0.023545676842331886, -0.017298424616456032, 0.02352413535118103, 0.03024531714618206, 0.029362084344029427, 0.007146640680730343, -0.06716872751712799, -0.013797810301184654, -0.02888815477490425, 0.005232073366641998, 0.02046513557434082, 0.012225225567817688, 0.0630326196551323, 0.008541501127183437, 0.03420909121632576, -0.005242844577878714, -0.00013421830954030156, -0.005897190421819687, -0.003072463208809495, -0.000437576905824244, -0.0035625493619590998, -0.026023035869002342, 0.03009452112019062, -0.02152070589363575, -0.010351050645112991, -0.03597555309534073, 0.003368668956682086, -0.03838828578591347, 0.011665127240121365, 0.06695330888032913, -0.02046513557434082, 0.014519475400447845, 0.04601424187421799, 0.01996966451406479, 0.06807350367307663, 0.02718631736934185, -0.04127494618296623, -0.00846071820706129, 0.011999032460153103, 0.043364547193050385, 0.031236259266734123, 0.04467862471938133, 0.01219291239976883, -0.011665127240121365, 0.008067571558058262, 0.039357688277959824, -0.011126571334898472, 0.025656817480921745, -0.003015914699062705, 0.029512880370020866, -0.03095621056854725, 0.030826957896351814, 0.005210531409829855, 0.038905300199985504, -0.02914666198194027, 0.02869427390396595, -0.040154751390218735, 0.020960606634616852, -0.003947617020457983, -0.05807790160179138, 0.01710454560816288, 0.01936648041009903, 0.05191681906580925, -0.010803437791764736, 0.020928293466567993, -0.023351797834038734, -0.01808471791446209, 0.005487887654453516, 0.009155455976724625, -0.03427371755242348, -0.05924118310213089, 0.028026465326547623, 0.017007604241371155, 0.004890090320259333, 0.03304580971598625, 0.011815923266112804, -0.037591222673654556, 0.01419634185731411, 0.03838828578591347, -0.021531477570533752, 0.02869427390396595, -0.014239425770938396, -0.04816846549510956, -0.004628890659660101, 0.0018539797747507691, -0.0011201968882232904, -0.015424249693751335, 0.014928777702152729, 0.01975424215197563, 0.010711883194744587, 0.007868305779993534, -0.0014837223570793867, -0.0005924118449911475, -0.010857293382287025, -0.021994635462760925, 0.011546645313501358, -0.02393343858420849, 0.02223159931600094, -0.030072977766394615, -0.0407794751226902, 0.024019606411457062, -0.018106259405612946, 0.016221312806010246, -0.024945924058556557, -0.021316055208444595, 0.015715070068836212, -0.040111664682626724, 0.05441571772098541, -0.01645827852189541, -0.0041549610905349255, 0.029534421861171722, 0.029017409309744835, -0.0013369658263400197, -0.027057064697146416, -0.00229424936696887, 0.018741756677627563, 0.0024706264957785606, -0.018601730465888977, -0.021725356578826904, 0.0020545918960124254, -0.01895717903971672, 0.0013921677600592375, 0.013927063904702663, -0.006936604157090187, 0.009661698713898659, -0.025958409532904625, 0.02242548018693924, 0.00030074999085627496, 0.015908950939774513, -0.005536357872188091, 0.004892783239483833, 0.0320979505777359, -0.02880198508501053, -8.53274977998808e-05, 0.02468741685152054, -0.00841763336211443, -0.03601863980293274, -0.031279344111680984, -0.012720697559416294, 0.04515255242586136, -0.05006418377161026, 0.013453134335577488, -0.017610788345336914, 0.005563285667449236, 0.024450451135635376, 0.009370878338813782, -0.008072957396507263, 0.00929009448736906, 0.042761363089084625, -0.010792666114866734, 0.0003064721531700343, -0.005859491415321827, 0.019775783643126488, 0.01929108239710331, 0.03931460157036781, 0.014519475400447845, -0.008767695166170597, 0.023394880816340446, 0.017643101513385773, 0.02703552134335041, 0.006171854212880135, -0.009812493808567524, -0.019797326996922493, 0.005541743244975805, 0.0009889238281175494, -0.00034703215351328254, 0.009263167157769203, -0.0047554513439536095, 0.017018375918269157, -0.011848236434161663, -0.0074967024847865105, 0.00427613640204072, -0.010501845739781857, -0.005660225637257099, -0.01751384697854519, 0.0021205651573836803, -0.019840409979224205, 0.007227424066513777, -0.03705266863107681, 0.06738415360450745, -0.0018903323216363788, 0.029405169188976288, 0.029426710680127144, 0.013765496201813221, 0.0713479295372963, 0.005929504055529833, -0.04233051836490631, -0.025355225428938866, -0.027875669300556183, -0.009904048405587673, 0.04541105777025223, -0.0490732416510582, -0.04028400406241417, -0.019129516556859016, -0.036794159561395645, -0.01115888450294733, 0.0008441868703812361, -0.058120984584093094, 0.03873296082019806, 0.012354479171335697, -0.051184382289648056, 0.01623208448290825, -0.017244569957256317, -0.014756440185010433, 0.023265628144145012, -0.048039212822914124, 0.02111140266060829, -0.007976016961038113, 0.020228171721100807, -0.002753368578851223, -0.025096720084547997, -0.06367888301610947, -0.048685479909181595, 0.03457530960440636, 0.007728281430900097, -0.02738019824028015, -0.012472962029278278, 0.019226456061005592, -0.022005407139658928, 0.009279323741793633, -0.02277015708386898, -0.033131979405879974, -0.025549106299877167, 0.011482018046081066, 0.008482260629534721, 0.0005587520427070558, 0.021057548001408577, 0.006085684988647699, -0.005913347005844116, 0.007308207917958498, 0.0021367217414081097, -0.0355016253888607, -0.012925349175930023, -0.0010649949545040727, 0.022382395341992378, -0.01039952039718628, -0.038043610751628876, -0.02492438070476055, -0.0140670882537961, 0.0037483512423932552, 0.004968180786818266, 0.030309943482279778, 0.01609206013381481, -0.0056763822212815285, 0.014648729003965855, -0.020605159923434258, 0.006855820305645466, -0.03024531714618206, -0.04463553801178932, 0.008525344543159008, -0.006613470148295164, 0.057000789791345596, 0.0008435136405751109, -0.023696472868323326, -0.001981886802241206, -0.026109205558896065, 0.009704782627522945, -0.035889387130737305, 0.00758825708180666, 0.023244086652994156, 2.2194406483322382e-05, 0.02352413535118103, 0.02423502877354622, -0.008767695166170597, -0.007631341461092234, -0.013905521482229233, -0.006807350553572178, -0.0018216663738712668, 0.003215180477127433, -0.007372834254056215, -0.03151630982756615, 0.00564406905323267, -0.028758902102708817, 0.01311922911554575, -0.01880638301372528, -0.015639672055840492, 0.015865866094827652, 0.017653873190283775, 0.01691066473722458, 0.040564052760601044, -0.02738019824028015, 0.011578958481550217, 0.011665127240121365, -0.000622032443061471, 0.031882528215646744, 0.017395365983247757, 0.009133913554251194, 0.009817879647016525, 0.03502769395709038, 0.029125120490789413, -0.0047500659711658955, 0.003538314253091812, 0.045971158891916275, -0.007561329286545515, 0.025269057601690292, 0.022899409756064415, 0.02442890964448452, 0.018117031082510948, 0.006855820305645466, -0.01733073964715004, 0.004534643143415451, -0.02613074705004692, 0.015435020439326763, -0.02216697297990322, 0.02155301906168461, 0.045669566839933395, 0.031063921749591827, 0.003347126767039299, 0.0047123669646680355, -0.029318999499082565, 0.007857535034418106, 0.004510408267378807, -0.017696956172585487, 0.02129451185464859, -0.01296843308955431, -0.0029270530212670565, 0.015338080935180187, 0.02050822041928768, -0.008482260629534721, -0.028823528438806534, 0.0072058821097016335, -0.029706761240959167, 0.0005604350590147078, 0.015941264107823372, 0.011632814072072506, 0.007044315338134766, 0.009898663498461246, -0.05803481861948967, -0.017384594306349754, -0.004957410041242838, 0.02307174727320671, -0.0022148124407976866, 0.010038687847554684, 0.013022288680076599, -0.03608326613903046, -0.011105028912425041, -0.005153982900083065, 0.03968081995844841, -0.014584101736545563, 0.016264397650957108, -0.025807613506913185, -0.019948121160268784, -0.038905300199985504, 0.0005139845889061689, 0.021811526268720627, -0.031882528215646744, -0.006381891202181578, -0.043623052537441254, 0.018450936302542686, -0.014088630676269531, -0.02072364278137684, -0.007561329286545515, 0.01737382262945175, 0.01389474980533123, -0.018720213323831558, 0.04058559611439705, -0.02647542394697666, -0.03942231461405754, -0.0132161695510149, -0.01853710412979126, 0.018741756677627563, -0.042459771037101746, -0.014810295775532722, 0.005881033837795258, -0.014476390555500984, -0.009774794802069664, 0.014691812917590141, -0.017093773931264877, 0.004200738389045, 0.02578607201576233, 0.01015716977417469, 0.033433567732572556, -0.01204211637377739, -0.02854347974061966, -0.020788269117474556, 0.023287169635295868, 0.01766464300453663, -0.029836013913154602, 0.013959377072751522, 0.0068773627281188965, 0.0009640156058594584, -0.03535082936286926, 0.020594390109181404, -0.0028516550082713366, 0.014702584594488144, -0.03319660574197769, 0.012429877184331417, -0.030439196154475212, 0.01677064038813114, 0.014648729003965855, -0.014347136951982975, -0.03455376625061035, -5.9072885051136836e-05, 0.03961619362235069, -0.012537588365375996, -0.009737095795571804, -0.026346169412136078, 0.010997317731380463, 0.00211921869777143, -0.01793392188847065, 0.00518091069534421, -0.0351138636469841, -0.004841620102524757, 0.008767695166170597, -0.025269057601690292, -0.00855227280408144, -0.02034665271639824, -0.030870040878653526, 0.008891562931239605, 0.00751285906881094, -0.01039952039718628, 0.0077929082326591015, -0.0032367228996008635, 0.02019585855305195, -0.001296574017032981, -0.007717510219663382, 0.014918006956577301, 0.02147762104868889, -0.005552514456212521, 0.024945924058556557, 0.025742987170815468, 0.029663676396012306, 0.03690187260508537, -0.021930009126663208, 0.010776509530842304, -0.03319660574197769, -0.01136353611946106, -0.040305547416210175, -0.023588761687278748, 0.006091070827096701, -0.02688472531735897, 0.01653367467224598, 0.007157411891967058, -0.004014936741441488, -0.037246547639369965, 0.02317945845425129, 0.015596588142216206, 0.018192429095506668, 0.003928767517209053, -0.0169860627502203, -0.029965266585350037, -0.01993735134601593, 0.014681042172014713, -0.019851181656122208, 0.014260968193411827, 0.009058515541255474, 0.020249713212251663, 0.042869072407484055, 0.005188988987356424, 0.003810285124927759, 0.008089113980531693, 0.003322891891002655, 0.02072364278137684, 0.019388023763895035, -0.015370394103229046, 0.014734897762537003, -0.010092543438076973, -0.006150311790406704, -0.008503802120685577, 0.011535873636603355, 0.013366964645683765, -0.039249975234270096, 0.00013893067080061883, -0.007857535034418106, -0.0026968203019350767, 0.009171612560749054, 0.028629647567868233, 0.014670271426439285, -0.008821550756692886, 0.01394860539585352, 0.0392715185880661, -0.017944693565368652, -0.0034332957584410906, -0.003479073056951165, 0.02858656272292137, 0.031774815171957016, -0.014131714589893818, 0.015187284909188747, -0.014207112602889538, -0.033735159784555435, -0.012742239981889725, 0.0074159190990030766, 0.03115009143948555, 0.002412731759250164, 0.02242548018693924, -0.01808471791446209, 0.019926579669117928, -0.01668447069823742, -0.018149344250559807, 0.008670754730701447, -0.007189725525677204, -0.015338080935180187, 0.003858755109831691, -0.01208520121872425, 0.02423502877354622, -0.006635012570768595, -0.03199023753404617, 0.02529059909284115, -0.03787127137184143, 0.008988503366708755, -0.013302338309586048, -0.0024275421164929867, -0.021768441423773766, -0.011891321279108524, 0.03675107657909393, 0.007830607704818249, -0.017384594306349754, -0.009834036231040955, -0.01306537352502346, 0.01990503817796707, -0.02102523483335972, -0.023265628144145012, 0.008277609013020992, 0.0032609577756375074, 0.0005462979315780103, 0.011051173321902752, 0.015305767767131329, -0.014702584594488144, 0.01883869618177414, -0.01024872437119484, 0.045023299753665924, -0.015801239758729935, -0.013582387939095497, -0.0009195847087539732, 0.021757671609520912, -0.034381426870822906, 0.034187547862529755, -0.005493273492902517, 0.0068396637216210365, 0.02091752365231514, 0.0027304799295961857, -0.013528532348573208, 0.03655719384551048, -0.00707124313339591, 0.011331222951412201, 0.012817637994885445, -0.030913125723600388, 0.010167941451072693, 0.0007573446491733193, 0.019624987617135048, 0.0074643888510763645, -0.001143758767284453, 0.012052888050675392, 0.02118680067360401, 0.005934889428317547, 0.01782621070742607, -0.006818121764808893, -0.009360106661915779, -0.005557899829000235, 0.007340521086007357, 0.0024571625981479883, 0.0021178722381591797, -0.018784839659929276, -0.00379412854090333, -0.015876637771725655, -0.02895278111100197, -0.015219598077237606, -0.031085465103387833, 0.018709443509578705, -0.019021805375814438, -0.016662929207086563, -0.004906246904283762, 0.012946891598403454, -0.012419106438755989, -0.019043346866965294, -0.005229380913078785, -0.01876329816877842, -0.0016641386318951845, 0.018343225121498108, 0.012203684076666832, -0.004809306934475899, -0.0013840894680470228, 0.013183856382966042, 0.0490732416510582, -0.023114832118153572, -0.0020586310420185328, 0.00425728689879179, 0.03530774638056755, -0.02880198508501053, 0.02778949961066246, 0.020303569734096527, -0.004706981126219034, -0.020755955949425697, 0.002854347927495837, -0.004919711034744978, -0.015014947392046452, 0.007663654629141092, 0.007038929499685764, 0.023394880816340446, 0.014853380620479584, -0.006268794182687998, -0.024902839213609695, 0.0385175384581089, -0.02091752365231514, 0.031128548085689545, 0.000660741119645536, -0.0031990238931030035, 0.033929042518138885, -0.04528180509805679, -0.009764024056494236, 0.0171799436211586, -0.022059261798858643, 0.01525191217660904, -0.006236481014639139, -0.0016264397418126464, 0.0011195236584171653, -0.021305283531546593, 0.011482018046081066, -0.0025460245087742805, -0.01600589044392109, 0.012849951162934303, -0.00011536883539520204, -0.011686669662594795, 0.004655818454921246, -0.025096720084547997, 0.004655818454921246, 0.009957903996109962, 0.02114371582865715, -0.05501890182495117, 0.0025891088880598545, 0.008256066590547562, 0.021122174337506294, -0.0014150564093142748, -0.007119712885469198, 0.015004175715148449, 0.03485535830259323, -0.029362084344029427, 0.01691066473722458, 0.005425953771919012, -0.0034306030720472336, -0.011622043326497078, 0.02839268371462822, -0.006171854212880135, -0.018418623134493828, 0.06074913963675499, -0.006128769833594561, 0.013754725456237793, -0.04099489748477936, -0.020788269117474556, -0.028931239619851112, -0.0019239920657128096, 0.002212119521573186, 0.011675898917019367, 0.034446053206920624, -0.007405147887766361, 0.02522597275674343, 0.05092587321996689, 0.020637473091483116, 0.026626218110322952, 0.013614701107144356, 0.00614492641761899, 0.008390706032514572, 0.01562890037894249, -0.011126571334898472, 0.015348851680755615, -0.0169860627502203, -0.0370095819234848, 0.024191943928599358, -0.03847445547580719, 0.014584101736545563, -0.018881781026721, 0.019549589604139328, -0.005159368272870779, -0.01228985283523798, -0.004591191653162241, -0.013334651477634907, -0.023890353739261627, -0.018860237672924995, -0.005832563620060682, 0.011611271649599075, -0.02242548018693924, 0.00260122655890882, -0.007825221866369247, -0.012925349175930023, 0.011643584817647934, 0.006338806357234716, -0.008659983985126019, 0.05734546482563019, 0.017503077164292336, -0.014433306641876698, 0.005350555758923292, 0.007270508911460638, -0.0296421330422163, -0.026367712765932083, -0.009166226722300053, 0.008374549448490143, 0.03410137817263603, -0.017761584371328354, 0.011891321279108524, -0.03703112527728081, 0.013603929430246353, -0.018860237672924995, 0.004987030290067196, 0.03705266863107681, -0.039056096225976944, -0.022511649876832962, -0.011191197670996189, 0.00707124313339591, 0.01574738323688507, -0.016318252310156822, -0.00951628852635622, 0.03386441245675087, -0.02046513557434082, 0.02167150191962719, 0.012602215632796288, -0.0022323154844343662, -0.02367493137717247, -0.0008441868703812361, 0.012946891598403454, -0.047479115426540375, 0.013173084706068039, -1.3821540051139891e-05, 0.005870262626558542, -0.026496965438127518, 0.01506880298256874, -0.02341642417013645, -0.0449371300637722, 0.0369880385696888, -0.01721225678920746, 0.016361337155103683, 0.01593049243092537, 0.015553503297269344, 0.02438582479953766, 0.011266595683991909, 0.05687153711915016, 0.01778312586247921, -0.027961838990449905, -0.01291457749903202, 0.017298424616456032, -0.016415193676948547, 0.020109688863158226, -0.05618218332529068, 0.024191943928599358, -0.011148113757371902, 0.0011074062203988433, 0.04976259171962738, -0.006053371820598841, 0.006268794182687998, 0.024752043187618256, -0.020594390109181404, -0.004580420441925526, 0.022748613730072975, 0.012332936748862267, 0.030913125723600388, 0.0434076301753521, 0.012419106438755989, -0.009058515541255474, 0.022942494601011276, 0.0019401487661525607, -0.03345511108636856, 0.0207667276263237, 0.010431833565235138, 0.028177261352539062, -0.003225951688364148, 0.009758638218045235, -0.012796095572412014, 0.02457970567047596, 0.02703552134335041, -0.010771123692393303, -0.022533191367983818, -0.013302338309586048, -0.004278828855603933, 0.01497186254709959, 0.01684603840112686, 0.008789237588644028, -0.0006556921871379018, -0.009963289834558964, -0.0071735684759914875, 0.0065434579737484455, -0.03502769395709038, 0.0071735684759914875, 0.006731952540576458, -0.0046261977404356, -0.002384457504376769, 0.03756967931985855, 0.016264397650957108, -0.04037017375230789, -0.03145168349146843, -0.01971115730702877, -0.0009027548367157578, -0.03354128077626228, 0.018170885741710663, -0.008923876099288464, -0.008229139260947704, 0.02012046054005623, 0.019721928983926773, -0.004811999853700399, -0.03110700659453869, 0.004798535723239183, 0.06815967708826065, 0.01115888450294733, 0.012128286063671112, -0.015208827331662178, 0.0026523892302066088, -0.015262682922184467, 0.026152288541197777, -0.003998779691755772, 0.02393343858420849, -0.009715554304420948, -0.028780443593859673, 0.023804184049367905, -0.03367053344845772, -0.02578607201576233, -0.012386792339384556, 0.03289501368999481, -0.009645541198551655, 0.007981402799487114, -0.017115315422415733, -0.029362084344029427, 0.005442110355943441, -0.005805635824799538, -0.019495734944939613, -0.01691066473722458, 0.015499647706747055, 0.0032017165794968605, -0.012839180417358875, -0.013733183033764362, -0.0026927809230983257, 0.012182141654193401, -0.02854347974061966, -0.019431108608841896, 0.017869295552372932, 0.01842939294874668, 0.011869778856635094, 0.007604413665831089, 0.0047366018407046795, 0.03552316874265671, 0.004828156437724829, 0.009020816534757614, 0.01504726056009531, -0.011902092024683952, 0.01766464300453663, -0.025312142446637154, -0.018364766612648964, -0.019808096811175346, 0.017169171944260597, -0.016867579892277718, -0.004082255996763706, 0.0013881286140531301, 0.015144200064241886, 0.03336894139647484, -0.008843093179166317, 0.001547002699226141, 0.01323771197348833, -0.017223026603460312, 0.03024531714618206, 0.004806614015251398, 0.028026465326547623, 0.02352413535118103, 0.014530246146023273, -0.009349335916340351, -0.012623757123947144, -0.015908950939774513, -0.03825903311371803, -0.022447023540735245, 0.02216697297990322, 0.002897432306781411, -0.027315570041537285, -0.027767958119511604, -0.0019024497596547008, 0.03556625172495842, -0.006769651547074318, 0.014411764219403267, -0.0062580229714512825, 0.03451068326830864, 0.000218788452912122, 0.002691434696316719, 0.010006374679505825, -0.0020438209176063538, -0.004908939823508263, -0.02563527598977089, -0.017395365983247757, 0.0032528794836252928, -0.005469038151204586, -0.02004506252706051, -0.012526817619800568, 0.016436735168099403, 0.0017933921189978719, 0.013883979059755802, -0.01519805658608675, -0.015488876961171627, 0.010684954933822155, 0.024558162316679955, -0.0055848280899226665, -0.013129999861121178, -0.012957662343978882, 0.008724610321223736, -7.005438237683848e-05, -0.01853710412979126, 0.022899409756064415, 0.0169968344271183, 0.023308712989091873, 0.008428405039012432, -0.012419106438755989, 0.01683526672422886, -0.02733711339533329, -0.01032412238419056, 0.011697440408170223, -0.02194077894091606, -0.01517651416361332, 0.02552756480872631, 0.020249713212251663, -0.007302822079509497, 0.032377999275922775, 0.008164511993527412, -0.0002208080404670909, -0.011740525253117085, -0.0074590034782886505, -0.024644332006573677, 0.008923876099288464, -0.009925590828061104, 0.016318252310156822, -0.046574339270591736, -0.0019859259482473135, -0.01925876922905445, -0.004472709260880947, 0.004453859757632017, -0.0038399058394134045, 0.003234029980376363, 0.01097038947045803, 0.0014137100661173463, 0.010668798349797726, -0.002613343996927142, -0.017718499526381493, 0.028457310050725937, -0.0030266859102994204, 0.008848478086292744, -0.00520245311781764, -0.00021508587815333158, -0.0025675666984170675, 0.013259253464639187, -0.014788753353059292, -0.009887891821563244, -0.008234524168074131, 0.04058559611439705, -0.001909181708469987, -0.005617141257971525, 0.03748351335525513, -0.028780443593859673, 0.003554471069946885, -0.016027431935071945, -0.01683526672422886, -0.005285928957164288, 0.005703310016542673, -0.004658511374145746, -0.009263167157769203, 0.0031370900105684996, 0.015413478948175907, 0.011611271649599075, -0.00421958789229393, 0.00832607876509428, 0.0006816101958975196, -0.003559856442734599, -0.003094005398452282, -0.0031047766096889973, -0.014454848133027554, -0.011105028912425041, 0.0056709968484938145, -0.017492305487394333, 0.0065811569802463055, 0.02507517673075199, 0.02593686617910862, -0.007254352327436209, -0.02171458676457405, 0.0011208701180294156, -0.015865866094827652, -0.0077875228598713875, 0.023588761687278748, -0.011374306865036488, -0.002900125226005912, -0.003810285124927759, -0.014777982607483864, 0.051442887634038925, 0.01421788427978754, 0.002840884029865265, 0.010641871020197868, 0.011794380843639374, -0.0008145662723109126, -0.0012454112293198705, -0.013808581046760082, -0.0094408905133605, 0.01409940142184496, 0.013819352723658085, 7.472467405023053e-05, -0.03115009143948555, 0.02337333932518959, 0.016964521259069443, -0.003134397091343999, -0.001231274101883173, -0.002537946216762066, -0.014207112602889538, 0.00553097203373909, -0.021456079557538033, -0.02132682502269745, 0.016393650323152542, 0.007615184877067804, -0.004198045469820499, 0.0023454122710973024, 0.013733183033764362, -0.018375538289546967, -0.013862436637282372, 0.007555943448096514, -0.003500615246593952, 0.009672469459474087, 0.0025392924435436726, 0.007442846894264221, 0.002280785469338298, 0.01327002514153719, 0.00645728874951601, -0.03244262561202049, 0.016641385853290558, 0.019420336931943893, 0.01707223244011402, -0.005393640603870153, -0.0032905784901231527, -0.02069132961332798, -0.020971378311514854, 0.006026444025337696, 0.006015672814100981, 0.011945176869630814, -0.018440164625644684, -0.00703354412689805, -0.0009222775115631521, 0.021908465772867203, -0.00940319150686264, -0.010728039778769016, 0.006758880335837603, 0.01876329816877842, 0.021736128255724907, 0.006715795956552029, -0.01856941729784012, 0.017836982384324074, -0.004381154663860798, 0.03517848998308182, -0.012149827554821968, -0.03981007635593414, 0.02132682502269745, 0.004515793640166521, 0.0007802332984283566, -0.014573330990970135, 0.009677855297923088, -0.0033175062853842974, 0.025161346420645714, 0.021079089492559433, -0.029857555404305458, 0.011105028912425041, -0.007954475469887257, 0.011708212085068226, -0.005057042930275202, -0.01417479943484068, 0.014282510615885258, -0.01975424215197563, 0.0013389853993430734, -0.01933416724205017, -0.006990459747612476, -0.0031263187993317842, -0.00036958418786525726, 0.00258237705565989, -0.026561591774225235, 0.005816407036036253, -0.00743746105581522, -0.014788753353059292, -0.03270113468170166, -0.0009653620072640479, 0.03351973742246628, 0.042201265692710876, 0.018666358664631844, -0.020777499303221703, -0.02201617695391178, 0.018978720530867577, 0.006064143031835556, 0.00951628852635622, -0.017438450828194618, -0.014541017822921276, 0.009360106661915779, 0.00930625107139349, -0.0031451683025807142, -0.03201178088784218, -0.02141299471259117, -0.01936648041009903, -0.01042106281965971, -0.00015651789726689458, -0.008746152743697166, 0.01226831041276455, -0.015144200064241886, 0.026303084567189217, 0.009790951386094093, -0.012537588365375996, -0.031925611197948456, -0.015553503297269344, 0.02121911384165287, -0.03545854240655899, -0.03110700659453869, 0.015381164848804474, -0.006344192195683718, 0.003616404952481389, 0.0009296826319769025, 0.0030482280999422073, 0.002916281810030341, 0.004082255996763706, 0.014681042172014713, -0.011622043326497078, 0.011223511770367622, -0.01567198522388935, -0.005310164298862219, 0.011589729227125645, -0.01775081269443035, 0.030913125723600388, -0.0065003735944628716, 0.01707223244011402, -0.003837212920188904, 0.0037268090527504683, -0.03216257691383362, -0.00599413039162755, 0.008945418521761894, 0.017039919272065163, -0.015790468081831932, 0.027401739731431007, 0.010722653940320015, -0.01211751438677311, 0.016490591689944267, -0.024644332006573677, 0.011837465688586235, 0.0007990827434696257, 0.02673392929136753, 0.0132161695510149, -0.003500615246593952, -0.003597555449232459, 0.007405147887766361, -0.0068342783488333225, 0.024364283308386803, -0.010636485181748867, 0.026066120713949203, -0.012946891598403454, -0.005506737157702446, -0.015639672055840492, -0.009860964491963387, -0.020292798057198524, -0.0005304778460413218, -0.00751285906881094, -0.034876901656389236, -0.007076628506183624, -0.026927810162305832, -0.00762595608830452, 0.0005439417436718941, -0.008002945221960545, -0.01495032012462616, -0.017880065366625786, 0.007329749874770641, -0.02613074705004692, 0.005881033837795258, -0.0010239300318062305, -0.018924865871667862, -0.026044577360153198, -0.0017072231275960803, 0.01017332635819912, 0.050236523151397705, 0.014013232663273811, -0.0115143321454525, -0.0020842126104980707, -0.0030293785966932774, 0.02088521048426628, 0.017772354185581207, -0.016555218026041985, -0.010658027604222298, 0.0011538566322997212, -0.02763870544731617, -0.01489646453410387, -0.018192429095506668, 0.004593884572386742, 0.015241140499711037, -0.02809109166264534, -0.01389474980533123, -0.0007102210074663162, 0.03420909121632576, -0.023157916963100433, 0.03265804797410965, -0.005929504055529833, 0.0026375791057944298, -0.008832321502268314, 0.001331580220721662, -0.005358634050935507, -0.0020424744579941034, 0.0044511668384075165, -0.029663676396012306, -0.030439196154475212, 0.007642112672328949, -0.0027358655352145433, 0.021434536203742027, -0.014584101736545563, 0.010792666114866734, 0.0013012863928452134, -0.025549106299877167, -0.021240657195448875, -0.005234766285866499, 0.017266111448407173, 0.007577485870569944, 0.0044888658449053764, 0.026712387800216675, -0.004795842804014683, 0.030288400128483772, -0.0077498238533735275, 0.014788753353059292, 0.0011612618109211326, 0.00556867104023695, -0.0021259505301713943, 0.014131714589893818, -0.025915324687957764, 0.018267827108502388, 0.014325595460832119, 0.033929042518138885, -0.017869295552372932, 0.0038048995193094015, -0.005450188647955656, -0.018213970586657524, -0.02819880284368992, -0.009031587280333042, -7.946860023366753e-06, 0.008907719515264034, 0.009225468151271343, 0.0011477979132905602, 0.005563285667449236, 0.013248482719063759, 0.03642794117331505, -0.005191681906580925, -0.0025164037942886353, 0.010884220711886883, 0.013862436637282372, 0.01304383110255003, 0.01710454560816288, -0.014551788568496704, -0.02079904079437256, -0.005730237811803818, 0.003266343381255865, 0.02382572740316391, -0.03089158423244953, -0.015391936525702477, -0.05527741089463234, -0.022447023540735245, 0.0010798051953315735, 0.016393650323152542, 0.009871735237538815, 0.012429877184331417, 0.01517651416361332, 0.01790160872042179, 0.0030455354135483503, 0.02647542394697666, 0.0050516570918262005, -0.0012083854526281357, -0.006403433158993721, -0.007706739474087954, 0.0022269298788160086, -0.013636243529617786, 0.011395849287509918, 0.00011309680121485144, 0.013636243529617786, 0.02513980306684971, -0.014702584594488144, -0.00042209343519061804, -0.008487645536661148, 0.008412247523665428, -0.013334651477634907, 0.0067911939695477486, 0.013582387939095497, 0.024752043187618256, -0.009015430696308613, 0.006042600609362125, 0.008051414974033833, -0.012785323895514011, -0.020960606634616852, -0.015338080935180187, -0.02371801622211933, -0.028780443593859673, -0.007518244441598654, 0.014702584594488144, 0.01858018897473812, -0.02144530788064003, 0.019323397427797318, 0.018181657418608665, -0.009295480325818062, 0.002265975344926119, -0.001456794561818242, -0.014207112602889538, 0.002715669572353363, -0.01672755554318428, -0.011665127240121365, -0.0075505580753088, 0.008369163610041142, -0.013765496201813221, 0.004981644917279482, 0.000846879614982754, -0.03255033865571022, -0.0006684829131700099, 0.005520201288163662, -0.015004175715148449, -0.00866536982357502, -0.003931460436433554, -0.006392661947757006, -0.004203431308269501, -0.0035867842379957438, 0.00934395007789135, -0.013205397874116898, 0.000884578563272953, 0.003982623107731342, 0.0029701374005526304, 0.02427811361849308, -0.01123428251594305, 0.015682756900787354, -0.028263429179787636, -0.0026402717921882868, -0.021736128255724907, 0.009058515541255474, -0.016038203611969948, 0.023028664290905, 0.0003541007172316313, 0.014508704654872417, -0.022102346643805504, 0.012860721908509731, -0.008659983985126019, -0.0034144462551921606, -0.01314077153801918, -0.019851181656122208, -0.0009337218361906707, -0.0065003735944628716, -0.017438450828194618, -0.022490106523036957, -0.02608766220510006, -0.03351973742246628, -0.009510902687907219, 0.04254594072699547, 0.003694495651870966, -0.03817286342382431, -0.03270113468170166, -0.020852895453572273, 0.018634045496582985, -0.021983863785862923, -0.012462190352380276, 0.009796337224543095, -0.018924865871667862, -0.003985316026955843, -0.0010777856223285198, -0.00957014411687851, -0.00846071820706129, 0.005097434390336275, 0.003909918013960123, 0.007943703792989254, 0.03414446488022804, -0.010997317731380463, 0.008735381998121738, -0.02031433954834938, 0.015284225344657898, -0.019926579669117928, -0.01835399493575096, -0.04009012505412102, -0.014411764219403267, -0.011805151589214802, 0.008056800812482834, -0.033778246492147446, 0.00945704709738493, 0.008072957396507263, 0.017244569957256317, 0.006371119990944862, -0.006688868161290884, -0.014056316576898098, 0.008886177092790604, 0.009742481634020805, -0.0026806634850800037, 0.0005277851014398038, 0.004020322114229202, -0.009677855297923088, -0.026023035869002342, 0.021736128255724907, 0.03651411086320877, 0.0034198318608105183, -0.00015845333109609783, 0.007103556301444769, -0.016296710819005966, 0.016673700883984566, 0.03110700659453869, -0.04101644083857536, -0.023265628144145012, 0.008805394172668457, 0.0014083244604989886, -0.001809548819437623, -0.005423260852694511, -0.002341373125091195, -0.0025958409532904625, -0.008309922181069851, -0.00842301920056343, -0.011417391709983349, 0.026518506929278374, -0.011255824938416481, 0.005094741936773062, -0.007345906458795071, 0.006699639372527599, 0.02333025448024273, 0.007076628506183624, -0.0037402729503810406, 0.030934669077396393, -0.027164775878190994, -0.011622043326497078, -0.004496944136917591, -0.027401739731431007, 0.005767936818301678, -0.025161346420645714, 0.01766464300453663, 0.013808581046760082, 0.013248482719063759, -0.013851665891706944, -0.003164017805829644, 0.011277367360889912, -0.0036217905580997467, 0.0053747911006212234, -0.012203684076666832, -0.02873735874891281, 0.016415193676948547, -0.00960784312337637, -0.006161083001643419, 0.004747373051941395, -0.0034575308673083782, -0.005563285667449236, 0.0020115075167268515, -0.003810285124927759, -0.001968422904610634, -0.00704970071092248, -0.0013174430932849646, 0.008046030066907406, -0.011729754507541656, 0.028780443593859673, -0.013808581046760082, -0.024493535980582237, 0.007599028293043375, -0.009047743864357471, -0.013883979059755802, -0.00035140791442245245, -0.0060049016028642654, -0.015639672055840492, -0.0034090608824044466, -0.015316538512706757, -0.008099885657429695, -0.015144200064241886, -0.026906268671154976, -0.02673392929136753, -0.024945924058556557, 0.03420909121632576, 0.009850192815065384, 0.010841136798262596, -0.002940516918897629, 0.005741009023040533, 0.017309196293354034, -0.005741009023040533, 0.010760352946817875, -0.003847984131425619, -0.0036083266604691744, 0.00046080214087851346, 0.0040499428287148476, -0.009656312875449657, 0.04252439737319946, -0.0011989607010036707, 0.0016870272811502218, -0.014282510615885258, 0.007992174476385117, -0.01115888450294733, 0.006021058186888695, 0.015531960874795914, 0.0005520200938917696, -0.024752043187618256, -0.010297195054590702, -0.02292095124721527, 0.0008226446225307882, -0.012354479171335697, -0.01883869618177414, 0.00026018996140919626, -0.00048335420433431864, 0.010916533879935741, -0.019948121160268784, 0.02333025448024273, 0.028328057378530502, 0.014034775085747242, -0.0013605275889858603, -0.007394376676529646, -0.0022296227980405092, 0.0023454122710973024, 0.008740766905248165, 0.028220344334840775, -0.018590960651636124, 0.015844322741031647, -0.0013652399647980928, 0.014627186581492424, -0.03104238025844097, -0.008099885657429695, -0.0021151795517653227, 0.013636243529617786, -0.0007957167690619826, 0.013647014275193214, -0.010830365121364594, 0.012796095572412014, -0.027100147679448128, 0.00610722741112113, 0.020368196070194244, 0.017416907474398613, -0.016555218026041985, 0.002997065195813775, -0.003034764202311635, -0.009187769144773483, -0.003322891891002655, -0.0046989028342068195, -0.004828156437724829, -0.007152026519179344, -0.001466219313442707, 0.007706739474087954, -0.006990459747612476, -0.020529761910438538, 0.005741009023040533, 0.007631341461092234, 0.0020734413992613554, -0.01021641120314598, -0.008579200133681297, -0.036492567509412766, -0.023437965661287308, -0.012591443955898285, 0.013980919495224953, -0.02322254329919815, 0.0016372108366340399, -0.02432119846343994, 0.005714081227779388, -0.01517651416361332, -0.003465609159320593, 0.03205486387014389, 0.009828650392591953, -0.014659499749541283, -0.04101644083857536, 0.004838927648961544, 0.015607358887791634, 0.01710454560816288, 0.007647498045116663, 0.017395365983247757, -0.0027493294328451157, -0.0005752453580498695, -0.001468911999836564, -0.00458849873393774, 0.020852895453572273, 0.00464504724368453, -0.005315549671649933, -0.023696472868323326, 0.012149827554821968, -0.010507231578230858, -0.014304053038358688, 0.012720697559416294, 0.00016998180944938213, 0.015984348952770233, 0.000495135085657239, -0.004480787552893162, 0.007324364501982927, -0.030934669077396393, 0.019237227737903595, 0.02432119846343994, 0.007281280122697353, 0.00046888049109838903, -0.022210057824850082, 0.00512705510482192, -0.0033336628694087267, -0.001106059760786593, 0.024816669523715973, 0.011331222951412201, -0.008067571558058262, 0.010447990149259567, 0.00021256139734759927, -0.02563527598977089, -0.0014231348177418113, -0.03414446488022804, -0.036535654217004776, 0.02638925425708294, 0.016296710819005966, -0.00940319150686264, 4.169603198533878e-05, -0.023244086652994156, -0.012440647929906845, -0.0033578979782760143, -0.009661698713898659, 0.003979930188506842, 0.004356919787824154, 0.0053559415973722935, -0.018881781026721, -0.002800492336973548, -0.002003428991883993, -0.00516475411131978, -0.002296942286193371, -0.0004274789826013148, -0.028177261352539062, 0.0021340290550142527, -0.013442362658679485, -0.0046935174614191055, 0.010092543438076973, -0.0030482280999422073, 0.014239425770938396, -0.006484216544777155, -0.0036514110397547483, 0.006274180021136999, -0.008148355409502983, 0.021240657195448875, -0.009085442870855331, -0.005153982900083065, -0.014713355340063572, -0.03336894139647484, 0.007986788637936115, -0.01665215753018856, 0.015908950939774513, -0.03050382435321808, 0.010281037539243698, 0.03115009143948555, -0.017158400267362595, -0.00758825708180666, -0.0065811569802463055, -0.03110700659453869, -0.009947133250534534, -0.006446518003940582, 0.019495734944939613, -0.015338080935180187, -0.004413468297570944, -0.0343598872423172, -0.027681788429617882, -0.007518244441598654, 0.01858018897473812, 0.018666358664631844, 0.010566473007202148, -0.0030482280999422073, -0.0035840915516018867, 0.009683240205049515, 0.009510902687907219, -0.014336366206407547, 0.004833541810512543, 0.014250197447836399, -0.0006435746909119189, -0.0026268078945577145, -0.00571946706622839, 0.008880792185664177, 0.021693043410778046, -0.011977490037679672, 0.02141299471259117, 0.004523871932178736, -0.019377252086997032, -0.025592191144824028, 0.0021205651573836803, -0.012839180417358875, -0.017266111448407173, 0.034079838544130325, -0.03532928600907326, 0.003263650694862008, 0.0023858039639890194, -0.0053424774669110775, -0.012569901533424854, 0.013173084706068039, 0.002594494493678212, -0.002781642833724618, -0.009796337224543095, -0.020368196070194244, 0.01223599724471569, 0.011320451274514198, -0.001256182324141264, -0.0017839674837887287, 0.013647014275193214, -0.007868305779993534, -0.016135143116116524, -0.014282510615885258, -0.009677855297923088, 0.007965246215462685, -0.059068843722343445, -0.011180426925420761, 0.02880198508501053, 0.0010488382540643215, -0.024558162316679955, 0.04446319863200188, 0.008934647776186466, -0.009462432935833931, 0.022447023540735245, 0.007545172236859798, -0.00425728689879179, 0.013776267878711224, 0.008234524168074131, -0.01702914759516716, -0.03153785318136215, -0.0036621822509914637, 0.003979930188506842, 0.013528532348573208, 0.004044556990265846, -0.03713883459568024, 0.019797326996922493, 0.0014796832110732794, 0.007976016961038113, -0.009376263245940208, 0.040908727794885635, 0.0184940192848444, 0.003966466523706913, 0.00941934809088707, -0.010690340772271156, -0.015607358887791634, -0.0022228907328099012, 0.00955398753285408, -0.009117756970226765, 0.007340521086007357, -0.008051414974033833, -0.009349335916340351, 0.013873208314180374, 0.02034665271639824, -0.03655719384551048, -2.0290526663302444e-05, 0.006818121764808893, 0.005269772373139858, 0.0021582639310508966, -0.006737337913364172, -0.015305767767131329, -0.0029512878973037004, -0.010227181948721409, 0.002559488406404853, -0.0009431465296074748, -0.0074213044717907906, -0.004095720127224922, 0.01221445482224226, 0.008525344543159008, 0.01216059923171997, 0.00460734823718667, 0.0024369668681174517, -0.030870040878653526, 0.013086915947496891, -0.010507231578230858, 0.01929108239710331, -0.0077875228598713875, -0.007846764288842678, 0.04450628533959389, -0.007986788637936115, -0.007701353635638952, 0.008433789946138859, 0.006231095176190138, -0.022683987393975258, 0.0035517781507223845, 0.013323880732059479, -0.010340278968214989, 0.011341993696987629, 0.0077875228598713875, -0.011966719292104244, -0.0026375791057944298, -0.03089158423244953, -0.01816011592745781, 0.020745184272527695, -0.008740766905248165, -0.021057548001408577, 0.0018714828183874488, 0.010539544746279716, 0.01948496326804161, 0.0036487183533608913, -0.015736611559987068, -0.02054053358733654, 0.011341993696987629, 0.019678844138979912, 0.021811526268720627, -0.006898905150592327, 0.00020700754248537123, 0.002800492336973548, -0.012203684076666832, -0.024062691256403923, 0.0050328075885772705, 0.005267079919576645, 0.0029889869038015604, 0.015004175715148449, -0.0017058767843991518, 0.02880198508501053, -0.0059187328442931175, -0.006414204370230436, -0.012925349175930023, 0.013442362658679485, -0.011665127240121365, -0.011568187735974789, 0.00930625107139349, 0.02423502877354622, -0.0010118124773725867, 0.00348715134896338, 0.010781895369291306, 0.01412094384431839, -0.003522157669067383, 0.002031703246757388, 0.02371801622211933, -0.009203925728797913, 0.03560933470726013, 0.01677064038813114, 0.019948121160268784, 0.017266111448407173, -0.00464235432446003, 0.002924360102042556, -0.0296421330422163, 0.0034306030720472336, 0.017847752198576927, 0.008557657711207867, -0.00955398753285408, -0.01876329816877842, 0.0024463916197419167, -0.015758154913783073, -0.01635056734085083, -0.020680557936429977, -0.0005988071789033711, 0.006166468374431133, -0.010033302009105682, 0.01858018897473812, 0.005875647999346256, 0.008659983985126019, 0.005097434390336275, 0.004558878485113382, 0.011191197670996189, 0.008148355409502983, 0.02714323252439499, 0.009053129702806473, -0.003969159442931414, 0.0047796862199902534, 0.009990218095481396, -0.012031345628201962, -0.005393640603870153, 0.006204167380928993, -0.003990701399743557, 0.022748613730072975, -0.012203684076666832, 0.0026685460470616817, 0.0205728467553854, 0.009785566478967667, -0.007232809904962778, 0.006575771141797304, 0.0013369658263400197, 0.0009263166575692594, -0.006311878561973572, -0.027401739731431007, 0.010636485181748867, -0.01781543903052807, -0.021693043410778046, 0.006354963406920433, -0.0036918027326464653, -0.01489646453410387, -0.022253142669796944, -0.006037215236574411, 0.03054690733551979, -0.005816407036036253, -0.004189967177808285, 0.00556867104023695, 0.002651043003425002, 0.0020249714143574238, 0.004828156437724829, -0.0062580229714512825, -0.01487492211163044, -0.001662792288698256, -0.002509671961888671, 0.0005220629391260445, 0.009904048405587673, -0.021617645397782326, 0.011891321279108524, -0.0025352532975375652, -0.018149344250559807, 0.03899146988987923, -0.007695968262851238, -0.002434273948892951, 0.013259253464639187, -0.0018041633302345872, 0.011902092024683952, 0.009020816534757614, -0.0009808455361053348, -0.011094258166849613, -0.005832563620060682, 0.020292798057198524, 0.00923085305839777, 0.011535873636603355, 0.013162313960492611, 0.026259999722242355, -0.012688384391367435, 0.003963773604482412, -0.006171854212880135, -0.00928470864892006, 0.004456552676856518, 0.0014190955553203821, 0.003909918013960123, 0.006441132165491581, 0.026303084567189217, 0.008762309327721596, 0.003888375824317336, -0.011697440408170223, 0.013700869865715504, -0.004938560537993908, 0.00460734823718667, 0.008918491192162037, -0.011051173321902752, 0.032377999275922775, 0.0038399058394134045, -0.004790457431226969, 0.0007270508795045316, 0.013819352723658085, -0.003164017805829644, -0.00375642953440547, -0.0010878834873437881, -0.02242548018693924, -0.002284824615344405, 0.016792181879281998, -0.007986788637936115, -0.0074590034782886505, 0.005762551445513964, 0.010792666114866734, 0.02423502877354622, 0.04327837750315666, 0.009720939211547375, 0.018267827108502388, -0.001928031211718917, -0.005864877253770828, -0.012806866317987442, 0.01990503817796707, 0.005272465292364359, 0.001587394392117858, -0.013108458369970322, -0.019247999414801598, -0.004303064197301865, -0.0049843378365039825, 0.017223026603460312, -0.020357424393296242, -0.005692539270967245, 0.002602572785690427, 0.009150070138275623, -0.003920689225196838, -0.006640397943556309, -0.002594494493678212, 0.014831838198006153, 0.0065057589672505856, 0.003193638287484646, -0.014691812917590141, -0.004009550902992487, 0.014551788568496704, 0.01963575929403305, -0.01687835156917572, -0.0032394155859947205, 0.00176242517773062, -0.034489139914512634, -0.007690582424402237, -0.011492789722979069, -0.0023979214020073414, -0.00618262542411685, -0.012580673210322857, 0.00035174452932551503, 0.016899893060326576, 0.02819880284368992, -0.014767210930585861, -0.017535390332341194, 0.0026591212954372168, 0.01692143641412258, -0.019323397427797318, 0.005390947684645653, -0.002865118905901909, -0.005547129083424807, -0.003462916472926736, 0.0016560603398829699, 0.006161083001643419, -0.008746152743697166, 0.04575573652982712, 0.007318978663533926, -0.0020142002031207085, 0.0009956557769328356, -0.009397805668413639, -0.00614492641761899, 0.005396333057433367, -0.007335135713219643, 0.008735381998121738, 0.010065615177154541, -0.0032205660827457905, -0.01121274009346962, 0.008164511993527412, 0.015607358887791634, -0.019689615815877914, 0.0047419872134923935, 0.002924360102042556, -0.005431339144706726, 0.015499647706747055, -0.008773081004619598, 0.01567198522388935, 0.0164259634912014, 0.015284225344657898, 0.0037752790376544, -0.0077552092261612415, 0.020831353962421417, -0.007518244441598654, 0.0027479829732328653, 0.015187284909188747, 0.009413962252438068, -0.011105028912425041, -0.005156675819307566, 0.007200496271252632, -0.0023454122710973024, 0.02016354352235794, -0.008040644228458405, 0.008277609013020992, -0.008509187959134579, 0.011029630899429321, -0.010474918410182, -0.0009680548100732267, 0.017492305487394333, -0.02088521048426628, 0.002921667415648699, -0.00932240765541792, 0.017201485112309456, -0.006726567167788744, -0.0013935142196714878, 0.0012932081008329988, -0.012332936748862267, -0.015144200064241886, -0.015348851680755615, 0.01567198522388935, -0.011525102891027927, 0.011762067675590515, 0.014616415835916996, -0.0030993910040706396, 0.03731117397546768, -0.01710454560816288, 0.014562560245394707, -0.008848478086292744, 0.006559614557772875, 0.005692539270967245, -0.012074430473148823, -0.020971378311514854, -0.017459992319345474, 0.012009803205728531, -0.0347261056303978, 0.005167447030544281, 0.01391629222780466, 0.02352413535118103, -0.011665127240121365, -0.02804800681769848, -0.0017705035861581564, -0.003196330973878503, 0.0014365987153723836, -0.006198782008141279, 0.020486678928136826, 0.006527301389724016, 0.0007580178789794445, -0.02174689993262291, 0.02738019824028015, 0.009586300700902939, 0.0023050205782055855, -0.004898168612271547, -0.011589729227125645, -0.007146640680730343, -0.012526817619800568, 0.010340278968214989, 0.005207838490605354, -0.006117998622357845, -0.017126087099313736, -0.011406620033085346, 0.007566714659333229, -0.008740766905248165, 0.013883979059755802, 0.02223159931600094, 0.005977973807603121, -0.010803437791764736, 0.00233194837346673, 0.022080805152654648, 0.01231139525771141, -0.02880198508501053, 0.0151011161506176, 0.0020397815387696028, -0.0006604045629501343, 0.00047090009320527315, 0.020023519173264503, -0.009634770452976227, 0.005859491415321827, -0.03155939280986786, -0.004914325196295977, 0.0018876395188272, 0.0011370268184691668, 0.013808581046760082, 0.012462190352380276, -0.022339312359690666, 0.0017166478792205453, -0.000934395007789135, 0.017190713435411453, -0.008654598146677017, 0.005428646691143513, 0.012677612714469433, -0.00953244511038065, -0.019528048112988472, -0.0010461454512551427, 0.008794622495770454, 0.011934405192732811, -0.022253142669796944, 0.008848478086292744, 0.010846521705389023, 0.020142002031207085, -0.01782621070742607, -0.013711640611290932, 0.011740525253117085, 0.022662445902824402, -0.018634045496582985, 0.01781543903052807, -0.022026948630809784, -0.026820098981261253, 0.0026618139818310738, -0.010851907543838024, -0.0037456583231687546, 0.020486678928136826, -0.03560933470726013, -0.008961575105786324, 0.005563285667449236, 0.013905521482229233, -0.025742987170815468, 0.023739557713270187, -0.014691812917590141, 0.007782137021422386, 0.015553503297269344, -0.005331706255674362, 0.028026465326547623, -0.0034898442681878805, 0.0010320083238184452, -0.0009135259897448123, -0.001788006629794836, 0.011341993696987629, -0.02178998477756977, 0.012429877184331417, 0.008029873482882977, -0.016555218026041985, -0.022360853850841522, -0.0028489623218774796, 0.02019585855305195, 0.005692539270967245, -0.01956036128103733, 0.018472477793693542, -0.010507231578230858, -0.005784093867987394, 0.014659499749541283, -0.009812493808567524, 0.020777499303221703, -0.008519959636032581, 0.01323771197348833, 0.002318484475836158, -0.024665873497724533, -0.01876329816877842, -0.005703310016542673, -0.0013840894680470228, -0.030740788206458092, 0.005773322656750679, 0.004973566625267267, -0.008800008334219456, 0.009667083621025085, -1.3737390872847755e-05, -0.003535621566697955, -0.009564758278429508, -0.005886419210582972, -0.017018375918269157, 0.025656817480921745, -0.01748153381049633, -0.01306537352502346, -0.007809064816683531, -0.00664578378200531, 0.004653125535696745, 0.003013222012668848, -0.02593686617910862, -0.0016102830413728952, -0.009446275420486927, 0.0011390463914722204, -0.027315570041537285, -0.021154487505555153, 0.0021272969897836447, 0.0029620591085404158, 0.014368679374456406, -0.008132198825478554, 0.005000494420528412, 0.001153183518908918, -0.015348851680755615, -0.007243581116199493, 0.02529059909284115, 0.026496965438127518, 0.009834036231040955, -0.000572215998545289, -0.005100127309560776, -0.02597995102405548, 0.027617162093520164, -0.021585332229733467, -0.017158400267362595, -0.001684334478341043, 0.017998548224568367, -0.009413962252438068, -0.0008441868703812361, 0.0030482280999422073, 0.0028893540147691965, 0.007362063508480787, -0.0001465882669435814, 0.021079089492559433, -0.005784093867987394, 0.01298997551202774, 0.02899586595594883, 0.001603551092557609, -0.01311922911554575, 0.015553503297269344, -0.019603446125984192, -0.013539303094148636, 0.007658269256353378, -0.0028516550082713366, 0.017309196293354034, 0.010609556920826435, -0.01974347047507763, -0.007555943448096514, 0.01778312586247921, 0.0037295017391443253, 0.01951727643609047, -0.025204431265592575, -0.010830365121364594, -0.004744680132716894, 0.012074430473148823, 0.004763529635965824, 0.01638288050889969, 0.004214202519506216, 0.01208520121872425, 0.025053635239601135, -0.004830849356949329, -0.006635012570768595, -0.0008886177674867213, 0.0013558152131736279, 0.0038749119266867638, 0.013765496201813221, 0.03224874660372734, 0.007383605465292931, -0.025807613506913185, 0.0030428424943238497, -0.0018028168706223369, 0.007997559383511543, -0.005789479240775108, -0.009559372439980507, -0.024859754368662834, 0.009941747412085533, -0.0016493283910676837, 0.01604897528886795, 0.00022114464081823826, 0.008261452428996563, -0.002107101259753108, -0.013808581046760082, 0.004259979818016291, 0.0018257055198773742, -0.016264397650957108, 0.011643584817647934, 0.000407956336857751, 0.012580673210322857, -0.004962795414030552, -0.011568187735974789, -0.018677128478884697, -0.0007795601268298924, 0.00845533236861229, -0.007065857294946909, 0.017007604241371155, 0.0007277240511029959, -0.001159915467724204, 0.021930009126663208, -0.004071484785526991, 0.007609799038618803, -0.0027789499145001173, -0.0016452892450615764, 0.013496218249201775, 0.01038336381316185, -0.019021805375814438, -0.0007862920756451786, 0.0018553261179476976, 0.015273453667759895, -0.018903322517871857, 0.014433306641876698, -0.022705528885126114, 0.031817901879549026, -0.0205836184322834, 0.004954717122018337, -0.022188516333699226, 0.0007923507946543396, 0.010927305556833744, 0.020066604018211365, -0.010071001015603542, -0.010609556920826435, 0.002593148034065962, 0.0132161695510149, 0.013431591913104057, -0.028672732412815094, -0.018677128478884697, 0.010679570026695728, -0.03425217419862747, -0.0018068560166284442, 0.002781642833724618, -0.012128286063671112, -0.036234062165021896, -0.012451419606804848, 0.009591685608029366, -0.0012959009036421776, -0.010620328597724438, 0.023459509015083313, -0.0065811569802463055, 0.004456552676856518, -0.006968917325139046, 0.015962805598974228, -0.0041549610905349255, -0.03858216479420662, -0.020702101290225983, -0.004033785779029131, 0.017158400267362595, 0.021531477570533752, 0.023028664290905, -0.012354479171335697, -0.013173084706068039, -0.005837949458509684, 0.0036621822509914637, -0.0027897211257368326, -0.00023898431390989572, 0.026949351653456688, -0.011471247300505638, -0.0034521452616900206, -0.0012036730768159032, 0.002181152580305934, -0.008487645536661148, 0.006715795956552029, -0.011794380843639374, 0.008482260629534721, -0.01323771197348833, -0.00703354412689805, 0.020594390109181404, -0.0035679349675774574, 0.011772838421165943, 0.014077858999371529, 0.02638925425708294, 0.014702584594488144, 0.0010602825786918402, 0.0065865423530340195, 0.01820319890975952, 0.007593642454594374, -0.028306514024734497, -0.021176030859351158, -0.011191197670996189, -0.012429877184331417, 0.014767210930585861, 0.009737095795571804, 0.02348105050623417, -0.006812735926359892, -0.005563285667449236, -0.021811526268720627, -0.001312730717472732, -0.010480303317308426, -0.01034566480666399, -0.016016662120819092, 0.02322254329919815, 0.0047177523374557495, -0.0028112633153796196, 0.01394860539585352, 0.014907236211001873, 0.005393640603870153, 0.0023467587307095528, 0.03330431506037712, -0.011686669662594795, 0.005886419210582972, 0.020325111225247383, 0.006721181329339743, 0.016210541129112244, -0.009257781319320202, 0.0001524787221569568, -0.0037429656367748976, -0.00021794695931021124, -0.0021448000334203243, 0.007695968262851238, 0.004838927648961544, -0.0013591812457889318, -0.013517760671675205, -0.004391925875097513, -0.0043703834526240826, -0.06100764870643616, -0.0111373420804739, 0.008729996159672737, -3.17664016620256e-05, 0.01574738323688507, -0.0082129817456007, 0.009257781319320202, 0.009828650392591953, 0.015725841745734215, -0.024945924058556557, -0.0010414330754429102, -0.010464146733283997, -0.015424249693751335, 0.00743746105581522, -0.013334651477634907, -0.006721181329339743, -0.002462548203766346, 0.036492567509412766, -0.017643101513385773, 0.0013026328524574637, -0.009672469459474087, -0.005347863305360079, 0.011611271649599075, 0.002038435311987996, 0.03218412026762962, 0.0015510418452322483, 0.01128813810646534, 0.017686186358332634, -0.013851665891706944, -0.025161346420645714, -0.010243339464068413, -0.014777982607483864, 0.014400992542505264, 0.015208827331662178, 0.009123141877353191, -0.02688472531735897, -0.003322891891002655, -0.02352413535118103, 0.008848478086292744, 0.012893036007881165, -0.004814692307263613, -0.011201969347894192, 0.006080299615859985, 0.007362063508480787, -0.014153257012367249, 0.018634045496582985, -0.0004887397517450154, -0.001437945058569312, 0.012483732774853706, 0.015413478948175907, -0.007480545900762081, 0.0032905784901231527, 0.002900125226005912, -0.000762730254791677, 0.01856941729784012, 0.012763782404363155, 0.010000988841056824, -0.010130242444574833, 0.011191197670996189, -0.014885693788528442, 0.03825903311371803, -0.014185570180416107, -0.001596819143742323, -0.006387276574969292, -0.00599413039162755, 0.008110656403005123, -0.0006291009485721588, 0.016522904857993126, 0.053252436220645905, 0.011578958481550217, -0.03356282413005829, -0.012591443955898285, -0.010868064127862453, 0.010943462140858173, -0.011837465688586235, -0.002260589739307761, 0.018170885741710663, 0.004671975038945675, 0.007712124846875668, 0.0011067329905927181, -0.004957410041242838, 0.012634528800845146, 0.013517760671675205, 0.0040876418352127075, -0.00934395007789135, -0.0008361085201613605, 0.0040687923319637775, 0.005240151658654213, -0.015908950939774513, 0.0027022056747227907, 0.018860237672924995, 0.00940319150686264, 0.0011390463914722204, -0.0015025718603283167, 0.012225225567817688, 0.00231175241060555, -0.0010138320503756404, -0.0008785197860561311, 0.018063174560666084, -0.0034359886776655912, 0.0029701374005526304, -0.003193638287484646, -0.03295964002609253, 0.017266111448407173, 0.01027026679366827, 0.0024652411229908466, -0.02899586595594883, -0.015241140499711037, -0.02809109166264534, 0.026561591774225235, 0.014842608943581581, -0.005038193427026272, -0.007006616331636906, 0.012709926813840866, -0.0016897200839594007, 0.016188999637961388, -0.0044080824591219425, -0.007302822079509497, 0.0008637095452286303, 0.019571132957935333, -0.022748613730072975, -0.022490106523036957, -0.010824980214238167, -0.022511649876832962, 0.015812009572982788, 0.0027951067313551903, 0.02019585855305195, -0.0005614448455162346, 0.007674425840377808, 0.01314077153801918, -0.0015766232972964644, 0.019851181656122208, 0.011201969347894192, 0.01213905680924654, -0.004855084232985973, 0.014756440185010433, -0.023545676842331886, 0.008148355409502983, 0.009483974426984787, -0.0052751582115888596, 0.014519475400447845, 0.008175283670425415, 0.007986788637936115, -0.002556795487180352, 0.006161083001643419, 0.010480303317308426, 0.004838927648961544, 0.01106194406747818, 0.02140222303569317, 0.0018903323216363788, -0.00027382216649129987, -0.00012067025090800598, 0.01402400340884924, 0.0366218239068985, -0.014885693788528442, 0.024062691256403923, -0.008902333676815033, -0.01100808847695589, -0.0028166489209979773, 0.025592191144824028, -0.007760595064610243, 0.011783610098063946, 0.011729754507541656, 0.02669084630906582, -0.02162841707468033, -0.005730237811803818, -0.006328035611659288, 0.017352281138300896, -0.03782818838953972, -0.012526817619800568, 0.003934152889996767, 0.01782621070742607, -0.012225225567817688, 0.00697430269792676, -0.009661698713898659, -0.014961091801524162, 0.007238195277750492, 0.016221312806010246, -0.018547875806689262, -0.02408423274755478, 0.004246515687555075, -0.011298908852040768, -0.007082014344632626, -0.008503802120685577, -0.011686669662594795, -0.02102523483335972, -0.01053415983915329, 0.005229380913078785, -0.001128275296650827, -0.0012676266487687826, 0.0264323391020298, 0.019011033698916435, -0.0033605906646698713, -0.007728281430900097, 0.012419106438755989, 0.005073199514299631, -0.0024558163713663816, 0.027272487059235573, 0.022080805152654648, -0.0026550821494311094, 0.009683240205049515, 0.00013758428394794464, 0.004733908921480179, -0.0169860627502203, 0.009801723062992096, -0.009311636909842491, -0.01846170611679554, -0.007448232267051935, -0.00042276663589291275, -0.016706014052033424, -0.01638288050889969, -0.016113601624965668, 0.02994372509419918, 0.017912378534674644, -0.007238195277750492, -0.0018068560166284442, -0.004023015033453703, 0.008719225414097309, 0.00753440149128437, 0.004957410041242838, 0.014454848133027554, -0.005226687993854284, 0.03384287282824516, -0.025872239843010902, 0.017793897539377213, 0.019097203388810158, 0.004060713574290276, -0.024213487282395363, 0.022296227514743805, 0.028414225205779076, 0.01497186254709959, 0.006468059960752726, -0.003716037841513753, 0.0024261956568807364, 0.013485447503626347, 0.00708739971742034, 0.008412247523665428, 0.012936119921505451, -0.007965246215462685, 0.018117031082510948, -0.011622043326497078, -0.0074643888510763645, -0.0044888658449053764, 0.012785323895514011, -0.033131979405879974, -0.005864877253770828, -0.02337333932518959, 0.005816407036036253, -0.02163918875157833, -0.026044577360153198, -0.011320451274514198, -0.0004294985847081989, 0.023244086652994156, 0.029275914654135704, -0.003131704404950142, -0.019377252086997032, -0.010351050645112991, -0.012656071223318577, 0.019624987617135048, 0.022705528885126114, 0.012494504451751709, 0.001206365879625082, 0.006080299615859985, 0.007658269256353378, 0.011815923266112804, -0.01394860539585352, 0.002012853743508458, 0.0035894771572202444, 0.013280795887112617, -0.00021761037351097912, 0.010356435552239418, -0.008180668577551842, 0.00846071820706129, -0.022382395341992378, -0.009424733929336071, -0.03183944150805473, 0.0059564318507909775, -0.011546645313501358, 0.004521179478615522, -0.01585509441792965, -0.023588761687278748, 0.025915324687957764, -0.012009803205728531, -0.012203684076666832, 0.04254594072699547, 0.0028489623218774796, -0.02748790942132473, 0.001712608733214438, -0.008487645536661148, 0.012785323895514011, 0.01136353611946106, 0.007442846894264221, 0.021542247384786606, -0.009947133250534534, -0.04614349454641342, -0.010911148972809315, 0.024299655109643936, -0.020637473091483116, -0.0026456573978066444, 0.012688384391367435, 0.001093942322768271, -0.0037645078264176846, -0.0036621822509914637, 0.00014902859402354807, 0.016038203611969948, 0.0026470038574188948, -0.015273453667759895, -0.011675898917019367, 0.0011457783402875066, 0.014993404969573021, -0.01856941729784012, -0.020788269117474556, 0.05863799899816513, 0.005972588434815407, 0.017233798280358315, 0.0445493683218956, 0.005291314795613289, -0.010151784867048264, 0.01684603840112686, 0.0034925369545817375, 0.027854127809405327, -0.006828892510384321, 0.0011854968033730984, 0.025549106299877167, 0.008196825161576271, 0.01585509441792965, -0.010674184188246727, -0.00753440149128437, 0.019700385630130768, 0.020066604018211365, -0.0007795601268298924, 0.0069150617346167564, -0.004949331749230623, -0.014293281361460686, -0.009882505983114243, 0.007432075683027506, -0.015790468081831932, 0.005248230416327715, -0.013151542283594608, -0.02307174727320671, 0.00837993435561657, -0.014961091801524162, -0.003869526321068406, 0.01665215753018856, 0.02001274935901165, -0.02477358467876911, -0.0014998790575191379, -0.004397311247885227, 0.03420909121632576, 0.007916776463389397, -0.026863183826208115, -0.01929108239710331, 0.0002622095635160804, -0.007092785090208054, -0.008999274112284184, 0.003953002393245697, -0.004020322114229202, 0.01684603840112686, 0.004666589666157961, -0.0007829261012375355, 0.012591443955898285, -0.009505516849458218, 0.0241704024374485, -0.004227666184306145, 0.008072957396507263, 0.006177239585667849, 0.024407368153333664, 0.0029297457076609135, 0.006021058186888695, -0.013442362658679485, 0.013280795887112617, 0.004620812367647886, -0.003915303852409124, 0.008110656403005123, -0.001577969640493393, -0.007604413665831089, 0.01038336381316185, -0.02106831967830658, -0.013162313960492611, 0.026044577360153198, 0.023394880816340446, 0.04149036854505539, -0.0004971547168679535, -0.029362084344029427, 0.0031263187993317842, -0.03354128077626228, -0.00710894213989377, 0.011223511770367622, -0.01136353611946106, 0.004685439169406891, 0.007701353635638952, -0.00758825708180666, 0.003538314253091812, 0.0034494525752961636, 0.0074967024847865105, 0.03205486387014389, 0.000576591759454459, -0.01638288050889969, -0.018547875806689262, 0.01684603840112686, -0.0014796832110732794, 0.00708739971742034, -0.026173831894993782, 0.001631825347431004, 0.012095971964299679, -0.014713355340063572, 0.01630748249590397, -7.173736958066002e-05, -0.011934405192732811, 0.017998548224568367, 0.012849951162934303, -0.0068719773553311825, -0.0328519269824028, 0.013033060356974602, 0.012149827554821968, 0.0007930240244604647, 0.008622284978628159, 0.0015443098964169621, -0.013539303094148636, 0.0023265627678483725, -0.022037720307707787, -0.011762067675590515, 0.00599413039162755, 0.0002834151964634657, 0.0006146272644400597, 0.014304053038358688, -0.006635012570768595, 0.026044577360153198, -0.023007120937108994, -0.00610722741112113, 0.011826694011688232, 0.03050382435321808, 0.00016888785467017442, -0.029728302732110023, 0.031817901879549026, 0.02147762104868889, 0.0028085706289857626, -0.013603929430246353, -0.005751780234277248, 0.008595356717705727, 0.0018660972127690911, 0.014379451051354408, 0.012699155136942863, -0.004354226868599653, -0.003263650694862008, -0.0077875228598713875, 0.013506989926099777, 0.016447506844997406, 0.010932691395282745, -0.007604413665831089, 0.010760352946817875, 0.0002425185957690701, 0.007308207917958498, -0.02382572740316391, -0.0054044113494455814, -0.0019334168173372746, -0.04327837750315666, 0.0031263187993317842, -0.004838927648961544, -0.008234524168074131, -0.0009364145807921886, -0.021348368376493454, 0.011977490037679672, 0.01021641120314598, 0.0044888658449053764, 0.004001472610980272, 0.01714763045310974, -0.007674425840377808, 0.015058031305670738, 0.01412094384431839, 0.014056316576898098, -0.016781412065029144, -0.010620328597724438, -0.011611271649599075, 0.0071250987239181995, 0.02121911384165287, -0.002128643449395895, 0.01495032012462616, 0.011697440408170223, 0.005509430076926947, -0.005816407036036253, 0.005746394861489534, -0.005366712808609009, 0.027100147679448128, 0.007216653320938349, -0.012246767990291119, -0.020788269117474556, -0.02231776900589466, -0.012677612714469433, 0.0005153309903107584, -0.01710454560816288, -0.0001313572283834219, -0.011557416059076786, 0.017352281138300896, -0.0015321924583986402, 0.025699902325868607, -0.006936604157090187, 0.012580673210322857, -0.01130968052893877, -0.015758154913783073, -0.01604897528886795, 0.0004412794951349497, 0.019614217802882195, 0.014282510615885258, -0.0043596127070486546, 0.0009741135290823877, 0.0012009803904220462, 0.006328035611659288, -0.020174315199255943, -0.004391925875097513, -0.008180668577551842, -0.026647761464118958, 0.004553492646664381, 0.013097686693072319, -0.016587531194090843, -0.007814450189471245, 0.011535873636603355, 0.017309196293354034, -0.0012676266487687826, -0.003982623107731342, -0.013679327443242073, 0.010528774000704288, 0.022985579445958138, -0.005016651004552841, -0.007119712885469198, 0.008719225414097309, -0.005358634050935507, -0.029275914654135704, -0.005541743244975805, 0.0023709936067461967, 0.011826694011688232, 0.005557899829000235, -0.016738327220082283, 0.002956673502922058, 0.0023642617743462324, 0.004941252991557121, -0.03677261620759964, -0.007044315338134766, -0.027057064697146416, -0.0094408905133605, -0.01567198522388935, 0.0074643888510763645, 0.015682756900787354, -0.0026618139818310738, 0.0033794401679188013, -0.010528774000704288, -0.01211751438677311, 0.009004659950733185, -0.03423063084483147, -0.01512265857309103, -0.002710284199565649, 0.009656312875449657, -0.008945418521761894, 0.02103600464761257, 0.0069096763618290424, 0.03843137249350548, 0.011245053261518478, -0.007857535034418106, -0.024213487282395363, 0.00512436218559742, 0.009963289834558964, -0.0002793760213535279, 0.022533191367983818, 0.012580673210322857, -0.005848720204085112, 0.027315570041537285, 0.002500247210264206, 0.03390749916434288, 0.027961838990449905, 0.0015119964955374599, -0.00466120382770896, -0.0005183603498153389, -0.008843093179166317, 0.008546886965632439, -0.009387034922838211, 0.004448474384844303, 0.005557899829000235, -0.00508666317909956, -0.01585509441792965, 0.011912863701581955, 0.007695968262851238, 0.0011242360342293978, -0.024945924058556557, -0.0013107111444696784], "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee": [-0.05864456295967102, -0.025258053094148636, -0.006130625959485769, 0.021991711109876633, -0.05181267112493515, -0.00357801653444767, -0.0055197449401021, -0.006906693801283836, -0.004173313733190298, 0.03326183930039406, 0.04465663805603981, 0.03136686235666275, 0.009961098432540894, -0.01686779223382473, 0.006233478430658579, -0.033760517835617065, 0.018189288675785065, 0.007928984239697456, 0.014262198470532894, -0.031815674155950546, 0.0794394463300705, 0.0016861559124663472, -0.008620900101959705, -0.004771727602928877, -0.00500859972089529, -0.03573029860854149, 0.003708919510245323, -0.0012840965064242482, -0.03323690593242645, -0.020807350054383278, 0.018750302493572235, -0.016132241114974022, 0.0036652851849794388, 0.039295848459005356, 0.0005528316251002252, -0.029122810810804367, -0.011775040067732334, 0.0036995692644268274, 0.005965438671410084, 0.005691165570169687, -0.02123122662305832, 0.03308730199933052, -0.04213831201195717, 0.020433342084288597, -0.007835482247173786, -0.018201757222414017, -0.012273718602955341, -0.029721224680542946, 0.01983492821455002, -0.015446559526026249, 0.01784021407365799, 0.006118158809840679, -0.022054046392440796, 0.007018896285444498, 0.057497601956129074, -0.01625691168010235, 0.011856075376272202, 0.06487803906202316, -0.02388668805360794, -0.0553034171462059, -0.011594269424676895, -0.00797261856496334, -0.004201364237815142, -0.00887647271156311, 0.009169446304440498, 0.00931905023753643, 0.020981887355446815, 0.011718939058482647, -0.013925590552389622, -0.023388009518384933, -0.022851930931210518, 0.036727651953697205, -0.050441306084394455, 0.02259012497961521, 0.01979752629995346, -0.015583695843815804, 0.0032943931873887777, -0.013027969747781754, 0.01640651561319828, -0.006111925467848778, 0.014486603438854218, -0.016044972464442253, 0.03760034218430519, -0.009861362166702747, 0.007928984239697456, 0.030568977817893028, 0.016344180330634117, -0.044681571424007416, 0.0009973564883694053, -0.053558044135570526, -0.008184556849300861, 0.005248588509857655, -0.024759376421570778, -0.02537025697529316, -0.004999249707907438, 0.030269769951701164, -0.04662641882896423, 0.015508893877267838, 0.039520252496004105, 0.018014751374721527, 0.01042860932648182, 0.015483959577977657, -0.013327176682651043, -0.0003675804182421416, -0.026704220101237297, -0.01361391693353653, 0.01891237311065197, 0.05101478472352028, -0.007343037519603968, 0.035431090742349625, 0.026180608198046684, -0.058993637561798096, -0.01112675853073597, -0.018974708393216133, -0.05540315434336662, -0.03149153292179108, -0.06148703023791313, -0.03585496544837952, -0.0030372622422873974, -0.003175957128405571, -0.01727920211851597, -0.02259012497961521, 0.011980745010077953, -0.0020710730459541082, -0.004603423643857241, 0.015471492893993855, -0.014835678040981293, 0.02049567736685276, 0.029820960015058517, 0.006520218215882778, 0.022889332845807076, -0.0325387567281723, 0.011625437065958977, -0.043285273015499115, 0.0023235289845615625, 0.005691165570169687, 0.005148853175342083, 0.056899189949035645, -0.009069710969924927, 0.044083159416913986, -0.011799974367022514, 0.007311869878321886, 0.00785418227314949, -0.01923651434481144, 0.0334613099694252, -0.006470350548624992, -0.033436376601457596, 0.02852439694106579, -0.013190040364861488, -0.002946876920759678, -0.016643386334180832, 0.002789481543004513, -0.020371006801724434, 0.0029032425954937935, 0.06268385797739029, -0.016942594200372696, -0.01482321135699749, 0.03961998596787453, 0.02355008013546467, 0.08078587800264359, 0.03597963601350784, -0.015434091910719872, 0.011045723222196102, 0.016643386334180832, 0.022652460262179375, 0.055602625012397766, 0.04655161499977112, 0.01792748272418976, 0.008720636367797852, 0.010715348646044731, 0.028175322338938713, -0.02025880478322506, 0.02652968280017376, -0.008190790191292763, 0.04261205717921257, -0.05470500513911247, 0.038173820823431015, 0.006273995619267225, 0.0525108203291893, -0.049194611608982086, 0.010746516287326813, -0.017590874806046486, -0.013115238398313522, -0.008010019548237324, -0.037051793187856674, 0.03727620095014572, 0.001351106446236372, 0.039844393730163574, -0.01575823314487934, -0.002184834098443389, -0.003796188160777092, -0.003098038723692298, -0.01668078824877739, 0.016132241114974022, -0.03829849138855934, -0.054854609072208405, -0.004304216708987951, -0.00010343678150093183, 0.006055823992937803, 0.03592976927757263, 0.02332567609846592, -0.034732941538095474, 0.003749437164515257, 0.019448451697826385, -0.03777487948536873, -0.018114488571882248, -0.011762573383748531, -0.03832342475652695, 0.020832283422350883, 0.013339643366634846, 0.014548937790095806, -0.035480957478284836, 0.015633562579751015, 0.02504611574113369, -0.01848849654197693, -0.0021832757629454136, -0.020221402868628502, -0.0035281486343592405, 0.014835678040981293, -0.0028206489514559507, -0.002122499281540513, -0.02755197323858738, -0.006280229426920414, -0.004537972155958414, -0.038398224860429764, 0.0077232797630131245, -0.02355008013546467, 0.03585496544837952, -0.03475787490606308, -0.022702326998114586, 0.008197023533284664, -0.023338142782449722, 0.05450553447008133, -0.04116589203476906, 0.008658301085233688, 0.028599198907613754, 0.005049117375165224, 0.031142456457018852, -0.004625240806490183, -0.022128848358988762, 0.01151946745812893, 0.023450344800949097, -0.004890163894742727, -0.0188251044601202, 0.002086656866595149, -0.026330212131142616, -0.03348624333739281, 0.02239065431058407, 0.02412356063723564, 0.020283738151192665, -0.03558069467544556, 0.024285631254315376, 0.022004177793860435, 0.007305636536329985, -0.022415587678551674, -0.025345321744680405, -0.015172285959124565, -0.018426161259412766, -0.0002123278536600992, 0.02477184310555458, -0.00382735556922853, -0.01797735132277012, 0.0009334633941762149, 0.0034751640632748604, 0.05335857346653938, -0.041938841342926025, 0.019485853612422943, -0.00542624294757843, 0.017578408122062683, 0.038223687559366226, 0.022552724927663803, -0.004170197062194347, 0.0008633367251604795, 0.03777487948536873, -0.02444770187139511, -0.0010394324781373143, -0.02480924315750599, 0.02727770060300827, -0.006320747081190348, -0.005441826302558184, 0.01092105358839035, -0.017029862850904465, 0.03144166246056557, 0.01501021534204483, 0.031192325055599213, 0.024410299956798553, -0.013040436431765556, 0.0018669267883524299, 0.008396495133638382, 0.029172677546739578, 0.00787288323044777, 0.01238592155277729, 0.0094063188880682, 0.013352110050618649, 0.04298606514930725, -0.008814138360321522, -0.009811494499444962, -0.006395548582077026, -0.034034792333841324, -0.006694755516946316, 0.0034221794921904802, 0.021592767909169197, 0.007031363435089588, -0.02192937582731247, 0.04710016027092934, 0.004241881892085075, 0.0492444783449173, 0.04246245324611664, -0.01969779096543789, 0.03555576130747795, 0.0018871854990720749, -0.04587839916348457, -0.02383682131767273, -0.024235762655735016, -0.004104745574295521, 0.0038429393898695707, -0.062434516847133636, -0.024011358618736267, -0.029496818780899048, -0.021692505106329918, -0.018850037828087807, 0.007935217581689358, -0.010833784937858582, 0.018276557326316833, 0.03667778521776199, -0.06866799294948578, 0.031242193654179573, -0.0145240044221282, -0.0036746354307979345, -0.00612127548083663, -0.029297348111867905, 0.029297348111867905, -0.02457237057387829, 0.017204400151968002, -0.022889332845807076, -0.017354004085063934, -0.04779830947518349, -0.052111878991127014, 0.004634591285139322, 0.0023656049743294716, -0.02662941813468933, -0.042911265045404434, 0.02402382530272007, -0.04243751987814903, 0.008246892131865025, -0.021318495273590088, -0.021156424656510353, -0.005887520033866167, -0.009350216947495937, -0.014835678040981293, 0.0007519132923334837, 0.0031011553946882486, 0.026429947465658188, 0.023861754685640335, 0.04380888491868973, -0.010864952579140663, -0.03136686235666275, 0.006180493626743555, 0.01401285920292139, -0.01350171398371458, -0.008128455840051174, -0.048396725207567215, -0.011020789854228497, -0.03131699562072754, 0.004229415208101273, 0.004759260453283787, 0.010303939692676067, 0.0014874637126922607, -0.0022767779882997274, 0.04423276335000992, 0.0031853073742240667, 0.007056297268718481, -0.03685232251882553, -0.04046773910522461, 0.0059685553424060345, -0.026330212131142616, 0.05640051141381264, -0.0035032148007303476, -0.038497962057590485, 0.019261447712779045, -0.020570477470755577, -0.027103163301944733, -0.00011005985288647935, 0.01217398326843977, 0.030593911185860634, -0.003113622311502695, 0.008165856823325157, 0.00785418227314949, -0.016144707798957825, 0.004011243116110563, -0.03258862346410751, -0.030868183821439743, -0.01163790374994278, -0.007897816598415375, -0.009238014928996563, -0.0036497015971690416, -0.019398584961891174, -0.04019346833229065, 0.019273914396762848, -0.02039594016969204, -0.023250874131917953, 0.00240456429310143, -0.0005037429509684443, -0.024098627269268036, 0.005709866061806679, -0.013564048334956169, 0.023201005533337593, 0.01663091965019703, 0.014935414306819439, 0.012074247002601624, 0.04256219044327736, -0.0253203883767128, 0.03164113685488701, 0.033910121768713, 0.029172677546739578, 0.0075736758299171925, -0.017067262902855873, 0.03632871061563492, 0.0007986644050106406, -0.01449907012283802, 0.04233778268098831, 0.03378545120358467, -0.008016252890229225, 0.021031755954027176, -0.030145101249217987, 0.014922946691513062, -0.006657354533672333, -0.005142619367688894, 0.00224872725084424, -0.012142815627157688, 0.053458310663700104, 0.032688360661268234, -0.0013168222503736615, 0.018151888623833656, -0.011257661506533623, -0.002106915693730116, 0.00866453442722559, 0.00947488658130169, 0.01843862794339657, -0.0013908448163419962, 0.01461127307265997, 0.004865229595452547, 0.015621096827089787, 0.0011329347034916282, -0.003655934939160943, 0.021680036559700966, -0.017092198133468628, 0.009699292480945587, 0.01552136056125164, 0.021181359887123108, 0.014810744673013687, 0.039844393730163574, -0.036179106682538986, 0.009749160148203373, -0.021355897188186646, 0.0010931962169706821, 0.016880258917808533, -0.02104422263801098, -0.011002088896930218, -0.014249730855226517, -0.026429947465658188, 0.016044972464442253, 0.014997748658061028, -0.0158081017434597, 0.007000196259468794, -0.026704220101237297, -0.009873829782009125, 0.0051675536669790745, -0.006794491317123175, 0.025195719674229622, -0.03029470331966877, -0.012255018576979637, -0.023113736882805824, 0.03540615737438202, 0.01947338692843914, -0.017952417954802513, -0.03228941559791565, 0.007043830584734678, -0.019735192880034447, 0.004082928411662579, 0.001835759379900992, 0.0076110768131911755, -0.01328977569937706, 0.002744288882240653, -0.0271779652684927, -0.011301295831799507, -0.03221461549401283, -0.005105218850076199, 0.015284488908946514, -0.012255018576979637, -0.0060433573089540005, 0.02109409123659134, -0.007536275312304497, 0.020046865567564964, 0.02356254681944847, 0.00017083626880776137, 0.017391404137015343, -0.043185535818338394, -0.0078043146058917046, -0.01961052231490612, 0.03829849138855934, 0.03620404005050659, -0.040218401700258255, 0.017852680757641792, -0.014374400489032269, 0.022714795544743538, -0.050216902047395706, 0.024796776473522186, -0.006601253524422646, -0.01635664701461792, -0.04617760702967644, 0.0031588152050971985, -0.04378395155072212, 0.012865899130702019, 0.0003629053244367242, -0.004478754010051489, -0.030593911185860634, -0.012741229496896267, 0.023363076150417328, 0.012336053885519505, -0.02054554410278797, 0.007455240003764629, 0.018201757222414017, -0.004488104488700628, -0.014735942706465721, -0.001015277812257409, -0.01792748272418976, -0.0058968705125153065, 0.001673688879236579, -0.019809992983937263, -0.005843885708600283, -0.005024183541536331, -0.02252778969705105, 0.020196469500660896, -0.0004904968081973493, 0.018039686605334282, -0.016007572412490845, -0.01268512848764658, 0.008558565750718117, 0.009493587538599968, 0.013003035448491573, -0.00653891870751977, 0.02490897849202156, -0.025956204161047935, 0.014885545708239079, 0.03563056141138077, 0.016020039096474648, 0.03248888999223709, -0.006495284382253885, 0.036827389150857925, -0.016830390319228172, -0.007436539512127638, -0.030469242483377457, -0.004662641789764166, 0.031292062252759933, -0.020695148035883904, -0.002945318352431059, 0.01611977443099022, 0.0013627941953018308, -0.04208844527602196, -0.004787311423569918, -0.012865899130702019, 0.013003035448491573, 0.010908586904406548, -0.008221957832574844, -0.014636206440627575, -0.013576515950262547, 0.0204458087682724, -0.003378545166924596, 0.014598806388676167, 0.009767860174179077, 0.01554629486054182, 0.02792598307132721, 0.007324337027966976, 0.03513188287615776, 0.02899814024567604, 0.007168499752879143, -0.00593738816678524, -0.005585196428000927, -0.0014788927510380745, 0.016468849033117294, -0.01710466481745243, 0.006813191808760166, -0.012205149978399277, 0.00612127548083663, 0.015147351659834385, -0.030095232650637627, 0.015234621241688728, 0.027202898636460304, -0.008726869709789753, 0.024273164570331573, 0.020670214667916298, 0.025582194328308105, -0.00890140701085329, 0.01877523586153984, 0.043659280985593796, -0.01431206613779068, -0.004466287326067686, 0.005463643465191126, 0.036029502749443054, 0.031940340995788574, 0.0017656327690929174, 0.038871970027685165, 0.0017142065335065126, -0.03266342729330063, 0.011775040067732334, -8.312927820952609e-05, 0.017304135486483574, -0.00820325780659914, 0.01877523586153984, -0.0450555793941021, 0.02546999230980873, 0.006401781924068928, -0.019485853612422943, 0.02310127019882202, -0.027402371168136597, -0.010229137726128101, -0.009119578637182713, 0.004802894778549671, 0.015222153626382351, 0.020607879385352135, -0.02523311972618103, 0.03927091136574745, -0.03937064856290817, 0.006009072996675968, 0.015870435163378716, -0.002733380300924182, -0.031715936958789825, -0.009668124839663506, 0.017154531553387642, -0.0029749274253845215, -0.02834985964000225, -0.002934409771114588, -0.01401285920292139, 0.023949023336172104, -0.01784021407365799, -0.01621950976550579, 0.017603343352675438, -0.006348797585815191, 0.0035873667802661657, 0.014237264171242714, 0.006545152049511671, 0.008489997126162052, 0.041564833372831345, -0.017690612003207207, 0.018089553341269493, -0.011201560497283936, 0.005211187992244959, 0.009113345295190811, 0.0014983722940087318, -0.04385875165462494, 0.03291276469826698, -0.004304216708987951, 0.026230476796627045, 0.010578212328255177, 0.007486407179385424, -0.017117131501436234, 0.030519109219312668, 0.025220653042197227, 0.010864952579140663, 0.015533828176558018, -0.006688522174954414, -0.001144622452557087, -0.005812718532979488, 0.019224047660827637, -0.020271271467208862, -0.025058582425117493, 0.023313209414482117, 0.017827747389674187, 0.021480565890669823, 0.025208186358213425, -0.016942594200372696, -0.0070749977603554726, -0.017117131501436234, 0.013140171766281128, 0.0025463758502155542, -0.00030836238875053823, -0.005544678773730993, 0.010684181936085224, -0.03174087032675743, -0.009238014928996563, -0.03258862346410751, -0.011027023196220398, 0.006323863752186298, -0.04652668163180351, -0.010478476993739605, 0.0006646446418017149, 0.0553034171462059, -0.015770699828863144, -0.005797134712338448, -0.0250959824770689, 0.016718188300728798, -0.018326425924897194, 0.01257292553782463, 0.003989425953477621, -0.02174237184226513, -0.005806485190987587, -0.009562155231833458, 0.02657955139875412, -0.004413302522152662, 0.0016814807895570993, 0.008321693167090416, 0.03378545120358467, -0.027826247736811638, 0.021829640492796898, 0.002613385673612356, -0.006875526625663042, -0.03176580369472504, 0.009992266073822975, 0.0009794352808967233, 0.008708168752491474, 0.00602777348831296, -0.005653764586895704, 0.019224047660827637, 0.029521752148866653, 0.013663784600794315, -0.0025884518399834633, 0.005148853175342083, -0.03862263262271881, 0.022964132949709892, -0.009992266073822975, 0.01217398326843977, 0.02755197323858738, -0.048995137214660645, -0.02722783386707306, 0.04433249682188034, -0.011132991872727871, 0.011556868441402912, -0.012741229496896267, 0.0018030336359515786, 0.009468653239309788, -0.008814138360321522, 0.02439783327281475, -0.01042860932648182, -0.022652460262179375, 0.017029862850904465, 0.009213080629706383, -0.006230361294001341, -0.010565745644271374, -0.016207043081521988, 0.0008430779562331736, 0.029023075476288795, 0.01570836454629898, -0.005697398912161589, 0.011014556512236595, -0.0006237374036572874, 0.004064227920025587, -0.0069191609509289265, 0.009755393490195274, 0.035057082772254944, 0.006314513273537159, -0.024497568607330322, 0.02652968280017376, 0.007374204695224762, 0.001144622452557087, 0.0061867269687354565, 0.006414249073714018, -0.019498320296406746, -0.013738585636019707, 0.031142456457018852, 0.009213080629706383, -0.009699292480945587, -0.02770157717168331, -0.028773736208677292, -0.004260582383722067, 0.012803563848137856, -0.011856075376272202, 0.007617310620844364, 0.05330870673060417, -0.019136779010295868, 0.04173937067389488, 0.04056747630238533, 0.042262982577085495, 0.022290918976068497, 0.015259554609656334, -0.025382723659276962, 0.011170392856001854, 0.004301100037992001, -0.00480912858620286, 0.022926732897758484, -0.016069907695055008, -0.027950916439294815, 0.018625633791089058, -0.01784021407365799, 0.033984921872615814, -0.005469877272844315, 0.015222153626382351, 0.028748800978064537, -0.018289025872945786, -0.002170808846130967, 0.02165510319173336, -0.010927286930382252, -0.009998499415814877, -0.01932378299534321, -0.004781077615916729, -0.008976208977401257, -0.010509644635021687, 0.0015209687408059835, -0.023674750700592995, 0.012130348943173885, -0.0006342564010992646, -0.006563852541148663, 0.024659639224410057, 0.02189197577536106, 0.003802421735599637, 0.005544678773730993, 0.0418141707777977, -0.019161712378263474, -0.02662941813468933, 0.014424269087612629, -0.023986423388123512, 0.029845893383026123, -0.02356254681944847, 0.006311396602541208, -0.01584550179541111, -0.0167306549847126, 0.006688522174954414, -0.020919552072882652, 0.014573872089385986, -0.023388009518384933, -0.017491139471530914, -0.015421625226736069, -0.008159622550010681, 0.01845109649002552, -0.008047420531511307, -0.00331621035002172, 0.018650567159056664, -0.021667569875717163, 0.011843608692288399, -0.020146600902080536, -0.001633171341381967, -0.0032102412078529596, -0.005033533554524183, 0.014174929820001125, -0.01401285920292139, -0.003487630980089307, 0.0031354394741356373, -0.011612970381975174, -0.034034792333841324, 0.01751607470214367, -0.02467210777103901, -0.05079038068652153, 0.01603250578045845, -0.008832838386297226, 0.014149995520710945, 0.021405763924121857, 0.017503606155514717, 0.015296955592930317, 0.017204400151968002, 0.031117523089051247, 0.031192325055599213, -0.042587123811244965, 0.006725923158228397, -0.0016752473311498761, -0.022752195596694946, 0.009468653239309788, -0.03969478979706764, 0.03615417331457138, -0.0011274804128333926, 0.00509898504242301, 0.008165856823325157, -0.003886573715135455, 0.0013160430826246738, 0.009231781587004662, -0.011937110684812069, 0.011750106699764729, 0.0016300545539706945, -0.004631474148482084, 0.02922254614531994, 0.03966985642910004, -0.0037525538355112076, -0.017865149304270744, 0.008957508020102978, -0.019635455682873726, -0.018837571144104004, 0.020695148035883904, 0.006601253524422646, 0.00787288323044777, -0.01410012785345316, -0.004597190301865339, -0.004640824627131224, 0.019386116415262222, -0.00714356591925025, -0.005077167879790068, -0.03383532166481018, -0.0031276477966457605, 0.0021411997731775045, 0.003456463571637869, 0.026454880833625793, -0.014760876074433327, -0.0044725206680595875, -0.01247319020330906, -0.02727770060300827, -0.012068013660609722, -0.012485656887292862, -0.002283011330291629, 0.02434796653687954, -0.009842662140727043, -0.006950328126549721, 0.04099135473370552, 0.010858719237148762, -0.011781273409724236, -0.05794641375541687, -0.033710651099681854, 0.016506250947713852, 0.00048504251753911376, -0.0038741067983210087, 0.004036176949739456, 0.020832283422350883, 0.02342541143298149, 0.008945041336119175, 0.0068443589843809605, -0.022889332845807076, -0.01310277171432972, 0.04001893103122711, 0.014960347674787045, 0.009661891497671604, -0.004516154993325472, -0.0056786988861858845, 0.02211638167500496, 0.013975458219647408, -0.0014656465500593185, 0.011812441051006317, 0.004562905989587307, -0.03583003208041191, 0.054106589406728745, -0.016930127516388893, -0.026803957298398018, -0.009555921889841557, 0.02355008013546467, -0.02035854011774063, -0.007386671844869852, -0.01649378426373005, 0.004201364237815142, -0.043933555483818054, 0.006887993309646845, 0.006694755516946316, -0.011482066474854946, 0.009861362166702747, -0.0005910116597078741, -0.009418785572052002, -0.037475671619176865, -0.007567442487925291, -0.00756120914593339, -0.023014001548290253, -0.02076995000243187, 0.011694004759192467, 0.022802064195275307, 0.013913123868405819, 0.0026944209821522236, -0.016331713646650314, 0.033860255032777786, -0.013389511033892632, 0.00275208055973053, -0.01061561331152916, 0.0015973288100212812, 0.015421625226736069, -0.014661140739917755, -0.02305140160024166, -0.01012940239161253, 0.012928233481943607, -0.004478754010051489, -0.009929930791258812, 0.005554029252380133, -0.021854573860764503, 0.0353064201772213, -0.051563333719968796, 0.013514180667698383, 0.004893280565738678, 0.00035764582571573555, 0.02201664447784424, 0.0012895507970824838, 0.032139815390110016, 0.04144016280770302, -0.011020789854228497, 0.008938807994127274, 0.013651316985487938, -0.04139029607176781, -0.0026585785672068596, 0.011139225214719772, 0.031990211457014084, 0.015957703813910484, -0.03333664312958717, -0.03802421689033508, 0.004014359787106514, 0.043385010212659836, -0.022465456277132034, 0.007511341478675604, -0.014773343689739704, 0.02197924442589283, 0.002889217110350728, -0.01512241829186678, -0.0018435511738061905, -0.004877696745097637, 0.0006050369702279568, -0.013252374716103077, 0.016107307747006416, -0.01952325366437435, -0.008377795107662678, -0.02007180079817772, -0.040916550904512405, 0.01724180020391941, -0.00490263057872653, 0.01145089976489544, 0.01932378299534321, -0.02444770187139511, 0.004466287326067686, 0.01645638234913349, 0.014299599453806877, 0.014698541723191738, -0.028748800978064537, 0.008508698083460331, -0.002222235081717372, -0.0005275080911815166, 0.009668124839663506, -0.0012342287227511406, 0.015608629211783409, -0.02397395670413971, -0.016842858865857124, 0.025445058941841125, -0.049045007675886154, -0.012529291212558746, 0.013850788585841656, -0.01909937709569931, -0.009730459190905094, 0.016979994252324104, 0.0026835124008357525, -0.00479666143655777, 0.034782808274030685, 0.0026476699858903885, -0.0060433573089540005, -0.013863255269825459, -0.023500213399529457, 0.007748213596642017, -0.00756120914593339, -0.010584445670247078, 0.010665480978786945, -0.05086518079042435, -0.01969779096543789, -0.013688717968761921, 0.0067383898422122, -0.022477922961115837, -0.008857772685587406, 0.004562905989587307, 0.02615567483007908, -0.019672857597470284, 0.021941842511296272, -0.02308880351483822, -0.004631474148482084, 0.029471885412931442, -0.01461127307265997, -0.0013012385461479425, -0.006856826134026051, -0.02076995000243187, 0.022054046392440796, 0.017827747389674187, -0.0018342009279876947, -0.02337554283440113, 0.006277112755924463, 0.018251623958349228, 0.00286272494122386, 0.0009287882712669671, 0.026180608198046684, -0.02490897849202156, 0.008408961817622185, -0.020420875400304794, -0.03755047172307968, 0.014972814358770847, 0.01503514964133501, 0.0008337277104146779, 0.011413498781621456, 0.014162462204694748, -0.002064839703962207, 0.00777314743027091, -0.004871463403105736, 0.01923651434481144, 0.002206651261076331, -0.00949982088059187, 0.021542901173233986, 0.0013464313233271241, -0.011419732123613358, -0.01616964302957058, -0.0012763047125190496, 0.00561013026162982, -0.019037041813135147, -0.008184556849300861, 0.0030341455712914467, -0.006099458318203688, -0.024098627269268036, -0.0010994296753779054, -0.017254266887903214, -0.011114291846752167, 0.0306687131524086, -0.0023328792303800583, 0.014237264171242714, -0.013551581650972366, 0.0076484777964651585, 0.03341144323348999, 0.016842858865857124, -0.0005715320585295558, 0.01401285920292139, 0.01821422390639782, -0.005133269354701042, -0.006457883398979902, -0.005454293452203274, 0.00961825717240572, 0.009786561131477356, 0.010815084911882877, -0.01901210844516754, -0.009325283579528332, 0.031192325055599213, 0.006887993309646845, 0.0029250597581267357, 0.0007269794004969299, -0.002300153486430645, -0.027252767235040665, -0.010266538709402084, -0.011469599790871143, -0.015583695843815804, 0.003833589144051075, 0.01380092091858387, -0.006439182907342911, -0.0026679285801947117, 0.020470742136240005, -0.021991711109876633, -0.03981946036219597, 0.02542012371122837, -0.005317157134413719, 0.02374955266714096, 0.015272021293640137, -0.0004636149387806654, -0.006065174471586943, 0.019959596917033195, 0.026130741462111473, -0.02099435403943062, 0.024796776473522186, 0.010378741659224033, 0.006068291142582893, -0.020321138203144073, 0.0005652985419146717, -0.0320650115609169, -0.02187950909137726, 0.03271329402923584, 0.001566940569318831, 0.010054600425064564, -0.012597859837114811, -0.007218367885798216, -0.026080872863531113, 0.018874971196055412, -0.009069710969924927, -0.009375151246786118, 0.006713456008583307, 0.011781273409724236, -0.003911507781594992, -0.01503514964133501, -0.019785059615969658, 0.014386868104338646, -0.004802894778549671, 0.01616964302957058, -0.002541700843721628, -0.05256068706512451, -0.005719216074794531, -0.010808851569890976, 0.009393851272761822, -0.0071373325772583485, -0.004453820176422596, 0.010646780952811241, 0.01100832223892212, 0.017391404137015343, -0.02039594016969204, 0.0068443589843809605, 0.013663784600794315, 0.011806207709014416, 0.008552332408726215, -0.022178715094923973, 0.0010370949748903513, -0.0021723671816289425, -0.006800724659115076, -0.011145459488034248, -0.007093698251992464, 0.002122499281540513, -0.0043634348548948765, 0.00938761793076992, -0.009624490514397621, -0.014548937790095806, -0.011824908666312695, -0.00491509772837162, -0.013202507048845291, 0.019548187032341957, 0.013888189569115639, 0.03428412973880768, 0.015459026210010052, -0.022714795544743538, -0.0060059563256800175, 0.0018653683364391327, 0.010727816261351109, 0.012311119586229324, -0.008976208977401257, -0.010977155528962612, -0.009724225848913193, -0.0032943931873887777, -0.0015077225398272276, -0.0013347435742616653, -0.007717045955359936, -0.02426069788634777, -0.007860415615141392, 0.0021567833609879017, -0.0076484777964651585, 0.025158317759633064, -0.014586338773369789, 0.020832283422350883, -0.00047530271694995463, -0.01891237311065197, -0.04039293900132179, -0.015421625226736069, 0.005360791459679604, -0.0058968705125153065, -0.036503247916698456, -0.004553555976599455, -0.015533828176558018, 0.02583153359591961, 0.0036434680223464966, 0.005398191977292299, 0.012791097164154053, -0.004139029420912266, 0.002868958283215761, -0.0036777521017938852, 0.004248115234076977, -0.006570085883140564, -0.005815835203975439, -0.014848144724965096, -0.0034439966548234224, 0.02755197323858738, -0.006563852541148663, 0.039420515298843384, 0.009574622847139835, 0.01275369618088007, -0.018363825976848602, -0.018987175077199936, 0.02211638167500496, 0.01649378426373005, -0.020520610734820366, 0.02049567736685276, 0.017366470769047737, -0.015060083009302616, 0.03341144323348999, -0.012142815627157688, 0.0223033856600523, -0.023113736882805824, 0.022802064195275307, 0.005840769037604332, -0.0025837768334895372, -0.015483959577977657, 0.01503514964133501, -0.001606679055839777, 0.014848144724965096, -0.01792748272418976, 0.02477184310555458, 0.0029671357478946447, -0.002273661084473133, -0.010559512302279472, -0.014835678040981293, -0.0073679713532328606, -0.007891583256423473, -0.02523311972618103, 0.00653891870751977, 0.01714206486940384, -0.013713652268052101, -0.012429555878043175, 0.0036590516101568937, -0.01729166880249977, -0.019485853612422943, -0.02787611447274685, 0.013165106065571308, -0.009075944311916828, 0.006595020182430744, -0.00460030697286129, -0.01714206486940384, -0.006457883398979902, -0.009755393490195274, 0.011095590889453888, 0.03435893356800079, -0.016581052914261818, -0.015583695843815804, -0.007978851906955242, -9.174901060760021e-05, -0.013414445333182812, 0.012198916636407375, -0.014075193554162979, -0.01690519228577614, 0.00020180885621812195, 0.002973369089886546, -0.02123122662305832, 0.011669071391224861, 0.0016861559124663472, 0.022714795544743538, -0.025856466963887215, -0.01256669219583273, 0.013227440416812897, 0.013177572749555111, -0.00168459746055305, 0.03508201614022255, -0.017815280705690384, -0.005195604171603918, 0.0007565884152427316, -0.005949854850769043, 0.004322917200624943, 0.017129598185420036, -0.008284292183816433, -0.010840018279850483, -0.026604484766721725, 0.00265390332788229, 0.011394797824323177, 0.038772232830524445, 0.0009139837347902358, -0.004519271664321423, 0.008115988224744797, -0.009911230765283108, -0.014972814358770847, -0.0029016840271651745, 0.030793381854891777, 0.025258053094148636, 0.011388564482331276, 0.004223181400448084, 0.004129679407924414, 0.020807350054383278, -0.00024661197676323354, 0.014025325886905193, 0.0007830807007849216, 0.008708168752491474, 0.005273522809147835, -0.0028907754458487034, -0.025120917707681656, -0.005292222835123539, 0.013925590552389622, 0.016231976449489594, -0.01821422390639782, 0.005513511598110199, -0.009848895482718945, 0.012068013660609722, -0.014025325886905193, 0.003771254327148199, -4.490052378969267e-05, 0.018613165244460106, -0.004251232370734215, 0.004432003013789654, 0.024223295971751213, 0.006732156500220299, 0.00398630928248167, -0.009381384588778019, -0.005466760601848364, 0.023250874131917953, 0.0007885349914431572, 0.026928626000881195, 0.014262198470532894, -0.005843885708600283, -0.011843608692288399, -0.025345321744680405, 0.0034346464090049267, 0.020932020619511604, -0.012878365814685822, -0.045230116695165634, -0.02820025570690632, -0.008627133443951607, -0.0005204954068176448, 0.015346823260188103, -0.019772592931985855, 0.015970170497894287, 0.010877419263124466, 0.0006350355688482523, -0.001293446752242744, 0.03535628691315651, 0.01503514964133501, -0.02086968533694744, -0.0008158064447343349, -0.025071049109101295, -0.007237068377435207, -0.0041078622452914715, 0.012223850935697556, 0.005211187992244959, 0.0070375967770814896, 0.018650567159056664, -0.005613246932625771, 0.0016253794310614467, 0.015907837077975273, 0.0120804812759161, -0.017590874806046486, 0.0022237934172153473, 0.012647727504372597, 0.016655853018164635, -0.0026897459756582975, 0.019535720348358154, 0.012005679309368134, 0.001393182436004281, -0.01552136056125164, -0.0035842498764395714, -0.015197220258414745, -0.008047420531511307, -0.012703828513622284, 0.028923338279128075, 0.013651316985487938, -0.01307783741503954, -0.00048543213051743805, 0.023575015366077423, -0.031142456457018852, -0.002387422136962414, 0.004671991802752018, 0.00961825717240572, -0.007180966902524233, -0.002607152331620455, -0.0011189093347638845, -0.0007573675829917192, 0.007405372336506844, -0.024310564622282982, 0.005918687675148249, -0.0073929051868617535, -0.018363825976848602, 0.01608237437903881, -0.0006969808018766344, -0.051513463258743286, -0.004425769671797752, -0.007449006661772728, -0.013514180667698383, -0.0014586339239031076, -0.003849172731861472, -0.011500767432153225, -0.019760126248002052, 0.008147155866026878, 0.026130741462111473, 0.005585196428000927, 0.007935217581689358, -0.003049729159101844, 0.01635664701461792, -0.03632871061563492, 0.016979994252324104, -0.04326033964753151, 0.006196077447384596, 0.005173787008970976, 0.022340785712003708, 0.0032507588621228933, 0.01257292553782463, -0.010141869075596333, 0.012198916636407375, -0.020159069448709488, -0.004818478599190712, -0.008913873694837093, -0.03286289796233177, 0.0033317941706627607, -0.001562265446409583, -0.014399334788322449, 0.0041452632285654545, -0.02364981733262539, -0.01307783741503954, -0.0070375967770814896, 0.03797435015439987, 0.0011820233194157481, -0.047424301505088806, -0.0390465073287487, -0.00715603306889534, 0.021031755954027176, -0.005466760601848364, 0.005279756151139736, 0.011027023196220398, -0.02291426621377468, 0.0018139422172680497, 0.006255295593291521, -0.02221611700952053, -0.009032309986650944, 0.02076995000243187, 0.020670214667916298, -0.007960151880979538, 0.041564833372831345, -0.009992266073822975, 0.020221402868628502, -0.03144166246056557, 0.014536471106112003, -0.02550739236176014, -0.012940701097249985, -0.024248231202363968, -0.004001893103122711, -0.010191736742854118, 0.004273049533367157, -0.008091054856777191, 0.012311119586229324, 0.006083874963223934, 0.013127705082297325, 0.022615058347582817, -0.014860612340271473, -0.005541562102735043, -0.008888940326869488, 0.0042886328883469105, -0.01310277171432972, 0.01802721992135048, 0.021031755954027176, -0.012610326521098614, -0.0085959667339921, 0.03829849138855934, 0.022976601496338844, -0.007536275312304497, -0.007131099235266447, 0.010210437700152397, -0.015434091910719872, 0.006211661268025637, 0.04994262754917145, -0.029995497316122055, -0.010846252553164959, 0.00512391934171319, -0.003602950368076563, 0.01358898263424635, -0.008658301085233688, -0.000362320919521153, 0.009493587538599968, -0.011955811642110348, -0.002518325112760067, -0.015296955592930317, 0.020782416686415672, -0.026031004264950752, -0.00532027380540967, 0.0006338668172247708, -0.001153193530626595, -0.0006342564010992646, 8.71226002345793e-05, -0.0015942120226100087, 0.01961052231490612, -0.003500098129734397, -0.012510591186583042, 0.0014079868560656905, -0.026006070896983147, -0.0002830388839356601, -0.013065370731055737, 0.02151796780526638, 0.015197220258414745, 0.01277863048017025, -0.02545752562582493, -0.002982719335705042, 0.0188251044601202, -0.009119578637182713, -0.0009926813654601574, -0.00850246474146843, -0.03007029928267002, 0.0045442054979503155, 0.003285042941570282, -0.018226690590381622, 0.018102020025253296, -0.010254072025418282, -0.004852762911468744, 0.001502268249168992, -0.021754838526248932, 0.002398330718278885, -0.008920107036828995, -0.005672465078532696, -0.026405014097690582, -0.0022658694069832563, 0.013426912017166615, -0.0070375967770814896, -0.018800171092152596, 0.0037338535767048597, -0.009449953213334084, -0.009150746278464794, -6.929874507477507e-05, -0.019722724333405495, -0.007286936044692993, -0.024372899904847145, -0.005578963086009026, 0.010958454571664333, -0.03770007565617561, -0.02235325239598751, -0.0120804812759161, -0.01909937709569931, 0.03568042814731598, -0.00039679984911344945, 0.0043634348548948765, 0.009699292480945587, 0.007916517555713654, 0.010983388870954514, 0.005267289001494646, 0.011051956564188004, -0.03381038457155228, 0.006813191808760166, 0.0025526094250380993, 0.0018871854990720749, -0.02685382403433323, 0.030793381854891777, 0.002713121473789215, -0.012311119586229324, -0.0023827471304684877, -0.005800251383334398, -0.019074443727731705, 0.001985362730920315, 0.031391795724630356, -0.0002475859655532986, -0.0017827748088166118, -8.843747491482645e-05, -0.02095695398747921, 0.003777487901970744, -0.011388564482331276, -0.02922254614531994, 0.017740478739142418, 0.01863810047507286, -0.007106165401637554, -0.032264482229948044, 0.012367220595479012, 0.018987175077199936, -0.007449006661772728, -0.017678143456578255, -0.010871185921132565, 0.0043977187015116215, 0.006258412264287472, 0.017129598185420036, 0.02528298832476139, -0.003640351351350546, 0.012317352928221226, 0.0037930714897811413, 0.023263340815901756, -0.01700492948293686, -0.005550912581384182, 0.0006112704868428409, -0.00018797832308337092, -0.004893280565738678, 0.017254266887903214, 0.013526647351682186, -0.0023437878116965294, -0.006255295593291521, 0.002791039878502488, 0.01984739489853382, 0.021966777741909027, -0.021443165838718414, 0.006806958466768265, -0.005451176781207323, -0.011937110684812069, 0.0017749828984960914, 0.02364981733262539, -0.006426716223359108, -0.022664926946163177, -0.0003806317690759897, 0.0029297347646206617, 0.01175634004175663, -0.015957703813910484, 0.019024575129151344, -0.015284488908946514, -0.005061584524810314, -0.0017687494400888681, -0.010765217244625092, -0.037251267582178116, -0.02894827350974083, -0.023687217384576797, 0.01151946745812893, -0.005594546906650066, 0.005105218850076199, -0.02100682258605957, 0.0014656465500593185, -0.018376294523477554, -0.0034658138174563646, 0.022178715094923973, 0.018002284690737724, -0.018937306478619576, -0.02630527876317501, 0.02272726222872734, 0.009001142345368862, 0.01061561331152916, -0.002931293100118637, 0.02254025638103485, -0.013938057236373425, 0.0014508420135825872, -0.013451846316456795, -0.0126601941883564, 0.028574263677001, -0.0070749977603554726, -0.0036652851849794388, -0.021530434489250183, 0.005856352858245373, -0.024647172540426254, -0.006831892300397158, -0.004572256468236446, -0.005479227285832167, 0.0007238626712933183, 0.010472243651747704, -0.0023998890537768602, 0.009880063124001026, -0.014848144724965096, 0.01867550052702427, 0.009300349280238152, 0.002429498126730323, 0.0011095590889453888, 0.0034751640632748604, 0.0005960763664916158, -0.007636010646820068, 0.004933798220008612, 0.01217398326843977, 0.014636206440627575, -0.02480924315750599, 0.004425769671797752, -0.029721224680542946, -0.013863255269825459, 0.010366274043917656, -0.024784309789538383, -0.031990211457014084, 0.022340785712003708, -0.0019354949472472072, -0.0013230557087808847, -0.0003438152780290693, -0.025756731629371643, -0.0024918329436331987, -0.014336999505758286, -0.0017936833901330829, 0.0026211775839328766, 0.016231976449489594, 0.01361391693353653, -0.0008384028333239257, -0.011114291846752167, 0.010609379969537258, 0.005790901370346546, -0.0002058995742117986, -0.007823015563189983, 0.006221011281013489, 0.007642244454473257, -0.004899513907730579, 0.002024322049692273, 0.005466760601848364, -0.01644391566514969, 0.006856826134026051, -0.013975458219647408, -0.004011243116110563, -0.005114568863064051, -0.015483959577977657, 0.020981887355446815, 7.587311847601086e-05, 0.00033349107252433896, -0.010659247636795044, -0.021106557920575142, 0.0069565619342029095, -0.008209491148591042, 0.01105819083750248, -0.028574263677001, -0.006757090333849192, 0.0013409770326688886, -0.010534578002989292, 0.011070657521486282, -0.010690415278077126, -0.006806958466768265, -0.014386868104338646, -0.004484987817704678, 0.008907640352845192, 0.022228583693504333, -0.021119024604558945, -0.013227440416812897, -0.02086968533694744, 0.003818005323410034, 0.013913123868405819, 0.027452237904071808, 0.020757483318448067, 0.009300349280238152, 0.008982442319393158, 0.005155086517333984, 0.014411801472306252, -0.02412356063723564, 0.04293619841337204, -0.00017219984147232026, 0.004154613241553307, 0.013027969747781754, -0.018338892608880997, 0.008078588172793388, 0.005304689984768629, -0.009019843302667141, 0.020408406853675842, -0.01092105358839035, -0.011563101783394814, -0.008022486232221127, 0.008465063758194447, -0.010927286930382252, -0.006906693801283836, 0.02119382657110691, -0.02295166626572609, -0.00032433567685075104, 0.002264311071485281, 0.004905747249722481, -0.01398792490363121, -0.00034186732955276966, 0.0056412979029119015, 0.0065887863747775555, -0.009730459190905094, -0.021779773756861687, -0.004503687843680382, 0.01765321008861065, 0.005279756151139736, -0.012205149978399277, 0.008751803077757359, -0.008147155866026878, -0.008128455840051174, -0.017865149304270744, -0.010802618227899075, 0.013713652268052101, -0.038398224860429764, -0.018463563174009323, 0.007056297268718481, 0.006950328126549721, -0.017441272735595703, 0.032638490200042725, 0.009836428798735142, 0.0020118551328778267, 0.014199863187968731, -0.017765412107110023, 0.013339643366634846, 0.018114488571882248, 0.011937110684812069, -0.006149326451122761, -0.0018295258050784469, -0.0065887863747775555, 0.0018030336359515786, 0.015633562579751015, 0.020670214667916298, -0.012903300113976002, 0.030519109219312668, 0.0033660782501101494, 0.009069710969924927, 0.005342090968042612, 0.02453497052192688, 0.007473940495401621, 0.001966662472113967, 0.010802618227899075, -0.019386116415262222, -0.016007572412490845, -0.025170784443616867, 0.015184752643108368, -0.02504611574113369, 0.016942594200372696, -0.008003786206245422, -0.002649228321388364, 0.006601253524422646, -0.007698345463722944, -0.02123122662305832, -2.6078339942614548e-05, -0.002170808846130967, -0.0006194519228301942, -0.010378741659224033, 0.008309226483106613, -0.0047997781075537205, -0.0033411444164812565, -0.005775317549705505, -0.004198247566819191, 0.001700181164778769, -0.012853432446718216, 0.0030170034151524305, 0.012940701097249985, 0.001815500552766025, 0.012211384251713753, 0.016855325549840927, 0.006925394292920828, -0.018139421939849854, 0.01756594143807888, -0.011750106699764729, 0.001877835369668901, 0.005709866061806679, -0.008327926509082317, 0.036179106682538986, 0.0050553507171571255, 0.004790428094565868, 0.010160569101572037, -0.0015723948599770665, -0.029471885412931442, 0.018139421939849854, 0.02453497052192688, -0.01797735132277012, 0.018663033843040466, 0.018613165244460106, -0.019386116415262222, -0.001309030456468463, -0.04106615483760834, -0.020695148035883904, 0.004746793769299984, -0.0029281764291226864, -0.009281649254262447, 0.0035187983885407448, -0.0012295535998418927, 0.017541008070111275, -0.002979602664709091, -0.004014359787106514, -0.022989068180322647, 0.01268512848764658, 0.02216624841094017, 0.014436735771596432, 0.00023648257774766535, -0.0015700573567301035, -0.014324532821774483, 0.007336803711950779, 0.004980549216270447, -0.009418785572052002, -0.010459776036441326, 0.01798981800675392, 0.018924839794635773, -0.014748409390449524, 0.029820960015058517, 0.004432003013789654, -0.019735192880034447, -0.007885349914431572, 0.007168499752879143, -0.00044296655687503517, -0.00777314743027091, 0.015596162527799606, 0.009206847287714481, 0.00352503196336329, 0.019972063601017, 0.00521742133423686, 0.00500548304989934, 0.017341535538434982, 0.007461473345756531, 0.006180493626743555, 0.007424072362482548, 0.036453381180763245, 0.008770504035055637, 0.010004732757806778, -0.0004180326359346509, 0.0029967445880174637, -0.0018918606219813228, -0.03024483658373356, -0.012186449952423573, -0.006055823992937803, 0.001491359667852521, -0.0005029637832194567, -0.015533828176558018, 0.017017396166920662, -0.015770699828863144, -0.015995105728507042, -0.031017787754535675, 0.0006136079900898039, 0.010310173034667969, -0.0037369702477008104, 0.027950916439294815, 0.004257465712726116, 0.0075861429795622826, 0.018750302493572235, 0.011893476359546185, 0.009256714954972267, 0.025382723659276962, 0.015284488908946514, 0.009075944311916828, 0.0030621960759162903, -0.00777314743027091, 0.0008282734197564423, -0.01732906885445118, -0.007106165401637554, 0.008932574652135372, -0.022976601496338844, 0.040442805737257004, -0.022876864299178123, 0.0025276753585785627, 0.0142871318385005, 0.00787911657243967, -0.003989425953477621, 0.016531184315681458, -0.0094063188880682, -0.017827747389674187, -0.006900460459291935, -0.014062726870179176, -0.0007211355259642005, -0.015820568427443504, -0.007791847921907902, 0.009823962114751339, 0.019037041813135147, -0.001996271312236786, -0.01296563446521759, 0.007916517555713654, 0.03109258972108364, 0.010110701434314251, 0.00016304441669490188, 0.016930127516388893, 0.000241157686104998, -0.014561405405402184, -0.015558761544525623, 0.004662641789764166, -0.019386116415262222, -0.004491221159696579, -0.002069514710456133, 0.018189288675785065, 0.006825658492743969, -0.020221402868628502, 0.013663784600794315, -0.0019261448178440332, -0.02439783327281475, 0.03620404005050659, 0.005472993943840265, 0.0019167945720255375, 0.011351163499057293, -0.01554629486054182, 0.006295813247561455, 0.01974765956401825, -0.01570836454629898, -0.017590874806046486, -0.00992369744926691, 0.027776379138231277, 0.005557145923376083, -0.008215724490582943, -0.00099579815287143, 0.015995105728507042, 0.0068817599676549435, 0.01173140574246645, 0.009312816895544529, 0.01512241829186678, 0.007766914088279009, -0.025445058941841125, -0.004157729912549257, 0.011837375350296497, 0.02685382403433323, 0.0010215112706646323, 0.006083874963223934, -0.0031775154639035463, 0.003911507781594992, -0.018413694575428963, 0.029347214847803116, 0.009468653239309788, 0.011912177316844463, 0.017092198133468628, 0.004073577933013439, -0.005781550891697407, -0.013514180667698383, -0.00026764997164718807, -0.015820568427443504, -0.0028346742037683725, 0.0072931693866848946, -0.025582194328308105, -0.0021209409460425377, 0.014000392518937588, -0.02927241288125515, -0.001689272583462298, 0.024983780458569527, 0.007636010646820068, 0.026928626000881195, 0.04370914772152901, 0.004273049533367157, 0.004503687843680382, -0.011812441051006317, -0.0016129125142470002, -0.018463563174009323, 0.0029110342729836702, 0.02249038964509964, 0.017964884638786316, -0.025532327592372894, -0.017640743404626846, 0.0005169890937395394, -0.010802618227899075, 0.012223850935697556, -0.01061561331152916, 0.014661140739917755, 0.006838125642389059, 0.011014556512236595, 0.003322443924844265, 0.004139029420912266, 0.0046532913111150265, 0.015995105728507042, 0.0024435233790427446, 0.00815338920801878, -0.0006210102583281696, -0.013239908032119274, 0.001617587637156248, 0.0169675275683403, -0.017902549356222153, -0.0188126377761364, 0.00706253107637167, -0.009144512936472893, 0.0005656881257891655, -0.008197023533284664, -0.007997552864253521, -0.011955811642110348, 0.0018638100009411573, -0.027377435937523842, 0.01412506215274334, 0.028424661606550217, -0.014648674055933952, -0.016855325549840927, -0.0010082650696858764, 0.006074524484574795, -0.007897816598415375, 0.021355897188186646, 0.008010019548237324, 0.017067262902855873, -0.0005594546673819423, -0.009312816895544529, 0.004092278424650431, -0.005080284550786018, 0.06203557550907135, 0.008801671676337719, -0.017815280705690384, 0.003228941699489951, 0.00235157972201705, -0.00845259614288807, 0.010771450586616993, -0.0043634348548948765, 0.010883652605116367, 0.00603089015930891, 0.011201560497283936, 0.003462697146460414, 0.0010098235215991735, 0.019448451697826385, 0.005295339971780777, -0.012903300113976002, 0.011388564482331276, -0.014848144724965096, 0.007523808162659407, 0.0006447753985412419, 0.011831142008304596, 0.018837571144104004, 0.014187396503984928, 0.018974708393216133, -0.025295455008745193, 0.006657354533672333, -0.00980526115745306, 0.022452987730503082, 0.004114095587283373, 0.016618452966213226, -0.014673607423901558, -0.00910711195319891, -0.008938807994127274, 0.0020710730459541082, 0.023313209414482117, -0.011108058504760265, 0.012978102080523968, -0.01310277171432972, 0.02072008140385151, 0.0027396136429160833, -0.0036060672719031572, 0.038822103291749954, -0.018550831824541092, -0.0003270628221798688, -0.013302242383360863, 0.012311119586229324, -0.0016549885040149093, 0.0026165025774389505, 0.017154531553387642, -0.00949982088059187, -0.005616364069283009, -0.009400085546076298, 0.011064424179494381, -0.01956065557897091, 0.0024559905286878347, 0.025781666859984398, 0.003306860104203224, 0.036453381180763245, -0.00808482151478529, 0.01691766083240509, -0.009911230765283108, -0.0008384028333239257, 0.007131099235266447, 0.0003860860597342253, -0.018563298508524895, -0.013626383617520332, 0.025071049109101295, -0.025906335562467575, 0.006414249073714018, 0.007735746446996927, 0.018426161259412766, -0.010397441685199738, -0.013576515950262547, 0.002607152331620455, -0.004260582383722067, 0.008708168752491474, -0.006501517724245787, 0.018750302493572235, 0.005298456642776728, 0.011868542991578579, -0.02894827350974083, 0.015172285959124565, 0.014997748658061028, -0.005049117375165224, 0.007043830584734678, -0.020794883370399475, 0.00027057190891355276, -0.004784194752573967, 0.017765412107110023, 0.022989068180322647, -0.004316683858633041, -0.0065264515578746796, -0.026055939495563507, -0.0055197449401021, -0.007311869878321886, 0.012317352928221226, 0.01588290184736252, -0.0027661060448735952, -0.01690519228577614, 0.0038242388982325792, 0.008920107036828995, -0.015272021293640137, -0.04336007311940193, -0.007910284213721752, 0.011862308718264103, 0.00114695995580405, 5.030611646361649e-05, 0.020695148035883904, -0.018600698560476303, 0.008408961817622185, -0.033062368631362915, -0.0007495757308788598, 0.005086518358439207, 0.001106442417949438, -0.0052392384968698025, -0.0009326841682195663, -0.026330212131142616, 0.018039686605334282, 0.0017718662275001407, 0.02104422263801098, -0.006255295593291521, 0.02583153359591961, 0.004921331070363522, 0.0058220685459673405, -0.006638654507696629, -0.006863059476017952, 0.00653891870751977, 0.012111647985875607, -0.028150387108325958, 0.007224601227790117, 0.018388761207461357, 0.011718939058482647, -0.006233478430658579, 0.004647057969123125, 0.013626383617520332, -0.0009435927495360374, -0.009001142345368862, 0.02002193219959736, 0.004671991802752018, -0.023537613451480865, 0.01947338692843914, -0.0008843747200444341, -0.0031790737994015217, 0.016069907695055008, -0.026330212131142616, -0.0048371790908277035, 0.008072353899478912, 0.004553555976599455, -0.00014239602023735642, 0.008240657858550549, -0.01205554697662592, 0.0037899548187851906, -0.002289244905114174, -0.01010446809232235, 0.02495884709060192, -0.006364381406456232, 0.003108947305008769, -0.005036650225520134, -0.014760876074433327, 0.020919552072882652, -0.022477922961115837, 0.011027023196220398, 0.013003035448491573, -0.003693335922434926, -0.02583153359591961, -0.007829248905181885, 0.009749160148203373, 0.0020149718038737774, -0.01482321135699749, 0.03410959243774414, -0.0026040354277938604, -0.01872536912560463, 0.01853836514055729, -0.005070934537798166, 0.0048745800741016865, -0.030743515118956566, -0.005114568863064051, -0.0008773620356805623, -0.0038522896356880665, -0.028474528342485428, -0.014785810373723507, -0.004223181400448084, -0.028175322338938713, 0.004999249707907438, 0.01676805689930916, -0.011837375350296497, 0.014112594537436962, -1.2448694178601727e-05, 0.002644553082063794, 0.007461473345756531, 0.0036652851849794388, -0.007692112121731043, 0.013564048334956169, -0.02035854011774063, -0.005077167879790068, -0.02187950909137726, 0.012417088262736797, -0.004952498245984316, 0.008446362800896168, -0.026803957298398018, 0.004516154993325472, -0.009562155231833458, -0.0024123559705913067, -0.035755231976509094, -0.017266735434532166, 0.004890163894742727, -0.01173140574246645, 0.0016471965936943889, -0.022652460262179375, 0.017964884638786316, -0.0011103382566943765, 0.009306582622230053, -0.024173429235816002, 0.027801312506198883, 0.020059332251548767, -0.01611977443099022, 0.011226493865251541, 0.01530942227691412, -0.02244052104651928, 0.03410959243774414, 0.010322639718651772, -0.0055322120897471905, -0.00829675979912281, 0.03538122400641441, -0.010715348646044731, -0.02300153486430645, 0.015247087925672531, 0.0011929319007322192, 0.006869292818009853, 0.004008126445114613, 0.016892725601792336, -0.021867042407393456, 0.010740282945334911, 0.010029666125774384, 0.00868946872651577, -0.0002201197057729587, 0.019398584961891174, -0.011743873357772827, -0.01793995127081871, 0.007960151880979538, 0.005554029252380133, 0.019111843779683113, 0.004344734363257885, -0.011089357547461987, -0.022839464247226715, 0.0023765135556459427, 0.01310277171432972, 0.021405763924121857, -0.021779773756861687, -0.01156933605670929, -0.00382735556922853, 0.008552332408726215, 0.00878297071903944, -0.0067009893245995045, -0.003113622311502695, -0.003244525520130992, 0.01401285920292139, -0.008795437403023243, -0.004784194752573967, -0.006906693801283836, 0.011768806725740433, 0.02630527876317501, 0.01482321135699749, 0.008677002042531967, 0.006093224976211786, -0.013975458219647408, 0.0076235439628362656, -0.0073181032203137875, 0.018039686605334282, 0.02081981673836708, -0.027477171272039413, -0.01042860932648182, 0.028000785037875175, 0.013115238398313522, 0.002889217110350728, -0.00705006392672658, 0.005360791459679604, -0.015571228228509426, -0.012068013660609722, 0.010877419263124466, -8.152220834745094e-05, -0.016381580382585526, 0.014249730855226517, -0.0035904834512621164, 0.017678143456578255, -0.029521752148866653, -0.002321970649063587, -0.01203684601932764, -0.024510037153959274, 0.008377795107662678, -0.019411051645874977, 0.024136027321219444, 0.02480924315750599, 0.014598806388676167, 0.012853432446718216, -0.014399334788322449, 0.006651121191680431, 0.009911230765283108, -0.024709507822990417, 0.00991746410727501, -0.006389315240085125, -0.010989622212946415, 0.015957703813910484, -0.0038678732234984636, 0.007205900736153126, 0.0012950050877407193, 0.011051956564188004, -0.024609772488474846, 0.014623739756643772, -0.0353064201772213, 0.0015653822338208556, -0.019248981028795242, 0.007523808162659407, 0.006545152049511671, 0.015085017308592796, -0.004562905989587307, -0.001757840858772397, 0.016132241114974022, 0.0024123559705913067, 0.014785810373723507, -0.009487354196608067, -0.0062241279520094395, 0.008321693167090416, -0.012011912651360035, -0.009774093516170979, 0.015820568427443504, 0.00043127877870574594, -0.030469242483377457, -0.0018591348780319095, 0.0206826813519001, -0.005893753841519356, -0.0011009881272912025, 0.013863255269825459, 0.0011033256305381656, 0.005077167879790068, -0.0012973427074030042, 0.0021147076040506363, 0.0038429393898695707, -0.01019797008484602, -0.01052211131900549, 0.014760876074433327, 0.029347214847803116, 0.025245586410164833, 0.018338892608880997, -0.027751445770263672, -0.007729513105005026, -0.006744623649865389, 0.002541700843721628, -0.006136859301477671, 0.0013838321901857853, 0.009306582622230053, -0.0051675536669790745, -0.01217398326843977, -0.0074677071534097195, 0.004525505006313324, -0.029122810810804367, 0.006894227117300034, -0.0014921388356015086, -0.0026320861652493477, -0.02565699629485607, -0.014386868104338646, 0.00805988721549511, -0.003933324944227934, 0.00929411593824625, 0.007205900736153126, 0.005981022492051125, 0.010653014294803143, 0.017952417954802513, -0.012217617593705654, 0.007012662943452597, -0.0009241131483577192, -0.029147744178771973, -0.0026975376531481743, -0.008864006027579308, -0.002748963888734579, 0.020620346069335938, 0.00829675979912281, 0.023450344800949097, -0.0055664959363639355, -0.010416141711175442, -0.022652460262179375, -0.004625240806490183, 0.0029562271665781736, -0.013713652268052101, -0.030793381854891777, 0.01850096322596073, 0.01765321008861065, 0.010584445670247078, -0.00949982088059187, -0.0034658138174563646, -0.012828498147428036, -0.002998302923515439, 0.006925394292920828, -0.002561959670856595, 0.0020850985310971737, 0.02337554283440113, 0.020645279437303543, 0.0078043146058917046, -0.007953918538987637, 0.009587089531123638, 0.0018934189574792981, -0.0037369702477008104, -0.009742926806211472, -0.0005836093914695084, 0.0290480088442564, -0.004606540314853191, -0.015596162527799606, -0.015496427193284035, 0.008521164767444134, -0.06148703023791313, -0.014449202455580235, 0.001888743950985372, 0.003437763312831521, 0.005578963086009026, -0.006725923158228397, 0.01350171398371458, -0.00480912858620286, 0.025295455008745193, -0.0339350551366806, 0.00949982088059187, -0.0027458472177386284, -0.012915766797959805, 0.0034439966548234224, -0.020657746121287346, -0.0020414642058312893, 0.005261055659502745, 0.02700342796742916, -0.013514180667698383, -0.008446362800896168, -0.015359289944171906, -0.006981495767831802, 0.0022985951509326696, 0.009655658155679703, 0.033660780638456345, -0.0025946854148060083, 0.008708168752491474, 0.008726869709789753, -0.013239908032119274, -0.017254266887903214, -0.01686779223382473, -0.025781666859984398, 5.9656333178281784e-05, 0.013352110050618649, -0.0007332128589041531, -0.01398792490363121, 0.001351106446236372, -0.028698934242129326, -0.006139975972473621, 0.018002284690737724, -0.01877523586153984, -0.0145240044221282, -0.0017905666027218103, 0.01899964176118374, -0.0013176014181226492, 0.00013187702279537916, 0.002649228321388364, -0.00827182549983263, 0.012728762812912464, 0.029197612777352333, -0.005784668028354645, -0.0015123976627364755, -0.002060164464637637, -0.005719216074794531, 0.02300153486430645, 0.002987394342198968, 0.00623971177265048, -0.018089553341269493, 0.004759260453283787, -0.0030995970591902733, 0.03652818128466606, 0.0013643525307998061, -0.004675108473747969, 0.008334160782396793, 0.003749437164515257, 0.015134884975850582, 0.002315737074241042, 0.007779380772262812, 0.04345981031656265, 0.03757540509104729, -0.03223954886198044, 0.0006475025438703597, -0.01946091838181019, 0.005856352858245373, -0.02007180079817772, 0.009287882596254349, 0.021206293255090714, 0.004971198737621307, 0.007056297268718481, -0.005875053349882364, -0.0052766394801437855, 0.009655658155679703, 0.026604484766721725, 0.00046945884241722524, -0.006676055025309324, 0.00043127877870574594, -0.0013316267868503928, 0.0012747462606057525, -0.02504611574113369, 0.004637707956135273, 0.02174237184226513, 0.003740086918696761, 0.007255768869072199, 0.0060433573089540005, 0.021954311057925224, -0.00045660228352062404, -0.015907837077975273, -0.009256714954972267, 0.008708168752491474, -0.0017531657358631492, 0.015646031126379967, -0.008645834401249886, -0.0206826813519001, 0.01690519228577614, 0.00410162890329957, -0.004129679407924414, -0.03276316076517105, 0.0025370256043970585, -0.013364577665925026, 0.03797435015439987, 0.014025325886905193, -0.0007772368262521923, -0.01830149255692959, 0.015621096827089787, 0.014411801472306252, 0.015446559526026249, -0.017553474754095078, 0.013651316985487938, -0.011257661506533623, 0.002106915693730116, -0.010135635733604431, -0.0062989299185574055, -0.0188251044601202, 0.006264645606279373, 0.01010446809232235, -0.010609379969537258, 0.014174929820001125, -0.00016625855641905218, -0.0067009893245995045, 0.015608629211783409, -0.022091446444392204, 0.01714206486940384, 0.008658301085233688, 0.01145713310688734, -0.0011789065320044756, 0.003955142106860876, -0.014349467121064663, 0.00592492101714015, -0.011974511668086052, -0.0013994158944115043, -0.009287882596254349, 0.007025130093097687, 0.02974615804851055, 0.003306860104203224, 0.019735192880034447, -0.022241050377488136, -0.00028187010320834816, -0.005267289001494646, 0.018750302493572235, 0.011999445967376232, -0.01203684601932764, 0.01401285920292139, 0.021729905158281326, 0.012978102080523968, -0.0030621960759162903, 0.028823602944612503, -0.005607013590633869, 0.005074051208794117, -0.0015505776973441243, 0.010285238735377789, -0.015346823260188103, 0.024036291986703873, 0.021592767909169197, 0.01640651561319828, -0.02625541016459465, 0.0142871318385005, -0.014050260186195374, 0.020146600902080536, -0.043933555483818054, -0.00866453442722559, -0.003260109107941389, 0.015184752643108368, -0.0077232797630131245, 0.005485460627824068, -0.003082454903051257, -0.009705525822937489, 0.017129598185420036, 0.004341617692261934, -0.02959655411541462, -0.022228583693504333, 0.012853432446718216, -0.006099458318203688, -0.010459776036441326, -0.01115169283002615, 0.0015638238983228803, -0.02667928673326969, 0.009113345295190811, -0.00012194241571705788, 0.017117131501436234, 0.01019797008484602, 0.01254799123853445, -0.011974511668086052, 0.018176821991801262, -0.002216001506894827, 0.018201757222414017, 0.0012365662259981036, 0.0003218033234588802, 0.00224872725084424, 0.007417839020490646, 0.008926340378820896, 0.022328319028019905, 0.007511341478675604, 0.018850037828087807, 0.004425769671797752, 0.000662307080347091, -0.012466956861317158, -0.0353064201772213, -0.010727816261351109, 0.000602309824898839, -0.012124115601181984, -0.0218421071767807, -0.009574622847139835, 0.02035854011774063, 0.0030590794049203396, -5.0500912038842216e-05, 0.015022682957351208, 0.01075898390263319, 0.018201757222414017, 0.010503411293029785, 0.005102101713418961, 0.023911623284220695, -0.011295062489807606, 0.023799419403076172, -0.01461127307265997, 0.01187477633357048, 0.0029079176019877195, -0.015022682957351208, 0.0021411997731775045, 0.013638850301504135, 0.016618452966213226, 0.021617703139781952, 0.006192960776388645, -0.011051956564188004, 0.008764270693063736, -0.001957312226295471, 0.003228941699489951, 0.01780281402170658, -0.0006989287212491035, -0.01770307868719101, 0.022939199581742287, -0.0016300545539706945, 7.918465416878462e-05, -0.005744150374084711, 0.022926732897758484, -0.026080872863531113, -0.006906693801283836, -0.007031363435089588, 0.03076844848692417, -0.024248231202363968, -0.017578408122062683, -0.02495884709060192, 0.014985281974077225, -0.0026975376531481743, 0.026704220101237297, -0.008857772685587406, -0.0038522896356880665, -0.03196527808904648, -0.009456186555325985, 0.018987175077199936, 0.004160846583545208, 0.008340394124388695, 0.006277112755924463, -0.004999249707907438, -0.008184556849300861, 0.021168891340494156, -0.03690219298005104, 0.011494534090161324, -0.003129206132143736, 0.005691165570169687, -0.009312816895544529, 0.00827182549983263, -0.016942594200372696, 0.023899154737591743, -0.015508893877267838, -0.016319245100021362, -0.01741633750498295, 0.007043830584734678, -0.0005598442512564361, 0.016182109713554382, -0.012348520569503307, -0.021829640492796898, 0.02490897849202156, -0.016107307747006416, -0.01503514964133501, 0.04024333506822586, -0.00724953506141901, -0.01710466481745243, 0.0019728958141058683, -0.006401781924068928, 0.01094598788768053, -0.007424072362482548, 0.017852680757641792, 0.01993466354906559, 0.00044569370220415294, -0.040218401700258255, -0.006925394292920828, 0.029870828613638878, -0.021318495273590088, 0.0011430641170591116, 0.019348716363310814, -0.0030325872357934713, 0.0036777521017938852, -0.01751607470214367, 0.005285989493131638, 0.015384224243462086, 0.004095395095646381, -0.018837571144104004, -0.005070934537798166, -0.012610326521098614, 0.02630527876317501, -0.024971313774585724, -0.02755197323858738, 0.030918052420020103, 0.0015583696076646447, 0.007673411630094051, 0.043185535818338394, 0.0185882318764925, -0.023225940763950348, 0.021804707124829292, -0.0015388899482786655, 0.0042543490417301655, -0.018139421939849854, -0.005460526794195175, 0.015446559526026249, -0.0014017533976584673, -0.004129679407924414, -0.003253875533118844, 0.011475833132863045, -0.004999249707907438, 0.008377795107662678, 0.0007682761643081903, 0.002650786656886339, -0.00028927234234288335, -0.009306582622230053, -0.014025325886905193, -0.001504605752415955, -0.0008929457399062812, 0.009518520906567574, -0.026280343532562256, -0.014810744673013687, 0.0026570199988782406, -0.006619954016059637, -0.00021349663438741118, 0.004438236355781555, -0.0032040078658610582, -0.012516824528574944, 0.009605789557099342, -0.005329623818397522, 0.03558069467544556, 0.0015326564898714423, -0.026729155331850052, -0.004996133036911488, -0.00500859972089529, 0.013352110050618649, -0.018189288675785065, 0.009343983605504036, -0.0009833312360569835, 0.026380080729722977, 0.006507751066237688, -0.016942594200372696, 0.013339643366634846, -0.021493032574653625, 0.018476029857993126, -0.010534578002989292, 0.006931627634912729, 0.0026632535737007856, 0.017964884638786316, -0.010702881962060928, 0.016231976449489594, -0.0026165025774389505, 0.020894618704915047, 0.0047997781075537205, 0.001358119072392583, 0.010964687913656235, 0.003415946150198579, -0.012529291212558746, 0.005557145923376083, -0.023537613451480865, -0.0073679713532328606, 0.015670964494347572, 0.028324924409389496, 0.030444307252764702, 0.0010464451042935252, -0.016369113698601723, 0.0033255605958402157, -0.017354004085063934, -0.003989425953477621, 0.008458830416202545, -0.011232728138566017, 0.023475278168916702, 0.010403675027191639, -0.003599833697080612, 0.008982442319393158, -0.006071407813578844, -0.0041078622452914715, 0.01512241829186678, -0.0038242388982325792, -0.014249730855226517, -0.01914924569427967, 0.016618452966213226, -0.006669821683317423, -0.021443165838718414, -0.008003786206245422, 0.014885545708239079, -0.01070911530405283, -0.0020773066207766533, 0.008053653873503208, 0.003712036181241274, -0.01626937836408615, -0.012068013660609722, 0.014673607423901558, 0.010204203426837921, -0.028000785037875175, 0.019037041813135147, 0.007978851906955242, 0.0028798668645322323, 0.016842858865857124, -0.0022985951509326696, -0.0002807013224810362, 0.005382608622312546, -0.02095695398747921, -0.002873633522540331, -0.0029141511768102646, -0.00023005431285127997, -0.0009809936163946986, -0.0011516350787132978, -0.007741979788988829, -0.007835482247173786, -0.0019697791431099176, 0.0032788095995783806, 0.01775294542312622, -0.004329150542616844, -0.018376294523477554, -0.023213472217321396, 0.014735942706465721, 0.01840122789144516, 0.0009280090453103185, -0.017578408122062683, -0.017528541386127472, 0.004332267213612795, -0.010727816261351109, 0.01729166880249977, 0.006856826134026051, -0.008352860808372498, -0.004762377589941025, -0.01143219880759716, 0.010453542694449425, -0.0033099770080298185, 0.004905747249722481, 0.004678225610405207, 0.003593600122258067, -0.005653764586895704, -0.004525505006313324, -0.004120328929275274, -0.001376040279865265, 0.010590679943561554, -0.027078229933977127, 0.006052707321941853, -0.01816435530781746, -0.014673607423901558, 0.0019074443262070417, -0.008371560834348202, 0.01584550179541111, 0.019199112430214882, -0.00552909541875124, 0.009044776670634747, 0.016157176345586777, -0.0004238765104673803, -0.0012459164718165994, -0.0015786283183842897, 0.00460030697286129, -0.008246892131865025, -0.008147155866026878, -0.015608629211783409, 0.005142619367688894, 0.012105414643883705, 0.009337750263512135, 0.009119578637182713, 0.007405372336506844, 0.006426716223359108, -0.004026826936751604, -0.015907837077975273, -0.01630677841603756, 0.02588140219449997, -0.004310450050979853, -0.020657746121287346, -0.0028861004393547773, -0.03323690593242645, -0.0019417285220697522, 0.011463366448879242, 0.0007004871149547398, 0.001757840858772397, -0.0018217340111732483, 0.008845306001603603, -0.00382735556922853, 0.005233005154877901, 0.00663242070004344, 0.0032819262705743313, 0.020882152020931244, -0.004974315408617258, -5.72213821214973e-07, 0.009393851272761822, 0.01579563319683075, 0.013663784600794315, -0.013140171766281128, -0.01307783741503954, -0.005033533554524183, -0.021493032574653625, -0.029521752148866653, -0.0015895368997007608, 0.013052903115749359, -0.01554629486054182, 0.017403870820999146, 0.03211487829685211, -0.019647924229502678, -0.01175634004175663, 0.01259162649512291, -0.0007016558665782213, -0.010191736742854118, -0.005317157134413719, -0.0035904834512621164, -0.004048644099384546, 0.014224797487258911, -0.022515323013067245, 0.012703828513622284, 0.0029920695815235376, 0.0027287050615996122, -0.0047654942609369755, -0.0033317941706627607, 0.034084659069776535, 0.002639878075569868, 0.006719689350575209, -0.018276557326316833, 0.0068194251507520676, 0.013825854286551476, -0.00301388674415648, -0.021480565890669823, 0.009911230765283108, 0.0007332128589041531, -0.014361933805048466, -0.005996605847030878, -0.002649228321388364, 0.01482321135699749, 0.01737893745303154, -0.0044725206680595875, -0.004057994112372398, 0.0002014192723436281, 0.022128848358988762, -0.008128455840051174, -0.01821422390639782, 0.0036964525934308767, -0.00857103243470192, -0.024971313774585724, 0.013788454234600067, 0.011513234116137028, 0.016094841063022614, 0.012585392221808434, -0.01501021534204483, -0.01584550179541111, 0.022939199581742287, 0.00520495418459177, -0.017067262902855873, 0.010073300451040268, 0.005635064095258713, -0.006102574989199638, 0.025445058941841125, 0.004650174640119076, 0.00357801653444767, 0.031990211457014084, -0.005597663577646017, -0.0016035622684285045, 0.014249730855226517, -0.014087661169469357, -0.002847141120582819, -0.027477171272039413, 0.02421082928776741, 0.018114488571882248, 0.0076484777964651585, -0.03191540762782097, -0.0013659108662977815, 0.007424072362482548, -0.006925394292920828, -0.0068194251507520676, 0.011781273409724236], "c5a03af5-c467-47c4-96ff-3b15682d23bf": [-0.036296017467975616, -0.0009433290688320994, -0.008551990613341331, 0.0004426638188306242, -0.04921100288629532, -0.032119911164045334, -0.01366256270557642, 0.010691599920392036, -0.0017835444305092096, 0.021305864676833153, 0.005497247911989689, 0.027582909911870956, 0.020828964188694954, 0.0008426320855505764, -0.009428457356989384, -0.011316726915538311, -0.01306965947151184, 0.019243590533733368, 0.01773555390536785, -0.0161888487637043, 0.05990904942154884, -0.018173785880208015, -0.04196726903319359, -0.006151375360786915, 0.005829145200550556, -0.017013756558299065, 0.0017738775350153446, -0.01346922479569912, -0.038873858749866486, -0.012322084978222847, 0.007559521589428186, -0.012882765382528305, 0.0331510491669178, 0.030392756685614586, 0.00040903102490119636, -0.01906314119696617, -0.022092105820775032, 0.01861201971769333, 0.036553800106048584, 0.0019462706986814737, 0.005674474872648716, 0.033047933131456375, 0.011355394497513771, 0.03036697953939438, -0.0023990042973309755, -0.02085474133491516, 0.0019382149912416935, -0.006857059895992279, 0.031423892825841904, -0.0005087209865450859, -0.006786169018596411, 0.02326502464711666, -0.006280267611145973, 0.008075090125203133, 0.05186618119478226, 0.004227661062031984, 0.02786647155880928, 0.0786241814494133, -0.006902172230184078, -0.042611729353666306, -0.0017448768485337496, -0.04400376230478287, -0.023780591785907745, -0.018006226047873497, 0.012438087724149227, 0.00515890633687377, 0.013275885954499245, 0.006364047527313232, -0.0005248325178399682, -0.017155539244413376, -0.005732476245611906, 0.03309949114918709, -0.055526718497276306, 0.05173728987574577, -0.00021347754227463156, 0.0011858072830364108, 0.0032754705753177404, -0.013752787373960018, 0.028150035068392754, 0.009815133176743984, 0.01202563289552927, 0.01008580718189478, 0.018019115552306175, -0.0036508687771856785, 0.01572483591735363, 0.01719420589506626, 0.014513250440359116, -0.04384909197688103, -0.010066472925245762, -0.06460072100162506, -0.0029870744328945875, 0.039982330054044724, 0.008577769622206688, -0.020377840846776962, -0.01038870308548212, 0.001375923166051507, -0.0016755972756072879, 0.008790440857410431, 0.02802114188671112, 0.003222302533686161, 0.011858073063194752, 0.0038732076063752174, -0.03309949114918709, -0.0038442069198936224, -0.003338305512443185, -0.023845039308071136, 0.007913975045084953, 0.0406525693833828, -0.025507746264338493, 0.03472353145480156, 0.024193046614527702, -0.058723241090774536, 0.017400434240698814, -0.023548586294054985, -0.0535675585269928, -0.01960448920726776, -0.03456886112689972, -0.024966400116682053, -0.012534757144749165, -0.027505574747920036, 0.005094460211694241, -0.009782910346984863, 0.02879449538886547, 0.0024102823808789253, -0.00903533585369587, 0.02015872485935688, -0.009518682025372982, 0.03485242277383804, 0.019514264538884163, 0.01522215735167265, 0.009480014443397522, -0.045808251947164536, 0.00018749773153103888, -0.00829420704394579, -0.01813511922955513, 0.029310064390301704, 0.0013872012495994568, 0.04887588322162628, -0.019088920205831528, 0.04531846195459366, -0.03727559372782707, -0.007430629804730415, 0.002455394482240081, -0.004217993933707476, 0.006512273568660021, 0.005703475326299667, -0.028536710888147354, 0.03652802109718323, -0.00980224460363388, 0.013024547137320042, -0.041606370359659195, -0.0242832712829113, -0.018096450716257095, 0.003924764692783356, 0.04212193936109543, -0.026680665090680122, -0.007604633923619986, 0.04732917994260788, 0.014500360935926437, 0.04784474894404411, 0.022156551480293274, -0.0323776975274086, 0.0008353819139301777, 0.02497928962111473, 0.051788847893476486, 0.04310151934623718, 0.05959970876574516, 0.006335046608000994, -0.01207074522972107, 0.00804931204766035, 0.04771585389971733, -0.019282259047031403, 0.011239390820264816, -0.014461693353950977, 0.06155886873602867, -0.04408109933137894, 0.05542360246181488, -0.003886096877977252, 0.028974944725632668, -0.06573497503995895, 0.0005667224759235978, -0.02405126579105854, -0.008274872787296772, -0.0063833813183009624, -0.030856769531965256, 0.027814915403723717, 0.0070955101400613785, 0.04740651324391365, -0.008036422543227673, 0.011303837411105633, -0.024257494136691093, -0.001933381543494761, -0.004047212190926075, 0.0034220851957798004, -0.02506951428949833, -0.04872121289372444, 0.009931135922670364, -0.002357114339247346, 0.0034671975299715996, 0.011271614581346512, 0.006306046154350042, -0.06026994809508324, 0.003989210352301598, 0.04758696258068085, -0.011548732407391071, -0.006228710990399122, -0.014410137198865414, -0.025198405608534813, 0.014423025771975517, 0.03946676105260849, 0.019643155857920647, -0.0485665425658226, 0.01821245439350605, 0.009982693009078503, -0.007250180467963219, 0.010021360591053963, -0.01767110638320446, -0.005635807290673256, 0.0033608614467084408, -0.01354655995965004, -0.006818392314016819, -0.045498911291360855, -0.0021508869249373674, -0.02959362603724003, -0.06202287971973419, 0.001836712472140789, -0.012392975389957428, 0.0364249087870121, -0.053980011492967606, 0.006509051192551851, 0.0020558289252221584, -0.026358434930443764, 0.02568819560110569, -0.026809556409716606, -0.00494301225990057, 0.04583403095602989, 0.006096596363931894, 0.006567052565515041, -0.017928890883922577, -0.011613178066909313, 0.0075788553804159164, 0.04459666833281517, -0.012160969898104668, -0.0013525615213438869, 0.049391452223062515, -0.0028597936034202576, -0.006306046154350042, 0.006016038823872805, 0.0331510491669178, 0.014203909784555435, -0.00334797240793705, -0.009157783351838589, 0.026525994762778282, -0.028124256059527397, -0.02296857163310051, -0.003944098483771086, 0.009099782444536686, -0.01906314119696617, -0.013791454955935478, 0.030238086357712746, 0.013288775458931923, 0.00844887737184763, -0.030547427013516426, -0.025108180940151215, 0.05003591254353523, -0.019733380526304245, 0.010343590751290321, -0.03611556813120842, 0.010524040088057518, 0.02747979573905468, 0.03964721038937569, 0.0007814083364792168, 0.016008399426937103, 0.03472353145480156, -0.021512091159820557, -0.003837762400507927, -0.019488485530018806, 0.024154379963874817, -0.004466111306101084, -0.005703475326299667, 0.008771107532083988, -0.031114554032683372, 0.007913975045084953, 0.02522418461740017, 0.022685009986162186, 0.03954409807920456, -0.010343590751290321, 0.02561086043715477, 0.0011334449518471956, 0.005854923743754625, 0.006992396432906389, 0.015982620418071747, 0.034362632781267166, 0.016291961073875427, 0.014229687862098217, -0.008822664618492126, -4.50870611530263e-05, 0.002394170733168721, -0.02693844959139824, -0.013946125283837318, -0.0008079923572950065, 0.01549283042550087, -0.014062128029763699, -0.02264634147286415, 0.04274062067270279, -0.013043880462646484, 0.03804894909262657, 0.040291670709848404, -0.03415640816092491, 0.03946676105260849, 0.0006472800159826875, -0.01728443056344986, -0.016846196725964546, -0.038487181067466736, 0.01497726235538721, 0.006415604148060083, -0.005281353835016489, -0.011735625565052032, -0.005713142454624176, -0.04256017133593559, 0.003918319940567017, -0.004346886184066534, -0.045885588973760605, -0.0009795799851417542, 0.022001881152391434, -0.021821431815624237, 0.024334829300642014, -0.0003753982309717685, -0.011574510484933853, -0.004698117263615131, -0.048386093229055405, 0.01604706607758999, -0.006283489987254143, -0.01581506058573723, -0.007855973206460476, -0.0395183190703392, -0.05774366110563278, -0.052897319197654724, 0.04560202360153198, 0.000683128135278821, -0.031552787870168686, -0.011258725076913834, 0.014049239456653595, -0.02070007100701332, -0.002163776196539402, -0.01004069484770298, -0.02670644409954548, -0.001491926028393209, -0.016936421394348145, 0.0036025342997163534, 0.0007882557692937553, 0.0036508687771856785, 0.019320925697684288, -0.0016772084636613727, 0.04910789057612419, 0.0015950397355481982, -0.024347716942429543, 0.004266328644007444, 0.022388558834791183, 0.020738739520311356, -0.0028227369766682386, -0.03946676105260849, -0.02124141901731491, 0.0021959992591291666, -0.003857096191495657, 0.018264010548591614, 0.006567052565515041, 0.004314662888646126, 0.0058807022869586945, 0.03415640816092491, -0.014912815764546394, 0.02662910893559456, -0.027995364740490913, -0.04812831059098244, -0.0007753665558993816, -0.02186010032892227, 0.06929239630699158, -0.01482259202748537, -0.010259810835123062, 0.006979507394134998, -0.0174391008913517, -0.0052587976679205894, -0.019875161349773407, -0.010498262010514736, -0.013791454955935478, 0.0058807022869586945, 0.006293156649917364, 0.008893555030226707, -0.0006355991936288774, 0.004723895341157913, -0.03036697953939438, 0.007295292802155018, -0.003908652812242508, 0.0001406736409990117, -0.00021045663743279874, -0.02131875418126583, -0.010878493078052998, -0.0170524250715971, -0.006625053938478231, -0.00537480041384697, -0.0279438067227602, 0.01241875346750021, -0.012135190889239311, -0.007604633923619986, 0.04024011269211769, -0.009853800758719444, 0.021769875660538673, -0.003357639303430915, 0.03348616883158684, 0.006760390475392342, 0.03353772312402725, -0.01493859477341175, 0.014281244948506355, 0.01171629223972559, 0.04645271226763725, 0.0032190801575779915, 0.004872121382504702, 0.044493552297353745, -0.024695726111531258, -0.0019929942209273577, 0.018405791372060776, 0.03645068779587746, -0.005262020044028759, 0.023961041122674942, -0.025945980101823807, 0.02879449538886547, -0.02296857163310051, -0.002703511854633689, -0.0035058651119470596, 0.000714142806828022, 0.024193046614527702, 0.03807472810149193, 0.022014770656824112, -0.0015177044551819563, -0.024180158972740173, -0.04567936062812805, 0.005516581702977419, -0.011587399989366531, 0.01203207764774561, 0.016549745574593544, -0.005996705032885075, 0.030959881842136383, -0.004114880226552486, 0.009860245510935783, 0.011729180812835693, 0.020197391510009766, -0.035857781767845154, -0.010930050164461136, 0.008152425289154053, 0.01545416284352541, 0.01218030322343111, 0.024734394624829292, -0.02624243125319481, -0.012160969898104668, 0.018276900053024292, -0.007327516097575426, 0.03222302347421646, -0.0027244568336755037, 0.014139463193714619, -0.013159883208572865, -0.03441419079899788, 0.01970760151743889, 0.008725995197892189, -0.006586386356502771, 0.022556116804480553, -0.029155394062399864, -0.01537682767957449, 0.002010716823861003, -0.0032061911188066006, 0.03650224208831787, -0.02468283660709858, -0.02225966565310955, -0.028846051543951035, 0.022311221808195114, -0.010176030918955803, -0.01381723303347826, -0.032583922147750854, -0.006360825151205063, -0.0016457909950986505, 0.0016175959026440978, 0.004298551473766565, -0.004027877934277058, -0.03861607238650322, 0.031037217006087303, -0.013153438456356525, -0.005465025082230568, -0.032893262803554535, -0.030959881842136383, -0.011284503154456615, -0.018792469054460526, 0.006177153903990984, 0.031011439859867096, 0.004253439139574766, -0.014629253186285496, 0.024257494136691093, 0.008100868202745914, 0.02171831950545311, 0.004124547354876995, -0.045962922275066376, 0.0012832819484174252, 0.03554844111204147, 0.05142794921994209, -0.03730137273669243, 0.041142359375953674, -0.0018206009408459067, 0.009286675602197647, -0.05769210308790207, 0.02833048440515995, 0.0008772718720138073, -0.012019188143312931, -0.03722403943538666, -0.003518754383549094, -0.019037364050745964, 0.00855843536555767, -0.00665727723389864, -0.02630687691271305, -0.03309949114918709, -0.0008257150184363127, 0.03645068779587746, 0.006354380398988724, -0.015699058771133423, 0.014319912530481815, 0.008545545861124992, 0.006760390475392342, -0.01366256270557642, -0.0021959992591291666, -0.04975235089659691, -0.024089934304356575, -0.0028324038721621037, -0.013366110622882843, -0.02497928962111473, -0.013250107876956463, -0.021524980664253235, 0.022169440984725952, 0.005883924197405577, 0.008790440857410431, -0.013714119791984558, -0.0065541635267436504, 0.014087907038629055, 0.0062706004828214645, -0.004437110386788845, 0.030083416029810905, 0.01634351909160614, -0.023136131465435028, -0.00019615766359493136, 0.06429138034582138, -0.004424221348017454, 0.04748385027050972, -0.015286603011190891, 0.02491484396159649, -0.01529949251562357, 0.014049239456653595, -0.0308309905230999, -0.013159883208572865, 0.02887183055281639, -0.029052279889583588, -0.013791454955935478, 0.01861201971769333, -0.0010464427759870887, -0.01765821874141693, 0.002108996966853738, 0.01389456819742918, 0.027608688920736313, 0.01229630596935749, -0.0007830195245333016, -0.012618537060916424, -0.0215765368193388, 0.028433596715331078, -0.03467197343707085, 0.0034381968434900045, 0.02693844959139824, 0.003078910056501627, 0.041374363005161285, -0.010872048325836658, 0.011928963474929333, 0.016871975734829903, 0.0015112599357962608, -0.012231860309839249, 0.01719420589506626, -0.0024924511089920998, 0.004076212644577026, -0.02227255515754223, -0.01230275072157383, -0.014461693353950977, -0.016253294423222542, 0.005513359792530537, -0.026964226737618446, 0.01221897080540657, 0.01074960082769394, 0.002157331444323063, 0.02429616078734398, 0.042379721999168396, 0.0161888487637043, 0.00875821802765131, 0.0049623460508883, 0.06413670629262924, -0.02225966565310955, -0.0016788196517154574, 0.00332863861694932, 0.0267837792634964, 0.04212193936109543, 0.03743026778101921, 0.026500215753912926, -0.006347936112433672, -0.02670644409954548, -0.00010215705697191879, 0.026061981916427612, 0.025469079613685608, -0.0030144639313220978, 0.010330702178180218, -0.05784677341580391, 0.023007240146398544, 0.03204257786273956, -0.00262778764590621, 0.023239245638251305, -0.02701578475534916, 0.014461693353950977, 0.019991165027022362, -0.013127660378813744, 0.006151375360786915, 0.018805356696248055, -0.0358320027589798, 0.034362632781267166, -0.04647849127650261, 0.02693844959139824, 0.007456407882273197, -0.005719587206840515, -0.017954669892787933, -0.0035477550700306892, 0.017606660723686218, 0.009602461941540241, -0.028897609561681747, -0.00026140929549001157, -0.029310064390301704, 0.0203262846916914, -0.0020026611164212227, -0.008197537623345852, 0.015505719929933548, -0.014680810272693634, 0.0061223749071359634, 0.007430629804730415, 0.006625053938478231, 0.011207167990505695, 0.0331510491669178, -0.015750614926218987, -0.001029525650665164, 7.924850069684908e-05, 0.014113685116171837, 0.010562707670032978, 0.0016465965891256928, -0.02856248989701271, 0.006074040196835995, -0.00121561367996037, 0.01915336586534977, 0.012328529730439186, -0.009911802597343922, -0.0033640838228166103, 0.026293989270925522, -0.0007270320202223957, 0.022839680314064026, 0.018328456208109856, -0.004662671592086554, -0.0018141563050448895, 0.009892468340694904, 0.031037217006087303, 0.01497726235538721, -0.004662671592086554, 0.03224880248308182, 0.011806515976786613, 0.02553352527320385, -0.006354380398988724, -0.03235191851854324, -0.007127732969820499, -0.00995691493153572, 0.009976248256862164, -0.00537480041384697, -0.0034671975299715996, -0.02763446606695652, 0.007978420704603195, -0.019978275522589684, -0.02833048440515995, -0.03036697953939438, -0.02414149045944214, 0.009376900270581245, -0.03676002845168114, 0.00266645522788167, -0.0016594857443124056, 0.03606401011347771, -0.006405937485396862, -0.012476755306124687, -0.015028818510472775, -0.02585575543344021, -0.01612440124154091, 0.01720709539949894, 0.0028243481647223234, -0.00888066552579403, -0.00028396540437825024, 0.0008659937884658575, 0.023677479475736618, -0.00817175954580307, -0.012438087724149227, 0.006003149785101414, 0.032738592475652695, -0.013288775458931923, 0.029774075374007225, 0.0032464698888361454, -0.010362925007939339, 0.003370528342202306, 0.02287834882736206, 0.012128747068345547, 0.008906444534659386, 0.008584214374423027, -0.0076368567533791065, 0.002426393795758486, 0.02186010032892227, 0.016369296237826347, 0.00871310569345951, 0.018341345712542534, -0.03299637883901596, 0.016691526398062706, 0.013237218372523785, 0.004614337347447872, -0.0026116762310266495, -0.055526718497276306, -0.01564750075340271, 0.021215640008449554, -0.007604633923619986, -0.0015749003505334258, -0.011058942414820194, -0.002278167987242341, 0.019179144874215126, 0.007836639881134033, 0.012631425634026527, 0.00011419034854043275, -0.04941723123192787, 0.021125415340065956, 0.016614191234111786, -0.023935263976454735, 0.009422012604773045, -0.013688340783119202, 0.007269514258950949, -0.009873135015368462, 0.021924545988440514, -0.061765093356370926, 0.017323099076747894, -0.015157710760831833, 0.017000868916511536, -0.0066830553114414215, 0.025005066767334938, 0.04266328364610672, 0.0011600288562476635, -0.021524980664253235, 0.025172626599669456, 0.015789281576871872, -0.01751643605530262, -0.004936567507684231, 0.034826647490262985, -0.00976357702165842, -0.025121070444583893, 0.03217146918177605, -0.0025923424400389194, 0.006586386356502771, -0.023316580802202225, -0.023999709635972977, 0.00012405864254105836, 0.013404778204858303, -0.016240404918789864, 0.01937248185276985, 0.042302388697862625, -0.026912670582532883, 0.014410137198865414, 0.03431107848882675, 0.011052497662603855, 0.04227660968899727, -0.010736712254583836, -0.015015929937362671, 0.011368283070623875, 0.021305864676833153, -0.01573772542178631, 0.014126574620604515, -0.019475596025586128, -0.028846051543951035, 0.03706936910748482, -0.0038732076063752174, 0.027376681566238403, -0.011877407319843769, 0.02008138969540596, 0.019875161349773407, -0.035445328801870346, -0.008307095617055893, -0.001780322170816362, -0.02483750693500042, 0.0009916635463014245, -0.01027270033955574, -0.0029403511434793472, 0.001740043400786817, -0.019900940358638763, 0.003119188826531172, -0.018341345712542534, 0.01587950624525547, 0.017696885392069817, 0.00891933310776949, 0.04544735327363014, 0.03931209072470665, 0.0026809556875377893, 0.007772193755954504, 0.02265923097729683, -0.025095291435718536, -0.025829976424574852, -0.003088576951995492, -0.0202360600233078, 0.025353075936436653, -0.025881534442305565, 0.01790311373770237, -0.019436929374933243, 0.017722664400935173, 0.016395075246691704, 0.0020832186564803123, 0.027531351894140244, -0.01845734938979149, -0.024721505120396614, -0.004398442804813385, -0.01346922479569912, 0.019346704706549644, -0.004488667473196983, 0.0037539824843406677, 0.03712092339992523, -0.031578563153743744, 0.022543229162693024, 0.013482113368809223, 0.0215765368193388, -0.002434449503198266, -0.004217993933707476, 0.020841851830482483, -0.018276900053024292, 0.017297320067882538, -0.028923386707901955, -0.0022846125066280365, -0.02514684945344925, 0.028974944725632668, -0.004188993480056524, -0.047664299607276917, -0.015170600265264511, -0.02863982506096363, 0.0068892827257514, 0.019037364050745964, 0.012908543460071087, 0.009383345022797585, 0.025121070444583893, 0.048540763556957245, 0.01867646537721157, -0.03168167918920517, -0.014513250440359116, 0.010930050164461136, -0.020184503868222237, 0.009518682025372982, -0.03776538372039795, 0.03593511879444122, -0.019114699214696884, -0.005229797214269638, 0.04990702122449875, -0.012644315138459206, -0.01489992719143629, 0.0061803762800991535, -0.0021057745907455683, 0.007391961757093668, 0.0033221938647329807, -0.014848370105028152, 0.014835480600595474, 0.026281099766492844, -0.0075079649686813354, 0.0027953474782407284, 0.037559159100055695, -0.0008192704408429563, -0.019810715690255165, 0.0406525693833828, -0.013327443040907383, 0.0391058623790741, -0.011033163405954838, 0.0064607164822518826, -0.015196378342807293, 0.02490195445716381, 0.009460680186748505, 0.008397320285439491, -0.046349599957466125, -0.01143917441368103, 0.010562707670032978, 0.004578891675919294, -0.0023619476705789566, 0.0028839607257395983, 0.010408037342131138, 0.0010891382116824389, -0.026203764602541924, 0.002059051301330328, -0.03580622747540474, -0.01627907156944275, 0.040291670709848404, 0.01781288906931877, -0.00804931204766035, 0.03869340941309929, 0.012637870386242867, -0.017103981226682663, -0.019720491021871567, -0.02054540067911148, 0.016562635079026222, -0.02974829636514187, -0.006093373987823725, 0.007875307463109493, 0.011722736991941929, 0.02825314924120903, 0.02054540067911148, -0.019243590533733368, -0.037791162729263306, 0.007836639881134033, 0.04784474894404411, 0.006103041116148233, 0.010478927753865719, 0.0030257420148700476, -0.0033447500318288803, -0.0006239183130674064, 0.0002875904901884496, 0.008197537623345852, 0.024012599140405655, -0.000890161085408181, -0.013179217465221882, 0.03652802109718323, -0.017451990395784378, -0.025494856759905815, 0.0055391378700733185, 0.023445473983883858, -0.028046920895576477, 0.002999963704496622, -0.013185662217438221, -0.004417776595801115, -0.025172626599669456, 0.0021009412594139576, -0.007172845304012299, -0.02412860095500946, 0.011890295892953873, -0.011651845648884773, 0.002089663175866008, -0.02196321450173855, -0.0014967594761401415, -0.003647646401077509, -0.0023442250676453114, -0.014319912530481815, 0.0021782764233648777, 0.006293156649917364, -0.01830267906188965, 0.01549283042550087, -0.0036605356726795435, 0.044802892953157425, -0.00808797962963581, 0.0057679214514791965, -0.0032351918052881956, -0.008983779698610306, 0.006109485402703285, -0.002123497426509857, -0.017168428748846054, -0.01828978955745697, 0.008500434458255768, -0.008377986960113049, 0.010362925007939339, 0.006438160315155983, -0.04000810906291008, 0.01626618392765522, -0.023548586294054985, 0.025752641260623932, -0.00023583226720802486, 0.005410246085375547, -0.0018528240034356713, 0.0066959448158741, 0.026203764602541924, 0.013198550790548325, -0.0010609431192278862, -0.01373989786952734, -0.016382185742259026, -0.04359130933880806, -0.01042737066745758, 0.0020928855519741774, 0.04062679037451744, 0.03606401011347771, -0.01830267906188965, -0.0325581431388855, 0.0019027696689590812, 0.048231422901153564, -0.024695726111531258, 0.007939753122627735, 0.0005212074611335993, 0.027196234092116356, 0.019243590533733368, -0.024257494136691093, -0.008307095617055893, 0.002184721175581217, 0.0046433378010988235, -0.003811983857303858, -0.015015929937362671, -0.01929514668881893, -0.018315566703677177, -0.03348616883158684, -0.024270381778478622, 0.003676647087559104, -0.005703475326299667, 0.025430411100387573, 0.017954669892787933, -0.01581506058573723, -0.01159384474158287, 0.021808544173836708, 0.014912815764546394, 0.027840694412589073, -0.03743026778101921, -0.0179160013794899, 0.014835480600595474, -0.006054706405848265, 0.022697899490594864, 9.173492435365915e-05, 0.02295568399131298, -0.023548586294054985, -0.01688486523926258, 0.028768716380000114, -0.026100650429725647, -0.008152425289154053, -0.015595944598317146, -0.031552787870168686, -0.013830122537910938, 0.01861201971769333, 0.004230883438140154, -0.023226356133818626, 0.028665604069828987, 0.010594930499792099, 0.00032525116694159806, -0.005784032866358757, -0.005561694037169218, -0.0010601375252008438, -0.0007068926352076232, -0.010917160660028458, 0.0004970401641912758, -0.05222707986831665, 0.0061610424891114235, -0.006625053938478231, 0.011336060240864754, -0.015634611248970032, -0.011245835572481155, 0.022298334166407585, 0.027118898928165436, -0.025391744449734688, 0.04070412367582321, 0.005010680295526981, -0.020648514851927757, -0.0005626945639960468, 0.004295329097658396, -0.0017464879201725125, -0.019991165027022362, 0.010659377090632915, 0.027144676074385643, 0.01617595925927162, -0.005291020963340998, -0.017219984903931618, 0.000381238671252504, 0.034981317818164825, 0.007314626593142748, 0.010575597174465656, 0.04134858772158623, -0.007823750376701355, 0.010408037342131138, -0.02289123646914959, -0.018818246200680733, -0.012251194566488266, -0.004817342385649681, -0.009989137761294842, -0.009944025427103043, 0.023857926949858665, -0.00013171161117497832, 0.020506734028458595, 0.003492975840345025, 0.018805356696248055, -0.0062706004828214645, -0.006541274022310972, 0.007572411093860865, -0.017477769404649734, -0.02046806551516056, 0.007591744884848595, 3.134192593279295e-05, 0.012160969898104668, 0.0010593319311738014, 0.010227588005363941, 0.0234196949750185, 0.002993518952280283, -0.015441273339092731, 0.013727008365094662, -0.017078204080462456, -0.026281099766492844, 0.03137233853340149, -0.012960100546479225, -0.008951556868851185, -0.010034250095486641, -0.0027695689350366592, 0.04872121289372444, 0.006921506021171808, 0.006215821485966444, 0.005287798587232828, 0.016407964751124382, -0.0017255430575460196, 0.007256625220179558, -0.009770020842552185, 0.01027914509177208, 0.010092251934111118, 0.006979507394134998, -0.017142649739980698, -0.018083561211824417, 0.02863982506096363, -0.004398442804813385, 0.012914988212287426, 0.0033254162408411503, -0.0023136131931096315, -0.015866616740822792, -0.01537682767957449, -0.001548316329717636, -0.01206430047750473, 0.000594112032558769, 0.019514264538884163, 0.009860245510935783, -0.004897899925708771, 0.01581506058573723, -0.01807067170739174, -0.013340332545340061, 0.010775379836559296, 0.011935408227145672, 0.011484285816550255, 0.01626618392765522, 0.024102821946144104, 0.0029693518299609423, 0.04054945334792137, 0.01587950624525547, -0.0024376718793064356, 0.007398406509310007, 0.018006226047873497, 0.014087907038629055, -0.012044967152178288, -0.0038989861495792866, -0.03820361942052841, -0.008229760453104973, 0.024798840284347534, 0.01389456819742918, 0.008100868202745914, -0.021151194348931313, -0.01027270033955574, -0.005977371241897345, 0.010594930499792099, -0.018818246200680733, -0.0017561549320816994, -0.007662635296583176, 0.02701578475534916, 0.0018157674930989742, -0.017928890883922577, -0.020584069192409515, 0.009022447280585766, 0.0004156770301051438, 0.03776538372039795, -0.00895800068974495, -0.059135694056749344, 0.0011479452950879931, -0.014358580112457275, -0.011342504993081093, -0.02468283660709858, 0.00172232068143785, 0.03838406875729561, 0.004105213563889265, 0.017000868916511536, -0.01923070102930069, 0.01178718265146017, -0.018972916528582573, 0.018238231539726257, 0.013108327053487301, -0.01759377121925354, -0.0051556839607656, -0.009969804435968399, 0.004056878853589296, -0.019875161349773407, -0.005126683507114649, 0.0046240040101110935, -0.011310282163321972, 0.004414554685354233, -0.002713178750127554, -0.01643374375998974, -0.010337146930396557, -0.01373989786952734, -0.011542287655174732, -0.00020924827549606562, 0.014783923514187336, 0.010569152422249317, -0.0008974112570285797, -0.007765749003738165, -0.010685155168175697, 0.010614264756441116, 0.002846904331818223, 0.02311035431921482, -0.013030990958213806, -0.008068645372986794, 0.00498167984187603, -0.01907603070139885, 0.01007936242967844, -0.012006299570202827, -0.01798044890165329, -0.019050251692533493, -0.021537870168685913, -0.0029564625583589077, -0.0003858707204926759, 0.0013050325214862823, -0.016317740082740784, 0.010259810835123062, 0.023690368980169296, -0.007308182306587696, -0.040291670709848404, -0.02147342450916767, 0.005094460211694241, -0.01946270652115345, -0.011091165244579315, 0.0012776429066434503, 0.00864221528172493, 0.021769875660538673, -0.011303837411105633, 0.007759304251521826, 0.01493859477341175, -0.0017368210246786475, 0.009009557776153088, -0.015428384765982628, -0.008390875533223152, -0.01170984748750925, 0.005780810955911875, -0.0010778602445498109, -0.005948370322585106, 0.029928745701909065, -0.00168365309946239, 0.03402751311659813, -0.03067632019519806, -0.003299637697637081, -0.025739751756191254, 0.002796958666294813, 0.019436929374933243, 0.007933308370411396, -0.011999854817986488, 0.01612440124154091, 0.022285444661974907, -0.00013745133765041828, 0.015995509922504425, -0.008300650864839554, 0.015351049602031708, -0.01210296805948019, 0.012624980881810188, 0.01393323577940464, -0.006106263492256403, -0.022014770656824112, 0.019939608871936798, -0.005381245166063309, -0.0019511041464284062, -0.02894916571676731, 0.02466994896531105, -0.00013785413466393948, -0.023754814639687538, -0.025417521595954895, -0.011200723238289356, -0.002645510481670499, -0.01742621138691902, -0.029310064390301704, -0.008274872787296772, 0.011245835572481155, -0.016949310898780823, -0.0076368567533791065, 0.006670166272670031, 0.005477914121001959, -0.020429398864507675, -0.01804489456117153, 0.005342577584087849, -0.016923533752560616, 0.014629253186285496, 0.0035477550700306892, -0.027196234092116356, -0.03449152782559395, -0.020210281014442444, 0.012006299570202827, 0.026680665090680122, -0.004617559723556042, -0.01774844154715538, -0.012483200058341026, 0.010536929592490196, 0.009828022681176662, 0.0014363413210958242, -0.011645400896668434, -0.021512091159820557, -0.0009449401986785233, -0.008429543115198612, -0.01961737684905529, 0.00879688560962677, -0.0033350831363350153, 0.013172772713005543, -0.022388558834791183, -0.00899666827172041, 0.024889064952731133, 0.028742939233779907, -0.013907457701861858, 0.021756986156105995, -0.0009610517299734056, 0.0006944062188267708, -0.009222229942679405, -0.02863982506096363, -7.607654697494581e-05, 0.009905357845127583, -0.01343055721372366, -0.01198696531355381, -0.02967096120119095, 0.007224402390420437, 0.007759304251521826, -0.0012776429066434503, 0.011323170736432076, 0.00259717577137053, 0.007250180467963219, -0.014461693353950977, 0.004230883438140154, -0.002136386465281248, 0.031011439859867096, 0.01798044890165329, -0.011278058402240276, -0.006325379945337772, 0.019320925697684288, 0.02265923097729683, -0.005861368495970964, 0.024476610124111176, 0.002548841293901205, 0.017387544736266136, -0.00040963522042147815, -0.001586984028108418, -0.010446704924106598, -0.004430666100233793, 0.01680753007531166, 0.005635807290673256, -0.016601301729679108, -0.01214808039367199, -0.004682005383074284, -0.006293156649917364, -0.023368138819932938, -0.010214699432253838, -2.2115567844593897e-05, 0.006895727477967739, -0.007881752215325832, 0.005249131005257368, 0.017451990395784378, 0.02327791415154934, -0.0019688268657773733, -0.006296379026025534, -0.0005473886267282069, 0.00808797962963581, 0.02329080179333687, -0.004746451508253813, 0.004127769730985165, -0.015595944598317146, -0.007643301505595446, -0.02170543000102043, -0.00022213747433852404, 0.025314409285783768, -0.018818246200680733, -0.03977610170841217, -0.033975958824157715, -0.010717377997934818, 0.008474655449390411, 0.007501520216464996, -0.007166401017457247, 0.006824836600571871, 0.01058848574757576, -0.016936421394348145, 0.01553149800747633, 0.020674293860793114, 0.010292034596204758, -0.0068892827257514, 0.008152425289154053, -0.005378022789955139, -0.0042921071872115135, 5.138061897014268e-05, 0.03307371214032173, -0.01074960082769394, 0.007978420704603195, -0.002624565502628684, -0.005149239208549261, 0.010485372506082058, 0.02593309059739113, 0.010485372506082058, -0.019591599702835083, -0.0005429579759947956, 0.03425952047109604, 0.020584069192409515, -0.01604706607758999, 0.010343590751290321, 0.01828978955745697, -0.020184503868222237, -0.008648660033941269, -0.030805211514234543, -0.026203764602541924, -0.0012929488439112902, -0.011851628310978413, 0.029464734718203545, 0.020970745012164116, -0.04011122137308121, 0.008191092871129513, 0.023393915966153145, -0.034749310463666916, -0.01776133105158806, -0.010027805343270302, -0.02724779024720192, 0.004479000344872475, -0.02079029567539692, -0.005007457919418812, 0.007205068599432707, 0.015982620418071747, 0.002624565502628684, 0.006786169018596411, -0.022092105820775032, -0.010620709508657455, 0.024012599140405655, 0.006576719228178263, -0.04235394299030304, -0.002763124415650964, -0.0064220489002764225, -0.009235119447112083, 0.005574583541601896, -0.007321071345359087, 0.008184648118913174, -0.03028964437544346, -0.006766835227608681, 0.006061151158064604, -0.001591011881828308, 0.022478781640529633, -0.009254452772438526, 0.0331510491669178, -0.010981607250869274, 0.009480014443397522, -0.0502936989068985, 0.009306009858846664, -0.009074004366993904, 0.016459520906209946, 0.0003177995968144387, -0.0002630204544402659, -0.00903533585369587, 0.018470238894224167, -0.008661549538373947, 0.009003113023936749, 0.0029371287673711777, -0.021679650992155075, -0.0011326393578201532, -0.02335524931550026, -0.002118663862347603, -0.0020912743639200926, -0.011471397243440151, -0.025662416592240334, 0.0015668446430936456, 0.03477508947253227, 0.0002571800141595304, -0.03276437148451805, -0.04155481234192848, 0.004733562469482422, 0.02778913639485836, -0.016459520906209946, 0.007437074091285467, 0.0037088701501488686, -0.02536596544086933, 0.011284503154456615, 0.004537002183496952, 0.008107312954962254, -0.01680753007531166, 0.010259810835123062, 0.004614337347447872, 0.0017561549320816994, 0.0364249087870121, -0.009692685678601265, 0.04408109933137894, -0.011903185397386551, -0.0016329018399119377, -0.016253294423222542, -0.02817581407725811, -0.025198405608534813, -0.018199564889073372, -0.024541055783629417, 0.0034961982164531946, -0.021937435492873192, 0.011323170736432076, -0.0107882684096694, 0.033202603459358215, 0.013843012042343616, 0.0014983706641942263, -0.009067559614777565, 0.006032150238752365, -0.001586984028108418, -0.0202360600233078, 0.012386530637741089, 0.0067217228934168816, -0.007495075464248657, -0.040833018720149994, 0.02979985438287258, 0.03511020913720131, -0.01773555390536785, 0.014461693353950977, 0.011278058402240276, -0.0049623460508883, 0.01617595925927162, 0.04851498827338219, -0.046839389950037, -0.009125560522079468, 0.005010680295526981, -0.011007385328412056, 0.019179144874215126, -0.0013090603752061725, -0.004968790337443352, 0.012721650302410126, -0.01572483591735363, -0.0007346849888563156, -0.000390905566746369, 0.033202603459358215, -0.01587950624525547, 0.0031900794710963964, -0.016407964751124382, -0.005593917332589626, 0.001466953195631504, -0.00024630475672893226, -0.005165351089090109, 0.027196234092116356, -0.026680665090680122, -0.0034091961570084095, 0.013598117046058178, -0.030470091849565506, 0.01867646537721157, 0.006489717401564121, 0.012592758052051067, 0.017555104568600655, -0.0010093862656503916, -0.013714119791984558, 0.00031316751847043633, 0.012199637480080128, -0.00859710294753313, -0.0033157493453472853, -0.009318898431956768, -0.023136131465435028, 0.009821577928960323, -0.01673019491136074, -0.001491926028393209, -0.01206430047750473, 0.0038248731289058924, 0.006766835227608681, -0.0031030774116516113, -0.020210281014442444, 0.0055198040790855885, 0.005864590406417847, -0.002473117085173726, -0.006953728850930929, -0.00023120020341593772, 0.02054540067911148, -0.003473642049357295, -0.010227588005363941, -0.01031781267374754, -0.0026696776039898396, -0.011471397243440151, 0.010582041926681995, -0.004346886184066534, -0.016407964751124382, -0.01838001422584057, -0.0032174689695239067, -0.0006738640367984772, -0.033511947840452194, -0.015247935429215431, -0.005600361619144678, -0.014435915276408195, 0.024644169956445694, 0.009254452772438526, -0.0030547427013516426, 0.0012800596887245774, 0.010188920423388481, 0.015840839594602585, 0.010859159752726555, 0.006895727477967739, -0.01861201971769333, -0.006170709151774645, -0.00531357666477561, -0.005133127793669701, -0.023058796301484108, 0.04794786125421524, 0.0048850104212760925, -0.0013541725929826498, -0.004575669765472412, 0.0031014662235975266, -0.03168167918920517, 0.00085149344522506, 0.013791454955935478, -0.014513250440359116, -0.00832642987370491, 0.0003556616429705173, -0.022556116804480553, -0.0032400251366198063, -0.014925705268979073, -0.017529325559735298, -0.0005695419968105853, 0.011819405481219292, -0.002618120750412345, -0.02131875418126583, 0.00506223738193512, 0.010672265663743019, -0.002108996966853738, -0.01929514668881893, -0.01151650957763195, 0.008178203366696835, 0.012173858471214771, 0.02140897884964943, 0.018160896375775337, -0.012979434803128242, 0.020751629024744034, -0.005929036531597376, 0.014526139944791794, -0.006132041569799185, -0.014461693353950977, 0.0008982168510556221, 0.01497726235538721, -0.0004346080531831831, 0.004359775222837925, -0.0048141200095415115, 0.004888232797384262, -0.01853468455374241, -0.006605720147490501, 0.03279015049338341, 0.0279438067227602, -0.018276900053024292, 0.0024666725657880306, -0.004836676176637411, -0.012670093216001987, -0.011220057494938374, 0.015041708014905453, 0.0013259775005280972, -0.02809847891330719, 0.00808797962963581, 0.02281390130519867, 0.012560535222291946, -0.007056842558085918, -0.006953728850930929, -0.013237218372523785, -0.004037545062601566, -0.006367269903421402, -0.012508978135883808, -0.03578044846653938, -0.027608688920736313, -0.023071685805916786, -6.031747398083098e-05, -0.02156364917755127, 0.008307095617055893, -0.01039514783769846, -0.0012615314917638898, -0.0170524250715971, 0.002925850683823228, 0.02055829018354416, 0.026964226737618446, -0.024734394624829292, -0.03005763702094555, -0.002009105635806918, 0.01596973091363907, 0.022324111312627792, 0.009376900270581245, 0.012508978135883808, -0.011606733314692974, -0.007359738927334547, -0.006115930154919624, -0.013172772713005543, 0.01580217108130455, -0.0020316618029028177, -0.008777552284300327, -0.023458361625671387, 0.002384503837674856, -0.015054597519338131, -0.009325343184173107, 0.014551918022334576, -0.013166327960789204, 0.0041213249787688255, 0.007533743511885405, 0.013153438456356525, 0.01549283042550087, -0.020725850015878677, 0.020751629024744034, 0.010111585259437561, 0.008455322124063969, 0.004288884811103344, 0.007623967714607716, 0.01674308441579342, 0.005606806371361017, 0.006876393686980009, 0.011000940576195717, 0.0016900976188480854, 0.007346849888563156, 0.010143808089196682, -0.020274726673960686, -0.01580217108130455, 0.006260933820158243, -0.016304850578308105, -0.020919188857078552, 0.006489717401564121, 0.019359594210982323, -0.013636784628033638, -0.01915336586534977, -0.020816074684262276, -0.01703953556716442, -0.014294134452939034, -0.01560883317142725, -0.007353294175118208, 0.004137436393648386, -0.0027953474782407284, -0.0010182475671172142, -0.00503968121483922, 0.006364047527313232, 0.003153023077175021, 0.00016886879166122526, 0.002039717510342598, 0.0070632873103022575, 0.0018512128153815866, -0.01805778406560421, -0.006399492733180523, 0.010453149676322937, -0.009944025427103043, 0.019436929374933243, -0.01804489456117153, 0.0018173785647377372, -0.006415604148060083, -0.0003518351586535573, 0.021988991647958755, 0.0008482711273245513, 0.0054682474583387375, -0.02349703013896942, -0.030341200530529022, 0.0023812814615666866, 0.000565111287869513, 0.013224329799413681, -0.025739751756191254, 0.012560535222291946, -0.003741093212738633, -0.0029500180389732122, -0.0038893192540854216, -0.012276972644031048, -0.0075981891714036465, -0.011896740645170212, -0.0054489136673510075, 0.013088992796838284, -0.003560644341632724, -0.018508905544877052, -0.025636639446020126, -0.023097464814782143, -0.0037894276902079582, 0.020738739520311356, 0.03147545084357262, 0.009705575183033943, 0.001331616542302072, 0.001598261995241046, -0.010092251934111118, 0.001751321367919445, -0.021885879337787628, 0.02017161436378956, -0.011239390820264816, 0.0063833813183009624, 0.011162055656313896, 0.0002527493634261191, 0.02491484396159649, 0.0052459086291491985, -0.017722664400935173, 0.016781751066446304, 0.0026213431265205145, -0.038023170083761215, -0.01776133105158806, 0.0010770546505227685, -0.02273656614124775, -0.014526139944791794, 0.03407907113432884, -0.022298334166407585, 0.0009223840897902846, 0.0002968546177726239, -0.004076212644577026, -0.0005804172251373529, 0.004785119090229273, 0.015505719929933548, 0.004060101229697466, -0.006563830189406872, -0.011922519654035568, 0.002904905704781413, 0.004546668846160173, 0.005619695410132408, 0.0044016651809215546, 0.006483272649347782, -0.007694858592003584, -0.017490658909082413, -0.020596956834197044, -0.02077740617096424, 0.0071535115130245686, -0.03696625307202339, -0.01789022423326969, 0.01143917441368103, 0.0016345129115507007, -0.018418680876493454, 0.032970599830150604, 0.0032786927185952663, 0.0014991762582212687, -0.0007129344157874584, -0.0022266111336648464, -0.008268428035080433, 0.007881752215325832, 0.0029790187254548073, -0.009183562360703945, -0.007456407882273197, -0.024876175448298454, -0.00884199794381857, 0.009209340438246727, 0.014461693353950977, -0.02933584153652191, 0.01697508990764618, 0.008738884702324867, -0.0035832005087286234, 0.013185662217438221, 0.022324111312627792, 0.007147067226469517, 0.012566979974508286, 0.0031884682830423117, -0.013868790119886398, -0.020145835354924202, -0.02187298983335495, 0.013417667709290981, -0.015441273339092731, 0.010942939668893814, 0.00253917439840734, -0.004549891222268343, 0.0048850104212760925, -0.010008472017943859, -0.036244459450244904, -3.058669972233474e-05, -0.016253294423222542, -0.008075090125203133, -0.019991165027022362, 0.004672338720411062, -0.004946234170347452, -0.00825553946197033, -0.01007936242967844, -0.00014268758241087198, 0.0012148080859333277, -0.0026052314788103104, -0.005191129166632891, -0.013417667709290981, 0.009402678348124027, 0.018431570380926132, 0.0037733162753283978, 0.023161910474300385, -0.023149020969867706, 0.02241433598101139, -0.01923070102930069, 0.007791527546942234, 0.004279217682778835, -0.0023442250676453114, 0.02982563152909279, -0.009344677440822124, 0.012444532476365566, 0.006895727477967739, 0.006341491360217333, -0.022053439170122147, 0.00841020978987217, 0.0016272627981379628, -0.01612440124154091, 0.021976104006171227, 0.006515495479106903, -0.016859086230397224, -0.0003409598721191287, -0.036553800106048584, -0.0033898623660206795, 0.01727154105901718, 0.007230846676975489, -0.0008547157631255686, 0.0009884412866085768, -0.004105213563889265, -0.010111585259437561, 0.0019881606567651033, 0.0005373189342208207, -0.0030450758058577776, 0.007810861337929964, 0.007991310209035873, 0.009795799851417542, 0.0029484068509191275, -0.0049977912567555904, -0.007205068599432707, -0.0009199673659168184, 0.005548804998397827, 0.012934322468936443, -0.006637942977249622, 0.016137290745973587, 0.02155075967311859, -0.0137785654515028, 0.01830267906188965, -0.0027856805827468634, -0.014513250440359116, -0.00801064446568489, 0.014384358190000057, 0.01362389512360096, -0.030109195038676262, 0.014139463193714619, 0.034362632781267166, 0.008622881956398487, 0.009260897524654865, 0.007946197874844074, 0.013108327053487301, 0.022917015478014946, 0.012425198219716549, 0.007739970460534096, -0.01039514783769846, 0.02647443674504757, 0.0030160751193761826, 0.01058848574757576, 0.006766835227608681, -0.012483200058341026, -0.0011487508891150355, -0.03464619815349579, -0.013959014788269997, -4.0882961911847815e-05, 0.005668030120432377, -0.005603583995252848, -0.010337146930396557, 0.007649746257811785, -0.009086892940104008, -0.020068500190973282, -0.02289123646914959, 0.0022298332769423723, -0.0007113232859410346, -0.013101882301270962, 0.01868935488164425, -0.00044387218076735735, 0.012283417396247387, 0.004733562469482422, 0.0038925413973629475, -0.003657313296571374, 0.02817581407725811, 0.015325270593166351, -0.00047287289635278285, 0.005229797214269638, -0.008242649957537651, 0.013727008365094662, -0.005980593618005514, -0.009293120354413986, 0.006521940231323242, -0.01719420589506626, 0.018264010548591614, -0.012734539806842804, -0.005954815074801445, 0.007462852634489536, 0.004240550100803375, -0.014719477854669094, 0.01828978955745697, -0.01557016558945179, -0.0067023891024291515, 0.010614264756441116, -0.01991382986307144, -0.009202895686030388, -0.014423025771975517, -0.019720491021871567, 0.0011213612742722034, 0.008964445441961288, -0.0133918896317482, -0.005999927408993244, -0.0029000723734498024, -0.001577317132614553, -0.002827570540830493, -0.0005103321745991707, 0.011174945160746574, 0.02250456064939499, -0.009048225358128548, -0.0018834358779713511, 0.014281244948506355, -0.00863577052950859, -0.005600361619144678, -0.011883852072060108, 0.003489753697067499, 0.013843012042343616, -0.018341345712542534, 0.007205068599432707, 0.005542360246181488, -0.031011439859867096, 0.013179217465221882, 0.015505719929933548, -0.004385553766041994, 0.017851555719971657, -0.0052072410471737385, 0.017619550228118896, 0.017323099076747894, -0.0099246921017766, -0.026525994762778282, -0.0022266111336648464, 0.005651918705552816, 0.014809702523052692, 0.005916147492825985, 0.004031100310385227, 0.018186675384640694, -0.008964445441961288, 0.0198493842035532, 0.009415567852556705, -0.0003953362465836108, 0.009144894778728485, -0.01529949251562357, 0.0013807566137984395, 0.010362925007939339, 0.0379716120660305, -0.003686313983052969, 0.0047947862185537815, 0.0075853001326322556, 0.014551918022334576, 0.0002628190559335053, 0.03224880248308182, 0.007031064014881849, 0.009905357845127583, 0.023535696789622307, -0.001631290651857853, -0.009641129523515701, -0.023703256621956825, -0.0006964201456867158, -0.009016002528369427, 0.00013614227646030486, 0.01039514783769846, -0.01963026635348797, -0.008577769622206688, -0.009731353260576725, -0.007224402390420437, -0.005999927408993244, 0.004427443724125624, 0.013211440294981003, 0.03168167918920517, 0.031707458198070526, 0.004301773849874735, 0.00995691493153572, 0.0044016651809215546, 0.014964372850954533, -0.02242722548544407, 0.024154379963874817, 0.01226408313959837, 0.002307168673723936, -0.021615205332636833, -0.01767110638320446, -0.010691599920392036, -0.010060028173029423, 0.018624909222126007, -0.015467052347958088, 0.018779579550027847, -0.0010230810148641467, 0.009544460102915764, -0.011310282163321972, 0.0007552271708846092, -0.009254452772438526, 0.017542215064167976, 0.01776133105158806, 0.011658290401101112, 0.003666980192065239, -0.007701302878558636, -0.0016345129115507007, 0.024180158972740173, 0.008339319378137589, 0.006431716028600931, 0.0029387399554252625, -0.003173968056216836, 0.0166657492518425, -0.01573772542178631, -0.013727008365094662, -0.023406805470585823, 0.0037894276902079582, -0.014539028517901897, 0.0017529325559735298, 0.028614046052098274, 0.006998841185122728, 0.0012115857098251581, 0.0027647356037050486, 0.012154525145888329, -0.01587950624525547, 0.024257494136691093, -0.003876429982483387, 0.01027270033955574, -0.012431642971932888, -0.002904905704781413, -0.002260445151478052, 0.005561694037169218, 0.04810253158211708, 0.006086929235607386, -0.009389789775013924, 0.007495075464248657, 0.0003226330445613712, -0.013340332545340061, 0.004060101229697466, -0.018238231539726257, 0.00899666827172041, -0.006483272649347782, -0.003370528342202306, -0.005890368949621916, 0.0026809556875377893, 0.02639710158109665, 0.0065541635267436504, -0.001515287789516151, 0.007817305624485016, 0.006045039743185043, 0.007469297386705875, -0.0024521721061319113, 0.0013751175720244646, 0.02171831950545311, 0.012573424726724625, -0.009119115769863129, -0.025005066767334938, -0.00988602451980114, 0.0018947138451039791, 0.02273656614124775, 0.004843120463192463, 0.01789022423326969, 0.001759377191774547, -0.009654018096625805, -0.023136131465435028, -0.01178718265146017, 0.013752787373960018, -0.01602128893136978, 0.010743157006800175, -0.0037572046276181936, 0.007011730223894119, 0.013456335291266441, 0.010324257425963879, 0.026126429438591003, -0.019333815202116966, 0.0011576121905818582, -0.0064607164822518826, -0.004527335055172443, 0.0016627081204205751, -0.0031353002414107323, 0.00512023875489831, -0.005987037904560566, -0.008771107532083988, -0.003473642049357295, 0.010221143253147602, -0.007727081421762705, -0.0028388486243784428, 0.024154379963874817, 0.007675524801015854, 0.03456886112689972, -0.024309050291776657, 0.008120202459394932, -0.006599275395274162, -0.007037508767098188, 0.007269514258950949, 0.01553149800747633, -0.004733562469482422, 0.0007109204889275134, 0.021847210824489594, -0.027222011238336563, 0.008990224450826645, 0.012083634734153748, 0.025391744449734688, -0.004543446470052004, -0.010072917677462101, 0.0018947138451039791, 0.005339355207979679, 0.0025262851268053055, -0.016794640570878983, 0.02724779024720192, -0.008899999782443047, -0.014539028517901897, -0.019398260861635208, 0.01799333654344082, 0.01969471387565136, 0.004649782553315163, -0.01071093324571848, -0.0203262846916914, -0.010246922262012959, -0.0048141200095415115, 0.017219984903931618, 0.007933308370411396, 0.0019301591673865914, 0.01529949251562357, -0.013907457701861858, 0.013146994635462761, 0.0024280049838125706, 0.011812960729002953, -0.0012478366261348128, 0.01019536517560482, -0.003318971488624811, 0.004791563842445612, 0.016794640570878983, -0.01643374375998974, -0.03183634951710701, 0.003811983857303858, 0.006895727477967739, 0.004636893514543772, -0.010208254680037498, 0.022208109498023987, -0.0028050143737345934, 0.006415604148060083, -0.014603475108742714, -0.006512273568660021, 0.012399420142173767, -0.006373714189976454, 0.000957829412072897, 0.01373989786952734, -0.018573351204395294, 0.020919188857078552, -0.004076212644577026, 0.022388558834791183, -0.0005957231624051929, 0.015389717184007168, 0.009409123100340366, 0.004040767438709736, -0.005291020963340998, -0.009067559614777565, 0.007230846676975489, 0.004205104894936085, -0.018083561211824417, 0.010607820004224777, 0.012876320630311966, 0.025340186432003975, -0.009473569691181183, -0.0015934285474941134, 0.005200796294957399, 0.010975162498652935, -0.011729180812835693, 0.0137785654515028, -0.022749455645680428, -0.020352061837911606, 0.00809442438185215, -0.009576682932674885, 0.0053361328318715096, 0.018276900053024292, -0.03735293075442314, -0.008313540369272232, -0.00013463183131534606, 0.008970890194177628, -0.035445328801870346, 0.0197591595351696, -0.008829109370708466, -0.004227661062031984, 0.009009557776153088, -0.023625921458005905, 0.013417667709290981, 0.005458580330014229, -0.005829145200550556, 0.008970890194177628, 0.0018673243466764688, 0.017774220556020737, -0.02910383604466915, 0.02125430665910244, 0.02162809483706951, -0.0003953362465836108, -0.01727154105901718, -0.00014510430628433824, 0.015080375596880913, -0.00653482973575592, -0.009183562360703945, 0.023935263976454735, -0.007424185052514076, -0.028588268905878067, 0.010150252841413021, -0.014049239456653595, 0.016291961073875427, -0.024785950779914856, -0.012096523307263851, 0.00014772242866456509, -0.009737798012793064, -0.019488485530018806, -0.015931064262986183, -0.009782910346984863, -0.02662910893559456, 0.0004394415009301156, 0.02528863027691841, -0.010259810835123062, 0.0059193698689341545, -1.0868977369682398e-05, 0.023007240146398544, -0.0057485876604914665, 0.013946125283837318, -0.019101809710264206, 0.007159956265240908, -0.03201679885387421, 0.010904272086918354, -0.014732367359101772, -0.012412309646606445, 0.015621722675859928, 0.0030080194119364023, -0.025030845776200294, -0.01963026635348797, -0.0031804125756025314, -0.006115930154919624, -0.0267837792634964, -0.018199564889073372, 0.0047754524275660515, -0.02147342450916767, 0.0031610787846148014, -0.02863982506096363, 0.028588268905878067, -0.003138522617518902, -0.011232946999371052, -0.021679650992155075, 0.03028964437544346, 0.025804199278354645, -0.021988991647958755, -0.0029177949763834476, 0.030702099204063416, -0.030006080865859985, 0.010478927753865719, -0.006428493652492762, 0.002341002691537142, -0.014448804780840874, 0.01852179504930973, -0.02584286592900753, -0.019359594210982323, 0.021615205332636833, -0.0019575487822294235, 0.0031949130352586508, -0.011858073063194752, 0.02967096120119095, -0.0049849022179841995, 0.0009151339181698859, -0.0008885498973540962, 0.019578710198402405, -0.009628240019083023, 0.022092105820775032, -0.02040361985564232, -0.012160969898104668, -0.0038828745018690825, 0.015389717184007168, 0.02077740617096424, 0.013166327960789204, -0.0004607892478816211, -0.0179160013794899, 0.005532693583518267, 0.0105498181656003, 0.02040361985564232, -0.009931135922670364, -0.014616364613175392, -0.02186010032892227, -0.00012587118544615805, 0.0029467956628650427, 0.012489644810557365, 0.007089065387845039, -0.005104127340018749, 0.00082450668560341, -0.004746451508253813, -0.0031320780981332064, -0.009795799851417542, 0.00808797962963581, 0.027608688920736313, 0.032429251819849014, 0.019991165027022362, 0.01859913021326065, -0.013907457701861858, 0.01182585023343563, 0.007346849888563156, 0.01226408313959837, 0.006940839812159538, -0.007211512885987759, -0.029542069882154465, 0.028124256059527397, 0.012534757144749165, -0.001631290651857853, -0.010362925007939339, -0.009074004366993904, -0.01906314119696617, -0.009357566945254803, 0.007707747630774975, 0.010530484840273857, -0.01042737066745758, 0.005964481737464666, -0.01035003550350666, 0.011381172575056553, -0.017464879900217056, -0.01602128893136978, -0.022375669330358505, -0.013140549883246422, -0.00884199794381857, -0.022633453831076622, 0.008693772368133068, 0.005909702740609646, 0.003628312610089779, 0.016227515414357185, -0.005481136497110128, 0.002930684247985482, 0.016549745574593544, -0.008725995197892189, 0.007514409255236387, -0.009911802597343922, -0.024334829300642014, -0.011812960729002953, -0.0015934285474941134, 0.009550904855132103, -0.006022483576089144, 0.012670093216001987, -0.031398117542266846, 0.018637796863913536, -0.03472353145480156, -0.006747501436620951, -0.010420925915241241, -0.00531357666477561, 0.006248044781386852, 0.02451527677476406, 0.0013573949690908194, -0.02329080179333687, 0.01000202726572752, -0.014629253186285496, -0.009505792520940304, -0.005229797214269638, -0.014693699777126312, 0.006331824231892824, -0.031552787870168686, -0.0215765368193388, 0.01522215735167265, 0.0016723750159144402, -0.028536710888147354, -0.004243772476911545, -0.005426357500255108, 0.0034091961570084095, -0.002376448130235076, -0.0006355991936288774, -0.002278167987242341, 0.0234196949750185, 0.01930803619325161, 0.0041342140175402164, -0.0016184014966711402, -0.016304850578308105, -0.0056583634577691555, 0.004069767892360687, 0.02125430665910244, 0.02536596544086933, 0.004279217682778835, -0.011226502247154713, -0.004366219975054264, 0.013288775458931923, 0.0017045980785042048, 0.0048334538005292416, -0.012405864894390106, 0.014835480600595474, -0.013127660378813744, -0.005126683507114649, 0.01510615460574627, 0.005909702740609646, -0.0165755245834589, 0.01719420589506626, -0.007211512885987759, 0.009834467433393002, -0.014500360935926437, -0.015699058771133423, 0.02521129511296749, -0.004366219975054264, 0.009505792520940304, 0.019192034378647804, 0.015518608503043652, 0.011922519654035568, 0.00875177327543497, 0.0026616218965500593, 0.014783923514187336, 0.00863577052950859, -0.021073859184980392, -0.00023442250676453114, -0.0016917088069021702, 0.0010134141193702817, -0.005909702740609646, 0.02233700081706047, 0.023806370794773102, -0.004562780261039734, -0.009028892032802105, -0.023445473983883858, 0.007501520216464996, -0.013153438456356525, -0.011767848394811153, -0.008178203366696835, 0.008500434458255768, 0.009009557776153088, -0.009712019935250282, 0.021653873845934868, 0.0012607258977368474, -0.002846904331818223, 0.0005441663670353591, 0.029206950217485428, -0.013327443040907383, 0.004250217229127884, 0.020764516666531563, -0.0008152425289154053, -0.001780322170816362, -0.022130774334073067, 0.005310354754328728, 0.0013872012495994568, -0.005787255242466927, 0.007946197874844074, 0.0017190984217450023, 0.017232874408364296, 0.010807602666318417, -0.018251121044158936, -0.012251194566488266, 0.0008232982945628464, -0.04008544236421585, -0.008861332200467587, 0.0019494930747896433, 0.0010939716594293714, 0.011162055656313896, 0.0015458996640518308, 0.009621795266866684, -0.00334797240793705, 0.026912670582532883, -0.001914047752507031, 0.016923533752560616, -0.006476827897131443, -0.0016248460160568357, 0.012154525145888329, -0.025662416592240334, 0.008242649957537651, 0.021524980664253235, 0.022465893998742104, -0.017013756558299065, 0.018354235216975212, -0.010369369760155678, -0.0023635588586330414, 0.01514482218772173, 0.010839825496077538, 0.03477508947253227, 0.003695980878546834, 0.0018592685228213668, -0.0030547427013516426, -0.03059898503124714, -0.011419840157032013, -0.00821042712777853, 0.00021710262808483094, 0.012637870386242867, 0.023406805470585823, 0.011529398150742054, -0.01385590061545372, 0.0002158942661480978, -0.009422012604773045, 0.004698117263615131, 0.007482186425477266, -0.014191020280122757, -0.018186675384640694, -0.005123461131006479, 0.013714119791984558, -0.010060028173029423, -0.002318446757271886, -0.0027599020395427942, -0.030109195038676262, 0.01580217108130455, 0.02116408385336399, -0.019720491021871567, -0.0033415276557207108, -0.01572483591735363, 0.001232530688866973, -0.003069243161007762, 0.009074004366993904, 0.00653482973575592, 0.003840984543785453, 0.030856769531965256, -0.005610028747469187, 0.023883705958724022, -0.004556335974484682, -0.01627907156944275, 0.016137290745973587, 0.010646487586200237, 0.005165351089090109, 0.0017609883798286319, 6.832288636360317e-05, 0.04016277939081192, 0.02117697149515152, -0.03511020913720131, -0.02281390130519867, -0.0010480538476258516, -0.00013604159175883979, -0.018264010548591614, 0.007894640788435936, 0.01572483591735363, 0.0005510137416422367, 0.010182475671172142, -0.005432802252471447, 0.006876393686980009, 0.014951483346521854, 0.028150035068392754, -0.0008184648468159139, 0.009531570598483086, -0.002503728959709406, -0.003212635638192296, 0.00821687187999487, -0.019166255369782448, 0.01222541555762291, 0.009248008020222187, 0.014255465939640999, 0.005845256615430117, -0.013997682370245457, 0.008899999782443047, -0.0013735065003857017, -0.012012743391096592, 0.0020526067819446325, 0.013572338037192822, -0.004698117263615131, 0.02108674682676792, 0.010382258333265781, -0.022066326811909676, 0.018096450716257095, 0.010027805343270302, -0.0025472301058471203, -0.008062200620770454, 0.008197537623345852, -0.012012743391096592, 0.015557277016341686, 0.015273713506758213, 0.008004199713468552, -0.014307023026049137, 0.02786647155880928, 0.015041708014905453, 0.019424039870500565, -0.0034188630525022745, -0.012592758052051067, 0.0027744024991989136, 0.004182548727840185, -0.03206835314631462, -0.012876320630311966, -0.011052497662603855, -0.005954815074801445, 0.010556262917816639, -0.0029032945167273283, 0.03387284278869629, -0.007379072718322277, -0.0015644278610125184, 0.015621722675859928, -0.016395075246691704, 0.008223315700888634, -0.002250778255984187, 0.004147103521972895, 0.004765785299241543, 0.013791454955935478, -0.01969471387565136, 0.02046806551516056, -0.022685009986162186, -0.0021460535936057568, 0.00016212210175581276, 0.009196450933814049, 0.029284285381436348, -0.0025456189177930355, 0.014435915276408195, -0.01202563289552927, -0.0019962163642048836, 0.006760390475392342, 0.02918117120862007, 0.01560883317142725, -0.014835480600595474, 0.00261650956235826, 0.02326502464711666, 0.009712019935250282, 0.008062200620770454, 0.022517450153827667, 0.0038538738153874874, -0.013727008365094662, -0.017477769404649734, 0.008571324869990349, -0.017451990395784378, 0.012167414650321007, 0.027686024084687233, 0.009757132269442081, -0.03291904181241989, 0.020919188857078552, -0.008854887448251247, 0.030109195038676262, -0.026603329926729202, -0.006228710990399122, -0.003666980192065239, 0.012470310553908348, -0.019088920205831528, -0.004694894887506962, -0.0012816708767786622, -0.040291670709848404, 0.01537682767957449, 0.0018882693257182837, -0.021615205332636833, -0.022375669330358505, 0.03175901249051094, -0.010775379836559296, 0.002846904331818223, -0.012856987304985523, -0.013946125283837318, -0.020983634516596794, -0.012882765382528305, 0.021976104006171227, 0.02148631401360035, -0.003960209898650646, 0.015673279762268066, -0.009286675602197647, -0.006973062641918659, -0.000961857324000448, 0.0006650026771239936, 0.008029977791011333, -0.0037765386514365673, 0.01366256270557642, 0.024412164464592934, -0.0028533488512039185, 0.014539028517901897, -0.002166998339816928, 0.010988052003085613, -0.007404851261526346, 0.00817175954580307, -0.00340597378090024, -0.02577842026948929, -0.014165242202579975, 0.004472556058317423, -0.01522215735167265, -0.014693699777126312, -0.011387617327272892, 0.016781751066446304, 0.003963432274758816, -0.005616473499685526, 0.014680810272693634, -0.0015354271745309234, -0.002858182415366173, 0.004472556058317423, -0.0013010046677663922, 0.008042867295444012, -0.01019536517560482, 0.00841020978987217, -0.019359594210982323, 0.01955293118953705, -0.0025762307923287153, -0.002837237436324358, -0.004391998518258333, 0.017606660723686218, 0.020042721182107925, 0.011071831919252872, 0.00012496492126956582, -0.009351122193038464, -0.0034027514047920704, 0.002711567562073469, 0.007623967714607716, 0.014809702523052692, -0.01362389512360096, -0.018715133890509605, 0.02701578475534916, -0.0009441346628591418, 0.008822664618492126, 0.000986830098554492, 0.016407964751124382, -0.022865459322929382, -0.004327552393078804, 0.00037479406455531716, 0.02505662478506565, -0.01899869553744793, 0.006257711444050074, -0.017877334728837013, 0.01346922479569912, -0.000702461926266551, 0.032815929502248764, -0.012431642971932888, -0.023780591785907745, -0.01163251232355833, -0.009699130430817604, 0.027273569256067276, 0.010446704924106598, -0.013211440294981003, -0.002237889217212796, -0.001491926028393209, -0.0021589426323771477, 0.019514264538884163, -0.02210499532520771, 0.0008659937884658575, 0.005922592245042324, 0.005474692210555077, 0.0009119116002693772, 0.013920347206294537, -0.003802316961809993, 0.0017174872336909175, -0.009473569691181183, -0.0019688268657773733, -0.03418218344449997, -0.0032738593872636557, -0.004404887557029724, 0.009596017189323902, -0.008191092871129513, 0.00523301912471652, 0.0035541995894163847, -0.017451990395784378, 0.0001885046949610114, 0.02998030185699463, -0.01186451781541109, -0.022994350641965866, -0.01007936242967844, 0.0009288287255913019, 0.017335986718535423, 0.006550941150635481, 0.004453222267329693, -0.004640115424990654, -0.00502034742385149, -0.051891960203647614, -0.00696661788970232, 0.04645271226763725, -0.02009427919983864, 0.0038828745018690825, 0.015982620418071747, -0.011613178066909313, -0.0012333362828940153, -0.008152425289154053, 0.0007910752901807427, 0.011406950652599335, 0.007836639881134033, -0.010562707670032978, -0.02140897884964943, -0.005407023709267378, 0.00903533585369587, -0.016936421394348145, -0.0022942794021219015, 0.022143663838505745, 0.0021766654681414366, -0.006837726105004549, 0.04088457301259041, 0.0013517559273168445, -0.013675452210009098, 0.02116408385336399, -0.007952642627060413, 0.015544387511909008, -0.02186010032892227, -0.0013251719065010548, 0.02046806551516056, -0.0035477550700306892, 0.0019204922718927264, 0.004746451508253813, 0.018392901867628098, -0.0003917111607734114, 0.009415567852556705, 0.001569261308759451, -0.004472556058317423, 0.012927877716720104, 0.007147067226469517, -0.0139719033613801, 0.00700528547167778, 0.01381723303347826, 0.011104054749011993, -0.025017956271767616, -0.010324257425963879, -0.0052587976679205894, -0.030727876350283623, -0.003998877480626106, 0.02218233048915863, 0.014887037687003613, -0.01331455446779728, 0.009318898431956768, -0.00675394618883729, 0.016163069754838943, 0.008861332200467587, -0.029284285381436348, -0.006708833854645491, -0.0028517376631498337, 0.0029467956628650427, -0.01194829773157835, -0.018341345712542534, 0.009209340438246727, 0.01564750075340271, 0.01703953556716442, -0.010814047418534756, 0.021370310336351395, -0.016549745574593544, 0.017155539244413376, -0.027737580239772797, -0.006128819193691015, 0.00016232348571065813, 0.020274726673960686, -0.012740984559059143, 0.003357639303430915, -0.014371469616889954, 0.020145835354924202, -0.00026543717831373215, 0.0029516289941966534, 0.005745365284383297, 0.010672265663743019, -0.0023925595451146364, 0.0003917111607734114, -0.012173858471214771, -0.009434902109205723, 0.01907603070139885, 0.035703111439943314, 0.0435655303299427, -0.005303910002112389, -0.022697899490594864, 0.004491889849305153, -0.026732221245765686, 0.0027582908514887094, 0.020596956834197044, -0.0178257767111063, 0.030573206022381783, -0.0018431569915264845, 0.0070826211012899876, -0.0028791273944079876, -0.00821042712777853, -0.00804931204766035, 0.028974944725632668, -0.00824909470975399, -0.012405864894390106, -0.0028807383496314287, 0.017451990395784378, -0.0032835262827575207, 0.007785082794725895, -0.006960173603147268, 0.009525125846266747, 0.0023925595451146364, -0.005890368949621916, 0.005026791710406542, -0.0030047970358282328, -0.011348949745297432, 0.00021871378703508526, 0.02093207649886608, -0.008571324869990349, -0.018508905544877052, 0.0198493842035532, 0.013211440294981003, 0.01822534389793873, 0.012895654886960983, -0.010904272086918354, 0.0001976681232918054, 0.006844170391559601, -0.025353075936436653, -0.0105498181656003, 0.00340597378090024, 0.006760390475392342, 0.014397247694432735, -0.007649746257811785, 0.008152425289154053, 0.0279438067227602, -0.000919161771889776, 0.003921542316675186, 0.020519621670246124, 0.012276972644031048, -0.007256625220179558, -0.023548586294054985, 0.0005324854864738882, 0.01019536517560482, 0.0024280049838125706, -0.01838001422584057, -0.007288848515599966, 0.007056842558085918, 0.001828656648285687, 0.011845184490084648, 0.005426357500255108, -0.0031755792442709208, -0.0001902165386127308, -0.006103041116148233, -0.00046240040683187544, 0.01199341006577015, 0.007050397805869579, -0.004569225013256073, 0.005104127340018749, -0.0135852275416255, -0.022543229162693024, -0.012057855725288391, 0.004820564761757851, -0.013997682370245457, -0.017632439732551575, -0.01720709539949894, -0.033975958824157715, -0.0066959448158741, 0.009422012604773045, -0.013830122537910938, 0.0063704922795295715, 0.014358580112457275, -0.0161888487637043, -0.011400505900382996, 0.018470238894224167, -0.008745329454541206, 0.007540187798440456, 0.01736176572740078, 0.007050397805869579, -0.01719420589506626, -0.030186530202627182, -0.009183562360703945, 0.009898913092911243, 0.011574510484933853, 0.008268428035080433, 0.0054875812493264675, 0.007843084633350372, 0.006393047980964184, -0.004543446470052004, -0.013611005619168282, 0.010775379836559296, 0.017413323745131493, 0.00863577052950859, -0.003088576951995492, -0.01526082493364811, -0.028614046052098274, -0.007939753122627735, 0.017258651554584503, -0.01968182437121868, 0.012985879555344582, 0.0057614766992628574, -0.00505901500582695, 0.0006086123757995665, 0.014616364613175392, -0.0038087614811956882, 0.01549283042550087, 0.016949310898780823, -0.0023619476705789566, 0.0014331190614029765, 0.00825553946197033, 0.0202360600233078, 0.007501520216464996, -0.0099246921017766, -0.0052974652498960495, -0.013868790119886398, -0.009505792520940304, -0.006425271276384592, 0.0037539824843406677, 0.0023893374018371105, -0.018586240708827972, 0.00035827976535074413, 0.0160986240953207, -0.034362632781267166, -0.007836639881134033, 0.0062319329008460045, 0.007230846676975489, 0.019256480038166046, 0.011058942414820194, -0.02537885494530201, 0.02195032499730587, 0.03276437148451805, -0.009460680186748505, -0.013237218372523785, -0.002049384405836463, 0.002463450189679861, 0.003960209898650646, -0.015905285254120827, 0.021280085667967796, 0.01486125960946083, 0.014719477854669094, -0.02196321450173855, 0.00879688560962677, 0.0016514300368726254, -0.014216798357665539, -0.0242832712829113, 0.010414482094347477, -0.010530484840273857, -0.01238008588552475, 0.006579941604286432, -0.009306009858846664, 0.012476755306124687, -0.0016884865472093225, -0.007282403763383627, -0.006444605067372322, -0.014397247694432735, 0.025585081428289413, -0.02483750693500042, -0.019746270030736923, -0.012728095054626465, -0.006096596363931894, -0.002118663862347603, 0.013262997381389141, 0.018238231539726257, 0.03168167918920517, 0.008036422543227673, -0.0034381968434900045, -0.02039073035120964, -0.009673352353274822, 0.0027534575201570988, -0.0024199492763727903, 0.006086929235607386, -0.0030853545758873224, 0.0028630157466977835, -0.0013872012495994568, -0.007804416585713625, 0.011812960729002953, 0.03152700886130333, -0.0023700036108493805, -0.0008571324869990349, 0.008925777859985828, -0.004672338720411062, -0.005220130085945129, -0.004517667926847935, 0.01789022423326969, 0.014577697031199932, -0.009228674694895744, -0.021847210824489594, 0.005651918705552816, 0.012483200058341026, -0.015789281576871872, -0.017542215064167976, -0.0006569469114765525], "112f62c0-766e-43c9-ace3-b96969d9fadb": [-0.03587214648723602, 0.0007293530507013202, -0.0032781765330582857, 0.015036781318485737, -0.04285680130124092, -0.032129425555467606, -0.027727771550416946, 0.004622393287718296, 0.00738660478964448, -0.002839988097548485, 0.03558221831917763, 0.024709872901439667, 0.010654897429049015, -0.0027691530995070934, -0.019636111333966255, -0.006872639060020447, -0.010404503904283047, 0.028650274500250816, 0.013718921691179276, -0.028202202171087265, 0.04910345748066902, -0.027490556240081787, -0.041301727294921875, -0.003220519982278347, -0.0012231386499479413, -0.030047204345464706, -0.006243361160159111, -0.0036867130547761917, -0.024274978786706924, -0.0026192464865744114, 0.014733673073351383, -0.00839476753026247, 0.006958300247788429, 0.0027773897163569927, 0.02387962117791176, -0.02175786718726158, -0.007887391373515129, 0.003950284793972969, 0.027859557420015335, 0.01215725764632225, -0.00703737186267972, 0.0164337120950222, -0.019517505541443825, 0.04391109198331833, 0.004059008322656155, -0.01957021839916706, -0.017461642622947693, -0.009225019253790379, 0.03993115574121475, 0.005185778718441725, 0.0020937498193234205, -0.0100750382989645, -0.007215282879769802, -0.014140636660158634, 0.03787529096007347, -0.0054098148830235004, 0.046836741268634796, 0.10200235247612, 0.002314491430297494, -0.04462273418903351, 0.003640587907284498, -0.02676573395729065, -0.005940253380686045, -0.003864624071866274, -0.010107985697686672, 0.013639849610626698, -0.013758457265794277, 0.028096772730350494, -0.007571104913949966, -0.022838512435555458, 0.01565617509186268, 0.04180251434445381, -0.04586152359843254, 0.02836034446954727, 0.005258260760456324, 0.012407651171088219, -0.021863294765353203, -0.013481706380844116, 0.03115420788526535, -0.02177104540169239, 0.01087893359363079, 0.007531569339334965, 0.02361604943871498, 0.00538675207644701, 0.03745357692241669, 0.02175786718726158, 0.009040518663823605, -0.048260029405355453, -0.010490164160728455, -0.04006294161081314, -0.0018367671873420477, 0.0572478324174881, -0.02177104540169239, -0.019253931939601898, -0.01424606516957283, 0.016987213864922523, -0.016354640945792198, -0.0005790346767753363, 0.04127537086606026, 0.0005740927299484611, 0.01851593144237995, 0.024986622855067253, -0.03357907012104988, 0.009547894820570946, 0.003726248862221837, -0.015010423958301544, 0.0056700920686125755, 0.04111722856760025, -0.01215725764632225, 0.03081156313419342, 0.025157945230603218, -0.0428304448723793, 0.0009002630249597132, 0.005732690449804068, -0.03326278179883957, -0.019267112016677856, -0.050579462200403214, -0.03848150745034218, -0.0022436564322561026, -0.022970298305153847, 0.009778520092368126, -0.018107393756508827, 0.03811250627040863, 0.002490755170583725, -0.01669728383421898, 0.01681589148938656, -0.030864277854561806, 0.01598563976585865, 0.02709519863128662, 0.0028333987575024366, -0.004533438012003899, -0.046388667076826096, 0.017198070883750916, -0.019412076100707054, -0.0054460559040308, 0.03439614176750183, 0.02630448341369629, 0.05846026539802551, -0.018384145572781563, 0.02409047819674015, -0.03837607800960541, -0.018621360883116722, -0.028123129159212112, -0.00798623077571392, 0.0117487208917737, -0.02894020266830921, -0.026805270463228226, 0.032261211425065994, -0.019715184345841408, 0.009396340698003769, -0.029493704438209534, -0.01112273707985878, -0.03508143126964569, 0.018146930262446404, 0.05571911484003067, -0.04435916244983673, -0.008302517235279083, 0.05719511955976486, 0.006622246000915766, 0.05619354546070099, 0.0444645918905735, -0.06636742502450943, 0.015432138927280903, 0.01759342849254608, 0.03993115574121475, 0.03650471940636635, 0.04451730474829674, 0.021125294268131256, -0.013481706380844116, 0.0072416397742927074, 0.0547175407409668, -0.01304022315889597, 0.008902143687009811, -0.027385128661990166, 0.03402714058756828, -0.0246835146099329, 0.058671120554208755, 0.009139358066022396, 0.04607238247990608, -0.04399016126990318, -0.005208841059356928, -0.024116836488246918, 0.02025550603866577, -0.0062894863076508045, -0.050105031579732895, 0.020716756582260132, 0.005320859141647816, 0.022311367094516754, -0.012078185565769672, 0.01378481462597847, -0.022522225975990295, -0.006348790135234594, -0.004622393287718296, 0.015774782747030258, -0.005946842487901449, -0.053109753876924515, 0.011465380899608135, 0.019886504858732224, -0.013073169626295567, 0.020347757264971733, 0.016512785106897354, -0.032709281891584396, 0.0030310777947306633, 0.03381628543138504, -0.012005703523755074, 0.00738660478964448, -0.015471674501895905, -0.03323642536997795, 0.0243145152926445, 0.01396931428462267, 0.020809007808566093, -0.022100510075688362, 0.025342445820569992, 0.011379719711840153, -3.88150911021512e-05, 0.006595888640731573, -0.018146930262446404, 0.015379425138235092, -0.0007676534005440772, -0.010516521520912647, 0.0032946497667580843, -0.008790125139057636, 0.022443152964115143, -0.01738257147371769, -0.048839885741472244, 0.020084183663129807, -0.0041413744911551476, 0.03663650527596474, -0.043120376765728, 0.0026456036139279604, 0.024525372311472893, -0.0082168560475111, 0.028676630929112434, -0.05967269465327263, 0.016947677358984947, 0.051370177417993546, 0.005063876509666443, 0.020927615463733673, -0.03531864285469055, -0.02733241394162178, 0.005479002371430397, 0.03044256381690502, 0.007610640954226255, -0.016130605712532997, 0.014839102514088154, -0.010378146544098854, -0.00782808754593134, 0.00556136853992939, 0.021243901923298836, 0.012275864370167255, 0.008256392553448677, -0.0012536142021417618, 0.03255113959312439, -0.0065267011523246765, -0.017224429175257683, -0.004124901257455349, 0.02422226406633854, -0.03339456766843796, 0.0010938236955553293, 0.019596576690673828, 0.006414683070033789, -0.006118164397776127, -0.0030327250715345144, -0.0060423873364925385, 0.060621555894613266, -0.03900865092873573, 0.019425254315137863, -0.01945161260664463, -0.004480723757296801, 0.030310777947306633, 0.015392603352665901, -0.014008850790560246, 0.011689417064189911, 0.048128243535757065, 0.004055713769048452, -0.005841413978487253, -0.0019026602385565639, 0.003044256241992116, 0.010496754199266434, 0.013705742545425892, 0.024973444640636444, -0.040273796766996384, 0.020993508398532867, 0.03581942990422249, 0.023550156503915787, 0.03639928996562958, -0.010990951210260391, -0.0002464809804223478, -0.016249211505055428, -0.008829660713672638, 0.0024512193631380796, 0.023668764159083366, 0.01298091933131218, 0.03813886642456055, 0.009027340449392796, -0.027648700401186943, -0.003683418268337846, -0.021507473662495613, -0.010496754199266434, -0.006859460845589638, 0.005007867701351643, 0.004793715197592974, -0.012901848182082176, -0.013692564330995083, 0.046968527138233185, 0.005274733994156122, 0.02652851864695549, 0.03639928996562958, -0.023668764159083366, 0.05110660567879677, 0.03176042437553406, -0.026792090386152267, -0.004635571967810392, -0.017646143212914467, 0.0003195810131728649, 0.03542407229542732, -0.02978363260626793, -0.05466482788324356, -0.025434695184230804, -0.04367387667298317, -0.006217003799974918, 0.00798623077571392, -0.05893469229340553, 0.011715774424374104, 0.019649291411042213, -0.041855230927467346, 0.021718330681324005, -0.008414534851908684, -0.004836545791476965, -0.00909323338419199, -0.05909283831715584, 0.013369688764214516, -0.03937765210866928, -0.017435286194086075, -0.021744687110185623, -0.027253342792391777, -0.04543980956077576, -0.05482297018170357, 0.026686662808060646, -0.024591265246272087, -0.015669353306293488, -0.02584323287010193, 0.005004572682082653, -0.02663394808769226, 0.021955545991659164, -0.014667780138552189, -0.031075136736035347, 0.0013623376144096255, -0.016051532700657845, 0.020005112513899803, 0.000745414465200156, 0.0025698267854750156, -0.005755752790719271, 0.01934618316590786, 0.056351687759160995, -0.009831234812736511, -0.023431548848748207, -0.006477281451225281, 0.02376101352274418, -0.0004178027738817036, 0.0002557471743784845, -0.043963804841041565, -0.02318115532398224, -0.020993508398532867, -0.02144158072769642, 0.033051926642656326, 0.01632828451693058, 0.01296774111688137, -0.0004295399412512779, 0.01690814271569252, -0.025750981643795967, -0.013264259323477745, -0.005103412549942732, -0.046151451766490936, 0.01407474372535944, -0.021059401333332062, 0.04994688928127289, -0.006892407312989235, -0.014786387793719769, 0.008467249572277069, -0.005811762064695358, -0.01424606516957283, -0.03431707248091698, -0.016763176769018173, 0.008645161055028439, 0.0070439609698951244, 0.03176042437553406, -0.016143783926963806, -0.008197088725864887, 0.0031019127927720547, -0.03160227835178375, 0.015708889812231064, -0.003314417554065585, -0.00503751914948225, -0.012763473205268383, -0.02121754363179207, -0.0005168481729924679, -0.034237999469041824, 0.00012015175889246166, -0.0015526036731898785, -0.016631390899419785, 0.02063768543303013, 0.007353658322244883, -0.011280880309641361, 0.05756412073969841, -0.03368449956178665, 0.011551042087376118, 0.006039092782884836, 0.03289378061890602, 0.01946479082107544, 0.022746261209249496, 0.0027757424395531416, 0.024841658771038055, 0.04496537894010544, 0.03555585816502571, -0.011366541497409344, -0.003815204370766878, 0.025105230510234833, 0.005073760636150837, -0.017514357343316078, 0.0315232090651989, 0.029256489127874374, -0.00431928550824523, 0.010266127996146679, -0.011346773244440556, 0.03837607800960541, -0.03310463950037956, 0.017053106799721718, -0.024538550525903702, 0.004859608132392168, 0.01205182820558548, 0.03950943797826767, -0.004009588621556759, 0.003841561498120427, -0.021612901240587234, -0.014048386365175247, -0.0021777634974569082, -0.015300353057682514, 0.007867623120546341, -0.019781077280640602, -0.010727379471063614, 0.015036781318485737, 0.00674414774402976, 0.008546321652829647, -0.01145879179239273, 0.015537568368017673, -0.037005506455898285, -0.00022753674420528114, 0.007821498438715935, 0.015129031613469124, 0.01668410561978817, 0.031892210245132446, -0.010701022110879421, 0.005222019739449024, -0.011089790612459183, -0.005637145601212978, 0.014022029004991055, 0.005162715911865234, 0.005347216501832008, -0.0182918943464756, -0.028202202171087265, -0.0027312645688652992, 0.007024193182587624, 0.006905585527420044, 0.018436860293149948, -0.02550058811903, -0.031813137233257294, -0.027543270960450172, -0.0041183121502399445, 0.03012627735733986, -0.004826661664992571, -0.0012807950843125582, -0.04085365682840347, 0.032155781984329224, -0.008730821311473846, -0.013231312856078148, -0.0005996262189000845, -0.0026900814846158028, -0.015036781318485737, -0.005366984289139509, 0.020229149609804153, 0.0007075259927660227, -0.029256489127874374, -0.015155388973653316, -0.009620376862585545, -0.006114869844168425, -0.04077458381652832, -0.0489189587533474, 0.0006560471374541521, -0.01681589148938656, 0.008921911008656025, 0.012407651171088219, 0.014087921939790249, 0.011208398267626762, 0.015814319252967834, 0.018239181488752365, -0.0028531665448099375, -0.020940793678164482, -0.034132570028305054, 0.011425845324993134, 0.03842879459261894, 0.029019273817539215, -0.027622342109680176, 0.018463216722011566, -0.01083280798047781, -0.00021559363813139498, -0.041749801486730576, 0.008572678081691265, -0.009897127747535706, 0.008282748982310295, -0.03995751217007637, -0.0028284566942602396, -0.019253931939601898, 0.021296614781022072, -0.016038354486227036, 0.008210266940295696, -0.041987016797065735, -0.011722363531589508, 0.03842879459261894, -0.0153530677780509, -0.012611919082701206, -0.0001929429272422567, -0.01701357029378414, 0.016763176769018173, -0.010061860084533691, 0.0054724132642149925, -0.031470492482185364, -0.01854228787124157, 0.03131235018372536, -0.01551121100783348, -0.0153530677780509, -0.003907454665750265, -0.030205348506569862, 0.018832217901945114, -0.002668666187673807, 0.009297501295804977, -0.015814319252967834, -0.006111575290560722, 0.01677635684609413, 0.02167879417538643, -0.0016193203628063202, 0.0072416397742927074, 0.03278835490345955, -0.0034758553374558687, 0.025803696364164352, 0.02930920384824276, 0.035503145307302475, 0.04080094024538994, -0.031813137233257294, 0.008750589564442635, -0.024050943553447723, 0.0057919942773878574, -0.048022814095020294, -0.0007795965066179633, 0.004859608132392168, -0.025566481053829193, -0.010747147724032402, 0.006408093497157097, -0.01796242967247963, -0.01366620697081089, -0.009824645705521107, -0.016262391582131386, 0.010279307141900063, 0.01677635684609413, 0.01772521622478962, -0.024288157001137733, -0.026910698041319847, 0.02941463328897953, -0.018621360883116722, 0.02930920384824276, 0.02072993665933609, 0.002103633712977171, 0.059145551174879074, 0.022298188880085945, -0.002246950985863805, 0.008921911008656025, -0.0008125429740175605, -0.019978756085038185, 0.02944098971784115, -0.02422226406633854, 0.03255113959312439, -0.0273587703704834, 0.0074788546189665794, -0.021560188382864, -0.006945121567696333, 0.012196793220937252, -0.03950943797826767, 0.007155979052186012, 0.0016802713507786393, -0.019069433212280273, 0.040484655648469925, 0.024472657591104507, 0.00738660478964448, -0.004345642868429422, 0.007169157732278109, 0.03953579440712929, -0.024064121767878532, -0.014496458694338799, 0.019662469625473022, 0.018357787281274796, 0.04984145984053612, 0.009976198896765709, 0.003495623357594013, -0.022851690649986267, -0.02677891217172146, -0.00387780275195837, 0.014852280728518963, 0.035265929996967316, -0.009659912437200546, 0.0029487113934010267, -0.048128243535757065, 0.02618587575852871, 0.011814613826572895, -0.035634931176900864, 0.01014093216508627, -0.013349920511245728, 0.0028581086080521345, 0.010845987126231194, 0.004437893163412809, -0.010114574804902077, 0.013890243135392666, -0.04428009316325188, 0.026449447497725487, -0.029599132016301155, 0.03790165111422539, -0.01025294978171587, 0.017408929765224457, -0.010760325938463211, -0.004223741125315428, 0.017567072063684464, -0.0029520061798393726, -0.02026868425309658, -0.01280959788709879, -0.023102084174752235, 0.028992917388677597, -0.022087331861257553, -0.0003949461388401687, 0.030258063226938248, 0.0018367671873420477, 0.009086644276976585, 0.01366620697081089, -0.002665371634066105, 0.004596036393195391, 0.022100510075688362, -0.01493135280907154, 0.013890243135392666, -0.009521537460386753, 0.0017362803919240832, 0.02141522243618965, 0.0035582217387855053, -0.01747482270002365, 0.01145879179239273, -0.004292928613722324, 0.0153530677780509, 0.01122816652059555, -0.012005703523755074, -0.012414240278303623, 0.022285010665655136, 0.005254966206848621, 0.00657282629981637, 0.02767505683004856, -0.03160227835178375, -0.010272718034684658, 0.019965577870607376, 0.005920485593378544, 0.007834676653146744, -0.009119590744376183, 0.022416796535253525, 0.008427713997662067, 0.013461939059197903, 0.00683969259262085, -0.027595985680818558, -0.012895259074866772, -0.006885817740112543, 0.011920042335987091, 0.002904233755543828, -0.002375442534685135, 0.0019998522475361824, -0.00804553460329771, -0.019741540774703026, -0.013613492250442505, -0.03800708055496216, -0.034791499376297, 0.008249802514910698, -0.013639849610626698, 0.00025924775400198996, 0.012025471776723862, 0.02550058811903, -0.007459086831659079, -0.010845987126231194, -0.010246360674500465, -0.012526257894933224, -0.005205546505749226, -0.0018927762284874916, 0.0008405474945902824, -0.011676238849759102, 0.009014161303639412, -0.009409519843757153, 0.037954363971948624, -0.017698857933282852, -0.008361821062862873, 0.009916896000504494, 0.038059793412685394, -0.020413650199770927, 0.02050589956343174, 0.0014290543040260673, -0.004213856998831034, -0.003657061140984297, 0.027754129841923714, -0.0006576944142580032, -0.007781962398439646, 0.019530683755874634, 0.0035483376123011112, 0.006529995705932379, 0.00463227741420269, 0.0073338900692760944, 0.01116886269301176, 0.015076316893100739, 0.0039964099414646626, 0.012005703523755074, 0.0018252359004691243, 0.0008714348659850657, -0.004115017596632242, -0.05355782434344292, -0.022667190060019493, 0.03363178297877312, -0.003077202709391713, 0.029572775587439537, -0.015208102762699127, -0.0024479248095303774, 0.01087893359363079, -0.020809007808566093, 0.014694137498736382, -0.0015871975338086486, -0.020558614283800125, 0.02917741797864437, 0.011504916474223137, -0.007169157732278109, -0.002251893049106002, -0.02294394001364708, 0.0032287565991282463, -0.006404798943549395, 0.02117800898849964, -0.03552950173616409, -0.004826661664992571, 0.0026324251666665077, 0.017567072063684464, -0.013982493430376053, -0.007604051381349564, 0.03903501108288765, 0.02281215414404869, -0.03302557021379471, 0.018924467265605927, 0.02107257954776287, 0.003138153813779354, -0.014970888383686543, 0.02304936945438385, -0.0061972360126674175, -0.018568646162748337, 0.039324939250946045, -0.010635129176080227, 0.016275569796562195, -0.012644865550100803, -0.01656549796462059, -0.012954562902450562, -0.0008129547932185233, 0.009561073035001755, 0.009192072786390781, 0.04459637776017189, -0.0002089013869408518, 0.010984362103044987, 0.03924586623907089, 0.026001375168561935, 0.02804405800998211, 0.0007359423907473683, 0.0005407343851402402, -0.0005938606336712837, 0.003199104918166995, -0.037005506455898285, 0.005455940030515194, -0.004091954790055752, -0.018450038507580757, 0.02791227214038372, -0.032023996114730835, 0.025685088708996773, -0.020479543134570122, 0.018858574330806732, 0.012651454657316208, -0.047996457666158676, -0.014509636908769608, -0.004012883175164461, -0.010911880061030388, -0.014865458942949772, 0.0010271070059388876, 0.007610640954226255, -0.02851848676800728, -0.010556058026850224, -0.004859608132392168, 0.0033770159352570772, 0.011287469416856766, 0.01565617509186268, -0.004174320958554745, 0.040142010897397995, 0.02677891217172146, 0.0038876866456121206, 0.017198070883750916, 0.018739966675639153, -0.009910305961966515, -0.035028714686632156, -0.02214004658162594, 0.004474134184420109, 0.023009832948446274, -0.02175786718726158, 0.016038354486227036, -0.0407482273876667, -0.005218725185841322, -0.01145879179239273, 0.01506313867866993, 0.03381628543138504, 0.004787126090377569, 6.321608816506341e-05, 0.00886260811239481, -0.00036755934706889093, 0.017567072063684464, -0.03281471133232117, 0.012803008779883385, 0.029361918568611145, -0.024143192917108536, 0.005011162254959345, -0.004589446820318699, 0.013929778710007668, -0.018937645480036736, 0.011478559114038944, 0.015023602172732353, -0.03890322521328926, 0.019135326147079468, 0.016011998057365417, -0.012783240526914597, -0.03033713437616825, 0.037137292325496674, -0.013323563151061535, -0.037242721766233444, 0.0033028863836079836, -0.010503343306481838, 0.009567663073539734, 0.0263967327773571, 0.0340535007417202, 0.010404503904283047, 0.02142840065062046, 0.0440165214240551, 0.020993508398532867, -0.03610936179757118, -0.010747147724032402, 0.02676573395729065, -0.01013434212654829, -0.004895849619060755, -0.035634931176900864, 0.027622342109680176, 0.00720869330689311, 0.005755752790719271, 0.03882415220141411, -0.008552910760045052, -0.010536289773881435, 0.0035878734197467566, -0.018476394936442375, 0.007887391373515129, -0.010154110379517078, -9.739807865116745e-05, 0.0032023994717746973, 0.013732099905610085, 0.007485444191843271, 0.009027340449392796, 0.025698266923427582, 0.0037657846696674824, -0.0024792240001261234, 0.021718330681324005, -0.011392898857593536, 0.039667584002017975, -0.01727714203298092, 0.01576160453259945, -0.012776651419699192, 0.03231392428278923, 0.01690814271569252, 0.0059896730817854404, -0.0398520827293396, 0.009633556008338928, 0.0034165517427027225, 0.002836693311110139, -0.01797560788691044, -0.005459234584122896, -0.0029272963292896748, -0.004105133470147848, -0.05047403275966644, -0.009771930985152721, -0.016367819160223007, -0.003429730422794819, 0.03131235018372536, 0.009080054238438606, 0.0015591930132359266, 0.04715302586555481, 0.010457217693328857, -0.024933908134698868, -0.06009440869092941, -0.013448759913444519, 0.032261211425065994, -0.02666030451655388, 0.017171714454889297, 0.006263128947466612, 0.004497196990996599, 0.021336151286959648, 0.032972853630781174, -0.0035417485050857067, -0.02859755977988243, -0.012493311427533627, 0.04786467179656029, -0.0020690399687737226, 0.0065695312805473804, -0.012058418244123459, -0.01083280798047781, -0.008954857476055622, 0.04227694496512413, 0.004121606703847647, 0.03969394043087959, 0.003900865325704217, -0.01866089552640915, 0.027885915711522102, -0.01934618316590786, -0.016723642125725746, -0.00021044575260020792, 0.035292286425828934, -0.03115420788526535, 0.0006543998024426401, -0.003963463474065065, -0.007795141078531742, 0.022074153646826744, 0.012928205542266369, -0.00885601807385683, -0.022153224796056747, -0.013356509618461132, -0.01922757551074028, -0.015142209827899933, -0.023220691829919815, 0.02849213033914566, 0.000867316557560116, -0.03141777962446213, -0.02237726002931595, -0.005123180337250233, 0.01761978678405285, -0.0010065154638141394, -0.014166994020342827, -0.0011893685441464186, 0.055297400802373886, -0.0054460559040308, 0.021138472482562065, 0.014865458942949772, 0.0069517106749117374, 0.0031579218339174986, 0.01232857909053564, -0.01909578964114189, -0.007571104913949966, 0.0028811711817979813, 0.0048826709389686584, 0.02581687457859516, 0.011149094440042973, -0.02051907777786255, 0.037005506455898285, -0.04172344505786896, 0.020532255992293358, -0.012394472025334835, 0.0018351199105381966, 0.00527143944054842, -0.0153530677780509, 0.032709281891584396, 0.043752945959568024, 0.006612361874431372, -0.014377851039171219, -0.011801435612142086, -0.046046022325754166, -0.01817328855395317, -0.007973052561283112, 0.04380566254258156, 0.03046892024576664, -0.021125294268131256, -0.03766443580389023, -0.008124605752527714, 0.04678402468562126, -0.01523446012288332, 0.008032356388866901, -0.00591060146689415, 0.02709519863128662, -0.012203382328152657, -0.02003147080540657, 0.011630113236606121, -0.002080571372061968, 0.0005184955080039799, -0.028413059189915657, -0.009692859835922718, -0.008750589564442635, 0.01048357505351305, -0.035371359437704086, -0.016420533880591393, -0.02303619123995304, 0.008592446334660053, 0.014140636660158634, 0.008078481070697308, -0.02975727617740631, 0.014180172234773636, 0.027253342792391777, 0.009956431575119495, 0.01982061192393303, -0.015247638337314129, -0.022100510075688362, -0.0004011236014775932, -0.0023507324513047934, 0.021942367777228355, 0.013758457265794277, 0.0036537665873765945, -0.040590085089206696, -0.02362922765314579, 0.03937765210866928, -0.025210659950971603, -0.026818448677659035, -0.003956874366849661, -0.014311958104372025, -0.0041809105314314365, 0.02248268947005272, 0.01112273707985878, -0.0021497588604688644, 0.024037763476371765, 0.012598739936947823, -0.012480133213102818, -0.010595593601465225, 0.003406667849048972, -0.016763176769018173, 0.004002999514341354, -0.012651454657316208, 0.00036755934706889093, -0.05793311819434166, -0.008612214587628841, -0.013204955495893955, 0.01947796903550625, -0.0014949472388252616, -0.02040047012269497, 0.016591856256127357, 0.02596183866262436, -0.012947972863912582, 0.027253342792391777, -0.007604051381349564, -0.02986270561814308, 0.018621360883116722, 0.004546616692095995, -0.0015567219816148281, 0.011083201505243778, -0.01817328855395317, 0.02838670089840889, 0.00201467820443213, -0.003782257903367281, -0.015432138927280903, 0.004777241963893175, 0.04275137558579445, -0.006813335698097944, 0.012381293810904026, 0.0597781240940094, -0.025764159858226776, 0.013013865798711777, -0.019056253135204315, -0.006945121567696333, -0.013942957855761051, 0.002573121339082718, 0.0005662679322995245, -0.004016178194433451, 0.012559204362332821, -0.007380015216767788, 0.03044256381690502, -0.007393193896859884, 0.020809007808566093, 0.009053696878254414, -0.004533438012003899, 0.00691876420751214, -0.0044082412496209145, -0.02409047819674015, -0.009561073035001755, -0.0021497588604688644, 0.008546321652829647, 0.0005810938309878111, 0.018819039687514305, 0.014391030184924603, 0.009126179851591587, -0.02109893597662449, 0.008025766350328922, -0.017817465588450432, -0.0191089678555727, 0.013244492001831532, -0.005920485593378544, -0.014470101334154606, -0.025988196954131126, 0.003337480127811432, 0.05355782434344292, -0.006473986431956291, -0.008994393981993198, 0.0004867844982072711, 0.0033490112982690334, 0.0038514453917741776, 0.023774191737174988, -0.00616428954526782, 0.001216549426317215, 0.009831234812736511, 0.01302704494446516, -0.004928796086460352, -0.0081048384308815, 0.045334380120038986, -0.002844929927960038, 0.021560188382864, -0.0020130309276282787, -0.00703737186267972, -0.011175451800227165, -0.01244718674570322, -0.01689496450126171, -0.01668410561978817, 0.01851593144237995, 0.013850707560777664, 0.0007046432001516223, 0.0010526406113058329, 0.012256097048521042, -0.014509636908769608, -0.001787347486242652, 0.0014792977599427104, -0.018357787281274796, 0.010226592421531677, 0.013112706132233143, 0.014404208399355412, -0.002232125261798501, 0.022983476519584656, 0.019596576690673828, -0.02673937752842903, 0.0048134829849004745, 0.015129031613469124, 0.0044181253761053085, -0.01211113203316927, -0.0010476985480636358, -0.03634657710790634, 0.003156274324283004, -0.0006856989930383861, 0.009831234812736511, 0.036873720586299896, -0.018832217901945114, -0.0034132571890950203, -0.014193350449204445, 0.028755702078342438, -0.016855427995324135, -0.010707611218094826, -0.005604199133813381, 0.00668813893571496, 0.012532847002148628, -0.005044108722358942, -0.027595985680818558, 0.021850116550922394, -0.0041413744911551476, 0.020479543134570122, -0.005597610026597977, -0.057616833597421646, -0.0062367720529437065, 0.0048826709389686584, -0.011149094440042973, -0.018502753227949142, -0.001938901375979185, 0.02662076987326145, 0.01269099023193121, 0.0307061355561018, -0.01761978678405285, 0.004625688306987286, -0.01008162833750248, 0.026475805789232254, 0.009765341877937317, -0.014984066598117352, 0.005871065892279148, -0.008645161055028439, -0.00697806803509593, -0.018924467265605927, -0.015339888632297516, 0.016974035650491714, -0.003205694258213043, 0.001022988697513938, -0.00792692694813013, 0.0071889255195856094, -0.02361604943871498, 0.0036768291611224413, -0.0076238191686570644, -0.024749407544732094, 0.003976642154157162, 0.014325137250125408, -0.0049880994483828545, -0.022219117730855942, -0.009343626908957958, 0.02986270561814308, 0.013165419921278954, 0.021810580044984818, -0.016763176769018173, -0.0048003047704696655, 0.007070318330079317, 0.004164437297731638, 0.01238788291811943, -0.015300353057682514, -0.006302664987742901, -0.013521241955459118, -0.010865754447877407, -0.023260226473212242, -0.004490607418119907, 0.016315104439854622, -0.009857592172920704, 0.010285896249115467, 0.012275864370167255, -0.013455349020659924, -0.02559283934533596, -0.029678205028176308, 0.019965577870607376, -0.02859755977988243, -0.02107257954776287, 0.012242917902767658, 0.0004250098136253655, 0.01946479082107544, -0.01060218270868063, 0.0049979835748672485, 0.0061445217579603195, 0.0022238886449486017, -0.006477281451225281, -0.010094806551933289, 0.0008018353837542236, -0.006312548648566008, 0.0037130701821297407, -0.012084774672985077, -0.025118408724665642, 0.025645554065704346, -0.0020064415875822306, 0.018739966675639153, -0.01690814271569252, 0.0034231410827487707, -0.047996457666158676, -0.015682533383369446, 0.006691433489322662, -0.009211840108036995, -0.010009145364165306, 0.017211249098181725, 0.008869197219610214, -0.00897462572902441, 0.016987213864922523, -0.008875786326825619, -0.011478559114038944, -0.008605624549090862, 0.02687116339802742, -0.0026900814846158028, 0.00042089150520041585, -0.005726101342588663, 0.013771635480225086, 0.005521832965314388, 0.018608180806040764, -0.024591265246272087, 0.018226001411676407, -0.01424606516957283, 0.006717790849506855, -0.03442249819636345, -0.002584652742370963, -0.014325137250125408, -0.0041809105314314365, -0.03726907819509506, -0.006263128947466612, 0.0006959947641007602, -0.022746261209249496, -0.004846429917961359, 0.006819924805313349, 0.0025582953821867704, -0.01967564783990383, -0.009139358066022396, -0.0012766767758876085, -0.01285572350025177, 0.00979169923812151, 0.007221871986985207, -0.027147913351655006, -0.02478894405066967, -0.00012169612455181777, 0.017079463228583336, 0.03842879459261894, -0.010463807731866837, -0.024973444640636444, 0.00018388262833468616, 0.016025176271796227, 0.0016473248833790421, 0.015959283336997032, -0.0009546247310936451, -0.013442170806229115, 0.00048431349569000304, -0.005614083260297775, -0.01866089552640915, 0.00862539280205965, -0.0026785500813275576, 0.01506313867866993, -0.018094215542078018, -0.020360935479402542, 0.032946497201919556, 0.04217151552438736, -0.007702890783548355, 0.037479933351278305, -0.01101071946322918, -0.005498770158737898, 0.006819924805313349, 0.005376868415623903, -0.004701464902609587, -0.004688286688178778, -0.014891816303133965, -0.01772521622478962, -0.02804405800998211, 0.012130900286138058, 0.015168567188084126, 0.014852280728518963, 0.0051824841648340225, 0.0011737189488485456, 0.005880949553102255, -0.021454758942127228, -0.012078185565769672, -0.0012816187227144837, 0.0349496454000473, 0.0037559005431830883, 0.01296774111688137, 0.010529700666666031, -0.008388178423047066, 0.025553302839398384, -0.0004859608307015151, 0.01366620697081089, 0.013613492250442505, 0.024973444640636444, 0.00014342021313495934, 0.013521241955459118, -0.021494295448064804, -0.008599035441875458, 0.01841050200164318, 0.02944098971784115, -0.02618587575852871, 0.0006045682239346206, 0.012954562902450562, -0.017000392079353333, -0.02883477322757244, -0.008776946924626827, -0.00013621317339129746, 0.0038250882644206285, 0.0005691507249139249, 0.0013862238265573978, 0.00254841148853302, 0.004892554599791765, 0.01909578964114189, -0.021942367777228355, -0.004955152980983257, 0.01506313867866993, 0.023128440603613853, 0.016855427995324135, 0.01008162833750248, -0.018001966178417206, -0.011801435612142086, -0.0026785500813275576, 0.006016030441969633, 0.013402635231614113, -0.00746567640453577, -0.0361357182264328, -0.04459637776017189, -0.026686662808060646, -0.005976494401693344, 0.022640831768512726, 0.0026439563371241093, -0.001377163571305573, 0.012868901714682579, 0.009771930985152721, -0.010872343555092812, 0.02339201234281063, 0.002703260164707899, -0.004095249343663454, 0.01957021839916706, -0.0019405486527830362, -0.002515465021133423, -1.6794991097413003e-05, 0.024235442280769348, -0.003307828214019537, 0.00767653388902545, 0.004546616692095995, 0.003670239821076393, 0.011511505581438541, 0.016605034470558167, 0.024973444640636444, -0.02746419981122017, -0.0016448538517579436, 0.01343558169901371, 0.016829069703817368, -0.01968882605433464, 0.013613492250442505, 0.013251081109046936, -0.017659321427345276, -0.019135326147079468, -0.04272501543164253, -0.0035219804849475622, -0.01159057766199112, -0.004111722577363253, 0.0091459471732378, -0.006417977623641491, -0.04984145984053612, 0.002759269205853343, 0.03813886642456055, -0.05239810794591904, 0.003400078509002924, -0.011149094440042973, 0.0091459471732378, 0.00839476753026247, -0.021125294268131256, -0.0009150889236479998, -0.00932385865598917, 0.007841266691684723, -0.009416108950972557, 0.0049979835748672485, -0.013942957855761051, -0.021916009485721588, 0.011709185317158699, 0.002900938969105482, -0.027068842202425003, 0.00885601807385683, -0.006365263368934393, -0.007979641668498516, -0.01511585246771574, 0.0017181597650051117, -0.008440892212092876, -0.0028235148638486862, 0.012282454408705235, 0.012453775852918625, 0.0010757030686363578, 0.010378146544098854, -0.022640831768512726, 0.014601887203752995, -0.009659912437200546, 0.003722954075783491, -0.053795039653778076, 0.012499900534749031, -0.011946399696171284, 0.006892407312989235, 4.0591112338006496e-05, 0.008302517235279083, -0.010384735651314259, 0.023892799392342567, 6.213503365870565e-05, -0.00040688924491405487, 0.005973199848085642, -0.014588708989322186, -0.0060819233767688274, -0.008651750162243843, 0.008724232204258442, -0.006694728042930365, -0.003156274324283004, -0.00604897690936923, -1.1261009547069989e-07, 0.042698659002780914, 0.004754179622977972, -0.02190283127129078, -0.03958851099014282, -0.005376868415623903, 0.020677221938967705, -0.024512194097042084, 0.005558073986321688, 0.005831529852002859, -0.010463807731866837, 0.008908732794225216, 0.012710758484899998, -0.006012735888361931, -0.007571104913949966, 0.016525963321328163, 0.016038354486227036, 0.02062450721859932, 0.04085365682840347, -0.024367228150367737, 0.015590282157063484, -0.023009832948446274, 0.005162715911865234, -0.022219117730855942, -0.015814319252967834, -0.018726788461208344, 0.002222241135314107, -0.020479543134570122, -0.0037987311370670795, -0.026897519826889038, 0.011570809409022331, -0.00252040708437562, 0.02373465709388256, 0.003746016649529338, 0.018950825557112694, 0.005805172957479954, 0.0011465380666777492, 0.006773799657821655, -0.009534716606140137, 0.01180802471935749, 0.014232886955142021, -0.007254818454384804, -0.025750981643795967, 0.031813137233257294, 0.04644138365983963, 0.006180762778967619, 0.0057919942773878574, 0.007373426109552383, -0.013092937879264355, 0.027016127482056618, 0.04625688120722771, -0.03228756785392761, -0.01574842631816864, 0.008908732794225216, 0.004909027833491564, -0.0035022126976400614, -0.005479002371430397, 0.009468822740018368, 0.030679777264595032, -0.01715853624045849, -0.0033572479151189327, -0.0039206333458423615, 0.022627653554081917, -0.027306057512760162, 0.000804718176368624, -0.008961447514593601, 0.0066716657020151615, 0.003133211750537157, 0.0014158757403492928, -0.01246036496013403, 0.03247206658124924, -0.0026456036139279604, -0.02615951932966709, 0.012104542925953865, -0.020532255992293358, 0.020347757264971733, -0.007584283594042063, 0.013824350200593472, 0.014048386365175247, 0.0024446300230920315, -0.007847855798900127, 0.005047403275966644, 0.018357787281274796, -0.011373130604624748, 0.010107985697686672, -0.006312548648566008, -0.0226012971252203, 0.001932312035933137, 0.0032435825560241938, -0.01246036496013403, -0.0009447407792322338, 0.010826218873262405, 0.003156274324283004, 0.013152241706848145, -0.013079759664833546, 0.021639259532094002, -0.016473248600959778, 0.004098544362932444, -0.019952397793531418, -0.008210266940295696, 0.014311958104372025, -0.0236424058675766, 0.0004604272835422307, -0.0007001130725257099, -0.0022502457723021507, -0.01761978678405285, 0.0037031862884759903, -0.011728952638804913, -0.006859460845589638, -0.0005003749392926693, -0.007538158446550369, -0.003047551028430462, -0.020110541954636574, -0.015484853647649288, -0.01135995239019394, 0.0026439563371241093, 0.021981902420520782, 0.0017774634761735797, 0.0021217544563114643, -0.0017412223387509584, 0.003950284793972969, 0.020426828414201736, 0.008961447514593601, 0.007973052561283112, -0.029678205028176308, -0.014865458942949772, -0.010654897429049015, 0.007590872701257467, -0.01690814271569252, 0.05898740887641907, -0.009982788935303688, 0.00984441302716732, -0.0118212029337883, -0.006651897914707661, -0.01852910965681076, -0.007380015216767788, 0.018608180806040764, -0.010384735651314259, -0.003049198305234313, -0.0013549246359616518, -0.02746419981122017, -0.010061860084533691, -0.005077055189758539, -0.005801877938210964, -0.0070966752246022224, -0.00602591410279274, 0.0018400618573650718, -0.0005782110383734107, 0.029678205028176308, 0.04156529903411865, -0.007788551971316338, -0.006006146315485239, -0.004797009751200676, -0.006447629537433386, 0.010905290022492409, 0.0012972683180123568, 0.033078283071517944, -0.003614230779930949, 0.010911880061030388, 0.004994689021259546, 0.017303500324487686, -0.024130014702677727, -0.003660355694591999, -0.007966462522745132, 0.016657749190926552, 0.006905585527420044, 0.0062796021811664104, -0.008289339020848274, 0.010358378291130066, -0.004717938136309385, 0.005479002371430397, 0.03695278987288475, 0.03647836297750473, -0.010608771815896034, 0.002289781579747796, -0.009007572196424007, -0.014615066349506378, -0.012236328795552254, 0.005992967635393143, -0.008065302856266499, -0.015708889812231064, 0.0011457144282758236, -0.004965037107467651, 0.004586152266710997, -0.006253245286643505, -0.002510522957891226, -0.017632964998483658, -0.009192072786390781, -0.003162863664329052, -0.009238197468221188, -0.019622933119535446, -0.03368449956178665, -0.038507863879203796, 0.006694728042930365, -0.015814319252967834, -0.0028597558848559856, -0.02712155692279339, -0.017000392079353333, -0.020545436069369316, -0.0035911682061851025, 0.011195220053195953, 0.009923485107719898, -0.008631981909275055, -0.022654011845588684, 0.009080054238438606, 0.006536584813147783, 0.022271832451224327, 0.009956431575119495, 0.001511420588940382, -0.0031216805800795555, -0.0026143044233322144, 8.844074909575284e-05, -0.007656765636056662, 0.0046158041805028915, -0.0018285305704921484, 0.001157245715148747, -0.02862391620874405, 0.01343558169901371, -0.018370967358350754, -0.002375442534685135, 0.01933300495147705, -0.009870770387351513, -0.0008030708413571119, 0.020769471302628517, 0.0047607687301933765, -0.006523406598716974, -0.03531864285469055, 0.007017603609710932, 0.010259538888931274, 0.012374703772366047, 0.01366620697081089, 0.005544895306229591, 0.011340184137225151, -0.011952988803386688, -0.006329021882265806, 0.018370967358350754, 0.0012486722553148866, -0.01727714203298092, 0.009600609540939331, -0.004115017596632242, -0.015418960712850094, 0.0025253489147871733, -0.017685679718852043, -0.014667780138552189, 0.019135326147079468, 0.012842544354498386, -0.01290843728929758, -0.02049272134900093, -0.019148504361510277, -0.012117721140384674, -0.009771930985152721, -0.01071420032531023, -0.01002232450991869, 0.0018828923348337412, 0.00649045966565609, -0.0033605427015572786, -0.004467545077204704, 0.005719511769711971, 9.049991058418527e-05, -0.00201467820443213, -0.008401356637477875, -0.005610788241028786, -0.008895554579794407, -0.014180172234773636, -0.0028646979480981827, -0.005459234584122896, -0.0012717348290607333, 0.01424606516957283, -0.01302704494446516, 0.00529450224712491, 0.001597081427462399, -0.006012735888361931, 0.025869589298963547, -0.007551337126642466, 0.0023375540040433407, -0.02374783530831337, -0.02315479889512062, -0.0019273700891062617, 0.0027362066321074963, 0.001116886269301176, -0.0307061355561018, 0.009172304533421993, 0.014180172234773636, -0.007083497010171413, -0.011386309750378132, -0.0072416397742927074, -0.00879671424627304, -0.003834972158074379, -0.0017016865313053131, 0.018581824377179146, 0.0025698267854750156, -0.011432434432208538, -0.01808103732764721, -0.015260817483067513, 0.008012588135898113, 0.0028301039710640907, 0.0099630206823349, 0.0029833053704351187, 0.01238788291811943, 0.0020970446057617664, -0.0060423873364925385, -0.0017247491050511599, -0.016763176769018173, 0.014588708989322186, -0.005357100162655115, 0.0016028471291065216, 0.0037690792232751846, -0.004404946696013212, 0.008012588135898113, 0.025171123445034027, -0.012565793469548225, 0.026436269283294678, 0.003251819172874093, -0.021810580044984818, -0.018001966178417206, -0.004675108008086681, -0.014733673073351383, -0.018832217901945114, 0.04016836732625961, -0.00720869330689311, 0.014786387793719769, 0.00431928550824523, 0.002489107893779874, -0.009976198896765709, 0.009666502475738525, 0.008170731365680695, 0.020677221938967705, -0.0037954363506287336, -0.024868015199899673, -0.012921616435050964, 0.004230330232530832, -0.005986378528177738, -0.0017082758713513613, 0.015669353306293488, -0.020927615463733673, -0.016315104439854622, -0.029730917885899544, 0.007380015216767788, -0.0006403975421562791, -0.043014947324991226, -0.01597246155142784, 0.006813335698097944, 0.002431451575830579, -0.0170267503708601, 0.016644570976495743, 0.0035219804849475622, 0.012256097048521042, 0.011135916225612164, -0.002466045320034027, 0.007024193182587624, 0.009462233632802963, 0.006786978337913752, -0.0014636481646448374, -0.021929187700152397, -0.014338315464556217, 0.009580841287970543, 0.023774191737174988, 0.023247048258781433, -0.023550156503915787, 0.02488119527697563, 0.001785700093023479, -0.007544747553765774, 0.0024067414924502373, 0.03624114766716957, 0.010002556256949902, 0.0005090233753435314, -0.002457808703184128, -0.0015451906947419047, -0.007643587421625853, -0.008783536031842232, 0.01735621504485607, -0.019438432529568672, 0.012018881738185883, -0.0021744687110185623, -0.015616639517247677, 0.0010938236955553293, 0.014311958104372025, -0.019056253135204315, -2.7309557481203228e-05, -0.0018993655685335398, -0.0031727475579828024, -0.0073338900692760944, 0.009521537460386753, 0.004144669510424137, -0.008480428718030453, -0.0011234754929319024, 0.0032666451297700405, 0.0023276701103895903, -0.0126778120175004, -0.00602591410279274, -0.010694433003664017, -0.007663355208933353, 0.0026011259760707617, 0.018370967358350754, 0.013264259323477745, -0.020347757264971733, 0.022047795355319977, -0.01761978678405285, 0.0021283437963575125, -0.013508063741028309, 0.005610788241028786, 0.03489692881703377, 0.005291207227855921, 0.0006128048407845199, 0.007992819882929325, 0.0012066654162481427, -0.014997245743870735, 0.006589299533516169, 0.009337036870419979, 0.0015913158422335982, 0.003719659522175789, 0.0028614031616598368, -0.01285572350025177, -0.004335759207606316, -0.036188431084156036, -0.018041500821709633, 0.0044181253761053085, -0.004530143458396196, -0.0019669057801365852, 0.01396931428462267, 0.0040886602364480495, 0.006266423501074314, 0.0009579194011166692, -7.81449707574211e-05, -0.00674744276329875, 0.0027988050132989883, 0.014470101334154606, 0.005548189859837294, 0.01209795381873846, -0.016183318570256233, -0.006819924805313349, -0.011742131784558296, 0.0005625614430755377, 0.00915253721177578, -0.00031422721804119647, 0.014193350449204445, 0.01186732854694128, -0.011386309750378132, 0.03521321713924408, 0.009086644276976585, -0.012308810837566853, -0.012776651419699192, 0.008599035441875458, -0.006833103485405445, -0.022851690649986267, 0.012743704952299595, 0.025276552885770798, -0.018344609066843987, 0.013336742296814919, -0.002077276585623622, 0.019319824874401093, 0.011893684975802898, 0.0038843920920044184, 0.00782808754593134, 0.00042789263534359634, 0.01101071946322918, 0.010305664502084255, 0.019082611426711082, 0.009106411598622799, -0.000666754727717489, 0.0043159909546375275, -0.02501298114657402, -0.01013434212654829, 0.006329021882265806, 0.004797009751200676, -0.010799861513078213, -0.02005782723426819, 0.014325137250125408, -0.0006082747131586075, -0.014232886955142021, -0.015010423958301544, 0.004968331661075354, 0.0031249751336872578, -0.005278029013425112, 0.01866089552640915, 0.016618212684988976, 0.012750294059515, 0.02004464901983738, -0.004665223881602287, 0.010562647134065628, 0.006141227204352617, 0.03292014077305794, 0.009211840108036995, -0.00979169923812151, -0.011544452048838139, 0.01378481462597847, -0.018581824377179146, -0.011485149152576923, 0.020795829594135284, -0.012625097297132015, 0.032498423010110855, -0.014153814874589443, 0.0015476617263630033, 0.018845396116375923, 0.00798623077571392, -0.014720494858920574, 0.005683270748704672, -0.015484853647649288, -0.0031463904306292534, 0.011959577910602093, -0.028096772730350494, -0.018397323787212372, -0.014206529594957829, -0.008546321652829647, 0.0006272189202718437, 0.010437450371682644, -0.01412745751440525, -0.00979169923812151, -0.0064871651120483875, 0.01678953506052494, -0.0071889255195856094, -0.01831825263798237, 0.0041413744911551476, 0.007498622871935368, 0.002872934564948082, 0.021243901923298836, 0.011340184137225151, -0.011432434432208538, -0.012381293810904026, -0.011669648811221123, -0.005656913388520479, 0.009086644276976585, -0.03381628543138504, 0.002284839516505599, 0.00405241921544075, -0.0253556240350008, 0.025329267606139183, -0.0014760030899196863, -0.0013722216244786978, 0.008842839859426022, 0.0007804201450198889, 0.009422698058187962, 0.0061873518861830235, -0.01164988148957491, -0.015932925045490265, -0.011636702343821526, 0.021560188382864, 0.030627062544226646, 0.008783536031842232, 0.00639820983633399, 0.015959283336997032, -0.015840675681829453, 0.01217043586075306, 0.012183614075183868, 0.002139874966815114, 0.008888964541256428, -0.02188965305685997, 0.0008030708413571119, 0.02040047012269497, 0.03060070611536503, 0.004925501067191362, -0.007439319044351578, 0.0010781741002574563, 0.003485739463940263, 0.005597610026597977, 0.02851848676800728, 0.00984441302716732, 0.014298779889941216, 0.032023996114730835, -0.008559499867260456, 0.005979788955301046, -0.006391620263457298, 0.0030854393262416124, -0.00720869330689311, -0.0019273700891062617, 0.007399783004075289, -0.012710758484899998, -0.012407651171088219, 0.006414683070033789, -0.01980743370950222, -0.009600609540939331, 0.011485149152576923, 0.000340378494001925, 0.03819157928228378, 0.03787529096007347, 0.012789829634130001, 0.01106343325227499, -0.013461939059197903, 0.0008158376440405846, -0.017105821520090103, 0.018739966675639153, 0.006859460845589638, 0.009337036870419979, -0.014957709237933159, -0.006309254094958305, -0.011043665930628777, 0.0048134829849004745, 0.010918469168245792, -0.018911289051175117, 0.005551484879106283, 0.008526553399860859, 0.009429287165403366, -0.01066148653626442, -0.008236624300479889, 0.007228461559861898, 0.0014447038993239403, 0.010925058275461197, -0.008500196039676666, 0.008882375434041023, -0.006450924091041088, 0.013422402553260326, 0.031813137233257294, 0.0007503564702346921, 0.005610788241028786, 0.014720494858920574, -0.015273995697498322, 0.006408093497157097, -0.01211113203316927, -0.001288208062760532, -0.018555467948317528, -0.01669728383421898, -0.015682533383369446, 0.011781667359173298, 0.032261211425065994, 0.003452792763710022, 0.002518759574741125, 0.01383752841502428, 0.019741540774703026, -0.018964003771543503, 0.012605329975485802, 0.005159421358257532, 0.016763176769018173, 0.0029437695629894733, -0.005492181051522493, -0.007485444191843271, -0.001668740063905716, 0.043014947324991226, 0.007992819882929325, -0.011076612398028374, 0.0073338900692760944, 0.007412961684167385, 0.007749015931040049, 0.00031237397342920303, -0.011913453228771687, 0.003419846296310425, 0.0028268094174563885, -0.00014970064512453973, 0.0026143044233322144, -0.002401799662038684, 0.023484263569116592, -0.004899144172668457, -0.01912214607000351, 0.025632373988628387, 0.012941383756697178, 0.014035207219421864, -0.003136506536975503, 0.00978510919958353, 0.02374783530831337, 0.014114279299974442, 0.003456087550148368, -0.026686662808060646, 0.006529995705932379, 0.01071420032531023, 0.014285600744187832, 0.011439023539423943, 0.016025176271796227, 0.0017972313798964024, -0.008533142507076263, -0.0028894077986478806, 0.007162568625062704, 0.018977181985974312, -0.004240214359015226, -0.006263128947466612, -0.0004526024858932942, 0.01632828451693058, 0.01211113203316927, 0.01217043586075306, 0.02108575776219368, -0.016077890992164612, 0.0009587430395185947, -0.015959283336997032, -0.0011943104909732938, -0.011913453228771687, -0.0033803104888647795, 0.01348829548805952, 0.0026143044233322144, -0.019978756085038185, -0.018226001411676407, 0.019319824874401093, 0.01383752841502428, -1.975502891582437e-05, 0.027833200991153717, -0.013481706380844116, 0.023681942373514175, -0.011201809160411358, 0.005544895306229591, -0.01095141563564539, 0.01234175730496645, 0.00834864191710949, -0.0012503195321187377, -0.01269099023193121, -0.004839840345084667, 0.03487057238817215, -0.01877950318157673, 0.002431451575830579, 0.004230330232530832, 0.016262391582131386, 0.004289634060114622, -0.02407729998230934, 0.0153530677780509, 0.0007849502726458013, -0.011017308570444584, -0.016723642125725746, 0.02444630116224289, -0.0017741688061505556, -0.011149094440042973, -0.01562981866300106, 0.020018290728330612, 0.025342445820569992, 0.006404798943549395, 0.00833546370267868, -0.02804405800998211, -0.019174860790371895, 0.001993263140320778, 0.015326710417866707, 0.004892554599791765, 0.008342052809894085, 0.0019174860790371895, -0.01506313867866993, -0.0002860167878679931, 0.0016621507238596678, 0.014272422529757023, 0.01690814271569252, -0.0032913549803197384, -0.005535011645406485, 0.00792692694813013, 0.021257080137729645, -0.0037097756285220385, -0.04467545077204704, 0.005393341649323702, 0.0062367720529437065, 0.012835955247282982, -0.011656470596790314, 0.022838512435555458, -0.002780684269964695, 0.014522816054522991, -0.010173878632485867, -0.023115262389183044, -0.004335759207606316, 0.0010312253143638372, 0.008262981660664082, 0.035371359437704086, -0.017909714952111244, 0.011135916225612164, -0.018370967358350754, 0.019253931939601898, -0.011386309750378132, 0.018384145572781563, 0.0027938629500567913, 0.00579528883099556, -0.013231312856078148, 0.003045903518795967, 0.000372707232600078, -0.0006185704842209816, -0.013942957855761051, 0.0117487208917737, 0.02003147080540657, 0.01968882605433464, -0.02038729190826416, 0.005067171063274145, 0.0068067461252212524, 0.005383457522839308, -0.005169305484741926, 0.011050255037844181, -0.0021283437963575125, -0.02248268947005272, -0.006938532460480928, -0.001255261478945613, -0.0006432803347706795, 0.018977181985974312, -0.029704561457037926, -0.010463807731866837, -0.004533438012003899, 0.021138472482562065, -0.03002084791660309, 0.01796242967247963, -0.005366984289139509, -0.0017725215293467045, 0.016723642125725746, -0.01678953506052494, 0.016249211505055428, -0.0004929619608446956, -0.002779036993160844, -0.005297796800732613, 0.0031183860264718533, 0.020347757264971733, -0.016367819160223007, 0.027042483910918236, 0.012638276442885399, 0.009837823919951916, -0.021586544811725616, -0.0034165517427027225, 0.011023897677659988, -0.0005992143996991217, -0.007261408027261496, 0.024709872901439667, -0.013982493430376053, -0.010687843896448612, 0.01947796903550625, -0.017514357343316078, 0.007254818454384804, -0.03663650527596474, 0.007571104913949966, -0.01159057766199112, -0.0006280426168814301, -0.016868606209754944, -0.020703578367829323, 0.007380015216767788, -0.03289378061890602, -0.005686565302312374, 0.013059991411864758, 0.0015583692584186792, -0.004095249343663454, -1.1730754522432107e-05, 0.005729395896196365, -0.0040655978955328465, -0.008381588384509087, -0.0006997012533247471, 0.005857887212187052, -0.03824429214000702, -0.0021612902637571096, -0.024485835805535316, -0.010918469168245792, -0.0029948365408927202, 0.002403446938842535, -0.026910698041319847, 0.006991246715188026, -0.016420533880591393, 0.0033868998289108276, -0.03033713437616825, -0.006559647619724274, 0.011439023539423943, 0.006586004514247179, 0.02037411369383335, -0.02746419981122017, 0.01269099023193121, -0.001185250235721469, -0.011023897677659988, -0.006388325709849596, 0.01817328855395317, -0.0021547009237110615, -0.014008850790560246, -0.0039964099414646626, 0.026317661628127098, -0.024393586441874504, 0.016367819160223007, 0.004918911959975958, 0.008295928128063679, -0.001289855339564383, 0.02743784338235855, -0.016038354486227036, -0.009402929805219173, 0.010839397087693214, 0.010615360923111439, -0.00961378775537014, 0.011116147972643375, 0.026119982823729515, -0.018252359703183174, 0.024736229330301285, 0.01054287888109684, 0.006819924805313349, -0.012005703523755074, 0.02063768543303013, -0.009712627157568932, -0.012704169377684593, -0.012585561722517014, 0.0024726346600800753, 0.007920337840914726, 0.007472265511751175, -0.01793607324361801, -0.018239181488752365, 0.005334037821739912, 0.005254966206848621, 0.015932925045490265, -0.013903421349823475, -0.023892799392342567, -0.012144078500568867, 0.025105230510234833, 0.01348829548805952, -0.008177320472896099, 0.006174173671752214, 0.011386309750378132, 0.0039206333458423615, -0.02199508063495159, -0.012598739936947823, -0.0020706872455775738, 0.00431928550824523, 0.01982061192393303, 0.018687253817915916, 0.026963412761688232, 0.0016613270854577422, -0.014733673073351383, -0.017198070883750916, -2.9368713512667455e-05, 0.0017741688061505556, 0.018595002591609955, -0.007123032584786415, -0.031813137233257294, 0.024591265246272087, 0.00879671424627304, -0.009284323081374168, -0.016038354486227036, 0.006592594087123871, -0.01784382201731205, -0.010061860084533691, 0.023023011162877083, 0.014219707809388638, -0.021863294765353203, 0.013824350200593472, 0.002699965378269553, 0.013422402553260326, -0.033420927822589874, -0.01232857909053564, -0.005248377099633217, -0.004292928613722324, 0.008961447514593601, -0.0048134829849004745, 0.01494453102350235, 0.010015735402703285, 0.00973239541053772, -0.003970053046941757, -0.014575529843568802, 0.008091659285128117, 0.021375687792897224, -0.0031974574085325003, 0.01042427122592926, 0.00915253721177578, -0.024512194097042084, 0.001696744584478438, 0.0042336247861385345, 0.007716069463640451, -0.014087921939790249, 0.0022387143690139055, -0.016249211505055428, 0.017448464408516884, -0.00639820983633399, -0.0018960708985105157, -0.009475412778556347, 0.0012667927658185363, 0.009989378042519093, 0.023945514112710953, -0.014443743973970413, -0.0067540318705141544, 0.020123720169067383, 0.0012338462984189391, -0.002986599924042821, -0.007946695201098919, -0.0030063679441809654, 0.02177104540169239, -0.04093272611498833, -0.00402935640886426, 0.0007672415231354535, 0.002698318101465702, -0.024248622357845306, 0.00175934296566993, 0.008289339020848274, -0.009594019502401352, -0.005511948838829994, 0.010009145364165306, -0.007017603609710932, 0.00787421315908432, -0.003815204370766878, 0.002027856884524226, -0.004770652856677771, -0.02038729190826416, -0.015076316893100739, 0.007076907437294722, 0.01703992858529091, 0.014601887203752995, 0.012901848182082176, -0.027648700401186943, 0.0082168560475111, 0.012651454657316208, 9.930280066328123e-05, 0.00973239541053772, -0.01797560788691044, 0.0019520799396559596, -0.010187056846916676, 0.00862539280205965, -0.006879228632897139, 0.01170259527862072, -0.004704759921878576, 0.025777339935302734, -0.0052253142930567265, -0.00036014639772474766, -0.022864868864417076, -0.006912175100296736, 0.030178990215063095, 0.0028894077986478806, -0.012862312607467175, 0.019082611426711082, 0.018937645480036736, -0.006253245286643505, 0.019201219081878662, -0.00732730096206069, 0.007801730651408434, -0.0015896684490144253, -0.017343036830425262, -0.009277733974158764, 0.003785552456974983, -0.012427418492734432, 0.013626671396195889, 0.024973444640636444, 0.02596183866262436, -0.004217151552438736, -0.0006342200795188546, -0.022416796535253525, -0.011340184137225151, 0.00021744688274338841, -0.016394177451729774, -0.015155388973653316, 0.018357787281274796, 0.015471674501895905, 0.004279749933630228, 0.002159642754122615, 0.003337480127811432, -0.009396340698003769, 0.011030486784875393, 0.017118999734520912, 0.000388356827897951, 0.004039240535348654, 0.032603852450847626, 0.012539437040686607, 0.012539437040686607, -0.01314565259963274, 0.011623524129390717, 0.0014916526852175593, -0.004200678318738937, -0.0014611771330237389, 0.0013590429443866014, 0.010318842716515064, -0.004734411370009184, -0.01864771731197834, -0.004055713769048452, 0.013218134641647339, -0.04288316145539284, -0.017580250278115273, 0.009541305713355541, -0.007584283594042063, -0.003037666901946068, -0.0011613640235736966, 0.000659753626678139, -0.0011893685441464186, 0.010299074463546276, -0.0034165517427027225, 0.023892799392342567, 0.003105207346379757, -0.01203864999115467, -0.0052351984195411205, -0.010009145364165306, -0.00014867106801830232, 0.01552438922226429, 0.01726396381855011, -0.0012799714459106326, 0.010753736831247807, -0.005979788955301046, -0.011043665930628777, -0.005422993563115597, -0.00196855328977108, 0.022561760619282722, -0.006612361874431372, 0.004826661664992571, -0.0044181253761053085, -0.020598148927092552, -0.003232051385566592, -0.007610640954226255, -0.006698022596538067, 0.00210198643617332, 0.018924467265605927, 0.011564220301806927, -0.018160108476877213, 0.0010608772281557322, -0.024736229330301285, 0.00434234831482172, 0.005017751362174749, -0.01395613607019186, -0.018674073740839958, 0.005083644296973944, 0.017988787963986397, -4.27789673267398e-05, 0.011603755876421928, -0.011616935022175312, -0.013224723748862743, 0.008098249323666096, 0.008243213407695293, -0.010305664502084255, -0.00990371685475111, -0.012526257894933224, -0.00697806803509593, 0.003864624071866274, -0.00017461643437854946, 0.02872934564948082, -0.01407474372535944, 0.022851690649986267, 0.0003677652566693723, 0.033658139407634735, 0.012236328795552254, -0.011162273585796356, 0.009211840108036995, 0.002484165830537677, -0.011096379719674587, 0.0028284566942602396, 0.01354759931564331, 0.03033713437616825, 0.028123129159212112, -0.04841817170381546, -0.026001375168561935, -0.005558073986321688, 0.007933516055345535, -0.012453775852918625, 0.00036117597483098507, 0.004019472748041153, 0.0032369932159781456, 0.014391030184924603, -0.0035549269523471594, -0.0024149781093001366, 0.005320859141647816, 0.006589299533516169, -0.01772521622478962, -0.003900865325704217, -0.004912322852760553, 0.017105821520090103, 0.00949518010020256, -0.019253931939601898, -0.0040359459817409515, 0.011320415884256363, 0.007524979766458273, -0.004095249343663454, -0.013277438469231129, 0.009310680441558361, -0.009218430146574974, -0.014615066349506378, -0.013718921691179276, 0.009778520092368126, -0.003222167491912842, -0.0007132916362024844, 0.004717938136309385, -0.024617621675133705, 0.0029272963292896748, 0.02165243774652481, -0.007030782289803028, -0.01726396381855011, 7.71153936511837e-05, -0.015722068026661873, 0.025698266923427582, 0.013942957855761051, 0.014878638088703156, -0.010180467739701271, 0.028070414438843727, 0.004246803466230631, 0.01611742563545704, -0.0019207807490602136, -0.004197383765131235, -0.0016366172349080443, 0.016407355666160583, -0.015300353057682514, -0.01066148653626442, -0.01407474372535944, -0.016380997374653816, 0.008374999277293682, -0.005495475605130196, 0.0070439609698951244, -0.010549467988312244, -0.010285896249115467, 0.015603461302816868, -0.0028086889069527388, 0.020532255992293358, 0.0006222769734449685, 0.008849428966641426, 0.023418370634317398, -0.0021579954773187637, -0.006971478927880526, 0.007030782289803028, -0.015919746831059456, -0.019188039004802704, -0.0031167385168373585, -0.011491738259792328, 0.026106804609298706, -0.01107002329081297, 0.01221656147390604, -0.0035845788661390543, 0.004049124661833048, 0.008691285736858845, 0.01395613607019186, -0.00175934296566993, -0.01145879179239273, -0.0035845788661390543, 0.02026868425309658, 0.03674193471670151, -0.011175451800227165, 0.027042483910918236, 0.006378441583365202, -0.007854444906115532, 0.0014043444534763694, 0.015695711597800255, -0.01980743370950222, 0.009165715426206589, 0.022654011845588684, 0.0013730452628806233, -0.023326119408011436, 0.009455644525587559, -0.01735621504485607, 0.01980743370950222, -0.03046892024576664, -0.01854228787124157, 0.005254966206848621, 0.012901848182082176, -0.011504916474223137, -0.009666502475738525, -0.010766915045678616, -0.04122265800833702, 0.012704169377684593, 0.00298495264723897, -0.010450628586113453, -0.027385128661990166, 0.021612901240587234, -0.010259538888931274, -0.012289043515920639, -0.016868606209754944, -0.014166994020342827, -0.018937645480036736, -0.015774782747030258, 0.014101101085543633, 0.01851593144237995, -0.00885601807385683, 0.024512194097042084, -0.0035351591650396585, -0.002602773252874613, -0.003019546391442418, 0.010648307390511036, -0.012592150829732418, -0.0020426828414201736, 0.005729395896196365, 0.028650274500250816, 0.0007795965066179633, 0.020677221938967705, 0.0081048384308815, 0.018621360883116722, -0.014035207219421864, 0.011247933842241764, 0.0009043813333846629, -0.032735638320446014, -0.02211368829011917, -0.006760620977729559, -0.004635571967810392, 0.011452202685177326, 0.0007701243739575148, 0.026594411581754684, 0.008098249323666096, -0.002466045320034027, 0.010318842716515064, -0.0007717717089690268, 0.01540578156709671, -0.01343558169901371, 0.007669944316148758, 0.01924075372517109, -0.01681589148938656, 0.03755900636315346, -0.020874900743365288, 0.010173878632485867, 0.005083644296973944, -0.007571104913949966, -0.005950137507170439, 0.006506932899355888, 0.0014043444534763694, -4.849312608712353e-05, -0.00845407135784626, 0.0025138177443295717, -0.0050803497433662415, 0.015893390402197838, 0.0018038207199424505, 0.01866089552640915, 0.005436171777546406, -0.006473986431956291, 0.02605408988893032, 0.0025978311896324158, 0.010813040658831596, -0.002526996424421668, 0.024143192917108536, -0.026989771053195, 0.004487312864512205, 0.021691974252462387, 0.016499605029821396, -0.0024479248095303774, -0.0038250882644206285, -0.020150076597929, 0.00445766095072031, 0.0023375540040433407, 0.03592485934495926, 0.0053406269289553165, -0.0006861108122393489, -0.015919746831059456, -0.007913748733699322, 0.0253556240350008, 0.021283436566591263, 0.0026324251666665077, 0.011669648811221123, 0.005231903865933418, -0.009534716606140137, 0.010641718283295631, -0.024828480556607246, 0.008849428966641426, -0.016974035650491714, 0.009567663073539734, -0.0035483376123011112, 0.010628540068864822, -0.013125884346663952, -0.0035615162923932076, -0.02422226406633854, -0.004464250523597002, -0.037717148661613464, 0.008144374005496502, -0.0020426828414201736, 0.0004488960257731378, -0.025579659268260002, -0.01677635684609413, 0.026278125122189522, 0.00033523060847073793, -0.004994689021259546, 0.034448858350515366, 0.01164988148957491, -0.022614475339651108, -0.00521543063223362, 0.004869492258876562, 0.006879228632897139, 0.0042336247861385345, -0.005623966921120882, 0.009883948601782322, -0.01298091933131218, -0.041169941425323486, -0.010997540317475796, 0.024301335215568542, -0.01145879179239273, -0.0067540318705141544, 0.00387780275195837, -0.013613492250442505, 0.00025018746964633465, -0.006296075414866209, 0.012803008779883385, 0.016763176769018173, -0.0044609555043280125, -0.009126179851591587, -0.02051907777786255, -0.002227183198556304, 0.003143095877021551, -0.01726396381855011, 0.0019718478433787823, 0.03858693689107895, 0.009692859835922718, -0.003871213411912322, 0.04275137558579445, -0.0072679971344769, -0.01222973968833685, 0.016631390899419785, -0.009066876024007797, 0.017922895029187202, -0.018608180806040764, -0.005772226024419069, 0.02200826071202755, 0.011860738508403301, 0.0013994025066494942, 0.00032925905543379486, 0.009027340449392796, 0.016156962141394615, 0.009317269548773766, -0.003538453718647361, -0.007946695201098919, 0.0026505456771701574, 0.0057524582371115685, -0.005073760636150837, 0.010898700915277004, 0.0006898173014633358, 0.00041553768096491694, -0.026950234547257423, -0.006220298819243908, 0.0012107837246730924, -0.023009832948446274, 0.013718921691179276, 0.012196793220937252, 0.018845396116375923, -0.02144158072769642, 0.0025863000191748142, -0.007650176528841257, 0.02965184673666954, -0.003989820834249258, -0.031575921922922134, -0.012407651171088219, -0.007630408741533756, 0.013112706132233143, -0.009455644525587559, -0.006866049952805042, 0.006058860570192337, 0.01830507442355156, 0.0021234017331153154, 0.0014974182704463601, 0.017461642622947693, 0.0022700135596096516, 0.014298779889941216, -0.008533142507076263, -0.010668075643479824, 0.00979169923812151, 0.011610345914959908, -0.004381883889436722, 0.007287764921784401, -0.01611742563545704, 0.020321398973464966, -0.012994098477065563, -0.004428009036928415, 0.008157552219927311, 0.0073338900692760944, 0.0032419352792203426, 0.012065007351338863, -0.019609754905104637, -0.029493704438209534, 0.026923878118395805, 0.03813886642456055, 0.041169941425323486, -0.012058418244123459, -0.015827497467398643, 0.0033292435109615326, -0.025579659268260002, -0.003907454665750265, 0.022891225293278694, -0.020545436069369316, 0.007841266691684723, -0.0014685901114717126, -0.019201219081878662, 0.0053702788427472115, -0.004642161540687084, 0.0034396143164485693, 0.02804405800998211, -0.012697580270469189, -0.014351493678987026, -0.008823071606457233, 0.014351493678987026, -0.014391030184924603, 0.0008467249572277069, -0.01124134473502636, 0.001439761952497065, 0.006500343792140484, -0.0022700135596096516, 7.371778337983415e-05, -0.008888964541256428, -0.010292485356330872, -0.010575825348496437, 0.02142840065062046, -0.017857002094388008, -0.03091699257493019, 0.022891225293278694, 0.007511801086366177, 0.009989378042519093, 0.013758457265794277, 5.343509837985039e-05, -0.012664633803069592, -0.010654897429049015, -0.01797560788691044, -0.021520651876926422, 0.008460660465061665, -0.0003026959311682731, -0.0016819186275824904, 0.011247933842241764, 0.008737411350011826, 0.03426435589790344, -0.010101395659148693, 0.006157700438052416, 0.008374999277293682, 0.022271832451224327, -0.0062796021811664104, -0.022074153646826744, -0.0037690792232751846, 0.020084183663129807, -0.004134785383939743, -0.007024193182587624, -0.007597462274134159, 0.004332464188337326, 0.0006614009034819901, 0.011887095868587494, 0.00469158124178648, 0.00356481084600091, -0.00048060703556984663, -0.010411093011498451, 0.02697659097611904, 0.018278716132044792, -0.0037559005431830883, 0.007907159626483917, 0.009402929805219173, -0.004240214359015226, -0.00657282629981637, -0.007103264797478914, -0.0029833053704351187, 0.011920042335987091, -0.029282845556735992, 0.0020426828414201736, -0.013732099905610085, 0.004243508912622929, 0.011050255037844181, -0.0054460559040308, 0.009864181280136108, 0.004428009036928415, -0.008770357817411423, -0.002383679151535034, 0.01692132093012333, 0.0047607687301933765, -0.01634146273136139, 0.008374999277293682, 0.00863857101649046, -0.007294354494661093, -0.019767897203564644, 0.00041759683517739177, 0.012368114665150642, 0.006562942173331976, 0.008500196039676666, 0.012565793469548225, 0.00504081416875124, -0.002256835112348199, -0.0004423067148309201, -0.00013199191016610712, 0.011873917654156685, 0.010206825099885464, -0.0021892946679145098, -0.016367819160223007, -0.017540715634822845, -0.023023011162877083, 0.0035911682061851025, 0.01002232450991869, -0.01912214607000351, 0.005650324281305075, -0.012684401124715805, 0.018977181985974312, -0.008302517235279083, 0.034923285245895386, -0.0005827411659993231, 0.02050589956343174, 0.003087086835876107, -0.0062796021811664104, -0.008269570767879486, 0.010220003314316273, 0.0253556240350008, 0.005307680461555719, -0.009113000705838203, -0.00042336247861385345, -0.004754179622977972, -0.00363399856723845, -0.008816482499241829, 0.0019998522475361824, 0.003871213411912322, -0.026357198134064674, 0.010628540068864822, 0.01852910965681076, -0.018581824377179146, -0.00515612680464983, 0.011432434432208538, 0.009356805123388767, 0.017461642622947693, -0.007050550542771816, -0.018212823197245598, 0.019319824874401093, 0.02662076987326145, 0.007169157732278109, 0.014180172234773636, 0.008309106342494488, -0.006217003799974918, 0.002377089811488986, -0.0050276354886591434, 0.007696301676332951, 0.003134859260171652, 0.0066716657020151615, -0.012947972863912582, 0.014865458942949772, 0.002699965378269553, 0.00022753674420528114, -0.02986270561814308, -0.0005514419754035771, -0.007683122996240854, -0.020756293088197708, -0.0002172409585909918, 0.003640587907284498, 0.02550058811903, 0.007472265511751175, -0.005304385907948017, -0.027754129841923714, -0.010911880061030388, 0.016262391582131386, -0.024182729423046112, -0.013600314036011696, -0.011109558865427971, -0.006852871272712946, -0.028808416798710823, 0.01921439729630947, 0.006062155589461327, 0.018845396116375923, 0.004961742553859949, -0.0023359067272394896, -0.02561919577419758, 0.006879228632897139, 0.005508654285222292, -0.002347437897697091, 0.011551042087376118, 0.008750589564442635, -0.004091954790055752, 0.013125884346663952, -0.001041932962834835, 0.007426140364259481, 0.020189613103866577, -0.003419846296310425, -0.016420533880591393, 0.012947972863912582, -0.006592594087123871, -0.00325676123611629, -0.0145359942689538, 0.01772521622478962, 0.012915026396512985, 0.0013681033160537481, -0.020360935479402542, 0.010114574804902077, 0.004780536517500877, 0.0011094732908532023, -0.019425254315137863, 0.0028037468437105417], "e39682ef-e478-472e-8f0e-da1ed1b619f8": [-0.007673428859561682, -0.01754648983478546, -0.0021854103542864323, -0.0017034506890922785, -0.04874586686491966, -0.03501712903380394, 0.024474065750837326, -0.008273903280496597, 0.0031967354007065296, 0.013475906103849411, 0.022754814475774765, 0.05258890241384506, -0.010688441805541515, -0.015738746151328087, -0.020833296701312065, 0.027229927480220795, -0.00834343209862709, 0.03633185103535652, -0.017887812107801437, -0.02310877852141857, 0.03817752003669739, -0.01100448053330183, -0.04343641176819801, 0.022514624521136284, 0.005710826255381107, -0.038986582309007645, 0.007641824893653393, 0.005916251800954342, -0.022982362657785416, 0.00386831839568913, 0.02456255815923214, -0.011409010738134384, 0.031957872211933136, 0.030491450801491737, 0.02160443179309368, -0.01668686419725418, -0.015700820833444595, -0.0035238356795161963, -0.0029834089800715446, 0.004465632140636444, 0.005574929527938366, 0.022122735157608986, 0.019164610654115677, 0.01857045665383339, -0.00984145700931549, -0.0053600226528942585, -0.004927049390971661, -0.01860838197171688, 0.017811963334679604, -0.011352123692631721, -0.00039761667721904814, -0.03506769612431526, -6.612130528083071e-05, 0.00927890744060278, 0.04009903967380524, -0.004405584651976824, 0.018026869744062424, 0.09000793099403381, -0.005451674107462168, -0.04209640622138977, 0.0037008177023380995, -0.011168820783495903, -2.9480521334335208e-05, -0.002277061576023698, -0.021275751292705536, 0.01903819479048252, 0.008798528462648392, 0.00485436012968421, -0.03392995521426201, -0.012180145829916, 0.02499237097799778, 0.060325540602207184, -0.02097235433757305, 0.028772197663784027, -0.004086385481059551, -0.004721623845398426, -0.006485121790319681, -0.017040826380252838, 0.05476325377821922, -0.007565975654870272, 0.027457475662231445, 0.010410327464342117, 0.03200843930244446, 0.0007059522904455662, 0.05175456032156944, 0.022792737931013107, -0.021692922338843346, -0.029859373345971107, -0.015624972060322762, -0.024903880432248116, 0.01664893887937069, 0.008065317757427692, -0.020820654928684235, -0.00688333110883832, -0.024385575205087662, 0.014575722627341747, 0.001932578976266086, -0.01057466771453619, 0.022476699203252792, 0.0027495399117469788, 0.03949224203824997, 0.025548599660396576, -0.0309718307107687, 0.006308140233159065, -0.018621021881699562, -0.029328426346182823, 0.011238349601626396, 0.027508040890097618, -0.005574929527938366, 0.010922310873866081, 0.026572566479444504, -0.049479078501462936, -0.013513831421732903, 0.01132052019238472, -0.027002379298210144, -0.01516987569630146, -0.037267327308654785, -0.03162918984889984, 0.013614963740110397, -0.028696348890662193, -0.011731370352208614, -0.016724787652492523, 0.031932588666677475, 0.0031603907700628042, 0.0048575205728411674, 0.03784884139895439, -0.04343641176819801, 0.014070060104131699, 0.012565714307129383, 0.02692653052508831, 0.01120042521506548, -0.03526996076107025, -0.0062575736083090305, 0.014373457059264183, -0.0025283126160502434, 0.009228341281414032, 0.017255734652280807, 0.05870741978287697, 0.02414538525044918, 0.029202010482549667, -0.030390318483114243, -0.024929162114858627, -0.012116938829421997, 0.009392681531608105, 0.031705040484666824, 0.0015185677912086248, -0.04250093549489975, 0.0159915778785944, -0.0170661099255085, -0.02479010634124279, -0.04649566859006882, -0.006889651995152235, -0.014145908877253532, 0.009026076644659042, 0.05258890241384506, -0.015953652560710907, -0.00677587790414691, 0.04022545367479324, -0.0036249682307243347, 0.03848091885447502, 0.016054784879088402, -0.06598895788192749, 0.008552017621695995, -0.008393998257815838, 0.0422733873128891, 0.032539382576942444, 0.039820924401283264, 0.01228127907961607, -0.02477746456861496, 0.010245987214148045, 0.042627353221178055, 0.014563080854713917, 0.02563709020614624, -0.021263109520077705, 0.014259682968258858, -0.016345541924238205, 0.05981987714767456, 0.005116672720760107, 0.035118263214826584, -0.02052989788353443, 0.03031446784734726, -0.013336849398911, 0.011168820783495903, -0.009986834600567818, -0.06199422478675842, 0.004203320015221834, 0.0036376097705215216, 0.030162770301103592, -0.003931526094675064, -0.011175141669809818, -0.022754814475774765, -0.010315516032278538, -0.0006707929424010217, 0.03221070393919945, 0.0020668955985456705, -0.054358720779418945, 0.054358720779418945, 0.010511459782719612, -0.008924943394958973, 0.030415602028369904, 0.010416648350656033, -0.05104663223028183, -0.024183310568332672, 0.06255045533180237, -0.05253833532333374, 0.014348174445331097, -0.03501712903380394, -0.018292341381311417, 0.007445880677551031, 0.031123528257012367, 0.021869905292987823, -0.002447722712531686, 0.0002453253255225718, 0.00689597288146615, -0.011744012124836445, 0.00791993923485279, -0.013716096058487892, 0.006820123177021742, -0.004519358742982149, -0.023197269067168236, -0.005227286368608475, -0.0025346335023641586, 0.008431922644376755, -0.0431835800409317, -0.04760812595486641, 0.01879800483584404, -0.003896761918440461, 0.01663629710674286, -0.04465000331401825, -0.008444564417004585, 0.05155229568481445, -0.009980514645576477, 0.01154806837439537, -0.004459311254322529, 0.00026409016572870314, 0.018456682562828064, 0.00444034906104207, 0.006330262869596481, -0.01666158065199852, -0.04222282022237778, 0.019177252426743507, -0.0015904667088761926, -0.0072625782340765, -0.013867794536054134, -0.019581781700253487, 0.009462210349738598, -0.024853313341736794, 0.021617073565721512, 0.03521939367055893, -0.016712145879864693, -0.03762129321694374, 0.004901766311377287, 0.010271269828081131, -0.008728999644517899, -0.015587047673761845, -0.007022388279438019, 0.022957079112529755, -0.02114933542907238, -0.01733158342540264, 0.005518042482435703, -0.018456682562828064, -0.008659470826387405, 0.030036354437470436, -0.00384619552642107, 0.03825337067246437, -0.01730629988014698, 0.029176728799939156, -0.019505932927131653, 0.00636186683550477, 0.015271008014678955, -0.018886495381593704, 0.019354233518242836, 0.015119309537112713, 0.015359499491751194, 0.023854630067944527, -0.0028743755538016558, -0.013336849398911, 0.0022170140873640776, -0.009430605918169022, -0.015447990037500858, 0.03423335403203964, -0.005726628005504608, 0.0371914803981781, 0.02559916488826275, 0.006579933688044548, 0.013968927785754204, -0.006327102426439524, 0.001505926251411438, -0.013943644240498543, -0.008589942008256912, 0.005761392414569855, 0.03782355785369873, 0.01163023803383112, 0.027078228071331978, 0.004623651970177889, -0.030592583119869232, -0.01668686419725418, -0.007066634017974138, -0.018317624926567078, 0.011383728124201298, 0.006207007449120283, -0.002520411740988493, 0.01538478210568428, -0.01516987569630146, 0.058100625872612, -0.01431025005877018, 0.041312627494335175, 0.0034985525999218225, 0.0007742957677692175, 0.03744431212544441, 0.010859102942049503, 0.000523044669535011, 0.026850679889321327, -0.02132631652057171, 0.003108244389295578, 0.015599689446389675, -0.006782198790460825, -0.03870846703648567, -0.04310772940516472, -0.020567823201417923, 0.04164130985736847, 0.015498556196689606, -0.04955492913722992, 0.011288915760815144, 0.0051293144933879375, -0.017369508743286133, 0.012692129239439964, -0.013817228376865387, -0.022464057430624962, -0.03269108384847641, -0.03178089112043381, -0.014196475967764854, -0.0508696511387825, 0.0022723209112882614, 0.01749592274427414, -0.03977035731077194, -0.044346604496240616, -0.05703873187303543, 0.01495496928691864, -0.0009504875633865595, -0.024221235886216164, -0.03309561312198639, -0.019758762791752815, -0.015283649787306786, 0.044093772768974304, -0.022565189749002457, -0.006210167892277241, -0.012028447352349758, -0.010170137509703636, 0.040048472583293915, 0.0006439296412281692, 0.020454049110412598, 0.02266632206737995, 0.00016730319475755095, 0.014765345491468906, -1.6024168871808797e-05, -0.020668955519795418, -0.014360816217958927, 0.014386098831892014, 0.004437188617885113, -0.008040034212172031, -0.023336326703429222, -0.016585731878876686, -0.029783522710204124, 0.009120888076722622, 0.005062946118414402, 0.02453727461397648, 0.02922729402780533, 0.010701083578169346, 0.031072963029146194, -0.01130787841975689, 0.035977888852357864, -0.00045707152457907796, -0.05061681941151619, -0.009019755758345127, -0.04606585577130318, 0.024714255705475807, 0.003587043611332774, -0.03744431212544441, 0.017685547471046448, -0.004253886174410582, 0.0275838915258646, -0.021882545202970505, -0.01731894165277481, 0.01643403246998787, -0.011693445965647697, 0.012407694011926651, -0.0029549654573202133, -0.004620491527020931, -0.002894917968660593, -0.0324382521212101, 0.018406115472316742, 0.017205167561769485, -0.000795628409832716, -0.0012467742199078202, 0.005198842845857143, -0.0009236242040060461, -0.024600481614470482, 0.013425339944660664, 0.012717412784695625, -0.024891238659620285, 0.0023955763317644596, 0.01877272129058838, 0.017407432198524475, 0.0547126866877079, -0.024044252932071686, 0.016535164788365364, 0.024246517568826675, 0.008172770962119102, -0.007161445450037718, 0.015877803787589073, 0.004494075663387775, -0.01112457551062107, 0.01472742110490799, 0.03936582803726196, 0.00831814855337143, -0.01120042521506548, 0.014664213173091412, 0.00572030758485198, 0.002950224792584777, 0.019379517063498497, 0.018431399017572403, 0.014853836968541145, 0.00699078431352973, -0.00213642418384552, 0.02113669365644455, -0.009462210349738598, 0.02562444843351841, 0.0194427240639925, -0.0005084278527647257, 0.010366082191467285, 0.020580464974045753, 0.022464057430624962, 0.00475954869762063, -0.029758239164948463, -0.02773558907210827, -0.0018646306125447154, -0.020365558564662933, -0.0012744276318699121, -0.01943008229136467, -0.01515723392367363, 0.02286858856678009, 0.004187517799437046, -0.005382145754992962, -0.016901770606637, -0.02305821143090725, -0.008040034212172031, -0.0034637884236872196, 0.024297084659337997, 0.03183145821094513, 0.018191209062933922, 0.005562287755310535, -0.01685120351612568, 0.004611010197550058, -0.005865685176104307, -0.0057234675623476505, 0.019518572837114334, 0.016383465379476547, -0.005995261482894421, -0.010543064214289188, -0.044321320950984955, 0.0009070321684703231, 0.02753332443535328, 0.01580195501446724, 0.013931002467870712, -0.0336771234869957, -0.0029549654573202133, -0.007268899120390415, 0.01420911680907011, 0.021010277792811394, -0.009373718872666359, -0.0020305512007325888, -0.05683646723628044, 0.027280492708086967, -0.011326841078698635, -0.03587675839662552, -0.005271532107144594, 0.01302080973982811, 0.008577300235629082, 0.004550962708890438, 0.03997262194752693, -0.030592583119869232, -0.04404320567846298, -0.010018439032137394, -0.007091917097568512, 0.025156710296869278, -0.014145908877253532, -0.023007644340395927, 0.022577831521630287, -0.01728101633489132, 0.004468792583793402, 0.004095866344869137, -0.00523360725492239, 0.019480649381875992, 0.03248881921172142, -0.026774831116199493, 0.03441033512353897, -0.011168820783495903, -0.012515147216618061, -0.02821596898138523, 0.03484014794230461, 0.031123528257012367, -0.009632871486246586, 0.06654518842697144, 0.017457999289035797, 0.005540165118873119, -0.0075217303819954395, -0.03332316130399704, 0.003947328310459852, 0.0099173067137599, -0.006165922619402409, -0.02224915102124214, -0.030845414847135544, -0.0008785886457189918, -0.013741379603743553, -0.02004951983690262, -0.04449830204248428, 0.0070413509383797646, 0.029378993436694145, -0.005533844232559204, -0.0007043721270747483, -0.02927786111831665, 0.008021071553230286, 0.023424817249178886, -0.02542218379676342, 0.008077958598732948, -0.04237452149391174, -0.026825398206710815, 0.015523839741945267, -0.015043460763990879, -0.012211750261485577, -0.00033144597546197474, -0.01750856451690197, 0.00970872025936842, 0.02031499147415161, 0.002969187218695879, -0.008242298848927021, -0.009771928191184998, 0.029303142800927162, 0.027685023844242096, -0.0024192791897803545, 0.009114567190408707, 0.03463788330554962, -0.011282594874501228, 0.011674483306705952, 0.03521939367055893, 0.007837769575417042, 0.06421913951635361, -0.009531739167869091, 0.011819861829280853, -0.01453779824078083, 0.0029834089800715446, -0.016522523015737534, -0.04854360222816467, 0.012192787602543831, -0.0275838915258646, 0.03119937889277935, -0.015094026923179626, -0.028873329982161522, -0.019543856382369995, 0.003387938952073455, -0.011851465329527855, 0.0031714520882815123, -0.004190678242594004, 0.012097976170480251, -0.02988465502858162, -0.024663690477609634, 0.00984145700931549, -0.018873853608965874, 0.03362656012177467, 0.022957079112529755, 0.0012056890409439802, 0.05054096877574921, 0.026345018297433853, -0.009607587940990925, 0.021705564111471176, -0.004276008810847998, -0.014411382377147675, -0.0033689765259623528, -0.0207448061555624, 0.02801370434463024, -0.021528583019971848, 0.012647883966565132, 0.0037671858444809914, 0.013602321967482567, -0.0017571772914379835, -0.017028186470270157, -0.009986834600567818, -0.004718463402241468, -0.009045038372278214, 0.030617866665124893, 0.03453674912452698, 0.022312359884381294, -0.011288915760815144, 0.010511459782719612, 0.03443561866879463, -0.00044166462612338364, -0.012363448739051819, 0.011074009351432323, 0.017230451107025146, 0.043284714221954346, 0.008299185894429684, -0.0040611024014651775, 6.577563181053847e-05, -0.029353709891438484, -0.01399421039968729, 0.01453779824078083, 0.03564921021461487, -0.007433239370584488, 0.015978936105966568, -0.02948012575507164, 0.01691441237926483, 0.008375035598874092, -0.017571773380041122, 0.014550439082086086, -0.020593106746673584, 0.0019151968881487846, 0.015005535446107388, -0.008185411803424358, -0.00243350095115602, -0.028140120208263397, -0.056280240416526794, 0.040908098220825195, -0.03928997740149498, 0.025801431387662888, 0.012154863215982914, 0.03650883585214615, -0.024423500522971153, -0.0017793000442907214, 0.023184627294540405, -0.0013376354472711682, -0.020656313747167587, -0.004756388254463673, -0.02540954202413559, 0.0354975089430809, -0.019923103973269463, 0.010113250464200974, 0.01620648428797722, 0.00906400103121996, -0.017672905698418617, 0.027078228071331978, 0.0074964468367397785, -0.015561764128506184, 0.022362925112247467, -0.01709139347076416, 0.020138010382652283, -0.025257842615246773, 0.014980252832174301, 0.012774299830198288, 0.005976298823952675, -0.012970243580639362, 0.029303142800927162, 0.009209378622472286, 0.014815912581980228, -0.0058941286988556385, 0.00747748464345932, 0.004506717436015606, 0.0126036386936903, 0.0065672919154167175, -0.016269691288471222, 0.03375297412276268, -0.022350283339619637, 0.01185778621584177, 0.00602686544880271, 0.019493291154503822, 0.011838823556900024, -0.016901770606637, 0.027710307389497757, 0.01547327358275652, 0.00939900241792202, -0.006440876517444849, -0.02242613397538662, -0.0017002902459353209, -0.01208533439785242, 0.022046886384487152, 0.019771404564380646, -0.012856469489634037, -0.013842511922121048, -0.014474590308964252, 0.005429551471024752, -0.01142797339707613, -0.016585731878876686, -0.020024236291646957, 0.014664213173091412, -0.0034574675373733044, -0.0016639457317069173, -0.0018756919307634234, 0.04697604849934578, 0.0029202010482549667, -0.024701613932847977, 0.03800053894519806, -0.006712669972330332, 0.003865157952532172, -0.021667638793587685, -0.003580722725018859, 0.01855781488120556, -0.011377407237887383, 0.005151437129825354, 0.02241349220275879, -0.017634980380535126, -0.032741647213697433, -0.01548591535538435, 0.036382418125867844, -0.007793523836880922, 0.015094026923179626, 0.023892555385828018, -0.006832764949649572, -0.025535957887768745, 0.028342384845018387, -0.015612330287694931, -0.006450357846915722, 0.010435610078275204, 0.034915998578071594, 0.017344225198030472, 0.011010801419615746, -0.013336849398911, -0.0028696348890662193, 0.014284966513514519, -0.012584676034748554, 0.0008770084241405129, 0.015662897378206253, -0.009759286418557167, 0.026193318888545036, -0.04586359113454819, -0.03612958639860153, 0.027811439707875252, 0.021920470520853996, 0.02624388597905636, -0.01205373089760542, 0.0027953656390309334, 0.00973400380462408, -0.005518042482435703, 0.028089553117752075, -0.006687386892735958, -0.00896918959915638, -0.007193049415946007, -0.008280224166810513, -0.0006838295375928283, 0.019139327108860016, -0.02773558907210827, -0.01817856729030609, -0.0040611024014651775, 0.01902555301785469, -0.010536743327975273, -0.00264050648547709, 0.006308140233159065, 0.012970243580639362, 0.005198842845857143, -0.013475906103849411, 0.0035206754691898823, 0.03140164166688919, -0.029050312936306, 0.016396107152104378, 0.024423500522971153, -0.0026104827411472797, -0.012445619329810143, 0.02965710684657097, -0.009588626213371754, -0.0001850803819252178, 0.04042771831154823, -0.012767978943884373, 0.0012696869671344757, -0.016370823606848717, 0.0030387158039957285, -0.005951015744358301, -0.017394790425896645, -0.015915729105472565, 0.019177252426743507, 0.0258267130702734, -0.02346274070441723, 0.04480170086026192, 0.03241296857595444, 0.022969720885157585, 0.03489071503281593, 0.0062891775742173195, 0.00038398749893531203, 0.022944437339901924, 0.018406115472316742, -0.013109301216900349, -0.00982881523668766, -0.010732687078416348, -0.04854360222816467, 0.037014495581388474, -0.001387411612085998, 0.009158812463283539, -0.02288123033940792, 0.03314618021249771, -0.00625441363081336, -0.025321051478385925, -0.025675015524029732, -0.016067426651716232, -0.02521991916000843, -0.006523046642541885, 0.00897550955414772, -0.006377668585628271, -0.010505138896405697, -0.0031287868041545153, -0.04179300740361214, -0.009057680144906044, 0.022565189749002457, 0.002939163474366069, -0.029328426346182823, 0.04280433431267738, 0.035977888852357864, 0.002041612518951297, 0.022742172703146935, 0.015953652560710907, -0.0040136962197721004, -0.006225970108062029, -0.032741647213697433, -0.005988940596580505, 0.014803270809352398, -0.019809329882264137, 0.022350283339619637, -0.0381016731262207, -0.018469324335455894, -0.019607065245509148, 0.028519365936517715, 0.02988465502858162, -0.004781671334058046, -0.01924045942723751, 0.02242613397538662, -0.01685120351612568, 0.014284966513514519, -0.010163816623389721, 0.020618390291929245, 0.03916356340050697, -0.03868318349123001, 0.005792996380478144, 0.022287076339125633, 0.01812800206243992, -0.0175212062895298, -0.005960497073829174, 0.026547282934188843, -0.004415065981447697, -0.019923103973269463, 0.00344166555441916, -0.00961390882730484, -0.032741647213697433, 0.021907828748226166, -0.02433500997722149, -0.021275751292705536, -0.0023781941272318363, -0.006693707779049873, 0.006466159597039223, 0.002117461757734418, 0.013336849398911, -0.006693707779049873, 7.688638288527727e-05, 0.027255211025476456, 0.03807638958096504, -0.04052885249257088, -0.017154600471258163, 0.02281802147626877, 0.003089281963184476, 0.030162770301103592, -0.046242836862802505, -0.009070321917533875, -0.008684754371643066, 0.005230446811765432, 0.010688441805541515, -0.00570766581222415, 0.0011021862737834454, -0.005318937823176384, -0.0111056137830019, -0.0020984995644539595, -0.00264050648547709, -0.008153808303177357, 0.03931526094675064, 0.01577667146921158, 0.006744273938238621, -0.02242613397538662, 0.03484014794230461, -0.023614440113306046, -0.025346335023641586, 0.0069402181543409824, -0.0271287951618433, 0.028772197663784027, -0.02948012575507164, 0.006820123177021742, 0.0010215963702648878, 0.029378993436694145, 0.034915998578071594, 0.008621546439826488, -0.0594659149646759, -0.011074009351432323, 0.004257046617567539, -0.009677116759121418, -0.01688912883400917, -0.02004951983690262, 0.012237032875418663, 0.0013937323819845915, 0.005420070141553879, -0.0018440880812704563, -0.03226127102971077, 0.008444564417004585, 0.023235192522406578, 0.014360816217958927, 0.009474852122366428, 0.009860419668257236, 0.007287861313670874, -0.0333484448492527, -0.0413631945848465, -0.022325001657009125, 0.02604161947965622, -0.0179763026535511, 0.022552547976374626, -0.004794313106685877, -0.008166450075805187, 0.036862798035144806, 0.00010458918404765427, -0.01771083101630211, -0.02922729402780533, -0.011314199306070805, 0.03969451040029526, 0.0005898079252801836, -1.7740161638357677e-05, -0.0017145120073109865, 0.0036060060374438763, 0.003460627980530262, 0.03140164166688919, 0.025093503296375275, 0.02073216438293457, 0.015447990037500858, -0.04573717713356018, 0.017875170335173607, -0.03291863203048706, -0.000670397887006402, -0.005587570834904909, 0.021073486655950546, -0.03119937889277935, -0.007654466666281223, -0.017849886789917946, -0.015308933332562447, 0.012584676034748554, -0.006393470801413059, 0.013324207626283169, 0.0009536479483358562, -0.03339901193976402, -0.019758762791752815, -0.02140216715633869, -0.016358183696866035, -0.011579671874642372, -0.028797481209039688, -0.022514624521136284, -0.020036878064274788, -0.0137919457629323, 0.020011594519019127, -0.014525156468153, -0.0073573896661400795, 0.001218330697156489, 0.022325001657009125, -0.0037956293672323227, 0.008134845644235611, 0.03117409534752369, 0.004136951640248299, 0.010505138896405697, -0.0006383989239111543, -0.018469324335455894, -0.022893870249390602, 0.022590473294258118, 0.0014340273337438703, 0.0020305512007325888, 0.0011092971544712782, -0.04937794804573059, 0.036028455942869186, -0.017597056925296783, -0.01304609328508377, 0.020163293927907944, 0.008185411803424358, 0.007559654768556356, -0.006260734051465988, -0.0019878859166055918, 0.03031446784734726, -0.007332106586545706, -0.020668955519795418, 0.006542008835822344, -0.018279699608683586, -0.006444036960601807, 0.0023971565533429384, 0.030820131301879883, 0.012205429375171661, 0.012780620716512203, -0.00886805634945631, -0.008141166530549526, 0.04419490694999695, 0.030592583119869232, -0.004895445425063372, 0.002736898371949792, 0.024625765159726143, 0.007679749745875597, -0.011573350988328457, 9.234267054125667e-05, -0.0025472750421613455, 0.017141960561275482, -0.021882545202970505, -0.009658154100179672, -0.0209091454744339, 0.011693445965647697, -0.0359526053071022, -0.007344748359173536, 0.01624440960586071, 0.008520413190126419, -0.021263109520077705, 0.02223650924861431, -0.033803541213274, -0.007009746972471476, -0.014044776558876038, 0.0015470113139599562, 0.0031603907700628042, 0.010182779282331467, -0.00689597288146615, -0.0055243633687496185, -0.02307085320353508, 0.024625765159726143, 0.02821596898138523, 0.02412010356783867, -0.036028455942869186, -0.017205167561769485, 0.03767186030745506, -0.026648415252566338, -0.005410589277744293, -0.0026373460423201323, -0.016990261152386665, -0.01577667146921158, 0.01647195778787136, 0.02242613397538662, -0.0028980784118175507, 0.012432977557182312, 0.02965710684657097, -0.01816592551767826, -0.017356866970658302, 0.005666580516844988, -0.012414014898240566, -0.02070688083767891, -0.009702399373054504, 0.03805110603570938, -0.04353754222393036, 0.002509350422769785, -0.007926260121166706, 0.019101401790976524, -0.002939163474366069, 0.006681066006422043, 0.006579933688044548, -0.009525418281555176, 0.001739795203320682, 0.0005965237505733967, -0.024246517568826675, -0.026193318888545036, 0.011623917147517204, 0.001040558679960668, -0.012451940216124058, 0.0042064799927175045, -0.020757446065545082, -0.0015288391150534153, -0.006090072914958, 0.011699766851961613, 0.0025836194399744272, -0.00950645562261343, 0.02965710684657097, -0.005954176187515259, 0.020251784473657608, 0.05617910623550415, -0.026446150615811348, 0.014082701876759529, -0.026446150615811348, -0.0064282347448170185, 0.01604214310646057, -0.006162762176245451, -0.005745590664446354, 0.0062575736083090305, 0.03221070393919945, 0.004930209834128618, 0.035800907760858536, -0.00587516650557518, 0.025763506069779396, -0.004452990833669901, 0.0065988958813250065, 0.00636186683550477, -0.015599689446389675, -0.033854108303785324, 0.006643141619861126, -0.02369028888642788, 0.010448251850903034, -0.0009038717835210264, 0.009310510940849781, 0.01643403246998787, 0.028797481209039688, -0.008836452849209309, 0.009569663554430008, -0.028999745845794678, -0.013829870149493217, 0.012553072534501553, 0.009866740554571152, -0.0065988958813250065, -0.01238873228430748, 0.004446669947355986, 0.04310772940516472, 0.0049049267545342445, 0.00823597889393568, 0.015195159241557121, -0.00528101297095418, 0.00411798944696784, 0.006839085835963488, 0.0052209654822945595, 0.0070792753249406815, -0.01422175858169794, 0.004557283595204353, -0.0137919457629323, -0.014929686672985554, 0.02776087261736393, 0.005941534880548716, 0.028721632435917854, 0.025940487161278725, -0.0016718467231839895, 0.002936003031209111, -0.014651571400463581, -0.00929154921323061, -0.012230712920427322, 0.006889651995152235, 0.006447197403758764, 0.005865685176104307, -0.014373457059264183, 0.02070688083767891, -0.002476166235283017, 0.00688333110883832, 0.011946277692914009, -0.011194104328751564, 0.015435349196195602, 0.010934952646493912, 0.009512776508927345, -0.004885964095592499, 0.023804062977433205, 0.012957602739334106, -0.013855153694748878, 0.024853313341736794, 0.021199902519583702, -0.0065672919154167175, -0.031098246574401855, 0.008400319144129753, -0.002672110451385379, -0.014057418331503868, 0.009759286418557167, 0.014322890900075436, 0.021212542429566383, -0.006169083062559366, 0.0005127734038978815, -0.012546751648187637, 0.002733738161623478, -0.02948012575507164, -0.0007387413643300533, -0.008678433485329151, 0.0453326441347599, -0.0025788790080696344, -0.011769295670092106, -4.118384458706714e-05, -0.020226500928401947, -0.010416648350656033, 0.01922781765460968, -0.021958395838737488, -0.03592732176184654, -0.008248619735240936, -0.010530422441661358, -0.02458783984184265, -0.010404006578028202, -0.016762712970376015, 0.021048203110694885, 0.019518572837114334, 0.020618390291929245, -0.01226863730698824, -0.007338427472859621, -0.012534109875559807, 0.0016592051833868027, 0.0013526473194360733, -0.005290494300425053, -0.0016576249618083239, -0.008147487416863441, -0.0031035037245601416, -0.0069402181543409824, -0.0025946807581931353, 0.0013897818280383945, -0.004288650117814541, -0.019379517063498497, -0.0012562553165480494, -0.0027700825594365597, -0.027179360389709473, -0.005562287755310535, 0.0036944968160241842, -0.008634187281131744, 0.02819068543612957, 0.011611276306211948, 0.007983147166669369, -0.013893078081309795, 0.0015683439560234547, 0.024701613932847977, 0.010972877033054829, 0.01753384806215763, -0.015751387923955917, -0.0012325524585321546, -0.021945754066109657, 0.0052146450616419315, -0.0019515412859618664, -0.019316308200359344, -0.006462999153882265, -0.022590473294258118, -0.011143538169562817, -0.002177509246394038, -0.012736375443637371, 0.03916356340050697, -0.030263902619481087, 0.004500396549701691, 0.03562392666935921, -0.013855153694748878, -0.01643403246998787, -0.02309613674879074, 0.01854517310857773, -0.017002902925014496, -0.03782355785369873, 0.015941010788083076, -0.016762712970376015, 0.043891508132219315, 0.001218330697156489, 0.0027827240992337465, -0.006504084449261427, -0.00018557420116849244, 0.003770346287637949, -0.010106929577887058, 0.015346857719123363, 0.002531473059207201, -0.003419542917981744, 0.015599689446389675, -0.009436926804482937, 0.0381016731262207, 0.01152278482913971, 0.0078061651438474655, 0.0075280508026480675, 0.004313933663070202, -0.05956704542040825, -0.012521468102931976, 0.014803270809352398, -0.002447722712531686, -0.012357127852737904, 0.030592583119869232, 0.01601686142385006, 0.006219649221748114, 0.009696079418063164, -0.01711667701601982, 0.004001054912805557, -0.01088438555598259, 0.009607587940990925, 0.009582305327057838, 0.01269845012575388, -0.005521202925592661, -0.0006755335489287972, -0.007742957677692175, -0.007300502620637417, -0.019821971654891968, 0.025321051478385925, 0.00047879922203719616, -0.005432711914181709, -0.014563080854713917, -0.022135376930236816, 0.0029976307414472103, -0.01857045665383339, -0.0005661050090566278, -0.0305167343467474, -0.018481966108083725, -0.0006040296866558492, -0.009771928191184998, -0.007603900507092476, -0.019910462200641632, -0.006782198790460825, -0.004396103788167238, 0.023854630067944527, -0.04146432876586914, 0.010410327464342117, 0.008387677371501923, -0.032160136848688126, -0.03446090221405029, 0.008261261507868767, -0.0008967609028331935, 0.021515941247344017, 0.003447986440733075, -0.02030235156416893, -0.0027495399117469788, 0.0010366082424297929, 0.022969720885157585, 0.0028143280651420355, -0.006611537653952837, -0.0033184103667736053, 0.01547327358275652, -0.000696471135597676, 0.0022912833373993635, 0.004494075663387775, -0.0027732430025935173, 0.008918622508645058, -0.014335532672703266, -0.02690124697983265, 0.022603115066885948, 0.039188846945762634, -0.01879800483584404, 0.026168035343289375, -0.0004547012213151902, 0.0021032399963587523, -0.0072120120748877525, -0.0033184103667736053, -0.006387149915099144, 0.005107191391289234, -0.007502767723053694, -0.03271636739373207, -0.015941010788083076, -0.016383465379476547, 0.017179884016513824, 0.012180145829916, 0.03501712903380394, 0.02154122292995453, -0.00877324491739273, -0.01578931324183941, -0.012907036580145359, -0.01216118410229683, 0.024461425840854645, 0.026749547570943832, 0.018734795972704887, 0.01918989233672619, 0.01248354371637106, 0.028721632435917854, 0.017382148653268814, 0.028797481209039688, 0.006131158210337162, 0.009285228326916695, 0.0032220184803009033, 0.01854517310857773, -0.013362132012844086, -0.006415593437850475, 0.021503299474716187, 0.03678694739937782, -0.008412959985435009, -0.01668686419725418, 0.006418753881007433, -0.01583987846970558, -0.024360291659832, -0.0023355288431048393, -0.0001575257338117808, 0.030011070892214775, 0.004898605868220329, 0.007104558404535055, -0.006387149915099144, -0.0008066897862590849, 0.024853313341736794, -0.0036786948330700397, -0.011175141669809818, 0.006662103813141584, 0.005954176187515259, 0.014070060104131699, 0.001965763047337532, -0.013501189649105072, -0.011889390647411346, 0.021490657702088356, 0.012243353761732578, 0.0014245461206883192, -0.015915729105472565, -0.016067426651716232, -0.04356282576918602, -0.01271109189838171, -0.0016070586862042546, 0.02371557243168354, -0.005179880652576685, 0.009329473599791527, -0.0026452471502125263, 0.008356072939932346, 0.014777987264096737, 0.027406908571720123, 0.0014948648167774081, 0.002027390757575631, -0.007951543666422367, 0.012420335784554482, 0.0011622337624430656, 0.010473535396158695, 0.007964184507727623, 0.015081385150551796, 0.0009094024426303804, 0.03160391002893448, 0.006617858540266752, 0.016509881243109703, -0.005574929527938366, 0.015599689446389675, -0.011130896396934986, -0.0159915778785944, 0.024676332250237465, 0.015245725400745869, 0.0008090600604191422, -0.012970243580639362, 0.028873329982161522, 0.011364765465259552, -0.008798528462648392, -0.04020017012953758, -0.006832764949649572, -0.007180408108979464, -0.0038398748729377985, 0.008065317757427692, 0.0003695682098623365, 0.00566026009619236, 0.021098768338561058, 0.035548076033592224, -0.04609113931655884, -0.0067316326312720776, 0.011244670487940311, 0.005644457880407572, 0.015081385150551796, -0.0017224129987880588, 0.0013439562171697617, 0.001544640981592238, 0.01776139624416828, -0.020150652155280113, 0.014879119582474232, -0.0183681920170784, -0.019733481109142303, 0.0014664212940260768, 0.009632871486246586, -0.02138952538371086, -0.010283911600708961, -0.007983147166669369, 0.006636820733547211, -0.004579406231641769, -0.0011954178335145116, -0.01047985628247261, -0.010656838305294514, -0.004848039709031582, 0.004490915220230818, -0.0009157232125289738, 0.02031499147415161, -0.02307085320353508, 0.012932319194078445, -0.00938636064529419, -0.006358706392347813, -0.035118263214826584, 0.006971822120249271, -0.022337641566991806, 0.006371347699314356, 0.012559393420815468, 0.002180669689550996, -0.020036878064274788, 0.00689597288146615, -0.01814064383506775, -0.004753227811306715, -0.01663629710674286, -0.022780096158385277, -0.01453779824078083, 0.0114153316244483, 0.025801431387662888, -0.027255211025476456, -0.007787202950567007, -0.003236240241676569, 0.007976826280355453, 0.041565459221601486, -0.00020009223953820765, -0.01334949117153883, -0.030036354437470436, -0.006181724369525909, 0.028367668390274048, -0.030011070892214775, -0.02047933265566826, 0.011611276306211948, -0.012856469489634037, 0.002234396291896701, -0.0024556235875934362, 0.007287861313670874, 0.005385305732488632, 0.014449306763708591, 0.0034985525999218225, 0.0036944968160241842, 0.037267327308654785, -0.002318146638572216, 0.033196743577718735, -0.022059528157114983, 0.029151445254683495, 0.0004578616062644869, -0.015397423878312111, -0.013311565853655338, 0.01548591535538435, -0.00497445510700345, -0.0030608384404331446, -0.031755607575178146, -0.007085596211254597, 0.011086651124060154, 0.019164610654115677, 0.015688180923461914, -0.02499237097799778, -0.0207448061555624, 0.004038979299366474, 0.0034037409350275993, -0.02310877852141857, 0.022135376930236816, 0.0033594954293221235, 0.0006889651995152235, -0.02351330779492855, 0.019986310973763466, 0.04543377831578255, -0.03592732176184654, 0.01399421039968729, 0.010163816623389721, -0.014335532672703266, 0.013956286013126373, 0.027811439707875252, -0.03327259421348572, -0.026016337797045708, 0.013374773785471916, 0.001995786791667342, -0.013172509148716927, -0.004791152663528919, -0.016560448333621025, 0.006311300676316023, -0.020138010382652283, -0.022893870249390602, -0.010543064214289188, 0.007730315905064344, -0.039846207946538925, -0.014461948536336422, -0.0010871744016185403, -0.014563080854713917, 0.013513831421732903, 0.015245725400745869, -0.019518572837114334, 0.014322890900075436, -0.00344166555441916, -0.013968927785754204, 0.03501712903380394, -0.02006216160953045, 0.018406115472316742, -0.016585731878876686, 0.03119937889277935, 0.022539908066391945, -0.009152491576969624, -0.011029764078557491, -0.002427180064842105, 0.042172256857156754, 0.005315777380019426, -0.002158546820282936, -0.005546486005187035, -0.03324731066823006, 0.0018298663198947906, 0.01080221589654684, -0.012736375443637371, -0.006997105199843645, 0.009809853509068489, -0.02262839861214161, 0.0022928635589778423, -0.00877324491739273, 0.014234400354325771, -0.013008168898522854, -0.0029897296335548162, -0.010087967850267887, -0.007256257347762585, 0.014032134786248207, -0.00646932004019618, -0.004174876492470503, 0.009133529849350452, 0.015005535446107388, -0.02240085043013096, 0.005672901403158903, -0.003217277815565467, -0.01130787841975689, -0.0034701090771704912, -0.003972611390054226, 0.00444034906104207, -0.02068159729242325, -0.03135107830166817, -0.017230451107025146, -0.010543064214289188, 0.006718990858644247, -0.005202003289014101, -0.006466159597039223, 0.008356072939932346, -0.007287861313670874, 0.009114567190408707, -0.0021506459452211857, 0.0029881494119763374, -0.01496761105954647, 0.007964184507727623, 0.004623651970177889, -0.004813275299966335, -0.018279699608683586, 0.061640262603759766, 0.013008168898522854, 0.014588364399969578, -0.005287333857268095, -0.012104297056794167, -0.030870698392391205, 0.007319465279579163, 0.023614440113306046, 0.01046721450984478, -0.011592313647270203, -0.008134845644235611, -0.007894656620919704, 0.001730313990265131, -0.0003788518370129168, -0.011516463942825794, 0.004108508117496967, 0.0036818552762269974, 0.0021285233087837696, -0.0065672919154167175, 0.039593376219272614, 0.027255211025476456, -0.0010034240549430251, -0.004434028174728155, -0.0070160673931241035, -0.00047010814887471497, 0.013716096058487892, -0.009045038372278214, 0.021958395838737488, 0.009310510940849781, 0.030921263620257378, -0.002401896985247731, 0.014183834195137024, -0.030440883710980415, -0.009272586554288864, -0.002980248536914587, 0.027634456753730774, -0.0012246514670550823, 0.019695555791258812, -0.010062684305012226, -0.00017658683646004647, -0.001324203796684742, 0.01283118687570095, 0.027659740298986435, 0.026420867070555687, -0.02068159729242325, 0.0047342656180262566, 0.005710826255381107, -0.014335532672703266, 0.027280492708086967, -0.02197103761136532, 0.0008138006087392569, 0.001698710024356842, -0.0036944968160241842, 0.01547327358275652, -0.013602321967482567, -0.015751387923955917, -0.00011011986498488113, -0.01280590333044529, -0.003258362878113985, 0.004396103788167238, -0.01302080973982811, -0.02117461897432804, -0.02604161947965622, -0.02606690302491188, -0.004705822095274925, -0.012477222830057144, -0.00737003143876791, -0.00790097750723362, -0.0024382416158914566, -0.024094820022583008, 0.00448459479957819, 0.01269845012575388, 0.010701083578169346, -0.01726837456226349, -0.03456203266978264, 0.010309195145964622, 0.0006609167321585119, 0.02753332443535328, 0.03461259976029396, 0.011055046692490578, -0.004756388254463673, 0.0011993682710453868, -0.0006115356227383018, -0.008766924031078815, 0.01078957412391901, 0.01195259764790535, -0.009879381395876408, -0.023829346522688866, 0.024309726431965828, -0.0175212062895298, -0.022590473294258118, 0.024663690477609634, 0.004885964095592499, 0.015220441855490208, 0.0028143280651420355, 0.0006743483827449381, 0.004800633527338505, -0.031249944120645523, 0.006839085835963488, 0.0030292347073554993, 0.01835555024445057, 0.0012625760864466429, -0.01548591535538435, 0.00024493029923178256, -0.007490126416087151, -0.009405323304235935, 0.014601005241274834, 0.0037640254013240337, -0.005094550084322691, 0.025889921933412552, -0.004073743708431721, -0.023627081885933876, 0.006159601733088493, 0.0073573896661400795, -0.023652365431189537, 0.021515941247344017, -0.0046868594363331795, -0.013690813444554806, -0.007717674598097801, -0.014070060104131699, 0.0106821209192276, -0.0061437999829649925, -0.015650255605578423, -0.005976298823952675, 0.005382145754992962, 0.012578355148434639, -0.019821971654891968, -0.012742695398628712, 0.009771928191184998, -0.040023189038038254, 0.006112196017056704, -0.0035396376624703407, -0.0029644465539604425, -0.001859889947809279, -0.002318146638572216, -0.0069402181543409824, -0.005679222289472818, 0.002063735155388713, 0.012919677421450615, -0.031957872211933136, 0.01429760828614235, -0.010846461169421673, 0.0051893615163862705, 0.028266536071896553, -0.0051893615163862705, 0.000393666181480512, -0.02006216160953045, -0.036230720579624176, 0.001878852373920381, -0.0028870170935988426, 0.017559131607413292, -0.03446090221405029, -0.0018741117091849446, 0.0038177520036697388, -0.0137919457629323, -0.0023039248771965504, -0.014815912581980228, -0.011769295670092106, -0.012079013511538506, 0.005606533493846655, 0.013728737831115723, 0.010530422441661358, -0.013905719853937626, -1.635749140405096e-05, -0.019278384745121002, -0.011238349601626396, 0.03135107830166817, 0.01773611269891262, 0.0207448061555624, -0.021263109520077705, 0.0073510692454874516, 0.003643930656835437, -0.00014458787336479872, -0.018658947199583054, 0.013842511922121048, -0.0036470910999923944, -0.007224653381854296, 0.001730313990265131, -0.005878326948732138, 0.004822756163775921, 0.025472750887274742, -0.01538478210568428, 0.027002379298210144, 0.02137688361108303, -0.016535164788365364, -0.017988944426178932, 0.0031050839461386204, -0.008096921257674694, -0.01495496928691864, 0.023804062977433205, -0.00555596686899662, 0.017167242243885994, 0.004629972390830517, -0.0061501204036176205, -0.00448775477707386, -0.00017115491209551692, 0.020858580246567726, 0.017028186470270157, -0.009550700895488262, -0.014765345491468906, -0.012995527125895023, 0.002863314002752304, 0.003843035316094756, 8.893537597032264e-05, -0.003915724344551563, -0.013627605512738228, -0.010448251850903034, -0.013134583830833435, -0.023652365431189537, 0.010903348214924335, -0.028746914118528366, -0.03135107830166817, 0.005334739573299885, -0.0009678697097115219, -0.020390842109918594, 0.02154122292995453, 7.328156061703339e-05, 0.0034543070942163467, 0.01855781488120556, 0.0045699249021708965, 0.001973664155229926, 0.0011424812255427241, 0.010568346828222275, -0.007957864552736282, -0.014360816217958927, -0.023665007203817368, 0.016105351969599724, 0.006077431607991457, -0.006611537653952837, -0.03489071503281593, 0.025333693251013756, 0.0026436669286340475, 0.009045038372278214, 0.007066634017974138, 0.022072169929742813, 0.030921263620257378, 0.00688333110883832, -0.00540110794827342, -0.0059352139942348, -0.011333161033689976, -0.010422969236969948, 0.00280010630376637, -0.01228127907961607, 0.004162234719842672, -0.0035238356795161963, -0.0062354509718716145, 0.0015572825213894248, 0.0371914803981781, -0.0137919457629323, -2.4912767912610434e-05, 0.015903087332844734, -0.002970767440274358, 0.005056625232100487, 0.009569663554430008, -0.011680804193019867, 0.004645774606615305, 0.0008280223701149225, -0.011143538169562817, -0.002199632115662098, -0.03157862648367882, 0.0007031869608908892, 0.005426391027867794, 0.0033373727928847075, 0.005657099653035402, 0.022135376930236816, 0.029783522710204124, -0.026521999388933182, 0.030036354437470436, -0.009127208963036537, 0.008476167917251587, -0.0029897296335548162, -0.001281538512557745, 0.03562392666935921, -0.007098237983882427, 0.005549646448343992, 0.013678171671926975, -0.019366875290870667, -0.02544746734201908, 0.011276273988187313, 0.010277590714395046, -0.004263367038220167, 0.006172243505716324, -0.008052675984799862, -0.028367668390274048, -0.007420597597956657, -0.021743489429354668, -0.020188577473163605, 0.011238349601626396, -0.004415065981447697, -0.014259682968258858, 0.009689758531749249, -0.00011772455764003098, 0.013223075307905674, -0.004181196913123131, -0.0019483809592202306, -0.0018551493994891644, -0.0026199640706181526, 0.000636028649751097, 0.015043460763990879, 0.007572296541184187, 0.016497239470481873, -0.009392681531608105, -0.016901770606637, -0.02307085320353508, 0.025915205478668213, -0.012432977557182312, 0.03370240703225136, 0.001249934546649456, -0.014879119582474232, -0.0017271535471081734, 0.0106821209192276, -0.004528840072453022, -0.024309726431965828, 0.014044776558876038, -0.0228306632488966, -0.01078957412391901, 0.02133895829319954, 0.015296291559934616, -0.011453256011009216, 0.018254417926073074, 0.001697129919193685, 0.00019288260955363512, 0.01058730948716402, -0.008141166530549526, 0.004936530254781246, -0.0025472750421613455, 0.01835555024445057, 0.012319203466176987, 0.029378993436694145, -0.012489864602684975, -0.010783253237605095, 0.011649200692772865, -0.027027662843465805, 0.0016102191293612123, 0.020011594519019127, 0.01733158342540264, -0.014360816217958927, -0.01237609051167965, -0.0035111941397190094, -0.011099292896687984, -0.023627081885933876, -0.015953652560710907, -0.005780354607850313, 0.0060963938012719154, 0.0051862015388906, 0.015410065650939941, 0.006718990858644247, 0.01173769123852253, 0.013716096058487892, 0.004001054912805557, 0.012407694011926651, 0.005527523346245289, 0.01582723669707775, -0.0023339486215263605, -0.027052944526076317, 0.013223075307905674, 0.02027706801891327, 0.00384619552642107, -0.003959969617426395, 0.01771083101630211, -0.009512776508927345, 0.018444040790200233, -0.006387149915099144, 0.002755860798060894, 0.020201217383146286, 0.008893339894711971, -0.008040034212172031, 0.003169872099533677, -0.016800638288259506, -0.006914935074746609, 0.001932578976266086, -0.030011070892214775, -0.019771404564380646, -0.011383728124201298, -0.0046552554704248905, 0.012167504988610744, 0.0053410604596138, 0.008172770962119102, -0.0038619975093752146, -0.012565714307129383, 0.010391364805400372, -0.01217382587492466, -0.017483282834291458, 0.016080068424344063, -0.01271109189838171, 0.007610220927745104, 0.013362132012844086, -0.004355018492788076, -0.015030818991363049, 0.008134845644235611, -0.007515409495681524, -0.004927049390971661, -0.0003525810898281634, -0.006222809664905071, 0.0011274694697931409, -0.004114829003810883, -0.02371557243168354, 0.03231183439493179, 0.004288650117814541, -0.0006846196483820677, 0.0036470910999923944, 0.011819861829280853, 0.004310773219913244, 0.012559393420815468, -0.0007181988330557942, -0.017559131607413292, -0.006681066006422043, 0.03698921576142311, 0.01475270465016365, -0.00624177185818553, 0.011604955419898033, -0.00040808547055348754, -0.024031611159443855, -0.0006474850815720856, 0.012110617943108082, 0.0078061651438474655, -0.008286545053124428, -0.02476482279598713, 0.005824600346386433, 0.009455889463424683, 0.018229134380817413, 0.007053992245346308, 0.008931264281272888, -0.01173769123852253, 0.007622862700372934, -0.015271008014678955, 0.020808013156056404, 0.0022675804793834686, -0.01292599830776453, -0.010631554760038853, 0.001516987569630146, -0.003331051906570792, -0.010833819396793842, 0.00026330005493946373, -0.01602950133383274, -0.009689758531749249, 0.02094707079231739, -0.003824072889983654, -0.009569663554430008, 0.01817856729030609, 0.0017682386096566916, -0.0062828571535646915, 0.011731370352208614, 0.029429558664560318, 0.025561241433024406, 0.04682435095310211, 0.003587043611332774, 0.015890445560216904, -0.017609696835279465, -0.003855676855891943, -0.03526996076107025, 0.006383989471942186, -0.0005522783030755818, 0.0020021076779812574, 0.00865314994007349, -0.008836452849209309, 0.0008746381499804556, -0.010821178555488586, 0.012559393420815468, -0.018696872517466545, 0.017457999289035797, 0.0075280508026480675, -0.0059731388464570045, -4.05542323278496e-06, -0.005745590664446354, 0.020175935700535774, 0.0256623737514019, 0.004215961322188377, -0.0028048469685018063, -0.006393470801413059, -0.02264104038476944, 0.019088760018348694, 0.02563709020614624, -0.006213328335434198, -0.01281854510307312, 0.010928631760179996, -0.015612330287694931, -0.0022170140873640776, -0.023386891931295395, -0.010416648350656033, -0.019581781700253487, -0.013223075307905674, -0.014234400354325771, 0.02710351161658764, 0.03415750339627266, -0.0038619975093752146, -0.01643403246998787, 0.017811963334679604, 0.018216492608189583, -0.020984994247555733, 0.006927576847374439, 0.010871744714677334, 0.010650517418980598, -0.006978143006563187, -0.0028080071788281202, 0.0038936014752835035, -0.015334215946495533, 0.040478285402059555, 0.0050755878910422325, 0.0076987119391560555, 0.018633663654327393, 0.011807220056653023, -0.00034408754436299205, 0.005865685176104307, -0.02008744329214096, 0.01921517588198185, -0.0011322100181132555, 0.011314199306070805, -0.015877803787589073, -0.010726366192102432, 0.02052989788353443, -0.013956286013126373, -0.0043771411292254925, 0.0029628663323819637, -0.00021490656945388764, 0.012237032875418663, 0.006216488778591156, 0.02353859134018421, 0.01293864008039236, 0.014272324740886688, -0.005966817960143089, -0.025675015524029732, 0.0010208062594756484, 0.012382411397993565, 0.0027621816843748093, 0.015587047673761845, 0.00895654782652855, 0.0028127478435635567, -0.009797211736440659, -0.004901766311377287, -0.015966294333338737, 0.028291817754507065, -0.013893078081309795, -0.017205167561769485, -0.0016718467231839895, 0.018709514290094376, 0.01817856729030609, 0.019493291154503822, 0.014436664991080761, -0.008166450075805187, 0.012489864602684975, 0.01163023803383112, 0.007882014848291874, -0.024701613932847977, -0.007174087222665548, 0.005546486005187035, -0.0069402181543409824, -0.013387415558099747, 0.0006000791909173131, 0.0007573086768388748, -0.012856469489634037, 0.01154806837439537, 0.030870698392391205, 0.014335532672703266, 0.03481486439704895, -0.009955231100320816, 0.004999738186597824, -0.005350541789084673, -0.0006107455119490623, 0.0058087981306016445, -0.0027700825594365597, -0.020883861929178238, -0.014803270809352398, 0.01733158342540264, -0.020567823201417923, 0.005107191391289234, 0.004042139742523432, 0.011567030102014542, -0.01580195501446724, 0.003002371173352003, 0.005963657516986132, -0.009045038372278214, -0.01985989511013031, -0.0023165664169937372, 0.018937062472105026, 0.015738746151328087, -0.009531739167869091, -0.007471163757145405, 0.016939694061875343, 0.022261792793869972, 0.012843828648328781, 0.0050439839251339436, -0.016155917197465897, -0.00021885706519242376, -0.0043771411292254925, 0.006270215380936861, 5.3825406212126836e-05, 0.008071637712419033, 0.005347381345927715, -0.01666158065199852, 0.012685808353126049, -0.028114836663007736, 0.003697657259181142, 0.02414538525044918, 0.005040823481976986, 0.018406115472316742, 0.0034890715032815933, 0.015081385150551796, -0.009405323304235935, -0.03848091885447502, -7.989862933754921e-05, 0.010119571350514889, -0.009417965076863766, -0.0005408218712545931, 0.001739795203320682, -0.0009907825151458383, -0.0005992891383357346, -0.014790629036724567, 0.0031793531961739063, -0.008419280871748924, -0.016964977607131004, 0.007578616961836815, 0.018924420699477196, -0.012142221443355083, 0.016307616606354713, -0.01516987569630146, 0.031957872211933136, -8.833045285427943e-06, 0.02156650647521019, 0.010580988600850105, 0.0025140908546745777, 0.0035965247079730034, -0.018418757244944572, 0.021035561338067055, 0.004718463402241468, -0.036205437034368515, 0.003447986440733075, 0.01773611269891262, 0.029404276981949806, -0.0159915778785944, 0.000459046772448346, 0.007926260121166706, 0.0099489102140069, -0.014866478741168976, 0.015346857719123363, -0.0003429024072829634, -0.01705346815288067, 0.013172509148716927, -0.00020038853108417243, -0.006997105199843645, 0.0030055316165089607, -0.015359499491751194, -0.01834290847182274, 0.01602950133383274, 0.007799844723194838, -0.015397423878312111, 0.029176728799939156, -0.009373718872666359, 0.01303345151245594, 0.012578355148434639, 0.0013550175353884697, 0.01984725520014763, -0.003612326690927148, 0.009481172077357769, 0.00897550955414772, 0.004304452333599329, 0.011920994147658348, -0.009222020395100117, 0.0025472750421613455, 0.000523044669535011, -0.013235717080533504, -0.031705040484666824, -0.0027195164002478123, 0.03246353566646576, 0.007066634017974138, -0.012079013511538506, 0.013412699103355408, 0.00651672575622797, 0.008040034212172031, -0.004664736799895763, -0.01685120351612568, 0.006965501233935356, -0.025889921933412552, 0.01815328560769558, -0.0014047937002032995, -0.0029549654573202133, -0.014563080854713917, -0.011611276306211948, 0.0020258105359971523, -0.020833296701312065, 0.001355807646177709, 0.008874377235770226, 0.0018756919307634234, -0.0030703197699040174, -1.3258827493700664e-05, -0.008040034212172031, -0.001355807646177709, -0.008589942008256912, -0.019303666427731514, -0.002040032297372818, -0.023020286113023758, -0.013501189649105072, -0.03337372839450836, -0.008615225553512573, -0.005960497073829174, -0.014790629036724567, -0.017862528562545776, -0.005258890334516764, 0.001298130489885807, -0.00737003143876791, -0.0183681920170784, 0.004083225037902594, -0.006693707779049873, -0.004459311254322529, 0.01109297201037407, -0.022046886384487152, 0.0017113516805693507, 0.001611799350939691, -0.010783253237605095, -0.02307085320353508, 0.03552279248833656, 0.0017793000442907214, 0.012717412784695625, -0.0033816180657595396, 0.0009504875633865595, -0.03294391557574272, 0.024259159341454506, 0.022552547976374626, -0.008027392439544201, -0.02372821420431137, 0.028468800708651543, 0.0021206222008913755, 0.007553333882242441, 0.00373874232172966, 0.00331208948045969, -0.019758762791752815, -0.0030150129459798336, 0.025346335023641586, -0.009310510940849781, 0.002499869093298912, 0.014891761355102062, -0.01152278482913971, -0.010410327464342117, 0.00619436614215374, 0.003010272281244397, -0.007237295154482126, 0.01356439758092165, 0.0028664744459092617, 0.005717147141695023, 0.0020052678883075714, -0.027280492708086967, -0.014815912581980228, -0.010220703668892384, -0.0015683439560234547, 0.01920253410935402, -0.018658947199583054, -0.00523360725492239, -0.009651833213865757, 0.007831448689103127, 0.0063681877218186855, -0.00688333110883832, -0.003915724344551563, 0.011118254624307156, 0.009790890850126743, 0.012477222830057144, -0.0012736375210806727, 0.02051725797355175, -0.005745590664446354, -0.00810324214398861, 0.006971822120249271, 0.044574152678251266, 0.0065988958813250065, -0.016547806560993195, -0.02735634334385395, 0.0001535752380732447, 0.03167975693941116, 0.008046355098485947, -0.006586254574358463, -0.01792573742568493, 0.02945484220981598, 0.017394790425896645, 0.005451674107462168, 0.0061501204036176205, -0.003533317008987069, -0.00941164419054985, 0.0004724784230347723, 0.009892023168504238, 0.007332106586545706, 0.0006154861184768379, 0.029859373345971107, -0.008672112599015236, 0.014651571400463581, -0.023778781294822693, -0.0094938138499856, -0.02094707079231739, -0.0022707406897097826, -0.00197682436555624, -0.004579406231641769, 0.021503299474716187, 0.0021032399963587523, -0.0037324216682463884, 0.02458783984184265, -0.012464581057429314, 0.018658947199583054, -0.0015106667997315526, -0.004124309867620468, 0.009607587940990925, -0.003915724344551563, -0.008514093235135078, -0.012565714307129383, 0.03208428621292114, -0.0013328947825357318, -0.028873329982161522, -1.0203370948147494e-05, -0.018633663654327393, 0.014980252832174301, -0.02155386470258236, 0.0038746390491724014, -0.02243877574801445, -0.001259415759705007, 0.012869111262261868, 0.028342384845018387, -0.004832237493246794, -0.0019183572148904204, -0.018090076744556427, 0.0209091454744339, 0.002095339121297002, -0.019948387518525124, -0.0009749805903993547, 0.0033405330032110214, -0.01495496928691864, -0.011453256011009216, 0.006554650608450174, -0.011352123692631721, -0.0189876276999712, -0.0013992630410939455, 0.014790629036724567, -0.01946800760924816, 0.0050755878910422325, 0.012647883966565132, 0.00384619552642107, 0.00689597288146615, -0.008311827667057514, 0.014790629036724567, 0.005906770471483469, -0.00689597288146615, -0.0019483809592202306, 0.009285228326916695, 0.01771083101630211, 0.025535957887768745, 0.02348802424967289, -0.01707875169813633, 0.0023829347919672728, -0.007553333882242441, 0.007344748359173536, 0.008191732689738274, -0.0014735321747139096, 0.01726837456226349, -0.020820654928684235, -0.01238873228430748, 0.006807481870055199, 0.006156441289931536, -0.015498556196689606, -0.0016592051833868027, 0.0027732430025935173, 0.008204374462366104, -0.01580195501446724, -0.01753384806215763, 0.019379517063498497, -0.006744273938238621, 0.014891761355102062, 0.019303666427731514, 0.02538425847887993, -0.018507247790694237, 0.01152278482913971, -0.002262839814648032, 0.019986310973763466, 0.007009746972471476, -0.03734317794442177, 0.009361078031361103, -0.003308929270133376, -0.020883861929178238, 0.009531739167869091, 0.0037419027648866177, 0.018861211836338043, -0.006636820733547211, 0.002232816070318222, 0.002883856650441885, -0.004775350447744131, 0.00405794195830822, 0.015233083628118038, 0.009967872872948647, 0.012767978943884373, 0.013956286013126373, 0.004664736799895763, -0.013539114035665989, 0.032109569758176804, -0.005881487391889095, -0.0031224661506712437, 0.010941272601485252, -0.01687648706138134, 0.009784569963812828, 0.013425339944660664, -0.0012728474102914333, -0.0015296291094273329, 0.0068770102225244045, 0.005088229198008776, -0.006851727142930031, 0.00737003143876791, -0.005202003289014101, -0.009892023168504238, -0.00432025408372283, -0.0029170408379286528, -0.019088760018348694, -0.01089702732861042, 0.004064262378960848, -0.04609113931655884, -0.016977619379758835, -0.014803270809352398, 0.011326841078698635, -0.008792207576334476, -0.014980252832174301, 0.007932581007480621, 0.006643141619861126, 0.003225178923457861, -0.011250991374254227, 0.010258628986775875, -0.006636820733547211, -0.006112196017056704, 0.009367397986352444, -0.02224915102124214, 0.011592313647270203, 0.00044759034062735736, 0.01259099692106247, -0.01965763047337532, 0.010871744714677334, -0.01795101910829544, -0.009778249077498913, 0.013374773785471916, -0.016117993742227554, 0.020150652155280113, -0.015624972060322762, 0.022059528157114983, 0.0052525694482028484, -0.025472750887274742, 0.0005791416042484343, -0.0036502513103187084, -0.01581459492444992, -0.002414538525044918, 0.0393405444920063, 0.006889651995152235, -0.02669898234307766, -0.012357127852737904, -0.021515941247344017, -0.006181724369525909, -0.007117200177162886, 0.0016592051833868027, -0.018937062472105026, -0.00529365474358201, 0.02647143416106701, 0.005688703618943691, -0.004667897243052721, -0.0009046618943102658, -0.013905719853937626, 0.018621021881699562, 0.010524101555347443, 0.0008691074908711016, -0.0103724030777812, 0.005691864062100649, -0.018229134380817413, 0.0013676590751856565, -0.007610220927745104, 0.01669950596988201, -0.002180669689550996, 0.011036084964871407, -0.02198367938399315, 0.019303666427731514, -0.0027084548491984606, 0.0028080071788281202, -0.013197791762650013, 0.010739007964730263, -0.007711353711783886, -0.003994734026491642, 0.029581258073449135, 0.04806322231888771, 0.03928997740149498, -0.04232395440340042, -0.006327102426439524, -0.008185411803424358, -0.009740324690937996, -0.010941272601485252, -0.01377930399030447, 0.012799582444131374, 0.0013676590751856565, 0.017786679789423943, 0.005224125925451517, 0.0029043990653008223, 0.00640927255153656, -0.007193049415946007, -0.005037663038820028, 0.003482750616967678, -0.028974462300539017, 0.0019689234904944897, 0.0012736375210806727, -0.01045457273721695, -0.004048460628837347, -0.0024208594113588333, -0.0034227033611387014, -0.004032658878713846, -5.303530997480266e-05, 0.02094707079231739, 0.017622338607907295, 0.009165133349597454, -0.02154122292995453, 0.006371347699314356, -0.0003735186764970422, -0.0004179616807959974, -0.01173769123852253, -0.02413274347782135, -0.0037355818785727024, 0.008204374462366104, -0.009449568577110767, -0.010890706442296505, -0.01283118687570095, -0.027862004935741425, 0.035371094942092896, 0.016054784879088402, -0.0004013696452602744, -0.00013994605978950858, 0.027887288480997086, 0.006286017131060362, 0.017622338607907295, 2.1696823750971816e-06, -0.005404268391430378, -0.0026752708945423365, 0.015334215946495533, -0.012628921307623386, -0.016787996515631676, -0.019569139927625656, -0.017255734652280807, -0.007863052189350128, 0.006184884812682867, 0.009822494350373745, -0.004674218129366636, 0.0027937854174524546, 0.011232028715312481, -0.026673698797822, -0.008027392439544201, 0.012995527125895023, -0.00032038462813943624, 0.024208594113588333, 0.0015983677003532648, -0.011813540942966938, -0.009285228326916695, -0.01625704951584339, -0.02331104315817356, 0.017382148653268814, -0.0007573086768388748, 0.014133268035948277, -0.0024524633772671223, 0.007540692575275898, 0.008412959985435009, 0.015106667764484882, 0.016193842515349388, 0.009468531236052513, 0.008046355098485947, -0.01250882726162672, 0.016901770606637, 0.014183834195137024, 0.03825337067246437, -0.006402951665222645, 0.040503568947315216, -0.005157758016139269, -0.026142753660678864, -0.010334477759897709, 0.026370301842689514, -0.0025567561388015747, -0.005366343539208174, 0.02308349497616291, 0.005650778766721487, -0.027406908571720123, 0.007831448689103127, -0.0020969193428754807, 0.009455889463424683, 0.00598261971026659, -0.004475113470107317, -0.0027400588151067495, 0.0017160922288894653, -0.013943644240498543, -0.00791993923485279, 0.013943644240498543, -0.015511197969317436, 0.008457206189632416, 0.005764552857726812, -0.02990993857383728, -0.018014227971434593, -0.00624177185818553, -0.021882545202970505, -0.010637875646352768, -0.013400057330727577, -0.0179763026535511, -0.011434294283390045, -0.004582566674798727, -0.0020732164848595858, 0.01835555024445057, -0.011080330237746239, 0.02331104315817356, -0.013501189649105072, -0.015081385150551796, 0.005470636300742626, 0.019291024655103683, -0.004016856662929058, 0.00416539516299963, 0.02116197720170021, 0.01776139624416828, 0.00011209511285414919, 0.014360816217958927, -0.0024540433660149574, 8.626879571238533e-05, 0.0013992630410939455, 0.01816592551767826, -0.006276536267250776, -0.03355070948600769, -0.017420073971152306, 0.007850410416722298, 2.7875634259544313e-05, -0.011503822170197964, 0.004494075663387775, 0.028064269572496414, -0.00432025408372283, -0.019935745745897293, 0.014803270809352398, -0.004016856662929058, -0.0030292347073554993, -0.00048630512901581824, -0.0018630503909662366, 0.0183681920170784, -0.0063745081424713135, 0.028519365936517715, -0.008052675984799862, 0.011585992760956287, 0.005091389641165733, -0.005969978403300047, -0.0118704279884696, 0.020024236291646957, 0.01356439758092165, 0.017243092879652977, -0.02629445120692253, -0.003988413140177727, -0.005881487391889095, 0.011902031488716602, 0.0019610226154327393, 0.01538478210568428, 0.016964977607131004, -0.004342377185821533, -0.004471953026950359, 0.007622862700372934, -0.0062575736083090305, -0.005337900016456842, 0.015852520242333412, -0.009045038372278214, -0.0009575984440743923, -0.001505926251411438, 0.015422707423567772, 0.004171716049313545, 0.010473535396158695, -0.020555181428790092, 0.003139848355203867, 0.0025235721841454506, 0.05064210295677185, -0.0053537022322416306, -0.020226500928401947, -0.0319831557571888, 0.004497236106544733, -0.0010279171401634812, 0.013741379603743553, 0.016143275424838066, 0.006462999153882265, -0.003106664167717099, -0.014613647013902664, -0.011029764078557491, -0.022995004430413246, -0.00877324491739273, -0.000370950874639675, -0.012540430761873722, -0.006276536267250776, 0.006396631244570017, -0.012350806966423988, 0.010688441805541515, -0.016497239470481873, 0.013008168898522854, -0.03880959749221802, 0.004544641822576523, 0.01250882726162672, 0.0024382416158914566, -0.020011594519019127, -0.03304504603147507, 0.032109569758176804, 0.005543325562030077, -0.011352123692631721, 0.05107191577553749, -0.0023829347919672728, -0.011453256011009216, -0.011282594874501228, 0.01472742110490799, 0.01943008229136467, -0.00566026009619236, -0.004642614163458347, 0.016750071197748184, 0.0059478553012013435, -0.03837978467345238, -0.015877803787589073, 0.017483282834291458, -0.00448775477707386, -0.0003760865074582398, 0.002970767440274358, 0.00930419098585844, -0.006655782926827669, -0.0003677904896903783, 0.009645512327551842, -0.005913091357797384, 0.013071376830339432, -0.004355018492788076, 0.019720839336514473, 0.0033847785089164972, 0.01666158065199852, 0.0012009484926238656, -0.0020021076779812574, 0.05506664887070656, 0.010031080804765224, 0.004389782901853323, 0.04619227349758148, 0.00373874232172966, -0.013084017671644688, 0.02864578180015087, 9.283648250857368e-05, 0.01057466771453619, -0.014841195195913315, -0.007483805529773235, 0.016105351969599724, 0.0005266001098789275, 0.0037766669411212206, -0.020188577473163605, 2.6764559152070433e-05, 0.012047410011291504, 0.0048259166069328785, 0.003719779895618558, 0.014613647013902664, -0.013223075307905674, 0.009854098781943321, -0.00410534767434001, 0.007433239370584488, 0.00834343209862709, 0.009222020395100117, -0.03951752558350563, -0.013058735057711601, -0.009696079418063164, -0.025371616706252098, 0.0003818147233687341, 0.0019294186495244503, 0.02907559648156166, -0.020542539656162262, -0.008457206189632416, 0.010814857669174671, 0.0032868064008653164, 0.01577667146921158, -0.023627081885933876, -0.028064269572496414, 0.004784831777215004, 0.012799582444131374, 0.010524101555347443, 0.011175141669809818, 0.0035080336965620518, 0.018469324335455894, -0.017040826380252838, -0.0060647898353636265, 0.003685015719383955, -0.01399421039968729, 0.02649671584367752, -0.003267844207584858, 0.007363710552453995, 0.0028064269572496414, 0.021756131201982498, -0.003836714429780841, 0.0054990798234939575, -0.0014885440468788147, 0.022476699203252792, -0.0006688177236355841, 0.007711353711783886, 0.006978143006563187, 0.018899137154221535, 0.00896918959915638, 0.01857045665383339, -0.0018662108341231942, -0.0033278914634138346, 0.012888073921203613, 0.03463788330554962, 0.02864578180015087, -0.014853836968541145, -0.004048460628837347, 0.0020226500928401947, -0.046242836862802505, 0.008033713325858116, 0.016358183696866035, -0.01334949117153883, -0.0011377406772226095, 0.00888069812208414, -0.019101401790976524, 0.005107191391289234, 0.011560709215700626, -0.0012301821261644363, 0.01709139347076416, 0.000430208194302395, -0.005932053551077843, -0.014133268035948277, 0.0164466742426157, -0.01749592274427414, -0.008444564417004585, -0.02796313725411892, 0.005170399323105812, 0.010214382782578468, 0.002348170382902026, -0.0012523048790171742, -0.007831448689103127, -0.005868845619261265, 0.004787992220371962, 0.01623176783323288, -0.00700342608615756, -0.004402424208819866, 0.017457999289035797, 0.0027637616731226444, 0.014980252832174301, -0.005154597572982311, 0.0010073746088892221, -0.01453779824078083, -0.006244932301342487, -0.02395576238632202, -0.016193842515349388, -0.002155386609956622, -0.010195421054959297, -0.007932581007480621, -0.0002960891288239509, -0.002305505098775029, -0.0005755861639045179, -0.02353859134018421, 0.002961286110803485, 0.011927315033972263, 0.016282333061099052, -0.0009267845889553428, -0.03142692521214485, 0.008716357871890068, 0.00993626844137907, 0.007686070632189512, -0.012635242193937302, -0.0025709779001772404, -0.003729261225089431, -0.004576245788484812, 0.01324835792183876, 0.013842511922121048, 0.02159179002046585, -0.006099554244428873, -0.003956809174269438, 0.015549123287200928, 0.023766139522194862, 0.004927049390971661, -0.005543325562030077, 0.00448459479957819, -0.0046552554704248905, 0.005897289142012596, 0.004184357356280088, -0.020643671974539757, 0.005407428834587336, -0.025333693251013756, -0.0011274694697931409, -0.0059478553012013435, 0.006377668585628271, 0.016181200742721558, -0.01664893887937069, 0.005957336630672216, 0.008311827667057514, -0.007433239370584488, 2.6863321181735955e-05, 0.0012372930068522692, 0.011352123692631721, 0.006440876517444849, 0.012881753034889698, 0.0030940226279199123, -0.0170661099255085, -0.020808013156056404, -0.01754648983478546, 0.007275219541043043, 0.012420335784554482, -0.006093233358114958, 0.01792573742568493, 0.009860419668257236, 0.007129841484129429, 0.013159867376089096, -0.002902819076552987, 0.0035206754691898823, 0.011364765465259552, -0.0031793531961739063, -0.01900026947259903, -0.010106929577887058, -0.011725050397217274, -0.000171056148246862, -0.00737003143876791, -0.019961029291152954, 0.020782729610800743, -0.005366343539208174, 0.009285228326916695, 0.009247303940355778, 0.00410534767434001, -0.008672112599015236, 0.011029764078557491, 0.0017445357516407967, -0.001298130489885807, -0.013008168898522854, -0.005890968721359968, 0.02050461620092392, 0.032564666122198105, -0.02391783706843853, -0.015877803787589073, 0.014461948536336422, 0.01750856451690197, -0.022097453474998474, -0.010309195145964622, 0.01663629710674286, -0.008065317757427692, -0.030693715438246727, -0.007641824893653393, -0.013501189649105072, 0.0020131689961999655, 0.0189876276999712, -0.005774034187197685, 0.01685120351612568, -0.013918361626565456, -0.022312359884381294, 0.0014458787627518177, 0.012982885353267193, -0.004971294663846493, -0.009405323304235935, 0.011181462556123734, -0.0073510692454874516, -0.011718729510903358, -0.0008201214368455112, -0.0025267323944717646, 0.00800843071192503, 0.0072120120748877525, -0.0036786948330700397, 0.02844351716339588, 0.0034321844577789307, -0.004408745095133781, -0.02222386747598648, 0.006127997767180204, -0.024221235886216164, -0.014929686672985554, -0.018696872517466545, 0.000772320490796119, 0.018254417926073074, 0.0005882277619093657, 0.010416648350656033, -0.01420911680907011, -0.00624177185818553, 0.0019705037120729685, -0.023450100794434547, -0.02095971256494522, -0.010833819396793842, 0.0014956549275666475, -0.001859889947809279, 0.019935745745897293, 0.005992101039737463, 0.021098768338561058, 0.00453200051560998, -0.006377668585628271, -0.020643671974539757, 0.005830921232700348, 0.010972877033054829, 0.01814064383506775, 0.03329787775874138, 0.005951015744358301, -0.02160443179309368, 0.01538478210568428, -0.00427284836769104, 0.028898613527417183, 0.030643150210380554, -0.018456682562828064, -0.014070060104131699, 0.01664893887937069, -0.0005751911085098982, -0.014183834195137024, -0.0258267130702734, 0.015119309537112713, 0.0014324471121653914, -0.004573085345327854, -0.03509297966957092, 0.007869373075664043, -0.0039062430150806904, -0.00019525289826560766, -0.026395583525300026, -0.0056634205393493176], "4e40803c-97a9-4b13-8bd8-aaa8a7840760": [-0.006983750034123659, -0.017072798684239388, 0.0003695462364703417, 0.0035901039373129606, -0.03576795384287834, -0.04583165422081947, 0.013954825699329376, -0.012414852157235146, -0.004490006249397993, -0.007452713325619698, 0.03171205520629883, 0.03688332810997963, -0.011052323505282402, -0.0062993173487484455, -0.021268118172883987, 0.01418296992778778, -0.008111797273159027, 0.03046993725001812, -0.012668345123529434, -0.015843354165554047, 0.05987520143389702, 0.0028945805970579386, -0.04362626001238823, 0.021863827481865883, 0.00814348366111517, -0.0388098806142807, -0.005269499495625496, 0.00935391616076231, -0.026692882180213928, 0.008314591832458973, 0.030723432078957558, -0.008492037653923035, 0.03272603079676628, 0.026464737951755524, 0.028112446889281273, -0.018036073073744774, -0.02031751722097397, 0.00717387069016695, 0.01652778685092926, 0.0009109928505495191, 0.001474224030971527, 0.021331490948796272, -0.014499837532639503, 0.02849268727004528, 0.001353814615868032, -0.0021499430295079947, -0.0056022098287940025, -0.015349040739238262, 0.022915827110409737, -0.0036439714021980762, -0.013574585318565369, -0.04717516899108887, 0.006473594345152378, -0.0074400389567017555, 0.03987455368041992, 0.0019408108200877905, 0.04012804478406906, 0.09576990455389023, -0.01027916744351387, -0.05019174516201019, -0.0031829297076910734, -0.01147058792412281, -0.00865680817514658, 0.008428663946688175, -0.0003527126682456583, 0.008625121787190437, 0.03450048714876175, 0.02002599835395813, -0.025564834475517273, 0.0024382921401411295, 0.027706855908036232, 0.08400779962539673, -0.01543776411563158, 0.04443743824958801, 0.00010832893167389557, 0.03901267424225807, -0.009347578510642052, -0.015767306089401245, 0.03640168905258179, -0.0006971075781621039, 0.0261098463088274, 0.014499837532639503, 0.0420292466878891, 0.0014979890547692776, 0.050343841314315796, 0.026794278994202614, -0.0020200274884700775, -0.02565355785191059, -0.011578322388231754, -0.02162300981581211, 0.01351121161133051, 0.02174975536763668, -0.031483910977840424, -0.0013403476914390922, -0.015133571811020374, -0.006730256602168083, -0.0072942799888551235, -0.00031052972190082073, 0.021648358553647995, 0.002687032800167799, 0.042941827327013016, 0.032345790416002274, -0.04144621267914772, 0.034145597368478775, -0.024284692481160164, -0.0177572313696146, 0.02651543729007244, 0.02841663919389248, 0.005035017617046833, 0.003849935019388795, 0.029303867369890213, -0.04816379398107529, -0.02466493286192417, -0.016705231741070747, -0.01418296992778778, -0.0009307970176450908, -0.03607214614748955, -0.018555736169219017, 0.007712544407695532, -0.02339746430516243, -0.014373090118169785, -0.017034774646162987, 0.020837178453803062, 0.0018536723218858242, -0.00032716523855924606, 0.03343581408262253, -0.03523561730980873, 0.028898276388645172, 0.03161066025495529, 0.02775755524635315, -0.0005465957219712436, -0.04005199670791626, 0.0008967338362708688, 0.006977412849664688, -0.011191745288670063, 0.014943450689315796, 0.020672407001256943, 0.0505719855427742, 0.024043872952461243, 0.04395579919219017, -0.03054598532617092, -0.028999675065279007, -0.008922976441681385, 0.021965226158499718, 0.016870003193616867, -0.011540298350155354, -0.037897299975156784, 0.007503412198275328, 0.001467094523832202, -0.0029706289060413837, -0.024081896990537643, -0.024677608162164688, -0.005785992834717035, 0.025171920657157898, 0.036984723061323166, -0.014994150027632713, -0.008504712022840977, 0.04342346265912056, 0.0038784530479460955, 0.03607214614748955, 0.014157621189951897, -0.06940656155347824, 0.020786479115486145, -0.008973675779998302, 0.0388098806142807, 0.01896132528781891, 0.0504198893904686, 0.016629183664917946, -0.033207669854164124, 0.004344247747212648, 0.03979850560426712, 0.007832953706383705, 0.017288267612457275, -0.03014039620757103, 0.00913210865110159, -0.02167370729148388, 0.06692232191562653, 0.018847253173589706, 0.0227383803576231, -0.016908027231693268, 0.013701331801712513, -0.027985699474811554, 0.009962300769984722, -0.008726519532501698, -0.062105946242809296, -0.005811342038214207, 0.01145157590508461, 0.03442443907260895, 0.010431263595819473, 0.02314397133886814, -0.031483910977840424, -0.025590185075998306, -0.005190282594412565, 0.039367564022541046, -0.0038531036116182804, -0.04309392347931862, 0.04494442418217659, 0.002294117584824562, -0.006340510211884975, 0.024981800466775894, 0.005440607666969299, -0.04104062169790268, -0.010906565003097057, 0.04185180366039276, -0.044716279953718185, 0.013929476030170918, -0.03853103518486023, -0.00812447164207697, 0.008701169863343239, 0.00763649633154273, 0.042130645364522934, 0.010310854762792587, -0.008238543756306171, 0.010969937779009342, -0.0063056545332074165, 0.003944994881749153, -0.01325771864503622, 0.011312154121696949, -0.03173740580677986, -0.025792980566620827, -0.00761748431250453, -0.0009268361609429121, 0.021331490948796272, -0.02574228122830391, -0.03462723270058632, 0.020507637411355972, -0.00046817108523100615, 0.01527299266308546, -0.03224439173936844, -0.012256418354809284, 0.05196620151400566, -0.017706532031297684, 0.02664218284189701, -0.03739031404256821, -0.017174195498228073, 0.023815728724002838, -0.004078079015016556, 0.010919239372015, -0.01543776411563158, -0.039240818470716476, 0.0253620408475399, -0.004413958173245192, -0.0004036094469483942, -0.004623090382665396, -0.0176431592553854, -0.008941988460719585, -0.010146083310246468, 0.011217094026505947, 0.03470328077673912, 0.005323366727679968, -0.01940494030714035, -0.01044393889605999, 0.021039973944425583, -0.00442029582336545, -0.026692882180213928, -0.004451982211321592, 0.0295573603361845, -0.016274292021989822, -0.022915827110409737, 0.004322066903114319, -0.017427688464522362, -0.014766005799174309, 0.018124796450138092, -0.006321498192846775, 0.03351186215877533, -0.010519986972212791, 0.029658757150173187, -0.028898276388645172, -0.011996587738394737, 0.033613260835409164, -0.0049589695408940315, 0.010532661341130733, 0.02166103385388851, 0.029633408412337303, -0.011375527828931808, -0.008884952403604984, -0.00040143096703104675, 0.0022751055657863617, -0.03168670833110809, -0.01242118887603283, 0.04765680804848671, -0.012864802964031696, 0.031103672459721565, 0.025222618132829666, 0.017744556069374084, 0.015260318294167519, -0.007268930785357952, -0.007560448255389929, -0.022256743162870407, 0.0017633652314543724, 0.00872018188238144, 0.04380370303988457, -0.00923350639641285, 0.019176796078681946, -0.003141737077385187, -0.019024699926376343, -0.019088072702288628, -0.032219044864177704, -0.037846602499485016, 0.015513812191784382, -0.01247822493314743, -0.015425088815391064, -0.0004095507028978318, -0.012395840138196945, 0.06595905125141144, -0.008941988460719585, 0.030976925045251846, -0.0019661602564156055, -0.0015288835857063532, 0.022789079695940018, 0.031306467950344086, -0.012275430373847485, 0.018758529797196388, -0.02046961337327957, 0.008308254182338715, 0.03178810328245163, -0.011280467733740807, -0.03442443907260895, -0.018099447712302208, 0.0020041842944920063, 0.042612284421920776, 0.043651606887578964, -0.053892750293016434, 0.01375203114002943, 0.0032051103189587593, -0.02228209190070629, 0.00993061438202858, -0.019759830087423325, -0.023346764966845512, -0.024969125166535378, -0.038049399852752686, -0.008308254182338715, -0.06666883081197739, 0.005164933390915394, 0.013270393013954163, -0.029836203902959824, -0.05163665860891342, -0.04983685165643692, 0.020571010187268257, -0.007674520369619131, -0.016210919246077538, -0.03211764618754387, -0.028264543041586876, -0.018771205097436905, 0.04268833249807358, -0.021863827481865883, -0.02775755524635315, -0.005668751895427704, 0.0030973756220191717, 0.03650308772921562, 0.0005866001592949033, 0.003463356988504529, 0.0018013892695307732, 0.022269418463110924, 0.03901267424225807, -0.003200357314199209, -0.023093272000551224, -0.011147383600473404, 0.012256418354809284, 0.008986350148916245, -0.0047530061565339565, -0.019468313083052635, -0.023866428062319756, -0.04362626001238823, 0.003406320931389928, 0.02043158933520317, 0.013295742683112621, 0.035337015986442566, 0.0008044462883844972, 0.012896490283310413, -0.006369028240442276, 0.021800454705953598, -0.009246180765330791, -0.0540955476462841, -0.010057360865175724, -0.01081784162670374, 0.015019498765468597, 0.004002030938863754, -0.019797854125499725, 0.020418914034962654, 0.01731361635029316, 0.022256743162870407, -0.03655378520488739, -0.016933375969529152, 0.013828079216182232, 0.0030656890012323856, 0.01673058047890663, -0.007516087032854557, -0.0028248699381947517, 0.021407539024949074, -0.037973348051309586, -0.0006491814274340868, 0.013232368975877762, -0.0143097173422575, 0.0003449890355113894, 0.022396164014935493, 0.005773318000137806, -0.027808254584670067, 0.029253168031573296, 0.013460513204336166, -0.03166135773062706, 0.0034380077850073576, 0.02574228122830391, -0.025184594094753265, 0.039038024842739105, -0.021825803443789482, 0.01726291887462139, 0.029532011598348618, 0.005130077712237835, -0.017731880769133568, 0.010114396922290325, -0.011673382483422756, -0.00218955148011446, 0.02915177121758461, 0.03518491983413696, -0.010355215519666672, -0.0003103316994383931, -0.0056497398763895035, -0.005614884663373232, -0.007966037839651108, 0.02134416624903679, 0.013942151330411434, -0.0011209172662347555, 0.014651933684945107, -0.032548584043979645, 0.005139583721756935, -0.005339210387319326, 0.025894377380609512, -0.00029032945167273283, -0.02557750977575779, -0.0018077266868203878, 0.02882222831249237, 0.009924276731908321, 0.004664283245801926, -0.033283717930316925, -0.020140070468187332, -0.005168101750314236, -0.006882352754473686, 0.011153721250593662, -0.016299642622470856, -0.012294442392885685, 0.01997530087828636, 0.004664283245801926, 0.0020754793658852577, -0.017465712502598763, -0.018897952511906624, 0.008650471456348896, -0.01685732789337635, 0.01612219586968422, 0.018226193264126778, 0.014335066080093384, 0.007864641025662422, -0.003181345295161009, 0.003466525813564658, -0.017491063103079796, -0.005738462787121534, 0.007655508350580931, 0.01543776411563158, -0.03432304039597511, -0.008086447604000568, -0.023980500176548958, 4.577243817038834e-05, 0.014563210308551788, 0.020178094506263733, -0.0007034448790363967, -0.005592703819274902, -0.018859928473830223, -0.004135115072131157, 0.01714884676039219, 0.03204159811139107, -0.01911342144012451, -0.004179476760327816, -0.062359441071748734, 0.022066622972488403, -0.01896132528781891, -0.035210270434617996, 0.006416558288037777, 0.009100422263145447, 0.008308254182338715, 0.020786479115486145, 0.059266816824674606, -0.017782580107450485, -0.044057197868824005, -0.0061535583809018135, 0.012269092723727226, 0.019214820116758347, -0.002519093221053481, -0.027580110356211662, 0.04017874598503113, -0.024310041218996048, 0.007896327413618565, -0.002598309889435768, -0.002934189047664404, -0.004990656394511461, 0.008498375304043293, -0.02466493286192417, 0.009049723856151104, -0.02689567767083645, -0.011781117878854275, -0.017326291650533676, 0.035387713462114334, 0.042130645364522934, -0.012566948309540749, 0.06443808972835541, 0.016058823093771935, 0.008599772118031979, -0.0016088925767689943, -0.014829378575086594, 0.00769987003877759, -0.00020358710025902838, -0.0014496668009087443, -0.011869840323925018, -0.05176340416073799, 0.008175170049071312, -0.019848553463816643, -0.0012524171033874154, -0.03039388917386532, -0.016641858965158463, 0.047225870192050934, -0.013891451992094517, -0.012668345123529434, -0.01776990480720997, 0.008048423565924168, 0.01689535193145275, -0.028391290456056595, -0.008105459623038769, -0.029532011598348618, -0.03419629484415054, 0.004128777887672186, -0.02297919988632202, -0.0068379915319383144, -0.010253818705677986, -0.014043549075722694, 0.006945725996047258, 0.01949366182088852, 0.03652843460440636, -0.004927283152937889, -0.01529834233224392, 0.036857977509498596, 0.03576795384287834, -0.003526730462908745, 0.019924601539969444, 0.030850177630782127, -0.009404614567756653, 0.029633408412337303, 0.03483003005385399, 0.02499447390437126, 0.048620082437992096, -0.01821351982653141, 0.0009529777453280985, -0.02697172574698925, -0.0035901039373129606, -0.02993760071694851, -0.016502436250448227, 0.016109522432088852, -0.007262593135237694, 0.02742801420390606, -0.009841891005635262, -0.040609683841466904, -0.02332141622900963, -0.015856027603149414, -0.005085716489702463, -0.01038056518882513, -0.00035825782106257975, 0.008802567608654499, -0.01788397692143917, -0.01956970989704132, 0.017199544236063957, -0.03252323716878891, 0.033740006387233734, 0.02590705268085003, -0.011920539662241936, 0.04823984205722809, 0.033613260835409164, -0.008479363285005093, 0.01751641184091568, 0.003068857593461871, -0.013739355839788914, 0.012782417237758636, -0.03046993725001812, 0.019430289044976234, -0.01036155316978693, 0.015311016701161861, 0.010558011010289192, -0.0004329196235630661, 0.002823285525664687, -0.027326615527272224, -0.010329866781830788, -0.022966524586081505, -0.009683458134531975, 0.009898927062749863, 0.025273317471146584, 0.03270068019628525, 0.005453282501548529, 0.012338804081082344, 0.022066622972488403, -0.014994150027632713, 0.004699138458818197, 0.009493337012827396, 0.0015843353467062116, 0.04025479406118393, 0.0025491956621408463, -0.008853266015648842, -0.0017205881886184216, -0.023004548624157906, 0.009898927062749863, 0.024474812671542168, 0.037719856947660446, -0.013790055178105831, 0.0051585957407951355, -0.04740331321954727, -0.0007133469916880131, 0.02079915441572666, -0.01665453240275383, 0.02380305528640747, -0.006641533691436052, -0.007889989763498306, 0.01826421730220318, -0.01354923564940691, -0.012123334221541882, -0.017795255407691002, -0.04316997155547142, 0.021432889625430107, -0.057086773216724396, 0.039747804403305054, 0.008884952403604984, 0.02548878639936447, -0.021977899596095085, -0.011495937593281269, 0.024652257561683655, 0.015501136891543865, -0.040685731917619705, 0.010602371767163277, -0.012795092537999153, 0.03424699231982231, -0.012345140799880028, -9.060417505679652e-05, -0.0001736827689455822, 0.0005240188911557198, -0.026540786027908325, 0.027402663603425026, 0.023131296038627625, -0.002043792512267828, 0.01813747175037861, -0.009506012313067913, 0.01636301539838314, -0.029101071879267693, 0.01940494030714035, 0.019797854125499725, 0.01706012338399887, -0.012205719947814941, 0.01993727684020996, 0.02092590183019638, 0.01656581088900566, 0.006857003550976515, 0.010684757493436337, -0.0011716160224750638, 0.006755605805665255, 0.006685895379632711, -0.010931913740932941, 0.033080920577049255, -0.012123334221541882, -0.004623090382665396, 0.01652778685092926, 0.007421026937663555, 0.009341240860521793, 0.005279005505144596, 0.03092622570693493, 0.00824488140642643, 0.021407539024949074, 0.006483100354671478, -0.00048322227667085826, 0.005912739783525467, -0.0051110656931996346, 0.020203445106744766, 0.020406238734722137, -0.011907864362001419, -0.013283067382872105, 0.0017221724847331643, -0.001655630418099463, -0.015475788153707981, -0.014068897813558578, -0.01965843327343464, 0.017503736540675163, -0.00915112067013979, -0.013130971230566502, 0.003726356662809849, 0.050014298409223557, 0.004838560242205858, -0.013283067382872105, 0.01751641184091568, -0.004768849350512028, -0.009277868084609509, -0.008606109768152237, -0.015729282051324844, 0.02384107932448387, -0.010969937779009342, 0.01138820219784975, 0.0075921351090073586, -0.013270393013954163, -0.025514136999845505, -0.003811910981312394, 0.03244718909263611, 0.004936789162456989, 0.014918101951479912, 0.015602534636855125, 0.0034348389599472284, -0.015133571811020374, 0.030038997530937195, -0.02216801978647709, -0.0041636331006884575, 0.01821351982653141, 0.03944361209869385, 0.010393239557743073, 0.031559959053993225, -0.01973448134958744, 0.011337503790855408, 0.008035749197006226, 0.006061667110770941, 0.0017158351838588715, 0.03039388917386532, 0.006207426078617573, 0.014005525037646294, -0.036198895424604416, -0.04098992422223091, 0.0388098806142807, 0.024360740557312965, 0.020368214696645737, -0.01656581088900566, 0.0027266412507742643, 0.009575722739100456, -0.0025476112496107817, 0.01358725968748331, -0.004154127091169357, 0.0007501827785745263, 0.0088786156848073, -0.009239844046533108, -0.006470425520092249, -0.00023923463595565408, -0.03330906480550766, -0.012034611776471138, -0.020837178453803062, 0.02233279123902321, -0.0027836773078888655, -0.0009751584148034453, 0.001492443960160017, 0.03194019943475723, 0.00015080891898833215, -0.0030767791904509068, 0.011343841440975666, 0.026616834104061127, -0.012161358259618282, 0.008549073711037636, 0.019379589706659317, 0.00986724067479372, -0.0007327551138587296, 0.03194019943475723, -0.008314591832458973, -0.01024114340543747, 0.032878126949071884, -0.013828079216182232, -0.0013973837485536933, -0.014880077913403511, 0.004781524185091257, 0.013726681470870972, -0.02385375276207924, -0.004670620430260897, 0.0011771611170843244, 0.02533669024705887, -0.0337907038629055, 0.0185430608689785, 0.03759310767054558, 0.027808254584670067, 0.023955151438713074, 0.002167370868846774, -0.004192151129245758, 0.030064348131418228, 0.007344978861510754, -0.017047448083758354, 0.0034253329504281282, -0.010868540965020657, -0.02163568325340748, 0.04322066903114319, -0.004214331973344088, 0.013270393013954163, -0.009467988274991512, 0.03495677560567856, 0.00873919390141964, -0.02167370729148388, -0.018986674025654793, -0.006869677919894457, -0.027351966127753258, -0.013625283725559711, -0.0010662577114999294, -0.011876177974045277, 0.004097091034054756, -0.004718150477856398, -0.041674356907606125, -5.21407264386653e-06, 0.018733181059360504, 0.013473187573254108, -0.021825803443789482, 0.036655183881521225, 0.03150926157832146, -0.0021356840152293444, 0.021166719496250153, 0.016008123755455017, -0.002336894627660513, -0.01722489483654499, -0.03609749674797058, -0.01138820219784975, 0.007839291356503963, -0.02039356529712677, 0.02204127423465252, -0.04116737097501755, -0.023879103362560272, -0.021559635177254677, 0.023917127400636673, 0.026261942461133003, -0.0009276283672079444, -0.016768604516983032, 0.020013324916362762, -0.013828079216182232, 0.003786561544984579, -0.02730126678943634, 0.03034319169819355, 0.015019498765468597, -0.0337907038629055, -0.0008682157495059073, 0.0032510561868548393, 0.016717907041311264, -0.01804874837398529, 0.020380889996886253, 0.01196490041911602, 0.0012706369161605835, -0.01986122876405716, 0.012807766906917095, -0.011236106045544147, -0.016641858965158463, 0.020571010187268257, -0.022104647010564804, -0.028872927650809288, 0.007756906095892191, -0.008384302258491516, -0.0019724974408745766, 0.014880077913403511, 0.01863178424537182, -0.008663145825266838, 0.009138446301221848, 0.032624632120132446, 0.03297952562570572, -0.04461488500237465, -0.03219369426369667, 0.02709847129881382, 0.009024374186992645, 0.027909651398658752, -0.03906337171792984, 0.016996750608086586, -0.012351478450000286, 0.005288511514663696, 0.005180776584893465, -0.006964738015085459, -0.0016183985862880945, -0.010184107348322868, -0.003106881631538272, 0.00652746157720685, -0.009487000294029713, -0.015970099717378616, 0.028923626989126205, 0.026160545647144318, 8.530655759386718e-05, -0.019176796078681946, 0.024538185447454453, -0.009981312789022923, -0.04621189460158348, -0.003859441028907895, -0.014715306460857391, 0.040026649832725525, -0.030115045607089996, 0.0017506906297057867, 0.0004650024347938597, 0.019645757973194122, 0.03878453001379967, 0.011052323505282402, -0.06134546548128128, 0.0004467825638130307, -0.002812195336446166, 0.004841729067265987, -0.011375527828931808, -0.03429769352078438, 0.0023907620925456285, 0.005494474899023771, 0.0032225381582975388, 0.0007945441757328808, -0.01949366182088852, 0.015361716039478779, 0.01866980828344822, 0.0294813122600317, -4.6812157961539924e-05, 0.0022497561294585466, 0.0033175982534885406, -0.0421813428401947, -0.04355021193623543, -0.029430612921714783, 0.031965550035238266, -0.028670132160186768, 0.016768604516983032, -0.010570685379207134, -0.011160057969391346, 0.03802404925227165, 0.013688657432794571, 0.002351153641939163, -0.02035554125905037, -0.0009133693529292941, 0.025108546018600464, 0.0013981759548187256, 0.0004511394945438951, 0.0006784916040487587, 0.000547387870028615, 0.01410692185163498, 0.03014039620757103, 0.010500974953174591, 0.0227764043956995, 0.02389177680015564, -0.050014298409223557, 0.012389502488076687, -0.02363828383386135, 0.0004515355685725808, 0.009651770815253258, 0.016908027231693268, -0.029202468693256378, -0.0029991469345986843, -0.006584497634321451, 0.005611715838313103, 0.019303541630506516, -0.002912008436396718, 0.012383164837956429, 0.011204419657588005, -0.014816704206168652, -0.013536561280488968, -0.014284367673099041, -0.010272830724716187, 0.006159896031022072, -0.020989274606108665, -0.0045533799566328526, -0.01916412077844143, -0.0184670127928257, 0.013815403915941715, -0.01562788337469101, 0.0013245043810456991, 0.005279005505144596, 0.03913941979408264, -0.002902502426877618, -0.008846928365528584, 0.01887260191142559, 0.006673220545053482, 0.0176431592553854, -0.0021705394610762596, -0.02471563220024109, -0.013308417052030563, -0.000710970489308238, 0.0029104240238666534, -0.005472294520586729, -0.003132231067866087, -0.055413711816072464, 0.03168670833110809, -0.04456418380141258, -0.026667533442378044, 0.018771205097436905, -0.021242767572402954, 0.00109477574005723, -0.015222294256091118, -0.0013252964708954096, 0.04329671710729599, 0.005069873295724392, -0.016223594546318054, 0.009689794853329659, -0.02722521871328354, -0.0005002538673579693, -0.009303216822445393, 0.028315242379903793, 0.004981150384992361, 0.002091322559863329, -0.00191704579629004, 0.012427526526153088, 0.058202143758535385, 0.00814348366111517, -0.004382271785289049, -0.003849935019388795, 0.04436139017343521, 0.021927202120423317, -0.010760805569589138, -0.008086447604000568, -0.0035013812594115734, 0.0037231880705803633, -0.011172733269631863, -0.0045533799566328526, -0.0006349224131554365, 0.010114396922290325, -0.026997074484825134, -0.002441460732370615, -0.005196619778871536, 0.007750568445771933, -0.008599772118031979, 0.0227764043956995, -0.031078321859240532, -0.00867582019418478, 0.006641533691436052, 3.7058594898553565e-05, 0.023422813042998314, -8.728697866899893e-05, -0.008549073711037636, 0.0030149901285767555, -0.011299479752779007, 0.03564120829105377, 0.010862203314900398, 0.02046961337327957, -0.02059635892510414, -0.008941988460719585, 0.029506660997867584, -0.020824503153562546, -0.011590997688472271, -0.002039039507508278, -0.033207669854164124, -0.009068735875189304, 0.01044393889605999, 0.014259018003940582, -0.012902827002108097, 0.0261858943849802, 0.022256743162870407, -0.016020799055695534, -0.017858628183603287, 0.005820848047733307, -0.0260337982326746, -0.017744556069374084, -0.023790379986166954, 0.03635099157691002, -0.04932986572384834, -0.004543873947113752, -0.005722619127482176, 0.017896652221679688, 0.015361716039478779, 0.005782824009656906, 0.005440607666969299, -0.001494820462539792, 0.0026680207811295986, -0.004078079015016556, -0.019924601539969444, -0.023448163643479347, 0.014385765418410301, 0.00766818318516016, -0.028061747550964355, -0.001928136101923883, -0.013004224747419357, 0.01997530087828636, -0.017465712502598763, 0.01024114340543747, -0.003064104588702321, -0.003818248165771365, 0.024943776428699493, 0.0032193695660680532, 0.017465712502598763, 0.04410789534449577, -0.022953851148486137, 0.006901364773511887, -0.017288267612457275, -0.011293142102658749, 0.015564510598778725, -0.013764705508947372, -0.0024161115288734436, -0.006071173120290041, 0.030850177630782127, 0.005922245793044567, 0.025932401418685913, 0.0067429314367473125, 0.028670132160186768, -0.010798829607665539, 0.00923350639641285, 0.0033397788647562265, -0.019683782011270523, -0.034931425005197525, 0.008599772118031979, -0.02385375276207924, -0.005088885314762592, -0.0016207750886678696, 0.012509912252426147, 0.002588803879916668, 0.03173740580677986, -0.01375203114002943, 0.006315160542726517, -0.02422131970524788, -0.011179069988429546, 0.022320115938782692, 0.01920214481651783, -0.010691095143556595, -0.015678582713007927, -0.0007636496447958052, 0.05196620151400566, 0.0031623332761228085, 0.0005172854871489108, 0.010089047253131866, -0.003200357314199209, -0.0025697918608784676, 0.007344978861510754, 0.0017506906297057867, 0.01424634363502264, 0.0014132271753624082, 0.0015003655571490526, -0.012934514321386814, -0.005275836680084467, 0.02392980083823204, 0.005881052929908037, 0.02248488739132881, 0.02803639881312847, 0.013042248785495758, 0.0010203119600191712, -0.0041572959162294865, -0.01196490041911602, 0.0009094084962271154, 0.00918914470821619, 0.0026204907335340977, 0.00877721793949604, -0.024766329675912857, -0.0022275755181908607, -0.018428988754749298, -0.008187845349311829, 0.007034448906779289, -0.017896652221679688, 0.02508319728076458, 0.0031401526648551226, 0.010012999176979065, -0.0015906726475805044, 0.012871140614151955, 0.017326291650533676, -0.019151445478200912, 0.023536887019872665, 0.007268930785357952, -0.010507311671972275, -0.018403640016913414, 0.006071173120290041, 0.00598245020955801, -0.012864802964031696, 0.0011961732525378466, 0.011299479752779007, 0.029633408412337303, -0.004480500239878893, 0.007459050975739956, -0.014056223444640636, 0.013346441090106964, -0.025552161037921906, -0.020621709525585175, -0.00816249568015337, 0.030774129554629326, -0.011172733269631863, -0.006933051627129316, -0.0021024129819124937, -0.008606109768152237, 0.0004143037076573819, 0.017300942912697792, -0.016426388174295425, -0.04707377403974533, -0.016515111550688744, -0.0088405916467309, -0.022598959505558014, -0.022028598934412003, -0.01603347435593605, 0.013561910949647427, 0.017960024997591972, 0.01940494030714035, -0.010089047253131866, -0.010653071105480194, -0.00604582391679287, 0.014563210308551788, 0.01965843327343464, 0.001655630418099463, -0.0025016656145453453, 0.00434741610661149, -0.0011708238162100315, -0.003320766845718026, -0.006286642514169216, -0.009677120484411716, 0.006188414059579372, -0.015032174065709114, 0.0038531036116182804, -0.0013609441230073571, -0.026490086689591408, -0.01315632089972496, 0.002477900590747595, -0.00925251841545105, 0.021901851519942284, 0.01027916744351387, 0.006391208618879318, -0.005291679874062538, 0.009075072593986988, 0.011293142102658749, 0.0023796716704964638, 0.017237568274140358, -0.00863779615610838, -0.005142752546817064, -0.020000649616122246, -0.009518686681985855, 0.011743093840777874, -0.01944296434521675, -0.009594734758138657, -0.026667533442378044, -0.012345140799880028, 0.003220953745767474, -0.0015494800172746181, 0.019214820116758347, -0.030647384002804756, -0.0010139746591448784, 0.031103672459721565, -0.021154046058654785, -0.015285667963325977, -0.015209619887173176, 0.006109197158366442, -0.020672407001256943, -0.03358791023492813, 0.0014678867300972342, -0.021648358553647995, 0.03802404925227165, 0.004699138458818197, 0.008149821311235428, -0.005621221847832203, 0.0006701738457195461, -0.005022343248128891, 0.004537536296993494, 0.027123821899294853, 0.002696538809686899, -0.007756906095892191, 0.009645434096455574, -0.006178908050060272, 0.026414038613438606, 0.01242118887603283, 0.013891451992094517, 0.002769418293610215, 0.003726356662809849, -0.06230873987078667, -0.02240883931517601, 0.003986187744885683, 0.013333766721189022, -0.009955963119864464, 0.03021644428372383, 0.006584497634321451, 0.011014299467206001, 0.008916639722883701, -0.020140070468187332, 0.0012817273382097483, -0.00808010995388031, 0.016667207702994347, 0.011819141916930676, 0.011762105859816074, -0.0005362975061871111, -0.004816379398107529, -0.00879622995853424, -0.021230094134807587, -0.02418329566717148, 0.018733181059360504, -0.0015629468252882361, 0.0054025836288928986, -0.023017223924398422, -0.01830224134027958, 0.0016112690791487694, -0.009518686681985855, 0.014753330498933792, -0.03495677560567856, 0.004021042957901955, -0.013029574416577816, 0.002929436042904854, -0.0012587544042617083, -0.016971400007605553, -0.020406238734722137, -0.017300942912697792, 0.017237568274140358, -0.01624894328415394, 0.010944589041173458, -0.0011074504582211375, -0.02581832930445671, -0.03204159811139107, 0.0029009180143475533, 0.014537861570715904, 0.017795255407691002, -0.0030989600345492363, -0.03422164544463158, -0.0010638812091201544, 0.006286642514169216, -0.0023004550021141768, 0.005640233866870403, -0.024233993142843246, -0.0015360130928456783, 0.023676307871937752, -0.013574585318565369, -0.002363828243687749, 0.004575560335069895, -0.007991387508809566, 0.0018077266868203878, -0.020634382963180542, -0.020697757601737976, 0.019176796078681946, 0.032827429473400116, -0.030951576307415962, 0.03510887175798416, -0.0016572148306295276, 0.0019978468772023916, -0.0035964413546025753, -0.013904127292335033, -0.012598634697496891, 0.001969328848645091, -0.02282710373401642, -0.024690281599760056, -0.03150926157832146, -0.007256255950778723, 0.018657132983207703, 0.016477087512612343, 0.022586284205317497, 0.027250567451119423, -0.01024114340543747, -0.010634059086441994, -0.015539160929620266, -0.005944426171481609, 0.011204419657588005, 0.03455118462443352, 0.0059000649489462376, 0.03014039620757103, 0.012275430373847485, 0.020203445106744766, 0.03087552823126316, 0.028112446889281273, 0.007389340084046125, 0.008460351265966892, 0.005915908142924309, 0.009461650624871254, -0.010944589041173458, -0.010963601060211658, 0.02315664477646351, 0.038100097328424454, -0.01351121161133051, -0.007421026937663555, -0.015779979526996613, -0.01087487768381834, -0.02216801978647709, -0.0005149089847691357, -0.00021447939798235893, 0.023372115567326546, 0.0008602940943092108, 0.007497075013816357, -0.014043549075722694, 0.0037200194783508778, 0.03181345388293266, -0.019138772040605545, -0.008295579813420773, 0.010209457017481327, 0.013029574416577816, 0.01863178424537182, 0.0038467661943286657, -0.011217094026505947, -0.012655670754611492, 0.005960269831120968, 0.015589860267937183, 0.007351316045969725, -0.008834253996610641, -0.011115697212517262, -0.03868313133716583, 0.00302132754586637, -0.003081532195210457, 0.024867728352546692, -0.005389908794313669, 0.005114234518259764, -0.014297042042016983, -0.003786561544984579, 0.00544694485142827, 0.008054761216044426, 0.003352453699335456, -0.002425617538392544, -0.011109359562397003, 0.017338966950774193, -0.002618906321004033, -0.007731556426733732, 0.007807604502886534, 0.007554111070930958, 0.002761496463790536, 0.005263161845505238, 0.01480402983725071, 0.015767306089401245, -0.009005362167954445, 0.02578030526638031, -0.0068506659008562565, -0.016553135588765144, 0.038961976766586304, 0.015501136891543865, -0.006818979512900114, -0.020254142582416534, 0.037846602499485016, 0.0002629996743053198, -0.007794930133968592, -0.04925381764769554, -0.006565485615283251, -0.009265192784368992, -0.03614819422364235, 0.01640103943645954, -0.005431101657450199, -0.00869483221322298, -0.008365290239453316, 0.03670588135719299, -0.04499512538313866, -0.005858872085809708, 0.00915112067013979, 0.006952063646167517, 0.013866103254258633, -0.0017094978829845786, 0.0010527909034863114, -0.023422813042998314, 0.010710107162594795, -0.01821351982653141, 0.005453282501548529, -0.03323301672935486, -0.0185050368309021, -0.0026268279179930687, 0.004331572912633419, -0.012142346240580082, -0.000501838221680373, 0.004391777794808149, -0.008175170049071312, 0.004366428125649691, 0.0039101396687328815, -0.009049723856151104, -0.006464088335633278, -0.007421026937663555, -0.00035706956987269223, 0.013574585318565369, 0.014575885608792305, -0.01788397692143917, 0.005741631146520376, -0.015057522803544998, -0.010881215333938599, -0.03911407291889191, 0.006112365983426571, -0.01821351982653141, 0.006394377443939447, 0.004740331321954727, -0.008789892308413982, -0.020418914034962654, 0.01268102042376995, -0.005060367286205292, -0.004496343899518251, -0.024576209485530853, -0.013409814797341824, -0.010038348846137524, -0.010982613079249859, 0.020203445106744766, -0.01681930385529995, -0.005370896775275469, -0.008365290239453316, 0.006540136411786079, 0.038378939032554626, -0.004692801274359226, -0.01989925280213356, -0.03807474672794342, -0.00917013268917799, 0.025425413623452187, -0.028568735346198082, -0.017415015026926994, 0.004043223802000284, -0.024728305637836456, 0.002007352886721492, -0.0034348389599472284, 0.006302486173808575, -0.0054881377145648, 0.005976113025099039, 0.003447513794526458, 0.0012231068685650826, 0.026490086689591408, -0.0010092216543853283, 0.030444588512182236, -0.0177192073315382, 0.010450275614857674, -0.004927283152937889, -0.019519012421369553, -0.02389177680015564, 0.011362853460013866, 0.01657848432660103, 0.012909164652228355, -0.013802729547023773, -0.012611309066414833, 0.007180207874625921, 0.020342865958809853, 0.012237406335771084, -0.013409814797341824, -0.022358139976859093, -0.0026220749132335186, -0.006426064297556877, -0.025146570056676865, 0.021762430667877197, 0.02360025979578495, 0.006952063646167517, -0.012566948309540749, 0.02458888478577137, 0.046363990753889084, -0.031889501959085464, 0.011026973836123943, 0.012991550378501415, -0.005259993486106396, 0.014816704206168652, 0.040685731917619705, -0.038581736385822296, -0.040153395384550095, 0.027123821899294853, -0.01042492687702179, 0.009487000294029713, 0.0007838499150238931, -0.009328566491603851, 0.005738462787121534, -0.017212219536304474, -0.02015274576842785, -0.007775918114930391, 0.008435001596808434, -0.0319148525595665, -0.006616184487938881, -0.002764665288850665, -0.01747838780283928, -0.003526730462908745, 0.003472862998023629, -0.01354923564940691, 0.013333766721189022, -0.001812479691579938, -0.011103021912276745, 0.027782903984189034, -0.018403640016913414, 0.013992849737405777, -0.019024699926376343, 0.048873577266931534, 0.018441664054989815, -0.012839453294873238, -0.016971400007605553, 0.009417288936674595, 0.03640168905258179, 0.010634059086441994, 0.0031496586743742228, -0.013004224747419357, -0.03531166538596153, 0.008574423380196095, -0.0003047865175176412, -0.00604265509173274, 0.010545335710048676, 0.00032082790858112276, -0.007509749382734299, 0.0016207750886678696, -0.004093922674655914, 0.00655914843082428, -0.014195645228028297, -0.009892590343952179, -0.010570685379207134, -0.004838560242205858, 0.007167533040046692, -0.011711406521499157, 0.0037643807008862495, 0.0026727737858891487, 0.020773805677890778, -0.025197269394993782, 0.009455312974750996, -0.006571823265403509, -0.015463112853467464, -0.004299886059015989, -0.01200926210731268, 0.005709944758564234, -0.014322391711175442, -0.039367564022541046, -0.0064450763165950775, -0.0073006171733140945, 0.014018199406564236, -0.0007248334004543722, -0.001378371729515493, 0.006416558288037777, -0.009182807989418507, 0.013067598454654217, -0.007807604502886534, 0.002362244063988328, -0.011743093840777874, 0.009531361982226372, 0.011242443695664406, -0.010862203314900398, -0.013675983063876629, 0.0556672066450119, -0.0023970995098352432, 0.004233343992382288, -0.013004224747419357, -0.008549073711037636, -0.016388364136219025, 0.00020853814203292131, 0.015678582713007927, 0.01841631345450878, -0.011185407638549805, 0.0024525511544197798, -0.007813941687345505, 0.008130809292197227, -0.00608384795486927, 0.0009450560319237411, -0.0047086444683372974, 0.008992687799036503, -0.011540298350155354, -0.012611309066414833, 0.012104322202503681, 0.027149170637130737, -0.0011256702709943056, -0.011502274312078953, -0.0033492848742753267, 0.004188982769846916, 0.013321091420948505, 0.0011898358352482319, 0.01575463078916073, 0.0007604809943586588, 0.025640882551670074, -0.011014299467206001, 0.021686382591724396, -0.016008123755455017, -0.002042208332568407, -0.004524861928075552, 0.016553135588765144, 0.0014821457443758845, 0.022294767200946808, -0.011692394502460957, 0.00442029582336545, 0.003220953745767474, 0.0184670127928257, 0.024702956900000572, 0.03163600713014603, -0.014056223444640636, 0.00972781889140606, 0.006413389462977648, -0.014664608053863049, 0.010152420960366726, -0.008460351265966892, 0.003536236472427845, -0.020659733563661575, 0.007243581116199493, 0.013397139497101307, 0.005820848047733307, -0.012262756004929543, 0.003393646329641342, -0.020203445106744766, -0.0016635521315038204, 0.010596035048365593, -0.02174975536763668, -0.01986122876405716, -0.031103672459721565, -0.03252323716878891, 0.004911439493298531, -0.00877721793949604, -0.0002740900090429932, -0.012490900233387947, -0.013194344937801361, -0.014056223444640636, -0.004280874039977789, 0.016299642622470856, 0.01640103943645954, -0.023334091529250145, -0.025729605928063393, 0.01358725968748331, 0.006194751244038343, 0.019392265006899834, 0.027732206508517265, 0.010374227538704872, -0.008295579813420773, -0.008986350148916245, 0.008549073711037636, -0.016008123755455017, 0.021369514986872673, 0.005440607666969299, -0.01608417183160782, -0.026946375146508217, 0.018821904435753822, -0.013371790759265423, -0.005202957428991795, 0.028847578912973404, -0.00021408330940175802, 0.01361260935664177, 0.0034506823867559433, 0.0046135843731462955, 0.014081573113799095, -0.03330906480550766, 0.009284204803407192, 0.007497075013816357, 0.0088405916467309, -0.007807604502886534, -0.012535260990262032, -0.0143097173422575, -0.012852128595113754, -0.019050048664212227, 0.005877884104847908, 0.011901527643203735, -0.02048228681087494, 0.025007149204611778, -0.008846928365528584, -0.021965226158499718, -0.0010393239790573716, -0.015640558674931526, -0.03239648789167404, 0.0253620408475399, 0.0013870856491848826, -0.014867402613162994, -0.0023273886181414127, -0.010950925759971142, 0.008092785254120827, 0.0007173078483901918, 0.00012159773905295879, -0.006125040352344513, 0.0020723105408251286, 0.012224731966853142, -0.02422131970524788, -0.011274130083620548, 0.005025511607527733, -0.030748780816793442, 0.005545173771679401, -0.010881215333938599, 0.008999024517834187, -0.00025111716240644455, -0.0026933702174574137, -0.0064862691797316074, -0.003599609946832061, 0.0020754793658852577, 0.017402339726686478, -0.027199869975447655, 0.009410952217876911, -0.015311016701161861, -0.0023400632198899984, 0.025767629966139793, -0.014588559977710247, -0.0034189957659691572, -0.012446538545191288, -0.035387713462114334, -0.0005125324823893607, -0.010532661341130733, 0.017364315688610077, -0.03325836732983589, -0.0058493660762906075, -0.009106759913265705, -0.01038056518882513, 0.012078972533345222, -0.0009022789890877903, -0.015856027603149414, -0.01519694458693266, -6.421509169740602e-05, 0.015779979526996613, 0.015640558674931526, -0.02302989922463894, 0.0026854483876377344, -0.01583067886531353, -0.011464250274002552, 0.024943776428699493, 0.01744036376476288, 0.012687357142567635, -0.017985375598073006, 0.0014179801801219583, -0.001744353212416172, -0.006235944107174873, -0.015602534636855125, 0.001985172275453806, -0.004540705122053623, -0.010082710534334183, -0.0025381052400916815, -0.0048005362041294575, 0.006704907398670912, 0.01982320472598076, -0.007845629006624222, 0.03688332810997963, 0.021597659215331078, -0.011134709231555462, -0.01539974007755518, 0.015095546841621399, -0.020710431039333344, -0.016312316060066223, 0.042130645364522934, -0.010139746591448784, 0.01624894328415394, 0.0028803215827792883, -0.003336610272526741, -0.004939957521855831, 0.0030926226172596216, 0.013067598454654217, 0.008105459623038769, -0.01192687638103962, -0.012611309066414833, -0.001417187973856926, 0.004021042957901955, 0.00771888205781579, 0.005988787859678268, -0.010583359748125076, -0.014918101951479912, -0.007725219242274761, -0.012649333104491234, -0.015463112853467464, 0.0035108872689306736, -0.035210270434617996, -0.032295092940330505, 0.00045826900168322027, 0.00489242747426033, -0.021331490948796272, 0.018390964716672897, -0.0026379183400422335, 0.0014528355095535517, 0.028543386608362198, 0.005874715745449066, 0.012078972533345222, 0.013840753585100174, 0.0009854566305875778, -0.012269092723727226, 0.0004067780973855406, -0.025463437661528587, 0.023498862981796265, 0.024081896990537643, 0.010063698515295982, -0.02438608929514885, 0.018124796450138092, 0.0021705394610762596, 0.0027678338810801506, 0.012376828119158745, 0.018226193264126778, 0.03252323716878891, 0.012193044647574425, -0.007351316045969725, 0.0007759282598271966, 0.006920376792550087, -0.021521611139178276, 0.0028834904078394175, -0.008625121787190437, 0.0011193329701200128, -0.006090185139328241, -0.0051459213718771935, -0.00012357815285213292, 0.02717451937496662, -0.014297042042016983, -2.4817127268761396e-05, 0.011464250274002552, -0.006793629843741655, -0.002964291488751769, 0.018428988754749298, -0.016223594546318054, 0.003973512910306454, -0.0021087503992021084, -0.011578322388231754, -8.773257286520675e-05, -0.03161066025495529, -0.003247887594625354, 0.0017142508877441287, 0.0071421838365495205, -0.006128209177404642, 0.004470994230359793, 0.029785504564642906, -0.016426388174295425, 0.02684497833251953, -0.007319629192352295, -0.004394946154206991, -0.009607410058379173, -0.0011066582519561052, 0.0337907038629055, -0.001692070160061121, 0.012231068685650826, 0.008346278220415115, -0.015044848434627056, -0.01940494030714035, 0.019062723964452744, 0.0066985697485506535, -0.0014156036777421832, 0.011698732152581215, -0.018758529797196388, -0.024677608162164688, -0.012687357142567635, -0.020203445106744766, -0.011115697212517262, 0.008999024517834187, -0.006118703167885542, -0.0035964413546025753, 0.01145157590508461, -0.0038150795735418797, 0.016882678493857384, -0.004578729160130024, -0.00356158590875566, 0.0017348472028970718, 0.010722781531512737, 0.009322228841483593, -0.0025428582448512316, 0.008625121787190437, -0.007383002899587154, -0.012731718830764294, -0.01903737336397171, -0.004423464182764292, 0.007744231261312962, -0.016679883003234863, 0.033740006387233734, 0.009525024332106113, -0.02076113037765026, 0.006483100354671478, 0.00023071884061209857, -0.01418296992778778, -0.01640103943645954, 0.010203119367361069, -0.014626584015786648, -0.011857165955007076, 0.0043569221161305904, 0.01153396163135767, -0.008257555775344372, 0.020241469144821167, -0.003216200741007924, 0.004569223150610924, 0.019962625578045845, -0.002807442331686616, 0.010684757493436337, -0.013422489166259766, 0.021648358553647995, 0.002259262138977647, 0.01590672694146633, 0.0014227331848815084, -0.004093922674655914, 0.017858628183603287, -0.03313162177801132, 0.0015518565196543932, 0.01315632089972496, 0.008238543756306171, -0.01903737336397171, -0.0040558986365795135, -0.011508611962199211, -0.004299886059015989, -0.013321091420948505, -0.015501136891543865, -0.015564510598778725, -0.00877721793949604, 0.0030054841190576553, 0.021445563063025475, 0.015932075679302216, 0.010519986972212791, 0.02849268727004528, -0.00032815546728670597, 0.0045090182684361935, -0.0022703525610268116, 0.029379915446043015, 0.0030530141666531563, -0.02574228122830391, 0.02002599835395813, 0.013828079216182232, -0.0019566542468965054, 0.0072942799888551235, 0.011274130083620548, -0.0030244961380958557, 0.016933375969529152, -0.013904127292335033, 0.004049560986459255, 0.011261455714702606, 0.0007196843507699668, -0.004699138458818197, 0.0007763243047520518, -0.02763080783188343, -0.012636658735573292, 0.006156727205961943, -0.03457653522491455, -0.018821904435753822, -0.007376665249466896, -0.004543873947113752, 0.0015906726475805044, 0.01254159864038229, -0.0034950438421219587, 0.0004495551693253219, -0.013777379877865314, 0.02282710373401642, -0.007465388160198927, -0.03412024676799774, 0.006882352754473686, -0.00814348366111517, 0.0037105134688317776, -0.002121425000950694, -0.007363990880548954, -0.023511536419391632, -0.007928013801574707, -0.013485862873494625, -0.002273521153256297, 0.006327835377305746, -0.020494962111115456, 0.0010527909034863114, 0.0004107389540877193, -0.03627494350075722, 0.025057848542928696, 0.002121425000950694, 0.0004923322121612728, 0.005183945409953594, -0.008593435399234295, 0.008999024517834187, 0.020380889996886253, -0.005345547571778297, -0.009246180765330791, -0.012655670754611492, 0.031027624383568764, 0.025171920657157898, -0.003932320512831211, 0.0035425738897174597, 0.00877721793949604, -0.02392980083823204, -0.006711244583129883, 0.012281768023967743, -0.004474163055419922, -0.005047692451626062, -0.025007149204611778, 0.0023812560830265284, 0.024639584124088287, 0.024246668443083763, 0.004673789255321026, 0.011540298350155354, -0.013460513204336166, 0.01133116614073515, 0.000869800103828311, 0.03333441540598869, 0.009550374001264572, -0.008865940384566784, 0.004547042306512594, 0.011007961817085743, -0.00027607043739408255, -0.020013324916362762, 0.003849935019388795, -0.011115697212517262, -0.004233343992382288, 0.017668507993221283, -0.004233343992382288, -0.003777055535465479, 0.004911439493298531, -0.00879622995853424, -0.007870977744460106, 0.0016524618258699775, 0.03657913580536842, 0.03297952562570572, 0.05358855798840523, 0.0048544034361839294, 0.016147546470165253, -0.020241469144821167, -0.0044012838043272495, -0.03399350121617317, 0.013536561280488968, -0.01204728614538908, 0.017871303483843803, 0.015589860267937183, -0.004835391417145729, -0.004670620430260897, -0.016058823093771935, 0.011438901536166668, -0.025894377380609512, 0.015716606751084328, 0.0038150795735418797, -0.004505849909037352, -0.009873578324913979, -0.004182645119726658, 0.01107767317444086, 0.021939875558018684, 0.007313292007893324, -0.0018663470400497317, 0.004166801925748587, -0.012693694792687893, 0.02475365623831749, 0.023701656609773636, 0.016958726570010185, -0.013435163535177708, 0.022142671048641205, -0.020456938073039055, -0.01315632089972496, -0.0184670127928257, -0.013802729547023773, -0.019050048664212227, -0.013866103254258633, -0.015032174065709114, 0.011610009707510471, 0.028391290456056595, -0.005342378746718168, -0.0075477734208106995, 0.01747838780283928, 0.004562885966151953, -0.013346441090106964, 0.02158498577773571, 0.019911926239728928, 0.00327957421541214, -0.01579265482723713, 0.0025333522353321314, 0.0012033027596771717, 0.010000324808061123, 0.05617419630289078, 0.002764665288850665, -0.0025222618132829666, 0.011375527828931808, -0.0013078688643872738, 0.003504549851641059, 0.0028327915351837873, -0.02763080783188343, 0.018771205097436905, 0.016705231741070747, 0.013080272823572159, -0.0043030548840761185, -0.006685895379632711, 0.012883814983069897, -0.012788754887878895, 0.0019550698343664408, 0.007338641211390495, 0.00715485867112875, -0.005633896682411432, -0.014905426651239395, 0.015932075679302216, 0.013473187573254108, 0.0004154919588472694, 0.004835391417145729, -0.02557750977575779, 0.00029765701037831604, 0.010025674477219582, 0.007237243931740522, 0.014689957723021507, 0.007034448906779289, -0.01358725968748331, -0.020406238734722137, -0.010577023029327393, -0.010019336827099323, 0.027250567451119423, -0.006755605805665255, -0.0012270677834749222, -0.00917013268917799, 0.025400064885616302, -0.0009300048695877194, 0.007224569097161293, 0.005763811990618706, -0.012598634697496891, 0.00996863842010498, -0.004680126439779997, 0.0007505788817070425, -0.014436463825404644, -0.003973512910306454, 0.006457751151174307, -0.005627559032291174, -0.015006824396550655, 0.004385440144687891, 0.004889259114861488, -0.008593435399234295, 0.00540892081335187, 0.015589860267937183, 0.01249723695218563, 0.032219044864177704, -0.003631296567618847, -0.0015708685386925936, -0.00818150769919157, 0.0016841484466567636, 0.0030831166077405214, 0.0020311179105192423, -0.02651543729007244, -0.008625121787190437, 0.015361716039478779, -0.029101071879267693, 0.0006634404417127371, -0.0047086444683372974, 0.0005877884104847908, -0.003599609946832061, -0.006286642514169216, 0.018885277211666107, 0.00014229312364477664, -0.011293142102658749, -0.002046961337327957, 0.0184670127928257, 0.009385602548718452, 0.009075072593986988, -0.02330874092876911, 0.023207344114780426, 0.01657848432660103, 0.01034254115074873, 0.007116834633052349, -0.022915827110409737, -0.009917939081788063, -0.00027309980941936374, 0.010583359748125076, 0.012269092723727226, 0.009442638605833054, 0.0177192073315382, -0.02052031084895134, 0.003929151687771082, -0.018403640016913414, 0.013245043344795704, 0.011667045764625072, 0.009030711837112904, 0.01986122876405716, 0.00804208591580391, 0.01039957720786333, -0.0021388528402894735, -0.04448813572525978, -0.01048196293413639, 0.01153396163135767, -0.01911342144012451, -0.00043846480548381805, 0.02105264738202095, -0.009214494377374649, 0.0018188169924542308, -0.006416558288037777, -0.011115697212517262, -0.010779817588627338, -0.01321969460695982, 0.005846197251230478, 0.014664608053863049, -0.02574228122830391, 0.013295742683112621, -0.026870327070355415, 0.03607214614748955, 0.0007735517574474216, 0.025716930627822876, 0.0039006336592137814, -0.0038847902324050665, -0.002488990779966116, -0.00935391616076231, 0.00933490414172411, -0.0018108952790498734, -0.021927202120423317, 0.003634465392678976, 0.017072798684239388, 0.022129995748400688, -0.02002599835395813, -0.0049589695408940315, 0.015881378203630447, 0.015374390408396721, -0.006479931529611349, 0.024310041218996048, -0.0008301917114295065, -0.005684595089405775, 0.00710415979847312, -0.007465388160198927, -0.01722489483654499, 0.022218719124794006, -0.014271693304181099, -0.011229769326746464, 0.011869840323925018, 0.012427526526153088, -0.021204743534326553, 0.016502436250448227, -0.006422895472496748, 0.014360415749251842, 0.02499447390437126, 0.0013902542414143682, 0.014423789456486702, -0.010450275614857674, 0.009670782834291458, 0.006679557729512453, 0.0033968149218708277, 0.00761748431250453, -0.0036534774117171764, 0.021077997982501984, 0.008903964422643185, 0.0010773480171337724, -0.02788430266082287, 0.001330841681919992, 0.022459538653492928, -0.002523846225813031, -0.010849528945982456, 0.008054761216044426, -0.0015732450410723686, -0.001901202485896647, 0.011755768209695816, -0.0013942151563242078, 0.005852534901350737, -0.03366395831108093, 0.009499674662947655, -0.006467257160693407, 0.011445238254964352, -0.013359115459024906, -0.012934514321386814, 0.005187113769352436, -0.011971238069236279, -0.00809912197291851, 0.002614153316244483, -0.003811910981312394, -0.00031151995062828064, -1.480363334849244e-05, 0.002026364905759692, -0.007199219893664122, -0.0040051997639238834, -0.0177192073315382, -0.009284204803407192, -0.016008123755455017, -0.010488299652934074, -0.01997530087828636, -0.0005458035157062113, -0.014487162232398987, -0.017034774646162987, -0.024031199514865875, -0.004277705680578947, 0.0054976437240839005, -0.0037928989622741938, -0.022358139976859093, 0.006109197158366442, -0.012814104557037354, 0.002268768148496747, 0.016350340098142624, -0.031838804483413696, 0.017009424045681953, 0.010215794667601585, -0.008270230144262314, -0.012687357142567635, 0.03812544792890549, 0.01828956790268421, 0.00915112067013979, 0.006029980257153511, 0.002791598904877901, -0.025298666208982468, 0.025476112961769104, 0.017858628183603287, 0.0010234806686639786, -0.030165744945406914, 0.02294117584824562, -0.0009506012429483235, 0.016058823093771935, 0.00054501136764884, -0.0038626096211373806, -0.020900551229715347, 0.002232328522950411, 0.03163600713014603, -0.02015274576842785, -0.008485700003802776, 0.015082872472703457, -0.012307116761803627, 0.004363259766250849, 0.018327591940760612, -0.0037707181181758642, 0.0023337260354310274, 0.02068508230149746, 0.01027916744351387, 0.004227006807923317, 0.0021356840152293444, -0.019088072702288628, -0.019214820116758347, -0.007978713139891624, 0.003514055861160159, 0.028594084084033966, -0.012313454411923885, -0.008770880289375782, -0.012212056666612625, 0.0029104240238666534, -0.0003063708427362144, -0.00993061438202858, 0.00603314908221364, 0.0054691256955266, 0.015387064777314663, 0.012389502488076687, -0.0003136984014417976, 0.025932401418685913, 0.0065908352844417095, 0.0017506906297057867, 0.014892752282321453, 0.03640168905258179, 0.00652746157720685, -0.004483669064939022, -0.026135196909308434, 0.0021451900247484446, 0.022053947672247887, 0.011217094026505947, 0.0032352127600461245, -0.030698081478476524, 0.031762756407260895, 0.023866428062319756, -0.004772018175572157, -0.00972781889140606, -0.005009668413549662, -0.0020834009628742933, 0.00037212076131254435, 0.012116996571421623, 0.004097091034054756, -0.007237243931740522, 0.02134416624903679, -0.0018964494811370969, 0.019088072702288628, -0.02244686335325241, -0.00608384795486927, -0.022510236129164696, -0.006489437539130449, 0.00437910296022892, -0.004344247747212648, 0.014005525037646294, -0.008511049672961235, -0.01192687638103962, 0.018986674025654793, -0.012205719947814941, 0.01969645731151104, 0.002937357872724533, 0.005044523626565933, 0.005231475457549095, -0.003181345295161009, -0.013194344937801361, -0.012231068685650826, 0.02220604382455349, -0.00761748431250453, -0.024005848914384842, 0.018530385568737984, -0.02960805967450142, 0.014474487863481045, -0.020938575267791748, 0.012959863059222698, -0.015741955488920212, 0.005811342038214207, 0.014018199406564236, 0.030495287850499153, -0.006096522323787212, 0.002264015143737197, -0.006182076409459114, 0.017960024997591972, 0.0030767791904509068, -0.02035554125905037, -0.007376665249466896, 0.014043549075722694, -0.007414689287543297, -0.012877478264272213, 0.011667045764625072, -0.005044523626565933, -0.02286512777209282, 0.0025729606859385967, 0.02162300981581211, -0.009759506210684776, -0.0013791639357805252, 0.02068508230149746, 0.010089047253131866, 0.00650844955816865, -0.004730825312435627, -0.004287211690098047, -0.007237243931740522, 5.144138776813634e-05, 0.0051047285087406635, 0.012078972533345222, 0.030191093683242798, 0.031103672459721565, 0.00998765043914318, -0.023917127400636673, -0.006029980257153511, -0.017047448083758354, 0.016933375969529152, 0.021813130006194115, -0.00652746157720685, 0.01206629816442728, -0.01960773393511772, -0.014525186270475388, -0.008175170049071312, 0.004496343899518251, -0.011730418540537357, 0.014487162232398987, -0.0032352127600461245, 0.0008507880847901106, -0.023714331910014153, -0.01797270029783249, 0.017123496159911156, -0.0038689470384269953, 0.014018199406564236, 0.024525512009859085, 0.0018520880257710814, -0.0036122845485806465, 0.010665745474398136, -0.010082710534334183, 0.017605135217308998, -0.005583197809755802, -0.03635099157691002, 0.0028042735066264868, -0.002439876552671194, -0.013168995268642902, 0.006552811246365309, 0.007344978861510754, 0.011476925574243069, 0.003786561544984579, -0.0040115369483828545, -0.012769742868840694, -6.052656317478977e-06, 0.0066035096533596516, 0.009176470339298248, 0.001017143251374364, 0.009924276731908321, 0.01321969460695982, 0.0184670127928257, -0.017998049035668373, 0.022053947672247887, 0.004518524277955294, 0.0002843881957232952, 0.002382840495556593, -0.015095546841621399, 0.0030466769821941853, 0.004917777143418789, -0.0004705475876107812, 0.012269092723727226, 0.004179476760327816, 0.00496530719101429, 0.0010456612799316645, -0.004027380608022213, -0.0024382921401411295, -0.011768443509936333, 0.004002030938863754, -0.0014433295000344515, -0.008910302072763443, -0.003786561544984579, 0.005732125137001276, -0.04017874598503113, -0.013283067382872105, -0.01808677241206169, 0.006755605805665255, -0.007845629006624222, -0.005678257904946804, 0.004315729718655348, 0.006175739225000143, 0.010532661341130733, -0.009043386206030846, 0.01837828941643238, 0.006540136411786079, -0.0012516248971223831, 0.005662414710968733, -0.019747156649827957, 0.018897952511906624, 0.001181122031994164, 0.014284367673099041, -0.006112365983426571, -0.006825316697359085, -0.018657132983207703, -0.0177572313696146, -0.0013070766581222415, -0.0088786156848073, 0.022890476509928703, -0.02006402239203453, 0.009943288750946522, -0.008511049672961235, -0.009398276917636395, 0.0054976437240839005, -0.002446213737130165, -0.002359075238928199, 0.004217500798404217, 0.04073642939329147, 0.008327266201376915, -0.021572310477495193, -0.025894377380609512, -0.01533636637032032, -0.0020770635455846786, 0.0048987651243805885, -0.005472294520586729, -0.028999675065279007, 0.005174439400434494, 0.030900876969099045, -0.002252924954518676, 0.005016005598008633, 0.0009410951752215624, -0.00976584292948246, 0.010038348846137524, 0.012585960328578949, -0.01032352913171053, -0.006641533691436052, -0.010285505093634129, -0.025311341509222984, 0.016743255779147148, -0.005862040910869837, 0.02323269285261631, -0.014030873775482178, 0.023498862981796265, -0.0226623322814703, 0.024005848914384842, -0.0008690079557709396, 0.007864641025662422, 0.0025555328465998173, 0.00998765043914318, 0.0034443449694663286, 0.00019447716476861387, 0.017529087141156197, 0.034931425005197525, 0.04910172149538994, -0.050521284341812134, -0.0057036071084439754, -0.013764705508947372, -0.011026973836123943, -0.01709814742207527, -0.002541273832321167, -0.0024810691829770803, -0.0021752924658358097, 0.014259018003940582, 0.008314591832458973, -0.005085716489702463, 0.00877721793949604, -0.001628696802072227, -0.0013205434661358595, 0.0010321944719180465, -0.020583685487508774, 0.00869483221322298, 0.015095546841621399, -0.014689957723021507, 0.0007775125559419394, 0.006895027589052916, -0.0022560935467481613, 0.003479200415313244, -0.013726681470870972, 0.011673382483422756, 0.003970344550907612, 0.008580760098993778, -0.011438901536166668, -0.009981312789022923, -0.014816704206168652, 0.01533636637032032, -0.0018457507248967886, -0.021027298644185066, 0.0031052972190082073, 0.016312316060066223, 0.004968475550413132, -0.010881215333938599, -0.01731361635029316, -0.028568735346198082, 0.031179720535874367, 0.006258124485611916, 0.012947188690304756, -0.009125771932303905, 0.02537471428513527, 0.005621221847832203, 0.009588398039340973, -0.0066985697485506535, -0.002089738380163908, -0.0016714738449081779, -0.005564185790717602, -0.020279493182897568, -0.010165095329284668, -0.020951250568032265, -0.016502436250448227, -0.0038372601848095655, 0.0008436585776507854, 0.021939875558018684, -0.003094207029789686, 0.003520393278449774, 0.011166395619511604, -0.02750406228005886, -0.0014290704857558012, 0.006318329367786646, 0.0027995205018669367, 0.020786479115486145, -0.014575885608792305, -0.006419726647436619, -0.009037048555910587, -0.012959863059222698, -0.02302989922463894, 0.013143646530807018, 0.004724488127976656, 0.01916412077844143, -0.006831653881818056, 0.002650592941790819, 0.014423789456486702, 0.0028739843983203173, 0.011686057783663273, 0.007750568445771933, 0.006723919417709112, -0.02372700721025467, 0.021889178082346916, 0.009195482358336449, 0.027706855908036232, -0.005225137807428837, 0.04152226075530052, -0.007864641025662422, -0.017326291650533676, -0.007573123089969158, 0.019354240968823433, -0.0049462951719760895, -0.00013179689995013177, 0.010634059086441994, 0.0024081896990537643, -0.03297952562570572, 0.019519012421369553, -0.005957101006060839, 1.9977478586952202e-05, -0.024677608162164688, 0.008422327227890491, 0.00109952874481678, -0.006479931529611349, -0.004626259207725525, -0.014094247482717037, 0.0018663470400497317, -0.017896652221679688, 0.0009094084962271154, 0.00498431921005249, -0.027580110356211662, -0.027681507170200348, 0.006704907398670912, -0.013004224747419357, -0.010317191481590271, -0.008935651741921902, -0.00931589212268591, -0.0017475219210609794, -0.0013316338881850243, -0.011312154121696949, 0.014499837532639503, -0.011426226235926151, 0.008473025634884834, -0.017161520197987556, -0.016882678493857384, 0.008599772118031979, 0.004597741179168224, 0.004176307935267687, 0.010184107348322868, 0.01089388970285654, 0.02081182971596718, 0.004594572354108095, -0.00042895879596471786, -0.001283311634324491, 0.0019075397867709398, -0.00920815672725439, -0.0011977575486525893, -3.086978540522978e-05, -0.04332206770777702, -0.015311016701161861, 0.010672083124518394, -0.005412089638411999, -0.014030873775482178, 0.006334172561764717, 0.027681507170200348, -0.0010876462329179049, -0.009467988274991512, 0.017250243574380875, 0.007972375489771366, 0.005114234518259764, 0.0028153639286756516, 0.006178908050060272, 0.01371400710195303, -0.0024636415764689445, 0.02902502380311489, -0.006502112373709679, 0.006895027589052916, -0.004119271878153086, -0.005697269923985004, -0.007775918114930391, 0.01089388970285654, 0.015032174065709114, 0.008377965539693832, -0.017744556069374084, 0.0055483425967395306, -0.008320929482579231, 0.023131296038627625, -0.00771888205781579, 0.005009668413549662, 0.011033311486244202, -0.012947188690304756, 0.0006872054655104876, 0.003399983746930957, -0.002777339890599251, -0.007794930133968592, 0.0130168991163373, -0.02200325019657612, 0.0028011049143970013, 0.01085586566478014, 0.025501461699604988, -0.0003000335127580911, 0.011103021912276745, -0.020621709525585175, 0.007794930133968592, -0.012547936290502548, 0.04377835616469383, 0.001356191118247807, -0.015640558674931526, -0.04481767863035202, 0.006410220637917519, 2.5126568289124407e-05, 0.0069964248687028885, 0.011692394502460957, 0.0057543059810996056, -0.007934351451694965, -0.010095384903252125, -0.005785992834717035, -0.028974324464797974, -0.0010908149415627122, 0.007972375489771366, -0.0076935323886573315, 0.001128838979639113, 0.01216769590973854, -0.009879915043711662, 0.012345140799880028, -0.015551836229860783, 0.0024430451449006796, -0.050597332417964935, -0.01973448134958744, 0.006787292659282684, 0.00982921663671732, -0.01960773393511772, -0.027681507170200348, 0.04316997155547142, 0.0030149901285767555, -0.006888689938932657, 0.048214495182037354, 0.006761943455785513, -0.020254142582416534, -0.002042208332568407, 0.003201941726729274, 0.03138251602649689, -0.012383164837956429, -0.01024114340543747, 0.01863178424537182, 0.00923350639641285, -0.034677933901548386, -0.009512349963188171, 0.010900227352976799, 0.0073006171733140945, 0.01257962267845869, 0.003944994881749153, 0.0006804720615036786, -0.007199219893664122, -0.003672489430755377, 0.0014575885143131018, -0.010139746591448784, 0.015247643925249577, -0.0029975625220686197, -0.001333218184299767, 0.001155772595666349, 0.012281768023967743, 0.0007347355131059885, -0.004673789255321026, 0.04628794267773628, 0.011172733269631863, -0.008295579813420773, 0.046161193400621414, 0.0016049316618591547, -0.0022814429830759764, 0.03860708326101303, 0.006768280640244484, 0.009341240860521793, -0.013739355839788914, -0.0028628939762711525, 0.008726519532501698, -0.0006024435278959572, -0.011007961817085743, -0.018492361530661583, 0.007040786556899548, 0.0018346603028476238, 0.005640233866870403, 0.014322391711175442, 0.007047123741358519, -0.016717907041311264, -0.0011327997781336308, -0.0026902013923972845, 0.0032700682058930397, 0.012687357142567635, -0.006920376792550087, -0.025476112961769104, -0.0041161030530929565, -0.005858872085809708, -0.028264543041586876, -0.0051047285087406635, 0.016515111550688744, 0.031483910977840424, -0.007275267969816923, -0.011457913555204868, 0.009474324993789196, 0.01706012338399887, 0.01570393145084381, -0.029253168031573296, -0.020735781639814377, 0.01200926210731268, 0.007883653044700623, -0.004220669623464346, -0.000194180101971142, 0.00879622995853424, 0.015070198103785515, -0.007978713139891624, -0.013384465128183365, 0.006182076409459114, -0.015982775017619133, 0.022104647010564804, -0.009024374186992645, 0.02092590183019638, 0.014766005799174309, 0.011464250274002552, 0.009087747894227505, 0.007877315394580364, -0.0066035096533596516, 0.01997530087828636, 0.005862040910869837, 0.0014266939833760262, 0.0030831166077405214, 0.013105622492730618, 0.0007755321566946805, 0.01714884676039219, -0.013498537242412567, -0.012370490469038486, 0.016768604516983032, 0.031838804483413696, 0.03609749674797058, -0.016996750608086586, -0.0016191907925531268, -0.006362690590322018, -0.03964640945196152, 0.005475462879985571, 0.010710107162594795, -0.01529834233224392, 0.0006341302068904042, 0.005709944758564234, -0.016958726570010185, 0.00769987003877759, 0.007972375489771366, -0.00038598370156250894, 0.013130971230566502, -0.007484400179237127, 0.0034126583486795425, -0.010044686496257782, 0.016210919246077538, -0.0003263730905018747, -0.007490737363696098, -0.024107247591018677, 0.006197920069098473, 0.009043386206030846, 0.0006452205707319081, -0.008999024517834187, -0.0004978773649781942, -0.0025080027990043163, 4.280181019566953e-05, 0.0027789243031293154, 0.005532498937100172, -0.007243581116199493, 0.013435163535177708, -0.0026632677763700485, 0.02220604382455349, 0.004534367937594652, 0.000563231238629669, -0.006381702609360218, -0.009404614567756653, -0.023777704685926437, -0.012383164837956429, -0.00013268808834254742, -0.004968475550413132, 0.00218004547059536, 0.01533636637032032, 0.004315729718655348, 0.008187845349311829, -0.03211764618754387, -0.014575885608792305, 0.006787292659282684, 0.021128695458173752, -0.0023796716704964638, -0.024728305637836456, 0.0009490168886259198, 0.004493175074458122, 0.025729605928063393, -0.019785180687904358, 0.004540705122053623, -0.008149821311235428, -0.02220604382455349, 0.012059960514307022, 0.018986674025654793, 0.010120734572410583, -0.003539405297487974, 0.0013205434661358595, 0.012040948495268822, 0.02022879384458065, 0.004464657045900822, -0.008992687799036503, -0.001676226849667728, -0.016603834927082062, 0.007459050975739956, -0.004477331880480051, -0.008498375304043293, 0.008536399342119694, -0.036984723061323166, 0.008415989577770233, -0.007959701120853424, 0.008574423380196095, 0.020140070468187332, 0.005389908794313669, 0.012136008590459824, 0.018593760207295418, -0.009531361982226372, 0.0008012775797396898, 0.017415015026926994, 0.011185407638549805, 0.0012611309066414833, 0.011990250088274479, 0.002954785479232669, -0.012427526526153088, -0.007623821962624788, -0.009436300955712795, 0.0011185407638549805, 0.006286642514169216, -0.009569386020302773, 0.009366590529680252, 0.009791192598640919, 0.004772018175572157, 0.005465956870466471, -0.002531767822802067, 0.010564347729086876, 0.013536561280488968, 0.005136415362358093, -0.009658108465373516, -0.007661846000701189, -0.017250243574380875, -0.0026806953828781843, -0.008644133806228638, -0.013777379877865314, 0.014664608053863049, -0.009955963119864464, 0.00812447164207697, -0.0014821457443758845, 0.006464088335633278, -0.015653233975172043, 0.002368581248447299, 0.014132271520793438, -0.0006895819678902626, -0.005624390672892332, -0.0032447187695652246, 0.0025587016716599464, 0.017161520197987556, -0.021813130006194115, -0.018897952511906624, 0.012186707928776741, 0.013473187573254108, -0.022763730958104134, -0.008352615870535374, 0.024081896990537643, -0.0014655102277174592, -0.017009424045681953, -0.007085147779434919, -0.016426388174295425, -0.0020089372992515564, 0.02163568325340748, -0.004810042213648558, 0.02533669024705887, -0.009879915043711662, -0.02347351238131523, 0.0018251542933285236, 0.008194182068109512, -0.020862527191638947, -0.008175170049071312, 0.006483100354671478, -0.0004408413078635931, -0.013764705508947372, -0.001566907623782754, -0.009645434096455574, 0.009658108465373516, 0.007059798575937748, -0.006213763263076544, 0.03792265057563782, 0.010754468850791454, 0.004128777887672186, -0.025057848542928696, 0.011590997688472271, -0.023701656609773636, -0.011578322388231754, 0.004432970192283392, 0.0024905751924961805, 0.012142346240580082, 0.0013458929024636745, 0.01024114340543747, -0.004746668506413698, -0.003992524929344654, -0.004927283152937889, -0.031052973121404648, -0.016768604516983032, -0.004100259859114885, -0.0021499430295079947, -0.0017950519686564803, 0.009955963119864464, 0.00863779615610838, 0.026718230918049812, -0.006109197158366442, -0.015361716039478779, -0.02339746430516243, 0.017579784616827965, 0.014461813494563103, -0.004534367937594652, 0.0286954827606678, 0.014867402613162994, 0.003027664963155985, 0.015653233975172043, -0.0009830801282078028, 0.019709132611751556, 0.02491842582821846, -0.017250243574380875, -0.015741955488920212, 0.026135196909308434, -0.0017633652314543724, -0.01325771864503622, -0.01685732789337635, 0.008999024517834187, 0.005237812642008066, -0.00933490414172411, -0.033866751939058304, -0.00494312634691596, -0.0013886699452996254, -0.00540892081335187, -0.02763080783188343, -0.012351478450000286], "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968": [-0.028465747833251953, -0.03203282505273819, -0.004045443143695593, 0.024071864783763885, -0.03503295034170151, -0.01678416132926941, -0.011746549978852272, 0.0006452039233408868, -0.015520328655838966, 0.05858510732650757, -0.005149819888174534, -0.004077924881130457, 0.04084421321749687, -0.0229379590600729, 0.025678230449557304, 0.008758237585425377, -0.034418750554323196, 0.0222292672842741, -0.011734738945960999, -0.012030025944113731, 0.03191470727324486, 0.0061951386742293835, -0.04816735163331032, 0.0086814621463418, 0.03456048667430878, -0.03626134619116783, -0.02681213617324829, -0.008894069120287895, -0.029410667717456818, -0.02057565562427044, -0.017587343230843544, 0.010972895659506321, 0.010051597841084003, 0.020800074562430382, 0.04280492290854454, -0.00776606984436512, -0.03274151682853699, 0.00041893962770700455, -0.012030025944113731, -0.01942993886768818, 0.009579136967658997, 0.03800944983959198, -0.0178944431245327, -0.03189108520746231, -0.020823698490858078, 0.002846574643626809, -0.02000870369374752, 0.01261469628661871, 0.017209375277161598, -0.0009139158646576107, 0.02794604003429413, -0.0008585493778809905, -0.011805607937276363, 0.009703158400952816, 0.05244312062859535, 0.008025923743844032, -0.01696133241057396, 0.03460773453116417, 0.007807410322129726, -0.05990799516439438, -0.0027919465210288763, -0.05371876433491707, -0.0074766878969967365, 0.018555887043476105, 0.012945418246090412, 0.023823821917176247, -0.01932363584637642, 0.0149415647611022, -0.022559991106390953, 0.016843218356370926, 0.0034076215233653784, 0.002273716265335679, -0.03148949518799782, 0.040678851306438446, 0.06406565010547638, -0.007175494451075792, 0.019996892660856247, 0.027638942003250122, 0.010801629163324833, -0.031867463141679764, 0.025749098509550095, -0.01939450576901436, 0.017079448327422142, 0.0027476532850414515, 0.047576773911714554, 0.02150876633822918, -0.015791993588209152, -0.04155290499329567, -0.0076125203631818295, -0.015626631677150726, 0.007695200853049755, 0.005828981753438711, 0.007724729832261801, -0.006401840131729841, -0.02004413865506649, -0.027048366144299507, 0.0009434446110390127, 0.003812165930867195, 8.637169230496511e-05, -0.024709686636924744, -0.012248539365828037, -0.020492976531386375, 0.006738468538969755, 0.024780554696917534, -0.00407201936468482, 0.005445107817649841, 0.013252518139779568, 0.0291744377464056, -0.0011907481821253896, 0.0368046760559082, -0.007134153973311186, -0.023823821917176247, 0.02390650287270546, 0.012077271938323975, -0.0427340567111969, -0.03070993535220623, -0.0427340567111969, -0.003844647668302059, -0.00623647915199399, -0.01054177526384592, 0.016760537400841713, -0.037914957851171494, 0.0149415647611022, 0.010317357257008553, 0.005510070826858282, 0.004745275713503361, 0.00030986766796559095, 0.03607236221432686, 0.041860003024339676, 0.032765138894319534, 0.011799701489508152, -0.006153798662126064, 0.024544324725866318, -0.005976625718176365, -0.025654606521129608, 0.0055455053225159645, 0.021414274349808693, 0.08589332550764084, -0.00131772190798074, 0.0016595176421105862, -0.0036113702226430178, 0.015402213670313358, -0.004007055889815092, 0.012366654351353645, 0.014669899828732014, -0.01358324009925127, -0.011421733535826206, 0.04115131124854088, -0.029009077697992325, -0.018520452082157135, -0.023245058953762054, 0.031867463141679764, -0.033521074801683426, -0.011929628439247608, 0.03841103985905647, 0.007512122392654419, -0.001851454726420343, 0.03737162798643112, -0.0036822392139583826, 0.06165609881281853, 0.012839115224778652, -0.033875420689582825, 0.020965436473488808, 0.013535994105041027, 0.03574163839221001, 0.02591446042060852, 0.0009619001066312194, 0.020741017535328865, -0.012343031354248524, 0.018366903066635132, 0.017091259360313416, -0.027142858132719994, 0.02383563481271267, -0.011929628439247608, 0.030450081452727318, -0.0076774838380515575, 0.03274151682853699, 0.00828577671200037, 0.014350988902151585, 0.018697625026106834, -0.011947345919907093, 0.0019223238341510296, 0.02730821818113327, -0.0006706725107505918, -0.014398234896361828, 0.020020514726638794, 0.017740892246365547, 0.01472895685583353, -0.02068196050822735, -0.00914211105555296, -0.020894566550850868, -0.029765013605356216, 0.017481040209531784, 0.005208877380937338, -0.039993785321712494, -0.013158026151359081, 0.02681213617324829, -0.0064490861259400845, -0.020800074562430382, 0.009667723439633846, -0.007092813961207867, -0.025040408596396446, -0.010990613140165806, 0.024615194648504257, -0.017386548221111298, -0.0033780927769839764, -0.013973020017147064, -0.03841103985905647, 0.034843962639570236, 0.01166977547109127, 0.07134153693914413, -0.03765510395169258, 0.018236976116895676, -0.013807659037411213, 0.003868270665407181, 0.0047511812299489975, 0.005840793251991272, 0.034371502697467804, 0.01595735363662243, -0.02115442045032978, -0.0006367143942043185, -0.03926147148013115, -0.03576526418328285, 0.009189357049763203, -0.0182487890124321, 0.040537115186452866, -0.02912719175219536, 0.004612396005541086, -0.010222864337265491, -0.042426954954862595, -0.0017746798694133759, -0.011350864544510841, 0.04649011790752411, -0.008090886287391186, 0.005315180867910385, 0.050695016980171204, 0.0008674080017954111, 0.008079075254499912, -0.013063534162938595, -0.00041045009857043624, 0.016630610451102257, 0.019914211705327034, -0.008291682228446007, -0.03878901153802872, -0.031040657311677933, 0.006354594137519598, -0.013890339992940426, 0.04469476640224457, 0.015543951652944088, 0.005309275351464748, -0.016488872468471527, -0.00714005995541811, 0.001655088271945715, 0.0055514113046228886, -0.027260972186923027, 0.025323884561657906, 0.03009573556482792, -0.01782357320189476, 0.014032077975571156, 0.03250528499484062, 0.009455116465687752, -0.014669899828732014, 0.0165006835013628, 0.006573107093572617, 0.02133159339427948, -0.006212856154888868, 0.02752082608640194, -0.01524866372346878, 0.008616498671472073, -0.006171515677124262, 0.05215964466333389, -0.015839239582419395, -0.029788637533783913, 0.07096356898546219, -0.030828049406409264, -0.008067263290286064, -0.0010527011472731829, -0.018780305981636047, 0.0010157901560887694, -0.000402698788093403, -0.03933233767747879, -0.0316312313079834, 0.05329354852437973, 0.014823448844254017, 0.017386548221111298, 0.04230884090065956, -0.01950080879032612, -0.0357888862490654, -0.038600023835897446, 0.007122342474758625, 0.007039661984890699, -0.024827800691127777, -0.008905881084501743, 0.044434912502765656, 0.0061419871635735035, 0.00952007994055748, -0.008468855172395706, 0.005267934873700142, -0.01628807745873928, -0.01886298693716526, -0.00445589330047369, 0.01014608982950449, 0.019418127834796906, -0.021603258326649666, 0.033355712890625, -0.02655228227376938, 0.046301133930683136, 0.03885987773537636, 0.004234427586197853, 0.055750343948602676, 0.014599030837416649, -0.017386548221111298, -0.04632475599646568, -0.019737038761377335, 0.008870446123182774, 0.051734428852796555, -0.03177297115325928, -0.03569439426064491, -0.023363173007965088, -0.02186311036348343, -0.047009821981191635, 0.02198122628033161, -0.015165982767939568, 0.028465747833251953, 0.02411911077797413, -0.03633221611380577, 0.02931617572903633, -0.006915641017258167, 0.017835384234786034, -0.01872124895453453, -0.03753698989748955, -0.009455116465687752, 0.002081779297441244, 0.009768121875822544, -0.0059411912225186825, -0.01950080879032612, -0.04419868439435959, -0.02752082608640194, -0.02323324605822563, 0.0038210246711969376, -0.03139500319957733, -0.04169464111328125, 0.006779808551073074, 0.002546857576817274, -0.007423535920679569, -0.020020514726638794, -0.01939450576901436, 0.014965187758207321, 0.014976998791098595, 0.014079323969781399, 0.0005809788126498461, 0.015662066638469696, 0.04452940449118614, -0.010098843835294247, 0.007777881342917681, -0.031087903305888176, -0.027544450014829636, 0.03486758843064308, 0.014681710861623287, 0.004996269941329956, -0.017870819196105003, -0.0500335693359375, 0.009673629887402058, -0.03474947065114975, -0.006206950172781944, 0.008551536127924919, 0.00905352458357811, -0.01850864104926586, -0.013252518139779568, 0.01942993886768818, -0.005675432272255421, -0.02530026249587536, -0.028300385922193527, 0.004007055889815092, 0.016559742391109467, -0.07776700705289841, 0.021343404427170753, -0.010051597841084003, -0.0340644046664238, 0.01602822355926037, -0.017740892246365547, 0.0030326060950756073, 0.01761096715927124, 0.010104749351739883, 0.012106801383197308, 0.009567325934767723, 0.024922292679548264, -0.047624021768569946, -0.043182894587516785, -0.02147333137691021, -0.02709561213850975, -0.015650255605578423, -0.0246624406427145, 0.006224667653441429, -0.004668500740081072, -0.006974698510020971, 0.013890339992940426, 0.00293959048576653, 0.007423535920679569, -0.011764267459511757, -0.0243080947548151, -0.01521322876214981, 0.008835012093186378, -0.005557316821068525, 0.006496332120150328, -0.038529157638549805, 0.006726657040417194, 0.017020391300320625, 0.00937834195792675, 0.009118488058447838, 0.043112024664878845, -0.0018765542190521955, -0.00031226687133312225, 0.03184384107589722, 0.0278043020516634, 0.03456048667430878, -0.01247295830398798, 0.05551411211490631, -0.010453189723193645, 0.008728708140552044, 0.052632104605436325, 0.01674872636795044, 0.00457105552777648, 0.03337933495640755, -0.03885987773537636, 0.009106677025556564, 0.008268059231340885, 0.018307846039533615, 0.004311202559620142, 0.005019893404096365, 0.032481662929058075, 0.0011730309342965484, -0.009508267976343632, -0.013831282034516335, -0.028820091858506203, -0.015473082661628723, -0.005312228109687567, -0.0027328887954354286, 0.003782637184485793, -0.025064030662178993, 0.0016668997704982758, -0.0007182876579463482, -0.002239758148789406, 0.008209002204239368, -0.011368582025170326, -0.012673754245042801, -0.003915516659617424, 0.01942993886768818, 0.023103320971131325, 0.00991576537489891, 0.008008206263184547, 0.040749721229076385, -0.045167226344347, 0.01324070617556572, -0.0092897554859519, -0.016063658520579338, 0.032623399049043655, -0.0038918936625123024, 0.010281922295689583, -0.04015914723277092, 0.02136702835559845, 0.015354967676103115, 0.054380208253860474, 0.0028879151213914156, -0.02619793638586998, -0.001340606715530157, 0.022878902032971382, -0.003658616216853261, 0.007287703920155764, 0.026103444397449493, -0.00819719024002552, -0.008988562040030956, -0.017599154263734818, 0.02118985541164875, 0.02418997883796692, -0.011846947483718395, -0.006886112503707409, -0.006130175199359655, 0.019370881840586662, 0.024898670613765717, 0.005725631024688482, -0.019807908684015274, 0.017091259360313416, 0.013264329172670841, -0.021059928461909294, 0.023469477891921997, -0.021969415247440338, -0.015579385682940483, -0.018768494948744774, 0.0029602604918181896, -0.013193460181355476, 0.006295536644756794, -0.008392080664634705, 0.06193957477807999, 0.036166854202747345, 0.012201293371617794, 0.012425712309777737, -0.027402710169553757, 0.01997326873242855, 0.025465622544288635, 0.00623647915199399, -0.01831965707242489, 0.0163235105574131, -0.017563721165060997, -0.02473330870270729, 0.03671018406748772, -0.01592192053794861, 0.012402089312672615, 0.003632040461525321, -0.02351672388613224, -0.026292428374290466, 0.015768369659781456, -0.048805173486471176, -0.010636268183588982, 0.0025217582006007433, 0.01993783377110958, -0.007565274368971586, -0.01828422211110592, 0.027497202157974243, 0.014339176937937737, -0.008138132281601429, -0.01438642293214798, 0.001897224341519177, 0.02083550952374935, 0.004086783621460199, 0.014221061952412128, -0.020457541570067406, -0.014350988902151585, 0.008870446123182774, -0.017670024186372757, -0.010240581817924976, -0.009313378483057022, 0.00614789268001914, 0.019193708896636963, 0.022489121183753014, 0.005766971502453089, -0.021804053336381912, 0.015791993588209152, 0.006437274627387524, 0.0006344997091218829, 0.02669402025640011, 0.014480914920568466, 0.025607360526919365, -0.025961706414818764, -0.00862831063568592, 0.011368582025170326, 0.011982779949903488, 0.012283974327147007, -0.0008607640629634261, 0.011740644462406635, -0.020162252709269524, 0.03467860445380211, -0.042001742869615555, -0.0076774838380515575, 0.015874674543738365, -0.030875295400619507, 0.012413900345563889, 0.013571429066359997, -0.011043764650821686, -0.054521944373846054, -0.02186311036348343, -0.006301442161202431, -0.003732438199222088, -0.0021054022945463657, -0.026599528267979622, 0.007069190964102745, -0.03536367043852806, 0.0054598720744252205, 0.02318600006401539, 0.03222180902957916, 0.007571179885417223, 0.0059411912225186825, 0.040891457349061966, 0.006519955582916737, -0.016524307429790497, 0.005288605112582445, 0.013051722198724747, -0.029930375516414642, -0.01556757465004921, 0.011799701489508152, 0.03245803713798523, 0.005456919316202402, 0.050836753100156784, -0.02591446042060852, 0.04126942902803421, 0.014539972878992558, -0.0031507210806012154, -0.00514391390606761, -0.00914211105555296, 0.03385179862380028, 0.022607237100601196, 0.01243752334266901, -0.01361867506057024, -0.01843777298927307, -0.01005750335752964, 0.02856023982167244, -0.0027771820314228535, -0.022701729089021683, 0.008403891697525978, 0.03704090416431427, 0.052915580570697784, -0.003076899331063032, -0.003688144963234663, -0.024756932631134987, -0.05008081719279289, 0.00952007994055748, -0.01886298693716526, 0.0350801944732666, 0.008852729573845863, 0.021426085382699966, 0.026174314320087433, -0.0016639468958601356, 0.010653984732925892, -0.024709686636924744, 0.010854780673980713, -0.002019768813624978, -0.0014734863070771098, 0.01972522772848606, 0.023103320971131325, 0.00032131007174029946, 0.03354469686746597, -0.01607546955347061, 0.032623399049043655, -0.009218886494636536, -0.007199117448180914, 0.021248912438750267, -0.04764764383435249, 0.0006621829816140234, -0.016205396503210068, 0.016512496396899223, -0.013831282034516335, 0.008799577131867409, -0.02912719175219536, 0.0005370547296479344, 0.01438642293214798, -0.03517468646168709, 0.007269986439496279, -0.0016137480270117521, -0.015201417729258537, 0.001748103997670114, 0.02129615843296051, 0.003909611143171787, 0.0025675278156995773, 0.012413900345563889, -0.02057565562427044, 0.024851424619555473, 0.013524183072149754, 0.0016757585108280182, 0.007134153973311186, 0.016240831464529037, -0.03191470727324486, 0.020552033558487892, -0.0034519147593528032, 0.028040532022714615, 0.008675556629896164, -0.001971046207472682, -0.02071739360690117, 0.027851548045873642, 0.006667599081993103, -0.029198061674833298, 0.005013987421989441, -0.055703096091747284, 0.03952132537961006, -1.820172656152863e-05, 0.029835883527994156, 0.022630859166383743, -0.02766256406903267, 0.006177421659231186, 0.014894318766891956, 0.04483650624752045, 0.007978676818311214, 0.01032326277345419, -0.012142235413193703, 0.01313440315425396, 0.010429566726088524, -0.02150876633822918, 0.014658087864518166, 0.028654731810092926, -0.007234551943838596, -0.019630735740065575, -0.030828049406409264, -0.03541091829538345, -0.018815740942955017, 0.010961084626615047, -0.02508765459060669, -0.012850926257669926, -0.007565274368971586, 0.00837436318397522, -0.03250528499484062, -0.033733680844306946, -0.0030946165788918734, -0.0013221512781456113, 0.006124269682914019, 0.01023467630147934, -0.019028348848223686, 0.011504413560032845, -0.0008703608764335513, -0.0004229998157825321, 0.002201370894908905, 0.0004115574120078236, -0.024709686636924744, 0.010447283275425434, -0.0018189731054008007, -0.0017451511230319738, 0.021307969465851784, 0.02122529037296772, -0.007063284981995821, -0.03671018406748772, -0.004204898606985807, -0.029906751587986946, -0.0008674080017954111, -0.006283725146204233, -0.01129180658608675, -0.0012387324823066592, 0.005282699130475521, -0.017977124080061913, -0.04899415746331215, 0.026245182380080223, -0.0037412969395518303, 0.022004850208759308, -0.03772597387433052, 0.012638319283723831, -0.01764640025794506, -0.04327738657593727, -0.010016162879765034, 0.03536367043852806, -0.015059679746627808, -0.0016358946450054646, -0.002697454299777746, 0.007701106835156679, 0.019418127834796906, -0.012089083902537823, 0.015697501599788666, -0.006691222079098225, 0.02487504668533802, -0.00680933753028512, 0.01821335405111313, -0.00043185846880078316, 0.019370881840586662, 0.006496332120150328, -0.011132351122796535, 0.001134643447585404, 0.021343404427170753, -0.03597787022590637, 0.009679535403847694, -0.010222864337265491, 0.004949023947119713, -0.010264204815030098, -0.011421733535826206, 0.00785465631633997, 0.037489742040634155, -0.028442123904824257, -0.002650208305567503, -0.0084275146946311, -0.0002517328830435872, -0.003192061558365822, 0.03552903234958649, -0.023363173007965088, 0.005191159900277853, 0.0347258485853672, 0.005338803865015507, 0.009012185037136078, -0.02408367581665516, -0.003670427715405822, -0.0178944431245327, -0.002576386323198676, 0.02598532848060131, -0.0010054550366476178, 0.019996892660856247, 0.014894318766891956, 0.0281350240111351, 0.02283165603876114, 0.012732811272144318, 0.008291682228446007, 0.011793795973062515, -0.04072609916329384, -0.011404016055166721, 0.007086907979100943, 0.03267064690589905, -0.007364478427916765, -0.0175400972366333, -0.04703344777226448, 0.04398607462644577, -0.01778813824057579, -0.010760288685560226, -0.015354967676103115, 0.011079199612140656, 0.018851175904273987, -0.018603133037686348, -0.0013649680186063051, 0.011031953617930412, -0.02230013720691204, 0.0005281961057335138, -0.011681586503982544, 0.003159579820930958, 0.011362675577402115, -0.002800805028527975, 0.0010682037100195885, -0.015059679746627808, 0.005140961147844791, -0.03070993535220623, -0.002694501541554928, 0.03309585899114609, 0.014008454978466034, 0.006815243046730757, -0.046584609895944595, 0.014433668926358223, -0.0288437157869339, -0.046301133930683136, -0.0009759262902662158, 0.019855154678225517, 0.032836008816957474, -0.009354718960821629, 0.008362551219761372, -0.026174314320087433, -0.01692589931190014, 0.00914801750332117, 0.0076715778559446335, 0.012496581301093102, -0.006407746113836765, -0.02087094448506832, -0.005075997672975063, 0.012661942280828953, 0.00837436318397522, 0.0054332963190972805, -0.002753559034317732, 0.029292553663253784, -0.011191409081220627, 0.007488499395549297, -0.009248415008187294, -0.016370758414268494, -0.016370758414268494, -0.012413900345563889, 0.027709810063242912, -0.026788512244820595, 0.015343155711889267, -7.768607247271575e-06, 0.010211053304374218, -0.04261593893170357, -0.018236976116895676, -0.002819998888298869, -0.029977621510624886, 0.018709437921643257, -0.007630237843841314, 0.02959965169429779, 0.02674126625061035, 0.011947345919907093, -0.0018706484697759151, -0.0012527586659416556, 0.026930250227451324, -0.0028539570048451424, -0.03663931414484978, 0.04129305109381676, 0.019051970914006233, -0.004432270303368568, -0.00307394634000957, -0.02039848268032074, 0.01785900816321373, -0.014516349881887436, 0.000719395000487566, 0.0316312313079834, -0.0002733258006628603, -0.0060327304527163506, 0.019099216908216476, -0.005710866767913103, 0.010281922295689583, 0.007701106835156679, 0.009933482855558395, 0.0008378792554140091, 0.06406565010547638, 0.013854905031621456, -0.016949521377682686, 0.06907372921705246, -0.016169961541891098, -0.022843467071652412, -0.00119665393140167, 0.026930250227451324, 0.013973020017147064, -0.035056572407484055, 0.004216710105538368, -0.023493099957704544, -0.005660667549818754, 0.0034991607535630465, -0.008149944245815277, -0.012850926257669926, 0.024615194648504257, 0.02247731015086174, 0.0034696320071816444, 0.00905352458357811, 0.0052649821154773235, -0.014516349881887436, 0.005380144342780113, -0.013772225007414818, -0.00728179793804884, -0.03222180902957916, 0.01243752334266901, 0.027898794040083885, 0.00880548357963562, 0.003906657919287682, 0.02662315033376217, 0.025678230449557304, -0.007175494451075792, 0.005834887735545635, 0.001762868370860815, 0.022595424205064774, -0.008722802624106407, 0.010157901793718338, -0.014575407840311527, 0.025536492466926575, -0.033875420689582825, 0.005430343095213175, 0.03120601736009121, 0.011829230934381485, 0.0024730355944484472, 0.041174937039613724, 0.007606614381074905, 0.005034657660871744, -0.028182270005345345, 0.015414024703204632, -0.024709686636924744, 0.025253014639019966, -0.018638567999005318, 0.002381496364250779, 0.0017820621142163873, -0.039025239646434784, -0.0006042327149771154, -0.037914957851171494, -0.01868581399321556, -0.0027166481595486403, 0.01843777298927307, -0.043678976595401764, 0.0045238095335662365, -0.00939605850726366, -0.02341041900217533, -0.00937834195792675, -0.01828422211110592, -0.026032576337456703, -0.008675556629896164, -0.02078826352953911, -0.014740768820047379, -0.005840793251991272, -0.021178042516112328, 0.007240457460284233, 0.0023416324984282255, -0.04814372956752777, -0.004190134350210428, 0.005439201835542917, 0.017162129282951355, -0.0039834328927099705, -0.03767872601747513, -0.028442123904824257, 0.021000871434807777, 0.018744871020317078, 0.011031953617930412, 0.018626756966114044, 0.005938238464295864, 0.007795598823577166, -0.01518960576504469, -0.019677981734275818, 0.013784036040306091, -0.0028967736288905144, -0.02834763191640377, -0.010051597841084003, 0.008610593155026436, -0.013193460181355476, 0.03687554597854614, -0.03363918885588646, 0.007659766357392073, -0.03316672891378403, -0.016866840422153473, 0.012945418246090412, -0.01209498941898346, 0.008126321248710155, 0.007884184829890728, -0.009525985457003117, -0.015732936561107635, -0.027355464175343513, -0.017197564244270325, -0.03529280051589012, 0.0149415647611022, 0.007334949914366007, -0.023812010884284973, -0.018331468105316162, -0.04412781447172165, 0.011392205022275448, 0.009059431031346321, -0.010813440196216106, -0.0021895593963563442, -0.006691222079098225, 0.03411164879798889, -0.009277943521738052, -0.017339302226901054, -0.0017185751348733902, 0.013181649148464203, 0.0009316331124864519, -0.018236976116895676, -0.0030016007367521524, -0.0017348160035908222, 0.002381496364250779, -0.0395921915769577, -0.007346761412918568, 0.01313440315425396, -0.0032629305496811867, 0.021319782361388206, 0.008758237585425377, -0.010618550702929497, 0.02193398028612137, 0.01699676737189293, 0.008687367662787437, 0.0112032201141119, -0.015414024703204632, -0.016701480373740196, 0.011793795973062515, 0.006443180609494448, -0.0069038295187056065, 0.022430064156651497, 0.04615939408540726, -0.019618922844529152, 0.007937337271869183, 0.035552654415369034, -0.020989058539271355, -0.016914086416363716, 0.011386298574507236, -0.01965435780584812, -0.010429566726088524, 0.010789817199110985, 0.021591447293758392, -0.021000871434807777, -0.00057138194097206, 0.00577878300100565, -0.030119359493255615, -0.026717642322182655, -0.0340644046664238, -0.028890961781144142, -0.0023829727433621883, -0.0084275146946311, 0.036521200090646744, -0.04842720553278923, -0.03486758843064308, -0.015118736773729324, 0.00041081919334828854, 0.004804333206266165, -0.008362551219761372, -0.003885987913236022, 0.02737908810377121, -0.015543951652944088, 0.0010416278382763267, -0.005294510629028082, 0.0168550293892622, 0.014693522825837135, -0.011911910958588123, -0.006295536644756794, 0.0011545753804966807, -0.014811637811362743, 0.0013228894677013159, -0.010648079216480255, -0.009726781398057938, 0.007582991383969784, -0.014445480890572071, 0.027757056057453156, 0.00328360078856349, -0.030308343470096588, 0.02752082608640194, 0.02237100712954998, -0.0092897554859519, -0.010293734259903431, -0.014374611899256706, -0.002721077296882868, 0.00614789268001914, 0.030946165323257446, 0.0008024447015486658, -0.010494529269635677, 0.02230013720691204, -0.009549608454108238, -0.021922169253230095, 0.03203282505273819, 0.008474760688841343, 0.013004476204514503, -0.0002057787060039118, 0.013087157160043716, -0.01950080879032612, -0.005811264738440514, -0.01442185789346695, -0.0030326060950756073, -0.03328484296798706, 0.03252890706062317, 0.01528409868478775, -0.004290532320737839, -0.0003096831205766648, 0.0020537269301712513, -0.01553213968873024, -0.004272814840078354, 0.03323759883642197, 0.011935533955693245, 0.01660698838531971, 0.016099093481898308, 0.010364603251218796, 0.040466245263814926, 0.010340980254113674, -0.006230573169887066, -0.012909984216094017, 0.003475537756457925, -0.015378590673208237, -0.0042639560997486115, -0.005477589089423418, 0.03966306149959564, -0.02101268246769905, -0.003995244391262531, -0.005067139398306608, -0.022855278104543686, 0.021426085382699966, 0.010364603251218796, 0.02179224230349064, 0.01327614113688469, 0.01642981544137001, -0.02072920650243759, 0.0033662812784314156, -0.017044013366103172, -0.022252891212701797, -0.0005329945124685764, 0.009153923019766808, -0.0319855771958828, -0.0008319734479300678, 0.008764143101871014, -0.02959965169429779, -0.005371285602450371, 0.000648156797979027, 0.003360375529155135, 0.01309896819293499, -0.0012660465436056256, 0.008586970157921314, -0.021355215460062027, 0.032481662929058075, -0.016406191512942314, -0.02716648019850254, 0.0014232873218134046, -0.006472709123045206, 0.01810704916715622, -0.009768121875822544, 0.02938704565167427, -0.02126072347164154, -0.0023239152505993843, 0.011746549978852272, 0.007500310894101858, -0.016831407323479652, -0.011835136450827122, -0.024851424619555473, -0.024544324725866318, 0.02877284586429596, 0.0016211301553994417, -0.0013775177067145705, -0.0013693972723558545, 0.00848066620528698, 0.02591446042060852, -0.016240831464529037, -0.0005160155124031007, -0.010305545292794704, -0.015508516691625118, -0.004196040332317352, -0.0009153923019766808, -0.009218886494636536, 0.01817791908979416, -0.0022368053905665874, -0.007399912923574448, 0.007565274368971586, -0.012378466315567493, 0.013028099201619625, 0.016878653317689896, 0.012343031354248524, -0.02108355052769184, -0.002093590795993805, 0.019229143857955933, -0.0061951386742293835, -0.028796469792723656, -0.0017244810005649924, 0.024615194648504257, -0.004024773370474577, -0.02179224230349064, -0.008120415732264519, -0.0016639468958601356, 0.0028450982645154, -0.009023996070027351, 0.00628963066264987, -0.0022087530232965946, -0.01674872636795044, 0.0031536740716546774, 0.01111463364213705, -0.005468730814754963, 0.035481784492731094, 0.026150690391659737, 0.04956110939383507, -0.009903954342007637, -0.004083830863237381, -0.011563471518456936, 0.0018603133503347635, 0.0052649821154773235, 6.187202961882576e-05, 0.01611090451478958, 0.004532668273895979, 0.007913714274764061, -0.004576961509883404, -0.0052325003780424595, -0.007388101425021887, -0.014610841870307922, -0.023103320971131325, -0.010016162879765034, -0.0040100086480379105, -0.012685565277934074, -0.01295723021030426, -0.022146588191390038, -0.0041015478782355785, 0.007252269424498081, -0.011699303984642029, -0.04488375037908554, -0.030757181346416473, -0.002427265979349613, -0.004612396005541086, -0.054380208253860474, 0.02530026249587536, 0.0004960835794918239, 0.02261904813349247, 0.012744623236358166, 0.016158150508999825, 0.005820123013108969, -0.010187430307269096, 0.0069097355008125305, 0.028111401945352554, 0.013547806069254875, -0.013004476204514503, -0.01960711181163788, 0.003313129534944892, 0.008545629680156708, 0.027497202157974243, 0.009337001480162144, 0.02995399758219719, 0.019536243751645088, -0.006088835187256336, -0.01158118899911642, -0.018485018983483315, 0.006023871712386608, 0.0004015914455521852, -0.012035932391881943, -0.0033692342694848776, -0.018567698076367378, -0.0006271175225265324, 0.04204898700118065, -0.03692279011011124, 0.0031389095820486546, -0.014410045929253101, 0.015697501599788666, 0.006248290650546551, 0.0023874021135270596, -0.0004012223507743329, -0.010695325210690498, -0.01983153074979782, -0.007394007407128811, -0.037277135998010635, 0.015319532714784145, 0.007246363442391157, 0.011628434993326664, -0.003764919936656952, 0.018260600045323372, 0.00015963998157531023, 0.014339176937937737, -0.003989338409155607, -0.00218365341424942, 0.008273964747786522, -0.02619793638586998, 0.006537672597914934, -0.01893385499715805, -0.006744374055415392, -0.021378839388489723, -0.006171515677124262, 0.017740892246365547, -0.009466927498579025, 0.003475537756457925, -0.0023534439969807863, -0.004638971760869026, 0.006992415990680456, 0.011510320007801056, 0.002301768632605672, 0.03236354514956474, 0.029977621510624886, -0.019819719716906548, 0.003794448683038354, -0.006165610160678625, 0.02118985541164875, 0.0020079573150724173, 0.02015044167637825, -0.018922043964266777, -0.007494405377656221, -0.006177421659231186, -0.021248912438750267, 0.04351361468434334, -0.020386671647429466, 0.016725102439522743, -0.012065460905432701, -0.028016909956932068, -0.019701603800058365, 0.021626880392432213, -0.03621409833431244, 0.03611960634589195, 0.0021378840319812298, -0.00925432052463293, -0.006821149028837681, 0.027473580092191696, -0.000911701179575175, 0.005808311514556408, 0.019784284755587578, -0.014539972878992558, 0.005722678266465664, -0.0024346481077373028, -0.023138754069805145, 0.020800074562430382, -0.023788386955857277, -0.008510195650160313, 0.010742571204900742, -0.035552654415369034, -0.005049421917647123, -0.004139935597777367, 0.02974138967692852, 0.014516349881887436, 0.029221683740615845, 0.015331344678997993, -0.020197687670588493, 0.030261097475886345, 0.003280647797510028, 0.013063534162938595, 0.022382818162441254, 0.014551784843206406, 0.020552033558487892, 0.007783787325024605, -0.0288437157869339, -0.0025527633260935545, 0.011923722922801971, 0.02394193783402443, -0.012850926257669926, 0.003493255004286766, 0.02136702835559845, -0.026835758239030838, -0.008894069120287895, 0.0002362302620895207, -0.00012346722360234708, 0.015201417729258537, 0.014020266011357307, 0.009401964955031872, -0.0065908245742321014, -0.010022069327533245, 0.00509076239541173, -0.02083550952374935, -0.012591073289513588, 0.014480914920568466, 0.007181399967521429, -0.00012079117732355371, 0.00014764392108190805, 0.011002425104379654, -0.02337498404085636, -0.005167536903172731, 0.004774804227054119, 0.016595175489783287, 0.020339425653219223, -0.020422106608748436, -0.045001864433288574, 0.005823076236993074, 0.02870197780430317, 0.0010076697217300534, -0.0014705334324389696, 0.0024006899911910295, 0.0159927885979414, 0.004476563539355993, -0.020492976531386375, 0.01911102794110775, -0.010027974843978882, -0.0024641770869493484, 0.015095113776624203, -0.012661942280828953, 0.00043075112625956535, 0.004547432530671358, 0.024993162602186203, -0.0036822392139583826, 0.012343031354248524, 0.00785465631633997, 0.025182146579027176, 0.001687570009380579, 0.04058435931801796, -0.02633967436850071, -0.0045562912710011005, 0.023953748866915703, 0.007346761412918568, 0.00577878300100565, -0.03259977698326111, 0.005950049962848425, 0.015685690566897392, 0.012980853207409382, -0.013347010128200054, -0.0034076215233653784, -0.04417505860328674, -0.018733059987425804, 0.003330846782773733, 0.020764639601111412, 0.004827956203371286, -0.005309275351464748, -0.001882459968328476, 0.0003794448566623032, -0.027686187997460365, -0.004709840752184391, 0.00509076239541173, -0.0040159146301448345, 0.004904730711132288, -0.02605619840323925, 0.026717642322182655, -0.008468855172395706, 0.02140246145427227, -0.029765013605356216, 0.011498508043587208, 0.016193585470318794, -0.013866716995835304, 0.0017407217528671026, -0.0034843964967876673, -0.021166231483221054, -0.020162252709269524, -0.024993162602186203, -0.019630735740065575, -0.01032326277345419, -0.0051734428852796555, -0.02078826352953911, 0.016311699524521828, -0.011947345919907093, -0.015437647700309753, -0.009325189515948296, 0.03340296074748039, -0.036662936210632324, -0.0009109629900194705, -0.0074176304042339325, 0.006661693565547466, -0.03049732744693756, 0.0028539570048451424, -0.015000621788203716, 0.01141582801938057, 0.003416480263695121, -0.011244560591876507, -0.015449459664523602, 0.024922292679548264, -0.01462265383452177, 0.016512496396899223, 0.0006053400575183332, -0.034985702484846115, 0.016087280586361885, 0.0029174438677728176, 0.025796344503760338, -0.029292553663253784, -0.028583861887454987, -0.012732811272144318, -0.01213042438030243, 0.04037175327539444, -0.0034371502697467804, -0.03663931414484978, -0.034702226519584656, -0.002363779116421938, 0.00041045009857043624, 0.0006260101799853146, -0.04004102945327759, 0.00409859512001276, -0.026363298296928406, -0.008793671615421772, 0.0013671827036887407, -0.03826930373907089, -0.001596030779182911, 0.02333955094218254, -0.003115286584943533, 0.007394007407128811, 0.021993037313222885, 0.006856583524495363, -0.012272162362933159, 0.0024021666031330824, -0.008651933632791042, -0.016701480373740196, -0.02522939257323742, -0.013110780157148838, -0.009006278589367867, 0.010459095239639282, 0.015343155711889267, -0.022394629195332527, 0.015295909717679024, 0.006038635969161987, 0.005501212552189827, 0.007258174940943718, -0.0008932456839829683, -0.007724729832261801, -0.0008622405002824962, 0.020528409630060196, 0.011587094515562057, -0.005749254021793604, -0.0020891614258289337, -0.011055576615035534, -0.023563969880342484, 0.03864727169275284, 0.02254817821085453, 0.003897799411788583, -0.002173318527638912, 0.006661693565547466, -0.03746611997485161, -0.01347693707793951, 0.02304426208138466, -0.03337933495640755, -0.03085167333483696, 0.007966865785419941, 0.030402835458517075, -0.008179472759366035, -0.015603008680045605, -0.008203095756471157, 0.021036304533481598, -0.02447345480322838, 0.0184023380279541, 0.024686062708497047, 0.015036056749522686, -0.01324070617556572, 0.01257926132529974, -0.015165982767939568, -0.0014690569369122386, -0.0014875124907121062, 0.010459095239639282, 0.004520856775343418, 0.03174934908747673, 0.0015886485343798995, -0.02078826352953911, 0.0364975780248642, -0.03411164879798889, 0.017232997342944145, -0.014410045929253101, 0.014929752796888351, 0.01972522772848606, 0.02007957361638546, -0.017268432304263115, -0.021969415247440338, -0.004219663329422474, 0.007494405377656221, -0.0019636640790849924, -0.0032570248004049063, -0.01233122032135725, 0.01660698838531971, 0.0187566839158535, -0.01553213968873024, -0.0002048559399554506, -0.0014365753158926964, 0.012248539365828037, 0.005008081439882517, -0.01625264249742031, 0.015839239582419395, -0.019996892660856247, -0.011575283482670784, -0.008084980770945549, -0.013665921054780483, 0.011587094515562057, 0.004653736483305693, -0.011285901069641113, 0.009709063917398453, 0.0004754133988171816, -0.0015650255372747779, -0.012366654351353645, 0.00418718159198761, -0.014705333858728409, -0.006756185553967953, -0.005241359118372202, -0.015331344678997993, 0.007565274368971586, -0.03848190978169441, -0.024024618789553642, -0.0158156156539917, 0.018780305981636047, 0.020339425653219223, 0.013228895142674446, 0.0021511719096451998, 0.011823324486613274, 0.017870819196105003, -0.024142732843756676, 0.010801629163324833, 0.0061360811814665794, -0.00018446262401994318, -0.007394007407128811, -0.0012025596806779504, -0.010305545292794704, 0.03434788063168526, 0.018957478925585747, 0.008203095756471157, 0.004827956203371286, 0.012992664240300655, -0.015378590673208237, 0.016418004408478737, 0.027402710169553757, 0.013169837184250355, -0.014799825847148895, 0.00469802925363183, -0.010216958820819855, -0.0319855771958828, -0.0185795109719038, -0.017740892246365547, 0.01324070617556572, -0.004553338512778282, 0.018225165084004402, -0.011728832498192787, 0.020634714514017105, 0.039639439433813095, 0.00046434011892415583, -0.017492851242423058, 0.005468730814754963, 0.003968668635934591, 0.004659641999751329, 0.008256248198449612, 0.03774959594011307, 0.011303618550300598, 0.008191284723579884, -0.006803431548178196, 0.010559492744505405, -0.010134278796613216, -0.005846699234098196, 0.01614633947610855, 0.0071577769704163074, -0.013311575166881084, 0.013122591190040112, 0.003779684193432331, 0.02598532848060131, -0.008315305225551128, -0.01061264518648386, 0.013689544051885605, 0.002173318527638912, -0.010429566726088524, 0.009939388372004032, 0.001429193071089685, -0.011770172975957394, 0.003011935856193304, 0.0006651358562521636, -0.025890836492180824, -0.015721123665571213, -0.004538573790341616, 0.0037088152021169662, 0.004128124099224806, -0.027544450014829636, 0.006874300539493561, -0.010211053304374218, 0.001144240377470851, -0.004825002979487181, -0.00920116901397705, 0.011805607937276363, -0.0468917079269886, -0.015354967676103115, 0.030072113499045372, -0.02967052161693573, 0.002693024929612875, 0.01510692574083805, -0.013299764133989811, 0.009886236861348152, 0.0008519053808413446, 0.011935533955693245, 0.0010792770190164447, -0.00014072310295887291, -0.020882755517959595, 0.00639002863317728, 0.008451137691736221, -0.003942092414945364, 0.019784284755587578, 0.017386548221111298, 0.007098719477653503, 0.004650783259421587, -0.004004103131592274, 0.004219663329422474, 0.01842596009373665, -0.010370508767664433, 0.004060207866132259, -0.016477061435580254, 0.014646276831626892, -0.02261904813349247, -0.0066498820669949055, 0.0060593062080442905, -0.0003329370229039341, 0.009886236861348152, -0.006862489040941, 0.006502238102257252, -0.00851610116660595, -0.004193087108433247, 0.018886609002947807, 0.0008622405002824962, -0.015732936561107635, 0.00319501431658864, -0.021945791319012642, 0.007500310894101858, 0.0029558311216533184, -0.006667599081993103, 0.014551784843206406, 0.021780431270599365, -0.0035906999837607145, 0.030520951375365257, 0.0026295380666851997, -0.019595300778746605, -0.013571429066359997, -0.019701603800058365, -0.006703034043312073, 0.005495306570082903, 0.005722678266465664, 0.005858510732650757, -0.0033839985262602568, -0.02459157072007656, 0.019122840836644173, -0.0025941035710275173, 0.0030193179845809937, 0.02061109058558941, -0.013465125113725662, 0.005510070826858282, -0.006838866043835878, -0.012933607213199139, -0.02447345480322838, -0.00240659574046731, 0.01750466227531433, -0.005273840855807066, -0.010216958820819855, 0.006035683210939169, -0.0012682612286880612, -0.00614789268001914, 0.006726657040417194, 0.0015487846685573459, 0.016547929495573044, -0.010931555181741714, -0.014575407840311527, 0.005309275351464748, -0.008102698251605034, 0.01850864104926586, 0.0038505534175783396, 0.0047511812299489975, -0.007405818905681372, -0.019406316801905632, 0.03153673931956291, 0.009425587952136993, 0.007299515418708324, -0.01158118899911642, -0.010512246750295162, -0.0007179185631684959, -0.015130548737943172, 0.02418997883796692, -0.015331344678997993, -0.019677981734275818, -0.012106801383197308, -0.009732686914503574, 0.020209498703479767, 0.0019459468312561512, 0.0028347631450742483, -0.004077924881130457, -0.010264204815030098, -0.0011700780596584082, 0.021910356357693672, -0.00018621589697431773, 0.008899975568056107, -0.009667723439633846, 0.0063132536597549915, 0.01657155342400074, 0.0017038107616826892, 7.8666525951121e-05, 0.006366405636072159, 0.02283165603876114, -6.330233009066433e-05, 0.019240954890847206, -0.024213602766394615, 0.0035198309924453497, 0.01979609578847885, 0.0044381762854754925, 0.0025837684515863657, -0.005976625718176365, -0.010317357257008553, 0.007287703920155764, 0.014752579852938652, 0.01508330274373293, -0.007405818905681372, 0.008114509284496307, -0.010151995345950127, -0.00041893962770700455, 0.010819346643984318, -0.0024494125973433256, -0.00628963066264987, 0.005229547619819641, 0.0022087530232965946, 0.027615318074822426, -0.0028716742526739836, -0.0004030678828712553, -0.01152803748846054, -0.014043889008462429, 0.0001783723128028214, -0.03139500319957733, 0.01361867506057024, -0.02702474221587181, -0.015095113776624203, -0.0012845020974054933, -0.025418376550078392, 0.018414149060845375, -0.02737908810377121, -0.01796531118452549, 0.021839488297700882, 0.00917754601687193, -0.018083427101373672, 0.011793795973062515, 0.002876103390008211, -0.030450081452727318, 0.028087778016924858, -0.0025941035710275173, -0.012065460905432701, 0.015933731570839882, 0.013677732087671757, -0.03432425856590271, 0.00407201936468482, 0.010110655799508095, 0.008775954134762287, 0.00943149346858263, -0.002154124667868018, -0.020244933664798737, 0.019890587776899338, -0.02029217965900898, 0.0025837684515863657, 0.008817294612526894, 0.014008454978466034, 0.02591446042060852, 0.018886609002947807, -0.007128248456865549, -0.00034604044049046934, 0.00977402739226818, -0.0027181245386600494, 0.02226470224559307, -0.005979578476399183, 0.01510692574083805, -0.014091135002672672, 0.0035818414762616158, 0.0076774838380515575, 0.014268307946622372, -0.0022914335131645203, -1.971277015400119e-05, 0.032552529126405716, -0.000402698788093403, -0.0039243753999471664, 0.010966990143060684, 0.0055779870599508286, 0.014835260808467865, 0.02219383418560028, -0.0029454962350428104, 0.020800074562430382, -0.005604563280940056, 0.007683389354497194, 0.007033756002783775, -0.00037335455999709666, -0.010966990143060684, 0.02709561213850975, 0.0014040936948731542, -0.0030355588532984257, 0.016016412526369095, -0.010984707623720169, 0.0016816642601042986, 0.00527088763192296, -0.0043791187927126884, 0.02272535115480423, 0.0036556634586304426, 0.00016047048848122358, 0.01027011126279831, 0.019595300778746605, -0.01177607849240303, 0.023918313905596733, 0.014008454978466034, -0.01657155342400074, 0.011835136450827122, -0.007010133005678654, -0.013028099201619625, 0.0019193709595128894, -0.03134775534272194, -0.0016683762660250068, 0.0007371122483164072, 0.0033072237856686115, -0.004376165568828583, -0.00023899858933873475, -0.007901902310550213, 0.04223797097802162, 0.00584374601021409, -0.01800074614584446, -0.01921733282506466, 0.009838990867137909, 0.012567450292408466, 0.011226843111217022, -0.018485018983483315, -0.01692589931190014, 0.00478661572560668, -0.012827303260564804, -0.011657963506877422, 0.027449956163764, 0.001959234708920121, -0.006797526031732559, -0.025796344503760338, -0.001957758329808712, 0.03940320760011673, 0.0026413495652377605, -0.026977496221661568, -0.013843093998730183, 0.010500435717403889, -0.004272814840078354, -0.010748476721346378, 0.012520204298198223, -0.0025320930872112513, -0.0005614159745164216, -0.008787766098976135, 0.015319532714784145, 0.008964939042925835, 0.008262153714895248, 0.004630113020539284, 0.015614820644259453, -0.0025409518275409937, 0.016382569447159767, 0.008096792735159397, 0.017835384234786034, -0.004606490023434162, -0.0039834328927099705, -0.003720626700669527, -0.015000621788203716, -0.004668500740081072, 0.01275643426924944, 0.01868581399321556, -0.013287952169775963, -0.019406316801905632, -0.010281922295689583, 0.01109691709280014, -0.03092254139482975, -0.016169961541891098, 0.011906005442142487, -0.0025498103350400925, 0.00011913018533959985, 0.03919060155749321, 0.014847071841359138, -0.015555762685835361, 0.010801629163324833, 0.016559742391109467, 0.011616623029112816, -0.0029794543515890837, 0.010045692324638367, -0.019170086830854416, -0.006384123116731644, -0.01510692574083805, -0.008096792735159397, 0.0026029623113572598, -0.02043391764163971, -0.0030222709756344557, -0.007228645961731672, 0.009354718960821629, -0.010966990143060684, 0.0037472026888281107, 0.01761096715927124, 0.011374487541615963, -0.0037294854409992695, 0.01664242148399353, -0.011563471518456936, -0.0005348401027731597, 0.013488748110830784, -0.01831965707242489, 0.010547681711614132, -0.025867214426398277, 0.010783911682665348, 0.0004979291115887463, 0.01706763729453087, 0.00810860376805067, -0.0017761563649401069, -0.0012970517855137587, 0.04209623485803604, -0.004092689603567123, -0.0007950625149533153, 0.011959156952798367, -0.0034607734996825457, 0.008994467556476593, 0.013051722198724747, -0.006407746113836765, -0.003106428077444434, 0.006643976084887981, -0.00035545273567549884, 0.02898545376956463, 0.025182146579027176, -0.003446009010076523, 0.008758237585425377, -0.01732748933136463, -0.0036084172315895557, 0.015473082661628723, 0.00011811513104476035, -0.011823324486613274, 0.007010133005678654, 0.004228521604090929, -0.013465125113725662, 0.005530741065740585, -0.00029639515560120344, -0.016736915335059166, 0.013854905031621456, 0.012543827295303345, 0.00579059449955821, -0.004940165672451258, 0.0016373710241168737, -0.0037885429337620735, 0.015095113776624203, 0.004765945486724377, -0.0005614159745164216, 0.004668500740081072, 0.00851610116660595, -0.011888287961483002, 0.011374487541615963, -0.00923069752752781, 0.023292304947972298, -0.0017997793620452285, 0.009153923019766808, -0.013016288168728352, -0.012721000239253044, 0.026032576337456703, 0.0305681973695755, 0.00364089896902442, -0.006354594137519598, 0.008167661726474762, 0.0006983557250350714, 0.002998647978529334, 0.003947998397052288, -0.00015604116197209805, -0.015721123665571213, -0.01928820088505745, 0.018520452082157135, -0.024780554696917534, 0.004095642361789942, 0.018118862062692642, -0.0027476532850414515, -0.027851548045873642, 0.046041280031204224, 0.01233122032135725, 0.008758237585425377, 0.022146588191390038, -0.0008098268881440163, 0.020126819610595703, -0.010978802107274532, -0.020811885595321655, -0.023682083934545517, 0.010459095239639282, 0.0092897554859519, 0.007630237843841314, -0.010978802107274532, -0.02351672388613224, 0.0011774601880460978, 0.00857515912503004, 0.025205768644809723, 0.007807410322129726, -0.006366405636072159, -0.0033692342694848776, -0.005391955841332674, 0.0075357453897595406, -0.002244187518954277, 0.01954805478453636, 0.01628807745873928, -0.009212980046868324, -0.0013302717125043273, -0.008049546740949154, -0.008439326658844948, 0.003933234140276909, 0.003567076986655593, -0.019276389852166176, -0.014528161846101284, 0.008764143101871014, -0.01200640294700861, -0.008994467556476593, 0.009650005958974361, 0.0038948464207351208, 3.0451557904598303e-05, -0.014350988902151585, -0.004591725766658783, 0.01829603500664234, 0.027780679985880852, -0.016477061435580254, -0.03002486750483513, 0.019737038761377335, 0.0033839985262602568, 0.01664242148399353, -0.01080753467977047, -0.0013302717125043273, 0.0049460711888968945, 0.015036056749522686, -0.003841694677248597, 0.005631139036267996, -0.0055514113046228886, 0.04278130084276199, 0.004385024309158325, 0.0005721201887354255, -0.007346761412918568, 0.0007190258475020528, -0.010246488265693188, 0.026434166356921196, 0.013807659037411213, 0.0006909735384397209, -0.011244560591876507, 0.004134029615670443, 0.0036527104675769806, 0.004798427224159241, 0.017717270180583, -0.01600460149347782, -0.008173567242920399, -0.005858510732650757, -0.029552405700087547, 0.004169464111328125, 6.662431405857205e-05, 0.014681710861623287, 0.00771291833370924, 0.025323884561657906, 0.005471683572977781, 0.005893945228308439, -0.003209778806194663, -0.016666045412421227, -0.011994591914117336, 0.0357888862490654, 0.012850926257669926, -0.013228895142674446, 0.009667723439633846, -0.0052384063601493835, -0.025536492466926575, 0.02018587663769722, -0.0004551123711280525, 0.0139021510258317, -0.018603133037686348, 0.011014236137270927, -0.006643976084887981, -0.02411911077797413, 0.019370881840586662, -0.004063160624355078, -0.029032699763774872, -0.006130175199359655, 0.015295909717679024, -0.0022707635071128607, -0.010411849245429039, 0.007618425879627466, -0.016701480373740196, -0.012685565277934074, 0.0017672977410256863, 0.0026162501890212297, -0.00587918097153306, 0.011279995553195477, 0.001294837100431323, 0.012307597324252129, 0.02877284586429596, 0.003221590304747224, -0.0149415647611022, -0.008811389096081257, 0.011244560591876507, 0.003106428077444434, -0.011386298574507236, -0.027142858132719994, -0.004754133988171816, -0.0058821337297558784, -0.003496207995340228, 0.011132351122796535, -0.0001588094892213121, 0.011409921571612358, -0.00952007994055748, 0.0034105745144188404, -0.014539972878992558, -0.003794448683038354, -0.00695107551291585, 0.00037224721745587885, 0.026670396327972412, 0.001049010083079338, 0.0011494079371914268, -0.017776327207684517, 0.018307846039533615, -0.015402213670313358, -0.0005806097178719938, 0.008149944245815277, -0.008616498671472073, 0.0024479362182319164, 0.014327365905046463, 0.015791993588209152, 0.013571429066359997, -0.004768898710608482, -0.0187566839158535, -0.02591446042060852, 0.0010320310248062015, -0.022241080179810524, 0.0035641242284327745, 0.00044809927931055427, 0.0012165858643129468, -0.00599434319883585, -0.009856708347797394, 0.002064062049612403, -0.022146588191390038, -0.03295412287116051, -0.005194113124161959, 0.012425712309777737, -0.004116312600672245, 0.009508267976343632, -0.024686062708497047, -0.008504289202392101, 0.014551784843206406, -0.04190725088119507, -0.004588773008435965, -0.015626631677150726, -0.0038210246711969376, 0.014693522825837135, 0.006927452515810728, -0.019406316801905632, 0.001655088271945715, 0.0013155073393136263, 0.019666168838739395, 0.0015096589922904968, 0.013748601078987122, -0.013158026151359081, -0.01600460149347782, -0.022489121183753014, 0.0034105745144188404, 0.01233122032135725, -0.01172292698174715, 3.5036593999393517e-06, -0.013535994105041027, 0.007901902310550213, 0.0043791187927126884, -0.016205396503210068, -0.010766194202005863, 0.006779808551073074, 0.016299888491630554, -0.031111525371670723, 0.013122591190040112, -0.020386671647429466, -0.016914086416363716, -0.0006503714248538017, -0.006608541589230299, 0.0086814621463418, 0.00862831063568592, -0.02011500671505928, -0.003841694677248597, -0.0038210246711969376, 0.013004476204514503, -0.02369389496743679, 0.024922292679548264, 0.0026236323174089193, -0.0009678058559074998, 0.0180716160684824, -0.004526762291789055, 0.016040034592151642, -0.012343031354248524, 0.0023121037520468235, -0.014811637811362743, -0.0006344997091218829, 0.026292428374290466, -0.04039537534117699, 0.009762215428054333, -0.014268307946622372, 5.19522036483977e-05, -0.029552405700087547, -0.014162004925310612, 0.013453314080834389, 0.0010896121384575963, 0.004736416973173618, 0.017835384234786034, 0.01379584800451994, 0.0022958628833293915, 0.01574474759399891, -0.009892142377793789, -0.010701230727136135, -0.013406068086624146, -0.00037040168535895646, 0.007600708864629269, -0.031867463141679764, -0.01052405871450901, -0.01865037903189659, 0.005383097101002932, -0.0437970906496048, 0.024638816714286804, 0.005554364062845707, -0.02447345480322838, -0.009945293888449669, -1.1857651770696975e-05, 0.006044541951268911, -0.011226843111217022, 0.005338803865015507, -0.020457541570067406, 0.008073169738054276, -0.007346761412918568, -0.019170086830854416, -0.016051847487688065, -0.0008688844391144812, 0.0017067636363208294, 0.012980853207409382, -0.02198122628033161, 0.004039537627249956, 0.004299391061067581, 0.006153798662126064, -0.01123865507543087, -0.022134775295853615, -0.0016801877645775676, -0.012000497430562973, 0.0243080947548151, -0.007246363442391157, 0.021697750315070152, 0.01556757465004921, -0.0028642918914556503, 0.00511733815073967, 0.005616374779492617, 0.022737164050340652, -0.005418531596660614, -0.007423535920679569, -0.006230573169887066, -0.008964939042925835, 0.025725476443767548, -0.0175400972366333, -0.0033780927769839764, -0.013973020017147064, 0.017670024186372757, -0.0001773572585079819, -0.013748601078987122, 0.010825252160429955, 0.01792987808585167, 0.0071046254597604275, 0.009502362459897995, 0.013217083178460598, -0.013323387131094933, 0.005802405998110771, 0.01247295830398798, 0.01653611846268177, -0.01997326873242855, -0.016488872468471527, -0.01553213968873024, -0.020894566550850868, 0.00440274178981781, -0.0076774838380515575, 0.0063959346152842045, 0.002574909944087267, -0.004659641999751329, -0.009272038005292416, 0.0025247109588235617, -0.001173769123852253, 0.022359194234013557, -0.006573107093572617, -0.007984583266079426, -0.012030025944113731, 0.003218637313693762, 0.008781860582530499, 0.008793671615421772, -0.014669899828732014, 0.016547929495573044, -0.0082503417506814, 0.004892919212579727, -0.016843218356370926, 0.017776327207684517, 0.005749254021793604, 0.019855154678225517, 0.01968979276716709, 0.018626756966114044, 0.015520328655838966, -0.018555887043476105, -0.01057721022516489, 0.003921422641724348, -0.009478739462792873, -0.011935533955693245, -0.009023996070027351, -0.015272286720573902, 0.007205022964626551, 0.02633967436850071, -0.011262278072535992, -0.012484769336879253, 0.010730760172009468, -0.005950049962848425, -0.031371381133794785, 0.012862738221883774, 0.013252518139779568, -0.012201293371617794, 0.03413527458906174, -0.001393020385876298, 0.028465747833251953, -0.01907559484243393, 0.01166977547109127, -0.010913838632404804, -0.015827428549528122, 0.028678353875875473, -0.03607236221432686, 0.017410170286893845, -0.001807161490432918, 0.021496953442692757, -0.005099620670080185, -0.035954248160123825, -0.00771291833370924, 0.01879211701452732, 0.0005104788579046726, 0.03023747354745865, 0.013524183072149754, 0.0035021137446165085, -0.003962762653827667, 0.012744623236358166, 0.013347010128200054, -0.006614447571337223, 0.011693398468196392, -0.015378590673208237, -0.0010231724008917809, -0.030190227553248405, 0.005008081439882517, -0.003221590304747224, 0.02508765459060669, 0.00851610116660595, 0.020811885595321655, -0.007340855430811644, -0.0008504289435222745, 0.011911910958588123, 0.01278005726635456, 0.017492851242423058, -0.009555513970553875, -0.0086814621463418, 0.013287952169775963, -0.027473580092191696, 0.01639438048005104, 0.0019075594609603286, -0.004721652250736952, -0.03890712559223175, -0.017374735325574875, 0.0015236851759254932, -0.008557441644370556, 0.002360826125368476, 0.008167661726474762, 0.01158118899911642, -0.005604563280940056, -0.008350740186870098, 0.018496830016374588, -0.022170210257172585, -0.002638396807014942, -0.002935161115601659, 0.030969787389039993, 0.004311202559620142, 0.013429691083729267, 0.010618550702929497, -0.027331842109560966, -0.00020540959667414427, 0.003505066502839327, -0.01080753467977047, 0.007323138415813446, -0.0074766878969967365, 0.029552405700087547, 0.010264204815030098, -0.018567698076367378, -0.00995120033621788, 0.009307472966611385, -0.007630237843841314, 7.137660577427596e-05, -0.005539599806070328, 0.02508765459060669, -0.012343031354248524, 0.001851454726420343, 0.006868395023047924, -0.007978676818311214, -0.003897799411788583, 0.004889966454356909, 0.019122840836644173, 0.0021172137930989265, 0.00991576537489891, -0.0027978522703051567, 0.02401280589401722, 0.014150192961096764, -0.0006846986361779273, -0.016878653317689896, -0.002498134970664978, -0.00560161005705595, 0.0076715778559446335, 0.011929628439247608, 0.0139021510258317, -0.003496207995340228, 0.00032721582101657987, -0.006053400691598654, -0.0037737784441560507, -0.0239773727953434, -0.011841041967272758, -0.007978676818311214, 0.019890587776899338, 0.01778813824057579, 0.0009390152990818024, 0.0045238095335662365, 0.003661569207906723, 0.0042373803444206715, -0.0021496955305337906, 0.02279622107744217, -0.008817294612526894, 0.011055576615035534, 0.032977744936943054, 0.004352542571723461, 0.012732811272144318, -0.0003905181656591594, 0.015827428549528122, 0.013370633125305176, -0.015473082661628723, -0.01146897953003645, 0.0010534393368288875, -0.021390650421380997, -0.006531767081469297, -0.0239773727953434, -0.0017850149888545275, 0.0015052297385409474, -0.04580504819750786, -0.01553213968873024, -0.015118736773729324, 0.0006607065442949533, 0.020599279552698135, 0.0063368771225214005, 0.00939605850726366, 0.001779109239578247, 0.00810860376805067, -0.025253014639019966, 0.002994218608364463, -0.019595300778746605, -0.024497078731656075, -0.019264578819274902, -0.01508330274373293, 0.007547556888312101, 0.000964114791713655, 0.01195325143635273, -0.02355215698480606, -0.009189357049763203, -0.024851424619555473, 0.011911910958588123, -0.0005233976989984512, -0.010388226248323917, 0.014150192961096764, -0.011285901069641113, 0.0004986673011444509, -0.0010962560772895813, -0.024178167805075645, -0.016099093481898308, -0.002783087780699134, -0.032623399049043655, 0.0023002922534942627, 0.004426364786922932, 0.030450081452727318, -0.008025923743844032, -0.028867337852716446, -0.022701729089021683, -0.019524430856108665, 0.007819222286343575, 0.012827303260564804, 0.003815118921920657, -0.006295536644756794, 0.028678353875875473, -0.0021216431632637978, 0.007553462870419025, 0.012343031354248524, -0.008096792735159397, 0.02097724750638008, 0.02208752930164337, -0.007151871453970671, -0.03897799551486969, 0.00043924065539613366, 0.005040563177317381, 0.014610841870307922, -0.00535947410389781, -0.0014092611381784081, -0.023245058953762054, -0.006431369110941887, -0.02752082608640194, 0.03465497866272926, -0.008185379207134247, 0.012077271938323975, 0.0003934710402972996, -0.0060593062080442905, -0.004131076857447624, 0.00248780008405447, 0.008380268700420856, 0.05078950896859169, 0.03585975617170334, -0.00837436318397522, -0.014209250919520855, -0.031229641288518906, 0.008268059231340885, -0.001198130426928401, 0.0027757056523114443, 0.014350988902151585, -0.0031566268298774958, 0.010978802107274532, 0.002563098445534706, -0.002666449174284935, -0.006496332120150328, -0.0002602224121801555, -0.003041464602574706, 0.0018544076010584831, -0.003522783750668168, -0.0008925074944272637, 0.0059677669778466225, -0.00851610116660595, -0.0227607861161232, 0.02104811742901802, 0.013736790046095848, -0.0007825127686373889, 0.012272162362933159, 0.012343031354248524, 0.012378466315567493, -0.02205209620296955, 0.005312228109687567, -0.015319532714784145, -0.011622529476881027, -0.020055949687957764, -0.014658087864518166, -0.013642298057675362, 0.017740892246365547, 0.00977402739226818, -0.002774229273200035, -0.035198308527469635, -0.019370881840586662, -0.007134153973311186, 0.010151995345950127, -0.007264080923050642, 0.0069628870114684105, 0.005923473741859198, 0.03474947065114975, 0.004559244029223919, 0.012449335306882858, -0.024709686636924744, -0.010311450809240341, -0.011344959028065205, 0.009531890973448753, 0.01186466496437788, -0.009838990867137909, 0.009762215428054333, -0.021449707448482513, -0.0008533818181604147, -0.006632164586335421, 0.004568102769553661, -0.004881107714027166, -0.0010047168470919132, -0.009703158400952816, -1.4049241144675761e-05, 0.008604687638580799, 0.010778006166219711, -0.0015502611640840769, 0.0014247638173401356, -0.002998647978529334, -0.026505036279559135, -0.0004060207575093955, 0.0054008145816624165, -0.0049460711888968945, 0.008474760688841343, 0.004452940542250872, -0.0023696848656982183, -0.008923598565161228, -0.010848875157535076, -0.018709437921643257, 0.004408647306263447, 0.008970844559371471, 0.021036304533481598, 0.007807410322129726, 0.009561420418322086, -0.0024198838509619236, 0.006372311618179083, 0.03170210123062134, 0.014681710861623287, 0.007081002462655306, 0.0021954651456326246, 0.006638070568442345, -0.01261469628661871, -0.007458970881998539, -0.023752953857183456, 0.022288326174020767, 0.007027850486338139, -0.010642173700034618, -0.03311948478221893, -0.007246363442391157, 0.010819346643984318, 0.010193335823714733, -0.003688144963234663, -0.009549608454108238, 0.0027889935299754143, 0.01868581399321556, -0.0037294854409992695, 0.01879211701452732, -0.0042432863265275955, -0.030686311423778534, -0.015945542603731155, -0.004001150373369455, -0.0031241453252732754, -0.020823698490858078, 0.013925774022936821, 0.0053506153635680676, -0.0025734335649758577, -0.01063036173582077, -0.0027018836699426174, -0.020741017535328865, 0.016630610451102257, 0.02799328602850437, -0.004089736379683018, -0.004928354173898697, 0.032481662929058075, -0.0009368006722070277, 0.007334949914366007, -0.009909859858453274, -0.004990364424884319, -0.006100646685808897, 0.004452940542250872, -0.0032156845554709435, 0.009189357049763203, 0.023280492052435875, 0.008421609178185463, -0.001335439272224903, -0.00632506562396884, 0.0014188580680638552, -0.008126321248710155, -0.005696102511137724, -0.009153923019766808, -0.009880331344902515, -0.01358324009925127, -0.010624456219375134, -0.016725102439522743, -0.023623026907444, 0.02208752930164337, 0.005489401053637266, 0.0014808684354647994, 0.011362675577402115, 0.010559492744505405, -0.00943149346858263, 0.0084275146946311, -0.002865768503397703, 0.0003427184419706464, -0.013890339992940426, 0.015012433752417564, -0.006596730090677738, 0.0044381762854754925, 0.024922292679548264, 0.015685690566897392, -0.02387106791138649, -0.00399819714948535, 0.008687367662787437, 0.017445605248212814, 0.0002646517241373658, -0.008870446123182774, 0.020280368626117706, 0.0001982119574677199, 0.015732936561107635, 0.01080753467977047, -0.00948464497923851, -0.0052059246227145195, -0.014374611899256706, -0.006106552202254534, 0.0017407217528671026, -0.010518152266740799, 0.017103072255849838, -0.011085105128586292, -0.0043554953299462795, -0.021071739494800568, 0.00464487774297595, -0.01928820088505745, -0.004957882687449455, -0.04008827731013298, 0.018555887043476105, -0.027568072080612183, 0.030308343470096588, 0.015827428549528122, 0.004399788565933704, 0.018733059987425804, 0.00464487774297595, 0.030898919329047203, 0.027119234204292297, 0.0002773860178422183, -0.0013516800245270133, 0.015591197647154331, -0.013571429066359997, -0.006248290650546551, -0.014929752796888351, -0.015000621788203716, -0.018744871020317078, 0.00469802925363183, 0.0013081250945106149, 0.0011922246776521206, -0.007990488782525063, 0.0043791187927126884, -0.04129305109381676, -0.022808032110333443, -0.015768369659781456, 0.017126694321632385, -0.025442000478506088, 0.0028672448825091124, 0.005699055269360542, -0.014717145822942257, 0.0036970037035644054, 0.00457105552777648, 0.0020079573150724173, 0.0239773727953434, 0.0060268244706094265, -0.016016412526369095, 0.008563347160816193, -0.01713850535452366, 0.005929379723966122, -0.002530616708099842, -0.0052059246227145195, 0.03196195513010025, -0.0020241981837898493, -0.04337187856435776, -0.009272038005292416, 0.02570185251533985, -0.021591447293758392, -0.024130921810865402, 0.005335851106792688, -0.004709840752184391, -0.021355215460062027, -0.010364603251218796, 0.0025970565620809793, 0.024851424619555473, -0.008551536127924919, -0.014008454978466034, -0.011215032078325748, 0.0001838166790548712, 0.010972895659506321, -0.010648079216480255, -0.029363421723246574, 0.023705707862973213, 0.02591446042060852, 0.006017966195940971, 0.026292428374290466, 0.01490612979978323, -0.0013871146366000175, 0.007594802882522345, 0.0067148455418646336, -0.0029897892381995916, -0.014610841870307922, 0.018591322004795074, 0.012118612416088581, 0.012638319283723831, 0.022252891212701797, 0.00514391390606761, 0.0031418625731021166, -0.02204028330743313, -0.0079963942989707, -0.004358448553830385, 0.007287703920155764, -0.024355340749025345, -0.006667599081993103, -0.01918189786374569, 0.03278876096010208, -0.013358821161091328, -0.010022069327533245, -0.013146214187145233, -0.013063534162938595, 0.010027974843978882, -0.0034076215233653784, 0.008964939042925835, 0.007801504340022802, 0.007990488782525063, -0.013996643014252186, 0.007181399967521429, 0.0033839985262602568, 0.029717767611145973, 0.009980728849768639, -0.0032009200658649206, -0.02433171682059765, 0.0012689994182437658, 0.015662066638469696, -0.020233122631907463, 0.014114757999777794, -0.009407870471477509, 0.003812165930867195, -0.014445480890572071, -0.0019370882073417306, 0.008138132281601429, -0.006797526031732559, 0.009413775987923145, -0.013784036040306091, -0.008864540606737137, 0.008451137691736221, -0.0007035232847556472, 0.002977977739647031, 0.013500560075044632, 0.008167661726474762, 0.014232873916625977, -0.005873274989426136, 0.0012808110332116485, 0.007311326917260885, 0.01075438316911459, -0.0030355588532984257, 0.010447283275425434, -0.011374487541615963, -0.005182301625609398, 0.00819719024002552, 0.030142981559038162, -0.010081126354634762, -0.01817791908979416, -0.020315803587436676, -0.02261904813349247, -0.01846139505505562, 0.016937710344791412, 0.005728583782911301, -0.03843466565012932, 0.022359194234013557, 0.0022338523995131254, -0.00521773612126708, 0.00579059449955821, -0.003587747225537896, 0.004290532320737839, 0.01518960576504469, 4.1294159018434584e-05, -0.011817418970167637, -0.0002382603706791997, 0.03597787022590637, 0.003103475086390972, -0.0075357453897595406, 0.0019208473386242986, -0.015839239582419395, 0.03132413327693939, 0.015579385682940483, 0.019890587776899338, -0.03002486750483513, 0.004591725766658783, 0.006165610160678625, -0.003779684193432331, 0.0013169837184250355, -0.0062541961669921875, 0.007600708864629269, 0.02186311036348343, 0.024686062708497047, -0.00022478785831481218, 0.009691346436738968, -0.009650005958974361, 0.011085105128586292, -0.03500932455062866, -0.0031418625731021166, 0.008923598565161228, 0.016418004408478737, -0.024922292679548264, 3.0797596991760656e-05, 0.004299391061067581, -0.00418718159198761, -0.03430063650012016, 0.010978802107274532, 0.01075438316911459, 0.0005466516013257205, -0.014162004925310612, -0.01567387767136097, 0.026528658345341682, 0.0017584390006959438, 0.009248415008187294, -0.008008206263184547, -0.020422106608748436, -0.011947345919907093, -0.0027314124163240194, 0.0008157326374202967, 0.022536367177963257, -0.00882320012897253, -0.001895747845992446, -0.015496705658733845, 0.013559617102146149, -0.0031713913194835186, 0.0018691719742491841, -0.010051597841084003, 0.0013383921468630433, 0.011941440403461456, 0.01521322876214981, -0.00800230074673891, 0.0038889406714588404, 0.008498383685946465, -0.018118862062692642, 0.015945542603731155, -0.013937585987150669, -0.02226470224559307, -0.018225165084004402, -0.01028782781213522, -0.0001113788821385242, 0.0007245625020004809, 0.016984956339001656, 0.0005274579161778092, 0.01782357320189476, -0.001821925980038941, -0.004261003341525793, 0.010116561315953732, 0.006342782638967037, -0.02501678466796875, 0.0023874021135270596, 0.007647954858839512, 0.005855557508766651, 0.011551660485565662, -0.003389904275536537, 0.01778813824057579, 0.005418531596660614, 0.012673754245042801, 0.007565274368971586, 0.0001567793806316331, -0.022418253123760223, -0.0015236851759254932, 0.0036645219661295414, -0.006632164586335421, -0.019335446879267693, -0.028442123904824257, -0.026032576337456703, -0.003841694677248597, -0.0298831295222044, 0.005397861823439598, -0.03099341131746769, 0.03342658281326294, 0.012248539365828037, 0.005947096738964319, 0.029694143682718277, 0.021319782361388206, 0.005087809171527624, -0.006685316562652588, 0.00647861510515213, 0.021697750315070152, 0.02147333137691021, -0.015484893694519997, -0.0025394754484295845, 0.01086068619042635, -0.0017141458811238408, 0.007394007407128811, -0.026670396327972412, 0.00923069752752781, 0.005214783363044262, -0.005873274989426136, 0.026859382167458534, 0.003342658281326294, -0.021319782361388206, -0.01979609578847885, 0.013512371107935905, 0.007394007407128811, -0.005725631024688482, 0.0022220409009605646, -0.005858510732650757, 0.018473206087946892, 0.009106677025556564, -0.006437274627387524, 0.03049732744693756, 0.0018012557411566377, -0.0017141458811238408, -0.0019680934492498636, -0.00285838614217937, 0.011256372556090355, -0.010919744148850441, -0.0030828050803393126, -0.01243752334266901, -0.006762091536074877, -0.005560270044952631, 0.018910232931375504, -0.016087280586361885, -0.014599030837416649, -0.007707012351602316, -0.02022131159901619, -0.0016595176421105862, 0.006124269682914019, 0.009047619067132473, 0.012366654351353645, 0.012744623236358166, 0.0026295380666851997, 0.0025808156933635473, 0.0027018836699426174, -0.003567076986655593, -0.006519955582916737, -0.005075997672975063, -0.006844772025942802, -0.007405818905681372, 0.006496332120150328, 0.006230573169887066, 0.012980853207409382, 0.0057728770188987255, 0.006886112503707409, -0.010813440196216106, 0.007529839873313904, -0.012354843318462372, 0.009236603043973446, 0.03281238302588463, 0.015000621788203716, 0.020091384649276733, 0.012685565277934074, -0.0052000186406075954, 0.00952007994055748, -0.001429193071089685, 0.016666045412421227, -0.0049785529263317585, 0.010151995345950127, -0.026032576337456703, 0.008510195650160313, -0.007033756002783775, 0.01313440315425396, 0.001835213857702911, 0.005046469159424305, -0.026079822331666946, -0.008327117189764977, 0.013535994105041027, 0.01861494593322277, -0.002698930911719799, -0.002800805028527975], "527cc4e9-d27e-46b1-9faf-1052b2b76ba0": [-0.03749960660934448, -0.042815081775188446, -0.003507244633510709, 0.027378352358937263, -0.04681989550590515, -0.024611391127109528, -0.010370036587119102, 0.0013281110441312194, -0.026868648827075958, 0.05961102247238159, 0.0020615682005882263, 0.013179472647607327, 0.0031371028162539005, 0.0019781345035880804, 0.0016777736600488424, 0.009144321084022522, -0.0014229218941181898, 0.017281372100114822, -0.005552126094698906, -0.0005897237570025027, 0.043227698653936386, -0.01569158211350441, -0.00970863550901413, 0.0006868101190775633, 0.02395605854690075, -0.03941706195473671, -0.007105507887899876, 0.0015943399630486965, -0.026261858642101288, -0.019878432154655457, 0.011717109940946102, -0.005021185148507357, 0.00563100865110755, 0.032693829387426376, 0.020278912037611008, -0.018033791333436966, -0.027523981407284737, 0.018009519204497337, 0.01794883981347084, -0.003625568700954318, -0.027960870414972305, 0.038082122802734375, -0.03749960660934448, 0.002328555565327406, -0.01611633598804474, -0.012196473777294159, -0.04555777460336685, 0.008859129622578621, 0.014623632654547691, -0.01319160871207714, 0.01445373147726059, 0.0027654441073536873, -0.02623758837580681, 0.009423444978892803, 0.04541214182972908, -0.020109010860323906, 0.0015473137609660625, 0.07543610036373138, 0.014259559102356434, -0.08897964656352997, -0.03218412771821022, -0.05446544662117958, 0.005379191134124994, 0.009393105283379555, 0.00805816799402237, 0.01668671704828739, -0.0007463513757102191, 0.008488988503813744, -0.02499973773956299, 0.011316628195345402, -0.005543024279177189, 0.01518187951296568, -0.04847036302089691, 0.043664589524269104, 0.030630744993686676, -0.012633361853659153, 0.01939299888908863, 0.014478002674877644, 0.0032675627153366804, -0.026043415069580078, 0.024902651086449623, -0.03196568414568901, 0.02995114028453827, -0.002830674173310399, 0.029829783365130424, 0.017062926664948463, -0.019077468663454056, -0.040120936930179596, -0.015727989375591278, -0.02044881321489811, 0.0036407383158802986, 0.0206308513879776, -0.007542396429926157, 0.014380916953086853, -0.020072603598237038, 0.019744938239455223, -0.02830067276954651, 0.01588575541973114, 0.01917455531656742, -0.003995710518211126, -0.010303289629518986, 0.03859182819724083, 0.003974472638219595, 0.014587225392460823, -0.0004148924781475216, 0.0010952554875984788, 0.012427053414285183, 0.04465972259640694, -0.016638174653053284, 0.01813087798655033, -0.019659986719489098, -0.054805248975753784, 0.026043415069580078, -0.005637076683342457, -0.03177151083946228, -0.038664642721414566, -0.04419856518507004, -0.008124914951622486, -0.009113981388509274, 0.0010277500841766596, 0.018203692510724068, -0.02810649946331978, 0.018701259046792984, 0.006149813998490572, -0.014842077158391476, 0.02927153743803501, -0.0011688286904245615, 0.02370120771229267, 0.05092179402709007, 0.01557022426277399, 0.004635873716324568, -0.006149813998490572, 0.02558225579559803, -0.03012104146182537, -0.021710935980081558, 0.014174608513712883, 0.0222934540361166, 0.07213516533374786, -0.01607992872595787, 0.011419782415032387, -0.00916859321296215, 0.014211015775799751, 0.002563686575740576, -0.00563404243439436, 0.028543388471007347, -0.01672312431037426, -0.03531516343355179, 0.0523780882358551, -0.03837338089942932, -0.015206150710582733, -0.01587361842393875, 0.006140712182968855, -0.03138316422700882, -0.00020043023687321693, 0.04560631513595581, 0.006735365837812424, -0.005006015300750732, 0.04599466174840927, 0.014793533831834793, 0.06043625622987747, 0.0338103249669075, -0.027499711140990257, 0.020473085343837738, 0.007882198318839073, 0.03626175597310066, 0.02951425313949585, 0.029198721051216125, 0.04373740404844284, -0.012032640166580677, 0.010357900522649288, 0.027621068060398102, -0.023361405357718468, 0.04541214182972908, -0.02268180064857006, 0.02597060054540634, -0.03213558346033096, 0.03138316422700882, -0.008780247531831264, 0.04334905743598938, -0.01981775276362896, -0.013264423236250877, -0.023567713797092438, 0.015327508561313152, 0.013167337514460087, -0.013786262832581997, 0.03810639679431915, -0.002240571193397045, 0.03800930827856064, -0.0075848717242479324, 0.0063955639488995075, -0.01732991449534893, -0.02476915717124939, -0.007524192798882723, 0.013761990703642368, -0.0367957279086113, -0.02968415431678295, 0.012512004002928734, -0.005582465324550867, -0.027572525665163994, 0.05621299892663956, 0.020800752565264702, -0.021213369444012642, -0.0009723805706016719, 0.035169534385204315, -0.016795938834547997, -0.004226290620863438, -0.0024514305405318737, -0.044271379709243774, 0.04131024330854416, 0.03162588179111481, 0.0520382858812809, -0.012062979862093925, 0.02274247817695141, -0.0025394149124622345, -0.00023020085063762963, 0.003938065376132727, 0.009071506559848785, 0.020266776904463768, -0.0005328372353687882, -0.019842024892568588, -0.003953235223889351, -0.036431655287742615, -0.005482345353811979, -0.009399172849953175, -0.04648009315133095, -0.006522989831864834, -0.04016948118805885, 0.011887011118233204, -0.037281159311532974, -0.03934424743056297, 0.006195323076099157, -0.028543388471007347, 0.051067423075437546, -0.03796076402068138, 0.012348171323537827, 0.04681989550590515, 0.019720666110515594, 0.010175864212214947, -0.01445373147726059, -0.017693988978862762, 0.01405324973165989, -0.0062924097292125225, 0.00970863550901413, -0.02599487267434597, -0.010794789530336857, 0.0004103415412828326, -0.004465972539037466, 0.03752387687563896, -0.004010879900306463, 0.025218181312084198, -0.007621278986334801, 0.005946539342403412, 0.0039319973438978195, -0.0005203221808187664, -0.034805458039045334, 0.007056964561343193, 0.02640748955309391, 0.011189202778041363, -0.003822775324806571, 0.024016737937927246, -0.01155327633023262, -0.004053355194628239, -0.0173663217574358, 0.017427001148462296, 0.04232965037226677, -0.04245100915431976, 0.031067634001374245, -0.016553223133087158, 0.010509598068892956, 0.02473274990916252, 0.04029083997011185, -0.013871213421225548, -0.02001192606985569, 0.04621310532093048, -0.03978113457560539, -0.014902755618095398, -0.007378563284873962, 0.011577548459172249, 0.001988753443583846, -0.0007763116154819727, -0.0339316800236702, -0.04456263780593872, 0.043251972645521164, 0.010831196792423725, 0.013907620683312416, 0.02810649946331978, -0.018871160224080086, -0.045120883733034134, -0.008300883695483208, 0.008410105481743813, 0.0057159592397511005, 0.030460843816399574, 0.009848196990787983, 0.026164773851633072, 0.009247475303709507, 0.011820264160633087, -0.01587361842393875, 0.00909577775746584, -8.24854796519503e-05, -0.005497514735907316, -0.006844588089734316, 0.012390646152198315, -0.009113981388509274, -0.03526661917567253, 0.023834699764847755, -0.01792456954717636, 0.057475123554468155, 0.02476915717124939, -0.002457498339936137, 0.06436825543642044, 0.011031437665224075, -0.039538417011499405, -0.05485379323363304, -0.02684437856078148, 0.0068931314162909985, 0.04230538010597229, -0.057863470166921616, -0.007014489267021418, -0.023980330675840378, 5.996788968332112e-05, -0.024829836562275887, 0.01879834569990635, -0.029247265309095383, 0.013228015974164009, 0.022026468068361282, -0.07169827818870544, 0.023664798587560654, -0.03441711515188217, 0.001984202302992344, -0.016856618225574493, -0.03470837324857712, 0.006067897193133831, -0.0026804935187101364, 0.013070250861346722, -0.012803263030946255, -0.015206150710582733, -0.05669843405485153, -0.03402876853942871, -0.000860124418977648, -0.016371186822652817, -0.034368570894002914, -0.0245871189981699, 0.014356644824147224, -0.014478002674877644, -0.034587014466524124, -0.029562795534729958, -0.008658889681100845, 0.019854160025715828, 0.011237746104598045, -0.0002027056907536462, 0.0006329575553536415, -0.007275409065186977, 0.03298509120941162, -0.02065512165427208, 0.01919882744550705, -0.02932007983326912, -0.03567923605442047, 0.018240099772810936, 0.019429408013820648, 0.02495119348168373, -0.021334726363420486, -0.06446534395217896, 0.011177066713571548, -0.08276611566543579, 0.012706177309155464, 0.01860417239367962, 0.04067918285727501, -0.019271641969680786, -0.024307996034622192, -0.007518124766647816, 0.022669663652777672, 0.01797311194241047, -0.010400376282632351, -0.0036134328693151474, 0.015582360327243805, -0.030655017122626305, 0.03317926079034805, 0.008410105481743813, -0.028761833906173706, 0.010012030601501465, -0.03050938807427883, 0.008015692234039307, -0.027742426842451096, 0.03160160779953003, 0.022851701825857162, -0.009532666765153408, 0.017499815672636032, -0.02973269671201706, -0.034368570894002914, 0.0013121827505528927, -0.027402624487876892, -0.015740126371383667, -0.010376104153692722, -0.002644086256623268, -0.009641888551414013, -0.007263273000717163, -0.004836114123463631, -0.03672291338443756, 0.010588481090962887, -0.023167232051491737, -0.017184285447001457, -0.023045873269438744, 0.006052727345377207, -0.011504733003675938, -0.013058114796876907, -0.024235181510448456, 0.021565306931734085, 0.023373540490865707, 0.0007865512161515653, 0.02577642723917961, 0.006334884557873011, -0.017414866015315056, 0.022803157567977905, 0.0350724458694458, 0.012863942421972752, 0.0028352250810712576, -0.010248678736388683, 0.03150452300906181, -0.01754835993051529, 0.014987706206738949, 0.0272812657058239, 0.02514536678791046, -0.0024089552462100983, 0.04914996773004532, -0.03322780504822731, 0.014684311114251614, 0.010970758274197578, -0.005761468317359686, -0.009459852240979671, -0.0013106658589094877, 0.061407119035720825, 0.012439189478754997, -0.012912485748529434, -0.004411361180245876, -0.023215774446725845, -0.02189297415316105, 0.018470678478479385, 0.023434219881892204, 0.012621226720511913, -0.011073912493884563, 0.002334623597562313, -0.007166186813265085, 0.028834648430347443, -0.016419729217886925, -0.039684049785137177, 0.002777579938992858, -0.028858918696641922, 0.02205073833465576, 0.015606631524860859, 0.005561227910220623, 0.00027646857779473066, 0.03364042192697525, -0.055193595588207245, 0.010558141395449638, -0.012463460676372051, -0.013155201449990273, 0.027135636657476425, -0.0058100116439163685, -0.022232776507735252, -0.03240257129073143, -0.004171679262071848, 0.021625986322760582, 0.03898017108440399, -0.023373540490865707, -0.020400270819664, -0.014587225392460823, -0.004347648471593857, -0.027960870414972305, 0.002459015464410186, 0.03514526039361954, -0.018058061599731445, -0.0008578489650972188, -0.024405082687735558, 0.02189297415316105, 0.01860417239367962, -0.006192289292812347, -0.018725531175732613, -0.0032220534048974514, -0.00203577964566648, 0.0037438925355672836, 0.0169658400118351, -0.022851701825857162, -0.009314222261309624, 0.008246272802352905, -0.019477950409054756, 0.0077790445648133755, -0.02747543901205063, -0.002504524542018771, -0.017693988978862762, 0.017463408410549164, -0.04398011788725853, -0.002327038673684001, 0.008998692035675049, 0.03135889396071434, 0.04191703349351883, 0.012815399095416069, 0.013810534030199051, -0.029878325760364532, -0.00759093975648284, -0.010667363181710243, 0.016759531572461128, 0.017305642366409302, 0.0003181853680871427, -0.0014418840873986483, -0.033543337136507034, 0.039077259600162506, -0.041358787566423416, 0.008840925991535187, 0.008379765786230564, -0.011947689577937126, -0.010709838941693306, 0.008810587227344513, -0.029150178655982018, -0.0063045453280210495, 0.021941516548395157, 0.018931839615106583, 0.0015548986848443747, -0.015060520730912685, 0.022196369245648384, 0.007505989167839289, -0.016674581915140152, 0.0022314691450446844, -0.0068021127954125404, 0.014223150908946991, -0.014089657925069332, 0.011310560628771782, -0.02536381036043167, -0.015036249533295631, 0.007566668093204498, -0.011650362983345985, -0.02871328964829445, 2.4484914320055395e-05, -0.006729298271238804, 0.006947742309421301, 0.0033130720257759094, 0.02868901938199997, -0.019514357671141624, -0.002298216102644801, 0.018312914296984673, 0.010958622209727764, 0.028858918696641922, 0.014283830299973488, 0.01962357945740223, -0.012414918281137943, 0.0028018516022711992, 0.0070994398556649685, 0.020764345303177834, -0.0004634356591850519, -0.01569158211350441, 0.013337238691747189, -0.035193804651498795, 0.005594601389020681, -0.042402464896440506, 0.007882198318839073, 0.013652768917381763, -0.03468409925699234, -0.008222000673413277, 0.02107987552881241, -0.014101793058216572, -0.05266935005784035, -0.007032692898064852, -0.00037620964576490223, 0.02064298652112484, 0.014162472449243069, -0.03055793046951294, -0.0008980488055385649, -0.05305769294500351, 0.003115865169093013, 0.009429512545466423, 0.03242684155702591, 0.014368780888617039, 0.00021522073075175285, 0.05242663249373436, 0.021723072975873947, -0.000749764556530863, 0.008628549985587597, 0.016856618225574493, -0.027621068060398102, 0.003822775324806571, -0.014235286973416805, 0.017511950805783272, 0.003261494915932417, 0.03638311102986336, -0.03385886549949646, 0.01879834569990635, -0.003995710518211126, -0.03820348158478737, 0.009071506559848785, 0.009229271672666073, 0.022572578862309456, 0.018252234905958176, 0.021140554919838905, -0.0014297482557594776, -0.00785792712122202, 0.00042968298657797277, 0.046164561063051224, -0.026941463351249695, -0.01093435101211071, 0.02412595972418785, 0.03225694224238396, 0.03308217599987984, -0.014028978534042835, -0.0037924358621239662, -0.004390123765915632, -0.05072762072086334, 0.010060573928058147, -0.017851753160357475, 0.02083715982735157, 0.0023801326751708984, 0.00959334522485733, -0.0012848773039877415, 0.01424742303788662, -0.006280273664742708, -0.014939162880182266, 0.01997551880776882, -0.004299105145037174, -0.027596797794103622, 0.017050791531801224, 0.02042454294860363, 0.024271588772535324, 0.02601914294064045, -0.007178322412073612, 0.02438081055879593, -0.029198721051216125, -0.012609090656042099, 0.022135689854621887, -0.025485169142484665, -0.006571532692760229, -0.007050896529108286, 0.014429459348320961, -0.011808128096163273, -0.010679499246180058, -0.014295966364443302, 0.005919233895838261, 0.020800752565264702, -0.03555787727236748, 0.002861013635993004, -0.004296071361750364, -0.016759531572461128, -0.012827535159885883, 0.009799654595553875, 0.00753632839769125, 0.01053386926651001, 0.04310634359717369, -0.015740126371383667, 0.04752377048134804, -0.004732959903776646, 0.008543599396944046, 0.003115865169093013, 0.0253880824893713, -0.029368622228503227, 0.028761833906173706, -0.01837359368801117, 0.02019396238029003, -0.00510310148820281, -0.012014436535537243, -0.02499973773956299, 0.03900444507598877, -0.003115865169093013, 0.0007474891026504338, 0.006735365837812424, -0.00815525371581316, 0.013203744776546955, 0.012251084670424461, 0.031868595629930496, 0.00469351839274168, -0.02434440329670906, 0.023021603003144264, 0.0019584137480705976, 0.04128597304224968, 0.027596797794103622, -0.02495119348168373, -0.01857990212738514, 0.008161322213709354, 0.02166239358484745, 0.0007509022834710777, 0.021213369444012642, 0.0018810481997206807, -0.0002013783378060907, -0.02041240595281124, -0.012766855768859386, -0.032499659806489944, -0.01453868206590414, -0.0021207300014793873, -0.029562795534729958, -0.00521839177235961, -0.013167337514460087, 0.01196589320898056, -0.04050928354263306, -0.025339538231492043, -0.0020979754626750946, 0.020800752565264702, -0.029975412413477898, 0.008640686050057411, -0.01106177642941475, -0.008070303127169609, 0.0005445937858894467, -0.004723858088254929, 0.009417376480996609, 0.0010596065549179912, -0.009362765587866306, 0.0051577128469944, -0.013822670094668865, -0.019684258848428726, 0.01536391582340002, -0.00038720769225619733, -0.007129779551178217, -0.02438081055879593, -0.0065108537673950195, -0.009453783743083477, -0.01020620297640562, -0.010673431679606438, 0.002009991090744734, 0.003998744301497936, 0.02516963891685009, 0.001356175052933395, -0.011395511217415333, 0.012056912295520306, -0.013798398897051811, 0.004396191798150539, -0.02065512165427208, 0.009848196990787983, 0.01135303545743227, -0.04320342838764191, 0.01094041857868433, 0.022208504378795624, -0.029756968840956688, -0.006256002001464367, -0.010946487076580524, 0.0048057748936116695, 0.013337238691747189, -0.02334926836192608, 0.022184232249855995, 0.0015268346760421991, -0.005688653793185949, -0.029878325760364532, 0.02396819368004799, 0.0018719462677836418, -0.007645550649613142, -0.009672228246927261, -0.0033009361941367388, 0.027402624487876892, 0.012329967692494392, -0.01671098917722702, -0.0012401265557855368, -0.0026713917031884193, 0.019538629800081253, 0.0037560283672064543, -0.009641888551414013, 0.030703559517860413, 0.019502222537994385, -0.0379364937543869, -0.005057592410594225, -0.0041140345856547356, 0.019757073372602463, 0.010855467990040779, 0.002377098659053445, -0.025460897013545036, -0.007141915149986744, 0.036868542432785034, -0.002908039838075638, 0.012754719704389572, -0.035193804651498795, -0.015024113468825817, 0.0018006485188379884, 0.001758173224516213, 0.011529005132615566, -0.005485379137098789, 0.029028819873929024, 0.005867656785994768, 0.018919704481959343, 0.04555777460336685, 0.02638321742415428, -0.0022193335462361574, -0.004010879900306463, -0.0628148764371872, -0.01404111459851265, -0.0009192864526994526, 0.027766698971390724, 0.018118740990757942, -0.018676988780498505, -0.04058209806680679, 0.04087335616350174, -0.007973217405378819, -0.003813673509284854, 0.0027654441073536873, 0.011777788400650024, 0.032936546951532364, -0.009872469119727612, -0.00747564947232604, 0.016565360128879547, -0.03987821936607361, -0.013798398897051811, -0.01714787818491459, 0.04337333142757416, 0.010309357196092606, -0.0016701887361705303, -0.0006284065893851221, -0.016795938834547997, 0.012111523188650608, -0.010897943750023842, -0.02582497149705887, 0.027087094262242317, 0.008416173979640007, 0.013604225590825081, -0.04196557775139809, 0.021759480237960815, -0.02373761497437954, -0.02060657925903797, 0.001888633007183671, 0.012414918281137943, 0.04339760169386864, -0.007706229574978352, 0.001711147022433579, -0.028227858245372772, -0.0272812657058239, -0.014308101497590542, -0.00020194720127619803, 0.02126191183924675, -0.012135794386267662, -0.013531411066651344, -0.016152743250131607, 0.013434324413537979, -0.01792456954717636, -0.0024559814482927322, -0.01981775276362896, -3.918060247087851e-05, -0.0017050791066139936, 0.007317884359508753, 6.559728717547841e-06, -0.014101793058216572, -0.02497546561062336, -0.007712297607213259, 0.022851701825857162, -0.02433226816356182, 0.021808022633194923, 0.012669769115746021, 0.02107987552881241, -0.03881027176976204, 0.015946434810757637, -0.006365224253386259, -0.05058199167251587, 0.019769208505749702, -0.009696499444544315, 0.031067634001374245, 0.039101529866456985, 0.014393052086234093, -0.0057736043818295, 0.007669822312891483, 0.020351728424429893, 0.015145471319556236, -0.01515760738402605, 0.037475332617759705, 0.018470678478479385, -0.010855467990040779, 0.006729298271238804, -0.023676935583353043, 0.03198995441198349, -0.0045296852476894855, 0.014781397767364979, 0.03482973203063011, -0.00291865854524076, 0.009781450033187866, 0.011286289431154728, -0.023652663454413414, 0.017511950805783272, 0.015643039718270302, 0.008228069171309471, 0.02866474725306034, 0.05723240599036217, 0.011207406409084797, -0.010333629325032234, 0.04148014634847641, -0.014672175981104374, -0.029247265309095383, 0.005078829824924469, 0.02083715982735157, 0.018312914296984673, -0.015509545803070068, 0.012730448506772518, -0.021176962181925774, 0.007669822312891483, -0.004462938290089369, -0.02106773853302002, -0.022390540689229965, 0.012803263030946255, 0.03055793046951294, 0.0042080869898200035, 0.02064298652112484, 0.010564208962023258, -0.013507138937711716, 0.004681382793933153, -0.021553171798586845, -0.008604278787970543, -0.029004549607634544, 0.016225557774305344, 0.012839670293033123, -0.016832347959280014, -0.02003619633615017, 0.034562744200229645, 0.015060520730912685, -0.020497357472777367, -0.030169585719704628, -0.015800803899765015, 0.025849241763353348, 0.0026971802581101656, 0.007299680262804031, -0.006080033257603645, 0.020909974351525307, -0.0033858867827802896, -0.0034162262454628944, 0.022135689854621887, -0.010212271474301815, 0.0015306271379813552, 0.050679076462984085, 0.0026713917031884193, 0.02788805589079857, -0.02766961231827736, -0.0007827587542124093, -0.01735418662428856, -0.011650362983345985, 0.0009390070918016136, 0.008901605382561684, 0.010400376282632351, -0.035582151263952255, 0.03669864311814308, -0.032281212508678436, -0.017997384071350098, -0.010600616224110126, 0.0177668035030365, -0.005257832817733288, -0.008871265687048435, -0.015024113468825817, -0.02231772616505623, -0.013276559300720692, -0.015303237363696098, -0.011656430549919605, -0.004150441847741604, -0.015230421908199787, -0.014186743646860123, -0.015800803899765015, -0.028980277478694916, 0.013664904981851578, 0.010285085998475552, -0.028616202995181084, -0.00265470496378839, 0.017014384269714355, 0.017439136281609535, 0.017876025289297104, -0.025266723707318306, 0.006058795377612114, 0.023676935583353043, -0.01393189188092947, 0.023810429498553276, 0.01208118349313736, -0.0028579796198755503, 0.008173457346856594, -0.012803263030946255, -0.010418579913675785, 0.0032129515893757343, 0.005379191134124994, -0.021625986322760582, -0.016638174653053284, 0.009945283643901348, -0.018701259046792984, 0.03791222348809242, -0.011571479961276054, 0.011844535358250141, -0.01586148329079151, -0.007020557299256325, 0.01918669044971466, -0.030994819477200508, 0.014113929122686386, 0.017050791531801224, -0.019926974549889565, -0.009211068041622639, 0.0010838781017810106, -0.01716001331806183, -0.011723177507519722, -0.003240257268771529, 0.030630744993686676, -0.012730448506772518, -0.03371323645114899, -0.032305486500263214, -0.01041251141577959, 0.035412248224020004, -0.0018522256286814809, -0.01495129894465208, 0.00782758742570877, 0.034150127321481705, -0.00018421756976749748, -0.009896740317344666, 0.014696447178721428, -0.012305695563554764, 0.0029125907458364964, -0.019320184364914894, 0.005491447169333696, -0.03980540484189987, -0.01061881985515356, -0.028324944898486137, -0.03752387687563896, 0.00645017484202981, -0.010558141395449638, 0.014854212291538715, 0.013567818328738213, -0.00990887638181448, 0.017026519402861595, 0.00072966463631019, 0.014490138739347458, -0.003989642485976219, -0.02580069936811924, 0.0058069778606295586, -0.009775382466614246, -0.004684416577219963, -0.013130929321050644, 0.008798451162874699, 0.048421818763017654, -0.010333629325032234, 0.0024074383545666933, 0.03198995441198349, -0.0272812657058239, -0.02394392341375351, 0.01900465413928032, -0.015218286775052547, -0.004202018957585096, 0.007560600060969591, 0.013786262832581997, -0.00937490165233612, 0.0334705226123333, -0.006547261029481888, -0.013361509889364243, -0.022803157567977905, -0.021723072975873947, -0.008203797042369843, -0.005357953254133463, -0.006359156221151352, 0.015970705077052116, -0.04473253712058067, -0.02271820791065693, -0.005952607374638319, -0.022414812818169594, -0.013058114796876907, 0.00021749619918409735, 0.018070198595523834, 0.02206287533044815, -0.00814311858266592, 0.04009666666388512, -0.009738975204527378, 0.029150178655982018, 0.013240152038633823, -0.008786315098404884, 0.006535125430673361, -0.013325102627277374, -0.01174744963645935, 0.0029975413344800472, 0.017196420580148697, -0.01668671704828739, -0.010788721032440662, 0.001337971305474639, 0.011377307586371899, 0.013616361655294895, -0.009896740317344666, 0.029417166486382484, 0.009241407737135887, -0.007730501238256693, -0.012336035259068012, -0.030630744993686676, 0.024429354816675186, 0.004168645478785038, 0.007542396429926157, -0.01290034968405962, 0.004262697882950306, 0.018312914296984673, -0.00018867368635255843, -0.014732854440808296, 0.024684205651283264, 0.0058919284492731094, 0.007002353668212891, 0.006046659778803587, 0.0057189930230379105, -0.01612847112119198, -0.00244839652441442, 0.009848196990787983, -0.013677040114998817, -0.027985142543911934, 0.00949625950306654, 0.013045979663729668, -0.00779724819585681, -0.014526546001434326, -0.015752261504530907, -0.010764449834823608, 0.0004717790288850665, 0.025339538231492043, 0.0029838886111974716, 0.01731777936220169, -0.0035102786496281624, 0.0111467270180583, 0.026480304077267647, 0.01557022426277399, -0.0204609502106905, 0.0051182713359594345, -0.008689229376614094, -0.0022602917160838842, 0.005931369494646788, -0.0020524661522358656, 0.023604121059179306, 0.006137677934020758, 0.006322748959064484, -0.004475074354559183, -0.013652768917381763, 0.02190510928630829, 0.013907620683312416, 0.016152743250131607, 0.01777893863618374, 0.013325102627277374, -0.027451166883111, -0.009411308914422989, -0.02084929496049881, -0.021104147657752037, 0.012706177309155464, 0.018834752961993217, -0.030242400243878365, -0.012609090656042099, 0.00032330513931810856, -0.019878432154655457, -0.03419866785407066, 0.011328764259815216, -0.0012401265557855368, 0.0157037191092968, 0.004729926120489836, 0.003373750951141119, -0.01775466836988926, 0.010291153565049171, 0.003540618112310767, -0.03669864311814308, 0.0086831608787179, -0.0008980488055385649, 0.009556937962770462, -0.029999684542417526, -0.008658889681100845, -0.01063702441751957, -0.0027821308467537165, 0.01413820032030344, 0.004159543663263321, -0.01020620297640562, -0.0007820002501830459, -0.02149249240756035, -0.025727884843945503, 0.03075210377573967, 0.012512004002928734, -0.004305173177272081, -0.005813045427203178, -0.007457445841282606, 0.018009519204497337, -0.011450122110545635, -0.004465972539037466, 0.005588533356785774, -0.015533817000687122, 0.004420462995767593, 0.00035250690416432917, -0.02104346826672554, 0.006644347682595253, 0.007621278986334801, 0.0003739341627806425, 0.0016095098108053207, -0.008931945078074932, 0.009829993359744549, 0.0077911801636219025, 0.011213473975658417, -0.005321545992046595, 0.004368885885924101, 0.02684437856078148, 0.02248762734234333, -0.011225610040128231, -0.0011491080513224006, 0.022244911640882492, -0.00930208619683981, -0.015230421908199787, -0.0010368518996983767, -0.010103048756718636, 0.012002300471067429, -0.008998692035675049, 0.020970653742551804, -0.016783803701400757, 0.012129726819694042, -0.016456138342618942, -0.005803943611681461, -0.01073411013931036, 0.018482815474271774, 0.022196369245648384, 0.03740251809358597, -0.0011043573031201959, -0.023082280531525612, -0.0034526335075497627, 6.105821375967935e-05, 0.0008085473091341555, -0.0004251320497132838, 0.0013660354306921363, 0.00015340403479058295, 0.016844483092427254, -0.0011513835052028298, 0.01453868206590414, -0.014611496590077877, 0.008719568140804768, -0.018458543345332146, -0.0198298878967762, -0.011984096840023994, -0.0036983834579586983, -0.0010224407305940986, -0.017087198793888092, 0.0020433643367141485, 0.02163812145590782, -0.024077417328953743, -0.043446145951747894, -0.004563058726489544, -0.0010831196559593081, -0.0051577128469944, -0.05577611178159714, 0.013009571470320225, -0.0009215619065798819, 0.004332478623837233, 0.009471987374126911, 0.008731704205274582, 0.025242453441023827, -0.011474394239485264, 0.0057038236409425735, 0.018531357869505882, 0.0008555735112167895, -0.010345764458179474, -0.02024250477552414, -0.013616361655294895, -0.00785792712122202, 0.019332321360707283, -0.01632264442741871, 0.019235234707593918, 0.010515665635466576, 0.01384694129228592, -0.0004308207135181874, -0.02432013303041458, 0.011365171521902084, 0.015400323085486889, -0.010649159550666809, -0.0006849138881079853, -0.0179367046803236, 0.010764449834823608, 0.03820348158478737, -0.024902651086449623, -0.0030036091338843107, -0.018507087603211403, 0.01814301311969757, -0.0007160118548199534, -0.006310613360255957, -0.01248773280531168, 0.011043572798371315, -0.020509492605924606, 0.01106177642941475, -0.03529088944196701, 0.020278912037611008, 0.010594548657536507, 0.013143065385520458, 0.014526546001434326, 0.008925876580178738, -0.002721451921388507, 0.016007112339138985, -0.021723072975873947, 0.0024650832638144493, 0.008938012644648552, -0.02353130653500557, 0.007566668093204498, 0.0005753125296905637, -0.00909577775746584, -0.011201338842511177, -0.02623758837580681, 0.012123659253120422, -0.006662551313638687, 0.015242557972669601, -0.00835549458861351, -0.012584819458425045, 0.0030703560914844275, -0.0011180100264027715, 0.0013258355902507901, 0.03131034970283508, 0.010103048756718636, -0.017693988978862762, 0.0067171622067689896, -0.005734162870794535, 0.003270596731454134, 0.007457445841282606, 0.006080033257603645, -0.008252340368926525, -0.013288695365190506, -0.01064309198409319, -0.00454485509544611, 0.029854055494070053, -0.007245069369673729, 0.01592216268181801, -0.013956164009869099, -0.039271432906389236, 0.007002353668212891, 0.026358945295214653, -0.034392841160297394, 0.023058010265231133, -0.0063894959166646, -0.010163728147745132, 0.013458596542477608, 0.012214677408337593, 0.0016747396439313889, 0.003746926551684737, -0.006462310440838337, -0.028761833906173706, -0.03565496578812599, -0.007044828962534666, -0.023992465808987617, 0.04257236793637276, -0.0039198617450892925, -0.012742584571242332, -0.007208662107586861, -0.020363863557577133, -0.019089605659246445, 0.008525395765900612, 0.013482867740094662, 0.022341998293995857, 0.011328764259815216, 0.008300883695483208, -0.020473085343837738, 0.03696563094854355, -0.004854317754507065, 0.019332321360707283, 0.024429354816675186, 0.0018840820994228125, 0.013907620683312416, -0.00298843951895833, -0.030582202598452568, 0.014927027747035027, 0.014732854440808296, 0.026480304077267647, -0.018507087603211403, 0.028591932728886604, -0.00037355493986979127, -0.016201285645365715, -0.010910079814493656, 0.002616780810058117, -8.314915612572804e-05, 0.024502169340848923, -0.004044253379106522, 0.0002660393656697124, 0.004778468981385231, -0.010776585899293423, 0.009223204106092453, -0.004092796705663204, -0.032499659806489944, 0.009775382466614246, 0.0031977819744497538, 0.007445309776812792, 0.013689176179468632, 0.012147930450737476, -0.046552907675504684, -0.016140606254339218, 0.013373645953834057, 0.012730448506772518, 0.00489375926554203, -0.014684311114251614, -0.02373761497437954, -0.01269404124468565, 0.006456242874264717, 0.014211015775799751, 0.004374953918159008, 0.014829941093921661, -0.009647957049310207, -0.009283882565796375, -0.034611284732818604, 0.0089683523401618, -0.006031489931046963, -0.014599360525608063, -0.013761990703642368, -0.02805795706808567, -0.006589736323803663, -0.004007846117019653, 0.008488988503813744, 0.0029854055028408766, 0.008507192134857178, 0.014344509690999985, 0.011717109940946102, 0.01319160871207714, 0.019332321360707283, -0.007056964561343193, -0.00665648328140378, 0.024223046377301216, -0.00563404243439436, -0.00876204390078783, -0.012706177309155464, 0.006474446505308151, 0.021723072975873947, -0.001057331101037562, -0.024271588772535324, 0.003437463892623782, -0.02393178641796112, -0.036455925554037094, -0.013118794187903404, 0.021541034802794456, 0.011401578783988953, -0.015400323085486889, -0.012245017103850842, 0.004984777420759201, -0.027135636657476425, 0.0031553066801279783, -0.015376051887869835, 0.0005184259498491883, -0.002187476959079504, -0.010005963034927845, 0.010266882367432117, -0.005700789391994476, 0.01815514825284481, -0.024926921352744102, 0.02061871439218521, 0.008367630653083324, -0.01413820032030344, -0.0035770253743976355, 0.0016944602830335498, -0.022791022434830666, -0.02783951349556446, -0.00909577775746584, -0.016795938834547997, -0.009854265488684177, 0.01175351720303297, -0.0255579836666584, 0.0060072182677686214, -0.0035497199278324842, -0.005075796041637659, -0.01364063285291195, 0.025121094658970833, -0.01105570886284113, -0.0012954961275681853, -0.02599487267434597, -0.0007755531114526093, -0.024757020175457, -0.015339644625782967, -0.004638907499611378, 0.009751111268997192, 0.006161949597299099, 0.005093999672681093, -0.02251189947128296, 0.030897732824087143, -0.008931945078074932, 0.0072025940753519535, -0.010103048756718636, -0.015982842072844505, 0.01796097680926323, -0.010891875252127647, -0.0045175496488809586, -0.013677040114998817, -0.015812940895557404, -0.012633361853659153, 0.0008237170404754579, 0.033955954015254974, -0.007748704869300127, -0.05014510452747345, -0.023240046575665474, -0.0014714651042595506, 0.002503007650375366, -0.006164983846247196, -0.008755975402891636, 0.006480514537543058, -0.026771562173962593, -0.013252288103103638, -0.003382852766662836, -0.02371334284543991, -0.009963487274944782, 0.025266723707318306, 0.014101793058216572, -0.0026471202727407217, 0.016638174653053284, -0.011407647281885147, -0.0035133124329149723, 0.0011900663375854492, 0.009362765587866306, -0.015145471319556236, -0.02769388258457184, -0.014113929122686386, -0.005731129087507725, 0.010388240218162537, 0.006122508551925421, -0.02331286109983921, 0.010661295615136623, 0.006814248859882355, 0.012451325543224812, 0.026043415069580078, -0.004833080340176821, 0.012948893010616302, -0.011717109940946102, -0.00495443819090724, -0.005279070697724819, -0.009150389581918716, 0.01413820032030344, -0.0005043939454481006, -0.017463408410549164, 0.03330061957240105, 0.02149249240756035, -0.00433854665607214, -0.0027912326622754335, 0.00659580435603857, -0.012803263030946255, -0.010922214947640896, 0.03213558346033096, -0.03092200495302677, -0.018058061599731445, -0.004089762922376394, 0.008118846453726292, -0.00244839652441442, -0.009714704006910324, -0.01652895286679268, 0.02393178641796112, -0.027960870414972305, 0.008027828298509121, 0.01248773280531168, 0.018070198595523834, -0.027159908786416054, 0.010685566812753677, 0.00489375926554203, 0.016371186822652817, 0.009969554841518402, 0.00990280881524086, -0.012912485748529434, 0.03405303880572319, 0.0054277339950203896, -0.022875972092151642, 0.024441489949822426, -0.020351728424429893, 0.0067899771966040134, -0.020266776904463768, 0.014732854440808296, 0.008282680064439774, 0.004614635836333036, -0.014890619553625584, -0.0272812657058239, -0.003971438854932785, 0.012560547329485416, 0.012396714650094509, -0.005452005658298731, -0.027305537834763527, 0.02474488504230976, -0.012948893010616302, -0.01692943274974823, 0.001840089913457632, -0.004317308776080608, 0.002571271499618888, 0.014672175981104374, -0.019842024892568588, 0.012184337712824345, -0.006268138065934181, -0.012427053414285183, -0.030145313590765, -0.006583668757230043, 0.02436867542564869, -0.0010406443616375327, -0.013652768917381763, 0.008337290957570076, -0.012475596740841866, -0.014562953263521194, -0.0021556206047534943, -0.01331296656280756, -0.014611496590077877, -0.0154731385409832, 2.5895226372085745e-06, -0.012044776231050491, -0.01126808486878872, -0.0334705226123333, -0.010806924663484097, -0.004966573789715767, 0.020339591428637505, 0.002953548915684223, 0.009399172849953175, -0.006571532692760229, 0.00495140440762043, 0.012791127897799015, -0.006365224253386259, 0.006444106809794903, -0.010691635310649872, -0.003962337039411068, -0.012924620881676674, 0.0006777083035558462, -0.024089552462100983, 0.03689281642436981, 0.004101898521184921, -0.011310560628771782, -0.007445309776812792, 0.0014388501876965165, -0.012997436337172985, 0.01796097680926323, 0.030388029292225838, 0.016359051689505577, -0.018507087603211403, 0.0030324317049235106, -0.013677040114998817, -0.00835549458861351, -0.01855562999844551, -0.02271820791065693, 0.021383270621299744, 0.017062926664948463, 0.0077001615427434444, -0.012754719704389572, 0.019550764933228493, 0.03915007412433624, 0.014732854440808296, -0.004563058726489544, 0.007275409065186977, 0.008701364509761333, -0.0020979754626750946, -0.00814311858266592, 0.037281159311532974, -0.009132185019552708, 0.003437463892623782, -0.0074999211356043816, 0.024902651086449623, -0.014417324215173721, -0.007154050748795271, 0.008379765786230564, 0.007930741645395756, -0.022451220080256462, 0.023264318704605103, 0.005725061055272818, 0.02435654029250145, -0.02249976247549057, -0.0073967669159173965, 0.0234948992729187, -0.006529057398438454, -0.02020609751343727, 0.00045243758358992636, -0.001682324567809701, -0.0035557877272367477, -0.0008760526543483138, 0.0002087735920213163, 0.002310351934283972, -0.02249976247549057, 0.00938096921890974, -0.0017536223167553544, 0.011492597870528698, -0.020509492605924606, 0.009854265488684177, -0.0027806139551103115, -0.006256002001464367, 0.0020812887232750654, -0.00938703678548336, -0.0027533085085451603, -0.03288800269365311, -0.027135636657476425, 0.029198721051216125, -0.023628391325473785, 0.013009571470320225, -0.007924674078822136, 0.008938012644648552, 0.0020964585710316896, 0.007081236224621534, 0.03177151083946228, 0.006698958575725555, -0.014490138739347458, -0.031480252742767334, 0.01331296656280756, 0.0008502640994265676, 0.0016383322654291987, -0.0070084212347865105, 0.025752156972885132, -0.016031384468078613, -0.0031067633535712957, -0.0011741381604224443, -0.004878589417785406, 0.025752156972885132, -0.0011013234034180641, -0.004742061719298363, -0.012827535159885883, 0.009271747432649136, -0.01919882744550705, -0.011577548459172249, 0.011413714848458767, -0.0033039699774235487, 0.0009299052762798965, -0.004150441847741604, 0.008931945078074932, 0.005285138729959726, -0.011019301600754261, 0.01269404124468565, -0.0029929904267191887, -0.009817858226597309, 0.015970705077052116, -0.007220797706395388, 0.006249934434890747, -0.029004549607634544, -0.014198879711329937, 0.013798398897051811, 0.020145419985055923, -0.005397394765168428, 0.0127789918333292, -0.011820264160633087, -0.00848292000591755, -0.014987706206738949, -0.029854055494070053, -0.03182005509734154, 0.027621068060398102, 0.005828215274959803, 0.0030263636726886034, -0.011947689577937126, -0.025485169142484665, 0.01587361842393875, -0.01921096257865429, 0.009429512545466423, 0.0063166809268295765, -0.00949625950306654, 0.012536276131868362, -0.011328764259815216, -0.0036498401314020157, -0.003018778981640935, 0.0017703090561553836, 0.014963435009121895, -0.012596954591572285, 0.0052123237401247025, 0.0007440759218297899, -0.01610419899225235, -0.0009352146880701184, 0.01290034968405962, -0.00768195791170001, 0.01466003991663456, -0.008191660977900028, -0.013118794187903404, 0.003215985605493188, -0.006195323076099157, 0.020594444125890732, 0.0002643327752593905, -0.002170790219679475, -0.009957419708371162, -0.0012302661780267954, 0.013968299143016338, -0.001158968429081142, 0.008404037915170193, -0.03526661917567253, -0.008106710389256477, 0.0028094365261495113, -0.011692837812006474, 0.006076999008655548, -0.021419677883386612, -0.019878432154655457, -0.0007827587542124093, -0.01775466836988926, 0.015400323085486889, 0.002952032024040818, -0.0019129046704620123, -0.0011741381604224443, -0.02122550457715988, 0.0022375371772795916, 0.01874980330467224, 0.0202303696423769, 0.020727938041090965, 0.0030248467810451984, -0.009393105283379555, 0.011856671422719955, -0.0022193335462361574, -0.00583428330719471, 0.014465867541730404, -0.003962337039411068, -0.004681382793933153, 0.007967148907482624, -0.03325207903981209, 0.011595752090215683, 0.014842077158391476, 0.0025561016518622637, 0.010376104153692722, -0.007050896529108286, -0.025946328416466713, -0.002075220923870802, -0.001117251580581069, -0.002160171512514353, 0.003941099159419537, 0.010303289629518986, -0.020764345303177834, 0.017596902325749397, 0.005931369494646788, 0.0012833602959290147, -0.0024423287250101566, 0.01342218928039074, 0.0001037231195368804, 0.016249829903244972, -0.006777841132134199, -0.008094575256109238, -0.0020130248740315437, 0.0006382669671438634, 0.004526651464402676, -0.0049210647121071815, -0.005691687576472759, -0.009186796844005585, -0.016601767390966415, -0.01857990212738514, -0.010018098168075085, 0.015461002476513386, -0.042620912194252014, -0.007609143387526274, 0.017791075631976128, 0.0014282313641160727, -0.023482762277126312, 0.038688912987709045, -0.0052092899568378925, -0.011541140265762806, 0.023628391325473785, 0.0023497932124882936, 0.006984149571508169, 0.022621121257543564, 0.003619500668719411, -0.03152879327535629, 0.0173663217574358, 0.013276559300720692, 0.012093319557607174, 0.024902651086449623, 0.018070198595523834, -0.01134696789085865, 0.020121147856116295, 0.00035098992520943284, 0.01404111459851265, -0.0036073648370802402, 0.031892869621515274, 0.024465762078762054, 0.02190510928630829, -0.006723230239003897, 0.0019614477641880512, -0.005524820648133755, -0.005621906835585833, 0.025048280134797096, -0.01607992872595787, 0.015533817000687122, -0.0015366949373856187, 0.010096981190145016, 0.023640528321266174, -0.0038500807713717222, -0.02866474725306034, -2.6191510187345557e-05, 0.00827054399996996, -0.007445309776812792, -0.0058919284492731094, 0.011583616025745869, 0.0015382119454443455, 0.010297222062945366, -0.0007679682457819581, -0.0007691059727221727, 0.019939109683036804, -0.012044776231050491, -0.006104304920881987, 0.0019781345035880804, -0.009854265488684177, -0.002421091077849269, 0.019526492804288864, 0.011978029273450375, -0.0004232358478475362, 0.02701427787542343, -0.021528899669647217, 0.0022784953471273184, 0.01433237362653017, -0.008658889681100845, 0.022803157567977905, 0.005166814662516117, 0.003980540670454502, -0.0012075115228071809, 0.023227911442518234, -0.010036301799118519, 0.029150178655982018, 0.033519063144922256, -0.012069047428667545, 0.009138253517448902, 0.011783856898546219, -0.020727938041090965, 0.00407459307461977, -0.040921900421381, -0.005497514735907316, 0.008925876580178738, -0.004390123765915632, 0.00117337959818542, 0.007020557299256325, -0.011777788400650024, 0.03776659443974495, 0.008664957247674465, -0.0007486268295906484, -0.009120049886405468, 0.015412459149956703, 0.029562795534729958, 0.002989956410601735, -0.008046031929552555, -0.018325049430131912, -0.004374953918159008, -0.01257268339395523, -0.0032675627153366804, 0.015400323085486889, -0.0004547130665741861, -0.007372495252639055, -0.01592216268181801, 0.00530637614428997, 0.04436846449971199, 0.013337238691747189, -0.013021707534790039, -0.015776533633470535, 0.013155201449990273, 0.001887116115540266, -0.0054155983962118626, 0.00407459307461977, 0.021589579060673714, 0.003234189236536622, 0.005382224917411804, 0.009757178835570812, 0.0002064981235889718, 0.014672175981104374, 0.0038379449397325516, 0.012323899194598198, -0.00387131841853261, 0.02990259788930416, 0.018689123913645744, 0.004390123765915632, 0.017184285447001457, -0.013689176179468632, 0.002317936858162284, -0.026674477383494377, -0.008428309112787247, 0.0031431708484888077, 0.0008229585946537554, -0.007147983182221651, -0.0001927505509229377, -0.006268138065934181, -0.010576345026493073, -0.014490138739347458, -0.012002300471067429, 0.015764396637678146, -0.010752313770353794, -0.0032281214371323586, 0.03118899278342724, 0.013604225590825081, 0.0010353350080549717, 0.010479258373379707, 0.007845791056752205, 0.0059950826689600945, 0.002101009478792548, 0.014829941093921661, 0.005743264686316252, -0.01433237362653017, -0.0020342625211924314, -0.021383270621299744, -0.015327508561313152, -0.02101919613778591, 0.008986555971205235, -0.01632264442741871, 0.021783750504255295, -0.011007165536284447, 0.004305173177272081, 0.02083715982735157, 0.012475596740841866, -0.0009481089655309916, 0.022402677685022354, -0.014429459348320961, 0.00469048460945487, 0.0021525865886360407, -0.02248762734234333, 0.00645017484202981, -0.026553118601441383, 0.008422241546213627, -0.003962337039411068, 0.018822617828845978, -0.002486320910975337, -0.015497409738600254, 0.013033843599259853, 0.03434429690241814, 0.0009738975204527378, 0.007081236224621534, 0.016237692907452583, 0.0003083250194322318, -0.0005514201475307345, 0.01757263019680977, -0.0033312756568193436, -0.017402729019522667, -0.00826447643339634, -0.0008707432425580919, 0.027305537834763527, 0.014842077158391476, -0.013325102627277374, 0.011474394239485264, -0.008859129622578621, -0.014235286973416805, 0.03162588179111481, -0.0025576187763363123, -0.0050151171162724495, 0.017475543543696404, -0.006880995351821184, -0.001447193557396531, 0.018021654337644577, -0.0017536223167553544, -0.00834942702203989, -0.0016064757946878672, 0.0326695591211319, 0.015145471319556236, -0.006747501902282238, 0.007554532028734684, 0.00938096921890974, 0.009101846255362034, 0.017414866015315056, 0.008519328199326992, 0.004839147906750441, 0.011541140265762806, -0.024210909381508827, -0.007469581440091133, 0.012202541343867779, 0.01453868206590414, 0.004450802691280842, 0.0183371864259243, -0.013033843599259853, -0.003655908163636923, 0.015825076028704643, 0.03366469591856003, 0.008646753616631031, -0.0010368518996983767, 0.009035099297761917, -0.0002785544202197343, 0.0008669508388265967, 0.007481717504560947, 0.002298216102644801, 0.002870115451514721, -0.00392896356061101, 0.00806423556059599, -0.023227911442518234, 0.00785792712122202, 0.014283830299973488, 0.0011013234034180641, -0.013531411066651344, 0.0272812657058239, 0.013859077356755733, 0.01391975674778223, 0.04274226725101471, 0.0037803000304847956, 0.014611496590077877, -0.008931945078074932, -0.00803389586508274, -0.024902651086449623, 0.0141260651871562, 0.0025743055157363415, 0.031286079436540604, -0.028931735083460808, -0.01548527367413044, -0.006083067040890455, 0.001383480615913868, 0.012257152236998081, 0.0008411622839048505, 0.014963435009121895, 0.0068931314162909985, 0.0034799391869455576, 0.009223204106092453, -0.003962337039411068, 0.007287544663995504, 0.016589630395174026, 0.01040644384920597, 0.004608567804098129, 0.007372495252639055, -0.002897420898079872, 0.002952032024040818, 0.009690431877970695, -0.012117590755224228, -0.0175362229347229, 0.0024559814482927322, -0.005764502566307783, -0.017803210765123367, 0.015242557972669601, 0.0022481558844447136, -0.0007414211868308485, -0.0056947218254208565, -0.026334675028920174, 0.012463460676372051, 0.025339538231492043, -0.013167337514460087, -0.036431655287742615, 0.021516764536499977, 0.0002973269729409367, 0.008391901850700378, 0.00970256794244051, -0.005782706197351217, -0.004299105145037174, 0.0007619003299623728, -0.012026572600007057, 0.006504785735160112, 0.007117643486708403, 0.054368358105421066, -0.0024256419856101274, -0.012997436337172985, -0.000798686989583075, 0.008416173979640007, -0.02209928259253502, 0.012633361853659153, 0.00407459307461977, -0.005051524378359318, -0.008586074225604534, 0.004578228574246168, 0.009690431877970695, 0.00015065450861584395, 0.012621226720511913, -0.010776585899293423, 0.0056947218254208565, 0.007785112131386995, -0.012584819458425045, 0.003149238647893071, 0.006195323076099157, 0.018664851784706116, 0.01896824687719345, 0.020291049033403397, 0.008367630653083324, -0.011504733003675938, 0.0024165401700884104, -0.02783951349556446, -0.002374064875766635, 0.010746246203780174, 0.011201338842511177, -0.005197153892368078, -0.01754835993051529, -0.010084845125675201, -0.015764396637678146, 0.010030234232544899, -0.004514515399932861, -0.0011961342534050345, -0.012026572600007057, 0.013555682264268398, -0.018009519204497337, -0.022948788478970528, 0.01691729761660099, -0.022669663652777672, -0.019441543146967888, -0.00917466077953577, 0.028931735083460808, 0.006474446505308151, 0.007239001337438822, 0.0036619759630411863, -0.017997384071350098, -0.002824606141075492, -0.007317884359508753, 0.007439242210239172, -0.008416173979640007, 0.0014130616327747703, 0.013567818328738213, 0.01073411013931036, 0.022997330874204636, -0.004241460002958775, -0.013895484618842602, -0.00373782473616302, 0.0069052670150995255, 0.006438039243221283, -0.003176544327288866, -0.015242557972669601, -0.01195375807583332, 0.006438039243221283, -0.028640475124120712, 0.009823925793170929, 0.006128576118499041, 0.014769261702895164, -0.0177668035030365, 0.0025136263575404882, -0.007026624865829945, 0.009732907637953758, -0.006978082004934549, -0.004490244202315807, 0.00794894527643919, -0.0008578489650972188, 0.006468378473073244, -0.011492597870528698, 0.016237692907452583, -0.011425850912928581, -0.007985352538526058, 0.004863419570028782, -0.01940513588488102, 0.0060982368886470795, 0.004089762922376394, 0.02145608514547348, 0.01186880748718977, -0.0030020922422409058, -0.009805722162127495, -0.02951425313949585, -0.01061275228857994, -0.0031522726640105247, 0.010600616224110126, 0.001041402923874557, 0.005640110466629267, -0.009884604252874851, -0.013786262832581997, -0.0007493853336200118, -0.006668619345873594, -0.039538417011499405, -0.008846994489431381, 0.00918072834610939, -0.011607887223362923, 0.005907097831368446, 0.001303839380852878, -0.008076371625065804, 0.010988961905241013, -0.03781513497233391, -0.008082439191639423, -0.0016110267024487257, -0.004286969546228647, 0.0038561488036066294, 0.009192864410579205, -0.024926921352744102, -0.0008244755445048213, -0.0029004549141973257, 0.027087094262242317, 0.005276036914438009, 0.02827640064060688, 0.01916242018342018, 0.0011346967658028007, -0.024477897211909294, 0.011680702678859234, -0.002468117279931903, 0.004575194790959358, 0.00018611378618516028, -0.006249934434890747, 0.012560547329485416, 0.0012742584804072976, -0.028155043721199036, 0.002572788391262293, -0.00214045075699687, 0.0199997890740633, -0.02497546561062336, 0.010212271474301815, -0.015133336186408997, -0.018203692510724068, 0.004050321411341429, -0.0005870690802112222, -0.003131035016849637, 0.01717214845120907, -0.010448919609189034, -0.014113929122686386, 0.008840925991535187, 0.0022936651948839426, -0.022439084947109222, 0.019672123715281487, -0.015934297814965248, 0.0016474340809509158, 0.030460843816399574, 0.0005032562185078859, 0.01072804257273674, -0.007433174178004265, 0.0050029815174639225, -0.0029869223944842815, -0.008731704205274582, 0.011286289431154728, -0.025315267965197563, 0.001251503825187683, -0.006049693562090397, 0.00501208333298564, -0.02473274990916252, -0.009144321084022522, 0.014465867541730404, -0.004186849109828472, -0.018446408212184906, 0.03533943369984627, 0.010169795714318752, 0.003634670516476035, 0.019732801243662834, -0.0034071244299411774, 0.0052001881413161755, -0.02830067276954651, -0.019951246678829193, 8.367061673197895e-05, -0.023094417527318, -0.019963381811976433, -0.013009571470320225, -0.006073965225368738, -0.05179557204246521, 0.018676988780498505, 0.02910163626074791, -0.02766961231827736, 0.011037505231797695, -1.1869138688780367e-05, 0.007657686248421669, 0.0026774597354233265, 0.011249881237745285, -0.021152690052986145, 0.024089552462100983, -0.006771773565560579, -0.021395405754446983, 0.0007759323925711215, 0.015946434810757637, 0.01084333285689354, 0.014065385796129704, -0.028980277478694916, 0.007900401949882507, -0.0015298685757443309, -0.010788721032440662, -0.04186849296092987, -0.02228131890296936, -0.00044106028508394957, -0.009217135608196259, 0.022875972092151642, -0.01106177642941475, 0.013082386925816536, 0.0035011768341064453, -0.00025466206716373563, -0.009132185019552708, 0.021213369444012642, 0.012997436337172985, 0.0007262514554895461, 0.012099387124180794, 0.007493853103369474, -0.022803157567977905, 0.020570171996951103, -0.007135847117751837, 0.002336140489205718, -0.01319160871207714, 0.02123763971030712, 0.008853062056005001, -0.007609143387526274, 0.00929601863026619, -0.0008745357044972479, -0.003346445271745324, 0.010139456018805504, 0.02020609751343727, -0.018737666308879852, 0.01717214845120907, 0.007311816327273846, 0.007445309776812792, -0.012439189478754997, 0.0019295912934467196, -0.008094575256109238, -0.005679551977664232, -0.0017960976110771298, -0.018640579655766487, 0.02516963891685009, 0.0013622429687529802, 0.0036073648370802402, -0.004262697882950306, 0.005330647807568312, 0.015776533633470535, 0.029562795534729958, -0.006759637501090765, 0.0007273891824297607, 0.003170476295053959, 0.013774126768112183, -0.002290631178766489, 0.0020615682005882263, -0.011650362983345985, 0.019465815275907516, 0.0007391457329504192, -4.9349069740856066e-05, -0.019053198397159576, -0.0030521524604409933, 0.0012340586399659514, 0.024295860901474953, 0.018907567486166954, 0.01364063285291195, 0.009478055872023106, -0.020582307130098343, 0.009259611368179321, -0.010048437863588333, 0.006444106809794903, 0.0060163200832903385, -0.00908971019089222, -0.005251765251159668, 0.013968299143016338, 0.005254799034446478, -0.007184390444308519, -0.0014077521627768874, 0.0066140079870820045, -0.002020609797909856, -0.019113875925540924, 0.0002512488863430917, 0.009520530700683594, -0.018470678478479385, 0.030266672372817993, -0.005215357523411512, 0.028373487293720245, -0.02416236698627472, 0.008634617552161217, 0.00805816799402237, -0.025509439408779144, 0.025339538231492043, -0.019902702420949936, 0.026771562173962593, -0.0031280010007321835, 0.011152795515954494, 0.006298477295786142, -0.026456031948328018, -0.008840925991535187, 0.021820159628987312, -0.00475419731810689, 0.013349373824894428, 0.004274833481758833, -0.015315372496843338, 0.004842182155698538, 0.01957503706216812, 0.01384694129228592, 0.00011310939589748159, 0.01515760738402605, -0.029028819873929024, 0.011971961706876755, -0.035023901611566544, 0.012032640166580677, -0.011249881237745285, 0.03405303880572319, 0.014987706206738949, 0.0179367046803236, -0.020109010860323906, -0.009265678934752941, 0.012851806357502937, 0.00686279172077775, 0.004778468981385231, -0.01671098917722702, -0.025727884843945503, 0.008306951262056828, -0.01569158211350441, 0.004905894864350557, 0.0021920278668403625, 0.007560600060969591, -0.0367957279086113, -0.0055217863991856575, 0.01362849771976471, -0.014162472449243069, -0.010630955919623375, 0.025727884843945503, 0.0015162158524617553, -0.0025136263575404882, -0.000704255304299295, 0.010976825840771198, -0.0035133124329149723, -0.011201338842511177, -0.01228142436593771, 0.006644347682595253, 0.005861588753759861, 0.0073057482950389385, 0.0035952292382717133, -0.03495108708739281, 0.003176544327288866, -0.012226813472807407, 0.003813673509284854, 5.148231502971612e-05, -0.006814248859882355, 0.016225557774305344, -0.0038591825868934393, -0.0015746193239465356, -0.00970863550901413, 0.007457445841282606, -0.031067634001374245, 0.0033252076245844364, -0.01855562999844551, 0.010479258373379707, -0.017511950805783272, -0.009969554841518402, -0.002328555565327406, -0.005885860417038202, 0.005458073690533638, 0.009550870396196842, 0.0112620173022151, 0.00173086766153574, 0.014829941093921661, 0.005870690569281578, 0.005867656785994768, 0.01105570886284113, -0.02769388258457184, -0.002871632343158126, -0.00041603020508773625, 0.00930208619683981, 0.017815345898270607, 0.017645444720983505, 0.01941727101802826, 0.0010133387986570597, -0.0028473609127104282, -0.010703770443797112, -0.01756049506366253, -0.012706177309155464, -0.00206763599999249, -0.01921096257865429, 0.0181672852486372, 0.019854160025715828, -0.002739655552431941, -0.0018931839149445295, 0.00803389586508274, 0.0016019248869270086, -0.002607678761705756, 0.02228131890296936, -0.008203797042369843, 0.011249881237745285, 0.024295860901474953, -0.0036619759630411863, 0.018834752961993217, -0.006765705533325672, 0.007603075355291367, -0.004107966553419828, -0.008306951262056828, -0.010503530502319336, -0.0015852381475269794, 0.012050843797624111, -0.01672312431037426, -0.01941727101802826, -0.01856776513159275, 0.0010823612101376057, -0.0730089396238327, -0.00113697221968323, -0.003938065376132727, 0.008325154893100262, 0.00665648328140378, 0.006143745966255665, 0.006086100824177265, 0.0009170109988190234, 0.014441595412790775, -0.009672228246927261, 0.0017005281988531351, -0.024053145200014114, -0.017475543543696404, -0.007991421036422253, -0.010103048756718636, -0.005931369494646788, 0.017657581716775894, 0.027111364528536797, -0.02232986129820347, -0.004050321411341429, -0.016371186822652817, 0.015618767589330673, 0.0023315895814448595, -0.008106710389256477, 0.012706177309155464, 0.0002332348085474223, 0.00551268458366394, -0.006735365837812424, -0.014781397767364979, -0.015776533633470535, -0.016626039519906044, -0.03337343409657478, 0.003428362077102065, 0.016346914693713188, 0.02393178641796112, -0.00824020430445671, -0.022875972092151642, -0.026723019778728485, -0.001644400181248784, 0.016601767390966415, -0.007232933770865202, -0.009065438993275166, -0.005934403743594885, 0.010691635310649872, -0.019684258848428726, 0.010831196792423725, 0.0020782549399882555, -0.012706177309155464, 0.01895611174404621, 0.011650362983345985, -0.0175362229347229, -0.006480514537543058, -0.008646753616631031, 0.0027260028291493654, 0.02166239358484745, 0.0011620023287832737, -0.003029397688806057, -0.0303152147680521, 0.0013940994394943118, -0.00024044043675530702, 0.03194141015410423, 0.004556990694254637, 0.016856618225574493, -0.004781503230333328, 0.0010004445211961865, -0.0037529945839196444, -0.004217188805341721, 0.01798524707555771, 0.029174450784921646, 0.04109179973602295, -0.016383321955800056, -0.003689281642436981, -0.021759480237960815, 0.00999989453703165, -0.008816654793918133, 0.008986555971205235, 0.013567818328738213, 0.009308154694736004, 0.005952607374638319, 0.005291206296533346, -0.011437986046075821, 0.009484123438596725, 0.006705026607960463, 0.004790605045855045, -0.0016610869206488132, 0.0057159592397511005, 0.0025212112814188004, -0.0006906025810167193, -0.015994977205991745, -0.005009049084037542, 0.03444138541817665, 0.026723019778728485, 0.0059950826689600945, 0.011783856898546219, 0.013907620683312416, 0.0036710777785629034, -0.019477950409054756, -0.0016701887361705303, -0.006941674742847681, 0.008646753616631031, 0.003038499504327774, -0.0070084212347865105, -0.026116229593753815, 0.006547261029481888, 0.014647903852164745, -0.0154731385409832, -0.038713183254003525, -0.01654108799993992, -0.011013234034180641, 0.02516963891685009, 0.0007069100392982364, 0.011450122110545635, -0.0071904584765434265, 0.01453868206590414, -0.003580059390515089, -0.003431395860388875, -0.012961029075086117, 0.008258407935500145, -0.019842024892568588, 0.01527896523475647, 0.0018567765364423394, -0.015096928924322128, 0.001439608633518219, -0.01854349486529827, 0.016601767390966415, -0.007372495252639055, 0.007299680262804031, -0.001243918901309371, -0.010831196792423725, 0.007772976532578468, -0.02412595972418785, 0.011723177507519722, -0.0020873567555099726, -0.003540618112310767, 0.013009571470320225, 0.01228142436593771, -0.029562795534729958, 0.008640686050057411, -0.006262070033699274, -0.021990058943629265, 0.013567818328738213, 0.016456138342618942, 0.015849348157644272, 0.003288800362497568, 0.006171051412820816, -0.019308049231767654, 0.001088429125957191, 0.00999989453703165, 0.028179315850138664, 0.010649159550666809, -0.009939216077327728, -0.013616361655294895, 0.014429459348320961, 0.022426947951316833, -0.0009587277891114354, 0.02764534018933773, -0.0009723805706016719, 0.0021343829575926065, 0.0026137467939406633, 0.0073057482950389385, -0.020570171996951103, 0.015376051887869835, 0.013871213421225548, 0.013446460478007793, -0.018713396042585373, 0.002053983276709914, 0.001401684246957302, 0.009010827168822289, -0.03138316422700882, -0.007275409065186977, 0.007245069369673729, 0.01536391582340002, -0.00017653788381721824, 0.017050791531801224, -0.00042778675560839474, -0.013070250861346722, 0.007882198318839073, 0.006607939954847097, -0.0021616884041577578, -0.033543337136507034, 0.007154050748795271, -0.0011612438829615712, 0.0012932205572724342, -0.010303289629518986, 0.0012317831860855222, -0.03172296658158302, 0.009641888551414013, 0.012184337712824345, 0.0043355124071240425, 0.008865198120474815, 0.025121094658970833, -0.00387131841853261, 0.022147824987769127, -0.005515718832612038, 0.006638279650360346, -0.007232933770865202, -0.001533661037683487, -0.0005320787313394248, 0.006522989831864834, 0.012105454690754414, 0.008404037915170193, -0.012099387124180794, -0.011122455820441246, -0.011595752090215683, -0.004823978524655104, -0.017511950805783272, -0.0047056544572114944, 0.0037894018460065126, -0.006516921799629927, -0.012008368968963623, -0.011771720834076405, -0.01094041857868433, 0.011371239088475704, 0.01734204962849617, -0.006935606710612774, 0.008774179965257645, 0.015048385597765446, -0.009271747432649136, 0.019490085542201996, -0.0033312756568193436, 0.019077468663454056, -0.019696393981575966, 0.005952607374638319, -0.01125594973564148, 0.00557032972574234, 0.004374953918159008, -0.010424647480249405, -0.006705026607960463, 0.00706910016015172, 0.010910079814493656, 0.014368780888617039, -0.00474812975153327, -0.012536276131868362, 0.02599487267434597, -0.0006466102786362171, 0.012439189478754997, 0.013009571470320225, 0.004608567804098129, -0.0006469895597547293, 0.014223150908946991, -0.004262697882950306, -0.009235339239239693, -0.006698958575725555, 0.01957503706216812, -0.014259559102356434, -0.0024802531115710735, -0.01978134550154209, 0.013664904981851578, -0.020703665912151337, -0.009745042771100998, -0.04165004566311836, 0.03320353478193283, -0.02205073833465576, 0.039489876478910446, 0.009277814999222755, -0.009848196990787983, -0.003938065376132727, -0.0007053930894471705, 0.027985142543911934, 0.034756917506456375, 0.005882826633751392, -0.006092168856412172, -0.003343411488458514, -0.0175362229347229, 0.00896228477358818, -0.033543337136507034, 0.010703770443797112, -0.004990845452994108, 0.002618297701701522, -0.004939268343150616, 0.0057978760451078415, -0.008325154893100262, 0.011941622011363506, -0.03752387687563896, -0.02541235461831093, -0.015800803899765015, 0.013215879909694195, -0.006589736323803663, 0.005794841796159744, 0.005448971875011921, -0.003580059390515089, 0.009526599198579788, -0.0025909922551363707, -0.01032756082713604, 0.02268180064857006, -0.0018840820994228125, -0.024016737937927246, 0.011401578783988953, 0.0024362606927752495, 0.015084792859852314, 0.0008290264522656798, 0.005245697218924761, 0.03631029650568962, 0.0059950826689600945, -0.03572778031229973, -0.005940471310168505, 0.03237830102443695, -0.02313082478940487, -0.01413820032030344, -0.0025925091467797756, -0.0012772923801094294, -0.01405324973165989, -0.00897441990673542, 0.0015260762302204967, 0.014720719307661057, -0.01856776513159275, -0.015060520730912685, -0.01734204962849617, -0.003176544327288866, 0.015351779758930206, -0.028227858245372772, -0.025460897013545036, 0.019150283187627792, 0.006747501902282238, 0.022463355213403702, 0.033324893563985825, 0.0054186321794986725, -0.017487680539488792, 0.001435816171579063, 0.012536276131868362, 0.004293037112802267, -0.024490034207701683, 0.0009776899823918939, 0.01734204962849617, 0.00856180302798748, 0.011128523387014866, -0.004823978524655104, 0.006131610367447138, -0.004472040105611086, 0.012342102825641632, -0.008391901850700378, 0.0049240984953939915, -0.02144394814968109, -0.0005320787313394248, -0.01383480615913868, 0.0171357411891222, -0.008203797042369843, -0.0003530757676344365, -0.019538629800081253, -0.017888160422444344, -0.0025439660530537367, -0.007597007323056459, -0.004062457475811243, 0.010194067843258381, 0.001019406714476645, -0.004553956910967827, 0.011456189677119255, -0.007955013774335384, 0.028519118204712868, -0.013482867740094662, -0.005069728009402752, -0.015412459149956703, 0.010042370297014713, 0.018640579655766487, -0.025727884843945503, 0.0039016578812152147, -0.01011518482118845, 0.020582307130098343, -0.009338494390249252, -0.005700789391994476, 0.008228069171309471, -0.0050242189317941666, 0.011717109940946102, 0.0021844429429620504, -0.005503582768142223, 0.005452005658298731, 0.013130929321050644, 0.013871213421225548, 0.004672280978411436, 5.759761916124262e-05, 0.018264370039105415, -0.004019982181489468, -0.0008199246367439628, 0.008622482419013977, 0.022378405556082726, -0.01383480615913868, 0.010272949934005737, -0.031067634001374245, 0.0004918789491057396, 0.0272812657058239, 0.03495108708739281, 0.020388135686516762, 0.00039706804091110826, -0.02415023185312748, -0.02041240595281124, -0.006101270671933889, -0.0004755714617203921, 0.0038106394931674004, -0.030485115945339203, 0.037062715739011765, 0.003391954582184553, -0.01668671704828739, 0.01486634835600853, 0.008859129622578621, 0.0014896687353029847, 0.018482815474271774, 0.005539990030229092, 0.0013986503472551703, -0.01690516248345375, 0.02086143009364605, -0.001392582431435585, -0.015339644625782967, -0.017220692709088326, -0.011450122110545635, 0.012851806357502937, 0.007542396429926157, 0.019744938239455223, -0.016152743250131607, 0.00034359467099420726, -0.003971438854932785, 0.0037985036615282297, 0.01856776513159275, -0.014999842271208763, 0.0005024977726861835, 0.0021161790937185287, 0.021541034802794456, 0.023045873269438744, 0.0013136997586116195, -0.007669822312891483, 0.011116388253867626, -0.02107987552881241, -0.0032372232526540756, -0.002962650964036584, 0.00011936691589653492, -0.011377307586371899, 0.0043142749927937984, -0.0057038236409425735, 0.014854212291538715, -0.03594622388482094, -0.005973844788968563, 0.020072603598237038, -0.0038652506191283464, 0.0034465657081454992, -0.018446408212184906, 0.038883086293935776, 0.009016895666718483, 0.015303237363696098, -0.021541034802794456, -0.027790969237685204, 0.004975675605237484, -0.007117643486708403, 0.015121200121939182, 0.02291237935423851, -0.002336140489205718, -0.003476905170828104, -0.02499973773956299, 0.022172097116708755, -0.007178322412073612, 0.0075848717242479324, -0.0067171622067689896, 0.011383375152945518, 0.003422294044867158, 0.0035193804651498795, -0.001074017840437591, 0.010467123240232468, 0.012730448506772518, -0.025873513892292976, 0.015291101299226284, -0.026091959327459335, -0.026577390730381012, -0.01032149326056242, -0.008076371625065804, 0.013337238691747189, 0.020885702222585678, -0.005943505559116602, 0.017038656398653984, 0.025703612715005875, 0.0018309879815205932, -0.0078518595546484, 0.012961029075086117, 0.00856180302798748, -0.012093319557607174, 0.013761990703642368, -0.007044828962534666, 0.01536391582340002, 0.012360306456685066, 0.008416173979640007, 0.004936234559863806, 0.007979284971952438, 0.013482867740094662, -0.00011623815953498706, -0.010976825840771198, -0.017718259245157242, 0.019854160025715828, -0.0015670345164835453, -0.010800857096910477, -0.003719621105119586, -0.024477897211909294, -0.011565412394702435, -0.0027624103240668774, -0.007979284971952438, 0.014854212291538715, -0.02288810908794403, 0.03779086470603943, -0.0031553066801279783, 0.0036407383158802986, 0.0031583404634147882, -0.004189882893115282, 0.012336035259068012, 0.0045175496488809586, 0.0031522726640105247, 0.018252234905958176, 0.02083715982735157, -0.00908971019089222, -0.01939299888908863, -0.010697702877223492, -0.007184390444308519, -0.00227394443936646, -0.024672070518136024, 0.025290995836257935, -0.0007581079262308776, -0.02499973773956299, 0.028591932728886604, 0.01651681587100029, -0.02413809485733509, -0.01290034968405962, 0.01567944698035717, -0.003264528699219227, -0.005436835810542107, 0.004963540006428957, -0.013592089526355267, 0.022426947951316833, 0.009690431877970695, -0.025630798190832138, 0.0074999211356043816, 0.004350682254880667, -0.00706910016015172, -0.009393105283379555, -0.008658889681100845, 0.009453783743083477, 0.0037438925355672836, -0.002971752779558301, -0.0089683523401618, -0.006674686912447214, 0.003610398853197694, 0.009738975204527378, -0.008992623537778854, -0.0065108537673950195, -0.021007061004638672, -0.007044828962534666, 0.0056947218254208565, 0.0045084478333592415, 0.004120102152228355, 0.002841292880475521, 0.005928335711359978, 0.0028261232655495405, -0.009757178835570812, 0.0014752575661987066, -0.00353455008007586, -0.006347020622342825, -0.010837264358997345, -0.009235339239239693, -0.01064309198409319, 0.016589630395174026, 0.0007850342080928385, 0.010812993161380291, 0.02184442989528179, -0.0006132368580438197, -0.006204424891620874, 0.01855562999844551, -0.004781503230333328, -0.008258407935500145, 0.01732991449534893, 0.017669716849923134, 0.014999842271208763, 0.02169880084693432, 0.009235339239239693, 0.023252181708812714, 0.008397969417273998, 0.010036301799118519, -0.0038925560656934977, 0.006759637501090765, -0.023094417527318, 0.009271747432649136, -0.01208725105971098, 0.013507138937711716, 0.015060520730912685, -0.016759531572461128, -0.024611391127109528, -0.0070994398556649685, 0.0183371864259243, 0.008950148709118366, -0.010952554643154144, -0.000682638434227556], "33a52153-0b96-43ff-a3fc-bc2546b70869": [-0.017229557037353516, -0.02901306003332138, -0.001964425900951028, 0.041492581367492676, -0.013676189817488194, 0.003834217321127653, -0.03345781937241554, 0.003318307688459754, -0.008956682868301868, 0.03990516811609268, -0.013126700185239315, 0.004808035213500261, 0.020062481984496117, -0.013895985670387745, 0.0003171013668179512, 0.007143366616219282, -0.0013111436273902655, 0.02947707287967205, -0.01672890968620777, -0.01657016947865486, 0.0035991580225527287, -0.014469897374510765, -0.03294496238231659, 0.03047836571931839, 0.012894692830741405, -0.020441018044948578, -0.015532243996858597, 0.0009600807097740471, -0.018011054024100304, -0.007076207082718611, -0.006374081131070852, -0.016851019114255905, 0.03016088157892227, 0.022895406931638718, 0.025764964520931244, -0.018304115161299706, -0.022602345794439316, -0.012894692830741405, 0.004969829693436623, -0.002083481987938285, 0.002280382439494133, 0.009603859856724739, -0.009371853433549404, -0.013981461524963379, -0.024849148467183113, -0.00010865778313018382, -0.05607237666845322, -0.004499710630625486, 0.016411427408456802, -0.019842686131596565, 0.011191274970769882, 0.013383128680288792, -0.02854904532432556, 0.02442176640033722, 0.05729346349835396, -0.016851019114255905, -0.020831767469644547, 0.058074962347745895, 0.015056019648909569, -0.037194352596998215, 0.011930033564567566, -0.035729046911001205, 0.01726618967950344, -0.0019308459013700485, 0.030747003853321075, 0.008291189558804035, 0.020441018044948578, -0.006105441600084305, -0.002553601050749421, 0.01580088399350643, 0.006239761598408222, 0.014689693227410316, -0.02664414793252945, 0.01987931877374649, 0.026375507935881615, 0.0012302465038374066, 0.025740541517734528, 0.05182299017906189, 0.03191924840211868, -0.03663264960050583, 0.021784216165542603, -0.016338162124156952, 0.007741699926555157, 0.0036174743436276913, 0.049698296934366226, 0.014836223796010017, -0.007692856714129448, -0.04329979419708252, -0.012278043664991856, -0.006422924809157848, 0.010299880057573318, 0.021393468603491783, 0.03763394430279732, 0.006825883872807026, -0.007302108220756054, -0.006703774910420179, 0.021307991817593575, 0.02588707208633423, -0.005113307386636734, -0.029110746458172798, -0.038415439426898956, 0.005925331264734268, 0.024153128266334534, 0.028671154752373695, 0.0010508991545066237, 0.014079148881137371, 0.01427452266216278, 0.011130220256745815, -0.013566291891038418, 0.037340883165597916, -0.028695575892925262, -0.05455822870135307, 0.024543875828385353, 0.023542582988739014, -0.03250537067651749, -0.01912224292755127, -0.04461856931447983, 0.007436428219079971, -0.019977005198597908, -0.013505237177014351, -0.001508807297796011, -0.05236027017235756, 0.01658237911760807, 0.004460025113075972, 0.005446054041385651, 0.020135747268795967, 0.010287669487297535, 0.03494754806160927, 0.047793399542570114, 0.03379972651600838, -0.0023551741614937782, 0.024543875828385353, 0.011466019786894321, -0.015947414562106133, -0.030649317428469658, 0.013297651894390583, 0.012180356308817863, 0.08635536581277847, 0.006416819058358669, 0.003556419862434268, -0.0008272873819805682, 0.004060118924826384, -0.0054582650773227215, -0.0017278400482609868, 0.024201970547437668, -0.026155712082982063, -0.003678528591990471, 0.05675618723034859, 0.00022265782172325999, -0.031748298555612564, -0.027450066059827805, -0.0019827422220259905, -0.04828183352947235, -0.02793850190937519, 0.05196952074766159, 0.01051967591047287, 0.004927091300487518, 0.037731628865003586, -0.007766121998429298, 0.053239453583955765, 0.03616863861680031, -0.026619726791977882, 0.031430814415216446, 0.017595883458852768, 0.064766526222229, 0.04207870364189148, 0.026766257360577583, 0.029061902314424515, -0.0294038075953722, 0.013199965469539165, 0.02586265094578266, -0.023432685062289238, 0.034898705780506134, -0.033433400094509125, 0.014079148881137371, -0.007631802000105381, 0.016765542328357697, 0.013102278113365173, 0.038586392998695374, -0.004322652705013752, -0.008126342669129372, -0.0071250502951443195, 0.025129998102784157, 0.010873791761696339, -0.015300236642360687, 0.021442310884594917, 0.0037731630727648735, 0.014213467948138714, -0.02057533897459507, 0.0005678060697391629, 0.006148179993033409, -0.030600473284721375, 0.028353670611977577, 0.0322367325425148, -0.02379901148378849, -0.02218717522919178, 0.012943536043167114, -0.011716342531144619, -0.023396052420139313, 0.004902669694274664, 0.00409064581617713, -0.014225679449737072, -0.007143366616219282, 0.03594884276390076, 0.0005078964168205857, -0.0005365156685002148, 0.003109196200966835, -0.04190775379538536, 0.04627924785017967, 0.010202192701399326, 0.06935781985521317, -0.02710816077888012, 0.010965373367071152, -0.00898110494017601, 0.04012496396899223, 0.0022483288776129484, 0.026815099641680717, 0.0174981951713562, -0.0071250502951443195, -0.026839522644877434, 0.012906903401017189, -0.036193057894706726, -0.005388052202761173, -0.015861937776207924, -0.02186969295144081, 0.0086025670170784, -0.038732923567295074, 0.0295503381639719, -0.039123669266700745, -0.06774598360061646, 0.005861224140971899, 0.009756496176123619, 0.041101835668087006, -0.00658166641369462, 0.005247627384960651, 0.030185304582118988, 0.024360712617635727, 0.0026665516197681427, -0.009683230891823769, 0.01826748251914978, 0.020611971616744995, 0.023432685062289238, -0.01903676800429821, -0.06090788543224335, 0.00890783965587616, -0.0008639200241304934, -0.010690628550946712, 0.030380677431821823, 0.004511921666562557, 0.007650118321180344, -0.0076195914298295975, 0.012485628016293049, 0.007656224071979523, -0.023054147139191628, -0.007998128421604633, 0.02279771864414215, 0.026424352079629898, 0.005195730831474066, 0.02427523583173752, -0.0007387584773823619, 0.0292572770267725, -0.01765693724155426, 0.0001636067609069869, -0.003211462404578924, 0.04405686631798744, 0.01527581550180912, 0.03560693562030792, -0.02073408104479313, -0.02433629147708416, 0.018475066870450974, 0.03817122057080269, -0.018694862723350525, -0.01348081510514021, 0.0451558455824852, -0.04708516597747803, 0.01362734567373991, -0.0030267727561295033, -0.013615135103464127, -0.030600473284721375, -0.012326886877417564, 0.007418111898005009, -0.01393261831253767, 0.030600473284721375, 0.010128927417099476, 0.01554445456713438, 0.02639993093907833, -0.04075992852449417, -0.062373191118240356, -0.02871999703347683, 0.0021460626740008593, -0.004127278458327055, -0.0066060880199074745, -0.03316475823521614, 0.029379386454820633, 0.0066427206620574, -0.017901156097650528, -0.009793128818273544, -0.016338162124156952, 0.0010631100740283728, -0.03055163100361824, -0.011197379790246487, -0.011331699788570404, 0.009957975707948208, -0.012369625270366669, 0.058856457471847534, -0.022370338439941406, 0.05250680074095726, 0.04422781988978386, 0.018707074224948883, 0.029281698167324066, 0.002710816217586398, -0.01719292439520359, -0.029770134016871452, -0.01405472680926323, 0.03147965669631958, 0.059833329170942307, -0.04251829534769058, -0.032065778970718384, -0.021075984463095665, -0.003528945380821824, -0.035289451479911804, -0.008938366547226906, 0.005598689895123243, 0.016154998913407326, 0.007399795576930046, -0.050259996205568314, 0.023359419777989388, -0.030453942716121674, -0.005791011266410351, -0.008993315510451794, -0.058758772909641266, -0.008797941729426384, -0.006593876983970404, 0.015092652291059494, -0.012485628016293049, -0.029110746458172798, -0.039025984704494476, -0.025227684527635574, -0.02832924947142601, 0.00030527208582498133, -0.05612121894955635, -0.04913659393787384, 0.010507465340197086, 0.0017858416540548205, -0.01950078085064888, 0.0005014094058424234, -0.01834074780344963, 0.008706360124051571, 0.0065145064145326614, 0.00014509963511954993, 0.0006177944014780223, 0.02357921563088894, 0.04083319380879402, -0.030576052144169807, 0.03199251368641853, 0.0018026316538453102, -0.03230999782681465, 0.017827890813350677, 0.0018240007339045405, 0.004893511533737183, -0.0025719173718243837, -0.04071108624339104, 0.005604795645922422, -0.039025984704494476, -0.012797005474567413, 0.01539792399853468, 0.029061902314424515, 0.009536700323224068, -0.019329829141497612, 0.023896699771285057, 0.0024162286426872015, 0.012082668952643871, -0.021149249747395515, -0.006661036983132362, 0.009713757783174515, -0.05695156008005142, 0.03685244545340538, -0.0134319718927145, -0.04244503006339073, 0.01918329857289791, -0.02740122191607952, 0.00798591785132885, 0.016912072896957397, 0.014726325869560242, 0.019171087071299553, 0.00987249892205, 0.012577209621667862, -0.04642577841877937, -0.02979455515742302, 0.0030374573543667793, -0.005775747820734978, 0.011917822062969208, -0.021161461248993874, -0.002451334847137332, -0.0024360711686313152, -0.024543875828385353, 0.017168501392006874, -0.010965373367071152, 0.018829181790351868, -0.02488578110933304, -0.011496546678245068, -0.02847578004002571, -0.007302108220756054, -0.01163697149604559, -0.007717278320342302, -0.01995258405804634, -0.008669727481901646, -0.00898721069097519, 0.018768128007650375, 0.010312091559171677, 0.04413013160228729, -0.06032176315784454, 0.011124114505946636, 0.021979590877890587, 0.017547039315104485, 0.0397830568253994, -0.024201970547437668, 0.025618433952331543, -0.03055163100361824, 0.00905437022447586, 0.038049113005399704, 0.004270756617188454, 0.011661393567919731, 0.013383128680288792, -0.01450653001666069, 0.019317617639899254, 0.0006303868722170591, 0.018157584592700005, -0.007222737651318312, 0.016093945130705833, 0.01973278820514679, 0.02725469134747982, -0.009713757783174515, 0.0064107137732207775, -0.040344759821891785, 0.00621839240193367, 0.01765693724155426, -0.0024085966870188713, -0.010318196378648281, -0.034288160502910614, 0.02825598418712616, 0.01301680225878954, -0.01588635891675949, 0.007576853036880493, -0.042567141354084015, -0.011203485541045666, 0.012760372832417488, 0.025447480380535126, 0.0185116995126009, 0.0005197257269173861, 0.0015126231592148542, 0.0044386559166014194, -0.03279843181371689, 0.0008188923820853233, 0.014555373229086399, -0.0012371151242405176, 0.04652346670627594, -0.0008906312868930399, 0.004643188323825598, -0.0400761179625988, -0.006392397452145815, 0.0045149740763008595, 0.04107741266489029, -0.0042493874207139015, 0.024922413751482964, -0.012687107548117638, -0.0012935905251652002, -0.01897571235895157, 0.01355408038944006, 0.005137729458510876, 0.005867329426109791, 0.0029336647130548954, -0.015690986067056656, 0.03599768504500389, 0.03663264960050583, -0.012052142061293125, -0.0087490975856781, -0.014213467948138714, 0.0068014622665941715, 0.027376800775527954, 0.01635037362575531, -0.0009967134101316333, -0.01765693724155426, 0.013810508884489536, -0.03624190390110016, 0.029354963451623917, -0.03675476089119911, -0.024433977901935577, -0.025471903383731842, 0.012919114902615547, -0.02857346646487713, 0.007552431430667639, 0.0014301997143775225, 0.018719283863902092, 0.028158297762274742, -0.018633808940649033, 0.023212889209389687, -0.0023795960005372763, 0.016460271552205086, 0.013676189817488194, 0.028842106461524963, -0.028133874759078026, 0.0189512912184, -0.003663265146315098, -0.019549624994397163, 0.05035768449306488, -0.023164045065641403, 0.014604216441512108, 0.031675033271312714, -0.01335870660841465, -0.03248095139861107, 0.007161682937294245, -0.033433400094509125, 0.009890815243124962, 0.010886002331972122, -0.004676768556237221, 0.014421053230762482, -0.04166353493928909, 0.002121641067788005, -0.016081733629107475, -0.007680645678192377, -0.019451936706900597, -0.0037731630727648735, 0.012125407345592976, 0.01301680225878954, -0.0107455775141716, -0.011453808285295963, -0.010653995908796787, 0.0005716219893656671, -0.02434850111603737, -0.013322073966264725, -0.009029948152601719, -0.00685030547901988, 0.004728664644062519, 0.001350065809674561, 0.010611257515847683, -0.005204888992011547, -0.0021140091121196747, 0.02227265201508999, -0.001804158091545105, -0.007436428219079971, 0.041810065507888794, 0.02771870605647564, -0.010653995908796787, -0.0027840815018862486, 0.012760372832417488, 0.013309863395988941, 0.023444896563887596, 0.0021170619875192642, 0.006230603437870741, -0.02066081576049328, 0.005272048991173506, -0.0189512912184, -0.01864601857960224, 0.004652346484363079, -0.030282991006970406, 0.010428094305098057, 0.014530951157212257, 0.00692967651411891, -0.04085761681199074, 0.003002350917086005, -0.032114624977111816, -0.0031656716018915176, 0.007314319256693125, -0.025813806802034378, 0.00558342644944787, -0.03675476089119911, -0.0029611391946673393, 0.014799591153860092, 0.03399509936571121, 0.022773297503590584, -0.009280271828174591, 0.04325094819068909, -0.003006929997354746, 0.0043959179893136024, 0.023212889209389687, 0.006026071030646563, -0.033433400094509125, -0.03140639141201973, 0.008126342669129372, 0.02979455515742302, -0.01743714138865471, 0.02125914767384529, -0.0323832631111145, 0.039123669266700745, -0.0020270065870136023, -0.030600473284721375, -0.010544097982347012, -0.01534908078610897, 0.022529080510139465, 0.0068869381211698055, 0.04029591381549835, -0.004722559358924627, -0.008144658990204334, 0.001448516035452485, 0.020709658041596413, -0.009707652032375336, -0.028671154752373695, 0.011301172897219658, 0.0379025824368, 0.04942965507507324, 0.010953162796795368, 0.014482107944786549, -0.027621017768979073, -0.04750033840537071, 0.007460849825292826, -0.020318910479545593, 0.018157584592700005, 0.001534755458123982, -0.01980605348944664, 0.018389590084552765, -0.006270288489758968, 0.006728196982294321, -0.014250100590288639, 0.014457685872912407, 0.0014904909767210484, -0.000596425321418792, -0.0016103102825582027, 0.010696734301745892, -0.023969965055584908, 0.020673025399446487, -0.01348081510514021, 0.04163911193609238, -0.023164045065641403, -0.01919550821185112, 0.017461562529206276, -0.02150336652994156, -0.012369625270366669, -0.022211596369743347, 0.021393468603491783, -0.011600338853895664, -0.014042516238987446, -0.008028656244277954, -0.0008394982432946563, 0.04090645909309387, -0.021454522386193275, 0.0016164156841114163, 0.011111903935670853, -0.02434850111603737, 0.005388052202761173, -0.001646942924708128, -0.001495070056989789, 0.006819778587669134, 0.02539863809943199, -0.013602924533188343, 0.042347345501184464, 0.005351419560611248, -0.008346138522028923, 0.0325297936797142, 0.0292572770267725, -0.03594884276390076, 0.014445475302636623, -0.01842622272670269, 0.0224313922226429, -0.00783328153192997, -0.005134676583111286, -0.021405678242444992, 0.011484336107969284, 0.02933054231107235, -0.015324658714234829, 0.012143723666667938, -0.030063195154070854, 0.044423192739486694, -0.015361291356384754, 0.024372924119234085, 0.010580730624496937, -0.04713401198387146, 0.0058154333382844925, 0.014445475302636623, 0.051236867904663086, 0.013578502461314201, -0.009396274574100971, -0.024812515825033188, 0.006422924809157848, 0.014616427943110466, -0.0045912922360002995, 0.013102278113365173, 0.006960203405469656, -0.021759795024991035, -0.031675033271312714, -0.013370917178690434, -0.058465711772441864, -0.015263604000210762, 0.02050207369029522, -0.007296002935618162, -0.009097108617424965, 0.013590713031589985, -0.003687686752527952, -0.025227684527635574, -0.017547039315104485, -0.005952805746346712, 0.027987344190478325, -0.002025480382144451, 0.005772694945335388, -0.020404385402798653, 0.02194295823574066, -0.008272873237729073, -0.005894803907722235, 0.002926032990217209, -0.0034465219359844923, -0.034214895218610764, 0.0026161817368119955, -0.017253978177905083, -0.0010646363953128457, -0.00728989765048027, 0.029916664585471153, -0.0011035585775971413, -0.049087751656770706, -0.0002680670586414635, -0.017632516101002693, 0.0017614199314266443, 0.014359998516738415, -0.004612661432474852, -0.0019934268202632666, 0.009127635508775711, -0.018621597439050674, -0.03262748196721077, 0.012387941591441631, -0.0014584374148398638, 0.02740122191607952, -0.019146665930747986, 0.044349927455186844, -0.011044744402170181, -0.03892829641699791, 0.007692856714129448, 0.05695156008005142, -0.012870270758867264, -0.02603360451757908, 0.015458978712558746, -0.0027718704659491777, 0.01017777156084776, 0.009707652032375336, 0.02632666565477848, -0.0018377379747107625, 0.005791011266410351, -0.008688043802976608, 0.0068014622665941715, -0.000682664685882628, 0.017156291753053665, 0.0044874995946884155, -0.0025520746130496264, 0.010776104405522346, 0.020404385402798653, -0.04322652891278267, 0.012271937914192677, -0.000994423869997263, -0.00987249892205, -0.012992380186915398, -0.0051865726709365845, 0.017766835168004036, 0.03975863754749298, -0.03939231112599373, 0.004621819593012333, -0.0027062371373176575, -4.8843532567843795e-05, -0.014640849083662033, 0.02118588238954544, -0.007326530292630196, -0.005326997954398394, 0.06159169599413872, -0.005363630596548319, -0.014811801724135876, -0.0240310188382864, -0.016789965331554413, -0.01774241402745247, -0.0010363986948505044, 0.021210305392742157, -0.00028237668448127806, 0.02394554205238819, 0.022846562787890434, 0.010684522800147533, 0.04071108624339104, 0.005766589660197496, -0.002744395984336734, -0.00487519521266222, -0.024763671681284904, -0.019708365201950073, -0.005641428288072348, 0.02532537281513214, 0.008932261727750301, -0.04251829534769058, -0.02556958980858326, 0.060614824295043945, -0.007760016247630119, 0.005183520261198282, -0.0024665985256433487, 0.014592005871236324, -0.0011356121394783258, -0.01462863851338625, -0.005098043940961361, 0.005925331264734268, -0.045790813863277435, 0.00466150464490056, -0.010953162796795368, 0.01958625763654709, 0.015495611354708672, -0.003504523541778326, -0.011453808285295963, -0.016680067405104637, -0.006178706884384155, -0.02041659690439701, -0.01565435342490673, 0.022138331085443497, -3.658495188574307e-05, -0.009506172500550747, -0.05236027017235756, 0.0009013158269226551, -0.002216275315731764, -0.034288160502910614, -0.008382771164178848, 0.029208432883024216, 0.033750880509614944, -0.0077539109624922276, 0.014396632090210915, -0.039416730403900146, -0.025129998102784157, 0.01309006754308939, -0.0024437031242996454, 0.024372924119234085, -0.003211462404578924, -0.021784216165542603, -0.016338162124156952, 0.008956682868301868, 0.013151121325790882, 0.003938009962439537, -0.011325594037771225, 0.039416730403900146, -0.019683944061398506, -0.008114132098853588, -0.02088061161339283, -0.019305406138300896, -0.038806188851594925, -0.023628059774637222, 0.03162618726491928, -0.001086005475372076, 0.01935425028204918, -0.008578145876526833, 0.003620526986196637, -0.04977156221866608, 0.0014569110935553908, -0.023530373349785805, -0.028451358899474144, 0.008401087485253811, -0.014555373229086399, 0.01713186874985695, 0.0455954372882843, 0.02173537202179432, 0.001817895332351327, 0.0016683120047673583, 0.031357549130916595, 0.007595169357955456, -0.0017492090119048953, 0.02703489549458027, 0.0018087371718138456, -0.030209725722670555, 0.005613953806459904, -0.010495254769921303, 0.005907014943659306, 0.002649761736392975, 0.00924974400550127, 0.035435982048511505, 0.02947707287967205, 0.016411427408456802, -0.010684522800147533, -0.01696091704070568, 0.027694283053278923, 0.020697448402643204, 0.01964731141924858, 0.014103570021688938, 0.05743999406695366, 0.019378671422600746, -0.015336869284510612, 0.06242203712463379, -0.00700294179841876, -0.00875520333647728, -0.00685030547901988, 0.03431258350610733, 0.0011104271980002522, -0.02786523662507534, 0.023444896563887596, 0.009780917316675186, -0.011698026210069656, 0.018621597439050674, -0.022834351286292076, -0.030527208000421524, 0.004124226048588753, 0.0013111436273902655, 0.024678194895386696, -0.009139846079051495, 0.0052628908306360245, -0.014262312091886997, 0.006077967118471861, -0.007784438319504261, -0.014885067008435726, -0.026815099641680717, -0.010617363266646862, 0.01995258405804634, -0.01213761791586876, -0.015165917575359344, 0.02586265094578266, 0.015849726274609566, -0.0198915284126997, -0.008510985411703587, -0.028524624183773994, 0.015385713428258896, 0.01116685289889574, -0.0010898213367909193, -0.013248808681964874, 0.024519454687833786, -0.02588707208633423, 0.013419761322438717, -0.004197491332888603, -0.0010325828334316611, -0.0023200679570436478, 0.03145523741841316, -0.0014927805168554187, -0.0030221936758607626, -0.038268908858299255, 0.01736387610435486, -0.014530951157212257, 0.03563135862350464, 0.008205713704228401, -0.004695084877312183, 0.002185748191550374, -0.031675033271312714, 0.0173516646027565, -0.029818978160619736, 0.014921699650585651, -0.014066937379539013, 0.012967958115041256, -0.0216376855969429, -0.006447346415370703, -0.025056732818484306, -0.005342261400073767, -0.02179642766714096, -0.013212176039814949, -0.03033183515071869, -0.005922278389334679, -0.016216052696108818, 0.010440305806696415, -0.02302972599864006, -0.017608093097805977, 0.012345203198492527, 0.009921343065798283, -0.025447480380535126, -0.0025276527740061283, -0.009243639186024666, 0.014982754364609718, 0.014115781523287296, -0.014738536439836025, -0.003971589729189873, 0.03614421561360359, 0.0031000380404293537, 0.01457979530096054, -0.012155934236943722, 0.013224386610090733, 0.010537992231547832, 0.007674540393054485, -0.02510557696223259, -0.002491020131856203, -0.008297295309603214, -0.009451223537325859, -0.01589857041835785, 0.006392397452145815, -0.011411070823669434, 0.023005304858088493, -0.028231563046574593, -0.008657515980303288, -0.009896920993924141, -0.01780346781015396, 0.014359998516738415, -0.005626164376735687, -0.0011768238618969917, 0.02525210753083229, 0.00171257636975497, -0.012180356308817863, -0.00905437022447586, -0.018768128007650375, -0.02718142606317997, -0.0011195853585377336, 0.024165337905287743, -0.010904318653047085, -0.00975039042532444, -0.02915959060192108, 0.033824145793914795, 0.03311591595411301, 0.022626766934990883, -0.005693324375897646, 0.010501359589397907, 0.030673738569021225, -0.002898558508604765, -0.01151486299932003, 0.01082494854927063, 0.014714114367961884, -0.019708365201950073, -0.00032015409669838846, -0.023847855627536774, 0.009414590895175934, -0.003014561953023076, -0.02825598418712616, -0.0016286266036331654, 0.010641785338521004, -0.017302822321653366, 0.003583894344046712, 0.023090779781341553, 0.0037243193946778774, 0.0051590981893241405, 0.02320067770779133, 0.007784438319504261, 0.012992380186915398, -0.017229557037353516, 0.006114599760621786, -0.007454744540154934, 0.01636258326470852, 0.002382648643106222, 0.025203263387084007, 0.043495167046785355, -0.011655288748443127, 0.011655288748443127, 0.032358840107917786, -0.0031961987260729074, -0.035509247332811356, 0.017852311953902245, -0.012699319049715996, -0.01033040788024664, 0.013199965469539165, 0.03406836465001106, -0.01477516908198595, -0.0034892598632723093, 0.007100628688931465, -0.024751460179686546, -0.006343553774058819, -0.006935781799256802, -0.011978876776993275, 0.00924974400550127, -0.01102032233029604, 0.019317617639899254, -0.05192067474126816, -0.020746290683746338, -0.01758367195725441, -0.011734658852219582, 0.012326886877417564, -0.012552788481116295, 0.011209591291844845, 0.012613842263817787, -0.018719283863902092, 0.004057066049426794, -0.00783328153192997, 0.003348834812641144, 0.0147019037976861, -0.015324658714234829, -0.0005868856096640229, -0.019757209345698357, -0.02111261710524559, 0.002619234612211585, -0.01159423403441906, -0.02127135917544365, -0.010537992231547832, 0.002926032990217209, 0.012149829417467117, 0.01780346781015396, -0.01642363891005516, 0.010873791761696339, 0.018023263663053513, 0.00028485702932812274, -0.030991222709417343, -0.009158162400126457, 0.016179420053958893, -0.0006483215838670731, 0.03025856986641884, -0.010879897512495518, -0.0014660692540928721, 0.0201845895498991, 0.00508888578042388, -0.0396365262567997, 0.018316324800252914, 0.017998842522501945, 0.020294487476348877, -0.005125518422573805, 0.0005666612996719778, -0.023689113557338715, 0.0012676423648372293, 0.005443001165986061, -0.016924284398555756, -0.03040510043501854, 0.029452651739120483, 0.009243639186024666, 0.007503587752580643, -0.0031717768870294094, -0.007778332568705082, -0.01649690419435501, 0.0035503143444657326, 0.02110040746629238, -0.002342963358387351, 0.0038311646785587072, -0.0027352378237992525, 0.003440416418015957, 0.03961210697889328, 0.006789251230657101, -0.013725033029913902, -0.016789965331554413, 0.003767057554796338, -0.006416819058358669, 0.01075168326497078, 0.008962788619101048, 0.026912787929177284, -0.012033825740218163, 0.0003831164794974029, 0.014213467948138714, -0.014762958511710167, 0.02539863809943199, 0.020929453894495964, 0.005494897719472647, 0.02304193750023842, 0.007253265008330345, -0.029379386454820633, 0.004112015012651682, -0.006282499525696039, -0.01659459061920643, 0.013712822459638119, 0.008724676445126534, -0.02857346646487713, 0.00175073544960469, -0.01047693844884634, -0.008938366547226906, -0.04000285267829895, 0.007418111898005009, 0.002329226117581129, 0.030771426856517792, -0.0068442001938819885, 0.015324658714234829, -0.0211980938911438, 0.028744420036673546, -0.008730781264603138, -0.01136833243072033, -0.0002749356790445745, 0.0072288429364562035, 0.010635679587721825, -0.005443001165986061, 0.006258077919483185, -0.013688400387763977, -0.011630866676568985, 0.008016444742679596, 0.009219217114150524, -0.01477516908198595, -0.002611602656543255, -0.024287447333335876, -0.025276528671383858, 0.02434850111603737, 0.013212176039814949, 0.009884710423648357, -0.006862516514956951, -0.000802865601144731, 0.013065645471215248, -0.017925577238202095, -0.00046019768342375755, -0.001231009722687304, -0.020770713686943054, 0.0029565601143985987, -0.005879540462046862, -0.007192210294306278, 0.02318846806883812, 0.004246334545314312, -0.00013489210687112063, 0.02434850111603737, -0.00868193805217743, 0.012039931491017342, 0.01323659811168909, 0.007265475578606129, -0.008504880592226982, -0.0065145064145326614, 0.02188190259039402, -0.0029474019538611174, -0.012375730089843273, 0.013773876242339611, 0.027132583782076836, -0.00606880895793438, -0.02273666486144066, 0.009616070427000523, -0.009841972030699253, -0.002658919896930456, -0.0011264539789408445, 0.0028039240278303623, -0.017241766676306725, 0.003241989528760314, -0.015532243996858597, 0.003980747889727354, -0.017717991024255753, 0.015520032495260239, 0.030502786859869957, 0.06437578052282333, -0.013651767745614052, -0.009774812497198582, 0.0001155264035332948, 0.007118945010006428, 0.023225100710988045, 0.009359641931951046, -0.0006063467008061707, -0.008443825878202915, -0.004859931766986847, 0.01208877470344305, 0.002820714144036174, -0.018316324800252914, 0.012400152161717415, -0.02118588238954544, -0.016374794766306877, 0.0024665985256433487, 0.0013370917877182364, -0.005958911031484604, -0.010135033167898655, -0.008920050226151943, 0.014885067008435726, -0.015251393429934978, -0.029428228735923767, -0.006935781799256802, -0.01489727757871151, -0.005726904142647982, -0.04107741266489029, 0.022675611078739166, 0.0006475584232248366, 0.011984982527792454, 0.016838807612657547, 0.009811445139348507, 0.005415526684373617, -0.0027703442610800266, -0.013493026606738567, 0.02764544077217579, -0.005378894042223692, -0.002080429345369339, -0.018255271017551422, -0.002632971853017807, 0.0001625573931960389, 0.031430814415216446, -0.014653060585260391, 0.017534827813506126, -0.005574268288910389, -0.011563706211745739, 0.004298231098800898, -0.01987931877374649, 0.009939659386873245, 0.009933553636074066, -0.01432336587458849, -0.005546793807297945, -0.028695575892925262, 0.0020789029076695442, 0.03836659714579582, -0.02703489549458027, 0.024433977901935577, -0.020172379910945892, 0.013493026606738567, 0.002384175080806017, 0.008974999189376831, -0.011398859322071075, -0.002332278760150075, -0.02173537202179432, -0.013309863395988941, -0.01842622272670269, 0.016802174970507622, 0.012223094701766968, 0.01810874044895172, -0.006074914708733559, 0.024971256032586098, 0.0026573934592306614, 0.02488578110933304, -0.011600338853895664, -0.0031656716018915176, 0.024824725463986397, -0.013688400387763977, -0.013725033029913902, -0.028597889468073845, -0.005207941867411137, -0.028988637030124664, -0.008260662667453289, 0.033750880509614944, -0.008712464943528175, 0.014164624735713005, -0.003767057554796338, -0.0072776866145431995, 0.0017369982087984681, 0.026692992076277733, 0.011655288748443127, 0.012339097447693348, 0.010886002331972122, -0.011063060723245144, 0.005974174942821264, 0.0065572443418204784, 0.006630509626120329, 0.003889166284352541, 0.005632270127534866, -0.01370061095803976, -0.018682651221752167, -0.01973278820514679, -0.02542305923998356, 0.05714693292975426, -0.016924284398555756, 0.017754623666405678, -0.03438584879040718, -0.02310299128293991, -0.002936717588454485, 0.01258942112326622, -0.03831775113940239, 0.021515576168894768, -0.018560543656349182, 0.0004262361617293209, -0.0039960118010640144, 0.028915371745824814, 0.014665271155536175, -0.011722448281943798, 0.022761086001992226, 0.0031565134413540363, -0.003373256651684642, -0.025007888674736023, -0.03546040505170822, 0.018670441582798958, -0.007876019924879074, -0.00416391110047698, -0.0053972103632986546, -0.034654486924409866, -0.01965952292084694, 0.0026161817368119955, 0.02073408104479313, 0.005326997954398394, 0.008394982665777206, 0.008663621731102467, -0.024678194895386696, 0.022919828072190285, 0.010757788084447384, 0.014066937379539013, 0.0225779227912426, -0.0032358840107917786, 0.015068230219185352, 2.7426789529272355e-05, -0.008840679191052914, 0.002504757372662425, 0.027694283053278923, 0.028060609474778175, -0.014811801724135876, 0.014616427943110466, 0.023237310349941254, -0.026204556226730347, -0.022077277302742004, 0.001961373258382082, -5.738161416957155e-05, 0.022748876363039017, 0.015239182859659195, 0.0053819469176232815, -0.009848077781498432, -0.007131156045943499, 0.0073204245418310165, -0.03384856879711151, -0.01604510098695755, 0.014189046807587147, 0.02088061161339283, 0.009268060326576233, 0.010617363266646862, -0.02379901148378849, -0.020673025399446487, -0.006416819058358669, 0.02173537202179432, 0.00882846862077713, 0.016374794766306877, -0.035045236349105835, -0.028060609474778175, 0.010623469017446041, 0.014469897374510765, 0.013810508884489536, -0.008394982665777206, -0.007821070961654186, -0.0009303166880272329, 0.010947057045996189, -0.003873902838677168, 0.021246938034892082, -0.0008326296228915453, -0.010012924671173096, 0.003382414812222123, -0.018145373091101646, -0.002710816217586398, -0.0006395450327545404, 0.014225679449737072, 0.015080440789461136, -0.005412474274635315, 0.022944249212741852, 0.013407549820840359, -0.016448060050606728, 0.028842106461524963, -0.005122465547174215, -0.013041223399341106, 0.004267703741788864, 0.002516968408599496, 0.006459557451307774, -0.016216052696108818, -0.01742492988705635, 0.0027611861005425453, 0.007283791899681091, 0.0017171554500237107, -0.011258434504270554, -0.06842979043722153, -0.006325237452983856, -0.003449574578553438, 0.007442533504217863, 0.02503231167793274, -0.02610686980187893, -0.009878604672849178, -0.007845493033528328, -0.020477650687098503, -0.005018672905862331, 0.0034556800965219736, -0.005562057252973318, -0.009542805142700672, 0.0008784204255789518, 0.017913365736603737, -0.0005987148615531623, 0.004005169961601496, -0.035875577479600906, 0.020770713686943054, 0.021747583523392677, 0.0008249978418461978, -0.008578145876526833, 0.010342618450522423, -0.024702617898583412, -0.016851019114255905, -0.01659459061920643, -0.012699319049715996, -0.018230849876999855, 0.013969250954687595, -0.016521325334906578, 0.010049557313323021, -0.015764251351356506, -0.004481394309550524, -0.0201845895498991, 0.03414162993431091, -0.004231071099638939, -0.006288604810833931, -0.005482686683535576, -0.0016683120047673583, -0.024299658834934235, -0.018169794231653214, -0.008590356446802616, 0.02180863730609417, 0.0031656716018915176, -0.010904318653047085, -0.03218789026141167, 0.02304193750023842, -0.012613842263817787, 0.012955747544765472, -0.010452516376972198, -0.028890950605273247, 0.005754378624260426, 0.003002350917086005, 0.011466019786894321, -0.016936495900154114, -0.031821563839912415, -0.006703774910420179, -0.003907482605427504, 0.027279114350676537, 0.009811445139348507, -0.04759802296757698, -0.030991222709417343, 0.0033549403306096792, -0.010965373367071152, 0.004557712469249964, -0.03629074618220329, 0.02494683489203453, -0.027376800775527954, -0.014726325869560242, -0.0037578993942588568, -0.047939930111169815, -0.022248229011893272, 0.03299380838871002, -0.0015721512027084827, 0.009921343065798283, 0.013578502461314201, 0.01573982834815979, -0.0010241878917440772, 0.010934846475720406, -0.0012783268466591835, -0.024140916764736176, -0.023615848273038864, -0.02125914767384529, -0.02740122191607952, 0.011972771026194096, -0.0020865346305072308, -0.011423281393945217, -0.0074730608612298965, -0.0015919939614832401, 0.01620384305715561, 0.033604349941015244, 0.0010135032935068011, -0.006233655847609043, -0.012870270758867264, 0.009359641931951046, -0.0014775169547647238, -0.009982396848499775, 0.015690986067056656, 0.011856768280267715, -0.013175543397665024, 0.036803603172302246, 0.025300949811935425, 0.004273809026926756, 0.015922991558909416, 0.003672423306852579, -0.030185304582118988, 0.013639557175338268, 0.017791256308555603, -0.026692992076277733, -0.03636401146650314, 0.006978519726544619, 0.02348152920603752, -0.016838807612657547, 0.00031252228654921055, -0.0061726015992462635, 0.025740541517734528, -0.02901306003332138, -0.007625696714967489, 0.025349793955683708, 0.036803603172302246, -0.015031597577035427, 0.002581075532361865, -0.01689986325800419, 0.0027092897798866034, 0.012833638116717339, 0.01151486299932003, -0.0025520746130496264, -0.0014584374148398638, -0.001767525332979858, -0.007949285209178925, 0.034825440496206284, -0.027010474354028702, 0.017388297244906425, -0.014982754364609718, 0.040491290390491486, 0.00806528888642788, -0.004750033840537071, -0.003174829762428999, -0.006825883872807026, -0.025984760373830795, 0.004655399359762669, 0.007460849825292826, 0.0010867685778066516, -0.02241918258368969, 0.027743127197027206, 0.007955390959978104, -0.020245645195245743, -0.023860067129135132, 0.0017171554500237107, -0.0008761308854445815, -0.012650474905967712, -0.010263247415423393, -0.0012760373065248132, 0.01527581550180912, -0.020331120118498802, -0.015556665137410164, -0.015764251351356506, 0.011295067146420479, -0.0012539051240310073, -0.026351086795330048, 0.015556665137410164, 0.020013637840747833, -0.002191853476688266, -0.005101096350699663, 0.002863452071323991, -0.010727261193096638, -0.014494318515062332, 0.006139021832495928, -0.001356934430077672, -0.00677704019472003, -0.022675611078739166, -0.013199965469539165, -0.0035106290597468615, 0.010537992231547832, 0.017449352890253067, 0.002553601050749421, 0.002584128174930811, 0.004231071099638939, 0.017473774030804634, -0.013847141526639462, -0.004154752939939499, 0.0023536477237939835, -0.005519319325685501, -0.028060609474778175, -0.0011470598401501775, -0.006825883872807026, 0.04913659393787384, 0.007357057183980942, 0.008346138522028923, 0.012601631693542004, 0.005589531734585762, -0.007937074638903141, 0.009365747682750225, 0.006722091231495142, -0.0028695575892925262, 0.004490552470088005, -0.008492669090628624, -0.01681438647210598, -0.010208298452198505, -0.0034831545781344175, -0.03406836465001106, 0.010055662132799625, -0.005974174942821264, 0.0051102545112371445, 1.7612768715480343e-05, 0.02542305923998356, 0.024812515825033188, 0.004838562570512295, -0.019134454429149628, -0.004783613607287407, -0.004313494544476271, 0.001467595575377345, -9.048455103766173e-05, 0.025471903383731842, 0.02035554312169552, 0.015703195706009865, -0.0025887072551995516, 0.019146665930747986, -0.011044744402170181, -0.023701325058937073, 0.01713186874985695, 0.008126342669129372, -0.02542305923998356, -0.0043257055804133415, 0.008388876914978027, 0.024446189403533936, -0.010037345811724663, -0.005241521634161472, 0.02256571315228939, 0.008321717381477356, -0.01221088320016861, 0.019708365201950073, -0.007509693503379822, -0.006722091231495142, 0.002863452071323991, -0.00353199802339077, -0.012943536043167114, -0.006599982734769583, -0.0024528612848371267, 0.00863309483975172, -0.011191274970769882, -0.0292572770267725, 0.006819778587669134, -0.01271152961999178, 0.012992380186915398, -0.012223094701766968, 0.008785730227828026, 0.0008829995058476925, -0.022297073155641556, -0.016106154769659042, 0.021161461248993874, -0.006984625477343798, -0.004044855013489723, 0.010763893835246563, -0.010305985808372498, 0.015165917575359344, 0.004676768556237221, 0.015104862861335278, -0.00898721069097519, -0.009567227214574814, -0.011795713566243649, 0.004960671532899141, 0.006404608488082886, 0.0007421927875839174, 0.027816392481327057, 0.022602345794439316, -0.012308570556342602, -0.0011142431758344173, -0.0024681247305125, 0.005036989226937294, 0.02542305923998356, -0.02173537202179432, 0.004133384209126234, 0.000334463722538203, 0.015568876639008522, -0.012326886877417564, -0.023603638634085655, 0.012748162262141705, 0.002130799228325486, 0.02141788974404335, -0.002777975983917713, -0.01323659811168909, -0.001246273284777999, -0.01774241402745247, 0.02571612037718296, 0.007070101331919432, 0.010367040522396564, -0.0023368578404188156, -0.003620526986196637, 0.014640849083662033, 0.018719283863902092, -0.0012752740876749158, -0.0005571215879172087, 0.009548910893499851, -0.008816258050501347, 0.01810874044895172, -0.009848077781498432, -0.003269464010372758, -0.00924974400550127, -0.008370560593903065, -0.015214760787785053, 0.014482107944786549, -0.006441241130232811, -0.0025490219704806805, -0.008016444742679596, -0.003254200564697385, 0.007009047083556652, -0.010495254769921303, 0.004554659593850374, 0.016325950622558594, -0.01713186874985695, -0.002068218309432268, 0.0034007311332970858, -0.018768128007650375, -0.0058581712655723095, 0.005207941867411137, 0.017107447609305382, -0.016032889485359192, -0.002953507471829653, 0.009359641931951046, -0.01659459061920643, -0.0025490219704806805, 0.01642363891005516, -0.009567227214574814, 0.009463435038924217, -0.018218638375401497, -0.011478230357170105, 0.005855118855834007, -0.005369735881686211, 0.010153349488973618, 0.006807567551732063, 0.0067526185885071754, 0.0001759130391292274, -0.01131948921829462, 0.021222515031695366, 0.014396632090210915, 0.004713401198387146, -0.014494318515062332, -0.005317839793860912, -0.00735095189884305, -0.01595962420105934, 0.02525210753083229, -0.02610686980187893, -0.002910769311711192, 0.00466150464490056, -0.017901156097650528, 0.01643584854900837, 0.009005527012050152, -0.02371353656053543, -0.023457108065485954, -0.001455384655855596, -0.010507465340197086, 0.00924974400550127, 0.01116685289889574, 0.004637083038687706, -0.009561121463775635, -0.014237890020012856, 0.01934203878045082, -0.013309863395988941, -0.010934846475720406, -0.010043451562523842, -0.003002350917086005, 0.024983467534184456, 0.021002719178795815, -0.01887802593410015, 0.025154419243335724, 0.011997193098068237, 0.004716453608125448, 0.015117073431611061, -0.011539285071194172, -0.01477516908198595, -0.007088417652994394, 0.005476581398397684, 0.005952805746346712, -0.0019308459013700485, 0.006230603437870741, -0.006703774910420179, 0.01323659811168909, 0.003477049060165882, -0.005058358423411846, -0.0021002718713134527, 0.007149472367018461, -0.006966309156268835, 0.028426935896277428, -0.011691921390593052, 0.004713401198387146, -0.011136326007544994, 0.012430679053068161, 0.0026283927727490664, -0.01864601857960224, 0.017217345535755157, -0.01588635891675949, -0.0019445831421762705, -0.02211390994489193, -0.020282277837395668, 0.00587038230150938, -0.02972128987312317, -0.010556308552622795, 0.01657016947865486, 0.004136436618864536, -0.017412720248103142, 0.018633808940649033, -0.00913374125957489, -0.018792549148201942, 0.03931904584169388, -0.012833638116717339, -0.006758723873645067, 0.013847141526639462, 0.009194795042276382, -0.02578938566148281, 0.020941665396094322, 0.016851019114255905, 0.007363162934780121, 0.015507821924984455, 0.02725469134747982, -0.009121529757976532, 0.02710816077888012, -0.016924284398555756, 0.0031168279238045216, -0.010263247415423393, 0.015788672491908073, 0.035899996757507324, 0.025984760373830795, -0.00777222728356719, 0.004020433407276869, -0.005760484375059605, -0.006120705511420965, 0.02771870605647564, 0.0009173426078632474, -0.0072776866145431995, -0.008498774841427803, 0.002252907957881689, 0.0020361647475510836, 0.0023658587597310543, -0.008718570694327354, -2.5828880097833462e-05, 0.02786523662507534, 0.004707295447587967, -0.009280271828174591, 0.01144159771502018, -0.007631802000105381, 0.005882593337446451, 0.012540576979517937, -0.004008222371339798, 0.021539999172091484, 0.002863452071323991, 0.0019796895794570446, 0.02150336652994156, -0.013041223399341106, -0.013053434900939465, 0.01619163155555725, 0.009170373901724815, -0.005388052202761173, 0.005036989226937294, -0.0066488259471952915, 0.008077499456703663, -0.007589064072817564, -0.001608783844858408, 0.023701325058937073, 0.013187753967940807, -0.0026039709337055683, 0.008651411160826683, 0.028597889468073845, -1.9747287296922877e-05, 0.020233433693647385, 0.011276750825345516, 0.002123167272657156, 0.008956682868301868, -0.008761309087276459, -0.02002584934234619, -0.001118822256103158, -0.02649761736392975, -0.003211462404578924, -0.002121641067788005, -0.00024040177231654525, 0.0017736308509483933, 0.006422924809157848, 0.007387584540992975, 0.043177682906389236, 0.005552899092435837, -0.009805339388549328, -0.026912787929177284, 0.010440305806696415, 0.01595962420105934, 0.01973278820514679, -0.034043941646814346, -0.0025001782923936844, 0.008657515980303288, -0.0036693704314529896, -0.014079148881137371, 0.021222515031695366, -0.0027077633421868086, 0.006496190093457699, -0.01874370686709881, -0.004170016851276159, 0.02095387689769268, -0.002794765867292881, -0.020209012553095818, -0.014225679449737072, 0.01489727757871151, -0.0070334686897695065, -0.010733366943895817, -0.0069907307624816895, 0.017595883458852768, 0.010421989485621452, 0.0018758969381451607, 0.004194438457489014, 0.011404965072870255, -0.0011035585775971413, 0.0003957089502364397, 0.014372210018336773, 0.0041303313337266445, 0.0323832631111145, 0.008199607953429222, 0.007576853036880493, 0.003388520097360015, -0.014555373229086399, 0.010831053368747234, -0.024678194895386696, 0.0016698383260518312, 0.005617006216198206, 0.006880832836031914, -0.010367040522396564, -0.0056689027696847916, -0.013981461524963379, -0.012650474905967712, -0.03353108465671539, -0.0028955056332051754, -0.003238936886191368, 0.0018484224565327168, -0.0011020322563126683, 0.030380677431821823, 0.019610678777098656, -0.009848077781498432, 0.006911360193043947, 0.005357525311410427, 0.012406257912516594, -0.018243059515953064, -0.002568864729255438, -0.014653060585260391, -0.01672890968620777, -0.01941530406475067, -0.005400263238698244, 0.003229778725653887, -0.0028542939107865095, -0.011270645074546337, -0.006013859994709492, 0.020209012553095818, -0.0005746746901422739, 0.006734302267432213, 0.022455815225839615, 0.0012600105255842209, 0.015007175505161285, 0.015849726274609566, -0.01385935302823782, 0.009292482398450375, 0.0008593409438617527, -0.012467311695218086, 0.0027611861005425453, -0.027816392481327057, 0.0030756162013858557, 1.570481799717527e-05, 0.005965016782283783, 0.008291189558804035, -0.011618655174970627, -0.005690271500498056, 0.046035028994083405, -0.014115781523287296, 0.003623579628765583, 0.015434556640684605, 0.0007257843972183764, 0.003345782170072198, 0.008401087485253811, -0.007094523403793573, -0.003794532036408782, 0.012192566879093647, -0.008962788619101048, 0.02418976090848446, 0.0238844882696867, -0.007570747751742601, 0.018670441582798958, -0.01912224292755127, -0.013749455101788044, 0.011691921390593052, -0.007576853036880493, -0.013468604534864426, 0.0024955992121249437, -0.006905254442244768, -0.013053434900939465, -0.0031809350475668907, 0.011154642328619957, -0.014982754364609718, 0.012870270758867264, 0.020392175763845444, 0.013749455101788044, 0.0002932520001195371, 0.009848077781498432, -0.00608101999387145, 0.004340969026088715, 0.01159423403441906, -0.0005147650372236967, -0.0033213603310287, 0.011252328753471375, -0.022834351286292076, 0.016851019114255905, -0.012039931491017342, 0.018560543656349182, 0.0024452293291687965, 0.00579711701720953, -0.008938366547226906, 0.002625339897349477, 0.026692992076277733, 0.026986053213477135, -0.002240697154775262, -0.006325237452983856, 0.0023139624390751123, -0.0009089476661756635, -0.006050492636859417, 0.011826240457594395, -0.00208195555023849, -0.013334284536540508, -0.004597397521138191, 0.008742992766201496, -0.036437276750802994, -0.00324504217132926, 0.016142787411808968, -0.011398859322071075, -0.023603638634085655, 0.02179642766714096, 0.0029031375888735056, -0.00041440685163252056, 0.029916664585471153, -0.0025413900148123503, 0.022309284657239914, -0.015715407207608223, -0.01987931877374649, -0.00967712514102459, 0.004783613607287407, 0.0214911550283432, 0.01400588359683752, -0.010122822597622871, -0.014189046807587147, -0.006435135379433632, 0.00579406414180994, 0.0068442001938819885, -0.014689693227410316, -0.0024024914018809795, 0.00020281513570807874, 0.011624760925769806, 0.004469183273613453, 0.0030374573543667793, 0.007430322468280792, 0.03125986084342003, 0.011044744402170181, -0.011081377044320107, -0.009561121463775635, 0.003043562639504671, 0.00997629202902317, 0.009384064003825188, -0.013322073966264725, -0.012760372832417488, 0.008846784941852093, -0.015410134568810463, -0.0042921253480017185, 0.01736387610435486, -0.005745220463722944, -0.0013790666125714779, -0.016765542328357697, 0.003504523541778326, 0.013383128680288792, 0.028817685320973396, -0.007888230495154858, -0.030527208000421524, 0.0216376855969429, 0.0022330654319375753, 0.026986053213477135, -0.010831053368747234, 0.003081721719354391, 0.005394157953560352, -0.007308213971555233, -0.010989795438945293, 0.009188690222799778, 0.0025093364529311657, 0.04867258295416832, 0.007747805677354336, -0.012296359986066818, -0.005699429661035538, 0.005168256349861622, 0.007253265008330345, 0.023090779781341553, 0.008303401060402393, -0.00466150464490056, -0.0050247786566615105, 0.0060535455122590065, 0.007521904073655605, 0.001462253276258707, 0.01094095129519701, -0.008541513234376907, 0.010678417980670929, 0.0036968449130654335, -0.01278479490429163, 0.01067231222987175, 1.9127204723190516e-05, 0.02089282125234604, 0.01520255021750927, 0.02103935182094574, 0.017986631020903587, 0.001631679362617433, 0.010434200055897236, -0.010947057045996189, -0.015715407207608223, 0.01581309363245964, 0.009542805142700672, -0.011032532900571823, 0.01047693844884634, -0.007015152368694544, -0.028842106461524963, 0.029965508729219437, -0.005021725781261921, 0.00948175135999918, -0.005562057252973318, 0.01657016947865486, -0.0004552369937300682, -0.024702617898583412, 0.019512992352247238, -0.01635037362575531, -0.008443825878202915, -0.005562057252973318, 0.010183876380324364, 0.010128927417099476, -0.003983800765126944, -5.900337055209093e-05, -0.018694862723350525, -0.00790654681622982, -0.015104862861335278, 0.016008468344807625, -0.002518494613468647, 0.008865101262927055, 0.0036815814673900604, -0.0001425239024683833, 0.0342637374997139, -0.003318307688459754, -0.017913365736603737, -0.006764829624444246, 0.009622176177799702, -0.008590356446802616, -0.006532822735607624, -0.010788315907120705, -0.002619234612211585, 0.00898721069097519, 0.007015152368694544, -0.0002896268852055073, 0.000739903247449547, 0.006545033771544695, -0.007778332568705082, 0.0007254027877934277, -0.02818271890282631, -0.00013641845725942403, -0.01131948921829462, -0.006169548723846674, 0.000720823707524687, 0.008095815777778625, 0.006972414441406727, -0.011948349885642529, 0.014347787946462631, 0.0018758969381451607, -0.002213222673162818, -0.0018758969381451607, -0.007436428219079971, -0.001227193744853139, 0.007808859925717115, 0.011453808285295963, 0.007491377182304859, 0.003770110197365284, -0.006203128956258297, -0.012332992628216743, -0.0019048978574573994, -0.014982754364609718, -0.005409421399235725, -0.018523911014199257, 0.0014683587942272425, -0.004365390632301569, -0.0216376855969429, 0.01066620647907257, -0.013370917178690434, -0.01713186874985695, -0.012107091024518013, 0.019781630486249924, -0.001053188694640994, 0.005693324375897646, -0.009029948152601719, -0.007930968888103962, 0.02127135917544365, -0.01887802593410015, -0.0023612796794623137, -0.01208877470344305, 0.0011379016796126962, 0.012833638116717339, 0.010739471763372421, -0.0002213222614955157, 0.014530951157212257, -0.009420696645975113, 0.022516869008541107, -0.017925577238202095, 0.02449503168463707, -0.007607380393892527, -0.034507956355810165, -0.01489727757871151, -0.0042921253480017185, 0.0013424339704215527, -0.004533290397375822, 0.005281207151710987, -0.013151121325790882, 0.01047693844884634, 0.009310798719525337, -0.006108494475483894, -0.01547118928283453, -0.007088417652994394, 0.020782923325896263, -0.011331699788570404, 0.020831767469644547, -0.0052628908306360245, -0.02048986218869686, 0.010086189955472946, -0.0077050672844052315, 0.0015255972975865006, 0.007589064072817564, -0.0170586034655571, -0.013053434900939465, -8.933978097047657e-05, 0.0026177081745117903, -0.010562414303421974, 0.01378608774393797, -0.02401880733668804, -0.003040509996935725, -0.002144536469131708, -0.005394157953560352, 0.021088195964694023, -0.010959267616271973, 0.005894803907722235, 0.001220325124450028, 0.005632270127534866, 0.008437720127403736, -0.012772584334015846, -0.006099336314946413, -0.011954454705119133, 0.006813672836869955, -0.02357921563088894, -0.010861581191420555, 0.022150542587041855, 0.002172010950744152, 0.0016301529249176383, 0.03172387555241585, 0.005058358423411846, -0.006966309156268835, 0.005757431499660015, -0.0033122021704912186, -0.008150764741003513, -0.0023170150816440582, 0.004203596618026495, -0.007173893973231316, -0.04554659500718117, -0.014091359451413155, -0.03162618726491928, -0.01067231222987175, -0.04681652784347534, 0.022443603724241257, 0.009219217114150524, -0.02718142606317997, -0.00852930173277855, -7.661614290555008e-06, 0.005989438388496637, 0.002318541519343853, 0.007955390959978104, -0.017376087605953217, -0.0038097957149147987, -0.01736387610435486, -0.025691699236631393, -0.004911827854812145, 0.009298588149249554, -2.829132881743135e-06, 0.020673025399446487, -0.020929453894495964, 0.01136222667992115, 0.010305985808372498, 0.0033702037762850523, -0.030380677431821823, -0.016851019114255905, -0.010122822597622871, -0.0038128483574837446, 0.01635037362575531, -0.018829181790351868, 0.02273666486144066, 0.0032877803314477205, -0.0030221936758607626, -0.013175543397665024, 0.014482107944786549, -0.008272873237729073, 0.0029290856327861547, 0.00024173733254428953, -0.007784438319504261, -0.01757146045565605, 0.026986053213477135, -0.01193613838404417, -0.01450653001666069, -0.0034617853816598654, 0.003989906050264835, 0.0061298636719584465, -0.006630509626120329, 0.010934846475720406, 0.020611971616744995, 0.012674896977841854, 0.0008807099657133222, -0.0004640135739464313, -0.007241053972393274, 0.023994386196136475, 0.01209488045424223, 0.013383128680288792, -0.000493777624797076, 0.0018926869379356503, -0.010318196378648281, -0.003409889293834567, 0.005952805746346712, -0.009072686545550823, -0.0018133162520825863, 0.004176122136414051, -0.01393261831253767, -0.0003918930306099355, -0.003644948825240135, 0.00558342644944787, 0.024531664326786995, -0.008974999189376831, 0.001753788092173636, -0.012894692830741405, -0.010208298452198505, 0.008553723804652691, 0.011814029887318611, -0.016411427408456802, 0.0014775169547647238, -0.00882846862077713, 0.014787379652261734, -0.01547118928283453, 0.004890458658337593, 0.0147019037976861, 0.014787379652261734, 0.013981461524963379, 0.030576052144169807, -0.0010486096143722534, -0.00011743435607058927, 0.013676189817488194, 0.004246334545314312, 0.010690628550946712, -0.01258942112326622, -0.010354829020798206, -0.011856768280267715, 0.028695575892925262, 0.023444896563887596, 0.008382771164178848, 0.002663498977199197, 0.007924863137304783, -0.004383706953376532, -0.027279114350676537, 0.019134454429149628, -0.00166068016551435, -0.018365168944001198, 0.02918401174247265, -0.004267703741788864, 0.026692992076277733, -0.01565435342490673, 0.014885067008435726, -0.016631223261356354, -0.0019079505000263453, 0.03638843446969986, -0.013615135103464127, 0.014469897374510765, -0.0018377379747107625, 0.010977583937346935, -0.0013256440870463848, -0.017388297244906425, 0.015520032495260239, 0.03492312505841255, 0.00042051231139339507, 0.019940372556447983, 0.004850773606449366, 0.015507821924984455, -0.00537584163248539, 0.009420696645975113, 0.021381257101893425, -0.02011132426559925, 0.006050492636859417, -0.012552788481116295, 0.014176835305988789, -0.02210169844329357, 0.01534908078610897, -0.008053077384829521, 0.013615135103464127, 0.015324658714234829, 0.008437720127403736, -0.017681358382105827, 0.013749455101788044, 0.012491733767092228, 0.00828508473932743, 0.013187753967940807, -0.010849369689822197, -0.0159718357026577, -0.0003768202441278845, -0.02747448720037937, 0.010525781661272049, 0.023237310349941254, 0.007173893973231316, -0.02503231167793274, -0.020709658041596413, 0.006966309156268835, 0.0005876487703062594, 0.012039931491017342, 0.014799591153860092, 0.025374215096235275, -0.008785730227828026, -0.010299880057573318, 0.033653195947408676, -0.016936495900154114, -0.007076207082718611, -0.008150764741003513, 0.021979590877890587, -0.0008120237616822124, 0.011533179320394993, 0.006825883872807026, -0.02679067850112915, 0.019366461783647537, -0.005949752870947123, -0.012845849618315697, -0.011783502995967865, -0.0035991580225527287, 0.026228977367281914, -0.0004166963917668909, 0.0051163602620363235, -0.018987923860549927, 0.019512992352247238, -0.026448773220181465, -0.016228264197707176, -0.023322787135839462, 0.0320902019739151, -0.01897571235895157, 0.011490440927445889, -0.0025230736937373877, -0.00516520394012332, 0.002387227723374963, -0.009469539858400822, 0.01834074780344963, 0.0017308926908299327, 0.010568520054221153, -0.018011054024100304, 0.026302242651581764, 0.012687107548117638, -0.017644725739955902, -0.0049209860153496265, -0.0036022106651216745, -0.0198915284126997, 0.00615733815357089, 0.021539999172091484, -0.005201836582273245, 7.336070120800287e-05, 0.009493961930274963, -0.010489149019122124, -0.006880832836031914, -0.003702950431033969, -0.004478341434150934, -0.009640492498874664, 0.024690406396985054, 0.003648001467809081, -0.0031168279238045216, 0.0016255738446488976, 0.0004750796942971647, 0.002004111185669899, -0.007821070961654186, 0.009341325610876083, 0.01565435342490673, 0.011875084601342678, 0.027596596628427505, -0.003263358725234866, 0.016936495900154114, 0.006502295378595591, 0.01025103684514761, 0.006029123906046152, -0.016374794766306877, -0.0035411561839282513, 0.003269464010372758, 0.0033976782578974962, -0.005384999793022871, -0.017840100452303886, -0.0014668323565274477, 0.003623579628765583, -0.049551766365766525, -0.005281207151710987, -0.004780560731887817, 0.018536120653152466, 0.017095236107707024, 0.0010562414536252618, -0.0008227083017118275, -0.0033915729727596045, -0.0055010030046105385, -0.010800526477396488, 0.0013958566123619676, -0.03629074618220329, -0.015678774565458298, -0.028500201180577278, -0.023432685062289238, 0.0028268194291740656, 0.00012039167631883174, 0.009915237314999104, -0.025520745664834976, -0.017840100452303886, -0.02196737937629223, 0.019928161054849625, 0.008040866814553738, -0.015715407207608223, 0.013895985670387745, 0.0029443493112921715, 0.003241989528760314, -0.005443001165986061, -0.03155292198061943, -0.014030304737389088, 0.0015339922392740846, -0.02411649562418461, -0.0019338986603543162, 0.014164624735713005, 0.008932261727750301, 0.000484237854834646, -0.021466733887791634, -0.029354963451623917, -0.004774455446749926, 0.007528009824454784, 0.007582958787679672, -0.0020270065870136023, 0.010690628550946712, 0.015910781919956207, -0.001514149596914649, 0.004255492705851793, -0.0022071171551942825, 0.008315611630678177, 0.009933553636074066, 0.01981826312839985, -0.0035411561839282513, -0.014298944734036922, -0.0014385946560651064, 0.002738290699198842, 0.013444182462990284, -0.002871084026992321, 0.012467311695218086, -0.02073408104479313, -0.010043451562523842, -0.024360712617635727, 0.03216346725821495, -0.00162252108566463, -0.0010455568553879857, -0.01186287309974432, 0.0033030440099537373, 0.0019048978574573994, 0.0002629155933391303, 0.004972882103174925, 0.053385984152555466, 0.02854904532432556, -0.013468604534864426, 0.0023658587597310543, -0.038586392998695374, 0.007650118321180344, 0.003507576184347272, -0.00635576480999589, 0.020611971616744995, 0.007570747751742601, -0.0010592940961942077, -0.009518384002149105, 0.0012493260437622666, -0.01787673309445381, -0.009225322864949703, -0.010556308552622795, -0.0033915729727596045, 0.005766589660197496, -0.004432550631463528, 0.0003670896985568106, -0.00543384300544858, -0.018145373091101646, 0.03690129145979881, 0.018157584592700005, 0.004960671532899141, 0.013541869819164276, 0.016985338181257248, 0.020172379910945892, -0.017913365736603737, 0.015422346070408821, -0.014982754364609718, -0.011063060723245144, -0.010507465340197086, 0.0008677358855493367, -0.025471903383731842, 0.021063774824142456, -0.0033213603310287, 0.0001326025667367503, -0.05172530189156532, -0.018841393291950226, -0.004426445346325636, 0.022846562787890434, -0.012143723666667938, 0.012143723666667938, 0.00818129163235426, 0.012882482260465622, 0.007106733974069357, 0.00015454398817382753, -0.03008761629462242, -0.0022239070385694504, -0.01378608774393797, 0.027523331344127655, -0.0021811691112816334, -0.017107447609305382, -8.838580833980814e-05, -0.015642141923308372, 0.005965016782283783, -0.022236019372940063, 0.0051865726709365845, -0.0029992982745170593, -0.011276750825345516, -0.005775747820734978, -0.010238825343549252, 0.02318846806883812, 0.017156291753053665, -0.0016912074061110616, 0.006764829624444246, -0.01572761870920658, -0.021320203319191933, -0.00047622446436434984, -0.0033244129735976458, 0.006862516514956951, -0.0006006228504702449, -0.0036388433072715998, -0.014518740586936474, -0.021515576168894768, -0.011337805539369583, -0.022382549941539764, 0.003928851801902056, 0.008694148622453213, 0.0186582300812006, 0.004698137287050486, -0.005559004843235016, -0.015336869284510612, 0.009121529757976532, 0.02456829696893692, 0.0015080440789461136, 0.020453229546546936, 0.018023263663053513, 0.006108494475483894, -0.00700294179841876, 0.002133851870894432, -0.012613842263817787, 0.026131290942430496, -0.0016942600486800075, -0.005836802534759045, -0.027230270206928253, -0.008791835978627205, 0.015288026072084904, 0.020465441048145294, -0.003727372270077467, -0.006770934909582138, -0.007686750963330269, 0.030356256291270256, -0.0032358840107917786, 0.009274166077375412, 0.015605509281158447, -0.0170586034655571, -0.015984047204256058, 0.007076207082718611, 0.0033213603310287, -0.01973278820514679, 0.030820269137620926, 0.005250679794698954, -0.003464838257059455, -0.02588707208633423, -0.002991666551679373, -0.018939079716801643, 0.011533179320394993, 0.030429521575570107, -0.007143366616219282, 0.000662058824673295, 0.015056019648909569, -0.008651411160826683, 0.008028656244277954, -0.007582958787679672, -0.014469897374510765, 0.0003670896985568106, -0.0010966899571940303, -0.0008104973821900785, 0.011484336107969284, 0.009377958253026009, 0.0035411561839282513, 0.0015904675237834454, -0.003081721719354391, -0.00920700654387474, -0.0034831545781344175, -0.017998842522501945, -0.01589857041835785, -0.00043615748290903866, -0.013248808681964874, 0.012760372832417488, -0.00990302674472332, -0.027425644919276237, 0.013541869819164276, 0.015764251351356506, -0.006236708723008633, 0.0046401359140872955, 0.01216814573854208, -0.000783786061219871, 0.0013065645471215248, -0.003382414812222123, 0.006224497687071562, 0.0034037837758660316, 0.01589857041835785, -0.003965484444051981, 0.01841401308774948, 0.016789965331554413, -0.0015263604000210762, -0.016912072896957397, -0.0023902803659439087, 0.017144080251455307, 0.029892243444919586, -0.00479887705296278, -0.005049200262874365, 0.029916664585471153, 0.006551139056682587, 0.0185116995126009, 0.009530594572424889, 0.0039349570870399475, -0.004576028790324926, 0.005146887619048357, -0.013957039453089237, 0.008913945406675339, 0.009194795042276382, 0.02194295823574066, -0.003699897788465023, -0.016716700047254562, -0.0005159098072908819, 0.004112015012651682, -0.009127635508775711, -0.013456393964588642, -0.04540006443858147, 0.00402959156781435, -0.015837516635656357, 0.028695575892925262, 0.009744284674525261, -0.00285887299105525, 0.005772694945335388, -0.013175543397665024, 0.03033183515071869, 0.026839522644877434, 0.013309863395988941, 0.0030878272373229265, -0.0005651349783875048, -0.00898110494017601, -0.007894336245954037, -0.02066081576049328, -0.018023263663053513, 0.007521904073655605, 0.007265475578606129, 0.01235741376876831, 0.010073978453874588, -0.004282967187464237, 0.026815099641680717, -0.023432685062289238, -0.031650610268116, -0.017168501392006874, 0.016411427408456802, -0.00550710828974843, 0.0022559608332812786, 0.006212287116795778, -0.02908632531762123, -0.003492312738671899, 0.002857346786186099, -0.002135378308594227, 0.022541290149092674, 0.00828508473932743, -0.00756464246660471, 0.007814965210855007, -0.0028787157498300076, 0.0018911606166511774, 0.017937788739800453, -0.002951981034129858, 0.03169945254921913, -0.004084540531039238, -0.04845278710126877, -0.019830474629998207, 0.026131290942430496, -0.015458978712558746, -0.019488569349050522, -0.0012829059269279242, -0.005772694945335388, -0.014543162658810616, 0.00303440447896719, -0.009017737582325935, 0.015520032495260239, -0.011392754502594471, -0.003121407004073262, -0.014372210018336773, -0.006618299055844545, 0.01554445456713438, 0.00629471056163311, 0.0014637797139585018, 0.01919550821185112, 0.009774812497198582, 0.003187040565535426, 0.03555809333920479, 0.004612661432474852, -0.02564285509288311, -0.0006517558940686285, 0.007399795576930046, 0.0035503143444657326, -0.011508757248520851, 0.0051865726709365845, 0.0025368109345436096, 0.0031656716018915176, 0.0014805695973336697, -0.008352244272828102, -0.0027474488597363234, -0.020074691623449326, 0.0068869381211698055, -0.0080591831356287, 0.002860399428755045, -0.037121087312698364, -0.002477282891049981, -0.03116217441856861, 0.021210305392742157, -0.008871207013726234, 0.003028299193829298, -0.009109319187700748, -0.005290365312248468, -0.00020472309552133083, 0.0023124360013753176, -0.010647890157997608, -0.0039624315686523914, 0.001953741302713752, -0.011069165542721748, -0.01163697149604559, 0.0073204245418310165, 0.028842106461524963, 0.008022550493478775, -0.01727839931845665, -0.018633808940649033, -0.0021521681919693947, 0.002306330716237426, -0.0322367325425148, 0.0025383373722434044, -0.005650586448609829, -0.0001265925238840282, -0.013334284536540508, -0.007131156045943499, 0.010635679587721825, 0.0037121085915714502, -0.00445391982793808, -0.012955747544765472, -0.011313383467495441, 0.022700032219290733, -0.0006849542260169983, 0.0107455775141716, 0.007589064072817564, 0.0047530862502753735, 0.004765297286212444, -0.000608636240940541, 0.004429497756063938, 0.011466019786894321, -0.004340969026088715, -0.0173516646027565, 0.005534582771360874, -0.01432336587458849, 0.010415883734822273, 0.017485985532402992, 0.037194352596998215, -0.00728989765048027, 0.00848656427115202, -0.018621597439050674, -0.009213111363351345, -0.018072107806801796, 0.00537584163248539, 0.009316904470324516, -0.042786937206983566, 0.02088061161339283, 0.004695084877312183, -0.034825440496206284, 0.015336869284510612, 0.004084540531039238, 0.006319132167845964, 0.015678774565458298, -0.0022590134758502245, 0.0074242171831429005, 0.007241053972393274, 0.01136222667992115, 0.0035655780229717493, -0.024763671681284904, -0.002025480382144451, -0.015507821924984455, 0.018365168944001198, 0.012320781126618385, 0.015703195706009865, -0.02103935182094574, -0.00790654681622982, -0.0031030906829982996, -0.0009295535273849964, 0.022895406931638718, -0.009493961930274963, 0.01834074780344963, 0.00848045852035284, 0.024385133758187294, 0.004609608557075262, 0.008266768418252468, -0.018316324800252914, 0.013688400387763977, -0.04046686738729477, -0.007845493033528328, -0.002385701285675168, 0.017913365736603737, -0.013615135103464127, 0.010354829020798206, -0.012699319049715996, -0.005656691733747721, -0.03394625708460808, -0.002871084026992321, 0.009994608350098133, -0.011307277716696262, 0.00054720020852983, -0.005723851732909679, 0.02840251475572586, 0.0036052633076906204, 0.01834074780344963, 0.0016835755668580532, -0.03401952236890793, -0.006612193305045366, 0.0007860756013542414, 0.0015752039616927505, 0.02012353576719761, -0.0013134331675246358, -0.005748273339122534, -0.017229557037353516, 0.013322073966264725, -0.005650586448609829, 0.015568876639008522, -0.0038372701965272427, 0.007405900862067938, 0.011417175643146038, 0.003177882404997945, -0.0015126231592148542, 0.002356700599193573, 0.00015998164599295706, -0.024678194895386696, 0.022382549941539764, -0.027669861912727356, -0.027450066059827805, -0.012448995374143124, -0.019366461783647537, 0.0030878272373229265, -0.0003441942681092769, 0.005091938190162182, -0.003187040565535426, 0.025691699236631393, 0.0070823123678565025, -0.016838807612657547, 0.004627924878150225, 0.008046972565352917, -0.02786523662507534, 0.0022971725556999445, 0.0069479928351938725, 0.021369045600295067, -0.026546461507678032, -0.025691699236631393, 0.020404385402798653, 0.004756139125674963, 0.02411649562418461, 0.00019174902990926057, -0.004469183273613453, -0.007222737651318312, 0.005149940028786659, 0.0021842217538505793, -0.01236351951956749, -0.007949285209178925, -0.021613264456391335, -0.025374215096235275, -0.0001630343758733943, -0.016631223261356354, -0.006899149157106876, -0.027596596628427505, 0.021002719178795815, -0.006029123906046152, 0.0021048509515821934, 0.031821563839912415, 0.019769420847296715, 0.007650118321180344, -0.0009509225492365658, 0.014860644936561584, 0.02280993014574051, 0.013468604534864426, -0.01996479369699955, 0.0004804219352081418, 0.001672891085036099, 0.0026848679408431053, -0.00024517165729776025, -0.028378093615174294, -0.0034037837758660316, 0.013029012829065323, -0.013957039453089237, 0.03370203822851181, -0.0024818619713187218, -0.025227684527635574, -0.0036174743436276913, 0.013309863395988941, 0.012992380186915398, -0.01788894459605217, -0.0012149829417467117, -0.02318846806883812, 0.017754623666405678, 0.022126121446490288, -0.0076623293571174145, 0.014567583799362183, -0.009713757783174515, 0.004478341434150934, 0.0032236732076853514, -0.001579783041961491, 0.022980881854891777, 0.004804982803761959, -0.003266411367803812, -0.011569811962544918, 0.00019880844047293067, -0.005681113339960575, 0.010067873634397984, -0.01258942112326622, -0.004557712469249964, -0.021601052954792976, -0.014665271155536175, -0.009414590895175934, 0.0036602122709155083, 0.003791479393839836, -0.007399795576930046, 0.015336869284510612, 0.001377540291287005, -0.012326886877417564, 0.007167788688093424, 0.001341670867986977, -0.008626989088952541, 0.0011714816791936755, -0.0024452293291687965, -0.01580088399350643, 0.005940594710409641, -0.000530791818164289, 0.015190338715910912, 0.008852890692651272, 0.003797584678977728, -0.007503587752580643, 0.008804046548902988, -0.01221088320016861, 0.006132916081696749, 0.022968672215938568, 0.019671732559800148, 0.015776460990309715, 0.013908196240663528, 0.006703774910420179, 0.025911495089530945, 0.007973707281053066, 0.007375373505055904, -0.006227550562471151, 0.007576853036880493, -0.005580373574048281, 0.008950578048825264, -0.011142430827021599, 0.004017380531877279, 0.017327243462204933, -0.010312091559171677, -0.03502081334590912, -0.011276750825345516, 0.005201836582273245, 0.026546461507678032, -0.006874727550894022, 0.006380186416208744], "56eec31c-5c40-416e-81fd-7c7a6722f005": [-0.01934688910841942, -0.0405692420899868, 0.0062649124301970005, 0.03859506919980049, -0.04318501800298691, -0.003723165486007929, -0.05093364417552948, 0.01273341104388237, -0.015583622269332409, 0.04841657355427742, 0.005894755013287067, -0.01900140754878521, 0.02921774983406067, -0.006153865251690149, 0.011764832772314548, 0.006397551856935024, 0.0022039783652871847, 0.04071730375289917, -0.020272281020879745, -0.03064902499318123, 0.01380686741322279, -0.020876871421933174, -0.02414659410715103, 0.012671718373894691, -0.0075080241076648235, -0.03064902499318123, -0.028280017897486687, 0.008186645805835724, -0.020013172179460526, -0.006409890484064817, -0.004491242114454508, -0.0293904896825552, 0.032351747155189514, 0.04997123405337334, 0.010561821982264519, -0.030081450939178467, -0.011191088706254959, -0.031265951693058014, 0.0033437542151659727, 0.013584773056209087, -0.014905001036822796, 0.016385629773139954, -0.024134255945682526, -0.008390231989324093, -0.018803991377353668, 0.005561613477766514, -0.0581393726170063, -0.017693519592285156, 0.017977306619286537, 0.0018199400510638952, 0.023480311036109924, 0.007144035771489143, -0.03602864220738411, 0.0073352837935090065, 0.05616519972681999, -0.03230239450931549, -0.015423220582306385, 0.021876296028494835, 0.013671142980456352, -0.032944001257419586, 0.00436477130278945, -0.026947451755404472, 0.021530816331505775, -0.014670567587018013, 0.016175873577594757, 0.03222836181521416, -0.00908736139535904, 0.013041875325143337, -0.009827676229178905, 0.015484914183616638, 0.0034517168533056974, 0.01259151753038168, -0.03928602859377861, 0.019075440242886543, 0.02746567130088806, 0.006240235175937414, 0.0171382836997509, 0.042395349591970444, 0.03121659904718399, -0.04246938228607178, 0.023640712723135948, -0.029168395325541496, 0.015731684863567352, 0.015892086550593376, 0.02492392435669899, 0.014942016452550888, -0.002066711662337184, -0.03639880195260048, -0.013708158396184444, -0.0057343533262610435, -7.779087172821164e-05, 0.017212314531207085, 0.01273341104388237, 0.007032988592982292, 0.005870077759027481, -0.02294975332915783, 0.0031617602799087763, 0.0010649734176695347, 0.03975489363074303, -0.020728809759020805, -0.004303078632801771, 0.00645924499258399, 0.028205987066030502, 0.015953779220581055, -0.002702148398384452, 0.014177024364471436, 0.006915772333741188, 0.03314141556620598, 0.006884925998747349, 0.057102933526039124, -0.009488365612924099, -0.046516433358192444, 0.020901549607515335, 0.0007260481361299753, -0.030451606959104538, -0.03501687943935394, -0.05330265313386917, -0.0019433258567005396, -0.001276271534152329, -0.012770426459610462, 0.015830393880605698, -0.04076665639877319, -0.006823232863098383, 0.024455059319734573, 0.0007568945875391364, 0.016842156648635864, -0.010321219451725483, 0.0216912180185318, 0.018581897020339966, 0.022283470258116722, 0.007890519686043262, -0.003337584901601076, 0.020185912027955055, -0.026404554024338722, 0.0171382836997509, 0.012684056535363197, 0.0020019339863210917, 0.11183685809373856, -0.007107020355761051, 0.041531648486852646, -0.009186070412397385, 0.026083750650286674, -0.007353791501373053, 0.005135932471603155, -0.0016965542454272509, -0.02197500504553318, -0.023739421740174294, 0.03279593586921692, 0.005058816634118557, -0.03928602859377861, -0.03563380986452103, 0.011474876664578915, -0.046565789729356766, -0.025392791256308556, 0.04984784871339798, 0.005965701770037413, 0.029094364494085312, 0.03778072074055672, -0.018409157171845436, 0.04074198007583618, 0.05016865208745003, -0.003069221042096615, 0.03230239450931549, 0.00558012118563056, 0.049946557730436325, 0.024195948615670204, 0.03407914936542511, 0.002304229186847806, -0.007902858778834343, 0.01224603783339262, 0.003189522074535489, -0.008248338475823402, 0.040964074432849884, -0.026429232209920883, 0.04113681614398956, -0.019815754145383835, 0.03175949677824974, -0.013115907087922096, 0.0283046942204237, -0.005453650839626789, -0.02795921452343464, -0.016188211739063263, 0.01837214082479477, 0.0018523287726566195, -0.008112614043056965, 0.04676320403814316, -0.015114756301045418, 0.020099541172385216, -0.01765650324523449, 0.0022733828518539667, -0.00526548782363534, -0.02795921452343464, 0.02240685559809208, -0.0022857212461531162, -0.02670067921280861, -0.012597686611115932, 0.0028440419118851423, 0.0028440419118851423, 0.008495110087096691, -0.00043570599518716335, -0.0031710141338407993, -0.041901808232069016, 0.018470849841833115, 0.0446903258562088, -0.01452250499278307, -0.00942667294293642, 0.016262244433164597, -0.051180414855480194, 0.023727083578705788, -0.013362678699195385, 0.051180414855480194, -0.02334458753466606, 0.012104143388569355, 0.011616770178079605, 0.010216341353952885, 0.026305845007300377, -0.00681706378236413, 0.030994504690170288, -0.01153040025383234, -0.043826624751091, 0.01796496845781803, -0.005342603661119938, -0.025713594630360603, -0.01817472279071808, -0.010475452058017254, 0.0007252769428305328, -0.041358910501003265, 0.02815663255751133, -0.03889119252562523, -0.049403659999370575, 0.001345676020719111, 0.013004859909415245, 0.033783022314310074, 0.0029828508850187063, 0.009482196532189846, 0.023443296551704407, 0.025762947276234627, 0.00021457555703818798, -0.011462537571787834, -0.00313708302564919, -0.009852353483438492, -0.0041550155729055405, -0.007538870442658663, -0.05937322974205017, -0.009235424920916557, 0.010481621138751507, -0.0004453455039765686, 0.04298759996891022, -0.003920582588762045, 0.005897839553654194, -0.00892696063965559, 0.013066552579402924, 0.011641447432339191, -0.010333557613193989, -0.012579179368913174, 0.021469123661518097, 0.0037200809456408024, -0.006483922246843576, 0.0036275414749979973, -0.004552934784442186, 0.0028270764742046595, -0.014966693706810474, 0.0016518270131200552, 0.030352897942066193, 0.049403659999370575, -0.0008174307295121253, 0.030969828367233276, 0.017434408888220787, -0.007773303426802158, 0.008717204444110394, -0.00785350427031517, -0.0075141931883990765, -0.004969361703842878, 0.05493134260177612, -0.03874313086271286, 0.03447398170828819, -0.017644165083765984, 0.010746899992227554, -0.0030275783501565456, -0.009327963925898075, 0.0013001775369048119, -0.00504339300096035, 0.029834678396582603, -0.009494534693658352, 0.014534843154251575, 0.03190755844116211, -0.027885183691978455, -0.05715228617191315, -0.027909860014915466, 0.019100116565823555, 0.011252782307565212, -0.023714743554592133, -0.007162543945014477, 0.02635519951581955, 0.0066813393495976925, -0.006267996970564127, -0.017125943675637245, -0.0022996021434664726, 0.004562188871204853, -0.0304762851446867, -0.01596611738204956, -0.0025756778195500374, -0.010931978933513165, -0.042049869894981384, 0.05754712224006653, -0.01748376339673996, 0.04212390258908272, 0.03859506919980049, -0.0033437542151659727, 0.013152922503650188, 0.004198200535029173, -0.019692368805408478, -0.01757013238966465, -0.0223451629281044, 0.006854079198092222, 0.039902955293655396, -0.02501029521226883, -0.026947451755404472, -6.954908894840628e-05, -0.002521696500480175, -0.015731684863567352, -0.01173398643732071, -0.006379044149070978, 0.021222351118922234, 0.02761373482644558, -0.052266210317611694, 0.049428340047597885, 0.0038033663295209408, -0.017434408888220787, -0.0014891119208186865, -0.06524639576673508, -0.009161393158137798, -0.00045421384857036173, 0.03639880195260048, -0.013560095801949501, -0.04200051352381706, -0.031833529472351074, -0.02620713785290718, -0.017533117905259132, 0.0002887998125515878, -0.047972384840250015, -0.03304271027445793, 0.00507115526124835, -0.012647041119635105, -0.0412108451128006, -0.027539703994989395, 0.004614627920091152, 0.021925650537014008, 0.0252694059163332, 0.0009369606850668788, 0.0006932737887836993, 0.01153040025383234, 0.027885183691978455, -0.01980341598391533, 0.00806942954659462, -0.014756937511265278, -0.019729383289813995, 0.027169546112418175, -0.0011652243556454778, -0.02086453326046467, -0.017076591029763222, -0.011468706652522087, 0.02108662761747837, -0.033462218940258026, -0.018841005861759186, -0.009864691644906998, 0.02208605222404003, -0.011653785593807697, 0.007748626172542572, 0.03395576402544975, -0.0015222718939185143, -0.0038897362537682056, -0.037040408700704575, -0.01151806116104126, 0.0007187221199274063, -0.06470349431037903, 0.030969828367233276, -0.021740572527050972, -0.030969828367233276, 0.021814603358507156, -0.007748626172542572, 0.0018600404728204012, -0.03728717938065529, -0.005894755013287067, 0.05340135842561722, 0.0016471999697387218, 0.00713169714435935, -0.022110728546977043, -0.04681256040930748, 0.005691168364137411, 0.004099491983652115, -0.03153740242123604, -0.006934280041605234, -0.014115331694483757, 0.0006770793697796762, 0.011036857031285763, -0.0331907719373703, -0.021789927035570145, 0.028748882934451103, -0.00788435060530901, -0.054092321544885635, -0.011271289549767971, 0.010092956013977528, -0.01291848998516798, -0.0029458352364599705, -0.050316717475652695, -0.003575102658942342, 0.007119358982890844, 0.009513042867183685, 0.011339152231812477, 0.037558626383543015, -0.01362178847193718, 0.0029442929662764072, 0.014102993533015251, 0.04323437437415123, 0.03580654785037041, 0.0021607931703329086, 0.03212965279817581, -0.04320969432592392, 0.006036648526787758, 0.057497765868902206, 0.00612301891669631, 0.026429232209920883, 0.028057923540472984, -0.003238876350224018, 0.004966277163475752, -0.013115907087922096, -0.00819898396730423, 0.005176032893359661, 0.022999107837677002, 0.037904106080532074, 0.03030354529619217, -0.002652793889865279, 0.0015238142805173993, -0.02140743099153042, 0.005607882980257273, -0.016583047807216644, 0.002254874911159277, -0.0012145786313340068, -0.012881473638117313, 0.036300092935562134, 0.002711402252316475, 0.007773303426802158, 0.01433742605149746, -0.011925234459340572, -0.006181627046316862, -0.011184919625520706, 0.031265951693058014, 0.020950904116034508, -0.009513042867183685, -0.0012006977340206504, 0.007600563112646341, -0.04821915924549103, -0.014028961770236492, 0.002839414868503809, 0.010962825268507004, 0.03965618461370468, -0.001690385048277676, 0.021740572527050972, -0.029884032905101776, 0.01488032378256321, 0.0016441153129562736, 0.01871762052178383, -0.00365530326962471, 0.011962249875068665, -0.018902700394392014, 0.012196683324873447, 0.013165261596441269, 0.006866417825222015, 0.024788200855255127, 0.022653626278042793, 0.007162543945014477, 0.0014220209559425712, 0.06351899355649948, 0.02403554692864418, 0.00036437358357943594, -0.020210588350892067, -0.008939298801124096, -0.009358810260891914, 0.002105269581079483, 0.036497510969638824, 0.012758088298141956, -0.023566681891679764, 0.015102418139576912, -0.0223451629281044, 0.013782190158963203, -0.009000991471111774, 0.014078316278755665, 0.002148454776033759, -0.022727658972144127, -0.017705857753753662, 0.019815754145383835, 0.006619646213948727, 0.03911328688263893, 0.024738846346735954, -0.032030943781137466, 0.012005435302853584, -0.013189938850700855, -0.00434934813529253, 0.00471333647146821, 0.03439995273947716, -0.02941516600549221, 0.02503497153520584, -0.00869869627058506, -0.007631409913301468, 0.02392449975013733, -0.034720756113529205, -0.008155799470841885, 0.0033221617341041565, -0.0026080666575580835, -0.01533685065805912, 0.011228105053305626, -0.02995806373655796, -0.010333557613193989, 0.007088512182235718, 0.007847335189580917, -0.012449624016880989, -0.0258123017847538, -0.0038989903405308723, 0.007384638302028179, -0.013473725877702236, -0.02620713785290718, -0.017409732565283775, 0.010025093331933022, 0.0010387538932263851, 0.012431115843355656, -0.014140008948743343, -0.02726825512945652, 0.02726825512945652, -0.021555492654442787, 0.0015824224101379514, -0.01497903186827898, -0.010753070004284382, 0.0018924291944131255, -0.016706433147192, -0.005339519120752811, -0.02477586269378662, -0.022727658972144127, 0.00770544121041894, 0.01889036037027836, 0.008982484228909016, 0.030895795673131943, 0.019223501905798912, -0.011332983151078224, -0.009346472099423409, 0.01596611738204956, -0.002128404565155506, -0.0024214456789195538, -0.02449207566678524, 0.012104143388569355, -0.04032246768474579, -0.007242744322866201, -0.028452757745981216, 0.0016934697050601244, -0.0039360057562589645, -0.03284529224038124, -0.006048987153917551, 0.021395092830061913, 0.013868560083210468, -0.05041542276740074, -0.004318501800298691, -0.010080616921186447, 0.0033437542151659727, 0.02655261754989624, -0.031068535521626472, -0.004688659217208624, -0.004488157108426094, -0.002959716133773327, 0.0055369362235069275, 0.020445020869374275, 0.02509666420519352, 0.012616194784641266, 0.029834678396582603, 0.004562188871204853, 0.003109321231022477, 0.021555492654442787, 0.005413550417870283, -0.02620713785290718, -0.019643014296889305, 0.007144035771489143, 0.03928602859377861, -0.0013557011261582375, 0.02249322459101677, -0.025540852919220924, 0.03504155948758125, -0.0098153380677104, -0.027712443843483925, -0.02403554692864418, -0.020161233842372894, 0.029489198699593544, 0.018692944198846817, 0.023727083578705788, 0.017496101558208466, -0.029834678396582603, 0.006650493014603853, 0.0318828821182251, -0.003824958810582757, -0.032549165189266205, 0.015176448971033096, 0.012930828146636486, 0.051229771226644516, -0.015978457406163216, 0.027120191603899002, -0.03198159113526344, -0.04634369537234306, -0.006082918494939804, -0.014238717965781689, 0.03546106815338135, 0.008785066194832325, 0.0059934635646641254, 0.02464013732969761, 0.032376423478126526, 0.02501029521226883, -0.03857038915157318, 0.017348038032650948, -0.010549482889473438, -0.012597686611115932, -0.004808960482478142, 0.020926225930452347, -0.007076173555105925, 0.02225879207253456, -0.0020991002675145864, 0.04987252876162529, -0.010901132598519325, 0.0008768101106397808, 0.0019818837754428387, -0.03763265907764435, -0.006928110960870981, -0.015867410227656364, 0.007736287545412779, 0.005246979650110006, 0.009192239493131638, -0.01616353541612625, 0.0029242427553981543, 0.044221457093954086, -0.03050096146762371, 0.023788776248693466, 0.021481461822986603, -0.01711360551416874, 0.00919840857386589, 0.010234849527478218, 0.022369839251041412, -0.015929102897644043, 0.00955622736364603, -0.019063100218772888, 0.0446903258562088, 0.0036275414749979973, -0.0293904896825552, 0.013671142980456352, 0.014300410635769367, -0.03783007711172104, 0.0038928210269659758, 0.003029120620340109, 0.01067286916077137, -0.027761798352003098, 0.02137041464447975, -0.031241275370121002, 0.02429465763270855, 0.03208030015230179, 0.012554502114653587, -0.0216912180185318, -0.042074546217918396, 0.06332157552242279, -0.016077164560556412, 0.0074339923448860645, 0.012424946762621403, -0.03010612726211548, 0.006971295922994614, 0.01273341104388237, 0.024566106498241425, 0.027194222435355186, -0.013584773056209087, -0.029711293056607246, -0.008087936788797379, -0.0029828508850187063, 0.0019494951702654362, 0.004734928719699383, 0.00842724833637476, -0.01802666112780571, -0.035609133541584015, -0.011882049031555653, -0.03607799857854843, -0.018421495333313942, 0.008334708400070667, -0.005552359391003847, -0.008933129720389843, 0.013202277012169361, 0.006314266473054886, -0.03997698798775673, 0.008174306713044643, -0.017446747049689293, -0.005651067942380905, -0.01624990627169609, 0.016632402315735817, -0.0036028644535690546, -0.004142676945775747, 0.001937156543135643, 0.004161185119301081, 0.006687508430331945, -0.00023828876146581024, -0.016817480325698853, -0.0007568945875391364, -0.006298843305557966, -0.0027345370035618544, -0.006261827889829874, 0.004741098266094923, 0.003646049415692687, -0.022246453911066055, 0.02563956193625927, -0.0022209438029676676, -0.018014321103692055, 0.0022780096624046564, 0.005678829737007618, 0.008310031145811081, -0.005660322029143572, -0.014608874917030334, -0.015447897836565971, 0.013017198070883751, -0.009463688358664513, 0.03943409025669098, -0.00991404615342617, 0.041704390197992325, 0.004204370081424713, -0.03980425000190735, -0.025960365310311317, 0.02867485210299492, -0.006234066095203161, -0.01254833210259676, 0.03499220311641693, 0.0038434667512774467, 0.01541088242083788, -0.004232131876051426, 0.035411715507507324, -0.0006863333401270211, 0.0009354183566756546, -0.009907877072691917, 0.0019602912943810225, 0.01170314010232687, 0.042938247323036194, 0.008476601913571358, -0.010062109678983688, 0.015275157988071442, 0.025540852919220924, -0.01676812581717968, 0.0030553401447832584, -0.01863125152885914, 0.020494375377893448, -0.01273341104388237, -0.016903849318623543, 0.007952212356030941, 0.035066235810518265, -0.025516176596283913, 0.0076067326590418816, -0.0023011446464806795, -6.512696018035058e-06, -0.01960599794983864, 0.020185912027955055, 0.004219793248921633, 0.009617920964956284, 0.055671658366918564, 0.011949911713600159, -0.005169863812625408, -0.03765733540058136, 0.009050345979630947, -0.024282319471240044, 0.027885183691978455, 0.013300986029207706, -0.025787625461816788, 0.018298109993338585, 0.03178417310118675, 0.016521355137228966, 0.015645315870642662, 0.02884759195148945, 0.005589375272393227, 0.011357659474015236, -0.02203669771552086, 0.008353216573596, -0.032030943781137466, -0.002075965516269207, 0.006141526624560356, -0.037953462451696396, -0.02232048474252224, 0.030723055824637413, 0.0012508232612162828, 0.006884925998747349, 0.005410465877503157, 0.017816904932260513, -0.004916922654956579, 0.004315417259931564, -0.0014443846885114908, 0.006187796127051115, -0.025886334478855133, 0.004768860060721636, 0.024566106498241425, 0.003519579069688916, -0.015608299523591995, -0.01585507020354271, -0.019050762057304382, -0.016385629773139954, -0.02220943756401539, -0.025590207427740097, -0.01568233035504818, 0.03963150829076767, 0.008704866282641888, 0.001779839745722711, -0.02707083709537983, 0.0072365752421319485, 0.02195032872259617, -0.026799388229846954, -0.003167929593473673, 0.03617670759558678, 0.022394517436623573, -0.01433742605149746, 0.01337501686066389, -0.019754061475396156, -0.020704131573438644, -0.011511892080307007, -0.001787551329471171, 0.0329686775803566, -0.012437284924089909, 0.00033969644573517144, -0.016977882012724876, -0.004577612038701773, 0.014473150484263897, 0.0008020075038075447, -0.041334230452775955, 0.025232389569282532, -0.013856221921741962, 0.002194724278524518, -0.0041303387843072414, -0.019297534599900246, -0.03230239450931549, -0.022826366126537323, 0.03064902499318123, -0.0007888977415859699, 0.008279184810817242, 0.027835829183459282, 0.017520779743790627, -0.051229771226644516, 0.00628033559769392, -0.02249322459101677, -0.04175374284386635, 0.022826366126537323, -0.02486223168671131, 0.008624665439128876, 0.017952628433704376, 0.032154329121112823, -0.012684056535363197, 0.012893812730908394, 0.030352897942066193, 0.015386205166578293, -0.009716629050672054, 0.03494285047054291, -0.001544635626487434, -0.034696076065301895, 0.015016048215329647, -0.02340628020465374, -0.005009462125599384, 0.0006369790062308311, 0.027194222435355186, 0.023739421740174294, 0.026873420923948288, 0.007520362734794617, -0.020074864849448204, 0.006095257122069597, 0.019815754145383835, 0.009617920964956284, 0.026231814175844193, 0.012671718373894691, 0.029464520514011383, 0.014473150484263897, 0.000595336314290762, 0.039557475596666336, -0.007847335189580917, -0.015213465318083763, -0.017631826922297478, 0.0321049764752388, -0.009420502930879593, -0.017693519592285156, 0.009173732250928879, -0.0024291572626680136, -0.009346472099423409, 0.01997615583240986, -0.005370365455746651, -0.020839856937527657, 0.01451016589999199, 0.008470432832837105, -0.009309455752372742, 0.005684999283403158, 0.006940449588000774, -0.007828827016055584, -0.012209021486341953, 0.004497411195188761, 0.0025710510089993477, -0.021123643964529037, -0.0032604688312858343, -0.002086761873215437, 0.004633135627955198, 0.00012271100422367454, 0.008322370238602161, 0.01148721482604742, -0.010278034023940563, 0.0005991921061649919, -0.015916764736175537, 0.003078474896028638, 0.0033437542151659727, 0.009519211947917938, 0.0046053738333284855, 0.0405692420899868, -0.003784858388826251, -0.004639304708689451, 0.01066053006798029, -0.022110728546977043, 0.013177599757909775, 0.04145761951804161, 0.008124953135848045, 0.0048490604385733604, -0.01954430527985096, 0.022357501089572906, -0.003926752135157585, 0.03402979299426079, -0.016694094985723495, 0.00610142620280385, -0.0031740989070385695, -0.04861399158835411, 0.02249322459101677, -0.0181130301207304, -0.012172006070613861, -0.014436135068535805, 0.014226378872990608, -0.017890935763716698, 0.009568566456437111, -0.005333349574357271, -0.005256233736872673, -0.030550315976142883, -0.03674428164958954, -0.00752653181552887, 0.004469649400562048, 0.007804149761795998, 0.020185912027955055, -0.010463112965226173, -0.027687765657901764, 0.009778321720659733, 0.01579337753355503, -0.026947451755404472, 0.013251631520688534, -0.0017428239807486534, 0.019926801323890686, 0.02655261754989624, -0.013054214417934418, -0.01273341104388237, 0.02338160201907158, -0.002305771457031369, 0.0006759226671420038, 0.010228680446743965, -0.006699847057461739, -0.005240810569375753, -0.009753644466400146, -0.02406022511422634, -0.019766399636864662, 0.02746567130088806, -0.032179009169340134, -0.024788200855255127, -0.002043576678261161, -0.02761373482644558, 0.002480053808540106, -0.008809743449091911, 0.007440161891281605, -0.03388173133134842, -0.0001362063194392249, 0.001460578991100192, -0.025417467579245567, 0.008791236206889153, 0.019926801323890686, 0.014362103305757046, -0.00607983348891139, 0.000288414245005697, -0.017360378056764603, -0.04022375866770744, 0.018902700394392014, 0.03171014040708542, 0.001787551329471171, -0.005971871316432953, -0.024529090151190758, 0.008723373524844646, 0.030451606959104538, 0.007600563112646341, -0.012807442806661129, 0.018335124477744102, 0.03301803022623062, 0.01930987276136875, 7.191077020252123e-05, 0.014288071542978287, 0.01945793628692627, -0.0008313116268254817, -0.00165799621026963, -0.006841740570962429, -0.00838406290858984, 0.0003506854991428554, -0.006348197814077139, -0.021728234365582466, 0.010074447840452194, -0.01067286916077137, 0.01415234711021185, -0.006342028267681599, -0.0058731622993946075, 0.003454801393672824, 0.013683481141924858, 0.006613477133214474, 0.023258216679096222, 0.003883566940203309, -0.01733569987118244, -0.010635852813720703, -0.00010873370774788782, -0.0058484855107963085, 0.00731677608564496, 0.04720739275217056, -0.011869710870087147, -0.003732419339939952, 0.03573251888155937, -0.007353791501373053, -0.017989644780755043, 0.018841005861759186, -0.026996806263923645, 0.0035319176968187094, 0.018989069387316704, 0.03178417310118675, -0.025109004229307175, -0.013584773056209087, 0.00902566872537136, -0.02317184768617153, -0.003547340864315629, -0.010074447840452194, -0.012671718373894691, 0.022962091490626335, -0.009790660813450813, 0.02240685559809208, -0.04323437437415123, -0.012036281637847424, -0.024418042972683907, -0.03333883360028267, -0.010666699148714542, 0.004071730189025402, 0.02314716950058937, 0.00594410952180624, -0.01631159894168377, -0.005009462125599384, 0.009210747666656971, 0.005783707834780216, 0.019667690619826317, -0.00522847194224596, 0.014065977185964584, -0.01170314010232687, -0.039582155644893646, 8.617724961368367e-05, 0.0007364588091149926, -0.01602781191468239, -0.007384638302028179, 0.009463688358664513, 0.013313324190676212, 0.0005540791898965836, -0.03252448886632919, -0.00014459269004873931, 0.014016623608767986, 0.005907093640416861, -0.01782924309372902, -0.012671718373894691, 0.016360953450202942, 0.020642438903450966, 0.031290631741285324, -0.0012986351503059268, -0.007797980681061745, 0.03607799857854843, 0.006240235175937414, -0.012955505400896072, 0.016472000628709793, 0.021098965778946877, -0.0061322725377976894, 0.021024934947490692, 0.03447398170828819, -0.02140743099153042, -0.004864484071731567, 0.010333557613193989, -0.023159507662057877, -0.01628692075610161, 0.02063010074198246, 0.0026173205114901066, -0.0022996021434664726, -0.01848318800330162, -0.015818055719137192, -0.02014889568090439, 0.006301927845925093, 0.03800281509757042, 0.00819898396730423, 0.02151847817003727, -0.01682981848716736, 0.010352065786719322, 0.04518386721611023, 0.01885334588587284, -0.010037432424724102, -0.013782190158963203, -0.016434984281659126, -0.0005286309169605374, 0.005012546665966511, 0.0019803415052592754, 0.01808835379779339, -0.020839856937527657, 0.00888377521187067, -0.010716053657233715, -0.009007160551846027, 0.013560095801949501, 0.012412608601152897, -0.018520204350352287, 0.015497252345085144, 0.02323354035615921, -0.03499220311641693, 0.0017551624914631248, -0.008094105869531631, -0.03797813877463341, 0.004562188871204853, 0.016718771308660507, -0.023973854258656502, -0.011795679107308388, 0.006082918494939804, -0.021641863510012627, -0.024566106498241425, 0.006033563986420631, 0.010253357701003551, 0.021851619705557823, 0.00296125840395689, 0.01791561394929886, -0.020667115226387978, 0.029143719002604485, -0.025911010801792145, -0.002535577630624175, 0.008001566864550114, 0.011419353075325489, 0.013140584342181683, -0.008704866282641888, 0.0042537241242825985, -0.013967269100248814, -0.016866834834218025, 0.004195115994662046, 0.02566424012184143, -0.023899823427200317, -0.02154315449297428, -0.013843882828950882, -0.03617670759558678, 0.023134831339120865, 0.006428398657590151, 0.009130546823143959, -0.0029473775066435337, 0.013251631520688534, 0.014189363457262516, -0.011980758048593998, -0.020050186663866043, 0.0006662831292487681, -0.0057343533262610435, -0.0072365752421319485, -0.02334458753466606, -0.030599670484662056, 0.01568233035504818, 0.019050762057304382, 0.012721072882413864, 0.015534267760813236, -0.02406022511422634, -0.006416060030460358, 0.02154315449297428, 0.01344904862344265, -0.03119192272424698, -0.011252782307565212, 0.011271289549767971, 0.005503005348145962, -0.0066813393495976925, 0.003695403691381216, 0.024800539016723633, 0.0038928210269659758, -0.01559596136212349, -0.0064037214033305645, -0.005379619542509317, 0.004469649400562048, -0.0019680028781294823, 0.0037015730049461126, -0.0241836104542017, -0.002214774489402771, -0.010549482889473438, 0.0012060959124937654, -0.026626648381352425, 0.0201735720038414, 0.02045736089348793, 0.04464096948504448, 0.01048779021948576, -0.027761798352003098, 0.011425522156059742, 0.005157525185495615, 0.027539703994989395, 0.006409890484064817, -0.003009070409461856, -0.01733569987118244, -0.010111463256180286, 0.02867485210299492, 0.011283628642559052, -0.01705191284418106, -0.006360536441206932, -0.029513875022530556, -0.017755212262272835, -0.008124953135848045, 0.019248180091381073, 0.0014652060344815254, -0.009796829894185066, -0.014423795975744724, 0.009907877072691917, -0.01728634536266327, -0.024430381134152412, -0.020124219357967377, 0.013757512904703617, 0.009142884984612465, -0.02106195129454136, 0.006271081510931253, 0.014214040711522102, 0.02869953028857708, 0.0011073872447013855, 0.01409065444022417, 0.007619071286171675, 0.0009701205999590456, -0.018878022208809853, 0.02108662761747837, 0.020765824243426323, -0.005231556482613087, -0.02544214576482773, 0.007896688766777515, -0.0017829242860898376, 0.003110863734036684, -0.01948261260986328, 0.008488941006362438, 0.007063835393637419, -0.004497411195188761, 0.008933129720389843, -0.01559596136212349, 0.016583047807216644, -0.02132106013596058, -0.02795921452343464, -0.015386205166578293, -0.012684056535363197, 0.013338001444935799, 0.03699105232954025, -0.027120191603899002, 0.019223501905798912, -0.002014272613450885, 0.0146952448412776, -0.012992520816624165, -0.017187638208270073, -0.012856797315180302, 0.01027186494320631, -0.024714170023798943, 0.009617920964956284, -0.03104385919868946, 0.030180158093571663, -0.011117057874798775, 0.028057923540472984, 0.00610142620280385, 0.0036398801021277905, -0.011684631928801537, 0.02143210731446743, -0.018100691959261894, -0.005058816634118557, -0.00022209438611753285, -0.016731109470129013, -0.006434567738324404, -0.01802666112780571, 0.009562397375702858, -0.039360061287879944, -0.011110888794064522, 0.025257065892219543, 0.010728392750024796, 0.008575310930609703, 0.008131122216582298, -0.01523814257234335, -0.001866209669969976, 0.01005593966692686, 0.014189363457262516, 0.05088429152965546, 0.0017721280455589294, 0.010993671603500843, -0.003707742318511009, -0.007767133880406618, 0.00941433385014534, 0.00131097377743572, -0.0017613318050280213, -0.019223501905798912, -0.017298685386776924, -0.010006586089730263, -0.0268980972468853, 0.04580079764127731, -0.01650901511311531, 0.0026065243873745203, 0.004244470503181219, -0.029810002073645592, -0.0009608666878193617, 0.015731684863567352, -0.0344986617565155, 0.03852103650569916, -0.020950904116034508, 0.011524230241775513, 0.006644323468208313, 0.03602864220738411, 0.009907877072691917, 0.0034517168533056974, 0.011191088706254959, 0.00026624335441738367, 0.000839794403873384, -0.035781871527433395, -0.028921624645590782, 0.03977956995368004, -0.017471425235271454, -0.02002551034092903, 0.02080284059047699, -0.021012596786022186, -0.007989228703081608, -0.00788435060530901, 0.009759814478456974, 0.004080984275788069, 0.00909970048815012, 0.006650493014603853, -0.026601972058415413, 0.023184185847640038, 0.015040725469589233, 0.011178750544786453, 0.0003888579667545855, 0.008124953135848045, 0.01622522808611393, 0.0005837689386680722, 0.01711360551416874, -0.015645315870642662, 0.028205987066030502, 0.017952628433704376, -0.009038007818162441, 0.009050345979630947, 0.03301803022623062, -0.019063100218772888, -0.009358810260891914, 0.014423795975744724, -7.605575956404209e-05, 0.008562971837818623, 0.0018615827430039644, -0.005931770894676447, 0.003427039599046111, -0.0005159067222848535, 0.019100116565823555, -0.00541663495823741, -0.012511316686868668, -0.0011058449745178223, 0.0036738112103194, 0.014127670787274837, 0.004852145444601774, 0.0024862231221050024, -0.03030354529619217, -0.0035134097561240196, 0.019137132912874222, 0.012184344232082367, -0.0040162065997719765, -0.026305845007300377, -0.03718847036361694, -0.006946618668735027, 0.006465414073318243, 0.030723055824637413, -0.0071563743986189365, -0.01488032378256321, 0.00028417285648174584, 0.010062109678983688, -0.00821132306009531, 0.006234066095203161, -0.021382752805948257, -0.014559520408511162, 0.005546190310269594, -0.014892661944031715, -0.004916922654956579, -0.0038095356430858374, 0.019050762057304382, 0.026947451755404472, 0.015324512496590614, 0.016212889924645424, 0.016101842746138573, -0.007026819512248039, 0.030032096430659294, 0.004420294892042875, -0.015484914183616638, 0.017792226746678352, 0.005515343975275755, 0.0033746007829904556, -0.003784858388826251, -0.008488941006362438, -0.0044326335191726685, 0.013300986029207706, 0.0003063437179662287, -0.0065085990354418755, -0.048342544585466385, -0.013338001444935799, 0.03805217146873474, 0.007730118464678526, 0.020901549607515335, -0.020358651876449585, -0.005493751261383295, -0.007477177307009697, -0.024627799168229103, -0.027120191603899002, 0.00037478425656445324, -0.01048779021948576, -0.014004284515976906, -0.015176448971033096, 0.0022379092406481504, -0.008778897114098072, -0.001515331445261836, -0.034325920045375824, 0.020185912027955055, 0.027144867926836014, -0.011258951388299465, 0.008396401070058346, 0.005617137067019939, -0.024677153676748276, -0.015447897836565971, -0.003939090762287378, -0.002224028343334794, -0.02726825512945652, 0.01631159894168377, -0.020728809759020805, 0.0022008935920894146, 0.002723740879446268, -0.01112939603626728, -0.01724933087825775, 0.01759481057524681, -0.0019356142729520798, 0.014917339198291302, -0.017644165083765984, -0.0017721280455589294, -0.03501687943935394, 0.0026790134143084288, -0.016151197254657745, 0.026133105158805847, 0.010006586089730263, 0.0006427627522498369, -0.02976064756512642, 0.03442462906241417, -0.0185448806732893, 0.025232389569282532, -0.009550058282911777, -0.04148229584097862, 0.006366705521941185, 0.014584197662770748, 0.020358651876449585, -0.008976314216852188, -0.03546106815338135, -0.0031324562150985003, -0.027885183691978455, 0.025540852919220924, 0.023356925696134567, -0.017545456066727638, -0.021247029304504395, -0.013140584342181683, -0.0012916947016492486, -0.019161809235811234, -0.021444445475935936, 0.01702723652124405, -0.035979289561510086, -0.01559596136212349, -5.764428715337999e-05, -0.06302545219659805, -0.014942016452550888, 0.016805142164230347, 0.0034517168533056974, -0.004238300956785679, 0.014214040711522102, 0.006718355230987072, -0.022838706150650978, 0.0021222352515906096, 0.008951636962592602, -0.0018600404728204012, -0.018557218834757805, -0.024195948615670204, -0.024455059319734573, -0.004984784871339798, -0.009303286671638489, -0.005117424763739109, -0.01138850674033165, -0.010179325938224792, 0.033092062920331955, 0.05021800845861435, 0.013078891672194004, -0.0027576719876378775, -0.013165261596441269, 0.012369423173367977, -0.017471425235271454, -0.016373291611671448, 0.018187062814831734, 0.011573584750294685, -0.021962666884064674, 0.02583697997033596, 0.01585507020354271, 0.0041149151511490345, 0.00029805375379510224, 0.004019291140139103, -0.013880899176001549, -0.00031212743488140404, 0.029637260362505913, -0.020654777064919472, -0.003297484712675214, -0.0026281168684363365, 0.02472650818526745, -0.0003071148821618408, -0.023813452571630478, -0.013510741293430328, 0.013424371369183064, -0.016718771308660507, -0.015287496149539948, 0.013288646936416626, 0.02724357694387436, -0.0030522553715854883, -0.0012508232612162828, 0.0020991002675145864, 0.020272281020879745, 0.017520779743790627, 0.011419353075325489, -0.015929102897644043, 0.010783916339278221, 0.014004284515976906, 0.003633710788562894, 0.012054789811372757, -0.03854571282863617, -0.001897056121379137, -0.011746324598789215, 0.041013430804014206, 0.004938515368849039, 0.013473725877702236, -0.0008598445565439761, 0.015830393880605698, -0.02051905356347561, 0.0014505538856610656, 0.016607724130153656, -0.01273341104388237, -0.02069179341197014, 0.032154329121112823, 0.010352065786719322, -0.013152922503650188, -0.008137291297316551, 0.0009593243594281375, -0.003226537723094225, -0.00504956254735589, -0.01206095889210701, -0.005984209477901459, -0.007952212356030941, -0.01416468620300293, -0.012178175151348114, -0.008063259534537792, 0.014892661944031715, -0.014744599349796772, -0.011931403540074825, 0.020987918600440025, 0.006070579867810011, 0.006841740570962429, 0.0009269355796277523, 0.003417785745114088, -0.02429465763270855, -0.023653050884604454, 0.0025278658140450716, 0.00027646124362945557, 0.005129763390868902, -0.01611418090760708, -0.014140008948743343, -0.004969361703842878, 0.004719505552202463, 0.019408581778407097, 0.003138625528663397, 0.0036152030806988478, 0.001113556558266282, 0.006030479446053505, -0.01541088242083788, -0.0042537241242825985, 0.004762690514326096, -0.016126519069075584, -0.0020512884948402643, -0.005527682136744261, -0.02492392435669899, 0.047947708517313004, -0.012289222329854965, 0.005034139379858971, -0.014917339198291302, -0.002503188792616129, -0.0057343533262610435, 0.01131447497755289, 0.0362260602414608, 0.0034640554804354906, -0.00022093763982411474, -0.02080284059047699, -0.011295966804027557, -0.017619486898183823, -0.013313324190676212, -0.042074546217918396, 0.00834087748080492, 0.006767709273844957, 0.008421078324317932, 0.007248913869261742, 0.010191664099693298, 0.0033252465073019266, 0.0139919463545084, -0.007804149761795998, -0.006360536441206932, -0.013572433963418007, -0.011820356361567974, 0.009130546823143959, 0.02904500998556614, 0.008544464595615864, 0.026676002889871597, -0.004019291140139103, 0.02006252482533455, -0.03178417310118675, -0.01120342779904604, 0.015077740885317326, -0.006755370646715164, -0.019334549084305763, 0.012042450718581676, 0.011154073290526867, 0.00944518018513918, -0.000538655964192003, -0.0017011812888085842, 0.01822407729923725, 0.00263274391181767, -0.0013186853611841798, 0.018964393064379692, -0.006440736819058657, -0.006135357078164816, 0.01203011255711317, 0.004676320590078831, -0.010870286263525486, 0.010049770586192608, 0.006237150635570288, 0.006385213229805231, -0.0077856420539319515, -0.03173482045531273, 0.026034396141767502, -0.01974172331392765, 0.010611175559461117, 0.0032141993287950754, -0.010876455344259739, -0.004121084697544575, -0.022986767813563347, -0.01613885909318924, 0.021789927035570145, 0.0027792644686996937, 0.000549452262930572, -0.006098341662436724, -0.0071563743986189365, 0.0016826733481138945, -0.00824216939508915, 0.01116024237126112, -0.004096407443284988, -0.008303862065076828, -0.032030943781137466, -0.0054567353799939156, 0.007976889610290527, -0.015892086550593376, 0.01791561394929886, 0.017989644780755043, -0.005465989466756582, -0.0022409940138459206, -0.000839794403873384, 0.0016271497588604689, 0.03230239450931549, -0.012770426459610462, 0.012992520816624165, 0.011505722999572754, 0.003920582588762045, -0.014127670787274837, -0.028107278048992157, 0.023369263857603073, 0.0012384846340864897, -0.002890311647206545, -0.0061908806674182415, -0.014004284515976906, -0.014028961770236492, -0.01668175496160984, 0.0223451629281044, 0.0036768957506865263, 0.02145678550004959, -0.01409065444022417, 0.004494326654821634, -0.006841740570962429, 0.008692527189850807, 0.000889148679561913, 0.00902566872537136, 0.016175873577594757, -0.013954930007457733, 0.030402252450585365, -0.006903433706611395, -0.01137616764754057, -0.011851202696561813, -0.012190514244139194, -0.008316201157867908, -0.002662047976627946, -0.005654152948409319, 0.002952004550024867, -0.0018399902619421482, -0.010105294175446033, 0.01254833210259676, -0.0002963186416309327, 0.011851202696561813, -0.002464630641043186, -0.0031463371124118567, -0.007193390280008316, -0.00472259009256959, -0.01665707863867283, -0.004096407443284988, 0.014226378872990608, 0.006792386528104544, -0.020679455250501633, -0.01344904862344265, 0.0021206929814070463, -0.005404296796768904, 0.014016623608767986, 0.008587649092078209, -0.0007063834927976131, -0.006915772333741188, -0.01030271127820015, -0.012190514244139194, -0.001796805183403194, -0.0016425730427727103, 0.019877446815371513, -0.006098341662436724, 0.007754795253276825, 0.004617712460458279, -0.0029643429443240166, 0.028946300968527794, 0.0009215374593622983, 0.00884058978408575, -0.009593243710696697, -0.0164843387901783, 0.0006257971981540322, -0.022369839251041412, 0.026133105158805847, -0.015139433555305004, -0.017298685386776924, 0.015904424712061882, -0.012881473638117313, 0.004124169237911701, -0.0010896505555137992, -0.016040150076150894, -0.022542579099535942, -0.010679038241505623, 0.0037169961724430323, 0.01874229870736599, 0.004142676945775747, 0.024788200855255127, -0.0012955506099388003, -0.007872011512517929, 0.014226378872990608, -0.020050186663866043, -0.01930987276136875, -0.006385213229805231, -0.0014582655858248472, 0.005512258969247341, 0.019556643441319466, -0.015460236929357052, 0.014041299931704998, 0.009679613634943962, 0.0013225411530584097, 0.014115331694483757, -0.026453908532857895, 0.013325663283467293, 0.004139592405408621, -0.006335859186947346, 0.011289797723293304, -0.004438803065568209, 0.012431115843355656, -0.02414659410715103, -0.004321586340665817, -0.0029350388795137405, 3.5304718039697036e-05, -0.015534267760813236, 0.0020003917161375284, 0.00315867573954165, 0.02401087060570717, -0.009031837806105614, 0.017557794228196144, -0.023369263857603073, 0.009130546823143959, -0.0087295426055789, -0.010857947170734406, 0.00994489248842001, -0.011012179777026176, -0.009247763082385063, -0.022443871945142746, -0.01902608573436737, 0.017175298184156418, -0.007094681728631258, -0.0021314891055226326, 0.027885183691978455, 0.013251631520688534, -0.017718195915222168, 0.016694094985723495, -0.002910361858084798, -0.017261669039726257, 0.032697226852178574, -0.0077116102911531925, 0.009439011104404926, 0.023245878517627716, 0.015373867005109787, -0.0268980972468853, 0.02002551034092903, 0.013189938850700855, 0.008377893827855587, 0.020161233842372894, 0.026601972058415413, -0.008044752292335033, 0.022616611793637276, 0.0007688475889153779, 0.0035041559021919966, -0.0014027419965714216, 0.021024934947490692, 0.022715318948030472, 0.032944001257419586, -0.007643748074769974, -0.007199559360742569, -0.02349264919757843, -0.014189363457262516, 0.02652793936431408, 0.004700997844338417, 0.009877030737698078, -0.012153497897088528, -0.003723165486007929, -0.010333557613193989, 0.01180184818804264, 0.004614627920091152, -2.383369610470254e-05, 0.028477435931563377, -0.010968994349241257, 0.0018353633349761367, 0.011505722999572754, -0.0022610442247241735, 0.008124953135848045, 0.024344012141227722, -0.006545614916831255, 0.013720497488975525, -0.011024517938494682, -0.020445020869374275, 0.00610142620280385, 0.012943167239427567, -0.017064251005649567, 0.02600971981883049, 0.01926051825284958, -0.005135932471603155, -0.007939874194562435, -0.008544464595615864, 0.011943742632865906, -0.007545039523392916, 0.001341820228844881, 0.03691702336072922, 0.006243319716304541, -0.013658804818987846, -0.014127670787274837, 0.011709309183061123, -0.00021399719116743654, 0.008760389871895313, 0.01802666112780571, -0.0022610442247241735, -0.010401420295238495, -0.016632402315735817, -0.013486064039170742, -0.000839794403873384, -0.032944001257419586, -0.007551209069788456, -0.007637578994035721, -0.011771001853048801, -0.004636220168322325, 0.004080984275788069, -0.004352433141320944, 0.03886651620268822, 0.01488032378256321, -0.007039158139377832, -0.024504413828253746, -0.005428973585367203, 0.006496260408312082, 0.01204861979931593, -0.023332249373197556, 0.01579337753355503, 0.016434984281659126, -0.0067862169817090034, -0.010931978933513165, 0.022369839251041412, 0.00558012118563056, 0.00645307544618845, -0.02529408223927021, -0.0011420894879847765, 0.03245045617222786, -0.02011187933385372, -0.023727083578705788, -0.008100275881588459, 0.008488941006362438, -0.005083493422716856, -0.002722198376432061, -0.004000783432275057, 0.005132847931236029, 0.0034979865886271, 0.014670567587018013, 0.000538655964192003, 0.014793953858315945, -0.015657654032111168, 0.003565848572179675, 0.023097814992070198, 0.008266846649348736, 0.031093213707208633, 0.01980341598391533, 0.008094105869531631, 0.010919640772044659, -0.014559520408511162, 0.02243153192102909, -0.024936264380812645, -0.010783916339278221, 0.0015276700723916292, 0.021592509001493454, -0.015386205166578293, -0.013004859909415245, -0.010278034023940563, -0.00365530326962471, -0.018507864326238632, -0.008236000314354897, -0.007224236615002155, -0.009229255840182304, 0.005691168364137411, 0.036300092935562134, 0.015250480733811855, -0.015398543328046799, 0.01373283565044403, 0.024627799168229103, 0.01911245472729206, -0.004963192623108625, 0.018421495333313942, -0.01676812581717968, -0.01742207072675228, -0.023936837911605835, -0.00399769889190793, -0.002284178975969553, -0.0006867189076729119, -0.023973854258656502, -0.020050186663866043, 0.03321544826030731, -0.0006871044752188027, 0.00663815438747406, 0.023566681891679764, -0.002316567813977599, 0.002612693700939417, 0.013177599757909775, -0.007218067534267902, 0.011049195192754269, -0.017014896497130394, -0.0171382836997509, 0.0038311281241476536, -0.023628374561667442, 0.006477752700448036, -0.016360953450202942, -0.005367280915379524, -0.004198200535029173, -0.0002965114254038781, 0.003269722918048501, 0.028822915628552437, -0.014645890332758427, -0.004759605973958969, 0.012455793097615242, 0.0012855255044996738, -0.008396401070058346, -0.004676320590078831, 0.003058424685150385, -0.027046160772442818, 0.011857371777296066, -0.007742457091808319, 0.022962091490626335, 0.020642438903450966, -0.019063100218772888, 0.012289222329854965, -0.016694094985723495, -0.005882416386157274, 0.011400844901800156, -0.0019680028781294823, -0.01203011255711317, 0.01227688416838646, 0.000845192524138838, -0.015312173403799534, -0.00044033295125700533, -0.004654727876186371, -0.00029824653756804764, -0.0008683273335918784, 0.019359227269887924, 0.021937988698482513, -0.013954930007457733, 0.01463355217128992, 0.004324671346694231, 0.01327630877494812, 0.0011066161096096039, 0.0055862907320261, -0.013399694114923477, 0.026034396141767502, -0.026503263041377068, 0.019840430468320847, -0.011252782307565212, 0.017039574682712555, 0.009691951796412468, 0.01728634536266327, -0.005718930158764124, -0.010820931755006313, 0.009253932163119316, 0.0219133123755455, 0.008266846649348736, 0.010296542197465897, 0.0013240835396572948, -0.0008683273335918784, -0.001727400696836412, 0.02014889568090439, -0.008963976055383682, -0.026651326566934586, -0.0013001775369048119, 0.017014896497130394, -0.02225879207253456, 0.001371124293655157, 0.018754636868834496, -0.00020397210028022528, -0.004910753574222326, 0.021765248849987984, 0.0031324562150985003, -0.0035380867775529623, 0.032154329121112823, 0.0037601813673973083, 0.011925234459340572, -0.012943167239427567, -0.03723782300949097, -0.005981124937534332, 0.00210681208409369, 0.015583622269332409, 0.01045694388449192, -0.006163118872791529, -0.029735969379544258, 0.0034979865886271, 0.0018523287726566195, 0.0060860030353069305, -0.00044264644384384155, -0.008347047492861748, 0.000982459168881178, 0.011049195192754269, -0.010154648683965206, 0.004361686762422323, 0.009747475385665894, 0.02635519951581955, 0.0045282575301826, -0.0008768101106397808, -0.01415234711021185, -0.003544256091117859, 0.019235841929912567, 0.015805717557668686, -0.003954513929784298, -0.008562971837818623, 0.021271705627441406, -0.027366962283849716, -0.011838864535093307, 0.006761540193110704, 0.0013649550965055823, 0.013202277012169361, -0.002315025543794036, -0.001559287658892572, 0.003969937097281218, 0.030797086656093597, -0.016040150076150894, -0.03336350992321968, 0.018902700394392014, 0.009334133006632328, 0.006921941414475441, -0.008994822390377522, 0.006240235175937414, 0.0035103249829262495, 0.005253149196505547, -0.007890519686043262, 0.010679038241505623, 0.0016441153129562736, 0.02746567130088806, -0.006397551856935024, -0.01027186494320631, -0.009858522564172745, -0.011474876664578915, 0.021012596786022186, 0.011474876664578915, 0.0033406696747988462, 0.009617920964956284, -0.01416468620300293, 0.016546031460165977, 0.019075440242886543, -0.005737438332289457, 0.012227529659867287, 0.001535381656140089, -0.016743449494242668, -0.0007221923442557454, -0.01802666112780571, 0.005274741444736719, 0.01988978497684002, 0.020876871421933174, 0.007396976929157972, 0.017088929191231728, 0.015324512496590614, -0.007298267912119627, 0.012480470351874828, -0.010574160143733025, -0.02143210731446743, 0.006249489262700081, 0.010426097549498081, -0.007989228703081608, 0.0028656343929469585, -0.008488941006362438, -0.025688916444778442, 0.017385054379701614, -0.01234474591910839, 0.015398543328046799, -0.013412033207714558, 0.010321219451725483, -0.011117057874798775, -0.019680030643939972, 0.03402979299426079, -0.010290373116731644, -0.0026296591386198997, -0.0009315625648014247, 0.015867410227656364, -0.00798305869102478, -0.009204578585922718, 0.006048987153917551, -0.020852195098996162, 0.013954930007457733, -0.027366962283849716, 0.0072304061613976955, -0.010395251214504242, 0.010191664099693298, 0.025911010801792145, 0.010043601505458355, 0.03407914936542511, -0.001027957652695477, -0.010148479603230953, -0.001385776442475617, -0.002336618024855852, -0.006662831641733646, -0.008815913461148739, -0.01819940097630024, -0.005413550417870283, 0.013893237337470055, 0.006129187997430563, -0.0019201909890398383, -0.018421495333313942, 0.006928110960870981, -0.01759481057524681, -0.00522847194224596, -0.014645890332758427, -0.006539445836097002, -0.022505564615130424, -0.0015777954831719398, 0.0040902383625507355, 0.02054372988641262, 0.00417043874040246, -0.0029227002523839474, 0.022357501089572906, -0.014645890332758427, -0.005305587779730558, -0.0032604688312858343, -0.015620637685060501, 0.007211897987872362, 0.00454985024407506, 0.016373291611671448, 0.024590782821178436, 0.005234641022980213, 0.004133423324674368, -0.027539703994989395, 0.00909970048815012, -0.005567782558500767, -0.013584773056209087, -0.0019386988133192062, -0.00874188169836998, -0.0030954403337091208, 0.00040254605119116604, 0.006520937662571669, -0.01679280214011669, -0.021925650537014008, -0.005132847931236029, 0.027860505506396294, -0.01488032378256321, 0.0007642206037417054, -0.006471583619713783, -0.007020649965852499, 0.0007935247267596424, -0.02455376833677292, 0.0037108268588781357, -0.02872420661151409, 0.003067678539082408, 0.01390557549893856, -0.019186487421393394, -0.007070004474371672, 0.015201126225292683, 0.009352641180157661, 0.010247187688946724, -0.01116024237126112, 0.016546031460165977, 0.010123802348971367, -0.02006252482533455, -0.02240685559809208, 0.0026651325169950724, 0.006539445836097002, 0.006644323468208313, -0.0038804823998361826, -0.005197625607252121, -0.013412033207714558, 0.01742207072675228, -0.011425522156059742, 0.0008721831254661083, 0.009617920964956284, 0.006755370646715164, -0.026256490498781204, 0.015608299523591995, -0.015892086550593376, -0.0063173514790833, -0.005506089888513088, 0.002376718446612358, -0.009889368899166584, -0.00031887509976513684, -0.02266596630215645, -0.013362678699195385, 0.02620713785290718, 0.011906726285815239, -0.006761540193110704, 0.004321586340665817, -0.0279838927090168, 0.0026466248091310263, -0.0054382276721298695, -0.00526548782363534, 0.01462121307849884, -0.01516411080956459, -0.001241569290868938, -0.005209964234381914, -0.01130213588476181, 0.014325087890028954, -0.020531391724944115, 0.011320644058287144, -0.016040150076150894, 0.0057343533262610435, -0.013128245249390602, -0.006440736819058657, 0.00770544121041894, -0.013251631520688534, -0.004855229984968901, 0.03257384151220322, 0.00977215263992548, 0.005999633111059666, 0.013523080386221409, -0.0016811310779303312, -0.00018719934450928122, -0.0019510374404489994, -0.005188371520489454, -0.000516677915584296, -0.026108428835868835, -0.013967269100248814, -0.031808849424123764, -0.013954930007457733, -0.028205987066030502, 0.003908243961632252, 0.002194724278524518, -0.018766975030303, -0.0008305404335260391, -1.1187859854544513e-05, 0.0055862907320261, -0.008544464595615864, 0.010851778090000153, -0.01728634536266327, -0.00191710633225739, 0.0049878694117069244, -0.03385705500841141, -0.00821132306009531, 0.00014227921201381832, 0.006446906365454197, 0.015040725469589233, -0.009883199818432331, 0.005345688201487064, 0.010376743040978909, -0.008852928876876831, -0.03553510084748268, -0.00681089423596859, -0.012227529659867287, -0.0037663504481315613, 0.02002551034092903, -0.006483922246843576, 0.020074864849448204, -0.0025186119601130486, 0.007008311804383993, 0.010666699148714542, 0.00856914184987545, -0.006021225359290838, -0.014300410635769367, -0.0021700472570955753, 0.006625815760344267, 0.002634286182001233, 0.019865108653903008, -0.020556068047881126, -0.004438803065568209, 0.01081476267427206, 0.005666491575539112, 0.0017937206430360675, -0.009494534693658352, 0.010666699148714542, 0.014325087890028954, 0.007224236615002155, -5.807806519442238e-05, 0.001078854314982891, -0.018322786316275597, 0.027885183691978455, 0.020395668223500252, 0.018865684047341347, 0.0034424629993736744, 0.011104718782007694, -0.01433742605149746, -0.014078316278755665, 0.02600971981883049, -0.015139433555305004, 0.013041875325143337, 0.015953779220581055, 0.003587441286072135, -0.0028085685335099697, 0.0024399536196142435, 0.0066813393495976925, 0.012708733789622784, -0.02014889568090439, -0.00574360741302371, -0.01796496845781803, -0.004950853995978832, 0.0007958381902426481, 0.019988493993878365, -0.026281168684363365, 0.01639796793460846, 0.0065826307982206345, -0.00842724833637476, -0.007970720529556274, -0.001957206754013896, -0.0017104351427406073, 0.012770426459610462, -0.0004916151519864798, 0.01552192959934473, 0.014818630181252956, 0.004997123498469591, 0.00841490924358368, -0.0139919463545084, 0.0071563743986189365, -0.00806942954659462, -0.017496101558208466, -0.019877446815371513, 0.03390640765428543, 0.007736287545412779, 0.010808593593537807, -0.012967844493687153, 0.01628692075610161, -0.011499553918838501, -0.024886909872293472, 0.008464263752102852, 0.012770426459610462, -0.008624665439128876, 0.02180226519703865, -0.003328331047669053, 0.03050096146762371, -0.003883566940203309, 0.015435559675097466, -0.009229255840182304, -0.0011235816637054086, 0.03462204709649086, -0.010389081202447414, 0.02338160201907158, -0.006675169803202152, 0.017792226746678352, 0.010358234867453575, -0.011795679107308388, 0.012881473638117313, 0.01452250499278307, 0.0010819389717653394, 0.0055369362235069275, -0.005213048774749041, 0.009852353483438492, 0.0019417834701016545, 0.005805300548672676, 0.014769276604056358, 0.0019834262784570456, 0.0017428239807486534, 0.0050804088823497295, 0.02392449975013733, -0.02045736089348793, 0.021222351118922234, 0.003248130204156041, 0.0005054960492998362, 0.018989069387316704, -4.3835687392856926e-05, -0.014016623608767986, 0.03133998438715935, 0.009790660813450813, 0.016200551763176918, 0.0212593674659729, -0.005330265033990145, -0.016866834834218025, -0.004957023076713085, -0.012239867821335793, 0.0064037214033305645, 0.0364481545984745, 0.013954930007457733, -0.020309297367930412, -0.002862549852579832, 0.008704866282641888, -0.006835571490228176, 0.0017212314996868372, 0.002680555684491992, 0.017619486898183823, 0.005691168364137411, -0.008994822390377522, 0.037904106080532074, -0.014658229425549507, -0.02011187933385372, -0.001425876747816801, 0.025516176596283913, 0.013140584342181683, 0.009235424920916557, 0.008581480011343956, -0.02670067921280861, -0.004873737692832947, 0.0026759288739413023, -0.0024661729112267494, -0.020210588350892067, 0.015867410227656364, 0.01893971487879753, -0.0016626232536509633, -0.012258375994861126, -0.016077164560556412, 0.011178750544786453, -0.020037848502397537, -0.004589950665831566, -0.016780463978648186, 0.011943742632865906, -0.014645890332758427, 0.012468132190406322, -0.011135565117001534, -0.0020574575755745173, -0.0015585165238007903, -0.008445755578577518, 0.010919640772044659, 0.0030229513067752123, 0.021728234365582466, -0.024997957050800323, 0.028551466763019562, 0.014559520408511162, -0.031463369727134705, -0.021481461822986603, -0.005395042710006237, -0.027737120166420937, 0.0296125840395689, 0.02223411574959755, 0.0005999632994644344, -0.002373633673414588, 0.005549274850636721, -0.02014889568090439, -0.026601972058415413, 0.005413550417870283, -0.010481621138751507, -0.01965535245835781, -0.00033526227343827486, 0.0028532957658171654, 0.013745174743235111, -0.017816904932260513, 0.02177758701145649, 0.00895780697464943, -0.009543889202177525, -0.006113764829933643, 0.025516176596283913, -0.0001398693275405094, 0.024738846346735954, 0.006070579867810011, 0.009297117590904236, 0.009420502930879593, -6.260864029172808e-05, 0.007181051652878523, -0.01397960726171732, -7.514000753872097e-05, 0.006749201565980911, 0.0029828508850187063, -0.016262244433164597, -0.011067703366279602, -0.01497903186827898, -0.005074239801615477, -0.04873737692832947, -0.008223661221563816, -0.013338001444935799, 0.04076665639877319, 0.010210172273218632, -0.002311940770596266, 0.02080284059047699, 0.004352433141320944, 0.012628532946109772, 0.003038374474272132, -0.011882049031555653, -0.027144867926836014, -0.01928519457578659, -0.02086453326046467, -0.013202277012169361, -0.004417210351675749, -0.01017315685749054, -0.0057343533262610435, -0.011616770178079605, -0.017298685386776924, -0.019791077822446823, 0.004540596157312393, 0.000909198890440166, -0.006761540193110704, 0.014843307435512543, 0.010025093331933022, 0.009186070412397385, -0.0022163167595863342, -0.029538553208112717, -0.0069959731772542, -0.0029735970310866833, -0.030599670484662056, 0.004423379898071289, -0.008328539319336414, 0.011123226955533028, -0.009537720121443272, -0.0008421078673563898, -0.030229512602090836, -0.004670151509344578, 0.018557218834757805, 0.002723740879446268, -0.002930412068963051, 0.012758088298141956, 0.002313483040779829, 0.0029535468202084303, -0.0059379399754107, 0.006314266473054886, 0.015608299523591995, 0.012955505400896072, 0.001261619501747191, 0.0052593182772397995, -0.006940449588000774, -0.007859673351049423, -0.0031956913881003857, 0.019692368805408478, 0.00279006059281528, 0.007600563112646341, -0.027490349486470222, -0.0252694059163332, -0.006718355230987072, 0.0321049764752388, 0.00716871302574873, -0.004306163173168898, -0.010746899992227554, 0.002015814883634448, -0.005058816634118557, -0.0009562397026456892, 0.027391640469431877, 0.04560337960720062, 0.037731368094682693, -0.0108456090092659, -0.009877030737698078, -0.022197099402546883, 0.006335859186947346, -0.017619486898183823, -0.016632402315735817, 0.016521355137228966, 0.005910178180783987, -0.002234824700281024, 0.0036491339560598135, 0.0007935247267596424, -0.006915772333741188, 0.007594394031912088, -0.022394517436623573, 0.0018692943267524242, -0.015447897836565971, 0.007736287545412779, -0.0016271497588604689, -0.005191456060856581, -0.0058885859325528145, 0.027934538200497627, 0.00024195178411900997, 0.0118758799508214, 0.006175457499921322, -0.00028108819969929755, 0.021617187187075615, -0.018816329538822174, 0.007372299674898386, 0.005058816634118557, 0.005978040397167206, -0.008334708400070667, 0.010241018608212471, -0.03013080358505249, 0.009846184402704239, -0.006465414073318243, -0.017261669039726257, -0.04720739275217056, -0.00472259009256959, -0.027539703994989395, 0.009031837806105614, -0.005163694266229868, 0.0026373707223683596, 0.00681706378236413, -0.013226954266428947, -0.002116065938025713, -0.002097557997331023, -0.02670067921280861, 0.003306738566607237, -0.02503497153520584, 0.010876455344259739, -0.01397960726171732, -0.005722015164792538, 0.014954354614019394, -0.01848318800330162, 0.0018245669780299067, -0.02884759195148945, 0.011407013982534409, -0.0075327008962631226, -0.0003013311652466655, 0.0007545810658484697, -0.008507448248565197, 0.007563547696918249, 0.01134532131254673, 0.0009138258174061775, 0.01326396968215704, -0.01373283565044403, -0.020469699054956436, -0.003544256091117859, -0.0041889469139277935, 0.022024359554052353, 0.006977465003728867, -0.0019217333756387234, 0.009506873786449432, -0.0031339984852820635, -0.006061325781047344, -0.024195948615670204, 0.018125368282198906, 0.02297442965209484, 0.013769851997494698, -0.001429732539691031, -0.005752861499786377, -0.012832120060920715, 0.04503580555319786, 0.025368113070726395, -0.01204861979931593, 0.01499137096107006, -0.010894963517785072, 0.0016826733481138945, 0.004932345822453499, 0.021839281544089317, -0.0023381602950394154, 0.021160658448934555, -0.008390231989324093, -0.016916189342737198, -0.006755370646715164, -0.010160817764699459, 0.0126347029581666, 0.01611418090760708, -0.021752910688519478, -0.01982809230685234, -0.00042915111407637596, 0.00045999756548553705, 0.0015215007588267326, -0.0022610442247241735, 0.007921366021037102, -0.012431115843355656, 0.010864117182791233, -0.0007245058077387512, -0.013769851997494698, -0.028255341574549675, 0.02637987770140171, 0.006607308052480221, 0.00280085694976151, -0.009975738823413849, -0.018865684047341347, -0.01757013238966465, 0.013560095801949501, 0.022271130234003067, 0.013152922503650188, 0.006008886732161045, -0.003485647961497307, -0.008581480011343956, 0.02069179341197014, -0.026873420923948288, -0.0072304061613976955, -0.00895780697464943, 0.0011983842123299837, -0.0029180734418332577, 0.005725099705159664, 0.015361527912318707, 0.008889944292604923, -0.013387355953454971, -0.003229622496291995, 0.0047040823847055435, -0.004771944601088762, -0.016077164560556412, -0.013523080386221409, -0.02709551528096199, -0.02544214576482773, -0.0055307671427726746, -0.006490091327577829, -0.017150621861219406, 0.02251790277659893, 0.011425522156059742, -0.002583389403298497, -0.006119933910667896, 0.007896688766777515, -0.013868560083210468, 0.008433417417109013, -0.0024183611385524273, 0.02926710434257984, -0.003988444805145264, 0.013856221921741962, 0.0014474692288786173, 0.02043268270790577, 0.029464520514011383, -0.00816813763231039, -0.00874188169836998, 0.004910753574222326, 0.005000208038836718, 0.011962249875068665, -0.00262194755487144, 0.0060674953274428844, 0.034868817776441574, -0.0004384050553198904, 0.018063675612211227, 0.013251631520688534, 0.0027345370035618544, -0.0101423105224967, 0.013399694114923477, -0.004620797000825405, 0.0022579594515264034, 0.012295391410589218, 0.02251790277659893, -0.006397551856935024, -0.017064251005649567, -0.021641863510012627, 0.014559520408511162, -0.02600971981883049, -0.03607799857854843, -0.017298685386776924, 0.02117299847304821, -0.0035319176968187094, 0.008581480011343956, 0.010716053657233715, -0.01134532131254673, 0.006644323468208313, -0.0013240835396572948, 0.030920473858714104, 0.01309122983366251, 0.010339727625250816, 0.011141735129058361, -0.008137291297316551, -0.008303862065076828, -0.013066552579402924, -0.02086453326046467, 0.008365554735064507, -0.004299994092434645, -0.006662831641733646, 0.008809743449091911, 0.006533276289701462, 0.0026959790848195553, 0.04375259205698967, -0.021074289456009865, -0.0181130301207304, -0.01241877768188715, 0.016385629773139954, -0.00013379643496591598, -0.0038064508698880672, 0.008655511774122715, -0.0340544730424881, 0.002534035127609968, -0.001221519079990685, 0.006576461251825094, 0.029094364494085312, 0.005866993218660355, -0.008050921373069286, -0.002773095155134797, -0.02225879207253456, 0.0010657445527613163, 0.00805709045380354, 0.0002529408084228635, 0.025614885613322258, 0.0036768957506865263, -0.02902033179998398, -0.015188788063824177, 0.03671960532665253, -0.020667115226387978, -0.018557218834757805, 0.011295966804027557, 0.006366705521941185, -0.012930828146636486, -0.002862549852579832, 0.0008529041078872979, 0.0160524882376194, -0.01165995467454195, -0.008562971837818623, -0.005003293044865131, -0.002534035127609968, 0.03173482045531273, -0.022197099402546883, -0.024738846346735954, 0.008451924659311771, 0.012566840276122093, 0.010857947170734406, 0.027194222435355186, 0.006891095079481602, -0.0254915002733469, 0.00963025912642479, 0.02850211225450039, 0.02351732738316059, -0.006354366894811392, 0.013609450310468674, 0.006909602787345648, 0.011166412383317947, 0.008637003600597382, -0.006983634550124407, -0.016151197254657745, -0.003565848572179675, -0.0013302528532221913, -0.007113189436495304, -0.007730118464678526, -0.04787367582321167, -0.0014690618263557553, -0.013066552579402924, 0.017989644780755043, -0.0122028524056077, -0.013523080386221409, -0.009000991471111774, -0.02906968630850315, 0.023134831339120865, 0.0052593182772397995, -0.0056356447748839855, 0.008377893827855587, 0.008192814886569977, -0.026281168684363365, -0.020556068047881126, 0.008785066194832325, 0.0329686775803566, 0.018878022208809853, -0.002791603095829487, -0.017533117905259132, 0.0073476224206388, 0.0041488464921712875, -0.02343095652759075, 0.01599079556763172, -0.013017198070883751, 0.00524389510974288, -0.004642389714717865, -0.00841490924358368, 0.019519628956913948, -0.00576520012691617, 0.0075327008962631226, -0.0029057348147034645, 0.002315025543794036, 0.02223411574959755, 0.010210172273218632, 0.01822407729923725, 0.005746691953390837, 0.000137363065732643, 0.007989228703081608, 0.013412033207714558, 0.004047052934765816, 0.007723948918282986, 0.01622522808611393, -0.01209180522710085, -0.00280085694976151, -0.017977306619286537, -0.0017613318050280213, 0.003824958810582757, 0.037731368094682693, -0.025232389569282532, 0.007723948918282986, -0.0160524882376194, -0.017076591029763222, -0.03573251888155937, 0.011098549701273441, 0.013893237337470055, -0.02872420661151409, 0.026996806263923645, -0.005863908678293228, -0.025133680552244186, 0.004682489670813084, 0.00420745462179184, 0.01379452832043171, 0.016434984281659126, 0.0026373707223683596, 0.0058731622993946075, -0.007292098831385374, 0.008704866282641888, -0.0015461778966709971, -0.02019825018942356, -0.020963242277503014, -0.008963976055383682, 0.004765775054693222, 0.008754219859838486, 0.004559103865176439, -0.008637003600597382, -0.0038064508698880672, -0.011413183063268661, 0.003386939410120249, 0.01034589670598507, 0.0026250320952385664, 0.014053639024496078, 0.020926225930452347, 0.019729383289813995, 0.008032413199543953, 0.009642597287893295, -0.017890935763716698, -0.004389448557049036, -0.022875720635056496, -0.00713169714435935, -0.004346263594925404, 0.005629475694149733, -0.008205153979361057, 0.020296959206461906, -0.009753644466400146, -8.150208304869011e-05, -0.025935688987374306, -0.0029180734418332577, -0.002455376787111163, -0.003982275724411011, -0.010777746327221394, -0.009142884984612465, 0.02795921452343464, 0.016496676951646805, 0.014929677359759808, 0.009192239493131638, -0.02088920958340168, -0.0005579350399784744, -0.00590092409402132, 0.013226954266428947, 0.03153740242123604, -0.002475426997989416, -0.002404480241239071, -0.016780463978648186, 0.02312249317765236, 0.004589950665831566, 0.009050345979630947, -0.00980299897491932, 0.011098549701273441, 0.02195032872259617, 0.007032988592982292, -0.012696395628154278, 0.005271656904369593, 0.023134831339120865, -0.024072563275694847, 0.03479478508234024, -0.02481287717819214, -0.011191088706254959, -0.013930252753198147, 0.004975531250238419, 0.018261093646287918, 0.0022194015327841043, 0.00023346900707110763, -0.010999840684235096, 0.011598262004554272, -0.003297484712675214, 0.0030661362688988447, -0.0021715895272791386, 0.004552934784442186, -0.021814603358507156, 0.011999266222119331, -0.019988493993878365, 0.014127670787274837, -0.027144867926836014, -0.023159507662057877, 0.0174590852111578, 0.00526548782363534, 0.0035411715507507324, -0.005098917055875063, 0.015744023025035858, -0.011499553918838501, 0.0037108268588781357, -0.009691951796412468, -0.019766399636864662, 0.0014366729883477092, -0.011912895366549492, -0.01516411080956459, 0.0030645939987152815, -0.010993671603500843, 0.0032851460855454206, -0.02349264919757843, 0.026281168684363365, -0.006749201565980911, -0.0052593182772397995, 0.02011187933385372, -0.0036768957506865263, -0.004250639583915472, -0.005968786310404539, -0.00506498571485281, 0.01499137096107006, 0.026256490498781204, -0.007125528063625097, -0.01728634536266327, 0.003747842740267515, -0.009216916747391224, 0.0032635536044836044, -0.03262319788336754, 0.017150621861219406, 0.008988653309643269, -0.019815754145383835, 0.02206137590110302, 0.0006778505630791187, -0.01397960726171732, -0.0013888610992580652, 0.004574527498334646, 6.265683623496443e-05, -0.026256490498781204, -0.004077899735420942, -0.028822915628552437, 0.0008444213308393955, 0.00977215263992548, -0.007094681728631258, 0.0013873187126591802, -0.005268572364002466, -0.002723740879446268, -0.009747475385665894, 0.01137616764754057, 0.019939139485359192, 0.004781198687851429, -0.013671142980456352, -0.006891095079481602, 0.0038002815563231707, -0.01628692075610161, 0.008087936788797379, -0.014534843154251575, 0.00785350427031517, -0.013251631520688534, -0.01839681714773178, -0.0038064508698880672, -0.007014480885118246, -0.009975738823413849, 0.010783916339278221, 0.01254833210259676, 0.0072365752421319485, -0.01415234711021185, 0.01576870121061802, -0.011234274134039879, -0.003038374474272132, 0.01066053006798029, -0.011635277420282364, -0.016977882012724876, 0.0052932496182620525, -0.0055369362235069275, 0.004824383649975061, -0.006866417825222015, 0.0078103188425302505, -0.02114832028746605, 0.02188863418996334, -0.005058816634118557, -0.007045327220112085, 0.009901707991957664, 0.00023038436484057456, 0.02815663255751133, 0.016558369621634483, 0.010697546415030956, 0.006594969425350428, 0.001042609685100615, 0.00435551768168807, -0.005163694266229868, 0.004552934784442186, -0.007865842431783676, 0.0047842832282185555, -0.014386780560016632, 0.011289797723293304, 0.010808593593537807, 0.004827468190342188, -0.03805217146873474, -0.02744099497795105, 0.01209180522710085, 0.003516494296491146, -0.005978040397167206, -0.0010379827581346035], "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3": [6.838972331024706e-05, -0.04432842507958412, -0.0018182031344622374, 0.02096552401781082, -0.03335581347346306, 0.011347200721502304, -0.046587493270635605, -0.014384263195097446, -0.015179546549916267, 0.04038658365607262, 0.020078033208847046, -0.007111450657248497, 0.04197715222835541, -0.009099659509956837, 0.012459445744752884, -0.00525866961106658, -0.00969324167817831, 0.04767092317342758, -0.03234153985977173, -0.01900612935423851, 0.008886431343853474, -0.015721261501312256, -0.03254900500178337, 0.018141690641641617, -0.001688537304289639, -0.04200020432472229, -0.01844136230647564, 0.0036738652270287275, -0.016470441594719887, -0.01163534726947546, -0.0009681715164333582, -0.01770370826125145, 0.022602194920182228, 0.0458037331700325, 0.03234153985977173, -0.02835359424352646, -0.012816746719181538, -0.03068181686103344, 0.010010202415287495, -5.3211392696539406e-06, -0.004388467874377966, 0.03153473138809204, -0.007192131597548723, -0.0350155383348465, -0.019328853115439415, -0.008707781322300434, -0.058182500302791595, -0.01622839830815792, 0.004068625625222921, 0.005480542313307524, 0.007895207963883877, 0.0024924653116613626, -0.045019976794719696, 0.014591728337109089, 0.05490915849804878, -0.023973772302269936, -0.012874376028776169, 0.024826684966683388, 0.012851324863731861, -0.03941841423511505, 0.008938297629356384, -0.020158713683485985, 0.021910643205046654, -0.013819496147334576, 0.02680913172662258, 0.026278940960764885, -0.018199319019913673, 0.0007614265778101981, -0.010361740365624428, 0.015006658621132374, 0.013047263957560062, 0.018026432022452354, -0.02743152715265751, 0.031027592718601227, 0.05403319373726845, 0.018579673022031784, 0.012851324863731861, 0.036951880902051926, 0.04331415146589279, -0.04559626802802086, 0.02028549835085869, -0.006581261288374662, 0.026278940960764885, 0.01460325438529253, 0.0335632786154747, 0.026716923341155052, -0.0031436760909855366, -0.03821972385048866, 0.006886696442961693, -0.006996192038059235, 0.01047123596072197, 0.02641725167632103, 0.00461322208866477, -0.00401099631562829, 0.009347465820610523, -0.03690577670931816, 0.01834915578365326, -0.0008831683662720025, 0.0281691811978817, -0.023132383823394775, 0.0034750443883240223, 0.00024582480546087027, 0.02660166658461094, 0.03301003947854042, 0.008465738035738468, 0.0010632597841322422, 0.012470971792936325, 0.017818966880440712, 0.0060222577303647995, 0.037136293947696686, -0.005486305337399244, -0.052880607545375824, -0.0014609016943722963, 0.015652107074856758, -0.025633493438363075, -0.012367239221930504, -0.0681869387626648, 0.007042295299470425, -0.012597755528986454, -0.009249496273696423, -0.005195277743041515, -0.03651389852166176, -0.004740006290376186, 0.0030860467813909054, 0.004333720076829195, 0.011618058197200298, -0.0060914126224815845, 0.022867290303111076, 0.028146129101514816, 0.036675259470939636, 0.004878316540271044, -0.009929521009325981, 0.023950720205903053, -0.022924918681383133, -0.003973537590354681, 0.011456696316599846, 0.0004451860149856657, 0.0945119857788086, -0.005036797374486923, 0.033609382808208466, -0.020896369591355324, 0.01761150173842907, -0.032018814235925674, 0.004737125243991613, 0.007111450657248497, -0.03506164252758026, -0.016343656927347183, 0.040547944605350494, 0.006736860144883394, -0.04285311698913574, -0.039441462606191635, 0.010448184795677662, -0.031834401190280914, -0.0210577305406332, 0.058920152485370636, 0.027108803391456604, 0.017265725880861282, 0.03653695061802864, -0.006033783312886953, 0.05025271326303482, 0.04979167878627777, -0.017680656164884567, 0.03874991461634636, 0.02254456654191017, 0.06136363372206688, 0.025518234819173813, 0.029875008389353752, -0.0009098219452425838, -0.02142655849456787, 0.014799193479120731, 0.004489319398999214, -0.022095058113336563, 0.02708575129508972, -0.022947970777750015, 0.04105508327484131, -0.017277251929044724, 0.03709018975496292, 0.012436393648386002, 0.01162958424538374, 0.005886828526854515, -0.004950353410094976, -0.027408475056290627, 0.04347551241517067, 0.0026595902163535357, -0.008229457773268223, 0.05191243439912796, 0.009168814867734909, 0.038150567561388016, -0.03238764405250549, 0.002681201323866844, -0.018026432022452354, -0.03188050538301468, 0.019490215927362442, -0.00867320317775011, -0.018153216689825058, -0.016447389498353004, -0.008367768488824368, 0.01283979881554842, -0.011197364889085293, -0.0032301198225468397, -0.00641989940777421, -0.03662915527820587, 0.0076762172393500805, 0.038519397377967834, -0.0183606818318367, -0.008402345702052116, -0.003624880453571677, -0.05587732791900635, 0.00546901673078537, -0.010217667557299137, 0.04421316832304001, -0.021541817113757133, 0.017127415165305138, -0.008655915036797523, 0.029275663197040558, 0.025472132489085197, 0.009745107963681221, 0.031212005764245987, 0.006350744049996138, -0.05463253706693649, 0.039810292422771454, -0.007779949810355902, -0.025379925966262817, -0.02040075697004795, -0.015041236765682697, 0.010845826007425785, -0.03423177823424339, 0.019351905211806297, -0.017392510548233986, -0.04555016756057739, 0.021634023636579514, 0.00232966267503798, 0.029091250151395798, 0.006143278907984495, 0.006569735240191221, 0.04013301432132721, 0.035269107669591904, 0.007762661203742027, -0.022452358156442642, 0.0034663998521864414, 0.012056040577590466, 0.0014709868701174855, -0.00843116082251072, -0.043982651084661484, -0.01846441440284252, -0.006512106396257877, -0.02374325506389141, 0.04776312783360481, 0.0061202272772789, 0.01460325438529253, -0.0010683024302124977, 0.02234862558543682, 0.02011261135339737, 0.005546816159039736, -0.0035240291617810726, 0.010004439391195774, 0.03077402338385582, -0.02214116044342518, 0.023385953158140182, -0.0023757661692798138, 0.006016494706273079, -0.02752373367547989, 0.008033518679440022, 0.02121909335255623, 0.04246123880147934, -0.006028020288795233, 0.040547944605350494, 0.005111715290695429, -0.01520259864628315, 0.010586494579911232, 0.026578614488244057, -0.015536848455667496, -0.013277781195938587, 0.06906290352344513, -0.028791576623916626, 0.017542345449328423, -0.003313682274892926, 0.0038409901317209005, -0.005699533503502607, 0.0023354256991297007, 0.005100189242511988, -0.009520353749394417, 0.03358633071184158, -0.010258007794618607, 0.00015658950724173337, 0.0304051972925663, -0.020469913259148598, -0.053433846682310104, -0.037412915378808975, 0.015110391192138195, 0.00044590639299713075, -0.01164111029356718, -0.022360151633620262, 0.026071475818753242, 0.0042040543630719185, -0.012955057434737682, -0.015513796359300613, 0.008442685939371586, -0.00018963628099299967, -0.017196571454405785, -0.012943531386554241, -0.010799722746014595, -0.015698209404945374, -0.03273341804742813, 0.06412983685731888, -0.007768424227833748, 0.051958538591861725, 0.03939536213874817, 0.0037660719826817513, 0.032295435667037964, -0.0037689534947276115, -0.020101085305213928, -0.01630908064544201, -0.009710529819130898, 0.018683405593037605, 0.05569291487336159, -0.04545795917510986, -0.04292227327823639, -0.017818966880440712, -0.008137251250445843, -0.01594025269150734, -0.006990429013967514, -0.013854073360562325, 0.00210923096165061, 0.021553343161940575, -0.03946451470255852, 0.04951505735516548, 0.0028670555911958218, -0.026255890727043152, -0.004365416243672371, -0.04859299212694168, -0.005783095955848694, -0.011053292080760002, 0.036467794328927994, -0.005739874206483364, -0.05182022973895073, -0.04794754460453987, -0.028123078867793083, -0.013058790005743504, 0.002965025370940566, -0.04239208251237869, -0.03679051995277405, 0.0015992119442671537, -0.006270063109695911, -0.01908680982887745, -0.014753090217709541, -0.01219435129314661, 0.01455715112388134, 0.029805852100253105, 0.017669130116701126, 0.0006115905125625432, 0.030797075480222702, 0.022844238206744194, -0.004947471898049116, 0.010770908556878567, -0.0012094940757378936, -0.014165272004902363, 0.016055511310696602, 0.0002589714713394642, -0.00982578843832016, -0.01837220788002014, -0.02567959763109684, 0.008903720416128635, -0.02078111097216606, -0.012586230412125587, -0.006800252478569746, 0.011249231174588203, -0.004031166434288025, -0.03234153985977173, 0.02789256162941456, 0.007826053537428379, -0.009416621178388596, -0.03812751919031143, -0.022878816351294518, 0.015594477765262127, -0.06551294028759003, 0.03828888013958931, -0.014879874885082245, -0.04137780889868736, 0.010223430581390858, -0.008592522703111172, 0.0021971154492348433, -0.03939536213874817, 0.012943531386554241, 0.030451299622654915, 0.017185045406222343, 0.012344187125563622, -0.03960282728075981, -0.04193104803562164, -0.004094558767974377, -0.013715763576328754, -0.028722422197461128, -0.006638890597969294, -0.01297810859978199, 0.004938827361911535, -0.0003835947427432984, -0.0009307125001214445, -0.019778361544013023, 0.025057202205061913, -0.010350215248763561, -0.038796015083789825, -0.012701488099992275, 0.018602725118398666, -0.016343656927347183, 0.0023728846572339535, -0.039257049560546875, 0.011710265651345253, 0.01983598992228508, 0.007756898179650307, 0.005224092397838831, 0.038957379758358, -0.02263677306473255, 0.009612560272216797, 0.0161246657371521, 0.04497387260198593, 0.016113141551613808, -0.014534099027514458, 0.03782784566283226, -0.04674885421991348, -0.003336734138429165, 0.050667643547058105, 0.009975624270737171, 0.040824566036462784, 0.020008878782391548, -0.025011098012328148, 0.01400391012430191, -0.011929256841540337, -0.001861425000242889, -0.005270195659250021, 0.0073880706913769245, 0.031926609575748444, 0.028514957055449486, -0.0010495728347450495, 0.009237970225512981, -0.011399067007005215, 0.008753884583711624, -0.012113669887185097, -0.009756633080542088, -0.006696519907563925, -0.01409611664712429, 0.031949661672115326, 0.003924552351236343, 0.0009443994495086372, -0.0025414503179490566, -0.021299773827195168, -0.019893620163202286, -0.009941047057509422, 0.020654326304793358, 0.02132282592356205, 0.0022144042886793613, 0.007203657180070877, 0.010598020628094673, -0.03257205709815025, -0.010309874080121517, -0.014499521814286709, -0.008194880560040474, 0.02521856315433979, 0.007042295299470425, 0.009324413724243641, -0.021657075732946396, 0.01882171630859375, -0.009341702796518803, 0.0206658523529768, -0.010782434605062008, 0.006241248454898596, -0.009589508175849915, 0.006356507074087858, 0.0035874212626367807, 0.007376545108854771, 0.0154331149533391, 0.039625879377126694, -0.01334693655371666, 0.006731097586452961, 0.06832525134086609, 0.010131224058568478, -0.01089193020015955, -0.008811513893306255, -0.01348524633795023, 0.0009407976176589727, 0.014660883694887161, 0.044996924698352814, 0.010234956629574299, -0.022037427872419357, 0.017185045406222343, -0.011087869293987751, 0.006391084752976894, -0.01687384769320488, -0.005587156396359205, 0.0052327364683151245, -0.024803632870316505, -0.015502270311117172, 0.010281059890985489, 0.011214653961360455, 0.025149408727884293, 0.02187606692314148, -0.023432057350873947, 0.025356873869895935, -0.020504489541053772, -0.004708310589194298, 0.01051733922213316, 0.03485417366027832, -0.021945221349596977, 0.028422750532627106, 0.0018931211670860648, -0.026486407965421677, 0.03372464329004288, -0.02464227005839348, 0.0047976355999708176, -0.011139735579490662, -0.010136986151337624, -0.02317848801612854, 0.022659825161099434, -0.020792637020349503, 0.00987765472382307, 0.0032301198225468397, 0.008425397798418999, -0.013612031005322933, -0.020435335114598274, 0.0054200319573283195, 0.0047745839692652225, 0.005981917027384043, -0.023604944348335266, -0.011739079840481281, 0.0026106054428964853, 0.003933196887373924, -0.00046247479622252285, -0.02087331749498844, -0.017565397545695305, 0.009024742059409618, -0.02577180415391922, -0.003463518340140581, -0.007935549132525921, -0.015559899620711803, -0.0038265828043222427, -0.01403848733752966, -0.013877125456929207, -0.00917457789182663, -0.02076958492398262, 0.010511577129364014, 0.008200643584132195, 0.0013643726706504822, 0.04799364507198334, 0.008834565058350563, -0.008840328082442284, -0.0006598550244234502, 0.030289938673377037, 0.013174048624932766, 0.01153737772256136, -0.03227238357067108, 0.010690227150917053, -0.03591455519199371, -0.001275767688639462, -0.031096747145056725, -0.010805485770106316, -0.003051469335332513, -0.015144969336688519, 0.025887062773108482, 0.006650416646152735, 0.003584539983421564, -0.06578955799341202, -0.009393569082021713, -0.007157553918659687, 0.006552446633577347, 0.01357745286077261, -0.023973772302269936, 0.010719042271375656, -0.010586494579911232, 0.008851854130625725, 0.003930315375328064, 0.015410063788294792, 0.029921110719442368, 0.011813998222351074, 0.039625879377126694, 0.00982578843832016, 0.003065876429900527, 0.028722422197461128, 0.02374325506389141, -0.021161463111639023, -0.020896369591355324, 0.015363960526883602, 0.029275663197040558, 0.008828802034258842, 0.0281691811978817, -0.016205348074436188, 0.051220886409282684, 0.001728877774439752, -0.02113841287791729, -0.008678966201841831, -0.019686155021190643, 0.021103834733366966, 0.024964993819594383, 0.024042926728725433, 0.006759911775588989, -0.030727921053767204, 0.00581767363473773, 0.025264667347073555, -0.007146027870476246, -0.04190799593925476, 0.020988576114177704, 0.026463355869054794, 0.05209685117006302, -0.017496243119239807, 0.017461664974689484, -0.033517178148031235, -0.03978724032640457, -0.005103070754557848, -0.021564869210124016, 0.025656545534729958, 0.0115489037707448, 0.003463518340140581, 0.014810719527304173, 0.019444111734628677, 0.018130164593458176, -0.028123078867793083, 0.007514855358749628, -0.0057744518853724, -0.008189117535948753, 0.0059242877177894115, 0.023040177300572395, -0.010840063914656639, 0.029183456674218178, -0.005437320563942194, 0.04688716307282448, -0.010021728463470936, -0.010759382508695126, 0.0027647637762129307, -0.023697150871157646, 0.002970788162201643, -0.014245952479541302, 0.023604944348335266, 0.0017605738248676062, -0.00016550402506254613, -0.007053821347653866, 0.008264035917818546, 0.04172358289361, -0.02632504515349865, 0.01928274892270565, 0.010598020628094673, -0.018395259976387024, 0.008287087082862854, 0.0021769453305751085, 0.009370516985654831, -0.013635082170367241, 0.024872787296772003, -0.01584804616868496, 0.04308363422751427, 0.006880933418869972, -0.03437009081244469, 0.006154804956167936, 0.01399238407611847, -0.043706029653549194, 0.004757295362651348, -0.00771655747666955, 0.004304905422031879, -0.012424868531525135, 0.01394628081470728, -0.02078111097216606, 0.02020481787621975, 0.030750973150134087, 0.0027244233060628176, -0.0042703282088041306, -0.06090259924530983, 0.04744040593504906, -0.0023527145385742188, -0.015110391192138195, 0.02133435197174549, -0.024872787296772003, 0.002259067026898265, 0.007503329310566187, 0.021080782637000084, 0.0244809091091156, -0.0073650190606713295, -0.02290186658501625, -0.005912762135267258, -0.006097175646573305, 0.006754149217158556, 0.01534090843051672, 0.010275296866893768, -0.02085026539862156, -0.033332761377096176, -0.006806015502661467, -0.041654426604509354, -0.015421589836478233, 0.01413069386035204, -0.013058790005743504, -0.004889842588454485, 0.01394628081470728, 0.000546757597476244, -0.031742196530103683, 0.005659193266183138, -0.014960555359721184, -0.006229722872376442, -0.0022533040028065443, 0.014338159933686256, 0.0026048424188047647, -0.012551652267575264, -0.01168721355497837, 0.004892724100500345, 0.015329382382333279, -0.010695990175008774, -0.028399698436260223, -9.814983059186488e-05, -0.012770643457770348, -0.015075813978910446, 0.00401099631562829, 0.010701753199100494, 0.0043106684461236, -0.027846457436680794, 0.02262524701654911, -0.0004689580819103867, -0.013335410505533218, -0.009675952605903149, -0.001586245372891426, 0.004737125243991613, 0.0010236396919935942, -0.02761594019830227, -0.027039647102355957, 0.014891400001943111, -0.010546154342591763, 0.05500136315822601, -0.01228655781596899, 0.031949661672115326, -0.008874906226992607, -0.040478792041540146, -0.02985195629298687, 0.029875008389353752, 0.0009566457010805607, -0.005679363384842873, 0.02632504515349865, -0.00040052333497442305, 0.02724711410701275, -0.0076992688700556755, 0.0480397492647171, 0.0039908261969685555, 0.00992375798523426, 0.0060683609917759895, 0.006915511097759008, 0.00028634537011384964, 0.030935386195778847, -0.009111185558140278, -0.0032128312159329653, 0.01946716383099556, 0.03271036595106125, -0.03835803270339966, 0.016908423975110054, -0.009843077510595322, 0.027016596868634224, -0.017726760357618332, -0.012759117409586906, 0.009670189581811428, 0.037044085562229156, -0.02957533486187458, 0.0069846659898757935, 0.0006587744574062526, 0.008586759679019451, -0.009151525795459747, 0.022752031683921814, -0.005451727658510208, 0.020078033208847046, 0.03941841423511505, 0.006552446633577347, -0.009209155105054379, -0.02985195629298687, 0.020977050065994263, -0.02687828615307808, 0.00926678441464901, 0.007993178442120552, -0.02457311563193798, 0.015363960526883602, 0.023236116394400597, 0.016827743500471115, 0.03432398661971092, 0.029506180435419083, 0.006754149217158556, 0.00771655747666955, -0.03031299076974392, 0.00616633053869009, -0.033886004239320755, 0.0030341804958879948, 0.012943531386554241, -0.02503415010869503, -0.024688374251127243, 0.03577624261379242, -0.00927831046283245, 0.00586377689614892, -0.004898487124592066, 0.018245423212647438, -0.0038611602503806353, -0.015640581026673317, -0.0055439346469938755, 0.017000630497932434, -0.04087067022919655, 0.003668102202937007, 0.023213066160678864, 0.016551123932003975, -0.008955586701631546, -0.03206491842865944, -0.007998941466212273, -0.012424868531525135, -0.014326633885502815, -0.03902653232216835, -0.025610443204641342, 0.038427188992500305, 0.014476469717919827, 0.009900706820189953, -0.03153473138809204, 0.0011216094717383385, 0.0070077176205813885, -0.022671349346637726, -0.009237970225512981, 0.025840958580374718, 0.036283381283283234, -0.013047263957560062, 0.009018979035317898, -0.029621439054608345, -0.015041236765682697, -0.0015286160632967949, 0.0004642757121473551, 0.039648931473493576, -0.015179546549916267, 0.006321929860860109, -0.024042926728725433, 0.009716292843222618, 0.008851854130625725, 0.011376015841960907, -0.022556092590093613, 0.018406786024570465, -0.00521544786170125, 0.0016222635749727488, -5.2496652642730623e-05, -0.020170239731669426, -0.037044085562229156, -0.03144252300262451, 0.007803001441061497, -0.011986886151134968, 0.005111715290695429, 0.008725069463253021, 0.023697150871157646, -0.0544942282140255, 0.004653562791645527, -0.03058961033821106, -0.04886960983276367, 0.035361312329769135, -0.012113669887185097, 0.0185566209256649, 0.046034250408411026, 0.028538009151816368, -0.003391481935977936, 0.01418832316994667, 0.05016050487756729, 0.014315107837319374, -0.004716954659670591, 0.02800782024860382, 0.006708045490086079, -0.027500681579113007, -0.01163534726947546, -0.012032989412546158, 0.013335410505533218, 0.001774981152266264, 0.021680127829313278, 0.030451299622654915, 0.024365650489926338, 0.002091942122206092, -0.006108701229095459, -0.004451860208064318, 0.00977968517690897, 0.003817938268184662, 0.03460060805082321, -0.0054430835880339146, 0.04326804727315903, 0.011064817197620869, -0.0013593301409855485, 0.03651389852166176, 0.010465472936630249, -0.02401987463235855, -0.015986356884241104, 0.02856106124818325, 0.006085649598389864, -0.020273972302675247, 0.00977392215281725, 0.0016020933398976922, -0.016528071835637093, 0.030382145196199417, -0.009410858154296875, -0.011860101483762264, 0.002590435091406107, -0.005895473062992096, 0.002662471728399396, 0.013104893267154694, 0.011191601864993572, -0.01936343125998974, -0.007313152775168419, -0.0077972388826310635, -0.007952837273478508, -0.01966310292482376, 0.01149127446115017, -0.00586089538410306, 0.008557944558560848, 0.009214918129146099, 0.02401987463235855, 0.016193822026252747, -0.0009119830210693181, -0.00517222611233592, -0.010304111056029797, 0.0017937106313183904, -0.0049417088739573956, 0.011041766032576561, -0.0019276987295597792, 0.026117580011487007, -0.015375486575067043, -0.004258802160620689, 0.012551652267575264, -0.025379925966262817, 0.014914452098309994, 0.03114285133779049, 0.022279471158981323, 0.008448448963463306, -0.0281691811978817, 0.008108437061309814, -0.011445170268416405, 0.05228126421570778, -0.027385422959923744, -0.00853489339351654, -0.005647667217999697, -0.03715934604406357, 0.015214123763144016, -0.022648299112915993, -0.02028549835085869, -0.0020328720565885305, 0.0018297289498150349, -0.023973772302269936, 0.008183354511857033, -0.02743152715265751, -0.0064256624318659306, -0.009116948582231998, -0.02540297619998455, 0.004734243731945753, -0.008321665227413177, -0.004120491910725832, 0.021253669634461403, -0.013220151886343956, -0.025379925966262817, 0.019951248541474342, 0.0050857821479439735, -0.031926609575748444, 0.024365650489926338, 0.0015199716435745358, -0.003621998941525817, 0.013761866837739944, -0.014199849218130112, -0.009935284033417702, 0.040847618132829666, 0.016481967642903328, 0.0015430233906954527, 0.007947075180709362, -0.0030716394539922476, 0.0010207582963630557, -0.003391481935977936, -0.023501211777329445, -0.009796974249184132, 0.02141503244638443, -0.026025373488664627, -0.030727921053767204, -0.0005888990126550198, -0.030359093099832535, 0.021933695301413536, -0.02150723896920681, 0.0012116552097722888, -0.036006759852170944, -0.002590435091406107, 0.014073064550757408, -0.013427617028355598, -0.010488525032997131, 0.03197271376848221, 0.01034445222467184, 0.004143543541431427, -0.01052310224622488, -0.02141503244638443, -0.03144252300262451, -0.0016020933398976922, 0.018130164593458176, -0.015882624313235283, 0.008863380178809166, -0.02327069453895092, 0.014972081407904625, 0.03460060805082321, 0.013369987718760967, -0.0007549432921223342, 0.011272283270955086, 0.029506180435419083, 0.014776141382753849, 0.0048062801361083984, 0.005970390979200602, 0.0030399432871490717, -0.0057744518853724, -0.009462724439799786, -0.014464943669736385, 0.00029534994973801076, -0.005402742885053158, -0.023858513683080673, -0.004673732910305262, 0.0065927873365581036, -0.013335410505533218, 0.007203657180070877, -0.006713808514177799, -0.01214824803173542, 0.011813998222351074, 0.008938297629356384, -0.0014018317451700568, 0.020988576114177704, -0.008598285727202892, -0.008897957392036915, -0.006898222025483847, -0.00977392215281725, 0.009791211225092411, 0.0064660026691854, 0.03236459195613861, -0.0010841503972187638, -0.010598020628094673, 0.014199849218130112, -0.0044172825291752815, -0.026117580011487007, 0.025356873869895935, -0.015571425668895245, -0.003509621834382415, 0.025979269295930862, 0.03690577670931816, -0.025449080392718315, -0.012528601102530956, 0.009987150318920612, -0.014730038121342659, -0.017104363068938255, -0.011710265651345253, -0.011289571411907673, 0.019351905211806297, -0.014165272004902363, 0.02902209386229515, -0.05490915849804878, -0.016620278358459473, -0.030843179672956467, -0.02104620449244976, -0.0075090923346579075, -0.006097175646573305, 0.010465472936630249, 0.0022619483061134815, -0.023201540112495422, -0.009595271199941635, 0.007618587929755449, 0.007036532275378704, 0.016355182975530624, -0.013635082170367241, 0.0071287392638623714, -0.016551123932003975, -0.029736697673797607, -0.0077223205007612705, -0.012632333673536777, -0.0078318165615201, -0.006368033122271299, 0.005595800932496786, 0.024503961205482483, 0.0019752427469938993, -0.035361312329769135, 0.0104308957234025, 0.014499521814286709, 0.004601696506142616, -0.011139735579490662, -0.007497566286474466, 0.01112820953130722, 0.01659722626209259, 0.03158083185553551, -0.011018713936209679, -0.013784918934106827, 0.03289477899670601, 0.014165272004902363, -0.014845296740531921, 0.004420164041221142, 0.01604398526251316, 0.007803001441061497, 0.01158348098397255, 0.026278940960764885, -0.021345878019928932, -0.01575583964586258, 0.0007232471834868193, -0.012563178315758705, -0.01603245921432972, 0.03245679661631584, 0.007739609573036432, 0.010211904533207417, -0.02159944549202919, -0.004143543541431427, -0.010759382508695126, -0.004362534731626511, 0.033886004239320755, -0.003526910673826933, 0.023478159680962563, -0.02159944549202919, 0.00847726408392191, 0.049376748502254486, 0.002892988733947277, -0.024342598393559456, -0.002861292567104101, 0.0011295335134491324, 0.0025097541511058807, 0.006143278907984495, 0.0019305801251903176, 0.021345878019928932, -0.018487466499209404, -0.003763190470635891, -0.0022547447588294744, -0.012632333673536777, 0.02807697467505932, 0.01330083329230547, 0.0027863746508955956, 0.009255259297788143, 0.026555562391877174, -0.034992486238479614, 0.015513796359300613, -0.013427617028355598, -0.029644491150975227, 0.0016020933398976922, 0.01158924400806427, -0.022844238206744194, -0.006811778526753187, 0.008644388988614082, -0.019686155021190643, -0.02141503244638443, -0.002695608651265502, -0.009987150318920612, 0.02549518458545208, -0.011347200721502304, 0.013727289624512196, -0.027131855487823486, 0.030059421434998512, -0.036329485476017, -0.006327692419290543, 0.0015257346676662564, 0.008886431343853474, 0.011646873317658901, -0.0020400758367031813, 0.019409533590078354, -0.026624716818332672, -0.012470971792936325, 0.0015473455423489213, 0.010113934986293316, -0.019409533590078354, -0.020619748160243034, -0.015306331217288971, -0.03022078238427639, 0.03003636933863163, 0.009837314486503601, 0.006102938670665026, -0.007803001441061497, 0.010125461034476757, 0.017208095639944077, -0.017934225499629974, -0.02641725167632103, 0.0015833638608455658, -0.015352434478700161, 0.004224224481731653, -0.0047515323385596275, -0.02362799644470215, 0.013715763576328754, 0.016205348074436188, 0.00866167712956667, 0.008609810844063759, -0.012390290386974812, -0.012920479290187359, 0.02094247192144394, 0.013035737909376621, -0.02298254892230034, -0.01992819830775261, 0.00672533456236124, 0.007157553918659687, -0.009237970225512981, -0.017000630497932434, 0.031119799241423607, -0.003512503346428275, -0.014280530624091625, -0.002202878473326564, -0.011099395342171192, -0.0013917465694248676, -0.005010864231735468, -0.00010454307630425319, -0.017404036596417427, 0.0030082473531365395, -0.02151876501739025, 0.0073419674299657345, -0.023858513683080673, 0.028952939435839653, 0.029367869719862938, 0.06694214791059494, 0.003829464316368103, -0.026071475818753242, 0.013877125456929207, 0.002725863829255104, 0.026394199579954147, 0.011554665863513947, -0.012828272767364979, -0.009243733249604702, -0.00866744015365839, 0.024365650489926338, 0.01172755379229784, -0.01909833587706089, -0.0008853295003063977, -0.015801941975951195, -0.00461322208866477, -0.011883152648806572, 0.00866167712956667, -0.014960555359721184, -0.003645050572231412, 0.0011309741530567408, 0.010015965439379215, -0.01214824803173542, -0.03022078238427639, -0.023328322917222977, 0.01602093316614628, -0.0009580863988958299, -0.01844136230647564, 0.005532408598810434, 0.010223430581390858, 0.02837664633989334, -0.0070077176205813885, 0.02076958492398262, 0.003328089602291584, -0.013761866837739944, -0.01659722626209259, 0.015064287930727005, 0.00461610360071063, -0.011796709150075912, -0.01670095883309841, 0.002475176705047488, 0.010073594748973846, 0.007658928632736206, -0.017669130116701126, 0.008298613131046295, 0.019063759595155716, -0.005578512325882912, -0.007872156798839569, -0.015006658621132374, 0.009099659509956837, -0.01651654578745365, -0.014902926050126553, -0.009301362559199333, -0.0025789092760533094, 0.010776671580970287, 0.037781741470098495, -0.010955321602523327, 0.010160038247704506, -0.017646078020334244, 0.02687828615307808, -0.007192131597548723, -0.0037459018640220165, 0.0011072021443396807, -0.0033886004239320755, -0.014499521814286709, 0.014453417621552944, -0.02939092181622982, 0.0197437833994627, -0.00771655747666955, 0.015502270311117172, 0.0077223205007612705, 0.00737078208476305, -0.01219435129314661, 0.007900970987975597, -0.001132414909079671, -0.01901765540242195, -0.0036882725544273853, -0.021726230159401894, -0.008333190344274044, -0.01688537187874317, 0.0032330013345927, -0.05246567726135254, -0.019709207117557526, 0.04299142584204674, 0.006223959848284721, 0.011848575435578823, 0.00987765472382307, -0.016481967642903328, -0.0010582172544673085, 0.008229457773268223, 0.007774186786264181, 0.04559626802802086, 0.0019550726283341646, -0.010361740365624428, -0.003889974905177951, -0.011940781958401203, 0.013865599408745766, -0.00430778693407774, 0.0037862423341721296, -0.01862577721476555, -0.0008543537696823478, -0.015652107074856758, -0.013681186363101006, 0.03485417366027832, -0.0024463620502501726, 0.0054229130037128925, -0.0007246879395097494, -0.020896369591355324, -0.010062068700790405, 0.020735006779432297, -0.032502900809049606, 0.044535890221595764, -0.024596167728304863, 0.0020328720565885305, 0.01037902943789959, 0.029690593481063843, 0.002845444716513157, -0.0005157818668521941, 0.02195674739778042, 0.0021452491637319326, 0.002401699312031269, -0.01883324235677719, -0.03335581347346306, 0.032018814235925674, -0.010160038247704506, -0.016666380688548088, 0.011998411267995834, -0.03794310241937637, 0.003080283757299185, -0.014107642695307732, 0.0174386128783226, 0.008373531512916088, 0.00400811480358243, 0.015456167049705982, -0.017634553834795952, 0.028307491913437843, -0.001491157105192542, 0.028030870482325554, 0.005336469504982233, -4.6035871491767466e-05, 0.014614779502153397, 0.010822774842381477, -0.005797503516077995, -0.017000630497932434, 0.01798032782971859, 0.02271745353937149, 0.002576027764007449, 0.014073064550757408, 0.03644474223256111, -0.03319445252418518, -0.011151261627674103, 0.007001955062150955, -5.7314096920890734e-05, 0.01975530944764614, 0.008252509869635105, 0.008984401822090149, 0.005039678420871496, 0.0033972447272390127, 0.017104363068938255, -0.011352963745594025, -0.020539067685604095, 0.01052310224622488, 0.00672533456236124, 0.017092838883399963, 0.005875302944332361, 0.004765939898788929, -0.02763899229466915, 0.003624880453571677, 0.011145498603582382, 0.007082636002451181, -0.0027647637762129307, -0.019720731303095818, -0.05550850182771683, -0.007607061881572008, 0.021161463111639023, 0.02131129987537861, -0.007422648370265961, -0.012689962983131409, 0.014303581789135933, 0.01901765540242195, -0.025241615250706673, 0.01670095883309841, -0.01853356882929802, -0.010707516223192215, 0.022740505635738373, -0.010701753199100494, -0.0071978941559791565, -0.0032618159893900156, 0.026163684204220772, 0.010690227150917053, 0.009422384202480316, 0.016481967642903328, 0.010868878103792667, -0.014361211098730564, 0.040847618132829666, -0.006414136383682489, -0.015594477765262127, 0.01417679712176323, 0.006788726430386305, -0.008356242440640926, -0.02013566344976425, -0.006229722872376442, -0.0076531656086444855, 0.019478689879179, 0.002354155294597149, -0.01103023998439312, -0.057905878871679306, -0.015640581026673317, 0.010131224058568478, 0.011739079840481281, 0.008321665227413177, -0.030566558241844177, -0.002805104246363044, -0.012862850911915302, -0.021634023636579514, -0.004734243731945753, 0.007013480644673109, -0.005448846612125635, 0.004590170457959175, -0.011502799578011036, 0.013012686744332314, -0.01534090843051672, -0.0018455770332366228, -0.03455450385808945, 0.03266426548361778, 0.011871627531945705, -0.026371149346232414, -0.01937495730817318, 0.012447919696569443, -0.010782434605062008, -0.004757295362651348, -0.009301362559199333, 0.003328089602291584, -0.025979269295930862, 0.01770370826125145, -0.019628524780273438, 0.0006929918308742344, -0.0056130895391106606, -0.0024434805382043123, -0.01853356882929802, 0.0317191444337368, -0.010217667557299137, 0.013047263957560062, -0.010621072724461555, 0.001766336732544005, -0.03321750462055206, 0.0072958641685545444, -0.013865599408745766, 0.023339848965406418, 0.0017144704470410943, 0.006938562728464603, -0.030797075480222702, 0.028514957055449486, -0.031649988144636154, 0.028238337486982346, -0.013519823551177979, -0.03135031834244728, 0.005039678420871496, 0.0033396154176443815, 0.013519823551177979, -0.02234862558543682, -0.02123061940073967, 0.00048768759006634355, -0.02920650877058506, 0.024158185347914696, 0.016251450404524803, -0.023155435919761658, -0.024365650489926338, -0.013600504957139492, -0.013588978908956051, -0.01762302778661251, -0.011646873317658901, 0.012528601102530956, -0.02549518458545208, -0.00012417304969858378, -0.004812043160200119, -0.04813195765018463, -0.015582951717078686, 0.018936974927783012, 0.006656179204583168, 0.004048455506563187, 0.0026912863831967115, 0.009704766795039177, -0.002344070002436638, 0.001767777488566935, 0.009168814867734909, -0.019524792209267616, -0.00857523363083601, -0.0454118549823761, -0.020550593733787537, -0.002574587007984519, 0.005299010314047337, -0.01677011325955391, -0.008350479416549206, -0.0048062801361083984, 0.021899119019508362, 0.0491001270711422, 0.005529527552425861, -0.0129320053383708, -0.011312623508274555, 0.02206047996878624, -0.020884843543171883, -0.005080019123852253, 0.012309609912335873, 0.013646608218550682, -0.006310403812676668, 0.03347107395529747, 0.019029181450605392, 0.016724010929465294, 0.003178253537043929, 0.0022461004555225372, -0.01769218221306801, -0.0006306801806204021, 0.031673040241003036, -0.02549518458545208, -0.022844238206744194, 0.019317327067255974, 0.02724711410701275, -0.0015358197269961238, -0.027685096487402916, -0.010776671580970287, 0.021760808303952217, -0.02131129987537861, -0.01788812130689621, 0.024434804916381836, 0.01892544887959957, -0.022106584161520004, 9.23869083635509e-05, -0.02019329182803631, 0.0055208830162882805, 0.012805221602320671, 0.012217402458190918, -0.012298083864152431, 0.014107642695307732, 0.001021478557959199, -0.015018184669315815, 0.0154331149533391, -0.029621439054608345, -0.003526910673826933, -0.02708575129508972, 0.028607163578271866, 0.008039281703531742, 0.009307125583291054, -0.018683405593037605, -0.007088398560881615, -0.01621687412261963, -0.008321665227413177, 0.007635876536369324, -0.018971551209688187, -0.017104363068938255, 0.02494194358587265, 0.012563178315758705, -0.00848302710801363, -0.01232113502919674, 0.008696255274116993, 0.011110921390354633, -0.004137780983000994, -0.01029258593916893, -0.00137877999804914, -0.025541286915540695, -0.009468487463891506, -0.008863380178809166, -0.018694931641221046, 0.013980858027935028, -0.02577180415391922, -0.008967112749814987, 0.03821972385048866, 0.006610075943171978, 0.0021610972471535206, -0.006108701229095459, -0.0019132914021611214, -0.02234862558543682, -0.008096911013126373, 0.001228943932801485, -0.0015026829205453396, 0.002187030389904976, -0.03218017891049385, -0.018383733928203583, -0.010793959721922874, 0.014637831598520279, 0.008938297629356384, 0.0025428910739719868, 0.0004667970060836524, 0.005840725265443325, 0.01668943278491497, -0.018014905974268913, -0.006010731682181358, 0.0030399432871490717, -0.020435335114598274, -0.0008060892578214407, -0.001776421908289194, -0.01723114773631096, 0.02660166658461094, -0.0025313652586191893, 0.011226179078221321, -0.008995926938951015, -0.0029938400257378817, -0.0027935781981796026, 0.016193822026252747, 0.026371149346232414, 0.01642433926463127, 0.009307125583291054, -0.019985826686024666, -0.021115360781550407, -0.020158713683485985, -0.015075813978910446, -0.03575319051742554, 0.0019118506461381912, -0.003400126239284873, 0.014372737146914005, 0.0015790417091920972, 0.010494288057088852, 0.015513796359300613, 0.011110921390354633, -0.014891400001943111, 0.010056305676698685, -0.0040801516734063625, -0.0015271753072738647, 0.0038092939648777246, 0.0344853475689888, -0.0006706605199724436, 0.016712484881281853, -0.004025403875857592, 0.019490215927362442, -0.030174680054187775, 0.0005316298920661211, 0.014073064550757408, 0.004169476684182882, -0.007157553918659687, -0.007814527489244938, 0.003976418636739254, 0.01798032782971859, -0.002565942704677582, -5.645866258419119e-05, 0.024964993819594383, 0.011940781958401203, -0.004071507137268782, 0.0061144642531871796, -0.004483556374907494, -0.004327957518398762, 0.0013816615100950003, 0.006823304109275341, -0.0042501576244831085, -0.0024276324547827244, 0.008281324058771133, 0.0018844767473638058, -0.004760176874697208, -0.03077402338385582, 0.016447389498353004, -0.013877125456929207, 0.005578512325882912, -0.005840725265443325, -0.006898222025483847, -0.0027474749367684126, -0.02985195629298687, -0.013565927743911743, 0.020631274208426476, -0.008194880560040474, 0.0038957379292696714, 0.0015113273402675986, 0.0014551387866958976, -0.005627497099339962, 0.006310403812676668, 0.00977392215281725, -0.0001448835537303239, -0.009768159128725529, -0.03510774299502373, 0.00852913036942482, 0.007053821347653866, -0.004402875434607267, 0.01670095883309841, 0.013692711479961872, 0.004708310589194298, -0.0036969168577343225, 0.004149306565523148, 0.00525866961106658, 0.032940883189439774, -0.02724711410701275, 0.004884079564362764, 0.004201172851026058, 0.005379691254347563, -0.011047529056668282, -0.014764616265892982, 0.0219797994941473, 0.003241645870730281, -0.0031407945789396763, -0.005503593944013119, -0.006454477086663246, -0.005546816159039736, -0.020262448117136955, 0.019974300637841225, -0.0017231148667633533, -0.0026163682341575623, -0.011393303982913494, -0.0012159773614257574, -0.009675952605903149, 0.013669660314917564, -0.00018999645544681698, 0.023109331727027893, 0.01686232164502144, -0.01910986192524433, 0.022775083780288696, 0.011018713936209679, -0.005224092397838831, -0.00867320317775011, -0.02307475544512272, -0.006857881788164377, 0.006598549894988537, 0.0018643065122887492, -0.0062585375271737576, 0.0006137515883892775, -0.010655649937689304, 0.019501740112900734, -0.01538701169192791, 0.00927254743874073, 0.008788461796939373, -0.014995132572948933, -0.006004968658089638, -0.004780346993356943, -0.018429836258292198, -0.006823304109275341, 0.006644653622061014, 0.006448714062571526, -0.01787659525871277, -0.0129320053383708, 0.011664161458611488, -0.003685391042381525, 0.015790415927767754, 0.011301097460091114, -0.006183619610965252, -0.0015487862983718514, -0.005595800932496786, -0.014580202288925648, 0.0062354858964681625, -0.0053998613730072975, 0.016654856503009796, 0.005840725265443325, 0.007843341678380966, 0.008823039010167122, -0.016147717833518982, 0.018291527405381203, 0.0087193064391613, 0.015813468024134636, -0.004503726493567228, -0.007030769716948271, -0.0024146658834069967, -0.025518234819173813, 0.021449610590934753, -0.01603245921432972, -0.009485775604844093, 0.006598549894988537, -0.021368928253650665, 0.00671957153826952, -0.012263505719602108, -0.012724540196359158, -0.01659722626209259, -0.013081842102110386, 0.011053292080760002, 0.014245952479541302, -0.0016366709023714066, 0.024688374251127243, -0.007140265312045813, -0.004039810970425606, 0.018694931641221046, -0.012643859721720219, -0.01798032782971859, -0.001007071346975863, -0.0019435466965660453, 0.001085591153241694, 0.0073419674299657345, -0.010281059890985489, 0.017761336639523506, 0.013174048624932766, 0.0008428278961218894, 0.018706457689404488, -0.015836520120501518, 0.005679363384842873, -0.0111224465072155, -0.00167989288456738, 0.007866393774747849, -0.009704766795039177, 0.013727289624512196, -0.023570366203784943, -0.004281853791326284, -0.01167568750679493, -0.005304773338139057, -0.02131129987537861, 0.0060453093610703945, -0.0013931873254477978, 0.023697150871157646, -0.016470441594719887, 0.012309609912335873, -0.02282118611037731, 0.006684993859380484, -0.0003861160366795957, -0.005656311754137278, 0.023028651252388954, -0.021576395258307457, -0.00396201154217124, -0.015963304787874222, -0.011825524270534515, 0.013738814741373062, -0.020262448117136955, -0.01297810859978199, 0.032018814235925674, 0.011612295173108578, -0.018671879544854164, 0.014972081407904625, -0.006840593181550503, -0.014407314360141754, 0.025449080392718315, -0.016908423975110054, -0.0026350978296250105, 0.012759117409586906, 0.01957089640200138, -0.03577624261379242, 0.0031811350490897894, 0.01742708683013916, 0.009531879797577858, 0.01818779483437538, 0.01390017755329609, -0.013623557053506374, 0.030797075480222702, -0.007382308132946491, 0.007013480644673109, -0.0013845429057255387, 0.024135133251547813, 0.024711426347494125, 0.026255890727043152, 0.0007599858217872679, 0.0013333969982340932, -0.017127415165305138, 4.736404662253335e-05, 0.021461136639118195, 0.01853356882929802, 0.01228655781596899, -0.012609281577169895, -0.0004826450312975794, 0.0005629658116959035, 0.011445170268416405, 0.0007794357370585203, -1.8571929103927687e-05, 0.033886004239320755, -0.008586759679019451, -0.009987150318920612, 0.007180605549365282, -0.009566457010805607, 0.005762925837188959, 0.023766305297613144, -0.016193822026252747, 0.012563178315758705, -0.005396979860961437, -0.012816746719181538, 0.009105422534048557, 0.01901765540242195, -0.004322194494307041, 0.022602194920182228, 0.004947471898049116, -0.01172755379229784, -0.0008615574333816767, -0.014902926050126553, 0.0019521911162883043, -0.002740271156653762, 0.0005377529887482524, 0.029321767389774323, 0.007710794918239117, -0.016193822026252747, 0.0009861807338893414, 0.009018979035317898, 0.009958336129784584, 0.0210577305406332, 0.01658570021390915, -0.009168814867734909, -0.012298083864152431, -0.017680656164884567, -0.011399067007005215, -0.005722585134208202, -0.027477629482746124, -0.01400391012430191, -0.0017620145808905363, -0.013116419315338135, -0.00796436332166195, 0.0023656811099499464, 0.006806015502661467, 0.03886517137289047, 0.0021913526579737663, -0.015594477765262127, -0.018660353496670723, 0.005494949873536825, 0.004927301779389381, 0.018003379926085472, -0.022590668871998787, 0.016747063025832176, 0.016113141551613808, -0.011473985388875008, -0.015467693097889423, 0.030912334099411964, 0.01097837369889021, -0.005840725265443325, -0.019789887592196465, -0.0033569042570888996, 0.022682875394821167, -0.010465472936630249, -0.018671879544854164, -0.006310403812676668, 0.005396979860961437, -0.000840666820295155, -0.005359521135687828, 0.0008147336193360388, 0.00862709991633892, -0.0008550741476938128, 0.009589508175849915, 0.0012462326558306813, 0.020988576114177704, -0.016378235071897507, -0.0008709221729077399, 0.030382145196199417, 0.0017476072534918785, 0.027592888101935387, 0.013980858027935028, 0.0017821848159655929, 0.0025645019486546516, -0.018095586448907852, 0.017646078020334244, -0.023409005254507065, -0.012413342483341694, 0.005005101207643747, 0.011646873317658901, -0.007947075180709362, -0.019155966117978096, -0.002473735949024558, -0.0010185971623286605, -0.02244083397090435, -0.007728083524852991, 0.0006713808397762477, -0.012828272767364979, 0.010119698010385036, 0.04555016756057739, 0.010834300890564919, -0.019882094115018845, 0.01043665874749422, 0.00926678441464901, 0.026624716818332672, -0.00426168367266655, 0.006558209657669067, -0.017726760357618332, -0.020735006779432297, -0.022509988397359848, 0.008915246464312077, 0.0010668616741895676, -0.011220416985452175, -0.01825694926083088, -0.016827743500471115, 0.016009407117962837, 0.0013816615100950003, 0.01345066912472248, 0.02223336696624756, -0.005705296527594328, -0.0011482629925012589, 0.018141690641641617, -0.0036825095303356647, 0.003195542376488447, -0.004555592779070139, -0.021899119019508362, -0.0038006496615707874, -0.019432585686445236, 0.005324943456798792, -0.010419369675219059, -0.008471501059830189, -0.0035067403223365545, 0.003224357031285763, -0.002854089019820094, 0.03928010165691376, -0.015652107074856758, -0.0037372573278844357, 0.0015574307180941105, 0.0076762172393500805, 0.0036911540664732456, 0.0007866394007578492, -0.0035643696319311857, -0.02299407497048378, 0.016643330454826355, -0.012597755528986454, 0.01828000135719776, 0.02078111097216606, -0.007261286489665508, 0.017657604068517685, -0.013231677934527397, -0.0020703310146927834, 0.008955586701631546, 0.0019060877384617925, -0.005742755718529224, 0.009330176748335361, 0.0015516678104177117, -0.011917730793356895, -0.006368033122271299, 0.005388335790485144, 0.002869937103241682, 0.0050857821479439735, 0.01973225735127926, 0.015133443288505077, 0.0042271059937775135, 0.02067737840116024, -0.0018815952353179455, 0.007088398560881615, 0.00016964612586889416, 0.006892459467053413, -0.023881563916802406, 0.019213594496250153, -0.021991325542330742, 0.018498992547392845, -0.0013211508048698306, 0.015214123763144016, 0.011998411267995834, -0.0001433527795597911, -0.015029710717499256, -0.013738814741373062, 0.00757824769243598, 0.032318487763404846, 0.0022792371455579996, 0.008194880560040474, 0.011341437697410583, -0.004374060779809952, -0.004947471898049116, 0.0014810719294473529, -0.002133723348379135, -0.020250922068953514, -0.0029765511862933636, 0.011531614698469639, -0.023143909871578217, 0.0029030737932771444, 0.01538701169192791, -0.013335410505533218, -0.014199849218130112, 0.0322493314743042, -0.005007982719689608, 0.002537128049880266, 0.0322493314743042, 0.001736081438139081, 0.01173331681638956, -0.020101085305213928, -0.028860732913017273, -0.01339303981512785, 0.00526155112311244, 0.007733846548944712, 0.01659722626209259, -0.0073419674299657345, -0.021714704111218452, -0.0022072005085647106, 0.0028569705318659544, 0.01162958424538374, 0.001094955950975418, -0.004071507137268782, 0.0001352486724499613, 0.010206141509115696, -0.007900970987975597, 0.005250025540590286, 0.00586089538410306, 0.019720731303095818, 0.003803530940786004, 0.0027056937105953693, -0.013646608218550682, -0.0029203626327216625, 0.025333821773529053, 0.0025328060146421194, -0.016839269548654556, -0.014418840408325195, 0.013323884457349777, -0.02411208115518093, -0.0027950189542025328, 0.0026106054428964853, -0.008189117535948753, 0.009410858154296875, -0.003740138839930296, 0.0034491110127419233, -0.0011619499418884516, 0.041216444224119186, -0.01154314074665308, -0.021991325542330742, 0.018245423212647438, 0.01334693655371666, 0.0031033356208354235, -0.012459445744752884, 0.004788991529494524, -0.01048276200890541, -0.0012390291085466743, 0.00012759478704538196, 0.02003193087875843, 0.004423045553267002, 0.03386295214295387, -0.005226973909884691, -0.004967642016708851, -0.007445700000971556, -0.0030946910846978426, 0.01984751597046852, 0.007491803728044033, -0.003051469335332513, 0.012955057434737682, -0.004186765756458044, 0.010413606651127338, 0.013842548243701458, -0.0013031415874138474, 0.01413069386035204, 0.0023570365738123655, -0.0044922009110450745, -0.01353134959936142, -0.014845296740531921, 0.0011115242959931493, 0.0008370649884454906, 0.012955057434737682, 0.014776141382753849, 0.00796436332166195, 0.008598285727202892, 0.006932799704372883, 0.008702018298208714, -0.005039678420871496, -0.007146027870476246, 0.009837314486503601, 0.005010864231735468, -0.015617528930306435, 0.004884079564362764, -0.005457490682601929, -0.011450933292508125, 0.023109331727027893, -0.0026048424188047647, 0.010949559509754181, -0.009796974249184132, 0.011785183101892471, -0.015525322407484055, -0.013658134266734123, 0.037412915378808975, -0.010661412961781025, -0.004748650826513767, -0.006102938670665026, 0.001022919313982129, -0.017680656164884567, -0.011802472174167633, -0.008817276917397976, -0.02244083397090435, 0.011986886151134968, -0.022752031683921814, 0.0034462297335267067, -0.004273209720849991, 0.015410063788294792, 0.012955057434737682, 0.005460372194647789, 0.029529232531785965, -0.0032041866797953844, -0.005653430242091417, -0.0038611602503806353, 0.001150424126535654, 0.006385321728885174, -0.00802199263125658, -0.022567616775631905, -0.00866167712956667, 0.00757824769243598, 0.004708310589194298, -0.0019132914021611214, -0.01168721355497837, -0.010148512199521065, -0.009796974249184132, -0.010500051081180573, -0.015317857265472412, -0.001219579135067761, -0.018291527405381203, -0.008638625964522362, 0.00857523363083601, 0.020423809066414833, 0.007808764465153217, -0.0031811350490897894, 0.02558739110827446, -0.004737125243991613, 0.00021214770094957203, -0.015110391192138195, -0.009894943796098232, 0.00228355941362679, -0.0002998522249981761, 0.00856947060674429, 0.02641725167632103, 0.001577600953169167, -0.009382043033838272, -0.015490744262933731, 0.0030140101443976164, -0.016286028549075127, -0.007601299323141575, 0.0035038588102906942, -0.007243997883051634, -0.0073419674299657345, -0.005247144028544426, 0.004849501885473728, -0.014292055740952492, -0.028999043628573418, -0.014764616265892982, 0.01975530944764614, -0.009145763702690601, -0.008892194367945194, -0.012182825244963169, -0.00977968517690897, 0.01845288835465908, -0.029460076242685318, 0.002671116031706333, -0.02623283863067627, 0.001491157105192542, 0.011485511437058449, -0.022002851590514183, -0.018498992547392845, 0.01761150173842907, 0.001125931623391807, 0.022924918681383133, 0.001132414909079671, 0.013174048624932766, -0.0059473393484950066, -0.023316798731684685, -0.02233710139989853, 0.0008377853664569557, 0.005290365777909756, 0.010413606651127338, -0.0049964566715061665, -0.0009321532561443746, 0.001378059620037675, 0.013796444050967693, -0.00867320317775011, -0.008166066370904446, 0.0004127695574425161, 0.019766835495829582, -0.017208095639944077, 0.024319546297192574, -0.012367239221930504, -0.008823039010167122, -0.012263505719602108, 0.0015185310039669275, -0.0011626703198999166, 0.001324032200500369, -0.026209786534309387, -0.009289836511015892, 0.017945751547813416, 0.01973225735127926, -0.02299407497048378, 0.012113669887185097, -0.007756898179650307, 0.0011158465640619397, 0.0023022887762635946, 0.004414401017129421, 0.0244809091091156, -0.006385321728885174, 0.003037062007933855, -0.014810719527304173, -0.011698739603161812, 0.00843116082251072, -0.027108803391456604, 0.00931865070015192, -0.019421059638261795, 0.009209155105054379, -0.014822245575487614, -0.02038923092186451, 0.004327957518398762, -0.005350876599550247, -0.0033309711143374443, 0.02994416281580925, -0.004708310589194298, -0.002097704913467169, 0.013646608218550682, -0.004327957518398762, 0.0018916804110631347, 0.0025587391573935747, 0.0033021564595401287, 0.008834565058350563, -0.03307919576764107, -0.02531076967716217, -0.02743152715265751, -0.009629849344491959, -0.02724711410701275, 0.01057496853172779, -0.003875567577779293, -0.013024212792515755, -0.01214824803173542, -1.031023475661641e-05, -0.000942958751693368, -0.006575498264282942, 0.0007027167594060302, -0.028999043628573418, 0.009514590725302696, 4.980653557140613e-06, -0.03049740381538868, -0.002505432115867734, -0.0025328060146421194, -0.0015574307180941105, 0.003336734138429165, -0.014822245575487614, 0.000793122686445713, 0.003817938268184662, -0.005094426218420267, -0.033424969762563705, -0.006834830157458782, -0.006247011478990316, 0.0015242939116433263, 0.014949029311537743, -0.012390290386974812, 0.025794856250286102, 0.01469546090811491, -0.006777200847864151, -0.004368297755718231, 0.014407314360141754, 0.009289836511015892, -0.019305801019072533, -0.001347083947621286, 0.009664426557719707, -0.006638890597969294, 0.030059421434998512, -0.026832181960344315, -0.0013831021497026086, -0.002514076419174671, 0.010799722746014595, 0.0110244769603014, -0.015271753072738647, 0.0014717071317136288, 0.009641374461352825, 0.0037833608221262693, -0.008897957392036915, -0.0012973786797374487, -0.016896897926926613, 0.021657075732946396, 0.02745457924902439, 0.015513796359300613, -0.008511841297149658, -0.0024132251273840666, -0.01826847530901432, -0.020262448117136955, 0.01640128716826439, -0.01107634324580431, 0.0027719673234969378, 0.020516015589237213, -0.001236867974512279, -0.0035557253286242485, -0.002901633270084858, 0.0043942308984696865, 0.012482496909797192, -0.018706457689404488, -0.007203657180070877, -0.01288590207695961, -0.0053768097423017025, 0.007422648370265961, 0.012309609912335873, -0.019801413640379906, 0.015121917240321636, 0.0007426970405504107, -0.007560958620160818, -0.00927831046283245, -0.004397112410515547, -0.0034087705425918102, 0.014165272004902363, 0.003218594007194042, 0.015536848455667496, 0.01394628081470728, -0.007900970987975597, -0.005065612029284239, -0.013024212792515755, 0.010874641127884388, -0.014407314360141754, -0.01232113502919674, -0.0231669619679451, 0.021634023636579514, 0.01233266107738018, -0.0009083811892196536, -0.01057496853172779, 0.01716199330985546, -0.004016759339720011, -0.027408475056290627, 0.007076872978359461, 0.004532541148364544, -0.00926678441464901, 0.026278940960764885, 0.0017735403962433338, 0.027270164340734482, -0.008321665227413177, 0.00516934460029006, -0.004149306565523148, 0.002299407497048378, 0.03374769538640976, -0.006938562728464603, 0.016170769929885864, -0.0115489037707448, 0.020907895639538765, 0.0036018285900354385, -0.020469913259148598, -3.300175376352854e-05, 0.019351905211806297, 0.0048725539818406105, 0.01163534726947546, 0.0024593286216259003, 0.01632060669362545, 0.008252509869635105, 0.0028497667517513037, 0.021092308685183525, 0.0006983945495449007, 0.005454609170556068, 0.005633260123431683, 0.014879874885082245, -0.01872950978577137, 0.022579142823815346, 0.001030122977681458, 0.0048725539818406105, 0.018418310210108757, 0.01659722626209259, -0.01771523430943489, 0.025518234819173813, 0.01163534726947546, 0.005840725265443325, 0.028399698436260223, -0.006806015502661467, -0.020619748160243034, 0.009802737273275852, -0.027938663959503174, 0.017185045406222343, 0.03354022651910782, 0.008823039010167122, -0.018568146973848343, -0.02151876501739025, -0.009387806057929993, -0.00972781889140606, 0.0001268744090339169, -0.004287616815418005, 0.021161463111639023, 0.0026336570736020803, -0.015064287930727005, 0.036098968237638474, -0.02754678577184677, -0.01633213274180889, -0.0035931842867285013, 0.02095399796962738, 0.010724805295467377, 0.011716028675436974, 0.019893620163202286, -0.02623283863067627, 0.002733067609369755, 0.0033943632151931524, -0.005592919420450926, -0.004742887802422047, 0.01883324235677719, 0.03151167929172516, -0.0016049748519435525, -0.008027755655348301, -0.011664161458611488, 0.007543670013546944, -0.01818779483437538, -0.010857352055609226, -0.015214123763144016, 0.01093803346157074, -0.004886961076408625, -0.0012728862930089235, -0.0014472147449851036, -0.008938297629356384, -0.000245644710958004, -0.0031580834183841944, 0.018498992547392845, -0.003803530940786004, 0.012505549006164074, -0.020181765779852867, 0.03821972385048866, 0.006051071919500828, -0.02263677306473255, -0.011883152648806572, -0.002417547395452857, -0.013796444050967693, 0.019305801019072533, 0.007826053537428379, 0.00987765472382307, 0.004593051970005035, 0.01799185387790203, -0.01883324235677719, -0.025172460824251175, -0.0007880800985731184, -0.015871098265051842, -0.012113669887185097, 0.01881019026041031, 0.010603783652186394, 0.0027690858114510775, -0.010355977341532707, 0.010402081534266472, 0.004837976302951574, -0.0017562516732141376, 0.010811248794198036, 0.011214653961360455, 0.00862709991633892, 0.020250922068953514, 0.008246746845543385, 0.009347465820610523, 0.012102143839001656, -0.00146594422403723, 0.009468487463891506, -0.016378235071897507, 0.0016467560781165957, 0.015214123763144016, -0.006863644812256098, -0.012125195935368538, -0.01900612935423851, 0.000863718509208411, -0.0034260593820363283, -0.0322493314743042, -0.007272812537848949, -0.008385056629776955, 0.020838739350438118, 0.016816217452287674, -0.012666910886764526, 0.010863115079700947, 0.0045152525417506695, 0.0017404035897925496, -0.008125725202262402, -0.004299142863601446, -0.024457857012748718, -0.026463355869054794, -0.015882624313235283, -0.010793959721922874, -0.0021524527110159397, -0.010004439391195774, -0.013312358409166336, -0.0097393449395895, -0.012655384838581085, -0.019155966117978096, 0.011289571411907673, -0.007474514655768871, -0.005572749301791191, 0.0076762172393500805, 0.010500051081180573, -0.0025227207224816084, 0.009543404914438725, -0.03181134909391403, -0.008281324058771133, 0.0023973770439624786, -0.022383203729987144, 0.0006069081136956811, -0.009589508175849915, 0.006137515883892775, -0.010713279247283936, 0.006696519907563925, -0.02807697467505932, -0.0059242877177894115, 0.014222901314496994, 0.00258611305616796, -0.008390819653868675, 0.014211375266313553, 0.01052310224622488, 0.006039546336978674, -0.0030572321265935898, 0.006471765693277121, 0.007993178442120552, 0.019778361544013023, 0.016943002119660378, 0.0009876213734969497, -0.012424868531525135, -0.003028417471796274, -0.0016352302627637982, 0.018936974927783012, -0.0020861790981143713, -0.0019392245449125767, -0.02133435197174549, -0.021945221349596977, -0.015121917240321636, 0.03328666090965271, 0.007900970987975597, -0.0030860467813909054, -0.02121909335255623, -0.0034116520546376705, -0.014338159933686256, -0.004647799767553806, 0.021922169253230095, 0.0385654978454113, 0.03469281271100044, -0.029690593481063843, -0.0043711792677640915, -0.0281000267714262, 0.01107634324580431, -0.006454477086663246, -0.01349677238613367, 0.012125195935368538, 0.010200378485023975, -0.003590302774682641, -0.0053307064808905125, 0.007849104702472687, -0.004858146421611309, 0.004451860208064318, -0.0048725539818406105, -0.00011246709618717432, -0.012805221602320671, 0.012079092673957348, 0.002956381067633629, -0.0057744518853724, -0.01667790673673153, 0.03158083185553551, 0.010033253580331802, 0.009900706820189953, 0.0028396816924214363, 0.009900706820189953, 0.03273341804742813, -0.016159243881702423, 0.01159500703215599, -4.893984805676155e-05, 0.0027863746508955956, -0.009030505083501339, 0.011324149556457996, -0.03752817213535309, 0.014683934859931469, -0.0038265828043222427, -0.009912232868373394, -0.04543490707874298, -0.003717087209224701, -0.023432057350873947, 0.01706978678703308, -0.0046852584928274155, 0.0038726860657334328, -0.0019493097206577659, -0.00797012634575367, -0.00806233286857605, 0.012874376028776169, -0.01928274892270565, -0.004143543541431427, -0.009808499366044998, 0.015790415927767754, -0.0122404545545578, -0.013807970099151134, 0.020516015589237213, -0.011185838840901852, 0.009030505083501339, -0.024918891489505768, 0.016378235071897507, -0.013289307244122028, -0.00426744669675827, -0.0059012360870838165, 0.0027676450554281473, 0.007353493478149176, 0.010453947819769382, -0.0004336601705290377, 0.020827213302254677, -0.001664044801145792, -0.01779591478407383, -0.007739609573036432, -0.005670718848705292, 0.02133435197174549, 0.002233133651316166, 0.004362534731626511, -0.0009163052309304476, -0.0053307064808905125, -0.011358726769685745, -0.011335674673318863, 0.013416090980172157, 0.02328222058713436, 0.027385422959923744, -0.003613354405388236, -0.007987415418028831, -0.003123505739495158, 0.04285311698913574, 0.03310224786400795, -0.0007779949810355902, 0.010811248794198036, -0.009382043033838272, -0.0003301076067145914, 0.00032974741770885885, 0.011883152648806572, -0.015698209404945374, 0.02112688682973385, -0.006229722872376442, -0.015997882932424545, -0.02019329182803631, -0.006316166836768389, 0.00843692384660244, 0.019225120544433594, -0.02531076967716217, -0.01622839830815792, -0.004647799767553806, 0.008310139179229736, -0.005633260123431683, -0.01577889174222946, 0.012540126219391823, -0.013635082170367241, -0.009030505083501339, -0.0008075299556367099, 0.0015675157774239779, -0.018683405593037605, 0.02112688682973385, 0.015260227955877781, -0.013761866837739944, -0.028999043628573418, -0.010217667557299137, -0.016009407117962837, 0.013773392885923386, 0.03298698738217354, 0.011226179078221321, 0.0007405359647236764, 0.007895207963883877, 0.0017461664974689484, 0.028630215674638748, -0.0195478443056345, -0.017415562644600868, -0.0036508135963231325, -0.0009343143319711089, 0.006189382169395685, 0.0076762172393500805, 0.014845296740531921, 0.007658928632736206, -0.01149127446115017, 0.013289307244122028, 0.002234574407339096, 0.004117610398679972, -0.00853489339351654, -0.019605474546551704, -0.008690492250025272, -0.02362799644470215, -0.0017735403962433338, 0.00129161577206105, -0.0181647427380085, 0.02846885286271572, 0.022002851590514183, 0.001117287203669548, 0.0010020287008956075, -0.0021250788122415543, -0.002227370860055089, 0.0016265858430415392, 0.0026134869549423456, 0.019766835495829582, -0.0042703282088041306, 0.026025373488664627, -0.010039016604423523, 0.020631274208426476, 0.03243374824523926, -0.012136721983551979, -0.006742623168975115, 0.0006991149275563657, 0.010281059890985489, 0.019824465736746788, 0.0037459018640220165, -0.0014133575605228543, 0.025264667347073555, 0.009768159128725529, 0.016170769929885864, 0.005290365777909756, 0.007451463025063276, -0.009549167938530445, 0.007099924609065056, -0.0019320208812132478, 0.005912762135267258, 0.0008298613247461617, 0.01929427497088909, -0.004431690089404583, -0.017761336639523506, -0.026209786534309387, 0.010096645914018154, -0.016724010929465294, -0.02687828615307808, -0.02690133824944496, 0.005192396230995655, 0.012782169505953789, 0.011860101483762264, 0.012056040577590466, -0.007347730454057455, 0.012540126219391823, -0.004431690089404583, 0.03252595290541649, 0.014937504194676876, 0.01946716383099556, 0.01232113502919674, -0.0032041866797953844, -0.00491289421916008, -0.01771523430943489, -0.017865069210529327, -0.015133443288505077, -0.008632862940430641, -0.0022533040028065443, 0.005417150445282459, 0.015582951717078686, -0.005601563956588507, 0.029137352481484413, -0.02344358153641224, -0.018798664212226868, -0.025633493438363075, 0.013715763576328754, -0.0009811380878090858, -0.003699798369780183, 0.010788197629153728, -0.032940883189439774, -0.007705031894147396, -0.002370003145188093, -0.004336601588875055, 0.04216156527400017, -0.0010510135907679796, -0.010234956629574299, 0.0007578247459605336, -0.016643330454826355, 0.006759911775588989, 0.005105952266603708, 0.000903338601347059, 0.032871730625629425, -0.0033713115844875574, -0.046771906316280365, -0.007808764465153217, 0.02512635663151741, -0.023397479206323624, -0.012782169505953789, 0.010263770818710327, 0.0017980328993871808, -0.004365416243672371, -0.008915246464312077, 4.839957182412036e-05, 0.023432057350873947, -0.013877125456929207, -0.011295334435999393, -0.007607061881572008, 0.0012541566975414753, 0.019674628973007202, -0.019063759595155716, -0.025702649727463722, 0.013831022195518017, 0.016355182975530624, 0.010465472936630249, 0.03158083185553551, 0.0009083811892196536, -0.011404830031096935, 0.006990429013967514, 0.014568676240742207, 0.022763557732105255, -0.012805221602320671, 0.007803001441061497, 0.00913423765450716, 0.019789887592196465, 0.014407314360141754, -0.01779591478407383, -0.017461664974689484, -0.0046074590645730495, -0.003558606607839465, -0.003247408661991358, -0.01237876433879137, -0.04428232088685036, -0.012032989412546158, -0.023604944348335266, 0.022694401443004608, -0.01089769322425127, -0.007215183228254318, -0.011762131936848164, -0.01863730140030384, 0.012597755528986454, -0.009514590725302696, -0.005552579183131456, 0.009612560272216797, 0.012494022957980633, -0.02669387310743332, -0.010799722746014595, 0.010546154342591763, 0.023674098774790764, 0.010765145532786846, -0.01340456586331129, -0.02114993706345558, 0.00848879013210535, -0.004924420267343521, -0.03607591614127159, 0.008315902203321457, -0.006275826133787632, 0.000287245842628181, 0.003624880453571677, -0.011802472174167633, 0.012563178315758705, -0.0005788138369098306, 0.010880404151976109, -0.013220151886343956, 0.006950088776648045, 0.024895839393138885, 0.006950088776648045, 0.015168020501732826, 0.008240983821451664, 0.0011821201769635081, 0.008085384964942932, 0.019155966117978096, -0.0004995736526325345, 0.0067944894544780254, 0.010004439391195774, -0.005722585134208202, 0.0007030769484117627, -0.015375486575067043, -0.002639420097693801, 0.012482496909797192, 0.026624716818332672, -0.021161463111639023, 0.0011136854300275445, -0.014810719527304173, -0.02270592749118805, -0.03178830072283745, 0.008194880560040474, 0.0026884048711508512, -0.021253669634461403, 0.03718239814043045, 0.002344070002436638, -0.014453417621552944, 0.011197364889085293, 0.002243218943476677, -0.0027705265674740076, 0.018579673022031784, 0.0035960657987743616, -0.008563707582652569, -0.009837314486503601, 0.021438084542751312, -0.003581658471375704, -0.012689962983131409, -0.015052761882543564, -0.007088398560881615, 0.006247011478990316, 0.00969324167817831, 0.01640128716826439, -0.019225120544433594, 0.005028152838349342, -0.010056305676698685, 0.0085233673453331, 0.004768820945173502, -0.0032992749474942684, 0.010586494579911232, 0.014949029311537743, 0.026278940960764885, 0.003573013935238123, 0.010753619484603405, -0.014925978146493435, 0.0014702664921060205, -0.022936444729566574, -0.014487995766103268, 0.006546683609485626, 0.004878316540271044, -0.004552711267024279, 0.014464943669736385, -0.002851207507774234, 7.06858845660463e-05, -0.030543506145477295, 0.007347730454057455, -0.003763190470635891, -0.002908836817368865, -0.004209817387163639, -0.006604312919080257, 0.02632504515349865, 0.024089030921459198, 0.0104308957234025, -0.0003650453290902078, -0.015191072598099709, 0.0071978941559791565, -0.0009134237188845873, 0.01357745286077261, 0.030727921053767204, -0.0029434142634272575, -0.002100586425513029, -0.014487995766103268, 0.026094527915120125, 0.002965025370940566, 0.007226708810776472, 0.0010992781026288867, 0.008592522703111172, 0.01828000135719776, 0.00972781889140606, -0.015917200595140457, 0.00293044769205153, 0.015064287930727005, -0.026716923341155052, 0.031004540622234344, -0.02262524701654911, -0.011560428887605667, -0.020147189497947693, 0.003947603981941938, 0.016551123932003975, 0.0023512737825512886, 0.0007214462966658175, -0.00672533456236124, -0.0015963304322212934, -0.0028641740791499615, -0.00526155112311244, 0.004970523528754711, 0.007612824905663729, -0.0304051972925663, 0.012136721983551979, -0.017484717071056366, 0.004526778124272823, -0.014718513004481792, -0.02114993706345558, 0.0161246657371521, 0.007457226049154997, 0.005492068361490965, -0.006990429013967514, 0.013323884457349777, -0.007514855358749628, 0.0011626703198999166, -0.007900970987975597, -0.010015965439379215, -0.011785183101892471, -0.01808406040072441, -0.013277781195938587, 0.006172093562781811, -0.022394729778170586, 0.0018109994707629085, -0.02494194358587265, 0.03298698738217354, -0.0007527822162955999, 0.007048058323562145, 0.03204186633229256, 0.006529395002871752, 0.0010870319092646241, -0.01227503176778555, -0.00848879013210535, 0.013519823551177979, 0.022694401443004608, -0.015398537740111351, -0.0281691811978817, 0.017023682594299316, -0.0015156494919210672, -0.0005020949174650013, -0.030082473531365395, 0.001996853854507208, 0.005316298920661211, -0.01778438873589039, 0.022394729778170586, -0.0006872289231978357, -0.02030855044722557, -0.010880404151976109, 0.006679230835288763, 0.011289571411907673, -0.018752560019493103, -0.004224224481731653, -0.01975530944764614, 0.012805221602320671, 0.016574174165725708, -0.008252509869635105, 0.012217402458190918, -0.0012260624207556248, -0.002996721537783742, -0.0129320053383708, 0.013565927743911743, 0.014972081407904625, 0.012367239221930504, -0.004861027933657169, -0.008275561966001987, 0.007537906989455223, -0.01232113502919674, 0.0159287266433239, -0.018764086067676544, 0.0064660026691854, -0.011306860484182835, -0.026463355869054794, -0.01339303981512785, -9.130635589826852e-05, -0.0025385688059031963, 0.007088398560881615, 0.021103834733366966, 0.004443215671926737, -0.013358461670577526, 0.01455715112388134, -0.010822774842381477, -0.01602093316614628, 0.012090618722140789, 0.0015920082805678248, -0.007290101144462824, 0.0018801545957103372, -0.006523631978780031, 0.011439408175647259, -0.0013802207540720701, 0.013554401695728302, -0.025426028296351433, 0.011416356079280376, -0.00015622931823600084, -0.010684464126825333, 0.017865069210529327, -0.0007585451239719987, 0.020896369591355324, 0.01771523430943489, 0.004137780983000994, 0.012551652267575264, 0.001586245372891426, 0.008102674037218094, -0.022682875394821167, 0.0025572984013706446, -0.020366180688142776, 0.011450933292508125, -0.013612031005322933, 0.021391980350017548, 0.014672408811748028, 0.004129136446863413, -0.03402431309223175, -0.010949559509754181, 0.013865599408745766, 0.005094426218420267, -0.006062597967684269, 0.005742755718529224], "98338da6-5a0a-4653-89be-314b1cc2ff25": [-0.01659882441163063, -0.04068668186664581, -0.0021027973853051662, 0.03693098947405815, -0.03111860528588295, -0.022958913818001747, -0.03867470473051071, -0.013402014039456844, -0.02503795735538006, 0.044688284397125244, 0.0029760519973933697, -0.001114272978156805, 0.012742532417178154, -0.008930950425565243, 0.0008578854030929506, 0.011334147304296494, -0.0004932142328470945, 0.022467097267508507, 0.004465475212782621, 0.005851504858583212, 0.01733655110001564, -0.011205604299902916, 0.010216381400823593, 0.009512188844382763, 0.014374470338225365, -0.043346963822841644, -0.0291066262871027, -0.006108591333031654, -0.025127379223704338, -0.005485436413437128, 0.004124556668102741, -0.014396825805306435, 0.01666589081287384, 0.03339884802699089, 0.008170869201421738, -0.02796650491654873, -0.0024185662623494864, -0.013837942853569984, 0.020723382011055946, 0.017839545384049416, -0.026692252606153488, 0.020008010789752007, -0.012731354683637619, -0.01758245937526226, -0.018800824880599976, -0.011613588780164719, -0.03916652128100395, -0.023696638643741608, 0.026535764336586, -0.0001508984132669866, -0.0040267519652843475, -0.0032331382390111685, -0.01700122095644474, 0.03746751695871353, 0.048466332256793976, -0.0005672662518918514, -0.0022341348230838776, 0.05065715312957764, 0.02801121585071087, -0.06711067259311676, -0.0003279944648966193, -0.04182680323719978, -0.0016906210221350193, 0.0006951107061468065, 0.03064914420247078, 0.024724984541535378, 0.008081448264420033, 0.008780051954090595, -0.02060042694211006, 0.021125776693224907, -0.020432762801647186, 0.009691030718386173, -0.03120802715420723, 0.0365956574678421, 0.0702851265668869, -0.006103002466261387, 0.03563437983393669, 0.03789226710796356, 0.03082798607647419, -0.03491900861263275, 0.0314539335668087, -0.002267667790874839, 0.02776530757546425, 0.005862682592123747, 0.03572380170226097, 0.01688944362103939, -0.018309006467461586, -0.03717689588665962, 0.006130946334451437, -0.02095811255276203, 0.00084740633610636, 0.012865486554801464, -0.0035377293825149536, 0.024300232529640198, -0.0015606808010488749, 0.00023053924087435007, -0.00916009210050106, 0.00670659588649869, 0.009433944709599018, -0.008925361558794975, -0.01492217555642128, 0.03757929429411888, 0.03219166025519371, 0.0321245938539505, 0.022433564066886902, -0.009825163520872593, 0.013670277781784534, 0.025306222960352898, -0.005946515128016472, 0.024724984541535378, -0.023271888494491577, -0.05897333472967148, -0.017951322719454765, 0.010216381400823593, -0.02599923685193062, -0.03735573962330818, -0.026423988863825798, 0.011758898384869099, -0.00016059153131209314, 0.007008392829447985, 0.010557299479842186, -0.03605912998318672, 0.007136935833841562, 0.0023207615595310926, 0.005323360674083233, 0.009193625301122665, 0.00019263998547103256, 0.011490634642541409, 0.03952420502901077, 0.022724183276295662, 0.006846316624432802, -0.01644233800470829, 0.02597688138484955, -0.024367298930883408, -0.012004806660115719, -0.005946515128016472, 0.020231563597917557, 0.09684324264526367, -0.016632357612252235, 0.022713005542755127, -0.0023948135785758495, 0.0343601256608963, 0.001437726547010243, -0.022590050473809242, 0.014978064224123955, -0.026982871815562248, -0.04180444777011871, 0.043570518493652344, -0.0037808434572070837, -0.02848067693412304, -0.03181162104010582, 0.010015183128416538, -0.0588839128613472, -0.023473085835576057, 0.06375737488269806, 0.01637527160346508, 0.014419181272387505, 0.047885093837976456, 0.015626369044184685, 0.049405258148908615, 0.03158806636929512, -0.03192339837551117, 0.042162131518125534, -0.0002464324643369764, 0.044397663325071335, 0.005253500305116177, 0.04153618589043617, 0.02825712412595749, -0.005541325081139803, 0.007930549792945385, 0.018957311287522316, -0.017280662432312965, 0.042832791805267334, -0.011814786121249199, 0.03232579305768013, -0.02915133722126484, 0.0013469080440700054, -0.008070270530879498, 0.03672979027032852, -0.00472535565495491, -0.0045157745480537415, -0.010970872826874256, 0.023249533027410507, 0.02073455974459648, -0.009461889043450356, 0.03588028997182846, -0.0033840364776551723, 0.03804875537753105, -0.03033616952598095, 0.012217182666063309, -0.025507420301437378, -0.011736542917788029, 0.0011009995359927416, 0.022567695006728172, -0.03444954752922058, -0.024523785337805748, 0.01834253966808319, 0.003071062033995986, -0.03516491875052452, 0.01892377808690071, 0.010540532879531384, -0.03024674765765667, 0.00924951396882534, 0.03315293788909912, -0.04037370905280113, 0.006170068401843309, -0.006320966873317957, -0.03129744902253151, 0.03836172819137573, 0.020075077190995216, 0.03699805587530136, -0.016386449337005615, 0.014340938068926334, 0.0013008001260459423, 0.01921439729630947, 0.010825563222169876, 0.019873879849910736, 0.02953137829899788, -0.005968870595097542, -0.020790446549654007, 0.024009613320231438, -0.022019989788532257, -0.00672895135357976, -0.017772478982806206, -0.03563437983393669, 0.005516175180673599, -0.03337649255990982, -0.005929748527705669, -0.024680273607373238, -0.03456132486462593, 0.022154122591018677, -0.011814786121249199, 0.03567909076809883, -0.010020771995186806, 0.02057807147502899, 0.046499066054821014, 0.0323481485247612, -0.002002198249101639, -0.011267080903053284, 0.003314176108688116, 0.014463892206549644, -0.015559302642941475, -0.008606798015534878, -0.0555306151509285, -0.024747338145971298, -0.00723753497004509, -0.0013042931677773595, 0.024859115481376648, 0.0032135772053152323, 0.01653175987303257, -0.0018177669262513518, -0.003912181127816439, 0.00701957056298852, 0.0035880287177860737, -0.02617807872593403, -0.009791630320250988, 0.006170068401843309, 0.003020762698724866, -0.004616373684257269, 0.0022145737893879414, 0.0026505026035010815, -0.003353297943249345, -0.011747720651328564, 0.0065221646800637245, 0.05740845948457718, -0.03125273808836937, 0.051596079021692276, -0.03169984370470047, 0.000600449915509671, 0.022679472342133522, 0.022411208599805832, -0.0028223590925335884, -0.021103421226143837, 0.02783237397670746, -0.02941960096359253, 0.0075393314473330975, -0.00916009210050106, 0.016520582139492035, -0.005946515128016472, -0.0018960105953738093, -0.021371684968471527, -0.03091740794479847, 0.04178209230303764, 0.007572864647954702, 0.01626349426805973, 0.042922213673591614, -0.02975493110716343, -0.0341365747153759, -0.014486247673630714, -0.005946515128016472, 0.009612787514925003, 0.012776065617799759, -0.021762903779745102, 0.021718192845582962, 0.010987639427185059, 0.013692633248865604, -0.011132949031889439, -0.00955130998045206, 0.0027469098567962646, -0.00818763580173254, 0.007516976445913315, 0.012887842021882534, -0.013156105764210224, -0.02747468836605549, 0.049807652831077576, -0.012273070402443409, 0.04010544344782829, 0.03648388013243675, 0.010261091403663158, 0.03925594314932823, 0.0045157745480537415, -0.024859115481376648, -0.03907709941267967, -0.02921840362250805, 0.019985655322670937, 0.03449425846338272, -0.045962538570165634, -0.03272818773984909, -0.03306351974606514, -0.004292221274226904, -0.03474016860127449, -0.00011902461119461805, -0.01811898685991764, 0.022511806339025497, 0.024099035188555717, -0.06407034397125244, 0.03330942615866661, -0.005289827473461628, -0.001212077448144555, 0.012138938531279564, -0.05950986221432686, -1.2280143835141644e-07, -0.024501429870724678, 0.025239156559109688, -0.000493912841193378, -0.014810399152338505, -0.04189386963844299, -0.03105153888463974, -0.003750104922801256, -0.0012379258405417204, -0.03581322357058525, -0.03275054320693016, 0.02870422974228859, -0.015782855451107025, -0.04068668186664581, -0.011194426566362381, -0.00753374258056283, 0.023406019434332848, 0.008439132943749428, 0.017951322719454765, 0.0005672662518918514, 0.015123373828828335, 0.03228108212351799, 0.002290023025125265, 0.012474268674850464, -0.00042510038474574685, -0.023003624752163887, 0.00864592008292675, 0.02874894067645073, 0.005267472006380558, -0.02561919577419758, -0.03053736686706543, 0.01612936332821846, -0.045962538570165634, -0.018867889419198036, 0.00945071130990982, 0.03035852499306202, 0.0025317398831248283, -0.007125758100301027, 0.010149314999580383, 0.022377675399184227, 0.021885858848690987, -0.03858528286218643, -0.003931741695851088, 0.01568225771188736, -0.044576507061719894, 0.03594735264778137, -0.0009598815231584013, -0.0314539335668087, 0.011367680504918098, -0.03080563060939312, -0.008003204129636288, -0.010959695093333721, 0.023718994110822678, 0.021941745653748512, 0.000968963373452425, 0.007740529719740152, -0.03827230632305145, -0.045113034546375275, 0.006119768600910902, -0.007712585385888815, -0.023830771446228027, -0.004445914179086685, -0.012731354683637619, -0.00029236567206680775, -0.0012833350338041782, 0.005370865575969219, -0.049449969083070755, 0.01603994145989418, -0.013983252458274364, -0.018420783802866936, -0.017481859773397446, 0.010406401008367538, -0.011054705828428268, -0.011993628926575184, -0.018197230994701385, 0.024993248283863068, 0.02928546816110611, 0.010708197951316833, 0.018107809126377106, 0.03315293788909912, -0.03444954752922058, -0.0018401222769171, 0.022545339539647102, 0.043346963822841644, 0.022891847416758537, -0.019583260640501976, 0.01995212212204933, -0.006980448495596647, 0.03353298082947731, 0.0606723390519619, 0.02870422974228859, 0.01588345505297184, 0.043391674757003784, 0.007561686914414167, 0.011714187450706959, -0.008003204129636288, 0.004753299988806248, -0.0016542936209589243, 0.014631557278335094, 0.02561919577419758, 0.02664754167199135, -0.006058291532099247, -0.00450739124789834, -0.02675931714475155, 0.004364876076579094, -0.011367680504918098, 0.01595052145421505, 0.001158284954726696, -0.00018582859775051475, 0.011345325037837029, -0.006622763350605965, 0.02794414944946766, 0.0008327356772497296, -0.0339130200445652, 0.0008676658617332578, 0.0009948117658495903, 0.03576851263642311, -0.001742317690514028, -0.011060294695198536, 0.005130545701831579, 0.022981269285082817, -0.05767672508955002, 0.009266279637813568, 0.0049628810957074165, 0.0025275482330471277, 0.048779308795928955, 0.0088135851547122, 0.013905009254813194, -0.041111432015895844, -0.0020762502681463957, -0.01590581052005291, 0.020511005073785782, -0.025149734690785408, -0.02803357131779194, -0.008427955210208893, -0.0062091900035738945, -0.01109382789582014, 0.003951302729547024, 0.02725113555788994, -0.0038171708583831787, -0.01036727987229824, -0.02738526649773121, 0.06125357747077942, 0.013234348967671394, -0.005957692861557007, -0.01453095767647028, -0.02127108722925186, -0.010836740955710411, -0.00746108777821064, 0.050344180315732956, -0.005396015476435423, -0.020924579352140427, 0.009344523772597313, -0.010473467409610748, 0.01820840872824192, -0.03232579305768013, 0.001472656731493771, -0.006784839555621147, -0.00213074148632586, -0.023204822093248367, 0.00935011263936758, -0.00022302924480754882, 0.019538549706339836, 0.03393537551164627, 0.004077051300555468, 0.022869491949677467, -0.00356008461676538, -0.0006168670952320099, -0.011848319321870804, 0.00785230565816164, 0.011814786121249199, 0.021136954426765442, -0.013905009254813194, -0.03476252406835556, 0.022500628605484962, -0.019739747047424316, 0.011982451193034649, -0.016475871205329895, 0.007427555043250322, -0.03060443326830864, 0.004158089403063059, -0.0359249971807003, 0.007595220115035772, 0.0064383321441709995, 0.02839125692844391, -0.007041925564408302, -0.02926311455667019, 0.03176691010594368, -0.0030487067997455597, -0.0009305402054451406, -0.0022257515229284763, -0.023786060512065887, 0.004786832723766565, -0.008131747134029865, 0.007785240188241005, -0.0095960209146142, -0.021952923387289047, 0.022735361009836197, -0.0143297603353858, -0.02742997743189335, -0.0037836378905922174, -0.0012931155506521463, 0.0062818448059260845, -0.0042558941058814526, 0.003716571955010295, -0.014083851128816605, 0.0024576878640800714, 0.0301126167178154, -0.006986037362366915, 0.02091340161859989, 0.03460603579878807, 0.021550528705120087, -0.009702208451926708, 0.011814786121249199, 0.019404416903853416, 0.017057109624147415, 0.004412381444126368, -0.02742997743189335, -0.004437530878931284, -0.03840643912553787, 0.008148513734340668, -0.0401725098490715, 7.693373481743038e-05, 0.00503833033144474, -0.03918887674808502, 0.003378447610884905, 0.03822759538888931, -0.026401633396744728, -0.06205836683511734, 0.0016375271370634437, 0.0034902242477983236, 0.01557048037648201, 0.005214378237724304, -0.03375653177499771, 0.007198412902653217, -0.03163277730345726, -0.006030347663909197, 0.02854774333536625, 0.03802639991044998, 0.022422386333346367, -0.0024548936635255814, 0.03608148545026779, 0.01659882441163063, -0.011859497055411339, 0.01538045983761549, 0.016162896528840065, -0.024322587996721268, -0.015849921852350235, -0.019605616107583046, 0.025283867493271828, 0.0024884266313165426, 0.02995612844824791, -0.02819005772471428, 0.03887590020895004, -0.0033952142111957073, -0.023763705044984818, -0.004786832723766565, -0.01530221663415432, 0.02758646383881569, 0.022724183276295662, 0.006991626229137182, 0.007354900240898132, -0.005043919198215008, -0.01387147605419159, 0.03017968125641346, -0.010697020217776299, -0.03789226710796356, 0.015022775158286095, 0.01639762707054615, 0.048958148807287216, -0.012574867345392704, 0.012619578279554844, -0.01966150291264057, -0.05231144651770592, 0.014396825805306435, -0.024076679721474648, 0.022109411656856537, 0.01865551434457302, 0.015291038900613785, 0.013692633248865604, 0.002630941802635789, 0.004118967801332474, -0.03118567168712616, 0.02711700275540352, 0.002147507853806019, -0.0190802663564682, 0.011043528094887733, 0.011295025236904621, 0.009702208451926708, 0.00971897505223751, -0.012474268674850464, 0.03433777019381523, -0.012273070402443409, -0.03250463679432869, 0.010702609084546566, -0.015481059439480305, -0.018934955820441246, -0.01686708815395832, -0.013793231919407845, -0.002329144859686494, -0.01508984062820673, 0.008774463087320328, 0.0206451378762722, 0.03478487581014633, -0.04120085388422012, 0.006214778870344162, 0.00017194384417962283, -0.005935337394475937, 0.005083040799945593, 0.010808797553181648, 0.0051193684339523315, 0.006628352217376232, 0.03393537551164627, -0.008875061757862568, 0.047035593539476395, -0.012429557740688324, -0.001644513220526278, -0.0009577857563272119, 0.03053736686706543, -0.0063656773418188095, 0.003940124996006489, -0.0059800478629767895, 0.021718192845582962, -0.02017567679286003, -0.01430740486830473, -0.02010861039161682, 0.023629572242498398, 0.025462709367275238, -0.012194827198982239, 0.008103803731501102, -0.015078662894666195, 0.043436385691165924, -0.003445513779297471, 0.007690229918807745, -0.004700206220149994, -0.017548926174640656, 0.008411189541220665, 0.0035768512170761824, 0.03827230632305145, 0.01758245937526226, -0.022567695006728172, -0.02628985606133938, 0.022344142198562622, 0.013960896991193295, 0.0031996050383895636, 0.014419181272387505, 0.01457566861063242, -0.0059800478629767895, -0.02718406915664673, -0.03453896939754486, -0.03453896939754486, -0.03648388013243675, 0.03199046105146408, -0.02566390670835972, -0.010182848200201988, -0.00714252470061183, 0.0060638803988695145, -0.03892061114311218, -0.004281043540686369, -0.020522182807326317, 0.01697886548936367, -0.006846316624432802, 0.0025247540324926376, 0.0038115819916129112, -0.0040155742317438126, -0.009914584457874298, -0.010266680270433426, 0.018532559275627136, -0.00939482357352972, -0.015693433582782745, -0.010087838396430016, -0.013860298320651054, -0.023025980219244957, 0.008506199344992638, 0.004409587010741234, 0.0030012016650289297, -0.03603677451610565, 0.001131738070398569, -0.011680654250085354, -0.010931751690804958, -0.00748344324529171, 0.001182037522085011, -0.021494640037417412, 0.008126159198582172, -0.0005012481706216931, -0.024859115481376648, 0.012653111480176449, -0.003557290183380246, 0.009143325500190258, -0.010920573957264423, 0.02593217045068741, 0.004803599324077368, -0.047259144484996796, -0.006259489338845015, 0.02729584462940693, -0.01934853009879589, -0.009730152785778046, 0.011065883561968803, 0.004009985364973545, 0.000645509862806648, -0.00738843297585845, 0.05727433040738106, -0.0018848328618332744, -0.006432743277400732, -0.011792431585490704, 0.012675466015934944, 0.013469080440700054, 0.011082650162279606, -0.0024073885288089514, -0.00336447567678988, 0.01382676512002945, -0.0065221646800637245, -0.01984034664928913, 0.009344523772597313, -0.007975260727107525, 0.0020902224350720644, -0.013234348967671394, -0.016811201348900795, 0.011591233313083649, 0.018487850204110146, -0.047169726341962814, -0.005968870595097542, -0.0015243533998727798, 0.01597287692129612, 0.0001872257998911664, 0.004253099672496319, -0.006818372756242752, -0.008903006091713905, 0.06214778870344162, -0.00988664012402296, -0.0005959090194664896, -0.020242741331458092, 0.0031996050383895636, -0.00884711742401123, 0.01542517077177763, 0.021785259246826172, -0.0006703102844767272, 0.02861480973660946, 0.023428374901413918, 0.017258306965231895, 0.03981482610106468, 0.02774295210838318, 0.011311791837215424, 0.0046499064192175865, -0.04117849841713905, 0.0081429248675704, -0.008439132943749428, 0.03156571090221405, 0.016207607463002205, -0.023473085835576057, -0.0327952541410923, 0.0564248263835907, -0.003336531575769186, -0.0038479093927890062, -0.004146911669522524, 0.03013497032225132, 0.025775684043765068, -0.017034754157066345, -0.011960095725953579, 0.011445923708379269, -0.05503879860043526, -0.004906992893666029, -0.0065836417488753796, 0.025239156559109688, -0.001010181033052504, -0.023495441302657127, -0.0038311430253088474, -0.021326975896954536, -0.021617595106363297, -0.01778365671634674, -0.023674283176660538, 0.049136992543935776, 0.005563680082559586, 0.012720176950097084, -0.02675931714475155, 0.020723382011055946, -0.02660283073782921, -0.01590581052005291, -0.008204402402043343, 0.03735573962330818, 0.041759736835956573, 0.002438127063214779, -0.010249914601445198, -0.02626750059425831, -0.011429157108068466, -0.005946515128016472, 0.0007083842065185308, 0.02644634246826172, -0.02035451866686344, -0.008819174021482468, -0.02102517895400524, 0.010674664750695229, -0.010305802337825298, 0.013938541524112225, -0.012697821483016014, 0.012384846806526184, -0.01353614591062069, 0.012407202273607254, 0.00516128446906805, -0.03194575384259224, -0.03118567168712616, -0.023808415979146957, 0.015626369044184685, -0.012217182666063309, 0.018845533952116966, 0.011982451193034649, 0.01615171879529953, -0.044643573462963104, 0.013636745512485504, -0.024344943463802338, -0.03418128564953804, 0.03319764882326126, -0.01758245937526226, 0.03912181034684181, 0.051014840602874756, 0.010484645143151283, -0.004068668000400066, 0.011870674788951874, 0.03203517198562622, 0.010870274156332016, -0.006991626229137182, 0.03751222789287567, 0.007958494126796722, -0.010456700809299946, 0.0007129251025617123, -0.016431160271167755, 0.01657646894454956, -0.0009459094726480544, 0.011904207989573479, 0.02859245426952839, 0.026401633396744728, 0.004035135265439749, 0.0015704612014815211, -0.022891847416758537, 0.013793231919407845, 0.02062278240919113, 0.02950902283191681, 0.0032191660720854998, 0.042743369936943054, 0.01592816598713398, -0.005812383256852627, 0.050120625644922256, -0.020589249208569527, -0.01506748516112566, -0.01017725933343172, 0.046186089515686035, 0.01508984062820673, -0.006477453745901585, 0.018085453659296036, -0.01621878519654274, 0.001838725060224533, 0.0294419564306736, -0.01590581052005291, -0.03035852499306202, 0.0169565100222826, 0.011211193166673183, 0.010629954747855663, 0.012094227597117424, 0.0015606808010488749, -0.0006231545121408999, 0.004032340832054615, 0.0027692653238773346, -0.0065221646800637245, -0.009171269834041595, -0.002106988802552223, 0.010976461693644524, -0.004663878586143255, 0.0004799407615792006, 0.046588487923145294, 0.012697821483016014, -0.010423167608678341, -0.00770140765234828, -0.02615572325885296, 0.020768092945218086, -0.008729752153158188, 0.0021237554028630257, -0.00356008461676538, 0.0003211830626241863, -0.014229160733520985, 0.005678251385688782, 0.01324552670121193, -0.022198831662535667, 0.004272660706192255, 0.052713844925165176, 0.0035992064513266087, 0.017437148839235306, -0.022690650075674057, 0.00733813364058733, -0.025529775768518448, 0.013659100048244, -0.012127760797739029, 0.0059073930606245995, 0.0022103821393102407, -0.03044794499874115, 0.014486247673630714, -0.016632357612252235, -0.022053522989153862, -0.03286232054233551, 0.012496624141931534, -0.00980839692056179, -0.007064281031489372, -0.011848319321870804, -0.0294419564306736, -0.019091442227363586, -0.023338953033089638, -0.01426269393414259, 0.008467077277600765, 0.003473457880318165, 0.007053103297948837, -0.01457566861063242, -0.01653175987303257, 0.01525750569999218, 0.01814134232699871, -0.042899858206510544, 0.0049014040268957615, 0.021695837378501892, 0.03064914420247078, 0.007271067705005407, -0.016766490414738655, -0.006119768600910902, 0.03753458335995674, -0.011216782033443451, -0.0034538968466222286, 0.017951322719454765, 0.00402116309851408, 0.005261883605271578, -0.013793231919407845, -0.022075878456234932, 0.004437530878931284, -0.0036830389872193336, -0.01867786981165409, -0.02595452591776848, 0.006762484088540077, -0.01621878519654274, 0.03438248112797737, -0.008550910279154778, 0.012038339860737324, -0.02857009880244732, -0.008439132943749428, 0.012060695327818394, -0.025417998433113098, 0.00872416328638792, 0.01450860220938921, 0.004233538638800383, -0.0066059972159564495, 0.002706390805542469, -0.009758097119629383, -0.022254720330238342, -0.010048716329038143, 0.04267630726099014, -0.011412390507757664, -0.02066749334335327, -0.022154122591018677, 0.011669476516544819, 0.03411421924829483, -0.005292621906846762, -0.005823560990393162, 0.0015620780177414417, 0.02702758088707924, 0.0050550964660942554, 0.011412390507757664, 0.011490634642541409, 0.02912898175418377, -0.010261091403663158, -0.010965283960103989, -0.005594418849796057, -0.02185232564806938, 0.002045511733740568, -0.0325716994702816, -0.020343340933322906, 0.009132147766649723, -0.0032499046064913273, 0.0027497042901813984, -0.0036020008847117424, 0.006058291532099247, 0.005706195253878832, -0.013547323644161224, 0.015369282104074955, 0.013882653787732124, -0.016073474660515785, -0.02561919577419758, -0.013860298320651054, -0.0025051929987967014, 0.0002170911175198853, 0.013960896991193295, 0.046990882605314255, -0.0047113834880292416, -0.003411980578675866, 0.02566390670835972, -0.01579403318464756, -0.020678671076893806, 0.03516491875052452, -0.010406401008367538, -0.00935011263936758, 0.011535344645380974, 0.009836340323090553, -0.02044394053518772, 0.017280662432312965, -0.011328558437526226, -0.008634742349386215, -0.03313058242201805, -0.01753774844110012, -0.009115382097661495, 0.0099313510581851, -0.004403998143970966, 0.007857894524931908, -0.05423400551080704, -0.009713386185467243, -0.000564122514333576, -0.042810436338186264, -0.0027147741056978703, 0.0019672680646181107, 0.010004005394876003, 0.009467477910220623, -0.001803794875741005, 0.010574066080152988, 0.005963281728327274, 0.010579654946923256, 0.0172918401658535, -0.01401678565889597, 0.0031828386709094048, -0.009411589242517948, -0.005801205523312092, -0.01314492803066969, 0.020790446549654007, -0.021159309893846512, -0.011373269371688366, 0.00010906950774369761, 0.00990899559110403, 0.0004027450631838292, -0.02077927067875862, 0.01297726295888424, 0.015536947175860405, -0.012485446408390999, -0.013301415368914604, -0.011088239029049873, 0.008120570331811905, 0.010328157804906368, 0.0319010429084301, -0.011211193166673183, -0.010523767210543156, 0.013714988715946674, 0.009020371362566948, -0.024747338145971298, 0.024434365332126617, 0.01943795010447502, 0.007857894524931908, -8.640855230623856e-05, 0.010596421547234058, -0.03178926557302475, -0.0011079855030402541, 0.019158508628606796, -0.016721779480576515, -0.021684659644961357, -0.0006235038163140416, 0.01343554724007845, -0.007170469034463167, -0.007595220115035772, -0.011205604299902916, -0.014396825805306435, -0.010646721348166466, 0.020544538274407387, 0.005890626925975084, 0.015760499984025955, -0.004596812650561333, 0.014754511415958405, 0.03420364111661911, 0.011580055579543114, -0.0147768659517169, -0.007544920314103365, -0.00017176919209305197, -0.0039540971629321575, 0.002316569909453392, 0.004482241813093424, 0.025842750445008278, -0.011278258636593819, 0.0005840327357873321, -0.024210810661315918, -0.013659100048244, 0.013357304036617279, 0.020343340933322906, 0.006483042612671852, 0.019203219562768936, 0.012038339860737324, -0.0301126167178154, 0.011362091638147831, -0.002034334000200033, -0.03051501139998436, 0.006745717953890562, 0.00745549937710166, -0.03315293788909912, -0.0018862300785258412, 0.0020161704160273075, -0.020611604675650597, -0.019359707832336426, 0.004485036246478558, 0.008629153482615948, 0.01901319995522499, -0.001584433251991868, 0.008014381863176823, -0.015413993038237095, 0.0284359659999609, -0.009869873523712158, -0.026111014187335968, 0.007002803962677717, -0.00237385556101799, 0.021617595106363297, -0.006661885417997837, -0.004647111985832453, -0.022813603281974792, 0.00023158713884186, -0.003336531575769186, 0.003797610057517886, -0.006879849825054407, -0.0031465112697333097, -0.019203219562768936, -0.01525750569999218, 0.021427573636174202, -0.009685441851615906, 0.00467505631968379, -0.008852706290781498, 0.003724955255165696, 0.006483042612671852, -0.004613579250872135, -0.020276274532079697, 0.00035087374271824956, -0.01565990224480629, 0.01051258947700262, 0.011837141588330269, -0.01044552307575941, -0.008277056738734245, 0.01802956499159336, 0.005105396267026663, 0.010674664750695229, -0.00762875284999609, 0.015391637571156025, 0.01673295721411705, 0.01733655110001564, -0.023383663967251778, -0.011501812376081944, 0.011948917992413044, 0.022757716476917267, -0.005331743974238634, -0.002204793505370617, 0.03590264543890953, -0.0036998053546994925, -0.0095960209146142, 0.001608185819350183, -0.0027832372579723597, -8.22169313323684e-05, 0.0004781942698173225, 0.01881200075149536, -0.01912497542798519, -0.000943813647609204, -0.012619578279554844, 0.00879122968763113, -0.02727349102497101, 0.00540160434320569, 0.0295537319034338, 0.047840382903814316, 0.006913382560014725, -0.03158806636929512, 0.008366478607058525, -0.000967566214967519, 0.008349712006747723, 0.008114981465041637, -0.01372616644948721, -0.00436208164319396, 0.019046733155846596, 0.01453095767647028, 0.021707015112042427, -0.023696638643741608, 0.004918170161545277, -0.01034492440521717, -0.011814786121249199, -0.006879849825054407, 0.006622763350605965, 0.00010435393778607249, -0.013200816698372364, -0.01430740486830473, 0.016118185594677925, -0.024344943463802338, -0.02874894067645073, -0.005446314811706543, -0.0009759494569152594, -0.016632357612252235, -0.03679685667157173, 0.0038479093927890062, 0.021438751369714737, 0.01684473268687725, 0.006857494357973337, 0.024680273607373238, 0.015536947175860405, -0.0010821372270584106, -0.024926181882619858, -0.0024311409797519445, 0.005041124764829874, 0.0019141742959618568, -0.008696218952536583, -0.00421677203848958, -0.0062315454706549644, 0.02035451866686344, -0.009489833377301693, 0.014877465553581715, -0.005946515128016472, -0.011049116961658001, -0.0020608811173588037, -0.018890244886279106, 0.0150563083589077, -0.0016459104372188449, -0.019113797694444656, -0.01003194972872734, -0.009892228990793228, 0.009981649927794933, 0.03693098947405815, -0.03080563060939312, -0.004180444870144129, -0.0010318377753719687, 0.01572696678340435, 0.005281444173306227, -0.006499809212982655, -0.015268683433532715, 0.012083050794899464, -0.018107809126377106, 0.011881852522492409, -0.03626032918691635, 0.0154475262388587, -0.007405199576169252, -1.754150252963882e-05, 0.009025960229337215, 0.0077796513214707375, 0.01764952577650547, 0.012306603603065014, -0.014933353289961815, -0.002629544585943222, 0.006589230615645647, -0.022511806339025497, -0.011915385723114014, -0.006181246135383844, -0.003207988338544965, -0.024724984541535378, -0.022981269285082817, 0.01673295721411705, -0.0076846410520374775, 0.018756113946437836, 0.008031148463487625, -0.01718006283044815, 0.004342521075159311, 0.005113779567182064, -0.008226757869124413, 0.03999366611242294, 0.01673295721411705, -0.0184096060693264, 0.009769274853169918, -0.008277056738734245, 0.013793231919407845, 0.00469741178676486, 0.005485436413437128, -0.0188567116856575, 0.0084782550111413, -0.01832018420100212, -0.008942128159105778, 0.047616831958293915, -0.014665089547634125, 0.011691831983625889, -0.0010569874430075288, -0.02738526649773121, -0.003448307979851961, 0.01418445073068142, -0.021572884172201157, 0.03252698853611946, 0.0013769479701295495, -0.00731018977239728, 0.010082249529659748, 0.02845832146704197, 0.0032303438056260347, -0.008763285353779793, 0.01491099875420332, -0.01932617463171482, -0.011250314302742481, -0.014955708757042885, -0.0352543406188488, 0.02897249534726143, -0.016677068546414375, -0.014832754619419575, 0.000157622474944219, -0.0437493622303009, -0.009925762191414833, 0.020969290286302567, 0.018621981143951416, -0.004694617353379726, -0.0004960086662322283, 0.010579654946923256, -0.02599923685193062, 0.02745233289897442, -0.0026980077382177114, 0.023651927709579468, 0.013211994431912899, -0.004023957531899214, 0.00020154718367848545, 0.01474333368241787, -0.022299431264400482, 0.0054295482113957405, 0.018197230994701385, 0.015536947175860405, -0.018130164593458176, 0.01521279476583004, 0.02017567679286003, -0.01644233800470829, -0.009903406724333763, 0.001055590226314962, -4.7592380724381655e-05, 0.0020622783340513706, -0.004336932208389044, 0.008327356539666653, 0.009623965248465538, -0.0027231574058532715, 0.011401212774217129, -0.014128562062978745, -0.03118567168712616, 0.008511788211762905, -0.0025624786503612995, 0.013737344183027744, -0.001041618175804615, -0.006578052882105112, -0.03375653177499771, -0.01959443837404251, -0.00712016923353076, 0.00855649821460247, 0.007785240188241005, -0.013334948569536209, -0.04086552560329437, -0.008511788211762905, 0.0046499064192175865, 0.012507801875472069, -0.002970463130623102, -0.005071863066405058, 0.00945071130990982, 0.014609201811254025, -0.010758497752249241, 0.021483462303876877, -0.004202800337225199, 0.0022522984072566032, 0.0029061916284263134, -0.04135734215378761, -0.0020916196517646313, -0.00785230565816164, 0.0276535302400589, 0.02075691521167755, 0.005362482275813818, -0.00227605109103024, 0.025865105912089348, -0.0032107827719300985, 0.021684659644961357, -0.007567275781184435, -0.009713386185467243, 0.009132147766649723, 0.007930549792945385, 0.005594418849796057, -0.034583680331707, -0.0077684735879302025, -0.0017688646912574768, 0.023070689290761948, -0.009271868504583836, -0.007516976445913315, -0.03169984370470047, -0.024635562673211098, 0.003833937458693981, 0.02628985606133938, 0.03067149966955185, -0.007472265511751175, -0.002084633568301797, -0.009322168305516243, -0.017839545384049416, 0.011434745974838734, -0.005541325081139803, -0.00687426095828414, 0.005745317321270704, -0.006734540220350027, 0.012988440692424774, -0.01735890656709671, 0.02599923685193062, -0.01351379044353962, 0.01733655110001564, 0.007416377309709787, -0.011339736171066761, -0.014832754619419575, -0.005968870595097542, -0.011194426566362381, -0.003546112682670355, -0.020298629999160767, -0.010227559134364128, -0.02729584462940693, 0.01637527160346508, -0.014832754619419575, 0.008763285353779793, -0.014855110086500645, -0.010814386419951916, -0.016788845881819725, 0.019493838772177696, -0.01401678565889597, 0.013782055117189884, 0.004096612334251404, 0.006332144141197205, -0.02590981498360634, -0.011373269371688366, -0.018621981143951416, 0.014754511415958405, 0.005323360674083233, 0.007354900240898132, -0.025149734690785408, 0.03348826989531517, -0.020991645753383636, 0.015536947175860405, -0.011283847503364086, -0.03000083938241005, 0.004918170161545277, 0.011814786121249199, 0.00961837638169527, -0.014955708757042885, -0.025015603750944138, -0.0032918208744376898, -0.010641132481396198, 0.045917827636003494, 0.02095811255276203, -0.046096667647361755, -0.02532857656478882, -0.007802006788551807, 0.0011009995359927416, -0.0008907197625376284, -0.022623583674430847, 0.012485446408390999, -0.0298890620470047, -0.00895889475941658, -0.01015490386635065, -0.03914416581392288, -0.014463892206549644, 0.021405218169093132, 0.011250314302742481, -8.680151222506538e-05, 0.010663487948477268, 0.006516575813293457, 0.00025865802308544517, 0.006773661822080612, 0.0077069965191185474, -0.03889825567603111, -0.015246327966451645, -0.00978604145348072, -0.021103421226143837, -0.0023053924087435007, 0.007718174252659082, -0.022422386333346367, 0.0034427193459123373, -0.0077461181208491325, 0.03710982948541641, 0.025105023756623268, 0.0025065902154892683, 0.018264295533299446, -0.010350513271987438, 0.015626369044184685, -0.021315798163414, -0.010272269137203693, 0.01630820520222187, 0.010166081599891186, -0.01950501650571823, 0.03679685667157173, 0.025865105912089348, 0.007639930583536625, -0.008696218952536583, 0.002410182962194085, -0.02993377298116684, -0.0013769479701295495, 0.02760881930589676, -0.023540152236819267, -0.01384912058711052, 0.0006081345491111279, 0.02874894067645073, -0.020946934819221497, -0.017660703510046005, -0.010395223274827003, 0.01570461131632328, -0.021472284570336342, -0.008148513734340668, 0.03161042183637619, 0.03096211887896061, -0.013882653787732124, 0.010669076815247536, 0.0015019980492070317, 0.02071220427751541, 0.021941745653748512, 0.010646721348166466, -0.00939482357352972, 0.01733655110001564, 0.0011512989876791835, -0.01749303750693798, 0.04064197093248367, -0.02781001850962639, -0.009361290372908115, -0.02153935097157955, 0.03093976341187954, 0.006572464015334845, 0.014229160733520985, -0.009288635104894638, -0.011306202970445156, -0.01392736379057169, -0.0016389243537560105, 0.024344943463802338, 0.0028293451759964228, -0.001304991776123643, 0.021807614713907242, -0.0025415203999727964, -0.012384846806526184, -0.0030850342009216547, 0.0080870371311903, -0.007561686914414167, 0.006516575813293457, -0.01348025817424059, 0.004392820410430431, -0.006790428422391415, -0.012686643749475479, -0.01787307858467102, -0.004135733935981989, 0.020701026543974876, -0.015369282104074955, -0.013938541524112225, 0.02738526649773121, -0.010227559134364128, -0.005409987177699804, 0.00733813364058733, -0.002777648391202092, -0.009009193629026413, -0.015805210918188095, 0.010004005394876003, -0.009400412440299988, -0.0103225689381361, -0.014810399152338505, -0.021975278854370117, -0.011658299714326859, 0.022433564066886902, 0.00784112885594368, -0.0004219566471874714, -0.0012511992827057838, 0.02033216319978237, 0.011747720651328564, -0.019426772370934486, 0.0015341338003054261, -0.007086636498570442, -0.007097814232110977, -0.018152520060539246, 0.003289026441052556, -0.02919604815542698, 0.044531796127557755, 0.0011086841113865376, -0.00942835584282875, -0.01677766814827919, 0.0037361327558755875, -0.011037939228117466, 0.011501812376081944, 0.01930381916463375, -0.005588829983025789, 6.265602132771164e-05, 0.005390426609665155, -0.010836740955710411, -0.015346926636993885, -0.01394971925765276, -0.014955708757042885, 0.01968385837972164, 0.003350503509864211, 0.007041925564408302, -0.012306603603065014, 0.02646869793534279, 0.025730973109602928, 0.010350513271987438, -0.011412390507757664, 0.003277848707512021, 0.002948107896372676, -0.0044067925773561, 0.0023333365097641945, 0.03051501139998436, 0.009797219187021255, 0.016766490414738655, -0.0008194621768780053, 0.021662304177880287, -0.023361308500170708, -0.01970621384680271, 0.006751306354999542, 0.0009780452819541097, -0.0334659144282341, 0.00675689522176981, 0.00356008461676538, 0.03109624981880188, -0.009501011110842228, -0.0020287453662604094, 0.014050318859517574, 0.003643917152658105, 0.0032499046064913273, 0.003750104922801256, -0.007790829055011272, -0.005661484785377979, -0.006309789139777422, 0.014005607925355434, -0.0023417198099195957, -0.019337352365255356, 0.013960896991193295, 0.0026854327879846096, 0.009853106923401356, -0.02991141751408577, 0.020253919064998627, -0.014173272997140884, 0.00876887422055006, -0.009813985787332058, 0.0032554934732615948, -0.001559283584356308, -0.017973676323890686, -0.016453515738248825, 0.03780284523963928, -0.005460286978632212, 0.0034287471789866686, 0.00421677203848958, -0.0014230557717382908, 0.014788043685257435, 0.016699424013495445, 0.03143157809972763, -0.01561519131064415, -0.00733813364058733, -0.03717689588665962, -0.0022606817074120045, 0.0010849316604435444, 0.004046312998980284, 0.004526952281594276, 0.02734055556356907, -0.01861080341041088, -0.0051920232363045216, -0.00443473644554615, 0.0002266969095217064, 0.022109411656856537, -0.008802407421171665, -0.0063153780065476894, 0.005099807400256395, -0.0003409186319913715, -0.016051119193434715, -0.03096211887896061, 0.012675466015934944, 0.002861480927094817, 0.016520582139492035, 0.008707396686077118, -0.015671079978346825, 0.002998407231643796, -0.004046312998980284, 0.006986037362366915, 0.015436348505318165, -0.0005354797467589378, 0.0024199634790420532, -0.0063042002730071545, 0.0010269475169479847, -0.00011273717973381281, -0.0010849316604435444, 0.016833554953336716, 0.023115400224924088, -0.01498924195766449, 0.022053522989153862, 0.00027018500259146094, -0.01903555542230606, -0.00741078844293952, -0.02017567679286003, -0.03335413709282875, 0.011490634642541409, 0.008735341019928455, 0.009299812838435173, -0.010456700809299946, -0.004739327821880579, 0.013089039362967014, -0.008321767672896385, 0.023182466626167297, 0.00723753497004509, -0.010378457605838776, 0.005924159660935402, 0.00416647270321846, -0.008349712006747723, -0.010210792534053326, 9.666928963270038e-05, 0.00017107059829868376, -0.03254934400320053, 0.004124556668102741, -0.0002057388046523556, -0.02660283073782921, 0.0004767970531247556, 0.011479456909000874, -0.004633139818906784, 0.004023957531899214, -0.012194827198982239, -0.02713935822248459, 0.005728550720959902, -0.0035125797148793936, 0.01671060174703598, 0.018174875527620316, 0.011960095725953579, -0.012820775620639324, -0.014665089547634125, 0.015369282104074955, 0.0014712595148012042, 0.0008830351289361715, -0.012351314537227154, -0.005024358164519072, 0.0027748539578169584, -0.0166211798787117, 0.010417578741908073, -0.022087056189775467, -0.01592816598713398, -0.000664372171740979, -0.01901319995522499, 0.006745717953890562, -0.009087437763810158, -0.013446724973618984, -0.01903555542230606, -0.018912600353360176, -0.004619168117642403, 0.017124174162745476, 0.012586045078933239, 0.013111394830048084, -0.004146911669522524, -0.006550108548253775, 0.01353614591062069, -0.007271067705005407, -0.01345790270715952, -0.005940926261246204, -0.004873459693044424, -0.002510781865566969, 0.0020608811173588037, -0.026066303253173828, 0.01561519131064415, 0.006578052882105112, 0.0028461115434765816, 0.013692633248865604, -0.014754511415958405, 0.004009985364973545, -0.0012952113756909966, -0.00974133051931858, 0.0016249523032456636, 0.008103803731501102, 0.01621878519654274, -0.02673696167767048, 0.024546140804886818, 0.00021744042169302702, 0.0005382741801440716, -0.00978604145348072, 0.022847136482596397, -0.006035936530679464, 0.022668294608592987, 0.0019099826458841562, 0.00326946540735662, -0.005636334884911776, 0.01932617463171482, -0.002132138703018427, -0.012295425869524479, 0.01798485405743122, -0.01655411347746849, -0.011602411046624184, -0.017146529629826546, -0.004286632407456636, 0.02091340161859989, -0.04133498668670654, 0.00020993042562622577, 0.020298629999160767, -0.003716571955010295, -0.01872258074581623, 0.023204822093248367, -0.002788826124742627, -0.024903826415538788, 0.03719925135374069, -0.025485064834356308, 0.0011953109642490745, 0.0316774882376194, 0.00964073184877634, -0.0201980322599411, 0.010920573957264423, 0.012608400546014309, 0.01682237908244133, 0.03118567168712616, 0.025015603750944138, -0.014855110086500645, 0.02805592678487301, -0.005057890899479389, 0.005292621906846762, -0.010428756475448608, 0.03353298082947731, 0.024948537349700928, 0.03232579305768013, -0.012876664288341999, 0.0007108293357305229, -0.00021796436340082437, -0.004772860556840897, 0.03009026125073433, -0.003034734632819891, 0.021930567920207977, -0.0028922194615006447, 0.01416209526360035, 0.011602411046624184, 0.005105396267026663, -0.023786060512065887, -1.8851385902962647e-05, 0.03085034154355526, 0.0037556937895715237, -0.005029947031289339, 0.011071472428739071, -0.007494620978832245, -0.005728550720959902, 0.0075393314473330975, -0.0022592844907194376, 0.021472284570336342, -0.007097814232110977, -0.0011764486553147435, -0.0007293422822840512, -0.005563680082559586, 0.00995370652526617, 0.017817189916968346, 0.0016473076539114118, -0.01387147605419159, 0.013357304036617279, -0.018063098192214966, -0.0076734633184969425, -0.002936930162832141, -0.006734540220350027, 0.03002319484949112, 0.012418380007147789, 0.0013804410118609667, 0.0005829848232679069, 0.02816770225763321, 0.00031489564571529627, 0.023294243961572647, 0.02680402807891369, -0.01733655110001564, 0.009780452586710453, -0.007108991499990225, -0.016453515738248825, 0.005150106735527515, -0.03847350552678108, -0.007114580366760492, -0.00026250036899000406, -0.0049628810957074165, -0.019493838772177696, 0.0035992064513266087, 0.003386830911040306, 0.03058207780122757, -0.0014146725879982114, -0.0061477129347622395, -0.02805592678487301, 0.017996031790971756, 0.01424033846706152, 0.0022970091085880995, -0.02566390670835972, -0.00799761526286602, 0.004429147578775883, -0.003425952745601535, -0.011680654250085354, 0.01515690702944994, 0.0022131765726953745, 0.0014656706480309367, -0.02935253456234932, -0.01362556777894497, 0.03371182084083557, 0.00023053924087435007, -0.017906611785292625, -0.02028745226562023, 0.008796818554401398, -0.00745549937710166, -0.01535810437053442, 0.0010576860513538122, 0.012865486554801464, 0.018979666754603386, -0.009646320715546608, 0.0034427193459123373, 0.02819005772471428, 0.00336447567678988, 0.0011177660198882222, 0.010959695093333721, -0.001595610985532403, 0.02597688138484955, 0.0034566912800073624, 0.01426269393414259, -0.002657488686963916, -0.01751539297401905, 0.0147768659517169, -0.025507420301437378, 0.0010765483602881432, 0.004521363414824009, 0.010808797553181648, -0.02622278966009617, -0.021014001220464706, -0.009042726829648018, 0.0016389243537560105, -0.019695036113262177, -0.011457101441919804, 0.013156105764210224, -0.011194426566362381, 0.009053904563188553, 0.05137252435088158, 0.022019989788532257, -0.00787466112524271, 0.00837765634059906, 0.009679853916168213, 0.005778850056231022, -0.00823234673589468, 0.012273070402443409, -0.003716571955010295, -0.01905791088938713, -0.011110593564808369, -0.003652300452813506, -0.0006720568053424358, -0.01450860220938921, -0.009132147766649723, -0.022534161806106567, 0.018286651000380516, -0.014497424475848675, 0.013737344183027744, 0.02901720441877842, 0.004345315508544445, -0.006214778870344162, 0.012530156411230564, 0.00389820896089077, -0.0024423187132924795, -0.003386830911040306, -0.016162896528840065, 0.01733655110001564, -0.03275054320693016, 0.005708989687263966, 0.0012658699415624142, 0.0017814395250752568, 0.00331697054207325, -0.0063544996082782745, 0.013938541524112225, 0.044956550002098083, -0.021975278854370117, -0.008534143678843975, 0.004781243856996298, -0.0015299421502277255, 0.0004055394674651325, 0.004448708612471819, 0.0007055897731333971, -0.014810399152338505, 0.01597287692129612, 0.009691030718386173, 0.02850303240120411, 0.025306222960352898, -0.021315798163414, 0.007908194325864315, -0.020455118268728256, -0.0007160688401199877, 0.01863315887749195, 0.009579254314303398, -0.006818372756242752, 0.018666692078113556, 0.00777406245470047, -0.007248712237924337, 0.01440800353884697, -0.0032918208744376898, 0.00397086376324296, -0.004954497795552015, 0.03161042183637619, 0.014810399152338505, -0.001521558966487646, 0.021461106836795807, 0.013234348967671394, -0.000359082332579419, 0.00895889475941658, 0.01881200075149536, -0.011457101441919804, 0.01322317123413086, -0.02160641737282276, 0.00714252470061183, 0.009025960229337215, 0.015201617032289505, 0.004378848243504763, 0.009830751456320286, -0.009976061061024666, -0.005985636729747057, 0.01735890656709671, 0.022355319932103157, 0.008685042150318623, 0.00012155705189798027, -0.002802798291668296, -0.010808797553181648, 0.005616774316877127, 0.004895815160125494, -0.00012024716852465644, -0.011546522378921509, -0.010764086619019508, 0.016252318397164345, -0.03288467600941658, 0.0024087857455015182, 0.010898218490183353, -0.00186527194455266, -9.42241822485812e-05, 0.02964315377175808, 0.004831543657928705, 0.00426148297265172, 0.025060312822461128, 0.003923358395695686, 0.01542517077177763, -0.007041925564408302, -0.014855110086500645, -0.008567675948143005, 0.016319382935762405, 0.004314576741307974, 0.0174036156386137, -0.00837765634059906, -0.01836489513516426, -0.002962079830467701, 0.01838725060224533, 0.03174455463886261, 0.0006161684868857265, -0.004269866272807121, 0.0011638738214969635, 0.008774463087320328, 0.011032350361347198, -0.0044207642786204815, -0.0036215619184076786, 0.01887906715273857, 0.0019183658296242356, -0.010138137266039848, 0.004200005903840065, -0.001548105850815773, 0.00784112885594368, 0.014150917530059814, -0.009925762191414833, -0.023428374901413918, 0.00903713796287775, -0.016945332288742065, -0.0177389457821846, 0.0018610804108902812, -0.0023431170266121626, 0.00213074148632586, -0.009813985787332058, -0.013569679111242294, 0.007343722507357597, 0.01648704893887043, -0.010434345342218876, -0.03290703147649765, 0.0016514993039891124, 0.010171670466661453, 0.004971264395862818, 0.00656128628179431, -0.014441536739468575, 0.005728550720959902, -0.00823234673589468, 0.0022089851554483175, 0.00767905218526721, -0.004574457183480263, 0.03809346631169319, -0.0049936193972826, -0.011714187450706959, -0.008617975749075413, 0.007008392829447985, -0.015201617032289505, 0.02787708304822445, 0.010037538595497608, -0.0037948156241327524, -0.011283847503364086, 0.00222854595631361, 0.0008208593935705721, -0.0004785435739904642, 0.023495441302657127, 0.002753895940259099, 0.004881842993199825, 0.006477453745901585, -0.004107790067791939, 0.011227959766983986, 0.0029900239314883947, 0.019449127838015556, 0.0177389457821846, 0.02886071801185608, 0.012384846806526184, 0.013021973893046379, 0.004046312998980284, -0.015022775158286095, -0.007304600905627012, 0.0065109869465231895, 0.0033924197778105736, 0.006237134337425232, -0.010579654946923256, -0.0017982060089707375, -0.023271888494491577, 0.03053736686706543, -0.004200005903840065, 0.00029184171580709517, -0.020589249208569527, 0.00945071130990982, -0.0052004060707986355, -0.006628352217376232, 0.020924579352140427, -0.005130545701831579, -0.009439533576369286, -0.0029928183648735285, 0.019292641431093216, 0.010149314999580383, -0.0025149735156446695, 0.008249113336205482, -0.016542935743927956, 0.021718192845582962, -0.009210391901433468, 0.006840727757662535, 0.00353493494912982, 0.008176458068192005, 0.012966085225343704, 0.01447506994009018, 0.02675931714475155, -0.0060527026653289795, -0.007002803962677717, -0.00336447567678988, 0.0022103821393102407, 0.002447907580062747, -0.0013972074957564473, -0.022936558350920677, -0.0015830360352993011, -0.008305001072585583, -0.011781253851950169, 0.009713386185467243, -0.007198412902653217, -0.00020067392324563116, -0.03049265593290329, -0.00741078844293952, -0.015894632786512375, 0.010227559134364128, -0.005711784120649099, -0.016766490414738655, -0.001119163236580789, 0.011926563456654549, 0.005974458996206522, -0.007489032112061977, 0.020611604675650597, -0.0029033971950411797, -0.004219566471874714, -0.011009994894266129, -0.004909787327051163, 0.017794834449887276, 0.0016039941692724824, 0.01078085321933031, 0.02684873901307583, 0.0021349331364035606, -0.01538045983761549, -0.024300232529640198, 0.003470663446933031, -0.006237134337425232, 0.004244716372340918, -0.004180444870144129, -0.0030487067997455597, 0.0018219585763290524, -0.008942128159105778, 0.007477854378521442, -0.013782055117189884, -0.0336894653737545, -0.017705412581562996, 0.014519779942929745, -0.007131346967071295, -0.00810939259827137, -0.005301005207002163, -0.009964884258806705, 0.006840727757662535, -0.04055254906415939, -0.008763285353779793, -0.01742597110569477, -0.017638348042964935, 0.02787708304822445, -0.0011366283288225532, -0.00501597486436367, 0.001365071744658053, -0.004594018217176199, 0.023093044757843018, -0.007187235169112682, 0.03073856420814991, 0.012172471731901169, -0.01820840872824192, -0.011501812376081944, 0.0024143746122717857, 0.002507987432181835, 0.0062818448059260845, -0.0033812420442700386, 0.003604795318096876, 0.01426269393414259, -0.007282245438545942, -0.0095960209146142, 0.0018359306268393993, -0.0005693620769307017, 0.023651927709579468, -0.022914202883839607, 0.0279888603836298, -0.015190440230071545, -0.01798485405743122, 0.0020790447015315294, 0.004518568981438875, 0.0076958187855780125, 0.0035041964147239923, -0.01527986116707325, -0.01496688649058342, 0.0066786520183086395, 0.004077051300555468, -0.021416395902633667, 0.017638348042964935, -0.019806813448667526, 0.0020608811173588037, 0.011088239029049873, -0.0001860032498370856, 0.018219586461782455, -0.000987825682386756, -0.0033840364776551723, -0.005773261189460754, -0.00382555415853858, 0.0015578863676637411, -0.025239156559109688, 0.004186033736914396, -0.011295025236904621, 0.003180044237524271, -0.011591233313083649, 0.00045758544001728296, 0.00990899559110403, 0.006701007019728422, -0.01615171879529953, 0.03192339837551117, 0.014229160733520985, -0.010618777014315128, 0.009948117658495903, -0.01688944362103939, 0.00196028221398592, -0.010004005394876003, -0.00835530087351799, -0.006745717953890562, -0.03541082516312599, -0.018085453659296036, -0.024590851739048958, -0.006214778870344162, -0.047125015407800674, 0.01440800353884697, 0.009210391901433468, -0.0279888603836298, -0.0006538931047543883, -1.1046671716030687e-05, 0.009869873523712158, 0.001559283584356308, 0.012273070402443409, -0.0206451378762722, 0.013156105764210224, -0.0030626787338405848, -0.023763705044984818, -0.0015467086341232061, 0.005024358164519072, 0.010328157804906368, 0.012865486554801464, -0.024881470948457718, 0.007226357236504555, 0.007785240188241005, 0.007343722507357597, -0.03400244191288948, -0.025552131235599518, -0.012105405330657959, -0.00777406245470047, 0.022511806339025497, -0.012228360399603844, 0.02704993635416031, 0.0028405229095369577, -0.0034538968466222286, -0.0017073875060305, 0.02015332132577896, 0.005625157151371241, -0.01581638865172863, -0.00046736589865759015, 0.024501429870724678, -0.010043127462267876, 0.03069385327398777, -0.02966550923883915, -0.004585634917020798, -0.003107389435172081, 0.01818605326116085, 0.01474333368241787, -0.022254720330238342, -0.0027958122082054615, 0.0033085872419178486, 0.01780601218342781, 0.0049517033621668816, 0.004403998143970966, -0.008942128159105778, 0.016386449337005615, 0.014754511415958405, -0.0012574867578223348, 0.0029536965303122997, 0.006918971426784992, -0.009087437763810158, -0.015738144516944885, 0.018756113946437836, -0.005885038059204817, 0.009758097119629383, 0.002274653874337673, 0.01462037954479456, -0.008780051954090595, -0.0017339345067739487, 0.009232747368514538, 0.014855110086500645, -0.02664754167199135, 0.002886630594730377, -0.010719375684857368, 0.0010835344437509775, -0.00026005523977801204, 0.010892629623413086, -0.020477473735809326, 0.013983252458274364, -0.01345790270715952, 0.007511387579143047, -0.010931751690804958, -0.011993628926575184, 0.01409502886235714, 0.01916968636214733, 0.0053792488761246204, 0.01666589081287384, 0.01443035900592804, -0.012239537201821804, 0.005189228802919388, -0.007209590636193752, 0.012295425869524479, 0.0006077852449379861, -0.008277056738734245, -0.004253099672496319, 0.021282264962792397, 0.011088239029049873, 0.00336447567678988, 0.0013189638266339898, 0.00692456029355526, -0.001705990289337933, -0.020320985466241837, 0.0062930225394666195, -0.0015900221187621355, -0.010797619819641113, 0.020857512950897217, -0.0014684650814160705, 0.02673696167767048, -0.01735890656709671, 0.020969290286302567, -0.01747068203985691, -0.00995370652526617, 0.03717689588665962, -0.025552131235599518, 0.01310021709650755, -0.00752815417945385, 0.022891847416758537, 0.002512179082259536, -0.0275417547672987, -0.004560485016554594, 0.009025960229337215, -0.003766871290281415, 0.010551710613071918, 0.0005585337057709694, -0.0012365286238491535, -0.005275855306535959, 0.001472656731493771, 0.012641933746635914, -0.007589631248265505, 0.0019546933472156525, -0.017504215240478516, 0.013938541524112225, -0.020745737478137016, 0.021461106836795807, 0.0003650204453151673, 0.0209804680198431, 0.021639948710799217, 0.013905009254813194, -0.016565291211009026, 0.0005543420556932688, 0.011445923708379269, 0.0053457156755030155, 0.005790027789771557, 0.0032219605054706335, -0.022154122591018677, 0.01800720952451229, -0.008785640820860863, 0.01563754677772522, 0.023875482380390167, 0.01590581052005291, -0.02892778441309929, -0.024412009865045547, 0.003764077089726925, -0.008712985552847385, 0.013837942853569984, 0.00804232619702816, 0.016274672001600266, -0.004666673019528389, -0.008092625997960567, 0.03149864450097084, -0.00789701659232378, -0.013010796159505844, -0.011227959766983986, 0.009266279637813568, 0.005664279218763113, 0.009243925102055073, 0.00980839692056179, -0.03824995085597038, 0.014609201811254025, -0.00414411723613739, 0.002129344269633293, -0.006650707684457302, -0.0025513009168207645, 0.021416395902633667, 0.0020077871158719063, -0.005205994937568903, -0.023987257853150368, -0.0016780461883172393, -0.02662518620491028, -0.011758898384869099, -0.022590050473809242, 0.02628985606133938, -0.013782055117189884, 0.0036746556870639324, -0.006142124067991972, -0.005186434369534254, -0.00426148297265172, 0.0013112792512401938, 0.018264295533299446, 0.006091824732720852, 0.023674283176660538, -0.01671060174703598, 0.01462037954479456, 0.0027147741056978703, -0.03263876587152481, -0.007405199576169252, 0.0017017987556755543, -0.008349712006747723, 0.014754511415958405, 0.007438732776790857, 0.002464673947542906, 0.0022145737893879414, -0.0008928155875764787, -0.012496624141931534, -0.01995212212204933, -0.00350978528149426, -0.01421798299998045, -0.007947316393256187, 0.018912600353360176, 0.008841528557240963, 0.004113378934562206, -0.01816369779407978, 0.014296227134764194, 0.01702357642352581, -0.0043481094762682915, 0.00869063101708889, 0.007449910510331392, 0.0038283485919237137, 0.02774295210838318, 0.007667874917387962, 0.024635562673211098, -0.005376454442739487, -0.0065948194824159145, -0.008277056738734245, -0.012865486554801464, -0.0066786520183086395, 0.0019812402315437794, 0.008942128159105778, -0.01348025817424059, -0.00511098513379693, -0.022176478058099747, -0.001352496794424951, -0.05870506912469864, -0.002093016868457198, -0.002962079830467701, 0.01574932225048542, 0.01722477376461029, 0.010406401008367538, 0.002227148739621043, 0.013782055117189884, 0.001156887854449451, 0.0021964102052152157, -0.0040267519652843475, -0.03230343759059906, -0.01925910823047161, -0.0075560980476439, -0.011546522378921509, -0.005655895918607712, -0.0013566884445026517, 0.014273871667683125, -0.020477473735809326, -0.01686708815395832, -0.018241940066218376, 0.021349329501390457, 0.020823979750275612, -0.011479456909000874, 0.011378858238458633, 0.0010618777014315128, 0.0009249513386748731, 0.005340126808732748, -0.02868187613785267, 0.0004107790009584278, -0.009361290372908115, -0.049628809094429016, 0.006371266208589077, 0.004135733935981989, 0.01923675276339054, -0.019493838772177696, -0.0006982544437050819, -0.02991141751408577, -0.004909787327051163, 0.012932552956044674, -0.019896235316991806, -1.2400216292007826e-05, 0.01459802407771349, 0.0199744775891304, -0.002572258934378624, 0.005041124764829874, -0.014788043685257435, -0.009009193629026413, 0.02709464728832245, 0.011680654250085354, -0.009528955444693565, -0.022914202883839607, -0.010316980071365833, 0.0061365352012217045, 0.014106206595897675, -0.000907486246433109, 0.017548926174640656, -0.022310608997941017, 0.012865486554801464, -0.005912981927394867, 0.0357014462351799, 0.006930149160325527, 0.006790428422391415, -0.0060750581324100494, -0.0007300408906303346, -0.0165094044059515, 0.0018904217286035419, 0.016341738402843475, 0.047840382903814316, 0.021505817770957947, -0.03697570040822029, -0.01744832657277584, -0.021326975896954536, 0.013334948569536209, -0.0049014040268957615, -0.010266680270433426, 0.013234348967671394, 0.02095811255276203, -0.010607599280774593, 0.012083050794899464, -0.0042055947706103325, 0.0019281463464722037, 0.01542517077177763, -0.012340136803686619, 0.0035153741482645273, -0.0013455108273774385, 0.016319382935762405, 0.0018401222769171, -0.007136935833841562, -0.008321767672896385, 0.04023957625031471, 0.011144126765429974, 0.00833294540643692, 0.009752508252859116, 0.009920173324644566, 0.02013096585869789, -0.01000959426164627, 0.022154122591018677, -0.00033009026083163917, 0.004155294969677925, -0.011311791837215424, -0.011110593564808369, -0.024300232529640198, 0.010546121746301651, -0.001887627295218408, -0.01049023400992155, -0.05964399501681328, -0.013323770835995674, -0.010853507556021214, 0.026401633396744728, -0.001658485271036625, 0.011524166911840439, 0.0006811386556364596, 0.0006084838532842696, -0.002238326473161578, 0.00438443711027503, -0.022578872740268707, 0.004356492776423693, -0.0103225689381361, 0.020589249208569527, -0.008925361558794975, -0.023316599428653717, -0.0038087875582277775, -0.0198627021163702, 0.004314576741307974, -0.02691580541431904, 0.0062315454706549644, -0.004904198460280895, -0.0024227576795965433, 0.008707396686077118, -0.016207607463002205, 0.020209209993481636, -0.0004485035897232592, -0.0011533948127180338, 0.020511005073785782, 0.009115382097661495, -0.0310068279504776, 0.006410387810319662, 0.008584442548453808, 0.006751306354999542, 0.003372858976945281, -0.005071863066405058, -0.0025247540324926376, -0.008517377078533173, -0.0092048030346632, -0.01943795010447502, 0.00421677203848958, 0.009098615497350693, 0.022813603281974792, -0.004831543657928705, -0.006175657268613577, -0.0009570871479809284, 0.0354778915643692, 0.01970621384680271, 0.003716571955010295, 0.021818792447447777, -0.0060750581324100494, -0.0017451121238991618, 0.00036082882434129715, 0.009221569634974003, -0.02133815363049507, 0.01733655110001564, 0.009802808053791523, 0.00017665942141320556, -0.025865105912089348, -0.007259889971464872, 0.01078085321933031, 0.022869491949677467, -0.012574867345392704, -0.006823961157351732, 0.0029536965303122997, 0.017481859773397446, -0.002537328749895096, 0.007885838858783245, 0.007662286050617695, -0.0033225594088435173, -0.0036802445538342, -0.015715789049863815, 0.01009901612997055, -0.04059725999832153, 0.015492236241698265, 0.005393221043050289, -0.00772376311942935, -0.01362556777894497, -0.00876887422055006, -0.010674664750695229, 0.01299961842596531, 0.022310608997941017, 0.0031856331042945385, 0.0029536965303122997, 0.0010038935579359531, -0.003398008644580841, 0.02751939930021763, -0.01809663139283657, -0.0028321396093815565, 0.004669467452913523, -0.003372858976945281, -0.0017954115755856037, 0.013737344183027744, 0.023875482380390167, 0.0092048030346632, -0.002447907580062747, 0.004716972354799509, -0.007762884721159935, 0.008204402402043343, -0.0190802663564682, -0.003034734632819891, 0.004082640167325735, -0.01992976851761341, -0.008606798015534878, -0.00884711742401123, -0.015581658110022545, 0.012440735474228859, 0.01673295721411705, 0.004512980114668608, 0.005756495054811239, 0.01796249859035015, -0.01469862274825573, 0.023964902386069298, -0.003425952745601535, 0.018353717401623726, -0.00984192918986082, 0.011613588780164719, -0.005245117004960775, 0.012384846806526184, 0.015581658110022545, 0.003054295666515827, -0.007405199576169252, 0.001731140073388815, 0.017235951498150826, 0.006360088475048542, -0.008908594958484173, -0.01515690702944994, 0.03069385327398777, 0.00326946540735662, 0.020991645753383636, 0.025775684043765068, 0.008260291069746017, -0.0002441620163153857, 0.01343554724007845, -0.01331259310245514, -0.011166482232511044, 0.0038758534938097, 0.017325373366475105, -0.010730553418397903, -0.01682237908244133, -0.024501429870724678, 0.007254301104694605, -0.022120589390397072, -0.01921439729630947, -0.03431541472673416, 0.01838725060224533, -0.004605195950716734, 0.02857009880244732, 0.011188837699592113, -0.008807996287941933, 0.011613588780164719, 0.011669476516544819, 0.03306351974606514, 0.022813603281974792, 0.009881051257252693, 0.005421164911240339, -0.001095410669222474, -0.01406149659305811, -0.009797219187021255, -0.022914202883839607, -0.001803794875741005, 0.003205193905159831, 0.005767672322690487, -0.005862682592123747, 0.008176458068192005, -0.0143856480717659, 0.01711299642920494, -0.03351062536239624, -0.03485194221138954, -0.023406019434332848, 0.015123373828828335, -0.0020035954657942057, 0.004781243856996298, 0.005289827473461628, -0.010015183128416538, -0.0008334342855960131, 0.005504997447133064, -0.006013581063598394, 0.03134215995669365, 0.0031353335361927748, -0.005396015476435423, -0.0008096817182376981, -0.0059073930606245995, 0.008198813535273075, -0.0039429194293916225, -0.02013096585869789, 0.03127509355545044, -0.004445914179086685, -0.049181703478097916, -0.010702609084546566, 0.0275417547672987, -0.02819005772471428, -0.026982871815562248, 0.004264277406036854, 0.0028083871584385633, -0.002900602761656046, -0.0004240524722263217, 0.011859497055411339, 0.006885438691824675, -0.010736142285168171, -0.022467097267508507, -0.016542935743927956, -0.003180044237524271, 0.022400030866265297, -0.024993248283863068, -0.01794014498591423, 0.006913382560014725, 0.015268683433532715, 0.01450860220938921, 0.04323519021272659, 0.009070671163499355, 0.0013420177856460214, -0.00237385556101799, 0.009098615497350693, 0.020097432658076286, -0.01957208290696144, 0.0031716609373688698, 0.011747720651328564, 0.011915385723114014, 0.01767188124358654, -0.00884711742401123, -0.012798420153558254, -0.004881842993199825, -0.003931741695851088, -0.012843131087720394, 0.0025023985654115677, -0.02964315377175808, -0.002925752429291606, -0.01894613355398178, 0.03833937272429466, 0.0008753504953347147, -0.01015490386635065, -0.016185251995921135, -0.03080563060939312, 0.00746108777821064, -0.0015313393669202924, 0.0009256499470211565, 0.014106206595897675, -0.00798643846064806, -0.023316599428653717, -0.006751306354999542, 0.003425952745601535, 0.04026193171739578, -0.0005354797467589378, -0.010982050560414791, -0.020052721723914146, 0.021986456587910652, -0.009422766976058483, -0.021427573636174202, 0.024479074403643608, -0.009998416528105736, 0.009009193629026413, -0.007634341716766357, -0.004158089403063059, 0.0037445160560309887, 0.005387632176280022, 0.0016137746861204505, -0.011283847503364086, 0.003071062033995986, 0.010110192932188511, -0.0033477090764790773, 0.017750123515725136, -0.0021391245536506176, 0.0010262489086017013, 0.01453095767647028, 0.006086235865950584, -0.004968469962477684, 0.007075458765029907, 0.007913783192634583, -0.008198813535273075, 0.0024562908802181482, -0.01872258074581623, -0.006991626229137182, 0.015045130625367165, 0.03482958674430847, 0.010043127462267876, 0.0015690639847889543, -0.02626750059425831, -0.016833554953336716, -0.02890542894601822, 0.00895889475941658, -0.00239900522865355, -0.02991141751408577, 0.03478487581014633, -0.006935738027095795, -0.02979964204132557, 0.0009501010645180941, 0.006337733007967472, 0.0030878286343067884, 0.01036727987229824, -0.0024297437630593777, 0.011691831983625889, -0.01530221663415432, 0.009025960229337215, -0.0032974097412079573, -0.015346926636993885, -0.012228360399603844, -0.02033216319978237, 0.01811898685991764, 0.00884711742401123, 0.017973676323890686, 0.003914975561201572, -0.0027147741056978703, -0.013234348967671394, -0.0009682647651061416, 0.015313394367694855, 0.00426148297265172, 0.0029676686972379684, 0.011814786121249199, 0.019963299855589867, 0.00984192918986082, -0.005365276709198952, -0.010758497752249241, 0.008025559596717358, -0.03427070379257202, -0.011060294695198536, -0.0050467136316001415, 0.006007992196828127, 0.008875061757862568, 0.015693433582782745, -0.012641933746635914, 0.007427555043250322, -0.03252698853611946, -0.007829951122403145, 0.008964483626186848, -0.009623965248465538, 0.0023682666942477226, -0.01751539297401905, 0.03509785234928131, 0.01462037954479456, 0.014296227134764194, -0.008237935602664948, -0.01995212212204933, -0.005309388507157564, 0.0017073875060305, 0.011770076118409634, 0.024300232529640198, -0.010909396223723888, -0.0022131765726953745, -0.009847518056631088, 0.026133369654417038, -0.0015984054189175367, 0.005518969614058733, -0.00753374258056283, 0.018331361934542656, 0.01720241829752922, 0.007259889971464872, -0.00745549937710166, 0.0002626750210765749, 0.010238736867904663, -0.014955708757042885, 0.02937489002943039, -0.03035852499306202, -0.02868187613785267, -0.009976061061024666, -0.01581638865172863, 0.011535344645380974, 0.008606798015534878, -0.00949542224407196, 0.011317380703985691, 0.022087056189775467, 0.004585634917020798, -0.0037361327558755875, 0.003205193905159831, 0.005091424100100994, -0.034583680331707, 0.00719282403588295, -0.011362091638147831, 0.0034315416123718023, -0.011205604299902916, -0.01934853009879589, 0.014173272997140884, 0.006566875148564577, 0.022634761407971382, -0.006863083224743605, -0.0002626750210765749, -0.006555697415024042, -0.00343713047914207, -0.003917769994586706, -0.011367680504918098, -0.011792431585490704, -0.005194817669689655, -0.01805192045867443, 0.002460482297465205, -0.03029145859181881, 0.009271868504583836, -0.022098233923316002, 0.03268347680568695, -0.006885438691824675, 0.009897817857563496, 0.010942929424345493, 0.004233538638800383, -0.0017590841744095087, -0.012083050794899464, 0.0036830389872193336, 0.02727349102497101, 0.03585793450474739, -0.005946515128016472, -0.024993248283863068, 0.008131747134029865, 0.005639129318296909, 0.002425552112981677, -0.013346126303076744, -0.0029425190296024084, 0.005689429119229317, -0.021975278854370117, 0.03377888724207878, -0.0022984063252806664, -0.021572884172201157, 0.00020556415256578475, 0.008796818554401398, -0.0035041964147239923, -0.025172090157866478, -0.003629944985732436, -0.017213596031069756, 0.01767188124358654, 0.01588345505297184, -0.02120402082800865, -0.004378848243504763, 0.005532941780984402, 0.00436208164319396, -0.01943795010447502, -2.4341974494745955e-05, 0.009601609781384468, 0.0092048030346632, -0.010529356077313423, -0.022690650075674057, 0.010507000610232353, 0.0005780946230515838, 0.0262004341930151, -0.006164479535073042, -0.0033477090764790773, -0.02713935822248459, -0.008103803731501102, 0.0016109802527353168, 0.020008010789752007, -0.007645519450306892, 0.0037584882229566574, 0.01019961480051279, 0.00044116826029494405, -0.00891418382525444, 0.006013581063598394, -0.005021563731133938, -0.01905791088938713, -0.00022704621369484812, -0.0045045968145132065, -0.004141322802752256, 0.007332544773817062, 0.00046771520283073187, 0.010037538595497608, 0.007013981696218252, 0.008567675948143005, -0.00986428465694189, 0.014027963392436504, -0.001158284954726696, -0.010238736867904663, 0.021461106836795807, 0.0066059972159564495, 0.01038963533937931, 0.01496688649058342, 0.0006591326091438532, 0.017437148839235306, 0.00423912750557065, 0.020209209993481636, -0.0008830351289361715, 0.0036495060194283724, -0.006019169930368662, 0.011160893365740776, -0.010819974355399609, 0.010428756475448608, 0.012742532417178154, -0.0002226799406344071, -0.03210223838686943, -0.01896848902106285, 0.021114598959684372, 0.011926563456654549, -0.003350503509864211, -0.0029313412960618734], "515d7962-e18d-4b3d-8b44-345f171c1de2": [-0.01764698326587677, -0.029718749225139618, 0.005970917176455259, 0.057925574481487274, -0.04247560352087021, -0.0212614256888628, -0.04391665756702423, 0.004107589367777109, -0.028726549819111824, 0.04101092740893364, -0.00259123626165092, 0.006833186373114586, 0.012780480086803436, 0.007370627950876951, 0.006201249547302723, 0.012520617805421352, -0.006969023030251265, 0.022324496880173683, -0.02652953565120697, -0.020493652671575546, 0.012839538976550102, -0.012054047547280788, -0.01516648381948471, 0.012957658618688583, 0.004594830330461264, -0.019891245290637016, -0.010772456414997578, 0.017032764852046967, -0.03349855914711952, -0.01019957847893238, -0.007902163080871105, -0.014894810505211353, 0.0380815789103508, 0.04545220360159874, 0.004349733702838421, -0.039758868515491486, -0.013205708004534245, -4.618638922693208e-05, 0.02844306454062462, 0.028773797675967216, -0.01611143723130226, 0.02163940668106079, -0.026127930730581284, 0.0026931141037493944, -0.01726900227367878, -0.01112090703099966, -0.044956106692552567, -0.007441499270498753, 0.01776510290801525, 0.004069200716912746, -0.011197684332728386, -0.00556931272149086, -0.01568620838224888, 0.029175402596592903, 0.06151639297604561, -0.025726325809955597, 0.0047749620862305164, 0.06770583242177963, -0.0036764550022780895, -0.05641365051269531, 0.0012033376842737198, -0.04970448836684227, 0.01919434405863285, -0.007317474111914635, 0.02494673989713192, 0.010229108855128288, 0.03009673021733761, 0.048074446618556976, 0.003115389496088028, 0.003410687204450369, -0.012119012884795666, 0.024450641125440598, -0.048523299396038055, 0.042499229311943054, 0.027970587834715843, -0.012567865662276745, 0.018001340329647064, 0.020564524456858635, 0.012414311058819294, -0.029364392161369324, 0.045286837965250015, -0.011841433122754097, 0.03968799486756325, 0.004677513614296913, 0.01907622441649437, 0.014528641477227211, -0.009981058537960052, -0.045546699315309525, -0.006331180222332478, -0.030640078708529472, -0.0012203173246234655, 0.005967964418232441, -0.002365333726629615, 0.02318676747381687, 0.005761255975812674, 0.015674395486712456, -0.006065412424504757, 0.00600044708698988, 0.021308673545718193, -0.003590818727388978, -0.002189631573855877, 0.03534121438860893, 0.021367734298110008, 0.03040383942425251, 0.004916704725474119, -0.006390240043401718, -0.0015473593957722187, 0.028419440612196922, -0.019584136083722115, 0.022891469299793243, -0.01964319497346878, -0.06175263226032257, 0.012426122091710567, -0.0032778033055365086, -0.027379993349313736, -0.02678939700126648, -0.021816585212945938, -0.0013266244204714894, -0.006083130370825529, -0.03288434073328972, 0.02501761168241501, -0.030073106288909912, -0.001448434661142528, 0.0003945913922507316, -0.003419546177610755, 0.023505687713623047, -0.0029396875761449337, 0.010672055184841156, 0.04741298034787178, 0.0016566194826737046, -0.009490864351391792, -0.0048783160746097565, 0.011197684332728386, -0.01262692455202341, 0.0021010423079133034, 0.02532472088932991, 0.007978941313922405, 0.058492545038461685, -0.016170496121048927, 0.015509028919041157, -0.03545933589339256, 0.028206825256347656, 0.014103412628173828, -0.014953870326280594, -0.006656007841229439, -0.028206825256347656, -0.02875017374753952, 0.03059283085167408, -0.019513264298439026, -0.005268109031021595, -0.04091643542051315, -0.007388345897197723, -0.04984623193740845, -0.010376757010817528, 0.0425228513777256, -0.008097060024738312, 0.018343886360526085, 0.04207400232553482, 0.004518053028732538, 0.05135815590620041, 0.018225766718387604, -0.01733987405896187, 0.04086918756365776, 0.02114330790936947, 0.049421004951000214, 0.033805668354034424, 0.047129496932029724, 0.05159439519047737, -0.0077604204416275024, 0.011002788320183754, 0.035057730972766876, -0.019513264298439026, 0.03567194938659668, -0.029907740652561188, 0.019725879654288292, -0.024993987753987312, 0.029978610575199127, 0.01224894355982542, 0.025112107396125793, -0.025112107396125793, -0.01682015135884285, -0.023434815928339958, 0.023848233744502068, -0.008445510640740395, 0.0026901611126959324, 0.038176070898771286, -0.01516648381948471, 0.031207049265503883, 0.0027447910979390144, -0.0029263989999890327, -0.014008917845785618, -0.00230922712944448, -0.0064611113630235195, 0.010359039530158043, -0.04372766613960266, -0.017375310882925987, 0.013560065068304539, -0.02645866386592388, 0.01301671750843525, 0.02317495457828045, 0.008238802663981915, -0.015591712668538094, -0.010772456414997578, 0.03876666724681854, -0.011103189550340176, 0.005631324835121632, 0.00242734607309103, -0.0409400574862957, 0.04564119502902031, -0.00637842807918787, 0.05263384059071541, -0.03536484017968178, 0.041672397404909134, -0.008982952684164047, 0.026671277359128, 0.005362604279071093, 0.004057388752698898, 0.03255360573530197, -0.02198195271193981, -0.03423089534044266, 0.0033900162670761347, -0.025490088388323784, -0.007228884845972061, -0.006685537286102772, -0.016926458105444908, -0.02257254719734192, -0.04523959010839462, 0.01058937143534422, -0.03390016406774521, -0.03628616780042648, 0.005436428822577, -0.002067083027213812, 0.03978249058127403, -0.02901003509759903, 0.0006064674234949052, 0.027332745492458344, 0.022997776046395302, 0.01085513923317194, -0.009638513438403606, 0.009425899013876915, 0.00405443599447608, 0.005415757652372122, 0.005120460409671068, -0.042428359389305115, -0.006679631303995848, 0.0007138819200918078, 0.0020582242868840694, 0.053531546145677567, 0.0015842715511098504, -0.0019209107849746943, -0.004464899655431509, -0.01006374228745699, 0.016678407788276672, -0.0005160325090400875, -0.03987698629498482, 0.01869824342429638, -0.0006441178848035634, -0.017965905368328094, 0.017363497987389565, -0.0035553830675780773, 0.013146649114787579, -0.0032807562965899706, -0.012355251237750053, 0.017032764852046967, 0.0539567768573761, -0.020186543464660645, 0.0403258390724659, -0.034183647483587265, 0.0026222425512969494, 0.011250837706029415, 0.0027093554381281137, -0.007896257564425468, -0.017564300447702408, 0.04505059868097305, -0.04101092740893364, 0.019655007869005203, -0.025938939303159714, 0.005932528525590897, -0.01704457774758339, -0.008593159727752209, -0.007341098040342331, -0.024072660133242607, 0.025230225175619125, 0.01983218640089035, 0.03895565867424011, 0.02091888152062893, -0.031065305694937706, -0.052397605031728745, -0.009337309747934341, -0.009715290740132332, 0.011055941693484783, 0.016902834177017212, 0.0005861656973138452, 0.004361545201390982, 0.015024741180241108, 0.007689549122005701, 0.0007042847573757172, 0.0008807250414974988, 0.015780702233314514, -0.02544284053146839, -0.007022176869213581, -0.0017201084410771728, 0.003174449084326625, -0.027191001921892166, 0.04616091772913933, -0.020907068625092506, 0.05825630947947502, 0.04188501089811325, 0.008291956037282944, 0.020989753305912018, 0.0018470864742994308, -0.03484511375427246, -0.0317503958940506, -0.04741298034787178, 0.01038266345858574, -0.001153137069195509, -0.052066870033741, 0.000478751229820773, -0.021462228149175644, -0.009484958834946156, -0.03104168176651001, 0.009904281236231327, 0.005306497681885958, 0.025301096960902214, 0.030498335137963295, -0.04831068590283394, 0.02544284053146839, -0.02577357366681099, -0.014670384116470814, 0.023045023903250694, -0.05466549098491669, 0.015851574018597603, -0.018839986994862556, 0.02069445513188839, -0.004733620211482048, -0.014174284413456917, -0.051263660192489624, -0.03484511375427246, -0.01200089417397976, -0.014422333799302578, -0.050176966935396194, -0.042428359389305115, 0.011900492943823338, -0.012485181912779808, -0.040585700422525406, -0.013654560782015324, -0.008226990699768066, 0.02043459378182888, 0.014256967231631279, -0.0001374979328829795, 0.0006005614995956421, 0.010890575125813484, 0.024734126403927803, -0.020139295607805252, 0.026316920295357704, -0.01377267949283123, -0.02830132097005844, 0.0042109438218176365, 0.014138848520815372, 0.0012779003009200096, -0.017883222550153732, -0.0330260805785656, 0.0020611772779375315, -0.03968799486756325, -0.01038266345858574, -0.0006145880906842649, 0.04264097288250923, 0.002332851057872176, -0.0012114583514630795, -0.007630489766597748, 0.014304215088486671, 0.026387792080640793, -0.02186383306980133, 0.003404781222343445, -0.0095203947275877, -0.035128600895404816, 0.04169601947069168, -0.005415757652372122, -0.008114777505397797, 0.01885179802775383, -0.002737408736720681, -0.022548923268914223, -0.03416002541780472, 0.024781374260783195, 0.0055220648646354675, -0.009921998716890812, 0.007683643139898777, -0.027143754065036774, -0.0368058905005455, 0.026175178587436676, 0.003168543102219701, -0.016005128622055054, -0.006283932831138372, -0.021698467433452606, 0.0005112339276820421, -0.00753599451854825, 0.007246602792292833, -0.049090269953012466, 0.030262097716331482, -0.0066264779306948185, -0.029529759660363197, -0.02988411672413349, -0.0072643207386136055, -0.01682015135884285, -0.0006928419461473823, -0.020328285172581673, -0.0003497430880088359, 0.0027580794412642717, 0.016194120049476624, 0.03382929041981697, 0.0009678378701210022, -0.02856118232011795, -0.0027506970800459385, 0.023316698148846626, 0.031585030257701874, 0.027568982914090157, -0.02577357366681099, 0.035837315022945404, -0.028490310534834862, 0.018166707828640938, 0.048334307968616486, 0.008610878139734268, -0.001448434661142528, 0.017658796161413193, -0.00015946070197969675, 0.020895257592201233, -0.0038359155878424644, 0.0212614256888628, -0.014445957727730274, 0.0026251955423504114, 0.03097081184387207, 0.0304747112095356, -0.01156975980848074, 0.0036498780827969313, -0.03604992851614952, -0.025797197595238686, 0.021379545331001282, 0.02065902017056942, 0.012768668122589588, -0.04677513986825943, -0.008770338259637356, 0.011823715642094612, 0.02329307422041893, 0.014386898837983608, -0.04523959010839462, 0.006703255232423544, -0.019737690687179565, 0.022182755172252655, 0.010937822982668877, -0.01145754661411047, 0.021025188267230988, 0.017706044018268585, -0.046940505504608154, 0.008079341612756252, 0.006703255232423544, 0.009904281236231327, 0.04365679621696472, -0.005031871143728495, 0.016264991834759712, -0.035199470818042755, 0.005545688793063164, 0.001122869085520506, 0.019170720130205154, -0.014599512331187725, -0.004337921738624573, -0.026293298229575157, -0.0042463792487978935, -0.016005128622055054, 0.004574159625917673, 0.043585922569036484, -0.02024560235440731, -0.01383173931390047, 0.01058937143534422, 0.047767337411642075, 0.01678471453487873, -0.004993482027202845, -0.030994435772299767, -0.011841433122754097, 0.012260755524039268, 0.0015296415658667684, 0.020032988861203194, -0.0022176848724484444, -0.031325168907642365, -0.018650995567440987, -0.006738691125065088, 0.007352910004556179, -0.022253626957535744, 0.005604748148471117, 0.0012579677859321237, -0.009006576612591743, -0.013063965365290642, 0.01469400804489851, 0.005138177890330553, 0.026624031364917755, 0.011445734649896622, -0.014032541774213314, 0.009053824469447136, -0.01561533659696579, -0.0014041400281712413, 0.00658513605594635, 0.02050546370446682, 0.012615112587809563, 0.014930246397852898, 0.0041489312425255775, -0.0233285091817379, 0.0188872329890728, -0.04594830423593521, 0.022005576640367508, 0.0095203947275877, 0.0011169631034135818, -0.04493248090147972, 0.010778361931443214, -0.03281346708536148, 0.00499643525108695, -0.0002997270494233817, 0.010530311614274979, -0.0036292073782533407, -0.038554053753614426, 0.016843775287270546, 0.00683909235522151, -0.021580347791314125, -0.012898598797619343, -0.02761623077094555, 0.010075553320348263, -0.008498664945363998, -0.006974929012358189, -0.02096612937748432, -0.02773435041308403, 0.008941611275076866, -0.03134879097342491, -0.012059953995049, -0.0061185662634670734, -0.009567641653120518, 0.01038266345858574, -0.00831557996571064, 0.023269450291991234, -0.04072744399309158, -0.008327391929924488, 0.020753514021635056, -0.0010652861092239618, 0.007819480262696743, 0.033545807003974915, 0.02258436009287834, -0.020257415249943733, 0.014599512331187725, 0.013441946357488632, 0.002666537184268236, -0.0036941729485988617, -0.013312015682458878, 0.015367286279797554, -0.019406957551836967, 0.008167930878698826, -0.02882104553282261, 0.004677513614296913, 0.008835303597152233, -0.03940451145172119, -0.018036777153611183, 0.011676066555082798, 0.004420605022460222, -0.03401828184723854, 0.011410298757255077, 0.002611907199025154, 0.02110787108540535, 0.019879434257745743, -0.01738712191581726, -0.00955582968890667, -0.04290083423256874, -0.002245738171041012, 0.024450641125440598, 0.02830132097005844, 0.01896991766989231, 0.000574353791307658, 0.05381503328680992, 0.011327615939080715, 0.002419963711872697, 0.023954540491104126, 0.00793759897351265, -0.014623136259615421, -0.011168154887855053, -0.029600629583001137, 0.025679077953100204, -0.00669734925031662, 0.034183647483587265, -0.02437976934015751, 0.020410969853401184, -0.023529311642050743, -0.02501761168241501, -0.009254625998437405, -0.007465123198926449, 0.020989753305912018, 0.014516829513013363, 0.021462228149175644, 0.01237887516617775, -0.0075950538739562035, 0.0015340709360316396, 0.04266459494829178, -0.025868069380521774, -0.015509028919041157, 0.028584806248545647, 0.02370649017393589, 0.049657244235277176, -0.008699467405676842, 0.017186319455504417, -0.012733232229948044, -0.06803656369447708, 0.02577357366681099, -0.026765773072838783, 0.03827056661248207, -0.0026842551305890083, -0.0016492370050400496, 0.026860268786549568, 0.010459440760314465, 0.01948964037001133, -0.02728549763560295, 0.02645866386592388, -0.004225708544254303, -0.016465794295072556, 0.02844306454062462, 0.012898598797619343, 0.011481170542538166, 0.010618900880217552, -0.005149989854544401, 0.029482511803507805, -0.02145041711628437, -0.022678853943943977, 0.02182839810848236, -0.019253402948379517, -0.026293298229575157, -0.019702255725860596, -0.013193896040320396, -0.0014927292941138148, -0.02544284053146839, 0.001292665139771998, 0.004653890151530504, 0.025159355252981186, -0.02551371231675148, 0.01107956562191248, -0.009006576612591743, -0.020032988861203194, 0.006307556293904781, 0.006207155529409647, -0.008563630282878876, -0.006638289894908667, 0.045924682170152664, -0.010949634946882725, 0.04323156550526619, -0.004163695964962244, 0.006094942335039377, 0.022643418982625008, 0.0355302058160305, -0.024852244183421135, 0.007925787009298801, 0.0018618513131514192, 0.027379993349313736, -0.013418322429060936, -0.020080236718058586, -0.02558458223938942, 0.04360954836010933, 0.027946963906288147, 0.007636395748704672, 0.01345375832170248, -0.021426793187856674, 0.059957221150398254, -0.0069335876032710075, 0.023352133110165596, 0.014351462945342064, -0.02969512529671192, 0.017741478979587555, -0.008799867704510689, 0.040349461138248444, 0.018603747710585594, -0.0203164741396904, -0.009916093200445175, 0.014422333799302578, 0.021273238584399223, 0.008776244707405567, 0.011156342923641205, 0.00623668497428298, 0.0077604204416275024, -0.030427463352680206, -0.02615155465900898, -0.032340992242097855, -0.025159355252981186, 0.00784310419112444, -0.008415981195867062, -0.012006799690425396, -0.010223202407360077, 0.0017688325606286526, -0.04207400232553482, 0.0021601018961519003, -0.021757526323199272, 0.025797197595238686, -0.013489194214344025, 0.021025188267230988, -0.007116672117263079, 0.0064847348257899284, -0.015698019415140152, -0.001684672781266272, 0.00015890701615717262, -0.010140519589185715, -0.0017762150382623076, 0.0034904174972325563, -0.01787140965461731, -0.015379098244011402, 0.003345721634104848, 6.038605079083936e-06, -0.002715261420235038, -0.023505687713623047, -0.0023520453833043575, -0.01107956562191248, -0.02220637910068035, -0.005790785886347294, 0.013146649114787579, 0.0003410687204450369, 0.005953199230134487, -0.023529311642050743, -0.00988065730780363, 0.0036764550022780895, -0.017517052590847015, 0.008522288873791695, -0.011085471138358116, 0.031065305694937706, 0.006679631303995848, -0.03656965494155884, -0.022253626957535744, 0.03172677382826805, -0.0018205096712335944, -0.005406898912042379, 0.002548418240621686, 0.006573324557393789, 0.0025159355718642473, -0.015284603461623192, 0.02279697358608246, 0.0031035777647048235, 0.0046095955185592175, -0.017977716401219368, 0.009762538596987724, 0.0080911535769701, 0.0051234131678938866, -0.0037945739459246397, -0.0006585136288776994, 0.01330020371824503, -0.001915004919283092, -0.0077308909967541695, 0.01644217036664486, 0.016453981399536133, 0.0031980727799236774, -0.007660019677132368, -0.01383173931390047, 0.026246050372719765, 0.011599289253354073, -0.029104530811309814, -0.005477770231664181, -0.008569535799324512, 0.0013133360771462321, -0.013264767825603485, 0.018013153225183487, -0.012662360444664955, -0.013571877032518387, 0.05159439519047737, -0.01544997002929449, 0.0019519170746207237, -0.03210475295782089, -0.0018367510056123137, 0.004051482770591974, 0.004305439069867134, 0.017292626202106476, 0.010246826335787773, 0.020942505449056625, 0.014079788699746132, 0.005155895836651325, 0.04956274852156639, 0.01539091020822525, 0.010518500581383705, -0.011800091713666916, -0.04512147232890129, -0.0011450164020061493, -0.02114330790936947, 0.006567418575286865, 0.02303321100771427, -0.020233791321516037, -0.030380215495824814, 0.04372766613960266, -0.008085248060524464, -0.008728996850550175, -0.010849233716726303, 0.04297170415520668, 0.019135283306241035, 0.001156090060248971, -0.018154894933104515, 0.015946069732308388, -0.0371129997074604, 0.00023623807646799833, -0.007689549122005701, 0.01422153227031231, -0.010099177248775959, 0.0011841433588415384, -0.007039894349873066, -0.006691443268209696, -6.95333510520868e-05, -0.015260979533195496, -0.005631324835121632, 0.04443638026714325, -0.003959940746426582, 0.0013022624189034104, -0.04150702804327011, 0.00967394933104515, 0.0008866310236044228, -0.041034553200006485, 0.0007869680994190276, 0.03349855914711952, 0.04606642201542854, -0.01754067651927471, 0.010040118359029293, -0.02660040743649006, -0.014812126755714417, 0.018910856917500496, 0.0005939172697253525, 0.020186543464660645, -0.020115671679377556, -0.013595500960946083, -0.012874974869191647, 0.004145978018641472, 0.0027403617277741432, -0.005126365926116705, -0.023009588941931725, 0.023021399974822998, -0.016170496121048927, 0.014067976735532284, 0.00027148923254571855, -0.020989753305912018, -0.02265523187816143, -0.012237132526934147, 0.03912102431058884, -0.005764208734035492, 0.011298085562884808, 0.008770338259637356, 0.010223202407360077, -0.05154714733362198, 0.026742149144411087, -0.029624253511428833, -0.019217967987060547, 0.028797421604394913, -0.027332745492458344, 0.018521064892411232, 0.048145320266485214, 0.015792515128850937, -0.01606418937444687, 0.019324274733662605, 0.033427685499191284, 0.0027625090442597866, 0.0016034658765420318, 0.034301768988370895, -0.005628372076898813, -0.01817851886153221, 0.01463494822382927, -0.017635172232985497, 0.01957232505083084, -0.01678471453487873, 0.00793759897351265, 0.0166665967553854, 0.04153065383434296, 0.006242590956389904, 0.004435369744896889, -0.02381279692053795, 0.014729443937540054, 0.03274259716272354, 0.013406510464847088, 0.020942505449056625, 0.04117629677057266, 0.0025927128735929728, -0.015142860822379589, 0.051641643047332764, -0.004095777403563261, -0.01224894355982542, 0.004550535697489977, 0.02100156433880329, 0.01771785505115986, -0.02577357366681099, 0.016879210248589516, 0.006307556293904781, 0.011882774531841278, 0.006591042038053274, -0.00972710270434618, -0.04266459494829178, 0.0033220979385077953, 0.009774350561201572, 0.014611324295401573, 0.009809785522520542, 0.0015444064047187567, 0.004624360240995884, -0.0034549818374216557, -0.01155204139649868, 0.003012035507708788, -0.01161110121756792, 0.009921998716890812, 0.020257415249943733, -4.620945765054785e-05, -0.019395146518945694, 0.023115895688533783, 0.0037384675815701485, -0.024852244183421135, -0.012993093580007553, -0.026246050372719765, 0.0295061357319355, -0.009892469272017479, 0.0028732456266880035, 0.004913751967251301, 0.019430581480264664, 0.016761090606451035, 0.004021953325718641, 0.0025897598825395107, -0.03356942906975746, -0.0018913811072707176, 0.055374205112457275, -0.006602854002267122, 0.0021187602542340755, -0.027120130136609077, 0.012745044194161892, -0.009927905164659023, 0.005306497681885958, 0.0014875616179779172, 0.012296191416680813, 0.00891798734664917, -0.02671852521598339, 0.02766347862780094, -0.00946133490651846, -0.013406510464847088, -0.023611994460225105, 0.0007611295441165566, -0.013890798203647137, -0.013737243600189686, -0.016572101041674614, -0.030569206923246384, -0.042499229311943054, -0.020635396242141724, -0.02487586811184883, 0.011977270245552063, -0.006992646958678961, 0.003951081540435553, 0.001557694748044014, -0.045357707887887955, 0.020151106640696526, 0.014268779195845127, -0.03732561692595482, -0.0018692337907850742, 0.007931693457067013, 0.023127706721425056, 0.012733232229948044, -0.029931362718343735, 0.004656842909753323, 0.03085269220173359, -0.021663030609488487, 0.003022370859980583, -0.0011339427437633276, -0.004116448573768139, -0.0015960835153236985, -0.020032988861203194, -0.014741255901753902, 0.005649042781442404, 0.018544688820838928, -0.01529641542583704, -0.004323156550526619, 0.010347227565944195, -0.036404285579919815, 0.03609717637300491, -0.027639854699373245, 0.006685537286102772, -0.01843838207423687, -0.0063252742402255535, 0.014540453441441059, -0.019843997433781624, 0.003747326321899891, 0.023423004895448685, 0.009904281236231327, -0.03269534930586815, -0.014457769691944122, -0.018521064892411232, -0.024214401841163635, 0.00822108518332243, 0.030191225931048393, -0.01209538895636797, -0.013973481953144073, -0.03789258748292923, 0.015709832310676575, 0.028915539383888245, 0.008345109410583973, -0.007222978863865137, 0.0010025353403761983, 0.031325168907642365, 0.022041011601686478, -0.012237132526934147, 0.03916827216744423, 0.014516829513013363, -0.007719079032540321, 0.0015960835153236985, 0.0018958104774355888, -0.023411191999912262, 0.00019840306777041405, -0.008032094687223434, -0.03009673021733761, -0.004482617601752281, -0.009065636433660984, 0.013642748817801476, 0.035199470818042755, -0.009662137366831303, 0.016879210248589516, 0.021993763744831085, -0.007293850649148226, 0.011428016237914562, -0.026482287794351578, -0.0027521734591573477, -0.019655007869005203, 0.006561512593179941, -0.009396369569003582, 0.02088344469666481, 0.05579943209886551, -0.02160397171974182, -0.009331404231488705, 0.03444351255893707, -0.015509028919041157, -0.030687324702739716, 0.02129686251282692, -0.033616676926612854, -0.006673725321888924, 0.01415066048502922, 0.008433698676526546, -0.01835569739341736, 0.023647431284189224, -0.010754738003015518, -0.02036372199654579, -0.011103189550340176, -0.009378651157021523, -0.0215921588242054, -0.012638736516237259, -0.006596948020160198, 0.0034638408105820417, -0.06302832067012787, -0.013264767825603485, -0.0045534889213740826, -0.02234812080860138, -0.010181860998272896, 0.00015826105664018542, 0.02544284053146839, 0.013843551278114319, -0.0036203484050929546, 0.004252285230904818, -0.007518276572227478, -0.015060177072882652, 0.014304215088486671, 0.005209049675613642, 0.015461781993508339, -0.0165130402892828, -0.012898598797619343, -0.017895033583045006, 0.01735168695449829, -0.02201738767325878, -0.00967394933104515, 0.006313462276011705, 0.02449788711965084, 0.0052149551920592785, -0.03730199113488197, 0.004228661302477121, 0.021958328783512115, -0.009047918021678925, -0.018934480845928192, -0.006543794646859169, 0.00983931589871645, 0.007624583784490824, 0.008646313101053238, 0.0021276192273944616, -0.016276802867650986, 0.02863205410540104, 0.014894810505211353, -0.023009588941931725, 0.04578293859958649, 0.016418546438217163, -0.0011642107274383307, 0.008510476909577847, 0.010618900880217552, -0.03427814319729805, 0.006579230073839426, 0.009774350561201572, -0.020139295607805252, -0.0028068036772310734, 0.017174508422613144, 0.00040381946018896997, -0.0011376339243724942, -0.00394222280010581, -0.01058937143534422, -0.014540453441441059, 0.00118045206181705, 0.02716737799346447, 0.02057633548974991, 0.006638289894908667, -0.004683419596403837, -0.012839538976550102, 0.028088707476854324, 0.01602875255048275, -0.012934034690260887, -0.00402490608394146, -0.012780480086803436, -0.0069572110660374165, 0.02043459378182888, 0.008906175382435322, 0.016914645209908485, 0.006142189726233482, -0.005223814398050308, 0.0003019417927134782, -0.009691666811704636, 0.007181637454777956, 0.020044799894094467, 0.007169825490564108, 0.020340098068118095, 0.017481617629528046, -0.017292626202106476, -0.011433922685682774, -0.011303992010653019, -0.022336309775710106, 0.013524629175662994, 0.011209496296942234, -0.024143530055880547, -0.008079341612756252, -0.007282038684934378, -0.013418322429060936, -0.014351462945342064, 0.011410298757255077, 0.00940818153321743, 0.010429910384118557, 0.01828482747077942, 0.02212369628250599, -0.0051175071857869625, 0.04238111153244972, 0.005291732959449291, -0.007665925193578005, 0.007577335927635431, 0.012130824849009514, 0.013371074572205544, -0.022182755172252655, 0.0030179412569850683, -0.007246602792292833, 0.0012321291724219918, -0.0025661359541118145, 0.022974152117967606, -0.0034786055330187082, -0.01840294525027275, -0.01678471453487873, -0.029057282954454422, 0.019737690687179565, 0.00914241373538971, 0.001568030216731131, -0.003124248469248414, -0.01113862544298172, 0.007990752346813679, -0.0106307128444314, -0.011463452130556107, 0.007205261383205652, -0.009904281236231327, 0.010884668678045273, -0.015131048858165741, -0.02103700116276741, 0.004213896580040455, 0.015367286279797554, 0.011327615939080715, 0.008847115561366081, 0.00035324975033290684, 0.013382886536419392, 0.01964319497346878, 0.028135953471064568, -0.027450863271951675, 0.005976823158562183, 0.02735636942088604, 0.017587924376130104, -0.008020282723009586, 0.003543571103364229, 0.032978836447000504, 0.0005570050561800599, -0.010069647803902626, -0.01437508687376976, 0.0004315036057960242, 0.0016920551424846053, -0.006366616114974022, 0.012993093580007553, -0.0355302058160305, -0.0006865668692626059, -0.012272567488253117, 0.007872633635997772, -0.01565077155828476, 0.015662584453821182, 0.02558458223938942, 0.032529983669519424, -0.004556441679596901, -0.019406957551836967, -0.011179966852068901, 0.002306274138391018, 0.003534712130203843, 0.0016078953631222248, -0.018485629931092262, -0.006821374408900738, 0.01383173931390047, 0.017505241557955742, 0.010607089847326279, -0.01957232505083084, 0.019513264298439026, -0.03560107573866844, -0.004627312999218702, -0.007039894349873066, -7.617755181854591e-05, -0.0030445181764662266, -0.01583976298570633, -0.0046095955185592175, 0.01840294525027275, -0.03796345740556717, -0.035955432802438736, -0.0014034018386155367, 0.007754514459520578, -0.009526300244033337, -0.04552307724952698, -0.004255238454788923, 0.014268779195845127, 0.017245378345251083, -0.007707267068326473, 0.006768220569938421, 0.01749342866241932, 0.006301650777459145, -0.009768444113433361, 0.006780032534152269, 0.01019957847893238, 0.0018913811072707176, -0.0059148105792701244, 0.005728773307055235, -0.008209273219108582, 0.021627595648169518, -0.017552489414811134, 0.02219456620514393, -0.014032541774213314, -0.003236461663618684, 0.004653890151530504, -0.015946069732308388, 0.01123312022536993, 0.0018972869729623199, -0.020977940410375595, 0.008280144073069096, -0.023730114102363586, 0.002778750378638506, 0.03231736645102501, -0.02709650620818138, -0.0038654454983770847, -0.003703031688928604, 0.0054187108762562275, -0.0158751979470253, -0.0003521423786878586, -0.018769115209579468, 0.013949858024716377, -0.018273014575242996, 0.011309897527098656, -0.026387792080640793, 0.02525384910404682, -0.002080371603369713, 0.014103412628173828, 0.013878986239433289, 0.00891798734664917, -0.0016625254647806287, 0.017221756279468536, -0.02114330790936947, 2.4131350073730573e-05, 0.01712726056575775, -0.016312239691615105, -0.008894363418221474, -0.0002111377689288929, 0.004358592443168163, -0.03675864264369011, -0.013985293917357922, 0.015981504693627357, -0.00020006411068607122, 0.024285273626446724, -0.0006566680385731161, -0.020044799894094467, -0.015509028919041157, -0.0011583047453314066, -0.005566359497606754, 0.02709650620818138, 0.008847115561366081, -0.016536664217710495, 0.005460052285343409, -0.009325497783720493, 0.0030592831317335367, 0.009077447466552258, 0.009544017724692822, -0.010317698121070862, -0.01053621806204319, -0.016926458105444908, -0.020670831203460693, 0.04677513986825943, -0.022938717156648636, 0.006354804150760174, -0.02058814838528633, -0.036073554307222366, 0.006909963674843311, 0.021013377234339714, -0.0326717235147953, 0.02792333997786045, -0.0021822492126375437, -0.0005736155435442924, -0.008339203894138336, 0.02339938096702099, 0.0023047977592796087, -0.011221308261156082, -0.013843551278114319, -0.023316698148846626, -0.023647431284189224, -0.024639630690217018, -0.027687102556228638, 0.03286071494221687, -0.016005128622055054, 0.0009346168953925371, 0.002306274138391018, -0.02408447116613388, -0.020375533029437065, 0.011794185265898705, 0.012030423618853092, 0.015721643343567848, -0.005631324835121632, -0.0004765364865306765, -0.027592606842517853, 0.017139071598649025, 0.006549700628966093, 0.003115389496088028, 0.024403393268585205, 0.0029101576656103134, 0.015509028919041157, 0.006720973178744316, 0.012390687130391598, 0.00033700838685035706, 0.024285273626446724, 0.02964787743985653, -0.028584806248545647, 0.016678407788276672, 0.01776510290801525, -0.001504541258327663, -0.01025273185223341, -0.006366616114974022, -4.037271719425917e-05, -0.006478829309344292, -0.004311344586312771, 0.0035465240944176912, 0.007931693457067013, -0.005309450440108776, 0.0030592831317335367, -0.02265523187816143, -0.01892266981303692, 0.004334968514740467, 0.012733232229948044, 0.015048365108668804, 0.006041788496077061, -0.003744373330846429, -0.03694763407111168, -0.01143982820212841, 0.009927905164659023, 0.010412192903459072, -0.00024583525373600423, -0.01659572497010231, -0.02532472088932991, -0.008681748993694782, -0.007459217216819525, 0.01776510290801525, 0.0009862938895821571, 0.004656842909753323, -0.002481976291164756, -0.007553712464869022, -0.004450134467333555, 0.0025617065839469433, 0.00793759897351265, -0.004237520508468151, -0.014339650981128216, -0.038057953119277954, -0.00842779316008091, -0.007784044370055199, 0.02178115025162697, 0.0027595560532063246, 0.006998552940785885, 0.0031596841290593147, 0.011823715642094612, -0.0003600784984882921, 0.0176115483045578, -0.0024494933895766735, -0.01704457774758339, 0.012993093580007553, 0.01652485318481922, 0.017245378345251083, -0.030829068273305893, -0.01625317893922329, 0.007961222901940346, -0.0015296415658667684, -0.0006987479282543063, -0.007276132702827454, -0.03796345740556717, -0.0166665967553854, 0.003360486589372158, 0.01693826913833618, 0.025371968746185303, -0.02415534295141697, -0.017658796161413193, 0.00858134776353836, -0.02091888152062893, -0.018544688820838928, -0.011605195701122284, -0.015946069732308388, -0.019123472273349762, -0.010512594133615494, 0.006862715817987919, -0.013855363242328167, 0.008132495917379856, -0.024639630690217018, 0.006431581452488899, 0.013323827646672726, -0.007559618446975946, 0.016950082033872604, 0.0023904340341687202, -0.014776691794395447, -0.012839538976550102, -0.0014949440956115723, -0.01735168695449829, -0.009360933676362038, -0.0003632160369306803, -0.010866951197385788, 0.018391134217381477, -0.014197908341884613, -0.02265523187816143, -0.012922222726047039, 0.009691666811704636, -0.016902834177017212, -0.0037857152055948973, -7.382439798675478e-05, -0.008675843477249146, -0.032340992242097855, -0.027852468192577362, -0.007488746661692858, 0.010258638300001621, 0.0028629100415855646, 0.005504346918314695, -0.03359305486083031, 0.028395816683769226, 0.0022339262068271637, 0.01693826913833618, -0.0007840151083655655, -0.008658125065267086, -0.001300047617405653, -0.00115461356472224, 0.021013377234339714, -0.0012144113425165415, -0.04559394717216492, -0.006909963674843311, -0.010317698121070862, 0.0311125535517931, 0.023352133110165596, -0.04989347979426384, -0.024710502475500107, 0.0031567311380058527, 0.005944340489804745, -0.008528194390237331, -0.02279697358608246, 0.01262692455202341, -0.027946963906288147, -0.020741702988743782, -0.014174284413456917, -0.026127930730581284, -0.02002117596566677, 0.01711544767022133, -0.004922610707581043, 0.005341933574527502, 0.013004905544221401, -0.006112660281360149, -0.011924116872251034, 0.0043763103894889355, 0.014741255901753902, -0.015142860822379589, -0.016985516995191574, -0.016548477113246918, -0.025490088388323784, 0.01032951008528471, -0.01076064445078373, -0.01757611334323883, 0.003013511886820197, 0.0020597006659954786, 0.03782171383500099, 0.03368755057454109, 0.01621774397790432, 0.005271061789244413, -0.009130601771175861, -0.005758302751928568, -0.005135225132107735, -0.006608759984374046, 0.014327839016914368, -0.016264991834759712, -0.022773349657654762, 0.030829068273305893, 0.024403393268585205, 0.007559618446975946, 0.0027580794412642717, 0.0030504241585731506, -0.028324944898486137, 0.016170496121048927, 0.04228661581873894, -0.005380322225391865, -0.01422153227031231, 0.007293850649148226, 0.012827727012336254, 0.01606418937444687, -0.015898821875452995, -0.006130377762019634, 0.017623359337449074, -0.030427463352680206, -0.018603747710585594, 0.025419216603040695, 0.03999510407447815, 0.0008224037592299283, 0.015674395486712456, -0.0034608878195285797, 0.021320486441254616, 0.024923115968704224, 0.016312239691615105, -0.011628818698227406, 0.03123067319393158, 0.006549700628966093, -0.004069200716912746, 0.04037308692932129, -0.03834144026041031, 0.023954540491104126, -0.012662360444664955, 0.03300245851278305, 0.014611324295401573, 0.002090706955641508, -0.007719079032540321, -0.00826242659240961, 0.005262203048914671, 0.008173837326467037, 0.009904281236231327, -0.00046730844769626856, -0.02084800973534584, 0.023009588941931725, -0.007819480262696743, -0.01422153227031231, -0.013430134393274784, 0.012355251237750053, -0.009106977842748165, -0.00886483397334814, -0.020410969853401184, -0.0094436164945364, 0.002845192328095436, -0.017883222550153732, -0.019064411520957947, -0.008073436096310616, 0.008280144073069096, 0.0017245379276573658, -0.007293850649148226, 0.005778973922133446, 0.004769056104123592, -0.00036616899888031185, -0.0034461228642612696, -0.0030829068273305893, -0.021426793187856674, -0.023470252752304077, -0.004107589367777109, -0.0032748503144830465, -0.015178295783698559, -0.00672687916085124, -0.021237801760435104, -0.007612771820276976, 0.008593159727752209, 0.01209538895636797, 0.0064847348257899284, 0.001304477103985846, 0.020068423822522163, 0.007837197743356228, -0.016831962391734123, -0.005846892483532429, -0.004594830330461264, -0.005067306570708752, -0.024970363825559616, -0.004296579863876104, -0.017257191240787506, 0.05745309963822365, -0.00939046312123537, -0.0005293209105730057, -0.018261203542351723, 0.00810887198895216, -0.0012085053604096174, 0.011492982506752014, 0.02957700565457344, 0.005380322225391865, -0.007778138387948275, 0.002245738171041012, -0.015910634770989418, -0.004030812066048384, -0.01835569739341736, -0.022418992593884468, 0.0003488202637527138, 0.015544464811682701, 0.014800314791500568, -0.00046509370440617204, 0.023115895688533783, 0.021722091361880302, -0.002600095234811306, -0.01123312022536993, -0.007925787009298801, -0.004016047343611717, -0.0038979281671345234, 0.01091419905424118, 0.03191576525568962, 0.01678471453487873, 0.02088344469666481, 0.008522288873791695, 0.02047002874314785, -0.02525384910404682, -0.019430581480264664, -0.005808503367006779, 0.0022841268219053745, -0.029222648590803146, 0.005102742463350296, 0.012780480086803436, 0.02501761168241501, -0.00680956244468689, -0.01006374228745699, 0.023281261324882507, 0.003643972333520651, -0.0037296086084097624, 0.007364721968770027, -0.002786132739856839, -0.005802597850561142, -0.0066264779306948185, -0.0025070765987038612, -0.002777273766696453, -0.007199355401098728, 0.006106754299253225, 0.010240920819342136, 0.0032246496994048357, -0.020198354497551918, 0.03198663517832756, -0.013595500960946083, -0.0015399769181385636, -0.002707878826186061, -0.0041725547052919865, 0.0018958104774355888, -0.022418992593884468, -0.0212614256888628, 0.02747448720037937, -0.003333909669891, -0.0036764550022780895, -0.017068199813365936, -0.0009419993148185313, 0.012922222726047039, 0.01004602387547493, 0.027852468192577362, -0.0033900162670761347, -0.009171943180263042, -0.017056388780474663, 0.006874527782201767, 0.012390687130391598, -0.003062235889956355, 0.00509978923946619, 0.024096284061670303, -0.017020953819155693, -0.009927905164659023, 0.0015916540287435055, -0.015249167568981647, 0.01221350859850645, 0.0036735020112246275, 0.005341933574527502, -0.007051706314086914, 0.011676066555082798, -0.02043459378182888, -0.015544464811682701, 0.008687655441462994, -0.008463229052722454, 0.009419993497431278, -0.010288167744874954, -0.020741702988743782, -0.0036735020112246275, -0.009738914668560028, 0.01377267949283123, 0.013418322429060936, 0.009898374788463116, 0.0005134486709721386, -0.006596948020160198, 0.0019843997433781624, -0.004925563931465149, -0.002207349520176649, 0.0015724597033113241, 0.028513934463262558, -0.01878092624247074, 0.022867845371365547, -0.015107424929738045, -0.005820315331220627, -0.011504794470965862, -0.018839986994862556, -0.023304885253310204, 0.015260979533195496, 0.003003176534548402, 0.005654948763549328, -0.014953870326280594, -0.013689996674656868, 0.009679854847490788, -0.00970938429236412, 0.023576559498906136, 0.0049462346360087395, -0.01064843125641346, -0.001790979877114296, 0.009809785522520542, -0.012685984373092651, -0.015142860822379589, 0.0064906408078968525, 0.0024553993716835976, -0.011203590780496597, -0.0021822492126375437, 0.010175954550504684, -0.014729443937540054, 0.00030747862183488905, -0.001072668470442295, -0.01878092624247074, -0.0020980893168598413, -0.00634889816865325, -0.007406063377857208, -0.0043142978101968765, -0.009449522942304611, 0.01673746667802334, -0.0020715126302093267, -0.006992646958678961, 0.0038861162029206753, -0.01576889120042324, 0.022962341085076332, 0.0051854257471859455, -0.0011841433588415384, -0.025986187160015106, 0.003195120021700859, -0.005158849060535431, -0.011197684332728386, 0.014835750684142113, -0.034112777560949326, -0.012804103083908558, 0.0002729656989686191, -0.00978616252541542, 0.01625317893922329, 0.010022399947047234, -0.027781596407294273, -0.0036882669664919376, -0.015402722172439098, -0.02494673989713192, 0.023163143545389175, 0.010435816831886768, 0.019926682114601135, -0.002845192328095436, -0.012886786833405495, 0.018202142789959908, -0.018072212114930153, -0.01652485318481922, -0.006785938516259193, 0.0022339262068271637, 0.009437710978090763, 0.02021016739308834, -0.025182979181408882, 0.017635172232985497, 0.01993849314749241, -0.009744820185005665, 0.011894586496055126, -0.02189926989376545, -0.005581124220043421, -0.010305886156857014, -0.007246602792292833, 0.006089036352932453, 0.0014779644552618265, 0.01042400486767292, -0.018426569178700447, 0.017599735409021378, -0.0012476323172450066, 0.00041194012737832963, -0.012296191416680813, 0.0036292073782533407, -0.002143860561773181, 0.0011597812408581376, -0.0069572110660374165, -0.005058447830379009, -0.00623668497428298, 0.016761090606451035, 0.012355251237750053, -0.009118789806962013, -0.006656007841229439, -0.016383109614253044, -0.01809583604335785, -0.030734572559595108, -0.013973481953144073, 0.01113862544298172, -0.04308982565999031, 0.0019888293463736773, 0.017776913940906525, 0.01076064445078373, -0.016642972826957703, 0.02622242644429207, -0.0061540016904473305, -0.01892266981303692, 0.03973524272441864, 0.000892536947503686, 0.002905728295445442, 0.02830132097005844, 0.0010416622972115874, -0.023765549063682556, 0.018650995567440987, 0.011091377586126328, 0.004482617601752281, 0.01900535263121128, 0.03359305486083031, -0.004317250568419695, 0.010406287387013435, 0.005973870400339365, -0.0059148105792701244, -0.010128707624971867, 0.025537336245179176, 0.022289061918854713, 0.03770359605550766, -0.020068423822522163, -0.010524406097829342, -0.015674395486712456, -0.005935481749475002, 0.024781374260783195, -0.01836751028895378, 0.019536888226866722, -0.0008814632892608643, 0.013359262607991695, 0.004503288306295872, 0.004565300885587931, -0.025466464459896088, -2.6484502086532302e-05, 0.02084800973534584, -0.008835303597152233, 0.006171719636768103, 0.009715290740132332, -0.008728996850550175, 0.006112660281360149, 0.008516382426023483, -0.0013627983862534165, 0.01628861576318741, -0.0014129990013316274, -0.00901248212903738, 0.017245378345251083, 0.011504794470965862, -0.007311568129807711, 0.027450863271951675, 0.0166665967553854, -0.013689996674656868, 0.004488523583859205, -0.02317495457828045, 0.011563853360712528, -0.011729219928383827, 0.003830009838566184, 0.015190107747912407, 0.00793759897351265, 0.0003096933360211551, 0.008734902366995811, 0.023127706721425056, -0.015544464811682701, 0.016843775287270546, 0.02227725088596344, -0.009626701474189758, 0.00901248212903738, -0.007146201562136412, -0.02110787108540535, 0.009662137366831303, -0.04658614844083786, -0.014906622469425201, -0.010057835839688778, -0.011510699987411499, 0.0042404732666909695, -0.0033782043028622866, 0.005415757652372122, 0.0320575051009655, 0.021497664973139763, -0.006921775639057159, -0.015379098244011402, -0.0013620600802823901, 0.007181637454777956, 0.006407957524061203, -0.015745267271995544, -0.0152373556047678, 0.0014366228133440018, -0.01478850282728672, -0.0004322418535593897, 0.015060177072882652, -0.006921775639057159, 0.004724761471152306, -0.013288391754031181, -0.0033250509295612574, 0.03021484985947609, -0.0027979447040706873, -0.010429910384118557, -0.0077604204416275024, 0.012615112587809563, 0.01313483715057373, -0.014067976735532284, -0.001570983207784593, 0.022997776046395302, 0.007341098040342331, -0.0030888128094375134, 0.0035553830675780773, 0.015520840883255005, 0.020044799894094467, 0.004261144436895847, 0.01652485318481922, 0.005442334339022636, 0.03699488192796707, 0.025112107396125793, 0.0036646430380642414, 0.017257191240787506, -0.008888456970453262, 0.014209720306098461, -0.024970363825559616, 0.010240920819342136, -0.002139430958777666, -0.004898986779153347, -0.020611772313714027, -0.0032423674128949642, -0.0094436164945364, 0.0028259980026632547, -0.01204223558306694, -0.010057835839688778, -0.007240696810185909, -0.015320039354264736, -0.012567865662276745, 0.027899716049432755, 0.021922893822193146, -0.001419643172994256, 0.009337309747934341, 0.024521511048078537, 0.0023372804280370474, -0.008534099906682968, 0.016961893066763878, -0.00015004808665253222, -0.017020953819155693, -0.011115001514554024, -0.011274461634457111, -0.002374192699790001, 0.01652485318481922, -0.008841210044920444, -0.01682015135884285, 0.015048365108668804, -0.00970938429236412, -0.008658125065267086, 0.019820373505353928, 0.015509028919041157, 0.005663807969540358, 0.014552265405654907, 0.002778750378638506, 0.0011103189317509532, -0.0044176517985761166, -0.020269226282835007, 0.025679077953100204, -0.03248273581266403, -0.010530311614274979, 0.0029884115792810917, -0.00290277530439198, -0.004568253643810749, -0.003803432919085026, 0.01847381703555584, 0.03524671867489815, -0.012071765027940273, -0.00071277457755059, 0.014835750684142113, 0.014008917845785618, -0.009738914668560028, 0.007547806482762098, 0.0015067559434100986, -0.013630936853587627, 0.007335192058235407, 0.008646313101053238, 0.025608206167817116, 0.02197013981640339, -0.017776913940906525, 0.012331627309322357, -0.02577357366681099, -0.01979674957692623, 0.01926521398127079, -0.0004901940119452775, -0.01367818471044302, 0.024663254618644714, 0.004399933852255344, -0.008286050520837307, 0.0193478986620903, 0.0002454661298543215, 0.0017023906111717224, -0.005353745073080063, 0.04112904891371727, 0.02912815473973751, -0.01501292921602726, 0.01971406675875187, 0.01446958165615797, -0.004503288306295872, 0.01772966794669628, 0.016418546438217163, -0.0003344245196785778, 0.025915317237377167, -0.028797421604394913, 0.016761090606451035, 0.007329286076128483, 0.02501761168241501, 0.007541900500655174, 0.014351462945342064, -0.017859598621726036, 0.009378651157021523, 0.024734126403927803, 0.01896991766989231, -0.0018264155369251966, 0.020824385806918144, 0.011882774531841278, 0.008959328755736351, -0.010618900880217552, 0.007482840679585934, -0.007004458922892809, -0.008250614628195763, -0.002070036018267274, 0.01768242008984089, -0.033923786133527756, 0.00032501190435141325, 0.006650101859122515, -0.003004652913659811, -0.011333521455526352, 0.025938939303159714, 0.0034431698732078075, 0.00225755013525486, 0.02513573132455349, 0.006272120866924524, 0.02532472088932991, -0.01247336994856596, -0.025301096960902214, -0.010748832486569881, 0.015544464811682701, 0.016347674652934074, 0.016926458105444908, -0.024781374260783195, -0.00669734925031662, -0.013288391754031181, -0.0012779003009200096, 0.017056388780474663, -0.005938434507697821, -0.001616754336282611, 0.004689325578510761, 0.008002564311027527, 0.01711544767022133, 0.0027270731516182423, -0.003109483513981104, 0.024734126403927803, 0.014245155267417431, -0.0039097401313483715, 0.005188378505408764, -0.00016970383876468986, 0.007010364904999733, 0.020233791321516037, -0.006974929012358189, -0.014032541774213314, 0.004594830330461264, -0.015934258699417114, -0.011670161038637161, 0.0013221949338912964, -0.0013701808638870716, -0.0012099818559363484, -0.0033929692581295967, -0.0061599076725542545, 0.013406510464847088, 0.010453534312546253, 0.0004839189350605011, -0.03510497882962227, 0.008309674449265003, 0.0061185662634670734, 0.016619348898530006, 0.01010508369654417, -0.007376533932983875, 0.015662584453821182, -0.005873469170182943, -0.011433922685682774, 0.003918598871678114, 0.006201249547302723, 0.04526321589946747, -0.00475133815780282, -0.015591712668538094, -0.009378651157021523, -0.013843551278114319, -0.019784938544034958, 0.016985516995191574, 0.020080236718058586, -0.0047808680683374405, -0.0001709034841042012, 0.00022036582231521606, 0.0009892468806356192, 0.014942058362066746, 0.020387345924973488, -0.006077224388718605, 0.0017053436022251844, 0.014434145763516426, -0.01183552760630846, 0.014327839016914368, 0.000519723747856915, 0.02626967430114746, 0.013004905544221401, 0.01993849314749241, 0.02325763739645481, -0.02012748457491398, 0.0094436164945364, -0.024663254618644714, -0.0043142978101968765, 0.011144530959427357, 0.008853022009134293, -0.004875363316386938, -0.017776913940906525, -0.003992423415184021, -0.03796345740556717, 0.03706575185060501, -0.01322933193296194, 0.009845221415162086, 0.0007101906812749803, 0.008286050520837307, -0.0066205719485878944, -0.026104306802153587, 0.025088483467698097, -0.02198195271193981, -0.017883222550153732, -0.008386451750993729, 0.01367818471044302, 0.017670607194304466, -0.005551594775170088, 0.007890351116657257, -0.022974152117967606, 0.015757080167531967, -0.02058814838528633, 0.00890026893466711, -0.005058447830379009, 0.009331404231488705, 0.0188872329890728, 0.00939046312123537, 0.01933608576655388, -0.004444228485226631, -0.013252955861389637, -0.009419993497431278, 0.020139295607805252, -0.012709608301520348, -0.004562347661703825, -0.007512370590120554, 0.002152719534933567, 0.0034372638911008835, -0.011504794470965862, -0.0005533138755708933, 0.0056519960053265095, 0.007813573814928532, -0.023151330649852753, 0.0032541793771088123, -0.005167707800865173, 0.011758750304579735, -0.01768242008984089, -0.0032748503144830465, 0.0028525746893137693, 0.008935704827308655, 0.01475306786596775, -0.010996881872415543, 0.020529087632894516, -0.0058911871165037155, -0.0019253402715548873, -0.015178295783698559, -0.01025273185223341, 0.011250837706029415, -0.008250614628195763, 0.01843838207423687, 0.02468687854707241, 0.008882551454007626, 0.007813573814928532, -0.02487586811184883, 0.01922977901995182, -0.007524182554334402, -0.007890351116657257, -0.018532875925302505, 0.004898986779153347, 0.0034874645061790943, -0.013760867528617382, 0.011510699987411499, -0.0043142978101968765, -0.025395592674613, -0.009733008220791817, 0.024072660133242607, -0.009266437962651253, -0.0027979447040706873, 1.7152637155959383e-05, -0.006951305083930492, 0.011492982506752014, -0.02577357366681099, -0.004202084615826607, 0.002192584564909339, -0.010010587982833385, 0.008209273219108582, 0.002313656499609351, -0.006260308902710676, 0.013323827646672726, 0.0043763103894889355, 0.014351462945342064, -0.008894363418221474, 0.033545807003974915, 0.01768242008984089, -0.016879210248589516, -0.01561533659696579, 0.0113453334197402, -0.004597783554345369, 0.010034211911261082, -0.007482840679585934, -0.005675619468092918, 0.022064635530114174, 0.0036823609843850136, -0.009981058537960052, -0.0043763103894889355, 0.007311568129807711, 0.014209720306098461, -0.025868069380521774, 0.012957658618688583, -0.013642748817801476, -0.004202084615826607, 0.015816139057278633, 0.003965846728533506, -0.017788726836442947, 0.013052153401076794, -0.02825407311320305, -0.011658349074423313, 0.011268556118011475, -0.0008356921607628465, -0.01491843443363905, 0.017469804733991623, -0.0250648595392704, 0.005200190469622612, 0.010240920819342136, -0.004523959010839462, -0.001506017753854394, -0.015910634770989418, 0.0022206378635019064, 0.0017599735874682665, 0.0017068200977519155, -0.0013480335474014282, -0.022218190133571625, 0.016453981399536133, -0.005129319150000811, -0.006644195877015591, -0.017517052590847015, 0.0022294968366622925, 0.009378651157021523, 0.016583912074565887, -0.012898598797619343, 0.03444351255893707, 0.004910798743367195, 0.00672687916085124, 0.006354804150760174, 0.0018382275011390448, 0.006732785142958164, -0.013441946357488632, -0.0054187108762562275, -0.016642972826957703, -0.0220528244972229, -0.008209273219108582, -0.03040383942425251, -0.00415778998285532, -0.05655539408326149, 0.0025129825808107853, 0.017599735409021378, -0.02325763739645481, -0.009998776018619537, -1.0744910468929447e-05, 0.009101071394979954, -0.008150213398039341, 0.007140295580029488, -0.024852244183421135, 0.005492534954100847, -0.012485181912779808, -0.018615560606122017, -0.007553712464869022, 0.014835750684142113, 0.010677960701286793, 0.016831962391734123, -0.010211390443146229, 0.0176115483045578, 0.0067977504804730415, 0.003930410835891962, -0.040207721292972565, -0.027332745492458344, -0.007364721968770027, -0.0039776586927473545, 0.021320486441254616, -0.008734902366995811, 0.01990305818617344, -0.011882774531841278, -0.013111213222146034, -0.007913975045084953, 0.016076000407338142, 0.0029204932507127523, -0.021533099934458733, 0.004140072036534548, -0.003703031688928604, -0.0077308909967541695, 0.019843997433781624, -0.011363050900399685, -0.015568088740110397, 0.013182084076106548, -0.005442334339022636, 0.007010364904999733, -0.006850903853774071, 0.0045830183662474155, -0.010618900880217552, 0.007518276572227478, 0.011132718995213509, 0.021131495013833046, -0.006047694478183985, 0.026553159579634666, 0.010577559471130371, 0.01836751028895378, 0.015638960525393486, 0.01129218004643917, -0.007010364904999733, -0.010559841990470886, 0.017635172232985497, -0.003136060433462262, 0.005554547533392906, -0.0009678378701210022, 0.0028230450116097927, -0.0045534889213740826, -0.0008209273219108582, 0.011752843856811523, 0.01644217036664486, -0.01726900227367878, 0.0032600853592157364, -0.0004887175164185464, -0.007039894349873066, 0.010825609788298607, 0.011823715642094612, -0.03281346708536148, 0.017706044018268585, 0.0021202366333454847, 0.015048365108668804, -0.007069424260407686, 0.007364721968770027, 0.01780053786933422, 0.019099848344922066, 0.01354825310409069, 0.019997552037239075, 0.006892245728522539, -0.004272955935448408, 0.012721420265734196, -0.007789950352162123, 0.006112660281360149, -0.0077367969788610935, -0.01437508687376976, -0.004219802562147379, 0.02313951961696148, 0.0032305556815117598, 0.008032094687223434, 0.002374192699790001, 0.008610878139734268, -0.0011051512556150556, -0.010861045680940151, 0.012685984373092651, 0.011900492943823338, -0.0063193682581186295, 0.02145041711628437, -0.01814308390021324, 0.026576783508062363, -0.013276579789817333, 0.02318676747381687, -0.019147096201777458, -0.011097283102571964, 0.03857767581939697, -0.009845221415162086, 0.03853042796254158, 0.0014351463178172708, 0.006821374408900738, 0.006248496938496828, -0.016052376478910446, 0.0004027120885439217, 0.013855363242328167, -0.018261203542351723, 0.01247336994856596, -0.001072668470442295, -0.006015211809426546, 0.00026484503177925944, 0.01862737163901329, 0.0119831757619977, -0.011758750304579735, -0.0038329625967890024, -0.014103412628173828, 0.011918210424482822, -0.016229555010795593, 0.007831292226910591, 0.0017082965932786465, 0.027025634422898293, 0.011687878519296646, 0.010128707624971867, -0.015898821875452995, -0.0035671947989612818, 0.0069335876032710075, -0.003357533598318696, 0.007400157395750284, -0.02219456620514393, -0.01262692455202341, 0.0034904174972325563, -0.004202084615826607, 0.01678471453487873, 0.01611143723130226, 0.011935928836464882, -0.030616454780101776, -0.008226990699768066, 0.014930246397852898, -0.003815244883298874, -0.003183308057487011, 0.023541124537587166, 0.011658349074423313, -0.005477770231664181, -0.008498664945363998, 0.009957434609532356, -0.0017289674142375588, -0.021131495013833046, -0.00907154195010662, 0.013583688996732235, 0.004231614526361227, 0.008604971691966057, -0.012804103083908558, -0.020871633663773537, 0.007872633635997772, -0.003744373330846429, 0.0008541482966393232, -0.016359485685825348, -0.008876645937561989, 0.009969246573746204, -0.004674560856074095, 0.002614860190078616, -0.014245155267417431, 0.010341321118175983, -0.019406957551836967, -0.003770950250327587, -0.027710726484656334, 0.012745044194161892, -0.02664765529334545, -0.008788056671619415, -0.012874974869191647, -0.001444005174562335, -0.0046155015006661415, 0.014410522766411304, 0.011410298757255077, 0.014445957727730274, 0.021119683980941772, -0.006053600460290909, 0.012426122091710567, 0.0075714304111897945, -0.025466464459896088, -0.003827056847512722, -0.004237520508468151, -0.015603524632751942, 0.023919105529785156, 0.01516648381948471, -0.0030799538362771273, -0.00016804278129711747, -0.010979164391756058, -0.011014600284397602, -0.024663254618644714, -0.007305662147700787, -0.007866728119552135, -0.020068423822522163, 0.012437934055924416, 0.004869457334280014, -0.0158751979470253, -0.006407957524061203, 0.007606865838170052, 0.002369763096794486, -0.015379098244011402, 0.014197908341884613, 0.011451640166342258, -0.00037152128061279655, 0.030049482360482216, 0.0045475829392671585, 0.024474265053868294, -0.008120683953166008, 0.006514264736324549, -0.007152107544243336, -0.024332521483302116, 0.001045353477820754, -0.007317474111914635, 0.01663115993142128, -0.015272791497409344, -0.00600044708698988, -0.02487586811184883, -0.014906622469425201, -0.06501271575689316, 0.004937375895678997, -0.012036330066621304, 0.02964787743985653, 0.0007758944411762059, 0.005613607354462147, 0.0008511953055858612, 0.007329286076128483, 0.019088035449385643, -0.0015724597033113241, -0.01155204139649868, -0.027498111128807068, -0.010790173895657063, -0.004724761471152306, -0.01640673354268074, -0.00357900676317513, 0.003177402075380087, 0.02171027846634388, -0.0215921588242054, -0.011091377586126328, -0.022938717156648636, 0.007878540083765984, 0.010022399947047234, -0.016796527430415154, 0.01960776001214981, -0.0007729414501227438, 0.012426122091710567, -0.010004682466387749, -0.01689102128148079, -0.018225766718387604, 0.007329286076128483, -0.0412471666932106, 0.006951305083930492, 0.010695679113268852, 0.01945420540869236, -0.0036498780827969313, -0.009626701474189758, -0.025868069380521774, 0.014422333799302578, 0.011528417468070984, 0.00764820771291852, -0.01945420540869236, 0.02355293557047844, 0.000951596477534622, -0.00897704716771841, 0.014965681359171867, -0.01194774080067873, 0.003139013424515724, 0.012308003380894661, 0.006904057692736387, -0.008953423239290714, -0.011487076058983803, 0.002313656499609351, 0.006909963674843311, 0.008906175382435322, 0.010908292606472969, 0.013867175206542015, -0.02155672386288643, -0.00047764385817572474, -0.014138848520815372, 0.024060847237706184, 0.006313462276011705, -0.0005747229442931712, -0.0005979776033200324, -0.00858134776353836, -0.014008917845785618, -0.019099848344922066, 0.005501394160091877, 0.04386940971016884, 0.04320794343948364, -0.014658572152256966, 0.003121295478194952, -0.028844667598605156, 0.0064611113630235195, -0.012449746020138264, -0.00831557996571064, 0.020032988861203194, 0.003401828231289983, -0.001786550390534103, -0.009927905164659023, -0.0014476964715868235, 0.004104636609554291, 0.027025634422898293, -0.014741255901753902, -0.01100869383662939, 0.002332851057872176, 0.016902834177017212, -0.006183531600981951, -0.014186096377670765, 0.0011095807421952486, 0.030545582994818687, 0.01749342866241932, 0.004048530012369156, 0.00961488950997591, 0.005318309646099806, 0.014457769691944122, -0.023304885253310204, 0.01798952929675579, 0.0021660078782588243, 0.0031006247736513615, 0.002713784808292985, -0.015083801001310349, -0.019702255725860596, 0.015792515128850937, 0.0050200591795146465, -0.009160131216049194, -0.04781458526849747, -0.018615560606122017, -0.014386898837983608, 0.03243548795580864, 0.00939046312123537, 0.01446958165615797, 0.0007795856217853725, -7.226716206787387e-06, 0.007748608943074942, 0.0029190166387706995, -0.025182979181408882, 0.009402275085449219, -0.0076186778023839, 0.008026188239455223, -0.016264991834759712, -0.016926458105444908, -0.008841210044920444, -0.0263405442237854, 0.004981670528650284, -0.01783597469329834, 0.01652485318481922, -0.002901298925280571, -0.00846913456916809, 0.001446958165615797, -0.01301671750843525, 0.019395146518945694, -0.006136283744126558, -0.001792456372641027, 0.015709832310676575, -0.005395086947828531, -0.03352218121290207, 0.008829398080706596, -0.0031006247736513615, 0.003703031688928604, 0.008268332108855247, -0.003416593186557293, 0.0070989541709423065, 0.001292665139771998, -0.012674172408878803, -0.037609100341796875, 0.010299979709088802, 0.00019840306777041405, 0.016465794295072556, 0.009319592267274857, -0.0056254188530147076, -0.007612771820276976, 0.01847381703555584, 0.003354580607265234, -0.004199131857603788, 0.0233285091817379, 0.004272955935448408, -0.006407957524061203, -0.0001980339438887313, 0.022513488307595253, 0.003641019342467189, 0.028159577399492264, 0.004036718048155308, -0.0016064188675954938, -0.01625317893922329, 0.005188378505408764, 0.003165590111166239, 0.020777137950062752, -0.013725431635975838, -0.02069445513188839, 0.004928516689687967, 0.015603524632751942, -0.0067977504804730415, 0.012308003380894661, 0.00539803970605135, 0.004021953325718641, 0.004594830330461264, 0.0072702267207205296, 0.004396981094032526, -0.045806560665369034, 0.02615155465900898, 0.0009656231268309057, 0.003345721634104848, -0.01275685615837574, -0.005276967771351337, -0.01561533659696579, 0.015308227390050888, 0.021096060052514076, 0.0023254684638231993, 0.006366616114974022, 0.010087365284562111, -0.001971111400052905, 0.018497440963983536, -0.03841231018304825, 0.002552847610786557, -0.0126977963373065, 0.004482617601752281, 0.009118789806962013, 0.007305662147700787, 0.00967394933104515, -0.0012055523693561554, -0.004612548276782036, 0.003074047854170203, -0.005176566541194916, 0.0036085364408791065, -0.022560736164450645, -0.0029972705524414778, -0.003992423415184021, -0.006254402920603752, -0.006514264736324549, -0.018792739138007164, -0.028513934463262558, 0.014906622469425201, 0.007293850649148226, -0.013654560782015324, 0.007033988367766142, 0.019064411520957947, -0.02415534295141697, 0.016264991834759712, -0.014233344234526157, 0.0118178091943264, -0.010388568975031376, 0.015154671855270863, 0.0023978163953870535, 0.011900492943823338, 0.00046730844769626856, -0.0099928705021739, -0.006071318406611681, 0.0007611295441165566, 0.014398710802197456, 0.011557947844266891, -0.003171496093273163, -0.0125324297696352, 0.02107243612408638, 0.008386451750993729, 0.017280815169215202, 0.020741702988743782, 0.011941834352910519, -0.0015503123868256807, 0.0126977963373065, -0.0030799538362771273, -0.0026857315097004175, 0.011587477289140224, 0.016241367906332016, -0.022041011601686478, -0.008451417088508606, 0.0001279930438613519, 0.01399710588157177, -0.02787609212100506, -0.01896991766989231, -0.035648323595523834, 0.03682951629161835, -0.00993381068110466, 0.033285945653915405, 0.0022265438456088305, -0.012367063201963902, -0.00917784869670868, 0.0029810292180627584, 0.026246050372719765, 0.020458217710256577, 0.0059945411048829556, 0.004999388009309769, 0.0004979455843567848, -0.01708001270890236, -0.0022354028187692165, -0.0317503958940506, 0.009975152090191841, -0.004267049953341484, 0.0012882357696071267, 0.005265155807137489, 0.008764432743191719, -0.002216208493337035, 0.025277473032474518, -0.023092271760106087, -0.022513488307595253, -0.02964787743985653, 0.016796527430415154, -0.0023018447682261467, 0.0049875760450959206, 0.0032807562965899706, -0.029175402596592903, 0.013465570285916328, 0.0023609041236341, 0.0022693618666380644, 0.02799421176314354, 0.006478829309344292, 0.0007810621173121035, 0.010134613141417503, -0.009018388576805592, 0.0011671637184917927, 0.002670966787263751, 0.00784310419112444, 0.014481393620371819, 0.0005130795761942863, -0.034632500261068344, -0.020741702988743782, 0.030829068273305893, -0.024639630690217018, -0.029553383588790894, -0.0017703090561553836, -0.0006544532952830195, -0.015402722172439098, -0.007335192058235407, 0.012745044194161892, 0.02317495457828045, -0.0021541959140449762, -0.01847381703555584, -0.029813244938850403, -0.005832127295434475, 0.018202142789959908, -0.025560960173606873, -0.004323156550526619, 0.019619571045041084, 0.018343886360526085, 0.008451417088508606, 0.045924682170152664, 0.005229720380157232, -0.016926458105444908, -0.005973870400339365, 0.02964787743985653, 0.017694231122732162, -0.024403393268585205, 0.015142860822379589, 0.01279229111969471, -0.0017555442173033953, 0.015520840883255005, -0.011534323915839195, -0.006443393416702747, -0.009892469272017479, 0.012898598797619343, -0.025631830096244812, 0.005846892483532429, -0.023092271760106087, 0.0034874645061790943, 0.0026133835781365633, 0.016324050724506378, -0.012089483439922333, -0.0005876421928405762, -0.019064411520957947, -0.022785162553191185, 0.002378622069954872, 0.0013672278728336096, 0.00038979281089268625, 0.006909963674843311, 0.008073436096310616, -0.007004458922892809, 0.0017688325606286526, 0.007553712464869022, 0.03300245851278305, 0.006892245728522539, -0.008008470758795738, -0.02250167541205883, 0.014197908341884613, 0.020895257592201233, -0.02773435041308403, 0.023682866245508194, -0.014280591160058975, 0.0004654628282878548, -0.01757611334323883, -0.009337309747934341, 0.01621774397790432, -0.00978616252541542, 0.003416593186557293, -0.002440634649246931, -0.005161801818758249, 0.011865057051181793, 0.00021981213649269193, 0.012201696634292603, -0.00496690534055233, 0.000590226030908525, 0.015792515128850937, 0.011599289253354073, 0.0014787026448175311, 0.010677960701286793, 0.007169825490564108, -0.01112090703099966, 0.0059886351227760315, -0.007152107544243336, -0.0005156634142622352, 0.011368957348167896, 0.034183647483587265, 0.005799644626677036, 0.009827503934502602, -0.02863205410540104, -0.01262692455202341, -0.029246272519230843, -0.0023830514401197433, 0.004668654873967171, -0.030923563987016678, 0.026505911722779274, -0.009290061891078949, -0.03156140446662903, 0.006283932831138372, 0.006342992186546326, 0.0007648207829333842, 0.018308451399207115, 0.005034823901951313, 0.013418322429060936, -0.00863450113683939, 0.018532875925302505, 0.0034431698732078075, -0.007724985014647245, -0.021379545331001282, -0.014540453441441059, 0.01021729689091444, 0.00929596833884716, 0.012089483439922333, -0.017150884494185448, 0.003776856232434511, -0.0019474875880405307, -0.004261144436895847, 0.01814308390021324, -0.010258638300001621, -0.0009412610670551658, 0.005002341233193874, 0.017552489414811134, 0.014351462945342064, 0.0055840774439275265, -0.010607089847326279, 0.005102742463350296, -0.028466688469052315, -0.017398934811353683, -0.0010239443508908153, 0.004742479417473078, -0.007317474111914635, 0.016300426796078682, -0.017292626202106476, 0.005973870400339365, -0.02480499818921089, 0.005460052285343409, 0.01194774080067873, -0.008291956037282944, 0.0012498470023274422, -0.0069572110660374165, 0.024214401841163635, 0.00978025607764721, 0.012201696634292603, -0.010754738003015518, -0.036026306450366974, -0.009862939827144146, -0.00890026893466711, 0.014564077369868755, 0.016359485685825348, 0.000388685439247638, -0.006579230073839426, -0.013382886536419392, 0.02355293557047844, 0.003404781222343445, 0.01048306468874216, -0.008557723835110664, 0.01475306786596775, 0.002140907570719719, 0.003410687204450369, -0.0024524463806301355, -0.002707878826186061, -0.0021719138603657484, -0.0307818204164505, 0.014410522766411304, -0.021852022036910057, -0.019088035449385643, -0.007719079032540321, 0.0028200920205563307, 0.010624807327985764, 0.010282262228429317, 0.00542756961658597, 0.002663584193214774, 0.02626967430114746, 0.003830009838566184, -0.005563406739383936, 0.0044855703599750996, 0.006691443268209696, -0.01670203171670437, -0.004196178633719683, -0.006673725321888924, 0.011256744153797626, -0.00637842807918787, -0.013312015682458878, 0.01446958165615797, 0.006780032534152269, 0.008392357267439365, 0.0025115059688687325, 0.012508805841207504, -0.008853022009134293, 0.014871186576783657, 0.00248788227327168, -0.024993987753987312, -0.007447405252605677, -0.028490310534834862, -0.027781596407294273, 0.001618230831809342, -0.013312015682458878, 0.01742255687713623, -0.018639184534549713, 0.020221978425979614, -0.0173044390976429, 0.013264767825603485, 0.006862715817987919, 0.017469804733991623, -0.0051116012036800385, -0.000780323869548738, 0.0034343109000474215, 0.02660040743649006, 0.025915317237377167, -0.007181637454777956, 0.004597783554345369, -0.00782538577914238, -0.000839383399579674, 0.01188868097960949, -0.017741478979587555, 0.003233508672565222, 0.0019223872805014253, -0.020788950845599174, 0.021214179694652557, 0.007878540083765984, -0.011144530959427357, 0.0014233343536034226, 0.02313951961696148, -0.00669734925031662, -0.012768668122589588, -0.013749055564403534, -0.029529759660363197, 0.015509028919041157, 0.006969023030251265, -0.008711278438568115, -0.007518276572227478, 0.001381992711685598, -0.0007633442874066532, -0.00846913456916809, -0.009921998716890812, 0.019052600488066673, 0.010961446911096573, -0.020221978425979614, -0.0233285091817379, -0.0007419352186843753, -0.010731114074587822, 0.014032541774213314, -0.013749055564403534, -0.008799867704510689, -0.026765773072838783, 0.003968799486756325, 0.0005215693381614983, 0.006354804150760174, -0.0024996940046548843, -0.005787832662463188, 0.005433475598692894, 0.002824521390721202, -0.0004898248589597642, 0.023907292634248734, -0.004565300885587931, -0.018048588186502457, -0.0061599076725542545, -0.01685558632016182, -0.011746938340365887, 0.01647760532796383, -0.0019253402715548873, 0.0169737059623003, 0.009945622645318508, 0.005675619468092918, -0.026057058945298195, 0.007057612296193838, 0.004169601947069168, -0.0007751561934128404, 0.015320039354264736, -0.0028437157161533833, 0.019123472273349762, 0.008014376275241375, 0.001677290303632617, 0.01279229111969471, 0.012071765027940273, 0.027309121564030647, -0.0002415903436485678, 0.01873367838561535, 0.001562124234624207, 0.008947516791522503, -0.018426569178700447, 0.00014386529801413417, 0.013595500960946083, 0.010949634946882725, -0.023198578506708145, -0.009945622645318508, 0.030710948631167412, 0.007872633635997772, -0.00427000317722559, 0.0042109438218176365], "1062af75-9e40-499f-9e34-18c8074da7a8": [-0.006241150200366974, -0.03506139665842056, 0.0009978906018659472, 0.04060908406972885, -0.012071771547198296, -0.018063275143504143, -0.03561616316437721, 0.005203732289373875, -0.01875118911266327, 0.05015110969543457, 0.0018238028278574347, -0.0048736450262367725, 0.027782827615737915, -0.012149439193308353, -0.01310364156961441, 0.01592186838388443, -0.016066107898950577, 0.015511338599026203, 0.0029624660965055227, -0.014523849822580814, 0.013669505715370178, -5.6733788369456306e-05, -0.034395672380924225, 0.01623253896832466, 0.006385390181094408, -0.024298878386616707, -0.0030872889328747988, -0.002146955579519272, 0.0017960643162950873, -0.010712587274610996, 0.012715303339064121, 0.0037502378690987825, 0.02013811096549034, 0.012049580924212933, 0.015400384552776814, -0.013847031630575657, -0.025408416986465454, -0.004191278945654631, 0.02200213447213173, 0.0040248483419418335, -0.004859775770455599, 0.01657649502158165, 0.0036392840556800365, -0.05059492588043213, -0.02372191846370697, 0.005065040197223425, -0.02003825269639492, -0.009020542725920677, 0.05099435895681381, 0.009325665421783924, -0.005004015751183033, -0.018984192982316017, 0.011838768608868122, 0.04580172151327133, 0.03324175253510475, -0.008499059826135635, 0.011328381486237049, 0.03388528525829315, 0.02091478742659092, -0.04819832369685173, 0.013525266200304031, -0.01777479611337185, -0.01635458692908287, -0.03262041136622429, 0.02600756660103798, 0.004596260376274586, 0.019250480458140373, -0.011683433316648006, -0.026562334969639778, 0.007051113061606884, -0.025585941970348358, -0.0016185382846742868, -0.023477820679545403, 0.007888813503086567, 0.06359870731830597, 0.002078996505588293, 0.036548174917697906, 0.034173764288425446, 0.05081683397293091, -0.036037787795066833, 0.006085814908146858, 0.009536477737128735, 0.010862375609576702, -0.01614377461373806, 0.02263457141816616, -0.0002666358195710927, -0.03282012790441513, -0.037102945148944855, 0.007539309561252594, -0.009991387836635113, 0.01087901834398508, 0.005314686335623264, 0.003633736399933696, 0.011139759793877602, -0.008082983084022999, 0.002219075569882989, 0.020870406180620193, 0.01098997239023447, 0.026473572477698326, -0.02707272209227085, -0.01830737479031086, -0.007167614530771971, 0.012604349292814732, 0.02200213447213173, 0.011073186993598938, 0.004693345166742802, 0.018140943720936775, 0.003977693151682615, 0.003020716831088066, 0.014168797992169857, -0.03934421017765999, -0.042606253176927567, 0.017686033621430397, 0.010202200151979923, -0.03976583480834961, -0.023766299709677696, -0.012582158669829369, 0.026051947847008705, -0.018573662266135216, -0.005220375489443541, 0.013713887892663479, -0.025430606678128242, 0.022789906710386276, 0.00290976301766932, 0.01689826138317585, 0.0008862433605827391, 0.007783407811075449, 0.03577150031924248, 0.0613352507352829, 0.026495764032006264, 0.003974919207394123, -0.009436619468033314, 0.009608597494661808, 0.03448443487286568, -0.03994335979223251, -0.024542976170778275, 0.024942411109805107, 0.06617283821105957, -0.010906756855547428, 0.018262991681694984, -0.02296743355691433, 0.03761333227157593, 0.0004316795675549656, 0.03284231945872307, -0.0059915040619671345, -0.0175417922437191, -0.03390747681260109, 0.0554325096309185, 0.01972758211195469, -3.935391941922717e-05, -0.029713422060012817, -0.023233722895383835, -0.053346578031778336, 0.01045739371329546, 0.03142211213707924, -0.009081566706299782, 0.011283999308943748, 0.04147452488541603, 0.00834372453391552, 0.038833823055028915, 0.01024103444069624, -0.034062810242176056, 0.039810217916965485, 0.0072841159999370575, 0.0589386485517025, 0.02144736610352993, 0.04895281046628952, 0.04200710356235504, -0.013858127407729626, 0.01840723305940628, 0.03716951608657837, -0.01907295547425747, -0.00014658035070169717, -0.028626075014472008, 0.02631823718547821, -0.018340660259127617, -0.0021538902074098587, -0.00029992192867212, 0.0318659245967865, -0.0014645899645984173, -0.01310364156961441, -0.006263340823352337, -0.0022634570486843586, -0.009125948883593082, 0.0018279635114595294, 0.029824376106262207, 0.012449014000594616, 0.03344146907329559, -0.029180845245718956, -0.013536361046135426, 0.01852928102016449, -0.0075282142497599125, 0.010191105306148529, 0.0037474639248102903, -0.02891455590724945, -0.007616977207362652, 0.02514212764799595, -0.0066794175654649734, -0.018351756036281586, 0.013037069700658321, 0.0027377845253795385, -0.0032842319924384356, -0.009708455763757229, 0.02514212764799595, -0.023588774725794792, -0.013203499838709831, -0.008548988960683346, -0.029535897076129913, 0.026673289015889168, 0.001540870638564229, 0.04611239209771156, -0.039588309824466705, 0.005109421443194151, 0.006662774831056595, 0.01527833566069603, -0.005880550481379032, 0.014435087330639362, 0.028337595984339714, -0.0026296046562492847, -0.03328613564372063, 0.012105057947337627, -0.041652049869298935, -0.018995286896824837, -0.027050532400608063, -0.03239850327372551, 0.011100925505161285, -0.02835978753864765, 0.013991272076964378, -0.02946932427585125, -0.05166007950901985, 0.03918887674808502, 0.011300642974674702, 0.020071540027856827, 0.011256260797381401, 0.02784939855337143, 0.03617093339562416, 0.04178519546985626, -0.00132728461176157, -0.0009743128903210163, 0.00927018839865923, 0.011994103901088238, 0.014346323907375336, 0.012471205554902554, -0.04992920160293579, 0.0017405874095857143, 0.00041191591299138963, -0.011450430378317833, 0.027449965476989746, 0.01342540793120861, 0.01623253896832466, -0.011750005185604095, -0.021092314273118973, 0.028137879446148872, -0.025852231308817863, -0.029203034937381744, -0.0025963184889405966, 0.023677537217736244, -0.0037474639248102903, 0.001984685892239213, -0.007622524630278349, 0.009292379021644592, 0.017686033621430397, -0.001991620287299156, 0.014224275015294552, 0.06275545805692673, 0.01479013916105032, 0.04265063256025314, -0.020104825496673584, -0.035039205104112625, -0.0007641941774636507, 0.03410719335079193, -0.012526681646704674, -0.01402455847710371, 0.016432255506515503, -0.030712006613612175, 0.028892364352941513, -0.0033202918712049723, -0.01797451265156269, -0.011572479270398617, -0.007927647791802883, -0.007894361391663551, -0.03690322861075401, 0.06599531322717667, 0.007428355515003204, 0.01948348432779312, 0.04125261679291725, -0.03033476322889328, -0.03077857941389084, -0.04930786043405533, -0.009281284175813198, 0.010690396651625633, 0.001382761518470943, -0.0392332561314106, -0.0020900918170809746, 0.010801350697875023, -0.008110721595585346, -0.012471205554902554, -0.00403317017480731, -0.02155832014977932, -0.02232390083372593, 0.003447888884693384, 0.019627723842859268, -0.0175417922437191, -0.020748356357216835, 0.03002409264445305, -0.01446837279945612, 0.05068368837237358, 0.014257561415433884, -0.00878199189901352, 0.04992920160293579, -0.0007635006913915277, -0.04038717597723007, -0.025741277262568474, -0.03357461467385292, 0.03867848962545395, 0.036681320518255234, -0.015999535098671913, -0.010013578459620476, -0.0320434533059597, -0.0005051864427514374, -0.009824957698583603, 0.016509922221302986, 0.008077435195446014, 0.01819642074406147, 0.0032121120020747185, -0.040143080055713654, 0.029735613614320755, -0.012216011062264442, 0.019871821627020836, -0.0005734923761337996, -0.040675655007362366, 0.005101100075989962, -0.013625124469399452, 0.011894245631992817, -0.022046515718102455, -0.0027849399484694004, -0.0295580867677927, -0.048686519265174866, -0.014823425561189651, -0.019794154912233353, -0.03446224331855774, -0.034506626427173615, 0.03539425507187843, 0.00020786497043445706, -0.022146373987197876, 0.0030678720213472843, 0.0055837491527199745, 0.011761100962758064, -0.007278568111360073, 0.01861804537475109, 0.000652200193144381, 0.0036143194884061813, 0.024676121771335602, -0.014179893769323826, 0.03466195985674858, -0.0059249321930110455, 0.00551995076239109, 0.008099625818431377, 0.016432255506515503, 3.699181615957059e-05, 0.0021344732958823442, -0.026251664385199547, 0.01581091433763504, -0.006629488430917263, -0.022623475641012192, 0.012859543785452843, 0.014767948538064957, 0.01668744906783104, -0.007289663422852755, 0.010302058421075344, 0.008648847229778767, -0.015123000368475914, -0.029225226491689682, -0.013658410869538784, 0.033974047750234604, -0.06084705516695976, 0.016498828306794167, -0.014124416746199131, -0.04016526788473129, 0.02361096441745758, -0.022490331903100014, -0.006651679053902626, 0.02611852064728737, 0.012482300400733948, 0.0010145336855202913, -0.0012059289729222655, 0.019760869443416595, -0.058761123567819595, -0.020504258573055267, -0.004291137680411339, -0.0036864394787698984, 0.009486548602581024, -0.022512521594762802, -0.004049812909215689, -0.007117684930562973, -0.01994949020445347, 0.028248833492398262, -0.010235486552119255, 0.006585107184946537, -0.018063275143504143, -0.010951138101518154, -0.015755437314510345, -0.0007947064586915076, -0.010795802809298038, 0.01359183806926012, -0.04464780166745186, 0.017896845936775208, 0.013869223184883595, 0.03574930876493454, -0.010607181116938591, 0.02511993609368801, -0.03368556872010231, 0.009386690333485603, 0.027449965476989746, 0.016964834183454514, -0.0058860983699560165, -0.011123117059469223, -0.003411828773096204, -0.056497666984796524, 0.009658526629209518, 0.04713316634297371, 0.02155832014977932, -0.015444766730070114, 0.0038140362594276667, -0.0007544857216998935, 0.007378426380455494, 0.021258745342493057, 0.029979711398482323, 0.0018182550556957722, 0.01807437092065811, 0.0049124788492918015, 0.023211531341075897, -0.0013030135305598378, 0.0064575099386274815, -0.017375363036990166, -0.0061523872427642345, -0.018795570358633995, -0.0013612642651423812, -0.00646860571578145, -0.020859310403466225, 0.003081741277128458, 0.007339592557400465, 0.006341008469462395, 0.013414312154054642, -0.035261113196611404, -0.0005499146645888686, -0.0016268598847091198, 0.005569879896938801, 0.02221294678747654, -0.012659826315939426, 0.021425174549221992, 0.03299765661358833, -0.017297694459557533, 0.010030222125351429, 0.007117684930562973, -0.009686265140771866, 0.08503498136997223, -0.004072003997862339, 0.0034645318519324064, -0.042961303144693375, -0.004987372551113367, -0.0077723124995827675, 0.019550057128071785, 0.000576959690079093, -0.01959443837404251, 0.004751595668494701, -0.002457626163959503, 0.022701144218444824, 0.015222858637571335, 0.016498828306794167, 0.016199251636862755, -0.00813291221857071, -0.026939578354358673, 0.04267282411456108, 0.030623244121670723, -0.024099161848425865, -0.0016601459356024861, 0.030401336029171944, 0.0014770722482353449, -0.006512986961752176, 0.03943297266960144, 0.013969081453979015, -0.011572479270398617, 0.028204452246427536, 0.006574011407792568, 0.023344675078988075, -0.014057843945920467, -0.027538727968931198, -0.016953738406300545, -0.002789100632071495, 0.000734375324100256, 0.007372878957539797, -0.011228522285819054, 0.00609691021963954, 0.023877253755927086, 0.021425174549221992, 0.025741277262568474, 0.006102458108216524, -0.002252361737191677, -0.0010006644297391176, 0.01776370033621788, -0.024831457063555717, 0.02253471314907074, 0.005802882835268974, -0.031266774982213974, 0.048464611172676086, 0.001794677460566163, 0.02254580892622471, -0.02436545118689537, 0.021857894957065582, -0.02773844636976719, 0.021092314273118973, -0.03282012790441513, 0.0012829031329602003, 0.010451845824718475, -0.004460342228412628, 0.0030650983098894358, -0.023233722895383835, 0.02004934847354889, -0.006579559296369553, 0.007123232819139957, -0.0252308901399374, -0.0010713974479585886, 0.00797202903777361, 0.0048958356492221355, 0.00846022553741932, -0.03887820616364479, -0.005489438306540251, -0.0138137461617589, 0.0024992339313030243, -0.038833823055028915, 0.0010623824782669544, -0.003689213190227747, 0.007051113061606884, 0.010351987555623055, -0.01467918511480093, -0.002228784142062068, -0.0204931627959013, 0.015056428499519825, -0.018262991681694984, -0.0015921867452561855, 0.036659128963947296, -0.00565864285454154, -0.006479701027274132, 0.004465889651328325, 0.03719170764088631, 0.003753011580556631, 0.030734198167920113, -0.00894287507981062, -0.016199251636862755, -0.025741277262568474, 0.030911723151803017, -0.05632013827562332, -0.024520786479115486, -0.009220259264111519, -0.05263647437095642, 0.021036837249994278, 0.010684848763048649, 0.009037185460329056, -0.045979246497154236, 0.008127364329993725, 0.005109421443194151, 0.007367331068962812, 0.008127364329993725, -0.030467908829450607, 0.0029569182079285383, -0.009974745102226734, 0.009142591618001461, 0.017042500898241997, 0.02893674559891224, 0.022346092388033867, -0.012449014000594616, 0.023344675078988075, -0.0014715245924890041, -0.022068707272410393, 0.0320434533059597, 0.027538727968931198, -0.03887820616364479, -0.03543863818049431, 0.00985824316740036, 0.00985269621014595, -0.0257856585085392, 0.026939578354358673, -0.011406049132347107, 0.030179427936673164, 0.006518534850329161, -0.0030012999195605516, -0.017375363036990166, -0.009747290052473545, 0.022124184295535088, 0.01839613728225231, 0.024764884263277054, 0.0026823077350854874, -0.006912420503795147, -0.014213179238140583, 0.013824841007590294, -0.0015006499597802758, -0.026717670261859894, 0.002830708399415016, 0.015267240814864635, 0.05272523686289787, 0.01916171796619892, -0.0005370856379158795, -0.01001912634819746, -0.030467908829450607, 0.017941227182745934, -0.03355242311954498, 0.019106240943074226, 0.02880360186100006, 0.011971913278102875, 0.041319187730550766, -0.026162901893258095, 0.011772196739912033, -0.02645138092339039, 0.025807850062847137, 0.02090369164943695, 0.002395214745774865, 0.015888581052422523, 0.019583342596888542, -0.05037301778793335, 0.0017683259211480618, -0.0017724867211654782, 0.014068939723074436, -0.024653930217027664, -0.024831457063555717, 0.027694063261151314, -0.0208149291574955, -0.02827102318406105, -0.017142359167337418, 0.018140943720936775, -0.007245282176882029, 0.002725302241742611, -0.026362618431448936, -0.002622670028358698, 0.03998774290084839, -0.031355537474155426, 0.015045332722365856, 0.009297926910221577, -0.0199383944272995, 0.01810765638947487, 0.012426823377609253, -0.01159466989338398, 0.021536128595471382, 0.020992456004023552, -0.010768064297735691, 0.047932032495737076, -0.012559968046844006, 0.0022343317978084087, 0.012371346354484558, 0.03120020404458046, 0.006274436600506306, 0.0021011873614042997, -0.01712016947567463, 0.03053448162972927, -0.0071065896190702915, -0.03304203599691391, -0.007944290526211262, 0.018174229189753532, 0.012837352231144905, -0.017253313213586807, 0.013736078515648842, -0.04065346717834473, 0.054456114768981934, -0.03759114071726799, 0.0044076391495764256, 0.02211308851838112, -0.033086419105529785, 0.00013817213766742498, -0.00029385415837168694, 0.06976773589849472, 0.002765523036941886, -0.01983853615820408, -0.010124532505869865, 0.03195469081401825, -0.0016476636519655585, -0.002386893145740032, 0.011694529093801975, 0.029291799291968346, -5.7904006098397076e-05, -0.006080267485231161, -0.030490098521113396, -0.031355537474155426, -0.03932201862335205, 0.03317518159747124, -0.010640467517077923, -0.002298130188137293, -0.0185070913285017, -0.009913720190525055, 0.0030318121425807476, 0.007245282176882029, -0.005131612531840801, 0.042295582592487335, -0.019583342596888542, -0.002514490159228444, -0.012116152793169022, 0.03164402022957802, -0.01408003456890583, -0.02165817841887474, 0.007944290526211262, -0.013392121531069279, -0.046201154589653015, -0.010357535444200039, -0.02654014527797699, 0.002188563346862793, 0.006074719596654177, 0.03435128927230835, -0.008216127753257751, -0.04065346717834473, 0.003949954640120268, -0.020404400303959846, 0.012837352231144905, 0.008793087676167488, -0.022068707272410393, -0.041541095823049545, 0.0064464146271348, -0.009064923971891403, -0.02687300555408001, 0.029646851122379303, -0.009996935725212097, -0.00018307374557480216, -0.0020041028037667274, 0.03120020404458046, -0.0211366955190897, -0.03463977202773094, -0.013736078515648842, 0.059737514704465866, -0.010124532505869865, -0.002906989073380828, 0.0038667393382638693, 0.003167730523273349, 0.017597269266843796, 0.0017724867211654782, 0.0422733910381794, 0.007755669299513102, 0.010224390774965286, -0.013824841007590294, 0.014956570230424404, -0.01056834775954485, 0.019439103081822395, 0.0059249321930110455, 0.002330029383301735, -0.014856711030006409, -0.0023896670900285244, -0.032110024243593216, 0.004499176051467657, -0.02219075709581375, -0.025186508893966675, -0.011228522285819054, 0.0019791380036622286, 0.009791671298444271, 0.03563835471868515, -0.049884822219610214, 0.024742692708969116, -0.006790371611714363, 0.009769480675458908, 0.006662774831056595, -0.0005762662040069699, -0.0011768036056309938, -0.012770780362188816, 0.0650189146399498, 0.009508739225566387, -0.016698544844985008, -0.01163905207067728, -0.021214362233877182, 0.003986014518886805, -0.008010863326489925, 0.024210115894675255, 0.023588774725794792, 0.03761333227157593, 0.026140710338950157, 0.005758501123636961, 0.013869223184883595, 0.03188811615109444, 0.02133641205728054, -0.02685081586241722, -0.03965488076210022, 0.0065962024964392185, 0.01808546669781208, 0.02090369164943695, 0.004418734461069107, -0.029713422060012817, -0.030157238245010376, 0.0758923888206482, -0.015200668014585972, 0.001628246740438044, 0.0023979886900633574, 0.02673986181616783, 0.011311737820506096, -0.014967665076255798, -0.002703111618757248, -0.004194052889943123, -0.047399457544088364, 0.02102574147284031, 0.0020734488498419523, 0.0006594815640710294, 0.008277151733636856, -0.015056428499519825, -0.014734662137925625, -0.00611910130828619, -0.022512521594762802, -0.01658759079873562, -0.02222404256463051, 0.06217849999666214, -0.002377184806391597, 0.00758369080722332, -0.025275271385908127, -0.0132145956158638, -0.03111143968999386, -0.028093498200178146, 0.007600334007292986, 0.03561616316437721, 0.03543863818049431, -0.01055170502513647, 0.000774596119299531, -0.04615677520632744, -0.010629372671246529, 0.02545279823243618, 0.020604116842150688, 0.025208698585629463, -0.025807850062847137, -0.03304203599691391, -0.02816006913781166, 0.016754021868109703, -0.006085814908146858, -0.018018893897533417, -0.0040830993093550205, 0.019971679896116257, -0.03237631544470787, 0.010646015405654907, 0.014945474453270435, -0.026273855939507484, -0.02016030251979828, -0.0044464729726314545, 0.01895090565085411, -0.002284260932356119, 0.008748705498874187, -0.02210199274122715, -0.014623708091676235, -0.062444787472486496, -0.0007856914889998734, -0.044026460498571396, -0.020870406180620193, 0.0184183269739151, -0.015644483268260956, 0.007433903403580189, 0.06595093011856079, 0.0013876156881451607, 0.011905340477824211, 0.017719319090247154, 0.030268192291259766, 0.014767948538064957, -0.00920361652970314, 0.009020542725920677, 0.012171629816293716, -0.031799353659152985, 0.006080267485231161, 0.0010998293291777372, 0.012804066762328148, 0.004665606655180454, 0.00010887339885812253, 0.014668090268969536, 0.006696060765534639, -0.003231528913602233, -0.007994219660758972, -0.010573895648121834, 0.023566583171486855, 0.019572246819734573, 0.0036531533114612103, 0.005572653841227293, 0.05361286923289299, -0.014734662137925625, -0.023544393479824066, 0.05276961997151375, -0.019206099212169647, -0.0032287549693137407, -0.015766533091664314, 0.031222393736243248, 0.02186899073421955, -0.029402751475572586, 0.02287866920232773, 0.0052592093124985695, -0.008826373144984245, 0.02134750783443451, -0.008243866264820099, -0.04189614951610565, 0.02352220192551613, 0.02190227620303631, 0.02372191846370697, -0.01516738161444664, 0.011627956293523312, 0.00019954344315920025, -0.0009313183254562318, -0.012116152793169022, -1.1810509931819979e-05, -0.013891413807868958, -0.0128928292542696, 0.027915971353650093, 0.001446559908799827, -0.018041085451841354, 0.03823467344045639, 0.00797202903777361, -0.0011962205171585083, 0.0011795774335041642, -0.025186508893966675, 0.008155102841556072, 0.0005391660379245877, -0.00560039235278964, -0.0018293504836037755, 0.0050594923086464405, -0.001131035154685378, 0.005034527741372585, -0.011139759793877602, -0.01831846870481968, -0.01024658139795065, 0.029824376106262207, -0.015866391360759735, -0.02090369164943695, -0.011960817500948906, 0.017907939851284027, -0.01202739030122757, 0.019661009311676025, -0.002765523036941886, 0.0012593254214152694, 8.676932338858023e-05, -0.005919384304434061, 0.0031649565789848566, -0.008532346226274967, -0.023144958540797234, -0.024631740525364876, 0.008965065702795982, -0.031067058444023132, -0.004130254499614239, -0.020970264449715614, -0.011372762732207775, -0.012837352231144905, -0.014568231999874115, -0.026917386800050735, -0.008266056887805462, -0.004607355687767267, -0.0043271975591778755, 0.013514170423150063, -0.05001796409487724, 0.010901208966970444, 0.006579559296369553, -0.024076970294117928, 0.01094559021294117, 0.013957985676825047, 0.028847983106970787, -0.021613797172904015, -0.03932201862335205, -0.007755669299513102, 0.029979711398482323, -0.004829263314604759, 0.018695712089538574, 0.016820592805743217, 0.008277151733636856, -0.0008598918211646378, 0.016543209552764893, -0.021525032818317413, -0.002077609533444047, -0.0011053771013393998, -0.027427775785326958, 0.014257561415433884, 0.003581033321097493, -0.017808081582188606, 0.02285647951066494, -0.032864511013031006, 0.005963766016066074, -0.014645899645984173, -0.020870406180620193, 0.015633387491106987, -0.017730414867401123, -0.0009181425557471812, -0.0014673637924715877, -0.013636220246553421, -0.021147791296243668, -0.014645899645984173, -0.025807850062847137, -0.014878902584314346, 0.004291137680411339, 0.04171862080693245, -0.004443699028342962, -0.005242566112428904, -0.01342540793120861, 0.012260393239557743, 0.023477820679545403, -0.011860959231853485, 0.0036725702229887247, 0.017597269266843796, 0.012815161608159542, 0.005458925850689411, -0.01591077260673046, -0.005323007702827454, 0.037324853241443634, 0.0009805540321394801, 0.0024201793130487204, -0.004859775770455599, 0.0012267327401787043, 0.008144007995724678, -0.0565420463681221, 0.002812678460031748, 0.02209089882671833, -0.0016060560010373592, 0.015544624999165535, 0.006629488430917263, 0.021624892950057983, -0.006790371611714363, 0.011311737820506096, 0.015622292645275593, 0.007173161953687668, -0.03643722087144852, -0.018029989674687386, -0.020748356357216835, -0.002378571778535843, 0.005112195387482643, 0.011145307682454586, 0.03541644662618637, -0.014435087330639362, 0.002361928578466177, 0.013358835130929947, -0.010740325786173344, -0.012948306277394295, 0.0010374179109930992, 0.0019458519527688622, -0.010429655201733112, 0.02511993609368801, 0.023233722895383835, -0.027050532400608063, -0.012216011062264442, 0.00339795951731503, -0.007101042196154594, -0.03430690988898277, 0.0004708601045422256, -0.02318933978676796, 0.00990262534469366, 0.000313964526867494, 0.014934378676116467, -0.044048652052879333, -0.0026725991629064083, 0.0026101877447217703, 0.0012926115887239575, 0.0070843989960849285, -0.007489380426704884, 0.0011157789267599583, 0.015267240814864635, 0.01115640252828598, -0.010107889771461487, -0.00304845510981977, -0.022723333910107613, -0.010191105306148529, -0.002585223177447915, 0.0022315578535199165, -0.013025973923504353, 0.008499059826135635, -0.000711491156835109, 0.008144007995724678, -0.016665257513523102, -0.007206448353827, -0.02427668683230877, -0.0014215953415259719, 0.00910930521786213, -0.02124764956533909, 0.012548873201012611, 0.021147791296243668, -0.004188505467027426, -0.014546040445566177, -0.01024103444069624, -0.021602701395750046, -0.00361709319986403, 0.02156941592693329, -0.010013578459620476, -0.014446182176470757, 0.00551995076239109, -0.004404865205287933, -0.031000487506389618, 0.04300568625330925, 0.030623244121670723, 0.016931546851992607, 0.007073303684592247, 0.0014257561415433884, -0.002116443356499076, -0.004524140618741512, 0.0037030824460089207, -0.019039668142795563, -0.038412198424339294, 0.02069288119673729, 0.008027506060898304, 0.012593254446983337, -0.015311622060835361, 0.02034892328083515, -0.011472621001303196, -0.006585107184946537, -3.471639865892939e-05, -0.003051229054108262, 0.006085814908146858, 0.006402033381164074, 0.007844432257115841, 0.0349060595035553, -0.0021344732958823442, 0.006829205434769392, -0.024232305586338043, 0.005508855450898409, -0.013414312154054642, 0.0023147733882069588, 0.009536477737128735, 0.02341124787926674, -0.02296743355691433, 0.010401916690170765, -0.0032426242250949144, -0.017286598682403564, 0.04256187006831169, 0.028559504076838493, -0.0018473804229870439, 0.02059302106499672, -0.0033397087827324867, -0.014268656261265278, -0.003833453170955181, 0.0071065896190702915, -0.020992456004023552, 0.006929063703864813, 0.013525266200304031, -0.028137879446148872, -0.005863907281309366, -0.0014964891597628593, -0.016055012121796608, -0.018229706212878227, 0.011627956293523312, 0.014568231999874115, 0.027228057384490967, -0.0025658062659204006, 0.017519602552056313, -0.012326965108513832, 0.016809498891234398, 0.0017489090096205473, -0.03783524036407471, 0.011289547197520733, -0.002870929194614291, 0.0034894964192062616, 0.006285531911998987, 0.004435377661138773, -0.021469557657837868, -0.007012279238551855, -0.006895777769386768, 0.010374178178608418, -0.013669505715370178, -0.0140911303460598, -0.02469831146299839, -0.0374801866710186, 0.008105173707008362, -0.0001692045188974589, 0.014068939723074436, -0.025719087570905685, 0.0006632955628447235, 0.018174229189753532, -0.0018196420278400183, 0.01440180093050003, 0.007755669299513102, -0.02645138092339039, 0.017508506774902344, 0.006485248450189829, -0.008155102841556072, 0.008909588679671288, -0.003969371784478426, -0.032442886382341385, 0.021602701395750046, -0.004216243512928486, 0.014767948538064957, 0.013957985676825047, 0.009497643448412418, -0.020992456004023552, -0.027383392676711082, -0.006779276300221682, 0.023034004494547844, -0.011550288647413254, 0.004257851280272007, 0.0370141826570034, -0.004424281883984804, -0.00990262534469366, -0.005736310500651598, 0.007334045134484768, 0.007239734288305044, -0.007944290526211262, 0.004149671643972397, -0.012093962170183659, -0.004998467862606049, -0.01268201693892479, -0.0038944778498262167, -0.023788491263985634, 0.010379726067185402, 0.019350338727235794, 0.04495847225189209, -0.014934378676116467, -0.011339476332068443, -0.00812181644141674, 0.006035885773599148, 0.02111450396478176, 0.0013779072323814034, -0.009453262202441692, 0.01614377461373806, 0.013148022815585136, 0.004155219066888094, -0.013991272076964378, -0.013946890830993652, 0.011927532032132149, 0.004823715891689062, -0.017464125528931618, 0.00145488150883466, -0.004285589791834354, -0.010207748040556908, -0.024587357416749, -0.015777627006173134, 0.006357651669532061, -0.019783059135079384, -0.03814591094851494, -0.002016585087403655, -0.003983240574598312, -0.01191643625497818, -0.03588245436549187, 0.0011885924031957984, -0.006535177584737539, 0.010840184055268764, 0.00948100071400404, 0.03313079848885536, 0.020448781549930573, -0.02383287250995636, -0.04178519546985626, 0.015311622060835361, 0.0039444067515432835, 0.00018550085951574147, -0.011838768608868122, 0.006917968392372131, 0.0043715788051486015, 0.018817761912941933, 0.0018265766557306051, 0.017907939851284027, -0.022024326026439667, -0.023855064064264297, -0.002836256055161357, -0.014224275015294552, 0.009608597494661808, 0.008976160548627377, -0.005758501123636961, 0.0021719203796237707, -0.02327810414135456, -0.015866391360759735, 0.02902550995349884, -0.02287866920232773, 0.004368805326521397, -0.013037069700658321, -0.003625414799898863, 0.019849631935358047, -0.01359183806926012, -0.009935910813510418, 0.00941997580230236, -0.026162901893258095, -0.006612845230847597, -0.023034004494547844, 0.012759684585034847, -0.0006372907664626837, -0.012482300400733948, 0.009342308156192303, 0.0053618415258824825, 0.023011814802885056, 0.005289721768349409, -0.02112559974193573, -0.005550462752580643, 0.01960553415119648, -0.01045739371329546, -0.018440518528223038, -0.030356954783201218, -0.03184373676776886, -0.00525088794529438, -0.012815161608159542, 0.022789906710386276, -0.019250480458140373, 0.03182154521346092, -0.0015325491549447179, -0.019894013181328773, 0.00709549430757761, -0.002188563346862793, -0.004285589791834354, 0.027028340846300125, 0.012926115654408932, -0.01636568270623684, -0.0036087718326598406, -0.008537893183529377, 0.03696979954838753, 0.007944290526211262, 0.009175878018140793, -0.011738910339772701, 0.010329796932637691, -0.00877089612185955, -0.02620728313922882, 0.048597756773233414, -0.014734662137925625, 0.020837120711803436, -0.024409832432866096, -0.017364267259836197, 0.0003384090377949178, 0.006762633100152016, -0.031155822798609734, 0.01602172665297985, -0.009364498779177666, -0.009553120471537113, 0.002893119817599654, 0.02112559974193573, -0.0025977054610848427, -0.002126151928678155, 0.012848448008298874, -0.01500095147639513, 0.003830679226666689, -0.005417318549007177, -0.021358603611588478, 0.00845467858016491, 0.003877834649756551, 0.0025810622610151768, -0.01788575015962124, -0.046955641359090805, -0.00189592270180583, 0.007051113061606884, 0.024520786479115486, -0.0008148168562911451, 0.0009361725533381104, 0.023788491263985634, -0.024298878386616707, 0.021502843126654625, 0.011772196739912033, 0.023855064064264297, 0.014124416746199131, -0.020237969234585762, 0.0013078677002340555, 0.012693112716078758, -0.017297694459557533, -0.0011483716079965234, 0.03577150031924248, 0.028004733845591545, -0.007872170768678188, 0.0016185382846742868, 0.01809656247496605, -0.007239734288305044, -0.012737493962049484, 0.011117569170892239, -4.936576442560181e-05, 0.00646860571578145, 0.005428413860499859, 0.0066794175654649734, -0.0019930072594434023, -0.010573895648121834, 0.020104825496673584, -0.03077857941389084, -0.00894287507981062, 0.010751421563327312, -0.0005169752985239029, -0.00985824316740036, -0.00937004666775465, -0.008515702560544014, -0.025275271385908127, -0.011683433316648006, 0.0046295467764139175, 0.013780459761619568, 0.015577911399304867, -0.03974364325404167, -0.0392332561314106, -0.009841600432991982, 0.00044693570816889405, 0.004923574160784483, -0.007489380426704884, -0.02024906501173973, 0.0073284972459077835, 0.018684616312384605, -0.010590538382530212, 0.024831457063555717, 0.018041085451841354, -0.0006924209301359951, 0.011333928443491459, -0.01872899755835533, 0.002945822896435857, 0.010801350697875023, -0.00017327860405202955, 0.002655956195667386, 0.007300758734345436, -0.004646189510822296, 0.010884566232562065, -0.01602172665297985, 0.007483832538127899, -0.010806898586452007, -0.02383287250995636, 0.008892945945262909, -0.006551820784807205, 0.0032759103924036026, -0.03708075359463692, 0.009264640510082245, -0.0024604001082479954, 0.013736078515648842, -0.017475221306085587, -0.024587357416749, -0.034284718334674835, -0.009869338944554329, -0.01332554966211319, 0.019461292773485184, 0.01981634460389614, -0.0059304796159267426, -0.006995636038482189, -0.01766384206712246, -0.01094004325568676, -0.01061827689409256, -0.011328381486237049, -0.007877718657255173, 0.0011032966431230307, -0.008582275360822678, 0.044048652052879333, -0.009137043729424477, 0.0217802282422781, -0.032753556966781616, 0.007167614530771971, 0.003012395231053233, -0.01896200142800808, -0.004299459047615528, 0.0010845732176676393, -0.03000190295279026, -0.016199251636862755, -0.016099393367767334, -0.020548639819025993, 0.0005169752985239029, 0.004640642087906599, -0.004574069753289223, 0.010257677175104618, -0.011583575047552586, -0.0010055185994133353, -0.006074719596654177, 0.035815879702568054, -0.0295580867677927, 0.004227339290082455, 0.008687681518495083, -0.012049580924212933, -0.030712006613612175, -0.001020081341266632, -0.01723112165927887, 0.010651563294231892, 0.0010533675085753202, -0.00020613132801372558, -0.03346366062760353, 0.047621361911296844, -0.008515702560544014, 0.02207980304956436, -0.008426940068602562, -0.028115687891840935, -0.007567048072814941, 0.006601749919354916, 0.007938743568956852, -0.00872096698731184, -0.02707272209227085, 0.007506023161113262, 0.010978876613080502, 0.02318933978676796, 0.011783291585743427, -0.04289473220705986, -0.0342625267803669, 0.01272639911621809, 0.004119159188121557, 0.0011872054310515523, -0.028093498200178146, 0.011971913278102875, -0.009353403933346272, -0.006940159015357494, -0.004693345166742802, -0.03779085725545883, -0.012804066762328148, 0.032775748521089554, -0.011517002247273922, -0.004155219066888094, 0.041984912008047104, 0.022490331903100014, 0.021835703402757645, 0.013414312154054642, 0.005375710781663656, -0.017386456951498985, -0.020726166665554047, 0.008693228475749493, -0.006507439538836479, -0.0027114329859614372, 0.0025699669495224953, -0.025408416986465454, -0.008704324252903461, -0.010285415686666965, 0.01733097992837429, 0.02589661255478859, 0.019339244812726974, 0.01300378330051899, -0.017475221306085587, -0.006346556358039379, -0.025408416986465454, 0.013336644507944584, 0.019894013181328773, 0.011827672831714153, -0.01626582443714142, 0.030356954783201218, 0.03685884550213814, -0.026695480570197105, 0.010745873674750328, 0.005031753797084093, -0.030179427936673164, 0.007838884368538857, 0.019450198858976364, -0.019039668142795563, -0.020515354350209236, 0.012382442131638527, 0.021580509841442108, -0.0064186761155724525, -0.012593254446983337, 0.002267617965117097, 0.005869455169886351, -0.02034892328083515, 0.007611429318785667, 0.04287254065275192, 0.030090665444731712, -0.012105057947337627, -0.004923574160784483, -0.01928376778960228, -0.014124416746199131, 0.008315986022353172, 0.013059260323643684, 0.0030068475753068924, 0.009819409810006618, -0.007051113061606884, -0.0002675026480574161, 0.05112750455737114, -0.013303358107805252, 0.0188288576900959, -0.015156286768615246, 0.028847983106970787, 0.01753069832921028, 0.013347740285098553, -0.021480651572346687, -0.014046749100089073, -0.013680601492524147, 0.005553236696869135, 0.0038667393382638693, -0.008820825256407261, -0.006451962515711784, 0.02609632909297943, 0.014701375737786293, -0.02383287250995636, -0.0027447191532701254, 0.010185557417571545, -0.009647431783378124, -0.014213179238140583, -0.005852811969816685, -0.005103874020278454, 0.003248171880841255, -0.0064131286926567554, -0.0033397087827324867, -0.003295327303931117, 0.002710046013817191, -0.01645444519817829, -0.016177061945199966, 0.023455629125237465, 0.013802650384604931, -0.008892945945262909, 0.006230054888874292, -0.009708455763757229, -0.0018848273903131485, -0.006363199558109045, -0.004590712953358889, -0.009242449887096882, -0.018584758043289185, -0.019638819620013237, -0.008754253387451172, -0.01797451265156269, 0.025297462940216064, 0.0038972515612840652, 0.005858359858393669, 0.00017821951769292355, 0.031178012490272522, 0.02350001037120819, -0.01430194266140461, 0.0026725991629064083, 0.0006109392852522433, 0.0007676614914089441, -0.021358603611588478, -0.008010863326489925, -0.0217802282422781, 0.03588245436549187, 0.009331213310360909, 0.0028251607436686754, 0.008654395118355751, -0.0064131286926567554, -0.0003335548099130392, 0.012271488085389137, 0.008321533910930157, 0.0007537922356277704, 0.0034950440749526024, 0.0030012999195605516, -0.013636220246553421, -0.025186508893966675, -0.02740558423101902, -0.012759684585034847, 0.016820592805743217, -0.00709549430757761, 0.004094194620847702, 0.003020716831088066, 0.024232305586338043, 0.006402033381164074, 0.007899909280240536, -0.027117105200886726, 0.0016102168010547757, 0.003808488603681326, -0.0014840068761259317, -0.0017281051259487867, 0.0050594923086464405, 0.01131728570908308, 0.030046284198760986, -0.011189688928425312, 0.004085873253643513, -0.01614377461373806, -0.007872170768678188, 0.010490680113434792, -0.00834372453391552, -0.021913371980190277, 0.00888185016810894, -0.0004975583869963884, 0.02101464569568634, -0.0017835820326581597, -0.00860446598380804, 0.026517953723669052, 0.012437919154763222, -0.01110647339373827, 0.026251664385199547, 0.019771963357925415, -0.008360367268323898, 0.0037030824460089207, 0.004715535789728165, -0.022068707272410393, -0.01446837279945612, 0.0036476056557148695, 0.010734778828918934, 0.004876418504863977, -0.022057611495256424, 0.013148022815585136, -0.014423991553485394, 0.014368514530360699, -0.02168036811053753, 0.008970613591372967, 0.011860959231853485, -0.0027849399484694004, -0.006712703965604305, 0.04691125825047493, -0.009120400995016098, 0.008010863326489925, 0.010679301805794239, -0.0048736450262367725, 0.01560010202229023, 0.006207864265888929, 0.010163366794586182, -0.019095145165920258, 0.000932011753320694, -0.028470739722251892, -0.00031587155535817146, -0.0010942816734313965, 0.002346672583371401, 0.013691696338355541, 0.019416911527514458, -0.02057083137333393, 0.0003318211529403925, -0.001754456665366888, -0.0007135714986361563, 0.026473572477698326, 0.0022065932862460613, -0.01094559021294117, -0.003839000826701522, 0.013691696338355541, -0.02070397511124611, -0.018174229189753532, 0.009725099429488182, -0.00723418639972806, 0.020127015188336372, -0.0030012999195605516, -0.018063275143504143, -0.01408003456890583, 0.003300874959677458, 0.015533529222011566, 0.007600334007292986, 0.004612903576344252, 0.0011046836152672768, -0.014601517468690872, 0.021402984857559204, -0.0006230748258531094, 0.008626656606793404, 0.007666906341910362, 0.004843132570385933, -0.0015630613779649138, 0.009702907875180244, -0.006341008469462395, -0.0030234905425459146, -0.0024243402294814587, 0.00551995076239109, -0.00883192103356123, 0.00871542003005743, 0.020770547911524773, 0.009170330129563808, -0.019261576235294342, 0.0075504048727452755, 0.0061912210658192635, -0.01098997239023447, 0.004948538728058338, 0.02285647951066494, -0.00871542003005743, -0.01202739030122757, 0.0020360019989311695, -0.01851818710565567, 0.005508855450898409, -0.014379610307514668, -0.011234070174396038, -0.005006789229810238, -0.001295385416597128, -0.000398740143282339, -0.012548873201012611, -0.003650379367172718, 0.002732236869633198, -0.008166198618710041, 0.00839365366846323, -0.009736194275319576, -0.01688716560602188, 0.022789906710386276, -0.005184315610677004, 0.009924815967679024, 0.01342540793120861, 0.021203268319368362, -0.0011566932080313563, -0.03348585218191147, 0.01212724857032299, 0.014601517468690872, 0.0013855353463441133, 0.0014770722482353449, 0.005852811969816685, -0.017275504767894745, -0.012105057947337627, 0.005001241806894541, -0.025541560724377632, -0.009292379021644592, -0.00823277048766613, -0.015455861575901508, 0.019450198858976364, -0.013780459761619568, -0.011117569170892239, -0.022623475641012192, 0.0038195839151740074, -0.016055012121796608, 0.023255912587046623, 0.011361666955053806, -0.0004989453009329736, -0.008687681518495083, -0.017730414867401123, 0.00985269621014595, -0.003483948763459921, -0.019017478451132774, 0.00018203354557044804, -0.0035838072653859854, 0.0014923283597454429, 0.023744110018014908, -0.010657111182808876, 0.016731830313801765, 0.010479584336280823, -0.008055244572460651, 0.025541560724377632, -0.00774457398802042, -0.006091362796723843, 0.01446837279945612, -0.007028921972960234, -0.008937327191233635, -0.012915019877254963, 0.008704324252903461, -0.0020027158316224813, 0.01765274628996849, 0.006546273361891508, 0.005184315610677004, -0.01569996029138565, 0.014989855699241161, 0.015178477391600609, 0.020604116842150688, -0.011938626877963543, 0.0003292206674814224, -0.001153919380158186, 0.012304774485528469, 0.0036725702229887247, 0.0017128490144386888, 0.011616861447691917, -0.02645138092339039, -0.007361783646047115, -0.01939472183585167, -0.0027058853302150965, 0.010440750978887081, -0.020537545904517174, -0.007228638976812363, 0.016276920214295387, 0.0019181135576218367, 0.0014326907694339752, 0.015333812683820724, -0.002664277795702219, -0.02576346881687641, 0.035483021289110184, -0.009164782240986824, 0.008421392180025578, 0.015955153852701187, 0.00457961717620492, -0.017142359167337418, 0.004449246451258659, 0.007322949822992086, -0.008709872141480446, 0.01928376778960228, 0.0037474639248102903, -0.007872170768678188, 0.04138576239347458, -0.02252361737191677, -0.012249297462403774, 0.005669738166034222, 0.014224275015294552, 0.017197836190462112, 0.020604116842150688, -0.0048736450262367725, 0.0047349524684250355, -0.004768238868564367, -0.008216127753257751, 0.0208149291574955, -0.009508739225566387, -0.0009424136951565742, -0.004460342228412628, 0.019428007304668427, 0.005123290698975325, -0.01477904338389635, -0.031688399612903595, -1.3890893569623586e-05, 0.021369697526097298, -0.005137159954756498, -0.010867922566831112, 0.016964834183454514, 0.004773786291480064, -0.007611429318785667, -0.0021344732958823442, -0.002750266809016466, 0.009675169363617897, 0.00444092508405447, -0.01511190552264452, -0.0037252733018249273, -0.007345140445977449, -0.0005925625446252525, 0.0034173764288425446, 0.0028515122830867767, -0.0140911303460598, 0.011045449413359165, -0.0037835240364074707, -0.006951254326850176, -0.0075504048727452755, -0.015245049260556698, 0.028626075014472008, 0.011311737820506096, 0.006668322253972292, 0.007650263141840696, 0.014601517468690872, -0.005364615470170975, 0.005114969331771135, 0.0016157644568011165, -0.007544856984168291, 0.012881734408438206, -0.015023142099380493, -0.029269607737660408, -0.005408996716141701, -0.03483948856592178, -0.011938626877963543, 0.008759801276028156, 0.008726514875888824, -0.007689096964895725, -0.0005003322148695588, -0.004235660657286644, 0.01831846870481968, 0.0025491630658507347, -0.010840184055268764, -0.024831457063555717, 0.000798173772636801, 0.01625472865998745, 0.010124532505869865, -0.012837352231144905, 0.011406049132347107, -0.01272639911621809, -0.012926115654408932, -0.012049580924212933, 0.019239386543631554, -0.0017905166605487466, 0.0120162945240736, -0.02200213447213173, -0.020104825496673584, 0.032021261751651764, 0.0027044983580708504, -0.021092314273118973, -0.009991387836635113, 0.017619460821151733, -0.016975928097963333, -0.027472157031297684, 0.004496402107179165, 0.014734662137925625, -0.001160853891633451, -0.00017319191829301417, 0.0025893838610500097, 0.006668322253972292, 0.01872899755835533, -0.013503075577318668, 0.0059082889929413795, -0.003009621286764741, 0.03486168012022972, 0.0027918745763599873, 0.021957753226161003, -0.020204683765769005, -0.011761100962758064, 0.023144958540797234, -0.01311473734676838, 0.011023257859051228, 0.006873586680740118, 0.0122936787083745, -0.026473572477698326, -0.01022993866354227, -0.00980276707559824, 0.002542228437960148, -0.012116152793169022, 0.0004750208754558116, -0.008826373144984245, 0.0023744108621031046, -0.002686468418687582, 0.035704925656318665, 0.03242069482803345, -0.006524082273244858, 0.0006411048234440386, 0.0008023345144465566, 0.002805743832141161, -0.005206506233662367, 0.012005199678242207, -0.023544393479824066, -0.013780459761619568, -0.02620728313922882, 0.008887398056685925, 0.02102574147284031, -0.019694296643137932, -0.012815161608159542, -0.012704208493232727, 0.0061523872427642345, -0.019627723842859268, 0.005486664362251759, 0.019982775673270226, 0.002716980641707778, 0.005622582975775003, 0.021214362233877182, -0.020382210612297058, 0.015777627006173134, 0.0190618596971035, -0.011827672831714153, 0.009469904936850071, -0.016876069828867912, 0.013536361046135426, 0.01050732284784317, 0.00023317630984820426, 0.01636568270623684, -0.007261924911290407, -0.01612158492207527, 0.045313525944948196, -0.022124184295535088, -0.011300642974674702, 0.013247882016003132, 0.0002827587886713445, 0.015189573168754578, 0.006463057827204466, -0.0037252733018249273, 0.0009604436927475035, 0.029602469876408577, 0.009336761198937893, 0.0361931249499321, 0.02631823718547821, -0.015145190991461277, 0.004787655547261238, -0.017397552728652954, -0.011772196739912033, 0.00500956317409873, -0.0007676614914089441, -0.0029763351194560528, 0.015123000368475914, 0.014656994491815567, -0.013924699276685715, 0.0029264059849083424, 0.005880550481379032, -0.0066405837424099445, 0.02935837022960186, 0.014235369861125946, 0.012049580924212933, 0.016376778483390808, 0.010790254920721054, -0.005575427319854498, -0.009542025625705719, -0.009930363856256008, 0.009780575521290302, -0.007167614530771971, 0.010934495367109776, -0.012049580924212933, 0.004263399168848991, 0.005106647964566946, 0.015433670952916145, 0.004562974441796541, -0.0002551937068346888, 0.004266173113137484, -0.0035921286325901747, 0.022490331903100014, 0.016443351283669472, 0.008804182521998882, -0.020748356357216835, -0.004235660657286644, -0.008177293464541435, 0.0008806956466287374, -0.010851279832422733, 0.0008439422235824168, -0.008626656606793404, -0.012271488085389137, 0.02751653827726841, -0.0368366539478302, -0.014068939723074436, 0.00011251406976953149, -0.015899676829576492, -0.022068707272410393, 0.029757805168628693, 0.014690280891954899, -0.003372994950041175, 0.03120020404458046, -0.0019305958412587643, 0.025519369170069695, 0.002378571778535843, -0.02211308851838112, -0.009569764137268066, 0.029003318399190903, 0.009669622406363487, 0.0021857894025743008, -0.01342540793120861, -0.02827102318406105, -0.017264408990740776, 0.016543209552764893, 0.02536403387784958, -0.002377184806391597, 0.007112137507647276, 0.00872096698731184, 0.004313328303396702, -0.004743274301290512, 0.004188505467027426, 0.0073506878688931465, 0.025630323216319084, 0.010324249044060707, -0.002876476850360632, 0.0002063046849798411, -0.015344908460974693, 0.00802195817232132, 0.024343259632587433, -0.01788575015962124, -0.0134919798001647, 0.017175644636154175, -0.005295269191265106, -0.024942411109805107, 0.00862110871821642, 0.006019242573529482, 0.00959750171750784, -0.0024701086804270744, -0.01440180093050003, 0.018052181228995323, 0.03131115809082985, -0.007916552014648914, -0.02307838760316372, 0.0008640525629743934, 0.020016063004732132, 0.018606949597597122, 0.00409142067655921, -0.010152271017432213, 0.0077945031225681305, -0.01219382043927908, -0.009114853106439114, 0.013247882016003132, 0.0015061976155266166, 0.04486970975995064, -0.008354819379746914, 0.03155525401234627, -0.006868039257824421, 0.000640064652543515, -0.0072841159999370575, 0.01500095147639513, 0.0138137461617589, -0.011472621001303196, -0.008698776364326477, 0.019006382673978806, 0.0006820190465077758, -0.013680601492524147, 0.02534184418618679, 0.00011312084825476632, 0.0037890716921538115, 0.01115640252828598, 0.0001583691919222474, 0.013236786238849163, -0.00806634034961462, 0.026562334969639778, 0.014257561415433884, 0.01699811965227127, 0.004807072691619396, 0.0037862977478653193, -0.010174461640417576, -0.01398017629981041, -0.011727814562618732, 0.021192172542214394, 0.0257856585085392, -0.018906524404883385, -0.00851015467196703, -0.008377010934054852, -0.029824376106262207, 0.03415157273411751, -0.023233722895383835, 0.00065982824889943, -0.0134919798001647, 0.013858127407729626, 0.01896200142800808, -0.009669622406363487, 0.033618997782468796, -0.0006546273361891508, -0.027805017307400703, -0.009897077456116676, 0.005614261142909527, 0.006302174646407366, 0.006019242573529482, 0.010335344821214676, -0.010601634159684181, 0.014179893769323826, -0.006651679053902626, 0.021314222365617752, 0.003963823895901442, 0.006662774831056595, 0.0015200668713077903, -0.00037169517599977553, 0.0196166280657053, -0.019749773666262627, 0.002876476850360632, -0.0331529900431633, 0.0019555604085326195, -0.016110489144921303, 0.008754253387451172, -0.008981708437204361, 0.008548988960683346, 0.009702907875180244, 0.0035838072653859854, 0.015466957353055477, 0.00980276707559824, 0.007600334007292986, -0.012282583862543106, 0.011661242693662643, -0.0120162945240736, 0.0037585594691336155, -0.004343840759247541, -0.0181853249669075, 0.008110721595585346, -0.000505533185787499, 0.010401916690170765, 0.010912304744124413, 0.024454213678836823, -0.001596347545273602, 0.0022565226536244154, -0.003833453170955181, 0.010451845824718475, -0.012393537908792496, 0.007112137507647276, 0.010690396651625633, 0.018274087458848953, 0.01055725198239088, -0.0002681961050257087, -0.01591077260673046, 0.0014923283597454429, -0.015544624999165535, 0.003691987134516239, 0.004291137680411339, -0.005367389414459467, 0.002440983196720481, -0.007983124814927578, 0.0027086592745035887, -0.017608365043997765, -0.037302661687135696, -0.023633155971765518, 0.018163133412599564, 0.0007662745774723589, 0.00020751824195031077, -0.00517044635489583, -0.0040248483419418335, 0.010496228002011776, -0.021746940910816193, 0.008843016810715199, -0.021746940910816193, 0.0013418473536148667, 0.019672105088829994, 0.01391360443085432, 0.014856711030006409, 0.00899280421435833, -0.0033452564384788275, 0.02045987732708454, -0.011838768608868122, 0.023144958540797234, -0.0022495880257338285, -0.02232390083372593, -0.018795570358633995, 0.004196826834231615, 0.009769480675458908, -0.006546273361891508, -0.006046981085091829, 0.004898609593510628, 0.008432487025856972, -0.0019555604085326195, -0.0059249321930110455, -0.015034237876534462, 0.00646860571578145, 0.021591605618596077, -0.01756398379802704, 0.015333812683820724, -0.028537312522530556, -0.020726166665554047, 0.008859659545123577, -0.006768180523067713, 0.008682133629918098, 0.01018000952899456, 0.0013709727209061384, -0.0193836260586977, 0.01897309720516205, 0.005719667300581932, -0.01115640252828598, 0.022468140348792076, -0.01110647339373827, -0.0075725954957306385, -0.003470079507678747, -0.016199251636862755, 0.025275271385908127, -0.0028542859945446253, 0.0036059978883713484, 0.003736368613317609, -0.001517292927019298, 0.008404749445617199, -0.02980218641459942, 0.0030373597983270884, -0.004352162126451731, -0.009009446948766708, -0.0214584618806839, -0.00769464485347271, 0.02068178541958332, 1.999118467210792e-05, 0.004035943653434515, 0.019261576235294342, 0.005433961283415556, -0.006341008469462395, 0.005472795106470585, -0.019993871450424194, -0.009281284175813198, -0.0007849980029277503, -0.0018681843066588044, -0.006784823723137379, -0.024942411109805107, 0.004338292870670557, -0.025408416986465454, 0.0037724284920841455, -0.04628991708159447, 0.0025616453494876623, 0.0006511600222438574, -0.024210115894675255, -0.003012395231053233, -1.4053423001314513e-05, 0.01927267201244831, 0.0019805249758064747, 0.016765115782618523, -0.023921635001897812, 0.012948306277394295, -0.01743084006011486, -0.021469557657837868, -0.008876302279531956, 0.0024784300476312637, 0.010313154198229313, 0.003270362736657262, -0.027028340846300125, 0.004893061704933643, 0.00479875085875392, 0.01105654425919056, -0.028115687891840935, -0.0019611080642789602, -0.014557136222720146, -0.005847264546900988, 0.022146373987197876, -0.018440518528223038, 0.016987023875117302, 0.007689096964895725, -0.01446837279945612, -0.013858127407729626, 0.016809498891234398, 0.010279867798089981, 4.143430123804137e-05, -0.014878902584314346, 0.009652978740632534, -0.019971679896116257, 0.028026925399899483, -0.0122936787083745, -0.013769363984465599, -0.009603049606084824, 0.020615212619304657, 0.00444092508405447, -0.01809656247496605, 0.0032509458251297474, 0.020337827503681183, 0.011095378547906876, 0.0008370075956918299, 0.0013300584396347404, 0.0001849807595135644, 0.01311473734676838, 0.008804182521998882, 0.002981883008033037, -0.012393537908792496, 0.011117569170892239, -0.008365915156900883, -0.006357651669532061, 0.021491747349500656, -0.01583310402929783, -0.003483948763459921, -0.013802650384604931, -0.003924990072846413, -0.015367099083960056, -0.012670922093093395, 0.010496228002011776, 0.02966904081404209, -0.019683200865983963, 0.010873470455408096, -0.013802650384604931, -0.001579704461619258, 9.119013702729717e-05, 0.006196768954396248, -0.011494811624288559, -0.00959195476025343, -0.009536477737128735, 0.009625240229070187, -0.0064186761155724525, 0.010512870736420155, 0.005420092027634382, 0.007345140445977449, 0.019894013181328773, 0.02327810414135456, 0.015400384552776814, 0.0056863813661038876, 0.0026115747168660164, -0.011173046194016933, -0.002330029383301735, -0.004576843697577715, 0.007594786584377289, -0.010285415686666965, 0.017075786367058754, 0.0199383944272995, 0.004587939009070396, -0.005173220299184322, -0.004088646732270718, -0.0003640670911408961, -0.02751653827726841, 0.021591605618596077, 0.016742926090955734, 0.00011528791219461709, 0.018462710082530975, -0.008704324252903461, 0.015056428499519825, -0.026695480570197105, 0.022767717018723488, -0.023011814802885056, 0.0014812330482527614, 0.027050532400608063, -0.0025089425034821033, 0.005980408750474453, -0.011128664016723633, 0.011250713840126991, -0.008055244572460651, -0.020837120711803436, 8.980321581475437e-05, 0.0068846819922327995, 0.004987372551113367, 0.023633155971765518, 0.014135511592030525, 0.006890229880809784, 0.006768180523067713, -0.002244040137156844, 0.0063521042466163635, -0.01829627901315689, -0.006723799277096987, -0.001651824451982975, 0.0025574846658855677, -0.019971679896116257, 0.013935795053839684, -0.00032540663960389793, 0.006196768954396248, 0.012770780362188816, 0.022690048441290855, -0.012548873201012611, -0.002119217300787568, -0.0012121701147407293, 0.004776560235768557, -0.0048736450262367725, -0.008327081799507141, -0.018939809873700142, 0.014645899645984173, -0.0129372114315629, 0.019971679896116257, 0.030933914706110954, 0.02034892328083515, -0.014912188053131104, -0.021935563534498215, -0.00595821812748909, -0.004909704905003309, -0.0015672221779823303, -0.004954086150974035, 0.029092080891132355, 0.007960934191942215, -0.0018404459115117788, 0.031067058444023132, -0.016953738406300545, -0.021158887073397636, -0.007228638976812363, 0.008327081799507141, -0.004274494480341673, 0.0004788349033333361, 0.009841600432991982, -0.008010863326489925, 0.019627723842859268, -0.014013462699949741, -0.005775144323706627, 0.005006789229810238, -0.006324365735054016, 0.01896200142800808, -0.006246698088943958, 0.0030678720213472843, -0.015755437314510345, 0.011650146916508675, -0.022789906710386276, -0.026806434616446495, -0.03712513670325279, 0.04584610462188721, -0.013092546723783016, 0.00012889709614682943, 0.010640467517077923, 0.0013328322675079107, 0.005611487664282322, -0.0018612496787682176, 0.007911005057394505, 0.00047363396151922643, 0.005675286054611206, -0.027050532400608063, 0.03344146907329559, 0.002827934455126524, -0.015078619122505188, -0.001382761518470943, -0.004635094199329615, -0.00184876739513129, -0.011727814562618732, -0.0023882801178842783, 0.0016324075404554605, 0.0004725937615148723, 0.010651563294231892, -0.021358603611588478, 0.0016032821731641889, 0.0019084051018580794, -0.020515354350209236, -0.008987256325781345, 0.02252361737191677, 0.002901441417634487, -0.0005065733566880226, 0.00850460771471262, 0.014656994491815567, 0.011971913278102875, 0.004299459047615528, 0.010318702086806297, -0.002266230992972851, 0.014202084392309189, 0.018895428627729416, 0.003234302857890725, 0.011483716778457165, -0.005836168769747019, 0.003586580976843834, -0.013336644507944584, -0.017686033621430397, -0.006779276300221682, -0.0030623243656009436, -0.001510358415544033, 0.003153861267492175, -0.018606949597597122, -0.0050373016856610775, -0.003739142557606101, -0.043715789914131165, -0.012338060885667801, 0.009364498779177666, 0.026029758155345917, 0.00739506958052516, 0.0036309624556452036, -0.01006905548274517, 0.010052412748336792, 0.003841774770990014, -0.01668744906783104, 0.006402033381164074, -0.02673986181616783, -0.006241150200366974, -0.003364673350006342, -0.02305619604885578, 0.006346556358039379, 0.007678001653403044, 0.009281284175813198, -0.020770547911524773, -0.004074777476489544, -0.020826024934649467, 0.008926231414079666, 0.018229706212878227, -0.014690280891954899, 0.011750005185604095, -0.011761100962758064, -0.002987430663779378, -0.0018917620182037354, -0.025940993800759315, -0.004937443416565657, -0.007999767549335957, -0.033974047750234604, 0.009935910813510418, 0.015888581052422523, 0.016987023875117302, -0.012216011062264442, -0.006845848169177771, -0.005714119877666235, -0.004501949530094862, -0.014423991553485394, -0.005406223237514496, 0.0010138401994481683, 0.022068707272410393, 0.020504258573055267, -0.00479875085875392, 0.009475452825427055, -0.01713126339018345, -0.007960934191942215, 0.016554303467273712, 0.022179661318659782, -0.01722002774477005, -0.027760636061429977, 0.0005252968403510749, 0.008216127753257751, -0.014612613245844841, -0.015045332722365856, 0.022024326026439667, -0.015733245760202408, 0.002155277179554105, -0.016099393367767334, 0.018573662266135216, 0.00027703773230314255, -0.007788955699652433, 0.004038717597723007, -0.008654395118355751, -0.007922099903225899, 0.005356293637305498, 0.013858127407729626, 0.05405668169260025, 0.02231280505657196, -0.030401336029171944, -0.0318659245967865, -0.014268656261265278, 0.018928715959191322, 0.007994219660758972, -0.007134328130632639, 0.01626582443714142, 0.015777627006173134, -0.004352162126451731, 0.008665489964187145, -0.0063909380696713924, 0.004257851280272007, 0.009236901998519897, -0.018562568351626396, 0.002678146818652749, 0.0030789675656706095, 0.011017710901796818, 0.001808546599932015, -0.010607181116938591, -0.003825131570920348, 0.031910307705402374, 0.01733097992837429, -0.011772196739912033, -0.0015672221779823303, 0.005270304623991251, 0.026895197108387947, -0.021469557657837868, 0.01951676979660988, 0.0037252733018249273, -0.010906756855547428, -0.02078164368867874, -0.008499059826135635, 0.00274887983687222, 0.013403217308223248, -0.00974174216389656, 0.012282583862543106, -0.04526914283633232, -0.01056834775954485, -0.011827672831714153, 0.026584526523947716, 0.0018848273903131485, -0.010451845824718475, 0.0030650983098894358, 0.022945242002606392, 0.0032675887923687696, 0.02447640523314476, -0.013136927969753742, -0.007478285115212202, 0.004795977380126715, 0.014046749100089073, -0.006984540726989508, -0.01152809802442789, -0.010629372671246529, -0.0257856585085392, -0.0006750844186171889, -0.025275271385908127, 0.012182725593447685, -0.01500095147639513, -0.01809656247496605, -0.01152809802442789, 0.00862110871821642, 0.020626308396458626, 0.004044265486299992, -0.016110489144921303, 0.01940581575036049, 0.010035770013928413, -0.017841368913650513, 0.015178477391600609, 0.005206506233662367, 0.003517234930768609, -0.007561500184237957, -0.0004306393675506115, -0.015344908460974693, -0.026162901893258095, -0.020648498088121414, -0.02696176990866661, -0.0011213266989216208, 0.011960817500948906, 0.017286598682403564, 0.009220259264111519, -0.007178709842264652, 0.01121742743998766, 0.031178012490272522, 0.004940217360854149, 0.023255912587046623, 0.013691696338355541, 0.007383974269032478, 0.0059304796159267426, -0.011084282770752907, 0.01268201693892479, -0.02492021955549717, 0.006451962515711784, 0.023899445310235023, 0.014068939723074436, -0.018362851813435555, -0.006429771892726421, 0.01408003456890583, 0.02827102318406105, 0.001864023506641388, 0.0020193587988615036, -0.009358951821923256, 0.006707156077027321, 0.005506081506609917, -0.002750266809016466, 0.009397785179316998, -0.013014879077672958, -0.025053363293409348, -0.01690935716032982, 0.010207748040556908, -0.03552740067243576, 0.03175497427582741, -0.005625356920063496, -0.003766880836337805, -0.00755595276132226, -0.006873586680740118, -0.004804298747330904, 0.001865410478785634, 0.024853646755218506, 0.003986014518886805, 0.00025727407773956656, 0.013625124469399452, 0.000869600276928395, 0.010523966513574123, -0.007911005057394505, -0.024676121771335602, -0.0059915040619671345, -0.0030151689425110817, 0.004779334180057049, 0.00807188730686903, 0.009358951821923256, 0.006707156077027321, 0.002901441417634487, 0.01103990152478218, 0.0013390734093263745, 0.0013786007184535265, -0.013802650384604931, -6.648558337474242e-05, -0.009863791055977345, -0.015655579045414925, -0.010224390774965286, -0.0342625267803669, -0.024742692708969116, 0.0075504048727452755, 0.015300526283681393, -0.0008307664538733661, 0.00227593956515193, 0.011672337539494038, -0.023766299709677696, 0.006940159015357494, -0.010429655201733112, 0.00262544397264719, -0.010529513470828533, 0.008127364329993725, -0.005963766016066074, 0.01034089270979166, 0.01477904338389635, 0.013669505715370178, -0.014856711030006409, -0.006712703965604305, 0.030179427936673164, 0.016853880137205124, -0.013014879077672958, 0.00131965649779886, 0.03628188744187355, 0.015056428499519825, 0.020304542034864426, 0.020670689642429352, 0.00576959690079093, -0.0032675887923687696, 0.0037419162690639496, -0.018018893897533417, 0.004227339290082455, 0.0025477763265371323, 0.026673289015889168, -0.01268201693892479, -0.019661009311676025, -0.02511993609368801, -0.0011989943450316787, -0.019527865573763847, -0.002293969504535198, -0.028958937153220177, -0.01094004325568676, -0.018717903643846512, 0.05219265818595886, 0.00025103293592110276, -0.010601634159684181, 0.012804066762328148, 0.024099161848425865, 0.023655345663428307, 0.013957985676825047, 0.0009507352369837463, 0.0020595795940607786, 0.00020335748558863997, -0.012715303339064121, -0.00846022553741932, -0.009619693271815777, -0.019871821627020836, 0.0034728534519672394, -0.01120078470557928, 0.017919035628437996, 0.014712471514940262, -0.018895428627729416, 0.00492912158370018, -0.01159466989338398, -0.026162901893258095, -0.013480884954333305, 0.011394953355193138, -0.006302174646407366, 0.002087318105623126, 0.0037557855248451233, -0.013092546723783016, -0.009863791055977345, 0.0035421994980424643, -0.008354819379746914, 0.018174229189753532, 0.00034447680809535086, -0.004296685103327036, 0.01170562393963337, 0.00811626948416233, -0.004421508405357599, 0.0009535090648569167, -0.014867806807160378, 0.013281167484819889, -0.0018293504836037755, -0.05933808162808418, -0.0021788550075143576, 0.01864023506641388, -0.032132215797901154, -0.02179132215678692, 0.0009444940951652825, -0.009913720190525055, -0.003869513049721718, -0.00025033947895281017, 0.0037890716921538115, 0.004077551420778036, -0.007034469861537218, -0.01656539924442768, -0.018762284889817238, 0.007966481149196625, 0.0015755436616018414, -0.017519602552056313, 0.0013092546723783016, 0.021192172542214394, 0.018651330843567848, -0.0019902335479855537, 0.04819832369685173, 0.012582158669829369, 0.00034881095052696764, 0.00953092984855175, -0.0034423409961163998, 0.013558552600443363, -0.002363315550610423, 0.011073186993598938, 0.006241150200366974, 0.015156286768615246, 0.0004916639300063252, -0.0007870784029364586, 0.0029929783195257187, -0.011883149854838848, -0.0009195294696837664, 0.002496459987014532, -0.00487087108194828, -0.022346092388033867, -0.01948348432779312, -0.01457932684570551, 0.03641503304243088, 0.0011733362916857004, -0.009464357979595661, -0.008377010934054852, -0.029624659568071365, 0.005514402873814106, -0.0017170098144561052, 0.007472737226635218, -0.007156518753618002, 0.013902508653700352, -0.018684616312384605, -0.0035838072653859854, 0.0018057727720588446, 0.022501427680253983, -0.001122020068578422, -0.011872055009007454, -0.008587822318077087, 0.012071771547198296, -0.01212724857032299, -0.03632626682519913, 0.0202601607888937, -0.0217802282422781, 0.009131495840847492, -0.017086882144212723, -0.006701608654111624, -0.004443699028342962, -0.005372936837375164, 0.005655868910253048, -0.01602172665297985, -0.018285183236002922, 0.009475452825427055, 0.0011268743546679616, 0.0003534918068908155, 0.006402033381164074, 0.009775028564035892, 0.01430194266140461, -0.025075554847717285, -0.00845467858016491, 0.009730646386742592, -0.003705856390297413, -0.005880550481379032, 0.00470998790115118, -0.020282350480556488, -0.0025089425034821033, 0.01689826138317585, 0.02729463018476963, 0.0017863558605313301, 0.011012163013219833, -0.027449965476989746, -0.01152809802442789, -0.03326394408941269, 0.008809730410575867, 0.011333928443491459, -0.029180845245718956, 0.01928376778960228, -0.007400617469102144, -0.016554303467273712, -0.016332397237420082, 0.01516738161444664, -0.0065962024964392185, 0.016709638759493828, 0.000877228332683444, 0.002576901577413082, 0.0033313874155282974, 0.016598686575889587, 0.010124532505869865, -0.01569996029138565, -0.008665489964187145, -0.02305619604885578, 0.02175803668797016, -0.002084544161334634, 0.00943107157945633, -0.013902508653700352, 0.0023050648160278797, -0.019561151042580605, 0.00447143753990531, 0.014767948538064957, -0.008665489964187145, 0.016643067821860313, -0.005034527741372585, 0.025497179478406906, -0.016842784360051155, -0.007339592557400465, -0.012792970985174179, 0.026140710338950157, -0.03488386794924736, -0.010046864859759808, -0.007067755796015263, 0.005758501123636961, -0.013858127407729626, 0.007023374550044537, -0.017830273136496544, -0.004540783353149891, -0.028426358476281166, -0.011905340477824211, -0.0016393421683460474, 0.0011816577753052115, -0.0013473950093612075, -0.002826547482982278, 0.029291799291968346, 0.02416573464870453, 0.014057843945920467, -0.0009014994720928371, -0.01477904338389635, -0.003839000826701522, 0.0043493881821632385, -0.012149439193308353, 0.010191105306148529, 0.01756398379802704, 0.0021538902074098587, -0.00014770722191315144, 0.02545279823243618, -0.005786239635199308, 0.014346323907375336, -0.003287005703896284, 0.014734662137925625, 0.00985824316740036, 0.010884566232562065, 0.008532346226274967, -0.007150971330702305, 0.00839365366846323, -0.018285183236002922, 0.016609780490398407, -0.025585941970348358, -0.012482300400733948, -6.912940443726256e-05, -0.008277151733636856, -0.0004576843639370054, -0.008144007995724678, 6.592214776901528e-05, 0.0006605217349715531, 0.02556375227868557, 0.005231470800936222, -0.006629488430917263, -0.008743157610297203, 0.007112137507647276, -0.02100355178117752, -0.010673753917217255, 0.0027072723023593426, 0.0012142504565417767, -0.015178477391600609, -0.021591605618596077, 0.016665257513523102, 1.2731513265862304e-07, 0.02891455590724945, 0.000719119212590158, 0.0018348981393501163, -0.00609691021963954, -0.011383858509361744, 0.013192404992878437, 0.0023092254996299744, -0.015566815622150898, -0.021913371980190277, -0.01408003456890583, 0.018174229189753532, -0.02318933978676796, 0.022789906710386276, -0.009392237290740013, 0.02200213447213173, 0.0034950440749526024, 0.02079273946583271, 0.037413615733385086, 0.019305957481265068, -0.0018390589393675327, -0.010806898586452007, 0.0018862142460420728, 0.025585941970348358, 0.03304203599691391, -0.009719551540911198, -0.022701144218444824, 0.009786123409867287, 0.018373945727944374, 0.0026725991629064083, -0.0057030245661735535, -0.003445114940404892, 0.02219075709581375, -0.016631972044706345, 0.02576346881687641, 0.009059376083314419, -0.026051947847008705, -0.0013300584396347404, 0.022279519587755203, 0.0032232073135674, -0.012105057947337627, 0.013647315092384815, -0.012715303339064121, 0.011028805747628212, 0.01929486356675625, -0.009364498779177666, 0.003012395231053233, -0.0036087718326598406, 0.010091246105730534, -0.004443699028342962, 0.004194052889943123, 0.010978876613080502, 0.0004982518148608506, 0.001366811920888722, -0.020837120711803436, 0.0047349524684250355, -0.005048396997153759, 0.014257561415433884, -0.023588774725794792, 0.008038601838052273, -0.015178477391600609, -0.007594786584377289, -0.008598918095231056, 0.015256145037710667, 0.0032759103924036026, -0.00036233343416824937, 0.008249414153397083, -0.015233954414725304, -0.0031871474348008633, 0.0028154521714895964, -0.0019264350412413478, 0.0027752313762903214, 0.0026101877447217703, -0.014213179238140583, 0.003234302857890725, 0.011716719716787338, 0.0017558436375111341, 0.003927764017134905, 0.006551820784807205, 0.004942990839481354, -0.01359183806926012, 0.013636220246553421, 0.0031261227559298277, 0.0021608248353004456, 0.024121351540088654, -0.00246456079185009, -0.0021705334074795246, 0.013136927969753742, -0.011361666955053806, 0.014257561415433884, -0.00522869685664773, 0.01219382043927908, 0.008848563767969608, 0.007400617469102144, 0.007827789522707462, 0.006324365735054016, -0.013092546723783016, 0.005328555591404438, -0.002728076186031103, 0.004293911159038544, -0.023788491263985634, -0.01940581575036049, 0.009231355041265488, 0.012582158669829369, -0.017197836190462112, -0.004962407983839512], "e559f16b-b79d-497c-83c3-1040b7290ab2": [-0.017663929611444473, -0.02449251525104046, -4.1800660255830735e-05, 0.04392772540450096, -0.04485611990094185, 0.0024263469967991114, -0.016466788947582245, 0.007659255526959896, -0.01763949729502201, 0.04441635310649872, 0.005271082744002342, 0.0011398792266845703, 0.005014552269130945, 0.004241908434778452, 0.004990120884031057, 0.007115656044334173, -0.01872669719159603, 0.008153991773724556, -0.009760359302163124, -0.014597783796489239, 0.030466001480817795, -0.002360687591135502, -0.02186613529920578, 0.02005820907652378, 0.00808680523186922, -0.0348636619746685, -0.010743724182248116, -0.006675890181213617, -0.029439881443977356, -0.019337482750415802, 0.00029031417216174304, -0.005292459856718779, 0.025262106209993362, 0.015281863510608673, 0.008367767557501793, -0.01862897165119648, -0.012557758949697018, 0.008801424875855446, 0.03481479734182358, 0.017224162817001343, -0.025628577917814255, 0.02626379393041134, -0.016014806926250458, -0.009754251688718796, -0.00663313502445817, -0.0025836245622485876, -0.038161903619766235, 0.0038723826874047518, 0.013107465580105782, 0.009503829292953014, 0.012319551780819893, -0.01236230693757534, 0.0007634824141860008, 0.014658861793577671, 0.04979126900434494, -0.01889771595597267, -0.013547231443226337, 0.07060685008764267, 0.0078058443032205105, -0.05511732026934624, 0.001702565816231072, -0.060199059545993805, 0.012063021771609783, -0.010755940340459347, 0.03078361041843891, 0.022880040109157562, 0.01481766626238823, 0.027460934594273567, 0.004382389131933451, 0.015648335218429565, -0.0002353434538235888, 0.011678227223455906, -0.05394461378455162, 0.04839867725968361, 0.04812993109226227, 0.007109547965228558, 0.028633644804358482, 0.02799842692911625, 0.0309546310454607, -0.026337089017033577, 0.013058602809906006, 0.0019102329388260841, 0.027436504140496254, -0.021194271743297577, 0.03457048162817955, 0.008722023107111454, -0.013547231443226337, -0.04703051596879959, 0.009051847271621227, -0.021682899445295334, 0.0020339172333478928, -0.007060685195028782, 0.005384077783674002, 0.01030395831912756, -0.008434954099357128, 0.023796219378709793, -0.0031638711225241423, 0.012802072800695896, 0.0365738607943058, -0.030123962089419365, -0.02207380346953869, 0.03784429654479027, 0.006346065551042557, 0.003405131632462144, 0.015306294895708561, 0.011562177911400795, 0.000582918815780431, 0.015013118274509907, -0.02506665512919426, 0.016613377258181572, -0.01879999041557312, -0.06435240805149078, 0.021719546988606453, 0.005271082744002342, -0.028071722015738487, -0.028829095885157585, -0.01682104356586933, 0.006517085712403059, -0.019630659371614456, -0.02557971514761448, 0.03334891051054001, -0.03439946472644806, 0.013767114840447903, -0.005906299687922001, -0.009082386270165443, 0.030197255313396454, 0.00851435586810112, 0.010841449722647667, 0.058733176440000534, 0.011983620002865791, -0.009742035530507565, -0.007592068985104561, 0.015819355845451355, -0.02775411307811737, -0.03835735470056534, 0.01689433865249157, 0.020424680784344673, 0.05834227055311203, -0.004852693993598223, 0.019166462123394012, -0.009858084842562675, 0.028633644804358482, 0.0014238946605473757, -0.01508641242980957, 0.0037532795686274767, -0.016307983547449112, -0.024675751104950905, 0.04527145251631737, -0.003967054653912783, 0.02946431376039982, -0.0356210358440876, -0.004272447433322668, -0.07002049684524536, -0.0003962473710998893, 0.0523810014128685, -0.015318511053919792, -0.003206626046448946, 0.05037762224674225, 0.011617148295044899, 0.054921869188547134, 0.01757841929793358, -0.02108433097600937, 0.03818633779883385, 0.020595701411366463, 0.049498092383146286, 0.025653008371591568, 0.04124026745557785, 0.055703677237033844, -0.014890960417687893, 0.010120722465217113, 0.02472461387515068, -0.012838720344007015, 0.03596307709813118, -0.022880040109157562, 0.036524999886751175, -0.03887041658163071, 0.011672118678689003, 0.008838072419166565, 0.04106924682855606, -0.02567744068801403, -0.003756333375349641, -0.01253332756459713, 0.0013070818968117237, 0.011898109689354897, -0.013083034195005894, 0.055361635982990265, -0.007628716062754393, 0.025555282831192017, -0.01200805138796568, 0.0012918122811242938, 0.013815977610647678, -0.027534229680895805, 0.0023881730157881975, 0.03527899459004402, -0.028022857382893562, -0.017590634524822235, 0.026483677327632904, -0.011769845150411129, 0.003212733892723918, 0.03535228967666626, 0.01326627004891634, -0.013974782079458237, -0.0032707585487514734, 0.043781135231256485, -0.02834046632051468, 0.009351132437586784, -0.020107071846723557, -0.026483677327632904, 0.03278698772192001, -0.00011032320617232472, 0.06606260687112808, -0.03195631876587868, 0.023649631068110466, -0.017053142189979553, 0.021365292370319366, -0.008685375563800335, -0.0034906414803117514, 0.029415450990200043, -0.009931378997862339, -0.034521620720624924, 0.0033776462078094482, -0.06264220178127289, -0.0064315758645534515, -0.010273419320583344, -0.02319764904677868, -0.02533539943397045, -0.02506665512919426, 0.018751127645373344, -0.02173176407814026, -0.037477824836969376, 0.017663929611444473, -0.01481766626238823, 0.04009198769927025, -0.023820651695132256, 0.008080697618424892, 0.02758309245109558, 0.035059113055467606, 0.00488628726452589, 0.003701362758874893, -0.006736968643963337, 0.0089052589610219, -0.006291095167398453, -0.009876408614218235, -0.016063669696450233, -0.008801424875855446, 0.011946972459554672, -0.017651712521910667, 0.06044337525963783, 0.006553732790052891, 0.008068482391536236, 0.0028294657822698355, 0.017908243462443352, -0.0015521597815677524, -0.012863151729106903, -0.022183744236826897, -0.004959581885486841, 0.019117599353194237, -0.005301621742546558, 0.006407144479453564, 0.004217477049678564, -0.00704236188903451, -0.003224949585273862, -0.012466141022741795, -0.00018638513574842364, 0.057609327137470245, -0.019361913204193115, 0.05360257253050804, -0.015281863510608673, -0.00489544915035367, 0.04370784014463425, 0.04959581792354584, -0.005228327587246895, -0.016540082171559334, 0.04483168572187424, -0.03537672013044357, 0.017395183444023132, 0.011000254191458225, 0.0023912268225103617, -0.0017285242211073637, -0.013412859290838242, 0.0123806307092309, -0.027729680761694908, 0.03586534783244133, 0.0002382065140409395, 0.03838178887963295, 0.02506665512919426, -0.02112097665667534, -0.04566235467791557, -0.03183416277170181, -0.020082641392946243, 0.00939999520778656, 0.02432149648666382, -0.0005592508823610842, 0.004800777416676283, 0.020204799249768257, 0.011397265829145908, 0.005075631197541952, -0.000529093318618834, -0.006449899170547724, -0.022904472425580025, -0.0073905098251998425, -0.002018647501245141, 0.01056048832833767, -0.017688360065221786, 0.02653254009783268, -0.0262882262468338, 0.05350484699010849, 0.036329545080661774, -0.0009780209511518478, 0.030270550400018692, 0.0022828124929219484, -0.04414760693907738, -0.025115517899394035, -0.04478282481431961, 0.0025133839808404446, 0.029195567592978477, -0.04729926213622093, 0.016051454469561577, -0.028755800798535347, -0.005194734316319227, -0.015611688606441021, 0.018812205642461777, -0.009503829292953014, 0.03674488142132759, 0.03244495019316673, -0.06410808861255646, 0.009497720748186111, -0.015880433842539787, -0.009363348595798016, 0.006853017956018448, -0.04993785545229912, 0.018775559961795807, -0.01682104356586933, 0.021475233137607574, -0.030466001480817795, -0.01788381114602089, -0.04942479729652405, -0.03183416277170181, -0.008776993490755558, -0.027680817991495132, -0.038430649787187576, -0.023893944919109344, 0.03501024842262268, -0.029781920835375786, -0.028560349717736244, -0.00676750810816884, -0.0077936286106705666, 0.00535659259185195, 0.005020660348236561, -0.0060437265783548355, 0.0005924623692408204, 0.004083103965967894, 0.01006575208157301, -0.012099669314920902, 0.013363996520638466, -0.01222793385386467, -0.012692131102085114, 0.016735535115003586, 0.022061588242650032, -0.009766466915607452, -0.015269648283720016, -0.03510797396302223, 0.006071212235838175, -0.032909147441387177, -0.009338917210698128, 0.0010261203860864043, 0.03728237375617027, 0.010609351098537445, -0.0015651389257982373, 0.004379334859549999, 0.009735927917063236, -0.0010360456071794033, -0.04062948003411293, 0.0014170233625918627, 0.007011822424829006, -0.030490433797240257, 0.04045845940709114, -0.0018476274562999606, -0.01222793385386467, 0.022843394428491592, -0.011006362736225128, -0.0006516322609968483, -0.01965509168803692, 0.023918377235531807, 0.028462624177336693, 0.004855748265981674, -0.0003032933745998889, -0.03244495019316673, -0.03403299301862717, -0.006700321566313505, -0.0064315758645534515, -0.007384401746094227, -0.020045993849635124, -0.00553372036665678, 0.010762047953903675, -0.014072507619857788, 0.020937740802764893, -0.0403851643204689, 0.02135307528078556, -0.0011933230562135577, -0.0052619208581745625, -0.009858084842562675, 0.007421048823744059, -0.023441964760422707, -0.007152303121984005, -0.02129199728369713, 0.014402331784367561, 0.00836165901273489, 0.03825962916016579, 0.01369382068514824, 0.024614673107862473, -0.02043689787387848, 0.0016109478892758489, 0.029024546965956688, 0.037551119923591614, 0.026581402868032455, -0.015281863510608673, 0.03740452975034714, -0.04150900989770889, -0.003829627763479948, 0.043610114604234695, 0.022428059950470924, -0.002650810871273279, 0.0024752099998295307, 0.006144506391137838, 0.021414155140519142, 0.004898502957075834, 0.03821076825261116, -0.016674455255270004, 0.011507206596434116, 0.019765032455325127, 0.045173726975917816, -0.0034570484422147274, 0.006358281709253788, -0.0335199311375618, -0.01792045868933201, 0.0056283921003341675, 0.006211692932993174, -5.3968662541592494e-05, -0.005188626237213612, 0.008215070702135563, 0.008196746930480003, 0.009968026541173458, 0.007256136741489172, -0.03994540125131607, -0.0015231474535539746, -0.017480693757534027, 0.02097438834607601, 0.005103116389364004, -0.012417278252542019, 0.012765426188707352, 0.006135344505310059, -0.03171200677752495, 0.006098697427660227, -0.0037929806858301163, -0.0037746569141745567, 0.06469444185495377, -0.017444046214222908, -0.008343336172401905, -0.030466001480817795, -0.00657205656170845, 0.002873747842386365, 0.020962173119187355, -0.004880179651081562, 0.0017758600879460573, -0.012863151729106903, -0.017822733148932457, -0.0209499578922987, 0.015379589982330799, 0.0162835530936718, -0.006700321566313505, -0.01151331514120102, -0.012020266614854336, 0.04014085233211517, 0.03586534783244133, -0.014890960417687893, -0.025262106209993362, -0.012643268331885338, 0.003738009836524725, -0.013412859290838242, 0.015538393519818783, 0.004449575673788786, -0.033324480056762695, 0.029977373778820038, 0.007634824141860008, 0.010896421037614346, -0.03950563445687294, -0.014536704868078232, -0.00929616205394268, 0.008465493097901344, -0.01641792617738247, 0.0035792056005448103, 0.002136223716661334, 0.028120584785938263, 0.0002807706478051841, 0.0035944750998169184, 0.009112926200032234, -0.005103116389364004, -0.0075981770642101765, -0.016503436490893364, 0.020827800035476685, 0.013119681738317013, -0.01045665517449379, 0.011953081004321575, -0.04348795861005783, 0.036085233092308044, -0.021157624199986458, 0.012331767939031124, 0.010542165488004684, 0.01621025800704956, -0.04067834094166756, 0.02333202213048935, -0.03645170480012894, -0.008282257243990898, 0.0019743654411286116, 0.0029943780973553658, -0.0247612614184618, -0.04478282481431961, 0.016222475096583366, -0.016662240028381348, -0.006926312576979399, -0.008373875170946121, -0.01304638758301735, 0.015049764886498451, -0.022586863487958908, -0.015233000740408897, -0.023747356608510017, -0.015782708302140236, 0.015049764886498451, -0.0045106541365385056, -0.02929329313337803, -0.001820142031647265, 0.0011207921197637916, 0.018714480102062225, 0.00864872895181179, 0.020290307700634003, -0.020864447578787804, -0.022904472425580025, -0.0018995442660525441, 0.000958170392550528, 0.010645998641848564, 0.019972700625658035, 0.030905768275260925, -0.00939999520778656, 0.015684982761740685, 0.010206232778728008, -0.004733590874820948, 0.017138652503490448, -0.01313189696520567, -0.00424801604822278, -0.040580615401268005, 0.001594151253812015, -0.052087824791669846, -0.017224162817001343, 0.008202854543924332, -0.028829095885157585, -0.002325567416846752, 0.016564514487981796, 0.002650810871273279, -0.05931952968239784, 0.003536450443789363, 0.0002530944184400141, 0.008453276939690113, 0.01313189696520567, -0.03151655197143555, 0.012295120395720005, -0.039798811078071594, 0.004947366192936897, 0.02755866013467312, 0.02369849383831024, 0.0077936286106705666, 0.006364389322698116, 0.042217522859573364, -0.00013990815205033869, -0.00704236188903451, 0.02261129580438137, 0.011720982380211353, -0.02084001526236534, -0.015794923529028893, -0.012631053104996681, 0.020412465557456017, -0.021108761429786682, 0.019630659371614456, -0.025188811123371124, 0.017358535900712013, 0.009320593439042568, -0.032469380646944046, -0.018409088253974915, -0.001814034185372293, 0.022281469777226448, 0.007873030379414558, 0.018238067626953125, 0.016149180009961128, 0.0007707354961894453, -0.006358281709253788, 0.036940332502126694, -0.01481766626238823, -0.007366078440099955, -0.0028600050136446953, 0.026752423495054245, 0.046468593180179596, 0.0004909191629849374, 0.02022922970354557, -0.02765638753771782, -0.05111056566238403, 0.023918377235531807, -0.012087453156709671, 0.028462624177336693, 8.455567876808345e-05, -0.01086588203907013, 0.02921999804675579, -0.0025988940615206957, -0.0032463271636515856, -0.02485898695886135, 0.02983078546822071, 0.004464845173060894, -0.018213637173175812, 0.015098627656698227, 0.020815584808588028, 0.007384401746094227, 0.011647687293589115, -0.009839761070907116, 0.019874973222613335, -0.03716021403670311, -0.030539296567440033, 0.03464377671480179, -0.03034384548664093, -0.028218310326337814, -0.0019407722866162658, 0.01227679755538702, 0.0018323577241972089, -0.009662633761763573, 0.010346713475883007, -0.008410521782934666, 0.039554495364427567, -0.027876269072294235, -0.0028203041292726994, -0.0073294308967888355, -0.022147098556160927, 0.0021499665454030037, -0.01887328550219536, -0.014976470731198788, -0.0019667306914925575, 0.049644678831100464, -0.018580107018351555, 0.05081738904118538, -0.006956851575523615, 0.010383361019194126, 0.018763342872262, 0.03613409399986267, -0.021169839426875114, 0.017321888357400894, 0.004571732599288225, 0.027265483513474464, -0.018690049648284912, -0.023527473211288452, -0.018738912418484688, 0.03510797396302223, 0.019899405539035797, 0.0009253406897187233, 0.022709021344780922, -0.026776855811476707, 0.053553711622953415, 0.005921569652855396, 0.01326627004891634, 0.010633783414959908, -0.03825962916016579, 0.018030401319265366, 0.009980241768062115, 0.04998672008514404, 0.018140342086553574, -0.005130601581186056, -0.01866561733186245, 0.01923975721001625, 0.016540082171559334, -0.00039968304918147624, 0.0023270943202078342, -0.0002815341285895556, 0.014866529032588005, -0.024052750319242477, -0.02401610277593136, -0.032371655106544495, -0.016356846317648888, 0.025384262204170227, -0.022318117320537567, -0.010542165488004684, -0.016833260655403137, -0.00041304397745989263, -0.02878023311495781, 0.0073294308967888355, -0.005350484512746334, 0.043952155858278275, -0.015575041063129902, 0.003508965251967311, -0.00424801604822278, 0.02714332565665245, -0.012716563418507576, -0.005637553986161947, 0.023136571049690247, -0.012887583114206791, -0.01352280005812645, -0.0013719778507947922, -0.024504730477929115, -0.013217407278716564, 0.0214263703674078, 0.0034417787101119757, -0.01594151183962822, -0.02325872890651226, 0.004400712437927723, -0.025188811123371124, -0.009363348595798016, 0.009094602428376675, -0.00405256450176239, 0.0016323253512382507, 0.027607524767518044, -0.007207273971289396, -0.015489530749619007, 0.008410521782934666, 0.003200518200173974, 0.012679915875196457, -0.018238067626953125, 0.03146769106388092, -0.0052771903574466705, -0.053358256816864014, -0.004681674297899008, 0.05301621928811073, -0.024028318002820015, -0.007005714345723391, -0.008618189021945, -0.008160100318491459, -0.008215070702135563, -8.546231401851401e-05, 0.017395183444023132, 0.0008215070702135563, 0.022086018696427345, -0.030832473188638687, 0.02973305806517601, -0.004541193135082722, -0.006034565158188343, -0.01200194377452135, 0.004617541562765837, -0.0016735534882172942, 0.01948407106101513, -0.016100317239761353, 0.0037716031074523926, -0.0008650255622342229, 0.004361011553555727, -0.01184924691915512, -0.009723711758852005, 0.04067834094166756, 0.026581402868032455, -0.034204013645648956, 0.019019873812794685, 0.011574393138289452, 0.008612081408500671, -0.003426508978009224, 0.016149180009961128, 0.002449251478537917, -0.01597815938293934, 0.06117631867527962, -0.015501746907830238, -0.004501492250710726, -0.03017282485961914, -0.02333202213048935, -0.014402331784367561, 0.003072253195568919, 0.015501746907830238, 0.013864840380847454, 0.032909147441387177, 0.02261129580438137, 0.016711102798581123, 0.02645924687385559, 0.0178105179220438, 0.025872891768813133, -0.01719973236322403, -0.0382840633392334, -0.007854706607758999, -0.006217800546437502, 0.012026375159621239, 0.003731901990249753, -0.03041713871061802, -0.02557971514761448, 0.04729926213622093, -0.005133655853569508, 0.004403766710311174, 0.0041838837787508965, 0.04624871164560318, 0.02834046632051468, -0.0034417787101119757, -0.016393493860960007, 0.015000902116298676, -0.04185105115175247, -0.005897138267755508, -0.006810263264924288, 0.0010887258686125278, -0.0028325198218226433, -0.003936515189707279, -0.008581542409956455, -0.030392708256840706, -0.004855748265981674, -0.011433912441134453, -0.020595701411366463, 0.03984767198562622, 0.005023714154958725, -0.002979108365252614, -0.02316100150346756, 0.014658861793577671, -0.02912227250635624, -0.03796645253896713, -0.0024324548430740833, 0.0237107090651989, 0.022977765649557114, -0.008911366574466228, 0.010890313424170017, -0.03882155194878578, -0.026337089017033577, 0.029244430363178253, -0.01343729067593813, 0.02237919718027115, -0.01678439788520336, -0.01969173736870289, -0.016198042780160904, 0.011488882824778557, 0.01352280005812645, -0.005973486229777336, -0.0006733915070071816, 0.01377933006733656, -0.025481989607214928, -0.007140087429434061, -0.0017468477599322796, -0.02127978205680847, -0.03239608556032181, -0.0023270943202078342, 0.02386951446533203, -0.006517085712403059, 0.009784790687263012, -0.014487842097878456, -0.0160025916993618, -0.04488055035471916, 0.02261129580438137, -0.03571876138448715, -0.011946972459554672, 0.018848853185772896, -0.0158071406185627, 0.01547731552273035, 0.04788561537861824, 0.005961270537227392, 0.001823195954784751, 0.021780626848340034, 0.030881335958838463, 0.013315132819116116, -0.001392591861076653, -0.00535659259185195, 0.00045312682050280273, -0.037038058042526245, 0.01862897165119648, -0.012087453156709671, 0.012111884541809559, -0.018787775188684464, 0.023490827530622482, 0.013901487924158573, 0.023319806903600693, -0.011647687293589115, -0.011256784200668335, -0.017053142189979553, 0.007628716062754393, 0.032615967094898224, 0.009833653457462788, 0.03926131874322891, 0.035401150584220886, 0.006321634165942669, -0.014536704868078232, 0.055263910442590714, -0.0073782941326498985, -0.015672767534852028, -0.014805451035499573, 0.02302663028240204, 0.0158071406185627, -0.026923444122076035, 0.020583486184477806, 0.004864909686148167, -0.0001855262235039845, 0.004022025503218174, -0.022928902879357338, -0.04451407864689827, 0.009742035530507565, 0.007304999511688948, 0.022452490404248238, 0.005374916363507509, -0.004272447433322668, -0.0016643916023895144, -0.0004695416719187051, -0.018311362713575363, -0.001480392413213849, -0.01958179660141468, 0.006388820707798004, 0.012508896179497242, -0.006736968643963337, -0.023955024778842926, 0.03188302367925644, 0.004486222751438618, -0.03281141817569733, -0.028902389109134674, -0.013999213464558125, 0.04461180418729782, -0.004867963958531618, 0.018641186878085136, 0.002678296295925975, -0.008447169326245785, 0.006037618964910507, 0.008031834848225117, 0.0022553270682692528, -0.014878745190799236, 0.0019804732874035835, 0.05487300828099251, 0.01443897932767868, -0.01658894494175911, -0.024639103561639786, 0.010597135871648788, -0.027876269072294235, 0.01508641242980957, 0.012899798341095448, -0.007353862747550011, -0.003628068370744586, -0.02369849383831024, 0.0247612614184618, -0.014158017933368683, -0.004791615530848503, -0.02455359511077404, 0.017566204071044922, -0.024785693734884262, -0.016943201422691345, -0.012313444167375565, -0.014536704868078232, -0.005579529330134392, -0.009607662446796894, -0.01248446386307478, -0.003967054653912783, -0.008056266233325005, 0.003182194661349058, 0.011250676587224007, -0.048520833253860474, 0.013767114840447903, -0.0030203363858163357, -0.0234297476708889, -0.019520718604326248, -0.0063399579375982285, 0.02026587724685669, -0.013706035912036896, -0.0577070526778698, -0.009937486611306667, 0.024309279397130013, -0.01689433865249157, 0.00708511658012867, -0.00319746439345181, 0.02200050838291645, 0.0020155934616923332, -0.008966336958110332, -0.0234297476708889, -0.0016231635818257928, 0.009564907290041447, -0.015269648283720016, -0.011281216517090797, 0.023051060736179352, -0.010841449722647667, 0.03571876138448715, -0.02714332565665245, 0.0043152025900781155, -0.013217407278716564, 0.003615852678194642, 0.016796613112092018, -0.006480438634753227, 0.023099923506379128, 0.01965509168803692, -0.014035861007869244, -0.018775559961795807, -0.024834556505084038, -0.0173341054469347, -0.02853591926395893, 0.007176734507083893, 0.03205404430627823, -0.00926562212407589, -0.014646646566689014, -0.031247807666659355, 0.007836383767426014, 0.036329545080661774, 0.008642620407044888, 0.0005691761616617441, 0.010151262395083904, 0.04004312679171562, 0.013217407278716564, -0.0327625572681427, 0.0200948566198349, -0.005872706882655621, -0.013278486207127571, -0.007830275222659111, -0.005283298436552286, -0.0004164796555414796, 0.0035669899079948664, -0.007408833131194115, 0.016967633739113808, 0.000957406940869987, -0.009729819372296333, 0.0012215718161314726, 0.04314591735601425, -0.006700321566313505, 0.0011070495238527656, 0.027534229680895805, 0.00900909211486578, 0.012313444167375565, -0.017615066841244698, -0.006413252092897892, -0.021609606221318245, 0.0072378134354949, 0.010554380714893341, 0.01278985757380724, 0.038943711668252945, -0.018751127645373344, 0.004131966736167669, 0.023209864273667336, -0.0040800501592457294, -0.03667158633470535, 0.010377252474427223, -0.020449113100767136, -0.004996228963136673, 0.01965509168803692, 0.010511625558137894, -0.01777387037873268, 0.014072507619857788, -0.001812507282011211, -0.005991810001432896, -0.006822478957474232, -0.01158050075173378, -0.01737075112760067, -0.0025347615592181683, -0.014194664545357227, 0.005860491190105677, -0.060541100800037384, -0.012814288958907127, -0.010377252474427223, -0.026410384103655815, 0.012374523095786572, -0.02516438066959381, 0.0037227401044219732, 0.014536704868078232, 0.01982611045241356, -0.0017697522416710854, -0.0012070656521245837, -0.004486222751438618, 0.009119033813476562, -0.003954838961362839, -3.4523720387369394e-05, -0.02921999804675579, -0.018641186878085136, -0.011061333119869232, 0.012099669314920902, -0.010481086559593678, -0.01845795102417469, 0.013644957914948463, 0.01842130348086357, 0.005710848607122898, -0.019703954458236694, 0.0164790041744709, 0.01369382068514824, -0.003070726292207837, -0.011024685576558113, -0.022061588242650032, 0.003493695519864559, 9.05681008589454e-05, 0.018519029021263123, -0.006602596025913954, -0.011745413765311241, 0.012423385865986347, 0.013669389300048351, -0.022086018696427345, 0.03584091737866402, 0.031321100890636444, -0.007103440351784229, -0.00825782585889101, 0.00444346759468317, -0.01197140384465456, -0.008575434796512127, -0.0051458715461194515, -0.02390616200864315, -0.026043912395834923, 0.013669389300048351, 0.008050158619880676, 0.003997593652456999, -0.0036799851804971695, -0.005326053127646446, -0.015000902116298676, 0.0018308308208361268, 0.014622215181589127, 0.025628577917814255, -0.0019590959418565035, -0.015049764886498451, -0.0002990942448377609, 0.030368275940418243, 0.017834948375821114, 0.000530620280187577, -0.0001647213357500732, -0.010413900017738342, -0.015562825836241245, 0.018091479316353798, -0.0018445735331624746, 0.015440667979419231, -0.0022232607007026672, 0.01184924691915512, -0.0003689528675749898, -0.009864192456007004, 0.010487194173038006, 0.03459491580724716, 0.005796358454972506, 0.022281469777226448, 0.010871989652514458, -0.014292391017079353, -0.019264187663793564, -0.015257432125508785, -0.018787775188684464, 0.02724105305969715, 0.007921893149614334, -0.020082641392946243, -0.005002336576581001, -0.0056283921003341675, -0.013058602809906006, -0.046712908893823624, 0.017859380692243576, 0.010108507238328457, 0.021267566829919815, 0.00955269206315279, 0.0262882262468338, -0.0027088355273008347, 0.008367767557501793, 0.002895125187933445, -0.018311362713575363, -0.00296231172978878, 0.0018995442660525441, 0.0038265737239271402, -0.01098193135112524, 0.007567637600004673, -0.016711102798581123, -0.001817088108509779, -0.006178099662065506, 0.01693098619580269, 0.007604284677654505, -0.006987391039729118, -0.029757490381598473, -0.025555282831192017, 0.012960877269506454, -0.008929690346121788, -0.000861208129208535, -0.0055123427882790565, -0.015159706585109234, 0.013596095144748688, -0.007647039834409952, 0.0063399579375982285, 0.007567637600004673, -0.0144756268709898, 0.016234690323472023, -0.00015059691213537008, -0.024944497272372246, 0.018164772540330887, 0.014402331784367561, -0.005063415504992008, 0.027094462886452675, 4.5689648686675355e-05, 0.006969067268073559, 0.0008948014001362026, 0.014292391017079353, -0.016356846317648888, -0.0043152025900781155, 0.02645924687385559, 0.02377178892493248, -0.022538000717759132, -0.003402077592909336, 0.02316100150346756, 0.005567313637584448, -0.028413761407136917, -0.003738009836524725, -0.015416236594319344, -0.013730467297136784, -0.013644957914948463, 0.013999213464558125, -0.033055733889341354, 0.015330726280808449, -0.0005978067056275904, 0.00042678666068241, -0.028145015239715576, -0.004327418282628059, 0.01304638758301735, 0.041802190244197845, 0.002148439409211278, -0.029342155903577805, -0.009381671436131, 0.0002246546937385574, 0.001807926339097321, -0.0030478218104690313, -0.007775304839015007, -0.008282257243990898, 0.010310066863894463, 4.108489883947186e-05, 0.004034241195768118, -0.009833653457462788, 0.019337482750415802, -0.01611253246665001, -0.004415982402861118, 0.0011910325847566128, -0.0013651065528392792, -0.002232422586530447, -0.016198042780160904, -0.000319899118039757, 0.0036494459491223097, -0.021230919286608696, -0.045418042689561844, 0.0028294657822698355, 0.0056650396436452866, -0.01706535927951336, -0.054237790405750275, 0.0016491219867020845, 0.002014066558331251, 0.00048137566773220897, 0.008691484108567238, 0.013510584831237793, 0.021499665454030037, -0.008434954099357128, -0.018848853185772896, 0.001592624350450933, 0.018433518707752228, -0.0018491543596610427, 0.0014712306438013911, -0.0026217985432595015, -0.01763949729502201, 0.02087666280567646, 0.0114766675978899, 0.0288535263389349, -0.014988686889410019, 0.002032390097156167, -0.00929616205394268, -0.02152409590780735, 0.0051855724304914474, 0.01859232410788536, -0.014231312088668346, 0.0034692641347646713, -0.018922148272395134, 0.007714226376265287, 0.03017282485961914, -0.023002197965979576, -0.0053810239769518375, -0.006877449341118336, -0.0005722300847992301, 0.00560396071523428, -0.003176086815074086, -0.0005310020060278475, 0.010994146578013897, -0.024712398648262024, 0.008715915493667126, -0.03068588487803936, 0.016051454469561577, -0.002146912505850196, 0.00469999760389328, 0.01597815938293934, 0.022928902879357338, 0.018714480102062225, 0.021463017910718918, -0.025628577917814255, -0.015794923529028893, 0.021267566829919815, -0.023539690300822258, -0.006046780850738287, -0.0071706268936395645, -0.020766722038388252, -0.028926821425557137, -0.016100317239761353, 0.01473215688019991, -0.00839219894260168, 0.024052750319242477, -0.009888623841106892, -0.026679128408432007, -0.00916178897023201, -0.0009154154104180634, -0.0036616616416722536, 0.03777100145816803, 0.009228975512087345, -0.02213488146662712, -0.019801679998636246, -0.014500058256089687, 0.018824422731995583, 0.014072507619857788, -0.0006050597876310349, -0.01634463109076023, -0.015648335218429565, -0.01482988242059946, -0.009290053509175777, 0.03300687298178673, -0.014341253787279129, 0.00612923689186573, -0.03474150225520134, -0.052674178034067154, 0.0032829742413014174, 0.017224162817001343, -0.02033917047083378, 0.026043912395834923, -0.013632741756737232, -0.0042266384698450565, 0.017285240814089775, 0.027534229680895805, 0.0033409991301596165, -0.007250029128044844, -0.003719686297699809, -0.022159313783049583, -0.030099529772996902, -0.01216074824333191, -0.044733960181474686, 0.024101613089442253, 0.008599866181612015, 0.009601554833352566, -0.009002984501421452, -0.01784716546535492, -0.015098627656698227, 0.021572958678007126, 0.00613839877769351, 0.010432223789393902, 0.011440020054578781, 0.007372186053544283, -0.022672373801469803, 0.032298360019922256, 0.00808680523186922, 0.014671077951788902, 0.012234042398631573, 0.005222219508141279, -0.0019422991899773479, 0.011837031692266464, -0.0001773187832441181, 0.012111884541809559, 0.025481989607214928, 0.031687572598457336, -0.025115517899394035, 0.018482381477952003, 0.004220530856400728, 0.0014177868142724037, -0.014109155163168907, -0.0029302455950528383, -0.00015622758655808866, 0.004516761749982834, -0.0027286862023174763, 0.004953473806381226, 0.003512019058689475, 0.008624297566711903, 0.026508109644055367, -0.03891927748918533, -0.005142817273736, 0.012337875552475452, 0.027338778600096703, 0.005958216730505228, -0.004785507917404175, -0.015562825836241245, -0.01842130348086357, -0.011073549278080463, 0.009668741375207901, 0.013192975893616676, -0.006920204497873783, -0.02234254963696003, -0.019984915852546692, -0.01807926408946514, 0.009833653457462788, 0.012948662042617798, -0.006712537258863449, 0.014219095930457115, 0.006297202780842781, 0.002032390097156167, 0.004962635692209005, 0.010554380714893341, 0.014158017933368683, -0.00941831897944212, -0.02386951446533203, -0.0335199311375618, -0.004455683287233114, -0.0030371330212801695, 0.027607524767518044, 0.010542165488004684, 0.006510978098958731, -0.0012551650870591402, -0.004925988614559174, -0.006303310859948397, 0.00827614963054657, -0.0009497721330262721, -0.013376211747527122, -0.013021956197917461, 0.008844180032610893, 0.014243528246879578, -0.01651565171778202, -0.016454573720693588, 0.010908636264503002, 0.004174721892923117, -0.0005180228035897017, -0.0039273533038794994, -0.028633644804358482, -0.023246511816978455, -0.00038345903158187866, -0.002893598284572363, 0.03085690550506115, 0.0005119149573147297, -0.01512305997312069, 0.008190639317035675, -0.030563727021217346, -0.006010133307427168, -0.011794276535511017, -0.0016430141404271126, -0.003701362758874893, -0.013486153446137905, 0.015037549659609795, -0.01132397074252367, -0.0029302455950528383, -0.0260927751660347, -0.00812345277518034, 0.01794489100575447, -0.01900765858590603, -0.006153668276965618, -0.011488882824778557, -0.026214931160211563, -0.0015147491358220577, -0.008844180032610893, -0.022452490404248238, 0.0020675102714449167, 0.005973486229777336, -0.013278486207127571, 0.01546509936451912, 0.0008978553232736886, -0.004177775699645281, -0.0055886912159621716, 0.014658861793577671, -0.017822733148932457, -0.003389861900359392, 0.0016720264684408903, -0.0010116142220795155, -0.018482381477952003, -0.016540082171559334, -0.019594011828303337, 0.0007909677806310356, 0.0018552622059360147, 0.009204544126987457, -0.0363784097135067, 0.012716563418507576, -0.005008444655686617, 0.01546509936451912, 0.00034375794348306954, -0.012197394855320454, -0.004281609319150448, -0.009332808665931225, -0.01161104068160057, -0.006694213952869177, -0.016014806926250458, 0.012209611013531685, -0.012692131102085114, 0.030661452561616898, 0.015856003388762474, -0.05589912831783295, -0.018641186878085136, -0.005961270537227392, 0.02159739099442959, -0.006895773112773895, -0.039798811078071594, 0.015953728929162025, -0.015306294895708561, 0.004556463100016117, -0.012111884541809559, -0.02513994835317135, -0.015184137970209122, 0.030123962089419365, 0.003515073098242283, 0.017725007608532906, 0.02765638753771782, -0.015000902116298676, 0.003652499755844474, 0.01469550933688879, -0.0006245286203920841, -0.018751127645373344, -0.03303130343556404, -0.021841704845428467, -0.018348008394241333, 0.013596095144748688, -0.0003032933745998889, -0.017395183444023132, -0.0009429007768630981, -0.00994359515607357, 0.018409088253974915, 0.010481086559593678, 0.003420401131734252, -0.0015491058584302664, -0.01162936445325613, -0.011531637981534004, -0.012221826240420341, 0.021609606221318245, 0.015110843814909458, 0.0008948014001362026, -0.01811590977013111, 0.03227392956614494, 0.02765638753771782, -0.01253332756459713, 0.006456007249653339, 0.0013567082351073623, -0.021682899445295334, 0.008428845554590225, 0.01430460624396801, -0.008844180032610893, -0.0002506131131667644, -0.0021072113886475563, 0.023478610441088676, -0.009638202376663685, -0.004467898979783058, 0.00011452235776232556, 0.00489544915035367, -0.01442676316946745, -0.013632741756737232, 0.025970617309212685, 0.044489648193120956, -0.00801961962133646, 0.004116697236895561, -0.008416630327701569, 0.011659903451800346, 0.01763949729502201, 0.004788561724126339, -0.006358281709253788, 0.020656779408454895, -0.019386345520615578, -0.01442676316946745, 0.03437503054738045, -0.027436504140496254, 0.01030395831912756, -0.01716308481991291, 0.03212733939290047, 0.0040800501592457294, 0.0043426877819001675, -0.01151331514120102, -0.02533539943397045, -0.0007730259094387293, 0.011232352815568447, 0.0019484071526676416, -0.002747009741142392, -0.026996737346053123, 0.03234722092747688, -0.008282257243990898, -0.038064178079366684, -0.009845868684351444, 0.010071859695017338, -0.0038784905336797237, -0.00038422251236625016, -0.018714480102062225, -0.007543206214904785, 0.001804872415959835, -0.020168151706457138, -0.0018964903429150581, 0.0042266384698450565, 0.004898502957075834, -0.00299743190407753, -0.022354764863848686, 0.008917474187910557, 0.008251718245446682, -0.018812205642461777, 0.007573745679110289, -0.005955162923783064, -0.002675242256373167, -0.022110451012849808, -0.004467898979783058, -0.018348008394241333, -0.01658894494175911, -0.027705250307917595, -0.008551003411412239, -0.010633783414959908, 0.020571269094944, 0.002551558194682002, 0.009968026541173458, -0.002334729302674532, 0.011690442450344563, 0.012215718626976013, -0.0164790041744709, 0.0007932581938803196, -0.007231705356389284, -0.011531637981534004, -0.017248595133423805, -0.008996876887977123, -0.021206486970186234, 0.05282076820731163, -0.002438562922179699, -0.013058602809906006, -0.009968026541173458, -0.00682858657091856, -0.008453276939690113, -0.001594151253812015, 0.029097842052578926, -0.0010910163400694728, -0.00495652761310339, -0.003438724670559168, -0.011653795838356018, -0.010310066863894463, -0.017346320673823357, -0.010652106255292892, 0.008117345161736012, 0.012838720344007015, 0.008691484108567238, -0.018763342872262, 0.031858593225479126, 0.011030794121325016, 0.009473289363086224, -0.022098233923316002, 0.009467181749641895, 0.00469999760389328, 0.000854336831253022, 0.00491377292200923, 0.02506665512919426, 0.006019295193254948, 0.0196184441447258, 0.010737616568803787, 0.005194734316319227, -0.011556069366633892, -0.01224625762552023, 0.0030081206932663918, -0.0011269000824540854, -0.02557971514761448, 0.0076531474478542805, 0.01845795102417469, 0.023930592462420464, -0.011446128599345684, -0.008783102035522461, 0.030710317194461823, 0.014768803492188454, -0.008990769274532795, 0.01563611999154091, -0.004562570713460445, -0.00864872895181179, -0.003536450443789363, -0.005509288981556892, -0.0017682252218946815, -0.0011551488423720002, 0.005778034683316946, 0.00033268745755776763, -0.0075370981357991695, -0.013718252070248127, 0.013925919309258461, -0.01845795102417469, 0.004953473806381226, -0.0030233904253691435, 0.005237489473074675, 0.0009261041413992643, -0.015269648283720016, -0.009271730668842793, 0.02904897928237915, -0.003838789649307728, 0.002252273028716445, -0.004681674297899008, -0.002974527422338724, 0.018299145624041557, 0.0015185665106400847, 0.02619050070643425, -0.010975822806358337, -0.0144756268709898, -0.022672373801469803, 0.012136315926909447, -0.011146843433380127, 0.0016704995650798082, 0.013754898682236671, 0.030392708256840706, -0.016833260655403137, -0.011470559984445572, 0.005026767961680889, -0.010365037247538567, 0.025457557290792465, -0.012374523095786572, -0.0004871017881669104, -0.0003804051084443927, 0.014548921026289463, -0.021133193746209145, -0.0196184441447258, 0.012282905168831348, -0.009644309990108013, 0.023380884900689125, 0.00035062929964624345, -0.012887583114206791, -0.0023988618049770594, -0.005405455362051725, 0.011892002075910568, 0.005121440161019564, 0.006608703639358282, -0.0005603960598818958, -0.013351780362427235, 0.01184924691915512, -0.006761400029063225, 0.01249668002128601, -0.00593378534540534, 0.024174906313419342, -0.02148744836449623, 0.015391805209219456, -0.006028457079082727, -0.009766466915607452, -0.0037716031074523926, -0.025310968980193138, -0.03119894489645958, 0.0242848489433527, 0.016662240028381348, 0.012704347260296345, -0.005005390848964453, -0.0024874256923794746, 0.002256853971630335, -0.008599866181612015, 0.021243134513497353, 0.016063669696450233, -0.011091872118413448, -0.015917081385850906, 0.0078058443032205105, -0.013095250353217125, -0.0026340142358094454, -0.009002984501421452, 0.0023087707813829184, -0.0018812206108123064, 0.0006207111873663962, 0.009479397907853127, -0.016222475096583366, -0.0028661128599196672, -0.005680309142917395, -0.022464705631136894, 0.0004916826728731394, -0.007555421907454729, -0.013767114840447903, -1.468510708946269e-05, -0.007720333989709616, 0.014744372107088566, 0.0006577401072718203, -0.012453924864530563, -0.01845795102417469, -0.023747356608510017, 0.009815329685807228, 0.004516761749982834, 0.013388427905738354, -0.02127978205680847, 0.0013712143991142511, -0.012655484490096569, -0.009210651740431786, 0.0060559422709047794, -0.02721662074327469, -0.005671147257089615, -0.0011551488423720002, -0.017529556527733803, 0.014316822402179241, -0.00018791211186908185, -0.02904897928237915, -0.016503436490893364, -0.016979848966002464, -0.016955416649580002, 0.020241444930434227, 0.014805451035499573, 0.013363996520638466, -0.006156722083687782, -0.017957106232643127, 0.019361913204193115, -0.004492330364882946, -0.023832866922020912, 0.007567637600004673, 0.0038876524195075035, 0.016601162031292915, 0.013901487924158573, -0.02594618685543537, 0.02724105305969715, 0.021890567615628242, -0.00574749568477273, 0.01839687116444111, -0.009662633761763573, -0.0013620526297017932, 0.0014674131525680423, 0.0027424287982285023, -0.004089211579412222, -0.005106170196086168, 0.023588553071022034, -0.009375563822686672, 0.014219095930457115, 0.002136223716661334, -0.0018537353025749326, -0.005124493967741728, 0.013315132819116116, 0.00593378534540534, 0.014622215181589127, -0.020375818014144897, 0.0027149433735758066, -0.0022675427608191967, 0.013840408995747566, 0.0027806030120700598, -0.012838720344007015, 0.0019010711694136262, -0.016564514487981796, -0.015379589982330799, -0.027460934594273567, 0.004693889990448952, 0.011892002075910568, -0.039188023656606674, -0.011684334836900234, 0.013986997306346893, -0.0041991532780230045, -0.015575041063129902, 0.015391805209219456, -0.000531383731868118, -0.02670356072485447, 0.03706248849630356, -0.00251949205994606, 0.01740739867091179, 0.034350600093603134, 0.005964324343949556, -0.02291668765246868, 0.008221178315579891, -0.002901233034208417, 0.005607014987617731, 0.019093168899416924, 0.022941119968891144, -0.013302917592227459, 0.018103694543242455, 0.0007566110580228269, -0.007781412918120623, -0.01948407106101513, 0.03872382640838623, 0.025017792358994484, 0.03630511462688446, 0.00534743070602417, 0.003289082320407033, -0.0020888878498226404, -0.01047497894614935, 0.012667699716985226, -0.02455359511077404, -0.006584272254258394, -0.007555421907454729, 0.02373514138162136, 0.00637660501524806, -0.0010856719454750419, -0.034179579466581345, -2.3250424419529736e-05, 0.015794923529028893, -0.009748143143951893, 0.01007796823978424, 0.008160100318491459, 0.000145347963552922, 0.0005848275031894445, -0.0005978067056275904, 0.006730861030519009, 0.006700321566313505, 0.0038968143053352833, -0.013034171424806118, 0.017114222049713135, 0.006107859313488007, -0.004299933090806007, 0.012282905168831348, 0.008990769274532795, -0.023686278611421585, 0.012667699716985226, -0.004092265851795673, 0.009491613134741783, -0.011501098982989788, -0.011140734888613224, 0.036353979259729385, 0.005744441412389278, 0.006309418473392725, 0.013571662828326225, 0.02912227250635624, -0.009112926200032234, 0.02424820140004158, 0.02179284207522869, -0.013608310371637344, 0.018103694543242455, -0.009797005914151669, -0.02714332565665245, 0.00400980981066823, -0.044123176485300064, -0.016906553879380226, -0.0061048055067658424, -0.015147491358220577, -0.012716563418507576, 0.0034967493265867233, -0.008404414169490337, 0.01879999041557312, 0.012026375159621239, 0.0033562686294317245, -0.010554380714893341, -0.001268907799385488, 0.0064437915571033955, 0.0066392431035637856, -0.021230919286608696, -0.003179140854626894, -0.010328389704227448, -0.017456261441111565, -0.010468870401382446, 0.01855567656457424, 0.0031455475836992264, 0.0025271268095821142, -0.019227540120482445, -0.004519816022366285, 0.016161395236849785, 0.01658894494175911, -0.01737075112760067, -0.008587650023400784, 0.010884204879403114, -0.003756333375349641, -0.008355551399290562, -9.858466364676133e-05, 0.02557971514761448, 0.004754968453198671, 0.004620595369488001, 0.008758669719099998, 0.00955269206315279, 0.014329037629067898, 0.012557758949697018, 0.021023251116275787, 0.009577123448252678, 0.024907849729061127, 0.0040037017315626144, 0.0214263703674078, 0.001384193659760058, -0.00965652521699667, 0.0211454089730978, -0.028413761407136917, 0.017932673916220665, -0.011537746526300907, -0.0033318372443318367, -0.0031333318911492825, -0.005121440161019564, -0.004898502957075834, -0.00037162506487220526, -0.0007642458658665419, -0.008966336958110332, 0.008056266233325005, -0.004235800355672836, -0.0074821277521550655, 0.03156541660428047, 0.021572958678007126, -0.013950350694358349, 0.006706429645419121, 0.019117599353194237, 0.0037777109537273645, -0.012899798341095448, 0.018164772540330887, -0.0009406103054061532, -0.012117993086576462, -0.012313444167375565, -0.002673715353012085, -0.0027347940485924482, -0.008758669719099998, -0.0021026304457336664, -0.01021844893693924, 0.02196386270225048, 0.004348795861005783, 0.0031394397374242544, 0.02983078546822071, 0.0006447609048336744, 0.004568678792566061, 0.013095250353217125, -6.4180239860434085e-06, 0.012038590386509895, 0.004596163984388113, -0.0200948566198349, 0.03320232406258583, -0.024834556505084038, -0.016845475882291794, 0.00575665757060051, -0.0030294982716441154, 0.003912083804607391, -0.007818059995770454, 0.003182194661349058, 0.049400366842746735, -0.011464451439678669, -0.003298243973404169, 0.01032228209078312, 0.016320200636982918, 0.00684691034257412, -0.00169187702704221, -0.008489924483001232, -0.0057322257198393345, 0.015684982761740685, 0.009870301000773907, 0.02196386270225048, 0.01941077597439289, -0.018519029021263123, 0.00927783828228712, -0.007958540692925453, -0.016918770968914032, 0.024370359256863594, -0.0037471717223525047, -0.009961917996406555, 0.024883419275283813, 0.018946578726172447, -0.015184137970209122, 0.00704236188903451, 0.006382713094353676, -0.018983226269483566, 0.008190639317035675, 0.0348636619746685, 0.016576729714870453, -0.006202531047165394, 0.02325872890651226, 0.016307983547449112, -0.013290701434016228, 0.006315526552498341, 0.013425074517726898, -0.00619031535461545, 0.021304212510585785, -0.036622725427150726, 0.006141452584415674, -0.00014343926159199327, 0.014316822402179241, 0.011189598590135574, 0.011910325847566128, -0.028731370344758034, 0.010817018337547779, 0.0167599655687809, 0.01352280005812645, 0.007976864464581013, 0.01693098619580269, 0.012179071083664894, 0.017382968217134476, 0.002574462676420808, 0.00010459709301358089, 0.0063399579375982285, -0.0020598755218088627, -0.014915392734110355, 0.014646646566689014, -0.040507324039936066, 0.0010474978480488062, 0.031345535069704056, -0.005887976381927729, -0.00790357030928135, 0.024101613089442253, -0.00015155125583987683, 0.006853017956018448, 0.03439946472644806, 0.002331675263121724, 0.02948874421417713, -0.00495652761310339, -0.017590634524822235, -0.005982648115605116, 0.005976540502160788, 0.0035853134468197823, 0.01872669719159603, -0.03266483172774315, -0.01900765858590603, -0.014121370390057564, 0.008618189021945, 0.015061981044709682, -0.005222219508141279, 0.005359646398574114, 0.005661985371261835, 0.010621567256748676, 0.004825208801776171, 0.00704236188903451, -0.0020720912143588066, 0.027534229680895805, 0.01777387037873268, -0.003634176217019558, 0.00012397045793477446, 0.0006409434718079865, 0.006987391039729118, 0.01522078551352024, -0.00464808102697134, -0.021169839426875114, 0.013510584831237793, 0.0033318372443318367, -0.016014806926250458, -0.0008352497825399041, -0.00965652521699667, -0.011623255908489227, 0.008080697618424892, -0.009381671436131, 0.008263933472335339, 0.016161395236849785, -0.01340064313262701, -0.0280961524695158, 0.007763089146465063, 0.017187515273690224, 0.019740602001547813, 0.010426116175949574, -0.009112926200032234, 0.02714332565665245, -0.006202531047165394, -0.0053810239769518375, 0.010084075853228569, 0.010939176194369793, 0.06425467878580093, 0.001058950088918209, -0.007451588287949562, 0.010102399624884129, -0.014267959631979465, -0.017150869593024254, 0.011012470349669456, 0.02496892772614956, -0.01016958523541689, 0.0030264442320913076, 0.01326627004891634, -0.005460426211357117, 0.015098627656698227, 0.019251972436904907, -0.003075307235121727, 0.015037549659609795, 0.009015200659632683, -0.005396293476223946, 0.01006575208157301, -0.01042000763118267, 0.03762441128492355, 0.01287536695599556, 0.014646646566689014, 0.014524489641189575, -0.017517339438199997, 0.006165883969515562, -0.020754504948854446, -0.002658445853739977, 0.01641792617738247, 0.01845795102417469, 0.00011060951510444283, -0.0158071406185627, -0.00471832137554884, -0.029268860816955566, 0.036696016788482666, -0.019838327541947365, -0.00028726024902425706, -0.004193045198917389, 0.01032228209078312, 0.00018304490367881954, -0.020998820662498474, 0.023051060736179352, -0.030637022107839584, -0.012838720344007015, -0.023551905527710915, 0.01343729067593813, 0.021572958678007126, -0.0074454802088439465, 0.0061475601978600025, -0.015159706585109234, -0.001601786119863391, -0.010664322413504124, 0.018201420083642006, -0.008386090397834778, 0.009051847271621227, 0.005197788123041391, 0.0007356153219006956, 0.014487842097878456, -0.01369382068514824, 0.0004088448185939342, -0.01801818422973156, 0.01098193135112524, 0.0004882469947915524, 0.000291077682049945, -0.008551003411412239, -0.0034295630175620317, 0.00406172638759017, -0.0029165027663111687, 0.011873678304255009, 9.734400373417884e-05, 0.0005019896780140698, -0.009558799676597118, 0.006956851575523615, -0.01559947244822979, 0.013461722061038017, -0.014756588265299797, -0.008984660729765892, -0.0026309604290872812, 0.005811627954244614, 0.01185535453259945, -0.014719940721988678, 0.023441964760422707, -0.009222867898643017, 0.0005787196569144726, 0.0008726603700779378, 0.004788561724126339, -0.0002885963476728648, 0.0062361243180930614, 0.012130208313465118, 0.015892649069428444, 0.006517085712403059, 0.002490479499101639, -0.02843819186091423, 0.01239895448088646, -0.019019873812794685, 0.004217477049678564, -0.012582190334796906, -0.001606366946361959, -0.006578164640814066, -0.004571732599288225, 0.015367373824119568, -0.01508641242980957, -0.03300687298178673, -0.022733451798558235, 0.020168151706457138, -0.009601554833352566, -0.01304638758301735, 0.006987391039729118, -0.0033868078608065844, 0.010499410331249237, -0.030612589791417122, -0.0006203294615261257, -0.0008810586878098547, -0.007708118297159672, 0.0025225458666682243, 0.012716563418507576, -0.0140480762347579, 0.005264974664896727, -0.011091872118413448, 0.01712643727660179, -0.0164790041744709, 0.02159739099442959, 0.02333202213048935, -0.019911620765924454, -0.017077574506402016, 0.016711102798581123, -0.008434954099357128, 0.002325567416846752, -0.012777641415596008, 0.001379612716846168, 0.014341253787279129, 0.010542165488004684, -0.01872669719159603, -0.0024675752501934767, 0.012099669314920902, 0.02946431376039982, -0.02611720561981201, 0.018580107018351555, -0.018140342086553574, -0.022599078714847565, 0.015953728929162025, -0.008508248254656792, -0.0015491058584302664, 0.011977512389421463, -0.01417023316025734, -0.010139046236872673, 0.012814288958907127, 0.011354510672390461, -0.022061588242650032, 0.025799596682190895, -0.018091479316353798, -4.0273698687087744e-05, -0.007695902604609728, -0.016405709087848663, 0.017969321459531784, -0.011275107972323895, -0.004907664842903614, -0.008758669719099998, -0.01590486615896225, 0.008489924483001232, -0.002594313118606806, 0.01365717314183712, -0.006028457079082727, -0.002661499660462141, -0.01746847666800022, -0.011708766222000122, 0.011507206596434116, 0.009491613134741783, -0.020864447578787804, 0.03408185392618179, 0.012887583114206791, -0.0033440529368817806, 0.005927677266299725, -0.011635472066700459, 0.002148439409211278, -0.00254545034840703, -0.0037777109537273645, -0.026556972414255142, -0.033837541937828064, 0.00046190686407499015, -0.03000180423259735, -0.008990769274532795, -0.04695722088217735, -0.00169187702704221, 0.01522078551352024, -0.020888878032565117, -0.004409874323755503, -1.3146212950232439e-05, 0.006031510885804892, -0.00016701177810318768, 0.010041320696473122, -0.032884713262319565, 0.0211454089730978, -0.010902528651058674, -0.0006245286203920841, -0.006791939493268728, 0.014585567638278008, 0.013107465580105782, 0.02087666280567646, -0.021585173904895782, 0.014463410712778568, 0.0072255972772836685, 0.0107131851837039, -0.02948874421417713, -0.02687458135187626, -0.004073942080140114, -0.004825208801776171, 0.011146843433380127, -0.02493228204548359, 0.008153991773724556, -0.004058672580868006, -0.01032228209078312, -0.002484371652826667, 0.023319806903600693, 0.005793304648250341, -0.004858802072703838, 0.00639492878690362, 0.012594405561685562, -0.02285560965538025, 0.038601670414209366, -0.010658214800059795, -0.015013118274509907, 0.011800384148955345, -0.0007230178453028202, 0.009778683073818684, -0.005048145540058613, -0.0007730259094387293, -0.001920921728014946, 0.006217800546437502, 0.019557366147637367, 0.019984915852546692, -0.008441061712801456, 0.021340860053896904, 0.016320200636982918, -0.0018583161290735006, 0.008685375563800335, 0.012447817251086235, -0.009595447219908237, -0.019080951809883118, 0.02386951446533203, -0.0029210837092250586, 0.005326053127646446, -0.004800777416676283, 0.00031531823333352804, 0.002574462676420808, -0.0027271590661257505, 0.0054970732890069485, 0.014719940721988678, -0.007567637600004673, 0.014512273482978344, -0.005811627954244614, 0.0003872764646075666, 0.01261883694678545, -0.0021026304457336664, -0.028829095885157585, 0.007677579298615456, -0.005399347748607397, 0.0140480762347579, 0.003918191883713007, 0.00968706514686346, 0.014145801775157452, 0.003438724670559168, 0.003405131632462144, 0.022977765649557114, 0.0010177220683544874, 0.0004947365960106254, 0.015684982761740685, -0.01512305997312069, 0.0018002914730459452, -0.011317863129079342, -0.007103440351784229, -0.006907988805323839, 0.014255743473768234, 0.001178053324110806, 0.005631446372717619, -0.00425717793405056, -0.00599486380815506, 0.004269393626600504, -0.011837031692266464, 0.005906299687922001, 0.0003670441801659763, -0.016747750341892242, 0.020595701411366463, -0.018885500729084015, 0.029268860816955566, -0.02489563450217247, 0.025726303458213806, -0.003957892768085003, 0.004779399838298559, 0.02030252479016781, 0.00031379127176478505, 0.027778543531894684, -0.005377970170229673, 0.008599866181612015, -0.0012368415482342243, -0.022672373801469803, -0.0014177868142724037, 0.010132938623428345, -0.013864840380847454, 0.02226925455033779, 0.01743183098733425, 0.00012645177775993943, -0.003322675358504057, 0.009735927917063236, 0.004272447433322668, -0.00839219894260168, 0.001066584954969585, -0.015196354128420353, 0.006932420190423727, -0.015892649069428444, 0.010236771777272224, 0.005078685004264116, 0.015990374609827995, 0.015538393519818783, 0.020559053868055344, -0.011043009348213673, -0.0057047405280172825, 0.014377900399267673, -0.006266663782298565, 0.004959581885486841, -0.016613377258181572, -0.013327348977327347, 0.009900839999318123, -0.01638127863407135, 0.020082641392946243, 0.017786085605621338, 0.02101103588938713, -0.051306016743183136, -0.011116303503513336, 0.0022980819921940565, -0.005283298436552286, -0.005326053127646446, 0.016430141404271126, 0.007152303121984005, -0.012014159001410007, -0.007579853292554617, 0.017321888357400894, -0.012667699716985226, -0.027509797364473343, -0.0004977905191481113, 0.014915392734110355, 0.0008444115519523621, 0.0011253730626776814, -0.0016414871206507087, -0.02411382831633091, 0.012545542791485786, 0.002763806376606226, 0.0036922008730471134, -0.0028462624177336693, -0.014292391017079353, 0.002343890955671668, 0.005607014987617731, 0.01132397074252367, -0.01569719798862934, 0.019093168899416924, -0.0219027828425169, -0.010163477621972561, -0.02513994835317135, 0.013583878986537457, -0.009742035530507565, 5.1439626986393705e-05, -0.005744441412389278, -0.004541193135082722, -0.0030356061179190874, 0.018922148272395134, 0.013217407278716564, 0.019422993063926697, 0.018604539334774017, 0.0013422020711004734, 0.006718645337969065, -0.005008444655686617, -0.01859232410788536, 0.002311824820935726, -0.01340064313262701, -0.006565948482602835, 0.010102399624884129, 0.010859773494303226, -0.004776346031576395, -0.009149572812020779, -0.0149520393460989, -0.014634430408477783, -0.02087666280567646, -0.009100710041821003, -0.01261883694678545, -0.02022922970354557, 0.024700183421373367, -0.0009856558172032237, -0.007201165892183781, 0.001486500259488821, 0.0033684843219816685, 0.00994359515607357, -0.008593757636845112, 0.021230919286608696, 0.004611433949321508, 0.010487194173038006, 0.034350600093603134, 0.006669782102108002, 0.02159739099442959, -0.0034753719810396433, -0.001592624350450933, -0.007714226376265287, -0.00047450431156903505, -0.01161104068160057, -0.01597815938293934, 0.0053535387851297855, -0.012392846867442131, -0.004422090016305447, -0.028462624177336693, -0.007359970360994339, -0.06850574910640717, -0.009509936906397343, 0.0059124077670276165, 0.01889771595597267, 0.005454318132251501, 0.005494019482284784, -0.004849640186876059, -0.0021621822379529476, 0.016198042780160904, -0.00360974483191967, -0.017859380692243576, -0.02506665512919426, -0.007408833131194115, -0.008373875170946121, -0.01950850337743759, 0.008306688629090786, -0.0016506490064784884, 0.031492121517658234, -0.029146704822778702, -0.009454966522753239, -0.018922148272395134, 0.009064063429832458, 0.012936445884406567, -0.011403373442590237, 0.019801679998636246, -0.0012437128461897373, 0.002684404142200947, -0.016124747693538666, -0.014109155163168907, -0.015794923529028893, -0.004290771204978228, -0.03171200677752495, 0.0007818060112185776, 0.01198972761631012, 0.0037685490678995848, -0.0036952549125999212, -0.012960877269506454, -0.020925525575876236, 0.002556139137595892, 0.00593378534540534, -0.008117345161736012, -0.019765032455325127, 0.026166068390011787, 0.008831964805722237, -0.01056048832833767, 0.027265483513474464, -0.006303310859948397, -0.0029531498439610004, 0.003536450443789363, 0.022880040109157562, -0.023112138733267784, -0.02241584286093712, 0.010786479339003563, 0.007530990522354841, -0.0027973996475338936, 0.00657205656170845, 0.026923444122076035, -0.027363209053874016, 0.009155681356787682, -0.014866529032588005, 0.02434592694044113, 0.008196746930480003, 0.008893042802810669, 0.00535659259185195, -0.011397265829145908, 0.008795317262411118, -0.007604284677654505, -0.0030478218104690313, 0.0399942621588707, 0.03215176984667778, -0.020681211724877357, -0.0027378478553146124, -0.024907849729061127, 0.013718252070248127, -0.010792586952447891, 0.0028523702640086412, 0.005698632914572954, 0.014145801775157452, 0.0006962959305383265, -0.005213058087974787, -0.006798047572374344, 0.017444046214222908, 0.002948569133877754, -0.0076409317553043365, 0.0021056844852864742, 0.005051199812442064, 0.007781412918120623, 0.0019774194806814194, -0.007097332272678614, -0.0028416814748197794, 0.04226638749241829, 0.00827614963054657, -0.0021576012950390577, 0.010291743092238903, 0.014634430408477783, 0.01927640475332737, -0.014707725495100021, 0.023759571835398674, 0.006816370878368616, -0.01304638758301735, -0.0061048055067658424, -0.016307983547449112, -0.019740602001547813, 0.012325660325586796, -0.006584272254258394, -0.006117021199315786, -0.037380099296569824, -0.014854313805699348, -0.010413900017738342, 0.034277305006980896, 0.0008772413129918277, 0.0018919094000011683, -0.0003239074139855802, 0.016454573720693588, 0.0072866762056946754, 0.011244568973779678, -0.019740602001547813, -0.006297202780842781, -0.012973093427717686, 0.027876269072294235, -0.009650417603552341, -0.020681211724877357, -0.011617148295044899, -0.018164772540330887, 0.008166207931935787, -0.011091872118413448, 0.011488882824778557, -0.0006779723917134106, -0.006058996543288231, 0.005591745022684336, -0.010255095548927784, 0.021438585594296455, -0.008722023107111454, 0.0038204658776521683, 0.027167757973074913, -0.00047297735000029206, -0.03794202208518982, 0.003179140854626894, -0.00573833379894495, -0.0005371098523028195, 0.006315526552498341, 0.010755940340459347, 0.0027179974131286144, -0.011122412048280239, -0.018946578726172447, -0.017309673130512238, -0.00491377292200923, 0.009583231061697006, 0.011788167990744114, -0.007207273971289396, -0.004034241195768118, -0.004483168479055166, 0.01665002480149269, 0.026556972414255142, 0.0021056844852864742, 0.03654943034052849, 0.004519816022366285, -0.0030447677709162235, 0.0036127986386418343, 0.01818920485675335, -0.0006825532764196396, 0.014060292392969131, -0.0007970756269060075, 0.013156329281628132, -0.03166314214468002, 0.01482988242059946, 0.0029439881909638643, 0.015245216898620129, -0.019056521356105804, -0.014500058256089687, 0.0012360779801383615, 0.016466788947582245, 0.001704092719592154, 0.004281609319150448, 0.010236771777272224, 0.0003538740857038647, -0.010743724182248116, 0.0052619208581745625, 0.002543923445045948, -0.04497827589511871, 0.01801818422973156, -0.005576475523412228, -0.0025973671581596136, -0.012679915875196457, 0.005649769678711891, -0.01651565171778202, 0.01757841929793358, 0.029073409736156464, -0.0024752099998295307, 0.005307729821652174, 0.016466788947582245, -0.0024996413849294186, -0.0001908706035465002, -0.016808828338980675, 0.0010039793560281396, -0.0008917474769987166, 0.006840802263468504, 0.003524234751239419, 0.012093561701476574, 0.014255743473768234, -0.010194017551839352, -0.005179464817047119, 0.004153344314545393, -0.011293431743979454, -0.02298998273909092, -0.021401938050985336, 0.00014105337322689593, 0.0045503550209105015, 0.006901881191879511, -0.013290701434016228, -0.029171135276556015, -0.04138685390353203, 0.010487194173038006, 0.016442356631159782, -0.006037618964910507, 0.010749832727015018, 0.013339564204216003, -0.013376211747527122, 0.020815584808588028, -0.013254054822027683, -0.000688279396854341, -0.010248987935483456, 0.02169511653482914, 0.008092913776636124, 0.015233000740408897, 0.00926562212407589, -0.0018812206108123064, -0.018751127645373344, -0.003542558290064335, 0.022757884114980698, 0.006944635882973671, 0.006233070511370897, -0.007469912059605122, 0.015110843814909458, 0.015428452752530575, 0.008031834848225117, 0.025530852377414703, 0.014500058256089687, -0.0021713438909500837, 0.005005390848964453, -0.007738657761365175, 0.0075981770642101765, -0.0002021319669438526, 0.021475233137607574, -0.0167599655687809, -0.017737222835421562, -0.005142817273736, 0.009155681356787682, -0.02738764137029648, -0.01234398316591978, -0.034008558839559555, 0.006865233648568392, -0.018042616546154022, 0.053113944828510284, 0.007934109307825565, -0.005170302931219339, -0.013681604526937008, 0.016124747693538666, 0.027118895202875137, 0.020620133727788925, 0.00572917191311717, 0.0053810239769518375, 0.007964648306369781, -0.013644957914948463, -0.013510584831237793, -0.03654943034052849, 0.0066392431035637856, -0.005035929847508669, 0.001180343795567751, 0.002478263806551695, 0.0075981770642101765, -0.006413252092897892, 0.011794276535511017, -0.014585567638278008, -0.021072113886475563, -0.010920852422714233, 0.0017483746632933617, 0.0013154802145436406, 0.022183744236826897, -0.0017666983185335994, -0.027167757973074913, 0.0006573583814315498, 0.008294472470879555, -0.0074821277521550655, 0.028218310326337814, 0.017798302695155144, 0.003304351819679141, 0.00797075591981411, -0.0045503550209105015, -0.0051855724304914474, -0.0060925898142158985, 0.010432223789393902, 0.01418244931846857, -0.004929042421281338, -0.042388543486595154, -0.009351132437586784, 0.03144326061010361, -0.025604145601391792, -0.026214931160211563, -0.0041228048503398895, -0.003625014564022422, -0.01132397074252367, -0.0035608820617198944, 0.010273419320583344, -0.0023851189762353897, -0.00619947724044323, -0.02680128626525402, -0.025824028998613358, 0.0008001295500434935, 0.009064063429832458, -0.024064965546131134, 0.006272771395742893, 0.019386345520615578, 0.008819748647511005, 0.0007417231681756675, 0.03984767198562622, -9.92527129710652e-05, -0.004727483261376619, 0.0033471069764345884, 0.016051454469561577, 0.016540082171559334, -0.010145153850317001, 0.006627027411013842, 0.007567637600004673, 0.009625986218452454, 0.0028157231863588095, -0.004269393626600504, 0.004480114672333002, 0.0034570484422147274, 0.006987391039729118, -0.0006142216152511537, 0.014609999023377895, -0.007543206214904785, 0.003438724670559168, -0.008984660729765892, 0.014402331784367561, -0.001168891554698348, 0.0018628970719873905, -0.007543206214904785, -0.02013150416314602, 0.004693889990448952, -0.004925988614559174, -0.00209804973565042, -0.005298567935824394, 0.00853267963975668, -0.0019255026709288359, 0.01096360757946968, 0.009424426592886448, 0.0234297476708889, -0.0058849225752055645, -0.0045106541365385056, -0.012655484490096569, -0.0015681928489357233, 0.014329037629067898, -0.02377178892493248, 0.018262499943375587, -0.008325012400746346, 0.0015193299623206258, -0.01801818422973156, -0.012069130316376686, 0.0017957106465473771, -0.00490461103618145, -0.0011146842734888196, -0.015196354128420353, -0.0033807000145316124, 0.006254448089748621, 0.004229692742228508, 0.009815329685807228, 0.0016827152576297522, -0.0022873932030051947, 0.01689433865249157, 0.006510978098958731, 0.003487587673589587, 0.00839219894260168, -0.009106818586587906, -0.012716563418507576, 0.00172241625841707, -0.02643481455743313, -0.011232352815568447, 0.02533539943397045, 0.03422844409942627, 0.010853665880858898, -0.0016750803915783763, -0.01900765858590603, 0.0011498044477775693, -0.022709021344780922, -0.0003895669069606811, -0.00637660501524806, -0.033837541937828064, 0.03102792426943779, -0.007873030379414558, -0.024834556505084038, -0.023283159360289574, 0.011659903451800346, -0.0038204658776521683, 0.018604539334774017, -0.0018735858611762524, 0.018164772540330887, -0.009112926200032234, 0.01546509936451912, 0.012350091710686684, -0.008184531703591347, -0.013632741756737232, -0.012203502468764782, 0.011586609296500683, -0.0039640008471906185, 0.004525923635810614, -0.007524882443249226, 0.008221178315579891, -0.0015567406080663204, 0.0024003887083381414, 0.013351780362427235, -0.01763949729502201, 0.007891354151070118, 0.00529551412910223, 0.0191420316696167, 0.017175300046801567, 0.0038754367269575596, -0.013681604526937008, 0.007909677922725677, -0.03501024842262268, -0.019557366147637367, -0.004012863617390394, 0.012417278252542019, -0.0196184441447258, 0.007298891898244619, -0.023551905527710915, 0.004086157772690058, -0.02485898695886135, -0.0027928187046200037, 0.01771279238164425, -0.0029531498439610004, -0.010255095548927784, -0.0008421210804954171, 0.021401938050985336, 0.012643268331885338, 0.015355158597230911, 0.002960784826427698, -0.024370359256863594, -0.008331120014190674, 0.009387779980897903, -0.002551558194682002, 0.0107131851837039, -0.002262961817905307, -0.0038723826874047518, 0.0015804085414856672, 0.024394789710640907, -0.007512666750699282, 0.016943201422691345, 0.0002530944184400141, 0.013840408995747566, 0.00026740971952676773, 0.011916433461010456, -0.02339310012757778, -0.003206626046448946, -0.0025347615592181683, -0.03794202208518982, 0.008807533420622349, -0.024920064955949783, -0.02601948007941246, -0.006168937776237726, 0.0011879786616191268, 0.003719686297699809, 0.0046267034485936165, -0.0010093237506225705, 0.010505517944693565, 0.02176840975880623, -0.006749184336513281, -0.012679915875196457, -0.020241444930434227, 0.008996876887977123, -0.018384655937552452, -0.00529551412910223, -0.012557758949697018, 0.016442356631159782, -0.01151331514120102, -0.009088494814932346, 0.007512666750699282, -0.002849316457286477, 0.019740602001547813, 0.011635472066700459, -0.004351849667727947, -0.004947366192936897, 0.018763342872262, 0.003847951302304864, -0.01988719031214714, -0.011745413765311241, -0.018482381477952003, -0.022696804255247116, 0.003334891051054001, -0.005203896202147007, 0.01792045868933201, -0.02176840975880623, 0.015856003388762474, -0.009082386270165443, 0.018030401319265366, 0.027778543531894684, 0.00424801604822278, 0.0032432733569294214, 0.0007031672867015004, 0.00533826882019639, 0.030905768275260925, 0.029684195294976234, -0.007811951916664839, 0.000593607546761632, -0.010786479339003563, -0.009381671436131, 0.003960946574807167, -0.016100317239761353, -0.00016157196660060436, 0.0033745921682566404, -0.021328644827008247, 0.017566204071044922, 0.01353501621633768, -0.007738657761365175, -0.005710848607122898, 0.026043912395834923, -0.0055612060241401196, -0.002882909495383501, -0.02316100150346756, -0.019459638744592667, 0.021499665454030037, 0.02479790896177292, -0.008398306556046009, -0.004645026754587889, 0.0028340467251837254, 0.009345024824142456, 0.0020018508657813072, -0.011018577963113785, 0.011470559984445572, 0.0058360593393445015, -0.009002984501421452, -0.01927640475332737, 0.004944311920553446, -0.009705387987196445, 0.014524489641189575, -0.02380843460559845, 0.0053535387851297855, -0.028902389109134674, -0.022770099341869354, 0.0012223353842273355, 0.01171487383544445, 0.004871017765253782, -0.015843786299228668, -0.004336580168455839, -0.003945677075535059, 0.0031272240448743105, 0.013815977610647678, -0.0065354094840586185, -0.019325267523527145, 0.0036983087193220854, -0.004110589157789946, -0.007524882443249226, 0.02645924687385559, 0.0003435670805629343, 0.01583157107234001, 0.006184207275509834, 0.004812993109226227, -0.016735535115003586, 0.0030737800989300013, 0.011024685576558113, -0.005582583136856556, 0.021414155140519142, -0.0002225551288574934, 0.008758669719099998, 0.011348402127623558, 0.006761400029063225, 0.021450800821185112, 0.0022614349145442247, 0.005472641903907061, -0.00015613215509802103, 0.026337089017033577, -0.00212858896702528, 0.009485505521297455, -0.01760284975171089, -0.005142817273736, 0.002777548972517252, -0.0019545149989426136, -0.01822585240006447, -0.012667699716985226, 0.008160100318491459, -4.327990973251872e-05, -0.018103694543242455, 0.007763089146465063], "fe0c19af-46e7-46d9-8fd6-66508ffc9f88": [-0.006526753306388855, -0.017991673201322556, -0.0005095177912153304, 0.029875289648771286, -0.03448095917701721, -0.01692030020058155, -0.02140282467007637, 0.003777512349188328, -0.011317144148051739, 0.04948017746210098, -0.008343161083757877, 0.018755178898572922, 0.008897319436073303, 0.003752883058041334, -0.019026100635528564, 0.008164598606526852, -0.006840776186436415, 0.007130170240998268, -0.022634288296103477, -0.011218626983463764, 0.02800346538424492, -0.01348451804369688, -0.02215401642024517, -0.0015470252837985754, -0.003055567154660821, -0.041623443365097046, -0.009125139564275742, 0.005024368409067392, -0.0038514002226293087, -0.017265109345316887, 0.0037990629207342863, -0.015110049396753311, 0.03773202374577522, 0.025368135422468185, 0.0017994751688092947, -0.020417654886841774, -0.01756066083908081, 0.01870592124760151, 0.028766972944140434, 0.020663946866989136, -0.024013526737689972, 0.030712684616446495, -0.01822565123438835, 0.005834055598825216, -0.018853696063160896, -0.014297284185886383, -0.05002202093601227, -0.010245771147310734, 0.008952734991908073, -0.003124837065115571, -0.005695515777915716, -0.003765197703614831, -0.03142693266272545, 0.01046743430197239, 0.028126612305641174, -0.028594568371772766, -0.002964746905490756, 0.0793062075972557, -0.004448659718036652, -0.09240897744894028, -0.015713466331362724, -0.058075789362192154, 0.010116467252373695, -0.004507154226303101, 0.01789315603673458, 0.005618549417704344, 0.001248395536094904, 0.02341010980308056, -0.0083616329357028, 0.015935130417346954, 0.00674841646105051, 0.03854478895664215, -0.022609658539295197, 0.03805220127105713, 0.03179636970162392, 0.01316433772444725, 0.015331712551414967, 0.009346803650259972, 0.02930881641805172, -0.03610649332404137, 0.030047694221138954, -0.01220379676669836, 0.035219836980104446, -0.015023847110569477, 0.02655033953487873, 0.026402564719319344, -0.032018035650253296, -0.04260861501097679, -0.01496227364987135, -0.02891474775969982, 0.002262813039124012, 0.013669237494468689, -0.00804145261645317, 0.03354504704475403, 0.021981611847877502, 0.0008204621262848377, 0.0026183980517089367, 0.013533776625990868, 0.014826812781393528, -0.02014673314988613, -0.004436344839632511, 0.06438087671995163, 0.01658780500292778, 0.013262854889035225, -0.002302835462614894, 0.003055567154660821, 0.005341470241546631, 0.03743647038936615, -0.00038791081169620156, -0.003077117959037423, -0.006736102048307657, -0.06615418940782547, 0.005938729736953974, 0.0027707915287464857, -0.009088195860385895, -0.034776512533426285, -0.025195730850100517, 0.01149570569396019, -0.009703927673399448, -0.014752925373613834, 0.024543054401874542, -0.009174398146569729, 0.023594828322529793, 0.0017363626975566149, -0.01687104068696499, 0.01687104068696499, -0.0037313324864953756, 0.028569938614964485, 0.0451454296708107, 0.02674737386405468, -0.00247370102442801, 0.0044640530832111835, 0.03531835600733757, -0.011163211427628994, -0.008392419666051865, 0.002578375395387411, 0.005750931799411774, 0.05502176284790039, -0.014740610495209694, 0.03514594957232475, -0.024530740454792976, 0.024752404540777206, -0.007752059027552605, -0.018755178898572922, 0.00866949837654829, -0.022966783493757248, -0.030318615958094597, 0.061326850205659866, -0.005153672304004431, 0.003284927224740386, -0.026698114350438118, -0.0028385219629853964, -0.04090919718146324, -0.024062784388661385, 0.047830019146203995, -0.003808298846706748, 0.007228686939924955, 0.05221402645111084, 0.014876071363687515, 0.04191899672150612, 0.012794898822903633, -0.04196825623512268, 0.03061416745185852, 0.00983938854187727, 0.04337212070822716, 0.030121581628918648, 0.04748521000146866, 0.03955458849668503, -9.606372623238713e-05, 0.009328330866992474, 0.01809019036591053, -0.0031894887797534466, 0.022511141374707222, -0.04539171978831291, 0.02566368691623211, -0.044184889644384384, 0.030737312510609627, 0.009611567482352257, 0.02994917705655098, -0.03418540954589844, -0.010910761542618275, -0.02480166219174862, 0.008478621952235699, -0.007394934538751841, -0.020109789445996284, 0.053002163767814636, 0.014826812781393528, 0.0432489775121212, -0.009328330866992474, 0.012918045744299889, -0.005560054909437895, -0.019444799050688744, -0.02042996883392334, 0.010750670917332172, -0.012819528579711914, -0.04221454635262489, -0.007419563829898834, -0.02471546083688736, -0.0203191377222538, 0.031156010925769806, 0.01895221322774887, -0.027461621910333633, 0.019407855346798897, 0.026033125817775726, -0.012493191286921501, -0.005412279162555933, -0.0006561388145200908, -0.03465336561203003, 0.02485092170536518, 0.016969557851552963, 0.05797727406024933, -0.004762682598084211, 0.01381701324135065, 0.0074257212691009045, 0.013324428349733353, 0.011988291516900063, 0.012419302947819233, 0.008250800892710686, -0.016957243904471397, -0.04413563013076782, 0.016649378463625908, -0.042928796261548996, 0.0034080734476447105, -0.0203191377222538, -0.03448095917701721, -0.021969297900795937, -0.05048997700214386, 0.01402636244893074, -0.026230160146951675, -0.0417465902864933, 0.01235773041844368, -0.009820916689932346, 0.029037894681096077, -0.039456069469451904, 0.014186452142894268, 0.04987424612045288, 0.04617985710501671, 0.007173271384090185, 0.011304829269647598, -0.014555891044437885, 0.015959758311510086, -0.0038452427834272385, 0.01021498441696167, -0.03492428734898567, 0.014629779383540154, 0.023841122165322304, -0.015122364275157452, 0.05970131978392601, 0.015541061758995056, 0.04196825623512268, 0.011033907532691956, 0.007197900675237179, 0.019161561504006386, -0.014826812781393528, -0.024309076368808746, -0.005347627680748701, 0.017277423292398453, 0.008367789909243584, -0.015528746880590916, -0.010953862220048904, -0.0033803656697273254, -0.012388516217470169, -0.006779203191399574, 0.017265109345316887, 0.052952904254198074, -0.03640204295516014, 0.04662318527698517, -0.01965414732694626, 0.006883877329528332, 0.03489965945482254, 0.02376723289489746, -0.020159047096967697, 0.0006068802904337645, 0.03790442645549774, -0.03812609240412712, -0.003383444156497717, -0.007197900675237179, 0.01433422788977623, -0.03014621138572693, -0.008503250777721405, -0.0033618935849517584, -0.03913589194417, 0.04723891615867615, -0.0052491105161607265, 0.02785569056868553, 0.03748572990298271, -0.024087414145469666, -0.058913182467222214, -0.019161561504006386, -0.0001710578944766894, 0.008066081441938877, 0.041648074984550476, -0.014038676396012306, 0.01744982972741127, 0.011458761990070343, -0.006440551020205021, 0.007942935451865196, -0.016846412792801857, 0.0171173345297575, -0.007536552846431732, -0.015590320341289043, -0.0005676274304278195, -0.03879107907414436, -0.02440759353339672, 0.02805272489786148, -0.011391031555831432, 0.07442961633205414, 0.03642667084932327, -0.005310683511197567, 0.0306387972086668, 0.005843291524797678, -0.034751880913972855, -0.015775039792060852, -0.04113085940480232, -0.00983938854187727, 0.0235209409147501, -0.03206729143857956, -0.01240083109587431, -0.028422163799405098, 0.0019965092651546, -0.01496227364987135, 0.026919778436422348, -0.012819528579711914, 0.04467747360467911, 0.028200499713420868, -0.039456069469451904, 0.014248025603592396, -0.01188361644744873, -0.02571294456720352, -0.006729944609105587, -0.038421642035245895, 0.01700650155544281, -0.00982707366347313, 0.034160781651735306, -0.035663165152072906, -0.03056490793824196, -0.04960332438349724, -0.04150030016899109, -0.023570198565721512, -0.010529007762670517, -0.039480701088905334, -0.0140140475705266, 0.009439162909984589, -0.030688054859638214, -0.03320023790001869, -0.017794638872146606, 0.0007627372979186475, 0.0267227441072464, 0.0042516253888607025, 0.006539067719131708, 0.0005822510574944317, 0.00025533614098094404, 0.030688054859638214, -0.004023804794996977, 0.023089928552508354, 0.003518905257806182, -0.02780643105506897, 0.010553636588156223, 0.031156010925769806, 0.023902693763375282, -0.03231358528137207, -0.034160781651735306, 0.02098412811756134, -0.06053871661424637, -0.0032171967905014753, 0.018410369753837585, 0.039702363312244415, 0.0028939377516508102, -0.036229636520147324, 0.008355475962162018, 0.02546665258705616, 0.030885089188814163, -0.025318875908851624, -0.013410630635917187, 0.004217760171741247, -0.04236232116818428, 0.040736790746450424, -0.0036666807718575, -0.03379134088754654, 0.01892758533358574, -0.015344027429819107, -0.013755440711975098, -0.04992350563406944, 0.02318844571709633, 0.02844679169356823, -0.014161823317408562, 0.021661432459950447, -0.031082123517990112, -0.04317509010434151, 0.01572578027844429, -0.019641833379864693, -0.0021196554880589247, -0.0038914226461201906, -0.01848425716161728, 0.023471683263778687, -0.017634548246860504, -0.002875465899705887, -0.04113085940480232, 0.02131662145256996, 0.011335615999996662, 0.0033218711614608765, -0.007924463599920273, -0.003866793354973197, -0.032215069979429245, -0.028323646634817123, -0.02997380681335926, 0.020442284643650055, 0.029653625562787056, 0.014297284185886383, 0.015738096088171005, 0.022646602243185043, -0.04132789373397827, -0.000554158294107765, 0.030441762879490852, 0.02780643105506897, 0.004479445982724428, -0.02159985899925232, 0.00822617206722498, -0.031131381168961525, 0.0031617810018360615, 0.060489457100629807, 0.023286962881684303, 0.019321652129292488, 0.033495791256427765, -0.025417393073439598, 0.017967043444514275, -0.011889774352312088, 0.013090450316667557, -0.016242995858192444, 0.004384007770568132, 0.018459629267454147, 0.02259734459221363, -0.0008366251131519675, 0.011274042539298534, -0.0016178343212231994, -0.018890639767050743, 0.016009017825126648, 0.01987581141293049, 0.015380971133708954, 0.001560879172757268, 0.0035804782528430223, 0.0024829369504004717, 0.013447574339807034, 0.006218887399882078, -0.04061364382505417, -0.0017871605232357979, -0.042707134038209915, -0.004082299303263426, 0.014100249856710434, 0.005156750790774822, 0.03216581046581268, 0.02001127228140831, -0.049135368317365646, 0.006588326301425695, 0.00610189838334918, 0.001454665558412671, 0.055071018636226654, 0.006883877329528332, -0.011834357865154743, -0.04455432668328285, -0.008977364748716354, -0.002478318987414241, 0.013866271823644638, -0.002324386266991496, -0.015799669548869133, -0.01981423795223236, -0.007739744149148464, 0.008084554225206375, 0.009691612794995308, 0.042510099709033966, -0.01842268370091915, -0.022338736802339554, -0.017745379358530045, 0.04265787452459335, 0.018545830622315407, -0.0133613720536232, -0.024444537237286568, -0.005797111429274082, 0.01778232306241989, 0.005304526537656784, 0.022301793098449707, -0.01853351667523384, -0.030441762879490852, 0.00263686990365386, -0.009297545067965984, 0.0118405157700181, -0.025762204080820084, -0.017166592180728912, 0.001217608922161162, 0.012154538184404373, -0.03302783519029617, -0.012099122628569603, 0.015688836574554443, 0.017166592180728912, 0.032412104308605194, -0.006569854449480772, 0.0280280951410532, -0.022917523980140686, -0.01698187366127968, -0.012166853062808514, 0.02418593131005764, 0.03251061961054802, -0.004738053306937218, 0.01694492995738983, -0.03403763473033905, 0.05216476693749428, -0.043963223695755005, 0.021021071821451187, 0.024653887376189232, 0.017265109345316887, -0.02657496929168701, -0.0057447743602097034, -0.02416130155324936, -7.913111039670184e-05, 0.005282975733280182, 0.008570981211960316, -0.020048215985298157, -0.03679611161351204, 0.012573235668241978, 0.001112164929509163, -0.0004529474535956979, -0.014580520801246166, -0.02084866724908352, 0.006853091064840555, -0.009414534084498882, -0.010153410956263542, -0.02908715233206749, -0.0327322818338871, 0.0037498045712709427, -0.013521462678909302, -0.025392765179276466, -0.0038883439265191555, -0.02549128234386444, 0.015060790814459324, -0.011003120802342892, 0.01284415740519762, -0.020269878208637238, -0.018385739997029305, 0.03167322650551796, 0.009771658107638359, 0.01337368693202734, 0.03470262512564659, 0.02257271483540535, 0.0018902955343946815, -0.0009082038886845112, 0.010750670917332172, 0.017572974786162376, 0.009919433854520321, -0.012954989448189735, -0.010079523548483849, -0.034801140427589417, -0.014605149626731873, -0.03933292254805565, -0.00013295951066538692, -0.008355475962162018, -0.04472673311829567, -0.015208566561341286, 0.018385739997029305, -0.02721532993018627, -0.03600797429680824, 0.004424030426889658, 0.002898555714637041, -0.0031032864935696125, 0.007881361991167068, -0.01106469426304102, 0.007776687853038311, -0.03719018027186394, 0.009753186255693436, 0.002946274820715189, 0.03630352392792702, 0.016329197213053703, 0.009666983969509602, 0.037756651639938354, 0.00918671302497387, -0.01060289517045021, 0.0076289125718176365, 0.018250279128551483, -0.042904168367385864, -0.018989156931638718, -0.004497918300330639, 0.018213335424661636, -0.017831582576036453, 0.031131381168961525, -0.0186197180300951, 0.020971812307834625, 0.00011381410877220333, -0.03292931616306305, -0.0004417872987687588, 0.0029293422121554613, 0.02168606035411358, 0.012770269997417927, 0.028791602700948715, 0.0021550599485635757, -0.006883877329528332, 0.008915791288018227, 0.049307774752378464, -0.009993321262300014, -0.019728034734725952, 0.03206729143857956, 0.025959236547350883, 0.03275691345334053, 0.0038175350055098534, 0.019333967939019203, -0.014395801350474358, -0.050440721213817596, 0.023557884618639946, -0.007930620573461056, 0.022732805460691452, 0.005356863606721163, 0.0006207342376001179, 0.001400019391439855, 0.0010721423896029592, 0.006520595867186785, -0.0118405157700181, 0.009174398146569729, -0.019518686458468437, -0.02093486860394478, 0.020688576623797417, 0.03588482737541199, -0.0046303002163767815, 0.02204318530857563, 0.014075621031224728, 0.033914487808942795, -0.0327322818338871, -0.022314107045531273, 0.016932614147663116, -0.02354557067155838, -0.025515910238027573, 0.0006068802904337645, 0.0016378456493839622, -0.009660826064646244, -0.010498221032321453, -0.005683201365172863, -0.0025183416437357664, 0.019851181656122208, -0.019567945972085, 0.006569854449480772, -0.0027646340895444155, -0.014592834748327732, -0.018385739997029305, 0.0014023283729329705, -0.014814498834311962, 0.003912973217666149, 0.032436732202768326, -0.0210703294724226, 0.04231306537985802, -0.015578005462884903, -0.006939293351024389, 0.006711472757160664, 0.018361112102866173, -0.009968692436814308, 0.02051617205142975, 0.0007638917886652052, 0.020947184413671494, -0.028766972944140434, -0.01150802057236433, -0.02524498850107193, 0.01714196242392063, 0.024752404540777206, 0.006754573900252581, 0.01661243475973606, -0.022917523980140686, 0.035441502928733826, 0.009981006383895874, 0.005363021045923233, 0.0029939941596239805, -0.03310172259807587, 0.02524498850107193, 0.004975109826773405, 0.040318094193935394, 0.025836091488599777, -0.02318844571709633, -0.014469688758254051, 0.0159720741212368, 0.011095480062067509, 0.004707267042249441, 0.006668371614068747, -0.013447574339807034, 0.007179428357630968, -0.03320023790001869, -0.02913641184568405, -0.034333184361457825, -0.022511141374707222, 0.02148902788758278, -0.015344027429819107, -0.004110007546842098, -0.007825946435332298, 0.016489287838339806, -0.03150082007050514, -0.021452084183692932, 0.0024952515959739685, 0.02738773450255394, -0.020836351439356804, 0.011902088299393654, 0.003035556059330702, -0.00804145261645317, 0.0002008823794312775, -0.009008150547742844, 0.0027707915287464857, -0.017412884160876274, -0.0076720137149095535, -0.0077151148580014706, -0.021107273176312447, -0.020269878208637238, 0.0009228275157511234, -0.029604367911815643, -0.008404734544456005, -0.0101595688611269, 0.00578171806409955, -0.012209954671561718, -0.014518947340548038, -0.00411308603361249, 0.00312021910212934, -0.0005349167040549219, 0.014900701120495796, -0.0013592271134257317, 0.009433005936443806, 0.013152023777365685, -0.018989156931638718, 0.018459629267454147, 0.008004508912563324, 0.03246136009693146, -0.0028616117779165506, -0.04344601184129715, -0.015220881439745426, 0.04191899672150612, -0.0306387972086668, -0.002079632831737399, -0.0006038016290403903, 0.0030540279112756252, 0.017375940456986427, -0.017289739102125168, 0.04105697199702263, 0.004562569782137871, 0.005227559711784124, -0.02023293450474739, 0.012271527200937271, -0.011193997226655483, -0.0075119235552847385, -0.010596738196909428, 0.006440551020205021, 0.024506110697984695, 0.001557030831463635, -0.000846630719024688, 0.004248546902090311, 0.012647124007344246, 0.007493451703339815, -0.0001909729471663013, -0.018521200865507126, 0.02630404755473137, 0.015245510265231133, -0.047411318868398666, 0.0032325901556760073, 0.0029709041118621826, 0.021747633814811707, -0.0015901264268904924, 0.013472204096615314, -0.005870999302715063, 0.004205445758998394, 0.03977625072002411, -0.003226432716473937, -0.004685716237872839, -0.042485468089580536, 0.005384571384638548, 0.021698376163840294, -0.004177737981081009, 0.015134679153561592, -0.014703666791319847, 0.02354557067155838, 0.019691091030836105, 0.025565169751644135, 0.05502176284790039, 0.026476452127099037, 0.014297284185886383, -0.019629517570137978, -0.049554064869880676, 0.003928366582840681, -0.024062784388661385, 0.02014673314988613, 0.01182820089161396, -0.015134679153561592, -0.022868266329169273, 0.0413525216281414, 0.0005660880706273019, 0.008330846205353737, 0.0015762725379317999, 0.021501341834664345, 0.01906304620206356, -0.015233195386826992, -0.005858684424310923, 0.025589797645807266, -0.06226276233792305, -0.02491249330341816, 0.001139103202149272, 0.0197649784386158, -0.00013430642138700932, -0.006976237054914236, -0.009340645745396614, -0.004534862004220486, 0.0031987247057259083, -0.004239310976117849, -0.012086807750165462, 0.05462769418954849, 0.022929837927222252, 0.022104758769273758, -0.024259818717837334, 0.007364147808402777, -0.028717713430523872, -0.02385343611240387, -0.0009428387857042253, 0.026156270876526833, 0.0334465317428112, -0.006711472757160664, 0.00636050570756197, -0.030860459432005882, -0.03398837521672249, 0.012031392194330692, 0.018188707530498505, 0.027338474988937378, -0.006668371614068747, -0.0009266757988370955, -0.017154278233647346, 0.00797372218221426, -0.004728817380964756, 0.00637282058596611, -0.006662214174866676, -0.0024367570877075195, -0.014186452142894268, -0.007616597693413496, -0.013225911185145378, -0.02009747363626957, -0.04317509010434151, -0.0023967346642166376, 0.023754918947815895, -0.005917178932577372, 0.020171361044049263, -0.011317144148051739, 0.00012786047591362149, -0.034530218690633774, 0.009513050317764282, -0.01687104068696499, -0.037756651639938354, 0.02760939858853817, -0.0010097995400428772, 0.008841903880238533, 0.04297805577516556, 0.02571294456720352, -0.013447574339807034, 0.01338600181043148, 0.042879536747932434, 0.024025840684771538, -0.005289133172482252, 0.015578005462884903, 0.02182152308523655, -0.03342190384864807, 0.016649378463625908, -0.008146126754581928, 0.007598125841468573, 0.0019010708201676607, 0.01720353588461876, -0.00012420456914696842, -0.005827898159623146, 0.010762985795736313, -0.02184615097939968, -0.024641571566462517, 0.009045095182955265, 0.013546091504395008, 0.0033187924418598413, 0.02886549010872841, 0.03807683289051056, -0.007936778478324413, -0.020109789445996284, 0.04191899672150612, 0.008318531326949596, -0.02051617205142975, -0.0029939941596239805, 0.0021858466789126396, 0.01753603108227253, -0.022104758769273758, 0.01751140132546425, 0.007752059027552605, 0.017597604542970657, 0.01775769516825676, -0.026501081883907318, -0.030737312510609627, 0.0060926624573767185, 0.0171173345297575, 0.0066745285876095295, 0.012173010967671871, 0.011600379832088947, -0.017683807760477066, -0.016821783035993576, -0.007413406390696764, -0.00011035062198061496, -0.01658780500292778, 0.010448962450027466, 0.01784389652311802, -0.003058645874261856, -0.018324168398976326, 0.025343505665659904, 0.005326076876372099, -0.033052463084459305, -0.021476712077856064, -0.01934628188610077, 0.03386522829532623, 0.008078396320343018, 0.004605670925229788, -0.00337112951092422, 0.01210528053343296, 0.007481136824935675, -0.013312113471329212, 0.020590059459209442, -0.015553375706076622, 0.005175222642719746, 0.04787927493453026, 0.015885870903730392, 0.011224783957004547, -0.022979097440838814, 0.004029962234199047, -0.009426848031580448, -0.018324168398976326, 0.0021088800858706236, 0.003725175280123949, 0.005966437514871359, -0.033274125307798386, 0.022424938157200813, -0.00887884758412838, 0.005981830880045891, -0.012831843458116055, 0.01496227364987135, -0.023397793993353844, -0.008891161531209946, -0.025195730850100517, -0.008250800892710686, -0.01560263428837061, -0.02886549010872841, -0.010775299742817879, 0.021944668143987656, -0.013730810955166817, 0.0063112471252679825, -0.012265370227396488, -0.018742864951491356, 0.012068335898220539, 0.0013753901002928615, -0.027560139074921608, -0.004399401135742664, 0.006890034768730402, 0.028151242062449455, -0.0036143434699624777, 0.0007996811764314771, -0.007764373440295458, 0.042682502418756485, -0.030072323977947235, 0.010221142321825027, -0.007518080994486809, 0.006619113031774759, 0.0035712423268705606, 0.0028939377516508102, -0.015516432002186775, 0.003328028367832303, 0.004584120586514473, -0.025343505665659904, -0.012597865425050259, 0.01402636244893074, -0.026624226942658424, 0.03743647038936615, -0.02546665258705616, 0.008589453995227814, -0.02738773450255394, -0.00964235421270132, 0.016821783035993576, -0.01978960819542408, 0.013435260392725468, 0.045859675854444504, -0.01046743430197239, -0.017302053049206734, -0.012567078694701195, -0.009112825617194176, -0.011655796319246292, -0.009217499755322933, 0.04923388734459877, -0.009420691058039665, -0.012283842079341412, -0.011778942309319973, 0.002375184092670679, 0.03598334640264511, 0.01065831072628498, -0.014728295616805553, 0.007074754219502211, 0.02323770523071289, 0.024444537237286568, -0.003546613035723567, 0.01338600181043148, -0.003956074360758066, -0.0014946880983188748, -0.0079860370606184, -0.010344288311898708, -0.011735841631889343, -0.009026623331010342, -0.02184615097939968, -0.02235105074942112, -0.0014646711060777307, -0.00495355948805809, 0.014949959702789783, 0.03588482737541199, -0.002164296107366681, 0.004485603421926498, 0.003928366582840681, 0.005159829277545214, 0.027683285996317863, -0.012000605463981628, 0.006754573900252581, -0.022868266329169273, 0.013435260392725468, -0.015984388068318367, 0.012314628809690475, 0.04494839534163475, -0.0210703294724226, 0.002148902742192149, 0.03770739212632179, -0.020245250314474106, -0.010313501581549644, -0.00790599174797535, -0.030096951872110367, -0.00706859678030014, 0.005806347355246544, 0.013841642998158932, -0.006265067495405674, 0.03364356607198715, -0.0006442090380005538, -0.021218106150627136, -0.02056542970240116, -0.0071486420929431915, 0.010972334071993828, -0.00013218984531704336, -0.0016670929035171866, 0.0020180598367005587, -0.061917953193187714, -0.015688836574554443, -0.017659178003668785, -0.013225911185145378, -0.013792384415864944, -0.0069454507902264595, 0.024038154631853104, 0.002781566698104143, 0.000702318677213043, 0.023607144132256508, -0.011458761990070343, 0.010929233394563198, -0.00018914500833489, -0.00861408282071352, -0.0007377232541330159, -0.030269358307123184, -0.014432745054364204, -0.003223353996872902, 0.011286357417702675, -0.012530134990811348, -0.032855428755283356, 0.01784389652311802, 0.015910500660538673, 0.009118982590734959, -0.008718756958842278, 0.032215069979429245, 0.018915269523859024, -0.0005549279740080237, -0.008380104787647724, -0.033692825585603714, 0.02524498850107193, 0.007702800445258617, 0.013509147800505161, -0.015848927199840546, -0.004279333632439375, 0.019186191260814667, 0.0186197180300951, -0.012173010967671871, 0.022190960124135017, 0.008731071837246418, 0.01370618212968111, 0.014235710725188255, 0.0017225086921826005, -0.031993404030799866, 0.010430490598082542, 0.005150593351572752, -0.005316840950399637, -0.023976583033800125, 0.012333100661635399, -0.009359117597341537, 0.0021119588054716587, -0.01497458852827549, -0.014408115297555923, -0.011101637966930866, -0.0010382771724835038, 0.03100823611021042, 0.007210215087980032, 0.009414534084498882, -0.012696382589638233, 0.015159307979047298, 0.013595350086688995, 0.010676783509552479, -0.012320785783231258, -0.0012422382133081555, -0.00861408282071352, -0.015430229716002941, 0.008958891965448856, 0.002773870015516877, 0.023336222395300865, 0.009340645745396614, -0.004996660631150007, -0.0071486420929431915, 0.005707830656319857, 0.030761942267417908, 0.014432745054364204, 0.007635070011019707, 0.016292253509163857, 0.023052984848618507, -0.01733899675309658, -0.0057724821381270885, -0.015405600890517235, -0.012930360622704029, 0.008651026524603367, 0.01059058029204607, -0.03891422599554062, -0.012794898822903633, -3.336013833177276e-05, -0.003765197703614831, -0.04339675232768059, 0.015590320341289043, 0.0030140054877847433, 0.02866845577955246, 0.00732720410451293, 0.014395801350474358, -0.01566420868039131, 0.024284448474645615, -0.016070591285824776, -0.027092183008790016, 0.004073063377290964, 0.00592025788500905, 0.008220015093684196, -0.012326943688094616, -0.007401091977953911, -0.017597604542970657, -0.007795160170644522, 0.006348191294819117, 0.017240479588508606, 0.009987164288759232, 0.008663341403007507, -0.022314107045531273, -0.022424938157200813, 0.025959236547350883, 0.004756525158882141, -0.005150593351572752, -0.004728817380964756, -0.0073518333956599236, 0.004848884884268045, -0.008774173445999622, -0.012142224237322807, -0.001919542788527906, -0.002695364411920309, 0.020614689216017723, -0.005246032029390335, -0.03536761552095413, -0.011643481440842152, 0.010750670917332172, -0.010301186703145504, -0.00443942379206419, -0.018348796293139458, 0.0024675438180565834, 0.0026168585754930973, 0.008761858567595482, -0.02148902788758278, -0.002369026653468609, 0.02432139217853546, 0.01680946908891201, -9.471681551076472e-05, -0.015270140022039413, 0.03445633128285408, -0.01570115238428116, -0.015553375706076622, 0.001294575398787856, -0.006302011199295521, 0.012991933152079582, -0.01086765993386507, 0.010565951466560364, -0.022326422855257988, -0.0017502165865153074, -0.020269878208637238, 0.00350351189263165, -0.01817639172077179, -0.0031109831761568785, 0.023693345487117767, 0.038667935878038406, -0.011446447111666203, -0.027042925357818604, 0.005837134085595608, 0.0025183416437357664, 0.013250540941953659, 0.00828158762305975, 0.00013488366676028818, -0.010553636588156223, 0.004972031340003014, 0.008841903880238533, 0.024370649829506874, -0.012129909358918667, 0.02849605120718479, -0.016316883265972137, -0.024370649829506874, -0.006055718753486872, 0.007124012801796198, -0.0069454507902264595, -0.006452865432947874, -0.007296417374163866, 0.02677200362086296, -0.02526961825788021, -0.028569938614964485, -0.00822617206722498, -0.00231053214520216, -0.01022729929536581, -0.033274125307798386, 0.013225911185145378, 0.0036974672693759203, 0.019641833379864693, 0.005138278938829899, 0.009008150547742844, 0.029702885076403618, -0.005224481225013733, -0.02153828553855419, 0.0071486420929431915, 0.0015308622969314456, -0.0036820739042013884, -0.01181588601320982, -0.0018148684175685048, -0.014284969307482243, 0.027929577976465225, -0.014949959702789783, 0.02285595051944256, 0.0014569745399057865, -0.0049012224189937115, -0.009974849410355091, -0.01623068004846573, 0.007942935451865196, 0.004851963836699724, -0.016156792640686035, 0.005803268868476152, -0.021353567019104958, 0.013669237494468689, 0.030909718945622444, -0.02471546083688736, 0.009870175272226334, -0.004322434775531292, 0.008527880534529686, 0.009500736370682716, -0.008244643919169903, -0.026919778436422348, 0.014629779383540154, -0.016021331772208214, 0.001482373452745378, -0.022966783493757248, 0.013866271823644638, 0.003937602508813143, 0.01337368693202734, 0.01049206405878067, -0.0035281411837786436, 0.00030613396666012704, 0.006181943695992231, -0.003241826081648469, -0.02089792490005493, 0.007739744149148464, -0.023533254861831665, -0.016464658081531525, -0.0021627566311508417, -0.0038144562859088182, -0.023397793993353844, -0.029431963339447975, 0.029628997668623924, -0.0008042991976253688, 0.03206729143857956, 0.00513519998639822, -0.03600797429680824, -0.009488421492278576, 0.0011652717366814613, -0.004396322648972273, 0.028840860351920128, -0.001267637126147747, -0.01753603108227253, -0.008127654902637005, -0.004485603421926498, 0.009082038886845112, 0.0029970728792250156, -0.012154538184404373, -0.005486167035996914, -0.009420691058039665, -0.019383225589990616, 0.00475960411131382, 0.020947184413671494, -0.00636050570756197, 0.003254140727221966, -0.022314107045531273, -0.04859352484345436, 0.020725520327687263, 0.03167322650551796, -0.04349526762962341, 0.01605827547609806, -0.019580259919166565, 0.012142224237322807, 0.030958976596593857, 0.008435520343482494, -0.007185585796833038, -0.0041654231026768684, -0.002301296219229698, -0.016846412792801857, -0.03657444566488266, -0.015467173419892788, -0.022030871361494064, 0.03576168045401573, 0.009359117597341537, 0.0023998133838176727, -0.0035219837445765734, -0.015676522627472878, -0.021772263571619987, 0.01967877708375454, 0.009285230189561844, 0.02891474775969982, 0.014408115297555923, 0.00794909242540598, -0.030072323977947235, 0.010966177098453045, 0.0042085242457687855, 0.025343505665659904, 0.013841642998158932, -0.002481397707015276, 0.011224783957004547, 0.004774997476488352, -0.020023586228489876, -0.0010605973657220602, 0.0063050901517271996, 0.03374208137392998, -0.019420169293880463, 0.030860459432005882, 0.0048273345455527306, -0.008860375732183456, -0.009211341850459576, -0.0038329281378537416, -0.00014517792442347854, 0.015257825143635273, -0.0036266581155359745, 0.0026538025122135878, 0.015073105692863464, 0.007801317144185305, 0.01022729929536581, -0.02908715233206749, -0.01778232306241989, 0.014284969307482243, 0.009580780752003193, 0.012684067711234093, 0.012406988069415092, -0.0008189228246919811, -0.02076246403157711, -0.010473592206835747, 0.012056021951138973, 0.014149508439004421, -0.004036119673401117, -0.018558146432042122, -0.02549128234386444, -0.013878586702048779, -0.007253316231071949, 0.020282194018363953, 0.010541322641074657, 0.01369386725127697, -0.005122885573655367, 0.0007492682198062539, -0.017572974786162376, 0.013644608668982983, 0.011858987621963024, -0.0042516253888607025, -0.0026630384381860495, -0.031771741807460785, -0.007271788083016872, 0.010301186703145504, 0.019001472741365433, 0.01086765993386507, 0.012647124007344246, 0.006760731339454651, 0.0044640530832111835, 0.0028200498782098293, 0.019383225589990616, 0.005717066582292318, -0.020996442064642906, 0.014309599064290524, 0.004805783741176128, 0.00273076887242496, -0.015233195386826992, -0.022387994453310966, 0.00500897504389286, -0.0012845697347074747, -0.024025840684771538, -0.00930985901504755, -0.03492428734898567, -0.012191482819616795, -0.010769142769277096, 0.030860459432005882, 0.02341010980308056, -0.019555630162358284, -0.023200759664177895, 0.009919433854520321, -0.04243621230125427, 0.0031063652131706476, -0.003602028824388981, 0.0066252704709768295, 0.0056277853436768055, 0.004818098619580269, 0.004972031340003014, -0.014851442538201809, 0.010375075042247772, -0.01645234413444996, 0.016969557851552963, -0.002890859032049775, -0.015183936804533005, -0.008700285106897354, -0.014814498834311962, -0.024456853047013283, -0.008047609589993954, -0.002453689696267247, -0.007807474583387375, -0.005430751480162144, 0.008570981211960316, -0.018324168398976326, 9.11571169126546e-06, -0.009217499755322933, -0.001294575398787856, -0.009870175272226334, 0.02699366584420204, -0.010738356038928032, -0.00040869173244573176, -0.017831582576036453, -0.008577139116823673, -0.04659855365753174, -0.009636197239160538, -0.022301793098449707, 0.008743386715650558, 0.007505766116082668, 0.014949959702789783, -0.02457999810576439, 0.04021957889199257, 0.007844418287277222, 0.0012768730521202087, -0.014149508439004421, -0.02736310474574566, 0.004445580765604973, -0.013595350086688995, -0.003515826538205147, -0.009180556051433086, -0.02928418666124344, 0.008534037508070469, -0.00642823614180088, 0.03204266354441643, 0.016858726739883423, -0.04521931707859039, -0.012893415987491608, 0.0065144384279847145, 0.011298672296106815, -0.01465440820902586, -0.01563957892358303, 0.013213596306741238, -0.02502332627773285, -0.005643178708851337, -0.009075880981981754, -0.02588534913957119, -0.01784389652311802, 0.03657444566488266, 0.021021071821451187, -0.0022058577742427588, 0.011791257187724113, 0.0013168955920264125, -0.008133811876177788, 0.0041808164678514, 0.011538807302713394, -0.00636050570756197, -0.023693345487117767, -0.015011532232165337, -0.0049874247051775455, 0.006144999526441097, -0.012918045744299889, -0.018693607300519943, -0.00854635238647461, -0.02084866724908352, 0.024358335882425308, 0.02822512947022915, 0.010609053075313568, -0.012086807750165462, -0.014518947340548038, -0.003811377566307783, -0.02451842650771141, 0.002532195532694459, 0.0153193986043334, 0.019518686458468437, -0.01381701324135065, 0.027732543647289276, 0.03425929695367813, 0.0009028162457980216, -0.0032048821449279785, 0.005378413945436478, -0.011323301121592522, -0.004654929507523775, 0.03295394778251648, -0.011594222858548164, -0.026501081883907318, -0.00830621737986803, 0.00996253453195095, 0.0021766105201095343, 0.0011106255697086453, -0.005886392667889595, 0.025417393073439598, -0.028939377516508102, -0.010442805476486683, 0.0019103067461401224, 0.018767494708299637, -0.03125452622771263, -0.0032633766531944275, 0.004063827451318502, 0.01817639172077179, 0.013853956945240498, 0.019962012767791748, -0.01639077067375183, 0.025146471336483955, 0.005239874590188265, -0.009291387163102627, 0.025639057159423828, -0.015073105692863464, 0.007493451703339815, -0.013410630635917187, 0.025035640224814415, 0.014445059932768345, 0.005018211435526609, -0.02089792490005493, -0.020639317110180855, -0.0024506112094968557, 0.01586124114692211, 0.013644608668982983, -0.006508281454443932, -0.0227697491645813, 0.019838867709040642, -0.008552509360015392, -0.013299799524247646, -0.0010744513710960746, 0.00636050570756197, 0.009229814633727074, 0.00700086634606123, -0.027658656239509583, -0.0005637790891341865, 0.004205445758998394, -0.007616597693413496, -0.021883094683289528, -0.013767754659056664, 0.007407249417155981, 0.0002085790183627978, -0.015380971133708954, 0.01700650155544281, -0.00514135742560029, 0.0014454295160248876, 0.009180556051433086, -0.01138487458229065, -0.019420169293880463, -0.0040053329430520535, 0.000963619677349925, -0.0095068933442235, -0.021328937262296677, -0.014087934978306293, -0.0027569374069571495, -0.006120370700955391, 0.011754313483834267, -0.0036882313434034586, 0.005975673440843821, 0.006871562916785479, 0.01837342604994774, 0.017634548246860504, -0.00990711897611618, -0.0003523138293530792, -0.013004248030483723, -0.01676020957529545, -0.017215851694345474, -0.0019164640689268708, -0.01432191301137209, 0.052312541753053665, -0.006068033166229725, -0.008521723560988903, -0.015233195386826992, -0.0011498784879222512, -0.0046303002163767815, 0.00449483934789896, 0.03214118257164955, 0.017794638872146606, -0.010689097456634045, -0.004408637061715126, -0.029382703825831413, -0.009106667712330818, -0.026156270876526833, -0.02438296563923359, 0.004485603421926498, 0.012567078694701195, -0.0031617810018360615, -0.0030032300855964422, 0.0041500297375023365, 0.02699366584420204, 0.003965310286730528, -0.023496311157941818, -0.006711472757160664, 0.011230941861867905, -0.012536291964352131, -0.005806347355246544, 0.01831185258924961, -0.016575491055846214, 0.018767494708299637, -0.011951346881687641, 0.01650160178542137, -0.033298756927251816, -0.005994145758450031, -0.00018289148283656687, 0.014469688758254051, -0.02265891619026661, 0.01778232306241989, 0.013804699294269085, 0.01970340684056282, -0.014050991274416447, 0.005704751703888178, 0.026402564719319344, 0.013546091504395008, -0.015713466331362724, 0.0024213639553636312, 0.0018456550315022469, -0.00273076887242496, 0.004870435688644648, -0.009537680074572563, 0.006160392891615629, -0.012979618273675442, 0.0050028180703520775, 0.00539996474981308, 0.004263940267264843, -0.026870520785450935, 0.007635070011019707, -0.01839805580675602, -0.005778639577329159, 0.005159829277545214, 0.002773870015516877, -0.00585252745077014, -0.022892894223332405, -0.03265839442610741, 0.040121059864759445, -0.008848060853779316, 0.008780330419540405, -0.01305350661277771, 0.005904864519834518, 0.0076720137149095535, 0.014075621031224728, 0.02805272489786148, 0.006477494724094868, -0.013546091504395008, -0.01499921828508377, 0.011754313483834267, -0.00424546841531992, -9.163815411739051e-05, 0.009974849410355091, 0.025417393073439598, -0.011003120802342892, -0.004818098619580269, 0.005803268868476152, -0.013632293790578842, 0.02997380681335926, -0.00732720410451293, -0.005563133396208286, -0.006378977559506893, 0.002192003885284066, -0.02418593131005764, -0.02226484939455986, 0.01245624665170908, -0.003949917387217283, 0.012166853062808514, -0.000663065817207098, -0.010079523548483849, -0.0024552291724830866, -0.010541322641074657, 0.015171622857451439, 0.00013238226529210806, 0.001802553771995008, 0.009143611416220665, 0.0025660607498139143, 0.009131297469139099, -0.009192869998514652, 0.004999739117920399, 0.013989417813718319, 0.02042996883392334, -0.005412279162555933, 0.014260340481996536, -0.004417872987687588, 0.0024321391247212887, 0.0017856211634352803, -0.017794638872146606, -0.04529320448637009, 0.030220098793506622, 0.015442544594407082, -0.002715375740081072, -0.015331712551414967, -0.010652153752744198, 0.013841642998158932, -0.016242995858192444, 0.016206052154302597, 0.007487294264137745, -0.007284102961421013, 0.0030247806571424007, -0.015344027429819107, -0.013878586702048779, -0.003432702738791704, -0.005680122412741184, 0.010436647571623325, -0.011304829269647598, 0.020503856241703033, 0.0036297368351370096, -0.02310224436223507, 0.0140140475705266, 0.007752059027552605, -0.01678483933210373, 0.00462106429040432, -0.022634288296103477, -0.01586124114692211, -0.005276818294078112, -0.0022412624675780535, 0.010676783509552479, -0.010726042091846466, 0.00494124460965395, -0.001614755718037486, -0.015146993100643158, 0.007869048044085503, 0.010947705246508121, 0.008564824238419533, -0.019136933609843254, 0.009094353765249252, -0.004851963836699724, -0.0033957588020712137, -0.0017148120095953345, -0.020799407735466957, -0.009870175272226334, 0.0039899395778775215, -0.017154278233647346, 0.002453689696267247, -0.004879671614617109, -0.008995836600661278, -0.014592834748327732, -0.013583035208284855, -0.002707679057493806, 0.022745119407773018, 0.024112043902277946, 0.0197649784386158, -0.0017810032004490495, -0.007770530879497528, 0.019543316215276718, -0.004417872987687588, -0.027978835627436638, 0.0016994187608361244, -0.003300320589914918, 0.0033341858070343733, 0.005233717150986195, -0.02254808507859707, 0.02953048050403595, 0.01658780500292778, 0.0006842315779067576, 0.022092444822192192, -0.005867920815944672, -0.01859509013593197, 0.002207397250458598, -0.004488682374358177, -0.007019338198006153, 0.0065144384279847145, 0.013533776625990868, -0.01182820089161396, 0.006803832482546568, -0.0010544400429353118, -0.0017532953061163425, -0.011046222411096096, 0.013829328119754791, 0.010399703867733479, 0.01731436885893345, -0.013607664965093136, 0.0039037372916936874, -0.016649378463625908, 0.015060790814459324, 0.0021827679593116045, -0.00854635238647461, 0.0021365880966186523, -0.005153672304004431, -0.012954989448189735, -0.02504795417189598, 0.010448962450027466, 0.010584423318505287, -0.04408637061715126, -0.00269998237490654, 0.011594222858548164, 0.0061357636004686356, -0.01084303017705679, 0.035441502928733826, -0.009833230637013912, -0.012868787162005901, 0.044578954577445984, 0.006951607763767242, 0.012567078694701195, 0.03492428734898567, 0.004617985803633928, -0.022080129012465477, 0.025318875908851624, 0.009820916689932346, 0.012807213701307774, 0.029185669496655464, 0.030343245714902878, -0.004516390152275562, 0.0186197180300951, 0.0041808164678514, -0.0013923227088525891, -0.003429624019190669, 0.029037894681096077, 0.020466912537813187, 0.034579478204250336, -0.007167113944888115, 0.005356863606721163, -0.02109495922923088, -0.021550599485635757, 0.016415400430560112, -0.004851963836699724, 0.017178907990455627, -0.0036759166978299618, 0.01274564117193222, 0.015873556956648827, -0.0009412994259037077, -0.016957243904471397, -2.5134349925792776e-05, 0.020442284643650055, -0.0030601853504776955, -0.005372256971895695, 0.018324168398976326, -0.0007881362689658999, -0.0025583640672266483, 0.005021289922297001, -0.009402219206094742, 0.010621367022395134, -0.004199288319796324, -0.007770530879497528, 0.0012245358666405082, -0.00919902790337801, -0.004045355599373579, 0.010030264966189861, 0.019617203623056412, -0.004242389462888241, 0.030269358307123184, -0.02151365578174591, 0.007678171154111624, -0.004387086722999811, -0.005286054220050573, 0.02568831481039524, -0.00010948474664473906, 0.00269998237490654, 0.009137454442679882, 0.01445737387984991, -0.0022181724198162556, 0.02393963746726513, 0.03300320357084274, -0.011846672743558884, 0.003879108000546694, -0.0009528443915769458, -0.030318615958094597, 0.0032356686424463987, -0.03529372438788414, -0.013139708898961544, -0.0023736446164548397, -0.0040915352292358875, 0.0029970728792250156, 0.00861408282071352, -0.0053660995326936245, 0.03460410609841347, 0.002255116356536746, 0.01092307548969984, -0.0067853606306016445, 0.007333361543715, 0.016932614147663116, 0.011692740023136139, -0.010898446664214134, -0.013004248030483723, 0.007117855362594128, -0.02281900681555271, -0.0008119958220049739, 0.012123752385377884, -6.378592661349103e-05, 0.007456507533788681, -0.017326682806015015, -0.010184197686612606, 0.029013264924287796, 0.016513917595148087, -0.005504638887941837, -0.007524237968027592, 0.01149570569396019, -0.0008397037745453417, -0.013743125833570957, -0.0022135544568300247, 0.024456853047013283, -0.0006130376132205129, 0.009488421492278576, 0.0024829369504004717, 0.018496572971343994, 0.005138278938829899, 0.0068346187472343445, 0.007173271384090185, 0.005858684424310923, 0.026180900633335114, 0.010861502960324287, -0.0036143434699624777, 0.011822043918073177, -0.016772523522377014, -0.004205445758998394, -0.027978835627436638, -0.005107492208480835, -0.0010859962785616517, -0.0013215135550126433, -0.015085420571267605, -0.004476367495954037, -0.014789869077503681, -0.006440551020205021, -0.004670322872698307, -0.006883877329528332, 0.001881059492006898, -0.022929837927222252, 0.008367789909243584, 0.014629779383540154, 0.01124325580894947, -0.014518947340548038, 0.007093226071447134, 0.019075360149145126, 0.010824558325111866, 0.0016593962209299207, 0.02098412811756134, -0.006434393581002951, -0.009974849410355091, -0.0064651803113520145, -0.0018364189891144633, -0.016218366101384163, -0.022092444822192192, -0.004390165209770203, -0.024555370211601257, 0.012782584875822067, -0.005550818983465433, -0.00018000524141825736, 0.007795160170644522, 0.0025506673846393824, -0.009611567482352257, 0.016464658081531525, -0.018336482346057892, 0.011551122181117535, -0.009032780304551125, -0.03489965945482254, 0.021144216880202293, -0.025318875908851624, -0.012573235668241978, -0.007241001818329096, 0.013730810955166817, -0.0034727253951132298, -0.007955250330269337, 0.006926978472620249, 0.03172248229384422, -0.01570115238428116, 0.007019338198006153, 0.0005099026020616293, 0.01272101141512394, -0.0039930185303092, 0.01634151302278042, -0.004590278025716543, -0.020885610952973366, 0.007296417374163866, 0.002766173565760255, 0.026919778436422348, 0.011083166114985943, -0.011846672743558884, 0.0016809467924758792, -0.01188361644744873, -0.02571294456720352, 0.016932614147663116, 0.004424030426889658, -0.00985170342028141, 0.03295394778251648, -0.003795984201133251, 0.002967825625091791, 0.01731436885893345, 0.009100510738790035, -0.008854217827320099, -0.0019472506828606129, 0.038594044744968414, 0.019851181656122208, -0.005754010286182165, 0.02193235419690609, 0.008207700215280056, -0.002258195076137781, 0.00508594186976552, 0.017683807760477066, -0.010516692884266376, 0.015344027429819107, -0.03430855646729469, -0.005218323785811663, 0.009814758785068989, 0.019099989905953407, 0.015762723982334137, 0.02332390658557415, -0.012277685105800629, -0.005652414634823799, 0.01594744436442852, 0.02738773450255394, 0.003009387291967869, 0.002539892215281725, -0.004036119673401117, 0.0016301489667966962, 0.004614907316863537, 0.0012976540019735694, -0.005353784654289484, -0.004146951250731945, 0.004122321959584951, 0.009987164288759232, -0.033495791256427765, -0.004808862693607807, 0.012622494250535965, -0.002796960063278675, -0.011021592654287815, 0.027781803160905838, -0.0013846260262653232, 0.010645996779203415, 0.029875289648771286, 0.008201542310416698, 0.01650160178542137, -0.00849093683063984, -0.016538547351956367, -0.026156270876526833, 0.011569594033062458, 0.006576011888682842, 0.026599599048495293, -0.019641833379864693, -0.010953862220048904, -0.001525474595837295, 0.0036574448458850384, 0.012696382589638233, -0.005880235228687525, 0.01560263428837061, 0.009808601811528206, 0.009611567482352257, 0.011698896996676922, 0.006754573900252581, -0.01762223429977894, 0.010719884186983109, 0.019198507070541382, 0.012431617826223373, 0.004094614181667566, -0.006255831569433212, 0.01274564117193222, 0.014223395846784115, 0.007333361543715, -0.02345936745405197, 0.008595610968768597, -0.005698594264686108, -0.0008735689916647971, 0.016834096983075142, -0.012591707520186901, -0.0017640705918893218, -0.00886653270572424, -0.009808601811528206, 0.017819268628954887, 0.030096951872110367, 0.0019534078892320395, -0.034948915243148804, 0.011397188529372215, 0.01572578027844429, 0.004984346218407154, 0.01694492995738983, 0.001771767158061266, 0.010941547341644764, -0.014765240252017975, -0.007733586709946394, 0.011458761990070343, 0.003934524022042751, 0.04408637061715126, -0.005372256971895695, -0.006265067495405674, -0.003195646218955517, 0.010645996779203415, -0.007869048044085503, 0.005021289922297001, 0.009340645745396614, -0.013558406382799149, 0.006520595867186785, 0.006043403875082731, 0.012283842079341412, -0.0043686144053936005, 0.02374260500073433, -0.009069724008440971, 0.009371432475745678, 0.010806086473166943, -0.007739744149148464, 0.007284102961421013, 0.0023413188755512238, 0.02301604114472866, 0.012671752832829952, 0.025614427402615547, 0.012339257635176182, -0.02371797524392605, -0.0010467434767633677, -0.016526231542229652, -0.006114213261753321, -0.0025337347760796547, 0.01725279539823532, -0.016156792640686035, -0.02657496929168701, -0.013028876855969429, -0.029382703825831413, 0.022301793098449707, -0.005196773447096348, -0.004270097706466913, -0.0008558667032048106, 0.00397454621270299, -0.003328028367832303, -0.021008756011724472, 0.018718235194683075, -0.011372559703886509, -0.019629517570137978, -0.011317144148051739, 0.010941547341644764, 0.004405558574944735, 0.0013707721373066306, 0.013890901580452919, -0.02491249330341816, 0.016378456726670265, -0.008885004557669163, 0.01027039997279644, -0.008103026077151299, 0.0075119235552847385, 0.01981423795223236, 0.024419909343123436, 0.02844679169356823, -0.010295029729604721, -0.01736362650990486, 0.00136538443621248, 0.005439987406134605, 0.0044271089136600494, 0.011711211875081062, -0.006385134998708963, -0.0022104759700596333, 0.006274303421378136, -0.01650160178542137, 0.005661650560796261, 0.005803268868476152, 0.010085680522024632, -0.018632033839821815, 0.01152033545076847, -0.0059910668060183525, 0.01669863611459732, -0.003771355142816901, -0.005538504105061293, 0.007099383510649204, 0.006779203191399574, 0.015331712551414967, -0.009106667712330818, 0.02457999810576439, -0.0030417132657021284, -0.0009651590371504426, -0.00514135742560029, -0.019198507070541382, 0.00221663317643106, -0.00017509862664155662, 0.014223395846784115, 0.013607664965093136, -0.004818098619580269, 0.0070624398067593575, -0.022954467684030533, 0.003186410292983055, -0.011113952845335007, 0.008275430649518967, 0.0026045439299196005, 0.004183894954621792, -0.005295290146023035, -0.008010665886104107, -0.00481501966714859, -0.012868787162005901, -0.039456069469451904, -0.009291387163102627, 0.016883356496691704, -0.007899834774434566, 0.0016901828348636627, 0.002807735465466976, -0.010399703867733479, 0.0038052203599363565, -0.03132841736078262, -0.007881361991167068, 0.008004508912563324, -0.018274908885359764, 0.006779203191399574, -0.003328028367832303, -0.017917783930897713, -0.0019949697889387608, -0.006064954679459333, 0.02438296563923359, 5.897552546230145e-05, 0.03448095917701721, 0.021415138617157936, 0.0011806649854406714, -0.008915791288018227, 0.01692030020058155, -0.008367789909243584, 0.002824668074026704, 0.0036913100630044937, -0.007043967489153147, 0.02341010980308056, 0.005301447585225105, -0.021439768373966217, -0.00892194826155901, 0.0003975316067226231, 0.029062524437904358, -0.012517820112407207, 0.017462143674492836, -0.02310224436223507, -0.00802913773804903, 0.0005568521446548402, 0.004020726308226585, -0.007955250330269337, 0.01575041003525257, -0.009229814633727074, -0.00893426313996315, 0.007185585796833038, -0.00482117710635066, -0.02446916699409485, 0.019444799050688744, -0.025195730850100517, 0.0018933741375803947, 0.009038937278091908, -0.00546153774484992, 0.01242546085268259, -0.011150896549224854, 0.010331973433494568, -0.012487033382058144, -0.019838867709040642, 0.010966177098453045, -0.019075360149145126, 0.009383747354149818, 6.922168540768325e-05, -0.0011306368978694081, -0.02549128234386444, -0.005178301595151424, 0.015467173419892788, -0.007296417374163866, -0.027067553251981735, 0.02334853634238243, -0.0028354432433843613, -0.005387649871408939, 0.010436647571623325, 0.0016055196756497025, 0.015442544594407082, -0.02416130155324936, -0.01773306541144848, -0.005125964060425758, -0.015036161988973618, -0.020195990800857544, -0.012086807750165462, -0.01661243475973606, -0.04622911661863327, 0.005301447585225105, 0.02844679169356823, -0.02345936745405197, 0.005159829277545214, -1.1689276107063051e-05, 0.008687970228493214, -7.922732038423419e-05, 0.015491803176701069, -0.02343473769724369, 0.019198507070541382, -0.012209954671561718, -0.020774777978658676, 0.010368917137384415, 0.007992194034159184, 0.008250800892710686, 0.012942674569785595, -0.02334853634238243, 0.0014877610374242067, 0.00449483934789896, -0.00801682285964489, -0.04834723100066185, -0.020836351439356804, -0.011501863598823547, -0.00964235421270132, 0.025786831974983215, -0.029161041602492332, 0.020614689216017723, 0.008663341403007507, -0.002696903655305505, -0.005175222642719746, 0.031082123517990112, 0.01027039997279644, -0.005027447361499071, 0.009716242551803589, 0.009106667712330818, -0.013250540941953659, 0.027510881423950195, -0.007142484653741121, -0.009229814633727074, -0.011298672296106815, 0.029431963339447975, 0.006545225158333778, 0.0010244231671094894, -0.002102722879499197, -0.005326076876372099, 0.00017096167721319944, 0.002907791640609503, 0.011218626983463764, -0.016132162883877754, 0.020109789445996284, -0.0039899395778775215, 0.004380929283797741, 0.0012360808905214071, 0.012265370227396488, -0.008139969781041145, -0.0019795766565948725, 0.01775769516825676, -0.008780330419540405, 0.020195990800857544, 0.007598125841468573, 0.005901786033064127, -0.007333361543715, 0.006699157878756523, 0.006188101135194302, 0.024284448474645615, -0.012622494250535965, 0.006071112118661404, -0.002333622192963958, 0.0007839030586183071, -0.0026276339776813984, -0.004396322648972273, -0.013829328119754791, 0.01650160178542137, 0.004023804794996977, 0.0020503855776041746, -0.016021331772208214, -0.00139694067183882, 0.0056862798519432545, 0.01731436885893345, 0.013188967481255531, 0.01914924755692482, 0.013927845284342766, -0.019383225589990616, -0.005005896557122469, -0.01775769516825676, 0.019136933609843254, 0.009279073216021061, -0.010313501581549644, -0.000604571308940649, 0.017277423292398453, 0.008035295642912388, -0.003383444156497717, -0.008047609589993954, 0.004384007770568132, 0.0026599597185850143, -0.023151502013206482, 0.01762223429977894, -0.00022493439610116184, -0.0167232658714056, 0.01285647228360176, -0.014211081899702549, 0.029234929010272026, -0.027436992153525352, 0.016637062653899193, -0.010116467252373695, -0.015553375706076622, 0.024444537237286568, 0.006342033855617046, 0.023225389420986176, -0.011446447111666203, 0.01509773451834917, 0.004387086722999811, -0.011021592654287815, -0.01306582149118185, 0.012567078694701195, 0.0011914403876289725, 0.0035958716180175543, -0.010276557877659798, -0.008343161083757877, -0.005353784654289484, 0.015738096088171005, 0.009094353765249252, 0.00411924347281456, 0.004319355823099613, -0.019309338182210922, 0.016403084620833397, -0.02677200362086296, 0.004442502278834581, -0.00642823614180088, 0.017917783930897713, -0.00038483215030282736, 0.024666201323270798, -0.0159720741212368, 0.0026276339776813984, 0.018755178898572922, 0.005252189002931118, -0.004060748964548111, -0.010596738196909428, -0.017265109345316887, 0.0023120716214179993, -0.01529476884752512, 0.025811461731791496, 0.019543316215276718, 0.010572108440101147, -0.03214118257164955, -0.0021396668162196875, 0.009937905706465244, 0.0005834055482409894, -0.007881361991167068, 0.022301793098449707, 0.012634809128940105, -0.0051044137217104435, 0.007074754219502211, 0.009605410508811474, -0.012696382589638233, -0.012271527200937271, -0.013583035208284855, 0.012530134990811348, 0.0008435520576313138, 0.0031894887797534466, -0.018127134069800377, -0.01667400822043419, 0.01213606633245945, -0.012209954671561718, 0.014395801350474358, 0.00020396104082465172, -0.0002840061206370592, 0.023250019177794456, -0.0043686144053936005, 0.011218626983463764, -0.009426848031580448, -0.0001942440285347402, -0.026377934962511063, -0.006157314404845238, -0.015885870903730392, 0.00801682285964489, -0.013903215527534485, 0.00107676035258919, 0.0017194300889968872, -0.003752883058041334, 0.0009651590371504426, 0.01694492995738983, 0.007548867259174585, 0.00462106429040432, 0.012406988069415092, -0.012782584875822067, 0.011581907980144024, 0.0011167828924953938, -0.024986382573843002, -0.010030264966189861, -0.0005237565492279828, -0.006489809136837721, 0.007555024698376656, 0.015528746880590916, 0.004935087636113167, 0.007955250330269337, -0.014223395846784115, -0.0133613720536232, -0.016021331772208214, -0.00020511553157120943, -0.0021350488532334566, -0.016353826969861984, 0.020072845742106438, 0.00828158762305975, -0.009876332245767117, -0.007930620573461056, -0.003506590612232685, 0.0007438805187121034, -0.004910458344966173, 0.009100510738790035, 0.013447574339807034, 0.004611828364431858, 0.013866271823644638, -0.004593356512486935, 0.02281900681555271, 0.006773045752197504, 0.0008150744833983481, -0.012597865425050259, -0.015627263113856316, -0.0095068933442235, -0.00046410757931880653, 0.01498690340667963, -0.009666983969509602, -0.014408115297555923, -0.03216581046581268, -0.0063112471252679825, -0.06374052166938782, 0.0008820352959446609, -0.0007327204220928252, 0.016095219179987907, 0.0026507237926125526, -0.003297241870313883, 0.016489287838339806, -0.0030878931283950806, 0.013915530405938625, -0.004750368185341358, -0.0016763288294896483, -0.024838605895638466, -0.010609053075313568, -0.005797111429274082, 0.0040915352292358875, 0.004467131569981575, 0.0011098559480160475, 0.016095219179987907, -0.022745119407773018, -0.006539067719131708, -0.026156270876526833, 0.0154179148375988, 0.007136327214539051, -0.018139448016881943, 0.01667400822043419, -0.006452865432947874, 0.009346803650259972, 0.009494578465819359, -0.018434999510645866, -0.009469949640333652, -0.004818098619580269, -0.030096951872110367, -0.003602028824388981, 0.019826551899313927, 0.010726042091846466, -0.014617464505136013, -0.014531262218952179, -0.024444537237286568, -0.0029816795140504837, 0.011871302500367165, -0.013940160162746906, -0.01895221322774887, 0.010485906153917313, 0.009038937278091908, -0.010042579844594002, 0.003506590612232685, -0.007031653076410294, -0.010116467252373695, 0.007394934538751841, 0.007739744149148464, -0.017018817365169525, -0.01742519997060299, -0.008792645297944546, 0.0011568054324015975, 0.005797111429274082, 0.00951920822262764, 1.4226763596525416e-05, -0.03231358528137207, 0.001868744962848723, -0.0009336028015241027, 0.015984388068318367, 0.01138487458229065, 0.005129043012857437, -0.003912973217666149, -0.0007981418748386204, -0.0027553981635719538, 0.005652414634823799, 0.023200759664177895, 0.034530218690633774, 0.04255935549736023, -0.03571242466568947, -0.018853696063160896, -0.02371797524392605, 0.014691351912915707, -0.009740871377289295, -0.012019077315926552, 0.005975673440843821, 0.013669237494468689, -0.0020534642972052097, -0.002740004798397422, -0.0029832187574356794, 0.011612694710493088, 0.0048427279107272625, -0.008595610968768597, -0.0036389727611094713, 0.0026753530837595463, 0.010972334071993828, 0.002087329514324665, -0.011126266792416573, -0.006018774583935738, 0.025084897875785828, 0.010085680522024632, 0.0012299235677346587, 0.0153193986043334, 0.0005887931911274791, 0.0316239669919014, -0.015762723982334137, 0.006668371614068747, -0.004525626078248024, -0.00764738442376256, 0.013878586702048779, 0.012376202270388603, -0.007758216001093388, -0.0017271266551688313, 0.002364408690482378, -0.0025152629241347313, -0.03682073950767517, -0.012339257635176182, -0.009820916689932346, 0.02699366584420204, -0.0016209130408242345, 0.012049864046275616, -0.005981830880045891, 0.009389904327690601, 0.004975109826773405, 0.0004256243701092899, -0.006283539347350597, 0.0049874247051775455, -0.006594483740627766, 0.011464918963611126, -0.008337004110217094, -0.01594744436442852, -0.008423206396400928, -0.01274564117193222, 0.0017502165865153074, -0.012363887391984463, 0.008195385336875916, -0.012591707520186901, -0.010134939104318619, 0.009026623331010342, -0.0261316429823637, 0.006249674130231142, -0.01751140132546425, -0.0008497093804180622, 0.02142745442688465, 0.0063543482683598995, -0.024838605895638466, -0.0028339039999991655, -0.004454817157238722, -0.008903476409614086, 0.005172144155949354, 0.015676522627472878, 0.014063306152820587, 0.0012968843802809715, -0.01497458852827549, -0.022227905690670013, 0.0061942581087350845, 0.010264242999255657, 0.02345936745405197, 0.0013438338646665215, -0.007493451703339815, -0.0010636760853230953, 0.027289217337965965, 0.010941547341644764, -0.001025962526910007, 0.022757433354854584, -0.01433422788977623, -0.014420430175960064, 0.00521216681227088, 0.021501341834664345, -0.020577745512127876, 0.01434654276818037, 0.0054245940409600735, 0.011754313483834267, -0.0263286754488945, 0.016353826969861984, 0.0022905210498720407, 0.01208065077662468, -0.027338474988937378, -0.007930620573461056, 0.012185324914753437, 0.011680425144731998, 0.0046303002163767815, 0.00308943260461092, -0.0019595653284341097, -0.01498690340667963, -0.00013719266280531883, 0.008798802271485329, 0.0025737574324011803, -0.037387214601039886, 0.021809207275509834, -0.010356603190302849, -0.008872689679265022, -0.01594744436442852, -0.009777815081179142, -0.019210821017622948, 0.009673140943050385, 0.014260340481996536, 0.010806086473166943, 0.0010413557756692171, 0.003398837521672249, 0.0049504805356264114, 0.022929837927222252, -0.008891161531209946, -0.018989156931638718, -0.0057293809950351715, -0.011366402730345726, -0.0006191949360072613, 0.024998696520924568, 0.007813631556928158, 0.0009882489684969187, 0.0004433266294654459, 0.008768015541136265, -0.015146993100643158, -0.003386522876098752, -0.012326943688094616, -0.02215401642024517, 0.0021843072026968002, -0.0013669237960129976, -0.009771658107638359, -0.008478621952235699, -0.006323562003672123, 0.019494056701660156, 0.016513917595148087, -0.004328592214733362, 0.01636614091694355, 0.012954989448189735, -0.008398576639592648, 0.005039761774241924, 0.002698443131521344, 0.01884138211607933, -0.01594744436442852, 0.013447574339807034, -0.008774173445999622, 0.01110779494047165, -0.003101747017353773, -0.012197639793157578, -0.004830413032323122, 0.008484778925776482, 0.017708435654640198, 0.013312113471329212, -0.009870175272226334, -0.013570721261203289, 0.014740610495209694, 0.006434393581002951, 0.017499087378382683, 0.01627993956208229, 0.009636197239160538, -0.006043403875082731, 0.015233195386826992, -0.002466004341840744, -6.931788811925799e-05, 0.005452301818877459, 0.018385739997029305, -0.0118405157700181, -0.005055155139416456, -0.008737228810787201, 0.02568831481039524, -0.019851181656122208, -0.011643481440842152, -0.03618038073182106, 0.015553375706076622, -0.013964788988232613, 0.04347063973546028, 0.010849188081920147, -0.0016024410724639893, -0.014371171593666077, 0.015122364275157452, 0.028742343187332153, 0.022387994453310966, 0.014888386242091656, 0.0009328331216238439, -0.022289477288722992, -0.019962012767791748, -0.006000302731990814, -0.030269358307123184, 0.008651026524603367, 0.004143872763961554, -0.00215352070517838, 0.0013900137273594737, 0.009118982590734959, -0.008768015541136265, 0.014863756485283375, -0.02374260500073433, -0.014863756485283375, -0.022363366559147835, 0.020442284643650055, 0.007314889691770077, 0.020774777978658676, 0.008429363369941711, -0.006809989921748638, 0.014223395846784115, 0.0031263763085007668, -0.0015462555456906557, 0.03174711391329765, 0.0006850011995993555, -0.002903173677623272, -0.0003846397448796779, 0.020688576623797417, 0.015651892870664597, 0.0006484421901404858, -0.003549691755324602, 0.02913641184568405, 0.006249674130231142, -0.04694336652755737, -0.008404734544456005, 0.031131381168961525, -0.009174398146569729, -0.005289133172482252, 0.0006026471382938325, 0.0028770051430910826, -0.013632293790578842, 0.0009482264285907149, -0.009931747801601887, 0.010042579844594002, -0.015245510265231133, -0.01496227364987135, -0.023791862651705742, -0.005178301595151424, 0.0261316429823637, -0.027929577976465225, -0.00610189838334918, 0.02588534913957119, 0.008651026524603367, 0.007524237968027592, 0.045440979301929474, 0.008903476409614086, -0.02020830661058426, -0.0005175992264412344, 0.0203191377222538, 0.011637324467301369, -0.020774777978658676, 0.011027749627828598, 0.01614447869360447, 0.010639838874340057, 0.002492173109203577, -0.014186452142894268, -0.002664577681571245, -0.014395801350474358, 2.5086244932026602e-05, -0.0020303744822740555, 0.008090711198747158, -0.020417654886841774, -0.008687970228493214, -0.018016301095485687, 0.008718756958842278, 0.005994145758450031, -0.0032664553727954626, -0.01592281460762024, -0.006809989921748638, -0.009876332245767117, -0.0058894711546599865, -0.005566212348639965, 0.0013446034863591194, 0.009802444837987423, -0.011858987621963024, -0.0001978037180379033, -0.013078135438263416, 0.032436732202768326, -0.0004514081228990108, -0.013669237494468689, -0.01589818485081196, 0.012597865425050259, 0.0020904082339257, -0.038224607706069946, 0.011341772973537445, -0.020971812307834625, 0.008644869551062584, 0.0005903324927203357, -0.01349683292210102, 0.012918045744299889, -0.013250540941953659, 0.011027749627828598, -0.016045961529016495, 0.009833230637013912, 0.011421818286180496, 0.01822565123438835, 0.015011532232165337, 0.006668371614068747, -0.020109789445996284, 0.020171361044049263, 0.0011491087498143315, -0.015270140022039413, 0.0072656311094760895, 0.009125139564275742, -0.007074754219502211, 0.002901634434238076, -0.023447053506970406, -0.0027199937030673027, 0.02930881641805172, 0.03167322650551796, 0.011686583049595356, 0.020171361044049263, -0.028964007273316383, -0.021131902933120728, -0.020368395373225212, -0.002883162349462509, 0.004734974820166826, -0.038815710693597794, 0.053002163767814636, -0.008540195412933826, -0.031771741807460785, 0.008958891965448856, 0.01605827547609806, -0.00801682285964489, 0.009291387163102627, -0.0016563176177442074, 0.009223656728863716, -0.01611984893679619, 0.015590320341289043, -4.033522054669447e-05, -0.013188967481255531, -0.021698376163840294, -0.01676020957529545, 0.011698896996676922, 0.011335615999996662, 0.011009277775883675, -0.0049597169272601604, -0.003623579628765583, -0.018274908885359764, 0.001370002399198711, 0.016797153279185295, -0.010529007762670517, -0.0006315095815807581, 0.010652153752744198, 0.02674737386405468, 0.018668977543711662, -0.003885265439748764, -0.015011532232165337, -0.0006234280881471932, -0.032436732202768326, -0.009931747801601887, -0.016009017825126648, 0.009051252156496048, 0.005904864519834518, 0.010067208670079708, 0.0017332839779555798, 0.0025691394694149494, -0.026870520785450935, -0.0074257212691009045, 0.023139188066124916, -0.012905730865895748, -0.006656056735664606, -0.020306821912527084, 0.01687104068696499, 0.008675656281411648, 0.016206052154302597, -0.009402219206094742, -0.027289217337965965, 0.010639838874340057, -0.013644608668982983, 0.020910238847136497, 0.022585028782486916, -0.0017532953061163425, -0.0074257212691009045, -0.009365275502204895, 0.011612694710493088, 0.0059325722977519035, 0.012302313931286335, 0.0022612737957388163, 0.01884138211607933, -0.003355736378580332, 4.307714698370546e-05, -0.014826812781393528, 0.011877459473907948, 0.010485906153917313, -0.03686999902129173, 0.012696382589638233, -0.028422163799405098, -0.020860981196165085, -0.0021519814617931843, 0.010676783509552479, 0.0083616329357028, 0.015036161988973618, 0.0013892441056668758, 0.006003381684422493, 0.01923545077443123, 0.018434999510645866, -0.005169065203517675, 0.005181380081921816, -0.0009728556615300477, -0.017942413687705994, 0.008115340024232864, -0.011391031555831432, -0.0011845133267343044, -0.00854635238647461, -0.013275169767439365, 0.003000151365995407, 0.015393286012113094, 0.005449223332107067, -0.00013045809464529157, -0.008792645297944546, -0.0009082038886845112, 0.015023847110569477, 0.004744210746139288, -0.011581907980144024, -0.007862890139222145, -0.01477755419909954, -0.007678171154111624, 0.0052214027382433414, 0.0066314274445176125, 0.012265370227396488, -0.0037867482751607895, 0.027042925357818604, -0.00817075651139021, 0.011224783957004547, 0.007259473670274019, 0.002156599424779415, 0.009402219206094742, 0.0020149811170995235, -0.0013369069201871753, 0.025515910238027573, 0.02051617205142975, -0.010061051696538925, -0.006662214174866676, -0.009605410508811474, -0.0064651803113520145, -0.005052076652646065, -0.013952474109828472, 0.02195698395371437, 0.004159265663474798, -0.01990043930709362, 0.023841122165322304, 0.003869872074574232, -0.014555891044437885, 0.002740004798397422, 0.015627263113856316, -0.008084554225206375, -0.003086353885009885, -0.008121497929096222, -0.028200499713420868, 0.00526758236810565, 0.018385739997029305, -0.012979618273675442, 0.0002920876140706241, 0.009143611416220665, -0.0040422771126031876, -0.008398576639592648, -0.0017317446181550622, 0.013829328119754791, 0.020134417340159416, -0.006914664059877396, -0.018077874556183815, 0.009968692436814308, -0.00010794541594805196, 0.017572974786162376, -0.015578005462884903, 0.004787311889231205, -0.014937644824385643, -0.007493451703339815, 0.0006853860686533153, 0.019247764721512794, 0.00016470816626679152, 0.0019918913021683693, 0.005125964060425758, -0.008731071837246418, -0.01806556060910225, 0.007678171154111624, -0.006477494724094868, -0.013090450316667557, -0.010806086473166943, -0.013853956945240498, 0.0015539522282779217, 0.011557279154658318, 0.005012053996324539, 0.012234583497047424, 0.010947705246508121, -0.005544661544263363, -0.01117552537471056, 0.017474457621574402, -0.005803268868476152, -0.016834096983075142, 0.023693345487117767, 0.005904864519834518, 0.0203191377222538, 0.011144738644361496, 0.006705315317958593, 0.015110049396753311, 0.012499348260462284, 0.011274042539298534, -0.0026353306602686644, 0.017720751464366913, -0.009155926294624805, 0.013152023777365685, -0.026796631515026093, 0.013989417813718319, 0.01645234413444996, -0.010264242999255657, -0.03019546903669834, -0.020553115755319595, 0.02157522924244404, -0.003432702738791704, -0.01550411805510521, 0.009217499755322933], "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff": [-0.0006146904197521508, 0.010907843708992004, -0.0037997583858668804, 0.0240769125521183, -0.04000827297568321, -0.02713470719754696, 0.00011241888569202274, -0.001092872116714716, -0.016124079003930092, -0.012757937423884869, 0.02312617003917694, 0.027006227523088455, 0.02870214730501175, -0.0023094050120562315, -0.019670093432068825, -0.02259940840303898, -0.008710857480764389, 0.029755672439932823, 0.0029839184135198593, -0.002826531883329153, 0.03838944435119629, -0.03972562029957771, -0.024770697578787804, 0.01856517605483532, 0.0020717193838208914, -0.03630808740854263, -0.001795490155927837, -0.0014967771712690592, -0.05205957964062691, 0.009931405074894428, 0.0231004748493433, -0.011370367370545864, 0.020068377256393433, -0.0009242438245564699, 0.008447475731372833, -0.02262510359287262, -0.0012221538927406073, 0.009121989831328392, 0.029447324573993683, 0.010252602398395538, -0.003908965270966291, 0.0057205152697861195, 0.018385306000709534, -0.009244044311344624, -0.025207525119185448, -0.008935695514082909, 0.010207634419202805, 0.0013329667272046208, 0.040702059864997864, 0.011980640701949596, -0.0130919823423028, -0.012584490701556206, -0.026774967089295387, -0.021378859877586365, 0.02352445386350155, -0.011999912559986115, 0.03001262992620468, 0.0657811090350151, 0.020980576053261757, -0.01465942244976759, 0.016059840098023415, 0.00919907633215189, -0.013464570045471191, -0.0261839646846056, 0.016291102394461632, 0.011974217370152473, 0.017126213759183884, -0.022136883810162544, -0.027956970036029816, -0.03404686227440834, 0.019747180864214897, 0.01683071255683899, -0.055143069475889206, 0.010541679337620735, 0.019567308947443962, 0.011280432343482971, -0.017563041299581528, 0.003404686227440834, 0.060693349689245224, -0.02901049517095089, 0.021301772445440292, 0.004936795216053724, 0.007689451798796654, 0.00017414889589417726, 0.05452637001872063, 0.005967836827039719, 0.016843561083078384, -0.0436827652156353, -0.019079091027379036, -0.025978397578001022, 0.0005657078581862152, 0.052316535264253616, -0.022804973646998405, 0.0026129360776394606, 0.012333957478404045, -0.013124101795256138, 0.002245165640488267, -0.0002003465051529929, 0.03147728741168976, 0.018834980204701424, 0.03468925505876541, 0.01121619250625372, -0.026774967089295387, 0.03376420959830284, 0.009385370649397373, -0.04399111494421959, 0.013618744909763336, 0.04717738926410675, -0.01884782873094082, 0.022046949714422226, 0.030141109600663185, -0.05308740958571434, -0.008081311360001564, 0.02229105867445469, -0.019888507202267647, 0.0005893961642868817, -0.02931884489953518, -0.01132539939135313, 0.01702343113720417, -0.042963284999132156, -0.02077500894665718, -0.024796394631266594, 0.04273202270269394, 0.008068463765084743, -0.016959192231297493, 0.0010238147806376219, -0.008209790103137493, 0.06023082509636879, 0.016393885016441345, 0.03394407778978348, 0.01343887485563755, -0.011614476330578327, 0.03278777003288269, 0.02461652271449566, -0.013426026329398155, -0.0023495545610785484, 0.03404686227440834, 0.06948129087686539, -0.017652977257966995, 0.019811419770121574, -0.04219241440296173, -0.04129306226968765, -0.04640651494264603, -0.002291739219799638, 0.009237620048224926, -0.02352445386350155, 0.005113453138619661, 0.03756717965006828, -0.028804929926991463, -0.006542779039591551, -0.02939593233168125, -0.005132724996656179, 0.0018003081204369664, 0.021995557472109795, 0.061618395149707794, -0.005216236226260662, -0.02105766348540783, 0.03743870183825493, 0.028291014954447746, 0.004846859723329544, 0.020171159878373146, -0.06644919514656067, 0.006176614668220282, 0.026697879657149315, 0.04239797964692116, 0.02055659517645836, 0.06932712346315384, 0.017293237149715424, -0.014171203598380089, 0.0226764939725399, 0.05899742990732193, 0.002351160626858473, 0.019721483811736107, -0.01273866556584835, -0.0009724233532324433, -0.00749673368409276, 0.0240769125521183, 0.0030353099573403597, 0.008845760487020016, -0.05653063952922821, -0.00251015298999846, 0.0034721374977380037, 0.024745002388954163, -0.01419689878821373, -0.04686903953552246, 0.0176401287317276, 0.013682983815670013, 0.032248158007860184, 0.027905579656362534, -0.0019014851422980428, -0.03936588019132614, -0.008762248791754246, 0.004458211828023195, 0.010284721851348877, 0.01775575987994671, -0.021160446107387543, 0.00796568114310503, 0.022830668836832047, -0.022702191025018692, -0.0035845565143972635, 0.011961368843913078, -0.020787857472896576, 0.0031027612276375294, 0.03746439516544342, -0.015481686219573021, 0.01527612004429102, -0.029113279655575752, -0.01451809611171484, 0.011158376932144165, -0.023897042497992516, 0.02324180118739605, -0.015995601192116737, -0.014864988625049591, -0.0005400121444836259, 0.021622968837618828, 0.027057619765400887, -0.014094116166234016, 0.010914267972111702, 0.02721179462969303, -0.02362723834812641, 0.04345150291919708, 0.007805082481354475, 0.004519239068031311, -0.00844105239957571, -0.04807673767209053, 0.02780279517173767, -0.011826466768980026, 0.036102522164583206, -0.04098471254110336, -0.005563128739595413, 0.02872784249484539, -0.016509516164660454, -0.005832934286445379, -0.032016899436712265, 0.012295413762331009, 0.03463786467909813, 0.024822089821100235, 0.02545163594186306, -0.02934454008936882, -0.009892861358821392, 0.006125223357230425, 0.0306550245732069, -0.01045816857367754, 0.008062039501965046, 0.022548016160726547, 0.006610230542719364, -0.008929271250963211, 0.029293149709701538, 0.017871391028165817, -0.009006358683109283, -0.028599364683032036, 0.0013080739881843328, -0.0005275657749734819, 0.012989198789000511, -0.03810678794980049, 0.009301859885454178, 0.04129306226968765, -0.017434563487768173, -0.022496623918414116, -0.01663799397647381, -0.01300847064703703, -0.006391816772520542, -0.017845693975687027, 0.013528809882700443, 0.06362266093492508, -0.02998693473637104, 0.03679630532860756, -0.016483820974826813, -0.005129512865096331, 0.049746960401535034, -0.010284721851348877, -0.03032097965478897, 0.0014229018706828356, 0.03849222511053085, 0.00809415988624096, 0.01192924939095974, 0.03317320719361305, 0.007837202399969101, 0.012764361687004566, 0.005926080979406834, 0.02259940840303898, -0.03898044675588608, 0.01618831977248192, 0.02103196643292904, 0.023395976051688194, 0.018102651461958885, -0.03597404435276985, -0.0100084925070405, -0.0016019691247493029, -0.0026193601079285145, 0.005714091472327709, 0.027854187414050102, -0.00977080687880516, 0.034201037138700485, 0.006764404941350222, -0.01083718053996563, -0.04155001789331436, -0.008473171852529049, -0.012346805073320866, -0.00394108472391963, 0.004406820051372051, 0.011132681742310524, -0.02447519637644291, -0.014633726328611374, 0.02649231255054474, -0.01920756883919239, 0.049515701830387115, 0.026697879657149315, -0.02433387003839016, 0.007850049994885921, 0.006616654340177774, 0.00238006841391325, 0.0070342100225389, -0.007805082481354475, 0.011396062560379505, 0.028804929926991463, -0.013284699991345406, -0.04101040959358215, -0.01024617813527584, -0.025670049712061882, -0.0062087345868349075, 0.03116893768310547, -0.06218370422720909, 0.018513783812522888, 0.004499967209994793, -0.011627324856817722, 0.053498540073633194, -0.02214973233640194, -0.042320892214775085, -0.014556639827787876, -0.06321153044700623, -0.02086494490504265, -0.0098029263317585, -0.03158007189631462, -0.01248813234269619, -0.040111057460308075, -0.01775575987994671, -0.0473315604031086, 0.03253081440925598, -0.018128348514437675, -0.0068543399684131145, -0.03522886708378792, -0.011196920648217201, -0.009565240703523159, -0.015995601192116737, -0.009796502999961376, -0.012327533215284348, 0.010503135621547699, 0.010882147587835789, 0.02153303474187851, 0.0006737103103660047, -0.006504235323518515, -0.0016734354430809617, 0.028907712548971176, 0.056684814393520355, 0.002852227771654725, -0.03993118926882744, -0.020171159878373146, 0.0024282478261739016, -0.007895017974078655, -0.01300847064703703, -0.017961325123906136, -0.03756717965006828, -0.012430316768586636, -0.01923326589167118, 0.05468054488301277, 0.009520273655653, 0.04345150291919708, 0.01590566523373127, 0.009603784419596195, -0.028959104791283607, 0.014505247585475445, -0.01643242873251438, -0.0306550245732069, -0.025837071239948273, -0.041627105325460434, 0.030989067628979683, 0.001608393038623035, -0.009359675459563732, 0.012378925457596779, -0.011839314363896847, 0.005707667209208012, -0.014209747314453125, 0.004056715872138739, 0.010830756276845932, 0.019451679661870003, 0.02150733768939972, -0.01946452632546425, -0.031066155061125755, 0.02369147725403309, -0.033918384462594986, 0.0140684200450778, -0.004082411527633667, -0.0017216148553416133, -0.01480074878782034, -0.013798614963889122, -0.013348939828574657, -0.008685161359608173, -0.016085537150502205, -0.017730064690113068, -0.03394407778978348, 0.020479509606957436, 0.0014060389949008822, 0.016483820974826813, 0.04746004194021225, -0.0312203299254179, 0.009211924858391285, -0.000705829996149987, 0.0016894952859729528, 0.01749880239367485, 0.020595138892531395, -0.01674077846109867, -0.0002792404848150909, -0.0028971952851861715, 0.020479509606957436, 0.010226906277239323, 0.001052722567692399, 0.03841513767838478, -0.016869256272912025, -0.014620878733694553, 0.047280170023441315, 0.011036322452127934, -0.001986602321267128, 0.0048243761993944645, -0.039545752108097076, 0.034740645438432693, -0.006950698792934418, 0.027931274846196175, 0.0140684200450778, -0.03898044675588608, -0.011351095512509346, 0.01640673354268074, 0.0022291059140115976, 0.0068543399684131145, -0.020929183810949326, -0.03661643713712692, 0.007483885623514652, -0.017935629934072495, -0.0100084925070405, -0.04810243472456932, -0.03407255932688713, 0.0324794203042984, 0.006244066171348095, -0.01183289010077715, -0.015918513759970665, 0.012032032944262028, -0.017396019771695137, -0.008351117372512817, 0.025053352117538452, 0.01264230627566576, 0.009121989831328392, 0.02200840599834919, -0.005399318411946297, -0.0006199098424986005, -0.0004725608159787953, 0.013644440099596977, 0.029087582603096962, 0.021288923919200897, 0.02414115145802498, -0.06346849352121353, -0.013939941301941872, 0.0077408431097865105, -9.21433384064585e-05, -0.007676603738218546, 0.008286877535283566, -0.022894909605383873, 0.002938950899988413, 0.0031332748476415873, 0.007374678738415241, 0.019104786217212677, -0.011280432343482971, -0.0038961172103881836, -0.025695744901895523, 0.029909847304224968, -0.010535255074501038, -0.027597229927778244, -0.014376768842339516, 0.007843625731766224, -0.011318976059556007, 0.009867166168987751, 0.027340272441506386, -0.008286877535283566, -0.02934454008936882, -0.018192587420344353, 0.006064195651561022, -0.0027879884000867605, -0.015841426327824593, -0.028547972440719604, -0.008466747589409351, 0.00809415988624096, 0.0271604023873806, -0.007689451798796654, -0.002567968564108014, -0.0032023321837186813, 0.0236657802015543, 0.00487255584448576, 0.0219827089458704, -0.032299552112817764, -0.008871455676853657, -0.016483820974826813, -0.009385370649397373, 0.005206600297242403, -0.0013883732026442885, 0.04848787188529968, -0.03214537724852562, 0.021879926323890686, -0.009205500595271587, 0.013194764964282513, -0.011723683215677738, -0.008196942508220673, -0.001234198804013431, 0.0074132224544882774, -0.008312573656439781, 0.0361282154917717, 0.011807194910943508, 0.014132659882307053, -0.047305867075920105, -0.013014894910156727, 0.037335917353630066, 0.012134815566241741, 0.005286899395287037, -0.008055616170167923, -0.01359304878860712, 0.009969948790967464, -0.004756924696266651, 0.0033436587546020746, -0.020736465230584145, -0.018076956272125244, 0.015777187421917915, -0.023357432335615158, -0.029421627521514893, -0.00989928562194109, -0.031991202384233475, 0.008158398792147636, 0.013111254200339317, 0.00021841382840648293, -0.0009659994393587112, 0.007580244913697243, 0.02500195987522602, -0.003735519014298916, -0.043220244348049164, 0.02492487244307995, 7.558162178611383e-05, -0.005698031280189753, -0.015494533814489841, 0.014479552395641804, 0.01747310720384121, 0.019169025123119354, -0.011993489228188992, 0.019246112555265427, -0.034869126975536346, 0.03720743954181671, -0.026363834738731384, -0.005794390570372343, 0.004612386226654053, -0.02782849222421646, 0.0055791884660720825, -0.008646618574857712, -0.03150298446416855, -0.019927050918340683, -0.018603719770908356, -0.024115456268191338, 0.0036359478253871202, -0.017344627529382706, -0.0006255307816900313, -0.015366055071353912, -0.01227614190429449, 0.027314577251672745, -0.0162397101521492, 0.03242802992463112, 0.012918535619974136, 0.009841470047831535, 0.05468054488301277, 0.006234430242329836, 0.021147597581148148, 0.00617982679978013, 0.016111232340335846, -0.017730064690113068, 0.00573336286470294, -0.017126213759183884, -0.02055659517645836, -0.04129306226968765, 0.021263228729367256, -0.011473149992525578, 0.005877901799976826, -0.014608031138777733, -0.028959104791283607, -0.021789992228150368, -0.0038704215548932552, -0.006860763765871525, 0.02469361014664173, 0.054474979639053345, -0.010605919174849987, -0.008184094913303852, 0.004763348493725061, 0.027391664683818817, 0.009077021852135658, -0.012109119445085526, 0.006905731279402971, -0.008653041906654835, 0.009738687425851822, 0.019271809607744217, 0.003741942811757326, -0.03057793714106083, -0.016303950920701027, 0.02127607725560665, 0.002670751418918371, 0.020286791026592255, -0.025104742497205734, -0.003700187196955085, -0.0434001125395298, 0.010014916770160198, -0.0056209443137049675, -0.03312181681394577, 0.014723662286996841, -0.004130591172724962, 0.025194678455591202, 0.04334872215986252, 0.006070619914680719, -0.02836810238659382, 0.013939941301941872, -0.013085558079183102, 0.02931884489953518, 0.005062061827629805, 0.026055485010147095, 0.023961281403899193, 0.032016899436712265, 0.0004673413641285151, -0.025207525119185448, 0.018809285014867783, -0.01004061195999384, -0.009417490102350712, -0.009366098791360855, 0.0017569465562701225, 0.00679010059684515, -0.00797852873802185, 0.008383236825466156, 0.0383637472987175, 0.0025470906402915716, -0.03312181681394577, 0.01884782873094082, -0.019258961081504822, 0.030192499980330467, 0.028291014954447746, -0.013387483544647694, 0.025721440091729164, -0.0036744915414601564, 0.026312442496418953, 0.01778145506978035, -0.0049432190135121346, -0.015224728733301163, 0.004483907483518124, -0.0009515455458313227, 0.004699109122157097, -0.021520186215639114, -0.00801064819097519, -0.014620878733694553, -0.005187328439205885, 0.016329646110534668, -0.02315186709165573, 0.03504899516701698, -0.014864988625049591, -0.009064174257218838, -0.001421295921318233, -0.001427719835191965, 0.014787901192903519, 0.015969906002283096, 0.013207612559199333, 0.0005877901567146182, 0.013336091302335262, 0.0009218348423019052, -0.04781978204846382, -8.275836444227025e-05, -0.0021295349579304457, 0.006578110624104738, 0.005026730243116617, 0.03160576522350311, -0.04596968740224838, -0.016175471246242523, -0.019644396379590034, -0.0008985480526462197, -0.03867209702730179, -0.018745046108961105, 0.022278210148215294, -0.012687274254858494, -0.0116915637627244, 0.015250424854457378, -0.006032076198607683, -0.014441008679568768, -0.02295914851129055, -0.0330447293817997, 0.002704477170482278, 0.01047101616859436, 0.0009258498321287334, -0.00012737461656797677, -0.005129512865096331, 0.011415334418416023, -0.024410957470536232, 0.030500849708914757, -0.014877836219966412, -0.012430316768586636, -0.016059840098023415, 0.015096249990165234, -0.01480074878782034, 0.001976966392248869, 0.018552327528595924, -0.006822220049798489, -0.018076956272125244, 0.0011073260102421045, 0.021443098783493042, 0.015096249990165234, -0.00045529648195952177, 0.022098340094089508, -0.001814762013964355, -0.00801064819097519, -0.012950655072927475, -0.012873568572103977, 0.027314577251672745, -0.019785722717642784, 0.006950698792934418, -0.004625234287232161, 0.020389573648571968, 0.014106963761150837, -0.030757807195186615, -0.034509386867284775, 0.030783502385020256, -0.0023575846571475267, 0.0004091244481969625, -0.0012044881004840136, 0.017010582610964775, 0.03844083473086357, -0.021944165229797363, 0.0306550245732069, 0.003819030011072755, 0.019079091027379036, -0.01451809611171484, -0.005771906580775976, -0.02998693473637104, 0.045070335268974304, -0.016008449718356133, 0.02055659517645836, -0.01145387813448906, 0.02276642993092537, -0.054783329367637634, -0.0028345617465674877, 0.008306149393320084, 0.036667827516794205, -0.002720536896958947, -0.02388419397175312, 0.02967858500778675, 0.018488088622689247, -0.021597273647785187, 0.013259004801511765, 0.009828622452914715, -0.010438896715641022, -0.004586690571159124, 0.010939963161945343, 0.015828579664230347, 0.010907843708992004, 0.03659074008464813, 0.0024410956539213657, 0.013670136220753193, -0.02808544971048832, 0.007888593710958958, -0.015032011084258556, 0.003229633904993534, -0.0016734354430809617, 0.017627280205488205, 0.02125038020312786, 0.008993511088192463, 0.026338137686252594, 0.045430075377225876, 0.033250294625759125, 0.03127172216773033, -0.01728038862347603, -0.0017778243636712432, -0.009931405074894428, -0.005331866908818483, -0.02578568086028099, -0.009725839830935001, -0.000164713739650324, -0.02385849878191948, 0.03846653178334236, -0.015366055071353912, 0.021905623376369476, -0.026774967089295387, 0.025772832334041595, -0.006597382482141256, -0.04833369702100754, 0.00998279731720686, 0.007991376332938671, -0.03548582270741463, -0.01201276108622551, 0.0019721484277397394, 0.013631592504680157, -0.01811549998819828, 0.004949642810970545, -0.006234430242329836, 0.005399318411946297, 0.005453921854496002, 0.015494533814489841, -0.0024780333042144775, 0.029575802385807037, 0.01794847846031189, 0.009706567972898483, -0.0038029702845960855, 0.038543619215488434, -0.007252623792737722, -0.022393841296434402, 0.0022371357772499323, 0.0355629101395607, 0.024295326322317123, -0.025515874847769737, 0.019413135945796967, -0.030989067628979683, -0.012802904471755028, -0.0052933236584067345, 0.01946452632546425, 0.05586254969239235, 0.0008351117139682174, -0.00440360838547349, 0.0005508525064215064, 0.006520295049995184, 0.018359608948230743, -0.027622925117611885, 0.019605852663517, 0.03214537724852562, -0.014813597314059734, 0.04083053767681122, -0.003229633904993534, -0.018475240096449852, -0.03936588019132614, 0.0023688264191150665, -0.008775097317993641, -0.009301859885454178, 0.005794390570372343, 0.013682983815670013, -0.023871347308158875, -0.03373851254582405, 0.021044814959168434, -0.02259940840303898, -0.008293301798403263, 0.011042746715247631, -0.011209769174456596, 0.0034207459539175034, 0.031348809599876404, 0.022727886214852333, -0.0026225720066577196, 0.037901222705841064, 0.04722877964377403, 0.03317320719361305, -0.018963459879159927, 0.00974511168897152, 0.004866131581366062, -0.018770741298794746, 0.0007395556312985718, -0.03155437484383583, 0.030166804790496826, -0.00047496979823336005, -0.0056787594221532345, 0.03589695692062378, -0.024655066430568695, -0.004583478439599276, 0.013682983815670013, -0.006343637127429247, 0.021147597581148148, -0.00011553047806955874, -0.014543791301548481, 0.01513479370623827, -0.0009635904571041465, -0.025888463482260704, 0.0007319272262975574, 0.026466617360711098, 0.027982667088508606, -0.023306040093302727, 0.034457992762327194, -0.016085537150502205, 0.02844518981873989, 0.003835089970380068, 0.00967444758862257, -0.006674469914287329, 0.052599191665649414, 0.031117547303438187, -0.026672182604670525, -0.057301510125398636, 0.021096207201480865, 0.02229105867445469, 0.0025438787415623665, -0.023177562281489372, -0.012886416167020798, 0.002829744014889002, -0.01918187364935875, -0.028547972440719604, 0.014248290099203587, -0.005987108685076237, -0.001801914069801569, 0.006828644312918186, 0.006070619914680719, -0.0034560777712613344, 0.00796568114310503, 0.011267583817243576, -0.02371717244386673, -0.038569312542676926, -0.016329646110534668, 0.018950611352920532, -0.020428117364645004, 0.03026958741247654, -0.00024250359274446964, -0.012815752997994423, 0.05719872936606407, 0.027288880199193954, -0.031014764681458473, -0.026954837143421173, -0.005775118712335825, 0.060744740068912506, -0.008383236825466156, -0.003758002771064639, 0.0014871412422508001, -0.002280497457832098, 0.011460302397608757, -0.00786932185292244, -0.013059861958026886, 0.006456055678427219, 0.01250097993761301, -0.032916247844696045, 0.014967771247029305, -0.024488044902682304, 0.0014100540429353714, -0.021301772445440292, 0.0456356443464756, -0.019284656271338463, 0.0023816742468625307, -0.01499346736818552, 0.009578089229762554, 0.018886372447013855, 0.001349026570096612, -0.012661578133702278, -0.012173359282314777, -0.018475240096449852, -0.00679010059684515, -7.56820008973591e-05, -0.015083402395248413, -0.0016124079702422023, -0.0021568366792052984, -0.03271068260073662, -0.021520186215639114, -0.005900385323911905, 0.02996123768389225, 0.019361743703484535, -0.012719393707811832, -0.010875724256038666, 0.048873305320739746, -0.005036366172134876, 0.010291146114468575, 0.025837071239948273, 0.014543791301548481, 0.0025230010505765676, 0.015802882611751556, -0.03520317003130913, -0.0024940932635217905, -0.001436552731320262, 0.003854361828416586, -0.0013313607778400183, 0.016291102394461632, -0.009693719446659088, 0.039186011999845505, -0.02870214730501175, 0.02993554249405861, 0.000549648015294224, -0.017909934744238853, -0.014710813760757446, -0.019413135945796967, 0.028213927522301674, 0.03959714248776436, 0.0004589099553413689, -0.013098405674099922, 0.007927137427031994, -0.015969906002283096, -0.00763806002214551, -0.007406798657029867, 0.04298898205161095, 0.04065066948533058, -0.007361831143498421, -0.021777143701910973, 0.0030160380993038416, 0.032273855060338974, -0.016612298786640167, -0.020094072446227074, 0.001246243598870933, 0.025515874847769737, 0.007772963028401136, -0.028676452115178108, 0.007599516771733761, -0.015301816165447235, 0.011794347316026688, -0.02492487244307995, -0.025297461077570915, -0.026672182604670525, 0.006388604640960693, -0.033250294625759125, -0.010663733817636967, -0.014890683814883232, -0.024539437144994736, 0.023023387417197227, -0.013194764964282513, -0.0070534818805754185, 0.02435956709086895, -0.005431437864899635, 0.015507382340729237, 0.007702299393713474, -0.01702343113720417, -0.017601585015654564, -0.019503070041537285, -0.0018308218568563461, 0.014762205071747303, 0.019387438893318176, 0.014415312558412552, -0.016470972448587418, -0.003973204642534256, 0.016226863488554955, -0.012616611085832119, 0.0012799693504348397, -0.003523529041558504, -0.026171116158366203, -0.003501045284792781, 0.031991202384233475, 0.022740734741091728, -0.001867759507149458, 2.018772102019284e-05, 0.004207678139209747, -0.009693719446659088, -0.0064656916074454784, -0.006918579339981079, -0.016894951462745667, 0.0035974043421447277, -0.00725904805585742, 0.014145507477223873, -0.05920299515128136, -0.021969862282276154, -0.016445277258753777, 0.01949022337794304, 0.008312573656439781, -0.018513783812522888, -0.005807238165289164, -0.005498889368027449, -0.0077408431097865105, 0.024179695174098015, -0.007625212427228689, -0.03910892456769943, 0.014029876329004765, -0.0056883953511714935, -0.012096271850168705, 0.007920713163912296, -0.02295914851129055, -0.009835046716034412, -0.002057265490293503, -0.019027698785066605, 8.100181730696931e-05, -0.01453094370663166, 0.029550107195973396, -0.005800814367830753, -0.01711336523294449, 0.05442358925938606, -0.0179227814078331, 0.017293237149715424, -0.029447324573993683, -0.00942391436547041, 0.0159570574760437, -0.0056113083846867085, -0.0015963481273502111, 0.004984974395483732, -0.004740864969789982, 0.012995623052120209, 0.001127400784753263, -0.012032032944262028, 0.03777274489402771, 0.0219827089458704, 0.015417447313666344, -0.026119723916053772, -0.018359608948230743, -0.03145159035921097, 0.032607901841402054, 0.00012044880713801831, 0.02939593233168125, -0.00829972606152296, 0.0045642065815627575, 0.013413178734481335, 0.01207057572901249, -0.005203388165682554, 0.0341496467590332, -0.019747180864214897, -0.0026627215556800365, 0.014119812287390232, 0.0002758277696557343, -0.003619888098910451, -0.012456011958420277, -0.003513893112540245, 0.034740645438432693, 0.00045369050349108875, -0.01984996348619461, -0.006388604640960693, 0.006044923793524504, 0.01262945868074894, 0.017563041299581528, -0.00607704371213913, -0.009937829338014126, 0.009539545513689518, 0.01889922097325325, -0.022278210148215294, -0.007304015569388866, 0.027905579656362534, -0.00966159999370575, 0.02032533474266529, 0.011511693708598614, 0.011042746715247631, 0.0022628314327448606, -0.0033597187139093876, -0.0013530416181311011, 0.010464591905474663, 0.007304015569388866, -0.009006358683109283, -0.013169068843126297, -0.006372544914484024, -0.0033308109268546104, -0.00937894731760025, 0.0032521176617592573, 0.010805061087012291, -0.010117699392139912, 0.021597273647785187, 0.022419538348913193, 0.013477418571710587, 0.0035684965550899506, 0.03615391254425049, -0.007291167508810759, -0.026440922170877457, -0.00231743510812521, 0.003054581582546234, 0.0041370149701833725, 0.006892883684486151, -0.01564870774745941, -0.04550716280937195, 0.0019384227925911546, -0.004711957182735205, 0.005132724996656179, 0.03805539757013321, -0.01094638742506504, -0.00809415988624096, -0.022265363484621048, 0.008113431744277477, -0.013130526058375835, -0.0018404577858746052, -0.00525799160823226, 0.015867123380303383, 0.007895017974078655, 0.00214880658313632, -0.025181829929351807, 0.01999128982424736, -0.03648795932531357, 0.01110056135803461, -0.01036180928349495, -0.05277905985713005, -0.010927115567028522, -0.014608031138777733, 0.011980640701949596, -0.036025434732437134, 0.010894996114075184, 0.02010692097246647, 0.003080277470871806, 0.02094203233718872, -0.004210890270769596, -0.0009138049208559096, -0.003937873058021069, 0.02898479998111725, 0.014261138625442982, 0.004217314068228006, 0.0038061821833252907, 0.0011635354021564126, 0.019927050918340683, -0.011132681742310524, 0.023498758673667908, -0.0021198990289121866, 0.00031597737688571215, -0.017742911353707314, 0.004438939969986677, -0.012179783545434475, -0.0018131559481844306, 0.014903532341122627, -0.007991376332938671, 0.02452658861875534, 0.025490179657936096, 0.003407898126170039, -0.01671508140861988, -0.017434563487768173, -0.0030593995470553637, 0.02480924129486084, -0.00035371800186112523, -0.01663799397647381, 0.0028120779898017645, -0.013207612559199333, 0.010175514966249466, -0.00488540343940258, 0.012244022451341152, -0.03412394970655441, 0.008556682616472244, -0.0045545706525444984, -0.004843648057430983, -0.005107029341161251, 0.005656275898218155, -0.012590914964675903, -0.003709823125973344, -0.0043554287403821945, 0.00547319371253252, -0.031374502927064896, -0.009077021852135658, -0.013708679936826229, 0.02080070599913597, -0.008730129338800907, -0.026697879657149315, 0.01118407305330038, -0.012809328734874725, 0.026697879657149315, 0.005013882182538509, 0.005357563029974699, 0.03594834730029106, -0.013040590099990368, -0.009860741905868053, 0.022252514958381653, 0.013169068843126297, 0.010207634419202805, 0.011119833216071129, -0.011254736222326756, -0.009301859885454178, 0.032582204788923264, 0.005922869313508272, -0.00535435089841485, -0.024064065888524055, -0.0014758993638679385, -0.041678499430418015, -0.012044880539178848, 0.026145420968532562, 0.009314707480370998, -0.0046059624291956425, 0.026222508400678635, -0.0017778243636712432, 0.014556639827787876, 0.019593005999922752, -0.014736509881913662, -0.015250424854457378, -0.0070342100225389, 0.01683071255683899, -0.005164844915270805, -0.013426026329398155, 0.0023816742468625307, 0.010297569446265697, -0.029113279655575752, 0.0006889671785756946, -0.01604699343442917, 0.0017569465562701225, -0.0017922782571986318, 0.025695744901895523, -0.006311517208814621, -0.004438939969986677, -0.0029068312142044306, -0.016342494636774063, -0.01324615627527237, -0.02962719462811947, -0.006472115870565176, -0.0035749205853790045, -0.026081180199980736, 0.014582335017621517, 0.009873590432107449, -0.004002112429589033, -0.012623034417629242, -0.008865032345056534, -0.00030192499980330467, 0.0032039382494986057, -0.007644484285265207, -0.0403166227042675, -0.01730608381330967, 0.006456055678427219, 0.020351029932498932, 0.010965659283101559, -0.00012606974632944912, -0.018500937148928642, -0.004233373794704676, 0.014633726328611374, 0.0015505775809288025, 0.0077344193123281, -0.006491387728601694, -0.03127172216773033, -0.00012225552927702665, -0.027237489819526672, -0.01297635119408369, 0.004959278739988804, -0.011158376932144165, -0.020222552120685577, -0.0221240371465683, -0.015725795179605484, 0.005450709722936153, 0.03643656522035599, -0.00844105239957571, 0.02483493834733963, -0.02388419397175312, 0.0006287427386268973, 0.02752014249563217, 0.02236814610660076, 0.0018966671777889132, 0.017370322719216347, -0.004002112429589033, -0.012918535619974136, -0.011961368843913078, 0.019670093432068825, 0.023254649713635445, -0.007997800596058369, 0.0034721374977380037, 3.653613748610951e-05, 0.0033115390688180923, -0.032684989273548126, -0.01837245747447014, 0.004098471254110336, 0.029421627521514893, 0.009372523054480553, 0.018179738894104958, 0.0019127270206809044, -0.010117699392139912, 0.02901049517095089, 0.010811484418809414, 0.007785810623317957, -0.027031924575567245, 0.02752014249563217, 0.009989220649003983, 0.014312529936432838, -0.02388419397175312, -0.020016985014081, -0.009205500595271587, 0.017794303596019745, -0.014479552395641804, 0.021828535944223404, 0.008062039501965046, -0.017396019771695137, -0.017678672447800636, -0.0046059624291956425, -0.00015828979667276144, 0.0038800574839115143, 0.013605897314846516, -0.00022102355433162302, -0.013657288625836372, -0.0026755693834275007, -0.011389639228582382, -0.04902748018503189, -0.014813597314059734, 0.0012855902314186096, 0.007336135022342205, 0.009584512561559677, 0.024295326322317123, -0.0065267193131148815, -0.023845652118325233, 0.011530965566635132, 0.005784754641354084, 0.015044858679175377, -0.015635861083865166, -0.011588781140744686, -0.025156134739518166, -0.02324180118739605, -0.0029999781399965286, 0.024449501186609268, 0.02158442512154579, -0.029241757467389107, -0.010336113162338734, -0.0022323178127408028, -0.03522886708378792, 0.01604699343442917, -0.008858608081936836, -0.007683027535676956, 0.01830821856856346, 0.013143373653292656, -0.00010162867692997679, -0.004731229040771723, 0.03563999757170677, -0.01837245747447014, -0.0037804865278303623, 0.009263316169381142, 0.016445277258753777, 0.015533077530562878, 0.02424393594264984, 0.023704323917627335, -0.02032533474266529, 0.03032097965478897, 0.006497811526060104, -0.001361874514259398, -0.02125038020312786, 0.014877836219966412, 0.026929140090942383, -0.009494577534496784, -0.010959235019981861, -0.04622664675116539, -0.02623535506427288, -0.004358640871942043, -0.004124166909605265, 0.015571621246635914, -0.009456033818423748, 0.009809350594878197, 0.007355406880378723, 0.01949022337794304, -0.04175558686256409, -0.0016389067750424147, 0.014569487422704697, -0.012712969444692135, 0.01621401496231556, 0.0019689365290105343, -0.017575889825820923, -0.007426070049405098, 0.028856322169303894, -0.018346762284636497, -0.006099527236074209, -0.01296350359916687, -0.022715037688612938, -0.025503026321530342, 0.018102651461958885, -0.018629414960741997, 0.016766473650932312, -0.008396084420382977, -0.0032183921430259943, -0.002816895954310894, 0.002413793932646513, -0.004098471254110336, -0.020518051460385323, 0.01657375507056713, 0.00632115313783288, -0.016226863488554955, 0.0154688386246562, -0.02065937966108322, 0.008363964967429638, 0.0038029702845960855, -0.018038412556052208, -0.011492421850562096, -0.0015497746644541621, -0.008530987426638603, 0.023781411349773407, 0.0010687824105843902, 0.0021873502992093563, -0.0012655154569074512, 0.042603544890880585, -0.012668002396821976, -0.0032521176617592573, -0.0032537237275391817, -0.02777709998190403, -0.02195701375603676, 0.003992476500570774, 0.014286833815276623, -0.02430817484855652, -0.011909977532923222, 0.008081311360001564, -0.0017376746982336044, 0.034817732870578766, 0.0026514797937124968, -0.002360796555876732, -0.03348155692219734, 0.008196942508220673, -0.003282631514593959, -0.033507250249385834, 0.01004061195999384, 0.025888463482260704, -0.014749357476830482, -0.009051325730979443, -0.005331866908818483, -0.03183702751994133, 0.012372501194477081, 0.015404598787426949, 0.0033372349571436644, -0.0154688386246562, 0.05832934007048607, -0.003295479342341423, -5.600869553745724e-05, -0.03517747297883034, 0.004711957182735205, -0.003195908386260271, -0.013503113761544228, -0.04121597483754158, -0.0027895942330360413, -0.02514328621327877, -0.023845652118325233, -0.03561430424451828, -0.003179848426952958, -0.0011426577111706138, 0.014402464963495731, 0.03456077724695206, -0.013785767368972301, -0.015443142503499985, 0.0009113959386013448, -0.0019352107774466276, -0.01391424611210823, 0.007856474258005619, 0.00512308906763792, 0.014685118570923805, -0.030398067086935043, 0.0361282154917717, 0.04409389942884445, 0.0029100431129336357, 0.014235442504286766, 0.008171247318387032, -0.013233308680355549, 0.012680849991738796, 0.015584468841552734, -0.047639910131692886, -0.027854187414050102, 0.02374286763370037, 0.0019480586051940918, -0.017151908949017525, -0.002304587047547102, 0.0008551864884793758, 0.020016985014081, -0.03211968019604683, 0.0016686174785718322, 0.00038623917498625815, 0.031734246760606766, -0.021481642499566078, -0.009237620048224926, 0.015378903597593307, -0.002518183086067438, 0.005068485625088215, -0.00214880658313632, -0.008286877535283566, 0.0083318455144763, -0.00821621436625719, -0.00919907633215189, 0.0010856451699510217, 0.0044967555440962315, 0.0102204829454422, -0.01038750447332859, 0.006937851198017597, 0.010047036223113537, -0.015533077530562878, -0.018822133541107178, -0.03124602511525154, 0.017460258677601814, -0.014145507477223873, -0.0038896934129297733, -0.005161632783710957, -0.04280911013484001, -0.0023945223074406385, 0.005441073793917894, -0.010503135621547699, -0.007933561690151691, 0.010766517370939255, 0.0023126171436160803, 0.0023591904900968075, -0.01045816857367754, 0.018128348514437675, -0.0020187220070511103, -0.0008318997570313513, -0.011351095512509346, -0.012545947916805744, 0.034766342490911484, -0.013259004801511765, 0.01177507545799017, 0.026929140090942383, 0.007516005542129278, 0.00374836684204638, -0.0022965571843087673, -0.005103817209601402, 0.0045063914731144905, 0.013034166768193245, 0.0014574305387213826, -4.0431905290461145e-06, -0.012301838025450706, -0.01465942244976759, -0.008267605677247047, -0.006138070952147245, -0.00880721677094698, 0.009449610486626625, 0.005543856881558895, 0.009841470047831535, 0.011710835620760918, 0.0061573428101837635, 0.005534220952540636, -0.006680893711745739, -0.025528723374009132, 0.008909999392926693, 0.005524585023522377, 0.0008608074276708066, -0.003973204642534256, 0.05036365985870361, 0.018269674852490425, 0.012558795511722565, -0.013451722450554371, 0.0007989770965650678, -0.007220504339784384, -0.016201166436076164, 0.021571578457951546, 0.010740821249783039, -0.01191640179604292, -0.007207656279206276, -0.01699773594737053, -0.009417490102350712, 0.006751556880772114, -0.021828535944223404, 0.009321131743490696, -0.013310396112501621, 0.012006336823105812, 0.009886438027024269, 0.028162537142634392, 0.03160576522350311, -0.004185194615274668, 0.00788216944783926, -0.013528809882700443, -0.008800792507827282, -0.01918187364935875, -0.00967444758862257, -0.00631472934037447, 0.004695897456258535, 0.02578568086028099, -0.0003928638470824808, -0.0024908813647925854, -0.03283916041254997, -0.02419254370033741, -0.011595204472541809, 0.015417447313666344, 0.012796481139957905, 0.011865010485053062, -0.011948521248996258, 0.02509189583361149, -0.004140227101743221, -0.013901397585868835, 0.02324180118739605, 0.04190976172685623, -0.006340424995869398, -0.008787944912910461, 0.013336091302335262, -0.011447454802691936, 0.00023848863202147186, -0.00835754070430994, 0.007406798657029867, -0.010393928736448288, 0.0037644265685230494, 0.013464570045471191, -0.0024475196842104197, -0.00872370507568121, 0.0032713895197957754, -0.022856365889310837, 0.004628445953130722, 0.007156264968216419, -0.009115565568208694, -0.017126213759183884, -0.042911894619464874, -0.019503070041537285, 0.013169068843126297, -0.010316841304302216, -0.0012012760853394866, -0.01604699343442917, -0.010259025730192661, -0.02103196643292904, 0.012237598188221455, -0.008363964967429638, 0.0016340888105332851, -0.008196942508220673, -0.0064271483570337296, 0.008922846987843513, 0.010265449993312359, 0.02257371135056019, 0.0037772743962705135, 0.006009592209011316, -0.0048243761993944645, -0.0030433398205786943, 0.016933495178818703, -0.010265449993312359, 0.007336135022342205, -0.017730064690113068, 0.006398240569978952, -0.007509581279009581, 0.025156134739518166, -0.015918513759970665, -0.017999868839979172, 0.010817908681929111, 0.009815774857997894, 0.014209747314453125, 0.013207612559199333, -0.014685118570923805, -0.010811484418809414, -0.03145159035921097, -0.013515962287783623, 0.0236657802015543, 0.021712904796004295, -0.002145594684407115, -0.004159498494118452, 0.00953312125056982, 0.02721179462969303, 0.001986602321267128, 0.04360567778348923, -0.014633726328611374, -0.009963525459170341, -0.0008816852350719273, 0.0053511387668550014, -0.00890357606112957, -0.021802838891744614, 0.013798614963889122, -0.01621401496231556, 0.01901485212147236, 0.011665868572890759, 0.006841491907835007, -0.014312529936432838, -0.012552371248602867, 0.002320647006854415, 0.011820042505860329, 0.004560994915664196, -0.00999564491212368, 0.008755825459957123, 0.01730608381330967, -0.027879882603883743, 0.001236607669852674, 0.005707667209208012, -0.017434563487768173, 0.0170748233795166, 0.006623078137636185, 0.008800792507827282, -0.004927159287035465, -0.017601585015654564, -0.0016124079702422023, -0.0031878782901912928, 0.016059840098023415, -0.0023559785913676023, -0.0236657802015543, 0.008717281743884087, 0.0100084925070405, -0.00702136242762208, 0.01923326589167118, -0.02777709998190403, 0.010381081141531467, -0.008158398792147636, -0.0026996592059731483, 0.005601672455668449, -0.006777252536267042, 0.026363834738731384, -0.015584468841552734, 0.01093353983014822, -0.007708723656833172, -0.005762270651757717, -0.0006062589818611741, -0.01264230627566576, 0.005074909422546625, 0.0047248052433133125, -0.007580244913697243, 0.011665868572890759, -0.0010021340567618608, 0.0010599495144560933, 0.008505291305482388, -0.01250097993761301, 0.010869299992918968, -0.0013562535168603063, 0.0016348917270079255, 0.0069635468535125256, 0.015687251463532448, -0.01180077064782381, -0.0014542185235768557, -0.008935695514082909, -0.016817865893244743, 0.0016212408663704991, -0.0032874494791030884, -0.008511715568602085, 0.0027494446840137243, -0.006912155542522669, 0.03119463473558426, 0.02122468501329422, 0.005916445050388575, 0.024732153862714767, 0.0007459796033799648, 0.02511759102344513, -0.003186272457242012, -0.007361831143498421, 0.00010910654236795381, -0.01618831977248192, 0.011909977532923222, -0.018860677257180214, 0.014595183543860912, -0.006706589367240667, -0.0014341437490656972, -0.006738709285855293, 0.008659466169774532, -0.00547319371253252, 0.04160141199827194, -0.0077344193123281, -0.008620922453701496, -0.002842591842636466, 0.000855989521369338, 0.006668045651167631, 0.007079177536070347, 0.003960356581956148, -0.0261839646846056, -0.003150940639898181, -0.016316797584295273, -0.019605852663517, -0.005209812428802252, -0.05172553285956383, -0.0030064021702855825, 0.00679010059684515, 0.006892883684486151, -0.024706458672881126, 0.022496623918414116, 0.011897129938006401, 0.007856474258005619, 0.02060798741877079, -0.002932526869699359, -0.01036180928349495, 0.008922846987843513, 0.0047922562807798386, -0.007072753738611937, -0.0033693546429276466, -0.00214880658313632, 0.001505610067397356, 0.02967858500778675, 0.02125038020312786, -0.019888507202267647, 0.03934018686413765, -0.013348939828574657, -0.040085360407829285, 0.008190518245100975, 0.00989928562194109, 0.0240769125521183, 0.00572693906724453, -0.0037547906395047903, -0.001808338100090623, 0.007997800596058369, -0.01014981884509325, 0.01480074878782034, 0.010111276060342789, -0.0013514355523511767, 0.005187328439205885, -0.0042365859262645245, 0.007554548792541027, 0.0061894627287983894, -0.013047014363110065, -2.6398363843327388e-05, 0.023228952661156654, 0.004843648057430983, -0.00974511168897152, 0.006912155542522669, 0.019747180864214897, 0.007220504339784384, 0.014081268571317196, -0.006041712127625942, 0.021738599985837936, 0.000933879753574729, 0.012751513160765171, -0.007355406880378723, -0.013490266166627407, 0.013695832341909409, 0.0034689255990087986, 0.014402464963495731, -0.00417877035215497, 0.02343451976776123, 0.0070534818805754185, 0.0007407601224258542, 0.011447454802691936, 0.0018790013855323195, 0.01438961736857891, 0.010323265567421913, -0.016766473650932312, 0.005453921854496002, 0.009404642507433891, 0.004705533385276794, 0.020787857472896576, 0.008787944912910461, -0.009668024256825447, 0.010355385020375252, -0.017126213759183884, -0.017087670043110847, -0.01853948086500168, -0.02055659517645836, -0.007464613765478134, -0.005681971553713083, -0.007477461826056242, -0.007329711224883795, 0.003725883085280657, -0.00829972606152296, 0.002439489820972085, 0.013978485018014908, -0.006134859286248684, -0.01207057572901249, 0.007837202399969101, -0.0015826972667127848, 0.01618831977248192, -0.01797417365014553, -0.0032183921430259943, 0.003520317142829299, -0.009565240703523159, 0.0014028270961716771, 0.008351117372512817, -0.011081290431320667, 0.01652236469089985, 0.0068543399684131145, -0.009456033818423748, 0.006478539668023586, 0.0007752887904644012, -0.025207525119185448, -0.016291102394461632, 0.016124079003930092, 0.0026418438646942377, -0.02962719462811947, 0.009089869447052479, 0.025207525119185448, 0.0034432297106832266, 0.014608031138777733, -0.010798636823892593, 0.008473171852529049, 0.0030160380993038416, 0.004011748358607292, 0.016766473650932312, -0.012610186822712421, 0.004984974395483732, 0.013811462558805943, 0.020196855068206787, 0.005135937128216028, 0.0021777143701910973, -0.00561452005058527, -0.014839292503893375, -0.004294401500374079, 9.389987826580182e-05, 0.007766538765281439, -0.015443142503499985, -0.019888507202267647, -0.01780715212225914, 0.017254693433642387, -0.014852140098810196, -0.010393928736448288, 0.017884237691760063, 0.008929271250963211, -0.015687251463532448, 0.014890683814883232, 0.010670158080756664, 0.01056737545877695, 0.005428226199001074, -0.011575933545827866, -0.0015746674034744501, -0.012430316768586636, 0.02312617003917694, -0.026723574846982956, 0.0014437796780839562, 0.012102696113288403, 0.006362908985465765, 0.0009362886776216328, 0.010560951195657253, 0.0100084925070405, -0.018693653866648674, 0.019091937690973282, -0.004085623659193516, -0.020042680203914642, -0.000546436058357358, 0.012674425728619099, 0.0013907821848988533, 0.004946430679410696, -0.008710857480764389, -0.012096271850168705, -0.008800792507827282, -0.010772940702736378, -0.010676582343876362, -0.009635904803872108, 0.0007728798082098365, -0.00499139865860343, 0.014222594909369946, 0.001239819684997201, -0.0100084925070405, 0.010830756276845932, 0.02486063353717327, 0.001980178290978074, -0.018822133541107178, 0.021019119769334793, 0.015186185017228127, 0.002066901419311762, 0.010727973654866219, 0.019271809607744217, -0.018796436488628387, 0.002776746405288577, -0.0034657137002795935, -0.01226329430937767, -0.0018131559481844306, -0.014697966165840626, -0.001652557635679841, 0.003590980311855674, -0.019361743703484535, 0.027237489819526672, 0.004352216608822346, -0.00546676991507411, 0.006452844012528658, -0.019772876054048538, -0.0045738425105810165, 0.008813640102744102, 0.011460302397608757, -0.037258829921483994, 0.013682983815670013, 0.03055224008858204, 0.026286747306585312, -0.0037033993285149336, 0.024012673646211624, 0.0006050544907338917, -0.0002786382392514497, 0.004593114368617535, 0.014286833815276623, -0.010432472452521324, 0.013682983815670013, 0.006732285022735596, 0.011781498789787292, 0.0017874602926895022, 0.025246068835258484, 0.009828622452914715, 0.003038521856069565, 0.010894996114075184, 0.007753691170364618, -0.0039025412406772375, 0.014826444908976555, -0.01023333054035902, -0.015378903597593307, 0.0204409658908844, -0.01668938621878624, -0.0011763833463191986, -0.0034271699842065573, 0.0031621826346963644, 0.004143438767641783, -0.008884304203093052, 0.009828622452914715, -0.01061234250664711, -0.014723662286996841, 0.017061974853277206, -0.012237598188221455, -0.0006106754299253225, 0.009905709885060787, 0.01702343113720417, 0.01884782873094082, 0.023023387417197227, -0.0035620725248008966, 0.024449501186609268, -0.004342580679804087, -0.024796394631266594, -0.010676582343876362, 0.013785767368972301, 0.017819998785853386, 0.006507447455078363, -0.012044880539178848, 0.008139126934111118, 0.002042811829596758, -0.010843604803085327, 0.026723574846982956, -0.03253081440925598, 0.007618788164108992, 0.0019849962554872036, 0.014942076057195663, -0.018693653866648674, 0.0010671764612197876, 0.003533164970576763, 0.00943676196038723, 0.0162397101521492, -0.0013763282913714647, 0.01514764130115509, -0.009623056277632713, 0.02528461255133152, 0.03178563714027405, -0.007136993110179901, -0.012969926930963993, 0.029113279655575752, -0.01733178086578846, -0.0003569299587979913, -0.0018388517200946808, 0.003305115271359682, 0.007548124995082617, -0.01839815266430378, 0.007785810623317957, 0.0006793312495574355, 0.02587561495602131, 0.001795490155927837, 0.013644440099596977, 0.020453812554478645, 0.027263185009360313, -0.023023387417197227, 0.018886372447013855, 0.002704477170482278, -0.009584512561559677, -0.005222660023719072, -0.007689451798796654, 0.006035287864506245, 0.0008013860206119716, 0.04841078445315361, -0.014762205071747303, -0.0017184029566124082, 0.0026466618292033672, 0.016702234745025635, 0.00824833381921053, 0.0012125179637223482, -0.023357432335615158, -0.01451809611171484, 0.006131647154688835, 0.022059796378016472, 0.01778145506978035, -0.02063368260860443, 0.01690779998898506, -0.0029598285909742117, -0.0093082832172513, 0.02934454008936882, 0.016676537692546844, -0.00858237873762846, 0.0032922672107815742, 0.012244022451341152, 0.019027698785066605, 0.009012782946228981, 0.0011948521714657545, -0.0166636910289526, -0.006150919012725353, 0.009584512561559677, -0.0021889563649892807, 0.011267583817243576, 0.008383236825466156, -0.017087670043110847, -0.004718380980193615, -0.006661621853709221, 0.003944296855479479, 0.0217000562697649, 0.002195380162447691, -0.019220417365431786, 0.004438939969986677, 0.016933495178818703, 0.008826488628983498, 0.025040503591299057, 0.004397184122353792, -0.014466704800724983, -0.008132703602313995, 0.018552327528595924, 0.014569487422704697, -0.0268777497112751, 0.004393972456455231, -0.008929271250963211, 0.0023029812145978212, -0.013978485018014908, -0.014762205071747303, 0.004002112429589033, 0.024410957470536232, 0.001864547492004931, 0.02276642993092537, -0.011132681742310524, 0.0067451330833137035, -0.0027510507497936487, 0.005877901799976826, -0.007181960623711348, 0.014710813760757446, -0.009552393108606339, -0.004397184122353792, -0.015867123380303383, -0.02464221976697445, 0.0309376772493124, -0.003305115271359682, 0.0033436587546020746, 0.013111254200339317, 0.008929271250963211, -0.014222594909369946, -0.012828600592911243, 0.010573798790574074, -0.018500937148928642, -0.015969906002283096, -0.0027847762685269117, 0.016792168840765953, -0.006118799094110727, -0.010939963161945343, -0.00606098398566246, 0.022997692227363586, 0.032582204788923264, 0.010284721851348877, 0.0032328458037227392, -0.011389639228582382, -0.011203344911336899, 0.00417877035215497, 0.012995623052120209, 0.021263228729367256, 0.012822176329791546, 0.007792234420776367, -0.011608052998781204, -0.011768651194870472, -0.0037869103252887726, 0.005264415871351957, 0.00726547185331583, -0.0015064131002873182, -0.005081333685666323, -0.0040181721560657024, 0.006950698792934418, 0.0012510615633800626, -0.03633378446102142, -0.010336113162338734, 0.01215408742427826, 0.0060384999960660934, -0.027571534737944603, 0.010522407479584217, -0.008473171852529049, 0.001752128591760993, -0.027006227523088455, -0.007008514367043972, -0.0025213949847966433, -0.006025652401149273, 0.0023848863784223795, 0.023819955065846443, -0.01789708621799946, -0.009006358683109283, 0.001033450709655881, 0.03299333527684212, -0.018076956272125244, 0.006700165569782257, 0.008177670650184155, -0.017293237149715424, -0.002842591842636466, 0.014145507477223873, 0.012398197315633297, -0.009289011359214783, -0.013811462558805943, 0.0021809262689203024, 0.029909847304224968, 0.042038239538669586, -0.0154688386246562, 0.007374678738415241, 0.023447366431355476, 0.006420724093914032, -0.009192653000354767, 0.01324615627527237, -0.0007355406996794045, -0.025323156267404556, -0.0057397871278226376, 0.016059840098023415, -0.004358640871942043, -0.004763348493725061, -0.015417447313666344, -0.010721549391746521, -0.002963040489703417, -0.008100583218038082, -0.028188232332468033, 0.010772940702736378, -0.0021118689328432083, 0.012520251795649529, 0.025849919766187668, -0.000755615474190563, 0.03116893768310547, -0.014261138625442982, 0.012545947916805744, -0.011460302397608757, 0.0022772853262722492, -0.0069635468535125256, -0.0240769125521183, 0.031400199979543686, 0.009635904803872108, -0.010779364965856075, -0.014273986220359802, -0.016162622720003128, 0.013875702396035194, -0.006080255843698978, -0.010952811688184738, 0.04052218794822693, 0.005643427837640047, -0.00010278297850163653, 0.022740734741091728, 0.010130546987056732, 0.008749401196837425, -0.024410957470536232, 0.022612255066633224, -0.00763806002214551, 0.0022323178127408028, -0.01451809611171484, -0.024231087416410446, 0.005245144013315439, -0.0016373007092624903, 0.004837223794311285, -0.0007524035172536969, 0.006668045651167631, -0.02782849222421646, -1.2985886314709205e-05, -0.012321109883487225, 0.0063757565803825855, 0.006170190870761871, -0.0031943023204803467, 0.006931427400559187, -0.03147728741168976, -0.013136949390172958, -0.020042680203914642, -0.02651800960302353, -0.002005874179303646, 0.007156264968216419, -0.004239798057824373, -0.00989928562194109, -0.005196964368224144, 0.0038896934129297733, -0.021828535944223404, -0.005177692510187626, -0.007066329941153526, -0.0034271699842065573, -0.003223210107535124, -0.00351710501126945, 0.01609838381409645, -0.00894854310899973, -0.004313673358410597, -0.017010582610964775, 0.027314577251672745, -0.013014894910156727, 0.007336135022342205, -0.005996744614094496, 0.011909977532923222, -0.032607901841402054, 0.025682896375656128, -0.003713035024702549, 0.005816874094307423, -0.004130591172724962, 0.018655110150575638, -0.018488088622689247, 0.0001094076651497744, -0.010631614364683628, 0.011318976059556007, -0.010541679337620735, -0.0019352107774466276, 0.016316797584295273, 0.004541723057627678, 0.004843648057430983, 0.005486041307449341, 0.00573336286470294, 0.0037836984265595675, 0.023010538890957832, 0.0027028711047023535, 0.006732285022735596, 0.0032408758997917175, -0.006976394914090633, -0.006668045651167631, 0.015841426327824593, -0.021918470039963722, -0.009565240703523159, 0.00037901222822256386, -0.0061477068811655045, 0.021404555067420006, -0.005913233384490013, -0.018012717366218567, -0.004911099094897509, 0.004532087128609419, 0.021327467635273933, -0.021430252119898796, 0.011935673654079437, 0.015661556273698807, 0.0038061821833252907, -0.0032135741785168648, -0.013760071247816086, -0.01083718053996563, 0.005653063766658306, 0.021597273647785187, 0.029190367087721825, 0.040727756917476654, 0.002039599698036909, 0.003616676200181246, -0.019027698785066605, -0.007111297454684973, 0.01733178086578846, -0.0011097349924966693, -0.007111297454684973, -0.013631592504680157, 0.020736465230584145, 0.012841448187828064, -0.016419580206274986, -0.005312595050781965, -0.00702778622508049, 0.014697966165840626, -0.01133824698626995, 0.0045642065815627575, -0.0019063031068071723, -0.009648752398788929, 0.02841949462890625, -0.0012976351426914334, -0.011672291904687881, -0.03425242751836777, 0.006221582181751728, -0.024410957470536232, -0.014762205071747303, 0.01811549998819828, 0.004740864969789982, 0.011235464364290237, 0.011036322452127934, 0.0008335057063959539, 0.013541657477617264, -0.03116893768310547, 0.011023474857211113, -0.018359608948230743, 0.0015280938241630793, 0.00351068121381104, 0.0008736553136259317, -0.0046637775376439095, -0.01264230627566576, 0.016393885016441345, -0.006330789066851139, -0.003600616240873933, -0.03525456041097641, -0.00999564491212368, 0.03021819517016411, -0.015841426327824593, -0.0069442749954760075, -0.014428161084651947, 0.024770697578787804, 0.023819955065846443, 0.026222508400678635, -0.003423958085477352, 0.0035395887680351734, 0.006770828738808632, 0.016483820974826813, -4.037544204038568e-05, -0.024449501186609268, 0.00702136242762208, -0.0028281379491090775, -0.02486063353717327, -0.0058297221548855305, 0.012006336823105812, -0.006131647154688835, -0.011261160485446453, -0.005274051800370216, -0.008222638629376888, -0.011614476330578327, -0.013464570045471191, 0.004570630844682455, 0.004201254341751337, 0.019425982609391212, 0.014376768842339516, 0.01635534130036831, -0.0045738425105810165, -0.013888549990952015, -0.004920735023915768, 0.006099527236074209, 0.010760093107819557, 0.00017384777311235666, 0.003126851050183177, -0.02293345145881176, -0.006279397755861282, 0.00440360838547349, 0.003523529041558504, -0.0031220330856740475, -0.012314685620367527, 0.02236814610660076, -0.012655154801905155, -0.0005737377796322107, 0.009725839830935001, 0.026119723916053772, 0.015314663760364056, 0.020016985014081, -0.013400331139564514, 0.02091633714735508, -0.02136601135134697, -0.000752805033698678, 0.01061234250664711, -0.003613464068621397, -0.00452887499704957, 0.016059840098023415, 0.035151779651641846, -0.013490266166627407, 0.01951591856777668, -0.029267452657222748, 0.012179783545434475, -0.012115543708205223, -0.005174480844289064, 0.010066308081150055, -0.0026065120473504066, -0.019567308947443962, -0.0009419096750207245, 0.01559731736779213, 0.029807064682245255, 0.013374635018408298, 0.006125223357230425, 0.0023061931133270264, -0.008460324257612228, -0.0030867012683302164, -0.021468793973326683, 0.0008897151565179229, 0.04242367669939995, 0.009205500595271587, 0.005097393412142992, 0.005871477536857128, 0.011768651194870472, -0.005701243411749601, 0.008954967372119427, 0.008184094913303852, -0.0050524258986115456, 0.004226949997246265, 0.009475305676460266, -0.01775575987994671, 0.011376790702342987, 0.004188406281173229, 0.013618744909763336, 0.012462436221539974, -0.007959256879985332, 0.007702299393713474, 0.015019162558019161, 0.019670093432068825, 0.007451766170561314, 0.00043923663906753063, -0.019978441298007965, -0.017293237149715424, -0.04501894488930702, -0.032633595168590546, 0.011428182944655418, 0.029858455061912537, -0.009623056277632713, -0.011126257479190826, 0.0006893686368130147, 0.005746210925281048, -0.002876317361369729, 8.280855399789289e-05, 0.015751492232084274, -0.02150733768939972, -0.011730107478797436, -0.0179227814078331, -0.0020139040425419807, 0.017267540097236633, 0.019978441298007965, 0.016008449718356133, -0.010869299992918968, 0.011036322452127934, -0.006815796252340078, 5.843648978043348e-06, -0.020479509606957436, -0.014466704800724983, 0.01418405119329691, -0.012211902998387814, 0.008139126934111118, 0.0014317347668111324, -0.016291102394461632, -0.0040952591225504875, 0.0022981632500886917, -0.010156243108212948, -0.000374796538380906, 0.011396062560379505, 0.017421714961528778, -0.027956970036029816, -0.009083446115255356, -0.017460258677601814, -0.002511759055778384, 0.01264230627566576, -0.005572764668613672, -0.0028120779898017645, -0.0010021340567618608, 0.012147663161158562, -0.013194764964282513, -0.00103746575769037, -0.017344627529382706, 0.00702136242762208, 0.00617982679978013, 0.009822198189795017, 0.005447498057037592, -0.009796502999961376, -0.002558332635089755, -0.015533077530562878, -0.0012671214062720537, -0.014864988625049591, 0.020145464688539505, -0.008987086825072765, -0.002066901419311762, 0.007393950596451759, 0.011768651194870472, 0.013875702396035194, -0.0011812013108283281, -0.0010575405322015285, 0.006751556880772114, 0.002076537348330021, 0.01310482993721962, 0.016586603596806526, 0.04034231975674629, 0.03373851254582405, -0.04925874248147011, -0.024796394631266594, -0.021738599985837936, 0.009006358683109283, 0.026286747306585312, 0.012295413762331009, -0.0011225828202441335, -0.0007222913554869592, 0.011717259883880615, 0.00273659685626626, 0.007136993110179901, -0.010798636823892593, -0.009443186223506927, -0.017383171245455742, 0.005508525297045708, -0.004516026936471462, 0.005325443111360073, 0.004940006881952286, -0.010766517370939255, -0.00525799160823226, 0.0027317788917571306, 0.019297504797577858, 0.005094181280583143, -0.0021696845069527626, 0.015109097585082054, 0.007605940569192171, -0.00829972606152296, -0.013143373653292656, 0.020877793431282043, 0.002921285107731819, -0.004837223794311285, 0.0014823232777416706, -0.006732285022735596, 0.007747266907244921, 0.023652933537960052, 0.008492443710565567, 0.004191618412733078, -0.006520295049995184, -0.00362952402792871, 0.008447475731372833, 0.014209747314453125, 0.013554505072534084, -0.0032119681127369404, 0.01688210479915142, 0.008826488628983498, 0.025387395173311234, -0.005087757483124733, -0.002895589219406247, -0.015237576328217983, 0.015494533814489841, -0.018205435946583748, -0.008556682616472244, -0.016843561083078384, -0.00749673368409276, -0.015044858679175377, -0.015160489827394485, 0.013451722450554371, -0.00904490239918232, -0.020530899986624718, 0.005717303138226271, -0.0022885273210704327, 0.004185194615274668, -0.01024617813527584, 0.0037804865278303623, 0.025233222171664238, -0.013233308680355549, -0.007477461826056242, 0.023614389821887016, 0.0071048736572265625, -0.01761443354189396, 0.014415312558412552, -0.0231004748493433, 0.02682635746896267, 0.007997800596058369, -0.007644484285265207, 0.0005877901567146182, 0.011280432343482971, 0.004817952401936054, 0.024539437144994736, 0.01719045266509056, -0.006099527236074209, 0.004483907483518124, 0.021481642499566078, 0.004798680543899536, -0.0026161479763686657, 0.023190408945083618, 0.009976373054087162, -0.0135802011936903, -0.002913255011662841, 0.0016541635850444436, -0.006330789066851139, -0.0075224293395876884, 0.015224728733301163, -0.007464613765478134, -0.0036616437137126923, 0.010477440431714058, 0.005836145952343941, 0.004079199396073818, -0.0173574760556221, -0.018912067636847496, 0.008338268846273422, 0.004795468412339687, 0.007721571251749992, -0.027648622170090675, -0.00967444758862257, -0.03307042270898819, -0.001927180914208293, -0.0019849962554872036, -0.012892840430140495, -0.029447324573993683, 0.018475240096449852, -0.0026562975253909826, -0.010355385020375252, -0.029087582603096962, 0.007361831143498421, -0.0027895942330360413, -0.00487255584448576, 0.016560908406972885, 0.025682896375656128, 0.0071626887656748295, 0.017768608406186104, 0.005508525297045708, 0.017858542501926422, -0.003507469082251191, -0.009924981743097305, 0.01604699343442917, 0.0016124079702422023, 0.003876845585182309, 0.015237576328217983, 0.0037740624975413084, 0.009738687425851822, -0.00487255584448576, 0.004316885024309158, -0.018359608948230743, -0.0009740293025970459, -0.003921812865883112, -0.03630808740854263, 0.0006905731279402971, -0.02077500894665718, -0.011428182944655418, -0.001439764746464789, 0.008575954474508762, 0.01949022337794304, 0.02782849222421646, -0.014980618841946125, 0.015494533814489841, -0.013978485018014908, 0.01230826135724783, -0.016226863488554955, -0.008274029940366745, 0.013387483544647694, -0.01170441135764122, 0.03055224008858204, -0.013053438626229763, 0.004837223794311285, 0.0033693546429276466, -0.004978550598025322, -0.0029180729761719704, 0.01372152753174305, 0.004756924696266651, -0.011479574255645275, -0.03643656522035599, -0.0022788913920521736, -0.0013514355523511767, 0.03178563714027405, 0.01789708621799946, 0.011794347316026688, 0.016894951462745667, 0.011762226931750774, 0.012218326330184937, 0.016817865893244743, 0.009693719446659088, 0.004336156882345676, 0.02122468501329422, -0.015186185017228127, -0.009732263162732124, -0.0038126062136143446, 0.020016985014081, 0.0038704215548932552, 0.006272973958402872, -0.033610034734010696, 0.01652236469089985, 0.01240462064743042, 0.026145420968532562, -0.009276163764297962, -0.004349004942923784, 0.00279280636459589, -0.013554505072534084, 0.009025630541145802, 0.03127172216773033, 0.009173381142318249, 0.0017440987285226583, -0.005804026499390602, -0.023652933537960052, 0.018629414960741997, -0.02872784249484539, -0.0102204829454422, -0.0026241778396070004, 0.004830799996852875, 0.013644440099596977, 0.0076509080827236176, -0.01142175868153572, 0.011524541303515434, -0.018488088622689247, -0.002092597307637334, -0.036950480192899704, 0.0021439886186271906, -0.018192587420344353, 0.008171247318387032, 0.0015168519457802176, -0.024012673646211624, -0.0011908371234312654, -0.004243009723722935, -0.003167000599205494, 0.010066308081150055, -0.010432472452521324, -0.03754148259758949, 0.008241910487413406, -0.0015481685986742377, -0.001358662499114871, 0.013991333544254303, -0.006138070952147245, 0.00866589043289423, -0.0027510507497936487, -0.03330168500542641, -0.0015883182641118765, 0.021944165229797363, -0.02326749637722969, -0.02875353768467903, -0.003200726117938757, -0.011640172451734543, 0.00788216944783926, -0.005701243411749601, 0.0030031902715563774, 0.009173381142318249, 0.0003669673460535705, -0.009372523054480553, -0.016059840098023415, 0.001021405914798379, 0.008132703602313995, -0.004043867811560631, 0.0046059624291956425, 0.03237663954496384, 0.008068463765084743, 0.009115565568208694, 0.0236657802015543, 0.011620900593698025, -0.005129512865096331, 0.012378925457596779, 0.0017408867133781314, 0.01023333054035902, -0.016278253868222237, 0.003626311896368861, 0.0309376772493124, 0.01359304878860712, 0.020505204796791077, -0.006263338029384613, 0.004596326500177383, -0.0010342537425458431, 0.006102739367634058, 0.0031027612276375294, 0.014852140098810196, 0.010297569446265697, -0.008633770048618317, -0.014004181139171124, 0.01226329430937767, 0.007117721252143383, -0.0031750304624438286, -0.007850049994885921, -0.010580223053693771, -0.007239776197820902, -0.013875702396035194, -0.0065267193131148815, -9.515455894870684e-05, 0.023087626323103905, -0.0022531957365572453, -0.0017938842065632343, 0.006019228138029575, 0.037952616810798645, 0.024410957470536232, -0.023511607199907303, 0.008473171852529049, 1.6386056813644245e-05, 0.017203301191329956, -0.01296350359916687, -0.01300847064703703, -0.014633726328611374, 0.0014935651561245322, -0.0055695525370538235, -0.009905709885060787, 0.021648665890097618, 0.012565218843519688, 0.0006921791355125606, -0.009764382615685463, -0.01324615627527237, 0.01951591856777668, 0.009321131743490696, -0.010323265567421913, 0.013670136220753193, 0.014402464963495731, 0.0162397101521492, -0.007130569312721491, -0.014428161084651947, 0.0033372349571436644, 0.026980532333254814, 0.0021664726082235575, -0.0026209659408777952, -0.004962490871548653, -0.007843625731766224, 0.009077021852135658, 0.03707896173000336, 0.03651365265250206, -0.01311767753213644, -0.0036648556124418974, -0.013862854801118374, -0.025657201185822487, -0.0034689255990087986, 0.01649666763842106, -0.028265319764614105, 0.0009411066421307623, 0.017241844907402992, -0.001808338100090623, -0.003937873058021069, -0.005299747455865145, -0.01153738982975483, 0.021327467635273933, -0.0011354307644069195, 0.018333913758397102, -0.009989220649003983, 0.018770741298794746, -0.025194678455591202, 0.007066329941153526, -0.01806410774588585, 0.0052515678107738495, -0.006642349995672703, -0.015533077530562878, 0.010194786824285984, -0.011029898189008236, -0.012809328734874725, 0.006655198056250811, 0.0324794203042984, -0.009250468574464321, -0.010252602398395538, -0.0018516996642574668, 0.008794368244707584, 0.01215408742427826, -0.010117699392139912, -0.01059949491173029, -0.0061477068811655045, -0.01744741015136242, -0.02293345145881176, -0.016817865893244743, 0.004660565871745348, 0.008511715568602085, -0.004644505679607391, 0.010760093107819557, 0.0034817734267562628, 0.021455947309732437, -0.022637952119112015, -0.005463557783514261, 0.014235442504286766, 0.019580157473683357, 0.0054699815809726715, -0.0011916401563212276, -0.00950742606073618, -0.005759058985859156, 0.009372523054480553, 0.004156286828219891, -0.01638103649020195, 0.005254779942333698, -0.011505269445478916, -0.004294401500374079, 0.016136927530169487, 0.015867123380303383, -0.0069635468535125256, 0.0050331540405750275, 0.015507382340729237, 0.0045642065815627575, -0.004040655680000782, -0.007554548792541027, 0.01859087124466896, 0.010181939229369164, 0.004689473658800125, 0.016766473650932312, 0.0011346277315169573, 0.0008327027317136526, -0.023087626323103905, -0.00643999595195055, 0.013374635018408298, -0.009289011359214783, -0.007933561690151691, 0.002770322607830167, 0.006404664367437363, -0.003314751200377941, -0.027417359873652458, -0.0023029812145978212, -0.00702778622508049, 0.005225872155278921, -0.0028120779898017645, 0.020518051460385323, 0.006590958684682846, -0.0019352107774466276, -0.00523550808429718, -0.007483885623514652, 0.00975795928388834, 0.03165715932846069, -0.029575802385807037, 0.021443098783493042, 0.003700187196955085, -0.013413178734481335, 0.0037451547104865313, 0.007297591771930456, -0.0015883182641118765, 0.005267627537250519, 0.0026065120473504066, -0.012822176329791546, 0.0013602684484794736, -0.010348961688578129, 0.015828579664230347, 0.010972082614898682, -0.020929183810949326, 0.008588803000748158, -0.008575954474508762, 0.01856517605483532, -0.0030449458863586187, 0.017563041299581528, 0.010747245512902737, 0.005906809587031603, 0.006350060924887657, -0.017267540097236633, -0.008312573656439781, 0.005926080979406834, 0.007149841170758009, -0.0003276207426097244, -0.010271874256432056, -0.006867188028991222, -0.00573336286470294, 0.002439489820972085, 0.00942391436547041, -0.00534792710095644, 0.003269783454015851, -0.009635904803872108, -0.007336135022342205, 0.006109163165092468, -0.004811528138816357, -0.00490146316587925, -0.006330789066851139, -0.0187578946352005, 0.01996559463441372, 0.0009403036674484611, -0.04409389942884445, 0.016894951462745667, 0.027006227523088455, 0.005145573057234287, 0.01451809611171484, 0.008698009885847569, -0.009038478136062622, -0.0029662526212632656, 0.010901419445872307, -0.0053704106248915195, -0.006597382482141256, -0.0015224729431793094, -0.009456033818423748, 0.02480924129486084, -0.0012382137356325984, 0.027700012549757957, -0.022021252661943436, -0.004448575899004936, -0.007092025596648455, -0.010214058682322502, -0.018205435946583748, 0.03253081440925598, 0.007175536826252937, 0.008730129338800907, 0.017177606001496315, 0.004638081882148981, -0.03250511735677719, -0.008055616170167923, -0.03502330183982849, -0.005421802401542664, -0.017203301191329956, -0.013233308680355549, -0.019811419770121574, 0.00763806002214551, -6.910750380484387e-05, 0.029267452657222748, 0.009558817371726036, 0.005787966772913933, -0.024423805996775627, 0.004686261527240276, -0.008408932946622372, -0.0011474755592644215, 0.006468903739005327, -0.00019623117987066507, 0.0135802011936903, 0.0221240371465683, 0.0011916401563212276, 0.00824833381921053, -0.01062519010156393, -0.006680893711745739, -0.003375778440386057, 0.007856474258005619, -0.0061669787392020226, -0.0029839184135198593, -0.0009017600677907467, 0.03993118926882744, 0.006064195651561022, -0.02500195987522602, -0.02362723834812641, 0.0006472115637734532, -0.00010142793325940147, 0.0038832693826407194, -0.013657288625836372, 0.02960149757564068], "a33c36a6-48b6-48a9-b522-e5205e1c4b8c": [0.015689564868807793, -0.034350860863924026, 0.007258256897330284, 0.007175165694206953, -0.005288507789373398, -0.016393397003412247, -0.003785535227507353, 0.00023491580213885754, -0.01305019948631525, 0.03998151049017906, -0.009794981218874454, -0.024497227743268013, 0.019062088802456856, 0.020371995866298676, -0.003751321230083704, 0.021838311105966568, 0.014985734596848488, 0.004877939820289612, 0.014379657804965973, -0.03830013424158096, 0.027371203526854515, -0.01588507369160652, -0.0076834880746901035, -0.003247886663302779, -0.011016909964382648, -0.006129194516688585, -0.013157729059457779, 0.03917992487549782, -0.015513607300817966, -0.029404493048787117, 0.006119419354945421, 0.027077941223978996, -0.012405021116137505, 0.04707847163081169, 0.056932106614112854, 0.011574109084904194, -0.010782299563288689, -0.040157467126846313, -0.0015946170315146446, 0.006906341295689344, -0.00015732333122286946, -0.006222061347216368, 0.013421665877103806, -0.017605548724532127, -0.05661929026246071, 0.028035933151841164, 0.010596565902233124, -0.0031476884614676237, 0.008240687660872936, 0.012923118658363819, 0.012561427429318428, -0.01393976341933012, 0.03425310552120209, 0.011202642694115639, 0.03141823410987854, -0.016579128801822662, 0.000613102747593075, -0.026159051805734634, -0.00026179823908023536, -0.020450199022889137, 0.02303091250360012, -0.007268032059073448, 0.013020873069763184, 0.007321797311306, 0.037733159959316254, -0.006671730894595385, -0.0004728864296339452, -0.005694188177585602, -0.0028031046967953444, 0.008876090869307518, 0.025865787640213966, 0.009306209161877632, -0.0175175704061985, 0.008206473663449287, 0.02342193014919758, -0.010410833172500134, -0.0154842808842659, 0.008328666910529137, -0.008074505254626274, -0.03163329139351845, 0.011466579511761665, -0.02013738639652729, 0.02993236668407917, 0.010068693198263645, 0.05575905367732048, 0.004308520816266537, 0.00922800600528717, -0.020645707845687866, -0.037811364978551865, -0.03458547219634056, 0.017185205593705177, -0.011779393069446087, -0.01603170484304428, 0.012082431465387344, -0.058339767158031464, -0.019609512761235237, -0.0011412814492359757, 0.018817702308297157, 0.007150727324187756, -0.030440689995884895, 0.01323593221604824, 0.0037048880476504564, 0.0444195531308651, 0.027371203526854515, -0.006745046935975552, 0.0008895641658455133, 0.02367609180510044, -0.011427477933466434, -0.0049048219807446, 0.05055852606892586, -0.02367609180510044, 0.008201586082577705, 0.009907398372888565, -0.03456592187285423, -0.03962959349155426, -0.03190700337290764, -0.03200475871562958, 0.016109907999634743, -0.012101982720196247, -0.040704891085624695, 0.03151598572731018, -0.013548745773732662, -0.006686394102871418, -0.012717834673821926, -0.0022703437134623528, 0.026823779568076134, -0.021701455116271973, 0.030890358611941338, 0.0325130820274353, 0.009873184375464916, -0.028935272246599197, -0.02547476999461651, -0.003973712213337421, 0.014369882643222809, 0.023167768493294716, -0.020763013511896133, -0.024946898221969604, 0.022737650200724602, 0.011955350637435913, -0.0020051850005984306, -0.016442272812128067, 0.008045178838074207, -0.018152974545955658, -0.020723911002278328, 0.0514969676733017, -0.009663012810051441, -0.007751916069537401, -3.8166181184351444e-05, 0.01007846836000681, -0.012659181840717793, -0.06850621104240417, -0.0014272128464654088, -0.024555880576372147, 0.006745046935975552, 0.006060766521841288, 0.010840952396392822, 0.01593395136296749, 0.029443595558404922, -0.01497595850378275, 0.056932106614112854, 0.02162325195968151, -0.03904306888580322, -0.016442272812128067, 0.023363277316093445, 0.048525236546993256, 0.031828802078962326, 0.019580187276005745, 0.017742406576871872, -0.024223515763878822, 0.02516195736825466, -0.01105601154267788, -0.022639896720647812, 0.002046730602160096, 0.014135272242128849, -0.04000106081366539, -0.004983025602996349, -0.007610172498971224, 0.06490885466337204, 0.018270278349518776, 0.016608456149697304, -0.0032943198457360268, -0.015308323316276073, -0.015357200987637043, -0.0076883756555616856, 0.019003435969352722, 0.041643332690000534, -0.040509384125471115, 0.023891150951385498, -0.020958522334694862, 0.007111625280231237, -0.0003464168112259358, -0.010303303599357605, -0.0010025925002992153, 0.021290887147188187, 0.010098019614815712, 0.001945310621522367, 0.004626222420483828, 0.0013905549421906471, 0.007116513326764107, -0.0020271798130124807, 0.018113872036337852, -0.02471228688955307, 0.0007924208184704185, 0.023519685491919518, -0.024125762283802032, 0.015181243419647217, -0.012053105048835278, -0.044341351836919785, -0.0017094783252105117, -0.014076619409024715, 0.00958480965346098, -0.017820609733462334, -0.03597358241677284, -0.03327556326985359, -0.037557203322649, -0.017693528905510902, 0.020528404042124748, 0.04500608146190643, -0.01741981692612171, -0.049385473132133484, -0.025983093306422234, 0.018348481506109238, -0.017331836745142937, -0.03478097915649414, -0.011192867532372475, -0.014907530508935452, -0.019110966473817825, -0.007487979251891375, -0.013529195450246334, -0.010968032293021679, 0.03038203716278076, 0.003981044050306082, 0.012600529007613659, -0.0155722601339221, -0.006295376922935247, 0.04641374200582504, 0.060373056679964066, 0.004364729393273592, 0.007874108850955963, -0.013069749809801579, -0.01258097868412733, 0.0030939236748963594, 0.036325499415397644, -0.0051614269614219666, -0.007624835707247257, 0.01542562898248434, 0.015357200987637043, 0.027820874005556107, -0.018397359177470207, -0.0033871864434331656, -0.03368613123893738, -0.020567504689097404, -0.0011675528949126601, -0.013480317778885365, -0.02293315902352333, 0.0249077957123518, 0.006104756146669388, 0.00023506853904109448, -0.002091942122206092, 0.021095378324389458, 0.017996566370129585, 0.015591811388731003, -0.004247424192726612, 0.04641374200582504, 0.03466367349028587, -0.033705681562423706, 0.013265258632600307, -0.02060660719871521, -0.023558786138892174, -0.0026540292892605066, 0.03943408653140068, -0.01491730660200119, -0.03751809895038605, 0.015230120159685612, 0.003829524852335453, -0.009232893586158752, 0.023988906294107437, 0.008182034827768803, 0.010938705876469612, 0.003399405861273408, -0.049580980092287064, 0.0012989102397114038, 0.008773448877036572, -0.014526288956403732, 0.012874241918325424, -0.03466367349028587, -0.03890621289610863, -9.721970855025575e-05, -0.022522591054439545, -0.015894848853349686, 0.020723911002278328, 0.031281378120183945, 0.015435404144227505, 0.02125178463757038, 0.006666843313723803, 0.004843725822865963, 0.00455779442563653, -0.016246763989329338, -0.03331466764211655, 0.01939445361495018, 0.012708059512078762, 0.012014003470540047, 0.012717834673821926, 0.021975167095661163, 0.00797675084322691, -0.020645707845687866, 0.009814531542360783, 0.0326499380171299, -0.01221928745508194, 0.04438045248389244, 0.02414531260728836, -0.03253263235092163, -0.04989379644393921, -0.015406077727675438, -0.0005538391997106373, 0.035582564771175385, 0.0013282365398481488, -0.01672576181590557, 0.01486842893064022, -0.004936592187732458, 0.025064202025532722, -0.018368033692240715, -0.05368666350841522, -0.028466053307056427, 0.06318838149309158, -0.03319736197590828, 0.036775168031454086, 0.014301454648375511, -0.018954558297991753, -0.013304360210895538, -0.03308005630970001, -0.028563806787133217, 0.009707001969218254, 0.011681638658046722, -0.0434420108795166, -0.02516195736825466, -0.05630647763609886, -0.06877992302179337, 0.027488509193062782, 0.02377384528517723, -0.010068693198263645, -0.022327082231640816, 0.055915459990501404, 0.0038490756414830685, 0.0033260900527238846, 0.007629723288118839, 0.00808916799724102, -0.002249570796266198, -0.04054848477244377, 0.0020320676267147064, 0.0004411162808537483, 0.033901192247867584, -0.00731690926477313, 0.006930780131369829, -0.007522193249315023, -0.03867160156369209, -0.05396037548780441, 0.009540819562971592, -0.004831506405025721, 0.01905231364071369, 0.010528137907385826, 0.015269221737980843, -0.013587848283350468, -0.028309645131230354, -0.018661295995116234, 0.011349274776875973, 0.01020554918795824, 0.009311096742749214, -0.002137153409421444, -0.008553501218557358, -0.0069894324988126755, -0.002961955266073346, -0.0010991249000653625, 0.0016019486356526613, -0.0064566717483103275, -0.00278599769808352, -0.017801057547330856, -0.008357992395758629, -0.002161592012271285, 0.018446236848831177, -0.001320905052125454, -0.01334346178919077, -0.004990356974303722, 0.05044122040271759, -0.04520158842206001, -0.007038309704512358, 0.017009248957037926, -0.052904628217220306, -0.02303091250360012, -0.033627480268478394, 0.01719498075544834, 0.019844122231006622, -0.05341295152902603, -0.018905682489275932, -0.05501611903309822, -0.015718892216682434, 0.0045431312173604965, -0.04793870821595192, 0.012434347532689571, -0.04254267364740372, -0.012170410715043545, -0.05212259292602539, 0.014897755347192287, -0.0022715656086802483, 0.02656961977481842, -0.023715194314718246, 0.011486130766570568, 0.02797728031873703, -0.0037635406479239464, 0.020528404042124748, 0.017507795244455338, 0.036970674991607666, 0.022072920575737953, 0.019844122231006622, 0.02926763705909252, -0.01124174427241087, -0.02275720052421093, 0.014887980185449123, -0.028798416256904602, -0.0020259579177945852, 0.008680582046508789, 0.016911493614315987, 0.013626949861645699, 0.041252315044403076, 0.026784678921103477, 0.013744254596531391, 0.04262087494134903, -0.03257173299789429, 0.0167453121393919, -0.008010964840650558, 0.007184941321611404, -0.007111625280231237, 0.03094901144504547, 0.013069749809801579, -0.01497595850378275, -0.002339993603527546, -0.006627741735428572, 0.005205416586250067, 0.0006592305726371706, -0.012131309136748314, -0.03403804823756218, 0.009707001969218254, 0.00011058455129386857, -0.013314135372638702, -0.03067529946565628, -0.03386209160089493, -0.02236618474125862, -0.005787054542452097, 0.007566182874143124, -0.026726026087999344, 0.009022722020745277, 0.007693263702094555, -0.03759630396962166, -0.007888772524893284, 0.028876621276140213, 0.03831968456506729, -0.009912285953760147, -0.0186026431620121, 0.01408639457076788, -0.0437939278781414, 0.019824571907520294, -0.00977054238319397, 0.04786050692200661, 0.02889617159962654, -0.013734479434788227, 0.003218560479581356, -0.005273844581097364, -0.019834347069263458, 0.02080211602151394, 0.00033939070999622345, 0.017468692734837532, 0.004511361010372639, -0.018680846318602562, 0.022268429398536682, 0.015777545049786568, 0.0007074967725202441, 0.007351123262196779, 0.010469486005604267, 0.04156512767076492, 0.03376433625817299, 0.0030059446580708027, -0.054781511425971985, 0.03188745304942131, -0.03059709630906582, -0.0417606383562088, 0.0196877159178257, -0.0030988112557679415, -0.0351719968020916, -0.017595773562788963, -0.017253633588552475, 0.028954824432730675, -0.009208454750478268, -0.005376486573368311, -0.002486624987795949, -0.010127346031367779, 0.0027786660939455032, -0.012796037830412388, -0.008641480468213558, 0.0033603040501475334, -0.02181876078248024, 0.008968956768512726, -0.0025464994832873344, -0.010058918036520481, 0.010723646730184555, -0.01151545625180006, 0.029991019517183304, 0.007038309704512358, 0.046491947025060654, -0.013460767455399036, -0.0380459725856781, -0.006055878940969706, 0.020665260031819344, -0.000465554854599759, 0.022248879075050354, 0.021486395969986916, 0.026804229244589806, 0.020098283886909485, -0.019091414287686348, 0.0367165170609951, -0.019726818427443504, -0.025768034160137177, -0.02330462448298931, -0.004034808836877346, 0.0019062089268118143, -0.007947424426674843, -0.022268429398536682, -0.005958124529570341, -0.03540660813450813, -0.005425363779067993, -0.002385204890742898, 0.02068481035530567, 0.011583884246647358, -0.006705944892019033, -0.004386724438518286, 0.02115403115749359, -0.024555880576372147, -0.002326552290469408, 0.01366605143994093, 0.015601586550474167, 0.0155722601339221, -0.044145841151475906, 0.026726026087999344, -0.008944518864154816, 0.007962088100612164, 0.0175175704061985, 0.026804229244589806, -0.03364703059196472, 0.01432100497186184, -0.013294585049152374, 0.004235205240547657, -0.010000265203416348, 0.03135957941412926, -0.03206340968608856, -0.01957041025161743, -0.01412549614906311, -0.037909116595983505, 0.00017488855519331992, -0.02181876078248024, -0.028583357110619545, -0.003944386262446642, -0.019257597625255585, 0.02201426774263382, -0.0022031376138329506, -0.009242668747901917, 0.0010991249000653625, -0.006412682123482227, -0.006246499717235565, 0.004997688811272383, -0.020587055012583733, 0.011662088334560394, 0.011652312241494656, 0.017996566370129585, 0.03536750748753548, -0.0026173715014010668, 0.0020406211260706186, 0.06393131613731384, -0.029815061017870903, 0.008118494413793087, -0.025064202025532722, -0.0028593132738023996, 0.053295645862817764, 0.015836196020245552, -0.01800634153187275, 0.02565072849392891, 0.004020145628601313, 0.0036755616310983896, -0.004320740234106779, -0.008705020882189274, -0.003954161424189806, 0.02117358148097992, 0.004623778630048037, 0.013372788205742836, 0.008617041632533073, 0.015963276848196983, -0.0038979528471827507, 0.02117358148097992, 0.014428534545004368, 0.010664993897080421, 0.02211202308535576, 0.039864204823970795, 0.04598362371325493, -0.0008327444666065276, 0.014770674519240856, 0.007952312007546425, -0.00680858688428998, 0.022894056513905525, -0.022913608700037003, 0.010098019614815712, 0.007302246522158384, 0.040509384125471115, 0.005679524969309568, 0.014927081763744354, -0.01361717376857996, -0.015640689060091972, 0.02600264362990856, -0.0021848087199032307, -0.0022104692179709673, 0.029619554057717323, 0.008001189678907394, 0.03730304166674614, 0.013402114622294903, -0.049580980092287064, 0.04746948927640915, -0.008416645228862762, 0.0015420741401612759, 0.021584149450063705, -0.009853633120656013, 0.011877147480845451, -0.021134480834007263, 0.007737252861261368, 0.009677675552666187, 0.01830938085913658, 0.0017009248258545995, 0.04606182500720024, 0.0026662484742701054, -0.009760767221450806, 0.03198520839214325, 0.04109590873122215, -0.014741349034011364, 0.001384445233270526, 0.02117358148097992, 0.0052200797945261, -0.000509544275701046, 0.014927081763744354, -0.011945575475692749, 0.024360371753573418, -0.008612154051661491, 0.0005963012226857245, 0.025592075660824776, 0.03863250091671944, 0.0078105684369802475, 0.001521301339380443, 0.02340237982571125, 0.011202642694115639, -0.005791942123323679, 0.016940820962190628, -0.0031501322519034147, -0.0001165414578281343, -0.02330462448298931, 0.015816645696759224, 0.018641745671629906, -0.019677940756082535, -0.01007846836000681, -0.00918890442699194, 0.027097491547465324, -0.011828270740807056, 0.0014846434351056814, 0.005034346599131823, -0.0026027082931250334, -0.004714201204478741, -0.00262470287270844, -0.0017681309254840016, 0.010479261167347431, 0.009824307635426521, -0.010137121193110943, 0.016119685024023056, -0.02330462448298931, -0.022796303033828735, -0.01118309237062931, 0.003172127064317465, -0.0208803191781044, -0.03702932968735695, -0.016236988827586174, -0.01436010655015707, -0.05513342469930649, 0.01679418981075287, -0.018299605697393417, -0.013059974648058414, -0.021134480834007263, 0.013636725023388863, -0.018534215167164803, -0.018064994364976883, -0.03634504973888397, 0.019775694236159325, -0.006857464089989662, -0.014897755347192287, -0.007629723288118839, -0.022444387897849083, -0.00455779442563653, -0.03992285579442978, -0.025494322180747986, 0.00036077445838600397, -0.01910119131207466, -0.0050294590182602406, -0.0076052844524383545, 0.017038574442267418, -0.010928930714726448, -0.04793870821595192, -0.007214267272502184, 0.013030648231506348, 0.01570911705493927, -0.010146896354854107, 0.019355351105332375, -0.031828802078962326, 0.004020145628601313, 0.0032625498715788126, 0.007859446108341217, 0.03214161470532417, 0.030733952298760414, 0.01921849511563778, 0.01258097868412733, 0.014760899357497692, -0.022151123732328415, -0.0023729857057332993, -0.019462881609797478, 0.016168560832738876, 0.003137913066893816, -0.0014076619409024715, 0.01706790179014206, -0.005298282951116562, 0.027723120525479317, -0.026061296463012695, 0.019560635089874268, -0.0001548794680275023, 0.005132101010531187, -0.003252774477005005, -0.011916249059140682, -0.024184413254261017, -0.006070542149245739, -0.028231441974639893, 0.0029986132867634296, -0.00018710784206632525, -0.009887847118079662, -0.01058679074048996, 0.016686659306287766, -0.013538970611989498, 0.02963910438120365, 0.02107582800090313, -0.04922906681895256, -0.028035933151841164, 0.029697757214307785, -0.03456592187285423, 0.03667741268873215, -0.008494848385453224, -0.0351719968020916, 0.03767450898885727, 0.019932102411985397, 0.013157729059457779, -0.008978732861578465, 0.025142407044768333, 0.013128402642905712, 0.02125178463757038, 0.007004095707088709, 0.0017351388232782483, -0.008279789239168167, 0.0005568940541706979, 0.001825561630539596, 0.014057068154215813, 0.016931045800447464, 0.008939631283283234, 0.014115720987319946, 0.0006488441722467542, 0.0076052844524383545, -0.013607398606836796, 0.0016777082346379757, -0.025494322180747986, 0.014809777028858662, -0.02275720052421093, -0.021701455116271973, -0.0031867902725934982, -0.015513607300817966, 0.003626684658229351, 0.032689038664102554, 0.02854425646364689, -0.014692471362650394, -0.03143778443336487, 0.014438310638070107, -0.0166768841445446, -0.027996832504868507, 0.031222723424434662, -0.005904359742999077, -0.025064202025532722, 0.006114531308412552, 0.0321611650288105, -0.017175430431962013, 0.005860370583832264, -0.016217438504099846, 0.013499869033694267, -0.006246499717235565, 0.01929669827222824, -0.0020980515982955694, -0.004306077025830746, 0.024868695065379143, 0.0006228782003745437, 0.05024570971727371, -0.03429220989346504, -0.027957729995250702, -0.0028544256929308176, -0.008998283185064793, 0.015826420858502388, 0.012131309136748314, 0.007962088100612164, -0.03933633118867874, 0.01912074163556099, -0.02342193014919758, -0.01902298629283905, -0.01156433392316103, 0.027527611702680588, 0.014741349034011364, -0.0051516517996788025, 0.00743910251185298, 0.0007905879174359143, 0.027820874005556107, -0.008304228074848652, 0.005777279380708933, 0.029033027589321136, 0.03040158748626709, 0.006559313740581274, -0.0062562753446400166, -0.008846764452755451, 0.015797095373272896, 0.02144729346036911, 0.00452113663777709, -0.001291578751988709, 0.002089498098939657, 0.021857861429452896, 0.024692736566066742, -0.01761532574892044, -0.0032625498715788126, 0.02005918323993683, -0.0014272128464654088, -0.03738124296069145, 0.024360371753573418, 0.007077411282807589, -0.03149643540382385, 0.001897655427455902, 0.014653369784355164, -0.007302246522158384, 0.003748877439647913, 0.014545840211212635, 0.007927874103188515, -0.030636198818683624, 0.02629590779542923, -0.04324650391936302, 0.0017192537197843194, 0.01268850825726986, -0.007140951696783304, 0.026706475764513016, -0.026354558765888214, -0.007957200519740582, 0.003866182640194893, -0.00848507322371006, -0.01939445361495018, 0.015552708879113197, -0.017625100910663605, 0.01124174427241087, -0.004176552407443523, 0.023558786138892174, -0.01436010655015707, 0.012678733095526695, -0.026804229244589806, 0.02545521967113018, 0.029443595558404922, 0.021232234314084053, -0.0277817714959383, -0.0016691547352820635, 0.028368297964334488, -0.004917041398584843, -0.007659049704670906, 0.015924176201224327, -0.001616611727513373, -0.015875298529863358, 0.006730383727699518, -0.003751321230083704, -0.03534795343875885, 0.013245707377791405, 0.013450992293655872, -0.004188771825283766, 0.008235800080001354, 0.03169194608926773, -0.010313078761100769, -0.006422457750886679, 0.020743463188409805, 0.020743463188409805, -0.005244518164545298, -0.021310437470674515, 0.020841216668486595, -0.017625100910663605, 0.04410674050450325, -0.01039128191769123, 0.01598282903432846, -0.010313078761100769, -0.022072920575737953, -0.037615854293107986, 0.01934557594358921, -0.0464528426527977, 0.013363013043999672, -0.026647822931408882, 0.003592470660805702, 0.002961955266073346, 0.0061731841415166855, 0.0056844125501811504, -0.004015258047729731, 0.012825364246964455, 0.03951228782534599, -0.02043064869940281, 0.017185205593705177, 0.013714928179979324, -0.0016337187262251973, -0.024653634056448936, -0.006002114154398441, -0.022796303033828735, 0.02434082143008709, -0.007571070455014706, -0.0024267504923045635, 0.018338706344366074, -0.017410041764378548, 0.017820609733462334, -0.0026320344768464565, 0.01510303933173418, -0.006564201321452856, 2.1135549104656093e-05, -0.00995627511292696, -0.0005526173044927418, 0.026823779568076134, -0.020078733563423157, -0.02357833832502365, -0.004755746573209763, -0.022542141377925873, -0.012424571439623833, -0.019805021584033966, -0.03577807545661926, 0.020841216668486595, -0.005674637388437986, -0.019560635089874268, 0.03022562898695469, 0.017077676951885223, 0.01835825853049755, 0.014115720987319946, -0.014291678555309772, -0.007077411282807589, 0.0015164136420935392, 0.032864995300769806, -0.009917173534631729, -0.015767768025398254, -0.02973685786128044, 0.0035362618509680033, -0.03200475871562958, -0.006730383727699518, 0.007747028488665819, -0.006549538113176823, -0.012405021116137505, -0.020469751209020615, -0.009980713948607445, -0.00995627511292696, 0.012825364246964455, 0.0014931969344615936, 0.010381506755948067, -0.017175430431962013, -0.02246393822133541, 0.009257332421839237, 0.0050783357582986355, -0.0028666448779404163, 0.012796037830412388, 0.026178602129220963, 0.00025171731249429286, -0.0015494056278839707, -0.027859976515173912, -0.025592075660824776, -0.014233026653528214, 0.007145839277654886, -0.011368825100362301, -0.008191809989511967, -0.032415326684713364, -0.049737390130758286, 0.0400792621076107, -0.022268429398536682, 0.00047869060654193163, -0.01510303933173418, -0.011691414751112461, -0.007698151282966137, 0.012844915501773357, -7.22847253200598e-05, 0.024927346035838127, 0.007346235681325197, -0.0037928668316453695, -0.002761559095233679, -0.010840952396392822, 0.002182364696636796, -0.04625733569264412, -0.014145047403872013, -0.004484478384256363, -0.013783356174826622, 0.057205818593502045, -0.007888772524893284, 0.023167768493294716, 0.008045178838074207, -0.023617438971996307, 0.008441084064543247, -0.01763487607240677, -0.02453633025288582, -0.015718892216682434, -0.0025342802982777357, -0.01976591907441616, 0.0018829922191798687, 0.00270535028539598, 0.018485337495803833, -0.01679418981075287, 0.0031574638560414314, 0.005039234180003405, -0.01124174427241087, 0.012189961038529873, -0.0002622564497869462, -0.011456804350018501, -0.007258256897330284, 0.0208803191781044, -0.018514664843678474, -0.002556274877861142, -0.023148218169808388, -0.0048681641928851604, -0.02862245962023735, -0.022913608700037003, -0.010479261167347431, -0.00855838879942894, 0.023285074159502983, -9.172102727461606e-05, -0.015689564868807793, -0.01795746572315693, -0.005132101010531187, -0.011046236380934715, -0.009829195216298103, -0.0036828932352364063, 0.002590488875284791, -0.02033289521932602, 0.008734346367418766, -0.023891150951385498, 0.019648615270853043, 0.00650066090747714, -0.00325033045373857, 0.0019172062166035175, 0.013128402642905712, 6.724426930304617e-05, 0.023754294961690903, -0.03177014738321304, -0.0134705426171422, -0.0051614269614219666, 0.006652180105447769, -0.009755879640579224, -0.016940820962190628, 0.02721479721367359, -0.0072778076864778996, 0.005933686159551144, 0.03536750748753548, 0.0006683950196020305, 0.007517305668443441, 0.01124174427241087, -0.01862219348549843, -0.005816380959004164, -0.0045480187982320786, -0.019873449578881264, -0.0039297230541706085, -0.019932102411985397, 0.013187055476009846, -0.018983885645866394, -0.01659868098795414, 0.012111757881939411, 0.03003012202680111, 0.030342934653162956, 0.010508587583899498, -0.018954558297991753, 0.007585733663290739, 0.00015930896915961057, 0.009873184375464916, -0.03626684471964836, -0.030284281820058823, 0.004562682006508112, 0.00692589208483696, 0.0046677677892148495, -0.005381374154239893, 0.00832377839833498, -0.00346294604241848, -0.009526156820356846, 0.01726340875029564, 0.049932897090911865, -0.00019657779193948954, -0.0030108324717730284, 0.02015693672001362, 0.016217438504099846, -0.004890158772468567, 0.04352021589875221, -0.008964069187641144, 0.012395245023071766, 0.030049672350287437, 0.018710173666477203, 0.005019683390855789, 0.03765495494008064, -0.02463408373296261, 0.02965865470468998, 0.006872127298265696, -0.03691202402114868, 0.04543619975447655, 0.01761532574892044, 0.011114664375782013, 0.020020080730319023, 0.010899604298174381, 0.018866579979658127, -0.01679418981075287, -0.048916250467300415, -0.016911493614315987, 0.01301109790802002, 0.01207265630364418, -0.012356143444776535, -0.019805021584033966, 0.041917044669389725, 0.006495773326605558, 0.018612418323755264, 0.012913343496620655, -0.006021664943546057, 0.017126552760601044, -0.004780185408890247, 0.0032772128470242023, -0.009130251593887806, 0.04395033419132233, -0.017038574442267418, 0.010870277881622314, -0.008196698501706123, 0.0053618233650922775, -0.014457860961556435, -0.01916961930692196, 0.0012207068502902985, -0.004782629199326038, -0.0022080251947045326, 0.008587715215981007, 0.017302511259913445, -0.03898441419005394, -0.032689038664102554, 0.006999208126217127, -0.0063784681260585785, -0.03010832518339157, 0.010811625979840755, 0.00587503332644701, -0.006539762951433659, -0.002524504903703928, 0.0044600400142371655, -0.01351942028850317, -0.012668957002460957, -0.013040423393249512, -0.016266316175460815, 0.04410674050450325, -0.01820185035467148, -0.014536064118146896, -0.006417569704353809, -7.694332452956587e-05, 0.01300132181495428, -0.018534215167164803, -0.005865258164703846, -0.006520211696624756, -0.0004148448060732335, 0.003856407245621085, -0.0196192879229784, 0.0018096765270456672, -0.013314135372638702, 0.01709722727537155, 0.03974689915776253, -5.2466566557995975e-05, 0.0049488116055727005, -0.012004228308796883, 0.029600001871585846, -0.024184413254261017, 0.009061823599040508, 0.01637384481728077, -0.0001517482742201537, -0.011388376355171204, 0.007004095707088709, 0.009711889550089836, 0.015513607300817966, -0.0021298218052834272, 0.017625100910663605, -0.012414796277880669, -0.00941373873502016, 0.010968032293021679, -0.007136064115911722, -0.003780647646635771, -0.021095378324389458, 0.011437253095209599, -0.010919155552983284, -0.012864465825259686, 0.0011437253560870886, 0.0025122854858636856, 0.023734744638204575, 0.00995627511292696, -0.025142407044768333, 0.016432497650384903, 0.004596896003931761, -0.0064566717483103275, 0.0007331572705879807, -0.019971203058958054, -0.011974901892244816, -0.008010964840650558, -0.009198679588735104, -0.021701455116271973, -0.013059974648058414, -0.011495905928313732, 1.8558042938821018e-05, 0.013333686627447605, 0.013597623445093632, -0.0004411162808537483, -0.011466579511761665, 0.005112549755722284, -0.0155722601339221, 0.012571203522384167, -0.0008712352137081325, 0.019580187276005745, -0.00047685770550742745, 0.007927874103188515, -0.001979524502530694, 0.018495114520192146, 0.015689564868807793, 0.021936064586043358, -0.03583672642707825, 0.02416486293077469, 0.004640885628759861, 0.010938705876469612, 0.012629855424165726, 0.005938573740422726, -0.03356882557272911, 0.001974636921659112, 0.00855838879942894, -0.009267107583582401, 0.01863197050988674, 0.04047027975320816, 0.004723976831883192, 0.0014186593471094966, -0.00085657206363976, 0.013842009007930756, 0.016931045800447464, -0.02258124388754368, 0.015132365748286247, -0.0015677346382290125, 0.01894478313624859, 0.014457860961556435, 0.012004228308796883, 0.004020145628601313, 0.021584149450063705, -0.025533422827720642, 0.011173316277563572, -0.012277940288186073, 0.026804229244589806, -0.022346632555127144, 0.0007820344180800021, 0.004650660790503025, 0.002084610518068075, 0.022972261533141136, 0.019951652735471725, -0.015454955399036407, -0.025611625984311104, 0.006916116923093796, -0.004496697802096605, 0.01156433392316103, -0.008656143210828304, -0.01800634153187275, -0.0076883756555616856, -0.013187055476009846, 0.00012845525634475052, -0.015171467326581478, 0.03933633118867874, 0.007512418087571859, -0.015073712915182114, -0.0033260900527238846, -0.006471334956586361, 0.03442906588315964, 0.0299519170075655, 0.03961004316806793, -0.017840160056948662, 0.009135139174759388, 0.018162749707698822, -0.004071466624736786, 0.005630647763609886, 0.0008730681147426367, -0.010019815526902676, 0.019091414287686348, 0.014145047403872013, 0.004230317194014788, -0.025513872504234314, 0.006114531308412552, -0.014184148982167244, 0.025592075660824776, -0.03638415038585663, 0.0029546236619353294, 0.00282265548594296, -0.03317781165242195, 0.024575430899858475, -0.012971995398402214, 0.006212285719811916, -0.017282960936427116, 0.01659868098795414, -0.004306077025830746, 0.0017070345347747207, -0.006485997699201107, -0.03847609460353851, 0.0003461113083176315, -0.005542668979614973, 0.024282168596982956, -0.0016043924260884523, -0.03749854862689972, 0.02721479721367359, -0.016090357676148415, 0.007180053275078535, -0.02471228688955307, -0.011965126730501652, -0.005831044167280197, 0.011525232344865799, 0.001652047736570239, 0.008939631283283234, -0.0010508587583899498, 0.028954824432730675, -0.000901783409062773, -0.010850727558135986, -0.023852050304412842, -0.010850727558135986, -0.00017794338054955006, 0.009741215966641903, -0.01281558908522129, -0.000804640119895339, 0.02342193014919758, 0.006710832938551903, 0.02125178463757038, -0.020196039229631424, 0.008714796043932438, -0.013724704273045063, -0.046296436339616776, 0.024770939722657204, -1.866305319708772e-05, -1.1426943274273071e-05, -0.007243593689054251, 0.002046730602160096, -0.013509644195437431, -0.022678997367620468, 0.011701189912855625, 0.005342272575944662, -0.013978864997625351, -0.0006769485189579427, 0.011652312241494656, 0.011535007506608963, -0.013998416252434254, 7.812707190169021e-05, -0.043129198253154755, 0.0007771467207930982, 0.008675694465637207, -0.007878996431827545, 0.018759049475193024, -0.025689831003546715, -0.02686288207769394, -0.014242801815271378, 0.00603632815182209, 0.002837318694218993, 0.014858653768897057, -0.028231441974639893, 0.040235672146081924, 0.03476142883300781, -0.0020748351234942675, 0.0038441878277808428, 0.01408639457076788, 0.008426420390605927, -0.01468269620090723, -0.021329987794160843, -0.006339366547763348, -0.002585601294413209, 0.00354359345510602, 0.01567978970706463, 0.018788376823067665, 0.0035949144512414932, -0.0014039961388334632, -0.0038124178536236286, -0.004604227375239134, 0.02342193014919758, -0.003995707258582115, -0.004809511825442314, 0.0035338180605322123, -0.008934742771089077, -0.0017400265205651522, -0.0054400269873440266, 0.028798416256904602, 0.009731440804898739, 0.008416645228862762, -0.03951228782534599, -0.020293792709708214, -0.059082698076963425, -0.002756671281531453, -0.0022911163978278637, -0.005835931748151779, 0.008695244789123535, 0.021955616772174835, 0.008348217234015465, -0.018064994364976883, 0.011789169162511826, -0.012229062616825104, 0.01100713387131691, 0.007898547686636448, 0.0006488441722467542, 0.060294851660728455, -0.009785205125808716, -0.0033554164692759514, -0.023988906294107437, 0.03700977936387062, 0.011769617907702923, -0.012717834673821926, 0.009838970378041267, 0.030069222673773766, 0.0037537652533501387, 0.013167504221200943, -0.03847609460353851, -0.025142407044768333, -0.016012154519557953, 0.002161592012271285, 0.009174240753054619, 0.020176487043499947, -0.018719948828220367, -0.026041746139526367, 0.006002114154398441, 0.03139868006110191, 0.008988508023321629, 0.008675694465637207, -0.01793791353702545, 0.007659049704670906, -0.046570148319005966, 0.015171467326581478, 0.022229328751564026, 0.01385178416967392, 0.00019993809110019356, 0.020215589553117752, -0.025044651702046394, 0.042112551629543304, 0.010127346031367779, 0.01598282903432846, -0.0016630450263619423, -0.03405759856104851, -0.011339498683810234, 0.00778613006696105, -0.0026540292892605066, -0.008260237984359264, -0.03699022904038429, 0.0012274273904040456, -0.01771307922899723, 0.023343726992607117, 0.010479261167347431, 0.00960924755781889, -0.016911493614315987, -0.02283540554344654, -0.03873025253415108, -0.02041109837591648, -0.0035607004538178444, 0.019130516797304153, -0.009296434000134468, 0.004450264386832714, -0.006329590920358896, -0.02918943390250206, -0.003685337258502841, 0.03861295059323311, 0.02275720052421093, 0.018416909500956535, 0.03308005630970001, -0.03532840311527252, 0.006529987324029207, -0.028192341327667236, -0.007908322848379612, -0.019032763317227364, 0.000728269515093416, 0.01721453294157982, -0.008196698501706123, -0.011231969110667706, -0.0015249671414494514, -0.03161374107003212, 0.0034165128599852324, -0.03161374107003212, 0.005728402175009251, 0.05024570971727371, 0.03319736197590828, -0.008519287221133709, 0.02050885185599327, -0.0030963674653321505, 0.031379129737615585, -0.005430251359939575, 0.007615060079842806, -0.007986526004970074, -0.010098019614815712, 0.014721797779202461, -0.00016297474212478846, -0.013265258632600307, -0.00904227327555418, 0.003365191863849759, -0.01207265630364418, 0.018319156020879745, 0.02443857491016388, -0.02787952683866024, -0.01916961930692196, 0.008944518864154816, -0.03040158748626709, 0.03403804823756218, -0.004565125796943903, -0.0002430110762361437, 0.011349274776875973, -0.027742670848965645, -0.003199009457603097, -0.019110966473817825, -0.001557959127239883, -0.006046103313565254, 0.02471228688955307, 0.01905231364071369, -0.02125178463757038, -0.007580846082419157, 0.019873449578881264, -0.004506473429501057, -0.010645443573594093, 0.011896698735654354, -0.0034727214369922876, 0.02797728031873703, 0.017654426395893097, 0.04484967514872551, -0.010528137907385826, -0.0014052180340513587, -0.02117358148097992, 0.013578072190284729, 0.008592602796852589, -0.009677675552666187, 0.019746368750929832, 0.005420476198196411, 0.025787584483623505, -0.038925763219594955, -0.021877411752939224, 0.028309645131230354, 0.008157595992088318, 0.007575958501547575, 0.01147635467350483, 0.0008785667596384883, -0.009531044401228428, -0.010684545151889324, -0.014467636123299599, 0.00930132158100605, -0.03374478593468666, -0.017879262566566467, -0.011877147480845451, -0.02332417666912079, 0.013636725023388863, -0.006070542149245739, 0.003631572239100933, 0.0006971103721298277, -0.013949538581073284, -0.007996302098035812, 0.002324108500033617, -0.0032943198457360268, 0.017791282385587692, 0.0026295906864106655, -0.002087054308503866, 0.005430251359939575, -0.017107002437114716, 0.0005104607553221285, -0.0012879129499197006, 0.006427345331758261, -0.0037904230412095785, 0.017361164093017578, 0.001242090598680079, -0.009271995164453983, 0.009511493146419525, -0.005601321347057819, -0.005743065383285284, -0.014780450612306595, -0.004328071605414152, 0.020176487043499947, -0.005185865797102451, -0.01766420155763626, 0.0037879792507737875, -0.005146763753145933, -0.005215191747993231, -0.01944333128631115, 0.0017058125231415033, -0.0029839500784873962, -0.01361717376857996, 0.01515191700309515, -0.010508587583899498, 0.040040161460638046, 0.0027517834678292274, 0.015357200987637043, -0.0019514202140271664, 0.006979656871408224, -0.005547556560486555, -0.03366658091545105, 0.009345310740172863, -0.01343144103884697, -0.0017436923226341605, 0.0029766184743493795, 0.024379922077059746, 0.011965126730501652, 0.02394980378448963, -0.00564531097188592, 0.030636198818683624, -0.007610172498971224, -0.00021857250249013305, -0.017038574442267418, 0.01739048957824707, 0.00766882486641407, 0.007116513326764107, -0.009501717984676361, -0.0010080912616103888, -0.008357992395758629, -0.01221928745508194, -0.005371598992496729, 0.013079525902867317, -0.027762221172451973, 0.0014333224389702082, 0.004606671631336212, -0.00025752148940227926, 0.015161692164838314, 0.02723434753715992, -0.002649141475558281, 0.009878071956336498, 0.00849973689764738, 0.0004670822818297893, 0.004638441372662783, -0.01328480988740921, -0.008059842512011528, -0.013275033794343472, 0.003998151049017906, -0.01768375374376774, 0.00354359345510602, 0.01094848196953535, 0.04711757227778435, 0.010733421891927719, 0.019980978220701218, 0.012434347532689571, -0.011613210663199425, -0.0011919914977625012, 0.002355878707021475, 0.00880766287446022, -0.007312021683901548, -0.0007808124646544456, 0.021290887147188187, -0.0018243396189063787, 0.0005037401570007205, 0.01711677759885788, 0.009785205125808716, -0.01389088574796915, -0.0057675037533044815, -0.01016644760966301, 0.014985734596848488, -0.022972261533141136, -0.006891678087413311, -0.011359049938619137, -0.005747952964156866, 0.02696063555777073, 0.003511823248118162, 0.010938705876469612, -0.021525496616959572, -0.005327609367668629, 0.00743910251185298, 0.0034165128599852324, 0.002315555000677705, 0.004398943390697241, -0.016012154519557953, -0.009946499951183796, 0.01408639457076788, -0.027351653203368187, -0.00348494085483253, 0.010977808386087418, 0.002996169263496995, 0.011016909964382648, 0.022972261533141136, 0.007864333689212799, -0.028290094807744026, -0.00018023449229076505, 0.013656276278197765, 0.014663144946098328, 0.009252444840967655, 0.002553831087425351, -0.016667108982801437, 0.011036460287868977, 0.013802907429635525, 0.006280713714659214, -0.003944386262446642, -0.007639498449862003, 0.00360224605537951, -0.02256169356405735, 0.017673976719379425, -0.019189169630408287, -0.008577940054237843, 0.015503832139074802, -0.017322061583399773, 0.013998416252434254, 0.010420608334243298, 0.0007087186677381396, 0.009012946859002113, 0.00025217555230483413, -0.012835139408707619, 0.01595350168645382, -0.013949538581073284, 0.0021896963007748127, -0.015376751311123371, 0.0017522458219900727, -0.01040105801075697, 0.0034922724589705467, -0.0035362618509680033, 0.002815323881804943, -0.0021713674068450928, -0.014428534545004368, -0.0098096439614892, 0.01408639457076788, -0.01538652740418911, -0.014721797779202461, -0.00042675863369368017, 0.007077411282807589, 0.010596565902233124, -0.0048681641928851604, 0.022542141377925873, 0.015894848853349686, 0.014477412216365337, -0.009003170765936375, 0.009707001969218254, 0.0008956737583503127, -0.008201586082577705, -0.02080211602151394, 0.023070015013217926, 0.005092998966574669, -0.004095904994755983, -0.01916961930692196, -0.006349141709506512, -0.01109511312097311, -0.008651255629956722, -0.007356011308729649, -0.024946898221969604, 0.022131573408842087, -0.04586631804704666, -0.022815853357315063, 0.006148745771497488, -0.019775694236159325, -0.0033822988625615835, -0.0036120214499533176, 0.030166978016495705, -0.015034611336886883, 0.012062881141901016, -0.013382563367486, 0.0031183622777462006, -0.01175006665289402, -0.03489828482270241, 0.013128402642905712, -0.003795310854911804, -0.026980187743902206, -0.00028409843798726797, -0.0027200134936720133, -0.006877014879137278, -0.0007331572705879807, -0.020919419825077057, -0.012336593121290207, -0.004811955615878105, -0.0019416448194533587, 0.018152974545955658, 0.013040423393249512, 0.007717702072113752, 0.004181440453976393, -0.0018108984222635627, 0.015640689060091972, -0.025807134807109833, -0.0051614269614219666, -0.01595350168645382, 0.03814372792840004, 0.0015029723290354013, 0.004022589419037104, -0.0067352713085711, -0.005092998966574669, 0.010801849886775017, 0.023382829502224922, 0.01724385842680931, 0.005796830169856548, -0.001979524502530694, 0.008773448877036572, 0.011730516329407692, 0.005244518164545298, -0.029287189245224, -0.025240160524845123, -0.012180185876786709, -0.025201058015227318, -0.012131309136748314, -0.01114399079233408, -0.017028799280524254, -0.032219815999269485, 0.018837254494428635, 0.003159907879307866, -0.03470277786254883, 0.006964994128793478, 0.005703963339328766, -0.004909709561616182, 0.023930253461003304, -0.006427345331758261, 0.015943726524710655, 0.017869485542178154, 0.003159907879307866, 0.014193924143910408, -0.0019538640044629574, 0.008348217234015465, 0.011926025152206421, 0.0036755616310983896, -0.0010985139524564147, 0.0046677677892148495, 0.008949406445026398, 0.004980581812560558, -0.009892735630273819, 0.002898415084928274, 0.02789907716214657, 0.013480317778885365, 0.0014027742436155677, -0.013363013043999672, 0.01763487607240677, -0.002553831087425351, 0.010361955501139164, -0.008705020882189274, 0.00013639779353979975, 0.00039468298200517893, -0.0006072985706850886, 0.006715720519423485, -0.008709908463060856, 0.008245575241744518, -0.0024670741986483335, -1.2629779121198226e-05, 0.019404228776693344, 0.01221928745508194, 0.004066579043865204, 0.03395984321832657, 0.006099868565797806, 0.009174240753054619, -0.004623778630048037, -0.011427477933466434, 0.023519685491919518, -0.013754029758274555, 0.003201453248038888, 0.014496962539851665, -0.021134480834007263, -0.005523118190467358, 0.011466579511761665, 0.015865523368120193, -0.006764597725123167, 0.0019660834223031998, -0.02228798158466816, 0.007957200519740582, 0.023891150951385498, 0.0008529062615707517, -0.00478751678019762, 0.03609088808298111, -0.02946314588189125, 0.0034800530411303043, 0.004081242252141237, -0.011769617907702923, 0.028192341327667236, 0.03499604016542435, 0.014223250560462475, -0.00416188919916749, -0.001366116339340806, -0.0031916778534650803, -0.01510303933173418, -0.007140951696783304, 0.0009329426102340221, 0.007888772524893284, 0.007566182874143124, -8.64514586282894e-05, 0.007766579277813435, 0.0002847094147000462, 0.00808916799724102, -0.0309685617685318, -0.010107794776558876, 0.006642404943704605, 0.0034091812558472157, 0.021114928647875786, 0.03169194608926773, -0.004274306818842888, -0.007854558527469635, 0.020919419825077057, -0.009565258398652077, -0.024966448545455933, -0.006422457750886679, 0.008529062382876873, 0.014047292992472649, -0.013392339460551739, 0.020587055012583733, 0.010968032293021679, 0.009003170765936375, -0.009912285953760147, 0.004992800764739513, -0.009506605565547943, -0.009061823599040508, -0.010664993897080421, 0.023930253461003304, 0.0013111295411363244, -0.006886790506541729, 0.007018758915364742, 0.0014039961388334632, -0.021212683990597725, -0.005943461321294308, 0.01711677759885788, -0.006427345331758261, 0.007321797311306, 0.004401387181133032, 0.00013700875570066273, -0.012356143444776535, -0.007282695267349482, 0.013538970611989498, 0.000252481026109308, -0.021486395969986916, -0.005303170997649431, 0.018886130303144455, 0.003998151049017906, -0.015406077727675438, -0.0063735805451869965, -0.006803699303418398, 0.008010964840650558, -0.036775168031454086, -0.019433554261922836, -0.012903567403554916, -0.003985931631177664, 0.026608720421791077, 0.0035264864563941956, 0.010313078761100769, 0.00552800577133894, 0.0024487453047186136, 0.007952312007546425, 0.010342405177652836, -0.0067352713085711, 0.013304360210895538, 0.001111344201490283, 0.00127569364849478, -0.0060949805192649364, -0.00016358571883756667, 0.003140356857329607, -0.016246763989329338, -0.0029399606864899397, 0.008455746807157993, 0.007898547686636448, -0.016139235347509384, -0.004765522200614214, -0.004274306818842888, -0.0002095607778755948, -0.015015061013400555, 0.020919419825077057, -0.018964335322380066, 0.011632761918008327, -0.011544782668352127, -0.008294452913105488, -0.03339286893606186, -0.01823117770254612, -0.02330462448298931, 0.001382001442834735, 0.004381836391985416, 0.010459709912538528, -0.007424439303576946, -0.03354927524924278, 0.026823779568076134, 0.006916116923093796, -0.009731440804898739, -0.012893792241811752, -0.008406870067119598, 0.015396302565932274, 0.005117437802255154, 0.02768401801586151, -0.0007661493145860732, 0.004491810221225023, -0.011789169162511826, 0.0014919750392436981, -0.018592868000268936, -0.009794981218874454, -0.0023998680990189314, -0.001656935433857143, -0.021584149450063705, 0.007644386496394873, -0.008465522900223732, -0.008382431231439114, 0.02293315902352333, 0.007453765254467726, -0.00743421446532011, 0.013089301064610481, 0.0019123185193166137, -0.015230120159685612, 0.006740158889442682, -0.0002619509759824723, 0.009320872835814953, -0.01432100497186184, 0.0059630125761032104, 0.02377384528517723, -0.019580187276005745, -0.027723120525479317, 0.01379313226789236, -0.004709313623607159, 0.017879262566566467, 0.00860726647078991, 0.02527926303446293, -0.013548745773732662, 0.01874927431344986, -0.007351123262196779, 0.011554558761417866, -0.006349141709506512, -0.02220977656543255, -0.012170410715043545, 0.012092206627130508, 0.017107002437114716, 0.0017302511259913445, 0.005381374154239893, -0.033236462622880936, -0.01902298629283905, -0.021232234314084053, -0.0018854361260309815, -0.024184413254261017, 0.0018316712230443954, 0.025904890149831772, -0.011398151516914368, 0.02041109837591648, 0.002649141475558281, -0.012766711413860321, -0.003692668629810214, 0.012561427429318428, -0.0038735142443329096, 0.0020186263136565685, 0.041643332690000534, 0.00884187687188387, -0.0018646633252501488, 0.0003080788010265678, -0.03319736197590828, -0.009135139174759388, 0.022991811856627464, -0.009912285953760147, -0.01585574820637703, 0.007561295293271542, 0.00042187090730294585, -0.00910092517733574, 0.010919155552983284, 0.02434082143008709, -0.04281638562679291, -0.004970806185156107, -0.0027151256799697876, -0.011163541115820408, 0.004469815641641617, -0.017458917573094368, -0.02322642132639885, -0.0036951126530766487, 5.193197284825146e-05, -0.001206043642014265, 0.00533738499507308, -0.025768034160137177, -0.0008535172673873603, 0.0037000002339482307, -0.017253633588552475, 0.006613078527152538, -0.0011388376588001847, -0.007414663676172495, -0.0250837542116642, 0.027097491547465324, -0.017977016046643257, 0.01679418981075287, 0.024946898221969604, -0.007228930480778217, 0.02758626453578472, 0.02136909030377865, 0.005127212963998318, 0.010694320313632488, 0.0007899769698269665, 0.01669643446803093, 0.017605548724532127, -0.01156433392316103, 0.0022031376138329506, -0.0062513877637684345, -0.0385347455739975, -0.010332630015909672, -0.01301109790802002, -0.0074000004678964615, 0.021017175167798996, 0.0068672397173941135, 0.021838311105966568, -0.007101850118488073, -0.001102179754525423, 0.02154504880309105, -0.0008284677169285715, 0.00935019925236702, -0.007966975681483746, -0.005127212963998318, 0.02985416352748871, 0.01711677759885788, 0.0018108984222635627, -0.003717107232660055, 0.017693528905510902, 0.002380317309871316, 0.003252774477005005, 1.0023634786193725e-05, -0.007766579277813435, 0.005376486573368311, -0.0032283358741551638, 0.007898547686636448, 0.010958257131278515, -0.005264068953692913, -0.0011363937519490719, 0.010234875604510307, -0.02136909030377865, -0.011163541115820408, 0.010479261167347431, 0.030166978016495705, 0.02844650112092495, 0.01491730660200119, 0.00524940574541688, -0.010537914000451565, 0.008318890817463398, 0.00266869249753654, -0.00524940574541688, -0.00278599769808352, -0.007654161658138037, -0.01664755679666996, 0.004423382226377726, 0.031457334756851196, -0.016686659306287766, -0.0035533688496798277, 0.0069894324988126755, -0.021388640627264977, -0.014907530508935452, -0.013402114622294903, -0.022053370252251625, -0.02350013330578804, -0.000318923412123695, -0.004411162808537483, -0.02228798158466816, -0.0020393989980220795, -0.01124174427241087, 0.0026393660809844732, -0.03225892037153244, 0.031007664278149605, -0.028837518766522408, -0.0010313078528270125, -0.0019660834223031998, -0.02555297501385212, -0.003856407245621085, -0.0166768841445446, -0.018397359177470207, 0.001683817827142775, 0.003895508823916316, -0.00778613006696105, 0.00045547395711764693, 0.029775960370898247, 0.006041215732693672, -0.005171202588826418, 0.01958996243774891, 0.010577015578746796, 0.010752973146736622, -0.020528404042124748, 0.009472391568124294, 0.018172524869441986, 0.009198679588735104, -0.011886922642588615, -0.0053667109459638596, 0.022718099877238274, -0.006134082563221455, 0.005615984555333853, -0.007937649264931679, -0.017654426395893097, 0.00797675084322691, -0.0028031046967953444, 0.028016382828354836, 0.0051614269614219666, 0.010352180339396, 0.0026613608933985233, -0.007497754879295826, -0.01124174427241087, -0.020958522334694862, -0.010303303599357605, 0.021388640627264977, -0.010244650766253471, 0.012561427429318428, -0.0017216976266354322, 0.020352445542812347, -0.008651255629956722, -0.010459709912538528, -0.014233026653528214, 0.002698018681257963, -0.033431969583034515, 0.005444914568215609, 0.0032674374524503946, 0.0044673713855445385, -0.013568297028541565, -0.011319948360323906, 0.0032087848521769047, -0.014379657804965973, -0.022718099877238274, -0.003858851036056876, 0.01672576181590557, 0.0049585867673158646, 0.0020552841015160084, 0.0010123680112883449, 0.0006518989684991539, 0.00141132774297148, 0.015494056977331638, -0.006114531308412552, -0.014252576977014542, -0.0250837542116642, -0.005088111385703087, 0.0318092480301857, -0.013822457753121853, -0.002094385912641883, 0.005381374154239893, 0.018113872036337852, -0.017126552760601044, -0.0047533027827739716, 0.004990356974303722, -0.000709940621163696, 0.014966183342039585, -0.006207398138940334, 0.018485337495803833, 0.006906341295689344, -0.013920212164521217, 0.00853395089507103, -0.012444122694432735, -0.02396935410797596, -0.0010313078528270125, -0.0024536328855901957, -0.010352180339396, -0.005136988591402769, 0.0033822988625615835, 0.0023192206863313913, 0.004308520816266537, 0.002454854780808091, -0.035093795508146286, 0.016784412786364555, -0.012004228308796883, 0.01706790179014206, -0.004687318578362465, -0.0038026422262191772, -0.010880053974688053, -0.022522591054439545, 0.011349274776875973, -0.030088772997260094, -0.009775429964065552, -0.011642537079751492, -0.012600529007613659, -0.04856433719396591, -0.01706790179014206, 0.024086659774184227, 0.024731839075684547, -0.013265258632600307, 0.01810409687459469, 0.02162325195968151, -0.005743065383285284, -0.018592868000268936, 0.0021689236164093018, 0.012678733095526695, -0.012414796277880669, 0.009364861994981766, 0.01580687053501606, -0.01716565527021885, 0.007092074491083622, 0.0012585866497829556, 0.03605178743600845, -0.01468269620090723, -0.003770872252061963, 0.019228270277380943, 0.004157001618295908, 0.004064135253429413, -1.7469763406552374e-05, -0.001456539030186832, -0.00264669768512249, -0.014624043367803097, -0.015689564868807793, -0.011505681090056896, -0.02320687100291252, -0.012277940288186073, 0.006134082563221455, 0.017527345567941666, 0.029033027589321136, 0.004130118992179632, -0.0303038340061903, -0.016041480004787445, -0.020293792709708214, -0.007209379691630602, -0.015816645696759224, 0.017204757779836655, 0.022033819928765297, -0.0016031705308705568, 0.01724385842680931, -0.0017094783252105117, 0.02938494272530079, 0.005518230143934488, -0.0014394320314750075, -0.013578072190284729, 0.011613210663199425, -0.009418627247214317, -0.005928798578679562, -0.02228798158466816, -0.011271070688962936, -0.031085867434740067, 0.02600264362990856, -0.0046702115796506405, -0.010469486005604267, 0.009560370817780495, 0.001079574110917747, -0.0026075958739966154, 0.013441216200590134, 0.0033505286555737257, -0.0030865920707583427, -0.02983461320400238, -0.01654980331659317, -0.010010040365159512, 0.012893792241811752, -0.013372788205742836, 0.025963542982935905, -0.015454955399036407, 0.0011192867532372475, 0.004657992627471685, 0.005791942123323679, -0.006495773326605558, 0.018289830535650253, -0.024184413254261017, 0.003634016029536724, -0.009741215966641903, 0.003054821863770485, -0.025220610201358795, 0.0007966975681483746, 0.009628798812627792, 0.018612418323755264, -0.024125762283802032, 0.011251520365476608, 0.019980978220701218, -0.015777545049786568, 0.001190158654935658, 0.015288772992789745, -0.014379657804965973, -0.003374967258423567, 0.014135272242128849, -0.014057068154215813, 0.009433289989829063, 0.01183804590255022, -0.029287189245224, 0.01343144103884697, -0.011926025152206421, 0.0437939278781414, 0.017977016046643257, -0.019472656771540642, -8.171648369170725e-05, -0.00841175764799118, -0.004518692381680012, 0.0008913970086723566, -0.0012524769408628345, -0.005053897388279438, -0.0004059858329128474, 0.0277817714959383, -0.006686394102871418, -0.02310911752283573, -0.0022960042115300894, -0.021486395969986916, -0.02758626453578472, 0.015083489008247852, -0.016706209629774094, 0.0028031046967953444, 0.026139499619603157, 0.00859749037772417, 0.005743065383285284, -0.005635535344481468, -0.005503566935658455, -0.034546371549367905, -0.009663012810051441, 0.043402910232543945, 0.0024915128014981747, 0.005816380959004164, 0.01343144103884697, 0.011847821064293385, 0.00249273469671607, 0.01183804590255022, 0.01567978970706463, 0.009599472396075726, -0.00875878520309925, -0.006046103313565254, -0.0006494551198557019, -0.04739128425717354, 0.004816843196749687, 0.026882432401180267, 7.1358731474902015e-06, 0.007522193249315023, 0.003582695033401251, -0.01063566841185093, -0.0018829922191798687, 0.0018683291273191571, 0.018162749707698822, 0.019482431933283806, -0.010234875604510307, -0.011769617907702923, -0.00276400288566947, -0.011212418787181377, 0.005000132601708174, 0.013089301064610481, -0.012932893820106983, 0.0006039383006282151, 0.005958124529570341, -0.0124538978561759, -0.002729788888245821, 0.0014553171349689364, -0.005342272575944662, 0.005298282951116562, 0.0029986132867634296, -0.010430383495986462, -0.01156433392316103, -0.00015098457515705377, -0.01803566887974739, -0.012923118658363819, -0.012444122694432735, -0.0021970279049128294, 0.02741030603647232, -0.012062881141901016, 0.00010875165753532201, 0.010870277881622314, 0.009032497182488441, -0.005332496948540211, -0.0037610966246575117, 0.027195246890187263, 0.02535746619105339, 0.009086262434720993, -0.018436461687088013, 0.0009341645636595786, 0.012796037830412388, -0.0020186263136565685, 0.0030377148650586605, -0.026647822931408882, 0.020293792709708214, -0.002263012109324336, -0.006818362511694431, -0.01976591907441616, -0.0011840489460155368, -0.01390066184103489, 0.019462881609797478, -0.019140291959047318, 0.007248481269925833, 0.01924782246351242, -0.016412947326898575, 0.01519101858139038, 0.0025391678791493177, 0.02265944704413414, 0.02453633025288582, 0.014467636123299599, 0.005606209393590689, -0.022718099877238274, -0.01637384481728077, 0.025885339826345444, 0.003973712213337421, -0.003546037245541811, -0.008123381994664669, 0.005826156120747328, -0.007536856457591057, -0.0018671071156859398, 0.017224308103322983, -0.00010562047100393102, -0.016803964972496033, 0.009267107583582401, 0.00036199638270772994, -0.007585733663290739, 0.01669643446803093, 0.006529987324029207, 0.007575958501547575, 0.006138970144093037, 0.027938179671764374, 0.004408719018101692, -0.008118494413793087, 0.020098283886909485, 0.01850488968193531, 0.029345842078328133, 0.029815061017870903, 0.017791282385587692, 0.00965812522917986, 0.011926025152206421, -0.014614268206059933, -0.0124538978561759, -0.005953236948698759, -0.009223118424415588, 0.002143263118341565, 0.02463408373296261, -0.011065786704421043, 0.007908322848379612, 0.03620819374918938, -0.01971704326570034, 0.0015359644312411547, 0.008587715215981007, -0.01468269620090723, -0.06483065336942673, -0.008489960804581642, -0.018123647198081017, 0.004562682006508112, -0.014350331388413906, -0.01926737278699875, 0.00032136726076714694, -0.011886922642588615, 0.008035403676331043, -0.015894848853349686, 0.03311915695667267, -0.007703038863837719, -0.010938705876469612, -0.020293792709708214, -0.03974689915776253, 0.028211891651153564, 0.0008333554142154753, 0.010361955501139164, -0.00997093878686428, 0.00774214044213295, -0.006515324115753174, -0.01682351529598236, -0.01370515301823616, -0.0048706079833209515, 0.008621929213404655, -0.0061731841415166855, -0.005733289755880833, 0.02443857491016388, -0.007150727324187756, -0.007424439303576946, -0.04148692637681961, -0.0006262384704314172, 0.003306539263576269, 0.0016214994248002768, 0.010361955501139164, -0.009433289989829063, -0.015894848853349686, 0.001320905052125454, -0.022913608700037003, 0.012189961038529873, 0.0005403980030678213, 0.004777741618454456, -0.008397094905376434, 0.0015005285385996103, 0.004638441372662783, -0.009570145979523659, -0.013480317778885365, 0.003401849651709199, 0.02787952683866024, -0.025142407044768333, 0.008230912499129772, -0.019384678453207016, -0.019648615270853043, 0.003453170647844672, 0.021017175167798996, -0.016070807352662086, 0.020215589553117752, -0.01944333128631115, 0.00557199539616704, -0.0067792609333992004, 0.0021273780148476362, 0.018671071156859398, 0.0002763086522463709, -0.002193362219259143, 0.019648615270853043, -0.01842668652534485, -0.014956408180296421, 0.006833025719970465, 0.0052347430028021336, 0.015308323316276073, -0.04301189258694649, 0.002815323881804943, -0.0002275842271046713, 0.007502642460167408, -0.016119685024023056, -0.01882747747004032, 0.0025122854858636856, 0.00179012562148273, 0.01225838903337717, 0.006901453714817762, 0.015748217701911926, 0.022874506190419197, -0.0012634743470698595, -0.014643594622612, -0.009614135138690472, -0.015259446576237679, -0.012551652267575264, 0.01379313226789236, -0.009276882745325565, -0.02441902458667755, 0.01020554918795824, 0.034917835146188736, -0.013118627481162548, 0.019140291959047318, 0.0047484152019023895, -0.001755911624059081, -0.013568297028541565, 0.0023705419152975082, -0.0037586528342217207, 0.0014430978335440159, -0.010479261167347431, -0.00783011969178915, 0.0065837521106004715, 0.0261003989726305, 0.010606341995298862, -0.018856804817914963, -0.030069222673773766, -0.0017815721221268177, -0.0014467636356130242, 0.019971203058958054, 0.03192655369639397, -0.0014528733445331454, -0.009667900390923023, 0.0020161825232207775, -0.015073712915182114, 0.024868695065379143, -0.003255218267440796, -0.00857305247336626, -0.014340556226670742, 0.01803566887974739, -0.006354029756039381, -0.012512550689280033, -0.011896698735654354, -0.010098019614815712, -0.00040476390859112144, -0.01709722727537155, -0.03372523561120033, -0.0015225232345983386, 0.006402906496077776, -0.006417569704353809, 0.015963276848196983, 0.013783356174826622, 0.020704360678792, 0.02527926303446293, 0.0036828932352364063, -0.009824307635426521, -0.004574901424348354, 0.012346368283033371, 0.002729788888245821, 0.0027517834678292274, 0.015718892216682434, 0.005415588151663542, 0.02236618474125862, -0.009863409213721752, -0.01882747747004032, -0.009223118424415588, -0.007101850118488073, -0.01090938039124012, 0.012903567403554916, 0.010782299563288689, -0.00024408026365563273, -0.004577345214784145, 0.008861427195370197, 0.021114928647875786, -0.005601321347057819, -0.004855944775044918, -0.005777279380708933, -0.0016557134222239256, -0.01268850825726986, 0.004963474813848734, -0.016461824998259544, -0.019423779100179672, 0.01118309237062931, 0.01141770277172327, -0.011857597157359123, -0.019238047301769257, 0.004809511825442314, 0.010068693198263645, -0.0360126830637455, -0.015464730560779572, -0.009790093638002872, -0.014702246524393559, 0.019501982256770134, 0.00016053089348133653, 0.031222723424434662, -0.007561295293271542, -0.01699947379529476, 0.0012384247966110706, 0.002959511475637555, -0.020743463188409805, 0.01625654101371765, 0.012189961038529873, -0.01823117770254612, 0.015269221737980843, -0.002078500809147954, -0.006427345331758261, -0.014037517830729485, 0.022151123732328415, 0.01417437382042408, 0.008216248825192451, -0.010254425927996635, 0.044810570776462555, 0.006427345331758261, -0.008553501218557358, -0.006886790506541729, -0.016315191984176636, -0.0020528403110802174, 6.415125972125679e-05, -0.02228798158466816, -0.0037879792507737875, 0.007175165694206953, -0.001023365301080048, 0.0032869884744286537, -0.021056275814771652, 0.029502248391509056, 0.012512550689280033, -0.0012952444376423955, -0.00122620549518615, 0.009149802848696709, -0.003079260466620326, -0.008255350403487682, -0.004789960570633411, 0.012356143444776535, -0.00808916799724102, -0.00914002675563097, 0.00720449211075902, 0.0026760241016745567, 0.019756143912672997, -0.015865523368120193, -0.00801585242152214, 0.005679524969309568, 0.006143857724964619, 0.010039366781711578, -0.007057860493659973, 0.010489036329090595, -0.0023876489140093327, 0.011349274776875973, 0.003541149664670229, -0.014731572940945625, 0.03040158748626709, 0.0038026422262191772, 0.0010142008541151881, 0.027957729995250702, 0.017625100910663605, 0.0250837542116642, 0.007048085331916809, 0.0028446500655263662, 0.0007343791658058763, 0.006686394102871418, -0.001107067451812327, -0.019550859928131104, -0.005811493378132582, -0.009702114388346672, 0.011163541115820408, -0.0027762220706790686, 0.005210304167121649, -0.03620819374918938, 0.0007734809187240899, 0.0054400269873440266, 0.0005257348529994488, -0.028563806787133217, -0.007673712447285652, -0.0240671094506979, 0.005904359742999077, -0.008871203288435936, -0.014584941789507866, 0.0017326950328424573, 0.018338706344366074, 0.009452841244637966, 0.024790490046143532, -0.022718099877238274, 0.003963937051594257, -0.0014272128464654088, 0.005791942123323679, -0.013929988257586956, -0.0004108735593035817, 0.013998416252434254, -0.016882168129086494, -0.006442008540034294, 0.008724571205675602, 0.013314135372638702, 0.007458653301000595, 0.010850727558135986, -0.03562166914343834, 0.0023742076009511948, -0.019932102411985397, 0.006485997699201107, -0.02015693672001362, -0.00029616497340612113, 0.023988906294107437, -0.012561427429318428, 0.015738442540168762, -0.0041325632482767105, 0.018905682489275932, 0.011388376355171204, 0.021212683990597725, -0.02434082143008709, 0.03438996151089668, 0.01203355472534895, -0.008705020882189274, -0.02451677806675434, -0.006080317310988903, 0.0028959710616618395, -0.0016667108284309506, -0.06174161657691002, 0.0037562090437859297, 0.022698549553751945, -0.025142407044768333, -0.03460502251982689, 0.011759842745959759, 0.01862219348549843, -0.007145839277654886, -0.01301109790802002, 0.005840819329023361, -0.014145047403872013, 0.027938179671764374, -0.00938930083066225, 0.012796037830412388, 0.008382431231439114, -0.004648217000067234, -0.0006299042725004256, -0.02099762298166752, 0.050206609070301056, 0.00529339537024498, 0.017400264739990234, 0.007165390066802502, -0.008934742771089077, -0.022522591054439545, 0.014379657804965973, -0.018768826499581337, 0.001934313215315342, -0.011974901892244816, -0.028133688494563103, 0.010371731594204903, 0.01221928745508194, 0.02107582800090313, -0.0020076290238648653, -0.0035607004538178444, -0.01040105801075697, -0.006881902925670147, -0.028387848287820816, 0.013832233846187592, -0.02451677806675434, -0.004987913183867931, 2.7187914383830503e-05, 0.008617041632533073, -0.005738177336752415, -0.0027102380990982056, -0.022248879075050354, -0.0035264864563941956, 0.00680858688428998, -0.01277648750692606, -0.006529987324029207, -0.01590462401509285, 0.001043527154251933, -0.001553071429952979, -0.010664993897080421, -0.0010856837034225464, 0.032024309039115906, -0.0014418759383261204, -0.0028642010875046253, 0.0014039961388334632, 0.040431179106235504, 0.003027939470484853, -0.014047292992472649, 0.009076487272977829, 0.005884808953851461, 0.004983025602996349, 0.005581770557910204, -0.013138177804648876, 0.006754822097718716, -0.017996566370129585, 0.009296434000134468, -0.008460634388029575, 0.005303170997649431, 0.00017901256796903908, -0.0039297230541706085, -0.027996832504868507, 0.008651255629956722, -0.004093461204320192, -0.009091150015592575, -0.014496962539851665, 0.003912616055458784, 0.00467509962618351, 0.0023070015013217926, 0.00541070057079196, -0.0036217968445271254, -0.007893660105764866, 0.009902510792016983, 0.012317041866481304, 0.018338706344366074, 0.016764862462878227, 0.0012066547060385346, -0.0030621534679085016, -0.005288507789373398, -0.02211202308535576, -0.0011211195960640907, 0.02078256383538246, -0.023363277316093445, -0.01593395136296749, -0.007766579277813435, -0.009008059278130531, 0.006881902925670147, 0.0208803191781044, 0.006134082563221455, 0.0016630450263619423, 0.002241017296910286, -0.005884808953851461, -0.0011431144084781408, 0.036149539053440094, -0.00020665870397351682, -0.012062881141901016, -0.0042645311914384365, -0.004420938435941935, -0.004066579043865204, 0.013304360210895538, 0.0014369882410392165, 0.019472656771540642, 0.004196103196591139, 0.013323911465704441, 0.00545469019562006, -0.006407794542610645, -0.013333686627447605, 0.020743463188409805, 0.0048266188241541386, 0.016510700806975365, 0.003724438836798072, 4.856689429288963e-06, -0.020000530406832695, -0.0005859148222953081, 0.005625760182738304, -0.012395245023071766, 0.010098019614815712, 0.00023109727771952748, -0.0393754318356514, -0.004975693766027689, 0.012326817028224468, 0.005664861761033535, -0.004200991243124008, -0.017849935218691826, -0.007209379691630602, 0.0023754294961690903, -0.014037517830729485, -0.0033480848651379347, -0.011945575475692749, 0.01129062194377184, -0.0027200134936720133, -0.012874241918325424, -0.009335535578429699, -0.008915192447602749, -0.0013441216433420777, -0.03304095193743706, 0.002414531307294965, 0.027840424329042435, 0.005391149781644344, 0.0009586031083017588, 0.012737384997308254, 0.010831176303327084, 0.0036120214499533176, -0.0019123185193166137, 0.02117358148097992, 0.0017192537197843194, 0.008670806884765625, -0.011085337959229946, -0.015943726524710655, -0.01389088574796915, -0.005332496948540211, 0.0028055484872311354, 0.016833290457725525, 0.004577345214784145, -0.014017966575920582, -0.014418759383261204, -0.0072778076864778996, -0.004220542032271624, -0.008167372085154057, 0.005215191747993231, -0.004474703222513199, -0.008401982486248016, -0.00884187687188387, -0.020489301532506943, -0.02733210287988186, 0.006065654568374157, -0.009213343262672424, -0.0076883756555616856, -0.012170410715043545, 0.001480977633036673, 0.001091182348318398, -0.003257662057876587, 0.021017175167798996, 0.020215589553117752, -0.0018243396189063787, 0.03214161470532417, -0.00808916799724102, -0.028837518766522408, -0.015435404144227505, -0.000468915153760463, -0.013392339460551739, 0.00886631477624178, -0.017869485542178154, 0.01585574820637703, -0.022151123732328415, -0.0013600067468360066, -0.024399474263191223, 0.011632761918008327, 0.012238838709890842, 0.02741030603647232, 0.002585601294413209, 0.0028861956670880318, 0.017322061583399773, 0.014966183342039585, -0.011359049938619137, 0.007502642460167408, 0.029169883579015732, 0.000967156607657671, 0.0196192879229784, 0.0165009256452322, 0.010752973146736622, 0.02117358148097992, -0.00012020724534522742, -0.0067841485142707825, 0.006021664943546057, -0.019648615270853043, -0.006495773326605558, 0.0038490756414830685, -0.0010294750100001693, 0.00716050248593092, -0.007463540881872177, 0.0035289302468299866, -0.0072778076864778996, 0.004780185408890247, 0.001557959127239883, 0.0017546897288411856, 0.002561162691563368, 0.0018096765270456672, 0.0010154227493330836, 0.009399075992405415, -0.015210568904876709, -0.0059727877378463745, -0.001977080712094903, 0.010919155552983284, -0.012708059512078762, -0.017048349604010582, -0.0031281376723200083, 0.0010612451005727053, -0.012649406678974628, -0.008553501218557358, -0.007546632084995508, -0.0074000004678964615, -0.03321691229939461, 0.0040568034164607525, 0.01768375374376774, -0.017058124765753746, 0.027918627485632896, -0.017478469759225845, 0.00020574225345626473, -0.008705020882189274, -0.012502775527536869, 0.0001826783554861322, 0.012180185876786709, -0.0032381112687289715, 0.0004518081550486386, -0.009746103547513485, -0.0007881440687924623, -0.019648615270853043, -0.005796830169856548, -3.885351816279581e-06, 0.015562484972178936, -0.02825099229812622, 0.0042596436105668545, 0.018680846318602562, 0.015230120159685612, 0.0031770148780196905, -7.84325529821217e-05, 0.0012341480469331145, -0.02488824538886547, 0.05728401988744736, 0.011613210663199425, -0.002490290906280279, 0.007175165694206953, -0.010058918036520481, 0.007214267272502184, -0.002150594722479582, -0.0052787321619689465, 0.0003739102103281766, -0.026550067588686943, 0.0313204787671566, -0.005083223804831505, -0.0012029889039695263, -0.02975641004741192, 0.006026552524417639, -0.012395245023071766, 0.00844597164541483, -0.019179394468665123, -0.01915006712079048], "f0b68f74-cf73-4de3-87e3-80446f9a99d8": [0.0067092361859977245, -0.018122365698218346, 0.00446127075701952, 0.00023442096426151693, -0.00400821166113019, -0.00983361154794693, -0.004218649119138718, 0.018894793465733528, -0.020697128027677536, 0.03836395964026451, 0.0022974801249802113, -0.033471908420324326, 0.04076046869158745, 0.012002353556454182, 0.04022571071982384, 0.029213648289442062, 0.003003064077347517, -0.008714579977095127, 0.044206686317920685, -0.02774801477789879, 0.021014021709561348, -0.030600059777498245, -0.013656143099069595, 0.003676463384181261, 0.00892254151403904, -0.00889283325523138, -0.020003922283649445, 0.013260025531053543, -0.023271890357136726, -0.022182567045092583, 0.018488774076104164, 0.022103343158960342, -0.010081185027956963, 0.028619473800063133, 0.04198843240737915, 0.008744289167225361, -0.023509560152888298, -0.0411565862596035, -0.0033521424047648907, 0.004758358933031559, -0.001057137968018651, 0.032342974096536636, 0.018439259380102158, -0.012497500516474247, -0.029609765857458115, 0.01792430691421032, 0.011378468945622444, 0.01490391232073307, 0.003728453768417239, 0.017141975462436676, 0.00949691142886877, 0.0007513849413953722, 0.023707618936896324, 0.018270909786224365, 0.05014844611287117, -0.01538915652781725, -0.022657908499240875, -0.017250906676054, 0.010348564013838768, -0.0230738315731287, 0.03812628611922264, -0.002219494665041566, 0.007590597495436668, 0.015369350090622902, 0.040958527475595474, 0.014656338840723038, -0.0040205903351306915, -0.005471369717270136, -0.010893224738538265, -0.0008157539996318519, 0.027866849675774574, 0.016834983602166176, -0.009274095296859741, 0.040047455579042435, 0.028243161737918854, -0.01882547326385975, -0.004268163815140724, 0.039968233555555344, 0.0015163864009082317, -0.042186491191387177, 0.010076233185827732, -0.027926268056035042, 0.04014648497104645, 0.02073673903942108, 0.06512168049812317, 0.023628395050764084, 0.02988704852759838, -0.02549014613032341, 0.008150112815201283, -0.030837729573249817, -0.005174282006919384, 0.026579469442367554, -0.02041984535753727, 0.020182175561785698, -0.0528024323284626, 0.0012595291482284665, -0.02420276589691639, 0.010229729115962982, 0.01179439201951027, -0.037551917135715485, 0.036046672612428665, -0.009274095296859741, 0.0499107763171196, 0.036720070987939835, 0.02003363147377968, 0.0048524364829063416, -0.007719335611909628, -0.006417099852114916, -0.023192666471004486, 0.021647809073328972, -0.0017441539093852043, -0.0002372061717323959, 0.008684871718287468, 0.012051868252456188, -0.049593884497880936, 0.007818364538252354, -0.035749584436416626, 0.020003922283649445, -0.02240043133497238, -0.02927306666970253, 0.030738700181245804, -0.019469164311885834, 0.003686366369947791, -0.035373274236917496, -0.004112192429602146, 0.013359054923057556, -0.008065938018262386, 0.030520835891366005, 0.019776154309511185, 0.017290519550442696, -0.02535150572657585, 0.005634768400341272, 0.0007526228437200189, 0.008754191920161247, 0.006699333433061838, -0.015181194990873337, -0.014676145277917385, 0.04682106152176857, 0.007689626421779394, 0.013190705329179764, 0.012804490514099598, -0.011289342306554317, -0.011289342306554317, -0.024539465084671974, 0.027054810896515846, -0.014131483621895313, 0.0018233773298561573, 0.02533170022070408, 0.0011468833545222878, -0.01753809303045273, -0.05181213840842247, 0.010903128422796726, -0.02768859826028347, -0.020697128027677536, 0.03927502781152725, -0.008065938018262386, -0.0013591774040833116, 0.053356997668743134, -0.0011549293994903564, 0.06789450347423553, 0.027549955993890762, -0.030916953459382057, -0.014388959854841232, 0.010110893286764622, 0.06551779806613922, 0.018330326303839684, 0.02814413234591484, -0.006422051228582859, -0.028639279305934906, 0.012804490514099598, 0.0014742990024387836, 0.0013616530923172832, 0.03640317916870117, 0.007427198812365532, -0.020182175561785698, -0.0064071970991790295, 0.003797774435952306, 0.03570997342467308, 0.020023727789521217, 0.02707461640238762, 0.0042929211631417274, -0.016320031136274338, -0.010685263201594353, 0.014606824144721031, 0.015488185919821262, 0.03820551186800003, 0.006288361735641956, 0.024024512618780136, -0.009175066836178303, 0.012507403269410133, 0.02782723866403103, -0.008457103744149208, -0.010417884215712547, -0.0029956370126456022, -0.011933033354580402, 0.004057726357132196, 0.022954996675252914, 0.014666242524981499, -0.013715560548007488, 0.028540249913930893, 0.002428694162517786, -0.038007453083992004, 0.005048019345849752, 0.045276205986738205, -0.01709246076643467, -0.0033150063827633858, -0.012873811647295952, -0.0105961374938488, -0.02570801042020321, -0.02186567336320877, -0.002065999200567603, -0.021509168669581413, 0.006075448822230101, -0.04915815591812134, -0.03252122923731804, -0.01814217120409012, 0.012962938286364079, 0.06417100131511688, -0.007892636582255363, -0.047098346054553986, -0.032937150448560715, 0.013626433908939362, -0.014022551476955414, -0.03448200970888138, -0.041116971522569656, 0.00015465595060959458, -0.01890469714999199, -0.007011275738477707, -0.021964702755212784, -0.02376703731715679, 0.024222571402788162, -0.01990489289164543, 0.013844299130141735, 0.000657307100482285, 0.02003363147377968, 0.04725679010152817, 0.0499107763171196, 0.007407393306493759, 0.0004759596777148545, 0.02277674339711666, 0.0066646733321249485, 0.015399059280753136, 0.029748408123850822, -0.0031936955638229847, 0.040800079703330994, -0.02065751515328884, 0.009675164707005024, 0.037472695112228394, -0.005654573906213045, -0.008308559656143188, -0.05319854989647865, -0.0016414109850302339, -0.01784508302807808, -0.019538484513759613, -0.010120796039700508, 0.014666242524981499, 0.03636356443166733, -0.01432954240590334, 0.016914207488298416, 0.015567408874630928, 0.013190705329179764, 0.003369472688063979, -0.023509560152888298, 0.04551387578248978, 0.012794587761163712, -0.007169722579419613, 0.017340034246444702, -0.003074860433116555, -0.03434336930513382, 0.0015906584449112415, 0.02412354201078415, 0.0012762403348460793, -0.051693305373191833, -0.004963844548910856, -0.009803902357816696, 0.01243808213621378, 0.016389353200793266, 0.018884891644120216, 0.03866104781627655, 0.009056231006979942, -0.02685675211250782, -0.01754799485206604, 0.006431954447180033, -0.006228944286704063, 0.019479067996144295, 0.015111873857676983, -0.020776351913809776, -0.03252122923731804, -0.033471908420324326, -0.005817972589284182, 0.018043141812086105, 0.02549014613032341, -0.005421855021268129, 0.007957005873322487, -0.015607020817697048, -0.00621904106810689, -0.011952838860452175, 0.0017812899313867092, -0.030837729573249817, 0.04147347807884216, 0.017122169956564903, 0.004389474634081125, 0.028243161737918854, 0.024143347516655922, 0.04341445490717888, 0.001440876629203558, 0.0020573341753333807, 0.04583076760172844, 0.003508113557472825, 0.0405426025390625, 0.0359872542321682, -0.030065301805734634, -0.03675968199968338, -0.010021766647696495, 0.0035105894785374403, 0.05058417469263077, -0.02005343697965145, -0.013804687187075615, -0.013260025531053543, -0.012586626224219799, -0.018696734681725502, -0.027866849675774574, -0.046781450510025024, 0.012715364806354046, 0.037849005311727524, -0.039829593151807785, 0.050108835101127625, 0.0023841308429837227, -0.011675557121634483, 0.00019976070325355977, -0.044206686317920685, -0.022598490118980408, -0.017518285661935806, 0.01130914781242609, -0.035511914640665054, -0.03689832612872124, -0.04107736051082611, -0.052366703748703, 0.023965096101164818, 0.014616727828979492, -0.009630600921809673, -0.030283166095614433, 0.04472164064645767, -0.014012648724019527, 8.742431964492425e-05, 0.00046729459427297115, 0.0038621434941887856, 0.014230513013899326, -0.024915777146816254, 0.013903716579079628, 0.0004533686151262373, 0.027787627652287483, 0.0012712888419628143, 0.009006716310977936, -0.005783312022686005, -0.04301833733916283, -0.027173645794391632, 0.021826062351465225, 0.009893028996884823, -0.008268947713077068, 0.0006081018946133554, 0.014824689365923405, -0.018092656508088112, -0.005758555140346289, -0.04341445490717888, 0.00261932541616261, 0.00550107890740037, -0.03321443498134613, -0.00612991489470005, -0.009021570906043053, 0.020815962925553322, -0.0197464469820261, 0.0009612033027224243, -0.0037012207321822643, 0.0008739337208680809, 0.016112070530653, 0.005048019345849752, -0.005307971499860287, -0.011358662508428097, 0.02073673903942108, -0.008991862647235394, -0.007234091870486736, -0.002251679077744484, 0.04749445989727974, -0.009620698168873787, 0.006427002605050802, 0.017736151814460754, -0.04622688516974449, -0.007268751971423626, -0.022598490118980408, 0.01822139509022236, 0.018508579581975937, -0.04147347807884216, -0.022578684613108635, -0.06741916388273239, -0.03404628112912178, 0.002125416649505496, -0.03166957572102547, 0.015448573976755142, -0.022341014817357063, -0.02011285535991192, -0.010209922678768635, 0.03034258261322975, -0.0004932897863909602, 0.03040200099349022, -0.02768859826028347, -0.005441660992801189, 0.03632395341992378, -0.010398078709840775, 0.010299049317836761, 0.005852632690221071, 0.010066330432891846, -0.005525835789740086, 0.04040396213531494, 0.03109520673751831, 0.0031961712520569563, -0.00896215345710516, 0.019687028601765633, 0.013903716579079628, -0.0052980687469244, 0.003832434769719839, 0.012111285701394081, 0.04547426477074623, 0.018023336306214333, 0.03216472268104553, 0.0006146007217466831, 0.018548190593719482, -0.015111873857676983, -0.012051868252456188, 0.0034090843982994556, 0.023786842823028564, 0.028401609510183334, 0.01747867465019226, 0.019033435732126236, -0.014527601189911366, 0.014577115885913372, -0.05224786698818207, -0.006422051228582859, 0.007788655813783407, -0.0124776940792799, -0.032263752073049545, -0.013646240346133709, -0.02632199227809906, -0.024995001032948494, -0.026222962886095047, -0.034838516265153885, -0.014676145277917385, 0.019726639613509178, 0.018280811607837677, -0.015755563974380493, 0.012794587761163712, 0.015706049278378487, -0.015983331948518753, 0.001724348054267466, 0.02760937437415123, 0.03139229491353035, 0.008561084978282452, 0.008353123441338539, 0.022341014817357063, -0.04555348679423332, 0.01588430255651474, 0.009051280096173286, 0.022519268095493317, 0.01718158647418022, -0.015171291306614876, 0.035591136664152145, 0.0019855378195643425, -0.019627610221505165, 0.01327983196824789, 0.003775492776185274, 0.025292087346315384, 0.007788655813783407, -0.016666634008288383, 0.0105961374938488, 0.013586822897195816, -0.0297286007553339, -0.017894597724080086, 0.012586626224219799, 0.0216280035674572, 0.018647219985723495, 0.033768996596336365, -0.025985293090343475, 0.03479890152812004, -0.01647847890853882, -0.03901755064725876, 0.02747073397040367, -0.032342974096536636, -0.01656760461628437, 0.009353319182991982, -0.03394725173711777, -0.018726443871855736, -0.006595352664589882, 0.03361055254936218, 0.00809069536626339, 0.0039215609431266785, 0.0009865795727819204, -0.009709824807941914, -8.502595301251858e-05, 0.0024621165357530117, 0.0025623836554586887, 0.01513168029487133, -0.022954996675252914, -0.0061942837201058865, 0.0194394551217556, -0.0018580375472083688, 0.02487616427242756, 0.004760834388434887, 0.022737132385373116, -0.030897147953510284, -0.01671614870429039, -0.005659525748342276, 0.039690952748060226, -0.021073438227176666, 0.009640504606068134, -0.004768261685967445, 0.02701519802212715, -0.008308559656143188, -0.011923129670321941, 0.018865086138248444, -0.024697912856936455, -0.02200431562960148, -0.00896215345710516, -0.006298264488577843, 0.0008646497153677046, -0.00979895144701004, -0.004169134423136711, -0.04642494395375252, -0.03141209855675697, 0.0139235220849514, -0.03893832862377167, 0.005038116592913866, 0.01327983196824789, -0.007174673955887556, 0.000415304210036993, 0.011447789147496223, -0.007224188651889563, 0.01316099613904953, 0.014834592118859291, -0.00635273102670908, 0.009447396732866764, -0.02776782028377056, 0.0320458859205246, -0.010338661260902882, 0.014002745971083641, 0.01710236258804798, 0.027926268056035042, -0.02323227748274803, 0.018924502655863762, -0.017003333196043968, 0.012675752863287926, -0.017884695902466774, -0.004854912403970957, -0.028203550726175308, -0.007308363914489746, -0.005342631600797176, -0.03584861382842064, 0.026361605152487755, 0.0026366556994616985, -0.0032952006440609694, -0.04971271753311157, -0.008442249149084091, 0.04313717037439346, -0.024995001032948494, -0.0051445732824504375, -0.011041768826544285, 0.01426022220402956, -0.012725267559289932, -0.019013630226254463, -0.011863712221384048, 0.028797725215554237, 0.019389940425753593, 0.02693597413599491, 0.05050495266914368, 0.008254094049334526, -0.0009630601271055639, 0.05300049111247063, -0.006714188028126955, 0.0008875502971932292, -0.03085753507912159, -0.008065938018262386, 0.03796784207224846, 0.028758114203810692, 0.0018704162212088704, 0.013636337593197823, 0.006273507606238127, -0.00042304088128730655, -0.018706638365983963, 0.008105549961328506, -0.01074468158185482, 0.012200412340462208, -0.0028569959104061127, -0.006516129244118929, -0.02760937437415123, -0.008437298238277435, -0.016607217490673065, 0.018409550189971924, 0.021271497011184692, -0.00032215475221164525, 0.020301010459661484, 0.03378880396485329, 0.035888224840164185, -0.01883537694811821, 0.009774194099009037, 0.006511177867650986, -0.038225315511226654, 0.010764487087726593, -0.02632199227809906, 0.020479263737797737, 0.027351897209882736, 0.02240043133497238, 0.006595352664589882, 0.012230120599269867, -0.02889675460755825, -0.021370526403188705, 0.006065545603632927, -0.0068429261445999146, -0.002124178921803832, 0.011061575263738632, 0.018251104280352592, 0.038225315511226654, -0.0008398924255743623, -0.03170918673276901, 0.026539858430624008, 0.0005100009730085731, -0.00536738894879818, 0.012854005210101604, -0.02071693353354931, 0.0008566036121919751, -0.024103736504912376, 0.010873419232666492, 0.0019818241707980633, 0.023192666471004486, -0.01244798582047224, 0.029629573225975037, 0.012071673758327961, -0.03365016356110573, 0.010526816360652447, 0.025311894714832306, -0.026143740862607956, -0.006075448822230101, 0.013794784434139729, 0.0058575840666890144, -0.0024943009484559298, 0.026064516976475716, -0.009546426124870777, 0.031075401231646538, 0.0071598198264837265, 0.00308228749781847, 0.026579469442367554, 0.008585842326283455, -0.013666045852005482, -0.005431758239865303, 0.0003388659388292581, 0.013299637474119663, 0.006441857200115919, 0.02398490160703659, -0.000428611267125234, 0.0048078736290335655, -0.01899382285773754, 0.010219825431704521, 0.03525443747639656, -0.03545249626040459, -0.0017751005943864584, -0.023311501368880272, 0.009016619063913822, -0.008442249149084091, 0.0021687420085072517, 0.01309167593717575, 0.006144769489765167, 0.01640915870666504, 0.0020858049392700195, -0.006431954447180033, -0.004666756838560104, -0.0006647342815995216, -0.01626061461865902, 0.007199431303888559, -0.010922933928668499, 0.0124776940792799, -0.026896363124251366, -0.007224188651889563, -0.03133287653326988, -0.016973625868558884, -0.021509168669581413, -0.0021959750447422266, -0.04392940551042557, -0.0008968342444859445, -0.0004685324674937874, -0.02760937437415123, -0.0196573194116354, -0.0040428717620670795, -0.027728209272027016, -0.019488969817757607, -0.03351152315735817, 0.027648985385894775, -0.027193451300263405, -0.021271497011184692, -0.001015050569549203, -0.005441660992801189, -0.023014413192868233, -0.017349936068058014, -0.02731228619813919, -0.012646043673157692, -0.002844617236405611, -0.007011275738477707, 0.01047730166465044, 0.027351897209882736, -0.01309167593717575, -0.02988704852759838, -0.006590401288121939, 0.026222962886095047, 0.002671315800398588, 0.015993235632777214, -0.002014008816331625, -0.02753015048801899, 0.02178644947707653, 0.01164584793150425, 0.0008145161555148661, 0.05513952672481537, 0.0515744686126709, 0.03646259382367134, 0.021588390693068504, 0.009442445822060108, -0.010804099030792713, -0.004211221821606159, 0.0019904894288629293, 0.010942739434540272, 0.021053632721304893, -0.006867683492600918, 0.01647847890853882, -0.02034062147140503, 0.028797725215554237, -0.018627414479851723, 0.021014021709561348, 0.0009853417286649346, 0.028322385624051094, -0.000831227342132479, -0.008367977105081081, -0.010576331056654453, 0.026658693328499794, -0.018033238127827644, -0.0020214358810335398, -0.0010577569482848048, 0.008610599674284458, -0.03208550065755844, 0.007570791523903608, -0.023430336266756058, 0.020895186811685562, 0.00801147148013115, -0.019003726541996002, -0.041037749499082565, 0.05494146794080734, -0.017270714044570923, 0.01875615306198597, 0.013596725650131702, -0.030956564471125603, 0.013418472371995449, 0.025668399408459663, -0.0070607904344797134, -0.004528115503489971, 0.03002568893134594, 0.010566428303718567, 0.022281596437096596, 0.011824100278317928, 0.006976615637540817, -0.046781450510025024, -0.003733405377715826, 0.005040592513978481, 0.023093637079000473, 0.037413276731967926, 0.03877988085150719, 0.026064516976475716, 0.028698695823550224, 0.004582581575959921, 0.007669820915907621, 0.0008405113476328552, 0.0033051036298274994, 0.024618688970804214, -0.012071673758327961, -0.01641906052827835, -0.02103382721543312, -0.057001277804374695, -0.015250515192747116, 0.03485831990838051, 0.00978904776275158, -0.02005343697965145, -0.011071478016674519, 0.01055652555078268, -0.038680851459503174, 0.0015064835315570235, 0.02533170022070408, 0.01349769625812769, -0.01572585664689541, -0.00444641662761569, 0.006496323272585869, -0.01270546205341816, 0.00017144450976047665, -0.03333326801657677, 0.015082165598869324, -0.001741678104735911, 0.009343416430056095, -0.01146759558469057, -0.020301010459661484, 0.02095460332930088, 0.013467987067997456, 0.02358878403902054, -0.030302971601486206, -0.03137248754501343, 0.00953157152980566, -0.014527601189911366, 0.008080792613327503, 0.014705853536725044, 0.011150700971484184, -0.04222610220313072, 0.016003137454390526, -0.03456123173236847, -0.03864124044775963, 0.0004945276887156069, 0.008536327630281448, 0.015468379482626915, -0.009229532442986965, -0.014844494871795177, 0.0002556194376666099, 0.018092656508088112, 0.010447593405842781, 0.010358466766774654, 0.014171095564961433, 0.01814217120409012, 0.01528022438287735, -0.01618139073252678, 0.021608198061585426, -0.002913937671110034, 0.00404782360419631, 0.008234287612140179, 0.008075840771198273, -0.005003456491976976, 0.01846896857023239, -0.0008132783113978803, -0.01130914781242609, -0.022281596437096596, 0.010794195346534252, -0.023410530760884285, -0.03149132430553436, 0.027886657044291496, -0.021766643971204758, 0.0013690803898498416, -0.0037631141021847725, 0.024836553260684013, 0.005941759329289198, 0.007501470856368542, 0.042463771998882294, -0.008145161904394627, -0.018627414479851723, 0.017488578334450722, -0.032580647617578506, 0.0065062264911830425, 0.015607020817697048, -0.002740636467933655, 0.010635748505592346, -0.004384523257613182, 0.0003701220848597586, 0.037789586931467056, -0.009511766023933887, -0.019330523908138275, 0.011279439553618431, -0.02277674339711666, 0.025886263698339462, 0.009769242256879807, 0.02194489724934101, -0.025292087346315384, 0.000631311908364296, -0.015428767539560795, 0.04349367693066597, 0.034977156668901443, 0.0027530151419341564, -0.036581430584192276, -0.0009581086924299598, 0.02648044005036354, -0.016894401982426643, -0.013784881681203842, 0.013992843218147755, 0.006422051228582859, -0.015032650902867317, 0.01074468158185482, 0.001236009644344449, -0.023252084851264954, -0.02442063018679619, 0.0065309833735227585, 0.008457103744149208, -0.009779145009815693, 0.04206765443086624, -0.013992843218147755, 0.010784292593598366, -0.009338464587926865, 0.004857388325035572, -0.015448573976755142, 0.006209138315171003, 0.02376703731715679, -0.027708403766155243, -0.0019397367723286152, 0.006590401288121939, 0.02200431562960148, 0.002093232236802578, -0.03933444619178772, -0.02449985407292843, 0.005085155367851257, -0.044365134090185165, 0.03396705538034439, -0.019687028601765633, -0.016587410122156143, -0.011447789147496223, 0.02133091539144516, 0.025074223056435585, 0.0033001520205289125, 0.011626042425632477, 0.03610609099268913, -0.015369350090622902, 0.008070889860391617, -0.021014021709561348, 0.009660310111939907, -0.018439259380102158, 0.02412354201078415, -0.0066300127655267715, 0.022638102993369102, -0.021746838465332985, 0.004379571415483952, 0.005768457893282175, -0.031273458153009415, -0.004419183358550072, 0.006808265578001738, 0.031134817749261856, -0.011338857002556324, 0.005966516677290201, 0.0029386950191110373, 0.002067236928269267, 0.004508309531956911, -0.007570791523903608, -0.02753015048801899, -0.04056240990757942, -0.01938003860414028, 0.011635945178568363, -0.0035303952172398567, -0.024480048567056656, 0.0044736494310200214, -0.004124571103602648, -0.004738552961498499, 0.025985293090343475, 0.0024732572492212057, 0.0009141644113697112, 0.005936807487159967, -0.0457119345664978, 0.0008522710995748639, -0.010130699723958969, 0.04424630105495453, 0.02677752822637558, -0.0013641288969665766, -0.01762721873819828, 0.024717718362808228, -0.05074262246489525, -0.0038349104579538107, 0.014993038959801197, 0.005119815934449434, -0.00612991489470005, 0.00017856224440038204, -0.00953157152980566, -0.010675360448658466, 0.014666242524981499, 0.01572585664689541, -0.0031218992080539465, -0.021231885999441147, -0.012685655616223812, 0.02776782028377056, -0.0009036425617523491, -0.028262967243790627, -0.00357495853677392, 0.027431121096014977, 0.015537700615823269, 0.0019125037360936403, -0.02299460768699646, -0.03418492153286934, -0.02412354201078415, -0.004552872851490974, -0.003928988240659237, -0.009813805110752583, -0.02774801477789879, -0.043612513691186905, -0.0048524364829063416, -0.00618438096717, 0.010180214419960976, -0.01867692917585373, 0.0037482597399502993, 0.0019125037360936403, 0.011229924857616425, 0.002755490830168128, 0.02535150572657585, 0.013893813826143742, -0.005817972589284182, -0.007961957715451717, -0.00618438096717, -0.015468379482626915, -0.04167153686285019, -0.023054026067256927, -0.012398471124470234, -0.015607020817697048, 0.03745288774371147, -0.0026094226632267237, 0.01604275032877922, 0.008620502427220345, -0.010764487087726593, 0.015428767539560795, 0.003334812354296446, -0.026123933494091034, -0.02299460768699646, 0.01236876193434, -0.006649818737059832, 0.015101971104741096, 0.02943151444196701, 0.018775958567857742, -0.03426414355635643, -0.0006548313540406525, -0.0014421144733205438, -0.028163937851786613, 0.002491825260221958, 0.03069908916950226, 0.0014594446402043104, -0.016696343198418617, 0.015626827254891396, -0.006694382056593895, -0.011190312914550304, -0.012319247238337994, 0.01754799485206604, -0.019568193703889847, -0.02556937001645565, -0.001672357670031488, -0.023271890357136726, 0.02358878403902054, -0.0015460952417925, -0.0039983089081943035, -0.032422199845314026, -0.0049687959253787994, -0.023469949141144753, -5.0713842938421294e-05, 0.01861751265823841, 0.011477498337626457, -0.023628395050764084, 0.023489754647016525, -0.02699539251625538, 0.016686439514160156, 0.007640112191438675, -0.005689234472811222, 0.005585253704339266, 0.002323475433513522, 0.0036690363194793463, 0.012507403269410133, -0.020815962925553322, 0.002346994820982218, -0.003518016543239355, 0.0009011668153107166, 0.006243798416107893, -0.017736151814460754, 0.024400824680924416, -0.005966516677290201, -0.0020944701973348856, 0.011774586513638496, -0.004270639270544052, -0.0035353465937078, 0.009883126243948936, -0.0175578985363245, -0.018884891644120216, 0.0048895725049078465, 0.009412736631929874, -0.0197464469820261, -0.04143386706709862, 0.0053822435438632965, -0.00907108560204506, -0.029748408123850822, 0.009259241633117199, 0.005996225401759148, 0.028837338089942932, 0.006620110012590885, -0.008526423946022987, 0.0038274831604212523, -0.01218060590326786, 0.0036640847101807594, -0.027708403766155243, -0.01938003860414028, -0.004684086889028549, 0.027252867817878723, 0.0056397197768092155, 0.0018889842322096229, 0.0032110256142914295, -0.011903324164450169, -0.0019954408053308725, 0.020172271877527237, 0.017439063638448715, -0.007966908626258373, 0.010338661260902882, 0.011903324164450169, 0.017656927928328514, -0.0029906854033470154, 0.013992843218147755, -0.006456711795181036, 0.02275693789124489, 0.028401609510183334, 0.02063770964741707, 0.006545837968587875, 0.029075007885694504, -0.0428202785551548, 0.017290519550442696, 0.006773605477064848, -0.038997747004032135, 0.011784489266574383, 0.007347975391894579, 0.03561094403266907, 0.007189528550952673, 0.003817580174654722, -0.011249730363488197, -0.007437102030962706, -0.04301833733916283, -0.015369350090622902, -0.009259241633117199, 0.00497374776750803, 0.01565653458237648, 0.00609030295163393, 0.019409745931625366, 0.00548127293586731, 0.02133091539144516, 0.0031837925780564547, -0.015696147456765175, 0.013745269738137722, 0.008838366717100143, 0.00609030295163393, -0.014686048030853271, 0.031055593863129616, -0.036561623215675354, 0.0017231102101504803, -0.00714991707354784, 0.006268555764108896, 0.005510981660336256, -0.012131091207265854, 0.01747867465019226, 0.00620418693870306, -0.006288361735641956, -0.007541082799434662, -0.00014003364776726812, -0.04064163193106651, -0.036046672612428665, -0.013675948604941368, -0.0006709236185997725, -0.009303804486989975, 0.010378272272646427, 0.02747073397040367, 0.002255392726510763, 0.01168545987457037, 0.0058575840666890144, -0.016993431374430656, -0.03745288774371147, 0.009749436751008034, -0.01868683286011219, 0.030441612005233765, -0.018954211845993996, -0.011398274451494217, 0.006139817647635937, 0.009155260398983955, 0.010388175956904888, 0.006644867360591888, 0.00037259780219756067, -0.0038943279068917036, 0.006139817647635937, 0.00895720161497593, -0.0196573194116354, -0.00041839887853711843, -0.002370514441281557, 0.007546034175902605, 0.00701622711494565, -0.018270909786224365, 0.018944308161735535, -0.01694391667842865, 0.029391901567578316, -0.0261833518743515, -0.0008454628405161202, 0.00444641662761569, 0.0034685018472373486, -0.001088084653019905, 0.014606824144721031, 0.007442053407430649, 0.023351114243268967, -0.008219433948397636, 0.011368566192686558, 0.014884106814861298, -0.003438793122768402, 0.039532504975795746, 0.0005694185965694487, -0.01096254587173462, -0.03186763450503349, 0.023846259340643883, 0.0074172960594296455, -0.027866849675774574, 0.023469949141144753, 0.005263408180326223, 0.01655770279467106, 0.005119815934449434, -0.017429159954190254, 0.004260736517608166, -0.0055604963563382626, -0.012348956428468227, -0.007169722579419613, -0.019082950428128242, -0.007065741810947657, -0.011101186275482178, -0.013636337593197823, -0.018508579581975937, -0.009506815113127232, -0.018102560192346573, -0.0013975512702018023, 0.010883321985602379, 0.011338857002556324, 0.020013825967907906, -0.009472154080867767, 0.02133091539144516, -0.018092656508088112, 0.003911658190190792, 0.000625741493422538, 0.04590999335050583, -0.021093245595693588, 0.01822139509022236, 0.004364717286080122, 0.013071870431303978, -0.014280027709901333, 0.029708795249462128, -0.013685852289199829, 0.013755172491073608, 0.0005660144379362464, 0.0022603441029787064, 0.027054810896515846, 0.006773605477064848, -0.00440680468454957, -0.0006610206910409033, -0.004453843459486961, -0.007392538711428642, 0.0018691783770918846, 0.014171095564961433, -0.001683498383499682, -0.005446612369269133, -0.007065741810947657, 0.0024039368145167828, 0.013131287880241871, -0.025212865322828293, -0.000373216753359884, -0.010922933928668499, 0.03481870889663696, 0.011051671579480171, 0.0024732572492212057, 0.014280027709901333, 0.010992254130542278, -0.01784508302807808, 0.02473752386868, -0.017528189346194267, 0.0415923148393631, -0.010130699723958969, 0.00714496523141861, 0.004585057497024536, 0.004208745900541544, 0.01520100049674511, -0.001162356580607593, -0.03131306916475296, -0.01687459647655487, 0.01770644262433052, -0.012002353556454182, 0.022341014817357063, -0.01989499107003212, -0.027589568868279457, -0.023806648328900337, -0.03727463632822037, 0.010635748505592346, -0.014844494871795177, 0.02616354636847973, -0.0032580646220594645, -0.008402638137340546, -0.012804490514099598, -0.004872242454439402, 0.046860672533512115, 0.026955781504511833, 0.05553564056754112, -0.018132267519831657, -0.001803571474738419, 0.020558485761284828, 0.017033042386174202, 0.018261006101965904, 0.02148936316370964, -0.017260810360312462, 0.019488969817757607, -0.008273899555206299, -0.004307775292545557, 0.002267771400511265, 0.003849764820188284, 0.006768654100596905, 0.0019285959424450994, -0.034897930920124054, -0.011903324164450169, -0.005837778560817242, -0.029154231771826744, 0.021509168669581413, -0.010913031175732613, -0.0030278214253485203, -0.01776585914194584, 0.017458869144320488, -0.01218060590326786, 0.011715168133378029, -0.0043374840170145035, -0.036422982811927795, 0.004518212750554085, 0.012319247238337994, -0.005085155367851257, 0.010120796039700508, -0.036640848964452744, 0.006724090781062841, -0.001250864122994244, -0.012784685008227825, -0.014468183740973473, -0.0175578985363245, 0.0011394560569897294, 0.01695382036268711, -0.005763506516814232, 0.013527405448257923, -0.0038423375226557255, 0.03248161822557449, -0.012071673758327961, 0.0007111543091014028, -0.008288754150271416, -0.0021476983092725277, -0.002604471053928137, 0.017132071778178215, -0.01516138855367899, -0.000862174027133733, 0.010299049317836761, -0.025292087346315384, 0.014973233453929424, -0.007704481016844511, 0.01534954458475113, -0.021390333771705627, -0.011665653437376022, 0.018043141812086105, 9.883589882520027e-06, 0.026440829038619995, 0.006684478837996721, 0.007085547782480717, -0.013408569619059563, -0.022281596437096596, 0.0005746795213781297, 0.0042136977426707745, -0.010903128422796726, 0.005520884413272142, 0.02822335623204708, 0.0034437444992363453, 0.009769242256879807, -0.007565840147435665, -0.03398686274886131, -0.0048895725049078465, -0.01754799485206604, 0.018270909786224365, 0.021984508261084557, -0.02041984535753727, -0.028342191129922867, -0.007352926768362522, 0.01218060590326786, -0.005179233383387327, 0.019934602081775665, -0.03456123173236847, 0.0449196994304657, 0.035056378692388535, -0.0001943450333783403, 0.01232914999127388, -0.010932836681604385, 0.0038274831604212523, -0.02277674339711666, -0.01731032505631447, 0.0020226738415658474, -0.0029783067293465137, 0.0179936271160841, 0.011962741613388062, 0.02677752822637558, 0.0145573103800416, -0.014577115885913372, -0.027431121096014977, 0.0012558154994621873, -0.016745857894420624, 0.008694774471223354, 0.008348171599209309, 0.013844299130141735, -0.014765271916985512, 0.001499056350439787, 0.01836993917822838, 0.028718503192067146, 0.01898392103612423, -0.0036219973117113113, -0.026361605152487755, -0.0028916560113430023, -0.038225315511226654, -0.01907304674386978, 0.0005226891371421516, -0.004344911314547062, -0.00709049915894866, 0.01058623380959034, 0.0015696147456765175, -0.026975587010383606, 0.0077688503079116344, -0.020380234345793724, -0.004379571415483952, 0.009293901734054089, -0.009105745702981949, 0.05414923280477524, 0.011705265380442142, -0.004092386458069086, -0.02073673903942108, 0.028005491942167282, 0.0343235619366169, -0.02715383842587471, -0.019934602081775665, 0.028104521334171295, 0.0065507893450558186, 0.02436121180653572, -0.038245122879743576, -0.028956172987818718, -0.007347975391894579, -0.007491568103432655, 0.007744092959910631, -0.013804687187075615, -0.008343219757080078, -0.019726639613509178, 0.005951662082225084, 0.04392940551042557, -0.020102951675653458, 0.002302431734278798, -0.013913619332015514, -0.00798176322132349, -0.036957740783691406, -0.0025116309989243746, 0.0037358810659497976, 0.005902147386223078, -0.002943646628409624, 0.018171880394220352, -0.009180017746984959, 0.029708795249462128, 0.0007544796098954976, 0.022578684613108635, -0.0038052015006542206, -0.03410569578409195, -0.006600304041057825, 0.006907294970005751, -0.02028120495378971, -0.0074767135083675385, -0.0175578985363245, 0.007219237275421619, -0.022142956033349037, 0.04076046869158745, 0.008377880789339542, 0.0007000134792178869, -0.027213256806135178, -0.04515736922621727, 0.00040571074350737035, -0.018439259380102158, -0.010932836681604385, 0.03404628112912178, -0.011170507408678532, 0.0007922345539554954, 0.005624865181744099, -0.016428964212536812, -0.0010911793215200305, 0.023014413192868233, 0.016924111172556877, 0.011210119351744652, 0.03228355944156647, -0.026044711470603943, -0.0007346737547777593, -0.02889675460755825, -0.014715757220983505, -0.013903716579079628, -0.023549173027276993, -0.014844494871795177, -0.02390567772090435, -0.034303754568099976, 0.005159427411854267, -0.02049906924366951, 0.006159623619168997, -0.033471908420324326, -0.0017924306448549032, 0.042780667543411255, 0.013250122778117657, 0.003030297113582492, 0.015587215311825275, -0.0024311698507517576, 0.011665653437376022, 0.008912638761103153, -0.0008126593311317265, -0.0067637027241289616, -0.005709040444344282, 0.02323227748274803, -0.009254289790987968, -0.02148936316370964, -0.017746053636074066, -0.002993161091580987, 0.011764682829380035, 0.020974410697817802, 0.025371311232447624, -0.025014806538820267, 0.012764879502356052, 0.001661216840147972, -0.02103382721543312, 0.026757722720503807, 0.016884498298168182, -0.003218452911823988, 0.01581498235464096, -0.015230709686875343, -0.002918889280408621, -0.02202412113547325, -0.00034876889549195766, -0.009269144386053085, 0.018567997962236404, 0.001945926109328866, 0.0012496262788772583, 0.01490391232073307, 0.007506422232836485, -0.0004054012824781239, 0.0022479656618088484, -0.007996617816388607, -0.007897588424384594, 0.02146955579519272, -0.01066545769572258, 0.03731424733996391, -0.022360820323228836, -0.00523865083232522, -0.0035303952172398567, 0.006679527461528778, -0.017458869144320488, -0.013151093386113644, -0.012923326343297958, -0.017062751576304436, -0.004627144895493984, -0.016735954210162163, -0.016230905428528786, 0.022677714005112648, 0.006095254793763161, 0.0028099569026380777, 0.010982351377606392, -0.005090107209980488, -0.005199039354920387, -0.0012471504742279649, -0.005446612369269133, -0.0010181452380493283, -0.01853828877210617, -0.014200804755091667, 0.005402049515396357, -0.03333326801657677, 0.016587410122156143, -0.009274095296859741, 0.011705265380442142, -0.008273899555206299, -0.02535150572657585, -0.007659917697310448, 0.00404782360419631, 0.014646436087787151, 0.005862535908818245, -0.0018295666668564081, -0.008353123441338539, -0.00538719492033124, -0.01959790289402008, -0.005832826718688011, 0.014587018638849258, -0.005446612369269133, 0.009135454893112183, 0.02865908481180668, 0.00535253481939435, -0.016003137454390526, 0.003055054461583495, -0.000946348940487951, -0.009293901734054089, -0.005912050139158964, 0.00866506528109312, 0.004721222911030054, -0.00870467722415924, -0.0018629890400916338, -0.003649230347946286, -0.013982939533889294, 0.007328169420361519, -0.004587533418089151, -0.012675752863287926, -0.006446808576583862, -0.010140602476894855, -0.002302431734278798, 0.00888788141310215, 0.020974410697817802, -0.0013393715489655733, 0.010457496158778667, -0.013943328522145748, 0.014309736900031567, 0.016290323808789253, -0.0038695705588907003, 0.0001138063526013866, -0.028876949101686478, 0.0158050786703825, -0.01244798582047224, 0.043374840170145035, 0.02648044005036354, 0.0056199138052761555, 0.0056397197768092155, 0.013725463300943375, -0.005411952268332243, 0.0019050765549764037, -0.012655947357416153, 0.0192215908318758, 0.008561084978282452, 0.009229532442986965, 0.0003970456891693175, 0.0070459358394145966, 0.00888292957097292, 0.008353123441338539, -0.004129522480070591, -0.005926904734224081, -0.021964702755212784, 0.0020016301423311234, 0.0015213378937914968, 0.0028644229751080275, 0.008566035889089108, 0.02481674775481224, -0.005610011052340269, 0.015072262845933437, 0.006803314201533794, -0.013170899823307991, -0.0013443230418488383, -0.012150897644460201, 0.0037383567541837692, 0.0025066796224564314, 0.009283998981118202, -0.0077539957128465176, 0.0035848612897098064, -0.009348367340862751, 0.01330954022705555, 0.0012421989813446999, 0.015210903249680996, -0.006872634869068861, 0.004228551872074604, 0.0011549293994903564, -0.013022355735301971, 0.018053045496344566, -0.025212865322828293, 0.006174478214234114, 0.019984116777777672, -0.002797578228637576, -0.012962938286364079, 0.015171291306614876, -0.004790543112903833, -0.014379057101905346, -0.0052237967029213905, 0.004092386458069086, 0.010407981462776661, -0.039374057203531265, -0.01243808213621378, 0.004226076416671276, -0.00261932541616261, 0.02873830869793892, -0.0029956370126456022, 0.024935582652688026, -0.01884527876973152, -0.00195706682279706, 0.005248554050922394, 0.019716737791895866, 0.0018803192069754004, 0.006516129244118929, 0.00270350044593215, 0.003718551015481353, 0.012507403269410133, -0.03147151693701744, -0.006253701634705067, 0.011130895465612411, 0.018290715292096138, 0.0024385969154536724, 0.03295695781707764, -0.0027158791199326515, -0.018508579581975937, 0.009363221935927868, 0.01229944173246622, 0.01501284446567297, 0.004812825005501509, 0.0020164845045655966, -0.016468575224280357, 0.0022603441029787064, 0.013081773184239864, 0.014854397624731064, 0.00444146478548646, -0.0014470659662038088, 0.00021894763631280512, -0.008259044960141182, 0.01342837605625391, -0.022063732147216797, -0.01665673218667507, -0.009170114994049072, -0.013121385127305984, 0.015309932641685009, 0.004253309220075607, -0.005486224312335253, 0.004580106120556593, 0.012210315093398094, -0.009992058388888836, 0.01647847890853882, -0.007407393306493759, 0.01807285100221634, -0.009987106546759605, 0.019488969817757607, -0.007402441464364529, 0.0032035985495895147, -0.007630208972841501, 0.0022603441029787064, 0.013477890752255917, -0.01814217120409012, -0.02208353765308857, 0.010140602476894855, -0.015002941712737083, -0.0038052015006542206, 0.00869972538203001, 0.007719335611909628, 0.007541082799434662, -0.006927100941538811, 0.0010682787979021668, 0.0069221495650708675, 0.006971664261072874, 0.008709629066288471, 0.024539465084671974, 0.008199627511203289, 0.0008566036121919751, -0.01967712491750717, 0.013675948604941368, 0.00355515256524086, 0.0006802076241001487, -0.014794980175793171, 0.008615550585091114, -0.0064071970991790295, -0.005228748079389334, -0.005545641761273146, -0.024103736504912376, 0.012012256309390068, -0.026143740862607956, -0.005694185849279165, 0.0034214630722999573, -0.010061378590762615, 0.003582385601475835, -0.010140602476894855, 0.018587803468108177, -0.013824492692947388, 0.006991469766944647, 0.012863908894360065, -0.0034585988614708185, -0.0141413863748312, -0.02511383593082428, 0.019152270630002022, 0.0002466448931954801, -0.011021963320672512, 0.00438699871301651, -0.01937013491988182, 0.01134875975549221, -0.0031070448458194733, -0.022796548902988434, 0.00022652956249658018, 0.00315655954182148, -0.0059912740252912045, -0.010754584334790707, 0.0107050696387887, -0.007293509319424629, -0.014131483621895313, -0.003255588933825493, 0.02360858954489231, -0.022657908499240875, 0.020152466371655464, -0.005194087978452444, 0.035353466868400574, 0.007689626421779394, 0.00782826729118824, -0.014537503942847252, 0.0010014339350163937, 0.008942347951233387, 0.015795176848769188, -0.0032209286000579596, -0.0040205903351306915, -0.0013715560780838132, -0.002361849183216691, 0.0012688131537288427, 0.000972963054664433, -0.010021766647696495, -0.0261833518743515, -0.0006158385658636689, -0.030540641397237778, -0.01411167811602354, -0.01142798364162445, -0.012675752863287926, -0.03525443747639656, 0.033016376197338104, -0.0038992795161902905, -0.012596528977155685, 0.01967712491750717, 0.008229336701333523, 0.0022702470887452364, 0.01738954894244671, -0.010526816360652447, -0.001426022150553763, -0.0003843575541395694, 0.03458103910088539, 0.0049687959253787994, -0.009031473658978939, -0.009214677847921848, -0.007645063567906618, 0.01731032505631447, -0.007857976481318474, -0.018865086138248444, 0.020479263737797737, -0.0026118983514606953, -0.009561280719935894, -0.006169526372104883, 0.016458673402667046, 0.020073242485523224, -0.005605059675872326, -0.006927100941538811, 0.015904108062386513, 0.0037111237179487944, 0.015062359161674976, 0.001494104857556522, -0.00046822300646454096, 0.007659917697310448, 0.011507206596434116, 0.0013455608859658241, 0.0001173652199213393, 0.011556721292436123, -0.0037086480297148228, -1.5096168681338895e-05, 0.009432543069124222, 0.008501666598021984, 0.0002802220406010747, 0.025628788396716118, -0.010140602476894855, 0.004015638958662748, -0.005926904734224081, -0.002993161091580987, 0.01490391232073307, -0.0028272869531065226, 0.004820252303034067, 0.020518874749541283, -0.02079615741968155, -0.0015733282780274749, 0.016151681542396545, -0.0008337030885741115, 0.007234091870486736, -0.004401853308081627, -0.0008683633641339839, 0.002559907967224717, 0.018270909786224365, 0.01440876629203558, 0.0028644229751080275, 0.030144525691866875, -0.02814413234591484, 0.005842729937285185, 0.01134875975549221, -0.00888292957097292, 0.017191490158438683, 0.02012275718152523, 0.026539858430624008, 0.006620110012590885, 0.006625061389058828, -0.0017540567787364125, -0.004760834388434887, 0.0027307334821671247, -0.00039952140650711954, 0.0074172960594296455, -0.0005551830981858075, -0.005018310621380806, 0.014458280988037586, 0.005466418340802193, 0.022737132385373116, -0.025747623294591904, 0.00017809803830459714, -0.0003707410069182515, -0.0005734416772611439, 0.023014413192868233, 0.014042357914149761, -0.0028223355766385794, 0.007526228204369545, 0.010308952070772648, -0.004114668350666761, -0.021212080493569374, -0.0019075522432103753, 0.004882145207375288, -0.007719335611909628, 0.0005969611229375005, 0.0042582605965435505, 0.014200804755091667, -0.015755563974380493, -0.01058623380959034, -0.0014495416544377804, -0.018171880394220352, -0.001604274963028729, -0.017676733434200287, 0.03638337180018425, 0.024143347516655922, -0.008372928947210312, 0.0034585988614708185, 0.006025934126228094, -0.022063732147216797, -0.006818168796598911, 0.03141209855675697, 0.002199688693508506, 0.008392734453082085, 0.015547603368759155, -0.005996225401759148, -0.01846896857023239, -0.003728453768417239, 0.002004105830565095, 0.020776351913809776, -6.197069160407409e-05, -0.008199627511203289, 0.037413276731967926, 0.01172507181763649, -0.008561084978282452, -0.013675948604941368, 0.005317874252796173, 0.025529759004712105, -0.028045102953910828, -0.005758555140346289, 0.0038571918848901987, 0.006387391127645969, 0.014339445158839226, 0.00356505555100739, 0.014973233453929424, -0.0006498799193650484, 0.00889283325523138, 0.00033051034552045166, 0.022816354408860207, 0.0032308315858244896, 0.01538915652781725, 0.0018159501487389207, 0.010507010854780674, -0.002545053604990244, 0.01342837605625391, -0.00317636551335454, -0.014785077422857285, 0.0037012207321822643, -0.009105745702981949, 0.01001681573688984, 0.0005975800449959934, -0.008462055586278439, 0.008397686295211315, 0.0052237967029213905, -0.0062140896916389465, 0.02291538380086422, -0.0108140017837286, 0.00922458153218031, -0.0046296208165585995, -0.01572585664689541, -0.021291304379701614, -0.0073182666674256325, -0.02216276153922081, -0.0013084248639643192, -0.006912246346473694, 0.027213256806135178, -0.007125159725546837, -0.026005098596215248, 0.04038415476679802, 0.006144769489765167, -0.011081380769610405, -0.015101971104741096, -0.0196573194116354, 0.018261006101965904, 0.018439259380102158, 0.008189724758267403, -0.013606628403067589, 0.006783508230000734, -0.01958799920976162, -0.007724286988377571, -0.00705583905801177, -0.009893028996884823, 0.011883518658578396, -0.019558290019631386, -0.02315305545926094, 0.0384431816637516, -0.007580694276839495, -0.01769653894007206, 0.011398274451494217, 0.03509598970413208, -0.0050678253173828125, 0.011180410161614418, 0.008447200991213322, 0.004107241053134203, 0.005867487285286188, -0.0015547602670267224, 0.0035353465937078, 0.007303412072360516, 0.001887746388092637, 0.008833414874970913, -0.03436317294836044, 0.007006324362009764, 0.006461663171648979, -0.0020808535628020763, 0.015706049278378487, -0.012170703150331974, 0.017122169956564903, -0.009660310111939907, 0.021647809073328972, -0.003839861834421754, 0.016399255022406578, -0.03477909788489342, 0.004956417251378298, -0.013695755042135715, 0.014765271916985512, 0.01746877282857895, 0.001482964027673006, 0.0008330841665156186, -0.01244798582047224, -0.020815962925553322, -0.032798510044813156, 0.0064071970991790295, -0.01183400396257639, -0.0072786551900208, 0.00039735515019856393, -0.008486812934279442, 0.015399059280753136, 0.017498480156064034, -0.014428571797907352, 0.0030674331355839968, 0.0038002501241862774, 0.004812825005501509, -0.006560692563652992, 0.03281831741333008, 0.004208745900541544, -0.0022900530602782965, -0.003770541399717331, -0.009392931126058102, 0.0005725132650695741, 0.01875615306198597, 0.011972644366323948, -0.005392146296799183, -0.003938890993595123, -0.01513168029487133, -0.0028000539168715477, 0.008877978660166264, 0.022499460726976395, -0.02457907795906067, 0.01353730820119381, -0.005520884413272142, -0.010407981462776661, -0.009526620618999004, -0.010873419232666492, -0.018122365698218346, -0.016161585226655006, 0.0015906584449112415, 0.004218649119138718, 0.0011041768593713641, 0.004362241365015507, -0.0016760712023824453, -0.009640504606068134, -0.012646043673157692, 0.021212080493569374, -0.013606628403067589, -0.012111285701394081, -0.029827630147337914, 0.011279439553618431, -0.008308559656143188, 0.015607020817697048, 0.0004558443324640393, 0.011051671579480171, 0.018518483266234398, 0.019261201843619347, 0.009214677847921848, 0.014161192812025547, 0.001466871821321547, 0.015329739078879356, 0.03133287653326988, -0.010086135938763618, -0.0022281596902757883, -0.009170114994049072, -0.016527993604540825, 0.004347387235611677, -0.013220414519309998, -0.013121385127305984, 0.025212865322828293, 0.0021328439470380545, 0.01694391667842865, -0.006323021836578846, -0.0013047113316133618, 0.024024512618780136, 0.021429944783449173, -0.0012087766081094742, -0.008798754774034023, -0.026282381266355515, 0.019835572689771652, 0.011041768826544285, 0.0017651976086199284, -0.0014111677883192897, 0.012933229096233845, 0.01988508738577366, 0.004590008873492479, 0.007560888305306435, -0.009259241633117199, 0.002083329251036048, 0.003976027015596628, 0.017201391980051994, 0.028857143595814705, -0.014874204061925411, 0.004490979481488466, 0.012190509587526321, -0.006808265578001738, -0.018171880394220352, 0.017458869144320488, 0.026757722720503807, 0.030956564471125603, 0.0177757628262043, 0.005243602674454451, 0.00794215127825737, 0.0003373186045791954, 0.003317482303828001, 0.024618688970804214, -0.004530591424554586, 0.02125169150531292, -0.023331306874752045, -0.01157652772963047, 0.029471125453710556, -0.008873026818037033, -0.014567213132977486, 0.007714383769780397, -0.011903324164450169, -0.004963844548910856, 0.003651706036180258, -0.018508579581975937, -0.027569763362407684, 0.004181513097137213, 0.01130914781242609, 0.0012440558057278395, 0.0039636483415961266, -0.014874204061925411, 0.0049093784764409065, -0.03533365949988365, 0.022974802181124687, -0.016458673402667046, 0.0015609496040269732, -0.010675360448658466, -0.029847437515854836, -0.018736347556114197, -0.019231494516134262, -0.018518483266234398, 0.0001651004422456026, 0.02533170022070408, -0.014497891999781132, 0.00903642550110817, 0.02146955579519272, 0.01520100049674511, -0.001393837621435523, 0.010685263201594353, -0.001667406177148223, -0.004998505115509033, -0.002861947286874056, 0.008031277917325497, 0.016973625868558884, -0.004939087200909853, -0.00019186930148862302, -0.00969001930207014, 0.015408962033689022, -0.01168545987457037, 0.001062708324752748, -0.013725463300943375, -0.024103736504912376, 0.0035402982030063868, 0.0038769978564232588, 0.0214101392775774, 0.017191490158438683, 0.020855573937296867, -0.0012997598387300968, -0.00881856121122837, -0.006783508230000734, -0.03473948687314987, -0.005986322183161974, 0.019241396337747574, -0.022954996675252914, 0.005411952268332243, -0.002933743642643094, 0.020479263737797737, -0.0016438866732642055, -0.020776351913809776, -0.010952643118798733, -0.0013158520450815558, -0.029075007885694504, 0.008367977105081081, -0.006298264488577843, 0.0019013629062101245, 0.006729042157530785, -0.01524061243981123, -0.007308363914489746, -0.019479067996144295, -0.017419258132576942, 0.004119619727134705, 0.01791440322995186, 0.017042946070432663, -0.007590597495436668, -0.013151093386113644, 0.012804490514099598, 0.009779145009815693, 0.007481664884835482, -0.02830258011817932, -0.008541278541088104, -0.014725659973919392, -0.004203794524073601, 0.025807039812207222, -0.012497500516474247, -0.00043077755253762007, 0.010160407982766628, 0.0091503094881773, -0.004164183046668768, -0.00047688806080259383, -0.005704088602215052, 0.017528189346194267, 0.019934602081775665, 0.0015634254086762667, 0.01724100485444069, 0.005119815934449434, -0.0012663374654948711, 0.016508188098669052, -0.005684283096343279, -0.012804490514099598, -0.006020982749760151, -0.0291146207600832, -0.00198677578009665, -0.019389940425753593, 0.014656338840723038, -0.006323021836578846, 0.011804294772446156, 0.025292087346315384, -0.014973233453929424, 0.007882733829319477, -0.012507403269410133, 0.012022159062325954, -0.010086135938763618, -0.012863908894360065, -0.011873614974319935, -0.008595745079219341, 0.01836993917822838, -0.03584861382842064, 0.006946906913071871, -0.018964115530252457, -0.0040428717620670795, -0.03378880396485329, -0.027926268056035042, 0.012566820718348026, 0.023885872215032578, -0.008293705061078072, 0.03291734680533409, 0.03295695781707764, -0.002319761784747243, -0.01693401299417019, -0.0072390432469546795, 0.012685655616223812, -0.011626042425632477, -0.00028935130103491247, 0.028461026027798653, -0.03248161822557449, -0.024678105488419533, 0.0016537896590307355, 0.029827630147337914, -0.017904501408338547, 0.008293705061078072, 0.00177757628262043, -0.004166658502072096, -0.008977008052170277, -1.573444387759082e-05, -0.008877978660166264, -0.004075056407600641, -0.009962349198758602, -0.005402049515396357, -0.017498480156064034, -0.022598490118980408, 0.006862731650471687, 0.011933033354580402, -0.001892697880975902, 0.020895186811685562, 0.01672605238854885, -0.019726639613509178, -0.011596333235502243, -0.012636140920221806, 0.009120600298047066, -0.030005883425474167, 0.002824811264872551, 0.00783321913331747, 0.010764487087726593, 0.01595362275838852, 0.0001830495020840317, 0.021667614579200745, -0.0069221495650708675, -0.006016031373292208, -0.016527993604540825, 0.007610403001308441, 0.0036566576454788446, -0.0025623836554586887, -0.01762721873819828, -0.006758750881999731, -0.024381019175052643, 0.032263752073049545, -0.021014021709561348, -0.017567800357937813, 0.021964702755212784, -0.014656338840723038, -0.009214677847921848, -0.0029263163451105356, -0.008397686295211315, 0.013913619332015514, -0.010061378590762615, -0.010893224738538265, -0.004181513097137213, -0.006060594227164984, 0.014745465479791164, 0.03168938308954239, -0.01240837387740612, 0.0036368516739457846, -0.0015621875645592809, 0.005644671153277159, -0.007773801684379578, 0.011883518658578396, -0.011665653437376022, -0.010823904536664486, -0.002368038520216942, -0.01988508738577366, -0.009155260398983955, -0.013487793505191803, -0.005174282006919384, 0.010021766647696495, -0.01345808431506157, -0.009165163151919842, 0.005813021212816238, -0.010655554942786694, 0.0042359791696071625, 0.028262967243790627, -0.01073477789759636, -0.00711030513048172, 0.013557113707065582, -0.015408962033689022, -0.007387587334960699, 0.017201391980051994, -0.014577115885913372, 0.00271340343169868, 0.010942739434540272, 0.03713599592447281, 0.011962741613388062, -0.0021439846605062485, 0.006199235562235117, -0.0039215609431266785, 0.02245984971523285, -0.018874987959861755, -0.009962349198758602, -0.007065741810947657, 0.005273311398923397, 0.03466026112437248, -0.011190312914550304, -0.0060358368791639805, -0.010972448624670506, -0.011843906715512276, -0.020677322521805763, 0.003466026159003377, -0.004696465563029051, -0.015983331948518753, 0.017647024244070053, 0.00493413582444191, 0.024400824680924416, -0.012576723471283913, 0.002728257793933153, -0.02021188475191593, 0.017191490158438683, 0.030501030385494232, 0.001456968835555017, 0.015418864786624908, 0.005713991820812225, 0.012992646545171738, -0.0066300127655267715, -0.01415129005908966, 0.00242993189021945, 0.018409550189971924, 0.016201196238398552, 0.008759142830967903, 0.02404431812465191, -0.026718109846115112, -0.00444641662761569, 0.010635748505592346, 0.00783321913331747, -0.013517501763999462, 0.007352926768362522, 0.003391754115000367, 0.005476321559399366, 0.0025549563579261303, 0.01824120059609413, 0.011408177204430103, -0.011655750684440136, 0.0008089457405731082, 0.019023532047867775, -0.013002549298107624, 0.0030377244111150503, 0.0036046672612428665, -0.001167308073490858, 0.0216280035674572, 0.0027109275106340647, -0.00859079323709011, 0.025985293090343475, -0.0052683595567941666, -0.005020786542445421, 0.02776782028377056, 0.002582189394161105, -0.013903716579079628, -0.01928100921213627, -0.005114864557981491, -0.004763310309499502, -0.013982939533889294, -0.006714188028126955, -0.0038002501241862774, 0.03329365700483322, 0.002198450965806842, -0.0016946392133831978, -0.012051868252456188, 0.01156662404537201, -0.0074767135083675385, -0.002960976678878069, 0.005253505427390337, 0.021647809073328972, 0.017963917925953865, -0.025925876572728157, 0.013230317272245884, 0.024856358766555786, -0.003485832130536437, 0.0036418032832443714, -0.03194686025381088, 0.0230738315731287, 0.0006857780390419066, -0.027431121096014977, -0.00809069536626339, 0.007546034175902605, -0.01845906488597393, 0.013378861360251904, -0.03943347558379173, 0.028758114203810692, 0.0014866776764392853, -0.010071281343698502, 0.016221001744270325, 0.0012799539836123586, 0.016359644010663033, 0.025925876572728157, 0.01695382036268711, 0.009784096851944923, -0.014398862607777119, -0.01604275032877922, 0.05002961307764053, 0.01747867465019226, -0.01490391232073307, -0.015547603368759155, 0.008749240078032017, -0.01625071093440056, -0.00493413582444191, 0.023054026067256927, 0.0034066084772348404, -0.0014272601110860705, 0.022479655221104622, -0.005832826718688011, 0.0008547467878088355, 0.001052186475135386, -0.010932836681604385, 0.01656760461628437, 0.014686048030853271, 0.012834199704229832, 0.0006653532618656754, -0.008635357022285461, 0.023549173027276993, 0.0145573103800416, 0.03903735801577568, 0.04563270881772041, 0.0007631446933373809, 0.015676341950893402, 0.027510344982147217, -0.021370526403188705, 0.008952250704169273, -0.00476578576490283, -0.014022551476955414, -0.0025797137059271336, 0.019835572689771652, -0.005020786542445421, 0.0026911217719316483, 0.021429944783449173, -0.016290323808789253, -0.014547406695783138, 0.01055652555078268, 0.00548127293586731, -0.06143778935074806, 0.0023952715564519167, -0.030520835891366005, 0.007595548871904612, -0.005347583442926407, -0.006124963518232107, -0.008234287612140179, -0.0140324542298913, 0.001199492602609098, -0.023113442584872246, 0.019498873502016068, -0.021647809073328972, -0.01982566900551319, -0.027946073561906815, -0.025906069204211235, 0.022261790931224823, -0.011913226917386055, 0.007065741810947657, -0.012745073065161705, 0.004379571415483952, -0.00855118129402399, 0.0026539857499301434, 0.003916609566658735, -0.02994646690785885, 0.008546230383217335, -0.0012700509978458285, -0.003686366369947791, 0.01861751265823841, -0.015210903249680996, -0.007669820915907621, -0.02103382721543312, -0.012160800397396088, 0.010066330432891846, 0.002056096214801073, 0.0317884124815464, -0.006342827808111906, 4.723234451375902e-05, -0.008006520569324493, -0.02578723430633545, 0.004295396618545055, -0.006318070460110903, 0.013299637474119663, -0.010635748505592346, 0.01680527627468109, 0.005337680224329233, -0.012289538979530334, 0.00354524957947433, 0.004760834388434887, 0.024915777146816254, -0.013210510835051537, 0.0044934554025530815, -0.02798568643629551, -0.02269751951098442, -0.005788263864815235, 0.021667614579200745, -0.028401609510183334, 0.021053632721304893, -0.025925876572728157, -0.0006173859001137316, -0.0070459358394145966, 0.01733013056218624, 0.020142562687397003, -0.00135670171584934, -0.010843710042536259, 0.006689430680125952, -0.02503461204469204, -0.007011275738477707, 0.014200804755091667, 0.01672605238854885, 0.017280615866184235, -0.03214491531252861, -0.009254289790987968, -0.007357878610491753, 0.012081576511263847, -0.01440876629203558, -0.012844102457165718, 0.01305206399410963, 0.0015064835315570235, -0.0004960750229656696, 0.0017911928007379174, 0.019994020462036133, -0.0010911793215200305, 0.009160212241113186, -0.016468575224280357, -0.02036042883992195, -0.008694774471223354, -0.002245489740744233, 0.01625071093440056, 0.013666045852005482, -0.026361605152487755, 0.02949093095958233, 0.01906314305961132, -0.02487616427242756, -0.0009587276144884527, 0.0017070178873836994, -0.0032952006440609694, -0.0022751986980438232, -0.010160407982766628, 0.003550201188772917, -0.004032969009131193, -0.016518089920282364, -0.019855378195643425, -0.0001179067839984782, 0.025173252448439598, 0.004929184447973967, -0.013774977996945381, -0.037036966532468796, 0.0032902490347623825, 0.0010738491546362638, 0.014190901070833206, 0.02707461640238762, -0.007219237275421619, -0.01612197235226631, 0.02315305545926094, -0.022341014817357063, 0.030164331197738647, -0.00157827977091074, -0.008318462409079075, -0.019944505766034126, 0.01793421059846878, 0.0023160481359809637, -0.013675948604941368, -0.006570595316588879, -0.01422061026096344, 0.027569763362407684, -0.018924502655863762, -0.03361055254936218, -0.000505049538332969, -0.0036690363194793463, -0.00011651418026303872, 0.004072580952197313, 0.01305206399410963, 0.016884498298168182, 0.023549173027276993, 0.01538915652781725, -0.0018109986558556557, -0.027193451300263405, -0.0014953427016735077, -0.020063340663909912, 0.009427591226994991, 0.004738552961498499, 0.0006548313540406525, 0.022063732147216797, -9.17568540899083e-05, -0.0023011937737464905, -0.01440876629203558, 0.007501470856368542, -0.005100009962916374, 0.017805472016334534, -0.001156786223873496, 0.007570791523903608, -0.0074172960594296455, 0.025212865322828293, 0.03220433369278908, -0.004646950867027044, -0.008026326075196266, -0.013180802576243877, 0.009670212864875793, 0.0048078736290335655, 0.0026440827641636133, -0.02420276589691639, -0.023430336266756058, -0.00354524957947433, 0.021608198061585426, -0.02852044440805912, 0.0004775070119649172, -0.0037086480297148228, 0.017647024244070053, -0.03487812727689743, -0.02148936316370964, -0.004864815156906843, -0.005273311398923397, 0.014933621510863304, 0.007357878610491753, 0.023331306874752045, -0.010160407982766628, -0.03273909166455269, 0.006808265578001738, -0.017805472016334534, 0.007021178957074881, 0.018270909786224365, 0.012081576511263847, -0.0031243751291185617, -0.0028470929246395826, -0.002646558452397585, -0.006100206170231104, -0.008655162528157234, 0.0372152179479599, -0.0022219703532755375, -0.004815300460904837, 0.011120992712676525, 0.025232670828700066, 0.006427002605050802, -0.005411952268332243, 0.025311894714832306, 0.0011982547584921122, 0.003401657100766897, 0.01990489289164543, -0.013913619332015514, 0.004713795613497496, 0.01831052079796791, -0.009714776650071144, 0.01062584575265646, -0.016825081780552864, 0.004627144895493984, 0.006288361735641956, -0.018350133672356606, 0.009274095296859741, 0.012457888573408127, -0.012339052744209766, -0.004716271534562111, -0.00310209346935153, 0.010130699723958969, -0.004250833299010992, -0.014507795684039593, -0.010160407982766628, 0.011408177204430103, 0.016765663400292397, -0.020251495763659477, -0.0038052015006542206, -0.004874718375504017, 0.007610403001308441, 0.005515933036804199, -0.015914011746644974, 0.037017159163951874, 0.004503358155488968, 0.02065751515328884, 0.004025541711598635, 0.013111481443047523, 0.02368781343102455, 0.014379057101905346, 0.010804099030792713, 0.02715383842587471, 0.01914236694574356, 0.016290323808789253, 0.008670017123222351, 0.0036467546597123146, 0.0025623836554586887, -0.008001568727195263, 0.009863319806754589, -0.02707461640238762, -0.018508579581975937, -0.014448377303779125, 0.015636729076504707, -0.002493063220754266, 0.012982743792235851, -0.03303617984056473, 0.008764094673097134, -0.017597509548068047, 0.0006207900587469339, -0.018330326303839684, -0.009229532442986965, 0.0004812206025235355, 0.001293570501729846, 0.0017713869456201792, -0.007744092959910631, 0.010913031175732613, 0.008897784166038036, 0.02753015048801899, 0.02669830434024334, -0.01502274814993143, 0.003654181957244873, -0.002223208313807845, 0.007442053407430649, -0.01778566651046276, -0.020221786573529243, 0.004570202901959419, -0.04666261374950409, -0.003154083853587508, 8.732761671126354e-06, 0.0024447862524539232, -0.003297676332294941, 0.014398862607777119, -0.04242416098713875, -0.021984508261084557, -0.01428993046283722, 0.014804882928729057, -0.016696343198418617, 0.0018159501487389207, 0.0013430851977318525, -0.034382980316877365, -0.004770737607032061, 0.007600500248372555, -0.004263211973011494, 0.013299637474119663, 0.013210510835051537, -0.03170918673276901, 0.02798568643629551, 0.0033521424047648907, 0.009130503050982952, -0.0007792369578965008, 0.0025376263074576855, 0.0026218013372272253, -0.007100402377545834, -0.06238847225904465, 0.011477498337626457, 0.01498313620686531, -0.039453279227018356, -0.013477890752255917, 0.014309736900031567, 0.020815962925553322, 0.0011301720514893532, -0.009576135315001011, 0.008580890484154224, -0.0016773090464994311, 0.002408888190984726, -0.022103343158960342, -0.0016599789960309863, 0.004005735740065575, -0.0018419453408569098, -0.006610207259654999, -0.004958893172442913, 0.05632787570357323, -0.010110893286764622, 0.0023965095169842243, 0.019558290019631386, -0.017191490158438683, -0.0061348662711679935, 0.02232120931148529, 0.004431562032550573, -0.00012285825505387038, -0.00017453917826060206, -0.026064516976475716, -0.0028916560113430023, 0.007194479927420616, 0.016131876036524773, -0.0016550275031477213, 0.0022281596902757883, 0.001740440260618925, 0.009541475214064121, -0.01860760897397995, -0.008115452714264393, -0.011418080888688564, 0.007739141117781401, -0.011180410161614418, 0.024856358766555786, -0.020974410697817802, -0.00157827977091074, -0.023430336266756058, -0.00703603308647871, 0.004669232293963432, -0.004790543112903833, -0.000831227342132479, -0.003287773346528411, -0.00827885139733553, -0.0028000539168715477, -0.0025846653152257204, 0.01815207488834858, 0.037175606936216354, -0.010724875144660473, 0.0004886477836407721, -0.0037086480297148228, 0.012051868252456188, 0.0023222374729812145, -0.02111305110156536, 0.010318854823708534, 0.01740935444831848, 0.015101971104741096, 0.007432150188833475, -0.01920178532600403, 0.005872438661754131, -0.0073380726389586926, 0.016914207488298416, -0.022974802181124687, 0.0010379510931670666, 0.021964702755212784, 0.0034585988614708185, -0.006937003694474697, 0.01753809303045273, 0.004305299837142229, 0.004322629887610674, -0.010952643118798733, 0.004127047024667263, 0.0071598198264837265, -0.004530591424554586, -0.009046328254044056, -0.0018431831849738955, -0.009244387038052082, 0.007971860468387604, -0.001367842429317534, 0.01852838508784771, 0.01566643826663494, -0.010338661260902882, -0.002797578228637576, -0.011239827610552311, -0.019122561439871788, -0.003376899752765894, 0.001898887217976153, -0.0388789102435112, 0.0013368958607316017, 0.0007526228437200189, 0.012814394198358059, -0.012735170312225819, 0.012140994891524315, 0.015250515192747116, 0.0017132072243839502, 0.010992254130542278, -0.018954211845993996, -0.0105961374938488, 0.037710364907979965, -0.011556721292436123, -0.006100206170231104, -0.0035947642754763365, -0.009234484285116196, 0.008442249149084091, 0.006951858289539814, 0.0032209286000579596, 0.017122169956564903, 0.00014049785386305302, 0.016131876036524773, 0.002345757093280554, -0.009120600298047066, -0.02964937873184681, 0.007333121262490749, 0.0006149101536720991, 0.007590597495436668, 0.0024645922239869833, 0.007664869539439678, -0.018508579581975937, 0.022063732147216797, -0.01814217120409012, -0.013507599011063576, 0.011517110280692577, 0.008655162528157234, -0.04289950057864189, 0.01822139509022236, 0.006233895663172007, 0.025628788396716118, -0.005486224312335253, 0.0061150602996349335, -7.373042171820998e-05, 0.021845867857336998, -0.034006666392087936, -0.003508113557472825, -0.0043944260105490685, 0.016379449516534805, 0.003134277882054448, -0.01874624937772751, -0.007031081710010767, -0.0073380726389586926, -0.006748848129063845, -0.010714972391724586, 0.010982351377606392, 0.010992254130542278, 0.007333121262490749, 0.009105745702981949, 0.021429944783449173, 0.020934797823429108, 0.00633292505517602, 0.0006901105516590178, 0.017270714044570923, 0.009387979283928871, 0.023271890357136726, -0.0367794893682003, 0.003985930234193802, -0.006625061389058828, -0.016735954210162163, 0.01657750830054283, 0.006644867360591888, -0.01538915652781725, -0.012131091207265854, -0.007506422232836485, 0.0014124056324362755, -0.0031243751291185617, -0.008689822629094124, -0.006872634869068861, 0.0001317554124398157, -0.021370526403188705, 0.004127047024667263, -0.011853809468448162, -0.009694970212876797, -0.0022492033895105124, -0.010036621242761612, -0.007704481016844511, -0.0030971418600529432, 0.00030018261168152094, -0.008783900178968906, -0.0012595291482284665, 0.015250515192747116, 0.015290127135813236, -0.010645652189850807, 0.004815300460904837, -0.021429944783449173, -0.01891460083425045, -0.018627414479851723, -0.01808275282382965, -0.0070607904344797134, 0.019914796575903893, -0.01603284664452076, 0.004849961027503014, -0.03048122487962246, 0.015082165598869324, -0.013170899823307991, 0.006956809666007757, 0.0060704974457621574, 0.015300029888749123, 0.009897980839014053, 0.0023742278572171926, 0.005134670063853264, 0.013745269738137722, -0.011784489266574383, 0.0077539957128465176, 0.039908815175294876, 0.005530787631869316, 0.012933229096233845, 0.02444043569266796, -0.0004122095415368676, 0.010259437374770641, -0.006892440840601921, -0.004379571415483952, 0.006496323272585869, -0.02111305110156536, 0.012586626224219799, 0.0008510331972502172, -0.01073477789759636, -0.00444641662761569, -0.008546230383217335, 0.010724875144660473, -0.00701622711494565, 0.005218845326453447, 0.011942936107516289, 0.01243808213621378, 0.01740935444831848, 0.009561280719935894, 0.014804882928729057, 0.030916953459382057, -0.0024336455389857292, -0.018855182453989983, 0.010338661260902882, 0.008065938018262386, -0.015983331948518753, -0.019231494516134262, 0.003012967063114047, -0.0016129399882629514, -0.01718158647418022, -0.007808461785316467, -0.011021963320672512, -0.004562776070088148, -0.023192666471004486, 0.00716477120295167, 0.010645652189850807, -0.010427786968648434, 0.02148936316370964, -0.01309167593717575, -0.010081185027956963, -0.01823129691183567, -0.010388175956904888, 0.014794980175793171, 0.0067637027241289616, -0.004916805773973465, 0.0054070008918643, -0.008645259775221348, 0.017122169956564903, -0.0108140017837286, -0.011596333235502243, -0.0023494705092161894, 0.010081185027956963, -0.014359251596033573, 0.00870467722415924, 0.01967712491750717, 0.013982939533889294, -0.012566820718348026, 0.016112070530653, -0.014745465479791164, -0.024222571402788162, 0.05438690260052681, 0.005882341414690018, 0.014250319451093674, 0.001640173140913248, -0.013557113707065582, 0.015498088672757149, -0.005000980570912361, -0.01989499107003212, 0.005600107833743095, -0.006773605477064848, 0.029788019135594368, -0.022479655221104622, 0.0077341897413134575, -0.029035396873950958, 0.004119619727134705, -0.011675557121634483, 0.023885872215032578, -0.01989499107003212, -0.010006912983953953], "6f062ef9-2a08-4252-bfea-e3a6fec7ea21": [0.01772627793252468, -0.016163192689418793, -0.0055302586406469345, 0.020920405164361, -0.012980392202734947, -0.00784939993172884, 0.012300790287554264, 0.020274784415960312, -0.022902576252818108, 0.025598330423235893, -0.02503199502825737, -0.01892690733075142, 0.05251055583357811, 0.008455378003418446, 0.01710330881178379, 0.043290626257658005, -0.002987415762618184, 0.027659788727760315, 0.027048148214817047, -0.02444300800561905, 0.024556273594498634, -0.015540225431323051, -0.01902884803712368, 0.015381651930510998, 0.0036500273272395134, -0.006020138505846262, -0.03162413090467453, 0.021656639873981476, -0.025643637403845787, -0.025711597874760628, 0.0014427377609536052, -0.005773782730102539, -0.010403568856418133, 0.017182596027851105, 0.03434253856539726, 0.011700475588440895, -0.03644930571317673, -0.019379975274205208, -0.0370156392455101, -0.004128580447286367, -0.022166341543197632, 0.02666303887963295, 0.0056265355087816715, -0.025190569460392, -0.042543064802885056, 0.0021888837218284607, -0.00801363680511713, 0.00196234998293221, 0.013875201344490051, 0.00966167077422142, 0.02620997279882431, -0.018190672621130943, 0.0299930889159441, 0.01870037242770195, 0.04988276585936546, -0.020444683730602264, 0.001672103302553296, -0.01284447219222784, 0.005329209845513105, -0.042407143861055374, 0.029743900522589684, -0.008432724513113499, 0.013342846184968948, -0.0033187216613441706, 0.0533260777592659, 0.0299930889159441, 0.0031091778073459864, 0.0073113813996315, -0.02598343789577484, 0.011496595107018948, 0.035497862845659256, 0.013410806655883789, -0.020739179104566574, 0.029789207503199577, 0.04598638042807579, -0.009769273921847343, -0.005739802494645119, 0.025122608989477158, -0.006093761883676052, -0.02799958921968937, 0.014056428335607052, -0.025122608989477158, 0.04252041131258011, -0.002554169623181224, 0.06723526120185852, 0.03687971830368042, 0.027523867785930634, -0.03622277081012726, 0.0017485584830865264, -0.032235775142908096, 0.017284536734223366, 0.0006335870129987597, -0.027433255687355995, 0.005736970808357, -0.03511275351047516, 0.002398427575826645, 0.0007638440001755953, 0.0051847947761416435, 0.012787838466465473, -0.02376340515911579, 0.026912227272987366, -0.03644930571317673, 0.04315470904111862, 0.026912227272987366, 0.034546419978141785, -0.005179131403565407, -0.006280652247369289, 0.003179969498887658, -0.006626116577535868, 0.036109503358602524, -0.02154337428510189, -0.00633162260055542, 0.010448875837028027, 0.0032366029918193817, -0.02673099935054779, -0.024171166121959686, -0.0403456874191761, 0.004159728530794382, -0.008200527168810368, -0.037514012306928635, 0.02353687211871147, -0.01954987458884716, 0.0010434717405587435, -0.018485166132450104, -0.014928583987057209, 0.0011149714700877666, -0.02029743790626526, 0.03348170965909958, 0.02076183259487152, 0.014067755080759525, -0.029653286561369896, -0.022075727581977844, -0.010539489798247814, 0.01694473624229431, 0.01765831746160984, -0.01720524951815605, -0.03287006914615631, 0.04643945023417473, -0.011609862558543682, 0.0046750931069254875, -0.043947577476501465, -0.0024692195001989603, -0.005603882484138012, 7.729584467597306e-05, 0.003737809369340539, -0.043426547199487686, -0.02166796661913395, 0.03264353424310684, -0.0017697961302474141, -0.014826643280684948, -0.05640694126486778, 0.011060517281293869, -0.042769599705934525, -0.00720377778634429, 0.03044615499675274, -0.017420455813407898, 0.019923657178878784, 0.02933613955974579, 0.026345891878008842, 0.07167532294988632, 0.02251746878027916, -0.015676146373152733, -0.010075095109641552, 0.024488314986228943, 0.07525455951690674, 0.007821083068847656, 0.02709345333278179, -0.010188361629843712, -0.01287845242768526, 0.02144143357872963, 0.005080022849142551, 0.003797274548560381, 0.019300688058137894, 0.0007560568628832698, -0.01543828472495079, -0.020478663966059685, 0.011513585224747658, 0.03690237179398537, 0.01112847775220871, 0.011207764968276024, -0.012232830747961998, -0.006711066700518131, -0.026096705347299576, -0.001575826434418559, 0.010403568856418133, 0.029132260009646416, 0.02131683938205242, 0.021985115483403206, -0.003647195640951395, -0.0008176458068192005, 0.0076568457297980785, -0.008132566697895527, -0.009236919693648815, -0.015687473118305206, -0.020150190219283104, -0.016072580590844154, 0.01362601388245821, 0.016752181574702263, -0.007724805735051632, 0.024261780083179474, 0.005402833689004183, -0.05400568246841431, 0.006025801878422499, 0.04177284985780716, -0.022698696702718735, 0.025213222950696945, -0.013388153165578842, 0.00438059912994504, 0.005275408271700144, -0.03690237179398537, 0.028112856671214104, -0.028158163651823997, -0.02333299070596695, -0.023967286571860313, -0.03391212597489357, -0.007373678497970104, -0.007447301875799894, 0.04621291533112526, -0.005612377543002367, -0.03021962195634842, -0.02933613955974579, 0.03909974917769432, 0.002987415762618184, -0.04005119204521179, -0.03518071398139, 0.00399832334369421, -0.016004620119929314, -0.02017284370958805, -0.009763610549271107, -0.0069602541625499725, -0.0011432882165536284, -0.0019382806494832039, 0.009508760645985603, -0.012300790287554264, 0.029200218617916107, 0.05237463861703873, 0.032915376126766205, 0.006948927417397499, -0.008104249835014343, 0.024465661495923996, 0.0058728912845253944, 0.015528898686170578, 0.02232491597533226, 0.007662509102374315, 0.008619614876806736, -0.00036351612652651966, 0.014056428335607052, 0.030785957351326942, -0.011060517281293869, -0.007351025007665157, -0.03968873992562294, -0.017737604677677155, 0.0033781868405640125, -0.004026640206575394, -0.03998323157429695, 0.031669437885284424, 0.03576970100402832, -0.00042545897304080427, 0.004604301415383816, 0.010901943780481815, 0.02010488323867321, 0.026934880763292313, -0.003933195024728775, 0.06931937485933304, 0.015302364714443684, 0.0037802844308316708, 0.027523867785930634, -0.03622277081012726, -0.013648667372763157, 0.004598638042807579, 0.030038394033908844, -0.005717149470001459, -0.043517161160707474, 0.02412586100399494, 0.001878815470263362, 0.007764449343085289, 0.026232626289129257, 0.008783851750195026, 0.044400643557310104, -0.020082229748368263, -0.06877569109201431, -0.020829791203141212, 0.020195497199892998, -0.0018108553485944867, 0.000594651501160115, 0.014203675091266632, -0.017930157482624054, -0.02496403641998768, -0.03919036313891411, -0.012380077503621578, 0.01909680850803852, 0.014758683741092682, -0.010918933898210526, 0.017341170459985733, -0.022755330428481102, 0.010341272689402103, -0.021815214306116104, 0.008999058976769447, -0.0005008523003198206, 0.052012182772159576, -0.006014475133270025, -0.005751129239797592, 0.011904356069862843, 0.009616363793611526, 0.013852547854185104, -0.021464087069034576, 0.04317736253142357, 0.06714464724063873, 0.004343787673860788, 0.03538459539413452, 0.03234903886914253, -0.03509010002017021, -0.0414557047188282, -0.018813639879226685, -0.004581647925078869, 0.0503358319401741, -0.0017443110700696707, -0.02872449904680252, 0.0007348193321377039, -0.027274681255221367, -0.002140745287761092, -0.011893029324710369, -0.05903473496437073, 0.020014269277453423, 0.042316533625125885, -0.034319885075092316, 0.031669437885284424, 0.01380724087357521, 0.0031969596166163683, -0.014192348346114159, -0.021124286577105522, -0.014883277006447315, -0.0037123241927474737, 0.021135613322257996, -0.019980289041996002, -0.02784101665019989, -0.023049823939800262, -0.07149409502744675, 0.02741060219705105, 0.0003132538986392319, -0.004369272384792566, -0.013161619193851948, 0.060982923954725266, -0.006042791530489922, 0.0041059269569814205, -0.012368750758469105, -0.024239126592874527, 0.0018887263722717762, -0.02039937674999237, 0.014566130004823208, 0.0006994234281592071, 0.020999692380428314, 0.03225842863321304, 0.009588046930730343, -0.01210823655128479, -0.027274681255221367, -0.04256571829319, 0.03094452992081642, 0.015936659649014473, -0.007226431276649237, -0.0070168874226510525, 0.0035792356356978416, -0.016854122281074524, 0.013965814374387264, -0.012833145447075367, 0.0031997913029044867, 0.02140745334327221, -0.02784101665019989, -0.008257160894572735, 0.012017623521387577, 0.009973154403269291, -0.021554701030254364, 0.01266324520111084, -0.003870897926390171, -0.0009096752037294209, 0.019108133390545845, 0.007107500918209553, -0.0026023080572485924, -0.021520720794796944, 0.005040379241108894, -0.009089672937989235, -0.023876672610640526, -0.028747152537107468, 0.04906724393367767, -0.009956165216863155, -0.0020699535962194204, 0.02630058489739895, -0.03939424455165863, -0.029041646048426628, -0.03715156018733978, 0.02591547742486, 0.0038567394949495792, -0.05151380971074104, -0.011734455823898315, -0.07058796286582947, -0.016344420611858368, 0.0010647092713043094, -0.036018889397382736, 0.029970435425639153, -0.014905930496752262, -0.028701845556497574, -0.030672689899802208, -8.729519322514534e-05, 0.0034603052772581577, 0.03814831003546715, -0.04301878809928894, 0.025666290894150734, 0.04870478808879852, 0.008529000915586948, 0.00961070042103529, 0.0020218149293214083, 0.016627587378025055, -0.00216198293492198, 0.050607673823833466, 0.03796708211302757, 0.018315264955163002, -0.024420354515314102, 0.023310337215662003, 0.012561304494738579, 0.004052124917507172, 0.01762433722615242, 0.02509995549917221, 0.033051297068595886, 0.02457892708480358, 0.006982907187193632, 0.0004973126924596727, 0.018269957974553108, -0.017375150695443153, -0.016276460140943527, 0.00553875369951129, 0.011859049089252949, 0.02843000367283821, 0.0012034613173455, 0.01585737243294716, -0.003055376000702381, 0.002525852993130684, -0.04265633225440979, 0.008268487639725208, 0.013116313144564629, -0.026277931407094002, -0.03803504258394241, -0.029721247032284737, -0.00869890209287405, 0.004946934059262276, -0.03472764790058136, -0.03318721428513527, -0.018881600350141525, 0.013909181579947472, 0.03137494623661041, -0.032983336597681046, 0.004530678037554026, -0.0035933940671384335, -0.04093467444181442, 0.007968329824507236, 0.0433359332382679, 0.009168959222733974, 0.02355952560901642, 0.013014372438192368, 0.039077095687389374, -0.012799165211617947, -0.00729439128190279, -0.005773782730102539, 0.037785854190588, 0.027886323630809784, -0.006818670313805342, 0.03352701663970947, 0.0033838502131402493, 0.0016211331821978092, -0.005467962007969618, -0.0054962788708508015, 0.0030865243170410395, 0.0015560047468170524, -0.024465661495923996, 0.002644783351570368, 0.030536768957972527, -0.010675409808754921, -0.010092085227370262, 0.013150292448699474, 0.007917359471321106, 0.004811013583093882, 0.020535297691822052, -0.017862197011709213, 0.038329534232616425, -0.019164767116308212, -0.028180817142128944, 0.022041747346520424, -0.032915376126766205, 0.010652756318449974, 0.028022242709994316, -0.03658522292971611, -0.012085583060979843, -0.022868597880005836, 0.017952810972929, 0.014702050015330315, -0.017352497205138206, -0.008274151012301445, -0.01351274736225605, -0.000575537676922977, -0.008421397767961025, -0.014203675091266632, 0.01429428905248642, -0.016197172924876213, -0.010562143288552761, 0.008155220188200474, -0.02532649040222168, 0.04442329704761505, -0.013841221109032631, 0.06338418275117874, -0.00018122712208423764, -0.016559628769755363, -0.034772954881191254, 0.029041646048426628, -0.042316533625125885, 0.030332889407873154, 0.004720400087535381, 0.040912020951509476, 0.000776586530264467, -0.012436711229383945, 0.039439551532268524, -0.0236954465508461, 0.0014823811361566186, -0.03456907346844673, -0.021452760323882103, -0.007033877540379763, -0.004219193942844868, -0.011915682815015316, -0.014792663976550102, -0.022302262485027313, 0.0031686429865658283, -0.03243965283036232, 0.010324282571673393, 0.03266618773341179, -0.02131683938205242, 0.012436711229383945, 0.01703534834086895, -0.011168121360242367, -0.00024263904197141528, -0.005366021767258644, -0.004745885264128447, 0.00021414532966446131, -0.04834233224391937, 0.022857271134853363, -0.004270163830369711, 0.017465762794017792, 0.004389094188809395, 0.022698696702718735, -0.009050029329955578, 0.00791169609874487, -0.029857167974114418, 0.018779659643769264, -0.021090306341648102, 0.0173978041857481, -0.04079875349998474, -0.009044365957379341, -0.019991615787148476, -0.03316456079483032, 0.02131683938205242, -0.009956165216863155, -0.026821613311767578, -0.03287006914615631, -0.027591828256845474, 0.03959812596440315, -0.0023007348645478487, 0.0028047729283571243, -0.01595931313931942, 0.03339109569787979, -0.025281183421611786, 0.005844574421644211, -0.004100263584405184, 0.009718304499983788, 0.019787736237049103, 0.03576970100402832, 0.031963933259248734, -0.0012232830049470067, -0.007039540912955999, 0.052102796733379364, -0.0035622455179691315, 0.01262926496565342, -0.02910960651934147, -0.010924597270786762, 0.04392492398619652, 0.0017244892660528421, 0.002534348051995039, 0.024850768968462944, -0.0036585223861038685, 0.002919455524533987, -0.007611538749188185, 0.025349143892526627, 0.004012481775134802, 0.00408893683925271, 0.030174314975738525, -0.011972316540777683, -0.031805358827114105, 0.008574307896196842, -0.02385401912033558, 0.015053177252411842, 0.029879821464419365, 0.008562981151044369, 0.03497683256864548, 0.027591828256845474, 0.056769393384456635, -0.028112856671214104, 0.01292375847697258, -0.008245834149420261, -0.045148205012083054, 0.03065003640949726, -0.005980494897812605, 0.024918729439377785, 0.02829408459365368, 0.02548506297171116, -0.0035084437113255262, -0.007492608856409788, 0.004247510805726051, -0.02355952560901642, 0.001745726796798408, -0.011587209068238735, -0.0008650763193145394, 0.02790897712111473, 0.014532149769365788, 0.0366758368909359, 0.020093556493520737, -0.03531663492321968, 0.016299113631248474, -0.0003557290183380246, -0.014928583987057209, 0.022177668288350105, -0.015381651930510998, 0.007067857775837183, -0.02509995549917221, 0.009129315614700317, 0.0006555324653163552, 0.006054118275642395, -0.0036443641874939203, 0.013172945939004421, 0.018677720800042152, -0.041886117309331894, 0.014803989790380001, 0.026459159329533577, 0.0033923450391739607, 0.003253593109548092, 0.019278034567832947, -9.441861766390502e-05, -0.00031750142807140946, 0.028996339067816734, -0.007736132480204105, 0.02144143357872963, -0.004199372138828039, -0.013286213390529156, 0.015981966629624367, 0.01802077144384384, 0.003885056357830763, -0.0006158890319056809, -0.010233668610453606, 0.018564453348517418, 0.006144731771200895, -0.0019949141424149275, -0.01369397435337305, 0.014747356995940208, -0.006982907187193632, 0.010681073181331158, 0.023287685588002205, -0.06433562934398651, -0.004241847433149815, -0.018587106838822365, 0.01529103796929121, -0.010188361629843712, 0.014124388806521893, 0.01274253148585558, -0.010369589552283287, 0.012946411967277527, -0.007452965248376131, -0.024714848026633263, -0.0011779762571677566, 0.023491565138101578, -0.0013280549319460988, 0.014520823024213314, -0.012470691464841366, 0.0003794442745856941, -0.004173886962234974, -0.01720524951815605, -0.012391404248774052, -0.029585327953100204, -0.02806754969060421, -0.009367176331579685, -0.03649461269378662, 0.0037491361144930124, -0.006490196101367474, -0.03259822726249695, -0.02725202776491642, -0.01026198547333479, -0.03860137611627579, -0.0063542756251990795, -0.007011224050074816, 0.048840709030628204, -0.014271635562181473, -0.016231153160333633, 0.00027555724955163896, -0.0321904681622982, -0.010698063299059868, -0.026028744876384735, -0.03896383196115494, -0.01658228039741516, -0.022630736231803894, -0.025960784405469894, 0.012425384484231472, 0.01833791844546795, -0.02187184803187847, -0.043947577476501465, 0.022596755996346474, 0.014939910732209682, -0.0017358160112053156, 0.010913270525634289, 0.0033611967228353024, -0.009219929575920105, -0.002970425644889474, 0.031352292746305466, -0.007804092951118946, 0.03470499441027641, 0.011219091713428497, 0.03789912164211273, 0.04229388013482094, 0.013093659654259682, -0.023423604667186737, -0.01637840084731579, -0.020456010475754738, 0.0039785015396773815, 0.004791191779077053, -0.005654852371662855, 0.004893132019788027, -0.014815316535532475, 0.03570174053311348, -0.01680881530046463, 0.008466704748570919, 0.007300054654479027, 0.01661626063287258, -0.0019651816692203283, -0.013580706901848316, 0.004669430200010538, 0.02414851263165474, -0.013286213390529156, 0.003647195640951395, 0.0015432621585205197, 3.2807594834594056e-05, -0.016117887571454048, 0.018915580585598946, -0.027342641726136208, 0.028792457655072212, 0.02314043790102005, -0.030400849878787994, -0.037808507680892944, 0.029562674462795258, 0.0014753020368516445, 0.0025598329957574606, 0.007435975130647421, -0.02598343789577484, 0.017284536734223366, 0.033300481736660004, -0.009933511726558208, -0.015302364714443684, 0.029086953029036522, 0.01262926496565342, 0.028860418125987053, -0.0007298638811334968, -0.013320193625986576, -0.029222872108221054, 0.007458628620952368, 0.016695547848939896, 0.026028744876384735, 0.029789207503199577, 0.03359497711062431, 0.0321904681622982, 0.03302864357829094, 0.008098586462438107, 0.015517571941018105, -0.002137913601472974, 0.009582383558154106, 0.014067755080759525, -0.019368648529052734, -0.02144143357872963, -0.015404305420815945, -0.03137494623661041, -0.01918742060661316, 0.030491461977362633, 0.02688957378268242, -0.01885894685983658, -0.02725202776491642, -0.007781439460813999, -0.03459172695875168, -0.000694467977155, 0.006093761883676052, 0.021294185891747475, -0.011451288126409054, 0.008653595112264156, 0.011643842794001102, 0.0010958577040582895, -0.015460938215255737, -0.025054648518562317, 0.013761933892965317, -0.03733278810977936, 0.003375355154275894, -0.014192348346114159, -0.02679895982146263, 0.02901899255812168, 0.003270583227276802, 0.04573719576001167, -0.036471959203481674, -0.027863670140504837, -0.009372839704155922, -0.024397701025009155, 0.02813551016151905, 0.019753756001591682, -0.012436711229383945, -0.04820641502737999, 0.03533928841352463, -0.019889676943421364, -0.026413852348923683, -0.004785528406500816, 0.021985115483403206, 0.01696738973259926, 0.004709073342382908, -0.018983541056513786, 0.004748716950416565, 0.025371797382831573, 0.013263559900224209, 0.012232830747961998, 0.00238993251696229, 0.032394345849752426, 0.0006788937607780099, -0.025417102500796318, 0.028475310653448105, 0.0021605670917779207, -0.0006272157188504934, -0.0017896178178489208, 0.012198850512504578, -0.004479707684367895, 0.023582179099321365, 0.010703726671636105, -0.019244054332375526, -0.016684221103787422, 0.021520720794796944, 0.002660357393324375, -0.03289272263646126, 0.015268384478986263, -0.015381651930510998, -0.0003102452610619366, 0.008024963550269604, 0.03323252126574516, 0.010250658728182316, -0.0011871792376041412, 0.052465252578258514, 0.005986158270388842, -0.017024021595716476, 0.020048249512910843, -0.023944633081555367, -0.016423707827925682, 0.004502361174672842, -0.007492608856409788, 0.008806505240499973, -0.012017623521387577, -0.0008480862597934902, 0.019821716472506523, 0.0024720511864870787, -0.007334034889936447, 0.004519351292401552, -0.010414895601570606, 0.01606125384569168, 0.01915344037115574, 0.016140541061758995, -0.02532649040222168, -0.02003692276775837, -0.014022448100149632, 0.010545153170824051, 0.032847415655851364, 0.020093556493520737, -0.011564555577933788, -0.0050177257508039474, 0.019855696707963943, -0.013954488560557365, -0.005221606232225895, 0.00245222938247025, 0.0067054033279418945, -0.017601683735847473, -0.005170636344701052, 0.012312117032706738, -0.01344478689134121, 0.012096909806132317, 0.02190582826733589, 0.003972838167101145, -0.014702050015330315, 0.041274476796388626, 0.006218355614691973, 0.010482856072485447, -0.008987732231616974, -0.005714317783713341, -0.0009181702043861151, 0.005765287671238184, 0.015528898686170578, 0.0010887784883379936, 0.005462298635393381, 0.008840485475957394, 0.013603360392153263, 0.005292398389428854, -0.024171166121959686, -0.026187319308519363, 0.018496492877602577, -0.059351880103349686, 0.029653286561369896, 0.003910541534423828, 0.01228946354240179, -0.016015946865081787, 0.01016570907086134, 0.018598433583974838, 0.0023573683574795723, -0.002259675646200776, 0.03311925753951073, 0.004465549252927303, 0.0012572631239891052, -0.01977640949189663, 0.010879290290176868, -0.013172945939004421, 0.02196246199309826, -0.01987835019826889, 0.034251924604177475, -0.012697224505245686, 0.0008084428263828158, -0.015846045687794685, -0.024465661495923996, -0.010590460151433945, 0.008393080905079842, 0.022857271134853363, -0.01582339219748974, 0.0034433151595294476, -0.003270583227276802, -0.017046675086021423, 0.023185744881629944, -0.006779026705771685, -0.042180612683296204, -0.011836396530270576, -0.009327533654868603, -0.008529000915586948, -0.017148615792393684, -0.017669644206762314, 0.03925832360982895, -0.0016381232999265194, -0.024601580575108528, 0.031125757843255997, -0.01107750739902258, 0.033730898052453995, 0.007062194403260946, -0.030310235917568207, -0.002896802267059684, -0.009684324264526367, 0.017386477440595627, -0.005810594651848078, -0.0049299439415335655, -0.02206440083682537, 0.014430209062993526, -0.04643945023417473, -0.0013684063451364636, 0.008636604994535446, 0.0014554803492501378, -0.00026352264103479683, 0.02147541381418705, -0.006116415373980999, 0.009055692702531815, 0.009089672937989235, -0.0029251188971102238, -0.00716413464397192, -0.0029534357599914074, -0.023185744881629944, 0.016401054337620735, -0.008223180659115314, 0.005575565621256828, -0.009803254157304764, 0.040323033928871155, -0.006229682359844446, -0.021498067304491997, -0.021101633086800575, -0.021645313128829002, -0.010754697024822235, -0.0002704248472582549, -0.012210177257657051, 0.013909181579947472, -0.032552920281887054, -0.02614201232790947, -0.0089764054864645, -0.0025754072703421116, 0.01981038972735405, -0.023287685588002205, 0.01266324520111084, 0.015551552176475525, 0.006648770067840815, -0.009151969105005264, 0.015642166137695312, 0.010035451501607895, -0.02525852993130684, 0.010681073181331158, -0.0007780023734085262, -0.03065003640949726, -0.04455921798944473, -0.019142113626003265, -0.01915344037115574, -0.0029619308188557625, 0.04281490668654442, 0.019413955509662628, 0.05686000734567642, 0.017533723264932632, -0.016457688063383102, -0.004932775627821684, -0.00046297864173538983, -0.019855696707963943, -0.026096705347299576, -0.010884953662753105, -0.025303836911916733, 0.010369589552283287, 0.038827911019325256, 0.03873729705810547, -0.0374007448554039, 0.01595931313931942, 0.012776511721313, -0.034387845546007156, -0.0032366029918193817, 0.013399479910731316, -0.005603882484138012, -0.011598535813391209, 0.01918742060661316, -0.004318302497267723, -0.02473750151693821, 0.0004990824963897467, 0.01563083939254284, -0.035815007984638214, -0.017499743029475212, -0.009004722349345684, -0.034614380449056625, 0.021656639873981476, -0.009146305732429028, -0.0030638710595667362, -0.02614201232790947, 0.003737809369340539, -0.014339596033096313, -1.7167021724162623e-05, 0.014736030250787735, 0.008024963550269604, -0.0008756950846873224, 0.018598433583974838, -0.009984481148421764, 0.028158163651823997, -0.005940851289778948, -0.008710227906703949, 0.006071108393371105, -0.002443734323605895, 0.016502995043992996, 0.02688957378268242, -0.02657242678105831, 0.0033696917816996574, -0.015642166137695312, 0.003454641904681921, 0.017273209989070892, 0.0047373902052640915, 0.025213222950696945, 0.0004633326025214046, -0.011247407644987106, 0.02010488323867321, -0.014282962307333946, -0.02324237860739231, 0.007668172474950552, -0.013999794609844685, -0.013410806655883789, 0.01351274736225605, 0.0017074992647394538, -0.004366440698504448, -0.01582339219748974, 0.014543476514518261, -0.009984481148421764, -0.02333299070596695, 0.019164767116308212, 0.010686736553907394, 0.016593607142567635, 0.01762433722615242, -0.01700136810541153, -0.003729314310476184, -0.011134141124784946, -0.013184272684156895, -0.01958385482430458, -0.02494138292968273, -0.008902782574295998, 0.011915682815015316, -0.012448037974536419, 0.002405506791546941, 0.0037264826241880655, -0.015812065452337265, -0.017680970951914787, 0.03094452992081642, 0.021452760323882103, -0.013308866880834103, 0.009089672937989235, 0.017669644206762314, 0.022981863468885422, -0.0006551785045303404, 0.023197071626782417, -0.005535922013223171, 0.006280652247369289, 0.029857167974114418, 0.02933613955974579, 0.010698063299059868, 0.016106560826301575, -0.030831264331936836, 0.004604301415383816, 0.0022172005847096443, -0.029857167974114418, 0.009803254157304764, 0.019176093861460686, 0.02910960651934147, 0.0036217106971889734, 0.01052816305309534, -0.00951442401856184, -0.013716627843677998, -0.05962372198700905, -0.023015843704342842, 0.008721554651856422, 0.010805667378008366, 0.0024125860072672367, -0.022766657173633575, 0.02043335698544979, -0.004850657191127539, 0.008104249835014343, 0.0014384902315214276, 0.0029166238382458687, 0.012821818701922894, -0.005235764663666487, 0.0030497126281261444, -0.01618584617972374, 0.03835218772292137, -0.027433255687355995, 0.012198850512504578, -0.010703726671636105, 0.006592136342078447, 0.0033696917816996574, -0.029426753520965576, 0.02003692276775837, 0.0003412166843190789, -0.017669644206762314, -0.0027368126902729273, 0.01031295582652092, -0.02088642492890358, -0.03708359971642494, -0.020354071632027626, 0.011689148843288422, -0.014316942542791367, -0.003842581296339631, 0.014690723270177841, -0.007883379235863686, 0.0017344001680612564, 0.010324282571673393, -0.010833983309566975, -0.03225842863321304, 0.020354071632027626, -0.021532047539949417, 0.05323546752333641, -0.013580706901848316, -0.02829408459365368, 0.019855696707963943, -0.006722393445670605, -0.0008020715904422104, -0.011870375834405422, 0.010862300172448158, 0.00791169609874487, -0.007022550795227289, 0.0029760890174657106, 0.005201784428209066, 0.004023808520287275, 0.00022087055549491197, 0.0014767178799957037, 0.011677822098135948, -0.018462512642145157, 0.020161516964435577, -0.007407658267766237, 0.02111295983195305, -0.009050029329955578, -0.0018490829970687628, 0.004516519606113434, 0.0014363664668053389, -0.009112326428294182, 0.01143996138125658, -0.0036132156383246183, 0.018904253840446472, -0.011609862558543682, 0.010822656564414501, 0.02161133475601673, -0.00954840425401926, 0.045578621327877045, -0.025711597874760628, -0.01181374303996563, -0.02105632610619068, 0.025417102500796318, -0.009355849586427212, -0.010839646682143211, 0.016502995043992996, 0.014396228827536106, 0.024488314986228943, -0.008325120434165001, -0.01638972759246826, 0.009582383558154106, -0.01181374303996563, -0.02069387212395668, -0.002034557517617941, -0.014532149769365788, -0.006535503081977367, -0.021305512636899948, -0.006909283809363842, -0.03495417907834053, -0.017046675086021423, -0.012912431731820107, 0.0052810716442763805, 0.0062579987570643425, 0.01145695149898529, 0.009990144520998001, -0.017443109303712845, 0.01347876712679863, -0.01833791844546795, 0.0009769274620339274, 0.001909963903017342, 0.025870170444250107, -0.001073912251740694, 0.014713376760482788, 0.0012777927331626415, 0.02255144901573658, 0.0045136879198253155, 0.02026345767080784, -0.00038510761805810034, 0.006037128157913685, -0.0006473914254456758, 0.005901208147406578, 0.017794238403439522, -0.0028514955192804337, -0.029653286561369896, 0.014339596033096313, -0.007690825965255499, -0.012300790287554264, 0.01802077144384384, 0.0011992137879133224, -0.00784939993172884, 0.015404305420815945, -0.018598433583974838, 0.019085481762886047, -0.004012481775134802, -0.03821626678109169, 0.01127572450786829, -0.013988467864692211, 0.038012389093637466, 0.009367176331579685, 0.004935607314109802, 0.014373576268553734, -0.002993079135194421, -0.0019524390809237957, 0.019300688058137894, -0.02428443357348442, 0.03866933658719063, -0.00979192741215229, 0.0026419516652822495, -0.004063451662659645, 0.0008594129467383027, 0.005584060680121183, -0.0015871530631557107, -0.04383431002497673, -0.016570955514907837, -0.01124174427241087, 0.006116415373980999, 0.020977038890123367, -0.03123902529478073, -0.012617938220500946, -0.013671320863068104, -0.018553126603364944, 0.012753858231008053, -0.013218252919614315, 0.022823290899395943, -0.0063202958554029465, -0.011122814379632473, -0.005584060680121183, -0.013206926174461842, 0.01532501820474863, 0.03282476216554642, 0.039802007377147675, -0.03955281898379326, 0.008370427414774895, 0.004949765745550394, 0.013014372438192368, 0.002639119978994131, 0.003106346121057868, -0.009231256321072578, 0.0016013114945963025, -0.004312639124691486, 0.0007178292726166546, 0.007509598508477211, 0.009225592948496342, 0.008415734395384789, -0.011088834144175053, -0.023831365630030632, 0.007435975130647421, 0.001271421555429697, -0.03384416550397873, 0.023718098178505898, 0.006325959227979183, -0.004315470810979605, -0.015087157487869263, 0.013705301098525524, -0.013229579664766788, 0.0007808340014889836, 0.005793604534119368, -0.032235775142908096, 0.012753858231008053, 0.03225842863321304, -0.00948044378310442, 0.009372839704155922, -0.05097012594342232, -0.0014406139962375164, -0.013252233155071735, -0.003641532501205802, -0.018360571935772896, -0.005705822724848986, -0.0032875731121748686, 0.004281490575522184, -0.012051603756844997, 0.014758683741092682, -0.014305615797638893, 0.0355658233165741, -0.008908445946872234, -0.01274253148585558, -0.01850781962275505, -0.012969065457582474, 0.005516100209206343, 0.012504670768976212, -0.014056428335607052, -0.003984164912253618, 0.019051501527428627, -0.01651432178914547, -0.0054651303216814995, 0.015755431726574898, 0.005855901166796684, -0.037128906697034836, -0.02192848175764084, 0.0009493186371400952, -6.247380224522203e-05, 0.010533826425671577, -0.004173886962234974, 0.007118827663362026, 0.00729439128190279, -0.021135613322257996, 0.0016069748671725392, 0.014124388806521893, -0.011349348351359367, 0.011445624753832817, 0.01644636131823063, 0.013365499675273895, 0.011479604989290237, 0.023219725117087364, -0.03214516118168831, 0.006280652247369289, -0.016888102516531944, -0.00018335087224841118, 0.01635574735701084, -0.03597358241677284, -0.023808712139725685, -0.013048352673649788, 0.01013172883540392, 0.006790353450924158, 0.015551552176475525, -0.0333457887172699, 0.043132055550813675, 0.02307247743010521, -0.018745679408311844, 0.016435034573078156, -0.01026198547333479, 0.010816993191838264, -2.322857289982494e-05, -0.016956062987446785, 0.0028486638329923153, 0.004618459846824408, 0.028769804164767265, -0.0017414793837815523, 0.005770951043814421, 0.008817831985652447, 0.016174519434571266, -0.011292714625597, 0.0037179875653237104, -0.001782538602128625, -0.007169798016548157, -0.005736970808357, 0.0012162039056420326, -0.01510981097817421, -0.0043551139533519745, 0.006813006941229105, 0.017828218638896942, 0.022528795525431633, -0.00957672018557787, -0.031193718314170837, -0.017341170459985733, -0.04363042861223221, -0.003958679735660553, 0.0012176197487860918, -0.003434820333495736, -0.0062013654969632626, 0.008557317778468132, -0.013331519439816475, -0.02509995549917221, 0.0030525443144142628, -0.014792663976550102, 0.01606125384569168, 0.01700136810541153, -0.019787736237049103, 0.0381256565451622, -0.00812690332531929, 0.00043997130705974996, -0.014260308817029, 0.028044896200299263, 0.01726188324391842, -0.006682749837636948, 0.0025088628754019737, 0.014679396525025368, 0.004624123219400644, 0.02532649040222168, -0.029222872108221054, -0.017975464463233948, -0.02303849719464779, -0.004502361174672842, -0.0023290517274290323, 0.008268487639725208, -0.006076771765947342, -0.028679192066192627, 0.0020019933581352234, 0.05423221364617348, -0.0021067652851343155, 0.00358206732198596, -0.006688413210213184, -0.011655168607831001, -0.05101543292403221, 0.013104986399412155, -0.003695334307849407, -0.0012877036351710558, -0.005479288753122091, 0.015087157487869263, -0.017839543521404266, 0.03382151201367378, -0.0029675939586013556, 0.019436608999967575, -0.005133824422955513, -0.029607979580760002, 0.004476875998079777, 0.01814536564052105, 0.004813845269382, -0.019164767116308212, -0.03642665222287178, 0.007356688380241394, -0.033572323620319366, 0.02872449904680252, 0.010431885719299316, 0.0059125348925590515, -0.019867023453116417, -0.028475310653448105, -0.012969065457582474, -0.014815316535532475, -0.006784690078347921, 0.020184170454740524, -0.018790986388921738, 0.001140456646680832, -0.005349031649529934, -0.00961070042103529, 0.008591298013925552, 0.012595284730196, 0.014951237477362156, 0.0003144927613902837, 0.03289272263646126, -0.03234903886914253, -0.019006194546818733, -0.019300688058137894, -0.01892690733075142, -0.008245834149420261, -0.013716627843677998, -0.0012990302639082074, -0.017964137718081474, -0.014237655326724052, 0.004309807438403368, -0.014747356995940208, 0.0033527016639709473, -0.026640387251973152, 0.004542004782706499, 0.04770803824067116, -0.0007305718027055264, -0.007135817781090736, 0.014305615797638893, 0.022698696702718735, 0.029268179088830948, -0.003916204907000065, -0.0038737296126782894, -0.011332358233630657, -0.002422496909275651, 0.023423604667186737, -0.0004750132793560624, -0.003774621058255434, -0.020965712144970894, 0.0046411133371293545, -0.013569380156695843, 0.013931835070252419, 0.016604933887720108, -0.007475618738681078, -0.010097748599946499, -0.004932775627821684, -0.006643106695264578, 0.024420354515314102, -0.008410071022808552, -0.0037349776830524206, 0.029721247032284737, -0.04141039773821831, -0.0026093872729688883, -0.018519146367907524, -0.010924597270786762, -0.020286111161112785, 0.009842897765338421, 0.0012586789671331644, 0.005119665991514921, 0.007430311758071184, 0.010618776082992554, 0.0010045362869277596, 0.006603463087230921, 0.0086139515042305, -0.025666290894150734, 0.017680970951914787, -0.0007040248601697385, 0.024420354515314102, -0.013365499675273895, 0.005705822724848986, -4.2143270547967404e-05, 0.02457892708480358, -0.0052102794870734215, -0.009950501844286919, 0.010969904251396656, 0.0005783693632110953, 0.01510981097817421, -0.027274681255221367, -0.02494138292968273, 0.025417102500796318, 0.019413955509662628, 0.009287890046834946, 0.0018844788428395987, -0.010284638963639736, 0.012278136797249317, 0.0010625855065882206, -0.02039937674999237, 0.00014919381646905094, -0.004547668155282736, -0.007889042608439922, 0.014826643280684948, -0.01798679120838642, 0.0038652345538139343, -0.011757109314203262, -0.001103644841350615, -0.0043551139533519745, -0.022789310663938522, -0.008755534887313843, -0.008410071022808552, -0.001546093844808638, 0.002639119978994131, 0.008081596344709396, -0.008342110551893711, -0.002014735946431756, -0.021350819617509842, -0.0071528078988194466, -0.011037863790988922, -0.004264500457793474, 0.010686736553907394, 0.006926273927092552, 0.012912431731820107, -0.015121137723326683, 0.010273312218487263, -0.0031743061263114214, -0.009718304499983788, -0.014917257241904736, 0.010505509562790394, 0.007707816082984209, -0.024329740554094315, 0.003720819251611829, -0.003247929736971855, 0.009763610549271107, -0.0077531225979328156, 0.0022186164278537035, -0.01109449751675129, 0.0044485596008598804, -0.0048987953923642635, -0.0006304013659246266, 0.01691075600683689, 0.027002841234207153, -0.0044485596008598804, 0.003933195024728775, -0.021656639873981476, -0.0008105665910989046, -0.0027764560654759407, -0.0019057163735851645, 0.009378503076732159, -0.010550816543400288, 0.019368648529052734, -0.017216576263308525, 0.03266618773341179, 0.011893029324710369, 0.0075605688616633415, -0.005918198265135288, 0.023310337215662003, -0.004844993818551302, 0.004955429118126631, -0.0010533826425671577, 0.01612921431660652, 0.002072785049676895, 0.02362748607993126, 0.0036217106971889734, 0.00021131365792825818, -0.012380077503621578, 0.015653492882847786, 0.007951339706778526, 0.004083273466676474, -0.021192247048020363, -0.0014059259556233883, -0.00013521242362912744, 0.004459885880351067, -0.008857475593686104, 0.02516791597008705, 0.01635574735701084, 0.0068639772944152355, -0.0056463573127985, -0.005411328282207251, -0.004709073342382908, -0.01347876712679863, -0.015789411962032318, 0.002769376849755645, -5.93766599195078e-05, -0.005385843571275473, -0.003811432747170329, 0.014566130004823208, 0.011394655331969261, 0.002821762813255191, 0.0029109606985002756, -0.009769273921847343, -0.00977493729442358, -0.009854224510490894, -0.004927112255245447, 0.013829894363880157, -0.030717996880412102, -0.016333093866705894, 0.008228844031691551, -0.016106560826301575, -0.0005327085964381695, 0.008948088623583317, 0.01121342834085226, -0.028565924614667892, -0.0014356585452333093, 0.0015163612551987171, 0.022007768973708153, -0.03579235449433327, -0.019765082746744156, 0.0065694828517735004, -0.0006459755823016167, 0.0194252822548151, 0.0034065034706145525, 0.008715891279280186, -0.0025442589540034533, 0.009735294617712498, 0.013671320863068104, -0.0066091264598071575, 0.004210698883980513, 0.003641532501205802, 0.0006091638351790607, -0.019402628764510155, 0.013376826420426369, -0.025553023442626, -0.006218355614691973, 0.02124887891113758, 0.010545153170824051, -0.0030723658856004477, 0.010505509562790394, 0.016208499670028687, -0.023423604667186737, 0.0008551654755137861, 0.029879821464419365, 0.013852547854185104, 0.02731998823583126, -0.0008176458068192005, 0.0003134308790322393, 0.01051117293536663, 0.023718098178505898, 0.010856636799871922, 0.004570321179926395, 0.0039785015396773815, 0.014237655326724052, -0.003723650937899947, 0.020773159340023994, -0.02111295983195305, -0.004256005398929119, -0.006524176336824894, -0.009871214628219604, 0.01854179985821247, 0.011553228832781315, 0.0024862096179276705, -0.003148821182549, -0.008347773924469948, -0.0021959629375487566, -0.0018476671539247036, -0.016344420611858368, 0.024714848026633263, -0.008172210305929184, 0.005136656109243631, -0.010918933898210526, -0.003661354072391987, -0.013637340627610683, -0.002743891905993223, 0.0003744888526853174, -0.02562098391354084, -0.02324237860739231, 0.006071108393371105, 0.001946775708347559, -0.0013769014040008187, -0.0021138445008546114, -0.005037547554820776, 0.020059576258063316, -0.013795914128422737, -0.008596961386501789, 0.005929524544626474, 0.004326797556132078, 0.006813006941229105, 0.02017284370958805, 0.008636604994535446, -0.0016367074567824602, -0.01798679120838642, 0.022755330428481102, 0.004309807438403368, 0.012040277011692524, -0.02114694006741047, 0.0034829587675631046, -0.004502361174672842, -0.0013648667372763157, -0.004771370440721512, -0.02098836563527584, 0.01703534834086895, -0.013637340627610683, -0.007838073186576366, 0.007067857775837183, -0.004952597431838512, -0.0004247510514687747, -0.014350922778248787, 0.023163091391324997, -0.0035792356356978416, 0.0019722606521099806, 0.01210823655128479, 0.009412483312189579, -0.009689987637102604, -0.006552493199706078, 0.014441535808146, -0.006552493199706078, -0.020716525614261627, 0.011836396530270576, -0.0071131642907857895, -0.002517357934266329, 0.008336447179317474, -0.02568894438445568, 0.004677924793213606, 8.087968308245763e-05, -0.008302466943860054, 0.005878554657101631, 0.01710330881178379, -0.001665024203248322, -0.009990144520998001, 0.00914064235985279, 0.02303849719464779, -0.02777305617928505, -0.005770951043814421, -0.004663766827434301, 0.01873435266315937, -0.009871214628219604, -0.005779446102678776, -0.01860976032912731, 0.00401531346142292, 0.026617733761668205, 0.03221312165260315, 0.00633162260055542, -0.0043947575613856316, -0.013977141119539738, -0.005128161050379276, 0.0007942844531498849, -0.0032337713055312634, -0.0007132278406061232, -0.027976935729384422, -0.01830393821001053, -0.015019197016954422, -0.016536975279450417, -0.009050029329955578, -0.03576970100402832, -0.02562098391354084, 0.022596755996346474, 0.00010795755952131003, 0.0006725225248374045, 0.011581545695662498, 0.01094725076109171, -0.00013291167852003127, 0.03518071398139, -0.026753652840852737, -0.00021131365792825818, -0.001999161671847105, 0.019799062982201576, 0.00523010129109025, 0.0014540645061060786, 0.003055376000702381, -0.010935924015939236, 0.009740957990288734, -0.0042984806932508945, -0.0019651816692203283, 0.010647092945873737, 0.01016570907086134, -0.003686839248985052, 0.012549977749586105, 0.003157316241413355, 0.012935085222125053, 0.007379341870546341, -0.020863771438598633, 0.0001266289036720991, 0.010771687142550945, -0.0037632943131029606, 0.0024536452256143093, -0.000958521559368819, 0.008325120434165001, 0.0028642378747463226, 0.009112326428294182, -0.003514107083901763, 0.008364764042198658, 0.009185949340462685, -1.4379593267221935e-05, 0.004023808520287275, 0.017964137718081474, 0.0006735844071954489, 0.030400849878787994, -0.005023389123380184, -7.645518780918792e-05, 0.011711802333593369, -0.009854224510490894, 0.004680756479501724, -0.007334034889936447, 0.006699739955365658, 0.025553023442626, -0.015064503997564316, -0.003791611175984144, 0.00643922621384263, -0.010901943780481815, 0.0007673835498280823, 0.00624100910499692, 0.0015942322788760066, 0.017567703500390053, 0.03155617043375969, 0.005003567319363356, -0.00718112476170063, 0.015098484233021736, -0.013829894363880157, 0.010052441619336605, 0.013716627843677998, 0.003791611175984144, 0.022166341543197632, 0.028679192066192627, 0.006694076582789421, 0.00015264490502886474, 0.0034319886472076178, -0.002474882872775197, 0.0007195990765467286, -0.006229682359844446, -0.004927112255245447, -0.003395176725462079, 0.019244054332375526, -0.001166649628430605, 0.0031629796139895916, -0.00039608037332072854, 0.012697224505245686, -0.026912227272987366, 0.006325959227979183, 0.018417205661535263, -0.013093659654259682, 0.021192247048020363, 0.02412586100399494, -0.0023134774528443813, -0.018530473113059998, 0.013195599429309368, -0.004680756479501724, -0.013999794609844685, -0.008041953667998314, 0.008041953667998314, -0.0048025185242295265, -0.004686419852077961, 0.015347671695053577, 0.01013172883540392, -0.013229579664766788, -0.006988570559769869, -0.00707352114841342, -0.00506586441770196, -0.0003284741542302072, -0.020184170454740524, 0.023740751668810844, 0.007022550795227289, -0.026277931407094002, 0.016604933887720108, -0.003686839248985052, -0.010052441619336605, 0.0017542218556627631, 0.03200924023985863, -0.01109449751675129, 0.0034121668431907892, -0.004097431898117065, 0.002501783659681678, -0.00812690332531929, -0.014498169533908367, -0.00806460715830326, 0.0049299439415335655, 1.033118496707175e-05, -0.006178712006658316, 0.02568894438445568, 0.016276460140943527, -0.023446258157491684, -0.005997485015541315, -0.007090510800480843, 0.02421647310256958, -0.0344104990363121, -0.005654852371662855, 0.008806505240499973, 0.0077757760882377625, 0.01429428905248642, 0.011304041370749474, 0.008540327660739422, 0.00042687481618486345, 0.00817787367850542, 0.006184375379234552, 0.017794238403439522, 0.011151131242513657, 0.012765184976160526, 0.006813006941229105, 0.01214221678674221, 0.008517674170434475, 0.012980392202734947, -0.0034065034706145525, -0.019685795530676842, 0.005855901166796684, -0.01932334154844284, 0.004091768525540829, -0.010907607153058052, -0.009112326428294182, 0.003766125999391079, 0.006988570559769869, -0.00718112476170063, 0.019629161804914474, -0.025711597874760628, 0.005425486713647842, -0.00966167077422142, -0.026096705347299576, -0.01974242925643921, -0.011587209068238735, -0.026708345860242844, -0.003417830215767026, -0.0006551785045303404, 0.0010243579745292664, -0.0061617218889296055, -0.02052397094666958, 0.048025187104940414, -0.0009379918919876218, -0.02591547742486, -0.004652440082281828, -0.0008261408074758947, 0.012538651004433632, 0.024103207513689995, -0.0008643683977425098, -0.002200210466980934, -0.01217619702219963, -0.0013507084222510457, -0.01217619702219963, -0.007826746441423893, -0.019946308806538582, 0.011915682815015316, -0.03189597278833389, -0.02435239404439926, 0.017227903008461, -0.005544417072087526, -0.013682647608220577, 0.007118827663362026, 0.012198850512504578, -0.01029596570879221, 0.013637340627610683, 0.007594549097120762, -0.002959099132567644, 0.0053688534535467625, 0.010239331983029842, 0.0014866286655887961, 0.0032592564821243286, 0.00019503153453115374, 0.006529839709401131, -0.018394552171230316, -0.005739802494645119, -0.001640954869799316, -0.01362601388245821, 0.014056428335607052, -0.009605037048459053, 0.025892823934555054, -0.012425384484231472, 0.01885894685983658, 0.0021648146212100983, 0.026323238387703896, -0.024760155007243156, -0.003618879010900855, -0.0040662833489477634, 0.005855901166796684, 0.011332358233630657, 0.0009245414985343814, 0.011723129078745842, -0.012323443777859211, -0.01602727361023426, -0.019108133390545845, 0.010675409808754921, -0.03250761330127716, -0.003936026245355606, 0.02176990732550621, -0.009888204745948315, 0.004932775627821684, -0.0024097543209791183, -0.014350922778248787, 0.008489358238875866, 0.01732984371483326, 0.001303277793340385, 0.0047373902052640915, 0.02799958921968937, 0.00040917686419561505, 0.005349031649529934, -0.004188045393675566, -0.025598330423235893, 0.0031601479277014732, 0.015336344949901104, 0.004539173096418381, -0.0023078140802681446, -0.00568033754825592, -0.016536975279450417, 0.0019524390809237957, 0.01618584617972374, 0.028452657163143158, -0.005326378159224987, 0.016276460140943527, -0.00942947342991829, -0.006144731771200895, 0.0018547462532296777, -0.01281049195677042, -0.04057222232222557, -0.003958679735660553, 0.019051501527428627, -0.004097431898117065, -0.00876119825989008, -0.0017655486008152366, 0.00025272686616517603, 0.01029596570879221, -0.020603258162736893, 0.004813845269382, -0.006575146224349737, -0.013048352673649788, -0.01602727361023426, 0.003961511421948671, -0.01359203364700079, 0.006450552958995104, 0.007452965248376131, 0.023582179099321365, 0.025349143892526627, 0.020195497199892998, 0.005652020685374737, 0.007283065002411604, 0.005411328282207251, 0.021498067304491997, 0.030763303861021996, -0.010766023769974709, -0.0010378083679825068, 0.0023163091391324997, -0.010811329819262028, 0.0007220768020488322, -0.01658228039741516, -0.022902576252818108, 0.013025699183344841, 0.014803989790380001, -0.00282317865639925, -0.0026561098638921976, 0.007317044772207737, 0.0031686429865658283, 0.022506142035126686, 0.006099425256252289, -0.000690928369294852, -0.023355644196271896, 0.005827584303915501, -0.006682749837636948, -0.0013075253227725625, -0.013988467864692211, 0.009542740881443024, -0.01380724087357521, 0.005439645145088434, 0.008398744277656078, -0.0024168335366994143, -0.006116415373980999, -0.0035197704564779997, 0.015687473118305206, 0.028679192066192627, -0.014079081825911999, -0.004836498759686947, 0.01807740516960621, 0.012323443777859211, -0.01365999411791563, 0.014871950261294842, 0.011949663050472736, 0.026617733761668205, 0.025824863463640213, -0.00532071478664875, 0.0041937087662518024, -0.0013400895986706018, 0.01362601388245821, 0.017182596027851105, -0.008500684052705765, 0.006144731771200895, -0.015358998440206051, -0.005221606232225895, 0.03280210867524147, 0.008347773924469948, -0.025145262479782104, -0.0035933940671384335, -0.02895103208720684, -0.008948088623583317, -0.018813639879226685, -0.019867023453116417, -0.00964468065649271, 0.020422030240297318, -0.0033781868405640125, -0.0037123241927474737, 0.003686839248985052, -0.005513268522918224, -0.006914947181940079, -0.019312014803290367, 0.01670687459409237, -0.010199688374996185, -0.003686839248985052, -0.0020628743804991245, -0.02836204320192337, -0.003955848049372435, -0.020739179104566574, -0.02741060219705105, -0.005734139122068882, 0.02577955834567547, -0.018428532406687737, 0.007900369353592396, 0.02976655401289463, 0.015834718942642212, 0.003950184676796198, 0.012719877995550632, 0.006586472969502211, -0.0033895133528858423, -0.014350922778248787, 0.0015121137257665396, 0.022234302014112473, 0.0004105926782358438, -0.015381651930510998, 0.003825591178610921, 0.011621189303696156, -0.0029251188971102238, -0.002405506791546941, -0.017590356990695, -0.020082229748368263, 0.009270899929106236, 0.005224437918514013, 0.02503199502825737, -0.004326797556132078, 0.01641238108277321, -0.007747459225356579, 0.00438059912994504, -0.00868191197514534, -0.03475030139088631, 0.0014512328198179603, 0.009990144520998001, -0.0059465146623551846, 0.014350922778248787, -0.001285579870454967, 0.03006104752421379, -0.007288728374987841, -0.024397701025009155, -0.010901943780481815, 0.01450949627906084, -0.018553126603364944, -0.002535763895139098, -0.022630736231803894, -0.00014547724276781082, -0.007011224050074816, -0.018326591700315475, -0.0031374944373965263, -0.025077302008867264, -0.01687677577137947, 0.005623703822493553, 0.018190672621130943, 0.024828115478157997, -0.018462512642145157, 0.0010123233078047633, 0.015778085216879845, 0.009599373675882816, 0.02081846445798874, -0.008274151012301445, -0.017579030245542526, -0.023049823939800262, -0.010839646682143211, 0.013037025928497314, -0.004663766827434301, -0.004643945023417473, 0.015064503997564316, 0.026640387251973152, -0.001133377430960536, -0.010369589552283287, -0.0028628220316022635, 0.02225695550441742, 0.012708551250398159, -0.015007870271801949, 0.018587106838822365, -0.0016168856527656317, -0.0027835352811962366, 0.014396228827536106, 0.007906032726168633, -0.016163192689418793, -0.009412483312189579, -0.02969859354197979, 0.0010816993890330195, -0.008007973432540894, 0.012312117032706738, -0.004159728530794382, 0.027818363159894943, 0.006563819479197264, -0.00982590764760971, 0.015868699178099632, -0.01791883073747158, 0.02013886347413063, -0.015574205666780472, -0.0020982702262699604, -0.002875564619898796, -0.008138230070471764, -0.0013457529712468386, -0.04825172200798988, 0.019232727587223053, -0.014781337231397629, -0.007356688380241394, -0.023831365630030632, -0.024624234065413475, 0.0029222872108221054, 0.01804342493414879, -0.007792766205966473, 0.01214221678674221, 0.019561201333999634, -0.01217619702219963, -0.02688957378268242, -0.018383225426077843, 0.017284536734223366, -0.013988467864692211, 0.011904356069862843, 0.017635663971304893, -0.03835218772292137, -0.0032960681710392237, -0.003567908890545368, 0.025077302008867264, -0.022596755996346474, 0.008087259717285633, 0.012130890041589737, -0.0013846884248778224, -0.01654830202460289, -1.5950286979204975e-05, -0.0064165727235376835, -0.006467542611062527, -0.015053177252411842, 0.0010760360164567828, -0.0043947575613856316, -0.02085244469344616, -0.008449714630842209, 0.004125748760998249, 0.0016225490253418684, 0.013614687137305737, 0.00316581130027771, -0.02496403641998768, -0.012040277011692524, -0.003485790453851223, 0.0058728912845253944, -0.033730898052453995, -0.002490457147359848, -0.01107750739902258, 0.0071528078988194466, 0.015064503997564316, 0.008058943785727024, 0.002266754861921072, -0.005742634180933237, -0.008562981151044369, 0.003842581296339631, 0.010437549091875553, 0.0009719720110297203, 0.0027297334745526314, -0.02346891164779663, -0.01606125384569168, -0.03169209137558937, 0.04274694621562958, -0.00899339560419321, -0.015834718942642212, 0.028520617634058, -0.0029024656396359205, -0.006637443322688341, -0.006982907187193632, 0.001381856738589704, 0.011428635567426682, -0.021939808502793312, -0.009939175099134445, 0.0026532781776040792, -0.011383328586816788, -0.0029534357599914074, 0.010839646682143211, -0.004861983936280012, -0.008562981151044369, -0.0013209758326411247, -0.008432724513113499, -0.024624234065413475, 0.023378297686576843, -0.01843985915184021, 0.008636604994535446, 0.004071946721524, -0.024896075949072838, -0.029041646048426628, -0.01132669486105442, -0.005170636344701052, 0.006580809596925974, -0.011287051253020763, -0.011049190536141396, 0.003862402867525816, -0.014430209062993526, 0.0060088117606937885, 0.006337285973131657, -0.0034801270812749863, -0.004165391903370619, 0.011791089549660683, -0.023491565138101578, 0.008800841867923737, 0.024012593552470207, -0.012515997514128685, 0.003514107083901763, 0.006037128157913685, 0.030332889407873154, 0.016333093866705894, -0.010924597270786762, -0.005201784428209066, 0.008529000915586948, 0.00447121262550354, -0.009293553419411182, -0.014135715551674366, -0.0034489785321056843, 0.0019566866103559732, 0.02480546198785305, 0.005521763581782579, -0.012221504002809525, -0.021067652851343155, -0.02392197959125042, -0.03488621860742569, 0.01547226496040821, -0.001323807518929243, -0.005397170316427946, 0.04256571829319, 0.013286213390529156, 0.0018887263722717762, -0.008325120434165001, -0.0036302057560533285, -0.013739281333982944, 0.013240906409919262, 0.017352497205138206, 0.0011758524924516678, 0.028271431103348732, 0.005516100209206343, 0.014316942542791367, -0.001170189119875431, -0.026187319308519363, -0.002181804506108165, 0.030899222940206528, 0.010188361629843712, 0.018757006153464317, 0.011383328586816788, -0.0059465146623551846, 0.0008969326736405492, 0.009740957990288734, 0.01802077144384384, 0.011054853908717632, -0.007124491035938263, 0.006473205983638763, 0.014985217712819576, -0.002547090407460928, 0.016310440376400948, 0.032167814671993256, 0.003590562380850315, 0.00045519156265072525, 0.024465661495923996, -0.011745782569050789, 0.005385843571275473, 0.016831468790769577, 0.004561826586723328, 0.010063768364489079, -0.011689148843288422, -0.0019963299855589867, 0.022121034562587738, -0.009554066695272923, 0.0004654563672374934, 0.023083804175257683, -0.007141481153666973, -0.013456113636493683, -0.02140745334327221, 0.00390770984813571, -0.005258418153971434, -0.011643842794001102, -0.007826746441423893, -0.0014823811361566186, 0.032915376126766205, -0.00530372466892004, -0.010737706907093525, 0.0005553620285354555, 0.0029137921519577503, -0.008970742113888264, -0.0013280549319460988, 0.005487783811986446, 0.03080861084163189, 0.0089764054864645, -0.021656639873981476, 0.006728056818246841, 0.008857475593686104, 0.0008310962584801018, 0.021645313128829002, -0.023117784410715103, 0.024692194536328316, -0.0009266652050428092, -0.01281049195677042, -0.018587106838822365, -0.0004799687012564391, -0.007577558979392052, 0.01062443945556879, -0.02673099935054779, 0.01700136810541153, 0.01329754013568163, -0.007923022843897343, 0.016083907335996628, -0.0011638179421424866, 0.035361941903829575, 0.04156896844506264, 0.02333299070596695, 0.017828218638896942, -0.01532501820474863, -0.016299113631248474, 0.038827911019325256, 0.021554701030254364, -0.0026249615475535393, -0.010647092945873737, 0.0050177257508039474, -0.0017471426399424672, -0.00474022189155221, 0.01932334154844284, 0.012833145447075367, 0.002646199194714427, 0.0157327800989151, 0.0019793398678302765, 0.0034319886472076178, 0.015053177252411842, -0.022732676938176155, 0.015551552176475525, 0.0087951784953475, 0.019833043217658997, -0.00901038572192192, -0.017216576263308525, 0.010211015120148659, 0.0071754613891243935, 0.03044615499675274, 0.012753858231008053, 0.002421081066131592, 0.012346097268164158, 0.017794238403439522, -0.0019736764952540398, 0.011643842794001102, -0.006444889586418867, -0.006376929115504026, -0.006410909350961447, 0.01752239651978016, -0.0070565310306847095, -0.005397170316427946, 0.008891455829143524, -0.026753652840852737, -0.0020458842627704144, -0.008919771760702133, 0.011632516048848629, -0.05137788876891136, -0.011655168607831001, -0.023672793060541153, 0.015936659649014473, 0.003349869977682829, -0.019006194546818733, -0.003692502621561289, 0.0029675939586013556, 0.0022540122736245394, -0.014181021600961685, 0.019753756001591682, -0.011281387880444527, -0.01743178255856037, -0.02024080418050289, -0.018915580585598946, 0.02568894438445568, -0.013082332909107208, 0.0011347932741045952, -0.012198850512504578, 0.010618776082992554, -0.003417830215767026, 0.002865653717890382, 0.003522602142766118, -0.021067652851343155, 0.004726063460111618, 0.0026561098638921976, -0.006597799714654684, 0.022789310663938522, -0.01880231313407421, -0.017046675086021423, -0.021260205656290054, -0.009265236556529999, -0.0014420298393815756, 0.008545991033315659, 0.022370222955942154, -0.011270061135292053, -0.0043551139533519745, -0.005878554657101631, -0.02346891164779663, -0.005827584303915501, 0.007651182357221842, -0.0005213819094933569, 0.004771370440721512, 0.022234302014112473, 0.002496120287105441, -0.0042673321440815926, 0.017748931422829628, -0.005467962007969618, 0.013705301098525524, -0.012617938220500946, 0.002650446491315961, -0.03110310435295105, -0.000302635133266449, -0.003075197571888566, 0.0023658634163439274, -0.0303555428981781, 0.010505509562790394, -0.020897751674056053, 0.006325959227979183, -0.006699739955365658, 0.013999794609844685, 0.009808917529881, -0.006139068398624659, -0.011711802333593369, 0.001813687034882605, -0.004372104071080685, -0.0018519145669415593, 0.021044999361038208, 0.021713273599743843, 0.01228946354240179, -0.02709345333278179, -0.018292611464858055, -0.019595181569457054, 0.01635574735701084, -0.006178712006658316, -0.01637840084731579, 0.013637340627610683, 0.0019793398678302765, 0.0062240189872682095, 0.004861983936280012, 0.019312014803290367, 0.0010852389968931675, 0.018462512642145157, -0.0177602581679821, -0.015868699178099632, -0.005513268522918224, -0.013093659654259682, 0.016956062987446785, 0.0023304675705730915, -0.014384902082383633, 0.014260308817029, 0.01769229769706726, -0.017964137718081474, 0.0052187745459377766, 0.015710126608610153, -0.001782538602128625, -0.005581228993833065, -0.01299171894788742, 0.023491565138101578, 0.005349031649529934, -0.025802211835980415, -0.0038086010608822107, -0.003381018526852131, 0.017239229753613472, 0.008296803571283817, -0.012119563296437263, -0.04229388013482094, 0.0035197704564779997, -0.011745782569050789, 0.019855696707963943, 0.027863670140504837, 0.0025301005225628614, -0.010177035816013813, 0.01896088756620884, -0.01529103796929121, 0.023831365630030632, -0.0027764560654759407, -0.00436360901221633, -0.0014038021909072995, 0.0062013654969632626, 0.003395176725462079, -0.025371797382831573, 0.00434095598757267, -0.008766861632466316, 0.01670687459409237, -0.012912431731820107, -0.007413321640342474, 0.0051451511681079865, -0.0040662833489477634, -0.005275408271700144, -0.009797590784728527, 0.013648667372763157, -0.003097851062193513, 0.023378297686576843, 0.01355805341154337, 0.005810594651848078, -0.022608082741498947, -0.0048903003334999084, -0.0024550610687583685, 0.0012466443004086614, -0.00631463248282671, 0.0070168874226510525, 0.020965712144970894, 0.0050573693588376045, -0.0013584954431280494, -0.02026345767080784, 0.014384902082383633, -0.0015333513729274273, 0.02754652127623558, 0.009225592948496342, -0.004992240574210882, -0.006501522846519947, 0.018904253840446472, 0.031850665807724, 0.012799165211617947, -0.0027212384156882763, -0.018054751679301262, 0.0006923442124389112, -0.01228946354240179, 0.014532149769365788, -0.01772627793252468, -0.010969904251396656, 0.0026277932338416576, 0.014679396525025368, -0.01365999411791563, 0.0008367595728486776, 0.008279814384877682, 0.02225695550441742, -0.022540122270584106, -0.009667334146797657, 0.013025699183344841, 0.0012756689684465528, 0.02218899503350258, 0.004728895146399736, 0.01765831746160984, -0.010924597270786762, 0.0071528078988194466, 0.017703624442219734, 0.0017103309510275722, -0.0035707405768334866, 0.022245628759264946, 0.011026537045836449, -0.007045204285532236, 0.005080022849142551, -4.021861604996957e-05, -0.023423604667186737, 0.000750393548514694, 0.022925229743123055, 0.002215784741565585, 0.003751967567950487, 0.023219725117087364, 0.04141039773821831, 0.004332460928708315, -0.0035452554002404213, 0.0160952340811491, -0.014101735316216946, -0.005130992736667395, 0.006977244280278683, -0.011530575342476368, 0.014826643280684948, 0.023265032097697258, -0.00640524597838521, 0.004420242737978697, -0.010913270525634289, 0.010777350515127182, 0.015155117958784103, -0.009191612713038921, -0.005929524544626474, -0.008393080905079842, -0.011870375834405422, -0.008189200423657894, -0.010726380161941051, 0.01377326063811779, -0.005833247676491737, -0.012312117032706738, -0.0029902474489063025, 0.028475310653448105, 0.003126167692244053, -0.0015291038434952497, 0.014600109308958054, 0.013501420617103577, -0.001103644841350615, -0.00809292308986187, -0.002510278718546033, 0.018326591700315475, -0.0011347932741045952, 0.025281183421611786, -0.005266913212835789, 0.01703534834086895, 0.027433255687355995, 0.034614380449056625, -0.0035197704564779997, 0.025054648518562317, 0.03021962195634842, 0.0223928764462471, 0.023129111155867577, -0.009004722349345684, 0.013841221109032631, 0.0015560047468170524, -0.0017032517353072762, -0.0003783823922276497, -0.005547248758375645, -0.008868802338838577, 0.009197276085615158, -0.006059781648218632, 0.019006194546818733, -0.023163091391324997, 0.015596859157085419, -0.021260205656290054, -0.0007454380975104868, -0.034478459507226944, -0.0006254459149204195, -0.01228946354240179, -0.001544678001664579, 0.0077134789898991585, -0.00729439128190279, 0.013342846184968948, 0.007243421394377947, 0.02673099935054779, 0.023095130920410156, -0.009304880164563656, 0.0014894603518769145, -0.004360777325928211, -0.00526408152654767, -0.015064503997564316, -0.010041114874184132, 0.008461041375994682, -0.03919036313891411, 0.004100263584405184, 0.005855901166796684, -0.001047719269990921, -0.0037944428622722626, 0.02451096847653389, -0.031216371804475784, -0.020286111161112785, -0.01762433722615242, 0.015200424939393997, -0.02265338972210884, -0.0042588370852172375, 0.005929524544626474, -0.036471959203481674, -0.004556163214147091, 0.020320091396570206, 0.01217619702219963, 0.023740751668810844, 0.0066091264598071575, -0.02242685668170452, 0.01362601388245821, 0.002644783351570368, -0.00021219854534137994, -0.013422133401036263, -0.0010831152321770787, 0.006218355614691973, 0.00020812802540604025, -0.039892617613077164, 0.004726063460111618, 0.02307247743010521, -0.03903179243206978, -0.02784101665019989, 0.012901105917990208, 0.019130786880850792, 0.0014193764654919505, -0.013456113636493683, 0.0009068435174413025, 0.0037406410556286573, 0.0058162580244243145, -0.027818363159894943, 0.004788360092788935, 0.004304144065827131, 0.012685898691415787, -0.02265338972210884, -0.019176093861460686, 0.06777894496917725, -0.015279711224138737, -0.0019184589618816972, 0.008415734395384789, 0.000570228323340416, -0.008936761878430843, 0.022177668288350105, -0.0006374805234372616, -0.00720377778634429, -0.003967174794524908, -0.01762433722615242, 0.005940851289778948, 0.014045101590454578, 0.013795914128422737, -0.01632176712155342, -0.017273209989070892, -0.007300054654479027, -0.0012310701422393322, -0.012323443777859211, -0.0057454658672213554, -0.023423604667186737, -0.003958679735660553, -0.0069602541625499725, 0.037287481129169464, -0.021792560815811157, -0.0019000531174242496, -0.01863241381943226, -0.02007090300321579, -0.0039785015396773815, 0.0027056641411036253, -0.010001471266150475, 0.000820477434899658, 2.5595676561351866e-05, -0.0061617218889296055, -0.000573767872992903, 0.009378503076732159, 0.036245424300432205, -0.010783013887703419, -0.0006272157188504934, 0.01130970474332571, 0.0034008400980383158, 0.012651918455958366, -0.00953141413629055, 0.016367074102163315, 0.0240579005330801, 0.005074359476566315, 0.018088731914758682, -0.01287845242768526, 0.02124887891113758, 0.004658103454858065, 0.01248201820999384, -0.009129315614700317, 0.011332358233630657, 0.014135715551674366, -0.010941587388515472, -0.008857475593686104, 0.008987732231616974, 0.010431885719299316, -0.009061356075108051, -0.004720400087535381, 0.0010307292686775327, 0.006711066700518131, 0.007917359471321106, -0.004861983936280012, -0.005275408271700144, -0.014928583987057209, 0.00045377571950666606, 0.005252754781395197, 0.029494713991880417, 0.005193289835005999, 0.014486842788755894, -0.006841323804110289, -0.005111170932650566, -0.017318516969680786, 0.0020685377530753613, 0.005861564539372921, -0.023604832589626312, 0.004788360092788935, 0.010884953662753105, 0.005456635262817144, -0.0006311092874966562, 0.021520720794796944, 0.01670687459409237, 0.006773363333195448, 0.00405495660379529, -0.01029596570879221, -0.00038121407851576805, 0.038397494703531265, -0.00013176132051739842, 0.003692502621561289, -0.01674085482954979, -0.015517571941018105, 0.024261780083179474, 0.010913270525634289, 0.018881600350141525, 0.0036160473246127367, 0.014011121354997158, 0.012753858231008053, 0.0016395391430705786, -0.005266913212835789, -0.016242479905486107, 0.024103207513689995, 0.005756792612373829, 0.012753858231008053, -0.004570321179926395, 0.006954590789973736, -0.013909181579947472, 0.014248982071876526, -0.010182698257267475, -0.013218252919614315, 0.017046675086021423, 0.011304041370749474, -0.018315264955163002, 0.013614687137305737, 0.004213530570268631, -0.004669430200010538, -0.01362601388245821, -0.005595387425273657, -0.0013443371281027794, 0.02069387212395668, -0.0299930889159441, -0.004689251538366079, -0.01295773871243, 0.013977141119539738, 0.0049610924907028675, -0.013852547854185104, -0.006541166454553604, 0.003669849131256342, -0.0005850945599377155, -0.010018461383879185, 0.015676146373152733, 0.014894603751599789, 0.0033555333502590656, 0.008398744277656078, 0.013795914128422737, 0.002891138894483447, 0.01429428905248642, 0.019017521291971207, 0.013240906409919262, 0.0008565813186578453, 0.008098586462438107, -0.02820347063243389, -0.010890617035329342, -0.011734455823898315, -0.019833043217658997, 0.0029987425077706575, 0.0032875731121748686, -0.001068956800736487, -0.018168019130825996, -0.014135715551674366, 0.0023672792594879866, -0.002959099132567644, 0.021860521286725998, -0.011711802333593369, 0.014600109308958054, -0.018813639879226685, -0.0039785015396773815, -0.017273209989070892, 0.002859990345314145, -0.01184772327542305, -0.014815316535532475, 0.004646776709705591, -0.013388153165578842, -0.008115576580166817, 0.002234190469607711, -0.005128161050379276, 0.0021591512486338615, 0.0046750931069254875, -0.0005454511265270412, -0.007396331988275051, -0.008245834149420261, -0.010573470033705235, -0.016163192689418793, -0.02353687211871147, -0.005991821642965078, 0.0035452554002404213, -0.016344420611858368, -0.005317883100360632, -0.011139804497361183, -9.848915215115994e-05, -0.024533621966838837, 0.012765184976160526, -0.006382592488080263, 0.016276460140943527, 0.014441535808146, 0.004949765745550394, 0.003936026245355606, 0.0027311493176966906, -0.015562878921627998, 0.005298061762005091, 0.03708359971642494, 0.0004948349669575691, 0.008506347425282001, 0.004097431898117065, -0.007917359471321106, -0.002548506250604987, -0.005020557437092066, -0.005244259722530842, 0.006756373681128025, -0.017635663971304893, 0.007804092951118946, 0.013841221109032631, -0.011422972194850445, -0.011904356069862843, -0.0070168874226510525, 0.007594549097120762, -0.0048336670733988285, 0.00466659851372242, 0.004539173096418381, 0.009950501844286919, 0.013761933892965317, 0.006858313921838999, 0.009185949340462685, 0.011026537045836449, -0.011117151007056236, 0.013354172930121422, 0.011609862558543682, 0.0027906144969165325, -0.011643842794001102, -0.0089764054864645, -0.011530575342476368, -0.003774621058255434, -0.014452862553298473, -0.0034942852798849344, -0.005003567319363356, -0.006484532728791237, -0.02516791597008705, -0.005643525626510382, 0.004646776709705591, -0.00967866089195013, 0.01044321246445179, -0.01284447219222784, -0.014079081825911999, -0.016423707827925682, -0.005844574421644211, 0.0013620350509881973, 0.001166649628430605, 0.0025442589540034533, -0.014849296770989895, -0.013614687137305737, 0.022585429251194, 0.012901105917990208, -0.0045788162387907505, 0.009588046930730343, 0.01772627793252468, -0.001820766250602901, -0.00274955527856946, 0.018847620114684105, 0.007724805735051632, -0.005397170316427946, 0.020082229748368263, -0.0020303099881857634, -0.017828218638896942, 0.04297348111867905, -0.003491453593596816, 0.018134038895368576, 0.011881702579557896, -0.013184272684156895, 0.0028330895584076643, -0.0031318310648202896, -0.004731726832687855, 0.008868802338838577, -0.007917359471321106, 0.03243965283036232, -0.0016522816149517894, 0.0036047205794602633, -0.01615186780691147, 0.00781541969627142, 0.015812065452337265, 0.01026198547333479, -0.01804342493414879, -0.006059781648218632], "d38702d2-d706-43ce-8e66-ad161eeafb07": [0.009894548915326595, -0.015218187123537064, -0.006981820799410343, 0.028450919315218925, 0.008852730505168438, -0.020389098674058914, -0.0032045466359704733, 0.01229455042630434, -0.03733092173933983, 0.016309097409248352, 0.002994546666741371, 0.0020495462231338024, 0.03626183047890663, 0.004328183364123106, 0.052145473659038544, 0.011705459095537663, 0.00532636558637023, 0.010363640263676643, 0.02873455546796322, -0.019069097936153412, 0.02032364346086979, -0.01173818577080965, -0.0461672879755497, -0.0029809102416038513, -0.008727275766432285, -0.012829096056520939, -0.02262546308338642, 0.021589098498225212, -0.021501826122403145, -0.02230909839272499, 0.03257455676794052, 0.004658183548599482, -0.000750682083889842, 0.011956367641687393, 0.04420365393161774, 0.007292729802429676, -0.005045456346124411, 0.003758183214813471, -0.013232732191681862, 0.011203640140593052, 0.0033872739877551794, 0.012120004743337631, 0.015196369029581547, -0.0141927320510149, -0.04634183645248413, -0.0009034094400703907, 0.0036081832367926836, 0.021469099447131157, -0.006823638919740915, -0.008187275379896164, 0.012796368449926376, 0.0015750005841255188, 0.013930913992226124, 0.006458184216171503, 0.05794911086559296, -0.018905460834503174, -0.003122728317975998, -0.009250912815332413, 0.008296366780996323, -0.04507638141512871, 0.010156366974115372, -0.024872737005352974, 0.015938187018036842, 0.0008781821234151721, 0.051316384226083755, -0.013669095933437347, -0.011978186666965485, 0.013789095915853977, -0.01854546181857586, 0.0035918194334954023, 0.030392738059163094, 0.02578910067677498, -0.008880003355443478, 0.03857456147670746, 0.05319274589419365, -0.004914547316730022, -0.004420910496264696, 0.027120010927319527, -0.017760006710886955, -0.011465459130704403, -0.009556367062032223, -0.04656001552939415, 0.024523645639419556, -0.0008904548594728112, 0.050443656742572784, 0.0413891077041626, 0.058429110795259476, -0.040363650768995285, 0.009627276100218296, -0.040014561265707016, 0.004426365252584219, 0.005329092964529991, -0.012240004725754261, -0.00786545779556036, -0.03883637860417366, -0.002451819134876132, -0.016963642090559006, 0.012447277083992958, 0.02875637449324131, -0.023869099095463753, 0.03578183054924011, -0.01958182454109192, 0.041956380009651184, 0.021785462275147438, 0.02080364339053631, -0.013287277892231941, -0.015250914730131626, 0.003357273992151022, -0.027098191902041435, 0.022647280246019363, -0.0125345503911376, 0.004333638120442629, 0.014432732947170734, -0.009649094194173813, -0.04459638148546219, -0.002145000733435154, -0.04029819741845131, 0.016614550724625587, -0.0029209102503955364, -0.03196364641189575, 0.01660364307463169, -0.0031090921256691217, 0.00801273062825203, -0.02173091657459736, -0.038880012929439545, 0.015610914677381516, -0.04795638099312782, 0.036676377058029175, 0.021720008924603462, 0.013036368414759636, -0.010014548897743225, -0.0049063656479120255, 0.011454549618065357, 0.0360872857272625, 0.003987274132668972, -0.011301822029054165, 0.0006637502228841186, 0.04359274357557297, -0.02629091963171959, 0.02912728302180767, -0.02182909846305847, -0.0028500009793788195, 0.005667274817824364, -0.004440001677721739, -0.0125345503911376, -0.03990546986460686, -0.018960006535053253, 0.03763637691736221, -0.0031909102108329535, -0.002038637176156044, -0.05458911135792732, -0.010810913518071175, -0.030065465718507767, 0.01936364360153675, 0.027578191831707954, -0.007009093649685383, 0.003962728660553694, 0.027992738410830498, 0.009174549020826817, 0.03720001503825188, 0.04326546937227249, -0.01424727775156498, -0.015600006096065044, 0.025396373122930527, 0.05096729099750519, 0.0018777279183268547, 0.052058201283216476, 0.027992738410830498, 0.011770913377404213, 0.014421823434531689, -0.015490914694964886, 0.026094555854797363, 0.027316372841596603, -0.010620003566145897, -0.018774552270770073, -0.004824547097086906, 0.0019131825538352132, 0.05162183567881584, -0.012883640825748444, 0.016690915450453758, -0.02862546592950821, -0.015316369011998177, 0.005520001985132694, 0.014225459657609463, 0.004300910513848066, 0.05367274582386017, 0.03425455838441849, 0.05877820402383804, 0.018949097022414207, -0.007101820781826973, 0.0002023296256083995, -0.01290545891970396, -0.029781829565763474, -0.005792729556560516, -0.011165458709001541, -0.00897818524390459, 0.025134554132819176, 0.0010875003645196557, -0.037156376987695694, 0.023323645815253258, -0.005140910856425762, -0.016123643144965172, -0.009867276065051556, 0.03685092180967331, -0.0057327295653522015, 0.023040007799863815, -0.016298187896609306, 0.0014795459574088454, 0.0023768190294504166, -0.030130920931696892, 0.012916368432343006, -0.009441821835935116, -0.022538190707564354, -0.03222546726465225, -0.02960728295147419, 0.0032154556829482317, -0.0039900015108287334, 0.03737455978989601, 0.0005232956609688699, -0.04433456063270569, -0.00831818487495184, 0.02034546248614788, -0.00531272916123271, -0.03327273949980736, -0.03966546803712845, 0.00426545599475503, -0.022243645042181015, -0.0015954551054164767, -0.04066910594701767, -0.024152737110853195, 0.015872733667492867, -0.02984728291630745, 0.01412727776914835, 0.009212730452418327, 0.019669098779559135, 0.0628800243139267, 0.029454557225108147, 0.016625460237264633, -0.010914549231529236, 0.034472741186618805, 0.007750912103801966, 0.008394548669457436, 0.026443645358085632, -0.02740364708006382, 0.03281455859541893, -0.020061826333403587, -0.0001066193581209518, 0.01229455042630434, -0.014323641546070576, 0.006692729890346527, -0.021076371893286705, -0.012829096056520939, -0.004914547316730022, -0.0012347731972113252, -0.04996365308761597, 0.015360006131231785, 0.030261829495429993, -0.018610915169119835, 0.02801455557346344, 0.020541826263070107, 0.0062181842513382435, 0.030436374247074127, -0.006098184268921614, 0.004685456398874521, 0.0033300011418759823, 0.023323645815253258, 0.012490913271903992, -0.024850917980074883, 0.0026031828019768, 0.029781829565763474, 0.008601821027696133, 0.000557727471459657, -0.04974547401070595, 0.037287287414073944, -0.01500000525265932, -0.018392734229564667, 0.0334254652261734, -0.03159273788332939, 0.07248003035783768, -0.0026863645762205124, -0.04891638085246086, -0.026203645393252373, 0.003272728528827429, 0.003924546763300896, 0.0019118188647553325, 0.025265464559197426, -0.0379418320953846, -0.017127279192209244, -0.023520009592175484, 0.00638727517798543, 0.028581827878952026, 0.023323645815253258, 0.004925456363707781, 0.023912735283374786, -0.022669099271297455, -0.0011972731444984674, 0.011323640123009682, 0.004879092797636986, -0.007325457409024239, 0.04765092581510544, 0.0165818240493536, 0.02212364412844181, 0.00529909273609519, 0.04494547098875046, 0.02631273679435253, -0.008950912393629551, 0.03432001173496246, 0.03547637537121773, 0.003100910224020481, 0.041105471551418304, 0.01949455216526985, -0.036807287484407425, -0.06432002037763596, -0.0080236392095685, 0.005585456732660532, 0.033490922302007675, -0.03796365112066269, 0.004213638138025999, -0.020192734897136688, -0.03229092061519623, -0.0040363650768995285, -0.020792735740542412, -0.05341092869639397, -0.0019172733882442117, 0.039120014756917953, -0.011225458234548569, 0.051534563302993774, 0.019745461642742157, 0.027752738445997238, -0.028603646904230118, -0.05184001848101616, -0.013930913992226124, -0.01923273503780365, 0.0315709225833416, -0.01706182397902012, -0.01148727722465992, -0.02493819035589695, -0.05716365575790405, -0.00401181960478425, -0.02740364708006382, 0.000845454866066575, -0.027076372876763344, 0.037047285586595535, -0.03698183223605156, 0.0318327397108078, -0.01395273208618164, -0.015163642354309559, 0.00936545804142952, -0.017050914466381073, 0.041214559227228165, 0.0005512501811608672, 0.01185818575322628, 0.03377455845475197, 0.008918184787034988, 0.010641821660101414, -0.04529456049203873, -0.0150545509532094, 0.0006364774890244007, 0.015207278542220592, -0.014050913974642754, -0.010309094563126564, 0.00607636570930481, -0.007472730241715908, 0.011749095283448696, -0.04450910910964012, 0.01743273437023163, 0.009943639859557152, -0.030305465683341026, -0.013265459798276424, 0.0007138638757169247, -0.004445455968379974, -0.002205000724643469, -0.016221825033426285, -0.017520006746053696, -0.01613455079495907, 0.004461819771677256, 0.03456001356244087, -0.01074545830488205, -0.007849093526601791, 0.015621824190020561, 0.015010914765298367, -0.017596369609236717, -0.026356372982263565, 0.05742547661066055, -0.017629098147153854, 0.01769455149769783, 0.005760001949965954, -0.029934557154774666, -0.010805458761751652, -0.0022540916688740253, 0.04252365231513977, -0.009447276592254639, -0.018894553184509277, -0.027120010927319527, -0.06567275524139404, 0.007652730215340853, 0.026880009099841118, -0.023563645780086517, 0.0140618234872818, -0.0038972741458564997, -0.026007281616330147, -0.01034727692604065, -0.001482273219153285, -0.023520009592175484, 0.020760007202625275, -0.05319274589419365, -0.0007459093467332423, 0.009621821343898773, -0.02130546234548092, 0.016538187861442566, 0.019505461677908897, 0.022821826860308647, 0.005945456679910421, 0.008885458111763, 0.019690915942192078, 0.018829097971320152, -0.023389099165797234, 0.014803641475737095, 0.013614550232887268, 0.006038184277713299, 0.029760010540485382, 0.01570909656584263, 0.03706910461187363, 0.035563647747039795, 0.010707276873290539, 0.01053273119032383, 0.007494548335671425, -0.0030654557049274445, -0.013560005463659763, 0.001783636980690062, 0.012916368432343006, 0.046123653650283813, 0.0363491028547287, -0.008830912411212921, -0.006927275098860264, -0.0014345459640026093, -0.0301091019064188, 0.01713818870484829, 0.01407273206859827, 0.013221822679042816, -0.04843638092279434, -0.02655273675918579, -0.02923637442290783, 0.012403640896081924, -0.028320010751485825, -0.028167283162474632, -0.016778187826275826, -0.00764727545902133, 0.029149102047085762, -0.022669099271297455, 0.003810001304373145, 0.012087277136743069, -0.02443637326359749, 0.0035727284848690033, 0.029890920966863632, -0.012098186649382114, 0.012447277083992958, 0.01695273444056511, 0.024741826578974724, -0.006474548019468784, 0.016178186982870102, 0.02008364349603653, 0.02077091671526432, -0.0005706820520572364, 0.019625462591648102, 0.021960008889436722, 7.814278433215804e-06, 0.0009136367007158697, -0.003820910584181547, 0.006114547606557608, -0.016221825033426285, 0.009796367026865482, -0.018949097022414207, 0.01737818866968155, 0.00814363919198513, -0.029432738199830055, -0.020487280562520027, 0.013047277927398682, 0.04252365231513977, 0.026683645322918892, 0.026683645322918892, -0.012687277048826218, 0.041345469653606415, 0.005566365551203489, -0.034341830760240555, 0.0281236469745636, -0.013450914062559605, 0.005064547527581453, 0.020814552903175354, -0.033229101449251175, -0.0062672751955688, -0.008460002951323986, 0.03844365105032921, -0.008258184418082237, -0.005083638243377209, 0.0009681821684353054, -0.004399092402309179, -0.007887275889515877, 0.025876373052597046, -0.022134553641080856, -0.0006862502777948976, -0.004876365419477224, -0.02690182812511921, -0.0025336372200399637, -0.025527281686663628, 0.03141819313168526, -0.009649094194173813, 0.06999275088310242, -0.019941825419664383, -0.02064000815153122, -0.028538191691040993, 0.02223273552954197, -0.027098191902041435, 0.008743640035390854, 0.024850917980074883, 0.027425464242696762, -0.02045455388724804, -0.020421825349330902, 0.020814552903175354, -0.023650918155908585, -0.008830912411212921, -0.01565455086529255, -0.0033300011418759823, 0.013363641686737537, -0.03226910158991814, -0.004401819780468941, -0.03281455859541893, -0.037789106369018555, -0.007920002564787865, -0.020421825349330902, -0.010260003618896008, 0.024130918085575104, -0.013996369205415249, -0.008323639631271362, -0.0015681823715567589, -0.00903273094445467, -0.011181822046637535, 0.013985459692776203, 0.01716000586748123, -0.01032000407576561, -0.042567286640405655, 0.025614554062485695, 0.0015790915349498391, 0.007685457356274128, 0.014181823469698429, 0.04420365393161774, -0.021240007132291794, 0.01860000751912594, -0.05371638387441635, 0.014094551093876362, -0.02071637101471424, 0.02445819042623043, -0.034450922161340714, 0.02456728182733059, -0.03390546888113022, -0.03861819580197334, 0.019538188353180885, -0.015927279368042946, -0.028210919350385666, -0.03226910158991814, -0.018840007483959198, 0.04673456400632858, -0.00022227280715014786, 0.011650913394987583, -0.015698187053203583, 0.017181824892759323, -0.016778187826275826, -0.0005631820531561971, -0.003973637707531452, 0.02228728123009205, 0.00586363859474659, 0.01841455139219761, 0.04586183652281761, -0.00012784096179530025, -0.006812729872763157, 0.05877820402383804, -0.026334555819630623, -0.019800007343292236, -0.008149093948304653, -0.03857456147670746, 0.037178196012973785, 0.022756371647119522, 0.006310911383479834, 0.015185460448265076, 0.005080910865217447, 0.011640003882348537, -0.0037881832104176283, 0.0009579549077898264, -0.0013165913987904787, 0.013592732138931751, 0.02777455560863018, 0.008361821062862873, -0.01928728073835373, 0.001058864057995379, -0.007445457391440868, 0.004388183355331421, 0.021872734650969505, -0.009660003706812859, 0.02197091653943062, 0.03141819313168526, 0.0269236471503973, -0.02751273661851883, 0.00021971599198877811, 0.0075381845235824585, -0.03726546838879585, 0.006807275116443634, -0.0184363704174757, 0.02938910201191902, 0.01880727894604206, -0.008989093825221062, 0.004396365489810705, 0.0036354558542370796, 0.0022868190426379442, -0.021774552762508392, 0.023781826719641685, -0.026727283373475075, 0.029149102047085762, 0.020607279613614082, 0.020705461502075195, 0.026705464348196983, 0.02262546308338642, -0.024240009486675262, 0.028952738270163536, -0.012763640843331814, -0.0036927287001162767, 0.03586910292506218, 0.0026045464910566807, 0.0250691007822752, -0.020410915836691856, 0.016745461151003838, -0.0013029549736529589, 0.009861822240054607, -0.010909094475209713, 0.005667274817824364, 0.010614549741148949, -0.02849455550312996, -0.008470912463963032, 0.020858189091086388, -0.01565455086529255, -0.003030001185834408, 0.0026740918401628733, -0.01726909726858139, -0.007941820658743382, 0.021349098533391953, 0.001881818869151175, 0.019090916961431503, 0.0009075003326870501, -0.0007275002426467836, 0.03253092244267464, 0.0006562502239830792, 0.016429096460342407, -0.0033027285244315863, -0.01854546181857586, 0.026858191937208176, 0.0067636389285326, 0.007849093526601791, -0.0008761367062106729, 0.017498187720775604, -0.03141819313168526, 0.022690918296575546, 0.027207283303141594, -0.042938198894262314, -0.011530913412570953, -0.010892731137573719, 0.015130914747714996, -0.008972730487585068, 0.010941822081804276, 0.009900003671646118, -0.003316364949569106, 0.007505457382649183, 0.009305457584559917, -0.013385459780693054, -0.01613455079495907, 0.012589095160365105, 0.004606365226209164, 0.0034690923057496548, 0.015698187053203583, 0.012403640896081924, -0.016734551638364792, 0.00031977283651940525, -0.03218182921409607, -0.0023250009398907423, -0.04180365055799484, 0.019189098849892616, -0.046036381274461746, -0.0009879549033939838, 0.008967275731265545, -0.021469099447131157, -0.03994910418987274, -0.020072733983397484, -0.014421823434531689, 0.008121821098029613, -0.014083641581237316, 0.04917820170521736, -0.008230912499129772, -0.024480009451508522, 0.0014918186934664845, -0.03510546684265137, -0.023563645780086517, -0.009780003689229488, -0.028101827949285507, -0.016614550724625587, -0.012120004743337631, -0.0024218191392719746, 0.010783640667796135, -0.0021736372727900743, -0.006087274756282568, -0.045032743364572525, -0.02899637445807457, 0.0067636389285326, -0.009289094246923923, 0.014116369187831879, -0.009092730470001698, -0.014029095880687237, -0.005640001967549324, 0.030872737988829613, -0.006250911392271519, 0.03944728896021843, 0.03453819453716278, 0.030741829425096512, 0.03896728530526161, 0.010096367448568344, -0.023192735388875008, 0.002959091914817691, -0.013560005463659763, 0.025287281721830368, 0.026269100606441498, -0.034581832587718964, 0.007145456969738007, -0.010843640193343163, 0.030392738059163094, -0.02960728295147419, 0.010096367448568344, 0.014781823381781578, 0.014552732929587364, -0.000760909344535321, -0.009332730434834957, -0.007592730224132538, 0.0022540916688740253, 0.0013745459727942944, 0.002735455520451069, 0.0062727294862270355, 0.0046418197453022, -0.01989818923175335, 0.00862363912165165, -0.025374554097652435, 0.02541819028556347, 0.0027845464646816254, -0.030174557119607925, -0.05812365934252739, 0.035214558243751526, 0.005320910830050707, -0.0042872740887105465, 0.0038318196311593056, -0.049221836030483246, 0.01654909737408161, 0.04274183511734009, -0.021665463224053383, -0.0028936374001204967, 0.009207275696098804, 0.0060218204744160175, 0.03408001363277435, 0.00045647742808796465, 0.0005703411297872663, -0.020072733983397484, 0.005187274422496557, 0.014410914853215218, 0.00051988655468449, 0.021600008010864258, 0.018632734194397926, 0.042196378111839294, 0.013680005446076393, 0.005015456583350897, 0.006687275134027004, -0.0036709103733301163, 0.023890918120741844, 0.0074018207378685474, -0.010930913500487804, -0.018534552305936813, -0.030414557084441185, -0.015032732859253883, -0.027578191831707954, 0.01921091601252556, 0.02938910201191902, -0.02443637326359749, -0.016680005937814713, -0.00624000234529376, -0.025592736899852753, -0.01753091625869274, 0.01597091555595398, -0.0007472729776054621, -0.022560007870197296, 0.010963640175759792, -0.009643640369176865, 0.007167275529354811, 0.019636370241642, -0.031898193061351776, -0.016189096495509148, -0.012589095160365105, 0.00406636530533433, -0.01869818940758705, 0.0002585796464700252, 0.05223274603486061, 0.013690914027392864, 0.04396365210413933, -0.05925820395350456, -0.025134554132819176, -0.002627728274092078, -0.024523645639419556, 0.022690918296575546, 0.012043640948832035, 0.013898187316954136, -0.03787637874484062, 0.0206945538520813, 0.009474548511207104, -0.04520728811621666, 0.001095000421628356, 0.005814547650516033, 0.01284000463783741, -0.0009743185364641249, 0.009540003724396229, -0.0172472782433033, 0.016429096460342407, 0.02395637333393097, 0.00365727418102324, -0.005440911278128624, 0.03833455964922905, 0.009049094282090664, 0.0032700011506676674, 0.00403909245505929, -0.0061200023628771305, 0.0029400011990219355, -0.01248000469058752, 0.008803639560937881, 0.0018395461374893785, 0.0126654589548707, 0.018960006535053253, -0.01110000442713499, -0.03061092086136341, 0.006381820421665907, -0.015458187088370323, -0.031636375933885574, 0.03685092180967331, -0.006087274756282568, -0.011465459130704403, -0.001246364088729024, 0.0018450006609782577, 0.016200006008148193, 0.0018136369762942195, 0.026465464383363724, 0.008514548651874065, -0.015829097479581833, -0.0020904552657157183, -0.030676374211907387, 0.015632733702659607, 0.00750000262632966, 0.012054549530148506, 0.013658186420798302, -0.008874548599123955, -0.008061821572482586, 0.007598184514790773, -0.012207277119159698, -0.008247275836765766, -0.012207277119159698, -0.024610918015241623, 0.02310546301305294, 0.012098186649382114, 0.021785462275147438, -0.035716377198696136, -0.021261826157569885, -0.019941825419664383, 0.01930909790098667, 0.025396373122930527, 0.004584547132253647, -0.002445000922307372, -0.0011290913680568337, 0.011836367659270763, -0.014738187193870544, -0.019647279754281044, 0.01474909670650959, -0.013603641651570797, 0.014967278577387333, -0.0013234096113592386, 0.027687283232808113, -0.021043643355369568, -0.01358182355761528, 0.005040002055466175, 0.0014986369060352445, -0.015949096530675888, 0.022690918296575546, -0.011323640123009682, 0.006823638919740915, -0.03364364802837372, 0.015283642336726189, -0.017487280070781708, 0.017923643812537193, 0.04461819678544998, 0.00296454643830657, 0.007330911699682474, 0.018458189442753792, 0.001265455037355423, -0.013112732209265232, -0.032007284462451935, -0.02037818916141987, 0.010112730786204338, -0.04555638134479523, 0.04315637797117233, -0.005607274826616049, -0.007870911620557308, 0.00014872165047563612, 0.004440001677721739, -0.0011625004699453712, -0.0019568188581615686, 0.017738187685608864, 0.03416728600859642, 0.02530910074710846, 0.006681820843368769, -0.004786365199834108, 0.03355637565255165, -0.0029618192929774523, 0.010090912692248821, -0.005375456530600786, 0.039010923355817795, 4.4062515371479094e-05, 0.003660001326352358, 0.007729093544185162, -0.002284091664478183, -0.015589096583425999, 0.004824547097086906, 0.04472728818655014, -0.01654909737408161, 0.0069545479491353035, 0.005012729205191135, -0.0069000027142465115, 0.016570914536714554, -0.00045136379776522517, -0.03192001208662987, -0.014214551076292992, -0.0024490917567163706, 0.003035455709323287, 0.011825459077954292, -0.005383638199418783, 0.026072736829519272, 0.006365457084029913, -0.03689455986022949, 0.04132365062832832, -0.020650915801525116, 0.005820001941174269, 0.012850914150476456, -0.023018190637230873, -0.015600006096065044, -0.0003376705863047391, 0.015163642354309559, 0.02517819032073021, -0.001914546126499772, -0.038160014897584915, 0.01573091559112072, -0.031527284532785416, -0.01774909719824791, -0.00019772734958678484, -0.001015909481793642, 0.026749100536108017, 0.012469095177948475, 0.006501820404082537, -0.005994547624140978, 0.018021825700998306, 0.0002880682877730578, -0.026727283373475075, -0.022407280281186104, -0.007390911690890789, 0.013909095898270607, 0.0042709107510745525, -0.010620003566145897, 0.001127727678976953, 0.015665460377931595, -0.011269095353782177, 0.002536364598199725, -0.0318327397108078, -0.058429110795259476, -0.008361821062862873, -0.021654553711414337, -0.03198546543717384, -0.01522909663617611, -0.03477819636464119, -0.0350181944668293, 0.015360006131231785, -0.01032000407576561, -0.0008897730731405318, -0.014847278594970703, -0.006807275116443634, 0.02217818982899189, -0.00297818286344409, -0.025854555889964104, 0.01023818552494049, 0.01045091263949871, -0.02664000913500786, 0.013614550232887268, 0.01788000576198101, 0.004928183741867542, -0.03270546719431877, -0.03137455880641937, -0.017258187755942345, 0.002477728296071291, 0.028101827949285507, 0.02517819032073021, 0.028560010716319084, -0.004729092586785555, -0.02112000808119774, -0.01893818937242031, 0.005269092973321676, -0.014269095845520496, -0.03536728397011757, -0.012403640896081924, -0.019930915907025337, -0.0013779550790786743, 0.037418194115161896, 0.027600010856986046, -0.03226910158991814, 0.012174549512565136, 0.017290916293859482, -0.05284365639090538, -0.004712728783488274, 0.008427276276051998, -0.0252000093460083, -0.004303637892007828, 0.016352733597159386, 0.000888409442268312, -0.010669094510376453, 0.013014550320804119, 0.038269106298685074, -0.01621091552078724, -0.026247281581163406, -0.02037818916141987, -0.026247281581163406, 0.01412727776914835, -0.008918184787034988, 0.01161818578839302, -0.03357819467782974, -0.007260002661496401, 0.01215273141860962, -0.02260364405810833, -0.0011420458322390914, -0.0039381831884384155, 0.006681820843368769, 0.015905460342764854, -0.0004810229002032429, 0.01992000825703144, -0.002169546205550432, 0.009850912727415562, -0.01033091265708208, 0.013570914044976234, 0.010832731612026691, 0.015720006078481674, -0.0034145466051995754, -0.004767274484038353, -0.010380003601312637, 0.016494551673531532, 0.009490912780165672, -0.018927279859781265, 0.020672734826803207, -0.0006995457224547863, -0.01941818930208683, 0.007456366438418627, -0.008607275784015656, -0.03231273964047432, 0.012676368467509747, -0.0045218197628855705, -0.013298186473548412, 0.0012818186078220606, -0.008760003373026848, -0.0253309179097414, -0.0027395463548600674, 0.030021829530596733, 0.002931819297373295, -0.013494550250470638, -0.0009340912802144885, 0.003717274172231555, 0.014290913939476013, 0.0045136380940675735, 0.0054381838999688625, 0.00799636635929346, -0.01628727838397026, 0.021207280457019806, -0.01278545893728733, -0.009501821361482143, -0.001967727905139327, 0.013243641704320908, 0.0037527286913245916, 0.010445458814501762, 0.008754548616707325, -0.009316367097198963, -0.007129093632102013, 0.0339491032063961, 0.004437274299561977, -0.006114547606557608, -0.0014550004852935672, 0.021447280421853065, 0.006752729881554842, 0.02445819042623043, 0.017345460131764412, 0.0044236378744244576, 0.008803639560937881, 0.016854552552103996, 0.014138187281787395, 0.01793455146253109, 0.017890915274620056, -0.017629098147153854, 0.03220364823937416, -0.0036109103821218014, -0.033360011875629425, -0.005020910874009132, 0.013330914080142975, 0.027927283197641373, 0.012447277083992958, 0.012883640825748444, -0.00919091235846281, -0.008487275801599026, -0.024480009451508522, -0.003856365103274584, 0.002070000860840082, 0.0037936377339065075, 0.004295456223189831, -0.012883640825748444, 0.011465459130704403, 0.01265455037355423, -0.007969093509018421, -0.0011175003601238132, -0.005323638208210468, 0.02406546287238598, 0.011770913377404213, 0.00865091197192669, 0.00016909097030293196, 0.03327273949980736, -0.029650919139385223, -0.0039381831884384155, -0.020629098638892174, 0.00762000260874629, 0.02262546308338642, -0.02912728302180767, 0.03270546719431877, -0.015349096618592739, -0.0068400027230381966, 0.00017880689119920135, 0.010778185911476612, -0.03364364802837372, -0.01647273264825344, -0.03244365006685257, 0.015480006113648415, -0.002130000852048397, 0.003627273952588439, 0.0007009093533270061, -0.0038263651076704264, 0.011236367747187614, -0.0021545463241636753, 0.001515000592917204, -0.012120004743337631, 0.025963645428419113, -0.024392737075686455, 0.032989103347063065, -0.0031827285420149565, -0.04143274202942848, 0.007565457373857498, -0.002959091914817691, 0.008754548616707325, -0.012425458990037441, -0.010909094475209713, -0.015349096618592739, -0.008121821098029613, 0.01400727778673172, -0.012087277136743069, 0.010041821748018265, -0.02456728182733059, 0.016123643144965172, 0.013974550180137157, -0.028952738270163536, 0.020552735775709152, -0.009796367026865482, 0.004254546947777271, -0.012207277119159698, 0.0006719320663250983, 0.012643640860915184, 0.01077273115515709, 0.0005584093159995973, 0.014585459604859352, -0.001022727694362402, 0.030523648485541344, -0.004614547360688448, 0.008312730118632317, 0.014520005322992802, -0.003441819455474615, 0.0384654700756073, -0.011290913447737694, -0.03085092082619667, -0.0183054618537426, 0.010936367325484753, 0.001618637004867196, -0.016909096390008926, 0.013221822679042816, 0.01346182357519865, 0.008460002951323986, 0.0046118199825286865, -0.000717954826541245, -0.005912729538977146, -0.0021000008564442396, -0.021905463188886642, -0.019614553079009056, -0.016941824927926064, -0.015720006078481674, -0.0027695465832948685, 0.001442727749235928, -0.01621091552078724, -0.01639636978507042, -0.031767282634973526, 0.0003284660342615098, -0.0056890929117798805, 0.01817455142736435, 0.02262546308338642, -0.009158184751868248, -0.000983182224445045, -0.018534552305936813, -0.018283642828464508, 0.012370913289487362, 0.03320728614926338, -0.003480001352727413, 0.016298187896609306, 0.0201600082218647, 0.023258190602064133, 0.012741822749376297, 0.005064547527581453, 0.0034090920817106962, 0.010990913026034832, -0.0022540916688740253, -0.015610914677381516, 0.01364727783948183, 0.007925457321107388, 0.00020829553250223398, -0.019538188353180885, -0.005989093333482742, -0.006556366104632616, -0.005661820061504841, 0.009747276082634926, 0.010740003548562527, -0.004489092621952295, -0.007265457417815924, 0.017236370593309402, 0.010821822099387646, -0.022909099236130714, -0.019330916926264763, -0.006070911418646574, 0.02419637329876423, 0.008465457707643509, 0.003987274132668972, 0.006981820799410343, 0.004505456425249577, 0.02228728123009205, 0.0061363657005131245, -0.02910546585917473, 0.037178196012973785, -0.008465457707643509, 0.004494546912610531, -0.009496367536485195, 0.008749093860387802, -0.004420910496264696, 0.0017018187791109085, -0.03796365112066269, -0.03881455957889557, 0.005018183495849371, -0.029760010540485382, -0.0028227283619344234, -0.022156372666358948, -0.02371637150645256, -0.02554910071194172, -0.04978910833597183, 0.015949096530675888, -0.011050913482904434, 0.018294552341103554, -0.012240004725754261, -0.026705464348196983, -0.00562363862991333, 0.006098184268921614, 0.01002545841038227, 0.007543639279901981, 0.04634183645248413, -0.0172472782433033, -0.006660002283751965, -0.0012593186693266034, -0.012578186579048634, -0.004033637698739767, 0.014880005270242691, -0.00952363945543766, 0.004857274703681469, -0.012196368537843227, -0.0020836370531469584, 0.017945460975170135, -0.0116727314889431, 0.005170911084860563, -0.009807276539504528, -0.02814546413719654, 0.004096365068107843, -0.008629093877971172, -0.0281236469745636, 0.022581826895475388, 0.005972729530185461, -0.020225461572408676, -0.01695273444056511, 0.01500000525265932, -0.02616000920534134, -0.0055909110233187675, 0.0028745464514940977, -0.018709097057580948, 0.014607277698814869, 0.007870911620557308, 0.0028936374001204967, 0.010892731137573719, -0.008645458146929741, -0.0026659101713448763, 0.011476367712020874, -0.005078183487057686, -0.006196366157382727, -0.0010677276877686381, 0.009752730838954449, 0.020814552903175354, -0.009452730417251587, 0.01743273437023163, -0.00496636563912034, 0.02238546311855316, -0.01610182411968708, -0.011389095336198807, 0.004208183381706476, -0.011018185876309872, 0.01020000409334898, 0.011509095318615437, 0.00016968756972346455, 0.00016082392539829016, 0.008874548599123955, -0.0033081830479204655, -0.0008175002876669168, -0.0033272739965468645, 0.017574552446603775, 0.0017672734102234244, -0.0132000045850873, 0.0027640918269753456, -3.2572809232078725e-06, 0.022156372666358948, -0.00930000375956297, 0.00843818485736847, -0.008514548651874065, -0.02716364711523056, 0.009769094176590443, 0.012436368502676487, -0.018850915133953094, 0.013538186438381672, 0.0059236385859549046, 0.009054549038410187, -0.00051988655468449, -0.002492728177458048, -0.024632737040519714, 0.02886546589434147, -0.008127275854349136, 0.010740003548562527, -0.004832729231566191, -0.01721455156803131, -0.024000009521842003, -0.006632729899138212, 0.01912364363670349, 0.005880002398043871, 0.020007280632853508, -0.017596369609236717, 0.03837819769978523, 0.019516371190547943, -0.0006811366183683276, 0.007167275529354811, 0.007380002643913031, 0.018130915239453316, -0.014018187299370766, -0.0036109103821218014, 0.00021340916282497346, 0.0023263643961399794, -0.0019240916008129716, -0.004276365041732788, 0.015141823329031467, 0.009447276592254639, 0.007429093588143587, -0.02655273675918579, -0.020923644304275513, -0.013876369222998619, -0.012752732262015343, 0.0016363642644137144, 0.012272731401026249, -0.03144001215696335, -0.002085000742226839, 0.005135456565767527, 0.007369093596935272, 0.020520007237792015, -0.010216367430984974, -0.005558183882385492, 0.00795818492770195, -0.03881455957889557, 0.0024750009179115295, -0.004461819771677256, -0.010707276873290539, -0.010920003987848759, 0.014738187193870544, 0.0005400002119131386, -0.02125091664493084, -0.013778187334537506, -0.02323637157678604, 0.010614549741148949, 0.015141823329031467, -0.01997455209493637, 0.04529456049203873, -0.0003961365146096796, -0.021316371858119965, -0.0270545557141304, 0.03240001201629639, 0.01663636974990368, -0.005934547632932663, -0.01400727778673172, 0.03194183111190796, -0.00776727544143796, 0.010816367343068123, -0.026945464313030243, -0.024654554203152657, -0.03174546733498573, -0.015501824207603931, -0.00181090971454978, 0.010112730786204338, -0.0015490915393456817, -0.02358546294271946, -0.0014277277514338493, 0.015370914712548256, -0.005271820351481438, -0.0013990914449095726, -0.008138184435665607, -0.0006753411726094782, -0.038160014897584915, 0.01634182408452034, -0.00480272900313139, 0.004800001624971628, 0.0024368190206587315, 0.029956374317407608, -0.009758185595273972, 0.040494561195373535, 0.0046118199825286865, 0.0191018246114254, 0.006540002301335335, -0.015720006078481674, -0.012676368467509747, 0.026749100536108017, 0.004347274545580149, -0.0027054555248469114, -0.013800005428493023, 0.0020645461045205593, -0.012392732314765453, 0.03061092086136341, 0.004674547351896763, 0.013854550197720528, -0.018130915239453316, -0.018021825700998306, -0.005503638181835413, -0.01750909723341465, -0.010892731137573719, 0.0191018246114254, -0.0167127326130867, -0.009894548915326595, -0.010963640175759792, -0.01155273150652647, -0.009916367009282112, 0.03216001018881798, -0.004849092569202185, -0.0027709100395441055, 0.03589092195034027, -0.031025465577840805, -0.007723639253526926, -0.005967274773865938, -0.007750912103801966, -0.016625460237264633, -0.029781829565763474, -0.020312733948230743, -0.025876373052597046, -0.04066910594701767, 0.01599273271858692, -0.03120001219213009, 0.0025800010189414024, -0.033469103276729584, 0.00921818520873785, 0.03514910489320755, 0.014334551058709621, -0.024741826578974724, 0.01740000583231449, 0.0068563660606741905, 0.014956369064748287, -0.0007834093994461, -0.00103977310936898, -0.018152734264731407, -0.009223639965057373, 0.036327287554740906, 0.017421824857592583, -0.01626546122133732, -0.010658185929059982, 0.009856367483735085, -0.004074546974152327, 0.000764318450819701, 0.009736367501318455, -0.0007520457147620618, -0.01462909672409296, -0.0019104552920907736, -0.03416728600859642, 0.03379637748003006, 0.00020846597908530384, -0.003908183425664902, 0.022407280281186104, -0.0299781933426857, -0.010914549231529236, -0.012010913342237473, 0.0004101137747056782, -0.028538191691040993, 0.0026768192183226347, 0.0008747730753384531, 0.009130912832915783, 0.017072733491659164, 0.008901821449398994, 0.01265455037355423, 0.03781092166900635, 0.013669095933437347, -0.007505457382649183, 0.027490919455885887, -0.007587275467813015, 0.041847288608551025, -0.02432728186249733, 0.002307273680344224, 0.003460910404101014, 0.004494546912610531, -0.021130917593836784, -0.01436727773398161, -0.017650915309786797, -0.026116373017430305, -0.002885455498471856, -0.024240009486675262, -0.007789094001054764, 0.026945464313030243, -0.004290001466870308, -0.0009340912802144885, 0.01469455100595951, -0.016810914501547813, 0.0013090913416817784, 0.016920005902647972, -0.0025977282784879208, 0.0031881830655038357, -0.0007050002459436655, -0.01203273143619299, 0.007576366420835257, -0.02469819039106369, 0.004000910557806492, 0.004440001677721739, -0.005667274817824364, 0.0032481830567121506, -0.020236371085047722, 0.004993638023734093, 0.004630910698324442, 0.003951819613575935, 0.00931091234087944, -0.00624000234529376, -0.024763645604252815, 0.005010001827031374, -0.004494546912610531, 0.012796368449926376, 0.01136727724224329, 0.008007275871932507, 0.0038372741546481848, 0.005034547299146652, -0.005476365797221661, -0.005151819903403521, 0.005378183908760548, -0.0021190918050706387, -0.005176365375518799, 0.009758185595273972, 0.01626546122133732, 0.0032154556829482317, -0.030894557014107704, -0.0012211367720738053, -0.008154548704624176, 0.017672734335064888, -0.005989093333482742, 0.009774548932909966, -0.014530914835631847, -0.014301823452115059, -0.00823636632412672, 0.0007943184464238584, 0.0020304552745074034, 0.021872734650969505, -0.0010465913219377398, 0.00801273062825203, -0.018949097022414207, -0.006098184268921614, 0.009501821361482143, 0.005061820149421692, 0.020869098603725433, -0.006381820421665907, 0.01161818578839302, -0.005781820509582758, 0.02262546308338642, 0.0018477279227226973, 0.004903638269752264, 0.0015940915327519178, -0.0019513643346726894, -0.00823636632412672, 0.022265462204813957, -0.02655273675918579, 0.005749092902988195, -0.005803638603538275, 0.008569094352424145, -0.010194549337029457, 0.014378187246620655, 0.0022131826262921095, 0.007641821168363094, 0.00442909263074398, 0.0008365912362933159, -0.025745464488863945, 0.006441820412874222, 0.022221826016902924, 0.009049094282090664, 0.0006685229600407183, 0.03405819460749626, -0.015600006096065044, 0.007652730215340853, 0.0010343185858801007, 0.001940455287694931, 0.0033218194730579853, -0.012283640913665295, -0.005705456715077162, 0.008956367149949074, -0.0022636372596025467, -0.0026604554150253534, 0.008661821484565735, -0.00879273097962141, 0.014880005270242691, 0.0010609094751998782, 0.012992732226848602, -0.01599273271858692, 0.006180002354085445, 0.00019176142814103514, 0.012698186561465263, 0.014476369135081768, -0.01793455146253109, -0.01608000509440899, 0.011236367747187614, -0.006103638559579849, -0.01737818866968155, 0.006409093271940947, -0.002190000843256712, 0.007129093632102013, -0.00574363861232996, 0.012981822714209557, 0.017705461010336876, -0.034843649715185165, -0.013167277909815311, -0.008034548722207546, -0.009076367132365704, 0.02408728189766407, -0.009103639982640743, 0.01634182408452034, 0.01689818874001503, -0.007532730232924223, 0.005010001827031374, -0.00907091237604618, -0.0005815910990349948, 0.0031118192709982395, 0.008863640017807484, 0.013876369222998619, 0.011585459113121033, -0.0022581827361136675, -0.006463638972491026, 0.012240004725754261, 0.0006088638328947127, 0.010521821677684784, 0.028232738375663757, 0.00244772806763649, -0.018523642793297768, -0.005457274615764618, 0.022581826895475388, 0.015829097479581833, 0.00511363847181201, 0.01949455216526985, 0.0026454555336385965, 0.00891273096203804, 0.017781823873519897, 0.01804364286363125, 0.008672730065882206, 0.015850914642214775, 0.005020910874009132, -0.0027177282609045506, 0.01971273496747017, -0.022800007835030556, -0.0018777279183268547, -0.003540001343935728, -0.02666182816028595, 0.021632734686136246, 0.006420002318918705, -0.006283638533204794, -0.004401819780468941, 0.0028172738384455442, 0.005661820061504841, 0.0126654589548707, -0.01160727720707655, 0.01695273444056511, 0.0068400027230381966, 0.0104127312079072, 0.01026545837521553, 0.008481821045279503, -0.009000003337860107, -0.0022581827361136675, 0.005061820149421692, -0.020170915871858597, 0.007745457347482443, 0.008509093895554543, 0.004309092648327351, -0.011781822890043259, -0.020541826263070107, -0.011143640615046024, 0.01695273444056511, -0.03416728600859642, 0.00916363950818777, 0.008378185331821442, -0.015261824242770672, -0.006365457084029913, 0.02384728193283081, 0.017280006781220436, -0.009370912797749043, -0.02631273679435253, 0.023018190637230873, -0.00036579559673555195, -0.017858188599348068, -0.025527281686663628, 0.014083641581237316, -0.0064690932631492615, 0.007870911620557308, -0.0002909660106524825, -0.02262546308338642, 0.02443637326359749, -0.0040281834080815315, -0.0023590917699038982, 0.014530914835631847, 0.002877273829653859, -0.008176366798579693, -0.0073854574002325535, 0.0397963784635067, -0.010216367430984974, 0.017290916293859482, 0.02912728302180767, 0.01522909663617611, -0.02504728175699711, 0.0013015914009884, -0.005803638603538275, -0.00040056832949630916, -0.01750909723341465, 0.013658186420798302, 0.003957274369895458, 0.0004534092440735549, 0.010963640175759792, -0.026443645358085632, -0.0016036370070651174, 0.002432728186249733, 0.009774548932909966, 0.0070309117436409, 0.013898187316954136, -0.005563638638705015, 0.0006698865909129381, 0.0025881826877593994, 0.017345460131764412, -0.012261822819709778, -0.001902273390442133, 0.0012320459354668856, 0.031178193166851997, 0.008940002880990505, -0.013538186438381672, -0.02056364342570305, -0.011023640632629395, 0.019440006464719772, 0.0202909167855978, 0.0007118184585124254, -0.0023427281994372606, -0.009049094282090664, -0.007276366464793682, 0.0116727314889431, 0.0031254556961357594, -0.0025009100791066885, -0.019276371225714684, -0.008601821027696133, -0.006872729863971472, -0.007112729828804731, -0.008394548669457436, -0.031658194959163666, -0.019625462591648102, 0.023781826719641685, 0.013930913992226124, -0.004767274484038353, 0.017094552516937256, 0.0027900009881705046, 0.009250912815332413, 0.030632738023996353, -0.0068563660606741905, 0.0116727314889431, 0.00023846600379329175, 0.03344728425145149, -0.003730910364538431, 0.013810914009809494, -0.0013009095564484596, -0.013363641686737537, 0.01229455042630434, 0.008580002933740616, -6.759590633009793e-06, 0.0032945466227829456, 0.00679091177880764, -0.002997273812070489, 0.007418184541165829, -0.005765456706285477, 0.016701824963092804, 0.007516366429626942, -0.01825091615319252, -0.0010275003733113408, 0.0063709113746881485, 0.0015300005907192826, 0.019080007448792458, -0.0044236378744244576, -0.0008031821344047785, 0.007281820755451918, 0.008700002916157246, 0.0010500004282221198, -0.0007963639218360186, 0.0026031828019768, -2.0870036678388715e-05, 0.004306365270167589, -0.00024221600324381143, -0.003848183201625943, 0.030632738023996353, -0.018294552341103554, 0.007129093632102013, 0.004996365401893854, 0.0040827286429703236, 0.0021395462099462748, 0.0036900013219565153, 0.0002517614630050957, 0.016200006008148193, -0.030807284638285637, -0.01046727690845728, -0.005694547668099403, 0.006512729451060295, -0.005236365366727114, 0.004194546956568956, -0.0020031826570630074, 0.006987275090068579, 0.032880011945962906, 0.00930000375956297, 0.004911819938570261, 0.007652730215340853, -0.015196369029581547, -0.010800004005432129, 0.019450915977358818, -0.01886182464659214, 0.015501824207603931, 0.018643643707036972, -0.003231819486245513, 0.00562363862991333, -0.016440005972981453, -0.0015490915393456817, -0.0029454557225108147, 0.0010772731620818377, 0.004707274492830038, 0.005228183697909117, 0.017410915344953537, -0.005945456679910421, 0.00044931835145689547, -0.004440001677721739, 0.03272728621959686, -0.02729455567896366, 0.003152728546410799, 0.004701819736510515, -0.005315456539392471, 0.011825459077954292, 0.01904727891087532, 0.0051054563373327255, -0.01524000521749258, 0.00952363945543766, -0.020650915801525116, -0.015065460465848446, -0.020978190004825592, 0.0003586364910006523, 0.0003756819642148912, -0.00016977278573904186, 0.00817091204226017, 0.009027276188135147, -0.014520005322992802, -0.02592000924050808, 0.010232730768620968, -0.003968183416873217, 0.0017918188823387027, -0.026029100641608238, 0.01053273119032383, 0.01412727776914835, -0.007974548265337944, -0.0021081825252622366, -0.01112727727741003, -0.004530001897364855, -0.01143273152410984, 0.040014561265707016, -0.003951819613575935, -0.012883640825748444, 0.021796371787786484, -0.00362181942909956, -0.0299781933426857, -0.03981819748878479, 0.01185818575322628, 0.01721455156803131, -0.012850914150476456, -0.01032000407576561, 0.016647279262542725, 0.027687283232808113, -0.022930918261408806, -0.01023818552494049, 0.0013486368115991354, 0.019745461642742157, -0.03720001503825188, -0.017389098182320595, 0.018610915169119835, -0.003305455669760704, 0.010047276504337788, -0.007783639244735241, 0.020792735740542412, -0.0046118199825286865, 0.013101822696626186, 0.008590912446379662, 0.014269095845520496, -0.0045654564164578915, 0.012523640878498554, 0.013538186438381672, 0.004489092621952295, 0.011203640140593052, 0.012392732314765453, -0.013909095898270607, -0.007461820729076862, 0.0057327295653522015, -0.025483645498752594, 0.01522909663617611, 0.0003240342193748802, 0.0026863645762205124, 0.014454551041126251, 0.0014850005973130465, 0.011880004778504372, 0.03229092061519623, -0.008563639596104622, 0.010494549758732319, 0.0008543184958398342, -0.016690915450453758, -0.020629098638892174, -0.009632730856537819, -0.013123640790581703, -0.005408183671534061, 0.010396367870271206, 0.008607275784015656, -0.009054549038410187, -0.018665460869669914, 0.03137455880641937, 0.0023645462933927774, -0.021338189020752907, -0.005560911260545254, 0.008094548247754574, 0.008280003443360329, 0.0056727295741438866, -0.004009092226624489, 0.007309093605726957, -0.005961820483207703, -0.0012306822463870049, 0.012610914185643196, -0.0067581841722130775, -0.004876365419477224, 0.013287277892231941, -0.022058190777897835, -0.028800010681152344, 0.013549095951020718, 0.004404547158628702, -0.008727275766432285, 0.010352730751037598, 0.018501825630664825, -0.005465456750243902, 0.0029290919192135334, -0.008209094405174255, -0.006583638954907656, -0.0015054551186040044, 0.004453638102859259, 0.01912364363670349, 0.018425460904836655, -0.0011263641063123941, -0.001685455208644271, -0.01517455093562603, 0.009938185103237629, 0.0029863647650927305, -0.030916374176740646, 0.01124727725982666, -0.01248000469058752, 0.0360872857272625, -0.009387276135385036, 0.022821826860308647, -0.015643641352653503, 0.01917818933725357, -0.016909096390008926, 0.0018927279161289334, -0.01474909670650959, 0.008061821572482586, 0.0028281828854233027, 0.021818188950419426, 0.016014551743865013, -0.0027150011155754328, -0.015076369047164917, -0.026203645393252373, 0.001088182209059596, -0.03174546733498573, -0.02220000885426998, 0.009992730803787708, -0.00823636632412672, 0.010870913043618202, -0.0031881830655038357, -0.008154548704624176, 0.007265457417815924, 0.0024750009179115295, -0.009621821343898773, -0.0034336375538259745, 0.018185460940003395, -0.002530910074710846, -0.006294547580182552, -0.00691091176122427, -0.004096365068107843, 0.007450911682099104, 0.012174549512565136, 0.00900545809417963, -0.007134547922760248, -0.00595636572688818, -0.007598184514790773, -0.021578188985586166, 0.010800004005432129, 0.03268364816904068, -0.011803640983998775, 0.00035693193785846233, -0.010936367325484753, -0.005896365735679865, -0.005209092982113361, -0.012578186579048634, -0.01179273147135973, 0.002524091862142086, 0.0034854558762162924, -0.005781820509582758, -0.009632730856537819, 0.003801819635555148, 0.002322273561730981, 0.004625456407666206, -0.023258190602064133, -0.00636000232771039, -0.008094548247754574, -0.006343638524413109, -0.015458187088370323, -3.311080945422873e-05, -0.01260000467300415, 0.002224091673269868, -0.005803638603538275, 0.008934549055993557, 0.021185463294386864, 0.019112734124064445, 0.00038965922431088984, 0.009725457988679409, 0.0023645462933927774, 0.020280007272958755, 0.05712002143263817, 0.023803645744919777, -0.003114546649158001, -0.0017413642490282655, -0.006054547615349293, 0.004974547307938337, -0.01524000521749258, -0.013058186508715153, 0.021654553711414337, 0.004153637681156397, -0.014345459640026093, -0.008127275854349136, 0.0030136373825371265, 0.04027637839317322, 0.020541826263070107, -0.010232730768620968, -0.00033068194170482457, -0.020498190075159073, 0.0017195460386574268, 0.006709093227982521, -0.013680005446076393, -0.00912545807659626, 0.014530914835631847, -0.0022636372596025467, 0.005858183838427067, 0.009065457619726658, -0.001071136794053018, 0.006709093227982521, 0.015589096583425999, -0.00466909259557724, 0.021600008010864258, 0.0015177278546616435, 0.01394182350486517, 0.009845457971096039, -0.0035236377734690905, -0.03178910166025162, 0.00916363950818777, 0.025745464488863945, 0.027447283267974854, 0.028058191761374474, -0.0029427283443510532, 0.000697159324772656, -0.01676727831363678, 0.011956367641687393, 0.03392728418111801, -0.008067275397479534, 0.018294552341103554, -0.0052472748793661594, -0.010963640175759792, 0.014269095845520496, -0.011716367676854134, -0.006730911787599325, -0.0031881830655038357, 0.002372728195041418, 0.006709093227982521, -0.0015750005841255188, -0.010701822116971016, -0.0185672789812088, 0.0023045463021844625, -0.015927279368042946, -0.0013731822837144136, -0.0003277842188253999, 0.001809546141885221, 0.01215273141860962, -0.0007254548254422843, 0.0013329550856724381, -0.012338186614215374, 0.021905463188886642, -0.018480006605386734, -0.014149095863103867, 0.0009150003315880895, -0.01695273444056511, -0.014683641493320465, -0.04389819875359535, 0.022276371717453003, -0.00740727549418807, 0.004257274325937033, 0.015523642301559448, 0.0008877275977283716, 0.012381822802126408, 0.018534552305936813, 0.007161820773035288, -0.003390001365914941, 0.0034254558850079775, 0.00907091237604618, 0.022320007905364037, -0.006087274756282568, 0.013265459798276424, -0.0214909166097641, 0.017312733456492424, 0.0028690919280052185, 0.0026113647036254406, -0.01893818937242031, -0.018872734159231186, 0.00731454836204648, 0.00916363950818777, 0.015632733702659607, 0.0028827283531427383, 0.024392737075686455, -0.004993638023734093, -0.013570914044976234, -0.009556367062032223, -0.03597819432616234, 0.001520455116406083, 0.016189096495509148, -0.020192734897136688, -0.006812729872763157, 0.00014897732762619853, 0.0032154556829482317, 0.00638727517798543, -0.023890918120741844, 0.0031881830655038357, 0.011945459060370922, -0.002649546368047595, 0.015141823329031467, -0.003057273803278804, -0.002811819314956665, -0.007800003048032522, -0.005776365753263235, 0.0018940916052088141, -0.02664000913500786, -0.008252730593085289, 0.007860003039240837, 0.008874548599123955, 0.007849093526601791, -0.007696366403251886, -0.017170915380120277, 0.01395273208618164, 0.014858187176287174, -0.0035290922969579697, -0.025527281686663628, -0.011661822907626629, -0.005727274809032679, -0.011923640966415405, 0.0037200013175606728, -0.0070309117436409, -0.01921091601252556, 0.004720910917967558, 0.011989095248281956, 0.007429093588143587, -0.006736366078257561, -0.012970914132893085, 0.01639636978507042, 0.014618187211453915, -0.018501825630664825, 0.014378187246620655, 0.007025456987321377, 0.004685456398874521, -0.001692273304797709, 6.217331974767148e-05, -0.00993273127824068, -0.005168183706700802, -0.02225455455482006, 0.0022322735749185085, -0.024523645639419556, 0.015480006113648415, -0.020116370171308517, 0.016887279227375984, 0.004276365041732788, -0.012316368520259857, 0.012240004725754261, -0.02493819035589695, -0.006949093658477068, -0.011803640983998775, -0.016178186982870102, -0.01034727692604065, -0.001737273414619267, 0.0051490929909050465, -0.05144729092717171, 0.009916367009282112, -0.00405272888019681, -0.009480003267526627, -0.03835637867450714, -0.02262546308338642, 0.01997455209493637, 0.01997455209493637, -0.0070527298375964165, 0.02801455557346344, 0.025483645498752594, 0.007565457373857498, -0.020389098674058914, -0.008361821062862873, 0.006398184224963188, -0.024480009451508522, -0.003578183241188526, 0.007827275432646275, -0.026967283338308334, -0.001528636901639402, -0.007047275546938181, 0.021741826087236404, -0.012469095177948475, -0.010407276451587677, 0.0031636375933885574, 0.008252730593085289, -0.014967278577387333, -1.2272731510165613e-05, -0.0010452276328578591, 0.0026522737462073565, -0.0017972734058275819, -0.00709636602550745, 0.007794548291712999, -0.011334549635648727, -0.0008802275988273323, 0.014781823381781578, -0.011760004796087742, 0.016276368871331215, 0.011716367676854134, -0.0282545555382967, -0.005064547527581453, -0.004497274290770292, 0.005402729380875826, -0.03058910183608532, 0.0011815913021564484, -0.005239092744886875, 0.013538186438381672, 0.0046281833201646805, -0.003264546627178788, 0.0054000020027160645, -0.0004919319762848318, -0.013909095898270607, 0.013101822696626186, 0.0018859098199754953, 0.014465459622442722, 0.0022200008388608694, -0.02480728179216385, -0.017280006781220436, -0.016690915450453758, 0.04361456260085106, -0.026269100606441498, -0.02801455557346344, 0.003021819284185767, -0.011258185841143131, -0.017050914466381073, -0.01832727901637554, -0.008596367202699184, 0.0018081824528053403, -0.005852729547768831, -0.0082909120246768, -0.020181825384497643, -0.018665460869669914, 0.02238546311855316, 0.03966546803712845, -0.003739092266187072, 0.0069000027142465115, -4.264028575562406e-06, -0.009954549372196198, -0.00822545774281025, 0.035803649574518204, -0.0016431824769824743, 0.018403643742203712, -0.014716369099915028, -0.012436368502676487, -0.03362182900309563, 0.0036490922793745995, -0.014225459657609463, 0.001986818853765726, -0.009889094159007072, -0.020618189126253128, 0.002997273812070489, -0.01173818577080965, 0.002959091914817691, -0.0017277279403060675, -0.020127279683947563, -0.03283637762069702, -0.001101818634197116, -0.022036371752619743, 0.0021027280017733574, 0.01782546192407608, -0.011770913377404213, 0.006207275204360485, 0.03048001043498516, 0.03408001363277435, 0.004311819560825825, -0.017781823873519897, -0.00996000412851572, -0.0026740918401628733, -0.0021886371541768312, -0.007374548353254795, -0.012283640913665295, -0.010941822081804276, -0.0031118192709982395, 0.012632732279598713, -0.002379546407610178, -0.005239092744886875, -0.002113637048751116, -0.025025464594364166, -0.010641821660101414, 0.00042306832619942725, 0.0066054570488631725, -0.012567277066409588, 0.02271273545920849, -0.0012354550417512655, 0.004003637935966253, -0.00442909263074398, 0.002545909956097603, -0.012469095177948475, 0.019592734053730965, 0.028472738340497017, 0.0036436377558857203, 0.023170918226242065, 0.003962728660553694, 0.0024163646157830954, -0.015698187053203583, -0.028341827914118767, -0.01185818575322628, 0.00595636572688818, 0.010123640298843384, 0.022276371717453003, 0.016560006886720657, -0.013090914115309715, -0.011760004796087742, 0.008127275854349136, 0.012174549512565136, 0.004325455985963345, 0.006278184242546558, -0.01203273143619299, 0.014563641510903835, -0.005162728950381279, 0.021207280457019806, -0.007445457391440868, 0.009141821414232254, 0.003300001146271825, 0.007352729793637991, -0.009414548985660076, 0.007281820755451918, 0.019036371260881424, -0.00031482966733165085, -0.0021000008564442396, -0.018850915133953094, -0.006169093307107687, 0.029323646798729897, -0.015152732841670513, 0.00688363891094923, 0.01626546122133732, -0.011290913447737694, 0.009174549020826817, -0.010603640228509903, -0.003987274132668972, 0.008798184804618359, -0.022887282073497772, -0.006921820808202028, 0.00586363859474659, 0.027840010821819305, -0.0019500007620081306, 0.015021823346614838, -0.0037527286913245916, 0.0007356820860877633, 0.0022663644049316645, 0.012796368449926376, 0.0016895460430532694, 0.03586910292506218, 0.01801091618835926, -0.015720006078481674, 0.010990913026034832, 0.01241455040872097, -0.002648182911798358, 0.02962910197675228, -0.00876545812934637, 0.04433456063270569, 0.008149093948304653, -0.010030913166701794, -0.02308364398777485, 0.014040005393326283, -0.012927277944982052, 0.003864546772092581, -0.03480001166462898, 0.009212730452418327, -0.003736365120857954, -0.007641821168363094, 0.013014550320804119, -0.008760003373026848, 0.026880009099841118, 0.03196364641189575, 0.009278185665607452, 0.015643641352653503, -0.006343638524413109, -0.01869818940758705, 0.039120014756917953, 0.02360728196799755, -0.01553455088287592, -0.00931091234087944, -0.0027368192095309496, 0.006610911339521408, -0.013407277874648571, 0.02199273556470871, 0.003343637567013502, 0.0013322732411324978, 0.025090917944908142, 0.018829097971320152, -2.5008887405419955e-06, 0.02045455388724804, -0.016865460202097893, 0.00823636632412672, -0.013101822696626186, -0.002255455357953906, -0.004941820167005062, -0.0035127284936606884, 0.008487275801599026, 0.010990913026034832, 0.019745461642742157, 0.012687277048826218, 0.01023818552494049, 0.0070527298375964165, 0.016854552552103996, -0.013538186438381672, 0.007112729828804731, -0.00014463072875514627, -0.005331820342689753, 0.0005918184178881347, 0.012065459042787552, 0.002044091699644923, 0.002124546328559518, 0.014170913957059383, -0.011465459130704403, -0.02421819046139717, -0.029018191620707512, 0.02173091657459736, -0.06226911395788193, -0.0025950009003281593, 0.002814546460285783, 0.030196374282240868, 0.0013718187110498548, 0.005359092727303505, -0.007810912095010281, -0.013734550215303898, 0.028538191691040993, -0.025265464559197426, 0.007194547913968563, -0.027927283197641373, -0.016440005972981453, -0.019090916961431503, -0.007200002670288086, 0.019756371155381203, -0.001645909738726914, 0.005560911260545254, -0.016625460237264633, -0.006665457040071487, -0.012687277048826218, 0.0018804552964866161, 0.012949096038937569, -0.0032072740141302347, 0.027578191831707954, -0.01621091552078724, -0.017203642055392265, 0.020629098638892174, -0.006229093298316002, -0.015829097479581833, -0.029672738164663315, -0.01185818575322628, 0.002202273579314351, 0.004928183741867542, 0.006261820439249277, -0.0012702277163043618, 0.0009306821739301085, -0.0042709107510745525, -0.021054552868008614, 0.01806546188890934, -0.011378185823559761, -0.008520003408193588, 0.009829094633460045, 0.01008000411093235, 0.011956367641687393, -0.01687636971473694, 0.016330914571881294, -0.005089092999696732, 0.0017781824572011828, -0.0015627278480678797, 0.0010336367413401604, -0.02530910074710846, -0.009676367044448853, 0.006087274756282568, 0.012272731401026249, -0.034232739359140396, 0.012807277031242847, -0.0202909167855978, -0.004510910715907812, 0.002117728115990758, 0.009327276609838009, 0.00790363922715187, 0.0014440914383158088, -0.0032072740141302347, 0.013189096003770828, 0.0017072733025997877, -0.0006617048056796193, 0.028429102152585983, 0.001131136785261333, 0.014018187299370766, -0.03037092089653015, -0.007227275520563126, -0.0026004554238170385, -0.0018272734014317393, -0.01284000463783741, -0.0044672745279967785, 0.015600006096065044, -0.008089093491435051, -0.002202273579314351, 0.0005089774494990706, 0.014160005375742912, 0.005890911445021629, 0.02888728305697441, -0.019003642722964287, -0.006289093289524317, -0.005370001774281263, -0.003856365103274584, 0.004448183346539736, 0.002653637435287237, -0.013669095933437347, 0.032749101519584656, 0.00960545800626278, -0.009529094211757183, 0.008738185279071331, 0.012185459025204182, -7.035514136077836e-05, 0.0019636370707303286, 0.014738187193870544, 0.01570909656584263, 0.004933638032525778, -0.026836372911930084, -0.021392734721302986, 0.0027818193193525076, 0.019778188318014145, 0.012621822766959667, -0.011454549618065357, -0.036305468529462814, 0.015272732824087143, -0.008645458146929741, 0.02764364704489708, 0.031505465507507324, -0.0004605683498084545, -0.012643640860915184, 0.014770914800465107, -0.015283642336726189, 0.03848728537559509, -0.006310911383479834, -0.00207954621873796, -0.006540002301335335, 0.010898185893893242, 0.0027000010013580322, -0.024021826684474945, 0.0009436366963200271, -0.009480003267526627, 0.028080010786652565, -0.016090914607048035, -0.015283642336726189, 0.0037663651164621115, -0.00580909289419651, 0.0092836394906044, -0.0024354553315788507, 0.0060218204744160175, 0.0031827285420149565, 0.012392732314765453, 0.01400727778673172, 0.005162728950381279, -0.024872737005352974, -0.03918546810746193, -0.01608000509440899, -0.0037009103689342737, -0.005241820123046637, -0.006010911427438259, 0.02849455550312996, -0.00259636458940804, -0.01160727720707655, -0.022210916504263878, 0.02021455205976963, -0.015643641352653503, 0.023781826719641685, 0.004150910768657923, -0.0008400002843700349, 0.004617274273186922, 0.0334254652261734, 0.016669096425175667, 0.008372730575501919, 0.009965457953512669, -0.02217818982899189, -0.0005345456302165985, 0.002203637268394232, 0.022276371717453003, -0.009327276609838009, -0.012196368537843227, -0.0002597728162072599, 0.01424727775156498, -0.036436375230550766, 0.006927275098860264, 0.01095818541944027, 0.018240006640553474, -0.04389819875359535, -0.027490919455885887, 0.007723639253526926, 0.015425460413098335, 0.014258187264204025, 0.01277455035597086, 0.010325457900762558, -0.005318183917552233, -0.021152734756469727, 0.00865091197192669, -0.0016568187857046723, 0.002379546407610178, 0.029214555397629738, 0.00786545779556036, -0.009720003232359886, -0.00522000202909112, 0.0015177278546616435, -0.01846909709274769, -0.005972729530185461, 0.029410919174551964, 0.003548183012753725, -0.008340002968907356, 0.025265464559197426, 0.008961821906268597, 0.0022540916688740253, 0.0005693183629773557, 0.018000006675720215, -0.006889093667268753, 0.0048463656567037106, 0.01599273271858692, -0.005765456706285477, -6.669036520179361e-05, 0.02592000924050808, -0.004881820175796747, -0.005421820096671581, -0.027207283303141594, 0.0013254550285637379, 0.01793455146253109, -0.0026577282696962357, 0.0006303411209955812, 0.000631704751867801, -0.02938910201191902, -0.0101454583927989, 0.0021681825164705515, 0.01995273493230343, 0.015643641352653503, 0.0020290915854275227, 0.003848183201625943, 0.014978187158703804, 0.0041263652965426445, -0.0058854566887021065, 0.017596369609236717, 0.0018381824484094977, -0.004609092604368925, 0.002123182639479637, -0.01346182357519865, 0.013407277874648571, -0.013058186508715153, 0.029432738199830055, 0.0014181823935359716, 0.029149102047085762, 0.023781826719641685, 0.013243641704320908, -0.008967275731265545, 0.027338191866874695, 0.018403643742203712, 0.02336728200316429, 0.010587276890873909, 0.005803638603538275, 0.004194546956568956, 0.00013201709953136742, 0.005394547246396542, -0.015032732859253883, -0.002243182621896267, -7.713070954196155e-05, 0.009120003320276737, -0.010314549319446087, -0.008743640035390854, -0.023869099095463753, -0.002635910175740719, -0.0020481825340539217, 0.006010911427438259, -0.022189099341630936, 0.01131273154169321, -0.022341826930642128, 0.0015490915393456817, -0.004071819595992565, -0.014214551076292992, 0.019058188423514366, 0.020978190004825592, 0.022210916504263878, 0.015545460395514965, -0.007178184576332569, 0.00688363891094923, 0.0071509117260575294, -0.0062563661485910416, -0.006589093245565891, -0.015327278524637222, -0.0022322735749185085, -0.04341819882392883, -0.010898185893893242, -0.002097273478284478, 0.004532728809863329, -0.00376363773830235, 0.01284000463783741, -0.02888728305697441, -0.021294552832841873, -0.038007285445928574, -0.011530913412570953, -0.030130920931696892, 0.015098187141120434, 0.004770001862198114, -0.013494550250470638, -0.009223639965057373, -0.0007445457158610225, 0.01046727690845728, 0.011465459130704403, -0.002196819055825472, -0.020356371998786926, 0.019560007378458977, -0.004249092657119036, 0.0015654551098123193, -0.013254550285637379, 0.010870913043618202, 0.010390913113951683, 0.004330910742282867, -0.05616002157330513, 0.013178186491131783, 0.01260000467300415, -0.018185460940003395, -0.017792733386158943, 0.012010913342237473, 0.011301822029054165, -0.007080002687871456, -0.00014181823644321412, -0.0013390914537012577, 0.002997273812070489, 0.006398184224963188, -0.010090912692248821, 0.009049094282090664, 0.01383273210376501, 0.019930915907025337, -0.005342729389667511, -0.02197091653943062, 0.047127291560173035, -0.0064145480282604694, -0.0015695460606366396, 0.009796367026865482, -0.013909095898270607, 0.008296366780996323, 0.012403640896081924, -0.0037990922573953867, 3.5774159186985344e-05, -0.00841091200709343, -0.0040363650768995285, 0.015032732859253883, 0.007570911664515734, 0.00793091207742691, 0.012872732244431973, -0.0043227290734648705, 0.0022254553623497486, -0.004849092569202185, -0.006283638533204794, -0.012501822784543037, -0.03883637860417366, 0.018894553184509277, -0.0014809096464887261, 0.009829094633460045, -0.0070309117436409, 0.011301822029054165, -0.025352736935019493, -0.008034548722207546, -0.001875000656582415, -0.003698183223605156, -0.001262045931071043, -0.005200910847634077, 0.012490913271903992, -0.0067200022749602795, 0.009360003285109997, 0.00960545800626278, 0.026378192007541656, 0.00969818513840437, -0.008618185296654701, -0.0004094319592695683, 0.013145459815859795, 0.007014547940343618, -0.029585465788841248, 0.01623273268342018, 0.019996371120214462, 0.035672739148139954, 0.006043638568371534, -0.011258185841143131, 0.0232145544141531, -0.006403638515621424, 0.013614550232887268, -0.030327284708619118, -0.0015354551142081618, 0.025352736935019493, -0.003970910329371691, 0.011465459130704403, -0.008160003460943699, 0.028210919350385666, 0.0019063643412664533, -0.014541823416948318, -0.01836000755429268, 0.008569094352424145, -0.012261822819709778, 0.0007070457213558257, -0.009943639859557152, -0.002491364488378167, 0.004843638278543949, 0.010767276398837566, 0.0250691007822752, 0.007145456969738007, 0.002123182639479637, -0.01923273503780365, -0.011258185841143131, -0.019876370206475258, 0.006005456671118736, -0.02114182524383068, -0.02568000927567482, 0.009223639965057373, 0.011934549547731876, 0.006087274756282568, -0.01469455100595951, 0.014803641475737095, 0.008601821027696133, 0.0016690915217623115, 0.015567278489470482, -0.01500000525265932, -0.010990913026034832, 0.029301829636096954, -0.0006334093050099909, -0.001232727780006826, -0.00853091198951006, 0.012174549512565136, 0.013352732174098492, 0.002070000860840082, 0.016014551743865013, 0.017170915380120277, 0.01370182354003191, -0.006627275142818689, 0.007750912103801966, -0.008345457725226879, -0.026334555819630623, 0.018501825630664825, 0.013734550215303898, 0.020607279613614082, -0.0037936377339065075, 0.014312732964754105, -0.02080364339053631, 0.020018188282847404, -0.004860001616179943, -0.00912545807659626, 0.0005621592863462865, -0.005629092920571566, -0.026814555749297142, 0.014825459569692612, 0.011154549196362495, 0.008214548230171204, -0.024392737075686455, 0.009158184751868248, -0.004996365401893854, 0.03122182935476303, -0.03711274266242981, -0.007336366456001997, -0.005260910838842392, 0.020596371963620186, 0.013287277892231941, 0.0030790921300649643, -0.00945818517357111, -0.00103295489680022, 0.00740727549418807, -0.006572729907929897, 0.010112730786204338, 0.0301091019064188, 0.0005277274758554995, -0.009610912762582302, 0.012010913342237473, 0.01599273271858692, 0.0016431824769824743, 0.013669095933437347, 0.022058190777897835, -0.0038781831972301006, 0.012883640825748444, -0.020040007308125496, -0.00927273090928793, -0.004993638023734093, -0.036916378885507584, 0.013789095915853977, 0.01481455098837614, -0.0018013643566519022, -0.02114182524383068, -0.015392732806503773, 0.009054549038410187, 0.003030001185834408, 0.011683641001582146, -0.014356369152665138, 0.01308000460267067, -0.007685457356274128, 0.0035290922969579697, -0.004461819771677256, 0.0015027278568595648, -0.014640005305409431, -0.00312000117264688, -0.010276367887854576, 0.0018272734014317393, 0.010816367343068123, -0.0020031826570630074, -0.00010048299009213224, 0.013101822696626186, 0.019112734124064445, 0.002918182872235775, -0.0047563654370605946, -0.026138192042708397, -0.004213638138025999, -0.0029618192929774523, -0.014880005270242691, -0.007112729828804731, -0.004161819815635681, 0.00042034106445498765, 0.008830912411212921, -0.010134548880159855, 0.007129093632102013, -0.021447280421853065, 0.025287281721830368, 0.003829092252999544, 0.012283640913665295, 0.005550002213567495, 0.009616367518901825, 0.002038637176156044, -0.0014263641787692904, -0.018632734194397926, 0.0011161367874592543, 0.03541092202067375, -0.010750913061201572, 0.022756371647119522, 0.02193818986415863, 0.0005590911023318768, 0.006512729451060295, -0.010183639824390411, 0.005776365753263235, 0.014116369187831879, -0.0234763715416193, -0.001999091589823365, 0.007920002564787865, -0.028690919280052185, -0.012981822714209557, -0.008192730136215687, 0.002367273671552539, -0.0015968187944963574, -0.0010990913724526763, -0.0029672738164663315, 0.040385469794273376, 0.010036366991698742, 0.009949094615876675, -0.00013653414498548955, 0.0055527291260659695, 0.005972729530185461, -0.0005376138142310083, -0.0035645468160510063, 0.013385459780693054, -0.02764364704489708, 0.001108636730350554, -0.010843640193343163, -0.011149095371365547, -0.0032345466315746307, -0.01512000523507595, -0.02664000913500786, 0.00819818489253521, -0.008230912499129772, 0.0007595457136631012, 0.0044427290558815, -0.005566365551203489, 0.010996367782354355, -0.0011611367808654904, -0.001528636901639402, -0.01248000469058752, -0.004033637698739767, 0.0069381846114993095, 0.010821822099387646, -0.006032729521393776, -0.004153637681156397, -0.015261824242770672, 0.016690915450453758, -0.013570914044976234, 0.007200002670288086, 0.0082909120246768, 0.017050914466381073, 0.0004084092506673187, -0.015741823241114616, 0.034450922161340714, 0.01875273510813713, -0.016036368906497955, 0.018512733280658722, -0.0016609097365289927, -0.0028445464558899403, 0.03584728762507439, 0.001501364167779684, 0.02323637157678604, 0.0009463639580644667, -0.01541455090045929, 0.0002781819202937186, 0.010941822081804276, -0.012567277066409588, -0.0035563649144023657, -0.0014318187022581697, 0.028058191761374474, -0.025898192077875137, 0.0033327285200357437, -0.018392734229564667, -0.0022786371409893036, -0.01706182397902012, 0.0008638639701530337, -0.021687280386686325, -0.009998185560107231], "1fae385d-2f54-4dee-b18c-3b31945b956d": [0.013473962433636189, -0.00903802178800106, 0.001960453111678362, 0.01133906189352274, 0.012651569209992886, -0.02342575415968895, -0.006408854387700558, 0.010126239620149136, -0.0256021898239851, 0.035520754754543304, 0.003092282684519887, -0.00886357482522726, 0.026898082345724106, 0.0036446985322982073, 0.032613303512334824, 0.026150451973080635, 0.020667828619480133, 0.02703099511563778, 0.03585303574800491, -0.02811090461909771, -0.00766321225091815, 0.007983031682670116, -0.020402004942297935, 0.009121092036366463, -0.01832525245845318, -0.03095190040767193, -0.012186376377940178, 0.029356956481933594, -0.0404052734375, -0.03171614557504654, -0.003007135819643736, -0.00132808240596205, -0.0021224399097263813, 0.011978701688349247, 0.0647946372628212, 0.016846606507897377, -0.00939522311091423, -0.032978810369968414, -0.014346198178827763, 0.001065373420715332, -0.013465655036270618, 0.002919912338256836, -0.006084881257265806, -0.020069723948836327, -0.04970911890268326, -0.004514857195317745, -0.0013291208306327462, 0.017594236880540848, 0.007135717198252678, -0.003559551667422056, 0.013216445222496986, -0.034391000866889954, 0.02739650197327137, 0.013208137825131416, 0.03891001269221306, 0.00795395765453577, -0.029739078134298325, -0.0010186465224251151, 0.016896449029445648, -0.034058719873428345, 0.01444588229060173, -0.003129664110019803, 0.024987472221255302, 0.02879207953810692, 0.04681828245520592, 0.00831531174480915, -0.017943130806088448, 0.03351045772433281, -0.024273069575428963, -0.0022138168569654226, 0.024705033749341965, 0.029024675488471985, -0.020717671141028404, 0.04339579492807388, 0.03781348839402199, -0.016746921464800835, -0.01769392006099224, 0.016738615930080414, -0.015284889377653599, -0.010732650756835938, -0.014163443818688393, -0.024389367550611496, 0.037348296493291855, -0.013432427309453487, 0.02628336474299431, 0.021116407588124275, 0.027977993711829185, -0.027296818792819977, 0.0009812649805098772, -0.031948741525411606, 0.007962264120578766, -0.002180588897317648, -0.012884165160357952, -0.012045157141983509, -0.06137215346097946, 0.01762746460735798, -0.009602897800505161, 0.015426108613610268, 0.023342683911323547, -0.01621527411043644, 0.0018026201287284493, -0.026432890444993973, 0.06552565842866898, 0.03352707251906395, 0.012850936502218246, -0.020468460395932198, 0.002377880271524191, -0.020734284073114395, -0.016447870060801506, 0.0046394625678658485, -0.023193158209323883, 0.0161986593157053, -0.0010352605022490025, -0.016422949731349945, -0.034756507724523544, -0.039441660046577454, -0.02736327424645424, 0.011679649353027344, 0.01390592660754919, -0.038046084344387054, 0.01262664794921875, -0.010076397098600864, 0.023226385936141014, -0.013041998259723186, -0.0015897530829533935, -0.0007071337895467877, -0.035553980618715286, 0.02555234730243683, 0.044558774679899216, -0.002431875793263316, -0.02269473858177662, -0.02601753920316696, -0.005532465409487486, 0.012344209477305412, -0.016763536259531975, -0.027512801811099052, -0.026997767388820648, 0.03704924136400223, 0.0025772482622414827, 0.012518656440079212, -0.008248856291174889, 0.01191224530339241, -0.010566510260105133, -0.0198537427932024, 0.002537789987400174, -0.011040009558200836, 0.004568852949887514, 0.026100609451532364, -0.005740140564739704, -0.013274594210088253, -0.043894216418266296, -0.026831626892089844, -0.04226604104042053, 0.016879834234714508, 0.00766321225091815, 0.022960562258958817, 0.0030216730665415525, 0.042033445090055466, 0.021066565066576004, 0.07509532570838928, 0.03316156566143036, -0.016132203862071037, -0.0014246513601392508, -0.0028223050758242607, 0.06024239957332611, 0.0330951064825058, -0.00024895055685192347, 0.02485455945134163, -0.003266729647293687, 0.004751606844365597, -0.0029053750913590193, -0.01771053485572338, 0.017062587663531303, -0.01982051506638527, -9.040357690537348e-05, -0.010898790322244167, -0.012194683775305748, 0.059644296765327454, 0.014836311340332031, 0.02816074714064598, -0.013955768197774887, -0.012726332060992718, 0.0007559374789707363, -0.005150343291461468, 0.00369661720469594, 0.03688310086727142, -0.009536441415548325, 0.04931038245558739, 0.0003504517662804574, 0.012427279725670815, 0.002115171169862151, -0.001782890991307795, -0.0005809711874462664, 0.016422949731349945, -0.0031753527000546455, -0.012335903011262417, 0.01804281584918499, 0.02993844635784626, -0.031981971114873886, 0.014636943116784096, -0.007708900608122349, -0.00695711700245738, 0.015733467414975166, 0.017943130806088448, -0.007899961434304714, 0.000886772817466408, -0.02206340618431568, -0.009910257533192635, 0.03096851520240307, -0.05299869179725647, -0.013797935098409653, -0.0071606384590268135, -0.011646420694887638, -0.03321140632033348, -0.052101537585258484, -0.006998651660978794, 0.005839824676513672, 0.053995534777641296, 0.027180520817637444, -0.026233522221446037, -0.012310981750488281, 0.002267812378704548, -0.00864759273827076, -0.016140511259436607, -0.02782846800982952, 0.0035512447357177734, -0.036251768469810486, 0.012053464539349079, -0.03585303574800491, -0.012651569209992886, 0.03927551954984665, -0.04675182327628136, 0.02203017845749855, 0.005328943952918053, 0.026831626892089844, 0.0433625653386116, 0.016680466011166573, 0.03251361846923828, -0.02021924965083599, -0.01028407271951437, 0.0010819874005392194, -0.005910434294492006, 0.02781185321509838, -0.04007299244403839, -0.02522006817162037, -0.034822966903448105, 0.005133728962391615, 0.00956136267632246, 0.004950975067913532, 0.0038461433723568916, -0.03281266987323761, -0.01550917886197567, 0.0012128227390348911, 0.023226385936141014, -0.03608563169836998, 0.002870070282369852, 0.004602080676704645, -0.0198537427932024, 0.02415677160024643, 0.023542052134871483, -0.012277753092348576, -0.016314957290887833, -0.0021660516504198313, -0.0011785563547164202, 0.0032542692497372627, 0.04758252575993538, 0.011530122719705105, -0.02231261506676674, -0.0016499789198860526, 0.001056028064340353, 9.540076280245557e-05, -0.020302319899201393, -0.05333097279071808, 0.035188473761081696, -0.010400370694696903, -0.034756507724523544, 0.0454559326171875, -0.024356139823794365, 0.05203507840633392, 0.009951791726052761, -0.029788920655846596, -0.005956122651696205, -0.005544926039874554, -0.020435232669115067, 0.024721646681427956, -0.0025834785774350166, -0.03066946193575859, -0.009993326850235462, -0.013598567806184292, 0.00829039141535759, 0.01623188704252243, 0.011413824744522572, 0.023226385936141014, 0.03974071145057678, -0.026964537799358368, 0.004934361204504967, -0.0002464844146743417, 0.008460684679448605, -0.016838299110531807, 0.0306528490036726, 0.020485075190663338, 0.03994008153676987, 0.034391000866889954, 0.040239132940769196, 0.023309456184506416, -0.017776990309357643, 0.045622073113918304, 0.05585630238056183, 0.0027994606643915176, 0.04512365162372589, -0.00034318314283154905, -0.007094182539731264, -0.05123760923743248, 0.0018306561978533864, -0.00038705451879650354, 0.03279605507850647, -0.04359516128897667, -0.01766069233417511, 0.0009485561167821288, -0.016730308532714844, 0.006645604036748409, -0.016771843656897545, -0.039441660046577454, -0.002681085839867592, 0.045954350382089615, -0.04037204384803772, 0.06363166123628616, 0.015592248179018497, 0.019421778619289398, -0.008489759638905525, -0.04751607030630112, -0.018242184072732925, -0.013299515470862389, -0.02096688002347946, -0.008169939741492271, -0.02056814543902874, -0.023542052134871483, -0.012153148651123047, -0.014886152930557728, 0.004273954313248396, -0.01115630753338337, -0.024239839985966682, 0.03538784012198448, -0.022545211017131805, 0.0060267322696745396, 0.009254003874957561, -0.015309810638427734, -0.012036850675940514, -0.02884192205965519, 0.0149775305762887, 0.0003561628400348127, -0.005150343291461468, -0.024339525029063225, 0.013482268899679184, 0.023957403376698494, -0.036251768469810486, -0.0262999776750803, 0.004091199953109026, 0.005611381959170103, -0.014013917185366154, -0.02307686023414135, -0.011621500365436077, 0.0007683979929424822, -0.014495723880827427, -0.06725351512432098, 0.023591894656419754, 0.018242184072732925, -0.02345898188650608, 8.255086140707135e-05, 0.02096688002347946, -0.0023425754625350237, -0.018474780023097992, -0.02771216817200184, -0.015550713986158371, -0.01117292232811451, 0.005935355089604855, 0.010466826148331165, -0.015210126526653767, -0.021033337339758873, 0.013432427309453487, -0.009519827552139759, 0.0064213150180876255, 0.008564522489905357, 0.051038239151239395, -0.02271135151386261, -0.006986191496253014, 0.005565693601965904, -0.038810327649116516, 0.002388264052569866, -0.0010497977491468191, 0.009312152862548828, -0.00596027635037899, -0.0461537204682827, -0.026931310072541237, -0.061505064368247986, 0.0014869539299979806, 0.006604068912565708, -0.024804716929793358, 0.03538784012198448, -0.005150343291461468, -0.008730662055313587, -0.00847729854285717, -0.0020995954982936382, -0.006620683241635561, 0.025419436395168304, -0.010109624825417995, 0.032247792929410934, 0.01734502613544464, -0.014238206669688225, 0.00898817926645279, 0.0024235686287283897, 0.045289792120456696, 0.010300686582922935, 0.03354368731379509, 0.001487992238253355, 0.028991447761654854, -0.03312833607196808, 0.016522632911801338, -0.007438923232257366, 0.019554689526557922, -0.003000905504450202, 0.009187547490000725, 0.05256672948598862, 0.02842657081782818, -0.008896802552044392, -0.017561009153723717, -0.006703753024339676, -0.017577622085809708, -0.017494551837444305, 0.011795947328209877, 0.02457212097942829, 0.04372807592153549, 0.03392580896615982, 0.027961378917098045, -0.0065999156795442104, 0.014744933694601059, -0.039807166904211044, 0.0026561648119241, -0.019654374569654465, -0.004068355541676283, -0.034756507724523544, -0.008174093440175056, -0.014354504644870758, 0.005794135853648186, -0.0249044019728899, -0.006712059956043959, -0.013116761110723019, -0.014312969520688057, 0.018192341551184654, -0.036218542605638504, -0.0014391886070370674, 0.007949803955852985, -0.009536441415548325, -0.009661046788096428, 0.034391000866889954, 0.0195048488676548, 0.03741475194692612, -0.003154585137963295, 0.008564522489905357, 0.009112784639000893, 0.0213323887437582, 0.018674148246645927, 0.043894216418266296, -0.007060954347252846, 0.013748093508183956, 0.020385390147566795, -0.0018659610068425536, -0.027546029537916183, 0.012875857762992382, 0.036584049463272095, 0.010159467346966267, 0.0037838409189134836, -0.021548371762037277, 0.013108453713357449, 0.03472328186035156, -0.02344236895442009, -0.010566510260105133, 0.008963258937001228, 0.027496187016367912, -0.002224200638011098, 0.015957755967974663, 0.015218432992696762, 0.06738642603158951, -0.0031919667962938547, -0.06386425346136093, 0.051403746008872986, -0.022279387339949608, -0.01832525245845318, 0.01373147964477539, -0.04047172889113426, 0.01582484506070614, 0.019322093576192856, -0.0067286742851138115, 0.002870070282369852, -0.012111613526940346, 0.0007652828353457153, -0.01692136935889721, -0.01952146179974079, 0.037281837314367294, -0.0020071801263839006, 0.010109624825417995, -0.035487525165081024, -0.021564984694123268, 0.01591622270643711, -0.026532573625445366, 0.019421778619289398, 0.019006427377462387, 0.026515960693359375, -0.017029359936714172, -0.05432781204581261, -0.02382449060678482, 0.03957457095384598, -0.012061771005392075, 0.006059959996491671, 0.006043346133083105, 0.026432890444993973, -0.016829991713166237, -0.01334105059504509, 0.010333914309740067, -0.010674501769244671, -0.02591785602271557, 0.0027890768833458424, 0.009411836974322796, 0.014354504644870758, -0.026167066767811775, -0.038777098059654236, -0.013407506048679352, -0.013075225986540318, 0.011978701688349247, -0.012859243899583817, -0.015949450433254242, 0.010699423030018806, -0.021797580644488335, -0.007841812446713448, 0.004273954313248396, -0.0010892560239881277, -0.0021847423631697893, 0.012211297638714314, 0.006745288148522377, 0.009818879887461662, -0.027147293090820312, 0.01844155043363571, -0.01834186725318432, 0.02811090461909771, 0.015957755967974663, 0.04897810146212578, 0.002828535158187151, 0.03346061706542969, -0.03397564962506294, -0.006620683241635561, -0.014744933694601059, 0.006707906723022461, -0.029041290283203125, 0.003266729647293687, -0.04645277187228203, -0.03904292359948158, 0.025884628295898438, 0.011596579104661942, 0.00443178741261363, -0.027629099786281586, -0.0317826010286808, 0.034091949462890625, -0.004959281999617815, 0.01988697052001953, -0.005004970356822014, 0.014935995452105999, -0.022096633911132812, -0.005233413074165583, 0.0032999578397721052, 0.019654374569654465, 0.024057086557149887, 0.03181583061814308, 0.05582307279109955, -0.01734502613544464, -0.0014526875456795096, 0.06383102387189865, -0.035886261612176895, -0.015932835638523102, -0.036251768469810486, -0.0008192783570848405, 0.02817736193537712, 0.031267568469047546, -0.005627995822578669, 0.010059783235192299, 0.004676843993365765, -0.00019261868146713823, -0.0009096170542761683, -0.004485782701522112, 0.015467643737792969, 0.03282928466796875, 0.03741475194692612, 0.012934006750583649, -0.03095190040767193, -0.005021584685891867, 0.023193158209323883, -0.004211651626974344, 0.03027072735130787, 0.00043481981265358627, 0.01187071017920971, 0.03199858218431473, 0.0353546142578125, -0.013532111421227455, -0.018873516470193863, 0.021365616470575333, -0.017943130806088448, 0.017909903079271317, -0.03063623420894146, -0.003713231300935149, 0.016123896464705467, -0.008145018480718136, -0.0036197775043547153, 0.009137705899775028, -0.0259510837495327, -0.02711406536400318, 0.00828208401799202, -0.014180057682096958, -0.004768220707774162, 0.015268275514245033, -0.017062587663531303, 0.04286414757370949, 0.00325219240039587, -0.04213313013315201, 0.019770672544836998, 0.00826962385326624, 0.005565693601965904, 0.014479110017418861, -0.0018067735945805907, 0.017494551837444305, -0.02701438032090664, 0.016032520681619644, -0.004830523394048214, 0.013440734706819057, -0.014844617806375027, 0.014495723880827427, 0.021365616470575333, -0.02306024543941021, 0.0082945441827178, 0.02385771833360195, -0.015550713986158371, -0.029705850407481194, 0.014636943116784096, -0.0016437486046925187, 0.013789628632366657, 0.03718215599656105, -0.011945473030209541, 0.048878416419029236, -0.010342221707105637, -0.0033622602932155132, 0.0016904755029827356, 0.01514367014169693, 0.014686784707009792, 0.015068907290697098, 0.024007244035601616, 0.02518683858215809, -0.0011712877312675118, 0.026947924867272377, 0.005922894459217787, 0.018657533451914787, -0.03344400227069855, 0.02274457924067974, -0.0008182399906218052, -0.02844318561255932, 0.013199831359088421, -0.0031566619873046875, 0.008016260340809822, 0.02015279419720173, 0.021398846060037613, 0.0010539512149989605, -0.015459336340427399, -0.012418972328305244, 0.014985837042331696, -0.014371118508279324, 0.018159113824367523, 0.01907288283109665, 0.0038274526596069336, 0.0006816936074756086, -0.013947461731731892, 0.0013883082428947091, -0.0070734149776399136, -0.01443757489323616, -0.021930493414402008, -0.03422486037015915, -0.030387025326490402, -0.015284889377653599, -0.031134655699133873, 0.011322448030114174, 0.01315829623490572, -0.001441265339963138, -0.010184388607740402, 0.004444247577339411, -0.0048512909561395645, -0.010558203794062138, -0.014720013365149498, 0.030038129538297653, -0.01918918266892433, -0.03233086317777634, -0.00812840461730957, -0.026399662718176842, -0.02203017845749855, -0.023724807426333427, -0.023591894656419754, -0.013822856359183788, -0.009702581912279129, -0.004523164127022028, 0.012684796936810017, 0.030038129538297653, -0.015160284005105495, -0.03402549400925636, 0.0009376531816087663, 0.011953780427575111, -0.017776990309357643, 0.0048471372574567795, -0.019953425973653793, -0.04116951674222946, 0.024970857426524162, 0.02203017845749855, -0.02272796630859375, 0.042764462530612946, 0.02776201069355011, 0.018591077998280525, 0.03425808995962143, 0.004357024095952511, -0.014171750284731388, -0.005636302754282951, -0.02232922986149788, 0.02628336474299431, 0.000418205774622038, -0.020402004942297935, -0.018674148246645927, -0.010159467346966267, 0.03542106971144676, -0.014362812042236328, 0.030835602432489395, -0.005702759139239788, 0.011322448030114174, 0.009577976539731026, -0.013116761110723019, -0.006010118406265974, 0.02417338453233242, -0.01804281584918499, -0.0014994144439697266, 0.0050672730430960655, 0.005673684645444155, -0.012543577700853348, 0.0007824160275049508, -0.0252532958984375, 0.030420253053307533, -0.016422949731349945, -0.041302427649497986, -0.07004466652870178, 0.025519119575619698, -0.005781675688922405, -0.0022740426938980818, 0.007563528139144182, -0.04213313013315201, 0.020418617874383926, 0.021033337339758873, -0.0016468637622892857, -0.00019923831860069185, 0.022960562258958817, 0.016107283532619476, 0.009661046788096428, 7.852715498302132e-05, 0.006745288148522377, -0.016082361340522766, -0.003266729647293687, 0.004043434746563435, 0.016846606507897377, 0.037747032940387726, -0.009519827552139759, 0.03964103013277054, 0.013357664458453655, 0.0015232970472425222, 0.0108406413346529, 0.010375449433922768, -0.013399199582636356, -0.0013322359882295132, -0.013789628632366657, 0.002593862358480692, 0.0062925564125180244, -0.017810218036174774, -0.014246514067053795, -0.0010487594408914447, 0.029755692929029465, -0.02016940899193287, -0.005578153766691685, -0.025718487799167633, -0.01732841320335865, -0.007426462601870298, 0.01619035378098488, -0.0036675427109003067, -0.020086338743567467, -0.006400547455996275, 0.019006427377462387, -0.0045065502636134624, 0.015301503241062164, -0.036617279052734375, -0.007065108045935631, -0.026532573625445366, -0.021913878619670868, -0.004842984024435282, -0.024322910234332085, 0.010965246707201004, -0.0012367053423076868, 0.049243927001953125, -0.03688310086727142, -0.022894106805324554, 0.01732841320335865, 0.0033290323335677385, 0.01587468758225441, 0.019006427377462387, -0.0009360956610180438, -0.03665050491690636, 0.01389761921018362, -0.021149635314941406, -0.050307221710681915, -0.013133374974131584, 0.00695711700245738, 0.021149635314941406, 0.0032002737279981375, 0.0004420884361024946, 0.00014550238847732544, 0.022279387339949608, 0.016472790390253067, -0.007148177828639746, -0.0014163443120196462, 0.020069723948836327, 0.0032874972093850374, 0.01870737597346306, 0.0024817178491503, 0.016323264688253403, 0.014005610719323158, -0.006658064667135477, 0.011712877079844475, 0.01762746460735798, 0.030785761773586273, 0.00640470115467906, -0.013789628632366657, -0.01156335137784481, 0.005183571018278599, -0.02169789746403694, -0.04552238807082176, 0.03688310086727142, -0.009337074123322964, 0.0036446985322982073, 0.017095817252993584, -0.001537834294140339, 0.02309347502887249, -0.017062587663531303, 0.034457456320524216, 0.004456708207726479, -0.00867251306772232, -0.001253319438546896, -0.04515688121318817, 0.0035803192295134068, 0.02312670275568962, -0.01917256787419319, 0.0064545427449047565, 0.004784835036844015, -0.012925700284540653, 0.012119919992983341, -0.01767730712890625, -0.003277113428339362, 0.03532138466835022, -0.012310981750488281, 0.02129916101694107, -0.0049426681362092495, 0.027479572221636772, -0.027878308668732643, -0.011430438607931137, 0.004253186751157045, 0.001626096200197935, 0.03399226441979408, -0.009494907222688198, -0.0263830479234457, 0.0012574729043990374, 0.03331109136343002, -0.021016722545027733, -0.030054744333028793, 0.010400370694696903, 0.010508361272513866, -0.005349711515009403, -0.0045065502636134624, -0.0006962308543734252, -0.031849056482315063, -0.007297703996300697, -0.007505379151552916, -0.001431919983588159, 0.0031566619873046875, 0.01834186725318432, -0.013357664458453655, -0.01190393790602684, 0.002703930251300335, 0.0020632524974644184, 0.0035387841053307056, -0.012742945924401283, 0.036218542605638504, -0.012319288216531277, 0.015002450905740261, 0.009993326850235462, 0.013415813446044922, 0.00460623437538743, -0.043827757239341736, -0.02889176458120346, -0.008722355589270592, -0.031583234667778015, 0.024638576433062553, -0.02522006817162037, -0.01877383142709732, 0.0015367959858849645, 0.009843801148235798, -0.01119784265756607, 0.01261834055185318, -0.0052458737045526505, 0.0418008491396904, -0.002321807900443673, 0.014337890781462193, 0.006475310306996107, 0.0267319418489933, 0.001924110110849142, 0.007310164626687765, -0.015999291092157364, 0.01840832270681858, -0.004149348940700293, 0.012119919992983341, 0.02598431147634983, -0.004124428145587444, -0.000560722837690264, -0.012369130738079548, 0.04193376004695892, -0.002402801299467683, 0.007222941145300865, 0.0018659610068425536, -0.01805942878127098, 0.014246514067053795, -0.025485891848802567, -0.00639639375731349, -0.005902126897126436, 0.013997303321957588, 0.010325606912374496, -0.0020466384012252092, -0.026083996519446373, 0.026183679699897766, 0.009303845465183258, -0.034756507724523544, 0.04495751112699509, 0.003270883345976472, 0.02814413420855999, 0.0026083996053785086, -0.01298384927213192, -0.021897265687584877, -0.0013862315099686384, 0.028559483587741852, 0.009287231601774693, -0.029523096978664398, -0.008390075527131557, 0.01835848204791546, -0.04223281517624855, -0.015550713986158371, 0.003991515841335058, -0.0034079488832503557, 0.005586461164057255, -0.012526963837444782, -0.004481629468500614, -0.003281267127022147, 0.0006282172398641706, 0.012070078402757645, 0.009960099123418331, 0.004035127814859152, -0.005981043446809053, 0.012551885098218918, -0.002193049294874072, 0.015110442414879799, 0.0012346286093816161, 0.006807590834796429, 0.0009521904867142439, -0.010616352781653404, -0.04409358277916908, -0.051370520144701004, -0.018674148246645927, -0.00882203970104456, -0.006197025999426842, -0.011040009558200836, -0.02518683858215809, -0.03937520459294319, 0.013806242495775223, -0.014329583384096622, -0.0056778378784656525, -0.031267568469047546, -0.01354041788727045, 0.01115630753338337, -0.00046233675675466657, -0.009943485260009766, 0.01729518547654152, 0.012294367887079716, 0.005781675688922405, -0.0005851246532984078, 0.004076662939041853, 0.003831606125459075, -0.024106929078698158, -0.017095817252993584, 0.010184388607740402, -0.011953780427575111, 0.03538784012198448, 0.0049385144375264645, 0.013814549893140793, 0.0034889420494437218, -0.02095026709139347, -0.015218432992696762, -0.010043169371783733, -0.019239023327827454, -0.035487525165081024, 0.003094359301030636, -0.047084104269742966, 0.005735986866056919, -0.0004446843813639134, 0.013465655036270618, -0.01731179840862751, 0.0020590987987816334, -0.015060599893331528, -0.0316995307803154, -0.002706006867811084, 0.015783309936523438, -0.023940788581967354, -0.0016624394338577986, 0.013465655036270618, -0.007397388108074665, -0.017411483451724052, -0.006051653064787388, 0.01842493750154972, -0.01404714584350586, -0.02277780883014202, -0.021780967712402344, -0.03585303574800491, 0.03422486037015915, 0.018856901675462723, 0.017461324110627174, -0.027579257264733315, -0.011397210881114006, 0.010342221707105637, -0.032663144171237946, -0.005574000533670187, -0.006180411670356989, -0.013274594210088253, 0.018524620682001114, 0.0010202040430158377, 0.02095026709139347, 0.01617373898625374, 0.009494907222688198, -0.0031068199314177036, 0.02382449060678482, -0.008377614431083202, 0.012651569209992886, -0.009885336272418499, 0.0011889401357620955, 0.00029022598755545914, 0.0037485361099243164, 0.013058612123131752, -0.003443253692239523, 0.011272605508565903, 0.006138876546174288, -0.004145195707678795, 0.003007135819643736, -0.01805942878127098, -0.004747453611344099, 0.0006432736990973353, -0.006741134449839592, -0.02774539776146412, -0.0209004245698452, -0.024289682507514954, -0.01978728547692299, -0.007854273542761803, 0.008327772840857506, -0.030486708506941795, -0.01244389358907938, -0.004701764788478613, 0.0034910188987851143, 0.02312670275568962, 0.03498910367488861, -0.02161482721567154, 0.012136534787714481, -0.01802620105445385, 0.029024675488471985, -0.008722355589270592, -0.029091130942106247, 0.005906280595809221, 0.012078385800123215, 0.009943485260009766, -0.001985374139621854, 0.009112784639000893, -0.005183571018278599, -0.017212115228176117, 0.03611885756254196, 0.0376141183078289, 0.0001460215717088431, 0.0030964361503720284, 0.027961378917098045, 0.009802266024053097, 0.01697121188044548, 0.026515960693359375, 0.009096170775592327, -0.0026333206333220005, 0.015259968116879463, -0.025452664121985435, 0.004514857195317745, 0.012551885098218918, -0.029140973463654518, 0.039873626083135605, -0.013598567806184292, -0.043761301785707474, 0.027678940445184708, 0.014146829955279827, 0.0270808357745409, 0.023143315687775612, -0.006595761980861425, -0.016074053943157196, -0.00613472331315279, -0.02955632470548153, -0.021182863041758537, 0.001647902186959982, 0.010699423030018806, 0.00043300262768752873, 0.0053372508846223354, 0.019338708370923996, 0.033394161611795425, 0.022495370358228683, 0.007077568210661411, 0.007708900608122349, 0.012286060489714146, 0.00486790481954813, 0.0004008130053989589, -0.006965423934161663, 0.04077078029513359, -0.012360823340713978, 0.0021847423631697893, -0.014246514067053795, 0.01226113922894001, 0.004014360252767801, -0.029838763177394867, 0.02668210119009018, -0.02311008796095848, -0.00560307502746582, 0.014337890781462193, 0.015002450905740261, -0.04170116409659386, -0.013947461731731892, -0.02993844635784626, 0.026216907426714897, 0.0012896625557914376, 0.006433775648474693, 0.0036800033412873745, -0.006865739822387695, -0.0012553961714729667, -0.0014142675790935755, -0.011804253794252872, -0.00347855850122869, 0.0038461433723568916, -0.011546737514436245, 0.056454405188560486, -0.014844617806375027, -0.012718024663627148, 0.0036924637388437986, -0.025868013501167297, 0.014022224582731724, -0.010740957222878933, -0.012194683775305748, -0.020468460395932198, 0.006354859098792076, 0.018192341551184654, -0.018524620682001114, 0.006541766691952944, -0.028027834370732307, 0.01879044622182846, 0.024289682507514954, -0.029656007885932922, 0.008689126931130886, -0.0033726440742611885, 0.01385608408600092, -0.02452227845788002, 0.00208090478554368, 0.010034861974418163, 0.009860415011644363, -0.0031130502466112375, 0.01279278751462698, 0.006101495120674372, 0.022561825811862946, -0.008414995856583118, -0.0021785120479762554, -0.0029157588724046946, -0.0019718753173947334, 0.03271298483014107, -0.001281355507671833, -0.007987185381352901, -0.040272362530231476, 0.013299515470862389, 0.006649757735431194, -0.013440734706819057, 0.01244389358907938, -0.0005794136086478829, 0.01590791530907154, -0.011945473030209541, -0.011845788918435574, 0.003931290004402399, 0.002816074760630727, 0.010583124123513699, -0.023608507588505745, -0.015284889377653599, -0.02385771833360195, -0.022927334532141685, -0.01226113922894001, 0.0019407240906730294, -0.013764707371592522, -0.021830810233950615, -0.006275942549109459, 0.001293816021643579, 0.012842630036175251, 0.006379779893904924, -0.009760730899870396, 0.015201819129288197, -0.013831163756549358, -0.004157655872404575, 0.0021286699920892715, 0.017860060557723045, -0.017428096383810043, 0.009287231601774693, 0.03274621441960335, 0.026034153997898102, -0.002826458541676402, 0.006541766691952944, -0.014753241091966629, 0.00938691571354866, -0.013050304725766182, -0.02842657081782818, 0.00704434048384428, 0.013814549893140793, -0.004901133012026548, 0.0013613104820251465, 0.0064213150180876255, -0.013050304725766182, -0.0053995531052351, 0.01173779834061861, 0.022943947464227676, 0.0030341336969286203, 0.009710889309644699, 0.009727503173053265, 0.01584145799279213, -0.026466118171811104, -0.004033050965517759, 0.0010497977491468191, 0.030303955078125, 0.007962264120578766, -0.01120615005493164, 0.007513686083257198, 0.004959281999617815, -0.011064930818974972, 0.0198537427932024, -0.024671806022524834, 0.03505556285381317, -0.004838830325752497, -0.0028742237482219934, -0.0050298916175961494, -0.020617986097931862, 0.006005964707583189, 0.008589442819356918, 0.010940325446426868, -0.017943130806088448, -0.003154585137963295, -0.010765878483653069, 0.021182863041758537, -0.03281266987323761, -0.021930493414402008, -0.024106929078698158, -0.04286414757370949, 0.0007746282499283552, -0.017494551837444305, 0.021747739985585213, -0.00015056446136441082, -0.013017076998949051, 0.0008914454956538975, 0.0020352161955088377, 0.033061880618333817, 0.01912272535264492, 0.03385935351252556, -0.019587917253375053, -0.004286414477974176, 0.006932195741683245, -0.016713693737983704, 0.005241720005869865, 0.021897265687584877, -0.007322624791413546, 0.004361177794635296, -0.014728319831192493, -0.001237743766978383, -0.0073724668473005295, -0.00920416135340929, 0.004261493682861328, 0.012875857762992382, -0.042698007076978683, -0.006645604036748409, 0.012585112825036049, -0.03354368731379509, 0.013133374974131584, -0.005885513033717871, -0.009445064701139927, -0.014379425905644894, 0.026200294494628906, -0.022296002134680748, 0.008572828955948353, 0.012385744601488113, -0.031865671277046204, 0.002199279610067606, 0.002286503091454506, 0.0009916487615555525, 0.014628635719418526, -0.03151677921414375, -0.002305193804204464, 0.002352959243580699, -0.012070078402757645, -0.02306024543941021, 0.01315829623490572, -0.00639639375731349, -0.003266729647293687, -0.005981043446809053, 0.010167773813009262, 0.0032085806597024202, 0.01807604357600212, -0.01244389358907938, -0.029373569414019585, 0.003970748279243708, -0.0011567504843696952, 0.013299515470862389, 0.017378253862261772, 0.006824204698204994, 0.0019282635767012835, 0.003574088914319873, -0.018973199650645256, -0.00686158612370491, 0.008182399906218052, 0.027330046519637108, -0.008963258937001228, -0.032663144171237946, 0.016032520681619644, 8.112310024444014e-05, 0.007052647415548563, 0.020352162420749664, -0.0016499789198860526, 0.00010318857675883919, -0.01917256787419319, 0.002143207238987088, 0.01319152396172285, -0.01870737597346306, 0.012726332060992718, 0.013565339148044586, 0.0016458253376185894, 0.0016458253376185894, 0.0046311551705002785, -0.035919491201639175, -0.0025897088926285505, -0.02666548639535904, -0.0011795947793871164, 0.013581953011453152, -0.025718487799167633, -0.028709009289741516, 0.012784481048583984, 0.012252832762897015, -3.47206855622062e-06, 0.02448905073106289, -0.01982051506638527, 0.04412681236863136, 0.03684987500309944, 0.009494907222688198, 0.017062587663531303, -0.004714225418865681, 0.005507544614374638, -0.017544394358992577, 0.004809755831956863, 0.004066279157996178, -0.016788456588983536, 0.018541235476732254, -0.00013472924183588475, 0.021465301513671875, 0.01372317224740982, 0.008697434328496456, -0.016763536259531975, 0.009611205197870731, 0.0026873161550611258, -0.015608862973749638, 0.009187547490000725, 0.033726438879966736, -0.019970040768384933, -0.005802443251013756, 0.0061098020523786545, 0.007700593676418066, 0.017394868656992912, 0.018491392955183983, 0.010350528173148632, -0.0009771115146577358, -0.047084104269742966, -0.001801581704057753, 0.0007071337895467877, -0.019587917253375053, 0.025153610855340958, 0.02963939495384693, 0.007335085421800613, -0.01915595307946205, -0.00442348001524806, -0.021099792793393135, 0.023159930482506752, 0.004109890665858984, -0.008082715794444084, 0.06486109644174576, -0.0020653291139751673, -0.030569778755307198, -0.01581653766334057, 0.04465845972299576, 0.00694880960509181, 0.014636943116784096, -0.031566619873046875, 0.021780967712402344, -0.02706422284245491, -0.0038295292761176825, -0.025103770196437836, -0.012227911502122879, -0.02093365229666233, -0.010832334868609905, 0.021548371762037277, 0.018192341551184654, -0.013432427309453487, -0.031201111152768135, 0.006147183943539858, 0.022212931886315346, 0.00015705430996604264, 0.00233634514734149, -0.0021265933755785227, -0.0049758958630263805, -0.04442586377263069, 0.023924173787236214, -0.004593773745000362, 0.014296355657279491, -0.00702357292175293, 0.014188365079462528, -0.0062053329311311245, 0.03940843045711517, 0.005457702558487654, 0.020269092172384262, 0.017926517874002457, -0.022478755563497543, -0.015367959626019001, 0.027629099786281586, 0.0022574285976588726, -0.01844155043363571, -0.005490930285304785, -0.007526146713644266, -0.0054992372170090675, 0.02998828887939453, 0.015176897868514061, 0.006068267393857241, -0.02267812378704548, -0.007443076465278864, -0.01870737597346306, -0.0043279496021568775, -0.011148001067340374, 0.013058612123131752, 0.003171199234202504, 0.0046353088691830635, 0.007526146713644266, -0.023641737177968025, 0.015467643737792969, 0.03066946193575859, -0.004176346585154533, 0.028277045115828514, 0.015525792725384235, -0.03392580896615982, -0.0068491254933178425, -0.015235047787427902, 0.007264475803822279, -0.024306297302246094, -0.0072478619404137135, -0.007654905319213867, -0.013706558384001255, -0.02266150899231434, 0.030420253053307533, -0.02450566552579403, 0.0043279496021568775, -0.02306024543941021, 0.010824027471244335, 0.03545429930090904, 0.014894460327923298, -0.0025834785774350166, 0.01800958625972271, 0.012178069911897182, 0.023890946060419083, -0.00252532958984375, 0.010923711583018303, -0.02634982019662857, -0.003036210313439369, 0.03133402392268181, 0.018159113824367523, -0.024605348706245422, 0.0011110618943348527, 0.011496894992887974, -0.0014734549913555384, -0.021066565066576004, 0.01698782481253147, -0.020418617874383926, -0.015052293427288532, 0.006001811008900404, -0.035155244171619415, 0.010508361272513866, -0.010699423030018806, -0.007459690794348717, 0.026083996519446373, -0.024023858830332756, -0.00043975209700874984, -0.005412013735622168, -0.01837509498000145, -0.009910257533192635, -0.0038544503040611744, 0.010159467346966267, -0.02060137316584587, 0.0028223050758242607, 0.011995315551757812, 0.014204978942871094, 0.006371472962200642, 0.007189712952822447, -0.008722355589270592, 0.013947461731731892, 0.002930296119302511, 0.011463667266070843, -0.022129861637949944, 0.007883347570896149, 0.004930207505822182, 0.005673684645444155, 0.008356846868991852, -0.001011897111311555, 0.012776173651218414, -0.02890837751328945, 0.007729668170213699, -0.030935287475585938, -0.012427279725670815, 0.0262999776750803, 0.003709077835083008, -0.006305017042905092, 0.02309347502887249, -0.017444711178541183, 0.006961270235478878, -0.002803614130243659, 0.012601726688444614, 0.011771026067435741, -0.02374142035841942, -0.02241230010986328, 0.003891831962391734, -0.016323264688253403, 0.023342683911323547, 0.0049385144375264645, -0.011621500365436077, -0.010865562595427036, -0.03615208715200424, -0.014935995452105999, -0.0015108365332707763, -0.001219053054228425, -0.0016406335635110736, -0.006745288148522377, -0.01588299311697483, 0.0023695731069892645, -0.006363166030496359, 0.00902971439063549, -0.013573646545410156, 0.012352516874670982, 0.0034287164453417063, -0.002951063448563218, -0.010292379185557365, 0.00042599361040629447, -0.004286414477974176, -0.0009937254944816232, -0.00284514925442636, 0.0027994606643915176, 0.010682808235287666, 0.01729518547654152, -0.01334105059504509, -0.010076397098600864, -0.0018846518360078335, 0.007272782735526562, 0.006620683241635561, -0.0017600466962903738, -0.009062942117452621, -0.00649192463606596, -0.0022553519811481237, 0.004234496038407087, -0.012161455117166042, 0.027994606643915176, -0.0036010867916047573, 0.004159732721745968, -0.0060765743255615234, -0.004901133012026548, -0.009985020384192467, -0.01698782481253147, 0.014753241091966629, -0.02161482721567154, 0.003881448181346059, 0.006670525297522545, 0.031882286071777344, 0.004734992980957031, 0.02206340618431568, 0.02349220961332321, 0.011397210881114006, -0.024372752755880356, 0.004888672381639481, -0.0007403618074022233, 0.026167066767811775, -0.0038772947154939175, 0.0013176987413316965, -0.0012803171994164586, 0.009835493750870228, -0.008153325878083706, -0.019205795601010323, 0.0009007908520288765, -0.005748447496443987, -0.015301503241062164, -0.005042352247983217, 0.004768220707774162, -0.0017839292995631695, 0.008028720505535603, 0.02487117238342762, 6.469567210842797e-07, 0.009503213688731194, 0.004959281999617815, 0.010558203794062138, -0.00809932965785265, -0.012900779023766518, 0.004689304158091545, 0.01261834055185318, 0.008481452241539955, -0.008460684679448605, 0.015259968116879463, 0.0034951723646372557, 0.021199477836489677, 0.0022657355293631554, 0.0026083996053785086, -0.0002891876210924238, -0.0007403618074022233, 0.010533282533288002, -0.00038835249142721295, 0.00902971439063549, -0.026881469413638115, -0.007796124089509249, 0.025668645277619362, -0.024322910234332085, 0.001654132385738194, 0.013881005346775055, 0.005112961865961552, -0.01138890441507101, -0.025834785774350166, 0.003912599291652441, 0.01839170977473259, -0.03907615318894386, -0.00019261868146713823, -0.0006661179941147566, 0.004361177794635296, 0.023874333128333092, 0.009810573421418667, 0.011970394290983677, -0.019571304321289062, -0.003756843041628599, 0.005133728962391615, -0.014670170843601227, 0.005486777052283287, -0.0019749903585761786, 0.0034827119670808315, 0.009154319763183594, 0.01591622270643711, -0.03834513574838638, -0.010159467346966267, 0.003179506165906787, 0.0007683979929424822, 0.017212115228176117, 0.022478755563497543, 0.017428096383810043, -0.009685968048870564, -0.010757572017610073, 0.01661401055753231, 0.027180520817637444, 0.016838299110531807, 0.01588299311697483, 0.005270794965326786, 0.020833969116210938, 0.014304663054645061, -0.009503213688731194, -0.0015243354719132185, -0.0016188275767490268, 0.003270883345976472, 0.0075967563316226006, 0.02669871412217617, -0.023907560855150223, -0.010358835570514202, -0.006786823272705078, -0.013299515470862389, 0.022794421762228012, 0.0045439316891133785, -0.002919912338256836, -0.0002798422356136143, 0.007144024595618248, -0.005644610151648521, 0.0019158030627295375, 0.0021452840883284807, 0.02051830291748047, -0.009644432924687862, 0.0017507013399153948, 0.011064930818974972, 0.0003283862897660583, 0.002562711015343666, 0.006658064667135477, -0.012078385800123215, -0.032945580780506134, -0.006072420626878738, 0.018956584855914116, -0.029356956481933594, -0.017029359936714172, -0.015409494750201702, -0.011596579104661942, 0.014520645141601562, -0.026997767388820648, 0.009104477241635323, 0.01226113922894001, -0.001121445675380528, 0.010707729496061802, 0.026216907426714897, -0.003223117906600237, -0.007405695039778948, -0.006994498427957296, 0.024256454780697823, 0.012925700284540653, -0.02302701771259308, -0.018125884234905243, -0.005324790254235268, -0.0037589198909699917, -0.004352870862931013, -0.006716213654726744, -0.03344400227069855, 0.0216812826693058, -0.027612484991550446, -0.00795395765453577, 0.016879834234714508, -0.022279387339949608, -0.0034847885835915804, -0.014412653632462025, 0.019554689526557922, -0.01622358150780201, 0.02232922986149788, 0.019322093576192856, -0.0006007003248669207, -0.003891831962391734, -0.028310272842645645, 0.007389081176370382, -0.008124250918626785, -0.01844155043363571, 0.0023135009687393904, -0.005586461164057255, -0.008186553604900837, 0.000720632669981569, -0.015575634315609932, -0.017527781426906586, 0.0002580363361630589, -0.0055906143970787525, 0.02887514978647232, 0.013623488135635853, -0.025136997923254967, 0.008361000567674637, 0.0035886261612176895, 0.012718024663627148, 0.0018067735945805907, -0.01170457061380148, 0.0042220354080200195, 0.03934197500348091, 0.010308993048965931, -0.01661401055753231, -0.01692967675626278, -0.015201819129288197, 0.0003135894367005676, 0.021099792793393135, 0.013233059085905552, -0.005760908126831055, 0.003204427193850279, -0.0030902058351784945, -0.007368313614279032, -0.0068158977665007114, -0.00899648666381836, -0.015741774812340736, -0.008265470154583454, -0.00863097794353962, -0.022113246843218803, -0.004033050965517759, -0.030553163960576057, -0.016697080805897713, 0.025103770196437836, 0.005191878415644169, -0.017760377377271652, 0.006832511629909277, 0.006886507384479046, 0.0023384219966828823, 0.018906744197010994, -0.012169762514531612, 0.01879044622182846, -0.011845788918435574, 0.023608507588505745, 0.01800958625972271, 0.0027392348274588585, 0.013291208073496819, -0.002550250617787242, 0.011430438607931137, 0.004192960914224386, -0.008979872800409794, -0.01298384927213192, 0.025070540606975555, 0.016472790390253067, 0.015467643737792969, 0.01355703268200159, -0.005686144810169935, 0.00934538058936596, -0.01664723828434944, -0.0015201818896457553, 0.0037423057947307825, 0.0149775305762887, 0.0018971122335642576, 0.015259968116879463, -0.005744293797761202, 0.007600909564644098, 0.004573006182909012, 0.004219958558678627, -0.008689126931130886, -0.0062385606579482555, -5.273001079331152e-06, 0.004980049561709166, -0.008444070816040039, 0.011480281129479408, 0.008738969452679157, -0.009278925135731697, -0.0006749441381543875, 0.0027641558554023504, 0.010500054806470871, 0.00458546681329608, -0.013980689458549023, -0.017909903079271317, 0.027878308668732643, -0.030735919252038002, 0.003752689575776458, 0.006591608747839928, 0.0317826010286808, -0.037713803350925446, 0.00229273340664804, -0.01734502613544464, 0.016090668737888336, 0.028642553836107254, 0.002963524078950286, -0.005270794965326786, 0.024705033749341965, -0.027994606643915176, 0.008215627633035183, 0.01389761921018362, -0.016024213284254074, 0.029157588258385658, 0.02201356366276741, -0.012036850675940514, -0.0029095285572111607, -0.016339879482984543, -0.0027080837171524763, -0.006462850142270327, -0.003326955484226346, -0.001885690144263208, 0.007646598387509584, 0.029473254457116127, -0.010765878483653069, 0.007962264120578766, 0.001638556714169681, 0.010292379185557365, -0.02558557502925396, -0.005063119810074568, -0.009577976539731026, 0.004884519148617983, 0.020667828619480133, 0.01156335137784481, 0.008730662055313587, -0.0024422595743089914, 0.0005986235337331891, -0.008423303253948689, -0.02020263671875, -0.02377464808523655, 0.0030216730665415525, -0.003954134415835142, -0.00935368798673153, 0.010126239620149136, 0.009960099123418331, -0.007235401310026646, -0.027695555239915848, 0.006591608747839928, -0.011056623421609402, 0.006084881257265806, -0.009112784639000893, 0.00973580963909626, 0.018175726756453514, -0.0010160505771636963, -0.0102757653221488, -0.016763536259531975, -0.027213748544454575, 0.008439917117357254, 0.018973199650645256, 0.006458696443587542, -0.017544394358992577, 0.012709718197584152, 0.008157478645443916, -0.013606874272227287, -0.013955768197774887, 0.021166248247027397, 0.0015658704796805978, -0.016148818656802177, -0.010308993048965931, 0.01659739576280117, 0.01840832270681858, -0.027546029537916183, -0.00694880960509181, 0.00413481192663312, 0.01208669226616621, -0.039807166904211044, -0.02963939495384693, 0.0012574729043990374, -0.003345646196976304, 0.01589960791170597, -0.002828535158187151, 0.022462142631411552, 0.006458696443587542, -0.005835670977830887, 0.01084894873201847, 0.003511786460876465, 0.004178423434495926, 0.015068907290697098, 0.010641273111104965, 0.007812738418579102, -0.0021452840883284807, 0.018524620682001114, -0.010516668669879436, -0.008589442819356918, -0.009694274514913559, 6.301642133621499e-05, 0.0037672268226742744, 0.0022761193104088306, 0.004776528105139732, 0.002143207238987088, -0.002544020302593708, 0.006363166030496359, 0.009528134949505329, -0.010616352781653404, 0.005520004779100418, -0.002604246139526367, -0.004880365449935198, -0.02088381163775921, -0.017145657911896706, 0.0033414927311241627, 0.0007720323046669364, 0.010300686582922935, -0.00775043573230505, -0.003825375810265541, -0.016015905886888504, 0.03292896971106529, 0.0065126921981573105, -0.008190707303583622, -0.001598060131072998, 0.008722355589270592, 0.012767867185175419, 0.023143315687775612, 0.02095026709139347, 0.004622848238795996, -0.010009940713644028, 0.0075884489342570305, 0.006973730865865946, -0.01103170309215784, 0.0023695731069892645, 0.014803082682192326, -0.021182863041758537, -0.014861231669783592, 0.006030885502696037, 0.00540786050260067, 0.013839470222592354, -0.002921988954767585, 0.017444711178541183, 0.00019638279627542943, 0.002465103752911091, -0.018890129402279854, -0.014636943116784096, -0.0033622602932155132, 0.0007180367247201502, 0.008556215092539787, -8.242106559919193e-06, 0.009976712986826897, 0.0015721006784588099, -0.015658704563975334, 0.0006489848019555211, -0.009993326850235462, -0.011247685179114342, 0.023243000730872154, -0.01514367014169693, 0.0332612469792366, -0.01590791530907154, 0.025336366146802902, -0.008738969452679157, 0.011139693669974804, -0.014661864377558231, -0.001177517930045724, -0.021531756967306137, 0.01444588229060173, 0.014454188756644726, 0.009121092036366463, 0.011131387203931808, -0.016846606507897377, -0.017394868656992912, -0.023276228457689285, -0.008697434328496456, -0.015210126526653767, -0.015060599893331528, 0.024040473625063896, -0.0010409716051071882, 0.02091703936457634, -0.005935355089604855, -0.02166466973721981, 0.01156335137784481, 0.01479477621614933, -0.007692286744713783, -0.0017237035790458322, 0.03595271706581116, -0.006741134449839592, -0.00586474547162652, -0.006271788850426674, -0.017743762582540512, 0.02163144201040268, 0.017776990309357643, -0.003746459260582924, -0.016705386340618134, -0.017909903079271317, -0.005586461164057255, -0.018159113824367523, 0.00551585154607892, 0.030087972059845924, -0.021016722545027733, 0.0014069989556446671, -0.004435940645635128, 0.002753772307187319, -0.005976890213787556, -0.006878200452774763, -0.01192055270075798, 0.008572828955948353, -0.008074409328401089, -0.009528134949505329, 0.0034474071580916643, -0.015658704563975334, 0.004201267845928669, 0.0038170688785612583, -0.020119566470384598, -0.0005472239572554827, 0.004481629468500614, -0.001829617889598012, -0.03578657656908035, 0.003349799895659089, -0.0032314250711351633, 0.017926517874002457, 0.02091703936457634, -0.012676489539444447, 0.02342575415968895, 0.00938691571354866, -0.006778516341000795, 0.005744293797761202, 0.004901133012026548, 0.027546029537916183, 0.03714892640709877, -0.011970394290983677, 0.019903583452105522, 0.001958376495167613, -0.020451847463846207, -0.0020248324144631624, -0.023508824408054352, -0.006994498427957296, 0.010965246707201004, -0.004573006182909012, -0.005918741226196289, -0.0053704786114394665, 0.008032874204218388, 0.03314495086669922, 0.005785828921943903, 0.0023695731069892645, -0.007206326816231012, -0.006483617704361677, 0.012950620613992214, 0.015924528241157532, -0.003343569580465555, -0.013482268899679184, 0.014288049191236496, -0.004950975067913532, -0.0010503169614821672, 0.021349003538489342, -0.010516668669879436, 0.00881373230367899, -0.0078085847198963165, -0.005565693601965904, 0.02737988904118538, 0.0014215362025424838, 0.005324790254235268, 0.010516668669879436, -0.010508361272513866, 0.00220550992526114, 0.005632149521261454, 0.02374142035841942, 0.02415677160024643, 0.029456639662384987, 0.004564699251204729, 0.005324790254235268, -0.004535624757409096, 0.005362171679735184, 0.006197025999426842, -0.0008852152386680245, -0.008007952943444252, -0.005511697847396135, -0.006886507384479046, 0.018175726756453514, -0.03498910367488861, -0.01907288283109665, 0.010865562595427036, -0.015334730967879295, -0.007746282033622265, -0.00677436264231801, -0.015567327849566936, -0.02161482721567154, 0.002629167167469859, -0.01133075449615717, -0.001155712059698999, 0.002863839967176318, -0.015575634315609932, -0.008115943521261215, -0.014595407992601395, 0.0028389189392328262, -0.0104502122849226, 0.018458165228366852, -0.018624305725097656, -0.023309456184506416, -0.011588271707296371, -0.020302319899201393, -0.008157478645443916, -0.014371118508279324, 0.013216445222496986, -0.007584295701235533, 0.0032189644407480955, 0.007459690794348717, 0.006475310306996107, 0.008493912406265736, 0.029473254457116127, -0.004872058518230915, -0.009553056210279465, -0.004826370161026716, -0.0033311089500784874, 0.018192341551184654, -0.0014391886070370674, 0.010392063297331333, -0.0033165717031806707, 0.005295715760439634, -0.0066331434063613415, 0.007974725216627121, -0.009727503173053265, -0.017810218036174774, 0.0005472239572554827, 0.011663035489618778, 0.01192055270075798, 0.00863097794353962, 8.09284028946422e-05, -0.008481452241539955, -0.005166957154870033, -0.012485428713262081, -0.024040473625063896, -0.0037506127264350653, 0.020634600892663002, -0.02528652362525463, -0.012776173651218414, 0.0012605880619958043, 0.008871881291270256, -0.007958111353218555, -0.028775466606020927, -0.02776201069355011, 0.016730308532714844, -0.030470095574855804, 0.013249672949314117, -0.012950620613992214, -0.00432379636913538, 0.0008421226521022618, -0.003906369209289551, 0.00035953757469542325, -0.014055452309548855, -0.022179704159498215, -0.0026831626892089844, 0.009428450837731361, -0.0004415692528709769, -0.004157655872404575, -0.00713156396523118, 0.004114044364541769, 0.001133906189352274, -0.010234230197966099, -0.008203167468309402, -0.007231248077005148, -0.009951791726052761, -0.014329583384096622, 0.024273069575428963, -0.006089034955948591, -0.014238206669688225, 9.150685218628496e-05, 0.024455823004245758, -0.017860060557723045, -0.016788456588983536, -0.010408677160739899, 0.0021598213352262974, 0.009320459328591824, -0.017145657911896706, 0.011106465943157673, 0.0024235686287283897, 0.003302034456282854, 0.01879044622182846, -0.017494551837444305, -0.010475133545696735, -0.011322448030114174, -0.007364159915596247, -0.0028555330354720354, -0.018142499029636383, 0.01192055270075798, -0.008921723812818527, 0.026549188420176506, 0.000880542560480535, -0.021116407588124275, 0.021365616470575333, -0.022628281265497208, 0.026864854618906975, 0.01336597092449665, -0.012684796936810017, -0.0035637051332741976, 0.007065108045935631, -0.015426108613610268, -0.0097524244338274, 0.0015087598003447056, -0.008161632344126701, 0.0016157125355675817, -0.04090369492769241, -0.007364159915596247, 0.004303028807044029, 0.02990521863102913, 0.006280095782130957, 0.012319288216531277, 0.011895631439983845, 0.005873052403330803, -0.010691115632653236, -0.007148177828639746, -0.0010643349960446358, -0.016364799812436104, -0.0018524621846154332, 0.01426312793046236, -0.014670170843601227, -0.0011640191078186035, -0.003862757468596101, 0.04246541112661362, -0.005673684645444155, -0.003628084436058998, 0.0036862334236502647, 0.00029775421717204154, 0.0027890768833458424, -2.0475468772929162e-05, -0.0007907230756245553, 0.026515960693359375, 0.00863097794353962, -0.01907288283109665, -0.0034598675556480885, 0.013490576297044754, -0.0024069547653198242, -0.02887514978647232, -0.008697434328496456, 0.021066565066576004, 0.009129398502409458, -0.024106929078698158, 0.0005064677097834647, -0.017428096383810043, 0.014844617806375027, -0.012850936502218246, 0.0015222587389871478, 0.004028897266834974, 0.0013633872149512172, 0.010001634247601032, -0.01734502613544464, 0.012535270303487778, 0.02628336474299431, 0.0064545427449047565, -0.009312152862548828, 0.019704215228557587, 0.017378253862261772, 0.01690475456416607, -0.02563541755080223, -0.021465301513671875, 0.010749264620244503, 0.007646598387509584, -0.015235047787427902, -0.008007952943444252, 0.003931290004402399, -0.014072067104279995, -0.005906280595809221, -0.008041180670261383, -0.015733467414975166, 0.009445064701139927, 0.002143207238987088, 0.0026893930044025183, -0.002901221625506878, -0.01690475456416607, -0.009494907222688198, 0.03380950912833214, -0.014902766793966293, 0.0270808357745409, -0.0013955768663436174, 0.005088040605187416, -0.005436934996396303, 0.017594236880540848, -0.010608045384287834, -0.004980049561709166, -0.013224751688539982, -0.006400547455996275, -0.008348540402948856, -0.016447870060801506, -0.006533459294587374, -0.00881373230367899, -0.014196671545505524, -0.00297598447650671, 0.00275792577303946, -0.006176258437335491, -8.715865260455757e-05, 0.015259968116879463, -0.01170457061380148, -0.015343038365244865, 0.016082361340522766, -0.017926517874002457, -0.0002205250202678144, 0.014578794129192829, -0.019006427377462387, 0.015110442414879799, 0.017527781426906586, 0.038810327649116516, 0.000962055055424571, -0.019222410395741463, 0.0009142897324636579, -0.01192055270075798, 0.0023425754625350237, -0.0008452377514913678, -0.0073766205459833145, -0.010915405116975307, -0.013033690862357616, 0.020003268495202065, -0.0034827119670808315, 0.005964429583400488, 0.0029282192699611187, -0.021747739985585213, -0.03138386458158493, 0.0029116051737219095, 0.012967235408723354, -0.01662231795489788, 0.027130678296089172, -0.00030995512497611344, -0.0034224861301481724, 0.0057733687572181225, 0.009577976539731026, -0.018591077998280525, -0.00467269029468298, 0.015633784234523773, 0.011131387203931808, 0.03578657656908035, 0.017776990309357643, 0.00460623437538743, -0.011073238216340542, -0.0015440646093338728, 0.0106661943718791, 0.004253186751157045, 0.0014204978942871094, 0.009137705899775028, 0.009885336272418499, -0.03784671425819397, 0.008581136353313923, 0.014420961029827595, 0.002741311676800251, 0.007646598387509584, 0.016148818656802177, -0.02086719684302807, 0.014595407992601395, -0.010516668669879436, 0.005706912372261286, -0.010824027471244335, -0.002005103277042508, -0.009785652160644531, -0.009270617738366127, -0.01875721663236618, -0.009478292427957058, 0.025070540606975555, 0.0025793251115828753, 0.011006781831383705, -0.016788456588983536, -0.012493736110627651, 0.019704215228557587, -0.003399641951546073, -0.005885513033717871, 0.022246159613132477, -0.009976712986826897, -0.007542760577052832, -0.016339879482984543, 0.0034889420494437218, -0.0007621677359566092, -0.02812751941382885, -0.008622671477496624, 0.010425291024148464, 0.02231261506676674, -0.026532573625445366, 0.01170457061380148, -0.0008384883403778076, -0.013806242495775223, -0.005349711515009403, -0.011214456520974636, 0.026482732966542244, 0.0262999776750803, 0.016356492415070534, -0.016356492415070534, 0.012252832762897015, 0.0035616285167634487, -0.007451383396983147, 0.02523668110370636, -0.017793605104088783, 0.039840396493673325, -0.00596027635037899, -0.004610387608408928, -0.011754412204027176, 0.007177252322435379, -0.020318934693932533, 0.01084894873201847, -0.04010622203350067, -0.0010108586866408587, 0.000526196847204119, -0.020335547626018524, 0.00414104200899601, 0.0009090978419408202, 0.019903583452105522, 0.032281022518873215, 0.006886507384479046, 0.022246159613132477, -0.01800958625972271, -0.004714225418865681, 0.056520864367485046, 0.009777344763278961, -0.000990091124549508, -0.008136711083352566, -0.018873516470193863, 0.007434769533574581, -0.020069723948836327, 0.03347723186016083, 0.006126416381448507, 0.011139693669974804, 0.020784126594662666, 0.00921246875077486, 0.0005456663784570992, 0.03525492921471596, -0.013615181669592857, -0.003154585137963295, 0.011222763918340206, 0.017129044979810715, 0.009270617738366127, 0.002186818979680538, 0.012103306129574776, 0.03276282921433449, 0.010973554104566574, 0.02452227845788002, 0.01629003696143627, 0.027894923463463783, 0.014479110017418861, -0.0158913005143404, 0.004926053807139397, -0.008514679968357086, -0.005432781297713518, -0.002180588897317648, 0.030054744333028793, -0.005000817123800516, 0.013665023259818554, 0.007551067508757114, -0.027845080941915512, -0.005453548859804869, -0.006043346133083105, -0.0015066830674186349, -0.05273286998271942, -0.0015284889377653599, -0.004307182040065527, 0.008066101931035519, 0.005208492279052734, -0.0017029360169544816, -0.0021598213352262974, -0.0025710181798785925, 0.0209004245698452, -0.021797580644488335, 0.0158497653901577, -0.026233522221446037, -0.01626511663198471, -0.036318227648735046, -0.00650438480079174, 0.014944301918148994, -0.017893288284540176, 0.024256454780697823, -0.011754412204027176, -0.009195854887366295, -0.02050168812274933, -0.005636302754282951, -0.0006977884331718087, 0.006138876546174288, 0.00885526742786169, -0.019637759774923325, -0.012634954415261745, 0.012992155738174915, -0.0018919204594567418, -0.025336366146802902, -0.02777862548828125, -0.021498529240489006, 0.013133374974131584, -0.0025772482622414827, 0.002807767828926444, -0.008115943521261215, -0.016098976135253906, -0.009793958626687527, -0.012518656440079212, 0.020667828619480133, 0.0009672468877397478, -0.014761548489332199, -0.005233413074165583, 0.013980689458549023, 0.008327772840857506, 0.001976028783246875, 0.00551585154607892, -0.0077753569930791855, 0.009810573421418667, -0.004734992980957031, 0.012493736110627651, -0.006678832229226828, -0.024106929078698158, -0.02742973156273365, 0.015783309936523438, -0.018541235476732254, 0.028061063960194588, -0.019754057750105858, -0.0017164349555969238, -0.0033165717031806707, 0.015376266092061996, 0.013224751688539982, 0.008024566806852818, -0.009835493750870228, 0.016896449029445648, -0.0073807742446660995, 0.00533309718593955, -0.005665377248078585, 0.022445527836680412, 0.017228728160262108, -0.02776201069355011, -0.0025897088926285505, -0.011945473030209541, -0.009096170775592327, -0.008439917117357254, -0.00460623437538743, 0.00566953094676137, -0.00431548897176981, -0.0064213150180876255, -0.016838299110531807, 0.01653924770653248, 0.007825198583304882, 0.00792488269507885, -0.007098335772752762, -0.019720830023288727, 0.004373637959361076, 0.0028472261037677526, 0.015932835638523102, -0.013581953011453152, -0.018923357129096985, 0.03204842656850815, 0.011496894992887974, -0.008589442819356918, 0.023542052134871483, -0.008414995856583118, -0.009195854887366295, -0.002305193804204464, -0.00882203970104456, 0.020750898867845535, -0.0033560299780219793, -0.019388549029827118, -0.03236409276723862, -0.006296709645539522, 0.02528652362525463, -0.011488587595522404, -0.019720830023288727, -0.014495723880827427, 0.006699599791318178, 0.0012855090899392962, 0.030868830159306526, 0.03141709417104721, -0.01804281584918499, -0.006820050999522209, 0.016406334936618805, -0.020784126594662666, 0.036982785910367966, -0.006226100493222475, 0.012103306129574776, -0.018607690930366516, 0.018109271302819252, -0.0032937275245785713, -0.019637759774923325, -0.017561009153723717, -0.0023176544345915318, 0.023974016308784485, -0.01835848204791546, -0.016497712582349777, -0.0009142897324636579, 0.0003644698590505868, -0.00346402102150023, 0.0213323887437582, 0.01767730712890625, 0.017444711178541183, 0.01988697052001953, -0.011488587595522404, -0.011098158545792103, -0.018175726756453514, -0.009652740322053432, -0.011471973732113838, -0.00261255307123065, 0.017029359936714172, 0.0015097982250154018, 0.027695555239915848, -0.008169939741492271, -0.015201819129288197, -0.004045511595904827, 0.0054618557915091515, -0.013125068508088589, -0.008223935030400753, -0.00017042340186890215, -0.006699599791318178, 0.010350528173148632, 0.02306024543941021, 0.032696373760700226, -0.005765061359852552, -0.010782492347061634, -0.02204679138958454, 0.0005248988745734096, -0.008913416415452957, 0.004739146213978529, -0.013665023259818554, -0.020617986097931862, 0.01772714965045452, 0.01440434716641903, -0.02963939495384693, -0.01879044622182846, 0.004568852949887514, 0.022977175191044807, -0.03209826722741127, -0.010466826148331165, 0.013781321235001087, -0.0035138630773872137, 0.015982678160071373, 0.003152508521452546, 0.018657533451914787, 0.006105648819357157, -0.02274457924067974, 0.0014609944773837924, -0.006375626195222139, 0.004174270201474428, 0.0036758496426045895, 0.003833682741969824, -0.012518656440079212, 0.01982051506638527, -0.0016188275767490268, -0.006712059956043959, -0.002531559905037284, 0.0005363210220821202, -0.008203167468309402, -0.0038772947154939175, 0.012128227390348911, 0.01840832270681858, -0.014304663054645061, 0.001647902186959982, 0.022179704159498215, -0.011422132141888142, 0.006628990173339844, 0.03502233326435089, -0.010034861974418163, 0.005956122651696205, 0.01659739576280117, -0.014005610719323158, -0.012767867185175419, -0.007384927477687597, 0.007605063263326883, 0.0024111082311719656, 0.00657914811745286, -0.000582528708036989, 0.020036496222019196, -0.010998474434018135, -0.006433775648474693, 0.0020165254827588797, 0.019637759774923325, 0.010724343359470367, -0.0038170688785612583, 0.0037672268226742744, -0.008419149555265903, 0.026582416146993637, -0.010192695073783398, -0.003918829839676619, 0.0019511078717187047, -0.004394405521452427, 0.005586461164057255, -0.0014838387724012136, 0.020119566470384598, -0.01618204638361931, 0.013839470222592354, -0.00032345400541089475, 0.007052647415548563, 0.029356956481933594, 0.002180588897317648, 0.0041472720913589, 0.020468460395932198, 0.027612484991550446, 0.031101427972316742, 0.012477121315896511, 0.003650928847491741, 0.009453372098505497, 0.00686158612370491, -0.004805602598935366, -0.007094182539731264, -0.015284889377653599, -0.0042220354080200195, 0.01842493750154972, -0.0031815830152481794, -0.006782669574022293, -0.031250953674316406, 0.003823299193754792, 0.0030881292186677456, 0.012460507452487946, -0.027263591066002846, -0.00037485361099243164, -0.0020102951675653458, -0.009661046788096428, 0.0052251061424613, -0.015043986029922962, 0.01590791530907154, 0.015401187352836132, 0.018175726756453514, 0.015475950203835964, -0.020053111016750336, 0.0018908820347860456, -0.009885336272418499, 0.007497072219848633, 0.006682985462248325, -0.018607690930366516, -0.012319288216531277, -0.04651922732591629, -0.012011929415166378, -0.005765061359852552, 0.0007704747258685529, 0.007825198583304882, 0.00029723503394052386, -0.0404052734375, -0.026599030941724777, -0.01983712799847126, 0.0032625761814415455, -0.026615643873810768, 0.008381768129765987, -0.00413481192663312, -0.02488778717815876, 0.010732650756835938, -0.002662395127117634, 0.017561009153723717, 0.010774185881018639, 0.010018248111009598, -0.013108453713357449, 0.03595271706581116, -0.0003317610244266689, 0.0007658020476810634, -0.022628281265497208, 0.0009688044665381312, 0.0008945605950430036, -0.005416167434304953, -0.08180738985538483, -0.010126239620149136, 0.007758742664009333, -0.028227202594280243, -0.0036010867916047573, 0.005910434294492006, 0.003567858599126339, 0.006251021288335323, -0.01386439148336649, 0.004589620511978865, -0.016888141632080078, 0.014728319831192493, 0.003738152328878641, 0.009536441415548325, 0.0069446563720703125, 0.012402358464896679, 0.017793605104088783, -0.020750898867845535, 0.057218652218580246, 0.009428450837731361, 0.007991339080035686, 0.006059959996491671, -0.015027372166514397, -0.0014194594696164131, 0.020817354321479797, -0.009661046788096428, -0.005320636555552483, -0.00668713916093111, 0.008277930319309235, 0.0036696195602416992, 0.02091703936457634, 0.026798399165272713, 0.012070078402757645, -0.005304022692143917, 0.0033726440742611885, 0.0027496186085045338, -0.019970040768384933, -0.005403706803917885, -0.027894923463463783, 0.027678940445184708, 0.008905109018087387, 0.020750898867845535, 0.00048258507740683854, 0.006130569614470005, -0.013050304725766182, -0.007526146713644266, 0.010159467346966267, -0.016364799812436104, -0.00766321225091815, -0.026549188420176506, 0.00369661720469594, -0.009494907222688198, -0.006209486164152622, -0.00935368798673153, 0.03861096128821373, 0.021016722545027733, -0.01767730712890625, -0.009453372098505497, 0.014504031278192997, -0.0008846960263326764, -0.031583234667778015, 0.002629167167469859, 0.009079556912183762, 0.02085058204829693, 0.0029365262016654015, -0.007123257033526897, 0.015417801216244698, -0.0048512909561395645, -0.003086052369326353, -0.023193158209323883, 0.003752689575776458, 0.007850119844079018, 0.007634137757122517, -0.01314998883754015, -0.0106246592476964, 0.009627819061279297, 0.0004875173617620021, -0.03595271706581116, 0.0048554446548223495, 0.0104502122849226, -0.0030528244096785784, -0.00233634514734149, -0.0019791440572589636, -0.006824204698204994, 0.019970040768384933, 0.02488778717815876, 0.008689126931130886, -0.005914587527513504, -0.01133906189352274, 0.007642444688826799, -0.009511521086096764, -0.008236395195126534, 0.004010206554085016, -0.0035803192295134068, -0.02166466973721981, -0.007517839781939983, -0.0015108365332707763, 0.010824027471244335, -0.02628336474299431, -0.0016063670627772808, 0.018607690930366516, 0.0045065502636134624, 0.013532111421227455, -0.020335547626018524, -0.01874060370028019, 0.0262999776750803, 0.007721361238509417, -0.0055947680957615376, -0.002190972678363323, -0.00886357482522726, 0.016298344358801842, 0.01736164093017578, 0.010790799744427204, 0.007696440443396568, -0.004485782701522112, 0.02302701771259308, 0.00668713916093111, -0.006915581878274679, -0.020485075190663338, 0.004489936400204897, 0.0053995531052351, 0.02021924965083599, -0.011505202390253544, 0.0020632524974644184, -0.015019064769148827, -0.0025793251115828753, 0.0003424043534323573, -0.01587468758225441, 0.0097524244338274, 0.00011779073975048959, -0.031267568469047546, 0.013797935098409653, 0.006786823272705078, 0.00748876528814435, -0.007983031682670116, -0.002784923417493701, 0.004859597887843847, 0.025386206805706024, -0.008971565403044224, -0.006741134449839592, -0.014337890781462193, 0.018092656508088112, 0.0010295493993908167, -0.016323264688253403, -0.017511166632175446, -0.0010191657347604632, 0.009536441415548325, -0.019322093576192856, 0.024040473625063896, 0.01138890441507101, 0.014803082682192326, -0.00569029850885272, 0.010774185881018639, 0.0055947680957615376, 0.006051653064787388, 0.011214456520974636, 0.022229544818401337, -0.004402712918817997, 0.0006339283427223563, -0.0015316040953621268, -0.0002371390291955322, -0.0007626868900842965, -0.019371936097741127, 0.006541766691952944, 0.01907288283109665, -0.006653910968452692, -0.012194683775305748, -0.0046394625678658485, 0.0026333206333220005, 0.009719195775687695, 0.0007626868900842965, 0.0016053287545219064, 0.0031379712745547295, -0.0024713340681046247, -0.004340410232543945, -0.02237907238304615, 0.014238206669688225, -0.00640470115467906, 0.012352516874670982, -0.008689126931130886, 0.0016136356862261891, 0.019421778619289398, -0.002807767828926444, -0.002859686501324177, 0.006359012331813574, 0.011413824744522572, -0.005706912372261286, 0.01244389358907938, -0.014288049191236496, -0.0021722817327827215, -0.0065126921981573105, -0.011496894992887974, 0.005083886906504631, 0.006305017042905092, -0.015683624893426895, 0.018973199650645256, -0.016082361340522766, -0.0020507918670773506, -0.016323264688253403, 0.012576805427670479, 0.001829617889598012, 0.0009968406520783901, 0.008888495154678822, -0.001601175288669765, 0.001795351505279541, 0.015741774812340736, 0.0010674501536414027, -0.004664383362978697, 0.017527781426906586, -0.013889312744140625, 0.02060137316584587, 0.021564984694123268, 0.011048316955566406, 0.010774185881018639, 0.0005238605081103742, -0.0006287364521995187, -0.0034515606239438057, -0.01767730712890625, -0.008074409328401089, -0.002104787388816476, -0.007056800648570061, 0.006790976505726576, -0.012601726688444614, -0.000551377481315285, 0.008007952943444252, -0.005362171679735184, -0.006188718602061272, 0.02231261506676674, -0.00046155796735547483, 0.006649757735431194, -0.005412013735622168, 0.012659875676035881, 0.010416984558105469, 0.00719801988452673, -0.019720830023288727, 0.023292841389775276, -0.024273069575428963, -0.006533459294587374, -0.013349357061088085, -0.01769392006099224, -0.0055947680957615376, 0.004278107546269894, -0.010325606912374496, -0.005711066070944071, -0.01844155043363571, 0.0022885799407958984, -0.00029593706130981445, -0.0017112430650740862, 0.025053927674889565, -0.003933366853743792, -0.005574000533670187, -0.007654905319213867, -0.010608045384287834, -0.004701764788478613, 0.016049133613705635, -0.004246956203132868, 0.006533459294587374, -0.011289220303297043, 0.014803082682192326, -0.0025149458087980747, 0.014005610719323158, 0.004801448900252581, 0.016331572085618973, -0.009677660651504993, -0.016414642333984375, 0.027645712718367577, -0.005652917083352804, 0.0004436459857970476, 0.027346661314368248, -0.0018410399788990617, -0.018624305725097656, 0.030436865985393524, 0.01009301096200943, 0.006612375844269991, -0.013797935098409653, -0.01389761921018362, 0.0024048779159784317, 0.00028555330936796963, -0.002390340669080615, -0.016472790390253067, -0.017826832830905914, 0.03234747797250748, -0.0007600909448228776, -0.005873052403330803, -0.026815012097358704, 0.01622358150780201, -0.014686784707009792, -0.005387092940509319, -0.011148001067340374, -0.020352162420749664], "465eac93-e005-49d0-8601-0352a21c45ed": [-0.0008089037728495896, 0.022528724744915962, -0.0027583115734159946, 0.017966708168387413, -0.02258901484310627, -0.022106686607003212, -0.014339201152324677, 0.0071294065564870834, -0.02648783102631569, 0.0005768463597632945, 0.020699897781014442, 0.0017095000948756933, 0.033340904861688614, 0.016750840470194817, 0.027593165636062622, 0.0025874872226268053, 0.027191225439310074, 0.026025600731372833, 0.021744942292571068, -0.016248414292931557, 0.014670801348984241, -0.014489928260445595, -0.0087271174415946, 0.015474680811166763, 0.030688101425766945, -0.028859274461865425, 0.015725893899798393, 0.00888286903500557, -0.047710251063108444, -0.012490278109908104, -0.003303442383185029, -0.0001495498581789434, -0.009902791120111942, -0.013344400562345982, 0.03205469623208046, -0.004639892373234034, -0.011746689677238464, -0.015374195761978626, 0.01266110222786665, 0.00967669952660799, -0.028095589950680733, 0.019644806161522865, -0.019061993807554245, -0.03167285397648811, -0.029844027012586594, -0.023212021216750145, -0.002871357137337327, 0.03910873830318451, -0.006762636359781027, 0.016157979145646095, -0.007069115526974201, -0.01720302179455757, 0.010822228156030178, -0.026528025045990944, 0.04417318105697632, -0.014590413309633732, -0.007209794595837593, 0.03038664720952511, -0.00851107481867075, -0.02847743220627308, -0.0008698228048160672, -0.019132332876324654, 0.0033260516356676817, 0.026528025045990944, 0.04791121929883957, 0.031190525740385056, 0.007521297782659531, 0.0639084205031395, -0.006873169913887978, 0.0190921388566494, 0.01178688369691372, 0.007526322267949581, -0.0390484482049942, 0.07263051718473434, 0.02200620248913765, 0.005667350720614195, 0.014962207525968552, 0.028276462107896805, 0.04053562507033348, -0.043891821056604385, 0.010902616195380688, -0.041399795562028885, 0.05932630971074104, 0.010229366831481457, 0.006049193441867828, 0.030868973582983017, 0.02301105111837387, -0.03880728408694267, 0.014288959093391895, -0.04043513908982277, 0.007898116484284401, -0.002460625022649765, -0.03054742142558098, -0.034265365451574326, -0.06909344345331192, 0.021121934056282043, -0.01470094732940197, 0.0023777249734848738, 0.029100438579916954, -0.009139105677604675, 0.013846824876964092, 0.014359298162162304, -0.0016919152112677693, 0.01926296390593052, 0.017876271158456802, -0.019453885033726692, 0.012239065952599049, -0.015836426988244057, -0.014942110516130924, -0.018619859591126442, -0.011294507421553135, -0.01362575776875019, 0.053618766367435455, -0.018901217728853226, -0.04168115556240082, -0.025543272495269775, -0.013776485808193684, -0.012038095854222775, 0.007315303664654493, -0.010983004234731197, 0.03430555760860443, -0.029844027012586594, 0.021463584154844284, -0.032758090645074844, 0.019323254004120827, 0.021825328469276428, -0.044052597135305405, 0.035410892218351364, 0.03199440613389015, 0.024216871708631516, -0.019574467092752457, -0.019413691014051437, -0.021242516115307808, -0.02333260327577591, -0.03273799270391464, -0.012490278109908104, -0.0269902553409338, 0.025201624259352684, -0.006159726995974779, -0.0067525883205235004, -0.016730742529034615, -0.013133381493389606, 0.00461225863546133, 0.009857572615146637, -0.00797348003834486, -0.012550569139420986, -0.01927301101386547, 0.026266762986779213, -0.0013967406703159213, 0.012048144824802876, -0.048554323613643646, 0.009108959697186947, -0.04168115556240082, 0.02043863758444786, 0.025523174554109573, -0.030788585543632507, -0.002748263068497181, 0.028939662501215935, 0.010093712247908115, 0.04823277145624161, 0.04750927910208702, 0.014580365270376205, 0.004727816674858332, 0.024116385728120804, 0.06185853108763695, 0.002193083753809333, 0.004428873769938946, 0.003489339491352439, 0.0211621280759573, -0.0021290245931595564, -0.015012450516223907, -0.014409540221095085, 0.018810780718922615, -0.014299007132649422, 0.03370264917612076, -0.05321682617068291, 0.03038664720952511, 0.04268600419163704, 0.007265061140060425, 0.00922451727092266, 0.012098386883735657, -0.0017120122211053967, 0.022327754646539688, 0.006516448687762022, -0.011616059578955173, 0.04935820400714874, 0.0005554933450184762, 0.025764338672161102, 0.03307964280247688, 0.01595700904726982, 0.018077241256833076, -0.004461531527340412, -0.011666301637887955, 0.018006902188062668, -0.003298418130725622, -0.03679758682847023, 0.0012353367637842894, 0.013012800365686417, -0.013987503945827484, 0.04059591516852379, -0.021483680233359337, 0.007687097880989313, 0.016429288312792778, 0.05952727794647217, -0.032516926527023315, 0.004695158917456865, -0.025523174554109573, -0.016087640076875687, 0.017805932089686394, -0.025764338672161102, 0.03179343417286873, -0.02773384377360344, 0.019634757190942764, -0.008249813690781593, -0.02881908044219017, -0.024458033964037895, -0.033260516822338104, 0.061657559126615524, -0.019484030082821846, -0.03788282349705696, -0.026105988770723343, -0.01051072496920824, -0.01585652306675911, 0.0008258605957962573, -0.023955609649419785, 0.022287560626864433, -0.003954082261770964, 0.04658481851220131, -0.02855782024562359, -0.02375463955104351, 0.018660053610801697, -0.05305605009198189, 0.011003101244568825, -0.034848179668188095, 0.0011725336080417037, 0.04594171419739723, -0.0015738453948870301, 0.005345799028873444, -0.010641355067491531, -0.01685132458806038, 0.02026781253516674, -0.018167678266763687, -0.01601729914546013, -0.02715103141963482, -0.02274979092180729, -0.048715099692344666, 0.02051902562379837, 0.02924111858010292, 0.013012800365686417, 0.0033185151405632496, -0.01768535003066063, 0.016379045322537422, 0.02582463063299656, 0.02002664841711521, -0.02616627886891365, 0.0023840053472667933, -0.0019343351013958454, -0.05140809714794159, 0.029522476717829704, 0.015967058017849922, -0.015112935565412045, -0.02035824954509735, -0.028035297989845276, 0.012158677913248539, -0.01644938439130783, -0.011736641637980938, -0.00570754474028945, 0.015052644535899162, 0.019664902240037918, 0.004448970779776573, 0.006044169422239065, -0.007094237022101879, -0.01520337164402008, 0.03213508427143097, -0.006998775992542505, -0.005506574641913176, 0.029582766816020012, 0.011133731342852116, 0.024538422003388405, 0.015233517624437809, -0.010621258057653904, -0.05225216969847679, 0.01109353732317686, -0.02749267965555191, 0.008300055749714375, -0.015122983604669571, -0.034767791628837585, -0.026045696809887886, -0.019393593072891235, -0.004072152078151703, 0.007566516287624836, 0.025302108377218246, 0.004054567310959101, 0.018790684640407562, -0.014690898358821869, 0.006315478589385748, 0.010239415802061558, 0.011314604431390762, -0.012982654385268688, 0.041560571640729904, -0.0027055570390075445, 0.040575820952653885, 0.0007618014933541417, 0.04063611105084419, 0.043650656938552856, -0.0017961683915928006, 0.0065566422417759895, 0.019564418122172356, 0.01274149026721716, 0.028517626225948334, 0.0009483266621828079, -0.005586962681263685, -0.02285027503967285, -0.004373607225716114, 0.01154571957886219, 0.053779542446136475, -0.04947878420352936, 0.0013603148981928825, -0.006159726995974779, -0.020699897781014442, -0.014771286398172379, 0.0007969712023623288, -0.07162566483020782, -0.0036275063175708055, 0.012630957178771496, -0.05711564049124718, 0.04308794438838959, 0.005597011186182499, -0.007450958248227835, -0.006822927389293909, -0.01229935698211193, -0.020287910476326942, -0.026688801124691963, -0.016801081597805023, -0.04208309203386307, -0.027693649753928185, -0.05795971304178238, -0.031110137701034546, -0.0018665078096091747, -0.003682773094624281, -0.007214818615466356, -0.01320372149348259, 0.0016806107014417648, -0.023654155433177948, -0.003898815717548132, 7.50496910768561e-05, 0.008214644156396389, -0.0013238891260698438, -0.023714445531368256, -0.006903315428644419, 0.00037399239954538643, -0.013384594582021236, -0.02184542641043663, 0.0007548931171186268, 0.05116693302989006, -0.030909167602658272, -0.022789984941482544, 0.03496875986456871, 0.0137061458081007, -0.002165450481697917, -0.01423871610313654, -0.010993052273988724, -0.02707064338028431, -0.03659661486744881, -0.05060421675443649, 0.023131633177399635, 0.03663681074976921, -0.014881819486618042, 0.007872994989156723, 0.005526671651750803, -0.02359386347234249, -0.038324955850839615, -0.024437937885522842, -0.020478831604123116, -0.007903140969574451, 0.007908164523541927, -0.00024069283972494304, -0.0010864934884011745, -0.04883568361401558, -0.0017999365227296948, -0.007209794595837593, -0.018800731748342514, -0.038204375654459, 0.00934007577598095, -0.0012183799408376217, -0.010073615238070488, 0.006024072412401438, -0.003959106747061014, -0.0024103824980556965, -0.036013804376125336, 0.01462055929005146, 0.029582766816020012, -0.011746689677238464, -0.016057493165135384, -0.04634365439414978, -0.03997290879487991, -0.015565117821097374, -0.03864650800824165, 0.035591766238212585, 0.038927868008613586, -0.024538422003388405, 0.013243915513157845, 0.007109309546649456, -0.00741578871384263, 0.04935820400714874, -0.02666870318353176, 0.03993271663784981, 0.019584516063332558, 0.020056795328855515, 0.022046396508812904, -0.00797850452363491, 0.027372097596526146, 0.03354187309741974, 0.05840184912085533, 0.016389094293117523, 0.004785595461726189, -0.013927212916314602, 0.04244484007358551, -0.0023739568423479795, 0.019865872338414192, -0.015886669978499413, -0.005923587363213301, 0.02781423181295395, 0.027010353282094002, -0.01104329526424408, 0.0008654265548102558, 0.007817728444933891, -0.01968500018119812, -0.012852024286985397, 0.008842675015330315, 0.02142339013516903, 0.03348158299922943, 0.0340242013335228, 0.04549958184361458, 0.007536370772868395, 0.034265365451574326, -0.0216042622923851, 0.011304556392133236, 0.039410192519426346, 0.016831228509545326, -0.013846824876964092, -0.024297259747982025, -0.008737165480852127, -0.027713747695088387, -0.0440124049782753, -0.013354448601603508, -0.03494866192340851, -0.0007442166097462177, 0.011756738647818565, 0.001605246914550662, -0.0063657211139798164, 0.022327754646539688, -0.02234785072505474, 0.0011763018555939198, -0.015977105125784874, 0.009716893546283245, 0.03631525859236717, -0.03189392015337944, 0.008551268838346004, -0.00796845555305481, 0.019654855132102966, 0.005225216969847679, 0.024458033964037895, 0.01711258478462696, -0.005928611382842064, -0.01407794002443552, -0.03054742142558098, -0.028598014265298843, 0.00983747560530901, 0.04674559459090233, 0.0191122367978096, -0.001958200242370367, -0.030909167602658272, 0.03311983868479729, 0.04029446095228195, -0.026688801124691963, -0.010520773008465767, 0.008335226215422153, 0.007425837218761444, -0.025683950632810593, -0.004529358819127083, -0.026447637006640434, 0.016911616548895836, 0.0013113284949213266, -0.054020706564188004, 0.013424788601696491, -0.02409628964960575, 0.0022822641767561436, 0.03920922428369522, -0.022488530725240707, 0.008938135579228401, -0.01104329526424408, 0.01801694929599762, 0.02242823876440525, -0.006948533933609724, -0.009696796536445618, -0.025302108377218246, -0.032094892114400864, 0.021483680233359337, -0.027472583577036858, 0.03862641006708145, -0.016750840470194817, -0.007506225258111954, 0.005803005304187536, -0.014087988995015621, 0.03187382221221924, 0.019906066358089447, 0.01075188908725977, -0.02540259249508381, -0.03794311359524727, -0.04212328791618347, 0.037078943103551865, -0.015715844929218292, 0.02873869426548481, 0.0067726848646998405, 0.02035824954509735, -0.017896367236971855, -0.007385643199086189, 0.015967058017849922, -0.0023563718423247337, -0.02648783102631569, -0.006149678491055965, -0.0058180782943964005, 0.0027231420390307903, -0.028296560049057007, -0.03289876878261566, -0.02108174003660679, -0.019453885033726692, 0.018740441650152206, -0.05578923970460892, -0.0137061458081007, 0.015745989978313446, -0.009772161021828651, -0.01267115119844675, 0.01852942258119583, 0.004775546956807375, -0.005195071455091238, 0.011636156588792801, 0.024035997688770294, -0.01793656125664711, -0.041560571640729904, 0.039249420166015625, 0.013595612719655037, 0.007792607415467501, 0.04143999144434929, 0.035250116139650345, -0.01424876507371664, 0.02857791818678379, -0.02707064338028431, -0.013977454975247383, -0.024880072101950645, -0.019916115328669548, -0.03629516065120697, -0.020900867879390717, -0.02558346651494503, -0.004418825265020132, 0.026387345045804977, 0.01291231531649828, -0.005109659396111965, -0.051207125186920166, -0.0032833453733474016, 0.048875875771045685, -0.016328802332282066, 0.020719995722174644, 0.012691248208284378, 0.022227268666028976, -0.02542269043624401, -0.018830878660082817, -0.01753462292253971, 0.029261214658617973, 0.03454672172665596, 0.014469831250607967, 0.06045174226164818, 0.01357551570981741, 0.019142381846904755, 0.02566385455429554, -0.010204246267676353, 0.004848398268222809, -0.0340643934905529, 0.01736379787325859, 0.018378695473074913, 0.0066822487860918045, -0.012590763159096241, 0.015213420614600182, 0.014489928260445595, -0.026849577203392982, -0.002841211622580886, -0.005185022950172424, 0.010339900851249695, 0.007089212536811829, 0.008616583421826363, 0.037078943103551865, -0.006576739251613617, 0.016419239342212677, 0.014057843014597893, -0.006632006261497736, 0.02932150661945343, 0.007435885723680258, 0.03225566819310188, 0.029040148481726646, 0.010571015998721123, -0.004303267691284418, -0.02948228269815445, -0.0151531295850873, -0.034426141530275345, -0.016901567578315735, -0.0015977105358615518, 0.007792607415467501, 0.006104460451751947, -0.03971165046095848, 0.017213070765137672, -0.0028512601274996996, -0.044132985174655914, -0.0265682190656662, 0.01593691110610962, -0.004943859297782183, 0.011234216392040253, 0.014118134044110775, -0.017795883119106293, 0.02449822798371315, -0.008576389402151108, -0.030929265543818474, 0.014027697965502739, -0.0290803425014019, 0.033421292901039124, 0.035430990159511566, 0.0016630258178338408, -0.0010368790244683623, -0.014389444142580032, 0.010123858228325844, 0.02285027503967285, -0.012158677913248539, 0.004356022458523512, 0.00031495749135501683, 0.015213420614600182, -0.02690986730158329, -0.011394992470741272, 0.01587662100791931, -0.030848877504467964, -0.029020050540566444, 0.024297259747982025, -0.009108959697186947, 0.007219843100756407, 0.04224386811256409, -0.005642229691147804, 0.022046396508812904, 0.01844903454184532, -0.018006902188062668, 0.020740091800689697, 0.01776573807001114, 0.008249813690781593, -0.026146182790398598, 0.024980556219816208, 0.020046746358275414, 0.009154178202152252, -0.0005065068835392594, -0.01895146071910858, -0.014389444142580032, -0.019745290279388428, 0.004212831147015095, -0.012590763159096241, -0.025884920731186867, -0.024116385728120804, 0.00573266576975584, 8.784582314547151e-05, 0.0178662221878767, 0.007064091507345438, 0.010952858254313469, 0.009797281585633755, 0.009852548129856586, 0.025040848180651665, 0.0011386199621483684, -0.006154702510684729, 0.013927212916314602, -0.007651928346604109, 0.01378653384745121, -0.01850932650268078, 0.0040520550683140755, -0.003532045753672719, -0.004725304432213306, -0.03139149770140648, -0.06213988736271858, -0.010782034136354923, -0.011535671539604664, -0.03332080692052841, -0.0031954210717231035, 0.010550918988883495, 0.0075464192777872086, -0.04079688712954521, -0.018248066306114197, -0.03462710976600647, -0.019514175131917, -0.02508104220032692, 0.051689453423023224, -0.00760168582201004, -0.027693649753928185, 0.004348485730588436, -0.006290357559919357, -0.02000655233860016, -0.009319978766143322, -0.018459083512425423, -0.028457336127758026, 0.011445234529674053, -0.013485079631209373, 0.02176503837108612, 0.007827777415513992, -0.014489928260445595, -0.014359298162162304, 0.02018742449581623, 0.01969504915177822, -0.017092488706111908, 0.0012309405719861388, -0.010028397664427757, -0.023714445531368256, 0.04943859204649925, 0.0382244735956192, -0.017062343657016754, 0.02731180749833584, 0.022649306803941727, 0.017826028168201447, 0.00570754474028945, 0.004237952642142773, 0.004057079553604126, -0.016650354489684105, -0.012922363355755806, 0.05217178165912628, 0.022307656705379486, -0.026728995144367218, -0.006154702510684729, -0.009817378595471382, 0.0448564775288105, -0.03852592781186104, -0.0024191748816519976, 0.0014846649719402194, 0.015102886594831944, -0.009038620628416538, -0.007244964130222797, -0.0034843154717236757, 0.0024179189931601286, -0.020880771800875664, 0.038988158106803894, -0.007169600576162338, 0.0232522152364254, -0.020880771800875664, 0.007280134130269289, 0.0018539471784606576, 0.05056402459740639, -0.020157279446721077, 0.008375420235097408, -0.014590413309633732, 0.024638907983899117, 0.007722267881035805, 0.002156658098101616, 0.018891168758273125, -0.013063042424619198, -0.0015951984096318483, 0.004868495278060436, -0.027613261714577675, -0.0022546309046447277, 0.019865872338414192, 0.018248066306114197, 0.026427539065480232, 0.005782908294349909, -0.002381493104621768, -0.01602734811604023, -0.00947070587426424, 0.018539471551775932, 0.0019368472276255488, 0.04228406399488449, 0.012269211001694202, 0.03348158299922943, 0.026688801124691963, -0.01199790183454752, 0.013987503945827484, 0.007199746090918779, -0.011636156588792801, -0.005993926897644997, -0.030848877504467964, -0.020066842436790466, -0.004014373291283846, -0.022649306803941727, -0.01594696007668972, -0.004245488904416561, -0.008174450136721134, -0.01976538822054863, -0.0054161385633051395, -0.0038963037077337503, -0.019785484299063683, -0.016901567578315735, 0.026447637006640434, 0.033019352704286575, -0.0042078071273863316, -0.009802306070923805, 0.02084057778120041, 0.021282710134983063, -0.014650704339146614, -0.012058192864060402, 0.01610773615539074, -0.018820829689502716, -0.008109134621918201, -0.006817903369665146, -0.03191401809453964, 0.0032883696258068085, 0.01178688369691372, 0.015534971840679646, -0.02274979092180729, 0.0034717547241598368, -0.021443486213684082, 0.000380272715119645, 0.007928261533379555, 0.002853772370144725, -0.012942460365593433, -0.051609065383672714, 0.012701296247541904, -0.00645615765824914, -0.052774690091609955, 0.0019908579997718334, -0.002534732688218355, -0.01568569988012314, 0.01668049953877926, 0.020961157977581024, -0.0033361001405864954, 0.014118134044110775, 0.01876053772866726, -0.004888592287898064, 0.02110183797776699, -0.0014482391998171806, 0.004848398268222809, 0.0004101041704416275, 0.004848398268222809, -0.002204388380050659, 0.029421990737318993, -0.011927562765777111, 0.005581938661634922, -0.00023770969710312784, 0.015384244732558727, 0.029522476717829704, -0.0021968521177768707, -0.019473981112241745, 0.030024901032447815, -0.01760496199131012, -0.03038664720952511, 0.03362226113677025, -0.0017170364735648036, 0.04533880576491356, -0.009124033153057098, -0.02002664841711521, 0.020900867879390717, -0.00533575052395463, 0.0739569142460823, 0.04005329683423042, 0.01827821135520935, -0.011927562765777111, -0.01679103448987007, -0.03386342525482178, -0.004461531527340412, -0.030185677111148834, 0.006903315428644419, -0.008330201730132103, 4.729857755592093e-05, 0.020659703761339188, -0.04324872046709061, -0.024518325924873352, 0.045137837529182434, -0.03106994368135929, -0.014429637230932713, 0.012731442227959633, 0.035832930356264114, 0.022307656705379486, 0.022448336705565453, 0.015102886594831944, 0.008224692195653915, 0.01171654462814331, -0.00834024976938963, -0.01778583414852619, -0.011575865559279919, 0.011023198254406452, -0.013977454975247383, -0.015987154096364975, -0.002474441658705473, 0.015354098752140999, -0.03760146349668503, -0.019624710083007812, -0.010731792077422142, -0.037500981241464615, -0.013816679827868938, 0.003298418130725622, -0.011284459382295609, -0.01050067599862814, 0.023212021216750145, -0.009410414844751358, -0.013615709729492664, -0.005828126799315214, -0.006812878884375095, -0.009782209061086178, 0.003524509258568287, 0.011405040509998798, -0.026467733085155487, -0.007536370772868395, 0.027090739458799362, -0.004514285828918219, -0.009068765677511692, -0.06535540521144867, -0.00947573035955429, 0.0290803425014019, -0.05582943186163902, 0.004408776760101318, -0.03221547231078148, -0.03378303721547127, 0.007862946949899197, 0.004622307140380144, -0.016710646450519562, 0.0054764291271567345, 0.015092838555574417, 0.00365262757986784, 0.00487854378297925, 0.03510943800210953, -0.005370920058339834, 0.01794661022722721, -0.012721393257379532, -0.0018137531587854028, -0.0027633358258754015, 0.027774037793278694, -0.017544670030474663, -0.005051880609244108, 0.008129231631755829, 0.0021089278161525726, -0.022327754646539688, -0.008033771067857742, 0.0374004952609539, 0.004408776760101318, 0.0037983309011906385, -0.002698020776733756, 0.007611734326928854, 0.005808029789477587, 0.004456507042050362, -0.008973305113613605, -0.029783736914396286, 0.008244789205491543, 0.01133470144122839, -0.026708897203207016, -0.038204375654459, 0.0012158678146079183, -0.014218619093298912, -0.009807330556213856, 0.01678098551928997, -0.007872994989156723, -0.006385818123817444, -0.02041853964328766, -0.0015110423555597663, 0.0010707926703616977, 0.017564767971634865, 0.006963606458157301, 0.020056795328855515, -0.03006509505212307, 0.002544781193137169, 0.015715844929218292, -0.02441784180700779, -0.000967795611359179, 0.008897941559553146, -0.014278910122811794, -0.00025827769422903657, 0.01112368330359459, -0.009932936169207096, 0.026347151026129723, -0.0009338819072581828, -0.0007046506507322192, -0.006822927389293909, 0.0002934474323410541, -0.020981255918741226, 0.024136483669281006, -0.024518325924873352, -0.00778758293017745, 0.0005401065573096275, -0.0019443836063146591, 0.034868273884058, -0.010184149257838726, -0.006546593736857176, -0.04767005518078804, -0.018901217728853226, -0.0195242241024971, 0.01686137355864048, -0.02407619170844555, -0.037420593202114105, -0.0290803425014019, 0.009068765677511692, -0.027130933478474617, 0.02274979092180729, -0.053699154406785965, -0.010872471146285534, 0.008983354084193707, -0.022488530725240707, 0.004634867887943983, -0.009822403080761433, 0.007003800477832556, -0.006883218418806791, 0.01826816238462925, -0.016921663656830788, 0.009144130162894726, -0.014278910122811794, -0.014952159486711025, -0.014660753309726715, -0.02359386347234249, 0.021664554253220558, 0.04336930066347122, -0.01794661022722721, -0.00022750419157091528, 0.03713923320174217, 0.021724844351410866, 0.008998426608741283, -0.03199440613389015, -0.045137837529182434, 0.014419589191675186, -0.00011634272232186049, 0.004961444064974785, -0.0118371257558465, -0.0030773512553423643, -0.020076891407370567, 0.02351347729563713, -0.013163527473807335, -0.02823626808822155, 0.010189172811806202, 0.0012949997326359153, -0.020740091800689697, -0.012651054188609123, 0.0033587091602385044, 0.03205469623208046, -0.014419589191675186, 0.008747214451432228, -0.0016856349539011717, -0.009410414844751358, -0.031009653583168983, -0.017082439735531807, -0.03340119495987892, 0.030105289071798325, 0.009827427566051483, 0.007094237022101879, -0.029301408678293228, -0.03328061103820801, 0.01803704723715782, -0.0186801515519619, 0.010782034136354923, 0.0007862946949899197, 0.0025849752128124237, -0.0021579142194241285, 0.005808029789477587, 0.018147580325603485, -0.0022207172587513924, -0.009355148300528526, 0.015675650909543037, 0.009701821021735668, -0.009309929795563221, 0.010038445703685284, 0.012359648011624813, 0.007566516287624836, -0.0076619768515229225, -0.012882169336080551, 0.023634057492017746, -0.001362827024422586, 0.030949361622333527, 0.007993577048182487, 0.0028587966226041317, -0.008872820064425468, 0.0019305669702589512, -0.01208833884447813, 0.001094029750674963, -0.009696796536445618, -0.021644456312060356, -0.008551268838346004, -0.01793656125664711, -0.002871357137337327, -0.0023877734784036875, -0.011304556392133236, -0.023553669452667236, -0.0207601897418499, -0.0290803425014019, 0.015193323604762554, 0.004240464419126511, 0.031934116035699844, -0.014067891985177994, -0.007551443297415972, -0.014349250122904778, 0.01585652306675911, -0.02359386347234249, -0.014791383408010006, -0.009998251684010029, 0.023372797295451164, -0.006461181677877903, -0.0065817637369036674, -0.014841625466942787, -0.011947659775614738, -0.00461225863546133, 0.010329851880669594, 0.011023198254406452, -0.02100135199725628, 0.01296255737543106, 0.013475030660629272, -0.009028571657836437, 0.013434836640954018, -0.006707369815558195, 0.013233866542577744, 0.006400890648365021, 0.023473283275961876, 0.0007184673449955881, -0.001838874421082437, 0.022890469059348106, -0.014891868457198143, 0.022950761020183563, -0.01051072496920824, -0.043570272624492645, 0.006958582438528538, 0.014751189388334751, 0.016479531303048134, 0.017082439735531807, -0.006958582438528538, -0.0038083794061094522, -0.0005156133556738496, -0.019504128023982048, -0.04212328791618347, 0.0056321811862289906, 0.008410589769482613, 0.0010663964785635471, 0.011033246293663979, 0.014510025270283222, 0.023694349452853203, 0.020318055525422096, 0.0005325701786205173, 0.0024932825472205877, 0.0034541699569672346, 0.011957707814872265, 0.011857222765684128, -0.001285579171963036, 0.029864124953746796, -0.001025574398227036, 0.0016831228276714683, -0.007938310503959656, 0.026929965242743492, 0.014499977231025696, -0.03862641006708145, 0.01569574885070324, -0.03307964280247688, 0.008943160064518452, 0.007099261041730642, -0.001596454530954361, -0.009525972418487072, -0.027271613478660583, -0.024980556219816208, -0.013836776837706566, 0.006230066530406475, -0.0035446062684059143, 0.0014017649227753282, -0.0076619768515229225, -0.017966708168387413, 0.006762636359781027, -0.013605660758912563, -0.00963148195296526, 0.0016868909588083625, -0.0004638007958419621, 0.021142031997442245, 0.008415614254772663, -0.033682551234960556, 0.02749267965555191, -0.005265410989522934, 0.005737690255045891, 0.020981255918741226, 0.01067150104790926, -0.02582463063299656, 0.0038485731929540634, 0.025623660534620285, -0.0012924876064062119, 0.006707369815558195, -0.031451787799596786, 0.015112935565412045, -0.002610096475109458, -0.03139149770140648, -0.018549520522356033, 0.002989426953718066, 0.018328452482819557, -0.012932412326335907, 0.01133470144122839, 0.0052000959403812885, 0.006436060648411512, 0.003554654773324728, 0.012450084090232849, 0.01737384684383869, 0.021061643958091736, 0.005049368366599083, -0.005061929114162922, 0.024960460141301155, 0.0151531295850873, 0.052855078130960464, -0.017323603853583336, 0.010782034136354923, -0.022106686607003212, 0.009073790162801743, -0.004220367409288883, -0.004386167507618666, 0.003951570484787226, -0.004614770878106356, -0.001062628231011331, -0.007742364890873432, -0.014580365270376205, -0.007018873002380133, -0.01236969605088234, -0.014690898358821869, -0.013806630857288837, -0.013987503945827484, -0.0029869149439036846, -0.02666870318353176, -0.022388044744729996, 0.011726592667400837, 0.0033813181798905134, -0.04469570145010948, 0.010400191880762577, 0.03330070897936821, 0.02150377817451954, 0.010033421218395233, 0.023312507197260857, 0.019323254004120827, -0.026789285242557526, -0.002753287320956588, 0.0030723270028829575, 0.015987154096364975, -0.003057254245504737, 0.012359648011624813, 0.021403292194008827, 0.011364846490323544, 0.008300055749714375, 0.004217855632305145, -0.02008694037795067, 0.01570579595863819, -0.0036023850552737713, -0.027593165636062622, 0.013816679827868938, 0.01058106403797865, 0.015334001742303371, 0.023694349452853203, -0.011515574529767036, -0.005370920058339834, -0.011324653401970863, 0.01886102370917797, 0.018901217728853226, 0.005486477632075548, 0.009119008667767048, 0.011776834726333618, 0.011796931736171246, -0.016208220273256302, -0.01570579595863819, -0.004999125842005014, 0.02200620248913765, 0.0007404484204016626, -0.03289876878261566, 0.015042595565319061, 0.017876271158456802, -0.02184542641043663, 0.04292716830968857, -0.007008824497461319, 0.04618287831544876, -0.014228668063879013, 0.0049865650944411755, 0.006235090550035238, 0.004589649848639965, 0.0009973130654543638, -0.002534732688218355, -0.05084538087248802, 0.002853772370144725, -0.002394053852185607, -0.01146533153951168, 0.013364497572183609, -0.03257721662521362, -0.010550918988883495, -0.017996853217482567, -0.029200924560427666, -0.015022498555481434, -0.004408776760101318, 0.03589322045445442, 0.0002490142360329628, -0.014178425073623657, -0.01246013306081295, -0.01552492380142212, 0.01662020944058895, 0.018398793414235115, 0.017675301060080528, -0.016499627381563187, 0.0019971381407231092, 0.000988520565442741, -0.0006807855097576976, 0.014369347132742405, 0.011505525559186935, -0.015756038948893547, 0.00257492670789361, -0.023875221610069275, -0.01977543719112873, -0.0025385008193552494, 0.009515924379229546, 0.010731792077422142, -0.018147580325603485, -0.013897067867219448, -0.017655204981565475, 0.011535671539604664, -0.02715103141963482, 0.029864124953746796, -0.021061643958091736, -0.007852897979319096, 0.0024053582455962896, 0.013967406935989857, -0.01415832806378603, 0.01058106403797865, -0.00318537256680429, -0.0031954210717231035, -0.006355672609061003, 0.007209794595837593, 0.010400191880762577, -0.005672374740242958, -0.026628509163856506, -0.015645505860447884, -0.013836776837706566, 0.005672374740242958, -0.004717768169939518, 0.006873169913887978, -0.0022470944095402956, 0.016901567578315735, 0.0003611177671700716, -0.008943160064518452, -0.029924415051937103, 0.04009349271655083, -0.022448336705565453, -0.029864124953746796, 0.004582113120704889, -0.006355672609061003, 0.00017003936227411032, 0.0040947613306343555, 0.009229541756212711, 0.006471230182796717, 0.009887718595564365, -0.00023409850837197155, -0.006732491310685873, 0.013294157572090626, 0.006064266432076693, 0.014138231053948402, -0.04013368487358093, 0.0032004453241825104, -0.00010778580326586962, 0.0286583062261343, 0.006616933271288872, 0.008867796510457993, -0.009103936143219471, -0.008501025848090649, 0.0005573774105869234, 0.009485778398811817, -0.010892568156123161, 0.0007919469499029219, 0.016992004588246346, 0.020549170672893524, 0.010420288890600204, 0.0132841095328331, -0.039912618696689606, 0.01296255737543106, -0.015756038948893547, 0.02526191435754299, -0.009872645139694214, -0.035008952021598816, -0.02224736660718918, 0.007898116484284401, 0.02142339013516903, -0.002205644501373172, 0.03048713132739067, -0.015926863998174667, 0.03364235907793045, 0.009269735775887966, 0.005471405107527971, 0.00021447254403028637, 0.012017998844385147, -0.010993052273988724, -0.01817772537469864, -0.018619859591126442, -0.0006261467933654785, 0.0044967010617256165, 0.038485731929540634, -0.016821179538965225, -0.000514671322889626, 0.010932761244475842, -0.01569574885070324, -0.02425706572830677, -0.012791733257472515, -0.005742714274674654, -0.0151531295850873, 0.021945910528302193, 0.04135960340499878, 0.005054392386227846, -0.003378806170076132, -0.0024807220324873924, 0.011505525559186935, -0.004273122176527977, 0.010892568156123161, -0.023191925138235092, -0.017906416207551956, -0.033923715353012085, 0.0023739568423479795, 0.010812180116772652, -0.011726592667400837, 0.008300055749714375, 0.024297259747982025, 0.010812180116772652, -0.019313205033540726, -0.0004261189606040716, -0.0019381033489480615, 0.022689498960971832, 0.01884092576801777, 0.010349948890507221, 0.02590501867234707, -0.005486477632075548, -0.011696447618305683, -0.01394730992615223, 0.036013804376125336, 0.002650290261954069, 0.021443486213684082, -0.018469132483005524, 0.01357551570981741, -0.00917427521198988, 0.012249113991856575, -0.017665252089500427, -0.004308291710913181, -0.037239719182252884, -0.0021315368358045816, 0.009124033153057098, 0.0010280865244567394, -0.00369533384218812, -0.00842566229403019, -0.0018401305424049497, 0.022528724744915962, 0.012510375119745731, -0.0031150332652032375, -0.0001488433190388605, -0.010390142910182476, -0.026306957006454468, 0.0067525883205235004, 0.010892568156123161, -0.004529358819127083, 0.0006531521212309599, 0.027472583577036858, -0.010641355067491531, 0.023453185334801674, -0.01562540791928768, 0.030929265543818474, 0.0006283448892645538, -0.026809383183717728, -0.018579665571451187, 0.009284808300435543, -0.028196074068546295, 0.005046856123954058, -0.009078814648091793, -0.01378653384745121, -0.012198871932923794, 0.0232522152364254, 0.004627331625670195, 0.0070590670220553875, -0.013213769532740116, -0.009571190923452377, -0.020619509741663933, -0.024900168180465698, 0.005114683415740728, 0.01825811341404915, -0.010872471146285534, 0.006998775992542505, 0.010530821979045868, -0.002871357137337327, 0.0054312110878527164, 0.012359648011624813, -0.01125431340187788, 0.020659703761339188, 0.02916073054075241, -0.03217528015375137, -0.008154353126883507, -0.023453185334801674, -0.006973654963076115, 0.005823102314025164, -0.02481978014111519, -0.0431683324277401, -0.006064266432076693, -0.012068241834640503, 0.007822752930223942, -0.01444973424077034, 0.011636156588792801, -0.0032657606061547995, 0.011696447618305683, 0.029763638973236084, 0.021724844351410866, -0.021885620430111885, 0.006576739251613617, 0.00019908578542526811, -0.0003733643679879606, 0.025945212692022324, 0.0003268900909461081, -0.015233517624437809, -0.004479116294533014, 0.03939009830355644, 0.008325177244842052, -0.01851937547326088, 0.0049714925698935986, 0.014409540221095085, -0.00380084291100502, 0.005787932779639959, 0.027352001518011093, -0.003373781917616725, -0.006601860746741295, -0.025020750239491463, -0.012108435854315758, -0.0025108675472438335, -0.0005347682745195925, -0.0059637813828885555, 0.012590763159096241, -0.02152387425303459, -0.023674251511693, 0.012972606346011162, -0.011676350608468056, 0.014067891985177994, 0.008973305113613605, -0.002044868655502796, 0.022388044744729996, -0.0026226569898426533, -0.003434072947129607, 0.0053156535141170025, 0.010349948890507221, -0.003489339491352439, -0.017886320129036903, 0.008239765651524067, -0.0028738693799823523, 0.006139629986137152, 0.004290706943720579, -0.002625168999657035, -0.0025899994652718306, 0.004850910510867834, -0.02409628964960575, -0.007983529008924961, 0.008897941559553146, -0.011455283500254154, 0.006451133172959089, -0.023191925138235092, -0.01378653384745121, 0.032858576625585556, 0.0013778997818008065, -0.00444394676014781, 0.02731180749833584, 0.0053156535141170025, 0.004504237323999405, -0.009802306070923805, 0.006551618222147226, 0.0037581368815153837, -0.009194372221827507, -0.01934335194528103, -0.005948708392679691, -0.032778188586235046, 0.019222769886255264, -0.0018627395620569587, -0.02150377817451954, -0.008938135579228401, -0.038405343890190125, -0.030125385150313377, 0.0005096470704302192, -5.652278105117148e-06, -0.005491502117365599, 0.005446284078061581, -0.021744942292571068, 0.0038736944552510977, -0.012399842031300068, -0.017815981060266495, 0.005215168464928865, -0.009294857271015644, 0.023232119157910347, 0.0047127436846494675, 0.0035345577634871006, -0.011616059578955173, -0.002650290261954069, 0.0036275063175708055, 0.0016014787834137678, 0.001050067599862814, -0.0062953815795481205, -0.0013213769998401403, -0.011987853795289993, -0.004514285828918219, -0.0019644806161522865, -0.0020134670194238424, -0.008008649572730064, -0.007817728444933891, -0.008335226215422153, -0.01112368330359459, -0.00010495966125745326, 0.015173226594924927, -0.015464632771909237, 0.010018348693847656, -0.004752937704324722, 0.0011668814113363624, -0.028296560049057007, -0.013987503945827484, 0.0042078071273863316, -0.012309405021369457, 0.011606010608375072, 0.01299270335584879, 0.009063742123544216, -0.006476254668086767, 0.03697845712304115, 0.005305605009198189, 0.018710296601057053, 0.02150377817451954, 0.0030195724684745073, -0.0134951276704669, 0.017062343657016754, -0.012520424090325832, 0.022106686607003212, -0.008370395749807358, 0.007586613297462463, -0.0007203514105640352, 0.012038095854222775, -0.020579315721988678, 0.006315478589385748, -0.0021629384718835354, 0.006139629986137152, -0.004137467592954636, -0.005873344838619232, 0.00618987251073122, 0.009415439330041409, 0.0023701884783804417, 0.0001306304184254259, 0.027613261714577675, 0.01593691110610962, 0.0026754115242511034, -0.016137881204485893, -0.010083664208650589, -0.013354448601603508, -0.004516798071563244, -0.017916465178132057, 0.0033361001405864954, 0.0045846253633499146, 0.005697496235370636, 0.002204388380050659, 0.009420462884008884, -0.005586962681263685, -0.002137817209586501, -0.006109484471380711, -0.012892218306660652, 0.009691772982478142, -0.009370220825076103, 0.01453012228012085, -0.028638208284974098, -0.009269735775887966, 0.015977105125784874, -0.03316003084182739, -0.01735374890267849, 0.007189697585999966, -0.016228318214416504, 0.010199221782386303, -0.004891104530543089, 0.01067150104790926, 0.01416837703436613, -0.04127921536564827, -0.013253963552415371, -0.0015550045063719153, 0.006576739251613617, 0.050121888518333435, 0.006948533933609724, -0.00023723866615910083, -0.005672374740242958, -0.019514175131917, -0.0011248033260926604, -0.018569616600871086, 0.0073303766548633575, 0.017665252089500427, 0.00637074513360858, 0.005205119960010052, -0.002432991750538349, -0.016590064391493797, -0.015836426988244057, 0.02473939210176468, 0.009370220825076103, 0.02833675406873226, 0.012048144824802876, 0.016208220273256302, -0.010450433939695358, -0.007993577048182487, 0.003245663596317172, 0.007822752930223942, 0.009646554477512836, 0.002959281438961625, 0.004901153035461903, 0.00693346094340086, 0.0015411877539008856, -0.021664554253220558, -0.005401065573096275, 0.009942985139787197, -0.007646903861314058, 0.0012177518801763654, 0.011847174726426601, -0.020579315721988678, -0.007320328149944544, -0.014791383408010006, -0.03814408555626869, 0.03181353211402893, -0.0011285714572295547, -0.00992791261523962, -0.0014193498063832521, -0.010932761244475842, 0.014399492181837559, -0.012188823893666267, -0.02026781253516674, 0.021564068272709846, 0.0006349392351694405, 0.014459783211350441, -0.002535988809540868, -0.013515224680304527, -0.004830813501030207, 0.02017737552523613, 0.007028921507298946, -0.009686748497188091, -0.02034820057451725, 0.0024493203964084387, -0.008596486411988735, -0.005122220143675804, -0.020569266751408577, -0.0028386996127665043, 0.012158677913248539, -0.02258901484310627, -0.005009174346923828, 0.011003101244568825, 0.005978853907436132, 0.01470094732940197, 0.010073615238070488, 0.00014154246309772134, -0.017042245715856552, -0.001975785242393613, 0.006154702510684729, 0.008601510897278786, -0.019966358318924904, -0.03171304613351822, 0.016208220273256302, 0.001745925866998732, 0.017735593020915985, 0.002058685291558504, -0.006923412438482046, 0.0047001829370856285, -0.010651404038071632, -0.02425706572830677, 0.029763638973236084, -0.008671850897371769, -0.003939009737223387, -0.008084013126790524, -1.54358222062001e-05, 0.014399492181837559, 0.022870372980833054, 0.029763638973236084, -0.0017383894883096218, 0.006621957756578922, -0.012841975316405296, -0.0025083553045988083, 0.01603739708662033, -0.01096290722489357, 0.004891104530543089, -0.003642579074949026, -0.015163177624344826, -0.007566516287624836, -0.022649306803941727, -0.011555768549442291, -0.000585010799113661, -0.015796232968568802, -0.005541744641959667, 0.0174542348831892, -0.005597011186182499, -0.020408492535352707, -0.010741840116679668, 0.0034190001897513866, -0.004021910019218922, 0.016157979145646095, -0.0011932586785405874, 0.039028350263834, 0.017323603853583336, -0.02616627886891365, -0.014027697965502739, -0.0007316559785977006, 0.0037933066487312317, -0.003969155251979828, 0.0031702998094260693, 0.001392972539179027, 0.015615359880030155, -0.015816329047083855, -0.0033989031799137592, -0.0019343351013958454, -0.010540870018303394, 0.012600812129676342, -0.003918912727385759, -0.02126261405646801, -0.012570666149258614, -0.010912664234638214, -0.049880724400281906, -0.02682947926223278, 0.01644938439130783, 0.0006211225409060717, -0.02092096582055092, -0.004250512924045324, -0.0020348201505839825, 0.0033134908881038427, 0.012681199237704277, -0.011515574529767036, 0.029522476717829704, 0.006461181677877903, 0.017082439735531807, -0.002525940304622054, 0.005727641750127077, -0.0077775344252586365, -0.008310104720294476, 0.024056095629930496, -0.011103586293756962, -0.005597011186182499, -0.007983529008924961, 0.010741840116679668, 0.026367248967289925, -0.0012196359457448125, 0.03088907152414322, -0.005526671651750803, 0.004790619481354952, -0.008008649572730064, 0.005370920058339834, 0.002743238816037774, 0.007450958248227835, -0.008460831828415394, -0.0019732729997485876, -0.001269878470338881, 0.024980556219816208, 0.012580715119838715, 0.009139105677604675, -0.004416313022375107, -0.022528724744915962, -1.3620419849758036e-05, -0.0026804357767105103, -0.003245663596317172, 0.022568918764591217, 0.0074911522679030895, 0.009365196339786053, 3.7878111470490694e-05, 0.014439686201512814, 0.012600812129676342, -0.001870275940746069, 0.002831163350492716, -0.010043470188975334, 0.005873344838619232, -0.029301408678293228, -0.0026477782521396875, 0.005612084176391363, 0.028698500245809555, -0.017916465178132057, 0.0005454448400996625, -0.004318340215831995, -0.007350473664700985, 0.009505875408649445, 0.007054043002426624, 0.0019255427177995443, 0.013223818503320217, 0.005797981284558773, -0.00388123095035553, 0.011314604431390762, -0.0017132682260125875, 0.022649306803941727, 0.005071977619081736, 0.007109309546649456, 0.008068940602242947, -0.004627331625670195, -0.004808204248547554, -0.004888592287898064, -0.014268862083554268, -0.016007252037525177, -0.007069115526974201, -0.0003862390003632754, -8.902337867766619e-05, 0.010143955238163471, -0.0006424756138585508, 0.007611734326928854, -0.011756738647818565, -0.004526846576482058, -0.012550569139420986, -0.007837825454771519, 0.012279259972274303, -0.005828126799315214, 0.0036978458520025015, -0.015404341742396355, -0.0005793584859929979, 0.001891629071906209, -0.02640744298696518, -0.00020599413255695254, -0.007450958248227835, -0.006632006261497736, -0.015715844929218292, 0.005622132681310177, 0.0009357660310342908, 0.008862772025167942, -0.0028562843799591064, 0.010832277126610279, -0.01794661022722721, 0.009696796536445618, -0.015233517624437809, 0.001750950119458139, 0.003717942861840129, -0.013264012522995472, -0.001155576785095036, -0.019825678318738937, -0.03390362113714218, 0.0016240879194810987, 0.016901567578315735, 0.022126784548163414, -0.0017748152604326606, 0.03305954486131668, -0.004333413206040859, -0.013032897375524044, -0.010093712247908115, 0.012932412326335907, -0.0016743303276598454, -0.0013264012522995472, -0.00618484802544117, 0.03498885780572891, 0.003913888707756996, 0.008038795553147793, 0.004499213304370642, 0.003403927432373166, -0.004031958524137735, -0.009370220825076103, -0.02815588004887104, -0.01228930801153183, -0.005406090058386326, 0.018077241256833076, 0.006571715231984854, 0.01341473963111639, -0.0032004453241825104, 0.008777359500527382, -0.0021591701079159975, -0.004353510215878487, 0.012520424090325832, 0.018539471551775932, 0.018087290227413177, 0.010289657860994339, 0.014590413309633732, 0.01860981062054634, -0.011897416785359383, -0.00398674001917243, 0.007521297782659531, -0.0060089994221925735, 0.02049892768263817, -0.008164401166141033, -0.012188823893666267, 0.012520424090325832, -0.000985380494967103, 0.005581938661634922, 0.011264362372457981, 0.018790684640407562, -0.0023438113275915384, 0.009752064011991024, -0.032356150448322296, -0.002340043196454644, 0.00454443134367466, -0.004559504333883524, -0.02242823876440525, -0.028095589950680733, 0.005300580523908138, 0.0062953815795481205, 0.006576739251613617, 0.025020750239491463, 0.013354448601603508, 0.00925466325134039, -0.008616583421826363, 0.019242865964770317, 0.010083664208650589, 0.02242823876440525, 0.028859274461865425, -0.013113284483551979, -0.006280309055000544, -0.012259162962436676, 0.005943684373050928, -0.01199790183454752, -0.008852723054587841, 0.01852942258119583, -0.004170124884694815, -0.016981955617666245, 0.008013674058020115, 0.0061245569959282875, -0.013645854778587818, 0.0006518960581161082, 0.010254488326609135, 0.0005890929605811834, 0.008586438372731209, -0.01067150104790926, -0.02000655233860016, -0.016218269243836403, 0.007541394792497158, 0.003931473474949598, -0.014751189388334751, 0.02059941366314888, -0.010254488326609135, -0.0032381273340433836, 0.002685460029169917, -0.044293761253356934, -0.001977041130885482, 0.03183363005518913, -0.01585652306675911, 0.021041546016931534, -0.011003101244568825, 0.0073755946941673756, -0.004408776760101318, 0.030105289071798325, -0.02648783102631569, 0.012892218306660652, -0.016630258411169052, 0.015454583801329136, 0.015233517624437809, 0.00016454409342259169, 0.006687272805720568, -0.01843898743391037, -0.018499277532100677, 0.01585652306675911, 0.010983004234731197, -0.018911266699433327, -0.006953557953238487, 0.00242043100297451, -0.016750840470194817, -0.010063567198812962, 0.003135130275040865, -0.0025121234357357025, 0.0008239765302278101, 0.015997203066945076, 0.0026829480193555355, -0.009686748497188091, 0.024638907983899117, -0.002936672419309616, -0.0029969634488224983, -0.0048006679862737656, -0.008832626044750214, 0.015745989978313446, 0.013806630857288837, 0.0027934813406318426, -0.003677748842164874, -0.02765345573425293, 0.015555068850517273, -0.011485428549349308, 0.0008717068703845143, 0.029844027012586594, -0.027030449360609055, 0.002005930757150054, 0.0017182924784719944, -0.0017120122211053967, 0.009033596143126488, -0.006948533933609724, -0.014670801348984241, 0.013253963552415371, -0.0028010178357362747, -6.433391536120325e-05, -0.005004150327295065, -0.010993052273988724, 0.0018275699112564325, 0.019644806161522865, -0.023473283275961876, 0.006094411946833134, 0.015595262870192528, -0.0211822260171175, -0.011324653401970863, -0.0035923367831856012, -0.011636156588792801, -0.010832277126610279, -0.0065566422417759895, -0.008541219867765903, 0.004665013402700424, 0.013686048798263073, 0.005597011186182499, 0.004026934038847685, 0.012017998844385147, 0.019202671945095062, 0.011535671539604664, -0.004099785815924406, 0.000639335426967591, -0.014881819486618042, -0.01609768718481064, -0.009445584379136562, -0.017544670030474663, -0.016298657283186913, 0.031351301819086075, -0.01229935698211193, -0.016590064391493797, 0.0026226569898426533, -0.014499977231025696, 0.020147230476140976, 0.009450608864426613, -0.005024246871471405, -0.01125431340187788, -0.016258463263511658, 0.014751189388334751, -0.0021679627243429422, -0.001482152845710516, -0.014751189388334751, 0.008712044917047024, 0.006044169422239065, -0.01760496199131012, 0.012058192864060402, -0.0023299946915358305, 0.0031200575176626444, 0.011756738647818565, 0.007641879841685295, -0.0035873125307261944, -0.0024267113767564297, -0.021322904154658318, 0.005561841651797295, 0.0034868274815380573, 0.011314604431390762, -0.0015097862342372537, 0.019544322043657303, 0.014972256496548653, 0.00380084291100502, 0.012269211001694202, 0.01569574885070324, -0.004501725547015667, 0.015374195761978626, 0.010852374136447906, 0.008194547146558762, 0.007983529008924961, -0.00872209295630455, -0.014148280024528503, 0.015836426988244057, -0.02391541562974453, -0.013454933650791645, 0.003012036206200719, 0.011023198254406452, -0.01416837703436613, -0.01975533924996853, -0.024136483669281006, -0.02500065416097641, 0.012761587277054787, -0.0024631370324641466, -0.007752413395792246, 0.00627026055008173, -0.00984752457588911, 0.0007818984449841082, 0.002725654048845172, -0.025543272495269775, -0.014771286398172379, 0.020659703761339188, -0.007963431999087334, -0.006621957756578922, 0.00281357835046947, -0.021403292194008827, -0.019303157925605774, 0.0019192623440176249, 0.01562540791928768, -0.023533573374152184, -0.004416313022375107, 0.01038009487092495, 0.01109353732317686, 0.004499213304370642, 0.025603562593460083, -0.020579315721988678, -0.002562365960329771, -0.011857222765684128, -0.014299007132649422, -0.0004722792364191264, -0.00879745651036501, 0.026548121124505997, -0.002499562921002507, 0.0019041897030547261, -0.005717593245208263, 0.009872645139694214, -0.012821878306567669, -0.019885970279574394, -0.00506444089114666, 0.017976755276322365, 0.0070138489827513695, 0.00821966864168644, 0.00019892878481186926, -0.024558519944548607, -0.008963257074356079, 0.00495893182232976, -0.02018742449581623, -0.008842675015330315, 0.0076619768515229225, -0.01386692188680172, -0.0014884332194924355, -0.0025950237177312374, 0.006702345795929432, 0.0009433024097234011, -0.030105289071798325, -0.020880771800875664, 0.008290007710456848, -0.04196251183748245, 0.010480578988790512, -8.26645627967082e-05, 0.006054217927157879, -0.008445759303867817, -0.0034164879471063614, -0.007315303664654493, -0.005978853907436132, -0.027271613478660583, -0.003373781917616725, 0.017675301060080528, -0.014731092378497124, -0.01133470144122839, 0.0023739568423479795, 0.0014670802047476172, -0.008787408471107483, -0.012721393257379532, 0.006742539815604687, -0.02449822798371315, -0.028798984363675117, -0.016469482332468033, -0.0014783847145736217, 0.01058106403797865, -0.003901327960193157, 0.00664205476641655, 0.017665252089500427, -0.005943684373050928, -0.028939662501215935, -0.010601161047816277, -0.013464982621371746, 0.027392195537686348, -0.0032255665864795446, -0.001067652483470738, 0.003122569527477026, 0.012048144824802876, 0.011937610805034637, 0.013716194778680801, -0.013746339827775955, -0.0046976711601018906, -0.01703219674527645, -0.00554676866158843, -0.002221973380073905, 0.028517626225948334, -0.008194547146558762, 0.007099261041730642, 0.008038795553147793, -0.019373496994376183, 0.011937610805034637, -0.022629208862781525, 0.011756738647818565, 0.030346453189849854, -0.00656166672706604, -0.023372797295451164, -0.005556817166507244, -0.015645505860447884, -0.007204770110547543, 0.01020926982164383, -0.005737690255045891, 0.011344749480485916, -0.024558519944548607, -0.01423871610313654, 0.005401065573096275, 0.028095589950680733, -0.018549520522356033, 0.007837825454771519, -0.005541744641959667, 0.016981955617666245, -0.02274979092180729, -0.0009734478662721813, 0.014660753309726715, -0.004943859297782183, -0.010159027762711048, -0.00388123095035553, -0.02357376739382744, -0.018559569492936134, 0.004720279946923256, 0.005677399225533009, -0.027552971616387367, 0.006672200281172991, -0.007370570674538612, -0.018298307433724403, -0.0017107560997828841, -1.6780200894572772e-05, 0.004054567310959101, 0.020036697387695312, 0.005853247828781605, -0.01935339905321598, -0.0042103189043700695, -0.009214469231665134, 0.012429987080395222, -0.006310454569756985, -0.005092074628919363, -0.004999125842005014, -0.011354798451066017, -0.025442786514759064, 0.009616408497095108, -0.005320677533745766, 0.0211621280759573, -0.02192581444978714, 0.0007435885490849614, -0.006516448687762022, -0.010490627959370613, -0.0035295335110276937, 0.009827427566051483, 0.022870372980833054, 0.007249988615512848, -0.0062953815795481205, 0.003426536452025175, -0.008008649572730064, 0.006129581481218338, 0.008676874451339245, -0.0017308531096205115, -0.008485953323543072, -0.027934813871979713, 0.009525972418487072, 0.011003101244568825, -0.007631831336766481, 0.0001306304184254259, -0.01677093654870987, 0.008526147343218327, -0.009752064011991024, -0.008877844549715519, 0.01612783409655094, -0.0033888546749949455, 3.878581537719583e-06, 0.005496526136994362, -0.008149328641593456, 0.0003702242102008313, 0.04525841772556305, 0.005536720156669617, -0.004275634419173002, -0.01266110222786665, -0.027090739458799362, -5.459943349706009e-05, 0.016328802332282066, -0.021463584154844284, -0.00834527425467968, 0.013233866542577744, -0.010410239920020103, 0.011636156588792801, -0.01851937547326088, -0.00028496902086772025, -0.006345624104142189, -0.00048640993190929294, -0.00016030488768592477, 0.001455775578506291, 0.006089387461543083, 0.006742539815604687, -0.009973130188882351, 0.004330900963395834, -0.021463584154844284, 0.020247716456651688, -0.014288959093391895, 0.0015512362588196993, 0.027171127498149872, -0.006044169422239065, 0.017213070765137672, 0.019564418122172356, 0.0340643934905529, 0.022066492587327957, -0.01652977243065834, 0.0031024725176393986, -0.0052453139796853065, 0.018911266699433327, 0.005039319861680269, 0.013434836640954018, -0.01461051031947136, -0.014590413309633732, 0.016891518607735634, 0.0021679627243429422, 0.005014198832213879, -0.0020034185145050287, -0.005702520254999399, -0.03038664720952511, -0.004180173389613628, 0.004009349271655083, -0.0002629879454616457, 0.017986804246902466, -0.0013590588932856917, 0.0018577153095975518, -0.018981605768203735, 0.002592511475086212, -0.009204420261085033, -0.007455982733517885, 0.03430555760860443, 0.0008660546154715121, 0.024799684062600136, 0.007641879841685295, 0.001719548599794507, 0.0007027665851637721, 0.00432085245847702, -0.002831163350492716, 0.0042103189043700695, -0.014339201152324677, 0.015555068850517273, 0.018539471551775932, -0.022970857098698616, -0.003594848792999983, 0.019162477925419807, 0.012349599041044712, 0.0019946261309087276, 0.014710995368659496, -0.007244964130222797, 0.009973130188882351, -0.0076619768515229225, 0.0009797281818464398, -0.0030271089635789394, 0.003893791465088725, 0.002058685291558504, -0.005021735094487667, -0.021825328469276428, -0.006722442805767059, 0.016137881204485893, -0.0033235393930226564, 0.022709596902132034, -0.021644456312060356, -0.013213769532740116, 0.015374195761978626, -0.01975533924996853, 0.0007536370540037751, 0.020468782633543015, 0.003064790740609169, -0.02775394171476364, -0.005124731920659542, 0.0018803244456648827, -0.00971186999231577, -0.002605072222650051, -0.009134081192314625, -0.0002589057257864624, 0.01834855042397976, -0.029100438579916954, 0.013756388798356056, 0.006928436923772097, -0.012279259972274303, -0.01058106403797865, -0.016137881204485893, 0.0002551375364419073, 0.015836426988244057, 0.013736291788518429, -0.02309143915772438, 0.015655554831027985, 0.00589344184845686, 0.009646554477512836, 0.024056095629930496, -0.029100438579916954, 0.014731092378497124, -0.02600550279021263, -0.01844903454184532, -0.006637030281126499, -0.00328083336353302, -0.010103761218488216, 0.008174450136721134, -0.011565816588699818, -0.002007186645641923, 0.008360346779227257, -0.017152778804302216, 0.0063958666287362576, -0.020157279446721077, 0.017414040863513947, 0.010234391316771507, 0.02184542641043663, 0.015042595565319061, -0.010470530949532986, -0.0022244853898882866, 0.019795533269643784, 0.01602734811604023, -0.004087225068360567, -0.007928261533379555, -0.014881819486618042, 0.004644916392862797, 0.00019688768952619284, 0.012902266345918179, 0.010641355067491531, 0.012530472129583359, 0.013454933650791645, 0.010359997861087322, -0.0014407028211280704, 0.03330070897936821, -0.00826488621532917, 0.02110183797776699, 0.0095460694283247, 0.014680850319564342, -0.011967756785452366, -0.0037983309011906385, 0.007430861238390207, 0.005843199323862791, 0.011676350608468056, 0.004431386012583971, 0.0012108435621485114, 0.006546593736857176, 0.02017737552523613, 0.004217855632305145, 0.009269735775887966, -0.010164052248001099, 0.00757656479254365, -0.006536545697599649, 0.02152387425303459, -0.0017220607260242105, 0.019473981112241745, 0.01228930801153183, -0.01644938439130783, -0.006330551113933325, -0.01618812419474125, 0.014932062476873398, -0.042404644191265106, -0.006858097389340401, -0.011214119382202625, 0.018961507827043533, 0.018891168758273125, -0.006687272805720568, 0.012490278109908104, 0.001204563188366592, 0.01835859939455986, -0.022970857098698616, 0.008008649572730064, -0.01394730992615223, -0.018087290227413177, -0.030346453189849854, 0.014057843014597893, 0.027593165636062622, -0.018710296601057053, 0.023031149059534073, -0.011847174726426601, -0.009721918031573296, -0.011204071342945099, 0.01549477782100439, 0.0022759840358048677, -0.004918737802654505, -0.0020272836554795504, -0.015534971840679646, -0.015987154096364975, 0.01694176159799099, 0.009767136536538601, -0.023312507197260857, 0.001745925866998732, -0.02465900406241417, 0.007335400674492121, 0.0017358773620799184, 0.01662020944058895, -0.0036099215503782034, -0.032416440546512604, -0.009601335972547531, -0.011686398647725582, 0.017876271158456802, -0.005667350720614195, -0.03171304613351822, 0.007596661802381277, 0.028256366029381752, -0.017836077138781548, 0.028095589950680733, 0.014851674437522888, 0.009440559893846512, 0.0010707926703616977, 0.013012800365686417, 0.015545020811259747, -0.011214119382202625, -0.016911616548895836, -0.023232119157910347, 0.027291709557175636, -0.01661016047000885, 0.018670102581381798, -0.020117085427045822, 0.001155576785095036, -0.01527371071279049, 0.027291709557175636, 0.03147188201546669, -0.01208833884447813, -0.002409126376733184, -0.0029316481668502092, 0.008124207146465778, -0.022388044744729996, -0.006049193441867828, 0.0031024725176393986, 0.01603739708662033, -0.04061601310968399, 0.020328104496002197, -0.004200270399451256, 0.008254838176071644, -0.012259162962436676, 0.008822578005492687, 0.003047205973416567, -0.008485953323543072, 0.002483234042301774, -0.02465900406241417, 0.014389444142580032, -0.0008308848482556641, 0.017815981060266495, -0.002602559980005026, -0.00492125004529953, -0.0016203196719288826, 0.009435536339879036, 0.006802830379456282, -0.0023224581964313984, -0.004918737802654505, 0.034687403589487076, 0.009731967002153397, -0.017333652824163437, 0.020297957584261894, -0.0014055331703275442, -0.010651404038071632, -0.007320328149944544, -0.019554369151592255, -0.0008459576056338847, -0.006903315428644419, -0.002592511475086212, -0.010068590752780437, -0.030085191130638123, 0.028859274461865425, -0.008330201730132103, 0.000827116658911109, -0.011676350608468056, 0.01199790183454752, -0.003597361035645008, 0.02152387425303459, 0.015334001742303371, 0.0021403292194008827, -0.00880248099565506, 0.04109834134578705, 0.0006795294466428459, 0.021242516115307808, -0.005225216969847679, 0.007752413395792246, -0.017223119735717773, 0.004896129015833139, -0.01776573807001114, -0.005566865671426058, -0.009360172785818577, -0.003029620973393321, 0.02258901484310627, -0.025382496416568756, -0.006596836261451244, 0.0008604023023508489, -0.011515574529767036, -0.005581938661634922, 0.014309056103229523, 0.03605399653315544, 0.003999300766736269, 0.0011725336080417037, 0.009988203644752502, -0.0023526037111878395, -0.018368646502494812, 0.0027683600783348083, -0.024558519944548607, -0.0038887672126293182, 0.009284808300435543, 0.013093187473714352, 0.021463584154844284, 0.0009508387884125113, -0.005006662104278803, -0.011696447618305683, 0.004431386012583971, -0.008470880798995495, -0.002826139098033309, 0.002179267117753625, 0.003999300766736269, 0.007325352169573307, 0.025563368573784828, 0.03173314407467842, -0.0006189244450069964, -0.005310629028826952, -0.013595612719655037, 0.001998394262045622, 0.00888286903500557, 0.0024530887603759766, 0.002558597829192877, -0.0015097862342372537, -0.005481453612446785, 0.014399492181837559, -0.011636156588792801, -0.0038184276781976223, -0.00939031783491373, 0.024779586121439934, -0.040334656834602356, -0.018087290227413177, -0.001217123819515109, -0.0029040148947387934, 0.018981605768203735, 0.001376643660478294, 0.01207828987389803, 0.00851107481867075, -0.010329851880669594, 0.014630607329308987, 0.0034717547241598368, -0.01088251918554306, 0.006817903369665146, -0.003778233891353011, -0.002014723140746355, -0.005320677533745766, 0.015414389781653881, -0.002518403809517622, -0.013073091395199299, 0.013756388798356056, 0.007455982733517885, 0.01544453576207161, 0.0034943637438118458, 0.005124731920659542, -0.018539471551775932, 0.010164052248001099, 0.019072042778134346, -0.0003702242102008313, 0.013063042424619198, 0.02749267965555191, 0.003245663596317172, 0.004220367409288883, -0.00020411003788467497, 0.004087225068360567, 5.927041456743609e-06, 0.0028386996127665043, 0.006526497192680836, -0.004888592287898064, -0.001786119886673987, 0.01653982140123844, 0.012409890070557594, -0.018167678266763687, -0.0020712458062916994, 0.006074314936995506, 0.01737384684383869, 0.02516143023967743, -0.034426141530275345, -0.0021629384718835354, -0.007239940110594034, 0.011405040509998798, -0.010370045900344849, 0.0037229671142995358, -0.0055769141763448715, 0.012801781296730042, 0.015504826791584492, 0.0013439861359074712, 0.017082439735531807, -0.003122569527477026, -0.006526497192680836, 0.00262768124230206, 0.004536895081400871, -5.2283572586020455e-05, -0.007104285527020693, 0.013133381493389606, 0.02168465033173561, 0.004923762287944555, 0.014208571054041386, 0.013012800365686417, -0.00648127868771553, 0.019313205033540726, -0.015846475958824158, 0.0137061458081007, -0.008812529034912586, -0.0021528899669647217, -0.017956659197807312, -0.0006462438032031059, -0.0116261076182127, -0.014188474044203758, -0.03918912634253502, 0.003029620973393321, -0.023031149059534073, -0.012259162962436676, -0.005516623146831989, -0.0009552349802106619, 0.009671675972640514, -0.0032959061209112406, 0.009214469231665134, -0.008129231631755829, 0.009882694110274315, 0.02110183797776699, 0.02044868655502796, 0.009621432982385159, -0.019393593072891235, 0.01594696007668972, -0.00351948500610888, 0.014680850319564342, 0.024136483669281006, -0.019865872338414192, -0.004835837986320257, -0.027432389557361603, -0.004850910510867834, 0.003439097199589014, 0.004810716491192579, 0.005127244163304567, 0.018298307433724403, -0.013836776837706566, -0.016419239342212677, -0.025382496416568756, 0.004795643966645002, -0.02415657974779606, 0.005330726038664579, 0.011796931736171246, -0.04453492537140846, 0.02516143023967743, -0.002667875261977315, -9.121167749981396e-06, 0.0017208046047016978, -0.00299947545863688, -0.0046549648977816105, 0.01619817316532135, 0.018147580325603485, 0.004273122176527977, -0.019333302974700928, 0.01785617507994175, 0.005722617264837027, 0.001482152845710516, -0.028216172009706497, 0.01454017125070095, 0.014389444142580032, -0.014278910122811794, -0.02108174003660679, -0.0029793784487992525, -0.004054567310959101, 0.0010199222015216947, -0.012701296247541904, 0.010078639723360538, -0.01444973424077034, 0.0013653391506522894, 0.018378695473074913, -0.013364497572183609, 0.006586787756532431, 0.012932412326335907, 0.006214993540197611, -0.0010576039785519242, 0.05599020794034004, -0.008918038569390774, 0.011636156588792801, 0.004491677042096853, -0.027593165636062622, -0.006330551113933325, 0.0085060503333807, -0.00880248099565506, 0.009063742123544216, -0.010822228156030178, -0.013314254581928253, 0.007571540307253599, 0.018469132483005524, 0.023051245138049126, 0.00029140632250346243, -0.006265236064791679, 0.01993621326982975, -0.003489339491352439, -0.023634057492017746, -0.011796931736171246, -0.02682947926223278, 0.017745640128850937, 0.02317182719707489, 0.020659703761339188, -0.013213769532740116, 0.02914063259959221, -0.016409190371632576, -0.01802699826657772, -0.01207828987389803, -0.012721393257379532, -0.03579273447394371, -0.010661452077329159, 0.013384594582021236, -0.002444296143949032, 0.019906066358089447, -0.011163877323269844, 0.03197430819272995, 0.01687142252922058, -0.0031376422848552465, 0.0005385364638641477, 0.01296255737543106, 0.006707369815558195, -0.02500065416097641, 8.360661013284698e-05, 0.018006902188062668, 0.04216348007321358, -0.0005159273860044777, -0.01154571957886219, 0.0025435250718146563, -0.011023198254406452, 0.010093712247908115, 0.003655139822512865, -0.017544670030474663, 0.0071143340319395065, -0.0043811434879899025, 0.002098879311233759, 0.0008428174769505858, 0.012651054188609123, 0.020157279446721077, 0.0039364974945783615, 0.018227968364953995, 0.0012428731424733996, -0.005551793146878481, -0.015926863998174667, 0.009807330556213856, -0.014630607329308987, 0.01171654462814331, 0.02285027503967285, 0.014188474044203758, 0.006762636359781027, -0.004559504333883524, -0.006822927389293909, 0.0010073615703731775, -0.006576739251613617, -0.006350648123770952, -0.0014042770490050316, -0.010993052273988724, 0.005903490353375673, 5.106676326249726e-05, 0.0004104181716684252, -0.0030974482651799917, 0.024196773767471313, 0.009053693152964115, 0.015464632771909237, 0.007370570674538612, -0.01670059747993946, -0.013434836640954018, 0.02417667768895626, 0.01229935698211193, -0.0017182924784719944, -0.002821114845573902, -0.0014080452965572476, 0.0052603865042328835, -0.005717593245208263, 0.010249463841319084, 0.01552492380142212, -0.00666717579588294, 0.01936344802379608, 0.005993926897644997, 0.007501200772821903, -0.029783736914396286, 0.002672899514436722, 0.006119532976299524, -0.0031552272848784924, -0.008038795553147793, 0.011344749480485916, -0.009671675972640514, 0.01520337164402008, 0.0010142698884010315, -0.012158677913248539, 0.00253222044557333, -0.0007033945876173675, -0.017836077138781548, 0.0211621280759573, 0.020981255918741226, 0.014369347132742405, -0.01216872688382864, 0.011676350608468056, 0.002404102124273777, 0.01718292571604252, -0.014741141349077225, -0.016057493165135384, -0.012922363355755806, 0.0008673106785863638, 0.006963606458157301, -0.012892218306660652, -0.006541569717228413, -0.009078814648091793, -0.003250687848776579, -0.013615709729492664, 0.00908886268734932, 0.014891868457198143, 0.0027407268062233925, 0.0015813817735761404, 0.020308006554841995, 0.005511599127203226, -0.0033536849077790976, 0.00983747560530901, 0.019082089886069298, -0.007054043002426624, 0.029783736914396286, -0.008475905284285545, 0.010691598057746887, 0.0005944312433712184, -0.024618810042738914, 0.0020699899177998304, 0.015213420614600182, -0.023272313177585602, -0.018629908561706543, 0.013264012522995472, 0.02401590161025524, 0.012781684286892414, 0.006230066530406475, -0.0132841095328331, 0.0026779237668961287, -0.013012800365686417, -0.005421162582933903, -0.008028746582567692, 0.019715145230293274, -0.014861722476780415, 0.0014771285932511091, -0.0033662456553429365, -0.0032331030815839767, 0.013686048798263073, -0.008546244353055954, 0.0018966533243656158, -0.0020762700587511063, 0.011957707814872265, -0.011565816588699818, 0.0064662061631679535, -0.019574467092752457, 0.011606010608375072, -0.020056795328855515, -0.015585214830935001, -0.004931298550218344, -0.012470181100070477, -0.009249638766050339, 0.017564767971634865, -0.022488530725240707, -0.005295556504279375, -0.0211822260171175, 0.021624360233545303, -0.004647428635507822, -0.0037380398716777563, 0.01586657203733921, 0.03040674328804016, -0.002376468852162361, 0.008551268838346004, 0.0002728794061113149, -0.007626807317137718, 0.025784436613321304, -0.00784284994006157, 0.0037455761339515448, 0.00909388717263937, -0.0066269817762076855, -0.00037964468356221914, -0.012932412326335907, 0.014288959093391895, -0.007249988615512848, -0.010058542713522911, -0.017635107040405273, 0.020167328417301178, -0.010661452077329159, -0.005667350720614195, 0.0018162652850151062, -0.008169425651431084, 0.001698195468634367, 0.0005375944310799241, -0.03006509505212307, -0.019966358318924904, 0.022146880626678467, 0.01454017125070095, 0.00930490531027317, 0.026970159262418747, -0.013344400562345982, 0.012952509336173534, 0.021744942292571068, 0.009144130162894726, -0.008837650530040264, -0.019313205033540726, -0.002743238816037774, -0.022970857098698616, -0.008767311461269855, 0.0038661581929773092, -0.017414040863513947, -0.010560967028141022, -0.036737293004989624, -0.004195246379822493, -0.014017648994922638, -0.004976516589522362, 0.026447637006640434, -0.016650354489684105, 0.015082789584994316, -0.031009653583168983, -0.0025874872226268053, -0.004300755448639393, -0.006616933271288872, -0.00955109391361475, 0.015163177624344826, -0.01759491302073002, 0.02765345573425293, -0.01877058669924736, 0.008440734818577766, 0.006782733369618654, 0.006787757854908705, -0.007144479546695948, -0.011294507421553135, 0.00778758293017745, -0.005787932779639959, 0.0011543207801878452, 0.029381796717643738, -0.006536545697599649, -0.001610271167010069, 0.02775394171476364, 0.010932761244475842, 0.017434136942029, 0.005195071455091238, 0.0019418714800849557, -0.008661801926791668, -0.00041858258191496134, -0.012440036050975323, 0.00477303471416235, -0.012108435854315758, 0.031110137701034546, 0.0013791557867079973, -0.005833150818943977, -0.02823626808822155, -0.009792258031666279, -0.0015989666571840644, 0.011033246293663979, -0.016569966450333595, -0.020619509741663933]}, "text_id_to_ref_doc_id": {"54d007e0-a439-4299-a911-d7d93df8f0ad": "72beb569-fa7f-4009-b23c-0fb3773bbc37", "995cafc5-6e39-43bb-a23b-48d135fc5687": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "507eee74-04d1-421e-8f63-8a7ad4dede7a": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "9cd46042-f358-4a40-81c6-18aee50f8df3": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "c808470e-fa8e-4aa1-9392-29e5e6d56841": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "20d7b474-fffe-481a-a28d-3393a60f7c3d": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "0c611f55-b589-4106-a22b-8cc7087cd72c": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "aaae4fe6-132e-47cf-8ebf-f923ede94684": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "4812c02a-deae-4617-a631-3d1d2681ef6d": "130dd014-0595-4e8d-bce0-9a555e767c16", "cfcb4e69-2296-491c-b649-15e9377ac385": "130dd014-0595-4e8d-bce0-9a555e767c16", "c94276a9-98a1-4349-84d0-b78b5e8d1b7e": "130dd014-0595-4e8d-bce0-9a555e767c16", "59145c5f-26e2-4613-8df5-e10874e81f20": "130dd014-0595-4e8d-bce0-9a555e767c16", "99a604e4-a110-4600-b68b-b11b0ad3538f": "130dd014-0595-4e8d-bce0-9a555e767c16", "433118a8-4031-4aaf-bbdc-e0965f79997e": "130dd014-0595-4e8d-bce0-9a555e767c16", "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4": "130dd014-0595-4e8d-bce0-9a555e767c16", "ee7b7752-6013-4fc6-90c6-cb1559acf82a": "130dd014-0595-4e8d-bce0-9a555e767c16", "a4c2e637-bf95-40cb-b4de-78de8b49b6b9": "130dd014-0595-4e8d-bce0-9a555e767c16", "ebe419bd-5a6e-41f3-8c29-1522cbb5495b": "130dd014-0595-4e8d-bce0-9a555e767c16", "1abdb350-e5f4-4c81-942a-1105d3053d74": "130dd014-0595-4e8d-bce0-9a555e767c16", "f3b48282-6282-4419-9b67-287f8516f532": "130dd014-0595-4e8d-bce0-9a555e767c16", "55820e72-350c-4d01-97be-cdc60036974a": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "c5a03af5-c467-47c4-96ff-3b15682d23bf": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "112f62c0-766e-43c9-ace3-b96969d9fadb": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "e39682ef-e478-472e-8f0e-da1ed1b619f8": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "4e40803c-97a9-4b13-8bd8-aaa8a7840760": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968": "54a40460-23c1-40da-9886-7a91b4163ebf", "527cc4e9-d27e-46b1-9faf-1052b2b76ba0": "54a40460-23c1-40da-9886-7a91b4163ebf", "33a52153-0b96-43ff-a3fc-bc2546b70869": "54a40460-23c1-40da-9886-7a91b4163ebf", "56eec31c-5c40-416e-81fd-7c7a6722f005": "54a40460-23c1-40da-9886-7a91b4163ebf", "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3": "54a40460-23c1-40da-9886-7a91b4163ebf", "98338da6-5a0a-4653-89be-314b1cc2ff25": "54a40460-23c1-40da-9886-7a91b4163ebf", "515d7962-e18d-4b3d-8b44-345f171c1de2": "54a40460-23c1-40da-9886-7a91b4163ebf", "1062af75-9e40-499f-9e34-18c8074da7a8": "54a40460-23c1-40da-9886-7a91b4163ebf", "e559f16b-b79d-497c-83c3-1040b7290ab2": "54a40460-23c1-40da-9886-7a91b4163ebf", "fe0c19af-46e7-46d9-8fd6-66508ffc9f88": "54a40460-23c1-40da-9886-7a91b4163ebf", "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff": "045c8692-adb9-4d07-9f25-d3de0a01baba", "a33c36a6-48b6-48a9-b522-e5205e1c4b8c": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "f0b68f74-cf73-4de3-87e3-80446f9a99d8": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "6f062ef9-2a08-4252-bfea-e3a6fec7ea21": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "d38702d2-d706-43ce-8e66-ad161eeafb07": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "1fae385d-2f54-4dee-b18c-3b31945b956d": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "465eac93-e005-49d0-8601-0352a21c45ed": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "metadata_dict": {"54d007e0-a439-4299-a911-d7d93df8f0ad": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "72beb569-fa7f-4009-b23c-0fb3773bbc37", "doc_id": "72beb569-fa7f-4009-b23c-0fb3773bbc37", "ref_doc_id": "72beb569-fa7f-4009-b23c-0fb3773bbc37"}, "995cafc5-6e39-43bb-a23b-48d135fc5687": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "507eee74-04d1-421e-8f63-8a7ad4dede7a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "9cd46042-f358-4a40-81c6-18aee50f8df3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "c808470e-fa8e-4aa1-9392-29e5e6d56841": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "20d7b474-fffe-481a-a28d-3393a60f7c3d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "0c611f55-b589-4106-a22b-8cc7087cd72c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "aaae4fe6-132e-47cf-8ebf-f923ede94684": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "4812c02a-deae-4617-a631-3d1d2681ef6d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "cfcb4e69-2296-491c-b649-15e9377ac385": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "c94276a9-98a1-4349-84d0-b78b5e8d1b7e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "59145c5f-26e2-4613-8df5-e10874e81f20": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "99a604e4-a110-4600-b68b-b11b0ad3538f": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "433118a8-4031-4aaf-bbdc-e0965f79997e": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "ee7b7752-6013-4fc6-90c6-cb1559acf82a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "a4c2e637-bf95-40cb-b4de-78de8b49b6b9": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "ebe419bd-5a6e-41f3-8c29-1522cbb5495b": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "1abdb350-e5f4-4c81-942a-1105d3053d74": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "f3b48282-6282-4419-9b67-287f8516f532": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "55820e72-350c-4d01-97be-cdc60036974a": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "c5a03af5-c467-47c4-96ff-3b15682d23bf": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "112f62c0-766e-43c9-ace3-b96969d9fadb": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "e39682ef-e478-472e-8f0e-da1ed1b619f8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "ref_doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b"}, "4e40803c-97a9-4b13-8bd8-aaa8a7840760": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "ref_doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b"}, "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "527cc4e9-d27e-46b1-9faf-1052b2b76ba0": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "33a52153-0b96-43ff-a3fc-bc2546b70869": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "56eec31c-5c40-416e-81fd-7c7a6722f005": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "98338da6-5a0a-4653-89be-314b1cc2ff25": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "515d7962-e18d-4b3d-8b44-345f171c1de2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "1062af75-9e40-499f-9e34-18c8074da7a8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "e559f16b-b79d-497c-83c3-1040b7290ab2": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "fe0c19af-46e7-46d9-8fd6-66508ffc9f88": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "045c8692-adb9-4d07-9f25-d3de0a01baba", "doc_id": "045c8692-adb9-4d07-9f25-d3de0a01baba", "ref_doc_id": "045c8692-adb9-4d07-9f25-d3de0a01baba"}, "a33c36a6-48b6-48a9-b522-e5205e1c4b8c": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "f0b68f74-cf73-4de3-87e3-80446f9a99d8": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "6f062ef9-2a08-4252-bfea-e3a6fec7ea21": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "d38702d2-d706-43ce-8e66-ad161eeafb07": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "1fae385d-2f54-4dee-b18c-3b31945b956d": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "465eac93-e005-49d0-8601-0352a21c45ed": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05", "_node_type": "TextNode", "document_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219_ref/docstore.json b/opentrons-ai-server/api/storage/index/v219_ref/docstore.json new file mode 100644 index 00000000000..c1f1daccd7d --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219_ref/docstore.json @@ -0,0 +1 @@ +{"docstore/metadata": {"72beb569-fa7f-4009-b23c-0fb3773bbc37": {"doc_hash": "2a1faac7d8909d6a3797f9450c2c0e45ccdc60ad684054b28ed729835548bdb7"}, "5ac5dd00-55bc-4767-8291-4b198eba6fd9": {"doc_hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac"}, "130dd014-0595-4e8d-bce0-9a555e767c16": {"doc_hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d"}, "6e886adb-3bfa-459f-858e-dcd0ae10efb2": {"doc_hash": "bd6ca8ff0fc99626577d4ad165d7a337317d507e5e03b4866ac80d41287acb9c"}, "3856fcb1-a47f-4a47-9bf2-2f196e6f957b": {"doc_hash": "1c1cc4587acf18b019b5844977db36b69c5a907670d876fcedaf089eb01d3ff8"}, "54a40460-23c1-40da-9886-7a91b4163ebf": {"doc_hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072"}, "045c8692-adb9-4d07-9f25-d3de0a01baba": {"doc_hash": "a47e88cbd9eef3664a84e2bd78ed8fa085a79f0bac528e4025c0d4f843134a97"}, "b0b7d054-9b6a-456d-a0f2-129ceb7e8499": {"doc_hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08"}, "54d007e0-a439-4299-a911-d7d93df8f0ad": {"doc_hash": "62ef379673e52a18f7f5f9b73c1c4ec344402026a94f15dc20949519c5bb5b26", "ref_doc_id": "72beb569-fa7f-4009-b23c-0fb3773bbc37"}, "995cafc5-6e39-43bb-a23b-48d135fc5687": {"doc_hash": "76be1894148a4d3dcec399a756ffbd59bebfa203289b9dbd4bd2dbc642549bf1", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0": {"doc_hash": "0a8050ff3d108c276f226d7997f4123da263327dbebf787eb93275edbb4adc90", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "507eee74-04d1-421e-8f63-8a7ad4dede7a": {"doc_hash": "47a8998b029d51f695f4f35bf7e5b19af7255fe8ed0ddb4056377f6937c5dea0", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "9cd46042-f358-4a40-81c6-18aee50f8df3": {"doc_hash": "46513cbcfb61a131d93d2dc72892a662dd1b4d5a420cd6855933a00983dba221", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "c808470e-fa8e-4aa1-9392-29e5e6d56841": {"doc_hash": "ee779495a022b075b90b4bfd1dc6370be1549a36ab6397cbed7980b18f00e068", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "20d7b474-fffe-481a-a28d-3393a60f7c3d": {"doc_hash": "96983910b652d196239e44949ab1d8279ade7e036899e41dd91678e7c37b9e78", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "0c611f55-b589-4106-a22b-8cc7087cd72c": {"doc_hash": "aaa282b91645baf18ee982a5709a20503db5f63fc226c9765e385638c3cd2149", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "aaae4fe6-132e-47cf-8ebf-f923ede94684": {"doc_hash": "78f2e0d66044be033536186ce18e13b76d3cc2a791c6775e3f2964e906452813", "ref_doc_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9"}, "4812c02a-deae-4617-a631-3d1d2681ef6d": {"doc_hash": "90de27aa0ca488afe481112141b0a5f33a6dd4347558c32adb41d7f82af27161", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "cfcb4e69-2296-491c-b649-15e9377ac385": {"doc_hash": "54dc6fb3ae53080f266a1eb6827bb890924955ed6bb9bd1dc80ca3387befc5ba", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "c94276a9-98a1-4349-84d0-b78b5e8d1b7e": {"doc_hash": "ee3d17cdaee944f9ec4e860d64648da04b3c57c0dcb592db214deb1fa97002d7", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "59145c5f-26e2-4613-8df5-e10874e81f20": {"doc_hash": "b0a97b4c4231ebffc1a7a40e89b73e18724255351cbf3ca9c1a7f915b7dbe3a9", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "99a604e4-a110-4600-b68b-b11b0ad3538f": {"doc_hash": "17876b18379a8c2d05505aed5e57c91dd1cac0ec4a56950c036ed35543a07276", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "433118a8-4031-4aaf-bbdc-e0965f79997e": {"doc_hash": "14cf2af61e50ea8e3d7c43c5a8bcf9ca76d4fb3de58dbf94066c1009f4df6a77", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4": {"doc_hash": "d2d480a388e99d2b8c683b44086e9b348b5d295fee7518f79ecffe9f6e7e18e2", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "ee7b7752-6013-4fc6-90c6-cb1559acf82a": {"doc_hash": "16a4dad093331449e6c90fff5977584feedc93f228a482b59a88cd897caa70ea", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "a4c2e637-bf95-40cb-b4de-78de8b49b6b9": {"doc_hash": "6068e8d42e7a824307b827c994e6e6b7a5e9984521b9f3ca0c33a04f15080f45", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "ebe419bd-5a6e-41f3-8c29-1522cbb5495b": {"doc_hash": "958839c2d3a5489f613693566dbe3df494e791d93e43035201e87d7a73447373", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "1abdb350-e5f4-4c81-942a-1105d3053d74": {"doc_hash": "e4bcdb1b61e2bf23454b397fa6b8f0fd51df7fa9a70e2eadbd6abdbdec979ba2", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "f3b48282-6282-4419-9b67-287f8516f532": {"doc_hash": "52ae97c6421f0dc1c461a7f8cb30371442de67fda5f231a0f6ef6f5841c6ec1e", "ref_doc_id": "130dd014-0595-4e8d-bce0-9a555e767c16"}, "55820e72-350c-4d01-97be-cdc60036974a": {"doc_hash": "ec7b63f3f36a4c900b190e5b77a0a4490e7caa03d035746f035dd69536aaf5b8", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee": {"doc_hash": "21af4b40cc382dce449d62763440b214c2c3dd8e8e15d73072beab26db6f18c5", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "c5a03af5-c467-47c4-96ff-3b15682d23bf": {"doc_hash": "b6b448890e43f5eff876bc01a3f2d65c24bbd6b3c77e38345d1b05b5ae725776", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "112f62c0-766e-43c9-ace3-b96969d9fadb": {"doc_hash": "cfe448da292a971d78adc452f81fca3439c63d80eb274b10d98e53b333121775", "ref_doc_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2"}, "e39682ef-e478-472e-8f0e-da1ed1b619f8": {"doc_hash": "37b3cb2a0fbf7a84b489cca9326d792b547a0413c733f77d10091c151d44ff3c", "ref_doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b"}, "4e40803c-97a9-4b13-8bd8-aaa8a7840760": {"doc_hash": "b4e637460cee18f6a8d7c6eb24e9ed7a49a65e002ffb8e8769264ad3e80f70c9", "ref_doc_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b"}, "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968": {"doc_hash": "845bd61174299cb429fcab3b34066fdd566bcd980c21bdade22aca00ea0dedf6", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "527cc4e9-d27e-46b1-9faf-1052b2b76ba0": {"doc_hash": "d201d132f050ac538b6274c529671cdc54022b80e155068b3a5ef274541bab02", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "33a52153-0b96-43ff-a3fc-bc2546b70869": {"doc_hash": "5afec27c4f201f14217a4865b18311fe717693348c26f9c3cd3a901d021ff9c5", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "56eec31c-5c40-416e-81fd-7c7a6722f005": {"doc_hash": "ab99552145816f7d8d8596a43c16493b4e2e7e434d70ce598aa8b51b8be07ab8", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3": {"doc_hash": "0a0cc3bd0a2f7151ad743361a1163578790a24c46f3fc576c80d640286f77e0e", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "98338da6-5a0a-4653-89be-314b1cc2ff25": {"doc_hash": "31bd27fe1bb990c4105354d53c4334dea2eb18c4e1f7ccda5f0a13cf04517e63", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "515d7962-e18d-4b3d-8b44-345f171c1de2": {"doc_hash": "c03ff33e0ea04de25bb721187fa04501d3588be97ffb706d83a6d0b59483732a", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "1062af75-9e40-499f-9e34-18c8074da7a8": {"doc_hash": "e550c65a5a23af01c46f207a498d836e7fd16f94d5380e6394fc70f583411618", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "e559f16b-b79d-497c-83c3-1040b7290ab2": {"doc_hash": "e52c36f58e0959a58a31f3a7a24b5e9aaacf63cc4b56423b3cd4f1e3fb680693", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "fe0c19af-46e7-46d9-8fd6-66508ffc9f88": {"doc_hash": "4ceb7790b37ced4928f25cd0711f1eaaa3420f03b30330016c8c7cb5738fdffb", "ref_doc_id": "54a40460-23c1-40da-9886-7a91b4163ebf"}, "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff": {"doc_hash": "58b0bddc5c76f72dde6a3f54c951fea6cb9118a2ef913da589ae0afcee15bb41", "ref_doc_id": "045c8692-adb9-4d07-9f25-d3de0a01baba"}, "a33c36a6-48b6-48a9-b522-e5205e1c4b8c": {"doc_hash": "3e864d46c40cd3a4b185d3d6caf47a3c8fe2dc9a4c94965f65075affd0fa36f5", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "f0b68f74-cf73-4de3-87e3-80446f9a99d8": {"doc_hash": "068930d37db63e0e4a5f8b23bd15cedf2b14bd842c7c16be456d4d406b0fe032", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "6f062ef9-2a08-4252-bfea-e3a6fec7ea21": {"doc_hash": "7db3fdb5a82b7cfcd40d7d81a33c99b8df1ed5543ca65330172cc7c3a5fd57fb", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "d38702d2-d706-43ce-8e66-ad161eeafb07": {"doc_hash": "a743d4008c1555ad62b06cc8c7059fdcec89c464baf51f38dc403dedc06dece0", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "1fae385d-2f54-4dee-b18c-3b31945b956d": {"doc_hash": "d9b8cf738542bb99d872d9b004d8df61b7bc8ff0635475d2878bc61f97e0cf46", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}, "465eac93-e005-49d0-8601-0352a21c45ed": {"doc_hash": "4f5eba44aa5e0594a6d44a6e8f4a8aefa5dacbf247ffe80759973a78175af236", "ref_doc_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499"}}, "docstore/data": {"54d007e0-a439-4299-a911-d7d93df8f0ad": {"__data__": {"id_": "54d007e0-a439-4299-a911-d7d93df8f0ad", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "72beb569-fa7f-4009-b23c-0fb3773bbc37", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "2a1faac7d8909d6a3797f9450c2c0e45ccdc60ad684054b28ed729835548bdb7", "class_name": "RelatedNodeInfo"}}, "text": "API Version 2 Reference", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 25, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "995cafc5-6e39-43bb-a23b-48d135fc5687": {"__data__": {"id_": "995cafc5-6e39-43bb-a23b-48d135fc5687", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0", "node_type": "1", "metadata": {}, "hash": "cc98f4abc4644aff389d81c6478a724227f0ff9b232a5bd150280ecf800bb960", "class_name": "RelatedNodeInfo"}}, "text": "Protocols\n\n_class_ opentrons.protocol*api.ProtocolContext(\\_api_version: APIVersion*, _core: AbstractProtocol\\AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _broker: [Optional')\\LegacyBroker] \\= None_, _core_map: [Optional')\\LoadedCoreMap] \\= None_, _deck: [Optional')\\Deck] \\= None_, _bundled_data: [Optional')\\[Dict')\\[str'), bytes')]] \\= None_)\nA context for the state of a protocol.\n\nThe `ProtocolContext` class provides the objects, attributes, and methods that\nallow you to configure and control the protocol.\n\nMethods generally fall into one of two categories.\n\n> - They can change the state of the `ProtocolContext` object, such as adding\n> pipettes, hardware modules, or labware to your protocol.\n> - They can control the flow of a running protocol, such as pausing, displaying\n> messages, or controlling built\\-in robot hardware like the ambient lighting.\n\nDo not instantiate a `ProtocolContext` directly.\nThe `run()` function of your protocol does that for you.\nSee the Tutorial for more information.\n\nUse `opentrons.execute.get_protocol_api()` to instantiate a `ProtocolContext` when\nusing Jupyter Notebook. See Advanced Control.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\nReturn the API version specified for this protocol context.\n\nThis value is set when the protocol context\nis initialized.\n\n> - When the context is the argument of `run()`, the `\"apiLevel\"` key of the\n> metadata or requirements dictionary determines `api_version`.\n> - When the context is instantiated with\n> `opentrons.execute.get_protocol_api()` or\n> `opentrons.simulate.get_protocol_api()`, the value of its `version`\n> argument determines `api_version`.\n\nIt may be lower than the maximum version supported by the\nrobot software, which is accessible via the\n`protocol_api.MAX_SUPPORTED_VERSION` constant.\n\nNew in version 2\\.0\\.\n\n_property_ bundled_data*: Dict')\\[str'), bytes')]*\nAccessor for data files bundled with this protocol, if any.\n\nThis is a dictionary mapping the filenames of bundled datafiles to their\ncontents. The filename keys are formatted with extensions but without paths. For\nexample, a file stored in the bundle as `data/mydata/aspirations.csv` will\nhave the key `\"aspirations.csv\"`. The values are `bytes`') objects\nrepresenting the contents of the files.\n\nNew in version 2\\.0\\.\n\ncommands(_self_) \u2192 'List\\[str]'\nReturn the run log.\n\nThis is a list of human\\-readable strings representing what\u2019s been done in the protocol so\nfar. For example, \u201cAspirating 123 \u00b5L from well A1 of 96 well plate in slot 1\\.\u201d\n\nThe exact format of these entries is not guaranteed. The format here may differ from other\nplaces that show the run log, such as the Opentrons App or touchscreen.\n\nNew in version 2\\.0\\.\n\ncomment(_self_, _msg: 'str'_) \u2192 'None'\nAdd a user\\-readable message to the run log.\n\nThe message is visible anywhere you can view the run log, including the Opentrons App and the touchscreen on Flex.\n\nNote\n\nThe value of the message is computed during protocol analysis,\nso `comment()` can\u2019t communicate real\\-time information during the\nactual protocol run.\n\nNew in version 2\\.0\\.\n\n_property_ deck*: Deck*\nAn interface to provide information about what\u2019s currently loaded on the deck.\nThis object is useful for determining if a slot on the deck is free.\n\nThis object behaves like a dictionary whose keys are the deck slot names.\nFor instance, `deck[1]`, `deck[\"1\"]`, and `deck[\"D1\"]`\nwill all return the object loaded in the front\\-left slot.\n\nThe value for each key depends on what is loaded in the slot:\\* A `Labware` if the slot contains a labware.\n\n- A module context if the slot contains a hardware module.\n- `None` if the slot doesn\u2019t contain anything.\n\nA module that occupies multiple slots is set as the value for all of the\nrelevant slots. Currently, the only multiple\\-slot module is the Thermocycler.\nWhen loaded, the `ThermocyclerContext` object is the value for\n`deck` keys `\"A1\"` and `\"B1\"` on Flex, and `7`, `8`, `10`, and\n`11` on OT\\-2\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 4034, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0": {"__data__": {"id_": "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "995cafc5-6e39-43bb-a23b-48d135fc5687", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "76be1894148a4d3dcec399a756ffbd59bebfa203289b9dbd4bd2dbc642549bf1", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "507eee74-04d1-421e-8f63-8a7ad4dede7a", "node_type": "1", "metadata": {}, "hash": "5884802f151f7ef74a6cc6f8a75398f33793f375b58d7f2d589c5dc5819129c7", "class_name": "RelatedNodeInfo"}}, "text": "This object behaves like a dictionary whose keys are the deck slot names.\nFor instance, `deck[1]`, `deck[\"1\"]`, and `deck[\"D1\"]`\nwill all return the object loaded in the front\\-left slot.\n\nThe value for each key depends on what is loaded in the slot:\\* A `Labware` if the slot contains a labware.\n\n- A module context if the slot contains a hardware module.\n- `None` if the slot doesn\u2019t contain anything.\n\nA module that occupies multiple slots is set as the value for all of the\nrelevant slots. Currently, the only multiple\\-slot module is the Thermocycler.\nWhen loaded, the `ThermocyclerContext` object is the value for\n`deck` keys `\"A1\"` and `\"B1\"` on Flex, and `7`, `8`, `10`, and\n`11` on OT\\-2\\. In API version 2\\.13 and earlier, only slot 7 keyed to the\nThermocycler object, and slots 8, 10, and 11 keyed to `None`.\n\nRather than filtering the objects in the deck map yourself,\nyou can also use `loaded_labwares` to get a dict of labwares\nand `loaded_modules` to get a dict of modules.\n\nFor Advanced Control _only_, you can delete an element of the `deck` dict.\nThis only works for deck slots that contain labware objects. For example, if slot\n1 contains a labware, `del protocol.deck[\"1\"]` will free the slot so you can\nload another labware there.\n\nWarning\n\nDeleting labware from a deck slot does not pause the protocol. Subsequent\ncommands continue immediately. If you need to physically move the labware to\nreflect the new deck state, add a `pause()` or use\n`move_labware()` instead.\n\nChanged in version 2\\.14: Includes the Thermocycler in all of the slots it occupies.\n\nChanged in version 2\\.15: `del` sets the corresponding labware\u2019s location to `OFF_DECK`.\n\nNew in version 2\\.0\\.\n\ndefine*liquid(\\_self*, _name: 'str'_, _description: 'Optional\\[str]'_, _display_color: 'Optional\\[str]'_) \u2192 'Liquid'\nDefine a liquid within a protocol.\n\nParameters:\n\n- **name** (_str_')) \u2013 A human\\-readable name for the liquid.\n- **description** (_str_')) \u2013 An optional description of the liquid.\n- **display_color** (_str_')) \u2013 An optional hex color code, with hash included, to represent the specified liquid. Standard three\\-value, four\\-value, six\\-value, and eight\\-value syntax are all acceptable.\n\nReturns:\nA `Liquid` object representing the specified liquid.\n\nNew in version 2\\.14\\.\n\ndelay(_self_, _seconds: 'float' \\= 0_, _minutes: 'float' \\= 0_, _msg: 'Optional\\[str]' \\= None_) \u2192 'None'\nDelay protocol execution for a specific amount of time.\n\nParameters:\n\n- **seconds** (_float_')) \u2013 The time to delay in seconds.\n- **minutes** (_float_')) \u2013 The time to delay in minutes.\n\nIf both `seconds` and `minutes` are specified, they will be added together.\n\nNew in version 2\\.0\\.\n\n_property_ door_closed*: bool')*\nReturns `True` if the front door of the robot is closed.\n\nNew in version 2\\.5\\.\n\n_property_ fixed_trash*: Union')\\[Labware, TrashBin]*\nThe trash fixed to slot 12 of an OT\\-2\u2019s deck.\n\nIn API version 2\\.15 and earlier, the fixed trash is a `Labware` object with one well. Access it like labware in your protocol. For example, `protocol.fixed_trash[\"A1\"]`.\n\nIn API version 2\\.15 only, Flex protocols have a fixed trash in slot A3\\.\n\nIn API version 2\\.16 and later, the fixed trash only exists in OT\\-2 protocols. It is a `TrashBin` object, which doesn\u2019t have any wells. Trying to access `fixed_trash` in a Flex protocol will raise an error. See Trash Bin for details on using the movable trash in Flex protocols.\n\nChanged in version 2\\.16: Returns a `TrashBin` object.\n\nNew in version 2\\.0\\.\n\nhome(_self_) \u2192 'None'\nHome the movement system of the robot.\n\nNew in version 2\\.0\\.\n\nis*simulating(\\_self*) \u2192 'bool'\nReturns `True` if the protocol is running in simulation.", "mimetype": "text/plain", "start_char_idx": 3336, "end_char_idx": 7007, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "507eee74-04d1-421e-8f63-8a7ad4dede7a": {"__data__": {"id_": "507eee74-04d1-421e-8f63-8a7ad4dede7a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0a8050ff3d108c276f226d7997f4123da263327dbebf787eb93275edbb4adc90", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "9cd46042-f358-4a40-81c6-18aee50f8df3", "node_type": "1", "metadata": {}, "hash": "33095c7ce77d19ef206ed72e53923146e219d8d0abf3262bd96d946d9af88435", "class_name": "RelatedNodeInfo"}}, "text": "Access it like labware in your protocol. For example, `protocol.fixed_trash[\"A1\"]`.\n\nIn API version 2\\.15 only, Flex protocols have a fixed trash in slot A3\\.\n\nIn API version 2\\.16 and later, the fixed trash only exists in OT\\-2 protocols. It is a `TrashBin` object, which doesn\u2019t have any wells. Trying to access `fixed_trash` in a Flex protocol will raise an error. See Trash Bin for details on using the movable trash in Flex protocols.\n\nChanged in version 2\\.16: Returns a `TrashBin` object.\n\nNew in version 2\\.0\\.\n\nhome(_self_) \u2192 'None'\nHome the movement system of the robot.\n\nNew in version 2\\.0\\.\n\nis*simulating(\\_self*) \u2192 'bool'\nReturns `True` if the protocol is running in simulation.\n\nReturns `False` if the protocol is running on actual hardware.\n\nYou can evaluate the result of this method in an `if` statement to make your\nprotocol behave differently in different environments. For example, you could\nrefer to a data file on your computer when simulating and refer to a data file\nstored on the robot when not simulating.\n\nYou can also use it to skip time\\-consuming aspects of your protocol. Most Python\nProtocol API methods, like `delay()`, are designed to evaluate\ninstantaneously in simulation. But external methods, like those from the\n`time`') module, will run at normal speed if not skipped.\n\nNew in version 2\\.0\\.\n\nload*adapter(\\_self*, _load_name: 'str'_, _location: 'Union\\[DeckLocation, OffDeckType]'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto a location.\n\nFor adapters already defined by Opentrons, this is a convenient way\nto collapse the two stages of adapter initialization (creating\nthe adapter and adding it to the protocol) into one.\n\nThis function returns the created and initialized adapter for use\nlater in the protocol.\n\nParameters:\n\n- **load_name** (_str_')) \u2013 A string to use for looking up a labware definition for the adapter.\n You can find the `load_name` for any standard adapter on the Opentrons\n Labware Library.\n- **location** (int or str or `OFF_DECK`) \u2013 Either a deck slot,\n like `1`, `\"1\"`, or `\"D1\"`, or the special value `OFF_DECK`.\n- **namespace** (_str_')) \u2013 The namespace that the labware definition belongs to.\n If unspecified, the API will automatically search two namespaces:\n\n> - `\"opentrons\"`, to load standard Opentrons labware definitions.\n> - `\"custom_beta\"`, to load custom labware definitions created with the\n> Custom Labware Creator.\n\nYou might need to specify an explicit `namespace` if you have a custom\ndefinition whose `load_name` is the same as an Opentrons standard\ndefinition, and you want to explicitly choose one or the other.\n\n- **version** \u2013 The version of the labware definition. You should normally\n leave this unspecified to let `load_adapter()` choose a version automatically.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _adapter_def: \"'LabwareDefinition'\"_, _location: 'Union\\[DeckLocation, OffDeckType]'_) \u2192 'Labware'\nSpecify the presence of an adapter on the deck.\n\nThis function loads the adapter definition specified by `adapter_def`\nto the location specified by `location`.\n\nParameters:\n\n- **adapter_def** \u2013 The adapter\u2019s labware definition.\n- **location** (int or str or `OFF_DECK`) \u2013 The slot into which to load the labware,\n such as `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n\nNew in version 2\\.15\\.\n\nload*instrument(\\_self*, _instrument_name: 'str'_, _mount: 'Union\\[Mount, str, None]' \\= None_, _tip_racks: 'Optional\\[List\\[Labware]]' \\= None_, _replace: 'bool' \\= False_, _liquid_presence_detection: 'Optional\\[bool]' \\= None_) \u2192 'InstrumentContext'\nLoad a specific instrument for use in the protocol.\n\nWhen analyzing the protocol on the robot, instruments loaded with this method\nare compared against the instruments attached to the robot. You won\u2019t be able to\nstart the protocol until the correct instruments are attached and calibrated.\n\nCurrently, this method only loads pipettes.", "mimetype": "text/plain", "start_char_idx": 6314, "end_char_idx": 10283, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "9cd46042-f358-4a40-81c6-18aee50f8df3": {"__data__": {"id_": "9cd46042-f358-4a40-81c6-18aee50f8df3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "507eee74-04d1-421e-8f63-8a7ad4dede7a", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "47a8998b029d51f695f4f35bf7e5b19af7255fe8ed0ddb4056377f6937c5dea0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c808470e-fa8e-4aa1-9392-29e5e6d56841", "node_type": "1", "metadata": {}, "hash": "7d02222c0fda568edfdd3b030e7781cb4daeba9adf42ca4f34a8662e383bde26", "class_name": "RelatedNodeInfo"}}, "text": "- **location** (int or str or `OFF_DECK`) \u2013 The slot into which to load the labware,\n such as `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n\nNew in version 2\\.15\\.\n\nload*instrument(\\_self*, _instrument_name: 'str'_, _mount: 'Union\\[Mount, str, None]' \\= None_, _tip_racks: 'Optional\\[List\\[Labware]]' \\= None_, _replace: 'bool' \\= False_, _liquid_presence_detection: 'Optional\\[bool]' \\= None_) \u2192 'InstrumentContext'\nLoad a specific instrument for use in the protocol.\n\nWhen analyzing the protocol on the robot, instruments loaded with this method\nare compared against the instruments attached to the robot. You won\u2019t be able to\nstart the protocol until the correct instruments are attached and calibrated.\n\nCurrently, this method only loads pipettes. You do not need to load the Flex\nGripper to use it in protocols. See Automatic vs Manual Moves.\n\nParameters:\n\n- **instrument_name** (_str_')) \u2013 The instrument to load. See API Load Names\n for the valid values.\n- **mount** (types.Mount or str or `None`) \u2013 The mount where the instrument should be attached.\n This can either be an instance of `types.Mount` or one\n of the strings `\"left\"` or `\"right\"`. When loading a Flex\n 96\\-Channel Pipette (`instrument_name=\"flex_96channel_1000\"`),\n you can leave this unspecified, since it always occupies both\n mounts; if you do specify a value, it will be ignored.\n- **tip_racks** (List\\[`Labware`]) \u2013 A list of tip racks from which to pick tips when calling\n `InstrumentContext.pick_up_tip()` without arguments.\n- **replace** (_bool_')) \u2013 If `True`, replace the currently loaded instrument in\n `mount`, if any. This is intended for [advanced\n control](index.html#advanced-control) applications. You cannot\n replace an instrument in the middle of a protocol being run\n from the Opentrons App or touchscreen.\n- **liquid_presence_detection** (_bool_')) \u2013 If `True`, enable liquid presence detection for instrument. Only available on Flex robots in API Version 2\\.20 and above.\n\nNew in version 2\\.0\\.\n\nload*labware(\\_self*, _load_name: 'str'_, _location: 'Union\\[DeckLocation, OffDeckType]'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto a location.\n\nFor Opentrons\\-verified labware, this is a convenient way\nto collapse the two stages of labware initialization (creating\nthe labware and adding it to the protocol) into one.\n\nThis function returns the created and initialized labware for use\nlater in the protocol.\n\nParameters:\n\n- **load_name** (_str_')) \u2013 A string to use for looking up a labware definition.\n You can find the `load_name` for any Opentrons\\-verified labware on the\n Labware Library.\n- **location** (int or str or `OFF_DECK`) \u2013 Either a deck slot,\n like `1`, `\"1\"`, or `\"D1\"`, or the special value `OFF_DECK`.\n\nChanged in version 2\\.15: You can now specify a deck slot as a coordinate, like `\"D1\"`.\n\n- **label** (_str_')) \u2013 An optional special name to give the labware. If specified,\n this is how the labware will appear in the run log, Labware Position\n Check, and elsewhere in the Opentrons App and on the touchscreen.\n- **namespace** (_str_')) \u2013 The namespace that the labware definition belongs to.\n If unspecified, the API will automatically search two namespaces:\n\n> - `\"opentrons\"`, to load standard Opentrons labware definitions.\n> - `\"custom_beta\"`, to load custom labware definitions created with the\n> Custom Labware Creator.\n\nYou might need to specify an explicit `namespace` if you have a custom\ndefinition whose `load_name` is the same as an Opentrons\\-verified\ndefinition, and you want to explicitly choose one or the other.\n\n- **version** \u2013 The version of the labware definition.", "mimetype": "text/plain", "start_char_idx": 9538, "end_char_idx": 13290, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c808470e-fa8e-4aa1-9392-29e5e6d56841": {"__data__": {"id_": "c808470e-fa8e-4aa1-9392-29e5e6d56841", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "9cd46042-f358-4a40-81c6-18aee50f8df3", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "46513cbcfb61a131d93d2dc72892a662dd1b4d5a420cd6855933a00983dba221", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "20d7b474-fffe-481a-a28d-3393a60f7c3d", "node_type": "1", "metadata": {}, "hash": "fab792abc0227c8b5f93421b8cd06cb4f200db16dd358e2a4f6320a538d68e93", "class_name": "RelatedNodeInfo"}}, "text": "- **label** (_str_')) \u2013 An optional special name to give the labware. If specified,\n this is how the labware will appear in the run log, Labware Position\n Check, and elsewhere in the Opentrons App and on the touchscreen.\n- **namespace** (_str_')) \u2013 The namespace that the labware definition belongs to.\n If unspecified, the API will automatically search two namespaces:\n\n> - `\"opentrons\"`, to load standard Opentrons labware definitions.\n> - `\"custom_beta\"`, to load custom labware definitions created with the\n> Custom Labware Creator.\n\nYou might need to specify an explicit `namespace` if you have a custom\ndefinition whose `load_name` is the same as an Opentrons\\-verified\ndefinition, and you want to explicitly choose one or the other.\n\n- **version** \u2013 The version of the labware definition. You should normally\n leave this unspecified to let `load_labware()` choose a version\n automatically.\n- **adapter** \u2013 An adapter to load the labware on top of. Accepts the same\n values as the `load_name` parameter of `load_adapter()`. The\n adapter will use the same namespace as the labware, and the API will\n choose the adapter\u2019s version automatically.\n\n> New in version 2\\.15\\.\n\nNew in version 2\\.0\\.\n\nload*labware_by_name(\\_self*, _load_name: 'str'_, _location: 'DeckLocation'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'int' \\= 1_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.0\\.\n\nload*labware_from_definition(\\_self*, _labware_def: \"'LabwareDefinition'\"_, _location: 'Union\\[DeckLocation, OffDeckType]'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nSpecify the presence of a labware on the deck.\n\nThis function loads the labware definition specified by `labware_def`\nto the location specified by `location`.\n\nParameters:\n\n- **labware_def** \u2013 The labware\u2019s definition.\n- **location** (int or str or `OFF_DECK`) \u2013 The slot into which to load the labware,\n such as `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If specified,\n this is how the labware will appear in the run log, Labware Position\n Check, and elsewhere in the Opentrons App and on the touchscreen.\n\nNew in version 2\\.0\\.\n\nload*module(\\_self*, _module_name: 'str'_, _location: 'Optional\\[DeckLocation]' \\= None_, _configuration: 'Optional\\[str]' \\= None_) \u2192 'ModuleTypes'\nLoad a module onto the deck, given its name or model.\n\nThis is the function to call to use a module in your protocol, like\n`load_instrument()` is the method to call to use an instrument\nin your protocol. It returns the created and initialized module\ncontext, which will be a different class depending on the kind of\nmodule loaded.\n\nAfter loading modules, you can access a map of deck positions to loaded modules\nwith `loaded_modules`.\n\nParameters:\n\n- **module_name** (_str_')) \u2013 The name or model of the module.\n See Available Modules for possible values.\n- **location** (_str_') _or_ _int_') _or_ _None_) \u2013 The location of the module.\n\nThis is usually the name or number of the slot on the deck where you\nwill be placing the module, like `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n\nThe Thermocycler is only valid in one deck location.\nYou don\u2019t have to specify a location when loading it, but if you do,\nit must be `7`, `\"7\"`, or `\"B1\"`. See Thermocycler Module.\n\nChanged in version 2\\.15: You can now specify a deck slot as a coordinate, like `\"D1\"`.\n\n- **configuration** \u2013 Configure a Thermocycler to be in the `semi` position.\n This parameter does not work. Do not use it.\n\nChanged in version 2\\.14: This parameter dangerously modified the protocol\u2019s geometry system,\nand it didn\u2019t function properly, so it was removed.", "mimetype": "text/plain", "start_char_idx": 12486, "end_char_idx": 16214, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "20d7b474-fffe-481a-a28d-3393a60f7c3d": {"__data__": {"id_": "20d7b474-fffe-481a-a28d-3393a60f7c3d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c808470e-fa8e-4aa1-9392-29e5e6d56841", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ee779495a022b075b90b4bfd1dc6370be1549a36ab6397cbed7980b18f00e068", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "0c611f55-b589-4106-a22b-8cc7087cd72c", "node_type": "1", "metadata": {}, "hash": "69de617afe684e7fe6f55885fb7f31987371af54f87855f2ac618df4f4e95338", "class_name": "RelatedNodeInfo"}}, "text": "This is usually the name or number of the slot on the deck where you\nwill be placing the module, like `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n\nThe Thermocycler is only valid in one deck location.\nYou don\u2019t have to specify a location when loading it, but if you do,\nit must be `7`, `\"7\"`, or `\"B1\"`. See Thermocycler Module.\n\nChanged in version 2\\.15: You can now specify a deck slot as a coordinate, like `\"D1\"`.\n\n- **configuration** \u2013 Configure a Thermocycler to be in the `semi` position.\n This parameter does not work. Do not use it.\n\nChanged in version 2\\.14: This parameter dangerously modified the protocol\u2019s geometry system,\nand it didn\u2019t function properly, so it was removed.\n\nReturns:\nThe loaded and initialized module\u2014a\n`HeaterShakerContext`,\n`MagneticBlockContext`,\n`MagneticModuleContext`,\n`TemperatureModuleContext`, or\n`ThermocyclerContext`,\ndepending on what you requested with `module_name`.\n\nChanged in version 2\\.13: Added `HeaterShakerContext` return value.\n\nChanged in version 2\\.15: Added `MagneticBlockContext` return value.\n\nNew in version 2\\.0\\.\n\nload*trash_bin(\\_self*, _location: 'DeckLocation'_) \u2192 'TrashBin'\nLoad a trash bin on the deck of a Flex.\n\nSee Trash Bin for details.\n\nIf you try to load a trash bin on an OT\\-2, the API will raise an error.\n\nParameters:\n**location** \u2013 The deck slot where the trash bin is. The\nlocation can be any unoccupied slot in column 1 or 3\\.\n\nIf you try to load a trash bin in column 2 or 4, the API will raise an error.\n\nNew in version 2\\.16\\.\n\nload*waste_chute(\\_self*) \u2192 'WasteChute'\nLoad the waste chute on the deck of a Flex.\n\nSee Waste Chute for details, including the deck configuration\nvariants of the waste chute.\n\nThe deck plate adapter for the waste chute can only go in slot D3\\. If you try to\nload another item in slot D3 after loading the waste chute, or vice versa, the\nAPI will raise an error.\n\nNew in version 2\\.16\\.\n\n_property_ loaded_instruments*: Dict')\\[str'), InstrumentContext]*\nGet the instruments that have been loaded into the protocol.\n\nThis is a map of mount name to instruments previously loaded with\n`load_instrument()`. It does not reflect what instruments are actually\ninstalled on the robot. For example, if the robot has instruments installed on\nboth mounts but your protocol has only loaded one of them with\n`load_instrument()`, the unused one will not be included in\n`loaded_instruments`.\n\nReturns:\nA dict mapping mount name (`\"left\"` or `\"right\"`) to the\ninstrument in that mount. If a mount has no loaded instrument, that key\nwill be missing from the dict.\n\nNew in version 2\\.0\\.\n\n_property_ loaded_labwares*: Dict')\\[int'), Labware]*\nGet the labwares that have been loaded into the protocol context.\n\nSlots with nothing in them will not be present in the return value.\n\nNote\n\nIf a module is present on the deck but no labware has been loaded\ninto it with `module.load_labware()`, there will\nbe no entry for that slot in this value. That means you should not\nuse `loaded_labwares` to determine if a slot is available or not,\nonly to get a list of labwares. If you want a data structure of all\nobjects on the deck regardless of type, use `deck`.\n\nReturns:\nDict mapping deck slot number to labware, sorted in order of\nthe locations.\n\nNew in version 2\\.0\\.\n\n_property_ loaded_modules*: Dict')\\[int'), Union')\\[TemperatureModuleContext, MagneticModuleContext, ThermocyclerContext, HeaterShakerContext, MagneticBlockContext, AbsorbanceReaderContext]]*\nGet the modules loaded into the protocol context.\n\nThis is a map of deck positions to modules loaded by previous calls to\n`load_module()`. It does not reflect what modules are actually attached\nto the robot. For example, if the robot has a Magnetic Module and a Temperature\nModule attached, but the protocol has only loaded the Temperature Module with\n`load_module()`, only the Temperature Module will be included in\n`loaded_modules`.\n\nReturns:\nDict mapping slot name to module contexts. The elements may not be\nordered by slot number.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 15531, "end_char_idx": 19535, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "0c611f55-b589-4106-a22b-8cc7087cd72c": {"__data__": {"id_": "0c611f55-b589-4106-a22b-8cc7087cd72c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "20d7b474-fffe-481a-a28d-3393a60f7c3d", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "96983910b652d196239e44949ab1d8279ade7e036899e41dd91678e7c37b9e78", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "aaae4fe6-132e-47cf-8ebf-f923ede94684", "node_type": "1", "metadata": {}, "hash": "ade2e9d45911cf889f88d8ee31e09a630fb59031e06a91672b5614530ad4e6c6", "class_name": "RelatedNodeInfo"}}, "text": "Returns:\nDict mapping deck slot number to labware, sorted in order of\nthe locations.\n\nNew in version 2\\.0\\.\n\n_property_ loaded_modules*: Dict')\\[int'), Union')\\[TemperatureModuleContext, MagneticModuleContext, ThermocyclerContext, HeaterShakerContext, MagneticBlockContext, AbsorbanceReaderContext]]*\nGet the modules loaded into the protocol context.\n\nThis is a map of deck positions to modules loaded by previous calls to\n`load_module()`. It does not reflect what modules are actually attached\nto the robot. For example, if the robot has a Magnetic Module and a Temperature\nModule attached, but the protocol has only loaded the Temperature Module with\n`load_module()`, only the Temperature Module will be included in\n`loaded_modules`.\n\nReturns:\nDict mapping slot name to module contexts. The elements may not be\nordered by slot number.\n\nNew in version 2\\.0\\.\n\n_property_ max_speeds*: AxisMaxSpeeds*\nPer\\-axis speed limits for moving instruments.\n\nChanging values within this property sets the speed limit for each non\\-plunger\naxis of the robot. Note that this property only sets upper limits and can\u2019t\nexceed the physical speed limits of the movement system.\n\nThis property is a dict mapping string names of axes to float values\nof maximum speeds in mm/s. To change a speed, set that axis\u2019s value. To\nreset an axis\u2019s speed to default, delete the entry for that axis\nor assign it to `None`.\n\nSee Axis Speed Limits for examples.\n\nNote\n\nThis property is not yet supported in API version 2\\.14 or higher.\n\nNew in version 2\\.0\\.\n\nmove*labware(\\_self*, _labware: 'Labware'_, _new_location: 'Union\\[DeckLocation, Labware, ModuleTypes, OffDeckType, WasteChute]'_, _use_gripper: 'bool' \\= False_, _pick_up_offset: 'Optional\\[Mapping\\[str, float]]' \\= None_, _drop_offset: 'Optional\\[Mapping\\[str, float]]' \\= None_) \u2192 'None'\nMove a loaded labware to a new location.\n\nSee Moving Labware for more details.\n\nParameters:\n\n- **labware** \u2013 The labware to move. It should be a labware already loaded\n using `load_labware()`.\n- **new_location** \u2013 Where to move the labware to. This is either:\n\n - A deck slot like `1`, `\"1\"`, or `\"D1\"`. See Deck Slots.\n - A hardware module that\u2019s already been loaded on the deck\n with `load_module()`.\n - A labware or adapter that\u2019s already been loaded on the deck\n with `load_labware()` or `load_adapter()`.\n - The special constant `OFF_DECK`.\n\n- **use_gripper** \u2013 Whether to use the Flex Gripper for this movement.\n\n - If `True`, use the gripper to perform an automatic\n movement. This will raise an error in an OT\\-2 protocol.\n - If `False`, pause protocol execution until the user\n performs the movement. Protocol execution remains paused until\n the user presses **Confirm and resume**.\n\nGripper\\-only parameters:\n\nParameters:\n\n- **pick_up_offset** \u2013 Optional x, y, z vector offset to use when picking up labware.\n- **drop_offset** \u2013 Optional x, y, z vector offset to use when dropping off labware.\n\nBefore moving a labware to or from a hardware module, make sure that the labware\u2019s\ncurrent and new locations are accessible, i.e., open the Thermocycler lid or\nopen the Heater\\-Shaker\u2019s labware latch.\n\nNew in version 2\\.15\\.\n\n_property_ params*: Parameters*\nThe values of runtime parameters, as set during run setup.\n\nEach attribute of this object corresponds to the `variable_name` of a parameter.\nSee Using Parameters for details.\n\nParameter values can only be set during run setup. If you try to alter the value\nof any attribute of `params`, the API will raise an error.\n\nNew in version 2\\.18\\.\n\npause(_self_, _msg: 'Optional\\[str]' \\= None_) \u2192 'None'\nPause execution of the protocol until it\u2019s resumed.\n\nA human can resume the protocol in the Opentrons App or on the touchscreen.\n\nNote\n\nIn Python Protocol API version 2\\.13 and earlier, the pause will only\ntake effect on the next function call that involves moving the robot.\n\nParameters:\n**msg** (_str_')) \u2013 An optional message to show in the run log entry for the pause step.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 18676, "end_char_idx": 22676, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "aaae4fe6-132e-47cf-8ebf-f923ede94684": {"__data__": {"id_": "aaae4fe6-132e-47cf-8ebf-f923ede94684", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "5ac5dd00-55bc-4767-8291-4b198eba6fd9", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e297f205e1d9b8612bc57625ddb7f321c5a94a0275fe5fd4fa53786c6c5d39ac", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "0c611f55-b589-4106-a22b-8cc7087cd72c", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "aaa282b91645baf18ee982a5709a20503db5f63fc226c9765e385638c3cd2149", "class_name": "RelatedNodeInfo"}}, "text": "_property_ params*: Parameters*\nThe values of runtime parameters, as set during run setup.\n\nEach attribute of this object corresponds to the `variable_name` of a parameter.\nSee Using Parameters for details.\n\nParameter values can only be set during run setup. If you try to alter the value\nof any attribute of `params`, the API will raise an error.\n\nNew in version 2\\.18\\.\n\npause(_self_, _msg: 'Optional\\[str]' \\= None_) \u2192 'None'\nPause execution of the protocol until it\u2019s resumed.\n\nA human can resume the protocol in the Opentrons App or on the touchscreen.\n\nNote\n\nIn Python Protocol API version 2\\.13 and earlier, the pause will only\ntake effect on the next function call that involves moving the robot.\n\nParameters:\n**msg** (_str_')) \u2013 An optional message to show in the run log entry for the pause step.\n\nNew in version 2\\.0\\.\n\n_property_ rail_lights_on*: bool')*\nReturns `True` if the robot\u2019s ambient lighting is on.\n\nNew in version 2\\.5\\.\n\nresume(_self_) \u2192 'None'\nResume the protocol after `pause()`.\n\nDeprecated since version 2\\.12: The Python Protocol API supports no safe way for a protocol to resume itself.\nIf you\u2019re looking for a way for your protocol to resume automatically\nafter a period of time, use `delay()`.\n\nNew in version 2\\.0\\.\n\nset*rail_lights(\\_self*, _on: 'bool'_) \u2192 'None'\nControls the robot\u2019s ambient lighting (rail lights).\n\nParameters:\n**on** (_bool_')) \u2013 If `True`, turn on the lights; otherwise, turn them off.\n\nNew in version 2\\.5\\.", "mimetype": "text/plain", "start_char_idx": 21847, "end_char_idx": 23310, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4812c02a-deae-4617-a631-3d1d2681ef6d": {"__data__": {"id_": "4812c02a-deae-4617-a631-3d1d2681ef6d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "cfcb4e69-2296-491c-b649-15e9377ac385", "node_type": "1", "metadata": {}, "hash": "8f3150428eb86e58317873b88598471387a58ccc5c0de8ebb99312ce990ac010", "class_name": "RelatedNodeInfo"}}, "text": "Instruments\n\n_class_ opentrons.protocol*api.InstrumentContext(\\_core: AbstractInstrument\\AbstractWellCore]*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _broker: LegacyBroker_, _api_version: APIVersion_, _tip_racks: [List')\\[Labware]_, _trash: Optional')\\[Union')\\[Labware, TrashBin, WasteChute]]_, _requested_as: str')_)\nA context for a specific pipette or instrument.\n\nThe InstrumentContext class provides the objects, attributes, and methods that allow\nyou to use pipettes in your protocols.\n\nMethods generally fall into one of two categories.\n\n> - They can change the state of the InstrumentContext object, like how fast it\n> moves liquid or where it disposes of used tips.\n> - They can command the instrument to perform an action, like picking up tips,\n> moving to certain locations, and aspirating or dispensing liquid.\n\nObjects in this class should not be instantiated directly. Instead, instances are\nreturned by `ProtocolContext.load_instrument()`.\n\nNew in version 2\\.0\\.\n\n_property_ active_channels*: int')*\nThe number of channels the pipette will use to pick up tips.\n\nBy default, all channels on the pipette. Use `configure_nozzle_layout()`\nto set the pipette to use fewer channels.\n\nNew in version 2\\.16\\.\n\nair*gap(\\_self*, _volume: 'Optional\\[float]' \\= None_, _height: 'Optional\\[float]' \\= None_) \u2192 'InstrumentContext'\nDraw air into the pipette\u2019s tip at the current well.\n\nSee Air Gap.\n\nParameters:\n\n- **volume** (_float_')) \u2013 The amount of air, measured in \u00b5L. Calling `air_gap()` with no\n arguments uses the entire remaining volume in the pipette.\n- **height** (_float_')) \u2013 The height, in mm, to move above the current well before creating\n the air gap. The default is 5 mm above the current well.\n\nRaises:\n`UnexpectedTipRemovalError` \u2013 If no tip is attached to the pipette.\n\nRaises:\n**RuntimeError**') \u2013 If location cache is `None`. This should happen if\n`air_gap()` is called without first calling a method\nthat takes a location (e.g., `aspirate()`,\n`dispense()`)\n\nReturns:\nThis instance.\n\nNote\n\nBoth `volume` and `height` are optional, but if you want to specify only\n`height` you must do it as a keyword argument:\n`pipette.air_gap(height=2)`. If you call `air_gap` with a single,\nunnamed argument, it will always be interpreted as a volume.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\naspirate(_self_, _volume: 'Optional\\[float]' \\= None_, _location: 'Optional\\[Union\\[types.Location, labware.Well]]' \\= None_, _rate: 'float' \\= 1\\.0_) \u2192 'InstrumentContext'\nDraw liquid into a pipette tip.\n\nSee Aspirate for more details and examples.\n\nParameters:\n\n- **volume** (_int_') _or_ _float_')) \u2013 The volume to aspirate, measured in \u00b5L. If unspecified,\n defaults to the maximum volume for the pipette and its currently\n attached tip.\n\nIf `aspirate` is called with a volume of precisely 0, its behavior\ndepends on the API level of the protocol. On API levels below 2\\.16,\nit will behave the same as a volume of `None`/unspecified: aspirate\nuntil the pipette is full. On API levels at or above 2\\.16, no liquid\nwill be aspirated.\n\n- **location** \u2013 Tells the robot where to aspirate from. The location can be\n a `Well` or a `Location`.\n\n> - If the location is a `Well`, the robot will aspirate at\n> or above the bottom center of the well. The distance (in mm)\n> from the well bottom is specified by\n> `well_bottom_clearance.aspirate`.\n> - If the location is a `Location` (e.g., the result of\n> `Well.top()` or `Well.bottom()`), the robot\n> will aspirate from that specified position.\n> - If the `location` is unspecified, the robot will\n> aspirate from its current position.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3747, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "cfcb4e69-2296-491c-b649-15e9377ac385": {"__data__": {"id_": "cfcb4e69-2296-491c-b649-15e9377ac385", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "4812c02a-deae-4617-a631-3d1d2681ef6d", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "90de27aa0ca488afe481112141b0a5f33a6dd4347558c32adb41d7f82af27161", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c94276a9-98a1-4349-84d0-b78b5e8d1b7e", "node_type": "1", "metadata": {}, "hash": "0de06e24b12daad2652eb5f50209faae79e6d5077a647777970d2a63bb7ae01d", "class_name": "RelatedNodeInfo"}}, "text": "On API levels at or above 2\\.16, no liquid\nwill be aspirated.\n\n- **location** \u2013 Tells the robot where to aspirate from. The location can be\n a `Well` or a `Location`.\n\n> - If the location is a `Well`, the robot will aspirate at\n> or above the bottom center of the well. The distance (in mm)\n> from the well bottom is specified by\n> `well_bottom_clearance.aspirate`.\n> - If the location is a `Location` (e.g., the result of\n> `Well.top()` or `Well.bottom()`), the robot\n> will aspirate from that specified position.\n> - If the `location` is unspecified, the robot will\n> aspirate from its current position.\n\n- **rate** (_float_')) \u2013 A multiplier for the default flow rate of the pipette. Calculated\n as `rate` multiplied by `flow_rate.aspirate`. If not specified, defaults to 1\\.0\\. See\n Pipette Flow Rates.\n\nReturns:\nThis instance.\n\nNote\n\nIf `aspirate` is called with a single, unnamed argument, it will treat\nthat argument as `volume`. If you want to call `aspirate` with only\n`location`, specify it as a keyword argument:\n`pipette.aspirate(location=plate['A1'])`\n\nNew in version 2\\.0\\.\n\nblow*out(\\_self*, _location: 'Optional\\[Union\\[types.Location, labware.Well, TrashBin, WasteChute]]' \\= None_) \u2192 'InstrumentContext'\nBlow an extra amount of air through a pipette\u2019s tip to clear it.\n\nIf `dispense()` is used to empty a pipette, usually a small amount of\nliquid remains in the tip. During a blowout, the pipette moves the plunger\nbeyond its normal limits to help remove all liquid from the pipette tip. See\nBlow Out.\n\nParameters:\n**location** (`Well` or `Location` or `None`) \u2013 The blowout location. If no location is specified, the pipette\nwill blow out from its current position.\n\nChanged in version 2\\.16: Accepts `TrashBin` and `WasteChute` values.\n\nRaises:\n**RuntimeError**') \u2013 If no location is specified and the location cache is\n`None`. This should happen if `blow_out()` is called\nwithout first calling a method that takes a location, like\n`aspirate()` or `dispense()`.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\n_property_ channels*: int')*\nThe number of channels on the pipette.\n\nPossible values are 1, 8, or 96\\.\n\nSee also `type`.\n\nNew in version 2\\.0\\.\n\nconfigure*for_volume(\\_self*, _volume: 'float'_) \u2192 'None'\nConfigure a pipette to handle a specific volume of liquid, measured in \u00b5L.\nThe pipette enters a volume mode depending on the volume provided. Changing\npipette modes alters properties of the instance of\n`InstrumentContext`, such as default flow rate, minimum volume, and\nmaximum volume. The pipette remains in the mode set by this function until it is\ncalled again.\n\nThe Flex 1\\-Channel 50 \u00b5L and Flex 8\\-Channel 50 \u00b5L pipettes must operate in a\nlow\\-volume mode to accurately dispense very small volumes of liquid. Low\\-volume\nmode can only be set by calling `configure_for_volume()`. See\nVolume Modes.\n\nNote\n\nChanging a pipette\u2019s mode will reset its flow rates.\n\nThis function will raise an error if called when the pipette\u2019s tip contains\nliquid. It won\u2019t raise an error if a tip is not attached, but changing modes may\naffect which tips the pipette can subsequently pick up without raising an error.\n\nThis function will also raise an error if `volume` is outside of the\nminimum and maximum capacities of the pipette (e.g.,\nsetting `volume=1` for a Flex 1000 \u00b5L pipette).\n\nParameters:\n**volume** (_float_')) \u2013 The volume, in \u00b5L, that the pipette will prepare to handle.\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 3119, "end_char_idx": 6572, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c94276a9-98a1-4349-84d0-b78b5e8d1b7e": {"__data__": {"id_": "c94276a9-98a1-4349-84d0-b78b5e8d1b7e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "cfcb4e69-2296-491c-b649-15e9377ac385", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "54dc6fb3ae53080f266a1eb6827bb890924955ed6bb9bd1dc80ca3387befc5ba", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "59145c5f-26e2-4613-8df5-e10874e81f20", "node_type": "1", "metadata": {}, "hash": "1f5d7947363d02481beb161c60c9731ca4b2ed72e9e3e356d8448083d62c4c6e", "class_name": "RelatedNodeInfo"}}, "text": "Low\\-volume\nmode can only be set by calling `configure_for_volume()`. See\nVolume Modes.\n\nNote\n\nChanging a pipette\u2019s mode will reset its flow rates.\n\nThis function will raise an error if called when the pipette\u2019s tip contains\nliquid. It won\u2019t raise an error if a tip is not attached, but changing modes may\naffect which tips the pipette can subsequently pick up without raising an error.\n\nThis function will also raise an error if `volume` is outside of the\nminimum and maximum capacities of the pipette (e.g.,\nsetting `volume=1` for a Flex 1000 \u00b5L pipette).\n\nParameters:\n**volume** (_float_')) \u2013 The volume, in \u00b5L, that the pipette will prepare to handle.\n\nNew in version 2\\.15\\.\n\nconfigure*nozzle_layout(\\_self*, _style: 'NozzleLayout'_, _start: 'Optional\\[str]' \\= None_, _end: 'Optional\\[str]' \\= None_, _front_right: 'Optional\\[str]' \\= None_, _back_left: 'Optional\\[str]' \\= None_, _tip_racks: 'Optional\\[List\\[labware.Labware]]' \\= None_) \u2192 'None'\nConfigure how many tips the 8\\-channel or 96\\-channel pipette will pick up.\n\nChanging the nozzle layout will affect gantry movement for all subsequent\npipetting actions that the pipette performs. It also alters the pipette\u2019s\nbehavior for picking up tips. The pipette will continue to use the specified\nlayout until this function is called again.\n\nNote\n\nWhen picking up fewer than 96 tips at once, the tip rack _must not_ be\nplaced in a tip rack adapter in the deck. If you try to pick up fewer than 96\ntips from a tip rack that is in an adapter, the API will raise an error.\n\nParameters:\n\n- **style** (`NozzleLayout` or `None`) \u2013 The shape of the nozzle layout.\n\n - `SINGLE` sets the pipette to use 1 nozzle. This corresponds to a single of well on labware.\n - `COLUMN` sets the pipette to use 8 nozzles, aligned from front to back\n with respect to the deck. This corresponds to a column of wells on labware.\n - `PARTIAL_COLUMN` sets the pipette to use 2\\-7 nozzles, aligned from front to back\n with respect to the deck.\n - `ROW` sets the pipette to use 12 nozzles, aligned from left to right\n with respect to the deck. This corresponds to a row of wells on labware.\n - `ALL` resets the pipette to use all of its nozzles. Calling\n `configure_nozzle_layout` with no arguments also resets the pipette.\n\n- **start** (str or `None`) \u2013 The primary nozzle of the layout, which the robot uses\n to determine how it will move to different locations on the deck. The string\n should be of the same format used when identifying wells by name.\n Required unless setting `style=ALL`.\n\nNote\n\nIf possible, don\u2019t use both `start=\"A1\"` and `start=\"A12\"` to pick up\ntips _from the same rack_. Doing so can affect positional accuracy.\n\n- **end** (str or `None`) \u2013 The nozzle at the end of a linear layout, which is used\n to determine how many tips will be picked up by a pipette. The string\n should be of the same format used when identifying wells by name.\n Required when setting `style=PARTIAL_COLUMN`.\n\nNote\n\nNozzle layouts numbering between 2\\-7 nozzles, account for the distance from\n`start`. For example, 4 nozzles would require `start=\"H1\"` and `end=\"E1\"`.\n\n- **tip_racks** (List\\[`Labware`]) \u2013 Behaves the same as setting the `tip_racks` parameter of\n `load_instrument()`. If not specified, the new configuration resets\n `InstrumentContext.tip_racks` and you must specify the location\n every time you call `pick_up_tip()`.\n\nNew in version 2\\.16\\.\n\nconsolidate(_self_, _volume: 'Union\\[float_, _Sequence\\[float]]'_, _source: 'List\\[labware.Well]'_, _dest: 'labware.Well'_, _\\\\\\*args: 'Any'_, _\\\\\\*\\\\\\*kwargs: 'Any'_) \u2192 'InstrumentContext'\nMove liquid from multiple source wells to a single destination well.", "mimetype": "text/plain", "start_char_idx": 5893, "end_char_idx": 9566, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "59145c5f-26e2-4613-8df5-e10874e81f20": {"__data__": {"id_": "59145c5f-26e2-4613-8df5-e10874e81f20", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c94276a9-98a1-4349-84d0-b78b5e8d1b7e", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ee3d17cdaee944f9ec4e860d64648da04b3c57c0dcb592db214deb1fa97002d7", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "99a604e4-a110-4600-b68b-b11b0ad3538f", "node_type": "1", "metadata": {}, "hash": "f442209e02fe82e00dccd7037ac2ec19f6fe7b1bee8327f99fd4f061280d84da", "class_name": "RelatedNodeInfo"}}, "text": "For example, 4 nozzles would require `start=\"H1\"` and `end=\"E1\"`.\n\n- **tip_racks** (List\\[`Labware`]) \u2013 Behaves the same as setting the `tip_racks` parameter of\n `load_instrument()`. If not specified, the new configuration resets\n `InstrumentContext.tip_racks` and you must specify the location\n every time you call `pick_up_tip()`.\n\nNew in version 2\\.16\\.\n\nconsolidate(_self_, _volume: 'Union\\[float_, _Sequence\\[float]]'_, _source: 'List\\[labware.Well]'_, _dest: 'labware.Well'_, _\\\\\\*args: 'Any'_, _\\\\\\*\\\\\\*kwargs: 'Any'_) \u2192 'InstrumentContext'\nMove liquid from multiple source wells to a single destination well.\n\nParameters:\n\n- **volume** \u2013 The amount, in \u00b5L, to aspirate from each source well.\n- **source** \u2013 A list of wells to aspirate liquid from.\n- **dest** \u2013 A single well to dispense liquid into.\n- **kwargs** \u2013 See `transfer()` and the Complex Liquid Handling Parameters page.\n Some parameters behave differently than when transferring.\n `disposal_volume` and `mix_before` are ignored.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\n_property_ current_volume*: float')*\nThe current amount of liquid held in the pipette, measured in \u00b5L.\n\nNew in version 2\\.0\\.\n\n_property_ default_speed*: float')*\nThe speed at which the robot\u2019s gantry moves in mm/s.\n\nThe default speed for Flex varies between 300 and 350 mm/s. The OT\\-2 default is\n400 mm/s. In addition to changing the default, the speed of individual motions\ncan be changed with the `speed` argument of the\n`InstrumentContext.move_to()` method. See Gantry Speed.\n\nNew in version 2\\.0\\.\n\ndetect*liquid_presence(\\_self*, _well: 'labware.Well'_) \u2192 'bool'\nCheck if there is liquid in a well.\n\nReturns:\nA boolean.\n\nNew in version 2\\.20\\.\n\ndispense(_self_, _volume: 'Optional\\[float]' \\= None_, _location: 'Optional\\[Union\\[types.Location, labware.Well, TrashBin, WasteChute]]' \\= None_, _rate: 'float' \\= 1\\.0_, _push_out: 'Optional\\[float]' \\= None_) \u2192 'InstrumentContext'\nDispense liquid from a pipette tip.\n\nSee Dispense for more details and examples.\n\nParameters:\n\n- **volume** (_int_') _or_ _float_')) \u2013 The volume to dispense, measured in \u00b5L.\n\n - If unspecified or `None`, dispense the `current_volume`.\n - If 0, the behavior of `dispense()` depends on the API level\n of the protocol. In API version 2\\.16 and earlier, dispense all\n liquid in the pipette (same as unspecified or `None`). In API\n version 2\\.17 and later, dispense no liquid.\n - If greater than `current_volume`, the behavior of\n `dispense()` depends on the API level of the protocol. In API\n version 2\\.16 and earlier, dispense all liquid in the pipette.\n In API version 2\\.17 and later, raise an error.\n\n- **location** \u2013 Tells the robot where to dispense liquid held in the pipette.\n The location can be a `Well`, `Location`,\n `TrashBin`, or `WasteChute`.\n\n> - If a `Well`, the pipette will dispense\n> at or above the bottom center of the well. The distance (in\n> mm) from the well bottom is specified by\n> `well_bottom_clearance.dispense`. + If a `Location` (e.g., the result of\n> `Well.top()` or `Well.bottom()`), the pipette\n> will dispense at that specified position. + If a trash container, the pipette will dispense at a location\n> relative to its center and the trash container\u2019s top center.\n> See Position Relative to Trash Containers for details. + If unspecified, the pipette will\n> dispense at its current position.", "mimetype": "text/plain", "start_char_idx": 8947, "end_char_idx": 12350, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "99a604e4-a110-4600-b68b-b11b0ad3538f": {"__data__": {"id_": "99a604e4-a110-4600-b68b-b11b0ad3538f", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "59145c5f-26e2-4613-8df5-e10874e81f20", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b0a97b4c4231ebffc1a7a40e89b73e18724255351cbf3ca9c1a7f915b7dbe3a9", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "433118a8-4031-4aaf-bbdc-e0965f79997e", "node_type": "1", "metadata": {}, "hash": "723da1f602dc65108be1dd8296936ae4954ad499b6100467bcf2aeca5c782739", "class_name": "RelatedNodeInfo"}}, "text": "- **location** \u2013 Tells the robot where to dispense liquid held in the pipette.\n The location can be a `Well`, `Location`,\n `TrashBin`, or `WasteChute`.\n\n> - If a `Well`, the pipette will dispense\n> at or above the bottom center of the well. The distance (in\n> mm) from the well bottom is specified by\n> `well_bottom_clearance.dispense`. + If a `Location` (e.g., the result of\n> `Well.top()` or `Well.bottom()`), the pipette\n> will dispense at that specified position. + If a trash container, the pipette will dispense at a location\n> relative to its center and the trash container\u2019s top center.\n> See Position Relative to Trash Containers for details. + If unspecified, the pipette will\n> dispense at its current position.\n> If only a `location` is passed (e.g.,\n> `pipette.dispense(location=plate['A1'])`), all of the\n> liquid aspirated into the pipette will be dispensed (the\n> amount is accessible through `current_volume`).\n\nChanged in version 2\\.16: Accepts `TrashBin` and `WasteChute` values.\n\n- **rate** (_float_')) \u2013 How quickly a pipette dispenses liquid. The speed in \u00b5L/s is\n calculated as `rate` multiplied by `flow_rate.dispense`. If not specified, defaults to 1\\.0\\. See\n Pipette Flow Rates.\n- **push_out** (_float_')) \u2013 Continue past the plunger bottom to help ensure all liquid\n leaves the tip. Measured in \u00b5L. The default value is `None`.\n\nSee Push Out After Dispense for details.\n\nReturns:\nThis instance.\n\nNote\n\nIf `dispense` is called with a single, unnamed argument, it will treat\nthat argument as `volume`. If you want to call `dispense` with only\n`location`, specify it as a keyword argument:\n`pipette.dispense(location=plate['A1'])`.\n\nChanged in version 2\\.15: Added the `push_out` parameter.\n\nChanged in version 2\\.17: Behavior of the `volume` parameter.\n\nNew in version 2\\.0\\.\n\ndistribute(_self_, _volume: 'Union\\[float_, _Sequence\\[float]]'_, _source: 'labware.Well'_, _dest: 'List\\[labware.Well]'_, _\\\\\\*args: 'Any'_, _\\\\\\*\\\\\\*kwargs: 'Any'_) \u2192 'InstrumentContext'\nMove a volume of liquid from one source to multiple destinations.\n\nParameters:\n\n- **volume** \u2013 The amount, in \u00b5L, to dispense into each destination well.\n- **source** \u2013 A single well to aspirate liquid from.\n- **dest** \u2013 A list of wells to dispense liquid into.\n- **kwargs** \u2013 See `transfer()` and the Complex Liquid Handling Parameters page.\n Some parameters behave differently than when transferring.\n\n> - `disposal_volume` aspirates additional liquid to improve the accuracy\n> of each dispense. Defaults to the minimum volume of the pipette. See\n> Disposal Volume for details.\n> - `mix_after` is ignored.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\ndrop*tip(\\_self*, _location: 'Optional\\[Union\\[types.Location, labware.Well, TrashBin, WasteChute]]' \\= None_, _home_after: 'Optional\\[bool]' \\= None_) \u2192 'InstrumentContext'\nDrop the current tip.\n\nSee Dropping a Tip for examples.\n\nIf no location is passed (e.g. `pipette.drop_tip()`), the pipette will drop\nthe attached tip into its `trash_container`.\n\nThe location in which to drop the tip can be manually specified with the\n`location` argument. The `location` argument can be specified in several\nways:\n\n> - As a `Well`. This uses a default location relative to the well.\n> This style of call can be used to make the robot drop a tip into labware\n> like a well plate or a reservoir. For example,\n> `pipette.drop_tip(location=reservoir[\"A1\"])`.\n> - As a `Location`. For example, to drop a tip from an\n> unusually large height above the tip rack, you could call\n> `pipette.drop_tip(tip_rack[\"A1\"].top(z=10))`.\n> - As a `TrashBin`.", "mimetype": "text/plain", "start_char_idx": 11610, "end_char_idx": 15235, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "433118a8-4031-4aaf-bbdc-e0965f79997e": {"__data__": {"id_": "433118a8-4031-4aaf-bbdc-e0965f79997e", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "99a604e4-a110-4600-b68b-b11b0ad3538f", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "17876b18379a8c2d05505aed5e57c91dd1cac0ec4a56950c036ed35543a07276", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4", "node_type": "1", "metadata": {}, "hash": "3bc33ba7c87d2dfafeb8d121853bb1b410c25948397fcab15cd6e5298ba0264b", "class_name": "RelatedNodeInfo"}}, "text": "If no location is passed (e.g. `pipette.drop_tip()`), the pipette will drop\nthe attached tip into its `trash_container`.\n\nThe location in which to drop the tip can be manually specified with the\n`location` argument. The `location` argument can be specified in several\nways:\n\n> - As a `Well`. This uses a default location relative to the well.\n> This style of call can be used to make the robot drop a tip into labware\n> like a well plate or a reservoir. For example,\n> `pipette.drop_tip(location=reservoir[\"A1\"])`.\n> - As a `Location`. For example, to drop a tip from an\n> unusually large height above the tip rack, you could call\n> `pipette.drop_tip(tip_rack[\"A1\"].top(z=10))`.\n> - As a `TrashBin`. This uses a default location relative to the\n> `TrashBin` object. For example,\n> `pipette.drop_tip(location=trash_bin)`.\n> - As a `WasteChute`. This uses a default location relative to\n> the `WasteChute` object. For example,\n> `pipette.drop_tip(location=waste_chute)`.\n\nIn API versions 2\\.15 to 2\\.17, if `location` is a `TrashBin` or not\nspecified, the API will instruct the pipette to drop tips in different locations\nwithin the bin. Varying the tip drop location helps prevent tips\nfrom piling up in a single location.\n\nStarting with API version 2\\.18, the API will only vary the tip drop location if\n`location` is not specified. Specifying a `TrashBin` as the `location`\nbehaves the same as specifying `TrashBin.top()`, which is a fixed position.\n\nParameters:\n\n- **location** (`Location` or `Well` or `None`) \u2013 Where to drop the tip.\n\nChanged in version 2\\.16: Accepts `TrashBin` and `WasteChute` values.\n\n- **home_after** \u2013 Whether to home the pipette\u2019s plunger after dropping the tip. If not\n specified, defaults to `True` on an OT\\-2\\.\n\nWhen `False`, the pipette does not home its plunger. This can save a few\nseconds, but is not recommended. Homing helps the robot track the pipette\u2019s\nposition.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\n_property_ flow_rate*: FlowRates*\nThe speeds, in \u00b5L/s, configured for the pipette.\n\nSee Pipette Flow Rates.\n\nThis is an object with attributes `aspirate`, `dispense`, and `blow_out`\nholding the flow rate for the corresponding operation.\n\nNote\n\nSetting values of `speed`, which is deprecated, will override the\nvalues in `flow_rate`.\n\nNew in version 2\\.0\\.\n\n_property_ has_tip*: bool')*\nWhether this instrument has a tip attached or not.\n\nThe value of this property is determined logically by the API, not by detecting\nthe physical presence of a tip. This is the case even on Flex, which has sensors\nto detect tip attachment.\n\nNew in version 2\\.7\\.\n\nhome(_self_) \u2192 'InstrumentContext'\nHome the robot.\n\nSee Homing.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\nhome*plunger(\\_self*) \u2192 'InstrumentContext'\nHome the plunger associated with this mount.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\n_property_ hw_pipette*: PipetteDict*\nView the information returned by the hardware API directly.\n\nRaises:\n`types.PipetteNotAttachedError` if the pipette is\nno longer attached (should not happen).\n\nNew in version 2\\.0\\.\n\n_property_ liquid_presence_detection*: bool')*\nGets the global setting for liquid level detection.\n\nWhen True, liquid_probe will be called before\naspirates and dispenses to bring the tip to the liquid level.\n\nThe default value is False.\n\nNew in version 2\\.20\\.\n\n_property_ max_volume*: float')*\nThe maximum volume, in \u00b5L, that the pipette can hold.\n\nThe maximum volume that you can actually aspirate might be lower than this,\ndepending on what kind of tip is attached to this pipette. For example, a P300\nSingle\\-Channel pipette always has a `max_volume` of 300 \u00b5L, but if it\u2019s using\na 200 \u00b5L filter tip, its usable volume would be limited to 200 \u00b5L.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 14526, "end_char_idx": 18290, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4": {"__data__": {"id_": "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "433118a8-4031-4aaf-bbdc-e0965f79997e", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "14cf2af61e50ea8e3d7c43c5a8bcf9ca76d4fb3de58dbf94066c1009f4df6a77", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ee7b7752-6013-4fc6-90c6-cb1559acf82a", "node_type": "1", "metadata": {}, "hash": "05f00356e09d9ded31a4a0342c10a95d9a1d7467cafadc95bf42dd6f2077b456", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.0\\.\n\n_property_ liquid_presence_detection*: bool')*\nGets the global setting for liquid level detection.\n\nWhen True, liquid_probe will be called before\naspirates and dispenses to bring the tip to the liquid level.\n\nThe default value is False.\n\nNew in version 2\\.20\\.\n\n_property_ max_volume*: float')*\nThe maximum volume, in \u00b5L, that the pipette can hold.\n\nThe maximum volume that you can actually aspirate might be lower than this,\ndepending on what kind of tip is attached to this pipette. For example, a P300\nSingle\\-Channel pipette always has a `max_volume` of 300 \u00b5L, but if it\u2019s using\na 200 \u00b5L filter tip, its usable volume would be limited to 200 \u00b5L.\n\nNew in version 2\\.0\\.\n\n_property_ min_volume*: float')*\nThe minimum volume, in \u00b5L, that the pipette can hold. This value may change\nbased on the volume mode that the pipette is\ncurrently configured for.\n\nNew in version 2\\.0\\.\n\nmix(_self_, _repetitions: 'int' \\= 1_, _volume: 'Optional\\[float]' \\= None_, _location: 'Optional\\[Union\\[types.Location, labware.Well]]' \\= None_, _rate: 'float' \\= 1\\.0_) \u2192 'InstrumentContext'\nMix a volume of liquid by repeatedly aspirating and dispensing it in a single location.\n\nSee Mix for examples.\n\nParameters:\n\n- **repetitions** \u2013 Number of times to mix (default is 1\\).\n- **volume** \u2013 The volume to mix, measured in \u00b5L. If unspecified, defaults\n to the maximum volume for the pipette and its attached tip.\n\nIf `mix` is called with a volume of precisely 0, its behavior\ndepends on the API level of the protocol. On API levels below 2\\.16,\nit will behave the same as a volume of `None`/unspecified: mix\nthe full working volume of the pipette. On API levels at or above 2\\.16,\nno liquid will be mixed.\n\n- **location** \u2013 The `Well` or `Location` where the\n pipette will mix. If unspecified, the pipette will mix at its\n current position.\n- **rate** \u2013 How quickly the pipette aspirates and dispenses liquid while\n mixing. The aspiration flow rate is calculated as `rate`\n multiplied by `flow_rate.aspirate`. The\n dispensing flow rate is calculated as `rate` multiplied by\n `flow_rate.dispense`. See\n Pipette Flow Rates.\n\nRaises:\n`UnexpectedTipRemovalError` \u2013 If no tip is attached to the pipette.\n\nReturns:\nThis instance.\n\nNote\n\nAll the arguments of `mix` are optional. However, if you omit one of them,\nall subsequent arguments must be passed as keyword arguments. For instance,\n`pipette.mix(1, location=wellplate['A1'])` is a valid call, but\n`pipette.mix(1, wellplate['A1'])` is not.\n\nNew in version 2\\.0\\.\n\n_property_ model*: str')*\nThe model string for the pipette (e.g., `'p300_single_v1.3'`)\n\nNew in version 2\\.0\\.\n\n_property_ mount*: str')*\nReturn the name of the mount the pipette is attached to.\n\nThe possible names are `\"left\"` and `\"right\"`.\n\nNew in version 2\\.0\\.\n\nmove*to(\\_self*, _location: 'Union\\[types.Location, TrashBin, WasteChute]'_, _force_direct: 'bool' \\= False_, _minimum_z_height: 'Optional\\[float]' \\= None_, _speed: 'Optional\\[float]' \\= None_, _publish: 'bool' \\= True_) \u2192 'InstrumentContext'\nMove the instrument.\n\nSee Move To for examples.\n\nParameters:\n\n- **location** (`Location`) \u2013 Where to move to.\n\nChanged in version 2\\.16: Accepts `TrashBin` and `WasteChute` values.\n\n- **force_direct** \u2013 If `True`, move directly to the destination without arc\n motion.\n\nWarning\n\nForcing direct motion can cause the pipette to crash\ninto labware, modules, or other objects on the deck.\n\n- **minimum_z_height** \u2013 An amount, measured in mm, to raise the mid\\-arc height.\n The mid\\-arc height can\u2019t be lowered.\n- **speed** \u2013 The speed at which to move. By default,\n `InstrumentContext.default_speed`.", "mimetype": "text/plain", "start_char_idx": 17594, "end_char_idx": 21228, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ee7b7752-6013-4fc6-90c6-cb1559acf82a": {"__data__": {"id_": "ee7b7752-6013-4fc6-90c6-cb1559acf82a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d2d480a388e99d2b8c683b44086e9b348b5d295fee7518f79ecffe9f6e7e18e2", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "a4c2e637-bf95-40cb-b4de-78de8b49b6b9", "node_type": "1", "metadata": {}, "hash": "1cb28d7a826a5b9544eba08185afd4c9f88b4fc644ffaea8c8d9cdb36b22057c", "class_name": "RelatedNodeInfo"}}, "text": "See Move To for examples.\n\nParameters:\n\n- **location** (`Location`) \u2013 Where to move to.\n\nChanged in version 2\\.16: Accepts `TrashBin` and `WasteChute` values.\n\n- **force_direct** \u2013 If `True`, move directly to the destination without arc\n motion.\n\nWarning\n\nForcing direct motion can cause the pipette to crash\ninto labware, modules, or other objects on the deck.\n\n- **minimum_z_height** \u2013 An amount, measured in mm, to raise the mid\\-arc height.\n The mid\\-arc height can\u2019t be lowered.\n- **speed** \u2013 The speed at which to move. By default,\n `InstrumentContext.default_speed`. This controls the\n straight linear speed of the motion. To limit individual axis\n speeds, use `ProtocolContext.max_speeds`.\n- **publish** \u2013 Whether to list this function call in the run preview.\n Default is `True`.\n\nNew in version 2\\.0\\.\n\n_property_ name*: str')*\nThe name string for the pipette (e.g., `\"p300_single\"`).\n\nNew in version 2\\.0\\.\n\npick*up_tip(\\_self*, _location: 'Union\\[types.Location, labware.Well, labware.Labware, None]' \\= None_, _presses: 'Optional\\[int]' \\= None_, _increment: 'Optional\\[float]' \\= None_, _prep_after: 'Optional\\[bool]' \\= None_) \u2192 'InstrumentContext'\nPick up a tip for the pipette to run liquid\\-handling commands.\n\nSee Picking Up a Tip.\n\nIf no location is passed, the pipette will pick up the next available tip in its\n`tip_racks` list. Within each tip rack, tips will\nbe picked up in the order specified by the labware definition and\n`Labware.wells()`. To adjust where the sequence starts, use\n`starting_tip`.\n\nThe exact position for tip pickup accounts for the length of the tip and how\nmuch the tip overlaps with the pipette nozzle. These measurements are fixed\nvalues on Flex, and are based on the results of tip length calibration on OT\\-2\\.\n\nNote\n\nAPI version 2\\.19 updates the tip overlap values for Flex. When updating a\nprotocol from 2\\.18 (or lower) to 2\\.19 (or higher), pipette performance\nshould improve without additional changes to your protocol. Nevertheless, it\nis good practice after updating to do the following:\n\n- Run Labware Position Check.\n- Perform a dry run of your protocol.\n- If tip position is slightly higher than expected, adjust the `location`\n parameter of pipetting actions to achieve the desired result.\n\nParameters:\n\n- **location** (`Well` or `Labware` or `types.Location`) \u2013 The location from which to pick up a tip. The `location`\n argument can be specified in several ways:\n\n> - As a `Well`. For example,\n> `pipette.pick_up_tip(tiprack.wells()[0])` will always pick\n> up the first tip in `tiprack`, even if the rack is not a\n> member of `InstrumentContext.tip_racks`.\n> - As a labware. `pipette.pick_up_tip(tiprack)` will pick up\n> the next available tip in `tiprack`, even if the rack is\n> not a member of `InstrumentContext.tip_racks`.\n> - As a `Location`. Use this to make fine\n> adjustments to the pickup location. For example, to tell\n> the robot to start its pick up tip routine 1 mm closer to\n> the top of the well in the tip rack, call\n> `pipette.pick_up_tip(tiprack[\"A1\"].top(z=-1))`.\n\n- **presses** (_int_')) \u2013 The number of times to lower and then raise the pipette when\n picking up a tip, to ensure a good seal. Zero (`0`) will\n result in the pipette hovering over the tip but not picking it\n up (generally not desirable, but could be used for a dry run).\n\n> Deprecated since version 2\\.14: Use the Opentrons App to change pipette pick\\-up settings.\n\n- **increment** (_float_')) \u2013 The additional distance to travel on each successive press.\n For example, if `presses=3` and `increment=1.0`, then the\n first press will travel down into the tip by 3\\.5 mm, the\n second by 4\\.5 mm, and the third by 5\\.5 mm).", "mimetype": "text/plain", "start_char_idx": 20652, "end_char_idx": 24369, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a4c2e637-bf95-40cb-b4de-78de8b49b6b9": {"__data__": {"id_": "a4c2e637-bf95-40cb-b4de-78de8b49b6b9", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ee7b7752-6013-4fc6-90c6-cb1559acf82a", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "16a4dad093331449e6c90fff5977584feedc93f228a482b59a88cd897caa70ea", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "ebe419bd-5a6e-41f3-8c29-1522cbb5495b", "node_type": "1", "metadata": {}, "hash": "0bbe438edbc7c6376713ce56c6c8555abbaed105038dbdaca19a52ebf71d2f8a", "class_name": "RelatedNodeInfo"}}, "text": "- **presses** (_int_')) \u2013 The number of times to lower and then raise the pipette when\n picking up a tip, to ensure a good seal. Zero (`0`) will\n result in the pipette hovering over the tip but not picking it\n up (generally not desirable, but could be used for a dry run).\n\n> Deprecated since version 2\\.14: Use the Opentrons App to change pipette pick\\-up settings.\n\n- **increment** (_float_')) \u2013 The additional distance to travel on each successive press.\n For example, if `presses=3` and `increment=1.0`, then the\n first press will travel down into the tip by 3\\.5 mm, the\n second by 4\\.5 mm, and the third by 5\\.5 mm).\n\n> Deprecated since version 2\\.14: Use the Opentrons App to change pipette pick\\-up settings.\n\n- **prep_after** (_bool_')) \u2013 Whether the pipette plunger should prepare itself to aspirate\n immediately after picking up a tip.\n\nIf `True`, the pipette will move its plunger position to\nbottom in preparation for any following calls to\n`aspirate()`.\n\nIf `False`, the pipette will prepare its plunger later,\nduring the next call to `aspirate()`. This is\naccomplished by moving the tip to the top of the well, and\npositioning the plunger outside any potential liquids.\n\nWarning\n\nThis is provided for compatibility with older Python\nProtocol API behavior. You should normally leave this\nunset.\n\nSetting `prep_after=False` may create an unintended\npipette movement, when the pipette automatically moves\nthe tip to the top of the well to prepare the plunger.\n\nChanged in version 2\\.13: Adds the `prep_after` argument. In version 2\\.12 and earlier, the plunger\ncan\u2019t prepare itself for aspiration during `pick_up_tip()`, and will\ninstead always prepare during `aspirate()`. Version 2\\.12 and earlier\nwill raise an `APIVersionError` if a value is set for `prep_after`.\n\nChanged in version 2\\.19: Uses new values for how much a tip overlaps with the pipette nozzle.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\nprepare*to_aspirate(\\_self*) \u2192 'None'\nPrepare a pipette for aspiration.\n\nBefore a pipette can aspirate into an empty tip, the plunger must be in its\nbottom position. After dropping a tip or blowing out, the plunger will be in a\ndifferent position. This function moves the plunger to the bottom position,\nregardless of its current position, to make sure that the pipette is ready to\naspirate.\n\nYou rarely need to call this function. The API automatically prepares the\npipette for aspiration as part of other commands:\n\n> - After picking up a tip with `pick_up_tip()`.\n> - When calling `aspirate()`, if the pipette isn\u2019t already prepared.\n> If the pipette is in a well, it will move out of the well, move the plunger,\n> and then move back.\n\nUse `prepare_to_aspirate` when you need to control exactly when the plunger\nmotion will happen. A common use case is a pre\\-wetting routine, which requires\npreparing for aspiration, moving into a well, and then aspirating _without\nleaving the well_:\n\n```\npipette.move_to(well.bottom(z=2))\npipette.delay(5)\npipette.mix(10, 10)\npipette.move_to(well.top(z=5))\npipette.blow_out()\npipette.prepare_to_aspirate()\npipette.move_to(well.bottom(z=2))\npipette.delay(5)\npipette.aspirate(10, well.bottom(z=2))\n\n```\n\nThe call to `prepare_to_aspirate()` means that the plunger will be in the\nbottom position before the call to `aspirate()`. Since it doesn\u2019t need to\nprepare again, it will not move up out of the well to move the plunger. It will\naspirate in place.\n\nNew in version 2\\.16\\.\n\nrequire*liquid_presence(\\_self*, _well: 'labware.Well'_) \u2192 'None'\nIf there is no liquid in a well, raise an error.\n\nReturns:\nNone.\n\nNew in version 2\\.20\\.\n\nreset*tipracks(\\_self*) \u2192 'None'\nReload all tips in each tip rack and reset the starting tip.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 23741, "end_char_idx": 27462, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "ebe419bd-5a6e-41f3-8c29-1522cbb5495b": {"__data__": {"id_": "ebe419bd-5a6e-41f3-8c29-1522cbb5495b", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a4c2e637-bf95-40cb-b4de-78de8b49b6b9", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "6068e8d42e7a824307b827c994e6e6b7a5e9984521b9f3ca0c33a04f15080f45", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1abdb350-e5f4-4c81-942a-1105d3053d74", "node_type": "1", "metadata": {}, "hash": "a698418784a119fb29f436f27ce893efb0b88bdccaea780df94ee44ea0e4660a", "class_name": "RelatedNodeInfo"}}, "text": "Since it doesn\u2019t need to\nprepare again, it will not move up out of the well to move the plunger. It will\naspirate in place.\n\nNew in version 2\\.16\\.\n\nrequire*liquid_presence(\\_self*, _well: 'labware.Well'_) \u2192 'None'\nIf there is no liquid in a well, raise an error.\n\nReturns:\nNone.\n\nNew in version 2\\.20\\.\n\nreset*tipracks(\\_self*) \u2192 'None'\nReload all tips in each tip rack and reset the starting tip.\n\nNew in version 2\\.0\\.\n\n_property_ return_height*: float')*\nThe height to return a tip to its tip rack.\n\nReturns:\nA scaling factor to apply to the tip length.\nDuring `drop_tip()`, this factor is multiplied by the tip\nlength to get the distance from the top of the well to drop the tip.\n\nNew in version 2\\.2\\.\n\nreturn*tip(\\_self*, _home_after: 'Optional\\[bool]' \\= None_) \u2192 'InstrumentContext'\nDrop the currently attached tip in its original location in the tip rack.\n\nReturning a tip does not reset tip tracking, so `Well.has_tip` will\nremain `False` for the destination.\n\nReturns:\nThis instance.\n\nParameters:\n**home_after** \u2013 See the `home_after` parameter of `drop_tip()`.\n\nNew in version 2\\.0\\.\n\n_property_ speed*: PlungerSpeeds*\nThe speeds (in mm/s) configured for the pipette plunger.\n\nThis is an object with attributes `aspirate`, `dispense`, and `blow_out`\nholding the plunger speeds for the corresponding operation.\n\nNote\n\nSetting values of `flow_rate` will override the values in\n`speed`.\n\nChanged in version 2\\.14: This property has been removed because it\u2019s fundamentally misaligned with\nthe step\\-wise nature of a pipette\u2019s plunger speed configuration. Use\n`flow_rate` instead.\n\nNew in version 2\\.0\\.\n\n_property_ starting_tip*: Optional')\\[Well]*\nWhich well of a tip rack the pipette should start at when automatically choosing tips to pick up.\n\nSee `pick_up_tip()`.\n\nNote\n\nIn robot software versions 6\\.3\\.0 and 6\\.3\\.1, protocols specifying API level\n2\\.14 ignored `starting_tip` on the second and subsequent calls to\n`InstrumentContext.pick_up_tip()` with no argument. This is fixed\nfor all API levels as of robot software version 7\\.0\\.0\\.\n\nNew in version 2\\.0\\.\n\n_property_ tip_racks*: List')\\[Labware]*\nThe tip racks that have been linked to this pipette.\n\nThis is the property used to determine which tips to pick up next when calling\n`pick_up_tip()` without arguments. See Picking Up a Tip.\n\nNew in version 2\\.0\\.\n\ntouch*tip(\\_self*, _location: 'Optional\\[labware.Well]' \\= None_, _radius: 'float' \\= 1\\.0_, _v_offset: 'float' \\= \\- 1\\.0_, _speed: 'float' \\= 60\\.0_) \u2192 'InstrumentContext'\nTouch the pipette tip to the sides of a well, with the intent of removing leftover droplets.\n\nSee Touch Tip for more details and examples.\n\nParameters:\n\n- **location** (`Well` or `None`) \u2013 If no location is passed, the pipette will touch its tip at the\n edges of the current well.\n- **radius** (_float_')) \u2013 How far to move, as a proportion of the target well\u2019s radius.\n When `radius=1.0`, the pipette tip will move all the way to the\n edge of the target well. When `radius=0.5`, it will move to 50%\n of the well\u2019s radius. Default is 1\\.0 (100%)\n- **v_offset** (_float_')) \u2013 How far above or below the well to touch the tip, measured in mm.\n A positive offset moves the tip higher above the well.\n A negative offset moves the tip lower into the well.\n Default is \\-1\\.0 mm.\n- **speed** (_float_')) \u2013 The speed for touch tip motion, in mm/s.\n\n - Default: 60\\.0 mm/s\n - Maximum: 80\\.0 mm/s\n - Minimum: 1\\.0 mm/s\n\nRaises:\n`UnexpectedTipRemovalError` \u2013 If no tip is attached to the pipette.\n\nRaises:\n**RuntimeError**') \u2013 If no location is specified and the location cache is\n`None`.", "mimetype": "text/plain", "start_char_idx": 27041, "end_char_idx": 30637, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1abdb350-e5f4-4c81-942a-1105d3053d74": {"__data__": {"id_": "1abdb350-e5f4-4c81-942a-1105d3053d74", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "ebe419bd-5a6e-41f3-8c29-1522cbb5495b", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "958839c2d3a5489f613693566dbe3df494e791d93e43035201e87d7a73447373", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f3b48282-6282-4419-9b67-287f8516f532", "node_type": "1", "metadata": {}, "hash": "322b6be14366210fec60370b76f1b1076cba13b2d48f29a8e70b13b95075982c", "class_name": "RelatedNodeInfo"}}, "text": "When `radius=0.5`, it will move to 50%\n of the well\u2019s radius. Default is 1\\.0 (100%)\n- **v_offset** (_float_')) \u2013 How far above or below the well to touch the tip, measured in mm.\n A positive offset moves the tip higher above the well.\n A negative offset moves the tip lower into the well.\n Default is \\-1\\.0 mm.\n- **speed** (_float_')) \u2013 The speed for touch tip motion, in mm/s.\n\n - Default: 60\\.0 mm/s\n - Maximum: 80\\.0 mm/s\n - Minimum: 1\\.0 mm/s\n\nRaises:\n`UnexpectedTipRemovalError` \u2013 If no tip is attached to the pipette.\n\nRaises:\n**RuntimeError**') \u2013 If no location is specified and the location cache is\n`None`. This should happen if `touch_tip` is called\nwithout first calling a method that takes a location, like\n`aspirate()` or `dispense()`.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\ntransfer(_self_, _volume: 'Union\\[float_, _Sequence\\[float]]'_, _source: 'AdvancedLiquidHandling'_, _dest: 'AdvancedLiquidHandling'_, _trash: 'bool' \\= True_, _\\\\\\*\\\\\\*kwargs: 'Any'_) \u2192 'InstrumentContext'\nMove liquid from one well or group of wells to another.\n\nTransfer is a higher\\-level command, incorporating other\n`InstrumentContext` commands, like `aspirate()` and\n`dispense()`. It makes writing a protocol easier at the cost of\nspecificity. See Complex Commands for details on how transfer and\nother complex commands perform their component steps.\n\nParameters:\n\n- **volume** \u2013 The amount, in \u00b5L, to aspirate from each source and dispense to\n each destination. If `volume` is a list, each amount will be\n used for the source and destination at the matching index. A list\n item of `0` will skip the corresponding wells entirely. See\n List of Volumes for details and examples.\n- **source** \u2013 A single well or a list of wells to aspirate liquid from.\n- **dest** \u2013 A single well or a list of wells to dispense liquid into.\n\nKeyword Arguments:\nTransfer accepts a number of optional parameters that give\nyou greater control over the exact steps it performs. See\nComplex Liquid Handling Parameters or the links under each argument\u2019s entry below for\nadditional details and examples.\n\n- **new_tip** (_string_) \u2013\n When to pick up and drop tips during the command. Defaults to `\"once\"`.\n\n> - `\"once\"`: Use one tip for the entire command.\n> - `\"always\"`: Use a new tip for each set of aspirate and dispense steps.\n> - `\"never\"`: Do not pick up or drop tips at all.\n\nSee Tip Handling for details.\n\n- **trash** (_boolean_) \u2013\n If `True` (default), the pipette will drop tips in its\n `trash_container()`.\n If `False`, the pipette will return tips to their tip rack.\n\nSee Trash Tips for details.\n\n- **touch_tip** (_boolean_) \u2013\n If `True`, perform a `touch_tip()` following each\n `aspirate()` and `dispense()`. Defaults to `False`.\n\nSee Touch Tip for details.\n\n- **blow_out** (_boolean_) \u2013\n If `True`, a `blow_out()` will occur following each\n `dispense()`, but only if the pipette has no liquid left\n in it. If `False` (default), the pipette will not blow out liquid.\n\nSee Blow Out for details.\n\n- **blowout_location** (_string_) \u2013\n Accepts one of three string values: `\"trash\"`, `\"source well\"`, or\n `\"destination well\"`.\n\nIf `blow_out` is `False` (its default), this parameter is ignored.\n\nIf `blow_out` is `True` and this parameter is not set:\n\n> - Blow out into the trash, if the pipette is empty or only contains the\n> disposal volume.\n> - Blow out into the source well, if the pipette otherwise contains liquid.\n\n- **mix_before** (_tuple_) \u2013\n Perform a `mix()` before each `aspirate()` during the\n transfer. The first value of the tuple is the number of repetitions, and\n the second value is the amount of liquid to mix in \u00b5L.\n\nSee Mix Before for details.", "mimetype": "text/plain", "start_char_idx": 30013, "end_char_idx": 33697, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f3b48282-6282-4419-9b67-287f8516f532": {"__data__": {"id_": "f3b48282-6282-4419-9b67-287f8516f532", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "130dd014-0595-4e8d-bce0-9a555e767c16", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a7c81847093aaa243bf266448ab81c1e71f0e4b75bc60769af6c579e197b8e3d", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1abdb350-e5f4-4c81-942a-1105d3053d74", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e4bcdb1b61e2bf23454b397fa6b8f0fd51df7fa9a70e2eadbd6abdbdec979ba2", "class_name": "RelatedNodeInfo"}}, "text": "See Blow Out for details.\n\n- **blowout_location** (_string_) \u2013\n Accepts one of three string values: `\"trash\"`, `\"source well\"`, or\n `\"destination well\"`.\n\nIf `blow_out` is `False` (its default), this parameter is ignored.\n\nIf `blow_out` is `True` and this parameter is not set:\n\n> - Blow out into the trash, if the pipette is empty or only contains the\n> disposal volume.\n> - Blow out into the source well, if the pipette otherwise contains liquid.\n\n- **mix_before** (_tuple_) \u2013\n Perform a `mix()` before each `aspirate()` during the\n transfer. The first value of the tuple is the number of repetitions, and\n the second value is the amount of liquid to mix in \u00b5L.\n\nSee Mix Before for details.\n\n- **mix_after** (_tuple_) \u2013\n Perform a `mix()` after each `dispense()` during the\n transfer. The first value of the tuple is the number of repetitions, and\n the second value is the amount of liquid to mix in \u00b5L.\n\nSee Mix After for details.\n\n- **disposal_volume** (_float_) \u2013\n Transfer ignores the numeric value of this parameter. If set, the pipette\n will not aspirate additional liquid, but it will perform a very small blow\n out after each dispense.\n\nSee Disposal Volume for details.\n\nReturns:\nThis instance.\n\nNew in version 2\\.0\\.\n\n_property_ trash_container*: Union')\\[Labware, TrashBin, WasteChute]*\nThe trash container associated with this pipette.\n\nThis is the property used to determine where to drop tips and blow out liquids\nwhen calling `drop_tip()` or `blow_out()` without arguments.\n\nYou can set this to a `Labware`, `TrashBin`, or `WasteChute`.\n\nThe default value depends on the robot type and API version:\n\n- `ProtocolContext.fixed_trash`, if it exists.\n- Otherwise, the first item previously loaded with\n `ProtocolContext.load_trash_bin()` or\n `ProtocolContext.load_waste_chute()`.\n\nChanged in version 2\\.16: Added support for `TrashBin` and `WasteChute` objects.\n\nNew in version 2\\.0\\.\n\n_property_ type*: str')*\n`'single'` if this is a 1\\-channel pipette, or `'multi'` otherwise.\n\nSee also `channels`, which can distinguish between 8\\-channel and 96\\-channel\npipettes.\n\nNew in version 2\\.0\\.\n\n_property_ well_bottom_clearance*: Clearances*\nThe distance above the bottom of a well to aspirate or dispense.\n\nThis is an object with attributes `aspirate` and `dispense`, describing the\ndefault height of the corresponding operation. The default is 1\\.0 mm for both\naspirate and dispense.\n\nWhen `aspirate()` or `dispense()` is given a `Well`\nrather than a full `Location`, the robot will move this distance\nabove the bottom of the well to aspirate or dispense.\n\nTo change, set the corresponding attribute:\n\n```\npipette.well_bottom_clearance.aspirate = 2\n\n```\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 32996, "end_char_idx": 35700, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "55820e72-350c-4d01-97be-cdc60036974a": {"__data__": {"id_": "55820e72-350c-4d01-97be-cdc60036974a", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd6ca8ff0fc99626577d4ad165d7a337317d507e5e03b4866ac80d41287acb9c", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee", "node_type": "1", "metadata": {}, "hash": "5d6e22d43bdf68ca24b7820d1529e1ae252d2a1feba21ca7c9a52956f4c63d4a", "class_name": "RelatedNodeInfo"}}, "text": "Labware\n\n_class_ opentrons.protocol*api.Labware(\\_core: AbstractLabware\\[Any]*, _api_version: APIVersion_, _protocol_core: ProtocolCore_, _core_map: LoadedCoreMap_)\nThis class represents a piece of labware.\n\nLabware available in the API generally fall under two categories.\n\n> - Consumable labware: well plates, tubes in racks, reservoirs, tip racks, etc.\n> - Adapters: durable items that hold other labware, either on modules or directly\n> on the deck.\n\nThe `Labware` class defines the physical geometry of the labware\nand provides methods for accessing wells within the labware.\n\nCreate `Labware` objects by calling the appropriate `load_labware()` method,\ndepending on where you are loading the labware. For example, to load labware on a\nThermocycler Module, use `ThermocyclerContext.load_labware()`. To load\nlabware directly on the deck, use `ProtocolContext.load_labware()`. See\nLoading Labware.\n\n_property_ api_version*: APIVersion*\nSee `ProtocolContext.api_version`.\n\nNew in version 2\\.0\\.\n\n_property_ calibrated_offset*: Point*\nThe front\\-left\\-bottom corner of the labware, including its labware offset.\n\nWhen running a protocol in the Opentrons App or on the touchscreen, Labware\nPosition Check sets the labware offset.\n\nNew in version 2\\.0\\.\n\n_property_ child*: Optional')\\[Labware]*\nThe labware (if any) present on this labware.\n\nNew in version 2\\.15\\.\n\ncolumns(_self_, _\\\\\\*args: 'Union\\[int_, _str]'_) \u2192 'List\\[List\\[Well]]'\nAccessor function to navigate through a labware by column.\n\nUse indexing to access individual columns or wells contained in the nested list.\nFor example, access column 1 with `labware.columns()[0]`.\nOn a standard 96\\-well plate, this will output a list of `Well`\nobjects containing A1 through H1\\.\n\nNote\n\nUsing args with this method is deprecated. Use indexing instead.\n\nIf your code uses args, they can be either strings or integers, but not a\nmix of the two. For example, `.columns(1, 4)` or `.columns(\"1\", \"4\")` is\nvalid, but `.columns(\"1\", 4)` is not.\n\nReturns:\nA list of column lists.\n\nNew in version 2\\.0\\.\n\ncolumns*by_index(\\_self*) \u2192 'Dict\\[str, List\\[Well]]'\n\nDeprecated since version 2\\.0: Use `columns_by_name()` instead.\n\nNew in version 2\\.0\\.\n\ncolumns*by_name(\\_self*) \u2192 'Dict\\[str, List\\[Well]]'\nAccessor function to navigate through a labware by column name.\n\nUse indexing to access individual columns or wells contained in the dictionary.\nFor example, access column 1 with `labware.columns_by_name()[\"1\"]`.\nOn a standard 96\\-well plate, this will output a list of `Well`\nobjects containing A1 through H1\\.\n\nReturns:\nDictionary of `Well` lists keyed by column name.\n\nNew in version 2\\.0\\.\n\n_property_ highest_z*: float')*\nThe z\\-coordinate of the highest single point anywhere on the labware.\n\nThis is taken from the `zDimension` property of the `dimensions` object in the\nlabware definition and takes into account the labware offset.\n\nNew in version 2\\.0\\.\n\n_property_ is_adapter*: bool')*\nWhether the labware behaves as an adapter.\n\nReturns `True` if the labware definition specifies `adapter` as one of the\nlabware\u2019s `allowedRoles`.\n\nNew in version 2\\.15\\.\n\n_property_ is_tiprack*: bool')*\nWhether the labware behaves as a tip rack.\n\nReturns `True` if the labware definition specifies `isTiprack` as `True`.\n\nNew in version 2\\.0\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad a compatible labware onto the labware using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3828, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee": {"__data__": {"id_": "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd6ca8ff0fc99626577d4ad165d7a337317d507e5e03b4866ac80d41287acb9c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "55820e72-350c-4d01-97be-cdc60036974a", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ec7b63f3f36a4c900b190e5b77a0a4490e7caa03d035746f035dd69536aaf5b8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "c5a03af5-c467-47c4-96ff-3b15682d23bf", "node_type": "1", "metadata": {}, "hash": "d16e9a56c0e2bcbff8cb6909727e90772ca0c759831dc7150aa5e5a6635989dd", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.15\\.\n\n_property_ is_tiprack*: bool')*\nWhether the labware behaves as a tip rack.\n\nReturns `True` if the labware definition specifies `isTiprack` as `True`.\n\nNew in version 2\\.0\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad a compatible labware onto the labware using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a compatible labware onto the labware using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If specified,\n this is how the labware will appear in the run log, Labware Position\n Check, and elsewhere in the Opentrons App and on the touchscreen.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\n_property_ load_name*: str')*\nThe API load name of the labware definition.\n\nNew in version 2\\.0\\.\n\n_property_ magdeck_engage_height*: Optional')\\[float')]*\nReturn the default magnet engage height that\n`MagneticModuleContext.engage()` will use for this labware.\n\nWarning\n\nThis currently returns confusing and unpredictable results that do not\nnecessarily match what `MagneticModuleContext.engage()` will\nactually choose for its default height.\n\nThe confusion is related to how this height\u2019s units and origin point are\ndefined, and differences between Magnetic Module generations.\n\nFor now, we recommend you avoid accessing this property directly.\n\nNew in version 2\\.0\\.\n\n_property_ name*: str')*\nThe display name of the labware.\n\nIf you specified a value for `label` when loading the labware, `name` is\nthat value.\n\nOtherwise, it is the `load_name` of the labware.\n\nNew in version 2\\.0\\.\n\n_property_ parameters*: LabwareParameters*\nInternal properties of a labware including type and quirks.\n\nNew in version 2\\.0\\.\n\n_property_ parent*: Union\\[str'), Labware, ModuleTypes, OffDeckType]*\nWhere the labware is loaded.\n\nThis corresponds to the physical object that the labware _directly_ rests upon.\n\nReturns:\nIf the labware is directly on the robot\u2019s deck, the `str` name of the deck slot,\nlike `\"D1\"` (Flex) or `\"1\"` (OT\\-2\\). See Deck Slots.\n\nIf the labware is on a module, a module context.\n\nIf the labware is on a labware or adapter, a `Labware`.\n\nIf the labware is off\\-deck, `OFF_DECK`.\n\nChanged in version 2\\.14: Return type for module parent changed.\nFormerly, the API returned an internal geometry interface.\n\nChanged in version 2\\.15: Returns a `Labware` if the labware is loaded onto a labware/adapter.\nReturns `OFF_DECK` if the labware is off\\-deck.\nFormerly, if the labware was removed by using `del` on `deck`,\nthis would return where it was before its removal.\n\nNew in version 2\\.0\\.\n\n_property_ quirks*: List')\\[str')]*\nQuirks specific to this labware.\n\nNew in version 2\\.0\\.\n\nreset(_self_) \u2192 'None'\nReset tip tracking for a tip rack.\n\nAfter resetting, the API treats all wells on the rack as if they contain unused tips.\nThis is useful if you want to reuse tips after calling `return_tip()`.\n\nIf you need to physically replace an empty tip rack in the middle of your protocol,\nuse `move_labware()` instead. See The Off\\-Deck Location for an example.\n\nChanged in version 2\\.14: This method will raise an exception if you call it on a labware that isn\u2019t\na tip rack. Formerly, it would do nothing.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 3095, "end_char_idx": 6909, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "c5a03af5-c467-47c4-96ff-3b15682d23bf": {"__data__": {"id_": "c5a03af5-c467-47c4-96ff-3b15682d23bf", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd6ca8ff0fc99626577d4ad165d7a337317d507e5e03b4866ac80d41287acb9c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "21af4b40cc382dce449d62763440b214c2c3dd8e8e15d73072beab26db6f18c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "112f62c0-766e-43c9-ace3-b96969d9fadb", "node_type": "1", "metadata": {}, "hash": "b74c6bb7a3e757bef4a378140a747946bda6ad294d71098bb6b6e6b0e7c53d29", "class_name": "RelatedNodeInfo"}}, "text": "Formerly, if the labware was removed by using `del` on `deck`,\nthis would return where it was before its removal.\n\nNew in version 2\\.0\\.\n\n_property_ quirks*: List')\\[str')]*\nQuirks specific to this labware.\n\nNew in version 2\\.0\\.\n\nreset(_self_) \u2192 'None'\nReset tip tracking for a tip rack.\n\nAfter resetting, the API treats all wells on the rack as if they contain unused tips.\nThis is useful if you want to reuse tips after calling `return_tip()`.\n\nIf you need to physically replace an empty tip rack in the middle of your protocol,\nuse `move_labware()` instead. See The Off\\-Deck Location for an example.\n\nChanged in version 2\\.14: This method will raise an exception if you call it on a labware that isn\u2019t\na tip rack. Formerly, it would do nothing.\n\nNew in version 2\\.0\\.\n\nrows(_self_, _\\\\\\*args: 'Union\\[int_, _str]'_) \u2192 'List\\[List\\[Well]]'\nAccessor function to navigate through a labware by row.\n\nUse indexing to access individual rows or wells contained in the nested list.\nOn a standard 96\\-well plate, this will output a list of `Well`\nobjects containing A1 through A12\\.\n\nNote\n\nUsing args with this method is deprecated. Use indexing instead.\n\nIf your code uses args, they can be either strings or integers, but not a\nmix of the two. For example, `.rows(1, 4)` or `.rows(\"1\", \"4\")` is\nvalid, but `.rows(\"1\", 4)` is not.\n\nReturns:\nA list of row lists.\n\nNew in version 2\\.0\\.\n\nrows*by_index(\\_self*) \u2192 'Dict\\[str, List\\[Well]]'\n\nDeprecated since version 2\\.0: Use `rows_by_name()` instead.\n\nNew in version 2\\.0\\.\n\nrows*by_name(\\_self*) \u2192 'Dict\\[str, List\\[Well]]'\nAccessor function to navigate through a labware by row name.\n\nUse indexing to access individual rows or wells contained in the dictionary.\nFor example, access row A with `labware.rows_by_name()[\"A\"]`.\nOn a standard 96\\-well plate, this will output a list of `Well`\nobjects containing A1 through A12\\.\n\nReturns:\nDictionary of `Well` lists keyed by row name.\n\nNew in version 2\\.0\\.\n\nset*calibration(\\_self*, _delta: 'Point'_) \u2192 'None'\nAn internal, deprecated method used for updating the labware offset.\n\nDeprecated since version 2\\.14\\.\n\nset*offset(\\_self*, _x: 'float'_, _y: 'float'_, _z: 'float'_) \u2192 'None'\nSet the labware\u2019s position offset.\n\nThe offset is an x, y, z vector in deck coordinates\n(see Position Relative to the Deck).\n\nHow the motion system applies the offset depends on the API level of the protocol.\n\n| API level | Offset behavior |\n| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| 2\\.12\u20132\\.13 | Offsets only apply to the exact `Labware` instance. |\n| 2\\.14\u20132\\.17 | `set_offset()` is not available, and the API raises an error. |\n| 2\\.18 and newer | _ Offsets apply to any labware of the same type, in the same on\\-deck location. _ Offsets can\u2019t be set on labware that is currently off\\-deck. \\* Offsets do not follow a labware instance when using `move_labware()`. |\n\nNote\n\nSetting offsets with this method will override any labware offsets set\nby running Labware Position Check in the Opentrons App.\n\nThis method is designed for use with mechanisms like\n`opentrons.execute.get_protocol_api`, which lack an interactive way\nto adjust labware offsets. (See Advanced Control.)\n\nChanged in version 2\\.14: Temporarily removed.\n\nChanged in version 2\\.18: Restored, and now applies to labware type\u2013location pairs.\n\nNew in version 2\\.12\\.\n\n_property_ tip_length*: float')*\nFor a tip rack labware, the length of the tips it holds, in mm.\n\nThis is taken from the `tipLength` property of the `parameters` object in the labware definition.\n\nThis method will raise an exception if you call it on a labware that isn\u2019t a tip rack.\n\nNew in version 2\\.0\\.\n\n_property_ uri*: str')*\nA string fully identifying the labware.", "mimetype": "text/plain", "start_char_idx": 6137, "end_char_idx": 10923, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "112f62c0-766e-43c9-ace3-b96969d9fadb": {"__data__": {"id_": "112f62c0-766e-43c9-ace3-b96969d9fadb", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "6e886adb-3bfa-459f-858e-dcd0ae10efb2", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "bd6ca8ff0fc99626577d4ad165d7a337317d507e5e03b4866ac80d41287acb9c", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "c5a03af5-c467-47c4-96ff-3b15682d23bf", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "b6b448890e43f5eff876bc01a3f2d65c24bbd6b3c77e38345d1b05b5ae725776", "class_name": "RelatedNodeInfo"}}, "text": "This method is designed for use with mechanisms like\n`opentrons.execute.get_protocol_api`, which lack an interactive way\nto adjust labware offsets. (See Advanced Control.)\n\nChanged in version 2\\.14: Temporarily removed.\n\nChanged in version 2\\.18: Restored, and now applies to labware type\u2013location pairs.\n\nNew in version 2\\.12\\.\n\n_property_ tip_length*: float')*\nFor a tip rack labware, the length of the tips it holds, in mm.\n\nThis is taken from the `tipLength` property of the `parameters` object in the labware definition.\n\nThis method will raise an exception if you call it on a labware that isn\u2019t a tip rack.\n\nNew in version 2\\.0\\.\n\n_property_ uri*: str')*\nA string fully identifying the labware.\n\nThe URI has three parts and follows the pattern `\"namespace/load_name/version\"`.\nFor example, `opentrons/corning_96_wellplate_360ul_flat/2`.\n\nNew in version 2\\.0\\.\n\nwell(_self_, _idx: 'Union\\[int, str]'_) \u2192 'Well'\nDeprecated. Use result of `wells()` or `wells_by_name()`.\n\nNew in version 2\\.0\\.\n\nwells(_self_, _\\\\\\*args: 'Union\\[str_, _int]'_) \u2192 'List\\[Well]'\nAccessor function to navigate a labware top to bottom, left to right.\n\ni.e., this method returns a list ordered A1, B1, C1\u2026A2, B2, C2\u2026.\n\nUse indexing to access individual wells contained in the list.\nFor example, access well A1 with `labware.wells()[0]`.\n\nNote\n\nUsing args with this method is deprecated. Use indexing instead.\n\nIf your code uses args, they can be either strings or integers, but not a\nmix of the two. For example, `.wells(1, 4)` or `.wells(\"1\", \"4\")` is\nvalid, but `.wells(\"1\", 4)` is not.\n\nReturns:\nOrdered list of all wells in a labware.\n\nNew in version 2\\.0\\.\n\nwells*by_index(\\_self*) \u2192 'Dict\\[str, Well]'\n\nDeprecated since version 2\\.0: Use `wells_by_name()` or dict access instead.\n\nNew in version 2\\.0\\.\n\nwells*by_name(\\_self*) \u2192 'Dict\\[str, Well]'\nAccessor function used to navigate through a labware by well name.\n\nUse indexing to access individual wells contained in the dictionary.\nFor example, access well A1 with `labware.wells_by_name()[\"A1\"]`.\n\nReturns:\nDictionary of `Well` objects keyed by well name.\n\nNew in version 2\\.0\\.\n\n_class_ opentrons.protocol_api.TrashBin\nRepresents a Flex or OT\\-2 trash bin.\n\nSee `ProtocolContext.load_trash_bin()`.\n\ntop(_self_, _x: 'float' \\= 0_, _y: 'float' \\= 0_, _z: 'float' \\= 0_) \u2192 'TrashBin'\nAdd a location offset to a trash bin.\n\nThe default location (`x`, `y`, and `z` all set to `0`) is the center of\nthe bin on the x\\- and y\\-axes, and slightly below its physical top on the z\\-axis.\n\nOffsets can be positive or negative and are measured in mm.\nSee Position Relative to the Deck.\n\nNew in version 2\\.18\\.\n\n_class_ opentrons.protocol_api.WasteChute\nRepresents a Flex waste chute.\n\nSee `ProtocolContext.load_waste_chute()`.\n\ntop(_self_, _x: 'float' \\= 0_, _y: 'float' \\= 0_, _z: 'float' \\= 0_) \u2192 'WasteChute'\nAdd a location offset to a waste chute.\n\nThe default location (`x`, `y`, and `z` all set to `0`) is the center of\nthe chute\u2019s opening on the x\\- and y\\-axes, and slightly below its physical top\non the z\\-axis. See Waste Chute for more information on possible\nconfigurations of the chute.\n\nOffsets can be positive or negative and are measured in mm.\nSee Position Relative to the Deck.\n\nNew in version 2\\.18\\.", "mimetype": "text/plain", "start_char_idx": 10222, "end_char_idx": 13470, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e39682ef-e478-472e-8f0e-da1ed1b619f8": {"__data__": {"id_": "e39682ef-e478-472e-8f0e-da1ed1b619f8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1c1cc4587acf18b019b5844977db36b69c5a907670d876fcedaf089eb01d3ff8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "4e40803c-97a9-4b13-8bd8-aaa8a7840760", "node_type": "1", "metadata": {}, "hash": "cdadb62b24516c5cabb353e6b357eee7df71e1483136280119674f6d78402ee8", "class_name": "RelatedNodeInfo"}}, "text": "Wells and Liquids\n\n_class_ opentrons.protocol*api.Well(\\_parent: Labware*, _core: WellCore_, _api_version: APIVersion_)\nThe Well class represents a single well in a `Labware`. It provides parameters and functions for three major uses:\n\n> - Calculating positions relative to the well. See Position Relative to Labware for details.\n> - Returning well measurements. See Well Dimensions for details.\n> - Specifying what liquid should be in the well at the beginning of a protocol. See Labeling Liquids in Wells for details.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\nbottom(_self_, _z: 'float' \\= 0\\.0_) \u2192 'Location'\n\nParameters:\n**z** \u2013 An offset on the z\\-axis, in mm. Positive offsets are higher and\nnegative offsets are lower.\n\nReturns:\nA `Location` corresponding to the\nabsolute position of the bottom\\-center of the well, plus the `z` offset\n(if specified).\n\nNew in version 2\\.0\\.\n\ncenter(_self_) \u2192 'Location'\n\nReturns:\nA `Location` corresponding to the\nabsolute position of the center of the well (in all three dimensions).\n\nNew in version 2\\.0\\.\n\n_property_ depth*: float')*\nThe depth, in mm, of a well along the z\\-axis, from the very top of the well to\nthe very bottom.\n\nNew in version 2\\.9\\.\n\n_property_ diameter*: Optional')\\[float')]*\nThe diameter, in mm, of a circular well. Returns `None`\nif the well is not circular.\n\nNew in version 2\\.0\\.\n\n_property_ display_name*: str')*\nA human\\-readable name for the well, including labware and deck location.\n\nFor example, \u201cA1 of Corning 96 Well Plate 360 \u00b5L Flat on slot D1\u201d. Run log\nentries use this format for identifying wells. See\n`ProtocolContext.commands()`.\n\nfrom*center_cartesian(\\_self*, _x: 'float'_, _y: 'float'_, _z: 'float'_) \u2192 'Point'\nSpecifies a `Point` based on fractions of the\ndistance from the center of the well to the edge along each axis.\n\nFor example, `from_center_cartesian(0, 0, 0.5)` specifies a point at the\nwell\u2019s center on the x\\- and y\\-axis, and half of the distance from the center of\nthe well to its top along the z\\-axis. To move the pipette to that location,\nconstruct a `Location` relative to the same well:\n\n```\nlocation = types.Location(\n plate[\"A1\"].from_center_cartesian(0, 0, 0.5), plate[\"A1\"]\n)\npipette.move_to(location)\n\n```\n\nSee Points and Locations for more information.\n\nParameters:\n\n- **x** \u2013 The fraction of the distance from the well\u2019s center to its edge\n along the x\\-axis. Negative values are to the left, and positive values\n are to the right.\n- **y** \u2013 The fraction of the distance from the well\u2019s center to its edge\n along the y\\-axis. Negative values are to the front, and positive values\n are to the back.\n- **z** \u2013 The fraction of the distance from the well\u2019s center to its edge\n along the x\\-axis. Negative values are down, and positive values are up.\n\nReturns:\nA `Point` representing the specified\nposition in absolute deck coordinates.\n\nNote\n\nEven if the absolute values of `x`, `y`, and `z` are all less\nthan 1, a location constructed from the well and the result of\n`from_center_cartesian` may be outside of the physical well. For example,\n`from_center_cartesian(0.9, 0.9, 0)` would be outside of a cylindrical\nwell, but inside a square well.\n\nNew in version 2\\.8\\.\n\n_property_ has_tip*: bool')*\nWhether this well contains a tip. Always `False` if the parent labware\nisn\u2019t a tip rack.\n\nNew in version 2\\.0\\.\n\n_property_ length*: Optional')\\[float')]*\nThe length, in mm, of a rectangular well along the x\\-axis (left to right).\nReturns `None` if the well is not rectangular.\n\nNew in version 2\\.9\\.\n\nload*liquid(\\_self*, _liquid: 'Liquid'_, _volume: 'float'_) \u2192 'None'\nLoad a liquid into a well.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3636, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "4e40803c-97a9-4b13-8bd8-aaa8a7840760": {"__data__": {"id_": "4e40803c-97a9-4b13-8bd8-aaa8a7840760", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "3856fcb1-a47f-4a47-9bf2-2f196e6f957b", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "1c1cc4587acf18b019b5844977db36b69c5a907670d876fcedaf089eb01d3ff8", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e39682ef-e478-472e-8f0e-da1ed1b619f8", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "37b3cb2a0fbf7a84b489cca9326d792b547a0413c733f77d10091c151d44ff3c", "class_name": "RelatedNodeInfo"}}, "text": "For example,\n`from_center_cartesian(0.9, 0.9, 0)` would be outside of a cylindrical\nwell, but inside a square well.\n\nNew in version 2\\.8\\.\n\n_property_ has_tip*: bool')*\nWhether this well contains a tip. Always `False` if the parent labware\nisn\u2019t a tip rack.\n\nNew in version 2\\.0\\.\n\n_property_ length*: Optional')\\[float')]*\nThe length, in mm, of a rectangular well along the x\\-axis (left to right).\nReturns `None` if the well is not rectangular.\n\nNew in version 2\\.9\\.\n\nload*liquid(\\_self*, _liquid: 'Liquid'_, _volume: 'float'_) \u2192 'None'\nLoad a liquid into a well.\n\nParameters:\n\n- **liquid** (_Liquid_) \u2013 The liquid to load into the well.\n- **volume** (_float_')) \u2013 The volume of liquid to load, in \u00b5L.\n\nNew in version 2\\.14\\.\n\n_property_ max_volume*: float')*\nThe maximum volume, in \u00b5L, that the well can hold.\n\nThis amount is set by the JSON labware definition, specifically the `totalLiquidVolume` property of the particular well.\n\n_property_ parent*: Labware*\nThe `Labware` object that the well is a part of.\n\nNew in version 2\\.0\\.\n\ntop(_self_, _z: 'float' \\= 0\\.0_) \u2192 'Location'\n\nParameters:\n**z** \u2013 An offset on the z\\-axis, in mm. Positive offsets are higher and\nnegative offsets are lower.\n\nReturns:\nA `Location` corresponding to the\nabsolute position of the top\\-center of the well, plus the `z` offset\n(if specified).\n\nNew in version 2\\.0\\.\n\n_property_ well_name*: str')*\nA string representing the well\u2019s coordinates.\n\nFor example, \u201cA1\u201d or \u201cH12\u201d.\n\nThe format of strings that this property returns is the same format as the key\nfor accessing wells in a dictionary.\n\nNew in version 2\\.7\\.\n\n_property_ width*: Optional')\\[float')]*\nThe width, in mm, of a rectangular well along the y\\-axis (front to back).\nReturns `None` if the well is not rectangular.\n\nNew in version 2\\.9\\.\n\n_class_ opentrons.protocol*api.Liquid(*\\_id: str')_, \\_name: str')_, _description: Optional')\\[str')]_, _display_color: Optional')\\[str')]_)\nA liquid to load into a well.\n\nname\nA human\\-readable name for the liquid.\n\nType:\nstr')\n\ndescription\nAn optional description.\n\nType:\nOptional\\[str')]\n\ndisplay_color\nAn optional display color for the liquid.\n\nType:\nOptional\\[str')]\n\nNew in version 2\\.14\\.", "mimetype": "text/plain", "start_char_idx": 3070, "end_char_idx": 5252, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968": {"__data__": {"id_": "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "527cc4e9-d27e-46b1-9faf-1052b2b76ba0", "node_type": "1", "metadata": {}, "hash": "f33e1794aa0d9a63a6f19823c253675b298fd20fea286897cf7426a4877af69f", "class_name": "RelatedNodeInfo"}}, "text": "Modules\n\n_class_ opentrons.protocol*api.HeaterShakerContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a connected Heater\\-Shaker Module.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.13\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\nclose*labware_latch(\\_self*) \u2192 'None'\nCloses the labware latch.\n\nThe labware latch needs to be closed using this method before sending a shake command,\neven if the latch was manually closed before starting the protocol.\n\nNew in version 2\\.13\\.\n\n_property_ current_speed*: int')*\nThe current speed of the Heater\\-Shaker\u2019s plate in rpm.\n\nNew in version 2\\.13\\.\n\n_property_ current_temperature*: float')*\nThe current temperature of the Heater\\-Shaker\u2019s plate in \u00b0C.\n\nReturns `23` in simulation if no target temperature has been set.\n\nNew in version 2\\.13\\.\n\ndeactivate*heater(\\_self*) \u2192 'None'\nStops heating.\n\nThe module will passively cool to room temperature.\nThe Heater\\-Shaker does not have active cooling.\n\nNew in version 2\\.13\\.\n\ndeactivate*shaker(\\_self*) \u2192 'None'\nStops shaking.\n\nDecelerating to 0 rpm typically only takes a few seconds.\n\nNew in version 2\\.13\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\n_property_ labware_latch_status*: str')*\nOne of six possible latch statuses:\n\n- `opening` \u2013 The latch is currently opening (in motion).\n- `idle_open` \u2013 The latch is open and not moving.\n- `closing` \u2013 The latch is currently closing (in motion).\n- `idle_closed` \u2013 The latch is closed and not moving.\n- `idle_unknown` \u2013 The default status upon reset, regardless of physical latch position.\n Use `close_labware_latch()` before other commands\n requiring confirmation that the latch is closed.\n- `unknown` \u2013 The latch status can\u2019t be determined.\n\nNew in version 2\\.13\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 3736, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "527cc4e9-d27e-46b1-9faf-1052b2b76ba0": {"__data__": {"id_": "527cc4e9-d27e-46b1-9faf-1052b2b76ba0", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "845bd61174299cb429fcab3b34066fdd566bcd980c21bdade22aca00ea0dedf6", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "33a52153-0b96-43ff-a3fc-bc2546b70869", "node_type": "1", "metadata": {}, "hash": "6818c0ce2edd4e9977bb8a61be132c28ee2eb77cf1c60226397ef1c615873f25", "class_name": "RelatedNodeInfo"}}, "text": "The parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.\n\n_property_ model*: Union')\\[Literal')\\'magneticModuleV1', 'magneticModuleV2'], [Literal')\\'temperatureModuleV1', 'temperatureModuleV2'], [Literal')\\'thermocyclerModuleV1', 'thermocyclerModuleV2'], [Literal')\\'heaterShakerModuleV1'], [Literal')\\'magneticBlockV1'], [Literal')\\['absorbanceReaderV1']]*\nGet the module\u2019s model identifier.\n\nNew in version 2\\.14\\.\n\nopen*labware_latch(\\_self*) \u2192 'None'\nOpen the Heater\\-Shaker\u2019s labware latch.\n\nThe labware latch needs to be closed before:\\* Shaking\n\n- Pipetting to or from the labware on the Heater\\-Shaker\n- Pipetting to or from labware to the left or right of the Heater\\-Shaker\n\nAttempting to open the latch while the Heater\\-Shaker is shaking will raise an error.\n\nNote\n\nBefore opening the latch, this command will retract the pipettes upward\nif they are parked adjacent to the left or right of the Heater\\-Shaker.\n\nNew in version 2\\.13\\.\n\n_property_ parent*: str')*\nThe name of the slot the module is on.\n\nOn a Flex, this will be like `\"D1\"`. On an OT\\-2, this will be like `\"1\"`.\nSee Deck Slots.\n\nNew in version 2\\.14\\.\n\n_property_ serial_number*: str')*\nGet the module\u2019s unique hardware serial number.\n\nNew in version 2\\.14\\.\n\nset*and_wait_for_shake_speed(\\_self*, _rpm: 'int'_) \u2192 'None'\nSet a shake speed in rpm and block execution of further commands until the module reaches the target.\n\nReaching a target shake speed typically only takes a few seconds.\n\nNote\n\nBefore shaking, this command will retract the pipettes upward if they are parked adjacent to the Heater\\-Shaker.\n\nParameters:\n**rpm** \u2013 A value between 200 and 3000, representing the target shake speed in revolutions per minute.\n\nNew in version 2\\.13\\.\n\nset*and_wait_for_temperature(\\_self*, _celsius: 'float'_) \u2192 'None'\nSet a target temperature and wait until the module reaches the target.\n\nNo other protocol commands will execute while waiting for the temperature.\n\nParameters:\n**celsius** \u2013 A value between 27 and 95, representing the target temperature in \u00b0C.\nValues are automatically truncated to two decimal places,\nand the Heater\\-Shaker module has a temperature accuracy of \u00b10\\.5 \u00b0C.\n\nNew in version 2\\.13\\.\n\nset*target_temperature(\\_self*, _celsius: 'float'_) \u2192 'None'\nSet target temperature and return immediately.\n\nSets the Heater\\-Shaker\u2019s target temperature and returns immediately without\nwaiting for the target to be reached. Does not delay the protocol until\ntarget temperature has reached.\nUse `wait_for_temperature()` to delay\nprotocol execution.\n\nParameters:\n**celsius** \u2013 A value between 27 and 95, representing the target temperature in \u00b0C.\nValues are automatically truncated to two decimal places,\nand the Heater\\-Shaker module has a temperature accuracy of \u00b10\\.5 \u00b0C.\n\nNew in version 2\\.13\\.", "mimetype": "text/plain", "start_char_idx": 3128, "end_char_idx": 6977, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "33a52153-0b96-43ff-a3fc-bc2546b70869": {"__data__": {"id_": "33a52153-0b96-43ff-a3fc-bc2546b70869", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "527cc4e9-d27e-46b1-9faf-1052b2b76ba0", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d201d132f050ac538b6274c529671cdc54022b80e155068b3a5ef274541bab02", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "56eec31c-5c40-416e-81fd-7c7a6722f005", "node_type": "1", "metadata": {}, "hash": "9c92920cb3e3669081f6530959da935208168e9165892c996eab8a7cdec608e5", "class_name": "RelatedNodeInfo"}}, "text": "Parameters:\n**celsius** \u2013 A value between 27 and 95, representing the target temperature in \u00b0C.\nValues are automatically truncated to two decimal places,\nand the Heater\\-Shaker module has a temperature accuracy of \u00b10\\.5 \u00b0C.\n\nNew in version 2\\.13\\.\n\nset*target_temperature(\\_self*, _celsius: 'float'_) \u2192 'None'\nSet target temperature and return immediately.\n\nSets the Heater\\-Shaker\u2019s target temperature and returns immediately without\nwaiting for the target to be reached. Does not delay the protocol until\ntarget temperature has reached.\nUse `wait_for_temperature()` to delay\nprotocol execution.\n\nParameters:\n**celsius** \u2013 A value between 27 and 95, representing the target temperature in \u00b0C.\nValues are automatically truncated to two decimal places,\nand the Heater\\-Shaker module has a temperature accuracy of \u00b10\\.5 \u00b0C.\n\nNew in version 2\\.13\\.\n\n_property_ speed_status*: str')*\nOne of five possible shaking statuses:\n\n- `holding at target` \u2013 The module has reached its target shake speed\n and is actively maintaining that speed.\n- `speeding up` \u2013 The module is increasing its shake speed towards a target.\n- `slowing down` \u2013 The module was previously shaking at a faster speed\n and is currently reducing its speed to a lower target or to deactivate.\n- `idle` \u2013 The module is not shaking.\n- `error` \u2013 The shaking status can\u2019t be determined.\n\nNew in version 2\\.13\\.\n\n_property_ target_speed*: Optional')\\[int')]*\nTarget speed of the Heater\\-Shaker\u2019s plate in rpm.\n\nNew in version 2\\.13\\.\n\n_property_ target_temperature*: Optional')\\[float')]*\nThe target temperature of the Heater\\-Shaker\u2019s plate in \u00b0C.\n\nReturns `None` if no target has been set.\n\nNew in version 2\\.13\\.\n\n_property_ temperature_status*: str')*\nOne of five possible temperature statuses:\n\n- `holding at target` \u2013 The module has reached its target temperature\n and is actively maintaining that temperature.\n- `cooling` \u2013 The module has previously heated and is now passively cooling.\n The Heater\\-Shaker does not have active cooling.\n- `heating` \u2013 The module is heating to a target temperature.\n- `idle` \u2013 The module has not heated since the beginning of the protocol.\n- `error` \u2013 The temperature status can\u2019t be determined.\n\nNew in version 2\\.13\\.\n\n_property_ type*: Union')\\[Literal')\\'magneticModuleType'], [Literal')\\'temperatureModuleType'], [Literal')\\'thermocyclerModuleType'], [Literal')\\'heaterShakerModuleType'], [Literal')\\'magneticBlockType'], [Literal')\\['absorbanceReaderType']]*\nGet the module\u2019s general type identifier.\n\nNew in version 2\\.14\\.\n\nwait*for_temperature(\\_self*) \u2192 'None'\nDelays protocol execution until the Heater\\-Shaker has reached its target\ntemperature.\n\nRaises an error if no target temperature was previously set.\n\nNew in version 2\\.13\\.\n\n_class_ opentrons.protocol*api.MagneticBlockContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a Magnetic Block.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.15\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 6132, "end_char_idx": 10282, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "56eec31c-5c40-416e-81fd-7c7a6722f005": {"__data__": {"id_": "56eec31c-5c40-416e-81fd-7c7a6722f005", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "33a52153-0b96-43ff-a3fc-bc2546b70869", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "5afec27c4f201f14217a4865b18311fe717693348c26f9c3cd3a901d021ff9c5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3", "node_type": "1", "metadata": {}, "hash": "dfc4dffa3941d3eec2f0ccfd520abddd58289d37c26a23a1b2f8b9d887a87b4a", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.\n\n_property_ model*: Union')\\[Literal')\\'magneticModuleV1', 'magneticModuleV2'], [Literal')\\'temperatureModuleV1', 'temperatureModuleV2'], [Literal')\\'thermocyclerModuleV1', 'thermocyclerModuleV2'], [Literal')\\'heaterShakerModuleV1'], [Literal')\\'magneticBlockV1'], [Literal')\\['absorbanceReaderV1']]*\nGet the module\u2019s model identifier.\n\nNew in version 2\\.14\\.\n\n_property_ parent*: str')*\nThe name of the slot the module is on.\n\nOn a Flex, this will be like `\"D1\"`. On an OT\\-2, this will be like `\"1\"`.\nSee Deck Slots.\n\nNew in version 2\\.14\\.\n\n_property_ type*: Union')\\[Literal')\\'magneticModuleType'], [Literal')\\'temperatureModuleType'], [Literal')\\'thermocyclerModuleType'], [Literal')\\'heaterShakerModuleType'], [Literal')\\'magneticBlockType'], [Literal')\\['absorbanceReaderType']]*\nGet the module\u2019s general type identifier.\n\nNew in version 2\\.14\\.\n\n_class_ opentrons.protocol*api.MagneticModuleContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a connected Magnetic Module.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\ndisengage(_self_) \u2192 'None'\nLower the magnets back into the Magnetic Module.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 9492, "end_char_idx": 13151, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3": {"__data__": {"id_": "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "56eec31c-5c40-416e-81fd-7c7a6722f005", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "ab99552145816f7d8d8596a43c16493b4e2e7e434d70ce598aa8b51b8be07ab8", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "98338da6-5a0a-4653-89be-314b1cc2ff25", "node_type": "1", "metadata": {}, "hash": "26a4f11f62418aad358b26ba4734b45217619d17f6ba67cd05c6bf8ed7d180e0", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.14\\.\n\n_class_ opentrons.protocol*api.MagneticModuleContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a connected Magnetic Module.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\ndisengage(_self_) \u2192 'None'\nLower the magnets back into the Magnetic Module.\n\nNew in version 2\\.0\\.\n\nengage(_self_, _height: 'Optional\\[float]' \\= None_, _offset: 'Optional\\[float]' \\= None_, _height_from_base: 'Optional\\[float]' \\= None_) \u2192 'None'\nRaise the Magnetic Module\u2019s magnets. You can specify how high the magnets\nshould move:\n\n> - No parameter: Move to the default height for the loaded labware. If\n> the loaded labware has no default, or if no labware is loaded, this will\n> raise an error.\n> - `height_from_base` \u2013 Move this many millimeters above the bottom\n> of the labware. Acceptable values are between `0` and `25`.\n>\n> This is the recommended way to adjust the magnets\u2019 height.\n>\n> New in version 2\\.2\\.\n>\n> - `offset` \u2013 Move this many millimeters above (positive value) or below\n> (negative value) the default height for the loaded labware. The sum of\n> the default height and `offset` must be between 0 and 25\\.\n> - `height` \u2013 Intended to move this many millimeters above the magnets\u2019\n> home position. However, depending on the generation of module and the loaded\n> labware, this may produce unpredictable results. You should normally use\n> `height_from_base` instead.\n>\n> Changed in version 2\\.14: This parameter has been removed.\n\nYou shouldn\u2019t specify more than one of these parameters. However, if you do,\ntheir order of precedence is `height`, then `height_from_base`, then `offset`.\n\nNew in version 2\\.0\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.", "mimetype": "text/plain", "start_char_idx": 12489, "end_char_idx": 16246, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "98338da6-5a0a-4653-89be-314b1cc2ff25": {"__data__": {"id_": "98338da6-5a0a-4653-89be-314b1cc2ff25", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "0a0cc3bd0a2f7151ad743361a1163578790a24c46f3fc576c80d640286f77e0e", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "515d7962-e18d-4b3d-8b44-345f171c1de2", "node_type": "1", "metadata": {}, "hash": "42fe37abddb15525ddc40d022c610c2e4577f92289d301461082a1f23e6932bf", "class_name": "RelatedNodeInfo"}}, "text": "The parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.\n\n_property_ model*: Union')\\[Literal')\\'magneticModuleV1', 'magneticModuleV2'], [Literal')\\'temperatureModuleV1', 'temperatureModuleV2'], [Literal')\\'thermocyclerModuleV1', 'thermocyclerModuleV2'], [Literal')\\'heaterShakerModuleV1'], [Literal')\\'magneticBlockV1'], [Literal')\\['absorbanceReaderV1']]*\nGet the module\u2019s model identifier.\n\nNew in version 2\\.14\\.\n\n_property_ parent*: str')*\nThe name of the slot the module is on.\n\nOn a Flex, this will be like `\"D1\"`. On an OT\\-2, this will be like `\"1\"`.\nSee Deck Slots.\n\nNew in version 2\\.14\\.\n\n_property_ serial_number*: str')*\nGet the module\u2019s unique hardware serial number.\n\nNew in version 2\\.14\\.\n\n_property_ status*: str')*\nThe status of the module, either `engaged` or `disengaged`.\n\nNew in version 2\\.0\\.\n\n_property_ type*: Union')\\[Literal')\\'magneticModuleType'], [Literal')\\'temperatureModuleType'], [Literal')\\'thermocyclerModuleType'], [Literal')\\'heaterShakerModuleType'], [Literal')\\'magneticBlockType'], [Literal')\\['absorbanceReaderType']]*\nGet the module\u2019s general type identifier.\n\nNew in version 2\\.14\\.\n\n_class_ opentrons.protocol*api.TemperatureModuleContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a connected Temperature Module.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\ndeactivate(_self_) \u2192 'None'\nStop heating or cooling, and turn off the fan.\n\nNew in version 2\\.0\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.", "mimetype": "text/plain", "start_char_idx": 15638, "end_char_idx": 19353, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "515d7962-e18d-4b3d-8b44-345f171c1de2": {"__data__": {"id_": "515d7962-e18d-4b3d-8b44-345f171c1de2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "98338da6-5a0a-4653-89be-314b1cc2ff25", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "31bd27fe1bb990c4105354d53c4334dea2eb18c4e1f7ccda5f0a13cf04517e63", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1062af75-9e40-499f-9e34-18c8074da7a8", "node_type": "1", "metadata": {}, "hash": "abf85106e90bcbfa2cda570c84d40b9db2aebe2aaf749e107ab511da4a9784a0", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.\n\n_property_ model*: Union')\\[Literal')\\'magneticModuleV1', 'magneticModuleV2'], [Literal')\\'temperatureModuleV1', 'temperatureModuleV2'], [Literal')\\'thermocyclerModuleV1', 'thermocyclerModuleV2'], [Literal')\\'heaterShakerModuleV1'], [Literal')\\'magneticBlockV1'], [Literal')\\['absorbanceReaderV1']]*\nGet the module\u2019s model identifier.\n\nNew in version 2\\.14\\.\n\n_property_ parent*: str')*\nThe name of the slot the module is on.\n\nOn a Flex, this will be like `\"D1\"`. On an OT\\-2, this will be like `\"1\"`.\nSee Deck Slots.\n\nNew in version 2\\.14\\.\n\n_property_ serial_number*: str')*\nGet the module\u2019s unique hardware serial number.\n\nNew in version 2\\.14\\.\n\nset*temperature(\\_self*, _celsius: 'float'_) \u2192 'None'\nSet a target temperature and wait until the module reaches the target.\n\nNo other protocol commands will execute while waiting for the temperature.\n\nParameters:\n**celsius** \u2013 A value between 4 and 95, representing the target temperature in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ status*: str')*\nOne of four possible temperature statuses:\n\n- `holding at target` \u2013 The module has reached its target temperature\n and is actively maintaining that temperature.\n- `cooling` \u2013 The module is cooling to a target temperature.\n- `heating` \u2013 The module is heating to a target temperature.\n- `idle` \u2013 The module has been deactivated.\n\nNew in version 2\\.3\\.\n\n_property_ target*: Optional')\\[float')]*\nThe target temperature of the Temperature Module\u2019s deck in \u00b0C.\n\nReturns `None` if no target has been set.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 18563, "end_char_idx": 22250, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1062af75-9e40-499f-9e34-18c8074da7a8": {"__data__": {"id_": "1062af75-9e40-499f-9e34-18c8074da7a8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "515d7962-e18d-4b3d-8b44-345f171c1de2", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "c03ff33e0ea04de25bb721187fa04501d3588be97ffb706d83a6d0b59483732a", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "e559f16b-b79d-497c-83c3-1040b7290ab2", "node_type": "1", "metadata": {}, "hash": "c198c7022929bfcd0d37dd31fa5a478db5633a2be3b084ddab2738a1c5a1e631", "class_name": "RelatedNodeInfo"}}, "text": "No other protocol commands will execute while waiting for the temperature.\n\nParameters:\n**celsius** \u2013 A value between 4 and 95, representing the target temperature in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ status*: str')*\nOne of four possible temperature statuses:\n\n- `holding at target` \u2013 The module has reached its target temperature\n and is actively maintaining that temperature.\n- `cooling` \u2013 The module is cooling to a target temperature.\n- `heating` \u2013 The module is heating to a target temperature.\n- `idle` \u2013 The module has been deactivated.\n\nNew in version 2\\.3\\.\n\n_property_ target*: Optional')\\[float')]*\nThe target temperature of the Temperature Module\u2019s deck in \u00b0C.\n\nReturns `None` if no target has been set.\n\nNew in version 2\\.0\\.\n\n_property_ temperature*: float')*\nThe current temperature of the Temperature Module\u2019s deck in \u00b0C.\n\nReturns `0` in simulation if no target temperature has been set.\n\nNew in version 2\\.0\\.\n\n_property_ type*: Union')\\[Literal')\\'magneticModuleType'], [Literal')\\'temperatureModuleType'], [Literal')\\'thermocyclerModuleType'], [Literal')\\'heaterShakerModuleType'], [Literal')\\'magneticBlockType'], [Literal')\\['absorbanceReaderType']]*\nGet the module\u2019s general type identifier.\n\nNew in version 2\\.14\\.\n\n_class_ opentrons.protocol*api.ThermocyclerContext(\\_core: AbstractModuleCore*, _protocol_core: AbstractProtocol\\[AbstractInstrument\\[AbstractWellCore], AbstractLabware\\[AbstractWellCore], AbstractModuleCore]_, _core_map: LoadedCoreMap_, _api_version: APIVersion_, _broker: LegacyBroker_)\nAn object representing a connected Thermocycler Module.\n\nIt should not be instantiated directly; instead, it should be\ncreated through `ProtocolContext.load_module()`.\n\nNew in version 2\\.0\\.\n\n_property_ api_version*: APIVersion*\n\nNew in version 2\\.0\\.\n\n_property_ block_target_temperature*: Optional')\\[float')]*\nThe target temperature of the well block in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ block_temperature*: Optional')\\[float')]*\nThe current temperature of the well block in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ block_temperature_status*: str')*\nOne of five possible temperature statuses:\n\n- `holding at target` \u2013 The block has reached its target temperature\n and is actively maintaining that temperature.\n- `cooling` \u2013 The block is cooling to a target temperature.\n- `heating` \u2013 The block is heating to a target temperature.\n- `idle` \u2013 The block is not currently heating or cooling.\n- `error` \u2013 The temperature status can\u2019t be determined.\n\nNew in version 2\\.0\\.\n\nclose*lid(\\_self*) \u2192 'str'\nClose the lid.\n\nNew in version 2\\.0\\.\n\ndeactivate(_self_) \u2192 'None'\nTurn off both the well block temperature controller and the lid heater.\n\nNew in version 2\\.0\\.\n\ndeactivate*block(\\_self*) \u2192 'None'\nTurn off the well block temperature controller.\n\nNew in version 2\\.0\\.\n\ndeactivate*lid(\\_self*) \u2192 'None'\nTurn off the lid heater.\n\nNew in version 2\\.0\\.\n\nexecute*profile(\\_self*, _steps: 'List\\[ThermocyclerStep]'_, _repetitions: 'int'_, _block_max_volume: 'Optional\\[float]' \\= None_) \u2192 'None'\nExecute a Thermocycler profile, defined as a cycle of\n`steps`, for a given number of `repetitions`.\n\nParameters:\n\n- **steps** \u2013 List of unique steps that make up a single cycle.\n Each list item should be a dictionary that maps to\n the parameters of the `set_block_temperature()`\n method with a `temperature` key, and either or both of\n `hold_time_seconds` and `hold_time_minutes`.\n- **repetitions** \u2013 The number of times to repeat the cycled steps.\n- **block_max_volume** \u2013 The greatest volume of liquid contained in any\n individual well of the loaded labware, in \u00b5L.\n If not specified, the default is 25 \u00b5L.\n\nNew in version 2\\.0\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\n_property_ lid_position*: Optional')\\[str')]*\nOne of these possible lid statuses:\n\n- `closed` \u2013 The lid is closed.\n- `in_between` \u2013 The lid is neither open nor closed.", "mimetype": "text/plain", "start_char_idx": 21506, "end_char_idx": 25452, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "e559f16b-b79d-497c-83c3-1040b7290ab2": {"__data__": {"id_": "e559f16b-b79d-497c-83c3-1040b7290ab2", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1062af75-9e40-499f-9e34-18c8074da7a8", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e550c65a5a23af01c46f207a498d836e7fd16f94d5380e6394fc70f583411618", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "fe0c19af-46e7-46d9-8fd6-66508ffc9f88", "node_type": "1", "metadata": {}, "hash": "3868b0995b0b03fe4e3cc4ab1f30a5b324723d520bceb28bdde7dffbfb1665bd", "class_name": "RelatedNodeInfo"}}, "text": "Each list item should be a dictionary that maps to\n the parameters of the `set_block_temperature()`\n method with a `temperature` key, and either or both of\n `hold_time_seconds` and `hold_time_minutes`.\n- **repetitions** \u2013 The number of times to repeat the cycled steps.\n- **block_max_volume** \u2013 The greatest volume of liquid contained in any\n individual well of the loaded labware, in \u00b5L.\n If not specified, the default is 25 \u00b5L.\n\nNew in version 2\\.0\\.\n\n_property_ labware*: Optional')\\[Labware]*\nThe labware (if any) present on this module.\n\nNew in version 2\\.0\\.\n\n_property_ lid_position*: Optional')\\[str')]*\nOne of these possible lid statuses:\n\n- `closed` \u2013 The lid is closed.\n- `in_between` \u2013 The lid is neither open nor closed.\n- `open` \u2013 The lid is open.\n- `unknown` \u2013 The lid position can\u2019t be determined.\n\nNew in version 2\\.0\\.\n\n_property_ lid_target_temperature*: Optional')\\[float')]*\nThe target temperature of the lid in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ lid_temperature*: Optional')\\[float')]*\nThe current temperature of the lid in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ lid_temperature_status*: Optional')\\[str')]*\nOne of five possible temperature statuses:\n\n- `holding at target` \u2013 The lid has reached its target temperature\n and is actively maintaining that temperature.\n- `cooling` \u2013 The lid has previously heated and is now passively cooling.The Thermocycler lid does not have active cooling.\n- `heating` \u2013 The lid is heating to a target temperature.\n- `idle` \u2013 The lid has not heated since the beginning of the protocol.\n- `error` \u2013 The temperature status can\u2019t be determined.\n\nNew in version 2\\.0\\.\n\nload*adapter(\\_self*, _name: 'str'_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\nLoad an adapter onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_adapter` (which loads adapters directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded adapter object.\n\nNew in version 2\\.15\\.\n\nload*adapter_from_definition(\\_self*, _definition: 'LabwareDefinition'_) \u2192 'Labware'\nLoad an adapter onto the module using an inline definition.\n\nParameters:\n**definition** \u2013 The labware definition.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.15\\.\n\nload*labware(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_, _adapter: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using its load parameters.\n\nThe parameters of this function behave like those of\n`ProtocolContext.load_labware` (which loads labware directly\nonto the deck). Note that the parameter `name` here corresponds to\n`load_name` on the `ProtocolContext` function.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.1: The _label,_ _namespace,_ and _version_ parameters.\n\nload*labware_by_name(\\_self*, _name: 'str'_, _label: 'Optional\\[str]' \\= None_, _namespace: 'Optional\\[str]' \\= None_, _version: 'Optional\\[int]' \\= None_) \u2192 'Labware'\n\nDeprecated since version 2\\.0: Use `load_labware()` instead.\n\nNew in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.", "mimetype": "text/plain", "start_char_idx": 24714, "end_char_idx": 28487, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "fe0c19af-46e7-46d9-8fd6-66508ffc9f88": {"__data__": {"id_": "fe0c19af-46e7-46d9-8fd6-66508ffc9f88", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "54a40460-23c1-40da-9886-7a91b4163ebf", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a46eccd532a3ee7913e77454b7c394b94846f3546bbe5c05786956dbabdbe072", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "e559f16b-b79d-497c-83c3-1040b7290ab2", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e52c36f58e0959a58a31f3a7a24b5e9aaacf63cc4b56423b3cd4f1e3fb680693", "class_name": "RelatedNodeInfo"}}, "text": "New in version 2\\.1\\.\n\nload*labware_from_definition(\\_self*, _definition: 'LabwareDefinition'_, _label: 'Optional\\[str]' \\= None_) \u2192 'Labware'\nLoad a labware onto the module using an inline definition.\n\nParameters:\n\n- **definition** \u2013 The labware definition.\n- **label** (_str_')) \u2013 An optional special name to give the labware. If\n specified, this is the name the labware will appear\n as in the run log and the calibration view in the\n Opentrons app.\n\nReturns:\nThe initialized and loaded labware object.\n\nNew in version 2\\.0\\.\n\n_property_ model*: Union')\\[Literal')\\'magneticModuleV1', 'magneticModuleV2'], [Literal')\\'temperatureModuleV1', 'temperatureModuleV2'], [Literal')\\'thermocyclerModuleV1', 'thermocyclerModuleV2'], [Literal')\\'heaterShakerModuleV1'], [Literal')\\'magneticBlockV1'], [Literal')\\['absorbanceReaderV1']]*\nGet the module\u2019s model identifier.\n\nNew in version 2\\.14\\.\n\nopen*lid(\\_self*) \u2192 'str'\nOpen the lid.\n\nNew in version 2\\.0\\.\n\n_property_ parent*: str')*\nThe name of the slot the module is on.\n\nOn a Flex, this will be like `\"D1\"`. On an OT\\-2, this will be like `\"1\"`.\nSee Deck Slots.\n\nNew in version 2\\.14\\.\n\n_property_ serial_number*: str')*\nGet the module\u2019s unique hardware serial number.\n\nNew in version 2\\.14\\.\n\nset*block_temperature(\\_self*, _temperature: 'float'_, _hold_time_seconds: 'Optional\\[float]' \\= None_, _hold_time_minutes: 'Optional\\[float]' \\= None_, _ramp_rate: 'Optional\\[float]' \\= None_, _block_max_volume: 'Optional\\[float]' \\= None_) \u2192 'None'\nSet the target temperature for the well block, in \u00b0C.\n\nParameters:\n\n- **temperature** \u2013 A value between 4 and 99, representing the target\n temperature in \u00b0C.\n- **hold_time_minutes** \u2013 The number of minutes to hold, after reaching\n `temperature`, before proceeding to the\n next command. If `hold_time_seconds` is also\n specified, the times are added together.\n- **hold_time_seconds** \u2013 The number of seconds to hold, after reaching\n `temperature`, before proceeding to the\n next command. If `hold_time_minutes` is also\n specified, the times are added together.\n- **block_max_volume** \u2013 The greatest volume of liquid contained in any\n individual well of the loaded labware, in \u00b5L.\n If not specified, the default is 25 \u00b5L.\n\nNew in version 2\\.0\\.\n\nset*lid_temperature(\\_self*, _temperature: 'float'_) \u2192 'None'\nSet the target temperature for the heated lid, in \u00b0C.\n\nParameters:\n**temperature** \u2013 A value between 37 and 110, representing the target\ntemperature in \u00b0C.\n\nNew in version 2\\.0\\.\n\n_property_ type*: Union')\\[Literal')\\'magneticModuleType'], [Literal')\\'temperatureModuleType'], [Literal')\\'thermocyclerModuleType'], [Literal')\\'heaterShakerModuleType'], [Literal')\\'magneticBlockType'], [Literal')\\['absorbanceReaderType']]*\nGet the module\u2019s general type identifier.\n\nNew in version 2\\.14\\.", "mimetype": "text/plain", "start_char_idx": 27957, "end_char_idx": 30758, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff": {"__data__": {"id_": "08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "045c8692-adb9-4d07-9f25-d3de0a01baba", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a47e88cbd9eef3664a84e2bd78ed8fa085a79f0bac528e4025c0d4f843134a97", "class_name": "RelatedNodeInfo"}}, "text": "Useful Types\n\n_class_ opentrons.types.Location(_point: Point_, _labware: Union\\'Labware', 'Well', [str'), 'ModuleGeometry', LabwareLike, None'), 'ModuleContext']_)\nA location to target as a motion.\n\nThe location contains a `Point` (in\nPosition Relative to the Deck) and possibly an associated\n`Labware` or `Well` instance.\n\nIt should rarely be constructed directly by the user; rather, it is the\nreturn type of most `Well` accessors like `Well.top()`\nand is passed directly into a method like `InstrumentContext.aspirate()`.\n\nWarning\n\nThe `.labware` attribute of this class is used by the protocol\nAPI internals to, among other things, determine safe heights to retract\nthe instruments to when moving between locations. If constructing an\ninstance of this class manually, be sure to either specify `None` as the\nlabware (so the robot does its worst case retraction) or specify the\ncorrect labware for the `.point` attribute.\n\nWarning\n\nThe `==` operation compares both the position and associated labware.\nIf you only need to compare locations, compare the `.point`\nof each item.\n\nmove(_self_, _point: 'Point'_) \u2192 \"'Location'\"\nAlter the point stored in the location while preserving the labware.\n\nThis returns a new Location and does not alter the current one. It\nshould be used like\n\n```\n>>> loc = Location(Point(1, 1, 1), None)\n>>> new_loc = loc.move(Point(1, 1, 1))\n>>>\n>>> # The new point is the old one plus the given offset.\n>>> assert new_loc.point == Point(2, 2, 2) # True\n>>>\n>>> # The old point hasn't changed.\n>>> assert loc.point == Point(1, 1, 1) # True\n\n```\n\n_class_ opentrons.types.Mount(_value_)\nAn enumeration.\n\n_exception_ opentrons.types.PipetteNotAttachedError\nAn error raised if a pipette is accessed that is not attached\n\n_class_ opentrons.types.Point(_x_, _y_, _z_)\n\nx*: float')*\nAlias for field number 0\n\ny*: float')*\nAlias for field number 1\n\nz*: float')*\nAlias for field number 2\n\nopentrons.protocol_api.OFF_DECK\nA special location value, indicating that a labware is not currently on the robot\u2019s deck.\n\nSee The Off\\-Deck Location for details on using `OFF_DECK` with `ProtocolContext.move_labware()`.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 2130, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "a33c36a6-48b6-48a9-b522-e5205e1c4b8c": {"__data__": {"id_": "a33c36a6-48b6-48a9-b522-e5205e1c4b8c", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "f0b68f74-cf73-4de3-87e3-80446f9a99d8", "node_type": "1", "metadata": {}, "hash": "e556a9a7dab7a07f4012462fa0f2e6f494aff8fd52718629a990eedabd34bc6a", "class_name": "RelatedNodeInfo"}}, "text": "Executing and Simulating Protocols\n\nopentrons.execute: functions and entrypoint for running protocols\n\nThis module has functions that can be imported to provide protocol\ncontexts for running protocols during interactive sessions like Jupyter or just\nregular python shells. It also provides a console entrypoint for running a\nprotocol from the command line.\n\nopentrons.execute.execute(_protocol_file: Union\\BinaryIO, TextIO]_, _protocol_name: [str')_, _propagate_logs: bool') \\= False_, _log_level: str') \\= 'warning'_, _emit_runlog: Optional\\Callable\\[\\[Union\\[opentrons.legacy_commands.types.DropTipMessage, opentrons.legacy_commands.types.DropTipInDisposalLocationMessage, opentrons.legacy_commands.types.PickUpTipMessage, opentrons.legacy_commands.types.ReturnTipMessage, opentrons.legacy_commands.types.AirGapMessage, opentrons.legacy_commands.types.TouchTipMessage, opentrons.legacy_commands.types.BlowOutMessage, opentrons.legacy_commands.types.BlowOutInDisposalLocationMessage, opentrons.legacy_commands.types.MixMessage, opentrons.legacy_commands.types.TransferMessage, opentrons.legacy_commands.types.DistributeMessage, opentrons.legacy_commands.types.ConsolidateMessage, opentrons.legacy_commands.types.DispenseMessage, opentrons.legacy_commands.types.DispenseInDisposalLocationMessage, opentrons.legacy_commands.types.AspirateMessage, opentrons.legacy_commands.types.HomeMessage, opentrons.legacy_commands.types.HeaterShakerSetTargetTemperatureMessage, opentrons.legacy_commands.types.HeaterShakerWaitForTemperatureMessage, opentrons.legacy_commands.types.HeaterShakerSetAndWaitForShakeSpeedMessage, opentrons.legacy_commands.types.HeaterShakerOpenLabwareLatchMessage, opentrons.legacy_commands.types.HeaterShakerCloseLabwareLatchMessage, opentrons.legacy_commands.types.HeaterShakerDeactivateShakerMessage, opentrons.legacy_commands.types.HeaterShakerDeactivateHeaterMessage, opentrons.legacy_commands.types.ThermocyclerCloseMessage, opentrons.legacy_commands.types.ThermocyclerWaitForLidTempMessage, opentrons.legacy_commands.types.ThermocyclerDeactivateMessage, opentrons.legacy_commands.types.ThermocyclerDeactivateBlockMessage, opentrons.legacy_commands.types.ThermocyclerDeactivateLidMessage, opentrons.legacy_commands.types.ThermocyclerSetLidTempMessage, opentrons.legacy_commands.types.ThermocyclerWaitForTempMessage, opentrons.legacy_commands.types.ThermocyclerWaitForHoldMessage, opentrons.legacy_commands.types.ThermocyclerExecuteProfileMessage, opentrons.legacy_commands.types.ThermocyclerSetBlockTempMessage, opentrons.legacy_commands.types.ThermocyclerOpenMessage, opentrons.legacy_commands.types.TempdeckSetTempMessage, opentrons.legacy_commands.types.TempdeckDeactivateMessage, opentrons.legacy_commands.types.MagdeckEngageMessage, opentrons.legacy_commands.types.MagdeckDisengageMessage, opentrons.legacy_commands.types.MagdeckCalibrateMessage, opentrons.legacy_commands.types.CommentMessage, opentrons.legacy_commands.types.DelayMessage, opentrons.legacy_commands.types.PauseMessage, opentrons.legacy_commands.types.ResumeMessage, opentrons.legacy_commands.types.MoveToMessage, opentrons.legacy_commands.types.MoveToDisposalLocationMessage, opentrons.legacy_commands.types.MoveLabwareMessage]], NoneType]] \\= None_, _custom_labware_paths: Optional\\[List\\[[str')]] \\= None_, _custom_data_paths: Optional\\List\\[[str')]] \\= None_) \u2192 None')\nRun the protocol itself.\n\nThis is a one\\-stop function to run a protocol, whether python or json,\nno matter the api version, from external (i.e. not bound up in other\ninternal server infrastructure) sources.\n\nTo run an opentrons protocol from other places, pass in a file like\nobject as protocol_file; this function either returns (if the run has no\nproblems) or raises an exception.\n\nTo call from the command line use either the autogenerated entrypoint\n`opentrons_execute` or `python -m opentrons.execute`.\n\nParameters:\n\n- **protocol_file** \u2013 The protocol file to execute\n- **protocol_name** \u2013 The name of the protocol file. This is required\n internally, but it may not be a thing we can get\n from the protocol_file argument.", "mimetype": "text/plain", "start_char_idx": 2, "end_char_idx": 4097, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "f0b68f74-cf73-4de3-87e3-80446f9a99d8": {"__data__": {"id_": "f0b68f74-cf73-4de3-87e3-80446f9a99d8", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "a33c36a6-48b6-48a9-b522-e5205e1c4b8c", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "3e864d46c40cd3a4b185d3d6caf47a3c8fe2dc9a4c94965f65075affd0fa36f5", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "6f062ef9-2a08-4252-bfea-e3a6fec7ea21", "node_type": "1", "metadata": {}, "hash": "cac41b5bfd9a43a9a4221ca65eafafa0ce89d2be1ec3d657385e2289609e5562", "class_name": "RelatedNodeInfo"}}, "text": "This is a one\\-stop function to run a protocol, whether python or json,\nno matter the api version, from external (i.e. not bound up in other\ninternal server infrastructure) sources.\n\nTo run an opentrons protocol from other places, pass in a file like\nobject as protocol_file; this function either returns (if the run has no\nproblems) or raises an exception.\n\nTo call from the command line use either the autogenerated entrypoint\n`opentrons_execute` or `python -m opentrons.execute`.\n\nParameters:\n\n- **protocol_file** \u2013 The protocol file to execute\n- **protocol_name** \u2013 The name of the protocol file. This is required\n internally, but it may not be a thing we can get\n from the protocol_file argument.\n- **propagate_logs** \u2013 Whether this function should allow logs from the\n Opentrons stack to propagate up to the root handler.\n This can be useful if you\u2019re integrating this\n function in a larger application, but most logs that\n occur during protocol simulation are best associated\n with the actions in the protocol that cause them.\n Default: `False`\n- **log_level** \u2013 The level of logs to emit on the command line:\n `\"debug\"`, `\"info\"`, `\"warning\"`, or `\"error\"`.\n Defaults to `\"warning\"`.\n- **emit_runlog** \u2013 A callback for printing the run log. If specified, this\n will be called whenever a command adds an entry to the\n run log, which can be used for display and progress\n estimation. If specified, the callback should take a\n single argument (the name doesn\u2019t matter) which will\n be a dictionary:\n\n```\n{\n 'name': command_name,\n 'payload': {\n 'text': string_command_text,\n # The rest of this struct is\n # command-dependent; see\n # opentrons.legacy_commands.commands.\n }\n}\n\n```\n\nNote\n\nIn older software versions, `payload[\"text\"]` was a\nformat string.\nTo get human\\-readable text, you had to do `payload[\"text\"].format(**payload)`.\nDon\u2019t do that anymore. If `payload[\"text\"]` happens to contain any\n`{` or `}` characters, it can confuse `.format()` and cause it to raise a\n`KeyError`.\n\n- **custom_labware_paths** \u2013 A list of directories to search for custom labware.\n Loads valid labware from these paths and makes them available\n to the protocol context. If this is `None` (the default), and\n this function is called on a robot, it will look in the `labware`\n subdirectory of the Jupyter data directory.\n- **custom_data_paths** \u2013 A list of directories or files to load custom\n data files from. Ignored if the apiv2 feature\n flag if not set. Entries may be either files or\n directories. Specified files and the\n non\\-recursive contents of specified directories\n are presented by the protocol context in\n `ProtocolContext.bundled_data`.\n\nopentrons.execute.get*arguments(\\_parser: argparse.ArgumentParser')*) \u2192 argparse.ArgumentParser')\nGet the argument parser for this module\n\nUseful if you want to use this module as a component of another CLI program\nand want to add its arguments.\n\nParameters:\n**parser** \u2013 A parser to add arguments to.\n\nReturns argparse.ArgumentParser:\nThe parser with arguments added.\n\nopentrons.execute.get*protocol_api(\\_version: Union\\[str'), opentrons.protocols.api_support.types.APIVersion]*, _bundled_labware: Optional\\Dict\\[str, ForwardRef('LabwareDefinitionDict')]] \\= None_, _bundled_data: Optional\\[Dict\\[[str'), bytes')]] \\= None_, _extra_labware: Optional\\Dict\\[str, ForwardRef('LabwareDefinitionDict')]] \\= None_) \u2192 [opentrons.protocol_api.protocol_context.ProtocolContext\nBuild and return a `protocol_api.ProtocolContext`\nconnected to the robot.\n\nThis can be used to run protocols from interactive Python sessions\nsuch as Jupyter or an interpreter on the command line:\n\n```\n>>> from opentrons.execute import get_protocol_api\n>>> protocol = get_protocol_api('2.0')\n>>> instr = protocol.load_instrument('p300_single', 'right')\n>>> instr.home()\n\n```\n\nWhen this function is called, modules and instruments will be recached.\n\nParameters:\n\n- **version** \u2013 The API version to use. This must be lower than\n `opentrons.protocol_api.MAX_SUPPORTED_VERSION`.", "mimetype": "text/plain", "start_char_idx": 3394, "end_char_idx": 7421, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "6f062ef9-2a08-4252-bfea-e3a6fec7ea21": {"__data__": {"id_": "6f062ef9-2a08-4252-bfea-e3a6fec7ea21", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "f0b68f74-cf73-4de3-87e3-80446f9a99d8", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "068930d37db63e0e4a5f8b23bd15cedf2b14bd842c7c16be456d4d406b0fe032", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "d38702d2-d706-43ce-8e66-ad161eeafb07", "node_type": "1", "metadata": {}, "hash": "7bb67e8e3eb5560c883fc8866a4354ccb9edde76fd023b5553534427959e0cd8", "class_name": "RelatedNodeInfo"}}, "text": "This can be used to run protocols from interactive Python sessions\nsuch as Jupyter or an interpreter on the command line:\n\n```\n>>> from opentrons.execute import get_protocol_api\n>>> protocol = get_protocol_api('2.0')\n>>> instr = protocol.load_instrument('p300_single', 'right')\n>>> instr.home()\n\n```\n\nWhen this function is called, modules and instruments will be recached.\n\nParameters:\n\n- **version** \u2013 The API version to use. This must be lower than\n `opentrons.protocol_api.MAX_SUPPORTED_VERSION`.\n It may be specified either as a string (`'2.0'`) or\n as a `protocols.types.APIVersion`\n (`APIVersion(2, 0)`).\n- **bundled_labware** \u2013 If specified, a mapping from labware names to\n labware definitions for labware to consider in the\n protocol. Note that if you specify this, \\_only\\_\n labware in this argument will be allowed in the\n protocol. This is preparation for a beta feature\n and is best not used.\n- **bundled_data** \u2013 If specified, a mapping from filenames to contents\n for data to be available in the protocol from\n `opentrons.protocol_api.ProtocolContext.bundled_data`.\n- **extra_labware** \u2013 A mapping from labware load names to custom labware definitions.\n If this is `None` (the default), and this function is called on a robot,\n it will look for labware in the `labware` subdirectory of the Jupyter\n data directory.\n\nReturns:\nThe protocol context.\n\nopentrons.execute.main() \u2192 int')\nHandler for command line invocation to run a protocol.\n\nParameters:\n**argv** \u2013 The arguments the program was invoked with; this is usually\n`sys.argv`') but if you want to override that you can.\n\nReturns int:\nA success or failure value suitable for use as a shell\nreturn code passed to `sys.exit`') (0 means success,\nanything else is a kind of failure).\n\nopentrons.simulate: functions and entrypoints for simulating protocols\n\nThis module has functions that provide a console entrypoint for simulating\na protocol from the command line.\n\nopentrons.simulate.allow_bundle() \u2192 bool')\nCheck if bundling is allowed with a special not\\-exposed\\-to\\-the\\-app flag.\n\nReturns `True` if the environment variable\n`OT_API_FF_allowBundleCreation` is `\"1\"`\n\nopentrons.simulate.bundle*from_sim(\\_protocol: opentrons.protocols.types.PythonProtocol*, _context: opentrons.protocol_api.protocol_context.ProtocolContext_) \u2192 opentrons.protocols.types.BundleContents\nFrom a protocol, and the context that has finished simulating that\nprotocol, determine what needs to go in a bundle for the protocol.\n\nopentrons.simulate.format*runlog(\\_runlog: List\\Mapping\\[[str'), Any]]*) \u2192 str')\nFormat a run log (return value of `simulate`) into a\nhuman\\-readable string\n\nParameters:\n**runlog** \u2013 The output of a call to `simulate`\n\nopentrons.simulate.get*arguments(\\_parser: argparse.ArgumentParser')*) \u2192 argparse.ArgumentParser')\nGet the argument parser for this module\n\nUseful if you want to use this module as a component of another CLI program\nand want to add its arguments.\n\nParameters:\n**parser** \u2013 A parser to add arguments to. If not specified, one will be\ncreated.\n\nReturns argparse.ArgumentParser:\nThe parser with arguments added.", "mimetype": "text/plain", "start_char_idx": 6921, "end_char_idx": 10036, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "d38702d2-d706-43ce-8e66-ad161eeafb07": {"__data__": {"id_": "d38702d2-d706-43ce-8e66-ad161eeafb07", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "6f062ef9-2a08-4252-bfea-e3a6fec7ea21", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "7db3fdb5a82b7cfcd40d7d81a33c99b8df1ed5543ca65330172cc7c3a5fd57fb", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "1fae385d-2f54-4dee-b18c-3b31945b956d", "node_type": "1", "metadata": {}, "hash": "5d8b217df25f121fb025185e2d4bc34e07fcf6c3902f7d19e8c352e52b655fd7", "class_name": "RelatedNodeInfo"}}, "text": "opentrons.simulate.format*runlog(\\_runlog: List\\Mapping\\[[str'), Any]]*) \u2192 str')\nFormat a run log (return value of `simulate`) into a\nhuman\\-readable string\n\nParameters:\n**runlog** \u2013 The output of a call to `simulate`\n\nopentrons.simulate.get*arguments(\\_parser: argparse.ArgumentParser')*) \u2192 argparse.ArgumentParser')\nGet the argument parser for this module\n\nUseful if you want to use this module as a component of another CLI program\nand want to add its arguments.\n\nParameters:\n**parser** \u2013 A parser to add arguments to. If not specified, one will be\ncreated.\n\nReturns argparse.ArgumentParser:\nThe parser with arguments added.\n\nopentrons.simulate.get*protocol_api(\\_version: Union\\str, opentrons.protocols.api_support.types.APIVersion], bundled_labware: Optional\\[Dict\\[str, ForwardRef('LabwareDefinitionDict')]] \\= None, bundled_data: Optional\\[Dict\\[str, bytes]] \\= None, extra_labware: Optional\\[Dict\\[str, ForwardRef('LabwareDefinitionDict')]] \\= None, hardware_simulator: Optional\\[opentrons.hardware_control.thread_manager.ThreadManager\\[Union\\[opentrons.hardware_control.protocols.HardwareControlInterface\\[opentrons.hardware_control.robot_calibration.RobotCalibration, opentrons.types.Mount, opentrons.config.types.RobotConfig], opentrons.hardware_control.protocols.FlexHardwareControlInterface\\[opentrons.hardware_control.ot3_calibration.OT3Transforms, Union\\[opentrons.types.Mount, opentrons.hardware_control.types.OT3Mount], opentrons.config.types.OT3Config]]]] \\= None, \\\\\\*, robot_type: Optional\\[Literal\\['OT\\-2', 'Flex']] \\= None, use_virtual_hardware: bool \\= True*) \u2192 [opentrons.protocol_api.protocol_context.ProtocolContext\nBuild and return a `protocol_api.ProtocolContext`\nconnected to Virtual Smoothie.\n\nThis can be used to run protocols from interactive Python sessions\nsuch as Jupyter or an interpreter on the command line:\n\n```\n>>> from opentrons.simulate import get_protocol_api\n>>> protocol = get_protocol_api('2.0')\n>>> instr = protocol.load_instrument('p300_single', 'right')\n>>> instr.home()\n\n```\n\nParameters:\n\n- **version** \u2013 The API version to use. This must be lower than\n `opentrons.protocol_api.MAX_SUPPORTED_VERSION`.\n It may be specified either as a string (`'2.0'`) or\n as a `protocols.types.APIVersion`\n (`APIVersion(2, 0)`).\n- **bundled_labware** \u2013 If specified, a mapping from labware names to\n labware definitions for labware to consider in the\n protocol. Note that if you specify this, \\_only\\_\n labware in this argument will be allowed in the\n protocol. This is preparation for a beta feature\n and is best not used.\n- **bundled_data** \u2013 If specified, a mapping from filenames to contents\n for data to be available in the protocol from\n `opentrons.protocol_api.ProtocolContext.bundled_data`.\n- **extra_labware** \u2013 A mapping from labware load names to custom labware definitions.\n If this is `None` (the default), and this function is called on a robot,\n it will look for labware in the `labware` subdirectory of the Jupyter\n data directory.\n- **hardware_simulator** \u2013 If specified, a hardware simulator instance.\n- **robot_type** \u2013 The type of robot to simulate: either `\"Flex\"` or `\"OT-2\"`.\n If you\u2019re running this function on a robot, the default is the type of that\n robot. Otherwise, the default is `\"OT-2\"`, for backwards compatibility.\n- **use_virtual_hardware** \u2013 If true, use the protocol engines virtual hardware, if false use the lower level hardware simulator.\n\nReturns:\nThe protocol context.", "mimetype": "text/plain", "start_char_idx": 9409, "end_char_idx": 12870, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "1fae385d-2f54-4dee-b18c-3b31945b956d": {"__data__": {"id_": "1fae385d-2f54-4dee-b18c-3b31945b956d", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "d38702d2-d706-43ce-8e66-ad161eeafb07", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "a743d4008c1555ad62b06cc8c7059fdcec89c464baf51f38dc403dedc06dece0", "class_name": "RelatedNodeInfo"}, "3": {"node_id": "465eac93-e005-49d0-8601-0352a21c45ed", "node_type": "1", "metadata": {}, "hash": "896c80059d638be2186bd5ced71d5ea184f065fe9c988af7363a21fd00104939", "class_name": "RelatedNodeInfo"}}, "text": "- **extra_labware** \u2013 A mapping from labware load names to custom labware definitions.\n If this is `None` (the default), and this function is called on a robot,\n it will look for labware in the `labware` subdirectory of the Jupyter\n data directory.\n- **hardware_simulator** \u2013 If specified, a hardware simulator instance.\n- **robot_type** \u2013 The type of robot to simulate: either `\"Flex\"` or `\"OT-2\"`.\n If you\u2019re running this function on a robot, the default is the type of that\n robot. Otherwise, the default is `\"OT-2\"`, for backwards compatibility.\n- **use_virtual_hardware** \u2013 If true, use the protocol engines virtual hardware, if false use the lower level hardware simulator.\n\nReturns:\nThe protocol context.\n\nopentrons.simulate.main() \u2192 int')\nRun the simulation\n\nopentrons.simulate.simulate(_protocol_file: Union\\BinaryIO, TextIO]_, _file_name: Optional\\[[str')] \\= None_, _custom_labware_paths: Optional\\List\\[[str')]] \\= None_, _custom_data_paths: Optional\\List\\[[str')]] \\= None_, _propagate_logs: bool') \\= False_, _hardware_simulator_file_path: Optional\\[str')] \\= None_, _duration_estimator: Optional\\opentrons.protocols.duration.estimator.DurationEstimator] \\= None_, _log_level: [str') \\= 'warning'_) \u2192 Tuple\\List\\[Mapping\\[[str'), Any]], Optional\\[opentrons.protocols.types.BundleContents]]\nSimulate the protocol itself.\n\nThis is a one\\-stop function to simulate a protocol, whether python or json,\nno matter the api version, from external (i.e. not bound up in other\ninternal server infrastructure) sources.\n\nTo simulate an opentrons protocol from other places, pass in a file like\nobject as protocol_file; this function either returns (if the simulation\nhas no problems) or raises an exception.\n\nTo call from the command line use either the autogenerated entrypoint\n`opentrons_simulate` (`opentrons_simulate.exe`, on windows) or\n`python -m opentrons.simulate`.\n\nThe return value is the run log, a list of dicts that represent the\ncommands executed by the robot; and either the contents of the protocol\nthat would be required to bundle, or `None`.\n\nEach dict element in the run log has the following keys:\n\n> - `level`: The depth at which this command is nested. If this an\n> aspirate inside a mix inside a transfer, for instance, it would be 3\\.\n> - `payload`: The command. The human\\-readable run log text is available at\n> `payload[\"text\"]`. The other keys of `payload` are command\\-dependent;\n> see `opentrons.legacy_commands`.\n>\n> Note\n>\n> In older software versions, `payload[\"text\"]` was a\n> format string.\n> To get human\\-readable text, you had to do `payload[\"text\"].format(**payload)`.\n> Don\u2019t do that anymore. If `payload[\"text\"]` happens to contain any\n> `{` or `}` characters, it can confuse `.format()` and cause it to raise a\n> `KeyError`.\n>\n> - `logs`: Any log messages that occurred during execution of this\n> command, as a standard Python `LogRecord`').\n\nParameters:\n\n- **protocol_file** \u2013 The protocol file to simulate.\n- **file_name** \u2013 The name of the file\n- **custom_labware_paths** \u2013 A list of directories to search for custom labware.\n Loads valid labware from these paths and makes them available\n to the protocol context. If this is `None` (the default), and\n this function is called on a robot, it will look in the `labware`\n subdirectory of the Jupyter data directory.\n- **custom_data_paths** \u2013 A list of directories or files to load custom\n data files from. Ignored if the apiv2 feature\n flag if not set. Entries may be either files or\n directories. Specified files and the\n non\\-recursive contents of specified directories\n are presented by the protocol context in\n `protocol_api.ProtocolContext.bundled_data`.\n- **hardware_simulator_file_path** \u2013 A path to a JSON file defining a\n hardware simulator.\n- **duration_estimator** \u2013 For internal use only.\n Optional duration estimator object.", "mimetype": "text/plain", "start_char_idx": 12154, "end_char_idx": 16011, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}, "465eac93-e005-49d0-8601-0352a21c45ed": {"__data__": {"id_": "465eac93-e005-49d0-8601-0352a21c45ed", "embedding": null, "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "excluded_embed_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "excluded_llm_metadata_keys": ["file_name", "file_type", "file_size", "creation_date", "last_modified_date", "last_accessed_date"], "relationships": {"1": {"node_id": "b0b7d054-9b6a-456d-a0f2-129ceb7e8499", "node_type": "4", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "e8bf196484069f5821b9391fca6f5efbbba388a17f96a714a18762270300bc08", "class_name": "RelatedNodeInfo"}, "2": {"node_id": "1fae385d-2f54-4dee-b18c-3b31945b956d", "node_type": "1", "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}, "hash": "d9b8cf738542bb99d872d9b004d8df61b7bc8ff0635475d2878bc61f97e0cf46", "class_name": "RelatedNodeInfo"}}, "text": "Loads valid labware from these paths and makes them available\n to the protocol context. If this is `None` (the default), and\n this function is called on a robot, it will look in the `labware`\n subdirectory of the Jupyter data directory.\n- **custom_data_paths** \u2013 A list of directories or files to load custom\n data files from. Ignored if the apiv2 feature\n flag if not set. Entries may be either files or\n directories. Specified files and the\n non\\-recursive contents of specified directories\n are presented by the protocol context in\n `protocol_api.ProtocolContext.bundled_data`.\n- **hardware_simulator_file_path** \u2013 A path to a JSON file defining a\n hardware simulator.\n- **duration_estimator** \u2013 For internal use only.\n Optional duration estimator object.\n- **propagate_logs** \u2013 Whether this function should allow logs from the\n Opentrons stack to propagate up to the root handler.\n This can be useful if you\u2019re integrating this\n function in a larger application, but most logs that\n occur during protocol simulation are best associated\n with the actions in the protocol that cause them.\n Default: `False`\n- **log_level** \u2013 The level of logs to capture in the run log:\n `\"debug\"`, `\"info\"`, `\"warning\"`, or `\"error\"`.\n Defaults to `\"warning\"`.\n\nReturns:\nA tuple of a run log for user output, and possibly the required\ndata to write to a bundle to bundle this protocol. The bundle is\nonly emitted if bundling is allowed\nand this is an unbundled Protocol API\nv2 python protocol. In other cases it is None.", "mimetype": "text/plain", "start_char_idx": 15242, "end_char_idx": 16767, "text_template": "{metadata_str}\n\n{content}", "metadata_template": "{key}: {value}", "metadata_seperator": "\n", "class_name": "TextNode"}, "__type__": "1"}}, "docstore/ref_doc_info": {"72beb569-fa7f-4009-b23c-0fb3773bbc37": {"node_ids": ["54d007e0-a439-4299-a911-d7d93df8f0ad"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "5ac5dd00-55bc-4767-8291-4b198eba6fd9": {"node_ids": ["995cafc5-6e39-43bb-a23b-48d135fc5687", "1a57d68f-bd5e-4b19-ac44-c09f14e5cda0", "507eee74-04d1-421e-8f63-8a7ad4dede7a", "9cd46042-f358-4a40-81c6-18aee50f8df3", "c808470e-fa8e-4aa1-9392-29e5e6d56841", "20d7b474-fffe-481a-a28d-3393a60f7c3d", "0c611f55-b589-4106-a22b-8cc7087cd72c", "aaae4fe6-132e-47cf-8ebf-f923ede94684"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "130dd014-0595-4e8d-bce0-9a555e767c16": {"node_ids": ["4812c02a-deae-4617-a631-3d1d2681ef6d", "cfcb4e69-2296-491c-b649-15e9377ac385", "c94276a9-98a1-4349-84d0-b78b5e8d1b7e", "59145c5f-26e2-4613-8df5-e10874e81f20", "99a604e4-a110-4600-b68b-b11b0ad3538f", "433118a8-4031-4aaf-bbdc-e0965f79997e", "388e0ea2-c70d-4687-b13d-d9ea9f93d6a4", "ee7b7752-6013-4fc6-90c6-cb1559acf82a", "a4c2e637-bf95-40cb-b4de-78de8b49b6b9", "ebe419bd-5a6e-41f3-8c29-1522cbb5495b", "1abdb350-e5f4-4c81-942a-1105d3053d74", "f3b48282-6282-4419-9b67-287f8516f532"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "6e886adb-3bfa-459f-858e-dcd0ae10efb2": {"node_ids": ["55820e72-350c-4d01-97be-cdc60036974a", "3712e73e-6bb3-45fb-87e3-b2539f5ac7ee", "c5a03af5-c467-47c4-96ff-3b15682d23bf", "112f62c0-766e-43c9-ace3-b96969d9fadb"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "3856fcb1-a47f-4a47-9bf2-2f196e6f957b": {"node_ids": ["e39682ef-e478-472e-8f0e-da1ed1b619f8", "4e40803c-97a9-4b13-8bd8-aaa8a7840760"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "54a40460-23c1-40da-9886-7a91b4163ebf": {"node_ids": ["f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968", "527cc4e9-d27e-46b1-9faf-1052b2b76ba0", "33a52153-0b96-43ff-a3fc-bc2546b70869", "56eec31c-5c40-416e-81fd-7c7a6722f005", "3ae87c64-eb04-41c1-ac18-e26b8acfc8a3", "98338da6-5a0a-4653-89be-314b1cc2ff25", "515d7962-e18d-4b3d-8b44-345f171c1de2", "1062af75-9e40-499f-9e34-18c8074da7a8", "e559f16b-b79d-497c-83c3-1040b7290ab2", "fe0c19af-46e7-46d9-8fd6-66508ffc9f88"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "045c8692-adb9-4d07-9f25-d3de0a01baba": {"node_ids": ["08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}, "b0b7d054-9b6a-456d-a0f2-129ceb7e8499": {"node_ids": ["a33c36a6-48b6-48a9-b522-e5205e1c4b8c", "f0b68f74-cf73-4de3-87e3-80446f9a99d8", "6f062ef9-2a08-4252-bfea-e3a6fec7ea21", "d38702d2-d706-43ce-8e66-ad161eeafb07", "1fae385d-2f54-4dee-b18c-3b31945b956d", "465eac93-e005-49d0-8601-0352a21c45ed"], "metadata": {"file_path": "/Users/elyorkodirov/work/git/opentrons/opentrons-ai-server/api/data/python_api_219_reference.md", "file_name": "python_api_219_reference.md", "file_size": 175413, "creation_date": "2024-08-05", "last_modified_date": "2024-08-05"}}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219_ref/graph_store.json b/opentrons-ai-server/api/storage/index/v219_ref/graph_store.json new file mode 100644 index 00000000000..9aab8ead445 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219_ref/graph_store.json @@ -0,0 +1 @@ +{"graph_dict": {}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219_ref/image__vector_store.json b/opentrons-ai-server/api/storage/index/v219_ref/image__vector_store.json new file mode 100644 index 00000000000..8534c56d469 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219_ref/image__vector_store.json @@ -0,0 +1 @@ +{"embedding_dict": {}, "text_id_to_ref_doc_id": {}, "metadata_dict": {}} \ No newline at end of file diff --git a/opentrons-ai-server/api/storage/index/v219_ref/index_store.json b/opentrons-ai-server/api/storage/index/v219_ref/index_store.json new file mode 100644 index 00000000000..d2a6a2d9647 --- /dev/null +++ b/opentrons-ai-server/api/storage/index/v219_ref/index_store.json @@ -0,0 +1 @@ +{"index_store/data": {"79f24de7-d1f1-40ed-a8d1-d2017863ba25": {"__type__": "vector_store", "__data__": "{\"index_id\": \"79f24de7-d1f1-40ed-a8d1-d2017863ba25\", \"summary\": null, \"nodes_dict\": {\"54d007e0-a439-4299-a911-d7d93df8f0ad\": \"54d007e0-a439-4299-a911-d7d93df8f0ad\", \"995cafc5-6e39-43bb-a23b-48d135fc5687\": \"995cafc5-6e39-43bb-a23b-48d135fc5687\", \"1a57d68f-bd5e-4b19-ac44-c09f14e5cda0\": \"1a57d68f-bd5e-4b19-ac44-c09f14e5cda0\", \"507eee74-04d1-421e-8f63-8a7ad4dede7a\": \"507eee74-04d1-421e-8f63-8a7ad4dede7a\", \"9cd46042-f358-4a40-81c6-18aee50f8df3\": \"9cd46042-f358-4a40-81c6-18aee50f8df3\", \"c808470e-fa8e-4aa1-9392-29e5e6d56841\": \"c808470e-fa8e-4aa1-9392-29e5e6d56841\", \"20d7b474-fffe-481a-a28d-3393a60f7c3d\": \"20d7b474-fffe-481a-a28d-3393a60f7c3d\", \"0c611f55-b589-4106-a22b-8cc7087cd72c\": \"0c611f55-b589-4106-a22b-8cc7087cd72c\", \"aaae4fe6-132e-47cf-8ebf-f923ede94684\": \"aaae4fe6-132e-47cf-8ebf-f923ede94684\", \"4812c02a-deae-4617-a631-3d1d2681ef6d\": \"4812c02a-deae-4617-a631-3d1d2681ef6d\", \"cfcb4e69-2296-491c-b649-15e9377ac385\": \"cfcb4e69-2296-491c-b649-15e9377ac385\", \"c94276a9-98a1-4349-84d0-b78b5e8d1b7e\": \"c94276a9-98a1-4349-84d0-b78b5e8d1b7e\", \"59145c5f-26e2-4613-8df5-e10874e81f20\": \"59145c5f-26e2-4613-8df5-e10874e81f20\", \"99a604e4-a110-4600-b68b-b11b0ad3538f\": \"99a604e4-a110-4600-b68b-b11b0ad3538f\", \"433118a8-4031-4aaf-bbdc-e0965f79997e\": \"433118a8-4031-4aaf-bbdc-e0965f79997e\", \"388e0ea2-c70d-4687-b13d-d9ea9f93d6a4\": \"388e0ea2-c70d-4687-b13d-d9ea9f93d6a4\", \"ee7b7752-6013-4fc6-90c6-cb1559acf82a\": \"ee7b7752-6013-4fc6-90c6-cb1559acf82a\", \"a4c2e637-bf95-40cb-b4de-78de8b49b6b9\": \"a4c2e637-bf95-40cb-b4de-78de8b49b6b9\", \"ebe419bd-5a6e-41f3-8c29-1522cbb5495b\": \"ebe419bd-5a6e-41f3-8c29-1522cbb5495b\", \"1abdb350-e5f4-4c81-942a-1105d3053d74\": \"1abdb350-e5f4-4c81-942a-1105d3053d74\", \"f3b48282-6282-4419-9b67-287f8516f532\": \"f3b48282-6282-4419-9b67-287f8516f532\", \"55820e72-350c-4d01-97be-cdc60036974a\": \"55820e72-350c-4d01-97be-cdc60036974a\", \"3712e73e-6bb3-45fb-87e3-b2539f5ac7ee\": \"3712e73e-6bb3-45fb-87e3-b2539f5ac7ee\", \"c5a03af5-c467-47c4-96ff-3b15682d23bf\": \"c5a03af5-c467-47c4-96ff-3b15682d23bf\", \"112f62c0-766e-43c9-ace3-b96969d9fadb\": \"112f62c0-766e-43c9-ace3-b96969d9fadb\", \"e39682ef-e478-472e-8f0e-da1ed1b619f8\": \"e39682ef-e478-472e-8f0e-da1ed1b619f8\", \"4e40803c-97a9-4b13-8bd8-aaa8a7840760\": \"4e40803c-97a9-4b13-8bd8-aaa8a7840760\", \"f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968\": \"f1cf7a8c-2071-4d9a-a0bb-f6b3664fb968\", \"527cc4e9-d27e-46b1-9faf-1052b2b76ba0\": \"527cc4e9-d27e-46b1-9faf-1052b2b76ba0\", \"33a52153-0b96-43ff-a3fc-bc2546b70869\": \"33a52153-0b96-43ff-a3fc-bc2546b70869\", \"56eec31c-5c40-416e-81fd-7c7a6722f005\": \"56eec31c-5c40-416e-81fd-7c7a6722f005\", \"3ae87c64-eb04-41c1-ac18-e26b8acfc8a3\": \"3ae87c64-eb04-41c1-ac18-e26b8acfc8a3\", \"98338da6-5a0a-4653-89be-314b1cc2ff25\": \"98338da6-5a0a-4653-89be-314b1cc2ff25\", \"515d7962-e18d-4b3d-8b44-345f171c1de2\": \"515d7962-e18d-4b3d-8b44-345f171c1de2\", \"1062af75-9e40-499f-9e34-18c8074da7a8\": \"1062af75-9e40-499f-9e34-18c8074da7a8\", \"e559f16b-b79d-497c-83c3-1040b7290ab2\": \"e559f16b-b79d-497c-83c3-1040b7290ab2\", \"fe0c19af-46e7-46d9-8fd6-66508ffc9f88\": \"fe0c19af-46e7-46d9-8fd6-66508ffc9f88\", \"08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff\": \"08bcf1d4-3919-4d0d-8c25-64cb6cd0f6ff\", \"a33c36a6-48b6-48a9-b522-e5205e1c4b8c\": \"a33c36a6-48b6-48a9-b522-e5205e1c4b8c\", \"f0b68f74-cf73-4de3-87e3-80446f9a99d8\": \"f0b68f74-cf73-4de3-87e3-80446f9a99d8\", \"6f062ef9-2a08-4252-bfea-e3a6fec7ea21\": \"6f062ef9-2a08-4252-bfea-e3a6fec7ea21\", \"d38702d2-d706-43ce-8e66-ad161eeafb07\": \"d38702d2-d706-43ce-8e66-ad161eeafb07\", \"1fae385d-2f54-4dee-b18c-3b31945b956d\": \"1fae385d-2f54-4dee-b18c-3b31945b956d\", \"465eac93-e005-49d0-8601-0352a21c45ed\": \"465eac93-e005-49d0-8601-0352a21c45ed\"}, \"doc_id_dict\": {}, \"embeddings_dict\": {}}"}}} \ No newline at end of file diff --git a/opentrons-ai-server/api/utils/create_index.py b/opentrons-ai-server/api/utils/create_index.py new file mode 100644 index 00000000000..ce7ebe59742 --- /dev/null +++ b/opentrons-ai-server/api/utils/create_index.py @@ -0,0 +1,47 @@ +import os +import os.path +from pathlib import Path +from typing import Any, Union + +from llama_index.core import Settings as llamasettings +from llama_index.core import SimpleDirectoryReader, StorageContext, VectorStoreIndex, load_index_from_storage +from llama_index.core.indices.base import BaseIndex +from llama_index.embeddings.openai import OpenAIEmbedding + +ROOT_PATH: Path = Path(Path(__file__)).parent.parent.parent +llamasettings.embed_model = OpenAIEmbedding(model_name="text-embedding-3-large", api_key=os.environ["OPENAI_API_KEY"]) + + +def create_index(data_path: str, data_file: str, index_name: str) -> Union[BaseIndex[Any], VectorStoreIndex]: + """ + # creating index using llama-index + data_path = str(ROOT_PATH / "api" / "data") + data_docs = str(ROOT_PATH / "api" / "data" / "python_api_219_docs.md") + file_name = "v219_ref" + index = create_index(data_path, data_docs, file_name) + + # if one wants to check with a prompt + query_engine: Any = index.as_query_engine() + prompt = input() + response = query_engine.query(prompt) + print(response) + + Settings + - os.environ["OPENAI_API_KEY"] + + """ + + # check if storage already exists + PERSIST_DIR = str(ROOT_PATH / "api" / "storage" / "index" / index_name) + if not os.path.exists(PERSIST_DIR): + # load the documents and create the index + documents = SimpleDirectoryReader(data_path, [data_file]).load_data() + index = VectorStoreIndex.from_documents(documents) + # store it for later + index.storage_context.persist(persist_dir=PERSIST_DIR) + return index + else: + # load the existing index + print("Using existing nidex.") + storage_context = StorageContext.from_defaults(persist_dir=PERSIST_DIR) + return load_index_from_storage(storage_context)